From 1498af407718fb8c3d9921255c797fbe6bfb4faf Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Fri, 5 Aug 2022 16:28:50 -0500 Subject: [PATCH 01/14] Add boilerplate for dockerized GQL API and Mongo --- .dockerignore | 1 + Dockerfile | 7 + README.md | 1 + docker-compose.yml | 27 + package-lock.json | 3236 +++++++++++++++++++++++++++++ package.json | 31 + src/config.js | 19 + src/dataSources/Activity/index.js | 31 + src/dataSources/Game/index.js | 31 + src/dataSources/User/index.js | 31 + src/dataSources/index.js | 32 + src/index.js | 49 + src/lib/utils.js | 68 + src/schema/Activity/index.js | 30 + src/schema/Game/index.js | 30 + src/schema/User/index.js | 30 + src/schema/index.js | 68 + 17 files changed, 3722 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 docker-compose.yml create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 src/config.js create mode 100644 src/dataSources/Activity/index.js create mode 100644 src/dataSources/Game/index.js create mode 100644 src/dataSources/User/index.js create mode 100644 src/dataSources/index.js create mode 100644 src/index.js create mode 100644 src/lib/utils.js create mode 100644 src/schema/Activity/index.js create mode 100644 src/schema/Game/index.js create mode 100644 src/schema/User/index.js create mode 100644 src/schema/index.js diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f9267ba --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM node:16-alpine3.13 +WORKDIR /app +COPY package*.json ./ +RUN npm ci --production +COPY src/ . +EXPOSE 3000/tcp +CMD [ "node", "index.js" ] diff --git a/README.md b/README.md new file mode 100644 index 0000000..b0e01b7 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Gabriel-API \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ef657dd --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,27 @@ +version: '3.9' + +services: + gabriel-api: + image: gabriel-api:latest + build: + context: . + environment: + - MONGODB_CONNECTION_URI=mongodb://mongo:27017 + - MONGODB_DATABASE=gabriel + - ACTIVITY_COLLECTION=activity + - USER_COLLECTION=user + - GAME_COLLECTION=game + depends_on: + - mongo + ports: + - 3000:3000 + + mongo: + image: mongo + ports: + - 27017:27017 + +networks: + gabriel: + external: true + name: gabriel \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..d50e34e --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3236 @@ +{ + "name": "gabriel-api", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "gabriel-api", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@graphql-tools/schema": "^8.5.1", + "apollo-server": "^3.10.0", + "dotenv": "^16.0.1", + "express": "^4.18.1", + "graphql": "^16.5.0", + "lodash": "^4.17.21", + "mongodb": "^4.8.1", + "nodemon": "^2.0.19" + } + }, + "node_modules/@apollo/protobufjs": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.4.tgz", + "integrity": "sha512-npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.0", + "@types/node": "^10.1.0", + "long": "^4.0.0" + }, + "bin": { + "apollo-pbjs": "bin/pbjs", + "apollo-pbts": "bin/pbts" + } + }, + "node_modules/@apollo/protobufjs/node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" + }, + "node_modules/@apollo/utils.dropunuseddefinitions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-1.1.0.tgz", + "integrity": "sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==", + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "graphql": "14.x || 15.x || 16.x" + } + }, + "node_modules/@apollo/utils.keyvaluecache": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.1.tgz", + "integrity": "sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==", + "dependencies": { + "@apollo/utils.logger": "^1.0.0", + "lru-cache": "^7.10.1" + } + }, + "node_modules/@apollo/utils.keyvaluecache/node_modules/lru-cache": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.13.2.tgz", + "integrity": "sha512-VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/@apollo/utils.logger": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.logger/-/utils.logger-1.0.0.tgz", + "integrity": "sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==" + }, + "node_modules/@apollo/utils.printwithreducedwhitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-1.1.0.tgz", + "integrity": "sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==", + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "graphql": "14.x || 15.x || 16.x" + } + }, + "node_modules/@apollo/utils.removealiases": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.removealiases/-/utils.removealiases-1.0.0.tgz", + "integrity": "sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==", + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "graphql": "14.x || 15.x || 16.x" + } + }, + "node_modules/@apollo/utils.sortast": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.sortast/-/utils.sortast-1.1.0.tgz", + "integrity": "sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==", + "dependencies": { + "lodash.sortby": "^4.7.0" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "graphql": "14.x || 15.x || 16.x" + } + }, + "node_modules/@apollo/utils.stripsensitiveliterals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-1.2.0.tgz", + "integrity": "sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==", + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "graphql": "14.x || 15.x || 16.x" + } + }, + "node_modules/@apollo/utils.usagereporting": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.0.tgz", + "integrity": "sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w==", + "dependencies": { + "@apollo/utils.dropunuseddefinitions": "^1.1.0", + "@apollo/utils.printwithreducedwhitespace": "^1.1.0", + "@apollo/utils.removealiases": "1.0.0", + "@apollo/utils.sortast": "^1.1.0", + "@apollo/utils.stripsensitiveliterals": "^1.2.0", + "apollo-reporting-protobuf": "^3.3.1" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "graphql": "14.x || 15.x || 16.x" + } + }, + "node_modules/@apollographql/apollo-tools": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.4.tgz", + "integrity": "sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==", + "engines": { + "node": ">=8", + "npm": ">=6" + }, + "peerDependencies": { + "graphql": "^14.2.1 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@apollographql/graphql-playground-html": { + "version": "1.6.29", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz", + "integrity": "sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==", + "dependencies": { + "xss": "^1.0.8" + } + }, + "node_modules/@graphql-tools/merge": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.1.tgz", + "integrity": "sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==", + "dependencies": { + "@graphql-tools/utils": "8.9.0", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/mock": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.1.tgz", + "integrity": "sha512-k85qWloFnxw1AAu7P153y1y+9GEbiQ4T17uay2o2QZKtjxPkBADkX0sKYsI7oj+ip+l/D4an3FfsbWATGxzT8w==", + "dependencies": { + "@graphql-tools/schema": "8.5.1", + "@graphql-tools/utils": "8.9.0", + "fast-json-stable-stringify": "^2.1.0", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/schema": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.5.1.tgz", + "integrity": "sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==", + "dependencies": { + "@graphql-tools/merge": "8.3.1", + "@graphql-tools/utils": "8.9.0", + "tslib": "^2.4.0", + "value-or-promise": "1.0.11" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@graphql-tools/utils": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz", + "integrity": "sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==", + "dependencies": { + "tslib": "^2.4.0" + }, + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@josephg/resolvable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz", + "integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==" + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" + }, + "node_modules/@types/accepts": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cors": { + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==" + }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.30", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz", + "integrity": "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==" + }, + "node_modules/@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" + }, + "node_modules/@types/node": { + "version": "18.6.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.4.tgz", + "integrity": "sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/webidl-conversions": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-6.1.1.tgz", + "integrity": "sha512-XAahCdThVuCFDQLT7R7Pk/vqeObFNL3YqRyFZg+AqAP/W1/w3xHaIxuW7WszQqTbIBOPRcItYJIou3i/mppu3Q==" + }, + "node_modules/@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "dependencies": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/apollo-datasource": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.2.tgz", + "integrity": "sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==", + "dependencies": { + "@apollo/utils.keyvaluecache": "^1.0.1", + "apollo-server-env": "^4.2.1" + }, + "engines": { + "node": ">=12.0" + } + }, + "node_modules/apollo-reporting-protobuf": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz", + "integrity": "sha512-j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ==", + "dependencies": { + "@apollo/protobufjs": "1.2.4" + } + }, + "node_modules/apollo-server": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/apollo-server/-/apollo-server-3.10.0.tgz", + "integrity": "sha512-6PAz1XZFM9+K2+QUCXXxQIlZy5mhSOhg0rTx3ZNbIdy1fFNP+6ZjvQAJxBIyEtaKlC2yEPAOg4yi3u8WfuA3bA==", + "dependencies": { + "@types/express": "4.17.13", + "apollo-server-core": "^3.10.0", + "apollo-server-express": "^3.10.0", + "express": "^4.17.1" + }, + "peerDependencies": { + "graphql": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/apollo-server-core": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.0.tgz", + "integrity": "sha512-ln5drIk3oW/ycYhcYL9TvM7vRf7OZwJrgHWlnjnMakozBQIBSumdMi4pN001DhU9mVBWTfnmBv3CdcxJdGXIvA==", + "dependencies": { + "@apollo/utils.keyvaluecache": "^1.0.1", + "@apollo/utils.logger": "^1.0.0", + "@apollo/utils.usagereporting": "^1.0.0", + "@apollographql/apollo-tools": "^0.5.3", + "@apollographql/graphql-playground-html": "1.6.29", + "@graphql-tools/mock": "^8.1.2", + "@graphql-tools/schema": "^8.0.0", + "@josephg/resolvable": "^1.0.0", + "apollo-datasource": "^3.3.2", + "apollo-reporting-protobuf": "^3.3.2", + "apollo-server-env": "^4.2.1", + "apollo-server-errors": "^3.3.1", + "apollo-server-plugin-base": "^3.6.2", + "apollo-server-types": "^3.6.2", + "async-retry": "^1.2.1", + "fast-json-stable-stringify": "^2.1.0", + "graphql-tag": "^2.11.0", + "loglevel": "^1.6.8", + "lru-cache": "^6.0.0", + "sha.js": "^2.4.11", + "uuid": "^8.0.0", + "whatwg-mimetype": "^3.0.0" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "graphql": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/apollo-server-env": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.1.tgz", + "integrity": "sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==", + "dependencies": { + "node-fetch": "^2.6.7" + }, + "engines": { + "node": ">=12.0" + } + }, + "node_modules/apollo-server-errors": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz", + "integrity": "sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==", + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "graphql": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/apollo-server-express": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.10.0.tgz", + "integrity": "sha512-ww3tZq9I/x3Oxtux8xlHAZcSB0NNQ17lRlY6yCLk1F+jCzdcjuj0x8XNg0GdTrMowt5v43o786bU9VYKD5OVnA==", + "dependencies": { + "@types/accepts": "^1.3.5", + "@types/body-parser": "1.19.2", + "@types/cors": "2.8.12", + "@types/express": "4.17.13", + "@types/express-serve-static-core": "4.17.29", + "accepts": "^1.3.5", + "apollo-server-core": "^3.10.0", + "apollo-server-types": "^3.6.2", + "body-parser": "^1.19.0", + "cors": "^2.8.5", + "parseurl": "^1.3.3" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "express": "^4.17.1", + "graphql": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/apollo-server-express/node_modules/@types/express-serve-static-core": { + "version": "4.17.29", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", + "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/apollo-server-plugin-base": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.6.2.tgz", + "integrity": "sha512-erWXjLOO1u7fxQkbxJ2cwSO7p0tYzNied91I1SJ9tikXZ/2eZUyDyvrpI+4g70kOdEi+AmJ5Fo8ahEXKJ75zdg==", + "dependencies": { + "apollo-server-types": "^3.6.2" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "graphql": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/apollo-server-types": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.6.2.tgz", + "integrity": "sha512-9Z54S7NB+qW1VV+kmiqwU2Q6jxWfX89HlSGCGOo3zrkrperh85LrzABgN9S92+qyeHYd72noMDg2aI039sF3dg==", + "dependencies": { + "@apollo/utils.keyvaluecache": "^1.0.1", + "@apollo/utils.logger": "^1.0.0", + "apollo-reporting-protobuf": "^3.3.2", + "apollo-server-env": "^4.2.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "graphql": "^15.3.0 || ^16.0.0" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/async-retry": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "dependencies": { + "retry": "0.13.1" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/bson": { + "version": "4.6.5", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.6.5.tgz", + "integrity": "sha512-uqrgcjyOaZsHfz7ea8zLRCLe1u+QGUSzMZmvXqO24CDW7DWoW1qiN9folSwa7hSneTSgM2ykDIzF5kcQQ8cwNw==", + "dependencies": { + "buffer": "^5.6.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cssfilter": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/dotenv": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.1.tgz", + "integrity": "sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==", + "engines": { + "node": ">=12" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/graphql": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.5.0.tgz", + "integrity": "sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==", + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mongodb": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.8.1.tgz", + "integrity": "sha512-/NyiM3Ox9AwP5zrfT9TXjRKDJbXlLaUDQ9Rg//2lbg8D2A8GXV0VidYYnA/gfdK6uwbnL4FnAflH7FbGw3TS7w==", + "dependencies": { + "bson": "^4.6.5", + "denque": "^2.0.1", + "mongodb-connection-string-url": "^2.5.2", + "socks": "^2.6.2" + }, + "engines": { + "node": ">=12.9.0" + }, + "optionalDependencies": { + "saslprep": "^1.0.3" + } + }, + "node_modules/mongodb-connection-string-url": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.3.tgz", + "integrity": "sha512-f+/WsED+xF4B74l3k9V/XkTVj5/fxFH2o5ToKXd8Iyi5UhM+sO9u0Ape17Mvl/GkZaFtM0HQnzAG5OTmhKw+tQ==", + "dependencies": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } + }, + "node_modules/mongodb-connection-string-url/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/mongodb-connection-string-url/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/mongodb-connection-string-url/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/nodemon": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", + "integrity": "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==", + "hasInstallScript": true, + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "simple-update-notifier": "^1.0.7", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=8.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nodemon/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/nodemon/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "dependencies": { + "sparse-bitfield": "^3.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/simple-update-notifier": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", + "integrity": "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==", + "dependencies": { + "semver": "~7.0.0" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", + "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "dependencies": { + "nopt": "~1.0.10" + }, + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/value-or-promise": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz", + "integrity": "sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/xss": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.13.tgz", + "integrity": "sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==", + "dependencies": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "bin": { + "xss": "bin/xss" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "dependencies": { + "@apollo/protobufjs": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.4.tgz", + "integrity": "sha512-npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng==", + "requires": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.0", + "@types/node": "^10.1.0", + "long": "^4.0.0" + }, + "dependencies": { + "@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" + } + } + }, + "@apollo/utils.dropunuseddefinitions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-1.1.0.tgz", + "integrity": "sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==", + "requires": {} + }, + "@apollo/utils.keyvaluecache": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.1.tgz", + "integrity": "sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==", + "requires": { + "@apollo/utils.logger": "^1.0.0", + "lru-cache": "^7.10.1" + }, + "dependencies": { + "lru-cache": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.13.2.tgz", + "integrity": "sha512-VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA==" + } + } + }, + "@apollo/utils.logger": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.logger/-/utils.logger-1.0.0.tgz", + "integrity": "sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==" + }, + "@apollo/utils.printwithreducedwhitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-1.1.0.tgz", + "integrity": "sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==", + "requires": {} + }, + "@apollo/utils.removealiases": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.removealiases/-/utils.removealiases-1.0.0.tgz", + "integrity": "sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==", + "requires": {} + }, + "@apollo/utils.sortast": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.sortast/-/utils.sortast-1.1.0.tgz", + "integrity": "sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==", + "requires": { + "lodash.sortby": "^4.7.0" + } + }, + "@apollo/utils.stripsensitiveliterals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-1.2.0.tgz", + "integrity": "sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==", + "requires": {} + }, + "@apollo/utils.usagereporting": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.0.tgz", + "integrity": "sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w==", + "requires": { + "@apollo/utils.dropunuseddefinitions": "^1.1.0", + "@apollo/utils.printwithreducedwhitespace": "^1.1.0", + "@apollo/utils.removealiases": "1.0.0", + "@apollo/utils.sortast": "^1.1.0", + "@apollo/utils.stripsensitiveliterals": "^1.2.0", + "apollo-reporting-protobuf": "^3.3.1" + } + }, + "@apollographql/apollo-tools": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.4.tgz", + "integrity": "sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==", + "requires": {} + }, + "@apollographql/graphql-playground-html": { + "version": "1.6.29", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz", + "integrity": "sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==", + "requires": { + "xss": "^1.0.8" + } + }, + "@graphql-tools/merge": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.1.tgz", + "integrity": "sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==", + "requires": { + "@graphql-tools/utils": "8.9.0", + "tslib": "^2.4.0" + } + }, + "@graphql-tools/mock": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.1.tgz", + "integrity": "sha512-k85qWloFnxw1AAu7P153y1y+9GEbiQ4T17uay2o2QZKtjxPkBADkX0sKYsI7oj+ip+l/D4an3FfsbWATGxzT8w==", + "requires": { + "@graphql-tools/schema": "8.5.1", + "@graphql-tools/utils": "8.9.0", + "fast-json-stable-stringify": "^2.1.0", + "tslib": "^2.4.0" + } + }, + "@graphql-tools/schema": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.5.1.tgz", + "integrity": "sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==", + "requires": { + "@graphql-tools/merge": "8.3.1", + "@graphql-tools/utils": "8.9.0", + "tslib": "^2.4.0", + "value-or-promise": "1.0.11" + } + }, + "@graphql-tools/utils": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz", + "integrity": "sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@josephg/resolvable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz", + "integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==" + }, + "@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" + }, + "@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" + }, + "@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" + }, + "@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" + }, + "@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "requires": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" + }, + "@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" + }, + "@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" + }, + "@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" + }, + "@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" + }, + "@types/accepts": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/cors": { + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==" + }, + "@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.30", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz", + "integrity": "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==" + }, + "@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" + }, + "@types/node": { + "version": "18.6.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.4.tgz", + "integrity": "sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==" + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/webidl-conversions": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-6.1.1.tgz", + "integrity": "sha512-XAahCdThVuCFDQLT7R7Pk/vqeObFNL3YqRyFZg+AqAP/W1/w3xHaIxuW7WszQqTbIBOPRcItYJIou3i/mppu3Q==" + }, + "@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "requires": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "apollo-datasource": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.2.tgz", + "integrity": "sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==", + "requires": { + "@apollo/utils.keyvaluecache": "^1.0.1", + "apollo-server-env": "^4.2.1" + } + }, + "apollo-reporting-protobuf": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz", + "integrity": "sha512-j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ==", + "requires": { + "@apollo/protobufjs": "1.2.4" + } + }, + "apollo-server": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/apollo-server/-/apollo-server-3.10.0.tgz", + "integrity": "sha512-6PAz1XZFM9+K2+QUCXXxQIlZy5mhSOhg0rTx3ZNbIdy1fFNP+6ZjvQAJxBIyEtaKlC2yEPAOg4yi3u8WfuA3bA==", + "requires": { + "@types/express": "4.17.13", + "apollo-server-core": "^3.10.0", + "apollo-server-express": "^3.10.0", + "express": "^4.17.1" + } + }, + "apollo-server-core": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.0.tgz", + "integrity": "sha512-ln5drIk3oW/ycYhcYL9TvM7vRf7OZwJrgHWlnjnMakozBQIBSumdMi4pN001DhU9mVBWTfnmBv3CdcxJdGXIvA==", + "requires": { + "@apollo/utils.keyvaluecache": "^1.0.1", + "@apollo/utils.logger": "^1.0.0", + "@apollo/utils.usagereporting": "^1.0.0", + "@apollographql/apollo-tools": "^0.5.3", + "@apollographql/graphql-playground-html": "1.6.29", + "@graphql-tools/mock": "^8.1.2", + "@graphql-tools/schema": "^8.0.0", + "@josephg/resolvable": "^1.0.0", + "apollo-datasource": "^3.3.2", + "apollo-reporting-protobuf": "^3.3.2", + "apollo-server-env": "^4.2.1", + "apollo-server-errors": "^3.3.1", + "apollo-server-plugin-base": "^3.6.2", + "apollo-server-types": "^3.6.2", + "async-retry": "^1.2.1", + "fast-json-stable-stringify": "^2.1.0", + "graphql-tag": "^2.11.0", + "loglevel": "^1.6.8", + "lru-cache": "^6.0.0", + "sha.js": "^2.4.11", + "uuid": "^8.0.0", + "whatwg-mimetype": "^3.0.0" + } + }, + "apollo-server-env": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.1.tgz", + "integrity": "sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==", + "requires": { + "node-fetch": "^2.6.7" + } + }, + "apollo-server-errors": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz", + "integrity": "sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==", + "requires": {} + }, + "apollo-server-express": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.10.0.tgz", + "integrity": "sha512-ww3tZq9I/x3Oxtux8xlHAZcSB0NNQ17lRlY6yCLk1F+jCzdcjuj0x8XNg0GdTrMowt5v43o786bU9VYKD5OVnA==", + "requires": { + "@types/accepts": "^1.3.5", + "@types/body-parser": "1.19.2", + "@types/cors": "2.8.12", + "@types/express": "4.17.13", + "@types/express-serve-static-core": "4.17.29", + "accepts": "^1.3.5", + "apollo-server-core": "^3.10.0", + "apollo-server-types": "^3.6.2", + "body-parser": "^1.19.0", + "cors": "^2.8.5", + "parseurl": "^1.3.3" + }, + "dependencies": { + "@types/express-serve-static-core": { + "version": "4.17.29", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", + "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + } + } + }, + "apollo-server-plugin-base": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-3.6.2.tgz", + "integrity": "sha512-erWXjLOO1u7fxQkbxJ2cwSO7p0tYzNied91I1SJ9tikXZ/2eZUyDyvrpI+4g70kOdEi+AmJ5Fo8ahEXKJ75zdg==", + "requires": { + "apollo-server-types": "^3.6.2" + } + }, + "apollo-server-types": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-3.6.2.tgz", + "integrity": "sha512-9Z54S7NB+qW1VV+kmiqwU2Q6jxWfX89HlSGCGOo3zrkrperh85LrzABgN9S92+qyeHYd72noMDg2aI039sF3dg==", + "requires": { + "@apollo/utils.keyvaluecache": "^1.0.1", + "@apollo/utils.logger": "^1.0.0", + "apollo-reporting-protobuf": "^3.3.2", + "apollo-server-env": "^4.2.1" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "async-retry": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "requires": { + "retry": "0.13.1" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "bson": { + "version": "4.6.5", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.6.5.tgz", + "integrity": "sha512-uqrgcjyOaZsHfz7ea8zLRCLe1u+QGUSzMZmvXqO24CDW7DWoW1qiN9folSwa7hSneTSgM2ykDIzF5kcQQ8cwNw==", + "requires": { + "buffer": "^5.6.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "cssfilter": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "dotenv": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.1.tgz", + "integrity": "sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "graphql": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.5.0.tgz", + "integrity": "sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==" + }, + "graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "requires": { + "tslib": "^2.1.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==" + }, + "long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "mongodb": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.8.1.tgz", + "integrity": "sha512-/NyiM3Ox9AwP5zrfT9TXjRKDJbXlLaUDQ9Rg//2lbg8D2A8GXV0VidYYnA/gfdK6uwbnL4FnAflH7FbGw3TS7w==", + "requires": { + "bson": "^4.6.5", + "denque": "^2.0.1", + "mongodb-connection-string-url": "^2.5.2", + "saslprep": "^1.0.3", + "socks": "^2.6.2" + } + }, + "mongodb-connection-string-url": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.3.tgz", + "integrity": "sha512-f+/WsED+xF4B74l3k9V/XkTVj5/fxFH2o5ToKXd8Iyi5UhM+sO9u0Ape17Mvl/GkZaFtM0HQnzAG5OTmhKw+tQ==", + "requires": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + }, + "dependencies": { + "tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "requires": { + "punycode": "^2.1.1" + } + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + }, + "whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "nodemon": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", + "integrity": "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==", + "requires": { + "chokidar": "^3.5.2", + "debug": "^3.2.7", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.0.4", + "pstree.remy": "^1.1.8", + "semver": "^5.7.1", + "simple-update-notifier": "^1.0.7", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "requires": { + "sparse-bitfield": "^3.0.3" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "simple-update-notifier": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", + "integrity": "sha512-BBKgR84BJQJm6WjWFMHgLVuo61FBDSj1z/xSFUIozqO6wO7ii0JxCqlIud7Enr/+LhlbNI0whErq96P2qHNWew==", + "requires": { + "semver": "~7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + }, + "socks": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", + "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + } + }, + "sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "requires": { + "memory-pager": "^1.0.2" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "requires": { + "nopt": "~1.0.10" + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "value-or-promise": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz", + "integrity": "sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "xss": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.13.tgz", + "integrity": "sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==", + "requires": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..84d8bb4 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "gabriel-api", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "nodemon src/index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/gabriel-discord/gabriel-api.git" + }, + "keywords": [], + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/gabriel-discord/gabriel-api/issues" + }, + "homepage": "https://github.com/gabriel-discord/gabriel-api#readme", + "dependencies": { + "@graphql-tools/schema": "^8.5.1", + "apollo-server": "^3.10.0", + "dotenv": "^16.0.1", + "express": "^4.18.1", + "graphql": "^16.5.0", + "lodash": "^4.17.21", + "mongodb": "^4.8.1", + "nodemon": "^2.0.19" + } +} diff --git a/src/config.js b/src/config.js new file mode 100644 index 0000000..eee9544 --- /dev/null +++ b/src/config.js @@ -0,0 +1,19 @@ +require('dotenv').config(); + +const config = { + nodeEnv: process.env.NODE_ENV ?? 'development', +}; + +if (process.env.MONGODB_CONNECTION_URI && process.env.MONGODB_DATABASE) { + config.MongoDB = { + url: process.env.MONGODB_CONNECTION_URI, + dbName: process.env.MONGODB_DATABASE, + activityCollection: process.env.ACTIVITY_COLLECTION ?? 'activity', + userCollection: process.env.USER_COLLECTION ?? 'user', + gameCollection: process.env.GAME_COLLECTION ?? 'game', + }; +} else { + throw new Error('No MongoDB URL/Database provided'); +} + +module.exports = config; diff --git a/src/dataSources/Activity/index.js b/src/dataSources/Activity/index.js new file mode 100644 index 0000000..c6f4a4e --- /dev/null +++ b/src/dataSources/Activity/index.js @@ -0,0 +1,31 @@ +const { Db, Collection } = require('mongodb'); + +class Activity { + constructor(config) { + this.mongo = config.MongoDB; + } + + async initialize({ context }) { + this.context = context; + await this.mongo.client.connect(); + + this.db = new Db(this.mongo.client, this.mongo.dbName); + this.collection = new Collection(this.db, this.mongo.activityCollection); + } + + async getActivity({ id }) { + return this.transformActivity(id); + } + + async getActivityById(id) { + return this.transformActivity(id); + } + + transformActivity(activity) { + return { + id: this.context.utils.generateId('Activity', activity), + }; + } +} + +module.exports = Activity; diff --git a/src/dataSources/Game/index.js b/src/dataSources/Game/index.js new file mode 100644 index 0000000..6a6ff9a --- /dev/null +++ b/src/dataSources/Game/index.js @@ -0,0 +1,31 @@ +const { Db, Collection } = require('mongodb'); + +class Game { + constructor(config) { + this.mongo = config.MongoDB; + } + + async initialize({ context }) { + this.context = context; + await this.mongo.client.connect(); + + this.db = new Db(this.mongo.client, this.mongo.dbName); + this.collection = new Collection(this.db, this.mongo.gameCollection); + } + + async getGame({ id }) { + return this.transformGame(id); + } + + async getGameById(id) { + return this.transformGame(id); + } + + transformGame(game) { + return { + id: this.context.utils.generateId('Game', game), + }; + } +} + +module.exports = Game; diff --git a/src/dataSources/User/index.js b/src/dataSources/User/index.js new file mode 100644 index 0000000..66f8ecd --- /dev/null +++ b/src/dataSources/User/index.js @@ -0,0 +1,31 @@ +const { Db, Collection } = require('mongodb'); + +class User { + constructor(config) { + this.mongo = config.MongoDB; + } + + async initialize({ context }) { + this.context = context; + await this.mongo.client.connect(); + + this.db = new Db(this.mongo.client, this.mongo.dbName); + this.collection = new Collection(this.db, this.mongo.userCollection); + } + + async getUser({ id }) { + return this.transformUser(id); + } + + async getUserById(id) { + return this.transformUser(id); + } + + transformUser(user) { + return { + id: this.context.utils.generateId('User', user), + }; + } +} + +module.exports = User; diff --git a/src/dataSources/index.js b/src/dataSources/index.js new file mode 100644 index 0000000..9b4818f --- /dev/null +++ b/src/dataSources/index.js @@ -0,0 +1,32 @@ +const fs = require('fs'); +const set = require('lodash/set'); +const path = require('path'); + +module.exports = (config) => () => { + const getDataSources = (dirPath, exclusions = []) => { + return fs.readdirSync(path.join(...dirPath), { withFileTypes: true }) + .filter((dirent) => dirent.isDirectory() && !exclusions.includes(dirent.name)) + .map((dirent) => { + console.log(`Creating new GQL dataSource instance ${dirent.name}`); + return { + name: `${dirPath.length > 1 ? `${dirPath.slice(1).join('.')}.` : ''}${dirent.name}`, + path: path.join(...dirPath, dirent.name), + }; + }); + }; + + const rootDataSources = getDataSources([__dirname]); + const dataSources = rootDataSources.reduce((arr, dir) => { + const DataSource = require(dir.path); + + fs.readdirSync(dir.path, { withFileTypes: true }) + .filter((dirent) => !dirent.isDirectory() && dirent.name !== 'index.js') + .forEach(({ name }) => { + const component = require(`${dir.path}/${name}`); + return Object.assign(DataSource.prototype, component); + }); + return set(arr, dir.name, new DataSource(config)); + }, {}); + + return dataSources; +}; diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..bfc98e8 --- /dev/null +++ b/src/index.js @@ -0,0 +1,49 @@ +const express = require('express'); +const { ApolloServer } = require('apollo-server-express'); +const { ApolloServerPluginLandingPageGraphQLPlayground } = require('apollo-server-core'); +const utils = require('./lib/utils'); +const config = require('./config'); + +try { + config.MongoDB.client = utils.createMongoClient(config.MongoDB.url); +} catch (error) { + throw new Error(`Error connecting to MongoDB @ ${config.MongoDB.url}`); +} + +const dataSources = require('./dataSources')(config); +const schema = require('./schema').executableSchema(config); +const server = new ApolloServer({ + schema, + dataSources, + context: (context) => ({ + ...context, + utils, + }), + playground: { + endpoint: '/graphql', + }, + plugins: [ + ApolloServerPluginLandingPageGraphQLPlayground(), + ], +}); + +const app = express(); +app.use(express.json()); +app.use(express.urlencoded({ extended: false })); + +const PORT = process.env.PORT ?? 3000; +const expressServer = app.listen(PORT, () => { + console.log(`Server is listening on port ${PORT}`); +}); + +(async () => { + await server.start(); + await server.applyMiddleware({ + app, + }); +})(); + +module.exports = { + apollo: server, + expressServer, +}; diff --git a/src/lib/utils.js b/src/lib/utils.js new file mode 100644 index 0000000..eab6043 --- /dev/null +++ b/src/lib/utils.js @@ -0,0 +1,68 @@ +const crypto = require('crypto'); +const _ = require('lodash'); +const { MongoClient, Db, Collection } = require('mongodb'); + +module.exports = Object.freeze({ + paginateResults({ + after: cursor, + pageSize = 20, + results, + getCursor = (item) => item?.id ?? item?.cursor ?? null, + }) { + const records = (() => { + if (pageSize < 1) return []; + if (!cursor) return results.slice(0, pageSize); + + const cursorIndex = results.findIndex((item) => { + const itemCursor = getCursor(item); + return itemCursor ? cursor === itemCursor : false; + }); + + return cursorIndex >= 0 ? + cursorIndex === results.length - 1 ? + [] : + results.slice( + cursorIndex + 1, + Math.min(results.length, cursorIndex + 1 + pageSize), + ) : + results.slice(0, pageSize); + })(); + + return { + nodes: records, + cursor: records.length ? + getCursor(records[records.length - 1]) : + null, + hasMore: records.length ? + getCursor(records[records.length - 1]) !== + getCursor(results[results.length - 1]) : + false, + }; + }, + generateId(...args) { + return args.length === 1 ? + crypto.createHash('md5').update(JSON.stringify(args[0], Object.keys(args[0]).sort())).digest('hex') : + Buffer.from(args.join(':')).toString('base64'); + }, + resolveId(globalId) { + const [type, id, data] = Buffer.from(globalId, 'base64').toString('ascii').split(':'); + return { type, id, data }; + }, + cacheKeyFn(key) { + let result; + if (typeof key === 'object') { + result = Object.keys(key).sort().map((k) => k + ':' + key[k]).join('-'); + } else { + result = String(key); + } + return result; + }, + createMongoClient(mongoUrl) { + return new MongoClient(mongoUrl); + }, + async getCollectionObject(config, collectionName) { + await config.client.connect(); + const db = new Db(config.client, config.dbName); + return new Collection(db, collectionName); + }, +}); diff --git a/src/schema/Activity/index.js b/src/schema/Activity/index.js new file mode 100644 index 0000000..0cdeabc --- /dev/null +++ b/src/schema/Activity/index.js @@ -0,0 +1,30 @@ +const { gql } = require('apollo-server-express'); + +const typeDefs = gql` + type Activity implements nodeInterface { + id: ID! + } + + extend type Query { + getActivity( + id: Int! + ): Activity! + } + # extend type Mutation {} + # extend type Subscription {} +`; + +const resolvers = { + Query: { + getActivity: async (_, args, context) => { + return await context.dataSources.Activity.getActivity(args); + }, + }, + // Mutation: {}, + // Subscription: {}, +}; + +module.exports = { + typeDefs, + resolvers, +}; diff --git a/src/schema/Game/index.js b/src/schema/Game/index.js new file mode 100644 index 0000000..4373fdb --- /dev/null +++ b/src/schema/Game/index.js @@ -0,0 +1,30 @@ +const { gql } = require('apollo-server-express'); + +const typeDefs = gql` + type Game implements nodeInterface { + id: ID! + } + + extend type Query { + getGame( + id: Int! + ): Game! + } + # extend type Mutation {} + # extend type Subscription {} +`; + +const resolvers = { + Query: { + getGame: async (_, args, context) => { + return await context.dataSources.Game.getGame(args); + }, + }, + // Mutation: {}, + // Subscription: {}, +}; + +module.exports = { + typeDefs, + resolvers, +}; diff --git a/src/schema/User/index.js b/src/schema/User/index.js new file mode 100644 index 0000000..1036066 --- /dev/null +++ b/src/schema/User/index.js @@ -0,0 +1,30 @@ +const { gql } = require('apollo-server-express'); + +const typeDefs = gql` + type User implements nodeInterface { + id: ID! + } + + extend type Query { + getUser( + id: Int! + ): User! + } + # extend type Mutation {} + # extend type Subscription {} +`; + +const resolvers = { + Query: { + getUser: async (_, args, context) => { + return await context.dataSources.User.getUser(args); + }, + }, + // Mutation: {}, + // Subscription: {}, +}; + +module.exports = { + typeDefs, + resolvers, +}; diff --git a/src/schema/index.js b/src/schema/index.js new file mode 100644 index 0000000..2ad72d9 --- /dev/null +++ b/src/schema/index.js @@ -0,0 +1,68 @@ +const fs = require('fs'); +const path = require('path'); +const { makeExecutableSchema } = require('@graphql-tools/schema'); +const { gql } = require('apollo-server-express'); +const { resolveId } = require('../lib/utils'); +const BASE = __dirname; + +const typeDefs = [gql` + scalar DateTime + + interface nodeInterface { + id: ID! + } + + # type Mutation + + type Query { + node(id: ID!): nodeInterface + } + # type Subscription +`]; + +const resolvers = [{ + Query: { + node: async (_, args, context) => { + const { type, id, data } = resolveId(args.id); + switch (type) { + case 'Activity': + return await context.dataSources.Activity.getActivityById(id); + case 'Game': + return await context.dataSources.Game.getGameById(id); + case 'User': + return await context.dataSources.User.getUserById(id); + } + }, + }, + nodeInterface: { + __resolveType: (node) => resolveId(node.id).type, + }, +}]; + +function importSchema(dirName, config, schema) { + return fs.readdirSync(dirName, { withFileTypes: true }) + .reduce((schema, dirent) => { + const location = path.join(dirName, dirent.name); + if (dirent.isDirectory()) { + schema = importSchema(location, config, schema); + } else if (location != __filename) { + const module = require(location); + console.log(`Importing GQL module ${module.id} from ${location.replace(`${BASE}/`, '')} `); + + module?.typeDefs && schema.typeDefs.push(module.typeDefs); + module?.resolvers && schema.resolvers.push(module.resolvers); + } + return schema; + }, schema); +} + +module.exports = { + resolvers, + executableSchema: (config) => { + let schema = importSchema(__dirname, config, { + typeDefs, + resolvers, + }); + return makeExecutableSchema(schema); + }, +}; From a19da1b5713bebbaede2efdd6ac723e7ccba3975 Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Fri, 5 Aug 2022 22:52:32 -0500 Subject: [PATCH 02/14] Moved schema to own file --- docker-compose.yml | 4 +- src/dataSources/Activity/index.js | 2 +- src/dataSources/Game/index.js | 2 +- src/dataSources/User/index.js | 2 +- src/schema/{Activity/index.js => Activity.js} | 5 +++ src/schema/{Game/index.js => Game.js} | 3 ++ src/schema/Status.js | 41 +++++++++++++++++++ src/schema/{User/index.js => User.js} | 4 ++ 8 files changed, 57 insertions(+), 6 deletions(-) rename src/schema/{Activity/index.js => Activity.js} (85%) rename src/schema/{Game/index.js => Game.js} (89%) create mode 100644 src/schema/Status.js rename src/schema/{User/index.js => User.js} (84%) diff --git a/docker-compose.yml b/docker-compose.yml index ef657dd..c4d9dee 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,9 +8,7 @@ services: environment: - MONGODB_CONNECTION_URI=mongodb://mongo:27017 - MONGODB_DATABASE=gabriel - - ACTIVITY_COLLECTION=activity - - USER_COLLECTION=user - - GAME_COLLECTION=game + - TOKEN=TOKEN depends_on: - mongo ports: diff --git a/src/dataSources/Activity/index.js b/src/dataSources/Activity/index.js index c6f4a4e..a80d281 100644 --- a/src/dataSources/Activity/index.js +++ b/src/dataSources/Activity/index.js @@ -10,7 +10,7 @@ class Activity { await this.mongo.client.connect(); this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, this.mongo.activityCollection); + this.collection = new Collection(this.db, 'activity'); } async getActivity({ id }) { diff --git a/src/dataSources/Game/index.js b/src/dataSources/Game/index.js index 6a6ff9a..6f8a8c8 100644 --- a/src/dataSources/Game/index.js +++ b/src/dataSources/Game/index.js @@ -10,7 +10,7 @@ class Game { await this.mongo.client.connect(); this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, this.mongo.gameCollection); + this.collection = new Collection(this.db, 'game'); } async getGame({ id }) { diff --git a/src/dataSources/User/index.js b/src/dataSources/User/index.js index 66f8ecd..fbb03e0 100644 --- a/src/dataSources/User/index.js +++ b/src/dataSources/User/index.js @@ -10,7 +10,7 @@ class User { await this.mongo.client.connect(); this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, this.mongo.userCollection); + this.collection = new Collection(this.db, 'user'); } async getUser({ id }) { diff --git a/src/schema/Activity/index.js b/src/schema/Activity.js similarity index 85% rename from src/schema/Activity/index.js rename to src/schema/Activity.js index 0cdeabc..b38ad0c 100644 --- a/src/schema/Activity/index.js +++ b/src/schema/Activity.js @@ -3,6 +3,11 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type Activity implements nodeInterface { id: ID! + user: User! + game: Game! + start: DateTime! + end: DateTime! + log: [Status!]! } extend type Query { diff --git a/src/schema/Game/index.js b/src/schema/Game.js similarity index 89% rename from src/schema/Game/index.js rename to src/schema/Game.js index 4373fdb..4f44d5e 100644 --- a/src/schema/Game/index.js +++ b/src/schema/Game.js @@ -3,6 +3,9 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type Game implements nodeInterface { id: ID! + gameId: Int! + name: String! + aliases: [String!]! } extend type Query { diff --git a/src/schema/Status.js b/src/schema/Status.js new file mode 100644 index 0000000..1c09ba6 --- /dev/null +++ b/src/schema/Status.js @@ -0,0 +1,41 @@ +const { gql } = require('apollo-server-express'); + +const typeDefs = gql` + type Status implements nodeInterface { + id: ID! + activity: Activity! + start: DateTime! + end: DateTime! + state: DiscordState! + } + + enum DiscordState { + ACTIVE + IDLE + OFFLINE + DO_NOT_DISTURB + } + + extend type Query { + getActivity( + id: Int! + ): Activity! + } + # extend type Mutation {} + # extend type Subscription {} +`; + +const resolvers = { + Query: { + getActivity: async (_, args, context) => { + return await context.dataSources.Activity.getActivity(args); + }, + }, + // Mutation: {}, + // Subscription: {}, +}; + +module.exports = { + typeDefs, + resolvers, +}; diff --git a/src/schema/User/index.js b/src/schema/User.js similarity index 84% rename from src/schema/User/index.js rename to src/schema/User.js index 1036066..63a855e 100644 --- a/src/schema/User/index.js +++ b/src/schema/User.js @@ -3,6 +3,10 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type User implements nodeInterface { id: ID! + discordId: Int! + username: String! + discriminator: Int! + displayName: String! } extend type Query { From f89fb58918e500ef9504e4878d86bf44157a7969 Mon Sep 17 00:00:00 2001 From: jfwu90 Date: Sat, 6 Aug 2022 14:28:40 -0500 Subject: [PATCH 03/14] update graphql schema --- src/config.js | 2 +- src/dataSources/Activity/index.js | 31 ------------------------ src/dataSources/Session/index.js | 31 ++++++++++++++++++++++++ src/schema/{Activity.js => Session.js} | 12 ++++----- src/schema/{Status.js => StatusEvent.js} | 12 ++++----- src/schema/index.js | 4 +-- 6 files changed, 46 insertions(+), 46 deletions(-) delete mode 100644 src/dataSources/Activity/index.js create mode 100644 src/dataSources/Session/index.js rename src/schema/{Activity.js => Session.js} (65%) rename src/schema/{Status.js => StatusEvent.js} (68%) diff --git a/src/config.js b/src/config.js index eee9544..a48fb65 100644 --- a/src/config.js +++ b/src/config.js @@ -8,7 +8,7 @@ if (process.env.MONGODB_CONNECTION_URI && process.env.MONGODB_DATABASE) { config.MongoDB = { url: process.env.MONGODB_CONNECTION_URI, dbName: process.env.MONGODB_DATABASE, - activityCollection: process.env.ACTIVITY_COLLECTION ?? 'activity', + sessionCollection: process.env.SESSION_COLLECTION ?? 'session', userCollection: process.env.USER_COLLECTION ?? 'user', gameCollection: process.env.GAME_COLLECTION ?? 'game', }; diff --git a/src/dataSources/Activity/index.js b/src/dataSources/Activity/index.js deleted file mode 100644 index a80d281..0000000 --- a/src/dataSources/Activity/index.js +++ /dev/null @@ -1,31 +0,0 @@ -const { Db, Collection } = require('mongodb'); - -class Activity { - constructor(config) { - this.mongo = config.MongoDB; - } - - async initialize({ context }) { - this.context = context; - await this.mongo.client.connect(); - - this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, 'activity'); - } - - async getActivity({ id }) { - return this.transformActivity(id); - } - - async getActivityById(id) { - return this.transformActivity(id); - } - - transformActivity(activity) { - return { - id: this.context.utils.generateId('Activity', activity), - }; - } -} - -module.exports = Activity; diff --git a/src/dataSources/Session/index.js b/src/dataSources/Session/index.js new file mode 100644 index 0000000..6f3f34d --- /dev/null +++ b/src/dataSources/Session/index.js @@ -0,0 +1,31 @@ +const { Db, Collection } = require('mongodb'); + +class Session { + constructor(config) { + this.mongo = config.MongoDB; + } + + async initialize({ context }) { + this.context = context; + await this.mongo.client.connect(); + + this.db = new Db(this.mongo.client, this.mongo.dbName); + this.collection = new Collection(this.db, 'session'); + } + + async getSession({ id }) { + return this.transformSession(id); + } + + async getSessionById(id) { + return this.transformSession(id); + } + + transformSession(session) { + return { + id: this.context.utils.generateId('Session', session), + }; + } +} + +module.exports = Session; diff --git a/src/schema/Activity.js b/src/schema/Session.js similarity index 65% rename from src/schema/Activity.js rename to src/schema/Session.js index b38ad0c..c7cea61 100644 --- a/src/schema/Activity.js +++ b/src/schema/Session.js @@ -1,19 +1,19 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` - type Activity implements nodeInterface { + type Session implements nodeInterface { id: ID! user: User! game: Game! start: DateTime! end: DateTime! - log: [Status!]! + events: [StatusEvent!]! } extend type Query { - getActivity( + getSession( id: Int! - ): Activity! + ): Session! } # extend type Mutation {} # extend type Subscription {} @@ -21,8 +21,8 @@ const typeDefs = gql` const resolvers = { Query: { - getActivity: async (_, args, context) => { - return await context.dataSources.Activity.getActivity(args); + sessions: async (_, args, context) => { + return await context.dataSources.Session.getSession(args); }, }, // Mutation: {}, diff --git a/src/schema/Status.js b/src/schema/StatusEvent.js similarity index 68% rename from src/schema/Status.js rename to src/schema/StatusEvent.js index 1c09ba6..df50e1e 100644 --- a/src/schema/Status.js +++ b/src/schema/StatusEvent.js @@ -1,9 +1,9 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` - type Status implements nodeInterface { + type StatusEvent implements nodeInterface { id: ID! - activity: Activity! + session: Session! start: DateTime! end: DateTime! state: DiscordState! @@ -17,9 +17,9 @@ const typeDefs = gql` } extend type Query { - getActivity( + getStatusEvent( id: Int! - ): Activity! + ): Session! } # extend type Mutation {} # extend type Subscription {} @@ -27,8 +27,8 @@ const typeDefs = gql` const resolvers = { Query: { - getActivity: async (_, args, context) => { - return await context.dataSources.Activity.getActivity(args); + getStatusEvent: async (_, args, context) => { + return await context.dataSources.Session.getStatusEvent(args); }, }, // Mutation: {}, diff --git a/src/schema/index.js b/src/schema/index.js index 2ad72d9..bbe0805 100644 --- a/src/schema/index.js +++ b/src/schema/index.js @@ -25,8 +25,8 @@ const resolvers = [{ node: async (_, args, context) => { const { type, id, data } = resolveId(args.id); switch (type) { - case 'Activity': - return await context.dataSources.Activity.getActivityById(id); + case 'Session': + return await context.dataSources.Session.getSessionById(id); case 'Game': return await context.dataSources.Game.getGameById(id); case 'User': From 8aafc16c9d8865018a9d55d534c81f54aea445ab Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Sat, 6 Aug 2022 15:09:06 -0500 Subject: [PATCH 04/14] Fix session query/add nodemon --- Dockerfile | 2 +- docker-compose.yml | 3 +++ src/schema/Game.js | 1 + src/schema/Session.js | 3 ++- src/schema/StatusEvent.js | 1 + src/schema/User.js | 3 ++- 6 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9267ba..76a2022 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,4 @@ COPY package*.json ./ RUN npm ci --production COPY src/ . EXPOSE 3000/tcp -CMD [ "node", "index.js" ] +CMD [ "npm", "start" ] diff --git a/docker-compose.yml b/docker-compose.yml index c4d9dee..d8e7f8e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,6 +9,9 @@ services: - MONGODB_CONNECTION_URI=mongodb://mongo:27017 - MONGODB_DATABASE=gabriel - TOKEN=TOKEN + volumes: + - ./:/app:cached + - /app/node_modules depends_on: - mongo ports: diff --git a/src/schema/Game.js b/src/schema/Game.js index 4f44d5e..11c6474 100644 --- a/src/schema/Game.js +++ b/src/schema/Game.js @@ -28,6 +28,7 @@ const resolvers = { }; module.exports = { + id: 'Game', typeDefs, resolvers, }; diff --git a/src/schema/Session.js b/src/schema/Session.js index c7cea61..2968b1b 100644 --- a/src/schema/Session.js +++ b/src/schema/Session.js @@ -21,7 +21,7 @@ const typeDefs = gql` const resolvers = { Query: { - sessions: async (_, args, context) => { + getSession: async (_, args, context) => { return await context.dataSources.Session.getSession(args); }, }, @@ -30,6 +30,7 @@ const resolvers = { }; module.exports = { + id: 'Session', typeDefs, resolvers, }; diff --git a/src/schema/StatusEvent.js b/src/schema/StatusEvent.js index df50e1e..3d94f53 100644 --- a/src/schema/StatusEvent.js +++ b/src/schema/StatusEvent.js @@ -36,6 +36,7 @@ const resolvers = { }; module.exports = { + id: 'StatusEvent', typeDefs, resolvers, }; diff --git a/src/schema/User.js b/src/schema/User.js index 63a855e..758e10c 100644 --- a/src/schema/User.js +++ b/src/schema/User.js @@ -3,7 +3,7 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type User implements nodeInterface { id: ID! - discordId: Int! + discordId: String! username: String! discriminator: Int! displayName: String! @@ -29,6 +29,7 @@ const resolvers = { }; module.exports = { + id: 'User', typeDefs, resolvers, }; From e5d33994c480eec7f2f6c35de95e73f0596953f6 Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Sat, 6 Aug 2022 15:45:13 -0500 Subject: [PATCH 05/14] Change gameId to string / add dummy data --- docker-compose.yml | 2 + init.js | 23151 +++++++++++++++++++++++++++++++++++++++++++ src/schema/Game.js | 2 +- 3 files changed, 23154 insertions(+), 1 deletion(-) create mode 100644 init.js diff --git a/docker-compose.yml b/docker-compose.yml index d8e7f8e..9fc035e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,8 @@ services: mongo: image: mongo + volumes: + - ./init.js:/init.js ports: - 27017:27017 diff --git a/init.js b/init.js new file mode 100644 index 0000000..35d2a3f --- /dev/null +++ b/init.js @@ -0,0 +1,23151 @@ +use gabriel; +db.game.drop(); +db.session.drop(); +db.user.drop(); +db.user.insertMany([{"discordId":"788818750251007268","username":"Anahi.Spencer","discriminator":1689,"displayName":"Anahi.Spencer"},{"discordId":"336473229248470346","username":"Odell_Hagenes","discriminator":3095,"displayName":"Odell_Hagenes"},{"discordId":"385692164951394422","username":"Sydnie.Spinka","discriminator":9213,"displayName":"Sydnie.Spinka"},{"discordId":"747381962738157784","username":"Olga28","discriminator":4014,"displayName":"Kurtis95"},{"discordId":"106607193284486979","username":"Juliana86","discriminator":9278,"displayName":"Jessyca77"},{"discordId":"725502702868293700","username":"Polly2","discriminator":5838,"displayName":"Dorothy47"},{"discordId":"549054179973094329","username":"Hester98","discriminator":7832,"displayName":"Hester98"},{"discordId":"922664752332558395","username":"Aric_Von18","discriminator":1309,"displayName":"Aric_Von18"},{"discordId":"881335427428668054","username":"Monte.Bode","discriminator":5835,"displayName":"Monte.Bode"},{"discordId":"608700383891121851","username":"Paris37","discriminator":4535,"displayName":"Noelia.Stamm"},{"discordId":"185442579258045359","username":"Mariela.Lind58","discriminator":2732,"displayName":"Myron_Quigley"},{"discordId":"302347517889336519","username":"Carroll33","discriminator":4350,"displayName":"Carroll33"},{"discordId":"101572134856427564","username":"Lance_Schinner","discriminator":2425,"displayName":"Lance_Schinner"},{"discordId":"360264570671216445","username":"Elmer37","discriminator":8803,"displayName":"Elmer37"},{"discordId":"395281349698024181","username":"Collin.Bogisich38","discriminator":9847,"displayName":"Collin.Bogisich38"},{"discordId":"658550407298256890","username":"Hannah_Altenwerth96","discriminator":8139,"displayName":"Hannah_Altenwerth96"},{"discordId":"786084290971413565","username":"Carley_Stracke58","discriminator":4067,"displayName":"Ryann_Kreiger"},{"discordId":"628567265580410356","username":"Brandt.Gleason","discriminator":9801,"displayName":"Brandt.Gleason"},{"discordId":"568387317892070397","username":"Lukas.Boehm","discriminator":6318,"displayName":"Lukas.Boehm"},{"discordId":"565021137482980984","username":"Sebastian33","discriminator":7023,"displayName":"Sebastian33"},{"discordId":"444246898747584433","username":"Hermina_Hegmann","discriminator":4527,"displayName":"Emilio.Renner82"},{"discordId":"495724335127362694","username":"Enid3","discriminator":6598,"displayName":"Princess_Murazik"},{"discordId":"686825797960121847","username":"Maximillian98","discriminator":3878,"displayName":"Maximillian98"},{"discordId":"182925797752958092","username":"Kory.Hyatt","discriminator":6161,"displayName":"Kory.Hyatt"},{"discordId":"302679892350666678","username":"Rosendo.Lindgren","discriminator":2308,"displayName":"Rosendo.Lindgren"}]); +db.user.insertMany([{"discordId":"521350927850935744","username":"Mossie_Gaylord11","discriminator":3088,"displayName":"Lacey89"},{"discordId":"430732724825949756","username":"Brendan6","discriminator":2391,"displayName":"Brendan6"},{"discordId":"872035310834814925","username":"Pinkie9","discriminator":8038,"displayName":"Pinkie9"},{"discordId":"137536289023624121","username":"Perry_Herzog31","discriminator":6052,"displayName":"Earlene23"},{"discordId":"821608522568592914","username":"Madyson.Ritchie","discriminator":6572,"displayName":"Madyson.Ritchie"},{"discordId":"538658792298239054","username":"Kenton_Jerde33","discriminator":9540,"displayName":"Kenton_Jerde33"},{"discordId":"600708263053781983","username":"Marquise_Brekke","discriminator":4178,"displayName":"Marquise_Brekke"},{"discordId":"800318424708872602","username":"Piper30","discriminator":3171,"displayName":"Piper30"},{"discordId":"958598056500699208","username":"Melisa_Wuckert21","discriminator":6444,"displayName":"Lourdes_Schinner48"},{"discordId":"213263852824749877","username":"Domenic12","discriminator":3773,"displayName":"Domenic12"},{"discordId":"394970121077311909","username":"Dimitri_Will","discriminator":6784,"displayName":"Dimitri_Will"},{"discordId":"424856688594618054","username":"Catalina_Dicki58","discriminator":8804,"displayName":"Catalina_Dicki58"},{"discordId":"841397740041930984","username":"Robb37","discriminator":8943,"displayName":"Robb37"},{"discordId":"786028561315351452","username":"Taryn0","discriminator":7351,"displayName":"Taryn0"},{"discordId":"463820732483181525","username":"Delphia.Schultz28","discriminator":1664,"displayName":"Delphia.Schultz28"},{"discordId":"541104083732114799","username":"Susana86","discriminator":9543,"displayName":"Susana86"},{"discordId":"147480245458136084","username":"Marcelina80","discriminator":1728,"displayName":"Marcelina80"},{"discordId":"329429619186234053","username":"Martina.Mann12","discriminator":1652,"displayName":"Hester_Kassulke"},{"discordId":"911848869344266044","username":"Cathy93","discriminator":8969,"displayName":"Cathy93"},{"discordId":"346608907417001845","username":"Blaze65","discriminator":8560,"displayName":"Blaze65"},{"discordId":"297014162745407430","username":"Emmitt76","discriminator":9496,"displayName":"Emmitt76"},{"discordId":"153631479524744694","username":"Tre88","discriminator":8121,"displayName":"Tre88"},{"discordId":"500919588166575890","username":"Heber.MacGyver","discriminator":3167,"displayName":"Joanne.Abbott32"},{"discordId":"318220875546522080","username":"Hilario_Schaefer13","discriminator":4992,"displayName":"Marian.Collins"},{"discordId":"623295654897148670","username":"Dylan99","discriminator":6178,"displayName":"Dylan99"}]); +db.user.insertMany([{"discordId":"378424071510192465","username":"Floyd.Erdman","discriminator":9495,"displayName":"Norene.Green57"},{"discordId":"123137660023366590","username":"Robbie_Davis85","discriminator":1544,"displayName":"Misael82"},{"discordId":"355708392202112685","username":"Addison.Block70","discriminator":7941,"displayName":"Addison.Block70"},{"discordId":"131482253203487270","username":"Elias.Haley","discriminator":9998,"displayName":"Elias.Haley"},{"discordId":"625617695768437507","username":"Brandi.Veum32","discriminator":4167,"displayName":"Brandi.Veum32"},{"discordId":"530539422724200800","username":"Valentina_Harber","discriminator":6043,"displayName":"Valentina_Harber"},{"discordId":"713444659295913502","username":"Christiana61","discriminator":9980,"displayName":"Buddy_Sauer36"},{"discordId":"768513326430993269","username":"Rudolph.Davis","discriminator":3517,"displayName":"Rudolph.Davis"},{"discordId":"878082205985098233","username":"Asa.Johnston","discriminator":2193,"displayName":"Asa.Johnston"},{"discordId":"605723970188938456","username":"Anais4","discriminator":7513,"displayName":"Anais4"},{"discordId":"732542352358923773","username":"Ashton.Mann","discriminator":6314,"displayName":"Ashton.Mann"},{"discordId":"200801427122341912","username":"Scottie.Wehner","discriminator":3950,"displayName":"Scottie.Wehner"},{"discordId":"525940629729163286","username":"Issac.King","discriminator":2203,"displayName":"Issac.King"},{"discordId":"596421190780633864","username":"Zion.Rolfson","discriminator":1064,"displayName":"Joannie70"},{"discordId":"537786518874514211","username":"Magnolia.Kunze","discriminator":9682,"displayName":"Magnolia.Kunze"},{"discordId":"938976307338486810","username":"Creola29","discriminator":4464,"displayName":"Creola29"},{"discordId":"695941172337689379","username":"Dessie50","discriminator":5140,"displayName":"Dessie50"},{"discordId":"126384926926158511","username":"Jason14","discriminator":5826,"displayName":"Gladys.Deckow"},{"discordId":"951131768137733554","username":"Sidney45","discriminator":2387,"displayName":"Sidney45"},{"discordId":"161887854890745672","username":"Maudie_Bauch","discriminator":6659,"displayName":"Maudie_Bauch"},{"discordId":"467658810442648809","username":"Lydia_Sanford99","discriminator":7253,"displayName":"Granville.Koch"},{"discordId":"264503060524837708","username":"Levi_Tremblay","discriminator":3241,"displayName":"Levi_Tremblay"},{"discordId":"636935635446628860","username":"Christian_Lueilwitz37","discriminator":7962,"displayName":"Christian_Lueilwitz37"},{"discordId":"590467327095087095","username":"Edd62","discriminator":2352,"displayName":"Chasity.Howe84"},{"discordId":"198010595767135394","username":"Casimer_Grady82","discriminator":1536,"displayName":"Liana3"}]); +db.user.insertMany([{"discordId":"931211630078779300","username":"Mariana28","discriminator":4656,"displayName":"Osbaldo.Hoeger"},{"discordId":"866600263421429886","username":"Terrell_Swift45","discriminator":2783,"displayName":"Terrell_Swift45"},{"discordId":"731522398939920723","username":"Jordy.Stehr","discriminator":9342,"displayName":"Jordy.Stehr"},{"discordId":"694111074254984301","username":"Moises_Hirthe74","discriminator":3944,"displayName":"Moises_Hirthe74"},{"discordId":"517335360477493827","username":"Breana52","discriminator":9669,"displayName":"Breana52"},{"discordId":"269014914705953013","username":"Magali.Spinka4","discriminator":4998,"displayName":"Magali.Spinka4"},{"discordId":"406850294055619241","username":"Violet_Murray","discriminator":3571,"displayName":"Althea.Brekke"},{"discordId":"347172184335646820","username":"Michele_Rice","discriminator":1772,"displayName":"Michele_Rice"},{"discordId":"900234800332446962","username":"Muhammad55","discriminator":6103,"displayName":"Muhammad55"},{"discordId":"715446191320920764","username":"Lucius_Fritsch32","discriminator":8969,"displayName":"Dayton.Little"},{"discordId":"951234649334557435","username":"Lee_Wisoky","discriminator":2927,"displayName":"Lee_Wisoky"},{"discordId":"285410867718320291","username":"Anika_Cummerata","discriminator":2295,"displayName":"Anika_Cummerata"},{"discordId":"268139232276871676","username":"Melyssa_Shields29","discriminator":4918,"displayName":"Melyssa_Shields29"},{"discordId":"457796054587169483","username":"Jaylen_Mraz","discriminator":2651,"displayName":"Trenton3"},{"discordId":"452396069922968436","username":"Mariam60","discriminator":5992,"displayName":"Mariam60"},{"discordId":"791267126190249625","username":"Palma.Jerde","discriminator":8082,"displayName":"Margarete.Hoeger58"},{"discordId":"559757870366930730","username":"Lela_Jones","discriminator":4269,"displayName":"Lela_Jones"},{"discordId":"440349172934867131","username":"Delmer_Skiles58","discriminator":1528,"displayName":"Delmer_Skiles58"},{"discordId":"453350270016457959","username":"Cristopher78","discriminator":1039,"displayName":"Cristopher78"},{"discordId":"774637841058278398","username":"Eliseo.Waelchi","discriminator":8296,"displayName":"Eliseo.Waelchi"},{"discordId":"510690749854514547","username":"Julia_Rippin","discriminator":5539,"displayName":"Julia_Rippin"},{"discordId":"302714757313826277","username":"Shane_Boyer","discriminator":5945,"displayName":"Roxane.Kling"},{"discordId":"762163239408560283","username":"Mustafa_Kling","discriminator":2175,"displayName":"Mustafa_Kling"},{"discordId":"584489284152985092","username":"Jess_Jacobs","discriminator":3525,"displayName":"Jess_Jacobs"},{"discordId":"494763633796983404","username":"Helena24","discriminator":9332,"displayName":"Will1"}]); +db.game.insertMany([{"gameId": "700136079562375258", "name": "VALORANT"},{"gameId": "356875221078245376", "name": "Overwatch"},{"name":"Visage","gameId":"508057374875975682"},{"name":"Kynseed","gameId":"510199020782747732"},{"name":"Thronebreaker","gameId":"511619499053678668"},{"name":"Paladins Strike","gameId":"512498684211232768"},{"name":"Fallout 76","gameId":"512501896896970762"},{"name":"Battlefield V","gameId":"512699108809637890"},{"name":"Battle Chef Brigade","gameId":"512789120234422301"},{"name":"Kingsway","gameId":"512789343157485602"},{"name":"Zenzizenzic","gameId":"512789427462995988"},{"name":"Borderlands 3","gameId":"514228311661084682"},{"name":"Realm Royale","gameId":"518088627234930688"},{"name":"Turok","gameId":"519644267212177418"},{"name":"Turok 2: Seeds of Evil","gameId":"519644368735567873"},{"name":"Ashen","gameId":"520453007578628124"},{"name":"Hades","gameId":"520462578061803588"},{"name":"Nitro","gameId":"521842831262875670"},{"name":"Far Cry New Dawn","gameId":"523154344187789312"},{"name":"ATLAS","gameId":"526489929631531009"},{"name":"Paladins","gameId":"528145079819436043"},{"name":"Metro Exodus","gameId":"530454325214969866"},{"name":"Sea of Thieves","gameId":"535371564850479134"},{"name":"LEGO Harry Potter: Years 5-7","gameId":"535384357536399404"},{"name":"Subnautica: Below Zero","gameId":"535869836748783616"},{"name":"Ghost Recon Breakpoint","gameId":"540120593576493057"},{"name":"Apex Legends","gameId":"542075586886107149"},{"name":"Farming Simulator 19","gameId":"542474758835535872"},{"name":"Warhammer: VermintgameIde 2","gameId":"542475118396309528"},{"name":"Anthem","gameId":"546175179542364160"},{"name":"Spellbreak","gameId":"549512435585908756"},{"name":"Heroes & Generals WWII","gameId":"550277544025522176"},{"name":"Dawn of Man","gameId":"553697181249437716"},{"name":"Warface","gameId":"554573307161214977"},{"name":"Tom Clancy's The Division 2","gameId":"554921822626381879"},{"name":"Temtem","gameId":"558547388583772201"},{"name":"Mutant Year Zero: Road to Eden","gameId":"560781100197216267"},{"name":"Bloodstained: Ritual of the Night","gameId":"565341641427124244"},{"name":"Sekiro: Shadows Die Twice","gameId":"569008830701240340"},{"name":"Risk of Rain 2","gameId":"569253958967885828"},{"name":"Satisfactory","gameId":"572456126872944651"},{"name":"MORDHAU","gameId":"575412499399180288"},{"name":"Baba Is You","gameId":"576482762446602270"},{"name":"Staxel","gameId":"584069374462394368"},{"name":"Supreme Ruler Ultimate","gameId":"588739017718366208"},{"name":"Dota Underlords","gameId":"592976500802846750"},{"name":"PUBG LITE","gameId":"597588168178663434"},{"name":"Swords of Gurrah","gameId":"597860020935327787"},{"name":"Lethal League Blaze","gameId":"606163888052109312"},{"name":"Bloons TD 6","gameId":"614380482620293151"},{"name":"Bloons Adventure Time TD","gameId":"614448244260339712"}]); +db.session.insertMany([ + { + "user": "302714757313826277", + "game": "512498684211232768", + "start": "2022-06-26T15:28:15.627Z", + "end": "2022-06-26T20:01:05.646Z", + "events": [ + { + "start": "2022-06-26T15:28:15.627Z", + "end": "2022-06-26T16:22:49.630Z", + "state": "IDLE" + }, + { + "start": "2022-06-26T16:22:49.630Z", + "end": "2022-06-26T17:17:23.633Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T17:17:23.633Z", + "end": "2022-06-26T18:11:57.636Z", + "state": "IDLE" + }, + { + "start": "2022-06-26T18:11:57.636Z", + "end": "2022-06-26T19:06:31.639Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-26T19:06:31.639Z", + "end": "2022-06-26T20:01:05.642Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "523154344187789312", + "start": "2022-05-02T03:29:38.617Z", + "end": "2022-05-02T06:31:00.058Z", + "events": [ + { + "start": "2022-05-02T03:29:38.617Z", + "end": "2022-05-02T04:14:58.977Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T04:14:58.977Z", + "end": "2022-05-02T05:00:19.337Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T05:00:19.337Z", + "end": "2022-05-02T05:45:39.697Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T05:45:39.697Z", + "end": "2022-05-02T06:31:00.057Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "500919588166575890", + "game": "540120593576493057", + "start": "2022-04-19T02:52:15.407Z", + "end": "2022-04-19T04:51:22.187Z", + "events": [ + { + "start": "2022-04-19T02:52:15.407Z", + "end": "2022-04-19T03:16:04.763Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T03:16:04.763Z", + "end": "2022-04-19T03:39:54.119Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T03:39:54.119Z", + "end": "2022-04-19T04:03:43.475Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T04:03:43.475Z", + "end": "2022-04-19T04:27:32.831Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T04:27:32.831Z", + "end": "2022-04-19T04:51:22.187Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "958598056500699208", + "game": "535384357536399404", + "start": "2022-07-22T03:36:18.916Z", + "end": "2022-07-22T07:47:02.631Z", + "events": [ + { + "start": "2022-07-22T03:36:18.916Z", + "end": "2022-07-22T04:59:53.487Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T04:59:53.487Z", + "end": "2022-07-22T06:23:28.058Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T06:23:28.058Z", + "end": "2022-07-22T07:47:02.629Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "336473229248470346", + "game": "520453007578628124", + "start": "2022-06-30T01:06:22.586Z", + "end": "2022-06-30T10:22:57.185Z", + "events": [ + { + "start": "2022-06-30T01:06:22.586Z", + "end": "2022-06-30T10:22:57.185Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "521350927850935744", + "game": "550277544025522176", + "start": "2022-06-16T06:58:07.801Z", + "end": "2022-06-16T06:59:40.279Z", + "events": [ + { + "start": "2022-06-16T06:58:07.801Z", + "end": "2022-06-16T06:58:30.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-16T06:58:30.920Z", + "end": "2022-06-16T06:58:54.039Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T06:58:54.039Z", + "end": "2022-06-16T06:59:17.158Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T06:59:17.158Z", + "end": "2022-06-16T06:59:40.277Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "200801427122341912", + "game": "514228311661084682", + "start": "2022-06-01T13:19:00.487Z", + "end": "2022-06-01T17:40:05.854Z", + "events": [ + { + "start": "2022-06-01T13:19:00.487Z", + "end": "2022-06-01T15:29:33.170Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T15:29:33.170Z", + "end": "2022-06-01T17:40:05.853Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "549512435585908756", + "start": "2022-04-21T00:09:03.538Z", + "end": "2022-04-21T05:15:15.889Z", + "events": [ + { + "start": "2022-04-21T00:09:03.538Z", + "end": "2022-04-21T02:42:09.713Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T02:42:09.713Z", + "end": "2022-04-21T05:15:15.888Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "878082205985098233", + "game": "606163888052109312", + "start": "2022-07-01T08:38:01.657Z", + "end": "2022-07-01T13:37:31.108Z", + "events": [ + { + "start": "2022-07-01T08:38:01.657Z", + "end": "2022-07-01T11:07:46.382Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T11:07:46.382Z", + "end": "2022-07-01T13:37:31.107Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "526489929631531009", + "start": "2022-05-16T03:04:32.793Z", + "end": "2022-05-16T10:01:49.709Z", + "events": [ + { + "start": "2022-05-16T03:04:32.793Z", + "end": "2022-05-16T06:33:11.251Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T06:33:11.251Z", + "end": "2022-05-16T10:01:49.709Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "821608522568592914", + "game": "569008830701240340", + "start": "2022-06-23T15:40:40.856Z", + "end": "2022-06-23T22:35:22.572Z", + "events": [ + { + "start": "2022-06-23T15:40:40.856Z", + "end": "2022-06-23T17:24:21.285Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-23T17:24:21.285Z", + "end": "2022-06-23T19:08:01.714Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-23T19:08:01.714Z", + "end": "2022-06-23T20:51:42.143Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T20:51:42.143Z", + "end": "2022-06-23T22:35:22.572Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "137536289023624121", + "game": "511619499053678668", + "start": "2022-07-15T18:36:47.356Z", + "end": "2022-07-15T18:37:48.192Z", + "events": [ + { + "start": "2022-07-15T18:36:47.356Z", + "end": "2022-07-15T18:37:17.774Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-15T18:37:17.774Z", + "end": "2022-07-15T18:37:48.192Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "628567265580410356", + "game": "540120593576493057", + "start": "2022-05-15T19:17:09.456Z", + "end": "2022-05-16T02:59:33.907Z", + "events": [ + { + "start": "2022-05-15T19:17:09.456Z", + "end": "2022-05-15T21:51:17.606Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T21:51:17.606Z", + "end": "2022-05-16T00:25:25.756Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T00:25:25.756Z", + "end": "2022-05-16T02:59:33.906Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "494763633796983404", + "game": "520453007578628124", + "start": "2022-07-10T15:20:22.201Z", + "end": "2022-07-10T16:14:36.912Z", + "events": [ + { + "start": "2022-07-10T15:20:22.201Z", + "end": "2022-07-10T15:47:29.556Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T15:47:29.556Z", + "end": "2022-07-10T16:14:36.911Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "520453007578628124", + "start": "2022-08-04T06:36:29.737Z", + "end": "2022-08-04T13:32:45.474Z", + "events": [ + { + "start": "2022-08-04T06:36:29.737Z", + "end": "2022-08-04T10:04:37.605Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T10:04:37.605Z", + "end": "2022-08-04T13:32:45.473Z", + "state": "IDLE" + } + ] + }, + { + "user": "951234649334557435", + "game": "514228311661084682", + "start": "2022-06-08T14:22:39.764Z", + "end": "2022-06-08T19:11:38.919Z", + "events": [ + { + "start": "2022-06-08T14:22:39.764Z", + "end": "2022-06-08T16:47:09.341Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T16:47:09.341Z", + "end": "2022-06-08T19:11:38.918Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "521842831262875670", + "start": "2022-07-01T09:33:18.686Z", + "end": "2022-07-01T18:14:41.417Z", + "events": [ + { + "start": "2022-07-01T09:33:18.686Z", + "end": "2022-07-01T11:43:39.368Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T11:43:39.368Z", + "end": "2022-07-01T13:54:00.050Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T13:54:00.050Z", + "end": "2022-07-01T16:04:20.732Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-01T16:04:20.732Z", + "end": "2022-07-01T18:14:41.414Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "700136079562375258", + "start": "2022-05-31T08:06:44.843Z", + "end": "2022-05-31T09:45:33.361Z", + "events": [ + { + "start": "2022-05-31T08:06:44.843Z", + "end": "2022-05-31T08:39:41.015Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T08:39:41.015Z", + "end": "2022-05-31T09:12:37.187Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T09:12:37.187Z", + "end": "2022-05-31T09:45:33.359Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "494763633796983404", + "game": "510199020782747732", + "start": "2022-07-20T21:25:56.107Z", + "end": "2022-07-21T04:46:22.425Z", + "events": [ + { + "start": "2022-07-20T21:25:56.107Z", + "end": "2022-07-21T01:06:09.266Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T01:06:09.266Z", + "end": "2022-07-21T04:46:22.425Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "695941172337689379", + "game": "588739017718366208", + "start": "2022-05-12T05:36:19.453Z", + "end": "2022-05-12T10:13:21.016Z", + "events": [ + { + "start": "2022-05-12T05:36:19.453Z", + "end": "2022-05-12T07:08:39.974Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T07:08:39.974Z", + "end": "2022-05-12T08:41:00.495Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-12T08:41:00.495Z", + "end": "2022-05-12T10:13:21.016Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "519644368735567873", + "start": "2022-05-24T11:08:16.895Z", + "end": "2022-05-24T11:50:56.141Z", + "events": [ + { + "start": "2022-05-24T11:08:16.895Z", + "end": "2022-05-24T11:16:48.744Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T11:16:48.744Z", + "end": "2022-05-24T11:25:20.593Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T11:25:20.593Z", + "end": "2022-05-24T11:33:52.442Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T11:33:52.442Z", + "end": "2022-05-24T11:42:24.291Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T11:42:24.291Z", + "end": "2022-05-24T11:50:56.140Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "182925797752958092", + "game": "549512435585908756", + "start": "2022-04-28T03:47:51.221Z", + "end": "2022-04-28T05:08:58.422Z", + "events": [ + { + "start": "2022-04-28T03:47:51.221Z", + "end": "2022-04-28T04:04:04.661Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T04:04:04.661Z", + "end": "2022-04-28T04:20:18.101Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T04:20:18.101Z", + "end": "2022-04-28T04:36:31.541Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-28T04:36:31.541Z", + "end": "2022-04-28T04:52:44.981Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T04:52:44.981Z", + "end": "2022-04-28T05:08:58.421Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "520453007578628124", + "start": "2022-08-05T14:05:45.578Z", + "end": "2022-08-05T15:12:59.263Z", + "events": [ + { + "start": "2022-08-05T14:05:45.578Z", + "end": "2022-08-05T14:39:22.420Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T14:39:22.420Z", + "end": "2022-08-05T15:12:59.262Z", + "state": "IDLE" + } + ] + }, + { + "user": "457796054587169483", + "game": "565341641427124244", + "start": "2022-05-16T23:21:20.520Z", + "end": "2022-05-17T08:14:01.005Z", + "events": [ + { + "start": "2022-05-16T23:21:20.520Z", + "end": "2022-05-17T08:14:01.005Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "713444659295913502", + "game": "558547388583772201", + "start": "2022-06-18T13:35:26.722Z", + "end": "2022-06-18T18:14:18.782Z", + "events": [ + { + "start": "2022-06-18T13:35:26.722Z", + "end": "2022-06-18T15:54:52.752Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-18T15:54:52.752Z", + "end": "2022-06-18T18:14:18.782Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "512501896896970762", + "start": "2022-07-24T23:45:55.013Z", + "end": "2022-07-25T01:30:16.596Z", + "events": [ + { + "start": "2022-07-24T23:45:55.013Z", + "end": "2022-07-25T00:38:05.804Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-25T00:38:05.804Z", + "end": "2022-07-25T01:30:16.595Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "268139232276871676", + "game": "512789120234422301", + "start": "2022-05-05T14:24:20.751Z", + "end": "2022-05-05T17:17:07.579Z", + "events": [ + { + "start": "2022-05-05T14:24:20.751Z", + "end": "2022-05-05T17:17:07.579Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "452396069922968436", + "game": "597588168178663434", + "start": "2022-07-06T07:08:59.781Z", + "end": "2022-07-06T13:33:32.595Z", + "events": [ + { + "start": "2022-07-06T07:08:59.781Z", + "end": "2022-07-06T08:45:07.984Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T08:45:07.984Z", + "end": "2022-07-06T10:21:16.187Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T10:21:16.187Z", + "end": "2022-07-06T11:57:24.390Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T11:57:24.390Z", + "end": "2022-07-06T13:33:32.593Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "198010595767135394", + "game": "700136079562375258", + "start": "2022-08-03T06:56:17.101Z", + "end": "2022-08-03T12:25:31.056Z", + "events": [ + { + "start": "2022-08-03T06:56:17.101Z", + "end": "2022-08-03T08:18:35.589Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T08:18:35.589Z", + "end": "2022-08-03T09:40:54.077Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T09:40:54.077Z", + "end": "2022-08-03T11:03:12.565Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T11:03:12.565Z", + "end": "2022-08-03T12:25:31.053Z", + "state": "IDLE" + } + ] + }, + { + "user": "695941172337689379", + "game": "588739017718366208", + "start": "2022-06-03T13:54:13.957Z", + "end": "2022-06-03T16:47:30.691Z", + "events": [ + { + "start": "2022-06-03T13:54:13.957Z", + "end": "2022-06-03T14:28:53.303Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T14:28:53.303Z", + "end": "2022-06-03T15:03:32.649Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T15:03:32.649Z", + "end": "2022-06-03T15:38:11.995Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T15:38:11.995Z", + "end": "2022-06-03T16:12:51.341Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T16:12:51.341Z", + "end": "2022-06-03T16:47:30.687Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "565341641427124244", + "start": "2022-05-04T19:36:29.783Z", + "end": "2022-05-04T22:34:17.695Z", + "events": [ + { + "start": "2022-05-04T19:36:29.783Z", + "end": "2022-05-04T20:20:56.761Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T20:20:56.761Z", + "end": "2022-05-04T21:05:23.739Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T21:05:23.739Z", + "end": "2022-05-04T21:49:50.717Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T21:49:50.717Z", + "end": "2022-05-04T22:34:17.695Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "523154344187789312", + "start": "2022-07-27T20:25:59.868Z", + "end": "2022-07-28T02:26:24.320Z", + "events": [ + { + "start": "2022-07-27T20:25:59.868Z", + "end": "2022-07-27T22:26:08.018Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T22:26:08.018Z", + "end": "2022-07-28T00:26:16.168Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T00:26:16.168Z", + "end": "2022-07-28T02:26:24.318Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "347172184335646820", + "game": "535869836748783616", + "start": "2022-05-19T21:14:55.030Z", + "end": "2022-05-20T02:14:56.180Z", + "events": [ + { + "start": "2022-05-19T21:14:55.030Z", + "end": "2022-05-19T22:14:55.260Z", + "state": "IDLE" + }, + { + "start": "2022-05-19T22:14:55.260Z", + "end": "2022-05-19T23:14:55.490Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-19T23:14:55.490Z", + "end": "2022-05-20T00:14:55.720Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-20T00:14:55.720Z", + "end": "2022-05-20T01:14:55.950Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T01:14:55.950Z", + "end": "2022-05-20T02:14:56.180Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "510199020782747732", + "start": "2022-05-23T06:25:15.018Z", + "end": "2022-05-23T08:10:19.492Z", + "events": [ + { + "start": "2022-05-23T06:25:15.018Z", + "end": "2022-05-23T08:10:19.492Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "530454325214969866", + "start": "2022-05-24T03:57:47.174Z", + "end": "2022-05-24T11:53:08.484Z", + "events": [ + { + "start": "2022-05-24T03:57:47.174Z", + "end": "2022-05-24T06:36:14.277Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T06:36:14.277Z", + "end": "2022-05-24T09:14:41.380Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T09:14:41.380Z", + "end": "2022-05-24T11:53:08.483Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "530454325214969866", + "start": "2022-04-22T20:28:19.369Z", + "end": "2022-04-23T04:57:19.121Z", + "events": [ + { + "start": "2022-04-22T20:28:19.369Z", + "end": "2022-04-22T22:10:07.319Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T22:10:07.319Z", + "end": "2022-04-22T23:51:55.269Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T23:51:55.269Z", + "end": "2022-04-23T01:33:43.219Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T01:33:43.219Z", + "end": "2022-04-23T03:15:31.169Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-23T03:15:31.169Z", + "end": "2022-04-23T04:57:19.119Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "872035310834814925", + "game": "572456126872944651", + "start": "2022-05-24T19:59:53.711Z", + "end": "2022-05-25T05:27:53.773Z", + "events": [ + { + "start": "2022-05-24T19:59:53.711Z", + "end": "2022-05-24T21:53:29.723Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T21:53:29.723Z", + "end": "2022-05-24T23:47:05.735Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T23:47:05.735Z", + "end": "2022-05-25T01:40:41.747Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T01:40:41.747Z", + "end": "2022-05-25T03:34:17.759Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T03:34:17.759Z", + "end": "2022-05-25T05:27:53.771Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "608700383891121851", + "game": "565341641427124244", + "start": "2022-07-30T16:49:44.414Z", + "end": "2022-07-30T18:51:56.197Z", + "events": [ + { + "start": "2022-07-30T16:49:44.414Z", + "end": "2022-07-30T17:14:10.770Z", + "state": "IDLE" + }, + { + "start": "2022-07-30T17:14:10.770Z", + "end": "2022-07-30T17:38:37.126Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-30T17:38:37.126Z", + "end": "2022-07-30T18:03:03.482Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-30T18:03:03.482Z", + "end": "2022-07-30T18:27:29.838Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-30T18:27:29.838Z", + "end": "2022-07-30T18:51:56.194Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "546175179542364160", + "start": "2022-04-25T18:35:20.483Z", + "end": "2022-04-25T20:48:05.357Z", + "events": [ + { + "start": "2022-04-25T18:35:20.483Z", + "end": "2022-04-25T19:41:42.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T19:41:42.920Z", + "end": "2022-04-25T20:48:05.357Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "512789427462995988", + "start": "2022-04-25T18:17:18.598Z", + "end": "2022-04-26T02:46:42.609Z", + "events": [ + { + "start": "2022-04-25T18:17:18.598Z", + "end": "2022-04-25T22:32:00.603Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T22:32:00.603Z", + "end": "2022-04-26T02:46:42.608Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "542075586886107149", + "start": "2022-06-05T16:15:32.126Z", + "end": "2022-06-05T16:52:48.152Z", + "events": [ + { + "start": "2022-06-05T16:15:32.126Z", + "end": "2022-06-05T16:52:48.152Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "521350927850935744", + "game": "549512435585908756", + "start": "2022-07-04T11:02:12.714Z", + "end": "2022-07-04T12:49:39.778Z", + "events": [ + { + "start": "2022-07-04T11:02:12.714Z", + "end": "2022-07-04T11:29:04.480Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T11:29:04.480Z", + "end": "2022-07-04T11:55:56.246Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T11:55:56.246Z", + "end": "2022-07-04T12:22:48.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T12:22:48.012Z", + "end": "2022-07-04T12:49:39.778Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "614448244260339712", + "start": "2022-05-21T08:07:07.647Z", + "end": "2022-05-21T12:53:45.192Z", + "events": [ + { + "start": "2022-05-21T08:07:07.647Z", + "end": "2022-05-21T09:42:40.162Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T09:42:40.162Z", + "end": "2022-05-21T11:18:12.677Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T11:18:12.677Z", + "end": "2022-05-21T12:53:45.192Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "521350927850935744", + "game": "575412499399180288", + "start": "2022-05-30T05:31:10.240Z", + "end": "2022-05-30T15:34:40.853Z", + "events": [ + { + "start": "2022-05-30T05:31:10.240Z", + "end": "2022-05-30T08:52:20.444Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T08:52:20.444Z", + "end": "2022-05-30T12:13:30.648Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T12:13:30.648Z", + "end": "2022-05-30T15:34:40.852Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "788818750251007268", + "game": "535384357536399404", + "start": "2022-06-28T07:45:12.656Z", + "end": "2022-06-28T16:33:33.145Z", + "events": [ + { + "start": "2022-06-28T07:45:12.656Z", + "end": "2022-06-28T16:33:33.145Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "614448244260339712", + "start": "2022-06-01T01:43:12.726Z", + "end": "2022-06-01T01:50:31.865Z", + "events": [ + { + "start": "2022-06-01T01:43:12.726Z", + "end": "2022-06-01T01:44:40.553Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T01:44:40.553Z", + "end": "2022-06-01T01:46:08.380Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T01:46:08.380Z", + "end": "2022-06-01T01:47:36.207Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T01:47:36.207Z", + "end": "2022-06-01T01:49:04.034Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T01:49:04.034Z", + "end": "2022-06-01T01:50:31.861Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "519644267212177418", + "start": "2022-05-21T17:56:28.416Z", + "end": "2022-05-21T22:33:54.495Z", + "events": [ + { + "start": "2022-05-21T17:56:28.416Z", + "end": "2022-05-21T19:05:49.935Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T19:05:49.935Z", + "end": "2022-05-21T20:15:11.454Z", + "state": "IDLE" + }, + { + "start": "2022-05-21T20:15:11.454Z", + "end": "2022-05-21T21:24:32.973Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T21:24:32.973Z", + "end": "2022-05-21T22:33:54.492Z", + "state": "IDLE" + } + ] + }, + { + "user": "494763633796983404", + "game": "550277544025522176", + "start": "2022-07-08T05:14:14.765Z", + "end": "2022-07-08T10:39:41.217Z", + "events": [ + { + "start": "2022-07-08T05:14:14.765Z", + "end": "2022-07-08T06:35:36.378Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T06:35:36.378Z", + "end": "2022-07-08T07:56:57.991Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T07:56:57.991Z", + "end": "2022-07-08T09:18:19.604Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T09:18:19.604Z", + "end": "2022-07-08T10:39:41.217Z", + "state": "IDLE" + } + ] + }, + { + "user": "336473229248470346", + "game": "560781100197216267", + "start": "2022-05-10T21:11:25.420Z", + "end": "2022-05-11T02:34:49.499Z", + "events": [ + { + "start": "2022-05-10T21:11:25.420Z", + "end": "2022-05-10T22:32:16.439Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T22:32:16.439Z", + "end": "2022-05-10T23:53:07.458Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T23:53:07.458Z", + "end": "2022-05-11T01:13:58.477Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T01:13:58.477Z", + "end": "2022-05-11T02:34:49.496Z", + "state": "IDLE" + } + ] + }, + { + "user": "841397740041930984", + "game": "550277544025522176", + "start": "2022-05-17T19:01:20.598Z", + "end": "2022-05-18T02:56:32.458Z", + "events": [ + { + "start": "2022-05-17T19:01:20.598Z", + "end": "2022-05-18T02:56:32.458Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "526489929631531009", + "start": "2022-06-20T17:29:23.466Z", + "end": "2022-06-20T22:16:36.561Z", + "events": [ + { + "start": "2022-06-20T17:29:23.466Z", + "end": "2022-06-20T18:26:50.085Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T18:26:50.085Z", + "end": "2022-06-20T19:24:16.704Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T19:24:16.704Z", + "end": "2022-06-20T20:21:43.323Z", + "state": "IDLE" + }, + { + "start": "2022-06-20T20:21:43.323Z", + "end": "2022-06-20T21:19:09.942Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-20T21:19:09.942Z", + "end": "2022-06-20T22:16:36.561Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "528145079819436043", + "start": "2022-04-28T01:37:42.058Z", + "end": "2022-04-28T06:01:51.084Z", + "events": [ + { + "start": "2022-04-28T01:37:42.058Z", + "end": "2022-04-28T02:30:31.863Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T02:30:31.863Z", + "end": "2022-04-28T03:23:21.668Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T03:23:21.668Z", + "end": "2022-04-28T04:16:11.473Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T04:16:11.473Z", + "end": "2022-04-28T05:09:01.278Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T05:09:01.278Z", + "end": "2022-04-28T06:01:51.083Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "931211630078779300", + "game": "554573307161214977", + "start": "2022-05-23T07:17:44.471Z", + "end": "2022-05-23T08:39:44.841Z", + "events": [ + { + "start": "2022-05-23T07:17:44.471Z", + "end": "2022-05-23T07:38:14.563Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T07:38:14.563Z", + "end": "2022-05-23T07:58:44.655Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-23T07:58:44.655Z", + "end": "2022-05-23T08:19:14.747Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T08:19:14.747Z", + "end": "2022-05-23T08:39:44.839Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "511619499053678668", + "start": "2022-06-05T15:42:43.643Z", + "end": "2022-06-05T16:02:04.172Z", + "events": [ + { + "start": "2022-06-05T15:42:43.643Z", + "end": "2022-06-05T15:46:35.748Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T15:46:35.748Z", + "end": "2022-06-05T15:50:27.853Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T15:50:27.853Z", + "end": "2022-06-05T15:54:19.958Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T15:54:19.958Z", + "end": "2022-06-05T15:58:12.063Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T15:58:12.063Z", + "end": "2022-06-05T16:02:04.168Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "625617695768437507", + "game": "554921822626381879", + "start": "2022-05-24T12:49:02.270Z", + "end": "2022-05-24T20:40:34.870Z", + "events": [ + { + "start": "2022-05-24T12:49:02.270Z", + "end": "2022-05-24T14:23:20.790Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T14:23:20.790Z", + "end": "2022-05-24T15:57:39.310Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T15:57:39.310Z", + "end": "2022-05-24T17:31:57.830Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T17:31:57.830Z", + "end": "2022-05-24T19:06:16.350Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T19:06:16.350Z", + "end": "2022-05-24T20:40:34.870Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "800318424708872602", + "game": "592976500802846750", + "start": "2022-06-04T22:47:58.121Z", + "end": "2022-06-05T05:58:27.408Z", + "events": [ + { + "start": "2022-06-04T22:47:58.121Z", + "end": "2022-06-05T02:23:12.764Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T02:23:12.764Z", + "end": "2022-06-05T05:58:27.407Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "550277544025522176", + "start": "2022-07-17T03:56:27.873Z", + "end": "2022-07-17T11:36:06.690Z", + "events": [ + { + "start": "2022-07-17T03:56:27.873Z", + "end": "2022-07-17T07:46:17.281Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T07:46:17.281Z", + "end": "2022-07-17T11:36:06.689Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "614380482620293151", + "start": "2022-08-01T02:33:04.961Z", + "end": "2022-08-01T09:48:44.233Z", + "events": [ + { + "start": "2022-08-01T02:33:04.961Z", + "end": "2022-08-01T04:21:59.779Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T04:21:59.779Z", + "end": "2022-08-01T06:10:54.597Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T06:10:54.597Z", + "end": "2022-08-01T07:59:49.415Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T07:59:49.415Z", + "end": "2022-08-01T09:48:44.233Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "558547388583772201", + "start": "2022-07-09T21:09:38.162Z", + "end": "2022-07-10T00:29:33.989Z", + "events": [ + { + "start": "2022-07-09T21:09:38.162Z", + "end": "2022-07-09T21:59:37.118Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T21:59:37.118Z", + "end": "2022-07-09T22:49:36.074Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T22:49:36.074Z", + "end": "2022-07-09T23:39:35.030Z", + "state": "IDLE" + }, + { + "start": "2022-07-09T23:39:35.030Z", + "end": "2022-07-10T00:29:33.986Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "958598056500699208", + "game": "512789343157485602", + "start": "2022-04-15T09:02:07.377Z", + "end": "2022-04-15T14:49:21.768Z", + "events": [ + { + "start": "2022-04-15T09:02:07.377Z", + "end": "2022-04-15T10:57:52.174Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T10:57:52.174Z", + "end": "2022-04-15T12:53:36.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-15T12:53:36.971Z", + "end": "2022-04-15T14:49:21.768Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "732542352358923773", + "game": "510199020782747732", + "start": "2022-07-25T03:37:10.102Z", + "end": "2022-07-25T04:26:34.261Z", + "events": [ + { + "start": "2022-07-25T03:37:10.102Z", + "end": "2022-07-25T04:01:52.181Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T04:01:52.181Z", + "end": "2022-07-25T04:26:34.260Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "452396069922968436", + "game": "572456126872944651", + "start": "2022-05-25T16:38:05.519Z", + "end": "2022-05-25T23:51:18.630Z", + "events": [ + { + "start": "2022-05-25T16:38:05.519Z", + "end": "2022-05-25T18:26:23.796Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T18:26:23.796Z", + "end": "2022-05-25T20:14:42.073Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T20:14:42.073Z", + "end": "2022-05-25T22:03:00.350Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T22:03:00.350Z", + "end": "2022-05-25T23:51:18.627Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "606163888052109312", + "start": "2022-07-23T00:32:54.100Z", + "end": "2022-07-23T06:42:53.582Z", + "events": [ + { + "start": "2022-07-23T00:32:54.100Z", + "end": "2022-07-23T01:46:53.996Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T01:46:53.996Z", + "end": "2022-07-23T03:00:53.892Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T03:00:53.892Z", + "end": "2022-07-23T04:14:53.788Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T04:14:53.788Z", + "end": "2022-07-23T05:28:53.684Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T05:28:53.684Z", + "end": "2022-07-23T06:42:53.580Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "606163888052109312", + "start": "2022-07-25T20:43:25.450Z", + "end": "2022-07-25T21:32:11.496Z", + "events": [ + { + "start": "2022-07-25T20:43:25.450Z", + "end": "2022-07-25T20:53:10.659Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T20:53:10.659Z", + "end": "2022-07-25T21:02:55.868Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-25T21:02:55.868Z", + "end": "2022-07-25T21:12:41.077Z", + "state": "IDLE" + }, + { + "start": "2022-07-25T21:12:41.077Z", + "end": "2022-07-25T21:22:26.286Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T21:22:26.286Z", + "end": "2022-07-25T21:32:11.495Z", + "state": "IDLE" + } + ] + }, + { + "user": "268139232276871676", + "game": "606163888052109312", + "start": "2022-05-24T20:32:34.610Z", + "end": "2022-05-24T20:56:49.821Z", + "events": [ + { + "start": "2022-05-24T20:32:34.610Z", + "end": "2022-05-24T20:44:42.215Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T20:44:42.215Z", + "end": "2022-05-24T20:56:49.820Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "535869836748783616", + "start": "2022-07-03T08:45:19.948Z", + "end": "2022-07-03T13:47:31.297Z", + "events": [ + { + "start": "2022-07-03T08:45:19.948Z", + "end": "2022-07-03T10:26:03.731Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T10:26:03.731Z", + "end": "2022-07-03T12:06:47.514Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T12:06:47.514Z", + "end": "2022-07-03T13:47:31.297Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "575412499399180288", + "start": "2022-06-05T05:54:46.612Z", + "end": "2022-06-05T15:22:44.604Z", + "events": [ + { + "start": "2022-06-05T05:54:46.612Z", + "end": "2022-06-05T09:04:05.942Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T09:04:05.942Z", + "end": "2022-06-05T12:13:25.272Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T12:13:25.272Z", + "end": "2022-06-05T15:22:44.602Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "575412499399180288", + "start": "2022-05-02T14:11:05.254Z", + "end": "2022-05-02T21:59:52.657Z", + "events": [ + { + "start": "2022-05-02T14:11:05.254Z", + "end": "2022-05-02T16:08:17.104Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T16:08:17.104Z", + "end": "2022-05-02T18:05:28.954Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T18:05:28.954Z", + "end": "2022-05-02T20:02:40.804Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T20:02:40.804Z", + "end": "2022-05-02T21:59:52.654Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "694111074254984301", + "game": "518088627234930688", + "start": "2022-05-25T14:27:47.651Z", + "end": "2022-05-25T19:51:51.502Z", + "events": [ + { + "start": "2022-05-25T14:27:47.651Z", + "end": "2022-05-25T15:48:48.613Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T15:48:48.613Z", + "end": "2022-05-25T17:09:49.575Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T17:09:49.575Z", + "end": "2022-05-25T18:30:50.537Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T18:30:50.537Z", + "end": "2022-05-25T19:51:51.499Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "549512435585908756", + "start": "2022-05-20T05:41:52.784Z", + "end": "2022-05-20T15:15:57.430Z", + "events": [ + { + "start": "2022-05-20T05:41:52.784Z", + "end": "2022-05-20T07:36:41.713Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T07:36:41.713Z", + "end": "2022-05-20T09:31:30.642Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-20T09:31:30.642Z", + "end": "2022-05-20T11:26:19.571Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-20T11:26:19.571Z", + "end": "2022-05-20T13:21:08.500Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-20T13:21:08.500Z", + "end": "2022-05-20T15:15:57.429Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "569008830701240340", + "start": "2022-06-10T06:35:24.026Z", + "end": "2022-06-10T10:57:04.377Z", + "events": [ + { + "start": "2022-06-10T06:35:24.026Z", + "end": "2022-06-10T08:02:37.476Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-10T08:02:37.476Z", + "end": "2022-06-10T09:29:50.926Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-10T09:29:50.926Z", + "end": "2022-06-10T10:57:04.376Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "700136079562375258", + "start": "2022-06-05T18:04:30.213Z", + "end": "2022-06-05T19:52:12.012Z", + "events": [ + { + "start": "2022-06-05T18:04:30.213Z", + "end": "2022-06-05T19:52:12.012Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "695941172337689379", + "game": "530454325214969866", + "start": "2022-06-24T01:33:19.321Z", + "end": "2022-06-24T06:22:39.255Z", + "events": [ + { + "start": "2022-06-24T01:33:19.321Z", + "end": "2022-06-24T02:45:39.304Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T02:45:39.304Z", + "end": "2022-06-24T03:57:59.287Z", + "state": "IDLE" + }, + { + "start": "2022-06-24T03:57:59.287Z", + "end": "2022-06-24T05:10:19.270Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T05:10:19.270Z", + "end": "2022-06-24T06:22:39.253Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "554921822626381879", + "start": "2022-04-24T09:33:29.823Z", + "end": "2022-04-24T16:52:48.848Z", + "events": [ + { + "start": "2022-04-24T09:33:29.823Z", + "end": "2022-04-24T11:01:21.628Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T11:01:21.628Z", + "end": "2022-04-24T12:29:13.433Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T12:29:13.433Z", + "end": "2022-04-24T13:57:05.238Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T13:57:05.238Z", + "end": "2022-04-24T15:24:57.043Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T15:24:57.043Z", + "end": "2022-04-24T16:52:48.848Z", + "state": "IDLE" + } + ] + }, + { + "user": "608700383891121851", + "game": "597860020935327787", + "start": "2022-05-17T13:55:05.182Z", + "end": "2022-05-17T17:16:02.527Z", + "events": [ + { + "start": "2022-05-17T13:55:05.182Z", + "end": "2022-05-17T15:02:04.297Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T15:02:04.297Z", + "end": "2022-05-17T16:09:03.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T16:09:03.412Z", + "end": "2022-05-17T17:16:02.527Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "495724335127362694", + "game": "535384357536399404", + "start": "2022-05-10T14:26:16.657Z", + "end": "2022-05-10T22:50:15.782Z", + "events": [ + { + "start": "2022-05-10T14:26:16.657Z", + "end": "2022-05-10T17:14:16.365Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T17:14:16.365Z", + "end": "2022-05-10T20:02:16.073Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T20:02:16.073Z", + "end": "2022-05-10T22:50:15.781Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "596421190780633864", + "game": "530454325214969866", + "start": "2022-05-14T20:14:02.953Z", + "end": "2022-05-15T03:30:59.375Z", + "events": [ + { + "start": "2022-05-14T20:14:02.953Z", + "end": "2022-05-14T22:39:41.760Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T22:39:41.760Z", + "end": "2022-05-15T01:05:20.567Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T01:05:20.567Z", + "end": "2022-05-15T03:30:59.374Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "519644267212177418", + "start": "2022-07-01T03:24:41.925Z", + "end": "2022-07-01T12:03:04.886Z", + "events": [ + { + "start": "2022-07-01T03:24:41.925Z", + "end": "2022-07-01T12:03:04.886Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "800318424708872602", + "game": "565341641427124244", + "start": "2022-07-21T03:16:51.042Z", + "end": "2022-07-21T10:27:02.821Z", + "events": [ + { + "start": "2022-07-21T03:16:51.042Z", + "end": "2022-07-21T10:27:02.821Z", + "state": "IDLE" + } + ] + }, + { + "user": "625617695768437507", + "game": "356875221078245376", + "start": "2022-05-23T19:13:14.282Z", + "end": "2022-05-24T01:52:00.208Z", + "events": [ + { + "start": "2022-05-23T19:13:14.282Z", + "end": "2022-05-23T20:32:59.467Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T20:32:59.467Z", + "end": "2022-05-23T21:52:44.652Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T21:52:44.652Z", + "end": "2022-05-23T23:12:29.837Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T23:12:29.837Z", + "end": "2022-05-24T00:32:15.022Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T00:32:15.022Z", + "end": "2022-05-24T01:52:00.207Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "788818750251007268", + "game": "510199020782747732", + "start": "2022-06-11T13:55:15.413Z", + "end": "2022-06-11T22:21:34.695Z", + "events": [ + { + "start": "2022-06-11T13:55:15.413Z", + "end": "2022-06-11T18:08:25.054Z", + "state": "IDLE" + }, + { + "start": "2022-06-11T18:08:25.054Z", + "end": "2022-06-11T22:21:34.695Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "549512435585908756", + "start": "2022-06-28T14:52:42.090Z", + "end": "2022-06-28T22:49:57.064Z", + "events": [ + { + "start": "2022-06-28T14:52:42.090Z", + "end": "2022-06-28T16:28:09.084Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T16:28:09.084Z", + "end": "2022-06-28T18:03:36.078Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T18:03:36.078Z", + "end": "2022-06-28T19:39:03.072Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T19:39:03.072Z", + "end": "2022-06-28T21:14:30.066Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T21:14:30.066Z", + "end": "2022-06-28T22:49:57.060Z", + "state": "IDLE" + } + ] + }, + { + "user": "510690749854514547", + "game": "560781100197216267", + "start": "2022-05-15T09:05:00.180Z", + "end": "2022-05-15T09:07:55.626Z", + "events": [ + { + "start": "2022-05-15T09:05:00.180Z", + "end": "2022-05-15T09:05:44.041Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T09:05:44.041Z", + "end": "2022-05-15T09:06:27.902Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T09:06:27.902Z", + "end": "2022-05-15T09:07:11.763Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T09:07:11.763Z", + "end": "2022-05-15T09:07:55.624Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "535371564850479134", + "start": "2022-07-15T03:27:36.134Z", + "end": "2022-07-15T08:56:39.955Z", + "events": [ + { + "start": "2022-07-15T03:27:36.134Z", + "end": "2022-07-15T04:33:24.898Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T04:33:24.898Z", + "end": "2022-07-15T05:39:13.662Z", + "state": "IDLE" + }, + { + "start": "2022-07-15T05:39:13.662Z", + "end": "2022-07-15T06:45:02.426Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T06:45:02.426Z", + "end": "2022-07-15T07:50:51.190Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T07:50:51.190Z", + "end": "2022-07-15T08:56:39.954Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "512699108809637890", + "start": "2022-06-21T22:41:58.205Z", + "end": "2022-06-22T07:23:31.949Z", + "events": [ + { + "start": "2022-06-21T22:41:58.205Z", + "end": "2022-06-22T03:02:45.077Z", + "state": "IDLE" + }, + { + "start": "2022-06-22T03:02:45.077Z", + "end": "2022-06-22T07:23:31.949Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "554921822626381879", + "start": "2022-06-08T05:10:53.904Z", + "end": "2022-06-08T09:04:57.922Z", + "events": [ + { + "start": "2022-06-08T05:10:53.904Z", + "end": "2022-06-08T05:57:42.707Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-08T05:57:42.707Z", + "end": "2022-06-08T06:44:31.510Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T06:44:31.510Z", + "end": "2022-06-08T07:31:20.313Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T07:31:20.313Z", + "end": "2022-06-08T08:18:09.116Z", + "state": "IDLE" + }, + { + "start": "2022-06-08T08:18:09.116Z", + "end": "2022-06-08T09:04:57.919Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "550277544025522176", + "start": "2022-07-10T03:35:08.070Z", + "end": "2022-07-10T10:14:48.150Z", + "events": [ + { + "start": "2022-07-10T03:35:08.070Z", + "end": "2022-07-10T10:14:48.150Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "774637841058278398", + "game": "597588168178663434", + "start": "2022-05-27T10:37:20.753Z", + "end": "2022-05-27T12:56:00.513Z", + "events": [ + { + "start": "2022-05-27T10:37:20.753Z", + "end": "2022-05-27T11:12:00.693Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T11:12:00.693Z", + "end": "2022-05-27T11:46:40.633Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T11:46:40.633Z", + "end": "2022-05-27T12:21:20.573Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T12:21:20.573Z", + "end": "2022-05-27T12:56:00.513Z", + "state": "IDLE" + } + ] + }, + { + "user": "922664752332558395", + "game": "554921822626381879", + "start": "2022-04-22T14:40:49.656Z", + "end": "2022-04-22T19:39:32.853Z", + "events": [ + { + "start": "2022-04-22T14:40:49.656Z", + "end": "2022-04-22T19:39:32.853Z", + "state": "IDLE" + } + ] + }, + { + "user": "596421190780633864", + "game": "606163888052109312", + "start": "2022-07-19T02:59:03.856Z", + "end": "2022-07-19T03:02:33.665Z", + "events": [ + { + "start": "2022-07-19T02:59:03.856Z", + "end": "2022-07-19T02:59:45.817Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T02:59:45.817Z", + "end": "2022-07-19T03:00:27.778Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T03:00:27.778Z", + "end": "2022-07-19T03:01:09.739Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T03:01:09.739Z", + "end": "2022-07-19T03:01:51.700Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T03:01:51.700Z", + "end": "2022-07-19T03:02:33.661Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "821608522568592914", + "game": "546175179542364160", + "start": "2022-07-24T14:22:26.487Z", + "end": "2022-07-24T21:25:35.545Z", + "events": [ + { + "start": "2022-07-24T14:22:26.487Z", + "end": "2022-07-24T16:43:29.506Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T16:43:29.506Z", + "end": "2022-07-24T19:04:32.525Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T19:04:32.525Z", + "end": "2022-07-24T21:25:35.544Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "514228311661084682", + "start": "2022-07-31T03:53:29.940Z", + "end": "2022-07-31T08:11:43.062Z", + "events": [ + { + "start": "2022-07-31T03:53:29.940Z", + "end": "2022-07-31T06:02:36.501Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T06:02:36.501Z", + "end": "2022-07-31T08:11:43.062Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "512789343157485602", + "start": "2022-06-21T09:36:19.193Z", + "end": "2022-06-21T19:12:27.383Z", + "events": [ + { + "start": "2022-06-21T09:36:19.193Z", + "end": "2022-06-21T12:48:21.923Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T12:48:21.923Z", + "end": "2022-06-21T16:00:24.653Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T16:00:24.653Z", + "end": "2022-06-21T19:12:27.383Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "700136079562375258", + "start": "2022-07-27T06:49:25.299Z", + "end": "2022-07-27T13:28:41.804Z", + "events": [ + { + "start": "2022-07-27T06:49:25.299Z", + "end": "2022-07-27T08:09:16.600Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T08:09:16.600Z", + "end": "2022-07-27T09:29:07.901Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T09:29:07.901Z", + "end": "2022-07-27T10:48:59.202Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T10:48:59.202Z", + "end": "2022-07-27T12:08:50.503Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T12:08:50.503Z", + "end": "2022-07-27T13:28:41.804Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "584489284152985092", + "game": "597588168178663434", + "start": "2022-07-20T06:52:31.340Z", + "end": "2022-07-20T16:01:20.171Z", + "events": [ + { + "start": "2022-07-20T06:52:31.340Z", + "end": "2022-07-20T11:26:55.755Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T11:26:55.755Z", + "end": "2022-07-20T16:01:20.170Z", + "state": "IDLE" + } + ] + }, + { + "user": "378424071510192465", + "game": "535384357536399404", + "start": "2022-05-17T22:04:54.432Z", + "end": "2022-05-18T07:55:40.077Z", + "events": [ + { + "start": "2022-05-17T22:04:54.432Z", + "end": "2022-05-18T07:55:40.077Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "958598056500699208", + "game": "569008830701240340", + "start": "2022-04-24T05:38:28.880Z", + "end": "2022-04-24T13:04:46.654Z", + "events": [ + { + "start": "2022-04-24T05:38:28.880Z", + "end": "2022-04-24T07:07:44.434Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-24T07:07:44.434Z", + "end": "2022-04-24T08:36:59.988Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T08:36:59.988Z", + "end": "2022-04-24T10:06:15.542Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T10:06:15.542Z", + "end": "2022-04-24T11:35:31.096Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T11:35:31.096Z", + "end": "2022-04-24T13:04:46.650Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "554921822626381879", + "start": "2022-05-14T03:59:06.515Z", + "end": "2022-05-14T13:47:25.346Z", + "events": [ + { + "start": "2022-05-14T03:59:06.515Z", + "end": "2022-05-14T05:56:46.281Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T05:56:46.281Z", + "end": "2022-05-14T07:54:26.047Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T07:54:26.047Z", + "end": "2022-05-14T09:52:05.813Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T09:52:05.813Z", + "end": "2022-05-14T11:49:45.579Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T11:49:45.579Z", + "end": "2022-05-14T13:47:25.345Z", + "state": "IDLE" + } + ] + }, + { + "user": "406850294055619241", + "game": "554573307161214977", + "start": "2022-07-29T03:13:11.416Z", + "end": "2022-07-29T04:58:09.963Z", + "events": [ + { + "start": "2022-07-29T03:13:11.416Z", + "end": "2022-07-29T04:58:09.963Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "540120593576493057", + "start": "2022-08-03T16:52:23.137Z", + "end": "2022-08-03T23:38:57.771Z", + "events": [ + { + "start": "2022-08-03T16:52:23.137Z", + "end": "2022-08-03T18:13:42.063Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T18:13:42.063Z", + "end": "2022-08-03T19:35:00.989Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T19:35:00.989Z", + "end": "2022-08-03T20:56:19.915Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T20:56:19.915Z", + "end": "2022-08-03T22:17:38.841Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T22:17:38.841Z", + "end": "2022-08-03T23:38:57.767Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "538658792298239054", + "game": "554921822626381879", + "start": "2022-07-03T16:24:26.056Z", + "end": "2022-07-03T18:43:18.472Z", + "events": [ + { + "start": "2022-07-03T16:24:26.056Z", + "end": "2022-07-03T17:33:52.264Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T17:33:52.264Z", + "end": "2022-07-03T18:43:18.472Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "540120593576493057", + "start": "2022-05-19T18:13:03.297Z", + "end": "2022-05-19T18:53:05.387Z", + "events": [ + { + "start": "2022-05-19T18:13:03.297Z", + "end": "2022-05-19T18:33:04.342Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T18:33:04.342Z", + "end": "2022-05-19T18:53:05.387Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "554573307161214977", + "start": "2022-05-21T02:42:39.451Z", + "end": "2022-05-21T10:45:30.437Z", + "events": [ + { + "start": "2022-05-21T02:42:39.451Z", + "end": "2022-05-21T05:23:36.446Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T05:23:36.446Z", + "end": "2022-05-21T08:04:33.441Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T08:04:33.441Z", + "end": "2022-05-21T10:45:30.436Z", + "state": "IDLE" + } + ] + }, + { + "user": "302714757313826277", + "game": "554573307161214977", + "start": "2022-06-04T10:24:08.717Z", + "end": "2022-06-04T12:05:14.128Z", + "events": [ + { + "start": "2022-06-04T10:24:08.717Z", + "end": "2022-06-04T12:05:14.128Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "510199020782747732", + "start": "2022-07-30T20:42:45.896Z", + "end": "2022-07-31T02:37:26.538Z", + "events": [ + { + "start": "2022-07-30T20:42:45.896Z", + "end": "2022-07-31T02:37:26.538Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "200801427122341912", + "game": "512789120234422301", + "start": "2022-06-24T09:12:04.899Z", + "end": "2022-06-24T15:00:55.666Z", + "events": [ + { + "start": "2022-06-24T09:12:04.899Z", + "end": "2022-06-24T10:39:17.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T10:39:17.590Z", + "end": "2022-06-24T12:06:30.281Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T12:06:30.281Z", + "end": "2022-06-24T13:33:42.972Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T13:33:42.972Z", + "end": "2022-06-24T15:00:55.663Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "467658810442648809", + "game": "528145079819436043", + "start": "2022-06-03T22:03:50.274Z", + "end": "2022-06-04T02:46:16.485Z", + "events": [ + { + "start": "2022-06-03T22:03:50.274Z", + "end": "2022-06-03T23:00:19.516Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T23:00:19.516Z", + "end": "2022-06-03T23:56:48.758Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T23:56:48.758Z", + "end": "2022-06-04T00:53:18.000Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T00:53:18.000Z", + "end": "2022-06-04T01:49:47.242Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T01:49:47.242Z", + "end": "2022-06-04T02:46:16.484Z", + "state": "IDLE" + } + ] + }, + { + "user": "213263852824749877", + "game": "614448244260339712", + "start": "2022-07-19T22:12:16.754Z", + "end": "2022-07-20T07:44:04.201Z", + "events": [ + { + "start": "2022-07-19T22:12:16.754Z", + "end": "2022-07-20T00:06:38.243Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T00:06:38.243Z", + "end": "2022-07-20T02:00:59.732Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T02:00:59.732Z", + "end": "2022-07-20T03:55:21.221Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T03:55:21.221Z", + "end": "2022-07-20T05:49:42.710Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T05:49:42.710Z", + "end": "2022-07-20T07:44:04.199Z", + "state": "IDLE" + } + ] + }, + { + "user": "329429619186234053", + "game": "558547388583772201", + "start": "2022-07-27T03:17:07.245Z", + "end": "2022-07-27T07:09:44.052Z", + "events": [ + { + "start": "2022-07-27T03:17:07.245Z", + "end": "2022-07-27T04:34:39.514Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T04:34:39.514Z", + "end": "2022-07-27T05:52:11.783Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T05:52:11.783Z", + "end": "2022-07-27T07:09:44.052Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "512789120234422301", + "start": "2022-06-24T16:32:16.789Z", + "end": "2022-06-24T20:42:59.589Z", + "events": [ + { + "start": "2022-06-24T16:32:16.789Z", + "end": "2022-06-24T20:42:59.589Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "542474758835535872", + "start": "2022-04-26T22:06:39.296Z", + "end": "2022-04-27T04:59:18.370Z", + "events": [ + { + "start": "2022-04-26T22:06:39.296Z", + "end": "2022-04-27T00:24:12.320Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T00:24:12.320Z", + "end": "2022-04-27T02:41:45.344Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T02:41:45.344Z", + "end": "2022-04-27T04:59:18.368Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "530454325214969866", + "start": "2022-08-06T14:47:20.903Z", + "end": "2022-08-06T22:01:11.372Z", + "events": [ + { + "start": "2022-08-06T14:47:20.903Z", + "end": "2022-08-06T16:35:48.520Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T16:35:48.520Z", + "end": "2022-08-06T18:24:16.137Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-06T18:24:16.137Z", + "end": "2022-08-06T20:12:43.754Z", + "state": "IDLE" + }, + { + "start": "2022-08-06T20:12:43.754Z", + "end": "2022-08-06T22:01:11.371Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "558547388583772201", + "start": "2022-05-27T05:21:20.528Z", + "end": "2022-05-27T10:12:44.411Z", + "events": [ + { + "start": "2022-05-27T05:21:20.528Z", + "end": "2022-05-27T06:19:37.304Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T06:19:37.304Z", + "end": "2022-05-27T07:17:54.080Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T07:17:54.080Z", + "end": "2022-05-27T08:16:10.856Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T08:16:10.856Z", + "end": "2022-05-27T09:14:27.632Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T09:14:27.632Z", + "end": "2022-05-27T10:12:44.408Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "546175179542364160", + "start": "2022-05-09T04:28:05.389Z", + "end": "2022-05-09T11:53:14.174Z", + "events": [ + { + "start": "2022-05-09T04:28:05.389Z", + "end": "2022-05-09T08:10:39.781Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-09T08:10:39.781Z", + "end": "2022-05-09T11:53:14.173Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "542075586886107149", + "start": "2022-05-03T20:57:29.250Z", + "end": "2022-05-04T06:55:31.430Z", + "events": [ + { + "start": "2022-05-03T20:57:29.250Z", + "end": "2022-05-03T22:57:05.686Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T22:57:05.686Z", + "end": "2022-05-04T00:56:42.122Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T00:56:42.122Z", + "end": "2022-05-04T02:56:18.558Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-04T02:56:18.558Z", + "end": "2022-05-04T04:55:54.994Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T04:55:54.994Z", + "end": "2022-05-04T06:55:31.430Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "137536289023624121", + "game": "560781100197216267", + "start": "2022-05-31T07:43:42.898Z", + "end": "2022-05-31T15:44:34.234Z", + "events": [ + { + "start": "2022-05-31T07:43:42.898Z", + "end": "2022-05-31T09:43:55.732Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T09:43:55.732Z", + "end": "2022-05-31T11:44:08.566Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T11:44:08.566Z", + "end": "2022-05-31T13:44:21.400Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T13:44:21.400Z", + "end": "2022-05-31T15:44:34.234Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "123137660023366590", + "game": "519644368735567873", + "start": "2022-05-06T04:22:22.957Z", + "end": "2022-05-06T08:48:40.650Z", + "events": [ + { + "start": "2022-05-06T04:22:22.957Z", + "end": "2022-05-06T05:51:08.854Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T05:51:08.854Z", + "end": "2022-05-06T07:19:54.751Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T07:19:54.751Z", + "end": "2022-05-06T08:48:40.648Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "788818750251007268", + "game": "512498684211232768", + "start": "2022-07-10T10:45:34.248Z", + "end": "2022-07-10T11:17:15.884Z", + "events": [ + { + "start": "2022-07-10T10:45:34.248Z", + "end": "2022-07-10T10:51:54.575Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T10:51:54.575Z", + "end": "2022-07-10T10:58:14.902Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T10:58:14.902Z", + "end": "2022-07-10T11:04:35.229Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T11:04:35.229Z", + "end": "2022-07-10T11:10:55.556Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T11:10:55.556Z", + "end": "2022-07-10T11:17:15.883Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "285410867718320291", + "game": "512789343157485602", + "start": "2022-07-10T17:22:35.618Z", + "end": "2022-07-10T20:28:38.332Z", + "events": [ + { + "start": "2022-07-10T17:22:35.618Z", + "end": "2022-07-10T18:24:36.522Z", + "state": "IDLE" + }, + { + "start": "2022-07-10T18:24:36.522Z", + "end": "2022-07-10T19:26:37.426Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T19:26:37.426Z", + "end": "2022-07-10T20:28:38.330Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "535869836748783616", + "start": "2022-07-07T21:07:34.685Z", + "end": "2022-07-08T06:59:34.985Z", + "events": [ + { + "start": "2022-07-07T21:07:34.685Z", + "end": "2022-07-08T00:24:54.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T00:24:54.785Z", + "end": "2022-07-08T03:42:14.885Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T03:42:14.885Z", + "end": "2022-07-08T06:59:34.985Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "512789427462995988", + "start": "2022-05-24T19:35:02.224Z", + "end": "2022-05-24T23:10:28.674Z", + "events": [ + { + "start": "2022-05-24T19:35:02.224Z", + "end": "2022-05-24T20:46:51.040Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T20:46:51.040Z", + "end": "2022-05-24T21:58:39.856Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T21:58:39.856Z", + "end": "2022-05-24T23:10:28.672Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "512789343157485602", + "start": "2022-05-18T04:24:19.519Z", + "end": "2022-05-18T07:16:18.576Z", + "events": [ + { + "start": "2022-05-18T04:24:19.519Z", + "end": "2022-05-18T05:21:39.204Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T05:21:39.204Z", + "end": "2022-05-18T06:18:58.889Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-18T06:18:58.889Z", + "end": "2022-05-18T07:16:18.574Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "549512435585908756", + "start": "2022-07-20T23:39:53.768Z", + "end": "2022-07-21T02:01:02.396Z", + "events": [ + { + "start": "2022-07-20T23:39:53.768Z", + "end": "2022-07-21T00:15:10.925Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T00:15:10.925Z", + "end": "2022-07-21T00:50:28.082Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T00:50:28.082Z", + "end": "2022-07-21T01:25:45.239Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T01:25:45.239Z", + "end": "2022-07-21T02:01:02.396Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "597860020935327787", + "start": "2022-04-24T12:54:04.197Z", + "end": "2022-04-24T22:51:26.326Z", + "events": [ + { + "start": "2022-04-24T12:54:04.197Z", + "end": "2022-04-24T15:23:24.729Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T15:23:24.729Z", + "end": "2022-04-24T17:52:45.261Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T17:52:45.261Z", + "end": "2022-04-24T20:22:05.793Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-24T20:22:05.793Z", + "end": "2022-04-24T22:51:26.325Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "549512435585908756", + "start": "2022-05-17T20:45:39.657Z", + "end": "2022-05-17T22:28:58.274Z", + "events": [ + { + "start": "2022-05-17T20:45:39.657Z", + "end": "2022-05-17T21:11:29.311Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T21:11:29.311Z", + "end": "2022-05-17T21:37:18.965Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T21:37:18.965Z", + "end": "2022-05-17T22:03:08.619Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T22:03:08.619Z", + "end": "2022-05-17T22:28:58.273Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "269014914705953013", + "game": "510199020782747732", + "start": "2022-07-07T13:20:03.272Z", + "end": "2022-07-07T21:29:24.955Z", + "events": [ + { + "start": "2022-07-07T13:20:03.272Z", + "end": "2022-07-07T21:29:24.955Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "540120593576493057", + "start": "2022-05-17T17:17:25.588Z", + "end": "2022-05-17T21:27:37.411Z", + "events": [ + { + "start": "2022-05-17T17:17:25.588Z", + "end": "2022-05-17T19:22:31.499Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T19:22:31.499Z", + "end": "2022-05-17T21:27:37.410Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "821608522568592914", + "game": "514228311661084682", + "start": "2022-08-03T12:40:26.517Z", + "end": "2022-08-03T21:29:16.565Z", + "events": [ + { + "start": "2022-08-03T12:40:26.517Z", + "end": "2022-08-03T14:52:39.029Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-03T14:52:39.029Z", + "end": "2022-08-03T17:04:51.541Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T17:04:51.541Z", + "end": "2022-08-03T19:17:04.053Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T19:17:04.053Z", + "end": "2022-08-03T21:29:16.565Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "732542352358923773", + "game": "512501896896970762", + "start": "2022-08-04T00:47:34.843Z", + "end": "2022-08-04T06:31:57.543Z", + "events": [ + { + "start": "2022-08-04T00:47:34.843Z", + "end": "2022-08-04T01:56:27.383Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T01:56:27.383Z", + "end": "2022-08-04T03:05:19.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T03:05:19.923Z", + "end": "2022-08-04T04:14:12.463Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T04:14:12.463Z", + "end": "2022-08-04T05:23:05.003Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-04T05:23:05.003Z", + "end": "2022-08-04T06:31:57.543Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "546175179542364160", + "start": "2022-06-24T14:50:49.737Z", + "end": "2022-06-24T21:11:57.959Z", + "events": [ + { + "start": "2022-06-24T14:50:49.737Z", + "end": "2022-06-24T21:11:57.959Z", + "state": "IDLE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512501896896970762", + "start": "2022-05-15T04:21:54.033Z", + "end": "2022-05-15T07:38:41.615Z", + "events": [ + { + "start": "2022-05-15T04:21:54.033Z", + "end": "2022-05-15T06:00:17.824Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-15T06:00:17.824Z", + "end": "2022-05-15T07:38:41.615Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "542075586886107149", + "start": "2022-05-01T16:10:14.496Z", + "end": "2022-05-02T01:26:05.336Z", + "events": [ + { + "start": "2022-05-01T16:10:14.496Z", + "end": "2022-05-02T01:26:05.336Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "346608907417001845", + "game": "592976500802846750", + "start": "2022-06-25T03:22:05.255Z", + "end": "2022-06-25T09:53:38.158Z", + "events": [ + { + "start": "2022-06-25T03:22:05.255Z", + "end": "2022-06-25T04:40:23.835Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T04:40:23.835Z", + "end": "2022-06-25T05:58:42.415Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T05:58:42.415Z", + "end": "2022-06-25T07:17:00.995Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T07:17:00.995Z", + "end": "2022-06-25T08:35:19.575Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T08:35:19.575Z", + "end": "2022-06-25T09:53:38.155Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "520453007578628124", + "start": "2022-08-02T05:49:38.112Z", + "end": "2022-08-02T06:43:42.632Z", + "events": [ + { + "start": "2022-08-02T05:49:38.112Z", + "end": "2022-08-02T06:00:27.016Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T06:00:27.016Z", + "end": "2022-08-02T06:11:15.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T06:11:15.920Z", + "end": "2022-08-02T06:22:04.824Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T06:22:04.824Z", + "end": "2022-08-02T06:32:53.728Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T06:32:53.728Z", + "end": "2022-08-02T06:43:42.632Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "356875221078245376", + "start": "2022-06-20T10:59:09.482Z", + "end": "2022-06-20T15:54:44.639Z", + "events": [ + { + "start": "2022-06-20T10:59:09.482Z", + "end": "2022-06-20T11:58:16.513Z", + "state": "IDLE" + }, + { + "start": "2022-06-20T11:58:16.513Z", + "end": "2022-06-20T12:57:23.544Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T12:57:23.544Z", + "end": "2022-06-20T13:56:30.575Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T13:56:30.575Z", + "end": "2022-06-20T14:55:37.606Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T14:55:37.606Z", + "end": "2022-06-20T15:54:44.637Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "542075586886107149", + "start": "2022-06-02T03:06:58.110Z", + "end": "2022-06-02T11:06:06.465Z", + "events": [ + { + "start": "2022-06-02T03:06:58.110Z", + "end": "2022-06-02T11:06:06.465Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786028561315351452", + "game": "512501896896970762", + "start": "2022-05-30T07:59:15.930Z", + "end": "2022-05-30T11:00:44.999Z", + "events": [ + { + "start": "2022-05-30T07:59:15.930Z", + "end": "2022-05-30T08:59:45.619Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T08:59:45.619Z", + "end": "2022-05-30T10:00:15.308Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T10:00:15.308Z", + "end": "2022-05-30T11:00:44.997Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "774637841058278398", + "game": "511619499053678668", + "start": "2022-07-03T16:40:55.762Z", + "end": "2022-07-03T21:11:41.930Z", + "events": [ + { + "start": "2022-07-03T16:40:55.762Z", + "end": "2022-07-03T21:11:41.930Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "264503060524837708", + "game": "614380482620293151", + "start": "2022-05-17T10:13:05.512Z", + "end": "2022-05-17T12:28:14.127Z", + "events": [ + { + "start": "2022-05-17T10:13:05.512Z", + "end": "2022-05-17T10:58:08.383Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T10:58:08.383Z", + "end": "2022-05-17T11:43:11.254Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T11:43:11.254Z", + "end": "2022-05-17T12:28:14.125Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "535384357536399404", + "start": "2022-07-08T06:52:28.818Z", + "end": "2022-07-08T12:47:42.991Z", + "events": [ + { + "start": "2022-07-08T06:52:28.818Z", + "end": "2022-07-08T08:03:31.652Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T08:03:31.652Z", + "end": "2022-07-08T09:14:34.486Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T09:14:34.486Z", + "end": "2022-07-08T10:25:37.320Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T10:25:37.320Z", + "end": "2022-07-08T11:36:40.154Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T11:36:40.154Z", + "end": "2022-07-08T12:47:42.988Z", + "state": "IDLE" + } + ] + }, + { + "user": "394970121077311909", + "game": "528145079819436043", + "start": "2022-07-29T16:38:30.712Z", + "end": "2022-07-29T22:14:32.217Z", + "events": [ + { + "start": "2022-07-29T16:38:30.712Z", + "end": "2022-07-29T17:45:43.013Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T17:45:43.013Z", + "end": "2022-07-29T18:52:55.314Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T18:52:55.314Z", + "end": "2022-07-29T20:00:07.615Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T20:00:07.615Z", + "end": "2022-07-29T21:07:19.916Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T21:07:19.916Z", + "end": "2022-07-29T22:14:32.217Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "731522398939920723", + "game": "592976500802846750", + "start": "2022-06-05T20:49:30.025Z", + "end": "2022-06-05T21:06:53.491Z", + "events": [ + { + "start": "2022-06-05T20:49:30.025Z", + "end": "2022-06-05T20:55:17.847Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T20:55:17.847Z", + "end": "2022-06-05T21:01:05.669Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T21:01:05.669Z", + "end": "2022-06-05T21:06:53.491Z", + "state": "IDLE" + } + ] + }, + { + "user": "951131768137733554", + "game": "597588168178663434", + "start": "2022-07-30T12:25:31.310Z", + "end": "2022-07-30T15:40:51.260Z", + "events": [ + { + "start": "2022-07-30T12:25:31.310Z", + "end": "2022-07-30T13:30:37.960Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T13:30:37.960Z", + "end": "2022-07-30T14:35:44.610Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T14:35:44.610Z", + "end": "2022-07-30T15:40:51.260Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "530539422724200800", + "game": "554573307161214977", + "start": "2022-06-23T12:27:45.646Z", + "end": "2022-06-23T19:16:12.346Z", + "events": [ + { + "start": "2022-06-23T12:27:45.646Z", + "end": "2022-06-23T19:16:12.346Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "346608907417001845", + "game": "575412499399180288", + "start": "2022-07-30T22:41:01.913Z", + "end": "2022-07-31T03:18:42.609Z", + "events": [ + { + "start": "2022-07-30T22:41:01.913Z", + "end": "2022-07-30T23:36:34.052Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T23:36:34.052Z", + "end": "2022-07-31T00:32:06.191Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T00:32:06.191Z", + "end": "2022-07-31T01:27:38.330Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T01:27:38.330Z", + "end": "2022-07-31T02:23:10.469Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T02:23:10.469Z", + "end": "2022-07-31T03:18:42.608Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "658550407298256890", + "game": "576482762446602270", + "start": "2022-05-23T13:14:48.524Z", + "end": "2022-05-23T18:38:00.220Z", + "events": [ + { + "start": "2022-05-23T13:14:48.524Z", + "end": "2022-05-23T15:02:32.422Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T15:02:32.422Z", + "end": "2022-05-23T16:50:16.320Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T16:50:16.320Z", + "end": "2022-05-23T18:38:00.218Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "747381962738157784", + "game": "614380482620293151", + "start": "2022-07-02T17:27:55.195Z", + "end": "2022-07-02T23:32:45.144Z", + "events": [ + { + "start": "2022-07-02T17:27:55.195Z", + "end": "2022-07-02T20:30:20.169Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T20:30:20.169Z", + "end": "2022-07-02T23:32:45.143Z", + "state": "IDLE" + } + ] + }, + { + "user": "686825797960121847", + "game": "542474758835535872", + "start": "2022-04-21T13:13:11.984Z", + "end": "2022-04-21T22:51:52.441Z", + "events": [ + { + "start": "2022-04-21T13:13:11.984Z", + "end": "2022-04-21T15:37:52.098Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T15:37:52.098Z", + "end": "2022-04-21T18:02:32.212Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T18:02:32.212Z", + "end": "2022-04-21T20:27:12.326Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T20:27:12.326Z", + "end": "2022-04-21T22:51:52.440Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "540120593576493057", + "start": "2022-07-24T16:20:49.563Z", + "end": "2022-07-24T22:55:17.572Z", + "events": [ + { + "start": "2022-07-24T16:20:49.563Z", + "end": "2022-07-24T22:55:17.572Z", + "state": "IDLE" + } + ] + }, + { + "user": "123137660023366590", + "game": "535371564850479134", + "start": "2022-05-04T17:32:52.297Z", + "end": "2022-05-05T03:08:29.283Z", + "events": [ + { + "start": "2022-05-04T17:32:52.297Z", + "end": "2022-05-05T03:08:29.283Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "542075586886107149", + "start": "2022-07-11T10:39:30.830Z", + "end": "2022-07-11T11:01:40.441Z", + "events": [ + { + "start": "2022-07-11T10:39:30.830Z", + "end": "2022-07-11T10:46:54.033Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T10:46:54.033Z", + "end": "2022-07-11T10:54:17.236Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T10:54:17.236Z", + "end": "2022-07-11T11:01:40.439Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "101572134856427564", + "game": "520453007578628124", + "start": "2022-07-18T19:11:35.893Z", + "end": "2022-07-18T21:48:43.698Z", + "events": [ + { + "start": "2022-07-18T19:11:35.893Z", + "end": "2022-07-18T21:48:43.698Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "554573307161214977", + "start": "2022-05-03T01:37:01.477Z", + "end": "2022-05-03T07:45:26.771Z", + "events": [ + { + "start": "2022-05-03T01:37:01.477Z", + "end": "2022-05-03T07:45:26.771Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "512498684211232768", + "start": "2022-06-25T15:59:36.792Z", + "end": "2022-06-26T01:17:37.330Z", + "events": [ + { + "start": "2022-06-25T15:59:36.792Z", + "end": "2022-06-25T19:05:36.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T19:05:36.971Z", + "end": "2022-06-25T22:11:37.150Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T22:11:37.150Z", + "end": "2022-06-26T01:17:37.329Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302714757313826277", + "game": "597860020935327787", + "start": "2022-08-06T09:06:54.320Z", + "end": "2022-08-06T11:25:49.092Z", + "events": [ + { + "start": "2022-08-06T09:06:54.320Z", + "end": "2022-08-06T11:25:49.092Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "878082205985098233", + "game": "514228311661084682", + "start": "2022-07-23T02:58:41.434Z", + "end": "2022-07-23T10:08:36.930Z", + "events": [ + { + "start": "2022-07-23T02:58:41.434Z", + "end": "2022-07-23T04:24:40.533Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T04:24:40.533Z", + "end": "2022-07-23T05:50:39.632Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T05:50:39.632Z", + "end": "2022-07-23T07:16:38.731Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T07:16:38.731Z", + "end": "2022-07-23T08:42:37.830Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T08:42:37.830Z", + "end": "2022-07-23T10:08:36.929Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "514228311661084682", + "start": "2022-07-21T11:16:20.361Z", + "end": "2022-07-21T11:47:44.915Z", + "events": [ + { + "start": "2022-07-21T11:16:20.361Z", + "end": "2022-07-21T11:26:48.545Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T11:26:48.545Z", + "end": "2022-07-21T11:37:16.729Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T11:37:16.729Z", + "end": "2022-07-21T11:47:44.913Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "535371564850479134", + "start": "2022-04-19T18:33:24.016Z", + "end": "2022-04-19T21:01:23.755Z", + "events": [ + { + "start": "2022-04-19T18:33:24.016Z", + "end": "2022-04-19T19:47:23.885Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T19:47:23.885Z", + "end": "2022-04-19T21:01:23.754Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "725502702868293700", + "game": "565341641427124244", + "start": "2022-05-21T21:44:57.332Z", + "end": "2022-05-22T01:36:48.777Z", + "events": [ + { + "start": "2022-05-21T21:44:57.332Z", + "end": "2022-05-22T01:36:48.777Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "911848869344266044", + "game": "569008830701240340", + "start": "2022-07-11T11:21:55.208Z", + "end": "2022-07-11T20:32:41.413Z", + "events": [ + { + "start": "2022-07-11T11:21:55.208Z", + "end": "2022-07-11T13:12:04.449Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T13:12:04.449Z", + "end": "2022-07-11T15:02:13.690Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T15:02:13.690Z", + "end": "2022-07-11T16:52:22.931Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T16:52:22.931Z", + "end": "2022-07-11T18:42:32.172Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T18:42:32.172Z", + "end": "2022-07-11T20:32:41.413Z", + "state": "IDLE" + } + ] + }, + { + "user": "430732724825949756", + "game": "540120593576493057", + "start": "2022-05-08T12:49:29.935Z", + "end": "2022-05-08T20:41:25.245Z", + "events": [ + { + "start": "2022-05-08T12:49:29.935Z", + "end": "2022-05-08T16:45:27.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T16:45:27.590Z", + "end": "2022-05-08T20:41:25.245Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "774637841058278398", + "game": "512789427462995988", + "start": "2022-05-10T07:00:08.641Z", + "end": "2022-05-10T16:21:25.325Z", + "events": [ + { + "start": "2022-05-10T07:00:08.641Z", + "end": "2022-05-10T09:20:27.812Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T09:20:27.812Z", + "end": "2022-05-10T11:40:46.983Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T11:40:46.983Z", + "end": "2022-05-10T14:01:06.154Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T14:01:06.154Z", + "end": "2022-05-10T16:21:25.325Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "606163888052109312", + "start": "2022-06-15T10:53:54.240Z", + "end": "2022-06-15T15:29:52.064Z", + "events": [ + { + "start": "2022-06-15T10:53:54.240Z", + "end": "2022-06-15T12:02:53.696Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T12:02:53.696Z", + "end": "2022-06-15T13:11:53.152Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T13:11:53.152Z", + "end": "2022-06-15T14:20:52.608Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T14:20:52.608Z", + "end": "2022-06-15T15:29:52.064Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "519644368735567873", + "start": "2022-05-29T22:26:32.688Z", + "end": "2022-05-30T04:10:37.885Z", + "events": [ + { + "start": "2022-05-29T22:26:32.688Z", + "end": "2022-05-29T23:52:33.987Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T23:52:33.987Z", + "end": "2022-05-30T01:18:35.286Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T01:18:35.286Z", + "end": "2022-05-30T02:44:36.585Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T02:44:36.585Z", + "end": "2022-05-30T04:10:37.884Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "713444659295913502", + "game": "558547388583772201", + "start": "2022-04-29T20:35:01.500Z", + "end": "2022-04-30T06:33:57.965Z", + "events": [ + { + "start": "2022-04-29T20:35:01.500Z", + "end": "2022-04-29T23:54:40.321Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-29T23:54:40.321Z", + "end": "2022-04-30T03:14:19.142Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-30T03:14:19.142Z", + "end": "2022-04-30T06:33:57.963Z", + "state": "IDLE" + } + ] + }, + { + "user": "768513326430993269", + "game": "550277544025522176", + "start": "2022-04-29T11:47:49.463Z", + "end": "2022-04-29T17:48:52.318Z", + "events": [ + { + "start": "2022-04-29T11:47:49.463Z", + "end": "2022-04-29T14:48:20.890Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T14:48:20.890Z", + "end": "2022-04-29T17:48:52.317Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "101572134856427564", + "game": "512789427462995988", + "start": "2022-07-26T12:03:26.434Z", + "end": "2022-07-26T15:13:49.865Z", + "events": [ + { + "start": "2022-07-26T12:03:26.434Z", + "end": "2022-07-26T15:13:49.865Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "508057374875975682", + "start": "2022-04-26T05:48:23.456Z", + "end": "2022-04-26T09:49:23.722Z", + "events": [ + { + "start": "2022-04-26T05:48:23.456Z", + "end": "2022-04-26T06:48:38.522Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T06:48:38.522Z", + "end": "2022-04-26T07:48:53.588Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T07:48:53.588Z", + "end": "2022-04-26T08:49:08.654Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T08:49:08.654Z", + "end": "2022-04-26T09:49:23.720Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "512699108809637890", + "start": "2022-05-16T22:08:32.686Z", + "end": "2022-05-16T23:38:09.287Z", + "events": [ + { + "start": "2022-05-16T22:08:32.686Z", + "end": "2022-05-16T22:26:28.006Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T22:26:28.006Z", + "end": "2022-05-16T22:44:23.326Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T22:44:23.326Z", + "end": "2022-05-16T23:02:18.646Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-16T23:02:18.646Z", + "end": "2022-05-16T23:20:13.966Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T23:20:13.966Z", + "end": "2022-05-16T23:38:09.286Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "500919588166575890", + "game": "512501896896970762", + "start": "2022-05-26T07:32:17.727Z", + "end": "2022-05-26T16:58:11.183Z", + "events": [ + { + "start": "2022-05-26T07:32:17.727Z", + "end": "2022-05-26T09:25:28.418Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-26T09:25:28.418Z", + "end": "2022-05-26T11:18:39.109Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T11:18:39.109Z", + "end": "2022-05-26T13:11:49.800Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-26T13:11:49.800Z", + "end": "2022-05-26T15:05:00.491Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T15:05:00.491Z", + "end": "2022-05-26T16:58:11.182Z", + "state": "IDLE" + } + ] + }, + { + "user": "623295654897148670", + "game": "518088627234930688", + "start": "2022-07-20T19:41:56.593Z", + "end": "2022-07-21T04:04:42.658Z", + "events": [ + { + "start": "2022-07-20T19:41:56.593Z", + "end": "2022-07-20T21:47:38.109Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T21:47:38.109Z", + "end": "2022-07-20T23:53:19.625Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T23:53:19.625Z", + "end": "2022-07-21T01:59:01.141Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T01:59:01.141Z", + "end": "2022-07-21T04:04:42.657Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "572456126872944651", + "start": "2022-06-15T20:53:26.444Z", + "end": "2022-06-15T23:52:43.680Z", + "events": [ + { + "start": "2022-06-15T20:53:26.444Z", + "end": "2022-06-15T21:38:15.753Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T21:38:15.753Z", + "end": "2022-06-15T22:23:05.062Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T22:23:05.062Z", + "end": "2022-06-15T23:07:54.371Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T23:07:54.371Z", + "end": "2022-06-15T23:52:43.680Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "565341641427124244", + "start": "2022-05-16T06:46:01.463Z", + "end": "2022-05-16T14:56:40.158Z", + "events": [ + { + "start": "2022-05-16T06:46:01.463Z", + "end": "2022-05-16T09:29:34.361Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-16T09:29:34.361Z", + "end": "2022-05-16T12:13:07.259Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T12:13:07.259Z", + "end": "2022-05-16T14:56:40.157Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "565341641427124244", + "start": "2022-07-23T16:18:13.861Z", + "end": "2022-07-24T00:13:10.417Z", + "events": [ + { + "start": "2022-07-23T16:18:13.861Z", + "end": "2022-07-23T20:15:42.139Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T20:15:42.139Z", + "end": "2022-07-24T00:13:10.417Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "395281349698024181", + "game": "523154344187789312", + "start": "2022-06-19T10:09:12.297Z", + "end": "2022-06-19T14:09:53.903Z", + "events": [ + { + "start": "2022-06-19T10:09:12.297Z", + "end": "2022-06-19T14:09:53.903Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "713444659295913502", + "game": "514228311661084682", + "start": "2022-07-07T03:48:43.300Z", + "end": "2022-07-07T08:14:54.295Z", + "events": [ + { + "start": "2022-07-07T03:48:43.300Z", + "end": "2022-07-07T08:14:54.295Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "520462578061803588", + "start": "2022-05-15T03:33:59.799Z", + "end": "2022-05-15T09:29:30.147Z", + "events": [ + { + "start": "2022-05-15T03:33:59.799Z", + "end": "2022-05-15T05:02:52.386Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T05:02:52.386Z", + "end": "2022-05-15T06:31:44.973Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T06:31:44.973Z", + "end": "2022-05-15T08:00:37.560Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T08:00:37.560Z", + "end": "2022-05-15T09:29:30.147Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "520462578061803588", + "start": "2022-06-24T15:10:50.584Z", + "end": "2022-06-24T23:30:38.843Z", + "events": [ + { + "start": "2022-06-24T15:10:50.584Z", + "end": "2022-06-24T19:20:44.713Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T19:20:44.713Z", + "end": "2022-06-24T23:30:38.842Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "597860020935327787", + "start": "2022-04-29T15:11:41.921Z", + "end": "2022-04-29T21:49:06.231Z", + "events": [ + { + "start": "2022-04-29T15:11:41.921Z", + "end": "2022-04-29T17:24:10.024Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T17:24:10.024Z", + "end": "2022-04-29T19:36:38.127Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T19:36:38.127Z", + "end": "2022-04-29T21:49:06.230Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "569253958967885828", + "start": "2022-05-31T16:00:28.608Z", + "end": "2022-05-31T22:33:53.030Z", + "events": [ + { + "start": "2022-05-31T16:00:28.608Z", + "end": "2022-05-31T17:19:09.492Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T17:19:09.492Z", + "end": "2022-05-31T18:37:50.376Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T18:37:50.376Z", + "end": "2022-05-31T19:56:31.260Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T19:56:31.260Z", + "end": "2022-05-31T21:15:12.144Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T21:15:12.144Z", + "end": "2022-05-31T22:33:53.028Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "553697181249437716", + "start": "2022-05-07T15:05:37.166Z", + "end": "2022-05-07T22:34:07.380Z", + "events": [ + { + "start": "2022-05-07T15:05:37.166Z", + "end": "2022-05-07T22:34:07.380Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "732542352358923773", + "game": "540120593576493057", + "start": "2022-05-09T00:37:42.814Z", + "end": "2022-05-09T04:03:14.056Z", + "events": [ + { + "start": "2022-05-09T00:37:42.814Z", + "end": "2022-05-09T01:18:49.062Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T01:18:49.062Z", + "end": "2022-05-09T01:59:55.310Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T01:59:55.310Z", + "end": "2022-05-09T02:41:01.558Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T02:41:01.558Z", + "end": "2022-05-09T03:22:07.806Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-09T03:22:07.806Z", + "end": "2022-05-09T04:03:14.054Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "553697181249437716", + "start": "2022-05-18T11:21:56.233Z", + "end": "2022-05-18T20:50:52.229Z", + "events": [ + { + "start": "2022-05-18T11:21:56.233Z", + "end": "2022-05-18T16:06:24.231Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T16:06:24.231Z", + "end": "2022-05-18T20:50:52.229Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "700136079562375258", + "start": "2022-05-09T19:29:39.994Z", + "end": "2022-05-09T20:43:28.896Z", + "events": [ + { + "start": "2022-05-09T19:29:39.994Z", + "end": "2022-05-09T19:44:25.774Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T19:44:25.774Z", + "end": "2022-05-09T19:59:11.554Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T19:59:11.554Z", + "end": "2022-05-09T20:13:57.334Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T20:13:57.334Z", + "end": "2022-05-09T20:28:43.114Z", + "state": "IDLE" + }, + { + "start": "2022-05-09T20:28:43.114Z", + "end": "2022-05-09T20:43:28.894Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "713444659295913502", + "game": "569253958967885828", + "start": "2022-07-18T06:21:02.575Z", + "end": "2022-07-18T12:43:23.211Z", + "events": [ + { + "start": "2022-07-18T06:21:02.575Z", + "end": "2022-07-18T07:56:37.734Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T07:56:37.734Z", + "end": "2022-07-18T09:32:12.893Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T09:32:12.893Z", + "end": "2022-07-18T11:07:48.052Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T11:07:48.052Z", + "end": "2022-07-18T12:43:23.211Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "791267126190249625", + "game": "519644368735567873", + "start": "2022-07-15T08:35:32.878Z", + "end": "2022-07-15T08:54:27.030Z", + "events": [ + { + "start": "2022-07-15T08:35:32.878Z", + "end": "2022-07-15T08:40:16.416Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-15T08:40:16.416Z", + "end": "2022-07-15T08:44:59.954Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T08:44:59.954Z", + "end": "2022-07-15T08:49:43.492Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-15T08:49:43.492Z", + "end": "2022-07-15T08:54:27.030Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "510690749854514547", + "game": "588739017718366208", + "start": "2022-04-29T11:52:47.003Z", + "end": "2022-04-29T13:17:21.861Z", + "events": [ + { + "start": "2022-04-29T11:52:47.003Z", + "end": "2022-04-29T12:20:58.622Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T12:20:58.622Z", + "end": "2022-04-29T12:49:10.241Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-29T12:49:10.241Z", + "end": "2022-04-29T13:17:21.860Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "530454325214969866", + "start": "2022-04-25T14:21:09.770Z", + "end": "2022-04-25T21:38:38.110Z", + "events": [ + { + "start": "2022-04-25T14:21:09.770Z", + "end": "2022-04-25T21:38:38.110Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "519644368735567873", + "start": "2022-06-16T09:37:46.300Z", + "end": "2022-06-16T11:38:35.189Z", + "events": [ + { + "start": "2022-06-16T09:37:46.300Z", + "end": "2022-06-16T10:07:58.522Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T10:07:58.522Z", + "end": "2022-06-16T10:38:10.744Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T10:38:10.744Z", + "end": "2022-06-16T11:08:22.966Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T11:08:22.966Z", + "end": "2022-06-16T11:38:35.188Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "535384357536399404", + "start": "2022-07-11T09:06:15.169Z", + "end": "2022-07-11T11:34:58.282Z", + "events": [ + { + "start": "2022-07-11T09:06:15.169Z", + "end": "2022-07-11T10:20:36.725Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T10:20:36.725Z", + "end": "2022-07-11T11:34:58.281Z", + "state": "IDLE" + } + ] + }, + { + "user": "394970121077311909", + "game": "542475118396309528", + "start": "2022-06-20T14:13:34.881Z", + "end": "2022-06-20T16:55:07.749Z", + "events": [ + { + "start": "2022-06-20T14:13:34.881Z", + "end": "2022-06-20T15:34:21.315Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T15:34:21.315Z", + "end": "2022-06-20T16:55:07.749Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "285410867718320291", + "game": "576482762446602270", + "start": "2022-04-23T05:37:21.234Z", + "end": "2022-04-23T09:29:29.710Z", + "events": [ + { + "start": "2022-04-23T05:37:21.234Z", + "end": "2022-04-23T06:54:44.059Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T06:54:44.059Z", + "end": "2022-04-23T08:12:06.884Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T08:12:06.884Z", + "end": "2022-04-23T09:29:29.709Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "297014162745407430", + "game": "584069374462394368", + "start": "2022-07-26T18:16:48.245Z", + "end": "2022-07-26T18:22:55.377Z", + "events": [ + { + "start": "2022-07-26T18:16:48.245Z", + "end": "2022-07-26T18:18:01.671Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-26T18:18:01.671Z", + "end": "2022-07-26T18:19:15.097Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-26T18:19:15.097Z", + "end": "2022-07-26T18:20:28.523Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-26T18:20:28.523Z", + "end": "2022-07-26T18:21:41.949Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-26T18:21:41.949Z", + "end": "2022-07-26T18:22:55.375Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "452396069922968436", + "game": "520462578061803588", + "start": "2022-06-28T11:03:22.005Z", + "end": "2022-06-28T16:35:43.897Z", + "events": [ + { + "start": "2022-06-28T11:03:22.005Z", + "end": "2022-06-28T12:26:27.478Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T12:26:27.478Z", + "end": "2022-06-28T13:49:32.951Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T13:49:32.951Z", + "end": "2022-06-28T15:12:38.424Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T15:12:38.424Z", + "end": "2022-06-28T16:35:43.897Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "731522398939920723", + "game": "520453007578628124", + "start": "2022-06-12T08:23:30.266Z", + "end": "2022-06-12T17:01:50.680Z", + "events": [ + { + "start": "2022-06-12T08:23:30.266Z", + "end": "2022-06-12T17:01:50.680Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "558547388583772201", + "start": "2022-06-20T04:35:29.386Z", + "end": "2022-06-20T10:20:20.850Z", + "events": [ + { + "start": "2022-06-20T04:35:29.386Z", + "end": "2022-06-20T06:30:26.540Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T06:30:26.540Z", + "end": "2022-06-20T08:25:23.694Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T08:25:23.694Z", + "end": "2022-06-20T10:20:20.848Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "694111074254984301", + "game": "519644368735567873", + "start": "2022-08-01T06:52:59.636Z", + "end": "2022-08-01T08:30:25.235Z", + "events": [ + { + "start": "2022-08-01T06:52:59.636Z", + "end": "2022-08-01T07:41:42.435Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-01T07:41:42.435Z", + "end": "2022-08-01T08:30:25.234Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "378424071510192465", + "game": "518088627234930688", + "start": "2022-04-27T12:02:37.864Z", + "end": "2022-04-27T12:45:36.999Z", + "events": [ + { + "start": "2022-04-27T12:02:37.864Z", + "end": "2022-04-27T12:11:13.691Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T12:11:13.691Z", + "end": "2022-04-27T12:19:49.518Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T12:19:49.518Z", + "end": "2022-04-27T12:28:25.345Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T12:28:25.345Z", + "end": "2022-04-27T12:37:01.172Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T12:37:01.172Z", + "end": "2022-04-27T12:45:36.999Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "878082205985098233", + "game": "512501896896970762", + "start": "2022-06-09T14:54:07.536Z", + "end": "2022-06-10T00:51:42.243Z", + "events": [ + { + "start": "2022-06-09T14:54:07.536Z", + "end": "2022-06-09T19:52:54.889Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-09T19:52:54.889Z", + "end": "2022-06-10T00:51:42.242Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "394970121077311909", + "game": "508057374875975682", + "start": "2022-07-15T03:36:43.614Z", + "end": "2022-07-15T05:45:56.613Z", + "events": [ + { + "start": "2022-07-15T03:36:43.614Z", + "end": "2022-07-15T04:02:34.213Z", + "state": "IDLE" + }, + { + "start": "2022-07-15T04:02:34.213Z", + "end": "2022-07-15T04:28:24.812Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T04:28:24.812Z", + "end": "2022-07-15T04:54:15.411Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T04:54:15.411Z", + "end": "2022-07-15T05:20:06.010Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T05:20:06.010Z", + "end": "2022-07-15T05:45:56.609Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "452396069922968436", + "game": "508057374875975682", + "start": "2022-04-19T04:26:50.642Z", + "end": "2022-04-19T09:16:41.021Z", + "events": [ + { + "start": "2022-04-19T04:26:50.642Z", + "end": "2022-04-19T09:16:41.021Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "521350927850935744", + "game": "519644267212177418", + "start": "2022-05-02T13:35:27.899Z", + "end": "2022-05-02T18:08:03.175Z", + "events": [ + { + "start": "2022-05-02T13:35:27.899Z", + "end": "2022-05-02T15:51:45.537Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T15:51:45.537Z", + "end": "2022-05-02T18:08:03.175Z", + "state": "IDLE" + } + ] + }, + { + "user": "694111074254984301", + "game": "540120593576493057", + "start": "2022-06-10T22:48:41.554Z", + "end": "2022-06-11T01:46:30.570Z", + "events": [ + { + "start": "2022-06-10T22:48:41.554Z", + "end": "2022-06-11T01:46:30.570Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "695941172337689379", + "game": "530454325214969866", + "start": "2022-07-22T01:04:57.197Z", + "end": "2022-07-22T10:01:28.815Z", + "events": [ + { + "start": "2022-07-22T01:04:57.197Z", + "end": "2022-07-22T02:52:15.520Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T02:52:15.520Z", + "end": "2022-07-22T04:39:33.843Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T04:39:33.843Z", + "end": "2022-07-22T06:26:52.166Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T06:26:52.166Z", + "end": "2022-07-22T08:14:10.489Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T08:14:10.489Z", + "end": "2022-07-22T10:01:28.812Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "318220875546522080", + "game": "512501896896970762", + "start": "2022-06-15T11:46:29.356Z", + "end": "2022-06-15T16:47:53.589Z", + "events": [ + { + "start": "2022-06-15T11:46:29.356Z", + "end": "2022-06-15T13:01:50.414Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T13:01:50.414Z", + "end": "2022-06-15T14:17:11.472Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T14:17:11.472Z", + "end": "2022-06-15T15:32:32.530Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T15:32:32.530Z", + "end": "2022-06-15T16:47:53.588Z", + "state": "IDLE" + } + ] + }, + { + "user": "153631479524744694", + "game": "512789427462995988", + "start": "2022-08-01T08:13:10.146Z", + "end": "2022-08-01T15:18:25.394Z", + "events": [ + { + "start": "2022-08-01T08:13:10.146Z", + "end": "2022-08-01T11:45:47.770Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T11:45:47.770Z", + "end": "2022-08-01T15:18:25.394Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "511619499053678668", + "start": "2022-05-13T23:48:48.803Z", + "end": "2022-05-14T07:38:53.438Z", + "events": [ + { + "start": "2022-05-13T23:48:48.803Z", + "end": "2022-05-14T03:43:51.120Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T03:43:51.120Z", + "end": "2022-05-14T07:38:53.437Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "584069374462394368", + "start": "2022-06-20T02:18:15.369Z", + "end": "2022-06-20T08:07:54.632Z", + "events": [ + { + "start": "2022-06-20T02:18:15.369Z", + "end": "2022-06-20T08:07:54.632Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "510690749854514547", + "game": "535371564850479134", + "start": "2022-04-14T23:38:33.164Z", + "end": "2022-04-15T04:03:40.806Z", + "events": [ + { + "start": "2022-04-14T23:38:33.164Z", + "end": "2022-04-15T01:51:06.985Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-15T01:51:06.985Z", + "end": "2022-04-15T04:03:40.806Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "213263852824749877", + "game": "512789120234422301", + "start": "2022-07-28T10:21:03.115Z", + "end": "2022-07-28T13:34:05.784Z", + "events": [ + { + "start": "2022-07-28T10:21:03.115Z", + "end": "2022-07-28T11:09:18.782Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T11:09:18.782Z", + "end": "2022-07-28T11:57:34.449Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T11:57:34.449Z", + "end": "2022-07-28T12:45:50.116Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T12:45:50.116Z", + "end": "2022-07-28T13:34:05.783Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "520462578061803588", + "start": "2022-04-29T10:18:46.425Z", + "end": "2022-04-29T13:16:41.373Z", + "events": [ + { + "start": "2022-04-29T10:18:46.425Z", + "end": "2022-04-29T10:54:21.414Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T10:54:21.414Z", + "end": "2022-04-29T11:29:56.403Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T11:29:56.403Z", + "end": "2022-04-29T12:05:31.392Z", + "state": "IDLE" + }, + { + "start": "2022-04-29T12:05:31.392Z", + "end": "2022-04-29T12:41:06.381Z", + "state": "IDLE" + }, + { + "start": "2022-04-29T12:41:06.381Z", + "end": "2022-04-29T13:16:41.370Z", + "state": "IDLE" + } + ] + }, + { + "user": "123137660023366590", + "game": "546175179542364160", + "start": "2022-05-20T04:13:15.996Z", + "end": "2022-05-20T06:55:38.027Z", + "events": [ + { + "start": "2022-05-20T04:13:15.996Z", + "end": "2022-05-20T05:07:23.339Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T05:07:23.339Z", + "end": "2022-05-20T06:01:30.682Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-20T06:01:30.682Z", + "end": "2022-05-20T06:55:38.025Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512501896896970762", + "start": "2022-06-03T17:40:55.052Z", + "end": "2022-06-03T23:17:14.135Z", + "events": [ + { + "start": "2022-06-03T17:40:55.052Z", + "end": "2022-06-03T20:29:04.593Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T20:29:04.593Z", + "end": "2022-06-03T23:17:14.134Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "512789120234422301", + "start": "2022-06-02T15:35:21.127Z", + "end": "2022-06-02T23:03:21.662Z", + "events": [ + { + "start": "2022-06-02T15:35:21.127Z", + "end": "2022-06-02T19:19:21.394Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T19:19:21.394Z", + "end": "2022-06-02T23:03:21.661Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "508057374875975682", + "start": "2022-05-24T04:57:35.431Z", + "end": "2022-05-24T06:05:38.304Z", + "events": [ + { + "start": "2022-05-24T04:57:35.431Z", + "end": "2022-05-24T05:20:16.388Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T05:20:16.388Z", + "end": "2022-05-24T05:42:57.345Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T05:42:57.345Z", + "end": "2022-05-24T06:05:38.302Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "356875221078245376", + "start": "2022-06-17T08:01:00.954Z", + "end": "2022-06-17T16:24:56.023Z", + "events": [ + { + "start": "2022-06-17T08:01:00.954Z", + "end": "2022-06-17T12:12:58.488Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T12:12:58.488Z", + "end": "2022-06-17T16:24:56.022Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "101572134856427564", + "game": "519644368735567873", + "start": "2022-06-09T02:56:40.727Z", + "end": "2022-06-09T12:27:40.629Z", + "events": [ + { + "start": "2022-06-09T02:56:40.727Z", + "end": "2022-06-09T07:42:10.678Z", + "state": "IDLE" + }, + { + "start": "2022-06-09T07:42:10.678Z", + "end": "2022-06-09T12:27:40.629Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "510690749854514547", + "game": "526489929631531009", + "start": "2022-05-16T13:07:05.983Z", + "end": "2022-05-16T20:47:37.835Z", + "events": [ + { + "start": "2022-05-16T13:07:05.983Z", + "end": "2022-05-16T14:39:12.353Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T14:39:12.353Z", + "end": "2022-05-16T16:11:18.723Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T16:11:18.723Z", + "end": "2022-05-16T17:43:25.093Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T17:43:25.093Z", + "end": "2022-05-16T19:15:31.463Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T19:15:31.463Z", + "end": "2022-05-16T20:47:37.833Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "161887854890745672", + "game": "512789343157485602", + "start": "2022-07-08T22:30:43.183Z", + "end": "2022-07-08T23:53:27.213Z", + "events": [ + { + "start": "2022-07-08T22:30:43.183Z", + "end": "2022-07-08T22:47:15.989Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T22:47:15.989Z", + "end": "2022-07-08T23:03:48.795Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T23:03:48.795Z", + "end": "2022-07-08T23:20:21.601Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T23:20:21.601Z", + "end": "2022-07-08T23:36:54.407Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T23:36:54.407Z", + "end": "2022-07-08T23:53:27.213Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "356875221078245376", + "start": "2022-07-21T05:19:29.379Z", + "end": "2022-07-21T05:26:37.581Z", + "events": [ + { + "start": "2022-07-21T05:19:29.379Z", + "end": "2022-07-21T05:26:37.581Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "565341641427124244", + "start": "2022-04-13T11:13:56.199Z", + "end": "2022-04-13T16:51:35.190Z", + "events": [ + { + "start": "2022-04-13T11:13:56.199Z", + "end": "2022-04-13T13:06:29.196Z", + "state": "IDLE" + }, + { + "start": "2022-04-13T13:06:29.196Z", + "end": "2022-04-13T14:59:02.193Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T14:59:02.193Z", + "end": "2022-04-13T16:51:35.190Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "938976307338486810", + "game": "356875221078245376", + "start": "2022-05-08T16:56:51.869Z", + "end": "2022-05-08T23:36:36.004Z", + "events": [ + { + "start": "2022-05-08T16:56:51.869Z", + "end": "2022-05-08T18:36:47.902Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T18:36:47.902Z", + "end": "2022-05-08T20:16:43.935Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T20:16:43.935Z", + "end": "2022-05-08T21:56:39.968Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T21:56:39.968Z", + "end": "2022-05-08T23:36:36.001Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "625617695768437507", + "game": "356875221078245376", + "start": "2022-05-01T06:25:35.908Z", + "end": "2022-05-01T07:49:57.017Z", + "events": [ + { + "start": "2022-05-01T06:25:35.908Z", + "end": "2022-05-01T06:42:28.129Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T06:42:28.129Z", + "end": "2022-05-01T06:59:20.350Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T06:59:20.350Z", + "end": "2022-05-01T07:16:12.571Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T07:16:12.571Z", + "end": "2022-05-01T07:33:04.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T07:33:04.792Z", + "end": "2022-05-01T07:49:57.013Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "182925797752958092", + "game": "519644267212177418", + "start": "2022-07-06T17:13:18.963Z", + "end": "2022-07-06T23:58:40.556Z", + "events": [ + { + "start": "2022-07-06T17:13:18.963Z", + "end": "2022-07-06T23:58:40.556Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "385692164951394422", + "game": "530454325214969866", + "start": "2022-06-24T11:10:06.785Z", + "end": "2022-06-24T15:52:41.785Z", + "events": [ + { + "start": "2022-06-24T11:10:06.785Z", + "end": "2022-06-24T12:06:37.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T12:06:37.785Z", + "end": "2022-06-24T13:03:08.785Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T13:03:08.785Z", + "end": "2022-06-24T13:59:39.785Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T13:59:39.785Z", + "end": "2022-06-24T14:56:10.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T14:56:10.785Z", + "end": "2022-06-24T15:52:41.785Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "762163239408560283", + "game": "540120593576493057", + "start": "2022-05-26T03:10:47.961Z", + "end": "2022-05-26T06:07:22.418Z", + "events": [ + { + "start": "2022-05-26T03:10:47.961Z", + "end": "2022-05-26T06:07:22.418Z", + "state": "IDLE" + } + ] + }, + { + "user": "590467327095087095", + "game": "592976500802846750", + "start": "2022-05-03T09:33:07.823Z", + "end": "2022-05-03T13:11:41.418Z", + "events": [ + { + "start": "2022-05-03T09:33:07.823Z", + "end": "2022-05-03T10:45:59.021Z", + "state": "IDLE" + }, + { + "start": "2022-05-03T10:45:59.021Z", + "end": "2022-05-03T11:58:50.219Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T11:58:50.219Z", + "end": "2022-05-03T13:11:41.417Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "530454325214969866", + "start": "2022-06-29T11:35:20.740Z", + "end": "2022-06-29T12:15:22.618Z", + "events": [ + { + "start": "2022-06-29T11:35:20.740Z", + "end": "2022-06-29T11:48:41.366Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T11:48:41.366Z", + "end": "2022-06-29T12:02:01.992Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T12:02:01.992Z", + "end": "2022-06-29T12:15:22.618Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "182925797752958092", + "game": "553697181249437716", + "start": "2022-06-23T06:34:03.947Z", + "end": "2022-06-23T11:36:04.991Z", + "events": [ + { + "start": "2022-06-23T06:34:03.947Z", + "end": "2022-06-23T11:36:04.991Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "800318424708872602", + "game": "518088627234930688", + "start": "2022-06-03T07:53:51.461Z", + "end": "2022-06-03T13:21:21.297Z", + "events": [ + { + "start": "2022-06-03T07:53:51.461Z", + "end": "2022-06-03T13:21:21.297Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "658550407298256890", + "game": "576482762446602270", + "start": "2022-07-01T04:02:05.021Z", + "end": "2022-07-01T07:59:49.741Z", + "events": [ + { + "start": "2022-07-01T04:02:05.021Z", + "end": "2022-07-01T07:59:49.741Z", + "state": "IDLE" + } + ] + }, + { + "user": "881335427428668054", + "game": "542475118396309528", + "start": "2022-07-02T22:22:17.173Z", + "end": "2022-07-03T02:44:36.877Z", + "events": [ + { + "start": "2022-07-02T22:22:17.173Z", + "end": "2022-07-02T23:14:45.113Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T23:14:45.113Z", + "end": "2022-07-03T00:07:13.053Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T00:07:13.053Z", + "end": "2022-07-03T00:59:40.993Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-03T00:59:40.993Z", + "end": "2022-07-03T01:52:08.933Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T01:52:08.933Z", + "end": "2022-07-03T02:44:36.873Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "512789120234422301", + "start": "2022-07-11T21:10:30.784Z", + "end": "2022-07-12T04:05:54.236Z", + "events": [ + { + "start": "2022-07-11T21:10:30.784Z", + "end": "2022-07-11T22:54:21.647Z", + "state": "IDLE" + }, + { + "start": "2022-07-11T22:54:21.647Z", + "end": "2022-07-12T00:38:12.510Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T00:38:12.510Z", + "end": "2022-07-12T02:22:03.373Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T02:22:03.373Z", + "end": "2022-07-12T04:05:54.236Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "576482762446602270", + "start": "2022-05-22T21:21:40.562Z", + "end": "2022-05-22T22:15:16.083Z", + "events": [ + { + "start": "2022-05-22T21:21:40.562Z", + "end": "2022-05-22T22:15:16.083Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "517335360477493827", + "game": "530454325214969866", + "start": "2022-05-21T02:44:53.104Z", + "end": "2022-05-21T06:11:08.677Z", + "events": [ + { + "start": "2022-05-21T02:44:53.104Z", + "end": "2022-05-21T03:26:08.218Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T03:26:08.218Z", + "end": "2022-05-21T04:07:23.332Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T04:07:23.332Z", + "end": "2022-05-21T04:48:38.446Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T04:48:38.446Z", + "end": "2022-05-21T05:29:53.560Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T05:29:53.560Z", + "end": "2022-05-21T06:11:08.674Z", + "state": "IDLE" + } + ] + }, + { + "user": "881335427428668054", + "game": "530454325214969866", + "start": "2022-07-06T00:52:32.597Z", + "end": "2022-07-06T04:55:11.543Z", + "events": [ + { + "start": "2022-07-06T00:52:32.597Z", + "end": "2022-07-06T01:53:12.333Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T01:53:12.333Z", + "end": "2022-07-06T02:53:52.069Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T02:53:52.069Z", + "end": "2022-07-06T03:54:31.805Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T03:54:31.805Z", + "end": "2022-07-06T04:55:11.541Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "519644368735567873", + "start": "2022-07-07T19:45:29.389Z", + "end": "2022-07-08T01:07:37.042Z", + "events": [ + { + "start": "2022-07-07T19:45:29.389Z", + "end": "2022-07-07T21:32:51.940Z", + "state": "IDLE" + }, + { + "start": "2022-07-07T21:32:51.940Z", + "end": "2022-07-07T23:20:14.491Z", + "state": "IDLE" + }, + { + "start": "2022-07-07T23:20:14.491Z", + "end": "2022-07-08T01:07:37.042Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "572456126872944651", + "start": "2022-08-05T05:54:48.912Z", + "end": "2022-08-05T05:58:35.312Z", + "events": [ + { + "start": "2022-08-05T05:54:48.912Z", + "end": "2022-08-05T05:55:34.192Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T05:55:34.192Z", + "end": "2022-08-05T05:56:19.472Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T05:56:19.472Z", + "end": "2022-08-05T05:57:04.752Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T05:57:04.752Z", + "end": "2022-08-05T05:57:50.032Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T05:57:50.032Z", + "end": "2022-08-05T05:58:35.312Z", + "state": "IDLE" + } + ] + }, + { + "user": "800318424708872602", + "game": "560781100197216267", + "start": "2022-05-17T21:05:57.695Z", + "end": "2022-05-18T06:32:40.718Z", + "events": [ + { + "start": "2022-05-17T21:05:57.695Z", + "end": "2022-05-18T00:14:52.036Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-18T00:14:52.036Z", + "end": "2022-05-18T03:23:46.377Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T03:23:46.377Z", + "end": "2022-05-18T06:32:40.718Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "530454325214969866", + "start": "2022-05-25T21:00:58.455Z", + "end": "2022-05-26T06:35:06.731Z", + "events": [ + { + "start": "2022-05-25T21:00:58.455Z", + "end": "2022-05-26T01:48:02.593Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T01:48:02.593Z", + "end": "2022-05-26T06:35:06.731Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "318220875546522080", + "game": "356875221078245376", + "start": "2022-04-21T21:54:19.874Z", + "end": "2022-04-21T22:23:43.022Z", + "events": [ + { + "start": "2022-04-21T21:54:19.874Z", + "end": "2022-04-21T22:04:07.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T22:04:07.590Z", + "end": "2022-04-21T22:13:55.306Z", + "state": "IDLE" + }, + { + "start": "2022-04-21T22:13:55.306Z", + "end": "2022-04-21T22:23:43.022Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "535384357536399404", + "start": "2022-06-11T16:13:02.100Z", + "end": "2022-06-11T21:57:19.810Z", + "events": [ + { + "start": "2022-06-11T16:13:02.100Z", + "end": "2022-06-11T18:07:48.003Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T18:07:48.003Z", + "end": "2022-06-11T20:02:33.906Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-11T20:02:33.906Z", + "end": "2022-06-11T21:57:19.809Z", + "state": "IDLE" + } + ] + }, + { + "user": "424856688594618054", + "game": "520453007578628124", + "start": "2022-05-07T14:46:55.065Z", + "end": "2022-05-07T23:56:27.137Z", + "events": [ + { + "start": "2022-05-07T14:46:55.065Z", + "end": "2022-05-07T17:04:18.083Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-07T17:04:18.083Z", + "end": "2022-05-07T19:21:41.101Z", + "state": "IDLE" + }, + { + "start": "2022-05-07T19:21:41.101Z", + "end": "2022-05-07T21:39:04.119Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-07T21:39:04.119Z", + "end": "2022-05-07T23:56:27.137Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "356875221078245376", + "start": "2022-07-02T21:01:23.002Z", + "end": "2022-07-03T03:46:07.432Z", + "events": [ + { + "start": "2022-07-02T21:01:23.002Z", + "end": "2022-07-03T03:46:07.432Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "553697181249437716", + "start": "2022-05-24T13:31:44.435Z", + "end": "2022-05-24T18:44:14.025Z", + "events": [ + { + "start": "2022-05-24T13:31:44.435Z", + "end": "2022-05-24T14:34:14.353Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T14:34:14.353Z", + "end": "2022-05-24T15:36:44.271Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T15:36:44.271Z", + "end": "2022-05-24T16:39:14.189Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T16:39:14.189Z", + "end": "2022-05-24T17:41:44.107Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T17:41:44.107Z", + "end": "2022-05-24T18:44:14.025Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "535384357536399404", + "start": "2022-04-19T06:34:55.909Z", + "end": "2022-04-19T15:45:19.833Z", + "events": [ + { + "start": "2022-04-19T06:34:55.909Z", + "end": "2022-04-19T11:10:07.871Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T11:10:07.871Z", + "end": "2022-04-19T15:45:19.833Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "596421190780633864", + "game": "535384357536399404", + "start": "2022-04-30T16:40:11.490Z", + "end": "2022-04-30T23:59:22.234Z", + "events": [ + { + "start": "2022-04-30T16:40:11.490Z", + "end": "2022-04-30T23:59:22.234Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "872035310834814925", + "game": "592976500802846750", + "start": "2022-04-16T19:33:28.862Z", + "end": "2022-04-16T22:05:38.319Z", + "events": [ + { + "start": "2022-04-16T19:33:28.862Z", + "end": "2022-04-16T22:05:38.319Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "774637841058278398", + "game": "535869836748783616", + "start": "2022-05-01T14:37:22.966Z", + "end": "2022-05-01T19:29:09.590Z", + "events": [ + { + "start": "2022-05-01T14:37:22.966Z", + "end": "2022-05-01T15:50:19.622Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T15:50:19.622Z", + "end": "2022-05-01T17:03:16.278Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T17:03:16.278Z", + "end": "2022-05-01T18:16:12.934Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T18:16:12.934Z", + "end": "2022-05-01T19:29:09.590Z", + "state": "IDLE" + } + ] + }, + { + "user": "147480245458136084", + "game": "512789120234422301", + "start": "2022-06-03T21:54:47.324Z", + "end": "2022-06-04T07:13:03.986Z", + "events": [ + { + "start": "2022-06-03T21:54:47.324Z", + "end": "2022-06-04T01:00:52.878Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T01:00:52.878Z", + "end": "2022-06-04T04:06:58.432Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T04:06:58.432Z", + "end": "2022-06-04T07:13:03.986Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "535869836748783616", + "start": "2022-05-18T02:40:45.393Z", + "end": "2022-05-18T11:58:52.762Z", + "events": [ + { + "start": "2022-05-18T02:40:45.393Z", + "end": "2022-05-18T11:58:52.762Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "658550407298256890", + "game": "512789427462995988", + "start": "2022-06-01T17:32:36.753Z", + "end": "2022-06-02T00:57:11.917Z", + "events": [ + { + "start": "2022-06-01T17:32:36.753Z", + "end": "2022-06-02T00:57:11.917Z", + "state": "IDLE" + } + ] + }, + { + "user": "788818750251007268", + "game": "575412499399180288", + "start": "2022-05-24T00:02:20.464Z", + "end": "2022-05-24T04:09:59.103Z", + "events": [ + { + "start": "2022-05-24T00:02:20.464Z", + "end": "2022-05-24T01:04:15.123Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T01:04:15.123Z", + "end": "2022-05-24T02:06:09.782Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T02:06:09.782Z", + "end": "2022-05-24T03:08:04.441Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T03:08:04.441Z", + "end": "2022-05-24T04:09:59.100Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "356875221078245376", + "start": "2022-07-13T19:48:10.179Z", + "end": "2022-07-14T03:10:17.070Z", + "events": [ + { + "start": "2022-07-13T19:48:10.179Z", + "end": "2022-07-13T23:29:13.624Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T23:29:13.624Z", + "end": "2022-07-14T03:10:17.069Z", + "state": "IDLE" + } + ] + }, + { + "user": "568387317892070397", + "game": "549512435585908756", + "start": "2022-07-24T22:43:17.539Z", + "end": "2022-07-25T04:53:29.234Z", + "events": [ + { + "start": "2022-07-24T22:43:17.539Z", + "end": "2022-07-25T00:46:41.437Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-25T00:46:41.437Z", + "end": "2022-07-25T02:50:05.335Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T02:50:05.335Z", + "end": "2022-07-25T04:53:29.233Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "569253958967885828", + "start": "2022-07-06T14:03:27.317Z", + "end": "2022-07-06T23:06:47.224Z", + "events": [ + { + "start": "2022-07-06T14:03:27.317Z", + "end": "2022-07-06T17:04:33.952Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T17:04:33.952Z", + "end": "2022-07-06T20:05:40.587Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T20:05:40.587Z", + "end": "2022-07-06T23:06:47.222Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "512699108809637890", + "start": "2022-06-11T23:51:47.094Z", + "end": "2022-06-12T09:08:27.861Z", + "events": [ + { + "start": "2022-06-11T23:51:47.094Z", + "end": "2022-06-12T04:30:07.477Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T04:30:07.477Z", + "end": "2022-06-12T09:08:27.860Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "614380482620293151", + "start": "2022-07-23T17:28:58.593Z", + "end": "2022-07-23T21:06:39.580Z", + "events": [ + { + "start": "2022-07-23T17:28:58.593Z", + "end": "2022-07-23T18:41:32.255Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T18:41:32.255Z", + "end": "2022-07-23T19:54:05.917Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T19:54:05.917Z", + "end": "2022-07-23T21:06:39.579Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "518088627234930688", + "start": "2022-07-10T03:52:22.777Z", + "end": "2022-07-10T07:02:40.415Z", + "events": [ + { + "start": "2022-07-10T03:52:22.777Z", + "end": "2022-07-10T07:02:40.415Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "569008830701240340", + "start": "2022-06-14T06:34:58.202Z", + "end": "2022-06-14T09:29:21.997Z", + "events": [ + { + "start": "2022-06-14T06:34:58.202Z", + "end": "2022-06-14T09:29:21.997Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "385692164951394422", + "game": "512501896896970762", + "start": "2022-04-26T08:18:33.448Z", + "end": "2022-04-26T17:17:48.103Z", + "events": [ + { + "start": "2022-04-26T08:18:33.448Z", + "end": "2022-04-26T12:48:10.775Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-26T12:48:10.775Z", + "end": "2022-04-26T17:17:48.102Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "600708263053781983", + "game": "518088627234930688", + "start": "2022-06-04T05:05:58.267Z", + "end": "2022-06-04T07:18:56.617Z", + "events": [ + { + "start": "2022-06-04T05:05:58.267Z", + "end": "2022-06-04T06:12:27.442Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T06:12:27.442Z", + "end": "2022-06-04T07:18:56.617Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "528145079819436043", + "start": "2022-05-24T14:42:49.769Z", + "end": "2022-05-25T00:35:10.798Z", + "events": [ + { + "start": "2022-05-24T14:42:49.769Z", + "end": "2022-05-24T16:41:17.974Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T16:41:17.974Z", + "end": "2022-05-24T18:39:46.179Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T18:39:46.179Z", + "end": "2022-05-24T20:38:14.384Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T20:38:14.384Z", + "end": "2022-05-24T22:36:42.589Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T22:36:42.589Z", + "end": "2022-05-25T00:35:10.794Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302347517889336519", + "game": "597860020935327787", + "start": "2022-05-14T17:19:44.213Z", + "end": "2022-05-15T03:22:50.009Z", + "events": [ + { + "start": "2022-05-14T17:19:44.213Z", + "end": "2022-05-14T20:40:46.145Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T20:40:46.145Z", + "end": "2022-05-15T00:01:48.077Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T00:01:48.077Z", + "end": "2022-05-15T03:22:50.009Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "590467327095087095", + "game": "576482762446602270", + "start": "2022-06-06T09:22:33.418Z", + "end": "2022-06-06T16:37:06.449Z", + "events": [ + { + "start": "2022-06-06T09:22:33.418Z", + "end": "2022-06-06T10:49:28.024Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T10:49:28.024Z", + "end": "2022-06-06T12:16:22.630Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T12:16:22.630Z", + "end": "2022-06-06T13:43:17.236Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T13:43:17.236Z", + "end": "2022-06-06T15:10:11.842Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T15:10:11.842Z", + "end": "2022-06-06T16:37:06.448Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "550277544025522176", + "start": "2022-06-25T00:20:38.017Z", + "end": "2022-06-25T01:44:27.708Z", + "events": [ + { + "start": "2022-06-25T00:20:38.017Z", + "end": "2022-06-25T00:41:35.439Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T00:41:35.439Z", + "end": "2022-06-25T01:02:32.861Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T01:02:32.861Z", + "end": "2022-06-25T01:23:30.283Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T01:23:30.283Z", + "end": "2022-06-25T01:44:27.705Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "931211630078779300", + "game": "597588168178663434", + "start": "2022-06-21T16:49:31.704Z", + "end": "2022-06-21T19:36:57.348Z", + "events": [ + { + "start": "2022-06-21T16:49:31.704Z", + "end": "2022-06-21T19:36:57.348Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "530539422724200800", + "game": "526489929631531009", + "start": "2022-05-07T20:32:58.623Z", + "end": "2022-05-08T02:56:02.397Z", + "events": [ + { + "start": "2022-05-07T20:32:58.623Z", + "end": "2022-05-07T23:44:30.510Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-07T23:44:30.510Z", + "end": "2022-05-08T02:56:02.397Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "558547388583772201", + "start": "2022-06-23T19:45:42.933Z", + "end": "2022-06-24T05:04:45.547Z", + "events": [ + { + "start": "2022-06-23T19:45:42.933Z", + "end": "2022-06-24T00:25:14.240Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T00:25:14.240Z", + "end": "2022-06-24T05:04:45.547Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "569008830701240340", + "start": "2022-04-22T06:14:44.722Z", + "end": "2022-04-22T15:54:47.769Z", + "events": [ + { + "start": "2022-04-22T06:14:44.722Z", + "end": "2022-04-22T11:04:46.245Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T11:04:46.245Z", + "end": "2022-04-22T15:54:47.768Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "512789427462995988", + "start": "2022-07-25T06:49:14.581Z", + "end": "2022-07-25T12:25:07.941Z", + "events": [ + { + "start": "2022-07-25T06:49:14.581Z", + "end": "2022-07-25T08:13:12.921Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-25T08:13:12.921Z", + "end": "2022-07-25T09:37:11.261Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T09:37:11.261Z", + "end": "2022-07-25T11:01:09.601Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-25T11:01:09.601Z", + "end": "2022-07-25T12:25:07.941Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "576482762446602270", + "start": "2022-07-19T12:46:07.227Z", + "end": "2022-07-19T15:29:15.151Z", + "events": [ + { + "start": "2022-07-19T12:46:07.227Z", + "end": "2022-07-19T13:18:44.811Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T13:18:44.811Z", + "end": "2022-07-19T13:51:22.395Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T13:51:22.395Z", + "end": "2022-07-19T14:23:59.979Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T14:23:59.979Z", + "end": "2022-07-19T14:56:37.563Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T14:56:37.563Z", + "end": "2022-07-19T15:29:15.147Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "576482762446602270", + "start": "2022-06-16T09:35:16.875Z", + "end": "2022-06-16T19:16:31.290Z", + "events": [ + { + "start": "2022-06-16T09:35:16.875Z", + "end": "2022-06-16T11:31:31.758Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-16T11:31:31.758Z", + "end": "2022-06-16T13:27:46.641Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T13:27:46.641Z", + "end": "2022-06-16T15:24:01.524Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T15:24:01.524Z", + "end": "2022-06-16T17:20:16.407Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T17:20:16.407Z", + "end": "2022-06-16T19:16:31.290Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "636935635446628860", + "game": "512498684211232768", + "start": "2022-05-11T20:39:58.324Z", + "end": "2022-05-11T21:31:51.457Z", + "events": [ + { + "start": "2022-05-11T20:39:58.324Z", + "end": "2022-05-11T21:31:51.457Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "535384357536399404", + "start": "2022-05-04T08:56:09.867Z", + "end": "2022-05-04T17:07:23.468Z", + "events": [ + { + "start": "2022-05-04T08:56:09.867Z", + "end": "2022-05-04T13:01:46.667Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T13:01:46.667Z", + "end": "2022-05-04T17:07:23.467Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "512699108809637890", + "start": "2022-06-13T13:26:20.287Z", + "end": "2022-06-13T17:21:15.246Z", + "events": [ + { + "start": "2022-06-13T13:26:20.287Z", + "end": "2022-06-13T17:21:15.246Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "519644267212177418", + "start": "2022-06-19T01:35:43.349Z", + "end": "2022-06-19T05:22:36.162Z", + "events": [ + { + "start": "2022-06-19T01:35:43.349Z", + "end": "2022-06-19T05:22:36.162Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "523154344187789312", + "start": "2022-07-12T13:44:24.460Z", + "end": "2022-07-12T20:22:17.777Z", + "events": [ + { + "start": "2022-07-12T13:44:24.460Z", + "end": "2022-07-12T15:57:02.232Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T15:57:02.232Z", + "end": "2022-07-12T18:09:40.004Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T18:09:40.004Z", + "end": "2022-07-12T20:22:17.776Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "520453007578628124", + "start": "2022-05-30T13:30:10.455Z", + "end": "2022-05-30T23:08:12.668Z", + "events": [ + { + "start": "2022-05-30T13:30:10.455Z", + "end": "2022-05-30T18:19:11.561Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T18:19:11.561Z", + "end": "2022-05-30T23:08:12.667Z", + "state": "IDLE" + } + ] + }, + { + "user": "841397740041930984", + "game": "614380482620293151", + "start": "2022-05-28T15:11:19.193Z", + "end": "2022-05-28T19:51:57.652Z", + "events": [ + { + "start": "2022-05-28T15:11:19.193Z", + "end": "2022-05-28T16:44:52.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T16:44:52.012Z", + "end": "2022-05-28T18:18:24.831Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T18:18:24.831Z", + "end": "2022-05-28T19:51:57.650Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "700136079562375258", + "start": "2022-06-20T21:25:41.357Z", + "end": "2022-06-21T06:55:51.697Z", + "events": [ + { + "start": "2022-06-20T21:25:41.357Z", + "end": "2022-06-20T23:19:43.425Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T23:19:43.425Z", + "end": "2022-06-21T01:13:45.493Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T01:13:45.493Z", + "end": "2022-06-21T03:07:47.561Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T03:07:47.561Z", + "end": "2022-06-21T05:01:49.629Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T05:01:49.629Z", + "end": "2022-06-21T06:55:51.697Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "762163239408560283", + "game": "512699108809637890", + "start": "2022-05-29T07:12:48.630Z", + "end": "2022-05-29T10:15:38.088Z", + "events": [ + { + "start": "2022-05-29T07:12:48.630Z", + "end": "2022-05-29T07:49:22.521Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T07:49:22.521Z", + "end": "2022-05-29T08:25:56.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T08:25:56.412Z", + "end": "2022-05-29T09:02:30.303Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T09:02:30.303Z", + "end": "2022-05-29T09:39:04.194Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T09:39:04.194Z", + "end": "2022-05-29T10:15:38.085Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "540120593576493057", + "start": "2022-05-13T17:29:22.668Z", + "end": "2022-05-13T22:29:49.822Z", + "events": [ + { + "start": "2022-05-13T17:29:22.668Z", + "end": "2022-05-13T18:29:28.098Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-13T18:29:28.098Z", + "end": "2022-05-13T19:29:33.528Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-13T19:29:33.528Z", + "end": "2022-05-13T20:29:38.958Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-13T20:29:38.958Z", + "end": "2022-05-13T21:29:44.388Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-13T21:29:44.388Z", + "end": "2022-05-13T22:29:49.818Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "575412499399180288", + "start": "2022-05-26T23:31:42.938Z", + "end": "2022-05-27T09:15:39.891Z", + "events": [ + { + "start": "2022-05-26T23:31:42.938Z", + "end": "2022-05-27T01:57:42.176Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T01:57:42.176Z", + "end": "2022-05-27T04:23:41.414Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T04:23:41.414Z", + "end": "2022-05-27T06:49:40.652Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-27T06:49:40.652Z", + "end": "2022-05-27T09:15:39.890Z", + "state": "IDLE" + } + ] + }, + { + "user": "517335360477493827", + "game": "520453007578628124", + "start": "2022-05-04T15:29:02.997Z", + "end": "2022-05-04T21:49:15.420Z", + "events": [ + { + "start": "2022-05-04T15:29:02.997Z", + "end": "2022-05-04T18:39:09.208Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-04T18:39:09.208Z", + "end": "2022-05-04T21:49:15.419Z", + "state": "IDLE" + } + ] + }, + { + "user": "788818750251007268", + "game": "549512435585908756", + "start": "2022-05-24T18:07:15.257Z", + "end": "2022-05-24T21:27:02.903Z", + "events": [ + { + "start": "2022-05-24T18:07:15.257Z", + "end": "2022-05-24T18:57:12.168Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T18:57:12.168Z", + "end": "2022-05-24T19:47:09.079Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T19:47:09.079Z", + "end": "2022-05-24T20:37:05.990Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T20:37:05.990Z", + "end": "2022-05-24T21:27:02.901Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "123137660023366590", + "game": "592976500802846750", + "start": "2022-07-16T18:54:44.917Z", + "end": "2022-07-17T04:01:14.907Z", + "events": [ + { + "start": "2022-07-16T18:54:44.917Z", + "end": "2022-07-16T21:11:22.414Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-16T21:11:22.414Z", + "end": "2022-07-16T23:27:59.911Z", + "state": "IDLE" + }, + { + "start": "2022-07-16T23:27:59.911Z", + "end": "2022-07-17T01:44:37.408Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T01:44:37.408Z", + "end": "2022-07-17T04:01:14.905Z", + "state": "IDLE" + } + ] + }, + { + "user": "774637841058278398", + "game": "523154344187789312", + "start": "2022-06-01T05:39:11.882Z", + "end": "2022-06-01T08:58:40.019Z", + "events": [ + { + "start": "2022-06-01T05:39:11.882Z", + "end": "2022-06-01T07:18:55.950Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T07:18:55.950Z", + "end": "2022-06-01T08:58:40.018Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "512498684211232768", + "start": "2022-07-07T22:18:09.229Z", + "end": "2022-07-07T23:07:03.767Z", + "events": [ + { + "start": "2022-07-07T22:18:09.229Z", + "end": "2022-07-07T23:07:03.767Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "494763633796983404", + "game": "554573307161214977", + "start": "2022-04-28T08:43:48.064Z", + "end": "2022-04-28T13:10:39.037Z", + "events": [ + { + "start": "2022-04-28T08:43:48.064Z", + "end": "2022-04-28T13:10:39.037Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "126384926926158511", + "game": "554573307161214977", + "start": "2022-05-18T15:47:10.600Z", + "end": "2022-05-18T19:38:23.931Z", + "events": [ + { + "start": "2022-05-18T15:47:10.600Z", + "end": "2022-05-18T17:42:47.265Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T17:42:47.265Z", + "end": "2022-05-18T19:38:23.930Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "530454325214969866", + "start": "2022-07-26T10:36:01.746Z", + "end": "2022-07-26T18:56:21.064Z", + "events": [ + { + "start": "2022-07-26T10:36:01.746Z", + "end": "2022-07-26T18:56:21.064Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "565341641427124244", + "start": "2022-07-22T07:25:50.641Z", + "end": "2022-07-22T17:06:26.777Z", + "events": [ + { + "start": "2022-07-22T07:25:50.641Z", + "end": "2022-07-22T09:21:57.868Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T09:21:57.868Z", + "end": "2022-07-22T11:18:05.095Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T11:18:05.095Z", + "end": "2022-07-22T13:14:12.322Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T13:14:12.322Z", + "end": "2022-07-22T15:10:19.549Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T15:10:19.549Z", + "end": "2022-07-22T17:06:26.776Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "510690749854514547", + "game": "597860020935327787", + "start": "2022-07-13T20:42:25.877Z", + "end": "2022-07-14T01:28:04.971Z", + "events": [ + { + "start": "2022-07-13T20:42:25.877Z", + "end": "2022-07-13T21:53:50.650Z", + "state": "IDLE" + }, + { + "start": "2022-07-13T21:53:50.650Z", + "end": "2022-07-13T23:05:15.423Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-13T23:05:15.423Z", + "end": "2022-07-14T00:16:40.196Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-14T00:16:40.196Z", + "end": "2022-07-14T01:28:04.969Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "360264570671216445", + "game": "569008830701240340", + "start": "2022-06-26T03:52:43.069Z", + "end": "2022-06-26T05:42:00.770Z", + "events": [ + { + "start": "2022-06-26T03:52:43.069Z", + "end": "2022-06-26T04:14:34.609Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-26T04:14:34.609Z", + "end": "2022-06-26T04:36:26.149Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T04:36:26.149Z", + "end": "2022-06-26T04:58:17.689Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T04:58:17.689Z", + "end": "2022-06-26T05:20:09.229Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T05:20:09.229Z", + "end": "2022-06-26T05:42:00.769Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "518088627234930688", + "start": "2022-08-03T21:23:32.471Z", + "end": "2022-08-04T01:20:31.872Z", + "events": [ + { + "start": "2022-08-03T21:23:32.471Z", + "end": "2022-08-03T22:22:47.321Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T22:22:47.321Z", + "end": "2022-08-03T23:22:02.171Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T23:22:02.171Z", + "end": "2022-08-04T00:21:17.021Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T00:21:17.021Z", + "end": "2022-08-04T01:20:31.871Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "525940629729163286", + "game": "597860020935327787", + "start": "2022-05-20T08:45:11.523Z", + "end": "2022-05-20T15:14:43.416Z", + "events": [ + { + "start": "2022-05-20T08:45:11.523Z", + "end": "2022-05-20T10:55:02.154Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-20T10:55:02.154Z", + "end": "2022-05-20T13:04:52.785Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T13:04:52.785Z", + "end": "2022-05-20T15:14:43.416Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302714757313826277", + "game": "597588168178663434", + "start": "2022-06-24T17:19:34.323Z", + "end": "2022-06-24T18:48:19.268Z", + "events": [ + { + "start": "2022-06-24T17:19:34.323Z", + "end": "2022-06-24T18:48:19.268Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302679892350666678", + "game": "512498684211232768", + "start": "2022-04-26T12:26:36.256Z", + "end": "2022-04-26T13:45:50.070Z", + "events": [ + { + "start": "2022-04-26T12:26:36.256Z", + "end": "2022-04-26T12:46:24.709Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T12:46:24.709Z", + "end": "2022-04-26T13:06:13.162Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T13:06:13.162Z", + "end": "2022-04-26T13:26:01.615Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T13:26:01.615Z", + "end": "2022-04-26T13:45:50.068Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "636935635446628860", + "game": "576482762446602270", + "start": "2022-05-18T03:18:00.575Z", + "end": "2022-05-18T11:12:32.656Z", + "events": [ + { + "start": "2022-05-18T03:18:00.575Z", + "end": "2022-05-18T04:52:54.991Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-18T04:52:54.991Z", + "end": "2022-05-18T06:27:49.407Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T06:27:49.407Z", + "end": "2022-05-18T08:02:43.823Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T08:02:43.823Z", + "end": "2022-05-18T09:37:38.239Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T09:37:38.239Z", + "end": "2022-05-18T11:12:32.655Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "518088627234930688", + "start": "2022-08-02T04:28:33.547Z", + "end": "2022-08-02T10:19:34.288Z", + "events": [ + { + "start": "2022-08-02T04:28:33.547Z", + "end": "2022-08-02T07:24:03.917Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T07:24:03.917Z", + "end": "2022-08-02T10:19:34.287Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "540120593576493057", + "start": "2022-06-25T16:35:47.660Z", + "end": "2022-06-25T23:17:26.041Z", + "events": [ + { + "start": "2022-06-25T16:35:47.660Z", + "end": "2022-06-25T17:56:07.336Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T17:56:07.336Z", + "end": "2022-06-25T19:16:27.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T19:16:27.012Z", + "end": "2022-06-25T20:36:46.688Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T20:36:46.688Z", + "end": "2022-06-25T21:57:06.364Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T21:57:06.364Z", + "end": "2022-06-25T23:17:26.040Z", + "state": "IDLE" + } + ] + }, + { + "user": "495724335127362694", + "game": "553697181249437716", + "start": "2022-05-09T16:19:57.247Z", + "end": "2022-05-09T17:01:07.628Z", + "events": [ + { + "start": "2022-05-09T16:19:57.247Z", + "end": "2022-05-09T16:30:14.842Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T16:30:14.842Z", + "end": "2022-05-09T16:40:32.437Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T16:40:32.437Z", + "end": "2022-05-09T16:50:50.032Z", + "state": "IDLE" + }, + { + "start": "2022-05-09T16:50:50.032Z", + "end": "2022-05-09T17:01:07.627Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "731522398939920723", + "game": "542474758835535872", + "start": "2022-06-28T09:35:20.855Z", + "end": "2022-06-28T14:13:50.417Z", + "events": [ + { + "start": "2022-06-28T09:35:20.855Z", + "end": "2022-06-28T10:44:58.245Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T10:44:58.245Z", + "end": "2022-06-28T11:54:35.635Z", + "state": "IDLE" + }, + { + "start": "2022-06-28T11:54:35.635Z", + "end": "2022-06-28T13:04:13.025Z", + "state": "IDLE" + }, + { + "start": "2022-06-28T13:04:13.025Z", + "end": "2022-06-28T14:13:50.415Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "495724335127362694", + "game": "512699108809637890", + "start": "2022-08-02T18:32:54.672Z", + "end": "2022-08-02T18:34:05.613Z", + "events": [ + { + "start": "2022-08-02T18:32:54.672Z", + "end": "2022-08-02T18:33:18.319Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T18:33:18.319Z", + "end": "2022-08-02T18:33:41.966Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T18:33:41.966Z", + "end": "2022-08-02T18:34:05.613Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "565341641427124244", + "start": "2022-06-09T19:19:17.671Z", + "end": "2022-06-10T03:18:51.879Z", + "events": [ + { + "start": "2022-06-09T19:19:17.671Z", + "end": "2022-06-09T21:19:11.223Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-09T21:19:11.223Z", + "end": "2022-06-09T23:19:04.775Z", + "state": "IDLE" + }, + { + "start": "2022-06-09T23:19:04.775Z", + "end": "2022-06-10T01:18:58.327Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-10T01:18:58.327Z", + "end": "2022-06-10T03:18:51.879Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "575412499399180288", + "start": "2022-07-17T12:22:20.687Z", + "end": "2022-07-17T16:34:35.357Z", + "events": [ + { + "start": "2022-07-17T12:22:20.687Z", + "end": "2022-07-17T13:25:24.354Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T13:25:24.354Z", + "end": "2022-07-17T14:28:28.021Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-17T14:28:28.021Z", + "end": "2022-07-17T15:31:31.688Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-17T15:31:31.688Z", + "end": "2022-07-17T16:34:35.355Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "541104083732114799", + "game": "512789343157485602", + "start": "2022-06-01T01:03:40.832Z", + "end": "2022-06-01T04:04:57.178Z", + "events": [ + { + "start": "2022-06-01T01:03:40.832Z", + "end": "2022-06-01T02:04:06.280Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T02:04:06.280Z", + "end": "2022-06-01T03:04:31.728Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-01T03:04:31.728Z", + "end": "2022-06-01T04:04:57.176Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "713444659295913502", + "game": "614448244260339712", + "start": "2022-04-28T01:09:54.771Z", + "end": "2022-04-28T02:28:18.745Z", + "events": [ + { + "start": "2022-04-28T01:09:54.771Z", + "end": "2022-04-28T01:25:35.565Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T01:25:35.565Z", + "end": "2022-04-28T01:41:16.359Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T01:41:16.359Z", + "end": "2022-04-28T01:56:57.153Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T01:56:57.153Z", + "end": "2022-04-28T02:12:37.947Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-28T02:12:37.947Z", + "end": "2022-04-28T02:28:18.741Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "553697181249437716", + "start": "2022-05-12T21:39:52.310Z", + "end": "2022-05-13T00:05:30.066Z", + "events": [ + { + "start": "2022-05-12T21:39:52.310Z", + "end": "2022-05-13T00:05:30.066Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "430732724825949756", + "game": "554921822626381879", + "start": "2022-04-14T00:50:06.509Z", + "end": "2022-04-14T02:32:10.715Z", + "events": [ + { + "start": "2022-04-14T00:50:06.509Z", + "end": "2022-04-14T01:10:31.350Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T01:10:31.350Z", + "end": "2022-04-14T01:30:56.191Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T01:30:56.191Z", + "end": "2022-04-14T01:51:21.032Z", + "state": "IDLE" + }, + { + "start": "2022-04-14T01:51:21.032Z", + "end": "2022-04-14T02:11:45.873Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T02:11:45.873Z", + "end": "2022-04-14T02:32:10.714Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "576482762446602270", + "start": "2022-07-21T04:11:13.700Z", + "end": "2022-07-21T10:55:32.531Z", + "events": [ + { + "start": "2022-07-21T04:11:13.700Z", + "end": "2022-07-21T10:55:32.531Z", + "state": "IDLE" + } + ] + }, + { + "user": "302714757313826277", + "game": "520453007578628124", + "start": "2022-08-06T15:54:21.630Z", + "end": "2022-08-06T17:31:44.696Z", + "events": [ + { + "start": "2022-08-06T15:54:21.630Z", + "end": "2022-08-06T16:43:03.163Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T16:43:03.163Z", + "end": "2022-08-06T17:31:44.696Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "900234800332446962", + "game": "588739017718366208", + "start": "2022-06-06T09:52:50.641Z", + "end": "2022-06-06T15:37:45.149Z", + "events": [ + { + "start": "2022-06-06T09:52:50.641Z", + "end": "2022-06-06T15:37:45.149Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "264503060524837708", + "game": "508057374875975682", + "start": "2022-04-17T14:41:50.052Z", + "end": "2022-04-17T16:18:41.991Z", + "events": [ + { + "start": "2022-04-17T14:41:50.052Z", + "end": "2022-04-17T15:14:07.365Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T15:14:07.365Z", + "end": "2022-04-17T15:46:24.678Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T15:46:24.678Z", + "end": "2022-04-17T16:18:41.991Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "268139232276871676", + "game": "550277544025522176", + "start": "2022-05-08T00:47:11.663Z", + "end": "2022-05-08T03:52:00.696Z", + "events": [ + { + "start": "2022-05-08T00:47:11.663Z", + "end": "2022-05-08T02:19:36.179Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T02:19:36.179Z", + "end": "2022-05-08T03:52:00.695Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "623295654897148670", + "game": "614380482620293151", + "start": "2022-07-17T12:08:00.459Z", + "end": "2022-07-17T16:05:29.437Z", + "events": [ + { + "start": "2022-07-17T12:08:00.459Z", + "end": "2022-07-17T14:06:44.948Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T14:06:44.948Z", + "end": "2022-07-17T16:05:29.437Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "715446191320920764", + "game": "558547388583772201", + "start": "2022-05-21T02:28:56.833Z", + "end": "2022-05-21T03:16:16.034Z", + "events": [ + { + "start": "2022-05-21T02:28:56.833Z", + "end": "2022-05-21T02:40:46.633Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T02:40:46.633Z", + "end": "2022-05-21T02:52:36.433Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T02:52:36.433Z", + "end": "2022-05-21T03:04:26.233Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T03:04:26.233Z", + "end": "2022-05-21T03:16:16.033Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "198010595767135394", + "game": "542474758835535872", + "start": "2022-06-15T04:36:05.509Z", + "end": "2022-06-15T08:50:02.391Z", + "events": [ + { + "start": "2022-06-15T04:36:05.509Z", + "end": "2022-06-15T06:00:44.469Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T06:00:44.469Z", + "end": "2022-06-15T07:25:23.429Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T07:25:23.429Z", + "end": "2022-06-15T08:50:02.389Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "841397740041930984", + "game": "520453007578628124", + "start": "2022-07-22T05:23:59.446Z", + "end": "2022-07-22T12:32:10.041Z", + "events": [ + { + "start": "2022-07-22T05:23:59.446Z", + "end": "2022-07-22T12:32:10.041Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "597588168178663434", + "start": "2022-07-05T11:05:17.304Z", + "end": "2022-07-05T13:18:19.122Z", + "events": [ + { + "start": "2022-07-05T11:05:17.304Z", + "end": "2022-07-05T11:49:37.910Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-05T11:49:37.910Z", + "end": "2022-07-05T12:33:58.516Z", + "state": "IDLE" + }, + { + "start": "2022-07-05T12:33:58.516Z", + "end": "2022-07-05T13:18:19.122Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "554921822626381879", + "start": "2022-05-03T16:40:51.956Z", + "end": "2022-05-03T21:17:40.326Z", + "events": [ + { + "start": "2022-05-03T16:40:51.956Z", + "end": "2022-05-03T17:50:04.048Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T17:50:04.048Z", + "end": "2022-05-03T18:59:16.140Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T18:59:16.140Z", + "end": "2022-05-03T20:08:28.232Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-03T20:08:28.232Z", + "end": "2022-05-03T21:17:40.324Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "268139232276871676", + "game": "520462578061803588", + "start": "2022-04-21T08:04:42.589Z", + "end": "2022-04-21T11:59:07.553Z", + "events": [ + { + "start": "2022-04-21T08:04:42.589Z", + "end": "2022-04-21T11:59:07.553Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "614380482620293151", + "start": "2022-05-17T19:13:19.234Z", + "end": "2022-05-18T04:30:26.819Z", + "events": [ + { + "start": "2022-05-17T19:13:19.234Z", + "end": "2022-05-17T21:32:36.130Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T21:32:36.130Z", + "end": "2022-05-17T23:51:53.026Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-17T23:51:53.026Z", + "end": "2022-05-18T02:11:09.922Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T02:11:09.922Z", + "end": "2022-05-18T04:30:26.818Z", + "state": "IDLE" + } + ] + }, + { + "user": "565021137482980984", + "game": "550277544025522176", + "start": "2022-05-04T04:09:54.439Z", + "end": "2022-05-04T10:54:54.806Z", + "events": [ + { + "start": "2022-05-04T04:09:54.439Z", + "end": "2022-05-04T05:30:54.512Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T05:30:54.512Z", + "end": "2022-05-04T06:51:54.585Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T06:51:54.585Z", + "end": "2022-05-04T08:12:54.658Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T08:12:54.658Z", + "end": "2022-05-04T09:33:54.731Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T09:33:54.731Z", + "end": "2022-05-04T10:54:54.804Z", + "state": "IDLE" + } + ] + }, + { + "user": "565021137482980984", + "game": "558547388583772201", + "start": "2022-06-21T22:28:12.330Z", + "end": "2022-06-22T07:27:53.121Z", + "events": [ + { + "start": "2022-06-21T22:28:12.330Z", + "end": "2022-06-22T01:28:05.927Z", + "state": "IDLE" + }, + { + "start": "2022-06-22T01:28:05.927Z", + "end": "2022-06-22T04:27:59.524Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T04:27:59.524Z", + "end": "2022-06-22T07:27:53.121Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "541104083732114799", + "game": "550277544025522176", + "start": "2022-06-04T13:57:43.523Z", + "end": "2022-06-04T21:36:47.414Z", + "events": [ + { + "start": "2022-06-04T13:57:43.523Z", + "end": "2022-06-04T15:52:29.495Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T15:52:29.495Z", + "end": "2022-06-04T17:47:15.467Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T17:47:15.467Z", + "end": "2022-06-04T19:42:01.439Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T19:42:01.439Z", + "end": "2022-06-04T21:36:47.411Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "569253958967885828", + "start": "2022-07-02T10:09:32.376Z", + "end": "2022-07-02T14:57:39.108Z", + "events": [ + { + "start": "2022-07-02T10:09:32.376Z", + "end": "2022-07-02T11:45:34.620Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T11:45:34.620Z", + "end": "2022-07-02T13:21:36.864Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T13:21:36.864Z", + "end": "2022-07-02T14:57:39.108Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "542075586886107149", + "start": "2022-05-30T02:55:17.658Z", + "end": "2022-05-30T06:19:16.997Z", + "events": [ + { + "start": "2022-05-30T02:55:17.658Z", + "end": "2022-05-30T03:36:05.525Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T03:36:05.525Z", + "end": "2022-05-30T04:16:53.392Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T04:16:53.392Z", + "end": "2022-05-30T04:57:41.259Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T04:57:41.259Z", + "end": "2022-05-30T05:38:29.126Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T05:38:29.126Z", + "end": "2022-05-30T06:19:16.993Z", + "state": "IDLE" + } + ] + }, + { + "user": "725502702868293700", + "game": "535869836748783616", + "start": "2022-06-30T00:39:15.359Z", + "end": "2022-06-30T01:48:36.741Z", + "events": [ + { + "start": "2022-06-30T00:39:15.359Z", + "end": "2022-06-30T01:48:36.741Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "519644368735567873", + "start": "2022-04-30T17:06:54.937Z", + "end": "2022-04-30T21:42:32.024Z", + "events": [ + { + "start": "2022-04-30T17:06:54.937Z", + "end": "2022-04-30T21:42:32.024Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302714757313826277", + "game": "512498684211232768", + "start": "2022-07-10T09:14:04.061Z", + "end": "2022-07-10T15:26:04.246Z", + "events": [ + { + "start": "2022-07-10T09:14:04.061Z", + "end": "2022-07-10T10:28:28.098Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T10:28:28.098Z", + "end": "2022-07-10T11:42:52.135Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T11:42:52.135Z", + "end": "2022-07-10T12:57:16.172Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-10T12:57:16.172Z", + "end": "2022-07-10T14:11:40.209Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T14:11:40.209Z", + "end": "2022-07-10T15:26:04.246Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "553697181249437716", + "start": "2022-05-24T18:29:01.184Z", + "end": "2022-05-24T22:45:52.940Z", + "events": [ + { + "start": "2022-05-24T18:29:01.184Z", + "end": "2022-05-24T22:45:52.940Z", + "state": "IDLE" + } + ] + }, + { + "user": "268139232276871676", + "game": "511619499053678668", + "start": "2022-05-24T06:42:09.475Z", + "end": "2022-05-24T10:50:03.598Z", + "events": [ + { + "start": "2022-05-24T06:42:09.475Z", + "end": "2022-05-24T08:04:47.516Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T08:04:47.516Z", + "end": "2022-05-24T09:27:25.557Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T09:27:25.557Z", + "end": "2022-05-24T10:50:03.598Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "535384357536399404", + "start": "2022-04-17T07:11:41.586Z", + "end": "2022-04-17T10:36:59.896Z", + "events": [ + { + "start": "2022-04-17T07:11:41.586Z", + "end": "2022-04-17T08:20:07.689Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T08:20:07.689Z", + "end": "2022-04-17T09:28:33.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T09:28:33.792Z", + "end": "2022-04-17T10:36:59.895Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "600708263053781983", + "game": "614380482620293151", + "start": "2022-06-13T08:31:24.486Z", + "end": "2022-06-13T17:10:05.484Z", + "events": [ + { + "start": "2022-06-13T08:31:24.486Z", + "end": "2022-06-13T17:10:05.484Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "519644267212177418", + "start": "2022-06-17T14:57:33.914Z", + "end": "2022-06-17T17:04:31.990Z", + "events": [ + { + "start": "2022-06-17T14:57:33.914Z", + "end": "2022-06-17T17:04:31.990Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "356875221078245376", + "start": "2022-08-01T14:59:50.962Z", + "end": "2022-08-01T17:26:15.766Z", + "events": [ + { + "start": "2022-08-01T14:59:50.962Z", + "end": "2022-08-01T15:36:27.163Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T15:36:27.163Z", + "end": "2022-08-01T16:13:03.364Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T16:13:03.364Z", + "end": "2022-08-01T16:49:39.565Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-01T16:49:39.565Z", + "end": "2022-08-01T17:26:15.766Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "608700383891121851", + "game": "554573307161214977", + "start": "2022-07-23T19:37:56.758Z", + "end": "2022-07-24T05:12:00.806Z", + "events": [ + { + "start": "2022-07-23T19:37:56.758Z", + "end": "2022-07-24T00:24:58.782Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-24T00:24:58.782Z", + "end": "2022-07-24T05:12:00.806Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "526489929631531009", + "start": "2022-07-20T02:02:37.698Z", + "end": "2022-07-20T07:49:20.876Z", + "events": [ + { + "start": "2022-07-20T02:02:37.698Z", + "end": "2022-07-20T03:29:18.492Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T03:29:18.492Z", + "end": "2022-07-20T04:55:59.286Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T04:55:59.286Z", + "end": "2022-07-20T06:22:40.080Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T06:22:40.080Z", + "end": "2022-07-20T07:49:20.874Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "264503060524837708", + "game": "518088627234930688", + "start": "2022-06-16T08:28:52.388Z", + "end": "2022-06-16T15:02:40.735Z", + "events": [ + { + "start": "2022-06-16T08:28:52.388Z", + "end": "2022-06-16T15:02:40.735Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "576482762446602270", + "start": "2022-06-26T16:01:01.017Z", + "end": "2022-06-26T23:59:58.714Z", + "events": [ + { + "start": "2022-06-26T16:01:01.017Z", + "end": "2022-06-26T18:00:45.441Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T18:00:45.441Z", + "end": "2022-06-26T20:00:29.865Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T20:00:29.865Z", + "end": "2022-06-26T22:00:14.289Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T22:00:14.289Z", + "end": "2022-06-26T23:59:58.713Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "520462578061803588", + "start": "2022-05-03T16:02:28.429Z", + "end": "2022-05-03T16:18:14.827Z", + "events": [ + { + "start": "2022-05-03T16:02:28.429Z", + "end": "2022-05-03T16:05:37.708Z", + "state": "IDLE" + }, + { + "start": "2022-05-03T16:05:37.708Z", + "end": "2022-05-03T16:08:46.987Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T16:08:46.987Z", + "end": "2022-05-03T16:11:56.266Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T16:11:56.266Z", + "end": "2022-05-03T16:15:05.545Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T16:15:05.545Z", + "end": "2022-05-03T16:18:14.824Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "715446191320920764", + "game": "614380482620293151", + "start": "2022-05-31T19:48:20.053Z", + "end": "2022-06-01T05:12:22.823Z", + "events": [ + { + "start": "2022-05-31T19:48:20.053Z", + "end": "2022-05-31T21:41:08.607Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T21:41:08.607Z", + "end": "2022-05-31T23:33:57.161Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T23:33:57.161Z", + "end": "2022-06-01T01:26:45.715Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T01:26:45.715Z", + "end": "2022-06-01T03:19:34.269Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T03:19:34.269Z", + "end": "2022-06-01T05:12:22.823Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "958598056500699208", + "game": "512699108809637890", + "start": "2022-04-27T14:49:53.454Z", + "end": "2022-04-27T18:42:35.662Z", + "events": [ + { + "start": "2022-04-27T14:49:53.454Z", + "end": "2022-04-27T18:42:35.662Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "453350270016457959", + "game": "550277544025522176", + "start": "2022-07-19T06:32:33.464Z", + "end": "2022-07-19T09:08:44.041Z", + "events": [ + { + "start": "2022-07-19T06:32:33.464Z", + "end": "2022-07-19T07:50:38.752Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T07:50:38.752Z", + "end": "2022-07-19T09:08:44.040Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "360264570671216445", + "game": "614380482620293151", + "start": "2022-06-17T18:18:19.939Z", + "end": "2022-06-17T21:55:36.405Z", + "events": [ + { + "start": "2022-06-17T18:18:19.939Z", + "end": "2022-06-17T19:01:47.232Z", + "state": "IDLE" + }, + { + "start": "2022-06-17T19:01:47.232Z", + "end": "2022-06-17T19:45:14.525Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T19:45:14.525Z", + "end": "2022-06-17T20:28:41.818Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T20:28:41.818Z", + "end": "2022-06-17T21:12:09.111Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-17T21:12:09.111Z", + "end": "2022-06-17T21:55:36.404Z", + "state": "IDLE" + } + ] + }, + { + "user": "494763633796983404", + "game": "535869836748783616", + "start": "2022-07-17T14:17:53.419Z", + "end": "2022-07-17T14:40:07.962Z", + "events": [ + { + "start": "2022-07-17T14:17:53.419Z", + "end": "2022-07-17T14:23:27.054Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T14:23:27.054Z", + "end": "2022-07-17T14:29:00.689Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T14:29:00.689Z", + "end": "2022-07-17T14:34:34.324Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T14:34:34.324Z", + "end": "2022-07-17T14:40:07.959Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "355708392202112685", + "game": "550277544025522176", + "start": "2022-06-06T11:07:38.689Z", + "end": "2022-06-06T17:53:18.452Z", + "events": [ + { + "start": "2022-06-06T11:07:38.689Z", + "end": "2022-06-06T13:22:51.943Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T13:22:51.943Z", + "end": "2022-06-06T15:38:05.197Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T15:38:05.197Z", + "end": "2022-06-06T17:53:18.451Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "520462578061803588", + "start": "2022-04-21T09:24:24.353Z", + "end": "2022-04-21T10:58:18.598Z", + "events": [ + { + "start": "2022-04-21T09:24:24.353Z", + "end": "2022-04-21T09:47:52.914Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T09:47:52.914Z", + "end": "2022-04-21T10:11:21.475Z", + "state": "IDLE" + }, + { + "start": "2022-04-21T10:11:21.475Z", + "end": "2022-04-21T10:34:50.036Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T10:34:50.036Z", + "end": "2022-04-21T10:58:18.597Z", + "state": "IDLE" + } + ] + }, + { + "user": "302714757313826277", + "game": "512501896896970762", + "start": "2022-07-02T23:40:27.289Z", + "end": "2022-07-03T00:03:03.200Z", + "events": [ + { + "start": "2022-07-02T23:40:27.289Z", + "end": "2022-07-02T23:46:06.266Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T23:46:06.266Z", + "end": "2022-07-02T23:51:45.243Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T23:51:45.243Z", + "end": "2022-07-02T23:57:24.220Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T23:57:24.220Z", + "end": "2022-07-03T00:03:03.197Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "625617695768437507", + "game": "523154344187789312", + "start": "2022-05-27T14:11:43.342Z", + "end": "2022-05-27T21:28:50.929Z", + "events": [ + { + "start": "2022-05-27T14:11:43.342Z", + "end": "2022-05-27T21:28:50.929Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "512498684211232768", + "start": "2022-05-15T09:22:20.607Z", + "end": "2022-05-15T12:47:15.747Z", + "events": [ + { + "start": "2022-05-15T09:22:20.607Z", + "end": "2022-05-15T10:30:38.987Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T10:30:38.987Z", + "end": "2022-05-15T11:38:57.367Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T11:38:57.367Z", + "end": "2022-05-15T12:47:15.747Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "614448244260339712", + "start": "2022-04-26T14:32:03.237Z", + "end": "2022-04-27T00:22:49.253Z", + "events": [ + { + "start": "2022-04-26T14:32:03.237Z", + "end": "2022-04-26T17:48:58.575Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T17:48:58.575Z", + "end": "2022-04-26T21:05:53.913Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T21:05:53.913Z", + "end": "2022-04-27T00:22:49.251Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "538658792298239054", + "game": "572456126872944651", + "start": "2022-08-04T08:23:28.341Z", + "end": "2022-08-04T09:42:13.444Z", + "events": [ + { + "start": "2022-08-04T08:23:28.341Z", + "end": "2022-08-04T08:39:13.361Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-04T08:39:13.361Z", + "end": "2022-08-04T08:54:58.381Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T08:54:58.381Z", + "end": "2022-08-04T09:10:43.401Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T09:10:43.401Z", + "end": "2022-08-04T09:26:28.421Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T09:26:28.421Z", + "end": "2022-08-04T09:42:13.441Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "614380482620293151", + "start": "2022-04-27T05:09:48.762Z", + "end": "2022-04-27T11:40:19.273Z", + "events": [ + { + "start": "2022-04-27T05:09:48.762Z", + "end": "2022-04-27T06:27:54.864Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T06:27:54.864Z", + "end": "2022-04-27T07:46:00.966Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T07:46:00.966Z", + "end": "2022-04-27T09:04:07.068Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T09:04:07.068Z", + "end": "2022-04-27T10:22:13.170Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T10:22:13.170Z", + "end": "2022-04-27T11:40:19.272Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "938976307338486810", + "game": "576482762446602270", + "start": "2022-07-07T02:17:51.351Z", + "end": "2022-07-07T09:04:02.710Z", + "events": [ + { + "start": "2022-07-07T02:17:51.351Z", + "end": "2022-07-07T04:33:15.137Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T04:33:15.137Z", + "end": "2022-07-07T06:48:38.923Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T06:48:38.923Z", + "end": "2022-07-07T09:04:02.709Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "153631479524744694", + "game": "554573307161214977", + "start": "2022-04-30T04:30:27.983Z", + "end": "2022-04-30T05:51:20.691Z", + "events": [ + { + "start": "2022-04-30T04:30:27.983Z", + "end": "2022-04-30T05:51:20.691Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "355708392202112685", + "game": "518088627234930688", + "start": "2022-06-22T08:28:23.817Z", + "end": "2022-06-22T16:34:04.182Z", + "events": [ + { + "start": "2022-06-22T08:28:23.817Z", + "end": "2022-06-22T16:34:04.182Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "517335360477493827", + "game": "512789343157485602", + "start": "2022-06-01T12:32:24.927Z", + "end": "2022-06-01T17:40:30.266Z", + "events": [ + { + "start": "2022-06-01T12:32:24.927Z", + "end": "2022-06-01T17:40:30.266Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "572456126872944651", + "start": "2022-05-30T03:12:56.572Z", + "end": "2022-05-30T10:12:03.031Z", + "events": [ + { + "start": "2022-05-30T03:12:56.572Z", + "end": "2022-05-30T04:36:45.863Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T04:36:45.863Z", + "end": "2022-05-30T06:00:35.154Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T06:00:35.154Z", + "end": "2022-05-30T07:24:24.445Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T07:24:24.445Z", + "end": "2022-05-30T08:48:13.736Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T08:48:13.736Z", + "end": "2022-05-30T10:12:03.027Z", + "state": "IDLE" + } + ] + }, + { + "user": "878082205985098233", + "game": "592976500802846750", + "start": "2022-07-08T14:38:49.334Z", + "end": "2022-07-08T21:31:32.801Z", + "events": [ + { + "start": "2022-07-08T14:38:49.334Z", + "end": "2022-07-08T16:01:22.027Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T16:01:22.027Z", + "end": "2022-07-08T17:23:54.720Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T17:23:54.720Z", + "end": "2022-07-08T18:46:27.413Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T18:46:27.413Z", + "end": "2022-07-08T20:09:00.106Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T20:09:00.106Z", + "end": "2022-07-08T21:31:32.799Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "592976500802846750", + "start": "2022-06-06T03:40:14.060Z", + "end": "2022-06-06T10:07:52.372Z", + "events": [ + { + "start": "2022-06-06T03:40:14.060Z", + "end": "2022-06-06T10:07:52.372Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "560781100197216267", + "start": "2022-07-15T04:52:28.386Z", + "end": "2022-07-15T10:27:49.721Z", + "events": [ + { + "start": "2022-07-15T04:52:28.386Z", + "end": "2022-07-15T07:40:09.053Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T07:40:09.053Z", + "end": "2022-07-15T10:27:49.720Z", + "state": "IDLE" + } + ] + }, + { + "user": "878082205985098233", + "game": "514228311661084682", + "start": "2022-07-23T12:14:10.840Z", + "end": "2022-07-23T15:07:49.139Z", + "events": [ + { + "start": "2022-07-23T12:14:10.840Z", + "end": "2022-07-23T13:12:03.606Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T13:12:03.606Z", + "end": "2022-07-23T14:09:56.372Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T14:09:56.372Z", + "end": "2022-07-23T15:07:49.138Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "542075586886107149", + "start": "2022-06-23T18:20:48.593Z", + "end": "2022-06-23T21:44:02.645Z", + "events": [ + { + "start": "2022-06-23T18:20:48.593Z", + "end": "2022-06-23T19:11:37.106Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T19:11:37.106Z", + "end": "2022-06-23T20:02:25.619Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T20:02:25.619Z", + "end": "2022-06-23T20:53:14.132Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T20:53:14.132Z", + "end": "2022-06-23T21:44:02.645Z", + "state": "IDLE" + } + ] + }, + { + "user": "791267126190249625", + "game": "512498684211232768", + "start": "2022-07-09T06:38:33.122Z", + "end": "2022-07-09T11:59:48.587Z", + "events": [ + { + "start": "2022-07-09T06:38:33.122Z", + "end": "2022-07-09T07:58:51.988Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T07:58:51.988Z", + "end": "2022-07-09T09:19:10.854Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T09:19:10.854Z", + "end": "2022-07-09T10:39:29.720Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T10:39:29.720Z", + "end": "2022-07-09T11:59:48.586Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "713444659295913502", + "game": "512498684211232768", + "start": "2022-04-19T21:25:59.242Z", + "end": "2022-04-20T00:37:22.287Z", + "events": [ + { + "start": "2022-04-19T21:25:59.242Z", + "end": "2022-04-19T22:13:50.003Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T22:13:50.003Z", + "end": "2022-04-19T23:01:40.764Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T23:01:40.764Z", + "end": "2022-04-19T23:49:31.525Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T23:49:31.525Z", + "end": "2022-04-20T00:37:22.286Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "521842831262875670", + "start": "2022-06-14T19:02:07.364Z", + "end": "2022-06-14T21:45:00.744Z", + "events": [ + { + "start": "2022-06-14T19:02:07.364Z", + "end": "2022-06-14T21:45:00.744Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "576482762446602270", + "start": "2022-06-04T03:29:47.351Z", + "end": "2022-06-04T11:20:02.790Z", + "events": [ + { + "start": "2022-06-04T03:29:47.351Z", + "end": "2022-06-04T06:06:32.497Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T06:06:32.497Z", + "end": "2022-06-04T08:43:17.643Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T08:43:17.643Z", + "end": "2022-06-04T11:20:02.789Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "623295654897148670", + "game": "535371564850479134", + "start": "2022-07-24T18:30:36.210Z", + "end": "2022-07-24T21:09:27.554Z", + "events": [ + { + "start": "2022-07-24T18:30:36.210Z", + "end": "2022-07-24T19:23:33.324Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T19:23:33.324Z", + "end": "2022-07-24T20:16:30.438Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T20:16:30.438Z", + "end": "2022-07-24T21:09:27.552Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "510199020782747732", + "start": "2022-04-25T04:44:47.806Z", + "end": "2022-04-25T12:13:41.672Z", + "events": [ + { + "start": "2022-04-25T04:44:47.806Z", + "end": "2022-04-25T12:13:41.672Z", + "state": "IDLE" + } + ] + }, + { + "user": "538658792298239054", + "game": "592976500802846750", + "start": "2022-07-11T17:37:29.240Z", + "end": "2022-07-11T18:36:33.287Z", + "events": [ + { + "start": "2022-07-11T17:37:29.240Z", + "end": "2022-07-11T17:49:18.049Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T17:49:18.049Z", + "end": "2022-07-11T18:01:06.858Z", + "state": "IDLE" + }, + { + "start": "2022-07-11T18:01:06.858Z", + "end": "2022-07-11T18:12:55.667Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T18:12:55.667Z", + "end": "2022-07-11T18:24:44.476Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T18:24:44.476Z", + "end": "2022-07-11T18:36:33.285Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "584489284152985092", + "game": "560781100197216267", + "start": "2022-06-05T22:15:10.661Z", + "end": "2022-06-06T04:20:42.034Z", + "events": [ + { + "start": "2022-06-05T22:15:10.661Z", + "end": "2022-06-06T04:20:42.034Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "444246898747584433", + "game": "542474758835535872", + "start": "2022-07-30T19:46:20.109Z", + "end": "2022-07-31T03:09:13.790Z", + "events": [ + { + "start": "2022-07-30T19:46:20.109Z", + "end": "2022-07-30T22:13:58.002Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T22:13:58.002Z", + "end": "2022-07-31T00:41:35.895Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T00:41:35.895Z", + "end": "2022-07-31T03:09:13.788Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "463820732483181525", + "game": "535384357536399404", + "start": "2022-04-25T09:25:35.500Z", + "end": "2022-04-25T18:49:38.962Z", + "events": [ + { + "start": "2022-04-25T09:25:35.500Z", + "end": "2022-04-25T18:49:38.962Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "131482253203487270", + "game": "512789427462995988", + "start": "2022-04-22T16:21:59.911Z", + "end": "2022-04-22T23:33:51.713Z", + "events": [ + { + "start": "2022-04-22T16:21:59.911Z", + "end": "2022-04-22T17:48:22.271Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T17:48:22.271Z", + "end": "2022-04-22T19:14:44.631Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T19:14:44.631Z", + "end": "2022-04-22T20:41:06.991Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T20:41:06.991Z", + "end": "2022-04-22T22:07:29.351Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T22:07:29.351Z", + "end": "2022-04-22T23:33:51.711Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "575412499399180288", + "start": "2022-05-10T07:18:13.811Z", + "end": "2022-05-10T15:17:13.334Z", + "events": [ + { + "start": "2022-05-10T07:18:13.811Z", + "end": "2022-05-10T09:57:53.652Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T09:57:53.652Z", + "end": "2022-05-10T12:37:33.493Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T12:37:33.493Z", + "end": "2022-05-10T15:17:13.334Z", + "state": "IDLE" + } + ] + }, + { + "user": "182925797752958092", + "game": "356875221078245376", + "start": "2022-07-29T04:36:50.357Z", + "end": "2022-07-29T10:28:02.507Z", + "events": [ + { + "start": "2022-07-29T04:36:50.357Z", + "end": "2022-07-29T10:28:02.507Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "878082205985098233", + "game": "518088627234930688", + "start": "2022-07-03T21:15:55.693Z", + "end": "2022-07-04T06:33:00.776Z", + "events": [ + { + "start": "2022-07-03T21:15:55.693Z", + "end": "2022-07-04T00:21:37.387Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-04T00:21:37.387Z", + "end": "2022-07-04T03:27:19.081Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T03:27:19.081Z", + "end": "2022-07-04T06:33:00.775Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "467658810442648809", + "game": "512789120234422301", + "start": "2022-05-24T13:31:28.741Z", + "end": "2022-05-24T23:02:01.354Z", + "events": [ + { + "start": "2022-05-24T13:31:28.741Z", + "end": "2022-05-24T18:16:45.047Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T18:16:45.047Z", + "end": "2022-05-24T23:02:01.353Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "512789343157485602", + "start": "2022-05-02T00:21:56.301Z", + "end": "2022-05-02T04:17:54.250Z", + "events": [ + { + "start": "2022-05-02T00:21:56.301Z", + "end": "2022-05-02T01:20:55.788Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T01:20:55.788Z", + "end": "2022-05-02T02:19:55.275Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T02:19:55.275Z", + "end": "2022-05-02T03:18:54.762Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T03:18:54.762Z", + "end": "2022-05-02T04:17:54.249Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "530454325214969866", + "start": "2022-04-23T01:50:41.894Z", + "end": "2022-04-23T03:19:50.026Z", + "events": [ + { + "start": "2022-04-23T01:50:41.894Z", + "end": "2022-04-23T02:35:15.960Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T02:35:15.960Z", + "end": "2022-04-23T03:19:50.026Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "137536289023624121", + "game": "569008830701240340", + "start": "2022-04-24T08:57:56.302Z", + "end": "2022-04-24T09:08:15.050Z", + "events": [ + { + "start": "2022-04-24T08:57:56.302Z", + "end": "2022-04-24T09:08:15.050Z", + "state": "IDLE" + } + ] + }, + { + "user": "346608907417001845", + "game": "510199020782747732", + "start": "2022-05-07T22:49:52.451Z", + "end": "2022-05-08T08:28:09.394Z", + "events": [ + { + "start": "2022-05-07T22:49:52.451Z", + "end": "2022-05-08T00:45:31.839Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T00:45:31.839Z", + "end": "2022-05-08T02:41:11.227Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T02:41:11.227Z", + "end": "2022-05-08T04:36:50.615Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T04:36:50.615Z", + "end": "2022-05-08T06:32:30.003Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T06:32:30.003Z", + "end": "2022-05-08T08:28:09.391Z", + "state": "IDLE" + } + ] + }, + { + "user": "360264570671216445", + "game": "546175179542364160", + "start": "2022-05-15T07:26:21.612Z", + "end": "2022-05-15T09:47:05.650Z", + "events": [ + { + "start": "2022-05-15T07:26:21.612Z", + "end": "2022-05-15T09:47:05.650Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "153631479524744694", + "game": "540120593576493057", + "start": "2022-06-08T11:41:23.077Z", + "end": "2022-06-08T20:25:34.099Z", + "events": [ + { + "start": "2022-06-08T11:41:23.077Z", + "end": "2022-06-08T14:36:06.751Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T14:36:06.751Z", + "end": "2022-06-08T17:30:50.425Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T17:30:50.425Z", + "end": "2022-06-08T20:25:34.099Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "406850294055619241", + "game": "569008830701240340", + "start": "2022-04-22T06:10:11.192Z", + "end": "2022-04-22T10:36:15.978Z", + "events": [ + { + "start": "2022-04-22T06:10:11.192Z", + "end": "2022-04-22T10:36:15.978Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "700136079562375258", + "start": "2022-06-29T07:42:31.913Z", + "end": "2022-06-29T09:38:56.408Z", + "events": [ + { + "start": "2022-06-29T07:42:31.913Z", + "end": "2022-06-29T09:38:56.408Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "511619499053678668", + "start": "2022-05-14T16:20:01.303Z", + "end": "2022-05-15T00:59:05.032Z", + "events": [ + { + "start": "2022-05-14T16:20:01.303Z", + "end": "2022-05-14T19:13:02.546Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T19:13:02.546Z", + "end": "2022-05-14T22:06:03.789Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T22:06:03.789Z", + "end": "2022-05-15T00:59:05.032Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "725502702868293700", + "game": "614448244260339712", + "start": "2022-07-11T09:48:31.377Z", + "end": "2022-07-11T12:25:05.602Z", + "events": [ + { + "start": "2022-07-11T09:48:31.377Z", + "end": "2022-07-11T11:06:48.489Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T11:06:48.489Z", + "end": "2022-07-11T12:25:05.601Z", + "state": "IDLE" + } + ] + }, + { + "user": "713444659295913502", + "game": "535869836748783616", + "start": "2022-04-22T09:31:33.231Z", + "end": "2022-04-22T17:05:21.827Z", + "events": [ + { + "start": "2022-04-22T09:31:33.231Z", + "end": "2022-04-22T11:02:18.950Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T11:02:18.950Z", + "end": "2022-04-22T12:33:04.669Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T12:33:04.669Z", + "end": "2022-04-22T14:03:50.388Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-22T14:03:50.388Z", + "end": "2022-04-22T15:34:36.107Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-22T15:34:36.107Z", + "end": "2022-04-22T17:05:21.826Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "568387317892070397", + "game": "597588168178663434", + "start": "2022-04-22T16:55:39.326Z", + "end": "2022-04-23T02:07:41.556Z", + "events": [ + { + "start": "2022-04-22T16:55:39.326Z", + "end": "2022-04-22T19:13:39.883Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T19:13:39.883Z", + "end": "2022-04-22T21:31:40.440Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T21:31:40.440Z", + "end": "2022-04-22T23:49:40.997Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T23:49:40.997Z", + "end": "2022-04-23T02:07:41.554Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "500919588166575890", + "game": "546175179542364160", + "start": "2022-06-09T01:14:43.207Z", + "end": "2022-06-09T07:39:00.810Z", + "events": [ + { + "start": "2022-06-09T01:14:43.207Z", + "end": "2022-06-09T02:50:47.607Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-09T02:50:47.607Z", + "end": "2022-06-09T04:26:52.007Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-09T04:26:52.007Z", + "end": "2022-06-09T06:02:56.407Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-09T06:02:56.407Z", + "end": "2022-06-09T07:39:00.807Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "597860020935327787", + "start": "2022-07-24T09:02:50.062Z", + "end": "2022-07-24T12:10:51.877Z", + "events": [ + { + "start": "2022-07-24T09:02:50.062Z", + "end": "2022-07-24T10:36:50.969Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T10:36:50.969Z", + "end": "2022-07-24T12:10:51.876Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "530539422724200800", + "game": "700136079562375258", + "start": "2022-04-20T14:04:31.228Z", + "end": "2022-04-20T21:14:28.962Z", + "events": [ + { + "start": "2022-04-20T14:04:31.228Z", + "end": "2022-04-20T15:30:30.774Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T15:30:30.774Z", + "end": "2022-04-20T16:56:30.320Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T16:56:30.320Z", + "end": "2022-04-20T18:22:29.866Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-20T18:22:29.866Z", + "end": "2022-04-20T19:48:29.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-20T19:48:29.412Z", + "end": "2022-04-20T21:14:28.958Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "872035310834814925", + "game": "535384357536399404", + "start": "2022-06-20T13:17:58.126Z", + "end": "2022-06-20T14:11:40.301Z", + "events": [ + { + "start": "2022-06-20T13:17:58.126Z", + "end": "2022-06-20T13:44:49.213Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T13:44:49.213Z", + "end": "2022-06-20T14:11:40.300Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "549054179973094329", + "game": "550277544025522176", + "start": "2022-05-01T23:12:26.390Z", + "end": "2022-05-02T06:43:29.514Z", + "events": [ + { + "start": "2022-05-01T23:12:26.390Z", + "end": "2022-05-02T06:43:29.514Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "575412499399180288", + "start": "2022-06-02T05:29:42.839Z", + "end": "2022-06-02T11:10:48.217Z", + "events": [ + { + "start": "2022-06-02T05:29:42.839Z", + "end": "2022-06-02T06:37:55.914Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T06:37:55.914Z", + "end": "2022-06-02T07:46:08.989Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T07:46:08.989Z", + "end": "2022-06-02T08:54:22.064Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T08:54:22.064Z", + "end": "2022-06-02T10:02:35.139Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T10:02:35.139Z", + "end": "2022-06-02T11:10:48.214Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "530539422724200800", + "game": "597588168178663434", + "start": "2022-07-07T18:32:10.280Z", + "end": "2022-07-07T18:57:56.003Z", + "events": [ + { + "start": "2022-07-07T18:32:10.280Z", + "end": "2022-07-07T18:45:03.141Z", + "state": "IDLE" + }, + { + "start": "2022-07-07T18:45:03.141Z", + "end": "2022-07-07T18:57:56.002Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "554921822626381879", + "start": "2022-06-01T12:00:26.612Z", + "end": "2022-06-01T13:58:04.762Z", + "events": [ + { + "start": "2022-06-01T12:00:26.612Z", + "end": "2022-06-01T12:39:39.328Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-01T12:39:39.328Z", + "end": "2022-06-01T13:18:52.044Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-01T13:18:52.044Z", + "end": "2022-06-01T13:58:04.760Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "658550407298256890", + "game": "520462578061803588", + "start": "2022-07-03T20:47:34.754Z", + "end": "2022-07-04T00:14:26.537Z", + "events": [ + { + "start": "2022-07-03T20:47:34.754Z", + "end": "2022-07-03T21:39:17.699Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T21:39:17.699Z", + "end": "2022-07-03T22:31:00.644Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T22:31:00.644Z", + "end": "2022-07-03T23:22:43.589Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T23:22:43.589Z", + "end": "2022-07-04T00:14:26.534Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "512789427462995988", + "start": "2022-06-13T03:46:31.132Z", + "end": "2022-06-13T12:14:50.490Z", + "events": [ + { + "start": "2022-06-13T03:46:31.132Z", + "end": "2022-06-13T06:35:57.584Z", + "state": "IDLE" + }, + { + "start": "2022-06-13T06:35:57.584Z", + "end": "2022-06-13T09:25:24.036Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T09:25:24.036Z", + "end": "2022-06-13T12:14:50.488Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "911848869344266044", + "game": "520453007578628124", + "start": "2022-05-12T15:09:35.052Z", + "end": "2022-05-13T00:02:38.570Z", + "events": [ + { + "start": "2022-05-12T15:09:35.052Z", + "end": "2022-05-12T18:07:16.224Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T18:07:16.224Z", + "end": "2022-05-12T21:04:57.396Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T21:04:57.396Z", + "end": "2022-05-13T00:02:38.568Z", + "state": "IDLE" + } + ] + }, + { + "user": "686825797960121847", + "game": "512699108809637890", + "start": "2022-05-14T13:24:26.297Z", + "end": "2022-05-14T17:34:20.881Z", + "events": [ + { + "start": "2022-05-14T13:24:26.297Z", + "end": "2022-05-14T15:29:23.589Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T15:29:23.589Z", + "end": "2022-05-14T17:34:20.881Z", + "state": "IDLE" + } + ] + }, + { + "user": "538658792298239054", + "game": "542475118396309528", + "start": "2022-04-21T05:56:56.368Z", + "end": "2022-04-21T14:30:36.486Z", + "events": [ + { + "start": "2022-04-21T05:56:56.368Z", + "end": "2022-04-21T08:05:21.397Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-21T08:05:21.397Z", + "end": "2022-04-21T10:13:46.426Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T10:13:46.426Z", + "end": "2022-04-21T12:22:11.455Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T12:22:11.455Z", + "end": "2022-04-21T14:30:36.484Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "521842831262875670", + "start": "2022-06-06T13:31:00.556Z", + "end": "2022-06-06T18:53:49.151Z", + "events": [ + { + "start": "2022-06-06T13:31:00.556Z", + "end": "2022-06-06T14:51:42.704Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T14:51:42.704Z", + "end": "2022-06-06T16:12:24.852Z", + "state": "IDLE" + }, + { + "start": "2022-06-06T16:12:24.852Z", + "end": "2022-06-06T17:33:07.000Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T17:33:07.000Z", + "end": "2022-06-06T18:53:49.148Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "762163239408560283", + "game": "512789343157485602", + "start": "2022-07-11T23:28:04.372Z", + "end": "2022-07-12T08:53:12.876Z", + "events": [ + { + "start": "2022-07-11T23:28:04.372Z", + "end": "2022-07-12T02:36:27.206Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T02:36:27.206Z", + "end": "2022-07-12T05:44:50.040Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T05:44:50.040Z", + "end": "2022-07-12T08:53:12.874Z", + "state": "IDLE" + } + ] + }, + { + "user": "453350270016457959", + "game": "558547388583772201", + "start": "2022-06-04T20:15:54.457Z", + "end": "2022-06-05T06:18:05.609Z", + "events": [ + { + "start": "2022-06-04T20:15:54.457Z", + "end": "2022-06-04T22:46:27.245Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T22:46:27.245Z", + "end": "2022-06-05T01:17:00.033Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T01:17:00.033Z", + "end": "2022-06-05T03:47:32.821Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T03:47:32.821Z", + "end": "2022-06-05T06:18:05.609Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "200801427122341912", + "game": "508057374875975682", + "start": "2022-04-26T17:45:19.558Z", + "end": "2022-04-27T03:10:56.303Z", + "events": [ + { + "start": "2022-04-26T17:45:19.558Z", + "end": "2022-04-27T03:10:56.303Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "535869836748783616", + "start": "2022-05-11T18:43:31.402Z", + "end": "2022-05-11T21:35:37.502Z", + "events": [ + { + "start": "2022-05-11T18:43:31.402Z", + "end": "2022-05-11T19:17:56.622Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-11T19:17:56.622Z", + "end": "2022-05-11T19:52:21.842Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T19:52:21.842Z", + "end": "2022-05-11T20:26:47.062Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T20:26:47.062Z", + "end": "2022-05-11T21:01:12.282Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T21:01:12.282Z", + "end": "2022-05-11T21:35:37.502Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "606163888052109312", + "start": "2022-08-01T08:02:58.741Z", + "end": "2022-08-01T10:22:30.374Z", + "events": [ + { + "start": "2022-08-01T08:02:58.741Z", + "end": "2022-08-01T08:37:51.649Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T08:37:51.649Z", + "end": "2022-08-01T09:12:44.557Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T09:12:44.557Z", + "end": "2022-08-01T09:47:37.465Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T09:47:37.465Z", + "end": "2022-08-01T10:22:30.373Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "452396069922968436", + "game": "700136079562375258", + "start": "2022-04-15T15:56:33.921Z", + "end": "2022-04-15T18:42:08.600Z", + "events": [ + { + "start": "2022-04-15T15:56:33.921Z", + "end": "2022-04-15T16:29:40.856Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T16:29:40.856Z", + "end": "2022-04-15T17:02:47.791Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T17:02:47.791Z", + "end": "2022-04-15T17:35:54.726Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T17:35:54.726Z", + "end": "2022-04-15T18:09:01.661Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T18:09:01.661Z", + "end": "2022-04-15T18:42:08.596Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "841397740041930984", + "game": "575412499399180288", + "start": "2022-08-03T05:30:53.211Z", + "end": "2022-08-03T11:31:34.687Z", + "events": [ + { + "start": "2022-08-03T05:30:53.211Z", + "end": "2022-08-03T11:31:34.687Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "725502702868293700", + "game": "511619499053678668", + "start": "2022-08-01T21:55:00.807Z", + "end": "2022-08-02T01:02:12.074Z", + "events": [ + { + "start": "2022-08-01T21:55:00.807Z", + "end": "2022-08-01T22:57:24.562Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T22:57:24.562Z", + "end": "2022-08-01T23:59:48.317Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-01T23:59:48.317Z", + "end": "2022-08-02T01:02:12.072Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "542475118396309528", + "start": "2022-05-06T12:53:15.570Z", + "end": "2022-05-06T20:23:14.460Z", + "events": [ + { + "start": "2022-05-06T12:53:15.570Z", + "end": "2022-05-06T15:23:15.200Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T15:23:15.200Z", + "end": "2022-05-06T17:53:14.830Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T17:53:14.830Z", + "end": "2022-05-06T20:23:14.460Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "590467327095087095", + "game": "546175179542364160", + "start": "2022-06-09T05:47:58.136Z", + "end": "2022-06-09T11:14:33.700Z", + "events": [ + { + "start": "2022-06-09T05:47:58.136Z", + "end": "2022-06-09T11:14:33.700Z", + "state": "IDLE" + } + ] + }, + { + "user": "395281349698024181", + "game": "575412499399180288", + "start": "2022-07-13T19:56:34.201Z", + "end": "2022-07-14T00:07:43.565Z", + "events": [ + { + "start": "2022-07-13T19:56:34.201Z", + "end": "2022-07-13T20:46:48.073Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T20:46:48.073Z", + "end": "2022-07-13T21:37:01.945Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T21:37:01.945Z", + "end": "2022-07-13T22:27:15.817Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T22:27:15.817Z", + "end": "2022-07-13T23:17:29.689Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-13T23:17:29.689Z", + "end": "2022-07-14T00:07:43.561Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "519644267212177418", + "start": "2022-07-29T07:39:28.590Z", + "end": "2022-07-29T13:43:42.038Z", + "events": [ + { + "start": "2022-07-29T07:39:28.590Z", + "end": "2022-07-29T09:10:31.952Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T09:10:31.952Z", + "end": "2022-07-29T10:41:35.314Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T10:41:35.314Z", + "end": "2022-07-29T12:12:38.676Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T12:12:38.676Z", + "end": "2022-07-29T13:43:42.038Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "600708263053781983", + "game": "614380482620293151", + "start": "2022-06-04T13:08:22.684Z", + "end": "2022-06-04T14:23:52.756Z", + "events": [ + { + "start": "2022-06-04T13:08:22.684Z", + "end": "2022-06-04T13:46:07.720Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T13:46:07.720Z", + "end": "2022-06-04T14:23:52.756Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "346608907417001845", + "game": "512789427462995988", + "start": "2022-06-12T12:43:36.910Z", + "end": "2022-06-12T15:51:47.887Z", + "events": [ + { + "start": "2022-06-12T12:43:36.910Z", + "end": "2022-06-12T13:30:39.654Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T13:30:39.654Z", + "end": "2022-06-12T14:17:42.398Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T14:17:42.398Z", + "end": "2022-06-12T15:04:45.142Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T15:04:45.142Z", + "end": "2022-06-12T15:51:47.886Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "568387317892070397", + "game": "514228311661084682", + "start": "2022-05-04T12:17:03.865Z", + "end": "2022-05-04T22:20:02.633Z", + "events": [ + { + "start": "2022-05-04T12:17:03.865Z", + "end": "2022-05-04T15:38:03.454Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T15:38:03.454Z", + "end": "2022-05-04T18:59:03.043Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T18:59:03.043Z", + "end": "2022-05-04T22:20:02.632Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "200801427122341912", + "game": "575412499399180288", + "start": "2022-06-21T14:16:51.510Z", + "end": "2022-06-21T21:55:51.818Z", + "events": [ + { + "start": "2022-06-21T14:16:51.510Z", + "end": "2022-06-21T16:11:36.587Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T16:11:36.587Z", + "end": "2022-06-21T18:06:21.664Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T18:06:21.664Z", + "end": "2022-06-21T20:01:06.741Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T20:01:06.741Z", + "end": "2022-06-21T21:55:51.818Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "538658792298239054", + "game": "526489929631531009", + "start": "2022-05-26T13:59:58.395Z", + "end": "2022-05-26T22:08:23.812Z", + "events": [ + { + "start": "2022-05-26T13:59:58.395Z", + "end": "2022-05-26T16:42:46.867Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T16:42:46.867Z", + "end": "2022-05-26T19:25:35.339Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T19:25:35.339Z", + "end": "2022-05-26T22:08:23.811Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "537786518874514211", + "game": "519644267212177418", + "start": "2022-06-14T09:03:34.398Z", + "end": "2022-06-14T16:54:45.806Z", + "events": [ + { + "start": "2022-06-14T09:03:34.398Z", + "end": "2022-06-14T11:40:38.200Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-14T11:40:38.200Z", + "end": "2022-06-14T14:17:42.002Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T14:17:42.002Z", + "end": "2022-06-14T16:54:45.804Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "453350270016457959", + "game": "526489929631531009", + "start": "2022-06-26T16:50:54.834Z", + "end": "2022-06-27T01:32:12.201Z", + "events": [ + { + "start": "2022-06-26T16:50:54.834Z", + "end": "2022-06-26T21:11:33.517Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T21:11:33.517Z", + "end": "2022-06-27T01:32:12.200Z", + "state": "IDLE" + } + ] + }, + { + "user": "608700383891121851", + "game": "614448244260339712", + "start": "2022-04-23T21:52:33.206Z", + "end": "2022-04-24T07:23:43.296Z", + "events": [ + { + "start": "2022-04-23T21:52:33.206Z", + "end": "2022-04-24T02:38:08.251Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T02:38:08.251Z", + "end": "2022-04-24T07:23:43.296Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "592976500802846750", + "start": "2022-06-04T17:08:05.418Z", + "end": "2022-06-04T20:33:40.431Z", + "events": [ + { + "start": "2022-06-04T17:08:05.418Z", + "end": "2022-06-04T17:49:12.420Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T17:49:12.420Z", + "end": "2022-06-04T18:30:19.422Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T18:30:19.422Z", + "end": "2022-06-04T19:11:26.424Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T19:11:26.424Z", + "end": "2022-06-04T19:52:33.426Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T19:52:33.426Z", + "end": "2022-06-04T20:33:40.428Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "430732724825949756", + "game": "700136079562375258", + "start": "2022-05-26T05:07:08.185Z", + "end": "2022-05-26T09:10:06.100Z", + "events": [ + { + "start": "2022-05-26T05:07:08.185Z", + "end": "2022-05-26T06:07:52.663Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-26T06:07:52.663Z", + "end": "2022-05-26T07:08:37.141Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-26T07:08:37.141Z", + "end": "2022-05-26T08:09:21.619Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T08:09:21.619Z", + "end": "2022-05-26T09:10:06.097Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "542474758835535872", + "start": "2022-06-03T13:38:29.657Z", + "end": "2022-06-03T15:48:35.300Z", + "events": [ + { + "start": "2022-06-03T13:38:29.657Z", + "end": "2022-06-03T14:11:01.067Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T14:11:01.067Z", + "end": "2022-06-03T14:43:32.477Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T14:43:32.477Z", + "end": "2022-06-03T15:16:03.887Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T15:16:03.887Z", + "end": "2022-06-03T15:48:35.297Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "517335360477493827", + "game": "597588168178663434", + "start": "2022-05-04T00:49:45.373Z", + "end": "2022-05-04T09:55:48.396Z", + "events": [ + { + "start": "2022-05-04T00:49:45.373Z", + "end": "2022-05-04T02:38:57.977Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T02:38:57.977Z", + "end": "2022-05-04T04:28:10.581Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-04T04:28:10.581Z", + "end": "2022-05-04T06:17:23.185Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T06:17:23.185Z", + "end": "2022-05-04T08:06:35.789Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T08:06:35.789Z", + "end": "2022-05-04T09:55:48.393Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "554573307161214977", + "start": "2022-06-30T02:20:50.402Z", + "end": "2022-06-30T03:03:45.003Z", + "events": [ + { + "start": "2022-06-30T02:20:50.402Z", + "end": "2022-06-30T02:35:08.602Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-30T02:35:08.602Z", + "end": "2022-06-30T02:49:26.802Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-30T02:49:26.802Z", + "end": "2022-06-30T03:03:45.002Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "535869836748783616", + "start": "2022-07-22T11:49:00.115Z", + "end": "2022-07-22T12:14:30.049Z", + "events": [ + { + "start": "2022-07-22T11:49:00.115Z", + "end": "2022-07-22T12:14:30.049Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "514228311661084682", + "start": "2022-04-13T18:31:15.085Z", + "end": "2022-04-13T19:14:10.947Z", + "events": [ + { + "start": "2022-04-13T18:31:15.085Z", + "end": "2022-04-13T19:14:10.947Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "560781100197216267", + "start": "2022-04-16T02:49:18.953Z", + "end": "2022-04-16T05:04:34.301Z", + "events": [ + { + "start": "2022-04-16T02:49:18.953Z", + "end": "2022-04-16T03:16:22.022Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-16T03:16:22.022Z", + "end": "2022-04-16T03:43:25.091Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T03:43:25.091Z", + "end": "2022-04-16T04:10:28.160Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-16T04:10:28.160Z", + "end": "2022-04-16T04:37:31.229Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-16T04:37:31.229Z", + "end": "2022-04-16T05:04:34.298Z", + "state": "IDLE" + } + ] + }, + { + "user": "530539422724200800", + "game": "558547388583772201", + "start": "2022-04-21T05:03:25.967Z", + "end": "2022-04-21T08:47:33.695Z", + "events": [ + { + "start": "2022-04-21T05:03:25.967Z", + "end": "2022-04-21T06:55:29.831Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T06:55:29.831Z", + "end": "2022-04-21T08:47:33.695Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "406850294055619241", + "game": "554573307161214977", + "start": "2022-04-14T11:49:32.856Z", + "end": "2022-04-14T20:24:29.514Z", + "events": [ + { + "start": "2022-04-14T11:49:32.856Z", + "end": "2022-04-14T13:58:17.020Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-14T13:58:17.020Z", + "end": "2022-04-14T16:07:01.184Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T16:07:01.184Z", + "end": "2022-04-14T18:15:45.348Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T18:15:45.348Z", + "end": "2022-04-14T20:24:29.512Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "872035310834814925", + "game": "511619499053678668", + "start": "2022-04-27T03:00:09.504Z", + "end": "2022-04-27T08:50:41.072Z", + "events": [ + { + "start": "2022-04-27T03:00:09.504Z", + "end": "2022-04-27T04:57:00.026Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T04:57:00.026Z", + "end": "2022-04-27T06:53:50.548Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T06:53:50.548Z", + "end": "2022-04-27T08:50:41.070Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "385692164951394422", + "game": "542475118396309528", + "start": "2022-06-13T15:59:52.098Z", + "end": "2022-06-13T22:05:19.683Z", + "events": [ + { + "start": "2022-06-13T15:59:52.098Z", + "end": "2022-06-13T17:31:13.994Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T17:31:13.994Z", + "end": "2022-06-13T19:02:35.890Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T19:02:35.890Z", + "end": "2022-06-13T20:33:57.786Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T20:33:57.786Z", + "end": "2022-06-13T22:05:19.682Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "821608522568592914", + "game": "526489929631531009", + "start": "2022-04-20T02:22:18.500Z", + "end": "2022-04-20T08:18:08.462Z", + "events": [ + { + "start": "2022-04-20T02:22:18.500Z", + "end": "2022-04-20T08:18:08.462Z", + "state": "IDLE" + } + ] + }, + { + "user": "161887854890745672", + "game": "523154344187789312", + "start": "2022-07-25T04:00:14.188Z", + "end": "2022-07-25T13:01:39.952Z", + "events": [ + { + "start": "2022-07-25T04:00:14.188Z", + "end": "2022-07-25T08:30:57.070Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T08:30:57.070Z", + "end": "2022-07-25T13:01:39.952Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951234649334557435", + "game": "558547388583772201", + "start": "2022-06-20T17:22:31.144Z", + "end": "2022-06-20T22:50:56.950Z", + "events": [ + { + "start": "2022-06-20T17:22:31.144Z", + "end": "2022-06-20T18:28:12.305Z", + "state": "IDLE" + }, + { + "start": "2022-06-20T18:28:12.305Z", + "end": "2022-06-20T19:33:53.466Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T19:33:53.466Z", + "end": "2022-06-20T20:39:34.627Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T20:39:34.627Z", + "end": "2022-06-20T21:45:15.788Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T21:45:15.788Z", + "end": "2022-06-20T22:50:56.949Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "430732724825949756", + "game": "597588168178663434", + "start": "2022-05-30T02:43:52.230Z", + "end": "2022-05-30T11:27:27.766Z", + "events": [ + { + "start": "2022-05-30T02:43:52.230Z", + "end": "2022-05-30T07:05:39.998Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T07:05:39.998Z", + "end": "2022-05-30T11:27:27.766Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "356875221078245376", + "start": "2022-06-21T18:59:30.361Z", + "end": "2022-06-22T03:38:26.907Z", + "events": [ + { + "start": "2022-06-21T18:59:30.361Z", + "end": "2022-06-22T03:38:26.907Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "285410867718320291", + "game": "606163888052109312", + "start": "2022-07-02T16:12:52.266Z", + "end": "2022-07-02T21:28:03.551Z", + "events": [ + { + "start": "2022-07-02T16:12:52.266Z", + "end": "2022-07-02T17:15:54.523Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T17:15:54.523Z", + "end": "2022-07-02T18:18:56.780Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T18:18:56.780Z", + "end": "2022-07-02T19:21:59.037Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T19:21:59.037Z", + "end": "2022-07-02T20:25:01.294Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T20:25:01.294Z", + "end": "2022-07-02T21:28:03.551Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "575412499399180288", + "start": "2022-05-18T11:52:48.864Z", + "end": "2022-05-18T15:45:35.666Z", + "events": [ + { + "start": "2022-05-18T11:52:48.864Z", + "end": "2022-05-18T13:10:24.464Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T13:10:24.464Z", + "end": "2022-05-18T14:28:00.064Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T14:28:00.064Z", + "end": "2022-05-18T15:45:35.664Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "514228311661084682", + "start": "2022-07-20T15:34:59.036Z", + "end": "2022-07-20T20:46:30.063Z", + "events": [ + { + "start": "2022-07-20T15:34:59.036Z", + "end": "2022-07-20T16:52:51.792Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T16:52:51.792Z", + "end": "2022-07-20T18:10:44.548Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-20T18:10:44.548Z", + "end": "2022-07-20T19:28:37.304Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T19:28:37.304Z", + "end": "2022-07-20T20:46:30.060Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512789343157485602", + "start": "2022-07-07T01:17:18.960Z", + "end": "2022-07-07T09:24:01.012Z", + "events": [ + { + "start": "2022-07-07T01:17:18.960Z", + "end": "2022-07-07T02:54:39.370Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T02:54:39.370Z", + "end": "2022-07-07T04:31:59.780Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T04:31:59.780Z", + "end": "2022-07-07T06:09:20.190Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T06:09:20.190Z", + "end": "2022-07-07T07:46:40.600Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T07:46:40.600Z", + "end": "2022-07-07T09:24:01.010Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "584069374462394368", + "start": "2022-04-19T15:12:17.069Z", + "end": "2022-04-19T15:27:25.464Z", + "events": [ + { + "start": "2022-04-19T15:12:17.069Z", + "end": "2022-04-19T15:17:19.867Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T15:17:19.867Z", + "end": "2022-04-19T15:22:22.665Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T15:22:22.665Z", + "end": "2022-04-19T15:27:25.463Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "597588168178663434", + "start": "2022-07-29T11:44:57.126Z", + "end": "2022-07-29T13:13:32.429Z", + "events": [ + { + "start": "2022-07-29T11:44:57.126Z", + "end": "2022-07-29T12:02:40.186Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T12:02:40.186Z", + "end": "2022-07-29T12:20:23.246Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T12:20:23.246Z", + "end": "2022-07-29T12:38:06.306Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T12:38:06.306Z", + "end": "2022-07-29T12:55:49.366Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T12:55:49.366Z", + "end": "2022-07-29T13:13:32.426Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "554921822626381879", + "start": "2022-08-04T20:27:15.177Z", + "end": "2022-08-05T03:57:52.401Z", + "events": [ + { + "start": "2022-08-04T20:27:15.177Z", + "end": "2022-08-04T21:57:22.621Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T21:57:22.621Z", + "end": "2022-08-04T23:27:30.065Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T23:27:30.065Z", + "end": "2022-08-05T00:57:37.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T00:57:37.509Z", + "end": "2022-08-05T02:27:44.953Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T02:27:44.953Z", + "end": "2022-08-05T03:57:52.397Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "508057374875975682", + "start": "2022-06-27T17:26:56.079Z", + "end": "2022-06-27T23:06:47.545Z", + "events": [ + { + "start": "2022-06-27T17:26:56.079Z", + "end": "2022-06-27T20:16:51.812Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T20:16:51.812Z", + "end": "2022-06-27T23:06:47.545Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "182925797752958092", + "game": "528145079819436043", + "start": "2022-04-25T05:23:29.283Z", + "end": "2022-04-25T12:38:17.491Z", + "events": [ + { + "start": "2022-04-25T05:23:29.283Z", + "end": "2022-04-25T07:12:11.335Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T07:12:11.335Z", + "end": "2022-04-25T09:00:53.387Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-25T09:00:53.387Z", + "end": "2022-04-25T10:49:35.439Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T10:49:35.439Z", + "end": "2022-04-25T12:38:17.491Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "395281349698024181", + "game": "512789427462995988", + "start": "2022-06-14T10:08:04.608Z", + "end": "2022-06-14T12:11:37.684Z", + "events": [ + { + "start": "2022-06-14T10:08:04.608Z", + "end": "2022-06-14T12:11:37.684Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "713444659295913502", + "game": "542075586886107149", + "start": "2022-07-21T21:58:39.170Z", + "end": "2022-07-22T04:33:32.739Z", + "events": [ + { + "start": "2022-07-21T21:58:39.170Z", + "end": "2022-07-22T04:33:32.739Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "584489284152985092", + "game": "569253958967885828", + "start": "2022-05-03T17:21:06.790Z", + "end": "2022-05-03T23:13:39.354Z", + "events": [ + { + "start": "2022-05-03T17:21:06.790Z", + "end": "2022-05-03T18:31:37.302Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T18:31:37.302Z", + "end": "2022-05-03T19:42:07.814Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T19:42:07.814Z", + "end": "2022-05-03T20:52:38.326Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T20:52:38.326Z", + "end": "2022-05-03T22:03:08.838Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T22:03:08.838Z", + "end": "2022-05-03T23:13:39.350Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "430732724825949756", + "game": "546175179542364160", + "start": "2022-04-27T13:21:46.611Z", + "end": "2022-04-27T17:11:52.339Z", + "events": [ + { + "start": "2022-04-27T13:21:46.611Z", + "end": "2022-04-27T17:11:52.339Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "182925797752958092", + "game": "542475118396309528", + "start": "2022-07-21T22:13:25.965Z", + "end": "2022-07-22T01:51:20.055Z", + "events": [ + { + "start": "2022-07-21T22:13:25.965Z", + "end": "2022-07-22T00:02:23.010Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T00:02:23.010Z", + "end": "2022-07-22T01:51:20.055Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "550277544025522176", + "start": "2022-07-07T20:00:00.408Z", + "end": "2022-07-08T05:20:16.025Z", + "events": [ + { + "start": "2022-07-07T20:00:00.408Z", + "end": "2022-07-08T05:20:16.025Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786084290971413565", + "game": "592976500802846750", + "start": "2022-06-09T03:45:30.498Z", + "end": "2022-06-09T05:21:32.636Z", + "events": [ + { + "start": "2022-06-09T03:45:30.498Z", + "end": "2022-06-09T04:33:31.567Z", + "state": "IDLE" + }, + { + "start": "2022-06-09T04:33:31.567Z", + "end": "2022-06-09T05:21:32.636Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "463820732483181525", + "game": "554921822626381879", + "start": "2022-08-04T09:22:34.472Z", + "end": "2022-08-04T12:27:19.431Z", + "events": [ + { + "start": "2022-08-04T09:22:34.472Z", + "end": "2022-08-04T10:08:45.711Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T10:08:45.711Z", + "end": "2022-08-04T10:54:56.950Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-04T10:54:56.950Z", + "end": "2022-08-04T11:41:08.189Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T11:41:08.189Z", + "end": "2022-08-04T12:27:19.428Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "614380482620293151", + "start": "2022-04-14T18:58:30.742Z", + "end": "2022-04-14T20:33:44.438Z", + "events": [ + { + "start": "2022-04-14T18:58:30.742Z", + "end": "2022-04-14T19:46:07.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T19:46:07.590Z", + "end": "2022-04-14T20:33:44.438Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "550277544025522176", + "start": "2022-05-15T19:46:40.233Z", + "end": "2022-05-16T03:42:10.327Z", + "events": [ + { + "start": "2022-05-15T19:46:40.233Z", + "end": "2022-05-15T23:44:25.280Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T23:44:25.280Z", + "end": "2022-05-16T03:42:10.327Z", + "state": "IDLE" + } + ] + }, + { + "user": "147480245458136084", + "game": "518088627234930688", + "start": "2022-05-03T14:33:00.049Z", + "end": "2022-05-03T15:47:21.107Z", + "events": [ + { + "start": "2022-05-03T14:33:00.049Z", + "end": "2022-05-03T14:57:47.068Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T14:57:47.068Z", + "end": "2022-05-03T15:22:34.087Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T15:22:34.087Z", + "end": "2022-05-03T15:47:21.106Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "356875221078245376", + "start": "2022-04-14T19:27:56.192Z", + "end": "2022-04-14T19:44:07.748Z", + "events": [ + { + "start": "2022-04-14T19:27:56.192Z", + "end": "2022-04-14T19:36:01.970Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T19:36:01.970Z", + "end": "2022-04-14T19:44:07.748Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "695941172337689379", + "game": "535869836748783616", + "start": "2022-04-22T12:19:15.787Z", + "end": "2022-04-22T18:25:15.244Z", + "events": [ + { + "start": "2022-04-22T12:19:15.787Z", + "end": "2022-04-22T18:25:15.244Z", + "state": "IDLE" + } + ] + }, + { + "user": "608700383891121851", + "game": "512789427462995988", + "start": "2022-05-28T18:43:41.840Z", + "end": "2022-05-29T02:43:35.008Z", + "events": [ + { + "start": "2022-05-28T18:43:41.840Z", + "end": "2022-05-29T02:43:35.008Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "512501896896970762", + "start": "2022-07-23T13:41:12.632Z", + "end": "2022-07-23T19:58:22.156Z", + "events": [ + { + "start": "2022-07-23T13:41:12.632Z", + "end": "2022-07-23T16:49:47.394Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T16:49:47.394Z", + "end": "2022-07-23T19:58:22.156Z", + "state": "IDLE" + } + ] + }, + { + "user": "329429619186234053", + "game": "535869836748783616", + "start": "2022-05-27T22:26:32.880Z", + "end": "2022-05-28T05:38:38.301Z", + "events": [ + { + "start": "2022-05-27T22:26:32.880Z", + "end": "2022-05-27T23:52:57.964Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T23:52:57.964Z", + "end": "2022-05-28T01:19:23.048Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T01:19:23.048Z", + "end": "2022-05-28T02:45:48.132Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T02:45:48.132Z", + "end": "2022-05-28T04:12:13.216Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T04:12:13.216Z", + "end": "2022-05-28T05:38:38.300Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "540120593576493057", + "start": "2022-05-30T15:19:45.622Z", + "end": "2022-05-30T17:21:25.767Z", + "events": [ + { + "start": "2022-05-30T15:19:45.622Z", + "end": "2022-05-30T17:21:25.767Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "385692164951394422", + "game": "553697181249437716", + "start": "2022-07-04T06:16:27.053Z", + "end": "2022-07-04T07:01:11.891Z", + "events": [ + { + "start": "2022-07-04T06:16:27.053Z", + "end": "2022-07-04T06:38:49.472Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T06:38:49.472Z", + "end": "2022-07-04T07:01:11.891Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "137536289023624121", + "game": "553697181249437716", + "start": "2022-07-02T13:51:01.274Z", + "end": "2022-07-02T23:06:42.945Z", + "events": [ + { + "start": "2022-07-02T13:51:01.274Z", + "end": "2022-07-02T16:09:56.691Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T16:09:56.691Z", + "end": "2022-07-02T18:28:52.108Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T18:28:52.108Z", + "end": "2022-07-02T20:47:47.525Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T20:47:47.525Z", + "end": "2022-07-02T23:06:42.942Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "521350927850935744", + "game": "614380482620293151", + "start": "2022-05-28T02:49:49.817Z", + "end": "2022-05-28T08:25:14.973Z", + "events": [ + { + "start": "2022-05-28T02:49:49.817Z", + "end": "2022-05-28T03:56:54.848Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T03:56:54.848Z", + "end": "2022-05-28T05:03:59.879Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T05:03:59.879Z", + "end": "2022-05-28T06:11:04.910Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T06:11:04.910Z", + "end": "2022-05-28T07:18:09.941Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T07:18:09.941Z", + "end": "2022-05-28T08:25:14.972Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "494763633796983404", + "game": "560781100197216267", + "start": "2022-08-06T12:03:27.839Z", + "end": "2022-08-06T12:44:27.643Z", + "events": [ + { + "start": "2022-08-06T12:03:27.839Z", + "end": "2022-08-06T12:17:07.773Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T12:17:07.773Z", + "end": "2022-08-06T12:30:47.707Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T12:30:47.707Z", + "end": "2022-08-06T12:44:27.641Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "406850294055619241", + "game": "549512435585908756", + "start": "2022-05-26T22:00:45.504Z", + "end": "2022-05-27T06:05:18.465Z", + "events": [ + { + "start": "2022-05-26T22:00:45.504Z", + "end": "2022-05-27T06:05:18.465Z", + "state": "IDLE" + } + ] + }, + { + "user": "467658810442648809", + "game": "554573307161214977", + "start": "2022-07-13T13:08:11.463Z", + "end": "2022-07-13T18:27:04.588Z", + "events": [ + { + "start": "2022-07-13T13:08:11.463Z", + "end": "2022-07-13T14:54:29.171Z", + "state": "IDLE" + }, + { + "start": "2022-07-13T14:54:29.171Z", + "end": "2022-07-13T16:40:46.879Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T16:40:46.879Z", + "end": "2022-07-13T18:27:04.587Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "518088627234930688", + "start": "2022-05-26T13:15:14.257Z", + "end": "2022-05-26T21:01:14.172Z", + "events": [ + { + "start": "2022-05-26T13:15:14.257Z", + "end": "2022-05-26T17:08:14.214Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T17:08:14.214Z", + "end": "2022-05-26T21:01:14.171Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "512498684211232768", + "start": "2022-04-25T17:03:21.199Z", + "end": "2022-04-25T17:16:59.002Z", + "events": [ + { + "start": "2022-04-25T17:03:21.199Z", + "end": "2022-04-25T17:06:04.759Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T17:06:04.759Z", + "end": "2022-04-25T17:08:48.319Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T17:08:48.319Z", + "end": "2022-04-25T17:11:31.879Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T17:11:31.879Z", + "end": "2022-04-25T17:14:15.439Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T17:14:15.439Z", + "end": "2022-04-25T17:16:58.999Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "514228311661084682", + "start": "2022-06-22T08:19:03.881Z", + "end": "2022-06-22T12:05:32.729Z", + "events": [ + { + "start": "2022-06-22T08:19:03.881Z", + "end": "2022-06-22T12:05:32.729Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "394970121077311909", + "game": "519644267212177418", + "start": "2022-07-28T04:12:53.675Z", + "end": "2022-07-28T11:37:07.335Z", + "events": [ + { + "start": "2022-07-28T04:12:53.675Z", + "end": "2022-07-28T06:40:58.228Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-28T06:40:58.228Z", + "end": "2022-07-28T09:09:02.781Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T09:09:02.781Z", + "end": "2022-07-28T11:37:07.334Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "866600263421429886", + "game": "576482762446602270", + "start": "2022-04-25T04:59:16.312Z", + "end": "2022-04-25T07:34:23.857Z", + "events": [ + { + "start": "2022-04-25T04:59:16.312Z", + "end": "2022-04-25T05:30:17.821Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-25T05:30:17.821Z", + "end": "2022-04-25T06:01:19.330Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-25T06:01:19.330Z", + "end": "2022-04-25T06:32:20.839Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-25T06:32:20.839Z", + "end": "2022-04-25T07:03:22.348Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-25T07:03:22.348Z", + "end": "2022-04-25T07:34:23.857Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "553697181249437716", + "start": "2022-06-08T02:05:25.321Z", + "end": "2022-06-08T03:15:59.761Z", + "events": [ + { + "start": "2022-06-08T02:05:25.321Z", + "end": "2022-06-08T02:28:56.801Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-08T02:28:56.801Z", + "end": "2022-06-08T02:52:28.281Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T02:52:28.281Z", + "end": "2022-06-08T03:15:59.761Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "512699108809637890", + "start": "2022-05-19T19:17:29.858Z", + "end": "2022-05-20T02:50:42.288Z", + "events": [ + { + "start": "2022-05-19T19:17:29.858Z", + "end": "2022-05-19T21:10:47.965Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T21:10:47.965Z", + "end": "2022-05-19T23:04:06.072Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T23:04:06.072Z", + "end": "2022-05-20T00:57:24.179Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-20T00:57:24.179Z", + "end": "2022-05-20T02:50:42.286Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "131482253203487270", + "game": "553697181249437716", + "start": "2022-05-30T09:14:30.546Z", + "end": "2022-05-30T11:07:06.715Z", + "events": [ + { + "start": "2022-05-30T09:14:30.546Z", + "end": "2022-05-30T09:52:02.602Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T09:52:02.602Z", + "end": "2022-05-30T10:29:34.658Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T10:29:34.658Z", + "end": "2022-05-30T11:07:06.714Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "494763633796983404", + "game": "614380482620293151", + "start": "2022-08-03T15:21:53.186Z", + "end": "2022-08-03T22:56:04.560Z", + "events": [ + { + "start": "2022-08-03T15:21:53.186Z", + "end": "2022-08-03T17:53:16.977Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T17:53:16.977Z", + "end": "2022-08-03T20:24:40.768Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T20:24:40.768Z", + "end": "2022-08-03T22:56:04.559Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "584069374462394368", + "start": "2022-04-27T14:53:39.561Z", + "end": "2022-04-28T00:47:32.080Z", + "events": [ + { + "start": "2022-04-27T14:53:39.561Z", + "end": "2022-04-27T19:50:35.820Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T19:50:35.820Z", + "end": "2022-04-28T00:47:32.079Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "520462578061803588", + "start": "2022-05-11T05:53:05.461Z", + "end": "2022-05-11T08:36:00.537Z", + "events": [ + { + "start": "2022-05-11T05:53:05.461Z", + "end": "2022-05-11T06:47:23.819Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T06:47:23.819Z", + "end": "2022-05-11T07:41:42.177Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T07:41:42.177Z", + "end": "2022-05-11T08:36:00.535Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "131482253203487270", + "game": "597860020935327787", + "start": "2022-07-02T07:24:02.329Z", + "end": "2022-07-02T08:25:53.172Z", + "events": [ + { + "start": "2022-07-02T07:24:02.329Z", + "end": "2022-07-02T07:54:57.750Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T07:54:57.750Z", + "end": "2022-07-02T08:25:53.171Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "841397740041930984", + "game": "528145079819436043", + "start": "2022-07-17T23:14:27.034Z", + "end": "2022-07-18T04:27:39.006Z", + "events": [ + { + "start": "2022-07-17T23:14:27.034Z", + "end": "2022-07-18T00:58:51.024Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T00:58:51.024Z", + "end": "2022-07-18T02:43:15.014Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T02:43:15.014Z", + "end": "2022-07-18T04:27:39.004Z", + "state": "IDLE" + } + ] + }, + { + "user": "106607193284486979", + "game": "575412499399180288", + "start": "2022-06-30T23:00:49.973Z", + "end": "2022-07-01T01:22:23.630Z", + "events": [ + { + "start": "2022-06-30T23:00:49.973Z", + "end": "2022-07-01T00:11:36.801Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T00:11:36.801Z", + "end": "2022-07-01T01:22:23.629Z", + "state": "IDLE" + } + ] + }, + { + "user": "153631479524744694", + "game": "575412499399180288", + "start": "2022-06-07T06:45:31.875Z", + "end": "2022-06-07T10:06:10.024Z", + "events": [ + { + "start": "2022-06-07T06:45:31.875Z", + "end": "2022-06-07T07:35:41.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-07T07:35:41.412Z", + "end": "2022-06-07T08:25:50.949Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T08:25:50.949Z", + "end": "2022-06-07T09:16:00.486Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T09:16:00.486Z", + "end": "2022-06-07T10:06:10.023Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "747381962738157784", + "game": "512498684211232768", + "start": "2022-04-15T07:20:04.956Z", + "end": "2022-04-15T12:25:37.801Z", + "events": [ + { + "start": "2022-04-15T07:20:04.956Z", + "end": "2022-04-15T08:36:28.167Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-15T08:36:28.167Z", + "end": "2022-04-15T09:52:51.378Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T09:52:51.378Z", + "end": "2022-04-15T11:09:14.589Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T11:09:14.589Z", + "end": "2022-04-15T12:25:37.800Z", + "state": "IDLE" + } + ] + }, + { + "user": "549054179973094329", + "game": "575412499399180288", + "start": "2022-04-14T23:36:10.494Z", + "end": "2022-04-15T01:15:58.194Z", + "events": [ + { + "start": "2022-04-14T23:36:10.494Z", + "end": "2022-04-15T01:15:58.194Z", + "state": "IDLE" + } + ] + }, + { + "user": "695941172337689379", + "game": "356875221078245376", + "start": "2022-07-06T19:04:29.970Z", + "end": "2022-07-06T23:57:26.885Z", + "events": [ + { + "start": "2022-07-06T19:04:29.970Z", + "end": "2022-07-06T20:42:08.941Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T20:42:08.941Z", + "end": "2022-07-06T22:19:47.912Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T22:19:47.912Z", + "end": "2022-07-06T23:57:26.883Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "575412499399180288", + "start": "2022-05-11T23:00:25.961Z", + "end": "2022-05-12T02:37:38.840Z", + "events": [ + { + "start": "2022-05-11T23:00:25.961Z", + "end": "2022-05-12T00:49:02.400Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T00:49:02.400Z", + "end": "2022-05-12T02:37:38.839Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "584489284152985092", + "game": "535869836748783616", + "start": "2022-06-11T14:33:10.557Z", + "end": "2022-06-11T22:47:11.897Z", + "events": [ + { + "start": "2022-06-11T14:33:10.557Z", + "end": "2022-06-11T16:11:58.825Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T16:11:58.825Z", + "end": "2022-06-11T17:50:47.093Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-11T17:50:47.093Z", + "end": "2022-06-11T19:29:35.361Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-11T19:29:35.361Z", + "end": "2022-06-11T21:08:23.629Z", + "state": "IDLE" + }, + { + "start": "2022-06-11T21:08:23.629Z", + "end": "2022-06-11T22:47:11.897Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "519644267212177418", + "start": "2022-08-03T14:08:22.068Z", + "end": "2022-08-03T19:41:50.732Z", + "events": [ + { + "start": "2022-08-03T14:08:22.068Z", + "end": "2022-08-03T16:55:06.400Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T16:55:06.400Z", + "end": "2022-08-03T19:41:50.732Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "101572134856427564", + "game": "614448244260339712", + "start": "2022-04-23T10:36:54.041Z", + "end": "2022-04-23T19:03:25.298Z", + "events": [ + { + "start": "2022-04-23T10:36:54.041Z", + "end": "2022-04-23T12:18:12.292Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-23T12:18:12.292Z", + "end": "2022-04-23T13:59:30.543Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-23T13:59:30.543Z", + "end": "2022-04-23T15:40:48.794Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T15:40:48.794Z", + "end": "2022-04-23T17:22:07.045Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-23T17:22:07.045Z", + "end": "2022-04-23T19:03:25.296Z", + "state": "IDLE" + } + ] + }, + { + "user": "101572134856427564", + "game": "512789343157485602", + "start": "2022-06-06T21:59:22.987Z", + "end": "2022-06-07T01:01:49.447Z", + "events": [ + { + "start": "2022-06-06T21:59:22.987Z", + "end": "2022-06-06T22:44:59.602Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T22:44:59.602Z", + "end": "2022-06-06T23:30:36.217Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T23:30:36.217Z", + "end": "2022-06-07T00:16:12.832Z", + "state": "IDLE" + }, + { + "start": "2022-06-07T00:16:12.832Z", + "end": "2022-06-07T01:01:49.447Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "715446191320920764", + "game": "511619499053678668", + "start": "2022-05-02T23:17:23.978Z", + "end": "2022-05-03T05:34:17.923Z", + "events": [ + { + "start": "2022-05-02T23:17:23.978Z", + "end": "2022-05-03T02:25:50.950Z", + "state": "IDLE" + }, + { + "start": "2022-05-03T02:25:50.950Z", + "end": "2022-05-03T05:34:17.922Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "625617695768437507", + "game": "576482762446602270", + "start": "2022-05-15T03:38:08.985Z", + "end": "2022-05-15T04:50:49.467Z", + "events": [ + { + "start": "2022-05-15T03:38:08.985Z", + "end": "2022-05-15T04:02:22.479Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T04:02:22.479Z", + "end": "2022-05-15T04:26:35.973Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T04:26:35.973Z", + "end": "2022-05-15T04:50:49.467Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "200801427122341912", + "game": "520453007578628124", + "start": "2022-07-31T02:59:55.734Z", + "end": "2022-07-31T04:32:26.356Z", + "events": [ + { + "start": "2022-07-31T02:59:55.734Z", + "end": "2022-07-31T03:23:03.389Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-31T03:23:03.389Z", + "end": "2022-07-31T03:46:11.044Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T03:46:11.044Z", + "end": "2022-07-31T04:09:18.699Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-31T04:09:18.699Z", + "end": "2022-07-31T04:32:26.354Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "546175179542364160", + "start": "2022-04-13T13:12:05.037Z", + "end": "2022-04-13T22:15:31.776Z", + "events": [ + { + "start": "2022-04-13T13:12:05.037Z", + "end": "2022-04-13T15:00:46.384Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-13T15:00:46.384Z", + "end": "2022-04-13T16:49:27.731Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T16:49:27.731Z", + "end": "2022-04-13T18:38:09.078Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-13T18:38:09.078Z", + "end": "2022-04-13T20:26:50.425Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T20:26:50.425Z", + "end": "2022-04-13T22:15:31.772Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "510690749854514547", + "game": "554573307161214977", + "start": "2022-06-04T16:30:31.844Z", + "end": "2022-06-04T21:57:57.074Z", + "events": [ + { + "start": "2022-06-04T16:30:31.844Z", + "end": "2022-06-04T18:19:40.254Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T18:19:40.254Z", + "end": "2022-06-04T20:08:48.664Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T20:08:48.664Z", + "end": "2022-06-04T21:57:57.074Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "592976500802846750", + "start": "2022-05-14T06:43:48.403Z", + "end": "2022-05-14T11:53:47.173Z", + "events": [ + { + "start": "2022-05-14T06:43:48.403Z", + "end": "2022-05-14T08:01:18.095Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T08:01:18.095Z", + "end": "2022-05-14T09:18:47.787Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T09:18:47.787Z", + "end": "2022-05-14T10:36:17.479Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T10:36:17.479Z", + "end": "2022-05-14T11:53:47.171Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "512501896896970762", + "start": "2022-07-08T17:59:24.833Z", + "end": "2022-07-09T01:16:12.269Z", + "events": [ + { + "start": "2022-07-08T17:59:24.833Z", + "end": "2022-07-09T01:16:12.269Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "512789120234422301", + "start": "2022-06-05T22:00:46.818Z", + "end": "2022-06-06T07:06:52.804Z", + "events": [ + { + "start": "2022-06-05T22:00:46.818Z", + "end": "2022-06-05T23:50:00.015Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T23:50:00.015Z", + "end": "2022-06-06T01:39:13.212Z", + "state": "IDLE" + }, + { + "start": "2022-06-06T01:39:13.212Z", + "end": "2022-06-06T03:28:26.409Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T03:28:26.409Z", + "end": "2022-06-06T05:17:39.606Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T05:17:39.606Z", + "end": "2022-06-06T07:06:52.803Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "200801427122341912", + "game": "614380482620293151", + "start": "2022-05-24T11:09:44.499Z", + "end": "2022-05-24T20:57:23.870Z", + "events": [ + { + "start": "2022-05-24T11:09:44.499Z", + "end": "2022-05-24T16:03:34.184Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T16:03:34.184Z", + "end": "2022-05-24T20:57:23.869Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "922664752332558395", + "game": "554921822626381879", + "start": "2022-05-26T00:58:35.032Z", + "end": "2022-05-26T02:24:26.321Z", + "events": [ + { + "start": "2022-05-26T00:58:35.032Z", + "end": "2022-05-26T01:27:12.128Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T01:27:12.128Z", + "end": "2022-05-26T01:55:49.224Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T01:55:49.224Z", + "end": "2022-05-26T02:24:26.320Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "519644368735567873", + "start": "2022-04-18T18:30:36.308Z", + "end": "2022-04-19T00:09:15.287Z", + "events": [ + { + "start": "2022-04-18T18:30:36.308Z", + "end": "2022-04-18T19:38:20.103Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T19:38:20.103Z", + "end": "2022-04-18T20:46:03.898Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T20:46:03.898Z", + "end": "2022-04-18T21:53:47.693Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T21:53:47.693Z", + "end": "2022-04-18T23:01:31.488Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T23:01:31.488Z", + "end": "2022-04-19T00:09:15.283Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "572456126872944651", + "start": "2022-05-03T08:08:05.233Z", + "end": "2022-05-03T12:41:22.459Z", + "events": [ + { + "start": "2022-05-03T08:08:05.233Z", + "end": "2022-05-03T09:16:24.539Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-03T09:16:24.539Z", + "end": "2022-05-03T10:24:43.845Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T10:24:43.845Z", + "end": "2022-05-03T11:33:03.151Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-03T11:33:03.151Z", + "end": "2022-05-03T12:41:22.457Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "596421190780633864", + "game": "535384357536399404", + "start": "2022-05-10T01:19:32.531Z", + "end": "2022-05-10T10:26:58.071Z", + "events": [ + { + "start": "2022-05-10T01:19:32.531Z", + "end": "2022-05-10T03:09:01.639Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T03:09:01.639Z", + "end": "2022-05-10T04:58:30.747Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T04:58:30.747Z", + "end": "2022-05-10T06:47:59.855Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T06:47:59.855Z", + "end": "2022-05-10T08:37:28.963Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T08:37:28.963Z", + "end": "2022-05-10T10:26:58.071Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "866600263421429886", + "game": "519644368735567873", + "start": "2022-06-26T05:52:51.449Z", + "end": "2022-06-26T09:04:56.235Z", + "events": [ + { + "start": "2022-06-26T05:52:51.449Z", + "end": "2022-06-26T07:28:53.842Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-26T07:28:53.842Z", + "end": "2022-06-26T09:04:56.235Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "541104083732114799", + "game": "554573307161214977", + "start": "2022-07-10T00:17:01.377Z", + "end": "2022-07-10T04:51:25.434Z", + "events": [ + { + "start": "2022-07-10T00:17:01.377Z", + "end": "2022-07-10T01:48:29.396Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-10T01:48:29.396Z", + "end": "2022-07-10T03:19:57.415Z", + "state": "IDLE" + }, + { + "start": "2022-07-10T03:19:57.415Z", + "end": "2022-07-10T04:51:25.434Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "597588168178663434", + "start": "2022-05-27T17:33:03.797Z", + "end": "2022-05-27T23:05:02.091Z", + "events": [ + { + "start": "2022-05-27T17:33:03.797Z", + "end": "2022-05-27T19:23:43.228Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T19:23:43.228Z", + "end": "2022-05-27T21:14:22.659Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T21:14:22.659Z", + "end": "2022-05-27T23:05:02.090Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "512789120234422301", + "start": "2022-05-06T02:37:22.613Z", + "end": "2022-05-06T07:41:57.151Z", + "events": [ + { + "start": "2022-05-06T02:37:22.613Z", + "end": "2022-05-06T03:53:31.247Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T03:53:31.247Z", + "end": "2022-05-06T05:09:39.881Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T05:09:39.881Z", + "end": "2022-05-06T06:25:48.515Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-06T06:25:48.515Z", + "end": "2022-05-06T07:41:57.149Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "510199020782747732", + "start": "2022-06-06T16:39:37.937Z", + "end": "2022-06-06T20:20:50.799Z", + "events": [ + { + "start": "2022-06-06T16:39:37.937Z", + "end": "2022-06-06T17:53:22.224Z", + "state": "IDLE" + }, + { + "start": "2022-06-06T17:53:22.224Z", + "end": "2022-06-06T19:07:06.511Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T19:07:06.511Z", + "end": "2022-06-06T20:20:50.798Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "791267126190249625", + "game": "520453007578628124", + "start": "2022-07-21T09:53:32.607Z", + "end": "2022-07-21T12:05:39.495Z", + "events": [ + { + "start": "2022-07-21T09:53:32.607Z", + "end": "2022-07-21T10:37:34.903Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T10:37:34.903Z", + "end": "2022-07-21T11:21:37.199Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T11:21:37.199Z", + "end": "2022-07-21T12:05:39.495Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "553697181249437716", + "start": "2022-05-26T00:28:22.266Z", + "end": "2022-05-26T02:36:35.926Z", + "events": [ + { + "start": "2022-05-26T00:28:22.266Z", + "end": "2022-05-26T02:36:35.926Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "614380482620293151", + "start": "2022-05-15T23:08:36.116Z", + "end": "2022-05-16T07:59:29.000Z", + "events": [ + { + "start": "2022-05-15T23:08:36.116Z", + "end": "2022-05-16T02:05:33.744Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T02:05:33.744Z", + "end": "2022-05-16T05:02:31.372Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T05:02:31.372Z", + "end": "2022-05-16T07:59:29.000Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "508057374875975682", + "start": "2022-07-11T21:44:57.012Z", + "end": "2022-07-11T22:19:10.301Z", + "events": [ + { + "start": "2022-07-11T21:44:57.012Z", + "end": "2022-07-11T22:19:10.301Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "614448244260339712", + "start": "2022-06-27T14:06:46.878Z", + "end": "2022-06-27T16:56:21.847Z", + "events": [ + { + "start": "2022-06-27T14:06:46.878Z", + "end": "2022-06-27T14:49:10.620Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T14:49:10.620Z", + "end": "2022-06-27T15:31:34.362Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T15:31:34.362Z", + "end": "2022-06-27T16:13:58.104Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T16:13:58.104Z", + "end": "2022-06-27T16:56:21.846Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "565341641427124244", + "start": "2022-06-06T02:40:47.819Z", + "end": "2022-06-06T08:24:59.691Z", + "events": [ + { + "start": "2022-06-06T02:40:47.819Z", + "end": "2022-06-06T04:35:31.776Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T04:35:31.776Z", + "end": "2022-06-06T06:30:15.733Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T06:30:15.733Z", + "end": "2022-06-06T08:24:59.690Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "768513326430993269", + "game": "518088627234930688", + "start": "2022-07-17T14:02:02.756Z", + "end": "2022-07-17T20:52:08.851Z", + "events": [ + { + "start": "2022-07-17T14:02:02.756Z", + "end": "2022-07-17T16:18:44.787Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T16:18:44.787Z", + "end": "2022-07-17T18:35:26.818Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-17T18:35:26.818Z", + "end": "2022-07-17T20:52:08.849Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951234649334557435", + "game": "565341641427124244", + "start": "2022-06-03T22:27:28.463Z", + "end": "2022-06-04T07:54:38.815Z", + "events": [ + { + "start": "2022-06-03T22:27:28.463Z", + "end": "2022-06-04T03:11:03.639Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T03:11:03.639Z", + "end": "2022-06-04T07:54:38.815Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "922664752332558395", + "game": "592976500802846750", + "start": "2022-07-20T23:14:14.152Z", + "end": "2022-07-21T03:30:30.827Z", + "events": [ + { + "start": "2022-07-20T23:14:14.152Z", + "end": "2022-07-21T00:18:18.320Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T00:18:18.320Z", + "end": "2022-07-21T01:22:22.488Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T01:22:22.488Z", + "end": "2022-07-21T02:26:26.656Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T02:26:26.656Z", + "end": "2022-07-21T03:30:30.824Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "658550407298256890", + "game": "572456126872944651", + "start": "2022-07-11T23:25:35.248Z", + "end": "2022-07-12T04:35:10.951Z", + "events": [ + { + "start": "2022-07-11T23:25:35.248Z", + "end": "2022-07-12T00:42:59.173Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T00:42:59.173Z", + "end": "2022-07-12T02:00:23.098Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T02:00:23.098Z", + "end": "2022-07-12T03:17:47.023Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T03:17:47.023Z", + "end": "2022-07-12T04:35:10.948Z", + "state": "IDLE" + } + ] + }, + { + "user": "549054179973094329", + "game": "512789343157485602", + "start": "2022-05-17T03:18:38.407Z", + "end": "2022-05-17T07:08:19.709Z", + "events": [ + { + "start": "2022-05-17T03:18:38.407Z", + "end": "2022-05-17T04:04:34.667Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T04:04:34.667Z", + "end": "2022-05-17T04:50:30.927Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T04:50:30.927Z", + "end": "2022-05-17T05:36:27.187Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T05:36:27.187Z", + "end": "2022-05-17T06:22:23.447Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T06:22:23.447Z", + "end": "2022-05-17T07:08:19.707Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "747381962738157784", + "game": "606163888052109312", + "start": "2022-06-22T15:43:52.351Z", + "end": "2022-06-22T18:04:48.422Z", + "events": [ + { + "start": "2022-06-22T15:43:52.351Z", + "end": "2022-06-22T18:04:48.422Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "198010595767135394", + "game": "530454325214969866", + "start": "2022-07-02T03:50:05.771Z", + "end": "2022-07-02T13:50:11.867Z", + "events": [ + { + "start": "2022-07-02T03:50:05.771Z", + "end": "2022-07-02T07:10:07.803Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T07:10:07.803Z", + "end": "2022-07-02T10:30:09.835Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T10:30:09.835Z", + "end": "2022-07-02T13:50:11.867Z", + "state": "IDLE" + } + ] + }, + { + "user": "161887854890745672", + "game": "535384357536399404", + "start": "2022-05-19T02:50:21.787Z", + "end": "2022-05-19T05:17:57.503Z", + "events": [ + { + "start": "2022-05-19T02:50:21.787Z", + "end": "2022-05-19T05:17:57.503Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "841397740041930984", + "game": "569008830701240340", + "start": "2022-08-02T09:12:28.406Z", + "end": "2022-08-02T11:06:32.430Z", + "events": [ + { + "start": "2022-08-02T09:12:28.406Z", + "end": "2022-08-02T09:35:17.210Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T09:35:17.210Z", + "end": "2022-08-02T09:58:06.014Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T09:58:06.014Z", + "end": "2022-08-02T10:20:54.818Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T10:20:54.818Z", + "end": "2022-08-02T10:43:43.622Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T10:43:43.622Z", + "end": "2022-08-02T11:06:32.426Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "541104083732114799", + "game": "356875221078245376", + "start": "2022-07-30T16:10:34.016Z", + "end": "2022-07-30T21:33:58.902Z", + "events": [ + { + "start": "2022-07-30T16:10:34.016Z", + "end": "2022-07-30T17:15:14.993Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-30T17:15:14.993Z", + "end": "2022-07-30T18:19:55.970Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T18:19:55.970Z", + "end": "2022-07-30T19:24:36.947Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T19:24:36.947Z", + "end": "2022-07-30T20:29:17.924Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T20:29:17.924Z", + "end": "2022-07-30T21:33:58.901Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "596421190780633864", + "game": "558547388583772201", + "start": "2022-04-27T18:57:31.827Z", + "end": "2022-04-28T00:21:10.271Z", + "events": [ + { + "start": "2022-04-27T18:57:31.827Z", + "end": "2022-04-27T20:45:24.641Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T20:45:24.641Z", + "end": "2022-04-27T22:33:17.455Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T22:33:17.455Z", + "end": "2022-04-28T00:21:10.269Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "576482762446602270", + "start": "2022-07-26T14:17:38.356Z", + "end": "2022-07-26T20:22:37.614Z", + "events": [ + { + "start": "2022-07-26T14:17:38.356Z", + "end": "2022-07-26T20:22:37.614Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "520453007578628124", + "start": "2022-05-13T08:38:56.279Z", + "end": "2022-05-13T15:14:39.782Z", + "events": [ + { + "start": "2022-05-13T08:38:56.279Z", + "end": "2022-05-13T15:14:39.782Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "590467327095087095", + "game": "512699108809637890", + "start": "2022-04-28T16:38:47.736Z", + "end": "2022-04-28T17:41:16.812Z", + "events": [ + { + "start": "2022-04-28T16:38:47.736Z", + "end": "2022-04-28T16:59:37.428Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T16:59:37.428Z", + "end": "2022-04-28T17:20:27.120Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T17:20:27.120Z", + "end": "2022-04-28T17:41:16.812Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "394970121077311909", + "game": "592976500802846750", + "start": "2022-06-09T18:39:56.191Z", + "end": "2022-06-09T18:57:29.987Z", + "events": [ + { + "start": "2022-06-09T18:39:56.191Z", + "end": "2022-06-09T18:57:29.987Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "521842831262875670", + "start": "2022-05-01T23:21:35.835Z", + "end": "2022-05-02T07:11:12.334Z", + "events": [ + { + "start": "2022-05-01T23:21:35.835Z", + "end": "2022-05-02T01:18:59.959Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T01:18:59.959Z", + "end": "2022-05-02T03:16:24.083Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T03:16:24.083Z", + "end": "2022-05-02T05:13:48.207Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T05:13:48.207Z", + "end": "2022-05-02T07:11:12.331Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "554573307161214977", + "start": "2022-07-28T07:41:23.954Z", + "end": "2022-07-28T16:24:31.015Z", + "events": [ + { + "start": "2022-07-28T07:41:23.954Z", + "end": "2022-07-28T09:26:01.366Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T09:26:01.366Z", + "end": "2022-07-28T11:10:38.778Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T11:10:38.778Z", + "end": "2022-07-28T12:55:16.190Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T12:55:16.190Z", + "end": "2022-07-28T14:39:53.602Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-28T14:39:53.602Z", + "end": "2022-07-28T16:24:31.014Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "569008830701240340", + "start": "2022-06-03T21:14:03.977Z", + "end": "2022-06-04T01:12:25.895Z", + "events": [ + { + "start": "2022-06-03T21:14:03.977Z", + "end": "2022-06-03T22:01:44.360Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T22:01:44.360Z", + "end": "2022-06-03T22:49:24.743Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T22:49:24.743Z", + "end": "2022-06-03T23:37:05.126Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T23:37:05.126Z", + "end": "2022-06-04T00:24:45.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T00:24:45.509Z", + "end": "2022-06-04T01:12:25.892Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "900234800332446962", + "game": "530454325214969866", + "start": "2022-04-25T07:42:43.865Z", + "end": "2022-04-25T12:53:46.887Z", + "events": [ + { + "start": "2022-04-25T07:42:43.865Z", + "end": "2022-04-25T10:18:15.376Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T10:18:15.376Z", + "end": "2022-04-25T12:53:46.887Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "535384357536399404", + "start": "2022-07-20T03:02:15.661Z", + "end": "2022-07-20T04:29:55.768Z", + "events": [ + { + "start": "2022-07-20T03:02:15.661Z", + "end": "2022-07-20T03:19:47.682Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T03:19:47.682Z", + "end": "2022-07-20T03:37:19.703Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T03:37:19.703Z", + "end": "2022-07-20T03:54:51.724Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T03:54:51.724Z", + "end": "2022-07-20T04:12:23.745Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T04:12:23.745Z", + "end": "2022-07-20T04:29:55.766Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "518088627234930688", + "start": "2022-06-30T07:41:04.001Z", + "end": "2022-06-30T17:18:07.666Z", + "events": [ + { + "start": "2022-06-30T07:41:04.001Z", + "end": "2022-06-30T17:18:07.666Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "356875221078245376", + "start": "2022-06-20T09:17:12.029Z", + "end": "2022-06-20T14:26:23.152Z", + "events": [ + { + "start": "2022-06-20T09:17:12.029Z", + "end": "2022-06-20T11:51:47.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T11:51:47.590Z", + "end": "2022-06-20T14:26:23.151Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "560781100197216267", + "start": "2022-08-05T07:20:02.546Z", + "end": "2022-08-05T15:33:34.806Z", + "events": [ + { + "start": "2022-08-05T07:20:02.546Z", + "end": "2022-08-05T08:58:44.998Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T08:58:44.998Z", + "end": "2022-08-05T10:37:27.450Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T10:37:27.450Z", + "end": "2022-08-05T12:16:09.902Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-05T12:16:09.902Z", + "end": "2022-08-05T13:54:52.354Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T13:54:52.354Z", + "end": "2022-08-05T15:33:34.806Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "457796054587169483", + "game": "614448244260339712", + "start": "2022-04-14T16:40:03.991Z", + "end": "2022-04-14T21:56:24.346Z", + "events": [ + { + "start": "2022-04-14T16:40:03.991Z", + "end": "2022-04-14T21:56:24.346Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "530454325214969866", + "start": "2022-05-17T04:59:04.940Z", + "end": "2022-05-17T07:01:35.666Z", + "events": [ + { + "start": "2022-05-17T04:59:04.940Z", + "end": "2022-05-17T05:23:35.085Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T05:23:35.085Z", + "end": "2022-05-17T05:48:05.230Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T05:48:05.230Z", + "end": "2022-05-17T06:12:35.375Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T06:12:35.375Z", + "end": "2022-05-17T06:37:05.520Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T06:37:05.520Z", + "end": "2022-05-17T07:01:35.665Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "535384357536399404", + "start": "2022-04-27T19:13:49.655Z", + "end": "2022-04-28T01:08:11.592Z", + "events": [ + { + "start": "2022-04-27T19:13:49.655Z", + "end": "2022-04-28T01:08:11.592Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "841397740041930984", + "game": "512789427462995988", + "start": "2022-08-03T10:35:50.118Z", + "end": "2022-08-03T17:08:41.424Z", + "events": [ + { + "start": "2022-08-03T10:35:50.118Z", + "end": "2022-08-03T11:54:24.379Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T11:54:24.379Z", + "end": "2022-08-03T13:12:58.640Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T13:12:58.640Z", + "end": "2022-08-03T14:31:32.901Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T14:31:32.901Z", + "end": "2022-08-03T15:50:07.162Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T15:50:07.162Z", + "end": "2022-08-03T17:08:41.423Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "938976307338486810", + "game": "526489929631531009", + "start": "2022-04-22T22:59:47.137Z", + "end": "2022-04-23T02:02:33.052Z", + "events": [ + { + "start": "2022-04-22T22:59:47.137Z", + "end": "2022-04-23T02:02:33.052Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "542474758835535872", + "start": "2022-06-07T12:00:16.788Z", + "end": "2022-06-07T12:26:11.029Z", + "events": [ + { + "start": "2022-06-07T12:00:16.788Z", + "end": "2022-06-07T12:13:13.908Z", + "state": "IDLE" + }, + { + "start": "2022-06-07T12:13:13.908Z", + "end": "2022-06-07T12:26:11.028Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "900234800332446962", + "game": "546175179542364160", + "start": "2022-04-22T02:35:52.291Z", + "end": "2022-04-22T12:17:54.683Z", + "events": [ + { + "start": "2022-04-22T02:35:52.291Z", + "end": "2022-04-22T07:26:53.487Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T07:26:53.487Z", + "end": "2022-04-22T12:17:54.683Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "378424071510192465", + "game": "553697181249437716", + "start": "2022-07-11T14:07:30.778Z", + "end": "2022-07-11T16:50:37.749Z", + "events": [ + { + "start": "2022-07-11T14:07:30.778Z", + "end": "2022-07-11T14:40:08.172Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T14:40:08.172Z", + "end": "2022-07-11T15:12:45.566Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T15:12:45.566Z", + "end": "2022-07-11T15:45:22.960Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T15:45:22.960Z", + "end": "2022-07-11T16:18:00.354Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T16:18:00.354Z", + "end": "2022-07-11T16:50:37.748Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "535384357536399404", + "start": "2022-05-01T08:46:25.984Z", + "end": "2022-05-01T17:32:45.409Z", + "events": [ + { + "start": "2022-05-01T08:46:25.984Z", + "end": "2022-05-01T17:32:45.409Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "606163888052109312", + "start": "2022-07-22T15:50:03.252Z", + "end": "2022-07-23T00:42:56.348Z", + "events": [ + { + "start": "2022-07-22T15:50:03.252Z", + "end": "2022-07-22T17:36:37.871Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T17:36:37.871Z", + "end": "2022-07-22T19:23:12.490Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T19:23:12.490Z", + "end": "2022-07-22T21:09:47.109Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T21:09:47.109Z", + "end": "2022-07-22T22:56:21.728Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T22:56:21.728Z", + "end": "2022-07-23T00:42:56.347Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "911848869344266044", + "game": "512789427462995988", + "start": "2022-05-14T04:15:57.127Z", + "end": "2022-05-14T12:20:41.122Z", + "events": [ + { + "start": "2022-05-14T04:15:57.127Z", + "end": "2022-05-14T05:52:53.926Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T05:52:53.926Z", + "end": "2022-05-14T07:29:50.725Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T07:29:50.725Z", + "end": "2022-05-14T09:06:47.524Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T09:06:47.524Z", + "end": "2022-05-14T10:43:44.323Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T10:43:44.323Z", + "end": "2022-05-14T12:20:41.122Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "360264570671216445", + "game": "558547388583772201", + "start": "2022-07-04T17:31:19.808Z", + "end": "2022-07-04T19:56:07.562Z", + "events": [ + { + "start": "2022-07-04T17:31:19.808Z", + "end": "2022-07-04T19:56:07.562Z", + "state": "IDLE" + } + ] + }, + { + "user": "467658810442648809", + "game": "520462578061803588", + "start": "2022-06-26T21:26:04.439Z", + "end": "2022-06-27T04:04:20.683Z", + "events": [ + { + "start": "2022-06-26T21:26:04.439Z", + "end": "2022-06-26T23:05:38.500Z", + "state": "IDLE" + }, + { + "start": "2022-06-26T23:05:38.500Z", + "end": "2022-06-27T00:45:12.561Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T00:45:12.561Z", + "end": "2022-06-27T02:24:46.622Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:24:46.622Z", + "end": "2022-06-27T04:04:20.683Z", + "state": "IDLE" + } + ] + }, + { + "user": "453350270016457959", + "game": "597588168178663434", + "start": "2022-04-22T07:11:32.370Z", + "end": "2022-04-22T12:47:08.931Z", + "events": [ + { + "start": "2022-04-22T07:11:32.370Z", + "end": "2022-04-22T08:18:39.682Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T08:18:39.682Z", + "end": "2022-04-22T09:25:46.994Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T09:25:46.994Z", + "end": "2022-04-22T10:32:54.306Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T10:32:54.306Z", + "end": "2022-04-22T11:40:01.618Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-22T11:40:01.618Z", + "end": "2022-04-22T12:47:08.930Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "535371564850479134", + "start": "2022-07-28T07:23:11.688Z", + "end": "2022-07-28T16:34:45.573Z", + "events": [ + { + "start": "2022-07-28T07:23:11.688Z", + "end": "2022-07-28T16:34:45.573Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786084290971413565", + "game": "700136079562375258", + "start": "2022-06-13T07:13:26.568Z", + "end": "2022-06-13T11:11:34.002Z", + "events": [ + { + "start": "2022-06-13T07:13:26.568Z", + "end": "2022-06-13T08:12:58.426Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-13T08:12:58.426Z", + "end": "2022-06-13T09:12:30.284Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T09:12:30.284Z", + "end": "2022-06-13T10:12:02.142Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T10:12:02.142Z", + "end": "2022-06-13T11:11:34.000Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "512699108809637890", + "start": "2022-07-29T03:27:43.475Z", + "end": "2022-07-29T04:36:43.843Z", + "events": [ + { + "start": "2022-07-29T03:27:43.475Z", + "end": "2022-07-29T03:41:31.548Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T03:41:31.548Z", + "end": "2022-07-29T03:55:19.621Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T03:55:19.621Z", + "end": "2022-07-29T04:09:07.694Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T04:09:07.694Z", + "end": "2022-07-29T04:22:55.767Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T04:22:55.767Z", + "end": "2022-07-29T04:36:43.840Z", + "state": "IDLE" + } + ] + }, + { + "user": "900234800332446962", + "game": "512498684211232768", + "start": "2022-05-05T03:48:40.673Z", + "end": "2022-05-05T09:09:25.372Z", + "events": [ + { + "start": "2022-05-05T03:48:40.673Z", + "end": "2022-05-05T09:09:25.372Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "549054179973094329", + "game": "549512435585908756", + "start": "2022-04-20T11:00:52.700Z", + "end": "2022-04-20T15:53:59.285Z", + "events": [ + { + "start": "2022-04-20T11:00:52.700Z", + "end": "2022-04-20T13:27:25.992Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T13:27:25.992Z", + "end": "2022-04-20T15:53:59.284Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "512699108809637890", + "start": "2022-07-29T13:06:01.761Z", + "end": "2022-07-29T15:22:31.899Z", + "events": [ + { + "start": "2022-07-29T13:06:01.761Z", + "end": "2022-07-29T13:51:31.807Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T13:51:31.807Z", + "end": "2022-07-29T14:37:01.853Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T14:37:01.853Z", + "end": "2022-07-29T15:22:31.899Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "213263852824749877", + "game": "520462578061803588", + "start": "2022-04-18T08:53:15.429Z", + "end": "2022-04-18T15:07:41.255Z", + "events": [ + { + "start": "2022-04-18T08:53:15.429Z", + "end": "2022-04-18T10:08:08.594Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T10:08:08.594Z", + "end": "2022-04-18T11:23:01.759Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-18T11:23:01.759Z", + "end": "2022-04-18T12:37:54.924Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T12:37:54.924Z", + "end": "2022-04-18T13:52:48.089Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T13:52:48.089Z", + "end": "2022-04-18T15:07:41.254Z", + "state": "IDLE" + } + ] + }, + { + "user": "453350270016457959", + "game": "597588168178663434", + "start": "2022-06-10T16:35:31.961Z", + "end": "2022-06-10T23:15:52.082Z", + "events": [ + { + "start": "2022-06-10T16:35:31.961Z", + "end": "2022-06-10T23:15:52.082Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "713444659295913502", + "game": "606163888052109312", + "start": "2022-05-13T00:48:54.656Z", + "end": "2022-05-13T09:40:42.192Z", + "events": [ + { + "start": "2022-05-13T00:48:54.656Z", + "end": "2022-05-13T02:35:16.163Z", + "state": "IDLE" + }, + { + "start": "2022-05-13T02:35:16.163Z", + "end": "2022-05-13T04:21:37.670Z", + "state": "IDLE" + }, + { + "start": "2022-05-13T04:21:37.670Z", + "end": "2022-05-13T06:07:59.177Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-13T06:07:59.177Z", + "end": "2022-05-13T07:54:20.684Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-13T07:54:20.684Z", + "end": "2022-05-13T09:40:42.191Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "514228311661084682", + "start": "2022-04-15T11:31:39.639Z", + "end": "2022-04-15T21:17:36.020Z", + "events": [ + { + "start": "2022-04-15T11:31:39.639Z", + "end": "2022-04-15T21:17:36.020Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "572456126872944651", + "start": "2022-07-27T04:09:56.759Z", + "end": "2022-07-27T10:41:45.464Z", + "events": [ + { + "start": "2022-07-27T04:09:56.759Z", + "end": "2022-07-27T05:28:18.500Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T05:28:18.500Z", + "end": "2022-07-27T06:46:40.241Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T06:46:40.241Z", + "end": "2022-07-27T08:05:01.982Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T08:05:01.982Z", + "end": "2022-07-27T09:23:23.723Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T09:23:23.723Z", + "end": "2022-07-27T10:41:45.464Z", + "state": "IDLE" + } + ] + }, + { + "user": "182925797752958092", + "game": "597588168178663434", + "start": "2022-04-17T14:24:14.222Z", + "end": "2022-04-17T21:55:00.093Z", + "events": [ + { + "start": "2022-04-17T14:24:14.222Z", + "end": "2022-04-17T21:55:00.093Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "597588168178663434", + "start": "2022-05-15T01:42:34.656Z", + "end": "2022-05-15T03:10:29.272Z", + "events": [ + { + "start": "2022-05-15T01:42:34.656Z", + "end": "2022-05-15T03:10:29.272Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "584069374462394368", + "start": "2022-05-08T09:28:55.956Z", + "end": "2022-05-08T14:12:25.744Z", + "events": [ + { + "start": "2022-05-08T09:28:55.956Z", + "end": "2022-05-08T10:25:37.913Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T10:25:37.913Z", + "end": "2022-05-08T11:22:19.870Z", + "state": "IDLE" + }, + { + "start": "2022-05-08T11:22:19.870Z", + "end": "2022-05-08T12:19:01.827Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T12:19:01.827Z", + "end": "2022-05-08T13:15:43.784Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T13:15:43.784Z", + "end": "2022-05-08T14:12:25.741Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "519644267212177418", + "start": "2022-07-04T04:00:07.360Z", + "end": "2022-07-04T05:00:16.332Z", + "events": [ + { + "start": "2022-07-04T04:00:07.360Z", + "end": "2022-07-04T05:00:16.332Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "495724335127362694", + "game": "597588168178663434", + "start": "2022-07-11T22:59:14.331Z", + "end": "2022-07-12T03:28:33.167Z", + "events": [ + { + "start": "2022-07-11T22:59:14.331Z", + "end": "2022-07-12T00:29:00.609Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T00:29:00.609Z", + "end": "2022-07-12T01:58:46.887Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T01:58:46.887Z", + "end": "2022-07-12T03:28:33.165Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "542474758835535872", + "start": "2022-08-01T12:53:46.565Z", + "end": "2022-08-01T22:29:38.582Z", + "events": [ + { + "start": "2022-08-01T12:53:46.565Z", + "end": "2022-08-01T15:17:44.569Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-01T15:17:44.569Z", + "end": "2022-08-01T17:41:42.573Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T17:41:42.573Z", + "end": "2022-08-01T20:05:40.577Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T20:05:40.577Z", + "end": "2022-08-01T22:29:38.581Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "614380482620293151", + "start": "2022-05-27T05:33:39.529Z", + "end": "2022-05-27T09:39:34.482Z", + "events": [ + { + "start": "2022-05-27T05:33:39.529Z", + "end": "2022-05-27T06:22:50.519Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T06:22:50.519Z", + "end": "2022-05-27T07:12:01.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-27T07:12:01.509Z", + "end": "2022-05-27T08:01:12.499Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T08:01:12.499Z", + "end": "2022-05-27T08:50:23.489Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T08:50:23.489Z", + "end": "2022-05-27T09:39:34.479Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "572456126872944651", + "start": "2022-05-02T18:58:10.657Z", + "end": "2022-05-02T23:38:19.363Z", + "events": [ + { + "start": "2022-05-02T18:58:10.657Z", + "end": "2022-05-02T20:08:12.833Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T20:08:12.833Z", + "end": "2022-05-02T21:18:15.009Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T21:18:15.009Z", + "end": "2022-05-02T22:28:17.185Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T22:28:17.185Z", + "end": "2022-05-02T23:38:19.361Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "715446191320920764", + "game": "606163888052109312", + "start": "2022-06-19T19:05:08.362Z", + "end": "2022-06-19T20:49:43.521Z", + "events": [ + { + "start": "2022-06-19T19:05:08.362Z", + "end": "2022-06-19T19:26:03.393Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T19:26:03.393Z", + "end": "2022-06-19T19:46:58.424Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T19:46:58.424Z", + "end": "2022-06-19T20:07:53.455Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T20:07:53.455Z", + "end": "2022-06-19T20:28:48.486Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T20:28:48.486Z", + "end": "2022-06-19T20:49:43.517Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "355708392202112685", + "game": "588739017718366208", + "start": "2022-06-21T17:21:05.360Z", + "end": "2022-06-21T19:18:09.270Z", + "events": [ + { + "start": "2022-06-21T17:21:05.360Z", + "end": "2022-06-21T17:50:21.337Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T17:50:21.337Z", + "end": "2022-06-21T18:19:37.314Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T18:19:37.314Z", + "end": "2022-06-21T18:48:53.291Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T18:48:53.291Z", + "end": "2022-06-21T19:18:09.268Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "576482762446602270", + "start": "2022-07-14T16:46:25.631Z", + "end": "2022-07-14T16:52:38.938Z", + "events": [ + { + "start": "2022-07-14T16:46:25.631Z", + "end": "2022-07-14T16:47:58.957Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T16:47:58.957Z", + "end": "2022-07-14T16:49:32.283Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T16:49:32.283Z", + "end": "2022-07-14T16:51:05.609Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T16:51:05.609Z", + "end": "2022-07-14T16:52:38.935Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "636935635446628860", + "game": "700136079562375258", + "start": "2022-05-28T07:13:01.105Z", + "end": "2022-05-28T10:32:02.137Z", + "events": [ + { + "start": "2022-05-28T07:13:01.105Z", + "end": "2022-05-28T08:19:21.449Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T08:19:21.449Z", + "end": "2022-05-28T09:25:41.793Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T09:25:41.793Z", + "end": "2022-05-28T10:32:02.137Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "123137660023366590", + "game": "554573307161214977", + "start": "2022-07-19T04:46:39.274Z", + "end": "2022-07-19T14:41:03.881Z", + "events": [ + { + "start": "2022-07-19T04:46:39.274Z", + "end": "2022-07-19T09:43:51.577Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T09:43:51.577Z", + "end": "2022-07-19T14:41:03.880Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "463820732483181525", + "game": "614448244260339712", + "start": "2022-06-13T06:12:52.368Z", + "end": "2022-06-13T08:57:07.113Z", + "events": [ + { + "start": "2022-06-13T06:12:52.368Z", + "end": "2022-06-13T07:07:37.283Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T07:07:37.283Z", + "end": "2022-06-13T08:02:22.198Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T08:02:22.198Z", + "end": "2022-06-13T08:57:07.113Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "528145079819436043", + "start": "2022-04-30T22:02:30.646Z", + "end": "2022-05-01T04:12:08.028Z", + "events": [ + { + "start": "2022-04-30T22:02:30.646Z", + "end": "2022-05-01T00:05:43.106Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T00:05:43.106Z", + "end": "2022-05-01T02:08:55.566Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T02:08:55.566Z", + "end": "2022-05-01T04:12:08.026Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "614380482620293151", + "start": "2022-07-27T16:22:38.408Z", + "end": "2022-07-27T22:52:55.210Z", + "events": [ + { + "start": "2022-07-27T16:22:38.408Z", + "end": "2022-07-27T17:40:41.768Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T17:40:41.768Z", + "end": "2022-07-27T18:58:45.128Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T18:58:45.128Z", + "end": "2022-07-27T20:16:48.488Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T20:16:48.488Z", + "end": "2022-07-27T21:34:51.848Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T21:34:51.848Z", + "end": "2022-07-27T22:52:55.208Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302714757313826277", + "game": "523154344187789312", + "start": "2022-04-14T21:39:23.042Z", + "end": "2022-04-15T04:38:19.814Z", + "events": [ + { + "start": "2022-04-14T21:39:23.042Z", + "end": "2022-04-14T23:03:10.396Z", + "state": "IDLE" + }, + { + "start": "2022-04-14T23:03:10.396Z", + "end": "2022-04-15T00:26:57.750Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T00:26:57.750Z", + "end": "2022-04-15T01:50:45.104Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-15T01:50:45.104Z", + "end": "2022-04-15T03:14:32.458Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T03:14:32.458Z", + "end": "2022-04-15T04:38:19.812Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "606163888052109312", + "start": "2022-06-16T13:30:45.105Z", + "end": "2022-06-16T22:02:17.579Z", + "events": [ + { + "start": "2022-06-16T13:30:45.105Z", + "end": "2022-06-16T22:02:17.579Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "569008830701240340", + "start": "2022-07-25T02:25:49.690Z", + "end": "2022-07-25T09:57:20.251Z", + "events": [ + { + "start": "2022-07-25T02:25:49.690Z", + "end": "2022-07-25T09:57:20.251Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "264503060524837708", + "game": "356875221078245376", + "start": "2022-04-29T21:22:56.242Z", + "end": "2022-04-29T23:11:48.660Z", + "events": [ + { + "start": "2022-04-29T21:22:56.242Z", + "end": "2022-04-29T21:44:42.725Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T21:44:42.725Z", + "end": "2022-04-29T22:06:29.208Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T22:06:29.208Z", + "end": "2022-04-29T22:28:15.691Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T22:28:15.691Z", + "end": "2022-04-29T22:50:02.174Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T22:50:02.174Z", + "end": "2022-04-29T23:11:48.657Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "600708263053781983", + "game": "606163888052109312", + "start": "2022-04-19T22:45:14.381Z", + "end": "2022-04-20T01:00:27.890Z", + "events": [ + { + "start": "2022-04-19T22:45:14.381Z", + "end": "2022-04-19T23:52:51.135Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T23:52:51.135Z", + "end": "2022-04-20T01:00:27.889Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "800318424708872602", + "game": "511619499053678668", + "start": "2022-06-13T17:17:45.564Z", + "end": "2022-06-14T01:56:47.805Z", + "events": [ + { + "start": "2022-06-13T17:17:45.564Z", + "end": "2022-06-14T01:56:47.805Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "519644267212177418", + "start": "2022-07-20T19:24:11.603Z", + "end": "2022-07-20T20:16:25.073Z", + "events": [ + { + "start": "2022-07-20T19:24:11.603Z", + "end": "2022-07-20T19:41:36.093Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T19:41:36.093Z", + "end": "2022-07-20T19:59:00.583Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-20T19:59:00.583Z", + "end": "2022-07-20T20:16:25.073Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "774637841058278398", + "game": "512789343157485602", + "start": "2022-04-26T22:17:35.778Z", + "end": "2022-04-27T02:49:01.545Z", + "events": [ + { + "start": "2022-04-26T22:17:35.778Z", + "end": "2022-04-26T23:11:52.931Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T23:11:52.931Z", + "end": "2022-04-27T00:06:10.084Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T00:06:10.084Z", + "end": "2022-04-27T01:00:27.237Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:00:27.237Z", + "end": "2022-04-27T01:54:44.390Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:54:44.390Z", + "end": "2022-04-27T02:49:01.543Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "520462578061803588", + "start": "2022-04-26T20:34:07.787Z", + "end": "2022-04-27T01:47:20.833Z", + "events": [ + { + "start": "2022-04-26T20:34:07.787Z", + "end": "2022-04-26T22:18:32.135Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-26T22:18:32.135Z", + "end": "2022-04-27T00:02:56.483Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T00:02:56.483Z", + "end": "2022-04-27T01:47:20.831Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "559757870366930730", + "game": "597588168178663434", + "start": "2022-05-01T06:23:59.042Z", + "end": "2022-05-01T09:22:30.127Z", + "events": [ + { + "start": "2022-05-01T06:23:59.042Z", + "end": "2022-05-01T07:08:36.813Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T07:08:36.813Z", + "end": "2022-05-01T07:53:14.584Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-01T07:53:14.584Z", + "end": "2022-05-01T08:37:52.355Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T08:37:52.355Z", + "end": "2022-05-01T09:22:30.126Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "549054179973094329", + "game": "584069374462394368", + "start": "2022-05-08T17:59:47.471Z", + "end": "2022-05-09T03:39:09.531Z", + "events": [ + { + "start": "2022-05-08T17:59:47.471Z", + "end": "2022-05-08T21:12:54.824Z", + "state": "IDLE" + }, + { + "start": "2022-05-08T21:12:54.824Z", + "end": "2022-05-09T00:26:02.177Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-09T00:26:02.177Z", + "end": "2022-05-09T03:39:09.530Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "553697181249437716", + "start": "2022-07-16T21:51:22.649Z", + "end": "2022-07-17T00:28:51.829Z", + "events": [ + { + "start": "2022-07-16T21:51:22.649Z", + "end": "2022-07-16T22:22:52.485Z", + "state": "IDLE" + }, + { + "start": "2022-07-16T22:22:52.485Z", + "end": "2022-07-16T22:54:22.321Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T22:54:22.321Z", + "end": "2022-07-16T23:25:52.157Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T23:25:52.157Z", + "end": "2022-07-16T23:57:21.993Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-16T23:57:21.993Z", + "end": "2022-07-17T00:28:51.829Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "424856688594618054", + "game": "518088627234930688", + "start": "2022-06-21T08:27:20.558Z", + "end": "2022-06-21T13:59:11.005Z", + "events": [ + { + "start": "2022-06-21T08:27:20.558Z", + "end": "2022-06-21T09:50:18.169Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T09:50:18.169Z", + "end": "2022-06-21T11:13:15.780Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T11:13:15.780Z", + "end": "2022-06-21T12:36:13.391Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T12:36:13.391Z", + "end": "2022-06-21T13:59:11.002Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "126384926926158511", + "game": "528145079819436043", + "start": "2022-07-18T21:37:24.925Z", + "end": "2022-07-19T07:23:27.055Z", + "events": [ + { + "start": "2022-07-18T21:37:24.925Z", + "end": "2022-07-18T23:34:37.351Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T23:34:37.351Z", + "end": "2022-07-19T01:31:49.777Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T01:31:49.777Z", + "end": "2022-07-19T03:29:02.203Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T03:29:02.203Z", + "end": "2022-07-19T05:26:14.629Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T05:26:14.629Z", + "end": "2022-07-19T07:23:27.055Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "568387317892070397", + "game": "526489929631531009", + "start": "2022-05-11T05:11:39.193Z", + "end": "2022-05-11T12:41:24.603Z", + "events": [ + { + "start": "2022-05-11T05:11:39.193Z", + "end": "2022-05-11T07:41:34.329Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T07:41:34.329Z", + "end": "2022-05-11T10:11:29.465Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T10:11:29.465Z", + "end": "2022-05-11T12:41:24.601Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "511619499053678668", + "start": "2022-07-22T18:41:06.466Z", + "end": "2022-07-22T23:04:30.723Z", + "events": [ + { + "start": "2022-07-22T18:41:06.466Z", + "end": "2022-07-22T19:33:47.317Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T19:33:47.317Z", + "end": "2022-07-22T20:26:28.168Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T20:26:28.168Z", + "end": "2022-07-22T21:19:09.019Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T21:19:09.019Z", + "end": "2022-07-22T22:11:49.870Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T22:11:49.870Z", + "end": "2022-07-22T23:04:30.721Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "542075586886107149", + "start": "2022-06-21T10:41:25.648Z", + "end": "2022-06-21T20:04:53.561Z", + "events": [ + { + "start": "2022-06-21T10:41:25.648Z", + "end": "2022-06-21T15:23:09.604Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T15:23:09.604Z", + "end": "2022-06-21T20:04:53.560Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "512789427462995988", + "start": "2022-06-11T04:26:23.797Z", + "end": "2022-06-11T06:08:46.526Z", + "events": [ + { + "start": "2022-06-11T04:26:23.797Z", + "end": "2022-06-11T05:00:31.373Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T05:00:31.373Z", + "end": "2022-06-11T05:34:38.949Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-11T05:34:38.949Z", + "end": "2022-06-11T06:08:46.525Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "565341641427124244", + "start": "2022-05-16T10:29:08.191Z", + "end": "2022-05-16T13:49:35.420Z", + "events": [ + { + "start": "2022-05-16T10:29:08.191Z", + "end": "2022-05-16T11:35:57.267Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T11:35:57.267Z", + "end": "2022-05-16T12:42:46.343Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T12:42:46.343Z", + "end": "2022-05-16T13:49:35.419Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "605723970188938456", + "game": "528145079819436043", + "start": "2022-05-18T10:41:01.829Z", + "end": "2022-05-18T12:30:21.384Z", + "events": [ + { + "start": "2022-05-18T10:41:01.829Z", + "end": "2022-05-18T11:35:41.606Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T11:35:41.606Z", + "end": "2022-05-18T12:30:21.383Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "161887854890745672", + "game": "558547388583772201", + "start": "2022-06-11T18:06:53.475Z", + "end": "2022-06-11T20:09:55.440Z", + "events": [ + { + "start": "2022-06-11T18:06:53.475Z", + "end": "2022-06-11T19:08:24.457Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T19:08:24.457Z", + "end": "2022-06-11T20:09:55.439Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "269014914705953013", + "game": "535869836748783616", + "start": "2022-05-15T13:36:07.616Z", + "end": "2022-05-15T16:59:04.511Z", + "events": [ + { + "start": "2022-05-15T13:36:07.616Z", + "end": "2022-05-15T15:17:36.063Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T15:17:36.063Z", + "end": "2022-05-15T16:59:04.510Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "200801427122341912", + "game": "614380482620293151", + "start": "2022-07-19T03:16:53.141Z", + "end": "2022-07-19T12:35:59.683Z", + "events": [ + { + "start": "2022-07-19T03:16:53.141Z", + "end": "2022-07-19T05:08:42.449Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T05:08:42.449Z", + "end": "2022-07-19T07:00:31.757Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T07:00:31.757Z", + "end": "2022-07-19T08:52:21.065Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T08:52:21.065Z", + "end": "2022-07-19T10:44:10.373Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T10:44:10.373Z", + "end": "2022-07-19T12:35:59.681Z", + "state": "IDLE" + } + ] + }, + { + "user": "510690749854514547", + "game": "530454325214969866", + "start": "2022-05-22T14:06:24.701Z", + "end": "2022-05-22T18:18:55.484Z", + "events": [ + { + "start": "2022-05-22T14:06:24.701Z", + "end": "2022-05-22T15:09:32.396Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-22T15:09:32.396Z", + "end": "2022-05-22T16:12:40.091Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-22T16:12:40.091Z", + "end": "2022-05-22T17:15:47.786Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-22T17:15:47.786Z", + "end": "2022-05-22T18:18:55.481Z", + "state": "IDLE" + } + ] + }, + { + "user": "568387317892070397", + "game": "520462578061803588", + "start": "2022-05-10T11:48:22.137Z", + "end": "2022-05-10T20:24:29.865Z", + "events": [ + { + "start": "2022-05-10T11:48:22.137Z", + "end": "2022-05-10T13:31:35.682Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T13:31:35.682Z", + "end": "2022-05-10T15:14:49.227Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T15:14:49.227Z", + "end": "2022-05-10T16:58:02.772Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T16:58:02.772Z", + "end": "2022-05-10T18:41:16.317Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T18:41:16.317Z", + "end": "2022-05-10T20:24:29.862Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "285410867718320291", + "game": "519644267212177418", + "start": "2022-07-07T08:26:43.236Z", + "end": "2022-07-07T11:24:01.635Z", + "events": [ + { + "start": "2022-07-07T08:26:43.236Z", + "end": "2022-07-07T11:24:01.635Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "512498684211232768", + "start": "2022-06-18T22:09:19.455Z", + "end": "2022-06-19T04:02:44.910Z", + "events": [ + { + "start": "2022-06-18T22:09:19.455Z", + "end": "2022-06-18T23:37:40.818Z", + "state": "IDLE" + }, + { + "start": "2022-06-18T23:37:40.818Z", + "end": "2022-06-19T01:06:02.181Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T01:06:02.181Z", + "end": "2022-06-19T02:34:23.544Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T02:34:23.544Z", + "end": "2022-06-19T04:02:44.907Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "521842831262875670", + "start": "2022-06-01T14:20:20.485Z", + "end": "2022-06-01T18:47:57.038Z", + "events": [ + { + "start": "2022-06-01T14:20:20.485Z", + "end": "2022-06-01T16:34:08.761Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T16:34:08.761Z", + "end": "2022-06-01T18:47:57.037Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "535869836748783616", + "start": "2022-05-26T11:45:26.643Z", + "end": "2022-05-26T11:56:32.163Z", + "events": [ + { + "start": "2022-05-26T11:45:26.643Z", + "end": "2022-05-26T11:56:32.163Z", + "state": "IDLE" + } + ] + }, + { + "user": "623295654897148670", + "game": "520453007578628124", + "start": "2022-04-14T22:05:15.471Z", + "end": "2022-04-15T02:28:48.533Z", + "events": [ + { + "start": "2022-04-14T22:05:15.471Z", + "end": "2022-04-14T23:33:06.491Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-14T23:33:06.491Z", + "end": "2022-04-15T01:00:57.511Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T01:00:57.511Z", + "end": "2022-04-15T02:28:48.531Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "161887854890745672", + "game": "554921822626381879", + "start": "2022-06-11T23:43:20.492Z", + "end": "2022-06-12T05:31:01.994Z", + "events": [ + { + "start": "2022-06-11T23:43:20.492Z", + "end": "2022-06-12T01:39:14.326Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-12T01:39:14.326Z", + "end": "2022-06-12T03:35:08.160Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-12T03:35:08.160Z", + "end": "2022-06-12T05:31:01.994Z", + "state": "IDLE" + } + ] + }, + { + "user": "958598056500699208", + "game": "565341641427124244", + "start": "2022-05-08T15:25:05.881Z", + "end": "2022-05-09T00:34:38.069Z", + "events": [ + { + "start": "2022-05-08T15:25:05.881Z", + "end": "2022-05-08T19:59:51.975Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T19:59:51.975Z", + "end": "2022-05-09T00:34:38.069Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "137536289023624121", + "game": "597860020935327787", + "start": "2022-07-22T04:50:51.931Z", + "end": "2022-07-22T07:00:51.799Z", + "events": [ + { + "start": "2022-07-22T04:50:51.931Z", + "end": "2022-07-22T07:00:51.799Z", + "state": "IDLE" + } + ] + }, + { + "user": "147480245458136084", + "game": "572456126872944651", + "start": "2022-07-28T07:12:17.833Z", + "end": "2022-07-28T13:45:57.896Z", + "events": [ + { + "start": "2022-07-28T07:12:17.833Z", + "end": "2022-07-28T09:23:31.187Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T09:23:31.187Z", + "end": "2022-07-28T11:34:44.541Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T11:34:44.541Z", + "end": "2022-07-28T13:45:57.895Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "866600263421429886", + "game": "542474758835535872", + "start": "2022-04-21T22:55:21.840Z", + "end": "2022-04-22T05:43:50.743Z", + "events": [ + { + "start": "2022-04-21T22:55:21.840Z", + "end": "2022-04-22T02:19:36.291Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T02:19:36.291Z", + "end": "2022-04-22T05:43:50.742Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "608700383891121851", + "game": "528145079819436043", + "start": "2022-07-18T16:54:49.418Z", + "end": "2022-07-19T01:21:30.440Z", + "events": [ + { + "start": "2022-07-18T16:54:49.418Z", + "end": "2022-07-19T01:21:30.440Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "623295654897148670", + "game": "606163888052109312", + "start": "2022-06-14T02:12:38.694Z", + "end": "2022-06-14T04:15:22.735Z", + "events": [ + { + "start": "2022-06-14T02:12:38.694Z", + "end": "2022-06-14T02:37:11.502Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T02:37:11.502Z", + "end": "2022-06-14T03:01:44.310Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-14T03:01:44.310Z", + "end": "2022-06-14T03:26:17.118Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-14T03:26:17.118Z", + "end": "2022-06-14T03:50:49.926Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-14T03:50:49.926Z", + "end": "2022-06-14T04:15:22.734Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "520462578061803588", + "start": "2022-06-17T02:55:44.102Z", + "end": "2022-06-17T04:10:11.449Z", + "events": [ + { + "start": "2022-06-17T02:55:44.102Z", + "end": "2022-06-17T03:20:33.217Z", + "state": "IDLE" + }, + { + "start": "2022-06-17T03:20:33.217Z", + "end": "2022-06-17T03:45:22.332Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T03:45:22.332Z", + "end": "2022-06-17T04:10:11.447Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "958598056500699208", + "game": "512789427462995988", + "start": "2022-07-31T01:01:51.469Z", + "end": "2022-07-31T01:47:41.679Z", + "events": [ + { + "start": "2022-07-31T01:01:51.469Z", + "end": "2022-07-31T01:13:19.021Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T01:13:19.021Z", + "end": "2022-07-31T01:24:46.573Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T01:24:46.573Z", + "end": "2022-07-31T01:36:14.125Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T01:36:14.125Z", + "end": "2022-07-31T01:47:41.677Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "628567265580410356", + "game": "535371564850479134", + "start": "2022-05-13T21:49:09.819Z", + "end": "2022-05-14T03:22:59.662Z", + "events": [ + { + "start": "2022-05-13T21:49:09.819Z", + "end": "2022-05-14T00:36:04.740Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T00:36:04.740Z", + "end": "2022-05-14T03:22:59.661Z", + "state": "IDLE" + } + ] + }, + { + "user": "596421190780633864", + "game": "614448244260339712", + "start": "2022-06-19T21:09:43.288Z", + "end": "2022-06-19T23:03:05.225Z", + "events": [ + { + "start": "2022-06-19T21:09:43.288Z", + "end": "2022-06-19T21:32:23.675Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T21:32:23.675Z", + "end": "2022-06-19T21:55:04.062Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T21:55:04.062Z", + "end": "2022-06-19T22:17:44.449Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T22:17:44.449Z", + "end": "2022-06-19T22:40:24.836Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T22:40:24.836Z", + "end": "2022-06-19T23:03:05.223Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "347172184335646820", + "game": "597588168178663434", + "start": "2022-05-24T06:57:56.936Z", + "end": "2022-05-24T15:55:15.435Z", + "events": [ + { + "start": "2022-05-24T06:57:56.936Z", + "end": "2022-05-24T09:57:03.102Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T09:57:03.102Z", + "end": "2022-05-24T12:56:09.268Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T12:56:09.268Z", + "end": "2022-05-24T15:55:15.434Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "511619499053678668", + "start": "2022-06-29T05:39:54.334Z", + "end": "2022-06-29T06:02:36.878Z", + "events": [ + { + "start": "2022-06-29T05:39:54.334Z", + "end": "2022-06-29T05:47:28.515Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-29T05:47:28.515Z", + "end": "2022-06-29T05:55:02.696Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-29T05:55:02.696Z", + "end": "2022-06-29T06:02:36.877Z", + "state": "IDLE" + } + ] + }, + { + "user": "791267126190249625", + "game": "530454325214969866", + "start": "2022-06-25T17:47:44.567Z", + "end": "2022-06-25T18:55:00.578Z", + "events": [ + { + "start": "2022-06-25T17:47:44.567Z", + "end": "2022-06-25T18:01:11.769Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T18:01:11.769Z", + "end": "2022-06-25T18:14:38.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T18:14:38.971Z", + "end": "2022-06-25T18:28:06.173Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T18:28:06.173Z", + "end": "2022-06-25T18:41:33.375Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T18:41:33.375Z", + "end": "2022-06-25T18:55:00.577Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "510199020782747732", + "start": "2022-07-18T05:23:01.890Z", + "end": "2022-07-18T10:04:54.361Z", + "events": [ + { + "start": "2022-07-18T05:23:01.890Z", + "end": "2022-07-18T06:56:59.380Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T06:56:59.380Z", + "end": "2022-07-18T08:30:56.870Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T08:30:56.870Z", + "end": "2022-07-18T10:04:54.360Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "511619499053678668", + "start": "2022-06-17T11:37:29.934Z", + "end": "2022-06-17T18:55:24.903Z", + "events": [ + { + "start": "2022-06-17T11:37:29.934Z", + "end": "2022-06-17T18:55:24.903Z", + "state": "IDLE" + } + ] + }, + { + "user": "378424071510192465", + "game": "512501896896970762", + "start": "2022-06-15T13:00:21.728Z", + "end": "2022-06-15T21:01:50.971Z", + "events": [ + { + "start": "2022-06-15T13:00:21.728Z", + "end": "2022-06-15T15:40:51.475Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T15:40:51.475Z", + "end": "2022-06-15T18:21:21.222Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T18:21:21.222Z", + "end": "2022-06-15T21:01:50.969Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "430732724825949756", + "game": "512789427462995988", + "start": "2022-08-04T20:49:42.137Z", + "end": "2022-08-05T00:53:07.549Z", + "events": [ + { + "start": "2022-08-04T20:49:42.137Z", + "end": "2022-08-05T00:53:07.549Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "554573307161214977", + "start": "2022-06-13T22:15:45.816Z", + "end": "2022-06-14T06:55:25.083Z", + "events": [ + { + "start": "2022-06-13T22:15:45.816Z", + "end": "2022-06-14T06:55:25.083Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "588739017718366208", + "start": "2022-07-18T16:07:01.613Z", + "end": "2022-07-18T23:00:20.624Z", + "events": [ + { + "start": "2022-07-18T16:07:01.613Z", + "end": "2022-07-18T17:50:21.365Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T17:50:21.365Z", + "end": "2022-07-18T19:33:41.117Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T19:33:41.117Z", + "end": "2022-07-18T21:17:00.869Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T21:17:00.869Z", + "end": "2022-07-18T23:00:20.621Z", + "state": "IDLE" + } + ] + }, + { + "user": "444246898747584433", + "game": "614448244260339712", + "start": "2022-05-10T03:03:22.482Z", + "end": "2022-05-10T09:45:42.518Z", + "events": [ + { + "start": "2022-05-10T03:03:22.482Z", + "end": "2022-05-10T05:17:29.160Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T05:17:29.160Z", + "end": "2022-05-10T07:31:35.838Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T07:31:35.838Z", + "end": "2022-05-10T09:45:42.516Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "554573307161214977", + "start": "2022-04-18T21:21:29.610Z", + "end": "2022-04-18T23:10:00.376Z", + "events": [ + { + "start": "2022-04-18T21:21:29.610Z", + "end": "2022-04-18T23:10:00.376Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "715446191320920764", + "game": "542075586886107149", + "start": "2022-06-13T21:49:08.442Z", + "end": "2022-06-14T00:12:19.180Z", + "events": [ + { + "start": "2022-06-13T21:49:08.442Z", + "end": "2022-06-13T22:36:52.021Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T22:36:52.021Z", + "end": "2022-06-13T23:24:35.600Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T23:24:35.600Z", + "end": "2022-06-14T00:12:19.179Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "922664752332558395", + "game": "542475118396309528", + "start": "2022-06-08T18:07:28.407Z", + "end": "2022-06-08T22:17:23.420Z", + "events": [ + { + "start": "2022-06-08T18:07:28.407Z", + "end": "2022-06-08T22:17:23.420Z", + "state": "IDLE" + } + ] + }, + { + "user": "686825797960121847", + "game": "535384357536399404", + "start": "2022-06-04T17:35:07.579Z", + "end": "2022-06-05T00:31:33.389Z", + "events": [ + { + "start": "2022-06-04T17:35:07.579Z", + "end": "2022-06-04T19:53:56.182Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T19:53:56.182Z", + "end": "2022-06-04T22:12:44.785Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T22:12:44.785Z", + "end": "2022-06-05T00:31:33.388Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "774637841058278398", + "game": "520453007578628124", + "start": "2022-06-15T23:06:29.962Z", + "end": "2022-06-16T04:14:45.009Z", + "events": [ + { + "start": "2022-06-15T23:06:29.962Z", + "end": "2022-06-16T04:14:45.009Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "732542352358923773", + "game": "535869836748783616", + "start": "2022-04-30T01:23:06.453Z", + "end": "2022-04-30T10:37:45.485Z", + "events": [ + { + "start": "2022-04-30T01:23:06.453Z", + "end": "2022-04-30T10:37:45.485Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "606163888052109312", + "start": "2022-05-06T01:26:40.278Z", + "end": "2022-05-06T08:15:51.866Z", + "events": [ + { + "start": "2022-05-06T01:26:40.278Z", + "end": "2022-05-06T04:51:16.072Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-06T04:51:16.072Z", + "end": "2022-05-06T08:15:51.866Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302714757313826277", + "game": "572456126872944651", + "start": "2022-07-19T04:33:48.356Z", + "end": "2022-07-19T04:56:28.880Z", + "events": [ + { + "start": "2022-07-19T04:33:48.356Z", + "end": "2022-07-19T04:39:28.487Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T04:39:28.487Z", + "end": "2022-07-19T04:45:08.618Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T04:45:08.618Z", + "end": "2022-07-19T04:50:48.749Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T04:50:48.749Z", + "end": "2022-07-19T04:56:28.880Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "881335427428668054", + "game": "535371564850479134", + "start": "2022-06-13T20:40:51.957Z", + "end": "2022-06-14T02:46:51.969Z", + "events": [ + { + "start": "2022-06-13T20:40:51.957Z", + "end": "2022-06-14T02:46:51.969Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "356875221078245376", + "start": "2022-06-04T00:11:37.318Z", + "end": "2022-06-04T07:40:26.736Z", + "events": [ + { + "start": "2022-06-04T00:11:37.318Z", + "end": "2022-06-04T07:40:26.736Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "297014162745407430", + "game": "520462578061803588", + "start": "2022-06-27T08:31:12.983Z", + "end": "2022-06-27T18:34:23.139Z", + "events": [ + { + "start": "2022-06-27T08:31:12.983Z", + "end": "2022-06-27T10:31:51.014Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T10:31:51.014Z", + "end": "2022-06-27T12:32:29.045Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T12:32:29.045Z", + "end": "2022-06-27T14:33:07.076Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T14:33:07.076Z", + "end": "2022-06-27T16:33:45.107Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T16:33:45.107Z", + "end": "2022-06-27T18:34:23.138Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "614380482620293151", + "start": "2022-06-12T09:17:21.307Z", + "end": "2022-06-12T11:04:19.052Z", + "events": [ + { + "start": "2022-06-12T09:17:21.307Z", + "end": "2022-06-12T10:10:50.179Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T10:10:50.179Z", + "end": "2022-06-12T11:04:19.051Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "528145079819436043", + "start": "2022-07-14T03:27:08.509Z", + "end": "2022-07-14T06:10:20.819Z", + "events": [ + { + "start": "2022-07-14T03:27:08.509Z", + "end": "2022-07-14T03:59:46.971Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T03:59:46.971Z", + "end": "2022-07-14T04:32:25.433Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T04:32:25.433Z", + "end": "2022-07-14T05:05:03.895Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T05:05:03.895Z", + "end": "2022-07-14T05:37:42.357Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T05:37:42.357Z", + "end": "2022-07-14T06:10:20.819Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "576482762446602270", + "start": "2022-05-25T05:30:25.924Z", + "end": "2022-05-25T08:44:26.832Z", + "events": [ + { + "start": "2022-05-25T05:30:25.924Z", + "end": "2022-05-25T06:35:06.226Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T06:35:06.226Z", + "end": "2022-05-25T07:39:46.528Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T07:39:46.528Z", + "end": "2022-05-25T08:44:26.830Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "575412499399180288", + "start": "2022-06-15T16:43:44.367Z", + "end": "2022-06-16T01:52:17.510Z", + "events": [ + { + "start": "2022-06-15T16:43:44.367Z", + "end": "2022-06-16T01:52:17.510Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "558547388583772201", + "start": "2022-05-01T20:24:27.220Z", + "end": "2022-05-01T23:35:55.078Z", + "events": [ + { + "start": "2022-05-01T20:24:27.220Z", + "end": "2022-05-01T21:12:19.184Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T21:12:19.184Z", + "end": "2022-05-01T22:00:11.148Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T22:00:11.148Z", + "end": "2022-05-01T22:48:03.112Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T22:48:03.112Z", + "end": "2022-05-01T23:35:55.076Z", + "state": "IDLE" + } + ] + }, + { + "user": "866600263421429886", + "game": "519644368735567873", + "start": "2022-08-05T13:15:21.129Z", + "end": "2022-08-05T18:44:37.769Z", + "events": [ + { + "start": "2022-08-05T13:15:21.129Z", + "end": "2022-08-05T18:44:37.769Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "512498684211232768", + "start": "2022-06-02T14:57:15.811Z", + "end": "2022-06-02T19:45:56.400Z", + "events": [ + { + "start": "2022-06-02T14:57:15.811Z", + "end": "2022-06-02T15:54:59.928Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T15:54:59.928Z", + "end": "2022-06-02T16:52:44.045Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T16:52:44.045Z", + "end": "2022-06-02T17:50:28.162Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T17:50:28.162Z", + "end": "2022-06-02T18:48:12.279Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-02T18:48:12.279Z", + "end": "2022-06-02T19:45:56.396Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "614380482620293151", + "start": "2022-04-19T22:33:22.566Z", + "end": "2022-04-20T00:27:54.021Z", + "events": [ + { + "start": "2022-04-19T22:33:22.566Z", + "end": "2022-04-19T22:56:16.857Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T22:56:16.857Z", + "end": "2022-04-19T23:19:11.148Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T23:19:11.148Z", + "end": "2022-04-19T23:42:05.439Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T23:42:05.439Z", + "end": "2022-04-20T00:04:59.730Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T00:04:59.730Z", + "end": "2022-04-20T00:27:54.021Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "605723970188938456", + "game": "514228311661084682", + "start": "2022-07-01T16:05:40.181Z", + "end": "2022-07-01T19:59:32.408Z", + "events": [ + { + "start": "2022-07-01T16:05:40.181Z", + "end": "2022-07-01T17:04:08.237Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-01T17:04:08.237Z", + "end": "2022-07-01T18:02:36.293Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T18:02:36.293Z", + "end": "2022-07-01T19:01:04.349Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T19:01:04.349Z", + "end": "2022-07-01T19:59:32.405Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786084290971413565", + "game": "614380482620293151", + "start": "2022-07-27T05:46:34.293Z", + "end": "2022-07-27T12:21:14.723Z", + "events": [ + { + "start": "2022-07-27T05:46:34.293Z", + "end": "2022-07-27T07:05:30.379Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T07:05:30.379Z", + "end": "2022-07-27T08:24:26.465Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T08:24:26.465Z", + "end": "2022-07-27T09:43:22.551Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T09:43:22.551Z", + "end": "2022-07-27T11:02:18.637Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T11:02:18.637Z", + "end": "2022-07-27T12:21:14.723Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "347172184335646820", + "game": "575412499399180288", + "start": "2022-07-08T08:41:32.737Z", + "end": "2022-07-08T13:26:58.974Z", + "events": [ + { + "start": "2022-07-08T08:41:32.737Z", + "end": "2022-07-08T13:26:58.974Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "774637841058278398", + "game": "512789343157485602", + "start": "2022-06-02T02:04:38.312Z", + "end": "2022-06-02T11:48:46.692Z", + "events": [ + { + "start": "2022-06-02T02:04:38.312Z", + "end": "2022-06-02T05:19:21.105Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T05:19:21.105Z", + "end": "2022-06-02T08:34:03.898Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T08:34:03.898Z", + "end": "2022-06-02T11:48:46.691Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302679892350666678", + "game": "526489929631531009", + "start": "2022-05-23T03:43:04.542Z", + "end": "2022-05-23T11:47:44.682Z", + "events": [ + { + "start": "2022-05-23T03:43:04.542Z", + "end": "2022-05-23T07:45:24.612Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T07:45:24.612Z", + "end": "2022-05-23T11:47:44.682Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "395281349698024181", + "game": "569253958967885828", + "start": "2022-07-12T07:49:46.180Z", + "end": "2022-07-12T12:43:01.935Z", + "events": [ + { + "start": "2022-07-12T07:49:46.180Z", + "end": "2022-07-12T09:03:05.118Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T09:03:05.118Z", + "end": "2022-07-12T10:16:24.056Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T10:16:24.056Z", + "end": "2022-07-12T11:29:42.994Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T11:29:42.994Z", + "end": "2022-07-12T12:43:01.932Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "519644368735567873", + "start": "2022-07-04T03:24:29.625Z", + "end": "2022-07-04T05:50:58.853Z", + "events": [ + { + "start": "2022-07-04T03:24:29.625Z", + "end": "2022-07-04T03:53:47.470Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-04T03:53:47.470Z", + "end": "2022-07-04T04:23:05.315Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-04T04:23:05.315Z", + "end": "2022-07-04T04:52:23.160Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T04:52:23.160Z", + "end": "2022-07-04T05:21:41.005Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T05:21:41.005Z", + "end": "2022-07-04T05:50:58.850Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "788818750251007268", + "game": "508057374875975682", + "start": "2022-05-19T15:09:41.613Z", + "end": "2022-05-19T17:43:48.124Z", + "events": [ + { + "start": "2022-05-19T15:09:41.613Z", + "end": "2022-05-19T15:40:30.915Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-19T15:40:30.915Z", + "end": "2022-05-19T16:11:20.217Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T16:11:20.217Z", + "end": "2022-05-19T16:42:09.519Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T16:42:09.519Z", + "end": "2022-05-19T17:12:58.821Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-19T17:12:58.821Z", + "end": "2022-05-19T17:43:48.123Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "614380482620293151", + "start": "2022-07-19T01:30:17.823Z", + "end": "2022-07-19T05:43:13.815Z", + "events": [ + { + "start": "2022-07-19T01:30:17.823Z", + "end": "2022-07-19T05:43:13.815Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302714757313826277", + "game": "553697181249437716", + "start": "2022-05-10T11:14:11.548Z", + "end": "2022-05-10T21:17:06.555Z", + "events": [ + { + "start": "2022-05-10T11:14:11.548Z", + "end": "2022-05-10T14:35:09.883Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T14:35:09.883Z", + "end": "2022-05-10T17:56:08.218Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T17:56:08.218Z", + "end": "2022-05-10T21:17:06.553Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "590467327095087095", + "game": "518088627234930688", + "start": "2022-06-02T16:21:25.398Z", + "end": "2022-06-02T19:10:06.820Z", + "events": [ + { + "start": "2022-06-02T16:21:25.398Z", + "end": "2022-06-02T17:03:35.753Z", + "state": "IDLE" + }, + { + "start": "2022-06-02T17:03:35.753Z", + "end": "2022-06-02T17:45:46.108Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T17:45:46.108Z", + "end": "2022-06-02T18:27:56.463Z", + "state": "IDLE" + }, + { + "start": "2022-06-02T18:27:56.463Z", + "end": "2022-06-02T19:10:06.818Z", + "state": "IDLE" + } + ] + }, + { + "user": "297014162745407430", + "game": "535371564850479134", + "start": "2022-05-29T00:07:58.979Z", + "end": "2022-05-29T08:26:07.056Z", + "events": [ + { + "start": "2022-05-29T00:07:58.979Z", + "end": "2022-05-29T02:54:01.671Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T02:54:01.671Z", + "end": "2022-05-29T05:40:04.363Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T05:40:04.363Z", + "end": "2022-05-29T08:26:07.055Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "597860020935327787", + "start": "2022-07-16T19:25:48.397Z", + "end": "2022-07-16T20:30:50.480Z", + "events": [ + { + "start": "2022-07-16T19:25:48.397Z", + "end": "2022-07-16T19:38:48.813Z", + "state": "IDLE" + }, + { + "start": "2022-07-16T19:38:48.813Z", + "end": "2022-07-16T19:51:49.229Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T19:51:49.229Z", + "end": "2022-07-16T20:04:49.645Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-16T20:04:49.645Z", + "end": "2022-07-16T20:17:50.061Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T20:17:50.061Z", + "end": "2022-07-16T20:30:50.477Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "546175179542364160", + "start": "2022-06-03T18:48:33.965Z", + "end": "2022-06-04T04:24:46.772Z", + "events": [ + { + "start": "2022-06-03T18:48:33.965Z", + "end": "2022-06-03T22:00:38.234Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T22:00:38.234Z", + "end": "2022-06-04T01:12:42.503Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T01:12:42.503Z", + "end": "2022-06-04T04:24:46.772Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "512501896896970762", + "start": "2022-06-29T17:55:03.636Z", + "end": "2022-06-29T21:35:17.112Z", + "events": [ + { + "start": "2022-06-29T17:55:03.636Z", + "end": "2022-06-29T21:35:17.112Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "395281349698024181", + "game": "510199020782747732", + "start": "2022-07-04T21:56:40.384Z", + "end": "2022-07-05T00:01:12.323Z", + "events": [ + { + "start": "2022-07-04T21:56:40.384Z", + "end": "2022-07-05T00:01:12.323Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "554573307161214977", + "start": "2022-06-12T03:28:01.580Z", + "end": "2022-06-12T10:24:33.193Z", + "events": [ + { + "start": "2022-06-12T03:28:01.580Z", + "end": "2022-06-12T06:56:17.386Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T06:56:17.386Z", + "end": "2022-06-12T10:24:33.192Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "514228311661084682", + "start": "2022-07-24T05:28:45.611Z", + "end": "2022-07-24T08:19:23.412Z", + "events": [ + { + "start": "2022-07-24T05:28:45.611Z", + "end": "2022-07-24T06:11:25.061Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T06:11:25.061Z", + "end": "2022-07-24T06:54:04.511Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T06:54:04.511Z", + "end": "2022-07-24T07:36:43.961Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T07:36:43.961Z", + "end": "2022-07-24T08:19:23.411Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "549512435585908756", + "start": "2022-06-28T23:30:47.650Z", + "end": "2022-06-29T06:50:29.579Z", + "events": [ + { + "start": "2022-06-28T23:30:47.650Z", + "end": "2022-06-29T00:58:44.035Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T00:58:44.035Z", + "end": "2022-06-29T02:26:40.420Z", + "state": "IDLE" + }, + { + "start": "2022-06-29T02:26:40.420Z", + "end": "2022-06-29T03:54:36.805Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T03:54:36.805Z", + "end": "2022-06-29T05:22:33.190Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T05:22:33.190Z", + "end": "2022-06-29T06:50:29.575Z", + "state": "IDLE" + } + ] + }, + { + "user": "590467327095087095", + "game": "356875221078245376", + "start": "2022-05-27T18:31:27.991Z", + "end": "2022-05-27T23:36:04.449Z", + "events": [ + { + "start": "2022-05-27T18:31:27.991Z", + "end": "2022-05-27T21:03:46.220Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T21:03:46.220Z", + "end": "2022-05-27T23:36:04.449Z", + "state": "IDLE" + } + ] + }, + { + "user": "525940629729163286", + "game": "597860020935327787", + "start": "2022-06-28T16:51:21.576Z", + "end": "2022-06-28T20:52:09.267Z", + "events": [ + { + "start": "2022-06-28T16:51:21.576Z", + "end": "2022-06-28T18:11:37.473Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T18:11:37.473Z", + "end": "2022-06-28T19:31:53.370Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T19:31:53.370Z", + "end": "2022-06-28T20:52:09.267Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "700136079562375258", + "start": "2022-07-23T22:10:54.984Z", + "end": "2022-07-24T08:17:28.604Z", + "events": [ + { + "start": "2022-07-23T22:10:54.984Z", + "end": "2022-07-24T00:42:33.389Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T00:42:33.389Z", + "end": "2022-07-24T03:14:11.794Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-24T03:14:11.794Z", + "end": "2022-07-24T05:45:50.199Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T05:45:50.199Z", + "end": "2022-07-24T08:17:28.604Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "297014162745407430", + "game": "542475118396309528", + "start": "2022-08-05T12:35:13.970Z", + "end": "2022-08-05T13:25:29.746Z", + "events": [ + { + "start": "2022-08-05T12:35:13.970Z", + "end": "2022-08-05T12:47:47.914Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T12:47:47.914Z", + "end": "2022-08-05T13:00:21.858Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T13:00:21.858Z", + "end": "2022-08-05T13:12:55.802Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T13:12:55.802Z", + "end": "2022-08-05T13:25:29.746Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "213263852824749877", + "game": "584069374462394368", + "start": "2022-08-04T18:01:51.299Z", + "end": "2022-08-04T21:26:44.342Z", + "events": [ + { + "start": "2022-08-04T18:01:51.299Z", + "end": "2022-08-04T21:26:44.342Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "463820732483181525", + "game": "520462578061803588", + "start": "2022-07-10T06:37:13.535Z", + "end": "2022-07-10T15:45:37.514Z", + "events": [ + { + "start": "2022-07-10T06:37:13.535Z", + "end": "2022-07-10T15:45:37.514Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "788818750251007268", + "game": "526489929631531009", + "start": "2022-05-27T08:34:45.256Z", + "end": "2022-05-27T14:15:57.595Z", + "events": [ + { + "start": "2022-05-27T08:34:45.256Z", + "end": "2022-05-27T10:28:29.369Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T10:28:29.369Z", + "end": "2022-05-27T12:22:13.482Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-27T12:22:13.482Z", + "end": "2022-05-27T14:15:57.595Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "590467327095087095", + "game": "511619499053678668", + "start": "2022-06-25T11:57:05.983Z", + "end": "2022-06-25T19:13:19.863Z", + "events": [ + { + "start": "2022-06-25T11:57:05.983Z", + "end": "2022-06-25T15:35:12.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T15:35:12.923Z", + "end": "2022-06-25T19:13:19.863Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "537786518874514211", + "game": "553697181249437716", + "start": "2022-06-24T00:57:52.839Z", + "end": "2022-06-24T03:10:17.768Z", + "events": [ + { + "start": "2022-06-24T00:57:52.839Z", + "end": "2022-06-24T02:04:05.303Z", + "state": "IDLE" + }, + { + "start": "2022-06-24T02:04:05.303Z", + "end": "2022-06-24T03:10:17.767Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "584489284152985092", + "game": "558547388583772201", + "start": "2022-05-29T11:19:48.064Z", + "end": "2022-05-29T12:32:53.616Z", + "events": [ + { + "start": "2022-05-29T11:19:48.064Z", + "end": "2022-05-29T11:34:25.174Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T11:34:25.174Z", + "end": "2022-05-29T11:49:02.284Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T11:49:02.284Z", + "end": "2022-05-29T12:03:39.394Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T12:03:39.394Z", + "end": "2022-05-29T12:18:16.504Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T12:18:16.504Z", + "end": "2022-05-29T12:32:53.614Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "791267126190249625", + "game": "512789427462995988", + "start": "2022-07-11T17:27:25.698Z", + "end": "2022-07-11T23:55:53.631Z", + "events": [ + { + "start": "2022-07-11T17:27:25.698Z", + "end": "2022-07-11T19:04:32.681Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T19:04:32.681Z", + "end": "2022-07-11T20:41:39.664Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T20:41:39.664Z", + "end": "2022-07-11T22:18:46.647Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T22:18:46.647Z", + "end": "2022-07-11T23:55:53.630Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "512789427462995988", + "start": "2022-06-08T09:11:59.389Z", + "end": "2022-06-08T15:20:34.955Z", + "events": [ + { + "start": "2022-06-08T09:11:59.389Z", + "end": "2022-06-08T10:25:42.502Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T10:25:42.502Z", + "end": "2022-06-08T11:39:25.615Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T11:39:25.615Z", + "end": "2022-06-08T12:53:08.728Z", + "state": "IDLE" + }, + { + "start": "2022-06-08T12:53:08.728Z", + "end": "2022-06-08T14:06:51.841Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T14:06:51.841Z", + "end": "2022-06-08T15:20:34.954Z", + "state": "IDLE" + } + ] + }, + { + "user": "385692164951394422", + "game": "519644267212177418", + "start": "2022-06-05T07:24:22.023Z", + "end": "2022-06-05T08:32:03.869Z", + "events": [ + { + "start": "2022-06-05T07:24:22.023Z", + "end": "2022-06-05T07:46:55.971Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T07:46:55.971Z", + "end": "2022-06-05T08:09:29.919Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T08:09:29.919Z", + "end": "2022-06-05T08:32:03.867Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "592976500802846750", + "start": "2022-06-09T15:53:24.065Z", + "end": "2022-06-09T19:02:51.819Z", + "events": [ + { + "start": "2022-06-09T15:53:24.065Z", + "end": "2022-06-09T19:02:51.819Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "101572134856427564", + "game": "356875221078245376", + "start": "2022-05-10T05:49:05.476Z", + "end": "2022-05-10T07:50:33.211Z", + "events": [ + { + "start": "2022-05-10T05:49:05.476Z", + "end": "2022-05-10T06:19:27.409Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T06:19:27.409Z", + "end": "2022-05-10T06:49:49.342Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T06:49:49.342Z", + "end": "2022-05-10T07:20:11.275Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T07:20:11.275Z", + "end": "2022-05-10T07:50:33.208Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "512789343157485602", + "start": "2022-07-11T11:58:35.208Z", + "end": "2022-07-11T14:21:21.629Z", + "events": [ + { + "start": "2022-07-11T11:58:35.208Z", + "end": "2022-07-11T13:09:58.418Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T13:09:58.418Z", + "end": "2022-07-11T14:21:21.628Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "495724335127362694", + "game": "554573307161214977", + "start": "2022-04-13T12:24:16.995Z", + "end": "2022-04-13T17:43:24.160Z", + "events": [ + { + "start": "2022-04-13T12:24:16.995Z", + "end": "2022-04-13T17:43:24.160Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "131482253203487270", + "game": "512789427462995988", + "start": "2022-04-18T03:11:14.576Z", + "end": "2022-04-18T03:46:24.799Z", + "events": [ + { + "start": "2022-04-18T03:11:14.576Z", + "end": "2022-04-18T03:20:02.131Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T03:20:02.131Z", + "end": "2022-04-18T03:28:49.686Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T03:28:49.686Z", + "end": "2022-04-18T03:37:37.241Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T03:37:37.241Z", + "end": "2022-04-18T03:46:24.796Z", + "state": "IDLE" + } + ] + }, + { + "user": "541104083732114799", + "game": "512789343157485602", + "start": "2022-06-03T18:11:05.091Z", + "end": "2022-06-04T02:09:20.244Z", + "events": [ + { + "start": "2022-06-03T18:11:05.091Z", + "end": "2022-06-03T20:50:30.142Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T20:50:30.142Z", + "end": "2022-06-03T23:29:55.193Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T23:29:55.193Z", + "end": "2022-06-04T02:09:20.244Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "269014914705953013", + "game": "542474758835535872", + "start": "2022-05-05T06:12:15.476Z", + "end": "2022-05-05T10:53:38.659Z", + "events": [ + { + "start": "2022-05-05T06:12:15.476Z", + "end": "2022-05-05T07:08:32.112Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-05T07:08:32.112Z", + "end": "2022-05-05T08:04:48.748Z", + "state": "IDLE" + }, + { + "start": "2022-05-05T08:04:48.748Z", + "end": "2022-05-05T09:01:05.384Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T09:01:05.384Z", + "end": "2022-05-05T09:57:22.020Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T09:57:22.020Z", + "end": "2022-05-05T10:53:38.656Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "747381962738157784", + "game": "553697181249437716", + "start": "2022-06-03T09:16:05.174Z", + "end": "2022-06-03T10:28:20.524Z", + "events": [ + { + "start": "2022-06-03T09:16:05.174Z", + "end": "2022-06-03T09:34:09.011Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T09:34:09.011Z", + "end": "2022-06-03T09:52:12.848Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T09:52:12.848Z", + "end": "2022-06-03T10:10:16.685Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T10:10:16.685Z", + "end": "2022-06-03T10:28:20.522Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "559757870366930730", + "game": "535869836748783616", + "start": "2022-06-04T22:46:09.604Z", + "end": "2022-06-05T02:11:32.197Z", + "events": [ + { + "start": "2022-06-04T22:46:09.604Z", + "end": "2022-06-05T00:28:50.900Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T00:28:50.900Z", + "end": "2022-06-05T02:11:32.196Z", + "state": "IDLE" + } + ] + }, + { + "user": "126384926926158511", + "game": "512789427462995988", + "start": "2022-04-17T13:47:01.135Z", + "end": "2022-04-17T21:52:03.182Z", + "events": [ + { + "start": "2022-04-17T13:47:01.135Z", + "end": "2022-04-17T15:24:01.544Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T15:24:01.544Z", + "end": "2022-04-17T17:01:01.953Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-17T17:01:01.953Z", + "end": "2022-04-17T18:38:02.362Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-17T18:38:02.362Z", + "end": "2022-04-17T20:15:02.771Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-17T20:15:02.771Z", + "end": "2022-04-17T21:52:03.180Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "530454325214969866", + "start": "2022-06-19T12:27:22.908Z", + "end": "2022-06-19T16:41:57.439Z", + "events": [ + { + "start": "2022-06-19T12:27:22.908Z", + "end": "2022-06-19T13:31:01.540Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T13:31:01.540Z", + "end": "2022-06-19T14:34:40.172Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T14:34:40.172Z", + "end": "2022-06-19T15:38:18.804Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T15:38:18.804Z", + "end": "2022-06-19T16:41:57.436Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "200801427122341912", + "game": "512501896896970762", + "start": "2022-05-28T18:15:43.715Z", + "end": "2022-05-28T22:04:36.904Z", + "events": [ + { + "start": "2022-05-28T18:15:43.715Z", + "end": "2022-05-28T19:32:01.444Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T19:32:01.444Z", + "end": "2022-05-28T20:48:19.173Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T20:48:19.173Z", + "end": "2022-05-28T22:04:36.902Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "285410867718320291", + "game": "512501896896970762", + "start": "2022-08-05T13:40:43.379Z", + "end": "2022-08-05T22:42:46.963Z", + "events": [ + { + "start": "2022-08-05T13:40:43.379Z", + "end": "2022-08-05T15:56:14.275Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-05T15:56:14.275Z", + "end": "2022-08-05T18:11:45.171Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T18:11:45.171Z", + "end": "2022-08-05T20:27:16.067Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T20:27:16.067Z", + "end": "2022-08-05T22:42:46.963Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "623295654897148670", + "game": "512789120234422301", + "start": "2022-07-13T10:03:44.282Z", + "end": "2022-07-13T12:32:48.588Z", + "events": [ + { + "start": "2022-07-13T10:03:44.282Z", + "end": "2022-07-13T11:18:16.435Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T11:18:16.435Z", + "end": "2022-07-13T12:32:48.588Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "521842831262875670", + "start": "2022-07-12T19:06:18.391Z", + "end": "2022-07-12T19:31:36.703Z", + "events": [ + { + "start": "2022-07-12T19:06:18.391Z", + "end": "2022-07-12T19:18:57.547Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T19:18:57.547Z", + "end": "2022-07-12T19:31:36.703Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "614448244260339712", + "start": "2022-06-22T04:09:08.636Z", + "end": "2022-06-22T04:13:57.656Z", + "events": [ + { + "start": "2022-06-22T04:09:08.636Z", + "end": "2022-06-22T04:10:44.976Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T04:10:44.976Z", + "end": "2022-06-22T04:12:21.316Z", + "state": "IDLE" + }, + { + "start": "2022-06-22T04:12:21.316Z", + "end": "2022-06-22T04:13:57.656Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "800318424708872602", + "game": "554921822626381879", + "start": "2022-06-04T17:41:45.742Z", + "end": "2022-06-04T23:00:29.583Z", + "events": [ + { + "start": "2022-06-04T17:41:45.742Z", + "end": "2022-06-04T19:01:26.702Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T19:01:26.702Z", + "end": "2022-06-04T20:21:07.662Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T20:21:07.662Z", + "end": "2022-06-04T21:40:48.622Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T21:40:48.622Z", + "end": "2022-06-04T23:00:29.582Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "559757870366930730", + "game": "597860020935327787", + "start": "2022-07-31T14:46:01.659Z", + "end": "2022-07-31T19:21:40.365Z", + "events": [ + { + "start": "2022-07-31T14:46:01.659Z", + "end": "2022-07-31T15:41:09.400Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T15:41:09.400Z", + "end": "2022-07-31T16:36:17.141Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T16:36:17.141Z", + "end": "2022-07-31T17:31:24.882Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T17:31:24.882Z", + "end": "2022-07-31T18:26:32.623Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T18:26:32.623Z", + "end": "2022-07-31T19:21:40.364Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "606163888052109312", + "start": "2022-07-05T08:04:13.002Z", + "end": "2022-07-05T09:29:31.001Z", + "events": [ + { + "start": "2022-07-05T08:04:13.002Z", + "end": "2022-07-05T08:46:52.001Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-05T08:46:52.001Z", + "end": "2022-07-05T09:29:31.000Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "569008830701240340", + "start": "2022-07-16T17:10:01.725Z", + "end": "2022-07-16T18:51:06.492Z", + "events": [ + { + "start": "2022-07-16T17:10:01.725Z", + "end": "2022-07-16T18:51:06.492Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "588739017718366208", + "start": "2022-07-31T02:26:09.774Z", + "end": "2022-07-31T10:34:49.856Z", + "events": [ + { + "start": "2022-07-31T02:26:09.774Z", + "end": "2022-07-31T04:03:53.790Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T04:03:53.790Z", + "end": "2022-07-31T05:41:37.806Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T05:41:37.806Z", + "end": "2022-07-31T07:19:21.822Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T07:19:21.822Z", + "end": "2022-07-31T08:57:05.838Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T08:57:05.838Z", + "end": "2022-07-31T10:34:49.854Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "542474758835535872", + "start": "2022-07-17T23:17:05.742Z", + "end": "2022-07-18T07:54:16.518Z", + "events": [ + { + "start": "2022-07-17T23:17:05.742Z", + "end": "2022-07-18T02:09:29.334Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T02:09:29.334Z", + "end": "2022-07-18T05:01:52.926Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T05:01:52.926Z", + "end": "2022-07-18T07:54:16.518Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "530454325214969866", + "start": "2022-08-05T14:03:51.902Z", + "end": "2022-08-05T20:19:45.633Z", + "events": [ + { + "start": "2022-08-05T14:03:51.902Z", + "end": "2022-08-05T20:19:45.633Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "546175179542364160", + "start": "2022-05-25T03:48:32.871Z", + "end": "2022-05-25T09:50:04.757Z", + "events": [ + { + "start": "2022-05-25T03:48:32.871Z", + "end": "2022-05-25T05:49:03.499Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T05:49:03.499Z", + "end": "2022-05-25T07:49:34.127Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T07:49:34.127Z", + "end": "2022-05-25T09:50:04.755Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "549512435585908756", + "start": "2022-07-08T21:52:58.589Z", + "end": "2022-07-08T23:59:35.735Z", + "events": [ + { + "start": "2022-07-08T21:52:58.589Z", + "end": "2022-07-08T22:24:37.875Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T22:24:37.875Z", + "end": "2022-07-08T22:56:17.161Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T22:56:17.161Z", + "end": "2022-07-08T23:27:56.447Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T23:27:56.447Z", + "end": "2022-07-08T23:59:35.733Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "360264570671216445", + "game": "514228311661084682", + "start": "2022-05-12T08:29:28.812Z", + "end": "2022-05-12T15:54:27.429Z", + "events": [ + { + "start": "2022-05-12T08:29:28.812Z", + "end": "2022-05-12T10:20:43.466Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T10:20:43.466Z", + "end": "2022-05-12T12:11:58.120Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T12:11:58.120Z", + "end": "2022-05-12T14:03:12.774Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T14:03:12.774Z", + "end": "2022-05-12T15:54:27.428Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "518088627234930688", + "start": "2022-07-11T00:26:42.411Z", + "end": "2022-07-11T08:54:18.480Z", + "events": [ + { + "start": "2022-07-11T00:26:42.411Z", + "end": "2022-07-11T02:33:36.428Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T02:33:36.428Z", + "end": "2022-07-11T04:40:30.445Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T04:40:30.445Z", + "end": "2022-07-11T06:47:24.462Z", + "state": "IDLE" + }, + { + "start": "2022-07-11T06:47:24.462Z", + "end": "2022-07-11T08:54:18.479Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "508057374875975682", + "start": "2022-07-30T14:27:55.872Z", + "end": "2022-07-30T16:15:42.390Z", + "events": [ + { + "start": "2022-07-30T14:27:55.872Z", + "end": "2022-07-30T16:15:42.390Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "800318424708872602", + "game": "512789427462995988", + "start": "2022-06-04T23:57:21.824Z", + "end": "2022-06-05T07:13:50.022Z", + "events": [ + { + "start": "2022-06-04T23:57:21.824Z", + "end": "2022-06-05T01:24:39.463Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T01:24:39.463Z", + "end": "2022-06-05T02:51:57.102Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-05T02:51:57.102Z", + "end": "2022-06-05T04:19:14.741Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T04:19:14.741Z", + "end": "2022-06-05T05:46:32.380Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T05:46:32.380Z", + "end": "2022-06-05T07:13:50.019Z", + "state": "IDLE" + } + ] + }, + { + "user": "346608907417001845", + "game": "523154344187789312", + "start": "2022-07-12T12:20:11.483Z", + "end": "2022-07-12T13:38:22.597Z", + "events": [ + { + "start": "2022-07-12T12:20:11.483Z", + "end": "2022-07-12T12:39:44.261Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T12:39:44.261Z", + "end": "2022-07-12T12:59:17.039Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T12:59:17.039Z", + "end": "2022-07-12T13:18:49.817Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T13:18:49.817Z", + "end": "2022-07-12T13:38:22.595Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "600708263053781983", + "game": "554573307161214977", + "start": "2022-04-14T00:21:53.214Z", + "end": "2022-04-14T02:08:03.866Z", + "events": [ + { + "start": "2022-04-14T00:21:53.214Z", + "end": "2022-04-14T01:14:58.540Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T01:14:58.540Z", + "end": "2022-04-14T02:08:03.866Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "608700383891121851", + "game": "565341641427124244", + "start": "2022-07-18T07:24:34.010Z", + "end": "2022-07-18T12:13:37.013Z", + "events": [ + { + "start": "2022-07-18T07:24:34.010Z", + "end": "2022-07-18T09:00:55.011Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T09:00:55.011Z", + "end": "2022-07-18T10:37:16.012Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T10:37:16.012Z", + "end": "2022-07-18T12:13:37.013Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "558547388583772201", + "start": "2022-07-04T00:05:05.611Z", + "end": "2022-07-04T09:55:46.303Z", + "events": [ + { + "start": "2022-07-04T00:05:05.611Z", + "end": "2022-07-04T02:32:45.784Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T02:32:45.784Z", + "end": "2022-07-04T05:00:25.957Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-04T05:00:25.957Z", + "end": "2022-07-04T07:28:06.130Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T07:28:06.130Z", + "end": "2022-07-04T09:55:46.303Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "590467327095087095", + "game": "550277544025522176", + "start": "2022-06-20T20:02:32.254Z", + "end": "2022-06-21T03:55:43.019Z", + "events": [ + { + "start": "2022-06-20T20:02:32.254Z", + "end": "2022-06-20T22:00:49.945Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T22:00:49.945Z", + "end": "2022-06-20T23:59:07.636Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T23:59:07.636Z", + "end": "2022-06-21T01:57:25.327Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T01:57:25.327Z", + "end": "2022-06-21T03:55:43.018Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "606163888052109312", + "start": "2022-06-07T04:55:45.598Z", + "end": "2022-06-07T07:49:57.167Z", + "events": [ + { + "start": "2022-06-07T04:55:45.598Z", + "end": "2022-06-07T06:22:51.382Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-07T06:22:51.382Z", + "end": "2022-06-07T07:49:57.166Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "269014914705953013", + "game": "512789343157485602", + "start": "2022-08-03T04:30:00.640Z", + "end": "2022-08-03T04:36:01.861Z", + "events": [ + { + "start": "2022-08-03T04:30:00.640Z", + "end": "2022-08-03T04:36:01.861Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "213263852824749877", + "game": "528145079819436043", + "start": "2022-08-02T15:58:08.829Z", + "end": "2022-08-03T00:16:52.200Z", + "events": [ + { + "start": "2022-08-02T15:58:08.829Z", + "end": "2022-08-02T18:44:23.286Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T18:44:23.286Z", + "end": "2022-08-02T21:30:37.743Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T21:30:37.743Z", + "end": "2022-08-03T00:16:52.200Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "537786518874514211", + "game": "549512435585908756", + "start": "2022-06-23T20:39:54.379Z", + "end": "2022-06-23T21:51:38.091Z", + "events": [ + { + "start": "2022-06-23T20:39:54.379Z", + "end": "2022-06-23T20:57:50.307Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-23T20:57:50.307Z", + "end": "2022-06-23T21:15:46.235Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T21:15:46.235Z", + "end": "2022-06-23T21:33:42.163Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T21:33:42.163Z", + "end": "2022-06-23T21:51:38.091Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "584489284152985092", + "game": "588739017718366208", + "start": "2022-05-05T07:55:59.851Z", + "end": "2022-05-05T10:21:39.344Z", + "events": [ + { + "start": "2022-05-05T07:55:59.851Z", + "end": "2022-05-05T10:21:39.344Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "523154344187789312", + "start": "2022-05-18T20:34:30.734Z", + "end": "2022-05-19T04:14:28.602Z", + "events": [ + { + "start": "2022-05-18T20:34:30.734Z", + "end": "2022-05-18T23:07:50.023Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-18T23:07:50.023Z", + "end": "2022-05-19T01:41:09.312Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T01:41:09.312Z", + "end": "2022-05-19T04:14:28.601Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "525940629729163286", + "game": "597588168178663434", + "start": "2022-06-08T11:52:21.053Z", + "end": "2022-06-08T19:56:46.342Z", + "events": [ + { + "start": "2022-06-08T11:52:21.053Z", + "end": "2022-06-08T15:54:33.697Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T15:54:33.697Z", + "end": "2022-06-08T19:56:46.341Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "538658792298239054", + "game": "550277544025522176", + "start": "2022-07-02T03:58:36.856Z", + "end": "2022-07-02T05:49:46.981Z", + "events": [ + { + "start": "2022-07-02T03:58:36.856Z", + "end": "2022-07-02T04:54:11.918Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T04:54:11.918Z", + "end": "2022-07-02T05:49:46.980Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "768513326430993269", + "game": "597860020935327787", + "start": "2022-05-06T09:30:11.926Z", + "end": "2022-05-06T13:42:21.413Z", + "events": [ + { + "start": "2022-05-06T09:30:11.926Z", + "end": "2022-05-06T13:42:21.413Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "378424071510192465", + "game": "535869836748783616", + "start": "2022-07-27T10:41:04.871Z", + "end": "2022-07-27T12:12:09.572Z", + "events": [ + { + "start": "2022-07-27T10:41:04.871Z", + "end": "2022-07-27T12:12:09.572Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "560781100197216267", + "start": "2022-07-11T12:05:00.818Z", + "end": "2022-07-11T21:04:47.567Z", + "events": [ + { + "start": "2022-07-11T12:05:00.818Z", + "end": "2022-07-11T14:19:57.505Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T14:19:57.505Z", + "end": "2022-07-11T16:34:54.192Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T16:34:54.192Z", + "end": "2022-07-11T18:49:50.879Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T18:49:50.879Z", + "end": "2022-07-11T21:04:47.566Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "576482762446602270", + "start": "2022-05-21T20:17:40.500Z", + "end": "2022-05-22T05:14:40.599Z", + "events": [ + { + "start": "2022-05-21T20:17:40.500Z", + "end": "2022-05-22T00:46:10.549Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T00:46:10.549Z", + "end": "2022-05-22T05:14:40.598Z", + "state": "IDLE" + } + ] + }, + { + "user": "725502702868293700", + "game": "542475118396309528", + "start": "2022-07-09T10:14:20.635Z", + "end": "2022-07-09T15:11:17.702Z", + "events": [ + { + "start": "2022-07-09T10:14:20.635Z", + "end": "2022-07-09T11:53:19.657Z", + "state": "IDLE" + }, + { + "start": "2022-07-09T11:53:19.657Z", + "end": "2022-07-09T13:32:18.679Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T13:32:18.679Z", + "end": "2022-07-09T15:11:17.701Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "329429619186234053", + "game": "514228311661084682", + "start": "2022-06-12T15:54:12.122Z", + "end": "2022-06-12T17:12:10.655Z", + "events": [ + { + "start": "2022-06-12T15:54:12.122Z", + "end": "2022-06-12T16:20:11.633Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T16:20:11.633Z", + "end": "2022-06-12T16:46:11.144Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T16:46:11.144Z", + "end": "2022-06-12T17:12:10.655Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "182925797752958092", + "game": "519644368735567873", + "start": "2022-08-02T12:43:18.065Z", + "end": "2022-08-02T14:44:28.829Z", + "events": [ + { + "start": "2022-08-02T12:43:18.065Z", + "end": "2022-08-02T13:43:53.447Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T13:43:53.447Z", + "end": "2022-08-02T14:44:28.829Z", + "state": "IDLE" + } + ] + }, + { + "user": "182925797752958092", + "game": "554921822626381879", + "start": "2022-06-12T22:32:35.498Z", + "end": "2022-06-13T01:43:51.849Z", + "events": [ + { + "start": "2022-06-12T22:32:35.498Z", + "end": "2022-06-12T23:10:50.768Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-12T23:10:50.768Z", + "end": "2022-06-12T23:49:06.038Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T23:49:06.038Z", + "end": "2022-06-13T00:27:21.308Z", + "state": "IDLE" + }, + { + "start": "2022-06-13T00:27:21.308Z", + "end": "2022-06-13T01:05:36.578Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T01:05:36.578Z", + "end": "2022-06-13T01:43:51.848Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "636935635446628860", + "game": "549512435585908756", + "start": "2022-07-14T17:42:12.237Z", + "end": "2022-07-15T01:29:38.303Z", + "events": [ + { + "start": "2022-07-14T17:42:12.237Z", + "end": "2022-07-14T19:15:41.450Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T19:15:41.450Z", + "end": "2022-07-14T20:49:10.663Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T20:49:10.663Z", + "end": "2022-07-14T22:22:39.876Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T22:22:39.876Z", + "end": "2022-07-14T23:56:09.089Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T23:56:09.089Z", + "end": "2022-07-15T01:29:38.302Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "512789427462995988", + "start": "2022-07-08T22:19:32.917Z", + "end": "2022-07-09T00:23:06.659Z", + "events": [ + { + "start": "2022-07-08T22:19:32.917Z", + "end": "2022-07-08T23:21:19.788Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T23:21:19.788Z", + "end": "2022-07-09T00:23:06.659Z", + "state": "IDLE" + } + ] + }, + { + "user": "457796054587169483", + "game": "535384357536399404", + "start": "2022-07-26T17:10:11.222Z", + "end": "2022-07-27T03:07:14.797Z", + "events": [ + { + "start": "2022-07-26T17:10:11.222Z", + "end": "2022-07-26T19:09:35.937Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-26T19:09:35.937Z", + "end": "2022-07-26T21:09:00.652Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-26T21:09:00.652Z", + "end": "2022-07-26T23:08:25.367Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-26T23:08:25.367Z", + "end": "2022-07-27T01:07:50.082Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T01:07:50.082Z", + "end": "2022-07-27T03:07:14.797Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "123137660023366590", + "game": "575412499399180288", + "start": "2022-06-03T15:34:52.910Z", + "end": "2022-06-03T19:29:19.503Z", + "events": [ + { + "start": "2022-06-03T15:34:52.910Z", + "end": "2022-06-03T16:21:46.228Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T16:21:46.228Z", + "end": "2022-06-03T17:08:39.546Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T17:08:39.546Z", + "end": "2022-06-03T17:55:32.864Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T17:55:32.864Z", + "end": "2022-06-03T18:42:26.182Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T18:42:26.182Z", + "end": "2022-06-03T19:29:19.500Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "592976500802846750", + "start": "2022-07-14T15:39:28.938Z", + "end": "2022-07-14T22:21:03.940Z", + "events": [ + { + "start": "2022-07-14T15:39:28.938Z", + "end": "2022-07-14T17:19:52.688Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T17:19:52.688Z", + "end": "2022-07-14T19:00:16.438Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-14T19:00:16.438Z", + "end": "2022-07-14T20:40:40.188Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T20:40:40.188Z", + "end": "2022-07-14T22:21:03.938Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302347517889336519", + "game": "510199020782747732", + "start": "2022-05-27T04:31:33.207Z", + "end": "2022-05-27T10:16:41.214Z", + "events": [ + { + "start": "2022-05-27T04:31:33.207Z", + "end": "2022-05-27T05:40:34.808Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T05:40:34.808Z", + "end": "2022-05-27T06:49:36.409Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T06:49:36.409Z", + "end": "2022-05-27T07:58:38.010Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T07:58:38.010Z", + "end": "2022-05-27T09:07:39.611Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T09:07:39.611Z", + "end": "2022-05-27T10:16:41.212Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "554573307161214977", + "start": "2022-06-14T07:09:31.706Z", + "end": "2022-06-14T13:56:30.313Z", + "events": [ + { + "start": "2022-06-14T07:09:31.706Z", + "end": "2022-06-14T08:30:55.427Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-14T08:30:55.427Z", + "end": "2022-06-14T09:52:19.148Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T09:52:19.148Z", + "end": "2022-06-14T11:13:42.869Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T11:13:42.869Z", + "end": "2022-06-14T12:35:06.590Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-14T12:35:06.590Z", + "end": "2022-06-14T13:56:30.311Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "931211630078779300", + "game": "512789427462995988", + "start": "2022-07-07T02:38:50.691Z", + "end": "2022-07-07T09:08:09.162Z", + "events": [ + { + "start": "2022-07-07T02:38:50.691Z", + "end": "2022-07-07T09:08:09.162Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "430732724825949756", + "game": "546175179542364160", + "start": "2022-07-22T14:26:54.460Z", + "end": "2022-07-22T22:50:34.867Z", + "events": [ + { + "start": "2022-07-22T14:26:54.460Z", + "end": "2022-07-22T17:14:47.929Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T17:14:47.929Z", + "end": "2022-07-22T20:02:41.398Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T20:02:41.398Z", + "end": "2022-07-22T22:50:34.867Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "530454325214969866", + "start": "2022-06-20T19:58:02.528Z", + "end": "2022-06-21T05:27:08.126Z", + "events": [ + { + "start": "2022-06-20T19:58:02.528Z", + "end": "2022-06-20T22:20:18.927Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-20T22:20:18.927Z", + "end": "2022-06-21T00:42:35.326Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T00:42:35.326Z", + "end": "2022-06-21T03:04:51.725Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T03:04:51.725Z", + "end": "2022-06-21T05:27:08.124Z", + "state": "IDLE" + } + ] + }, + { + "user": "559757870366930730", + "game": "526489929631531009", + "start": "2022-05-12T07:32:55.889Z", + "end": "2022-05-12T15:57:29.239Z", + "events": [ + { + "start": "2022-05-12T07:32:55.889Z", + "end": "2022-05-12T09:13:50.559Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T09:13:50.559Z", + "end": "2022-05-12T10:54:45.229Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T10:54:45.229Z", + "end": "2022-05-12T12:35:39.899Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T12:35:39.899Z", + "end": "2022-05-12T14:16:34.569Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T14:16:34.569Z", + "end": "2022-05-12T15:57:29.239Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "512501896896970762", + "start": "2022-06-17T03:42:29.351Z", + "end": "2022-06-17T07:20:22.181Z", + "events": [ + { + "start": "2022-06-17T03:42:29.351Z", + "end": "2022-06-17T04:36:57.558Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T04:36:57.558Z", + "end": "2022-06-17T05:31:25.765Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-17T05:31:25.765Z", + "end": "2022-06-17T06:25:53.972Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T06:25:53.972Z", + "end": "2022-06-17T07:20:22.179Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "530454325214969866", + "start": "2022-05-13T19:40:07.906Z", + "end": "2022-05-14T00:59:16.577Z", + "events": [ + { + "start": "2022-05-13T19:40:07.906Z", + "end": "2022-05-14T00:59:16.577Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "526489929631531009", + "start": "2022-05-06T15:23:33.436Z", + "end": "2022-05-06T19:07:53.202Z", + "events": [ + { + "start": "2022-05-06T15:23:33.436Z", + "end": "2022-05-06T17:15:43.319Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-06T17:15:43.319Z", + "end": "2022-05-06T19:07:53.202Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "628567265580410356", + "game": "535869836748783616", + "start": "2022-05-27T06:25:42.283Z", + "end": "2022-05-27T11:03:16.514Z", + "events": [ + { + "start": "2022-05-27T06:25:42.283Z", + "end": "2022-05-27T07:58:13.693Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T07:58:13.693Z", + "end": "2022-05-27T09:30:45.103Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T09:30:45.103Z", + "end": "2022-05-27T11:03:16.513Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "597588168178663434", + "start": "2022-06-07T03:47:44.687Z", + "end": "2022-06-07T10:37:50.790Z", + "events": [ + { + "start": "2022-06-07T03:47:44.687Z", + "end": "2022-06-07T05:09:45.907Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T05:09:45.907Z", + "end": "2022-06-07T06:31:47.127Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T06:31:47.127Z", + "end": "2022-06-07T07:53:48.347Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-07T07:53:48.347Z", + "end": "2022-06-07T09:15:49.567Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T09:15:49.567Z", + "end": "2022-06-07T10:37:50.787Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "568387317892070397", + "game": "606163888052109312", + "start": "2022-08-04T18:20:08.785Z", + "end": "2022-08-04T19:55:35.409Z", + "events": [ + { + "start": "2022-08-04T18:20:08.785Z", + "end": "2022-08-04T18:51:57.659Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T18:51:57.659Z", + "end": "2022-08-04T19:23:46.533Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T19:23:46.533Z", + "end": "2022-08-04T19:55:35.407Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "600708263053781983", + "game": "514228311661084682", + "start": "2022-05-15T22:47:45.207Z", + "end": "2022-05-16T01:45:12.173Z", + "events": [ + { + "start": "2022-05-15T22:47:45.207Z", + "end": "2022-05-15T23:32:06.948Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T23:32:06.948Z", + "end": "2022-05-16T00:16:28.689Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T00:16:28.689Z", + "end": "2022-05-16T01:00:50.430Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T01:00:50.430Z", + "end": "2022-05-16T01:45:12.171Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "788818750251007268", + "game": "597588168178663434", + "start": "2022-08-01T02:52:54.753Z", + "end": "2022-08-01T02:58:24.494Z", + "events": [ + { + "start": "2022-08-01T02:52:54.753Z", + "end": "2022-08-01T02:58:24.494Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512501896896970762", + "start": "2022-07-13T15:33:19.491Z", + "end": "2022-07-13T21:05:21.120Z", + "events": [ + { + "start": "2022-07-13T15:33:19.491Z", + "end": "2022-07-13T17:24:00.034Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T17:24:00.034Z", + "end": "2022-07-13T19:14:40.577Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T19:14:40.577Z", + "end": "2022-07-13T21:05:21.120Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "520462578061803588", + "start": "2022-05-29T04:44:47.760Z", + "end": "2022-05-29T11:52:11.945Z", + "events": [ + { + "start": "2022-05-29T04:44:47.760Z", + "end": "2022-05-29T07:07:15.821Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T07:07:15.821Z", + "end": "2022-05-29T09:29:43.882Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T09:29:43.882Z", + "end": "2022-05-29T11:52:11.943Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "938976307338486810", + "game": "542474758835535872", + "start": "2022-05-27T19:27:21.307Z", + "end": "2022-05-27T23:42:46.396Z", + "events": [ + { + "start": "2022-05-27T19:27:21.307Z", + "end": "2022-05-27T20:31:12.579Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T20:31:12.579Z", + "end": "2022-05-27T21:35:03.851Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T21:35:03.851Z", + "end": "2022-05-27T22:38:55.123Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T22:38:55.123Z", + "end": "2022-05-27T23:42:46.395Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "542474758835535872", + "start": "2022-07-29T10:50:11.600Z", + "end": "2022-07-29T11:49:07.164Z", + "events": [ + { + "start": "2022-07-29T10:50:11.600Z", + "end": "2022-07-29T11:01:58.712Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T11:01:58.712Z", + "end": "2022-07-29T11:13:45.824Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T11:13:45.824Z", + "end": "2022-07-29T11:25:32.936Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T11:25:32.936Z", + "end": "2022-07-29T11:37:20.048Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T11:37:20.048Z", + "end": "2022-07-29T11:49:07.160Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "329429619186234053", + "game": "597860020935327787", + "start": "2022-06-27T02:24:54.294Z", + "end": "2022-06-27T02:25:02.917Z", + "events": [ + { + "start": "2022-06-27T02:24:54.294Z", + "end": "2022-06-27T02:24:56.018Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T02:24:56.018Z", + "end": "2022-06-27T02:24:57.742Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:24:57.742Z", + "end": "2022-06-27T02:24:59.466Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:24:59.466Z", + "end": "2022-06-27T02:25:01.190Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T02:25:01.190Z", + "end": "2022-06-27T02:25:02.914Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "519644267212177418", + "start": "2022-06-25T10:32:10.626Z", + "end": "2022-06-25T17:28:37.002Z", + "events": [ + { + "start": "2022-06-25T10:32:10.626Z", + "end": "2022-06-25T12:50:59.418Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T12:50:59.418Z", + "end": "2022-06-25T15:09:48.210Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T15:09:48.210Z", + "end": "2022-06-25T17:28:37.002Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "430732724825949756", + "game": "520462578061803588", + "start": "2022-06-13T02:21:41.747Z", + "end": "2022-06-13T07:18:53.877Z", + "events": [ + { + "start": "2022-06-13T02:21:41.747Z", + "end": "2022-06-13T03:35:59.779Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-13T03:35:59.779Z", + "end": "2022-06-13T04:50:17.811Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T04:50:17.811Z", + "end": "2022-06-13T06:04:35.843Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T06:04:35.843Z", + "end": "2022-06-13T07:18:53.875Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "608700383891121851", + "game": "511619499053678668", + "start": "2022-07-25T10:55:59.233Z", + "end": "2022-07-25T15:48:09.442Z", + "events": [ + { + "start": "2022-07-25T10:55:59.233Z", + "end": "2022-07-25T12:09:01.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-25T12:09:01.785Z", + "end": "2022-07-25T13:22:04.337Z", + "state": "IDLE" + }, + { + "start": "2022-07-25T13:22:04.337Z", + "end": "2022-07-25T14:35:06.889Z", + "state": "IDLE" + }, + { + "start": "2022-07-25T14:35:06.889Z", + "end": "2022-07-25T15:48:09.441Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "554573307161214977", + "start": "2022-06-27T00:28:15.348Z", + "end": "2022-06-27T05:09:39.662Z", + "events": [ + { + "start": "2022-06-27T00:28:15.348Z", + "end": "2022-06-27T01:38:36.426Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T01:38:36.426Z", + "end": "2022-06-27T02:48:57.504Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T02:48:57.504Z", + "end": "2022-06-27T03:59:18.582Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T03:59:18.582Z", + "end": "2022-06-27T05:09:39.660Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "385692164951394422", + "game": "553697181249437716", + "start": "2022-07-03T04:53:40.719Z", + "end": "2022-07-03T09:44:13.630Z", + "events": [ + { + "start": "2022-07-03T04:53:40.719Z", + "end": "2022-07-03T06:06:18.946Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T06:06:18.946Z", + "end": "2022-07-03T07:18:57.173Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T07:18:57.173Z", + "end": "2022-07-03T08:31:35.400Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T08:31:35.400Z", + "end": "2022-07-03T09:44:13.627Z", + "state": "IDLE" + } + ] + }, + { + "user": "596421190780633864", + "game": "535869836748783616", + "start": "2022-07-01T11:41:01.459Z", + "end": "2022-07-01T17:18:46.835Z", + "events": [ + { + "start": "2022-07-01T11:41:01.459Z", + "end": "2022-07-01T14:29:54.147Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T14:29:54.147Z", + "end": "2022-07-01T17:18:46.835Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "747381962738157784", + "game": "560781100197216267", + "start": "2022-05-04T07:14:22.369Z", + "end": "2022-05-04T14:46:07.078Z", + "events": [ + { + "start": "2022-05-04T07:14:22.369Z", + "end": "2022-05-04T09:07:18.546Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T09:07:18.546Z", + "end": "2022-05-04T11:00:14.723Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T11:00:14.723Z", + "end": "2022-05-04T12:53:10.900Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T12:53:10.900Z", + "end": "2022-05-04T14:46:07.077Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "553697181249437716", + "start": "2022-06-16T14:52:09.046Z", + "end": "2022-06-16T21:31:59.157Z", + "events": [ + { + "start": "2022-06-16T14:52:09.046Z", + "end": "2022-06-16T16:12:07.068Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T16:12:07.068Z", + "end": "2022-06-16T17:32:05.090Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T17:32:05.090Z", + "end": "2022-06-16T18:52:03.112Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T18:52:03.112Z", + "end": "2022-06-16T20:12:01.134Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T20:12:01.134Z", + "end": "2022-06-16T21:31:59.156Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "881335427428668054", + "game": "554573307161214977", + "start": "2022-07-20T22:29:40.940Z", + "end": "2022-07-21T07:12:37.419Z", + "events": [ + { + "start": "2022-07-20T22:29:40.940Z", + "end": "2022-07-21T00:14:16.235Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T00:14:16.235Z", + "end": "2022-07-21T01:58:51.530Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T01:58:51.530Z", + "end": "2022-07-21T03:43:26.825Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T03:43:26.825Z", + "end": "2022-07-21T05:28:02.120Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T05:28:02.120Z", + "end": "2022-07-21T07:12:37.415Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "762163239408560283", + "game": "528145079819436043", + "start": "2022-04-19T18:43:00.842Z", + "end": "2022-04-20T00:46:53.790Z", + "events": [ + { + "start": "2022-04-19T18:43:00.842Z", + "end": "2022-04-19T21:44:57.316Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T21:44:57.316Z", + "end": "2022-04-20T00:46:53.790Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "508057374875975682", + "start": "2022-05-23T06:50:30.505Z", + "end": "2022-05-23T14:08:51.860Z", + "events": [ + { + "start": "2022-05-23T06:50:30.505Z", + "end": "2022-05-23T08:40:05.843Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T08:40:05.843Z", + "end": "2022-05-23T10:29:41.181Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T10:29:41.181Z", + "end": "2022-05-23T12:19:16.519Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T12:19:16.519Z", + "end": "2022-05-23T14:08:51.857Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "596421190780633864", + "game": "519644368735567873", + "start": "2022-07-10T01:38:31.536Z", + "end": "2022-07-10T08:22:47.237Z", + "events": [ + { + "start": "2022-07-10T01:38:31.536Z", + "end": "2022-07-10T03:19:35.461Z", + "state": "IDLE" + }, + { + "start": "2022-07-10T03:19:35.461Z", + "end": "2022-07-10T05:00:39.386Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T05:00:39.386Z", + "end": "2022-07-10T06:41:43.311Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T06:41:43.311Z", + "end": "2022-07-10T08:22:47.236Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "512498684211232768", + "start": "2022-05-09T20:51:02.865Z", + "end": "2022-05-10T06:04:54.249Z", + "events": [ + { + "start": "2022-05-09T20:51:02.865Z", + "end": "2022-05-09T23:09:30.711Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T23:09:30.711Z", + "end": "2022-05-10T01:27:58.557Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T01:27:58.557Z", + "end": "2022-05-10T03:46:26.403Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T03:46:26.403Z", + "end": "2022-05-10T06:04:54.249Z", + "state": "IDLE" + } + ] + }, + { + "user": "198010595767135394", + "game": "540120593576493057", + "start": "2022-05-25T05:11:35.107Z", + "end": "2022-05-25T14:27:06.730Z", + "events": [ + { + "start": "2022-05-25T05:11:35.107Z", + "end": "2022-05-25T08:16:45.648Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T08:16:45.648Z", + "end": "2022-05-25T11:21:56.189Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T11:21:56.189Z", + "end": "2022-05-25T14:27:06.730Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "715446191320920764", + "game": "508057374875975682", + "start": "2022-04-23T23:21:47.719Z", + "end": "2022-04-24T05:59:19.992Z", + "events": [ + { + "start": "2022-04-23T23:21:47.719Z", + "end": "2022-04-24T01:01:10.787Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T01:01:10.787Z", + "end": "2022-04-24T02:40:33.855Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T02:40:33.855Z", + "end": "2022-04-24T04:19:56.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T04:19:56.923Z", + "end": "2022-04-24T05:59:19.991Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "606163888052109312", + "start": "2022-05-26T17:53:38.050Z", + "end": "2022-05-26T18:10:49.573Z", + "events": [ + { + "start": "2022-05-26T17:53:38.050Z", + "end": "2022-05-26T17:57:55.930Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-26T17:57:55.930Z", + "end": "2022-05-26T18:02:13.810Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T18:02:13.810Z", + "end": "2022-05-26T18:06:31.690Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T18:06:31.690Z", + "end": "2022-05-26T18:10:49.570Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "565341641427124244", + "start": "2022-06-13T08:19:33.169Z", + "end": "2022-06-13T16:02:58.117Z", + "events": [ + { + "start": "2022-06-13T08:19:33.169Z", + "end": "2022-06-13T16:02:58.117Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "554573307161214977", + "start": "2022-05-06T21:50:04.717Z", + "end": "2022-05-07T06:07:34.220Z", + "events": [ + { + "start": "2022-05-06T21:50:04.717Z", + "end": "2022-05-07T00:35:54.551Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-07T00:35:54.551Z", + "end": "2022-05-07T03:21:44.385Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-07T03:21:44.385Z", + "end": "2022-05-07T06:07:34.219Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "535371564850479134", + "start": "2022-07-22T04:07:39.464Z", + "end": "2022-07-22T08:57:28.574Z", + "events": [ + { + "start": "2022-07-22T04:07:39.464Z", + "end": "2022-07-22T08:57:28.574Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "951131768137733554", + "game": "514228311661084682", + "start": "2022-06-19T03:15:37.734Z", + "end": "2022-06-19T09:40:11.979Z", + "events": [ + { + "start": "2022-06-19T03:15:37.734Z", + "end": "2022-06-19T09:40:11.979Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "463820732483181525", + "game": "560781100197216267", + "start": "2022-07-10T09:05:43.148Z", + "end": "2022-07-10T10:10:39.356Z", + "events": [ + { + "start": "2022-07-10T09:05:43.148Z", + "end": "2022-07-10T09:21:57.200Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T09:21:57.200Z", + "end": "2022-07-10T09:38:11.252Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T09:38:11.252Z", + "end": "2022-07-10T09:54:25.304Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T09:54:25.304Z", + "end": "2022-07-10T10:10:39.356Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "542474758835535872", + "start": "2022-07-23T03:27:58.577Z", + "end": "2022-07-23T13:31:30.916Z", + "events": [ + { + "start": "2022-07-23T03:27:58.577Z", + "end": "2022-07-23T05:58:51.661Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T05:58:51.661Z", + "end": "2022-07-23T08:29:44.745Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T08:29:44.745Z", + "end": "2022-07-23T11:00:37.829Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-23T11:00:37.829Z", + "end": "2022-07-23T13:31:30.913Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "131482253203487270", + "game": "542475118396309528", + "start": "2022-06-11T05:12:31.294Z", + "end": "2022-06-11T13:44:07.151Z", + "events": [ + { + "start": "2022-06-11T05:12:31.294Z", + "end": "2022-06-11T13:44:07.151Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "614380482620293151", + "start": "2022-06-27T16:28:50.631Z", + "end": "2022-06-28T01:39:03.014Z", + "events": [ + { + "start": "2022-06-27T16:28:50.631Z", + "end": "2022-06-27T21:03:56.822Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T21:03:56.822Z", + "end": "2022-06-28T01:39:03.013Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "494763633796983404", + "game": "540120593576493057", + "start": "2022-05-01T07:42:30.649Z", + "end": "2022-05-01T12:06:06.985Z", + "events": [ + { + "start": "2022-05-01T07:42:30.649Z", + "end": "2022-05-01T08:35:13.916Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T08:35:13.916Z", + "end": "2022-05-01T09:27:57.183Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T09:27:57.183Z", + "end": "2022-05-01T10:20:40.450Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T10:20:40.450Z", + "end": "2022-05-01T11:13:23.717Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T11:13:23.717Z", + "end": "2022-05-01T12:06:06.984Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "494763633796983404", + "game": "520462578061803588", + "start": "2022-04-14T10:52:46.605Z", + "end": "2022-04-14T19:19:03.140Z", + "events": [ + { + "start": "2022-04-14T10:52:46.605Z", + "end": "2022-04-14T15:05:54.872Z", + "state": "IDLE" + }, + { + "start": "2022-04-14T15:05:54.872Z", + "end": "2022-04-14T19:19:03.139Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "424856688594618054", + "game": "519644368735567873", + "start": "2022-07-23T07:43:45.084Z", + "end": "2022-07-23T16:21:00.086Z", + "events": [ + { + "start": "2022-07-23T07:43:45.084Z", + "end": "2022-07-23T10:36:10.084Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T10:36:10.084Z", + "end": "2022-07-23T13:28:35.084Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T13:28:35.084Z", + "end": "2022-07-23T16:21:00.084Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "521842831262875670", + "start": "2022-06-16T01:57:48.479Z", + "end": "2022-06-16T06:07:55.198Z", + "events": [ + { + "start": "2022-06-16T01:57:48.479Z", + "end": "2022-06-16T03:21:10.718Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-16T03:21:10.718Z", + "end": "2022-06-16T04:44:32.957Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T04:44:32.957Z", + "end": "2022-06-16T06:07:55.196Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "606163888052109312", + "start": "2022-05-25T01:36:22.686Z", + "end": "2022-05-25T02:06:01.888Z", + "events": [ + { + "start": "2022-05-25T01:36:22.686Z", + "end": "2022-05-25T01:43:47.486Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T01:43:47.486Z", + "end": "2022-05-25T01:51:12.286Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T01:51:12.286Z", + "end": "2022-05-25T01:58:37.086Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T01:58:37.086Z", + "end": "2022-05-25T02:06:01.886Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "535384357536399404", + "start": "2022-06-10T19:13:10.237Z", + "end": "2022-06-11T01:53:05.033Z", + "events": [ + { + "start": "2022-06-10T19:13:10.237Z", + "end": "2022-06-11T01:53:05.033Z", + "state": "IDLE" + } + ] + }, + { + "user": "725502702868293700", + "game": "514228311661084682", + "start": "2022-07-02T12:09:53.142Z", + "end": "2022-07-02T21:59:47.745Z", + "events": [ + { + "start": "2022-07-02T12:09:53.142Z", + "end": "2022-07-02T17:04:50.443Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T17:04:50.443Z", + "end": "2022-07-02T21:59:47.744Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "958598056500699208", + "game": "597860020935327787", + "start": "2022-04-27T08:08:00.713Z", + "end": "2022-04-27T10:52:59.707Z", + "events": [ + { + "start": "2022-04-27T08:08:00.713Z", + "end": "2022-04-27T10:52:59.707Z", + "state": "IDLE" + } + ] + }, + { + "user": "297014162745407430", + "game": "575412499399180288", + "start": "2022-06-18T16:03:27.194Z", + "end": "2022-06-19T00:12:20.843Z", + "events": [ + { + "start": "2022-06-18T16:03:27.194Z", + "end": "2022-06-18T18:46:25.077Z", + "state": "IDLE" + }, + { + "start": "2022-06-18T18:46:25.077Z", + "end": "2022-06-18T21:29:22.960Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-18T21:29:22.960Z", + "end": "2022-06-19T00:12:20.843Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "467658810442648809", + "game": "523154344187789312", + "start": "2022-04-24T08:34:59.201Z", + "end": "2022-04-24T10:25:06.775Z", + "events": [ + { + "start": "2022-04-24T08:34:59.201Z", + "end": "2022-04-24T08:57:00.715Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T08:57:00.715Z", + "end": "2022-04-24T09:19:02.229Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T09:19:02.229Z", + "end": "2022-04-24T09:41:03.743Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T09:41:03.743Z", + "end": "2022-04-24T10:03:05.257Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T10:03:05.257Z", + "end": "2022-04-24T10:25:06.771Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "511619499053678668", + "start": "2022-07-27T13:46:58.126Z", + "end": "2022-07-27T17:48:33.538Z", + "events": [ + { + "start": "2022-07-27T13:46:58.126Z", + "end": "2022-07-27T15:07:29.930Z", + "state": "IDLE" + }, + { + "start": "2022-07-27T15:07:29.930Z", + "end": "2022-07-27T16:28:01.734Z", + "state": "IDLE" + }, + { + "start": "2022-07-27T16:28:01.734Z", + "end": "2022-07-27T17:48:33.538Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "542475118396309528", + "start": "2022-06-19T06:30:18.699Z", + "end": "2022-06-19T11:01:21.311Z", + "events": [ + { + "start": "2022-06-19T06:30:18.699Z", + "end": "2022-06-19T08:00:39.569Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T08:00:39.569Z", + "end": "2022-06-19T09:31:00.439Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T09:31:00.439Z", + "end": "2022-06-19T11:01:21.309Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "530454325214969866", + "start": "2022-05-18T11:49:00.164Z", + "end": "2022-05-18T13:39:51.259Z", + "events": [ + { + "start": "2022-05-18T11:49:00.164Z", + "end": "2022-05-18T13:39:51.259Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "457796054587169483", + "game": "518088627234930688", + "start": "2022-05-29T00:53:08.926Z", + "end": "2022-05-29T08:22:36.457Z", + "events": [ + { + "start": "2022-05-29T00:53:08.926Z", + "end": "2022-05-29T02:23:02.432Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T02:23:02.432Z", + "end": "2022-05-29T03:52:55.938Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T03:52:55.938Z", + "end": "2022-05-29T05:22:49.444Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T05:22:49.444Z", + "end": "2022-05-29T06:52:42.950Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T06:52:42.950Z", + "end": "2022-05-29T08:22:36.456Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "606163888052109312", + "start": "2022-04-23T20:27:07.697Z", + "end": "2022-04-23T22:57:29.519Z", + "events": [ + { + "start": "2022-04-23T20:27:07.697Z", + "end": "2022-04-23T21:04:43.152Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T21:04:43.152Z", + "end": "2022-04-23T21:42:18.607Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T21:42:18.607Z", + "end": "2022-04-23T22:19:54.062Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-23T22:19:54.062Z", + "end": "2022-04-23T22:57:29.517Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "608700383891121851", + "game": "518088627234930688", + "start": "2022-06-09T23:28:44.742Z", + "end": "2022-06-10T07:13:02.415Z", + "events": [ + { + "start": "2022-06-09T23:28:44.742Z", + "end": "2022-06-10T07:13:02.415Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "495724335127362694", + "game": "510199020782747732", + "start": "2022-07-23T00:37:37.141Z", + "end": "2022-07-23T10:10:05.796Z", + "events": [ + { + "start": "2022-07-23T00:37:37.141Z", + "end": "2022-07-23T10:10:05.796Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512789343157485602", + "start": "2022-05-14T11:36:22.764Z", + "end": "2022-05-14T17:18:22.494Z", + "events": [ + { + "start": "2022-05-14T11:36:22.764Z", + "end": "2022-05-14T17:18:22.494Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "931211630078779300", + "game": "540120593576493057", + "start": "2022-06-03T01:46:05.257Z", + "end": "2022-06-03T10:58:57.286Z", + "events": [ + { + "start": "2022-06-03T01:46:05.257Z", + "end": "2022-06-03T06:22:31.271Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T06:22:31.271Z", + "end": "2022-06-03T10:58:57.285Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "695941172337689379", + "game": "560781100197216267", + "start": "2022-04-18T11:06:37.323Z", + "end": "2022-04-18T20:42:31.143Z", + "events": [ + { + "start": "2022-04-18T11:06:37.323Z", + "end": "2022-04-18T14:18:35.263Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T14:18:35.263Z", + "end": "2022-04-18T17:30:33.203Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T17:30:33.203Z", + "end": "2022-04-18T20:42:31.143Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "542475118396309528", + "start": "2022-06-24T16:15:02.147Z", + "end": "2022-06-24T20:54:58.850Z", + "events": [ + { + "start": "2022-06-24T16:15:02.147Z", + "end": "2022-06-24T18:35:00.498Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T18:35:00.498Z", + "end": "2022-06-24T20:54:58.849Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "584069374462394368", + "start": "2022-07-27T10:57:18.041Z", + "end": "2022-07-27T15:36:12.474Z", + "events": [ + { + "start": "2022-07-27T10:57:18.041Z", + "end": "2022-07-27T15:36:12.474Z", + "state": "IDLE" + } + ] + }, + { + "user": "424856688594618054", + "game": "575412499399180288", + "start": "2022-05-29T18:33:35.646Z", + "end": "2022-05-29T19:17:25.176Z", + "events": [ + { + "start": "2022-05-29T18:33:35.646Z", + "end": "2022-05-29T18:44:33.028Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T18:44:33.028Z", + "end": "2022-05-29T18:55:30.410Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T18:55:30.410Z", + "end": "2022-05-29T19:06:27.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T19:06:27.792Z", + "end": "2022-05-29T19:17:25.174Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "535371564850479134", + "start": "2022-06-07T08:37:56.600Z", + "end": "2022-06-07T10:32:10.553Z", + "events": [ + { + "start": "2022-06-07T08:37:56.600Z", + "end": "2022-06-07T09:35:03.576Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-07T09:35:03.576Z", + "end": "2022-06-07T10:32:10.552Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "541104083732114799", + "game": "528145079819436043", + "start": "2022-07-10T21:51:42.839Z", + "end": "2022-07-11T07:36:58.697Z", + "events": [ + { + "start": "2022-07-10T21:51:42.839Z", + "end": "2022-07-11T01:06:48.125Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T01:06:48.125Z", + "end": "2022-07-11T04:21:53.411Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T04:21:53.411Z", + "end": "2022-07-11T07:36:58.697Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "137536289023624121", + "game": "508057374875975682", + "start": "2022-04-19T13:45:35.180Z", + "end": "2022-04-19T13:53:41.952Z", + "events": [ + { + "start": "2022-04-19T13:45:35.180Z", + "end": "2022-04-19T13:47:36.873Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T13:47:36.873Z", + "end": "2022-04-19T13:49:38.566Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T13:49:38.566Z", + "end": "2022-04-19T13:51:40.259Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T13:51:40.259Z", + "end": "2022-04-19T13:53:41.952Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "542075586886107149", + "start": "2022-08-06T00:49:35.714Z", + "end": "2022-08-06T09:07:31.897Z", + "events": [ + { + "start": "2022-08-06T00:49:35.714Z", + "end": "2022-08-06T02:54:04.759Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T02:54:04.759Z", + "end": "2022-08-06T04:58:33.804Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-06T04:58:33.804Z", + "end": "2022-08-06T07:03:02.849Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T07:03:02.849Z", + "end": "2022-08-06T09:07:31.894Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "318220875546522080", + "game": "576482762446602270", + "start": "2022-05-28T01:50:17.403Z", + "end": "2022-05-28T11:23:32.888Z", + "events": [ + { + "start": "2022-05-28T01:50:17.403Z", + "end": "2022-05-28T05:01:22.564Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T05:01:22.564Z", + "end": "2022-05-28T08:12:27.725Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T08:12:27.725Z", + "end": "2022-05-28T11:23:32.886Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "137536289023624121", + "game": "554573307161214977", + "start": "2022-06-24T04:37:44.538Z", + "end": "2022-06-24T07:54:00.703Z", + "events": [ + { + "start": "2022-06-24T04:37:44.538Z", + "end": "2022-06-24T07:54:00.703Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302347517889336519", + "game": "521842831262875670", + "start": "2022-08-06T09:54:40.572Z", + "end": "2022-08-06T12:24:23.408Z", + "events": [ + { + "start": "2022-08-06T09:54:40.572Z", + "end": "2022-08-06T10:32:06.281Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T10:32:06.281Z", + "end": "2022-08-06T11:09:31.990Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T11:09:31.990Z", + "end": "2022-08-06T11:46:57.699Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T11:46:57.699Z", + "end": "2022-08-06T12:24:23.408Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "518088627234930688", + "start": "2022-05-24T00:05:04.393Z", + "end": "2022-05-24T00:58:21.272Z", + "events": [ + { + "start": "2022-05-24T00:05:04.393Z", + "end": "2022-05-24T00:58:21.272Z", + "state": "IDLE" + } + ] + }, + { + "user": "625617695768437507", + "game": "614448244260339712", + "start": "2022-08-04T01:42:12.603Z", + "end": "2022-08-04T03:24:50.843Z", + "events": [ + { + "start": "2022-08-04T01:42:12.603Z", + "end": "2022-08-04T02:16:25.349Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T02:16:25.349Z", + "end": "2022-08-04T02:50:38.095Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T02:50:38.095Z", + "end": "2022-08-04T03:24:50.841Z", + "state": "IDLE" + } + ] + }, + { + "user": "625617695768437507", + "game": "520462578061803588", + "start": "2022-07-13T22:18:19.587Z", + "end": "2022-07-14T06:04:56.980Z", + "events": [ + { + "start": "2022-07-13T22:18:19.587Z", + "end": "2022-07-14T02:11:38.283Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T02:11:38.283Z", + "end": "2022-07-14T06:04:56.979Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "542075586886107149", + "start": "2022-07-19T03:43:36.127Z", + "end": "2022-07-19T08:43:39.796Z", + "events": [ + { + "start": "2022-07-19T03:43:36.127Z", + "end": "2022-07-19T05:23:37.350Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T05:23:37.350Z", + "end": "2022-07-19T07:03:38.573Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T07:03:38.573Z", + "end": "2022-07-19T08:43:39.796Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "512699108809637890", + "start": "2022-06-01T17:15:50.876Z", + "end": "2022-06-02T00:08:34.025Z", + "events": [ + { + "start": "2022-06-01T17:15:50.876Z", + "end": "2022-06-01T18:38:23.505Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T18:38:23.505Z", + "end": "2022-06-01T20:00:56.134Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-01T20:00:56.134Z", + "end": "2022-06-01T21:23:28.763Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-01T21:23:28.763Z", + "end": "2022-06-01T22:46:01.392Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T22:46:01.392Z", + "end": "2022-06-02T00:08:34.021Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "606163888052109312", + "start": "2022-07-22T20:50:50.623Z", + "end": "2022-07-23T04:33:38.891Z", + "events": [ + { + "start": "2022-07-22T20:50:50.623Z", + "end": "2022-07-23T00:42:14.757Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T00:42:14.757Z", + "end": "2022-07-23T04:33:38.891Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "788818750251007268", + "game": "512789343157485602", + "start": "2022-07-28T11:17:34.462Z", + "end": "2022-07-28T15:35:48.504Z", + "events": [ + { + "start": "2022-07-28T11:17:34.462Z", + "end": "2022-07-28T12:43:39.142Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T12:43:39.142Z", + "end": "2022-07-28T14:09:43.822Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T14:09:43.822Z", + "end": "2022-07-28T15:35:48.502Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "512501896896970762", + "start": "2022-08-05T21:49:13.665Z", + "end": "2022-08-05T22:59:16.789Z", + "events": [ + { + "start": "2022-08-05T21:49:13.665Z", + "end": "2022-08-05T22:12:34.706Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T22:12:34.706Z", + "end": "2022-08-05T22:35:55.747Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T22:35:55.747Z", + "end": "2022-08-05T22:59:16.788Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786084290971413565", + "game": "512789120234422301", + "start": "2022-04-25T21:09:41.402Z", + "end": "2022-04-26T03:36:26.336Z", + "events": [ + { + "start": "2022-04-25T21:09:41.402Z", + "end": "2022-04-25T22:46:22.635Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T22:46:22.635Z", + "end": "2022-04-26T00:23:03.868Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T00:23:03.868Z", + "end": "2022-04-26T01:59:45.101Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T01:59:45.101Z", + "end": "2022-04-26T03:36:26.334Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "747381962738157784", + "game": "565341641427124244", + "start": "2022-05-27T04:30:13.948Z", + "end": "2022-05-27T10:59:05.310Z", + "events": [ + { + "start": "2022-05-27T04:30:13.948Z", + "end": "2022-05-27T10:59:05.310Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "614448244260339712", + "start": "2022-07-30T12:07:49.958Z", + "end": "2022-07-30T19:53:18.450Z", + "events": [ + { + "start": "2022-07-30T12:07:49.958Z", + "end": "2022-07-30T14:04:12.081Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T14:04:12.081Z", + "end": "2022-07-30T16:00:34.204Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-30T16:00:34.204Z", + "end": "2022-07-30T17:56:56.327Z", + "state": "IDLE" + }, + { + "start": "2022-07-30T17:56:56.327Z", + "end": "2022-07-30T19:53:18.450Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "137536289023624121", + "game": "606163888052109312", + "start": "2022-05-31T05:53:32.521Z", + "end": "2022-05-31T06:44:03.966Z", + "events": [ + { + "start": "2022-05-31T05:53:32.521Z", + "end": "2022-05-31T06:03:38.810Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T06:03:38.810Z", + "end": "2022-05-31T06:13:45.099Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T06:13:45.099Z", + "end": "2022-05-31T06:23:51.388Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T06:23:51.388Z", + "end": "2022-05-31T06:33:57.677Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T06:33:57.677Z", + "end": "2022-05-31T06:44:03.966Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "572456126872944651", + "start": "2022-04-23T21:55:08.888Z", + "end": "2022-04-24T01:17:14.876Z", + "events": [ + { + "start": "2022-04-23T21:55:08.888Z", + "end": "2022-04-24T01:17:14.876Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "406850294055619241", + "game": "540120593576493057", + "start": "2022-07-31T05:40:41.711Z", + "end": "2022-07-31T14:22:29.746Z", + "events": [ + { + "start": "2022-07-31T05:40:41.711Z", + "end": "2022-07-31T07:25:03.318Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T07:25:03.318Z", + "end": "2022-07-31T09:09:24.925Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T09:09:24.925Z", + "end": "2022-07-31T10:53:46.532Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T10:53:46.532Z", + "end": "2022-07-31T12:38:08.139Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T12:38:08.139Z", + "end": "2022-07-31T14:22:29.746Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "700136079562375258", + "start": "2022-05-29T12:42:14.981Z", + "end": "2022-05-29T18:14:25.623Z", + "events": [ + { + "start": "2022-05-29T12:42:14.981Z", + "end": "2022-05-29T14:05:17.641Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T14:05:17.641Z", + "end": "2022-05-29T15:28:20.301Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T15:28:20.301Z", + "end": "2022-05-29T16:51:22.961Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T16:51:22.961Z", + "end": "2022-05-29T18:14:25.621Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "636935635446628860", + "game": "512789427462995988", + "start": "2022-07-04T01:15:28.450Z", + "end": "2022-07-04T09:59:55.681Z", + "events": [ + { + "start": "2022-07-04T01:15:28.450Z", + "end": "2022-07-04T05:37:42.065Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T05:37:42.065Z", + "end": "2022-07-04T09:59:55.680Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "938976307338486810", + "game": "535869836748783616", + "start": "2022-07-01T13:24:05.510Z", + "end": "2022-07-01T21:03:33.608Z", + "events": [ + { + "start": "2022-07-01T13:24:05.510Z", + "end": "2022-07-01T14:55:59.129Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T14:55:59.129Z", + "end": "2022-07-01T16:27:52.748Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-01T16:27:52.748Z", + "end": "2022-07-01T17:59:46.367Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T17:59:46.367Z", + "end": "2022-07-01T19:31:39.986Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T19:31:39.986Z", + "end": "2022-07-01T21:03:33.605Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "161887854890745672", + "game": "584069374462394368", + "start": "2022-07-01T02:23:02.433Z", + "end": "2022-07-01T06:34:00.328Z", + "events": [ + { + "start": "2022-07-01T02:23:02.433Z", + "end": "2022-07-01T03:13:14.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T03:13:14.012Z", + "end": "2022-07-01T04:03:25.591Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T04:03:25.591Z", + "end": "2022-07-01T04:53:37.170Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T04:53:37.170Z", + "end": "2022-07-01T05:43:48.749Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T05:43:48.749Z", + "end": "2022-07-01T06:34:00.328Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "510690749854514547", + "game": "511619499053678668", + "start": "2022-07-31T21:08:36.930Z", + "end": "2022-08-01T04:17:27.928Z", + "events": [ + { + "start": "2022-07-31T21:08:36.930Z", + "end": "2022-08-01T04:17:27.928Z", + "state": "IDLE" + } + ] + }, + { + "user": "467658810442648809", + "game": "553697181249437716", + "start": "2022-06-30T22:28:23.510Z", + "end": "2022-07-01T00:58:12.469Z", + "events": [ + { + "start": "2022-06-30T22:28:23.510Z", + "end": "2022-06-30T22:58:21.301Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-30T22:58:21.301Z", + "end": "2022-06-30T23:28:19.092Z", + "state": "IDLE" + }, + { + "start": "2022-06-30T23:28:19.092Z", + "end": "2022-06-30T23:58:16.883Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-30T23:58:16.883Z", + "end": "2022-07-01T00:28:14.674Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T00:28:14.674Z", + "end": "2022-07-01T00:58:12.465Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "605723970188938456", + "game": "584069374462394368", + "start": "2022-08-05T16:04:09.960Z", + "end": "2022-08-05T22:44:57.529Z", + "events": [ + { + "start": "2022-08-05T16:04:09.960Z", + "end": "2022-08-05T22:44:57.529Z", + "state": "IDLE" + } + ] + }, + { + "user": "538658792298239054", + "game": "588739017718366208", + "start": "2022-07-06T18:21:31.818Z", + "end": "2022-07-07T01:27:58.305Z", + "events": [ + { + "start": "2022-07-06T18:21:31.818Z", + "end": "2022-07-06T19:46:49.115Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T19:46:49.115Z", + "end": "2022-07-06T21:12:06.412Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-06T21:12:06.412Z", + "end": "2022-07-06T22:37:23.709Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-06T22:37:23.709Z", + "end": "2022-07-07T00:02:41.006Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T00:02:41.006Z", + "end": "2022-07-07T01:27:58.303Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "605723970188938456", + "game": "356875221078245376", + "start": "2022-07-22T05:00:20.885Z", + "end": "2022-07-22T08:29:27.798Z", + "events": [ + { + "start": "2022-07-22T05:00:20.885Z", + "end": "2022-07-22T06:44:54.341Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T06:44:54.341Z", + "end": "2022-07-22T08:29:27.797Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "554921822626381879", + "start": "2022-07-11T12:10:39.818Z", + "end": "2022-07-11T13:34:29.516Z", + "events": [ + { + "start": "2022-07-11T12:10:39.818Z", + "end": "2022-07-11T13:34:29.516Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "153631479524744694", + "game": "542474758835535872", + "start": "2022-07-22T08:44:31.785Z", + "end": "2022-07-22T16:00:51.431Z", + "events": [ + { + "start": "2022-07-22T08:44:31.785Z", + "end": "2022-07-22T10:11:47.714Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T10:11:47.714Z", + "end": "2022-07-22T11:39:03.643Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T11:39:03.643Z", + "end": "2022-07-22T13:06:19.572Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T13:06:19.572Z", + "end": "2022-07-22T14:33:35.501Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T14:33:35.501Z", + "end": "2022-07-22T16:00:51.430Z", + "state": "IDLE" + } + ] + }, + { + "user": "126384926926158511", + "game": "550277544025522176", + "start": "2022-08-05T07:59:42.712Z", + "end": "2022-08-05T17:06:21.759Z", + "events": [ + { + "start": "2022-08-05T07:59:42.712Z", + "end": "2022-08-05T17:06:21.759Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "467658810442648809", + "game": "560781100197216267", + "start": "2022-07-01T18:00:48.472Z", + "end": "2022-07-02T01:51:23.008Z", + "events": [ + { + "start": "2022-07-01T18:00:48.472Z", + "end": "2022-07-02T01:51:23.008Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "592976500802846750", + "start": "2022-05-27T21:24:32.133Z", + "end": "2022-05-28T01:18:06.404Z", + "events": [ + { + "start": "2022-05-27T21:24:32.133Z", + "end": "2022-05-27T23:21:19.268Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T23:21:19.268Z", + "end": "2022-05-28T01:18:06.403Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "394970121077311909", + "game": "572456126872944651", + "start": "2022-05-15T16:57:32.210Z", + "end": "2022-05-16T01:02:29.325Z", + "events": [ + { + "start": "2022-05-15T16:57:32.210Z", + "end": "2022-05-15T18:58:46.488Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T18:58:46.488Z", + "end": "2022-05-15T21:00:00.766Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T21:00:00.766Z", + "end": "2022-05-15T23:01:15.044Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T23:01:15.044Z", + "end": "2022-05-16T01:02:29.322Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "597588168178663434", + "start": "2022-06-01T13:02:23.174Z", + "end": "2022-06-01T19:19:39.308Z", + "events": [ + { + "start": "2022-06-01T13:02:23.174Z", + "end": "2022-06-01T19:19:39.308Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "542075586886107149", + "start": "2022-07-29T13:02:43.772Z", + "end": "2022-07-29T17:16:22.286Z", + "events": [ + { + "start": "2022-07-29T13:02:43.772Z", + "end": "2022-07-29T14:27:16.610Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T14:27:16.610Z", + "end": "2022-07-29T15:51:49.448Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T15:51:49.448Z", + "end": "2022-07-29T17:16:22.286Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "606163888052109312", + "start": "2022-08-05T10:55:08.937Z", + "end": "2022-08-05T14:28:49.337Z", + "events": [ + { + "start": "2022-08-05T10:55:08.937Z", + "end": "2022-08-05T12:41:59.137Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T12:41:59.137Z", + "end": "2022-08-05T14:28:49.337Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "553697181249437716", + "start": "2022-05-24T13:50:09.251Z", + "end": "2022-05-24T22:40:49.257Z", + "events": [ + { + "start": "2022-05-24T13:50:09.251Z", + "end": "2022-05-24T15:36:17.252Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T15:36:17.252Z", + "end": "2022-05-24T17:22:25.253Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T17:22:25.253Z", + "end": "2022-05-24T19:08:33.254Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T19:08:33.254Z", + "end": "2022-05-24T20:54:41.255Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T20:54:41.255Z", + "end": "2022-05-24T22:40:49.256Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "931211630078779300", + "game": "569008830701240340", + "start": "2022-05-25T12:53:15.056Z", + "end": "2022-05-25T18:16:23.511Z", + "events": [ + { + "start": "2022-05-25T12:53:15.056Z", + "end": "2022-05-25T13:57:52.747Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T13:57:52.747Z", + "end": "2022-05-25T15:02:30.438Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T15:02:30.438Z", + "end": "2022-05-25T16:07:08.129Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T16:07:08.129Z", + "end": "2022-05-25T17:11:45.820Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T17:11:45.820Z", + "end": "2022-05-25T18:16:23.511Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "559757870366930730", + "game": "569008830701240340", + "start": "2022-05-08T07:26:17.977Z", + "end": "2022-05-08T08:00:48.176Z", + "events": [ + { + "start": "2022-05-08T07:26:17.977Z", + "end": "2022-05-08T07:34:55.526Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T07:34:55.526Z", + "end": "2022-05-08T07:43:33.075Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T07:43:33.075Z", + "end": "2022-05-08T07:52:10.624Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T07:52:10.624Z", + "end": "2022-05-08T08:00:48.173Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "605723970188938456", + "game": "540120593576493057", + "start": "2022-05-22T02:07:20.803Z", + "end": "2022-05-22T07:20:23.119Z", + "events": [ + { + "start": "2022-05-22T02:07:20.803Z", + "end": "2022-05-22T07:20:23.119Z", + "state": "IDLE" + } + ] + }, + { + "user": "791267126190249625", + "game": "572456126872944651", + "start": "2022-04-20T13:31:32.611Z", + "end": "2022-04-20T19:51:46.657Z", + "events": [ + { + "start": "2022-04-20T13:31:32.611Z", + "end": "2022-04-20T15:38:17.293Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-20T15:38:17.293Z", + "end": "2022-04-20T17:45:01.975Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T17:45:01.975Z", + "end": "2022-04-20T19:51:46.657Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "553697181249437716", + "start": "2022-07-23T18:47:59.400Z", + "end": "2022-07-23T20:25:38.869Z", + "events": [ + { + "start": "2022-07-23T18:47:59.400Z", + "end": "2022-07-23T20:25:38.869Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "269014914705953013", + "game": "588739017718366208", + "start": "2022-08-03T23:02:09.338Z", + "end": "2022-08-03T23:24:38.907Z", + "events": [ + { + "start": "2022-08-03T23:02:09.338Z", + "end": "2022-08-03T23:13:24.122Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T23:13:24.122Z", + "end": "2022-08-03T23:24:38.906Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "560781100197216267", + "start": "2022-07-07T06:37:10.343Z", + "end": "2022-07-07T14:45:32.800Z", + "events": [ + { + "start": "2022-07-07T06:37:10.343Z", + "end": "2022-07-07T10:41:21.571Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-07T10:41:21.571Z", + "end": "2022-07-07T14:45:32.799Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "336473229248470346", + "game": "554573307161214977", + "start": "2022-05-02T10:20:14.851Z", + "end": "2022-05-02T20:09:05.878Z", + "events": [ + { + "start": "2022-05-02T10:20:14.851Z", + "end": "2022-05-02T12:47:27.607Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T12:47:27.607Z", + "end": "2022-05-02T15:14:40.363Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T15:14:40.363Z", + "end": "2022-05-02T17:41:53.119Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T17:41:53.119Z", + "end": "2022-05-02T20:09:05.875Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "131482253203487270", + "game": "512789343157485602", + "start": "2022-05-12T16:53:10.880Z", + "end": "2022-05-12T18:24:57.735Z", + "events": [ + { + "start": "2022-05-12T16:53:10.880Z", + "end": "2022-05-12T17:16:07.593Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T17:16:07.593Z", + "end": "2022-05-12T17:39:04.306Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T17:39:04.306Z", + "end": "2022-05-12T18:02:01.019Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-12T18:02:01.019Z", + "end": "2022-05-12T18:24:57.732Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "346608907417001845", + "game": "558547388583772201", + "start": "2022-07-19T06:31:57.346Z", + "end": "2022-07-19T09:13:49.416Z", + "events": [ + { + "start": "2022-07-19T06:31:57.346Z", + "end": "2022-07-19T07:25:54.702Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T07:25:54.702Z", + "end": "2022-07-19T08:19:52.058Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T08:19:52.058Z", + "end": "2022-07-19T09:13:49.414Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "600708263053781983", + "game": "512789343157485602", + "start": "2022-06-03T19:16:04.576Z", + "end": "2022-06-04T01:48:11.200Z", + "events": [ + { + "start": "2022-06-03T19:16:04.576Z", + "end": "2022-06-03T20:54:06.232Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T20:54:06.232Z", + "end": "2022-06-03T22:32:07.888Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T22:32:07.888Z", + "end": "2022-06-04T00:10:09.544Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T00:10:09.544Z", + "end": "2022-06-04T01:48:11.200Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "554573307161214977", + "start": "2022-07-01T09:06:50.695Z", + "end": "2022-07-01T10:39:24.569Z", + "events": [ + { + "start": "2022-07-01T09:06:50.695Z", + "end": "2022-07-01T09:29:59.163Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T09:29:59.163Z", + "end": "2022-07-01T09:53:07.631Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T09:53:07.631Z", + "end": "2022-07-01T10:16:16.099Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T10:16:16.099Z", + "end": "2022-07-01T10:39:24.567Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "596421190780633864", + "game": "569253958967885828", + "start": "2022-04-27T12:50:51.700Z", + "end": "2022-04-27T22:54:38.818Z", + "events": [ + { + "start": "2022-04-27T12:50:51.700Z", + "end": "2022-04-27T14:51:37.123Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T14:51:37.123Z", + "end": "2022-04-27T16:52:22.546Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T16:52:22.546Z", + "end": "2022-04-27T18:53:07.969Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T18:53:07.969Z", + "end": "2022-04-27T20:53:53.392Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T20:53:53.392Z", + "end": "2022-04-27T22:54:38.815Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "463820732483181525", + "game": "569253958967885828", + "start": "2022-07-29T11:47:22.244Z", + "end": "2022-07-29T12:05:42.780Z", + "events": [ + { + "start": "2022-07-29T11:47:22.244Z", + "end": "2022-07-29T11:56:32.512Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T11:56:32.512Z", + "end": "2022-07-29T12:05:42.780Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "424856688594618054", + "game": "512699108809637890", + "start": "2022-05-28T04:31:37.330Z", + "end": "2022-05-28T08:35:05.703Z", + "events": [ + { + "start": "2022-05-28T04:31:37.330Z", + "end": "2022-05-28T05:20:19.004Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T05:20:19.004Z", + "end": "2022-05-28T06:09:00.678Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T06:09:00.678Z", + "end": "2022-05-28T06:57:42.352Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T06:57:42.352Z", + "end": "2022-05-28T07:46:24.026Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-28T07:46:24.026Z", + "end": "2022-05-28T08:35:05.700Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "597588168178663434", + "start": "2022-06-23T00:01:38.350Z", + "end": "2022-06-23T00:22:39.341Z", + "events": [ + { + "start": "2022-06-23T00:01:38.350Z", + "end": "2022-06-23T00:06:53.597Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T00:06:53.597Z", + "end": "2022-06-23T00:12:08.844Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T00:12:08.844Z", + "end": "2022-06-23T00:17:24.091Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T00:17:24.091Z", + "end": "2022-06-23T00:22:39.338Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "732542352358923773", + "game": "558547388583772201", + "start": "2022-04-21T19:14:39.216Z", + "end": "2022-04-22T02:39:04.273Z", + "events": [ + { + "start": "2022-04-21T19:14:39.216Z", + "end": "2022-04-21T22:56:51.744Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T22:56:51.744Z", + "end": "2022-04-22T02:39:04.272Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "101572134856427564", + "game": "597588168178663434", + "start": "2022-06-04T16:28:00.130Z", + "end": "2022-06-04T17:09:45.235Z", + "events": [ + { + "start": "2022-06-04T16:28:00.130Z", + "end": "2022-06-04T17:09:45.235Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "494763633796983404", + "game": "597588168178663434", + "start": "2022-06-16T06:45:01.953Z", + "end": "2022-06-16T12:22:36.492Z", + "events": [ + { + "start": "2022-06-16T06:45:01.953Z", + "end": "2022-06-16T08:37:33.466Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T08:37:33.466Z", + "end": "2022-06-16T10:30:04.979Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T10:30:04.979Z", + "end": "2022-06-16T12:22:36.492Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "514228311661084682", + "start": "2022-06-12T09:55:32.283Z", + "end": "2022-06-12T10:17:47.066Z", + "events": [ + { + "start": "2022-06-12T09:55:32.283Z", + "end": "2022-06-12T10:17:47.066Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "182925797752958092", + "game": "512699108809637890", + "start": "2022-07-31T16:11:55.767Z", + "end": "2022-07-31T22:58:21.770Z", + "events": [ + { + "start": "2022-07-31T16:11:55.767Z", + "end": "2022-07-31T22:58:21.770Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "597588168178663434", + "start": "2022-04-16T06:12:38.840Z", + "end": "2022-04-16T14:05:24.493Z", + "events": [ + { + "start": "2022-04-16T06:12:38.840Z", + "end": "2022-04-16T07:47:11.970Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T07:47:11.970Z", + "end": "2022-04-16T09:21:45.100Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T09:21:45.100Z", + "end": "2022-04-16T10:56:18.230Z", + "state": "IDLE" + }, + { + "start": "2022-04-16T10:56:18.230Z", + "end": "2022-04-16T12:30:51.360Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T12:30:51.360Z", + "end": "2022-04-16T14:05:24.490Z", + "state": "IDLE" + } + ] + }, + { + "user": "922664752332558395", + "game": "514228311661084682", + "start": "2022-05-22T14:01:46.446Z", + "end": "2022-05-22T17:35:15.492Z", + "events": [ + { + "start": "2022-05-22T14:01:46.446Z", + "end": "2022-05-22T17:35:15.492Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "584069374462394368", + "start": "2022-05-22T15:20:27.216Z", + "end": "2022-05-22T18:03:00.559Z", + "events": [ + { + "start": "2022-05-22T15:20:27.216Z", + "end": "2022-05-22T16:01:05.551Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-22T16:01:05.551Z", + "end": "2022-05-22T16:41:43.886Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-22T16:41:43.886Z", + "end": "2022-05-22T17:22:22.221Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T17:22:22.221Z", + "end": "2022-05-22T18:03:00.556Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "565341641427124244", + "start": "2022-06-23T18:17:27.587Z", + "end": "2022-06-23T19:56:07.800Z", + "events": [ + { + "start": "2022-06-23T18:17:27.587Z", + "end": "2022-06-23T18:50:20.991Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T18:50:20.991Z", + "end": "2022-06-23T19:23:14.395Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T19:23:14.395Z", + "end": "2022-06-23T19:56:07.799Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "569008830701240340", + "start": "2022-06-26T00:07:34.575Z", + "end": "2022-06-26T03:40:16.762Z", + "events": [ + { + "start": "2022-06-26T00:07:34.575Z", + "end": "2022-06-26T03:40:16.762Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "153631479524744694", + "game": "572456126872944651", + "start": "2022-05-17T14:18:25.925Z", + "end": "2022-05-17T14:50:41.251Z", + "events": [ + { + "start": "2022-05-17T14:18:25.925Z", + "end": "2022-05-17T14:50:41.251Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "841397740041930984", + "game": "569008830701240340", + "start": "2022-08-02T09:46:35.228Z", + "end": "2022-08-02T13:43:02.556Z", + "events": [ + { + "start": "2022-08-02T09:46:35.228Z", + "end": "2022-08-02T10:33:52.693Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T10:33:52.693Z", + "end": "2022-08-02T11:21:10.158Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T11:21:10.158Z", + "end": "2022-08-02T12:08:27.623Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T12:08:27.623Z", + "end": "2022-08-02T12:55:45.088Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-02T12:55:45.088Z", + "end": "2022-08-02T13:43:02.553Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "569253958967885828", + "start": "2022-04-24T15:40:05.327Z", + "end": "2022-04-25T01:29:32.908Z", + "events": [ + { + "start": "2022-04-24T15:40:05.327Z", + "end": "2022-04-24T18:56:34.520Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T18:56:34.520Z", + "end": "2022-04-24T22:13:03.713Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-24T22:13:03.713Z", + "end": "2022-04-25T01:29:32.906Z", + "state": "IDLE" + } + ] + }, + { + "user": "951131768137733554", + "game": "518088627234930688", + "start": "2022-06-04T19:06:44.493Z", + "end": "2022-06-04T23:15:26.869Z", + "events": [ + { + "start": "2022-06-04T19:06:44.493Z", + "end": "2022-06-04T23:15:26.869Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "452396069922968436", + "game": "521842831262875670", + "start": "2022-05-17T15:36:20.645Z", + "end": "2022-05-17T17:46:18.668Z", + "events": [ + { + "start": "2022-05-17T15:36:20.645Z", + "end": "2022-05-17T16:41:19.656Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T16:41:19.656Z", + "end": "2022-05-17T17:46:18.667Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "549054179973094329", + "game": "520462578061803588", + "start": "2022-07-09T10:30:36.517Z", + "end": "2022-07-09T15:20:26.006Z", + "events": [ + { + "start": "2022-07-09T10:30:36.517Z", + "end": "2022-07-09T12:07:13.013Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T12:07:13.013Z", + "end": "2022-07-09T13:43:49.509Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T13:43:49.509Z", + "end": "2022-07-09T15:20:26.005Z", + "state": "IDLE" + } + ] + }, + { + "user": "106607193284486979", + "game": "540120593576493057", + "start": "2022-07-17T10:28:53.370Z", + "end": "2022-07-17T15:42:42.510Z", + "events": [ + { + "start": "2022-07-17T10:28:53.370Z", + "end": "2022-07-17T11:31:39.198Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-17T11:31:39.198Z", + "end": "2022-07-17T12:34:25.026Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T12:34:25.026Z", + "end": "2022-07-17T13:37:10.854Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-17T13:37:10.854Z", + "end": "2022-07-17T14:39:56.682Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T14:39:56.682Z", + "end": "2022-07-17T15:42:42.510Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "508057374875975682", + "start": "2022-07-12T09:44:27.599Z", + "end": "2022-07-12T11:02:34.943Z", + "events": [ + { + "start": "2022-07-12T09:44:27.599Z", + "end": "2022-07-12T10:23:31.271Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T10:23:31.271Z", + "end": "2022-07-12T11:02:34.943Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "821608522568592914", + "game": "519644267212177418", + "start": "2022-05-14T01:01:14.567Z", + "end": "2022-05-14T01:30:15.462Z", + "events": [ + { + "start": "2022-05-14T01:01:14.567Z", + "end": "2022-05-14T01:08:29.790Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T01:08:29.790Z", + "end": "2022-05-14T01:15:45.013Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T01:15:45.013Z", + "end": "2022-05-14T01:23:00.236Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T01:23:00.236Z", + "end": "2022-05-14T01:30:15.459Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "549512435585908756", + "start": "2022-05-30T14:00:32.932Z", + "end": "2022-05-30T15:20:39.979Z", + "events": [ + { + "start": "2022-05-30T14:00:32.932Z", + "end": "2022-05-30T14:27:15.281Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T14:27:15.281Z", + "end": "2022-05-30T14:53:57.630Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T14:53:57.630Z", + "end": "2022-05-30T15:20:39.979Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "512501896896970762", + "start": "2022-05-29T03:49:52.301Z", + "end": "2022-05-29T13:20:30.567Z", + "events": [ + { + "start": "2022-05-29T03:49:52.301Z", + "end": "2022-05-29T06:12:31.867Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T06:12:31.867Z", + "end": "2022-05-29T08:35:11.433Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T08:35:11.433Z", + "end": "2022-05-29T10:57:50.999Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T10:57:50.999Z", + "end": "2022-05-29T13:20:30.565Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "519644267212177418", + "start": "2022-07-22T06:09:07.017Z", + "end": "2022-07-22T14:13:41.668Z", + "events": [ + { + "start": "2022-07-22T06:09:07.017Z", + "end": "2022-07-22T07:46:01.947Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T07:46:01.947Z", + "end": "2022-07-22T09:22:56.877Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T09:22:56.877Z", + "end": "2022-07-22T10:59:51.807Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T10:59:51.807Z", + "end": "2022-07-22T12:36:46.737Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T12:36:46.737Z", + "end": "2022-07-22T14:13:41.667Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "542475118396309528", + "start": "2022-07-11T18:48:23.823Z", + "end": "2022-07-12T04:08:10.468Z", + "events": [ + { + "start": "2022-07-11T18:48:23.823Z", + "end": "2022-07-11T20:40:21.152Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T20:40:21.152Z", + "end": "2022-07-11T22:32:18.481Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T22:32:18.481Z", + "end": "2022-07-12T00:24:15.810Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T00:24:15.810Z", + "end": "2022-07-12T02:16:13.139Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T02:16:13.139Z", + "end": "2022-07-12T04:08:10.468Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "521842831262875670", + "start": "2022-07-10T17:26:23.530Z", + "end": "2022-07-10T22:11:41.118Z", + "events": [ + { + "start": "2022-07-10T17:26:23.530Z", + "end": "2022-07-10T22:11:41.118Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "731522398939920723", + "game": "606163888052109312", + "start": "2022-05-18T16:10:08.781Z", + "end": "2022-05-18T18:08:33.347Z", + "events": [ + { + "start": "2022-05-18T16:10:08.781Z", + "end": "2022-05-18T17:09:21.064Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T17:09:21.064Z", + "end": "2022-05-18T18:08:33.347Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "658550407298256890", + "game": "553697181249437716", + "start": "2022-06-13T11:00:42.239Z", + "end": "2022-06-13T14:21:46.129Z", + "events": [ + { + "start": "2022-06-13T11:00:42.239Z", + "end": "2022-06-13T14:21:46.129Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "356875221078245376", + "start": "2022-06-16T10:39:25.521Z", + "end": "2022-06-16T13:23:30.642Z", + "events": [ + { + "start": "2022-06-16T10:39:25.521Z", + "end": "2022-06-16T12:01:28.081Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T12:01:28.081Z", + "end": "2022-06-16T13:23:30.641Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "584069374462394368", + "start": "2022-07-09T10:21:40.866Z", + "end": "2022-07-09T18:33:58.170Z", + "events": [ + { + "start": "2022-07-09T10:21:40.866Z", + "end": "2022-07-09T18:33:58.170Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "510690749854514547", + "game": "553697181249437716", + "start": "2022-06-20T21:14:39.765Z", + "end": "2022-06-21T04:26:01.131Z", + "events": [ + { + "start": "2022-06-20T21:14:39.765Z", + "end": "2022-06-20T23:02:30.106Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T23:02:30.106Z", + "end": "2022-06-21T00:50:20.447Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T00:50:20.447Z", + "end": "2022-06-21T02:38:10.788Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T02:38:10.788Z", + "end": "2022-06-21T04:26:01.129Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "378424071510192465", + "game": "510199020782747732", + "start": "2022-06-28T13:55:28.821Z", + "end": "2022-06-28T23:48:32.772Z", + "events": [ + { + "start": "2022-06-28T13:55:28.821Z", + "end": "2022-06-28T16:23:44.808Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-28T16:23:44.808Z", + "end": "2022-06-28T18:52:00.795Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T18:52:00.795Z", + "end": "2022-06-28T21:20:16.782Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-28T21:20:16.782Z", + "end": "2022-06-28T23:48:32.769Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "153631479524744694", + "game": "542474758835535872", + "start": "2022-04-25T19:10:14.978Z", + "end": "2022-04-26T05:06:34.947Z", + "events": [ + { + "start": "2022-04-25T19:10:14.978Z", + "end": "2022-04-25T21:39:19.970Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T21:39:19.970Z", + "end": "2022-04-26T00:08:24.962Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T00:08:24.962Z", + "end": "2022-04-26T02:37:29.954Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T02:37:29.954Z", + "end": "2022-04-26T05:06:34.946Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "535869836748783616", + "start": "2022-05-11T09:23:34.942Z", + "end": "2022-05-11T10:32:13.724Z", + "events": [ + { + "start": "2022-05-11T09:23:34.942Z", + "end": "2022-05-11T09:46:27.869Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T09:46:27.869Z", + "end": "2022-05-11T10:09:20.796Z", + "state": "IDLE" + }, + { + "start": "2022-05-11T10:09:20.796Z", + "end": "2022-05-11T10:32:13.723Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "576482762446602270", + "start": "2022-05-30T13:15:51.168Z", + "end": "2022-05-30T18:33:06.102Z", + "events": [ + { + "start": "2022-05-30T13:15:51.168Z", + "end": "2022-05-30T14:19:18.154Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T14:19:18.154Z", + "end": "2022-05-30T15:22:45.140Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T15:22:45.140Z", + "end": "2022-05-30T16:26:12.126Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T16:26:12.126Z", + "end": "2022-05-30T17:29:39.112Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T17:29:39.112Z", + "end": "2022-05-30T18:33:06.098Z", + "state": "IDLE" + } + ] + }, + { + "user": "866600263421429886", + "game": "572456126872944651", + "start": "2022-07-04T07:24:59.729Z", + "end": "2022-07-04T10:30:46.799Z", + "events": [ + { + "start": "2022-07-04T07:24:59.729Z", + "end": "2022-07-04T08:57:53.264Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T08:57:53.264Z", + "end": "2022-07-04T10:30:46.799Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "553697181249437716", + "start": "2022-04-24T23:48:00.805Z", + "end": "2022-04-24T23:51:35.236Z", + "events": [ + { + "start": "2022-04-24T23:48:00.805Z", + "end": "2022-04-24T23:51:35.236Z", + "state": "IDLE" + } + ] + }, + { + "user": "584489284152985092", + "game": "508057374875975682", + "start": "2022-05-24T17:28:58.606Z", + "end": "2022-05-24T20:02:30.515Z", + "events": [ + { + "start": "2022-05-24T17:28:58.606Z", + "end": "2022-05-24T18:45:44.560Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T18:45:44.560Z", + "end": "2022-05-24T20:02:30.514Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "546175179542364160", + "start": "2022-04-30T18:19:13.312Z", + "end": "2022-05-01T04:01:30.080Z", + "events": [ + { + "start": "2022-04-30T18:19:13.312Z", + "end": "2022-04-30T20:44:47.504Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-30T20:44:47.504Z", + "end": "2022-04-30T23:10:21.696Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-30T23:10:21.696Z", + "end": "2022-05-01T01:35:55.888Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T01:35:55.888Z", + "end": "2022-05-01T04:01:30.080Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "360264570671216445", + "game": "597860020935327787", + "start": "2022-05-08T01:58:51.747Z", + "end": "2022-05-08T02:30:40.978Z", + "events": [ + { + "start": "2022-05-08T01:58:51.747Z", + "end": "2022-05-08T02:05:13.593Z", + "state": "IDLE" + }, + { + "start": "2022-05-08T02:05:13.593Z", + "end": "2022-05-08T02:11:35.439Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T02:11:35.439Z", + "end": "2022-05-08T02:17:57.285Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T02:17:57.285Z", + "end": "2022-05-08T02:24:19.131Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T02:24:19.131Z", + "end": "2022-05-08T02:30:40.977Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "495724335127362694", + "game": "542075586886107149", + "start": "2022-06-27T00:50:41.273Z", + "end": "2022-06-27T03:29:13.972Z", + "events": [ + { + "start": "2022-06-27T00:50:41.273Z", + "end": "2022-06-27T02:09:57.622Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:09:57.622Z", + "end": "2022-06-27T03:29:13.971Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "625617695768437507", + "game": "592976500802846750", + "start": "2022-05-26T12:35:11.221Z", + "end": "2022-05-26T18:39:03.329Z", + "events": [ + { + "start": "2022-05-26T12:35:11.221Z", + "end": "2022-05-26T15:37:07.275Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-26T15:37:07.275Z", + "end": "2022-05-26T18:39:03.329Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "542475118396309528", + "start": "2022-07-04T22:03:49.866Z", + "end": "2022-07-05T05:29:46.926Z", + "events": [ + { + "start": "2022-07-04T22:03:49.866Z", + "end": "2022-07-04T23:55:19.131Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T23:55:19.131Z", + "end": "2022-07-05T01:46:48.396Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-05T01:46:48.396Z", + "end": "2022-07-05T03:38:17.661Z", + "state": "IDLE" + }, + { + "start": "2022-07-05T03:38:17.661Z", + "end": "2022-07-05T05:29:46.926Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "512789343157485602", + "start": "2022-05-29T04:59:16.196Z", + "end": "2022-05-29T09:30:07.637Z", + "events": [ + { + "start": "2022-05-29T04:59:16.196Z", + "end": "2022-05-29T06:29:33.343Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T06:29:33.343Z", + "end": "2022-05-29T07:59:50.490Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T07:59:50.490Z", + "end": "2022-05-29T09:30:07.637Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786084290971413565", + "game": "510199020782747732", + "start": "2022-07-14T07:35:38.556Z", + "end": "2022-07-14T11:13:33.771Z", + "events": [ + { + "start": "2022-07-14T07:35:38.556Z", + "end": "2022-07-14T08:19:13.599Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T08:19:13.599Z", + "end": "2022-07-14T09:02:48.642Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T09:02:48.642Z", + "end": "2022-07-14T09:46:23.685Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T09:46:23.685Z", + "end": "2022-07-14T10:29:58.728Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-14T10:29:58.728Z", + "end": "2022-07-14T11:13:33.771Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "549512435585908756", + "start": "2022-07-08T01:12:51.480Z", + "end": "2022-07-08T03:06:38.070Z", + "events": [ + { + "start": "2022-07-08T01:12:51.480Z", + "end": "2022-07-08T02:09:44.775Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T02:09:44.775Z", + "end": "2022-07-08T03:06:38.070Z", + "state": "IDLE" + } + ] + }, + { + "user": "715446191320920764", + "game": "535384357536399404", + "start": "2022-04-28T20:17:06.291Z", + "end": "2022-04-28T22:15:57.120Z", + "events": [ + { + "start": "2022-04-28T20:17:06.291Z", + "end": "2022-04-28T20:40:52.456Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-28T20:40:52.456Z", + "end": "2022-04-28T21:04:38.621Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T21:04:38.621Z", + "end": "2022-04-28T21:28:24.786Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T21:28:24.786Z", + "end": "2022-04-28T21:52:10.951Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T21:52:10.951Z", + "end": "2022-04-28T22:15:57.116Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "444246898747584433", + "game": "530454325214969866", + "start": "2022-07-05T12:46:41.924Z", + "end": "2022-07-05T14:38:01.588Z", + "events": [ + { + "start": "2022-07-05T12:46:41.924Z", + "end": "2022-07-05T13:42:21.756Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-05T13:42:21.756Z", + "end": "2022-07-05T14:38:01.588Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "406850294055619241", + "game": "512699108809637890", + "start": "2022-05-31T01:13:13.307Z", + "end": "2022-05-31T01:56:51.755Z", + "events": [ + { + "start": "2022-05-31T01:13:13.307Z", + "end": "2022-05-31T01:24:07.919Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T01:24:07.919Z", + "end": "2022-05-31T01:35:02.531Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T01:35:02.531Z", + "end": "2022-05-31T01:45:57.143Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T01:45:57.143Z", + "end": "2022-05-31T01:56:51.755Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "200801427122341912", + "game": "520453007578628124", + "start": "2022-04-18T06:00:23.657Z", + "end": "2022-04-18T06:40:59.856Z", + "events": [ + { + "start": "2022-04-18T06:00:23.657Z", + "end": "2022-04-18T06:08:30.896Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T06:08:30.896Z", + "end": "2022-04-18T06:16:38.135Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T06:16:38.135Z", + "end": "2022-04-18T06:24:45.374Z", + "state": "IDLE" + }, + { + "start": "2022-04-18T06:24:45.374Z", + "end": "2022-04-18T06:32:52.613Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-18T06:32:52.613Z", + "end": "2022-04-18T06:40:59.852Z", + "state": "IDLE" + } + ] + }, + { + "user": "938976307338486810", + "game": "606163888052109312", + "start": "2022-07-09T14:57:07.263Z", + "end": "2022-07-09T17:17:19.573Z", + "events": [ + { + "start": "2022-07-09T14:57:07.263Z", + "end": "2022-07-09T15:25:09.725Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T15:25:09.725Z", + "end": "2022-07-09T15:53:12.187Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T15:53:12.187Z", + "end": "2022-07-09T16:21:14.649Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T16:21:14.649Z", + "end": "2022-07-09T16:49:17.111Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T16:49:17.111Z", + "end": "2022-07-09T17:17:19.573Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "297014162745407430", + "game": "584069374462394368", + "start": "2022-06-26T23:17:24.267Z", + "end": "2022-06-27T08:21:57.751Z", + "events": [ + { + "start": "2022-06-26T23:17:24.267Z", + "end": "2022-06-27T02:18:55.428Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:18:55.428Z", + "end": "2022-06-27T05:20:26.589Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T05:20:26.589Z", + "end": "2022-06-27T08:21:57.750Z", + "state": "IDLE" + } + ] + }, + { + "user": "768513326430993269", + "game": "519644368735567873", + "start": "2022-07-18T11:10:24.828Z", + "end": "2022-07-18T19:32:23.118Z", + "events": [ + { + "start": "2022-07-18T11:10:24.828Z", + "end": "2022-07-18T15:21:23.973Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T15:21:23.973Z", + "end": "2022-07-18T19:32:23.118Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "558547388583772201", + "start": "2022-04-20T16:18:05.998Z", + "end": "2022-04-20T21:10:55.165Z", + "events": [ + { + "start": "2022-04-20T16:18:05.998Z", + "end": "2022-04-20T17:55:42.387Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-20T17:55:42.387Z", + "end": "2022-04-20T19:33:18.776Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T19:33:18.776Z", + "end": "2022-04-20T21:10:55.165Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "347172184335646820", + "game": "565341641427124244", + "start": "2022-05-24T13:43:05.324Z", + "end": "2022-05-24T15:57:13.804Z", + "events": [ + { + "start": "2022-05-24T13:43:05.324Z", + "end": "2022-05-24T14:16:37.444Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T14:16:37.444Z", + "end": "2022-05-24T14:50:09.564Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T14:50:09.564Z", + "end": "2022-05-24T15:23:41.684Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T15:23:41.684Z", + "end": "2022-05-24T15:57:13.804Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "931211630078779300", + "game": "530454325214969866", + "start": "2022-06-19T06:47:11.821Z", + "end": "2022-06-19T10:31:11.103Z", + "events": [ + { + "start": "2022-06-19T06:47:11.821Z", + "end": "2022-06-19T08:01:51.581Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T08:01:51.581Z", + "end": "2022-06-19T09:16:31.341Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-19T09:16:31.341Z", + "end": "2022-06-19T10:31:11.101Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "541104083732114799", + "game": "576482762446602270", + "start": "2022-05-06T18:48:24.454Z", + "end": "2022-05-07T03:59:38.110Z", + "events": [ + { + "start": "2022-05-06T18:48:24.454Z", + "end": "2022-05-06T21:52:09.006Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-06T21:52:09.006Z", + "end": "2022-05-07T00:55:53.558Z", + "state": "IDLE" + }, + { + "start": "2022-05-07T00:55:53.558Z", + "end": "2022-05-07T03:59:38.110Z", + "state": "IDLE" + } + ] + }, + { + "user": "951131768137733554", + "game": "523154344187789312", + "start": "2022-06-21T20:09:49.486Z", + "end": "2022-06-22T06:06:58.630Z", + "events": [ + { + "start": "2022-06-21T20:09:49.486Z", + "end": "2022-06-22T06:06:58.630Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "553697181249437716", + "start": "2022-05-07T05:50:03.751Z", + "end": "2022-05-07T07:14:35.944Z", + "events": [ + { + "start": "2022-05-07T05:50:03.751Z", + "end": "2022-05-07T07:14:35.944Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "495724335127362694", + "game": "520462578061803588", + "start": "2022-07-20T02:02:33.051Z", + "end": "2022-07-20T07:09:19.545Z", + "events": [ + { + "start": "2022-07-20T02:02:33.051Z", + "end": "2022-07-20T03:19:14.674Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-20T03:19:14.674Z", + "end": "2022-07-20T04:35:56.297Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T04:35:56.297Z", + "end": "2022-07-20T05:52:37.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T05:52:37.920Z", + "end": "2022-07-20T07:09:19.543Z", + "state": "IDLE" + } + ] + }, + { + "user": "881335427428668054", + "game": "553697181249437716", + "start": "2022-07-22T01:15:53.272Z", + "end": "2022-07-22T05:02:17.748Z", + "events": [ + { + "start": "2022-07-22T01:15:53.272Z", + "end": "2022-07-22T05:02:17.748Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "526489929631531009", + "start": "2022-07-03T16:48:09.769Z", + "end": "2022-07-03T17:05:06.015Z", + "events": [ + { + "start": "2022-07-03T16:48:09.769Z", + "end": "2022-07-03T16:56:37.892Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T16:56:37.892Z", + "end": "2022-07-03T17:05:06.015Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "628567265580410356", + "game": "530454325214969866", + "start": "2022-07-07T16:55:14.007Z", + "end": "2022-07-07T17:48:45.569Z", + "events": [ + { + "start": "2022-07-07T16:55:14.007Z", + "end": "2022-07-07T17:13:04.527Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T17:13:04.527Z", + "end": "2022-07-07T17:30:55.047Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T17:30:55.047Z", + "end": "2022-07-07T17:48:45.567Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "106607193284486979", + "game": "597588168178663434", + "start": "2022-06-21T22:37:53.826Z", + "end": "2022-06-22T02:05:36.698Z", + "events": [ + { + "start": "2022-06-21T22:37:53.826Z", + "end": "2022-06-21T23:29:49.544Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T23:29:49.544Z", + "end": "2022-06-22T00:21:45.262Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T00:21:45.262Z", + "end": "2022-06-22T01:13:40.980Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T01:13:40.980Z", + "end": "2022-06-22T02:05:36.698Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "628567265580410356", + "game": "520453007578628124", + "start": "2022-07-13T04:47:55.569Z", + "end": "2022-07-13T04:57:54.912Z", + "events": [ + { + "start": "2022-07-13T04:47:55.569Z", + "end": "2022-07-13T04:57:54.912Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "572456126872944651", + "start": "2022-05-05T17:18:05.127Z", + "end": "2022-05-05T21:10:29.961Z", + "events": [ + { + "start": "2022-05-05T17:18:05.127Z", + "end": "2022-05-05T18:35:33.405Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T18:35:33.405Z", + "end": "2022-05-05T19:53:01.683Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T19:53:01.683Z", + "end": "2022-05-05T21:10:29.961Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "572456126872944651", + "start": "2022-04-27T05:30:12.493Z", + "end": "2022-04-27T14:24:31.812Z", + "events": [ + { + "start": "2022-04-27T05:30:12.493Z", + "end": "2022-04-27T14:24:31.812Z", + "state": "IDLE" + } + ] + }, + { + "user": "747381962738157784", + "game": "550277544025522176", + "start": "2022-04-26T07:11:00.378Z", + "end": "2022-04-26T14:58:22.537Z", + "events": [ + { + "start": "2022-04-26T07:11:00.378Z", + "end": "2022-04-26T09:07:50.917Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T09:07:50.917Z", + "end": "2022-04-26T11:04:41.456Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T11:04:41.456Z", + "end": "2022-04-26T13:01:31.995Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T13:01:31.995Z", + "end": "2022-04-26T14:58:22.534Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "700136079562375258", + "start": "2022-06-04T16:49:07.519Z", + "end": "2022-06-05T02:16:26.288Z", + "events": [ + { + "start": "2022-06-04T16:49:07.519Z", + "end": "2022-06-04T18:42:35.272Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T18:42:35.272Z", + "end": "2022-06-04T20:36:03.025Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T20:36:03.025Z", + "end": "2022-06-04T22:29:30.778Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T22:29:30.778Z", + "end": "2022-06-05T00:22:58.531Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T00:22:58.531Z", + "end": "2022-06-05T02:16:26.284Z", + "state": "IDLE" + } + ] + }, + { + "user": "584489284152985092", + "game": "520462578061803588", + "start": "2022-06-22T23:25:53.001Z", + "end": "2022-06-23T08:33:01.364Z", + "events": [ + { + "start": "2022-06-22T23:25:53.001Z", + "end": "2022-06-23T01:42:40.091Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-23T01:42:40.091Z", + "end": "2022-06-23T03:59:27.181Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T03:59:27.181Z", + "end": "2022-06-23T06:16:14.271Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T06:16:14.271Z", + "end": "2022-06-23T08:33:01.361Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "378424071510192465", + "game": "512789427462995988", + "start": "2022-06-28T00:04:53.261Z", + "end": "2022-06-28T06:48:03.173Z", + "events": [ + { + "start": "2022-06-28T00:04:53.261Z", + "end": "2022-06-28T01:45:40.739Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T01:45:40.739Z", + "end": "2022-06-28T03:26:28.217Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T03:26:28.217Z", + "end": "2022-06-28T05:07:15.695Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T05:07:15.695Z", + "end": "2022-06-28T06:48:03.173Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "549054179973094329", + "game": "526489929631531009", + "start": "2022-07-18T01:42:11.193Z", + "end": "2022-07-18T03:02:14.212Z", + "events": [ + { + "start": "2022-07-18T01:42:11.193Z", + "end": "2022-07-18T01:58:11.796Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T01:58:11.796Z", + "end": "2022-07-18T02:14:12.399Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T02:14:12.399Z", + "end": "2022-07-18T02:30:13.002Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T02:30:13.002Z", + "end": "2022-07-18T02:46:13.605Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T02:46:13.605Z", + "end": "2022-07-18T03:02:14.208Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "584069374462394368", + "start": "2022-07-12T12:02:10.793Z", + "end": "2022-07-12T14:29:44.160Z", + "events": [ + { + "start": "2022-07-12T12:02:10.793Z", + "end": "2022-07-12T12:31:41.466Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T12:31:41.466Z", + "end": "2022-07-12T13:01:12.139Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T13:01:12.139Z", + "end": "2022-07-12T13:30:42.812Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T13:30:42.812Z", + "end": "2022-07-12T14:00:13.485Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T14:00:13.485Z", + "end": "2022-07-12T14:29:44.158Z", + "state": "IDLE" + } + ] + }, + { + "user": "101572134856427564", + "game": "508057374875975682", + "start": "2022-05-30T03:47:08.376Z", + "end": "2022-05-30T06:11:00.056Z", + "events": [ + { + "start": "2022-05-30T03:47:08.376Z", + "end": "2022-05-30T04:23:06.296Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T04:23:06.296Z", + "end": "2022-05-30T04:59:04.216Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T04:59:04.216Z", + "end": "2022-05-30T05:35:02.136Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T05:35:02.136Z", + "end": "2022-05-30T06:11:00.056Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "572456126872944651", + "start": "2022-06-08T15:35:16.431Z", + "end": "2022-06-08T16:53:21.587Z", + "events": [ + { + "start": "2022-06-08T15:35:16.431Z", + "end": "2022-06-08T16:14:19.009Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T16:14:19.009Z", + "end": "2022-06-08T16:53:21.587Z", + "state": "IDLE" + } + ] + }, + { + "user": "185442579258045359", + "game": "700136079562375258", + "start": "2022-05-26T04:58:28.718Z", + "end": "2022-05-26T07:01:15.359Z", + "events": [ + { + "start": "2022-05-26T04:58:28.718Z", + "end": "2022-05-26T07:01:15.359Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "500919588166575890", + "game": "558547388583772201", + "start": "2022-07-18T06:01:36.821Z", + "end": "2022-07-18T08:18:13.055Z", + "events": [ + { + "start": "2022-07-18T06:01:36.821Z", + "end": "2022-07-18T06:28:56.067Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T06:28:56.067Z", + "end": "2022-07-18T06:56:15.313Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T06:56:15.313Z", + "end": "2022-07-18T07:23:34.559Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T07:23:34.559Z", + "end": "2022-07-18T07:50:53.805Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T07:50:53.805Z", + "end": "2022-07-18T08:18:13.051Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "500919588166575890", + "game": "549512435585908756", + "start": "2022-07-31T06:02:44.890Z", + "end": "2022-07-31T10:16:31.400Z", + "events": [ + { + "start": "2022-07-31T06:02:44.890Z", + "end": "2022-07-31T08:09:38.145Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T08:09:38.145Z", + "end": "2022-07-31T10:16:31.400Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "550277544025522176", + "start": "2022-04-14T16:28:38.193Z", + "end": "2022-04-15T02:14:58.682Z", + "events": [ + { + "start": "2022-04-14T16:28:38.193Z", + "end": "2022-04-14T19:44:05.022Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T19:44:05.022Z", + "end": "2022-04-14T22:59:31.851Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T22:59:31.851Z", + "end": "2022-04-15T02:14:58.680Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "508057374875975682", + "start": "2022-08-05T12:27:26.373Z", + "end": "2022-08-05T18:07:33.471Z", + "events": [ + { + "start": "2022-08-05T12:27:26.373Z", + "end": "2022-08-05T15:17:29.922Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T15:17:29.922Z", + "end": "2022-08-05T18:07:33.471Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "958598056500699208", + "game": "530454325214969866", + "start": "2022-05-12T00:07:03.002Z", + "end": "2022-05-12T01:59:00.165Z", + "events": [ + { + "start": "2022-05-12T00:07:03.002Z", + "end": "2022-05-12T01:03:01.583Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-12T01:03:01.583Z", + "end": "2022-05-12T01:59:00.164Z", + "state": "IDLE" + } + ] + }, + { + "user": "161887854890745672", + "game": "584069374462394368", + "start": "2022-05-31T05:29:44.086Z", + "end": "2022-05-31T14:35:55.033Z", + "events": [ + { + "start": "2022-05-31T05:29:44.086Z", + "end": "2022-05-31T08:31:47.735Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T08:31:47.735Z", + "end": "2022-05-31T11:33:51.384Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T11:33:51.384Z", + "end": "2022-05-31T14:35:55.033Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "394970121077311909", + "game": "535869836748783616", + "start": "2022-07-13T06:55:49.480Z", + "end": "2022-07-13T10:49:23.765Z", + "events": [ + { + "start": "2022-07-13T06:55:49.480Z", + "end": "2022-07-13T08:52:36.622Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T08:52:36.622Z", + "end": "2022-07-13T10:49:23.764Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "584489284152985092", + "game": "510199020782747732", + "start": "2022-06-02T18:23:06.860Z", + "end": "2022-06-03T00:30:11.109Z", + "events": [ + { + "start": "2022-06-02T18:23:06.860Z", + "end": "2022-06-02T19:54:52.922Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T19:54:52.922Z", + "end": "2022-06-02T21:26:38.984Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-02T21:26:38.984Z", + "end": "2022-06-02T22:58:25.046Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-02T22:58:25.046Z", + "end": "2022-06-03T00:30:11.108Z", + "state": "IDLE" + } + ] + }, + { + "user": "713444659295913502", + "game": "530454325214969866", + "start": "2022-04-27T08:46:20.144Z", + "end": "2022-04-27T14:25:48.310Z", + "events": [ + { + "start": "2022-04-27T08:46:20.144Z", + "end": "2022-04-27T09:54:13.777Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T09:54:13.777Z", + "end": "2022-04-27T11:02:07.410Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T11:02:07.410Z", + "end": "2022-04-27T12:10:01.043Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T12:10:01.043Z", + "end": "2022-04-27T13:17:54.676Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T13:17:54.676Z", + "end": "2022-04-27T14:25:48.309Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "453350270016457959", + "game": "542475118396309528", + "start": "2022-07-22T01:57:32.050Z", + "end": "2022-07-22T08:15:08.025Z", + "events": [ + { + "start": "2022-07-22T01:57:32.050Z", + "end": "2022-07-22T04:03:24.041Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T04:03:24.041Z", + "end": "2022-07-22T06:09:16.032Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T06:09:16.032Z", + "end": "2022-07-22T08:15:08.023Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "572456126872944651", + "start": "2022-06-14T23:39:32.680Z", + "end": "2022-06-15T08:28:02.084Z", + "events": [ + { + "start": "2022-06-14T23:39:32.680Z", + "end": "2022-06-15T01:51:40.031Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T01:51:40.031Z", + "end": "2022-06-15T04:03:47.382Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T04:03:47.382Z", + "end": "2022-06-15T06:15:54.733Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T06:15:54.733Z", + "end": "2022-06-15T08:28:02.084Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "452396069922968436", + "game": "512699108809637890", + "start": "2022-04-17T01:38:03.195Z", + "end": "2022-04-17T02:47:57.077Z", + "events": [ + { + "start": "2022-04-17T01:38:03.195Z", + "end": "2022-04-17T01:52:01.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T01:52:01.971Z", + "end": "2022-04-17T02:06:00.747Z", + "state": "IDLE" + }, + { + "start": "2022-04-17T02:06:00.747Z", + "end": "2022-04-17T02:19:59.523Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-17T02:19:59.523Z", + "end": "2022-04-17T02:33:58.299Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-17T02:33:58.299Z", + "end": "2022-04-17T02:47:57.075Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "500919588166575890", + "game": "576482762446602270", + "start": "2022-04-23T06:58:10.984Z", + "end": "2022-04-23T08:46:36.682Z", + "events": [ + { + "start": "2022-04-23T06:58:10.984Z", + "end": "2022-04-23T07:34:19.550Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T07:34:19.550Z", + "end": "2022-04-23T08:10:28.116Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T08:10:28.116Z", + "end": "2022-04-23T08:46:36.682Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "878082205985098233", + "game": "542474758835535872", + "start": "2022-05-12T07:46:29.054Z", + "end": "2022-05-12T12:35:03.554Z", + "events": [ + { + "start": "2022-05-12T07:46:29.054Z", + "end": "2022-05-12T08:58:37.679Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T08:58:37.679Z", + "end": "2022-05-12T10:10:46.304Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T10:10:46.304Z", + "end": "2022-05-12T11:22:54.929Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T11:22:54.929Z", + "end": "2022-05-12T12:35:03.554Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "725502702868293700", + "game": "512789120234422301", + "start": "2022-05-23T13:39:44.645Z", + "end": "2022-05-23T16:52:31.204Z", + "events": [ + { + "start": "2022-05-23T13:39:44.645Z", + "end": "2022-05-23T14:27:56.284Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T14:27:56.284Z", + "end": "2022-05-23T15:16:07.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-23T15:16:07.923Z", + "end": "2022-05-23T16:04:19.562Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T16:04:19.562Z", + "end": "2022-05-23T16:52:31.201Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "614448244260339712", + "start": "2022-05-30T12:29:20.281Z", + "end": "2022-05-30T14:33:50.959Z", + "events": [ + { + "start": "2022-05-30T12:29:20.281Z", + "end": "2022-05-30T14:33:50.959Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "394970121077311909", + "game": "575412499399180288", + "start": "2022-05-16T10:06:51.282Z", + "end": "2022-05-16T13:33:18.923Z", + "events": [ + { + "start": "2022-05-16T10:06:51.282Z", + "end": "2022-05-16T10:48:08.810Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T10:48:08.810Z", + "end": "2022-05-16T11:29:26.338Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T11:29:26.338Z", + "end": "2022-05-16T12:10:43.866Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T12:10:43.866Z", + "end": "2022-05-16T12:52:01.394Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T12:52:01.394Z", + "end": "2022-05-16T13:33:18.922Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "521350927850935744", + "game": "523154344187789312", + "start": "2022-06-23T22:26:17.609Z", + "end": "2022-06-23T23:04:32.346Z", + "events": [ + { + "start": "2022-06-23T22:26:17.609Z", + "end": "2022-06-23T23:04:32.346Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "600708263053781983", + "game": "549512435585908756", + "start": "2022-06-23T23:31:23.980Z", + "end": "2022-06-24T05:07:39.388Z", + "events": [ + { + "start": "2022-06-23T23:31:23.980Z", + "end": "2022-06-24T05:07:39.388Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "584489284152985092", + "game": "549512435585908756", + "start": "2022-04-20T04:04:22.159Z", + "end": "2022-04-20T10:10:30.239Z", + "events": [ + { + "start": "2022-04-20T04:04:22.159Z", + "end": "2022-04-20T06:06:24.852Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T06:06:24.852Z", + "end": "2022-04-20T08:08:27.545Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T08:08:27.545Z", + "end": "2022-04-20T10:10:30.238Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "517335360477493827", + "game": "565341641427124244", + "start": "2022-07-27T03:44:22.641Z", + "end": "2022-07-27T08:39:43.727Z", + "events": [ + { + "start": "2022-07-27T03:44:22.641Z", + "end": "2022-07-27T04:43:26.858Z", + "state": "IDLE" + }, + { + "start": "2022-07-27T04:43:26.858Z", + "end": "2022-07-27T05:42:31.075Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T05:42:31.075Z", + "end": "2022-07-27T06:41:35.292Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T06:41:35.292Z", + "end": "2022-07-27T07:40:39.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T07:40:39.509Z", + "end": "2022-07-27T08:39:43.726Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "378424071510192465", + "game": "512498684211232768", + "start": "2022-06-13T22:43:09.850Z", + "end": "2022-06-14T03:55:51.660Z", + "events": [ + { + "start": "2022-06-13T22:43:09.850Z", + "end": "2022-06-14T00:27:23.786Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-14T00:27:23.786Z", + "end": "2022-06-14T02:11:37.722Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-14T02:11:37.722Z", + "end": "2022-06-14T03:55:51.658Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "535384357536399404", + "start": "2022-06-16T21:24:47.564Z", + "end": "2022-06-17T07:04:31.032Z", + "events": [ + { + "start": "2022-06-16T21:24:47.564Z", + "end": "2022-06-16T23:49:43.431Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T23:49:43.431Z", + "end": "2022-06-17T02:14:39.298Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T02:14:39.298Z", + "end": "2022-06-17T04:39:35.165Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T04:39:35.165Z", + "end": "2022-06-17T07:04:31.032Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "658550407298256890", + "game": "508057374875975682", + "start": "2022-07-10T02:33:01.864Z", + "end": "2022-07-10T02:52:31.507Z", + "events": [ + { + "start": "2022-07-10T02:33:01.864Z", + "end": "2022-07-10T02:36:55.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T02:36:55.792Z", + "end": "2022-07-10T02:40:49.720Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T02:40:49.720Z", + "end": "2022-07-10T02:44:43.648Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T02:44:43.648Z", + "end": "2022-07-10T02:48:37.576Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T02:48:37.576Z", + "end": "2022-07-10T02:52:31.504Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "606163888052109312", + "start": "2022-04-22T06:44:18.504Z", + "end": "2022-04-22T12:55:20.859Z", + "events": [ + { + "start": "2022-04-22T06:44:18.504Z", + "end": "2022-04-22T12:55:20.859Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "453350270016457959", + "game": "512789120234422301", + "start": "2022-07-12T08:21:06.406Z", + "end": "2022-07-12T16:41:32.660Z", + "events": [ + { + "start": "2022-07-12T08:21:06.406Z", + "end": "2022-07-12T10:01:11.656Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T10:01:11.656Z", + "end": "2022-07-12T11:41:16.906Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T11:41:16.906Z", + "end": "2022-07-12T13:21:22.156Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T13:21:22.156Z", + "end": "2022-07-12T15:01:27.406Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T15:01:27.406Z", + "end": "2022-07-12T16:41:32.656Z", + "state": "IDLE" + } + ] + }, + { + "user": "636935635446628860", + "game": "520462578061803588", + "start": "2022-07-03T03:46:21.062Z", + "end": "2022-07-03T11:00:39.882Z", + "events": [ + { + "start": "2022-07-03T03:46:21.062Z", + "end": "2022-07-03T07:23:30.472Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T07:23:30.472Z", + "end": "2022-07-03T11:00:39.882Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "453350270016457959", + "game": "526489929631531009", + "start": "2022-07-13T09:58:30.048Z", + "end": "2022-07-13T17:52:53.169Z", + "events": [ + { + "start": "2022-07-13T09:58:30.048Z", + "end": "2022-07-13T17:52:53.169Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "614380482620293151", + "start": "2022-06-26T18:33:08.174Z", + "end": "2022-06-26T22:43:18.558Z", + "events": [ + { + "start": "2022-06-26T18:33:08.174Z", + "end": "2022-06-26T19:56:31.635Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T19:56:31.635Z", + "end": "2022-06-26T21:19:55.096Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T21:19:55.096Z", + "end": "2022-06-26T22:43:18.557Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "347172184335646820", + "game": "584069374462394368", + "start": "2022-05-21T20:33:40.219Z", + "end": "2022-05-22T05:02:26.702Z", + "events": [ + { + "start": "2022-05-21T20:33:40.219Z", + "end": "2022-05-21T23:23:15.713Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T23:23:15.713Z", + "end": "2022-05-22T02:12:51.207Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-22T02:12:51.207Z", + "end": "2022-05-22T05:02:26.701Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "518088627234930688", + "start": "2022-06-19T18:18:16.450Z", + "end": "2022-06-19T21:07:51.819Z", + "events": [ + { + "start": "2022-06-19T18:18:16.450Z", + "end": "2022-06-19T21:07:51.819Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "514228311661084682", + "start": "2022-04-30T22:53:18.835Z", + "end": "2022-05-01T08:23:05.029Z", + "events": [ + { + "start": "2022-04-30T22:53:18.835Z", + "end": "2022-05-01T01:15:45.383Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T01:15:45.383Z", + "end": "2022-05-01T03:38:11.931Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T03:38:11.931Z", + "end": "2022-05-01T06:00:38.479Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T06:00:38.479Z", + "end": "2022-05-01T08:23:05.027Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "553697181249437716", + "start": "2022-04-27T01:06:57.264Z", + "end": "2022-04-27T02:08:57.772Z", + "events": [ + { + "start": "2022-04-27T01:06:57.264Z", + "end": "2022-04-27T01:22:27.391Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T01:22:27.391Z", + "end": "2022-04-27T01:37:57.518Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:37:57.518Z", + "end": "2022-04-27T01:53:27.645Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:53:27.645Z", + "end": "2022-04-27T02:08:57.772Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "762163239408560283", + "game": "584069374462394368", + "start": "2022-05-17T19:15:20.635Z", + "end": "2022-05-17T20:15:03.247Z", + "events": [ + { + "start": "2022-05-17T19:15:20.635Z", + "end": "2022-05-17T19:30:16.288Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T19:30:16.288Z", + "end": "2022-05-17T19:45:11.941Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T19:45:11.941Z", + "end": "2022-05-17T20:00:07.594Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T20:00:07.594Z", + "end": "2022-05-17T20:15:03.247Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "951234649334557435", + "game": "575412499399180288", + "start": "2022-06-27T23:38:13.582Z", + "end": "2022-06-28T06:54:43.828Z", + "events": [ + { + "start": "2022-06-27T23:38:13.582Z", + "end": "2022-06-28T06:54:43.828Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "554573307161214977", + "start": "2022-07-06T02:59:30.987Z", + "end": "2022-07-06T08:42:26.127Z", + "events": [ + { + "start": "2022-07-06T02:59:30.987Z", + "end": "2022-07-06T04:08:06.015Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T04:08:06.015Z", + "end": "2022-07-06T05:16:41.043Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T05:16:41.043Z", + "end": "2022-07-06T06:25:16.071Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T06:25:16.071Z", + "end": "2022-07-06T07:33:51.099Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T07:33:51.099Z", + "end": "2022-07-06T08:42:26.127Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "605723970188938456", + "game": "523154344187789312", + "start": "2022-06-08T17:22:11.775Z", + "end": "2022-06-09T03:01:28.336Z", + "events": [ + { + "start": "2022-06-08T17:22:11.775Z", + "end": "2022-06-08T22:11:50.055Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T22:11:50.055Z", + "end": "2022-06-09T03:01:28.335Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "512789427462995988", + "start": "2022-04-13T04:00:44.783Z", + "end": "2022-04-13T04:26:46.351Z", + "events": [ + { + "start": "2022-04-13T04:00:44.783Z", + "end": "2022-04-13T04:05:57.096Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-13T04:05:57.096Z", + "end": "2022-04-13T04:11:09.409Z", + "state": "IDLE" + }, + { + "start": "2022-04-13T04:11:09.409Z", + "end": "2022-04-13T04:16:21.722Z", + "state": "IDLE" + }, + { + "start": "2022-04-13T04:16:21.722Z", + "end": "2022-04-13T04:21:34.035Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T04:21:34.035Z", + "end": "2022-04-13T04:26:46.348Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "213263852824749877", + "game": "542075586886107149", + "start": "2022-07-27T08:21:19.485Z", + "end": "2022-07-27T15:23:03.254Z", + "events": [ + { + "start": "2022-07-27T08:21:19.485Z", + "end": "2022-07-27T11:52:11.369Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T11:52:11.369Z", + "end": "2022-07-27T15:23:03.253Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "542075586886107149", + "start": "2022-06-24T00:12:08.933Z", + "end": "2022-06-24T02:21:16.273Z", + "events": [ + { + "start": "2022-06-24T00:12:08.933Z", + "end": "2022-06-24T02:21:16.273Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "559757870366930730", + "game": "614380482620293151", + "start": "2022-07-26T18:02:40.182Z", + "end": "2022-07-26T19:55:15.615Z", + "events": [ + { + "start": "2022-07-26T18:02:40.182Z", + "end": "2022-07-26T18:40:11.993Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-26T18:40:11.993Z", + "end": "2022-07-26T19:17:43.804Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-26T19:17:43.804Z", + "end": "2022-07-26T19:55:15.615Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "530454325214969866", + "start": "2022-06-02T12:46:59.565Z", + "end": "2022-06-02T19:54:36.326Z", + "events": [ + { + "start": "2022-06-02T12:46:59.565Z", + "end": "2022-06-02T19:54:36.326Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "700136079562375258", + "start": "2022-05-28T04:51:39.448Z", + "end": "2022-05-28T12:05:41.900Z", + "events": [ + { + "start": "2022-05-28T04:51:39.448Z", + "end": "2022-05-28T06:40:10.061Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T06:40:10.061Z", + "end": "2022-05-28T08:28:40.674Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-28T08:28:40.674Z", + "end": "2022-05-28T10:17:11.287Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T10:17:11.287Z", + "end": "2022-05-28T12:05:41.900Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "519644267212177418", + "start": "2022-06-17T06:30:54.310Z", + "end": "2022-06-17T08:38:51.351Z", + "events": [ + { + "start": "2022-06-17T06:30:54.310Z", + "end": "2022-06-17T07:34:52.830Z", + "state": "IDLE" + }, + { + "start": "2022-06-17T07:34:52.830Z", + "end": "2022-06-17T08:38:51.350Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "569253958967885828", + "start": "2022-07-11T04:15:43.095Z", + "end": "2022-07-11T13:47:37.342Z", + "events": [ + { + "start": "2022-07-11T04:15:43.095Z", + "end": "2022-07-11T09:01:40.218Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T09:01:40.218Z", + "end": "2022-07-11T13:47:37.341Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "541104083732114799", + "game": "542475118396309528", + "start": "2022-05-11T07:12:33.548Z", + "end": "2022-05-11T16:45:06.056Z", + "events": [ + { + "start": "2022-05-11T07:12:33.548Z", + "end": "2022-05-11T09:07:04.049Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-11T09:07:04.049Z", + "end": "2022-05-11T11:01:34.550Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-11T11:01:34.550Z", + "end": "2022-05-11T12:56:05.051Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T12:56:05.051Z", + "end": "2022-05-11T14:50:35.552Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T14:50:35.552Z", + "end": "2022-05-11T16:45:06.053Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "549054179973094329", + "game": "518088627234930688", + "start": "2022-05-03T22:19:27.555Z", + "end": "2022-05-04T06:52:08.757Z", + "events": [ + { + "start": "2022-05-03T22:19:27.555Z", + "end": "2022-05-04T00:01:59.795Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T00:01:59.795Z", + "end": "2022-05-04T01:44:32.035Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T01:44:32.035Z", + "end": "2022-05-04T03:27:04.275Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T03:27:04.275Z", + "end": "2022-05-04T05:09:36.515Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T05:09:36.515Z", + "end": "2022-05-04T06:52:08.755Z", + "state": "IDLE" + } + ] + }, + { + "user": "424856688594618054", + "game": "542075586886107149", + "start": "2022-07-30T04:48:58.993Z", + "end": "2022-07-30T08:58:57.772Z", + "events": [ + { + "start": "2022-07-30T04:48:58.993Z", + "end": "2022-07-30T08:58:57.772Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302679892350666678", + "game": "526489929631531009", + "start": "2022-06-07T22:59:51.771Z", + "end": "2022-06-08T04:29:09.975Z", + "events": [ + { + "start": "2022-06-07T22:59:51.771Z", + "end": "2022-06-08T00:22:11.322Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-08T00:22:11.322Z", + "end": "2022-06-08T01:44:30.873Z", + "state": "IDLE" + }, + { + "start": "2022-06-08T01:44:30.873Z", + "end": "2022-06-08T03:06:50.424Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T03:06:50.424Z", + "end": "2022-06-08T04:29:09.975Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "347172184335646820", + "game": "558547388583772201", + "start": "2022-07-28T08:13:02.713Z", + "end": "2022-07-28T16:39:19.577Z", + "events": [ + { + "start": "2022-07-28T08:13:02.713Z", + "end": "2022-07-28T10:19:36.929Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-28T10:19:36.929Z", + "end": "2022-07-28T12:26:11.145Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T12:26:11.145Z", + "end": "2022-07-28T14:32:45.361Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T14:32:45.361Z", + "end": "2022-07-28T16:39:19.577Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "538658792298239054", + "game": "521842831262875670", + "start": "2022-05-25T16:38:56.987Z", + "end": "2022-05-26T01:43:21.921Z", + "events": [ + { + "start": "2022-05-25T16:38:56.987Z", + "end": "2022-05-25T19:40:25.298Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T19:40:25.298Z", + "end": "2022-05-25T22:41:53.609Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T22:41:53.609Z", + "end": "2022-05-26T01:43:21.920Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "535384357536399404", + "start": "2022-07-29T11:43:51.316Z", + "end": "2022-07-29T17:05:10.916Z", + "events": [ + { + "start": "2022-07-29T11:43:51.316Z", + "end": "2022-07-29T13:30:57.849Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T13:30:57.849Z", + "end": "2022-07-29T15:18:04.382Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T15:18:04.382Z", + "end": "2022-07-29T17:05:10.915Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "549512435585908756", + "start": "2022-07-21T04:06:20.187Z", + "end": "2022-07-21T09:44:18.259Z", + "events": [ + { + "start": "2022-07-21T04:06:20.187Z", + "end": "2022-07-21T05:30:49.705Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T05:30:49.705Z", + "end": "2022-07-21T06:55:19.223Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T06:55:19.223Z", + "end": "2022-07-21T08:19:48.741Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T08:19:48.741Z", + "end": "2022-07-21T09:44:18.259Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "123137660023366590", + "game": "514228311661084682", + "start": "2022-05-24T05:56:50.088Z", + "end": "2022-05-24T15:34:18.809Z", + "events": [ + { + "start": "2022-05-24T05:56:50.088Z", + "end": "2022-05-24T09:09:19.661Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T09:09:19.661Z", + "end": "2022-05-24T12:21:49.234Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T12:21:49.234Z", + "end": "2022-05-24T15:34:18.807Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "747381962738157784", + "game": "550277544025522176", + "start": "2022-04-25T00:09:18.629Z", + "end": "2022-04-25T09:52:13.593Z", + "events": [ + { + "start": "2022-04-25T00:09:18.629Z", + "end": "2022-04-25T03:23:36.950Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T03:23:36.950Z", + "end": "2022-04-25T06:37:55.271Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T06:37:55.271Z", + "end": "2022-04-25T09:52:13.592Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "495724335127362694", + "game": "512699108809637890", + "start": "2022-05-08T12:55:15.232Z", + "end": "2022-05-08T16:42:25.008Z", + "events": [ + { + "start": "2022-05-08T12:55:15.232Z", + "end": "2022-05-08T14:10:58.490Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T14:10:58.490Z", + "end": "2022-05-08T15:26:41.748Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T15:26:41.748Z", + "end": "2022-05-08T16:42:25.006Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "297014162745407430", + "game": "606163888052109312", + "start": "2022-05-21T21:44:22.055Z", + "end": "2022-05-22T01:38:30.720Z", + "events": [ + { + "start": "2022-05-21T21:44:22.055Z", + "end": "2022-05-21T22:31:11.788Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T22:31:11.788Z", + "end": "2022-05-21T23:18:01.521Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T23:18:01.521Z", + "end": "2022-05-22T00:04:51.254Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T00:04:51.254Z", + "end": "2022-05-22T00:51:40.987Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T00:51:40.987Z", + "end": "2022-05-22T01:38:30.720Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "731522398939920723", + "game": "512789343157485602", + "start": "2022-04-24T01:21:45.409Z", + "end": "2022-04-24T06:05:33.344Z", + "events": [ + { + "start": "2022-04-24T01:21:45.409Z", + "end": "2022-04-24T02:32:42.392Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T02:32:42.392Z", + "end": "2022-04-24T03:43:39.375Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T03:43:39.375Z", + "end": "2022-04-24T04:54:36.358Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T04:54:36.358Z", + "end": "2022-04-24T06:05:33.341Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "137536289023624121", + "game": "592976500802846750", + "start": "2022-05-01T00:00:34.540Z", + "end": "2022-05-01T02:00:28.666Z", + "events": [ + { + "start": "2022-05-01T00:00:34.540Z", + "end": "2022-05-01T01:00:31.603Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T01:00:31.603Z", + "end": "2022-05-01T02:00:28.666Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "540120593576493057", + "start": "2022-06-17T14:16:32.787Z", + "end": "2022-06-17T22:39:48.331Z", + "events": [ + { + "start": "2022-06-17T14:16:32.787Z", + "end": "2022-06-17T15:57:11.895Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T15:57:11.895Z", + "end": "2022-06-17T17:37:51.003Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T17:37:51.003Z", + "end": "2022-06-17T19:18:30.111Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T19:18:30.111Z", + "end": "2022-06-17T20:59:09.219Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T20:59:09.219Z", + "end": "2022-06-17T22:39:48.327Z", + "state": "IDLE" + } + ] + } + ]); \ No newline at end of file diff --git a/src/schema/Game.js b/src/schema/Game.js index 11c6474..078ade4 100644 --- a/src/schema/Game.js +++ b/src/schema/Game.js @@ -3,7 +3,7 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type Game implements nodeInterface { id: ID! - gameId: Int! + gameId: String! name: String! aliases: [String!]! } From f425a6a3e78a6ff8c0fa3ac2300f6ac0b53f057f Mon Sep 17 00:00:00 2001 From: jfwu90 Date: Sat, 6 Aug 2022 16:22:38 -0500 Subject: [PATCH 06/14] add resolver for session --- src/dataSources/Session/index.js | 12 +++++++++--- src/schema/Session.js | 10 +++++----- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/dataSources/Session/index.js b/src/dataSources/Session/index.js index 6f3f34d..a26a895 100644 --- a/src/dataSources/Session/index.js +++ b/src/dataSources/Session/index.js @@ -3,6 +3,7 @@ const { Db, Collection } = require('mongodb'); class Session { constructor(config) { this.mongo = config.MongoDB; + this.transformSession = this.transformSession.bind(this); } async initialize({ context }) { @@ -13,8 +14,12 @@ class Session { this.collection = new Collection(this.db, 'session'); } - async getSession({ id }) { - return this.transformSession(id); + async sessions({ ids }) { + if (ids.length > 0) { + // TODO: an exercise for the reader + } + const docs = await this.collection.find().toArray(); + return docs.map(this.transformSession); } async getSessionById(id) { @@ -23,7 +28,8 @@ class Session { transformSession(session) { return { - id: this.context.utils.generateId('Session', session), + id: this.context.utils.generateId('Session', session._id), + ...session, }; } } diff --git a/src/schema/Session.js b/src/schema/Session.js index 2968b1b..6f41c51 100644 --- a/src/schema/Session.js +++ b/src/schema/Session.js @@ -11,9 +11,9 @@ const typeDefs = gql` } extend type Query { - getSession( - id: Int! - ): Session! + sessions( + ids: [Int!] + ): [Session!]! } # extend type Mutation {} # extend type Subscription {} @@ -21,8 +21,8 @@ const typeDefs = gql` const resolvers = { Query: { - getSession: async (_, args, context) => { - return await context.dataSources.Session.getSession(args); + sessions: async (_, args, context) => { + return await context.dataSources.Session.sessions(args); }, }, // Mutation: {}, From b31f0d8dc80ce128e3b32b612e51d85ccbb9c30d Mon Sep 17 00:00:00 2001 From: jfwu90 Date: Sat, 6 Aug 2022 16:56:26 -0500 Subject: [PATCH 07/14] add support for searching session date range --- init.js | 46296 +++++++++++++++-------------- src/dataSources/Session/index.js | 21 +- src/schema/Session.js | 3 +- 3 files changed, 23170 insertions(+), 23150 deletions(-) diff --git a/init.js b/init.js index 35d2a3f..c3eacb2 100644 --- a/init.js +++ b/init.js @@ -7,23145 +7,23157 @@ db.user.insertMany([{"discordId":"521350927850935744","username":"Mossie_Gaylord db.user.insertMany([{"discordId":"378424071510192465","username":"Floyd.Erdman","discriminator":9495,"displayName":"Norene.Green57"},{"discordId":"123137660023366590","username":"Robbie_Davis85","discriminator":1544,"displayName":"Misael82"},{"discordId":"355708392202112685","username":"Addison.Block70","discriminator":7941,"displayName":"Addison.Block70"},{"discordId":"131482253203487270","username":"Elias.Haley","discriminator":9998,"displayName":"Elias.Haley"},{"discordId":"625617695768437507","username":"Brandi.Veum32","discriminator":4167,"displayName":"Brandi.Veum32"},{"discordId":"530539422724200800","username":"Valentina_Harber","discriminator":6043,"displayName":"Valentina_Harber"},{"discordId":"713444659295913502","username":"Christiana61","discriminator":9980,"displayName":"Buddy_Sauer36"},{"discordId":"768513326430993269","username":"Rudolph.Davis","discriminator":3517,"displayName":"Rudolph.Davis"},{"discordId":"878082205985098233","username":"Asa.Johnston","discriminator":2193,"displayName":"Asa.Johnston"},{"discordId":"605723970188938456","username":"Anais4","discriminator":7513,"displayName":"Anais4"},{"discordId":"732542352358923773","username":"Ashton.Mann","discriminator":6314,"displayName":"Ashton.Mann"},{"discordId":"200801427122341912","username":"Scottie.Wehner","discriminator":3950,"displayName":"Scottie.Wehner"},{"discordId":"525940629729163286","username":"Issac.King","discriminator":2203,"displayName":"Issac.King"},{"discordId":"596421190780633864","username":"Zion.Rolfson","discriminator":1064,"displayName":"Joannie70"},{"discordId":"537786518874514211","username":"Magnolia.Kunze","discriminator":9682,"displayName":"Magnolia.Kunze"},{"discordId":"938976307338486810","username":"Creola29","discriminator":4464,"displayName":"Creola29"},{"discordId":"695941172337689379","username":"Dessie50","discriminator":5140,"displayName":"Dessie50"},{"discordId":"126384926926158511","username":"Jason14","discriminator":5826,"displayName":"Gladys.Deckow"},{"discordId":"951131768137733554","username":"Sidney45","discriminator":2387,"displayName":"Sidney45"},{"discordId":"161887854890745672","username":"Maudie_Bauch","discriminator":6659,"displayName":"Maudie_Bauch"},{"discordId":"467658810442648809","username":"Lydia_Sanford99","discriminator":7253,"displayName":"Granville.Koch"},{"discordId":"264503060524837708","username":"Levi_Tremblay","discriminator":3241,"displayName":"Levi_Tremblay"},{"discordId":"636935635446628860","username":"Christian_Lueilwitz37","discriminator":7962,"displayName":"Christian_Lueilwitz37"},{"discordId":"590467327095087095","username":"Edd62","discriminator":2352,"displayName":"Chasity.Howe84"},{"discordId":"198010595767135394","username":"Casimer_Grady82","discriminator":1536,"displayName":"Liana3"}]); db.user.insertMany([{"discordId":"931211630078779300","username":"Mariana28","discriminator":4656,"displayName":"Osbaldo.Hoeger"},{"discordId":"866600263421429886","username":"Terrell_Swift45","discriminator":2783,"displayName":"Terrell_Swift45"},{"discordId":"731522398939920723","username":"Jordy.Stehr","discriminator":9342,"displayName":"Jordy.Stehr"},{"discordId":"694111074254984301","username":"Moises_Hirthe74","discriminator":3944,"displayName":"Moises_Hirthe74"},{"discordId":"517335360477493827","username":"Breana52","discriminator":9669,"displayName":"Breana52"},{"discordId":"269014914705953013","username":"Magali.Spinka4","discriminator":4998,"displayName":"Magali.Spinka4"},{"discordId":"406850294055619241","username":"Violet_Murray","discriminator":3571,"displayName":"Althea.Brekke"},{"discordId":"347172184335646820","username":"Michele_Rice","discriminator":1772,"displayName":"Michele_Rice"},{"discordId":"900234800332446962","username":"Muhammad55","discriminator":6103,"displayName":"Muhammad55"},{"discordId":"715446191320920764","username":"Lucius_Fritsch32","discriminator":8969,"displayName":"Dayton.Little"},{"discordId":"951234649334557435","username":"Lee_Wisoky","discriminator":2927,"displayName":"Lee_Wisoky"},{"discordId":"285410867718320291","username":"Anika_Cummerata","discriminator":2295,"displayName":"Anika_Cummerata"},{"discordId":"268139232276871676","username":"Melyssa_Shields29","discriminator":4918,"displayName":"Melyssa_Shields29"},{"discordId":"457796054587169483","username":"Jaylen_Mraz","discriminator":2651,"displayName":"Trenton3"},{"discordId":"452396069922968436","username":"Mariam60","discriminator":5992,"displayName":"Mariam60"},{"discordId":"791267126190249625","username":"Palma.Jerde","discriminator":8082,"displayName":"Margarete.Hoeger58"},{"discordId":"559757870366930730","username":"Lela_Jones","discriminator":4269,"displayName":"Lela_Jones"},{"discordId":"440349172934867131","username":"Delmer_Skiles58","discriminator":1528,"displayName":"Delmer_Skiles58"},{"discordId":"453350270016457959","username":"Cristopher78","discriminator":1039,"displayName":"Cristopher78"},{"discordId":"774637841058278398","username":"Eliseo.Waelchi","discriminator":8296,"displayName":"Eliseo.Waelchi"},{"discordId":"510690749854514547","username":"Julia_Rippin","discriminator":5539,"displayName":"Julia_Rippin"},{"discordId":"302714757313826277","username":"Shane_Boyer","discriminator":5945,"displayName":"Roxane.Kling"},{"discordId":"762163239408560283","username":"Mustafa_Kling","discriminator":2175,"displayName":"Mustafa_Kling"},{"discordId":"584489284152985092","username":"Jess_Jacobs","discriminator":3525,"displayName":"Jess_Jacobs"},{"discordId":"494763633796983404","username":"Helena24","discriminator":9332,"displayName":"Will1"}]); db.game.insertMany([{"gameId": "700136079562375258", "name": "VALORANT"},{"gameId": "356875221078245376", "name": "Overwatch"},{"name":"Visage","gameId":"508057374875975682"},{"name":"Kynseed","gameId":"510199020782747732"},{"name":"Thronebreaker","gameId":"511619499053678668"},{"name":"Paladins Strike","gameId":"512498684211232768"},{"name":"Fallout 76","gameId":"512501896896970762"},{"name":"Battlefield V","gameId":"512699108809637890"},{"name":"Battle Chef Brigade","gameId":"512789120234422301"},{"name":"Kingsway","gameId":"512789343157485602"},{"name":"Zenzizenzic","gameId":"512789427462995988"},{"name":"Borderlands 3","gameId":"514228311661084682"},{"name":"Realm Royale","gameId":"518088627234930688"},{"name":"Turok","gameId":"519644267212177418"},{"name":"Turok 2: Seeds of Evil","gameId":"519644368735567873"},{"name":"Ashen","gameId":"520453007578628124"},{"name":"Hades","gameId":"520462578061803588"},{"name":"Nitro","gameId":"521842831262875670"},{"name":"Far Cry New Dawn","gameId":"523154344187789312"},{"name":"ATLAS","gameId":"526489929631531009"},{"name":"Paladins","gameId":"528145079819436043"},{"name":"Metro Exodus","gameId":"530454325214969866"},{"name":"Sea of Thieves","gameId":"535371564850479134"},{"name":"LEGO Harry Potter: Years 5-7","gameId":"535384357536399404"},{"name":"Subnautica: Below Zero","gameId":"535869836748783616"},{"name":"Ghost Recon Breakpoint","gameId":"540120593576493057"},{"name":"Apex Legends","gameId":"542075586886107149"},{"name":"Farming Simulator 19","gameId":"542474758835535872"},{"name":"Warhammer: VermintgameIde 2","gameId":"542475118396309528"},{"name":"Anthem","gameId":"546175179542364160"},{"name":"Spellbreak","gameId":"549512435585908756"},{"name":"Heroes & Generals WWII","gameId":"550277544025522176"},{"name":"Dawn of Man","gameId":"553697181249437716"},{"name":"Warface","gameId":"554573307161214977"},{"name":"Tom Clancy's The Division 2","gameId":"554921822626381879"},{"name":"Temtem","gameId":"558547388583772201"},{"name":"Mutant Year Zero: Road to Eden","gameId":"560781100197216267"},{"name":"Bloodstained: Ritual of the Night","gameId":"565341641427124244"},{"name":"Sekiro: Shadows Die Twice","gameId":"569008830701240340"},{"name":"Risk of Rain 2","gameId":"569253958967885828"},{"name":"Satisfactory","gameId":"572456126872944651"},{"name":"MORDHAU","gameId":"575412499399180288"},{"name":"Baba Is You","gameId":"576482762446602270"},{"name":"Staxel","gameId":"584069374462394368"},{"name":"Supreme Ruler Ultimate","gameId":"588739017718366208"},{"name":"Dota Underlords","gameId":"592976500802846750"},{"name":"PUBG LITE","gameId":"597588168178663434"},{"name":"Swords of Gurrah","gameId":"597860020935327787"},{"name":"Lethal League Blaze","gameId":"606163888052109312"},{"name":"Bloons TD 6","gameId":"614380482620293151"},{"name":"Bloons Adventure Time TD","gameId":"614448244260339712"}]); -db.session.insertMany([ - { - "user": "302714757313826277", - "game": "512498684211232768", - "start": "2022-06-26T15:28:15.627Z", - "end": "2022-06-26T20:01:05.646Z", - "events": [ - { - "start": "2022-06-26T15:28:15.627Z", - "end": "2022-06-26T16:22:49.630Z", - "state": "IDLE" - }, - { - "start": "2022-06-26T16:22:49.630Z", - "end": "2022-06-26T17:17:23.633Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T17:17:23.633Z", - "end": "2022-06-26T18:11:57.636Z", - "state": "IDLE" - }, - { - "start": "2022-06-26T18:11:57.636Z", - "end": "2022-06-26T19:06:31.639Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-26T19:06:31.639Z", - "end": "2022-06-26T20:01:05.642Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "523154344187789312", - "start": "2022-05-02T03:29:38.617Z", - "end": "2022-05-02T06:31:00.058Z", - "events": [ - { - "start": "2022-05-02T03:29:38.617Z", - "end": "2022-05-02T04:14:58.977Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T04:14:58.977Z", - "end": "2022-05-02T05:00:19.337Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T05:00:19.337Z", - "end": "2022-05-02T05:45:39.697Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T05:45:39.697Z", - "end": "2022-05-02T06:31:00.057Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "500919588166575890", - "game": "540120593576493057", - "start": "2022-04-19T02:52:15.407Z", - "end": "2022-04-19T04:51:22.187Z", - "events": [ - { - "start": "2022-04-19T02:52:15.407Z", - "end": "2022-04-19T03:16:04.763Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T03:16:04.763Z", - "end": "2022-04-19T03:39:54.119Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T03:39:54.119Z", - "end": "2022-04-19T04:03:43.475Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T04:03:43.475Z", - "end": "2022-04-19T04:27:32.831Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T04:27:32.831Z", - "end": "2022-04-19T04:51:22.187Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "958598056500699208", - "game": "535384357536399404", - "start": "2022-07-22T03:36:18.916Z", - "end": "2022-07-22T07:47:02.631Z", - "events": [ - { - "start": "2022-07-22T03:36:18.916Z", - "end": "2022-07-22T04:59:53.487Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T04:59:53.487Z", - "end": "2022-07-22T06:23:28.058Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T06:23:28.058Z", - "end": "2022-07-22T07:47:02.629Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "336473229248470346", - "game": "520453007578628124", - "start": "2022-06-30T01:06:22.586Z", - "end": "2022-06-30T10:22:57.185Z", - "events": [ - { - "start": "2022-06-30T01:06:22.586Z", - "end": "2022-06-30T10:22:57.185Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "521350927850935744", - "game": "550277544025522176", - "start": "2022-06-16T06:58:07.801Z", - "end": "2022-06-16T06:59:40.279Z", - "events": [ - { - "start": "2022-06-16T06:58:07.801Z", - "end": "2022-06-16T06:58:30.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-16T06:58:30.920Z", - "end": "2022-06-16T06:58:54.039Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T06:58:54.039Z", - "end": "2022-06-16T06:59:17.158Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T06:59:17.158Z", - "end": "2022-06-16T06:59:40.277Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "200801427122341912", - "game": "514228311661084682", - "start": "2022-06-01T13:19:00.487Z", - "end": "2022-06-01T17:40:05.854Z", - "events": [ - { - "start": "2022-06-01T13:19:00.487Z", - "end": "2022-06-01T15:29:33.170Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T15:29:33.170Z", - "end": "2022-06-01T17:40:05.853Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "549512435585908756", - "start": "2022-04-21T00:09:03.538Z", - "end": "2022-04-21T05:15:15.889Z", - "events": [ - { - "start": "2022-04-21T00:09:03.538Z", - "end": "2022-04-21T02:42:09.713Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T02:42:09.713Z", - "end": "2022-04-21T05:15:15.888Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "878082205985098233", - "game": "606163888052109312", - "start": "2022-07-01T08:38:01.657Z", - "end": "2022-07-01T13:37:31.108Z", - "events": [ - { - "start": "2022-07-01T08:38:01.657Z", - "end": "2022-07-01T11:07:46.382Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T11:07:46.382Z", - "end": "2022-07-01T13:37:31.107Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "526489929631531009", - "start": "2022-05-16T03:04:32.793Z", - "end": "2022-05-16T10:01:49.709Z", - "events": [ - { - "start": "2022-05-16T03:04:32.793Z", - "end": "2022-05-16T06:33:11.251Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T06:33:11.251Z", - "end": "2022-05-16T10:01:49.709Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "821608522568592914", - "game": "569008830701240340", - "start": "2022-06-23T15:40:40.856Z", - "end": "2022-06-23T22:35:22.572Z", - "events": [ - { - "start": "2022-06-23T15:40:40.856Z", - "end": "2022-06-23T17:24:21.285Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-23T17:24:21.285Z", - "end": "2022-06-23T19:08:01.714Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-23T19:08:01.714Z", - "end": "2022-06-23T20:51:42.143Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T20:51:42.143Z", - "end": "2022-06-23T22:35:22.572Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "137536289023624121", - "game": "511619499053678668", - "start": "2022-07-15T18:36:47.356Z", - "end": "2022-07-15T18:37:48.192Z", - "events": [ - { - "start": "2022-07-15T18:36:47.356Z", - "end": "2022-07-15T18:37:17.774Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-15T18:37:17.774Z", - "end": "2022-07-15T18:37:48.192Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "628567265580410356", - "game": "540120593576493057", - "start": "2022-05-15T19:17:09.456Z", - "end": "2022-05-16T02:59:33.907Z", - "events": [ - { - "start": "2022-05-15T19:17:09.456Z", - "end": "2022-05-15T21:51:17.606Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T21:51:17.606Z", - "end": "2022-05-16T00:25:25.756Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T00:25:25.756Z", - "end": "2022-05-16T02:59:33.906Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "494763633796983404", - "game": "520453007578628124", - "start": "2022-07-10T15:20:22.201Z", - "end": "2022-07-10T16:14:36.912Z", - "events": [ - { - "start": "2022-07-10T15:20:22.201Z", - "end": "2022-07-10T15:47:29.556Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T15:47:29.556Z", - "end": "2022-07-10T16:14:36.911Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "520453007578628124", - "start": "2022-08-04T06:36:29.737Z", - "end": "2022-08-04T13:32:45.474Z", - "events": [ - { - "start": "2022-08-04T06:36:29.737Z", - "end": "2022-08-04T10:04:37.605Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T10:04:37.605Z", - "end": "2022-08-04T13:32:45.473Z", - "state": "IDLE" - } - ] - }, - { - "user": "951234649334557435", - "game": "514228311661084682", - "start": "2022-06-08T14:22:39.764Z", - "end": "2022-06-08T19:11:38.919Z", - "events": [ - { - "start": "2022-06-08T14:22:39.764Z", - "end": "2022-06-08T16:47:09.341Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T16:47:09.341Z", - "end": "2022-06-08T19:11:38.918Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "521842831262875670", - "start": "2022-07-01T09:33:18.686Z", - "end": "2022-07-01T18:14:41.417Z", - "events": [ - { - "start": "2022-07-01T09:33:18.686Z", - "end": "2022-07-01T11:43:39.368Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T11:43:39.368Z", - "end": "2022-07-01T13:54:00.050Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T13:54:00.050Z", - "end": "2022-07-01T16:04:20.732Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-01T16:04:20.732Z", - "end": "2022-07-01T18:14:41.414Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "700136079562375258", - "start": "2022-05-31T08:06:44.843Z", - "end": "2022-05-31T09:45:33.361Z", - "events": [ - { - "start": "2022-05-31T08:06:44.843Z", - "end": "2022-05-31T08:39:41.015Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T08:39:41.015Z", - "end": "2022-05-31T09:12:37.187Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T09:12:37.187Z", - "end": "2022-05-31T09:45:33.359Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "494763633796983404", - "game": "510199020782747732", - "start": "2022-07-20T21:25:56.107Z", - "end": "2022-07-21T04:46:22.425Z", - "events": [ - { - "start": "2022-07-20T21:25:56.107Z", - "end": "2022-07-21T01:06:09.266Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T01:06:09.266Z", - "end": "2022-07-21T04:46:22.425Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "695941172337689379", - "game": "588739017718366208", - "start": "2022-05-12T05:36:19.453Z", - "end": "2022-05-12T10:13:21.016Z", - "events": [ - { - "start": "2022-05-12T05:36:19.453Z", - "end": "2022-05-12T07:08:39.974Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T07:08:39.974Z", - "end": "2022-05-12T08:41:00.495Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-12T08:41:00.495Z", - "end": "2022-05-12T10:13:21.016Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "519644368735567873", - "start": "2022-05-24T11:08:16.895Z", - "end": "2022-05-24T11:50:56.141Z", - "events": [ - { - "start": "2022-05-24T11:08:16.895Z", - "end": "2022-05-24T11:16:48.744Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T11:16:48.744Z", - "end": "2022-05-24T11:25:20.593Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T11:25:20.593Z", - "end": "2022-05-24T11:33:52.442Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T11:33:52.442Z", - "end": "2022-05-24T11:42:24.291Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T11:42:24.291Z", - "end": "2022-05-24T11:50:56.140Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "182925797752958092", - "game": "549512435585908756", - "start": "2022-04-28T03:47:51.221Z", - "end": "2022-04-28T05:08:58.422Z", - "events": [ - { - "start": "2022-04-28T03:47:51.221Z", - "end": "2022-04-28T04:04:04.661Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T04:04:04.661Z", - "end": "2022-04-28T04:20:18.101Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T04:20:18.101Z", - "end": "2022-04-28T04:36:31.541Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-28T04:36:31.541Z", - "end": "2022-04-28T04:52:44.981Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T04:52:44.981Z", - "end": "2022-04-28T05:08:58.421Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "520453007578628124", - "start": "2022-08-05T14:05:45.578Z", - "end": "2022-08-05T15:12:59.263Z", - "events": [ - { - "start": "2022-08-05T14:05:45.578Z", - "end": "2022-08-05T14:39:22.420Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T14:39:22.420Z", - "end": "2022-08-05T15:12:59.262Z", - "state": "IDLE" - } - ] - }, - { - "user": "457796054587169483", - "game": "565341641427124244", - "start": "2022-05-16T23:21:20.520Z", - "end": "2022-05-17T08:14:01.005Z", - "events": [ - { - "start": "2022-05-16T23:21:20.520Z", - "end": "2022-05-17T08:14:01.005Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "713444659295913502", - "game": "558547388583772201", - "start": "2022-06-18T13:35:26.722Z", - "end": "2022-06-18T18:14:18.782Z", - "events": [ - { - "start": "2022-06-18T13:35:26.722Z", - "end": "2022-06-18T15:54:52.752Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-18T15:54:52.752Z", - "end": "2022-06-18T18:14:18.782Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "512501896896970762", - "start": "2022-07-24T23:45:55.013Z", - "end": "2022-07-25T01:30:16.596Z", - "events": [ - { - "start": "2022-07-24T23:45:55.013Z", - "end": "2022-07-25T00:38:05.804Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-25T00:38:05.804Z", - "end": "2022-07-25T01:30:16.595Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "268139232276871676", - "game": "512789120234422301", - "start": "2022-05-05T14:24:20.751Z", - "end": "2022-05-05T17:17:07.579Z", - "events": [ - { - "start": "2022-05-05T14:24:20.751Z", - "end": "2022-05-05T17:17:07.579Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "452396069922968436", - "game": "597588168178663434", - "start": "2022-07-06T07:08:59.781Z", - "end": "2022-07-06T13:33:32.595Z", - "events": [ - { - "start": "2022-07-06T07:08:59.781Z", - "end": "2022-07-06T08:45:07.984Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T08:45:07.984Z", - "end": "2022-07-06T10:21:16.187Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T10:21:16.187Z", - "end": "2022-07-06T11:57:24.390Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T11:57:24.390Z", - "end": "2022-07-06T13:33:32.593Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "198010595767135394", - "game": "700136079562375258", - "start": "2022-08-03T06:56:17.101Z", - "end": "2022-08-03T12:25:31.056Z", - "events": [ - { - "start": "2022-08-03T06:56:17.101Z", - "end": "2022-08-03T08:18:35.589Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T08:18:35.589Z", - "end": "2022-08-03T09:40:54.077Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T09:40:54.077Z", - "end": "2022-08-03T11:03:12.565Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T11:03:12.565Z", - "end": "2022-08-03T12:25:31.053Z", - "state": "IDLE" - } - ] - }, - { - "user": "695941172337689379", - "game": "588739017718366208", - "start": "2022-06-03T13:54:13.957Z", - "end": "2022-06-03T16:47:30.691Z", - "events": [ - { - "start": "2022-06-03T13:54:13.957Z", - "end": "2022-06-03T14:28:53.303Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T14:28:53.303Z", - "end": "2022-06-03T15:03:32.649Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T15:03:32.649Z", - "end": "2022-06-03T15:38:11.995Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T15:38:11.995Z", - "end": "2022-06-03T16:12:51.341Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T16:12:51.341Z", - "end": "2022-06-03T16:47:30.687Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "565341641427124244", - "start": "2022-05-04T19:36:29.783Z", - "end": "2022-05-04T22:34:17.695Z", - "events": [ - { - "start": "2022-05-04T19:36:29.783Z", - "end": "2022-05-04T20:20:56.761Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T20:20:56.761Z", - "end": "2022-05-04T21:05:23.739Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T21:05:23.739Z", - "end": "2022-05-04T21:49:50.717Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T21:49:50.717Z", - "end": "2022-05-04T22:34:17.695Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "523154344187789312", - "start": "2022-07-27T20:25:59.868Z", - "end": "2022-07-28T02:26:24.320Z", - "events": [ - { - "start": "2022-07-27T20:25:59.868Z", - "end": "2022-07-27T22:26:08.018Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T22:26:08.018Z", - "end": "2022-07-28T00:26:16.168Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T00:26:16.168Z", - "end": "2022-07-28T02:26:24.318Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "347172184335646820", - "game": "535869836748783616", - "start": "2022-05-19T21:14:55.030Z", - "end": "2022-05-20T02:14:56.180Z", - "events": [ - { - "start": "2022-05-19T21:14:55.030Z", - "end": "2022-05-19T22:14:55.260Z", - "state": "IDLE" - }, - { - "start": "2022-05-19T22:14:55.260Z", - "end": "2022-05-19T23:14:55.490Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-19T23:14:55.490Z", - "end": "2022-05-20T00:14:55.720Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-20T00:14:55.720Z", - "end": "2022-05-20T01:14:55.950Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T01:14:55.950Z", - "end": "2022-05-20T02:14:56.180Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "510199020782747732", - "start": "2022-05-23T06:25:15.018Z", - "end": "2022-05-23T08:10:19.492Z", - "events": [ - { - "start": "2022-05-23T06:25:15.018Z", - "end": "2022-05-23T08:10:19.492Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "530454325214969866", - "start": "2022-05-24T03:57:47.174Z", - "end": "2022-05-24T11:53:08.484Z", - "events": [ - { - "start": "2022-05-24T03:57:47.174Z", - "end": "2022-05-24T06:36:14.277Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T06:36:14.277Z", - "end": "2022-05-24T09:14:41.380Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T09:14:41.380Z", - "end": "2022-05-24T11:53:08.483Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "530454325214969866", - "start": "2022-04-22T20:28:19.369Z", - "end": "2022-04-23T04:57:19.121Z", - "events": [ - { - "start": "2022-04-22T20:28:19.369Z", - "end": "2022-04-22T22:10:07.319Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T22:10:07.319Z", - "end": "2022-04-22T23:51:55.269Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T23:51:55.269Z", - "end": "2022-04-23T01:33:43.219Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T01:33:43.219Z", - "end": "2022-04-23T03:15:31.169Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-23T03:15:31.169Z", - "end": "2022-04-23T04:57:19.119Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "872035310834814925", - "game": "572456126872944651", - "start": "2022-05-24T19:59:53.711Z", - "end": "2022-05-25T05:27:53.773Z", - "events": [ - { - "start": "2022-05-24T19:59:53.711Z", - "end": "2022-05-24T21:53:29.723Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T21:53:29.723Z", - "end": "2022-05-24T23:47:05.735Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T23:47:05.735Z", - "end": "2022-05-25T01:40:41.747Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T01:40:41.747Z", - "end": "2022-05-25T03:34:17.759Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T03:34:17.759Z", - "end": "2022-05-25T05:27:53.771Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "608700383891121851", - "game": "565341641427124244", - "start": "2022-07-30T16:49:44.414Z", - "end": "2022-07-30T18:51:56.197Z", - "events": [ - { - "start": "2022-07-30T16:49:44.414Z", - "end": "2022-07-30T17:14:10.770Z", - "state": "IDLE" - }, - { - "start": "2022-07-30T17:14:10.770Z", - "end": "2022-07-30T17:38:37.126Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-30T17:38:37.126Z", - "end": "2022-07-30T18:03:03.482Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-30T18:03:03.482Z", - "end": "2022-07-30T18:27:29.838Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-30T18:27:29.838Z", - "end": "2022-07-30T18:51:56.194Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "546175179542364160", - "start": "2022-04-25T18:35:20.483Z", - "end": "2022-04-25T20:48:05.357Z", - "events": [ - { - "start": "2022-04-25T18:35:20.483Z", - "end": "2022-04-25T19:41:42.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T19:41:42.920Z", - "end": "2022-04-25T20:48:05.357Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "512789427462995988", - "start": "2022-04-25T18:17:18.598Z", - "end": "2022-04-26T02:46:42.609Z", - "events": [ - { - "start": "2022-04-25T18:17:18.598Z", - "end": "2022-04-25T22:32:00.603Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T22:32:00.603Z", - "end": "2022-04-26T02:46:42.608Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "542075586886107149", - "start": "2022-06-05T16:15:32.126Z", - "end": "2022-06-05T16:52:48.152Z", - "events": [ - { - "start": "2022-06-05T16:15:32.126Z", - "end": "2022-06-05T16:52:48.152Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "521350927850935744", - "game": "549512435585908756", - "start": "2022-07-04T11:02:12.714Z", - "end": "2022-07-04T12:49:39.778Z", - "events": [ - { - "start": "2022-07-04T11:02:12.714Z", - "end": "2022-07-04T11:29:04.480Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T11:29:04.480Z", - "end": "2022-07-04T11:55:56.246Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T11:55:56.246Z", - "end": "2022-07-04T12:22:48.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T12:22:48.012Z", - "end": "2022-07-04T12:49:39.778Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "614448244260339712", - "start": "2022-05-21T08:07:07.647Z", - "end": "2022-05-21T12:53:45.192Z", - "events": [ - { - "start": "2022-05-21T08:07:07.647Z", - "end": "2022-05-21T09:42:40.162Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T09:42:40.162Z", - "end": "2022-05-21T11:18:12.677Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T11:18:12.677Z", - "end": "2022-05-21T12:53:45.192Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "521350927850935744", - "game": "575412499399180288", - "start": "2022-05-30T05:31:10.240Z", - "end": "2022-05-30T15:34:40.853Z", - "events": [ - { - "start": "2022-05-30T05:31:10.240Z", - "end": "2022-05-30T08:52:20.444Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T08:52:20.444Z", - "end": "2022-05-30T12:13:30.648Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T12:13:30.648Z", - "end": "2022-05-30T15:34:40.852Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "788818750251007268", - "game": "535384357536399404", - "start": "2022-06-28T07:45:12.656Z", - "end": "2022-06-28T16:33:33.145Z", - "events": [ - { - "start": "2022-06-28T07:45:12.656Z", - "end": "2022-06-28T16:33:33.145Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "614448244260339712", - "start": "2022-06-01T01:43:12.726Z", - "end": "2022-06-01T01:50:31.865Z", - "events": [ - { - "start": "2022-06-01T01:43:12.726Z", - "end": "2022-06-01T01:44:40.553Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T01:44:40.553Z", - "end": "2022-06-01T01:46:08.380Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T01:46:08.380Z", - "end": "2022-06-01T01:47:36.207Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T01:47:36.207Z", - "end": "2022-06-01T01:49:04.034Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T01:49:04.034Z", - "end": "2022-06-01T01:50:31.861Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "519644267212177418", - "start": "2022-05-21T17:56:28.416Z", - "end": "2022-05-21T22:33:54.495Z", - "events": [ - { - "start": "2022-05-21T17:56:28.416Z", - "end": "2022-05-21T19:05:49.935Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T19:05:49.935Z", - "end": "2022-05-21T20:15:11.454Z", - "state": "IDLE" - }, - { - "start": "2022-05-21T20:15:11.454Z", - "end": "2022-05-21T21:24:32.973Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T21:24:32.973Z", - "end": "2022-05-21T22:33:54.492Z", - "state": "IDLE" - } - ] - }, - { - "user": "494763633796983404", - "game": "550277544025522176", - "start": "2022-07-08T05:14:14.765Z", - "end": "2022-07-08T10:39:41.217Z", - "events": [ - { - "start": "2022-07-08T05:14:14.765Z", - "end": "2022-07-08T06:35:36.378Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T06:35:36.378Z", - "end": "2022-07-08T07:56:57.991Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T07:56:57.991Z", - "end": "2022-07-08T09:18:19.604Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T09:18:19.604Z", - "end": "2022-07-08T10:39:41.217Z", - "state": "IDLE" - } - ] - }, - { - "user": "336473229248470346", - "game": "560781100197216267", - "start": "2022-05-10T21:11:25.420Z", - "end": "2022-05-11T02:34:49.499Z", - "events": [ - { - "start": "2022-05-10T21:11:25.420Z", - "end": "2022-05-10T22:32:16.439Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T22:32:16.439Z", - "end": "2022-05-10T23:53:07.458Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T23:53:07.458Z", - "end": "2022-05-11T01:13:58.477Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T01:13:58.477Z", - "end": "2022-05-11T02:34:49.496Z", - "state": "IDLE" - } - ] - }, - { - "user": "841397740041930984", - "game": "550277544025522176", - "start": "2022-05-17T19:01:20.598Z", - "end": "2022-05-18T02:56:32.458Z", - "events": [ - { - "start": "2022-05-17T19:01:20.598Z", - "end": "2022-05-18T02:56:32.458Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "526489929631531009", - "start": "2022-06-20T17:29:23.466Z", - "end": "2022-06-20T22:16:36.561Z", - "events": [ - { - "start": "2022-06-20T17:29:23.466Z", - "end": "2022-06-20T18:26:50.085Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T18:26:50.085Z", - "end": "2022-06-20T19:24:16.704Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T19:24:16.704Z", - "end": "2022-06-20T20:21:43.323Z", - "state": "IDLE" - }, - { - "start": "2022-06-20T20:21:43.323Z", - "end": "2022-06-20T21:19:09.942Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-20T21:19:09.942Z", - "end": "2022-06-20T22:16:36.561Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "528145079819436043", - "start": "2022-04-28T01:37:42.058Z", - "end": "2022-04-28T06:01:51.084Z", - "events": [ - { - "start": "2022-04-28T01:37:42.058Z", - "end": "2022-04-28T02:30:31.863Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T02:30:31.863Z", - "end": "2022-04-28T03:23:21.668Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T03:23:21.668Z", - "end": "2022-04-28T04:16:11.473Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T04:16:11.473Z", - "end": "2022-04-28T05:09:01.278Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T05:09:01.278Z", - "end": "2022-04-28T06:01:51.083Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "931211630078779300", - "game": "554573307161214977", - "start": "2022-05-23T07:17:44.471Z", - "end": "2022-05-23T08:39:44.841Z", - "events": [ - { - "start": "2022-05-23T07:17:44.471Z", - "end": "2022-05-23T07:38:14.563Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T07:38:14.563Z", - "end": "2022-05-23T07:58:44.655Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-23T07:58:44.655Z", - "end": "2022-05-23T08:19:14.747Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T08:19:14.747Z", - "end": "2022-05-23T08:39:44.839Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "511619499053678668", - "start": "2022-06-05T15:42:43.643Z", - "end": "2022-06-05T16:02:04.172Z", - "events": [ - { - "start": "2022-06-05T15:42:43.643Z", - "end": "2022-06-05T15:46:35.748Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T15:46:35.748Z", - "end": "2022-06-05T15:50:27.853Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T15:50:27.853Z", - "end": "2022-06-05T15:54:19.958Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T15:54:19.958Z", - "end": "2022-06-05T15:58:12.063Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T15:58:12.063Z", - "end": "2022-06-05T16:02:04.168Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "625617695768437507", - "game": "554921822626381879", - "start": "2022-05-24T12:49:02.270Z", - "end": "2022-05-24T20:40:34.870Z", - "events": [ - { - "start": "2022-05-24T12:49:02.270Z", - "end": "2022-05-24T14:23:20.790Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T14:23:20.790Z", - "end": "2022-05-24T15:57:39.310Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T15:57:39.310Z", - "end": "2022-05-24T17:31:57.830Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T17:31:57.830Z", - "end": "2022-05-24T19:06:16.350Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T19:06:16.350Z", - "end": "2022-05-24T20:40:34.870Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "800318424708872602", - "game": "592976500802846750", - "start": "2022-06-04T22:47:58.121Z", - "end": "2022-06-05T05:58:27.408Z", - "events": [ - { - "start": "2022-06-04T22:47:58.121Z", - "end": "2022-06-05T02:23:12.764Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T02:23:12.764Z", - "end": "2022-06-05T05:58:27.407Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "550277544025522176", - "start": "2022-07-17T03:56:27.873Z", - "end": "2022-07-17T11:36:06.690Z", - "events": [ - { - "start": "2022-07-17T03:56:27.873Z", - "end": "2022-07-17T07:46:17.281Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T07:46:17.281Z", - "end": "2022-07-17T11:36:06.689Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "614380482620293151", - "start": "2022-08-01T02:33:04.961Z", - "end": "2022-08-01T09:48:44.233Z", - "events": [ - { - "start": "2022-08-01T02:33:04.961Z", - "end": "2022-08-01T04:21:59.779Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T04:21:59.779Z", - "end": "2022-08-01T06:10:54.597Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T06:10:54.597Z", - "end": "2022-08-01T07:59:49.415Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T07:59:49.415Z", - "end": "2022-08-01T09:48:44.233Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "558547388583772201", - "start": "2022-07-09T21:09:38.162Z", - "end": "2022-07-10T00:29:33.989Z", - "events": [ - { - "start": "2022-07-09T21:09:38.162Z", - "end": "2022-07-09T21:59:37.118Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T21:59:37.118Z", - "end": "2022-07-09T22:49:36.074Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T22:49:36.074Z", - "end": "2022-07-09T23:39:35.030Z", - "state": "IDLE" - }, - { - "start": "2022-07-09T23:39:35.030Z", - "end": "2022-07-10T00:29:33.986Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "958598056500699208", - "game": "512789343157485602", - "start": "2022-04-15T09:02:07.377Z", - "end": "2022-04-15T14:49:21.768Z", - "events": [ - { - "start": "2022-04-15T09:02:07.377Z", - "end": "2022-04-15T10:57:52.174Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T10:57:52.174Z", - "end": "2022-04-15T12:53:36.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-15T12:53:36.971Z", - "end": "2022-04-15T14:49:21.768Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "732542352358923773", - "game": "510199020782747732", - "start": "2022-07-25T03:37:10.102Z", - "end": "2022-07-25T04:26:34.261Z", - "events": [ - { - "start": "2022-07-25T03:37:10.102Z", - "end": "2022-07-25T04:01:52.181Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T04:01:52.181Z", - "end": "2022-07-25T04:26:34.260Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "452396069922968436", - "game": "572456126872944651", - "start": "2022-05-25T16:38:05.519Z", - "end": "2022-05-25T23:51:18.630Z", - "events": [ - { - "start": "2022-05-25T16:38:05.519Z", - "end": "2022-05-25T18:26:23.796Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T18:26:23.796Z", - "end": "2022-05-25T20:14:42.073Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T20:14:42.073Z", - "end": "2022-05-25T22:03:00.350Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T22:03:00.350Z", - "end": "2022-05-25T23:51:18.627Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "606163888052109312", - "start": "2022-07-23T00:32:54.100Z", - "end": "2022-07-23T06:42:53.582Z", - "events": [ - { - "start": "2022-07-23T00:32:54.100Z", - "end": "2022-07-23T01:46:53.996Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T01:46:53.996Z", - "end": "2022-07-23T03:00:53.892Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T03:00:53.892Z", - "end": "2022-07-23T04:14:53.788Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T04:14:53.788Z", - "end": "2022-07-23T05:28:53.684Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T05:28:53.684Z", - "end": "2022-07-23T06:42:53.580Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "606163888052109312", - "start": "2022-07-25T20:43:25.450Z", - "end": "2022-07-25T21:32:11.496Z", - "events": [ - { - "start": "2022-07-25T20:43:25.450Z", - "end": "2022-07-25T20:53:10.659Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T20:53:10.659Z", - "end": "2022-07-25T21:02:55.868Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-25T21:02:55.868Z", - "end": "2022-07-25T21:12:41.077Z", - "state": "IDLE" - }, - { - "start": "2022-07-25T21:12:41.077Z", - "end": "2022-07-25T21:22:26.286Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T21:22:26.286Z", - "end": "2022-07-25T21:32:11.495Z", - "state": "IDLE" - } - ] - }, - { - "user": "268139232276871676", - "game": "606163888052109312", - "start": "2022-05-24T20:32:34.610Z", - "end": "2022-05-24T20:56:49.821Z", - "events": [ - { - "start": "2022-05-24T20:32:34.610Z", - "end": "2022-05-24T20:44:42.215Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T20:44:42.215Z", - "end": "2022-05-24T20:56:49.820Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "535869836748783616", - "start": "2022-07-03T08:45:19.948Z", - "end": "2022-07-03T13:47:31.297Z", - "events": [ - { - "start": "2022-07-03T08:45:19.948Z", - "end": "2022-07-03T10:26:03.731Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T10:26:03.731Z", - "end": "2022-07-03T12:06:47.514Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T12:06:47.514Z", - "end": "2022-07-03T13:47:31.297Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "575412499399180288", - "start": "2022-06-05T05:54:46.612Z", - "end": "2022-06-05T15:22:44.604Z", - "events": [ - { - "start": "2022-06-05T05:54:46.612Z", - "end": "2022-06-05T09:04:05.942Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T09:04:05.942Z", - "end": "2022-06-05T12:13:25.272Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T12:13:25.272Z", - "end": "2022-06-05T15:22:44.602Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "575412499399180288", - "start": "2022-05-02T14:11:05.254Z", - "end": "2022-05-02T21:59:52.657Z", - "events": [ - { - "start": "2022-05-02T14:11:05.254Z", - "end": "2022-05-02T16:08:17.104Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T16:08:17.104Z", - "end": "2022-05-02T18:05:28.954Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T18:05:28.954Z", - "end": "2022-05-02T20:02:40.804Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T20:02:40.804Z", - "end": "2022-05-02T21:59:52.654Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "694111074254984301", - "game": "518088627234930688", - "start": "2022-05-25T14:27:47.651Z", - "end": "2022-05-25T19:51:51.502Z", - "events": [ - { - "start": "2022-05-25T14:27:47.651Z", - "end": "2022-05-25T15:48:48.613Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T15:48:48.613Z", - "end": "2022-05-25T17:09:49.575Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T17:09:49.575Z", - "end": "2022-05-25T18:30:50.537Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T18:30:50.537Z", - "end": "2022-05-25T19:51:51.499Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "549512435585908756", - "start": "2022-05-20T05:41:52.784Z", - "end": "2022-05-20T15:15:57.430Z", - "events": [ - { - "start": "2022-05-20T05:41:52.784Z", - "end": "2022-05-20T07:36:41.713Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T07:36:41.713Z", - "end": "2022-05-20T09:31:30.642Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-20T09:31:30.642Z", - "end": "2022-05-20T11:26:19.571Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-20T11:26:19.571Z", - "end": "2022-05-20T13:21:08.500Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-20T13:21:08.500Z", - "end": "2022-05-20T15:15:57.429Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "569008830701240340", - "start": "2022-06-10T06:35:24.026Z", - "end": "2022-06-10T10:57:04.377Z", - "events": [ - { - "start": "2022-06-10T06:35:24.026Z", - "end": "2022-06-10T08:02:37.476Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-10T08:02:37.476Z", - "end": "2022-06-10T09:29:50.926Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-10T09:29:50.926Z", - "end": "2022-06-10T10:57:04.376Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "700136079562375258", - "start": "2022-06-05T18:04:30.213Z", - "end": "2022-06-05T19:52:12.012Z", - "events": [ - { - "start": "2022-06-05T18:04:30.213Z", - "end": "2022-06-05T19:52:12.012Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "695941172337689379", - "game": "530454325214969866", - "start": "2022-06-24T01:33:19.321Z", - "end": "2022-06-24T06:22:39.255Z", - "events": [ - { - "start": "2022-06-24T01:33:19.321Z", - "end": "2022-06-24T02:45:39.304Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T02:45:39.304Z", - "end": "2022-06-24T03:57:59.287Z", - "state": "IDLE" - }, - { - "start": "2022-06-24T03:57:59.287Z", - "end": "2022-06-24T05:10:19.270Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T05:10:19.270Z", - "end": "2022-06-24T06:22:39.253Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "554921822626381879", - "start": "2022-04-24T09:33:29.823Z", - "end": "2022-04-24T16:52:48.848Z", - "events": [ - { - "start": "2022-04-24T09:33:29.823Z", - "end": "2022-04-24T11:01:21.628Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T11:01:21.628Z", - "end": "2022-04-24T12:29:13.433Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T12:29:13.433Z", - "end": "2022-04-24T13:57:05.238Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T13:57:05.238Z", - "end": "2022-04-24T15:24:57.043Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T15:24:57.043Z", - "end": "2022-04-24T16:52:48.848Z", - "state": "IDLE" - } - ] - }, - { - "user": "608700383891121851", - "game": "597860020935327787", - "start": "2022-05-17T13:55:05.182Z", - "end": "2022-05-17T17:16:02.527Z", - "events": [ - { - "start": "2022-05-17T13:55:05.182Z", - "end": "2022-05-17T15:02:04.297Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T15:02:04.297Z", - "end": "2022-05-17T16:09:03.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T16:09:03.412Z", - "end": "2022-05-17T17:16:02.527Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "495724335127362694", - "game": "535384357536399404", - "start": "2022-05-10T14:26:16.657Z", - "end": "2022-05-10T22:50:15.782Z", - "events": [ - { - "start": "2022-05-10T14:26:16.657Z", - "end": "2022-05-10T17:14:16.365Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T17:14:16.365Z", - "end": "2022-05-10T20:02:16.073Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T20:02:16.073Z", - "end": "2022-05-10T22:50:15.781Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "596421190780633864", - "game": "530454325214969866", - "start": "2022-05-14T20:14:02.953Z", - "end": "2022-05-15T03:30:59.375Z", - "events": [ - { - "start": "2022-05-14T20:14:02.953Z", - "end": "2022-05-14T22:39:41.760Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T22:39:41.760Z", - "end": "2022-05-15T01:05:20.567Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T01:05:20.567Z", - "end": "2022-05-15T03:30:59.374Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "519644267212177418", - "start": "2022-07-01T03:24:41.925Z", - "end": "2022-07-01T12:03:04.886Z", - "events": [ - { - "start": "2022-07-01T03:24:41.925Z", - "end": "2022-07-01T12:03:04.886Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "800318424708872602", - "game": "565341641427124244", - "start": "2022-07-21T03:16:51.042Z", - "end": "2022-07-21T10:27:02.821Z", - "events": [ - { - "start": "2022-07-21T03:16:51.042Z", - "end": "2022-07-21T10:27:02.821Z", - "state": "IDLE" - } - ] - }, - { - "user": "625617695768437507", - "game": "356875221078245376", - "start": "2022-05-23T19:13:14.282Z", - "end": "2022-05-24T01:52:00.208Z", - "events": [ - { - "start": "2022-05-23T19:13:14.282Z", - "end": "2022-05-23T20:32:59.467Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T20:32:59.467Z", - "end": "2022-05-23T21:52:44.652Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T21:52:44.652Z", - "end": "2022-05-23T23:12:29.837Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T23:12:29.837Z", - "end": "2022-05-24T00:32:15.022Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T00:32:15.022Z", - "end": "2022-05-24T01:52:00.207Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "788818750251007268", - "game": "510199020782747732", - "start": "2022-06-11T13:55:15.413Z", - "end": "2022-06-11T22:21:34.695Z", - "events": [ - { - "start": "2022-06-11T13:55:15.413Z", - "end": "2022-06-11T18:08:25.054Z", - "state": "IDLE" - }, - { - "start": "2022-06-11T18:08:25.054Z", - "end": "2022-06-11T22:21:34.695Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "549512435585908756", - "start": "2022-06-28T14:52:42.090Z", - "end": "2022-06-28T22:49:57.064Z", - "events": [ - { - "start": "2022-06-28T14:52:42.090Z", - "end": "2022-06-28T16:28:09.084Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T16:28:09.084Z", - "end": "2022-06-28T18:03:36.078Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T18:03:36.078Z", - "end": "2022-06-28T19:39:03.072Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T19:39:03.072Z", - "end": "2022-06-28T21:14:30.066Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T21:14:30.066Z", - "end": "2022-06-28T22:49:57.060Z", - "state": "IDLE" - } - ] - }, - { - "user": "510690749854514547", - "game": "560781100197216267", - "start": "2022-05-15T09:05:00.180Z", - "end": "2022-05-15T09:07:55.626Z", - "events": [ - { - "start": "2022-05-15T09:05:00.180Z", - "end": "2022-05-15T09:05:44.041Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T09:05:44.041Z", - "end": "2022-05-15T09:06:27.902Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T09:06:27.902Z", - "end": "2022-05-15T09:07:11.763Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T09:07:11.763Z", - "end": "2022-05-15T09:07:55.624Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "535371564850479134", - "start": "2022-07-15T03:27:36.134Z", - "end": "2022-07-15T08:56:39.955Z", - "events": [ - { - "start": "2022-07-15T03:27:36.134Z", - "end": "2022-07-15T04:33:24.898Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T04:33:24.898Z", - "end": "2022-07-15T05:39:13.662Z", - "state": "IDLE" - }, - { - "start": "2022-07-15T05:39:13.662Z", - "end": "2022-07-15T06:45:02.426Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T06:45:02.426Z", - "end": "2022-07-15T07:50:51.190Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T07:50:51.190Z", - "end": "2022-07-15T08:56:39.954Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "512699108809637890", - "start": "2022-06-21T22:41:58.205Z", - "end": "2022-06-22T07:23:31.949Z", - "events": [ - { - "start": "2022-06-21T22:41:58.205Z", - "end": "2022-06-22T03:02:45.077Z", - "state": "IDLE" - }, - { - "start": "2022-06-22T03:02:45.077Z", - "end": "2022-06-22T07:23:31.949Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "554921822626381879", - "start": "2022-06-08T05:10:53.904Z", - "end": "2022-06-08T09:04:57.922Z", - "events": [ - { - "start": "2022-06-08T05:10:53.904Z", - "end": "2022-06-08T05:57:42.707Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-08T05:57:42.707Z", - "end": "2022-06-08T06:44:31.510Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T06:44:31.510Z", - "end": "2022-06-08T07:31:20.313Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T07:31:20.313Z", - "end": "2022-06-08T08:18:09.116Z", - "state": "IDLE" - }, - { - "start": "2022-06-08T08:18:09.116Z", - "end": "2022-06-08T09:04:57.919Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "550277544025522176", - "start": "2022-07-10T03:35:08.070Z", - "end": "2022-07-10T10:14:48.150Z", - "events": [ - { - "start": "2022-07-10T03:35:08.070Z", - "end": "2022-07-10T10:14:48.150Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "774637841058278398", - "game": "597588168178663434", - "start": "2022-05-27T10:37:20.753Z", - "end": "2022-05-27T12:56:00.513Z", - "events": [ - { - "start": "2022-05-27T10:37:20.753Z", - "end": "2022-05-27T11:12:00.693Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T11:12:00.693Z", - "end": "2022-05-27T11:46:40.633Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T11:46:40.633Z", - "end": "2022-05-27T12:21:20.573Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T12:21:20.573Z", - "end": "2022-05-27T12:56:00.513Z", - "state": "IDLE" - } - ] - }, - { - "user": "922664752332558395", - "game": "554921822626381879", - "start": "2022-04-22T14:40:49.656Z", - "end": "2022-04-22T19:39:32.853Z", - "events": [ - { - "start": "2022-04-22T14:40:49.656Z", - "end": "2022-04-22T19:39:32.853Z", - "state": "IDLE" - } - ] - }, - { - "user": "596421190780633864", - "game": "606163888052109312", - "start": "2022-07-19T02:59:03.856Z", - "end": "2022-07-19T03:02:33.665Z", - "events": [ - { - "start": "2022-07-19T02:59:03.856Z", - "end": "2022-07-19T02:59:45.817Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T02:59:45.817Z", - "end": "2022-07-19T03:00:27.778Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T03:00:27.778Z", - "end": "2022-07-19T03:01:09.739Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T03:01:09.739Z", - "end": "2022-07-19T03:01:51.700Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T03:01:51.700Z", - "end": "2022-07-19T03:02:33.661Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "821608522568592914", - "game": "546175179542364160", - "start": "2022-07-24T14:22:26.487Z", - "end": "2022-07-24T21:25:35.545Z", - "events": [ - { - "start": "2022-07-24T14:22:26.487Z", - "end": "2022-07-24T16:43:29.506Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T16:43:29.506Z", - "end": "2022-07-24T19:04:32.525Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T19:04:32.525Z", - "end": "2022-07-24T21:25:35.544Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "514228311661084682", - "start": "2022-07-31T03:53:29.940Z", - "end": "2022-07-31T08:11:43.062Z", - "events": [ - { - "start": "2022-07-31T03:53:29.940Z", - "end": "2022-07-31T06:02:36.501Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T06:02:36.501Z", - "end": "2022-07-31T08:11:43.062Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "512789343157485602", - "start": "2022-06-21T09:36:19.193Z", - "end": "2022-06-21T19:12:27.383Z", - "events": [ - { - "start": "2022-06-21T09:36:19.193Z", - "end": "2022-06-21T12:48:21.923Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T12:48:21.923Z", - "end": "2022-06-21T16:00:24.653Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T16:00:24.653Z", - "end": "2022-06-21T19:12:27.383Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "700136079562375258", - "start": "2022-07-27T06:49:25.299Z", - "end": "2022-07-27T13:28:41.804Z", - "events": [ - { - "start": "2022-07-27T06:49:25.299Z", - "end": "2022-07-27T08:09:16.600Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T08:09:16.600Z", - "end": "2022-07-27T09:29:07.901Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T09:29:07.901Z", - "end": "2022-07-27T10:48:59.202Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T10:48:59.202Z", - "end": "2022-07-27T12:08:50.503Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T12:08:50.503Z", - "end": "2022-07-27T13:28:41.804Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "584489284152985092", - "game": "597588168178663434", - "start": "2022-07-20T06:52:31.340Z", - "end": "2022-07-20T16:01:20.171Z", - "events": [ - { - "start": "2022-07-20T06:52:31.340Z", - "end": "2022-07-20T11:26:55.755Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T11:26:55.755Z", - "end": "2022-07-20T16:01:20.170Z", - "state": "IDLE" - } - ] - }, - { - "user": "378424071510192465", - "game": "535384357536399404", - "start": "2022-05-17T22:04:54.432Z", - "end": "2022-05-18T07:55:40.077Z", - "events": [ - { - "start": "2022-05-17T22:04:54.432Z", - "end": "2022-05-18T07:55:40.077Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "958598056500699208", - "game": "569008830701240340", - "start": "2022-04-24T05:38:28.880Z", - "end": "2022-04-24T13:04:46.654Z", - "events": [ - { - "start": "2022-04-24T05:38:28.880Z", - "end": "2022-04-24T07:07:44.434Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-24T07:07:44.434Z", - "end": "2022-04-24T08:36:59.988Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T08:36:59.988Z", - "end": "2022-04-24T10:06:15.542Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T10:06:15.542Z", - "end": "2022-04-24T11:35:31.096Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T11:35:31.096Z", - "end": "2022-04-24T13:04:46.650Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "554921822626381879", - "start": "2022-05-14T03:59:06.515Z", - "end": "2022-05-14T13:47:25.346Z", - "events": [ - { - "start": "2022-05-14T03:59:06.515Z", - "end": "2022-05-14T05:56:46.281Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T05:56:46.281Z", - "end": "2022-05-14T07:54:26.047Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T07:54:26.047Z", - "end": "2022-05-14T09:52:05.813Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T09:52:05.813Z", - "end": "2022-05-14T11:49:45.579Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T11:49:45.579Z", - "end": "2022-05-14T13:47:25.345Z", - "state": "IDLE" - } - ] - }, - { - "user": "406850294055619241", - "game": "554573307161214977", - "start": "2022-07-29T03:13:11.416Z", - "end": "2022-07-29T04:58:09.963Z", - "events": [ - { - "start": "2022-07-29T03:13:11.416Z", - "end": "2022-07-29T04:58:09.963Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "540120593576493057", - "start": "2022-08-03T16:52:23.137Z", - "end": "2022-08-03T23:38:57.771Z", - "events": [ - { - "start": "2022-08-03T16:52:23.137Z", - "end": "2022-08-03T18:13:42.063Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T18:13:42.063Z", - "end": "2022-08-03T19:35:00.989Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T19:35:00.989Z", - "end": "2022-08-03T20:56:19.915Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T20:56:19.915Z", - "end": "2022-08-03T22:17:38.841Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T22:17:38.841Z", - "end": "2022-08-03T23:38:57.767Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "538658792298239054", - "game": "554921822626381879", - "start": "2022-07-03T16:24:26.056Z", - "end": "2022-07-03T18:43:18.472Z", - "events": [ - { - "start": "2022-07-03T16:24:26.056Z", - "end": "2022-07-03T17:33:52.264Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T17:33:52.264Z", - "end": "2022-07-03T18:43:18.472Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "540120593576493057", - "start": "2022-05-19T18:13:03.297Z", - "end": "2022-05-19T18:53:05.387Z", - "events": [ - { - "start": "2022-05-19T18:13:03.297Z", - "end": "2022-05-19T18:33:04.342Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T18:33:04.342Z", - "end": "2022-05-19T18:53:05.387Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "554573307161214977", - "start": "2022-05-21T02:42:39.451Z", - "end": "2022-05-21T10:45:30.437Z", - "events": [ - { - "start": "2022-05-21T02:42:39.451Z", - "end": "2022-05-21T05:23:36.446Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T05:23:36.446Z", - "end": "2022-05-21T08:04:33.441Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T08:04:33.441Z", - "end": "2022-05-21T10:45:30.436Z", - "state": "IDLE" - } - ] - }, - { - "user": "302714757313826277", - "game": "554573307161214977", - "start": "2022-06-04T10:24:08.717Z", - "end": "2022-06-04T12:05:14.128Z", - "events": [ - { - "start": "2022-06-04T10:24:08.717Z", - "end": "2022-06-04T12:05:14.128Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "510199020782747732", - "start": "2022-07-30T20:42:45.896Z", - "end": "2022-07-31T02:37:26.538Z", - "events": [ - { - "start": "2022-07-30T20:42:45.896Z", - "end": "2022-07-31T02:37:26.538Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "200801427122341912", - "game": "512789120234422301", - "start": "2022-06-24T09:12:04.899Z", - "end": "2022-06-24T15:00:55.666Z", - "events": [ - { - "start": "2022-06-24T09:12:04.899Z", - "end": "2022-06-24T10:39:17.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T10:39:17.590Z", - "end": "2022-06-24T12:06:30.281Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T12:06:30.281Z", - "end": "2022-06-24T13:33:42.972Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T13:33:42.972Z", - "end": "2022-06-24T15:00:55.663Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "467658810442648809", - "game": "528145079819436043", - "start": "2022-06-03T22:03:50.274Z", - "end": "2022-06-04T02:46:16.485Z", - "events": [ - { - "start": "2022-06-03T22:03:50.274Z", - "end": "2022-06-03T23:00:19.516Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T23:00:19.516Z", - "end": "2022-06-03T23:56:48.758Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T23:56:48.758Z", - "end": "2022-06-04T00:53:18.000Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T00:53:18.000Z", - "end": "2022-06-04T01:49:47.242Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T01:49:47.242Z", - "end": "2022-06-04T02:46:16.484Z", - "state": "IDLE" - } - ] - }, - { - "user": "213263852824749877", - "game": "614448244260339712", - "start": "2022-07-19T22:12:16.754Z", - "end": "2022-07-20T07:44:04.201Z", - "events": [ - { - "start": "2022-07-19T22:12:16.754Z", - "end": "2022-07-20T00:06:38.243Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T00:06:38.243Z", - "end": "2022-07-20T02:00:59.732Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T02:00:59.732Z", - "end": "2022-07-20T03:55:21.221Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T03:55:21.221Z", - "end": "2022-07-20T05:49:42.710Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T05:49:42.710Z", - "end": "2022-07-20T07:44:04.199Z", - "state": "IDLE" - } - ] - }, - { - "user": "329429619186234053", - "game": "558547388583772201", - "start": "2022-07-27T03:17:07.245Z", - "end": "2022-07-27T07:09:44.052Z", - "events": [ - { - "start": "2022-07-27T03:17:07.245Z", - "end": "2022-07-27T04:34:39.514Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T04:34:39.514Z", - "end": "2022-07-27T05:52:11.783Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T05:52:11.783Z", - "end": "2022-07-27T07:09:44.052Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "512789120234422301", - "start": "2022-06-24T16:32:16.789Z", - "end": "2022-06-24T20:42:59.589Z", - "events": [ - { - "start": "2022-06-24T16:32:16.789Z", - "end": "2022-06-24T20:42:59.589Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "542474758835535872", - "start": "2022-04-26T22:06:39.296Z", - "end": "2022-04-27T04:59:18.370Z", - "events": [ - { - "start": "2022-04-26T22:06:39.296Z", - "end": "2022-04-27T00:24:12.320Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T00:24:12.320Z", - "end": "2022-04-27T02:41:45.344Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T02:41:45.344Z", - "end": "2022-04-27T04:59:18.368Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "530454325214969866", - "start": "2022-08-06T14:47:20.903Z", - "end": "2022-08-06T22:01:11.372Z", - "events": [ - { - "start": "2022-08-06T14:47:20.903Z", - "end": "2022-08-06T16:35:48.520Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T16:35:48.520Z", - "end": "2022-08-06T18:24:16.137Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-06T18:24:16.137Z", - "end": "2022-08-06T20:12:43.754Z", - "state": "IDLE" - }, - { - "start": "2022-08-06T20:12:43.754Z", - "end": "2022-08-06T22:01:11.371Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "558547388583772201", - "start": "2022-05-27T05:21:20.528Z", - "end": "2022-05-27T10:12:44.411Z", - "events": [ - { - "start": "2022-05-27T05:21:20.528Z", - "end": "2022-05-27T06:19:37.304Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T06:19:37.304Z", - "end": "2022-05-27T07:17:54.080Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T07:17:54.080Z", - "end": "2022-05-27T08:16:10.856Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T08:16:10.856Z", - "end": "2022-05-27T09:14:27.632Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T09:14:27.632Z", - "end": "2022-05-27T10:12:44.408Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "546175179542364160", - "start": "2022-05-09T04:28:05.389Z", - "end": "2022-05-09T11:53:14.174Z", - "events": [ - { - "start": "2022-05-09T04:28:05.389Z", - "end": "2022-05-09T08:10:39.781Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-09T08:10:39.781Z", - "end": "2022-05-09T11:53:14.173Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "542075586886107149", - "start": "2022-05-03T20:57:29.250Z", - "end": "2022-05-04T06:55:31.430Z", - "events": [ - { - "start": "2022-05-03T20:57:29.250Z", - "end": "2022-05-03T22:57:05.686Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T22:57:05.686Z", - "end": "2022-05-04T00:56:42.122Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T00:56:42.122Z", - "end": "2022-05-04T02:56:18.558Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-04T02:56:18.558Z", - "end": "2022-05-04T04:55:54.994Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T04:55:54.994Z", - "end": "2022-05-04T06:55:31.430Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "137536289023624121", - "game": "560781100197216267", - "start": "2022-05-31T07:43:42.898Z", - "end": "2022-05-31T15:44:34.234Z", - "events": [ - { - "start": "2022-05-31T07:43:42.898Z", - "end": "2022-05-31T09:43:55.732Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T09:43:55.732Z", - "end": "2022-05-31T11:44:08.566Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T11:44:08.566Z", - "end": "2022-05-31T13:44:21.400Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T13:44:21.400Z", - "end": "2022-05-31T15:44:34.234Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "123137660023366590", - "game": "519644368735567873", - "start": "2022-05-06T04:22:22.957Z", - "end": "2022-05-06T08:48:40.650Z", - "events": [ - { - "start": "2022-05-06T04:22:22.957Z", - "end": "2022-05-06T05:51:08.854Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T05:51:08.854Z", - "end": "2022-05-06T07:19:54.751Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T07:19:54.751Z", - "end": "2022-05-06T08:48:40.648Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "788818750251007268", - "game": "512498684211232768", - "start": "2022-07-10T10:45:34.248Z", - "end": "2022-07-10T11:17:15.884Z", - "events": [ - { - "start": "2022-07-10T10:45:34.248Z", - "end": "2022-07-10T10:51:54.575Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T10:51:54.575Z", - "end": "2022-07-10T10:58:14.902Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T10:58:14.902Z", - "end": "2022-07-10T11:04:35.229Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T11:04:35.229Z", - "end": "2022-07-10T11:10:55.556Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T11:10:55.556Z", - "end": "2022-07-10T11:17:15.883Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "285410867718320291", - "game": "512789343157485602", - "start": "2022-07-10T17:22:35.618Z", - "end": "2022-07-10T20:28:38.332Z", - "events": [ - { - "start": "2022-07-10T17:22:35.618Z", - "end": "2022-07-10T18:24:36.522Z", - "state": "IDLE" - }, - { - "start": "2022-07-10T18:24:36.522Z", - "end": "2022-07-10T19:26:37.426Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T19:26:37.426Z", - "end": "2022-07-10T20:28:38.330Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "535869836748783616", - "start": "2022-07-07T21:07:34.685Z", - "end": "2022-07-08T06:59:34.985Z", - "events": [ - { - "start": "2022-07-07T21:07:34.685Z", - "end": "2022-07-08T00:24:54.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T00:24:54.785Z", - "end": "2022-07-08T03:42:14.885Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T03:42:14.885Z", - "end": "2022-07-08T06:59:34.985Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "512789427462995988", - "start": "2022-05-24T19:35:02.224Z", - "end": "2022-05-24T23:10:28.674Z", - "events": [ - { - "start": "2022-05-24T19:35:02.224Z", - "end": "2022-05-24T20:46:51.040Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T20:46:51.040Z", - "end": "2022-05-24T21:58:39.856Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T21:58:39.856Z", - "end": "2022-05-24T23:10:28.672Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "512789343157485602", - "start": "2022-05-18T04:24:19.519Z", - "end": "2022-05-18T07:16:18.576Z", - "events": [ - { - "start": "2022-05-18T04:24:19.519Z", - "end": "2022-05-18T05:21:39.204Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T05:21:39.204Z", - "end": "2022-05-18T06:18:58.889Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-18T06:18:58.889Z", - "end": "2022-05-18T07:16:18.574Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "549512435585908756", - "start": "2022-07-20T23:39:53.768Z", - "end": "2022-07-21T02:01:02.396Z", - "events": [ - { - "start": "2022-07-20T23:39:53.768Z", - "end": "2022-07-21T00:15:10.925Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T00:15:10.925Z", - "end": "2022-07-21T00:50:28.082Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T00:50:28.082Z", - "end": "2022-07-21T01:25:45.239Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T01:25:45.239Z", - "end": "2022-07-21T02:01:02.396Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "597860020935327787", - "start": "2022-04-24T12:54:04.197Z", - "end": "2022-04-24T22:51:26.326Z", - "events": [ - { - "start": "2022-04-24T12:54:04.197Z", - "end": "2022-04-24T15:23:24.729Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T15:23:24.729Z", - "end": "2022-04-24T17:52:45.261Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T17:52:45.261Z", - "end": "2022-04-24T20:22:05.793Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-24T20:22:05.793Z", - "end": "2022-04-24T22:51:26.325Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "549512435585908756", - "start": "2022-05-17T20:45:39.657Z", - "end": "2022-05-17T22:28:58.274Z", - "events": [ - { - "start": "2022-05-17T20:45:39.657Z", - "end": "2022-05-17T21:11:29.311Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T21:11:29.311Z", - "end": "2022-05-17T21:37:18.965Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T21:37:18.965Z", - "end": "2022-05-17T22:03:08.619Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T22:03:08.619Z", - "end": "2022-05-17T22:28:58.273Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "269014914705953013", - "game": "510199020782747732", - "start": "2022-07-07T13:20:03.272Z", - "end": "2022-07-07T21:29:24.955Z", - "events": [ - { - "start": "2022-07-07T13:20:03.272Z", - "end": "2022-07-07T21:29:24.955Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "540120593576493057", - "start": "2022-05-17T17:17:25.588Z", - "end": "2022-05-17T21:27:37.411Z", - "events": [ - { - "start": "2022-05-17T17:17:25.588Z", - "end": "2022-05-17T19:22:31.499Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T19:22:31.499Z", - "end": "2022-05-17T21:27:37.410Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "821608522568592914", - "game": "514228311661084682", - "start": "2022-08-03T12:40:26.517Z", - "end": "2022-08-03T21:29:16.565Z", - "events": [ - { - "start": "2022-08-03T12:40:26.517Z", - "end": "2022-08-03T14:52:39.029Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-03T14:52:39.029Z", - "end": "2022-08-03T17:04:51.541Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T17:04:51.541Z", - "end": "2022-08-03T19:17:04.053Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T19:17:04.053Z", - "end": "2022-08-03T21:29:16.565Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "732542352358923773", - "game": "512501896896970762", - "start": "2022-08-04T00:47:34.843Z", - "end": "2022-08-04T06:31:57.543Z", - "events": [ - { - "start": "2022-08-04T00:47:34.843Z", - "end": "2022-08-04T01:56:27.383Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T01:56:27.383Z", - "end": "2022-08-04T03:05:19.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T03:05:19.923Z", - "end": "2022-08-04T04:14:12.463Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T04:14:12.463Z", - "end": "2022-08-04T05:23:05.003Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-04T05:23:05.003Z", - "end": "2022-08-04T06:31:57.543Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "546175179542364160", - "start": "2022-06-24T14:50:49.737Z", - "end": "2022-06-24T21:11:57.959Z", - "events": [ - { - "start": "2022-06-24T14:50:49.737Z", - "end": "2022-06-24T21:11:57.959Z", - "state": "IDLE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512501896896970762", - "start": "2022-05-15T04:21:54.033Z", - "end": "2022-05-15T07:38:41.615Z", - "events": [ - { - "start": "2022-05-15T04:21:54.033Z", - "end": "2022-05-15T06:00:17.824Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-15T06:00:17.824Z", - "end": "2022-05-15T07:38:41.615Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "542075586886107149", - "start": "2022-05-01T16:10:14.496Z", - "end": "2022-05-02T01:26:05.336Z", - "events": [ - { - "start": "2022-05-01T16:10:14.496Z", - "end": "2022-05-02T01:26:05.336Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "346608907417001845", - "game": "592976500802846750", - "start": "2022-06-25T03:22:05.255Z", - "end": "2022-06-25T09:53:38.158Z", - "events": [ - { - "start": "2022-06-25T03:22:05.255Z", - "end": "2022-06-25T04:40:23.835Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T04:40:23.835Z", - "end": "2022-06-25T05:58:42.415Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T05:58:42.415Z", - "end": "2022-06-25T07:17:00.995Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T07:17:00.995Z", - "end": "2022-06-25T08:35:19.575Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T08:35:19.575Z", - "end": "2022-06-25T09:53:38.155Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "520453007578628124", - "start": "2022-08-02T05:49:38.112Z", - "end": "2022-08-02T06:43:42.632Z", - "events": [ - { - "start": "2022-08-02T05:49:38.112Z", - "end": "2022-08-02T06:00:27.016Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T06:00:27.016Z", - "end": "2022-08-02T06:11:15.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T06:11:15.920Z", - "end": "2022-08-02T06:22:04.824Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T06:22:04.824Z", - "end": "2022-08-02T06:32:53.728Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T06:32:53.728Z", - "end": "2022-08-02T06:43:42.632Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "356875221078245376", - "start": "2022-06-20T10:59:09.482Z", - "end": "2022-06-20T15:54:44.639Z", - "events": [ - { - "start": "2022-06-20T10:59:09.482Z", - "end": "2022-06-20T11:58:16.513Z", - "state": "IDLE" - }, - { - "start": "2022-06-20T11:58:16.513Z", - "end": "2022-06-20T12:57:23.544Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T12:57:23.544Z", - "end": "2022-06-20T13:56:30.575Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T13:56:30.575Z", - "end": "2022-06-20T14:55:37.606Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T14:55:37.606Z", - "end": "2022-06-20T15:54:44.637Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "542075586886107149", - "start": "2022-06-02T03:06:58.110Z", - "end": "2022-06-02T11:06:06.465Z", - "events": [ - { - "start": "2022-06-02T03:06:58.110Z", - "end": "2022-06-02T11:06:06.465Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786028561315351452", - "game": "512501896896970762", - "start": "2022-05-30T07:59:15.930Z", - "end": "2022-05-30T11:00:44.999Z", - "events": [ - { - "start": "2022-05-30T07:59:15.930Z", - "end": "2022-05-30T08:59:45.619Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T08:59:45.619Z", - "end": "2022-05-30T10:00:15.308Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T10:00:15.308Z", - "end": "2022-05-30T11:00:44.997Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "774637841058278398", - "game": "511619499053678668", - "start": "2022-07-03T16:40:55.762Z", - "end": "2022-07-03T21:11:41.930Z", - "events": [ - { - "start": "2022-07-03T16:40:55.762Z", - "end": "2022-07-03T21:11:41.930Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "264503060524837708", - "game": "614380482620293151", - "start": "2022-05-17T10:13:05.512Z", - "end": "2022-05-17T12:28:14.127Z", - "events": [ - { - "start": "2022-05-17T10:13:05.512Z", - "end": "2022-05-17T10:58:08.383Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T10:58:08.383Z", - "end": "2022-05-17T11:43:11.254Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T11:43:11.254Z", - "end": "2022-05-17T12:28:14.125Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "535384357536399404", - "start": "2022-07-08T06:52:28.818Z", - "end": "2022-07-08T12:47:42.991Z", - "events": [ - { - "start": "2022-07-08T06:52:28.818Z", - "end": "2022-07-08T08:03:31.652Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T08:03:31.652Z", - "end": "2022-07-08T09:14:34.486Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T09:14:34.486Z", - "end": "2022-07-08T10:25:37.320Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T10:25:37.320Z", - "end": "2022-07-08T11:36:40.154Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T11:36:40.154Z", - "end": "2022-07-08T12:47:42.988Z", - "state": "IDLE" - } - ] - }, - { - "user": "394970121077311909", - "game": "528145079819436043", - "start": "2022-07-29T16:38:30.712Z", - "end": "2022-07-29T22:14:32.217Z", - "events": [ - { - "start": "2022-07-29T16:38:30.712Z", - "end": "2022-07-29T17:45:43.013Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T17:45:43.013Z", - "end": "2022-07-29T18:52:55.314Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T18:52:55.314Z", - "end": "2022-07-29T20:00:07.615Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T20:00:07.615Z", - "end": "2022-07-29T21:07:19.916Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T21:07:19.916Z", - "end": "2022-07-29T22:14:32.217Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "731522398939920723", - "game": "592976500802846750", - "start": "2022-06-05T20:49:30.025Z", - "end": "2022-06-05T21:06:53.491Z", - "events": [ - { - "start": "2022-06-05T20:49:30.025Z", - "end": "2022-06-05T20:55:17.847Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T20:55:17.847Z", - "end": "2022-06-05T21:01:05.669Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T21:01:05.669Z", - "end": "2022-06-05T21:06:53.491Z", - "state": "IDLE" - } - ] - }, - { - "user": "951131768137733554", - "game": "597588168178663434", - "start": "2022-07-30T12:25:31.310Z", - "end": "2022-07-30T15:40:51.260Z", - "events": [ - { - "start": "2022-07-30T12:25:31.310Z", - "end": "2022-07-30T13:30:37.960Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T13:30:37.960Z", - "end": "2022-07-30T14:35:44.610Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T14:35:44.610Z", - "end": "2022-07-30T15:40:51.260Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "530539422724200800", - "game": "554573307161214977", - "start": "2022-06-23T12:27:45.646Z", - "end": "2022-06-23T19:16:12.346Z", - "events": [ - { - "start": "2022-06-23T12:27:45.646Z", - "end": "2022-06-23T19:16:12.346Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "346608907417001845", - "game": "575412499399180288", - "start": "2022-07-30T22:41:01.913Z", - "end": "2022-07-31T03:18:42.609Z", - "events": [ - { - "start": "2022-07-30T22:41:01.913Z", - "end": "2022-07-30T23:36:34.052Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T23:36:34.052Z", - "end": "2022-07-31T00:32:06.191Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T00:32:06.191Z", - "end": "2022-07-31T01:27:38.330Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T01:27:38.330Z", - "end": "2022-07-31T02:23:10.469Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T02:23:10.469Z", - "end": "2022-07-31T03:18:42.608Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "658550407298256890", - "game": "576482762446602270", - "start": "2022-05-23T13:14:48.524Z", - "end": "2022-05-23T18:38:00.220Z", - "events": [ - { - "start": "2022-05-23T13:14:48.524Z", - "end": "2022-05-23T15:02:32.422Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T15:02:32.422Z", - "end": "2022-05-23T16:50:16.320Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T16:50:16.320Z", - "end": "2022-05-23T18:38:00.218Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "747381962738157784", - "game": "614380482620293151", - "start": "2022-07-02T17:27:55.195Z", - "end": "2022-07-02T23:32:45.144Z", - "events": [ - { - "start": "2022-07-02T17:27:55.195Z", - "end": "2022-07-02T20:30:20.169Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T20:30:20.169Z", - "end": "2022-07-02T23:32:45.143Z", - "state": "IDLE" - } - ] - }, - { - "user": "686825797960121847", - "game": "542474758835535872", - "start": "2022-04-21T13:13:11.984Z", - "end": "2022-04-21T22:51:52.441Z", - "events": [ - { - "start": "2022-04-21T13:13:11.984Z", - "end": "2022-04-21T15:37:52.098Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T15:37:52.098Z", - "end": "2022-04-21T18:02:32.212Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T18:02:32.212Z", - "end": "2022-04-21T20:27:12.326Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T20:27:12.326Z", - "end": "2022-04-21T22:51:52.440Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "540120593576493057", - "start": "2022-07-24T16:20:49.563Z", - "end": "2022-07-24T22:55:17.572Z", - "events": [ - { - "start": "2022-07-24T16:20:49.563Z", - "end": "2022-07-24T22:55:17.572Z", - "state": "IDLE" - } - ] - }, - { - "user": "123137660023366590", - "game": "535371564850479134", - "start": "2022-05-04T17:32:52.297Z", - "end": "2022-05-05T03:08:29.283Z", - "events": [ - { - "start": "2022-05-04T17:32:52.297Z", - "end": "2022-05-05T03:08:29.283Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "542075586886107149", - "start": "2022-07-11T10:39:30.830Z", - "end": "2022-07-11T11:01:40.441Z", - "events": [ - { - "start": "2022-07-11T10:39:30.830Z", - "end": "2022-07-11T10:46:54.033Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T10:46:54.033Z", - "end": "2022-07-11T10:54:17.236Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T10:54:17.236Z", - "end": "2022-07-11T11:01:40.439Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "101572134856427564", - "game": "520453007578628124", - "start": "2022-07-18T19:11:35.893Z", - "end": "2022-07-18T21:48:43.698Z", - "events": [ - { - "start": "2022-07-18T19:11:35.893Z", - "end": "2022-07-18T21:48:43.698Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "554573307161214977", - "start": "2022-05-03T01:37:01.477Z", - "end": "2022-05-03T07:45:26.771Z", - "events": [ - { - "start": "2022-05-03T01:37:01.477Z", - "end": "2022-05-03T07:45:26.771Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "512498684211232768", - "start": "2022-06-25T15:59:36.792Z", - "end": "2022-06-26T01:17:37.330Z", - "events": [ - { - "start": "2022-06-25T15:59:36.792Z", - "end": "2022-06-25T19:05:36.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T19:05:36.971Z", - "end": "2022-06-25T22:11:37.150Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T22:11:37.150Z", - "end": "2022-06-26T01:17:37.329Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302714757313826277", - "game": "597860020935327787", - "start": "2022-08-06T09:06:54.320Z", - "end": "2022-08-06T11:25:49.092Z", - "events": [ - { - "start": "2022-08-06T09:06:54.320Z", - "end": "2022-08-06T11:25:49.092Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "878082205985098233", - "game": "514228311661084682", - "start": "2022-07-23T02:58:41.434Z", - "end": "2022-07-23T10:08:36.930Z", - "events": [ - { - "start": "2022-07-23T02:58:41.434Z", - "end": "2022-07-23T04:24:40.533Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T04:24:40.533Z", - "end": "2022-07-23T05:50:39.632Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T05:50:39.632Z", - "end": "2022-07-23T07:16:38.731Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T07:16:38.731Z", - "end": "2022-07-23T08:42:37.830Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T08:42:37.830Z", - "end": "2022-07-23T10:08:36.929Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "514228311661084682", - "start": "2022-07-21T11:16:20.361Z", - "end": "2022-07-21T11:47:44.915Z", - "events": [ - { - "start": "2022-07-21T11:16:20.361Z", - "end": "2022-07-21T11:26:48.545Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T11:26:48.545Z", - "end": "2022-07-21T11:37:16.729Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T11:37:16.729Z", - "end": "2022-07-21T11:47:44.913Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "535371564850479134", - "start": "2022-04-19T18:33:24.016Z", - "end": "2022-04-19T21:01:23.755Z", - "events": [ - { - "start": "2022-04-19T18:33:24.016Z", - "end": "2022-04-19T19:47:23.885Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T19:47:23.885Z", - "end": "2022-04-19T21:01:23.754Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "725502702868293700", - "game": "565341641427124244", - "start": "2022-05-21T21:44:57.332Z", - "end": "2022-05-22T01:36:48.777Z", - "events": [ - { - "start": "2022-05-21T21:44:57.332Z", - "end": "2022-05-22T01:36:48.777Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "911848869344266044", - "game": "569008830701240340", - "start": "2022-07-11T11:21:55.208Z", - "end": "2022-07-11T20:32:41.413Z", - "events": [ - { - "start": "2022-07-11T11:21:55.208Z", - "end": "2022-07-11T13:12:04.449Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T13:12:04.449Z", - "end": "2022-07-11T15:02:13.690Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T15:02:13.690Z", - "end": "2022-07-11T16:52:22.931Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T16:52:22.931Z", - "end": "2022-07-11T18:42:32.172Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T18:42:32.172Z", - "end": "2022-07-11T20:32:41.413Z", - "state": "IDLE" - } - ] - }, - { - "user": "430732724825949756", - "game": "540120593576493057", - "start": "2022-05-08T12:49:29.935Z", - "end": "2022-05-08T20:41:25.245Z", - "events": [ - { - "start": "2022-05-08T12:49:29.935Z", - "end": "2022-05-08T16:45:27.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T16:45:27.590Z", - "end": "2022-05-08T20:41:25.245Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "774637841058278398", - "game": "512789427462995988", - "start": "2022-05-10T07:00:08.641Z", - "end": "2022-05-10T16:21:25.325Z", - "events": [ - { - "start": "2022-05-10T07:00:08.641Z", - "end": "2022-05-10T09:20:27.812Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T09:20:27.812Z", - "end": "2022-05-10T11:40:46.983Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T11:40:46.983Z", - "end": "2022-05-10T14:01:06.154Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T14:01:06.154Z", - "end": "2022-05-10T16:21:25.325Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "606163888052109312", - "start": "2022-06-15T10:53:54.240Z", - "end": "2022-06-15T15:29:52.064Z", - "events": [ - { - "start": "2022-06-15T10:53:54.240Z", - "end": "2022-06-15T12:02:53.696Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T12:02:53.696Z", - "end": "2022-06-15T13:11:53.152Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T13:11:53.152Z", - "end": "2022-06-15T14:20:52.608Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T14:20:52.608Z", - "end": "2022-06-15T15:29:52.064Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "519644368735567873", - "start": "2022-05-29T22:26:32.688Z", - "end": "2022-05-30T04:10:37.885Z", - "events": [ - { - "start": "2022-05-29T22:26:32.688Z", - "end": "2022-05-29T23:52:33.987Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T23:52:33.987Z", - "end": "2022-05-30T01:18:35.286Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T01:18:35.286Z", - "end": "2022-05-30T02:44:36.585Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T02:44:36.585Z", - "end": "2022-05-30T04:10:37.884Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "713444659295913502", - "game": "558547388583772201", - "start": "2022-04-29T20:35:01.500Z", - "end": "2022-04-30T06:33:57.965Z", - "events": [ - { - "start": "2022-04-29T20:35:01.500Z", - "end": "2022-04-29T23:54:40.321Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-29T23:54:40.321Z", - "end": "2022-04-30T03:14:19.142Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-30T03:14:19.142Z", - "end": "2022-04-30T06:33:57.963Z", - "state": "IDLE" - } - ] - }, - { - "user": "768513326430993269", - "game": "550277544025522176", - "start": "2022-04-29T11:47:49.463Z", - "end": "2022-04-29T17:48:52.318Z", - "events": [ - { - "start": "2022-04-29T11:47:49.463Z", - "end": "2022-04-29T14:48:20.890Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T14:48:20.890Z", - "end": "2022-04-29T17:48:52.317Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "101572134856427564", - "game": "512789427462995988", - "start": "2022-07-26T12:03:26.434Z", - "end": "2022-07-26T15:13:49.865Z", - "events": [ - { - "start": "2022-07-26T12:03:26.434Z", - "end": "2022-07-26T15:13:49.865Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "508057374875975682", - "start": "2022-04-26T05:48:23.456Z", - "end": "2022-04-26T09:49:23.722Z", - "events": [ - { - "start": "2022-04-26T05:48:23.456Z", - "end": "2022-04-26T06:48:38.522Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T06:48:38.522Z", - "end": "2022-04-26T07:48:53.588Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T07:48:53.588Z", - "end": "2022-04-26T08:49:08.654Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T08:49:08.654Z", - "end": "2022-04-26T09:49:23.720Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "512699108809637890", - "start": "2022-05-16T22:08:32.686Z", - "end": "2022-05-16T23:38:09.287Z", - "events": [ - { - "start": "2022-05-16T22:08:32.686Z", - "end": "2022-05-16T22:26:28.006Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T22:26:28.006Z", - "end": "2022-05-16T22:44:23.326Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T22:44:23.326Z", - "end": "2022-05-16T23:02:18.646Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-16T23:02:18.646Z", - "end": "2022-05-16T23:20:13.966Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T23:20:13.966Z", - "end": "2022-05-16T23:38:09.286Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "500919588166575890", - "game": "512501896896970762", - "start": "2022-05-26T07:32:17.727Z", - "end": "2022-05-26T16:58:11.183Z", - "events": [ - { - "start": "2022-05-26T07:32:17.727Z", - "end": "2022-05-26T09:25:28.418Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-26T09:25:28.418Z", - "end": "2022-05-26T11:18:39.109Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T11:18:39.109Z", - "end": "2022-05-26T13:11:49.800Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-26T13:11:49.800Z", - "end": "2022-05-26T15:05:00.491Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T15:05:00.491Z", - "end": "2022-05-26T16:58:11.182Z", - "state": "IDLE" - } - ] - }, - { - "user": "623295654897148670", - "game": "518088627234930688", - "start": "2022-07-20T19:41:56.593Z", - "end": "2022-07-21T04:04:42.658Z", - "events": [ - { - "start": "2022-07-20T19:41:56.593Z", - "end": "2022-07-20T21:47:38.109Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T21:47:38.109Z", - "end": "2022-07-20T23:53:19.625Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T23:53:19.625Z", - "end": "2022-07-21T01:59:01.141Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T01:59:01.141Z", - "end": "2022-07-21T04:04:42.657Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "572456126872944651", - "start": "2022-06-15T20:53:26.444Z", - "end": "2022-06-15T23:52:43.680Z", - "events": [ - { - "start": "2022-06-15T20:53:26.444Z", - "end": "2022-06-15T21:38:15.753Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T21:38:15.753Z", - "end": "2022-06-15T22:23:05.062Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T22:23:05.062Z", - "end": "2022-06-15T23:07:54.371Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T23:07:54.371Z", - "end": "2022-06-15T23:52:43.680Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "565341641427124244", - "start": "2022-05-16T06:46:01.463Z", - "end": "2022-05-16T14:56:40.158Z", - "events": [ - { - "start": "2022-05-16T06:46:01.463Z", - "end": "2022-05-16T09:29:34.361Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-16T09:29:34.361Z", - "end": "2022-05-16T12:13:07.259Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T12:13:07.259Z", - "end": "2022-05-16T14:56:40.157Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "565341641427124244", - "start": "2022-07-23T16:18:13.861Z", - "end": "2022-07-24T00:13:10.417Z", - "events": [ - { - "start": "2022-07-23T16:18:13.861Z", - "end": "2022-07-23T20:15:42.139Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T20:15:42.139Z", - "end": "2022-07-24T00:13:10.417Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "395281349698024181", - "game": "523154344187789312", - "start": "2022-06-19T10:09:12.297Z", - "end": "2022-06-19T14:09:53.903Z", - "events": [ - { - "start": "2022-06-19T10:09:12.297Z", - "end": "2022-06-19T14:09:53.903Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "713444659295913502", - "game": "514228311661084682", - "start": "2022-07-07T03:48:43.300Z", - "end": "2022-07-07T08:14:54.295Z", - "events": [ - { - "start": "2022-07-07T03:48:43.300Z", - "end": "2022-07-07T08:14:54.295Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "520462578061803588", - "start": "2022-05-15T03:33:59.799Z", - "end": "2022-05-15T09:29:30.147Z", - "events": [ - { - "start": "2022-05-15T03:33:59.799Z", - "end": "2022-05-15T05:02:52.386Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T05:02:52.386Z", - "end": "2022-05-15T06:31:44.973Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T06:31:44.973Z", - "end": "2022-05-15T08:00:37.560Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T08:00:37.560Z", - "end": "2022-05-15T09:29:30.147Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "520462578061803588", - "start": "2022-06-24T15:10:50.584Z", - "end": "2022-06-24T23:30:38.843Z", - "events": [ - { - "start": "2022-06-24T15:10:50.584Z", - "end": "2022-06-24T19:20:44.713Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T19:20:44.713Z", - "end": "2022-06-24T23:30:38.842Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "597860020935327787", - "start": "2022-04-29T15:11:41.921Z", - "end": "2022-04-29T21:49:06.231Z", - "events": [ - { - "start": "2022-04-29T15:11:41.921Z", - "end": "2022-04-29T17:24:10.024Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T17:24:10.024Z", - "end": "2022-04-29T19:36:38.127Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T19:36:38.127Z", - "end": "2022-04-29T21:49:06.230Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "569253958967885828", - "start": "2022-05-31T16:00:28.608Z", - "end": "2022-05-31T22:33:53.030Z", - "events": [ - { - "start": "2022-05-31T16:00:28.608Z", - "end": "2022-05-31T17:19:09.492Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T17:19:09.492Z", - "end": "2022-05-31T18:37:50.376Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T18:37:50.376Z", - "end": "2022-05-31T19:56:31.260Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T19:56:31.260Z", - "end": "2022-05-31T21:15:12.144Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T21:15:12.144Z", - "end": "2022-05-31T22:33:53.028Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "553697181249437716", - "start": "2022-05-07T15:05:37.166Z", - "end": "2022-05-07T22:34:07.380Z", - "events": [ - { - "start": "2022-05-07T15:05:37.166Z", - "end": "2022-05-07T22:34:07.380Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "732542352358923773", - "game": "540120593576493057", - "start": "2022-05-09T00:37:42.814Z", - "end": "2022-05-09T04:03:14.056Z", - "events": [ - { - "start": "2022-05-09T00:37:42.814Z", - "end": "2022-05-09T01:18:49.062Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T01:18:49.062Z", - "end": "2022-05-09T01:59:55.310Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T01:59:55.310Z", - "end": "2022-05-09T02:41:01.558Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T02:41:01.558Z", - "end": "2022-05-09T03:22:07.806Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-09T03:22:07.806Z", - "end": "2022-05-09T04:03:14.054Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "553697181249437716", - "start": "2022-05-18T11:21:56.233Z", - "end": "2022-05-18T20:50:52.229Z", - "events": [ - { - "start": "2022-05-18T11:21:56.233Z", - "end": "2022-05-18T16:06:24.231Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T16:06:24.231Z", - "end": "2022-05-18T20:50:52.229Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "700136079562375258", - "start": "2022-05-09T19:29:39.994Z", - "end": "2022-05-09T20:43:28.896Z", - "events": [ - { - "start": "2022-05-09T19:29:39.994Z", - "end": "2022-05-09T19:44:25.774Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T19:44:25.774Z", - "end": "2022-05-09T19:59:11.554Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T19:59:11.554Z", - "end": "2022-05-09T20:13:57.334Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T20:13:57.334Z", - "end": "2022-05-09T20:28:43.114Z", - "state": "IDLE" - }, - { - "start": "2022-05-09T20:28:43.114Z", - "end": "2022-05-09T20:43:28.894Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "713444659295913502", - "game": "569253958967885828", - "start": "2022-07-18T06:21:02.575Z", - "end": "2022-07-18T12:43:23.211Z", - "events": [ - { - "start": "2022-07-18T06:21:02.575Z", - "end": "2022-07-18T07:56:37.734Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T07:56:37.734Z", - "end": "2022-07-18T09:32:12.893Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T09:32:12.893Z", - "end": "2022-07-18T11:07:48.052Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T11:07:48.052Z", - "end": "2022-07-18T12:43:23.211Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "791267126190249625", - "game": "519644368735567873", - "start": "2022-07-15T08:35:32.878Z", - "end": "2022-07-15T08:54:27.030Z", - "events": [ - { - "start": "2022-07-15T08:35:32.878Z", - "end": "2022-07-15T08:40:16.416Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-15T08:40:16.416Z", - "end": "2022-07-15T08:44:59.954Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T08:44:59.954Z", - "end": "2022-07-15T08:49:43.492Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-15T08:49:43.492Z", - "end": "2022-07-15T08:54:27.030Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "510690749854514547", - "game": "588739017718366208", - "start": "2022-04-29T11:52:47.003Z", - "end": "2022-04-29T13:17:21.861Z", - "events": [ - { - "start": "2022-04-29T11:52:47.003Z", - "end": "2022-04-29T12:20:58.622Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T12:20:58.622Z", - "end": "2022-04-29T12:49:10.241Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-29T12:49:10.241Z", - "end": "2022-04-29T13:17:21.860Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "530454325214969866", - "start": "2022-04-25T14:21:09.770Z", - "end": "2022-04-25T21:38:38.110Z", - "events": [ - { - "start": "2022-04-25T14:21:09.770Z", - "end": "2022-04-25T21:38:38.110Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "519644368735567873", - "start": "2022-06-16T09:37:46.300Z", - "end": "2022-06-16T11:38:35.189Z", - "events": [ - { - "start": "2022-06-16T09:37:46.300Z", - "end": "2022-06-16T10:07:58.522Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T10:07:58.522Z", - "end": "2022-06-16T10:38:10.744Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T10:38:10.744Z", - "end": "2022-06-16T11:08:22.966Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T11:08:22.966Z", - "end": "2022-06-16T11:38:35.188Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "535384357536399404", - "start": "2022-07-11T09:06:15.169Z", - "end": "2022-07-11T11:34:58.282Z", - "events": [ - { - "start": "2022-07-11T09:06:15.169Z", - "end": "2022-07-11T10:20:36.725Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T10:20:36.725Z", - "end": "2022-07-11T11:34:58.281Z", - "state": "IDLE" - } - ] - }, - { - "user": "394970121077311909", - "game": "542475118396309528", - "start": "2022-06-20T14:13:34.881Z", - "end": "2022-06-20T16:55:07.749Z", - "events": [ - { - "start": "2022-06-20T14:13:34.881Z", - "end": "2022-06-20T15:34:21.315Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T15:34:21.315Z", - "end": "2022-06-20T16:55:07.749Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "285410867718320291", - "game": "576482762446602270", - "start": "2022-04-23T05:37:21.234Z", - "end": "2022-04-23T09:29:29.710Z", - "events": [ - { - "start": "2022-04-23T05:37:21.234Z", - "end": "2022-04-23T06:54:44.059Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T06:54:44.059Z", - "end": "2022-04-23T08:12:06.884Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T08:12:06.884Z", - "end": "2022-04-23T09:29:29.709Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "297014162745407430", - "game": "584069374462394368", - "start": "2022-07-26T18:16:48.245Z", - "end": "2022-07-26T18:22:55.377Z", - "events": [ - { - "start": "2022-07-26T18:16:48.245Z", - "end": "2022-07-26T18:18:01.671Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-26T18:18:01.671Z", - "end": "2022-07-26T18:19:15.097Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-26T18:19:15.097Z", - "end": "2022-07-26T18:20:28.523Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-26T18:20:28.523Z", - "end": "2022-07-26T18:21:41.949Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-26T18:21:41.949Z", - "end": "2022-07-26T18:22:55.375Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "452396069922968436", - "game": "520462578061803588", - "start": "2022-06-28T11:03:22.005Z", - "end": "2022-06-28T16:35:43.897Z", - "events": [ - { - "start": "2022-06-28T11:03:22.005Z", - "end": "2022-06-28T12:26:27.478Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T12:26:27.478Z", - "end": "2022-06-28T13:49:32.951Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T13:49:32.951Z", - "end": "2022-06-28T15:12:38.424Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T15:12:38.424Z", - "end": "2022-06-28T16:35:43.897Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "731522398939920723", - "game": "520453007578628124", - "start": "2022-06-12T08:23:30.266Z", - "end": "2022-06-12T17:01:50.680Z", - "events": [ - { - "start": "2022-06-12T08:23:30.266Z", - "end": "2022-06-12T17:01:50.680Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "558547388583772201", - "start": "2022-06-20T04:35:29.386Z", - "end": "2022-06-20T10:20:20.850Z", - "events": [ - { - "start": "2022-06-20T04:35:29.386Z", - "end": "2022-06-20T06:30:26.540Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T06:30:26.540Z", - "end": "2022-06-20T08:25:23.694Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T08:25:23.694Z", - "end": "2022-06-20T10:20:20.848Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "694111074254984301", - "game": "519644368735567873", - "start": "2022-08-01T06:52:59.636Z", - "end": "2022-08-01T08:30:25.235Z", - "events": [ - { - "start": "2022-08-01T06:52:59.636Z", - "end": "2022-08-01T07:41:42.435Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-01T07:41:42.435Z", - "end": "2022-08-01T08:30:25.234Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "378424071510192465", - "game": "518088627234930688", - "start": "2022-04-27T12:02:37.864Z", - "end": "2022-04-27T12:45:36.999Z", - "events": [ - { - "start": "2022-04-27T12:02:37.864Z", - "end": "2022-04-27T12:11:13.691Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T12:11:13.691Z", - "end": "2022-04-27T12:19:49.518Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T12:19:49.518Z", - "end": "2022-04-27T12:28:25.345Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T12:28:25.345Z", - "end": "2022-04-27T12:37:01.172Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T12:37:01.172Z", - "end": "2022-04-27T12:45:36.999Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "878082205985098233", - "game": "512501896896970762", - "start": "2022-06-09T14:54:07.536Z", - "end": "2022-06-10T00:51:42.243Z", - "events": [ - { - "start": "2022-06-09T14:54:07.536Z", - "end": "2022-06-09T19:52:54.889Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-09T19:52:54.889Z", - "end": "2022-06-10T00:51:42.242Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "394970121077311909", - "game": "508057374875975682", - "start": "2022-07-15T03:36:43.614Z", - "end": "2022-07-15T05:45:56.613Z", - "events": [ - { - "start": "2022-07-15T03:36:43.614Z", - "end": "2022-07-15T04:02:34.213Z", - "state": "IDLE" - }, - { - "start": "2022-07-15T04:02:34.213Z", - "end": "2022-07-15T04:28:24.812Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T04:28:24.812Z", - "end": "2022-07-15T04:54:15.411Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T04:54:15.411Z", - "end": "2022-07-15T05:20:06.010Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T05:20:06.010Z", - "end": "2022-07-15T05:45:56.609Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "452396069922968436", - "game": "508057374875975682", - "start": "2022-04-19T04:26:50.642Z", - "end": "2022-04-19T09:16:41.021Z", - "events": [ - { - "start": "2022-04-19T04:26:50.642Z", - "end": "2022-04-19T09:16:41.021Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "521350927850935744", - "game": "519644267212177418", - "start": "2022-05-02T13:35:27.899Z", - "end": "2022-05-02T18:08:03.175Z", - "events": [ - { - "start": "2022-05-02T13:35:27.899Z", - "end": "2022-05-02T15:51:45.537Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T15:51:45.537Z", - "end": "2022-05-02T18:08:03.175Z", - "state": "IDLE" - } - ] - }, - { - "user": "694111074254984301", - "game": "540120593576493057", - "start": "2022-06-10T22:48:41.554Z", - "end": "2022-06-11T01:46:30.570Z", - "events": [ - { - "start": "2022-06-10T22:48:41.554Z", - "end": "2022-06-11T01:46:30.570Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "695941172337689379", - "game": "530454325214969866", - "start": "2022-07-22T01:04:57.197Z", - "end": "2022-07-22T10:01:28.815Z", - "events": [ - { - "start": "2022-07-22T01:04:57.197Z", - "end": "2022-07-22T02:52:15.520Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T02:52:15.520Z", - "end": "2022-07-22T04:39:33.843Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T04:39:33.843Z", - "end": "2022-07-22T06:26:52.166Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T06:26:52.166Z", - "end": "2022-07-22T08:14:10.489Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T08:14:10.489Z", - "end": "2022-07-22T10:01:28.812Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "318220875546522080", - "game": "512501896896970762", - "start": "2022-06-15T11:46:29.356Z", - "end": "2022-06-15T16:47:53.589Z", - "events": [ - { - "start": "2022-06-15T11:46:29.356Z", - "end": "2022-06-15T13:01:50.414Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T13:01:50.414Z", - "end": "2022-06-15T14:17:11.472Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T14:17:11.472Z", - "end": "2022-06-15T15:32:32.530Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T15:32:32.530Z", - "end": "2022-06-15T16:47:53.588Z", - "state": "IDLE" - } - ] - }, - { - "user": "153631479524744694", - "game": "512789427462995988", - "start": "2022-08-01T08:13:10.146Z", - "end": "2022-08-01T15:18:25.394Z", - "events": [ - { - "start": "2022-08-01T08:13:10.146Z", - "end": "2022-08-01T11:45:47.770Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T11:45:47.770Z", - "end": "2022-08-01T15:18:25.394Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "511619499053678668", - "start": "2022-05-13T23:48:48.803Z", - "end": "2022-05-14T07:38:53.438Z", - "events": [ - { - "start": "2022-05-13T23:48:48.803Z", - "end": "2022-05-14T03:43:51.120Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T03:43:51.120Z", - "end": "2022-05-14T07:38:53.437Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "584069374462394368", - "start": "2022-06-20T02:18:15.369Z", - "end": "2022-06-20T08:07:54.632Z", - "events": [ - { - "start": "2022-06-20T02:18:15.369Z", - "end": "2022-06-20T08:07:54.632Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "510690749854514547", - "game": "535371564850479134", - "start": "2022-04-14T23:38:33.164Z", - "end": "2022-04-15T04:03:40.806Z", - "events": [ - { - "start": "2022-04-14T23:38:33.164Z", - "end": "2022-04-15T01:51:06.985Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-15T01:51:06.985Z", - "end": "2022-04-15T04:03:40.806Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "213263852824749877", - "game": "512789120234422301", - "start": "2022-07-28T10:21:03.115Z", - "end": "2022-07-28T13:34:05.784Z", - "events": [ - { - "start": "2022-07-28T10:21:03.115Z", - "end": "2022-07-28T11:09:18.782Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T11:09:18.782Z", - "end": "2022-07-28T11:57:34.449Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T11:57:34.449Z", - "end": "2022-07-28T12:45:50.116Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T12:45:50.116Z", - "end": "2022-07-28T13:34:05.783Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "520462578061803588", - "start": "2022-04-29T10:18:46.425Z", - "end": "2022-04-29T13:16:41.373Z", - "events": [ - { - "start": "2022-04-29T10:18:46.425Z", - "end": "2022-04-29T10:54:21.414Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T10:54:21.414Z", - "end": "2022-04-29T11:29:56.403Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T11:29:56.403Z", - "end": "2022-04-29T12:05:31.392Z", - "state": "IDLE" - }, - { - "start": "2022-04-29T12:05:31.392Z", - "end": "2022-04-29T12:41:06.381Z", - "state": "IDLE" - }, - { - "start": "2022-04-29T12:41:06.381Z", - "end": "2022-04-29T13:16:41.370Z", - "state": "IDLE" - } - ] - }, - { - "user": "123137660023366590", - "game": "546175179542364160", - "start": "2022-05-20T04:13:15.996Z", - "end": "2022-05-20T06:55:38.027Z", - "events": [ - { - "start": "2022-05-20T04:13:15.996Z", - "end": "2022-05-20T05:07:23.339Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T05:07:23.339Z", - "end": "2022-05-20T06:01:30.682Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-20T06:01:30.682Z", - "end": "2022-05-20T06:55:38.025Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512501896896970762", - "start": "2022-06-03T17:40:55.052Z", - "end": "2022-06-03T23:17:14.135Z", - "events": [ - { - "start": "2022-06-03T17:40:55.052Z", - "end": "2022-06-03T20:29:04.593Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T20:29:04.593Z", - "end": "2022-06-03T23:17:14.134Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "512789120234422301", - "start": "2022-06-02T15:35:21.127Z", - "end": "2022-06-02T23:03:21.662Z", - "events": [ - { - "start": "2022-06-02T15:35:21.127Z", - "end": "2022-06-02T19:19:21.394Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T19:19:21.394Z", - "end": "2022-06-02T23:03:21.661Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "508057374875975682", - "start": "2022-05-24T04:57:35.431Z", - "end": "2022-05-24T06:05:38.304Z", - "events": [ - { - "start": "2022-05-24T04:57:35.431Z", - "end": "2022-05-24T05:20:16.388Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T05:20:16.388Z", - "end": "2022-05-24T05:42:57.345Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T05:42:57.345Z", - "end": "2022-05-24T06:05:38.302Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "356875221078245376", - "start": "2022-06-17T08:01:00.954Z", - "end": "2022-06-17T16:24:56.023Z", - "events": [ - { - "start": "2022-06-17T08:01:00.954Z", - "end": "2022-06-17T12:12:58.488Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T12:12:58.488Z", - "end": "2022-06-17T16:24:56.022Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "101572134856427564", - "game": "519644368735567873", - "start": "2022-06-09T02:56:40.727Z", - "end": "2022-06-09T12:27:40.629Z", - "events": [ - { - "start": "2022-06-09T02:56:40.727Z", - "end": "2022-06-09T07:42:10.678Z", - "state": "IDLE" - }, - { - "start": "2022-06-09T07:42:10.678Z", - "end": "2022-06-09T12:27:40.629Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "510690749854514547", - "game": "526489929631531009", - "start": "2022-05-16T13:07:05.983Z", - "end": "2022-05-16T20:47:37.835Z", - "events": [ - { - "start": "2022-05-16T13:07:05.983Z", - "end": "2022-05-16T14:39:12.353Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T14:39:12.353Z", - "end": "2022-05-16T16:11:18.723Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T16:11:18.723Z", - "end": "2022-05-16T17:43:25.093Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T17:43:25.093Z", - "end": "2022-05-16T19:15:31.463Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T19:15:31.463Z", - "end": "2022-05-16T20:47:37.833Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "161887854890745672", - "game": "512789343157485602", - "start": "2022-07-08T22:30:43.183Z", - "end": "2022-07-08T23:53:27.213Z", - "events": [ - { - "start": "2022-07-08T22:30:43.183Z", - "end": "2022-07-08T22:47:15.989Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T22:47:15.989Z", - "end": "2022-07-08T23:03:48.795Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T23:03:48.795Z", - "end": "2022-07-08T23:20:21.601Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T23:20:21.601Z", - "end": "2022-07-08T23:36:54.407Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T23:36:54.407Z", - "end": "2022-07-08T23:53:27.213Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "356875221078245376", - "start": "2022-07-21T05:19:29.379Z", - "end": "2022-07-21T05:26:37.581Z", - "events": [ - { - "start": "2022-07-21T05:19:29.379Z", - "end": "2022-07-21T05:26:37.581Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "565341641427124244", - "start": "2022-04-13T11:13:56.199Z", - "end": "2022-04-13T16:51:35.190Z", - "events": [ - { - "start": "2022-04-13T11:13:56.199Z", - "end": "2022-04-13T13:06:29.196Z", - "state": "IDLE" - }, - { - "start": "2022-04-13T13:06:29.196Z", - "end": "2022-04-13T14:59:02.193Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T14:59:02.193Z", - "end": "2022-04-13T16:51:35.190Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "938976307338486810", - "game": "356875221078245376", - "start": "2022-05-08T16:56:51.869Z", - "end": "2022-05-08T23:36:36.004Z", - "events": [ - { - "start": "2022-05-08T16:56:51.869Z", - "end": "2022-05-08T18:36:47.902Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T18:36:47.902Z", - "end": "2022-05-08T20:16:43.935Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T20:16:43.935Z", - "end": "2022-05-08T21:56:39.968Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T21:56:39.968Z", - "end": "2022-05-08T23:36:36.001Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "625617695768437507", - "game": "356875221078245376", - "start": "2022-05-01T06:25:35.908Z", - "end": "2022-05-01T07:49:57.017Z", - "events": [ - { - "start": "2022-05-01T06:25:35.908Z", - "end": "2022-05-01T06:42:28.129Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T06:42:28.129Z", - "end": "2022-05-01T06:59:20.350Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T06:59:20.350Z", - "end": "2022-05-01T07:16:12.571Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T07:16:12.571Z", - "end": "2022-05-01T07:33:04.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T07:33:04.792Z", - "end": "2022-05-01T07:49:57.013Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "182925797752958092", - "game": "519644267212177418", - "start": "2022-07-06T17:13:18.963Z", - "end": "2022-07-06T23:58:40.556Z", - "events": [ - { - "start": "2022-07-06T17:13:18.963Z", - "end": "2022-07-06T23:58:40.556Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "385692164951394422", - "game": "530454325214969866", - "start": "2022-06-24T11:10:06.785Z", - "end": "2022-06-24T15:52:41.785Z", - "events": [ - { - "start": "2022-06-24T11:10:06.785Z", - "end": "2022-06-24T12:06:37.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T12:06:37.785Z", - "end": "2022-06-24T13:03:08.785Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T13:03:08.785Z", - "end": "2022-06-24T13:59:39.785Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T13:59:39.785Z", - "end": "2022-06-24T14:56:10.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T14:56:10.785Z", - "end": "2022-06-24T15:52:41.785Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "762163239408560283", - "game": "540120593576493057", - "start": "2022-05-26T03:10:47.961Z", - "end": "2022-05-26T06:07:22.418Z", - "events": [ - { - "start": "2022-05-26T03:10:47.961Z", - "end": "2022-05-26T06:07:22.418Z", - "state": "IDLE" - } - ] - }, - { - "user": "590467327095087095", - "game": "592976500802846750", - "start": "2022-05-03T09:33:07.823Z", - "end": "2022-05-03T13:11:41.418Z", - "events": [ - { - "start": "2022-05-03T09:33:07.823Z", - "end": "2022-05-03T10:45:59.021Z", - "state": "IDLE" - }, - { - "start": "2022-05-03T10:45:59.021Z", - "end": "2022-05-03T11:58:50.219Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T11:58:50.219Z", - "end": "2022-05-03T13:11:41.417Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "530454325214969866", - "start": "2022-06-29T11:35:20.740Z", - "end": "2022-06-29T12:15:22.618Z", - "events": [ - { - "start": "2022-06-29T11:35:20.740Z", - "end": "2022-06-29T11:48:41.366Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T11:48:41.366Z", - "end": "2022-06-29T12:02:01.992Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T12:02:01.992Z", - "end": "2022-06-29T12:15:22.618Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "182925797752958092", - "game": "553697181249437716", - "start": "2022-06-23T06:34:03.947Z", - "end": "2022-06-23T11:36:04.991Z", - "events": [ - { - "start": "2022-06-23T06:34:03.947Z", - "end": "2022-06-23T11:36:04.991Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "800318424708872602", - "game": "518088627234930688", - "start": "2022-06-03T07:53:51.461Z", - "end": "2022-06-03T13:21:21.297Z", - "events": [ - { - "start": "2022-06-03T07:53:51.461Z", - "end": "2022-06-03T13:21:21.297Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "658550407298256890", - "game": "576482762446602270", - "start": "2022-07-01T04:02:05.021Z", - "end": "2022-07-01T07:59:49.741Z", - "events": [ - { - "start": "2022-07-01T04:02:05.021Z", - "end": "2022-07-01T07:59:49.741Z", - "state": "IDLE" - } - ] - }, - { - "user": "881335427428668054", - "game": "542475118396309528", - "start": "2022-07-02T22:22:17.173Z", - "end": "2022-07-03T02:44:36.877Z", - "events": [ - { - "start": "2022-07-02T22:22:17.173Z", - "end": "2022-07-02T23:14:45.113Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T23:14:45.113Z", - "end": "2022-07-03T00:07:13.053Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T00:07:13.053Z", - "end": "2022-07-03T00:59:40.993Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-03T00:59:40.993Z", - "end": "2022-07-03T01:52:08.933Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T01:52:08.933Z", - "end": "2022-07-03T02:44:36.873Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "512789120234422301", - "start": "2022-07-11T21:10:30.784Z", - "end": "2022-07-12T04:05:54.236Z", - "events": [ - { - "start": "2022-07-11T21:10:30.784Z", - "end": "2022-07-11T22:54:21.647Z", - "state": "IDLE" - }, - { - "start": "2022-07-11T22:54:21.647Z", - "end": "2022-07-12T00:38:12.510Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T00:38:12.510Z", - "end": "2022-07-12T02:22:03.373Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T02:22:03.373Z", - "end": "2022-07-12T04:05:54.236Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "576482762446602270", - "start": "2022-05-22T21:21:40.562Z", - "end": "2022-05-22T22:15:16.083Z", - "events": [ - { - "start": "2022-05-22T21:21:40.562Z", - "end": "2022-05-22T22:15:16.083Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "517335360477493827", - "game": "530454325214969866", - "start": "2022-05-21T02:44:53.104Z", - "end": "2022-05-21T06:11:08.677Z", - "events": [ - { - "start": "2022-05-21T02:44:53.104Z", - "end": "2022-05-21T03:26:08.218Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T03:26:08.218Z", - "end": "2022-05-21T04:07:23.332Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T04:07:23.332Z", - "end": "2022-05-21T04:48:38.446Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T04:48:38.446Z", - "end": "2022-05-21T05:29:53.560Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T05:29:53.560Z", - "end": "2022-05-21T06:11:08.674Z", - "state": "IDLE" - } - ] - }, - { - "user": "881335427428668054", - "game": "530454325214969866", - "start": "2022-07-06T00:52:32.597Z", - "end": "2022-07-06T04:55:11.543Z", - "events": [ - { - "start": "2022-07-06T00:52:32.597Z", - "end": "2022-07-06T01:53:12.333Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T01:53:12.333Z", - "end": "2022-07-06T02:53:52.069Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T02:53:52.069Z", - "end": "2022-07-06T03:54:31.805Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T03:54:31.805Z", - "end": "2022-07-06T04:55:11.541Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "519644368735567873", - "start": "2022-07-07T19:45:29.389Z", - "end": "2022-07-08T01:07:37.042Z", - "events": [ - { - "start": "2022-07-07T19:45:29.389Z", - "end": "2022-07-07T21:32:51.940Z", - "state": "IDLE" - }, - { - "start": "2022-07-07T21:32:51.940Z", - "end": "2022-07-07T23:20:14.491Z", - "state": "IDLE" - }, - { - "start": "2022-07-07T23:20:14.491Z", - "end": "2022-07-08T01:07:37.042Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "572456126872944651", - "start": "2022-08-05T05:54:48.912Z", - "end": "2022-08-05T05:58:35.312Z", - "events": [ - { - "start": "2022-08-05T05:54:48.912Z", - "end": "2022-08-05T05:55:34.192Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T05:55:34.192Z", - "end": "2022-08-05T05:56:19.472Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T05:56:19.472Z", - "end": "2022-08-05T05:57:04.752Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T05:57:04.752Z", - "end": "2022-08-05T05:57:50.032Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T05:57:50.032Z", - "end": "2022-08-05T05:58:35.312Z", - "state": "IDLE" - } - ] - }, - { - "user": "800318424708872602", - "game": "560781100197216267", - "start": "2022-05-17T21:05:57.695Z", - "end": "2022-05-18T06:32:40.718Z", - "events": [ - { - "start": "2022-05-17T21:05:57.695Z", - "end": "2022-05-18T00:14:52.036Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-18T00:14:52.036Z", - "end": "2022-05-18T03:23:46.377Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T03:23:46.377Z", - "end": "2022-05-18T06:32:40.718Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "530454325214969866", - "start": "2022-05-25T21:00:58.455Z", - "end": "2022-05-26T06:35:06.731Z", - "events": [ - { - "start": "2022-05-25T21:00:58.455Z", - "end": "2022-05-26T01:48:02.593Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T01:48:02.593Z", - "end": "2022-05-26T06:35:06.731Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "318220875546522080", - "game": "356875221078245376", - "start": "2022-04-21T21:54:19.874Z", - "end": "2022-04-21T22:23:43.022Z", - "events": [ - { - "start": "2022-04-21T21:54:19.874Z", - "end": "2022-04-21T22:04:07.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T22:04:07.590Z", - "end": "2022-04-21T22:13:55.306Z", - "state": "IDLE" - }, - { - "start": "2022-04-21T22:13:55.306Z", - "end": "2022-04-21T22:23:43.022Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "535384357536399404", - "start": "2022-06-11T16:13:02.100Z", - "end": "2022-06-11T21:57:19.810Z", - "events": [ - { - "start": "2022-06-11T16:13:02.100Z", - "end": "2022-06-11T18:07:48.003Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T18:07:48.003Z", - "end": "2022-06-11T20:02:33.906Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-11T20:02:33.906Z", - "end": "2022-06-11T21:57:19.809Z", - "state": "IDLE" - } - ] - }, - { - "user": "424856688594618054", - "game": "520453007578628124", - "start": "2022-05-07T14:46:55.065Z", - "end": "2022-05-07T23:56:27.137Z", - "events": [ - { - "start": "2022-05-07T14:46:55.065Z", - "end": "2022-05-07T17:04:18.083Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-07T17:04:18.083Z", - "end": "2022-05-07T19:21:41.101Z", - "state": "IDLE" - }, - { - "start": "2022-05-07T19:21:41.101Z", - "end": "2022-05-07T21:39:04.119Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-07T21:39:04.119Z", - "end": "2022-05-07T23:56:27.137Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "356875221078245376", - "start": "2022-07-02T21:01:23.002Z", - "end": "2022-07-03T03:46:07.432Z", - "events": [ - { - "start": "2022-07-02T21:01:23.002Z", - "end": "2022-07-03T03:46:07.432Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "553697181249437716", - "start": "2022-05-24T13:31:44.435Z", - "end": "2022-05-24T18:44:14.025Z", - "events": [ - { - "start": "2022-05-24T13:31:44.435Z", - "end": "2022-05-24T14:34:14.353Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T14:34:14.353Z", - "end": "2022-05-24T15:36:44.271Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T15:36:44.271Z", - "end": "2022-05-24T16:39:14.189Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T16:39:14.189Z", - "end": "2022-05-24T17:41:44.107Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T17:41:44.107Z", - "end": "2022-05-24T18:44:14.025Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "535384357536399404", - "start": "2022-04-19T06:34:55.909Z", - "end": "2022-04-19T15:45:19.833Z", - "events": [ - { - "start": "2022-04-19T06:34:55.909Z", - "end": "2022-04-19T11:10:07.871Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T11:10:07.871Z", - "end": "2022-04-19T15:45:19.833Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "596421190780633864", - "game": "535384357536399404", - "start": "2022-04-30T16:40:11.490Z", - "end": "2022-04-30T23:59:22.234Z", - "events": [ - { - "start": "2022-04-30T16:40:11.490Z", - "end": "2022-04-30T23:59:22.234Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "872035310834814925", - "game": "592976500802846750", - "start": "2022-04-16T19:33:28.862Z", - "end": "2022-04-16T22:05:38.319Z", - "events": [ - { - "start": "2022-04-16T19:33:28.862Z", - "end": "2022-04-16T22:05:38.319Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "774637841058278398", - "game": "535869836748783616", - "start": "2022-05-01T14:37:22.966Z", - "end": "2022-05-01T19:29:09.590Z", - "events": [ - { - "start": "2022-05-01T14:37:22.966Z", - "end": "2022-05-01T15:50:19.622Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T15:50:19.622Z", - "end": "2022-05-01T17:03:16.278Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T17:03:16.278Z", - "end": "2022-05-01T18:16:12.934Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T18:16:12.934Z", - "end": "2022-05-01T19:29:09.590Z", - "state": "IDLE" - } - ] - }, - { - "user": "147480245458136084", - "game": "512789120234422301", - "start": "2022-06-03T21:54:47.324Z", - "end": "2022-06-04T07:13:03.986Z", - "events": [ - { - "start": "2022-06-03T21:54:47.324Z", - "end": "2022-06-04T01:00:52.878Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T01:00:52.878Z", - "end": "2022-06-04T04:06:58.432Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T04:06:58.432Z", - "end": "2022-06-04T07:13:03.986Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "535869836748783616", - "start": "2022-05-18T02:40:45.393Z", - "end": "2022-05-18T11:58:52.762Z", - "events": [ - { - "start": "2022-05-18T02:40:45.393Z", - "end": "2022-05-18T11:58:52.762Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "658550407298256890", - "game": "512789427462995988", - "start": "2022-06-01T17:32:36.753Z", - "end": "2022-06-02T00:57:11.917Z", - "events": [ - { - "start": "2022-06-01T17:32:36.753Z", - "end": "2022-06-02T00:57:11.917Z", - "state": "IDLE" - } - ] - }, - { - "user": "788818750251007268", - "game": "575412499399180288", - "start": "2022-05-24T00:02:20.464Z", - "end": "2022-05-24T04:09:59.103Z", - "events": [ - { - "start": "2022-05-24T00:02:20.464Z", - "end": "2022-05-24T01:04:15.123Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T01:04:15.123Z", - "end": "2022-05-24T02:06:09.782Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T02:06:09.782Z", - "end": "2022-05-24T03:08:04.441Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T03:08:04.441Z", - "end": "2022-05-24T04:09:59.100Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "356875221078245376", - "start": "2022-07-13T19:48:10.179Z", - "end": "2022-07-14T03:10:17.070Z", - "events": [ - { - "start": "2022-07-13T19:48:10.179Z", - "end": "2022-07-13T23:29:13.624Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T23:29:13.624Z", - "end": "2022-07-14T03:10:17.069Z", - "state": "IDLE" - } - ] - }, - { - "user": "568387317892070397", - "game": "549512435585908756", - "start": "2022-07-24T22:43:17.539Z", - "end": "2022-07-25T04:53:29.234Z", - "events": [ - { - "start": "2022-07-24T22:43:17.539Z", - "end": "2022-07-25T00:46:41.437Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-25T00:46:41.437Z", - "end": "2022-07-25T02:50:05.335Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T02:50:05.335Z", - "end": "2022-07-25T04:53:29.233Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "569253958967885828", - "start": "2022-07-06T14:03:27.317Z", - "end": "2022-07-06T23:06:47.224Z", - "events": [ - { - "start": "2022-07-06T14:03:27.317Z", - "end": "2022-07-06T17:04:33.952Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T17:04:33.952Z", - "end": "2022-07-06T20:05:40.587Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T20:05:40.587Z", - "end": "2022-07-06T23:06:47.222Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "512699108809637890", - "start": "2022-06-11T23:51:47.094Z", - "end": "2022-06-12T09:08:27.861Z", - "events": [ - { - "start": "2022-06-11T23:51:47.094Z", - "end": "2022-06-12T04:30:07.477Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T04:30:07.477Z", - "end": "2022-06-12T09:08:27.860Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "614380482620293151", - "start": "2022-07-23T17:28:58.593Z", - "end": "2022-07-23T21:06:39.580Z", - "events": [ - { - "start": "2022-07-23T17:28:58.593Z", - "end": "2022-07-23T18:41:32.255Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T18:41:32.255Z", - "end": "2022-07-23T19:54:05.917Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T19:54:05.917Z", - "end": "2022-07-23T21:06:39.579Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "518088627234930688", - "start": "2022-07-10T03:52:22.777Z", - "end": "2022-07-10T07:02:40.415Z", - "events": [ - { - "start": "2022-07-10T03:52:22.777Z", - "end": "2022-07-10T07:02:40.415Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "569008830701240340", - "start": "2022-06-14T06:34:58.202Z", - "end": "2022-06-14T09:29:21.997Z", - "events": [ - { - "start": "2022-06-14T06:34:58.202Z", - "end": "2022-06-14T09:29:21.997Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "385692164951394422", - "game": "512501896896970762", - "start": "2022-04-26T08:18:33.448Z", - "end": "2022-04-26T17:17:48.103Z", - "events": [ - { - "start": "2022-04-26T08:18:33.448Z", - "end": "2022-04-26T12:48:10.775Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-26T12:48:10.775Z", - "end": "2022-04-26T17:17:48.102Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "600708263053781983", - "game": "518088627234930688", - "start": "2022-06-04T05:05:58.267Z", - "end": "2022-06-04T07:18:56.617Z", - "events": [ - { - "start": "2022-06-04T05:05:58.267Z", - "end": "2022-06-04T06:12:27.442Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T06:12:27.442Z", - "end": "2022-06-04T07:18:56.617Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "528145079819436043", - "start": "2022-05-24T14:42:49.769Z", - "end": "2022-05-25T00:35:10.798Z", - "events": [ - { - "start": "2022-05-24T14:42:49.769Z", - "end": "2022-05-24T16:41:17.974Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T16:41:17.974Z", - "end": "2022-05-24T18:39:46.179Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T18:39:46.179Z", - "end": "2022-05-24T20:38:14.384Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T20:38:14.384Z", - "end": "2022-05-24T22:36:42.589Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T22:36:42.589Z", - "end": "2022-05-25T00:35:10.794Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302347517889336519", - "game": "597860020935327787", - "start": "2022-05-14T17:19:44.213Z", - "end": "2022-05-15T03:22:50.009Z", - "events": [ - { - "start": "2022-05-14T17:19:44.213Z", - "end": "2022-05-14T20:40:46.145Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T20:40:46.145Z", - "end": "2022-05-15T00:01:48.077Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T00:01:48.077Z", - "end": "2022-05-15T03:22:50.009Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "590467327095087095", - "game": "576482762446602270", - "start": "2022-06-06T09:22:33.418Z", - "end": "2022-06-06T16:37:06.449Z", - "events": [ - { - "start": "2022-06-06T09:22:33.418Z", - "end": "2022-06-06T10:49:28.024Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T10:49:28.024Z", - "end": "2022-06-06T12:16:22.630Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T12:16:22.630Z", - "end": "2022-06-06T13:43:17.236Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T13:43:17.236Z", - "end": "2022-06-06T15:10:11.842Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T15:10:11.842Z", - "end": "2022-06-06T16:37:06.448Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "550277544025522176", - "start": "2022-06-25T00:20:38.017Z", - "end": "2022-06-25T01:44:27.708Z", - "events": [ - { - "start": "2022-06-25T00:20:38.017Z", - "end": "2022-06-25T00:41:35.439Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T00:41:35.439Z", - "end": "2022-06-25T01:02:32.861Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T01:02:32.861Z", - "end": "2022-06-25T01:23:30.283Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T01:23:30.283Z", - "end": "2022-06-25T01:44:27.705Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "931211630078779300", - "game": "597588168178663434", - "start": "2022-06-21T16:49:31.704Z", - "end": "2022-06-21T19:36:57.348Z", - "events": [ - { - "start": "2022-06-21T16:49:31.704Z", - "end": "2022-06-21T19:36:57.348Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "530539422724200800", - "game": "526489929631531009", - "start": "2022-05-07T20:32:58.623Z", - "end": "2022-05-08T02:56:02.397Z", - "events": [ - { - "start": "2022-05-07T20:32:58.623Z", - "end": "2022-05-07T23:44:30.510Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-07T23:44:30.510Z", - "end": "2022-05-08T02:56:02.397Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "558547388583772201", - "start": "2022-06-23T19:45:42.933Z", - "end": "2022-06-24T05:04:45.547Z", - "events": [ - { - "start": "2022-06-23T19:45:42.933Z", - "end": "2022-06-24T00:25:14.240Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T00:25:14.240Z", - "end": "2022-06-24T05:04:45.547Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "569008830701240340", - "start": "2022-04-22T06:14:44.722Z", - "end": "2022-04-22T15:54:47.769Z", - "events": [ - { - "start": "2022-04-22T06:14:44.722Z", - "end": "2022-04-22T11:04:46.245Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T11:04:46.245Z", - "end": "2022-04-22T15:54:47.768Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "512789427462995988", - "start": "2022-07-25T06:49:14.581Z", - "end": "2022-07-25T12:25:07.941Z", - "events": [ - { - "start": "2022-07-25T06:49:14.581Z", - "end": "2022-07-25T08:13:12.921Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-25T08:13:12.921Z", - "end": "2022-07-25T09:37:11.261Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T09:37:11.261Z", - "end": "2022-07-25T11:01:09.601Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-25T11:01:09.601Z", - "end": "2022-07-25T12:25:07.941Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "576482762446602270", - "start": "2022-07-19T12:46:07.227Z", - "end": "2022-07-19T15:29:15.151Z", - "events": [ - { - "start": "2022-07-19T12:46:07.227Z", - "end": "2022-07-19T13:18:44.811Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T13:18:44.811Z", - "end": "2022-07-19T13:51:22.395Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T13:51:22.395Z", - "end": "2022-07-19T14:23:59.979Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T14:23:59.979Z", - "end": "2022-07-19T14:56:37.563Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T14:56:37.563Z", - "end": "2022-07-19T15:29:15.147Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "576482762446602270", - "start": "2022-06-16T09:35:16.875Z", - "end": "2022-06-16T19:16:31.290Z", - "events": [ - { - "start": "2022-06-16T09:35:16.875Z", - "end": "2022-06-16T11:31:31.758Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-16T11:31:31.758Z", - "end": "2022-06-16T13:27:46.641Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T13:27:46.641Z", - "end": "2022-06-16T15:24:01.524Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T15:24:01.524Z", - "end": "2022-06-16T17:20:16.407Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T17:20:16.407Z", - "end": "2022-06-16T19:16:31.290Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "636935635446628860", - "game": "512498684211232768", - "start": "2022-05-11T20:39:58.324Z", - "end": "2022-05-11T21:31:51.457Z", - "events": [ - { - "start": "2022-05-11T20:39:58.324Z", - "end": "2022-05-11T21:31:51.457Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "535384357536399404", - "start": "2022-05-04T08:56:09.867Z", - "end": "2022-05-04T17:07:23.468Z", - "events": [ - { - "start": "2022-05-04T08:56:09.867Z", - "end": "2022-05-04T13:01:46.667Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T13:01:46.667Z", - "end": "2022-05-04T17:07:23.467Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "512699108809637890", - "start": "2022-06-13T13:26:20.287Z", - "end": "2022-06-13T17:21:15.246Z", - "events": [ - { - "start": "2022-06-13T13:26:20.287Z", - "end": "2022-06-13T17:21:15.246Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "519644267212177418", - "start": "2022-06-19T01:35:43.349Z", - "end": "2022-06-19T05:22:36.162Z", - "events": [ - { - "start": "2022-06-19T01:35:43.349Z", - "end": "2022-06-19T05:22:36.162Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "523154344187789312", - "start": "2022-07-12T13:44:24.460Z", - "end": "2022-07-12T20:22:17.777Z", - "events": [ - { - "start": "2022-07-12T13:44:24.460Z", - "end": "2022-07-12T15:57:02.232Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T15:57:02.232Z", - "end": "2022-07-12T18:09:40.004Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T18:09:40.004Z", - "end": "2022-07-12T20:22:17.776Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "520453007578628124", - "start": "2022-05-30T13:30:10.455Z", - "end": "2022-05-30T23:08:12.668Z", - "events": [ - { - "start": "2022-05-30T13:30:10.455Z", - "end": "2022-05-30T18:19:11.561Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T18:19:11.561Z", - "end": "2022-05-30T23:08:12.667Z", - "state": "IDLE" - } - ] - }, - { - "user": "841397740041930984", - "game": "614380482620293151", - "start": "2022-05-28T15:11:19.193Z", - "end": "2022-05-28T19:51:57.652Z", - "events": [ - { - "start": "2022-05-28T15:11:19.193Z", - "end": "2022-05-28T16:44:52.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T16:44:52.012Z", - "end": "2022-05-28T18:18:24.831Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T18:18:24.831Z", - "end": "2022-05-28T19:51:57.650Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "700136079562375258", - "start": "2022-06-20T21:25:41.357Z", - "end": "2022-06-21T06:55:51.697Z", - "events": [ - { - "start": "2022-06-20T21:25:41.357Z", - "end": "2022-06-20T23:19:43.425Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T23:19:43.425Z", - "end": "2022-06-21T01:13:45.493Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T01:13:45.493Z", - "end": "2022-06-21T03:07:47.561Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T03:07:47.561Z", - "end": "2022-06-21T05:01:49.629Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T05:01:49.629Z", - "end": "2022-06-21T06:55:51.697Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "762163239408560283", - "game": "512699108809637890", - "start": "2022-05-29T07:12:48.630Z", - "end": "2022-05-29T10:15:38.088Z", - "events": [ - { - "start": "2022-05-29T07:12:48.630Z", - "end": "2022-05-29T07:49:22.521Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T07:49:22.521Z", - "end": "2022-05-29T08:25:56.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T08:25:56.412Z", - "end": "2022-05-29T09:02:30.303Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T09:02:30.303Z", - "end": "2022-05-29T09:39:04.194Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T09:39:04.194Z", - "end": "2022-05-29T10:15:38.085Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "540120593576493057", - "start": "2022-05-13T17:29:22.668Z", - "end": "2022-05-13T22:29:49.822Z", - "events": [ - { - "start": "2022-05-13T17:29:22.668Z", - "end": "2022-05-13T18:29:28.098Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-13T18:29:28.098Z", - "end": "2022-05-13T19:29:33.528Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-13T19:29:33.528Z", - "end": "2022-05-13T20:29:38.958Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-13T20:29:38.958Z", - "end": "2022-05-13T21:29:44.388Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-13T21:29:44.388Z", - "end": "2022-05-13T22:29:49.818Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "575412499399180288", - "start": "2022-05-26T23:31:42.938Z", - "end": "2022-05-27T09:15:39.891Z", - "events": [ - { - "start": "2022-05-26T23:31:42.938Z", - "end": "2022-05-27T01:57:42.176Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T01:57:42.176Z", - "end": "2022-05-27T04:23:41.414Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T04:23:41.414Z", - "end": "2022-05-27T06:49:40.652Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-27T06:49:40.652Z", - "end": "2022-05-27T09:15:39.890Z", - "state": "IDLE" - } - ] - }, - { - "user": "517335360477493827", - "game": "520453007578628124", - "start": "2022-05-04T15:29:02.997Z", - "end": "2022-05-04T21:49:15.420Z", - "events": [ - { - "start": "2022-05-04T15:29:02.997Z", - "end": "2022-05-04T18:39:09.208Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-04T18:39:09.208Z", - "end": "2022-05-04T21:49:15.419Z", - "state": "IDLE" - } - ] - }, - { - "user": "788818750251007268", - "game": "549512435585908756", - "start": "2022-05-24T18:07:15.257Z", - "end": "2022-05-24T21:27:02.903Z", - "events": [ - { - "start": "2022-05-24T18:07:15.257Z", - "end": "2022-05-24T18:57:12.168Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T18:57:12.168Z", - "end": "2022-05-24T19:47:09.079Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T19:47:09.079Z", - "end": "2022-05-24T20:37:05.990Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T20:37:05.990Z", - "end": "2022-05-24T21:27:02.901Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "123137660023366590", - "game": "592976500802846750", - "start": "2022-07-16T18:54:44.917Z", - "end": "2022-07-17T04:01:14.907Z", - "events": [ - { - "start": "2022-07-16T18:54:44.917Z", - "end": "2022-07-16T21:11:22.414Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-16T21:11:22.414Z", - "end": "2022-07-16T23:27:59.911Z", - "state": "IDLE" - }, - { - "start": "2022-07-16T23:27:59.911Z", - "end": "2022-07-17T01:44:37.408Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T01:44:37.408Z", - "end": "2022-07-17T04:01:14.905Z", - "state": "IDLE" - } - ] - }, - { - "user": "774637841058278398", - "game": "523154344187789312", - "start": "2022-06-01T05:39:11.882Z", - "end": "2022-06-01T08:58:40.019Z", - "events": [ - { - "start": "2022-06-01T05:39:11.882Z", - "end": "2022-06-01T07:18:55.950Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T07:18:55.950Z", - "end": "2022-06-01T08:58:40.018Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "512498684211232768", - "start": "2022-07-07T22:18:09.229Z", - "end": "2022-07-07T23:07:03.767Z", - "events": [ - { - "start": "2022-07-07T22:18:09.229Z", - "end": "2022-07-07T23:07:03.767Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "494763633796983404", - "game": "554573307161214977", - "start": "2022-04-28T08:43:48.064Z", - "end": "2022-04-28T13:10:39.037Z", - "events": [ - { - "start": "2022-04-28T08:43:48.064Z", - "end": "2022-04-28T13:10:39.037Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "126384926926158511", - "game": "554573307161214977", - "start": "2022-05-18T15:47:10.600Z", - "end": "2022-05-18T19:38:23.931Z", - "events": [ - { - "start": "2022-05-18T15:47:10.600Z", - "end": "2022-05-18T17:42:47.265Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T17:42:47.265Z", - "end": "2022-05-18T19:38:23.930Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "530454325214969866", - "start": "2022-07-26T10:36:01.746Z", - "end": "2022-07-26T18:56:21.064Z", - "events": [ - { - "start": "2022-07-26T10:36:01.746Z", - "end": "2022-07-26T18:56:21.064Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "565341641427124244", - "start": "2022-07-22T07:25:50.641Z", - "end": "2022-07-22T17:06:26.777Z", - "events": [ - { - "start": "2022-07-22T07:25:50.641Z", - "end": "2022-07-22T09:21:57.868Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T09:21:57.868Z", - "end": "2022-07-22T11:18:05.095Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T11:18:05.095Z", - "end": "2022-07-22T13:14:12.322Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T13:14:12.322Z", - "end": "2022-07-22T15:10:19.549Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T15:10:19.549Z", - "end": "2022-07-22T17:06:26.776Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "510690749854514547", - "game": "597860020935327787", - "start": "2022-07-13T20:42:25.877Z", - "end": "2022-07-14T01:28:04.971Z", - "events": [ - { - "start": "2022-07-13T20:42:25.877Z", - "end": "2022-07-13T21:53:50.650Z", - "state": "IDLE" - }, - { - "start": "2022-07-13T21:53:50.650Z", - "end": "2022-07-13T23:05:15.423Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-13T23:05:15.423Z", - "end": "2022-07-14T00:16:40.196Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-14T00:16:40.196Z", - "end": "2022-07-14T01:28:04.969Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "360264570671216445", - "game": "569008830701240340", - "start": "2022-06-26T03:52:43.069Z", - "end": "2022-06-26T05:42:00.770Z", - "events": [ - { - "start": "2022-06-26T03:52:43.069Z", - "end": "2022-06-26T04:14:34.609Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-26T04:14:34.609Z", - "end": "2022-06-26T04:36:26.149Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T04:36:26.149Z", - "end": "2022-06-26T04:58:17.689Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T04:58:17.689Z", - "end": "2022-06-26T05:20:09.229Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T05:20:09.229Z", - "end": "2022-06-26T05:42:00.769Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "518088627234930688", - "start": "2022-08-03T21:23:32.471Z", - "end": "2022-08-04T01:20:31.872Z", - "events": [ - { - "start": "2022-08-03T21:23:32.471Z", - "end": "2022-08-03T22:22:47.321Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T22:22:47.321Z", - "end": "2022-08-03T23:22:02.171Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T23:22:02.171Z", - "end": "2022-08-04T00:21:17.021Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T00:21:17.021Z", - "end": "2022-08-04T01:20:31.871Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "525940629729163286", - "game": "597860020935327787", - "start": "2022-05-20T08:45:11.523Z", - "end": "2022-05-20T15:14:43.416Z", - "events": [ - { - "start": "2022-05-20T08:45:11.523Z", - "end": "2022-05-20T10:55:02.154Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-20T10:55:02.154Z", - "end": "2022-05-20T13:04:52.785Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T13:04:52.785Z", - "end": "2022-05-20T15:14:43.416Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302714757313826277", - "game": "597588168178663434", - "start": "2022-06-24T17:19:34.323Z", - "end": "2022-06-24T18:48:19.268Z", - "events": [ - { - "start": "2022-06-24T17:19:34.323Z", - "end": "2022-06-24T18:48:19.268Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302679892350666678", - "game": "512498684211232768", - "start": "2022-04-26T12:26:36.256Z", - "end": "2022-04-26T13:45:50.070Z", - "events": [ - { - "start": "2022-04-26T12:26:36.256Z", - "end": "2022-04-26T12:46:24.709Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T12:46:24.709Z", - "end": "2022-04-26T13:06:13.162Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T13:06:13.162Z", - "end": "2022-04-26T13:26:01.615Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T13:26:01.615Z", - "end": "2022-04-26T13:45:50.068Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "636935635446628860", - "game": "576482762446602270", - "start": "2022-05-18T03:18:00.575Z", - "end": "2022-05-18T11:12:32.656Z", - "events": [ - { - "start": "2022-05-18T03:18:00.575Z", - "end": "2022-05-18T04:52:54.991Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-18T04:52:54.991Z", - "end": "2022-05-18T06:27:49.407Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T06:27:49.407Z", - "end": "2022-05-18T08:02:43.823Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T08:02:43.823Z", - "end": "2022-05-18T09:37:38.239Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T09:37:38.239Z", - "end": "2022-05-18T11:12:32.655Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "518088627234930688", - "start": "2022-08-02T04:28:33.547Z", - "end": "2022-08-02T10:19:34.288Z", - "events": [ - { - "start": "2022-08-02T04:28:33.547Z", - "end": "2022-08-02T07:24:03.917Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T07:24:03.917Z", - "end": "2022-08-02T10:19:34.287Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "540120593576493057", - "start": "2022-06-25T16:35:47.660Z", - "end": "2022-06-25T23:17:26.041Z", - "events": [ - { - "start": "2022-06-25T16:35:47.660Z", - "end": "2022-06-25T17:56:07.336Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T17:56:07.336Z", - "end": "2022-06-25T19:16:27.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T19:16:27.012Z", - "end": "2022-06-25T20:36:46.688Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T20:36:46.688Z", - "end": "2022-06-25T21:57:06.364Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T21:57:06.364Z", - "end": "2022-06-25T23:17:26.040Z", - "state": "IDLE" - } - ] - }, - { - "user": "495724335127362694", - "game": "553697181249437716", - "start": "2022-05-09T16:19:57.247Z", - "end": "2022-05-09T17:01:07.628Z", - "events": [ - { - "start": "2022-05-09T16:19:57.247Z", - "end": "2022-05-09T16:30:14.842Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T16:30:14.842Z", - "end": "2022-05-09T16:40:32.437Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T16:40:32.437Z", - "end": "2022-05-09T16:50:50.032Z", - "state": "IDLE" - }, - { - "start": "2022-05-09T16:50:50.032Z", - "end": "2022-05-09T17:01:07.627Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "731522398939920723", - "game": "542474758835535872", - "start": "2022-06-28T09:35:20.855Z", - "end": "2022-06-28T14:13:50.417Z", - "events": [ - { - "start": "2022-06-28T09:35:20.855Z", - "end": "2022-06-28T10:44:58.245Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T10:44:58.245Z", - "end": "2022-06-28T11:54:35.635Z", - "state": "IDLE" - }, - { - "start": "2022-06-28T11:54:35.635Z", - "end": "2022-06-28T13:04:13.025Z", - "state": "IDLE" - }, - { - "start": "2022-06-28T13:04:13.025Z", - "end": "2022-06-28T14:13:50.415Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "495724335127362694", - "game": "512699108809637890", - "start": "2022-08-02T18:32:54.672Z", - "end": "2022-08-02T18:34:05.613Z", - "events": [ - { - "start": "2022-08-02T18:32:54.672Z", - "end": "2022-08-02T18:33:18.319Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T18:33:18.319Z", - "end": "2022-08-02T18:33:41.966Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T18:33:41.966Z", - "end": "2022-08-02T18:34:05.613Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "565341641427124244", - "start": "2022-06-09T19:19:17.671Z", - "end": "2022-06-10T03:18:51.879Z", - "events": [ - { - "start": "2022-06-09T19:19:17.671Z", - "end": "2022-06-09T21:19:11.223Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-09T21:19:11.223Z", - "end": "2022-06-09T23:19:04.775Z", - "state": "IDLE" - }, - { - "start": "2022-06-09T23:19:04.775Z", - "end": "2022-06-10T01:18:58.327Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-10T01:18:58.327Z", - "end": "2022-06-10T03:18:51.879Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "575412499399180288", - "start": "2022-07-17T12:22:20.687Z", - "end": "2022-07-17T16:34:35.357Z", - "events": [ - { - "start": "2022-07-17T12:22:20.687Z", - "end": "2022-07-17T13:25:24.354Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T13:25:24.354Z", - "end": "2022-07-17T14:28:28.021Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-17T14:28:28.021Z", - "end": "2022-07-17T15:31:31.688Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-17T15:31:31.688Z", - "end": "2022-07-17T16:34:35.355Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "541104083732114799", - "game": "512789343157485602", - "start": "2022-06-01T01:03:40.832Z", - "end": "2022-06-01T04:04:57.178Z", - "events": [ - { - "start": "2022-06-01T01:03:40.832Z", - "end": "2022-06-01T02:04:06.280Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T02:04:06.280Z", - "end": "2022-06-01T03:04:31.728Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-01T03:04:31.728Z", - "end": "2022-06-01T04:04:57.176Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "713444659295913502", - "game": "614448244260339712", - "start": "2022-04-28T01:09:54.771Z", - "end": "2022-04-28T02:28:18.745Z", - "events": [ - { - "start": "2022-04-28T01:09:54.771Z", - "end": "2022-04-28T01:25:35.565Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T01:25:35.565Z", - "end": "2022-04-28T01:41:16.359Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T01:41:16.359Z", - "end": "2022-04-28T01:56:57.153Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T01:56:57.153Z", - "end": "2022-04-28T02:12:37.947Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-28T02:12:37.947Z", - "end": "2022-04-28T02:28:18.741Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "553697181249437716", - "start": "2022-05-12T21:39:52.310Z", - "end": "2022-05-13T00:05:30.066Z", - "events": [ - { - "start": "2022-05-12T21:39:52.310Z", - "end": "2022-05-13T00:05:30.066Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "430732724825949756", - "game": "554921822626381879", - "start": "2022-04-14T00:50:06.509Z", - "end": "2022-04-14T02:32:10.715Z", - "events": [ - { - "start": "2022-04-14T00:50:06.509Z", - "end": "2022-04-14T01:10:31.350Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T01:10:31.350Z", - "end": "2022-04-14T01:30:56.191Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T01:30:56.191Z", - "end": "2022-04-14T01:51:21.032Z", - "state": "IDLE" - }, - { - "start": "2022-04-14T01:51:21.032Z", - "end": "2022-04-14T02:11:45.873Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T02:11:45.873Z", - "end": "2022-04-14T02:32:10.714Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "576482762446602270", - "start": "2022-07-21T04:11:13.700Z", - "end": "2022-07-21T10:55:32.531Z", - "events": [ - { - "start": "2022-07-21T04:11:13.700Z", - "end": "2022-07-21T10:55:32.531Z", - "state": "IDLE" - } - ] - }, - { - "user": "302714757313826277", - "game": "520453007578628124", - "start": "2022-08-06T15:54:21.630Z", - "end": "2022-08-06T17:31:44.696Z", - "events": [ - { - "start": "2022-08-06T15:54:21.630Z", - "end": "2022-08-06T16:43:03.163Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T16:43:03.163Z", - "end": "2022-08-06T17:31:44.696Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "900234800332446962", - "game": "588739017718366208", - "start": "2022-06-06T09:52:50.641Z", - "end": "2022-06-06T15:37:45.149Z", - "events": [ - { - "start": "2022-06-06T09:52:50.641Z", - "end": "2022-06-06T15:37:45.149Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "264503060524837708", - "game": "508057374875975682", - "start": "2022-04-17T14:41:50.052Z", - "end": "2022-04-17T16:18:41.991Z", - "events": [ - { - "start": "2022-04-17T14:41:50.052Z", - "end": "2022-04-17T15:14:07.365Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T15:14:07.365Z", - "end": "2022-04-17T15:46:24.678Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T15:46:24.678Z", - "end": "2022-04-17T16:18:41.991Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "268139232276871676", - "game": "550277544025522176", - "start": "2022-05-08T00:47:11.663Z", - "end": "2022-05-08T03:52:00.696Z", - "events": [ - { - "start": "2022-05-08T00:47:11.663Z", - "end": "2022-05-08T02:19:36.179Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T02:19:36.179Z", - "end": "2022-05-08T03:52:00.695Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "623295654897148670", - "game": "614380482620293151", - "start": "2022-07-17T12:08:00.459Z", - "end": "2022-07-17T16:05:29.437Z", - "events": [ - { - "start": "2022-07-17T12:08:00.459Z", - "end": "2022-07-17T14:06:44.948Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T14:06:44.948Z", - "end": "2022-07-17T16:05:29.437Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "715446191320920764", - "game": "558547388583772201", - "start": "2022-05-21T02:28:56.833Z", - "end": "2022-05-21T03:16:16.034Z", - "events": [ - { - "start": "2022-05-21T02:28:56.833Z", - "end": "2022-05-21T02:40:46.633Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T02:40:46.633Z", - "end": "2022-05-21T02:52:36.433Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T02:52:36.433Z", - "end": "2022-05-21T03:04:26.233Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T03:04:26.233Z", - "end": "2022-05-21T03:16:16.033Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "198010595767135394", - "game": "542474758835535872", - "start": "2022-06-15T04:36:05.509Z", - "end": "2022-06-15T08:50:02.391Z", - "events": [ - { - "start": "2022-06-15T04:36:05.509Z", - "end": "2022-06-15T06:00:44.469Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T06:00:44.469Z", - "end": "2022-06-15T07:25:23.429Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T07:25:23.429Z", - "end": "2022-06-15T08:50:02.389Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "841397740041930984", - "game": "520453007578628124", - "start": "2022-07-22T05:23:59.446Z", - "end": "2022-07-22T12:32:10.041Z", - "events": [ - { - "start": "2022-07-22T05:23:59.446Z", - "end": "2022-07-22T12:32:10.041Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "597588168178663434", - "start": "2022-07-05T11:05:17.304Z", - "end": "2022-07-05T13:18:19.122Z", - "events": [ - { - "start": "2022-07-05T11:05:17.304Z", - "end": "2022-07-05T11:49:37.910Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-05T11:49:37.910Z", - "end": "2022-07-05T12:33:58.516Z", - "state": "IDLE" - }, - { - "start": "2022-07-05T12:33:58.516Z", - "end": "2022-07-05T13:18:19.122Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "554921822626381879", - "start": "2022-05-03T16:40:51.956Z", - "end": "2022-05-03T21:17:40.326Z", - "events": [ - { - "start": "2022-05-03T16:40:51.956Z", - "end": "2022-05-03T17:50:04.048Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T17:50:04.048Z", - "end": "2022-05-03T18:59:16.140Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T18:59:16.140Z", - "end": "2022-05-03T20:08:28.232Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-03T20:08:28.232Z", - "end": "2022-05-03T21:17:40.324Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "268139232276871676", - "game": "520462578061803588", - "start": "2022-04-21T08:04:42.589Z", - "end": "2022-04-21T11:59:07.553Z", - "events": [ - { - "start": "2022-04-21T08:04:42.589Z", - "end": "2022-04-21T11:59:07.553Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "614380482620293151", - "start": "2022-05-17T19:13:19.234Z", - "end": "2022-05-18T04:30:26.819Z", - "events": [ - { - "start": "2022-05-17T19:13:19.234Z", - "end": "2022-05-17T21:32:36.130Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T21:32:36.130Z", - "end": "2022-05-17T23:51:53.026Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-17T23:51:53.026Z", - "end": "2022-05-18T02:11:09.922Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T02:11:09.922Z", - "end": "2022-05-18T04:30:26.818Z", - "state": "IDLE" - } - ] - }, - { - "user": "565021137482980984", - "game": "550277544025522176", - "start": "2022-05-04T04:09:54.439Z", - "end": "2022-05-04T10:54:54.806Z", - "events": [ - { - "start": "2022-05-04T04:09:54.439Z", - "end": "2022-05-04T05:30:54.512Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T05:30:54.512Z", - "end": "2022-05-04T06:51:54.585Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T06:51:54.585Z", - "end": "2022-05-04T08:12:54.658Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T08:12:54.658Z", - "end": "2022-05-04T09:33:54.731Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T09:33:54.731Z", - "end": "2022-05-04T10:54:54.804Z", - "state": "IDLE" - } - ] - }, - { - "user": "565021137482980984", - "game": "558547388583772201", - "start": "2022-06-21T22:28:12.330Z", - "end": "2022-06-22T07:27:53.121Z", - "events": [ - { - "start": "2022-06-21T22:28:12.330Z", - "end": "2022-06-22T01:28:05.927Z", - "state": "IDLE" - }, - { - "start": "2022-06-22T01:28:05.927Z", - "end": "2022-06-22T04:27:59.524Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T04:27:59.524Z", - "end": "2022-06-22T07:27:53.121Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "541104083732114799", - "game": "550277544025522176", - "start": "2022-06-04T13:57:43.523Z", - "end": "2022-06-04T21:36:47.414Z", - "events": [ - { - "start": "2022-06-04T13:57:43.523Z", - "end": "2022-06-04T15:52:29.495Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T15:52:29.495Z", - "end": "2022-06-04T17:47:15.467Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T17:47:15.467Z", - "end": "2022-06-04T19:42:01.439Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T19:42:01.439Z", - "end": "2022-06-04T21:36:47.411Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "569253958967885828", - "start": "2022-07-02T10:09:32.376Z", - "end": "2022-07-02T14:57:39.108Z", - "events": [ - { - "start": "2022-07-02T10:09:32.376Z", - "end": "2022-07-02T11:45:34.620Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T11:45:34.620Z", - "end": "2022-07-02T13:21:36.864Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T13:21:36.864Z", - "end": "2022-07-02T14:57:39.108Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "542075586886107149", - "start": "2022-05-30T02:55:17.658Z", - "end": "2022-05-30T06:19:16.997Z", - "events": [ - { - "start": "2022-05-30T02:55:17.658Z", - "end": "2022-05-30T03:36:05.525Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T03:36:05.525Z", - "end": "2022-05-30T04:16:53.392Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T04:16:53.392Z", - "end": "2022-05-30T04:57:41.259Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T04:57:41.259Z", - "end": "2022-05-30T05:38:29.126Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T05:38:29.126Z", - "end": "2022-05-30T06:19:16.993Z", - "state": "IDLE" - } - ] - }, - { - "user": "725502702868293700", - "game": "535869836748783616", - "start": "2022-06-30T00:39:15.359Z", - "end": "2022-06-30T01:48:36.741Z", - "events": [ - { - "start": "2022-06-30T00:39:15.359Z", - "end": "2022-06-30T01:48:36.741Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "519644368735567873", - "start": "2022-04-30T17:06:54.937Z", - "end": "2022-04-30T21:42:32.024Z", - "events": [ - { - "start": "2022-04-30T17:06:54.937Z", - "end": "2022-04-30T21:42:32.024Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302714757313826277", - "game": "512498684211232768", - "start": "2022-07-10T09:14:04.061Z", - "end": "2022-07-10T15:26:04.246Z", - "events": [ - { - "start": "2022-07-10T09:14:04.061Z", - "end": "2022-07-10T10:28:28.098Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T10:28:28.098Z", - "end": "2022-07-10T11:42:52.135Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T11:42:52.135Z", - "end": "2022-07-10T12:57:16.172Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-10T12:57:16.172Z", - "end": "2022-07-10T14:11:40.209Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T14:11:40.209Z", - "end": "2022-07-10T15:26:04.246Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "553697181249437716", - "start": "2022-05-24T18:29:01.184Z", - "end": "2022-05-24T22:45:52.940Z", - "events": [ - { - "start": "2022-05-24T18:29:01.184Z", - "end": "2022-05-24T22:45:52.940Z", - "state": "IDLE" - } - ] - }, - { - "user": "268139232276871676", - "game": "511619499053678668", - "start": "2022-05-24T06:42:09.475Z", - "end": "2022-05-24T10:50:03.598Z", - "events": [ - { - "start": "2022-05-24T06:42:09.475Z", - "end": "2022-05-24T08:04:47.516Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T08:04:47.516Z", - "end": "2022-05-24T09:27:25.557Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T09:27:25.557Z", - "end": "2022-05-24T10:50:03.598Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "535384357536399404", - "start": "2022-04-17T07:11:41.586Z", - "end": "2022-04-17T10:36:59.896Z", - "events": [ - { - "start": "2022-04-17T07:11:41.586Z", - "end": "2022-04-17T08:20:07.689Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T08:20:07.689Z", - "end": "2022-04-17T09:28:33.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T09:28:33.792Z", - "end": "2022-04-17T10:36:59.895Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "600708263053781983", - "game": "614380482620293151", - "start": "2022-06-13T08:31:24.486Z", - "end": "2022-06-13T17:10:05.484Z", - "events": [ - { - "start": "2022-06-13T08:31:24.486Z", - "end": "2022-06-13T17:10:05.484Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "519644267212177418", - "start": "2022-06-17T14:57:33.914Z", - "end": "2022-06-17T17:04:31.990Z", - "events": [ - { - "start": "2022-06-17T14:57:33.914Z", - "end": "2022-06-17T17:04:31.990Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "356875221078245376", - "start": "2022-08-01T14:59:50.962Z", - "end": "2022-08-01T17:26:15.766Z", - "events": [ - { - "start": "2022-08-01T14:59:50.962Z", - "end": "2022-08-01T15:36:27.163Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T15:36:27.163Z", - "end": "2022-08-01T16:13:03.364Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T16:13:03.364Z", - "end": "2022-08-01T16:49:39.565Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-01T16:49:39.565Z", - "end": "2022-08-01T17:26:15.766Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "608700383891121851", - "game": "554573307161214977", - "start": "2022-07-23T19:37:56.758Z", - "end": "2022-07-24T05:12:00.806Z", - "events": [ - { - "start": "2022-07-23T19:37:56.758Z", - "end": "2022-07-24T00:24:58.782Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-24T00:24:58.782Z", - "end": "2022-07-24T05:12:00.806Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "526489929631531009", - "start": "2022-07-20T02:02:37.698Z", - "end": "2022-07-20T07:49:20.876Z", - "events": [ - { - "start": "2022-07-20T02:02:37.698Z", - "end": "2022-07-20T03:29:18.492Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T03:29:18.492Z", - "end": "2022-07-20T04:55:59.286Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T04:55:59.286Z", - "end": "2022-07-20T06:22:40.080Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T06:22:40.080Z", - "end": "2022-07-20T07:49:20.874Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "264503060524837708", - "game": "518088627234930688", - "start": "2022-06-16T08:28:52.388Z", - "end": "2022-06-16T15:02:40.735Z", - "events": [ - { - "start": "2022-06-16T08:28:52.388Z", - "end": "2022-06-16T15:02:40.735Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "576482762446602270", - "start": "2022-06-26T16:01:01.017Z", - "end": "2022-06-26T23:59:58.714Z", - "events": [ - { - "start": "2022-06-26T16:01:01.017Z", - "end": "2022-06-26T18:00:45.441Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T18:00:45.441Z", - "end": "2022-06-26T20:00:29.865Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T20:00:29.865Z", - "end": "2022-06-26T22:00:14.289Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T22:00:14.289Z", - "end": "2022-06-26T23:59:58.713Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "520462578061803588", - "start": "2022-05-03T16:02:28.429Z", - "end": "2022-05-03T16:18:14.827Z", - "events": [ - { - "start": "2022-05-03T16:02:28.429Z", - "end": "2022-05-03T16:05:37.708Z", - "state": "IDLE" - }, - { - "start": "2022-05-03T16:05:37.708Z", - "end": "2022-05-03T16:08:46.987Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T16:08:46.987Z", - "end": "2022-05-03T16:11:56.266Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T16:11:56.266Z", - "end": "2022-05-03T16:15:05.545Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T16:15:05.545Z", - "end": "2022-05-03T16:18:14.824Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "715446191320920764", - "game": "614380482620293151", - "start": "2022-05-31T19:48:20.053Z", - "end": "2022-06-01T05:12:22.823Z", - "events": [ - { - "start": "2022-05-31T19:48:20.053Z", - "end": "2022-05-31T21:41:08.607Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T21:41:08.607Z", - "end": "2022-05-31T23:33:57.161Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T23:33:57.161Z", - "end": "2022-06-01T01:26:45.715Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T01:26:45.715Z", - "end": "2022-06-01T03:19:34.269Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T03:19:34.269Z", - "end": "2022-06-01T05:12:22.823Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "958598056500699208", - "game": "512699108809637890", - "start": "2022-04-27T14:49:53.454Z", - "end": "2022-04-27T18:42:35.662Z", - "events": [ - { - "start": "2022-04-27T14:49:53.454Z", - "end": "2022-04-27T18:42:35.662Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "453350270016457959", - "game": "550277544025522176", - "start": "2022-07-19T06:32:33.464Z", - "end": "2022-07-19T09:08:44.041Z", - "events": [ - { - "start": "2022-07-19T06:32:33.464Z", - "end": "2022-07-19T07:50:38.752Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T07:50:38.752Z", - "end": "2022-07-19T09:08:44.040Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "360264570671216445", - "game": "614380482620293151", - "start": "2022-06-17T18:18:19.939Z", - "end": "2022-06-17T21:55:36.405Z", - "events": [ - { - "start": "2022-06-17T18:18:19.939Z", - "end": "2022-06-17T19:01:47.232Z", - "state": "IDLE" - }, - { - "start": "2022-06-17T19:01:47.232Z", - "end": "2022-06-17T19:45:14.525Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T19:45:14.525Z", - "end": "2022-06-17T20:28:41.818Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T20:28:41.818Z", - "end": "2022-06-17T21:12:09.111Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-17T21:12:09.111Z", - "end": "2022-06-17T21:55:36.404Z", - "state": "IDLE" - } - ] - }, - { - "user": "494763633796983404", - "game": "535869836748783616", - "start": "2022-07-17T14:17:53.419Z", - "end": "2022-07-17T14:40:07.962Z", - "events": [ - { - "start": "2022-07-17T14:17:53.419Z", - "end": "2022-07-17T14:23:27.054Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T14:23:27.054Z", - "end": "2022-07-17T14:29:00.689Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T14:29:00.689Z", - "end": "2022-07-17T14:34:34.324Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T14:34:34.324Z", - "end": "2022-07-17T14:40:07.959Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "355708392202112685", - "game": "550277544025522176", - "start": "2022-06-06T11:07:38.689Z", - "end": "2022-06-06T17:53:18.452Z", - "events": [ - { - "start": "2022-06-06T11:07:38.689Z", - "end": "2022-06-06T13:22:51.943Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T13:22:51.943Z", - "end": "2022-06-06T15:38:05.197Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T15:38:05.197Z", - "end": "2022-06-06T17:53:18.451Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "520462578061803588", - "start": "2022-04-21T09:24:24.353Z", - "end": "2022-04-21T10:58:18.598Z", - "events": [ - { - "start": "2022-04-21T09:24:24.353Z", - "end": "2022-04-21T09:47:52.914Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T09:47:52.914Z", - "end": "2022-04-21T10:11:21.475Z", - "state": "IDLE" - }, - { - "start": "2022-04-21T10:11:21.475Z", - "end": "2022-04-21T10:34:50.036Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T10:34:50.036Z", - "end": "2022-04-21T10:58:18.597Z", - "state": "IDLE" - } - ] - }, - { - "user": "302714757313826277", - "game": "512501896896970762", - "start": "2022-07-02T23:40:27.289Z", - "end": "2022-07-03T00:03:03.200Z", - "events": [ - { - "start": "2022-07-02T23:40:27.289Z", - "end": "2022-07-02T23:46:06.266Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T23:46:06.266Z", - "end": "2022-07-02T23:51:45.243Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T23:51:45.243Z", - "end": "2022-07-02T23:57:24.220Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T23:57:24.220Z", - "end": "2022-07-03T00:03:03.197Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "625617695768437507", - "game": "523154344187789312", - "start": "2022-05-27T14:11:43.342Z", - "end": "2022-05-27T21:28:50.929Z", - "events": [ - { - "start": "2022-05-27T14:11:43.342Z", - "end": "2022-05-27T21:28:50.929Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "512498684211232768", - "start": "2022-05-15T09:22:20.607Z", - "end": "2022-05-15T12:47:15.747Z", - "events": [ - { - "start": "2022-05-15T09:22:20.607Z", - "end": "2022-05-15T10:30:38.987Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T10:30:38.987Z", - "end": "2022-05-15T11:38:57.367Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T11:38:57.367Z", - "end": "2022-05-15T12:47:15.747Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "614448244260339712", - "start": "2022-04-26T14:32:03.237Z", - "end": "2022-04-27T00:22:49.253Z", - "events": [ - { - "start": "2022-04-26T14:32:03.237Z", - "end": "2022-04-26T17:48:58.575Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T17:48:58.575Z", - "end": "2022-04-26T21:05:53.913Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T21:05:53.913Z", - "end": "2022-04-27T00:22:49.251Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "538658792298239054", - "game": "572456126872944651", - "start": "2022-08-04T08:23:28.341Z", - "end": "2022-08-04T09:42:13.444Z", - "events": [ - { - "start": "2022-08-04T08:23:28.341Z", - "end": "2022-08-04T08:39:13.361Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-04T08:39:13.361Z", - "end": "2022-08-04T08:54:58.381Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T08:54:58.381Z", - "end": "2022-08-04T09:10:43.401Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T09:10:43.401Z", - "end": "2022-08-04T09:26:28.421Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T09:26:28.421Z", - "end": "2022-08-04T09:42:13.441Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "614380482620293151", - "start": "2022-04-27T05:09:48.762Z", - "end": "2022-04-27T11:40:19.273Z", - "events": [ - { - "start": "2022-04-27T05:09:48.762Z", - "end": "2022-04-27T06:27:54.864Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T06:27:54.864Z", - "end": "2022-04-27T07:46:00.966Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T07:46:00.966Z", - "end": "2022-04-27T09:04:07.068Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T09:04:07.068Z", - "end": "2022-04-27T10:22:13.170Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T10:22:13.170Z", - "end": "2022-04-27T11:40:19.272Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "938976307338486810", - "game": "576482762446602270", - "start": "2022-07-07T02:17:51.351Z", - "end": "2022-07-07T09:04:02.710Z", - "events": [ - { - "start": "2022-07-07T02:17:51.351Z", - "end": "2022-07-07T04:33:15.137Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T04:33:15.137Z", - "end": "2022-07-07T06:48:38.923Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T06:48:38.923Z", - "end": "2022-07-07T09:04:02.709Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "153631479524744694", - "game": "554573307161214977", - "start": "2022-04-30T04:30:27.983Z", - "end": "2022-04-30T05:51:20.691Z", - "events": [ - { - "start": "2022-04-30T04:30:27.983Z", - "end": "2022-04-30T05:51:20.691Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "355708392202112685", - "game": "518088627234930688", - "start": "2022-06-22T08:28:23.817Z", - "end": "2022-06-22T16:34:04.182Z", - "events": [ - { - "start": "2022-06-22T08:28:23.817Z", - "end": "2022-06-22T16:34:04.182Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "517335360477493827", - "game": "512789343157485602", - "start": "2022-06-01T12:32:24.927Z", - "end": "2022-06-01T17:40:30.266Z", - "events": [ - { - "start": "2022-06-01T12:32:24.927Z", - "end": "2022-06-01T17:40:30.266Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "572456126872944651", - "start": "2022-05-30T03:12:56.572Z", - "end": "2022-05-30T10:12:03.031Z", - "events": [ - { - "start": "2022-05-30T03:12:56.572Z", - "end": "2022-05-30T04:36:45.863Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T04:36:45.863Z", - "end": "2022-05-30T06:00:35.154Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T06:00:35.154Z", - "end": "2022-05-30T07:24:24.445Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T07:24:24.445Z", - "end": "2022-05-30T08:48:13.736Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T08:48:13.736Z", - "end": "2022-05-30T10:12:03.027Z", - "state": "IDLE" - } - ] - }, - { - "user": "878082205985098233", - "game": "592976500802846750", - "start": "2022-07-08T14:38:49.334Z", - "end": "2022-07-08T21:31:32.801Z", - "events": [ - { - "start": "2022-07-08T14:38:49.334Z", - "end": "2022-07-08T16:01:22.027Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T16:01:22.027Z", - "end": "2022-07-08T17:23:54.720Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T17:23:54.720Z", - "end": "2022-07-08T18:46:27.413Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T18:46:27.413Z", - "end": "2022-07-08T20:09:00.106Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T20:09:00.106Z", - "end": "2022-07-08T21:31:32.799Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "592976500802846750", - "start": "2022-06-06T03:40:14.060Z", - "end": "2022-06-06T10:07:52.372Z", - "events": [ - { - "start": "2022-06-06T03:40:14.060Z", - "end": "2022-06-06T10:07:52.372Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "560781100197216267", - "start": "2022-07-15T04:52:28.386Z", - "end": "2022-07-15T10:27:49.721Z", - "events": [ - { - "start": "2022-07-15T04:52:28.386Z", - "end": "2022-07-15T07:40:09.053Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T07:40:09.053Z", - "end": "2022-07-15T10:27:49.720Z", - "state": "IDLE" - } - ] - }, - { - "user": "878082205985098233", - "game": "514228311661084682", - "start": "2022-07-23T12:14:10.840Z", - "end": "2022-07-23T15:07:49.139Z", - "events": [ - { - "start": "2022-07-23T12:14:10.840Z", - "end": "2022-07-23T13:12:03.606Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T13:12:03.606Z", - "end": "2022-07-23T14:09:56.372Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T14:09:56.372Z", - "end": "2022-07-23T15:07:49.138Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "542075586886107149", - "start": "2022-06-23T18:20:48.593Z", - "end": "2022-06-23T21:44:02.645Z", - "events": [ - { - "start": "2022-06-23T18:20:48.593Z", - "end": "2022-06-23T19:11:37.106Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T19:11:37.106Z", - "end": "2022-06-23T20:02:25.619Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T20:02:25.619Z", - "end": "2022-06-23T20:53:14.132Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T20:53:14.132Z", - "end": "2022-06-23T21:44:02.645Z", - "state": "IDLE" - } - ] - }, - { - "user": "791267126190249625", - "game": "512498684211232768", - "start": "2022-07-09T06:38:33.122Z", - "end": "2022-07-09T11:59:48.587Z", - "events": [ - { - "start": "2022-07-09T06:38:33.122Z", - "end": "2022-07-09T07:58:51.988Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T07:58:51.988Z", - "end": "2022-07-09T09:19:10.854Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T09:19:10.854Z", - "end": "2022-07-09T10:39:29.720Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T10:39:29.720Z", - "end": "2022-07-09T11:59:48.586Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "713444659295913502", - "game": "512498684211232768", - "start": "2022-04-19T21:25:59.242Z", - "end": "2022-04-20T00:37:22.287Z", - "events": [ - { - "start": "2022-04-19T21:25:59.242Z", - "end": "2022-04-19T22:13:50.003Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T22:13:50.003Z", - "end": "2022-04-19T23:01:40.764Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T23:01:40.764Z", - "end": "2022-04-19T23:49:31.525Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T23:49:31.525Z", - "end": "2022-04-20T00:37:22.286Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "521842831262875670", - "start": "2022-06-14T19:02:07.364Z", - "end": "2022-06-14T21:45:00.744Z", - "events": [ - { - "start": "2022-06-14T19:02:07.364Z", - "end": "2022-06-14T21:45:00.744Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "576482762446602270", - "start": "2022-06-04T03:29:47.351Z", - "end": "2022-06-04T11:20:02.790Z", - "events": [ - { - "start": "2022-06-04T03:29:47.351Z", - "end": "2022-06-04T06:06:32.497Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T06:06:32.497Z", - "end": "2022-06-04T08:43:17.643Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T08:43:17.643Z", - "end": "2022-06-04T11:20:02.789Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "623295654897148670", - "game": "535371564850479134", - "start": "2022-07-24T18:30:36.210Z", - "end": "2022-07-24T21:09:27.554Z", - "events": [ - { - "start": "2022-07-24T18:30:36.210Z", - "end": "2022-07-24T19:23:33.324Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T19:23:33.324Z", - "end": "2022-07-24T20:16:30.438Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T20:16:30.438Z", - "end": "2022-07-24T21:09:27.552Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "510199020782747732", - "start": "2022-04-25T04:44:47.806Z", - "end": "2022-04-25T12:13:41.672Z", - "events": [ - { - "start": "2022-04-25T04:44:47.806Z", - "end": "2022-04-25T12:13:41.672Z", - "state": "IDLE" - } - ] - }, - { - "user": "538658792298239054", - "game": "592976500802846750", - "start": "2022-07-11T17:37:29.240Z", - "end": "2022-07-11T18:36:33.287Z", - "events": [ - { - "start": "2022-07-11T17:37:29.240Z", - "end": "2022-07-11T17:49:18.049Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T17:49:18.049Z", - "end": "2022-07-11T18:01:06.858Z", - "state": "IDLE" - }, - { - "start": "2022-07-11T18:01:06.858Z", - "end": "2022-07-11T18:12:55.667Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T18:12:55.667Z", - "end": "2022-07-11T18:24:44.476Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T18:24:44.476Z", - "end": "2022-07-11T18:36:33.285Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "584489284152985092", - "game": "560781100197216267", - "start": "2022-06-05T22:15:10.661Z", - "end": "2022-06-06T04:20:42.034Z", - "events": [ - { - "start": "2022-06-05T22:15:10.661Z", - "end": "2022-06-06T04:20:42.034Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "444246898747584433", - "game": "542474758835535872", - "start": "2022-07-30T19:46:20.109Z", - "end": "2022-07-31T03:09:13.790Z", - "events": [ - { - "start": "2022-07-30T19:46:20.109Z", - "end": "2022-07-30T22:13:58.002Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T22:13:58.002Z", - "end": "2022-07-31T00:41:35.895Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T00:41:35.895Z", - "end": "2022-07-31T03:09:13.788Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "463820732483181525", - "game": "535384357536399404", - "start": "2022-04-25T09:25:35.500Z", - "end": "2022-04-25T18:49:38.962Z", - "events": [ - { - "start": "2022-04-25T09:25:35.500Z", - "end": "2022-04-25T18:49:38.962Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "131482253203487270", - "game": "512789427462995988", - "start": "2022-04-22T16:21:59.911Z", - "end": "2022-04-22T23:33:51.713Z", - "events": [ - { - "start": "2022-04-22T16:21:59.911Z", - "end": "2022-04-22T17:48:22.271Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T17:48:22.271Z", - "end": "2022-04-22T19:14:44.631Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T19:14:44.631Z", - "end": "2022-04-22T20:41:06.991Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T20:41:06.991Z", - "end": "2022-04-22T22:07:29.351Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T22:07:29.351Z", - "end": "2022-04-22T23:33:51.711Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "575412499399180288", - "start": "2022-05-10T07:18:13.811Z", - "end": "2022-05-10T15:17:13.334Z", - "events": [ - { - "start": "2022-05-10T07:18:13.811Z", - "end": "2022-05-10T09:57:53.652Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T09:57:53.652Z", - "end": "2022-05-10T12:37:33.493Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T12:37:33.493Z", - "end": "2022-05-10T15:17:13.334Z", - "state": "IDLE" - } - ] - }, - { - "user": "182925797752958092", - "game": "356875221078245376", - "start": "2022-07-29T04:36:50.357Z", - "end": "2022-07-29T10:28:02.507Z", - "events": [ - { - "start": "2022-07-29T04:36:50.357Z", - "end": "2022-07-29T10:28:02.507Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "878082205985098233", - "game": "518088627234930688", - "start": "2022-07-03T21:15:55.693Z", - "end": "2022-07-04T06:33:00.776Z", - "events": [ - { - "start": "2022-07-03T21:15:55.693Z", - "end": "2022-07-04T00:21:37.387Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-04T00:21:37.387Z", - "end": "2022-07-04T03:27:19.081Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T03:27:19.081Z", - "end": "2022-07-04T06:33:00.775Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "467658810442648809", - "game": "512789120234422301", - "start": "2022-05-24T13:31:28.741Z", - "end": "2022-05-24T23:02:01.354Z", - "events": [ - { - "start": "2022-05-24T13:31:28.741Z", - "end": "2022-05-24T18:16:45.047Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T18:16:45.047Z", - "end": "2022-05-24T23:02:01.353Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "512789343157485602", - "start": "2022-05-02T00:21:56.301Z", - "end": "2022-05-02T04:17:54.250Z", - "events": [ - { - "start": "2022-05-02T00:21:56.301Z", - "end": "2022-05-02T01:20:55.788Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T01:20:55.788Z", - "end": "2022-05-02T02:19:55.275Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T02:19:55.275Z", - "end": "2022-05-02T03:18:54.762Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T03:18:54.762Z", - "end": "2022-05-02T04:17:54.249Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "530454325214969866", - "start": "2022-04-23T01:50:41.894Z", - "end": "2022-04-23T03:19:50.026Z", - "events": [ - { - "start": "2022-04-23T01:50:41.894Z", - "end": "2022-04-23T02:35:15.960Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T02:35:15.960Z", - "end": "2022-04-23T03:19:50.026Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "137536289023624121", - "game": "569008830701240340", - "start": "2022-04-24T08:57:56.302Z", - "end": "2022-04-24T09:08:15.050Z", - "events": [ - { - "start": "2022-04-24T08:57:56.302Z", - "end": "2022-04-24T09:08:15.050Z", - "state": "IDLE" - } - ] - }, - { - "user": "346608907417001845", - "game": "510199020782747732", - "start": "2022-05-07T22:49:52.451Z", - "end": "2022-05-08T08:28:09.394Z", - "events": [ - { - "start": "2022-05-07T22:49:52.451Z", - "end": "2022-05-08T00:45:31.839Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T00:45:31.839Z", - "end": "2022-05-08T02:41:11.227Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T02:41:11.227Z", - "end": "2022-05-08T04:36:50.615Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T04:36:50.615Z", - "end": "2022-05-08T06:32:30.003Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T06:32:30.003Z", - "end": "2022-05-08T08:28:09.391Z", - "state": "IDLE" - } - ] - }, - { - "user": "360264570671216445", - "game": "546175179542364160", - "start": "2022-05-15T07:26:21.612Z", - "end": "2022-05-15T09:47:05.650Z", - "events": [ - { - "start": "2022-05-15T07:26:21.612Z", - "end": "2022-05-15T09:47:05.650Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "153631479524744694", - "game": "540120593576493057", - "start": "2022-06-08T11:41:23.077Z", - "end": "2022-06-08T20:25:34.099Z", - "events": [ - { - "start": "2022-06-08T11:41:23.077Z", - "end": "2022-06-08T14:36:06.751Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T14:36:06.751Z", - "end": "2022-06-08T17:30:50.425Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T17:30:50.425Z", - "end": "2022-06-08T20:25:34.099Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "406850294055619241", - "game": "569008830701240340", - "start": "2022-04-22T06:10:11.192Z", - "end": "2022-04-22T10:36:15.978Z", - "events": [ - { - "start": "2022-04-22T06:10:11.192Z", - "end": "2022-04-22T10:36:15.978Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "700136079562375258", - "start": "2022-06-29T07:42:31.913Z", - "end": "2022-06-29T09:38:56.408Z", - "events": [ - { - "start": "2022-06-29T07:42:31.913Z", - "end": "2022-06-29T09:38:56.408Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "511619499053678668", - "start": "2022-05-14T16:20:01.303Z", - "end": "2022-05-15T00:59:05.032Z", - "events": [ - { - "start": "2022-05-14T16:20:01.303Z", - "end": "2022-05-14T19:13:02.546Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T19:13:02.546Z", - "end": "2022-05-14T22:06:03.789Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T22:06:03.789Z", - "end": "2022-05-15T00:59:05.032Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "725502702868293700", - "game": "614448244260339712", - "start": "2022-07-11T09:48:31.377Z", - "end": "2022-07-11T12:25:05.602Z", - "events": [ - { - "start": "2022-07-11T09:48:31.377Z", - "end": "2022-07-11T11:06:48.489Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T11:06:48.489Z", - "end": "2022-07-11T12:25:05.601Z", - "state": "IDLE" - } - ] - }, - { - "user": "713444659295913502", - "game": "535869836748783616", - "start": "2022-04-22T09:31:33.231Z", - "end": "2022-04-22T17:05:21.827Z", - "events": [ - { - "start": "2022-04-22T09:31:33.231Z", - "end": "2022-04-22T11:02:18.950Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T11:02:18.950Z", - "end": "2022-04-22T12:33:04.669Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T12:33:04.669Z", - "end": "2022-04-22T14:03:50.388Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-22T14:03:50.388Z", - "end": "2022-04-22T15:34:36.107Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-22T15:34:36.107Z", - "end": "2022-04-22T17:05:21.826Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "568387317892070397", - "game": "597588168178663434", - "start": "2022-04-22T16:55:39.326Z", - "end": "2022-04-23T02:07:41.556Z", - "events": [ - { - "start": "2022-04-22T16:55:39.326Z", - "end": "2022-04-22T19:13:39.883Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T19:13:39.883Z", - "end": "2022-04-22T21:31:40.440Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T21:31:40.440Z", - "end": "2022-04-22T23:49:40.997Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T23:49:40.997Z", - "end": "2022-04-23T02:07:41.554Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "500919588166575890", - "game": "546175179542364160", - "start": "2022-06-09T01:14:43.207Z", - "end": "2022-06-09T07:39:00.810Z", - "events": [ - { - "start": "2022-06-09T01:14:43.207Z", - "end": "2022-06-09T02:50:47.607Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-09T02:50:47.607Z", - "end": "2022-06-09T04:26:52.007Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-09T04:26:52.007Z", - "end": "2022-06-09T06:02:56.407Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-09T06:02:56.407Z", - "end": "2022-06-09T07:39:00.807Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "597860020935327787", - "start": "2022-07-24T09:02:50.062Z", - "end": "2022-07-24T12:10:51.877Z", - "events": [ - { - "start": "2022-07-24T09:02:50.062Z", - "end": "2022-07-24T10:36:50.969Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T10:36:50.969Z", - "end": "2022-07-24T12:10:51.876Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "530539422724200800", - "game": "700136079562375258", - "start": "2022-04-20T14:04:31.228Z", - "end": "2022-04-20T21:14:28.962Z", - "events": [ - { - "start": "2022-04-20T14:04:31.228Z", - "end": "2022-04-20T15:30:30.774Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T15:30:30.774Z", - "end": "2022-04-20T16:56:30.320Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T16:56:30.320Z", - "end": "2022-04-20T18:22:29.866Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-20T18:22:29.866Z", - "end": "2022-04-20T19:48:29.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-20T19:48:29.412Z", - "end": "2022-04-20T21:14:28.958Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "872035310834814925", - "game": "535384357536399404", - "start": "2022-06-20T13:17:58.126Z", - "end": "2022-06-20T14:11:40.301Z", - "events": [ - { - "start": "2022-06-20T13:17:58.126Z", - "end": "2022-06-20T13:44:49.213Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T13:44:49.213Z", - "end": "2022-06-20T14:11:40.300Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "549054179973094329", - "game": "550277544025522176", - "start": "2022-05-01T23:12:26.390Z", - "end": "2022-05-02T06:43:29.514Z", - "events": [ - { - "start": "2022-05-01T23:12:26.390Z", - "end": "2022-05-02T06:43:29.514Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "575412499399180288", - "start": "2022-06-02T05:29:42.839Z", - "end": "2022-06-02T11:10:48.217Z", - "events": [ - { - "start": "2022-06-02T05:29:42.839Z", - "end": "2022-06-02T06:37:55.914Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T06:37:55.914Z", - "end": "2022-06-02T07:46:08.989Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T07:46:08.989Z", - "end": "2022-06-02T08:54:22.064Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T08:54:22.064Z", - "end": "2022-06-02T10:02:35.139Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T10:02:35.139Z", - "end": "2022-06-02T11:10:48.214Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "530539422724200800", - "game": "597588168178663434", - "start": "2022-07-07T18:32:10.280Z", - "end": "2022-07-07T18:57:56.003Z", - "events": [ - { - "start": "2022-07-07T18:32:10.280Z", - "end": "2022-07-07T18:45:03.141Z", - "state": "IDLE" - }, - { - "start": "2022-07-07T18:45:03.141Z", - "end": "2022-07-07T18:57:56.002Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "554921822626381879", - "start": "2022-06-01T12:00:26.612Z", - "end": "2022-06-01T13:58:04.762Z", - "events": [ - { - "start": "2022-06-01T12:00:26.612Z", - "end": "2022-06-01T12:39:39.328Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-01T12:39:39.328Z", - "end": "2022-06-01T13:18:52.044Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-01T13:18:52.044Z", - "end": "2022-06-01T13:58:04.760Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "658550407298256890", - "game": "520462578061803588", - "start": "2022-07-03T20:47:34.754Z", - "end": "2022-07-04T00:14:26.537Z", - "events": [ - { - "start": "2022-07-03T20:47:34.754Z", - "end": "2022-07-03T21:39:17.699Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T21:39:17.699Z", - "end": "2022-07-03T22:31:00.644Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T22:31:00.644Z", - "end": "2022-07-03T23:22:43.589Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T23:22:43.589Z", - "end": "2022-07-04T00:14:26.534Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "512789427462995988", - "start": "2022-06-13T03:46:31.132Z", - "end": "2022-06-13T12:14:50.490Z", - "events": [ - { - "start": "2022-06-13T03:46:31.132Z", - "end": "2022-06-13T06:35:57.584Z", - "state": "IDLE" - }, - { - "start": "2022-06-13T06:35:57.584Z", - "end": "2022-06-13T09:25:24.036Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T09:25:24.036Z", - "end": "2022-06-13T12:14:50.488Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "911848869344266044", - "game": "520453007578628124", - "start": "2022-05-12T15:09:35.052Z", - "end": "2022-05-13T00:02:38.570Z", - "events": [ - { - "start": "2022-05-12T15:09:35.052Z", - "end": "2022-05-12T18:07:16.224Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T18:07:16.224Z", - "end": "2022-05-12T21:04:57.396Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T21:04:57.396Z", - "end": "2022-05-13T00:02:38.568Z", - "state": "IDLE" - } - ] - }, - { - "user": "686825797960121847", - "game": "512699108809637890", - "start": "2022-05-14T13:24:26.297Z", - "end": "2022-05-14T17:34:20.881Z", - "events": [ - { - "start": "2022-05-14T13:24:26.297Z", - "end": "2022-05-14T15:29:23.589Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T15:29:23.589Z", - "end": "2022-05-14T17:34:20.881Z", - "state": "IDLE" - } - ] - }, - { - "user": "538658792298239054", - "game": "542475118396309528", - "start": "2022-04-21T05:56:56.368Z", - "end": "2022-04-21T14:30:36.486Z", - "events": [ - { - "start": "2022-04-21T05:56:56.368Z", - "end": "2022-04-21T08:05:21.397Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-21T08:05:21.397Z", - "end": "2022-04-21T10:13:46.426Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T10:13:46.426Z", - "end": "2022-04-21T12:22:11.455Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T12:22:11.455Z", - "end": "2022-04-21T14:30:36.484Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "521842831262875670", - "start": "2022-06-06T13:31:00.556Z", - "end": "2022-06-06T18:53:49.151Z", - "events": [ - { - "start": "2022-06-06T13:31:00.556Z", - "end": "2022-06-06T14:51:42.704Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T14:51:42.704Z", - "end": "2022-06-06T16:12:24.852Z", - "state": "IDLE" - }, - { - "start": "2022-06-06T16:12:24.852Z", - "end": "2022-06-06T17:33:07.000Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T17:33:07.000Z", - "end": "2022-06-06T18:53:49.148Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "762163239408560283", - "game": "512789343157485602", - "start": "2022-07-11T23:28:04.372Z", - "end": "2022-07-12T08:53:12.876Z", - "events": [ - { - "start": "2022-07-11T23:28:04.372Z", - "end": "2022-07-12T02:36:27.206Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T02:36:27.206Z", - "end": "2022-07-12T05:44:50.040Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T05:44:50.040Z", - "end": "2022-07-12T08:53:12.874Z", - "state": "IDLE" - } - ] - }, - { - "user": "453350270016457959", - "game": "558547388583772201", - "start": "2022-06-04T20:15:54.457Z", - "end": "2022-06-05T06:18:05.609Z", - "events": [ - { - "start": "2022-06-04T20:15:54.457Z", - "end": "2022-06-04T22:46:27.245Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T22:46:27.245Z", - "end": "2022-06-05T01:17:00.033Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T01:17:00.033Z", - "end": "2022-06-05T03:47:32.821Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T03:47:32.821Z", - "end": "2022-06-05T06:18:05.609Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "200801427122341912", - "game": "508057374875975682", - "start": "2022-04-26T17:45:19.558Z", - "end": "2022-04-27T03:10:56.303Z", - "events": [ - { - "start": "2022-04-26T17:45:19.558Z", - "end": "2022-04-27T03:10:56.303Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "535869836748783616", - "start": "2022-05-11T18:43:31.402Z", - "end": "2022-05-11T21:35:37.502Z", - "events": [ - { - "start": "2022-05-11T18:43:31.402Z", - "end": "2022-05-11T19:17:56.622Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-11T19:17:56.622Z", - "end": "2022-05-11T19:52:21.842Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T19:52:21.842Z", - "end": "2022-05-11T20:26:47.062Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T20:26:47.062Z", - "end": "2022-05-11T21:01:12.282Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T21:01:12.282Z", - "end": "2022-05-11T21:35:37.502Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "606163888052109312", - "start": "2022-08-01T08:02:58.741Z", - "end": "2022-08-01T10:22:30.374Z", - "events": [ - { - "start": "2022-08-01T08:02:58.741Z", - "end": "2022-08-01T08:37:51.649Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T08:37:51.649Z", - "end": "2022-08-01T09:12:44.557Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T09:12:44.557Z", - "end": "2022-08-01T09:47:37.465Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T09:47:37.465Z", - "end": "2022-08-01T10:22:30.373Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "452396069922968436", - "game": "700136079562375258", - "start": "2022-04-15T15:56:33.921Z", - "end": "2022-04-15T18:42:08.600Z", - "events": [ - { - "start": "2022-04-15T15:56:33.921Z", - "end": "2022-04-15T16:29:40.856Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T16:29:40.856Z", - "end": "2022-04-15T17:02:47.791Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T17:02:47.791Z", - "end": "2022-04-15T17:35:54.726Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T17:35:54.726Z", - "end": "2022-04-15T18:09:01.661Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T18:09:01.661Z", - "end": "2022-04-15T18:42:08.596Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "841397740041930984", - "game": "575412499399180288", - "start": "2022-08-03T05:30:53.211Z", - "end": "2022-08-03T11:31:34.687Z", - "events": [ - { - "start": "2022-08-03T05:30:53.211Z", - "end": "2022-08-03T11:31:34.687Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "725502702868293700", - "game": "511619499053678668", - "start": "2022-08-01T21:55:00.807Z", - "end": "2022-08-02T01:02:12.074Z", - "events": [ - { - "start": "2022-08-01T21:55:00.807Z", - "end": "2022-08-01T22:57:24.562Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T22:57:24.562Z", - "end": "2022-08-01T23:59:48.317Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-01T23:59:48.317Z", - "end": "2022-08-02T01:02:12.072Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "542475118396309528", - "start": "2022-05-06T12:53:15.570Z", - "end": "2022-05-06T20:23:14.460Z", - "events": [ - { - "start": "2022-05-06T12:53:15.570Z", - "end": "2022-05-06T15:23:15.200Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T15:23:15.200Z", - "end": "2022-05-06T17:53:14.830Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T17:53:14.830Z", - "end": "2022-05-06T20:23:14.460Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "590467327095087095", - "game": "546175179542364160", - "start": "2022-06-09T05:47:58.136Z", - "end": "2022-06-09T11:14:33.700Z", - "events": [ - { - "start": "2022-06-09T05:47:58.136Z", - "end": "2022-06-09T11:14:33.700Z", - "state": "IDLE" - } - ] - }, - { - "user": "395281349698024181", - "game": "575412499399180288", - "start": "2022-07-13T19:56:34.201Z", - "end": "2022-07-14T00:07:43.565Z", - "events": [ - { - "start": "2022-07-13T19:56:34.201Z", - "end": "2022-07-13T20:46:48.073Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T20:46:48.073Z", - "end": "2022-07-13T21:37:01.945Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T21:37:01.945Z", - "end": "2022-07-13T22:27:15.817Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T22:27:15.817Z", - "end": "2022-07-13T23:17:29.689Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-13T23:17:29.689Z", - "end": "2022-07-14T00:07:43.561Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "519644267212177418", - "start": "2022-07-29T07:39:28.590Z", - "end": "2022-07-29T13:43:42.038Z", - "events": [ - { - "start": "2022-07-29T07:39:28.590Z", - "end": "2022-07-29T09:10:31.952Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T09:10:31.952Z", - "end": "2022-07-29T10:41:35.314Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T10:41:35.314Z", - "end": "2022-07-29T12:12:38.676Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T12:12:38.676Z", - "end": "2022-07-29T13:43:42.038Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "600708263053781983", - "game": "614380482620293151", - "start": "2022-06-04T13:08:22.684Z", - "end": "2022-06-04T14:23:52.756Z", - "events": [ - { - "start": "2022-06-04T13:08:22.684Z", - "end": "2022-06-04T13:46:07.720Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T13:46:07.720Z", - "end": "2022-06-04T14:23:52.756Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "346608907417001845", - "game": "512789427462995988", - "start": "2022-06-12T12:43:36.910Z", - "end": "2022-06-12T15:51:47.887Z", - "events": [ - { - "start": "2022-06-12T12:43:36.910Z", - "end": "2022-06-12T13:30:39.654Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T13:30:39.654Z", - "end": "2022-06-12T14:17:42.398Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T14:17:42.398Z", - "end": "2022-06-12T15:04:45.142Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T15:04:45.142Z", - "end": "2022-06-12T15:51:47.886Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "568387317892070397", - "game": "514228311661084682", - "start": "2022-05-04T12:17:03.865Z", - "end": "2022-05-04T22:20:02.633Z", - "events": [ - { - "start": "2022-05-04T12:17:03.865Z", - "end": "2022-05-04T15:38:03.454Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T15:38:03.454Z", - "end": "2022-05-04T18:59:03.043Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T18:59:03.043Z", - "end": "2022-05-04T22:20:02.632Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "200801427122341912", - "game": "575412499399180288", - "start": "2022-06-21T14:16:51.510Z", - "end": "2022-06-21T21:55:51.818Z", - "events": [ - { - "start": "2022-06-21T14:16:51.510Z", - "end": "2022-06-21T16:11:36.587Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T16:11:36.587Z", - "end": "2022-06-21T18:06:21.664Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T18:06:21.664Z", - "end": "2022-06-21T20:01:06.741Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T20:01:06.741Z", - "end": "2022-06-21T21:55:51.818Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "538658792298239054", - "game": "526489929631531009", - "start": "2022-05-26T13:59:58.395Z", - "end": "2022-05-26T22:08:23.812Z", - "events": [ - { - "start": "2022-05-26T13:59:58.395Z", - "end": "2022-05-26T16:42:46.867Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T16:42:46.867Z", - "end": "2022-05-26T19:25:35.339Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T19:25:35.339Z", - "end": "2022-05-26T22:08:23.811Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "537786518874514211", - "game": "519644267212177418", - "start": "2022-06-14T09:03:34.398Z", - "end": "2022-06-14T16:54:45.806Z", - "events": [ - { - "start": "2022-06-14T09:03:34.398Z", - "end": "2022-06-14T11:40:38.200Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-14T11:40:38.200Z", - "end": "2022-06-14T14:17:42.002Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T14:17:42.002Z", - "end": "2022-06-14T16:54:45.804Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "453350270016457959", - "game": "526489929631531009", - "start": "2022-06-26T16:50:54.834Z", - "end": "2022-06-27T01:32:12.201Z", - "events": [ - { - "start": "2022-06-26T16:50:54.834Z", - "end": "2022-06-26T21:11:33.517Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T21:11:33.517Z", - "end": "2022-06-27T01:32:12.200Z", - "state": "IDLE" - } - ] - }, - { - "user": "608700383891121851", - "game": "614448244260339712", - "start": "2022-04-23T21:52:33.206Z", - "end": "2022-04-24T07:23:43.296Z", - "events": [ - { - "start": "2022-04-23T21:52:33.206Z", - "end": "2022-04-24T02:38:08.251Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T02:38:08.251Z", - "end": "2022-04-24T07:23:43.296Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "592976500802846750", - "start": "2022-06-04T17:08:05.418Z", - "end": "2022-06-04T20:33:40.431Z", - "events": [ - { - "start": "2022-06-04T17:08:05.418Z", - "end": "2022-06-04T17:49:12.420Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T17:49:12.420Z", - "end": "2022-06-04T18:30:19.422Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T18:30:19.422Z", - "end": "2022-06-04T19:11:26.424Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T19:11:26.424Z", - "end": "2022-06-04T19:52:33.426Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T19:52:33.426Z", - "end": "2022-06-04T20:33:40.428Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "430732724825949756", - "game": "700136079562375258", - "start": "2022-05-26T05:07:08.185Z", - "end": "2022-05-26T09:10:06.100Z", - "events": [ - { - "start": "2022-05-26T05:07:08.185Z", - "end": "2022-05-26T06:07:52.663Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-26T06:07:52.663Z", - "end": "2022-05-26T07:08:37.141Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-26T07:08:37.141Z", - "end": "2022-05-26T08:09:21.619Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T08:09:21.619Z", - "end": "2022-05-26T09:10:06.097Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "542474758835535872", - "start": "2022-06-03T13:38:29.657Z", - "end": "2022-06-03T15:48:35.300Z", - "events": [ - { - "start": "2022-06-03T13:38:29.657Z", - "end": "2022-06-03T14:11:01.067Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T14:11:01.067Z", - "end": "2022-06-03T14:43:32.477Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T14:43:32.477Z", - "end": "2022-06-03T15:16:03.887Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T15:16:03.887Z", - "end": "2022-06-03T15:48:35.297Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "517335360477493827", - "game": "597588168178663434", - "start": "2022-05-04T00:49:45.373Z", - "end": "2022-05-04T09:55:48.396Z", - "events": [ - { - "start": "2022-05-04T00:49:45.373Z", - "end": "2022-05-04T02:38:57.977Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T02:38:57.977Z", - "end": "2022-05-04T04:28:10.581Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-04T04:28:10.581Z", - "end": "2022-05-04T06:17:23.185Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T06:17:23.185Z", - "end": "2022-05-04T08:06:35.789Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T08:06:35.789Z", - "end": "2022-05-04T09:55:48.393Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "554573307161214977", - "start": "2022-06-30T02:20:50.402Z", - "end": "2022-06-30T03:03:45.003Z", - "events": [ - { - "start": "2022-06-30T02:20:50.402Z", - "end": "2022-06-30T02:35:08.602Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-30T02:35:08.602Z", - "end": "2022-06-30T02:49:26.802Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-30T02:49:26.802Z", - "end": "2022-06-30T03:03:45.002Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "535869836748783616", - "start": "2022-07-22T11:49:00.115Z", - "end": "2022-07-22T12:14:30.049Z", - "events": [ - { - "start": "2022-07-22T11:49:00.115Z", - "end": "2022-07-22T12:14:30.049Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "514228311661084682", - "start": "2022-04-13T18:31:15.085Z", - "end": "2022-04-13T19:14:10.947Z", - "events": [ - { - "start": "2022-04-13T18:31:15.085Z", - "end": "2022-04-13T19:14:10.947Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "560781100197216267", - "start": "2022-04-16T02:49:18.953Z", - "end": "2022-04-16T05:04:34.301Z", - "events": [ - { - "start": "2022-04-16T02:49:18.953Z", - "end": "2022-04-16T03:16:22.022Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-16T03:16:22.022Z", - "end": "2022-04-16T03:43:25.091Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T03:43:25.091Z", - "end": "2022-04-16T04:10:28.160Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-16T04:10:28.160Z", - "end": "2022-04-16T04:37:31.229Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-16T04:37:31.229Z", - "end": "2022-04-16T05:04:34.298Z", - "state": "IDLE" - } - ] - }, - { - "user": "530539422724200800", - "game": "558547388583772201", - "start": "2022-04-21T05:03:25.967Z", - "end": "2022-04-21T08:47:33.695Z", - "events": [ - { - "start": "2022-04-21T05:03:25.967Z", - "end": "2022-04-21T06:55:29.831Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T06:55:29.831Z", - "end": "2022-04-21T08:47:33.695Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "406850294055619241", - "game": "554573307161214977", - "start": "2022-04-14T11:49:32.856Z", - "end": "2022-04-14T20:24:29.514Z", - "events": [ - { - "start": "2022-04-14T11:49:32.856Z", - "end": "2022-04-14T13:58:17.020Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-14T13:58:17.020Z", - "end": "2022-04-14T16:07:01.184Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T16:07:01.184Z", - "end": "2022-04-14T18:15:45.348Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T18:15:45.348Z", - "end": "2022-04-14T20:24:29.512Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "872035310834814925", - "game": "511619499053678668", - "start": "2022-04-27T03:00:09.504Z", - "end": "2022-04-27T08:50:41.072Z", - "events": [ - { - "start": "2022-04-27T03:00:09.504Z", - "end": "2022-04-27T04:57:00.026Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T04:57:00.026Z", - "end": "2022-04-27T06:53:50.548Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T06:53:50.548Z", - "end": "2022-04-27T08:50:41.070Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "385692164951394422", - "game": "542475118396309528", - "start": "2022-06-13T15:59:52.098Z", - "end": "2022-06-13T22:05:19.683Z", - "events": [ - { - "start": "2022-06-13T15:59:52.098Z", - "end": "2022-06-13T17:31:13.994Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T17:31:13.994Z", - "end": "2022-06-13T19:02:35.890Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T19:02:35.890Z", - "end": "2022-06-13T20:33:57.786Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T20:33:57.786Z", - "end": "2022-06-13T22:05:19.682Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "821608522568592914", - "game": "526489929631531009", - "start": "2022-04-20T02:22:18.500Z", - "end": "2022-04-20T08:18:08.462Z", - "events": [ - { - "start": "2022-04-20T02:22:18.500Z", - "end": "2022-04-20T08:18:08.462Z", - "state": "IDLE" - } - ] - }, - { - "user": "161887854890745672", - "game": "523154344187789312", - "start": "2022-07-25T04:00:14.188Z", - "end": "2022-07-25T13:01:39.952Z", - "events": [ - { - "start": "2022-07-25T04:00:14.188Z", - "end": "2022-07-25T08:30:57.070Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T08:30:57.070Z", - "end": "2022-07-25T13:01:39.952Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951234649334557435", - "game": "558547388583772201", - "start": "2022-06-20T17:22:31.144Z", - "end": "2022-06-20T22:50:56.950Z", - "events": [ - { - "start": "2022-06-20T17:22:31.144Z", - "end": "2022-06-20T18:28:12.305Z", - "state": "IDLE" - }, - { - "start": "2022-06-20T18:28:12.305Z", - "end": "2022-06-20T19:33:53.466Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T19:33:53.466Z", - "end": "2022-06-20T20:39:34.627Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T20:39:34.627Z", - "end": "2022-06-20T21:45:15.788Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T21:45:15.788Z", - "end": "2022-06-20T22:50:56.949Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "430732724825949756", - "game": "597588168178663434", - "start": "2022-05-30T02:43:52.230Z", - "end": "2022-05-30T11:27:27.766Z", - "events": [ - { - "start": "2022-05-30T02:43:52.230Z", - "end": "2022-05-30T07:05:39.998Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T07:05:39.998Z", - "end": "2022-05-30T11:27:27.766Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "356875221078245376", - "start": "2022-06-21T18:59:30.361Z", - "end": "2022-06-22T03:38:26.907Z", - "events": [ - { - "start": "2022-06-21T18:59:30.361Z", - "end": "2022-06-22T03:38:26.907Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "285410867718320291", - "game": "606163888052109312", - "start": "2022-07-02T16:12:52.266Z", - "end": "2022-07-02T21:28:03.551Z", - "events": [ - { - "start": "2022-07-02T16:12:52.266Z", - "end": "2022-07-02T17:15:54.523Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T17:15:54.523Z", - "end": "2022-07-02T18:18:56.780Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T18:18:56.780Z", - "end": "2022-07-02T19:21:59.037Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T19:21:59.037Z", - "end": "2022-07-02T20:25:01.294Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T20:25:01.294Z", - "end": "2022-07-02T21:28:03.551Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "575412499399180288", - "start": "2022-05-18T11:52:48.864Z", - "end": "2022-05-18T15:45:35.666Z", - "events": [ - { - "start": "2022-05-18T11:52:48.864Z", - "end": "2022-05-18T13:10:24.464Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T13:10:24.464Z", - "end": "2022-05-18T14:28:00.064Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T14:28:00.064Z", - "end": "2022-05-18T15:45:35.664Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "514228311661084682", - "start": "2022-07-20T15:34:59.036Z", - "end": "2022-07-20T20:46:30.063Z", - "events": [ - { - "start": "2022-07-20T15:34:59.036Z", - "end": "2022-07-20T16:52:51.792Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T16:52:51.792Z", - "end": "2022-07-20T18:10:44.548Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-20T18:10:44.548Z", - "end": "2022-07-20T19:28:37.304Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T19:28:37.304Z", - "end": "2022-07-20T20:46:30.060Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512789343157485602", - "start": "2022-07-07T01:17:18.960Z", - "end": "2022-07-07T09:24:01.012Z", - "events": [ - { - "start": "2022-07-07T01:17:18.960Z", - "end": "2022-07-07T02:54:39.370Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T02:54:39.370Z", - "end": "2022-07-07T04:31:59.780Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T04:31:59.780Z", - "end": "2022-07-07T06:09:20.190Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T06:09:20.190Z", - "end": "2022-07-07T07:46:40.600Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T07:46:40.600Z", - "end": "2022-07-07T09:24:01.010Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "584069374462394368", - "start": "2022-04-19T15:12:17.069Z", - "end": "2022-04-19T15:27:25.464Z", - "events": [ - { - "start": "2022-04-19T15:12:17.069Z", - "end": "2022-04-19T15:17:19.867Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T15:17:19.867Z", - "end": "2022-04-19T15:22:22.665Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T15:22:22.665Z", - "end": "2022-04-19T15:27:25.463Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "597588168178663434", - "start": "2022-07-29T11:44:57.126Z", - "end": "2022-07-29T13:13:32.429Z", - "events": [ - { - "start": "2022-07-29T11:44:57.126Z", - "end": "2022-07-29T12:02:40.186Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T12:02:40.186Z", - "end": "2022-07-29T12:20:23.246Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T12:20:23.246Z", - "end": "2022-07-29T12:38:06.306Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T12:38:06.306Z", - "end": "2022-07-29T12:55:49.366Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T12:55:49.366Z", - "end": "2022-07-29T13:13:32.426Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "554921822626381879", - "start": "2022-08-04T20:27:15.177Z", - "end": "2022-08-05T03:57:52.401Z", - "events": [ - { - "start": "2022-08-04T20:27:15.177Z", - "end": "2022-08-04T21:57:22.621Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T21:57:22.621Z", - "end": "2022-08-04T23:27:30.065Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T23:27:30.065Z", - "end": "2022-08-05T00:57:37.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T00:57:37.509Z", - "end": "2022-08-05T02:27:44.953Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T02:27:44.953Z", - "end": "2022-08-05T03:57:52.397Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "508057374875975682", - "start": "2022-06-27T17:26:56.079Z", - "end": "2022-06-27T23:06:47.545Z", - "events": [ - { - "start": "2022-06-27T17:26:56.079Z", - "end": "2022-06-27T20:16:51.812Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T20:16:51.812Z", - "end": "2022-06-27T23:06:47.545Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "182925797752958092", - "game": "528145079819436043", - "start": "2022-04-25T05:23:29.283Z", - "end": "2022-04-25T12:38:17.491Z", - "events": [ - { - "start": "2022-04-25T05:23:29.283Z", - "end": "2022-04-25T07:12:11.335Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T07:12:11.335Z", - "end": "2022-04-25T09:00:53.387Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-25T09:00:53.387Z", - "end": "2022-04-25T10:49:35.439Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T10:49:35.439Z", - "end": "2022-04-25T12:38:17.491Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "395281349698024181", - "game": "512789427462995988", - "start": "2022-06-14T10:08:04.608Z", - "end": "2022-06-14T12:11:37.684Z", - "events": [ - { - "start": "2022-06-14T10:08:04.608Z", - "end": "2022-06-14T12:11:37.684Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "713444659295913502", - "game": "542075586886107149", - "start": "2022-07-21T21:58:39.170Z", - "end": "2022-07-22T04:33:32.739Z", - "events": [ - { - "start": "2022-07-21T21:58:39.170Z", - "end": "2022-07-22T04:33:32.739Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "584489284152985092", - "game": "569253958967885828", - "start": "2022-05-03T17:21:06.790Z", - "end": "2022-05-03T23:13:39.354Z", - "events": [ - { - "start": "2022-05-03T17:21:06.790Z", - "end": "2022-05-03T18:31:37.302Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T18:31:37.302Z", - "end": "2022-05-03T19:42:07.814Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T19:42:07.814Z", - "end": "2022-05-03T20:52:38.326Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T20:52:38.326Z", - "end": "2022-05-03T22:03:08.838Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T22:03:08.838Z", - "end": "2022-05-03T23:13:39.350Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "430732724825949756", - "game": "546175179542364160", - "start": "2022-04-27T13:21:46.611Z", - "end": "2022-04-27T17:11:52.339Z", - "events": [ - { - "start": "2022-04-27T13:21:46.611Z", - "end": "2022-04-27T17:11:52.339Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "182925797752958092", - "game": "542475118396309528", - "start": "2022-07-21T22:13:25.965Z", - "end": "2022-07-22T01:51:20.055Z", - "events": [ - { - "start": "2022-07-21T22:13:25.965Z", - "end": "2022-07-22T00:02:23.010Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T00:02:23.010Z", - "end": "2022-07-22T01:51:20.055Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "550277544025522176", - "start": "2022-07-07T20:00:00.408Z", - "end": "2022-07-08T05:20:16.025Z", - "events": [ - { - "start": "2022-07-07T20:00:00.408Z", - "end": "2022-07-08T05:20:16.025Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786084290971413565", - "game": "592976500802846750", - "start": "2022-06-09T03:45:30.498Z", - "end": "2022-06-09T05:21:32.636Z", - "events": [ - { - "start": "2022-06-09T03:45:30.498Z", - "end": "2022-06-09T04:33:31.567Z", - "state": "IDLE" - }, - { - "start": "2022-06-09T04:33:31.567Z", - "end": "2022-06-09T05:21:32.636Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "463820732483181525", - "game": "554921822626381879", - "start": "2022-08-04T09:22:34.472Z", - "end": "2022-08-04T12:27:19.431Z", - "events": [ - { - "start": "2022-08-04T09:22:34.472Z", - "end": "2022-08-04T10:08:45.711Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T10:08:45.711Z", - "end": "2022-08-04T10:54:56.950Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-04T10:54:56.950Z", - "end": "2022-08-04T11:41:08.189Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T11:41:08.189Z", - "end": "2022-08-04T12:27:19.428Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "614380482620293151", - "start": "2022-04-14T18:58:30.742Z", - "end": "2022-04-14T20:33:44.438Z", - "events": [ - { - "start": "2022-04-14T18:58:30.742Z", - "end": "2022-04-14T19:46:07.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T19:46:07.590Z", - "end": "2022-04-14T20:33:44.438Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "550277544025522176", - "start": "2022-05-15T19:46:40.233Z", - "end": "2022-05-16T03:42:10.327Z", - "events": [ - { - "start": "2022-05-15T19:46:40.233Z", - "end": "2022-05-15T23:44:25.280Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T23:44:25.280Z", - "end": "2022-05-16T03:42:10.327Z", - "state": "IDLE" - } - ] - }, - { - "user": "147480245458136084", - "game": "518088627234930688", - "start": "2022-05-03T14:33:00.049Z", - "end": "2022-05-03T15:47:21.107Z", - "events": [ - { - "start": "2022-05-03T14:33:00.049Z", - "end": "2022-05-03T14:57:47.068Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T14:57:47.068Z", - "end": "2022-05-03T15:22:34.087Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T15:22:34.087Z", - "end": "2022-05-03T15:47:21.106Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "356875221078245376", - "start": "2022-04-14T19:27:56.192Z", - "end": "2022-04-14T19:44:07.748Z", - "events": [ - { - "start": "2022-04-14T19:27:56.192Z", - "end": "2022-04-14T19:36:01.970Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T19:36:01.970Z", - "end": "2022-04-14T19:44:07.748Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "695941172337689379", - "game": "535869836748783616", - "start": "2022-04-22T12:19:15.787Z", - "end": "2022-04-22T18:25:15.244Z", - "events": [ - { - "start": "2022-04-22T12:19:15.787Z", - "end": "2022-04-22T18:25:15.244Z", - "state": "IDLE" - } - ] - }, - { - "user": "608700383891121851", - "game": "512789427462995988", - "start": "2022-05-28T18:43:41.840Z", - "end": "2022-05-29T02:43:35.008Z", - "events": [ - { - "start": "2022-05-28T18:43:41.840Z", - "end": "2022-05-29T02:43:35.008Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "512501896896970762", - "start": "2022-07-23T13:41:12.632Z", - "end": "2022-07-23T19:58:22.156Z", - "events": [ - { - "start": "2022-07-23T13:41:12.632Z", - "end": "2022-07-23T16:49:47.394Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T16:49:47.394Z", - "end": "2022-07-23T19:58:22.156Z", - "state": "IDLE" - } - ] - }, - { - "user": "329429619186234053", - "game": "535869836748783616", - "start": "2022-05-27T22:26:32.880Z", - "end": "2022-05-28T05:38:38.301Z", - "events": [ - { - "start": "2022-05-27T22:26:32.880Z", - "end": "2022-05-27T23:52:57.964Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T23:52:57.964Z", - "end": "2022-05-28T01:19:23.048Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T01:19:23.048Z", - "end": "2022-05-28T02:45:48.132Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T02:45:48.132Z", - "end": "2022-05-28T04:12:13.216Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T04:12:13.216Z", - "end": "2022-05-28T05:38:38.300Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "540120593576493057", - "start": "2022-05-30T15:19:45.622Z", - "end": "2022-05-30T17:21:25.767Z", - "events": [ - { - "start": "2022-05-30T15:19:45.622Z", - "end": "2022-05-30T17:21:25.767Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "385692164951394422", - "game": "553697181249437716", - "start": "2022-07-04T06:16:27.053Z", - "end": "2022-07-04T07:01:11.891Z", - "events": [ - { - "start": "2022-07-04T06:16:27.053Z", - "end": "2022-07-04T06:38:49.472Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T06:38:49.472Z", - "end": "2022-07-04T07:01:11.891Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "137536289023624121", - "game": "553697181249437716", - "start": "2022-07-02T13:51:01.274Z", - "end": "2022-07-02T23:06:42.945Z", - "events": [ - { - "start": "2022-07-02T13:51:01.274Z", - "end": "2022-07-02T16:09:56.691Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T16:09:56.691Z", - "end": "2022-07-02T18:28:52.108Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T18:28:52.108Z", - "end": "2022-07-02T20:47:47.525Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T20:47:47.525Z", - "end": "2022-07-02T23:06:42.942Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "521350927850935744", - "game": "614380482620293151", - "start": "2022-05-28T02:49:49.817Z", - "end": "2022-05-28T08:25:14.973Z", - "events": [ - { - "start": "2022-05-28T02:49:49.817Z", - "end": "2022-05-28T03:56:54.848Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T03:56:54.848Z", - "end": "2022-05-28T05:03:59.879Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T05:03:59.879Z", - "end": "2022-05-28T06:11:04.910Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T06:11:04.910Z", - "end": "2022-05-28T07:18:09.941Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T07:18:09.941Z", - "end": "2022-05-28T08:25:14.972Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "494763633796983404", - "game": "560781100197216267", - "start": "2022-08-06T12:03:27.839Z", - "end": "2022-08-06T12:44:27.643Z", - "events": [ - { - "start": "2022-08-06T12:03:27.839Z", - "end": "2022-08-06T12:17:07.773Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T12:17:07.773Z", - "end": "2022-08-06T12:30:47.707Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T12:30:47.707Z", - "end": "2022-08-06T12:44:27.641Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "406850294055619241", - "game": "549512435585908756", - "start": "2022-05-26T22:00:45.504Z", - "end": "2022-05-27T06:05:18.465Z", - "events": [ - { - "start": "2022-05-26T22:00:45.504Z", - "end": "2022-05-27T06:05:18.465Z", - "state": "IDLE" - } - ] - }, - { - "user": "467658810442648809", - "game": "554573307161214977", - "start": "2022-07-13T13:08:11.463Z", - "end": "2022-07-13T18:27:04.588Z", - "events": [ - { - "start": "2022-07-13T13:08:11.463Z", - "end": "2022-07-13T14:54:29.171Z", - "state": "IDLE" - }, - { - "start": "2022-07-13T14:54:29.171Z", - "end": "2022-07-13T16:40:46.879Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T16:40:46.879Z", - "end": "2022-07-13T18:27:04.587Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "518088627234930688", - "start": "2022-05-26T13:15:14.257Z", - "end": "2022-05-26T21:01:14.172Z", - "events": [ - { - "start": "2022-05-26T13:15:14.257Z", - "end": "2022-05-26T17:08:14.214Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T17:08:14.214Z", - "end": "2022-05-26T21:01:14.171Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "512498684211232768", - "start": "2022-04-25T17:03:21.199Z", - "end": "2022-04-25T17:16:59.002Z", - "events": [ - { - "start": "2022-04-25T17:03:21.199Z", - "end": "2022-04-25T17:06:04.759Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T17:06:04.759Z", - "end": "2022-04-25T17:08:48.319Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T17:08:48.319Z", - "end": "2022-04-25T17:11:31.879Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T17:11:31.879Z", - "end": "2022-04-25T17:14:15.439Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T17:14:15.439Z", - "end": "2022-04-25T17:16:58.999Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "514228311661084682", - "start": "2022-06-22T08:19:03.881Z", - "end": "2022-06-22T12:05:32.729Z", - "events": [ - { - "start": "2022-06-22T08:19:03.881Z", - "end": "2022-06-22T12:05:32.729Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "394970121077311909", - "game": "519644267212177418", - "start": "2022-07-28T04:12:53.675Z", - "end": "2022-07-28T11:37:07.335Z", - "events": [ - { - "start": "2022-07-28T04:12:53.675Z", - "end": "2022-07-28T06:40:58.228Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-28T06:40:58.228Z", - "end": "2022-07-28T09:09:02.781Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T09:09:02.781Z", - "end": "2022-07-28T11:37:07.334Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "866600263421429886", - "game": "576482762446602270", - "start": "2022-04-25T04:59:16.312Z", - "end": "2022-04-25T07:34:23.857Z", - "events": [ - { - "start": "2022-04-25T04:59:16.312Z", - "end": "2022-04-25T05:30:17.821Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-25T05:30:17.821Z", - "end": "2022-04-25T06:01:19.330Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-25T06:01:19.330Z", - "end": "2022-04-25T06:32:20.839Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-25T06:32:20.839Z", - "end": "2022-04-25T07:03:22.348Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-25T07:03:22.348Z", - "end": "2022-04-25T07:34:23.857Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "553697181249437716", - "start": "2022-06-08T02:05:25.321Z", - "end": "2022-06-08T03:15:59.761Z", - "events": [ - { - "start": "2022-06-08T02:05:25.321Z", - "end": "2022-06-08T02:28:56.801Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-08T02:28:56.801Z", - "end": "2022-06-08T02:52:28.281Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T02:52:28.281Z", - "end": "2022-06-08T03:15:59.761Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "512699108809637890", - "start": "2022-05-19T19:17:29.858Z", - "end": "2022-05-20T02:50:42.288Z", - "events": [ - { - "start": "2022-05-19T19:17:29.858Z", - "end": "2022-05-19T21:10:47.965Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T21:10:47.965Z", - "end": "2022-05-19T23:04:06.072Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T23:04:06.072Z", - "end": "2022-05-20T00:57:24.179Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-20T00:57:24.179Z", - "end": "2022-05-20T02:50:42.286Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "131482253203487270", - "game": "553697181249437716", - "start": "2022-05-30T09:14:30.546Z", - "end": "2022-05-30T11:07:06.715Z", - "events": [ - { - "start": "2022-05-30T09:14:30.546Z", - "end": "2022-05-30T09:52:02.602Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T09:52:02.602Z", - "end": "2022-05-30T10:29:34.658Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T10:29:34.658Z", - "end": "2022-05-30T11:07:06.714Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "494763633796983404", - "game": "614380482620293151", - "start": "2022-08-03T15:21:53.186Z", - "end": "2022-08-03T22:56:04.560Z", - "events": [ - { - "start": "2022-08-03T15:21:53.186Z", - "end": "2022-08-03T17:53:16.977Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T17:53:16.977Z", - "end": "2022-08-03T20:24:40.768Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T20:24:40.768Z", - "end": "2022-08-03T22:56:04.559Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "584069374462394368", - "start": "2022-04-27T14:53:39.561Z", - "end": "2022-04-28T00:47:32.080Z", - "events": [ - { - "start": "2022-04-27T14:53:39.561Z", - "end": "2022-04-27T19:50:35.820Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T19:50:35.820Z", - "end": "2022-04-28T00:47:32.079Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "520462578061803588", - "start": "2022-05-11T05:53:05.461Z", - "end": "2022-05-11T08:36:00.537Z", - "events": [ - { - "start": "2022-05-11T05:53:05.461Z", - "end": "2022-05-11T06:47:23.819Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T06:47:23.819Z", - "end": "2022-05-11T07:41:42.177Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T07:41:42.177Z", - "end": "2022-05-11T08:36:00.535Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "131482253203487270", - "game": "597860020935327787", - "start": "2022-07-02T07:24:02.329Z", - "end": "2022-07-02T08:25:53.172Z", - "events": [ - { - "start": "2022-07-02T07:24:02.329Z", - "end": "2022-07-02T07:54:57.750Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T07:54:57.750Z", - "end": "2022-07-02T08:25:53.171Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "841397740041930984", - "game": "528145079819436043", - "start": "2022-07-17T23:14:27.034Z", - "end": "2022-07-18T04:27:39.006Z", - "events": [ - { - "start": "2022-07-17T23:14:27.034Z", - "end": "2022-07-18T00:58:51.024Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T00:58:51.024Z", - "end": "2022-07-18T02:43:15.014Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T02:43:15.014Z", - "end": "2022-07-18T04:27:39.004Z", - "state": "IDLE" - } - ] - }, - { - "user": "106607193284486979", - "game": "575412499399180288", - "start": "2022-06-30T23:00:49.973Z", - "end": "2022-07-01T01:22:23.630Z", - "events": [ - { - "start": "2022-06-30T23:00:49.973Z", - "end": "2022-07-01T00:11:36.801Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T00:11:36.801Z", - "end": "2022-07-01T01:22:23.629Z", - "state": "IDLE" - } - ] - }, - { - "user": "153631479524744694", - "game": "575412499399180288", - "start": "2022-06-07T06:45:31.875Z", - "end": "2022-06-07T10:06:10.024Z", - "events": [ - { - "start": "2022-06-07T06:45:31.875Z", - "end": "2022-06-07T07:35:41.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-07T07:35:41.412Z", - "end": "2022-06-07T08:25:50.949Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T08:25:50.949Z", - "end": "2022-06-07T09:16:00.486Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T09:16:00.486Z", - "end": "2022-06-07T10:06:10.023Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "747381962738157784", - "game": "512498684211232768", - "start": "2022-04-15T07:20:04.956Z", - "end": "2022-04-15T12:25:37.801Z", - "events": [ - { - "start": "2022-04-15T07:20:04.956Z", - "end": "2022-04-15T08:36:28.167Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-15T08:36:28.167Z", - "end": "2022-04-15T09:52:51.378Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T09:52:51.378Z", - "end": "2022-04-15T11:09:14.589Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T11:09:14.589Z", - "end": "2022-04-15T12:25:37.800Z", - "state": "IDLE" - } - ] - }, - { - "user": "549054179973094329", - "game": "575412499399180288", - "start": "2022-04-14T23:36:10.494Z", - "end": "2022-04-15T01:15:58.194Z", - "events": [ - { - "start": "2022-04-14T23:36:10.494Z", - "end": "2022-04-15T01:15:58.194Z", - "state": "IDLE" - } - ] - }, - { - "user": "695941172337689379", - "game": "356875221078245376", - "start": "2022-07-06T19:04:29.970Z", - "end": "2022-07-06T23:57:26.885Z", - "events": [ - { - "start": "2022-07-06T19:04:29.970Z", - "end": "2022-07-06T20:42:08.941Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T20:42:08.941Z", - "end": "2022-07-06T22:19:47.912Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T22:19:47.912Z", - "end": "2022-07-06T23:57:26.883Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "575412499399180288", - "start": "2022-05-11T23:00:25.961Z", - "end": "2022-05-12T02:37:38.840Z", - "events": [ - { - "start": "2022-05-11T23:00:25.961Z", - "end": "2022-05-12T00:49:02.400Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T00:49:02.400Z", - "end": "2022-05-12T02:37:38.839Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "584489284152985092", - "game": "535869836748783616", - "start": "2022-06-11T14:33:10.557Z", - "end": "2022-06-11T22:47:11.897Z", - "events": [ - { - "start": "2022-06-11T14:33:10.557Z", - "end": "2022-06-11T16:11:58.825Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T16:11:58.825Z", - "end": "2022-06-11T17:50:47.093Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-11T17:50:47.093Z", - "end": "2022-06-11T19:29:35.361Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-11T19:29:35.361Z", - "end": "2022-06-11T21:08:23.629Z", - "state": "IDLE" - }, - { - "start": "2022-06-11T21:08:23.629Z", - "end": "2022-06-11T22:47:11.897Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "519644267212177418", - "start": "2022-08-03T14:08:22.068Z", - "end": "2022-08-03T19:41:50.732Z", - "events": [ - { - "start": "2022-08-03T14:08:22.068Z", - "end": "2022-08-03T16:55:06.400Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T16:55:06.400Z", - "end": "2022-08-03T19:41:50.732Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "101572134856427564", - "game": "614448244260339712", - "start": "2022-04-23T10:36:54.041Z", - "end": "2022-04-23T19:03:25.298Z", - "events": [ - { - "start": "2022-04-23T10:36:54.041Z", - "end": "2022-04-23T12:18:12.292Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-23T12:18:12.292Z", - "end": "2022-04-23T13:59:30.543Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-23T13:59:30.543Z", - "end": "2022-04-23T15:40:48.794Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T15:40:48.794Z", - "end": "2022-04-23T17:22:07.045Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-23T17:22:07.045Z", - "end": "2022-04-23T19:03:25.296Z", - "state": "IDLE" - } - ] - }, - { - "user": "101572134856427564", - "game": "512789343157485602", - "start": "2022-06-06T21:59:22.987Z", - "end": "2022-06-07T01:01:49.447Z", - "events": [ - { - "start": "2022-06-06T21:59:22.987Z", - "end": "2022-06-06T22:44:59.602Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T22:44:59.602Z", - "end": "2022-06-06T23:30:36.217Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T23:30:36.217Z", - "end": "2022-06-07T00:16:12.832Z", - "state": "IDLE" - }, - { - "start": "2022-06-07T00:16:12.832Z", - "end": "2022-06-07T01:01:49.447Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "715446191320920764", - "game": "511619499053678668", - "start": "2022-05-02T23:17:23.978Z", - "end": "2022-05-03T05:34:17.923Z", - "events": [ - { - "start": "2022-05-02T23:17:23.978Z", - "end": "2022-05-03T02:25:50.950Z", - "state": "IDLE" - }, - { - "start": "2022-05-03T02:25:50.950Z", - "end": "2022-05-03T05:34:17.922Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "625617695768437507", - "game": "576482762446602270", - "start": "2022-05-15T03:38:08.985Z", - "end": "2022-05-15T04:50:49.467Z", - "events": [ - { - "start": "2022-05-15T03:38:08.985Z", - "end": "2022-05-15T04:02:22.479Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T04:02:22.479Z", - "end": "2022-05-15T04:26:35.973Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T04:26:35.973Z", - "end": "2022-05-15T04:50:49.467Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "200801427122341912", - "game": "520453007578628124", - "start": "2022-07-31T02:59:55.734Z", - "end": "2022-07-31T04:32:26.356Z", - "events": [ - { - "start": "2022-07-31T02:59:55.734Z", - "end": "2022-07-31T03:23:03.389Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-31T03:23:03.389Z", - "end": "2022-07-31T03:46:11.044Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T03:46:11.044Z", - "end": "2022-07-31T04:09:18.699Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-31T04:09:18.699Z", - "end": "2022-07-31T04:32:26.354Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "546175179542364160", - "start": "2022-04-13T13:12:05.037Z", - "end": "2022-04-13T22:15:31.776Z", - "events": [ - { - "start": "2022-04-13T13:12:05.037Z", - "end": "2022-04-13T15:00:46.384Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-13T15:00:46.384Z", - "end": "2022-04-13T16:49:27.731Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T16:49:27.731Z", - "end": "2022-04-13T18:38:09.078Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-13T18:38:09.078Z", - "end": "2022-04-13T20:26:50.425Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T20:26:50.425Z", - "end": "2022-04-13T22:15:31.772Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "510690749854514547", - "game": "554573307161214977", - "start": "2022-06-04T16:30:31.844Z", - "end": "2022-06-04T21:57:57.074Z", - "events": [ - { - "start": "2022-06-04T16:30:31.844Z", - "end": "2022-06-04T18:19:40.254Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T18:19:40.254Z", - "end": "2022-06-04T20:08:48.664Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T20:08:48.664Z", - "end": "2022-06-04T21:57:57.074Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "592976500802846750", - "start": "2022-05-14T06:43:48.403Z", - "end": "2022-05-14T11:53:47.173Z", - "events": [ - { - "start": "2022-05-14T06:43:48.403Z", - "end": "2022-05-14T08:01:18.095Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T08:01:18.095Z", - "end": "2022-05-14T09:18:47.787Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T09:18:47.787Z", - "end": "2022-05-14T10:36:17.479Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T10:36:17.479Z", - "end": "2022-05-14T11:53:47.171Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "512501896896970762", - "start": "2022-07-08T17:59:24.833Z", - "end": "2022-07-09T01:16:12.269Z", - "events": [ - { - "start": "2022-07-08T17:59:24.833Z", - "end": "2022-07-09T01:16:12.269Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "512789120234422301", - "start": "2022-06-05T22:00:46.818Z", - "end": "2022-06-06T07:06:52.804Z", - "events": [ - { - "start": "2022-06-05T22:00:46.818Z", - "end": "2022-06-05T23:50:00.015Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T23:50:00.015Z", - "end": "2022-06-06T01:39:13.212Z", - "state": "IDLE" - }, - { - "start": "2022-06-06T01:39:13.212Z", - "end": "2022-06-06T03:28:26.409Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T03:28:26.409Z", - "end": "2022-06-06T05:17:39.606Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T05:17:39.606Z", - "end": "2022-06-06T07:06:52.803Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "200801427122341912", - "game": "614380482620293151", - "start": "2022-05-24T11:09:44.499Z", - "end": "2022-05-24T20:57:23.870Z", - "events": [ - { - "start": "2022-05-24T11:09:44.499Z", - "end": "2022-05-24T16:03:34.184Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T16:03:34.184Z", - "end": "2022-05-24T20:57:23.869Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "922664752332558395", - "game": "554921822626381879", - "start": "2022-05-26T00:58:35.032Z", - "end": "2022-05-26T02:24:26.321Z", - "events": [ - { - "start": "2022-05-26T00:58:35.032Z", - "end": "2022-05-26T01:27:12.128Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T01:27:12.128Z", - "end": "2022-05-26T01:55:49.224Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T01:55:49.224Z", - "end": "2022-05-26T02:24:26.320Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "519644368735567873", - "start": "2022-04-18T18:30:36.308Z", - "end": "2022-04-19T00:09:15.287Z", - "events": [ - { - "start": "2022-04-18T18:30:36.308Z", - "end": "2022-04-18T19:38:20.103Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T19:38:20.103Z", - "end": "2022-04-18T20:46:03.898Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T20:46:03.898Z", - "end": "2022-04-18T21:53:47.693Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T21:53:47.693Z", - "end": "2022-04-18T23:01:31.488Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T23:01:31.488Z", - "end": "2022-04-19T00:09:15.283Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "572456126872944651", - "start": "2022-05-03T08:08:05.233Z", - "end": "2022-05-03T12:41:22.459Z", - "events": [ - { - "start": "2022-05-03T08:08:05.233Z", - "end": "2022-05-03T09:16:24.539Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-03T09:16:24.539Z", - "end": "2022-05-03T10:24:43.845Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T10:24:43.845Z", - "end": "2022-05-03T11:33:03.151Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-03T11:33:03.151Z", - "end": "2022-05-03T12:41:22.457Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "596421190780633864", - "game": "535384357536399404", - "start": "2022-05-10T01:19:32.531Z", - "end": "2022-05-10T10:26:58.071Z", - "events": [ - { - "start": "2022-05-10T01:19:32.531Z", - "end": "2022-05-10T03:09:01.639Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T03:09:01.639Z", - "end": "2022-05-10T04:58:30.747Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T04:58:30.747Z", - "end": "2022-05-10T06:47:59.855Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T06:47:59.855Z", - "end": "2022-05-10T08:37:28.963Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T08:37:28.963Z", - "end": "2022-05-10T10:26:58.071Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "866600263421429886", - "game": "519644368735567873", - "start": "2022-06-26T05:52:51.449Z", - "end": "2022-06-26T09:04:56.235Z", - "events": [ - { - "start": "2022-06-26T05:52:51.449Z", - "end": "2022-06-26T07:28:53.842Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-26T07:28:53.842Z", - "end": "2022-06-26T09:04:56.235Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "541104083732114799", - "game": "554573307161214977", - "start": "2022-07-10T00:17:01.377Z", - "end": "2022-07-10T04:51:25.434Z", - "events": [ - { - "start": "2022-07-10T00:17:01.377Z", - "end": "2022-07-10T01:48:29.396Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-10T01:48:29.396Z", - "end": "2022-07-10T03:19:57.415Z", - "state": "IDLE" - }, - { - "start": "2022-07-10T03:19:57.415Z", - "end": "2022-07-10T04:51:25.434Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "597588168178663434", - "start": "2022-05-27T17:33:03.797Z", - "end": "2022-05-27T23:05:02.091Z", - "events": [ - { - "start": "2022-05-27T17:33:03.797Z", - "end": "2022-05-27T19:23:43.228Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T19:23:43.228Z", - "end": "2022-05-27T21:14:22.659Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T21:14:22.659Z", - "end": "2022-05-27T23:05:02.090Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "512789120234422301", - "start": "2022-05-06T02:37:22.613Z", - "end": "2022-05-06T07:41:57.151Z", - "events": [ - { - "start": "2022-05-06T02:37:22.613Z", - "end": "2022-05-06T03:53:31.247Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T03:53:31.247Z", - "end": "2022-05-06T05:09:39.881Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T05:09:39.881Z", - "end": "2022-05-06T06:25:48.515Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-06T06:25:48.515Z", - "end": "2022-05-06T07:41:57.149Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "510199020782747732", - "start": "2022-06-06T16:39:37.937Z", - "end": "2022-06-06T20:20:50.799Z", - "events": [ - { - "start": "2022-06-06T16:39:37.937Z", - "end": "2022-06-06T17:53:22.224Z", - "state": "IDLE" - }, - { - "start": "2022-06-06T17:53:22.224Z", - "end": "2022-06-06T19:07:06.511Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T19:07:06.511Z", - "end": "2022-06-06T20:20:50.798Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "791267126190249625", - "game": "520453007578628124", - "start": "2022-07-21T09:53:32.607Z", - "end": "2022-07-21T12:05:39.495Z", - "events": [ - { - "start": "2022-07-21T09:53:32.607Z", - "end": "2022-07-21T10:37:34.903Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T10:37:34.903Z", - "end": "2022-07-21T11:21:37.199Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T11:21:37.199Z", - "end": "2022-07-21T12:05:39.495Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "553697181249437716", - "start": "2022-05-26T00:28:22.266Z", - "end": "2022-05-26T02:36:35.926Z", - "events": [ - { - "start": "2022-05-26T00:28:22.266Z", - "end": "2022-05-26T02:36:35.926Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "614380482620293151", - "start": "2022-05-15T23:08:36.116Z", - "end": "2022-05-16T07:59:29.000Z", - "events": [ - { - "start": "2022-05-15T23:08:36.116Z", - "end": "2022-05-16T02:05:33.744Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T02:05:33.744Z", - "end": "2022-05-16T05:02:31.372Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T05:02:31.372Z", - "end": "2022-05-16T07:59:29.000Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "508057374875975682", - "start": "2022-07-11T21:44:57.012Z", - "end": "2022-07-11T22:19:10.301Z", - "events": [ - { - "start": "2022-07-11T21:44:57.012Z", - "end": "2022-07-11T22:19:10.301Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "614448244260339712", - "start": "2022-06-27T14:06:46.878Z", - "end": "2022-06-27T16:56:21.847Z", - "events": [ - { - "start": "2022-06-27T14:06:46.878Z", - "end": "2022-06-27T14:49:10.620Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T14:49:10.620Z", - "end": "2022-06-27T15:31:34.362Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T15:31:34.362Z", - "end": "2022-06-27T16:13:58.104Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T16:13:58.104Z", - "end": "2022-06-27T16:56:21.846Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "565341641427124244", - "start": "2022-06-06T02:40:47.819Z", - "end": "2022-06-06T08:24:59.691Z", - "events": [ - { - "start": "2022-06-06T02:40:47.819Z", - "end": "2022-06-06T04:35:31.776Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T04:35:31.776Z", - "end": "2022-06-06T06:30:15.733Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T06:30:15.733Z", - "end": "2022-06-06T08:24:59.690Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "768513326430993269", - "game": "518088627234930688", - "start": "2022-07-17T14:02:02.756Z", - "end": "2022-07-17T20:52:08.851Z", - "events": [ - { - "start": "2022-07-17T14:02:02.756Z", - "end": "2022-07-17T16:18:44.787Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T16:18:44.787Z", - "end": "2022-07-17T18:35:26.818Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-17T18:35:26.818Z", - "end": "2022-07-17T20:52:08.849Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951234649334557435", - "game": "565341641427124244", - "start": "2022-06-03T22:27:28.463Z", - "end": "2022-06-04T07:54:38.815Z", - "events": [ - { - "start": "2022-06-03T22:27:28.463Z", - "end": "2022-06-04T03:11:03.639Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T03:11:03.639Z", - "end": "2022-06-04T07:54:38.815Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "922664752332558395", - "game": "592976500802846750", - "start": "2022-07-20T23:14:14.152Z", - "end": "2022-07-21T03:30:30.827Z", - "events": [ - { - "start": "2022-07-20T23:14:14.152Z", - "end": "2022-07-21T00:18:18.320Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T00:18:18.320Z", - "end": "2022-07-21T01:22:22.488Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T01:22:22.488Z", - "end": "2022-07-21T02:26:26.656Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T02:26:26.656Z", - "end": "2022-07-21T03:30:30.824Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "658550407298256890", - "game": "572456126872944651", - "start": "2022-07-11T23:25:35.248Z", - "end": "2022-07-12T04:35:10.951Z", - "events": [ - { - "start": "2022-07-11T23:25:35.248Z", - "end": "2022-07-12T00:42:59.173Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T00:42:59.173Z", - "end": "2022-07-12T02:00:23.098Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T02:00:23.098Z", - "end": "2022-07-12T03:17:47.023Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T03:17:47.023Z", - "end": "2022-07-12T04:35:10.948Z", - "state": "IDLE" - } - ] - }, - { - "user": "549054179973094329", - "game": "512789343157485602", - "start": "2022-05-17T03:18:38.407Z", - "end": "2022-05-17T07:08:19.709Z", - "events": [ - { - "start": "2022-05-17T03:18:38.407Z", - "end": "2022-05-17T04:04:34.667Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T04:04:34.667Z", - "end": "2022-05-17T04:50:30.927Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T04:50:30.927Z", - "end": "2022-05-17T05:36:27.187Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T05:36:27.187Z", - "end": "2022-05-17T06:22:23.447Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T06:22:23.447Z", - "end": "2022-05-17T07:08:19.707Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "747381962738157784", - "game": "606163888052109312", - "start": "2022-06-22T15:43:52.351Z", - "end": "2022-06-22T18:04:48.422Z", - "events": [ - { - "start": "2022-06-22T15:43:52.351Z", - "end": "2022-06-22T18:04:48.422Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "198010595767135394", - "game": "530454325214969866", - "start": "2022-07-02T03:50:05.771Z", - "end": "2022-07-02T13:50:11.867Z", - "events": [ - { - "start": "2022-07-02T03:50:05.771Z", - "end": "2022-07-02T07:10:07.803Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T07:10:07.803Z", - "end": "2022-07-02T10:30:09.835Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T10:30:09.835Z", - "end": "2022-07-02T13:50:11.867Z", - "state": "IDLE" - } - ] - }, - { - "user": "161887854890745672", - "game": "535384357536399404", - "start": "2022-05-19T02:50:21.787Z", - "end": "2022-05-19T05:17:57.503Z", - "events": [ - { - "start": "2022-05-19T02:50:21.787Z", - "end": "2022-05-19T05:17:57.503Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "841397740041930984", - "game": "569008830701240340", - "start": "2022-08-02T09:12:28.406Z", - "end": "2022-08-02T11:06:32.430Z", - "events": [ - { - "start": "2022-08-02T09:12:28.406Z", - "end": "2022-08-02T09:35:17.210Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T09:35:17.210Z", - "end": "2022-08-02T09:58:06.014Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T09:58:06.014Z", - "end": "2022-08-02T10:20:54.818Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T10:20:54.818Z", - "end": "2022-08-02T10:43:43.622Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T10:43:43.622Z", - "end": "2022-08-02T11:06:32.426Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "541104083732114799", - "game": "356875221078245376", - "start": "2022-07-30T16:10:34.016Z", - "end": "2022-07-30T21:33:58.902Z", - "events": [ - { - "start": "2022-07-30T16:10:34.016Z", - "end": "2022-07-30T17:15:14.993Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-30T17:15:14.993Z", - "end": "2022-07-30T18:19:55.970Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T18:19:55.970Z", - "end": "2022-07-30T19:24:36.947Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T19:24:36.947Z", - "end": "2022-07-30T20:29:17.924Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T20:29:17.924Z", - "end": "2022-07-30T21:33:58.901Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "596421190780633864", - "game": "558547388583772201", - "start": "2022-04-27T18:57:31.827Z", - "end": "2022-04-28T00:21:10.271Z", - "events": [ - { - "start": "2022-04-27T18:57:31.827Z", - "end": "2022-04-27T20:45:24.641Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T20:45:24.641Z", - "end": "2022-04-27T22:33:17.455Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T22:33:17.455Z", - "end": "2022-04-28T00:21:10.269Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "576482762446602270", - "start": "2022-07-26T14:17:38.356Z", - "end": "2022-07-26T20:22:37.614Z", - "events": [ - { - "start": "2022-07-26T14:17:38.356Z", - "end": "2022-07-26T20:22:37.614Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "520453007578628124", - "start": "2022-05-13T08:38:56.279Z", - "end": "2022-05-13T15:14:39.782Z", - "events": [ - { - "start": "2022-05-13T08:38:56.279Z", - "end": "2022-05-13T15:14:39.782Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "590467327095087095", - "game": "512699108809637890", - "start": "2022-04-28T16:38:47.736Z", - "end": "2022-04-28T17:41:16.812Z", - "events": [ - { - "start": "2022-04-28T16:38:47.736Z", - "end": "2022-04-28T16:59:37.428Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T16:59:37.428Z", - "end": "2022-04-28T17:20:27.120Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T17:20:27.120Z", - "end": "2022-04-28T17:41:16.812Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "394970121077311909", - "game": "592976500802846750", - "start": "2022-06-09T18:39:56.191Z", - "end": "2022-06-09T18:57:29.987Z", - "events": [ - { - "start": "2022-06-09T18:39:56.191Z", - "end": "2022-06-09T18:57:29.987Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "521842831262875670", - "start": "2022-05-01T23:21:35.835Z", - "end": "2022-05-02T07:11:12.334Z", - "events": [ - { - "start": "2022-05-01T23:21:35.835Z", - "end": "2022-05-02T01:18:59.959Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T01:18:59.959Z", - "end": "2022-05-02T03:16:24.083Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T03:16:24.083Z", - "end": "2022-05-02T05:13:48.207Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T05:13:48.207Z", - "end": "2022-05-02T07:11:12.331Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "554573307161214977", - "start": "2022-07-28T07:41:23.954Z", - "end": "2022-07-28T16:24:31.015Z", - "events": [ - { - "start": "2022-07-28T07:41:23.954Z", - "end": "2022-07-28T09:26:01.366Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T09:26:01.366Z", - "end": "2022-07-28T11:10:38.778Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T11:10:38.778Z", - "end": "2022-07-28T12:55:16.190Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T12:55:16.190Z", - "end": "2022-07-28T14:39:53.602Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-28T14:39:53.602Z", - "end": "2022-07-28T16:24:31.014Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "569008830701240340", - "start": "2022-06-03T21:14:03.977Z", - "end": "2022-06-04T01:12:25.895Z", - "events": [ - { - "start": "2022-06-03T21:14:03.977Z", - "end": "2022-06-03T22:01:44.360Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T22:01:44.360Z", - "end": "2022-06-03T22:49:24.743Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T22:49:24.743Z", - "end": "2022-06-03T23:37:05.126Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T23:37:05.126Z", - "end": "2022-06-04T00:24:45.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T00:24:45.509Z", - "end": "2022-06-04T01:12:25.892Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "900234800332446962", - "game": "530454325214969866", - "start": "2022-04-25T07:42:43.865Z", - "end": "2022-04-25T12:53:46.887Z", - "events": [ - { - "start": "2022-04-25T07:42:43.865Z", - "end": "2022-04-25T10:18:15.376Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T10:18:15.376Z", - "end": "2022-04-25T12:53:46.887Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "535384357536399404", - "start": "2022-07-20T03:02:15.661Z", - "end": "2022-07-20T04:29:55.768Z", - "events": [ - { - "start": "2022-07-20T03:02:15.661Z", - "end": "2022-07-20T03:19:47.682Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T03:19:47.682Z", - "end": "2022-07-20T03:37:19.703Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T03:37:19.703Z", - "end": "2022-07-20T03:54:51.724Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T03:54:51.724Z", - "end": "2022-07-20T04:12:23.745Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T04:12:23.745Z", - "end": "2022-07-20T04:29:55.766Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "518088627234930688", - "start": "2022-06-30T07:41:04.001Z", - "end": "2022-06-30T17:18:07.666Z", - "events": [ - { - "start": "2022-06-30T07:41:04.001Z", - "end": "2022-06-30T17:18:07.666Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "356875221078245376", - "start": "2022-06-20T09:17:12.029Z", - "end": "2022-06-20T14:26:23.152Z", - "events": [ - { - "start": "2022-06-20T09:17:12.029Z", - "end": "2022-06-20T11:51:47.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T11:51:47.590Z", - "end": "2022-06-20T14:26:23.151Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "560781100197216267", - "start": "2022-08-05T07:20:02.546Z", - "end": "2022-08-05T15:33:34.806Z", - "events": [ - { - "start": "2022-08-05T07:20:02.546Z", - "end": "2022-08-05T08:58:44.998Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T08:58:44.998Z", - "end": "2022-08-05T10:37:27.450Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T10:37:27.450Z", - "end": "2022-08-05T12:16:09.902Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-05T12:16:09.902Z", - "end": "2022-08-05T13:54:52.354Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T13:54:52.354Z", - "end": "2022-08-05T15:33:34.806Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "457796054587169483", - "game": "614448244260339712", - "start": "2022-04-14T16:40:03.991Z", - "end": "2022-04-14T21:56:24.346Z", - "events": [ - { - "start": "2022-04-14T16:40:03.991Z", - "end": "2022-04-14T21:56:24.346Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "530454325214969866", - "start": "2022-05-17T04:59:04.940Z", - "end": "2022-05-17T07:01:35.666Z", - "events": [ - { - "start": "2022-05-17T04:59:04.940Z", - "end": "2022-05-17T05:23:35.085Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T05:23:35.085Z", - "end": "2022-05-17T05:48:05.230Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T05:48:05.230Z", - "end": "2022-05-17T06:12:35.375Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T06:12:35.375Z", - "end": "2022-05-17T06:37:05.520Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T06:37:05.520Z", - "end": "2022-05-17T07:01:35.665Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "535384357536399404", - "start": "2022-04-27T19:13:49.655Z", - "end": "2022-04-28T01:08:11.592Z", - "events": [ - { - "start": "2022-04-27T19:13:49.655Z", - "end": "2022-04-28T01:08:11.592Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "841397740041930984", - "game": "512789427462995988", - "start": "2022-08-03T10:35:50.118Z", - "end": "2022-08-03T17:08:41.424Z", - "events": [ - { - "start": "2022-08-03T10:35:50.118Z", - "end": "2022-08-03T11:54:24.379Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T11:54:24.379Z", - "end": "2022-08-03T13:12:58.640Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T13:12:58.640Z", - "end": "2022-08-03T14:31:32.901Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T14:31:32.901Z", - "end": "2022-08-03T15:50:07.162Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T15:50:07.162Z", - "end": "2022-08-03T17:08:41.423Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "938976307338486810", - "game": "526489929631531009", - "start": "2022-04-22T22:59:47.137Z", - "end": "2022-04-23T02:02:33.052Z", - "events": [ - { - "start": "2022-04-22T22:59:47.137Z", - "end": "2022-04-23T02:02:33.052Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "542474758835535872", - "start": "2022-06-07T12:00:16.788Z", - "end": "2022-06-07T12:26:11.029Z", - "events": [ - { - "start": "2022-06-07T12:00:16.788Z", - "end": "2022-06-07T12:13:13.908Z", - "state": "IDLE" - }, - { - "start": "2022-06-07T12:13:13.908Z", - "end": "2022-06-07T12:26:11.028Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "900234800332446962", - "game": "546175179542364160", - "start": "2022-04-22T02:35:52.291Z", - "end": "2022-04-22T12:17:54.683Z", - "events": [ - { - "start": "2022-04-22T02:35:52.291Z", - "end": "2022-04-22T07:26:53.487Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T07:26:53.487Z", - "end": "2022-04-22T12:17:54.683Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "378424071510192465", - "game": "553697181249437716", - "start": "2022-07-11T14:07:30.778Z", - "end": "2022-07-11T16:50:37.749Z", - "events": [ - { - "start": "2022-07-11T14:07:30.778Z", - "end": "2022-07-11T14:40:08.172Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T14:40:08.172Z", - "end": "2022-07-11T15:12:45.566Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T15:12:45.566Z", - "end": "2022-07-11T15:45:22.960Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T15:45:22.960Z", - "end": "2022-07-11T16:18:00.354Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T16:18:00.354Z", - "end": "2022-07-11T16:50:37.748Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "535384357536399404", - "start": "2022-05-01T08:46:25.984Z", - "end": "2022-05-01T17:32:45.409Z", - "events": [ - { - "start": "2022-05-01T08:46:25.984Z", - "end": "2022-05-01T17:32:45.409Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "606163888052109312", - "start": "2022-07-22T15:50:03.252Z", - "end": "2022-07-23T00:42:56.348Z", - "events": [ - { - "start": "2022-07-22T15:50:03.252Z", - "end": "2022-07-22T17:36:37.871Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T17:36:37.871Z", - "end": "2022-07-22T19:23:12.490Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T19:23:12.490Z", - "end": "2022-07-22T21:09:47.109Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T21:09:47.109Z", - "end": "2022-07-22T22:56:21.728Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T22:56:21.728Z", - "end": "2022-07-23T00:42:56.347Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "911848869344266044", - "game": "512789427462995988", - "start": "2022-05-14T04:15:57.127Z", - "end": "2022-05-14T12:20:41.122Z", - "events": [ - { - "start": "2022-05-14T04:15:57.127Z", - "end": "2022-05-14T05:52:53.926Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T05:52:53.926Z", - "end": "2022-05-14T07:29:50.725Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T07:29:50.725Z", - "end": "2022-05-14T09:06:47.524Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T09:06:47.524Z", - "end": "2022-05-14T10:43:44.323Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T10:43:44.323Z", - "end": "2022-05-14T12:20:41.122Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "360264570671216445", - "game": "558547388583772201", - "start": "2022-07-04T17:31:19.808Z", - "end": "2022-07-04T19:56:07.562Z", - "events": [ - { - "start": "2022-07-04T17:31:19.808Z", - "end": "2022-07-04T19:56:07.562Z", - "state": "IDLE" - } - ] - }, - { - "user": "467658810442648809", - "game": "520462578061803588", - "start": "2022-06-26T21:26:04.439Z", - "end": "2022-06-27T04:04:20.683Z", - "events": [ - { - "start": "2022-06-26T21:26:04.439Z", - "end": "2022-06-26T23:05:38.500Z", - "state": "IDLE" - }, - { - "start": "2022-06-26T23:05:38.500Z", - "end": "2022-06-27T00:45:12.561Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T00:45:12.561Z", - "end": "2022-06-27T02:24:46.622Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:24:46.622Z", - "end": "2022-06-27T04:04:20.683Z", - "state": "IDLE" - } - ] - }, - { - "user": "453350270016457959", - "game": "597588168178663434", - "start": "2022-04-22T07:11:32.370Z", - "end": "2022-04-22T12:47:08.931Z", - "events": [ - { - "start": "2022-04-22T07:11:32.370Z", - "end": "2022-04-22T08:18:39.682Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T08:18:39.682Z", - "end": "2022-04-22T09:25:46.994Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T09:25:46.994Z", - "end": "2022-04-22T10:32:54.306Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T10:32:54.306Z", - "end": "2022-04-22T11:40:01.618Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-22T11:40:01.618Z", - "end": "2022-04-22T12:47:08.930Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "535371564850479134", - "start": "2022-07-28T07:23:11.688Z", - "end": "2022-07-28T16:34:45.573Z", - "events": [ - { - "start": "2022-07-28T07:23:11.688Z", - "end": "2022-07-28T16:34:45.573Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786084290971413565", - "game": "700136079562375258", - "start": "2022-06-13T07:13:26.568Z", - "end": "2022-06-13T11:11:34.002Z", - "events": [ - { - "start": "2022-06-13T07:13:26.568Z", - "end": "2022-06-13T08:12:58.426Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-13T08:12:58.426Z", - "end": "2022-06-13T09:12:30.284Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T09:12:30.284Z", - "end": "2022-06-13T10:12:02.142Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T10:12:02.142Z", - "end": "2022-06-13T11:11:34.000Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "512699108809637890", - "start": "2022-07-29T03:27:43.475Z", - "end": "2022-07-29T04:36:43.843Z", - "events": [ - { - "start": "2022-07-29T03:27:43.475Z", - "end": "2022-07-29T03:41:31.548Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T03:41:31.548Z", - "end": "2022-07-29T03:55:19.621Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T03:55:19.621Z", - "end": "2022-07-29T04:09:07.694Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T04:09:07.694Z", - "end": "2022-07-29T04:22:55.767Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T04:22:55.767Z", - "end": "2022-07-29T04:36:43.840Z", - "state": "IDLE" - } - ] - }, - { - "user": "900234800332446962", - "game": "512498684211232768", - "start": "2022-05-05T03:48:40.673Z", - "end": "2022-05-05T09:09:25.372Z", - "events": [ - { - "start": "2022-05-05T03:48:40.673Z", - "end": "2022-05-05T09:09:25.372Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "549054179973094329", - "game": "549512435585908756", - "start": "2022-04-20T11:00:52.700Z", - "end": "2022-04-20T15:53:59.285Z", - "events": [ - { - "start": "2022-04-20T11:00:52.700Z", - "end": "2022-04-20T13:27:25.992Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T13:27:25.992Z", - "end": "2022-04-20T15:53:59.284Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "512699108809637890", - "start": "2022-07-29T13:06:01.761Z", - "end": "2022-07-29T15:22:31.899Z", - "events": [ - { - "start": "2022-07-29T13:06:01.761Z", - "end": "2022-07-29T13:51:31.807Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T13:51:31.807Z", - "end": "2022-07-29T14:37:01.853Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T14:37:01.853Z", - "end": "2022-07-29T15:22:31.899Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "213263852824749877", - "game": "520462578061803588", - "start": "2022-04-18T08:53:15.429Z", - "end": "2022-04-18T15:07:41.255Z", - "events": [ - { - "start": "2022-04-18T08:53:15.429Z", - "end": "2022-04-18T10:08:08.594Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T10:08:08.594Z", - "end": "2022-04-18T11:23:01.759Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-18T11:23:01.759Z", - "end": "2022-04-18T12:37:54.924Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T12:37:54.924Z", - "end": "2022-04-18T13:52:48.089Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T13:52:48.089Z", - "end": "2022-04-18T15:07:41.254Z", - "state": "IDLE" - } - ] - }, - { - "user": "453350270016457959", - "game": "597588168178663434", - "start": "2022-06-10T16:35:31.961Z", - "end": "2022-06-10T23:15:52.082Z", - "events": [ - { - "start": "2022-06-10T16:35:31.961Z", - "end": "2022-06-10T23:15:52.082Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "713444659295913502", - "game": "606163888052109312", - "start": "2022-05-13T00:48:54.656Z", - "end": "2022-05-13T09:40:42.192Z", - "events": [ - { - "start": "2022-05-13T00:48:54.656Z", - "end": "2022-05-13T02:35:16.163Z", - "state": "IDLE" - }, - { - "start": "2022-05-13T02:35:16.163Z", - "end": "2022-05-13T04:21:37.670Z", - "state": "IDLE" - }, - { - "start": "2022-05-13T04:21:37.670Z", - "end": "2022-05-13T06:07:59.177Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-13T06:07:59.177Z", - "end": "2022-05-13T07:54:20.684Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-13T07:54:20.684Z", - "end": "2022-05-13T09:40:42.191Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "514228311661084682", - "start": "2022-04-15T11:31:39.639Z", - "end": "2022-04-15T21:17:36.020Z", - "events": [ - { - "start": "2022-04-15T11:31:39.639Z", - "end": "2022-04-15T21:17:36.020Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "572456126872944651", - "start": "2022-07-27T04:09:56.759Z", - "end": "2022-07-27T10:41:45.464Z", - "events": [ - { - "start": "2022-07-27T04:09:56.759Z", - "end": "2022-07-27T05:28:18.500Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T05:28:18.500Z", - "end": "2022-07-27T06:46:40.241Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T06:46:40.241Z", - "end": "2022-07-27T08:05:01.982Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T08:05:01.982Z", - "end": "2022-07-27T09:23:23.723Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T09:23:23.723Z", - "end": "2022-07-27T10:41:45.464Z", - "state": "IDLE" - } - ] - }, - { - "user": "182925797752958092", - "game": "597588168178663434", - "start": "2022-04-17T14:24:14.222Z", - "end": "2022-04-17T21:55:00.093Z", - "events": [ - { - "start": "2022-04-17T14:24:14.222Z", - "end": "2022-04-17T21:55:00.093Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "597588168178663434", - "start": "2022-05-15T01:42:34.656Z", - "end": "2022-05-15T03:10:29.272Z", - "events": [ - { - "start": "2022-05-15T01:42:34.656Z", - "end": "2022-05-15T03:10:29.272Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "584069374462394368", - "start": "2022-05-08T09:28:55.956Z", - "end": "2022-05-08T14:12:25.744Z", - "events": [ - { - "start": "2022-05-08T09:28:55.956Z", - "end": "2022-05-08T10:25:37.913Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T10:25:37.913Z", - "end": "2022-05-08T11:22:19.870Z", - "state": "IDLE" - }, - { - "start": "2022-05-08T11:22:19.870Z", - "end": "2022-05-08T12:19:01.827Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T12:19:01.827Z", - "end": "2022-05-08T13:15:43.784Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T13:15:43.784Z", - "end": "2022-05-08T14:12:25.741Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "519644267212177418", - "start": "2022-07-04T04:00:07.360Z", - "end": "2022-07-04T05:00:16.332Z", - "events": [ - { - "start": "2022-07-04T04:00:07.360Z", - "end": "2022-07-04T05:00:16.332Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "495724335127362694", - "game": "597588168178663434", - "start": "2022-07-11T22:59:14.331Z", - "end": "2022-07-12T03:28:33.167Z", - "events": [ - { - "start": "2022-07-11T22:59:14.331Z", - "end": "2022-07-12T00:29:00.609Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T00:29:00.609Z", - "end": "2022-07-12T01:58:46.887Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T01:58:46.887Z", - "end": "2022-07-12T03:28:33.165Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "542474758835535872", - "start": "2022-08-01T12:53:46.565Z", - "end": "2022-08-01T22:29:38.582Z", - "events": [ - { - "start": "2022-08-01T12:53:46.565Z", - "end": "2022-08-01T15:17:44.569Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-01T15:17:44.569Z", - "end": "2022-08-01T17:41:42.573Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T17:41:42.573Z", - "end": "2022-08-01T20:05:40.577Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T20:05:40.577Z", - "end": "2022-08-01T22:29:38.581Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "614380482620293151", - "start": "2022-05-27T05:33:39.529Z", - "end": "2022-05-27T09:39:34.482Z", - "events": [ - { - "start": "2022-05-27T05:33:39.529Z", - "end": "2022-05-27T06:22:50.519Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T06:22:50.519Z", - "end": "2022-05-27T07:12:01.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-27T07:12:01.509Z", - "end": "2022-05-27T08:01:12.499Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T08:01:12.499Z", - "end": "2022-05-27T08:50:23.489Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T08:50:23.489Z", - "end": "2022-05-27T09:39:34.479Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "572456126872944651", - "start": "2022-05-02T18:58:10.657Z", - "end": "2022-05-02T23:38:19.363Z", - "events": [ - { - "start": "2022-05-02T18:58:10.657Z", - "end": "2022-05-02T20:08:12.833Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T20:08:12.833Z", - "end": "2022-05-02T21:18:15.009Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T21:18:15.009Z", - "end": "2022-05-02T22:28:17.185Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T22:28:17.185Z", - "end": "2022-05-02T23:38:19.361Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "715446191320920764", - "game": "606163888052109312", - "start": "2022-06-19T19:05:08.362Z", - "end": "2022-06-19T20:49:43.521Z", - "events": [ - { - "start": "2022-06-19T19:05:08.362Z", - "end": "2022-06-19T19:26:03.393Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T19:26:03.393Z", - "end": "2022-06-19T19:46:58.424Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T19:46:58.424Z", - "end": "2022-06-19T20:07:53.455Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T20:07:53.455Z", - "end": "2022-06-19T20:28:48.486Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T20:28:48.486Z", - "end": "2022-06-19T20:49:43.517Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "355708392202112685", - "game": "588739017718366208", - "start": "2022-06-21T17:21:05.360Z", - "end": "2022-06-21T19:18:09.270Z", - "events": [ - { - "start": "2022-06-21T17:21:05.360Z", - "end": "2022-06-21T17:50:21.337Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T17:50:21.337Z", - "end": "2022-06-21T18:19:37.314Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T18:19:37.314Z", - "end": "2022-06-21T18:48:53.291Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T18:48:53.291Z", - "end": "2022-06-21T19:18:09.268Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "576482762446602270", - "start": "2022-07-14T16:46:25.631Z", - "end": "2022-07-14T16:52:38.938Z", - "events": [ - { - "start": "2022-07-14T16:46:25.631Z", - "end": "2022-07-14T16:47:58.957Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T16:47:58.957Z", - "end": "2022-07-14T16:49:32.283Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T16:49:32.283Z", - "end": "2022-07-14T16:51:05.609Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T16:51:05.609Z", - "end": "2022-07-14T16:52:38.935Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "636935635446628860", - "game": "700136079562375258", - "start": "2022-05-28T07:13:01.105Z", - "end": "2022-05-28T10:32:02.137Z", - "events": [ - { - "start": "2022-05-28T07:13:01.105Z", - "end": "2022-05-28T08:19:21.449Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T08:19:21.449Z", - "end": "2022-05-28T09:25:41.793Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T09:25:41.793Z", - "end": "2022-05-28T10:32:02.137Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "123137660023366590", - "game": "554573307161214977", - "start": "2022-07-19T04:46:39.274Z", - "end": "2022-07-19T14:41:03.881Z", - "events": [ - { - "start": "2022-07-19T04:46:39.274Z", - "end": "2022-07-19T09:43:51.577Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T09:43:51.577Z", - "end": "2022-07-19T14:41:03.880Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "463820732483181525", - "game": "614448244260339712", - "start": "2022-06-13T06:12:52.368Z", - "end": "2022-06-13T08:57:07.113Z", - "events": [ - { - "start": "2022-06-13T06:12:52.368Z", - "end": "2022-06-13T07:07:37.283Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T07:07:37.283Z", - "end": "2022-06-13T08:02:22.198Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T08:02:22.198Z", - "end": "2022-06-13T08:57:07.113Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "528145079819436043", - "start": "2022-04-30T22:02:30.646Z", - "end": "2022-05-01T04:12:08.028Z", - "events": [ - { - "start": "2022-04-30T22:02:30.646Z", - "end": "2022-05-01T00:05:43.106Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T00:05:43.106Z", - "end": "2022-05-01T02:08:55.566Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T02:08:55.566Z", - "end": "2022-05-01T04:12:08.026Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "614380482620293151", - "start": "2022-07-27T16:22:38.408Z", - "end": "2022-07-27T22:52:55.210Z", - "events": [ - { - "start": "2022-07-27T16:22:38.408Z", - "end": "2022-07-27T17:40:41.768Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T17:40:41.768Z", - "end": "2022-07-27T18:58:45.128Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T18:58:45.128Z", - "end": "2022-07-27T20:16:48.488Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T20:16:48.488Z", - "end": "2022-07-27T21:34:51.848Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T21:34:51.848Z", - "end": "2022-07-27T22:52:55.208Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302714757313826277", - "game": "523154344187789312", - "start": "2022-04-14T21:39:23.042Z", - "end": "2022-04-15T04:38:19.814Z", - "events": [ - { - "start": "2022-04-14T21:39:23.042Z", - "end": "2022-04-14T23:03:10.396Z", - "state": "IDLE" - }, - { - "start": "2022-04-14T23:03:10.396Z", - "end": "2022-04-15T00:26:57.750Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T00:26:57.750Z", - "end": "2022-04-15T01:50:45.104Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-15T01:50:45.104Z", - "end": "2022-04-15T03:14:32.458Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T03:14:32.458Z", - "end": "2022-04-15T04:38:19.812Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "606163888052109312", - "start": "2022-06-16T13:30:45.105Z", - "end": "2022-06-16T22:02:17.579Z", - "events": [ - { - "start": "2022-06-16T13:30:45.105Z", - "end": "2022-06-16T22:02:17.579Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "569008830701240340", - "start": "2022-07-25T02:25:49.690Z", - "end": "2022-07-25T09:57:20.251Z", - "events": [ - { - "start": "2022-07-25T02:25:49.690Z", - "end": "2022-07-25T09:57:20.251Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "264503060524837708", - "game": "356875221078245376", - "start": "2022-04-29T21:22:56.242Z", - "end": "2022-04-29T23:11:48.660Z", - "events": [ - { - "start": "2022-04-29T21:22:56.242Z", - "end": "2022-04-29T21:44:42.725Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T21:44:42.725Z", - "end": "2022-04-29T22:06:29.208Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T22:06:29.208Z", - "end": "2022-04-29T22:28:15.691Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T22:28:15.691Z", - "end": "2022-04-29T22:50:02.174Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T22:50:02.174Z", - "end": "2022-04-29T23:11:48.657Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "600708263053781983", - "game": "606163888052109312", - "start": "2022-04-19T22:45:14.381Z", - "end": "2022-04-20T01:00:27.890Z", - "events": [ - { - "start": "2022-04-19T22:45:14.381Z", - "end": "2022-04-19T23:52:51.135Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T23:52:51.135Z", - "end": "2022-04-20T01:00:27.889Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "800318424708872602", - "game": "511619499053678668", - "start": "2022-06-13T17:17:45.564Z", - "end": "2022-06-14T01:56:47.805Z", - "events": [ - { - "start": "2022-06-13T17:17:45.564Z", - "end": "2022-06-14T01:56:47.805Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "519644267212177418", - "start": "2022-07-20T19:24:11.603Z", - "end": "2022-07-20T20:16:25.073Z", - "events": [ - { - "start": "2022-07-20T19:24:11.603Z", - "end": "2022-07-20T19:41:36.093Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T19:41:36.093Z", - "end": "2022-07-20T19:59:00.583Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-20T19:59:00.583Z", - "end": "2022-07-20T20:16:25.073Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "774637841058278398", - "game": "512789343157485602", - "start": "2022-04-26T22:17:35.778Z", - "end": "2022-04-27T02:49:01.545Z", - "events": [ - { - "start": "2022-04-26T22:17:35.778Z", - "end": "2022-04-26T23:11:52.931Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T23:11:52.931Z", - "end": "2022-04-27T00:06:10.084Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T00:06:10.084Z", - "end": "2022-04-27T01:00:27.237Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:00:27.237Z", - "end": "2022-04-27T01:54:44.390Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:54:44.390Z", - "end": "2022-04-27T02:49:01.543Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "520462578061803588", - "start": "2022-04-26T20:34:07.787Z", - "end": "2022-04-27T01:47:20.833Z", - "events": [ - { - "start": "2022-04-26T20:34:07.787Z", - "end": "2022-04-26T22:18:32.135Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-26T22:18:32.135Z", - "end": "2022-04-27T00:02:56.483Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T00:02:56.483Z", - "end": "2022-04-27T01:47:20.831Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "559757870366930730", - "game": "597588168178663434", - "start": "2022-05-01T06:23:59.042Z", - "end": "2022-05-01T09:22:30.127Z", - "events": [ - { - "start": "2022-05-01T06:23:59.042Z", - "end": "2022-05-01T07:08:36.813Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T07:08:36.813Z", - "end": "2022-05-01T07:53:14.584Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-01T07:53:14.584Z", - "end": "2022-05-01T08:37:52.355Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T08:37:52.355Z", - "end": "2022-05-01T09:22:30.126Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "549054179973094329", - "game": "584069374462394368", - "start": "2022-05-08T17:59:47.471Z", - "end": "2022-05-09T03:39:09.531Z", - "events": [ - { - "start": "2022-05-08T17:59:47.471Z", - "end": "2022-05-08T21:12:54.824Z", - "state": "IDLE" - }, - { - "start": "2022-05-08T21:12:54.824Z", - "end": "2022-05-09T00:26:02.177Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-09T00:26:02.177Z", - "end": "2022-05-09T03:39:09.530Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "553697181249437716", - "start": "2022-07-16T21:51:22.649Z", - "end": "2022-07-17T00:28:51.829Z", - "events": [ - { - "start": "2022-07-16T21:51:22.649Z", - "end": "2022-07-16T22:22:52.485Z", - "state": "IDLE" - }, - { - "start": "2022-07-16T22:22:52.485Z", - "end": "2022-07-16T22:54:22.321Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T22:54:22.321Z", - "end": "2022-07-16T23:25:52.157Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T23:25:52.157Z", - "end": "2022-07-16T23:57:21.993Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-16T23:57:21.993Z", - "end": "2022-07-17T00:28:51.829Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "424856688594618054", - "game": "518088627234930688", - "start": "2022-06-21T08:27:20.558Z", - "end": "2022-06-21T13:59:11.005Z", - "events": [ - { - "start": "2022-06-21T08:27:20.558Z", - "end": "2022-06-21T09:50:18.169Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T09:50:18.169Z", - "end": "2022-06-21T11:13:15.780Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T11:13:15.780Z", - "end": "2022-06-21T12:36:13.391Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T12:36:13.391Z", - "end": "2022-06-21T13:59:11.002Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "126384926926158511", - "game": "528145079819436043", - "start": "2022-07-18T21:37:24.925Z", - "end": "2022-07-19T07:23:27.055Z", - "events": [ - { - "start": "2022-07-18T21:37:24.925Z", - "end": "2022-07-18T23:34:37.351Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T23:34:37.351Z", - "end": "2022-07-19T01:31:49.777Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T01:31:49.777Z", - "end": "2022-07-19T03:29:02.203Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T03:29:02.203Z", - "end": "2022-07-19T05:26:14.629Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T05:26:14.629Z", - "end": "2022-07-19T07:23:27.055Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "568387317892070397", - "game": "526489929631531009", - "start": "2022-05-11T05:11:39.193Z", - "end": "2022-05-11T12:41:24.603Z", - "events": [ - { - "start": "2022-05-11T05:11:39.193Z", - "end": "2022-05-11T07:41:34.329Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T07:41:34.329Z", - "end": "2022-05-11T10:11:29.465Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T10:11:29.465Z", - "end": "2022-05-11T12:41:24.601Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "511619499053678668", - "start": "2022-07-22T18:41:06.466Z", - "end": "2022-07-22T23:04:30.723Z", - "events": [ - { - "start": "2022-07-22T18:41:06.466Z", - "end": "2022-07-22T19:33:47.317Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T19:33:47.317Z", - "end": "2022-07-22T20:26:28.168Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T20:26:28.168Z", - "end": "2022-07-22T21:19:09.019Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T21:19:09.019Z", - "end": "2022-07-22T22:11:49.870Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T22:11:49.870Z", - "end": "2022-07-22T23:04:30.721Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "542075586886107149", - "start": "2022-06-21T10:41:25.648Z", - "end": "2022-06-21T20:04:53.561Z", - "events": [ - { - "start": "2022-06-21T10:41:25.648Z", - "end": "2022-06-21T15:23:09.604Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T15:23:09.604Z", - "end": "2022-06-21T20:04:53.560Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "512789427462995988", - "start": "2022-06-11T04:26:23.797Z", - "end": "2022-06-11T06:08:46.526Z", - "events": [ - { - "start": "2022-06-11T04:26:23.797Z", - "end": "2022-06-11T05:00:31.373Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T05:00:31.373Z", - "end": "2022-06-11T05:34:38.949Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-11T05:34:38.949Z", - "end": "2022-06-11T06:08:46.525Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "565341641427124244", - "start": "2022-05-16T10:29:08.191Z", - "end": "2022-05-16T13:49:35.420Z", - "events": [ - { - "start": "2022-05-16T10:29:08.191Z", - "end": "2022-05-16T11:35:57.267Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T11:35:57.267Z", - "end": "2022-05-16T12:42:46.343Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T12:42:46.343Z", - "end": "2022-05-16T13:49:35.419Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "605723970188938456", - "game": "528145079819436043", - "start": "2022-05-18T10:41:01.829Z", - "end": "2022-05-18T12:30:21.384Z", - "events": [ - { - "start": "2022-05-18T10:41:01.829Z", - "end": "2022-05-18T11:35:41.606Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T11:35:41.606Z", - "end": "2022-05-18T12:30:21.383Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "161887854890745672", - "game": "558547388583772201", - "start": "2022-06-11T18:06:53.475Z", - "end": "2022-06-11T20:09:55.440Z", - "events": [ - { - "start": "2022-06-11T18:06:53.475Z", - "end": "2022-06-11T19:08:24.457Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T19:08:24.457Z", - "end": "2022-06-11T20:09:55.439Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "269014914705953013", - "game": "535869836748783616", - "start": "2022-05-15T13:36:07.616Z", - "end": "2022-05-15T16:59:04.511Z", - "events": [ - { - "start": "2022-05-15T13:36:07.616Z", - "end": "2022-05-15T15:17:36.063Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T15:17:36.063Z", - "end": "2022-05-15T16:59:04.510Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "200801427122341912", - "game": "614380482620293151", - "start": "2022-07-19T03:16:53.141Z", - "end": "2022-07-19T12:35:59.683Z", - "events": [ - { - "start": "2022-07-19T03:16:53.141Z", - "end": "2022-07-19T05:08:42.449Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T05:08:42.449Z", - "end": "2022-07-19T07:00:31.757Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T07:00:31.757Z", - "end": "2022-07-19T08:52:21.065Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T08:52:21.065Z", - "end": "2022-07-19T10:44:10.373Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T10:44:10.373Z", - "end": "2022-07-19T12:35:59.681Z", - "state": "IDLE" - } - ] - }, - { - "user": "510690749854514547", - "game": "530454325214969866", - "start": "2022-05-22T14:06:24.701Z", - "end": "2022-05-22T18:18:55.484Z", - "events": [ - { - "start": "2022-05-22T14:06:24.701Z", - "end": "2022-05-22T15:09:32.396Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-22T15:09:32.396Z", - "end": "2022-05-22T16:12:40.091Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-22T16:12:40.091Z", - "end": "2022-05-22T17:15:47.786Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-22T17:15:47.786Z", - "end": "2022-05-22T18:18:55.481Z", - "state": "IDLE" - } - ] - }, - { - "user": "568387317892070397", - "game": "520462578061803588", - "start": "2022-05-10T11:48:22.137Z", - "end": "2022-05-10T20:24:29.865Z", - "events": [ - { - "start": "2022-05-10T11:48:22.137Z", - "end": "2022-05-10T13:31:35.682Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T13:31:35.682Z", - "end": "2022-05-10T15:14:49.227Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T15:14:49.227Z", - "end": "2022-05-10T16:58:02.772Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T16:58:02.772Z", - "end": "2022-05-10T18:41:16.317Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T18:41:16.317Z", - "end": "2022-05-10T20:24:29.862Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "285410867718320291", - "game": "519644267212177418", - "start": "2022-07-07T08:26:43.236Z", - "end": "2022-07-07T11:24:01.635Z", - "events": [ - { - "start": "2022-07-07T08:26:43.236Z", - "end": "2022-07-07T11:24:01.635Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "512498684211232768", - "start": "2022-06-18T22:09:19.455Z", - "end": "2022-06-19T04:02:44.910Z", - "events": [ - { - "start": "2022-06-18T22:09:19.455Z", - "end": "2022-06-18T23:37:40.818Z", - "state": "IDLE" - }, - { - "start": "2022-06-18T23:37:40.818Z", - "end": "2022-06-19T01:06:02.181Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T01:06:02.181Z", - "end": "2022-06-19T02:34:23.544Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T02:34:23.544Z", - "end": "2022-06-19T04:02:44.907Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "521842831262875670", - "start": "2022-06-01T14:20:20.485Z", - "end": "2022-06-01T18:47:57.038Z", - "events": [ - { - "start": "2022-06-01T14:20:20.485Z", - "end": "2022-06-01T16:34:08.761Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T16:34:08.761Z", - "end": "2022-06-01T18:47:57.037Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "535869836748783616", - "start": "2022-05-26T11:45:26.643Z", - "end": "2022-05-26T11:56:32.163Z", - "events": [ - { - "start": "2022-05-26T11:45:26.643Z", - "end": "2022-05-26T11:56:32.163Z", - "state": "IDLE" - } - ] - }, - { - "user": "623295654897148670", - "game": "520453007578628124", - "start": "2022-04-14T22:05:15.471Z", - "end": "2022-04-15T02:28:48.533Z", - "events": [ - { - "start": "2022-04-14T22:05:15.471Z", - "end": "2022-04-14T23:33:06.491Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-14T23:33:06.491Z", - "end": "2022-04-15T01:00:57.511Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T01:00:57.511Z", - "end": "2022-04-15T02:28:48.531Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "161887854890745672", - "game": "554921822626381879", - "start": "2022-06-11T23:43:20.492Z", - "end": "2022-06-12T05:31:01.994Z", - "events": [ - { - "start": "2022-06-11T23:43:20.492Z", - "end": "2022-06-12T01:39:14.326Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-12T01:39:14.326Z", - "end": "2022-06-12T03:35:08.160Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-12T03:35:08.160Z", - "end": "2022-06-12T05:31:01.994Z", - "state": "IDLE" - } - ] - }, - { - "user": "958598056500699208", - "game": "565341641427124244", - "start": "2022-05-08T15:25:05.881Z", - "end": "2022-05-09T00:34:38.069Z", - "events": [ - { - "start": "2022-05-08T15:25:05.881Z", - "end": "2022-05-08T19:59:51.975Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T19:59:51.975Z", - "end": "2022-05-09T00:34:38.069Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "137536289023624121", - "game": "597860020935327787", - "start": "2022-07-22T04:50:51.931Z", - "end": "2022-07-22T07:00:51.799Z", - "events": [ - { - "start": "2022-07-22T04:50:51.931Z", - "end": "2022-07-22T07:00:51.799Z", - "state": "IDLE" - } - ] - }, - { - "user": "147480245458136084", - "game": "572456126872944651", - "start": "2022-07-28T07:12:17.833Z", - "end": "2022-07-28T13:45:57.896Z", - "events": [ - { - "start": "2022-07-28T07:12:17.833Z", - "end": "2022-07-28T09:23:31.187Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T09:23:31.187Z", - "end": "2022-07-28T11:34:44.541Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T11:34:44.541Z", - "end": "2022-07-28T13:45:57.895Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "866600263421429886", - "game": "542474758835535872", - "start": "2022-04-21T22:55:21.840Z", - "end": "2022-04-22T05:43:50.743Z", - "events": [ - { - "start": "2022-04-21T22:55:21.840Z", - "end": "2022-04-22T02:19:36.291Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T02:19:36.291Z", - "end": "2022-04-22T05:43:50.742Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "608700383891121851", - "game": "528145079819436043", - "start": "2022-07-18T16:54:49.418Z", - "end": "2022-07-19T01:21:30.440Z", - "events": [ - { - "start": "2022-07-18T16:54:49.418Z", - "end": "2022-07-19T01:21:30.440Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "623295654897148670", - "game": "606163888052109312", - "start": "2022-06-14T02:12:38.694Z", - "end": "2022-06-14T04:15:22.735Z", - "events": [ - { - "start": "2022-06-14T02:12:38.694Z", - "end": "2022-06-14T02:37:11.502Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T02:37:11.502Z", - "end": "2022-06-14T03:01:44.310Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-14T03:01:44.310Z", - "end": "2022-06-14T03:26:17.118Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-14T03:26:17.118Z", - "end": "2022-06-14T03:50:49.926Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-14T03:50:49.926Z", - "end": "2022-06-14T04:15:22.734Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "520462578061803588", - "start": "2022-06-17T02:55:44.102Z", - "end": "2022-06-17T04:10:11.449Z", - "events": [ - { - "start": "2022-06-17T02:55:44.102Z", - "end": "2022-06-17T03:20:33.217Z", - "state": "IDLE" - }, - { - "start": "2022-06-17T03:20:33.217Z", - "end": "2022-06-17T03:45:22.332Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T03:45:22.332Z", - "end": "2022-06-17T04:10:11.447Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "958598056500699208", - "game": "512789427462995988", - "start": "2022-07-31T01:01:51.469Z", - "end": "2022-07-31T01:47:41.679Z", - "events": [ - { - "start": "2022-07-31T01:01:51.469Z", - "end": "2022-07-31T01:13:19.021Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T01:13:19.021Z", - "end": "2022-07-31T01:24:46.573Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T01:24:46.573Z", - "end": "2022-07-31T01:36:14.125Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T01:36:14.125Z", - "end": "2022-07-31T01:47:41.677Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "628567265580410356", - "game": "535371564850479134", - "start": "2022-05-13T21:49:09.819Z", - "end": "2022-05-14T03:22:59.662Z", - "events": [ - { - "start": "2022-05-13T21:49:09.819Z", - "end": "2022-05-14T00:36:04.740Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T00:36:04.740Z", - "end": "2022-05-14T03:22:59.661Z", - "state": "IDLE" - } - ] - }, - { - "user": "596421190780633864", - "game": "614448244260339712", - "start": "2022-06-19T21:09:43.288Z", - "end": "2022-06-19T23:03:05.225Z", - "events": [ - { - "start": "2022-06-19T21:09:43.288Z", - "end": "2022-06-19T21:32:23.675Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T21:32:23.675Z", - "end": "2022-06-19T21:55:04.062Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T21:55:04.062Z", - "end": "2022-06-19T22:17:44.449Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T22:17:44.449Z", - "end": "2022-06-19T22:40:24.836Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T22:40:24.836Z", - "end": "2022-06-19T23:03:05.223Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "347172184335646820", - "game": "597588168178663434", - "start": "2022-05-24T06:57:56.936Z", - "end": "2022-05-24T15:55:15.435Z", - "events": [ - { - "start": "2022-05-24T06:57:56.936Z", - "end": "2022-05-24T09:57:03.102Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T09:57:03.102Z", - "end": "2022-05-24T12:56:09.268Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T12:56:09.268Z", - "end": "2022-05-24T15:55:15.434Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "511619499053678668", - "start": "2022-06-29T05:39:54.334Z", - "end": "2022-06-29T06:02:36.878Z", - "events": [ - { - "start": "2022-06-29T05:39:54.334Z", - "end": "2022-06-29T05:47:28.515Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-29T05:47:28.515Z", - "end": "2022-06-29T05:55:02.696Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-29T05:55:02.696Z", - "end": "2022-06-29T06:02:36.877Z", - "state": "IDLE" - } - ] - }, - { - "user": "791267126190249625", - "game": "530454325214969866", - "start": "2022-06-25T17:47:44.567Z", - "end": "2022-06-25T18:55:00.578Z", - "events": [ - { - "start": "2022-06-25T17:47:44.567Z", - "end": "2022-06-25T18:01:11.769Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T18:01:11.769Z", - "end": "2022-06-25T18:14:38.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T18:14:38.971Z", - "end": "2022-06-25T18:28:06.173Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T18:28:06.173Z", - "end": "2022-06-25T18:41:33.375Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T18:41:33.375Z", - "end": "2022-06-25T18:55:00.577Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "510199020782747732", - "start": "2022-07-18T05:23:01.890Z", - "end": "2022-07-18T10:04:54.361Z", - "events": [ - { - "start": "2022-07-18T05:23:01.890Z", - "end": "2022-07-18T06:56:59.380Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T06:56:59.380Z", - "end": "2022-07-18T08:30:56.870Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T08:30:56.870Z", - "end": "2022-07-18T10:04:54.360Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "511619499053678668", - "start": "2022-06-17T11:37:29.934Z", - "end": "2022-06-17T18:55:24.903Z", - "events": [ - { - "start": "2022-06-17T11:37:29.934Z", - "end": "2022-06-17T18:55:24.903Z", - "state": "IDLE" - } - ] - }, - { - "user": "378424071510192465", - "game": "512501896896970762", - "start": "2022-06-15T13:00:21.728Z", - "end": "2022-06-15T21:01:50.971Z", - "events": [ - { - "start": "2022-06-15T13:00:21.728Z", - "end": "2022-06-15T15:40:51.475Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T15:40:51.475Z", - "end": "2022-06-15T18:21:21.222Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T18:21:21.222Z", - "end": "2022-06-15T21:01:50.969Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "430732724825949756", - "game": "512789427462995988", - "start": "2022-08-04T20:49:42.137Z", - "end": "2022-08-05T00:53:07.549Z", - "events": [ - { - "start": "2022-08-04T20:49:42.137Z", - "end": "2022-08-05T00:53:07.549Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "554573307161214977", - "start": "2022-06-13T22:15:45.816Z", - "end": "2022-06-14T06:55:25.083Z", - "events": [ - { - "start": "2022-06-13T22:15:45.816Z", - "end": "2022-06-14T06:55:25.083Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "588739017718366208", - "start": "2022-07-18T16:07:01.613Z", - "end": "2022-07-18T23:00:20.624Z", - "events": [ - { - "start": "2022-07-18T16:07:01.613Z", - "end": "2022-07-18T17:50:21.365Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T17:50:21.365Z", - "end": "2022-07-18T19:33:41.117Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T19:33:41.117Z", - "end": "2022-07-18T21:17:00.869Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T21:17:00.869Z", - "end": "2022-07-18T23:00:20.621Z", - "state": "IDLE" - } - ] - }, - { - "user": "444246898747584433", - "game": "614448244260339712", - "start": "2022-05-10T03:03:22.482Z", - "end": "2022-05-10T09:45:42.518Z", - "events": [ - { - "start": "2022-05-10T03:03:22.482Z", - "end": "2022-05-10T05:17:29.160Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T05:17:29.160Z", - "end": "2022-05-10T07:31:35.838Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T07:31:35.838Z", - "end": "2022-05-10T09:45:42.516Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "554573307161214977", - "start": "2022-04-18T21:21:29.610Z", - "end": "2022-04-18T23:10:00.376Z", - "events": [ - { - "start": "2022-04-18T21:21:29.610Z", - "end": "2022-04-18T23:10:00.376Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "715446191320920764", - "game": "542075586886107149", - "start": "2022-06-13T21:49:08.442Z", - "end": "2022-06-14T00:12:19.180Z", - "events": [ - { - "start": "2022-06-13T21:49:08.442Z", - "end": "2022-06-13T22:36:52.021Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T22:36:52.021Z", - "end": "2022-06-13T23:24:35.600Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T23:24:35.600Z", - "end": "2022-06-14T00:12:19.179Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "922664752332558395", - "game": "542475118396309528", - "start": "2022-06-08T18:07:28.407Z", - "end": "2022-06-08T22:17:23.420Z", - "events": [ - { - "start": "2022-06-08T18:07:28.407Z", - "end": "2022-06-08T22:17:23.420Z", - "state": "IDLE" - } - ] - }, - { - "user": "686825797960121847", - "game": "535384357536399404", - "start": "2022-06-04T17:35:07.579Z", - "end": "2022-06-05T00:31:33.389Z", - "events": [ - { - "start": "2022-06-04T17:35:07.579Z", - "end": "2022-06-04T19:53:56.182Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T19:53:56.182Z", - "end": "2022-06-04T22:12:44.785Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T22:12:44.785Z", - "end": "2022-06-05T00:31:33.388Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "774637841058278398", - "game": "520453007578628124", - "start": "2022-06-15T23:06:29.962Z", - "end": "2022-06-16T04:14:45.009Z", - "events": [ - { - "start": "2022-06-15T23:06:29.962Z", - "end": "2022-06-16T04:14:45.009Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "732542352358923773", - "game": "535869836748783616", - "start": "2022-04-30T01:23:06.453Z", - "end": "2022-04-30T10:37:45.485Z", - "events": [ - { - "start": "2022-04-30T01:23:06.453Z", - "end": "2022-04-30T10:37:45.485Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "606163888052109312", - "start": "2022-05-06T01:26:40.278Z", - "end": "2022-05-06T08:15:51.866Z", - "events": [ - { - "start": "2022-05-06T01:26:40.278Z", - "end": "2022-05-06T04:51:16.072Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-06T04:51:16.072Z", - "end": "2022-05-06T08:15:51.866Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302714757313826277", - "game": "572456126872944651", - "start": "2022-07-19T04:33:48.356Z", - "end": "2022-07-19T04:56:28.880Z", - "events": [ - { - "start": "2022-07-19T04:33:48.356Z", - "end": "2022-07-19T04:39:28.487Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T04:39:28.487Z", - "end": "2022-07-19T04:45:08.618Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T04:45:08.618Z", - "end": "2022-07-19T04:50:48.749Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T04:50:48.749Z", - "end": "2022-07-19T04:56:28.880Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "881335427428668054", - "game": "535371564850479134", - "start": "2022-06-13T20:40:51.957Z", - "end": "2022-06-14T02:46:51.969Z", - "events": [ - { - "start": "2022-06-13T20:40:51.957Z", - "end": "2022-06-14T02:46:51.969Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "356875221078245376", - "start": "2022-06-04T00:11:37.318Z", - "end": "2022-06-04T07:40:26.736Z", - "events": [ - { - "start": "2022-06-04T00:11:37.318Z", - "end": "2022-06-04T07:40:26.736Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "297014162745407430", - "game": "520462578061803588", - "start": "2022-06-27T08:31:12.983Z", - "end": "2022-06-27T18:34:23.139Z", - "events": [ - { - "start": "2022-06-27T08:31:12.983Z", - "end": "2022-06-27T10:31:51.014Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T10:31:51.014Z", - "end": "2022-06-27T12:32:29.045Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T12:32:29.045Z", - "end": "2022-06-27T14:33:07.076Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T14:33:07.076Z", - "end": "2022-06-27T16:33:45.107Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T16:33:45.107Z", - "end": "2022-06-27T18:34:23.138Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "614380482620293151", - "start": "2022-06-12T09:17:21.307Z", - "end": "2022-06-12T11:04:19.052Z", - "events": [ - { - "start": "2022-06-12T09:17:21.307Z", - "end": "2022-06-12T10:10:50.179Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T10:10:50.179Z", - "end": "2022-06-12T11:04:19.051Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "528145079819436043", - "start": "2022-07-14T03:27:08.509Z", - "end": "2022-07-14T06:10:20.819Z", - "events": [ - { - "start": "2022-07-14T03:27:08.509Z", - "end": "2022-07-14T03:59:46.971Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T03:59:46.971Z", - "end": "2022-07-14T04:32:25.433Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T04:32:25.433Z", - "end": "2022-07-14T05:05:03.895Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T05:05:03.895Z", - "end": "2022-07-14T05:37:42.357Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T05:37:42.357Z", - "end": "2022-07-14T06:10:20.819Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "576482762446602270", - "start": "2022-05-25T05:30:25.924Z", - "end": "2022-05-25T08:44:26.832Z", - "events": [ - { - "start": "2022-05-25T05:30:25.924Z", - "end": "2022-05-25T06:35:06.226Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T06:35:06.226Z", - "end": "2022-05-25T07:39:46.528Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T07:39:46.528Z", - "end": "2022-05-25T08:44:26.830Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "575412499399180288", - "start": "2022-06-15T16:43:44.367Z", - "end": "2022-06-16T01:52:17.510Z", - "events": [ - { - "start": "2022-06-15T16:43:44.367Z", - "end": "2022-06-16T01:52:17.510Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "558547388583772201", - "start": "2022-05-01T20:24:27.220Z", - "end": "2022-05-01T23:35:55.078Z", - "events": [ - { - "start": "2022-05-01T20:24:27.220Z", - "end": "2022-05-01T21:12:19.184Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T21:12:19.184Z", - "end": "2022-05-01T22:00:11.148Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T22:00:11.148Z", - "end": "2022-05-01T22:48:03.112Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T22:48:03.112Z", - "end": "2022-05-01T23:35:55.076Z", - "state": "IDLE" - } - ] - }, - { - "user": "866600263421429886", - "game": "519644368735567873", - "start": "2022-08-05T13:15:21.129Z", - "end": "2022-08-05T18:44:37.769Z", - "events": [ - { - "start": "2022-08-05T13:15:21.129Z", - "end": "2022-08-05T18:44:37.769Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "512498684211232768", - "start": "2022-06-02T14:57:15.811Z", - "end": "2022-06-02T19:45:56.400Z", - "events": [ - { - "start": "2022-06-02T14:57:15.811Z", - "end": "2022-06-02T15:54:59.928Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T15:54:59.928Z", - "end": "2022-06-02T16:52:44.045Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T16:52:44.045Z", - "end": "2022-06-02T17:50:28.162Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T17:50:28.162Z", - "end": "2022-06-02T18:48:12.279Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-02T18:48:12.279Z", - "end": "2022-06-02T19:45:56.396Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "614380482620293151", - "start": "2022-04-19T22:33:22.566Z", - "end": "2022-04-20T00:27:54.021Z", - "events": [ - { - "start": "2022-04-19T22:33:22.566Z", - "end": "2022-04-19T22:56:16.857Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T22:56:16.857Z", - "end": "2022-04-19T23:19:11.148Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T23:19:11.148Z", - "end": "2022-04-19T23:42:05.439Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T23:42:05.439Z", - "end": "2022-04-20T00:04:59.730Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T00:04:59.730Z", - "end": "2022-04-20T00:27:54.021Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "605723970188938456", - "game": "514228311661084682", - "start": "2022-07-01T16:05:40.181Z", - "end": "2022-07-01T19:59:32.408Z", - "events": [ - { - "start": "2022-07-01T16:05:40.181Z", - "end": "2022-07-01T17:04:08.237Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-01T17:04:08.237Z", - "end": "2022-07-01T18:02:36.293Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T18:02:36.293Z", - "end": "2022-07-01T19:01:04.349Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T19:01:04.349Z", - "end": "2022-07-01T19:59:32.405Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786084290971413565", - "game": "614380482620293151", - "start": "2022-07-27T05:46:34.293Z", - "end": "2022-07-27T12:21:14.723Z", - "events": [ - { - "start": "2022-07-27T05:46:34.293Z", - "end": "2022-07-27T07:05:30.379Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T07:05:30.379Z", - "end": "2022-07-27T08:24:26.465Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T08:24:26.465Z", - "end": "2022-07-27T09:43:22.551Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T09:43:22.551Z", - "end": "2022-07-27T11:02:18.637Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T11:02:18.637Z", - "end": "2022-07-27T12:21:14.723Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "347172184335646820", - "game": "575412499399180288", - "start": "2022-07-08T08:41:32.737Z", - "end": "2022-07-08T13:26:58.974Z", - "events": [ - { - "start": "2022-07-08T08:41:32.737Z", - "end": "2022-07-08T13:26:58.974Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "774637841058278398", - "game": "512789343157485602", - "start": "2022-06-02T02:04:38.312Z", - "end": "2022-06-02T11:48:46.692Z", - "events": [ - { - "start": "2022-06-02T02:04:38.312Z", - "end": "2022-06-02T05:19:21.105Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T05:19:21.105Z", - "end": "2022-06-02T08:34:03.898Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T08:34:03.898Z", - "end": "2022-06-02T11:48:46.691Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302679892350666678", - "game": "526489929631531009", - "start": "2022-05-23T03:43:04.542Z", - "end": "2022-05-23T11:47:44.682Z", - "events": [ - { - "start": "2022-05-23T03:43:04.542Z", - "end": "2022-05-23T07:45:24.612Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T07:45:24.612Z", - "end": "2022-05-23T11:47:44.682Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "395281349698024181", - "game": "569253958967885828", - "start": "2022-07-12T07:49:46.180Z", - "end": "2022-07-12T12:43:01.935Z", - "events": [ - { - "start": "2022-07-12T07:49:46.180Z", - "end": "2022-07-12T09:03:05.118Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T09:03:05.118Z", - "end": "2022-07-12T10:16:24.056Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T10:16:24.056Z", - "end": "2022-07-12T11:29:42.994Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T11:29:42.994Z", - "end": "2022-07-12T12:43:01.932Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "519644368735567873", - "start": "2022-07-04T03:24:29.625Z", - "end": "2022-07-04T05:50:58.853Z", - "events": [ - { - "start": "2022-07-04T03:24:29.625Z", - "end": "2022-07-04T03:53:47.470Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-04T03:53:47.470Z", - "end": "2022-07-04T04:23:05.315Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-04T04:23:05.315Z", - "end": "2022-07-04T04:52:23.160Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T04:52:23.160Z", - "end": "2022-07-04T05:21:41.005Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T05:21:41.005Z", - "end": "2022-07-04T05:50:58.850Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "788818750251007268", - "game": "508057374875975682", - "start": "2022-05-19T15:09:41.613Z", - "end": "2022-05-19T17:43:48.124Z", - "events": [ - { - "start": "2022-05-19T15:09:41.613Z", - "end": "2022-05-19T15:40:30.915Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-19T15:40:30.915Z", - "end": "2022-05-19T16:11:20.217Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T16:11:20.217Z", - "end": "2022-05-19T16:42:09.519Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T16:42:09.519Z", - "end": "2022-05-19T17:12:58.821Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-19T17:12:58.821Z", - "end": "2022-05-19T17:43:48.123Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "614380482620293151", - "start": "2022-07-19T01:30:17.823Z", - "end": "2022-07-19T05:43:13.815Z", - "events": [ - { - "start": "2022-07-19T01:30:17.823Z", - "end": "2022-07-19T05:43:13.815Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302714757313826277", - "game": "553697181249437716", - "start": "2022-05-10T11:14:11.548Z", - "end": "2022-05-10T21:17:06.555Z", - "events": [ - { - "start": "2022-05-10T11:14:11.548Z", - "end": "2022-05-10T14:35:09.883Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T14:35:09.883Z", - "end": "2022-05-10T17:56:08.218Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T17:56:08.218Z", - "end": "2022-05-10T21:17:06.553Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "590467327095087095", - "game": "518088627234930688", - "start": "2022-06-02T16:21:25.398Z", - "end": "2022-06-02T19:10:06.820Z", - "events": [ - { - "start": "2022-06-02T16:21:25.398Z", - "end": "2022-06-02T17:03:35.753Z", - "state": "IDLE" - }, - { - "start": "2022-06-02T17:03:35.753Z", - "end": "2022-06-02T17:45:46.108Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T17:45:46.108Z", - "end": "2022-06-02T18:27:56.463Z", - "state": "IDLE" - }, - { - "start": "2022-06-02T18:27:56.463Z", - "end": "2022-06-02T19:10:06.818Z", - "state": "IDLE" - } - ] - }, - { - "user": "297014162745407430", - "game": "535371564850479134", - "start": "2022-05-29T00:07:58.979Z", - "end": "2022-05-29T08:26:07.056Z", - "events": [ - { - "start": "2022-05-29T00:07:58.979Z", - "end": "2022-05-29T02:54:01.671Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T02:54:01.671Z", - "end": "2022-05-29T05:40:04.363Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T05:40:04.363Z", - "end": "2022-05-29T08:26:07.055Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "597860020935327787", - "start": "2022-07-16T19:25:48.397Z", - "end": "2022-07-16T20:30:50.480Z", - "events": [ - { - "start": "2022-07-16T19:25:48.397Z", - "end": "2022-07-16T19:38:48.813Z", - "state": "IDLE" - }, - { - "start": "2022-07-16T19:38:48.813Z", - "end": "2022-07-16T19:51:49.229Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T19:51:49.229Z", - "end": "2022-07-16T20:04:49.645Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-16T20:04:49.645Z", - "end": "2022-07-16T20:17:50.061Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T20:17:50.061Z", - "end": "2022-07-16T20:30:50.477Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "546175179542364160", - "start": "2022-06-03T18:48:33.965Z", - "end": "2022-06-04T04:24:46.772Z", - "events": [ - { - "start": "2022-06-03T18:48:33.965Z", - "end": "2022-06-03T22:00:38.234Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T22:00:38.234Z", - "end": "2022-06-04T01:12:42.503Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T01:12:42.503Z", - "end": "2022-06-04T04:24:46.772Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "512501896896970762", - "start": "2022-06-29T17:55:03.636Z", - "end": "2022-06-29T21:35:17.112Z", - "events": [ - { - "start": "2022-06-29T17:55:03.636Z", - "end": "2022-06-29T21:35:17.112Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "395281349698024181", - "game": "510199020782747732", - "start": "2022-07-04T21:56:40.384Z", - "end": "2022-07-05T00:01:12.323Z", - "events": [ - { - "start": "2022-07-04T21:56:40.384Z", - "end": "2022-07-05T00:01:12.323Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "554573307161214977", - "start": "2022-06-12T03:28:01.580Z", - "end": "2022-06-12T10:24:33.193Z", - "events": [ - { - "start": "2022-06-12T03:28:01.580Z", - "end": "2022-06-12T06:56:17.386Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T06:56:17.386Z", - "end": "2022-06-12T10:24:33.192Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "514228311661084682", - "start": "2022-07-24T05:28:45.611Z", - "end": "2022-07-24T08:19:23.412Z", - "events": [ - { - "start": "2022-07-24T05:28:45.611Z", - "end": "2022-07-24T06:11:25.061Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T06:11:25.061Z", - "end": "2022-07-24T06:54:04.511Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T06:54:04.511Z", - "end": "2022-07-24T07:36:43.961Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T07:36:43.961Z", - "end": "2022-07-24T08:19:23.411Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "549512435585908756", - "start": "2022-06-28T23:30:47.650Z", - "end": "2022-06-29T06:50:29.579Z", - "events": [ - { - "start": "2022-06-28T23:30:47.650Z", - "end": "2022-06-29T00:58:44.035Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T00:58:44.035Z", - "end": "2022-06-29T02:26:40.420Z", - "state": "IDLE" - }, - { - "start": "2022-06-29T02:26:40.420Z", - "end": "2022-06-29T03:54:36.805Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T03:54:36.805Z", - "end": "2022-06-29T05:22:33.190Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T05:22:33.190Z", - "end": "2022-06-29T06:50:29.575Z", - "state": "IDLE" - } - ] - }, - { - "user": "590467327095087095", - "game": "356875221078245376", - "start": "2022-05-27T18:31:27.991Z", - "end": "2022-05-27T23:36:04.449Z", - "events": [ - { - "start": "2022-05-27T18:31:27.991Z", - "end": "2022-05-27T21:03:46.220Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T21:03:46.220Z", - "end": "2022-05-27T23:36:04.449Z", - "state": "IDLE" - } - ] - }, - { - "user": "525940629729163286", - "game": "597860020935327787", - "start": "2022-06-28T16:51:21.576Z", - "end": "2022-06-28T20:52:09.267Z", - "events": [ - { - "start": "2022-06-28T16:51:21.576Z", - "end": "2022-06-28T18:11:37.473Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T18:11:37.473Z", - "end": "2022-06-28T19:31:53.370Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T19:31:53.370Z", - "end": "2022-06-28T20:52:09.267Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "700136079562375258", - "start": "2022-07-23T22:10:54.984Z", - "end": "2022-07-24T08:17:28.604Z", - "events": [ - { - "start": "2022-07-23T22:10:54.984Z", - "end": "2022-07-24T00:42:33.389Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T00:42:33.389Z", - "end": "2022-07-24T03:14:11.794Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-24T03:14:11.794Z", - "end": "2022-07-24T05:45:50.199Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T05:45:50.199Z", - "end": "2022-07-24T08:17:28.604Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "297014162745407430", - "game": "542475118396309528", - "start": "2022-08-05T12:35:13.970Z", - "end": "2022-08-05T13:25:29.746Z", - "events": [ - { - "start": "2022-08-05T12:35:13.970Z", - "end": "2022-08-05T12:47:47.914Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T12:47:47.914Z", - "end": "2022-08-05T13:00:21.858Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T13:00:21.858Z", - "end": "2022-08-05T13:12:55.802Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T13:12:55.802Z", - "end": "2022-08-05T13:25:29.746Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "213263852824749877", - "game": "584069374462394368", - "start": "2022-08-04T18:01:51.299Z", - "end": "2022-08-04T21:26:44.342Z", - "events": [ - { - "start": "2022-08-04T18:01:51.299Z", - "end": "2022-08-04T21:26:44.342Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "463820732483181525", - "game": "520462578061803588", - "start": "2022-07-10T06:37:13.535Z", - "end": "2022-07-10T15:45:37.514Z", - "events": [ - { - "start": "2022-07-10T06:37:13.535Z", - "end": "2022-07-10T15:45:37.514Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "788818750251007268", - "game": "526489929631531009", - "start": "2022-05-27T08:34:45.256Z", - "end": "2022-05-27T14:15:57.595Z", - "events": [ - { - "start": "2022-05-27T08:34:45.256Z", - "end": "2022-05-27T10:28:29.369Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T10:28:29.369Z", - "end": "2022-05-27T12:22:13.482Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-27T12:22:13.482Z", - "end": "2022-05-27T14:15:57.595Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "590467327095087095", - "game": "511619499053678668", - "start": "2022-06-25T11:57:05.983Z", - "end": "2022-06-25T19:13:19.863Z", - "events": [ - { - "start": "2022-06-25T11:57:05.983Z", - "end": "2022-06-25T15:35:12.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T15:35:12.923Z", - "end": "2022-06-25T19:13:19.863Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "537786518874514211", - "game": "553697181249437716", - "start": "2022-06-24T00:57:52.839Z", - "end": "2022-06-24T03:10:17.768Z", - "events": [ - { - "start": "2022-06-24T00:57:52.839Z", - "end": "2022-06-24T02:04:05.303Z", - "state": "IDLE" - }, - { - "start": "2022-06-24T02:04:05.303Z", - "end": "2022-06-24T03:10:17.767Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "584489284152985092", - "game": "558547388583772201", - "start": "2022-05-29T11:19:48.064Z", - "end": "2022-05-29T12:32:53.616Z", - "events": [ - { - "start": "2022-05-29T11:19:48.064Z", - "end": "2022-05-29T11:34:25.174Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T11:34:25.174Z", - "end": "2022-05-29T11:49:02.284Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T11:49:02.284Z", - "end": "2022-05-29T12:03:39.394Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T12:03:39.394Z", - "end": "2022-05-29T12:18:16.504Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T12:18:16.504Z", - "end": "2022-05-29T12:32:53.614Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "791267126190249625", - "game": "512789427462995988", - "start": "2022-07-11T17:27:25.698Z", - "end": "2022-07-11T23:55:53.631Z", - "events": [ - { - "start": "2022-07-11T17:27:25.698Z", - "end": "2022-07-11T19:04:32.681Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T19:04:32.681Z", - "end": "2022-07-11T20:41:39.664Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T20:41:39.664Z", - "end": "2022-07-11T22:18:46.647Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T22:18:46.647Z", - "end": "2022-07-11T23:55:53.630Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "512789427462995988", - "start": "2022-06-08T09:11:59.389Z", - "end": "2022-06-08T15:20:34.955Z", - "events": [ - { - "start": "2022-06-08T09:11:59.389Z", - "end": "2022-06-08T10:25:42.502Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T10:25:42.502Z", - "end": "2022-06-08T11:39:25.615Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T11:39:25.615Z", - "end": "2022-06-08T12:53:08.728Z", - "state": "IDLE" - }, - { - "start": "2022-06-08T12:53:08.728Z", - "end": "2022-06-08T14:06:51.841Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T14:06:51.841Z", - "end": "2022-06-08T15:20:34.954Z", - "state": "IDLE" - } - ] - }, - { - "user": "385692164951394422", - "game": "519644267212177418", - "start": "2022-06-05T07:24:22.023Z", - "end": "2022-06-05T08:32:03.869Z", - "events": [ - { - "start": "2022-06-05T07:24:22.023Z", - "end": "2022-06-05T07:46:55.971Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T07:46:55.971Z", - "end": "2022-06-05T08:09:29.919Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T08:09:29.919Z", - "end": "2022-06-05T08:32:03.867Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "592976500802846750", - "start": "2022-06-09T15:53:24.065Z", - "end": "2022-06-09T19:02:51.819Z", - "events": [ - { - "start": "2022-06-09T15:53:24.065Z", - "end": "2022-06-09T19:02:51.819Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "101572134856427564", - "game": "356875221078245376", - "start": "2022-05-10T05:49:05.476Z", - "end": "2022-05-10T07:50:33.211Z", - "events": [ - { - "start": "2022-05-10T05:49:05.476Z", - "end": "2022-05-10T06:19:27.409Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T06:19:27.409Z", - "end": "2022-05-10T06:49:49.342Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T06:49:49.342Z", - "end": "2022-05-10T07:20:11.275Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T07:20:11.275Z", - "end": "2022-05-10T07:50:33.208Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "512789343157485602", - "start": "2022-07-11T11:58:35.208Z", - "end": "2022-07-11T14:21:21.629Z", - "events": [ - { - "start": "2022-07-11T11:58:35.208Z", - "end": "2022-07-11T13:09:58.418Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T13:09:58.418Z", - "end": "2022-07-11T14:21:21.628Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "495724335127362694", - "game": "554573307161214977", - "start": "2022-04-13T12:24:16.995Z", - "end": "2022-04-13T17:43:24.160Z", - "events": [ - { - "start": "2022-04-13T12:24:16.995Z", - "end": "2022-04-13T17:43:24.160Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "131482253203487270", - "game": "512789427462995988", - "start": "2022-04-18T03:11:14.576Z", - "end": "2022-04-18T03:46:24.799Z", - "events": [ - { - "start": "2022-04-18T03:11:14.576Z", - "end": "2022-04-18T03:20:02.131Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T03:20:02.131Z", - "end": "2022-04-18T03:28:49.686Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T03:28:49.686Z", - "end": "2022-04-18T03:37:37.241Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T03:37:37.241Z", - "end": "2022-04-18T03:46:24.796Z", - "state": "IDLE" - } - ] - }, - { - "user": "541104083732114799", - "game": "512789343157485602", - "start": "2022-06-03T18:11:05.091Z", - "end": "2022-06-04T02:09:20.244Z", - "events": [ - { - "start": "2022-06-03T18:11:05.091Z", - "end": "2022-06-03T20:50:30.142Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T20:50:30.142Z", - "end": "2022-06-03T23:29:55.193Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T23:29:55.193Z", - "end": "2022-06-04T02:09:20.244Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "269014914705953013", - "game": "542474758835535872", - "start": "2022-05-05T06:12:15.476Z", - "end": "2022-05-05T10:53:38.659Z", - "events": [ - { - "start": "2022-05-05T06:12:15.476Z", - "end": "2022-05-05T07:08:32.112Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-05T07:08:32.112Z", - "end": "2022-05-05T08:04:48.748Z", - "state": "IDLE" - }, - { - "start": "2022-05-05T08:04:48.748Z", - "end": "2022-05-05T09:01:05.384Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T09:01:05.384Z", - "end": "2022-05-05T09:57:22.020Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T09:57:22.020Z", - "end": "2022-05-05T10:53:38.656Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "747381962738157784", - "game": "553697181249437716", - "start": "2022-06-03T09:16:05.174Z", - "end": "2022-06-03T10:28:20.524Z", - "events": [ - { - "start": "2022-06-03T09:16:05.174Z", - "end": "2022-06-03T09:34:09.011Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T09:34:09.011Z", - "end": "2022-06-03T09:52:12.848Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T09:52:12.848Z", - "end": "2022-06-03T10:10:16.685Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T10:10:16.685Z", - "end": "2022-06-03T10:28:20.522Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "559757870366930730", - "game": "535869836748783616", - "start": "2022-06-04T22:46:09.604Z", - "end": "2022-06-05T02:11:32.197Z", - "events": [ - { - "start": "2022-06-04T22:46:09.604Z", - "end": "2022-06-05T00:28:50.900Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T00:28:50.900Z", - "end": "2022-06-05T02:11:32.196Z", - "state": "IDLE" - } - ] - }, - { - "user": "126384926926158511", - "game": "512789427462995988", - "start": "2022-04-17T13:47:01.135Z", - "end": "2022-04-17T21:52:03.182Z", - "events": [ - { - "start": "2022-04-17T13:47:01.135Z", - "end": "2022-04-17T15:24:01.544Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T15:24:01.544Z", - "end": "2022-04-17T17:01:01.953Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-17T17:01:01.953Z", - "end": "2022-04-17T18:38:02.362Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-17T18:38:02.362Z", - "end": "2022-04-17T20:15:02.771Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-17T20:15:02.771Z", - "end": "2022-04-17T21:52:03.180Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "530454325214969866", - "start": "2022-06-19T12:27:22.908Z", - "end": "2022-06-19T16:41:57.439Z", - "events": [ - { - "start": "2022-06-19T12:27:22.908Z", - "end": "2022-06-19T13:31:01.540Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T13:31:01.540Z", - "end": "2022-06-19T14:34:40.172Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T14:34:40.172Z", - "end": "2022-06-19T15:38:18.804Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T15:38:18.804Z", - "end": "2022-06-19T16:41:57.436Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "200801427122341912", - "game": "512501896896970762", - "start": "2022-05-28T18:15:43.715Z", - "end": "2022-05-28T22:04:36.904Z", - "events": [ - { - "start": "2022-05-28T18:15:43.715Z", - "end": "2022-05-28T19:32:01.444Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T19:32:01.444Z", - "end": "2022-05-28T20:48:19.173Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T20:48:19.173Z", - "end": "2022-05-28T22:04:36.902Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "285410867718320291", - "game": "512501896896970762", - "start": "2022-08-05T13:40:43.379Z", - "end": "2022-08-05T22:42:46.963Z", - "events": [ - { - "start": "2022-08-05T13:40:43.379Z", - "end": "2022-08-05T15:56:14.275Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-05T15:56:14.275Z", - "end": "2022-08-05T18:11:45.171Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T18:11:45.171Z", - "end": "2022-08-05T20:27:16.067Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T20:27:16.067Z", - "end": "2022-08-05T22:42:46.963Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "623295654897148670", - "game": "512789120234422301", - "start": "2022-07-13T10:03:44.282Z", - "end": "2022-07-13T12:32:48.588Z", - "events": [ - { - "start": "2022-07-13T10:03:44.282Z", - "end": "2022-07-13T11:18:16.435Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T11:18:16.435Z", - "end": "2022-07-13T12:32:48.588Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "521842831262875670", - "start": "2022-07-12T19:06:18.391Z", - "end": "2022-07-12T19:31:36.703Z", - "events": [ - { - "start": "2022-07-12T19:06:18.391Z", - "end": "2022-07-12T19:18:57.547Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T19:18:57.547Z", - "end": "2022-07-12T19:31:36.703Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "614448244260339712", - "start": "2022-06-22T04:09:08.636Z", - "end": "2022-06-22T04:13:57.656Z", - "events": [ - { - "start": "2022-06-22T04:09:08.636Z", - "end": "2022-06-22T04:10:44.976Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T04:10:44.976Z", - "end": "2022-06-22T04:12:21.316Z", - "state": "IDLE" - }, - { - "start": "2022-06-22T04:12:21.316Z", - "end": "2022-06-22T04:13:57.656Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "800318424708872602", - "game": "554921822626381879", - "start": "2022-06-04T17:41:45.742Z", - "end": "2022-06-04T23:00:29.583Z", - "events": [ - { - "start": "2022-06-04T17:41:45.742Z", - "end": "2022-06-04T19:01:26.702Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T19:01:26.702Z", - "end": "2022-06-04T20:21:07.662Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T20:21:07.662Z", - "end": "2022-06-04T21:40:48.622Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T21:40:48.622Z", - "end": "2022-06-04T23:00:29.582Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "559757870366930730", - "game": "597860020935327787", - "start": "2022-07-31T14:46:01.659Z", - "end": "2022-07-31T19:21:40.365Z", - "events": [ - { - "start": "2022-07-31T14:46:01.659Z", - "end": "2022-07-31T15:41:09.400Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T15:41:09.400Z", - "end": "2022-07-31T16:36:17.141Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T16:36:17.141Z", - "end": "2022-07-31T17:31:24.882Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T17:31:24.882Z", - "end": "2022-07-31T18:26:32.623Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T18:26:32.623Z", - "end": "2022-07-31T19:21:40.364Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "606163888052109312", - "start": "2022-07-05T08:04:13.002Z", - "end": "2022-07-05T09:29:31.001Z", - "events": [ - { - "start": "2022-07-05T08:04:13.002Z", - "end": "2022-07-05T08:46:52.001Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-05T08:46:52.001Z", - "end": "2022-07-05T09:29:31.000Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "569008830701240340", - "start": "2022-07-16T17:10:01.725Z", - "end": "2022-07-16T18:51:06.492Z", - "events": [ - { - "start": "2022-07-16T17:10:01.725Z", - "end": "2022-07-16T18:51:06.492Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "588739017718366208", - "start": "2022-07-31T02:26:09.774Z", - "end": "2022-07-31T10:34:49.856Z", - "events": [ - { - "start": "2022-07-31T02:26:09.774Z", - "end": "2022-07-31T04:03:53.790Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T04:03:53.790Z", - "end": "2022-07-31T05:41:37.806Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T05:41:37.806Z", - "end": "2022-07-31T07:19:21.822Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T07:19:21.822Z", - "end": "2022-07-31T08:57:05.838Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T08:57:05.838Z", - "end": "2022-07-31T10:34:49.854Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "542474758835535872", - "start": "2022-07-17T23:17:05.742Z", - "end": "2022-07-18T07:54:16.518Z", - "events": [ - { - "start": "2022-07-17T23:17:05.742Z", - "end": "2022-07-18T02:09:29.334Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T02:09:29.334Z", - "end": "2022-07-18T05:01:52.926Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T05:01:52.926Z", - "end": "2022-07-18T07:54:16.518Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "530454325214969866", - "start": "2022-08-05T14:03:51.902Z", - "end": "2022-08-05T20:19:45.633Z", - "events": [ - { - "start": "2022-08-05T14:03:51.902Z", - "end": "2022-08-05T20:19:45.633Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "546175179542364160", - "start": "2022-05-25T03:48:32.871Z", - "end": "2022-05-25T09:50:04.757Z", - "events": [ - { - "start": "2022-05-25T03:48:32.871Z", - "end": "2022-05-25T05:49:03.499Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T05:49:03.499Z", - "end": "2022-05-25T07:49:34.127Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T07:49:34.127Z", - "end": "2022-05-25T09:50:04.755Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "549512435585908756", - "start": "2022-07-08T21:52:58.589Z", - "end": "2022-07-08T23:59:35.735Z", - "events": [ - { - "start": "2022-07-08T21:52:58.589Z", - "end": "2022-07-08T22:24:37.875Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T22:24:37.875Z", - "end": "2022-07-08T22:56:17.161Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T22:56:17.161Z", - "end": "2022-07-08T23:27:56.447Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T23:27:56.447Z", - "end": "2022-07-08T23:59:35.733Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "360264570671216445", - "game": "514228311661084682", - "start": "2022-05-12T08:29:28.812Z", - "end": "2022-05-12T15:54:27.429Z", - "events": [ - { - "start": "2022-05-12T08:29:28.812Z", - "end": "2022-05-12T10:20:43.466Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T10:20:43.466Z", - "end": "2022-05-12T12:11:58.120Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T12:11:58.120Z", - "end": "2022-05-12T14:03:12.774Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T14:03:12.774Z", - "end": "2022-05-12T15:54:27.428Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "518088627234930688", - "start": "2022-07-11T00:26:42.411Z", - "end": "2022-07-11T08:54:18.480Z", - "events": [ - { - "start": "2022-07-11T00:26:42.411Z", - "end": "2022-07-11T02:33:36.428Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T02:33:36.428Z", - "end": "2022-07-11T04:40:30.445Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T04:40:30.445Z", - "end": "2022-07-11T06:47:24.462Z", - "state": "IDLE" - }, - { - "start": "2022-07-11T06:47:24.462Z", - "end": "2022-07-11T08:54:18.479Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "508057374875975682", - "start": "2022-07-30T14:27:55.872Z", - "end": "2022-07-30T16:15:42.390Z", - "events": [ - { - "start": "2022-07-30T14:27:55.872Z", - "end": "2022-07-30T16:15:42.390Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "800318424708872602", - "game": "512789427462995988", - "start": "2022-06-04T23:57:21.824Z", - "end": "2022-06-05T07:13:50.022Z", - "events": [ - { - "start": "2022-06-04T23:57:21.824Z", - "end": "2022-06-05T01:24:39.463Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T01:24:39.463Z", - "end": "2022-06-05T02:51:57.102Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-05T02:51:57.102Z", - "end": "2022-06-05T04:19:14.741Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T04:19:14.741Z", - "end": "2022-06-05T05:46:32.380Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T05:46:32.380Z", - "end": "2022-06-05T07:13:50.019Z", - "state": "IDLE" - } - ] - }, - { - "user": "346608907417001845", - "game": "523154344187789312", - "start": "2022-07-12T12:20:11.483Z", - "end": "2022-07-12T13:38:22.597Z", - "events": [ - { - "start": "2022-07-12T12:20:11.483Z", - "end": "2022-07-12T12:39:44.261Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T12:39:44.261Z", - "end": "2022-07-12T12:59:17.039Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T12:59:17.039Z", - "end": "2022-07-12T13:18:49.817Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T13:18:49.817Z", - "end": "2022-07-12T13:38:22.595Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "600708263053781983", - "game": "554573307161214977", - "start": "2022-04-14T00:21:53.214Z", - "end": "2022-04-14T02:08:03.866Z", - "events": [ - { - "start": "2022-04-14T00:21:53.214Z", - "end": "2022-04-14T01:14:58.540Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T01:14:58.540Z", - "end": "2022-04-14T02:08:03.866Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "608700383891121851", - "game": "565341641427124244", - "start": "2022-07-18T07:24:34.010Z", - "end": "2022-07-18T12:13:37.013Z", - "events": [ - { - "start": "2022-07-18T07:24:34.010Z", - "end": "2022-07-18T09:00:55.011Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T09:00:55.011Z", - "end": "2022-07-18T10:37:16.012Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T10:37:16.012Z", - "end": "2022-07-18T12:13:37.013Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "558547388583772201", - "start": "2022-07-04T00:05:05.611Z", - "end": "2022-07-04T09:55:46.303Z", - "events": [ - { - "start": "2022-07-04T00:05:05.611Z", - "end": "2022-07-04T02:32:45.784Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T02:32:45.784Z", - "end": "2022-07-04T05:00:25.957Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-04T05:00:25.957Z", - "end": "2022-07-04T07:28:06.130Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T07:28:06.130Z", - "end": "2022-07-04T09:55:46.303Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "590467327095087095", - "game": "550277544025522176", - "start": "2022-06-20T20:02:32.254Z", - "end": "2022-06-21T03:55:43.019Z", - "events": [ - { - "start": "2022-06-20T20:02:32.254Z", - "end": "2022-06-20T22:00:49.945Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T22:00:49.945Z", - "end": "2022-06-20T23:59:07.636Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T23:59:07.636Z", - "end": "2022-06-21T01:57:25.327Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T01:57:25.327Z", - "end": "2022-06-21T03:55:43.018Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "606163888052109312", - "start": "2022-06-07T04:55:45.598Z", - "end": "2022-06-07T07:49:57.167Z", - "events": [ - { - "start": "2022-06-07T04:55:45.598Z", - "end": "2022-06-07T06:22:51.382Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-07T06:22:51.382Z", - "end": "2022-06-07T07:49:57.166Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "269014914705953013", - "game": "512789343157485602", - "start": "2022-08-03T04:30:00.640Z", - "end": "2022-08-03T04:36:01.861Z", - "events": [ - { - "start": "2022-08-03T04:30:00.640Z", - "end": "2022-08-03T04:36:01.861Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "213263852824749877", - "game": "528145079819436043", - "start": "2022-08-02T15:58:08.829Z", - "end": "2022-08-03T00:16:52.200Z", - "events": [ - { - "start": "2022-08-02T15:58:08.829Z", - "end": "2022-08-02T18:44:23.286Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T18:44:23.286Z", - "end": "2022-08-02T21:30:37.743Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T21:30:37.743Z", - "end": "2022-08-03T00:16:52.200Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "537786518874514211", - "game": "549512435585908756", - "start": "2022-06-23T20:39:54.379Z", - "end": "2022-06-23T21:51:38.091Z", - "events": [ - { - "start": "2022-06-23T20:39:54.379Z", - "end": "2022-06-23T20:57:50.307Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-23T20:57:50.307Z", - "end": "2022-06-23T21:15:46.235Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T21:15:46.235Z", - "end": "2022-06-23T21:33:42.163Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T21:33:42.163Z", - "end": "2022-06-23T21:51:38.091Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "584489284152985092", - "game": "588739017718366208", - "start": "2022-05-05T07:55:59.851Z", - "end": "2022-05-05T10:21:39.344Z", - "events": [ - { - "start": "2022-05-05T07:55:59.851Z", - "end": "2022-05-05T10:21:39.344Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "523154344187789312", - "start": "2022-05-18T20:34:30.734Z", - "end": "2022-05-19T04:14:28.602Z", - "events": [ - { - "start": "2022-05-18T20:34:30.734Z", - "end": "2022-05-18T23:07:50.023Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-18T23:07:50.023Z", - "end": "2022-05-19T01:41:09.312Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T01:41:09.312Z", - "end": "2022-05-19T04:14:28.601Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "525940629729163286", - "game": "597588168178663434", - "start": "2022-06-08T11:52:21.053Z", - "end": "2022-06-08T19:56:46.342Z", - "events": [ - { - "start": "2022-06-08T11:52:21.053Z", - "end": "2022-06-08T15:54:33.697Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T15:54:33.697Z", - "end": "2022-06-08T19:56:46.341Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "538658792298239054", - "game": "550277544025522176", - "start": "2022-07-02T03:58:36.856Z", - "end": "2022-07-02T05:49:46.981Z", - "events": [ - { - "start": "2022-07-02T03:58:36.856Z", - "end": "2022-07-02T04:54:11.918Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T04:54:11.918Z", - "end": "2022-07-02T05:49:46.980Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "768513326430993269", - "game": "597860020935327787", - "start": "2022-05-06T09:30:11.926Z", - "end": "2022-05-06T13:42:21.413Z", - "events": [ - { - "start": "2022-05-06T09:30:11.926Z", - "end": "2022-05-06T13:42:21.413Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "378424071510192465", - "game": "535869836748783616", - "start": "2022-07-27T10:41:04.871Z", - "end": "2022-07-27T12:12:09.572Z", - "events": [ - { - "start": "2022-07-27T10:41:04.871Z", - "end": "2022-07-27T12:12:09.572Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "560781100197216267", - "start": "2022-07-11T12:05:00.818Z", - "end": "2022-07-11T21:04:47.567Z", - "events": [ - { - "start": "2022-07-11T12:05:00.818Z", - "end": "2022-07-11T14:19:57.505Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T14:19:57.505Z", - "end": "2022-07-11T16:34:54.192Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T16:34:54.192Z", - "end": "2022-07-11T18:49:50.879Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T18:49:50.879Z", - "end": "2022-07-11T21:04:47.566Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "576482762446602270", - "start": "2022-05-21T20:17:40.500Z", - "end": "2022-05-22T05:14:40.599Z", - "events": [ - { - "start": "2022-05-21T20:17:40.500Z", - "end": "2022-05-22T00:46:10.549Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T00:46:10.549Z", - "end": "2022-05-22T05:14:40.598Z", - "state": "IDLE" - } - ] - }, - { - "user": "725502702868293700", - "game": "542475118396309528", - "start": "2022-07-09T10:14:20.635Z", - "end": "2022-07-09T15:11:17.702Z", - "events": [ - { - "start": "2022-07-09T10:14:20.635Z", - "end": "2022-07-09T11:53:19.657Z", - "state": "IDLE" - }, - { - "start": "2022-07-09T11:53:19.657Z", - "end": "2022-07-09T13:32:18.679Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T13:32:18.679Z", - "end": "2022-07-09T15:11:17.701Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "329429619186234053", - "game": "514228311661084682", - "start": "2022-06-12T15:54:12.122Z", - "end": "2022-06-12T17:12:10.655Z", - "events": [ - { - "start": "2022-06-12T15:54:12.122Z", - "end": "2022-06-12T16:20:11.633Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T16:20:11.633Z", - "end": "2022-06-12T16:46:11.144Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T16:46:11.144Z", - "end": "2022-06-12T17:12:10.655Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "182925797752958092", - "game": "519644368735567873", - "start": "2022-08-02T12:43:18.065Z", - "end": "2022-08-02T14:44:28.829Z", - "events": [ - { - "start": "2022-08-02T12:43:18.065Z", - "end": "2022-08-02T13:43:53.447Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T13:43:53.447Z", - "end": "2022-08-02T14:44:28.829Z", - "state": "IDLE" - } - ] - }, - { - "user": "182925797752958092", - "game": "554921822626381879", - "start": "2022-06-12T22:32:35.498Z", - "end": "2022-06-13T01:43:51.849Z", - "events": [ - { - "start": "2022-06-12T22:32:35.498Z", - "end": "2022-06-12T23:10:50.768Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-12T23:10:50.768Z", - "end": "2022-06-12T23:49:06.038Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T23:49:06.038Z", - "end": "2022-06-13T00:27:21.308Z", - "state": "IDLE" - }, - { - "start": "2022-06-13T00:27:21.308Z", - "end": "2022-06-13T01:05:36.578Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T01:05:36.578Z", - "end": "2022-06-13T01:43:51.848Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "636935635446628860", - "game": "549512435585908756", - "start": "2022-07-14T17:42:12.237Z", - "end": "2022-07-15T01:29:38.303Z", - "events": [ - { - "start": "2022-07-14T17:42:12.237Z", - "end": "2022-07-14T19:15:41.450Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T19:15:41.450Z", - "end": "2022-07-14T20:49:10.663Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T20:49:10.663Z", - "end": "2022-07-14T22:22:39.876Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T22:22:39.876Z", - "end": "2022-07-14T23:56:09.089Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T23:56:09.089Z", - "end": "2022-07-15T01:29:38.302Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "512789427462995988", - "start": "2022-07-08T22:19:32.917Z", - "end": "2022-07-09T00:23:06.659Z", - "events": [ - { - "start": "2022-07-08T22:19:32.917Z", - "end": "2022-07-08T23:21:19.788Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T23:21:19.788Z", - "end": "2022-07-09T00:23:06.659Z", - "state": "IDLE" - } - ] - }, - { - "user": "457796054587169483", - "game": "535384357536399404", - "start": "2022-07-26T17:10:11.222Z", - "end": "2022-07-27T03:07:14.797Z", - "events": [ - { - "start": "2022-07-26T17:10:11.222Z", - "end": "2022-07-26T19:09:35.937Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-26T19:09:35.937Z", - "end": "2022-07-26T21:09:00.652Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-26T21:09:00.652Z", - "end": "2022-07-26T23:08:25.367Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-26T23:08:25.367Z", - "end": "2022-07-27T01:07:50.082Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T01:07:50.082Z", - "end": "2022-07-27T03:07:14.797Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "123137660023366590", - "game": "575412499399180288", - "start": "2022-06-03T15:34:52.910Z", - "end": "2022-06-03T19:29:19.503Z", - "events": [ - { - "start": "2022-06-03T15:34:52.910Z", - "end": "2022-06-03T16:21:46.228Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T16:21:46.228Z", - "end": "2022-06-03T17:08:39.546Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T17:08:39.546Z", - "end": "2022-06-03T17:55:32.864Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T17:55:32.864Z", - "end": "2022-06-03T18:42:26.182Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T18:42:26.182Z", - "end": "2022-06-03T19:29:19.500Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "592976500802846750", - "start": "2022-07-14T15:39:28.938Z", - "end": "2022-07-14T22:21:03.940Z", - "events": [ - { - "start": "2022-07-14T15:39:28.938Z", - "end": "2022-07-14T17:19:52.688Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T17:19:52.688Z", - "end": "2022-07-14T19:00:16.438Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-14T19:00:16.438Z", - "end": "2022-07-14T20:40:40.188Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T20:40:40.188Z", - "end": "2022-07-14T22:21:03.938Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302347517889336519", - "game": "510199020782747732", - "start": "2022-05-27T04:31:33.207Z", - "end": "2022-05-27T10:16:41.214Z", - "events": [ - { - "start": "2022-05-27T04:31:33.207Z", - "end": "2022-05-27T05:40:34.808Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T05:40:34.808Z", - "end": "2022-05-27T06:49:36.409Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T06:49:36.409Z", - "end": "2022-05-27T07:58:38.010Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T07:58:38.010Z", - "end": "2022-05-27T09:07:39.611Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T09:07:39.611Z", - "end": "2022-05-27T10:16:41.212Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "554573307161214977", - "start": "2022-06-14T07:09:31.706Z", - "end": "2022-06-14T13:56:30.313Z", - "events": [ - { - "start": "2022-06-14T07:09:31.706Z", - "end": "2022-06-14T08:30:55.427Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-14T08:30:55.427Z", - "end": "2022-06-14T09:52:19.148Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T09:52:19.148Z", - "end": "2022-06-14T11:13:42.869Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T11:13:42.869Z", - "end": "2022-06-14T12:35:06.590Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-14T12:35:06.590Z", - "end": "2022-06-14T13:56:30.311Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "931211630078779300", - "game": "512789427462995988", - "start": "2022-07-07T02:38:50.691Z", - "end": "2022-07-07T09:08:09.162Z", - "events": [ - { - "start": "2022-07-07T02:38:50.691Z", - "end": "2022-07-07T09:08:09.162Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "430732724825949756", - "game": "546175179542364160", - "start": "2022-07-22T14:26:54.460Z", - "end": "2022-07-22T22:50:34.867Z", - "events": [ - { - "start": "2022-07-22T14:26:54.460Z", - "end": "2022-07-22T17:14:47.929Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T17:14:47.929Z", - "end": "2022-07-22T20:02:41.398Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T20:02:41.398Z", - "end": "2022-07-22T22:50:34.867Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "530454325214969866", - "start": "2022-06-20T19:58:02.528Z", - "end": "2022-06-21T05:27:08.126Z", - "events": [ - { - "start": "2022-06-20T19:58:02.528Z", - "end": "2022-06-20T22:20:18.927Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-20T22:20:18.927Z", - "end": "2022-06-21T00:42:35.326Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T00:42:35.326Z", - "end": "2022-06-21T03:04:51.725Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T03:04:51.725Z", - "end": "2022-06-21T05:27:08.124Z", - "state": "IDLE" - } - ] - }, - { - "user": "559757870366930730", - "game": "526489929631531009", - "start": "2022-05-12T07:32:55.889Z", - "end": "2022-05-12T15:57:29.239Z", - "events": [ - { - "start": "2022-05-12T07:32:55.889Z", - "end": "2022-05-12T09:13:50.559Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T09:13:50.559Z", - "end": "2022-05-12T10:54:45.229Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T10:54:45.229Z", - "end": "2022-05-12T12:35:39.899Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T12:35:39.899Z", - "end": "2022-05-12T14:16:34.569Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T14:16:34.569Z", - "end": "2022-05-12T15:57:29.239Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "512501896896970762", - "start": "2022-06-17T03:42:29.351Z", - "end": "2022-06-17T07:20:22.181Z", - "events": [ - { - "start": "2022-06-17T03:42:29.351Z", - "end": "2022-06-17T04:36:57.558Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T04:36:57.558Z", - "end": "2022-06-17T05:31:25.765Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-17T05:31:25.765Z", - "end": "2022-06-17T06:25:53.972Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T06:25:53.972Z", - "end": "2022-06-17T07:20:22.179Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "530454325214969866", - "start": "2022-05-13T19:40:07.906Z", - "end": "2022-05-14T00:59:16.577Z", - "events": [ - { - "start": "2022-05-13T19:40:07.906Z", - "end": "2022-05-14T00:59:16.577Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "526489929631531009", - "start": "2022-05-06T15:23:33.436Z", - "end": "2022-05-06T19:07:53.202Z", - "events": [ - { - "start": "2022-05-06T15:23:33.436Z", - "end": "2022-05-06T17:15:43.319Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-06T17:15:43.319Z", - "end": "2022-05-06T19:07:53.202Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "628567265580410356", - "game": "535869836748783616", - "start": "2022-05-27T06:25:42.283Z", - "end": "2022-05-27T11:03:16.514Z", - "events": [ - { - "start": "2022-05-27T06:25:42.283Z", - "end": "2022-05-27T07:58:13.693Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T07:58:13.693Z", - "end": "2022-05-27T09:30:45.103Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T09:30:45.103Z", - "end": "2022-05-27T11:03:16.513Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "597588168178663434", - "start": "2022-06-07T03:47:44.687Z", - "end": "2022-06-07T10:37:50.790Z", - "events": [ - { - "start": "2022-06-07T03:47:44.687Z", - "end": "2022-06-07T05:09:45.907Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T05:09:45.907Z", - "end": "2022-06-07T06:31:47.127Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T06:31:47.127Z", - "end": "2022-06-07T07:53:48.347Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-07T07:53:48.347Z", - "end": "2022-06-07T09:15:49.567Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T09:15:49.567Z", - "end": "2022-06-07T10:37:50.787Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "568387317892070397", - "game": "606163888052109312", - "start": "2022-08-04T18:20:08.785Z", - "end": "2022-08-04T19:55:35.409Z", - "events": [ - { - "start": "2022-08-04T18:20:08.785Z", - "end": "2022-08-04T18:51:57.659Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T18:51:57.659Z", - "end": "2022-08-04T19:23:46.533Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T19:23:46.533Z", - "end": "2022-08-04T19:55:35.407Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "600708263053781983", - "game": "514228311661084682", - "start": "2022-05-15T22:47:45.207Z", - "end": "2022-05-16T01:45:12.173Z", - "events": [ - { - "start": "2022-05-15T22:47:45.207Z", - "end": "2022-05-15T23:32:06.948Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T23:32:06.948Z", - "end": "2022-05-16T00:16:28.689Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T00:16:28.689Z", - "end": "2022-05-16T01:00:50.430Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T01:00:50.430Z", - "end": "2022-05-16T01:45:12.171Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "788818750251007268", - "game": "597588168178663434", - "start": "2022-08-01T02:52:54.753Z", - "end": "2022-08-01T02:58:24.494Z", - "events": [ - { - "start": "2022-08-01T02:52:54.753Z", - "end": "2022-08-01T02:58:24.494Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512501896896970762", - "start": "2022-07-13T15:33:19.491Z", - "end": "2022-07-13T21:05:21.120Z", - "events": [ - { - "start": "2022-07-13T15:33:19.491Z", - "end": "2022-07-13T17:24:00.034Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T17:24:00.034Z", - "end": "2022-07-13T19:14:40.577Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T19:14:40.577Z", - "end": "2022-07-13T21:05:21.120Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "520462578061803588", - "start": "2022-05-29T04:44:47.760Z", - "end": "2022-05-29T11:52:11.945Z", - "events": [ - { - "start": "2022-05-29T04:44:47.760Z", - "end": "2022-05-29T07:07:15.821Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T07:07:15.821Z", - "end": "2022-05-29T09:29:43.882Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T09:29:43.882Z", - "end": "2022-05-29T11:52:11.943Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "938976307338486810", - "game": "542474758835535872", - "start": "2022-05-27T19:27:21.307Z", - "end": "2022-05-27T23:42:46.396Z", - "events": [ - { - "start": "2022-05-27T19:27:21.307Z", - "end": "2022-05-27T20:31:12.579Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T20:31:12.579Z", - "end": "2022-05-27T21:35:03.851Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T21:35:03.851Z", - "end": "2022-05-27T22:38:55.123Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T22:38:55.123Z", - "end": "2022-05-27T23:42:46.395Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "542474758835535872", - "start": "2022-07-29T10:50:11.600Z", - "end": "2022-07-29T11:49:07.164Z", - "events": [ - { - "start": "2022-07-29T10:50:11.600Z", - "end": "2022-07-29T11:01:58.712Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T11:01:58.712Z", - "end": "2022-07-29T11:13:45.824Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T11:13:45.824Z", - "end": "2022-07-29T11:25:32.936Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T11:25:32.936Z", - "end": "2022-07-29T11:37:20.048Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T11:37:20.048Z", - "end": "2022-07-29T11:49:07.160Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "329429619186234053", - "game": "597860020935327787", - "start": "2022-06-27T02:24:54.294Z", - "end": "2022-06-27T02:25:02.917Z", - "events": [ - { - "start": "2022-06-27T02:24:54.294Z", - "end": "2022-06-27T02:24:56.018Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T02:24:56.018Z", - "end": "2022-06-27T02:24:57.742Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:24:57.742Z", - "end": "2022-06-27T02:24:59.466Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:24:59.466Z", - "end": "2022-06-27T02:25:01.190Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T02:25:01.190Z", - "end": "2022-06-27T02:25:02.914Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "519644267212177418", - "start": "2022-06-25T10:32:10.626Z", - "end": "2022-06-25T17:28:37.002Z", - "events": [ - { - "start": "2022-06-25T10:32:10.626Z", - "end": "2022-06-25T12:50:59.418Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T12:50:59.418Z", - "end": "2022-06-25T15:09:48.210Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T15:09:48.210Z", - "end": "2022-06-25T17:28:37.002Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "430732724825949756", - "game": "520462578061803588", - "start": "2022-06-13T02:21:41.747Z", - "end": "2022-06-13T07:18:53.877Z", - "events": [ - { - "start": "2022-06-13T02:21:41.747Z", - "end": "2022-06-13T03:35:59.779Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-13T03:35:59.779Z", - "end": "2022-06-13T04:50:17.811Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T04:50:17.811Z", - "end": "2022-06-13T06:04:35.843Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T06:04:35.843Z", - "end": "2022-06-13T07:18:53.875Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "608700383891121851", - "game": "511619499053678668", - "start": "2022-07-25T10:55:59.233Z", - "end": "2022-07-25T15:48:09.442Z", - "events": [ - { - "start": "2022-07-25T10:55:59.233Z", - "end": "2022-07-25T12:09:01.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-25T12:09:01.785Z", - "end": "2022-07-25T13:22:04.337Z", - "state": "IDLE" - }, - { - "start": "2022-07-25T13:22:04.337Z", - "end": "2022-07-25T14:35:06.889Z", - "state": "IDLE" - }, - { - "start": "2022-07-25T14:35:06.889Z", - "end": "2022-07-25T15:48:09.441Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "554573307161214977", - "start": "2022-06-27T00:28:15.348Z", - "end": "2022-06-27T05:09:39.662Z", - "events": [ - { - "start": "2022-06-27T00:28:15.348Z", - "end": "2022-06-27T01:38:36.426Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T01:38:36.426Z", - "end": "2022-06-27T02:48:57.504Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T02:48:57.504Z", - "end": "2022-06-27T03:59:18.582Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T03:59:18.582Z", - "end": "2022-06-27T05:09:39.660Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "385692164951394422", - "game": "553697181249437716", - "start": "2022-07-03T04:53:40.719Z", - "end": "2022-07-03T09:44:13.630Z", - "events": [ - { - "start": "2022-07-03T04:53:40.719Z", - "end": "2022-07-03T06:06:18.946Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T06:06:18.946Z", - "end": "2022-07-03T07:18:57.173Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T07:18:57.173Z", - "end": "2022-07-03T08:31:35.400Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T08:31:35.400Z", - "end": "2022-07-03T09:44:13.627Z", - "state": "IDLE" - } - ] - }, - { - "user": "596421190780633864", - "game": "535869836748783616", - "start": "2022-07-01T11:41:01.459Z", - "end": "2022-07-01T17:18:46.835Z", - "events": [ - { - "start": "2022-07-01T11:41:01.459Z", - "end": "2022-07-01T14:29:54.147Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T14:29:54.147Z", - "end": "2022-07-01T17:18:46.835Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "747381962738157784", - "game": "560781100197216267", - "start": "2022-05-04T07:14:22.369Z", - "end": "2022-05-04T14:46:07.078Z", - "events": [ - { - "start": "2022-05-04T07:14:22.369Z", - "end": "2022-05-04T09:07:18.546Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T09:07:18.546Z", - "end": "2022-05-04T11:00:14.723Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T11:00:14.723Z", - "end": "2022-05-04T12:53:10.900Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T12:53:10.900Z", - "end": "2022-05-04T14:46:07.077Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "553697181249437716", - "start": "2022-06-16T14:52:09.046Z", - "end": "2022-06-16T21:31:59.157Z", - "events": [ - { - "start": "2022-06-16T14:52:09.046Z", - "end": "2022-06-16T16:12:07.068Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T16:12:07.068Z", - "end": "2022-06-16T17:32:05.090Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T17:32:05.090Z", - "end": "2022-06-16T18:52:03.112Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T18:52:03.112Z", - "end": "2022-06-16T20:12:01.134Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T20:12:01.134Z", - "end": "2022-06-16T21:31:59.156Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "881335427428668054", - "game": "554573307161214977", - "start": "2022-07-20T22:29:40.940Z", - "end": "2022-07-21T07:12:37.419Z", - "events": [ - { - "start": "2022-07-20T22:29:40.940Z", - "end": "2022-07-21T00:14:16.235Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T00:14:16.235Z", - "end": "2022-07-21T01:58:51.530Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T01:58:51.530Z", - "end": "2022-07-21T03:43:26.825Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T03:43:26.825Z", - "end": "2022-07-21T05:28:02.120Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T05:28:02.120Z", - "end": "2022-07-21T07:12:37.415Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "762163239408560283", - "game": "528145079819436043", - "start": "2022-04-19T18:43:00.842Z", - "end": "2022-04-20T00:46:53.790Z", - "events": [ - { - "start": "2022-04-19T18:43:00.842Z", - "end": "2022-04-19T21:44:57.316Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T21:44:57.316Z", - "end": "2022-04-20T00:46:53.790Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "508057374875975682", - "start": "2022-05-23T06:50:30.505Z", - "end": "2022-05-23T14:08:51.860Z", - "events": [ - { - "start": "2022-05-23T06:50:30.505Z", - "end": "2022-05-23T08:40:05.843Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T08:40:05.843Z", - "end": "2022-05-23T10:29:41.181Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T10:29:41.181Z", - "end": "2022-05-23T12:19:16.519Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T12:19:16.519Z", - "end": "2022-05-23T14:08:51.857Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "596421190780633864", - "game": "519644368735567873", - "start": "2022-07-10T01:38:31.536Z", - "end": "2022-07-10T08:22:47.237Z", - "events": [ - { - "start": "2022-07-10T01:38:31.536Z", - "end": "2022-07-10T03:19:35.461Z", - "state": "IDLE" - }, - { - "start": "2022-07-10T03:19:35.461Z", - "end": "2022-07-10T05:00:39.386Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T05:00:39.386Z", - "end": "2022-07-10T06:41:43.311Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T06:41:43.311Z", - "end": "2022-07-10T08:22:47.236Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "512498684211232768", - "start": "2022-05-09T20:51:02.865Z", - "end": "2022-05-10T06:04:54.249Z", - "events": [ - { - "start": "2022-05-09T20:51:02.865Z", - "end": "2022-05-09T23:09:30.711Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T23:09:30.711Z", - "end": "2022-05-10T01:27:58.557Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T01:27:58.557Z", - "end": "2022-05-10T03:46:26.403Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T03:46:26.403Z", - "end": "2022-05-10T06:04:54.249Z", - "state": "IDLE" - } - ] - }, - { - "user": "198010595767135394", - "game": "540120593576493057", - "start": "2022-05-25T05:11:35.107Z", - "end": "2022-05-25T14:27:06.730Z", - "events": [ - { - "start": "2022-05-25T05:11:35.107Z", - "end": "2022-05-25T08:16:45.648Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T08:16:45.648Z", - "end": "2022-05-25T11:21:56.189Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T11:21:56.189Z", - "end": "2022-05-25T14:27:06.730Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "715446191320920764", - "game": "508057374875975682", - "start": "2022-04-23T23:21:47.719Z", - "end": "2022-04-24T05:59:19.992Z", - "events": [ - { - "start": "2022-04-23T23:21:47.719Z", - "end": "2022-04-24T01:01:10.787Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T01:01:10.787Z", - "end": "2022-04-24T02:40:33.855Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T02:40:33.855Z", - "end": "2022-04-24T04:19:56.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T04:19:56.923Z", - "end": "2022-04-24T05:59:19.991Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "606163888052109312", - "start": "2022-05-26T17:53:38.050Z", - "end": "2022-05-26T18:10:49.573Z", - "events": [ - { - "start": "2022-05-26T17:53:38.050Z", - "end": "2022-05-26T17:57:55.930Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-26T17:57:55.930Z", - "end": "2022-05-26T18:02:13.810Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T18:02:13.810Z", - "end": "2022-05-26T18:06:31.690Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T18:06:31.690Z", - "end": "2022-05-26T18:10:49.570Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "565341641427124244", - "start": "2022-06-13T08:19:33.169Z", - "end": "2022-06-13T16:02:58.117Z", - "events": [ - { - "start": "2022-06-13T08:19:33.169Z", - "end": "2022-06-13T16:02:58.117Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "554573307161214977", - "start": "2022-05-06T21:50:04.717Z", - "end": "2022-05-07T06:07:34.220Z", - "events": [ - { - "start": "2022-05-06T21:50:04.717Z", - "end": "2022-05-07T00:35:54.551Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-07T00:35:54.551Z", - "end": "2022-05-07T03:21:44.385Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-07T03:21:44.385Z", - "end": "2022-05-07T06:07:34.219Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "535371564850479134", - "start": "2022-07-22T04:07:39.464Z", - "end": "2022-07-22T08:57:28.574Z", - "events": [ - { - "start": "2022-07-22T04:07:39.464Z", - "end": "2022-07-22T08:57:28.574Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "951131768137733554", - "game": "514228311661084682", - "start": "2022-06-19T03:15:37.734Z", - "end": "2022-06-19T09:40:11.979Z", - "events": [ - { - "start": "2022-06-19T03:15:37.734Z", - "end": "2022-06-19T09:40:11.979Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "463820732483181525", - "game": "560781100197216267", - "start": "2022-07-10T09:05:43.148Z", - "end": "2022-07-10T10:10:39.356Z", - "events": [ - { - "start": "2022-07-10T09:05:43.148Z", - "end": "2022-07-10T09:21:57.200Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T09:21:57.200Z", - "end": "2022-07-10T09:38:11.252Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T09:38:11.252Z", - "end": "2022-07-10T09:54:25.304Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T09:54:25.304Z", - "end": "2022-07-10T10:10:39.356Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "542474758835535872", - "start": "2022-07-23T03:27:58.577Z", - "end": "2022-07-23T13:31:30.916Z", - "events": [ - { - "start": "2022-07-23T03:27:58.577Z", - "end": "2022-07-23T05:58:51.661Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T05:58:51.661Z", - "end": "2022-07-23T08:29:44.745Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T08:29:44.745Z", - "end": "2022-07-23T11:00:37.829Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-23T11:00:37.829Z", - "end": "2022-07-23T13:31:30.913Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "131482253203487270", - "game": "542475118396309528", - "start": "2022-06-11T05:12:31.294Z", - "end": "2022-06-11T13:44:07.151Z", - "events": [ - { - "start": "2022-06-11T05:12:31.294Z", - "end": "2022-06-11T13:44:07.151Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "614380482620293151", - "start": "2022-06-27T16:28:50.631Z", - "end": "2022-06-28T01:39:03.014Z", - "events": [ - { - "start": "2022-06-27T16:28:50.631Z", - "end": "2022-06-27T21:03:56.822Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T21:03:56.822Z", - "end": "2022-06-28T01:39:03.013Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "494763633796983404", - "game": "540120593576493057", - "start": "2022-05-01T07:42:30.649Z", - "end": "2022-05-01T12:06:06.985Z", - "events": [ - { - "start": "2022-05-01T07:42:30.649Z", - "end": "2022-05-01T08:35:13.916Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T08:35:13.916Z", - "end": "2022-05-01T09:27:57.183Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T09:27:57.183Z", - "end": "2022-05-01T10:20:40.450Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T10:20:40.450Z", - "end": "2022-05-01T11:13:23.717Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T11:13:23.717Z", - "end": "2022-05-01T12:06:06.984Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "494763633796983404", - "game": "520462578061803588", - "start": "2022-04-14T10:52:46.605Z", - "end": "2022-04-14T19:19:03.140Z", - "events": [ - { - "start": "2022-04-14T10:52:46.605Z", - "end": "2022-04-14T15:05:54.872Z", - "state": "IDLE" - }, - { - "start": "2022-04-14T15:05:54.872Z", - "end": "2022-04-14T19:19:03.139Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "424856688594618054", - "game": "519644368735567873", - "start": "2022-07-23T07:43:45.084Z", - "end": "2022-07-23T16:21:00.086Z", - "events": [ - { - "start": "2022-07-23T07:43:45.084Z", - "end": "2022-07-23T10:36:10.084Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T10:36:10.084Z", - "end": "2022-07-23T13:28:35.084Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T13:28:35.084Z", - "end": "2022-07-23T16:21:00.084Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "521842831262875670", - "start": "2022-06-16T01:57:48.479Z", - "end": "2022-06-16T06:07:55.198Z", - "events": [ - { - "start": "2022-06-16T01:57:48.479Z", - "end": "2022-06-16T03:21:10.718Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-16T03:21:10.718Z", - "end": "2022-06-16T04:44:32.957Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T04:44:32.957Z", - "end": "2022-06-16T06:07:55.196Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "606163888052109312", - "start": "2022-05-25T01:36:22.686Z", - "end": "2022-05-25T02:06:01.888Z", - "events": [ - { - "start": "2022-05-25T01:36:22.686Z", - "end": "2022-05-25T01:43:47.486Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T01:43:47.486Z", - "end": "2022-05-25T01:51:12.286Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T01:51:12.286Z", - "end": "2022-05-25T01:58:37.086Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T01:58:37.086Z", - "end": "2022-05-25T02:06:01.886Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "535384357536399404", - "start": "2022-06-10T19:13:10.237Z", - "end": "2022-06-11T01:53:05.033Z", - "events": [ - { - "start": "2022-06-10T19:13:10.237Z", - "end": "2022-06-11T01:53:05.033Z", - "state": "IDLE" - } - ] - }, - { - "user": "725502702868293700", - "game": "514228311661084682", - "start": "2022-07-02T12:09:53.142Z", - "end": "2022-07-02T21:59:47.745Z", - "events": [ - { - "start": "2022-07-02T12:09:53.142Z", - "end": "2022-07-02T17:04:50.443Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T17:04:50.443Z", - "end": "2022-07-02T21:59:47.744Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "958598056500699208", - "game": "597860020935327787", - "start": "2022-04-27T08:08:00.713Z", - "end": "2022-04-27T10:52:59.707Z", - "events": [ - { - "start": "2022-04-27T08:08:00.713Z", - "end": "2022-04-27T10:52:59.707Z", - "state": "IDLE" - } - ] - }, - { - "user": "297014162745407430", - "game": "575412499399180288", - "start": "2022-06-18T16:03:27.194Z", - "end": "2022-06-19T00:12:20.843Z", - "events": [ - { - "start": "2022-06-18T16:03:27.194Z", - "end": "2022-06-18T18:46:25.077Z", - "state": "IDLE" - }, - { - "start": "2022-06-18T18:46:25.077Z", - "end": "2022-06-18T21:29:22.960Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-18T21:29:22.960Z", - "end": "2022-06-19T00:12:20.843Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "467658810442648809", - "game": "523154344187789312", - "start": "2022-04-24T08:34:59.201Z", - "end": "2022-04-24T10:25:06.775Z", - "events": [ - { - "start": "2022-04-24T08:34:59.201Z", - "end": "2022-04-24T08:57:00.715Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T08:57:00.715Z", - "end": "2022-04-24T09:19:02.229Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T09:19:02.229Z", - "end": "2022-04-24T09:41:03.743Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T09:41:03.743Z", - "end": "2022-04-24T10:03:05.257Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T10:03:05.257Z", - "end": "2022-04-24T10:25:06.771Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "511619499053678668", - "start": "2022-07-27T13:46:58.126Z", - "end": "2022-07-27T17:48:33.538Z", - "events": [ - { - "start": "2022-07-27T13:46:58.126Z", - "end": "2022-07-27T15:07:29.930Z", - "state": "IDLE" - }, - { - "start": "2022-07-27T15:07:29.930Z", - "end": "2022-07-27T16:28:01.734Z", - "state": "IDLE" - }, - { - "start": "2022-07-27T16:28:01.734Z", - "end": "2022-07-27T17:48:33.538Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "542475118396309528", - "start": "2022-06-19T06:30:18.699Z", - "end": "2022-06-19T11:01:21.311Z", - "events": [ - { - "start": "2022-06-19T06:30:18.699Z", - "end": "2022-06-19T08:00:39.569Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T08:00:39.569Z", - "end": "2022-06-19T09:31:00.439Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T09:31:00.439Z", - "end": "2022-06-19T11:01:21.309Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "530454325214969866", - "start": "2022-05-18T11:49:00.164Z", - "end": "2022-05-18T13:39:51.259Z", - "events": [ - { - "start": "2022-05-18T11:49:00.164Z", - "end": "2022-05-18T13:39:51.259Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "457796054587169483", - "game": "518088627234930688", - "start": "2022-05-29T00:53:08.926Z", - "end": "2022-05-29T08:22:36.457Z", - "events": [ - { - "start": "2022-05-29T00:53:08.926Z", - "end": "2022-05-29T02:23:02.432Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T02:23:02.432Z", - "end": "2022-05-29T03:52:55.938Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T03:52:55.938Z", - "end": "2022-05-29T05:22:49.444Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T05:22:49.444Z", - "end": "2022-05-29T06:52:42.950Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T06:52:42.950Z", - "end": "2022-05-29T08:22:36.456Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "606163888052109312", - "start": "2022-04-23T20:27:07.697Z", - "end": "2022-04-23T22:57:29.519Z", - "events": [ - { - "start": "2022-04-23T20:27:07.697Z", - "end": "2022-04-23T21:04:43.152Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T21:04:43.152Z", - "end": "2022-04-23T21:42:18.607Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T21:42:18.607Z", - "end": "2022-04-23T22:19:54.062Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-23T22:19:54.062Z", - "end": "2022-04-23T22:57:29.517Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "608700383891121851", - "game": "518088627234930688", - "start": "2022-06-09T23:28:44.742Z", - "end": "2022-06-10T07:13:02.415Z", - "events": [ - { - "start": "2022-06-09T23:28:44.742Z", - "end": "2022-06-10T07:13:02.415Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "495724335127362694", - "game": "510199020782747732", - "start": "2022-07-23T00:37:37.141Z", - "end": "2022-07-23T10:10:05.796Z", - "events": [ - { - "start": "2022-07-23T00:37:37.141Z", - "end": "2022-07-23T10:10:05.796Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512789343157485602", - "start": "2022-05-14T11:36:22.764Z", - "end": "2022-05-14T17:18:22.494Z", - "events": [ - { - "start": "2022-05-14T11:36:22.764Z", - "end": "2022-05-14T17:18:22.494Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "931211630078779300", - "game": "540120593576493057", - "start": "2022-06-03T01:46:05.257Z", - "end": "2022-06-03T10:58:57.286Z", - "events": [ - { - "start": "2022-06-03T01:46:05.257Z", - "end": "2022-06-03T06:22:31.271Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T06:22:31.271Z", - "end": "2022-06-03T10:58:57.285Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "695941172337689379", - "game": "560781100197216267", - "start": "2022-04-18T11:06:37.323Z", - "end": "2022-04-18T20:42:31.143Z", - "events": [ - { - "start": "2022-04-18T11:06:37.323Z", - "end": "2022-04-18T14:18:35.263Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T14:18:35.263Z", - "end": "2022-04-18T17:30:33.203Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T17:30:33.203Z", - "end": "2022-04-18T20:42:31.143Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "542475118396309528", - "start": "2022-06-24T16:15:02.147Z", - "end": "2022-06-24T20:54:58.850Z", - "events": [ - { - "start": "2022-06-24T16:15:02.147Z", - "end": "2022-06-24T18:35:00.498Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T18:35:00.498Z", - "end": "2022-06-24T20:54:58.849Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "584069374462394368", - "start": "2022-07-27T10:57:18.041Z", - "end": "2022-07-27T15:36:12.474Z", - "events": [ - { - "start": "2022-07-27T10:57:18.041Z", - "end": "2022-07-27T15:36:12.474Z", - "state": "IDLE" - } - ] - }, - { - "user": "424856688594618054", - "game": "575412499399180288", - "start": "2022-05-29T18:33:35.646Z", - "end": "2022-05-29T19:17:25.176Z", - "events": [ - { - "start": "2022-05-29T18:33:35.646Z", - "end": "2022-05-29T18:44:33.028Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T18:44:33.028Z", - "end": "2022-05-29T18:55:30.410Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T18:55:30.410Z", - "end": "2022-05-29T19:06:27.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T19:06:27.792Z", - "end": "2022-05-29T19:17:25.174Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "535371564850479134", - "start": "2022-06-07T08:37:56.600Z", - "end": "2022-06-07T10:32:10.553Z", - "events": [ - { - "start": "2022-06-07T08:37:56.600Z", - "end": "2022-06-07T09:35:03.576Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-07T09:35:03.576Z", - "end": "2022-06-07T10:32:10.552Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "541104083732114799", - "game": "528145079819436043", - "start": "2022-07-10T21:51:42.839Z", - "end": "2022-07-11T07:36:58.697Z", - "events": [ - { - "start": "2022-07-10T21:51:42.839Z", - "end": "2022-07-11T01:06:48.125Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T01:06:48.125Z", - "end": "2022-07-11T04:21:53.411Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T04:21:53.411Z", - "end": "2022-07-11T07:36:58.697Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "137536289023624121", - "game": "508057374875975682", - "start": "2022-04-19T13:45:35.180Z", - "end": "2022-04-19T13:53:41.952Z", - "events": [ - { - "start": "2022-04-19T13:45:35.180Z", - "end": "2022-04-19T13:47:36.873Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T13:47:36.873Z", - "end": "2022-04-19T13:49:38.566Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T13:49:38.566Z", - "end": "2022-04-19T13:51:40.259Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T13:51:40.259Z", - "end": "2022-04-19T13:53:41.952Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "542075586886107149", - "start": "2022-08-06T00:49:35.714Z", - "end": "2022-08-06T09:07:31.897Z", - "events": [ - { - "start": "2022-08-06T00:49:35.714Z", - "end": "2022-08-06T02:54:04.759Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T02:54:04.759Z", - "end": "2022-08-06T04:58:33.804Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-06T04:58:33.804Z", - "end": "2022-08-06T07:03:02.849Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T07:03:02.849Z", - "end": "2022-08-06T09:07:31.894Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "318220875546522080", - "game": "576482762446602270", - "start": "2022-05-28T01:50:17.403Z", - "end": "2022-05-28T11:23:32.888Z", - "events": [ - { - "start": "2022-05-28T01:50:17.403Z", - "end": "2022-05-28T05:01:22.564Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T05:01:22.564Z", - "end": "2022-05-28T08:12:27.725Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T08:12:27.725Z", - "end": "2022-05-28T11:23:32.886Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "137536289023624121", - "game": "554573307161214977", - "start": "2022-06-24T04:37:44.538Z", - "end": "2022-06-24T07:54:00.703Z", - "events": [ - { - "start": "2022-06-24T04:37:44.538Z", - "end": "2022-06-24T07:54:00.703Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302347517889336519", - "game": "521842831262875670", - "start": "2022-08-06T09:54:40.572Z", - "end": "2022-08-06T12:24:23.408Z", - "events": [ - { - "start": "2022-08-06T09:54:40.572Z", - "end": "2022-08-06T10:32:06.281Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T10:32:06.281Z", - "end": "2022-08-06T11:09:31.990Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T11:09:31.990Z", - "end": "2022-08-06T11:46:57.699Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T11:46:57.699Z", - "end": "2022-08-06T12:24:23.408Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "518088627234930688", - "start": "2022-05-24T00:05:04.393Z", - "end": "2022-05-24T00:58:21.272Z", - "events": [ - { - "start": "2022-05-24T00:05:04.393Z", - "end": "2022-05-24T00:58:21.272Z", - "state": "IDLE" - } - ] - }, - { - "user": "625617695768437507", - "game": "614448244260339712", - "start": "2022-08-04T01:42:12.603Z", - "end": "2022-08-04T03:24:50.843Z", - "events": [ - { - "start": "2022-08-04T01:42:12.603Z", - "end": "2022-08-04T02:16:25.349Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T02:16:25.349Z", - "end": "2022-08-04T02:50:38.095Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T02:50:38.095Z", - "end": "2022-08-04T03:24:50.841Z", - "state": "IDLE" - } - ] - }, - { - "user": "625617695768437507", - "game": "520462578061803588", - "start": "2022-07-13T22:18:19.587Z", - "end": "2022-07-14T06:04:56.980Z", - "events": [ - { - "start": "2022-07-13T22:18:19.587Z", - "end": "2022-07-14T02:11:38.283Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T02:11:38.283Z", - "end": "2022-07-14T06:04:56.979Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "542075586886107149", - "start": "2022-07-19T03:43:36.127Z", - "end": "2022-07-19T08:43:39.796Z", - "events": [ - { - "start": "2022-07-19T03:43:36.127Z", - "end": "2022-07-19T05:23:37.350Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T05:23:37.350Z", - "end": "2022-07-19T07:03:38.573Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T07:03:38.573Z", - "end": "2022-07-19T08:43:39.796Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "512699108809637890", - "start": "2022-06-01T17:15:50.876Z", - "end": "2022-06-02T00:08:34.025Z", - "events": [ - { - "start": "2022-06-01T17:15:50.876Z", - "end": "2022-06-01T18:38:23.505Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T18:38:23.505Z", - "end": "2022-06-01T20:00:56.134Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-01T20:00:56.134Z", - "end": "2022-06-01T21:23:28.763Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-01T21:23:28.763Z", - "end": "2022-06-01T22:46:01.392Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T22:46:01.392Z", - "end": "2022-06-02T00:08:34.021Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "606163888052109312", - "start": "2022-07-22T20:50:50.623Z", - "end": "2022-07-23T04:33:38.891Z", - "events": [ - { - "start": "2022-07-22T20:50:50.623Z", - "end": "2022-07-23T00:42:14.757Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T00:42:14.757Z", - "end": "2022-07-23T04:33:38.891Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "788818750251007268", - "game": "512789343157485602", - "start": "2022-07-28T11:17:34.462Z", - "end": "2022-07-28T15:35:48.504Z", - "events": [ - { - "start": "2022-07-28T11:17:34.462Z", - "end": "2022-07-28T12:43:39.142Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T12:43:39.142Z", - "end": "2022-07-28T14:09:43.822Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T14:09:43.822Z", - "end": "2022-07-28T15:35:48.502Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "512501896896970762", - "start": "2022-08-05T21:49:13.665Z", - "end": "2022-08-05T22:59:16.789Z", - "events": [ - { - "start": "2022-08-05T21:49:13.665Z", - "end": "2022-08-05T22:12:34.706Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T22:12:34.706Z", - "end": "2022-08-05T22:35:55.747Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T22:35:55.747Z", - "end": "2022-08-05T22:59:16.788Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786084290971413565", - "game": "512789120234422301", - "start": "2022-04-25T21:09:41.402Z", - "end": "2022-04-26T03:36:26.336Z", - "events": [ - { - "start": "2022-04-25T21:09:41.402Z", - "end": "2022-04-25T22:46:22.635Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T22:46:22.635Z", - "end": "2022-04-26T00:23:03.868Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T00:23:03.868Z", - "end": "2022-04-26T01:59:45.101Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T01:59:45.101Z", - "end": "2022-04-26T03:36:26.334Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "747381962738157784", - "game": "565341641427124244", - "start": "2022-05-27T04:30:13.948Z", - "end": "2022-05-27T10:59:05.310Z", - "events": [ - { - "start": "2022-05-27T04:30:13.948Z", - "end": "2022-05-27T10:59:05.310Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "614448244260339712", - "start": "2022-07-30T12:07:49.958Z", - "end": "2022-07-30T19:53:18.450Z", - "events": [ - { - "start": "2022-07-30T12:07:49.958Z", - "end": "2022-07-30T14:04:12.081Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T14:04:12.081Z", - "end": "2022-07-30T16:00:34.204Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-30T16:00:34.204Z", - "end": "2022-07-30T17:56:56.327Z", - "state": "IDLE" - }, - { - "start": "2022-07-30T17:56:56.327Z", - "end": "2022-07-30T19:53:18.450Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "137536289023624121", - "game": "606163888052109312", - "start": "2022-05-31T05:53:32.521Z", - "end": "2022-05-31T06:44:03.966Z", - "events": [ - { - "start": "2022-05-31T05:53:32.521Z", - "end": "2022-05-31T06:03:38.810Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T06:03:38.810Z", - "end": "2022-05-31T06:13:45.099Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T06:13:45.099Z", - "end": "2022-05-31T06:23:51.388Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T06:23:51.388Z", - "end": "2022-05-31T06:33:57.677Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T06:33:57.677Z", - "end": "2022-05-31T06:44:03.966Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "572456126872944651", - "start": "2022-04-23T21:55:08.888Z", - "end": "2022-04-24T01:17:14.876Z", - "events": [ - { - "start": "2022-04-23T21:55:08.888Z", - "end": "2022-04-24T01:17:14.876Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "406850294055619241", - "game": "540120593576493057", - "start": "2022-07-31T05:40:41.711Z", - "end": "2022-07-31T14:22:29.746Z", - "events": [ - { - "start": "2022-07-31T05:40:41.711Z", - "end": "2022-07-31T07:25:03.318Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T07:25:03.318Z", - "end": "2022-07-31T09:09:24.925Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T09:09:24.925Z", - "end": "2022-07-31T10:53:46.532Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T10:53:46.532Z", - "end": "2022-07-31T12:38:08.139Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T12:38:08.139Z", - "end": "2022-07-31T14:22:29.746Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "700136079562375258", - "start": "2022-05-29T12:42:14.981Z", - "end": "2022-05-29T18:14:25.623Z", - "events": [ - { - "start": "2022-05-29T12:42:14.981Z", - "end": "2022-05-29T14:05:17.641Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T14:05:17.641Z", - "end": "2022-05-29T15:28:20.301Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T15:28:20.301Z", - "end": "2022-05-29T16:51:22.961Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T16:51:22.961Z", - "end": "2022-05-29T18:14:25.621Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "636935635446628860", - "game": "512789427462995988", - "start": "2022-07-04T01:15:28.450Z", - "end": "2022-07-04T09:59:55.681Z", - "events": [ - { - "start": "2022-07-04T01:15:28.450Z", - "end": "2022-07-04T05:37:42.065Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T05:37:42.065Z", - "end": "2022-07-04T09:59:55.680Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "938976307338486810", - "game": "535869836748783616", - "start": "2022-07-01T13:24:05.510Z", - "end": "2022-07-01T21:03:33.608Z", - "events": [ - { - "start": "2022-07-01T13:24:05.510Z", - "end": "2022-07-01T14:55:59.129Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T14:55:59.129Z", - "end": "2022-07-01T16:27:52.748Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-01T16:27:52.748Z", - "end": "2022-07-01T17:59:46.367Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T17:59:46.367Z", - "end": "2022-07-01T19:31:39.986Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T19:31:39.986Z", - "end": "2022-07-01T21:03:33.605Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "161887854890745672", - "game": "584069374462394368", - "start": "2022-07-01T02:23:02.433Z", - "end": "2022-07-01T06:34:00.328Z", - "events": [ - { - "start": "2022-07-01T02:23:02.433Z", - "end": "2022-07-01T03:13:14.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T03:13:14.012Z", - "end": "2022-07-01T04:03:25.591Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T04:03:25.591Z", - "end": "2022-07-01T04:53:37.170Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T04:53:37.170Z", - "end": "2022-07-01T05:43:48.749Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T05:43:48.749Z", - "end": "2022-07-01T06:34:00.328Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "510690749854514547", - "game": "511619499053678668", - "start": "2022-07-31T21:08:36.930Z", - "end": "2022-08-01T04:17:27.928Z", - "events": [ - { - "start": "2022-07-31T21:08:36.930Z", - "end": "2022-08-01T04:17:27.928Z", - "state": "IDLE" - } - ] - }, - { - "user": "467658810442648809", - "game": "553697181249437716", - "start": "2022-06-30T22:28:23.510Z", - "end": "2022-07-01T00:58:12.469Z", - "events": [ - { - "start": "2022-06-30T22:28:23.510Z", - "end": "2022-06-30T22:58:21.301Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-30T22:58:21.301Z", - "end": "2022-06-30T23:28:19.092Z", - "state": "IDLE" - }, - { - "start": "2022-06-30T23:28:19.092Z", - "end": "2022-06-30T23:58:16.883Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-30T23:58:16.883Z", - "end": "2022-07-01T00:28:14.674Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T00:28:14.674Z", - "end": "2022-07-01T00:58:12.465Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "605723970188938456", - "game": "584069374462394368", - "start": "2022-08-05T16:04:09.960Z", - "end": "2022-08-05T22:44:57.529Z", - "events": [ - { - "start": "2022-08-05T16:04:09.960Z", - "end": "2022-08-05T22:44:57.529Z", - "state": "IDLE" - } - ] - }, - { - "user": "538658792298239054", - "game": "588739017718366208", - "start": "2022-07-06T18:21:31.818Z", - "end": "2022-07-07T01:27:58.305Z", - "events": [ - { - "start": "2022-07-06T18:21:31.818Z", - "end": "2022-07-06T19:46:49.115Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T19:46:49.115Z", - "end": "2022-07-06T21:12:06.412Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-06T21:12:06.412Z", - "end": "2022-07-06T22:37:23.709Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-06T22:37:23.709Z", - "end": "2022-07-07T00:02:41.006Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T00:02:41.006Z", - "end": "2022-07-07T01:27:58.303Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "605723970188938456", - "game": "356875221078245376", - "start": "2022-07-22T05:00:20.885Z", - "end": "2022-07-22T08:29:27.798Z", - "events": [ - { - "start": "2022-07-22T05:00:20.885Z", - "end": "2022-07-22T06:44:54.341Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T06:44:54.341Z", - "end": "2022-07-22T08:29:27.797Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "554921822626381879", - "start": "2022-07-11T12:10:39.818Z", - "end": "2022-07-11T13:34:29.516Z", - "events": [ - { - "start": "2022-07-11T12:10:39.818Z", - "end": "2022-07-11T13:34:29.516Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "153631479524744694", - "game": "542474758835535872", - "start": "2022-07-22T08:44:31.785Z", - "end": "2022-07-22T16:00:51.431Z", - "events": [ - { - "start": "2022-07-22T08:44:31.785Z", - "end": "2022-07-22T10:11:47.714Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T10:11:47.714Z", - "end": "2022-07-22T11:39:03.643Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T11:39:03.643Z", - "end": "2022-07-22T13:06:19.572Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T13:06:19.572Z", - "end": "2022-07-22T14:33:35.501Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T14:33:35.501Z", - "end": "2022-07-22T16:00:51.430Z", - "state": "IDLE" - } - ] - }, - { - "user": "126384926926158511", - "game": "550277544025522176", - "start": "2022-08-05T07:59:42.712Z", - "end": "2022-08-05T17:06:21.759Z", - "events": [ - { - "start": "2022-08-05T07:59:42.712Z", - "end": "2022-08-05T17:06:21.759Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "467658810442648809", - "game": "560781100197216267", - "start": "2022-07-01T18:00:48.472Z", - "end": "2022-07-02T01:51:23.008Z", - "events": [ - { - "start": "2022-07-01T18:00:48.472Z", - "end": "2022-07-02T01:51:23.008Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "592976500802846750", - "start": "2022-05-27T21:24:32.133Z", - "end": "2022-05-28T01:18:06.404Z", - "events": [ - { - "start": "2022-05-27T21:24:32.133Z", - "end": "2022-05-27T23:21:19.268Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T23:21:19.268Z", - "end": "2022-05-28T01:18:06.403Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "394970121077311909", - "game": "572456126872944651", - "start": "2022-05-15T16:57:32.210Z", - "end": "2022-05-16T01:02:29.325Z", - "events": [ - { - "start": "2022-05-15T16:57:32.210Z", - "end": "2022-05-15T18:58:46.488Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T18:58:46.488Z", - "end": "2022-05-15T21:00:00.766Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T21:00:00.766Z", - "end": "2022-05-15T23:01:15.044Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T23:01:15.044Z", - "end": "2022-05-16T01:02:29.322Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "597588168178663434", - "start": "2022-06-01T13:02:23.174Z", - "end": "2022-06-01T19:19:39.308Z", - "events": [ - { - "start": "2022-06-01T13:02:23.174Z", - "end": "2022-06-01T19:19:39.308Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "542075586886107149", - "start": "2022-07-29T13:02:43.772Z", - "end": "2022-07-29T17:16:22.286Z", - "events": [ - { - "start": "2022-07-29T13:02:43.772Z", - "end": "2022-07-29T14:27:16.610Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T14:27:16.610Z", - "end": "2022-07-29T15:51:49.448Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T15:51:49.448Z", - "end": "2022-07-29T17:16:22.286Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "606163888052109312", - "start": "2022-08-05T10:55:08.937Z", - "end": "2022-08-05T14:28:49.337Z", - "events": [ - { - "start": "2022-08-05T10:55:08.937Z", - "end": "2022-08-05T12:41:59.137Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T12:41:59.137Z", - "end": "2022-08-05T14:28:49.337Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "553697181249437716", - "start": "2022-05-24T13:50:09.251Z", - "end": "2022-05-24T22:40:49.257Z", - "events": [ - { - "start": "2022-05-24T13:50:09.251Z", - "end": "2022-05-24T15:36:17.252Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T15:36:17.252Z", - "end": "2022-05-24T17:22:25.253Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T17:22:25.253Z", - "end": "2022-05-24T19:08:33.254Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T19:08:33.254Z", - "end": "2022-05-24T20:54:41.255Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T20:54:41.255Z", - "end": "2022-05-24T22:40:49.256Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "931211630078779300", - "game": "569008830701240340", - "start": "2022-05-25T12:53:15.056Z", - "end": "2022-05-25T18:16:23.511Z", - "events": [ - { - "start": "2022-05-25T12:53:15.056Z", - "end": "2022-05-25T13:57:52.747Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T13:57:52.747Z", - "end": "2022-05-25T15:02:30.438Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T15:02:30.438Z", - "end": "2022-05-25T16:07:08.129Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T16:07:08.129Z", - "end": "2022-05-25T17:11:45.820Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T17:11:45.820Z", - "end": "2022-05-25T18:16:23.511Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "559757870366930730", - "game": "569008830701240340", - "start": "2022-05-08T07:26:17.977Z", - "end": "2022-05-08T08:00:48.176Z", - "events": [ - { - "start": "2022-05-08T07:26:17.977Z", - "end": "2022-05-08T07:34:55.526Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T07:34:55.526Z", - "end": "2022-05-08T07:43:33.075Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T07:43:33.075Z", - "end": "2022-05-08T07:52:10.624Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T07:52:10.624Z", - "end": "2022-05-08T08:00:48.173Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "605723970188938456", - "game": "540120593576493057", - "start": "2022-05-22T02:07:20.803Z", - "end": "2022-05-22T07:20:23.119Z", - "events": [ - { - "start": "2022-05-22T02:07:20.803Z", - "end": "2022-05-22T07:20:23.119Z", - "state": "IDLE" - } - ] - }, - { - "user": "791267126190249625", - "game": "572456126872944651", - "start": "2022-04-20T13:31:32.611Z", - "end": "2022-04-20T19:51:46.657Z", - "events": [ - { - "start": "2022-04-20T13:31:32.611Z", - "end": "2022-04-20T15:38:17.293Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-20T15:38:17.293Z", - "end": "2022-04-20T17:45:01.975Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T17:45:01.975Z", - "end": "2022-04-20T19:51:46.657Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "553697181249437716", - "start": "2022-07-23T18:47:59.400Z", - "end": "2022-07-23T20:25:38.869Z", - "events": [ - { - "start": "2022-07-23T18:47:59.400Z", - "end": "2022-07-23T20:25:38.869Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "269014914705953013", - "game": "588739017718366208", - "start": "2022-08-03T23:02:09.338Z", - "end": "2022-08-03T23:24:38.907Z", - "events": [ - { - "start": "2022-08-03T23:02:09.338Z", - "end": "2022-08-03T23:13:24.122Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T23:13:24.122Z", - "end": "2022-08-03T23:24:38.906Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "560781100197216267", - "start": "2022-07-07T06:37:10.343Z", - "end": "2022-07-07T14:45:32.800Z", - "events": [ - { - "start": "2022-07-07T06:37:10.343Z", - "end": "2022-07-07T10:41:21.571Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-07T10:41:21.571Z", - "end": "2022-07-07T14:45:32.799Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "336473229248470346", - "game": "554573307161214977", - "start": "2022-05-02T10:20:14.851Z", - "end": "2022-05-02T20:09:05.878Z", - "events": [ - { - "start": "2022-05-02T10:20:14.851Z", - "end": "2022-05-02T12:47:27.607Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T12:47:27.607Z", - "end": "2022-05-02T15:14:40.363Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T15:14:40.363Z", - "end": "2022-05-02T17:41:53.119Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T17:41:53.119Z", - "end": "2022-05-02T20:09:05.875Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "131482253203487270", - "game": "512789343157485602", - "start": "2022-05-12T16:53:10.880Z", - "end": "2022-05-12T18:24:57.735Z", - "events": [ - { - "start": "2022-05-12T16:53:10.880Z", - "end": "2022-05-12T17:16:07.593Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T17:16:07.593Z", - "end": "2022-05-12T17:39:04.306Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T17:39:04.306Z", - "end": "2022-05-12T18:02:01.019Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-12T18:02:01.019Z", - "end": "2022-05-12T18:24:57.732Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "346608907417001845", - "game": "558547388583772201", - "start": "2022-07-19T06:31:57.346Z", - "end": "2022-07-19T09:13:49.416Z", - "events": [ - { - "start": "2022-07-19T06:31:57.346Z", - "end": "2022-07-19T07:25:54.702Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T07:25:54.702Z", - "end": "2022-07-19T08:19:52.058Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T08:19:52.058Z", - "end": "2022-07-19T09:13:49.414Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "600708263053781983", - "game": "512789343157485602", - "start": "2022-06-03T19:16:04.576Z", - "end": "2022-06-04T01:48:11.200Z", - "events": [ - { - "start": "2022-06-03T19:16:04.576Z", - "end": "2022-06-03T20:54:06.232Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T20:54:06.232Z", - "end": "2022-06-03T22:32:07.888Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T22:32:07.888Z", - "end": "2022-06-04T00:10:09.544Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T00:10:09.544Z", - "end": "2022-06-04T01:48:11.200Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "554573307161214977", - "start": "2022-07-01T09:06:50.695Z", - "end": "2022-07-01T10:39:24.569Z", - "events": [ - { - "start": "2022-07-01T09:06:50.695Z", - "end": "2022-07-01T09:29:59.163Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T09:29:59.163Z", - "end": "2022-07-01T09:53:07.631Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T09:53:07.631Z", - "end": "2022-07-01T10:16:16.099Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T10:16:16.099Z", - "end": "2022-07-01T10:39:24.567Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "596421190780633864", - "game": "569253958967885828", - "start": "2022-04-27T12:50:51.700Z", - "end": "2022-04-27T22:54:38.818Z", - "events": [ - { - "start": "2022-04-27T12:50:51.700Z", - "end": "2022-04-27T14:51:37.123Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T14:51:37.123Z", - "end": "2022-04-27T16:52:22.546Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T16:52:22.546Z", - "end": "2022-04-27T18:53:07.969Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T18:53:07.969Z", - "end": "2022-04-27T20:53:53.392Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T20:53:53.392Z", - "end": "2022-04-27T22:54:38.815Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "463820732483181525", - "game": "569253958967885828", - "start": "2022-07-29T11:47:22.244Z", - "end": "2022-07-29T12:05:42.780Z", - "events": [ - { - "start": "2022-07-29T11:47:22.244Z", - "end": "2022-07-29T11:56:32.512Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T11:56:32.512Z", - "end": "2022-07-29T12:05:42.780Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "424856688594618054", - "game": "512699108809637890", - "start": "2022-05-28T04:31:37.330Z", - "end": "2022-05-28T08:35:05.703Z", - "events": [ - { - "start": "2022-05-28T04:31:37.330Z", - "end": "2022-05-28T05:20:19.004Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T05:20:19.004Z", - "end": "2022-05-28T06:09:00.678Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T06:09:00.678Z", - "end": "2022-05-28T06:57:42.352Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T06:57:42.352Z", - "end": "2022-05-28T07:46:24.026Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-28T07:46:24.026Z", - "end": "2022-05-28T08:35:05.700Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "597588168178663434", - "start": "2022-06-23T00:01:38.350Z", - "end": "2022-06-23T00:22:39.341Z", - "events": [ - { - "start": "2022-06-23T00:01:38.350Z", - "end": "2022-06-23T00:06:53.597Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T00:06:53.597Z", - "end": "2022-06-23T00:12:08.844Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T00:12:08.844Z", - "end": "2022-06-23T00:17:24.091Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T00:17:24.091Z", - "end": "2022-06-23T00:22:39.338Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "732542352358923773", - "game": "558547388583772201", - "start": "2022-04-21T19:14:39.216Z", - "end": "2022-04-22T02:39:04.273Z", - "events": [ - { - "start": "2022-04-21T19:14:39.216Z", - "end": "2022-04-21T22:56:51.744Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T22:56:51.744Z", - "end": "2022-04-22T02:39:04.272Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "101572134856427564", - "game": "597588168178663434", - "start": "2022-06-04T16:28:00.130Z", - "end": "2022-06-04T17:09:45.235Z", - "events": [ - { - "start": "2022-06-04T16:28:00.130Z", - "end": "2022-06-04T17:09:45.235Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "494763633796983404", - "game": "597588168178663434", - "start": "2022-06-16T06:45:01.953Z", - "end": "2022-06-16T12:22:36.492Z", - "events": [ - { - "start": "2022-06-16T06:45:01.953Z", - "end": "2022-06-16T08:37:33.466Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T08:37:33.466Z", - "end": "2022-06-16T10:30:04.979Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T10:30:04.979Z", - "end": "2022-06-16T12:22:36.492Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "514228311661084682", - "start": "2022-06-12T09:55:32.283Z", - "end": "2022-06-12T10:17:47.066Z", - "events": [ - { - "start": "2022-06-12T09:55:32.283Z", - "end": "2022-06-12T10:17:47.066Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "182925797752958092", - "game": "512699108809637890", - "start": "2022-07-31T16:11:55.767Z", - "end": "2022-07-31T22:58:21.770Z", - "events": [ - { - "start": "2022-07-31T16:11:55.767Z", - "end": "2022-07-31T22:58:21.770Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "597588168178663434", - "start": "2022-04-16T06:12:38.840Z", - "end": "2022-04-16T14:05:24.493Z", - "events": [ - { - "start": "2022-04-16T06:12:38.840Z", - "end": "2022-04-16T07:47:11.970Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T07:47:11.970Z", - "end": "2022-04-16T09:21:45.100Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T09:21:45.100Z", - "end": "2022-04-16T10:56:18.230Z", - "state": "IDLE" - }, - { - "start": "2022-04-16T10:56:18.230Z", - "end": "2022-04-16T12:30:51.360Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T12:30:51.360Z", - "end": "2022-04-16T14:05:24.490Z", - "state": "IDLE" - } - ] - }, - { - "user": "922664752332558395", - "game": "514228311661084682", - "start": "2022-05-22T14:01:46.446Z", - "end": "2022-05-22T17:35:15.492Z", - "events": [ - { - "start": "2022-05-22T14:01:46.446Z", - "end": "2022-05-22T17:35:15.492Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "584069374462394368", - "start": "2022-05-22T15:20:27.216Z", - "end": "2022-05-22T18:03:00.559Z", - "events": [ - { - "start": "2022-05-22T15:20:27.216Z", - "end": "2022-05-22T16:01:05.551Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-22T16:01:05.551Z", - "end": "2022-05-22T16:41:43.886Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-22T16:41:43.886Z", - "end": "2022-05-22T17:22:22.221Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T17:22:22.221Z", - "end": "2022-05-22T18:03:00.556Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "565341641427124244", - "start": "2022-06-23T18:17:27.587Z", - "end": "2022-06-23T19:56:07.800Z", - "events": [ - { - "start": "2022-06-23T18:17:27.587Z", - "end": "2022-06-23T18:50:20.991Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T18:50:20.991Z", - "end": "2022-06-23T19:23:14.395Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T19:23:14.395Z", - "end": "2022-06-23T19:56:07.799Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "569008830701240340", - "start": "2022-06-26T00:07:34.575Z", - "end": "2022-06-26T03:40:16.762Z", - "events": [ - { - "start": "2022-06-26T00:07:34.575Z", - "end": "2022-06-26T03:40:16.762Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "153631479524744694", - "game": "572456126872944651", - "start": "2022-05-17T14:18:25.925Z", - "end": "2022-05-17T14:50:41.251Z", - "events": [ - { - "start": "2022-05-17T14:18:25.925Z", - "end": "2022-05-17T14:50:41.251Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "841397740041930984", - "game": "569008830701240340", - "start": "2022-08-02T09:46:35.228Z", - "end": "2022-08-02T13:43:02.556Z", - "events": [ - { - "start": "2022-08-02T09:46:35.228Z", - "end": "2022-08-02T10:33:52.693Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T10:33:52.693Z", - "end": "2022-08-02T11:21:10.158Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T11:21:10.158Z", - "end": "2022-08-02T12:08:27.623Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T12:08:27.623Z", - "end": "2022-08-02T12:55:45.088Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-02T12:55:45.088Z", - "end": "2022-08-02T13:43:02.553Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "569253958967885828", - "start": "2022-04-24T15:40:05.327Z", - "end": "2022-04-25T01:29:32.908Z", - "events": [ - { - "start": "2022-04-24T15:40:05.327Z", - "end": "2022-04-24T18:56:34.520Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T18:56:34.520Z", - "end": "2022-04-24T22:13:03.713Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-24T22:13:03.713Z", - "end": "2022-04-25T01:29:32.906Z", - "state": "IDLE" - } - ] - }, - { - "user": "951131768137733554", - "game": "518088627234930688", - "start": "2022-06-04T19:06:44.493Z", - "end": "2022-06-04T23:15:26.869Z", - "events": [ - { - "start": "2022-06-04T19:06:44.493Z", - "end": "2022-06-04T23:15:26.869Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "452396069922968436", - "game": "521842831262875670", - "start": "2022-05-17T15:36:20.645Z", - "end": "2022-05-17T17:46:18.668Z", - "events": [ - { - "start": "2022-05-17T15:36:20.645Z", - "end": "2022-05-17T16:41:19.656Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T16:41:19.656Z", - "end": "2022-05-17T17:46:18.667Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "549054179973094329", - "game": "520462578061803588", - "start": "2022-07-09T10:30:36.517Z", - "end": "2022-07-09T15:20:26.006Z", - "events": [ - { - "start": "2022-07-09T10:30:36.517Z", - "end": "2022-07-09T12:07:13.013Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T12:07:13.013Z", - "end": "2022-07-09T13:43:49.509Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T13:43:49.509Z", - "end": "2022-07-09T15:20:26.005Z", - "state": "IDLE" - } - ] - }, - { - "user": "106607193284486979", - "game": "540120593576493057", - "start": "2022-07-17T10:28:53.370Z", - "end": "2022-07-17T15:42:42.510Z", - "events": [ - { - "start": "2022-07-17T10:28:53.370Z", - "end": "2022-07-17T11:31:39.198Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-17T11:31:39.198Z", - "end": "2022-07-17T12:34:25.026Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T12:34:25.026Z", - "end": "2022-07-17T13:37:10.854Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-17T13:37:10.854Z", - "end": "2022-07-17T14:39:56.682Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T14:39:56.682Z", - "end": "2022-07-17T15:42:42.510Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "508057374875975682", - "start": "2022-07-12T09:44:27.599Z", - "end": "2022-07-12T11:02:34.943Z", - "events": [ - { - "start": "2022-07-12T09:44:27.599Z", - "end": "2022-07-12T10:23:31.271Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T10:23:31.271Z", - "end": "2022-07-12T11:02:34.943Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "821608522568592914", - "game": "519644267212177418", - "start": "2022-05-14T01:01:14.567Z", - "end": "2022-05-14T01:30:15.462Z", - "events": [ - { - "start": "2022-05-14T01:01:14.567Z", - "end": "2022-05-14T01:08:29.790Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T01:08:29.790Z", - "end": "2022-05-14T01:15:45.013Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T01:15:45.013Z", - "end": "2022-05-14T01:23:00.236Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T01:23:00.236Z", - "end": "2022-05-14T01:30:15.459Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "549512435585908756", - "start": "2022-05-30T14:00:32.932Z", - "end": "2022-05-30T15:20:39.979Z", - "events": [ - { - "start": "2022-05-30T14:00:32.932Z", - "end": "2022-05-30T14:27:15.281Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T14:27:15.281Z", - "end": "2022-05-30T14:53:57.630Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T14:53:57.630Z", - "end": "2022-05-30T15:20:39.979Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "512501896896970762", - "start": "2022-05-29T03:49:52.301Z", - "end": "2022-05-29T13:20:30.567Z", - "events": [ - { - "start": "2022-05-29T03:49:52.301Z", - "end": "2022-05-29T06:12:31.867Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T06:12:31.867Z", - "end": "2022-05-29T08:35:11.433Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T08:35:11.433Z", - "end": "2022-05-29T10:57:50.999Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T10:57:50.999Z", - "end": "2022-05-29T13:20:30.565Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "519644267212177418", - "start": "2022-07-22T06:09:07.017Z", - "end": "2022-07-22T14:13:41.668Z", - "events": [ - { - "start": "2022-07-22T06:09:07.017Z", - "end": "2022-07-22T07:46:01.947Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T07:46:01.947Z", - "end": "2022-07-22T09:22:56.877Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T09:22:56.877Z", - "end": "2022-07-22T10:59:51.807Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T10:59:51.807Z", - "end": "2022-07-22T12:36:46.737Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T12:36:46.737Z", - "end": "2022-07-22T14:13:41.667Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "542475118396309528", - "start": "2022-07-11T18:48:23.823Z", - "end": "2022-07-12T04:08:10.468Z", - "events": [ - { - "start": "2022-07-11T18:48:23.823Z", - "end": "2022-07-11T20:40:21.152Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T20:40:21.152Z", - "end": "2022-07-11T22:32:18.481Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T22:32:18.481Z", - "end": "2022-07-12T00:24:15.810Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T00:24:15.810Z", - "end": "2022-07-12T02:16:13.139Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T02:16:13.139Z", - "end": "2022-07-12T04:08:10.468Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "521842831262875670", - "start": "2022-07-10T17:26:23.530Z", - "end": "2022-07-10T22:11:41.118Z", - "events": [ - { - "start": "2022-07-10T17:26:23.530Z", - "end": "2022-07-10T22:11:41.118Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "731522398939920723", - "game": "606163888052109312", - "start": "2022-05-18T16:10:08.781Z", - "end": "2022-05-18T18:08:33.347Z", - "events": [ - { - "start": "2022-05-18T16:10:08.781Z", - "end": "2022-05-18T17:09:21.064Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T17:09:21.064Z", - "end": "2022-05-18T18:08:33.347Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "658550407298256890", - "game": "553697181249437716", - "start": "2022-06-13T11:00:42.239Z", - "end": "2022-06-13T14:21:46.129Z", - "events": [ - { - "start": "2022-06-13T11:00:42.239Z", - "end": "2022-06-13T14:21:46.129Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "356875221078245376", - "start": "2022-06-16T10:39:25.521Z", - "end": "2022-06-16T13:23:30.642Z", - "events": [ - { - "start": "2022-06-16T10:39:25.521Z", - "end": "2022-06-16T12:01:28.081Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T12:01:28.081Z", - "end": "2022-06-16T13:23:30.641Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "584069374462394368", - "start": "2022-07-09T10:21:40.866Z", - "end": "2022-07-09T18:33:58.170Z", - "events": [ - { - "start": "2022-07-09T10:21:40.866Z", - "end": "2022-07-09T18:33:58.170Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "510690749854514547", - "game": "553697181249437716", - "start": "2022-06-20T21:14:39.765Z", - "end": "2022-06-21T04:26:01.131Z", - "events": [ - { - "start": "2022-06-20T21:14:39.765Z", - "end": "2022-06-20T23:02:30.106Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T23:02:30.106Z", - "end": "2022-06-21T00:50:20.447Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T00:50:20.447Z", - "end": "2022-06-21T02:38:10.788Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T02:38:10.788Z", - "end": "2022-06-21T04:26:01.129Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "378424071510192465", - "game": "510199020782747732", - "start": "2022-06-28T13:55:28.821Z", - "end": "2022-06-28T23:48:32.772Z", - "events": [ - { - "start": "2022-06-28T13:55:28.821Z", - "end": "2022-06-28T16:23:44.808Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-28T16:23:44.808Z", - "end": "2022-06-28T18:52:00.795Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T18:52:00.795Z", - "end": "2022-06-28T21:20:16.782Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-28T21:20:16.782Z", - "end": "2022-06-28T23:48:32.769Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "153631479524744694", - "game": "542474758835535872", - "start": "2022-04-25T19:10:14.978Z", - "end": "2022-04-26T05:06:34.947Z", - "events": [ - { - "start": "2022-04-25T19:10:14.978Z", - "end": "2022-04-25T21:39:19.970Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T21:39:19.970Z", - "end": "2022-04-26T00:08:24.962Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T00:08:24.962Z", - "end": "2022-04-26T02:37:29.954Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T02:37:29.954Z", - "end": "2022-04-26T05:06:34.946Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "535869836748783616", - "start": "2022-05-11T09:23:34.942Z", - "end": "2022-05-11T10:32:13.724Z", - "events": [ - { - "start": "2022-05-11T09:23:34.942Z", - "end": "2022-05-11T09:46:27.869Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T09:46:27.869Z", - "end": "2022-05-11T10:09:20.796Z", - "state": "IDLE" - }, - { - "start": "2022-05-11T10:09:20.796Z", - "end": "2022-05-11T10:32:13.723Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "576482762446602270", - "start": "2022-05-30T13:15:51.168Z", - "end": "2022-05-30T18:33:06.102Z", - "events": [ - { - "start": "2022-05-30T13:15:51.168Z", - "end": "2022-05-30T14:19:18.154Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T14:19:18.154Z", - "end": "2022-05-30T15:22:45.140Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T15:22:45.140Z", - "end": "2022-05-30T16:26:12.126Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T16:26:12.126Z", - "end": "2022-05-30T17:29:39.112Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T17:29:39.112Z", - "end": "2022-05-30T18:33:06.098Z", - "state": "IDLE" - } - ] - }, - { - "user": "866600263421429886", - "game": "572456126872944651", - "start": "2022-07-04T07:24:59.729Z", - "end": "2022-07-04T10:30:46.799Z", - "events": [ - { - "start": "2022-07-04T07:24:59.729Z", - "end": "2022-07-04T08:57:53.264Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T08:57:53.264Z", - "end": "2022-07-04T10:30:46.799Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "553697181249437716", - "start": "2022-04-24T23:48:00.805Z", - "end": "2022-04-24T23:51:35.236Z", - "events": [ - { - "start": "2022-04-24T23:48:00.805Z", - "end": "2022-04-24T23:51:35.236Z", - "state": "IDLE" - } - ] - }, - { - "user": "584489284152985092", - "game": "508057374875975682", - "start": "2022-05-24T17:28:58.606Z", - "end": "2022-05-24T20:02:30.515Z", - "events": [ - { - "start": "2022-05-24T17:28:58.606Z", - "end": "2022-05-24T18:45:44.560Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T18:45:44.560Z", - "end": "2022-05-24T20:02:30.514Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "546175179542364160", - "start": "2022-04-30T18:19:13.312Z", - "end": "2022-05-01T04:01:30.080Z", - "events": [ - { - "start": "2022-04-30T18:19:13.312Z", - "end": "2022-04-30T20:44:47.504Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-30T20:44:47.504Z", - "end": "2022-04-30T23:10:21.696Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-30T23:10:21.696Z", - "end": "2022-05-01T01:35:55.888Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T01:35:55.888Z", - "end": "2022-05-01T04:01:30.080Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "360264570671216445", - "game": "597860020935327787", - "start": "2022-05-08T01:58:51.747Z", - "end": "2022-05-08T02:30:40.978Z", - "events": [ - { - "start": "2022-05-08T01:58:51.747Z", - "end": "2022-05-08T02:05:13.593Z", - "state": "IDLE" - }, - { - "start": "2022-05-08T02:05:13.593Z", - "end": "2022-05-08T02:11:35.439Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T02:11:35.439Z", - "end": "2022-05-08T02:17:57.285Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T02:17:57.285Z", - "end": "2022-05-08T02:24:19.131Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T02:24:19.131Z", - "end": "2022-05-08T02:30:40.977Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "495724335127362694", - "game": "542075586886107149", - "start": "2022-06-27T00:50:41.273Z", - "end": "2022-06-27T03:29:13.972Z", - "events": [ - { - "start": "2022-06-27T00:50:41.273Z", - "end": "2022-06-27T02:09:57.622Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:09:57.622Z", - "end": "2022-06-27T03:29:13.971Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "625617695768437507", - "game": "592976500802846750", - "start": "2022-05-26T12:35:11.221Z", - "end": "2022-05-26T18:39:03.329Z", - "events": [ - { - "start": "2022-05-26T12:35:11.221Z", - "end": "2022-05-26T15:37:07.275Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-26T15:37:07.275Z", - "end": "2022-05-26T18:39:03.329Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "542475118396309528", - "start": "2022-07-04T22:03:49.866Z", - "end": "2022-07-05T05:29:46.926Z", - "events": [ - { - "start": "2022-07-04T22:03:49.866Z", - "end": "2022-07-04T23:55:19.131Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T23:55:19.131Z", - "end": "2022-07-05T01:46:48.396Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-05T01:46:48.396Z", - "end": "2022-07-05T03:38:17.661Z", - "state": "IDLE" - }, - { - "start": "2022-07-05T03:38:17.661Z", - "end": "2022-07-05T05:29:46.926Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "512789343157485602", - "start": "2022-05-29T04:59:16.196Z", - "end": "2022-05-29T09:30:07.637Z", - "events": [ - { - "start": "2022-05-29T04:59:16.196Z", - "end": "2022-05-29T06:29:33.343Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T06:29:33.343Z", - "end": "2022-05-29T07:59:50.490Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T07:59:50.490Z", - "end": "2022-05-29T09:30:07.637Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786084290971413565", - "game": "510199020782747732", - "start": "2022-07-14T07:35:38.556Z", - "end": "2022-07-14T11:13:33.771Z", - "events": [ - { - "start": "2022-07-14T07:35:38.556Z", - "end": "2022-07-14T08:19:13.599Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T08:19:13.599Z", - "end": "2022-07-14T09:02:48.642Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T09:02:48.642Z", - "end": "2022-07-14T09:46:23.685Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T09:46:23.685Z", - "end": "2022-07-14T10:29:58.728Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-14T10:29:58.728Z", - "end": "2022-07-14T11:13:33.771Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "549512435585908756", - "start": "2022-07-08T01:12:51.480Z", - "end": "2022-07-08T03:06:38.070Z", - "events": [ - { - "start": "2022-07-08T01:12:51.480Z", - "end": "2022-07-08T02:09:44.775Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T02:09:44.775Z", - "end": "2022-07-08T03:06:38.070Z", - "state": "IDLE" - } - ] - }, - { - "user": "715446191320920764", - "game": "535384357536399404", - "start": "2022-04-28T20:17:06.291Z", - "end": "2022-04-28T22:15:57.120Z", - "events": [ - { - "start": "2022-04-28T20:17:06.291Z", - "end": "2022-04-28T20:40:52.456Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-28T20:40:52.456Z", - "end": "2022-04-28T21:04:38.621Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T21:04:38.621Z", - "end": "2022-04-28T21:28:24.786Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T21:28:24.786Z", - "end": "2022-04-28T21:52:10.951Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T21:52:10.951Z", - "end": "2022-04-28T22:15:57.116Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "444246898747584433", - "game": "530454325214969866", - "start": "2022-07-05T12:46:41.924Z", - "end": "2022-07-05T14:38:01.588Z", - "events": [ - { - "start": "2022-07-05T12:46:41.924Z", - "end": "2022-07-05T13:42:21.756Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-05T13:42:21.756Z", - "end": "2022-07-05T14:38:01.588Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "406850294055619241", - "game": "512699108809637890", - "start": "2022-05-31T01:13:13.307Z", - "end": "2022-05-31T01:56:51.755Z", - "events": [ - { - "start": "2022-05-31T01:13:13.307Z", - "end": "2022-05-31T01:24:07.919Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T01:24:07.919Z", - "end": "2022-05-31T01:35:02.531Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T01:35:02.531Z", - "end": "2022-05-31T01:45:57.143Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T01:45:57.143Z", - "end": "2022-05-31T01:56:51.755Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "200801427122341912", - "game": "520453007578628124", - "start": "2022-04-18T06:00:23.657Z", - "end": "2022-04-18T06:40:59.856Z", - "events": [ - { - "start": "2022-04-18T06:00:23.657Z", - "end": "2022-04-18T06:08:30.896Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T06:08:30.896Z", - "end": "2022-04-18T06:16:38.135Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T06:16:38.135Z", - "end": "2022-04-18T06:24:45.374Z", - "state": "IDLE" - }, - { - "start": "2022-04-18T06:24:45.374Z", - "end": "2022-04-18T06:32:52.613Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-18T06:32:52.613Z", - "end": "2022-04-18T06:40:59.852Z", - "state": "IDLE" - } - ] - }, - { - "user": "938976307338486810", - "game": "606163888052109312", - "start": "2022-07-09T14:57:07.263Z", - "end": "2022-07-09T17:17:19.573Z", - "events": [ - { - "start": "2022-07-09T14:57:07.263Z", - "end": "2022-07-09T15:25:09.725Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T15:25:09.725Z", - "end": "2022-07-09T15:53:12.187Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T15:53:12.187Z", - "end": "2022-07-09T16:21:14.649Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T16:21:14.649Z", - "end": "2022-07-09T16:49:17.111Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T16:49:17.111Z", - "end": "2022-07-09T17:17:19.573Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "297014162745407430", - "game": "584069374462394368", - "start": "2022-06-26T23:17:24.267Z", - "end": "2022-06-27T08:21:57.751Z", - "events": [ - { - "start": "2022-06-26T23:17:24.267Z", - "end": "2022-06-27T02:18:55.428Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:18:55.428Z", - "end": "2022-06-27T05:20:26.589Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T05:20:26.589Z", - "end": "2022-06-27T08:21:57.750Z", - "state": "IDLE" - } - ] - }, - { - "user": "768513326430993269", - "game": "519644368735567873", - "start": "2022-07-18T11:10:24.828Z", - "end": "2022-07-18T19:32:23.118Z", - "events": [ - { - "start": "2022-07-18T11:10:24.828Z", - "end": "2022-07-18T15:21:23.973Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T15:21:23.973Z", - "end": "2022-07-18T19:32:23.118Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "558547388583772201", - "start": "2022-04-20T16:18:05.998Z", - "end": "2022-04-20T21:10:55.165Z", - "events": [ - { - "start": "2022-04-20T16:18:05.998Z", - "end": "2022-04-20T17:55:42.387Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-20T17:55:42.387Z", - "end": "2022-04-20T19:33:18.776Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T19:33:18.776Z", - "end": "2022-04-20T21:10:55.165Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "347172184335646820", - "game": "565341641427124244", - "start": "2022-05-24T13:43:05.324Z", - "end": "2022-05-24T15:57:13.804Z", - "events": [ - { - "start": "2022-05-24T13:43:05.324Z", - "end": "2022-05-24T14:16:37.444Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T14:16:37.444Z", - "end": "2022-05-24T14:50:09.564Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T14:50:09.564Z", - "end": "2022-05-24T15:23:41.684Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T15:23:41.684Z", - "end": "2022-05-24T15:57:13.804Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "931211630078779300", - "game": "530454325214969866", - "start": "2022-06-19T06:47:11.821Z", - "end": "2022-06-19T10:31:11.103Z", - "events": [ - { - "start": "2022-06-19T06:47:11.821Z", - "end": "2022-06-19T08:01:51.581Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T08:01:51.581Z", - "end": "2022-06-19T09:16:31.341Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-19T09:16:31.341Z", - "end": "2022-06-19T10:31:11.101Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "541104083732114799", - "game": "576482762446602270", - "start": "2022-05-06T18:48:24.454Z", - "end": "2022-05-07T03:59:38.110Z", - "events": [ - { - "start": "2022-05-06T18:48:24.454Z", - "end": "2022-05-06T21:52:09.006Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-06T21:52:09.006Z", - "end": "2022-05-07T00:55:53.558Z", - "state": "IDLE" - }, - { - "start": "2022-05-07T00:55:53.558Z", - "end": "2022-05-07T03:59:38.110Z", - "state": "IDLE" - } - ] - }, - { - "user": "951131768137733554", - "game": "523154344187789312", - "start": "2022-06-21T20:09:49.486Z", - "end": "2022-06-22T06:06:58.630Z", - "events": [ - { - "start": "2022-06-21T20:09:49.486Z", - "end": "2022-06-22T06:06:58.630Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "553697181249437716", - "start": "2022-05-07T05:50:03.751Z", - "end": "2022-05-07T07:14:35.944Z", - "events": [ - { - "start": "2022-05-07T05:50:03.751Z", - "end": "2022-05-07T07:14:35.944Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "495724335127362694", - "game": "520462578061803588", - "start": "2022-07-20T02:02:33.051Z", - "end": "2022-07-20T07:09:19.545Z", - "events": [ - { - "start": "2022-07-20T02:02:33.051Z", - "end": "2022-07-20T03:19:14.674Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-20T03:19:14.674Z", - "end": "2022-07-20T04:35:56.297Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T04:35:56.297Z", - "end": "2022-07-20T05:52:37.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T05:52:37.920Z", - "end": "2022-07-20T07:09:19.543Z", - "state": "IDLE" - } - ] - }, - { - "user": "881335427428668054", - "game": "553697181249437716", - "start": "2022-07-22T01:15:53.272Z", - "end": "2022-07-22T05:02:17.748Z", - "events": [ - { - "start": "2022-07-22T01:15:53.272Z", - "end": "2022-07-22T05:02:17.748Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "526489929631531009", - "start": "2022-07-03T16:48:09.769Z", - "end": "2022-07-03T17:05:06.015Z", - "events": [ - { - "start": "2022-07-03T16:48:09.769Z", - "end": "2022-07-03T16:56:37.892Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T16:56:37.892Z", - "end": "2022-07-03T17:05:06.015Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "628567265580410356", - "game": "530454325214969866", - "start": "2022-07-07T16:55:14.007Z", - "end": "2022-07-07T17:48:45.569Z", - "events": [ - { - "start": "2022-07-07T16:55:14.007Z", - "end": "2022-07-07T17:13:04.527Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T17:13:04.527Z", - "end": "2022-07-07T17:30:55.047Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T17:30:55.047Z", - "end": "2022-07-07T17:48:45.567Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "106607193284486979", - "game": "597588168178663434", - "start": "2022-06-21T22:37:53.826Z", - "end": "2022-06-22T02:05:36.698Z", - "events": [ - { - "start": "2022-06-21T22:37:53.826Z", - "end": "2022-06-21T23:29:49.544Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T23:29:49.544Z", - "end": "2022-06-22T00:21:45.262Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T00:21:45.262Z", - "end": "2022-06-22T01:13:40.980Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T01:13:40.980Z", - "end": "2022-06-22T02:05:36.698Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "628567265580410356", - "game": "520453007578628124", - "start": "2022-07-13T04:47:55.569Z", - "end": "2022-07-13T04:57:54.912Z", - "events": [ - { - "start": "2022-07-13T04:47:55.569Z", - "end": "2022-07-13T04:57:54.912Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "572456126872944651", - "start": "2022-05-05T17:18:05.127Z", - "end": "2022-05-05T21:10:29.961Z", - "events": [ - { - "start": "2022-05-05T17:18:05.127Z", - "end": "2022-05-05T18:35:33.405Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T18:35:33.405Z", - "end": "2022-05-05T19:53:01.683Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T19:53:01.683Z", - "end": "2022-05-05T21:10:29.961Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "572456126872944651", - "start": "2022-04-27T05:30:12.493Z", - "end": "2022-04-27T14:24:31.812Z", - "events": [ - { - "start": "2022-04-27T05:30:12.493Z", - "end": "2022-04-27T14:24:31.812Z", - "state": "IDLE" - } - ] - }, - { - "user": "747381962738157784", - "game": "550277544025522176", - "start": "2022-04-26T07:11:00.378Z", - "end": "2022-04-26T14:58:22.537Z", - "events": [ - { - "start": "2022-04-26T07:11:00.378Z", - "end": "2022-04-26T09:07:50.917Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T09:07:50.917Z", - "end": "2022-04-26T11:04:41.456Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T11:04:41.456Z", - "end": "2022-04-26T13:01:31.995Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T13:01:31.995Z", - "end": "2022-04-26T14:58:22.534Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "700136079562375258", - "start": "2022-06-04T16:49:07.519Z", - "end": "2022-06-05T02:16:26.288Z", - "events": [ - { - "start": "2022-06-04T16:49:07.519Z", - "end": "2022-06-04T18:42:35.272Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T18:42:35.272Z", - "end": "2022-06-04T20:36:03.025Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T20:36:03.025Z", - "end": "2022-06-04T22:29:30.778Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T22:29:30.778Z", - "end": "2022-06-05T00:22:58.531Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T00:22:58.531Z", - "end": "2022-06-05T02:16:26.284Z", - "state": "IDLE" - } - ] - }, - { - "user": "584489284152985092", - "game": "520462578061803588", - "start": "2022-06-22T23:25:53.001Z", - "end": "2022-06-23T08:33:01.364Z", - "events": [ - { - "start": "2022-06-22T23:25:53.001Z", - "end": "2022-06-23T01:42:40.091Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-23T01:42:40.091Z", - "end": "2022-06-23T03:59:27.181Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T03:59:27.181Z", - "end": "2022-06-23T06:16:14.271Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T06:16:14.271Z", - "end": "2022-06-23T08:33:01.361Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "378424071510192465", - "game": "512789427462995988", - "start": "2022-06-28T00:04:53.261Z", - "end": "2022-06-28T06:48:03.173Z", - "events": [ - { - "start": "2022-06-28T00:04:53.261Z", - "end": "2022-06-28T01:45:40.739Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T01:45:40.739Z", - "end": "2022-06-28T03:26:28.217Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T03:26:28.217Z", - "end": "2022-06-28T05:07:15.695Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T05:07:15.695Z", - "end": "2022-06-28T06:48:03.173Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "549054179973094329", - "game": "526489929631531009", - "start": "2022-07-18T01:42:11.193Z", - "end": "2022-07-18T03:02:14.212Z", - "events": [ - { - "start": "2022-07-18T01:42:11.193Z", - "end": "2022-07-18T01:58:11.796Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T01:58:11.796Z", - "end": "2022-07-18T02:14:12.399Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T02:14:12.399Z", - "end": "2022-07-18T02:30:13.002Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T02:30:13.002Z", - "end": "2022-07-18T02:46:13.605Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T02:46:13.605Z", - "end": "2022-07-18T03:02:14.208Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "584069374462394368", - "start": "2022-07-12T12:02:10.793Z", - "end": "2022-07-12T14:29:44.160Z", - "events": [ - { - "start": "2022-07-12T12:02:10.793Z", - "end": "2022-07-12T12:31:41.466Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T12:31:41.466Z", - "end": "2022-07-12T13:01:12.139Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T13:01:12.139Z", - "end": "2022-07-12T13:30:42.812Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T13:30:42.812Z", - "end": "2022-07-12T14:00:13.485Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T14:00:13.485Z", - "end": "2022-07-12T14:29:44.158Z", - "state": "IDLE" - } - ] - }, - { - "user": "101572134856427564", - "game": "508057374875975682", - "start": "2022-05-30T03:47:08.376Z", - "end": "2022-05-30T06:11:00.056Z", - "events": [ - { - "start": "2022-05-30T03:47:08.376Z", - "end": "2022-05-30T04:23:06.296Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T04:23:06.296Z", - "end": "2022-05-30T04:59:04.216Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T04:59:04.216Z", - "end": "2022-05-30T05:35:02.136Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T05:35:02.136Z", - "end": "2022-05-30T06:11:00.056Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "572456126872944651", - "start": "2022-06-08T15:35:16.431Z", - "end": "2022-06-08T16:53:21.587Z", - "events": [ - { - "start": "2022-06-08T15:35:16.431Z", - "end": "2022-06-08T16:14:19.009Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T16:14:19.009Z", - "end": "2022-06-08T16:53:21.587Z", - "state": "IDLE" - } - ] - }, - { - "user": "185442579258045359", - "game": "700136079562375258", - "start": "2022-05-26T04:58:28.718Z", - "end": "2022-05-26T07:01:15.359Z", - "events": [ - { - "start": "2022-05-26T04:58:28.718Z", - "end": "2022-05-26T07:01:15.359Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "500919588166575890", - "game": "558547388583772201", - "start": "2022-07-18T06:01:36.821Z", - "end": "2022-07-18T08:18:13.055Z", - "events": [ - { - "start": "2022-07-18T06:01:36.821Z", - "end": "2022-07-18T06:28:56.067Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T06:28:56.067Z", - "end": "2022-07-18T06:56:15.313Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T06:56:15.313Z", - "end": "2022-07-18T07:23:34.559Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T07:23:34.559Z", - "end": "2022-07-18T07:50:53.805Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T07:50:53.805Z", - "end": "2022-07-18T08:18:13.051Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "500919588166575890", - "game": "549512435585908756", - "start": "2022-07-31T06:02:44.890Z", - "end": "2022-07-31T10:16:31.400Z", - "events": [ - { - "start": "2022-07-31T06:02:44.890Z", - "end": "2022-07-31T08:09:38.145Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T08:09:38.145Z", - "end": "2022-07-31T10:16:31.400Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "550277544025522176", - "start": "2022-04-14T16:28:38.193Z", - "end": "2022-04-15T02:14:58.682Z", - "events": [ - { - "start": "2022-04-14T16:28:38.193Z", - "end": "2022-04-14T19:44:05.022Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T19:44:05.022Z", - "end": "2022-04-14T22:59:31.851Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T22:59:31.851Z", - "end": "2022-04-15T02:14:58.680Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "508057374875975682", - "start": "2022-08-05T12:27:26.373Z", - "end": "2022-08-05T18:07:33.471Z", - "events": [ - { - "start": "2022-08-05T12:27:26.373Z", - "end": "2022-08-05T15:17:29.922Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T15:17:29.922Z", - "end": "2022-08-05T18:07:33.471Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "958598056500699208", - "game": "530454325214969866", - "start": "2022-05-12T00:07:03.002Z", - "end": "2022-05-12T01:59:00.165Z", - "events": [ - { - "start": "2022-05-12T00:07:03.002Z", - "end": "2022-05-12T01:03:01.583Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-12T01:03:01.583Z", - "end": "2022-05-12T01:59:00.164Z", - "state": "IDLE" - } - ] - }, - { - "user": "161887854890745672", - "game": "584069374462394368", - "start": "2022-05-31T05:29:44.086Z", - "end": "2022-05-31T14:35:55.033Z", - "events": [ - { - "start": "2022-05-31T05:29:44.086Z", - "end": "2022-05-31T08:31:47.735Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T08:31:47.735Z", - "end": "2022-05-31T11:33:51.384Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T11:33:51.384Z", - "end": "2022-05-31T14:35:55.033Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "394970121077311909", - "game": "535869836748783616", - "start": "2022-07-13T06:55:49.480Z", - "end": "2022-07-13T10:49:23.765Z", - "events": [ - { - "start": "2022-07-13T06:55:49.480Z", - "end": "2022-07-13T08:52:36.622Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T08:52:36.622Z", - "end": "2022-07-13T10:49:23.764Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "584489284152985092", - "game": "510199020782747732", - "start": "2022-06-02T18:23:06.860Z", - "end": "2022-06-03T00:30:11.109Z", - "events": [ - { - "start": "2022-06-02T18:23:06.860Z", - "end": "2022-06-02T19:54:52.922Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T19:54:52.922Z", - "end": "2022-06-02T21:26:38.984Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-02T21:26:38.984Z", - "end": "2022-06-02T22:58:25.046Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-02T22:58:25.046Z", - "end": "2022-06-03T00:30:11.108Z", - "state": "IDLE" - } - ] - }, - { - "user": "713444659295913502", - "game": "530454325214969866", - "start": "2022-04-27T08:46:20.144Z", - "end": "2022-04-27T14:25:48.310Z", - "events": [ - { - "start": "2022-04-27T08:46:20.144Z", - "end": "2022-04-27T09:54:13.777Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T09:54:13.777Z", - "end": "2022-04-27T11:02:07.410Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T11:02:07.410Z", - "end": "2022-04-27T12:10:01.043Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T12:10:01.043Z", - "end": "2022-04-27T13:17:54.676Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T13:17:54.676Z", - "end": "2022-04-27T14:25:48.309Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "453350270016457959", - "game": "542475118396309528", - "start": "2022-07-22T01:57:32.050Z", - "end": "2022-07-22T08:15:08.025Z", - "events": [ - { - "start": "2022-07-22T01:57:32.050Z", - "end": "2022-07-22T04:03:24.041Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T04:03:24.041Z", - "end": "2022-07-22T06:09:16.032Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T06:09:16.032Z", - "end": "2022-07-22T08:15:08.023Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "572456126872944651", - "start": "2022-06-14T23:39:32.680Z", - "end": "2022-06-15T08:28:02.084Z", - "events": [ - { - "start": "2022-06-14T23:39:32.680Z", - "end": "2022-06-15T01:51:40.031Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T01:51:40.031Z", - "end": "2022-06-15T04:03:47.382Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T04:03:47.382Z", - "end": "2022-06-15T06:15:54.733Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T06:15:54.733Z", - "end": "2022-06-15T08:28:02.084Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "452396069922968436", - "game": "512699108809637890", - "start": "2022-04-17T01:38:03.195Z", - "end": "2022-04-17T02:47:57.077Z", - "events": [ - { - "start": "2022-04-17T01:38:03.195Z", - "end": "2022-04-17T01:52:01.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T01:52:01.971Z", - "end": "2022-04-17T02:06:00.747Z", - "state": "IDLE" - }, - { - "start": "2022-04-17T02:06:00.747Z", - "end": "2022-04-17T02:19:59.523Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-17T02:19:59.523Z", - "end": "2022-04-17T02:33:58.299Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-17T02:33:58.299Z", - "end": "2022-04-17T02:47:57.075Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "500919588166575890", - "game": "576482762446602270", - "start": "2022-04-23T06:58:10.984Z", - "end": "2022-04-23T08:46:36.682Z", - "events": [ - { - "start": "2022-04-23T06:58:10.984Z", - "end": "2022-04-23T07:34:19.550Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T07:34:19.550Z", - "end": "2022-04-23T08:10:28.116Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T08:10:28.116Z", - "end": "2022-04-23T08:46:36.682Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "878082205985098233", - "game": "542474758835535872", - "start": "2022-05-12T07:46:29.054Z", - "end": "2022-05-12T12:35:03.554Z", - "events": [ - { - "start": "2022-05-12T07:46:29.054Z", - "end": "2022-05-12T08:58:37.679Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T08:58:37.679Z", - "end": "2022-05-12T10:10:46.304Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T10:10:46.304Z", - "end": "2022-05-12T11:22:54.929Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T11:22:54.929Z", - "end": "2022-05-12T12:35:03.554Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "725502702868293700", - "game": "512789120234422301", - "start": "2022-05-23T13:39:44.645Z", - "end": "2022-05-23T16:52:31.204Z", - "events": [ - { - "start": "2022-05-23T13:39:44.645Z", - "end": "2022-05-23T14:27:56.284Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T14:27:56.284Z", - "end": "2022-05-23T15:16:07.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-23T15:16:07.923Z", - "end": "2022-05-23T16:04:19.562Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T16:04:19.562Z", - "end": "2022-05-23T16:52:31.201Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "614448244260339712", - "start": "2022-05-30T12:29:20.281Z", - "end": "2022-05-30T14:33:50.959Z", - "events": [ - { - "start": "2022-05-30T12:29:20.281Z", - "end": "2022-05-30T14:33:50.959Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "394970121077311909", - "game": "575412499399180288", - "start": "2022-05-16T10:06:51.282Z", - "end": "2022-05-16T13:33:18.923Z", - "events": [ - { - "start": "2022-05-16T10:06:51.282Z", - "end": "2022-05-16T10:48:08.810Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T10:48:08.810Z", - "end": "2022-05-16T11:29:26.338Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T11:29:26.338Z", - "end": "2022-05-16T12:10:43.866Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T12:10:43.866Z", - "end": "2022-05-16T12:52:01.394Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T12:52:01.394Z", - "end": "2022-05-16T13:33:18.922Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "521350927850935744", - "game": "523154344187789312", - "start": "2022-06-23T22:26:17.609Z", - "end": "2022-06-23T23:04:32.346Z", - "events": [ - { - "start": "2022-06-23T22:26:17.609Z", - "end": "2022-06-23T23:04:32.346Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "600708263053781983", - "game": "549512435585908756", - "start": "2022-06-23T23:31:23.980Z", - "end": "2022-06-24T05:07:39.388Z", - "events": [ - { - "start": "2022-06-23T23:31:23.980Z", - "end": "2022-06-24T05:07:39.388Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "584489284152985092", - "game": "549512435585908756", - "start": "2022-04-20T04:04:22.159Z", - "end": "2022-04-20T10:10:30.239Z", - "events": [ - { - "start": "2022-04-20T04:04:22.159Z", - "end": "2022-04-20T06:06:24.852Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T06:06:24.852Z", - "end": "2022-04-20T08:08:27.545Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T08:08:27.545Z", - "end": "2022-04-20T10:10:30.238Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "517335360477493827", - "game": "565341641427124244", - "start": "2022-07-27T03:44:22.641Z", - "end": "2022-07-27T08:39:43.727Z", - "events": [ - { - "start": "2022-07-27T03:44:22.641Z", - "end": "2022-07-27T04:43:26.858Z", - "state": "IDLE" - }, - { - "start": "2022-07-27T04:43:26.858Z", - "end": "2022-07-27T05:42:31.075Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T05:42:31.075Z", - "end": "2022-07-27T06:41:35.292Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T06:41:35.292Z", - "end": "2022-07-27T07:40:39.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T07:40:39.509Z", - "end": "2022-07-27T08:39:43.726Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "378424071510192465", - "game": "512498684211232768", - "start": "2022-06-13T22:43:09.850Z", - "end": "2022-06-14T03:55:51.660Z", - "events": [ - { - "start": "2022-06-13T22:43:09.850Z", - "end": "2022-06-14T00:27:23.786Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-14T00:27:23.786Z", - "end": "2022-06-14T02:11:37.722Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-14T02:11:37.722Z", - "end": "2022-06-14T03:55:51.658Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "535384357536399404", - "start": "2022-06-16T21:24:47.564Z", - "end": "2022-06-17T07:04:31.032Z", - "events": [ - { - "start": "2022-06-16T21:24:47.564Z", - "end": "2022-06-16T23:49:43.431Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T23:49:43.431Z", - "end": "2022-06-17T02:14:39.298Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T02:14:39.298Z", - "end": "2022-06-17T04:39:35.165Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T04:39:35.165Z", - "end": "2022-06-17T07:04:31.032Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "658550407298256890", - "game": "508057374875975682", - "start": "2022-07-10T02:33:01.864Z", - "end": "2022-07-10T02:52:31.507Z", - "events": [ - { - "start": "2022-07-10T02:33:01.864Z", - "end": "2022-07-10T02:36:55.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T02:36:55.792Z", - "end": "2022-07-10T02:40:49.720Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T02:40:49.720Z", - "end": "2022-07-10T02:44:43.648Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T02:44:43.648Z", - "end": "2022-07-10T02:48:37.576Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T02:48:37.576Z", - "end": "2022-07-10T02:52:31.504Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "606163888052109312", - "start": "2022-04-22T06:44:18.504Z", - "end": "2022-04-22T12:55:20.859Z", - "events": [ - { - "start": "2022-04-22T06:44:18.504Z", - "end": "2022-04-22T12:55:20.859Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "453350270016457959", - "game": "512789120234422301", - "start": "2022-07-12T08:21:06.406Z", - "end": "2022-07-12T16:41:32.660Z", - "events": [ - { - "start": "2022-07-12T08:21:06.406Z", - "end": "2022-07-12T10:01:11.656Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T10:01:11.656Z", - "end": "2022-07-12T11:41:16.906Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T11:41:16.906Z", - "end": "2022-07-12T13:21:22.156Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T13:21:22.156Z", - "end": "2022-07-12T15:01:27.406Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T15:01:27.406Z", - "end": "2022-07-12T16:41:32.656Z", - "state": "IDLE" - } - ] - }, - { - "user": "636935635446628860", - "game": "520462578061803588", - "start": "2022-07-03T03:46:21.062Z", - "end": "2022-07-03T11:00:39.882Z", - "events": [ - { - "start": "2022-07-03T03:46:21.062Z", - "end": "2022-07-03T07:23:30.472Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T07:23:30.472Z", - "end": "2022-07-03T11:00:39.882Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "453350270016457959", - "game": "526489929631531009", - "start": "2022-07-13T09:58:30.048Z", - "end": "2022-07-13T17:52:53.169Z", - "events": [ - { - "start": "2022-07-13T09:58:30.048Z", - "end": "2022-07-13T17:52:53.169Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "614380482620293151", - "start": "2022-06-26T18:33:08.174Z", - "end": "2022-06-26T22:43:18.558Z", - "events": [ - { - "start": "2022-06-26T18:33:08.174Z", - "end": "2022-06-26T19:56:31.635Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T19:56:31.635Z", - "end": "2022-06-26T21:19:55.096Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T21:19:55.096Z", - "end": "2022-06-26T22:43:18.557Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "347172184335646820", - "game": "584069374462394368", - "start": "2022-05-21T20:33:40.219Z", - "end": "2022-05-22T05:02:26.702Z", - "events": [ - { - "start": "2022-05-21T20:33:40.219Z", - "end": "2022-05-21T23:23:15.713Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T23:23:15.713Z", - "end": "2022-05-22T02:12:51.207Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-22T02:12:51.207Z", - "end": "2022-05-22T05:02:26.701Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "518088627234930688", - "start": "2022-06-19T18:18:16.450Z", - "end": "2022-06-19T21:07:51.819Z", - "events": [ - { - "start": "2022-06-19T18:18:16.450Z", - "end": "2022-06-19T21:07:51.819Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "514228311661084682", - "start": "2022-04-30T22:53:18.835Z", - "end": "2022-05-01T08:23:05.029Z", - "events": [ - { - "start": "2022-04-30T22:53:18.835Z", - "end": "2022-05-01T01:15:45.383Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T01:15:45.383Z", - "end": "2022-05-01T03:38:11.931Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T03:38:11.931Z", - "end": "2022-05-01T06:00:38.479Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T06:00:38.479Z", - "end": "2022-05-01T08:23:05.027Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "553697181249437716", - "start": "2022-04-27T01:06:57.264Z", - "end": "2022-04-27T02:08:57.772Z", - "events": [ - { - "start": "2022-04-27T01:06:57.264Z", - "end": "2022-04-27T01:22:27.391Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T01:22:27.391Z", - "end": "2022-04-27T01:37:57.518Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:37:57.518Z", - "end": "2022-04-27T01:53:27.645Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:53:27.645Z", - "end": "2022-04-27T02:08:57.772Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "762163239408560283", - "game": "584069374462394368", - "start": "2022-05-17T19:15:20.635Z", - "end": "2022-05-17T20:15:03.247Z", - "events": [ - { - "start": "2022-05-17T19:15:20.635Z", - "end": "2022-05-17T19:30:16.288Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T19:30:16.288Z", - "end": "2022-05-17T19:45:11.941Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T19:45:11.941Z", - "end": "2022-05-17T20:00:07.594Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T20:00:07.594Z", - "end": "2022-05-17T20:15:03.247Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "951234649334557435", - "game": "575412499399180288", - "start": "2022-06-27T23:38:13.582Z", - "end": "2022-06-28T06:54:43.828Z", - "events": [ - { - "start": "2022-06-27T23:38:13.582Z", - "end": "2022-06-28T06:54:43.828Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "554573307161214977", - "start": "2022-07-06T02:59:30.987Z", - "end": "2022-07-06T08:42:26.127Z", - "events": [ - { - "start": "2022-07-06T02:59:30.987Z", - "end": "2022-07-06T04:08:06.015Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T04:08:06.015Z", - "end": "2022-07-06T05:16:41.043Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T05:16:41.043Z", - "end": "2022-07-06T06:25:16.071Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T06:25:16.071Z", - "end": "2022-07-06T07:33:51.099Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T07:33:51.099Z", - "end": "2022-07-06T08:42:26.127Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "605723970188938456", - "game": "523154344187789312", - "start": "2022-06-08T17:22:11.775Z", - "end": "2022-06-09T03:01:28.336Z", - "events": [ - { - "start": "2022-06-08T17:22:11.775Z", - "end": "2022-06-08T22:11:50.055Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T22:11:50.055Z", - "end": "2022-06-09T03:01:28.335Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "512789427462995988", - "start": "2022-04-13T04:00:44.783Z", - "end": "2022-04-13T04:26:46.351Z", - "events": [ - { - "start": "2022-04-13T04:00:44.783Z", - "end": "2022-04-13T04:05:57.096Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-13T04:05:57.096Z", - "end": "2022-04-13T04:11:09.409Z", - "state": "IDLE" - }, - { - "start": "2022-04-13T04:11:09.409Z", - "end": "2022-04-13T04:16:21.722Z", - "state": "IDLE" - }, - { - "start": "2022-04-13T04:16:21.722Z", - "end": "2022-04-13T04:21:34.035Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T04:21:34.035Z", - "end": "2022-04-13T04:26:46.348Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "213263852824749877", - "game": "542075586886107149", - "start": "2022-07-27T08:21:19.485Z", - "end": "2022-07-27T15:23:03.254Z", - "events": [ - { - "start": "2022-07-27T08:21:19.485Z", - "end": "2022-07-27T11:52:11.369Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T11:52:11.369Z", - "end": "2022-07-27T15:23:03.253Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "542075586886107149", - "start": "2022-06-24T00:12:08.933Z", - "end": "2022-06-24T02:21:16.273Z", - "events": [ - { - "start": "2022-06-24T00:12:08.933Z", - "end": "2022-06-24T02:21:16.273Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "559757870366930730", - "game": "614380482620293151", - "start": "2022-07-26T18:02:40.182Z", - "end": "2022-07-26T19:55:15.615Z", - "events": [ - { - "start": "2022-07-26T18:02:40.182Z", - "end": "2022-07-26T18:40:11.993Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-26T18:40:11.993Z", - "end": "2022-07-26T19:17:43.804Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-26T19:17:43.804Z", - "end": "2022-07-26T19:55:15.615Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "530454325214969866", - "start": "2022-06-02T12:46:59.565Z", - "end": "2022-06-02T19:54:36.326Z", - "events": [ - { - "start": "2022-06-02T12:46:59.565Z", - "end": "2022-06-02T19:54:36.326Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "700136079562375258", - "start": "2022-05-28T04:51:39.448Z", - "end": "2022-05-28T12:05:41.900Z", - "events": [ - { - "start": "2022-05-28T04:51:39.448Z", - "end": "2022-05-28T06:40:10.061Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T06:40:10.061Z", - "end": "2022-05-28T08:28:40.674Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-28T08:28:40.674Z", - "end": "2022-05-28T10:17:11.287Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T10:17:11.287Z", - "end": "2022-05-28T12:05:41.900Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "519644267212177418", - "start": "2022-06-17T06:30:54.310Z", - "end": "2022-06-17T08:38:51.351Z", - "events": [ - { - "start": "2022-06-17T06:30:54.310Z", - "end": "2022-06-17T07:34:52.830Z", - "state": "IDLE" - }, - { - "start": "2022-06-17T07:34:52.830Z", - "end": "2022-06-17T08:38:51.350Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "569253958967885828", - "start": "2022-07-11T04:15:43.095Z", - "end": "2022-07-11T13:47:37.342Z", - "events": [ - { - "start": "2022-07-11T04:15:43.095Z", - "end": "2022-07-11T09:01:40.218Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T09:01:40.218Z", - "end": "2022-07-11T13:47:37.341Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "541104083732114799", - "game": "542475118396309528", - "start": "2022-05-11T07:12:33.548Z", - "end": "2022-05-11T16:45:06.056Z", - "events": [ - { - "start": "2022-05-11T07:12:33.548Z", - "end": "2022-05-11T09:07:04.049Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-11T09:07:04.049Z", - "end": "2022-05-11T11:01:34.550Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-11T11:01:34.550Z", - "end": "2022-05-11T12:56:05.051Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T12:56:05.051Z", - "end": "2022-05-11T14:50:35.552Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T14:50:35.552Z", - "end": "2022-05-11T16:45:06.053Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "549054179973094329", - "game": "518088627234930688", - "start": "2022-05-03T22:19:27.555Z", - "end": "2022-05-04T06:52:08.757Z", - "events": [ - { - "start": "2022-05-03T22:19:27.555Z", - "end": "2022-05-04T00:01:59.795Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T00:01:59.795Z", - "end": "2022-05-04T01:44:32.035Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T01:44:32.035Z", - "end": "2022-05-04T03:27:04.275Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T03:27:04.275Z", - "end": "2022-05-04T05:09:36.515Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T05:09:36.515Z", - "end": "2022-05-04T06:52:08.755Z", - "state": "IDLE" - } - ] - }, - { - "user": "424856688594618054", - "game": "542075586886107149", - "start": "2022-07-30T04:48:58.993Z", - "end": "2022-07-30T08:58:57.772Z", - "events": [ - { - "start": "2022-07-30T04:48:58.993Z", - "end": "2022-07-30T08:58:57.772Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302679892350666678", - "game": "526489929631531009", - "start": "2022-06-07T22:59:51.771Z", - "end": "2022-06-08T04:29:09.975Z", - "events": [ - { - "start": "2022-06-07T22:59:51.771Z", - "end": "2022-06-08T00:22:11.322Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-08T00:22:11.322Z", - "end": "2022-06-08T01:44:30.873Z", - "state": "IDLE" - }, - { - "start": "2022-06-08T01:44:30.873Z", - "end": "2022-06-08T03:06:50.424Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T03:06:50.424Z", - "end": "2022-06-08T04:29:09.975Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "347172184335646820", - "game": "558547388583772201", - "start": "2022-07-28T08:13:02.713Z", - "end": "2022-07-28T16:39:19.577Z", - "events": [ - { - "start": "2022-07-28T08:13:02.713Z", - "end": "2022-07-28T10:19:36.929Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-28T10:19:36.929Z", - "end": "2022-07-28T12:26:11.145Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T12:26:11.145Z", - "end": "2022-07-28T14:32:45.361Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T14:32:45.361Z", - "end": "2022-07-28T16:39:19.577Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "538658792298239054", - "game": "521842831262875670", - "start": "2022-05-25T16:38:56.987Z", - "end": "2022-05-26T01:43:21.921Z", - "events": [ - { - "start": "2022-05-25T16:38:56.987Z", - "end": "2022-05-25T19:40:25.298Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T19:40:25.298Z", - "end": "2022-05-25T22:41:53.609Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T22:41:53.609Z", - "end": "2022-05-26T01:43:21.920Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "535384357536399404", - "start": "2022-07-29T11:43:51.316Z", - "end": "2022-07-29T17:05:10.916Z", - "events": [ - { - "start": "2022-07-29T11:43:51.316Z", - "end": "2022-07-29T13:30:57.849Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T13:30:57.849Z", - "end": "2022-07-29T15:18:04.382Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T15:18:04.382Z", - "end": "2022-07-29T17:05:10.915Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "549512435585908756", - "start": "2022-07-21T04:06:20.187Z", - "end": "2022-07-21T09:44:18.259Z", - "events": [ - { - "start": "2022-07-21T04:06:20.187Z", - "end": "2022-07-21T05:30:49.705Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T05:30:49.705Z", - "end": "2022-07-21T06:55:19.223Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T06:55:19.223Z", - "end": "2022-07-21T08:19:48.741Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T08:19:48.741Z", - "end": "2022-07-21T09:44:18.259Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "123137660023366590", - "game": "514228311661084682", - "start": "2022-05-24T05:56:50.088Z", - "end": "2022-05-24T15:34:18.809Z", - "events": [ - { - "start": "2022-05-24T05:56:50.088Z", - "end": "2022-05-24T09:09:19.661Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T09:09:19.661Z", - "end": "2022-05-24T12:21:49.234Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T12:21:49.234Z", - "end": "2022-05-24T15:34:18.807Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "747381962738157784", - "game": "550277544025522176", - "start": "2022-04-25T00:09:18.629Z", - "end": "2022-04-25T09:52:13.593Z", - "events": [ - { - "start": "2022-04-25T00:09:18.629Z", - "end": "2022-04-25T03:23:36.950Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T03:23:36.950Z", - "end": "2022-04-25T06:37:55.271Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T06:37:55.271Z", - "end": "2022-04-25T09:52:13.592Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "495724335127362694", - "game": "512699108809637890", - "start": "2022-05-08T12:55:15.232Z", - "end": "2022-05-08T16:42:25.008Z", - "events": [ - { - "start": "2022-05-08T12:55:15.232Z", - "end": "2022-05-08T14:10:58.490Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T14:10:58.490Z", - "end": "2022-05-08T15:26:41.748Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T15:26:41.748Z", - "end": "2022-05-08T16:42:25.006Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "297014162745407430", - "game": "606163888052109312", - "start": "2022-05-21T21:44:22.055Z", - "end": "2022-05-22T01:38:30.720Z", - "events": [ - { - "start": "2022-05-21T21:44:22.055Z", - "end": "2022-05-21T22:31:11.788Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T22:31:11.788Z", - "end": "2022-05-21T23:18:01.521Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T23:18:01.521Z", - "end": "2022-05-22T00:04:51.254Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T00:04:51.254Z", - "end": "2022-05-22T00:51:40.987Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T00:51:40.987Z", - "end": "2022-05-22T01:38:30.720Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "731522398939920723", - "game": "512789343157485602", - "start": "2022-04-24T01:21:45.409Z", - "end": "2022-04-24T06:05:33.344Z", - "events": [ - { - "start": "2022-04-24T01:21:45.409Z", - "end": "2022-04-24T02:32:42.392Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T02:32:42.392Z", - "end": "2022-04-24T03:43:39.375Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T03:43:39.375Z", - "end": "2022-04-24T04:54:36.358Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T04:54:36.358Z", - "end": "2022-04-24T06:05:33.341Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "137536289023624121", - "game": "592976500802846750", - "start": "2022-05-01T00:00:34.540Z", - "end": "2022-05-01T02:00:28.666Z", - "events": [ - { - "start": "2022-05-01T00:00:34.540Z", - "end": "2022-05-01T01:00:31.603Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T01:00:31.603Z", - "end": "2022-05-01T02:00:28.666Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "540120593576493057", - "start": "2022-06-17T14:16:32.787Z", - "end": "2022-06-17T22:39:48.331Z", - "events": [ - { - "start": "2022-06-17T14:16:32.787Z", - "end": "2022-06-17T15:57:11.895Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T15:57:11.895Z", - "end": "2022-06-17T17:37:51.003Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T17:37:51.003Z", - "end": "2022-06-17T19:18:30.111Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T19:18:30.111Z", - "end": "2022-06-17T20:59:09.219Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T20:59:09.219Z", - "end": "2022-06-17T22:39:48.327Z", - "state": "IDLE" - } - ] - } - ]); \ No newline at end of file + +const sessions = [ + { + "user": "302714757313826277", + "game": "512498684211232768", + "start": "2022-06-26T15:28:15.627Z", + "end": "2022-06-26T20:01:05.646Z", + "events": [ + { + "start": "2022-06-26T15:28:15.627Z", + "end": "2022-06-26T16:22:49.630Z", + "state": "IDLE" + }, + { + "start": "2022-06-26T16:22:49.630Z", + "end": "2022-06-26T17:17:23.633Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T17:17:23.633Z", + "end": "2022-06-26T18:11:57.636Z", + "state": "IDLE" + }, + { + "start": "2022-06-26T18:11:57.636Z", + "end": "2022-06-26T19:06:31.639Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-26T19:06:31.639Z", + "end": "2022-06-26T20:01:05.642Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "523154344187789312", + "start": "2022-05-02T03:29:38.617Z", + "end": "2022-05-02T06:31:00.058Z", + "events": [ + { + "start": "2022-05-02T03:29:38.617Z", + "end": "2022-05-02T04:14:58.977Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T04:14:58.977Z", + "end": "2022-05-02T05:00:19.337Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T05:00:19.337Z", + "end": "2022-05-02T05:45:39.697Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T05:45:39.697Z", + "end": "2022-05-02T06:31:00.057Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "500919588166575890", + "game": "540120593576493057", + "start": "2022-04-19T02:52:15.407Z", + "end": "2022-04-19T04:51:22.187Z", + "events": [ + { + "start": "2022-04-19T02:52:15.407Z", + "end": "2022-04-19T03:16:04.763Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T03:16:04.763Z", + "end": "2022-04-19T03:39:54.119Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T03:39:54.119Z", + "end": "2022-04-19T04:03:43.475Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T04:03:43.475Z", + "end": "2022-04-19T04:27:32.831Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T04:27:32.831Z", + "end": "2022-04-19T04:51:22.187Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "958598056500699208", + "game": "535384357536399404", + "start": "2022-07-22T03:36:18.916Z", + "end": "2022-07-22T07:47:02.631Z", + "events": [ + { + "start": "2022-07-22T03:36:18.916Z", + "end": "2022-07-22T04:59:53.487Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T04:59:53.487Z", + "end": "2022-07-22T06:23:28.058Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T06:23:28.058Z", + "end": "2022-07-22T07:47:02.629Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "336473229248470346", + "game": "520453007578628124", + "start": "2022-06-30T01:06:22.586Z", + "end": "2022-06-30T10:22:57.185Z", + "events": [ + { + "start": "2022-06-30T01:06:22.586Z", + "end": "2022-06-30T10:22:57.185Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "521350927850935744", + "game": "550277544025522176", + "start": "2022-06-16T06:58:07.801Z", + "end": "2022-06-16T06:59:40.279Z", + "events": [ + { + "start": "2022-06-16T06:58:07.801Z", + "end": "2022-06-16T06:58:30.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-16T06:58:30.920Z", + "end": "2022-06-16T06:58:54.039Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T06:58:54.039Z", + "end": "2022-06-16T06:59:17.158Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T06:59:17.158Z", + "end": "2022-06-16T06:59:40.277Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "200801427122341912", + "game": "514228311661084682", + "start": "2022-06-01T13:19:00.487Z", + "end": "2022-06-01T17:40:05.854Z", + "events": [ + { + "start": "2022-06-01T13:19:00.487Z", + "end": "2022-06-01T15:29:33.170Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T15:29:33.170Z", + "end": "2022-06-01T17:40:05.853Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "549512435585908756", + "start": "2022-04-21T00:09:03.538Z", + "end": "2022-04-21T05:15:15.889Z", + "events": [ + { + "start": "2022-04-21T00:09:03.538Z", + "end": "2022-04-21T02:42:09.713Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T02:42:09.713Z", + "end": "2022-04-21T05:15:15.888Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "878082205985098233", + "game": "606163888052109312", + "start": "2022-07-01T08:38:01.657Z", + "end": "2022-07-01T13:37:31.108Z", + "events": [ + { + "start": "2022-07-01T08:38:01.657Z", + "end": "2022-07-01T11:07:46.382Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T11:07:46.382Z", + "end": "2022-07-01T13:37:31.107Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "526489929631531009", + "start": "2022-05-16T03:04:32.793Z", + "end": "2022-05-16T10:01:49.709Z", + "events": [ + { + "start": "2022-05-16T03:04:32.793Z", + "end": "2022-05-16T06:33:11.251Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T06:33:11.251Z", + "end": "2022-05-16T10:01:49.709Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "821608522568592914", + "game": "569008830701240340", + "start": "2022-06-23T15:40:40.856Z", + "end": "2022-06-23T22:35:22.572Z", + "events": [ + { + "start": "2022-06-23T15:40:40.856Z", + "end": "2022-06-23T17:24:21.285Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-23T17:24:21.285Z", + "end": "2022-06-23T19:08:01.714Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-23T19:08:01.714Z", + "end": "2022-06-23T20:51:42.143Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T20:51:42.143Z", + "end": "2022-06-23T22:35:22.572Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "137536289023624121", + "game": "511619499053678668", + "start": "2022-07-15T18:36:47.356Z", + "end": "2022-07-15T18:37:48.192Z", + "events": [ + { + "start": "2022-07-15T18:36:47.356Z", + "end": "2022-07-15T18:37:17.774Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-15T18:37:17.774Z", + "end": "2022-07-15T18:37:48.192Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "628567265580410356", + "game": "540120593576493057", + "start": "2022-05-15T19:17:09.456Z", + "end": "2022-05-16T02:59:33.907Z", + "events": [ + { + "start": "2022-05-15T19:17:09.456Z", + "end": "2022-05-15T21:51:17.606Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T21:51:17.606Z", + "end": "2022-05-16T00:25:25.756Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T00:25:25.756Z", + "end": "2022-05-16T02:59:33.906Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "494763633796983404", + "game": "520453007578628124", + "start": "2022-07-10T15:20:22.201Z", + "end": "2022-07-10T16:14:36.912Z", + "events": [ + { + "start": "2022-07-10T15:20:22.201Z", + "end": "2022-07-10T15:47:29.556Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T15:47:29.556Z", + "end": "2022-07-10T16:14:36.911Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "520453007578628124", + "start": "2022-08-04T06:36:29.737Z", + "end": "2022-08-04T13:32:45.474Z", + "events": [ + { + "start": "2022-08-04T06:36:29.737Z", + "end": "2022-08-04T10:04:37.605Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T10:04:37.605Z", + "end": "2022-08-04T13:32:45.473Z", + "state": "IDLE" + } + ] + }, + { + "user": "951234649334557435", + "game": "514228311661084682", + "start": "2022-06-08T14:22:39.764Z", + "end": "2022-06-08T19:11:38.919Z", + "events": [ + { + "start": "2022-06-08T14:22:39.764Z", + "end": "2022-06-08T16:47:09.341Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T16:47:09.341Z", + "end": "2022-06-08T19:11:38.918Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "521842831262875670", + "start": "2022-07-01T09:33:18.686Z", + "end": "2022-07-01T18:14:41.417Z", + "events": [ + { + "start": "2022-07-01T09:33:18.686Z", + "end": "2022-07-01T11:43:39.368Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T11:43:39.368Z", + "end": "2022-07-01T13:54:00.050Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T13:54:00.050Z", + "end": "2022-07-01T16:04:20.732Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-01T16:04:20.732Z", + "end": "2022-07-01T18:14:41.414Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "700136079562375258", + "start": "2022-05-31T08:06:44.843Z", + "end": "2022-05-31T09:45:33.361Z", + "events": [ + { + "start": "2022-05-31T08:06:44.843Z", + "end": "2022-05-31T08:39:41.015Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T08:39:41.015Z", + "end": "2022-05-31T09:12:37.187Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T09:12:37.187Z", + "end": "2022-05-31T09:45:33.359Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "494763633796983404", + "game": "510199020782747732", + "start": "2022-07-20T21:25:56.107Z", + "end": "2022-07-21T04:46:22.425Z", + "events": [ + { + "start": "2022-07-20T21:25:56.107Z", + "end": "2022-07-21T01:06:09.266Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T01:06:09.266Z", + "end": "2022-07-21T04:46:22.425Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "695941172337689379", + "game": "588739017718366208", + "start": "2022-05-12T05:36:19.453Z", + "end": "2022-05-12T10:13:21.016Z", + "events": [ + { + "start": "2022-05-12T05:36:19.453Z", + "end": "2022-05-12T07:08:39.974Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T07:08:39.974Z", + "end": "2022-05-12T08:41:00.495Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-12T08:41:00.495Z", + "end": "2022-05-12T10:13:21.016Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "519644368735567873", + "start": "2022-05-24T11:08:16.895Z", + "end": "2022-05-24T11:50:56.141Z", + "events": [ + { + "start": "2022-05-24T11:08:16.895Z", + "end": "2022-05-24T11:16:48.744Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T11:16:48.744Z", + "end": "2022-05-24T11:25:20.593Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T11:25:20.593Z", + "end": "2022-05-24T11:33:52.442Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T11:33:52.442Z", + "end": "2022-05-24T11:42:24.291Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T11:42:24.291Z", + "end": "2022-05-24T11:50:56.140Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "182925797752958092", + "game": "549512435585908756", + "start": "2022-04-28T03:47:51.221Z", + "end": "2022-04-28T05:08:58.422Z", + "events": [ + { + "start": "2022-04-28T03:47:51.221Z", + "end": "2022-04-28T04:04:04.661Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T04:04:04.661Z", + "end": "2022-04-28T04:20:18.101Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T04:20:18.101Z", + "end": "2022-04-28T04:36:31.541Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-28T04:36:31.541Z", + "end": "2022-04-28T04:52:44.981Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T04:52:44.981Z", + "end": "2022-04-28T05:08:58.421Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "520453007578628124", + "start": "2022-08-05T14:05:45.578Z", + "end": "2022-08-05T15:12:59.263Z", + "events": [ + { + "start": "2022-08-05T14:05:45.578Z", + "end": "2022-08-05T14:39:22.420Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T14:39:22.420Z", + "end": "2022-08-05T15:12:59.262Z", + "state": "IDLE" + } + ] + }, + { + "user": "457796054587169483", + "game": "565341641427124244", + "start": "2022-05-16T23:21:20.520Z", + "end": "2022-05-17T08:14:01.005Z", + "events": [ + { + "start": "2022-05-16T23:21:20.520Z", + "end": "2022-05-17T08:14:01.005Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "713444659295913502", + "game": "558547388583772201", + "start": "2022-06-18T13:35:26.722Z", + "end": "2022-06-18T18:14:18.782Z", + "events": [ + { + "start": "2022-06-18T13:35:26.722Z", + "end": "2022-06-18T15:54:52.752Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-18T15:54:52.752Z", + "end": "2022-06-18T18:14:18.782Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "512501896896970762", + "start": "2022-07-24T23:45:55.013Z", + "end": "2022-07-25T01:30:16.596Z", + "events": [ + { + "start": "2022-07-24T23:45:55.013Z", + "end": "2022-07-25T00:38:05.804Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-25T00:38:05.804Z", + "end": "2022-07-25T01:30:16.595Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "268139232276871676", + "game": "512789120234422301", + "start": "2022-05-05T14:24:20.751Z", + "end": "2022-05-05T17:17:07.579Z", + "events": [ + { + "start": "2022-05-05T14:24:20.751Z", + "end": "2022-05-05T17:17:07.579Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "452396069922968436", + "game": "597588168178663434", + "start": "2022-07-06T07:08:59.781Z", + "end": "2022-07-06T13:33:32.595Z", + "events": [ + { + "start": "2022-07-06T07:08:59.781Z", + "end": "2022-07-06T08:45:07.984Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T08:45:07.984Z", + "end": "2022-07-06T10:21:16.187Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T10:21:16.187Z", + "end": "2022-07-06T11:57:24.390Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T11:57:24.390Z", + "end": "2022-07-06T13:33:32.593Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "198010595767135394", + "game": "700136079562375258", + "start": "2022-08-03T06:56:17.101Z", + "end": "2022-08-03T12:25:31.056Z", + "events": [ + { + "start": "2022-08-03T06:56:17.101Z", + "end": "2022-08-03T08:18:35.589Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T08:18:35.589Z", + "end": "2022-08-03T09:40:54.077Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T09:40:54.077Z", + "end": "2022-08-03T11:03:12.565Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T11:03:12.565Z", + "end": "2022-08-03T12:25:31.053Z", + "state": "IDLE" + } + ] + }, + { + "user": "695941172337689379", + "game": "588739017718366208", + "start": "2022-06-03T13:54:13.957Z", + "end": "2022-06-03T16:47:30.691Z", + "events": [ + { + "start": "2022-06-03T13:54:13.957Z", + "end": "2022-06-03T14:28:53.303Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T14:28:53.303Z", + "end": "2022-06-03T15:03:32.649Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T15:03:32.649Z", + "end": "2022-06-03T15:38:11.995Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T15:38:11.995Z", + "end": "2022-06-03T16:12:51.341Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T16:12:51.341Z", + "end": "2022-06-03T16:47:30.687Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "565341641427124244", + "start": "2022-05-04T19:36:29.783Z", + "end": "2022-05-04T22:34:17.695Z", + "events": [ + { + "start": "2022-05-04T19:36:29.783Z", + "end": "2022-05-04T20:20:56.761Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T20:20:56.761Z", + "end": "2022-05-04T21:05:23.739Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T21:05:23.739Z", + "end": "2022-05-04T21:49:50.717Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T21:49:50.717Z", + "end": "2022-05-04T22:34:17.695Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "523154344187789312", + "start": "2022-07-27T20:25:59.868Z", + "end": "2022-07-28T02:26:24.320Z", + "events": [ + { + "start": "2022-07-27T20:25:59.868Z", + "end": "2022-07-27T22:26:08.018Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T22:26:08.018Z", + "end": "2022-07-28T00:26:16.168Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T00:26:16.168Z", + "end": "2022-07-28T02:26:24.318Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "347172184335646820", + "game": "535869836748783616", + "start": "2022-05-19T21:14:55.030Z", + "end": "2022-05-20T02:14:56.180Z", + "events": [ + { + "start": "2022-05-19T21:14:55.030Z", + "end": "2022-05-19T22:14:55.260Z", + "state": "IDLE" + }, + { + "start": "2022-05-19T22:14:55.260Z", + "end": "2022-05-19T23:14:55.490Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-19T23:14:55.490Z", + "end": "2022-05-20T00:14:55.720Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-20T00:14:55.720Z", + "end": "2022-05-20T01:14:55.950Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T01:14:55.950Z", + "end": "2022-05-20T02:14:56.180Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "510199020782747732", + "start": "2022-05-23T06:25:15.018Z", + "end": "2022-05-23T08:10:19.492Z", + "events": [ + { + "start": "2022-05-23T06:25:15.018Z", + "end": "2022-05-23T08:10:19.492Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "530454325214969866", + "start": "2022-05-24T03:57:47.174Z", + "end": "2022-05-24T11:53:08.484Z", + "events": [ + { + "start": "2022-05-24T03:57:47.174Z", + "end": "2022-05-24T06:36:14.277Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T06:36:14.277Z", + "end": "2022-05-24T09:14:41.380Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T09:14:41.380Z", + "end": "2022-05-24T11:53:08.483Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "530454325214969866", + "start": "2022-04-22T20:28:19.369Z", + "end": "2022-04-23T04:57:19.121Z", + "events": [ + { + "start": "2022-04-22T20:28:19.369Z", + "end": "2022-04-22T22:10:07.319Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T22:10:07.319Z", + "end": "2022-04-22T23:51:55.269Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T23:51:55.269Z", + "end": "2022-04-23T01:33:43.219Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T01:33:43.219Z", + "end": "2022-04-23T03:15:31.169Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-23T03:15:31.169Z", + "end": "2022-04-23T04:57:19.119Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "872035310834814925", + "game": "572456126872944651", + "start": "2022-05-24T19:59:53.711Z", + "end": "2022-05-25T05:27:53.773Z", + "events": [ + { + "start": "2022-05-24T19:59:53.711Z", + "end": "2022-05-24T21:53:29.723Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T21:53:29.723Z", + "end": "2022-05-24T23:47:05.735Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T23:47:05.735Z", + "end": "2022-05-25T01:40:41.747Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T01:40:41.747Z", + "end": "2022-05-25T03:34:17.759Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T03:34:17.759Z", + "end": "2022-05-25T05:27:53.771Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "608700383891121851", + "game": "565341641427124244", + "start": "2022-07-30T16:49:44.414Z", + "end": "2022-07-30T18:51:56.197Z", + "events": [ + { + "start": "2022-07-30T16:49:44.414Z", + "end": "2022-07-30T17:14:10.770Z", + "state": "IDLE" + }, + { + "start": "2022-07-30T17:14:10.770Z", + "end": "2022-07-30T17:38:37.126Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-30T17:38:37.126Z", + "end": "2022-07-30T18:03:03.482Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-30T18:03:03.482Z", + "end": "2022-07-30T18:27:29.838Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-30T18:27:29.838Z", + "end": "2022-07-30T18:51:56.194Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "546175179542364160", + "start": "2022-04-25T18:35:20.483Z", + "end": "2022-04-25T20:48:05.357Z", + "events": [ + { + "start": "2022-04-25T18:35:20.483Z", + "end": "2022-04-25T19:41:42.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T19:41:42.920Z", + "end": "2022-04-25T20:48:05.357Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "512789427462995988", + "start": "2022-04-25T18:17:18.598Z", + "end": "2022-04-26T02:46:42.609Z", + "events": [ + { + "start": "2022-04-25T18:17:18.598Z", + "end": "2022-04-25T22:32:00.603Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T22:32:00.603Z", + "end": "2022-04-26T02:46:42.608Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "542075586886107149", + "start": "2022-06-05T16:15:32.126Z", + "end": "2022-06-05T16:52:48.152Z", + "events": [ + { + "start": "2022-06-05T16:15:32.126Z", + "end": "2022-06-05T16:52:48.152Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "521350927850935744", + "game": "549512435585908756", + "start": "2022-07-04T11:02:12.714Z", + "end": "2022-07-04T12:49:39.778Z", + "events": [ + { + "start": "2022-07-04T11:02:12.714Z", + "end": "2022-07-04T11:29:04.480Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T11:29:04.480Z", + "end": "2022-07-04T11:55:56.246Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T11:55:56.246Z", + "end": "2022-07-04T12:22:48.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T12:22:48.012Z", + "end": "2022-07-04T12:49:39.778Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "614448244260339712", + "start": "2022-05-21T08:07:07.647Z", + "end": "2022-05-21T12:53:45.192Z", + "events": [ + { + "start": "2022-05-21T08:07:07.647Z", + "end": "2022-05-21T09:42:40.162Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T09:42:40.162Z", + "end": "2022-05-21T11:18:12.677Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T11:18:12.677Z", + "end": "2022-05-21T12:53:45.192Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "521350927850935744", + "game": "575412499399180288", + "start": "2022-05-30T05:31:10.240Z", + "end": "2022-05-30T15:34:40.853Z", + "events": [ + { + "start": "2022-05-30T05:31:10.240Z", + "end": "2022-05-30T08:52:20.444Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T08:52:20.444Z", + "end": "2022-05-30T12:13:30.648Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T12:13:30.648Z", + "end": "2022-05-30T15:34:40.852Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "788818750251007268", + "game": "535384357536399404", + "start": "2022-06-28T07:45:12.656Z", + "end": "2022-06-28T16:33:33.145Z", + "events": [ + { + "start": "2022-06-28T07:45:12.656Z", + "end": "2022-06-28T16:33:33.145Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "614448244260339712", + "start": "2022-06-01T01:43:12.726Z", + "end": "2022-06-01T01:50:31.865Z", + "events": [ + { + "start": "2022-06-01T01:43:12.726Z", + "end": "2022-06-01T01:44:40.553Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T01:44:40.553Z", + "end": "2022-06-01T01:46:08.380Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T01:46:08.380Z", + "end": "2022-06-01T01:47:36.207Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T01:47:36.207Z", + "end": "2022-06-01T01:49:04.034Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T01:49:04.034Z", + "end": "2022-06-01T01:50:31.861Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "519644267212177418", + "start": "2022-05-21T17:56:28.416Z", + "end": "2022-05-21T22:33:54.495Z", + "events": [ + { + "start": "2022-05-21T17:56:28.416Z", + "end": "2022-05-21T19:05:49.935Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T19:05:49.935Z", + "end": "2022-05-21T20:15:11.454Z", + "state": "IDLE" + }, + { + "start": "2022-05-21T20:15:11.454Z", + "end": "2022-05-21T21:24:32.973Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T21:24:32.973Z", + "end": "2022-05-21T22:33:54.492Z", + "state": "IDLE" + } + ] + }, + { + "user": "494763633796983404", + "game": "550277544025522176", + "start": "2022-07-08T05:14:14.765Z", + "end": "2022-07-08T10:39:41.217Z", + "events": [ + { + "start": "2022-07-08T05:14:14.765Z", + "end": "2022-07-08T06:35:36.378Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T06:35:36.378Z", + "end": "2022-07-08T07:56:57.991Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T07:56:57.991Z", + "end": "2022-07-08T09:18:19.604Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T09:18:19.604Z", + "end": "2022-07-08T10:39:41.217Z", + "state": "IDLE" + } + ] + }, + { + "user": "336473229248470346", + "game": "560781100197216267", + "start": "2022-05-10T21:11:25.420Z", + "end": "2022-05-11T02:34:49.499Z", + "events": [ + { + "start": "2022-05-10T21:11:25.420Z", + "end": "2022-05-10T22:32:16.439Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T22:32:16.439Z", + "end": "2022-05-10T23:53:07.458Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T23:53:07.458Z", + "end": "2022-05-11T01:13:58.477Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T01:13:58.477Z", + "end": "2022-05-11T02:34:49.496Z", + "state": "IDLE" + } + ] + }, + { + "user": "841397740041930984", + "game": "550277544025522176", + "start": "2022-05-17T19:01:20.598Z", + "end": "2022-05-18T02:56:32.458Z", + "events": [ + { + "start": "2022-05-17T19:01:20.598Z", + "end": "2022-05-18T02:56:32.458Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "526489929631531009", + "start": "2022-06-20T17:29:23.466Z", + "end": "2022-06-20T22:16:36.561Z", + "events": [ + { + "start": "2022-06-20T17:29:23.466Z", + "end": "2022-06-20T18:26:50.085Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T18:26:50.085Z", + "end": "2022-06-20T19:24:16.704Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T19:24:16.704Z", + "end": "2022-06-20T20:21:43.323Z", + "state": "IDLE" + }, + { + "start": "2022-06-20T20:21:43.323Z", + "end": "2022-06-20T21:19:09.942Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-20T21:19:09.942Z", + "end": "2022-06-20T22:16:36.561Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "528145079819436043", + "start": "2022-04-28T01:37:42.058Z", + "end": "2022-04-28T06:01:51.084Z", + "events": [ + { + "start": "2022-04-28T01:37:42.058Z", + "end": "2022-04-28T02:30:31.863Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T02:30:31.863Z", + "end": "2022-04-28T03:23:21.668Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T03:23:21.668Z", + "end": "2022-04-28T04:16:11.473Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T04:16:11.473Z", + "end": "2022-04-28T05:09:01.278Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T05:09:01.278Z", + "end": "2022-04-28T06:01:51.083Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "931211630078779300", + "game": "554573307161214977", + "start": "2022-05-23T07:17:44.471Z", + "end": "2022-05-23T08:39:44.841Z", + "events": [ + { + "start": "2022-05-23T07:17:44.471Z", + "end": "2022-05-23T07:38:14.563Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T07:38:14.563Z", + "end": "2022-05-23T07:58:44.655Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-23T07:58:44.655Z", + "end": "2022-05-23T08:19:14.747Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T08:19:14.747Z", + "end": "2022-05-23T08:39:44.839Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "511619499053678668", + "start": "2022-06-05T15:42:43.643Z", + "end": "2022-06-05T16:02:04.172Z", + "events": [ + { + "start": "2022-06-05T15:42:43.643Z", + "end": "2022-06-05T15:46:35.748Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T15:46:35.748Z", + "end": "2022-06-05T15:50:27.853Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T15:50:27.853Z", + "end": "2022-06-05T15:54:19.958Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T15:54:19.958Z", + "end": "2022-06-05T15:58:12.063Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T15:58:12.063Z", + "end": "2022-06-05T16:02:04.168Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "625617695768437507", + "game": "554921822626381879", + "start": "2022-05-24T12:49:02.270Z", + "end": "2022-05-24T20:40:34.870Z", + "events": [ + { + "start": "2022-05-24T12:49:02.270Z", + "end": "2022-05-24T14:23:20.790Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T14:23:20.790Z", + "end": "2022-05-24T15:57:39.310Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T15:57:39.310Z", + "end": "2022-05-24T17:31:57.830Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T17:31:57.830Z", + "end": "2022-05-24T19:06:16.350Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T19:06:16.350Z", + "end": "2022-05-24T20:40:34.870Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "800318424708872602", + "game": "592976500802846750", + "start": "2022-06-04T22:47:58.121Z", + "end": "2022-06-05T05:58:27.408Z", + "events": [ + { + "start": "2022-06-04T22:47:58.121Z", + "end": "2022-06-05T02:23:12.764Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T02:23:12.764Z", + "end": "2022-06-05T05:58:27.407Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "550277544025522176", + "start": "2022-07-17T03:56:27.873Z", + "end": "2022-07-17T11:36:06.690Z", + "events": [ + { + "start": "2022-07-17T03:56:27.873Z", + "end": "2022-07-17T07:46:17.281Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T07:46:17.281Z", + "end": "2022-07-17T11:36:06.689Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "614380482620293151", + "start": "2022-08-01T02:33:04.961Z", + "end": "2022-08-01T09:48:44.233Z", + "events": [ + { + "start": "2022-08-01T02:33:04.961Z", + "end": "2022-08-01T04:21:59.779Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T04:21:59.779Z", + "end": "2022-08-01T06:10:54.597Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T06:10:54.597Z", + "end": "2022-08-01T07:59:49.415Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T07:59:49.415Z", + "end": "2022-08-01T09:48:44.233Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "558547388583772201", + "start": "2022-07-09T21:09:38.162Z", + "end": "2022-07-10T00:29:33.989Z", + "events": [ + { + "start": "2022-07-09T21:09:38.162Z", + "end": "2022-07-09T21:59:37.118Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T21:59:37.118Z", + "end": "2022-07-09T22:49:36.074Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T22:49:36.074Z", + "end": "2022-07-09T23:39:35.030Z", + "state": "IDLE" + }, + { + "start": "2022-07-09T23:39:35.030Z", + "end": "2022-07-10T00:29:33.986Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "958598056500699208", + "game": "512789343157485602", + "start": "2022-04-15T09:02:07.377Z", + "end": "2022-04-15T14:49:21.768Z", + "events": [ + { + "start": "2022-04-15T09:02:07.377Z", + "end": "2022-04-15T10:57:52.174Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T10:57:52.174Z", + "end": "2022-04-15T12:53:36.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-15T12:53:36.971Z", + "end": "2022-04-15T14:49:21.768Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "732542352358923773", + "game": "510199020782747732", + "start": "2022-07-25T03:37:10.102Z", + "end": "2022-07-25T04:26:34.261Z", + "events": [ + { + "start": "2022-07-25T03:37:10.102Z", + "end": "2022-07-25T04:01:52.181Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T04:01:52.181Z", + "end": "2022-07-25T04:26:34.260Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "452396069922968436", + "game": "572456126872944651", + "start": "2022-05-25T16:38:05.519Z", + "end": "2022-05-25T23:51:18.630Z", + "events": [ + { + "start": "2022-05-25T16:38:05.519Z", + "end": "2022-05-25T18:26:23.796Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T18:26:23.796Z", + "end": "2022-05-25T20:14:42.073Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T20:14:42.073Z", + "end": "2022-05-25T22:03:00.350Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T22:03:00.350Z", + "end": "2022-05-25T23:51:18.627Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "606163888052109312", + "start": "2022-07-23T00:32:54.100Z", + "end": "2022-07-23T06:42:53.582Z", + "events": [ + { + "start": "2022-07-23T00:32:54.100Z", + "end": "2022-07-23T01:46:53.996Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T01:46:53.996Z", + "end": "2022-07-23T03:00:53.892Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T03:00:53.892Z", + "end": "2022-07-23T04:14:53.788Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T04:14:53.788Z", + "end": "2022-07-23T05:28:53.684Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T05:28:53.684Z", + "end": "2022-07-23T06:42:53.580Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "606163888052109312", + "start": "2022-07-25T20:43:25.450Z", + "end": "2022-07-25T21:32:11.496Z", + "events": [ + { + "start": "2022-07-25T20:43:25.450Z", + "end": "2022-07-25T20:53:10.659Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T20:53:10.659Z", + "end": "2022-07-25T21:02:55.868Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-25T21:02:55.868Z", + "end": "2022-07-25T21:12:41.077Z", + "state": "IDLE" + }, + { + "start": "2022-07-25T21:12:41.077Z", + "end": "2022-07-25T21:22:26.286Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T21:22:26.286Z", + "end": "2022-07-25T21:32:11.495Z", + "state": "IDLE" + } + ] + }, + { + "user": "268139232276871676", + "game": "606163888052109312", + "start": "2022-05-24T20:32:34.610Z", + "end": "2022-05-24T20:56:49.821Z", + "events": [ + { + "start": "2022-05-24T20:32:34.610Z", + "end": "2022-05-24T20:44:42.215Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T20:44:42.215Z", + "end": "2022-05-24T20:56:49.820Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "535869836748783616", + "start": "2022-07-03T08:45:19.948Z", + "end": "2022-07-03T13:47:31.297Z", + "events": [ + { + "start": "2022-07-03T08:45:19.948Z", + "end": "2022-07-03T10:26:03.731Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T10:26:03.731Z", + "end": "2022-07-03T12:06:47.514Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T12:06:47.514Z", + "end": "2022-07-03T13:47:31.297Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "575412499399180288", + "start": "2022-06-05T05:54:46.612Z", + "end": "2022-06-05T15:22:44.604Z", + "events": [ + { + "start": "2022-06-05T05:54:46.612Z", + "end": "2022-06-05T09:04:05.942Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T09:04:05.942Z", + "end": "2022-06-05T12:13:25.272Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T12:13:25.272Z", + "end": "2022-06-05T15:22:44.602Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "575412499399180288", + "start": "2022-05-02T14:11:05.254Z", + "end": "2022-05-02T21:59:52.657Z", + "events": [ + { + "start": "2022-05-02T14:11:05.254Z", + "end": "2022-05-02T16:08:17.104Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T16:08:17.104Z", + "end": "2022-05-02T18:05:28.954Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T18:05:28.954Z", + "end": "2022-05-02T20:02:40.804Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T20:02:40.804Z", + "end": "2022-05-02T21:59:52.654Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "694111074254984301", + "game": "518088627234930688", + "start": "2022-05-25T14:27:47.651Z", + "end": "2022-05-25T19:51:51.502Z", + "events": [ + { + "start": "2022-05-25T14:27:47.651Z", + "end": "2022-05-25T15:48:48.613Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T15:48:48.613Z", + "end": "2022-05-25T17:09:49.575Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T17:09:49.575Z", + "end": "2022-05-25T18:30:50.537Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T18:30:50.537Z", + "end": "2022-05-25T19:51:51.499Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "549512435585908756", + "start": "2022-05-20T05:41:52.784Z", + "end": "2022-05-20T15:15:57.430Z", + "events": [ + { + "start": "2022-05-20T05:41:52.784Z", + "end": "2022-05-20T07:36:41.713Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T07:36:41.713Z", + "end": "2022-05-20T09:31:30.642Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-20T09:31:30.642Z", + "end": "2022-05-20T11:26:19.571Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-20T11:26:19.571Z", + "end": "2022-05-20T13:21:08.500Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-20T13:21:08.500Z", + "end": "2022-05-20T15:15:57.429Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "569008830701240340", + "start": "2022-06-10T06:35:24.026Z", + "end": "2022-06-10T10:57:04.377Z", + "events": [ + { + "start": "2022-06-10T06:35:24.026Z", + "end": "2022-06-10T08:02:37.476Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-10T08:02:37.476Z", + "end": "2022-06-10T09:29:50.926Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-10T09:29:50.926Z", + "end": "2022-06-10T10:57:04.376Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "700136079562375258", + "start": "2022-06-05T18:04:30.213Z", + "end": "2022-06-05T19:52:12.012Z", + "events": [ + { + "start": "2022-06-05T18:04:30.213Z", + "end": "2022-06-05T19:52:12.012Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "695941172337689379", + "game": "530454325214969866", + "start": "2022-06-24T01:33:19.321Z", + "end": "2022-06-24T06:22:39.255Z", + "events": [ + { + "start": "2022-06-24T01:33:19.321Z", + "end": "2022-06-24T02:45:39.304Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T02:45:39.304Z", + "end": "2022-06-24T03:57:59.287Z", + "state": "IDLE" + }, + { + "start": "2022-06-24T03:57:59.287Z", + "end": "2022-06-24T05:10:19.270Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T05:10:19.270Z", + "end": "2022-06-24T06:22:39.253Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "554921822626381879", + "start": "2022-04-24T09:33:29.823Z", + "end": "2022-04-24T16:52:48.848Z", + "events": [ + { + "start": "2022-04-24T09:33:29.823Z", + "end": "2022-04-24T11:01:21.628Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T11:01:21.628Z", + "end": "2022-04-24T12:29:13.433Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T12:29:13.433Z", + "end": "2022-04-24T13:57:05.238Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T13:57:05.238Z", + "end": "2022-04-24T15:24:57.043Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T15:24:57.043Z", + "end": "2022-04-24T16:52:48.848Z", + "state": "IDLE" + } + ] + }, + { + "user": "608700383891121851", + "game": "597860020935327787", + "start": "2022-05-17T13:55:05.182Z", + "end": "2022-05-17T17:16:02.527Z", + "events": [ + { + "start": "2022-05-17T13:55:05.182Z", + "end": "2022-05-17T15:02:04.297Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T15:02:04.297Z", + "end": "2022-05-17T16:09:03.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T16:09:03.412Z", + "end": "2022-05-17T17:16:02.527Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "495724335127362694", + "game": "535384357536399404", + "start": "2022-05-10T14:26:16.657Z", + "end": "2022-05-10T22:50:15.782Z", + "events": [ + { + "start": "2022-05-10T14:26:16.657Z", + "end": "2022-05-10T17:14:16.365Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T17:14:16.365Z", + "end": "2022-05-10T20:02:16.073Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T20:02:16.073Z", + "end": "2022-05-10T22:50:15.781Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "596421190780633864", + "game": "530454325214969866", + "start": "2022-05-14T20:14:02.953Z", + "end": "2022-05-15T03:30:59.375Z", + "events": [ + { + "start": "2022-05-14T20:14:02.953Z", + "end": "2022-05-14T22:39:41.760Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T22:39:41.760Z", + "end": "2022-05-15T01:05:20.567Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T01:05:20.567Z", + "end": "2022-05-15T03:30:59.374Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "519644267212177418", + "start": "2022-07-01T03:24:41.925Z", + "end": "2022-07-01T12:03:04.886Z", + "events": [ + { + "start": "2022-07-01T03:24:41.925Z", + "end": "2022-07-01T12:03:04.886Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "800318424708872602", + "game": "565341641427124244", + "start": "2022-07-21T03:16:51.042Z", + "end": "2022-07-21T10:27:02.821Z", + "events": [ + { + "start": "2022-07-21T03:16:51.042Z", + "end": "2022-07-21T10:27:02.821Z", + "state": "IDLE" + } + ] + }, + { + "user": "625617695768437507", + "game": "356875221078245376", + "start": "2022-05-23T19:13:14.282Z", + "end": "2022-05-24T01:52:00.208Z", + "events": [ + { + "start": "2022-05-23T19:13:14.282Z", + "end": "2022-05-23T20:32:59.467Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T20:32:59.467Z", + "end": "2022-05-23T21:52:44.652Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T21:52:44.652Z", + "end": "2022-05-23T23:12:29.837Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T23:12:29.837Z", + "end": "2022-05-24T00:32:15.022Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T00:32:15.022Z", + "end": "2022-05-24T01:52:00.207Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "788818750251007268", + "game": "510199020782747732", + "start": "2022-06-11T13:55:15.413Z", + "end": "2022-06-11T22:21:34.695Z", + "events": [ + { + "start": "2022-06-11T13:55:15.413Z", + "end": "2022-06-11T18:08:25.054Z", + "state": "IDLE" + }, + { + "start": "2022-06-11T18:08:25.054Z", + "end": "2022-06-11T22:21:34.695Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "549512435585908756", + "start": "2022-06-28T14:52:42.090Z", + "end": "2022-06-28T22:49:57.064Z", + "events": [ + { + "start": "2022-06-28T14:52:42.090Z", + "end": "2022-06-28T16:28:09.084Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T16:28:09.084Z", + "end": "2022-06-28T18:03:36.078Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T18:03:36.078Z", + "end": "2022-06-28T19:39:03.072Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T19:39:03.072Z", + "end": "2022-06-28T21:14:30.066Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T21:14:30.066Z", + "end": "2022-06-28T22:49:57.060Z", + "state": "IDLE" + } + ] + }, + { + "user": "510690749854514547", + "game": "560781100197216267", + "start": "2022-05-15T09:05:00.180Z", + "end": "2022-05-15T09:07:55.626Z", + "events": [ + { + "start": "2022-05-15T09:05:00.180Z", + "end": "2022-05-15T09:05:44.041Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T09:05:44.041Z", + "end": "2022-05-15T09:06:27.902Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T09:06:27.902Z", + "end": "2022-05-15T09:07:11.763Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T09:07:11.763Z", + "end": "2022-05-15T09:07:55.624Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "535371564850479134", + "start": "2022-07-15T03:27:36.134Z", + "end": "2022-07-15T08:56:39.955Z", + "events": [ + { + "start": "2022-07-15T03:27:36.134Z", + "end": "2022-07-15T04:33:24.898Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T04:33:24.898Z", + "end": "2022-07-15T05:39:13.662Z", + "state": "IDLE" + }, + { + "start": "2022-07-15T05:39:13.662Z", + "end": "2022-07-15T06:45:02.426Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T06:45:02.426Z", + "end": "2022-07-15T07:50:51.190Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T07:50:51.190Z", + "end": "2022-07-15T08:56:39.954Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "512699108809637890", + "start": "2022-06-21T22:41:58.205Z", + "end": "2022-06-22T07:23:31.949Z", + "events": [ + { + "start": "2022-06-21T22:41:58.205Z", + "end": "2022-06-22T03:02:45.077Z", + "state": "IDLE" + }, + { + "start": "2022-06-22T03:02:45.077Z", + "end": "2022-06-22T07:23:31.949Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "554921822626381879", + "start": "2022-06-08T05:10:53.904Z", + "end": "2022-06-08T09:04:57.922Z", + "events": [ + { + "start": "2022-06-08T05:10:53.904Z", + "end": "2022-06-08T05:57:42.707Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-08T05:57:42.707Z", + "end": "2022-06-08T06:44:31.510Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T06:44:31.510Z", + "end": "2022-06-08T07:31:20.313Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T07:31:20.313Z", + "end": "2022-06-08T08:18:09.116Z", + "state": "IDLE" + }, + { + "start": "2022-06-08T08:18:09.116Z", + "end": "2022-06-08T09:04:57.919Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "550277544025522176", + "start": "2022-07-10T03:35:08.070Z", + "end": "2022-07-10T10:14:48.150Z", + "events": [ + { + "start": "2022-07-10T03:35:08.070Z", + "end": "2022-07-10T10:14:48.150Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "774637841058278398", + "game": "597588168178663434", + "start": "2022-05-27T10:37:20.753Z", + "end": "2022-05-27T12:56:00.513Z", + "events": [ + { + "start": "2022-05-27T10:37:20.753Z", + "end": "2022-05-27T11:12:00.693Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T11:12:00.693Z", + "end": "2022-05-27T11:46:40.633Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T11:46:40.633Z", + "end": "2022-05-27T12:21:20.573Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T12:21:20.573Z", + "end": "2022-05-27T12:56:00.513Z", + "state": "IDLE" + } + ] + }, + { + "user": "922664752332558395", + "game": "554921822626381879", + "start": "2022-04-22T14:40:49.656Z", + "end": "2022-04-22T19:39:32.853Z", + "events": [ + { + "start": "2022-04-22T14:40:49.656Z", + "end": "2022-04-22T19:39:32.853Z", + "state": "IDLE" + } + ] + }, + { + "user": "596421190780633864", + "game": "606163888052109312", + "start": "2022-07-19T02:59:03.856Z", + "end": "2022-07-19T03:02:33.665Z", + "events": [ + { + "start": "2022-07-19T02:59:03.856Z", + "end": "2022-07-19T02:59:45.817Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T02:59:45.817Z", + "end": "2022-07-19T03:00:27.778Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T03:00:27.778Z", + "end": "2022-07-19T03:01:09.739Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T03:01:09.739Z", + "end": "2022-07-19T03:01:51.700Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T03:01:51.700Z", + "end": "2022-07-19T03:02:33.661Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "821608522568592914", + "game": "546175179542364160", + "start": "2022-07-24T14:22:26.487Z", + "end": "2022-07-24T21:25:35.545Z", + "events": [ + { + "start": "2022-07-24T14:22:26.487Z", + "end": "2022-07-24T16:43:29.506Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T16:43:29.506Z", + "end": "2022-07-24T19:04:32.525Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T19:04:32.525Z", + "end": "2022-07-24T21:25:35.544Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "514228311661084682", + "start": "2022-07-31T03:53:29.940Z", + "end": "2022-07-31T08:11:43.062Z", + "events": [ + { + "start": "2022-07-31T03:53:29.940Z", + "end": "2022-07-31T06:02:36.501Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T06:02:36.501Z", + "end": "2022-07-31T08:11:43.062Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "512789343157485602", + "start": "2022-06-21T09:36:19.193Z", + "end": "2022-06-21T19:12:27.383Z", + "events": [ + { + "start": "2022-06-21T09:36:19.193Z", + "end": "2022-06-21T12:48:21.923Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T12:48:21.923Z", + "end": "2022-06-21T16:00:24.653Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T16:00:24.653Z", + "end": "2022-06-21T19:12:27.383Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "700136079562375258", + "start": "2022-07-27T06:49:25.299Z", + "end": "2022-07-27T13:28:41.804Z", + "events": [ + { + "start": "2022-07-27T06:49:25.299Z", + "end": "2022-07-27T08:09:16.600Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T08:09:16.600Z", + "end": "2022-07-27T09:29:07.901Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T09:29:07.901Z", + "end": "2022-07-27T10:48:59.202Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T10:48:59.202Z", + "end": "2022-07-27T12:08:50.503Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T12:08:50.503Z", + "end": "2022-07-27T13:28:41.804Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "584489284152985092", + "game": "597588168178663434", + "start": "2022-07-20T06:52:31.340Z", + "end": "2022-07-20T16:01:20.171Z", + "events": [ + { + "start": "2022-07-20T06:52:31.340Z", + "end": "2022-07-20T11:26:55.755Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T11:26:55.755Z", + "end": "2022-07-20T16:01:20.170Z", + "state": "IDLE" + } + ] + }, + { + "user": "378424071510192465", + "game": "535384357536399404", + "start": "2022-05-17T22:04:54.432Z", + "end": "2022-05-18T07:55:40.077Z", + "events": [ + { + "start": "2022-05-17T22:04:54.432Z", + "end": "2022-05-18T07:55:40.077Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "958598056500699208", + "game": "569008830701240340", + "start": "2022-04-24T05:38:28.880Z", + "end": "2022-04-24T13:04:46.654Z", + "events": [ + { + "start": "2022-04-24T05:38:28.880Z", + "end": "2022-04-24T07:07:44.434Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-24T07:07:44.434Z", + "end": "2022-04-24T08:36:59.988Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T08:36:59.988Z", + "end": "2022-04-24T10:06:15.542Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T10:06:15.542Z", + "end": "2022-04-24T11:35:31.096Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T11:35:31.096Z", + "end": "2022-04-24T13:04:46.650Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "554921822626381879", + "start": "2022-05-14T03:59:06.515Z", + "end": "2022-05-14T13:47:25.346Z", + "events": [ + { + "start": "2022-05-14T03:59:06.515Z", + "end": "2022-05-14T05:56:46.281Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T05:56:46.281Z", + "end": "2022-05-14T07:54:26.047Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T07:54:26.047Z", + "end": "2022-05-14T09:52:05.813Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T09:52:05.813Z", + "end": "2022-05-14T11:49:45.579Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T11:49:45.579Z", + "end": "2022-05-14T13:47:25.345Z", + "state": "IDLE" + } + ] + }, + { + "user": "406850294055619241", + "game": "554573307161214977", + "start": "2022-07-29T03:13:11.416Z", + "end": "2022-07-29T04:58:09.963Z", + "events": [ + { + "start": "2022-07-29T03:13:11.416Z", + "end": "2022-07-29T04:58:09.963Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "540120593576493057", + "start": "2022-08-03T16:52:23.137Z", + "end": "2022-08-03T23:38:57.771Z", + "events": [ + { + "start": "2022-08-03T16:52:23.137Z", + "end": "2022-08-03T18:13:42.063Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T18:13:42.063Z", + "end": "2022-08-03T19:35:00.989Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T19:35:00.989Z", + "end": "2022-08-03T20:56:19.915Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T20:56:19.915Z", + "end": "2022-08-03T22:17:38.841Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T22:17:38.841Z", + "end": "2022-08-03T23:38:57.767Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "538658792298239054", + "game": "554921822626381879", + "start": "2022-07-03T16:24:26.056Z", + "end": "2022-07-03T18:43:18.472Z", + "events": [ + { + "start": "2022-07-03T16:24:26.056Z", + "end": "2022-07-03T17:33:52.264Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T17:33:52.264Z", + "end": "2022-07-03T18:43:18.472Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "540120593576493057", + "start": "2022-05-19T18:13:03.297Z", + "end": "2022-05-19T18:53:05.387Z", + "events": [ + { + "start": "2022-05-19T18:13:03.297Z", + "end": "2022-05-19T18:33:04.342Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T18:33:04.342Z", + "end": "2022-05-19T18:53:05.387Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "554573307161214977", + "start": "2022-05-21T02:42:39.451Z", + "end": "2022-05-21T10:45:30.437Z", + "events": [ + { + "start": "2022-05-21T02:42:39.451Z", + "end": "2022-05-21T05:23:36.446Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T05:23:36.446Z", + "end": "2022-05-21T08:04:33.441Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T08:04:33.441Z", + "end": "2022-05-21T10:45:30.436Z", + "state": "IDLE" + } + ] + }, + { + "user": "302714757313826277", + "game": "554573307161214977", + "start": "2022-06-04T10:24:08.717Z", + "end": "2022-06-04T12:05:14.128Z", + "events": [ + { + "start": "2022-06-04T10:24:08.717Z", + "end": "2022-06-04T12:05:14.128Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "510199020782747732", + "start": "2022-07-30T20:42:45.896Z", + "end": "2022-07-31T02:37:26.538Z", + "events": [ + { + "start": "2022-07-30T20:42:45.896Z", + "end": "2022-07-31T02:37:26.538Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "200801427122341912", + "game": "512789120234422301", + "start": "2022-06-24T09:12:04.899Z", + "end": "2022-06-24T15:00:55.666Z", + "events": [ + { + "start": "2022-06-24T09:12:04.899Z", + "end": "2022-06-24T10:39:17.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T10:39:17.590Z", + "end": "2022-06-24T12:06:30.281Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T12:06:30.281Z", + "end": "2022-06-24T13:33:42.972Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T13:33:42.972Z", + "end": "2022-06-24T15:00:55.663Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "467658810442648809", + "game": "528145079819436043", + "start": "2022-06-03T22:03:50.274Z", + "end": "2022-06-04T02:46:16.485Z", + "events": [ + { + "start": "2022-06-03T22:03:50.274Z", + "end": "2022-06-03T23:00:19.516Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T23:00:19.516Z", + "end": "2022-06-03T23:56:48.758Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T23:56:48.758Z", + "end": "2022-06-04T00:53:18.000Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T00:53:18.000Z", + "end": "2022-06-04T01:49:47.242Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T01:49:47.242Z", + "end": "2022-06-04T02:46:16.484Z", + "state": "IDLE" + } + ] + }, + { + "user": "213263852824749877", + "game": "614448244260339712", + "start": "2022-07-19T22:12:16.754Z", + "end": "2022-07-20T07:44:04.201Z", + "events": [ + { + "start": "2022-07-19T22:12:16.754Z", + "end": "2022-07-20T00:06:38.243Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T00:06:38.243Z", + "end": "2022-07-20T02:00:59.732Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T02:00:59.732Z", + "end": "2022-07-20T03:55:21.221Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T03:55:21.221Z", + "end": "2022-07-20T05:49:42.710Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T05:49:42.710Z", + "end": "2022-07-20T07:44:04.199Z", + "state": "IDLE" + } + ] + }, + { + "user": "329429619186234053", + "game": "558547388583772201", + "start": "2022-07-27T03:17:07.245Z", + "end": "2022-07-27T07:09:44.052Z", + "events": [ + { + "start": "2022-07-27T03:17:07.245Z", + "end": "2022-07-27T04:34:39.514Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T04:34:39.514Z", + "end": "2022-07-27T05:52:11.783Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T05:52:11.783Z", + "end": "2022-07-27T07:09:44.052Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "512789120234422301", + "start": "2022-06-24T16:32:16.789Z", + "end": "2022-06-24T20:42:59.589Z", + "events": [ + { + "start": "2022-06-24T16:32:16.789Z", + "end": "2022-06-24T20:42:59.589Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "542474758835535872", + "start": "2022-04-26T22:06:39.296Z", + "end": "2022-04-27T04:59:18.370Z", + "events": [ + { + "start": "2022-04-26T22:06:39.296Z", + "end": "2022-04-27T00:24:12.320Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T00:24:12.320Z", + "end": "2022-04-27T02:41:45.344Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T02:41:45.344Z", + "end": "2022-04-27T04:59:18.368Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "530454325214969866", + "start": "2022-08-06T14:47:20.903Z", + "end": "2022-08-06T22:01:11.372Z", + "events": [ + { + "start": "2022-08-06T14:47:20.903Z", + "end": "2022-08-06T16:35:48.520Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T16:35:48.520Z", + "end": "2022-08-06T18:24:16.137Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-06T18:24:16.137Z", + "end": "2022-08-06T20:12:43.754Z", + "state": "IDLE" + }, + { + "start": "2022-08-06T20:12:43.754Z", + "end": "2022-08-06T22:01:11.371Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "558547388583772201", + "start": "2022-05-27T05:21:20.528Z", + "end": "2022-05-27T10:12:44.411Z", + "events": [ + { + "start": "2022-05-27T05:21:20.528Z", + "end": "2022-05-27T06:19:37.304Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T06:19:37.304Z", + "end": "2022-05-27T07:17:54.080Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T07:17:54.080Z", + "end": "2022-05-27T08:16:10.856Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T08:16:10.856Z", + "end": "2022-05-27T09:14:27.632Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T09:14:27.632Z", + "end": "2022-05-27T10:12:44.408Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "546175179542364160", + "start": "2022-05-09T04:28:05.389Z", + "end": "2022-05-09T11:53:14.174Z", + "events": [ + { + "start": "2022-05-09T04:28:05.389Z", + "end": "2022-05-09T08:10:39.781Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-09T08:10:39.781Z", + "end": "2022-05-09T11:53:14.173Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "542075586886107149", + "start": "2022-05-03T20:57:29.250Z", + "end": "2022-05-04T06:55:31.430Z", + "events": [ + { + "start": "2022-05-03T20:57:29.250Z", + "end": "2022-05-03T22:57:05.686Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T22:57:05.686Z", + "end": "2022-05-04T00:56:42.122Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T00:56:42.122Z", + "end": "2022-05-04T02:56:18.558Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-04T02:56:18.558Z", + "end": "2022-05-04T04:55:54.994Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T04:55:54.994Z", + "end": "2022-05-04T06:55:31.430Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "137536289023624121", + "game": "560781100197216267", + "start": "2022-05-31T07:43:42.898Z", + "end": "2022-05-31T15:44:34.234Z", + "events": [ + { + "start": "2022-05-31T07:43:42.898Z", + "end": "2022-05-31T09:43:55.732Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T09:43:55.732Z", + "end": "2022-05-31T11:44:08.566Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T11:44:08.566Z", + "end": "2022-05-31T13:44:21.400Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T13:44:21.400Z", + "end": "2022-05-31T15:44:34.234Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "123137660023366590", + "game": "519644368735567873", + "start": "2022-05-06T04:22:22.957Z", + "end": "2022-05-06T08:48:40.650Z", + "events": [ + { + "start": "2022-05-06T04:22:22.957Z", + "end": "2022-05-06T05:51:08.854Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T05:51:08.854Z", + "end": "2022-05-06T07:19:54.751Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T07:19:54.751Z", + "end": "2022-05-06T08:48:40.648Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "788818750251007268", + "game": "512498684211232768", + "start": "2022-07-10T10:45:34.248Z", + "end": "2022-07-10T11:17:15.884Z", + "events": [ + { + "start": "2022-07-10T10:45:34.248Z", + "end": "2022-07-10T10:51:54.575Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T10:51:54.575Z", + "end": "2022-07-10T10:58:14.902Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T10:58:14.902Z", + "end": "2022-07-10T11:04:35.229Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T11:04:35.229Z", + "end": "2022-07-10T11:10:55.556Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T11:10:55.556Z", + "end": "2022-07-10T11:17:15.883Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "285410867718320291", + "game": "512789343157485602", + "start": "2022-07-10T17:22:35.618Z", + "end": "2022-07-10T20:28:38.332Z", + "events": [ + { + "start": "2022-07-10T17:22:35.618Z", + "end": "2022-07-10T18:24:36.522Z", + "state": "IDLE" + }, + { + "start": "2022-07-10T18:24:36.522Z", + "end": "2022-07-10T19:26:37.426Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T19:26:37.426Z", + "end": "2022-07-10T20:28:38.330Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "535869836748783616", + "start": "2022-07-07T21:07:34.685Z", + "end": "2022-07-08T06:59:34.985Z", + "events": [ + { + "start": "2022-07-07T21:07:34.685Z", + "end": "2022-07-08T00:24:54.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T00:24:54.785Z", + "end": "2022-07-08T03:42:14.885Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T03:42:14.885Z", + "end": "2022-07-08T06:59:34.985Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "512789427462995988", + "start": "2022-05-24T19:35:02.224Z", + "end": "2022-05-24T23:10:28.674Z", + "events": [ + { + "start": "2022-05-24T19:35:02.224Z", + "end": "2022-05-24T20:46:51.040Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T20:46:51.040Z", + "end": "2022-05-24T21:58:39.856Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T21:58:39.856Z", + "end": "2022-05-24T23:10:28.672Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "512789343157485602", + "start": "2022-05-18T04:24:19.519Z", + "end": "2022-05-18T07:16:18.576Z", + "events": [ + { + "start": "2022-05-18T04:24:19.519Z", + "end": "2022-05-18T05:21:39.204Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T05:21:39.204Z", + "end": "2022-05-18T06:18:58.889Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-18T06:18:58.889Z", + "end": "2022-05-18T07:16:18.574Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "549512435585908756", + "start": "2022-07-20T23:39:53.768Z", + "end": "2022-07-21T02:01:02.396Z", + "events": [ + { + "start": "2022-07-20T23:39:53.768Z", + "end": "2022-07-21T00:15:10.925Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T00:15:10.925Z", + "end": "2022-07-21T00:50:28.082Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T00:50:28.082Z", + "end": "2022-07-21T01:25:45.239Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T01:25:45.239Z", + "end": "2022-07-21T02:01:02.396Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "597860020935327787", + "start": "2022-04-24T12:54:04.197Z", + "end": "2022-04-24T22:51:26.326Z", + "events": [ + { + "start": "2022-04-24T12:54:04.197Z", + "end": "2022-04-24T15:23:24.729Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T15:23:24.729Z", + "end": "2022-04-24T17:52:45.261Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T17:52:45.261Z", + "end": "2022-04-24T20:22:05.793Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-24T20:22:05.793Z", + "end": "2022-04-24T22:51:26.325Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "549512435585908756", + "start": "2022-05-17T20:45:39.657Z", + "end": "2022-05-17T22:28:58.274Z", + "events": [ + { + "start": "2022-05-17T20:45:39.657Z", + "end": "2022-05-17T21:11:29.311Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T21:11:29.311Z", + "end": "2022-05-17T21:37:18.965Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T21:37:18.965Z", + "end": "2022-05-17T22:03:08.619Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T22:03:08.619Z", + "end": "2022-05-17T22:28:58.273Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "269014914705953013", + "game": "510199020782747732", + "start": "2022-07-07T13:20:03.272Z", + "end": "2022-07-07T21:29:24.955Z", + "events": [ + { + "start": "2022-07-07T13:20:03.272Z", + "end": "2022-07-07T21:29:24.955Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "540120593576493057", + "start": "2022-05-17T17:17:25.588Z", + "end": "2022-05-17T21:27:37.411Z", + "events": [ + { + "start": "2022-05-17T17:17:25.588Z", + "end": "2022-05-17T19:22:31.499Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T19:22:31.499Z", + "end": "2022-05-17T21:27:37.410Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "821608522568592914", + "game": "514228311661084682", + "start": "2022-08-03T12:40:26.517Z", + "end": "2022-08-03T21:29:16.565Z", + "events": [ + { + "start": "2022-08-03T12:40:26.517Z", + "end": "2022-08-03T14:52:39.029Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-03T14:52:39.029Z", + "end": "2022-08-03T17:04:51.541Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T17:04:51.541Z", + "end": "2022-08-03T19:17:04.053Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T19:17:04.053Z", + "end": "2022-08-03T21:29:16.565Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "732542352358923773", + "game": "512501896896970762", + "start": "2022-08-04T00:47:34.843Z", + "end": "2022-08-04T06:31:57.543Z", + "events": [ + { + "start": "2022-08-04T00:47:34.843Z", + "end": "2022-08-04T01:56:27.383Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T01:56:27.383Z", + "end": "2022-08-04T03:05:19.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T03:05:19.923Z", + "end": "2022-08-04T04:14:12.463Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T04:14:12.463Z", + "end": "2022-08-04T05:23:05.003Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-04T05:23:05.003Z", + "end": "2022-08-04T06:31:57.543Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "546175179542364160", + "start": "2022-06-24T14:50:49.737Z", + "end": "2022-06-24T21:11:57.959Z", + "events": [ + { + "start": "2022-06-24T14:50:49.737Z", + "end": "2022-06-24T21:11:57.959Z", + "state": "IDLE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512501896896970762", + "start": "2022-05-15T04:21:54.033Z", + "end": "2022-05-15T07:38:41.615Z", + "events": [ + { + "start": "2022-05-15T04:21:54.033Z", + "end": "2022-05-15T06:00:17.824Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-15T06:00:17.824Z", + "end": "2022-05-15T07:38:41.615Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "542075586886107149", + "start": "2022-05-01T16:10:14.496Z", + "end": "2022-05-02T01:26:05.336Z", + "events": [ + { + "start": "2022-05-01T16:10:14.496Z", + "end": "2022-05-02T01:26:05.336Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "346608907417001845", + "game": "592976500802846750", + "start": "2022-06-25T03:22:05.255Z", + "end": "2022-06-25T09:53:38.158Z", + "events": [ + { + "start": "2022-06-25T03:22:05.255Z", + "end": "2022-06-25T04:40:23.835Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T04:40:23.835Z", + "end": "2022-06-25T05:58:42.415Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T05:58:42.415Z", + "end": "2022-06-25T07:17:00.995Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T07:17:00.995Z", + "end": "2022-06-25T08:35:19.575Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T08:35:19.575Z", + "end": "2022-06-25T09:53:38.155Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "520453007578628124", + "start": "2022-08-02T05:49:38.112Z", + "end": "2022-08-02T06:43:42.632Z", + "events": [ + { + "start": "2022-08-02T05:49:38.112Z", + "end": "2022-08-02T06:00:27.016Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T06:00:27.016Z", + "end": "2022-08-02T06:11:15.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T06:11:15.920Z", + "end": "2022-08-02T06:22:04.824Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T06:22:04.824Z", + "end": "2022-08-02T06:32:53.728Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T06:32:53.728Z", + "end": "2022-08-02T06:43:42.632Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "356875221078245376", + "start": "2022-06-20T10:59:09.482Z", + "end": "2022-06-20T15:54:44.639Z", + "events": [ + { + "start": "2022-06-20T10:59:09.482Z", + "end": "2022-06-20T11:58:16.513Z", + "state": "IDLE" + }, + { + "start": "2022-06-20T11:58:16.513Z", + "end": "2022-06-20T12:57:23.544Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T12:57:23.544Z", + "end": "2022-06-20T13:56:30.575Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T13:56:30.575Z", + "end": "2022-06-20T14:55:37.606Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T14:55:37.606Z", + "end": "2022-06-20T15:54:44.637Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "542075586886107149", + "start": "2022-06-02T03:06:58.110Z", + "end": "2022-06-02T11:06:06.465Z", + "events": [ + { + "start": "2022-06-02T03:06:58.110Z", + "end": "2022-06-02T11:06:06.465Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786028561315351452", + "game": "512501896896970762", + "start": "2022-05-30T07:59:15.930Z", + "end": "2022-05-30T11:00:44.999Z", + "events": [ + { + "start": "2022-05-30T07:59:15.930Z", + "end": "2022-05-30T08:59:45.619Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T08:59:45.619Z", + "end": "2022-05-30T10:00:15.308Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T10:00:15.308Z", + "end": "2022-05-30T11:00:44.997Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "774637841058278398", + "game": "511619499053678668", + "start": "2022-07-03T16:40:55.762Z", + "end": "2022-07-03T21:11:41.930Z", + "events": [ + { + "start": "2022-07-03T16:40:55.762Z", + "end": "2022-07-03T21:11:41.930Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "264503060524837708", + "game": "614380482620293151", + "start": "2022-05-17T10:13:05.512Z", + "end": "2022-05-17T12:28:14.127Z", + "events": [ + { + "start": "2022-05-17T10:13:05.512Z", + "end": "2022-05-17T10:58:08.383Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T10:58:08.383Z", + "end": "2022-05-17T11:43:11.254Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T11:43:11.254Z", + "end": "2022-05-17T12:28:14.125Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "535384357536399404", + "start": "2022-07-08T06:52:28.818Z", + "end": "2022-07-08T12:47:42.991Z", + "events": [ + { + "start": "2022-07-08T06:52:28.818Z", + "end": "2022-07-08T08:03:31.652Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T08:03:31.652Z", + "end": "2022-07-08T09:14:34.486Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T09:14:34.486Z", + "end": "2022-07-08T10:25:37.320Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T10:25:37.320Z", + "end": "2022-07-08T11:36:40.154Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T11:36:40.154Z", + "end": "2022-07-08T12:47:42.988Z", + "state": "IDLE" + } + ] + }, + { + "user": "394970121077311909", + "game": "528145079819436043", + "start": "2022-07-29T16:38:30.712Z", + "end": "2022-07-29T22:14:32.217Z", + "events": [ + { + "start": "2022-07-29T16:38:30.712Z", + "end": "2022-07-29T17:45:43.013Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T17:45:43.013Z", + "end": "2022-07-29T18:52:55.314Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T18:52:55.314Z", + "end": "2022-07-29T20:00:07.615Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T20:00:07.615Z", + "end": "2022-07-29T21:07:19.916Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T21:07:19.916Z", + "end": "2022-07-29T22:14:32.217Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "731522398939920723", + "game": "592976500802846750", + "start": "2022-06-05T20:49:30.025Z", + "end": "2022-06-05T21:06:53.491Z", + "events": [ + { + "start": "2022-06-05T20:49:30.025Z", + "end": "2022-06-05T20:55:17.847Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T20:55:17.847Z", + "end": "2022-06-05T21:01:05.669Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T21:01:05.669Z", + "end": "2022-06-05T21:06:53.491Z", + "state": "IDLE" + } + ] + }, + { + "user": "951131768137733554", + "game": "597588168178663434", + "start": "2022-07-30T12:25:31.310Z", + "end": "2022-07-30T15:40:51.260Z", + "events": [ + { + "start": "2022-07-30T12:25:31.310Z", + "end": "2022-07-30T13:30:37.960Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T13:30:37.960Z", + "end": "2022-07-30T14:35:44.610Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T14:35:44.610Z", + "end": "2022-07-30T15:40:51.260Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "530539422724200800", + "game": "554573307161214977", + "start": "2022-06-23T12:27:45.646Z", + "end": "2022-06-23T19:16:12.346Z", + "events": [ + { + "start": "2022-06-23T12:27:45.646Z", + "end": "2022-06-23T19:16:12.346Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "346608907417001845", + "game": "575412499399180288", + "start": "2022-07-30T22:41:01.913Z", + "end": "2022-07-31T03:18:42.609Z", + "events": [ + { + "start": "2022-07-30T22:41:01.913Z", + "end": "2022-07-30T23:36:34.052Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T23:36:34.052Z", + "end": "2022-07-31T00:32:06.191Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T00:32:06.191Z", + "end": "2022-07-31T01:27:38.330Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T01:27:38.330Z", + "end": "2022-07-31T02:23:10.469Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T02:23:10.469Z", + "end": "2022-07-31T03:18:42.608Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "658550407298256890", + "game": "576482762446602270", + "start": "2022-05-23T13:14:48.524Z", + "end": "2022-05-23T18:38:00.220Z", + "events": [ + { + "start": "2022-05-23T13:14:48.524Z", + "end": "2022-05-23T15:02:32.422Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T15:02:32.422Z", + "end": "2022-05-23T16:50:16.320Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T16:50:16.320Z", + "end": "2022-05-23T18:38:00.218Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "747381962738157784", + "game": "614380482620293151", + "start": "2022-07-02T17:27:55.195Z", + "end": "2022-07-02T23:32:45.144Z", + "events": [ + { + "start": "2022-07-02T17:27:55.195Z", + "end": "2022-07-02T20:30:20.169Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T20:30:20.169Z", + "end": "2022-07-02T23:32:45.143Z", + "state": "IDLE" + } + ] + }, + { + "user": "686825797960121847", + "game": "542474758835535872", + "start": "2022-04-21T13:13:11.984Z", + "end": "2022-04-21T22:51:52.441Z", + "events": [ + { + "start": "2022-04-21T13:13:11.984Z", + "end": "2022-04-21T15:37:52.098Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T15:37:52.098Z", + "end": "2022-04-21T18:02:32.212Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T18:02:32.212Z", + "end": "2022-04-21T20:27:12.326Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T20:27:12.326Z", + "end": "2022-04-21T22:51:52.440Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "540120593576493057", + "start": "2022-07-24T16:20:49.563Z", + "end": "2022-07-24T22:55:17.572Z", + "events": [ + { + "start": "2022-07-24T16:20:49.563Z", + "end": "2022-07-24T22:55:17.572Z", + "state": "IDLE" + } + ] + }, + { + "user": "123137660023366590", + "game": "535371564850479134", + "start": "2022-05-04T17:32:52.297Z", + "end": "2022-05-05T03:08:29.283Z", + "events": [ + { + "start": "2022-05-04T17:32:52.297Z", + "end": "2022-05-05T03:08:29.283Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "542075586886107149", + "start": "2022-07-11T10:39:30.830Z", + "end": "2022-07-11T11:01:40.441Z", + "events": [ + { + "start": "2022-07-11T10:39:30.830Z", + "end": "2022-07-11T10:46:54.033Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T10:46:54.033Z", + "end": "2022-07-11T10:54:17.236Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T10:54:17.236Z", + "end": "2022-07-11T11:01:40.439Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "101572134856427564", + "game": "520453007578628124", + "start": "2022-07-18T19:11:35.893Z", + "end": "2022-07-18T21:48:43.698Z", + "events": [ + { + "start": "2022-07-18T19:11:35.893Z", + "end": "2022-07-18T21:48:43.698Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "554573307161214977", + "start": "2022-05-03T01:37:01.477Z", + "end": "2022-05-03T07:45:26.771Z", + "events": [ + { + "start": "2022-05-03T01:37:01.477Z", + "end": "2022-05-03T07:45:26.771Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "512498684211232768", + "start": "2022-06-25T15:59:36.792Z", + "end": "2022-06-26T01:17:37.330Z", + "events": [ + { + "start": "2022-06-25T15:59:36.792Z", + "end": "2022-06-25T19:05:36.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T19:05:36.971Z", + "end": "2022-06-25T22:11:37.150Z", + "state": "IDLE" + }, + { + "start": "2022-06-25T22:11:37.150Z", + "end": "2022-06-26T01:17:37.329Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302714757313826277", + "game": "597860020935327787", + "start": "2022-08-06T09:06:54.320Z", + "end": "2022-08-06T11:25:49.092Z", + "events": [ + { + "start": "2022-08-06T09:06:54.320Z", + "end": "2022-08-06T11:25:49.092Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "878082205985098233", + "game": "514228311661084682", + "start": "2022-07-23T02:58:41.434Z", + "end": "2022-07-23T10:08:36.930Z", + "events": [ + { + "start": "2022-07-23T02:58:41.434Z", + "end": "2022-07-23T04:24:40.533Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T04:24:40.533Z", + "end": "2022-07-23T05:50:39.632Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T05:50:39.632Z", + "end": "2022-07-23T07:16:38.731Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T07:16:38.731Z", + "end": "2022-07-23T08:42:37.830Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T08:42:37.830Z", + "end": "2022-07-23T10:08:36.929Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "514228311661084682", + "start": "2022-07-21T11:16:20.361Z", + "end": "2022-07-21T11:47:44.915Z", + "events": [ + { + "start": "2022-07-21T11:16:20.361Z", + "end": "2022-07-21T11:26:48.545Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T11:26:48.545Z", + "end": "2022-07-21T11:37:16.729Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T11:37:16.729Z", + "end": "2022-07-21T11:47:44.913Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "535371564850479134", + "start": "2022-04-19T18:33:24.016Z", + "end": "2022-04-19T21:01:23.755Z", + "events": [ + { + "start": "2022-04-19T18:33:24.016Z", + "end": "2022-04-19T19:47:23.885Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T19:47:23.885Z", + "end": "2022-04-19T21:01:23.754Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "725502702868293700", + "game": "565341641427124244", + "start": "2022-05-21T21:44:57.332Z", + "end": "2022-05-22T01:36:48.777Z", + "events": [ + { + "start": "2022-05-21T21:44:57.332Z", + "end": "2022-05-22T01:36:48.777Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "911848869344266044", + "game": "569008830701240340", + "start": "2022-07-11T11:21:55.208Z", + "end": "2022-07-11T20:32:41.413Z", + "events": [ + { + "start": "2022-07-11T11:21:55.208Z", + "end": "2022-07-11T13:12:04.449Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T13:12:04.449Z", + "end": "2022-07-11T15:02:13.690Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T15:02:13.690Z", + "end": "2022-07-11T16:52:22.931Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T16:52:22.931Z", + "end": "2022-07-11T18:42:32.172Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T18:42:32.172Z", + "end": "2022-07-11T20:32:41.413Z", + "state": "IDLE" + } + ] + }, + { + "user": "430732724825949756", + "game": "540120593576493057", + "start": "2022-05-08T12:49:29.935Z", + "end": "2022-05-08T20:41:25.245Z", + "events": [ + { + "start": "2022-05-08T12:49:29.935Z", + "end": "2022-05-08T16:45:27.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T16:45:27.590Z", + "end": "2022-05-08T20:41:25.245Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "774637841058278398", + "game": "512789427462995988", + "start": "2022-05-10T07:00:08.641Z", + "end": "2022-05-10T16:21:25.325Z", + "events": [ + { + "start": "2022-05-10T07:00:08.641Z", + "end": "2022-05-10T09:20:27.812Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T09:20:27.812Z", + "end": "2022-05-10T11:40:46.983Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T11:40:46.983Z", + "end": "2022-05-10T14:01:06.154Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T14:01:06.154Z", + "end": "2022-05-10T16:21:25.325Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "606163888052109312", + "start": "2022-06-15T10:53:54.240Z", + "end": "2022-06-15T15:29:52.064Z", + "events": [ + { + "start": "2022-06-15T10:53:54.240Z", + "end": "2022-06-15T12:02:53.696Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T12:02:53.696Z", + "end": "2022-06-15T13:11:53.152Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T13:11:53.152Z", + "end": "2022-06-15T14:20:52.608Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T14:20:52.608Z", + "end": "2022-06-15T15:29:52.064Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "519644368735567873", + "start": "2022-05-29T22:26:32.688Z", + "end": "2022-05-30T04:10:37.885Z", + "events": [ + { + "start": "2022-05-29T22:26:32.688Z", + "end": "2022-05-29T23:52:33.987Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T23:52:33.987Z", + "end": "2022-05-30T01:18:35.286Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T01:18:35.286Z", + "end": "2022-05-30T02:44:36.585Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T02:44:36.585Z", + "end": "2022-05-30T04:10:37.884Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "713444659295913502", + "game": "558547388583772201", + "start": "2022-04-29T20:35:01.500Z", + "end": "2022-04-30T06:33:57.965Z", + "events": [ + { + "start": "2022-04-29T20:35:01.500Z", + "end": "2022-04-29T23:54:40.321Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-29T23:54:40.321Z", + "end": "2022-04-30T03:14:19.142Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-30T03:14:19.142Z", + "end": "2022-04-30T06:33:57.963Z", + "state": "IDLE" + } + ] + }, + { + "user": "768513326430993269", + "game": "550277544025522176", + "start": "2022-04-29T11:47:49.463Z", + "end": "2022-04-29T17:48:52.318Z", + "events": [ + { + "start": "2022-04-29T11:47:49.463Z", + "end": "2022-04-29T14:48:20.890Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T14:48:20.890Z", + "end": "2022-04-29T17:48:52.317Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "101572134856427564", + "game": "512789427462995988", + "start": "2022-07-26T12:03:26.434Z", + "end": "2022-07-26T15:13:49.865Z", + "events": [ + { + "start": "2022-07-26T12:03:26.434Z", + "end": "2022-07-26T15:13:49.865Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "508057374875975682", + "start": "2022-04-26T05:48:23.456Z", + "end": "2022-04-26T09:49:23.722Z", + "events": [ + { + "start": "2022-04-26T05:48:23.456Z", + "end": "2022-04-26T06:48:38.522Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T06:48:38.522Z", + "end": "2022-04-26T07:48:53.588Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T07:48:53.588Z", + "end": "2022-04-26T08:49:08.654Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T08:49:08.654Z", + "end": "2022-04-26T09:49:23.720Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "512699108809637890", + "start": "2022-05-16T22:08:32.686Z", + "end": "2022-05-16T23:38:09.287Z", + "events": [ + { + "start": "2022-05-16T22:08:32.686Z", + "end": "2022-05-16T22:26:28.006Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T22:26:28.006Z", + "end": "2022-05-16T22:44:23.326Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T22:44:23.326Z", + "end": "2022-05-16T23:02:18.646Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-16T23:02:18.646Z", + "end": "2022-05-16T23:20:13.966Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T23:20:13.966Z", + "end": "2022-05-16T23:38:09.286Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "500919588166575890", + "game": "512501896896970762", + "start": "2022-05-26T07:32:17.727Z", + "end": "2022-05-26T16:58:11.183Z", + "events": [ + { + "start": "2022-05-26T07:32:17.727Z", + "end": "2022-05-26T09:25:28.418Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-26T09:25:28.418Z", + "end": "2022-05-26T11:18:39.109Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T11:18:39.109Z", + "end": "2022-05-26T13:11:49.800Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-26T13:11:49.800Z", + "end": "2022-05-26T15:05:00.491Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T15:05:00.491Z", + "end": "2022-05-26T16:58:11.182Z", + "state": "IDLE" + } + ] + }, + { + "user": "623295654897148670", + "game": "518088627234930688", + "start": "2022-07-20T19:41:56.593Z", + "end": "2022-07-21T04:04:42.658Z", + "events": [ + { + "start": "2022-07-20T19:41:56.593Z", + "end": "2022-07-20T21:47:38.109Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T21:47:38.109Z", + "end": "2022-07-20T23:53:19.625Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T23:53:19.625Z", + "end": "2022-07-21T01:59:01.141Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T01:59:01.141Z", + "end": "2022-07-21T04:04:42.657Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "572456126872944651", + "start": "2022-06-15T20:53:26.444Z", + "end": "2022-06-15T23:52:43.680Z", + "events": [ + { + "start": "2022-06-15T20:53:26.444Z", + "end": "2022-06-15T21:38:15.753Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T21:38:15.753Z", + "end": "2022-06-15T22:23:05.062Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T22:23:05.062Z", + "end": "2022-06-15T23:07:54.371Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T23:07:54.371Z", + "end": "2022-06-15T23:52:43.680Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "565341641427124244", + "start": "2022-05-16T06:46:01.463Z", + "end": "2022-05-16T14:56:40.158Z", + "events": [ + { + "start": "2022-05-16T06:46:01.463Z", + "end": "2022-05-16T09:29:34.361Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-16T09:29:34.361Z", + "end": "2022-05-16T12:13:07.259Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T12:13:07.259Z", + "end": "2022-05-16T14:56:40.157Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "565341641427124244", + "start": "2022-07-23T16:18:13.861Z", + "end": "2022-07-24T00:13:10.417Z", + "events": [ + { + "start": "2022-07-23T16:18:13.861Z", + "end": "2022-07-23T20:15:42.139Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T20:15:42.139Z", + "end": "2022-07-24T00:13:10.417Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "395281349698024181", + "game": "523154344187789312", + "start": "2022-06-19T10:09:12.297Z", + "end": "2022-06-19T14:09:53.903Z", + "events": [ + { + "start": "2022-06-19T10:09:12.297Z", + "end": "2022-06-19T14:09:53.903Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "713444659295913502", + "game": "514228311661084682", + "start": "2022-07-07T03:48:43.300Z", + "end": "2022-07-07T08:14:54.295Z", + "events": [ + { + "start": "2022-07-07T03:48:43.300Z", + "end": "2022-07-07T08:14:54.295Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "520462578061803588", + "start": "2022-05-15T03:33:59.799Z", + "end": "2022-05-15T09:29:30.147Z", + "events": [ + { + "start": "2022-05-15T03:33:59.799Z", + "end": "2022-05-15T05:02:52.386Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T05:02:52.386Z", + "end": "2022-05-15T06:31:44.973Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T06:31:44.973Z", + "end": "2022-05-15T08:00:37.560Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T08:00:37.560Z", + "end": "2022-05-15T09:29:30.147Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "520462578061803588", + "start": "2022-06-24T15:10:50.584Z", + "end": "2022-06-24T23:30:38.843Z", + "events": [ + { + "start": "2022-06-24T15:10:50.584Z", + "end": "2022-06-24T19:20:44.713Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T19:20:44.713Z", + "end": "2022-06-24T23:30:38.842Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "597860020935327787", + "start": "2022-04-29T15:11:41.921Z", + "end": "2022-04-29T21:49:06.231Z", + "events": [ + { + "start": "2022-04-29T15:11:41.921Z", + "end": "2022-04-29T17:24:10.024Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T17:24:10.024Z", + "end": "2022-04-29T19:36:38.127Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T19:36:38.127Z", + "end": "2022-04-29T21:49:06.230Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "569253958967885828", + "start": "2022-05-31T16:00:28.608Z", + "end": "2022-05-31T22:33:53.030Z", + "events": [ + { + "start": "2022-05-31T16:00:28.608Z", + "end": "2022-05-31T17:19:09.492Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T17:19:09.492Z", + "end": "2022-05-31T18:37:50.376Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T18:37:50.376Z", + "end": "2022-05-31T19:56:31.260Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T19:56:31.260Z", + "end": "2022-05-31T21:15:12.144Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T21:15:12.144Z", + "end": "2022-05-31T22:33:53.028Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "553697181249437716", + "start": "2022-05-07T15:05:37.166Z", + "end": "2022-05-07T22:34:07.380Z", + "events": [ + { + "start": "2022-05-07T15:05:37.166Z", + "end": "2022-05-07T22:34:07.380Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "732542352358923773", + "game": "540120593576493057", + "start": "2022-05-09T00:37:42.814Z", + "end": "2022-05-09T04:03:14.056Z", + "events": [ + { + "start": "2022-05-09T00:37:42.814Z", + "end": "2022-05-09T01:18:49.062Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T01:18:49.062Z", + "end": "2022-05-09T01:59:55.310Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T01:59:55.310Z", + "end": "2022-05-09T02:41:01.558Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T02:41:01.558Z", + "end": "2022-05-09T03:22:07.806Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-09T03:22:07.806Z", + "end": "2022-05-09T04:03:14.054Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "553697181249437716", + "start": "2022-05-18T11:21:56.233Z", + "end": "2022-05-18T20:50:52.229Z", + "events": [ + { + "start": "2022-05-18T11:21:56.233Z", + "end": "2022-05-18T16:06:24.231Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T16:06:24.231Z", + "end": "2022-05-18T20:50:52.229Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "700136079562375258", + "start": "2022-05-09T19:29:39.994Z", + "end": "2022-05-09T20:43:28.896Z", + "events": [ + { + "start": "2022-05-09T19:29:39.994Z", + "end": "2022-05-09T19:44:25.774Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-09T19:44:25.774Z", + "end": "2022-05-09T19:59:11.554Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T19:59:11.554Z", + "end": "2022-05-09T20:13:57.334Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T20:13:57.334Z", + "end": "2022-05-09T20:28:43.114Z", + "state": "IDLE" + }, + { + "start": "2022-05-09T20:28:43.114Z", + "end": "2022-05-09T20:43:28.894Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "713444659295913502", + "game": "569253958967885828", + "start": "2022-07-18T06:21:02.575Z", + "end": "2022-07-18T12:43:23.211Z", + "events": [ + { + "start": "2022-07-18T06:21:02.575Z", + "end": "2022-07-18T07:56:37.734Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T07:56:37.734Z", + "end": "2022-07-18T09:32:12.893Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T09:32:12.893Z", + "end": "2022-07-18T11:07:48.052Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T11:07:48.052Z", + "end": "2022-07-18T12:43:23.211Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "791267126190249625", + "game": "519644368735567873", + "start": "2022-07-15T08:35:32.878Z", + "end": "2022-07-15T08:54:27.030Z", + "events": [ + { + "start": "2022-07-15T08:35:32.878Z", + "end": "2022-07-15T08:40:16.416Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-15T08:40:16.416Z", + "end": "2022-07-15T08:44:59.954Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T08:44:59.954Z", + "end": "2022-07-15T08:49:43.492Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-15T08:49:43.492Z", + "end": "2022-07-15T08:54:27.030Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "510690749854514547", + "game": "588739017718366208", + "start": "2022-04-29T11:52:47.003Z", + "end": "2022-04-29T13:17:21.861Z", + "events": [ + { + "start": "2022-04-29T11:52:47.003Z", + "end": "2022-04-29T12:20:58.622Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T12:20:58.622Z", + "end": "2022-04-29T12:49:10.241Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-29T12:49:10.241Z", + "end": "2022-04-29T13:17:21.860Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "530454325214969866", + "start": "2022-04-25T14:21:09.770Z", + "end": "2022-04-25T21:38:38.110Z", + "events": [ + { + "start": "2022-04-25T14:21:09.770Z", + "end": "2022-04-25T21:38:38.110Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "519644368735567873", + "start": "2022-06-16T09:37:46.300Z", + "end": "2022-06-16T11:38:35.189Z", + "events": [ + { + "start": "2022-06-16T09:37:46.300Z", + "end": "2022-06-16T10:07:58.522Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T10:07:58.522Z", + "end": "2022-06-16T10:38:10.744Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T10:38:10.744Z", + "end": "2022-06-16T11:08:22.966Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T11:08:22.966Z", + "end": "2022-06-16T11:38:35.188Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "535384357536399404", + "start": "2022-07-11T09:06:15.169Z", + "end": "2022-07-11T11:34:58.282Z", + "events": [ + { + "start": "2022-07-11T09:06:15.169Z", + "end": "2022-07-11T10:20:36.725Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T10:20:36.725Z", + "end": "2022-07-11T11:34:58.281Z", + "state": "IDLE" + } + ] + }, + { + "user": "394970121077311909", + "game": "542475118396309528", + "start": "2022-06-20T14:13:34.881Z", + "end": "2022-06-20T16:55:07.749Z", + "events": [ + { + "start": "2022-06-20T14:13:34.881Z", + "end": "2022-06-20T15:34:21.315Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T15:34:21.315Z", + "end": "2022-06-20T16:55:07.749Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "285410867718320291", + "game": "576482762446602270", + "start": "2022-04-23T05:37:21.234Z", + "end": "2022-04-23T09:29:29.710Z", + "events": [ + { + "start": "2022-04-23T05:37:21.234Z", + "end": "2022-04-23T06:54:44.059Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T06:54:44.059Z", + "end": "2022-04-23T08:12:06.884Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T08:12:06.884Z", + "end": "2022-04-23T09:29:29.709Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "297014162745407430", + "game": "584069374462394368", + "start": "2022-07-26T18:16:48.245Z", + "end": "2022-07-26T18:22:55.377Z", + "events": [ + { + "start": "2022-07-26T18:16:48.245Z", + "end": "2022-07-26T18:18:01.671Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-26T18:18:01.671Z", + "end": "2022-07-26T18:19:15.097Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-26T18:19:15.097Z", + "end": "2022-07-26T18:20:28.523Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-26T18:20:28.523Z", + "end": "2022-07-26T18:21:41.949Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-26T18:21:41.949Z", + "end": "2022-07-26T18:22:55.375Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "452396069922968436", + "game": "520462578061803588", + "start": "2022-06-28T11:03:22.005Z", + "end": "2022-06-28T16:35:43.897Z", + "events": [ + { + "start": "2022-06-28T11:03:22.005Z", + "end": "2022-06-28T12:26:27.478Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T12:26:27.478Z", + "end": "2022-06-28T13:49:32.951Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T13:49:32.951Z", + "end": "2022-06-28T15:12:38.424Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T15:12:38.424Z", + "end": "2022-06-28T16:35:43.897Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "731522398939920723", + "game": "520453007578628124", + "start": "2022-06-12T08:23:30.266Z", + "end": "2022-06-12T17:01:50.680Z", + "events": [ + { + "start": "2022-06-12T08:23:30.266Z", + "end": "2022-06-12T17:01:50.680Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "558547388583772201", + "start": "2022-06-20T04:35:29.386Z", + "end": "2022-06-20T10:20:20.850Z", + "events": [ + { + "start": "2022-06-20T04:35:29.386Z", + "end": "2022-06-20T06:30:26.540Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T06:30:26.540Z", + "end": "2022-06-20T08:25:23.694Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T08:25:23.694Z", + "end": "2022-06-20T10:20:20.848Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "694111074254984301", + "game": "519644368735567873", + "start": "2022-08-01T06:52:59.636Z", + "end": "2022-08-01T08:30:25.235Z", + "events": [ + { + "start": "2022-08-01T06:52:59.636Z", + "end": "2022-08-01T07:41:42.435Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-01T07:41:42.435Z", + "end": "2022-08-01T08:30:25.234Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "378424071510192465", + "game": "518088627234930688", + "start": "2022-04-27T12:02:37.864Z", + "end": "2022-04-27T12:45:36.999Z", + "events": [ + { + "start": "2022-04-27T12:02:37.864Z", + "end": "2022-04-27T12:11:13.691Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T12:11:13.691Z", + "end": "2022-04-27T12:19:49.518Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T12:19:49.518Z", + "end": "2022-04-27T12:28:25.345Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T12:28:25.345Z", + "end": "2022-04-27T12:37:01.172Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T12:37:01.172Z", + "end": "2022-04-27T12:45:36.999Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "878082205985098233", + "game": "512501896896970762", + "start": "2022-06-09T14:54:07.536Z", + "end": "2022-06-10T00:51:42.243Z", + "events": [ + { + "start": "2022-06-09T14:54:07.536Z", + "end": "2022-06-09T19:52:54.889Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-09T19:52:54.889Z", + "end": "2022-06-10T00:51:42.242Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "394970121077311909", + "game": "508057374875975682", + "start": "2022-07-15T03:36:43.614Z", + "end": "2022-07-15T05:45:56.613Z", + "events": [ + { + "start": "2022-07-15T03:36:43.614Z", + "end": "2022-07-15T04:02:34.213Z", + "state": "IDLE" + }, + { + "start": "2022-07-15T04:02:34.213Z", + "end": "2022-07-15T04:28:24.812Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T04:28:24.812Z", + "end": "2022-07-15T04:54:15.411Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T04:54:15.411Z", + "end": "2022-07-15T05:20:06.010Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-15T05:20:06.010Z", + "end": "2022-07-15T05:45:56.609Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "452396069922968436", + "game": "508057374875975682", + "start": "2022-04-19T04:26:50.642Z", + "end": "2022-04-19T09:16:41.021Z", + "events": [ + { + "start": "2022-04-19T04:26:50.642Z", + "end": "2022-04-19T09:16:41.021Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "521350927850935744", + "game": "519644267212177418", + "start": "2022-05-02T13:35:27.899Z", + "end": "2022-05-02T18:08:03.175Z", + "events": [ + { + "start": "2022-05-02T13:35:27.899Z", + "end": "2022-05-02T15:51:45.537Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T15:51:45.537Z", + "end": "2022-05-02T18:08:03.175Z", + "state": "IDLE" + } + ] + }, + { + "user": "694111074254984301", + "game": "540120593576493057", + "start": "2022-06-10T22:48:41.554Z", + "end": "2022-06-11T01:46:30.570Z", + "events": [ + { + "start": "2022-06-10T22:48:41.554Z", + "end": "2022-06-11T01:46:30.570Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "695941172337689379", + "game": "530454325214969866", + "start": "2022-07-22T01:04:57.197Z", + "end": "2022-07-22T10:01:28.815Z", + "events": [ + { + "start": "2022-07-22T01:04:57.197Z", + "end": "2022-07-22T02:52:15.520Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T02:52:15.520Z", + "end": "2022-07-22T04:39:33.843Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T04:39:33.843Z", + "end": "2022-07-22T06:26:52.166Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T06:26:52.166Z", + "end": "2022-07-22T08:14:10.489Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T08:14:10.489Z", + "end": "2022-07-22T10:01:28.812Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "318220875546522080", + "game": "512501896896970762", + "start": "2022-06-15T11:46:29.356Z", + "end": "2022-06-15T16:47:53.589Z", + "events": [ + { + "start": "2022-06-15T11:46:29.356Z", + "end": "2022-06-15T13:01:50.414Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T13:01:50.414Z", + "end": "2022-06-15T14:17:11.472Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T14:17:11.472Z", + "end": "2022-06-15T15:32:32.530Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T15:32:32.530Z", + "end": "2022-06-15T16:47:53.588Z", + "state": "IDLE" + } + ] + }, + { + "user": "153631479524744694", + "game": "512789427462995988", + "start": "2022-08-01T08:13:10.146Z", + "end": "2022-08-01T15:18:25.394Z", + "events": [ + { + "start": "2022-08-01T08:13:10.146Z", + "end": "2022-08-01T11:45:47.770Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T11:45:47.770Z", + "end": "2022-08-01T15:18:25.394Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "511619499053678668", + "start": "2022-05-13T23:48:48.803Z", + "end": "2022-05-14T07:38:53.438Z", + "events": [ + { + "start": "2022-05-13T23:48:48.803Z", + "end": "2022-05-14T03:43:51.120Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T03:43:51.120Z", + "end": "2022-05-14T07:38:53.437Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "584069374462394368", + "start": "2022-06-20T02:18:15.369Z", + "end": "2022-06-20T08:07:54.632Z", + "events": [ + { + "start": "2022-06-20T02:18:15.369Z", + "end": "2022-06-20T08:07:54.632Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "510690749854514547", + "game": "535371564850479134", + "start": "2022-04-14T23:38:33.164Z", + "end": "2022-04-15T04:03:40.806Z", + "events": [ + { + "start": "2022-04-14T23:38:33.164Z", + "end": "2022-04-15T01:51:06.985Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-15T01:51:06.985Z", + "end": "2022-04-15T04:03:40.806Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "213263852824749877", + "game": "512789120234422301", + "start": "2022-07-28T10:21:03.115Z", + "end": "2022-07-28T13:34:05.784Z", + "events": [ + { + "start": "2022-07-28T10:21:03.115Z", + "end": "2022-07-28T11:09:18.782Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T11:09:18.782Z", + "end": "2022-07-28T11:57:34.449Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T11:57:34.449Z", + "end": "2022-07-28T12:45:50.116Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T12:45:50.116Z", + "end": "2022-07-28T13:34:05.783Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "520462578061803588", + "start": "2022-04-29T10:18:46.425Z", + "end": "2022-04-29T13:16:41.373Z", + "events": [ + { + "start": "2022-04-29T10:18:46.425Z", + "end": "2022-04-29T10:54:21.414Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T10:54:21.414Z", + "end": "2022-04-29T11:29:56.403Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T11:29:56.403Z", + "end": "2022-04-29T12:05:31.392Z", + "state": "IDLE" + }, + { + "start": "2022-04-29T12:05:31.392Z", + "end": "2022-04-29T12:41:06.381Z", + "state": "IDLE" + }, + { + "start": "2022-04-29T12:41:06.381Z", + "end": "2022-04-29T13:16:41.370Z", + "state": "IDLE" + } + ] + }, + { + "user": "123137660023366590", + "game": "546175179542364160", + "start": "2022-05-20T04:13:15.996Z", + "end": "2022-05-20T06:55:38.027Z", + "events": [ + { + "start": "2022-05-20T04:13:15.996Z", + "end": "2022-05-20T05:07:23.339Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T05:07:23.339Z", + "end": "2022-05-20T06:01:30.682Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-20T06:01:30.682Z", + "end": "2022-05-20T06:55:38.025Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512501896896970762", + "start": "2022-06-03T17:40:55.052Z", + "end": "2022-06-03T23:17:14.135Z", + "events": [ + { + "start": "2022-06-03T17:40:55.052Z", + "end": "2022-06-03T20:29:04.593Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T20:29:04.593Z", + "end": "2022-06-03T23:17:14.134Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "512789120234422301", + "start": "2022-06-02T15:35:21.127Z", + "end": "2022-06-02T23:03:21.662Z", + "events": [ + { + "start": "2022-06-02T15:35:21.127Z", + "end": "2022-06-02T19:19:21.394Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T19:19:21.394Z", + "end": "2022-06-02T23:03:21.661Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "508057374875975682", + "start": "2022-05-24T04:57:35.431Z", + "end": "2022-05-24T06:05:38.304Z", + "events": [ + { + "start": "2022-05-24T04:57:35.431Z", + "end": "2022-05-24T05:20:16.388Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T05:20:16.388Z", + "end": "2022-05-24T05:42:57.345Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T05:42:57.345Z", + "end": "2022-05-24T06:05:38.302Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "356875221078245376", + "start": "2022-06-17T08:01:00.954Z", + "end": "2022-06-17T16:24:56.023Z", + "events": [ + { + "start": "2022-06-17T08:01:00.954Z", + "end": "2022-06-17T12:12:58.488Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T12:12:58.488Z", + "end": "2022-06-17T16:24:56.022Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "101572134856427564", + "game": "519644368735567873", + "start": "2022-06-09T02:56:40.727Z", + "end": "2022-06-09T12:27:40.629Z", + "events": [ + { + "start": "2022-06-09T02:56:40.727Z", + "end": "2022-06-09T07:42:10.678Z", + "state": "IDLE" + }, + { + "start": "2022-06-09T07:42:10.678Z", + "end": "2022-06-09T12:27:40.629Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "510690749854514547", + "game": "526489929631531009", + "start": "2022-05-16T13:07:05.983Z", + "end": "2022-05-16T20:47:37.835Z", + "events": [ + { + "start": "2022-05-16T13:07:05.983Z", + "end": "2022-05-16T14:39:12.353Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T14:39:12.353Z", + "end": "2022-05-16T16:11:18.723Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T16:11:18.723Z", + "end": "2022-05-16T17:43:25.093Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T17:43:25.093Z", + "end": "2022-05-16T19:15:31.463Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T19:15:31.463Z", + "end": "2022-05-16T20:47:37.833Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "161887854890745672", + "game": "512789343157485602", + "start": "2022-07-08T22:30:43.183Z", + "end": "2022-07-08T23:53:27.213Z", + "events": [ + { + "start": "2022-07-08T22:30:43.183Z", + "end": "2022-07-08T22:47:15.989Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T22:47:15.989Z", + "end": "2022-07-08T23:03:48.795Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T23:03:48.795Z", + "end": "2022-07-08T23:20:21.601Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T23:20:21.601Z", + "end": "2022-07-08T23:36:54.407Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T23:36:54.407Z", + "end": "2022-07-08T23:53:27.213Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "356875221078245376", + "start": "2022-07-21T05:19:29.379Z", + "end": "2022-07-21T05:26:37.581Z", + "events": [ + { + "start": "2022-07-21T05:19:29.379Z", + "end": "2022-07-21T05:26:37.581Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "565341641427124244", + "start": "2022-04-13T11:13:56.199Z", + "end": "2022-04-13T16:51:35.190Z", + "events": [ + { + "start": "2022-04-13T11:13:56.199Z", + "end": "2022-04-13T13:06:29.196Z", + "state": "IDLE" + }, + { + "start": "2022-04-13T13:06:29.196Z", + "end": "2022-04-13T14:59:02.193Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T14:59:02.193Z", + "end": "2022-04-13T16:51:35.190Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "938976307338486810", + "game": "356875221078245376", + "start": "2022-05-08T16:56:51.869Z", + "end": "2022-05-08T23:36:36.004Z", + "events": [ + { + "start": "2022-05-08T16:56:51.869Z", + "end": "2022-05-08T18:36:47.902Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T18:36:47.902Z", + "end": "2022-05-08T20:16:43.935Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T20:16:43.935Z", + "end": "2022-05-08T21:56:39.968Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T21:56:39.968Z", + "end": "2022-05-08T23:36:36.001Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "625617695768437507", + "game": "356875221078245376", + "start": "2022-05-01T06:25:35.908Z", + "end": "2022-05-01T07:49:57.017Z", + "events": [ + { + "start": "2022-05-01T06:25:35.908Z", + "end": "2022-05-01T06:42:28.129Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T06:42:28.129Z", + "end": "2022-05-01T06:59:20.350Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T06:59:20.350Z", + "end": "2022-05-01T07:16:12.571Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T07:16:12.571Z", + "end": "2022-05-01T07:33:04.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T07:33:04.792Z", + "end": "2022-05-01T07:49:57.013Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "182925797752958092", + "game": "519644267212177418", + "start": "2022-07-06T17:13:18.963Z", + "end": "2022-07-06T23:58:40.556Z", + "events": [ + { + "start": "2022-07-06T17:13:18.963Z", + "end": "2022-07-06T23:58:40.556Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "385692164951394422", + "game": "530454325214969866", + "start": "2022-06-24T11:10:06.785Z", + "end": "2022-06-24T15:52:41.785Z", + "events": [ + { + "start": "2022-06-24T11:10:06.785Z", + "end": "2022-06-24T12:06:37.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T12:06:37.785Z", + "end": "2022-06-24T13:03:08.785Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-24T13:03:08.785Z", + "end": "2022-06-24T13:59:39.785Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T13:59:39.785Z", + "end": "2022-06-24T14:56:10.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-24T14:56:10.785Z", + "end": "2022-06-24T15:52:41.785Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "762163239408560283", + "game": "540120593576493057", + "start": "2022-05-26T03:10:47.961Z", + "end": "2022-05-26T06:07:22.418Z", + "events": [ + { + "start": "2022-05-26T03:10:47.961Z", + "end": "2022-05-26T06:07:22.418Z", + "state": "IDLE" + } + ] + }, + { + "user": "590467327095087095", + "game": "592976500802846750", + "start": "2022-05-03T09:33:07.823Z", + "end": "2022-05-03T13:11:41.418Z", + "events": [ + { + "start": "2022-05-03T09:33:07.823Z", + "end": "2022-05-03T10:45:59.021Z", + "state": "IDLE" + }, + { + "start": "2022-05-03T10:45:59.021Z", + "end": "2022-05-03T11:58:50.219Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T11:58:50.219Z", + "end": "2022-05-03T13:11:41.417Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "530454325214969866", + "start": "2022-06-29T11:35:20.740Z", + "end": "2022-06-29T12:15:22.618Z", + "events": [ + { + "start": "2022-06-29T11:35:20.740Z", + "end": "2022-06-29T11:48:41.366Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T11:48:41.366Z", + "end": "2022-06-29T12:02:01.992Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T12:02:01.992Z", + "end": "2022-06-29T12:15:22.618Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "182925797752958092", + "game": "553697181249437716", + "start": "2022-06-23T06:34:03.947Z", + "end": "2022-06-23T11:36:04.991Z", + "events": [ + { + "start": "2022-06-23T06:34:03.947Z", + "end": "2022-06-23T11:36:04.991Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "800318424708872602", + "game": "518088627234930688", + "start": "2022-06-03T07:53:51.461Z", + "end": "2022-06-03T13:21:21.297Z", + "events": [ + { + "start": "2022-06-03T07:53:51.461Z", + "end": "2022-06-03T13:21:21.297Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "658550407298256890", + "game": "576482762446602270", + "start": "2022-07-01T04:02:05.021Z", + "end": "2022-07-01T07:59:49.741Z", + "events": [ + { + "start": "2022-07-01T04:02:05.021Z", + "end": "2022-07-01T07:59:49.741Z", + "state": "IDLE" + } + ] + }, + { + "user": "881335427428668054", + "game": "542475118396309528", + "start": "2022-07-02T22:22:17.173Z", + "end": "2022-07-03T02:44:36.877Z", + "events": [ + { + "start": "2022-07-02T22:22:17.173Z", + "end": "2022-07-02T23:14:45.113Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T23:14:45.113Z", + "end": "2022-07-03T00:07:13.053Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T00:07:13.053Z", + "end": "2022-07-03T00:59:40.993Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-03T00:59:40.993Z", + "end": "2022-07-03T01:52:08.933Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T01:52:08.933Z", + "end": "2022-07-03T02:44:36.873Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "512789120234422301", + "start": "2022-07-11T21:10:30.784Z", + "end": "2022-07-12T04:05:54.236Z", + "events": [ + { + "start": "2022-07-11T21:10:30.784Z", + "end": "2022-07-11T22:54:21.647Z", + "state": "IDLE" + }, + { + "start": "2022-07-11T22:54:21.647Z", + "end": "2022-07-12T00:38:12.510Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T00:38:12.510Z", + "end": "2022-07-12T02:22:03.373Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T02:22:03.373Z", + "end": "2022-07-12T04:05:54.236Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "576482762446602270", + "start": "2022-05-22T21:21:40.562Z", + "end": "2022-05-22T22:15:16.083Z", + "events": [ + { + "start": "2022-05-22T21:21:40.562Z", + "end": "2022-05-22T22:15:16.083Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "517335360477493827", + "game": "530454325214969866", + "start": "2022-05-21T02:44:53.104Z", + "end": "2022-05-21T06:11:08.677Z", + "events": [ + { + "start": "2022-05-21T02:44:53.104Z", + "end": "2022-05-21T03:26:08.218Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T03:26:08.218Z", + "end": "2022-05-21T04:07:23.332Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T04:07:23.332Z", + "end": "2022-05-21T04:48:38.446Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T04:48:38.446Z", + "end": "2022-05-21T05:29:53.560Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T05:29:53.560Z", + "end": "2022-05-21T06:11:08.674Z", + "state": "IDLE" + } + ] + }, + { + "user": "881335427428668054", + "game": "530454325214969866", + "start": "2022-07-06T00:52:32.597Z", + "end": "2022-07-06T04:55:11.543Z", + "events": [ + { + "start": "2022-07-06T00:52:32.597Z", + "end": "2022-07-06T01:53:12.333Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T01:53:12.333Z", + "end": "2022-07-06T02:53:52.069Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T02:53:52.069Z", + "end": "2022-07-06T03:54:31.805Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T03:54:31.805Z", + "end": "2022-07-06T04:55:11.541Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "519644368735567873", + "start": "2022-07-07T19:45:29.389Z", + "end": "2022-07-08T01:07:37.042Z", + "events": [ + { + "start": "2022-07-07T19:45:29.389Z", + "end": "2022-07-07T21:32:51.940Z", + "state": "IDLE" + }, + { + "start": "2022-07-07T21:32:51.940Z", + "end": "2022-07-07T23:20:14.491Z", + "state": "IDLE" + }, + { + "start": "2022-07-07T23:20:14.491Z", + "end": "2022-07-08T01:07:37.042Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "572456126872944651", + "start": "2022-08-05T05:54:48.912Z", + "end": "2022-08-05T05:58:35.312Z", + "events": [ + { + "start": "2022-08-05T05:54:48.912Z", + "end": "2022-08-05T05:55:34.192Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T05:55:34.192Z", + "end": "2022-08-05T05:56:19.472Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T05:56:19.472Z", + "end": "2022-08-05T05:57:04.752Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T05:57:04.752Z", + "end": "2022-08-05T05:57:50.032Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T05:57:50.032Z", + "end": "2022-08-05T05:58:35.312Z", + "state": "IDLE" + } + ] + }, + { + "user": "800318424708872602", + "game": "560781100197216267", + "start": "2022-05-17T21:05:57.695Z", + "end": "2022-05-18T06:32:40.718Z", + "events": [ + { + "start": "2022-05-17T21:05:57.695Z", + "end": "2022-05-18T00:14:52.036Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-18T00:14:52.036Z", + "end": "2022-05-18T03:23:46.377Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T03:23:46.377Z", + "end": "2022-05-18T06:32:40.718Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "530454325214969866", + "start": "2022-05-25T21:00:58.455Z", + "end": "2022-05-26T06:35:06.731Z", + "events": [ + { + "start": "2022-05-25T21:00:58.455Z", + "end": "2022-05-26T01:48:02.593Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T01:48:02.593Z", + "end": "2022-05-26T06:35:06.731Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "318220875546522080", + "game": "356875221078245376", + "start": "2022-04-21T21:54:19.874Z", + "end": "2022-04-21T22:23:43.022Z", + "events": [ + { + "start": "2022-04-21T21:54:19.874Z", + "end": "2022-04-21T22:04:07.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T22:04:07.590Z", + "end": "2022-04-21T22:13:55.306Z", + "state": "IDLE" + }, + { + "start": "2022-04-21T22:13:55.306Z", + "end": "2022-04-21T22:23:43.022Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "535384357536399404", + "start": "2022-06-11T16:13:02.100Z", + "end": "2022-06-11T21:57:19.810Z", + "events": [ + { + "start": "2022-06-11T16:13:02.100Z", + "end": "2022-06-11T18:07:48.003Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T18:07:48.003Z", + "end": "2022-06-11T20:02:33.906Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-11T20:02:33.906Z", + "end": "2022-06-11T21:57:19.809Z", + "state": "IDLE" + } + ] + }, + { + "user": "424856688594618054", + "game": "520453007578628124", + "start": "2022-05-07T14:46:55.065Z", + "end": "2022-05-07T23:56:27.137Z", + "events": [ + { + "start": "2022-05-07T14:46:55.065Z", + "end": "2022-05-07T17:04:18.083Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-07T17:04:18.083Z", + "end": "2022-05-07T19:21:41.101Z", + "state": "IDLE" + }, + { + "start": "2022-05-07T19:21:41.101Z", + "end": "2022-05-07T21:39:04.119Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-07T21:39:04.119Z", + "end": "2022-05-07T23:56:27.137Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "356875221078245376", + "start": "2022-07-02T21:01:23.002Z", + "end": "2022-07-03T03:46:07.432Z", + "events": [ + { + "start": "2022-07-02T21:01:23.002Z", + "end": "2022-07-03T03:46:07.432Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "553697181249437716", + "start": "2022-05-24T13:31:44.435Z", + "end": "2022-05-24T18:44:14.025Z", + "events": [ + { + "start": "2022-05-24T13:31:44.435Z", + "end": "2022-05-24T14:34:14.353Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T14:34:14.353Z", + "end": "2022-05-24T15:36:44.271Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T15:36:44.271Z", + "end": "2022-05-24T16:39:14.189Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T16:39:14.189Z", + "end": "2022-05-24T17:41:44.107Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T17:41:44.107Z", + "end": "2022-05-24T18:44:14.025Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "535384357536399404", + "start": "2022-04-19T06:34:55.909Z", + "end": "2022-04-19T15:45:19.833Z", + "events": [ + { + "start": "2022-04-19T06:34:55.909Z", + "end": "2022-04-19T11:10:07.871Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T11:10:07.871Z", + "end": "2022-04-19T15:45:19.833Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "596421190780633864", + "game": "535384357536399404", + "start": "2022-04-30T16:40:11.490Z", + "end": "2022-04-30T23:59:22.234Z", + "events": [ + { + "start": "2022-04-30T16:40:11.490Z", + "end": "2022-04-30T23:59:22.234Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "872035310834814925", + "game": "592976500802846750", + "start": "2022-04-16T19:33:28.862Z", + "end": "2022-04-16T22:05:38.319Z", + "events": [ + { + "start": "2022-04-16T19:33:28.862Z", + "end": "2022-04-16T22:05:38.319Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "774637841058278398", + "game": "535869836748783616", + "start": "2022-05-01T14:37:22.966Z", + "end": "2022-05-01T19:29:09.590Z", + "events": [ + { + "start": "2022-05-01T14:37:22.966Z", + "end": "2022-05-01T15:50:19.622Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T15:50:19.622Z", + "end": "2022-05-01T17:03:16.278Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T17:03:16.278Z", + "end": "2022-05-01T18:16:12.934Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T18:16:12.934Z", + "end": "2022-05-01T19:29:09.590Z", + "state": "IDLE" + } + ] + }, + { + "user": "147480245458136084", + "game": "512789120234422301", + "start": "2022-06-03T21:54:47.324Z", + "end": "2022-06-04T07:13:03.986Z", + "events": [ + { + "start": "2022-06-03T21:54:47.324Z", + "end": "2022-06-04T01:00:52.878Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T01:00:52.878Z", + "end": "2022-06-04T04:06:58.432Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T04:06:58.432Z", + "end": "2022-06-04T07:13:03.986Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "535869836748783616", + "start": "2022-05-18T02:40:45.393Z", + "end": "2022-05-18T11:58:52.762Z", + "events": [ + { + "start": "2022-05-18T02:40:45.393Z", + "end": "2022-05-18T11:58:52.762Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "658550407298256890", + "game": "512789427462995988", + "start": "2022-06-01T17:32:36.753Z", + "end": "2022-06-02T00:57:11.917Z", + "events": [ + { + "start": "2022-06-01T17:32:36.753Z", + "end": "2022-06-02T00:57:11.917Z", + "state": "IDLE" + } + ] + }, + { + "user": "788818750251007268", + "game": "575412499399180288", + "start": "2022-05-24T00:02:20.464Z", + "end": "2022-05-24T04:09:59.103Z", + "events": [ + { + "start": "2022-05-24T00:02:20.464Z", + "end": "2022-05-24T01:04:15.123Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T01:04:15.123Z", + "end": "2022-05-24T02:06:09.782Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T02:06:09.782Z", + "end": "2022-05-24T03:08:04.441Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T03:08:04.441Z", + "end": "2022-05-24T04:09:59.100Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "356875221078245376", + "start": "2022-07-13T19:48:10.179Z", + "end": "2022-07-14T03:10:17.070Z", + "events": [ + { + "start": "2022-07-13T19:48:10.179Z", + "end": "2022-07-13T23:29:13.624Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T23:29:13.624Z", + "end": "2022-07-14T03:10:17.069Z", + "state": "IDLE" + } + ] + }, + { + "user": "568387317892070397", + "game": "549512435585908756", + "start": "2022-07-24T22:43:17.539Z", + "end": "2022-07-25T04:53:29.234Z", + "events": [ + { + "start": "2022-07-24T22:43:17.539Z", + "end": "2022-07-25T00:46:41.437Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-25T00:46:41.437Z", + "end": "2022-07-25T02:50:05.335Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T02:50:05.335Z", + "end": "2022-07-25T04:53:29.233Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "569253958967885828", + "start": "2022-07-06T14:03:27.317Z", + "end": "2022-07-06T23:06:47.224Z", + "events": [ + { + "start": "2022-07-06T14:03:27.317Z", + "end": "2022-07-06T17:04:33.952Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T17:04:33.952Z", + "end": "2022-07-06T20:05:40.587Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T20:05:40.587Z", + "end": "2022-07-06T23:06:47.222Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "512699108809637890", + "start": "2022-06-11T23:51:47.094Z", + "end": "2022-06-12T09:08:27.861Z", + "events": [ + { + "start": "2022-06-11T23:51:47.094Z", + "end": "2022-06-12T04:30:07.477Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T04:30:07.477Z", + "end": "2022-06-12T09:08:27.860Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "614380482620293151", + "start": "2022-07-23T17:28:58.593Z", + "end": "2022-07-23T21:06:39.580Z", + "events": [ + { + "start": "2022-07-23T17:28:58.593Z", + "end": "2022-07-23T18:41:32.255Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T18:41:32.255Z", + "end": "2022-07-23T19:54:05.917Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T19:54:05.917Z", + "end": "2022-07-23T21:06:39.579Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "518088627234930688", + "start": "2022-07-10T03:52:22.777Z", + "end": "2022-07-10T07:02:40.415Z", + "events": [ + { + "start": "2022-07-10T03:52:22.777Z", + "end": "2022-07-10T07:02:40.415Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "569008830701240340", + "start": "2022-06-14T06:34:58.202Z", + "end": "2022-06-14T09:29:21.997Z", + "events": [ + { + "start": "2022-06-14T06:34:58.202Z", + "end": "2022-06-14T09:29:21.997Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "385692164951394422", + "game": "512501896896970762", + "start": "2022-04-26T08:18:33.448Z", + "end": "2022-04-26T17:17:48.103Z", + "events": [ + { + "start": "2022-04-26T08:18:33.448Z", + "end": "2022-04-26T12:48:10.775Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-26T12:48:10.775Z", + "end": "2022-04-26T17:17:48.102Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "600708263053781983", + "game": "518088627234930688", + "start": "2022-06-04T05:05:58.267Z", + "end": "2022-06-04T07:18:56.617Z", + "events": [ + { + "start": "2022-06-04T05:05:58.267Z", + "end": "2022-06-04T06:12:27.442Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T06:12:27.442Z", + "end": "2022-06-04T07:18:56.617Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "528145079819436043", + "start": "2022-05-24T14:42:49.769Z", + "end": "2022-05-25T00:35:10.798Z", + "events": [ + { + "start": "2022-05-24T14:42:49.769Z", + "end": "2022-05-24T16:41:17.974Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T16:41:17.974Z", + "end": "2022-05-24T18:39:46.179Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T18:39:46.179Z", + "end": "2022-05-24T20:38:14.384Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T20:38:14.384Z", + "end": "2022-05-24T22:36:42.589Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T22:36:42.589Z", + "end": "2022-05-25T00:35:10.794Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302347517889336519", + "game": "597860020935327787", + "start": "2022-05-14T17:19:44.213Z", + "end": "2022-05-15T03:22:50.009Z", + "events": [ + { + "start": "2022-05-14T17:19:44.213Z", + "end": "2022-05-14T20:40:46.145Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T20:40:46.145Z", + "end": "2022-05-15T00:01:48.077Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T00:01:48.077Z", + "end": "2022-05-15T03:22:50.009Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "590467327095087095", + "game": "576482762446602270", + "start": "2022-06-06T09:22:33.418Z", + "end": "2022-06-06T16:37:06.449Z", + "events": [ + { + "start": "2022-06-06T09:22:33.418Z", + "end": "2022-06-06T10:49:28.024Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T10:49:28.024Z", + "end": "2022-06-06T12:16:22.630Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T12:16:22.630Z", + "end": "2022-06-06T13:43:17.236Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T13:43:17.236Z", + "end": "2022-06-06T15:10:11.842Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T15:10:11.842Z", + "end": "2022-06-06T16:37:06.448Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "550277544025522176", + "start": "2022-06-25T00:20:38.017Z", + "end": "2022-06-25T01:44:27.708Z", + "events": [ + { + "start": "2022-06-25T00:20:38.017Z", + "end": "2022-06-25T00:41:35.439Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T00:41:35.439Z", + "end": "2022-06-25T01:02:32.861Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T01:02:32.861Z", + "end": "2022-06-25T01:23:30.283Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T01:23:30.283Z", + "end": "2022-06-25T01:44:27.705Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "931211630078779300", + "game": "597588168178663434", + "start": "2022-06-21T16:49:31.704Z", + "end": "2022-06-21T19:36:57.348Z", + "events": [ + { + "start": "2022-06-21T16:49:31.704Z", + "end": "2022-06-21T19:36:57.348Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "530539422724200800", + "game": "526489929631531009", + "start": "2022-05-07T20:32:58.623Z", + "end": "2022-05-08T02:56:02.397Z", + "events": [ + { + "start": "2022-05-07T20:32:58.623Z", + "end": "2022-05-07T23:44:30.510Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-07T23:44:30.510Z", + "end": "2022-05-08T02:56:02.397Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "558547388583772201", + "start": "2022-06-23T19:45:42.933Z", + "end": "2022-06-24T05:04:45.547Z", + "events": [ + { + "start": "2022-06-23T19:45:42.933Z", + "end": "2022-06-24T00:25:14.240Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T00:25:14.240Z", + "end": "2022-06-24T05:04:45.547Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "569008830701240340", + "start": "2022-04-22T06:14:44.722Z", + "end": "2022-04-22T15:54:47.769Z", + "events": [ + { + "start": "2022-04-22T06:14:44.722Z", + "end": "2022-04-22T11:04:46.245Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T11:04:46.245Z", + "end": "2022-04-22T15:54:47.768Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "512789427462995988", + "start": "2022-07-25T06:49:14.581Z", + "end": "2022-07-25T12:25:07.941Z", + "events": [ + { + "start": "2022-07-25T06:49:14.581Z", + "end": "2022-07-25T08:13:12.921Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-25T08:13:12.921Z", + "end": "2022-07-25T09:37:11.261Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T09:37:11.261Z", + "end": "2022-07-25T11:01:09.601Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-25T11:01:09.601Z", + "end": "2022-07-25T12:25:07.941Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "576482762446602270", + "start": "2022-07-19T12:46:07.227Z", + "end": "2022-07-19T15:29:15.151Z", + "events": [ + { + "start": "2022-07-19T12:46:07.227Z", + "end": "2022-07-19T13:18:44.811Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T13:18:44.811Z", + "end": "2022-07-19T13:51:22.395Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T13:51:22.395Z", + "end": "2022-07-19T14:23:59.979Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T14:23:59.979Z", + "end": "2022-07-19T14:56:37.563Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T14:56:37.563Z", + "end": "2022-07-19T15:29:15.147Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "576482762446602270", + "start": "2022-06-16T09:35:16.875Z", + "end": "2022-06-16T19:16:31.290Z", + "events": [ + { + "start": "2022-06-16T09:35:16.875Z", + "end": "2022-06-16T11:31:31.758Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-16T11:31:31.758Z", + "end": "2022-06-16T13:27:46.641Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T13:27:46.641Z", + "end": "2022-06-16T15:24:01.524Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T15:24:01.524Z", + "end": "2022-06-16T17:20:16.407Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T17:20:16.407Z", + "end": "2022-06-16T19:16:31.290Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "636935635446628860", + "game": "512498684211232768", + "start": "2022-05-11T20:39:58.324Z", + "end": "2022-05-11T21:31:51.457Z", + "events": [ + { + "start": "2022-05-11T20:39:58.324Z", + "end": "2022-05-11T21:31:51.457Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "535384357536399404", + "start": "2022-05-04T08:56:09.867Z", + "end": "2022-05-04T17:07:23.468Z", + "events": [ + { + "start": "2022-05-04T08:56:09.867Z", + "end": "2022-05-04T13:01:46.667Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T13:01:46.667Z", + "end": "2022-05-04T17:07:23.467Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "512699108809637890", + "start": "2022-06-13T13:26:20.287Z", + "end": "2022-06-13T17:21:15.246Z", + "events": [ + { + "start": "2022-06-13T13:26:20.287Z", + "end": "2022-06-13T17:21:15.246Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "519644267212177418", + "start": "2022-06-19T01:35:43.349Z", + "end": "2022-06-19T05:22:36.162Z", + "events": [ + { + "start": "2022-06-19T01:35:43.349Z", + "end": "2022-06-19T05:22:36.162Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "523154344187789312", + "start": "2022-07-12T13:44:24.460Z", + "end": "2022-07-12T20:22:17.777Z", + "events": [ + { + "start": "2022-07-12T13:44:24.460Z", + "end": "2022-07-12T15:57:02.232Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T15:57:02.232Z", + "end": "2022-07-12T18:09:40.004Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T18:09:40.004Z", + "end": "2022-07-12T20:22:17.776Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "520453007578628124", + "start": "2022-05-30T13:30:10.455Z", + "end": "2022-05-30T23:08:12.668Z", + "events": [ + { + "start": "2022-05-30T13:30:10.455Z", + "end": "2022-05-30T18:19:11.561Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T18:19:11.561Z", + "end": "2022-05-30T23:08:12.667Z", + "state": "IDLE" + } + ] + }, + { + "user": "841397740041930984", + "game": "614380482620293151", + "start": "2022-05-28T15:11:19.193Z", + "end": "2022-05-28T19:51:57.652Z", + "events": [ + { + "start": "2022-05-28T15:11:19.193Z", + "end": "2022-05-28T16:44:52.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T16:44:52.012Z", + "end": "2022-05-28T18:18:24.831Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T18:18:24.831Z", + "end": "2022-05-28T19:51:57.650Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "700136079562375258", + "start": "2022-06-20T21:25:41.357Z", + "end": "2022-06-21T06:55:51.697Z", + "events": [ + { + "start": "2022-06-20T21:25:41.357Z", + "end": "2022-06-20T23:19:43.425Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T23:19:43.425Z", + "end": "2022-06-21T01:13:45.493Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T01:13:45.493Z", + "end": "2022-06-21T03:07:47.561Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T03:07:47.561Z", + "end": "2022-06-21T05:01:49.629Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T05:01:49.629Z", + "end": "2022-06-21T06:55:51.697Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "762163239408560283", + "game": "512699108809637890", + "start": "2022-05-29T07:12:48.630Z", + "end": "2022-05-29T10:15:38.088Z", + "events": [ + { + "start": "2022-05-29T07:12:48.630Z", + "end": "2022-05-29T07:49:22.521Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T07:49:22.521Z", + "end": "2022-05-29T08:25:56.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T08:25:56.412Z", + "end": "2022-05-29T09:02:30.303Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T09:02:30.303Z", + "end": "2022-05-29T09:39:04.194Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T09:39:04.194Z", + "end": "2022-05-29T10:15:38.085Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "540120593576493057", + "start": "2022-05-13T17:29:22.668Z", + "end": "2022-05-13T22:29:49.822Z", + "events": [ + { + "start": "2022-05-13T17:29:22.668Z", + "end": "2022-05-13T18:29:28.098Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-13T18:29:28.098Z", + "end": "2022-05-13T19:29:33.528Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-13T19:29:33.528Z", + "end": "2022-05-13T20:29:38.958Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-13T20:29:38.958Z", + "end": "2022-05-13T21:29:44.388Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-13T21:29:44.388Z", + "end": "2022-05-13T22:29:49.818Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "575412499399180288", + "start": "2022-05-26T23:31:42.938Z", + "end": "2022-05-27T09:15:39.891Z", + "events": [ + { + "start": "2022-05-26T23:31:42.938Z", + "end": "2022-05-27T01:57:42.176Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T01:57:42.176Z", + "end": "2022-05-27T04:23:41.414Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T04:23:41.414Z", + "end": "2022-05-27T06:49:40.652Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-27T06:49:40.652Z", + "end": "2022-05-27T09:15:39.890Z", + "state": "IDLE" + } + ] + }, + { + "user": "517335360477493827", + "game": "520453007578628124", + "start": "2022-05-04T15:29:02.997Z", + "end": "2022-05-04T21:49:15.420Z", + "events": [ + { + "start": "2022-05-04T15:29:02.997Z", + "end": "2022-05-04T18:39:09.208Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-04T18:39:09.208Z", + "end": "2022-05-04T21:49:15.419Z", + "state": "IDLE" + } + ] + }, + { + "user": "788818750251007268", + "game": "549512435585908756", + "start": "2022-05-24T18:07:15.257Z", + "end": "2022-05-24T21:27:02.903Z", + "events": [ + { + "start": "2022-05-24T18:07:15.257Z", + "end": "2022-05-24T18:57:12.168Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T18:57:12.168Z", + "end": "2022-05-24T19:47:09.079Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T19:47:09.079Z", + "end": "2022-05-24T20:37:05.990Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T20:37:05.990Z", + "end": "2022-05-24T21:27:02.901Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "123137660023366590", + "game": "592976500802846750", + "start": "2022-07-16T18:54:44.917Z", + "end": "2022-07-17T04:01:14.907Z", + "events": [ + { + "start": "2022-07-16T18:54:44.917Z", + "end": "2022-07-16T21:11:22.414Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-16T21:11:22.414Z", + "end": "2022-07-16T23:27:59.911Z", + "state": "IDLE" + }, + { + "start": "2022-07-16T23:27:59.911Z", + "end": "2022-07-17T01:44:37.408Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T01:44:37.408Z", + "end": "2022-07-17T04:01:14.905Z", + "state": "IDLE" + } + ] + }, + { + "user": "774637841058278398", + "game": "523154344187789312", + "start": "2022-06-01T05:39:11.882Z", + "end": "2022-06-01T08:58:40.019Z", + "events": [ + { + "start": "2022-06-01T05:39:11.882Z", + "end": "2022-06-01T07:18:55.950Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T07:18:55.950Z", + "end": "2022-06-01T08:58:40.018Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "512498684211232768", + "start": "2022-07-07T22:18:09.229Z", + "end": "2022-07-07T23:07:03.767Z", + "events": [ + { + "start": "2022-07-07T22:18:09.229Z", + "end": "2022-07-07T23:07:03.767Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "494763633796983404", + "game": "554573307161214977", + "start": "2022-04-28T08:43:48.064Z", + "end": "2022-04-28T13:10:39.037Z", + "events": [ + { + "start": "2022-04-28T08:43:48.064Z", + "end": "2022-04-28T13:10:39.037Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "126384926926158511", + "game": "554573307161214977", + "start": "2022-05-18T15:47:10.600Z", + "end": "2022-05-18T19:38:23.931Z", + "events": [ + { + "start": "2022-05-18T15:47:10.600Z", + "end": "2022-05-18T17:42:47.265Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T17:42:47.265Z", + "end": "2022-05-18T19:38:23.930Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "530454325214969866", + "start": "2022-07-26T10:36:01.746Z", + "end": "2022-07-26T18:56:21.064Z", + "events": [ + { + "start": "2022-07-26T10:36:01.746Z", + "end": "2022-07-26T18:56:21.064Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "565341641427124244", + "start": "2022-07-22T07:25:50.641Z", + "end": "2022-07-22T17:06:26.777Z", + "events": [ + { + "start": "2022-07-22T07:25:50.641Z", + "end": "2022-07-22T09:21:57.868Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T09:21:57.868Z", + "end": "2022-07-22T11:18:05.095Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T11:18:05.095Z", + "end": "2022-07-22T13:14:12.322Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T13:14:12.322Z", + "end": "2022-07-22T15:10:19.549Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T15:10:19.549Z", + "end": "2022-07-22T17:06:26.776Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "510690749854514547", + "game": "597860020935327787", + "start": "2022-07-13T20:42:25.877Z", + "end": "2022-07-14T01:28:04.971Z", + "events": [ + { + "start": "2022-07-13T20:42:25.877Z", + "end": "2022-07-13T21:53:50.650Z", + "state": "IDLE" + }, + { + "start": "2022-07-13T21:53:50.650Z", + "end": "2022-07-13T23:05:15.423Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-13T23:05:15.423Z", + "end": "2022-07-14T00:16:40.196Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-14T00:16:40.196Z", + "end": "2022-07-14T01:28:04.969Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "360264570671216445", + "game": "569008830701240340", + "start": "2022-06-26T03:52:43.069Z", + "end": "2022-06-26T05:42:00.770Z", + "events": [ + { + "start": "2022-06-26T03:52:43.069Z", + "end": "2022-06-26T04:14:34.609Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-26T04:14:34.609Z", + "end": "2022-06-26T04:36:26.149Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T04:36:26.149Z", + "end": "2022-06-26T04:58:17.689Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T04:58:17.689Z", + "end": "2022-06-26T05:20:09.229Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T05:20:09.229Z", + "end": "2022-06-26T05:42:00.769Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "518088627234930688", + "start": "2022-08-03T21:23:32.471Z", + "end": "2022-08-04T01:20:31.872Z", + "events": [ + { + "start": "2022-08-03T21:23:32.471Z", + "end": "2022-08-03T22:22:47.321Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T22:22:47.321Z", + "end": "2022-08-03T23:22:02.171Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T23:22:02.171Z", + "end": "2022-08-04T00:21:17.021Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T00:21:17.021Z", + "end": "2022-08-04T01:20:31.871Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "525940629729163286", + "game": "597860020935327787", + "start": "2022-05-20T08:45:11.523Z", + "end": "2022-05-20T15:14:43.416Z", + "events": [ + { + "start": "2022-05-20T08:45:11.523Z", + "end": "2022-05-20T10:55:02.154Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-20T10:55:02.154Z", + "end": "2022-05-20T13:04:52.785Z", + "state": "IDLE" + }, + { + "start": "2022-05-20T13:04:52.785Z", + "end": "2022-05-20T15:14:43.416Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302714757313826277", + "game": "597588168178663434", + "start": "2022-06-24T17:19:34.323Z", + "end": "2022-06-24T18:48:19.268Z", + "events": [ + { + "start": "2022-06-24T17:19:34.323Z", + "end": "2022-06-24T18:48:19.268Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302679892350666678", + "game": "512498684211232768", + "start": "2022-04-26T12:26:36.256Z", + "end": "2022-04-26T13:45:50.070Z", + "events": [ + { + "start": "2022-04-26T12:26:36.256Z", + "end": "2022-04-26T12:46:24.709Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T12:46:24.709Z", + "end": "2022-04-26T13:06:13.162Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T13:06:13.162Z", + "end": "2022-04-26T13:26:01.615Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T13:26:01.615Z", + "end": "2022-04-26T13:45:50.068Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "636935635446628860", + "game": "576482762446602270", + "start": "2022-05-18T03:18:00.575Z", + "end": "2022-05-18T11:12:32.656Z", + "events": [ + { + "start": "2022-05-18T03:18:00.575Z", + "end": "2022-05-18T04:52:54.991Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-18T04:52:54.991Z", + "end": "2022-05-18T06:27:49.407Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T06:27:49.407Z", + "end": "2022-05-18T08:02:43.823Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T08:02:43.823Z", + "end": "2022-05-18T09:37:38.239Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T09:37:38.239Z", + "end": "2022-05-18T11:12:32.655Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "518088627234930688", + "start": "2022-08-02T04:28:33.547Z", + "end": "2022-08-02T10:19:34.288Z", + "events": [ + { + "start": "2022-08-02T04:28:33.547Z", + "end": "2022-08-02T07:24:03.917Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T07:24:03.917Z", + "end": "2022-08-02T10:19:34.287Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "540120593576493057", + "start": "2022-06-25T16:35:47.660Z", + "end": "2022-06-25T23:17:26.041Z", + "events": [ + { + "start": "2022-06-25T16:35:47.660Z", + "end": "2022-06-25T17:56:07.336Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T17:56:07.336Z", + "end": "2022-06-25T19:16:27.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T19:16:27.012Z", + "end": "2022-06-25T20:36:46.688Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T20:36:46.688Z", + "end": "2022-06-25T21:57:06.364Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T21:57:06.364Z", + "end": "2022-06-25T23:17:26.040Z", + "state": "IDLE" + } + ] + }, + { + "user": "495724335127362694", + "game": "553697181249437716", + "start": "2022-05-09T16:19:57.247Z", + "end": "2022-05-09T17:01:07.628Z", + "events": [ + { + "start": "2022-05-09T16:19:57.247Z", + "end": "2022-05-09T16:30:14.842Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T16:30:14.842Z", + "end": "2022-05-09T16:40:32.437Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T16:40:32.437Z", + "end": "2022-05-09T16:50:50.032Z", + "state": "IDLE" + }, + { + "start": "2022-05-09T16:50:50.032Z", + "end": "2022-05-09T17:01:07.627Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "731522398939920723", + "game": "542474758835535872", + "start": "2022-06-28T09:35:20.855Z", + "end": "2022-06-28T14:13:50.417Z", + "events": [ + { + "start": "2022-06-28T09:35:20.855Z", + "end": "2022-06-28T10:44:58.245Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T10:44:58.245Z", + "end": "2022-06-28T11:54:35.635Z", + "state": "IDLE" + }, + { + "start": "2022-06-28T11:54:35.635Z", + "end": "2022-06-28T13:04:13.025Z", + "state": "IDLE" + }, + { + "start": "2022-06-28T13:04:13.025Z", + "end": "2022-06-28T14:13:50.415Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "495724335127362694", + "game": "512699108809637890", + "start": "2022-08-02T18:32:54.672Z", + "end": "2022-08-02T18:34:05.613Z", + "events": [ + { + "start": "2022-08-02T18:32:54.672Z", + "end": "2022-08-02T18:33:18.319Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T18:33:18.319Z", + "end": "2022-08-02T18:33:41.966Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T18:33:41.966Z", + "end": "2022-08-02T18:34:05.613Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "565341641427124244", + "start": "2022-06-09T19:19:17.671Z", + "end": "2022-06-10T03:18:51.879Z", + "events": [ + { + "start": "2022-06-09T19:19:17.671Z", + "end": "2022-06-09T21:19:11.223Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-09T21:19:11.223Z", + "end": "2022-06-09T23:19:04.775Z", + "state": "IDLE" + }, + { + "start": "2022-06-09T23:19:04.775Z", + "end": "2022-06-10T01:18:58.327Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-10T01:18:58.327Z", + "end": "2022-06-10T03:18:51.879Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "575412499399180288", + "start": "2022-07-17T12:22:20.687Z", + "end": "2022-07-17T16:34:35.357Z", + "events": [ + { + "start": "2022-07-17T12:22:20.687Z", + "end": "2022-07-17T13:25:24.354Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T13:25:24.354Z", + "end": "2022-07-17T14:28:28.021Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-17T14:28:28.021Z", + "end": "2022-07-17T15:31:31.688Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-17T15:31:31.688Z", + "end": "2022-07-17T16:34:35.355Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "541104083732114799", + "game": "512789343157485602", + "start": "2022-06-01T01:03:40.832Z", + "end": "2022-06-01T04:04:57.178Z", + "events": [ + { + "start": "2022-06-01T01:03:40.832Z", + "end": "2022-06-01T02:04:06.280Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T02:04:06.280Z", + "end": "2022-06-01T03:04:31.728Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-01T03:04:31.728Z", + "end": "2022-06-01T04:04:57.176Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "713444659295913502", + "game": "614448244260339712", + "start": "2022-04-28T01:09:54.771Z", + "end": "2022-04-28T02:28:18.745Z", + "events": [ + { + "start": "2022-04-28T01:09:54.771Z", + "end": "2022-04-28T01:25:35.565Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T01:25:35.565Z", + "end": "2022-04-28T01:41:16.359Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T01:41:16.359Z", + "end": "2022-04-28T01:56:57.153Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-28T01:56:57.153Z", + "end": "2022-04-28T02:12:37.947Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-28T02:12:37.947Z", + "end": "2022-04-28T02:28:18.741Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "553697181249437716", + "start": "2022-05-12T21:39:52.310Z", + "end": "2022-05-13T00:05:30.066Z", + "events": [ + { + "start": "2022-05-12T21:39:52.310Z", + "end": "2022-05-13T00:05:30.066Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "430732724825949756", + "game": "554921822626381879", + "start": "2022-04-14T00:50:06.509Z", + "end": "2022-04-14T02:32:10.715Z", + "events": [ + { + "start": "2022-04-14T00:50:06.509Z", + "end": "2022-04-14T01:10:31.350Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T01:10:31.350Z", + "end": "2022-04-14T01:30:56.191Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T01:30:56.191Z", + "end": "2022-04-14T01:51:21.032Z", + "state": "IDLE" + }, + { + "start": "2022-04-14T01:51:21.032Z", + "end": "2022-04-14T02:11:45.873Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T02:11:45.873Z", + "end": "2022-04-14T02:32:10.714Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "576482762446602270", + "start": "2022-07-21T04:11:13.700Z", + "end": "2022-07-21T10:55:32.531Z", + "events": [ + { + "start": "2022-07-21T04:11:13.700Z", + "end": "2022-07-21T10:55:32.531Z", + "state": "IDLE" + } + ] + }, + { + "user": "302714757313826277", + "game": "520453007578628124", + "start": "2022-08-06T15:54:21.630Z", + "end": "2022-08-06T17:31:44.696Z", + "events": [ + { + "start": "2022-08-06T15:54:21.630Z", + "end": "2022-08-06T16:43:03.163Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T16:43:03.163Z", + "end": "2022-08-06T17:31:44.696Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "900234800332446962", + "game": "588739017718366208", + "start": "2022-06-06T09:52:50.641Z", + "end": "2022-06-06T15:37:45.149Z", + "events": [ + { + "start": "2022-06-06T09:52:50.641Z", + "end": "2022-06-06T15:37:45.149Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "264503060524837708", + "game": "508057374875975682", + "start": "2022-04-17T14:41:50.052Z", + "end": "2022-04-17T16:18:41.991Z", + "events": [ + { + "start": "2022-04-17T14:41:50.052Z", + "end": "2022-04-17T15:14:07.365Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T15:14:07.365Z", + "end": "2022-04-17T15:46:24.678Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T15:46:24.678Z", + "end": "2022-04-17T16:18:41.991Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "268139232276871676", + "game": "550277544025522176", + "start": "2022-05-08T00:47:11.663Z", + "end": "2022-05-08T03:52:00.696Z", + "events": [ + { + "start": "2022-05-08T00:47:11.663Z", + "end": "2022-05-08T02:19:36.179Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T02:19:36.179Z", + "end": "2022-05-08T03:52:00.695Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "623295654897148670", + "game": "614380482620293151", + "start": "2022-07-17T12:08:00.459Z", + "end": "2022-07-17T16:05:29.437Z", + "events": [ + { + "start": "2022-07-17T12:08:00.459Z", + "end": "2022-07-17T14:06:44.948Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T14:06:44.948Z", + "end": "2022-07-17T16:05:29.437Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "715446191320920764", + "game": "558547388583772201", + "start": "2022-05-21T02:28:56.833Z", + "end": "2022-05-21T03:16:16.034Z", + "events": [ + { + "start": "2022-05-21T02:28:56.833Z", + "end": "2022-05-21T02:40:46.633Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T02:40:46.633Z", + "end": "2022-05-21T02:52:36.433Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T02:52:36.433Z", + "end": "2022-05-21T03:04:26.233Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T03:04:26.233Z", + "end": "2022-05-21T03:16:16.033Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "198010595767135394", + "game": "542474758835535872", + "start": "2022-06-15T04:36:05.509Z", + "end": "2022-06-15T08:50:02.391Z", + "events": [ + { + "start": "2022-06-15T04:36:05.509Z", + "end": "2022-06-15T06:00:44.469Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T06:00:44.469Z", + "end": "2022-06-15T07:25:23.429Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T07:25:23.429Z", + "end": "2022-06-15T08:50:02.389Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "841397740041930984", + "game": "520453007578628124", + "start": "2022-07-22T05:23:59.446Z", + "end": "2022-07-22T12:32:10.041Z", + "events": [ + { + "start": "2022-07-22T05:23:59.446Z", + "end": "2022-07-22T12:32:10.041Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "597588168178663434", + "start": "2022-07-05T11:05:17.304Z", + "end": "2022-07-05T13:18:19.122Z", + "events": [ + { + "start": "2022-07-05T11:05:17.304Z", + "end": "2022-07-05T11:49:37.910Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-05T11:49:37.910Z", + "end": "2022-07-05T12:33:58.516Z", + "state": "IDLE" + }, + { + "start": "2022-07-05T12:33:58.516Z", + "end": "2022-07-05T13:18:19.122Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "554921822626381879", + "start": "2022-05-03T16:40:51.956Z", + "end": "2022-05-03T21:17:40.326Z", + "events": [ + { + "start": "2022-05-03T16:40:51.956Z", + "end": "2022-05-03T17:50:04.048Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T17:50:04.048Z", + "end": "2022-05-03T18:59:16.140Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T18:59:16.140Z", + "end": "2022-05-03T20:08:28.232Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-03T20:08:28.232Z", + "end": "2022-05-03T21:17:40.324Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "268139232276871676", + "game": "520462578061803588", + "start": "2022-04-21T08:04:42.589Z", + "end": "2022-04-21T11:59:07.553Z", + "events": [ + { + "start": "2022-04-21T08:04:42.589Z", + "end": "2022-04-21T11:59:07.553Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "614380482620293151", + "start": "2022-05-17T19:13:19.234Z", + "end": "2022-05-18T04:30:26.819Z", + "events": [ + { + "start": "2022-05-17T19:13:19.234Z", + "end": "2022-05-17T21:32:36.130Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T21:32:36.130Z", + "end": "2022-05-17T23:51:53.026Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-17T23:51:53.026Z", + "end": "2022-05-18T02:11:09.922Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T02:11:09.922Z", + "end": "2022-05-18T04:30:26.818Z", + "state": "IDLE" + } + ] + }, + { + "user": "565021137482980984", + "game": "550277544025522176", + "start": "2022-05-04T04:09:54.439Z", + "end": "2022-05-04T10:54:54.806Z", + "events": [ + { + "start": "2022-05-04T04:09:54.439Z", + "end": "2022-05-04T05:30:54.512Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T05:30:54.512Z", + "end": "2022-05-04T06:51:54.585Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T06:51:54.585Z", + "end": "2022-05-04T08:12:54.658Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T08:12:54.658Z", + "end": "2022-05-04T09:33:54.731Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T09:33:54.731Z", + "end": "2022-05-04T10:54:54.804Z", + "state": "IDLE" + } + ] + }, + { + "user": "565021137482980984", + "game": "558547388583772201", + "start": "2022-06-21T22:28:12.330Z", + "end": "2022-06-22T07:27:53.121Z", + "events": [ + { + "start": "2022-06-21T22:28:12.330Z", + "end": "2022-06-22T01:28:05.927Z", + "state": "IDLE" + }, + { + "start": "2022-06-22T01:28:05.927Z", + "end": "2022-06-22T04:27:59.524Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T04:27:59.524Z", + "end": "2022-06-22T07:27:53.121Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "541104083732114799", + "game": "550277544025522176", + "start": "2022-06-04T13:57:43.523Z", + "end": "2022-06-04T21:36:47.414Z", + "events": [ + { + "start": "2022-06-04T13:57:43.523Z", + "end": "2022-06-04T15:52:29.495Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T15:52:29.495Z", + "end": "2022-06-04T17:47:15.467Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T17:47:15.467Z", + "end": "2022-06-04T19:42:01.439Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T19:42:01.439Z", + "end": "2022-06-04T21:36:47.411Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "569253958967885828", + "start": "2022-07-02T10:09:32.376Z", + "end": "2022-07-02T14:57:39.108Z", + "events": [ + { + "start": "2022-07-02T10:09:32.376Z", + "end": "2022-07-02T11:45:34.620Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T11:45:34.620Z", + "end": "2022-07-02T13:21:36.864Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T13:21:36.864Z", + "end": "2022-07-02T14:57:39.108Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "542075586886107149", + "start": "2022-05-30T02:55:17.658Z", + "end": "2022-05-30T06:19:16.997Z", + "events": [ + { + "start": "2022-05-30T02:55:17.658Z", + "end": "2022-05-30T03:36:05.525Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T03:36:05.525Z", + "end": "2022-05-30T04:16:53.392Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T04:16:53.392Z", + "end": "2022-05-30T04:57:41.259Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T04:57:41.259Z", + "end": "2022-05-30T05:38:29.126Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T05:38:29.126Z", + "end": "2022-05-30T06:19:16.993Z", + "state": "IDLE" + } + ] + }, + { + "user": "725502702868293700", + "game": "535869836748783616", + "start": "2022-06-30T00:39:15.359Z", + "end": "2022-06-30T01:48:36.741Z", + "events": [ + { + "start": "2022-06-30T00:39:15.359Z", + "end": "2022-06-30T01:48:36.741Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "519644368735567873", + "start": "2022-04-30T17:06:54.937Z", + "end": "2022-04-30T21:42:32.024Z", + "events": [ + { + "start": "2022-04-30T17:06:54.937Z", + "end": "2022-04-30T21:42:32.024Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302714757313826277", + "game": "512498684211232768", + "start": "2022-07-10T09:14:04.061Z", + "end": "2022-07-10T15:26:04.246Z", + "events": [ + { + "start": "2022-07-10T09:14:04.061Z", + "end": "2022-07-10T10:28:28.098Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T10:28:28.098Z", + "end": "2022-07-10T11:42:52.135Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T11:42:52.135Z", + "end": "2022-07-10T12:57:16.172Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-10T12:57:16.172Z", + "end": "2022-07-10T14:11:40.209Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T14:11:40.209Z", + "end": "2022-07-10T15:26:04.246Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "553697181249437716", + "start": "2022-05-24T18:29:01.184Z", + "end": "2022-05-24T22:45:52.940Z", + "events": [ + { + "start": "2022-05-24T18:29:01.184Z", + "end": "2022-05-24T22:45:52.940Z", + "state": "IDLE" + } + ] + }, + { + "user": "268139232276871676", + "game": "511619499053678668", + "start": "2022-05-24T06:42:09.475Z", + "end": "2022-05-24T10:50:03.598Z", + "events": [ + { + "start": "2022-05-24T06:42:09.475Z", + "end": "2022-05-24T08:04:47.516Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T08:04:47.516Z", + "end": "2022-05-24T09:27:25.557Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T09:27:25.557Z", + "end": "2022-05-24T10:50:03.598Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "535384357536399404", + "start": "2022-04-17T07:11:41.586Z", + "end": "2022-04-17T10:36:59.896Z", + "events": [ + { + "start": "2022-04-17T07:11:41.586Z", + "end": "2022-04-17T08:20:07.689Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T08:20:07.689Z", + "end": "2022-04-17T09:28:33.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T09:28:33.792Z", + "end": "2022-04-17T10:36:59.895Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "600708263053781983", + "game": "614380482620293151", + "start": "2022-06-13T08:31:24.486Z", + "end": "2022-06-13T17:10:05.484Z", + "events": [ + { + "start": "2022-06-13T08:31:24.486Z", + "end": "2022-06-13T17:10:05.484Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "519644267212177418", + "start": "2022-06-17T14:57:33.914Z", + "end": "2022-06-17T17:04:31.990Z", + "events": [ + { + "start": "2022-06-17T14:57:33.914Z", + "end": "2022-06-17T17:04:31.990Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "356875221078245376", + "start": "2022-08-01T14:59:50.962Z", + "end": "2022-08-01T17:26:15.766Z", + "events": [ + { + "start": "2022-08-01T14:59:50.962Z", + "end": "2022-08-01T15:36:27.163Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T15:36:27.163Z", + "end": "2022-08-01T16:13:03.364Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T16:13:03.364Z", + "end": "2022-08-01T16:49:39.565Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-01T16:49:39.565Z", + "end": "2022-08-01T17:26:15.766Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "608700383891121851", + "game": "554573307161214977", + "start": "2022-07-23T19:37:56.758Z", + "end": "2022-07-24T05:12:00.806Z", + "events": [ + { + "start": "2022-07-23T19:37:56.758Z", + "end": "2022-07-24T00:24:58.782Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-24T00:24:58.782Z", + "end": "2022-07-24T05:12:00.806Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "526489929631531009", + "start": "2022-07-20T02:02:37.698Z", + "end": "2022-07-20T07:49:20.876Z", + "events": [ + { + "start": "2022-07-20T02:02:37.698Z", + "end": "2022-07-20T03:29:18.492Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T03:29:18.492Z", + "end": "2022-07-20T04:55:59.286Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T04:55:59.286Z", + "end": "2022-07-20T06:22:40.080Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T06:22:40.080Z", + "end": "2022-07-20T07:49:20.874Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "264503060524837708", + "game": "518088627234930688", + "start": "2022-06-16T08:28:52.388Z", + "end": "2022-06-16T15:02:40.735Z", + "events": [ + { + "start": "2022-06-16T08:28:52.388Z", + "end": "2022-06-16T15:02:40.735Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "576482762446602270", + "start": "2022-06-26T16:01:01.017Z", + "end": "2022-06-26T23:59:58.714Z", + "events": [ + { + "start": "2022-06-26T16:01:01.017Z", + "end": "2022-06-26T18:00:45.441Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T18:00:45.441Z", + "end": "2022-06-26T20:00:29.865Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T20:00:29.865Z", + "end": "2022-06-26T22:00:14.289Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T22:00:14.289Z", + "end": "2022-06-26T23:59:58.713Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "520462578061803588", + "start": "2022-05-03T16:02:28.429Z", + "end": "2022-05-03T16:18:14.827Z", + "events": [ + { + "start": "2022-05-03T16:02:28.429Z", + "end": "2022-05-03T16:05:37.708Z", + "state": "IDLE" + }, + { + "start": "2022-05-03T16:05:37.708Z", + "end": "2022-05-03T16:08:46.987Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T16:08:46.987Z", + "end": "2022-05-03T16:11:56.266Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T16:11:56.266Z", + "end": "2022-05-03T16:15:05.545Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T16:15:05.545Z", + "end": "2022-05-03T16:18:14.824Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "715446191320920764", + "game": "614380482620293151", + "start": "2022-05-31T19:48:20.053Z", + "end": "2022-06-01T05:12:22.823Z", + "events": [ + { + "start": "2022-05-31T19:48:20.053Z", + "end": "2022-05-31T21:41:08.607Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T21:41:08.607Z", + "end": "2022-05-31T23:33:57.161Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T23:33:57.161Z", + "end": "2022-06-01T01:26:45.715Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T01:26:45.715Z", + "end": "2022-06-01T03:19:34.269Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T03:19:34.269Z", + "end": "2022-06-01T05:12:22.823Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "958598056500699208", + "game": "512699108809637890", + "start": "2022-04-27T14:49:53.454Z", + "end": "2022-04-27T18:42:35.662Z", + "events": [ + { + "start": "2022-04-27T14:49:53.454Z", + "end": "2022-04-27T18:42:35.662Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "453350270016457959", + "game": "550277544025522176", + "start": "2022-07-19T06:32:33.464Z", + "end": "2022-07-19T09:08:44.041Z", + "events": [ + { + "start": "2022-07-19T06:32:33.464Z", + "end": "2022-07-19T07:50:38.752Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T07:50:38.752Z", + "end": "2022-07-19T09:08:44.040Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "360264570671216445", + "game": "614380482620293151", + "start": "2022-06-17T18:18:19.939Z", + "end": "2022-06-17T21:55:36.405Z", + "events": [ + { + "start": "2022-06-17T18:18:19.939Z", + "end": "2022-06-17T19:01:47.232Z", + "state": "IDLE" + }, + { + "start": "2022-06-17T19:01:47.232Z", + "end": "2022-06-17T19:45:14.525Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T19:45:14.525Z", + "end": "2022-06-17T20:28:41.818Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T20:28:41.818Z", + "end": "2022-06-17T21:12:09.111Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-17T21:12:09.111Z", + "end": "2022-06-17T21:55:36.404Z", + "state": "IDLE" + } + ] + }, + { + "user": "494763633796983404", + "game": "535869836748783616", + "start": "2022-07-17T14:17:53.419Z", + "end": "2022-07-17T14:40:07.962Z", + "events": [ + { + "start": "2022-07-17T14:17:53.419Z", + "end": "2022-07-17T14:23:27.054Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T14:23:27.054Z", + "end": "2022-07-17T14:29:00.689Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T14:29:00.689Z", + "end": "2022-07-17T14:34:34.324Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-17T14:34:34.324Z", + "end": "2022-07-17T14:40:07.959Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "355708392202112685", + "game": "550277544025522176", + "start": "2022-06-06T11:07:38.689Z", + "end": "2022-06-06T17:53:18.452Z", + "events": [ + { + "start": "2022-06-06T11:07:38.689Z", + "end": "2022-06-06T13:22:51.943Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T13:22:51.943Z", + "end": "2022-06-06T15:38:05.197Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T15:38:05.197Z", + "end": "2022-06-06T17:53:18.451Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "520462578061803588", + "start": "2022-04-21T09:24:24.353Z", + "end": "2022-04-21T10:58:18.598Z", + "events": [ + { + "start": "2022-04-21T09:24:24.353Z", + "end": "2022-04-21T09:47:52.914Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T09:47:52.914Z", + "end": "2022-04-21T10:11:21.475Z", + "state": "IDLE" + }, + { + "start": "2022-04-21T10:11:21.475Z", + "end": "2022-04-21T10:34:50.036Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T10:34:50.036Z", + "end": "2022-04-21T10:58:18.597Z", + "state": "IDLE" + } + ] + }, + { + "user": "302714757313826277", + "game": "512501896896970762", + "start": "2022-07-02T23:40:27.289Z", + "end": "2022-07-03T00:03:03.200Z", + "events": [ + { + "start": "2022-07-02T23:40:27.289Z", + "end": "2022-07-02T23:46:06.266Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T23:46:06.266Z", + "end": "2022-07-02T23:51:45.243Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T23:51:45.243Z", + "end": "2022-07-02T23:57:24.220Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T23:57:24.220Z", + "end": "2022-07-03T00:03:03.197Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "625617695768437507", + "game": "523154344187789312", + "start": "2022-05-27T14:11:43.342Z", + "end": "2022-05-27T21:28:50.929Z", + "events": [ + { + "start": "2022-05-27T14:11:43.342Z", + "end": "2022-05-27T21:28:50.929Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "512498684211232768", + "start": "2022-05-15T09:22:20.607Z", + "end": "2022-05-15T12:47:15.747Z", + "events": [ + { + "start": "2022-05-15T09:22:20.607Z", + "end": "2022-05-15T10:30:38.987Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T10:30:38.987Z", + "end": "2022-05-15T11:38:57.367Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T11:38:57.367Z", + "end": "2022-05-15T12:47:15.747Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "614448244260339712", + "start": "2022-04-26T14:32:03.237Z", + "end": "2022-04-27T00:22:49.253Z", + "events": [ + { + "start": "2022-04-26T14:32:03.237Z", + "end": "2022-04-26T17:48:58.575Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T17:48:58.575Z", + "end": "2022-04-26T21:05:53.913Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T21:05:53.913Z", + "end": "2022-04-27T00:22:49.251Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "538658792298239054", + "game": "572456126872944651", + "start": "2022-08-04T08:23:28.341Z", + "end": "2022-08-04T09:42:13.444Z", + "events": [ + { + "start": "2022-08-04T08:23:28.341Z", + "end": "2022-08-04T08:39:13.361Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-04T08:39:13.361Z", + "end": "2022-08-04T08:54:58.381Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T08:54:58.381Z", + "end": "2022-08-04T09:10:43.401Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T09:10:43.401Z", + "end": "2022-08-04T09:26:28.421Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T09:26:28.421Z", + "end": "2022-08-04T09:42:13.441Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "614380482620293151", + "start": "2022-04-27T05:09:48.762Z", + "end": "2022-04-27T11:40:19.273Z", + "events": [ + { + "start": "2022-04-27T05:09:48.762Z", + "end": "2022-04-27T06:27:54.864Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T06:27:54.864Z", + "end": "2022-04-27T07:46:00.966Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T07:46:00.966Z", + "end": "2022-04-27T09:04:07.068Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T09:04:07.068Z", + "end": "2022-04-27T10:22:13.170Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T10:22:13.170Z", + "end": "2022-04-27T11:40:19.272Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "938976307338486810", + "game": "576482762446602270", + "start": "2022-07-07T02:17:51.351Z", + "end": "2022-07-07T09:04:02.710Z", + "events": [ + { + "start": "2022-07-07T02:17:51.351Z", + "end": "2022-07-07T04:33:15.137Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T04:33:15.137Z", + "end": "2022-07-07T06:48:38.923Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T06:48:38.923Z", + "end": "2022-07-07T09:04:02.709Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "153631479524744694", + "game": "554573307161214977", + "start": "2022-04-30T04:30:27.983Z", + "end": "2022-04-30T05:51:20.691Z", + "events": [ + { + "start": "2022-04-30T04:30:27.983Z", + "end": "2022-04-30T05:51:20.691Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "355708392202112685", + "game": "518088627234930688", + "start": "2022-06-22T08:28:23.817Z", + "end": "2022-06-22T16:34:04.182Z", + "events": [ + { + "start": "2022-06-22T08:28:23.817Z", + "end": "2022-06-22T16:34:04.182Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "517335360477493827", + "game": "512789343157485602", + "start": "2022-06-01T12:32:24.927Z", + "end": "2022-06-01T17:40:30.266Z", + "events": [ + { + "start": "2022-06-01T12:32:24.927Z", + "end": "2022-06-01T17:40:30.266Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "572456126872944651", + "start": "2022-05-30T03:12:56.572Z", + "end": "2022-05-30T10:12:03.031Z", + "events": [ + { + "start": "2022-05-30T03:12:56.572Z", + "end": "2022-05-30T04:36:45.863Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T04:36:45.863Z", + "end": "2022-05-30T06:00:35.154Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T06:00:35.154Z", + "end": "2022-05-30T07:24:24.445Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T07:24:24.445Z", + "end": "2022-05-30T08:48:13.736Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T08:48:13.736Z", + "end": "2022-05-30T10:12:03.027Z", + "state": "IDLE" + } + ] + }, + { + "user": "878082205985098233", + "game": "592976500802846750", + "start": "2022-07-08T14:38:49.334Z", + "end": "2022-07-08T21:31:32.801Z", + "events": [ + { + "start": "2022-07-08T14:38:49.334Z", + "end": "2022-07-08T16:01:22.027Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T16:01:22.027Z", + "end": "2022-07-08T17:23:54.720Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T17:23:54.720Z", + "end": "2022-07-08T18:46:27.413Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T18:46:27.413Z", + "end": "2022-07-08T20:09:00.106Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T20:09:00.106Z", + "end": "2022-07-08T21:31:32.799Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "592976500802846750", + "start": "2022-06-06T03:40:14.060Z", + "end": "2022-06-06T10:07:52.372Z", + "events": [ + { + "start": "2022-06-06T03:40:14.060Z", + "end": "2022-06-06T10:07:52.372Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "560781100197216267", + "start": "2022-07-15T04:52:28.386Z", + "end": "2022-07-15T10:27:49.721Z", + "events": [ + { + "start": "2022-07-15T04:52:28.386Z", + "end": "2022-07-15T07:40:09.053Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-15T07:40:09.053Z", + "end": "2022-07-15T10:27:49.720Z", + "state": "IDLE" + } + ] + }, + { + "user": "878082205985098233", + "game": "514228311661084682", + "start": "2022-07-23T12:14:10.840Z", + "end": "2022-07-23T15:07:49.139Z", + "events": [ + { + "start": "2022-07-23T12:14:10.840Z", + "end": "2022-07-23T13:12:03.606Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-23T13:12:03.606Z", + "end": "2022-07-23T14:09:56.372Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T14:09:56.372Z", + "end": "2022-07-23T15:07:49.138Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "542075586886107149", + "start": "2022-06-23T18:20:48.593Z", + "end": "2022-06-23T21:44:02.645Z", + "events": [ + { + "start": "2022-06-23T18:20:48.593Z", + "end": "2022-06-23T19:11:37.106Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T19:11:37.106Z", + "end": "2022-06-23T20:02:25.619Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T20:02:25.619Z", + "end": "2022-06-23T20:53:14.132Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T20:53:14.132Z", + "end": "2022-06-23T21:44:02.645Z", + "state": "IDLE" + } + ] + }, + { + "user": "791267126190249625", + "game": "512498684211232768", + "start": "2022-07-09T06:38:33.122Z", + "end": "2022-07-09T11:59:48.587Z", + "events": [ + { + "start": "2022-07-09T06:38:33.122Z", + "end": "2022-07-09T07:58:51.988Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T07:58:51.988Z", + "end": "2022-07-09T09:19:10.854Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T09:19:10.854Z", + "end": "2022-07-09T10:39:29.720Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T10:39:29.720Z", + "end": "2022-07-09T11:59:48.586Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "713444659295913502", + "game": "512498684211232768", + "start": "2022-04-19T21:25:59.242Z", + "end": "2022-04-20T00:37:22.287Z", + "events": [ + { + "start": "2022-04-19T21:25:59.242Z", + "end": "2022-04-19T22:13:50.003Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T22:13:50.003Z", + "end": "2022-04-19T23:01:40.764Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T23:01:40.764Z", + "end": "2022-04-19T23:49:31.525Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T23:49:31.525Z", + "end": "2022-04-20T00:37:22.286Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "521842831262875670", + "start": "2022-06-14T19:02:07.364Z", + "end": "2022-06-14T21:45:00.744Z", + "events": [ + { + "start": "2022-06-14T19:02:07.364Z", + "end": "2022-06-14T21:45:00.744Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "576482762446602270", + "start": "2022-06-04T03:29:47.351Z", + "end": "2022-06-04T11:20:02.790Z", + "events": [ + { + "start": "2022-06-04T03:29:47.351Z", + "end": "2022-06-04T06:06:32.497Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T06:06:32.497Z", + "end": "2022-06-04T08:43:17.643Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T08:43:17.643Z", + "end": "2022-06-04T11:20:02.789Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "623295654897148670", + "game": "535371564850479134", + "start": "2022-07-24T18:30:36.210Z", + "end": "2022-07-24T21:09:27.554Z", + "events": [ + { + "start": "2022-07-24T18:30:36.210Z", + "end": "2022-07-24T19:23:33.324Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T19:23:33.324Z", + "end": "2022-07-24T20:16:30.438Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T20:16:30.438Z", + "end": "2022-07-24T21:09:27.552Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "510199020782747732", + "start": "2022-04-25T04:44:47.806Z", + "end": "2022-04-25T12:13:41.672Z", + "events": [ + { + "start": "2022-04-25T04:44:47.806Z", + "end": "2022-04-25T12:13:41.672Z", + "state": "IDLE" + } + ] + }, + { + "user": "538658792298239054", + "game": "592976500802846750", + "start": "2022-07-11T17:37:29.240Z", + "end": "2022-07-11T18:36:33.287Z", + "events": [ + { + "start": "2022-07-11T17:37:29.240Z", + "end": "2022-07-11T17:49:18.049Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T17:49:18.049Z", + "end": "2022-07-11T18:01:06.858Z", + "state": "IDLE" + }, + { + "start": "2022-07-11T18:01:06.858Z", + "end": "2022-07-11T18:12:55.667Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T18:12:55.667Z", + "end": "2022-07-11T18:24:44.476Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T18:24:44.476Z", + "end": "2022-07-11T18:36:33.285Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "584489284152985092", + "game": "560781100197216267", + "start": "2022-06-05T22:15:10.661Z", + "end": "2022-06-06T04:20:42.034Z", + "events": [ + { + "start": "2022-06-05T22:15:10.661Z", + "end": "2022-06-06T04:20:42.034Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "444246898747584433", + "game": "542474758835535872", + "start": "2022-07-30T19:46:20.109Z", + "end": "2022-07-31T03:09:13.790Z", + "events": [ + { + "start": "2022-07-30T19:46:20.109Z", + "end": "2022-07-30T22:13:58.002Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T22:13:58.002Z", + "end": "2022-07-31T00:41:35.895Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T00:41:35.895Z", + "end": "2022-07-31T03:09:13.788Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "463820732483181525", + "game": "535384357536399404", + "start": "2022-04-25T09:25:35.500Z", + "end": "2022-04-25T18:49:38.962Z", + "events": [ + { + "start": "2022-04-25T09:25:35.500Z", + "end": "2022-04-25T18:49:38.962Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "131482253203487270", + "game": "512789427462995988", + "start": "2022-04-22T16:21:59.911Z", + "end": "2022-04-22T23:33:51.713Z", + "events": [ + { + "start": "2022-04-22T16:21:59.911Z", + "end": "2022-04-22T17:48:22.271Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T17:48:22.271Z", + "end": "2022-04-22T19:14:44.631Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T19:14:44.631Z", + "end": "2022-04-22T20:41:06.991Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T20:41:06.991Z", + "end": "2022-04-22T22:07:29.351Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T22:07:29.351Z", + "end": "2022-04-22T23:33:51.711Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "575412499399180288", + "start": "2022-05-10T07:18:13.811Z", + "end": "2022-05-10T15:17:13.334Z", + "events": [ + { + "start": "2022-05-10T07:18:13.811Z", + "end": "2022-05-10T09:57:53.652Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T09:57:53.652Z", + "end": "2022-05-10T12:37:33.493Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T12:37:33.493Z", + "end": "2022-05-10T15:17:13.334Z", + "state": "IDLE" + } + ] + }, + { + "user": "182925797752958092", + "game": "356875221078245376", + "start": "2022-07-29T04:36:50.357Z", + "end": "2022-07-29T10:28:02.507Z", + "events": [ + { + "start": "2022-07-29T04:36:50.357Z", + "end": "2022-07-29T10:28:02.507Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "878082205985098233", + "game": "518088627234930688", + "start": "2022-07-03T21:15:55.693Z", + "end": "2022-07-04T06:33:00.776Z", + "events": [ + { + "start": "2022-07-03T21:15:55.693Z", + "end": "2022-07-04T00:21:37.387Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-04T00:21:37.387Z", + "end": "2022-07-04T03:27:19.081Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T03:27:19.081Z", + "end": "2022-07-04T06:33:00.775Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "467658810442648809", + "game": "512789120234422301", + "start": "2022-05-24T13:31:28.741Z", + "end": "2022-05-24T23:02:01.354Z", + "events": [ + { + "start": "2022-05-24T13:31:28.741Z", + "end": "2022-05-24T18:16:45.047Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T18:16:45.047Z", + "end": "2022-05-24T23:02:01.353Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "512789343157485602", + "start": "2022-05-02T00:21:56.301Z", + "end": "2022-05-02T04:17:54.250Z", + "events": [ + { + "start": "2022-05-02T00:21:56.301Z", + "end": "2022-05-02T01:20:55.788Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T01:20:55.788Z", + "end": "2022-05-02T02:19:55.275Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T02:19:55.275Z", + "end": "2022-05-02T03:18:54.762Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T03:18:54.762Z", + "end": "2022-05-02T04:17:54.249Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "530454325214969866", + "start": "2022-04-23T01:50:41.894Z", + "end": "2022-04-23T03:19:50.026Z", + "events": [ + { + "start": "2022-04-23T01:50:41.894Z", + "end": "2022-04-23T02:35:15.960Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T02:35:15.960Z", + "end": "2022-04-23T03:19:50.026Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "137536289023624121", + "game": "569008830701240340", + "start": "2022-04-24T08:57:56.302Z", + "end": "2022-04-24T09:08:15.050Z", + "events": [ + { + "start": "2022-04-24T08:57:56.302Z", + "end": "2022-04-24T09:08:15.050Z", + "state": "IDLE" + } + ] + }, + { + "user": "346608907417001845", + "game": "510199020782747732", + "start": "2022-05-07T22:49:52.451Z", + "end": "2022-05-08T08:28:09.394Z", + "events": [ + { + "start": "2022-05-07T22:49:52.451Z", + "end": "2022-05-08T00:45:31.839Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T00:45:31.839Z", + "end": "2022-05-08T02:41:11.227Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T02:41:11.227Z", + "end": "2022-05-08T04:36:50.615Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T04:36:50.615Z", + "end": "2022-05-08T06:32:30.003Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T06:32:30.003Z", + "end": "2022-05-08T08:28:09.391Z", + "state": "IDLE" + } + ] + }, + { + "user": "360264570671216445", + "game": "546175179542364160", + "start": "2022-05-15T07:26:21.612Z", + "end": "2022-05-15T09:47:05.650Z", + "events": [ + { + "start": "2022-05-15T07:26:21.612Z", + "end": "2022-05-15T09:47:05.650Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "153631479524744694", + "game": "540120593576493057", + "start": "2022-06-08T11:41:23.077Z", + "end": "2022-06-08T20:25:34.099Z", + "events": [ + { + "start": "2022-06-08T11:41:23.077Z", + "end": "2022-06-08T14:36:06.751Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T14:36:06.751Z", + "end": "2022-06-08T17:30:50.425Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T17:30:50.425Z", + "end": "2022-06-08T20:25:34.099Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "406850294055619241", + "game": "569008830701240340", + "start": "2022-04-22T06:10:11.192Z", + "end": "2022-04-22T10:36:15.978Z", + "events": [ + { + "start": "2022-04-22T06:10:11.192Z", + "end": "2022-04-22T10:36:15.978Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "700136079562375258", + "start": "2022-06-29T07:42:31.913Z", + "end": "2022-06-29T09:38:56.408Z", + "events": [ + { + "start": "2022-06-29T07:42:31.913Z", + "end": "2022-06-29T09:38:56.408Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "511619499053678668", + "start": "2022-05-14T16:20:01.303Z", + "end": "2022-05-15T00:59:05.032Z", + "events": [ + { + "start": "2022-05-14T16:20:01.303Z", + "end": "2022-05-14T19:13:02.546Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T19:13:02.546Z", + "end": "2022-05-14T22:06:03.789Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T22:06:03.789Z", + "end": "2022-05-15T00:59:05.032Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "725502702868293700", + "game": "614448244260339712", + "start": "2022-07-11T09:48:31.377Z", + "end": "2022-07-11T12:25:05.602Z", + "events": [ + { + "start": "2022-07-11T09:48:31.377Z", + "end": "2022-07-11T11:06:48.489Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T11:06:48.489Z", + "end": "2022-07-11T12:25:05.601Z", + "state": "IDLE" + } + ] + }, + { + "user": "713444659295913502", + "game": "535869836748783616", + "start": "2022-04-22T09:31:33.231Z", + "end": "2022-04-22T17:05:21.827Z", + "events": [ + { + "start": "2022-04-22T09:31:33.231Z", + "end": "2022-04-22T11:02:18.950Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T11:02:18.950Z", + "end": "2022-04-22T12:33:04.669Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T12:33:04.669Z", + "end": "2022-04-22T14:03:50.388Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-22T14:03:50.388Z", + "end": "2022-04-22T15:34:36.107Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-22T15:34:36.107Z", + "end": "2022-04-22T17:05:21.826Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "568387317892070397", + "game": "597588168178663434", + "start": "2022-04-22T16:55:39.326Z", + "end": "2022-04-23T02:07:41.556Z", + "events": [ + { + "start": "2022-04-22T16:55:39.326Z", + "end": "2022-04-22T19:13:39.883Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T19:13:39.883Z", + "end": "2022-04-22T21:31:40.440Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T21:31:40.440Z", + "end": "2022-04-22T23:49:40.997Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T23:49:40.997Z", + "end": "2022-04-23T02:07:41.554Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "500919588166575890", + "game": "546175179542364160", + "start": "2022-06-09T01:14:43.207Z", + "end": "2022-06-09T07:39:00.810Z", + "events": [ + { + "start": "2022-06-09T01:14:43.207Z", + "end": "2022-06-09T02:50:47.607Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-09T02:50:47.607Z", + "end": "2022-06-09T04:26:52.007Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-09T04:26:52.007Z", + "end": "2022-06-09T06:02:56.407Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-09T06:02:56.407Z", + "end": "2022-06-09T07:39:00.807Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "597860020935327787", + "start": "2022-07-24T09:02:50.062Z", + "end": "2022-07-24T12:10:51.877Z", + "events": [ + { + "start": "2022-07-24T09:02:50.062Z", + "end": "2022-07-24T10:36:50.969Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T10:36:50.969Z", + "end": "2022-07-24T12:10:51.876Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "530539422724200800", + "game": "700136079562375258", + "start": "2022-04-20T14:04:31.228Z", + "end": "2022-04-20T21:14:28.962Z", + "events": [ + { + "start": "2022-04-20T14:04:31.228Z", + "end": "2022-04-20T15:30:30.774Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T15:30:30.774Z", + "end": "2022-04-20T16:56:30.320Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T16:56:30.320Z", + "end": "2022-04-20T18:22:29.866Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-20T18:22:29.866Z", + "end": "2022-04-20T19:48:29.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-20T19:48:29.412Z", + "end": "2022-04-20T21:14:28.958Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "872035310834814925", + "game": "535384357536399404", + "start": "2022-06-20T13:17:58.126Z", + "end": "2022-06-20T14:11:40.301Z", + "events": [ + { + "start": "2022-06-20T13:17:58.126Z", + "end": "2022-06-20T13:44:49.213Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T13:44:49.213Z", + "end": "2022-06-20T14:11:40.300Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "549054179973094329", + "game": "550277544025522176", + "start": "2022-05-01T23:12:26.390Z", + "end": "2022-05-02T06:43:29.514Z", + "events": [ + { + "start": "2022-05-01T23:12:26.390Z", + "end": "2022-05-02T06:43:29.514Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "575412499399180288", + "start": "2022-06-02T05:29:42.839Z", + "end": "2022-06-02T11:10:48.217Z", + "events": [ + { + "start": "2022-06-02T05:29:42.839Z", + "end": "2022-06-02T06:37:55.914Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T06:37:55.914Z", + "end": "2022-06-02T07:46:08.989Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T07:46:08.989Z", + "end": "2022-06-02T08:54:22.064Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T08:54:22.064Z", + "end": "2022-06-02T10:02:35.139Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T10:02:35.139Z", + "end": "2022-06-02T11:10:48.214Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "530539422724200800", + "game": "597588168178663434", + "start": "2022-07-07T18:32:10.280Z", + "end": "2022-07-07T18:57:56.003Z", + "events": [ + { + "start": "2022-07-07T18:32:10.280Z", + "end": "2022-07-07T18:45:03.141Z", + "state": "IDLE" + }, + { + "start": "2022-07-07T18:45:03.141Z", + "end": "2022-07-07T18:57:56.002Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "554921822626381879", + "start": "2022-06-01T12:00:26.612Z", + "end": "2022-06-01T13:58:04.762Z", + "events": [ + { + "start": "2022-06-01T12:00:26.612Z", + "end": "2022-06-01T12:39:39.328Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-01T12:39:39.328Z", + "end": "2022-06-01T13:18:52.044Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-01T13:18:52.044Z", + "end": "2022-06-01T13:58:04.760Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "658550407298256890", + "game": "520462578061803588", + "start": "2022-07-03T20:47:34.754Z", + "end": "2022-07-04T00:14:26.537Z", + "events": [ + { + "start": "2022-07-03T20:47:34.754Z", + "end": "2022-07-03T21:39:17.699Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T21:39:17.699Z", + "end": "2022-07-03T22:31:00.644Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T22:31:00.644Z", + "end": "2022-07-03T23:22:43.589Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T23:22:43.589Z", + "end": "2022-07-04T00:14:26.534Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "512789427462995988", + "start": "2022-06-13T03:46:31.132Z", + "end": "2022-06-13T12:14:50.490Z", + "events": [ + { + "start": "2022-06-13T03:46:31.132Z", + "end": "2022-06-13T06:35:57.584Z", + "state": "IDLE" + }, + { + "start": "2022-06-13T06:35:57.584Z", + "end": "2022-06-13T09:25:24.036Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T09:25:24.036Z", + "end": "2022-06-13T12:14:50.488Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "911848869344266044", + "game": "520453007578628124", + "start": "2022-05-12T15:09:35.052Z", + "end": "2022-05-13T00:02:38.570Z", + "events": [ + { + "start": "2022-05-12T15:09:35.052Z", + "end": "2022-05-12T18:07:16.224Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T18:07:16.224Z", + "end": "2022-05-12T21:04:57.396Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T21:04:57.396Z", + "end": "2022-05-13T00:02:38.568Z", + "state": "IDLE" + } + ] + }, + { + "user": "686825797960121847", + "game": "512699108809637890", + "start": "2022-05-14T13:24:26.297Z", + "end": "2022-05-14T17:34:20.881Z", + "events": [ + { + "start": "2022-05-14T13:24:26.297Z", + "end": "2022-05-14T15:29:23.589Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T15:29:23.589Z", + "end": "2022-05-14T17:34:20.881Z", + "state": "IDLE" + } + ] + }, + { + "user": "538658792298239054", + "game": "542475118396309528", + "start": "2022-04-21T05:56:56.368Z", + "end": "2022-04-21T14:30:36.486Z", + "events": [ + { + "start": "2022-04-21T05:56:56.368Z", + "end": "2022-04-21T08:05:21.397Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-21T08:05:21.397Z", + "end": "2022-04-21T10:13:46.426Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T10:13:46.426Z", + "end": "2022-04-21T12:22:11.455Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T12:22:11.455Z", + "end": "2022-04-21T14:30:36.484Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "521842831262875670", + "start": "2022-06-06T13:31:00.556Z", + "end": "2022-06-06T18:53:49.151Z", + "events": [ + { + "start": "2022-06-06T13:31:00.556Z", + "end": "2022-06-06T14:51:42.704Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T14:51:42.704Z", + "end": "2022-06-06T16:12:24.852Z", + "state": "IDLE" + }, + { + "start": "2022-06-06T16:12:24.852Z", + "end": "2022-06-06T17:33:07.000Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T17:33:07.000Z", + "end": "2022-06-06T18:53:49.148Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "762163239408560283", + "game": "512789343157485602", + "start": "2022-07-11T23:28:04.372Z", + "end": "2022-07-12T08:53:12.876Z", + "events": [ + { + "start": "2022-07-11T23:28:04.372Z", + "end": "2022-07-12T02:36:27.206Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T02:36:27.206Z", + "end": "2022-07-12T05:44:50.040Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T05:44:50.040Z", + "end": "2022-07-12T08:53:12.874Z", + "state": "IDLE" + } + ] + }, + { + "user": "453350270016457959", + "game": "558547388583772201", + "start": "2022-06-04T20:15:54.457Z", + "end": "2022-06-05T06:18:05.609Z", + "events": [ + { + "start": "2022-06-04T20:15:54.457Z", + "end": "2022-06-04T22:46:27.245Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T22:46:27.245Z", + "end": "2022-06-05T01:17:00.033Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T01:17:00.033Z", + "end": "2022-06-05T03:47:32.821Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T03:47:32.821Z", + "end": "2022-06-05T06:18:05.609Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "200801427122341912", + "game": "508057374875975682", + "start": "2022-04-26T17:45:19.558Z", + "end": "2022-04-27T03:10:56.303Z", + "events": [ + { + "start": "2022-04-26T17:45:19.558Z", + "end": "2022-04-27T03:10:56.303Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "535869836748783616", + "start": "2022-05-11T18:43:31.402Z", + "end": "2022-05-11T21:35:37.502Z", + "events": [ + { + "start": "2022-05-11T18:43:31.402Z", + "end": "2022-05-11T19:17:56.622Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-11T19:17:56.622Z", + "end": "2022-05-11T19:52:21.842Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T19:52:21.842Z", + "end": "2022-05-11T20:26:47.062Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T20:26:47.062Z", + "end": "2022-05-11T21:01:12.282Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T21:01:12.282Z", + "end": "2022-05-11T21:35:37.502Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "606163888052109312", + "start": "2022-08-01T08:02:58.741Z", + "end": "2022-08-01T10:22:30.374Z", + "events": [ + { + "start": "2022-08-01T08:02:58.741Z", + "end": "2022-08-01T08:37:51.649Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T08:37:51.649Z", + "end": "2022-08-01T09:12:44.557Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T09:12:44.557Z", + "end": "2022-08-01T09:47:37.465Z", + "state": "IDLE" + }, + { + "start": "2022-08-01T09:47:37.465Z", + "end": "2022-08-01T10:22:30.373Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "452396069922968436", + "game": "700136079562375258", + "start": "2022-04-15T15:56:33.921Z", + "end": "2022-04-15T18:42:08.600Z", + "events": [ + { + "start": "2022-04-15T15:56:33.921Z", + "end": "2022-04-15T16:29:40.856Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T16:29:40.856Z", + "end": "2022-04-15T17:02:47.791Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T17:02:47.791Z", + "end": "2022-04-15T17:35:54.726Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T17:35:54.726Z", + "end": "2022-04-15T18:09:01.661Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T18:09:01.661Z", + "end": "2022-04-15T18:42:08.596Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "841397740041930984", + "game": "575412499399180288", + "start": "2022-08-03T05:30:53.211Z", + "end": "2022-08-03T11:31:34.687Z", + "events": [ + { + "start": "2022-08-03T05:30:53.211Z", + "end": "2022-08-03T11:31:34.687Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "725502702868293700", + "game": "511619499053678668", + "start": "2022-08-01T21:55:00.807Z", + "end": "2022-08-02T01:02:12.074Z", + "events": [ + { + "start": "2022-08-01T21:55:00.807Z", + "end": "2022-08-01T22:57:24.562Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T22:57:24.562Z", + "end": "2022-08-01T23:59:48.317Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-01T23:59:48.317Z", + "end": "2022-08-02T01:02:12.072Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "542475118396309528", + "start": "2022-05-06T12:53:15.570Z", + "end": "2022-05-06T20:23:14.460Z", + "events": [ + { + "start": "2022-05-06T12:53:15.570Z", + "end": "2022-05-06T15:23:15.200Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T15:23:15.200Z", + "end": "2022-05-06T17:53:14.830Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T17:53:14.830Z", + "end": "2022-05-06T20:23:14.460Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "590467327095087095", + "game": "546175179542364160", + "start": "2022-06-09T05:47:58.136Z", + "end": "2022-06-09T11:14:33.700Z", + "events": [ + { + "start": "2022-06-09T05:47:58.136Z", + "end": "2022-06-09T11:14:33.700Z", + "state": "IDLE" + } + ] + }, + { + "user": "395281349698024181", + "game": "575412499399180288", + "start": "2022-07-13T19:56:34.201Z", + "end": "2022-07-14T00:07:43.565Z", + "events": [ + { + "start": "2022-07-13T19:56:34.201Z", + "end": "2022-07-13T20:46:48.073Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T20:46:48.073Z", + "end": "2022-07-13T21:37:01.945Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T21:37:01.945Z", + "end": "2022-07-13T22:27:15.817Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T22:27:15.817Z", + "end": "2022-07-13T23:17:29.689Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-13T23:17:29.689Z", + "end": "2022-07-14T00:07:43.561Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "519644267212177418", + "start": "2022-07-29T07:39:28.590Z", + "end": "2022-07-29T13:43:42.038Z", + "events": [ + { + "start": "2022-07-29T07:39:28.590Z", + "end": "2022-07-29T09:10:31.952Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T09:10:31.952Z", + "end": "2022-07-29T10:41:35.314Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T10:41:35.314Z", + "end": "2022-07-29T12:12:38.676Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T12:12:38.676Z", + "end": "2022-07-29T13:43:42.038Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "600708263053781983", + "game": "614380482620293151", + "start": "2022-06-04T13:08:22.684Z", + "end": "2022-06-04T14:23:52.756Z", + "events": [ + { + "start": "2022-06-04T13:08:22.684Z", + "end": "2022-06-04T13:46:07.720Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T13:46:07.720Z", + "end": "2022-06-04T14:23:52.756Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "346608907417001845", + "game": "512789427462995988", + "start": "2022-06-12T12:43:36.910Z", + "end": "2022-06-12T15:51:47.887Z", + "events": [ + { + "start": "2022-06-12T12:43:36.910Z", + "end": "2022-06-12T13:30:39.654Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T13:30:39.654Z", + "end": "2022-06-12T14:17:42.398Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T14:17:42.398Z", + "end": "2022-06-12T15:04:45.142Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T15:04:45.142Z", + "end": "2022-06-12T15:51:47.886Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "568387317892070397", + "game": "514228311661084682", + "start": "2022-05-04T12:17:03.865Z", + "end": "2022-05-04T22:20:02.633Z", + "events": [ + { + "start": "2022-05-04T12:17:03.865Z", + "end": "2022-05-04T15:38:03.454Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T15:38:03.454Z", + "end": "2022-05-04T18:59:03.043Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T18:59:03.043Z", + "end": "2022-05-04T22:20:02.632Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "200801427122341912", + "game": "575412499399180288", + "start": "2022-06-21T14:16:51.510Z", + "end": "2022-06-21T21:55:51.818Z", + "events": [ + { + "start": "2022-06-21T14:16:51.510Z", + "end": "2022-06-21T16:11:36.587Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T16:11:36.587Z", + "end": "2022-06-21T18:06:21.664Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T18:06:21.664Z", + "end": "2022-06-21T20:01:06.741Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T20:01:06.741Z", + "end": "2022-06-21T21:55:51.818Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "538658792298239054", + "game": "526489929631531009", + "start": "2022-05-26T13:59:58.395Z", + "end": "2022-05-26T22:08:23.812Z", + "events": [ + { + "start": "2022-05-26T13:59:58.395Z", + "end": "2022-05-26T16:42:46.867Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T16:42:46.867Z", + "end": "2022-05-26T19:25:35.339Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T19:25:35.339Z", + "end": "2022-05-26T22:08:23.811Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "537786518874514211", + "game": "519644267212177418", + "start": "2022-06-14T09:03:34.398Z", + "end": "2022-06-14T16:54:45.806Z", + "events": [ + { + "start": "2022-06-14T09:03:34.398Z", + "end": "2022-06-14T11:40:38.200Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-14T11:40:38.200Z", + "end": "2022-06-14T14:17:42.002Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T14:17:42.002Z", + "end": "2022-06-14T16:54:45.804Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "453350270016457959", + "game": "526489929631531009", + "start": "2022-06-26T16:50:54.834Z", + "end": "2022-06-27T01:32:12.201Z", + "events": [ + { + "start": "2022-06-26T16:50:54.834Z", + "end": "2022-06-26T21:11:33.517Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-26T21:11:33.517Z", + "end": "2022-06-27T01:32:12.200Z", + "state": "IDLE" + } + ] + }, + { + "user": "608700383891121851", + "game": "614448244260339712", + "start": "2022-04-23T21:52:33.206Z", + "end": "2022-04-24T07:23:43.296Z", + "events": [ + { + "start": "2022-04-23T21:52:33.206Z", + "end": "2022-04-24T02:38:08.251Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T02:38:08.251Z", + "end": "2022-04-24T07:23:43.296Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "881335427428668054", + "game": "592976500802846750", + "start": "2022-06-04T17:08:05.418Z", + "end": "2022-06-04T20:33:40.431Z", + "events": [ + { + "start": "2022-06-04T17:08:05.418Z", + "end": "2022-06-04T17:49:12.420Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T17:49:12.420Z", + "end": "2022-06-04T18:30:19.422Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T18:30:19.422Z", + "end": "2022-06-04T19:11:26.424Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T19:11:26.424Z", + "end": "2022-06-04T19:52:33.426Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T19:52:33.426Z", + "end": "2022-06-04T20:33:40.428Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "430732724825949756", + "game": "700136079562375258", + "start": "2022-05-26T05:07:08.185Z", + "end": "2022-05-26T09:10:06.100Z", + "events": [ + { + "start": "2022-05-26T05:07:08.185Z", + "end": "2022-05-26T06:07:52.663Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-26T06:07:52.663Z", + "end": "2022-05-26T07:08:37.141Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-26T07:08:37.141Z", + "end": "2022-05-26T08:09:21.619Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T08:09:21.619Z", + "end": "2022-05-26T09:10:06.097Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "542474758835535872", + "start": "2022-06-03T13:38:29.657Z", + "end": "2022-06-03T15:48:35.300Z", + "events": [ + { + "start": "2022-06-03T13:38:29.657Z", + "end": "2022-06-03T14:11:01.067Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T14:11:01.067Z", + "end": "2022-06-03T14:43:32.477Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T14:43:32.477Z", + "end": "2022-06-03T15:16:03.887Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T15:16:03.887Z", + "end": "2022-06-03T15:48:35.297Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "517335360477493827", + "game": "597588168178663434", + "start": "2022-05-04T00:49:45.373Z", + "end": "2022-05-04T09:55:48.396Z", + "events": [ + { + "start": "2022-05-04T00:49:45.373Z", + "end": "2022-05-04T02:38:57.977Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T02:38:57.977Z", + "end": "2022-05-04T04:28:10.581Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-04T04:28:10.581Z", + "end": "2022-05-04T06:17:23.185Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T06:17:23.185Z", + "end": "2022-05-04T08:06:35.789Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T08:06:35.789Z", + "end": "2022-05-04T09:55:48.393Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "554573307161214977", + "start": "2022-06-30T02:20:50.402Z", + "end": "2022-06-30T03:03:45.003Z", + "events": [ + { + "start": "2022-06-30T02:20:50.402Z", + "end": "2022-06-30T02:35:08.602Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-30T02:35:08.602Z", + "end": "2022-06-30T02:49:26.802Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-30T02:49:26.802Z", + "end": "2022-06-30T03:03:45.002Z", + "state": "IDLE" + } + ] + }, + { + "user": "600708263053781983", + "game": "535869836748783616", + "start": "2022-07-22T11:49:00.115Z", + "end": "2022-07-22T12:14:30.049Z", + "events": [ + { + "start": "2022-07-22T11:49:00.115Z", + "end": "2022-07-22T12:14:30.049Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "514228311661084682", + "start": "2022-04-13T18:31:15.085Z", + "end": "2022-04-13T19:14:10.947Z", + "events": [ + { + "start": "2022-04-13T18:31:15.085Z", + "end": "2022-04-13T19:14:10.947Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "560781100197216267", + "start": "2022-04-16T02:49:18.953Z", + "end": "2022-04-16T05:04:34.301Z", + "events": [ + { + "start": "2022-04-16T02:49:18.953Z", + "end": "2022-04-16T03:16:22.022Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-16T03:16:22.022Z", + "end": "2022-04-16T03:43:25.091Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T03:43:25.091Z", + "end": "2022-04-16T04:10:28.160Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-16T04:10:28.160Z", + "end": "2022-04-16T04:37:31.229Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-16T04:37:31.229Z", + "end": "2022-04-16T05:04:34.298Z", + "state": "IDLE" + } + ] + }, + { + "user": "530539422724200800", + "game": "558547388583772201", + "start": "2022-04-21T05:03:25.967Z", + "end": "2022-04-21T08:47:33.695Z", + "events": [ + { + "start": "2022-04-21T05:03:25.967Z", + "end": "2022-04-21T06:55:29.831Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-21T06:55:29.831Z", + "end": "2022-04-21T08:47:33.695Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "406850294055619241", + "game": "554573307161214977", + "start": "2022-04-14T11:49:32.856Z", + "end": "2022-04-14T20:24:29.514Z", + "events": [ + { + "start": "2022-04-14T11:49:32.856Z", + "end": "2022-04-14T13:58:17.020Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-14T13:58:17.020Z", + "end": "2022-04-14T16:07:01.184Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T16:07:01.184Z", + "end": "2022-04-14T18:15:45.348Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T18:15:45.348Z", + "end": "2022-04-14T20:24:29.512Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "872035310834814925", + "game": "511619499053678668", + "start": "2022-04-27T03:00:09.504Z", + "end": "2022-04-27T08:50:41.072Z", + "events": [ + { + "start": "2022-04-27T03:00:09.504Z", + "end": "2022-04-27T04:57:00.026Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T04:57:00.026Z", + "end": "2022-04-27T06:53:50.548Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T06:53:50.548Z", + "end": "2022-04-27T08:50:41.070Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "385692164951394422", + "game": "542475118396309528", + "start": "2022-06-13T15:59:52.098Z", + "end": "2022-06-13T22:05:19.683Z", + "events": [ + { + "start": "2022-06-13T15:59:52.098Z", + "end": "2022-06-13T17:31:13.994Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T17:31:13.994Z", + "end": "2022-06-13T19:02:35.890Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T19:02:35.890Z", + "end": "2022-06-13T20:33:57.786Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T20:33:57.786Z", + "end": "2022-06-13T22:05:19.682Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "821608522568592914", + "game": "526489929631531009", + "start": "2022-04-20T02:22:18.500Z", + "end": "2022-04-20T08:18:08.462Z", + "events": [ + { + "start": "2022-04-20T02:22:18.500Z", + "end": "2022-04-20T08:18:08.462Z", + "state": "IDLE" + } + ] + }, + { + "user": "161887854890745672", + "game": "523154344187789312", + "start": "2022-07-25T04:00:14.188Z", + "end": "2022-07-25T13:01:39.952Z", + "events": [ + { + "start": "2022-07-25T04:00:14.188Z", + "end": "2022-07-25T08:30:57.070Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-25T08:30:57.070Z", + "end": "2022-07-25T13:01:39.952Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951234649334557435", + "game": "558547388583772201", + "start": "2022-06-20T17:22:31.144Z", + "end": "2022-06-20T22:50:56.950Z", + "events": [ + { + "start": "2022-06-20T17:22:31.144Z", + "end": "2022-06-20T18:28:12.305Z", + "state": "IDLE" + }, + { + "start": "2022-06-20T18:28:12.305Z", + "end": "2022-06-20T19:33:53.466Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T19:33:53.466Z", + "end": "2022-06-20T20:39:34.627Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T20:39:34.627Z", + "end": "2022-06-20T21:45:15.788Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T21:45:15.788Z", + "end": "2022-06-20T22:50:56.949Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "430732724825949756", + "game": "597588168178663434", + "start": "2022-05-30T02:43:52.230Z", + "end": "2022-05-30T11:27:27.766Z", + "events": [ + { + "start": "2022-05-30T02:43:52.230Z", + "end": "2022-05-30T07:05:39.998Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T07:05:39.998Z", + "end": "2022-05-30T11:27:27.766Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "356875221078245376", + "start": "2022-06-21T18:59:30.361Z", + "end": "2022-06-22T03:38:26.907Z", + "events": [ + { + "start": "2022-06-21T18:59:30.361Z", + "end": "2022-06-22T03:38:26.907Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "285410867718320291", + "game": "606163888052109312", + "start": "2022-07-02T16:12:52.266Z", + "end": "2022-07-02T21:28:03.551Z", + "events": [ + { + "start": "2022-07-02T16:12:52.266Z", + "end": "2022-07-02T17:15:54.523Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T17:15:54.523Z", + "end": "2022-07-02T18:18:56.780Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T18:18:56.780Z", + "end": "2022-07-02T19:21:59.037Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T19:21:59.037Z", + "end": "2022-07-02T20:25:01.294Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T20:25:01.294Z", + "end": "2022-07-02T21:28:03.551Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "575412499399180288", + "start": "2022-05-18T11:52:48.864Z", + "end": "2022-05-18T15:45:35.666Z", + "events": [ + { + "start": "2022-05-18T11:52:48.864Z", + "end": "2022-05-18T13:10:24.464Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T13:10:24.464Z", + "end": "2022-05-18T14:28:00.064Z", + "state": "IDLE" + }, + { + "start": "2022-05-18T14:28:00.064Z", + "end": "2022-05-18T15:45:35.664Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "514228311661084682", + "start": "2022-07-20T15:34:59.036Z", + "end": "2022-07-20T20:46:30.063Z", + "events": [ + { + "start": "2022-07-20T15:34:59.036Z", + "end": "2022-07-20T16:52:51.792Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T16:52:51.792Z", + "end": "2022-07-20T18:10:44.548Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-20T18:10:44.548Z", + "end": "2022-07-20T19:28:37.304Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T19:28:37.304Z", + "end": "2022-07-20T20:46:30.060Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512789343157485602", + "start": "2022-07-07T01:17:18.960Z", + "end": "2022-07-07T09:24:01.012Z", + "events": [ + { + "start": "2022-07-07T01:17:18.960Z", + "end": "2022-07-07T02:54:39.370Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T02:54:39.370Z", + "end": "2022-07-07T04:31:59.780Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T04:31:59.780Z", + "end": "2022-07-07T06:09:20.190Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T06:09:20.190Z", + "end": "2022-07-07T07:46:40.600Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T07:46:40.600Z", + "end": "2022-07-07T09:24:01.010Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "584069374462394368", + "start": "2022-04-19T15:12:17.069Z", + "end": "2022-04-19T15:27:25.464Z", + "events": [ + { + "start": "2022-04-19T15:12:17.069Z", + "end": "2022-04-19T15:17:19.867Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T15:17:19.867Z", + "end": "2022-04-19T15:22:22.665Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-19T15:22:22.665Z", + "end": "2022-04-19T15:27:25.463Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "597588168178663434", + "start": "2022-07-29T11:44:57.126Z", + "end": "2022-07-29T13:13:32.429Z", + "events": [ + { + "start": "2022-07-29T11:44:57.126Z", + "end": "2022-07-29T12:02:40.186Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T12:02:40.186Z", + "end": "2022-07-29T12:20:23.246Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T12:20:23.246Z", + "end": "2022-07-29T12:38:06.306Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T12:38:06.306Z", + "end": "2022-07-29T12:55:49.366Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T12:55:49.366Z", + "end": "2022-07-29T13:13:32.426Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "554921822626381879", + "start": "2022-08-04T20:27:15.177Z", + "end": "2022-08-05T03:57:52.401Z", + "events": [ + { + "start": "2022-08-04T20:27:15.177Z", + "end": "2022-08-04T21:57:22.621Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T21:57:22.621Z", + "end": "2022-08-04T23:27:30.065Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T23:27:30.065Z", + "end": "2022-08-05T00:57:37.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T00:57:37.509Z", + "end": "2022-08-05T02:27:44.953Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T02:27:44.953Z", + "end": "2022-08-05T03:57:52.397Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "508057374875975682", + "start": "2022-06-27T17:26:56.079Z", + "end": "2022-06-27T23:06:47.545Z", + "events": [ + { + "start": "2022-06-27T17:26:56.079Z", + "end": "2022-06-27T20:16:51.812Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T20:16:51.812Z", + "end": "2022-06-27T23:06:47.545Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "182925797752958092", + "game": "528145079819436043", + "start": "2022-04-25T05:23:29.283Z", + "end": "2022-04-25T12:38:17.491Z", + "events": [ + { + "start": "2022-04-25T05:23:29.283Z", + "end": "2022-04-25T07:12:11.335Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T07:12:11.335Z", + "end": "2022-04-25T09:00:53.387Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-25T09:00:53.387Z", + "end": "2022-04-25T10:49:35.439Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T10:49:35.439Z", + "end": "2022-04-25T12:38:17.491Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "395281349698024181", + "game": "512789427462995988", + "start": "2022-06-14T10:08:04.608Z", + "end": "2022-06-14T12:11:37.684Z", + "events": [ + { + "start": "2022-06-14T10:08:04.608Z", + "end": "2022-06-14T12:11:37.684Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "713444659295913502", + "game": "542075586886107149", + "start": "2022-07-21T21:58:39.170Z", + "end": "2022-07-22T04:33:32.739Z", + "events": [ + { + "start": "2022-07-21T21:58:39.170Z", + "end": "2022-07-22T04:33:32.739Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "584489284152985092", + "game": "569253958967885828", + "start": "2022-05-03T17:21:06.790Z", + "end": "2022-05-03T23:13:39.354Z", + "events": [ + { + "start": "2022-05-03T17:21:06.790Z", + "end": "2022-05-03T18:31:37.302Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T18:31:37.302Z", + "end": "2022-05-03T19:42:07.814Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T19:42:07.814Z", + "end": "2022-05-03T20:52:38.326Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-03T20:52:38.326Z", + "end": "2022-05-03T22:03:08.838Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T22:03:08.838Z", + "end": "2022-05-03T23:13:39.350Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "430732724825949756", + "game": "546175179542364160", + "start": "2022-04-27T13:21:46.611Z", + "end": "2022-04-27T17:11:52.339Z", + "events": [ + { + "start": "2022-04-27T13:21:46.611Z", + "end": "2022-04-27T17:11:52.339Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "182925797752958092", + "game": "542475118396309528", + "start": "2022-07-21T22:13:25.965Z", + "end": "2022-07-22T01:51:20.055Z", + "events": [ + { + "start": "2022-07-21T22:13:25.965Z", + "end": "2022-07-22T00:02:23.010Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T00:02:23.010Z", + "end": "2022-07-22T01:51:20.055Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "336473229248470346", + "game": "550277544025522176", + "start": "2022-07-07T20:00:00.408Z", + "end": "2022-07-08T05:20:16.025Z", + "events": [ + { + "start": "2022-07-07T20:00:00.408Z", + "end": "2022-07-08T05:20:16.025Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786084290971413565", + "game": "592976500802846750", + "start": "2022-06-09T03:45:30.498Z", + "end": "2022-06-09T05:21:32.636Z", + "events": [ + { + "start": "2022-06-09T03:45:30.498Z", + "end": "2022-06-09T04:33:31.567Z", + "state": "IDLE" + }, + { + "start": "2022-06-09T04:33:31.567Z", + "end": "2022-06-09T05:21:32.636Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "463820732483181525", + "game": "554921822626381879", + "start": "2022-08-04T09:22:34.472Z", + "end": "2022-08-04T12:27:19.431Z", + "events": [ + { + "start": "2022-08-04T09:22:34.472Z", + "end": "2022-08-04T10:08:45.711Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T10:08:45.711Z", + "end": "2022-08-04T10:54:56.950Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-04T10:54:56.950Z", + "end": "2022-08-04T11:41:08.189Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T11:41:08.189Z", + "end": "2022-08-04T12:27:19.428Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "614380482620293151", + "start": "2022-04-14T18:58:30.742Z", + "end": "2022-04-14T20:33:44.438Z", + "events": [ + { + "start": "2022-04-14T18:58:30.742Z", + "end": "2022-04-14T19:46:07.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T19:46:07.590Z", + "end": "2022-04-14T20:33:44.438Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "550277544025522176", + "start": "2022-05-15T19:46:40.233Z", + "end": "2022-05-16T03:42:10.327Z", + "events": [ + { + "start": "2022-05-15T19:46:40.233Z", + "end": "2022-05-15T23:44:25.280Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T23:44:25.280Z", + "end": "2022-05-16T03:42:10.327Z", + "state": "IDLE" + } + ] + }, + { + "user": "147480245458136084", + "game": "518088627234930688", + "start": "2022-05-03T14:33:00.049Z", + "end": "2022-05-03T15:47:21.107Z", + "events": [ + { + "start": "2022-05-03T14:33:00.049Z", + "end": "2022-05-03T14:57:47.068Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T14:57:47.068Z", + "end": "2022-05-03T15:22:34.087Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T15:22:34.087Z", + "end": "2022-05-03T15:47:21.106Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "356875221078245376", + "start": "2022-04-14T19:27:56.192Z", + "end": "2022-04-14T19:44:07.748Z", + "events": [ + { + "start": "2022-04-14T19:27:56.192Z", + "end": "2022-04-14T19:36:01.970Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T19:36:01.970Z", + "end": "2022-04-14T19:44:07.748Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "695941172337689379", + "game": "535869836748783616", + "start": "2022-04-22T12:19:15.787Z", + "end": "2022-04-22T18:25:15.244Z", + "events": [ + { + "start": "2022-04-22T12:19:15.787Z", + "end": "2022-04-22T18:25:15.244Z", + "state": "IDLE" + } + ] + }, + { + "user": "608700383891121851", + "game": "512789427462995988", + "start": "2022-05-28T18:43:41.840Z", + "end": "2022-05-29T02:43:35.008Z", + "events": [ + { + "start": "2022-05-28T18:43:41.840Z", + "end": "2022-05-29T02:43:35.008Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "512501896896970762", + "start": "2022-07-23T13:41:12.632Z", + "end": "2022-07-23T19:58:22.156Z", + "events": [ + { + "start": "2022-07-23T13:41:12.632Z", + "end": "2022-07-23T16:49:47.394Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T16:49:47.394Z", + "end": "2022-07-23T19:58:22.156Z", + "state": "IDLE" + } + ] + }, + { + "user": "329429619186234053", + "game": "535869836748783616", + "start": "2022-05-27T22:26:32.880Z", + "end": "2022-05-28T05:38:38.301Z", + "events": [ + { + "start": "2022-05-27T22:26:32.880Z", + "end": "2022-05-27T23:52:57.964Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T23:52:57.964Z", + "end": "2022-05-28T01:19:23.048Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T01:19:23.048Z", + "end": "2022-05-28T02:45:48.132Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T02:45:48.132Z", + "end": "2022-05-28T04:12:13.216Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T04:12:13.216Z", + "end": "2022-05-28T05:38:38.300Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "540120593576493057", + "start": "2022-05-30T15:19:45.622Z", + "end": "2022-05-30T17:21:25.767Z", + "events": [ + { + "start": "2022-05-30T15:19:45.622Z", + "end": "2022-05-30T17:21:25.767Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "385692164951394422", + "game": "553697181249437716", + "start": "2022-07-04T06:16:27.053Z", + "end": "2022-07-04T07:01:11.891Z", + "events": [ + { + "start": "2022-07-04T06:16:27.053Z", + "end": "2022-07-04T06:38:49.472Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T06:38:49.472Z", + "end": "2022-07-04T07:01:11.891Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "137536289023624121", + "game": "553697181249437716", + "start": "2022-07-02T13:51:01.274Z", + "end": "2022-07-02T23:06:42.945Z", + "events": [ + { + "start": "2022-07-02T13:51:01.274Z", + "end": "2022-07-02T16:09:56.691Z", + "state": "IDLE" + }, + { + "start": "2022-07-02T16:09:56.691Z", + "end": "2022-07-02T18:28:52.108Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T18:28:52.108Z", + "end": "2022-07-02T20:47:47.525Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T20:47:47.525Z", + "end": "2022-07-02T23:06:42.942Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "521350927850935744", + "game": "614380482620293151", + "start": "2022-05-28T02:49:49.817Z", + "end": "2022-05-28T08:25:14.973Z", + "events": [ + { + "start": "2022-05-28T02:49:49.817Z", + "end": "2022-05-28T03:56:54.848Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T03:56:54.848Z", + "end": "2022-05-28T05:03:59.879Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T05:03:59.879Z", + "end": "2022-05-28T06:11:04.910Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T06:11:04.910Z", + "end": "2022-05-28T07:18:09.941Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T07:18:09.941Z", + "end": "2022-05-28T08:25:14.972Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "494763633796983404", + "game": "560781100197216267", + "start": "2022-08-06T12:03:27.839Z", + "end": "2022-08-06T12:44:27.643Z", + "events": [ + { + "start": "2022-08-06T12:03:27.839Z", + "end": "2022-08-06T12:17:07.773Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T12:17:07.773Z", + "end": "2022-08-06T12:30:47.707Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T12:30:47.707Z", + "end": "2022-08-06T12:44:27.641Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "406850294055619241", + "game": "549512435585908756", + "start": "2022-05-26T22:00:45.504Z", + "end": "2022-05-27T06:05:18.465Z", + "events": [ + { + "start": "2022-05-26T22:00:45.504Z", + "end": "2022-05-27T06:05:18.465Z", + "state": "IDLE" + } + ] + }, + { + "user": "467658810442648809", + "game": "554573307161214977", + "start": "2022-07-13T13:08:11.463Z", + "end": "2022-07-13T18:27:04.588Z", + "events": [ + { + "start": "2022-07-13T13:08:11.463Z", + "end": "2022-07-13T14:54:29.171Z", + "state": "IDLE" + }, + { + "start": "2022-07-13T14:54:29.171Z", + "end": "2022-07-13T16:40:46.879Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T16:40:46.879Z", + "end": "2022-07-13T18:27:04.587Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "518088627234930688", + "start": "2022-05-26T13:15:14.257Z", + "end": "2022-05-26T21:01:14.172Z", + "events": [ + { + "start": "2022-05-26T13:15:14.257Z", + "end": "2022-05-26T17:08:14.214Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T17:08:14.214Z", + "end": "2022-05-26T21:01:14.171Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "512498684211232768", + "start": "2022-04-25T17:03:21.199Z", + "end": "2022-04-25T17:16:59.002Z", + "events": [ + { + "start": "2022-04-25T17:03:21.199Z", + "end": "2022-04-25T17:06:04.759Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T17:06:04.759Z", + "end": "2022-04-25T17:08:48.319Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T17:08:48.319Z", + "end": "2022-04-25T17:11:31.879Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T17:11:31.879Z", + "end": "2022-04-25T17:14:15.439Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T17:14:15.439Z", + "end": "2022-04-25T17:16:58.999Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "514228311661084682", + "start": "2022-06-22T08:19:03.881Z", + "end": "2022-06-22T12:05:32.729Z", + "events": [ + { + "start": "2022-06-22T08:19:03.881Z", + "end": "2022-06-22T12:05:32.729Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "394970121077311909", + "game": "519644267212177418", + "start": "2022-07-28T04:12:53.675Z", + "end": "2022-07-28T11:37:07.335Z", + "events": [ + { + "start": "2022-07-28T04:12:53.675Z", + "end": "2022-07-28T06:40:58.228Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-28T06:40:58.228Z", + "end": "2022-07-28T09:09:02.781Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T09:09:02.781Z", + "end": "2022-07-28T11:37:07.334Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "866600263421429886", + "game": "576482762446602270", + "start": "2022-04-25T04:59:16.312Z", + "end": "2022-04-25T07:34:23.857Z", + "events": [ + { + "start": "2022-04-25T04:59:16.312Z", + "end": "2022-04-25T05:30:17.821Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-25T05:30:17.821Z", + "end": "2022-04-25T06:01:19.330Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-25T06:01:19.330Z", + "end": "2022-04-25T06:32:20.839Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-25T06:32:20.839Z", + "end": "2022-04-25T07:03:22.348Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-25T07:03:22.348Z", + "end": "2022-04-25T07:34:23.857Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "553697181249437716", + "start": "2022-06-08T02:05:25.321Z", + "end": "2022-06-08T03:15:59.761Z", + "events": [ + { + "start": "2022-06-08T02:05:25.321Z", + "end": "2022-06-08T02:28:56.801Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-08T02:28:56.801Z", + "end": "2022-06-08T02:52:28.281Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T02:52:28.281Z", + "end": "2022-06-08T03:15:59.761Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "512699108809637890", + "start": "2022-05-19T19:17:29.858Z", + "end": "2022-05-20T02:50:42.288Z", + "events": [ + { + "start": "2022-05-19T19:17:29.858Z", + "end": "2022-05-19T21:10:47.965Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T21:10:47.965Z", + "end": "2022-05-19T23:04:06.072Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T23:04:06.072Z", + "end": "2022-05-20T00:57:24.179Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-20T00:57:24.179Z", + "end": "2022-05-20T02:50:42.286Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "131482253203487270", + "game": "553697181249437716", + "start": "2022-05-30T09:14:30.546Z", + "end": "2022-05-30T11:07:06.715Z", + "events": [ + { + "start": "2022-05-30T09:14:30.546Z", + "end": "2022-05-30T09:52:02.602Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T09:52:02.602Z", + "end": "2022-05-30T10:29:34.658Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T10:29:34.658Z", + "end": "2022-05-30T11:07:06.714Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "494763633796983404", + "game": "614380482620293151", + "start": "2022-08-03T15:21:53.186Z", + "end": "2022-08-03T22:56:04.560Z", + "events": [ + { + "start": "2022-08-03T15:21:53.186Z", + "end": "2022-08-03T17:53:16.977Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T17:53:16.977Z", + "end": "2022-08-03T20:24:40.768Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T20:24:40.768Z", + "end": "2022-08-03T22:56:04.559Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "584069374462394368", + "start": "2022-04-27T14:53:39.561Z", + "end": "2022-04-28T00:47:32.080Z", + "events": [ + { + "start": "2022-04-27T14:53:39.561Z", + "end": "2022-04-27T19:50:35.820Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T19:50:35.820Z", + "end": "2022-04-28T00:47:32.079Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "520462578061803588", + "start": "2022-05-11T05:53:05.461Z", + "end": "2022-05-11T08:36:00.537Z", + "events": [ + { + "start": "2022-05-11T05:53:05.461Z", + "end": "2022-05-11T06:47:23.819Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T06:47:23.819Z", + "end": "2022-05-11T07:41:42.177Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T07:41:42.177Z", + "end": "2022-05-11T08:36:00.535Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "131482253203487270", + "game": "597860020935327787", + "start": "2022-07-02T07:24:02.329Z", + "end": "2022-07-02T08:25:53.172Z", + "events": [ + { + "start": "2022-07-02T07:24:02.329Z", + "end": "2022-07-02T07:54:57.750Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T07:54:57.750Z", + "end": "2022-07-02T08:25:53.171Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "841397740041930984", + "game": "528145079819436043", + "start": "2022-07-17T23:14:27.034Z", + "end": "2022-07-18T04:27:39.006Z", + "events": [ + { + "start": "2022-07-17T23:14:27.034Z", + "end": "2022-07-18T00:58:51.024Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T00:58:51.024Z", + "end": "2022-07-18T02:43:15.014Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T02:43:15.014Z", + "end": "2022-07-18T04:27:39.004Z", + "state": "IDLE" + } + ] + }, + { + "user": "106607193284486979", + "game": "575412499399180288", + "start": "2022-06-30T23:00:49.973Z", + "end": "2022-07-01T01:22:23.630Z", + "events": [ + { + "start": "2022-06-30T23:00:49.973Z", + "end": "2022-07-01T00:11:36.801Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T00:11:36.801Z", + "end": "2022-07-01T01:22:23.629Z", + "state": "IDLE" + } + ] + }, + { + "user": "153631479524744694", + "game": "575412499399180288", + "start": "2022-06-07T06:45:31.875Z", + "end": "2022-06-07T10:06:10.024Z", + "events": [ + { + "start": "2022-06-07T06:45:31.875Z", + "end": "2022-06-07T07:35:41.412Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-07T07:35:41.412Z", + "end": "2022-06-07T08:25:50.949Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T08:25:50.949Z", + "end": "2022-06-07T09:16:00.486Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T09:16:00.486Z", + "end": "2022-06-07T10:06:10.023Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "747381962738157784", + "game": "512498684211232768", + "start": "2022-04-15T07:20:04.956Z", + "end": "2022-04-15T12:25:37.801Z", + "events": [ + { + "start": "2022-04-15T07:20:04.956Z", + "end": "2022-04-15T08:36:28.167Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-15T08:36:28.167Z", + "end": "2022-04-15T09:52:51.378Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T09:52:51.378Z", + "end": "2022-04-15T11:09:14.589Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T11:09:14.589Z", + "end": "2022-04-15T12:25:37.800Z", + "state": "IDLE" + } + ] + }, + { + "user": "549054179973094329", + "game": "575412499399180288", + "start": "2022-04-14T23:36:10.494Z", + "end": "2022-04-15T01:15:58.194Z", + "events": [ + { + "start": "2022-04-14T23:36:10.494Z", + "end": "2022-04-15T01:15:58.194Z", + "state": "IDLE" + } + ] + }, + { + "user": "695941172337689379", + "game": "356875221078245376", + "start": "2022-07-06T19:04:29.970Z", + "end": "2022-07-06T23:57:26.885Z", + "events": [ + { + "start": "2022-07-06T19:04:29.970Z", + "end": "2022-07-06T20:42:08.941Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T20:42:08.941Z", + "end": "2022-07-06T22:19:47.912Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T22:19:47.912Z", + "end": "2022-07-06T23:57:26.883Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "575412499399180288", + "start": "2022-05-11T23:00:25.961Z", + "end": "2022-05-12T02:37:38.840Z", + "events": [ + { + "start": "2022-05-11T23:00:25.961Z", + "end": "2022-05-12T00:49:02.400Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T00:49:02.400Z", + "end": "2022-05-12T02:37:38.839Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "584489284152985092", + "game": "535869836748783616", + "start": "2022-06-11T14:33:10.557Z", + "end": "2022-06-11T22:47:11.897Z", + "events": [ + { + "start": "2022-06-11T14:33:10.557Z", + "end": "2022-06-11T16:11:58.825Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T16:11:58.825Z", + "end": "2022-06-11T17:50:47.093Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-11T17:50:47.093Z", + "end": "2022-06-11T19:29:35.361Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-11T19:29:35.361Z", + "end": "2022-06-11T21:08:23.629Z", + "state": "IDLE" + }, + { + "start": "2022-06-11T21:08:23.629Z", + "end": "2022-06-11T22:47:11.897Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "519644267212177418", + "start": "2022-08-03T14:08:22.068Z", + "end": "2022-08-03T19:41:50.732Z", + "events": [ + { + "start": "2022-08-03T14:08:22.068Z", + "end": "2022-08-03T16:55:06.400Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T16:55:06.400Z", + "end": "2022-08-03T19:41:50.732Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "101572134856427564", + "game": "614448244260339712", + "start": "2022-04-23T10:36:54.041Z", + "end": "2022-04-23T19:03:25.298Z", + "events": [ + { + "start": "2022-04-23T10:36:54.041Z", + "end": "2022-04-23T12:18:12.292Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-23T12:18:12.292Z", + "end": "2022-04-23T13:59:30.543Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-23T13:59:30.543Z", + "end": "2022-04-23T15:40:48.794Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T15:40:48.794Z", + "end": "2022-04-23T17:22:07.045Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-23T17:22:07.045Z", + "end": "2022-04-23T19:03:25.296Z", + "state": "IDLE" + } + ] + }, + { + "user": "101572134856427564", + "game": "512789343157485602", + "start": "2022-06-06T21:59:22.987Z", + "end": "2022-06-07T01:01:49.447Z", + "events": [ + { + "start": "2022-06-06T21:59:22.987Z", + "end": "2022-06-06T22:44:59.602Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T22:44:59.602Z", + "end": "2022-06-06T23:30:36.217Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-06T23:30:36.217Z", + "end": "2022-06-07T00:16:12.832Z", + "state": "IDLE" + }, + { + "start": "2022-06-07T00:16:12.832Z", + "end": "2022-06-07T01:01:49.447Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "715446191320920764", + "game": "511619499053678668", + "start": "2022-05-02T23:17:23.978Z", + "end": "2022-05-03T05:34:17.923Z", + "events": [ + { + "start": "2022-05-02T23:17:23.978Z", + "end": "2022-05-03T02:25:50.950Z", + "state": "IDLE" + }, + { + "start": "2022-05-03T02:25:50.950Z", + "end": "2022-05-03T05:34:17.922Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "625617695768437507", + "game": "576482762446602270", + "start": "2022-05-15T03:38:08.985Z", + "end": "2022-05-15T04:50:49.467Z", + "events": [ + { + "start": "2022-05-15T03:38:08.985Z", + "end": "2022-05-15T04:02:22.479Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T04:02:22.479Z", + "end": "2022-05-15T04:26:35.973Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T04:26:35.973Z", + "end": "2022-05-15T04:50:49.467Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "200801427122341912", + "game": "520453007578628124", + "start": "2022-07-31T02:59:55.734Z", + "end": "2022-07-31T04:32:26.356Z", + "events": [ + { + "start": "2022-07-31T02:59:55.734Z", + "end": "2022-07-31T03:23:03.389Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-31T03:23:03.389Z", + "end": "2022-07-31T03:46:11.044Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T03:46:11.044Z", + "end": "2022-07-31T04:09:18.699Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-31T04:09:18.699Z", + "end": "2022-07-31T04:32:26.354Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "185442579258045359", + "game": "546175179542364160", + "start": "2022-04-13T13:12:05.037Z", + "end": "2022-04-13T22:15:31.776Z", + "events": [ + { + "start": "2022-04-13T13:12:05.037Z", + "end": "2022-04-13T15:00:46.384Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-13T15:00:46.384Z", + "end": "2022-04-13T16:49:27.731Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T16:49:27.731Z", + "end": "2022-04-13T18:38:09.078Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-13T18:38:09.078Z", + "end": "2022-04-13T20:26:50.425Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T20:26:50.425Z", + "end": "2022-04-13T22:15:31.772Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "510690749854514547", + "game": "554573307161214977", + "start": "2022-06-04T16:30:31.844Z", + "end": "2022-06-04T21:57:57.074Z", + "events": [ + { + "start": "2022-06-04T16:30:31.844Z", + "end": "2022-06-04T18:19:40.254Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T18:19:40.254Z", + "end": "2022-06-04T20:08:48.664Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T20:08:48.664Z", + "end": "2022-06-04T21:57:57.074Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "592976500802846750", + "start": "2022-05-14T06:43:48.403Z", + "end": "2022-05-14T11:53:47.173Z", + "events": [ + { + "start": "2022-05-14T06:43:48.403Z", + "end": "2022-05-14T08:01:18.095Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T08:01:18.095Z", + "end": "2022-05-14T09:18:47.787Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T09:18:47.787Z", + "end": "2022-05-14T10:36:17.479Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T10:36:17.479Z", + "end": "2022-05-14T11:53:47.171Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "512501896896970762", + "start": "2022-07-08T17:59:24.833Z", + "end": "2022-07-09T01:16:12.269Z", + "events": [ + { + "start": "2022-07-08T17:59:24.833Z", + "end": "2022-07-09T01:16:12.269Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "512789120234422301", + "start": "2022-06-05T22:00:46.818Z", + "end": "2022-06-06T07:06:52.804Z", + "events": [ + { + "start": "2022-06-05T22:00:46.818Z", + "end": "2022-06-05T23:50:00.015Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T23:50:00.015Z", + "end": "2022-06-06T01:39:13.212Z", + "state": "IDLE" + }, + { + "start": "2022-06-06T01:39:13.212Z", + "end": "2022-06-06T03:28:26.409Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T03:28:26.409Z", + "end": "2022-06-06T05:17:39.606Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T05:17:39.606Z", + "end": "2022-06-06T07:06:52.803Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "200801427122341912", + "game": "614380482620293151", + "start": "2022-05-24T11:09:44.499Z", + "end": "2022-05-24T20:57:23.870Z", + "events": [ + { + "start": "2022-05-24T11:09:44.499Z", + "end": "2022-05-24T16:03:34.184Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T16:03:34.184Z", + "end": "2022-05-24T20:57:23.869Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "922664752332558395", + "game": "554921822626381879", + "start": "2022-05-26T00:58:35.032Z", + "end": "2022-05-26T02:24:26.321Z", + "events": [ + { + "start": "2022-05-26T00:58:35.032Z", + "end": "2022-05-26T01:27:12.128Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T01:27:12.128Z", + "end": "2022-05-26T01:55:49.224Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T01:55:49.224Z", + "end": "2022-05-26T02:24:26.320Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "519644368735567873", + "start": "2022-04-18T18:30:36.308Z", + "end": "2022-04-19T00:09:15.287Z", + "events": [ + { + "start": "2022-04-18T18:30:36.308Z", + "end": "2022-04-18T19:38:20.103Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T19:38:20.103Z", + "end": "2022-04-18T20:46:03.898Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T20:46:03.898Z", + "end": "2022-04-18T21:53:47.693Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T21:53:47.693Z", + "end": "2022-04-18T23:01:31.488Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T23:01:31.488Z", + "end": "2022-04-19T00:09:15.283Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "572456126872944651", + "start": "2022-05-03T08:08:05.233Z", + "end": "2022-05-03T12:41:22.459Z", + "events": [ + { + "start": "2022-05-03T08:08:05.233Z", + "end": "2022-05-03T09:16:24.539Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-03T09:16:24.539Z", + "end": "2022-05-03T10:24:43.845Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-03T10:24:43.845Z", + "end": "2022-05-03T11:33:03.151Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-03T11:33:03.151Z", + "end": "2022-05-03T12:41:22.457Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "596421190780633864", + "game": "535384357536399404", + "start": "2022-05-10T01:19:32.531Z", + "end": "2022-05-10T10:26:58.071Z", + "events": [ + { + "start": "2022-05-10T01:19:32.531Z", + "end": "2022-05-10T03:09:01.639Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T03:09:01.639Z", + "end": "2022-05-10T04:58:30.747Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T04:58:30.747Z", + "end": "2022-05-10T06:47:59.855Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T06:47:59.855Z", + "end": "2022-05-10T08:37:28.963Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T08:37:28.963Z", + "end": "2022-05-10T10:26:58.071Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "866600263421429886", + "game": "519644368735567873", + "start": "2022-06-26T05:52:51.449Z", + "end": "2022-06-26T09:04:56.235Z", + "events": [ + { + "start": "2022-06-26T05:52:51.449Z", + "end": "2022-06-26T07:28:53.842Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-26T07:28:53.842Z", + "end": "2022-06-26T09:04:56.235Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "541104083732114799", + "game": "554573307161214977", + "start": "2022-07-10T00:17:01.377Z", + "end": "2022-07-10T04:51:25.434Z", + "events": [ + { + "start": "2022-07-10T00:17:01.377Z", + "end": "2022-07-10T01:48:29.396Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-10T01:48:29.396Z", + "end": "2022-07-10T03:19:57.415Z", + "state": "IDLE" + }, + { + "start": "2022-07-10T03:19:57.415Z", + "end": "2022-07-10T04:51:25.434Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "597588168178663434", + "start": "2022-05-27T17:33:03.797Z", + "end": "2022-05-27T23:05:02.091Z", + "events": [ + { + "start": "2022-05-27T17:33:03.797Z", + "end": "2022-05-27T19:23:43.228Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T19:23:43.228Z", + "end": "2022-05-27T21:14:22.659Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T21:14:22.659Z", + "end": "2022-05-27T23:05:02.090Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "512789120234422301", + "start": "2022-05-06T02:37:22.613Z", + "end": "2022-05-06T07:41:57.151Z", + "events": [ + { + "start": "2022-05-06T02:37:22.613Z", + "end": "2022-05-06T03:53:31.247Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T03:53:31.247Z", + "end": "2022-05-06T05:09:39.881Z", + "state": "IDLE" + }, + { + "start": "2022-05-06T05:09:39.881Z", + "end": "2022-05-06T06:25:48.515Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-06T06:25:48.515Z", + "end": "2022-05-06T07:41:57.149Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "510199020782747732", + "start": "2022-06-06T16:39:37.937Z", + "end": "2022-06-06T20:20:50.799Z", + "events": [ + { + "start": "2022-06-06T16:39:37.937Z", + "end": "2022-06-06T17:53:22.224Z", + "state": "IDLE" + }, + { + "start": "2022-06-06T17:53:22.224Z", + "end": "2022-06-06T19:07:06.511Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T19:07:06.511Z", + "end": "2022-06-06T20:20:50.798Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "791267126190249625", + "game": "520453007578628124", + "start": "2022-07-21T09:53:32.607Z", + "end": "2022-07-21T12:05:39.495Z", + "events": [ + { + "start": "2022-07-21T09:53:32.607Z", + "end": "2022-07-21T10:37:34.903Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T10:37:34.903Z", + "end": "2022-07-21T11:21:37.199Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T11:21:37.199Z", + "end": "2022-07-21T12:05:39.495Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "553697181249437716", + "start": "2022-05-26T00:28:22.266Z", + "end": "2022-05-26T02:36:35.926Z", + "events": [ + { + "start": "2022-05-26T00:28:22.266Z", + "end": "2022-05-26T02:36:35.926Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "614380482620293151", + "start": "2022-05-15T23:08:36.116Z", + "end": "2022-05-16T07:59:29.000Z", + "events": [ + { + "start": "2022-05-15T23:08:36.116Z", + "end": "2022-05-16T02:05:33.744Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T02:05:33.744Z", + "end": "2022-05-16T05:02:31.372Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T05:02:31.372Z", + "end": "2022-05-16T07:59:29.000Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "508057374875975682", + "start": "2022-07-11T21:44:57.012Z", + "end": "2022-07-11T22:19:10.301Z", + "events": [ + { + "start": "2022-07-11T21:44:57.012Z", + "end": "2022-07-11T22:19:10.301Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "614448244260339712", + "start": "2022-06-27T14:06:46.878Z", + "end": "2022-06-27T16:56:21.847Z", + "events": [ + { + "start": "2022-06-27T14:06:46.878Z", + "end": "2022-06-27T14:49:10.620Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T14:49:10.620Z", + "end": "2022-06-27T15:31:34.362Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T15:31:34.362Z", + "end": "2022-06-27T16:13:58.104Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T16:13:58.104Z", + "end": "2022-06-27T16:56:21.846Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "931211630078779300", + "game": "565341641427124244", + "start": "2022-06-06T02:40:47.819Z", + "end": "2022-06-06T08:24:59.691Z", + "events": [ + { + "start": "2022-06-06T02:40:47.819Z", + "end": "2022-06-06T04:35:31.776Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-06T04:35:31.776Z", + "end": "2022-06-06T06:30:15.733Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-06T06:30:15.733Z", + "end": "2022-06-06T08:24:59.690Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "768513326430993269", + "game": "518088627234930688", + "start": "2022-07-17T14:02:02.756Z", + "end": "2022-07-17T20:52:08.851Z", + "events": [ + { + "start": "2022-07-17T14:02:02.756Z", + "end": "2022-07-17T16:18:44.787Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T16:18:44.787Z", + "end": "2022-07-17T18:35:26.818Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-17T18:35:26.818Z", + "end": "2022-07-17T20:52:08.849Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951234649334557435", + "game": "565341641427124244", + "start": "2022-06-03T22:27:28.463Z", + "end": "2022-06-04T07:54:38.815Z", + "events": [ + { + "start": "2022-06-03T22:27:28.463Z", + "end": "2022-06-04T03:11:03.639Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T03:11:03.639Z", + "end": "2022-06-04T07:54:38.815Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "922664752332558395", + "game": "592976500802846750", + "start": "2022-07-20T23:14:14.152Z", + "end": "2022-07-21T03:30:30.827Z", + "events": [ + { + "start": "2022-07-20T23:14:14.152Z", + "end": "2022-07-21T00:18:18.320Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T00:18:18.320Z", + "end": "2022-07-21T01:22:22.488Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T01:22:22.488Z", + "end": "2022-07-21T02:26:26.656Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-21T02:26:26.656Z", + "end": "2022-07-21T03:30:30.824Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "658550407298256890", + "game": "572456126872944651", + "start": "2022-07-11T23:25:35.248Z", + "end": "2022-07-12T04:35:10.951Z", + "events": [ + { + "start": "2022-07-11T23:25:35.248Z", + "end": "2022-07-12T00:42:59.173Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T00:42:59.173Z", + "end": "2022-07-12T02:00:23.098Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T02:00:23.098Z", + "end": "2022-07-12T03:17:47.023Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T03:17:47.023Z", + "end": "2022-07-12T04:35:10.948Z", + "state": "IDLE" + } + ] + }, + { + "user": "549054179973094329", + "game": "512789343157485602", + "start": "2022-05-17T03:18:38.407Z", + "end": "2022-05-17T07:08:19.709Z", + "events": [ + { + "start": "2022-05-17T03:18:38.407Z", + "end": "2022-05-17T04:04:34.667Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T04:04:34.667Z", + "end": "2022-05-17T04:50:30.927Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T04:50:30.927Z", + "end": "2022-05-17T05:36:27.187Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T05:36:27.187Z", + "end": "2022-05-17T06:22:23.447Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T06:22:23.447Z", + "end": "2022-05-17T07:08:19.707Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "747381962738157784", + "game": "606163888052109312", + "start": "2022-06-22T15:43:52.351Z", + "end": "2022-06-22T18:04:48.422Z", + "events": [ + { + "start": "2022-06-22T15:43:52.351Z", + "end": "2022-06-22T18:04:48.422Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "198010595767135394", + "game": "530454325214969866", + "start": "2022-07-02T03:50:05.771Z", + "end": "2022-07-02T13:50:11.867Z", + "events": [ + { + "start": "2022-07-02T03:50:05.771Z", + "end": "2022-07-02T07:10:07.803Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T07:10:07.803Z", + "end": "2022-07-02T10:30:09.835Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-02T10:30:09.835Z", + "end": "2022-07-02T13:50:11.867Z", + "state": "IDLE" + } + ] + }, + { + "user": "161887854890745672", + "game": "535384357536399404", + "start": "2022-05-19T02:50:21.787Z", + "end": "2022-05-19T05:17:57.503Z", + "events": [ + { + "start": "2022-05-19T02:50:21.787Z", + "end": "2022-05-19T05:17:57.503Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "841397740041930984", + "game": "569008830701240340", + "start": "2022-08-02T09:12:28.406Z", + "end": "2022-08-02T11:06:32.430Z", + "events": [ + { + "start": "2022-08-02T09:12:28.406Z", + "end": "2022-08-02T09:35:17.210Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T09:35:17.210Z", + "end": "2022-08-02T09:58:06.014Z", + "state": "IDLE" + }, + { + "start": "2022-08-02T09:58:06.014Z", + "end": "2022-08-02T10:20:54.818Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T10:20:54.818Z", + "end": "2022-08-02T10:43:43.622Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T10:43:43.622Z", + "end": "2022-08-02T11:06:32.426Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "541104083732114799", + "game": "356875221078245376", + "start": "2022-07-30T16:10:34.016Z", + "end": "2022-07-30T21:33:58.902Z", + "events": [ + { + "start": "2022-07-30T16:10:34.016Z", + "end": "2022-07-30T17:15:14.993Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-30T17:15:14.993Z", + "end": "2022-07-30T18:19:55.970Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T18:19:55.970Z", + "end": "2022-07-30T19:24:36.947Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T19:24:36.947Z", + "end": "2022-07-30T20:29:17.924Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T20:29:17.924Z", + "end": "2022-07-30T21:33:58.901Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "596421190780633864", + "game": "558547388583772201", + "start": "2022-04-27T18:57:31.827Z", + "end": "2022-04-28T00:21:10.271Z", + "events": [ + { + "start": "2022-04-27T18:57:31.827Z", + "end": "2022-04-27T20:45:24.641Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T20:45:24.641Z", + "end": "2022-04-27T22:33:17.455Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T22:33:17.455Z", + "end": "2022-04-28T00:21:10.269Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "576482762446602270", + "start": "2022-07-26T14:17:38.356Z", + "end": "2022-07-26T20:22:37.614Z", + "events": [ + { + "start": "2022-07-26T14:17:38.356Z", + "end": "2022-07-26T20:22:37.614Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "520453007578628124", + "start": "2022-05-13T08:38:56.279Z", + "end": "2022-05-13T15:14:39.782Z", + "events": [ + { + "start": "2022-05-13T08:38:56.279Z", + "end": "2022-05-13T15:14:39.782Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "590467327095087095", + "game": "512699108809637890", + "start": "2022-04-28T16:38:47.736Z", + "end": "2022-04-28T17:41:16.812Z", + "events": [ + { + "start": "2022-04-28T16:38:47.736Z", + "end": "2022-04-28T16:59:37.428Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T16:59:37.428Z", + "end": "2022-04-28T17:20:27.120Z", + "state": "IDLE" + }, + { + "start": "2022-04-28T17:20:27.120Z", + "end": "2022-04-28T17:41:16.812Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "394970121077311909", + "game": "592976500802846750", + "start": "2022-06-09T18:39:56.191Z", + "end": "2022-06-09T18:57:29.987Z", + "events": [ + { + "start": "2022-06-09T18:39:56.191Z", + "end": "2022-06-09T18:57:29.987Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "521842831262875670", + "start": "2022-05-01T23:21:35.835Z", + "end": "2022-05-02T07:11:12.334Z", + "events": [ + { + "start": "2022-05-01T23:21:35.835Z", + "end": "2022-05-02T01:18:59.959Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T01:18:59.959Z", + "end": "2022-05-02T03:16:24.083Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T03:16:24.083Z", + "end": "2022-05-02T05:13:48.207Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T05:13:48.207Z", + "end": "2022-05-02T07:11:12.331Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "554573307161214977", + "start": "2022-07-28T07:41:23.954Z", + "end": "2022-07-28T16:24:31.015Z", + "events": [ + { + "start": "2022-07-28T07:41:23.954Z", + "end": "2022-07-28T09:26:01.366Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T09:26:01.366Z", + "end": "2022-07-28T11:10:38.778Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T11:10:38.778Z", + "end": "2022-07-28T12:55:16.190Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T12:55:16.190Z", + "end": "2022-07-28T14:39:53.602Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-28T14:39:53.602Z", + "end": "2022-07-28T16:24:31.014Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "569008830701240340", + "start": "2022-06-03T21:14:03.977Z", + "end": "2022-06-04T01:12:25.895Z", + "events": [ + { + "start": "2022-06-03T21:14:03.977Z", + "end": "2022-06-03T22:01:44.360Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T22:01:44.360Z", + "end": "2022-06-03T22:49:24.743Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T22:49:24.743Z", + "end": "2022-06-03T23:37:05.126Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T23:37:05.126Z", + "end": "2022-06-04T00:24:45.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T00:24:45.509Z", + "end": "2022-06-04T01:12:25.892Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "900234800332446962", + "game": "530454325214969866", + "start": "2022-04-25T07:42:43.865Z", + "end": "2022-04-25T12:53:46.887Z", + "events": [ + { + "start": "2022-04-25T07:42:43.865Z", + "end": "2022-04-25T10:18:15.376Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T10:18:15.376Z", + "end": "2022-04-25T12:53:46.887Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "636935635446628860", + "game": "535384357536399404", + "start": "2022-07-20T03:02:15.661Z", + "end": "2022-07-20T04:29:55.768Z", + "events": [ + { + "start": "2022-07-20T03:02:15.661Z", + "end": "2022-07-20T03:19:47.682Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T03:19:47.682Z", + "end": "2022-07-20T03:37:19.703Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T03:37:19.703Z", + "end": "2022-07-20T03:54:51.724Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T03:54:51.724Z", + "end": "2022-07-20T04:12:23.745Z", + "state": "IDLE" + }, + { + "start": "2022-07-20T04:12:23.745Z", + "end": "2022-07-20T04:29:55.766Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "518088627234930688", + "start": "2022-06-30T07:41:04.001Z", + "end": "2022-06-30T17:18:07.666Z", + "events": [ + { + "start": "2022-06-30T07:41:04.001Z", + "end": "2022-06-30T17:18:07.666Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "356875221078245376", + "start": "2022-06-20T09:17:12.029Z", + "end": "2022-06-20T14:26:23.152Z", + "events": [ + { + "start": "2022-06-20T09:17:12.029Z", + "end": "2022-06-20T11:51:47.590Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T11:51:47.590Z", + "end": "2022-06-20T14:26:23.151Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "560781100197216267", + "start": "2022-08-05T07:20:02.546Z", + "end": "2022-08-05T15:33:34.806Z", + "events": [ + { + "start": "2022-08-05T07:20:02.546Z", + "end": "2022-08-05T08:58:44.998Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T08:58:44.998Z", + "end": "2022-08-05T10:37:27.450Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T10:37:27.450Z", + "end": "2022-08-05T12:16:09.902Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-05T12:16:09.902Z", + "end": "2022-08-05T13:54:52.354Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T13:54:52.354Z", + "end": "2022-08-05T15:33:34.806Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "457796054587169483", + "game": "614448244260339712", + "start": "2022-04-14T16:40:03.991Z", + "end": "2022-04-14T21:56:24.346Z", + "events": [ + { + "start": "2022-04-14T16:40:03.991Z", + "end": "2022-04-14T21:56:24.346Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "530454325214969866", + "start": "2022-05-17T04:59:04.940Z", + "end": "2022-05-17T07:01:35.666Z", + "events": [ + { + "start": "2022-05-17T04:59:04.940Z", + "end": "2022-05-17T05:23:35.085Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T05:23:35.085Z", + "end": "2022-05-17T05:48:05.230Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T05:48:05.230Z", + "end": "2022-05-17T06:12:35.375Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T06:12:35.375Z", + "end": "2022-05-17T06:37:05.520Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T06:37:05.520Z", + "end": "2022-05-17T07:01:35.665Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "535384357536399404", + "start": "2022-04-27T19:13:49.655Z", + "end": "2022-04-28T01:08:11.592Z", + "events": [ + { + "start": "2022-04-27T19:13:49.655Z", + "end": "2022-04-28T01:08:11.592Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "841397740041930984", + "game": "512789427462995988", + "start": "2022-08-03T10:35:50.118Z", + "end": "2022-08-03T17:08:41.424Z", + "events": [ + { + "start": "2022-08-03T10:35:50.118Z", + "end": "2022-08-03T11:54:24.379Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T11:54:24.379Z", + "end": "2022-08-03T13:12:58.640Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-03T13:12:58.640Z", + "end": "2022-08-03T14:31:32.901Z", + "state": "IDLE" + }, + { + "start": "2022-08-03T14:31:32.901Z", + "end": "2022-08-03T15:50:07.162Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T15:50:07.162Z", + "end": "2022-08-03T17:08:41.423Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "938976307338486810", + "game": "526489929631531009", + "start": "2022-04-22T22:59:47.137Z", + "end": "2022-04-23T02:02:33.052Z", + "events": [ + { + "start": "2022-04-22T22:59:47.137Z", + "end": "2022-04-23T02:02:33.052Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "542474758835535872", + "start": "2022-06-07T12:00:16.788Z", + "end": "2022-06-07T12:26:11.029Z", + "events": [ + { + "start": "2022-06-07T12:00:16.788Z", + "end": "2022-06-07T12:13:13.908Z", + "state": "IDLE" + }, + { + "start": "2022-06-07T12:13:13.908Z", + "end": "2022-06-07T12:26:11.028Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "900234800332446962", + "game": "546175179542364160", + "start": "2022-04-22T02:35:52.291Z", + "end": "2022-04-22T12:17:54.683Z", + "events": [ + { + "start": "2022-04-22T02:35:52.291Z", + "end": "2022-04-22T07:26:53.487Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T07:26:53.487Z", + "end": "2022-04-22T12:17:54.683Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "378424071510192465", + "game": "553697181249437716", + "start": "2022-07-11T14:07:30.778Z", + "end": "2022-07-11T16:50:37.749Z", + "events": [ + { + "start": "2022-07-11T14:07:30.778Z", + "end": "2022-07-11T14:40:08.172Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T14:40:08.172Z", + "end": "2022-07-11T15:12:45.566Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T15:12:45.566Z", + "end": "2022-07-11T15:45:22.960Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T15:45:22.960Z", + "end": "2022-07-11T16:18:00.354Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T16:18:00.354Z", + "end": "2022-07-11T16:50:37.748Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "535384357536399404", + "start": "2022-05-01T08:46:25.984Z", + "end": "2022-05-01T17:32:45.409Z", + "events": [ + { + "start": "2022-05-01T08:46:25.984Z", + "end": "2022-05-01T17:32:45.409Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "606163888052109312", + "start": "2022-07-22T15:50:03.252Z", + "end": "2022-07-23T00:42:56.348Z", + "events": [ + { + "start": "2022-07-22T15:50:03.252Z", + "end": "2022-07-22T17:36:37.871Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T17:36:37.871Z", + "end": "2022-07-22T19:23:12.490Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T19:23:12.490Z", + "end": "2022-07-22T21:09:47.109Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T21:09:47.109Z", + "end": "2022-07-22T22:56:21.728Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T22:56:21.728Z", + "end": "2022-07-23T00:42:56.347Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "911848869344266044", + "game": "512789427462995988", + "start": "2022-05-14T04:15:57.127Z", + "end": "2022-05-14T12:20:41.122Z", + "events": [ + { + "start": "2022-05-14T04:15:57.127Z", + "end": "2022-05-14T05:52:53.926Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T05:52:53.926Z", + "end": "2022-05-14T07:29:50.725Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T07:29:50.725Z", + "end": "2022-05-14T09:06:47.524Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-14T09:06:47.524Z", + "end": "2022-05-14T10:43:44.323Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-14T10:43:44.323Z", + "end": "2022-05-14T12:20:41.122Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "360264570671216445", + "game": "558547388583772201", + "start": "2022-07-04T17:31:19.808Z", + "end": "2022-07-04T19:56:07.562Z", + "events": [ + { + "start": "2022-07-04T17:31:19.808Z", + "end": "2022-07-04T19:56:07.562Z", + "state": "IDLE" + } + ] + }, + { + "user": "467658810442648809", + "game": "520462578061803588", + "start": "2022-06-26T21:26:04.439Z", + "end": "2022-06-27T04:04:20.683Z", + "events": [ + { + "start": "2022-06-26T21:26:04.439Z", + "end": "2022-06-26T23:05:38.500Z", + "state": "IDLE" + }, + { + "start": "2022-06-26T23:05:38.500Z", + "end": "2022-06-27T00:45:12.561Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T00:45:12.561Z", + "end": "2022-06-27T02:24:46.622Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:24:46.622Z", + "end": "2022-06-27T04:04:20.683Z", + "state": "IDLE" + } + ] + }, + { + "user": "453350270016457959", + "game": "597588168178663434", + "start": "2022-04-22T07:11:32.370Z", + "end": "2022-04-22T12:47:08.931Z", + "events": [ + { + "start": "2022-04-22T07:11:32.370Z", + "end": "2022-04-22T08:18:39.682Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T08:18:39.682Z", + "end": "2022-04-22T09:25:46.994Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-22T09:25:46.994Z", + "end": "2022-04-22T10:32:54.306Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-22T10:32:54.306Z", + "end": "2022-04-22T11:40:01.618Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-22T11:40:01.618Z", + "end": "2022-04-22T12:47:08.930Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "535371564850479134", + "start": "2022-07-28T07:23:11.688Z", + "end": "2022-07-28T16:34:45.573Z", + "events": [ + { + "start": "2022-07-28T07:23:11.688Z", + "end": "2022-07-28T16:34:45.573Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786084290971413565", + "game": "700136079562375258", + "start": "2022-06-13T07:13:26.568Z", + "end": "2022-06-13T11:11:34.002Z", + "events": [ + { + "start": "2022-06-13T07:13:26.568Z", + "end": "2022-06-13T08:12:58.426Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-13T08:12:58.426Z", + "end": "2022-06-13T09:12:30.284Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T09:12:30.284Z", + "end": "2022-06-13T10:12:02.142Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T10:12:02.142Z", + "end": "2022-06-13T11:11:34.000Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "512699108809637890", + "start": "2022-07-29T03:27:43.475Z", + "end": "2022-07-29T04:36:43.843Z", + "events": [ + { + "start": "2022-07-29T03:27:43.475Z", + "end": "2022-07-29T03:41:31.548Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T03:41:31.548Z", + "end": "2022-07-29T03:55:19.621Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T03:55:19.621Z", + "end": "2022-07-29T04:09:07.694Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T04:09:07.694Z", + "end": "2022-07-29T04:22:55.767Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T04:22:55.767Z", + "end": "2022-07-29T04:36:43.840Z", + "state": "IDLE" + } + ] + }, + { + "user": "900234800332446962", + "game": "512498684211232768", + "start": "2022-05-05T03:48:40.673Z", + "end": "2022-05-05T09:09:25.372Z", + "events": [ + { + "start": "2022-05-05T03:48:40.673Z", + "end": "2022-05-05T09:09:25.372Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "549054179973094329", + "game": "549512435585908756", + "start": "2022-04-20T11:00:52.700Z", + "end": "2022-04-20T15:53:59.285Z", + "events": [ + { + "start": "2022-04-20T11:00:52.700Z", + "end": "2022-04-20T13:27:25.992Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T13:27:25.992Z", + "end": "2022-04-20T15:53:59.284Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "512699108809637890", + "start": "2022-07-29T13:06:01.761Z", + "end": "2022-07-29T15:22:31.899Z", + "events": [ + { + "start": "2022-07-29T13:06:01.761Z", + "end": "2022-07-29T13:51:31.807Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T13:51:31.807Z", + "end": "2022-07-29T14:37:01.853Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T14:37:01.853Z", + "end": "2022-07-29T15:22:31.899Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "213263852824749877", + "game": "520462578061803588", + "start": "2022-04-18T08:53:15.429Z", + "end": "2022-04-18T15:07:41.255Z", + "events": [ + { + "start": "2022-04-18T08:53:15.429Z", + "end": "2022-04-18T10:08:08.594Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T10:08:08.594Z", + "end": "2022-04-18T11:23:01.759Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-18T11:23:01.759Z", + "end": "2022-04-18T12:37:54.924Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T12:37:54.924Z", + "end": "2022-04-18T13:52:48.089Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T13:52:48.089Z", + "end": "2022-04-18T15:07:41.254Z", + "state": "IDLE" + } + ] + }, + { + "user": "453350270016457959", + "game": "597588168178663434", + "start": "2022-06-10T16:35:31.961Z", + "end": "2022-06-10T23:15:52.082Z", + "events": [ + { + "start": "2022-06-10T16:35:31.961Z", + "end": "2022-06-10T23:15:52.082Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "713444659295913502", + "game": "606163888052109312", + "start": "2022-05-13T00:48:54.656Z", + "end": "2022-05-13T09:40:42.192Z", + "events": [ + { + "start": "2022-05-13T00:48:54.656Z", + "end": "2022-05-13T02:35:16.163Z", + "state": "IDLE" + }, + { + "start": "2022-05-13T02:35:16.163Z", + "end": "2022-05-13T04:21:37.670Z", + "state": "IDLE" + }, + { + "start": "2022-05-13T04:21:37.670Z", + "end": "2022-05-13T06:07:59.177Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-13T06:07:59.177Z", + "end": "2022-05-13T07:54:20.684Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-13T07:54:20.684Z", + "end": "2022-05-13T09:40:42.191Z", + "state": "IDLE" + } + ] + }, + { + "user": "931211630078779300", + "game": "514228311661084682", + "start": "2022-04-15T11:31:39.639Z", + "end": "2022-04-15T21:17:36.020Z", + "events": [ + { + "start": "2022-04-15T11:31:39.639Z", + "end": "2022-04-15T21:17:36.020Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "572456126872944651", + "start": "2022-07-27T04:09:56.759Z", + "end": "2022-07-27T10:41:45.464Z", + "events": [ + { + "start": "2022-07-27T04:09:56.759Z", + "end": "2022-07-27T05:28:18.500Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T05:28:18.500Z", + "end": "2022-07-27T06:46:40.241Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T06:46:40.241Z", + "end": "2022-07-27T08:05:01.982Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T08:05:01.982Z", + "end": "2022-07-27T09:23:23.723Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T09:23:23.723Z", + "end": "2022-07-27T10:41:45.464Z", + "state": "IDLE" + } + ] + }, + { + "user": "182925797752958092", + "game": "597588168178663434", + "start": "2022-04-17T14:24:14.222Z", + "end": "2022-04-17T21:55:00.093Z", + "events": [ + { + "start": "2022-04-17T14:24:14.222Z", + "end": "2022-04-17T21:55:00.093Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "597588168178663434", + "start": "2022-05-15T01:42:34.656Z", + "end": "2022-05-15T03:10:29.272Z", + "events": [ + { + "start": "2022-05-15T01:42:34.656Z", + "end": "2022-05-15T03:10:29.272Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "153631479524744694", + "game": "584069374462394368", + "start": "2022-05-08T09:28:55.956Z", + "end": "2022-05-08T14:12:25.744Z", + "events": [ + { + "start": "2022-05-08T09:28:55.956Z", + "end": "2022-05-08T10:25:37.913Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T10:25:37.913Z", + "end": "2022-05-08T11:22:19.870Z", + "state": "IDLE" + }, + { + "start": "2022-05-08T11:22:19.870Z", + "end": "2022-05-08T12:19:01.827Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T12:19:01.827Z", + "end": "2022-05-08T13:15:43.784Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T13:15:43.784Z", + "end": "2022-05-08T14:12:25.741Z", + "state": "IDLE" + } + ] + }, + { + "user": "786084290971413565", + "game": "519644267212177418", + "start": "2022-07-04T04:00:07.360Z", + "end": "2022-07-04T05:00:16.332Z", + "events": [ + { + "start": "2022-07-04T04:00:07.360Z", + "end": "2022-07-04T05:00:16.332Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "495724335127362694", + "game": "597588168178663434", + "start": "2022-07-11T22:59:14.331Z", + "end": "2022-07-12T03:28:33.167Z", + "events": [ + { + "start": "2022-07-11T22:59:14.331Z", + "end": "2022-07-12T00:29:00.609Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T00:29:00.609Z", + "end": "2022-07-12T01:58:46.887Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T01:58:46.887Z", + "end": "2022-07-12T03:28:33.165Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "686825797960121847", + "game": "542474758835535872", + "start": "2022-08-01T12:53:46.565Z", + "end": "2022-08-01T22:29:38.582Z", + "events": [ + { + "start": "2022-08-01T12:53:46.565Z", + "end": "2022-08-01T15:17:44.569Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-01T15:17:44.569Z", + "end": "2022-08-01T17:41:42.573Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T17:41:42.573Z", + "end": "2022-08-01T20:05:40.577Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-01T20:05:40.577Z", + "end": "2022-08-01T22:29:38.581Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "614380482620293151", + "start": "2022-05-27T05:33:39.529Z", + "end": "2022-05-27T09:39:34.482Z", + "events": [ + { + "start": "2022-05-27T05:33:39.529Z", + "end": "2022-05-27T06:22:50.519Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T06:22:50.519Z", + "end": "2022-05-27T07:12:01.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-27T07:12:01.509Z", + "end": "2022-05-27T08:01:12.499Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T08:01:12.499Z", + "end": "2022-05-27T08:50:23.489Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T08:50:23.489Z", + "end": "2022-05-27T09:39:34.479Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "424856688594618054", + "game": "572456126872944651", + "start": "2022-05-02T18:58:10.657Z", + "end": "2022-05-02T23:38:19.363Z", + "events": [ + { + "start": "2022-05-02T18:58:10.657Z", + "end": "2022-05-02T20:08:12.833Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T20:08:12.833Z", + "end": "2022-05-02T21:18:15.009Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-02T21:18:15.009Z", + "end": "2022-05-02T22:28:17.185Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T22:28:17.185Z", + "end": "2022-05-02T23:38:19.361Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "715446191320920764", + "game": "606163888052109312", + "start": "2022-06-19T19:05:08.362Z", + "end": "2022-06-19T20:49:43.521Z", + "events": [ + { + "start": "2022-06-19T19:05:08.362Z", + "end": "2022-06-19T19:26:03.393Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T19:26:03.393Z", + "end": "2022-06-19T19:46:58.424Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T19:46:58.424Z", + "end": "2022-06-19T20:07:53.455Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T20:07:53.455Z", + "end": "2022-06-19T20:28:48.486Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T20:28:48.486Z", + "end": "2022-06-19T20:49:43.517Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "355708392202112685", + "game": "588739017718366208", + "start": "2022-06-21T17:21:05.360Z", + "end": "2022-06-21T19:18:09.270Z", + "events": [ + { + "start": "2022-06-21T17:21:05.360Z", + "end": "2022-06-21T17:50:21.337Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T17:50:21.337Z", + "end": "2022-06-21T18:19:37.314Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T18:19:37.314Z", + "end": "2022-06-21T18:48:53.291Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T18:48:53.291Z", + "end": "2022-06-21T19:18:09.268Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "576482762446602270", + "start": "2022-07-14T16:46:25.631Z", + "end": "2022-07-14T16:52:38.938Z", + "events": [ + { + "start": "2022-07-14T16:46:25.631Z", + "end": "2022-07-14T16:47:58.957Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T16:47:58.957Z", + "end": "2022-07-14T16:49:32.283Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T16:49:32.283Z", + "end": "2022-07-14T16:51:05.609Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T16:51:05.609Z", + "end": "2022-07-14T16:52:38.935Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "636935635446628860", + "game": "700136079562375258", + "start": "2022-05-28T07:13:01.105Z", + "end": "2022-05-28T10:32:02.137Z", + "events": [ + { + "start": "2022-05-28T07:13:01.105Z", + "end": "2022-05-28T08:19:21.449Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T08:19:21.449Z", + "end": "2022-05-28T09:25:41.793Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T09:25:41.793Z", + "end": "2022-05-28T10:32:02.137Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "123137660023366590", + "game": "554573307161214977", + "start": "2022-07-19T04:46:39.274Z", + "end": "2022-07-19T14:41:03.881Z", + "events": [ + { + "start": "2022-07-19T04:46:39.274Z", + "end": "2022-07-19T09:43:51.577Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T09:43:51.577Z", + "end": "2022-07-19T14:41:03.880Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "463820732483181525", + "game": "614448244260339712", + "start": "2022-06-13T06:12:52.368Z", + "end": "2022-06-13T08:57:07.113Z", + "events": [ + { + "start": "2022-06-13T06:12:52.368Z", + "end": "2022-06-13T07:07:37.283Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-13T07:07:37.283Z", + "end": "2022-06-13T08:02:22.198Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T08:02:22.198Z", + "end": "2022-06-13T08:57:07.113Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "565021137482980984", + "game": "528145079819436043", + "start": "2022-04-30T22:02:30.646Z", + "end": "2022-05-01T04:12:08.028Z", + "events": [ + { + "start": "2022-04-30T22:02:30.646Z", + "end": "2022-05-01T00:05:43.106Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T00:05:43.106Z", + "end": "2022-05-01T02:08:55.566Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T02:08:55.566Z", + "end": "2022-05-01T04:12:08.026Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "614380482620293151", + "start": "2022-07-27T16:22:38.408Z", + "end": "2022-07-27T22:52:55.210Z", + "events": [ + { + "start": "2022-07-27T16:22:38.408Z", + "end": "2022-07-27T17:40:41.768Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T17:40:41.768Z", + "end": "2022-07-27T18:58:45.128Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T18:58:45.128Z", + "end": "2022-07-27T20:16:48.488Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T20:16:48.488Z", + "end": "2022-07-27T21:34:51.848Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T21:34:51.848Z", + "end": "2022-07-27T22:52:55.208Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302714757313826277", + "game": "523154344187789312", + "start": "2022-04-14T21:39:23.042Z", + "end": "2022-04-15T04:38:19.814Z", + "events": [ + { + "start": "2022-04-14T21:39:23.042Z", + "end": "2022-04-14T23:03:10.396Z", + "state": "IDLE" + }, + { + "start": "2022-04-14T23:03:10.396Z", + "end": "2022-04-15T00:26:57.750Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T00:26:57.750Z", + "end": "2022-04-15T01:50:45.104Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-15T01:50:45.104Z", + "end": "2022-04-15T03:14:32.458Z", + "state": "IDLE" + }, + { + "start": "2022-04-15T03:14:32.458Z", + "end": "2022-04-15T04:38:19.812Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "606163888052109312", + "start": "2022-06-16T13:30:45.105Z", + "end": "2022-06-16T22:02:17.579Z", + "events": [ + { + "start": "2022-06-16T13:30:45.105Z", + "end": "2022-06-16T22:02:17.579Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "467658810442648809", + "game": "569008830701240340", + "start": "2022-07-25T02:25:49.690Z", + "end": "2022-07-25T09:57:20.251Z", + "events": [ + { + "start": "2022-07-25T02:25:49.690Z", + "end": "2022-07-25T09:57:20.251Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "264503060524837708", + "game": "356875221078245376", + "start": "2022-04-29T21:22:56.242Z", + "end": "2022-04-29T23:11:48.660Z", + "events": [ + { + "start": "2022-04-29T21:22:56.242Z", + "end": "2022-04-29T21:44:42.725Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T21:44:42.725Z", + "end": "2022-04-29T22:06:29.208Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T22:06:29.208Z", + "end": "2022-04-29T22:28:15.691Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-29T22:28:15.691Z", + "end": "2022-04-29T22:50:02.174Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-29T22:50:02.174Z", + "end": "2022-04-29T23:11:48.657Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "600708263053781983", + "game": "606163888052109312", + "start": "2022-04-19T22:45:14.381Z", + "end": "2022-04-20T01:00:27.890Z", + "events": [ + { + "start": "2022-04-19T22:45:14.381Z", + "end": "2022-04-19T23:52:51.135Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T23:52:51.135Z", + "end": "2022-04-20T01:00:27.889Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "800318424708872602", + "game": "511619499053678668", + "start": "2022-06-13T17:17:45.564Z", + "end": "2022-06-14T01:56:47.805Z", + "events": [ + { + "start": "2022-06-13T17:17:45.564Z", + "end": "2022-06-14T01:56:47.805Z", + "state": "IDLE" + } + ] + }, + { + "user": "786028561315351452", + "game": "519644267212177418", + "start": "2022-07-20T19:24:11.603Z", + "end": "2022-07-20T20:16:25.073Z", + "events": [ + { + "start": "2022-07-20T19:24:11.603Z", + "end": "2022-07-20T19:41:36.093Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-20T19:41:36.093Z", + "end": "2022-07-20T19:59:00.583Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-20T19:59:00.583Z", + "end": "2022-07-20T20:16:25.073Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "774637841058278398", + "game": "512789343157485602", + "start": "2022-04-26T22:17:35.778Z", + "end": "2022-04-27T02:49:01.545Z", + "events": [ + { + "start": "2022-04-26T22:17:35.778Z", + "end": "2022-04-26T23:11:52.931Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T23:11:52.931Z", + "end": "2022-04-27T00:06:10.084Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T00:06:10.084Z", + "end": "2022-04-27T01:00:27.237Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:00:27.237Z", + "end": "2022-04-27T01:54:44.390Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:54:44.390Z", + "end": "2022-04-27T02:49:01.543Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "951131768137733554", + "game": "520462578061803588", + "start": "2022-04-26T20:34:07.787Z", + "end": "2022-04-27T01:47:20.833Z", + "events": [ + { + "start": "2022-04-26T20:34:07.787Z", + "end": "2022-04-26T22:18:32.135Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-26T22:18:32.135Z", + "end": "2022-04-27T00:02:56.483Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T00:02:56.483Z", + "end": "2022-04-27T01:47:20.831Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "559757870366930730", + "game": "597588168178663434", + "start": "2022-05-01T06:23:59.042Z", + "end": "2022-05-01T09:22:30.127Z", + "events": [ + { + "start": "2022-05-01T06:23:59.042Z", + "end": "2022-05-01T07:08:36.813Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T07:08:36.813Z", + "end": "2022-05-01T07:53:14.584Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-01T07:53:14.584Z", + "end": "2022-05-01T08:37:52.355Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T08:37:52.355Z", + "end": "2022-05-01T09:22:30.126Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "549054179973094329", + "game": "584069374462394368", + "start": "2022-05-08T17:59:47.471Z", + "end": "2022-05-09T03:39:09.531Z", + "events": [ + { + "start": "2022-05-08T17:59:47.471Z", + "end": "2022-05-08T21:12:54.824Z", + "state": "IDLE" + }, + { + "start": "2022-05-08T21:12:54.824Z", + "end": "2022-05-09T00:26:02.177Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-09T00:26:02.177Z", + "end": "2022-05-09T03:39:09.530Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "553697181249437716", + "start": "2022-07-16T21:51:22.649Z", + "end": "2022-07-17T00:28:51.829Z", + "events": [ + { + "start": "2022-07-16T21:51:22.649Z", + "end": "2022-07-16T22:22:52.485Z", + "state": "IDLE" + }, + { + "start": "2022-07-16T22:22:52.485Z", + "end": "2022-07-16T22:54:22.321Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T22:54:22.321Z", + "end": "2022-07-16T23:25:52.157Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T23:25:52.157Z", + "end": "2022-07-16T23:57:21.993Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-16T23:57:21.993Z", + "end": "2022-07-17T00:28:51.829Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "424856688594618054", + "game": "518088627234930688", + "start": "2022-06-21T08:27:20.558Z", + "end": "2022-06-21T13:59:11.005Z", + "events": [ + { + "start": "2022-06-21T08:27:20.558Z", + "end": "2022-06-21T09:50:18.169Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T09:50:18.169Z", + "end": "2022-06-21T11:13:15.780Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T11:13:15.780Z", + "end": "2022-06-21T12:36:13.391Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-21T12:36:13.391Z", + "end": "2022-06-21T13:59:11.002Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "126384926926158511", + "game": "528145079819436043", + "start": "2022-07-18T21:37:24.925Z", + "end": "2022-07-19T07:23:27.055Z", + "events": [ + { + "start": "2022-07-18T21:37:24.925Z", + "end": "2022-07-18T23:34:37.351Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T23:34:37.351Z", + "end": "2022-07-19T01:31:49.777Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T01:31:49.777Z", + "end": "2022-07-19T03:29:02.203Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T03:29:02.203Z", + "end": "2022-07-19T05:26:14.629Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T05:26:14.629Z", + "end": "2022-07-19T07:23:27.055Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "568387317892070397", + "game": "526489929631531009", + "start": "2022-05-11T05:11:39.193Z", + "end": "2022-05-11T12:41:24.603Z", + "events": [ + { + "start": "2022-05-11T05:11:39.193Z", + "end": "2022-05-11T07:41:34.329Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T07:41:34.329Z", + "end": "2022-05-11T10:11:29.465Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T10:11:29.465Z", + "end": "2022-05-11T12:41:24.601Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "511619499053678668", + "start": "2022-07-22T18:41:06.466Z", + "end": "2022-07-22T23:04:30.723Z", + "events": [ + { + "start": "2022-07-22T18:41:06.466Z", + "end": "2022-07-22T19:33:47.317Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T19:33:47.317Z", + "end": "2022-07-22T20:26:28.168Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T20:26:28.168Z", + "end": "2022-07-22T21:19:09.019Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T21:19:09.019Z", + "end": "2022-07-22T22:11:49.870Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T22:11:49.870Z", + "end": "2022-07-22T23:04:30.721Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "542075586886107149", + "start": "2022-06-21T10:41:25.648Z", + "end": "2022-06-21T20:04:53.561Z", + "events": [ + { + "start": "2022-06-21T10:41:25.648Z", + "end": "2022-06-21T15:23:09.604Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T15:23:09.604Z", + "end": "2022-06-21T20:04:53.560Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "123137660023366590", + "game": "512789427462995988", + "start": "2022-06-11T04:26:23.797Z", + "end": "2022-06-11T06:08:46.526Z", + "events": [ + { + "start": "2022-06-11T04:26:23.797Z", + "end": "2022-06-11T05:00:31.373Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T05:00:31.373Z", + "end": "2022-06-11T05:34:38.949Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-11T05:34:38.949Z", + "end": "2022-06-11T06:08:46.525Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "565341641427124244", + "start": "2022-05-16T10:29:08.191Z", + "end": "2022-05-16T13:49:35.420Z", + "events": [ + { + "start": "2022-05-16T10:29:08.191Z", + "end": "2022-05-16T11:35:57.267Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T11:35:57.267Z", + "end": "2022-05-16T12:42:46.343Z", + "state": "IDLE" + }, + { + "start": "2022-05-16T12:42:46.343Z", + "end": "2022-05-16T13:49:35.419Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "605723970188938456", + "game": "528145079819436043", + "start": "2022-05-18T10:41:01.829Z", + "end": "2022-05-18T12:30:21.384Z", + "events": [ + { + "start": "2022-05-18T10:41:01.829Z", + "end": "2022-05-18T11:35:41.606Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T11:35:41.606Z", + "end": "2022-05-18T12:30:21.383Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "161887854890745672", + "game": "558547388583772201", + "start": "2022-06-11T18:06:53.475Z", + "end": "2022-06-11T20:09:55.440Z", + "events": [ + { + "start": "2022-06-11T18:06:53.475Z", + "end": "2022-06-11T19:08:24.457Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-11T19:08:24.457Z", + "end": "2022-06-11T20:09:55.439Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "269014914705953013", + "game": "535869836748783616", + "start": "2022-05-15T13:36:07.616Z", + "end": "2022-05-15T16:59:04.511Z", + "events": [ + { + "start": "2022-05-15T13:36:07.616Z", + "end": "2022-05-15T15:17:36.063Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T15:17:36.063Z", + "end": "2022-05-15T16:59:04.510Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "200801427122341912", + "game": "614380482620293151", + "start": "2022-07-19T03:16:53.141Z", + "end": "2022-07-19T12:35:59.683Z", + "events": [ + { + "start": "2022-07-19T03:16:53.141Z", + "end": "2022-07-19T05:08:42.449Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T05:08:42.449Z", + "end": "2022-07-19T07:00:31.757Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T07:00:31.757Z", + "end": "2022-07-19T08:52:21.065Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T08:52:21.065Z", + "end": "2022-07-19T10:44:10.373Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T10:44:10.373Z", + "end": "2022-07-19T12:35:59.681Z", + "state": "IDLE" + } + ] + }, + { + "user": "510690749854514547", + "game": "530454325214969866", + "start": "2022-05-22T14:06:24.701Z", + "end": "2022-05-22T18:18:55.484Z", + "events": [ + { + "start": "2022-05-22T14:06:24.701Z", + "end": "2022-05-22T15:09:32.396Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-22T15:09:32.396Z", + "end": "2022-05-22T16:12:40.091Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-22T16:12:40.091Z", + "end": "2022-05-22T17:15:47.786Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-22T17:15:47.786Z", + "end": "2022-05-22T18:18:55.481Z", + "state": "IDLE" + } + ] + }, + { + "user": "568387317892070397", + "game": "520462578061803588", + "start": "2022-05-10T11:48:22.137Z", + "end": "2022-05-10T20:24:29.865Z", + "events": [ + { + "start": "2022-05-10T11:48:22.137Z", + "end": "2022-05-10T13:31:35.682Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T13:31:35.682Z", + "end": "2022-05-10T15:14:49.227Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T15:14:49.227Z", + "end": "2022-05-10T16:58:02.772Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T16:58:02.772Z", + "end": "2022-05-10T18:41:16.317Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T18:41:16.317Z", + "end": "2022-05-10T20:24:29.862Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "285410867718320291", + "game": "519644267212177418", + "start": "2022-07-07T08:26:43.236Z", + "end": "2022-07-07T11:24:01.635Z", + "events": [ + { + "start": "2022-07-07T08:26:43.236Z", + "end": "2022-07-07T11:24:01.635Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "512498684211232768", + "start": "2022-06-18T22:09:19.455Z", + "end": "2022-06-19T04:02:44.910Z", + "events": [ + { + "start": "2022-06-18T22:09:19.455Z", + "end": "2022-06-18T23:37:40.818Z", + "state": "IDLE" + }, + { + "start": "2022-06-18T23:37:40.818Z", + "end": "2022-06-19T01:06:02.181Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T01:06:02.181Z", + "end": "2022-06-19T02:34:23.544Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T02:34:23.544Z", + "end": "2022-06-19T04:02:44.907Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "521842831262875670", + "start": "2022-06-01T14:20:20.485Z", + "end": "2022-06-01T18:47:57.038Z", + "events": [ + { + "start": "2022-06-01T14:20:20.485Z", + "end": "2022-06-01T16:34:08.761Z", + "state": "IDLE" + }, + { + "start": "2022-06-01T16:34:08.761Z", + "end": "2022-06-01T18:47:57.037Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "535869836748783616", + "start": "2022-05-26T11:45:26.643Z", + "end": "2022-05-26T11:56:32.163Z", + "events": [ + { + "start": "2022-05-26T11:45:26.643Z", + "end": "2022-05-26T11:56:32.163Z", + "state": "IDLE" + } + ] + }, + { + "user": "623295654897148670", + "game": "520453007578628124", + "start": "2022-04-14T22:05:15.471Z", + "end": "2022-04-15T02:28:48.533Z", + "events": [ + { + "start": "2022-04-14T22:05:15.471Z", + "end": "2022-04-14T23:33:06.491Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-14T23:33:06.491Z", + "end": "2022-04-15T01:00:57.511Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-15T01:00:57.511Z", + "end": "2022-04-15T02:28:48.531Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "161887854890745672", + "game": "554921822626381879", + "start": "2022-06-11T23:43:20.492Z", + "end": "2022-06-12T05:31:01.994Z", + "events": [ + { + "start": "2022-06-11T23:43:20.492Z", + "end": "2022-06-12T01:39:14.326Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-12T01:39:14.326Z", + "end": "2022-06-12T03:35:08.160Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-12T03:35:08.160Z", + "end": "2022-06-12T05:31:01.994Z", + "state": "IDLE" + } + ] + }, + { + "user": "958598056500699208", + "game": "565341641427124244", + "start": "2022-05-08T15:25:05.881Z", + "end": "2022-05-09T00:34:38.069Z", + "events": [ + { + "start": "2022-05-08T15:25:05.881Z", + "end": "2022-05-08T19:59:51.975Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T19:59:51.975Z", + "end": "2022-05-09T00:34:38.069Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "137536289023624121", + "game": "597860020935327787", + "start": "2022-07-22T04:50:51.931Z", + "end": "2022-07-22T07:00:51.799Z", + "events": [ + { + "start": "2022-07-22T04:50:51.931Z", + "end": "2022-07-22T07:00:51.799Z", + "state": "IDLE" + } + ] + }, + { + "user": "147480245458136084", + "game": "572456126872944651", + "start": "2022-07-28T07:12:17.833Z", + "end": "2022-07-28T13:45:57.896Z", + "events": [ + { + "start": "2022-07-28T07:12:17.833Z", + "end": "2022-07-28T09:23:31.187Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T09:23:31.187Z", + "end": "2022-07-28T11:34:44.541Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-28T11:34:44.541Z", + "end": "2022-07-28T13:45:57.895Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "866600263421429886", + "game": "542474758835535872", + "start": "2022-04-21T22:55:21.840Z", + "end": "2022-04-22T05:43:50.743Z", + "events": [ + { + "start": "2022-04-21T22:55:21.840Z", + "end": "2022-04-22T02:19:36.291Z", + "state": "IDLE" + }, + { + "start": "2022-04-22T02:19:36.291Z", + "end": "2022-04-22T05:43:50.742Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "608700383891121851", + "game": "528145079819436043", + "start": "2022-07-18T16:54:49.418Z", + "end": "2022-07-19T01:21:30.440Z", + "events": [ + { + "start": "2022-07-18T16:54:49.418Z", + "end": "2022-07-19T01:21:30.440Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "623295654897148670", + "game": "606163888052109312", + "start": "2022-06-14T02:12:38.694Z", + "end": "2022-06-14T04:15:22.735Z", + "events": [ + { + "start": "2022-06-14T02:12:38.694Z", + "end": "2022-06-14T02:37:11.502Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T02:37:11.502Z", + "end": "2022-06-14T03:01:44.310Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-14T03:01:44.310Z", + "end": "2022-06-14T03:26:17.118Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-14T03:26:17.118Z", + "end": "2022-06-14T03:50:49.926Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-14T03:50:49.926Z", + "end": "2022-06-14T04:15:22.734Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "520462578061803588", + "start": "2022-06-17T02:55:44.102Z", + "end": "2022-06-17T04:10:11.449Z", + "events": [ + { + "start": "2022-06-17T02:55:44.102Z", + "end": "2022-06-17T03:20:33.217Z", + "state": "IDLE" + }, + { + "start": "2022-06-17T03:20:33.217Z", + "end": "2022-06-17T03:45:22.332Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T03:45:22.332Z", + "end": "2022-06-17T04:10:11.447Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "958598056500699208", + "game": "512789427462995988", + "start": "2022-07-31T01:01:51.469Z", + "end": "2022-07-31T01:47:41.679Z", + "events": [ + { + "start": "2022-07-31T01:01:51.469Z", + "end": "2022-07-31T01:13:19.021Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T01:13:19.021Z", + "end": "2022-07-31T01:24:46.573Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T01:24:46.573Z", + "end": "2022-07-31T01:36:14.125Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T01:36:14.125Z", + "end": "2022-07-31T01:47:41.677Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "628567265580410356", + "game": "535371564850479134", + "start": "2022-05-13T21:49:09.819Z", + "end": "2022-05-14T03:22:59.662Z", + "events": [ + { + "start": "2022-05-13T21:49:09.819Z", + "end": "2022-05-14T00:36:04.740Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T00:36:04.740Z", + "end": "2022-05-14T03:22:59.661Z", + "state": "IDLE" + } + ] + }, + { + "user": "596421190780633864", + "game": "614448244260339712", + "start": "2022-06-19T21:09:43.288Z", + "end": "2022-06-19T23:03:05.225Z", + "events": [ + { + "start": "2022-06-19T21:09:43.288Z", + "end": "2022-06-19T21:32:23.675Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T21:32:23.675Z", + "end": "2022-06-19T21:55:04.062Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T21:55:04.062Z", + "end": "2022-06-19T22:17:44.449Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T22:17:44.449Z", + "end": "2022-06-19T22:40:24.836Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T22:40:24.836Z", + "end": "2022-06-19T23:03:05.223Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "347172184335646820", + "game": "597588168178663434", + "start": "2022-05-24T06:57:56.936Z", + "end": "2022-05-24T15:55:15.435Z", + "events": [ + { + "start": "2022-05-24T06:57:56.936Z", + "end": "2022-05-24T09:57:03.102Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T09:57:03.102Z", + "end": "2022-05-24T12:56:09.268Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T12:56:09.268Z", + "end": "2022-05-24T15:55:15.434Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "511619499053678668", + "start": "2022-06-29T05:39:54.334Z", + "end": "2022-06-29T06:02:36.878Z", + "events": [ + { + "start": "2022-06-29T05:39:54.334Z", + "end": "2022-06-29T05:47:28.515Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-29T05:47:28.515Z", + "end": "2022-06-29T05:55:02.696Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-29T05:55:02.696Z", + "end": "2022-06-29T06:02:36.877Z", + "state": "IDLE" + } + ] + }, + { + "user": "791267126190249625", + "game": "530454325214969866", + "start": "2022-06-25T17:47:44.567Z", + "end": "2022-06-25T18:55:00.578Z", + "events": [ + { + "start": "2022-06-25T17:47:44.567Z", + "end": "2022-06-25T18:01:11.769Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T18:01:11.769Z", + "end": "2022-06-25T18:14:38.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-25T18:14:38.971Z", + "end": "2022-06-25T18:28:06.173Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T18:28:06.173Z", + "end": "2022-06-25T18:41:33.375Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T18:41:33.375Z", + "end": "2022-06-25T18:55:00.577Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "510199020782747732", + "start": "2022-07-18T05:23:01.890Z", + "end": "2022-07-18T10:04:54.361Z", + "events": [ + { + "start": "2022-07-18T05:23:01.890Z", + "end": "2022-07-18T06:56:59.380Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T06:56:59.380Z", + "end": "2022-07-18T08:30:56.870Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T08:30:56.870Z", + "end": "2022-07-18T10:04:54.360Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "686825797960121847", + "game": "511619499053678668", + "start": "2022-06-17T11:37:29.934Z", + "end": "2022-06-17T18:55:24.903Z", + "events": [ + { + "start": "2022-06-17T11:37:29.934Z", + "end": "2022-06-17T18:55:24.903Z", + "state": "IDLE" + } + ] + }, + { + "user": "378424071510192465", + "game": "512501896896970762", + "start": "2022-06-15T13:00:21.728Z", + "end": "2022-06-15T21:01:50.971Z", + "events": [ + { + "start": "2022-06-15T13:00:21.728Z", + "end": "2022-06-15T15:40:51.475Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T15:40:51.475Z", + "end": "2022-06-15T18:21:21.222Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-15T18:21:21.222Z", + "end": "2022-06-15T21:01:50.969Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "430732724825949756", + "game": "512789427462995988", + "start": "2022-08-04T20:49:42.137Z", + "end": "2022-08-05T00:53:07.549Z", + "events": [ + { + "start": "2022-08-04T20:49:42.137Z", + "end": "2022-08-05T00:53:07.549Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "554573307161214977", + "start": "2022-06-13T22:15:45.816Z", + "end": "2022-06-14T06:55:25.083Z", + "events": [ + { + "start": "2022-06-13T22:15:45.816Z", + "end": "2022-06-14T06:55:25.083Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "588739017718366208", + "start": "2022-07-18T16:07:01.613Z", + "end": "2022-07-18T23:00:20.624Z", + "events": [ + { + "start": "2022-07-18T16:07:01.613Z", + "end": "2022-07-18T17:50:21.365Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T17:50:21.365Z", + "end": "2022-07-18T19:33:41.117Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T19:33:41.117Z", + "end": "2022-07-18T21:17:00.869Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T21:17:00.869Z", + "end": "2022-07-18T23:00:20.621Z", + "state": "IDLE" + } + ] + }, + { + "user": "444246898747584433", + "game": "614448244260339712", + "start": "2022-05-10T03:03:22.482Z", + "end": "2022-05-10T09:45:42.518Z", + "events": [ + { + "start": "2022-05-10T03:03:22.482Z", + "end": "2022-05-10T05:17:29.160Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T05:17:29.160Z", + "end": "2022-05-10T07:31:35.838Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T07:31:35.838Z", + "end": "2022-05-10T09:45:42.516Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "554573307161214977", + "start": "2022-04-18T21:21:29.610Z", + "end": "2022-04-18T23:10:00.376Z", + "events": [ + { + "start": "2022-04-18T21:21:29.610Z", + "end": "2022-04-18T23:10:00.376Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "715446191320920764", + "game": "542075586886107149", + "start": "2022-06-13T21:49:08.442Z", + "end": "2022-06-14T00:12:19.180Z", + "events": [ + { + "start": "2022-06-13T21:49:08.442Z", + "end": "2022-06-13T22:36:52.021Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T22:36:52.021Z", + "end": "2022-06-13T23:24:35.600Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T23:24:35.600Z", + "end": "2022-06-14T00:12:19.179Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "922664752332558395", + "game": "542475118396309528", + "start": "2022-06-08T18:07:28.407Z", + "end": "2022-06-08T22:17:23.420Z", + "events": [ + { + "start": "2022-06-08T18:07:28.407Z", + "end": "2022-06-08T22:17:23.420Z", + "state": "IDLE" + } + ] + }, + { + "user": "686825797960121847", + "game": "535384357536399404", + "start": "2022-06-04T17:35:07.579Z", + "end": "2022-06-05T00:31:33.389Z", + "events": [ + { + "start": "2022-06-04T17:35:07.579Z", + "end": "2022-06-04T19:53:56.182Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T19:53:56.182Z", + "end": "2022-06-04T22:12:44.785Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T22:12:44.785Z", + "end": "2022-06-05T00:31:33.388Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "774637841058278398", + "game": "520453007578628124", + "start": "2022-06-15T23:06:29.962Z", + "end": "2022-06-16T04:14:45.009Z", + "events": [ + { + "start": "2022-06-15T23:06:29.962Z", + "end": "2022-06-16T04:14:45.009Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "732542352358923773", + "game": "535869836748783616", + "start": "2022-04-30T01:23:06.453Z", + "end": "2022-04-30T10:37:45.485Z", + "events": [ + { + "start": "2022-04-30T01:23:06.453Z", + "end": "2022-04-30T10:37:45.485Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "606163888052109312", + "start": "2022-05-06T01:26:40.278Z", + "end": "2022-05-06T08:15:51.866Z", + "events": [ + { + "start": "2022-05-06T01:26:40.278Z", + "end": "2022-05-06T04:51:16.072Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-06T04:51:16.072Z", + "end": "2022-05-06T08:15:51.866Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302714757313826277", + "game": "572456126872944651", + "start": "2022-07-19T04:33:48.356Z", + "end": "2022-07-19T04:56:28.880Z", + "events": [ + { + "start": "2022-07-19T04:33:48.356Z", + "end": "2022-07-19T04:39:28.487Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T04:39:28.487Z", + "end": "2022-07-19T04:45:08.618Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-19T04:45:08.618Z", + "end": "2022-07-19T04:50:48.749Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T04:50:48.749Z", + "end": "2022-07-19T04:56:28.880Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "881335427428668054", + "game": "535371564850479134", + "start": "2022-06-13T20:40:51.957Z", + "end": "2022-06-14T02:46:51.969Z", + "events": [ + { + "start": "2022-06-13T20:40:51.957Z", + "end": "2022-06-14T02:46:51.969Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "628567265580410356", + "game": "356875221078245376", + "start": "2022-06-04T00:11:37.318Z", + "end": "2022-06-04T07:40:26.736Z", + "events": [ + { + "start": "2022-06-04T00:11:37.318Z", + "end": "2022-06-04T07:40:26.736Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "297014162745407430", + "game": "520462578061803588", + "start": "2022-06-27T08:31:12.983Z", + "end": "2022-06-27T18:34:23.139Z", + "events": [ + { + "start": "2022-06-27T08:31:12.983Z", + "end": "2022-06-27T10:31:51.014Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T10:31:51.014Z", + "end": "2022-06-27T12:32:29.045Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T12:32:29.045Z", + "end": "2022-06-27T14:33:07.076Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T14:33:07.076Z", + "end": "2022-06-27T16:33:45.107Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T16:33:45.107Z", + "end": "2022-06-27T18:34:23.138Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "614380482620293151", + "start": "2022-06-12T09:17:21.307Z", + "end": "2022-06-12T11:04:19.052Z", + "events": [ + { + "start": "2022-06-12T09:17:21.307Z", + "end": "2022-06-12T10:10:50.179Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T10:10:50.179Z", + "end": "2022-06-12T11:04:19.051Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "528145079819436043", + "start": "2022-07-14T03:27:08.509Z", + "end": "2022-07-14T06:10:20.819Z", + "events": [ + { + "start": "2022-07-14T03:27:08.509Z", + "end": "2022-07-14T03:59:46.971Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T03:59:46.971Z", + "end": "2022-07-14T04:32:25.433Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T04:32:25.433Z", + "end": "2022-07-14T05:05:03.895Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T05:05:03.895Z", + "end": "2022-07-14T05:37:42.357Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T05:37:42.357Z", + "end": "2022-07-14T06:10:20.819Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "576482762446602270", + "start": "2022-05-25T05:30:25.924Z", + "end": "2022-05-25T08:44:26.832Z", + "events": [ + { + "start": "2022-05-25T05:30:25.924Z", + "end": "2022-05-25T06:35:06.226Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T06:35:06.226Z", + "end": "2022-05-25T07:39:46.528Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T07:39:46.528Z", + "end": "2022-05-25T08:44:26.830Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "791267126190249625", + "game": "575412499399180288", + "start": "2022-06-15T16:43:44.367Z", + "end": "2022-06-16T01:52:17.510Z", + "events": [ + { + "start": "2022-06-15T16:43:44.367Z", + "end": "2022-06-16T01:52:17.510Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "558547388583772201", + "start": "2022-05-01T20:24:27.220Z", + "end": "2022-05-01T23:35:55.078Z", + "events": [ + { + "start": "2022-05-01T20:24:27.220Z", + "end": "2022-05-01T21:12:19.184Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T21:12:19.184Z", + "end": "2022-05-01T22:00:11.148Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T22:00:11.148Z", + "end": "2022-05-01T22:48:03.112Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T22:48:03.112Z", + "end": "2022-05-01T23:35:55.076Z", + "state": "IDLE" + } + ] + }, + { + "user": "866600263421429886", + "game": "519644368735567873", + "start": "2022-08-05T13:15:21.129Z", + "end": "2022-08-05T18:44:37.769Z", + "events": [ + { + "start": "2022-08-05T13:15:21.129Z", + "end": "2022-08-05T18:44:37.769Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "512498684211232768", + "start": "2022-06-02T14:57:15.811Z", + "end": "2022-06-02T19:45:56.400Z", + "events": [ + { + "start": "2022-06-02T14:57:15.811Z", + "end": "2022-06-02T15:54:59.928Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T15:54:59.928Z", + "end": "2022-06-02T16:52:44.045Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T16:52:44.045Z", + "end": "2022-06-02T17:50:28.162Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T17:50:28.162Z", + "end": "2022-06-02T18:48:12.279Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-02T18:48:12.279Z", + "end": "2022-06-02T19:45:56.396Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "614380482620293151", + "start": "2022-04-19T22:33:22.566Z", + "end": "2022-04-20T00:27:54.021Z", + "events": [ + { + "start": "2022-04-19T22:33:22.566Z", + "end": "2022-04-19T22:56:16.857Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T22:56:16.857Z", + "end": "2022-04-19T23:19:11.148Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T23:19:11.148Z", + "end": "2022-04-19T23:42:05.439Z", + "state": "IDLE" + }, + { + "start": "2022-04-19T23:42:05.439Z", + "end": "2022-04-20T00:04:59.730Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T00:04:59.730Z", + "end": "2022-04-20T00:27:54.021Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "605723970188938456", + "game": "514228311661084682", + "start": "2022-07-01T16:05:40.181Z", + "end": "2022-07-01T19:59:32.408Z", + "events": [ + { + "start": "2022-07-01T16:05:40.181Z", + "end": "2022-07-01T17:04:08.237Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-01T17:04:08.237Z", + "end": "2022-07-01T18:02:36.293Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T18:02:36.293Z", + "end": "2022-07-01T19:01:04.349Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T19:01:04.349Z", + "end": "2022-07-01T19:59:32.405Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "786084290971413565", + "game": "614380482620293151", + "start": "2022-07-27T05:46:34.293Z", + "end": "2022-07-27T12:21:14.723Z", + "events": [ + { + "start": "2022-07-27T05:46:34.293Z", + "end": "2022-07-27T07:05:30.379Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T07:05:30.379Z", + "end": "2022-07-27T08:24:26.465Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T08:24:26.465Z", + "end": "2022-07-27T09:43:22.551Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T09:43:22.551Z", + "end": "2022-07-27T11:02:18.637Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T11:02:18.637Z", + "end": "2022-07-27T12:21:14.723Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "347172184335646820", + "game": "575412499399180288", + "start": "2022-07-08T08:41:32.737Z", + "end": "2022-07-08T13:26:58.974Z", + "events": [ + { + "start": "2022-07-08T08:41:32.737Z", + "end": "2022-07-08T13:26:58.974Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "774637841058278398", + "game": "512789343157485602", + "start": "2022-06-02T02:04:38.312Z", + "end": "2022-06-02T11:48:46.692Z", + "events": [ + { + "start": "2022-06-02T02:04:38.312Z", + "end": "2022-06-02T05:19:21.105Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T05:19:21.105Z", + "end": "2022-06-02T08:34:03.898Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T08:34:03.898Z", + "end": "2022-06-02T11:48:46.691Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302679892350666678", + "game": "526489929631531009", + "start": "2022-05-23T03:43:04.542Z", + "end": "2022-05-23T11:47:44.682Z", + "events": [ + { + "start": "2022-05-23T03:43:04.542Z", + "end": "2022-05-23T07:45:24.612Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T07:45:24.612Z", + "end": "2022-05-23T11:47:44.682Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "395281349698024181", + "game": "569253958967885828", + "start": "2022-07-12T07:49:46.180Z", + "end": "2022-07-12T12:43:01.935Z", + "events": [ + { + "start": "2022-07-12T07:49:46.180Z", + "end": "2022-07-12T09:03:05.118Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T09:03:05.118Z", + "end": "2022-07-12T10:16:24.056Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T10:16:24.056Z", + "end": "2022-07-12T11:29:42.994Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T11:29:42.994Z", + "end": "2022-07-12T12:43:01.932Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "519644368735567873", + "start": "2022-07-04T03:24:29.625Z", + "end": "2022-07-04T05:50:58.853Z", + "events": [ + { + "start": "2022-07-04T03:24:29.625Z", + "end": "2022-07-04T03:53:47.470Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-04T03:53:47.470Z", + "end": "2022-07-04T04:23:05.315Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-04T04:23:05.315Z", + "end": "2022-07-04T04:52:23.160Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T04:52:23.160Z", + "end": "2022-07-04T05:21:41.005Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T05:21:41.005Z", + "end": "2022-07-04T05:50:58.850Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "788818750251007268", + "game": "508057374875975682", + "start": "2022-05-19T15:09:41.613Z", + "end": "2022-05-19T17:43:48.124Z", + "events": [ + { + "start": "2022-05-19T15:09:41.613Z", + "end": "2022-05-19T15:40:30.915Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-19T15:40:30.915Z", + "end": "2022-05-19T16:11:20.217Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T16:11:20.217Z", + "end": "2022-05-19T16:42:09.519Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T16:42:09.519Z", + "end": "2022-05-19T17:12:58.821Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-19T17:12:58.821Z", + "end": "2022-05-19T17:43:48.123Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "614380482620293151", + "start": "2022-07-19T01:30:17.823Z", + "end": "2022-07-19T05:43:13.815Z", + "events": [ + { + "start": "2022-07-19T01:30:17.823Z", + "end": "2022-07-19T05:43:13.815Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302714757313826277", + "game": "553697181249437716", + "start": "2022-05-10T11:14:11.548Z", + "end": "2022-05-10T21:17:06.555Z", + "events": [ + { + "start": "2022-05-10T11:14:11.548Z", + "end": "2022-05-10T14:35:09.883Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T14:35:09.883Z", + "end": "2022-05-10T17:56:08.218Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-10T17:56:08.218Z", + "end": "2022-05-10T21:17:06.553Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "590467327095087095", + "game": "518088627234930688", + "start": "2022-06-02T16:21:25.398Z", + "end": "2022-06-02T19:10:06.820Z", + "events": [ + { + "start": "2022-06-02T16:21:25.398Z", + "end": "2022-06-02T17:03:35.753Z", + "state": "IDLE" + }, + { + "start": "2022-06-02T17:03:35.753Z", + "end": "2022-06-02T17:45:46.108Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-02T17:45:46.108Z", + "end": "2022-06-02T18:27:56.463Z", + "state": "IDLE" + }, + { + "start": "2022-06-02T18:27:56.463Z", + "end": "2022-06-02T19:10:06.818Z", + "state": "IDLE" + } + ] + }, + { + "user": "297014162745407430", + "game": "535371564850479134", + "start": "2022-05-29T00:07:58.979Z", + "end": "2022-05-29T08:26:07.056Z", + "events": [ + { + "start": "2022-05-29T00:07:58.979Z", + "end": "2022-05-29T02:54:01.671Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T02:54:01.671Z", + "end": "2022-05-29T05:40:04.363Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T05:40:04.363Z", + "end": "2022-05-29T08:26:07.055Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "597860020935327787", + "start": "2022-07-16T19:25:48.397Z", + "end": "2022-07-16T20:30:50.480Z", + "events": [ + { + "start": "2022-07-16T19:25:48.397Z", + "end": "2022-07-16T19:38:48.813Z", + "state": "IDLE" + }, + { + "start": "2022-07-16T19:38:48.813Z", + "end": "2022-07-16T19:51:49.229Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T19:51:49.229Z", + "end": "2022-07-16T20:04:49.645Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-16T20:04:49.645Z", + "end": "2022-07-16T20:17:50.061Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-16T20:17:50.061Z", + "end": "2022-07-16T20:30:50.477Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "546175179542364160", + "start": "2022-06-03T18:48:33.965Z", + "end": "2022-06-04T04:24:46.772Z", + "events": [ + { + "start": "2022-06-03T18:48:33.965Z", + "end": "2022-06-03T22:00:38.234Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T22:00:38.234Z", + "end": "2022-06-04T01:12:42.503Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T01:12:42.503Z", + "end": "2022-06-04T04:24:46.772Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "512501896896970762", + "start": "2022-06-29T17:55:03.636Z", + "end": "2022-06-29T21:35:17.112Z", + "events": [ + { + "start": "2022-06-29T17:55:03.636Z", + "end": "2022-06-29T21:35:17.112Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "395281349698024181", + "game": "510199020782747732", + "start": "2022-07-04T21:56:40.384Z", + "end": "2022-07-05T00:01:12.323Z", + "events": [ + { + "start": "2022-07-04T21:56:40.384Z", + "end": "2022-07-05T00:01:12.323Z", + "state": "IDLE" + } + ] + }, + { + "user": "605723970188938456", + "game": "554573307161214977", + "start": "2022-06-12T03:28:01.580Z", + "end": "2022-06-12T10:24:33.193Z", + "events": [ + { + "start": "2022-06-12T03:28:01.580Z", + "end": "2022-06-12T06:56:17.386Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T06:56:17.386Z", + "end": "2022-06-12T10:24:33.192Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "514228311661084682", + "start": "2022-07-24T05:28:45.611Z", + "end": "2022-07-24T08:19:23.412Z", + "events": [ + { + "start": "2022-07-24T05:28:45.611Z", + "end": "2022-07-24T06:11:25.061Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T06:11:25.061Z", + "end": "2022-07-24T06:54:04.511Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T06:54:04.511Z", + "end": "2022-07-24T07:36:43.961Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T07:36:43.961Z", + "end": "2022-07-24T08:19:23.411Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "549512435585908756", + "start": "2022-06-28T23:30:47.650Z", + "end": "2022-06-29T06:50:29.579Z", + "events": [ + { + "start": "2022-06-28T23:30:47.650Z", + "end": "2022-06-29T00:58:44.035Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T00:58:44.035Z", + "end": "2022-06-29T02:26:40.420Z", + "state": "IDLE" + }, + { + "start": "2022-06-29T02:26:40.420Z", + "end": "2022-06-29T03:54:36.805Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T03:54:36.805Z", + "end": "2022-06-29T05:22:33.190Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-29T05:22:33.190Z", + "end": "2022-06-29T06:50:29.575Z", + "state": "IDLE" + } + ] + }, + { + "user": "590467327095087095", + "game": "356875221078245376", + "start": "2022-05-27T18:31:27.991Z", + "end": "2022-05-27T23:36:04.449Z", + "events": [ + { + "start": "2022-05-27T18:31:27.991Z", + "end": "2022-05-27T21:03:46.220Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T21:03:46.220Z", + "end": "2022-05-27T23:36:04.449Z", + "state": "IDLE" + } + ] + }, + { + "user": "525940629729163286", + "game": "597860020935327787", + "start": "2022-06-28T16:51:21.576Z", + "end": "2022-06-28T20:52:09.267Z", + "events": [ + { + "start": "2022-06-28T16:51:21.576Z", + "end": "2022-06-28T18:11:37.473Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T18:11:37.473Z", + "end": "2022-06-28T19:31:53.370Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T19:31:53.370Z", + "end": "2022-06-28T20:52:09.267Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "700136079562375258", + "start": "2022-07-23T22:10:54.984Z", + "end": "2022-07-24T08:17:28.604Z", + "events": [ + { + "start": "2022-07-23T22:10:54.984Z", + "end": "2022-07-24T00:42:33.389Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-24T00:42:33.389Z", + "end": "2022-07-24T03:14:11.794Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-24T03:14:11.794Z", + "end": "2022-07-24T05:45:50.199Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-24T05:45:50.199Z", + "end": "2022-07-24T08:17:28.604Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "297014162745407430", + "game": "542475118396309528", + "start": "2022-08-05T12:35:13.970Z", + "end": "2022-08-05T13:25:29.746Z", + "events": [ + { + "start": "2022-08-05T12:35:13.970Z", + "end": "2022-08-05T12:47:47.914Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T12:47:47.914Z", + "end": "2022-08-05T13:00:21.858Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-05T13:00:21.858Z", + "end": "2022-08-05T13:12:55.802Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T13:12:55.802Z", + "end": "2022-08-05T13:25:29.746Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "213263852824749877", + "game": "584069374462394368", + "start": "2022-08-04T18:01:51.299Z", + "end": "2022-08-04T21:26:44.342Z", + "events": [ + { + "start": "2022-08-04T18:01:51.299Z", + "end": "2022-08-04T21:26:44.342Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "463820732483181525", + "game": "520462578061803588", + "start": "2022-07-10T06:37:13.535Z", + "end": "2022-07-10T15:45:37.514Z", + "events": [ + { + "start": "2022-07-10T06:37:13.535Z", + "end": "2022-07-10T15:45:37.514Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "788818750251007268", + "game": "526489929631531009", + "start": "2022-05-27T08:34:45.256Z", + "end": "2022-05-27T14:15:57.595Z", + "events": [ + { + "start": "2022-05-27T08:34:45.256Z", + "end": "2022-05-27T10:28:29.369Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T10:28:29.369Z", + "end": "2022-05-27T12:22:13.482Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-27T12:22:13.482Z", + "end": "2022-05-27T14:15:57.595Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "590467327095087095", + "game": "511619499053678668", + "start": "2022-06-25T11:57:05.983Z", + "end": "2022-06-25T19:13:19.863Z", + "events": [ + { + "start": "2022-06-25T11:57:05.983Z", + "end": "2022-06-25T15:35:12.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T15:35:12.923Z", + "end": "2022-06-25T19:13:19.863Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "537786518874514211", + "game": "553697181249437716", + "start": "2022-06-24T00:57:52.839Z", + "end": "2022-06-24T03:10:17.768Z", + "events": [ + { + "start": "2022-06-24T00:57:52.839Z", + "end": "2022-06-24T02:04:05.303Z", + "state": "IDLE" + }, + { + "start": "2022-06-24T02:04:05.303Z", + "end": "2022-06-24T03:10:17.767Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "584489284152985092", + "game": "558547388583772201", + "start": "2022-05-29T11:19:48.064Z", + "end": "2022-05-29T12:32:53.616Z", + "events": [ + { + "start": "2022-05-29T11:19:48.064Z", + "end": "2022-05-29T11:34:25.174Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T11:34:25.174Z", + "end": "2022-05-29T11:49:02.284Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T11:49:02.284Z", + "end": "2022-05-29T12:03:39.394Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T12:03:39.394Z", + "end": "2022-05-29T12:18:16.504Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T12:18:16.504Z", + "end": "2022-05-29T12:32:53.614Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "791267126190249625", + "game": "512789427462995988", + "start": "2022-07-11T17:27:25.698Z", + "end": "2022-07-11T23:55:53.631Z", + "events": [ + { + "start": "2022-07-11T17:27:25.698Z", + "end": "2022-07-11T19:04:32.681Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T19:04:32.681Z", + "end": "2022-07-11T20:41:39.664Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T20:41:39.664Z", + "end": "2022-07-11T22:18:46.647Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T22:18:46.647Z", + "end": "2022-07-11T23:55:53.630Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "512789427462995988", + "start": "2022-06-08T09:11:59.389Z", + "end": "2022-06-08T15:20:34.955Z", + "events": [ + { + "start": "2022-06-08T09:11:59.389Z", + "end": "2022-06-08T10:25:42.502Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T10:25:42.502Z", + "end": "2022-06-08T11:39:25.615Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T11:39:25.615Z", + "end": "2022-06-08T12:53:08.728Z", + "state": "IDLE" + }, + { + "start": "2022-06-08T12:53:08.728Z", + "end": "2022-06-08T14:06:51.841Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T14:06:51.841Z", + "end": "2022-06-08T15:20:34.954Z", + "state": "IDLE" + } + ] + }, + { + "user": "385692164951394422", + "game": "519644267212177418", + "start": "2022-06-05T07:24:22.023Z", + "end": "2022-06-05T08:32:03.869Z", + "events": [ + { + "start": "2022-06-05T07:24:22.023Z", + "end": "2022-06-05T07:46:55.971Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T07:46:55.971Z", + "end": "2022-06-05T08:09:29.919Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-05T08:09:29.919Z", + "end": "2022-06-05T08:32:03.867Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "592976500802846750", + "start": "2022-06-09T15:53:24.065Z", + "end": "2022-06-09T19:02:51.819Z", + "events": [ + { + "start": "2022-06-09T15:53:24.065Z", + "end": "2022-06-09T19:02:51.819Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "101572134856427564", + "game": "356875221078245376", + "start": "2022-05-10T05:49:05.476Z", + "end": "2022-05-10T07:50:33.211Z", + "events": [ + { + "start": "2022-05-10T05:49:05.476Z", + "end": "2022-05-10T06:19:27.409Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-10T06:19:27.409Z", + "end": "2022-05-10T06:49:49.342Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T06:49:49.342Z", + "end": "2022-05-10T07:20:11.275Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T07:20:11.275Z", + "end": "2022-05-10T07:50:33.208Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "440349172934867131", + "game": "512789343157485602", + "start": "2022-07-11T11:58:35.208Z", + "end": "2022-07-11T14:21:21.629Z", + "events": [ + { + "start": "2022-07-11T11:58:35.208Z", + "end": "2022-07-11T13:09:58.418Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T13:09:58.418Z", + "end": "2022-07-11T14:21:21.628Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "495724335127362694", + "game": "554573307161214977", + "start": "2022-04-13T12:24:16.995Z", + "end": "2022-04-13T17:43:24.160Z", + "events": [ + { + "start": "2022-04-13T12:24:16.995Z", + "end": "2022-04-13T17:43:24.160Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "131482253203487270", + "game": "512789427462995988", + "start": "2022-04-18T03:11:14.576Z", + "end": "2022-04-18T03:46:24.799Z", + "events": [ + { + "start": "2022-04-18T03:11:14.576Z", + "end": "2022-04-18T03:20:02.131Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T03:20:02.131Z", + "end": "2022-04-18T03:28:49.686Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T03:28:49.686Z", + "end": "2022-04-18T03:37:37.241Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T03:37:37.241Z", + "end": "2022-04-18T03:46:24.796Z", + "state": "IDLE" + } + ] + }, + { + "user": "541104083732114799", + "game": "512789343157485602", + "start": "2022-06-03T18:11:05.091Z", + "end": "2022-06-04T02:09:20.244Z", + "events": [ + { + "start": "2022-06-03T18:11:05.091Z", + "end": "2022-06-03T20:50:30.142Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T20:50:30.142Z", + "end": "2022-06-03T23:29:55.193Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T23:29:55.193Z", + "end": "2022-06-04T02:09:20.244Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "269014914705953013", + "game": "542474758835535872", + "start": "2022-05-05T06:12:15.476Z", + "end": "2022-05-05T10:53:38.659Z", + "events": [ + { + "start": "2022-05-05T06:12:15.476Z", + "end": "2022-05-05T07:08:32.112Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-05T07:08:32.112Z", + "end": "2022-05-05T08:04:48.748Z", + "state": "IDLE" + }, + { + "start": "2022-05-05T08:04:48.748Z", + "end": "2022-05-05T09:01:05.384Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T09:01:05.384Z", + "end": "2022-05-05T09:57:22.020Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T09:57:22.020Z", + "end": "2022-05-05T10:53:38.656Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "747381962738157784", + "game": "553697181249437716", + "start": "2022-06-03T09:16:05.174Z", + "end": "2022-06-03T10:28:20.524Z", + "events": [ + { + "start": "2022-06-03T09:16:05.174Z", + "end": "2022-06-03T09:34:09.011Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T09:34:09.011Z", + "end": "2022-06-03T09:52:12.848Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T09:52:12.848Z", + "end": "2022-06-03T10:10:16.685Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T10:10:16.685Z", + "end": "2022-06-03T10:28:20.522Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "559757870366930730", + "game": "535869836748783616", + "start": "2022-06-04T22:46:09.604Z", + "end": "2022-06-05T02:11:32.197Z", + "events": [ + { + "start": "2022-06-04T22:46:09.604Z", + "end": "2022-06-05T00:28:50.900Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T00:28:50.900Z", + "end": "2022-06-05T02:11:32.196Z", + "state": "IDLE" + } + ] + }, + { + "user": "126384926926158511", + "game": "512789427462995988", + "start": "2022-04-17T13:47:01.135Z", + "end": "2022-04-17T21:52:03.182Z", + "events": [ + { + "start": "2022-04-17T13:47:01.135Z", + "end": "2022-04-17T15:24:01.544Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T15:24:01.544Z", + "end": "2022-04-17T17:01:01.953Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-17T17:01:01.953Z", + "end": "2022-04-17T18:38:02.362Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-17T18:38:02.362Z", + "end": "2022-04-17T20:15:02.771Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-17T20:15:02.771Z", + "end": "2022-04-17T21:52:03.180Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "530454325214969866", + "start": "2022-06-19T12:27:22.908Z", + "end": "2022-06-19T16:41:57.439Z", + "events": [ + { + "start": "2022-06-19T12:27:22.908Z", + "end": "2022-06-19T13:31:01.540Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T13:31:01.540Z", + "end": "2022-06-19T14:34:40.172Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-19T14:34:40.172Z", + "end": "2022-06-19T15:38:18.804Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T15:38:18.804Z", + "end": "2022-06-19T16:41:57.436Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "200801427122341912", + "game": "512501896896970762", + "start": "2022-05-28T18:15:43.715Z", + "end": "2022-05-28T22:04:36.904Z", + "events": [ + { + "start": "2022-05-28T18:15:43.715Z", + "end": "2022-05-28T19:32:01.444Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T19:32:01.444Z", + "end": "2022-05-28T20:48:19.173Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T20:48:19.173Z", + "end": "2022-05-28T22:04:36.902Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "285410867718320291", + "game": "512501896896970762", + "start": "2022-08-05T13:40:43.379Z", + "end": "2022-08-05T22:42:46.963Z", + "events": [ + { + "start": "2022-08-05T13:40:43.379Z", + "end": "2022-08-05T15:56:14.275Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-05T15:56:14.275Z", + "end": "2022-08-05T18:11:45.171Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-05T18:11:45.171Z", + "end": "2022-08-05T20:27:16.067Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T20:27:16.067Z", + "end": "2022-08-05T22:42:46.963Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "623295654897148670", + "game": "512789120234422301", + "start": "2022-07-13T10:03:44.282Z", + "end": "2022-07-13T12:32:48.588Z", + "events": [ + { + "start": "2022-07-13T10:03:44.282Z", + "end": "2022-07-13T11:18:16.435Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T11:18:16.435Z", + "end": "2022-07-13T12:32:48.588Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "521842831262875670", + "start": "2022-07-12T19:06:18.391Z", + "end": "2022-07-12T19:31:36.703Z", + "events": [ + { + "start": "2022-07-12T19:06:18.391Z", + "end": "2022-07-12T19:18:57.547Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T19:18:57.547Z", + "end": "2022-07-12T19:31:36.703Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "614448244260339712", + "start": "2022-06-22T04:09:08.636Z", + "end": "2022-06-22T04:13:57.656Z", + "events": [ + { + "start": "2022-06-22T04:09:08.636Z", + "end": "2022-06-22T04:10:44.976Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T04:10:44.976Z", + "end": "2022-06-22T04:12:21.316Z", + "state": "IDLE" + }, + { + "start": "2022-06-22T04:12:21.316Z", + "end": "2022-06-22T04:13:57.656Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "800318424708872602", + "game": "554921822626381879", + "start": "2022-06-04T17:41:45.742Z", + "end": "2022-06-04T23:00:29.583Z", + "events": [ + { + "start": "2022-06-04T17:41:45.742Z", + "end": "2022-06-04T19:01:26.702Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T19:01:26.702Z", + "end": "2022-06-04T20:21:07.662Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T20:21:07.662Z", + "end": "2022-06-04T21:40:48.622Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T21:40:48.622Z", + "end": "2022-06-04T23:00:29.582Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "559757870366930730", + "game": "597860020935327787", + "start": "2022-07-31T14:46:01.659Z", + "end": "2022-07-31T19:21:40.365Z", + "events": [ + { + "start": "2022-07-31T14:46:01.659Z", + "end": "2022-07-31T15:41:09.400Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T15:41:09.400Z", + "end": "2022-07-31T16:36:17.141Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T16:36:17.141Z", + "end": "2022-07-31T17:31:24.882Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T17:31:24.882Z", + "end": "2022-07-31T18:26:32.623Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T18:26:32.623Z", + "end": "2022-07-31T19:21:40.364Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "606163888052109312", + "start": "2022-07-05T08:04:13.002Z", + "end": "2022-07-05T09:29:31.001Z", + "events": [ + { + "start": "2022-07-05T08:04:13.002Z", + "end": "2022-07-05T08:46:52.001Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-05T08:46:52.001Z", + "end": "2022-07-05T09:29:31.000Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "569008830701240340", + "start": "2022-07-16T17:10:01.725Z", + "end": "2022-07-16T18:51:06.492Z", + "events": [ + { + "start": "2022-07-16T17:10:01.725Z", + "end": "2022-07-16T18:51:06.492Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "198010595767135394", + "game": "588739017718366208", + "start": "2022-07-31T02:26:09.774Z", + "end": "2022-07-31T10:34:49.856Z", + "events": [ + { + "start": "2022-07-31T02:26:09.774Z", + "end": "2022-07-31T04:03:53.790Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T04:03:53.790Z", + "end": "2022-07-31T05:41:37.806Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T05:41:37.806Z", + "end": "2022-07-31T07:19:21.822Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T07:19:21.822Z", + "end": "2022-07-31T08:57:05.838Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-31T08:57:05.838Z", + "end": "2022-07-31T10:34:49.854Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "542474758835535872", + "start": "2022-07-17T23:17:05.742Z", + "end": "2022-07-18T07:54:16.518Z", + "events": [ + { + "start": "2022-07-17T23:17:05.742Z", + "end": "2022-07-18T02:09:29.334Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T02:09:29.334Z", + "end": "2022-07-18T05:01:52.926Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T05:01:52.926Z", + "end": "2022-07-18T07:54:16.518Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "530454325214969866", + "start": "2022-08-05T14:03:51.902Z", + "end": "2022-08-05T20:19:45.633Z", + "events": [ + { + "start": "2022-08-05T14:03:51.902Z", + "end": "2022-08-05T20:19:45.633Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "546175179542364160", + "start": "2022-05-25T03:48:32.871Z", + "end": "2022-05-25T09:50:04.757Z", + "events": [ + { + "start": "2022-05-25T03:48:32.871Z", + "end": "2022-05-25T05:49:03.499Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T05:49:03.499Z", + "end": "2022-05-25T07:49:34.127Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T07:49:34.127Z", + "end": "2022-05-25T09:50:04.755Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "549512435585908756", + "start": "2022-07-08T21:52:58.589Z", + "end": "2022-07-08T23:59:35.735Z", + "events": [ + { + "start": "2022-07-08T21:52:58.589Z", + "end": "2022-07-08T22:24:37.875Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T22:24:37.875Z", + "end": "2022-07-08T22:56:17.161Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-08T22:56:17.161Z", + "end": "2022-07-08T23:27:56.447Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-08T23:27:56.447Z", + "end": "2022-07-08T23:59:35.733Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "360264570671216445", + "game": "514228311661084682", + "start": "2022-05-12T08:29:28.812Z", + "end": "2022-05-12T15:54:27.429Z", + "events": [ + { + "start": "2022-05-12T08:29:28.812Z", + "end": "2022-05-12T10:20:43.466Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T10:20:43.466Z", + "end": "2022-05-12T12:11:58.120Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T12:11:58.120Z", + "end": "2022-05-12T14:03:12.774Z", + "state": "IDLE" + }, + { + "start": "2022-05-12T14:03:12.774Z", + "end": "2022-05-12T15:54:27.428Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "518088627234930688", + "start": "2022-07-11T00:26:42.411Z", + "end": "2022-07-11T08:54:18.480Z", + "events": [ + { + "start": "2022-07-11T00:26:42.411Z", + "end": "2022-07-11T02:33:36.428Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T02:33:36.428Z", + "end": "2022-07-11T04:40:30.445Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T04:40:30.445Z", + "end": "2022-07-11T06:47:24.462Z", + "state": "IDLE" + }, + { + "start": "2022-07-11T06:47:24.462Z", + "end": "2022-07-11T08:54:18.479Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "453350270016457959", + "game": "508057374875975682", + "start": "2022-07-30T14:27:55.872Z", + "end": "2022-07-30T16:15:42.390Z", + "events": [ + { + "start": "2022-07-30T14:27:55.872Z", + "end": "2022-07-30T16:15:42.390Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "800318424708872602", + "game": "512789427462995988", + "start": "2022-06-04T23:57:21.824Z", + "end": "2022-06-05T07:13:50.022Z", + "events": [ + { + "start": "2022-06-04T23:57:21.824Z", + "end": "2022-06-05T01:24:39.463Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T01:24:39.463Z", + "end": "2022-06-05T02:51:57.102Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-05T02:51:57.102Z", + "end": "2022-06-05T04:19:14.741Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-05T04:19:14.741Z", + "end": "2022-06-05T05:46:32.380Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T05:46:32.380Z", + "end": "2022-06-05T07:13:50.019Z", + "state": "IDLE" + } + ] + }, + { + "user": "346608907417001845", + "game": "523154344187789312", + "start": "2022-07-12T12:20:11.483Z", + "end": "2022-07-12T13:38:22.597Z", + "events": [ + { + "start": "2022-07-12T12:20:11.483Z", + "end": "2022-07-12T12:39:44.261Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T12:39:44.261Z", + "end": "2022-07-12T12:59:17.039Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T12:59:17.039Z", + "end": "2022-07-12T13:18:49.817Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T13:18:49.817Z", + "end": "2022-07-12T13:38:22.595Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "600708263053781983", + "game": "554573307161214977", + "start": "2022-04-14T00:21:53.214Z", + "end": "2022-04-14T02:08:03.866Z", + "events": [ + { + "start": "2022-04-14T00:21:53.214Z", + "end": "2022-04-14T01:14:58.540Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-14T01:14:58.540Z", + "end": "2022-04-14T02:08:03.866Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "608700383891121851", + "game": "565341641427124244", + "start": "2022-07-18T07:24:34.010Z", + "end": "2022-07-18T12:13:37.013Z", + "events": [ + { + "start": "2022-07-18T07:24:34.010Z", + "end": "2022-07-18T09:00:55.011Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T09:00:55.011Z", + "end": "2022-07-18T10:37:16.012Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T10:37:16.012Z", + "end": "2022-07-18T12:13:37.013Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "558547388583772201", + "start": "2022-07-04T00:05:05.611Z", + "end": "2022-07-04T09:55:46.303Z", + "events": [ + { + "start": "2022-07-04T00:05:05.611Z", + "end": "2022-07-04T02:32:45.784Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T02:32:45.784Z", + "end": "2022-07-04T05:00:25.957Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-04T05:00:25.957Z", + "end": "2022-07-04T07:28:06.130Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T07:28:06.130Z", + "end": "2022-07-04T09:55:46.303Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "590467327095087095", + "game": "550277544025522176", + "start": "2022-06-20T20:02:32.254Z", + "end": "2022-06-21T03:55:43.019Z", + "events": [ + { + "start": "2022-06-20T20:02:32.254Z", + "end": "2022-06-20T22:00:49.945Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T22:00:49.945Z", + "end": "2022-06-20T23:59:07.636Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-20T23:59:07.636Z", + "end": "2022-06-21T01:57:25.327Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T01:57:25.327Z", + "end": "2022-06-21T03:55:43.018Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "606163888052109312", + "start": "2022-06-07T04:55:45.598Z", + "end": "2022-06-07T07:49:57.167Z", + "events": [ + { + "start": "2022-06-07T04:55:45.598Z", + "end": "2022-06-07T06:22:51.382Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-07T06:22:51.382Z", + "end": "2022-06-07T07:49:57.166Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "269014914705953013", + "game": "512789343157485602", + "start": "2022-08-03T04:30:00.640Z", + "end": "2022-08-03T04:36:01.861Z", + "events": [ + { + "start": "2022-08-03T04:30:00.640Z", + "end": "2022-08-03T04:36:01.861Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "213263852824749877", + "game": "528145079819436043", + "start": "2022-08-02T15:58:08.829Z", + "end": "2022-08-03T00:16:52.200Z", + "events": [ + { + "start": "2022-08-02T15:58:08.829Z", + "end": "2022-08-02T18:44:23.286Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T18:44:23.286Z", + "end": "2022-08-02T21:30:37.743Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T21:30:37.743Z", + "end": "2022-08-03T00:16:52.200Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "537786518874514211", + "game": "549512435585908756", + "start": "2022-06-23T20:39:54.379Z", + "end": "2022-06-23T21:51:38.091Z", + "events": [ + { + "start": "2022-06-23T20:39:54.379Z", + "end": "2022-06-23T20:57:50.307Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-23T20:57:50.307Z", + "end": "2022-06-23T21:15:46.235Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T21:15:46.235Z", + "end": "2022-06-23T21:33:42.163Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T21:33:42.163Z", + "end": "2022-06-23T21:51:38.091Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "584489284152985092", + "game": "588739017718366208", + "start": "2022-05-05T07:55:59.851Z", + "end": "2022-05-05T10:21:39.344Z", + "events": [ + { + "start": "2022-05-05T07:55:59.851Z", + "end": "2022-05-05T10:21:39.344Z", + "state": "IDLE" + } + ] + }, + { + "user": "521350927850935744", + "game": "523154344187789312", + "start": "2022-05-18T20:34:30.734Z", + "end": "2022-05-19T04:14:28.602Z", + "events": [ + { + "start": "2022-05-18T20:34:30.734Z", + "end": "2022-05-18T23:07:50.023Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-18T23:07:50.023Z", + "end": "2022-05-19T01:41:09.312Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-19T01:41:09.312Z", + "end": "2022-05-19T04:14:28.601Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "525940629729163286", + "game": "597588168178663434", + "start": "2022-06-08T11:52:21.053Z", + "end": "2022-06-08T19:56:46.342Z", + "events": [ + { + "start": "2022-06-08T11:52:21.053Z", + "end": "2022-06-08T15:54:33.697Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T15:54:33.697Z", + "end": "2022-06-08T19:56:46.341Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "538658792298239054", + "game": "550277544025522176", + "start": "2022-07-02T03:58:36.856Z", + "end": "2022-07-02T05:49:46.981Z", + "events": [ + { + "start": "2022-07-02T03:58:36.856Z", + "end": "2022-07-02T04:54:11.918Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T04:54:11.918Z", + "end": "2022-07-02T05:49:46.980Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "768513326430993269", + "game": "597860020935327787", + "start": "2022-05-06T09:30:11.926Z", + "end": "2022-05-06T13:42:21.413Z", + "events": [ + { + "start": "2022-05-06T09:30:11.926Z", + "end": "2022-05-06T13:42:21.413Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "378424071510192465", + "game": "535869836748783616", + "start": "2022-07-27T10:41:04.871Z", + "end": "2022-07-27T12:12:09.572Z", + "events": [ + { + "start": "2022-07-27T10:41:04.871Z", + "end": "2022-07-27T12:12:09.572Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "560781100197216267", + "start": "2022-07-11T12:05:00.818Z", + "end": "2022-07-11T21:04:47.567Z", + "events": [ + { + "start": "2022-07-11T12:05:00.818Z", + "end": "2022-07-11T14:19:57.505Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T14:19:57.505Z", + "end": "2022-07-11T16:34:54.192Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T16:34:54.192Z", + "end": "2022-07-11T18:49:50.879Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T18:49:50.879Z", + "end": "2022-07-11T21:04:47.566Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "576482762446602270", + "start": "2022-05-21T20:17:40.500Z", + "end": "2022-05-22T05:14:40.599Z", + "events": [ + { + "start": "2022-05-21T20:17:40.500Z", + "end": "2022-05-22T00:46:10.549Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T00:46:10.549Z", + "end": "2022-05-22T05:14:40.598Z", + "state": "IDLE" + } + ] + }, + { + "user": "725502702868293700", + "game": "542475118396309528", + "start": "2022-07-09T10:14:20.635Z", + "end": "2022-07-09T15:11:17.702Z", + "events": [ + { + "start": "2022-07-09T10:14:20.635Z", + "end": "2022-07-09T11:53:19.657Z", + "state": "IDLE" + }, + { + "start": "2022-07-09T11:53:19.657Z", + "end": "2022-07-09T13:32:18.679Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T13:32:18.679Z", + "end": "2022-07-09T15:11:17.701Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "329429619186234053", + "game": "514228311661084682", + "start": "2022-06-12T15:54:12.122Z", + "end": "2022-06-12T17:12:10.655Z", + "events": [ + { + "start": "2022-06-12T15:54:12.122Z", + "end": "2022-06-12T16:20:11.633Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T16:20:11.633Z", + "end": "2022-06-12T16:46:11.144Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-12T16:46:11.144Z", + "end": "2022-06-12T17:12:10.655Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "182925797752958092", + "game": "519644368735567873", + "start": "2022-08-02T12:43:18.065Z", + "end": "2022-08-02T14:44:28.829Z", + "events": [ + { + "start": "2022-08-02T12:43:18.065Z", + "end": "2022-08-02T13:43:53.447Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T13:43:53.447Z", + "end": "2022-08-02T14:44:28.829Z", + "state": "IDLE" + } + ] + }, + { + "user": "182925797752958092", + "game": "554921822626381879", + "start": "2022-06-12T22:32:35.498Z", + "end": "2022-06-13T01:43:51.849Z", + "events": [ + { + "start": "2022-06-12T22:32:35.498Z", + "end": "2022-06-12T23:10:50.768Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-12T23:10:50.768Z", + "end": "2022-06-12T23:49:06.038Z", + "state": "IDLE" + }, + { + "start": "2022-06-12T23:49:06.038Z", + "end": "2022-06-13T00:27:21.308Z", + "state": "IDLE" + }, + { + "start": "2022-06-13T00:27:21.308Z", + "end": "2022-06-13T01:05:36.578Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T01:05:36.578Z", + "end": "2022-06-13T01:43:51.848Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "636935635446628860", + "game": "549512435585908756", + "start": "2022-07-14T17:42:12.237Z", + "end": "2022-07-15T01:29:38.303Z", + "events": [ + { + "start": "2022-07-14T17:42:12.237Z", + "end": "2022-07-14T19:15:41.450Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T19:15:41.450Z", + "end": "2022-07-14T20:49:10.663Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T20:49:10.663Z", + "end": "2022-07-14T22:22:39.876Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T22:22:39.876Z", + "end": "2022-07-14T23:56:09.089Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T23:56:09.089Z", + "end": "2022-07-15T01:29:38.302Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "694111074254984301", + "game": "512789427462995988", + "start": "2022-07-08T22:19:32.917Z", + "end": "2022-07-09T00:23:06.659Z", + "events": [ + { + "start": "2022-07-08T22:19:32.917Z", + "end": "2022-07-08T23:21:19.788Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-08T23:21:19.788Z", + "end": "2022-07-09T00:23:06.659Z", + "state": "IDLE" + } + ] + }, + { + "user": "457796054587169483", + "game": "535384357536399404", + "start": "2022-07-26T17:10:11.222Z", + "end": "2022-07-27T03:07:14.797Z", + "events": [ + { + "start": "2022-07-26T17:10:11.222Z", + "end": "2022-07-26T19:09:35.937Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-26T19:09:35.937Z", + "end": "2022-07-26T21:09:00.652Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-26T21:09:00.652Z", + "end": "2022-07-26T23:08:25.367Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-26T23:08:25.367Z", + "end": "2022-07-27T01:07:50.082Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T01:07:50.082Z", + "end": "2022-07-27T03:07:14.797Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "123137660023366590", + "game": "575412499399180288", + "start": "2022-06-03T15:34:52.910Z", + "end": "2022-06-03T19:29:19.503Z", + "events": [ + { + "start": "2022-06-03T15:34:52.910Z", + "end": "2022-06-03T16:21:46.228Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T16:21:46.228Z", + "end": "2022-06-03T17:08:39.546Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-03T17:08:39.546Z", + "end": "2022-06-03T17:55:32.864Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T17:55:32.864Z", + "end": "2022-06-03T18:42:26.182Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-03T18:42:26.182Z", + "end": "2022-06-03T19:29:19.500Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "592976500802846750", + "start": "2022-07-14T15:39:28.938Z", + "end": "2022-07-14T22:21:03.940Z", + "events": [ + { + "start": "2022-07-14T15:39:28.938Z", + "end": "2022-07-14T17:19:52.688Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T17:19:52.688Z", + "end": "2022-07-14T19:00:16.438Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-14T19:00:16.438Z", + "end": "2022-07-14T20:40:40.188Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T20:40:40.188Z", + "end": "2022-07-14T22:21:03.938Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302347517889336519", + "game": "510199020782747732", + "start": "2022-05-27T04:31:33.207Z", + "end": "2022-05-27T10:16:41.214Z", + "events": [ + { + "start": "2022-05-27T04:31:33.207Z", + "end": "2022-05-27T05:40:34.808Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T05:40:34.808Z", + "end": "2022-05-27T06:49:36.409Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T06:49:36.409Z", + "end": "2022-05-27T07:58:38.010Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T07:58:38.010Z", + "end": "2022-05-27T09:07:39.611Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T09:07:39.611Z", + "end": "2022-05-27T10:16:41.212Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "554573307161214977", + "start": "2022-06-14T07:09:31.706Z", + "end": "2022-06-14T13:56:30.313Z", + "events": [ + { + "start": "2022-06-14T07:09:31.706Z", + "end": "2022-06-14T08:30:55.427Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-14T08:30:55.427Z", + "end": "2022-06-14T09:52:19.148Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T09:52:19.148Z", + "end": "2022-06-14T11:13:42.869Z", + "state": "IDLE" + }, + { + "start": "2022-06-14T11:13:42.869Z", + "end": "2022-06-14T12:35:06.590Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-14T12:35:06.590Z", + "end": "2022-06-14T13:56:30.311Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "931211630078779300", + "game": "512789427462995988", + "start": "2022-07-07T02:38:50.691Z", + "end": "2022-07-07T09:08:09.162Z", + "events": [ + { + "start": "2022-07-07T02:38:50.691Z", + "end": "2022-07-07T09:08:09.162Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "430732724825949756", + "game": "546175179542364160", + "start": "2022-07-22T14:26:54.460Z", + "end": "2022-07-22T22:50:34.867Z", + "events": [ + { + "start": "2022-07-22T14:26:54.460Z", + "end": "2022-07-22T17:14:47.929Z", + "state": "IDLE" + }, + { + "start": "2022-07-22T17:14:47.929Z", + "end": "2022-07-22T20:02:41.398Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T20:02:41.398Z", + "end": "2022-07-22T22:50:34.867Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "878082205985098233", + "game": "530454325214969866", + "start": "2022-06-20T19:58:02.528Z", + "end": "2022-06-21T05:27:08.126Z", + "events": [ + { + "start": "2022-06-20T19:58:02.528Z", + "end": "2022-06-20T22:20:18.927Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-20T22:20:18.927Z", + "end": "2022-06-21T00:42:35.326Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T00:42:35.326Z", + "end": "2022-06-21T03:04:51.725Z", + "state": "IDLE" + }, + { + "start": "2022-06-21T03:04:51.725Z", + "end": "2022-06-21T05:27:08.124Z", + "state": "IDLE" + } + ] + }, + { + "user": "559757870366930730", + "game": "526489929631531009", + "start": "2022-05-12T07:32:55.889Z", + "end": "2022-05-12T15:57:29.239Z", + "events": [ + { + "start": "2022-05-12T07:32:55.889Z", + "end": "2022-05-12T09:13:50.559Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T09:13:50.559Z", + "end": "2022-05-12T10:54:45.229Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T10:54:45.229Z", + "end": "2022-05-12T12:35:39.899Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T12:35:39.899Z", + "end": "2022-05-12T14:16:34.569Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T14:16:34.569Z", + "end": "2022-05-12T15:57:29.239Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "900234800332446962", + "game": "512501896896970762", + "start": "2022-06-17T03:42:29.351Z", + "end": "2022-06-17T07:20:22.181Z", + "events": [ + { + "start": "2022-06-17T03:42:29.351Z", + "end": "2022-06-17T04:36:57.558Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T04:36:57.558Z", + "end": "2022-06-17T05:31:25.765Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-17T05:31:25.765Z", + "end": "2022-06-17T06:25:53.972Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T06:25:53.972Z", + "end": "2022-06-17T07:20:22.179Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "530454325214969866", + "start": "2022-05-13T19:40:07.906Z", + "end": "2022-05-14T00:59:16.577Z", + "events": [ + { + "start": "2022-05-13T19:40:07.906Z", + "end": "2022-05-14T00:59:16.577Z", + "state": "IDLE" + } + ] + }, + { + "user": "355708392202112685", + "game": "526489929631531009", + "start": "2022-05-06T15:23:33.436Z", + "end": "2022-05-06T19:07:53.202Z", + "events": [ + { + "start": "2022-05-06T15:23:33.436Z", + "end": "2022-05-06T17:15:43.319Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-06T17:15:43.319Z", + "end": "2022-05-06T19:07:53.202Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "628567265580410356", + "game": "535869836748783616", + "start": "2022-05-27T06:25:42.283Z", + "end": "2022-05-27T11:03:16.514Z", + "events": [ + { + "start": "2022-05-27T06:25:42.283Z", + "end": "2022-05-27T07:58:13.693Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T07:58:13.693Z", + "end": "2022-05-27T09:30:45.103Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-27T09:30:45.103Z", + "end": "2022-05-27T11:03:16.513Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "900234800332446962", + "game": "597588168178663434", + "start": "2022-06-07T03:47:44.687Z", + "end": "2022-06-07T10:37:50.790Z", + "events": [ + { + "start": "2022-06-07T03:47:44.687Z", + "end": "2022-06-07T05:09:45.907Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T05:09:45.907Z", + "end": "2022-06-07T06:31:47.127Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T06:31:47.127Z", + "end": "2022-06-07T07:53:48.347Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-07T07:53:48.347Z", + "end": "2022-06-07T09:15:49.567Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-07T09:15:49.567Z", + "end": "2022-06-07T10:37:50.787Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "568387317892070397", + "game": "606163888052109312", + "start": "2022-08-04T18:20:08.785Z", + "end": "2022-08-04T19:55:35.409Z", + "events": [ + { + "start": "2022-08-04T18:20:08.785Z", + "end": "2022-08-04T18:51:57.659Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-04T18:51:57.659Z", + "end": "2022-08-04T19:23:46.533Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T19:23:46.533Z", + "end": "2022-08-04T19:55:35.407Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "600708263053781983", + "game": "514228311661084682", + "start": "2022-05-15T22:47:45.207Z", + "end": "2022-05-16T01:45:12.173Z", + "events": [ + { + "start": "2022-05-15T22:47:45.207Z", + "end": "2022-05-15T23:32:06.948Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T23:32:06.948Z", + "end": "2022-05-16T00:16:28.689Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T00:16:28.689Z", + "end": "2022-05-16T01:00:50.430Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-16T01:00:50.430Z", + "end": "2022-05-16T01:45:12.171Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "788818750251007268", + "game": "597588168178663434", + "start": "2022-08-01T02:52:54.753Z", + "end": "2022-08-01T02:58:24.494Z", + "events": [ + { + "start": "2022-08-01T02:52:54.753Z", + "end": "2022-08-01T02:58:24.494Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512501896896970762", + "start": "2022-07-13T15:33:19.491Z", + "end": "2022-07-13T21:05:21.120Z", + "events": [ + { + "start": "2022-07-13T15:33:19.491Z", + "end": "2022-07-13T17:24:00.034Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T17:24:00.034Z", + "end": "2022-07-13T19:14:40.577Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-13T19:14:40.577Z", + "end": "2022-07-13T21:05:21.120Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "520462578061803588", + "start": "2022-05-29T04:44:47.760Z", + "end": "2022-05-29T11:52:11.945Z", + "events": [ + { + "start": "2022-05-29T04:44:47.760Z", + "end": "2022-05-29T07:07:15.821Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T07:07:15.821Z", + "end": "2022-05-29T09:29:43.882Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T09:29:43.882Z", + "end": "2022-05-29T11:52:11.943Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "938976307338486810", + "game": "542474758835535872", + "start": "2022-05-27T19:27:21.307Z", + "end": "2022-05-27T23:42:46.396Z", + "events": [ + { + "start": "2022-05-27T19:27:21.307Z", + "end": "2022-05-27T20:31:12.579Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T20:31:12.579Z", + "end": "2022-05-27T21:35:03.851Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-27T21:35:03.851Z", + "end": "2022-05-27T22:38:55.123Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T22:38:55.123Z", + "end": "2022-05-27T23:42:46.395Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "525940629729163286", + "game": "542474758835535872", + "start": "2022-07-29T10:50:11.600Z", + "end": "2022-07-29T11:49:07.164Z", + "events": [ + { + "start": "2022-07-29T10:50:11.600Z", + "end": "2022-07-29T11:01:58.712Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-29T11:01:58.712Z", + "end": "2022-07-29T11:13:45.824Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T11:13:45.824Z", + "end": "2022-07-29T11:25:32.936Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T11:25:32.936Z", + "end": "2022-07-29T11:37:20.048Z", + "state": "IDLE" + }, + { + "start": "2022-07-29T11:37:20.048Z", + "end": "2022-07-29T11:49:07.160Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "329429619186234053", + "game": "597860020935327787", + "start": "2022-06-27T02:24:54.294Z", + "end": "2022-06-27T02:25:02.917Z", + "events": [ + { + "start": "2022-06-27T02:24:54.294Z", + "end": "2022-06-27T02:24:56.018Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-27T02:24:56.018Z", + "end": "2022-06-27T02:24:57.742Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:24:57.742Z", + "end": "2022-06-27T02:24:59.466Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:24:59.466Z", + "end": "2022-06-27T02:25:01.190Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T02:25:01.190Z", + "end": "2022-06-27T02:25:02.914Z", + "state": "IDLE" + } + ] + }, + { + "user": "658550407298256890", + "game": "519644267212177418", + "start": "2022-06-25T10:32:10.626Z", + "end": "2022-06-25T17:28:37.002Z", + "events": [ + { + "start": "2022-06-25T10:32:10.626Z", + "end": "2022-06-25T12:50:59.418Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-25T12:50:59.418Z", + "end": "2022-06-25T15:09:48.210Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-25T15:09:48.210Z", + "end": "2022-06-25T17:28:37.002Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "430732724825949756", + "game": "520462578061803588", + "start": "2022-06-13T02:21:41.747Z", + "end": "2022-06-13T07:18:53.877Z", + "events": [ + { + "start": "2022-06-13T02:21:41.747Z", + "end": "2022-06-13T03:35:59.779Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-13T03:35:59.779Z", + "end": "2022-06-13T04:50:17.811Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T04:50:17.811Z", + "end": "2022-06-13T06:04:35.843Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-13T06:04:35.843Z", + "end": "2022-06-13T07:18:53.875Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "608700383891121851", + "game": "511619499053678668", + "start": "2022-07-25T10:55:59.233Z", + "end": "2022-07-25T15:48:09.442Z", + "events": [ + { + "start": "2022-07-25T10:55:59.233Z", + "end": "2022-07-25T12:09:01.785Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-25T12:09:01.785Z", + "end": "2022-07-25T13:22:04.337Z", + "state": "IDLE" + }, + { + "start": "2022-07-25T13:22:04.337Z", + "end": "2022-07-25T14:35:06.889Z", + "state": "IDLE" + }, + { + "start": "2022-07-25T14:35:06.889Z", + "end": "2022-07-25T15:48:09.441Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "554573307161214977", + "start": "2022-06-27T00:28:15.348Z", + "end": "2022-06-27T05:09:39.662Z", + "events": [ + { + "start": "2022-06-27T00:28:15.348Z", + "end": "2022-06-27T01:38:36.426Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T01:38:36.426Z", + "end": "2022-06-27T02:48:57.504Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T02:48:57.504Z", + "end": "2022-06-27T03:59:18.582Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-27T03:59:18.582Z", + "end": "2022-06-27T05:09:39.660Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "385692164951394422", + "game": "553697181249437716", + "start": "2022-07-03T04:53:40.719Z", + "end": "2022-07-03T09:44:13.630Z", + "events": [ + { + "start": "2022-07-03T04:53:40.719Z", + "end": "2022-07-03T06:06:18.946Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T06:06:18.946Z", + "end": "2022-07-03T07:18:57.173Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-03T07:18:57.173Z", + "end": "2022-07-03T08:31:35.400Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T08:31:35.400Z", + "end": "2022-07-03T09:44:13.627Z", + "state": "IDLE" + } + ] + }, + { + "user": "596421190780633864", + "game": "535869836748783616", + "start": "2022-07-01T11:41:01.459Z", + "end": "2022-07-01T17:18:46.835Z", + "events": [ + { + "start": "2022-07-01T11:41:01.459Z", + "end": "2022-07-01T14:29:54.147Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T14:29:54.147Z", + "end": "2022-07-01T17:18:46.835Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "747381962738157784", + "game": "560781100197216267", + "start": "2022-05-04T07:14:22.369Z", + "end": "2022-05-04T14:46:07.078Z", + "events": [ + { + "start": "2022-05-04T07:14:22.369Z", + "end": "2022-05-04T09:07:18.546Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T09:07:18.546Z", + "end": "2022-05-04T11:00:14.723Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T11:00:14.723Z", + "end": "2022-05-04T12:53:10.900Z", + "state": "IDLE" + }, + { + "start": "2022-05-04T12:53:10.900Z", + "end": "2022-05-04T14:46:07.077Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "686825797960121847", + "game": "553697181249437716", + "start": "2022-06-16T14:52:09.046Z", + "end": "2022-06-16T21:31:59.157Z", + "events": [ + { + "start": "2022-06-16T14:52:09.046Z", + "end": "2022-06-16T16:12:07.068Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T16:12:07.068Z", + "end": "2022-06-16T17:32:05.090Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T17:32:05.090Z", + "end": "2022-06-16T18:52:03.112Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T18:52:03.112Z", + "end": "2022-06-16T20:12:01.134Z", + "state": "IDLE" + }, + { + "start": "2022-06-16T20:12:01.134Z", + "end": "2022-06-16T21:31:59.156Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "881335427428668054", + "game": "554573307161214977", + "start": "2022-07-20T22:29:40.940Z", + "end": "2022-07-21T07:12:37.419Z", + "events": [ + { + "start": "2022-07-20T22:29:40.940Z", + "end": "2022-07-21T00:14:16.235Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T00:14:16.235Z", + "end": "2022-07-21T01:58:51.530Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T01:58:51.530Z", + "end": "2022-07-21T03:43:26.825Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T03:43:26.825Z", + "end": "2022-07-21T05:28:02.120Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T05:28:02.120Z", + "end": "2022-07-21T07:12:37.415Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "762163239408560283", + "game": "528145079819436043", + "start": "2022-04-19T18:43:00.842Z", + "end": "2022-04-20T00:46:53.790Z", + "events": [ + { + "start": "2022-04-19T18:43:00.842Z", + "end": "2022-04-19T21:44:57.316Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T21:44:57.316Z", + "end": "2022-04-20T00:46:53.790Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302679892350666678", + "game": "508057374875975682", + "start": "2022-05-23T06:50:30.505Z", + "end": "2022-05-23T14:08:51.860Z", + "events": [ + { + "start": "2022-05-23T06:50:30.505Z", + "end": "2022-05-23T08:40:05.843Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T08:40:05.843Z", + "end": "2022-05-23T10:29:41.181Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T10:29:41.181Z", + "end": "2022-05-23T12:19:16.519Z", + "state": "IDLE" + }, + { + "start": "2022-05-23T12:19:16.519Z", + "end": "2022-05-23T14:08:51.857Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "596421190780633864", + "game": "519644368735567873", + "start": "2022-07-10T01:38:31.536Z", + "end": "2022-07-10T08:22:47.237Z", + "events": [ + { + "start": "2022-07-10T01:38:31.536Z", + "end": "2022-07-10T03:19:35.461Z", + "state": "IDLE" + }, + { + "start": "2022-07-10T03:19:35.461Z", + "end": "2022-07-10T05:00:39.386Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T05:00:39.386Z", + "end": "2022-07-10T06:41:43.311Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T06:41:43.311Z", + "end": "2022-07-10T08:22:47.236Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "512498684211232768", + "start": "2022-05-09T20:51:02.865Z", + "end": "2022-05-10T06:04:54.249Z", + "events": [ + { + "start": "2022-05-09T20:51:02.865Z", + "end": "2022-05-09T23:09:30.711Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-09T23:09:30.711Z", + "end": "2022-05-10T01:27:58.557Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-10T01:27:58.557Z", + "end": "2022-05-10T03:46:26.403Z", + "state": "IDLE" + }, + { + "start": "2022-05-10T03:46:26.403Z", + "end": "2022-05-10T06:04:54.249Z", + "state": "IDLE" + } + ] + }, + { + "user": "198010595767135394", + "game": "540120593576493057", + "start": "2022-05-25T05:11:35.107Z", + "end": "2022-05-25T14:27:06.730Z", + "events": [ + { + "start": "2022-05-25T05:11:35.107Z", + "end": "2022-05-25T08:16:45.648Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T08:16:45.648Z", + "end": "2022-05-25T11:21:56.189Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T11:21:56.189Z", + "end": "2022-05-25T14:27:06.730Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "715446191320920764", + "game": "508057374875975682", + "start": "2022-04-23T23:21:47.719Z", + "end": "2022-04-24T05:59:19.992Z", + "events": [ + { + "start": "2022-04-23T23:21:47.719Z", + "end": "2022-04-24T01:01:10.787Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T01:01:10.787Z", + "end": "2022-04-24T02:40:33.855Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T02:40:33.855Z", + "end": "2022-04-24T04:19:56.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T04:19:56.923Z", + "end": "2022-04-24T05:59:19.991Z", + "state": "IDLE" + } + ] + }, + { + "user": "318220875546522080", + "game": "606163888052109312", + "start": "2022-05-26T17:53:38.050Z", + "end": "2022-05-26T18:10:49.573Z", + "events": [ + { + "start": "2022-05-26T17:53:38.050Z", + "end": "2022-05-26T17:57:55.930Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-26T17:57:55.930Z", + "end": "2022-05-26T18:02:13.810Z", + "state": "IDLE" + }, + { + "start": "2022-05-26T18:02:13.810Z", + "end": "2022-05-26T18:06:31.690Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-26T18:06:31.690Z", + "end": "2022-05-26T18:10:49.570Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "106607193284486979", + "game": "565341641427124244", + "start": "2022-06-13T08:19:33.169Z", + "end": "2022-06-13T16:02:58.117Z", + "events": [ + { + "start": "2022-06-13T08:19:33.169Z", + "end": "2022-06-13T16:02:58.117Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "554573307161214977", + "start": "2022-05-06T21:50:04.717Z", + "end": "2022-05-07T06:07:34.220Z", + "events": [ + { + "start": "2022-05-06T21:50:04.717Z", + "end": "2022-05-07T00:35:54.551Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-07T00:35:54.551Z", + "end": "2022-05-07T03:21:44.385Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-07T03:21:44.385Z", + "end": "2022-05-07T06:07:34.219Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "535371564850479134", + "start": "2022-07-22T04:07:39.464Z", + "end": "2022-07-22T08:57:28.574Z", + "events": [ + { + "start": "2022-07-22T04:07:39.464Z", + "end": "2022-07-22T08:57:28.574Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "951131768137733554", + "game": "514228311661084682", + "start": "2022-06-19T03:15:37.734Z", + "end": "2022-06-19T09:40:11.979Z", + "events": [ + { + "start": "2022-06-19T03:15:37.734Z", + "end": "2022-06-19T09:40:11.979Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "463820732483181525", + "game": "560781100197216267", + "start": "2022-07-10T09:05:43.148Z", + "end": "2022-07-10T10:10:39.356Z", + "events": [ + { + "start": "2022-07-10T09:05:43.148Z", + "end": "2022-07-10T09:21:57.200Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T09:21:57.200Z", + "end": "2022-07-10T09:38:11.252Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T09:38:11.252Z", + "end": "2022-07-10T09:54:25.304Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T09:54:25.304Z", + "end": "2022-07-10T10:10:39.356Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "542474758835535872", + "start": "2022-07-23T03:27:58.577Z", + "end": "2022-07-23T13:31:30.916Z", + "events": [ + { + "start": "2022-07-23T03:27:58.577Z", + "end": "2022-07-23T05:58:51.661Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T05:58:51.661Z", + "end": "2022-07-23T08:29:44.745Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T08:29:44.745Z", + "end": "2022-07-23T11:00:37.829Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-23T11:00:37.829Z", + "end": "2022-07-23T13:31:30.913Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "131482253203487270", + "game": "542475118396309528", + "start": "2022-06-11T05:12:31.294Z", + "end": "2022-06-11T13:44:07.151Z", + "events": [ + { + "start": "2022-06-11T05:12:31.294Z", + "end": "2022-06-11T13:44:07.151Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "596421190780633864", + "game": "614380482620293151", + "start": "2022-06-27T16:28:50.631Z", + "end": "2022-06-28T01:39:03.014Z", + "events": [ + { + "start": "2022-06-27T16:28:50.631Z", + "end": "2022-06-27T21:03:56.822Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T21:03:56.822Z", + "end": "2022-06-28T01:39:03.013Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "494763633796983404", + "game": "540120593576493057", + "start": "2022-05-01T07:42:30.649Z", + "end": "2022-05-01T12:06:06.985Z", + "events": [ + { + "start": "2022-05-01T07:42:30.649Z", + "end": "2022-05-01T08:35:13.916Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T08:35:13.916Z", + "end": "2022-05-01T09:27:57.183Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T09:27:57.183Z", + "end": "2022-05-01T10:20:40.450Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T10:20:40.450Z", + "end": "2022-05-01T11:13:23.717Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-01T11:13:23.717Z", + "end": "2022-05-01T12:06:06.984Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "494763633796983404", + "game": "520462578061803588", + "start": "2022-04-14T10:52:46.605Z", + "end": "2022-04-14T19:19:03.140Z", + "events": [ + { + "start": "2022-04-14T10:52:46.605Z", + "end": "2022-04-14T15:05:54.872Z", + "state": "IDLE" + }, + { + "start": "2022-04-14T15:05:54.872Z", + "end": "2022-04-14T19:19:03.139Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "424856688594618054", + "game": "519644368735567873", + "start": "2022-07-23T07:43:45.084Z", + "end": "2022-07-23T16:21:00.086Z", + "events": [ + { + "start": "2022-07-23T07:43:45.084Z", + "end": "2022-07-23T10:36:10.084Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T10:36:10.084Z", + "end": "2022-07-23T13:28:35.084Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-23T13:28:35.084Z", + "end": "2022-07-23T16:21:00.084Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "106607193284486979", + "game": "521842831262875670", + "start": "2022-06-16T01:57:48.479Z", + "end": "2022-06-16T06:07:55.198Z", + "events": [ + { + "start": "2022-06-16T01:57:48.479Z", + "end": "2022-06-16T03:21:10.718Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-16T03:21:10.718Z", + "end": "2022-06-16T04:44:32.957Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T04:44:32.957Z", + "end": "2022-06-16T06:07:55.196Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "768513326430993269", + "game": "606163888052109312", + "start": "2022-05-25T01:36:22.686Z", + "end": "2022-05-25T02:06:01.888Z", + "events": [ + { + "start": "2022-05-25T01:36:22.686Z", + "end": "2022-05-25T01:43:47.486Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T01:43:47.486Z", + "end": "2022-05-25T01:51:12.286Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T01:51:12.286Z", + "end": "2022-05-25T01:58:37.086Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-25T01:58:37.086Z", + "end": "2022-05-25T02:06:01.886Z", + "state": "IDLE" + } + ] + }, + { + "user": "872035310834814925", + "game": "535384357536399404", + "start": "2022-06-10T19:13:10.237Z", + "end": "2022-06-11T01:53:05.033Z", + "events": [ + { + "start": "2022-06-10T19:13:10.237Z", + "end": "2022-06-11T01:53:05.033Z", + "state": "IDLE" + } + ] + }, + { + "user": "725502702868293700", + "game": "514228311661084682", + "start": "2022-07-02T12:09:53.142Z", + "end": "2022-07-02T21:59:47.745Z", + "events": [ + { + "start": "2022-07-02T12:09:53.142Z", + "end": "2022-07-02T17:04:50.443Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-02T17:04:50.443Z", + "end": "2022-07-02T21:59:47.744Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "958598056500699208", + "game": "597860020935327787", + "start": "2022-04-27T08:08:00.713Z", + "end": "2022-04-27T10:52:59.707Z", + "events": [ + { + "start": "2022-04-27T08:08:00.713Z", + "end": "2022-04-27T10:52:59.707Z", + "state": "IDLE" + } + ] + }, + { + "user": "297014162745407430", + "game": "575412499399180288", + "start": "2022-06-18T16:03:27.194Z", + "end": "2022-06-19T00:12:20.843Z", + "events": [ + { + "start": "2022-06-18T16:03:27.194Z", + "end": "2022-06-18T18:46:25.077Z", + "state": "IDLE" + }, + { + "start": "2022-06-18T18:46:25.077Z", + "end": "2022-06-18T21:29:22.960Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-18T21:29:22.960Z", + "end": "2022-06-19T00:12:20.843Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "467658810442648809", + "game": "523154344187789312", + "start": "2022-04-24T08:34:59.201Z", + "end": "2022-04-24T10:25:06.775Z", + "events": [ + { + "start": "2022-04-24T08:34:59.201Z", + "end": "2022-04-24T08:57:00.715Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T08:57:00.715Z", + "end": "2022-04-24T09:19:02.229Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T09:19:02.229Z", + "end": "2022-04-24T09:41:03.743Z", + "state": "IDLE" + }, + { + "start": "2022-04-24T09:41:03.743Z", + "end": "2022-04-24T10:03:05.257Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T10:03:05.257Z", + "end": "2022-04-24T10:25:06.771Z", + "state": "IDLE" + } + ] + }, + { + "user": "137536289023624121", + "game": "511619499053678668", + "start": "2022-07-27T13:46:58.126Z", + "end": "2022-07-27T17:48:33.538Z", + "events": [ + { + "start": "2022-07-27T13:46:58.126Z", + "end": "2022-07-27T15:07:29.930Z", + "state": "IDLE" + }, + { + "start": "2022-07-27T15:07:29.930Z", + "end": "2022-07-27T16:28:01.734Z", + "state": "IDLE" + }, + { + "start": "2022-07-27T16:28:01.734Z", + "end": "2022-07-27T17:48:33.538Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "542475118396309528", + "start": "2022-06-19T06:30:18.699Z", + "end": "2022-06-19T11:01:21.311Z", + "events": [ + { + "start": "2022-06-19T06:30:18.699Z", + "end": "2022-06-19T08:00:39.569Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T08:00:39.569Z", + "end": "2022-06-19T09:31:00.439Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-19T09:31:00.439Z", + "end": "2022-06-19T11:01:21.309Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "530454325214969866", + "start": "2022-05-18T11:49:00.164Z", + "end": "2022-05-18T13:39:51.259Z", + "events": [ + { + "start": "2022-05-18T11:49:00.164Z", + "end": "2022-05-18T13:39:51.259Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "457796054587169483", + "game": "518088627234930688", + "start": "2022-05-29T00:53:08.926Z", + "end": "2022-05-29T08:22:36.457Z", + "events": [ + { + "start": "2022-05-29T00:53:08.926Z", + "end": "2022-05-29T02:23:02.432Z", + "state": "IDLE" + }, + { + "start": "2022-05-29T02:23:02.432Z", + "end": "2022-05-29T03:52:55.938Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T03:52:55.938Z", + "end": "2022-05-29T05:22:49.444Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T05:22:49.444Z", + "end": "2022-05-29T06:52:42.950Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T06:52:42.950Z", + "end": "2022-05-29T08:22:36.456Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "606163888052109312", + "start": "2022-04-23T20:27:07.697Z", + "end": "2022-04-23T22:57:29.519Z", + "events": [ + { + "start": "2022-04-23T20:27:07.697Z", + "end": "2022-04-23T21:04:43.152Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T21:04:43.152Z", + "end": "2022-04-23T21:42:18.607Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T21:42:18.607Z", + "end": "2022-04-23T22:19:54.062Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-23T22:19:54.062Z", + "end": "2022-04-23T22:57:29.517Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "608700383891121851", + "game": "518088627234930688", + "start": "2022-06-09T23:28:44.742Z", + "end": "2022-06-10T07:13:02.415Z", + "events": [ + { + "start": "2022-06-09T23:28:44.742Z", + "end": "2022-06-10T07:13:02.415Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "495724335127362694", + "game": "510199020782747732", + "start": "2022-07-23T00:37:37.141Z", + "end": "2022-07-23T10:10:05.796Z", + "events": [ + { + "start": "2022-07-23T00:37:37.141Z", + "end": "2022-07-23T10:10:05.796Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "213263852824749877", + "game": "512789343157485602", + "start": "2022-05-14T11:36:22.764Z", + "end": "2022-05-14T17:18:22.494Z", + "events": [ + { + "start": "2022-05-14T11:36:22.764Z", + "end": "2022-05-14T17:18:22.494Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "931211630078779300", + "game": "540120593576493057", + "start": "2022-06-03T01:46:05.257Z", + "end": "2022-06-03T10:58:57.286Z", + "events": [ + { + "start": "2022-06-03T01:46:05.257Z", + "end": "2022-06-03T06:22:31.271Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T06:22:31.271Z", + "end": "2022-06-03T10:58:57.285Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "695941172337689379", + "game": "560781100197216267", + "start": "2022-04-18T11:06:37.323Z", + "end": "2022-04-18T20:42:31.143Z", + "events": [ + { + "start": "2022-04-18T11:06:37.323Z", + "end": "2022-04-18T14:18:35.263Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T14:18:35.263Z", + "end": "2022-04-18T17:30:33.203Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T17:30:33.203Z", + "end": "2022-04-18T20:42:31.143Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "542475118396309528", + "start": "2022-06-24T16:15:02.147Z", + "end": "2022-06-24T20:54:58.850Z", + "events": [ + { + "start": "2022-06-24T16:15:02.147Z", + "end": "2022-06-24T18:35:00.498Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-24T18:35:00.498Z", + "end": "2022-06-24T20:54:58.849Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "584069374462394368", + "start": "2022-07-27T10:57:18.041Z", + "end": "2022-07-27T15:36:12.474Z", + "events": [ + { + "start": "2022-07-27T10:57:18.041Z", + "end": "2022-07-27T15:36:12.474Z", + "state": "IDLE" + } + ] + }, + { + "user": "424856688594618054", + "game": "575412499399180288", + "start": "2022-05-29T18:33:35.646Z", + "end": "2022-05-29T19:17:25.176Z", + "events": [ + { + "start": "2022-05-29T18:33:35.646Z", + "end": "2022-05-29T18:44:33.028Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T18:44:33.028Z", + "end": "2022-05-29T18:55:30.410Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T18:55:30.410Z", + "end": "2022-05-29T19:06:27.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T19:06:27.792Z", + "end": "2022-05-29T19:17:25.174Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "535371564850479134", + "start": "2022-06-07T08:37:56.600Z", + "end": "2022-06-07T10:32:10.553Z", + "events": [ + { + "start": "2022-06-07T08:37:56.600Z", + "end": "2022-06-07T09:35:03.576Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-07T09:35:03.576Z", + "end": "2022-06-07T10:32:10.552Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "541104083732114799", + "game": "528145079819436043", + "start": "2022-07-10T21:51:42.839Z", + "end": "2022-07-11T07:36:58.697Z", + "events": [ + { + "start": "2022-07-10T21:51:42.839Z", + "end": "2022-07-11T01:06:48.125Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T01:06:48.125Z", + "end": "2022-07-11T04:21:53.411Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-11T04:21:53.411Z", + "end": "2022-07-11T07:36:58.697Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "137536289023624121", + "game": "508057374875975682", + "start": "2022-04-19T13:45:35.180Z", + "end": "2022-04-19T13:53:41.952Z", + "events": [ + { + "start": "2022-04-19T13:45:35.180Z", + "end": "2022-04-19T13:47:36.873Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-19T13:47:36.873Z", + "end": "2022-04-19T13:49:38.566Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T13:49:38.566Z", + "end": "2022-04-19T13:51:40.259Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-19T13:51:40.259Z", + "end": "2022-04-19T13:53:41.952Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786084290971413565", + "game": "542075586886107149", + "start": "2022-08-06T00:49:35.714Z", + "end": "2022-08-06T09:07:31.897Z", + "events": [ + { + "start": "2022-08-06T00:49:35.714Z", + "end": "2022-08-06T02:54:04.759Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-06T02:54:04.759Z", + "end": "2022-08-06T04:58:33.804Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-06T04:58:33.804Z", + "end": "2022-08-06T07:03:02.849Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T07:03:02.849Z", + "end": "2022-08-06T09:07:31.894Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "318220875546522080", + "game": "576482762446602270", + "start": "2022-05-28T01:50:17.403Z", + "end": "2022-05-28T11:23:32.888Z", + "events": [ + { + "start": "2022-05-28T01:50:17.403Z", + "end": "2022-05-28T05:01:22.564Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T05:01:22.564Z", + "end": "2022-05-28T08:12:27.725Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T08:12:27.725Z", + "end": "2022-05-28T11:23:32.886Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "137536289023624121", + "game": "554573307161214977", + "start": "2022-06-24T04:37:44.538Z", + "end": "2022-06-24T07:54:00.703Z", + "events": [ + { + "start": "2022-06-24T04:37:44.538Z", + "end": "2022-06-24T07:54:00.703Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302347517889336519", + "game": "521842831262875670", + "start": "2022-08-06T09:54:40.572Z", + "end": "2022-08-06T12:24:23.408Z", + "events": [ + { + "start": "2022-08-06T09:54:40.572Z", + "end": "2022-08-06T10:32:06.281Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T10:32:06.281Z", + "end": "2022-08-06T11:09:31.990Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T11:09:31.990Z", + "end": "2022-08-06T11:46:57.699Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-06T11:46:57.699Z", + "end": "2022-08-06T12:24:23.408Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "518088627234930688", + "start": "2022-05-24T00:05:04.393Z", + "end": "2022-05-24T00:58:21.272Z", + "events": [ + { + "start": "2022-05-24T00:05:04.393Z", + "end": "2022-05-24T00:58:21.272Z", + "state": "IDLE" + } + ] + }, + { + "user": "625617695768437507", + "game": "614448244260339712", + "start": "2022-08-04T01:42:12.603Z", + "end": "2022-08-04T03:24:50.843Z", + "events": [ + { + "start": "2022-08-04T01:42:12.603Z", + "end": "2022-08-04T02:16:25.349Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-04T02:16:25.349Z", + "end": "2022-08-04T02:50:38.095Z", + "state": "IDLE" + }, + { + "start": "2022-08-04T02:50:38.095Z", + "end": "2022-08-04T03:24:50.841Z", + "state": "IDLE" + } + ] + }, + { + "user": "625617695768437507", + "game": "520462578061803588", + "start": "2022-07-13T22:18:19.587Z", + "end": "2022-07-14T06:04:56.980Z", + "events": [ + { + "start": "2022-07-13T22:18:19.587Z", + "end": "2022-07-14T02:11:38.283Z", + "state": "IDLE" + }, + { + "start": "2022-07-14T02:11:38.283Z", + "end": "2022-07-14T06:04:56.979Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "542075586886107149", + "start": "2022-07-19T03:43:36.127Z", + "end": "2022-07-19T08:43:39.796Z", + "events": [ + { + "start": "2022-07-19T03:43:36.127Z", + "end": "2022-07-19T05:23:37.350Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T05:23:37.350Z", + "end": "2022-07-19T07:03:38.573Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-19T07:03:38.573Z", + "end": "2022-07-19T08:43:39.796Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "512699108809637890", + "start": "2022-06-01T17:15:50.876Z", + "end": "2022-06-02T00:08:34.025Z", + "events": [ + { + "start": "2022-06-01T17:15:50.876Z", + "end": "2022-06-01T18:38:23.505Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T18:38:23.505Z", + "end": "2022-06-01T20:00:56.134Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-01T20:00:56.134Z", + "end": "2022-06-01T21:23:28.763Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-01T21:23:28.763Z", + "end": "2022-06-01T22:46:01.392Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-01T22:46:01.392Z", + "end": "2022-06-02T00:08:34.021Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "346608907417001845", + "game": "606163888052109312", + "start": "2022-07-22T20:50:50.623Z", + "end": "2022-07-23T04:33:38.891Z", + "events": [ + { + "start": "2022-07-22T20:50:50.623Z", + "end": "2022-07-23T00:42:14.757Z", + "state": "IDLE" + }, + { + "start": "2022-07-23T00:42:14.757Z", + "end": "2022-07-23T04:33:38.891Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "788818750251007268", + "game": "512789343157485602", + "start": "2022-07-28T11:17:34.462Z", + "end": "2022-07-28T15:35:48.504Z", + "events": [ + { + "start": "2022-07-28T11:17:34.462Z", + "end": "2022-07-28T12:43:39.142Z", + "state": "IDLE" + }, + { + "start": "2022-07-28T12:43:39.142Z", + "end": "2022-07-28T14:09:43.822Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T14:09:43.822Z", + "end": "2022-07-28T15:35:48.502Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "512501896896970762", + "start": "2022-08-05T21:49:13.665Z", + "end": "2022-08-05T22:59:16.789Z", + "events": [ + { + "start": "2022-08-05T21:49:13.665Z", + "end": "2022-08-05T22:12:34.706Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T22:12:34.706Z", + "end": "2022-08-05T22:35:55.747Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T22:35:55.747Z", + "end": "2022-08-05T22:59:16.788Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786084290971413565", + "game": "512789120234422301", + "start": "2022-04-25T21:09:41.402Z", + "end": "2022-04-26T03:36:26.336Z", + "events": [ + { + "start": "2022-04-25T21:09:41.402Z", + "end": "2022-04-25T22:46:22.635Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T22:46:22.635Z", + "end": "2022-04-26T00:23:03.868Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-26T00:23:03.868Z", + "end": "2022-04-26T01:59:45.101Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T01:59:45.101Z", + "end": "2022-04-26T03:36:26.334Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "747381962738157784", + "game": "565341641427124244", + "start": "2022-05-27T04:30:13.948Z", + "end": "2022-05-27T10:59:05.310Z", + "events": [ + { + "start": "2022-05-27T04:30:13.948Z", + "end": "2022-05-27T10:59:05.310Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "614448244260339712", + "start": "2022-07-30T12:07:49.958Z", + "end": "2022-07-30T19:53:18.450Z", + "events": [ + { + "start": "2022-07-30T12:07:49.958Z", + "end": "2022-07-30T14:04:12.081Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-30T14:04:12.081Z", + "end": "2022-07-30T16:00:34.204Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-30T16:00:34.204Z", + "end": "2022-07-30T17:56:56.327Z", + "state": "IDLE" + }, + { + "start": "2022-07-30T17:56:56.327Z", + "end": "2022-07-30T19:53:18.450Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "137536289023624121", + "game": "606163888052109312", + "start": "2022-05-31T05:53:32.521Z", + "end": "2022-05-31T06:44:03.966Z", + "events": [ + { + "start": "2022-05-31T05:53:32.521Z", + "end": "2022-05-31T06:03:38.810Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T06:03:38.810Z", + "end": "2022-05-31T06:13:45.099Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T06:13:45.099Z", + "end": "2022-05-31T06:23:51.388Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T06:23:51.388Z", + "end": "2022-05-31T06:33:57.677Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-31T06:33:57.677Z", + "end": "2022-05-31T06:44:03.966Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "572456126872944651", + "start": "2022-04-23T21:55:08.888Z", + "end": "2022-04-24T01:17:14.876Z", + "events": [ + { + "start": "2022-04-23T21:55:08.888Z", + "end": "2022-04-24T01:17:14.876Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "406850294055619241", + "game": "540120593576493057", + "start": "2022-07-31T05:40:41.711Z", + "end": "2022-07-31T14:22:29.746Z", + "events": [ + { + "start": "2022-07-31T05:40:41.711Z", + "end": "2022-07-31T07:25:03.318Z", + "state": "IDLE" + }, + { + "start": "2022-07-31T07:25:03.318Z", + "end": "2022-07-31T09:09:24.925Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T09:09:24.925Z", + "end": "2022-07-31T10:53:46.532Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T10:53:46.532Z", + "end": "2022-07-31T12:38:08.139Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T12:38:08.139Z", + "end": "2022-07-31T14:22:29.746Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "866600263421429886", + "game": "700136079562375258", + "start": "2022-05-29T12:42:14.981Z", + "end": "2022-05-29T18:14:25.623Z", + "events": [ + { + "start": "2022-05-29T12:42:14.981Z", + "end": "2022-05-29T14:05:17.641Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T14:05:17.641Z", + "end": "2022-05-29T15:28:20.301Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T15:28:20.301Z", + "end": "2022-05-29T16:51:22.961Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T16:51:22.961Z", + "end": "2022-05-29T18:14:25.621Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "636935635446628860", + "game": "512789427462995988", + "start": "2022-07-04T01:15:28.450Z", + "end": "2022-07-04T09:59:55.681Z", + "events": [ + { + "start": "2022-07-04T01:15:28.450Z", + "end": "2022-07-04T05:37:42.065Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T05:37:42.065Z", + "end": "2022-07-04T09:59:55.680Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "938976307338486810", + "game": "535869836748783616", + "start": "2022-07-01T13:24:05.510Z", + "end": "2022-07-01T21:03:33.608Z", + "events": [ + { + "start": "2022-07-01T13:24:05.510Z", + "end": "2022-07-01T14:55:59.129Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T14:55:59.129Z", + "end": "2022-07-01T16:27:52.748Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-01T16:27:52.748Z", + "end": "2022-07-01T17:59:46.367Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T17:59:46.367Z", + "end": "2022-07-01T19:31:39.986Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T19:31:39.986Z", + "end": "2022-07-01T21:03:33.605Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "161887854890745672", + "game": "584069374462394368", + "start": "2022-07-01T02:23:02.433Z", + "end": "2022-07-01T06:34:00.328Z", + "events": [ + { + "start": "2022-07-01T02:23:02.433Z", + "end": "2022-07-01T03:13:14.012Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T03:13:14.012Z", + "end": "2022-07-01T04:03:25.591Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T04:03:25.591Z", + "end": "2022-07-01T04:53:37.170Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T04:53:37.170Z", + "end": "2022-07-01T05:43:48.749Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T05:43:48.749Z", + "end": "2022-07-01T06:34:00.328Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "510690749854514547", + "game": "511619499053678668", + "start": "2022-07-31T21:08:36.930Z", + "end": "2022-08-01T04:17:27.928Z", + "events": [ + { + "start": "2022-07-31T21:08:36.930Z", + "end": "2022-08-01T04:17:27.928Z", + "state": "IDLE" + } + ] + }, + { + "user": "467658810442648809", + "game": "553697181249437716", + "start": "2022-06-30T22:28:23.510Z", + "end": "2022-07-01T00:58:12.469Z", + "events": [ + { + "start": "2022-06-30T22:28:23.510Z", + "end": "2022-06-30T22:58:21.301Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-30T22:58:21.301Z", + "end": "2022-06-30T23:28:19.092Z", + "state": "IDLE" + }, + { + "start": "2022-06-30T23:28:19.092Z", + "end": "2022-06-30T23:58:16.883Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-30T23:58:16.883Z", + "end": "2022-07-01T00:28:14.674Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-01T00:28:14.674Z", + "end": "2022-07-01T00:58:12.465Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "605723970188938456", + "game": "584069374462394368", + "start": "2022-08-05T16:04:09.960Z", + "end": "2022-08-05T22:44:57.529Z", + "events": [ + { + "start": "2022-08-05T16:04:09.960Z", + "end": "2022-08-05T22:44:57.529Z", + "state": "IDLE" + } + ] + }, + { + "user": "538658792298239054", + "game": "588739017718366208", + "start": "2022-07-06T18:21:31.818Z", + "end": "2022-07-07T01:27:58.305Z", + "events": [ + { + "start": "2022-07-06T18:21:31.818Z", + "end": "2022-07-06T19:46:49.115Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T19:46:49.115Z", + "end": "2022-07-06T21:12:06.412Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-06T21:12:06.412Z", + "end": "2022-07-06T22:37:23.709Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-06T22:37:23.709Z", + "end": "2022-07-07T00:02:41.006Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T00:02:41.006Z", + "end": "2022-07-07T01:27:58.303Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "605723970188938456", + "game": "356875221078245376", + "start": "2022-07-22T05:00:20.885Z", + "end": "2022-07-22T08:29:27.798Z", + "events": [ + { + "start": "2022-07-22T05:00:20.885Z", + "end": "2022-07-22T06:44:54.341Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T06:44:54.341Z", + "end": "2022-07-22T08:29:27.797Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "554921822626381879", + "start": "2022-07-11T12:10:39.818Z", + "end": "2022-07-11T13:34:29.516Z", + "events": [ + { + "start": "2022-07-11T12:10:39.818Z", + "end": "2022-07-11T13:34:29.516Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "153631479524744694", + "game": "542474758835535872", + "start": "2022-07-22T08:44:31.785Z", + "end": "2022-07-22T16:00:51.431Z", + "events": [ + { + "start": "2022-07-22T08:44:31.785Z", + "end": "2022-07-22T10:11:47.714Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T10:11:47.714Z", + "end": "2022-07-22T11:39:03.643Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T11:39:03.643Z", + "end": "2022-07-22T13:06:19.572Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T13:06:19.572Z", + "end": "2022-07-22T14:33:35.501Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T14:33:35.501Z", + "end": "2022-07-22T16:00:51.430Z", + "state": "IDLE" + } + ] + }, + { + "user": "126384926926158511", + "game": "550277544025522176", + "start": "2022-08-05T07:59:42.712Z", + "end": "2022-08-05T17:06:21.759Z", + "events": [ + { + "start": "2022-08-05T07:59:42.712Z", + "end": "2022-08-05T17:06:21.759Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "467658810442648809", + "game": "560781100197216267", + "start": "2022-07-01T18:00:48.472Z", + "end": "2022-07-02T01:51:23.008Z", + "events": [ + { + "start": "2022-07-01T18:00:48.472Z", + "end": "2022-07-02T01:51:23.008Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "592976500802846750", + "start": "2022-05-27T21:24:32.133Z", + "end": "2022-05-28T01:18:06.404Z", + "events": [ + { + "start": "2022-05-27T21:24:32.133Z", + "end": "2022-05-27T23:21:19.268Z", + "state": "IDLE" + }, + { + "start": "2022-05-27T23:21:19.268Z", + "end": "2022-05-28T01:18:06.403Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "394970121077311909", + "game": "572456126872944651", + "start": "2022-05-15T16:57:32.210Z", + "end": "2022-05-16T01:02:29.325Z", + "events": [ + { + "start": "2022-05-15T16:57:32.210Z", + "end": "2022-05-15T18:58:46.488Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-15T18:58:46.488Z", + "end": "2022-05-15T21:00:00.766Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-15T21:00:00.766Z", + "end": "2022-05-15T23:01:15.044Z", + "state": "IDLE" + }, + { + "start": "2022-05-15T23:01:15.044Z", + "end": "2022-05-16T01:02:29.322Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "565021137482980984", + "game": "597588168178663434", + "start": "2022-06-01T13:02:23.174Z", + "end": "2022-06-01T19:19:39.308Z", + "events": [ + { + "start": "2022-06-01T13:02:23.174Z", + "end": "2022-06-01T19:19:39.308Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "542075586886107149", + "start": "2022-07-29T13:02:43.772Z", + "end": "2022-07-29T17:16:22.286Z", + "events": [ + { + "start": "2022-07-29T13:02:43.772Z", + "end": "2022-07-29T14:27:16.610Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T14:27:16.610Z", + "end": "2022-07-29T15:51:49.448Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T15:51:49.448Z", + "end": "2022-07-29T17:16:22.286Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "500919588166575890", + "game": "606163888052109312", + "start": "2022-08-05T10:55:08.937Z", + "end": "2022-08-05T14:28:49.337Z", + "events": [ + { + "start": "2022-08-05T10:55:08.937Z", + "end": "2022-08-05T12:41:59.137Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T12:41:59.137Z", + "end": "2022-08-05T14:28:49.337Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "553697181249437716", + "start": "2022-05-24T13:50:09.251Z", + "end": "2022-05-24T22:40:49.257Z", + "events": [ + { + "start": "2022-05-24T13:50:09.251Z", + "end": "2022-05-24T15:36:17.252Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T15:36:17.252Z", + "end": "2022-05-24T17:22:25.253Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T17:22:25.253Z", + "end": "2022-05-24T19:08:33.254Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T19:08:33.254Z", + "end": "2022-05-24T20:54:41.255Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T20:54:41.255Z", + "end": "2022-05-24T22:40:49.256Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "931211630078779300", + "game": "569008830701240340", + "start": "2022-05-25T12:53:15.056Z", + "end": "2022-05-25T18:16:23.511Z", + "events": [ + { + "start": "2022-05-25T12:53:15.056Z", + "end": "2022-05-25T13:57:52.747Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T13:57:52.747Z", + "end": "2022-05-25T15:02:30.438Z", + "state": "IDLE" + }, + { + "start": "2022-05-25T15:02:30.438Z", + "end": "2022-05-25T16:07:08.129Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-25T16:07:08.129Z", + "end": "2022-05-25T17:11:45.820Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T17:11:45.820Z", + "end": "2022-05-25T18:16:23.511Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "559757870366930730", + "game": "569008830701240340", + "start": "2022-05-08T07:26:17.977Z", + "end": "2022-05-08T08:00:48.176Z", + "events": [ + { + "start": "2022-05-08T07:26:17.977Z", + "end": "2022-05-08T07:34:55.526Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T07:34:55.526Z", + "end": "2022-05-08T07:43:33.075Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T07:43:33.075Z", + "end": "2022-05-08T07:52:10.624Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T07:52:10.624Z", + "end": "2022-05-08T08:00:48.173Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "605723970188938456", + "game": "540120593576493057", + "start": "2022-05-22T02:07:20.803Z", + "end": "2022-05-22T07:20:23.119Z", + "events": [ + { + "start": "2022-05-22T02:07:20.803Z", + "end": "2022-05-22T07:20:23.119Z", + "state": "IDLE" + } + ] + }, + { + "user": "791267126190249625", + "game": "572456126872944651", + "start": "2022-04-20T13:31:32.611Z", + "end": "2022-04-20T19:51:46.657Z", + "events": [ + { + "start": "2022-04-20T13:31:32.611Z", + "end": "2022-04-20T15:38:17.293Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-20T15:38:17.293Z", + "end": "2022-04-20T17:45:01.975Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T17:45:01.975Z", + "end": "2022-04-20T19:51:46.657Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "553697181249437716", + "start": "2022-07-23T18:47:59.400Z", + "end": "2022-07-23T20:25:38.869Z", + "events": [ + { + "start": "2022-07-23T18:47:59.400Z", + "end": "2022-07-23T20:25:38.869Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "269014914705953013", + "game": "588739017718366208", + "start": "2022-08-03T23:02:09.338Z", + "end": "2022-08-03T23:24:38.907Z", + "events": [ + { + "start": "2022-08-03T23:02:09.338Z", + "end": "2022-08-03T23:13:24.122Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-03T23:13:24.122Z", + "end": "2022-08-03T23:24:38.906Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "694111074254984301", + "game": "560781100197216267", + "start": "2022-07-07T06:37:10.343Z", + "end": "2022-07-07T14:45:32.800Z", + "events": [ + { + "start": "2022-07-07T06:37:10.343Z", + "end": "2022-07-07T10:41:21.571Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-07T10:41:21.571Z", + "end": "2022-07-07T14:45:32.799Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "336473229248470346", + "game": "554573307161214977", + "start": "2022-05-02T10:20:14.851Z", + "end": "2022-05-02T20:09:05.878Z", + "events": [ + { + "start": "2022-05-02T10:20:14.851Z", + "end": "2022-05-02T12:47:27.607Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-02T12:47:27.607Z", + "end": "2022-05-02T15:14:40.363Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-02T15:14:40.363Z", + "end": "2022-05-02T17:41:53.119Z", + "state": "IDLE" + }, + { + "start": "2022-05-02T17:41:53.119Z", + "end": "2022-05-02T20:09:05.875Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "131482253203487270", + "game": "512789343157485602", + "start": "2022-05-12T16:53:10.880Z", + "end": "2022-05-12T18:24:57.735Z", + "events": [ + { + "start": "2022-05-12T16:53:10.880Z", + "end": "2022-05-12T17:16:07.593Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T17:16:07.593Z", + "end": "2022-05-12T17:39:04.306Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T17:39:04.306Z", + "end": "2022-05-12T18:02:01.019Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-12T18:02:01.019Z", + "end": "2022-05-12T18:24:57.732Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "346608907417001845", + "game": "558547388583772201", + "start": "2022-07-19T06:31:57.346Z", + "end": "2022-07-19T09:13:49.416Z", + "events": [ + { + "start": "2022-07-19T06:31:57.346Z", + "end": "2022-07-19T07:25:54.702Z", + "state": "IDLE" + }, + { + "start": "2022-07-19T07:25:54.702Z", + "end": "2022-07-19T08:19:52.058Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-19T08:19:52.058Z", + "end": "2022-07-19T09:13:49.414Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "600708263053781983", + "game": "512789343157485602", + "start": "2022-06-03T19:16:04.576Z", + "end": "2022-06-04T01:48:11.200Z", + "events": [ + { + "start": "2022-06-03T19:16:04.576Z", + "end": "2022-06-03T20:54:06.232Z", + "state": "IDLE" + }, + { + "start": "2022-06-03T20:54:06.232Z", + "end": "2022-06-03T22:32:07.888Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-03T22:32:07.888Z", + "end": "2022-06-04T00:10:09.544Z", + "state": "IDLE" + }, + { + "start": "2022-06-04T00:10:09.544Z", + "end": "2022-06-04T01:48:11.200Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "302679892350666678", + "game": "554573307161214977", + "start": "2022-07-01T09:06:50.695Z", + "end": "2022-07-01T10:39:24.569Z", + "events": [ + { + "start": "2022-07-01T09:06:50.695Z", + "end": "2022-07-01T09:29:59.163Z", + "state": "IDLE" + }, + { + "start": "2022-07-01T09:29:59.163Z", + "end": "2022-07-01T09:53:07.631Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T09:53:07.631Z", + "end": "2022-07-01T10:16:16.099Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-01T10:16:16.099Z", + "end": "2022-07-01T10:39:24.567Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "596421190780633864", + "game": "569253958967885828", + "start": "2022-04-27T12:50:51.700Z", + "end": "2022-04-27T22:54:38.818Z", + "events": [ + { + "start": "2022-04-27T12:50:51.700Z", + "end": "2022-04-27T14:51:37.123Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T14:51:37.123Z", + "end": "2022-04-27T16:52:22.546Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T16:52:22.546Z", + "end": "2022-04-27T18:53:07.969Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T18:53:07.969Z", + "end": "2022-04-27T20:53:53.392Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T20:53:53.392Z", + "end": "2022-04-27T22:54:38.815Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "463820732483181525", + "game": "569253958967885828", + "start": "2022-07-29T11:47:22.244Z", + "end": "2022-07-29T12:05:42.780Z", + "events": [ + { + "start": "2022-07-29T11:47:22.244Z", + "end": "2022-07-29T11:56:32.512Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T11:56:32.512Z", + "end": "2022-07-29T12:05:42.780Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "424856688594618054", + "game": "512699108809637890", + "start": "2022-05-28T04:31:37.330Z", + "end": "2022-05-28T08:35:05.703Z", + "events": [ + { + "start": "2022-05-28T04:31:37.330Z", + "end": "2022-05-28T05:20:19.004Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T05:20:19.004Z", + "end": "2022-05-28T06:09:00.678Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-28T06:09:00.678Z", + "end": "2022-05-28T06:57:42.352Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T06:57:42.352Z", + "end": "2022-05-28T07:46:24.026Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-28T07:46:24.026Z", + "end": "2022-05-28T08:35:05.700Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "269014914705953013", + "game": "597588168178663434", + "start": "2022-06-23T00:01:38.350Z", + "end": "2022-06-23T00:22:39.341Z", + "events": [ + { + "start": "2022-06-23T00:01:38.350Z", + "end": "2022-06-23T00:06:53.597Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T00:06:53.597Z", + "end": "2022-06-23T00:12:08.844Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T00:12:08.844Z", + "end": "2022-06-23T00:17:24.091Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T00:17:24.091Z", + "end": "2022-06-23T00:22:39.338Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "732542352358923773", + "game": "558547388583772201", + "start": "2022-04-21T19:14:39.216Z", + "end": "2022-04-22T02:39:04.273Z", + "events": [ + { + "start": "2022-04-21T19:14:39.216Z", + "end": "2022-04-21T22:56:51.744Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-21T22:56:51.744Z", + "end": "2022-04-22T02:39:04.272Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "101572134856427564", + "game": "597588168178663434", + "start": "2022-06-04T16:28:00.130Z", + "end": "2022-06-04T17:09:45.235Z", + "events": [ + { + "start": "2022-06-04T16:28:00.130Z", + "end": "2022-06-04T17:09:45.235Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "494763633796983404", + "game": "597588168178663434", + "start": "2022-06-16T06:45:01.953Z", + "end": "2022-06-16T12:22:36.492Z", + "events": [ + { + "start": "2022-06-16T06:45:01.953Z", + "end": "2022-06-16T08:37:33.466Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T08:37:33.466Z", + "end": "2022-06-16T10:30:04.979Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-16T10:30:04.979Z", + "end": "2022-06-16T12:22:36.492Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "514228311661084682", + "start": "2022-06-12T09:55:32.283Z", + "end": "2022-06-12T10:17:47.066Z", + "events": [ + { + "start": "2022-06-12T09:55:32.283Z", + "end": "2022-06-12T10:17:47.066Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "182925797752958092", + "game": "512699108809637890", + "start": "2022-07-31T16:11:55.767Z", + "end": "2022-07-31T22:58:21.770Z", + "events": [ + { + "start": "2022-07-31T16:11:55.767Z", + "end": "2022-07-31T22:58:21.770Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "597588168178663434", + "start": "2022-04-16T06:12:38.840Z", + "end": "2022-04-16T14:05:24.493Z", + "events": [ + { + "start": "2022-04-16T06:12:38.840Z", + "end": "2022-04-16T07:47:11.970Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T07:47:11.970Z", + "end": "2022-04-16T09:21:45.100Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T09:21:45.100Z", + "end": "2022-04-16T10:56:18.230Z", + "state": "IDLE" + }, + { + "start": "2022-04-16T10:56:18.230Z", + "end": "2022-04-16T12:30:51.360Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-16T12:30:51.360Z", + "end": "2022-04-16T14:05:24.490Z", + "state": "IDLE" + } + ] + }, + { + "user": "922664752332558395", + "game": "514228311661084682", + "start": "2022-05-22T14:01:46.446Z", + "end": "2022-05-22T17:35:15.492Z", + "events": [ + { + "start": "2022-05-22T14:01:46.446Z", + "end": "2022-05-22T17:35:15.492Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "625617695768437507", + "game": "584069374462394368", + "start": "2022-05-22T15:20:27.216Z", + "end": "2022-05-22T18:03:00.559Z", + "events": [ + { + "start": "2022-05-22T15:20:27.216Z", + "end": "2022-05-22T16:01:05.551Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-22T16:01:05.551Z", + "end": "2022-05-22T16:41:43.886Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-22T16:41:43.886Z", + "end": "2022-05-22T17:22:22.221Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T17:22:22.221Z", + "end": "2022-05-22T18:03:00.556Z", + "state": "IDLE" + } + ] + }, + { + "user": "911848869344266044", + "game": "565341641427124244", + "start": "2022-06-23T18:17:27.587Z", + "end": "2022-06-23T19:56:07.800Z", + "events": [ + { + "start": "2022-06-23T18:17:27.587Z", + "end": "2022-06-23T18:50:20.991Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T18:50:20.991Z", + "end": "2022-06-23T19:23:14.395Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T19:23:14.395Z", + "end": "2022-06-23T19:56:07.799Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "329429619186234053", + "game": "569008830701240340", + "start": "2022-06-26T00:07:34.575Z", + "end": "2022-06-26T03:40:16.762Z", + "events": [ + { + "start": "2022-06-26T00:07:34.575Z", + "end": "2022-06-26T03:40:16.762Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "153631479524744694", + "game": "572456126872944651", + "start": "2022-05-17T14:18:25.925Z", + "end": "2022-05-17T14:50:41.251Z", + "events": [ + { + "start": "2022-05-17T14:18:25.925Z", + "end": "2022-05-17T14:50:41.251Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "841397740041930984", + "game": "569008830701240340", + "start": "2022-08-02T09:46:35.228Z", + "end": "2022-08-02T13:43:02.556Z", + "events": [ + { + "start": "2022-08-02T09:46:35.228Z", + "end": "2022-08-02T10:33:52.693Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T10:33:52.693Z", + "end": "2022-08-02T11:21:10.158Z", + "state": "OFFLINE" + }, + { + "start": "2022-08-02T11:21:10.158Z", + "end": "2022-08-02T12:08:27.623Z", + "state": "ACTIVE" + }, + { + "start": "2022-08-02T12:08:27.623Z", + "end": "2022-08-02T12:55:45.088Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-08-02T12:55:45.088Z", + "end": "2022-08-02T13:43:02.553Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "786028561315351452", + "game": "569253958967885828", + "start": "2022-04-24T15:40:05.327Z", + "end": "2022-04-25T01:29:32.908Z", + "events": [ + { + "start": "2022-04-24T15:40:05.327Z", + "end": "2022-04-24T18:56:34.520Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T18:56:34.520Z", + "end": "2022-04-24T22:13:03.713Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-24T22:13:03.713Z", + "end": "2022-04-25T01:29:32.906Z", + "state": "IDLE" + } + ] + }, + { + "user": "951131768137733554", + "game": "518088627234930688", + "start": "2022-06-04T19:06:44.493Z", + "end": "2022-06-04T23:15:26.869Z", + "events": [ + { + "start": "2022-06-04T19:06:44.493Z", + "end": "2022-06-04T23:15:26.869Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "452396069922968436", + "game": "521842831262875670", + "start": "2022-05-17T15:36:20.645Z", + "end": "2022-05-17T17:46:18.668Z", + "events": [ + { + "start": "2022-05-17T15:36:20.645Z", + "end": "2022-05-17T16:41:19.656Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-17T16:41:19.656Z", + "end": "2022-05-17T17:46:18.667Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "549054179973094329", + "game": "520462578061803588", + "start": "2022-07-09T10:30:36.517Z", + "end": "2022-07-09T15:20:26.006Z", + "events": [ + { + "start": "2022-07-09T10:30:36.517Z", + "end": "2022-07-09T12:07:13.013Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T12:07:13.013Z", + "end": "2022-07-09T13:43:49.509Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T13:43:49.509Z", + "end": "2022-07-09T15:20:26.005Z", + "state": "IDLE" + } + ] + }, + { + "user": "106607193284486979", + "game": "540120593576493057", + "start": "2022-07-17T10:28:53.370Z", + "end": "2022-07-17T15:42:42.510Z", + "events": [ + { + "start": "2022-07-17T10:28:53.370Z", + "end": "2022-07-17T11:31:39.198Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-17T11:31:39.198Z", + "end": "2022-07-17T12:34:25.026Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T12:34:25.026Z", + "end": "2022-07-17T13:37:10.854Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-17T13:37:10.854Z", + "end": "2022-07-17T14:39:56.682Z", + "state": "IDLE" + }, + { + "start": "2022-07-17T14:39:56.682Z", + "end": "2022-07-17T15:42:42.510Z", + "state": "IDLE" + } + ] + }, + { + "user": "731522398939920723", + "game": "508057374875975682", + "start": "2022-07-12T09:44:27.599Z", + "end": "2022-07-12T11:02:34.943Z", + "events": [ + { + "start": "2022-07-12T09:44:27.599Z", + "end": "2022-07-12T10:23:31.271Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T10:23:31.271Z", + "end": "2022-07-12T11:02:34.943Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "821608522568592914", + "game": "519644267212177418", + "start": "2022-05-14T01:01:14.567Z", + "end": "2022-05-14T01:30:15.462Z", + "events": [ + { + "start": "2022-05-14T01:01:14.567Z", + "end": "2022-05-14T01:08:29.790Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T01:08:29.790Z", + "end": "2022-05-14T01:15:45.013Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-14T01:15:45.013Z", + "end": "2022-05-14T01:23:00.236Z", + "state": "IDLE" + }, + { + "start": "2022-05-14T01:23:00.236Z", + "end": "2022-05-14T01:30:15.459Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "549512435585908756", + "start": "2022-05-30T14:00:32.932Z", + "end": "2022-05-30T15:20:39.979Z", + "events": [ + { + "start": "2022-05-30T14:00:32.932Z", + "end": "2022-05-30T14:27:15.281Z", + "state": "IDLE" + }, + { + "start": "2022-05-30T14:27:15.281Z", + "end": "2022-05-30T14:53:57.630Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T14:53:57.630Z", + "end": "2022-05-30T15:20:39.979Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "126384926926158511", + "game": "512501896896970762", + "start": "2022-05-29T03:49:52.301Z", + "end": "2022-05-29T13:20:30.567Z", + "events": [ + { + "start": "2022-05-29T03:49:52.301Z", + "end": "2022-05-29T06:12:31.867Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T06:12:31.867Z", + "end": "2022-05-29T08:35:11.433Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T08:35:11.433Z", + "end": "2022-05-29T10:57:50.999Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-29T10:57:50.999Z", + "end": "2022-05-29T13:20:30.565Z", + "state": "IDLE" + } + ] + }, + { + "user": "452396069922968436", + "game": "519644267212177418", + "start": "2022-07-22T06:09:07.017Z", + "end": "2022-07-22T14:13:41.668Z", + "events": [ + { + "start": "2022-07-22T06:09:07.017Z", + "end": "2022-07-22T07:46:01.947Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T07:46:01.947Z", + "end": "2022-07-22T09:22:56.877Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T09:22:56.877Z", + "end": "2022-07-22T10:59:51.807Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T10:59:51.807Z", + "end": "2022-07-22T12:36:46.737Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-22T12:36:46.737Z", + "end": "2022-07-22T14:13:41.667Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "440349172934867131", + "game": "542475118396309528", + "start": "2022-07-11T18:48:23.823Z", + "end": "2022-07-12T04:08:10.468Z", + "events": [ + { + "start": "2022-07-11T18:48:23.823Z", + "end": "2022-07-11T20:40:21.152Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T20:40:21.152Z", + "end": "2022-07-11T22:32:18.481Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-11T22:32:18.481Z", + "end": "2022-07-12T00:24:15.810Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T00:24:15.810Z", + "end": "2022-07-12T02:16:13.139Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T02:16:13.139Z", + "end": "2022-07-12T04:08:10.468Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "147480245458136084", + "game": "521842831262875670", + "start": "2022-07-10T17:26:23.530Z", + "end": "2022-07-10T22:11:41.118Z", + "events": [ + { + "start": "2022-07-10T17:26:23.530Z", + "end": "2022-07-10T22:11:41.118Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "731522398939920723", + "game": "606163888052109312", + "start": "2022-05-18T16:10:08.781Z", + "end": "2022-05-18T18:08:33.347Z", + "events": [ + { + "start": "2022-05-18T16:10:08.781Z", + "end": "2022-05-18T17:09:21.064Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-18T17:09:21.064Z", + "end": "2022-05-18T18:08:33.347Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "658550407298256890", + "game": "553697181249437716", + "start": "2022-06-13T11:00:42.239Z", + "end": "2022-06-13T14:21:46.129Z", + "events": [ + { + "start": "2022-06-13T11:00:42.239Z", + "end": "2022-06-13T14:21:46.129Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "517335360477493827", + "game": "356875221078245376", + "start": "2022-06-16T10:39:25.521Z", + "end": "2022-06-16T13:23:30.642Z", + "events": [ + { + "start": "2022-06-16T10:39:25.521Z", + "end": "2022-06-16T12:01:28.081Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T12:01:28.081Z", + "end": "2022-06-16T13:23:30.641Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "584069374462394368", + "start": "2022-07-09T10:21:40.866Z", + "end": "2022-07-09T18:33:58.170Z", + "events": [ + { + "start": "2022-07-09T10:21:40.866Z", + "end": "2022-07-09T18:33:58.170Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "510690749854514547", + "game": "553697181249437716", + "start": "2022-06-20T21:14:39.765Z", + "end": "2022-06-21T04:26:01.131Z", + "events": [ + { + "start": "2022-06-20T21:14:39.765Z", + "end": "2022-06-20T23:02:30.106Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-20T23:02:30.106Z", + "end": "2022-06-21T00:50:20.447Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T00:50:20.447Z", + "end": "2022-06-21T02:38:10.788Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-21T02:38:10.788Z", + "end": "2022-06-21T04:26:01.129Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "378424071510192465", + "game": "510199020782747732", + "start": "2022-06-28T13:55:28.821Z", + "end": "2022-06-28T23:48:32.772Z", + "events": [ + { + "start": "2022-06-28T13:55:28.821Z", + "end": "2022-06-28T16:23:44.808Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-28T16:23:44.808Z", + "end": "2022-06-28T18:52:00.795Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T18:52:00.795Z", + "end": "2022-06-28T21:20:16.782Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-28T21:20:16.782Z", + "end": "2022-06-28T23:48:32.769Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "153631479524744694", + "game": "542474758835535872", + "start": "2022-04-25T19:10:14.978Z", + "end": "2022-04-26T05:06:34.947Z", + "events": [ + { + "start": "2022-04-25T19:10:14.978Z", + "end": "2022-04-25T21:39:19.970Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T21:39:19.970Z", + "end": "2022-04-26T00:08:24.962Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T00:08:24.962Z", + "end": "2022-04-26T02:37:29.954Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T02:37:29.954Z", + "end": "2022-04-26T05:06:34.946Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "537786518874514211", + "game": "535869836748783616", + "start": "2022-05-11T09:23:34.942Z", + "end": "2022-05-11T10:32:13.724Z", + "events": [ + { + "start": "2022-05-11T09:23:34.942Z", + "end": "2022-05-11T09:46:27.869Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T09:46:27.869Z", + "end": "2022-05-11T10:09:20.796Z", + "state": "IDLE" + }, + { + "start": "2022-05-11T10:09:20.796Z", + "end": "2022-05-11T10:32:13.723Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786028561315351452", + "game": "576482762446602270", + "start": "2022-05-30T13:15:51.168Z", + "end": "2022-05-30T18:33:06.102Z", + "events": [ + { + "start": "2022-05-30T13:15:51.168Z", + "end": "2022-05-30T14:19:18.154Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T14:19:18.154Z", + "end": "2022-05-30T15:22:45.140Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T15:22:45.140Z", + "end": "2022-05-30T16:26:12.126Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T16:26:12.126Z", + "end": "2022-05-30T17:29:39.112Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-30T17:29:39.112Z", + "end": "2022-05-30T18:33:06.098Z", + "state": "IDLE" + } + ] + }, + { + "user": "866600263421429886", + "game": "572456126872944651", + "start": "2022-07-04T07:24:59.729Z", + "end": "2022-07-04T10:30:46.799Z", + "events": [ + { + "start": "2022-07-04T07:24:59.729Z", + "end": "2022-07-04T08:57:53.264Z", + "state": "IDLE" + }, + { + "start": "2022-07-04T08:57:53.264Z", + "end": "2022-07-04T10:30:46.799Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "161887854890745672", + "game": "553697181249437716", + "start": "2022-04-24T23:48:00.805Z", + "end": "2022-04-24T23:51:35.236Z", + "events": [ + { + "start": "2022-04-24T23:48:00.805Z", + "end": "2022-04-24T23:51:35.236Z", + "state": "IDLE" + } + ] + }, + { + "user": "584489284152985092", + "game": "508057374875975682", + "start": "2022-05-24T17:28:58.606Z", + "end": "2022-05-24T20:02:30.515Z", + "events": [ + { + "start": "2022-05-24T17:28:58.606Z", + "end": "2022-05-24T18:45:44.560Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T18:45:44.560Z", + "end": "2022-05-24T20:02:30.514Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "546175179542364160", + "start": "2022-04-30T18:19:13.312Z", + "end": "2022-05-01T04:01:30.080Z", + "events": [ + { + "start": "2022-04-30T18:19:13.312Z", + "end": "2022-04-30T20:44:47.504Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-30T20:44:47.504Z", + "end": "2022-04-30T23:10:21.696Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-30T23:10:21.696Z", + "end": "2022-05-01T01:35:55.888Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T01:35:55.888Z", + "end": "2022-05-01T04:01:30.080Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "360264570671216445", + "game": "597860020935327787", + "start": "2022-05-08T01:58:51.747Z", + "end": "2022-05-08T02:30:40.978Z", + "events": [ + { + "start": "2022-05-08T01:58:51.747Z", + "end": "2022-05-08T02:05:13.593Z", + "state": "IDLE" + }, + { + "start": "2022-05-08T02:05:13.593Z", + "end": "2022-05-08T02:11:35.439Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-08T02:11:35.439Z", + "end": "2022-05-08T02:17:57.285Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T02:17:57.285Z", + "end": "2022-05-08T02:24:19.131Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-08T02:24:19.131Z", + "end": "2022-05-08T02:30:40.977Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "495724335127362694", + "game": "542075586886107149", + "start": "2022-06-27T00:50:41.273Z", + "end": "2022-06-27T03:29:13.972Z", + "events": [ + { + "start": "2022-06-27T00:50:41.273Z", + "end": "2022-06-27T02:09:57.622Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:09:57.622Z", + "end": "2022-06-27T03:29:13.971Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "625617695768437507", + "game": "592976500802846750", + "start": "2022-05-26T12:35:11.221Z", + "end": "2022-05-26T18:39:03.329Z", + "events": [ + { + "start": "2022-05-26T12:35:11.221Z", + "end": "2022-05-26T15:37:07.275Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-26T15:37:07.275Z", + "end": "2022-05-26T18:39:03.329Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "440349172934867131", + "game": "542475118396309528", + "start": "2022-07-04T22:03:49.866Z", + "end": "2022-07-05T05:29:46.926Z", + "events": [ + { + "start": "2022-07-04T22:03:49.866Z", + "end": "2022-07-04T23:55:19.131Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-04T23:55:19.131Z", + "end": "2022-07-05T01:46:48.396Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-05T01:46:48.396Z", + "end": "2022-07-05T03:38:17.661Z", + "state": "IDLE" + }, + { + "start": "2022-07-05T03:38:17.661Z", + "end": "2022-07-05T05:29:46.926Z", + "state": "IDLE" + } + ] + }, + { + "user": "463820732483181525", + "game": "512789343157485602", + "start": "2022-05-29T04:59:16.196Z", + "end": "2022-05-29T09:30:07.637Z", + "events": [ + { + "start": "2022-05-29T04:59:16.196Z", + "end": "2022-05-29T06:29:33.343Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-29T06:29:33.343Z", + "end": "2022-05-29T07:59:50.490Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-29T07:59:50.490Z", + "end": "2022-05-29T09:30:07.637Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "786084290971413565", + "game": "510199020782747732", + "start": "2022-07-14T07:35:38.556Z", + "end": "2022-07-14T11:13:33.771Z", + "events": [ + { + "start": "2022-07-14T07:35:38.556Z", + "end": "2022-07-14T08:19:13.599Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-14T08:19:13.599Z", + "end": "2022-07-14T09:02:48.642Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T09:02:48.642Z", + "end": "2022-07-14T09:46:23.685Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-14T09:46:23.685Z", + "end": "2022-07-14T10:29:58.728Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-14T10:29:58.728Z", + "end": "2022-07-14T11:13:33.771Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "537786518874514211", + "game": "549512435585908756", + "start": "2022-07-08T01:12:51.480Z", + "end": "2022-07-08T03:06:38.070Z", + "events": [ + { + "start": "2022-07-08T01:12:51.480Z", + "end": "2022-07-08T02:09:44.775Z", + "state": "IDLE" + }, + { + "start": "2022-07-08T02:09:44.775Z", + "end": "2022-07-08T03:06:38.070Z", + "state": "IDLE" + } + ] + }, + { + "user": "715446191320920764", + "game": "535384357536399404", + "start": "2022-04-28T20:17:06.291Z", + "end": "2022-04-28T22:15:57.120Z", + "events": [ + { + "start": "2022-04-28T20:17:06.291Z", + "end": "2022-04-28T20:40:52.456Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-28T20:40:52.456Z", + "end": "2022-04-28T21:04:38.621Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T21:04:38.621Z", + "end": "2022-04-28T21:28:24.786Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T21:28:24.786Z", + "end": "2022-04-28T21:52:10.951Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-28T21:52:10.951Z", + "end": "2022-04-28T22:15:57.116Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "444246898747584433", + "game": "530454325214969866", + "start": "2022-07-05T12:46:41.924Z", + "end": "2022-07-05T14:38:01.588Z", + "events": [ + { + "start": "2022-07-05T12:46:41.924Z", + "end": "2022-07-05T13:42:21.756Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-05T13:42:21.756Z", + "end": "2022-07-05T14:38:01.588Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "406850294055619241", + "game": "512699108809637890", + "start": "2022-05-31T01:13:13.307Z", + "end": "2022-05-31T01:56:51.755Z", + "events": [ + { + "start": "2022-05-31T01:13:13.307Z", + "end": "2022-05-31T01:24:07.919Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T01:24:07.919Z", + "end": "2022-05-31T01:35:02.531Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T01:35:02.531Z", + "end": "2022-05-31T01:45:57.143Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-31T01:45:57.143Z", + "end": "2022-05-31T01:56:51.755Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "200801427122341912", + "game": "520453007578628124", + "start": "2022-04-18T06:00:23.657Z", + "end": "2022-04-18T06:40:59.856Z", + "events": [ + { + "start": "2022-04-18T06:00:23.657Z", + "end": "2022-04-18T06:08:30.896Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-18T06:08:30.896Z", + "end": "2022-04-18T06:16:38.135Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-18T06:16:38.135Z", + "end": "2022-04-18T06:24:45.374Z", + "state": "IDLE" + }, + { + "start": "2022-04-18T06:24:45.374Z", + "end": "2022-04-18T06:32:52.613Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-18T06:32:52.613Z", + "end": "2022-04-18T06:40:59.852Z", + "state": "IDLE" + } + ] + }, + { + "user": "938976307338486810", + "game": "606163888052109312", + "start": "2022-07-09T14:57:07.263Z", + "end": "2022-07-09T17:17:19.573Z", + "events": [ + { + "start": "2022-07-09T14:57:07.263Z", + "end": "2022-07-09T15:25:09.725Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T15:25:09.725Z", + "end": "2022-07-09T15:53:12.187Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-09T15:53:12.187Z", + "end": "2022-07-09T16:21:14.649Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-09T16:21:14.649Z", + "end": "2022-07-09T16:49:17.111Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-09T16:49:17.111Z", + "end": "2022-07-09T17:17:19.573Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "297014162745407430", + "game": "584069374462394368", + "start": "2022-06-26T23:17:24.267Z", + "end": "2022-06-27T08:21:57.751Z", + "events": [ + { + "start": "2022-06-26T23:17:24.267Z", + "end": "2022-06-27T02:18:55.428Z", + "state": "IDLE" + }, + { + "start": "2022-06-27T02:18:55.428Z", + "end": "2022-06-27T05:20:26.589Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-27T05:20:26.589Z", + "end": "2022-06-27T08:21:57.750Z", + "state": "IDLE" + } + ] + }, + { + "user": "768513326430993269", + "game": "519644368735567873", + "start": "2022-07-18T11:10:24.828Z", + "end": "2022-07-18T19:32:23.118Z", + "events": [ + { + "start": "2022-07-18T11:10:24.828Z", + "end": "2022-07-18T15:21:23.973Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T15:21:23.973Z", + "end": "2022-07-18T19:32:23.118Z", + "state": "IDLE" + } + ] + }, + { + "user": "628567265580410356", + "game": "558547388583772201", + "start": "2022-04-20T16:18:05.998Z", + "end": "2022-04-20T21:10:55.165Z", + "events": [ + { + "start": "2022-04-20T16:18:05.998Z", + "end": "2022-04-20T17:55:42.387Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-20T17:55:42.387Z", + "end": "2022-04-20T19:33:18.776Z", + "state": "IDLE" + }, + { + "start": "2022-04-20T19:33:18.776Z", + "end": "2022-04-20T21:10:55.165Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "347172184335646820", + "game": "565341641427124244", + "start": "2022-05-24T13:43:05.324Z", + "end": "2022-05-24T15:57:13.804Z", + "events": [ + { + "start": "2022-05-24T13:43:05.324Z", + "end": "2022-05-24T14:16:37.444Z", + "state": "IDLE" + }, + { + "start": "2022-05-24T14:16:37.444Z", + "end": "2022-05-24T14:50:09.564Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-24T14:50:09.564Z", + "end": "2022-05-24T15:23:41.684Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-24T15:23:41.684Z", + "end": "2022-05-24T15:57:13.804Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "931211630078779300", + "game": "530454325214969866", + "start": "2022-06-19T06:47:11.821Z", + "end": "2022-06-19T10:31:11.103Z", + "events": [ + { + "start": "2022-06-19T06:47:11.821Z", + "end": "2022-06-19T08:01:51.581Z", + "state": "IDLE" + }, + { + "start": "2022-06-19T08:01:51.581Z", + "end": "2022-06-19T09:16:31.341Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-19T09:16:31.341Z", + "end": "2022-06-19T10:31:11.101Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "541104083732114799", + "game": "576482762446602270", + "start": "2022-05-06T18:48:24.454Z", + "end": "2022-05-07T03:59:38.110Z", + "events": [ + { + "start": "2022-05-06T18:48:24.454Z", + "end": "2022-05-06T21:52:09.006Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-06T21:52:09.006Z", + "end": "2022-05-07T00:55:53.558Z", + "state": "IDLE" + }, + { + "start": "2022-05-07T00:55:53.558Z", + "end": "2022-05-07T03:59:38.110Z", + "state": "IDLE" + } + ] + }, + { + "user": "951131768137733554", + "game": "523154344187789312", + "start": "2022-06-21T20:09:49.486Z", + "end": "2022-06-22T06:06:58.630Z", + "events": [ + { + "start": "2022-06-21T20:09:49.486Z", + "end": "2022-06-22T06:06:58.630Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "553697181249437716", + "start": "2022-05-07T05:50:03.751Z", + "end": "2022-05-07T07:14:35.944Z", + "events": [ + { + "start": "2022-05-07T05:50:03.751Z", + "end": "2022-05-07T07:14:35.944Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "495724335127362694", + "game": "520462578061803588", + "start": "2022-07-20T02:02:33.051Z", + "end": "2022-07-20T07:09:19.545Z", + "events": [ + { + "start": "2022-07-20T02:02:33.051Z", + "end": "2022-07-20T03:19:14.674Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-20T03:19:14.674Z", + "end": "2022-07-20T04:35:56.297Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T04:35:56.297Z", + "end": "2022-07-20T05:52:37.920Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-20T05:52:37.920Z", + "end": "2022-07-20T07:09:19.543Z", + "state": "IDLE" + } + ] + }, + { + "user": "881335427428668054", + "game": "553697181249437716", + "start": "2022-07-22T01:15:53.272Z", + "end": "2022-07-22T05:02:17.748Z", + "events": [ + { + "start": "2022-07-22T01:15:53.272Z", + "end": "2022-07-22T05:02:17.748Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "526489929631531009", + "start": "2022-07-03T16:48:09.769Z", + "end": "2022-07-03T17:05:06.015Z", + "events": [ + { + "start": "2022-07-03T16:48:09.769Z", + "end": "2022-07-03T16:56:37.892Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-03T16:56:37.892Z", + "end": "2022-07-03T17:05:06.015Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "628567265580410356", + "game": "530454325214969866", + "start": "2022-07-07T16:55:14.007Z", + "end": "2022-07-07T17:48:45.569Z", + "events": [ + { + "start": "2022-07-07T16:55:14.007Z", + "end": "2022-07-07T17:13:04.527Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-07T17:13:04.527Z", + "end": "2022-07-07T17:30:55.047Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-07T17:30:55.047Z", + "end": "2022-07-07T17:48:45.567Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "106607193284486979", + "game": "597588168178663434", + "start": "2022-06-21T22:37:53.826Z", + "end": "2022-06-22T02:05:36.698Z", + "events": [ + { + "start": "2022-06-21T22:37:53.826Z", + "end": "2022-06-21T23:29:49.544Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-21T23:29:49.544Z", + "end": "2022-06-22T00:21:45.262Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T00:21:45.262Z", + "end": "2022-06-22T01:13:40.980Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-22T01:13:40.980Z", + "end": "2022-06-22T02:05:36.698Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "628567265580410356", + "game": "520453007578628124", + "start": "2022-07-13T04:47:55.569Z", + "end": "2022-07-13T04:57:54.912Z", + "events": [ + { + "start": "2022-07-13T04:47:55.569Z", + "end": "2022-07-13T04:57:54.912Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "318220875546522080", + "game": "572456126872944651", + "start": "2022-05-05T17:18:05.127Z", + "end": "2022-05-05T21:10:29.961Z", + "events": [ + { + "start": "2022-05-05T17:18:05.127Z", + "end": "2022-05-05T18:35:33.405Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T18:35:33.405Z", + "end": "2022-05-05T19:53:01.683Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-05T19:53:01.683Z", + "end": "2022-05-05T21:10:29.961Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "572456126872944651", + "start": "2022-04-27T05:30:12.493Z", + "end": "2022-04-27T14:24:31.812Z", + "events": [ + { + "start": "2022-04-27T05:30:12.493Z", + "end": "2022-04-27T14:24:31.812Z", + "state": "IDLE" + } + ] + }, + { + "user": "747381962738157784", + "game": "550277544025522176", + "start": "2022-04-26T07:11:00.378Z", + "end": "2022-04-26T14:58:22.537Z", + "events": [ + { + "start": "2022-04-26T07:11:00.378Z", + "end": "2022-04-26T09:07:50.917Z", + "state": "IDLE" + }, + { + "start": "2022-04-26T09:07:50.917Z", + "end": "2022-04-26T11:04:41.456Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T11:04:41.456Z", + "end": "2022-04-26T13:01:31.995Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-26T13:01:31.995Z", + "end": "2022-04-26T14:58:22.534Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "285410867718320291", + "game": "700136079562375258", + "start": "2022-06-04T16:49:07.519Z", + "end": "2022-06-05T02:16:26.288Z", + "events": [ + { + "start": "2022-06-04T16:49:07.519Z", + "end": "2022-06-04T18:42:35.272Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-04T18:42:35.272Z", + "end": "2022-06-04T20:36:03.025Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-04T20:36:03.025Z", + "end": "2022-06-04T22:29:30.778Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-04T22:29:30.778Z", + "end": "2022-06-05T00:22:58.531Z", + "state": "IDLE" + }, + { + "start": "2022-06-05T00:22:58.531Z", + "end": "2022-06-05T02:16:26.284Z", + "state": "IDLE" + } + ] + }, + { + "user": "584489284152985092", + "game": "520462578061803588", + "start": "2022-06-22T23:25:53.001Z", + "end": "2022-06-23T08:33:01.364Z", + "events": [ + { + "start": "2022-06-22T23:25:53.001Z", + "end": "2022-06-23T01:42:40.091Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-23T01:42:40.091Z", + "end": "2022-06-23T03:59:27.181Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-23T03:59:27.181Z", + "end": "2022-06-23T06:16:14.271Z", + "state": "IDLE" + }, + { + "start": "2022-06-23T06:16:14.271Z", + "end": "2022-06-23T08:33:01.361Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "378424071510192465", + "game": "512789427462995988", + "start": "2022-06-28T00:04:53.261Z", + "end": "2022-06-28T06:48:03.173Z", + "events": [ + { + "start": "2022-06-28T00:04:53.261Z", + "end": "2022-06-28T01:45:40.739Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-28T01:45:40.739Z", + "end": "2022-06-28T03:26:28.217Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T03:26:28.217Z", + "end": "2022-06-28T05:07:15.695Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-28T05:07:15.695Z", + "end": "2022-06-28T06:48:03.173Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "549054179973094329", + "game": "526489929631531009", + "start": "2022-07-18T01:42:11.193Z", + "end": "2022-07-18T03:02:14.212Z", + "events": [ + { + "start": "2022-07-18T01:42:11.193Z", + "end": "2022-07-18T01:58:11.796Z", + "state": "IDLE" + }, + { + "start": "2022-07-18T01:58:11.796Z", + "end": "2022-07-18T02:14:12.399Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T02:14:12.399Z", + "end": "2022-07-18T02:30:13.002Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T02:30:13.002Z", + "end": "2022-07-18T02:46:13.605Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-18T02:46:13.605Z", + "end": "2022-07-18T03:02:14.208Z", + "state": "IDLE" + } + ] + }, + { + "user": "500919588166575890", + "game": "584069374462394368", + "start": "2022-07-12T12:02:10.793Z", + "end": "2022-07-12T14:29:44.160Z", + "events": [ + { + "start": "2022-07-12T12:02:10.793Z", + "end": "2022-07-12T12:31:41.466Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T12:31:41.466Z", + "end": "2022-07-12T13:01:12.139Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T13:01:12.139Z", + "end": "2022-07-12T13:30:42.812Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T13:30:42.812Z", + "end": "2022-07-12T14:00:13.485Z", + "state": "IDLE" + }, + { + "start": "2022-07-12T14:00:13.485Z", + "end": "2022-07-12T14:29:44.158Z", + "state": "IDLE" + } + ] + }, + { + "user": "101572134856427564", + "game": "508057374875975682", + "start": "2022-05-30T03:47:08.376Z", + "end": "2022-05-30T06:11:00.056Z", + "events": [ + { + "start": "2022-05-30T03:47:08.376Z", + "end": "2022-05-30T04:23:06.296Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T04:23:06.296Z", + "end": "2022-05-30T04:59:04.216Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-30T04:59:04.216Z", + "end": "2022-05-30T05:35:02.136Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-30T05:35:02.136Z", + "end": "2022-05-30T06:11:00.056Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "922664752332558395", + "game": "572456126872944651", + "start": "2022-06-08T15:35:16.431Z", + "end": "2022-06-08T16:53:21.587Z", + "events": [ + { + "start": "2022-06-08T15:35:16.431Z", + "end": "2022-06-08T16:14:19.009Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-08T16:14:19.009Z", + "end": "2022-06-08T16:53:21.587Z", + "state": "IDLE" + } + ] + }, + { + "user": "185442579258045359", + "game": "700136079562375258", + "start": "2022-05-26T04:58:28.718Z", + "end": "2022-05-26T07:01:15.359Z", + "events": [ + { + "start": "2022-05-26T04:58:28.718Z", + "end": "2022-05-26T07:01:15.359Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "500919588166575890", + "game": "558547388583772201", + "start": "2022-07-18T06:01:36.821Z", + "end": "2022-07-18T08:18:13.055Z", + "events": [ + { + "start": "2022-07-18T06:01:36.821Z", + "end": "2022-07-18T06:28:56.067Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T06:28:56.067Z", + "end": "2022-07-18T06:56:15.313Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-18T06:56:15.313Z", + "end": "2022-07-18T07:23:34.559Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T07:23:34.559Z", + "end": "2022-07-18T07:50:53.805Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-18T07:50:53.805Z", + "end": "2022-07-18T08:18:13.051Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "500919588166575890", + "game": "549512435585908756", + "start": "2022-07-31T06:02:44.890Z", + "end": "2022-07-31T10:16:31.400Z", + "events": [ + { + "start": "2022-07-31T06:02:44.890Z", + "end": "2022-07-31T08:09:38.145Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-31T08:09:38.145Z", + "end": "2022-07-31T10:16:31.400Z", + "state": "IDLE" + } + ] + }, + { + "user": "131482253203487270", + "game": "550277544025522176", + "start": "2022-04-14T16:28:38.193Z", + "end": "2022-04-15T02:14:58.682Z", + "events": [ + { + "start": "2022-04-14T16:28:38.193Z", + "end": "2022-04-14T19:44:05.022Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T19:44:05.022Z", + "end": "2022-04-14T22:59:31.851Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-14T22:59:31.851Z", + "end": "2022-04-15T02:14:58.680Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "508057374875975682", + "start": "2022-08-05T12:27:26.373Z", + "end": "2022-08-05T18:07:33.471Z", + "events": [ + { + "start": "2022-08-05T12:27:26.373Z", + "end": "2022-08-05T15:17:29.922Z", + "state": "IDLE" + }, + { + "start": "2022-08-05T15:17:29.922Z", + "end": "2022-08-05T18:07:33.471Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "958598056500699208", + "game": "530454325214969866", + "start": "2022-05-12T00:07:03.002Z", + "end": "2022-05-12T01:59:00.165Z", + "events": [ + { + "start": "2022-05-12T00:07:03.002Z", + "end": "2022-05-12T01:03:01.583Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-12T01:03:01.583Z", + "end": "2022-05-12T01:59:00.164Z", + "state": "IDLE" + } + ] + }, + { + "user": "161887854890745672", + "game": "584069374462394368", + "start": "2022-05-31T05:29:44.086Z", + "end": "2022-05-31T14:35:55.033Z", + "events": [ + { + "start": "2022-05-31T05:29:44.086Z", + "end": "2022-05-31T08:31:47.735Z", + "state": "IDLE" + }, + { + "start": "2022-05-31T08:31:47.735Z", + "end": "2022-05-31T11:33:51.384Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-31T11:33:51.384Z", + "end": "2022-05-31T14:35:55.033Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "394970121077311909", + "game": "535869836748783616", + "start": "2022-07-13T06:55:49.480Z", + "end": "2022-07-13T10:49:23.765Z", + "events": [ + { + "start": "2022-07-13T06:55:49.480Z", + "end": "2022-07-13T08:52:36.622Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-13T08:52:36.622Z", + "end": "2022-07-13T10:49:23.764Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "584489284152985092", + "game": "510199020782747732", + "start": "2022-06-02T18:23:06.860Z", + "end": "2022-06-03T00:30:11.109Z", + "events": [ + { + "start": "2022-06-02T18:23:06.860Z", + "end": "2022-06-02T19:54:52.922Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-02T19:54:52.922Z", + "end": "2022-06-02T21:26:38.984Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-02T21:26:38.984Z", + "end": "2022-06-02T22:58:25.046Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-02T22:58:25.046Z", + "end": "2022-06-03T00:30:11.108Z", + "state": "IDLE" + } + ] + }, + { + "user": "713444659295913502", + "game": "530454325214969866", + "start": "2022-04-27T08:46:20.144Z", + "end": "2022-04-27T14:25:48.310Z", + "events": [ + { + "start": "2022-04-27T08:46:20.144Z", + "end": "2022-04-27T09:54:13.777Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T09:54:13.777Z", + "end": "2022-04-27T11:02:07.410Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T11:02:07.410Z", + "end": "2022-04-27T12:10:01.043Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-27T12:10:01.043Z", + "end": "2022-04-27T13:17:54.676Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-27T13:17:54.676Z", + "end": "2022-04-27T14:25:48.309Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "453350270016457959", + "game": "542475118396309528", + "start": "2022-07-22T01:57:32.050Z", + "end": "2022-07-22T08:15:08.025Z", + "events": [ + { + "start": "2022-07-22T01:57:32.050Z", + "end": "2022-07-22T04:03:24.041Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-22T04:03:24.041Z", + "end": "2022-07-22T06:09:16.032Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-22T06:09:16.032Z", + "end": "2022-07-22T08:15:08.023Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "264503060524837708", + "game": "572456126872944651", + "start": "2022-06-14T23:39:32.680Z", + "end": "2022-06-15T08:28:02.084Z", + "events": [ + { + "start": "2022-06-14T23:39:32.680Z", + "end": "2022-06-15T01:51:40.031Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T01:51:40.031Z", + "end": "2022-06-15T04:03:47.382Z", + "state": "IDLE" + }, + { + "start": "2022-06-15T04:03:47.382Z", + "end": "2022-06-15T06:15:54.733Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-15T06:15:54.733Z", + "end": "2022-06-15T08:28:02.084Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "452396069922968436", + "game": "512699108809637890", + "start": "2022-04-17T01:38:03.195Z", + "end": "2022-04-17T02:47:57.077Z", + "events": [ + { + "start": "2022-04-17T01:38:03.195Z", + "end": "2022-04-17T01:52:01.971Z", + "state": "ACTIVE" + }, + { + "start": "2022-04-17T01:52:01.971Z", + "end": "2022-04-17T02:06:00.747Z", + "state": "IDLE" + }, + { + "start": "2022-04-17T02:06:00.747Z", + "end": "2022-04-17T02:19:59.523Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-17T02:19:59.523Z", + "end": "2022-04-17T02:33:58.299Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-17T02:33:58.299Z", + "end": "2022-04-17T02:47:57.075Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "500919588166575890", + "game": "576482762446602270", + "start": "2022-04-23T06:58:10.984Z", + "end": "2022-04-23T08:46:36.682Z", + "events": [ + { + "start": "2022-04-23T06:58:10.984Z", + "end": "2022-04-23T07:34:19.550Z", + "state": "IDLE" + }, + { + "start": "2022-04-23T07:34:19.550Z", + "end": "2022-04-23T08:10:28.116Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-23T08:10:28.116Z", + "end": "2022-04-23T08:46:36.682Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "878082205985098233", + "game": "542474758835535872", + "start": "2022-05-12T07:46:29.054Z", + "end": "2022-05-12T12:35:03.554Z", + "events": [ + { + "start": "2022-05-12T07:46:29.054Z", + "end": "2022-05-12T08:58:37.679Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T08:58:37.679Z", + "end": "2022-05-12T10:10:46.304Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-12T10:10:46.304Z", + "end": "2022-05-12T11:22:54.929Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-12T11:22:54.929Z", + "end": "2022-05-12T12:35:03.554Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "725502702868293700", + "game": "512789120234422301", + "start": "2022-05-23T13:39:44.645Z", + "end": "2022-05-23T16:52:31.204Z", + "events": [ + { + "start": "2022-05-23T13:39:44.645Z", + "end": "2022-05-23T14:27:56.284Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-23T14:27:56.284Z", + "end": "2022-05-23T15:16:07.923Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-23T15:16:07.923Z", + "end": "2022-05-23T16:04:19.562Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-23T16:04:19.562Z", + "end": "2022-05-23T16:52:31.201Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "302347517889336519", + "game": "614448244260339712", + "start": "2022-05-30T12:29:20.281Z", + "end": "2022-05-30T14:33:50.959Z", + "events": [ + { + "start": "2022-05-30T12:29:20.281Z", + "end": "2022-05-30T14:33:50.959Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "394970121077311909", + "game": "575412499399180288", + "start": "2022-05-16T10:06:51.282Z", + "end": "2022-05-16T13:33:18.923Z", + "events": [ + { + "start": "2022-05-16T10:06:51.282Z", + "end": "2022-05-16T10:48:08.810Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T10:48:08.810Z", + "end": "2022-05-16T11:29:26.338Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T11:29:26.338Z", + "end": "2022-05-16T12:10:43.866Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T12:10:43.866Z", + "end": "2022-05-16T12:52:01.394Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-16T12:52:01.394Z", + "end": "2022-05-16T13:33:18.922Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "521350927850935744", + "game": "523154344187789312", + "start": "2022-06-23T22:26:17.609Z", + "end": "2022-06-23T23:04:32.346Z", + "events": [ + { + "start": "2022-06-23T22:26:17.609Z", + "end": "2022-06-23T23:04:32.346Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "600708263053781983", + "game": "549512435585908756", + "start": "2022-06-23T23:31:23.980Z", + "end": "2022-06-24T05:07:39.388Z", + "events": [ + { + "start": "2022-06-23T23:31:23.980Z", + "end": "2022-06-24T05:07:39.388Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "584489284152985092", + "game": "549512435585908756", + "start": "2022-04-20T04:04:22.159Z", + "end": "2022-04-20T10:10:30.239Z", + "events": [ + { + "start": "2022-04-20T04:04:22.159Z", + "end": "2022-04-20T06:06:24.852Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T06:06:24.852Z", + "end": "2022-04-20T08:08:27.545Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-20T08:08:27.545Z", + "end": "2022-04-20T10:10:30.238Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "517335360477493827", + "game": "565341641427124244", + "start": "2022-07-27T03:44:22.641Z", + "end": "2022-07-27T08:39:43.727Z", + "events": [ + { + "start": "2022-07-27T03:44:22.641Z", + "end": "2022-07-27T04:43:26.858Z", + "state": "IDLE" + }, + { + "start": "2022-07-27T04:43:26.858Z", + "end": "2022-07-27T05:42:31.075Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-27T05:42:31.075Z", + "end": "2022-07-27T06:41:35.292Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T06:41:35.292Z", + "end": "2022-07-27T07:40:39.509Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-27T07:40:39.509Z", + "end": "2022-07-27T08:39:43.726Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "378424071510192465", + "game": "512498684211232768", + "start": "2022-06-13T22:43:09.850Z", + "end": "2022-06-14T03:55:51.660Z", + "events": [ + { + "start": "2022-06-13T22:43:09.850Z", + "end": "2022-06-14T00:27:23.786Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-14T00:27:23.786Z", + "end": "2022-06-14T02:11:37.722Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-14T02:11:37.722Z", + "end": "2022-06-14T03:55:51.658Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "395281349698024181", + "game": "535384357536399404", + "start": "2022-06-16T21:24:47.564Z", + "end": "2022-06-17T07:04:31.032Z", + "events": [ + { + "start": "2022-06-16T21:24:47.564Z", + "end": "2022-06-16T23:49:43.431Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-16T23:49:43.431Z", + "end": "2022-06-17T02:14:39.298Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T02:14:39.298Z", + "end": "2022-06-17T04:39:35.165Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-17T04:39:35.165Z", + "end": "2022-06-17T07:04:31.032Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "658550407298256890", + "game": "508057374875975682", + "start": "2022-07-10T02:33:01.864Z", + "end": "2022-07-10T02:52:31.507Z", + "events": [ + { + "start": "2022-07-10T02:33:01.864Z", + "end": "2022-07-10T02:36:55.792Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T02:36:55.792Z", + "end": "2022-07-10T02:40:49.720Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-10T02:40:49.720Z", + "end": "2022-07-10T02:44:43.648Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T02:44:43.648Z", + "end": "2022-07-10T02:48:37.576Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-10T02:48:37.576Z", + "end": "2022-07-10T02:52:31.504Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "147480245458136084", + "game": "606163888052109312", + "start": "2022-04-22T06:44:18.504Z", + "end": "2022-04-22T12:55:20.859Z", + "events": [ + { + "start": "2022-04-22T06:44:18.504Z", + "end": "2022-04-22T12:55:20.859Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "453350270016457959", + "game": "512789120234422301", + "start": "2022-07-12T08:21:06.406Z", + "end": "2022-07-12T16:41:32.660Z", + "events": [ + { + "start": "2022-07-12T08:21:06.406Z", + "end": "2022-07-12T10:01:11.656Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T10:01:11.656Z", + "end": "2022-07-12T11:41:16.906Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-12T11:41:16.906Z", + "end": "2022-07-12T13:21:22.156Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-12T13:21:22.156Z", + "end": "2022-07-12T15:01:27.406Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-12T15:01:27.406Z", + "end": "2022-07-12T16:41:32.656Z", + "state": "IDLE" + } + ] + }, + { + "user": "636935635446628860", + "game": "520462578061803588", + "start": "2022-07-03T03:46:21.062Z", + "end": "2022-07-03T11:00:39.882Z", + "events": [ + { + "start": "2022-07-03T03:46:21.062Z", + "end": "2022-07-03T07:23:30.472Z", + "state": "IDLE" + }, + { + "start": "2022-07-03T07:23:30.472Z", + "end": "2022-07-03T11:00:39.882Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "453350270016457959", + "game": "526489929631531009", + "start": "2022-07-13T09:58:30.048Z", + "end": "2022-07-13T17:52:53.169Z", + "events": [ + { + "start": "2022-07-13T09:58:30.048Z", + "end": "2022-07-13T17:52:53.169Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "881335427428668054", + "game": "614380482620293151", + "start": "2022-06-26T18:33:08.174Z", + "end": "2022-06-26T22:43:18.558Z", + "events": [ + { + "start": "2022-06-26T18:33:08.174Z", + "end": "2022-06-26T19:56:31.635Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T19:56:31.635Z", + "end": "2022-06-26T21:19:55.096Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-26T21:19:55.096Z", + "end": "2022-06-26T22:43:18.557Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "347172184335646820", + "game": "584069374462394368", + "start": "2022-05-21T20:33:40.219Z", + "end": "2022-05-22T05:02:26.702Z", + "events": [ + { + "start": "2022-05-21T20:33:40.219Z", + "end": "2022-05-21T23:23:15.713Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-21T23:23:15.713Z", + "end": "2022-05-22T02:12:51.207Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-22T02:12:51.207Z", + "end": "2022-05-22T05:02:26.701Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "568387317892070397", + "game": "518088627234930688", + "start": "2022-06-19T18:18:16.450Z", + "end": "2022-06-19T21:07:51.819Z", + "events": [ + { + "start": "2022-06-19T18:18:16.450Z", + "end": "2022-06-19T21:07:51.819Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "514228311661084682", + "start": "2022-04-30T22:53:18.835Z", + "end": "2022-05-01T08:23:05.029Z", + "events": [ + { + "start": "2022-04-30T22:53:18.835Z", + "end": "2022-05-01T01:15:45.383Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T01:15:45.383Z", + "end": "2022-05-01T03:38:11.931Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T03:38:11.931Z", + "end": "2022-05-01T06:00:38.479Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-01T06:00:38.479Z", + "end": "2022-05-01T08:23:05.027Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "355708392202112685", + "game": "553697181249437716", + "start": "2022-04-27T01:06:57.264Z", + "end": "2022-04-27T02:08:57.772Z", + "events": [ + { + "start": "2022-04-27T01:06:57.264Z", + "end": "2022-04-27T01:22:27.391Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-27T01:22:27.391Z", + "end": "2022-04-27T01:37:57.518Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:37:57.518Z", + "end": "2022-04-27T01:53:27.645Z", + "state": "IDLE" + }, + { + "start": "2022-04-27T01:53:27.645Z", + "end": "2022-04-27T02:08:57.772Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "762163239408560283", + "game": "584069374462394368", + "start": "2022-05-17T19:15:20.635Z", + "end": "2022-05-17T20:15:03.247Z", + "events": [ + { + "start": "2022-05-17T19:15:20.635Z", + "end": "2022-05-17T19:30:16.288Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T19:30:16.288Z", + "end": "2022-05-17T19:45:11.941Z", + "state": "IDLE" + }, + { + "start": "2022-05-17T19:45:11.941Z", + "end": "2022-05-17T20:00:07.594Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-17T20:00:07.594Z", + "end": "2022-05-17T20:15:03.247Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "951234649334557435", + "game": "575412499399180288", + "start": "2022-06-27T23:38:13.582Z", + "end": "2022-06-28T06:54:43.828Z", + "events": [ + { + "start": "2022-06-27T23:38:13.582Z", + "end": "2022-06-28T06:54:43.828Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "185442579258045359", + "game": "554573307161214977", + "start": "2022-07-06T02:59:30.987Z", + "end": "2022-07-06T08:42:26.127Z", + "events": [ + { + "start": "2022-07-06T02:59:30.987Z", + "end": "2022-07-06T04:08:06.015Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T04:08:06.015Z", + "end": "2022-07-06T05:16:41.043Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-06T05:16:41.043Z", + "end": "2022-07-06T06:25:16.071Z", + "state": "OFFLINE" + }, + { + "start": "2022-07-06T06:25:16.071Z", + "end": "2022-07-06T07:33:51.099Z", + "state": "IDLE" + }, + { + "start": "2022-07-06T07:33:51.099Z", + "end": "2022-07-06T08:42:26.127Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "605723970188938456", + "game": "523154344187789312", + "start": "2022-06-08T17:22:11.775Z", + "end": "2022-06-09T03:01:28.336Z", + "events": [ + { + "start": "2022-06-08T17:22:11.775Z", + "end": "2022-06-08T22:11:50.055Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T22:11:50.055Z", + "end": "2022-06-09T03:01:28.335Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "951131768137733554", + "game": "512789427462995988", + "start": "2022-04-13T04:00:44.783Z", + "end": "2022-04-13T04:26:46.351Z", + "events": [ + { + "start": "2022-04-13T04:00:44.783Z", + "end": "2022-04-13T04:05:57.096Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-13T04:05:57.096Z", + "end": "2022-04-13T04:11:09.409Z", + "state": "IDLE" + }, + { + "start": "2022-04-13T04:11:09.409Z", + "end": "2022-04-13T04:16:21.722Z", + "state": "IDLE" + }, + { + "start": "2022-04-13T04:16:21.722Z", + "end": "2022-04-13T04:21:34.035Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-13T04:21:34.035Z", + "end": "2022-04-13T04:26:46.348Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "213263852824749877", + "game": "542075586886107149", + "start": "2022-07-27T08:21:19.485Z", + "end": "2022-07-27T15:23:03.254Z", + "events": [ + { + "start": "2022-07-27T08:21:19.485Z", + "end": "2022-07-27T11:52:11.369Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-27T11:52:11.369Z", + "end": "2022-07-27T15:23:03.253Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "336473229248470346", + "game": "542075586886107149", + "start": "2022-06-24T00:12:08.933Z", + "end": "2022-06-24T02:21:16.273Z", + "events": [ + { + "start": "2022-06-24T00:12:08.933Z", + "end": "2022-06-24T02:21:16.273Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "559757870366930730", + "game": "614380482620293151", + "start": "2022-07-26T18:02:40.182Z", + "end": "2022-07-26T19:55:15.615Z", + "events": [ + { + "start": "2022-07-26T18:02:40.182Z", + "end": "2022-07-26T18:40:11.993Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-26T18:40:11.993Z", + "end": "2022-07-26T19:17:43.804Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-26T19:17:43.804Z", + "end": "2022-07-26T19:55:15.615Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "525940629729163286", + "game": "530454325214969866", + "start": "2022-06-02T12:46:59.565Z", + "end": "2022-06-02T19:54:36.326Z", + "events": [ + { + "start": "2022-06-02T12:46:59.565Z", + "end": "2022-06-02T19:54:36.326Z", + "state": "IDLE" + } + ] + }, + { + "user": "537786518874514211", + "game": "700136079562375258", + "start": "2022-05-28T04:51:39.448Z", + "end": "2022-05-28T12:05:41.900Z", + "events": [ + { + "start": "2022-05-28T04:51:39.448Z", + "end": "2022-05-28T06:40:10.061Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-28T06:40:10.061Z", + "end": "2022-05-28T08:28:40.674Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-28T08:28:40.674Z", + "end": "2022-05-28T10:17:11.287Z", + "state": "IDLE" + }, + { + "start": "2022-05-28T10:17:11.287Z", + "end": "2022-05-28T12:05:41.900Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "347172184335646820", + "game": "519644267212177418", + "start": "2022-06-17T06:30:54.310Z", + "end": "2022-06-17T08:38:51.351Z", + "events": [ + { + "start": "2022-06-17T06:30:54.310Z", + "end": "2022-06-17T07:34:52.830Z", + "state": "IDLE" + }, + { + "start": "2022-06-17T07:34:52.830Z", + "end": "2022-06-17T08:38:51.350Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "457796054587169483", + "game": "569253958967885828", + "start": "2022-07-11T04:15:43.095Z", + "end": "2022-07-11T13:47:37.342Z", + "events": [ + { + "start": "2022-07-11T04:15:43.095Z", + "end": "2022-07-11T09:01:40.218Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-11T09:01:40.218Z", + "end": "2022-07-11T13:47:37.341Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "541104083732114799", + "game": "542475118396309528", + "start": "2022-05-11T07:12:33.548Z", + "end": "2022-05-11T16:45:06.056Z", + "events": [ + { + "start": "2022-05-11T07:12:33.548Z", + "end": "2022-05-11T09:07:04.049Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-11T09:07:04.049Z", + "end": "2022-05-11T11:01:34.550Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-11T11:01:34.550Z", + "end": "2022-05-11T12:56:05.051Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-11T12:56:05.051Z", + "end": "2022-05-11T14:50:35.552Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-11T14:50:35.552Z", + "end": "2022-05-11T16:45:06.053Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "549054179973094329", + "game": "518088627234930688", + "start": "2022-05-03T22:19:27.555Z", + "end": "2022-05-04T06:52:08.757Z", + "events": [ + { + "start": "2022-05-03T22:19:27.555Z", + "end": "2022-05-04T00:01:59.795Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T00:01:59.795Z", + "end": "2022-05-04T01:44:32.035Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T01:44:32.035Z", + "end": "2022-05-04T03:27:04.275Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-04T03:27:04.275Z", + "end": "2022-05-04T05:09:36.515Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-04T05:09:36.515Z", + "end": "2022-05-04T06:52:08.755Z", + "state": "IDLE" + } + ] + }, + { + "user": "424856688594618054", + "game": "542075586886107149", + "start": "2022-07-30T04:48:58.993Z", + "end": "2022-07-30T08:58:57.772Z", + "events": [ + { + "start": "2022-07-30T04:48:58.993Z", + "end": "2022-07-30T08:58:57.772Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "302679892350666678", + "game": "526489929631531009", + "start": "2022-06-07T22:59:51.771Z", + "end": "2022-06-08T04:29:09.975Z", + "events": [ + { + "start": "2022-06-07T22:59:51.771Z", + "end": "2022-06-08T00:22:11.322Z", + "state": "OFFLINE" + }, + { + "start": "2022-06-08T00:22:11.322Z", + "end": "2022-06-08T01:44:30.873Z", + "state": "IDLE" + }, + { + "start": "2022-06-08T01:44:30.873Z", + "end": "2022-06-08T03:06:50.424Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-06-08T03:06:50.424Z", + "end": "2022-06-08T04:29:09.975Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "347172184335646820", + "game": "558547388583772201", + "start": "2022-07-28T08:13:02.713Z", + "end": "2022-07-28T16:39:19.577Z", + "events": [ + { + "start": "2022-07-28T08:13:02.713Z", + "end": "2022-07-28T10:19:36.929Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-28T10:19:36.929Z", + "end": "2022-07-28T12:26:11.145Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T12:26:11.145Z", + "end": "2022-07-28T14:32:45.361Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-28T14:32:45.361Z", + "end": "2022-07-28T16:39:19.577Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "538658792298239054", + "game": "521842831262875670", + "start": "2022-05-25T16:38:56.987Z", + "end": "2022-05-26T01:43:21.921Z", + "events": [ + { + "start": "2022-05-25T16:38:56.987Z", + "end": "2022-05-25T19:40:25.298Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T19:40:25.298Z", + "end": "2022-05-25T22:41:53.609Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-25T22:41:53.609Z", + "end": "2022-05-26T01:43:21.920Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "185442579258045359", + "game": "535384357536399404", + "start": "2022-07-29T11:43:51.316Z", + "end": "2022-07-29T17:05:10.916Z", + "events": [ + { + "start": "2022-07-29T11:43:51.316Z", + "end": "2022-07-29T13:30:57.849Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-29T13:30:57.849Z", + "end": "2022-07-29T15:18:04.382Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-29T15:18:04.382Z", + "end": "2022-07-29T17:05:10.915Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "147480245458136084", + "game": "549512435585908756", + "start": "2022-07-21T04:06:20.187Z", + "end": "2022-07-21T09:44:18.259Z", + "events": [ + { + "start": "2022-07-21T04:06:20.187Z", + "end": "2022-07-21T05:30:49.705Z", + "state": "IDLE" + }, + { + "start": "2022-07-21T05:30:49.705Z", + "end": "2022-07-21T06:55:19.223Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-07-21T06:55:19.223Z", + "end": "2022-07-21T08:19:48.741Z", + "state": "ACTIVE" + }, + { + "start": "2022-07-21T08:19:48.741Z", + "end": "2022-07-21T09:44:18.259Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "123137660023366590", + "game": "514228311661084682", + "start": "2022-05-24T05:56:50.088Z", + "end": "2022-05-24T15:34:18.809Z", + "events": [ + { + "start": "2022-05-24T05:56:50.088Z", + "end": "2022-05-24T09:09:19.661Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T09:09:19.661Z", + "end": "2022-05-24T12:21:49.234Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-05-24T12:21:49.234Z", + "end": "2022-05-24T15:34:18.807Z", + "state": "OFFLINE" + } + ] + }, + { + "user": "747381962738157784", + "game": "550277544025522176", + "start": "2022-04-25T00:09:18.629Z", + "end": "2022-04-25T09:52:13.593Z", + "events": [ + { + "start": "2022-04-25T00:09:18.629Z", + "end": "2022-04-25T03:23:36.950Z", + "state": "IDLE" + }, + { + "start": "2022-04-25T03:23:36.950Z", + "end": "2022-04-25T06:37:55.271Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-25T06:37:55.271Z", + "end": "2022-04-25T09:52:13.592Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "495724335127362694", + "game": "512699108809637890", + "start": "2022-05-08T12:55:15.232Z", + "end": "2022-05-08T16:42:25.008Z", + "events": [ + { + "start": "2022-05-08T12:55:15.232Z", + "end": "2022-05-08T14:10:58.490Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T14:10:58.490Z", + "end": "2022-05-08T15:26:41.748Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-08T15:26:41.748Z", + "end": "2022-05-08T16:42:25.006Z", + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "user": "297014162745407430", + "game": "606163888052109312", + "start": "2022-05-21T21:44:22.055Z", + "end": "2022-05-22T01:38:30.720Z", + "events": [ + { + "start": "2022-05-21T21:44:22.055Z", + "end": "2022-05-21T22:31:11.788Z", + "state": "ACTIVE" + }, + { + "start": "2022-05-21T22:31:11.788Z", + "end": "2022-05-21T23:18:01.521Z", + "state": "OFFLINE" + }, + { + "start": "2022-05-21T23:18:01.521Z", + "end": "2022-05-22T00:04:51.254Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T00:04:51.254Z", + "end": "2022-05-22T00:51:40.987Z", + "state": "IDLE" + }, + { + "start": "2022-05-22T00:51:40.987Z", + "end": "2022-05-22T01:38:30.720Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "731522398939920723", + "game": "512789343157485602", + "start": "2022-04-24T01:21:45.409Z", + "end": "2022-04-24T06:05:33.344Z", + "events": [ + { + "start": "2022-04-24T01:21:45.409Z", + "end": "2022-04-24T02:32:42.392Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T02:32:42.392Z", + "end": "2022-04-24T03:43:39.375Z", + "state": "OFFLINE" + }, + { + "start": "2022-04-24T03:43:39.375Z", + "end": "2022-04-24T04:54:36.358Z", + "state": "DO_NOT_DISTURB" + }, + { + "start": "2022-04-24T04:54:36.358Z", + "end": "2022-04-24T06:05:33.341Z", + "state": "ACTIVE" + } + ] + }, + { + "user": "137536289023624121", + "game": "592976500802846750", + "start": "2022-05-01T00:00:34.540Z", + "end": "2022-05-01T02:00:28.666Z", + "events": [ + { + "start": "2022-05-01T00:00:34.540Z", + "end": "2022-05-01T01:00:31.603Z", + "state": "IDLE" + }, + { + "start": "2022-05-01T01:00:31.603Z", + "end": "2022-05-01T02:00:28.666Z", + "state": "IDLE" + } + ] + }, + { + "user": "285410867718320291", + "game": "540120593576493057", + "start": "2022-06-17T14:16:32.787Z", + "end": "2022-06-17T22:39:48.331Z", + "events": [ + { + "start": "2022-06-17T14:16:32.787Z", + "end": "2022-06-17T15:57:11.895Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T15:57:11.895Z", + "end": "2022-06-17T17:37:51.003Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T17:37:51.003Z", + "end": "2022-06-17T19:18:30.111Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T19:18:30.111Z", + "end": "2022-06-17T20:59:09.219Z", + "state": "ACTIVE" + }, + { + "start": "2022-06-17T20:59:09.219Z", + "end": "2022-06-17T22:39:48.327Z", + "state": "IDLE" + } + ] + } +].map((session) => ({ + ...session, + start: new Date(session.start), + end: new Date(session.end), + events: session.events.map((event) => ({ + ...event, + start: new Date(event.start), + end: new Date(event.end), + })) +})); + +db.session.insertMany(sessions); \ No newline at end of file diff --git a/src/dataSources/Session/index.js b/src/dataSources/Session/index.js index a26a895..6aee723 100644 --- a/src/dataSources/Session/index.js +++ b/src/dataSources/Session/index.js @@ -1,4 +1,4 @@ -const { Db, Collection } = require('mongodb'); +const { Db, Collection } = require("mongodb"); class Session { constructor(config) { @@ -11,14 +11,21 @@ class Session { await this.mongo.client.connect(); this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, 'session'); + this.collection = new Collection(this.db, "session"); } - async sessions({ ids }) { - if (ids.length > 0) { - // TODO: an exercise for the reader + async sessions({ from, to }) { + const findArgs = {}; + if (from) { + findArgs.start = findArgs.start ?? {}; + findArgs.start.$gte = new Date(from); } - const docs = await this.collection.find().toArray(); + if (to) { + findArgs.start = findArgs.start ?? {}; + findArgs.start.$lte = new Date(to); + } + + const docs = await this.collection.find(findArgs).toArray(); return docs.map(this.transformSession); } @@ -28,7 +35,7 @@ class Session { transformSession(session) { return { - id: this.context.utils.generateId('Session', session._id), + id: this.context.utils.generateId("Session", session._id), ...session, }; } diff --git a/src/schema/Session.js b/src/schema/Session.js index 6f41c51..92f23a9 100644 --- a/src/schema/Session.js +++ b/src/schema/Session.js @@ -12,7 +12,8 @@ const typeDefs = gql` extend type Query { sessions( - ids: [Int!] + from: DateTime, + to: DateTime, ): [Session!]! } # extend type Mutation {} From f564ae2a6bfead267c9f34984150828c59ef636f Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Mon, 8 Aug 2022 16:07:16 -0500 Subject: [PATCH 08/14] Add UUID to all the things --- package.json | 3 ++- src/schema/Game.js | 2 +- src/schema/Session.js | 1 + src/schema/StatusEvent.js | 1 + src/schema/User.js | 3 ++- src/schema/index.js | 1 + 6 files changed, 8 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 84d8bb4..3d640ce 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "graphql": "^16.5.0", "lodash": "^4.17.21", "mongodb": "^4.8.1", - "nodemon": "^2.0.19" + "nodemon": "^2.0.19", + "uuid": "^8.3.2" } } diff --git a/src/schema/Game.js b/src/schema/Game.js index 078ade4..6d2bc85 100644 --- a/src/schema/Game.js +++ b/src/schema/Game.js @@ -3,7 +3,7 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type Game implements nodeInterface { id: ID! - gameId: String! + uuid: UUID! name: String! aliases: [String!]! } diff --git a/src/schema/Session.js b/src/schema/Session.js index 92f23a9..15fa182 100644 --- a/src/schema/Session.js +++ b/src/schema/Session.js @@ -3,6 +3,7 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type Session implements nodeInterface { id: ID! + uuid: UUID! user: User! game: Game! start: DateTime! diff --git a/src/schema/StatusEvent.js b/src/schema/StatusEvent.js index 3d94f53..0c409fe 100644 --- a/src/schema/StatusEvent.js +++ b/src/schema/StatusEvent.js @@ -3,6 +3,7 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type StatusEvent implements nodeInterface { id: ID! + uuid: UUID! session: Session! start: DateTime! end: DateTime! diff --git a/src/schema/User.js b/src/schema/User.js index 758e10c..3f18974 100644 --- a/src/schema/User.js +++ b/src/schema/User.js @@ -3,10 +3,11 @@ const { gql } = require('apollo-server-express'); const typeDefs = gql` type User implements nodeInterface { id: ID! + uuid: UUID! discordId: String! username: String! - discriminator: Int! displayName: String! + aliases: [String!]! } extend type Query { diff --git a/src/schema/index.js b/src/schema/index.js index bbe0805..0aa1fc0 100644 --- a/src/schema/index.js +++ b/src/schema/index.js @@ -7,6 +7,7 @@ const BASE = __dirname; const typeDefs = [gql` scalar DateTime + scalar UUID interface nodeInterface { id: ID! From a64bd9fea28eb2c2d55e6956515dd985fc6e6d5f Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Mon, 8 Aug 2022 16:16:11 -0500 Subject: [PATCH 09/14] Port old data for mongo import --- docker-compose.yml | 5 +- games.json | 2217 + init.js | 23163 -- init.sh | 7 + sessions.json | 701273 ++++++++++++++++++++++++++++++++++++++++++ users.json | 159 + 6 files changed, 703660 insertions(+), 23164 deletions(-) create mode 100644 games.json delete mode 100644 init.js create mode 100755 init.sh create mode 100644 sessions.json create mode 100644 users.json diff --git a/docker-compose.yml b/docker-compose.yml index 9fc035e..fbf6aaa 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,10 @@ services: mongo: image: mongo volumes: - - ./init.js:/init.js + - ./init.sh:/init.sh + - ./sessions.json:/sessions.json + - ./games.json:/games.json + - ./users.json:/users.json ports: - 27017:27017 diff --git a/games.json b/games.json new file mode 100644 index 0000000..08a3e54 --- /dev/null +++ b/games.json @@ -0,0 +1,2217 @@ +[ + { + "uuid": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "name": "Overwatch", + "aliases": [] + }, + { + "uuid": "8e529bf1-011d-4b92-beb5-fbb766596430", + "name": "Tom Clancy's Rainbow Six Siege", + "aliases": [] + }, + { + "uuid": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "name": "League of Legends", + "aliases": [] + }, + { + "uuid": "dc697244-04f1-4bab-9699-8bdec13ec441", + "name": "Company of Heroes 2", + "aliases": [] + }, + { + "uuid": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "name": "Craftopia", + "aliases": [] + }, + { + "uuid": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "name": "Crysis 3", + "aliases": [] + }, + { + "uuid": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "name": "Rocket League", + "aliases": [] + }, + { + "uuid": "25a2f126-57f9-456c-b235-050814d7dc9c", + "name": "Call of Duty®: Modern Warfare®", + "aliases": [] + }, + { + "uuid": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "name": "Genshin Impact", + "aliases": [] + }, + { + "uuid": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "name": "Team Fortress 2", + "aliases": [] + }, + { + "uuid": "0c610844-c16e-477d-9ed3-786edfc33d88", + "name": "Heroes of the Storm", + "aliases": [] + }, + { + "uuid": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "name": "Day of Defeat: Source", + "aliases": [] + }, + { + "uuid": "688863bf-e333-448d-ac6f-533a40cf8881", + "name": "Minecraft", + "aliases": [] + }, + { + "uuid": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "name": "Call of Duty: Black Ops III", + "aliases": [] + }, + { + "uuid": "d37341d1-3892-4c86-92db-45a9333a5fca", + "name": "War Thunder", + "aliases": [] + }, + { + "uuid": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "name": "Roboquest", + "aliases": [] + }, + { + "uuid": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "name": "VALORANT", + "aliases": [] + }, + { + "uuid": "b771006f-809d-474f-bc58-90087c3fb96f", + "name": "Wallpaper Engine", + "aliases": [] + }, + { + "uuid": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "name": "Persona 4 Golden", + "aliases": [] + }, + { + "uuid": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "name": "Rising Storm 2: Vietnam", + "aliases": [] + }, + { + "uuid": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "name": "Terraria", + "aliases": [] + }, + { + "uuid": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "name": "SteamVR", + "aliases": [] + }, + { + "uuid": "8019555f-f2d2-4a30-8099-b7f727f151be", + "name": "Satisfactory", + "aliases": [] + }, + { + "uuid": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "name": "Call of Duty®: Black Ops Cold War", + "aliases": [] + }, + { + "uuid": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "name": "Risk of Rain 2", + "aliases": [] + }, + { + "uuid": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "name": "Age of Empires III: Definitive Edition", + "aliases": [] + }, + { + "uuid": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "name": "tModLoader", + "aliases": [] + }, + { + "uuid": "f6ee516d-5efa-4ec8-a780-72a969618904", + "name": "Total War: SHOGUN 2", + "aliases": [] + }, + { + "uuid": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "name": "Assassin's Creed Odyssey", + "aliases": [] + }, + { + "uuid": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "name": "Rust", + "aliases": [] + }, + { + "uuid": "d2fb9420-4f4e-44e4-9529-186ebdf2e4e9", + "name": "Heroes of the West", + "aliases": [] + }, + { + "uuid": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "name": "Beyond The Wire", + "aliases": [] + }, + { + "uuid": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "name": "Spelunky", + "aliases": [] + }, + { + "uuid": "c876ab7d-273e-4224-9086-363034f0e8c0", + "name": "Apex Legends", + "aliases": [] + }, + { + "uuid": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", + "name": "Mirror's Edge™ Catalyst", + "aliases": [] + }, + { + "uuid": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "name": "Project CARS 2", + "aliases": [] + }, + { + "uuid": "94f0b819-f513-4355-958a-8debe06fa2d0", + "name": "Post Scriptum", + "aliases": [] + }, + { + "uuid": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "name": "MTGArena", + "aliases": [] + }, + { + "uuid": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "name": "Golf With Your Friends", + "aliases": [] + }, + { + "uuid": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "name": "Gunfire Reborn", + "aliases": [] + }, + { + "uuid": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", + "name": "Danganronpa: Trigger Happy Havoc", + "aliases": [] + }, + { + "uuid": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "name": "Among Us", + "aliases": [] + }, + { + "uuid": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "name": "Halo: The Master Chief Collection", + "aliases": [] + }, + { + "uuid": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "name": "Teardown", + "aliases": [] + }, + { + "uuid": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "name": "Remnant: From the Ashes", + "aliases": [] + }, + { + "uuid": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "name": "Visual Studio Code", + "aliases": [] + }, + { + "uuid": "1c0a54e2-ead9-4add-974f-1deb56574e4c", + "name": "Slender: The Arrival", + "aliases": [] + }, + { + "uuid": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "name": "Hollow Knight", + "aliases": [] + }, + { + "uuid": "2e5c07e5-103c-4ada-a5f3-55f2f80c3d64", + "name": "Remnant ", + "aliases": [] + }, + { + "uuid": "2a9dc858-c5a5-4bf8-8cf7-09569d15fb72", + "name": "RESIDENT EVIL 7 biohazard / BIOHAZARD 7 resident evil", + "aliases": [] + }, + { + "uuid": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "name": "Hell Let Loose", + "aliases": [] + }, + { + "uuid": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "name": "Fall Guys: Ultimate Knockout", + "aliases": [] + }, + { + "uuid": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "name": "Phasmophobia", + "aliases": [] + }, + { + "uuid": "2a8a3fb5-3803-43e5-8260-295c8419e009", + "name": "In Silence", + "aliases": [] + }, + { + "uuid": "766a3663-af92-4b51-a33b-601baf4631db", + "name": "Outlast", + "aliases": [] + }, + { + "uuid": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "name": "Borderlands 3", + "aliases": [] + }, + { + "uuid": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", + "name": "RuneScape", + "aliases": [] + }, + { + "uuid": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "name": "OSBuddy", + "aliases": [] + }, + { + "uuid": "923d0192-b735-42cd-94a7-44fca0fca38d", + "name": "The Evil Within", + "aliases": [] + }, + { + "uuid": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "name": "DARK SOULS III", + "aliases": [] + }, + { + "uuid": "73dd1b78-995d-4a3d-99e6-f980a46c334e", + "name": "Assassin's Creed Valhalla", + "aliases": [] + }, + { + "uuid": "57f2865c-e587-43de-94a3-714adaef9fb4", + "name": "Red Dead Redemption 2", + "aliases": [] + }, + { + "uuid": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "name": "KovaaK 2.0", + "aliases": [] + }, + { + "uuid": "84cabe1b-ed02-4655-8b8e-beda38e46fdb", + "name": "SpyParty", + "aliases": [] + }, + { + "uuid": "51f84cce-755a-495b-970f-7a886c01186d", + "name": "ePSXe", + "aliases": [] + }, + { + "uuid": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "name": "Cuphead", + "aliases": [] + }, + { + "uuid": "5c07b150-efac-41a9-ba59-d30078ad5187", + "name": "Muse Dash", + "aliases": [] + }, + { + "uuid": "3ef63864-2280-45d1-9216-cbe3a0f82c58", + "name": "Forts", + "aliases": [] + }, + { + "uuid": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "name": "Pavlov VR", + "aliases": [] + }, + { + "uuid": "5fbbe0ca-7057-48f2-8ada-e7962cb8ac4b", + "name": "Super Hexagon", + "aliases": [] + }, + { + "uuid": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "name": "Counter-Strike: Global Offensive", + "aliases": [] + }, + { + "uuid": "d8fa4a28-268f-46c0-a986-d3fccec2993f", + "name": "test'; DROP TABLE *;", + "aliases": [] + }, + { + "uuid": "e30b3d01-07fb-4704-97d1-a16359c492fd", + "name": "Becastled Demo", + "aliases": [] + }, + { + "uuid": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", + "name": "Watch Dogs Legion", + "aliases": [] + }, + { + "uuid": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", + "name": "The Witcher 3: Wild Hunt", + "aliases": [] + }, + { + "uuid": "daba0308-7766-4260-ae6b-65feede17bed", + "name": "Immortals Fenyx Rising™", + "aliases": [] + }, + { + "uuid": "4655fa89-125e-45f8-97aa-a9a65090600c", + "name": "Squad", + "aliases": [] + }, + { + "uuid": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", + "name": "Celeste", + "aliases": [] + }, + { + "uuid": "22998825-29f0-46c0-b237-7b93d39d8c81", + "name": "Dolphin", + "aliases": [] + }, + { + "uuid": "3cee9521-e8c9-486d-9e67-5a648525085f", + "name": "3DMark Demo", + "aliases": [] + }, + { + "uuid": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "name": "iRacing.com Simulator", + "aliases": [] + }, + { + "uuid": "0883df51-a18d-48b4-b471-09dac938bf24", + "name": "Legends of Runeterra", + "aliases": [] + }, + { + "uuid": "5d9d0f2d-f348-4dde-8096-de47f3737973", + "name": "Dolphin Emulator", + "aliases": [] + }, + { + "uuid": "252e99c0-f62f-4000-a566-0876e1163771", + "name": "Cyberpunk 2077", + "aliases": [] + }, + { + "uuid": "e8ac3b09-3081-41ab-a4cc-049c927c1e90", + "name": "HYPER SCAPE™", + "aliases": [] + }, + { + "uuid": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "name": "Dungeon of the Endless", + "aliases": [] + }, + { + "uuid": "9adb316e-622e-4b31-9de5-aea3497513a0", + "name": "Divinity: Original Sin 2", + "aliases": [] + }, + { + "uuid": "4b52f343-eb67-4bde-a8aa-6fb929969369", + "name": "lobabob@server.cockatrice.us", + "aliases": [] + }, + { + "uuid": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "name": "Cockatrice", + "aliases": [] + }, + { + "uuid": "e86ec698-4de6-48cd-a464-3ae87a75f201", + "name": "STAR WARS Battlefront II", + "aliases": [] + }, + { + "uuid": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "name": "Hades", + "aliases": [] + }, + { + "uuid": "977f6948-9c08-4b0b-820e-3f7d5c547911", + "name": "Tony Hawk's Pro Skater 1 + 2 ", + "aliases": [] + }, + { + "uuid": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "name": "Left 4 Dead 2", + "aliases": [] + }, + { + "uuid": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "name": "Killing Floor 2", + "aliases": [] + }, + { + "uuid": "63735280-e2ab-4381-982a-d381ab81ab3a", + "name": "STAR WARS™ Battlefront™ II", + "aliases": [] + }, + { + "uuid": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "name": "Tabletop Simulator", + "aliases": [] + }, + { + "uuid": "fa6ffbdb-817e-498f-8d04-7a27fc3f5166", + "name": "Age of Empires II (2013)", + "aliases": [] + }, + { + "uuid": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "name": "The Forest", + "aliases": [] + }, + { + "uuid": "ec32f732-81d2-4737-9731-7d87edb23c7d", + "name": "A Summer's End - Hong Kong 1986", + "aliases": [] + }, + { + "uuid": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "name": "Grand Theft Auto V", + "aliases": [] + }, + { + "uuid": "456adc4a-463d-46f3-8760-f1bb8206b79d", + "name": "Hypnospace Outlaw", + "aliases": [] + }, + { + "uuid": "5faccedb-a85a-4000-b979-a9eafca2b313", + "name": "Spelunky 2", + "aliases": [] + }, + { + "uuid": "384499e1-6071-4da5-86ee-94ffaf56ea1c", + "name": "Phoenix Wright: Ace Attorney Trilogy", + "aliases": [] + }, + { + "uuid": "ceeb5bef-5093-420e-a66d-38887e3dbd5a", + "name": "Kingdoms and Castles", + "aliases": [] + }, + { + "uuid": "17d06d5c-9619-477c-b557-dd24b5e6a7e0", + "name": "Oddworld: Abe's Oddysee", + "aliases": [] + }, + { + "uuid": "8b6875f3-c326-4738-8d0b-6b3f366a97d0", + "name": "PlanetSide 2", + "aliases": [] + }, + { + "uuid": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "name": "Resident Evil 3", + "aliases": [] + }, + { + "uuid": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "name": "Catan Universe", + "aliases": [] + }, + { + "uuid": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "name": "Mortal Kombat X", + "aliases": [] + }, + { + "uuid": "71187ff6-168e-47dc-bb08-84f6d964b767", + "name": "Raft", + "aliases": [] + }, + { + "uuid": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "name": "Tom Clancy's Ghost Recon Wildlands", + "aliases": [] + }, + { + "uuid": "d03ea2f5-f4b7-45c5-b9d6-1803ce5a4709", + "name": "RCT3", + "aliases": [] + }, + { + "uuid": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "name": "Sea of Thieves", + "aliases": [] + }, + { + "uuid": "7b75f888-8023-4669-98a0-5567efc2c09d", + "name": "Jet Set Radio", + "aliases": [] + }, + { + "uuid": "b447c3e1-43d8-4ba2-9881-e09994d09767", + "name": "Battlefield: Bad Company 2", + "aliases": [] + }, + { + "uuid": "27922aac-cba1-464d-9ed4-9fbb11c135e3", + "name": "RESIDENT EVIL RESISTANCE", + "aliases": [] + }, + { + "uuid": "ddf86c27-07ff-4c93-be94-1758fe5cfd30", + "name": "Just Shapes & Beats", + "aliases": [] + }, + { + "uuid": "096c184c-fe93-4207-8cfe-66def06d1199", + "name": "Stonehearth", + "aliases": [] + }, + { + "uuid": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "name": "Rainbow Six Siege", + "aliases": [] + }, + { + "uuid": "0843751a-6347-4050-bed5-92fa7e8dd35e", + "name": "Endless Space 2", + "aliases": [] + }, + { + "uuid": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", + "name": "Grand Theft Auto IV", + "aliases": [] + }, + { + "uuid": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "name": "Deep Rock Galactic", + "aliases": [] + }, + { + "uuid": "3a18a362-0813-4589-8f61-9ce45b23599a", + "name": "Men of War: Assault Squad 2", + "aliases": [] + }, + { + "uuid": "c8f5933b-1897-4307-a6be-175a93408247", + "name": "Call to Arms", + "aliases": [] + }, + { + "uuid": "05a91701-f1e6-4609-95dc-00d50df82e11", + "name": "Insurgency: Sandstorm", + "aliases": [] + }, + { + "uuid": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "name": "Battlefield 4", + "aliases": [] + }, + { + "uuid": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "name": "Foxhole", + "aliases": [] + }, + { + "uuid": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "name": "Ori and the Will of the Wisps", + "aliases": [] + }, + { + "uuid": "da9a2363-aa4b-4013-9ef7-f51e7e58b978", + "name": "Crysis 2", + "aliases": [] + }, + { + "uuid": "d6904be0-173a-494f-98b7-efcaf9fb9740", + "name": "Deadside", + "aliases": [] + }, + { + "uuid": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "name": "Escape from Tarkov", + "aliases": [] + }, + { + "uuid": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", + "name": "GTFO", + "aliases": [] + }, + { + "uuid": "92144774-b196-4849-8c29-3be0e0e93825", + "name": "yuzu", + "aliases": [] + }, + { + "uuid": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "name": "PLAYERUNKNOWN'S BATTLEGROUNDS", + "aliases": [] + }, + { + "uuid": "908e5333-5693-4986-81ae-edca46741f99", + "name": "Watch Dogs", + "aliases": [] + }, + { + "uuid": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "name": "Warhammer: Vermintide 2", + "aliases": [] + }, + { + "uuid": "bf7adaa1-b828-48cb-9041-393d26d2ddf4", + "name": "Cemu", + "aliases": [] + }, + { + "uuid": "2b88d65e-6dc9-4d7e-921b-13099d079d17", + "name": "Warhammer 40,000: Inquisitor - Martyr", + "aliases": [] + }, + { + "uuid": "621a8269-f650-4b39-b74a-c282d9313e65", + "name": "SnowRunner", + "aliases": [] + }, + { + "uuid": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "name": "Path of Exile", + "aliases": [] + }, + { + "uuid": "d8468ec6-da3d-437e-be70-4df9a5f80137", + "name": "TrenchesWIP", + "aliases": [] + }, + { + "uuid": "6b418e18-094c-421d-9c96-d288fc3cad0b", + "name": "Divinity Original Sin 2", + "aliases": [] + }, + { + "uuid": "b3b9b21e-fb25-46f7-908c-415591441b8c", + "name": "Age of Empires II: Definitive Edition", + "aliases": [] + }, + { + "uuid": "03539e31-298c-4c19-9815-226144f13804", + "name": "VRChat", + "aliases": [] + }, + { + "uuid": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "name": "PAYDAY 2", + "aliases": [] + }, + { + "uuid": "e0f355a4-854b-473f-afa2-98a0bc20ffd9", + "name": "OMORI", + "aliases": [] + }, + { + "uuid": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "name": "Kerbal Space Program", + "aliases": [] + }, + { + "uuid": "94ea758e-df20-485f-b37d-305c137f5fe4", + "name": "No Man's Sky", + "aliases": [] + }, + { + "uuid": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "name": "Borderlands 2", + "aliases": [] + }, + { + "uuid": "01ad2063-abba-476a-8282-ccd7f6982efb", + "name": "Days of War", + "aliases": [] + }, + { + "uuid": "685f13b9-6f87-43e8-9444-cce33764d383", + "name": "Day of Infamy", + "aliases": [] + }, + { + "uuid": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "name": "Battlefield™ V", + "aliases": [] + }, + { + "uuid": "2b2d0c7f-9575-4620-8d8d-32cfb499fbfe", + "name": "DwarfHeim", + "aliases": [] + }, + { + "uuid": "c2c55756-ae07-4771-86d2-bba19006baa0", + "name": "Total War: ROME II - Emperor Edition", + "aliases": [] + }, + { + "uuid": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "name": "Total War: Rome 2", + "aliases": [] + }, + { + "uuid": "1c30e47a-17c1-47ad-9980-3304d3875c33", + "name": "Command and Conquer 3: Tiberium Wars", + "aliases": [] + }, + { + "uuid": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", + "name": "30XX", + "aliases": [] + }, + { + "uuid": "3f3a2721-fc93-489b-b576-deca01389dfe", + "name": "StarCraft II", + "aliases": [] + }, + { + "uuid": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "name": "Valheim", + "aliases": [] + }, + { + "uuid": "a51446f8-9fa1-43e9-92a2-2cd55ea1dcba", + "name": "Absolute Drift", + "aliases": [] + }, + { + "uuid": "71363baf-24ad-4183-9f19-7cba8ef6ab2d", + "name": "WGT Golf", + "aliases": [] + }, + { + "uuid": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", + "name": "Garry's Mod", + "aliases": [] + }, + { + "uuid": "81724aa4-926e-492c-a454-22ba9b21346c", + "name": "WORLD OF HORROR", + "aliases": [] + }, + { + "uuid": "884d4916-7882-4868-914d-17c3c3857f77", + "name": "There Is No Game: Wrong Dimension", + "aliases": [] + }, + { + "uuid": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "name": "Wasteland 2: Director's Cut", + "aliases": [] + }, + { + "uuid": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "name": "Slay the Spire", + "aliases": [] + }, + { + "uuid": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", + "name": "Her Story", + "aliases": [] + }, + { + "uuid": "230b15e4-43dc-4f53-b99e-6fd86914352e", + "name": "Zero Escape: The Nonary Games", + "aliases": [] + }, + { + "uuid": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", + "name": "For The King", + "aliases": [] + }, + { + "uuid": "83ccb4f4-cec0-4c5e-ae75-059db5f039b0", + "name": "Control", + "aliases": [] + }, + { + "uuid": "32238787-81ba-47a4-89cf-5d8b0e2552c3", + "name": "Miscreated", + "aliases": [] + }, + { + "uuid": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "name": "Dota 2", + "aliases": [] + }, + { + "uuid": "eb514df2-5696-426a-842a-4924e28b802b", + "name": "MapleStory", + "aliases": [] + }, + { + "uuid": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "name": "Fortnite", + "aliases": [] + }, + { + "uuid": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "name": "Resident Evil / biohazard HD REMASTER", + "aliases": [] + }, + { + "uuid": "71dd54d2-1b64-4a22-8f06-02c5560d571b", + "name": "Disco Elysium", + "aliases": [] + }, + { + "uuid": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "name": "Rhythm Doctor", + "aliases": [] + }, + { + "uuid": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "name": "Distance", + "aliases": [] + }, + { + "uuid": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", + "name": "Alien Swarm", + "aliases": [] + }, + { + "uuid": "04fc1df1-a977-48ac-a381-e65c8d991a01", + "name": "UNO", + "aliases": [] + }, + { + "uuid": "44204463-eba4-4e31-b9c6-2748db291f27", + "name": "Call of Duty®: WWII", + "aliases": [] + }, + { + "uuid": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "name": "BattleBlock Theater", + "aliases": [] + }, + { + "uuid": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "name": "Pummel Party", + "aliases": [] + }, + { + "uuid": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "name": "Sid Meier's Civilization VI", + "aliases": [] + }, + { + "uuid": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "name": "Aim Lab", + "aliases": [] + }, + { + "uuid": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "name": "StarCraft", + "aliases": [] + }, + { + "uuid": "58bb0cd0-f94c-4b94-af1f-504042ef4c4d", + "name": "RetroArch", + "aliases": [] + }, + { + "uuid": "f3538a11-aaaf-47a2-8499-2d8d06b53088", + "name": "Half-Life 2", + "aliases": [] + }, + { + "uuid": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "name": "Steel Division 2", + "aliases": [] + }, + { + "uuid": "7a38edea-7b08-4567-9c53-6203fac1f64c", + "name": "GeForce NOW", + "aliases": [] + }, + { + "uuid": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", + "name": "The Jackbox Party Pack 7", + "aliases": [] + }, + { + "uuid": "371e2100-9f71-4afb-9577-7330fe9cc7b0", + "name": "Worms W.M.D", + "aliases": [] + }, + { + "uuid": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "name": "FINAL FANTASY VII", + "aliases": [] + }, + { + "uuid": "d133cada-9d45-44f7-a110-7e5ef55b50a6", + "name": "Rising Storm/Red Orchestra 2 Multiplayer", + "aliases": [] + }, + { + "uuid": "71ef092a-ea41-462a-b4a0-c4de3396bf75", + "name": "za4", + "aliases": [] + }, + { + "uuid": "7c78c068-bec7-46bf-b241-ab09071f95b2", + "name": "Synergy", + "aliases": [] + }, + { + "uuid": "f1a801ba-22f3-4340-8f3a-da3632a06e6b", + "name": "Escape the Ayuwoki", + "aliases": [] + }, + { + "uuid": "5a31cc37-bbcf-4a79-9e28-7e1e5fcc35ad", + "name": "Zombie Army 4", + "aliases": [] + }, + { + "uuid": "b63c2021-12b2-42d6-8294-c042018280b3", + "name": "Options", + "aliases": [] + }, + { + "uuid": "fd252e0b-6733-4e4b-a44f-ae84ce13376b", + "name": "WWZ", + "aliases": [] + }, + { + "uuid": "e935301f-2115-4dd9-ad3a-07f74edede79", + "name": "Resident Evil Village", + "aliases": [] + }, + { + "uuid": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "name": "Subnautica", + "aliases": [] + }, + { + "uuid": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "name": "Titanfall 2", + "aliases": [] + }, + { + "uuid": "12e0c4ed-ef87-4c1e-ae9f-01ebd29250c5", + "name": "Zombie Army Trilogy", + "aliases": [] + }, + { + "uuid": "e6ae8afb-60dc-4c3d-b580-850ec35f4364", + "name": "Human: Fall Flat", + "aliases": [] + }, + { + "uuid": "056c2d24-d9c1-4649-881c-b588849addc0", + "name": "DEADBOLT", + "aliases": [] + }, + { + "uuid": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "name": "Dead by Daylight", + "aliases": [] + }, + { + "uuid": "256c57f7-071f-4140-afa3-b0a727532b55", + "name": "SimCity 4 Deluxe", + "aliases": [] + }, + { + "uuid": "6867837e-8854-4713-a62a-7e184aa1554a", + "name": "Minecraft: BlockFront", + "aliases": [] + }, + { + "uuid": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "name": "World of Tanks", + "aliases": [] + }, + { + "uuid": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", + "name": "Phantasy Star Online 2 New Genesis", + "aliases": [] + }, + { + "uuid": "b0f46871-7511-411e-a341-e2eb690e7182", + "name": "PHANTASY STAR ONLINE 2", + "aliases": [] + }, + { + "uuid": "38bfa758-17f1-436c-b3b2-1204c3e45c70", + "name": "BioShock™ Remastered", + "aliases": [] + }, + { + "uuid": "9c056897-b024-40cc-824d-53fc5ac555da", + "name": "World of Warplanes", + "aliases": [] + }, + { + "uuid": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "name": "DARK SOULS™: REMASTERED", + "aliases": [] + }, + { + "uuid": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "name": "SimCity™", + "aliases": [] + }, + { + "uuid": "901cc764-5949-4d35-96da-200a0d92bef5", + "name": "Call to Arms - Gates of Hell: Ostfront", + "aliases": [] + }, + { + "uuid": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "name": "Mindustry", + "aliases": [] + }, + { + "uuid": "de93fba9-256c-4183-863d-38b81619d862", + "name": "Factorio", + "aliases": [] + }, + { + "uuid": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "name": "MC Eternal", + "aliases": [] + }, + { + "uuid": "73d76484-85cb-4681-be75-0903f3eeccbd", + "name": "Rogue Heroes: Ruins of Tasos", + "aliases": [] + }, + { + "uuid": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "name": "Mass Effect™ Legendary Edition", + "aliases": [] + }, + { + "uuid": "fef4cec1-35fe-4ef1-b5d1-9f2497e910e0", + "name": "Warpips", + "aliases": [] + }, + { + "uuid": "84c95629-7b5b-4260-af2c-377e4b3d3a3f", + "name": "World of Warships", + "aliases": [] + }, + { + "uuid": "94330410-830c-48da-982c-802f2c682400", + "name": "Generation Zero®", + "aliases": [] + }, + { + "uuid": "cfca967e-d933-4f66-b420-560ff2e0e841", + "name": "Enigmatica 6", + "aliases": [] + }, + { + "uuid": "7ebce693-dafe-4c0d-9ec6-80ccf2d5fd8b", + "name": "Natural Selection 2", + "aliases": [] + }, + { + "uuid": "516c8045-97c5-4666-baba-b14db6007763", + "name": "Industries of Titan ", + "aliases": [] + }, + { + "uuid": "2991c7d3-a21c-4094-8b23-2dfac7c17a29", + "name": "One Step From Eden", + "aliases": [] + }, + { + "uuid": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "name": "Bloons TD 6", + "aliases": [] + }, + { + "uuid": "8b8389e5-ca27-443e-bd3b-288fba926590", + "name": "Ultimate Marvel vs. Capcom 3", + "aliases": [] + }, + { + "uuid": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "name": "Rogue Company", + "aliases": [] + }, + { + "uuid": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "name": "Company of Heroes 3 - Pre-Alpha Preview", + "aliases": [] + }, + { + "uuid": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "name": "Vindictus", + "aliases": [] + }, + { + "uuid": "e9440141-798a-42b6-8b92-7757316e4e17", + "name": "SCP: Secret Laboratory", + "aliases": [] + }, + { + "uuid": "d3c6234d-601e-4a70-a8bd-6f65d87b089b", + "name": "Trepang2 Demo", + "aliases": [] + }, + { + "uuid": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "name": "Mini Motorways", + "aliases": [] + }, + { + "uuid": "5cbb7fa9-d33a-4172-9029-0706a46936ca", + "name": "Call of Duty: Black Ops Cold War", + "aliases": [] + }, + { + "uuid": "8b8cf1da-4fbc-449b-a932-df8c269f60d2", + "name": "Mass Effect™ 3", + "aliases": [] + }, + { + "uuid": "a0f1cc74-a97a-48fa-b8b6-69ac061072b8", + "name": "Viscera Cleanup Detail", + "aliases": [] + }, + { + "uuid": "86e41b36-d860-479d-9443-f9299d051eba", + "name": "Shadow Tactics: Blades of the Shogun", + "aliases": [] + }, + { + "uuid": "2c1f1d47-16cc-4222-9910-05096d638470", + "name": "Keep Talking and Nobody Explodes", + "aliases": [] + }, + { + "uuid": "8626fe98-8835-4028-a5dd-5aecdbb5557a", + "name": "Back 4 Blood Beta", + "aliases": [] + }, + { + "uuid": "ef388677-2e4d-479d-b095-e393e2fbc99e", + "name": "Far Cry 5", + "aliases": [] + }, + { + "uuid": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "name": "Undertale", + "aliases": [] + }, + { + "uuid": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", + "name": "GUILTY GEAR -STRIVE-", + "aliases": [] + }, + { + "uuid": "65ef5805-5c46-44e5-971a-b10c3e432fa6", + "name": "Wargroove", + "aliases": [] + }, + { + "uuid": "64a511f2-1c0e-4994-9132-c3cfb83d5ffc", + "name": "FINAL FANTASY XIV", + "aliases": [] + }, + { + "uuid": "501f368f-9e92-46d0-8647-774256d0351e", + "name": "Papers, Please", + "aliases": [] + }, + { + "uuid": "525d3056-71ca-4222-b4d5-b345c50d04d6", + "name": "Chicory: A Colorful Tale", + "aliases": [] + }, + { + "uuid": "6e0b90d4-c0af-4e20-84ef-7d6e04631d71", + "name": "Dysfunctional Systems: Learning to Manage Chaos", + "aliases": [] + }, + { + "uuid": "52b2cc5c-2406-418e-aa39-33db0cae4f0c", + "name": "START AGAIN: a prologue", + "aliases": [] + }, + { + "uuid": "e70487c7-e598-4be7-ad6f-8440a59b258f", + "name": "Superliminal", + "aliases": [] + }, + { + "uuid": "f9b199be-fe1b-4906-b62e-1086a19fd4ca", + "name": "Stigmatized Property | 事故物件", + "aliases": [] + }, + { + "uuid": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "name": "Battlefield 1", + "aliases": [] + }, + { + "uuid": "70fb1704-1ac3-4f5d-af8d-2d1f4a76ab6c", + "name": "Emily is Away <3", + "aliases": [] + }, + { + "uuid": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", + "name": "Return of the Obra Dinn", + "aliases": [] + }, + { + "uuid": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", + "name": "Outer Wilds", + "aliases": [] + }, + { + "uuid": "5afe54d1-03d8-49fe-bea2-d61a22b60cbb", + "name": "Helltaker", + "aliases": [] + }, + { + "uuid": "afec22d4-f962-46de-9102-406c0cb54ec4", + "name": "Titan Souls", + "aliases": [] + }, + { + "uuid": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "name": "PICO PARK", + "aliases": [] + }, + { + "uuid": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "name": "Death's Door", + "aliases": [] + }, + { + "uuid": "c29a0e30-62be-4471-ad40-959f89f4091f", + "name": "Smile For Me", + "aliases": [] + }, + { + "uuid": "a4b20f07-c3eb-4b01-8e80-f49d5f82c999", + "name": "Little Nightmares", + "aliases": [] + }, + { + "uuid": "d563bf02-54cf-49af-ba40-11defad74ecd", + "name": "Don't Starve", + "aliases": [] + }, + { + "uuid": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "name": "Don't Starve Together", + "aliases": [] + }, + { + "uuid": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "name": "Splitgate", + "aliases": [] + }, + { + "uuid": "22ed4e4a-9a24-4122-a87c-d74896740f9f", + "name": "Multiplayer (3rd-party Server)", + "aliases": [] + }, + { + "uuid": "beeb5b33-6d17-4079-90a6-14ee07ec1be5", + "name": "Minecraft Launcher", + "aliases": [] + }, + { + "uuid": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "name": "Destiny 2", + "aliases": [] + }, + { + "uuid": "ec016105-107d-4ad4-8ed6-ab69a81af8f4", + "name": "Hellblade", + "aliases": [] + }, + { + "uuid": "1366ebae-59d0-4467-91ed-cf6683878303", + "name": "PICO PARK:Classic Edition", + "aliases": [] + }, + { + "uuid": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "name": "Gang Beasts", + "aliases": [] + }, + { + "uuid": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "name": "Resident Evil 2", + "aliases": [] + }, + { + "uuid": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "name": "Darkest Dungeon", + "aliases": [] + }, + { + "uuid": "c7a67716-8fcf-4c4e-a480-4ac06254d2fc", + "name": "​C​a​l​l​ ​o​f​ ​D​u​t​y​®​:​ ​V​a​n​g​u​a​r​d​®​ ​P​u​b​l​i​c​ ​B​e​t​a​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​", + "aliases": [] + }, + { + "uuid": "7d115c2c-a713-4e4f-bc36-af784d853c9f", + "name": "Poker Night 2", + "aliases": [] + }, + { + "uuid": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", + "name": "DELTARUNE (Chapter 1 & 2 DEMO)", + "aliases": [] + }, + { + "uuid": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "name": "The Sims 4", + "aliases": [] + }, + { + "uuid": "db802d20-e3e2-496d-9121-8dfc25313e22", + "name": "Eastward", + "aliases": [] + }, + { + "uuid": "0e1890df-0783-4a12-b4f3-05d0acb984a6", + "name": "Caesar 3", + "aliases": [] + }, + { + "uuid": "18c7e385-f0ca-47b9-803f-5cc8256f585e", + "name": "RollerCoaster Tycoon Classic", + "aliases": [] + }, + { + "uuid": "37021b26-464e-4265-bbfd-05843d7d5b71", + "name": "Diablo III", + "aliases": [] + }, + { + "uuid": "c1f0d25b-bbe1-4174-bd4b-5855e536c16b", + "name": "Pathfinder: Kingmaker", + "aliases": [] + }, + { + "uuid": "98f0895d-a9f5-4844-9c88-dd45ad350395", + "name": "Game Dev Tycoon", + "aliases": [] + }, + { + "uuid": "cf33f67b-3cad-4ca7-8820-b993fedd27c3", + "name": "Dead Frontier 2", + "aliases": [] + }, + { + "uuid": "dab0664e-abf2-41bf-8391-d7ae995e8b38", + "name": "Lost Ember", + "aliases": [] + }, + { + "uuid": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "name": "New World", + "aliases": [] + }, + { + "uuid": "913441a0-e764-4710-982f-278c32fc58bd", + "name": "Old School RuneScape", + "aliases": [] + }, + { + "uuid": "72f7c8ee-e486-4a30-a51a-3b4af2c70e99", + "name": "Battlefield 3", + "aliases": [] + }, + { + "uuid": "d776f868-3fbd-4bc0-8d9d-e16dfdcf75e0", + "name": "FEZ", + "aliases": [] + }, + { + "uuid": "e0bbd018-d20f-4904-9fe9-133c85ae7167", + "name": "bf", + "aliases": [] + }, + { + "uuid": "b788795b-992e-4047-81c9-6f0b39d54192", + "name": "Battlefield™ 2042 Open Beta", + "aliases": [] + }, + { + "uuid": "c6c3b58f-9cb7-4016-810d-600cb511003b", + "name": "Spyro™ Reignited Trilogy", + "aliases": [] + }, + { + "uuid": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "name": "Back 4 Blood", + "aliases": [] + }, + { + "uuid": "bb945ea1-9efa-4be4-ba00-023cd52ec9f1", + "name": "Tetris® Effect: Connected ", + "aliases": [] + }, + { + "uuid": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", + "name": "Death Road to Canada", + "aliases": [] + }, + { + "uuid": "6cf0a158-82e8-44ea-bb00-04746210b216", + "name": "Back 4 Blood ", + "aliases": [] + }, + { + "uuid": "26dfa694-5246-4f4f-adbc-d72b0b419ce2", + "name": "Turnip Boy Commits Tax Evasion", + "aliases": [] + }, + { + "uuid": "90e1549d-6d52-4041-9fa9-c4a6daaca49a", + "name": "The Cycle Playtest", + "aliases": [] + }, + { + "uuid": "b8774862-86d5-440c-98e7-8d908f021e4a", + "name": "Inside", + "aliases": [] + }, + { + "uuid": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", + "name": "Portal 2", + "aliases": [] + }, + { + "uuid": "99e76b5c-44a2-4235-9491-f9220ba39819", + "name": "Stardew Valley", + "aliases": [] + }, + { + "uuid": "99ab3574-4042-4eec-a415-d3a32a1573ff", + "name": "Crypt of the NecroDancer", + "aliases": [] + }, + { + "uuid": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", + "name": "Microsoft Flight Simulator", + "aliases": [] + }, + { + "uuid": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", + "name": "Wreckfest", + "aliases": [] + }, + { + "uuid": "9ad8b47b-76f1-4c34-8ca6-5383a0b27234", + "name": "Clustertruck", + "aliases": [] + }, + { + "uuid": "baa6f026-d128-47d0-9855-b93d68c0d9e8", + "name": "Anthem™", + "aliases": [] + }, + { + "uuid": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "name": "Call of Duty®: Vanguard", + "aliases": [] + }, + { + "uuid": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "name": "Forza Horizon 5", + "aliases": [] + }, + { + "uuid": "ad01a8c6-441c-4965-9c8b-4af5226e6281", + "name": "ASTRONEER", + "aliases": [] + }, + { + "uuid": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "name": "Battlefield™ 2042", + "aliases": [] + }, + { + "uuid": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "name": "Halo Infinite", + "aliases": [] + }, + { + "uuid": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "name": "DOOM Eternal", + "aliases": [] + }, + { + "uuid": "1e3a0e33-2d87-49b7-9959-f4795671b33b", + "name": "Sekiro™: Shadows Die Twice", + "aliases": [] + }, + { + "uuid": "9fb61456-ba83-445c-93d6-af0f63af3f27", + "name": "Tom Clancy's The Division 2", + "aliases": [] + }, + { + "uuid": "76d12d4b-033d-4182-84b8-b603e44ed424", + "name": "Gods Unchained", + "aliases": [] + }, + { + "uuid": "9a3c197b-176e-415e-81c2-1131d55acc87", + "name": "Company of Heroes 3 - Multiplayer Pre-Alpha", + "aliases": [] + }, + { + "uuid": "79ed4b94-4e81-41bd-970a-9bb024738003", + "name": "SYNTHETIK", + "aliases": [] + }, + { + "uuid": "5b8eea46-c605-44e8-98d3-def0b20746ad", + "name": "Ninja Frog", + "aliases": [] + }, + { + "uuid": "f792caf9-f47b-4dec-9e20-039ced231441", + "name": "KovaaK's", + "aliases": [] + }, + { + "uuid": "12411488-a54b-4ac5-b4d6-bd82d9a42039", + "name": "Star Wars: Battlefront 2 (Classic, 2005)", + "aliases": [] + }, + { + "uuid": "51a7c681-3c9c-4fee-8cd8-54d24167adc4", + "name": "Monster Sanctuary", + "aliases": [] + }, + { + "uuid": "85e1ddb3-bb79-4f15-b2bb-53ecfab8034a", + "name": "Batman: Arkham City GOTY", + "aliases": [] + }, + { + "uuid": "81eed0f3-0974-48c7-bedd-4a25d9bedf4e", + "name": "Sven Co-op", + "aliases": [] + }, + { + "uuid": "12c4485e-3697-4a51-982b-75af6bd7e566", + "name": "Barotrauma", + "aliases": [] + }, + { + "uuid": "a2972c2e-2e1c-419b-95d2-331871b05f74", + "name": "Chill Corner", + "aliases": [] + }, + { + "uuid": "30eeb7b0-551b-4cde-831a-93ddc2f2ad2e", + "name": "Dreadnought", + "aliases": [] + }, + { + "uuid": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", + "name": "Escape Simulator", + "aliases": [] + }, + { + "uuid": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "name": "Call of Duty: World at War", + "aliases": [] + }, + { + "uuid": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "name": "Project Zomboid", + "aliases": [] + }, + { + "uuid": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "name": "Inscryption", + "aliases": [] + }, + { + "uuid": "7240c500-cb5a-476c-801b-8f3959c5c494", + "name": "DEATH STRANDING", + "aliases": [] + }, + { + "uuid": "7fee0f53-4ae6-46d0-a407-c3dff4bc4251", + "name": "Warframe", + "aliases": [] + }, + { + "uuid": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "name": "Totally Reliable Delivery Service", + "aliases": [] + }, + { + "uuid": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "name": "Crab Game", + "aliases": [] + }, + { + "uuid": "3fe70687-ce8f-4023-b1d6-839de8b793a9", + "name": "Overcooked! 2", + "aliases": [] + }, + { + "uuid": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "name": "Magicka", + "aliases": [] + }, + { + "uuid": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "name": "Wildermyth", + "aliases": [] + }, + { + "uuid": "20d58e65-6d33-41a1-9c2b-2e5965b1f70b", + "name": "The Haunted Island, a Frog Detective Game", + "aliases": [] + }, + { + "uuid": "f0c1cc2b-d8aa-4968-83a9-40ee58994414", + "name": "Pony Island", + "aliases": [] + }, + { + "uuid": "c9a0c884-aa86-4a97-9e7b-498504213854", + "name": "Legends of Idleon MMO", + "aliases": [] + }, + { + "uuid": "019ed376-fd1d-48e2-bd70-1ae67d38521c", + "name": "Momodora III", + "aliases": [] + }, + { + "uuid": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", + "name": "Portal", + "aliases": [] + }, + { + "uuid": "543a7738-111b-4af9-a3ef-37b3f0f50f95", + "name": "Momodora: Reverie Under the Moonlight", + "aliases": [] + }, + { + "uuid": "a431de70-56b4-4b16-aa6c-6b1a5fb9b01e", + "name": "Warhammer 40,000: Dawn of War III", + "aliases": [] + }, + { + "uuid": "b1a9005e-73a2-49a3-bdd7-2533ba8ddd20", + "name": "Poly Bridge", + "aliases": [] + }, + { + "uuid": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", + "name": "Resident Evil 5 / Biohazard 5", + "aliases": [] + }, + { + "uuid": "80a380f2-feb5-4996-8c0a-3f25b8148ae5", + "name": "Talvisota - Winter War", + "aliases": [] + }, + { + "uuid": "06669762-cade-4077-825f-f62bb41e5aa2", + "name": "CHRONO TRIGGER", + "aliases": [] + }, + { + "uuid": "074dae53-3fe4-47fc-86a7-d53a4cddae24", + "name": "FiveM", + "aliases": [] + }, + { + "uuid": "9e6f31d9-b8ba-4a83-a81a-a8b1342a9d38", + "name": "RSM Freeroam", + "aliases": [] + }, + { + "uuid": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "name": "MONSTER HUNTER RISE", + "aliases": [] + }, + { + "uuid": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "name": "Company of Heroes", + "aliases": [] + }, + { + "uuid": "91e18845-c2ed-40dd-9158-46f8366c2199", + "name": "Contractors VR", + "aliases": [] + }, + { + "uuid": "371ae7e0-4624-46f4-b794-42c2e417f1b6", + "name": "Clownfield 2042", + "aliases": [] + }, + { + "uuid": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "name": "American Truck Simulator", + "aliases": [] + }, + { + "uuid": "c1bc61ad-cfc5-405a-848f-6e59a4f51be8", + "name": "The Typing of The Dead: Overkill", + "aliases": [] + }, + { + "uuid": "a6d77f68-9a95-4fe8-8049-744b429c38ee", + "name": "Space Engineers", + "aliases": [] + }, + { + "uuid": "f075129c-25cb-4847-830a-9f73034629c4", + "name": "art of rally", + "aliases": [] + }, + { + "uuid": "40f5c1fe-082c-4507-bc62-67404217a241", + "name": "Lost Ark", + "aliases": [] + }, + { + "uuid": "b00f7047-82f7-4b7e-9635-8d6b8c0b8e37", + "name": "Train Sim World® 2", + "aliases": [] + }, + { + "uuid": "fb01aea7-c097-4e24-b53a-87fe39d60513", + "name": "ABRISS Demo", + "aliases": [] + }, + { + "uuid": "a420c4a5-bcb2-4330-9164-9e998ec927c4", + "name": "Fallout 4", + "aliases": [] + }, + { + "uuid": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "name": "ELDEN RING", + "aliases": [] + }, + { + "uuid": "4b394edf-55a8-496b-b3c2-e780f96dce9c", + "name": "BattleBit Remastered Playtest", + "aliases": [] + }, + { + "uuid": "b4e865fb-72da-43ee-ad43-eef521ade238", + "name": "Crossout", + "aliases": [] + }, + { + "uuid": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "name": "Age of Empires IV", + "aliases": [] + }, + { + "uuid": "137d60c1-8a27-435e-b376-71e8ddd1a7cb", + "name": "Holdfast: Nations At War", + "aliases": [] + }, + { + "uuid": "133a29ac-efd6-4b3e-b478-565af34627b0", + "name": "DashPanel", + "aliases": [] + }, + { + "uuid": "00ec3f89-4cf5-4431-9f01-c91985a6520b", + "name": "Ori and the Blind Forest: Definitive Edition", + "aliases": [] + }, + { + "uuid": "7c0bff80-6b01-42b3-8df5-e97585336253", + "name": "Call of Duty 2", + "aliases": [] + }, + { + "uuid": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", + "name": "Backbone ", + "aliases": [] + }, + { + "uuid": "49a96d3d-d020-43d3-8664-cd437bb5516e", + "name": "POLYGON", + "aliases": [] + }, + { + "uuid": "5220ea77-8e1e-4f83-a2be-feb2a2a19c4f", + "name": "Loop Hero", + "aliases": [] + }, + { + "uuid": "abe86312-84bd-4514-a3df-0aa67bf53a10", + "name": "Drift21", + "aliases": [] + }, + { + "uuid": "a4df52ab-d872-43a5-a695-0707a966de8a", + "name": "TUNIC", + "aliases": [] + }, + { + "uuid": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "name": "LOOP HERO 1.105 (win)", + "aliases": [] + }, + { + "uuid": "b450930e-c676-4521-94fe-da3e804ff499", + "name": "Persona 4 Arena Ultimax", + "aliases": [] + }, + { + "uuid": "a15863d4-379d-45c0-9d3c-823129be65a1", + "name": "Shredders", + "aliases": [] + }, + { + "uuid": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "name": "Elite Dangerous", + "aliases": [] + }, + { + "uuid": "2141b664-ba09-4762-84a7-13aa046d4003", + "name": "Dominion", + "aliases": [] + }, + { + "uuid": "78afdc1a-aa4c-41f9-b266-ed1788df2422", + "name": "Pawnbarian", + "aliases": [] + }, + { + "uuid": "1eb3f873-f7dd-4dba-b4bd-3a5b01b5d7cf", + "name": "Horizon Zero Dawn", + "aliases": [] + }, + { + "uuid": "ef46f159-33f0-4bdf-a46b-e1bbfcc0ca5f", + "name": "God of War", + "aliases": [] + }, + { + "uuid": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "name": "TaleSpire", + "aliases": [] + }, + { + "uuid": "45141b81-5998-460e-8ab0-29916cf1db66", + "name": "FIFA 22", + "aliases": [] + }, + { + "uuid": "bff36695-e5e8-4e3a-a4c4-d827d3ed3257", + "name": "Visage", + "aliases": [] + }, + { + "uuid": "539aca1d-acd4-4758-91c3-8836cf8d08ce", + "name": "Call of Duty®: Vanguard®", + "aliases": [] + }, + { + "uuid": "336178df-7d20-40f9-8e57-2d95f351ef09", + "name": "​C​a​l​l​ ​o​f​ ​D​u​t​y​®​:​ ​V​a​n​g​u​a​r​d​®​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​", + "aliases": [] + }, + { + "uuid": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", + "name": "Core Keeper", + "aliases": [] + }, + { + "uuid": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "name": "Ready or Not", + "aliases": [] + }, + { + "uuid": "2035a666-f1ec-4254-b079-a10089441f6f", + "name": "LEGO® Star Wars™: The Skywalker Saga", + "aliases": [] + }, + { + "uuid": "c038590d-ab18-4893-8977-94be81846fc9", + "name": "7 Days to Die", + "aliases": [] + }, + { + "uuid": "dfa2d16e-b14e-4432-baeb-5f2051056bc1", + "name": "VisualBoyAdvance", + "aliases": [] + }, + { + "uuid": "2075383b-cc34-4494-ba6d-d01568fb865a", + "name": "PCSX2", + "aliases": [] + }, + { + "uuid": "8a27192b-10a3-4a27-a32b-35c5afd39edb", + "name": "Stacklands", + "aliases": [] + }, + { + "uuid": "1515b8c2-ed76-4da1-99d1-d10d3c728265", + "name": "Vampire Survivors", + "aliases": [] + }, + { + "uuid": "4c6622ae-2861-4b10-b486-2e63f5c19c22", + "name": "Dorfromantik", + "aliases": [] + }, + { + "uuid": "38e42464-dc99-4e7e-b582-8a2f199a575c", + "name": "Superhot", + "aliases": [] + }, + { + "uuid": "1edf8f39-dc39-4b23-a10f-3a523a658a23", + "name": "Get To The Orange Door", + "aliases": [] + }, + { + "uuid": "dc78f18b-4498-446d-ad6f-557f0df19e4c", + "name": "Going Under", + "aliases": [] + }, + { + "uuid": "5fd7970f-8fb6-42c6-887e-d20b8abfca77", + "name": "V Rising", + "aliases": [] + }, + { + "uuid": "f720b1ba-3ab2-4a06-9de3-c53a1b881dc1", + "name": "BF1942 (Ver: Mon, 08 Oct 2012 19:38:50)", + "aliases": [] + }, + { + "uuid": "57d8a277-c67b-48e2-ae77-69b0eab4d766", + "name": "GUNS UP!", + "aliases": [] + }, + { + "uuid": "858510c5-ad63-48a9-ae9d-2c0163b83dd7", + "name": "Mini Metro", + "aliases": [] + }, + { + "uuid": "a1598b47-f311-41e8-ac6e-5cb889f9ccc6", + "name": "Sniper Elite 5", + "aliases": [] + }, + { + "uuid": "755ebccc-1d77-482a-972a-86c29ed814a7", + "name": "Spec Ops: The Line", + "aliases": [] + }, + { + "uuid": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "name": "Shadow of the Tomb Raider", + "aliases": [] + }, + { + "uuid": "c793281e-3f4d-47dd-9258-3d0e6e904529", + "name": "Unturned", + "aliases": [] + }, + { + "uuid": "a9fb8acf-f46f-4df7-9330-aa48ec5da7d6", + "name": "Retail Royale", + "aliases": [] + }, + { + "uuid": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "name": "Vampire: The Masquerade - Bloodhunt", + "aliases": [] + }, + { + "uuid": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", + "name": "Green Hell", + "aliases": [] + }, + { + "uuid": "b30285cc-7955-44d7-9963-7e644b5341da", + "name": "20 Minutes Till Dawn", + "aliases": [] + }, + { + "uuid": "203982b0-aea4-4000-92e2-ee776443557c", + "name": "STAR WARS Jedi: Fallen Order™", + "aliases": [] + }, + { + "uuid": "0f8d6565-3b27-42a6-9069-24c2d0a0560d", + "name": "Reflex Arena", + "aliases": [] + }, + { + "uuid": "2cd75f09-f296-4b04-8470-ab7147118132", + "name": "Quake Champions", + "aliases": [] + }, + { + "uuid": "640927d7-dcbb-4fff-981e-62e3fb548421", + "name": "Audiosurf 2", + "aliases": [] + }, + { + "uuid": "03a31878-f452-407c-8fcb-50532c23c03e", + "name": "Project Wingman", + "aliases": [] + }, + { + "uuid": "53dab6c5-38c2-459c-a6b5-f18b4c3ebd49", + "name": "Call of Duty: Black Ops", + "aliases": [] + }, + { + "uuid": "a473d4f0-8290-41db-8c11-f854f96a0c52", + "name": "Brawlhalla", + "aliases": [] + }, + { + "uuid": "21f3015a-a47b-4f13-96d3-3f2edac3166f", + "name": "BattlEye Launcher", + "aliases": [] + }, + { + "uuid": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "name": "Gloomhaven", + "aliases": [] + }, + { + "uuid": "23fa87fa-6769-43d6-9469-6e322e4e5184", + "name": "Missile Command: Recharged", + "aliases": [] + }, + { + "uuid": "d9fbf58b-9a07-4b52-95a2-71db4109ebdb", + "name": "Intruder", + "aliases": [] + }, + { + "uuid": "7b9861d9-347a-4f07-b295-7ff3ced28aec", + "name": "F1® 22", + "aliases": [] + }, + { + "uuid": "a6b82414-c7fa-4c62-89ec-adba4b617ec0", + "name": "Iratus", + "aliases": [] + }, + { + "uuid": "f3455b77-8208-479a-8244-34516b0e5816", + "name": "Assassin's Creed II", + "aliases": [] + }, + { + "uuid": "35f84e81-1f0a-4a40-b954-30225c142db7", + "name": "Assassin's Creed Brotherhood", + "aliases": [] + }, + { + "uuid": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", + "name": "Tomb Raider", + "aliases": [] + }, + { + "uuid": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", + "name": "Tales of the Black Forest", + "aliases": [] + }, + { + "uuid": "44e6d1a5-e64d-42d6-b931-367129ff063a", + "name": "The Looker", + "aliases": [] + }, + { + "uuid": "01edda9a-6847-4f03-b11f-5cac3383c378", + "name": "Game Master Engine", + "aliases": [] + }, + { + "uuid": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "name": "Planet Coaster", + "aliases": [] + }, + { + "uuid": "8aa43cb6-f2cd-4615-9024-8b433aad7298", + "name": "Company of Heroes 3: Mission Alpha", + "aliases": [] + }, + { + "uuid": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "name": "Dead Island Definitive Edition", + "aliases": [] + }, + { + "uuid": "dcaa64d2-828a-4860-8f6b-72385a7631d0", + "name": "Wolfenstein: Enemy Territory", + "aliases": [] + }, + { + "uuid": "dd280b7c-f3d6-4cdc-b2ed-71f43608dd72", + "name": "For Honor", + "aliases": [] + }, + { + "uuid": "499ba08c-1117-462b-800e-1f1c0720142e", + "name": "Stray", + "aliases": [] + }, + { + "uuid": "e8e1380c-8fbe-4076-917b-3e7238554751", + "name": "Just Act Natural", + "aliases": [] + }, + { + "uuid": "23b7ae05-8c1b-41cf-8cfe-52746de5a925", + "name": "Escape Room - The Sick Colleague", + "aliases": [] + }, + { + "uuid": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "name": "OneShot", + "aliases": [] + }, + { + "uuid": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", + "name": "BeamNG.drive", + "aliases": [] + } +] \ No newline at end of file diff --git a/init.js b/init.js deleted file mode 100644 index c3eacb2..0000000 --- a/init.js +++ /dev/null @@ -1,23163 +0,0 @@ -use gabriel; -db.game.drop(); -db.session.drop(); -db.user.drop(); -db.user.insertMany([{"discordId":"788818750251007268","username":"Anahi.Spencer","discriminator":1689,"displayName":"Anahi.Spencer"},{"discordId":"336473229248470346","username":"Odell_Hagenes","discriminator":3095,"displayName":"Odell_Hagenes"},{"discordId":"385692164951394422","username":"Sydnie.Spinka","discriminator":9213,"displayName":"Sydnie.Spinka"},{"discordId":"747381962738157784","username":"Olga28","discriminator":4014,"displayName":"Kurtis95"},{"discordId":"106607193284486979","username":"Juliana86","discriminator":9278,"displayName":"Jessyca77"},{"discordId":"725502702868293700","username":"Polly2","discriminator":5838,"displayName":"Dorothy47"},{"discordId":"549054179973094329","username":"Hester98","discriminator":7832,"displayName":"Hester98"},{"discordId":"922664752332558395","username":"Aric_Von18","discriminator":1309,"displayName":"Aric_Von18"},{"discordId":"881335427428668054","username":"Monte.Bode","discriminator":5835,"displayName":"Monte.Bode"},{"discordId":"608700383891121851","username":"Paris37","discriminator":4535,"displayName":"Noelia.Stamm"},{"discordId":"185442579258045359","username":"Mariela.Lind58","discriminator":2732,"displayName":"Myron_Quigley"},{"discordId":"302347517889336519","username":"Carroll33","discriminator":4350,"displayName":"Carroll33"},{"discordId":"101572134856427564","username":"Lance_Schinner","discriminator":2425,"displayName":"Lance_Schinner"},{"discordId":"360264570671216445","username":"Elmer37","discriminator":8803,"displayName":"Elmer37"},{"discordId":"395281349698024181","username":"Collin.Bogisich38","discriminator":9847,"displayName":"Collin.Bogisich38"},{"discordId":"658550407298256890","username":"Hannah_Altenwerth96","discriminator":8139,"displayName":"Hannah_Altenwerth96"},{"discordId":"786084290971413565","username":"Carley_Stracke58","discriminator":4067,"displayName":"Ryann_Kreiger"},{"discordId":"628567265580410356","username":"Brandt.Gleason","discriminator":9801,"displayName":"Brandt.Gleason"},{"discordId":"568387317892070397","username":"Lukas.Boehm","discriminator":6318,"displayName":"Lukas.Boehm"},{"discordId":"565021137482980984","username":"Sebastian33","discriminator":7023,"displayName":"Sebastian33"},{"discordId":"444246898747584433","username":"Hermina_Hegmann","discriminator":4527,"displayName":"Emilio.Renner82"},{"discordId":"495724335127362694","username":"Enid3","discriminator":6598,"displayName":"Princess_Murazik"},{"discordId":"686825797960121847","username":"Maximillian98","discriminator":3878,"displayName":"Maximillian98"},{"discordId":"182925797752958092","username":"Kory.Hyatt","discriminator":6161,"displayName":"Kory.Hyatt"},{"discordId":"302679892350666678","username":"Rosendo.Lindgren","discriminator":2308,"displayName":"Rosendo.Lindgren"}]); -db.user.insertMany([{"discordId":"521350927850935744","username":"Mossie_Gaylord11","discriminator":3088,"displayName":"Lacey89"},{"discordId":"430732724825949756","username":"Brendan6","discriminator":2391,"displayName":"Brendan6"},{"discordId":"872035310834814925","username":"Pinkie9","discriminator":8038,"displayName":"Pinkie9"},{"discordId":"137536289023624121","username":"Perry_Herzog31","discriminator":6052,"displayName":"Earlene23"},{"discordId":"821608522568592914","username":"Madyson.Ritchie","discriminator":6572,"displayName":"Madyson.Ritchie"},{"discordId":"538658792298239054","username":"Kenton_Jerde33","discriminator":9540,"displayName":"Kenton_Jerde33"},{"discordId":"600708263053781983","username":"Marquise_Brekke","discriminator":4178,"displayName":"Marquise_Brekke"},{"discordId":"800318424708872602","username":"Piper30","discriminator":3171,"displayName":"Piper30"},{"discordId":"958598056500699208","username":"Melisa_Wuckert21","discriminator":6444,"displayName":"Lourdes_Schinner48"},{"discordId":"213263852824749877","username":"Domenic12","discriminator":3773,"displayName":"Domenic12"},{"discordId":"394970121077311909","username":"Dimitri_Will","discriminator":6784,"displayName":"Dimitri_Will"},{"discordId":"424856688594618054","username":"Catalina_Dicki58","discriminator":8804,"displayName":"Catalina_Dicki58"},{"discordId":"841397740041930984","username":"Robb37","discriminator":8943,"displayName":"Robb37"},{"discordId":"786028561315351452","username":"Taryn0","discriminator":7351,"displayName":"Taryn0"},{"discordId":"463820732483181525","username":"Delphia.Schultz28","discriminator":1664,"displayName":"Delphia.Schultz28"},{"discordId":"541104083732114799","username":"Susana86","discriminator":9543,"displayName":"Susana86"},{"discordId":"147480245458136084","username":"Marcelina80","discriminator":1728,"displayName":"Marcelina80"},{"discordId":"329429619186234053","username":"Martina.Mann12","discriminator":1652,"displayName":"Hester_Kassulke"},{"discordId":"911848869344266044","username":"Cathy93","discriminator":8969,"displayName":"Cathy93"},{"discordId":"346608907417001845","username":"Blaze65","discriminator":8560,"displayName":"Blaze65"},{"discordId":"297014162745407430","username":"Emmitt76","discriminator":9496,"displayName":"Emmitt76"},{"discordId":"153631479524744694","username":"Tre88","discriminator":8121,"displayName":"Tre88"},{"discordId":"500919588166575890","username":"Heber.MacGyver","discriminator":3167,"displayName":"Joanne.Abbott32"},{"discordId":"318220875546522080","username":"Hilario_Schaefer13","discriminator":4992,"displayName":"Marian.Collins"},{"discordId":"623295654897148670","username":"Dylan99","discriminator":6178,"displayName":"Dylan99"}]); -db.user.insertMany([{"discordId":"378424071510192465","username":"Floyd.Erdman","discriminator":9495,"displayName":"Norene.Green57"},{"discordId":"123137660023366590","username":"Robbie_Davis85","discriminator":1544,"displayName":"Misael82"},{"discordId":"355708392202112685","username":"Addison.Block70","discriminator":7941,"displayName":"Addison.Block70"},{"discordId":"131482253203487270","username":"Elias.Haley","discriminator":9998,"displayName":"Elias.Haley"},{"discordId":"625617695768437507","username":"Brandi.Veum32","discriminator":4167,"displayName":"Brandi.Veum32"},{"discordId":"530539422724200800","username":"Valentina_Harber","discriminator":6043,"displayName":"Valentina_Harber"},{"discordId":"713444659295913502","username":"Christiana61","discriminator":9980,"displayName":"Buddy_Sauer36"},{"discordId":"768513326430993269","username":"Rudolph.Davis","discriminator":3517,"displayName":"Rudolph.Davis"},{"discordId":"878082205985098233","username":"Asa.Johnston","discriminator":2193,"displayName":"Asa.Johnston"},{"discordId":"605723970188938456","username":"Anais4","discriminator":7513,"displayName":"Anais4"},{"discordId":"732542352358923773","username":"Ashton.Mann","discriminator":6314,"displayName":"Ashton.Mann"},{"discordId":"200801427122341912","username":"Scottie.Wehner","discriminator":3950,"displayName":"Scottie.Wehner"},{"discordId":"525940629729163286","username":"Issac.King","discriminator":2203,"displayName":"Issac.King"},{"discordId":"596421190780633864","username":"Zion.Rolfson","discriminator":1064,"displayName":"Joannie70"},{"discordId":"537786518874514211","username":"Magnolia.Kunze","discriminator":9682,"displayName":"Magnolia.Kunze"},{"discordId":"938976307338486810","username":"Creola29","discriminator":4464,"displayName":"Creola29"},{"discordId":"695941172337689379","username":"Dessie50","discriminator":5140,"displayName":"Dessie50"},{"discordId":"126384926926158511","username":"Jason14","discriminator":5826,"displayName":"Gladys.Deckow"},{"discordId":"951131768137733554","username":"Sidney45","discriminator":2387,"displayName":"Sidney45"},{"discordId":"161887854890745672","username":"Maudie_Bauch","discriminator":6659,"displayName":"Maudie_Bauch"},{"discordId":"467658810442648809","username":"Lydia_Sanford99","discriminator":7253,"displayName":"Granville.Koch"},{"discordId":"264503060524837708","username":"Levi_Tremblay","discriminator":3241,"displayName":"Levi_Tremblay"},{"discordId":"636935635446628860","username":"Christian_Lueilwitz37","discriminator":7962,"displayName":"Christian_Lueilwitz37"},{"discordId":"590467327095087095","username":"Edd62","discriminator":2352,"displayName":"Chasity.Howe84"},{"discordId":"198010595767135394","username":"Casimer_Grady82","discriminator":1536,"displayName":"Liana3"}]); -db.user.insertMany([{"discordId":"931211630078779300","username":"Mariana28","discriminator":4656,"displayName":"Osbaldo.Hoeger"},{"discordId":"866600263421429886","username":"Terrell_Swift45","discriminator":2783,"displayName":"Terrell_Swift45"},{"discordId":"731522398939920723","username":"Jordy.Stehr","discriminator":9342,"displayName":"Jordy.Stehr"},{"discordId":"694111074254984301","username":"Moises_Hirthe74","discriminator":3944,"displayName":"Moises_Hirthe74"},{"discordId":"517335360477493827","username":"Breana52","discriminator":9669,"displayName":"Breana52"},{"discordId":"269014914705953013","username":"Magali.Spinka4","discriminator":4998,"displayName":"Magali.Spinka4"},{"discordId":"406850294055619241","username":"Violet_Murray","discriminator":3571,"displayName":"Althea.Brekke"},{"discordId":"347172184335646820","username":"Michele_Rice","discriminator":1772,"displayName":"Michele_Rice"},{"discordId":"900234800332446962","username":"Muhammad55","discriminator":6103,"displayName":"Muhammad55"},{"discordId":"715446191320920764","username":"Lucius_Fritsch32","discriminator":8969,"displayName":"Dayton.Little"},{"discordId":"951234649334557435","username":"Lee_Wisoky","discriminator":2927,"displayName":"Lee_Wisoky"},{"discordId":"285410867718320291","username":"Anika_Cummerata","discriminator":2295,"displayName":"Anika_Cummerata"},{"discordId":"268139232276871676","username":"Melyssa_Shields29","discriminator":4918,"displayName":"Melyssa_Shields29"},{"discordId":"457796054587169483","username":"Jaylen_Mraz","discriminator":2651,"displayName":"Trenton3"},{"discordId":"452396069922968436","username":"Mariam60","discriminator":5992,"displayName":"Mariam60"},{"discordId":"791267126190249625","username":"Palma.Jerde","discriminator":8082,"displayName":"Margarete.Hoeger58"},{"discordId":"559757870366930730","username":"Lela_Jones","discriminator":4269,"displayName":"Lela_Jones"},{"discordId":"440349172934867131","username":"Delmer_Skiles58","discriminator":1528,"displayName":"Delmer_Skiles58"},{"discordId":"453350270016457959","username":"Cristopher78","discriminator":1039,"displayName":"Cristopher78"},{"discordId":"774637841058278398","username":"Eliseo.Waelchi","discriminator":8296,"displayName":"Eliseo.Waelchi"},{"discordId":"510690749854514547","username":"Julia_Rippin","discriminator":5539,"displayName":"Julia_Rippin"},{"discordId":"302714757313826277","username":"Shane_Boyer","discriminator":5945,"displayName":"Roxane.Kling"},{"discordId":"762163239408560283","username":"Mustafa_Kling","discriminator":2175,"displayName":"Mustafa_Kling"},{"discordId":"584489284152985092","username":"Jess_Jacobs","discriminator":3525,"displayName":"Jess_Jacobs"},{"discordId":"494763633796983404","username":"Helena24","discriminator":9332,"displayName":"Will1"}]); -db.game.insertMany([{"gameId": "700136079562375258", "name": "VALORANT"},{"gameId": "356875221078245376", "name": "Overwatch"},{"name":"Visage","gameId":"508057374875975682"},{"name":"Kynseed","gameId":"510199020782747732"},{"name":"Thronebreaker","gameId":"511619499053678668"},{"name":"Paladins Strike","gameId":"512498684211232768"},{"name":"Fallout 76","gameId":"512501896896970762"},{"name":"Battlefield V","gameId":"512699108809637890"},{"name":"Battle Chef Brigade","gameId":"512789120234422301"},{"name":"Kingsway","gameId":"512789343157485602"},{"name":"Zenzizenzic","gameId":"512789427462995988"},{"name":"Borderlands 3","gameId":"514228311661084682"},{"name":"Realm Royale","gameId":"518088627234930688"},{"name":"Turok","gameId":"519644267212177418"},{"name":"Turok 2: Seeds of Evil","gameId":"519644368735567873"},{"name":"Ashen","gameId":"520453007578628124"},{"name":"Hades","gameId":"520462578061803588"},{"name":"Nitro","gameId":"521842831262875670"},{"name":"Far Cry New Dawn","gameId":"523154344187789312"},{"name":"ATLAS","gameId":"526489929631531009"},{"name":"Paladins","gameId":"528145079819436043"},{"name":"Metro Exodus","gameId":"530454325214969866"},{"name":"Sea of Thieves","gameId":"535371564850479134"},{"name":"LEGO Harry Potter: Years 5-7","gameId":"535384357536399404"},{"name":"Subnautica: Below Zero","gameId":"535869836748783616"},{"name":"Ghost Recon Breakpoint","gameId":"540120593576493057"},{"name":"Apex Legends","gameId":"542075586886107149"},{"name":"Farming Simulator 19","gameId":"542474758835535872"},{"name":"Warhammer: VermintgameIde 2","gameId":"542475118396309528"},{"name":"Anthem","gameId":"546175179542364160"},{"name":"Spellbreak","gameId":"549512435585908756"},{"name":"Heroes & Generals WWII","gameId":"550277544025522176"},{"name":"Dawn of Man","gameId":"553697181249437716"},{"name":"Warface","gameId":"554573307161214977"},{"name":"Tom Clancy's The Division 2","gameId":"554921822626381879"},{"name":"Temtem","gameId":"558547388583772201"},{"name":"Mutant Year Zero: Road to Eden","gameId":"560781100197216267"},{"name":"Bloodstained: Ritual of the Night","gameId":"565341641427124244"},{"name":"Sekiro: Shadows Die Twice","gameId":"569008830701240340"},{"name":"Risk of Rain 2","gameId":"569253958967885828"},{"name":"Satisfactory","gameId":"572456126872944651"},{"name":"MORDHAU","gameId":"575412499399180288"},{"name":"Baba Is You","gameId":"576482762446602270"},{"name":"Staxel","gameId":"584069374462394368"},{"name":"Supreme Ruler Ultimate","gameId":"588739017718366208"},{"name":"Dota Underlords","gameId":"592976500802846750"},{"name":"PUBG LITE","gameId":"597588168178663434"},{"name":"Swords of Gurrah","gameId":"597860020935327787"},{"name":"Lethal League Blaze","gameId":"606163888052109312"},{"name":"Bloons TD 6","gameId":"614380482620293151"},{"name":"Bloons Adventure Time TD","gameId":"614448244260339712"}]); - -const sessions = [ - { - "user": "302714757313826277", - "game": "512498684211232768", - "start": "2022-06-26T15:28:15.627Z", - "end": "2022-06-26T20:01:05.646Z", - "events": [ - { - "start": "2022-06-26T15:28:15.627Z", - "end": "2022-06-26T16:22:49.630Z", - "state": "IDLE" - }, - { - "start": "2022-06-26T16:22:49.630Z", - "end": "2022-06-26T17:17:23.633Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T17:17:23.633Z", - "end": "2022-06-26T18:11:57.636Z", - "state": "IDLE" - }, - { - "start": "2022-06-26T18:11:57.636Z", - "end": "2022-06-26T19:06:31.639Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-26T19:06:31.639Z", - "end": "2022-06-26T20:01:05.642Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "523154344187789312", - "start": "2022-05-02T03:29:38.617Z", - "end": "2022-05-02T06:31:00.058Z", - "events": [ - { - "start": "2022-05-02T03:29:38.617Z", - "end": "2022-05-02T04:14:58.977Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T04:14:58.977Z", - "end": "2022-05-02T05:00:19.337Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T05:00:19.337Z", - "end": "2022-05-02T05:45:39.697Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T05:45:39.697Z", - "end": "2022-05-02T06:31:00.057Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "500919588166575890", - "game": "540120593576493057", - "start": "2022-04-19T02:52:15.407Z", - "end": "2022-04-19T04:51:22.187Z", - "events": [ - { - "start": "2022-04-19T02:52:15.407Z", - "end": "2022-04-19T03:16:04.763Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T03:16:04.763Z", - "end": "2022-04-19T03:39:54.119Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T03:39:54.119Z", - "end": "2022-04-19T04:03:43.475Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T04:03:43.475Z", - "end": "2022-04-19T04:27:32.831Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T04:27:32.831Z", - "end": "2022-04-19T04:51:22.187Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "958598056500699208", - "game": "535384357536399404", - "start": "2022-07-22T03:36:18.916Z", - "end": "2022-07-22T07:47:02.631Z", - "events": [ - { - "start": "2022-07-22T03:36:18.916Z", - "end": "2022-07-22T04:59:53.487Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T04:59:53.487Z", - "end": "2022-07-22T06:23:28.058Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T06:23:28.058Z", - "end": "2022-07-22T07:47:02.629Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "336473229248470346", - "game": "520453007578628124", - "start": "2022-06-30T01:06:22.586Z", - "end": "2022-06-30T10:22:57.185Z", - "events": [ - { - "start": "2022-06-30T01:06:22.586Z", - "end": "2022-06-30T10:22:57.185Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "521350927850935744", - "game": "550277544025522176", - "start": "2022-06-16T06:58:07.801Z", - "end": "2022-06-16T06:59:40.279Z", - "events": [ - { - "start": "2022-06-16T06:58:07.801Z", - "end": "2022-06-16T06:58:30.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-16T06:58:30.920Z", - "end": "2022-06-16T06:58:54.039Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T06:58:54.039Z", - "end": "2022-06-16T06:59:17.158Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T06:59:17.158Z", - "end": "2022-06-16T06:59:40.277Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "200801427122341912", - "game": "514228311661084682", - "start": "2022-06-01T13:19:00.487Z", - "end": "2022-06-01T17:40:05.854Z", - "events": [ - { - "start": "2022-06-01T13:19:00.487Z", - "end": "2022-06-01T15:29:33.170Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T15:29:33.170Z", - "end": "2022-06-01T17:40:05.853Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "549512435585908756", - "start": "2022-04-21T00:09:03.538Z", - "end": "2022-04-21T05:15:15.889Z", - "events": [ - { - "start": "2022-04-21T00:09:03.538Z", - "end": "2022-04-21T02:42:09.713Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T02:42:09.713Z", - "end": "2022-04-21T05:15:15.888Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "878082205985098233", - "game": "606163888052109312", - "start": "2022-07-01T08:38:01.657Z", - "end": "2022-07-01T13:37:31.108Z", - "events": [ - { - "start": "2022-07-01T08:38:01.657Z", - "end": "2022-07-01T11:07:46.382Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T11:07:46.382Z", - "end": "2022-07-01T13:37:31.107Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "526489929631531009", - "start": "2022-05-16T03:04:32.793Z", - "end": "2022-05-16T10:01:49.709Z", - "events": [ - { - "start": "2022-05-16T03:04:32.793Z", - "end": "2022-05-16T06:33:11.251Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T06:33:11.251Z", - "end": "2022-05-16T10:01:49.709Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "821608522568592914", - "game": "569008830701240340", - "start": "2022-06-23T15:40:40.856Z", - "end": "2022-06-23T22:35:22.572Z", - "events": [ - { - "start": "2022-06-23T15:40:40.856Z", - "end": "2022-06-23T17:24:21.285Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-23T17:24:21.285Z", - "end": "2022-06-23T19:08:01.714Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-23T19:08:01.714Z", - "end": "2022-06-23T20:51:42.143Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T20:51:42.143Z", - "end": "2022-06-23T22:35:22.572Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "137536289023624121", - "game": "511619499053678668", - "start": "2022-07-15T18:36:47.356Z", - "end": "2022-07-15T18:37:48.192Z", - "events": [ - { - "start": "2022-07-15T18:36:47.356Z", - "end": "2022-07-15T18:37:17.774Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-15T18:37:17.774Z", - "end": "2022-07-15T18:37:48.192Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "628567265580410356", - "game": "540120593576493057", - "start": "2022-05-15T19:17:09.456Z", - "end": "2022-05-16T02:59:33.907Z", - "events": [ - { - "start": "2022-05-15T19:17:09.456Z", - "end": "2022-05-15T21:51:17.606Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T21:51:17.606Z", - "end": "2022-05-16T00:25:25.756Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T00:25:25.756Z", - "end": "2022-05-16T02:59:33.906Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "494763633796983404", - "game": "520453007578628124", - "start": "2022-07-10T15:20:22.201Z", - "end": "2022-07-10T16:14:36.912Z", - "events": [ - { - "start": "2022-07-10T15:20:22.201Z", - "end": "2022-07-10T15:47:29.556Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T15:47:29.556Z", - "end": "2022-07-10T16:14:36.911Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "520453007578628124", - "start": "2022-08-04T06:36:29.737Z", - "end": "2022-08-04T13:32:45.474Z", - "events": [ - { - "start": "2022-08-04T06:36:29.737Z", - "end": "2022-08-04T10:04:37.605Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T10:04:37.605Z", - "end": "2022-08-04T13:32:45.473Z", - "state": "IDLE" - } - ] - }, - { - "user": "951234649334557435", - "game": "514228311661084682", - "start": "2022-06-08T14:22:39.764Z", - "end": "2022-06-08T19:11:38.919Z", - "events": [ - { - "start": "2022-06-08T14:22:39.764Z", - "end": "2022-06-08T16:47:09.341Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T16:47:09.341Z", - "end": "2022-06-08T19:11:38.918Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "521842831262875670", - "start": "2022-07-01T09:33:18.686Z", - "end": "2022-07-01T18:14:41.417Z", - "events": [ - { - "start": "2022-07-01T09:33:18.686Z", - "end": "2022-07-01T11:43:39.368Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T11:43:39.368Z", - "end": "2022-07-01T13:54:00.050Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T13:54:00.050Z", - "end": "2022-07-01T16:04:20.732Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-01T16:04:20.732Z", - "end": "2022-07-01T18:14:41.414Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "700136079562375258", - "start": "2022-05-31T08:06:44.843Z", - "end": "2022-05-31T09:45:33.361Z", - "events": [ - { - "start": "2022-05-31T08:06:44.843Z", - "end": "2022-05-31T08:39:41.015Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T08:39:41.015Z", - "end": "2022-05-31T09:12:37.187Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T09:12:37.187Z", - "end": "2022-05-31T09:45:33.359Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "494763633796983404", - "game": "510199020782747732", - "start": "2022-07-20T21:25:56.107Z", - "end": "2022-07-21T04:46:22.425Z", - "events": [ - { - "start": "2022-07-20T21:25:56.107Z", - "end": "2022-07-21T01:06:09.266Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T01:06:09.266Z", - "end": "2022-07-21T04:46:22.425Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "695941172337689379", - "game": "588739017718366208", - "start": "2022-05-12T05:36:19.453Z", - "end": "2022-05-12T10:13:21.016Z", - "events": [ - { - "start": "2022-05-12T05:36:19.453Z", - "end": "2022-05-12T07:08:39.974Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T07:08:39.974Z", - "end": "2022-05-12T08:41:00.495Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-12T08:41:00.495Z", - "end": "2022-05-12T10:13:21.016Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "519644368735567873", - "start": "2022-05-24T11:08:16.895Z", - "end": "2022-05-24T11:50:56.141Z", - "events": [ - { - "start": "2022-05-24T11:08:16.895Z", - "end": "2022-05-24T11:16:48.744Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T11:16:48.744Z", - "end": "2022-05-24T11:25:20.593Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T11:25:20.593Z", - "end": "2022-05-24T11:33:52.442Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T11:33:52.442Z", - "end": "2022-05-24T11:42:24.291Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T11:42:24.291Z", - "end": "2022-05-24T11:50:56.140Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "182925797752958092", - "game": "549512435585908756", - "start": "2022-04-28T03:47:51.221Z", - "end": "2022-04-28T05:08:58.422Z", - "events": [ - { - "start": "2022-04-28T03:47:51.221Z", - "end": "2022-04-28T04:04:04.661Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T04:04:04.661Z", - "end": "2022-04-28T04:20:18.101Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T04:20:18.101Z", - "end": "2022-04-28T04:36:31.541Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-28T04:36:31.541Z", - "end": "2022-04-28T04:52:44.981Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T04:52:44.981Z", - "end": "2022-04-28T05:08:58.421Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "520453007578628124", - "start": "2022-08-05T14:05:45.578Z", - "end": "2022-08-05T15:12:59.263Z", - "events": [ - { - "start": "2022-08-05T14:05:45.578Z", - "end": "2022-08-05T14:39:22.420Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T14:39:22.420Z", - "end": "2022-08-05T15:12:59.262Z", - "state": "IDLE" - } - ] - }, - { - "user": "457796054587169483", - "game": "565341641427124244", - "start": "2022-05-16T23:21:20.520Z", - "end": "2022-05-17T08:14:01.005Z", - "events": [ - { - "start": "2022-05-16T23:21:20.520Z", - "end": "2022-05-17T08:14:01.005Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "713444659295913502", - "game": "558547388583772201", - "start": "2022-06-18T13:35:26.722Z", - "end": "2022-06-18T18:14:18.782Z", - "events": [ - { - "start": "2022-06-18T13:35:26.722Z", - "end": "2022-06-18T15:54:52.752Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-18T15:54:52.752Z", - "end": "2022-06-18T18:14:18.782Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "512501896896970762", - "start": "2022-07-24T23:45:55.013Z", - "end": "2022-07-25T01:30:16.596Z", - "events": [ - { - "start": "2022-07-24T23:45:55.013Z", - "end": "2022-07-25T00:38:05.804Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-25T00:38:05.804Z", - "end": "2022-07-25T01:30:16.595Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "268139232276871676", - "game": "512789120234422301", - "start": "2022-05-05T14:24:20.751Z", - "end": "2022-05-05T17:17:07.579Z", - "events": [ - { - "start": "2022-05-05T14:24:20.751Z", - "end": "2022-05-05T17:17:07.579Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "452396069922968436", - "game": "597588168178663434", - "start": "2022-07-06T07:08:59.781Z", - "end": "2022-07-06T13:33:32.595Z", - "events": [ - { - "start": "2022-07-06T07:08:59.781Z", - "end": "2022-07-06T08:45:07.984Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T08:45:07.984Z", - "end": "2022-07-06T10:21:16.187Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T10:21:16.187Z", - "end": "2022-07-06T11:57:24.390Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T11:57:24.390Z", - "end": "2022-07-06T13:33:32.593Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "198010595767135394", - "game": "700136079562375258", - "start": "2022-08-03T06:56:17.101Z", - "end": "2022-08-03T12:25:31.056Z", - "events": [ - { - "start": "2022-08-03T06:56:17.101Z", - "end": "2022-08-03T08:18:35.589Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T08:18:35.589Z", - "end": "2022-08-03T09:40:54.077Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T09:40:54.077Z", - "end": "2022-08-03T11:03:12.565Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T11:03:12.565Z", - "end": "2022-08-03T12:25:31.053Z", - "state": "IDLE" - } - ] - }, - { - "user": "695941172337689379", - "game": "588739017718366208", - "start": "2022-06-03T13:54:13.957Z", - "end": "2022-06-03T16:47:30.691Z", - "events": [ - { - "start": "2022-06-03T13:54:13.957Z", - "end": "2022-06-03T14:28:53.303Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T14:28:53.303Z", - "end": "2022-06-03T15:03:32.649Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T15:03:32.649Z", - "end": "2022-06-03T15:38:11.995Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T15:38:11.995Z", - "end": "2022-06-03T16:12:51.341Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T16:12:51.341Z", - "end": "2022-06-03T16:47:30.687Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "565341641427124244", - "start": "2022-05-04T19:36:29.783Z", - "end": "2022-05-04T22:34:17.695Z", - "events": [ - { - "start": "2022-05-04T19:36:29.783Z", - "end": "2022-05-04T20:20:56.761Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T20:20:56.761Z", - "end": "2022-05-04T21:05:23.739Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T21:05:23.739Z", - "end": "2022-05-04T21:49:50.717Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T21:49:50.717Z", - "end": "2022-05-04T22:34:17.695Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "523154344187789312", - "start": "2022-07-27T20:25:59.868Z", - "end": "2022-07-28T02:26:24.320Z", - "events": [ - { - "start": "2022-07-27T20:25:59.868Z", - "end": "2022-07-27T22:26:08.018Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T22:26:08.018Z", - "end": "2022-07-28T00:26:16.168Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T00:26:16.168Z", - "end": "2022-07-28T02:26:24.318Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "347172184335646820", - "game": "535869836748783616", - "start": "2022-05-19T21:14:55.030Z", - "end": "2022-05-20T02:14:56.180Z", - "events": [ - { - "start": "2022-05-19T21:14:55.030Z", - "end": "2022-05-19T22:14:55.260Z", - "state": "IDLE" - }, - { - "start": "2022-05-19T22:14:55.260Z", - "end": "2022-05-19T23:14:55.490Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-19T23:14:55.490Z", - "end": "2022-05-20T00:14:55.720Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-20T00:14:55.720Z", - "end": "2022-05-20T01:14:55.950Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T01:14:55.950Z", - "end": "2022-05-20T02:14:56.180Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "510199020782747732", - "start": "2022-05-23T06:25:15.018Z", - "end": "2022-05-23T08:10:19.492Z", - "events": [ - { - "start": "2022-05-23T06:25:15.018Z", - "end": "2022-05-23T08:10:19.492Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "530454325214969866", - "start": "2022-05-24T03:57:47.174Z", - "end": "2022-05-24T11:53:08.484Z", - "events": [ - { - "start": "2022-05-24T03:57:47.174Z", - "end": "2022-05-24T06:36:14.277Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T06:36:14.277Z", - "end": "2022-05-24T09:14:41.380Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T09:14:41.380Z", - "end": "2022-05-24T11:53:08.483Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "530454325214969866", - "start": "2022-04-22T20:28:19.369Z", - "end": "2022-04-23T04:57:19.121Z", - "events": [ - { - "start": "2022-04-22T20:28:19.369Z", - "end": "2022-04-22T22:10:07.319Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T22:10:07.319Z", - "end": "2022-04-22T23:51:55.269Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T23:51:55.269Z", - "end": "2022-04-23T01:33:43.219Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T01:33:43.219Z", - "end": "2022-04-23T03:15:31.169Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-23T03:15:31.169Z", - "end": "2022-04-23T04:57:19.119Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "872035310834814925", - "game": "572456126872944651", - "start": "2022-05-24T19:59:53.711Z", - "end": "2022-05-25T05:27:53.773Z", - "events": [ - { - "start": "2022-05-24T19:59:53.711Z", - "end": "2022-05-24T21:53:29.723Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T21:53:29.723Z", - "end": "2022-05-24T23:47:05.735Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T23:47:05.735Z", - "end": "2022-05-25T01:40:41.747Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T01:40:41.747Z", - "end": "2022-05-25T03:34:17.759Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T03:34:17.759Z", - "end": "2022-05-25T05:27:53.771Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "608700383891121851", - "game": "565341641427124244", - "start": "2022-07-30T16:49:44.414Z", - "end": "2022-07-30T18:51:56.197Z", - "events": [ - { - "start": "2022-07-30T16:49:44.414Z", - "end": "2022-07-30T17:14:10.770Z", - "state": "IDLE" - }, - { - "start": "2022-07-30T17:14:10.770Z", - "end": "2022-07-30T17:38:37.126Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-30T17:38:37.126Z", - "end": "2022-07-30T18:03:03.482Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-30T18:03:03.482Z", - "end": "2022-07-30T18:27:29.838Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-30T18:27:29.838Z", - "end": "2022-07-30T18:51:56.194Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "546175179542364160", - "start": "2022-04-25T18:35:20.483Z", - "end": "2022-04-25T20:48:05.357Z", - "events": [ - { - "start": "2022-04-25T18:35:20.483Z", - "end": "2022-04-25T19:41:42.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T19:41:42.920Z", - "end": "2022-04-25T20:48:05.357Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "512789427462995988", - "start": "2022-04-25T18:17:18.598Z", - "end": "2022-04-26T02:46:42.609Z", - "events": [ - { - "start": "2022-04-25T18:17:18.598Z", - "end": "2022-04-25T22:32:00.603Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T22:32:00.603Z", - "end": "2022-04-26T02:46:42.608Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "542075586886107149", - "start": "2022-06-05T16:15:32.126Z", - "end": "2022-06-05T16:52:48.152Z", - "events": [ - { - "start": "2022-06-05T16:15:32.126Z", - "end": "2022-06-05T16:52:48.152Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "521350927850935744", - "game": "549512435585908756", - "start": "2022-07-04T11:02:12.714Z", - "end": "2022-07-04T12:49:39.778Z", - "events": [ - { - "start": "2022-07-04T11:02:12.714Z", - "end": "2022-07-04T11:29:04.480Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T11:29:04.480Z", - "end": "2022-07-04T11:55:56.246Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T11:55:56.246Z", - "end": "2022-07-04T12:22:48.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T12:22:48.012Z", - "end": "2022-07-04T12:49:39.778Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "614448244260339712", - "start": "2022-05-21T08:07:07.647Z", - "end": "2022-05-21T12:53:45.192Z", - "events": [ - { - "start": "2022-05-21T08:07:07.647Z", - "end": "2022-05-21T09:42:40.162Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T09:42:40.162Z", - "end": "2022-05-21T11:18:12.677Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T11:18:12.677Z", - "end": "2022-05-21T12:53:45.192Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "521350927850935744", - "game": "575412499399180288", - "start": "2022-05-30T05:31:10.240Z", - "end": "2022-05-30T15:34:40.853Z", - "events": [ - { - "start": "2022-05-30T05:31:10.240Z", - "end": "2022-05-30T08:52:20.444Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T08:52:20.444Z", - "end": "2022-05-30T12:13:30.648Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T12:13:30.648Z", - "end": "2022-05-30T15:34:40.852Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "788818750251007268", - "game": "535384357536399404", - "start": "2022-06-28T07:45:12.656Z", - "end": "2022-06-28T16:33:33.145Z", - "events": [ - { - "start": "2022-06-28T07:45:12.656Z", - "end": "2022-06-28T16:33:33.145Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "614448244260339712", - "start": "2022-06-01T01:43:12.726Z", - "end": "2022-06-01T01:50:31.865Z", - "events": [ - { - "start": "2022-06-01T01:43:12.726Z", - "end": "2022-06-01T01:44:40.553Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T01:44:40.553Z", - "end": "2022-06-01T01:46:08.380Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T01:46:08.380Z", - "end": "2022-06-01T01:47:36.207Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T01:47:36.207Z", - "end": "2022-06-01T01:49:04.034Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T01:49:04.034Z", - "end": "2022-06-01T01:50:31.861Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "519644267212177418", - "start": "2022-05-21T17:56:28.416Z", - "end": "2022-05-21T22:33:54.495Z", - "events": [ - { - "start": "2022-05-21T17:56:28.416Z", - "end": "2022-05-21T19:05:49.935Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T19:05:49.935Z", - "end": "2022-05-21T20:15:11.454Z", - "state": "IDLE" - }, - { - "start": "2022-05-21T20:15:11.454Z", - "end": "2022-05-21T21:24:32.973Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T21:24:32.973Z", - "end": "2022-05-21T22:33:54.492Z", - "state": "IDLE" - } - ] - }, - { - "user": "494763633796983404", - "game": "550277544025522176", - "start": "2022-07-08T05:14:14.765Z", - "end": "2022-07-08T10:39:41.217Z", - "events": [ - { - "start": "2022-07-08T05:14:14.765Z", - "end": "2022-07-08T06:35:36.378Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T06:35:36.378Z", - "end": "2022-07-08T07:56:57.991Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T07:56:57.991Z", - "end": "2022-07-08T09:18:19.604Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T09:18:19.604Z", - "end": "2022-07-08T10:39:41.217Z", - "state": "IDLE" - } - ] - }, - { - "user": "336473229248470346", - "game": "560781100197216267", - "start": "2022-05-10T21:11:25.420Z", - "end": "2022-05-11T02:34:49.499Z", - "events": [ - { - "start": "2022-05-10T21:11:25.420Z", - "end": "2022-05-10T22:32:16.439Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T22:32:16.439Z", - "end": "2022-05-10T23:53:07.458Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T23:53:07.458Z", - "end": "2022-05-11T01:13:58.477Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T01:13:58.477Z", - "end": "2022-05-11T02:34:49.496Z", - "state": "IDLE" - } - ] - }, - { - "user": "841397740041930984", - "game": "550277544025522176", - "start": "2022-05-17T19:01:20.598Z", - "end": "2022-05-18T02:56:32.458Z", - "events": [ - { - "start": "2022-05-17T19:01:20.598Z", - "end": "2022-05-18T02:56:32.458Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "526489929631531009", - "start": "2022-06-20T17:29:23.466Z", - "end": "2022-06-20T22:16:36.561Z", - "events": [ - { - "start": "2022-06-20T17:29:23.466Z", - "end": "2022-06-20T18:26:50.085Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T18:26:50.085Z", - "end": "2022-06-20T19:24:16.704Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T19:24:16.704Z", - "end": "2022-06-20T20:21:43.323Z", - "state": "IDLE" - }, - { - "start": "2022-06-20T20:21:43.323Z", - "end": "2022-06-20T21:19:09.942Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-20T21:19:09.942Z", - "end": "2022-06-20T22:16:36.561Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "528145079819436043", - "start": "2022-04-28T01:37:42.058Z", - "end": "2022-04-28T06:01:51.084Z", - "events": [ - { - "start": "2022-04-28T01:37:42.058Z", - "end": "2022-04-28T02:30:31.863Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T02:30:31.863Z", - "end": "2022-04-28T03:23:21.668Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T03:23:21.668Z", - "end": "2022-04-28T04:16:11.473Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T04:16:11.473Z", - "end": "2022-04-28T05:09:01.278Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T05:09:01.278Z", - "end": "2022-04-28T06:01:51.083Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "931211630078779300", - "game": "554573307161214977", - "start": "2022-05-23T07:17:44.471Z", - "end": "2022-05-23T08:39:44.841Z", - "events": [ - { - "start": "2022-05-23T07:17:44.471Z", - "end": "2022-05-23T07:38:14.563Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T07:38:14.563Z", - "end": "2022-05-23T07:58:44.655Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-23T07:58:44.655Z", - "end": "2022-05-23T08:19:14.747Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T08:19:14.747Z", - "end": "2022-05-23T08:39:44.839Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "511619499053678668", - "start": "2022-06-05T15:42:43.643Z", - "end": "2022-06-05T16:02:04.172Z", - "events": [ - { - "start": "2022-06-05T15:42:43.643Z", - "end": "2022-06-05T15:46:35.748Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T15:46:35.748Z", - "end": "2022-06-05T15:50:27.853Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T15:50:27.853Z", - "end": "2022-06-05T15:54:19.958Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T15:54:19.958Z", - "end": "2022-06-05T15:58:12.063Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T15:58:12.063Z", - "end": "2022-06-05T16:02:04.168Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "625617695768437507", - "game": "554921822626381879", - "start": "2022-05-24T12:49:02.270Z", - "end": "2022-05-24T20:40:34.870Z", - "events": [ - { - "start": "2022-05-24T12:49:02.270Z", - "end": "2022-05-24T14:23:20.790Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T14:23:20.790Z", - "end": "2022-05-24T15:57:39.310Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T15:57:39.310Z", - "end": "2022-05-24T17:31:57.830Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T17:31:57.830Z", - "end": "2022-05-24T19:06:16.350Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T19:06:16.350Z", - "end": "2022-05-24T20:40:34.870Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "800318424708872602", - "game": "592976500802846750", - "start": "2022-06-04T22:47:58.121Z", - "end": "2022-06-05T05:58:27.408Z", - "events": [ - { - "start": "2022-06-04T22:47:58.121Z", - "end": "2022-06-05T02:23:12.764Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T02:23:12.764Z", - "end": "2022-06-05T05:58:27.407Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "550277544025522176", - "start": "2022-07-17T03:56:27.873Z", - "end": "2022-07-17T11:36:06.690Z", - "events": [ - { - "start": "2022-07-17T03:56:27.873Z", - "end": "2022-07-17T07:46:17.281Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T07:46:17.281Z", - "end": "2022-07-17T11:36:06.689Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "614380482620293151", - "start": "2022-08-01T02:33:04.961Z", - "end": "2022-08-01T09:48:44.233Z", - "events": [ - { - "start": "2022-08-01T02:33:04.961Z", - "end": "2022-08-01T04:21:59.779Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T04:21:59.779Z", - "end": "2022-08-01T06:10:54.597Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T06:10:54.597Z", - "end": "2022-08-01T07:59:49.415Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T07:59:49.415Z", - "end": "2022-08-01T09:48:44.233Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "558547388583772201", - "start": "2022-07-09T21:09:38.162Z", - "end": "2022-07-10T00:29:33.989Z", - "events": [ - { - "start": "2022-07-09T21:09:38.162Z", - "end": "2022-07-09T21:59:37.118Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T21:59:37.118Z", - "end": "2022-07-09T22:49:36.074Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T22:49:36.074Z", - "end": "2022-07-09T23:39:35.030Z", - "state": "IDLE" - }, - { - "start": "2022-07-09T23:39:35.030Z", - "end": "2022-07-10T00:29:33.986Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "958598056500699208", - "game": "512789343157485602", - "start": "2022-04-15T09:02:07.377Z", - "end": "2022-04-15T14:49:21.768Z", - "events": [ - { - "start": "2022-04-15T09:02:07.377Z", - "end": "2022-04-15T10:57:52.174Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T10:57:52.174Z", - "end": "2022-04-15T12:53:36.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-15T12:53:36.971Z", - "end": "2022-04-15T14:49:21.768Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "732542352358923773", - "game": "510199020782747732", - "start": "2022-07-25T03:37:10.102Z", - "end": "2022-07-25T04:26:34.261Z", - "events": [ - { - "start": "2022-07-25T03:37:10.102Z", - "end": "2022-07-25T04:01:52.181Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T04:01:52.181Z", - "end": "2022-07-25T04:26:34.260Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "452396069922968436", - "game": "572456126872944651", - "start": "2022-05-25T16:38:05.519Z", - "end": "2022-05-25T23:51:18.630Z", - "events": [ - { - "start": "2022-05-25T16:38:05.519Z", - "end": "2022-05-25T18:26:23.796Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T18:26:23.796Z", - "end": "2022-05-25T20:14:42.073Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T20:14:42.073Z", - "end": "2022-05-25T22:03:00.350Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T22:03:00.350Z", - "end": "2022-05-25T23:51:18.627Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "606163888052109312", - "start": "2022-07-23T00:32:54.100Z", - "end": "2022-07-23T06:42:53.582Z", - "events": [ - { - "start": "2022-07-23T00:32:54.100Z", - "end": "2022-07-23T01:46:53.996Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T01:46:53.996Z", - "end": "2022-07-23T03:00:53.892Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T03:00:53.892Z", - "end": "2022-07-23T04:14:53.788Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T04:14:53.788Z", - "end": "2022-07-23T05:28:53.684Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T05:28:53.684Z", - "end": "2022-07-23T06:42:53.580Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "606163888052109312", - "start": "2022-07-25T20:43:25.450Z", - "end": "2022-07-25T21:32:11.496Z", - "events": [ - { - "start": "2022-07-25T20:43:25.450Z", - "end": "2022-07-25T20:53:10.659Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T20:53:10.659Z", - "end": "2022-07-25T21:02:55.868Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-25T21:02:55.868Z", - "end": "2022-07-25T21:12:41.077Z", - "state": "IDLE" - }, - { - "start": "2022-07-25T21:12:41.077Z", - "end": "2022-07-25T21:22:26.286Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T21:22:26.286Z", - "end": "2022-07-25T21:32:11.495Z", - "state": "IDLE" - } - ] - }, - { - "user": "268139232276871676", - "game": "606163888052109312", - "start": "2022-05-24T20:32:34.610Z", - "end": "2022-05-24T20:56:49.821Z", - "events": [ - { - "start": "2022-05-24T20:32:34.610Z", - "end": "2022-05-24T20:44:42.215Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T20:44:42.215Z", - "end": "2022-05-24T20:56:49.820Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "535869836748783616", - "start": "2022-07-03T08:45:19.948Z", - "end": "2022-07-03T13:47:31.297Z", - "events": [ - { - "start": "2022-07-03T08:45:19.948Z", - "end": "2022-07-03T10:26:03.731Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T10:26:03.731Z", - "end": "2022-07-03T12:06:47.514Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T12:06:47.514Z", - "end": "2022-07-03T13:47:31.297Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "575412499399180288", - "start": "2022-06-05T05:54:46.612Z", - "end": "2022-06-05T15:22:44.604Z", - "events": [ - { - "start": "2022-06-05T05:54:46.612Z", - "end": "2022-06-05T09:04:05.942Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T09:04:05.942Z", - "end": "2022-06-05T12:13:25.272Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T12:13:25.272Z", - "end": "2022-06-05T15:22:44.602Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "575412499399180288", - "start": "2022-05-02T14:11:05.254Z", - "end": "2022-05-02T21:59:52.657Z", - "events": [ - { - "start": "2022-05-02T14:11:05.254Z", - "end": "2022-05-02T16:08:17.104Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T16:08:17.104Z", - "end": "2022-05-02T18:05:28.954Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T18:05:28.954Z", - "end": "2022-05-02T20:02:40.804Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T20:02:40.804Z", - "end": "2022-05-02T21:59:52.654Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "694111074254984301", - "game": "518088627234930688", - "start": "2022-05-25T14:27:47.651Z", - "end": "2022-05-25T19:51:51.502Z", - "events": [ - { - "start": "2022-05-25T14:27:47.651Z", - "end": "2022-05-25T15:48:48.613Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T15:48:48.613Z", - "end": "2022-05-25T17:09:49.575Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T17:09:49.575Z", - "end": "2022-05-25T18:30:50.537Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T18:30:50.537Z", - "end": "2022-05-25T19:51:51.499Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "549512435585908756", - "start": "2022-05-20T05:41:52.784Z", - "end": "2022-05-20T15:15:57.430Z", - "events": [ - { - "start": "2022-05-20T05:41:52.784Z", - "end": "2022-05-20T07:36:41.713Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T07:36:41.713Z", - "end": "2022-05-20T09:31:30.642Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-20T09:31:30.642Z", - "end": "2022-05-20T11:26:19.571Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-20T11:26:19.571Z", - "end": "2022-05-20T13:21:08.500Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-20T13:21:08.500Z", - "end": "2022-05-20T15:15:57.429Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "569008830701240340", - "start": "2022-06-10T06:35:24.026Z", - "end": "2022-06-10T10:57:04.377Z", - "events": [ - { - "start": "2022-06-10T06:35:24.026Z", - "end": "2022-06-10T08:02:37.476Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-10T08:02:37.476Z", - "end": "2022-06-10T09:29:50.926Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-10T09:29:50.926Z", - "end": "2022-06-10T10:57:04.376Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "700136079562375258", - "start": "2022-06-05T18:04:30.213Z", - "end": "2022-06-05T19:52:12.012Z", - "events": [ - { - "start": "2022-06-05T18:04:30.213Z", - "end": "2022-06-05T19:52:12.012Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "695941172337689379", - "game": "530454325214969866", - "start": "2022-06-24T01:33:19.321Z", - "end": "2022-06-24T06:22:39.255Z", - "events": [ - { - "start": "2022-06-24T01:33:19.321Z", - "end": "2022-06-24T02:45:39.304Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T02:45:39.304Z", - "end": "2022-06-24T03:57:59.287Z", - "state": "IDLE" - }, - { - "start": "2022-06-24T03:57:59.287Z", - "end": "2022-06-24T05:10:19.270Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T05:10:19.270Z", - "end": "2022-06-24T06:22:39.253Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "554921822626381879", - "start": "2022-04-24T09:33:29.823Z", - "end": "2022-04-24T16:52:48.848Z", - "events": [ - { - "start": "2022-04-24T09:33:29.823Z", - "end": "2022-04-24T11:01:21.628Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T11:01:21.628Z", - "end": "2022-04-24T12:29:13.433Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T12:29:13.433Z", - "end": "2022-04-24T13:57:05.238Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T13:57:05.238Z", - "end": "2022-04-24T15:24:57.043Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T15:24:57.043Z", - "end": "2022-04-24T16:52:48.848Z", - "state": "IDLE" - } - ] - }, - { - "user": "608700383891121851", - "game": "597860020935327787", - "start": "2022-05-17T13:55:05.182Z", - "end": "2022-05-17T17:16:02.527Z", - "events": [ - { - "start": "2022-05-17T13:55:05.182Z", - "end": "2022-05-17T15:02:04.297Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T15:02:04.297Z", - "end": "2022-05-17T16:09:03.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T16:09:03.412Z", - "end": "2022-05-17T17:16:02.527Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "495724335127362694", - "game": "535384357536399404", - "start": "2022-05-10T14:26:16.657Z", - "end": "2022-05-10T22:50:15.782Z", - "events": [ - { - "start": "2022-05-10T14:26:16.657Z", - "end": "2022-05-10T17:14:16.365Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T17:14:16.365Z", - "end": "2022-05-10T20:02:16.073Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T20:02:16.073Z", - "end": "2022-05-10T22:50:15.781Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "596421190780633864", - "game": "530454325214969866", - "start": "2022-05-14T20:14:02.953Z", - "end": "2022-05-15T03:30:59.375Z", - "events": [ - { - "start": "2022-05-14T20:14:02.953Z", - "end": "2022-05-14T22:39:41.760Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T22:39:41.760Z", - "end": "2022-05-15T01:05:20.567Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T01:05:20.567Z", - "end": "2022-05-15T03:30:59.374Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "519644267212177418", - "start": "2022-07-01T03:24:41.925Z", - "end": "2022-07-01T12:03:04.886Z", - "events": [ - { - "start": "2022-07-01T03:24:41.925Z", - "end": "2022-07-01T12:03:04.886Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "800318424708872602", - "game": "565341641427124244", - "start": "2022-07-21T03:16:51.042Z", - "end": "2022-07-21T10:27:02.821Z", - "events": [ - { - "start": "2022-07-21T03:16:51.042Z", - "end": "2022-07-21T10:27:02.821Z", - "state": "IDLE" - } - ] - }, - { - "user": "625617695768437507", - "game": "356875221078245376", - "start": "2022-05-23T19:13:14.282Z", - "end": "2022-05-24T01:52:00.208Z", - "events": [ - { - "start": "2022-05-23T19:13:14.282Z", - "end": "2022-05-23T20:32:59.467Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T20:32:59.467Z", - "end": "2022-05-23T21:52:44.652Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T21:52:44.652Z", - "end": "2022-05-23T23:12:29.837Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T23:12:29.837Z", - "end": "2022-05-24T00:32:15.022Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T00:32:15.022Z", - "end": "2022-05-24T01:52:00.207Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "788818750251007268", - "game": "510199020782747732", - "start": "2022-06-11T13:55:15.413Z", - "end": "2022-06-11T22:21:34.695Z", - "events": [ - { - "start": "2022-06-11T13:55:15.413Z", - "end": "2022-06-11T18:08:25.054Z", - "state": "IDLE" - }, - { - "start": "2022-06-11T18:08:25.054Z", - "end": "2022-06-11T22:21:34.695Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "549512435585908756", - "start": "2022-06-28T14:52:42.090Z", - "end": "2022-06-28T22:49:57.064Z", - "events": [ - { - "start": "2022-06-28T14:52:42.090Z", - "end": "2022-06-28T16:28:09.084Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T16:28:09.084Z", - "end": "2022-06-28T18:03:36.078Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T18:03:36.078Z", - "end": "2022-06-28T19:39:03.072Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T19:39:03.072Z", - "end": "2022-06-28T21:14:30.066Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T21:14:30.066Z", - "end": "2022-06-28T22:49:57.060Z", - "state": "IDLE" - } - ] - }, - { - "user": "510690749854514547", - "game": "560781100197216267", - "start": "2022-05-15T09:05:00.180Z", - "end": "2022-05-15T09:07:55.626Z", - "events": [ - { - "start": "2022-05-15T09:05:00.180Z", - "end": "2022-05-15T09:05:44.041Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T09:05:44.041Z", - "end": "2022-05-15T09:06:27.902Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T09:06:27.902Z", - "end": "2022-05-15T09:07:11.763Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T09:07:11.763Z", - "end": "2022-05-15T09:07:55.624Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "535371564850479134", - "start": "2022-07-15T03:27:36.134Z", - "end": "2022-07-15T08:56:39.955Z", - "events": [ - { - "start": "2022-07-15T03:27:36.134Z", - "end": "2022-07-15T04:33:24.898Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T04:33:24.898Z", - "end": "2022-07-15T05:39:13.662Z", - "state": "IDLE" - }, - { - "start": "2022-07-15T05:39:13.662Z", - "end": "2022-07-15T06:45:02.426Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T06:45:02.426Z", - "end": "2022-07-15T07:50:51.190Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T07:50:51.190Z", - "end": "2022-07-15T08:56:39.954Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "512699108809637890", - "start": "2022-06-21T22:41:58.205Z", - "end": "2022-06-22T07:23:31.949Z", - "events": [ - { - "start": "2022-06-21T22:41:58.205Z", - "end": "2022-06-22T03:02:45.077Z", - "state": "IDLE" - }, - { - "start": "2022-06-22T03:02:45.077Z", - "end": "2022-06-22T07:23:31.949Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "554921822626381879", - "start": "2022-06-08T05:10:53.904Z", - "end": "2022-06-08T09:04:57.922Z", - "events": [ - { - "start": "2022-06-08T05:10:53.904Z", - "end": "2022-06-08T05:57:42.707Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-08T05:57:42.707Z", - "end": "2022-06-08T06:44:31.510Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T06:44:31.510Z", - "end": "2022-06-08T07:31:20.313Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T07:31:20.313Z", - "end": "2022-06-08T08:18:09.116Z", - "state": "IDLE" - }, - { - "start": "2022-06-08T08:18:09.116Z", - "end": "2022-06-08T09:04:57.919Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "550277544025522176", - "start": "2022-07-10T03:35:08.070Z", - "end": "2022-07-10T10:14:48.150Z", - "events": [ - { - "start": "2022-07-10T03:35:08.070Z", - "end": "2022-07-10T10:14:48.150Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "774637841058278398", - "game": "597588168178663434", - "start": "2022-05-27T10:37:20.753Z", - "end": "2022-05-27T12:56:00.513Z", - "events": [ - { - "start": "2022-05-27T10:37:20.753Z", - "end": "2022-05-27T11:12:00.693Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T11:12:00.693Z", - "end": "2022-05-27T11:46:40.633Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T11:46:40.633Z", - "end": "2022-05-27T12:21:20.573Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T12:21:20.573Z", - "end": "2022-05-27T12:56:00.513Z", - "state": "IDLE" - } - ] - }, - { - "user": "922664752332558395", - "game": "554921822626381879", - "start": "2022-04-22T14:40:49.656Z", - "end": "2022-04-22T19:39:32.853Z", - "events": [ - { - "start": "2022-04-22T14:40:49.656Z", - "end": "2022-04-22T19:39:32.853Z", - "state": "IDLE" - } - ] - }, - { - "user": "596421190780633864", - "game": "606163888052109312", - "start": "2022-07-19T02:59:03.856Z", - "end": "2022-07-19T03:02:33.665Z", - "events": [ - { - "start": "2022-07-19T02:59:03.856Z", - "end": "2022-07-19T02:59:45.817Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T02:59:45.817Z", - "end": "2022-07-19T03:00:27.778Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T03:00:27.778Z", - "end": "2022-07-19T03:01:09.739Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T03:01:09.739Z", - "end": "2022-07-19T03:01:51.700Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T03:01:51.700Z", - "end": "2022-07-19T03:02:33.661Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "821608522568592914", - "game": "546175179542364160", - "start": "2022-07-24T14:22:26.487Z", - "end": "2022-07-24T21:25:35.545Z", - "events": [ - { - "start": "2022-07-24T14:22:26.487Z", - "end": "2022-07-24T16:43:29.506Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T16:43:29.506Z", - "end": "2022-07-24T19:04:32.525Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T19:04:32.525Z", - "end": "2022-07-24T21:25:35.544Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "514228311661084682", - "start": "2022-07-31T03:53:29.940Z", - "end": "2022-07-31T08:11:43.062Z", - "events": [ - { - "start": "2022-07-31T03:53:29.940Z", - "end": "2022-07-31T06:02:36.501Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T06:02:36.501Z", - "end": "2022-07-31T08:11:43.062Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "512789343157485602", - "start": "2022-06-21T09:36:19.193Z", - "end": "2022-06-21T19:12:27.383Z", - "events": [ - { - "start": "2022-06-21T09:36:19.193Z", - "end": "2022-06-21T12:48:21.923Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T12:48:21.923Z", - "end": "2022-06-21T16:00:24.653Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T16:00:24.653Z", - "end": "2022-06-21T19:12:27.383Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "700136079562375258", - "start": "2022-07-27T06:49:25.299Z", - "end": "2022-07-27T13:28:41.804Z", - "events": [ - { - "start": "2022-07-27T06:49:25.299Z", - "end": "2022-07-27T08:09:16.600Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T08:09:16.600Z", - "end": "2022-07-27T09:29:07.901Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T09:29:07.901Z", - "end": "2022-07-27T10:48:59.202Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T10:48:59.202Z", - "end": "2022-07-27T12:08:50.503Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T12:08:50.503Z", - "end": "2022-07-27T13:28:41.804Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "584489284152985092", - "game": "597588168178663434", - "start": "2022-07-20T06:52:31.340Z", - "end": "2022-07-20T16:01:20.171Z", - "events": [ - { - "start": "2022-07-20T06:52:31.340Z", - "end": "2022-07-20T11:26:55.755Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T11:26:55.755Z", - "end": "2022-07-20T16:01:20.170Z", - "state": "IDLE" - } - ] - }, - { - "user": "378424071510192465", - "game": "535384357536399404", - "start": "2022-05-17T22:04:54.432Z", - "end": "2022-05-18T07:55:40.077Z", - "events": [ - { - "start": "2022-05-17T22:04:54.432Z", - "end": "2022-05-18T07:55:40.077Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "958598056500699208", - "game": "569008830701240340", - "start": "2022-04-24T05:38:28.880Z", - "end": "2022-04-24T13:04:46.654Z", - "events": [ - { - "start": "2022-04-24T05:38:28.880Z", - "end": "2022-04-24T07:07:44.434Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-24T07:07:44.434Z", - "end": "2022-04-24T08:36:59.988Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T08:36:59.988Z", - "end": "2022-04-24T10:06:15.542Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T10:06:15.542Z", - "end": "2022-04-24T11:35:31.096Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T11:35:31.096Z", - "end": "2022-04-24T13:04:46.650Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "554921822626381879", - "start": "2022-05-14T03:59:06.515Z", - "end": "2022-05-14T13:47:25.346Z", - "events": [ - { - "start": "2022-05-14T03:59:06.515Z", - "end": "2022-05-14T05:56:46.281Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T05:56:46.281Z", - "end": "2022-05-14T07:54:26.047Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T07:54:26.047Z", - "end": "2022-05-14T09:52:05.813Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T09:52:05.813Z", - "end": "2022-05-14T11:49:45.579Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T11:49:45.579Z", - "end": "2022-05-14T13:47:25.345Z", - "state": "IDLE" - } - ] - }, - { - "user": "406850294055619241", - "game": "554573307161214977", - "start": "2022-07-29T03:13:11.416Z", - "end": "2022-07-29T04:58:09.963Z", - "events": [ - { - "start": "2022-07-29T03:13:11.416Z", - "end": "2022-07-29T04:58:09.963Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "540120593576493057", - "start": "2022-08-03T16:52:23.137Z", - "end": "2022-08-03T23:38:57.771Z", - "events": [ - { - "start": "2022-08-03T16:52:23.137Z", - "end": "2022-08-03T18:13:42.063Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T18:13:42.063Z", - "end": "2022-08-03T19:35:00.989Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T19:35:00.989Z", - "end": "2022-08-03T20:56:19.915Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T20:56:19.915Z", - "end": "2022-08-03T22:17:38.841Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T22:17:38.841Z", - "end": "2022-08-03T23:38:57.767Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "538658792298239054", - "game": "554921822626381879", - "start": "2022-07-03T16:24:26.056Z", - "end": "2022-07-03T18:43:18.472Z", - "events": [ - { - "start": "2022-07-03T16:24:26.056Z", - "end": "2022-07-03T17:33:52.264Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T17:33:52.264Z", - "end": "2022-07-03T18:43:18.472Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "540120593576493057", - "start": "2022-05-19T18:13:03.297Z", - "end": "2022-05-19T18:53:05.387Z", - "events": [ - { - "start": "2022-05-19T18:13:03.297Z", - "end": "2022-05-19T18:33:04.342Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T18:33:04.342Z", - "end": "2022-05-19T18:53:05.387Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "554573307161214977", - "start": "2022-05-21T02:42:39.451Z", - "end": "2022-05-21T10:45:30.437Z", - "events": [ - { - "start": "2022-05-21T02:42:39.451Z", - "end": "2022-05-21T05:23:36.446Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T05:23:36.446Z", - "end": "2022-05-21T08:04:33.441Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T08:04:33.441Z", - "end": "2022-05-21T10:45:30.436Z", - "state": "IDLE" - } - ] - }, - { - "user": "302714757313826277", - "game": "554573307161214977", - "start": "2022-06-04T10:24:08.717Z", - "end": "2022-06-04T12:05:14.128Z", - "events": [ - { - "start": "2022-06-04T10:24:08.717Z", - "end": "2022-06-04T12:05:14.128Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "510199020782747732", - "start": "2022-07-30T20:42:45.896Z", - "end": "2022-07-31T02:37:26.538Z", - "events": [ - { - "start": "2022-07-30T20:42:45.896Z", - "end": "2022-07-31T02:37:26.538Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "200801427122341912", - "game": "512789120234422301", - "start": "2022-06-24T09:12:04.899Z", - "end": "2022-06-24T15:00:55.666Z", - "events": [ - { - "start": "2022-06-24T09:12:04.899Z", - "end": "2022-06-24T10:39:17.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T10:39:17.590Z", - "end": "2022-06-24T12:06:30.281Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T12:06:30.281Z", - "end": "2022-06-24T13:33:42.972Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T13:33:42.972Z", - "end": "2022-06-24T15:00:55.663Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "467658810442648809", - "game": "528145079819436043", - "start": "2022-06-03T22:03:50.274Z", - "end": "2022-06-04T02:46:16.485Z", - "events": [ - { - "start": "2022-06-03T22:03:50.274Z", - "end": "2022-06-03T23:00:19.516Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T23:00:19.516Z", - "end": "2022-06-03T23:56:48.758Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T23:56:48.758Z", - "end": "2022-06-04T00:53:18.000Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T00:53:18.000Z", - "end": "2022-06-04T01:49:47.242Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T01:49:47.242Z", - "end": "2022-06-04T02:46:16.484Z", - "state": "IDLE" - } - ] - }, - { - "user": "213263852824749877", - "game": "614448244260339712", - "start": "2022-07-19T22:12:16.754Z", - "end": "2022-07-20T07:44:04.201Z", - "events": [ - { - "start": "2022-07-19T22:12:16.754Z", - "end": "2022-07-20T00:06:38.243Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T00:06:38.243Z", - "end": "2022-07-20T02:00:59.732Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T02:00:59.732Z", - "end": "2022-07-20T03:55:21.221Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T03:55:21.221Z", - "end": "2022-07-20T05:49:42.710Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T05:49:42.710Z", - "end": "2022-07-20T07:44:04.199Z", - "state": "IDLE" - } - ] - }, - { - "user": "329429619186234053", - "game": "558547388583772201", - "start": "2022-07-27T03:17:07.245Z", - "end": "2022-07-27T07:09:44.052Z", - "events": [ - { - "start": "2022-07-27T03:17:07.245Z", - "end": "2022-07-27T04:34:39.514Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T04:34:39.514Z", - "end": "2022-07-27T05:52:11.783Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T05:52:11.783Z", - "end": "2022-07-27T07:09:44.052Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "512789120234422301", - "start": "2022-06-24T16:32:16.789Z", - "end": "2022-06-24T20:42:59.589Z", - "events": [ - { - "start": "2022-06-24T16:32:16.789Z", - "end": "2022-06-24T20:42:59.589Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "542474758835535872", - "start": "2022-04-26T22:06:39.296Z", - "end": "2022-04-27T04:59:18.370Z", - "events": [ - { - "start": "2022-04-26T22:06:39.296Z", - "end": "2022-04-27T00:24:12.320Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T00:24:12.320Z", - "end": "2022-04-27T02:41:45.344Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T02:41:45.344Z", - "end": "2022-04-27T04:59:18.368Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "530454325214969866", - "start": "2022-08-06T14:47:20.903Z", - "end": "2022-08-06T22:01:11.372Z", - "events": [ - { - "start": "2022-08-06T14:47:20.903Z", - "end": "2022-08-06T16:35:48.520Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T16:35:48.520Z", - "end": "2022-08-06T18:24:16.137Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-06T18:24:16.137Z", - "end": "2022-08-06T20:12:43.754Z", - "state": "IDLE" - }, - { - "start": "2022-08-06T20:12:43.754Z", - "end": "2022-08-06T22:01:11.371Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "558547388583772201", - "start": "2022-05-27T05:21:20.528Z", - "end": "2022-05-27T10:12:44.411Z", - "events": [ - { - "start": "2022-05-27T05:21:20.528Z", - "end": "2022-05-27T06:19:37.304Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T06:19:37.304Z", - "end": "2022-05-27T07:17:54.080Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T07:17:54.080Z", - "end": "2022-05-27T08:16:10.856Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T08:16:10.856Z", - "end": "2022-05-27T09:14:27.632Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T09:14:27.632Z", - "end": "2022-05-27T10:12:44.408Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "546175179542364160", - "start": "2022-05-09T04:28:05.389Z", - "end": "2022-05-09T11:53:14.174Z", - "events": [ - { - "start": "2022-05-09T04:28:05.389Z", - "end": "2022-05-09T08:10:39.781Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-09T08:10:39.781Z", - "end": "2022-05-09T11:53:14.173Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "542075586886107149", - "start": "2022-05-03T20:57:29.250Z", - "end": "2022-05-04T06:55:31.430Z", - "events": [ - { - "start": "2022-05-03T20:57:29.250Z", - "end": "2022-05-03T22:57:05.686Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T22:57:05.686Z", - "end": "2022-05-04T00:56:42.122Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T00:56:42.122Z", - "end": "2022-05-04T02:56:18.558Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-04T02:56:18.558Z", - "end": "2022-05-04T04:55:54.994Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T04:55:54.994Z", - "end": "2022-05-04T06:55:31.430Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "137536289023624121", - "game": "560781100197216267", - "start": "2022-05-31T07:43:42.898Z", - "end": "2022-05-31T15:44:34.234Z", - "events": [ - { - "start": "2022-05-31T07:43:42.898Z", - "end": "2022-05-31T09:43:55.732Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T09:43:55.732Z", - "end": "2022-05-31T11:44:08.566Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T11:44:08.566Z", - "end": "2022-05-31T13:44:21.400Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T13:44:21.400Z", - "end": "2022-05-31T15:44:34.234Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "123137660023366590", - "game": "519644368735567873", - "start": "2022-05-06T04:22:22.957Z", - "end": "2022-05-06T08:48:40.650Z", - "events": [ - { - "start": "2022-05-06T04:22:22.957Z", - "end": "2022-05-06T05:51:08.854Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T05:51:08.854Z", - "end": "2022-05-06T07:19:54.751Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T07:19:54.751Z", - "end": "2022-05-06T08:48:40.648Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "788818750251007268", - "game": "512498684211232768", - "start": "2022-07-10T10:45:34.248Z", - "end": "2022-07-10T11:17:15.884Z", - "events": [ - { - "start": "2022-07-10T10:45:34.248Z", - "end": "2022-07-10T10:51:54.575Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T10:51:54.575Z", - "end": "2022-07-10T10:58:14.902Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T10:58:14.902Z", - "end": "2022-07-10T11:04:35.229Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T11:04:35.229Z", - "end": "2022-07-10T11:10:55.556Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T11:10:55.556Z", - "end": "2022-07-10T11:17:15.883Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "285410867718320291", - "game": "512789343157485602", - "start": "2022-07-10T17:22:35.618Z", - "end": "2022-07-10T20:28:38.332Z", - "events": [ - { - "start": "2022-07-10T17:22:35.618Z", - "end": "2022-07-10T18:24:36.522Z", - "state": "IDLE" - }, - { - "start": "2022-07-10T18:24:36.522Z", - "end": "2022-07-10T19:26:37.426Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T19:26:37.426Z", - "end": "2022-07-10T20:28:38.330Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "535869836748783616", - "start": "2022-07-07T21:07:34.685Z", - "end": "2022-07-08T06:59:34.985Z", - "events": [ - { - "start": "2022-07-07T21:07:34.685Z", - "end": "2022-07-08T00:24:54.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T00:24:54.785Z", - "end": "2022-07-08T03:42:14.885Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T03:42:14.885Z", - "end": "2022-07-08T06:59:34.985Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "512789427462995988", - "start": "2022-05-24T19:35:02.224Z", - "end": "2022-05-24T23:10:28.674Z", - "events": [ - { - "start": "2022-05-24T19:35:02.224Z", - "end": "2022-05-24T20:46:51.040Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T20:46:51.040Z", - "end": "2022-05-24T21:58:39.856Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T21:58:39.856Z", - "end": "2022-05-24T23:10:28.672Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "512789343157485602", - "start": "2022-05-18T04:24:19.519Z", - "end": "2022-05-18T07:16:18.576Z", - "events": [ - { - "start": "2022-05-18T04:24:19.519Z", - "end": "2022-05-18T05:21:39.204Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T05:21:39.204Z", - "end": "2022-05-18T06:18:58.889Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-18T06:18:58.889Z", - "end": "2022-05-18T07:16:18.574Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "549512435585908756", - "start": "2022-07-20T23:39:53.768Z", - "end": "2022-07-21T02:01:02.396Z", - "events": [ - { - "start": "2022-07-20T23:39:53.768Z", - "end": "2022-07-21T00:15:10.925Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T00:15:10.925Z", - "end": "2022-07-21T00:50:28.082Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T00:50:28.082Z", - "end": "2022-07-21T01:25:45.239Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T01:25:45.239Z", - "end": "2022-07-21T02:01:02.396Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "597860020935327787", - "start": "2022-04-24T12:54:04.197Z", - "end": "2022-04-24T22:51:26.326Z", - "events": [ - { - "start": "2022-04-24T12:54:04.197Z", - "end": "2022-04-24T15:23:24.729Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T15:23:24.729Z", - "end": "2022-04-24T17:52:45.261Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T17:52:45.261Z", - "end": "2022-04-24T20:22:05.793Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-24T20:22:05.793Z", - "end": "2022-04-24T22:51:26.325Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "549512435585908756", - "start": "2022-05-17T20:45:39.657Z", - "end": "2022-05-17T22:28:58.274Z", - "events": [ - { - "start": "2022-05-17T20:45:39.657Z", - "end": "2022-05-17T21:11:29.311Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T21:11:29.311Z", - "end": "2022-05-17T21:37:18.965Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T21:37:18.965Z", - "end": "2022-05-17T22:03:08.619Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T22:03:08.619Z", - "end": "2022-05-17T22:28:58.273Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "269014914705953013", - "game": "510199020782747732", - "start": "2022-07-07T13:20:03.272Z", - "end": "2022-07-07T21:29:24.955Z", - "events": [ - { - "start": "2022-07-07T13:20:03.272Z", - "end": "2022-07-07T21:29:24.955Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "540120593576493057", - "start": "2022-05-17T17:17:25.588Z", - "end": "2022-05-17T21:27:37.411Z", - "events": [ - { - "start": "2022-05-17T17:17:25.588Z", - "end": "2022-05-17T19:22:31.499Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T19:22:31.499Z", - "end": "2022-05-17T21:27:37.410Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "821608522568592914", - "game": "514228311661084682", - "start": "2022-08-03T12:40:26.517Z", - "end": "2022-08-03T21:29:16.565Z", - "events": [ - { - "start": "2022-08-03T12:40:26.517Z", - "end": "2022-08-03T14:52:39.029Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-03T14:52:39.029Z", - "end": "2022-08-03T17:04:51.541Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T17:04:51.541Z", - "end": "2022-08-03T19:17:04.053Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T19:17:04.053Z", - "end": "2022-08-03T21:29:16.565Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "732542352358923773", - "game": "512501896896970762", - "start": "2022-08-04T00:47:34.843Z", - "end": "2022-08-04T06:31:57.543Z", - "events": [ - { - "start": "2022-08-04T00:47:34.843Z", - "end": "2022-08-04T01:56:27.383Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T01:56:27.383Z", - "end": "2022-08-04T03:05:19.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T03:05:19.923Z", - "end": "2022-08-04T04:14:12.463Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T04:14:12.463Z", - "end": "2022-08-04T05:23:05.003Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-04T05:23:05.003Z", - "end": "2022-08-04T06:31:57.543Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "546175179542364160", - "start": "2022-06-24T14:50:49.737Z", - "end": "2022-06-24T21:11:57.959Z", - "events": [ - { - "start": "2022-06-24T14:50:49.737Z", - "end": "2022-06-24T21:11:57.959Z", - "state": "IDLE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512501896896970762", - "start": "2022-05-15T04:21:54.033Z", - "end": "2022-05-15T07:38:41.615Z", - "events": [ - { - "start": "2022-05-15T04:21:54.033Z", - "end": "2022-05-15T06:00:17.824Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-15T06:00:17.824Z", - "end": "2022-05-15T07:38:41.615Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "542075586886107149", - "start": "2022-05-01T16:10:14.496Z", - "end": "2022-05-02T01:26:05.336Z", - "events": [ - { - "start": "2022-05-01T16:10:14.496Z", - "end": "2022-05-02T01:26:05.336Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "346608907417001845", - "game": "592976500802846750", - "start": "2022-06-25T03:22:05.255Z", - "end": "2022-06-25T09:53:38.158Z", - "events": [ - { - "start": "2022-06-25T03:22:05.255Z", - "end": "2022-06-25T04:40:23.835Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T04:40:23.835Z", - "end": "2022-06-25T05:58:42.415Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T05:58:42.415Z", - "end": "2022-06-25T07:17:00.995Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T07:17:00.995Z", - "end": "2022-06-25T08:35:19.575Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T08:35:19.575Z", - "end": "2022-06-25T09:53:38.155Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "520453007578628124", - "start": "2022-08-02T05:49:38.112Z", - "end": "2022-08-02T06:43:42.632Z", - "events": [ - { - "start": "2022-08-02T05:49:38.112Z", - "end": "2022-08-02T06:00:27.016Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T06:00:27.016Z", - "end": "2022-08-02T06:11:15.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T06:11:15.920Z", - "end": "2022-08-02T06:22:04.824Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T06:22:04.824Z", - "end": "2022-08-02T06:32:53.728Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T06:32:53.728Z", - "end": "2022-08-02T06:43:42.632Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "356875221078245376", - "start": "2022-06-20T10:59:09.482Z", - "end": "2022-06-20T15:54:44.639Z", - "events": [ - { - "start": "2022-06-20T10:59:09.482Z", - "end": "2022-06-20T11:58:16.513Z", - "state": "IDLE" - }, - { - "start": "2022-06-20T11:58:16.513Z", - "end": "2022-06-20T12:57:23.544Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T12:57:23.544Z", - "end": "2022-06-20T13:56:30.575Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T13:56:30.575Z", - "end": "2022-06-20T14:55:37.606Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T14:55:37.606Z", - "end": "2022-06-20T15:54:44.637Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "542075586886107149", - "start": "2022-06-02T03:06:58.110Z", - "end": "2022-06-02T11:06:06.465Z", - "events": [ - { - "start": "2022-06-02T03:06:58.110Z", - "end": "2022-06-02T11:06:06.465Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786028561315351452", - "game": "512501896896970762", - "start": "2022-05-30T07:59:15.930Z", - "end": "2022-05-30T11:00:44.999Z", - "events": [ - { - "start": "2022-05-30T07:59:15.930Z", - "end": "2022-05-30T08:59:45.619Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T08:59:45.619Z", - "end": "2022-05-30T10:00:15.308Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T10:00:15.308Z", - "end": "2022-05-30T11:00:44.997Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "774637841058278398", - "game": "511619499053678668", - "start": "2022-07-03T16:40:55.762Z", - "end": "2022-07-03T21:11:41.930Z", - "events": [ - { - "start": "2022-07-03T16:40:55.762Z", - "end": "2022-07-03T21:11:41.930Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "264503060524837708", - "game": "614380482620293151", - "start": "2022-05-17T10:13:05.512Z", - "end": "2022-05-17T12:28:14.127Z", - "events": [ - { - "start": "2022-05-17T10:13:05.512Z", - "end": "2022-05-17T10:58:08.383Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T10:58:08.383Z", - "end": "2022-05-17T11:43:11.254Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T11:43:11.254Z", - "end": "2022-05-17T12:28:14.125Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "535384357536399404", - "start": "2022-07-08T06:52:28.818Z", - "end": "2022-07-08T12:47:42.991Z", - "events": [ - { - "start": "2022-07-08T06:52:28.818Z", - "end": "2022-07-08T08:03:31.652Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T08:03:31.652Z", - "end": "2022-07-08T09:14:34.486Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T09:14:34.486Z", - "end": "2022-07-08T10:25:37.320Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T10:25:37.320Z", - "end": "2022-07-08T11:36:40.154Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T11:36:40.154Z", - "end": "2022-07-08T12:47:42.988Z", - "state": "IDLE" - } - ] - }, - { - "user": "394970121077311909", - "game": "528145079819436043", - "start": "2022-07-29T16:38:30.712Z", - "end": "2022-07-29T22:14:32.217Z", - "events": [ - { - "start": "2022-07-29T16:38:30.712Z", - "end": "2022-07-29T17:45:43.013Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T17:45:43.013Z", - "end": "2022-07-29T18:52:55.314Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T18:52:55.314Z", - "end": "2022-07-29T20:00:07.615Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T20:00:07.615Z", - "end": "2022-07-29T21:07:19.916Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T21:07:19.916Z", - "end": "2022-07-29T22:14:32.217Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "731522398939920723", - "game": "592976500802846750", - "start": "2022-06-05T20:49:30.025Z", - "end": "2022-06-05T21:06:53.491Z", - "events": [ - { - "start": "2022-06-05T20:49:30.025Z", - "end": "2022-06-05T20:55:17.847Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T20:55:17.847Z", - "end": "2022-06-05T21:01:05.669Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T21:01:05.669Z", - "end": "2022-06-05T21:06:53.491Z", - "state": "IDLE" - } - ] - }, - { - "user": "951131768137733554", - "game": "597588168178663434", - "start": "2022-07-30T12:25:31.310Z", - "end": "2022-07-30T15:40:51.260Z", - "events": [ - { - "start": "2022-07-30T12:25:31.310Z", - "end": "2022-07-30T13:30:37.960Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T13:30:37.960Z", - "end": "2022-07-30T14:35:44.610Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T14:35:44.610Z", - "end": "2022-07-30T15:40:51.260Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "530539422724200800", - "game": "554573307161214977", - "start": "2022-06-23T12:27:45.646Z", - "end": "2022-06-23T19:16:12.346Z", - "events": [ - { - "start": "2022-06-23T12:27:45.646Z", - "end": "2022-06-23T19:16:12.346Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "346608907417001845", - "game": "575412499399180288", - "start": "2022-07-30T22:41:01.913Z", - "end": "2022-07-31T03:18:42.609Z", - "events": [ - { - "start": "2022-07-30T22:41:01.913Z", - "end": "2022-07-30T23:36:34.052Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T23:36:34.052Z", - "end": "2022-07-31T00:32:06.191Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T00:32:06.191Z", - "end": "2022-07-31T01:27:38.330Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T01:27:38.330Z", - "end": "2022-07-31T02:23:10.469Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T02:23:10.469Z", - "end": "2022-07-31T03:18:42.608Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "658550407298256890", - "game": "576482762446602270", - "start": "2022-05-23T13:14:48.524Z", - "end": "2022-05-23T18:38:00.220Z", - "events": [ - { - "start": "2022-05-23T13:14:48.524Z", - "end": "2022-05-23T15:02:32.422Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T15:02:32.422Z", - "end": "2022-05-23T16:50:16.320Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T16:50:16.320Z", - "end": "2022-05-23T18:38:00.218Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "747381962738157784", - "game": "614380482620293151", - "start": "2022-07-02T17:27:55.195Z", - "end": "2022-07-02T23:32:45.144Z", - "events": [ - { - "start": "2022-07-02T17:27:55.195Z", - "end": "2022-07-02T20:30:20.169Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T20:30:20.169Z", - "end": "2022-07-02T23:32:45.143Z", - "state": "IDLE" - } - ] - }, - { - "user": "686825797960121847", - "game": "542474758835535872", - "start": "2022-04-21T13:13:11.984Z", - "end": "2022-04-21T22:51:52.441Z", - "events": [ - { - "start": "2022-04-21T13:13:11.984Z", - "end": "2022-04-21T15:37:52.098Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T15:37:52.098Z", - "end": "2022-04-21T18:02:32.212Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T18:02:32.212Z", - "end": "2022-04-21T20:27:12.326Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T20:27:12.326Z", - "end": "2022-04-21T22:51:52.440Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "540120593576493057", - "start": "2022-07-24T16:20:49.563Z", - "end": "2022-07-24T22:55:17.572Z", - "events": [ - { - "start": "2022-07-24T16:20:49.563Z", - "end": "2022-07-24T22:55:17.572Z", - "state": "IDLE" - } - ] - }, - { - "user": "123137660023366590", - "game": "535371564850479134", - "start": "2022-05-04T17:32:52.297Z", - "end": "2022-05-05T03:08:29.283Z", - "events": [ - { - "start": "2022-05-04T17:32:52.297Z", - "end": "2022-05-05T03:08:29.283Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "542075586886107149", - "start": "2022-07-11T10:39:30.830Z", - "end": "2022-07-11T11:01:40.441Z", - "events": [ - { - "start": "2022-07-11T10:39:30.830Z", - "end": "2022-07-11T10:46:54.033Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T10:46:54.033Z", - "end": "2022-07-11T10:54:17.236Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T10:54:17.236Z", - "end": "2022-07-11T11:01:40.439Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "101572134856427564", - "game": "520453007578628124", - "start": "2022-07-18T19:11:35.893Z", - "end": "2022-07-18T21:48:43.698Z", - "events": [ - { - "start": "2022-07-18T19:11:35.893Z", - "end": "2022-07-18T21:48:43.698Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "554573307161214977", - "start": "2022-05-03T01:37:01.477Z", - "end": "2022-05-03T07:45:26.771Z", - "events": [ - { - "start": "2022-05-03T01:37:01.477Z", - "end": "2022-05-03T07:45:26.771Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "512498684211232768", - "start": "2022-06-25T15:59:36.792Z", - "end": "2022-06-26T01:17:37.330Z", - "events": [ - { - "start": "2022-06-25T15:59:36.792Z", - "end": "2022-06-25T19:05:36.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T19:05:36.971Z", - "end": "2022-06-25T22:11:37.150Z", - "state": "IDLE" - }, - { - "start": "2022-06-25T22:11:37.150Z", - "end": "2022-06-26T01:17:37.329Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302714757313826277", - "game": "597860020935327787", - "start": "2022-08-06T09:06:54.320Z", - "end": "2022-08-06T11:25:49.092Z", - "events": [ - { - "start": "2022-08-06T09:06:54.320Z", - "end": "2022-08-06T11:25:49.092Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "878082205985098233", - "game": "514228311661084682", - "start": "2022-07-23T02:58:41.434Z", - "end": "2022-07-23T10:08:36.930Z", - "events": [ - { - "start": "2022-07-23T02:58:41.434Z", - "end": "2022-07-23T04:24:40.533Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T04:24:40.533Z", - "end": "2022-07-23T05:50:39.632Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T05:50:39.632Z", - "end": "2022-07-23T07:16:38.731Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T07:16:38.731Z", - "end": "2022-07-23T08:42:37.830Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T08:42:37.830Z", - "end": "2022-07-23T10:08:36.929Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "514228311661084682", - "start": "2022-07-21T11:16:20.361Z", - "end": "2022-07-21T11:47:44.915Z", - "events": [ - { - "start": "2022-07-21T11:16:20.361Z", - "end": "2022-07-21T11:26:48.545Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T11:26:48.545Z", - "end": "2022-07-21T11:37:16.729Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T11:37:16.729Z", - "end": "2022-07-21T11:47:44.913Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "535371564850479134", - "start": "2022-04-19T18:33:24.016Z", - "end": "2022-04-19T21:01:23.755Z", - "events": [ - { - "start": "2022-04-19T18:33:24.016Z", - "end": "2022-04-19T19:47:23.885Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T19:47:23.885Z", - "end": "2022-04-19T21:01:23.754Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "725502702868293700", - "game": "565341641427124244", - "start": "2022-05-21T21:44:57.332Z", - "end": "2022-05-22T01:36:48.777Z", - "events": [ - { - "start": "2022-05-21T21:44:57.332Z", - "end": "2022-05-22T01:36:48.777Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "911848869344266044", - "game": "569008830701240340", - "start": "2022-07-11T11:21:55.208Z", - "end": "2022-07-11T20:32:41.413Z", - "events": [ - { - "start": "2022-07-11T11:21:55.208Z", - "end": "2022-07-11T13:12:04.449Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T13:12:04.449Z", - "end": "2022-07-11T15:02:13.690Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T15:02:13.690Z", - "end": "2022-07-11T16:52:22.931Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T16:52:22.931Z", - "end": "2022-07-11T18:42:32.172Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T18:42:32.172Z", - "end": "2022-07-11T20:32:41.413Z", - "state": "IDLE" - } - ] - }, - { - "user": "430732724825949756", - "game": "540120593576493057", - "start": "2022-05-08T12:49:29.935Z", - "end": "2022-05-08T20:41:25.245Z", - "events": [ - { - "start": "2022-05-08T12:49:29.935Z", - "end": "2022-05-08T16:45:27.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T16:45:27.590Z", - "end": "2022-05-08T20:41:25.245Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "774637841058278398", - "game": "512789427462995988", - "start": "2022-05-10T07:00:08.641Z", - "end": "2022-05-10T16:21:25.325Z", - "events": [ - { - "start": "2022-05-10T07:00:08.641Z", - "end": "2022-05-10T09:20:27.812Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T09:20:27.812Z", - "end": "2022-05-10T11:40:46.983Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T11:40:46.983Z", - "end": "2022-05-10T14:01:06.154Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T14:01:06.154Z", - "end": "2022-05-10T16:21:25.325Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "606163888052109312", - "start": "2022-06-15T10:53:54.240Z", - "end": "2022-06-15T15:29:52.064Z", - "events": [ - { - "start": "2022-06-15T10:53:54.240Z", - "end": "2022-06-15T12:02:53.696Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T12:02:53.696Z", - "end": "2022-06-15T13:11:53.152Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T13:11:53.152Z", - "end": "2022-06-15T14:20:52.608Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T14:20:52.608Z", - "end": "2022-06-15T15:29:52.064Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "519644368735567873", - "start": "2022-05-29T22:26:32.688Z", - "end": "2022-05-30T04:10:37.885Z", - "events": [ - { - "start": "2022-05-29T22:26:32.688Z", - "end": "2022-05-29T23:52:33.987Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T23:52:33.987Z", - "end": "2022-05-30T01:18:35.286Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T01:18:35.286Z", - "end": "2022-05-30T02:44:36.585Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T02:44:36.585Z", - "end": "2022-05-30T04:10:37.884Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "713444659295913502", - "game": "558547388583772201", - "start": "2022-04-29T20:35:01.500Z", - "end": "2022-04-30T06:33:57.965Z", - "events": [ - { - "start": "2022-04-29T20:35:01.500Z", - "end": "2022-04-29T23:54:40.321Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-29T23:54:40.321Z", - "end": "2022-04-30T03:14:19.142Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-30T03:14:19.142Z", - "end": "2022-04-30T06:33:57.963Z", - "state": "IDLE" - } - ] - }, - { - "user": "768513326430993269", - "game": "550277544025522176", - "start": "2022-04-29T11:47:49.463Z", - "end": "2022-04-29T17:48:52.318Z", - "events": [ - { - "start": "2022-04-29T11:47:49.463Z", - "end": "2022-04-29T14:48:20.890Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T14:48:20.890Z", - "end": "2022-04-29T17:48:52.317Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "101572134856427564", - "game": "512789427462995988", - "start": "2022-07-26T12:03:26.434Z", - "end": "2022-07-26T15:13:49.865Z", - "events": [ - { - "start": "2022-07-26T12:03:26.434Z", - "end": "2022-07-26T15:13:49.865Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "508057374875975682", - "start": "2022-04-26T05:48:23.456Z", - "end": "2022-04-26T09:49:23.722Z", - "events": [ - { - "start": "2022-04-26T05:48:23.456Z", - "end": "2022-04-26T06:48:38.522Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T06:48:38.522Z", - "end": "2022-04-26T07:48:53.588Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T07:48:53.588Z", - "end": "2022-04-26T08:49:08.654Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T08:49:08.654Z", - "end": "2022-04-26T09:49:23.720Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "512699108809637890", - "start": "2022-05-16T22:08:32.686Z", - "end": "2022-05-16T23:38:09.287Z", - "events": [ - { - "start": "2022-05-16T22:08:32.686Z", - "end": "2022-05-16T22:26:28.006Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T22:26:28.006Z", - "end": "2022-05-16T22:44:23.326Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T22:44:23.326Z", - "end": "2022-05-16T23:02:18.646Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-16T23:02:18.646Z", - "end": "2022-05-16T23:20:13.966Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T23:20:13.966Z", - "end": "2022-05-16T23:38:09.286Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "500919588166575890", - "game": "512501896896970762", - "start": "2022-05-26T07:32:17.727Z", - "end": "2022-05-26T16:58:11.183Z", - "events": [ - { - "start": "2022-05-26T07:32:17.727Z", - "end": "2022-05-26T09:25:28.418Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-26T09:25:28.418Z", - "end": "2022-05-26T11:18:39.109Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T11:18:39.109Z", - "end": "2022-05-26T13:11:49.800Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-26T13:11:49.800Z", - "end": "2022-05-26T15:05:00.491Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T15:05:00.491Z", - "end": "2022-05-26T16:58:11.182Z", - "state": "IDLE" - } - ] - }, - { - "user": "623295654897148670", - "game": "518088627234930688", - "start": "2022-07-20T19:41:56.593Z", - "end": "2022-07-21T04:04:42.658Z", - "events": [ - { - "start": "2022-07-20T19:41:56.593Z", - "end": "2022-07-20T21:47:38.109Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T21:47:38.109Z", - "end": "2022-07-20T23:53:19.625Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T23:53:19.625Z", - "end": "2022-07-21T01:59:01.141Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T01:59:01.141Z", - "end": "2022-07-21T04:04:42.657Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "572456126872944651", - "start": "2022-06-15T20:53:26.444Z", - "end": "2022-06-15T23:52:43.680Z", - "events": [ - { - "start": "2022-06-15T20:53:26.444Z", - "end": "2022-06-15T21:38:15.753Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T21:38:15.753Z", - "end": "2022-06-15T22:23:05.062Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T22:23:05.062Z", - "end": "2022-06-15T23:07:54.371Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T23:07:54.371Z", - "end": "2022-06-15T23:52:43.680Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "565341641427124244", - "start": "2022-05-16T06:46:01.463Z", - "end": "2022-05-16T14:56:40.158Z", - "events": [ - { - "start": "2022-05-16T06:46:01.463Z", - "end": "2022-05-16T09:29:34.361Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-16T09:29:34.361Z", - "end": "2022-05-16T12:13:07.259Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T12:13:07.259Z", - "end": "2022-05-16T14:56:40.157Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "565341641427124244", - "start": "2022-07-23T16:18:13.861Z", - "end": "2022-07-24T00:13:10.417Z", - "events": [ - { - "start": "2022-07-23T16:18:13.861Z", - "end": "2022-07-23T20:15:42.139Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T20:15:42.139Z", - "end": "2022-07-24T00:13:10.417Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "395281349698024181", - "game": "523154344187789312", - "start": "2022-06-19T10:09:12.297Z", - "end": "2022-06-19T14:09:53.903Z", - "events": [ - { - "start": "2022-06-19T10:09:12.297Z", - "end": "2022-06-19T14:09:53.903Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "713444659295913502", - "game": "514228311661084682", - "start": "2022-07-07T03:48:43.300Z", - "end": "2022-07-07T08:14:54.295Z", - "events": [ - { - "start": "2022-07-07T03:48:43.300Z", - "end": "2022-07-07T08:14:54.295Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "520462578061803588", - "start": "2022-05-15T03:33:59.799Z", - "end": "2022-05-15T09:29:30.147Z", - "events": [ - { - "start": "2022-05-15T03:33:59.799Z", - "end": "2022-05-15T05:02:52.386Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T05:02:52.386Z", - "end": "2022-05-15T06:31:44.973Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T06:31:44.973Z", - "end": "2022-05-15T08:00:37.560Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T08:00:37.560Z", - "end": "2022-05-15T09:29:30.147Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "520462578061803588", - "start": "2022-06-24T15:10:50.584Z", - "end": "2022-06-24T23:30:38.843Z", - "events": [ - { - "start": "2022-06-24T15:10:50.584Z", - "end": "2022-06-24T19:20:44.713Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T19:20:44.713Z", - "end": "2022-06-24T23:30:38.842Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "597860020935327787", - "start": "2022-04-29T15:11:41.921Z", - "end": "2022-04-29T21:49:06.231Z", - "events": [ - { - "start": "2022-04-29T15:11:41.921Z", - "end": "2022-04-29T17:24:10.024Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T17:24:10.024Z", - "end": "2022-04-29T19:36:38.127Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T19:36:38.127Z", - "end": "2022-04-29T21:49:06.230Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "569253958967885828", - "start": "2022-05-31T16:00:28.608Z", - "end": "2022-05-31T22:33:53.030Z", - "events": [ - { - "start": "2022-05-31T16:00:28.608Z", - "end": "2022-05-31T17:19:09.492Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T17:19:09.492Z", - "end": "2022-05-31T18:37:50.376Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T18:37:50.376Z", - "end": "2022-05-31T19:56:31.260Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T19:56:31.260Z", - "end": "2022-05-31T21:15:12.144Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T21:15:12.144Z", - "end": "2022-05-31T22:33:53.028Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "553697181249437716", - "start": "2022-05-07T15:05:37.166Z", - "end": "2022-05-07T22:34:07.380Z", - "events": [ - { - "start": "2022-05-07T15:05:37.166Z", - "end": "2022-05-07T22:34:07.380Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "732542352358923773", - "game": "540120593576493057", - "start": "2022-05-09T00:37:42.814Z", - "end": "2022-05-09T04:03:14.056Z", - "events": [ - { - "start": "2022-05-09T00:37:42.814Z", - "end": "2022-05-09T01:18:49.062Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T01:18:49.062Z", - "end": "2022-05-09T01:59:55.310Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T01:59:55.310Z", - "end": "2022-05-09T02:41:01.558Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T02:41:01.558Z", - "end": "2022-05-09T03:22:07.806Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-09T03:22:07.806Z", - "end": "2022-05-09T04:03:14.054Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "553697181249437716", - "start": "2022-05-18T11:21:56.233Z", - "end": "2022-05-18T20:50:52.229Z", - "events": [ - { - "start": "2022-05-18T11:21:56.233Z", - "end": "2022-05-18T16:06:24.231Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T16:06:24.231Z", - "end": "2022-05-18T20:50:52.229Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "700136079562375258", - "start": "2022-05-09T19:29:39.994Z", - "end": "2022-05-09T20:43:28.896Z", - "events": [ - { - "start": "2022-05-09T19:29:39.994Z", - "end": "2022-05-09T19:44:25.774Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-09T19:44:25.774Z", - "end": "2022-05-09T19:59:11.554Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T19:59:11.554Z", - "end": "2022-05-09T20:13:57.334Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T20:13:57.334Z", - "end": "2022-05-09T20:28:43.114Z", - "state": "IDLE" - }, - { - "start": "2022-05-09T20:28:43.114Z", - "end": "2022-05-09T20:43:28.894Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "713444659295913502", - "game": "569253958967885828", - "start": "2022-07-18T06:21:02.575Z", - "end": "2022-07-18T12:43:23.211Z", - "events": [ - { - "start": "2022-07-18T06:21:02.575Z", - "end": "2022-07-18T07:56:37.734Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T07:56:37.734Z", - "end": "2022-07-18T09:32:12.893Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T09:32:12.893Z", - "end": "2022-07-18T11:07:48.052Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T11:07:48.052Z", - "end": "2022-07-18T12:43:23.211Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "791267126190249625", - "game": "519644368735567873", - "start": "2022-07-15T08:35:32.878Z", - "end": "2022-07-15T08:54:27.030Z", - "events": [ - { - "start": "2022-07-15T08:35:32.878Z", - "end": "2022-07-15T08:40:16.416Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-15T08:40:16.416Z", - "end": "2022-07-15T08:44:59.954Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T08:44:59.954Z", - "end": "2022-07-15T08:49:43.492Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-15T08:49:43.492Z", - "end": "2022-07-15T08:54:27.030Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "510690749854514547", - "game": "588739017718366208", - "start": "2022-04-29T11:52:47.003Z", - "end": "2022-04-29T13:17:21.861Z", - "events": [ - { - "start": "2022-04-29T11:52:47.003Z", - "end": "2022-04-29T12:20:58.622Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T12:20:58.622Z", - "end": "2022-04-29T12:49:10.241Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-29T12:49:10.241Z", - "end": "2022-04-29T13:17:21.860Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "530454325214969866", - "start": "2022-04-25T14:21:09.770Z", - "end": "2022-04-25T21:38:38.110Z", - "events": [ - { - "start": "2022-04-25T14:21:09.770Z", - "end": "2022-04-25T21:38:38.110Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "519644368735567873", - "start": "2022-06-16T09:37:46.300Z", - "end": "2022-06-16T11:38:35.189Z", - "events": [ - { - "start": "2022-06-16T09:37:46.300Z", - "end": "2022-06-16T10:07:58.522Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T10:07:58.522Z", - "end": "2022-06-16T10:38:10.744Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T10:38:10.744Z", - "end": "2022-06-16T11:08:22.966Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T11:08:22.966Z", - "end": "2022-06-16T11:38:35.188Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "535384357536399404", - "start": "2022-07-11T09:06:15.169Z", - "end": "2022-07-11T11:34:58.282Z", - "events": [ - { - "start": "2022-07-11T09:06:15.169Z", - "end": "2022-07-11T10:20:36.725Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T10:20:36.725Z", - "end": "2022-07-11T11:34:58.281Z", - "state": "IDLE" - } - ] - }, - { - "user": "394970121077311909", - "game": "542475118396309528", - "start": "2022-06-20T14:13:34.881Z", - "end": "2022-06-20T16:55:07.749Z", - "events": [ - { - "start": "2022-06-20T14:13:34.881Z", - "end": "2022-06-20T15:34:21.315Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T15:34:21.315Z", - "end": "2022-06-20T16:55:07.749Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "285410867718320291", - "game": "576482762446602270", - "start": "2022-04-23T05:37:21.234Z", - "end": "2022-04-23T09:29:29.710Z", - "events": [ - { - "start": "2022-04-23T05:37:21.234Z", - "end": "2022-04-23T06:54:44.059Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T06:54:44.059Z", - "end": "2022-04-23T08:12:06.884Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T08:12:06.884Z", - "end": "2022-04-23T09:29:29.709Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "297014162745407430", - "game": "584069374462394368", - "start": "2022-07-26T18:16:48.245Z", - "end": "2022-07-26T18:22:55.377Z", - "events": [ - { - "start": "2022-07-26T18:16:48.245Z", - "end": "2022-07-26T18:18:01.671Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-26T18:18:01.671Z", - "end": "2022-07-26T18:19:15.097Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-26T18:19:15.097Z", - "end": "2022-07-26T18:20:28.523Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-26T18:20:28.523Z", - "end": "2022-07-26T18:21:41.949Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-26T18:21:41.949Z", - "end": "2022-07-26T18:22:55.375Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "452396069922968436", - "game": "520462578061803588", - "start": "2022-06-28T11:03:22.005Z", - "end": "2022-06-28T16:35:43.897Z", - "events": [ - { - "start": "2022-06-28T11:03:22.005Z", - "end": "2022-06-28T12:26:27.478Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T12:26:27.478Z", - "end": "2022-06-28T13:49:32.951Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T13:49:32.951Z", - "end": "2022-06-28T15:12:38.424Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T15:12:38.424Z", - "end": "2022-06-28T16:35:43.897Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "731522398939920723", - "game": "520453007578628124", - "start": "2022-06-12T08:23:30.266Z", - "end": "2022-06-12T17:01:50.680Z", - "events": [ - { - "start": "2022-06-12T08:23:30.266Z", - "end": "2022-06-12T17:01:50.680Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "558547388583772201", - "start": "2022-06-20T04:35:29.386Z", - "end": "2022-06-20T10:20:20.850Z", - "events": [ - { - "start": "2022-06-20T04:35:29.386Z", - "end": "2022-06-20T06:30:26.540Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T06:30:26.540Z", - "end": "2022-06-20T08:25:23.694Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T08:25:23.694Z", - "end": "2022-06-20T10:20:20.848Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "694111074254984301", - "game": "519644368735567873", - "start": "2022-08-01T06:52:59.636Z", - "end": "2022-08-01T08:30:25.235Z", - "events": [ - { - "start": "2022-08-01T06:52:59.636Z", - "end": "2022-08-01T07:41:42.435Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-01T07:41:42.435Z", - "end": "2022-08-01T08:30:25.234Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "378424071510192465", - "game": "518088627234930688", - "start": "2022-04-27T12:02:37.864Z", - "end": "2022-04-27T12:45:36.999Z", - "events": [ - { - "start": "2022-04-27T12:02:37.864Z", - "end": "2022-04-27T12:11:13.691Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T12:11:13.691Z", - "end": "2022-04-27T12:19:49.518Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T12:19:49.518Z", - "end": "2022-04-27T12:28:25.345Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T12:28:25.345Z", - "end": "2022-04-27T12:37:01.172Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T12:37:01.172Z", - "end": "2022-04-27T12:45:36.999Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "878082205985098233", - "game": "512501896896970762", - "start": "2022-06-09T14:54:07.536Z", - "end": "2022-06-10T00:51:42.243Z", - "events": [ - { - "start": "2022-06-09T14:54:07.536Z", - "end": "2022-06-09T19:52:54.889Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-09T19:52:54.889Z", - "end": "2022-06-10T00:51:42.242Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "394970121077311909", - "game": "508057374875975682", - "start": "2022-07-15T03:36:43.614Z", - "end": "2022-07-15T05:45:56.613Z", - "events": [ - { - "start": "2022-07-15T03:36:43.614Z", - "end": "2022-07-15T04:02:34.213Z", - "state": "IDLE" - }, - { - "start": "2022-07-15T04:02:34.213Z", - "end": "2022-07-15T04:28:24.812Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T04:28:24.812Z", - "end": "2022-07-15T04:54:15.411Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T04:54:15.411Z", - "end": "2022-07-15T05:20:06.010Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-15T05:20:06.010Z", - "end": "2022-07-15T05:45:56.609Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "452396069922968436", - "game": "508057374875975682", - "start": "2022-04-19T04:26:50.642Z", - "end": "2022-04-19T09:16:41.021Z", - "events": [ - { - "start": "2022-04-19T04:26:50.642Z", - "end": "2022-04-19T09:16:41.021Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "521350927850935744", - "game": "519644267212177418", - "start": "2022-05-02T13:35:27.899Z", - "end": "2022-05-02T18:08:03.175Z", - "events": [ - { - "start": "2022-05-02T13:35:27.899Z", - "end": "2022-05-02T15:51:45.537Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T15:51:45.537Z", - "end": "2022-05-02T18:08:03.175Z", - "state": "IDLE" - } - ] - }, - { - "user": "694111074254984301", - "game": "540120593576493057", - "start": "2022-06-10T22:48:41.554Z", - "end": "2022-06-11T01:46:30.570Z", - "events": [ - { - "start": "2022-06-10T22:48:41.554Z", - "end": "2022-06-11T01:46:30.570Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "695941172337689379", - "game": "530454325214969866", - "start": "2022-07-22T01:04:57.197Z", - "end": "2022-07-22T10:01:28.815Z", - "events": [ - { - "start": "2022-07-22T01:04:57.197Z", - "end": "2022-07-22T02:52:15.520Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T02:52:15.520Z", - "end": "2022-07-22T04:39:33.843Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T04:39:33.843Z", - "end": "2022-07-22T06:26:52.166Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T06:26:52.166Z", - "end": "2022-07-22T08:14:10.489Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T08:14:10.489Z", - "end": "2022-07-22T10:01:28.812Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "318220875546522080", - "game": "512501896896970762", - "start": "2022-06-15T11:46:29.356Z", - "end": "2022-06-15T16:47:53.589Z", - "events": [ - { - "start": "2022-06-15T11:46:29.356Z", - "end": "2022-06-15T13:01:50.414Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T13:01:50.414Z", - "end": "2022-06-15T14:17:11.472Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T14:17:11.472Z", - "end": "2022-06-15T15:32:32.530Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T15:32:32.530Z", - "end": "2022-06-15T16:47:53.588Z", - "state": "IDLE" - } - ] - }, - { - "user": "153631479524744694", - "game": "512789427462995988", - "start": "2022-08-01T08:13:10.146Z", - "end": "2022-08-01T15:18:25.394Z", - "events": [ - { - "start": "2022-08-01T08:13:10.146Z", - "end": "2022-08-01T11:45:47.770Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T11:45:47.770Z", - "end": "2022-08-01T15:18:25.394Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "511619499053678668", - "start": "2022-05-13T23:48:48.803Z", - "end": "2022-05-14T07:38:53.438Z", - "events": [ - { - "start": "2022-05-13T23:48:48.803Z", - "end": "2022-05-14T03:43:51.120Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T03:43:51.120Z", - "end": "2022-05-14T07:38:53.437Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "584069374462394368", - "start": "2022-06-20T02:18:15.369Z", - "end": "2022-06-20T08:07:54.632Z", - "events": [ - { - "start": "2022-06-20T02:18:15.369Z", - "end": "2022-06-20T08:07:54.632Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "510690749854514547", - "game": "535371564850479134", - "start": "2022-04-14T23:38:33.164Z", - "end": "2022-04-15T04:03:40.806Z", - "events": [ - { - "start": "2022-04-14T23:38:33.164Z", - "end": "2022-04-15T01:51:06.985Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-15T01:51:06.985Z", - "end": "2022-04-15T04:03:40.806Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "213263852824749877", - "game": "512789120234422301", - "start": "2022-07-28T10:21:03.115Z", - "end": "2022-07-28T13:34:05.784Z", - "events": [ - { - "start": "2022-07-28T10:21:03.115Z", - "end": "2022-07-28T11:09:18.782Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T11:09:18.782Z", - "end": "2022-07-28T11:57:34.449Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T11:57:34.449Z", - "end": "2022-07-28T12:45:50.116Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T12:45:50.116Z", - "end": "2022-07-28T13:34:05.783Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "520462578061803588", - "start": "2022-04-29T10:18:46.425Z", - "end": "2022-04-29T13:16:41.373Z", - "events": [ - { - "start": "2022-04-29T10:18:46.425Z", - "end": "2022-04-29T10:54:21.414Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T10:54:21.414Z", - "end": "2022-04-29T11:29:56.403Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T11:29:56.403Z", - "end": "2022-04-29T12:05:31.392Z", - "state": "IDLE" - }, - { - "start": "2022-04-29T12:05:31.392Z", - "end": "2022-04-29T12:41:06.381Z", - "state": "IDLE" - }, - { - "start": "2022-04-29T12:41:06.381Z", - "end": "2022-04-29T13:16:41.370Z", - "state": "IDLE" - } - ] - }, - { - "user": "123137660023366590", - "game": "546175179542364160", - "start": "2022-05-20T04:13:15.996Z", - "end": "2022-05-20T06:55:38.027Z", - "events": [ - { - "start": "2022-05-20T04:13:15.996Z", - "end": "2022-05-20T05:07:23.339Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T05:07:23.339Z", - "end": "2022-05-20T06:01:30.682Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-20T06:01:30.682Z", - "end": "2022-05-20T06:55:38.025Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512501896896970762", - "start": "2022-06-03T17:40:55.052Z", - "end": "2022-06-03T23:17:14.135Z", - "events": [ - { - "start": "2022-06-03T17:40:55.052Z", - "end": "2022-06-03T20:29:04.593Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T20:29:04.593Z", - "end": "2022-06-03T23:17:14.134Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "512789120234422301", - "start": "2022-06-02T15:35:21.127Z", - "end": "2022-06-02T23:03:21.662Z", - "events": [ - { - "start": "2022-06-02T15:35:21.127Z", - "end": "2022-06-02T19:19:21.394Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T19:19:21.394Z", - "end": "2022-06-02T23:03:21.661Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "508057374875975682", - "start": "2022-05-24T04:57:35.431Z", - "end": "2022-05-24T06:05:38.304Z", - "events": [ - { - "start": "2022-05-24T04:57:35.431Z", - "end": "2022-05-24T05:20:16.388Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T05:20:16.388Z", - "end": "2022-05-24T05:42:57.345Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T05:42:57.345Z", - "end": "2022-05-24T06:05:38.302Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "356875221078245376", - "start": "2022-06-17T08:01:00.954Z", - "end": "2022-06-17T16:24:56.023Z", - "events": [ - { - "start": "2022-06-17T08:01:00.954Z", - "end": "2022-06-17T12:12:58.488Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T12:12:58.488Z", - "end": "2022-06-17T16:24:56.022Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "101572134856427564", - "game": "519644368735567873", - "start": "2022-06-09T02:56:40.727Z", - "end": "2022-06-09T12:27:40.629Z", - "events": [ - { - "start": "2022-06-09T02:56:40.727Z", - "end": "2022-06-09T07:42:10.678Z", - "state": "IDLE" - }, - { - "start": "2022-06-09T07:42:10.678Z", - "end": "2022-06-09T12:27:40.629Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "510690749854514547", - "game": "526489929631531009", - "start": "2022-05-16T13:07:05.983Z", - "end": "2022-05-16T20:47:37.835Z", - "events": [ - { - "start": "2022-05-16T13:07:05.983Z", - "end": "2022-05-16T14:39:12.353Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T14:39:12.353Z", - "end": "2022-05-16T16:11:18.723Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T16:11:18.723Z", - "end": "2022-05-16T17:43:25.093Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T17:43:25.093Z", - "end": "2022-05-16T19:15:31.463Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T19:15:31.463Z", - "end": "2022-05-16T20:47:37.833Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "161887854890745672", - "game": "512789343157485602", - "start": "2022-07-08T22:30:43.183Z", - "end": "2022-07-08T23:53:27.213Z", - "events": [ - { - "start": "2022-07-08T22:30:43.183Z", - "end": "2022-07-08T22:47:15.989Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T22:47:15.989Z", - "end": "2022-07-08T23:03:48.795Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T23:03:48.795Z", - "end": "2022-07-08T23:20:21.601Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T23:20:21.601Z", - "end": "2022-07-08T23:36:54.407Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T23:36:54.407Z", - "end": "2022-07-08T23:53:27.213Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "356875221078245376", - "start": "2022-07-21T05:19:29.379Z", - "end": "2022-07-21T05:26:37.581Z", - "events": [ - { - "start": "2022-07-21T05:19:29.379Z", - "end": "2022-07-21T05:26:37.581Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "565341641427124244", - "start": "2022-04-13T11:13:56.199Z", - "end": "2022-04-13T16:51:35.190Z", - "events": [ - { - "start": "2022-04-13T11:13:56.199Z", - "end": "2022-04-13T13:06:29.196Z", - "state": "IDLE" - }, - { - "start": "2022-04-13T13:06:29.196Z", - "end": "2022-04-13T14:59:02.193Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T14:59:02.193Z", - "end": "2022-04-13T16:51:35.190Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "938976307338486810", - "game": "356875221078245376", - "start": "2022-05-08T16:56:51.869Z", - "end": "2022-05-08T23:36:36.004Z", - "events": [ - { - "start": "2022-05-08T16:56:51.869Z", - "end": "2022-05-08T18:36:47.902Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T18:36:47.902Z", - "end": "2022-05-08T20:16:43.935Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T20:16:43.935Z", - "end": "2022-05-08T21:56:39.968Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T21:56:39.968Z", - "end": "2022-05-08T23:36:36.001Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "625617695768437507", - "game": "356875221078245376", - "start": "2022-05-01T06:25:35.908Z", - "end": "2022-05-01T07:49:57.017Z", - "events": [ - { - "start": "2022-05-01T06:25:35.908Z", - "end": "2022-05-01T06:42:28.129Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T06:42:28.129Z", - "end": "2022-05-01T06:59:20.350Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T06:59:20.350Z", - "end": "2022-05-01T07:16:12.571Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T07:16:12.571Z", - "end": "2022-05-01T07:33:04.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T07:33:04.792Z", - "end": "2022-05-01T07:49:57.013Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "182925797752958092", - "game": "519644267212177418", - "start": "2022-07-06T17:13:18.963Z", - "end": "2022-07-06T23:58:40.556Z", - "events": [ - { - "start": "2022-07-06T17:13:18.963Z", - "end": "2022-07-06T23:58:40.556Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "385692164951394422", - "game": "530454325214969866", - "start": "2022-06-24T11:10:06.785Z", - "end": "2022-06-24T15:52:41.785Z", - "events": [ - { - "start": "2022-06-24T11:10:06.785Z", - "end": "2022-06-24T12:06:37.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T12:06:37.785Z", - "end": "2022-06-24T13:03:08.785Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-24T13:03:08.785Z", - "end": "2022-06-24T13:59:39.785Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T13:59:39.785Z", - "end": "2022-06-24T14:56:10.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-24T14:56:10.785Z", - "end": "2022-06-24T15:52:41.785Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "762163239408560283", - "game": "540120593576493057", - "start": "2022-05-26T03:10:47.961Z", - "end": "2022-05-26T06:07:22.418Z", - "events": [ - { - "start": "2022-05-26T03:10:47.961Z", - "end": "2022-05-26T06:07:22.418Z", - "state": "IDLE" - } - ] - }, - { - "user": "590467327095087095", - "game": "592976500802846750", - "start": "2022-05-03T09:33:07.823Z", - "end": "2022-05-03T13:11:41.418Z", - "events": [ - { - "start": "2022-05-03T09:33:07.823Z", - "end": "2022-05-03T10:45:59.021Z", - "state": "IDLE" - }, - { - "start": "2022-05-03T10:45:59.021Z", - "end": "2022-05-03T11:58:50.219Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T11:58:50.219Z", - "end": "2022-05-03T13:11:41.417Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "530454325214969866", - "start": "2022-06-29T11:35:20.740Z", - "end": "2022-06-29T12:15:22.618Z", - "events": [ - { - "start": "2022-06-29T11:35:20.740Z", - "end": "2022-06-29T11:48:41.366Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T11:48:41.366Z", - "end": "2022-06-29T12:02:01.992Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T12:02:01.992Z", - "end": "2022-06-29T12:15:22.618Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "182925797752958092", - "game": "553697181249437716", - "start": "2022-06-23T06:34:03.947Z", - "end": "2022-06-23T11:36:04.991Z", - "events": [ - { - "start": "2022-06-23T06:34:03.947Z", - "end": "2022-06-23T11:36:04.991Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "800318424708872602", - "game": "518088627234930688", - "start": "2022-06-03T07:53:51.461Z", - "end": "2022-06-03T13:21:21.297Z", - "events": [ - { - "start": "2022-06-03T07:53:51.461Z", - "end": "2022-06-03T13:21:21.297Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "658550407298256890", - "game": "576482762446602270", - "start": "2022-07-01T04:02:05.021Z", - "end": "2022-07-01T07:59:49.741Z", - "events": [ - { - "start": "2022-07-01T04:02:05.021Z", - "end": "2022-07-01T07:59:49.741Z", - "state": "IDLE" - } - ] - }, - { - "user": "881335427428668054", - "game": "542475118396309528", - "start": "2022-07-02T22:22:17.173Z", - "end": "2022-07-03T02:44:36.877Z", - "events": [ - { - "start": "2022-07-02T22:22:17.173Z", - "end": "2022-07-02T23:14:45.113Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T23:14:45.113Z", - "end": "2022-07-03T00:07:13.053Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T00:07:13.053Z", - "end": "2022-07-03T00:59:40.993Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-03T00:59:40.993Z", - "end": "2022-07-03T01:52:08.933Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T01:52:08.933Z", - "end": "2022-07-03T02:44:36.873Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "512789120234422301", - "start": "2022-07-11T21:10:30.784Z", - "end": "2022-07-12T04:05:54.236Z", - "events": [ - { - "start": "2022-07-11T21:10:30.784Z", - "end": "2022-07-11T22:54:21.647Z", - "state": "IDLE" - }, - { - "start": "2022-07-11T22:54:21.647Z", - "end": "2022-07-12T00:38:12.510Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T00:38:12.510Z", - "end": "2022-07-12T02:22:03.373Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T02:22:03.373Z", - "end": "2022-07-12T04:05:54.236Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "576482762446602270", - "start": "2022-05-22T21:21:40.562Z", - "end": "2022-05-22T22:15:16.083Z", - "events": [ - { - "start": "2022-05-22T21:21:40.562Z", - "end": "2022-05-22T22:15:16.083Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "517335360477493827", - "game": "530454325214969866", - "start": "2022-05-21T02:44:53.104Z", - "end": "2022-05-21T06:11:08.677Z", - "events": [ - { - "start": "2022-05-21T02:44:53.104Z", - "end": "2022-05-21T03:26:08.218Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T03:26:08.218Z", - "end": "2022-05-21T04:07:23.332Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T04:07:23.332Z", - "end": "2022-05-21T04:48:38.446Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T04:48:38.446Z", - "end": "2022-05-21T05:29:53.560Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T05:29:53.560Z", - "end": "2022-05-21T06:11:08.674Z", - "state": "IDLE" - } - ] - }, - { - "user": "881335427428668054", - "game": "530454325214969866", - "start": "2022-07-06T00:52:32.597Z", - "end": "2022-07-06T04:55:11.543Z", - "events": [ - { - "start": "2022-07-06T00:52:32.597Z", - "end": "2022-07-06T01:53:12.333Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T01:53:12.333Z", - "end": "2022-07-06T02:53:52.069Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T02:53:52.069Z", - "end": "2022-07-06T03:54:31.805Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T03:54:31.805Z", - "end": "2022-07-06T04:55:11.541Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "519644368735567873", - "start": "2022-07-07T19:45:29.389Z", - "end": "2022-07-08T01:07:37.042Z", - "events": [ - { - "start": "2022-07-07T19:45:29.389Z", - "end": "2022-07-07T21:32:51.940Z", - "state": "IDLE" - }, - { - "start": "2022-07-07T21:32:51.940Z", - "end": "2022-07-07T23:20:14.491Z", - "state": "IDLE" - }, - { - "start": "2022-07-07T23:20:14.491Z", - "end": "2022-07-08T01:07:37.042Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "572456126872944651", - "start": "2022-08-05T05:54:48.912Z", - "end": "2022-08-05T05:58:35.312Z", - "events": [ - { - "start": "2022-08-05T05:54:48.912Z", - "end": "2022-08-05T05:55:34.192Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T05:55:34.192Z", - "end": "2022-08-05T05:56:19.472Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T05:56:19.472Z", - "end": "2022-08-05T05:57:04.752Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T05:57:04.752Z", - "end": "2022-08-05T05:57:50.032Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T05:57:50.032Z", - "end": "2022-08-05T05:58:35.312Z", - "state": "IDLE" - } - ] - }, - { - "user": "800318424708872602", - "game": "560781100197216267", - "start": "2022-05-17T21:05:57.695Z", - "end": "2022-05-18T06:32:40.718Z", - "events": [ - { - "start": "2022-05-17T21:05:57.695Z", - "end": "2022-05-18T00:14:52.036Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-18T00:14:52.036Z", - "end": "2022-05-18T03:23:46.377Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T03:23:46.377Z", - "end": "2022-05-18T06:32:40.718Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "530454325214969866", - "start": "2022-05-25T21:00:58.455Z", - "end": "2022-05-26T06:35:06.731Z", - "events": [ - { - "start": "2022-05-25T21:00:58.455Z", - "end": "2022-05-26T01:48:02.593Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T01:48:02.593Z", - "end": "2022-05-26T06:35:06.731Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "318220875546522080", - "game": "356875221078245376", - "start": "2022-04-21T21:54:19.874Z", - "end": "2022-04-21T22:23:43.022Z", - "events": [ - { - "start": "2022-04-21T21:54:19.874Z", - "end": "2022-04-21T22:04:07.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T22:04:07.590Z", - "end": "2022-04-21T22:13:55.306Z", - "state": "IDLE" - }, - { - "start": "2022-04-21T22:13:55.306Z", - "end": "2022-04-21T22:23:43.022Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "535384357536399404", - "start": "2022-06-11T16:13:02.100Z", - "end": "2022-06-11T21:57:19.810Z", - "events": [ - { - "start": "2022-06-11T16:13:02.100Z", - "end": "2022-06-11T18:07:48.003Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T18:07:48.003Z", - "end": "2022-06-11T20:02:33.906Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-11T20:02:33.906Z", - "end": "2022-06-11T21:57:19.809Z", - "state": "IDLE" - } - ] - }, - { - "user": "424856688594618054", - "game": "520453007578628124", - "start": "2022-05-07T14:46:55.065Z", - "end": "2022-05-07T23:56:27.137Z", - "events": [ - { - "start": "2022-05-07T14:46:55.065Z", - "end": "2022-05-07T17:04:18.083Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-07T17:04:18.083Z", - "end": "2022-05-07T19:21:41.101Z", - "state": "IDLE" - }, - { - "start": "2022-05-07T19:21:41.101Z", - "end": "2022-05-07T21:39:04.119Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-07T21:39:04.119Z", - "end": "2022-05-07T23:56:27.137Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "356875221078245376", - "start": "2022-07-02T21:01:23.002Z", - "end": "2022-07-03T03:46:07.432Z", - "events": [ - { - "start": "2022-07-02T21:01:23.002Z", - "end": "2022-07-03T03:46:07.432Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "553697181249437716", - "start": "2022-05-24T13:31:44.435Z", - "end": "2022-05-24T18:44:14.025Z", - "events": [ - { - "start": "2022-05-24T13:31:44.435Z", - "end": "2022-05-24T14:34:14.353Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T14:34:14.353Z", - "end": "2022-05-24T15:36:44.271Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T15:36:44.271Z", - "end": "2022-05-24T16:39:14.189Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T16:39:14.189Z", - "end": "2022-05-24T17:41:44.107Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T17:41:44.107Z", - "end": "2022-05-24T18:44:14.025Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "535384357536399404", - "start": "2022-04-19T06:34:55.909Z", - "end": "2022-04-19T15:45:19.833Z", - "events": [ - { - "start": "2022-04-19T06:34:55.909Z", - "end": "2022-04-19T11:10:07.871Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T11:10:07.871Z", - "end": "2022-04-19T15:45:19.833Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "596421190780633864", - "game": "535384357536399404", - "start": "2022-04-30T16:40:11.490Z", - "end": "2022-04-30T23:59:22.234Z", - "events": [ - { - "start": "2022-04-30T16:40:11.490Z", - "end": "2022-04-30T23:59:22.234Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "872035310834814925", - "game": "592976500802846750", - "start": "2022-04-16T19:33:28.862Z", - "end": "2022-04-16T22:05:38.319Z", - "events": [ - { - "start": "2022-04-16T19:33:28.862Z", - "end": "2022-04-16T22:05:38.319Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "774637841058278398", - "game": "535869836748783616", - "start": "2022-05-01T14:37:22.966Z", - "end": "2022-05-01T19:29:09.590Z", - "events": [ - { - "start": "2022-05-01T14:37:22.966Z", - "end": "2022-05-01T15:50:19.622Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T15:50:19.622Z", - "end": "2022-05-01T17:03:16.278Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T17:03:16.278Z", - "end": "2022-05-01T18:16:12.934Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T18:16:12.934Z", - "end": "2022-05-01T19:29:09.590Z", - "state": "IDLE" - } - ] - }, - { - "user": "147480245458136084", - "game": "512789120234422301", - "start": "2022-06-03T21:54:47.324Z", - "end": "2022-06-04T07:13:03.986Z", - "events": [ - { - "start": "2022-06-03T21:54:47.324Z", - "end": "2022-06-04T01:00:52.878Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T01:00:52.878Z", - "end": "2022-06-04T04:06:58.432Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T04:06:58.432Z", - "end": "2022-06-04T07:13:03.986Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "535869836748783616", - "start": "2022-05-18T02:40:45.393Z", - "end": "2022-05-18T11:58:52.762Z", - "events": [ - { - "start": "2022-05-18T02:40:45.393Z", - "end": "2022-05-18T11:58:52.762Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "658550407298256890", - "game": "512789427462995988", - "start": "2022-06-01T17:32:36.753Z", - "end": "2022-06-02T00:57:11.917Z", - "events": [ - { - "start": "2022-06-01T17:32:36.753Z", - "end": "2022-06-02T00:57:11.917Z", - "state": "IDLE" - } - ] - }, - { - "user": "788818750251007268", - "game": "575412499399180288", - "start": "2022-05-24T00:02:20.464Z", - "end": "2022-05-24T04:09:59.103Z", - "events": [ - { - "start": "2022-05-24T00:02:20.464Z", - "end": "2022-05-24T01:04:15.123Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T01:04:15.123Z", - "end": "2022-05-24T02:06:09.782Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T02:06:09.782Z", - "end": "2022-05-24T03:08:04.441Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T03:08:04.441Z", - "end": "2022-05-24T04:09:59.100Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "356875221078245376", - "start": "2022-07-13T19:48:10.179Z", - "end": "2022-07-14T03:10:17.070Z", - "events": [ - { - "start": "2022-07-13T19:48:10.179Z", - "end": "2022-07-13T23:29:13.624Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T23:29:13.624Z", - "end": "2022-07-14T03:10:17.069Z", - "state": "IDLE" - } - ] - }, - { - "user": "568387317892070397", - "game": "549512435585908756", - "start": "2022-07-24T22:43:17.539Z", - "end": "2022-07-25T04:53:29.234Z", - "events": [ - { - "start": "2022-07-24T22:43:17.539Z", - "end": "2022-07-25T00:46:41.437Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-25T00:46:41.437Z", - "end": "2022-07-25T02:50:05.335Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T02:50:05.335Z", - "end": "2022-07-25T04:53:29.233Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "569253958967885828", - "start": "2022-07-06T14:03:27.317Z", - "end": "2022-07-06T23:06:47.224Z", - "events": [ - { - "start": "2022-07-06T14:03:27.317Z", - "end": "2022-07-06T17:04:33.952Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T17:04:33.952Z", - "end": "2022-07-06T20:05:40.587Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T20:05:40.587Z", - "end": "2022-07-06T23:06:47.222Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "512699108809637890", - "start": "2022-06-11T23:51:47.094Z", - "end": "2022-06-12T09:08:27.861Z", - "events": [ - { - "start": "2022-06-11T23:51:47.094Z", - "end": "2022-06-12T04:30:07.477Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T04:30:07.477Z", - "end": "2022-06-12T09:08:27.860Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "614380482620293151", - "start": "2022-07-23T17:28:58.593Z", - "end": "2022-07-23T21:06:39.580Z", - "events": [ - { - "start": "2022-07-23T17:28:58.593Z", - "end": "2022-07-23T18:41:32.255Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T18:41:32.255Z", - "end": "2022-07-23T19:54:05.917Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T19:54:05.917Z", - "end": "2022-07-23T21:06:39.579Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "518088627234930688", - "start": "2022-07-10T03:52:22.777Z", - "end": "2022-07-10T07:02:40.415Z", - "events": [ - { - "start": "2022-07-10T03:52:22.777Z", - "end": "2022-07-10T07:02:40.415Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "569008830701240340", - "start": "2022-06-14T06:34:58.202Z", - "end": "2022-06-14T09:29:21.997Z", - "events": [ - { - "start": "2022-06-14T06:34:58.202Z", - "end": "2022-06-14T09:29:21.997Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "385692164951394422", - "game": "512501896896970762", - "start": "2022-04-26T08:18:33.448Z", - "end": "2022-04-26T17:17:48.103Z", - "events": [ - { - "start": "2022-04-26T08:18:33.448Z", - "end": "2022-04-26T12:48:10.775Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-26T12:48:10.775Z", - "end": "2022-04-26T17:17:48.102Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "600708263053781983", - "game": "518088627234930688", - "start": "2022-06-04T05:05:58.267Z", - "end": "2022-06-04T07:18:56.617Z", - "events": [ - { - "start": "2022-06-04T05:05:58.267Z", - "end": "2022-06-04T06:12:27.442Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T06:12:27.442Z", - "end": "2022-06-04T07:18:56.617Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "528145079819436043", - "start": "2022-05-24T14:42:49.769Z", - "end": "2022-05-25T00:35:10.798Z", - "events": [ - { - "start": "2022-05-24T14:42:49.769Z", - "end": "2022-05-24T16:41:17.974Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T16:41:17.974Z", - "end": "2022-05-24T18:39:46.179Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T18:39:46.179Z", - "end": "2022-05-24T20:38:14.384Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T20:38:14.384Z", - "end": "2022-05-24T22:36:42.589Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T22:36:42.589Z", - "end": "2022-05-25T00:35:10.794Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302347517889336519", - "game": "597860020935327787", - "start": "2022-05-14T17:19:44.213Z", - "end": "2022-05-15T03:22:50.009Z", - "events": [ - { - "start": "2022-05-14T17:19:44.213Z", - "end": "2022-05-14T20:40:46.145Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T20:40:46.145Z", - "end": "2022-05-15T00:01:48.077Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T00:01:48.077Z", - "end": "2022-05-15T03:22:50.009Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "590467327095087095", - "game": "576482762446602270", - "start": "2022-06-06T09:22:33.418Z", - "end": "2022-06-06T16:37:06.449Z", - "events": [ - { - "start": "2022-06-06T09:22:33.418Z", - "end": "2022-06-06T10:49:28.024Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T10:49:28.024Z", - "end": "2022-06-06T12:16:22.630Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T12:16:22.630Z", - "end": "2022-06-06T13:43:17.236Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T13:43:17.236Z", - "end": "2022-06-06T15:10:11.842Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T15:10:11.842Z", - "end": "2022-06-06T16:37:06.448Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "550277544025522176", - "start": "2022-06-25T00:20:38.017Z", - "end": "2022-06-25T01:44:27.708Z", - "events": [ - { - "start": "2022-06-25T00:20:38.017Z", - "end": "2022-06-25T00:41:35.439Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T00:41:35.439Z", - "end": "2022-06-25T01:02:32.861Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T01:02:32.861Z", - "end": "2022-06-25T01:23:30.283Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T01:23:30.283Z", - "end": "2022-06-25T01:44:27.705Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "931211630078779300", - "game": "597588168178663434", - "start": "2022-06-21T16:49:31.704Z", - "end": "2022-06-21T19:36:57.348Z", - "events": [ - { - "start": "2022-06-21T16:49:31.704Z", - "end": "2022-06-21T19:36:57.348Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "530539422724200800", - "game": "526489929631531009", - "start": "2022-05-07T20:32:58.623Z", - "end": "2022-05-08T02:56:02.397Z", - "events": [ - { - "start": "2022-05-07T20:32:58.623Z", - "end": "2022-05-07T23:44:30.510Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-07T23:44:30.510Z", - "end": "2022-05-08T02:56:02.397Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "558547388583772201", - "start": "2022-06-23T19:45:42.933Z", - "end": "2022-06-24T05:04:45.547Z", - "events": [ - { - "start": "2022-06-23T19:45:42.933Z", - "end": "2022-06-24T00:25:14.240Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T00:25:14.240Z", - "end": "2022-06-24T05:04:45.547Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "569008830701240340", - "start": "2022-04-22T06:14:44.722Z", - "end": "2022-04-22T15:54:47.769Z", - "events": [ - { - "start": "2022-04-22T06:14:44.722Z", - "end": "2022-04-22T11:04:46.245Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T11:04:46.245Z", - "end": "2022-04-22T15:54:47.768Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "512789427462995988", - "start": "2022-07-25T06:49:14.581Z", - "end": "2022-07-25T12:25:07.941Z", - "events": [ - { - "start": "2022-07-25T06:49:14.581Z", - "end": "2022-07-25T08:13:12.921Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-25T08:13:12.921Z", - "end": "2022-07-25T09:37:11.261Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T09:37:11.261Z", - "end": "2022-07-25T11:01:09.601Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-25T11:01:09.601Z", - "end": "2022-07-25T12:25:07.941Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "576482762446602270", - "start": "2022-07-19T12:46:07.227Z", - "end": "2022-07-19T15:29:15.151Z", - "events": [ - { - "start": "2022-07-19T12:46:07.227Z", - "end": "2022-07-19T13:18:44.811Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T13:18:44.811Z", - "end": "2022-07-19T13:51:22.395Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T13:51:22.395Z", - "end": "2022-07-19T14:23:59.979Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T14:23:59.979Z", - "end": "2022-07-19T14:56:37.563Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T14:56:37.563Z", - "end": "2022-07-19T15:29:15.147Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "576482762446602270", - "start": "2022-06-16T09:35:16.875Z", - "end": "2022-06-16T19:16:31.290Z", - "events": [ - { - "start": "2022-06-16T09:35:16.875Z", - "end": "2022-06-16T11:31:31.758Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-16T11:31:31.758Z", - "end": "2022-06-16T13:27:46.641Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T13:27:46.641Z", - "end": "2022-06-16T15:24:01.524Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T15:24:01.524Z", - "end": "2022-06-16T17:20:16.407Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T17:20:16.407Z", - "end": "2022-06-16T19:16:31.290Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "636935635446628860", - "game": "512498684211232768", - "start": "2022-05-11T20:39:58.324Z", - "end": "2022-05-11T21:31:51.457Z", - "events": [ - { - "start": "2022-05-11T20:39:58.324Z", - "end": "2022-05-11T21:31:51.457Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "535384357536399404", - "start": "2022-05-04T08:56:09.867Z", - "end": "2022-05-04T17:07:23.468Z", - "events": [ - { - "start": "2022-05-04T08:56:09.867Z", - "end": "2022-05-04T13:01:46.667Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T13:01:46.667Z", - "end": "2022-05-04T17:07:23.467Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "512699108809637890", - "start": "2022-06-13T13:26:20.287Z", - "end": "2022-06-13T17:21:15.246Z", - "events": [ - { - "start": "2022-06-13T13:26:20.287Z", - "end": "2022-06-13T17:21:15.246Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "519644267212177418", - "start": "2022-06-19T01:35:43.349Z", - "end": "2022-06-19T05:22:36.162Z", - "events": [ - { - "start": "2022-06-19T01:35:43.349Z", - "end": "2022-06-19T05:22:36.162Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "523154344187789312", - "start": "2022-07-12T13:44:24.460Z", - "end": "2022-07-12T20:22:17.777Z", - "events": [ - { - "start": "2022-07-12T13:44:24.460Z", - "end": "2022-07-12T15:57:02.232Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T15:57:02.232Z", - "end": "2022-07-12T18:09:40.004Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T18:09:40.004Z", - "end": "2022-07-12T20:22:17.776Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "520453007578628124", - "start": "2022-05-30T13:30:10.455Z", - "end": "2022-05-30T23:08:12.668Z", - "events": [ - { - "start": "2022-05-30T13:30:10.455Z", - "end": "2022-05-30T18:19:11.561Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T18:19:11.561Z", - "end": "2022-05-30T23:08:12.667Z", - "state": "IDLE" - } - ] - }, - { - "user": "841397740041930984", - "game": "614380482620293151", - "start": "2022-05-28T15:11:19.193Z", - "end": "2022-05-28T19:51:57.652Z", - "events": [ - { - "start": "2022-05-28T15:11:19.193Z", - "end": "2022-05-28T16:44:52.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T16:44:52.012Z", - "end": "2022-05-28T18:18:24.831Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T18:18:24.831Z", - "end": "2022-05-28T19:51:57.650Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "700136079562375258", - "start": "2022-06-20T21:25:41.357Z", - "end": "2022-06-21T06:55:51.697Z", - "events": [ - { - "start": "2022-06-20T21:25:41.357Z", - "end": "2022-06-20T23:19:43.425Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T23:19:43.425Z", - "end": "2022-06-21T01:13:45.493Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T01:13:45.493Z", - "end": "2022-06-21T03:07:47.561Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T03:07:47.561Z", - "end": "2022-06-21T05:01:49.629Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T05:01:49.629Z", - "end": "2022-06-21T06:55:51.697Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "762163239408560283", - "game": "512699108809637890", - "start": "2022-05-29T07:12:48.630Z", - "end": "2022-05-29T10:15:38.088Z", - "events": [ - { - "start": "2022-05-29T07:12:48.630Z", - "end": "2022-05-29T07:49:22.521Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T07:49:22.521Z", - "end": "2022-05-29T08:25:56.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T08:25:56.412Z", - "end": "2022-05-29T09:02:30.303Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T09:02:30.303Z", - "end": "2022-05-29T09:39:04.194Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T09:39:04.194Z", - "end": "2022-05-29T10:15:38.085Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "540120593576493057", - "start": "2022-05-13T17:29:22.668Z", - "end": "2022-05-13T22:29:49.822Z", - "events": [ - { - "start": "2022-05-13T17:29:22.668Z", - "end": "2022-05-13T18:29:28.098Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-13T18:29:28.098Z", - "end": "2022-05-13T19:29:33.528Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-13T19:29:33.528Z", - "end": "2022-05-13T20:29:38.958Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-13T20:29:38.958Z", - "end": "2022-05-13T21:29:44.388Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-13T21:29:44.388Z", - "end": "2022-05-13T22:29:49.818Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "575412499399180288", - "start": "2022-05-26T23:31:42.938Z", - "end": "2022-05-27T09:15:39.891Z", - "events": [ - { - "start": "2022-05-26T23:31:42.938Z", - "end": "2022-05-27T01:57:42.176Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T01:57:42.176Z", - "end": "2022-05-27T04:23:41.414Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T04:23:41.414Z", - "end": "2022-05-27T06:49:40.652Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-27T06:49:40.652Z", - "end": "2022-05-27T09:15:39.890Z", - "state": "IDLE" - } - ] - }, - { - "user": "517335360477493827", - "game": "520453007578628124", - "start": "2022-05-04T15:29:02.997Z", - "end": "2022-05-04T21:49:15.420Z", - "events": [ - { - "start": "2022-05-04T15:29:02.997Z", - "end": "2022-05-04T18:39:09.208Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-04T18:39:09.208Z", - "end": "2022-05-04T21:49:15.419Z", - "state": "IDLE" - } - ] - }, - { - "user": "788818750251007268", - "game": "549512435585908756", - "start": "2022-05-24T18:07:15.257Z", - "end": "2022-05-24T21:27:02.903Z", - "events": [ - { - "start": "2022-05-24T18:07:15.257Z", - "end": "2022-05-24T18:57:12.168Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T18:57:12.168Z", - "end": "2022-05-24T19:47:09.079Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T19:47:09.079Z", - "end": "2022-05-24T20:37:05.990Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T20:37:05.990Z", - "end": "2022-05-24T21:27:02.901Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "123137660023366590", - "game": "592976500802846750", - "start": "2022-07-16T18:54:44.917Z", - "end": "2022-07-17T04:01:14.907Z", - "events": [ - { - "start": "2022-07-16T18:54:44.917Z", - "end": "2022-07-16T21:11:22.414Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-16T21:11:22.414Z", - "end": "2022-07-16T23:27:59.911Z", - "state": "IDLE" - }, - { - "start": "2022-07-16T23:27:59.911Z", - "end": "2022-07-17T01:44:37.408Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T01:44:37.408Z", - "end": "2022-07-17T04:01:14.905Z", - "state": "IDLE" - } - ] - }, - { - "user": "774637841058278398", - "game": "523154344187789312", - "start": "2022-06-01T05:39:11.882Z", - "end": "2022-06-01T08:58:40.019Z", - "events": [ - { - "start": "2022-06-01T05:39:11.882Z", - "end": "2022-06-01T07:18:55.950Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T07:18:55.950Z", - "end": "2022-06-01T08:58:40.018Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "512498684211232768", - "start": "2022-07-07T22:18:09.229Z", - "end": "2022-07-07T23:07:03.767Z", - "events": [ - { - "start": "2022-07-07T22:18:09.229Z", - "end": "2022-07-07T23:07:03.767Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "494763633796983404", - "game": "554573307161214977", - "start": "2022-04-28T08:43:48.064Z", - "end": "2022-04-28T13:10:39.037Z", - "events": [ - { - "start": "2022-04-28T08:43:48.064Z", - "end": "2022-04-28T13:10:39.037Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "126384926926158511", - "game": "554573307161214977", - "start": "2022-05-18T15:47:10.600Z", - "end": "2022-05-18T19:38:23.931Z", - "events": [ - { - "start": "2022-05-18T15:47:10.600Z", - "end": "2022-05-18T17:42:47.265Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T17:42:47.265Z", - "end": "2022-05-18T19:38:23.930Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "530454325214969866", - "start": "2022-07-26T10:36:01.746Z", - "end": "2022-07-26T18:56:21.064Z", - "events": [ - { - "start": "2022-07-26T10:36:01.746Z", - "end": "2022-07-26T18:56:21.064Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "565341641427124244", - "start": "2022-07-22T07:25:50.641Z", - "end": "2022-07-22T17:06:26.777Z", - "events": [ - { - "start": "2022-07-22T07:25:50.641Z", - "end": "2022-07-22T09:21:57.868Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T09:21:57.868Z", - "end": "2022-07-22T11:18:05.095Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T11:18:05.095Z", - "end": "2022-07-22T13:14:12.322Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T13:14:12.322Z", - "end": "2022-07-22T15:10:19.549Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T15:10:19.549Z", - "end": "2022-07-22T17:06:26.776Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "510690749854514547", - "game": "597860020935327787", - "start": "2022-07-13T20:42:25.877Z", - "end": "2022-07-14T01:28:04.971Z", - "events": [ - { - "start": "2022-07-13T20:42:25.877Z", - "end": "2022-07-13T21:53:50.650Z", - "state": "IDLE" - }, - { - "start": "2022-07-13T21:53:50.650Z", - "end": "2022-07-13T23:05:15.423Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-13T23:05:15.423Z", - "end": "2022-07-14T00:16:40.196Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-14T00:16:40.196Z", - "end": "2022-07-14T01:28:04.969Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "360264570671216445", - "game": "569008830701240340", - "start": "2022-06-26T03:52:43.069Z", - "end": "2022-06-26T05:42:00.770Z", - "events": [ - { - "start": "2022-06-26T03:52:43.069Z", - "end": "2022-06-26T04:14:34.609Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-26T04:14:34.609Z", - "end": "2022-06-26T04:36:26.149Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T04:36:26.149Z", - "end": "2022-06-26T04:58:17.689Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T04:58:17.689Z", - "end": "2022-06-26T05:20:09.229Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T05:20:09.229Z", - "end": "2022-06-26T05:42:00.769Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "518088627234930688", - "start": "2022-08-03T21:23:32.471Z", - "end": "2022-08-04T01:20:31.872Z", - "events": [ - { - "start": "2022-08-03T21:23:32.471Z", - "end": "2022-08-03T22:22:47.321Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T22:22:47.321Z", - "end": "2022-08-03T23:22:02.171Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T23:22:02.171Z", - "end": "2022-08-04T00:21:17.021Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T00:21:17.021Z", - "end": "2022-08-04T01:20:31.871Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "525940629729163286", - "game": "597860020935327787", - "start": "2022-05-20T08:45:11.523Z", - "end": "2022-05-20T15:14:43.416Z", - "events": [ - { - "start": "2022-05-20T08:45:11.523Z", - "end": "2022-05-20T10:55:02.154Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-20T10:55:02.154Z", - "end": "2022-05-20T13:04:52.785Z", - "state": "IDLE" - }, - { - "start": "2022-05-20T13:04:52.785Z", - "end": "2022-05-20T15:14:43.416Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302714757313826277", - "game": "597588168178663434", - "start": "2022-06-24T17:19:34.323Z", - "end": "2022-06-24T18:48:19.268Z", - "events": [ - { - "start": "2022-06-24T17:19:34.323Z", - "end": "2022-06-24T18:48:19.268Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302679892350666678", - "game": "512498684211232768", - "start": "2022-04-26T12:26:36.256Z", - "end": "2022-04-26T13:45:50.070Z", - "events": [ - { - "start": "2022-04-26T12:26:36.256Z", - "end": "2022-04-26T12:46:24.709Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T12:46:24.709Z", - "end": "2022-04-26T13:06:13.162Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T13:06:13.162Z", - "end": "2022-04-26T13:26:01.615Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T13:26:01.615Z", - "end": "2022-04-26T13:45:50.068Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "636935635446628860", - "game": "576482762446602270", - "start": "2022-05-18T03:18:00.575Z", - "end": "2022-05-18T11:12:32.656Z", - "events": [ - { - "start": "2022-05-18T03:18:00.575Z", - "end": "2022-05-18T04:52:54.991Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-18T04:52:54.991Z", - "end": "2022-05-18T06:27:49.407Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T06:27:49.407Z", - "end": "2022-05-18T08:02:43.823Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T08:02:43.823Z", - "end": "2022-05-18T09:37:38.239Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T09:37:38.239Z", - "end": "2022-05-18T11:12:32.655Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "518088627234930688", - "start": "2022-08-02T04:28:33.547Z", - "end": "2022-08-02T10:19:34.288Z", - "events": [ - { - "start": "2022-08-02T04:28:33.547Z", - "end": "2022-08-02T07:24:03.917Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T07:24:03.917Z", - "end": "2022-08-02T10:19:34.287Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "540120593576493057", - "start": "2022-06-25T16:35:47.660Z", - "end": "2022-06-25T23:17:26.041Z", - "events": [ - { - "start": "2022-06-25T16:35:47.660Z", - "end": "2022-06-25T17:56:07.336Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T17:56:07.336Z", - "end": "2022-06-25T19:16:27.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T19:16:27.012Z", - "end": "2022-06-25T20:36:46.688Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T20:36:46.688Z", - "end": "2022-06-25T21:57:06.364Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T21:57:06.364Z", - "end": "2022-06-25T23:17:26.040Z", - "state": "IDLE" - } - ] - }, - { - "user": "495724335127362694", - "game": "553697181249437716", - "start": "2022-05-09T16:19:57.247Z", - "end": "2022-05-09T17:01:07.628Z", - "events": [ - { - "start": "2022-05-09T16:19:57.247Z", - "end": "2022-05-09T16:30:14.842Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T16:30:14.842Z", - "end": "2022-05-09T16:40:32.437Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T16:40:32.437Z", - "end": "2022-05-09T16:50:50.032Z", - "state": "IDLE" - }, - { - "start": "2022-05-09T16:50:50.032Z", - "end": "2022-05-09T17:01:07.627Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "731522398939920723", - "game": "542474758835535872", - "start": "2022-06-28T09:35:20.855Z", - "end": "2022-06-28T14:13:50.417Z", - "events": [ - { - "start": "2022-06-28T09:35:20.855Z", - "end": "2022-06-28T10:44:58.245Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T10:44:58.245Z", - "end": "2022-06-28T11:54:35.635Z", - "state": "IDLE" - }, - { - "start": "2022-06-28T11:54:35.635Z", - "end": "2022-06-28T13:04:13.025Z", - "state": "IDLE" - }, - { - "start": "2022-06-28T13:04:13.025Z", - "end": "2022-06-28T14:13:50.415Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "495724335127362694", - "game": "512699108809637890", - "start": "2022-08-02T18:32:54.672Z", - "end": "2022-08-02T18:34:05.613Z", - "events": [ - { - "start": "2022-08-02T18:32:54.672Z", - "end": "2022-08-02T18:33:18.319Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T18:33:18.319Z", - "end": "2022-08-02T18:33:41.966Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T18:33:41.966Z", - "end": "2022-08-02T18:34:05.613Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "565341641427124244", - "start": "2022-06-09T19:19:17.671Z", - "end": "2022-06-10T03:18:51.879Z", - "events": [ - { - "start": "2022-06-09T19:19:17.671Z", - "end": "2022-06-09T21:19:11.223Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-09T21:19:11.223Z", - "end": "2022-06-09T23:19:04.775Z", - "state": "IDLE" - }, - { - "start": "2022-06-09T23:19:04.775Z", - "end": "2022-06-10T01:18:58.327Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-10T01:18:58.327Z", - "end": "2022-06-10T03:18:51.879Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "575412499399180288", - "start": "2022-07-17T12:22:20.687Z", - "end": "2022-07-17T16:34:35.357Z", - "events": [ - { - "start": "2022-07-17T12:22:20.687Z", - "end": "2022-07-17T13:25:24.354Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T13:25:24.354Z", - "end": "2022-07-17T14:28:28.021Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-17T14:28:28.021Z", - "end": "2022-07-17T15:31:31.688Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-17T15:31:31.688Z", - "end": "2022-07-17T16:34:35.355Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "541104083732114799", - "game": "512789343157485602", - "start": "2022-06-01T01:03:40.832Z", - "end": "2022-06-01T04:04:57.178Z", - "events": [ - { - "start": "2022-06-01T01:03:40.832Z", - "end": "2022-06-01T02:04:06.280Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T02:04:06.280Z", - "end": "2022-06-01T03:04:31.728Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-01T03:04:31.728Z", - "end": "2022-06-01T04:04:57.176Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "713444659295913502", - "game": "614448244260339712", - "start": "2022-04-28T01:09:54.771Z", - "end": "2022-04-28T02:28:18.745Z", - "events": [ - { - "start": "2022-04-28T01:09:54.771Z", - "end": "2022-04-28T01:25:35.565Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T01:25:35.565Z", - "end": "2022-04-28T01:41:16.359Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T01:41:16.359Z", - "end": "2022-04-28T01:56:57.153Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-28T01:56:57.153Z", - "end": "2022-04-28T02:12:37.947Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-28T02:12:37.947Z", - "end": "2022-04-28T02:28:18.741Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "553697181249437716", - "start": "2022-05-12T21:39:52.310Z", - "end": "2022-05-13T00:05:30.066Z", - "events": [ - { - "start": "2022-05-12T21:39:52.310Z", - "end": "2022-05-13T00:05:30.066Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "430732724825949756", - "game": "554921822626381879", - "start": "2022-04-14T00:50:06.509Z", - "end": "2022-04-14T02:32:10.715Z", - "events": [ - { - "start": "2022-04-14T00:50:06.509Z", - "end": "2022-04-14T01:10:31.350Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T01:10:31.350Z", - "end": "2022-04-14T01:30:56.191Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T01:30:56.191Z", - "end": "2022-04-14T01:51:21.032Z", - "state": "IDLE" - }, - { - "start": "2022-04-14T01:51:21.032Z", - "end": "2022-04-14T02:11:45.873Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T02:11:45.873Z", - "end": "2022-04-14T02:32:10.714Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "576482762446602270", - "start": "2022-07-21T04:11:13.700Z", - "end": "2022-07-21T10:55:32.531Z", - "events": [ - { - "start": "2022-07-21T04:11:13.700Z", - "end": "2022-07-21T10:55:32.531Z", - "state": "IDLE" - } - ] - }, - { - "user": "302714757313826277", - "game": "520453007578628124", - "start": "2022-08-06T15:54:21.630Z", - "end": "2022-08-06T17:31:44.696Z", - "events": [ - { - "start": "2022-08-06T15:54:21.630Z", - "end": "2022-08-06T16:43:03.163Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T16:43:03.163Z", - "end": "2022-08-06T17:31:44.696Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "900234800332446962", - "game": "588739017718366208", - "start": "2022-06-06T09:52:50.641Z", - "end": "2022-06-06T15:37:45.149Z", - "events": [ - { - "start": "2022-06-06T09:52:50.641Z", - "end": "2022-06-06T15:37:45.149Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "264503060524837708", - "game": "508057374875975682", - "start": "2022-04-17T14:41:50.052Z", - "end": "2022-04-17T16:18:41.991Z", - "events": [ - { - "start": "2022-04-17T14:41:50.052Z", - "end": "2022-04-17T15:14:07.365Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T15:14:07.365Z", - "end": "2022-04-17T15:46:24.678Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T15:46:24.678Z", - "end": "2022-04-17T16:18:41.991Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "268139232276871676", - "game": "550277544025522176", - "start": "2022-05-08T00:47:11.663Z", - "end": "2022-05-08T03:52:00.696Z", - "events": [ - { - "start": "2022-05-08T00:47:11.663Z", - "end": "2022-05-08T02:19:36.179Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T02:19:36.179Z", - "end": "2022-05-08T03:52:00.695Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "623295654897148670", - "game": "614380482620293151", - "start": "2022-07-17T12:08:00.459Z", - "end": "2022-07-17T16:05:29.437Z", - "events": [ - { - "start": "2022-07-17T12:08:00.459Z", - "end": "2022-07-17T14:06:44.948Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T14:06:44.948Z", - "end": "2022-07-17T16:05:29.437Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "715446191320920764", - "game": "558547388583772201", - "start": "2022-05-21T02:28:56.833Z", - "end": "2022-05-21T03:16:16.034Z", - "events": [ - { - "start": "2022-05-21T02:28:56.833Z", - "end": "2022-05-21T02:40:46.633Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T02:40:46.633Z", - "end": "2022-05-21T02:52:36.433Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T02:52:36.433Z", - "end": "2022-05-21T03:04:26.233Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T03:04:26.233Z", - "end": "2022-05-21T03:16:16.033Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "198010595767135394", - "game": "542474758835535872", - "start": "2022-06-15T04:36:05.509Z", - "end": "2022-06-15T08:50:02.391Z", - "events": [ - { - "start": "2022-06-15T04:36:05.509Z", - "end": "2022-06-15T06:00:44.469Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T06:00:44.469Z", - "end": "2022-06-15T07:25:23.429Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T07:25:23.429Z", - "end": "2022-06-15T08:50:02.389Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "841397740041930984", - "game": "520453007578628124", - "start": "2022-07-22T05:23:59.446Z", - "end": "2022-07-22T12:32:10.041Z", - "events": [ - { - "start": "2022-07-22T05:23:59.446Z", - "end": "2022-07-22T12:32:10.041Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "597588168178663434", - "start": "2022-07-05T11:05:17.304Z", - "end": "2022-07-05T13:18:19.122Z", - "events": [ - { - "start": "2022-07-05T11:05:17.304Z", - "end": "2022-07-05T11:49:37.910Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-05T11:49:37.910Z", - "end": "2022-07-05T12:33:58.516Z", - "state": "IDLE" - }, - { - "start": "2022-07-05T12:33:58.516Z", - "end": "2022-07-05T13:18:19.122Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "554921822626381879", - "start": "2022-05-03T16:40:51.956Z", - "end": "2022-05-03T21:17:40.326Z", - "events": [ - { - "start": "2022-05-03T16:40:51.956Z", - "end": "2022-05-03T17:50:04.048Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T17:50:04.048Z", - "end": "2022-05-03T18:59:16.140Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T18:59:16.140Z", - "end": "2022-05-03T20:08:28.232Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-03T20:08:28.232Z", - "end": "2022-05-03T21:17:40.324Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "268139232276871676", - "game": "520462578061803588", - "start": "2022-04-21T08:04:42.589Z", - "end": "2022-04-21T11:59:07.553Z", - "events": [ - { - "start": "2022-04-21T08:04:42.589Z", - "end": "2022-04-21T11:59:07.553Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "614380482620293151", - "start": "2022-05-17T19:13:19.234Z", - "end": "2022-05-18T04:30:26.819Z", - "events": [ - { - "start": "2022-05-17T19:13:19.234Z", - "end": "2022-05-17T21:32:36.130Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T21:32:36.130Z", - "end": "2022-05-17T23:51:53.026Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-17T23:51:53.026Z", - "end": "2022-05-18T02:11:09.922Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T02:11:09.922Z", - "end": "2022-05-18T04:30:26.818Z", - "state": "IDLE" - } - ] - }, - { - "user": "565021137482980984", - "game": "550277544025522176", - "start": "2022-05-04T04:09:54.439Z", - "end": "2022-05-04T10:54:54.806Z", - "events": [ - { - "start": "2022-05-04T04:09:54.439Z", - "end": "2022-05-04T05:30:54.512Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T05:30:54.512Z", - "end": "2022-05-04T06:51:54.585Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T06:51:54.585Z", - "end": "2022-05-04T08:12:54.658Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T08:12:54.658Z", - "end": "2022-05-04T09:33:54.731Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T09:33:54.731Z", - "end": "2022-05-04T10:54:54.804Z", - "state": "IDLE" - } - ] - }, - { - "user": "565021137482980984", - "game": "558547388583772201", - "start": "2022-06-21T22:28:12.330Z", - "end": "2022-06-22T07:27:53.121Z", - "events": [ - { - "start": "2022-06-21T22:28:12.330Z", - "end": "2022-06-22T01:28:05.927Z", - "state": "IDLE" - }, - { - "start": "2022-06-22T01:28:05.927Z", - "end": "2022-06-22T04:27:59.524Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T04:27:59.524Z", - "end": "2022-06-22T07:27:53.121Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "541104083732114799", - "game": "550277544025522176", - "start": "2022-06-04T13:57:43.523Z", - "end": "2022-06-04T21:36:47.414Z", - "events": [ - { - "start": "2022-06-04T13:57:43.523Z", - "end": "2022-06-04T15:52:29.495Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T15:52:29.495Z", - "end": "2022-06-04T17:47:15.467Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T17:47:15.467Z", - "end": "2022-06-04T19:42:01.439Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T19:42:01.439Z", - "end": "2022-06-04T21:36:47.411Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "569253958967885828", - "start": "2022-07-02T10:09:32.376Z", - "end": "2022-07-02T14:57:39.108Z", - "events": [ - { - "start": "2022-07-02T10:09:32.376Z", - "end": "2022-07-02T11:45:34.620Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T11:45:34.620Z", - "end": "2022-07-02T13:21:36.864Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T13:21:36.864Z", - "end": "2022-07-02T14:57:39.108Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "542075586886107149", - "start": "2022-05-30T02:55:17.658Z", - "end": "2022-05-30T06:19:16.997Z", - "events": [ - { - "start": "2022-05-30T02:55:17.658Z", - "end": "2022-05-30T03:36:05.525Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T03:36:05.525Z", - "end": "2022-05-30T04:16:53.392Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T04:16:53.392Z", - "end": "2022-05-30T04:57:41.259Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T04:57:41.259Z", - "end": "2022-05-30T05:38:29.126Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T05:38:29.126Z", - "end": "2022-05-30T06:19:16.993Z", - "state": "IDLE" - } - ] - }, - { - "user": "725502702868293700", - "game": "535869836748783616", - "start": "2022-06-30T00:39:15.359Z", - "end": "2022-06-30T01:48:36.741Z", - "events": [ - { - "start": "2022-06-30T00:39:15.359Z", - "end": "2022-06-30T01:48:36.741Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "519644368735567873", - "start": "2022-04-30T17:06:54.937Z", - "end": "2022-04-30T21:42:32.024Z", - "events": [ - { - "start": "2022-04-30T17:06:54.937Z", - "end": "2022-04-30T21:42:32.024Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302714757313826277", - "game": "512498684211232768", - "start": "2022-07-10T09:14:04.061Z", - "end": "2022-07-10T15:26:04.246Z", - "events": [ - { - "start": "2022-07-10T09:14:04.061Z", - "end": "2022-07-10T10:28:28.098Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T10:28:28.098Z", - "end": "2022-07-10T11:42:52.135Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T11:42:52.135Z", - "end": "2022-07-10T12:57:16.172Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-10T12:57:16.172Z", - "end": "2022-07-10T14:11:40.209Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T14:11:40.209Z", - "end": "2022-07-10T15:26:04.246Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "553697181249437716", - "start": "2022-05-24T18:29:01.184Z", - "end": "2022-05-24T22:45:52.940Z", - "events": [ - { - "start": "2022-05-24T18:29:01.184Z", - "end": "2022-05-24T22:45:52.940Z", - "state": "IDLE" - } - ] - }, - { - "user": "268139232276871676", - "game": "511619499053678668", - "start": "2022-05-24T06:42:09.475Z", - "end": "2022-05-24T10:50:03.598Z", - "events": [ - { - "start": "2022-05-24T06:42:09.475Z", - "end": "2022-05-24T08:04:47.516Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T08:04:47.516Z", - "end": "2022-05-24T09:27:25.557Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T09:27:25.557Z", - "end": "2022-05-24T10:50:03.598Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "535384357536399404", - "start": "2022-04-17T07:11:41.586Z", - "end": "2022-04-17T10:36:59.896Z", - "events": [ - { - "start": "2022-04-17T07:11:41.586Z", - "end": "2022-04-17T08:20:07.689Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T08:20:07.689Z", - "end": "2022-04-17T09:28:33.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T09:28:33.792Z", - "end": "2022-04-17T10:36:59.895Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "600708263053781983", - "game": "614380482620293151", - "start": "2022-06-13T08:31:24.486Z", - "end": "2022-06-13T17:10:05.484Z", - "events": [ - { - "start": "2022-06-13T08:31:24.486Z", - "end": "2022-06-13T17:10:05.484Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "519644267212177418", - "start": "2022-06-17T14:57:33.914Z", - "end": "2022-06-17T17:04:31.990Z", - "events": [ - { - "start": "2022-06-17T14:57:33.914Z", - "end": "2022-06-17T17:04:31.990Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "356875221078245376", - "start": "2022-08-01T14:59:50.962Z", - "end": "2022-08-01T17:26:15.766Z", - "events": [ - { - "start": "2022-08-01T14:59:50.962Z", - "end": "2022-08-01T15:36:27.163Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T15:36:27.163Z", - "end": "2022-08-01T16:13:03.364Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T16:13:03.364Z", - "end": "2022-08-01T16:49:39.565Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-01T16:49:39.565Z", - "end": "2022-08-01T17:26:15.766Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "608700383891121851", - "game": "554573307161214977", - "start": "2022-07-23T19:37:56.758Z", - "end": "2022-07-24T05:12:00.806Z", - "events": [ - { - "start": "2022-07-23T19:37:56.758Z", - "end": "2022-07-24T00:24:58.782Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-24T00:24:58.782Z", - "end": "2022-07-24T05:12:00.806Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "526489929631531009", - "start": "2022-07-20T02:02:37.698Z", - "end": "2022-07-20T07:49:20.876Z", - "events": [ - { - "start": "2022-07-20T02:02:37.698Z", - "end": "2022-07-20T03:29:18.492Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T03:29:18.492Z", - "end": "2022-07-20T04:55:59.286Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T04:55:59.286Z", - "end": "2022-07-20T06:22:40.080Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T06:22:40.080Z", - "end": "2022-07-20T07:49:20.874Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "264503060524837708", - "game": "518088627234930688", - "start": "2022-06-16T08:28:52.388Z", - "end": "2022-06-16T15:02:40.735Z", - "events": [ - { - "start": "2022-06-16T08:28:52.388Z", - "end": "2022-06-16T15:02:40.735Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "576482762446602270", - "start": "2022-06-26T16:01:01.017Z", - "end": "2022-06-26T23:59:58.714Z", - "events": [ - { - "start": "2022-06-26T16:01:01.017Z", - "end": "2022-06-26T18:00:45.441Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T18:00:45.441Z", - "end": "2022-06-26T20:00:29.865Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T20:00:29.865Z", - "end": "2022-06-26T22:00:14.289Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T22:00:14.289Z", - "end": "2022-06-26T23:59:58.713Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "520462578061803588", - "start": "2022-05-03T16:02:28.429Z", - "end": "2022-05-03T16:18:14.827Z", - "events": [ - { - "start": "2022-05-03T16:02:28.429Z", - "end": "2022-05-03T16:05:37.708Z", - "state": "IDLE" - }, - { - "start": "2022-05-03T16:05:37.708Z", - "end": "2022-05-03T16:08:46.987Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T16:08:46.987Z", - "end": "2022-05-03T16:11:56.266Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T16:11:56.266Z", - "end": "2022-05-03T16:15:05.545Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T16:15:05.545Z", - "end": "2022-05-03T16:18:14.824Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "715446191320920764", - "game": "614380482620293151", - "start": "2022-05-31T19:48:20.053Z", - "end": "2022-06-01T05:12:22.823Z", - "events": [ - { - "start": "2022-05-31T19:48:20.053Z", - "end": "2022-05-31T21:41:08.607Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T21:41:08.607Z", - "end": "2022-05-31T23:33:57.161Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T23:33:57.161Z", - "end": "2022-06-01T01:26:45.715Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T01:26:45.715Z", - "end": "2022-06-01T03:19:34.269Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T03:19:34.269Z", - "end": "2022-06-01T05:12:22.823Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "958598056500699208", - "game": "512699108809637890", - "start": "2022-04-27T14:49:53.454Z", - "end": "2022-04-27T18:42:35.662Z", - "events": [ - { - "start": "2022-04-27T14:49:53.454Z", - "end": "2022-04-27T18:42:35.662Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "453350270016457959", - "game": "550277544025522176", - "start": "2022-07-19T06:32:33.464Z", - "end": "2022-07-19T09:08:44.041Z", - "events": [ - { - "start": "2022-07-19T06:32:33.464Z", - "end": "2022-07-19T07:50:38.752Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T07:50:38.752Z", - "end": "2022-07-19T09:08:44.040Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "360264570671216445", - "game": "614380482620293151", - "start": "2022-06-17T18:18:19.939Z", - "end": "2022-06-17T21:55:36.405Z", - "events": [ - { - "start": "2022-06-17T18:18:19.939Z", - "end": "2022-06-17T19:01:47.232Z", - "state": "IDLE" - }, - { - "start": "2022-06-17T19:01:47.232Z", - "end": "2022-06-17T19:45:14.525Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T19:45:14.525Z", - "end": "2022-06-17T20:28:41.818Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T20:28:41.818Z", - "end": "2022-06-17T21:12:09.111Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-17T21:12:09.111Z", - "end": "2022-06-17T21:55:36.404Z", - "state": "IDLE" - } - ] - }, - { - "user": "494763633796983404", - "game": "535869836748783616", - "start": "2022-07-17T14:17:53.419Z", - "end": "2022-07-17T14:40:07.962Z", - "events": [ - { - "start": "2022-07-17T14:17:53.419Z", - "end": "2022-07-17T14:23:27.054Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T14:23:27.054Z", - "end": "2022-07-17T14:29:00.689Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T14:29:00.689Z", - "end": "2022-07-17T14:34:34.324Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-17T14:34:34.324Z", - "end": "2022-07-17T14:40:07.959Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "355708392202112685", - "game": "550277544025522176", - "start": "2022-06-06T11:07:38.689Z", - "end": "2022-06-06T17:53:18.452Z", - "events": [ - { - "start": "2022-06-06T11:07:38.689Z", - "end": "2022-06-06T13:22:51.943Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T13:22:51.943Z", - "end": "2022-06-06T15:38:05.197Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T15:38:05.197Z", - "end": "2022-06-06T17:53:18.451Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "520462578061803588", - "start": "2022-04-21T09:24:24.353Z", - "end": "2022-04-21T10:58:18.598Z", - "events": [ - { - "start": "2022-04-21T09:24:24.353Z", - "end": "2022-04-21T09:47:52.914Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T09:47:52.914Z", - "end": "2022-04-21T10:11:21.475Z", - "state": "IDLE" - }, - { - "start": "2022-04-21T10:11:21.475Z", - "end": "2022-04-21T10:34:50.036Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T10:34:50.036Z", - "end": "2022-04-21T10:58:18.597Z", - "state": "IDLE" - } - ] - }, - { - "user": "302714757313826277", - "game": "512501896896970762", - "start": "2022-07-02T23:40:27.289Z", - "end": "2022-07-03T00:03:03.200Z", - "events": [ - { - "start": "2022-07-02T23:40:27.289Z", - "end": "2022-07-02T23:46:06.266Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T23:46:06.266Z", - "end": "2022-07-02T23:51:45.243Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T23:51:45.243Z", - "end": "2022-07-02T23:57:24.220Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T23:57:24.220Z", - "end": "2022-07-03T00:03:03.197Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "625617695768437507", - "game": "523154344187789312", - "start": "2022-05-27T14:11:43.342Z", - "end": "2022-05-27T21:28:50.929Z", - "events": [ - { - "start": "2022-05-27T14:11:43.342Z", - "end": "2022-05-27T21:28:50.929Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "512498684211232768", - "start": "2022-05-15T09:22:20.607Z", - "end": "2022-05-15T12:47:15.747Z", - "events": [ - { - "start": "2022-05-15T09:22:20.607Z", - "end": "2022-05-15T10:30:38.987Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T10:30:38.987Z", - "end": "2022-05-15T11:38:57.367Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T11:38:57.367Z", - "end": "2022-05-15T12:47:15.747Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "614448244260339712", - "start": "2022-04-26T14:32:03.237Z", - "end": "2022-04-27T00:22:49.253Z", - "events": [ - { - "start": "2022-04-26T14:32:03.237Z", - "end": "2022-04-26T17:48:58.575Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T17:48:58.575Z", - "end": "2022-04-26T21:05:53.913Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T21:05:53.913Z", - "end": "2022-04-27T00:22:49.251Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "538658792298239054", - "game": "572456126872944651", - "start": "2022-08-04T08:23:28.341Z", - "end": "2022-08-04T09:42:13.444Z", - "events": [ - { - "start": "2022-08-04T08:23:28.341Z", - "end": "2022-08-04T08:39:13.361Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-04T08:39:13.361Z", - "end": "2022-08-04T08:54:58.381Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T08:54:58.381Z", - "end": "2022-08-04T09:10:43.401Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T09:10:43.401Z", - "end": "2022-08-04T09:26:28.421Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T09:26:28.421Z", - "end": "2022-08-04T09:42:13.441Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "614380482620293151", - "start": "2022-04-27T05:09:48.762Z", - "end": "2022-04-27T11:40:19.273Z", - "events": [ - { - "start": "2022-04-27T05:09:48.762Z", - "end": "2022-04-27T06:27:54.864Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T06:27:54.864Z", - "end": "2022-04-27T07:46:00.966Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T07:46:00.966Z", - "end": "2022-04-27T09:04:07.068Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T09:04:07.068Z", - "end": "2022-04-27T10:22:13.170Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T10:22:13.170Z", - "end": "2022-04-27T11:40:19.272Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "938976307338486810", - "game": "576482762446602270", - "start": "2022-07-07T02:17:51.351Z", - "end": "2022-07-07T09:04:02.710Z", - "events": [ - { - "start": "2022-07-07T02:17:51.351Z", - "end": "2022-07-07T04:33:15.137Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T04:33:15.137Z", - "end": "2022-07-07T06:48:38.923Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T06:48:38.923Z", - "end": "2022-07-07T09:04:02.709Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "153631479524744694", - "game": "554573307161214977", - "start": "2022-04-30T04:30:27.983Z", - "end": "2022-04-30T05:51:20.691Z", - "events": [ - { - "start": "2022-04-30T04:30:27.983Z", - "end": "2022-04-30T05:51:20.691Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "355708392202112685", - "game": "518088627234930688", - "start": "2022-06-22T08:28:23.817Z", - "end": "2022-06-22T16:34:04.182Z", - "events": [ - { - "start": "2022-06-22T08:28:23.817Z", - "end": "2022-06-22T16:34:04.182Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "517335360477493827", - "game": "512789343157485602", - "start": "2022-06-01T12:32:24.927Z", - "end": "2022-06-01T17:40:30.266Z", - "events": [ - { - "start": "2022-06-01T12:32:24.927Z", - "end": "2022-06-01T17:40:30.266Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "572456126872944651", - "start": "2022-05-30T03:12:56.572Z", - "end": "2022-05-30T10:12:03.031Z", - "events": [ - { - "start": "2022-05-30T03:12:56.572Z", - "end": "2022-05-30T04:36:45.863Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T04:36:45.863Z", - "end": "2022-05-30T06:00:35.154Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T06:00:35.154Z", - "end": "2022-05-30T07:24:24.445Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T07:24:24.445Z", - "end": "2022-05-30T08:48:13.736Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T08:48:13.736Z", - "end": "2022-05-30T10:12:03.027Z", - "state": "IDLE" - } - ] - }, - { - "user": "878082205985098233", - "game": "592976500802846750", - "start": "2022-07-08T14:38:49.334Z", - "end": "2022-07-08T21:31:32.801Z", - "events": [ - { - "start": "2022-07-08T14:38:49.334Z", - "end": "2022-07-08T16:01:22.027Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T16:01:22.027Z", - "end": "2022-07-08T17:23:54.720Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T17:23:54.720Z", - "end": "2022-07-08T18:46:27.413Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T18:46:27.413Z", - "end": "2022-07-08T20:09:00.106Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T20:09:00.106Z", - "end": "2022-07-08T21:31:32.799Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "592976500802846750", - "start": "2022-06-06T03:40:14.060Z", - "end": "2022-06-06T10:07:52.372Z", - "events": [ - { - "start": "2022-06-06T03:40:14.060Z", - "end": "2022-06-06T10:07:52.372Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "560781100197216267", - "start": "2022-07-15T04:52:28.386Z", - "end": "2022-07-15T10:27:49.721Z", - "events": [ - { - "start": "2022-07-15T04:52:28.386Z", - "end": "2022-07-15T07:40:09.053Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-15T07:40:09.053Z", - "end": "2022-07-15T10:27:49.720Z", - "state": "IDLE" - } - ] - }, - { - "user": "878082205985098233", - "game": "514228311661084682", - "start": "2022-07-23T12:14:10.840Z", - "end": "2022-07-23T15:07:49.139Z", - "events": [ - { - "start": "2022-07-23T12:14:10.840Z", - "end": "2022-07-23T13:12:03.606Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-23T13:12:03.606Z", - "end": "2022-07-23T14:09:56.372Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T14:09:56.372Z", - "end": "2022-07-23T15:07:49.138Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "542075586886107149", - "start": "2022-06-23T18:20:48.593Z", - "end": "2022-06-23T21:44:02.645Z", - "events": [ - { - "start": "2022-06-23T18:20:48.593Z", - "end": "2022-06-23T19:11:37.106Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T19:11:37.106Z", - "end": "2022-06-23T20:02:25.619Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T20:02:25.619Z", - "end": "2022-06-23T20:53:14.132Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T20:53:14.132Z", - "end": "2022-06-23T21:44:02.645Z", - "state": "IDLE" - } - ] - }, - { - "user": "791267126190249625", - "game": "512498684211232768", - "start": "2022-07-09T06:38:33.122Z", - "end": "2022-07-09T11:59:48.587Z", - "events": [ - { - "start": "2022-07-09T06:38:33.122Z", - "end": "2022-07-09T07:58:51.988Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T07:58:51.988Z", - "end": "2022-07-09T09:19:10.854Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T09:19:10.854Z", - "end": "2022-07-09T10:39:29.720Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T10:39:29.720Z", - "end": "2022-07-09T11:59:48.586Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "713444659295913502", - "game": "512498684211232768", - "start": "2022-04-19T21:25:59.242Z", - "end": "2022-04-20T00:37:22.287Z", - "events": [ - { - "start": "2022-04-19T21:25:59.242Z", - "end": "2022-04-19T22:13:50.003Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T22:13:50.003Z", - "end": "2022-04-19T23:01:40.764Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T23:01:40.764Z", - "end": "2022-04-19T23:49:31.525Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T23:49:31.525Z", - "end": "2022-04-20T00:37:22.286Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "521842831262875670", - "start": "2022-06-14T19:02:07.364Z", - "end": "2022-06-14T21:45:00.744Z", - "events": [ - { - "start": "2022-06-14T19:02:07.364Z", - "end": "2022-06-14T21:45:00.744Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "576482762446602270", - "start": "2022-06-04T03:29:47.351Z", - "end": "2022-06-04T11:20:02.790Z", - "events": [ - { - "start": "2022-06-04T03:29:47.351Z", - "end": "2022-06-04T06:06:32.497Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T06:06:32.497Z", - "end": "2022-06-04T08:43:17.643Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T08:43:17.643Z", - "end": "2022-06-04T11:20:02.789Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "623295654897148670", - "game": "535371564850479134", - "start": "2022-07-24T18:30:36.210Z", - "end": "2022-07-24T21:09:27.554Z", - "events": [ - { - "start": "2022-07-24T18:30:36.210Z", - "end": "2022-07-24T19:23:33.324Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T19:23:33.324Z", - "end": "2022-07-24T20:16:30.438Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T20:16:30.438Z", - "end": "2022-07-24T21:09:27.552Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "510199020782747732", - "start": "2022-04-25T04:44:47.806Z", - "end": "2022-04-25T12:13:41.672Z", - "events": [ - { - "start": "2022-04-25T04:44:47.806Z", - "end": "2022-04-25T12:13:41.672Z", - "state": "IDLE" - } - ] - }, - { - "user": "538658792298239054", - "game": "592976500802846750", - "start": "2022-07-11T17:37:29.240Z", - "end": "2022-07-11T18:36:33.287Z", - "events": [ - { - "start": "2022-07-11T17:37:29.240Z", - "end": "2022-07-11T17:49:18.049Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T17:49:18.049Z", - "end": "2022-07-11T18:01:06.858Z", - "state": "IDLE" - }, - { - "start": "2022-07-11T18:01:06.858Z", - "end": "2022-07-11T18:12:55.667Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T18:12:55.667Z", - "end": "2022-07-11T18:24:44.476Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T18:24:44.476Z", - "end": "2022-07-11T18:36:33.285Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "584489284152985092", - "game": "560781100197216267", - "start": "2022-06-05T22:15:10.661Z", - "end": "2022-06-06T04:20:42.034Z", - "events": [ - { - "start": "2022-06-05T22:15:10.661Z", - "end": "2022-06-06T04:20:42.034Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "444246898747584433", - "game": "542474758835535872", - "start": "2022-07-30T19:46:20.109Z", - "end": "2022-07-31T03:09:13.790Z", - "events": [ - { - "start": "2022-07-30T19:46:20.109Z", - "end": "2022-07-30T22:13:58.002Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T22:13:58.002Z", - "end": "2022-07-31T00:41:35.895Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T00:41:35.895Z", - "end": "2022-07-31T03:09:13.788Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "463820732483181525", - "game": "535384357536399404", - "start": "2022-04-25T09:25:35.500Z", - "end": "2022-04-25T18:49:38.962Z", - "events": [ - { - "start": "2022-04-25T09:25:35.500Z", - "end": "2022-04-25T18:49:38.962Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "131482253203487270", - "game": "512789427462995988", - "start": "2022-04-22T16:21:59.911Z", - "end": "2022-04-22T23:33:51.713Z", - "events": [ - { - "start": "2022-04-22T16:21:59.911Z", - "end": "2022-04-22T17:48:22.271Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T17:48:22.271Z", - "end": "2022-04-22T19:14:44.631Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T19:14:44.631Z", - "end": "2022-04-22T20:41:06.991Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T20:41:06.991Z", - "end": "2022-04-22T22:07:29.351Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T22:07:29.351Z", - "end": "2022-04-22T23:33:51.711Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "575412499399180288", - "start": "2022-05-10T07:18:13.811Z", - "end": "2022-05-10T15:17:13.334Z", - "events": [ - { - "start": "2022-05-10T07:18:13.811Z", - "end": "2022-05-10T09:57:53.652Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T09:57:53.652Z", - "end": "2022-05-10T12:37:33.493Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T12:37:33.493Z", - "end": "2022-05-10T15:17:13.334Z", - "state": "IDLE" - } - ] - }, - { - "user": "182925797752958092", - "game": "356875221078245376", - "start": "2022-07-29T04:36:50.357Z", - "end": "2022-07-29T10:28:02.507Z", - "events": [ - { - "start": "2022-07-29T04:36:50.357Z", - "end": "2022-07-29T10:28:02.507Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "878082205985098233", - "game": "518088627234930688", - "start": "2022-07-03T21:15:55.693Z", - "end": "2022-07-04T06:33:00.776Z", - "events": [ - { - "start": "2022-07-03T21:15:55.693Z", - "end": "2022-07-04T00:21:37.387Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-04T00:21:37.387Z", - "end": "2022-07-04T03:27:19.081Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T03:27:19.081Z", - "end": "2022-07-04T06:33:00.775Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "467658810442648809", - "game": "512789120234422301", - "start": "2022-05-24T13:31:28.741Z", - "end": "2022-05-24T23:02:01.354Z", - "events": [ - { - "start": "2022-05-24T13:31:28.741Z", - "end": "2022-05-24T18:16:45.047Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T18:16:45.047Z", - "end": "2022-05-24T23:02:01.353Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "512789343157485602", - "start": "2022-05-02T00:21:56.301Z", - "end": "2022-05-02T04:17:54.250Z", - "events": [ - { - "start": "2022-05-02T00:21:56.301Z", - "end": "2022-05-02T01:20:55.788Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T01:20:55.788Z", - "end": "2022-05-02T02:19:55.275Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T02:19:55.275Z", - "end": "2022-05-02T03:18:54.762Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T03:18:54.762Z", - "end": "2022-05-02T04:17:54.249Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "530454325214969866", - "start": "2022-04-23T01:50:41.894Z", - "end": "2022-04-23T03:19:50.026Z", - "events": [ - { - "start": "2022-04-23T01:50:41.894Z", - "end": "2022-04-23T02:35:15.960Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T02:35:15.960Z", - "end": "2022-04-23T03:19:50.026Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "137536289023624121", - "game": "569008830701240340", - "start": "2022-04-24T08:57:56.302Z", - "end": "2022-04-24T09:08:15.050Z", - "events": [ - { - "start": "2022-04-24T08:57:56.302Z", - "end": "2022-04-24T09:08:15.050Z", - "state": "IDLE" - } - ] - }, - { - "user": "346608907417001845", - "game": "510199020782747732", - "start": "2022-05-07T22:49:52.451Z", - "end": "2022-05-08T08:28:09.394Z", - "events": [ - { - "start": "2022-05-07T22:49:52.451Z", - "end": "2022-05-08T00:45:31.839Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T00:45:31.839Z", - "end": "2022-05-08T02:41:11.227Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T02:41:11.227Z", - "end": "2022-05-08T04:36:50.615Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T04:36:50.615Z", - "end": "2022-05-08T06:32:30.003Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T06:32:30.003Z", - "end": "2022-05-08T08:28:09.391Z", - "state": "IDLE" - } - ] - }, - { - "user": "360264570671216445", - "game": "546175179542364160", - "start": "2022-05-15T07:26:21.612Z", - "end": "2022-05-15T09:47:05.650Z", - "events": [ - { - "start": "2022-05-15T07:26:21.612Z", - "end": "2022-05-15T09:47:05.650Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "153631479524744694", - "game": "540120593576493057", - "start": "2022-06-08T11:41:23.077Z", - "end": "2022-06-08T20:25:34.099Z", - "events": [ - { - "start": "2022-06-08T11:41:23.077Z", - "end": "2022-06-08T14:36:06.751Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T14:36:06.751Z", - "end": "2022-06-08T17:30:50.425Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T17:30:50.425Z", - "end": "2022-06-08T20:25:34.099Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "406850294055619241", - "game": "569008830701240340", - "start": "2022-04-22T06:10:11.192Z", - "end": "2022-04-22T10:36:15.978Z", - "events": [ - { - "start": "2022-04-22T06:10:11.192Z", - "end": "2022-04-22T10:36:15.978Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "700136079562375258", - "start": "2022-06-29T07:42:31.913Z", - "end": "2022-06-29T09:38:56.408Z", - "events": [ - { - "start": "2022-06-29T07:42:31.913Z", - "end": "2022-06-29T09:38:56.408Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "511619499053678668", - "start": "2022-05-14T16:20:01.303Z", - "end": "2022-05-15T00:59:05.032Z", - "events": [ - { - "start": "2022-05-14T16:20:01.303Z", - "end": "2022-05-14T19:13:02.546Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T19:13:02.546Z", - "end": "2022-05-14T22:06:03.789Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T22:06:03.789Z", - "end": "2022-05-15T00:59:05.032Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "725502702868293700", - "game": "614448244260339712", - "start": "2022-07-11T09:48:31.377Z", - "end": "2022-07-11T12:25:05.602Z", - "events": [ - { - "start": "2022-07-11T09:48:31.377Z", - "end": "2022-07-11T11:06:48.489Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T11:06:48.489Z", - "end": "2022-07-11T12:25:05.601Z", - "state": "IDLE" - } - ] - }, - { - "user": "713444659295913502", - "game": "535869836748783616", - "start": "2022-04-22T09:31:33.231Z", - "end": "2022-04-22T17:05:21.827Z", - "events": [ - { - "start": "2022-04-22T09:31:33.231Z", - "end": "2022-04-22T11:02:18.950Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T11:02:18.950Z", - "end": "2022-04-22T12:33:04.669Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T12:33:04.669Z", - "end": "2022-04-22T14:03:50.388Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-22T14:03:50.388Z", - "end": "2022-04-22T15:34:36.107Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-22T15:34:36.107Z", - "end": "2022-04-22T17:05:21.826Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "568387317892070397", - "game": "597588168178663434", - "start": "2022-04-22T16:55:39.326Z", - "end": "2022-04-23T02:07:41.556Z", - "events": [ - { - "start": "2022-04-22T16:55:39.326Z", - "end": "2022-04-22T19:13:39.883Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T19:13:39.883Z", - "end": "2022-04-22T21:31:40.440Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T21:31:40.440Z", - "end": "2022-04-22T23:49:40.997Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T23:49:40.997Z", - "end": "2022-04-23T02:07:41.554Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "500919588166575890", - "game": "546175179542364160", - "start": "2022-06-09T01:14:43.207Z", - "end": "2022-06-09T07:39:00.810Z", - "events": [ - { - "start": "2022-06-09T01:14:43.207Z", - "end": "2022-06-09T02:50:47.607Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-09T02:50:47.607Z", - "end": "2022-06-09T04:26:52.007Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-09T04:26:52.007Z", - "end": "2022-06-09T06:02:56.407Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-09T06:02:56.407Z", - "end": "2022-06-09T07:39:00.807Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "597860020935327787", - "start": "2022-07-24T09:02:50.062Z", - "end": "2022-07-24T12:10:51.877Z", - "events": [ - { - "start": "2022-07-24T09:02:50.062Z", - "end": "2022-07-24T10:36:50.969Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T10:36:50.969Z", - "end": "2022-07-24T12:10:51.876Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "530539422724200800", - "game": "700136079562375258", - "start": "2022-04-20T14:04:31.228Z", - "end": "2022-04-20T21:14:28.962Z", - "events": [ - { - "start": "2022-04-20T14:04:31.228Z", - "end": "2022-04-20T15:30:30.774Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T15:30:30.774Z", - "end": "2022-04-20T16:56:30.320Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T16:56:30.320Z", - "end": "2022-04-20T18:22:29.866Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-20T18:22:29.866Z", - "end": "2022-04-20T19:48:29.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-20T19:48:29.412Z", - "end": "2022-04-20T21:14:28.958Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "872035310834814925", - "game": "535384357536399404", - "start": "2022-06-20T13:17:58.126Z", - "end": "2022-06-20T14:11:40.301Z", - "events": [ - { - "start": "2022-06-20T13:17:58.126Z", - "end": "2022-06-20T13:44:49.213Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T13:44:49.213Z", - "end": "2022-06-20T14:11:40.300Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "549054179973094329", - "game": "550277544025522176", - "start": "2022-05-01T23:12:26.390Z", - "end": "2022-05-02T06:43:29.514Z", - "events": [ - { - "start": "2022-05-01T23:12:26.390Z", - "end": "2022-05-02T06:43:29.514Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "575412499399180288", - "start": "2022-06-02T05:29:42.839Z", - "end": "2022-06-02T11:10:48.217Z", - "events": [ - { - "start": "2022-06-02T05:29:42.839Z", - "end": "2022-06-02T06:37:55.914Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T06:37:55.914Z", - "end": "2022-06-02T07:46:08.989Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T07:46:08.989Z", - "end": "2022-06-02T08:54:22.064Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T08:54:22.064Z", - "end": "2022-06-02T10:02:35.139Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T10:02:35.139Z", - "end": "2022-06-02T11:10:48.214Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "530539422724200800", - "game": "597588168178663434", - "start": "2022-07-07T18:32:10.280Z", - "end": "2022-07-07T18:57:56.003Z", - "events": [ - { - "start": "2022-07-07T18:32:10.280Z", - "end": "2022-07-07T18:45:03.141Z", - "state": "IDLE" - }, - { - "start": "2022-07-07T18:45:03.141Z", - "end": "2022-07-07T18:57:56.002Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "554921822626381879", - "start": "2022-06-01T12:00:26.612Z", - "end": "2022-06-01T13:58:04.762Z", - "events": [ - { - "start": "2022-06-01T12:00:26.612Z", - "end": "2022-06-01T12:39:39.328Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-01T12:39:39.328Z", - "end": "2022-06-01T13:18:52.044Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-01T13:18:52.044Z", - "end": "2022-06-01T13:58:04.760Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "658550407298256890", - "game": "520462578061803588", - "start": "2022-07-03T20:47:34.754Z", - "end": "2022-07-04T00:14:26.537Z", - "events": [ - { - "start": "2022-07-03T20:47:34.754Z", - "end": "2022-07-03T21:39:17.699Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T21:39:17.699Z", - "end": "2022-07-03T22:31:00.644Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T22:31:00.644Z", - "end": "2022-07-03T23:22:43.589Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T23:22:43.589Z", - "end": "2022-07-04T00:14:26.534Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "512789427462995988", - "start": "2022-06-13T03:46:31.132Z", - "end": "2022-06-13T12:14:50.490Z", - "events": [ - { - "start": "2022-06-13T03:46:31.132Z", - "end": "2022-06-13T06:35:57.584Z", - "state": "IDLE" - }, - { - "start": "2022-06-13T06:35:57.584Z", - "end": "2022-06-13T09:25:24.036Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T09:25:24.036Z", - "end": "2022-06-13T12:14:50.488Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "911848869344266044", - "game": "520453007578628124", - "start": "2022-05-12T15:09:35.052Z", - "end": "2022-05-13T00:02:38.570Z", - "events": [ - { - "start": "2022-05-12T15:09:35.052Z", - "end": "2022-05-12T18:07:16.224Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T18:07:16.224Z", - "end": "2022-05-12T21:04:57.396Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T21:04:57.396Z", - "end": "2022-05-13T00:02:38.568Z", - "state": "IDLE" - } - ] - }, - { - "user": "686825797960121847", - "game": "512699108809637890", - "start": "2022-05-14T13:24:26.297Z", - "end": "2022-05-14T17:34:20.881Z", - "events": [ - { - "start": "2022-05-14T13:24:26.297Z", - "end": "2022-05-14T15:29:23.589Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T15:29:23.589Z", - "end": "2022-05-14T17:34:20.881Z", - "state": "IDLE" - } - ] - }, - { - "user": "538658792298239054", - "game": "542475118396309528", - "start": "2022-04-21T05:56:56.368Z", - "end": "2022-04-21T14:30:36.486Z", - "events": [ - { - "start": "2022-04-21T05:56:56.368Z", - "end": "2022-04-21T08:05:21.397Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-21T08:05:21.397Z", - "end": "2022-04-21T10:13:46.426Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T10:13:46.426Z", - "end": "2022-04-21T12:22:11.455Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T12:22:11.455Z", - "end": "2022-04-21T14:30:36.484Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "521842831262875670", - "start": "2022-06-06T13:31:00.556Z", - "end": "2022-06-06T18:53:49.151Z", - "events": [ - { - "start": "2022-06-06T13:31:00.556Z", - "end": "2022-06-06T14:51:42.704Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T14:51:42.704Z", - "end": "2022-06-06T16:12:24.852Z", - "state": "IDLE" - }, - { - "start": "2022-06-06T16:12:24.852Z", - "end": "2022-06-06T17:33:07.000Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T17:33:07.000Z", - "end": "2022-06-06T18:53:49.148Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "762163239408560283", - "game": "512789343157485602", - "start": "2022-07-11T23:28:04.372Z", - "end": "2022-07-12T08:53:12.876Z", - "events": [ - { - "start": "2022-07-11T23:28:04.372Z", - "end": "2022-07-12T02:36:27.206Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T02:36:27.206Z", - "end": "2022-07-12T05:44:50.040Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T05:44:50.040Z", - "end": "2022-07-12T08:53:12.874Z", - "state": "IDLE" - } - ] - }, - { - "user": "453350270016457959", - "game": "558547388583772201", - "start": "2022-06-04T20:15:54.457Z", - "end": "2022-06-05T06:18:05.609Z", - "events": [ - { - "start": "2022-06-04T20:15:54.457Z", - "end": "2022-06-04T22:46:27.245Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T22:46:27.245Z", - "end": "2022-06-05T01:17:00.033Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T01:17:00.033Z", - "end": "2022-06-05T03:47:32.821Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T03:47:32.821Z", - "end": "2022-06-05T06:18:05.609Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "200801427122341912", - "game": "508057374875975682", - "start": "2022-04-26T17:45:19.558Z", - "end": "2022-04-27T03:10:56.303Z", - "events": [ - { - "start": "2022-04-26T17:45:19.558Z", - "end": "2022-04-27T03:10:56.303Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "535869836748783616", - "start": "2022-05-11T18:43:31.402Z", - "end": "2022-05-11T21:35:37.502Z", - "events": [ - { - "start": "2022-05-11T18:43:31.402Z", - "end": "2022-05-11T19:17:56.622Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-11T19:17:56.622Z", - "end": "2022-05-11T19:52:21.842Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T19:52:21.842Z", - "end": "2022-05-11T20:26:47.062Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T20:26:47.062Z", - "end": "2022-05-11T21:01:12.282Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T21:01:12.282Z", - "end": "2022-05-11T21:35:37.502Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "606163888052109312", - "start": "2022-08-01T08:02:58.741Z", - "end": "2022-08-01T10:22:30.374Z", - "events": [ - { - "start": "2022-08-01T08:02:58.741Z", - "end": "2022-08-01T08:37:51.649Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T08:37:51.649Z", - "end": "2022-08-01T09:12:44.557Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T09:12:44.557Z", - "end": "2022-08-01T09:47:37.465Z", - "state": "IDLE" - }, - { - "start": "2022-08-01T09:47:37.465Z", - "end": "2022-08-01T10:22:30.373Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "452396069922968436", - "game": "700136079562375258", - "start": "2022-04-15T15:56:33.921Z", - "end": "2022-04-15T18:42:08.600Z", - "events": [ - { - "start": "2022-04-15T15:56:33.921Z", - "end": "2022-04-15T16:29:40.856Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T16:29:40.856Z", - "end": "2022-04-15T17:02:47.791Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T17:02:47.791Z", - "end": "2022-04-15T17:35:54.726Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T17:35:54.726Z", - "end": "2022-04-15T18:09:01.661Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T18:09:01.661Z", - "end": "2022-04-15T18:42:08.596Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "841397740041930984", - "game": "575412499399180288", - "start": "2022-08-03T05:30:53.211Z", - "end": "2022-08-03T11:31:34.687Z", - "events": [ - { - "start": "2022-08-03T05:30:53.211Z", - "end": "2022-08-03T11:31:34.687Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "725502702868293700", - "game": "511619499053678668", - "start": "2022-08-01T21:55:00.807Z", - "end": "2022-08-02T01:02:12.074Z", - "events": [ - { - "start": "2022-08-01T21:55:00.807Z", - "end": "2022-08-01T22:57:24.562Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T22:57:24.562Z", - "end": "2022-08-01T23:59:48.317Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-01T23:59:48.317Z", - "end": "2022-08-02T01:02:12.072Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "542475118396309528", - "start": "2022-05-06T12:53:15.570Z", - "end": "2022-05-06T20:23:14.460Z", - "events": [ - { - "start": "2022-05-06T12:53:15.570Z", - "end": "2022-05-06T15:23:15.200Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T15:23:15.200Z", - "end": "2022-05-06T17:53:14.830Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T17:53:14.830Z", - "end": "2022-05-06T20:23:14.460Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "590467327095087095", - "game": "546175179542364160", - "start": "2022-06-09T05:47:58.136Z", - "end": "2022-06-09T11:14:33.700Z", - "events": [ - { - "start": "2022-06-09T05:47:58.136Z", - "end": "2022-06-09T11:14:33.700Z", - "state": "IDLE" - } - ] - }, - { - "user": "395281349698024181", - "game": "575412499399180288", - "start": "2022-07-13T19:56:34.201Z", - "end": "2022-07-14T00:07:43.565Z", - "events": [ - { - "start": "2022-07-13T19:56:34.201Z", - "end": "2022-07-13T20:46:48.073Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T20:46:48.073Z", - "end": "2022-07-13T21:37:01.945Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T21:37:01.945Z", - "end": "2022-07-13T22:27:15.817Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T22:27:15.817Z", - "end": "2022-07-13T23:17:29.689Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-13T23:17:29.689Z", - "end": "2022-07-14T00:07:43.561Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "519644267212177418", - "start": "2022-07-29T07:39:28.590Z", - "end": "2022-07-29T13:43:42.038Z", - "events": [ - { - "start": "2022-07-29T07:39:28.590Z", - "end": "2022-07-29T09:10:31.952Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T09:10:31.952Z", - "end": "2022-07-29T10:41:35.314Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T10:41:35.314Z", - "end": "2022-07-29T12:12:38.676Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T12:12:38.676Z", - "end": "2022-07-29T13:43:42.038Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "600708263053781983", - "game": "614380482620293151", - "start": "2022-06-04T13:08:22.684Z", - "end": "2022-06-04T14:23:52.756Z", - "events": [ - { - "start": "2022-06-04T13:08:22.684Z", - "end": "2022-06-04T13:46:07.720Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T13:46:07.720Z", - "end": "2022-06-04T14:23:52.756Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "346608907417001845", - "game": "512789427462995988", - "start": "2022-06-12T12:43:36.910Z", - "end": "2022-06-12T15:51:47.887Z", - "events": [ - { - "start": "2022-06-12T12:43:36.910Z", - "end": "2022-06-12T13:30:39.654Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T13:30:39.654Z", - "end": "2022-06-12T14:17:42.398Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T14:17:42.398Z", - "end": "2022-06-12T15:04:45.142Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T15:04:45.142Z", - "end": "2022-06-12T15:51:47.886Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "568387317892070397", - "game": "514228311661084682", - "start": "2022-05-04T12:17:03.865Z", - "end": "2022-05-04T22:20:02.633Z", - "events": [ - { - "start": "2022-05-04T12:17:03.865Z", - "end": "2022-05-04T15:38:03.454Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T15:38:03.454Z", - "end": "2022-05-04T18:59:03.043Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T18:59:03.043Z", - "end": "2022-05-04T22:20:02.632Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "200801427122341912", - "game": "575412499399180288", - "start": "2022-06-21T14:16:51.510Z", - "end": "2022-06-21T21:55:51.818Z", - "events": [ - { - "start": "2022-06-21T14:16:51.510Z", - "end": "2022-06-21T16:11:36.587Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T16:11:36.587Z", - "end": "2022-06-21T18:06:21.664Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T18:06:21.664Z", - "end": "2022-06-21T20:01:06.741Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T20:01:06.741Z", - "end": "2022-06-21T21:55:51.818Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "538658792298239054", - "game": "526489929631531009", - "start": "2022-05-26T13:59:58.395Z", - "end": "2022-05-26T22:08:23.812Z", - "events": [ - { - "start": "2022-05-26T13:59:58.395Z", - "end": "2022-05-26T16:42:46.867Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T16:42:46.867Z", - "end": "2022-05-26T19:25:35.339Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T19:25:35.339Z", - "end": "2022-05-26T22:08:23.811Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "537786518874514211", - "game": "519644267212177418", - "start": "2022-06-14T09:03:34.398Z", - "end": "2022-06-14T16:54:45.806Z", - "events": [ - { - "start": "2022-06-14T09:03:34.398Z", - "end": "2022-06-14T11:40:38.200Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-14T11:40:38.200Z", - "end": "2022-06-14T14:17:42.002Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T14:17:42.002Z", - "end": "2022-06-14T16:54:45.804Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "453350270016457959", - "game": "526489929631531009", - "start": "2022-06-26T16:50:54.834Z", - "end": "2022-06-27T01:32:12.201Z", - "events": [ - { - "start": "2022-06-26T16:50:54.834Z", - "end": "2022-06-26T21:11:33.517Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-26T21:11:33.517Z", - "end": "2022-06-27T01:32:12.200Z", - "state": "IDLE" - } - ] - }, - { - "user": "608700383891121851", - "game": "614448244260339712", - "start": "2022-04-23T21:52:33.206Z", - "end": "2022-04-24T07:23:43.296Z", - "events": [ - { - "start": "2022-04-23T21:52:33.206Z", - "end": "2022-04-24T02:38:08.251Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T02:38:08.251Z", - "end": "2022-04-24T07:23:43.296Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "881335427428668054", - "game": "592976500802846750", - "start": "2022-06-04T17:08:05.418Z", - "end": "2022-06-04T20:33:40.431Z", - "events": [ - { - "start": "2022-06-04T17:08:05.418Z", - "end": "2022-06-04T17:49:12.420Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T17:49:12.420Z", - "end": "2022-06-04T18:30:19.422Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T18:30:19.422Z", - "end": "2022-06-04T19:11:26.424Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T19:11:26.424Z", - "end": "2022-06-04T19:52:33.426Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T19:52:33.426Z", - "end": "2022-06-04T20:33:40.428Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "430732724825949756", - "game": "700136079562375258", - "start": "2022-05-26T05:07:08.185Z", - "end": "2022-05-26T09:10:06.100Z", - "events": [ - { - "start": "2022-05-26T05:07:08.185Z", - "end": "2022-05-26T06:07:52.663Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-26T06:07:52.663Z", - "end": "2022-05-26T07:08:37.141Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-26T07:08:37.141Z", - "end": "2022-05-26T08:09:21.619Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T08:09:21.619Z", - "end": "2022-05-26T09:10:06.097Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "542474758835535872", - "start": "2022-06-03T13:38:29.657Z", - "end": "2022-06-03T15:48:35.300Z", - "events": [ - { - "start": "2022-06-03T13:38:29.657Z", - "end": "2022-06-03T14:11:01.067Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T14:11:01.067Z", - "end": "2022-06-03T14:43:32.477Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T14:43:32.477Z", - "end": "2022-06-03T15:16:03.887Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T15:16:03.887Z", - "end": "2022-06-03T15:48:35.297Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "517335360477493827", - "game": "597588168178663434", - "start": "2022-05-04T00:49:45.373Z", - "end": "2022-05-04T09:55:48.396Z", - "events": [ - { - "start": "2022-05-04T00:49:45.373Z", - "end": "2022-05-04T02:38:57.977Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T02:38:57.977Z", - "end": "2022-05-04T04:28:10.581Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-04T04:28:10.581Z", - "end": "2022-05-04T06:17:23.185Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T06:17:23.185Z", - "end": "2022-05-04T08:06:35.789Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T08:06:35.789Z", - "end": "2022-05-04T09:55:48.393Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "554573307161214977", - "start": "2022-06-30T02:20:50.402Z", - "end": "2022-06-30T03:03:45.003Z", - "events": [ - { - "start": "2022-06-30T02:20:50.402Z", - "end": "2022-06-30T02:35:08.602Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-30T02:35:08.602Z", - "end": "2022-06-30T02:49:26.802Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-30T02:49:26.802Z", - "end": "2022-06-30T03:03:45.002Z", - "state": "IDLE" - } - ] - }, - { - "user": "600708263053781983", - "game": "535869836748783616", - "start": "2022-07-22T11:49:00.115Z", - "end": "2022-07-22T12:14:30.049Z", - "events": [ - { - "start": "2022-07-22T11:49:00.115Z", - "end": "2022-07-22T12:14:30.049Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "514228311661084682", - "start": "2022-04-13T18:31:15.085Z", - "end": "2022-04-13T19:14:10.947Z", - "events": [ - { - "start": "2022-04-13T18:31:15.085Z", - "end": "2022-04-13T19:14:10.947Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "560781100197216267", - "start": "2022-04-16T02:49:18.953Z", - "end": "2022-04-16T05:04:34.301Z", - "events": [ - { - "start": "2022-04-16T02:49:18.953Z", - "end": "2022-04-16T03:16:22.022Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-16T03:16:22.022Z", - "end": "2022-04-16T03:43:25.091Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T03:43:25.091Z", - "end": "2022-04-16T04:10:28.160Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-16T04:10:28.160Z", - "end": "2022-04-16T04:37:31.229Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-16T04:37:31.229Z", - "end": "2022-04-16T05:04:34.298Z", - "state": "IDLE" - } - ] - }, - { - "user": "530539422724200800", - "game": "558547388583772201", - "start": "2022-04-21T05:03:25.967Z", - "end": "2022-04-21T08:47:33.695Z", - "events": [ - { - "start": "2022-04-21T05:03:25.967Z", - "end": "2022-04-21T06:55:29.831Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-21T06:55:29.831Z", - "end": "2022-04-21T08:47:33.695Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "406850294055619241", - "game": "554573307161214977", - "start": "2022-04-14T11:49:32.856Z", - "end": "2022-04-14T20:24:29.514Z", - "events": [ - { - "start": "2022-04-14T11:49:32.856Z", - "end": "2022-04-14T13:58:17.020Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-14T13:58:17.020Z", - "end": "2022-04-14T16:07:01.184Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T16:07:01.184Z", - "end": "2022-04-14T18:15:45.348Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T18:15:45.348Z", - "end": "2022-04-14T20:24:29.512Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "872035310834814925", - "game": "511619499053678668", - "start": "2022-04-27T03:00:09.504Z", - "end": "2022-04-27T08:50:41.072Z", - "events": [ - { - "start": "2022-04-27T03:00:09.504Z", - "end": "2022-04-27T04:57:00.026Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T04:57:00.026Z", - "end": "2022-04-27T06:53:50.548Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T06:53:50.548Z", - "end": "2022-04-27T08:50:41.070Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "385692164951394422", - "game": "542475118396309528", - "start": "2022-06-13T15:59:52.098Z", - "end": "2022-06-13T22:05:19.683Z", - "events": [ - { - "start": "2022-06-13T15:59:52.098Z", - "end": "2022-06-13T17:31:13.994Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T17:31:13.994Z", - "end": "2022-06-13T19:02:35.890Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T19:02:35.890Z", - "end": "2022-06-13T20:33:57.786Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T20:33:57.786Z", - "end": "2022-06-13T22:05:19.682Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "821608522568592914", - "game": "526489929631531009", - "start": "2022-04-20T02:22:18.500Z", - "end": "2022-04-20T08:18:08.462Z", - "events": [ - { - "start": "2022-04-20T02:22:18.500Z", - "end": "2022-04-20T08:18:08.462Z", - "state": "IDLE" - } - ] - }, - { - "user": "161887854890745672", - "game": "523154344187789312", - "start": "2022-07-25T04:00:14.188Z", - "end": "2022-07-25T13:01:39.952Z", - "events": [ - { - "start": "2022-07-25T04:00:14.188Z", - "end": "2022-07-25T08:30:57.070Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-25T08:30:57.070Z", - "end": "2022-07-25T13:01:39.952Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951234649334557435", - "game": "558547388583772201", - "start": "2022-06-20T17:22:31.144Z", - "end": "2022-06-20T22:50:56.950Z", - "events": [ - { - "start": "2022-06-20T17:22:31.144Z", - "end": "2022-06-20T18:28:12.305Z", - "state": "IDLE" - }, - { - "start": "2022-06-20T18:28:12.305Z", - "end": "2022-06-20T19:33:53.466Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T19:33:53.466Z", - "end": "2022-06-20T20:39:34.627Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T20:39:34.627Z", - "end": "2022-06-20T21:45:15.788Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T21:45:15.788Z", - "end": "2022-06-20T22:50:56.949Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "430732724825949756", - "game": "597588168178663434", - "start": "2022-05-30T02:43:52.230Z", - "end": "2022-05-30T11:27:27.766Z", - "events": [ - { - "start": "2022-05-30T02:43:52.230Z", - "end": "2022-05-30T07:05:39.998Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T07:05:39.998Z", - "end": "2022-05-30T11:27:27.766Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "356875221078245376", - "start": "2022-06-21T18:59:30.361Z", - "end": "2022-06-22T03:38:26.907Z", - "events": [ - { - "start": "2022-06-21T18:59:30.361Z", - "end": "2022-06-22T03:38:26.907Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "285410867718320291", - "game": "606163888052109312", - "start": "2022-07-02T16:12:52.266Z", - "end": "2022-07-02T21:28:03.551Z", - "events": [ - { - "start": "2022-07-02T16:12:52.266Z", - "end": "2022-07-02T17:15:54.523Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T17:15:54.523Z", - "end": "2022-07-02T18:18:56.780Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T18:18:56.780Z", - "end": "2022-07-02T19:21:59.037Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T19:21:59.037Z", - "end": "2022-07-02T20:25:01.294Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T20:25:01.294Z", - "end": "2022-07-02T21:28:03.551Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "575412499399180288", - "start": "2022-05-18T11:52:48.864Z", - "end": "2022-05-18T15:45:35.666Z", - "events": [ - { - "start": "2022-05-18T11:52:48.864Z", - "end": "2022-05-18T13:10:24.464Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T13:10:24.464Z", - "end": "2022-05-18T14:28:00.064Z", - "state": "IDLE" - }, - { - "start": "2022-05-18T14:28:00.064Z", - "end": "2022-05-18T15:45:35.664Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "514228311661084682", - "start": "2022-07-20T15:34:59.036Z", - "end": "2022-07-20T20:46:30.063Z", - "events": [ - { - "start": "2022-07-20T15:34:59.036Z", - "end": "2022-07-20T16:52:51.792Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T16:52:51.792Z", - "end": "2022-07-20T18:10:44.548Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-20T18:10:44.548Z", - "end": "2022-07-20T19:28:37.304Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T19:28:37.304Z", - "end": "2022-07-20T20:46:30.060Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512789343157485602", - "start": "2022-07-07T01:17:18.960Z", - "end": "2022-07-07T09:24:01.012Z", - "events": [ - { - "start": "2022-07-07T01:17:18.960Z", - "end": "2022-07-07T02:54:39.370Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T02:54:39.370Z", - "end": "2022-07-07T04:31:59.780Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T04:31:59.780Z", - "end": "2022-07-07T06:09:20.190Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T06:09:20.190Z", - "end": "2022-07-07T07:46:40.600Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T07:46:40.600Z", - "end": "2022-07-07T09:24:01.010Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "584069374462394368", - "start": "2022-04-19T15:12:17.069Z", - "end": "2022-04-19T15:27:25.464Z", - "events": [ - { - "start": "2022-04-19T15:12:17.069Z", - "end": "2022-04-19T15:17:19.867Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T15:17:19.867Z", - "end": "2022-04-19T15:22:22.665Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-19T15:22:22.665Z", - "end": "2022-04-19T15:27:25.463Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "597588168178663434", - "start": "2022-07-29T11:44:57.126Z", - "end": "2022-07-29T13:13:32.429Z", - "events": [ - { - "start": "2022-07-29T11:44:57.126Z", - "end": "2022-07-29T12:02:40.186Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T12:02:40.186Z", - "end": "2022-07-29T12:20:23.246Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T12:20:23.246Z", - "end": "2022-07-29T12:38:06.306Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T12:38:06.306Z", - "end": "2022-07-29T12:55:49.366Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T12:55:49.366Z", - "end": "2022-07-29T13:13:32.426Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "554921822626381879", - "start": "2022-08-04T20:27:15.177Z", - "end": "2022-08-05T03:57:52.401Z", - "events": [ - { - "start": "2022-08-04T20:27:15.177Z", - "end": "2022-08-04T21:57:22.621Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T21:57:22.621Z", - "end": "2022-08-04T23:27:30.065Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T23:27:30.065Z", - "end": "2022-08-05T00:57:37.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T00:57:37.509Z", - "end": "2022-08-05T02:27:44.953Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T02:27:44.953Z", - "end": "2022-08-05T03:57:52.397Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "508057374875975682", - "start": "2022-06-27T17:26:56.079Z", - "end": "2022-06-27T23:06:47.545Z", - "events": [ - { - "start": "2022-06-27T17:26:56.079Z", - "end": "2022-06-27T20:16:51.812Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T20:16:51.812Z", - "end": "2022-06-27T23:06:47.545Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "182925797752958092", - "game": "528145079819436043", - "start": "2022-04-25T05:23:29.283Z", - "end": "2022-04-25T12:38:17.491Z", - "events": [ - { - "start": "2022-04-25T05:23:29.283Z", - "end": "2022-04-25T07:12:11.335Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T07:12:11.335Z", - "end": "2022-04-25T09:00:53.387Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-25T09:00:53.387Z", - "end": "2022-04-25T10:49:35.439Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T10:49:35.439Z", - "end": "2022-04-25T12:38:17.491Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "395281349698024181", - "game": "512789427462995988", - "start": "2022-06-14T10:08:04.608Z", - "end": "2022-06-14T12:11:37.684Z", - "events": [ - { - "start": "2022-06-14T10:08:04.608Z", - "end": "2022-06-14T12:11:37.684Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "713444659295913502", - "game": "542075586886107149", - "start": "2022-07-21T21:58:39.170Z", - "end": "2022-07-22T04:33:32.739Z", - "events": [ - { - "start": "2022-07-21T21:58:39.170Z", - "end": "2022-07-22T04:33:32.739Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "584489284152985092", - "game": "569253958967885828", - "start": "2022-05-03T17:21:06.790Z", - "end": "2022-05-03T23:13:39.354Z", - "events": [ - { - "start": "2022-05-03T17:21:06.790Z", - "end": "2022-05-03T18:31:37.302Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T18:31:37.302Z", - "end": "2022-05-03T19:42:07.814Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T19:42:07.814Z", - "end": "2022-05-03T20:52:38.326Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-03T20:52:38.326Z", - "end": "2022-05-03T22:03:08.838Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T22:03:08.838Z", - "end": "2022-05-03T23:13:39.350Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "430732724825949756", - "game": "546175179542364160", - "start": "2022-04-27T13:21:46.611Z", - "end": "2022-04-27T17:11:52.339Z", - "events": [ - { - "start": "2022-04-27T13:21:46.611Z", - "end": "2022-04-27T17:11:52.339Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "182925797752958092", - "game": "542475118396309528", - "start": "2022-07-21T22:13:25.965Z", - "end": "2022-07-22T01:51:20.055Z", - "events": [ - { - "start": "2022-07-21T22:13:25.965Z", - "end": "2022-07-22T00:02:23.010Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T00:02:23.010Z", - "end": "2022-07-22T01:51:20.055Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "336473229248470346", - "game": "550277544025522176", - "start": "2022-07-07T20:00:00.408Z", - "end": "2022-07-08T05:20:16.025Z", - "events": [ - { - "start": "2022-07-07T20:00:00.408Z", - "end": "2022-07-08T05:20:16.025Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786084290971413565", - "game": "592976500802846750", - "start": "2022-06-09T03:45:30.498Z", - "end": "2022-06-09T05:21:32.636Z", - "events": [ - { - "start": "2022-06-09T03:45:30.498Z", - "end": "2022-06-09T04:33:31.567Z", - "state": "IDLE" - }, - { - "start": "2022-06-09T04:33:31.567Z", - "end": "2022-06-09T05:21:32.636Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "463820732483181525", - "game": "554921822626381879", - "start": "2022-08-04T09:22:34.472Z", - "end": "2022-08-04T12:27:19.431Z", - "events": [ - { - "start": "2022-08-04T09:22:34.472Z", - "end": "2022-08-04T10:08:45.711Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T10:08:45.711Z", - "end": "2022-08-04T10:54:56.950Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-04T10:54:56.950Z", - "end": "2022-08-04T11:41:08.189Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T11:41:08.189Z", - "end": "2022-08-04T12:27:19.428Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "614380482620293151", - "start": "2022-04-14T18:58:30.742Z", - "end": "2022-04-14T20:33:44.438Z", - "events": [ - { - "start": "2022-04-14T18:58:30.742Z", - "end": "2022-04-14T19:46:07.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T19:46:07.590Z", - "end": "2022-04-14T20:33:44.438Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "550277544025522176", - "start": "2022-05-15T19:46:40.233Z", - "end": "2022-05-16T03:42:10.327Z", - "events": [ - { - "start": "2022-05-15T19:46:40.233Z", - "end": "2022-05-15T23:44:25.280Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T23:44:25.280Z", - "end": "2022-05-16T03:42:10.327Z", - "state": "IDLE" - } - ] - }, - { - "user": "147480245458136084", - "game": "518088627234930688", - "start": "2022-05-03T14:33:00.049Z", - "end": "2022-05-03T15:47:21.107Z", - "events": [ - { - "start": "2022-05-03T14:33:00.049Z", - "end": "2022-05-03T14:57:47.068Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T14:57:47.068Z", - "end": "2022-05-03T15:22:34.087Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T15:22:34.087Z", - "end": "2022-05-03T15:47:21.106Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "356875221078245376", - "start": "2022-04-14T19:27:56.192Z", - "end": "2022-04-14T19:44:07.748Z", - "events": [ - { - "start": "2022-04-14T19:27:56.192Z", - "end": "2022-04-14T19:36:01.970Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T19:36:01.970Z", - "end": "2022-04-14T19:44:07.748Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "695941172337689379", - "game": "535869836748783616", - "start": "2022-04-22T12:19:15.787Z", - "end": "2022-04-22T18:25:15.244Z", - "events": [ - { - "start": "2022-04-22T12:19:15.787Z", - "end": "2022-04-22T18:25:15.244Z", - "state": "IDLE" - } - ] - }, - { - "user": "608700383891121851", - "game": "512789427462995988", - "start": "2022-05-28T18:43:41.840Z", - "end": "2022-05-29T02:43:35.008Z", - "events": [ - { - "start": "2022-05-28T18:43:41.840Z", - "end": "2022-05-29T02:43:35.008Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "512501896896970762", - "start": "2022-07-23T13:41:12.632Z", - "end": "2022-07-23T19:58:22.156Z", - "events": [ - { - "start": "2022-07-23T13:41:12.632Z", - "end": "2022-07-23T16:49:47.394Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T16:49:47.394Z", - "end": "2022-07-23T19:58:22.156Z", - "state": "IDLE" - } - ] - }, - { - "user": "329429619186234053", - "game": "535869836748783616", - "start": "2022-05-27T22:26:32.880Z", - "end": "2022-05-28T05:38:38.301Z", - "events": [ - { - "start": "2022-05-27T22:26:32.880Z", - "end": "2022-05-27T23:52:57.964Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T23:52:57.964Z", - "end": "2022-05-28T01:19:23.048Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T01:19:23.048Z", - "end": "2022-05-28T02:45:48.132Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T02:45:48.132Z", - "end": "2022-05-28T04:12:13.216Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T04:12:13.216Z", - "end": "2022-05-28T05:38:38.300Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "540120593576493057", - "start": "2022-05-30T15:19:45.622Z", - "end": "2022-05-30T17:21:25.767Z", - "events": [ - { - "start": "2022-05-30T15:19:45.622Z", - "end": "2022-05-30T17:21:25.767Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "385692164951394422", - "game": "553697181249437716", - "start": "2022-07-04T06:16:27.053Z", - "end": "2022-07-04T07:01:11.891Z", - "events": [ - { - "start": "2022-07-04T06:16:27.053Z", - "end": "2022-07-04T06:38:49.472Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T06:38:49.472Z", - "end": "2022-07-04T07:01:11.891Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "137536289023624121", - "game": "553697181249437716", - "start": "2022-07-02T13:51:01.274Z", - "end": "2022-07-02T23:06:42.945Z", - "events": [ - { - "start": "2022-07-02T13:51:01.274Z", - "end": "2022-07-02T16:09:56.691Z", - "state": "IDLE" - }, - { - "start": "2022-07-02T16:09:56.691Z", - "end": "2022-07-02T18:28:52.108Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T18:28:52.108Z", - "end": "2022-07-02T20:47:47.525Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T20:47:47.525Z", - "end": "2022-07-02T23:06:42.942Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "521350927850935744", - "game": "614380482620293151", - "start": "2022-05-28T02:49:49.817Z", - "end": "2022-05-28T08:25:14.973Z", - "events": [ - { - "start": "2022-05-28T02:49:49.817Z", - "end": "2022-05-28T03:56:54.848Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T03:56:54.848Z", - "end": "2022-05-28T05:03:59.879Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T05:03:59.879Z", - "end": "2022-05-28T06:11:04.910Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T06:11:04.910Z", - "end": "2022-05-28T07:18:09.941Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T07:18:09.941Z", - "end": "2022-05-28T08:25:14.972Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "494763633796983404", - "game": "560781100197216267", - "start": "2022-08-06T12:03:27.839Z", - "end": "2022-08-06T12:44:27.643Z", - "events": [ - { - "start": "2022-08-06T12:03:27.839Z", - "end": "2022-08-06T12:17:07.773Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T12:17:07.773Z", - "end": "2022-08-06T12:30:47.707Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T12:30:47.707Z", - "end": "2022-08-06T12:44:27.641Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "406850294055619241", - "game": "549512435585908756", - "start": "2022-05-26T22:00:45.504Z", - "end": "2022-05-27T06:05:18.465Z", - "events": [ - { - "start": "2022-05-26T22:00:45.504Z", - "end": "2022-05-27T06:05:18.465Z", - "state": "IDLE" - } - ] - }, - { - "user": "467658810442648809", - "game": "554573307161214977", - "start": "2022-07-13T13:08:11.463Z", - "end": "2022-07-13T18:27:04.588Z", - "events": [ - { - "start": "2022-07-13T13:08:11.463Z", - "end": "2022-07-13T14:54:29.171Z", - "state": "IDLE" - }, - { - "start": "2022-07-13T14:54:29.171Z", - "end": "2022-07-13T16:40:46.879Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T16:40:46.879Z", - "end": "2022-07-13T18:27:04.587Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "518088627234930688", - "start": "2022-05-26T13:15:14.257Z", - "end": "2022-05-26T21:01:14.172Z", - "events": [ - { - "start": "2022-05-26T13:15:14.257Z", - "end": "2022-05-26T17:08:14.214Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T17:08:14.214Z", - "end": "2022-05-26T21:01:14.171Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "512498684211232768", - "start": "2022-04-25T17:03:21.199Z", - "end": "2022-04-25T17:16:59.002Z", - "events": [ - { - "start": "2022-04-25T17:03:21.199Z", - "end": "2022-04-25T17:06:04.759Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T17:06:04.759Z", - "end": "2022-04-25T17:08:48.319Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T17:08:48.319Z", - "end": "2022-04-25T17:11:31.879Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T17:11:31.879Z", - "end": "2022-04-25T17:14:15.439Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T17:14:15.439Z", - "end": "2022-04-25T17:16:58.999Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "514228311661084682", - "start": "2022-06-22T08:19:03.881Z", - "end": "2022-06-22T12:05:32.729Z", - "events": [ - { - "start": "2022-06-22T08:19:03.881Z", - "end": "2022-06-22T12:05:32.729Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "394970121077311909", - "game": "519644267212177418", - "start": "2022-07-28T04:12:53.675Z", - "end": "2022-07-28T11:37:07.335Z", - "events": [ - { - "start": "2022-07-28T04:12:53.675Z", - "end": "2022-07-28T06:40:58.228Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-28T06:40:58.228Z", - "end": "2022-07-28T09:09:02.781Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T09:09:02.781Z", - "end": "2022-07-28T11:37:07.334Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "866600263421429886", - "game": "576482762446602270", - "start": "2022-04-25T04:59:16.312Z", - "end": "2022-04-25T07:34:23.857Z", - "events": [ - { - "start": "2022-04-25T04:59:16.312Z", - "end": "2022-04-25T05:30:17.821Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-25T05:30:17.821Z", - "end": "2022-04-25T06:01:19.330Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-25T06:01:19.330Z", - "end": "2022-04-25T06:32:20.839Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-25T06:32:20.839Z", - "end": "2022-04-25T07:03:22.348Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-25T07:03:22.348Z", - "end": "2022-04-25T07:34:23.857Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "553697181249437716", - "start": "2022-06-08T02:05:25.321Z", - "end": "2022-06-08T03:15:59.761Z", - "events": [ - { - "start": "2022-06-08T02:05:25.321Z", - "end": "2022-06-08T02:28:56.801Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-08T02:28:56.801Z", - "end": "2022-06-08T02:52:28.281Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T02:52:28.281Z", - "end": "2022-06-08T03:15:59.761Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "512699108809637890", - "start": "2022-05-19T19:17:29.858Z", - "end": "2022-05-20T02:50:42.288Z", - "events": [ - { - "start": "2022-05-19T19:17:29.858Z", - "end": "2022-05-19T21:10:47.965Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T21:10:47.965Z", - "end": "2022-05-19T23:04:06.072Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T23:04:06.072Z", - "end": "2022-05-20T00:57:24.179Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-20T00:57:24.179Z", - "end": "2022-05-20T02:50:42.286Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "131482253203487270", - "game": "553697181249437716", - "start": "2022-05-30T09:14:30.546Z", - "end": "2022-05-30T11:07:06.715Z", - "events": [ - { - "start": "2022-05-30T09:14:30.546Z", - "end": "2022-05-30T09:52:02.602Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T09:52:02.602Z", - "end": "2022-05-30T10:29:34.658Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T10:29:34.658Z", - "end": "2022-05-30T11:07:06.714Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "494763633796983404", - "game": "614380482620293151", - "start": "2022-08-03T15:21:53.186Z", - "end": "2022-08-03T22:56:04.560Z", - "events": [ - { - "start": "2022-08-03T15:21:53.186Z", - "end": "2022-08-03T17:53:16.977Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T17:53:16.977Z", - "end": "2022-08-03T20:24:40.768Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T20:24:40.768Z", - "end": "2022-08-03T22:56:04.559Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "584069374462394368", - "start": "2022-04-27T14:53:39.561Z", - "end": "2022-04-28T00:47:32.080Z", - "events": [ - { - "start": "2022-04-27T14:53:39.561Z", - "end": "2022-04-27T19:50:35.820Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T19:50:35.820Z", - "end": "2022-04-28T00:47:32.079Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "520462578061803588", - "start": "2022-05-11T05:53:05.461Z", - "end": "2022-05-11T08:36:00.537Z", - "events": [ - { - "start": "2022-05-11T05:53:05.461Z", - "end": "2022-05-11T06:47:23.819Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T06:47:23.819Z", - "end": "2022-05-11T07:41:42.177Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T07:41:42.177Z", - "end": "2022-05-11T08:36:00.535Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "131482253203487270", - "game": "597860020935327787", - "start": "2022-07-02T07:24:02.329Z", - "end": "2022-07-02T08:25:53.172Z", - "events": [ - { - "start": "2022-07-02T07:24:02.329Z", - "end": "2022-07-02T07:54:57.750Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T07:54:57.750Z", - "end": "2022-07-02T08:25:53.171Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "841397740041930984", - "game": "528145079819436043", - "start": "2022-07-17T23:14:27.034Z", - "end": "2022-07-18T04:27:39.006Z", - "events": [ - { - "start": "2022-07-17T23:14:27.034Z", - "end": "2022-07-18T00:58:51.024Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T00:58:51.024Z", - "end": "2022-07-18T02:43:15.014Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T02:43:15.014Z", - "end": "2022-07-18T04:27:39.004Z", - "state": "IDLE" - } - ] - }, - { - "user": "106607193284486979", - "game": "575412499399180288", - "start": "2022-06-30T23:00:49.973Z", - "end": "2022-07-01T01:22:23.630Z", - "events": [ - { - "start": "2022-06-30T23:00:49.973Z", - "end": "2022-07-01T00:11:36.801Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T00:11:36.801Z", - "end": "2022-07-01T01:22:23.629Z", - "state": "IDLE" - } - ] - }, - { - "user": "153631479524744694", - "game": "575412499399180288", - "start": "2022-06-07T06:45:31.875Z", - "end": "2022-06-07T10:06:10.024Z", - "events": [ - { - "start": "2022-06-07T06:45:31.875Z", - "end": "2022-06-07T07:35:41.412Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-07T07:35:41.412Z", - "end": "2022-06-07T08:25:50.949Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T08:25:50.949Z", - "end": "2022-06-07T09:16:00.486Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T09:16:00.486Z", - "end": "2022-06-07T10:06:10.023Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "747381962738157784", - "game": "512498684211232768", - "start": "2022-04-15T07:20:04.956Z", - "end": "2022-04-15T12:25:37.801Z", - "events": [ - { - "start": "2022-04-15T07:20:04.956Z", - "end": "2022-04-15T08:36:28.167Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-15T08:36:28.167Z", - "end": "2022-04-15T09:52:51.378Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T09:52:51.378Z", - "end": "2022-04-15T11:09:14.589Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T11:09:14.589Z", - "end": "2022-04-15T12:25:37.800Z", - "state": "IDLE" - } - ] - }, - { - "user": "549054179973094329", - "game": "575412499399180288", - "start": "2022-04-14T23:36:10.494Z", - "end": "2022-04-15T01:15:58.194Z", - "events": [ - { - "start": "2022-04-14T23:36:10.494Z", - "end": "2022-04-15T01:15:58.194Z", - "state": "IDLE" - } - ] - }, - { - "user": "695941172337689379", - "game": "356875221078245376", - "start": "2022-07-06T19:04:29.970Z", - "end": "2022-07-06T23:57:26.885Z", - "events": [ - { - "start": "2022-07-06T19:04:29.970Z", - "end": "2022-07-06T20:42:08.941Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T20:42:08.941Z", - "end": "2022-07-06T22:19:47.912Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T22:19:47.912Z", - "end": "2022-07-06T23:57:26.883Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "575412499399180288", - "start": "2022-05-11T23:00:25.961Z", - "end": "2022-05-12T02:37:38.840Z", - "events": [ - { - "start": "2022-05-11T23:00:25.961Z", - "end": "2022-05-12T00:49:02.400Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T00:49:02.400Z", - "end": "2022-05-12T02:37:38.839Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "584489284152985092", - "game": "535869836748783616", - "start": "2022-06-11T14:33:10.557Z", - "end": "2022-06-11T22:47:11.897Z", - "events": [ - { - "start": "2022-06-11T14:33:10.557Z", - "end": "2022-06-11T16:11:58.825Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T16:11:58.825Z", - "end": "2022-06-11T17:50:47.093Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-11T17:50:47.093Z", - "end": "2022-06-11T19:29:35.361Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-11T19:29:35.361Z", - "end": "2022-06-11T21:08:23.629Z", - "state": "IDLE" - }, - { - "start": "2022-06-11T21:08:23.629Z", - "end": "2022-06-11T22:47:11.897Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "519644267212177418", - "start": "2022-08-03T14:08:22.068Z", - "end": "2022-08-03T19:41:50.732Z", - "events": [ - { - "start": "2022-08-03T14:08:22.068Z", - "end": "2022-08-03T16:55:06.400Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T16:55:06.400Z", - "end": "2022-08-03T19:41:50.732Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "101572134856427564", - "game": "614448244260339712", - "start": "2022-04-23T10:36:54.041Z", - "end": "2022-04-23T19:03:25.298Z", - "events": [ - { - "start": "2022-04-23T10:36:54.041Z", - "end": "2022-04-23T12:18:12.292Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-23T12:18:12.292Z", - "end": "2022-04-23T13:59:30.543Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-23T13:59:30.543Z", - "end": "2022-04-23T15:40:48.794Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T15:40:48.794Z", - "end": "2022-04-23T17:22:07.045Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-23T17:22:07.045Z", - "end": "2022-04-23T19:03:25.296Z", - "state": "IDLE" - } - ] - }, - { - "user": "101572134856427564", - "game": "512789343157485602", - "start": "2022-06-06T21:59:22.987Z", - "end": "2022-06-07T01:01:49.447Z", - "events": [ - { - "start": "2022-06-06T21:59:22.987Z", - "end": "2022-06-06T22:44:59.602Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T22:44:59.602Z", - "end": "2022-06-06T23:30:36.217Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-06T23:30:36.217Z", - "end": "2022-06-07T00:16:12.832Z", - "state": "IDLE" - }, - { - "start": "2022-06-07T00:16:12.832Z", - "end": "2022-06-07T01:01:49.447Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "715446191320920764", - "game": "511619499053678668", - "start": "2022-05-02T23:17:23.978Z", - "end": "2022-05-03T05:34:17.923Z", - "events": [ - { - "start": "2022-05-02T23:17:23.978Z", - "end": "2022-05-03T02:25:50.950Z", - "state": "IDLE" - }, - { - "start": "2022-05-03T02:25:50.950Z", - "end": "2022-05-03T05:34:17.922Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "625617695768437507", - "game": "576482762446602270", - "start": "2022-05-15T03:38:08.985Z", - "end": "2022-05-15T04:50:49.467Z", - "events": [ - { - "start": "2022-05-15T03:38:08.985Z", - "end": "2022-05-15T04:02:22.479Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T04:02:22.479Z", - "end": "2022-05-15T04:26:35.973Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T04:26:35.973Z", - "end": "2022-05-15T04:50:49.467Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "200801427122341912", - "game": "520453007578628124", - "start": "2022-07-31T02:59:55.734Z", - "end": "2022-07-31T04:32:26.356Z", - "events": [ - { - "start": "2022-07-31T02:59:55.734Z", - "end": "2022-07-31T03:23:03.389Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-31T03:23:03.389Z", - "end": "2022-07-31T03:46:11.044Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T03:46:11.044Z", - "end": "2022-07-31T04:09:18.699Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-31T04:09:18.699Z", - "end": "2022-07-31T04:32:26.354Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "185442579258045359", - "game": "546175179542364160", - "start": "2022-04-13T13:12:05.037Z", - "end": "2022-04-13T22:15:31.776Z", - "events": [ - { - "start": "2022-04-13T13:12:05.037Z", - "end": "2022-04-13T15:00:46.384Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-13T15:00:46.384Z", - "end": "2022-04-13T16:49:27.731Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T16:49:27.731Z", - "end": "2022-04-13T18:38:09.078Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-13T18:38:09.078Z", - "end": "2022-04-13T20:26:50.425Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T20:26:50.425Z", - "end": "2022-04-13T22:15:31.772Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "510690749854514547", - "game": "554573307161214977", - "start": "2022-06-04T16:30:31.844Z", - "end": "2022-06-04T21:57:57.074Z", - "events": [ - { - "start": "2022-06-04T16:30:31.844Z", - "end": "2022-06-04T18:19:40.254Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T18:19:40.254Z", - "end": "2022-06-04T20:08:48.664Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T20:08:48.664Z", - "end": "2022-06-04T21:57:57.074Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "592976500802846750", - "start": "2022-05-14T06:43:48.403Z", - "end": "2022-05-14T11:53:47.173Z", - "events": [ - { - "start": "2022-05-14T06:43:48.403Z", - "end": "2022-05-14T08:01:18.095Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T08:01:18.095Z", - "end": "2022-05-14T09:18:47.787Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T09:18:47.787Z", - "end": "2022-05-14T10:36:17.479Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T10:36:17.479Z", - "end": "2022-05-14T11:53:47.171Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "512501896896970762", - "start": "2022-07-08T17:59:24.833Z", - "end": "2022-07-09T01:16:12.269Z", - "events": [ - { - "start": "2022-07-08T17:59:24.833Z", - "end": "2022-07-09T01:16:12.269Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "512789120234422301", - "start": "2022-06-05T22:00:46.818Z", - "end": "2022-06-06T07:06:52.804Z", - "events": [ - { - "start": "2022-06-05T22:00:46.818Z", - "end": "2022-06-05T23:50:00.015Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T23:50:00.015Z", - "end": "2022-06-06T01:39:13.212Z", - "state": "IDLE" - }, - { - "start": "2022-06-06T01:39:13.212Z", - "end": "2022-06-06T03:28:26.409Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T03:28:26.409Z", - "end": "2022-06-06T05:17:39.606Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T05:17:39.606Z", - "end": "2022-06-06T07:06:52.803Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "200801427122341912", - "game": "614380482620293151", - "start": "2022-05-24T11:09:44.499Z", - "end": "2022-05-24T20:57:23.870Z", - "events": [ - { - "start": "2022-05-24T11:09:44.499Z", - "end": "2022-05-24T16:03:34.184Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T16:03:34.184Z", - "end": "2022-05-24T20:57:23.869Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "922664752332558395", - "game": "554921822626381879", - "start": "2022-05-26T00:58:35.032Z", - "end": "2022-05-26T02:24:26.321Z", - "events": [ - { - "start": "2022-05-26T00:58:35.032Z", - "end": "2022-05-26T01:27:12.128Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T01:27:12.128Z", - "end": "2022-05-26T01:55:49.224Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T01:55:49.224Z", - "end": "2022-05-26T02:24:26.320Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "519644368735567873", - "start": "2022-04-18T18:30:36.308Z", - "end": "2022-04-19T00:09:15.287Z", - "events": [ - { - "start": "2022-04-18T18:30:36.308Z", - "end": "2022-04-18T19:38:20.103Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T19:38:20.103Z", - "end": "2022-04-18T20:46:03.898Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T20:46:03.898Z", - "end": "2022-04-18T21:53:47.693Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T21:53:47.693Z", - "end": "2022-04-18T23:01:31.488Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T23:01:31.488Z", - "end": "2022-04-19T00:09:15.283Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "572456126872944651", - "start": "2022-05-03T08:08:05.233Z", - "end": "2022-05-03T12:41:22.459Z", - "events": [ - { - "start": "2022-05-03T08:08:05.233Z", - "end": "2022-05-03T09:16:24.539Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-03T09:16:24.539Z", - "end": "2022-05-03T10:24:43.845Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-03T10:24:43.845Z", - "end": "2022-05-03T11:33:03.151Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-03T11:33:03.151Z", - "end": "2022-05-03T12:41:22.457Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "596421190780633864", - "game": "535384357536399404", - "start": "2022-05-10T01:19:32.531Z", - "end": "2022-05-10T10:26:58.071Z", - "events": [ - { - "start": "2022-05-10T01:19:32.531Z", - "end": "2022-05-10T03:09:01.639Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T03:09:01.639Z", - "end": "2022-05-10T04:58:30.747Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T04:58:30.747Z", - "end": "2022-05-10T06:47:59.855Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T06:47:59.855Z", - "end": "2022-05-10T08:37:28.963Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T08:37:28.963Z", - "end": "2022-05-10T10:26:58.071Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "866600263421429886", - "game": "519644368735567873", - "start": "2022-06-26T05:52:51.449Z", - "end": "2022-06-26T09:04:56.235Z", - "events": [ - { - "start": "2022-06-26T05:52:51.449Z", - "end": "2022-06-26T07:28:53.842Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-26T07:28:53.842Z", - "end": "2022-06-26T09:04:56.235Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "541104083732114799", - "game": "554573307161214977", - "start": "2022-07-10T00:17:01.377Z", - "end": "2022-07-10T04:51:25.434Z", - "events": [ - { - "start": "2022-07-10T00:17:01.377Z", - "end": "2022-07-10T01:48:29.396Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-10T01:48:29.396Z", - "end": "2022-07-10T03:19:57.415Z", - "state": "IDLE" - }, - { - "start": "2022-07-10T03:19:57.415Z", - "end": "2022-07-10T04:51:25.434Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "597588168178663434", - "start": "2022-05-27T17:33:03.797Z", - "end": "2022-05-27T23:05:02.091Z", - "events": [ - { - "start": "2022-05-27T17:33:03.797Z", - "end": "2022-05-27T19:23:43.228Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T19:23:43.228Z", - "end": "2022-05-27T21:14:22.659Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T21:14:22.659Z", - "end": "2022-05-27T23:05:02.090Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "512789120234422301", - "start": "2022-05-06T02:37:22.613Z", - "end": "2022-05-06T07:41:57.151Z", - "events": [ - { - "start": "2022-05-06T02:37:22.613Z", - "end": "2022-05-06T03:53:31.247Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T03:53:31.247Z", - "end": "2022-05-06T05:09:39.881Z", - "state": "IDLE" - }, - { - "start": "2022-05-06T05:09:39.881Z", - "end": "2022-05-06T06:25:48.515Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-06T06:25:48.515Z", - "end": "2022-05-06T07:41:57.149Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "510199020782747732", - "start": "2022-06-06T16:39:37.937Z", - "end": "2022-06-06T20:20:50.799Z", - "events": [ - { - "start": "2022-06-06T16:39:37.937Z", - "end": "2022-06-06T17:53:22.224Z", - "state": "IDLE" - }, - { - "start": "2022-06-06T17:53:22.224Z", - "end": "2022-06-06T19:07:06.511Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T19:07:06.511Z", - "end": "2022-06-06T20:20:50.798Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "791267126190249625", - "game": "520453007578628124", - "start": "2022-07-21T09:53:32.607Z", - "end": "2022-07-21T12:05:39.495Z", - "events": [ - { - "start": "2022-07-21T09:53:32.607Z", - "end": "2022-07-21T10:37:34.903Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T10:37:34.903Z", - "end": "2022-07-21T11:21:37.199Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T11:21:37.199Z", - "end": "2022-07-21T12:05:39.495Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "553697181249437716", - "start": "2022-05-26T00:28:22.266Z", - "end": "2022-05-26T02:36:35.926Z", - "events": [ - { - "start": "2022-05-26T00:28:22.266Z", - "end": "2022-05-26T02:36:35.926Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "614380482620293151", - "start": "2022-05-15T23:08:36.116Z", - "end": "2022-05-16T07:59:29.000Z", - "events": [ - { - "start": "2022-05-15T23:08:36.116Z", - "end": "2022-05-16T02:05:33.744Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T02:05:33.744Z", - "end": "2022-05-16T05:02:31.372Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T05:02:31.372Z", - "end": "2022-05-16T07:59:29.000Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "508057374875975682", - "start": "2022-07-11T21:44:57.012Z", - "end": "2022-07-11T22:19:10.301Z", - "events": [ - { - "start": "2022-07-11T21:44:57.012Z", - "end": "2022-07-11T22:19:10.301Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "614448244260339712", - "start": "2022-06-27T14:06:46.878Z", - "end": "2022-06-27T16:56:21.847Z", - "events": [ - { - "start": "2022-06-27T14:06:46.878Z", - "end": "2022-06-27T14:49:10.620Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T14:49:10.620Z", - "end": "2022-06-27T15:31:34.362Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T15:31:34.362Z", - "end": "2022-06-27T16:13:58.104Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T16:13:58.104Z", - "end": "2022-06-27T16:56:21.846Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "931211630078779300", - "game": "565341641427124244", - "start": "2022-06-06T02:40:47.819Z", - "end": "2022-06-06T08:24:59.691Z", - "events": [ - { - "start": "2022-06-06T02:40:47.819Z", - "end": "2022-06-06T04:35:31.776Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-06T04:35:31.776Z", - "end": "2022-06-06T06:30:15.733Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-06T06:30:15.733Z", - "end": "2022-06-06T08:24:59.690Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "768513326430993269", - "game": "518088627234930688", - "start": "2022-07-17T14:02:02.756Z", - "end": "2022-07-17T20:52:08.851Z", - "events": [ - { - "start": "2022-07-17T14:02:02.756Z", - "end": "2022-07-17T16:18:44.787Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T16:18:44.787Z", - "end": "2022-07-17T18:35:26.818Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-17T18:35:26.818Z", - "end": "2022-07-17T20:52:08.849Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951234649334557435", - "game": "565341641427124244", - "start": "2022-06-03T22:27:28.463Z", - "end": "2022-06-04T07:54:38.815Z", - "events": [ - { - "start": "2022-06-03T22:27:28.463Z", - "end": "2022-06-04T03:11:03.639Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T03:11:03.639Z", - "end": "2022-06-04T07:54:38.815Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "922664752332558395", - "game": "592976500802846750", - "start": "2022-07-20T23:14:14.152Z", - "end": "2022-07-21T03:30:30.827Z", - "events": [ - { - "start": "2022-07-20T23:14:14.152Z", - "end": "2022-07-21T00:18:18.320Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T00:18:18.320Z", - "end": "2022-07-21T01:22:22.488Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T01:22:22.488Z", - "end": "2022-07-21T02:26:26.656Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-21T02:26:26.656Z", - "end": "2022-07-21T03:30:30.824Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "658550407298256890", - "game": "572456126872944651", - "start": "2022-07-11T23:25:35.248Z", - "end": "2022-07-12T04:35:10.951Z", - "events": [ - { - "start": "2022-07-11T23:25:35.248Z", - "end": "2022-07-12T00:42:59.173Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T00:42:59.173Z", - "end": "2022-07-12T02:00:23.098Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T02:00:23.098Z", - "end": "2022-07-12T03:17:47.023Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T03:17:47.023Z", - "end": "2022-07-12T04:35:10.948Z", - "state": "IDLE" - } - ] - }, - { - "user": "549054179973094329", - "game": "512789343157485602", - "start": "2022-05-17T03:18:38.407Z", - "end": "2022-05-17T07:08:19.709Z", - "events": [ - { - "start": "2022-05-17T03:18:38.407Z", - "end": "2022-05-17T04:04:34.667Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T04:04:34.667Z", - "end": "2022-05-17T04:50:30.927Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T04:50:30.927Z", - "end": "2022-05-17T05:36:27.187Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T05:36:27.187Z", - "end": "2022-05-17T06:22:23.447Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T06:22:23.447Z", - "end": "2022-05-17T07:08:19.707Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "747381962738157784", - "game": "606163888052109312", - "start": "2022-06-22T15:43:52.351Z", - "end": "2022-06-22T18:04:48.422Z", - "events": [ - { - "start": "2022-06-22T15:43:52.351Z", - "end": "2022-06-22T18:04:48.422Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "198010595767135394", - "game": "530454325214969866", - "start": "2022-07-02T03:50:05.771Z", - "end": "2022-07-02T13:50:11.867Z", - "events": [ - { - "start": "2022-07-02T03:50:05.771Z", - "end": "2022-07-02T07:10:07.803Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T07:10:07.803Z", - "end": "2022-07-02T10:30:09.835Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-02T10:30:09.835Z", - "end": "2022-07-02T13:50:11.867Z", - "state": "IDLE" - } - ] - }, - { - "user": "161887854890745672", - "game": "535384357536399404", - "start": "2022-05-19T02:50:21.787Z", - "end": "2022-05-19T05:17:57.503Z", - "events": [ - { - "start": "2022-05-19T02:50:21.787Z", - "end": "2022-05-19T05:17:57.503Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "841397740041930984", - "game": "569008830701240340", - "start": "2022-08-02T09:12:28.406Z", - "end": "2022-08-02T11:06:32.430Z", - "events": [ - { - "start": "2022-08-02T09:12:28.406Z", - "end": "2022-08-02T09:35:17.210Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T09:35:17.210Z", - "end": "2022-08-02T09:58:06.014Z", - "state": "IDLE" - }, - { - "start": "2022-08-02T09:58:06.014Z", - "end": "2022-08-02T10:20:54.818Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T10:20:54.818Z", - "end": "2022-08-02T10:43:43.622Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T10:43:43.622Z", - "end": "2022-08-02T11:06:32.426Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "541104083732114799", - "game": "356875221078245376", - "start": "2022-07-30T16:10:34.016Z", - "end": "2022-07-30T21:33:58.902Z", - "events": [ - { - "start": "2022-07-30T16:10:34.016Z", - "end": "2022-07-30T17:15:14.993Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-30T17:15:14.993Z", - "end": "2022-07-30T18:19:55.970Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T18:19:55.970Z", - "end": "2022-07-30T19:24:36.947Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T19:24:36.947Z", - "end": "2022-07-30T20:29:17.924Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T20:29:17.924Z", - "end": "2022-07-30T21:33:58.901Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "596421190780633864", - "game": "558547388583772201", - "start": "2022-04-27T18:57:31.827Z", - "end": "2022-04-28T00:21:10.271Z", - "events": [ - { - "start": "2022-04-27T18:57:31.827Z", - "end": "2022-04-27T20:45:24.641Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T20:45:24.641Z", - "end": "2022-04-27T22:33:17.455Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T22:33:17.455Z", - "end": "2022-04-28T00:21:10.269Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "576482762446602270", - "start": "2022-07-26T14:17:38.356Z", - "end": "2022-07-26T20:22:37.614Z", - "events": [ - { - "start": "2022-07-26T14:17:38.356Z", - "end": "2022-07-26T20:22:37.614Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "520453007578628124", - "start": "2022-05-13T08:38:56.279Z", - "end": "2022-05-13T15:14:39.782Z", - "events": [ - { - "start": "2022-05-13T08:38:56.279Z", - "end": "2022-05-13T15:14:39.782Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "590467327095087095", - "game": "512699108809637890", - "start": "2022-04-28T16:38:47.736Z", - "end": "2022-04-28T17:41:16.812Z", - "events": [ - { - "start": "2022-04-28T16:38:47.736Z", - "end": "2022-04-28T16:59:37.428Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T16:59:37.428Z", - "end": "2022-04-28T17:20:27.120Z", - "state": "IDLE" - }, - { - "start": "2022-04-28T17:20:27.120Z", - "end": "2022-04-28T17:41:16.812Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "394970121077311909", - "game": "592976500802846750", - "start": "2022-06-09T18:39:56.191Z", - "end": "2022-06-09T18:57:29.987Z", - "events": [ - { - "start": "2022-06-09T18:39:56.191Z", - "end": "2022-06-09T18:57:29.987Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "521842831262875670", - "start": "2022-05-01T23:21:35.835Z", - "end": "2022-05-02T07:11:12.334Z", - "events": [ - { - "start": "2022-05-01T23:21:35.835Z", - "end": "2022-05-02T01:18:59.959Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T01:18:59.959Z", - "end": "2022-05-02T03:16:24.083Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T03:16:24.083Z", - "end": "2022-05-02T05:13:48.207Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T05:13:48.207Z", - "end": "2022-05-02T07:11:12.331Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "554573307161214977", - "start": "2022-07-28T07:41:23.954Z", - "end": "2022-07-28T16:24:31.015Z", - "events": [ - { - "start": "2022-07-28T07:41:23.954Z", - "end": "2022-07-28T09:26:01.366Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T09:26:01.366Z", - "end": "2022-07-28T11:10:38.778Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T11:10:38.778Z", - "end": "2022-07-28T12:55:16.190Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T12:55:16.190Z", - "end": "2022-07-28T14:39:53.602Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-28T14:39:53.602Z", - "end": "2022-07-28T16:24:31.014Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "569008830701240340", - "start": "2022-06-03T21:14:03.977Z", - "end": "2022-06-04T01:12:25.895Z", - "events": [ - { - "start": "2022-06-03T21:14:03.977Z", - "end": "2022-06-03T22:01:44.360Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T22:01:44.360Z", - "end": "2022-06-03T22:49:24.743Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T22:49:24.743Z", - "end": "2022-06-03T23:37:05.126Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T23:37:05.126Z", - "end": "2022-06-04T00:24:45.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T00:24:45.509Z", - "end": "2022-06-04T01:12:25.892Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "900234800332446962", - "game": "530454325214969866", - "start": "2022-04-25T07:42:43.865Z", - "end": "2022-04-25T12:53:46.887Z", - "events": [ - { - "start": "2022-04-25T07:42:43.865Z", - "end": "2022-04-25T10:18:15.376Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T10:18:15.376Z", - "end": "2022-04-25T12:53:46.887Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "636935635446628860", - "game": "535384357536399404", - "start": "2022-07-20T03:02:15.661Z", - "end": "2022-07-20T04:29:55.768Z", - "events": [ - { - "start": "2022-07-20T03:02:15.661Z", - "end": "2022-07-20T03:19:47.682Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T03:19:47.682Z", - "end": "2022-07-20T03:37:19.703Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T03:37:19.703Z", - "end": "2022-07-20T03:54:51.724Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T03:54:51.724Z", - "end": "2022-07-20T04:12:23.745Z", - "state": "IDLE" - }, - { - "start": "2022-07-20T04:12:23.745Z", - "end": "2022-07-20T04:29:55.766Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "518088627234930688", - "start": "2022-06-30T07:41:04.001Z", - "end": "2022-06-30T17:18:07.666Z", - "events": [ - { - "start": "2022-06-30T07:41:04.001Z", - "end": "2022-06-30T17:18:07.666Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "356875221078245376", - "start": "2022-06-20T09:17:12.029Z", - "end": "2022-06-20T14:26:23.152Z", - "events": [ - { - "start": "2022-06-20T09:17:12.029Z", - "end": "2022-06-20T11:51:47.590Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T11:51:47.590Z", - "end": "2022-06-20T14:26:23.151Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "560781100197216267", - "start": "2022-08-05T07:20:02.546Z", - "end": "2022-08-05T15:33:34.806Z", - "events": [ - { - "start": "2022-08-05T07:20:02.546Z", - "end": "2022-08-05T08:58:44.998Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T08:58:44.998Z", - "end": "2022-08-05T10:37:27.450Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T10:37:27.450Z", - "end": "2022-08-05T12:16:09.902Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-05T12:16:09.902Z", - "end": "2022-08-05T13:54:52.354Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T13:54:52.354Z", - "end": "2022-08-05T15:33:34.806Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "457796054587169483", - "game": "614448244260339712", - "start": "2022-04-14T16:40:03.991Z", - "end": "2022-04-14T21:56:24.346Z", - "events": [ - { - "start": "2022-04-14T16:40:03.991Z", - "end": "2022-04-14T21:56:24.346Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "530454325214969866", - "start": "2022-05-17T04:59:04.940Z", - "end": "2022-05-17T07:01:35.666Z", - "events": [ - { - "start": "2022-05-17T04:59:04.940Z", - "end": "2022-05-17T05:23:35.085Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T05:23:35.085Z", - "end": "2022-05-17T05:48:05.230Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T05:48:05.230Z", - "end": "2022-05-17T06:12:35.375Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T06:12:35.375Z", - "end": "2022-05-17T06:37:05.520Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T06:37:05.520Z", - "end": "2022-05-17T07:01:35.665Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "535384357536399404", - "start": "2022-04-27T19:13:49.655Z", - "end": "2022-04-28T01:08:11.592Z", - "events": [ - { - "start": "2022-04-27T19:13:49.655Z", - "end": "2022-04-28T01:08:11.592Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "841397740041930984", - "game": "512789427462995988", - "start": "2022-08-03T10:35:50.118Z", - "end": "2022-08-03T17:08:41.424Z", - "events": [ - { - "start": "2022-08-03T10:35:50.118Z", - "end": "2022-08-03T11:54:24.379Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T11:54:24.379Z", - "end": "2022-08-03T13:12:58.640Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-03T13:12:58.640Z", - "end": "2022-08-03T14:31:32.901Z", - "state": "IDLE" - }, - { - "start": "2022-08-03T14:31:32.901Z", - "end": "2022-08-03T15:50:07.162Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T15:50:07.162Z", - "end": "2022-08-03T17:08:41.423Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "938976307338486810", - "game": "526489929631531009", - "start": "2022-04-22T22:59:47.137Z", - "end": "2022-04-23T02:02:33.052Z", - "events": [ - { - "start": "2022-04-22T22:59:47.137Z", - "end": "2022-04-23T02:02:33.052Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "542474758835535872", - "start": "2022-06-07T12:00:16.788Z", - "end": "2022-06-07T12:26:11.029Z", - "events": [ - { - "start": "2022-06-07T12:00:16.788Z", - "end": "2022-06-07T12:13:13.908Z", - "state": "IDLE" - }, - { - "start": "2022-06-07T12:13:13.908Z", - "end": "2022-06-07T12:26:11.028Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "900234800332446962", - "game": "546175179542364160", - "start": "2022-04-22T02:35:52.291Z", - "end": "2022-04-22T12:17:54.683Z", - "events": [ - { - "start": "2022-04-22T02:35:52.291Z", - "end": "2022-04-22T07:26:53.487Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T07:26:53.487Z", - "end": "2022-04-22T12:17:54.683Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "378424071510192465", - "game": "553697181249437716", - "start": "2022-07-11T14:07:30.778Z", - "end": "2022-07-11T16:50:37.749Z", - "events": [ - { - "start": "2022-07-11T14:07:30.778Z", - "end": "2022-07-11T14:40:08.172Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T14:40:08.172Z", - "end": "2022-07-11T15:12:45.566Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T15:12:45.566Z", - "end": "2022-07-11T15:45:22.960Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T15:45:22.960Z", - "end": "2022-07-11T16:18:00.354Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T16:18:00.354Z", - "end": "2022-07-11T16:50:37.748Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "535384357536399404", - "start": "2022-05-01T08:46:25.984Z", - "end": "2022-05-01T17:32:45.409Z", - "events": [ - { - "start": "2022-05-01T08:46:25.984Z", - "end": "2022-05-01T17:32:45.409Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "606163888052109312", - "start": "2022-07-22T15:50:03.252Z", - "end": "2022-07-23T00:42:56.348Z", - "events": [ - { - "start": "2022-07-22T15:50:03.252Z", - "end": "2022-07-22T17:36:37.871Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T17:36:37.871Z", - "end": "2022-07-22T19:23:12.490Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T19:23:12.490Z", - "end": "2022-07-22T21:09:47.109Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T21:09:47.109Z", - "end": "2022-07-22T22:56:21.728Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T22:56:21.728Z", - "end": "2022-07-23T00:42:56.347Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "911848869344266044", - "game": "512789427462995988", - "start": "2022-05-14T04:15:57.127Z", - "end": "2022-05-14T12:20:41.122Z", - "events": [ - { - "start": "2022-05-14T04:15:57.127Z", - "end": "2022-05-14T05:52:53.926Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T05:52:53.926Z", - "end": "2022-05-14T07:29:50.725Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T07:29:50.725Z", - "end": "2022-05-14T09:06:47.524Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-14T09:06:47.524Z", - "end": "2022-05-14T10:43:44.323Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-14T10:43:44.323Z", - "end": "2022-05-14T12:20:41.122Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "360264570671216445", - "game": "558547388583772201", - "start": "2022-07-04T17:31:19.808Z", - "end": "2022-07-04T19:56:07.562Z", - "events": [ - { - "start": "2022-07-04T17:31:19.808Z", - "end": "2022-07-04T19:56:07.562Z", - "state": "IDLE" - } - ] - }, - { - "user": "467658810442648809", - "game": "520462578061803588", - "start": "2022-06-26T21:26:04.439Z", - "end": "2022-06-27T04:04:20.683Z", - "events": [ - { - "start": "2022-06-26T21:26:04.439Z", - "end": "2022-06-26T23:05:38.500Z", - "state": "IDLE" - }, - { - "start": "2022-06-26T23:05:38.500Z", - "end": "2022-06-27T00:45:12.561Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T00:45:12.561Z", - "end": "2022-06-27T02:24:46.622Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:24:46.622Z", - "end": "2022-06-27T04:04:20.683Z", - "state": "IDLE" - } - ] - }, - { - "user": "453350270016457959", - "game": "597588168178663434", - "start": "2022-04-22T07:11:32.370Z", - "end": "2022-04-22T12:47:08.931Z", - "events": [ - { - "start": "2022-04-22T07:11:32.370Z", - "end": "2022-04-22T08:18:39.682Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T08:18:39.682Z", - "end": "2022-04-22T09:25:46.994Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-22T09:25:46.994Z", - "end": "2022-04-22T10:32:54.306Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-22T10:32:54.306Z", - "end": "2022-04-22T11:40:01.618Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-22T11:40:01.618Z", - "end": "2022-04-22T12:47:08.930Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "535371564850479134", - "start": "2022-07-28T07:23:11.688Z", - "end": "2022-07-28T16:34:45.573Z", - "events": [ - { - "start": "2022-07-28T07:23:11.688Z", - "end": "2022-07-28T16:34:45.573Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786084290971413565", - "game": "700136079562375258", - "start": "2022-06-13T07:13:26.568Z", - "end": "2022-06-13T11:11:34.002Z", - "events": [ - { - "start": "2022-06-13T07:13:26.568Z", - "end": "2022-06-13T08:12:58.426Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-13T08:12:58.426Z", - "end": "2022-06-13T09:12:30.284Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T09:12:30.284Z", - "end": "2022-06-13T10:12:02.142Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T10:12:02.142Z", - "end": "2022-06-13T11:11:34.000Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "512699108809637890", - "start": "2022-07-29T03:27:43.475Z", - "end": "2022-07-29T04:36:43.843Z", - "events": [ - { - "start": "2022-07-29T03:27:43.475Z", - "end": "2022-07-29T03:41:31.548Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T03:41:31.548Z", - "end": "2022-07-29T03:55:19.621Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T03:55:19.621Z", - "end": "2022-07-29T04:09:07.694Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T04:09:07.694Z", - "end": "2022-07-29T04:22:55.767Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T04:22:55.767Z", - "end": "2022-07-29T04:36:43.840Z", - "state": "IDLE" - } - ] - }, - { - "user": "900234800332446962", - "game": "512498684211232768", - "start": "2022-05-05T03:48:40.673Z", - "end": "2022-05-05T09:09:25.372Z", - "events": [ - { - "start": "2022-05-05T03:48:40.673Z", - "end": "2022-05-05T09:09:25.372Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "549054179973094329", - "game": "549512435585908756", - "start": "2022-04-20T11:00:52.700Z", - "end": "2022-04-20T15:53:59.285Z", - "events": [ - { - "start": "2022-04-20T11:00:52.700Z", - "end": "2022-04-20T13:27:25.992Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T13:27:25.992Z", - "end": "2022-04-20T15:53:59.284Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "512699108809637890", - "start": "2022-07-29T13:06:01.761Z", - "end": "2022-07-29T15:22:31.899Z", - "events": [ - { - "start": "2022-07-29T13:06:01.761Z", - "end": "2022-07-29T13:51:31.807Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T13:51:31.807Z", - "end": "2022-07-29T14:37:01.853Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T14:37:01.853Z", - "end": "2022-07-29T15:22:31.899Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "213263852824749877", - "game": "520462578061803588", - "start": "2022-04-18T08:53:15.429Z", - "end": "2022-04-18T15:07:41.255Z", - "events": [ - { - "start": "2022-04-18T08:53:15.429Z", - "end": "2022-04-18T10:08:08.594Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T10:08:08.594Z", - "end": "2022-04-18T11:23:01.759Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-18T11:23:01.759Z", - "end": "2022-04-18T12:37:54.924Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T12:37:54.924Z", - "end": "2022-04-18T13:52:48.089Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T13:52:48.089Z", - "end": "2022-04-18T15:07:41.254Z", - "state": "IDLE" - } - ] - }, - { - "user": "453350270016457959", - "game": "597588168178663434", - "start": "2022-06-10T16:35:31.961Z", - "end": "2022-06-10T23:15:52.082Z", - "events": [ - { - "start": "2022-06-10T16:35:31.961Z", - "end": "2022-06-10T23:15:52.082Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "713444659295913502", - "game": "606163888052109312", - "start": "2022-05-13T00:48:54.656Z", - "end": "2022-05-13T09:40:42.192Z", - "events": [ - { - "start": "2022-05-13T00:48:54.656Z", - "end": "2022-05-13T02:35:16.163Z", - "state": "IDLE" - }, - { - "start": "2022-05-13T02:35:16.163Z", - "end": "2022-05-13T04:21:37.670Z", - "state": "IDLE" - }, - { - "start": "2022-05-13T04:21:37.670Z", - "end": "2022-05-13T06:07:59.177Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-13T06:07:59.177Z", - "end": "2022-05-13T07:54:20.684Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-13T07:54:20.684Z", - "end": "2022-05-13T09:40:42.191Z", - "state": "IDLE" - } - ] - }, - { - "user": "931211630078779300", - "game": "514228311661084682", - "start": "2022-04-15T11:31:39.639Z", - "end": "2022-04-15T21:17:36.020Z", - "events": [ - { - "start": "2022-04-15T11:31:39.639Z", - "end": "2022-04-15T21:17:36.020Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "572456126872944651", - "start": "2022-07-27T04:09:56.759Z", - "end": "2022-07-27T10:41:45.464Z", - "events": [ - { - "start": "2022-07-27T04:09:56.759Z", - "end": "2022-07-27T05:28:18.500Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T05:28:18.500Z", - "end": "2022-07-27T06:46:40.241Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T06:46:40.241Z", - "end": "2022-07-27T08:05:01.982Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T08:05:01.982Z", - "end": "2022-07-27T09:23:23.723Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T09:23:23.723Z", - "end": "2022-07-27T10:41:45.464Z", - "state": "IDLE" - } - ] - }, - { - "user": "182925797752958092", - "game": "597588168178663434", - "start": "2022-04-17T14:24:14.222Z", - "end": "2022-04-17T21:55:00.093Z", - "events": [ - { - "start": "2022-04-17T14:24:14.222Z", - "end": "2022-04-17T21:55:00.093Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "597588168178663434", - "start": "2022-05-15T01:42:34.656Z", - "end": "2022-05-15T03:10:29.272Z", - "events": [ - { - "start": "2022-05-15T01:42:34.656Z", - "end": "2022-05-15T03:10:29.272Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "153631479524744694", - "game": "584069374462394368", - "start": "2022-05-08T09:28:55.956Z", - "end": "2022-05-08T14:12:25.744Z", - "events": [ - { - "start": "2022-05-08T09:28:55.956Z", - "end": "2022-05-08T10:25:37.913Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T10:25:37.913Z", - "end": "2022-05-08T11:22:19.870Z", - "state": "IDLE" - }, - { - "start": "2022-05-08T11:22:19.870Z", - "end": "2022-05-08T12:19:01.827Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T12:19:01.827Z", - "end": "2022-05-08T13:15:43.784Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T13:15:43.784Z", - "end": "2022-05-08T14:12:25.741Z", - "state": "IDLE" - } - ] - }, - { - "user": "786084290971413565", - "game": "519644267212177418", - "start": "2022-07-04T04:00:07.360Z", - "end": "2022-07-04T05:00:16.332Z", - "events": [ - { - "start": "2022-07-04T04:00:07.360Z", - "end": "2022-07-04T05:00:16.332Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "495724335127362694", - "game": "597588168178663434", - "start": "2022-07-11T22:59:14.331Z", - "end": "2022-07-12T03:28:33.167Z", - "events": [ - { - "start": "2022-07-11T22:59:14.331Z", - "end": "2022-07-12T00:29:00.609Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T00:29:00.609Z", - "end": "2022-07-12T01:58:46.887Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T01:58:46.887Z", - "end": "2022-07-12T03:28:33.165Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "686825797960121847", - "game": "542474758835535872", - "start": "2022-08-01T12:53:46.565Z", - "end": "2022-08-01T22:29:38.582Z", - "events": [ - { - "start": "2022-08-01T12:53:46.565Z", - "end": "2022-08-01T15:17:44.569Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-01T15:17:44.569Z", - "end": "2022-08-01T17:41:42.573Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T17:41:42.573Z", - "end": "2022-08-01T20:05:40.577Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-01T20:05:40.577Z", - "end": "2022-08-01T22:29:38.581Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "614380482620293151", - "start": "2022-05-27T05:33:39.529Z", - "end": "2022-05-27T09:39:34.482Z", - "events": [ - { - "start": "2022-05-27T05:33:39.529Z", - "end": "2022-05-27T06:22:50.519Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T06:22:50.519Z", - "end": "2022-05-27T07:12:01.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-27T07:12:01.509Z", - "end": "2022-05-27T08:01:12.499Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T08:01:12.499Z", - "end": "2022-05-27T08:50:23.489Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T08:50:23.489Z", - "end": "2022-05-27T09:39:34.479Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "424856688594618054", - "game": "572456126872944651", - "start": "2022-05-02T18:58:10.657Z", - "end": "2022-05-02T23:38:19.363Z", - "events": [ - { - "start": "2022-05-02T18:58:10.657Z", - "end": "2022-05-02T20:08:12.833Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T20:08:12.833Z", - "end": "2022-05-02T21:18:15.009Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-02T21:18:15.009Z", - "end": "2022-05-02T22:28:17.185Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T22:28:17.185Z", - "end": "2022-05-02T23:38:19.361Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "715446191320920764", - "game": "606163888052109312", - "start": "2022-06-19T19:05:08.362Z", - "end": "2022-06-19T20:49:43.521Z", - "events": [ - { - "start": "2022-06-19T19:05:08.362Z", - "end": "2022-06-19T19:26:03.393Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T19:26:03.393Z", - "end": "2022-06-19T19:46:58.424Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T19:46:58.424Z", - "end": "2022-06-19T20:07:53.455Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T20:07:53.455Z", - "end": "2022-06-19T20:28:48.486Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T20:28:48.486Z", - "end": "2022-06-19T20:49:43.517Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "355708392202112685", - "game": "588739017718366208", - "start": "2022-06-21T17:21:05.360Z", - "end": "2022-06-21T19:18:09.270Z", - "events": [ - { - "start": "2022-06-21T17:21:05.360Z", - "end": "2022-06-21T17:50:21.337Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T17:50:21.337Z", - "end": "2022-06-21T18:19:37.314Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T18:19:37.314Z", - "end": "2022-06-21T18:48:53.291Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T18:48:53.291Z", - "end": "2022-06-21T19:18:09.268Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "576482762446602270", - "start": "2022-07-14T16:46:25.631Z", - "end": "2022-07-14T16:52:38.938Z", - "events": [ - { - "start": "2022-07-14T16:46:25.631Z", - "end": "2022-07-14T16:47:58.957Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T16:47:58.957Z", - "end": "2022-07-14T16:49:32.283Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T16:49:32.283Z", - "end": "2022-07-14T16:51:05.609Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T16:51:05.609Z", - "end": "2022-07-14T16:52:38.935Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "636935635446628860", - "game": "700136079562375258", - "start": "2022-05-28T07:13:01.105Z", - "end": "2022-05-28T10:32:02.137Z", - "events": [ - { - "start": "2022-05-28T07:13:01.105Z", - "end": "2022-05-28T08:19:21.449Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T08:19:21.449Z", - "end": "2022-05-28T09:25:41.793Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T09:25:41.793Z", - "end": "2022-05-28T10:32:02.137Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "123137660023366590", - "game": "554573307161214977", - "start": "2022-07-19T04:46:39.274Z", - "end": "2022-07-19T14:41:03.881Z", - "events": [ - { - "start": "2022-07-19T04:46:39.274Z", - "end": "2022-07-19T09:43:51.577Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T09:43:51.577Z", - "end": "2022-07-19T14:41:03.880Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "463820732483181525", - "game": "614448244260339712", - "start": "2022-06-13T06:12:52.368Z", - "end": "2022-06-13T08:57:07.113Z", - "events": [ - { - "start": "2022-06-13T06:12:52.368Z", - "end": "2022-06-13T07:07:37.283Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-13T07:07:37.283Z", - "end": "2022-06-13T08:02:22.198Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T08:02:22.198Z", - "end": "2022-06-13T08:57:07.113Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "565021137482980984", - "game": "528145079819436043", - "start": "2022-04-30T22:02:30.646Z", - "end": "2022-05-01T04:12:08.028Z", - "events": [ - { - "start": "2022-04-30T22:02:30.646Z", - "end": "2022-05-01T00:05:43.106Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T00:05:43.106Z", - "end": "2022-05-01T02:08:55.566Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T02:08:55.566Z", - "end": "2022-05-01T04:12:08.026Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "614380482620293151", - "start": "2022-07-27T16:22:38.408Z", - "end": "2022-07-27T22:52:55.210Z", - "events": [ - { - "start": "2022-07-27T16:22:38.408Z", - "end": "2022-07-27T17:40:41.768Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T17:40:41.768Z", - "end": "2022-07-27T18:58:45.128Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T18:58:45.128Z", - "end": "2022-07-27T20:16:48.488Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T20:16:48.488Z", - "end": "2022-07-27T21:34:51.848Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T21:34:51.848Z", - "end": "2022-07-27T22:52:55.208Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302714757313826277", - "game": "523154344187789312", - "start": "2022-04-14T21:39:23.042Z", - "end": "2022-04-15T04:38:19.814Z", - "events": [ - { - "start": "2022-04-14T21:39:23.042Z", - "end": "2022-04-14T23:03:10.396Z", - "state": "IDLE" - }, - { - "start": "2022-04-14T23:03:10.396Z", - "end": "2022-04-15T00:26:57.750Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T00:26:57.750Z", - "end": "2022-04-15T01:50:45.104Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-15T01:50:45.104Z", - "end": "2022-04-15T03:14:32.458Z", - "state": "IDLE" - }, - { - "start": "2022-04-15T03:14:32.458Z", - "end": "2022-04-15T04:38:19.812Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "606163888052109312", - "start": "2022-06-16T13:30:45.105Z", - "end": "2022-06-16T22:02:17.579Z", - "events": [ - { - "start": "2022-06-16T13:30:45.105Z", - "end": "2022-06-16T22:02:17.579Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "467658810442648809", - "game": "569008830701240340", - "start": "2022-07-25T02:25:49.690Z", - "end": "2022-07-25T09:57:20.251Z", - "events": [ - { - "start": "2022-07-25T02:25:49.690Z", - "end": "2022-07-25T09:57:20.251Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "264503060524837708", - "game": "356875221078245376", - "start": "2022-04-29T21:22:56.242Z", - "end": "2022-04-29T23:11:48.660Z", - "events": [ - { - "start": "2022-04-29T21:22:56.242Z", - "end": "2022-04-29T21:44:42.725Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T21:44:42.725Z", - "end": "2022-04-29T22:06:29.208Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T22:06:29.208Z", - "end": "2022-04-29T22:28:15.691Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-29T22:28:15.691Z", - "end": "2022-04-29T22:50:02.174Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-29T22:50:02.174Z", - "end": "2022-04-29T23:11:48.657Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "600708263053781983", - "game": "606163888052109312", - "start": "2022-04-19T22:45:14.381Z", - "end": "2022-04-20T01:00:27.890Z", - "events": [ - { - "start": "2022-04-19T22:45:14.381Z", - "end": "2022-04-19T23:52:51.135Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T23:52:51.135Z", - "end": "2022-04-20T01:00:27.889Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "800318424708872602", - "game": "511619499053678668", - "start": "2022-06-13T17:17:45.564Z", - "end": "2022-06-14T01:56:47.805Z", - "events": [ - { - "start": "2022-06-13T17:17:45.564Z", - "end": "2022-06-14T01:56:47.805Z", - "state": "IDLE" - } - ] - }, - { - "user": "786028561315351452", - "game": "519644267212177418", - "start": "2022-07-20T19:24:11.603Z", - "end": "2022-07-20T20:16:25.073Z", - "events": [ - { - "start": "2022-07-20T19:24:11.603Z", - "end": "2022-07-20T19:41:36.093Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-20T19:41:36.093Z", - "end": "2022-07-20T19:59:00.583Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-20T19:59:00.583Z", - "end": "2022-07-20T20:16:25.073Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "774637841058278398", - "game": "512789343157485602", - "start": "2022-04-26T22:17:35.778Z", - "end": "2022-04-27T02:49:01.545Z", - "events": [ - { - "start": "2022-04-26T22:17:35.778Z", - "end": "2022-04-26T23:11:52.931Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T23:11:52.931Z", - "end": "2022-04-27T00:06:10.084Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T00:06:10.084Z", - "end": "2022-04-27T01:00:27.237Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:00:27.237Z", - "end": "2022-04-27T01:54:44.390Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:54:44.390Z", - "end": "2022-04-27T02:49:01.543Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "951131768137733554", - "game": "520462578061803588", - "start": "2022-04-26T20:34:07.787Z", - "end": "2022-04-27T01:47:20.833Z", - "events": [ - { - "start": "2022-04-26T20:34:07.787Z", - "end": "2022-04-26T22:18:32.135Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-26T22:18:32.135Z", - "end": "2022-04-27T00:02:56.483Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T00:02:56.483Z", - "end": "2022-04-27T01:47:20.831Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "559757870366930730", - "game": "597588168178663434", - "start": "2022-05-01T06:23:59.042Z", - "end": "2022-05-01T09:22:30.127Z", - "events": [ - { - "start": "2022-05-01T06:23:59.042Z", - "end": "2022-05-01T07:08:36.813Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T07:08:36.813Z", - "end": "2022-05-01T07:53:14.584Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-01T07:53:14.584Z", - "end": "2022-05-01T08:37:52.355Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T08:37:52.355Z", - "end": "2022-05-01T09:22:30.126Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "549054179973094329", - "game": "584069374462394368", - "start": "2022-05-08T17:59:47.471Z", - "end": "2022-05-09T03:39:09.531Z", - "events": [ - { - "start": "2022-05-08T17:59:47.471Z", - "end": "2022-05-08T21:12:54.824Z", - "state": "IDLE" - }, - { - "start": "2022-05-08T21:12:54.824Z", - "end": "2022-05-09T00:26:02.177Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-09T00:26:02.177Z", - "end": "2022-05-09T03:39:09.530Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "553697181249437716", - "start": "2022-07-16T21:51:22.649Z", - "end": "2022-07-17T00:28:51.829Z", - "events": [ - { - "start": "2022-07-16T21:51:22.649Z", - "end": "2022-07-16T22:22:52.485Z", - "state": "IDLE" - }, - { - "start": "2022-07-16T22:22:52.485Z", - "end": "2022-07-16T22:54:22.321Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T22:54:22.321Z", - "end": "2022-07-16T23:25:52.157Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T23:25:52.157Z", - "end": "2022-07-16T23:57:21.993Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-16T23:57:21.993Z", - "end": "2022-07-17T00:28:51.829Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "424856688594618054", - "game": "518088627234930688", - "start": "2022-06-21T08:27:20.558Z", - "end": "2022-06-21T13:59:11.005Z", - "events": [ - { - "start": "2022-06-21T08:27:20.558Z", - "end": "2022-06-21T09:50:18.169Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T09:50:18.169Z", - "end": "2022-06-21T11:13:15.780Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T11:13:15.780Z", - "end": "2022-06-21T12:36:13.391Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-21T12:36:13.391Z", - "end": "2022-06-21T13:59:11.002Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "126384926926158511", - "game": "528145079819436043", - "start": "2022-07-18T21:37:24.925Z", - "end": "2022-07-19T07:23:27.055Z", - "events": [ - { - "start": "2022-07-18T21:37:24.925Z", - "end": "2022-07-18T23:34:37.351Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T23:34:37.351Z", - "end": "2022-07-19T01:31:49.777Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T01:31:49.777Z", - "end": "2022-07-19T03:29:02.203Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T03:29:02.203Z", - "end": "2022-07-19T05:26:14.629Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T05:26:14.629Z", - "end": "2022-07-19T07:23:27.055Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "568387317892070397", - "game": "526489929631531009", - "start": "2022-05-11T05:11:39.193Z", - "end": "2022-05-11T12:41:24.603Z", - "events": [ - { - "start": "2022-05-11T05:11:39.193Z", - "end": "2022-05-11T07:41:34.329Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T07:41:34.329Z", - "end": "2022-05-11T10:11:29.465Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T10:11:29.465Z", - "end": "2022-05-11T12:41:24.601Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "511619499053678668", - "start": "2022-07-22T18:41:06.466Z", - "end": "2022-07-22T23:04:30.723Z", - "events": [ - { - "start": "2022-07-22T18:41:06.466Z", - "end": "2022-07-22T19:33:47.317Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T19:33:47.317Z", - "end": "2022-07-22T20:26:28.168Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T20:26:28.168Z", - "end": "2022-07-22T21:19:09.019Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T21:19:09.019Z", - "end": "2022-07-22T22:11:49.870Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T22:11:49.870Z", - "end": "2022-07-22T23:04:30.721Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "542075586886107149", - "start": "2022-06-21T10:41:25.648Z", - "end": "2022-06-21T20:04:53.561Z", - "events": [ - { - "start": "2022-06-21T10:41:25.648Z", - "end": "2022-06-21T15:23:09.604Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T15:23:09.604Z", - "end": "2022-06-21T20:04:53.560Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "123137660023366590", - "game": "512789427462995988", - "start": "2022-06-11T04:26:23.797Z", - "end": "2022-06-11T06:08:46.526Z", - "events": [ - { - "start": "2022-06-11T04:26:23.797Z", - "end": "2022-06-11T05:00:31.373Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T05:00:31.373Z", - "end": "2022-06-11T05:34:38.949Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-11T05:34:38.949Z", - "end": "2022-06-11T06:08:46.525Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "565341641427124244", - "start": "2022-05-16T10:29:08.191Z", - "end": "2022-05-16T13:49:35.420Z", - "events": [ - { - "start": "2022-05-16T10:29:08.191Z", - "end": "2022-05-16T11:35:57.267Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T11:35:57.267Z", - "end": "2022-05-16T12:42:46.343Z", - "state": "IDLE" - }, - { - "start": "2022-05-16T12:42:46.343Z", - "end": "2022-05-16T13:49:35.419Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "605723970188938456", - "game": "528145079819436043", - "start": "2022-05-18T10:41:01.829Z", - "end": "2022-05-18T12:30:21.384Z", - "events": [ - { - "start": "2022-05-18T10:41:01.829Z", - "end": "2022-05-18T11:35:41.606Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T11:35:41.606Z", - "end": "2022-05-18T12:30:21.383Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "161887854890745672", - "game": "558547388583772201", - "start": "2022-06-11T18:06:53.475Z", - "end": "2022-06-11T20:09:55.440Z", - "events": [ - { - "start": "2022-06-11T18:06:53.475Z", - "end": "2022-06-11T19:08:24.457Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-11T19:08:24.457Z", - "end": "2022-06-11T20:09:55.439Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "269014914705953013", - "game": "535869836748783616", - "start": "2022-05-15T13:36:07.616Z", - "end": "2022-05-15T16:59:04.511Z", - "events": [ - { - "start": "2022-05-15T13:36:07.616Z", - "end": "2022-05-15T15:17:36.063Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T15:17:36.063Z", - "end": "2022-05-15T16:59:04.510Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "200801427122341912", - "game": "614380482620293151", - "start": "2022-07-19T03:16:53.141Z", - "end": "2022-07-19T12:35:59.683Z", - "events": [ - { - "start": "2022-07-19T03:16:53.141Z", - "end": "2022-07-19T05:08:42.449Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T05:08:42.449Z", - "end": "2022-07-19T07:00:31.757Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T07:00:31.757Z", - "end": "2022-07-19T08:52:21.065Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T08:52:21.065Z", - "end": "2022-07-19T10:44:10.373Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T10:44:10.373Z", - "end": "2022-07-19T12:35:59.681Z", - "state": "IDLE" - } - ] - }, - { - "user": "510690749854514547", - "game": "530454325214969866", - "start": "2022-05-22T14:06:24.701Z", - "end": "2022-05-22T18:18:55.484Z", - "events": [ - { - "start": "2022-05-22T14:06:24.701Z", - "end": "2022-05-22T15:09:32.396Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-22T15:09:32.396Z", - "end": "2022-05-22T16:12:40.091Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-22T16:12:40.091Z", - "end": "2022-05-22T17:15:47.786Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-22T17:15:47.786Z", - "end": "2022-05-22T18:18:55.481Z", - "state": "IDLE" - } - ] - }, - { - "user": "568387317892070397", - "game": "520462578061803588", - "start": "2022-05-10T11:48:22.137Z", - "end": "2022-05-10T20:24:29.865Z", - "events": [ - { - "start": "2022-05-10T11:48:22.137Z", - "end": "2022-05-10T13:31:35.682Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T13:31:35.682Z", - "end": "2022-05-10T15:14:49.227Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T15:14:49.227Z", - "end": "2022-05-10T16:58:02.772Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T16:58:02.772Z", - "end": "2022-05-10T18:41:16.317Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T18:41:16.317Z", - "end": "2022-05-10T20:24:29.862Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "285410867718320291", - "game": "519644267212177418", - "start": "2022-07-07T08:26:43.236Z", - "end": "2022-07-07T11:24:01.635Z", - "events": [ - { - "start": "2022-07-07T08:26:43.236Z", - "end": "2022-07-07T11:24:01.635Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "512498684211232768", - "start": "2022-06-18T22:09:19.455Z", - "end": "2022-06-19T04:02:44.910Z", - "events": [ - { - "start": "2022-06-18T22:09:19.455Z", - "end": "2022-06-18T23:37:40.818Z", - "state": "IDLE" - }, - { - "start": "2022-06-18T23:37:40.818Z", - "end": "2022-06-19T01:06:02.181Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T01:06:02.181Z", - "end": "2022-06-19T02:34:23.544Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T02:34:23.544Z", - "end": "2022-06-19T04:02:44.907Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "521842831262875670", - "start": "2022-06-01T14:20:20.485Z", - "end": "2022-06-01T18:47:57.038Z", - "events": [ - { - "start": "2022-06-01T14:20:20.485Z", - "end": "2022-06-01T16:34:08.761Z", - "state": "IDLE" - }, - { - "start": "2022-06-01T16:34:08.761Z", - "end": "2022-06-01T18:47:57.037Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "535869836748783616", - "start": "2022-05-26T11:45:26.643Z", - "end": "2022-05-26T11:56:32.163Z", - "events": [ - { - "start": "2022-05-26T11:45:26.643Z", - "end": "2022-05-26T11:56:32.163Z", - "state": "IDLE" - } - ] - }, - { - "user": "623295654897148670", - "game": "520453007578628124", - "start": "2022-04-14T22:05:15.471Z", - "end": "2022-04-15T02:28:48.533Z", - "events": [ - { - "start": "2022-04-14T22:05:15.471Z", - "end": "2022-04-14T23:33:06.491Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-14T23:33:06.491Z", - "end": "2022-04-15T01:00:57.511Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-15T01:00:57.511Z", - "end": "2022-04-15T02:28:48.531Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "161887854890745672", - "game": "554921822626381879", - "start": "2022-06-11T23:43:20.492Z", - "end": "2022-06-12T05:31:01.994Z", - "events": [ - { - "start": "2022-06-11T23:43:20.492Z", - "end": "2022-06-12T01:39:14.326Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-12T01:39:14.326Z", - "end": "2022-06-12T03:35:08.160Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-12T03:35:08.160Z", - "end": "2022-06-12T05:31:01.994Z", - "state": "IDLE" - } - ] - }, - { - "user": "958598056500699208", - "game": "565341641427124244", - "start": "2022-05-08T15:25:05.881Z", - "end": "2022-05-09T00:34:38.069Z", - "events": [ - { - "start": "2022-05-08T15:25:05.881Z", - "end": "2022-05-08T19:59:51.975Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T19:59:51.975Z", - "end": "2022-05-09T00:34:38.069Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "137536289023624121", - "game": "597860020935327787", - "start": "2022-07-22T04:50:51.931Z", - "end": "2022-07-22T07:00:51.799Z", - "events": [ - { - "start": "2022-07-22T04:50:51.931Z", - "end": "2022-07-22T07:00:51.799Z", - "state": "IDLE" - } - ] - }, - { - "user": "147480245458136084", - "game": "572456126872944651", - "start": "2022-07-28T07:12:17.833Z", - "end": "2022-07-28T13:45:57.896Z", - "events": [ - { - "start": "2022-07-28T07:12:17.833Z", - "end": "2022-07-28T09:23:31.187Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T09:23:31.187Z", - "end": "2022-07-28T11:34:44.541Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-28T11:34:44.541Z", - "end": "2022-07-28T13:45:57.895Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "866600263421429886", - "game": "542474758835535872", - "start": "2022-04-21T22:55:21.840Z", - "end": "2022-04-22T05:43:50.743Z", - "events": [ - { - "start": "2022-04-21T22:55:21.840Z", - "end": "2022-04-22T02:19:36.291Z", - "state": "IDLE" - }, - { - "start": "2022-04-22T02:19:36.291Z", - "end": "2022-04-22T05:43:50.742Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "608700383891121851", - "game": "528145079819436043", - "start": "2022-07-18T16:54:49.418Z", - "end": "2022-07-19T01:21:30.440Z", - "events": [ - { - "start": "2022-07-18T16:54:49.418Z", - "end": "2022-07-19T01:21:30.440Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "623295654897148670", - "game": "606163888052109312", - "start": "2022-06-14T02:12:38.694Z", - "end": "2022-06-14T04:15:22.735Z", - "events": [ - { - "start": "2022-06-14T02:12:38.694Z", - "end": "2022-06-14T02:37:11.502Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T02:37:11.502Z", - "end": "2022-06-14T03:01:44.310Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-14T03:01:44.310Z", - "end": "2022-06-14T03:26:17.118Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-14T03:26:17.118Z", - "end": "2022-06-14T03:50:49.926Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-14T03:50:49.926Z", - "end": "2022-06-14T04:15:22.734Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "520462578061803588", - "start": "2022-06-17T02:55:44.102Z", - "end": "2022-06-17T04:10:11.449Z", - "events": [ - { - "start": "2022-06-17T02:55:44.102Z", - "end": "2022-06-17T03:20:33.217Z", - "state": "IDLE" - }, - { - "start": "2022-06-17T03:20:33.217Z", - "end": "2022-06-17T03:45:22.332Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T03:45:22.332Z", - "end": "2022-06-17T04:10:11.447Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "958598056500699208", - "game": "512789427462995988", - "start": "2022-07-31T01:01:51.469Z", - "end": "2022-07-31T01:47:41.679Z", - "events": [ - { - "start": "2022-07-31T01:01:51.469Z", - "end": "2022-07-31T01:13:19.021Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T01:13:19.021Z", - "end": "2022-07-31T01:24:46.573Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T01:24:46.573Z", - "end": "2022-07-31T01:36:14.125Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T01:36:14.125Z", - "end": "2022-07-31T01:47:41.677Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "628567265580410356", - "game": "535371564850479134", - "start": "2022-05-13T21:49:09.819Z", - "end": "2022-05-14T03:22:59.662Z", - "events": [ - { - "start": "2022-05-13T21:49:09.819Z", - "end": "2022-05-14T00:36:04.740Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T00:36:04.740Z", - "end": "2022-05-14T03:22:59.661Z", - "state": "IDLE" - } - ] - }, - { - "user": "596421190780633864", - "game": "614448244260339712", - "start": "2022-06-19T21:09:43.288Z", - "end": "2022-06-19T23:03:05.225Z", - "events": [ - { - "start": "2022-06-19T21:09:43.288Z", - "end": "2022-06-19T21:32:23.675Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T21:32:23.675Z", - "end": "2022-06-19T21:55:04.062Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T21:55:04.062Z", - "end": "2022-06-19T22:17:44.449Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T22:17:44.449Z", - "end": "2022-06-19T22:40:24.836Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T22:40:24.836Z", - "end": "2022-06-19T23:03:05.223Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "347172184335646820", - "game": "597588168178663434", - "start": "2022-05-24T06:57:56.936Z", - "end": "2022-05-24T15:55:15.435Z", - "events": [ - { - "start": "2022-05-24T06:57:56.936Z", - "end": "2022-05-24T09:57:03.102Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T09:57:03.102Z", - "end": "2022-05-24T12:56:09.268Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T12:56:09.268Z", - "end": "2022-05-24T15:55:15.434Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "511619499053678668", - "start": "2022-06-29T05:39:54.334Z", - "end": "2022-06-29T06:02:36.878Z", - "events": [ - { - "start": "2022-06-29T05:39:54.334Z", - "end": "2022-06-29T05:47:28.515Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-29T05:47:28.515Z", - "end": "2022-06-29T05:55:02.696Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-29T05:55:02.696Z", - "end": "2022-06-29T06:02:36.877Z", - "state": "IDLE" - } - ] - }, - { - "user": "791267126190249625", - "game": "530454325214969866", - "start": "2022-06-25T17:47:44.567Z", - "end": "2022-06-25T18:55:00.578Z", - "events": [ - { - "start": "2022-06-25T17:47:44.567Z", - "end": "2022-06-25T18:01:11.769Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T18:01:11.769Z", - "end": "2022-06-25T18:14:38.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-25T18:14:38.971Z", - "end": "2022-06-25T18:28:06.173Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T18:28:06.173Z", - "end": "2022-06-25T18:41:33.375Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T18:41:33.375Z", - "end": "2022-06-25T18:55:00.577Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "510199020782747732", - "start": "2022-07-18T05:23:01.890Z", - "end": "2022-07-18T10:04:54.361Z", - "events": [ - { - "start": "2022-07-18T05:23:01.890Z", - "end": "2022-07-18T06:56:59.380Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T06:56:59.380Z", - "end": "2022-07-18T08:30:56.870Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T08:30:56.870Z", - "end": "2022-07-18T10:04:54.360Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "686825797960121847", - "game": "511619499053678668", - "start": "2022-06-17T11:37:29.934Z", - "end": "2022-06-17T18:55:24.903Z", - "events": [ - { - "start": "2022-06-17T11:37:29.934Z", - "end": "2022-06-17T18:55:24.903Z", - "state": "IDLE" - } - ] - }, - { - "user": "378424071510192465", - "game": "512501896896970762", - "start": "2022-06-15T13:00:21.728Z", - "end": "2022-06-15T21:01:50.971Z", - "events": [ - { - "start": "2022-06-15T13:00:21.728Z", - "end": "2022-06-15T15:40:51.475Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T15:40:51.475Z", - "end": "2022-06-15T18:21:21.222Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-15T18:21:21.222Z", - "end": "2022-06-15T21:01:50.969Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "430732724825949756", - "game": "512789427462995988", - "start": "2022-08-04T20:49:42.137Z", - "end": "2022-08-05T00:53:07.549Z", - "events": [ - { - "start": "2022-08-04T20:49:42.137Z", - "end": "2022-08-05T00:53:07.549Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "554573307161214977", - "start": "2022-06-13T22:15:45.816Z", - "end": "2022-06-14T06:55:25.083Z", - "events": [ - { - "start": "2022-06-13T22:15:45.816Z", - "end": "2022-06-14T06:55:25.083Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "588739017718366208", - "start": "2022-07-18T16:07:01.613Z", - "end": "2022-07-18T23:00:20.624Z", - "events": [ - { - "start": "2022-07-18T16:07:01.613Z", - "end": "2022-07-18T17:50:21.365Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T17:50:21.365Z", - "end": "2022-07-18T19:33:41.117Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T19:33:41.117Z", - "end": "2022-07-18T21:17:00.869Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T21:17:00.869Z", - "end": "2022-07-18T23:00:20.621Z", - "state": "IDLE" - } - ] - }, - { - "user": "444246898747584433", - "game": "614448244260339712", - "start": "2022-05-10T03:03:22.482Z", - "end": "2022-05-10T09:45:42.518Z", - "events": [ - { - "start": "2022-05-10T03:03:22.482Z", - "end": "2022-05-10T05:17:29.160Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T05:17:29.160Z", - "end": "2022-05-10T07:31:35.838Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T07:31:35.838Z", - "end": "2022-05-10T09:45:42.516Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "554573307161214977", - "start": "2022-04-18T21:21:29.610Z", - "end": "2022-04-18T23:10:00.376Z", - "events": [ - { - "start": "2022-04-18T21:21:29.610Z", - "end": "2022-04-18T23:10:00.376Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "715446191320920764", - "game": "542075586886107149", - "start": "2022-06-13T21:49:08.442Z", - "end": "2022-06-14T00:12:19.180Z", - "events": [ - { - "start": "2022-06-13T21:49:08.442Z", - "end": "2022-06-13T22:36:52.021Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T22:36:52.021Z", - "end": "2022-06-13T23:24:35.600Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T23:24:35.600Z", - "end": "2022-06-14T00:12:19.179Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "922664752332558395", - "game": "542475118396309528", - "start": "2022-06-08T18:07:28.407Z", - "end": "2022-06-08T22:17:23.420Z", - "events": [ - { - "start": "2022-06-08T18:07:28.407Z", - "end": "2022-06-08T22:17:23.420Z", - "state": "IDLE" - } - ] - }, - { - "user": "686825797960121847", - "game": "535384357536399404", - "start": "2022-06-04T17:35:07.579Z", - "end": "2022-06-05T00:31:33.389Z", - "events": [ - { - "start": "2022-06-04T17:35:07.579Z", - "end": "2022-06-04T19:53:56.182Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T19:53:56.182Z", - "end": "2022-06-04T22:12:44.785Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T22:12:44.785Z", - "end": "2022-06-05T00:31:33.388Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "774637841058278398", - "game": "520453007578628124", - "start": "2022-06-15T23:06:29.962Z", - "end": "2022-06-16T04:14:45.009Z", - "events": [ - { - "start": "2022-06-15T23:06:29.962Z", - "end": "2022-06-16T04:14:45.009Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "732542352358923773", - "game": "535869836748783616", - "start": "2022-04-30T01:23:06.453Z", - "end": "2022-04-30T10:37:45.485Z", - "events": [ - { - "start": "2022-04-30T01:23:06.453Z", - "end": "2022-04-30T10:37:45.485Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "606163888052109312", - "start": "2022-05-06T01:26:40.278Z", - "end": "2022-05-06T08:15:51.866Z", - "events": [ - { - "start": "2022-05-06T01:26:40.278Z", - "end": "2022-05-06T04:51:16.072Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-06T04:51:16.072Z", - "end": "2022-05-06T08:15:51.866Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302714757313826277", - "game": "572456126872944651", - "start": "2022-07-19T04:33:48.356Z", - "end": "2022-07-19T04:56:28.880Z", - "events": [ - { - "start": "2022-07-19T04:33:48.356Z", - "end": "2022-07-19T04:39:28.487Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T04:39:28.487Z", - "end": "2022-07-19T04:45:08.618Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-19T04:45:08.618Z", - "end": "2022-07-19T04:50:48.749Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T04:50:48.749Z", - "end": "2022-07-19T04:56:28.880Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "881335427428668054", - "game": "535371564850479134", - "start": "2022-06-13T20:40:51.957Z", - "end": "2022-06-14T02:46:51.969Z", - "events": [ - { - "start": "2022-06-13T20:40:51.957Z", - "end": "2022-06-14T02:46:51.969Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "628567265580410356", - "game": "356875221078245376", - "start": "2022-06-04T00:11:37.318Z", - "end": "2022-06-04T07:40:26.736Z", - "events": [ - { - "start": "2022-06-04T00:11:37.318Z", - "end": "2022-06-04T07:40:26.736Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "297014162745407430", - "game": "520462578061803588", - "start": "2022-06-27T08:31:12.983Z", - "end": "2022-06-27T18:34:23.139Z", - "events": [ - { - "start": "2022-06-27T08:31:12.983Z", - "end": "2022-06-27T10:31:51.014Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T10:31:51.014Z", - "end": "2022-06-27T12:32:29.045Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T12:32:29.045Z", - "end": "2022-06-27T14:33:07.076Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T14:33:07.076Z", - "end": "2022-06-27T16:33:45.107Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T16:33:45.107Z", - "end": "2022-06-27T18:34:23.138Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "614380482620293151", - "start": "2022-06-12T09:17:21.307Z", - "end": "2022-06-12T11:04:19.052Z", - "events": [ - { - "start": "2022-06-12T09:17:21.307Z", - "end": "2022-06-12T10:10:50.179Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T10:10:50.179Z", - "end": "2022-06-12T11:04:19.051Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "528145079819436043", - "start": "2022-07-14T03:27:08.509Z", - "end": "2022-07-14T06:10:20.819Z", - "events": [ - { - "start": "2022-07-14T03:27:08.509Z", - "end": "2022-07-14T03:59:46.971Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T03:59:46.971Z", - "end": "2022-07-14T04:32:25.433Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T04:32:25.433Z", - "end": "2022-07-14T05:05:03.895Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T05:05:03.895Z", - "end": "2022-07-14T05:37:42.357Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T05:37:42.357Z", - "end": "2022-07-14T06:10:20.819Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "576482762446602270", - "start": "2022-05-25T05:30:25.924Z", - "end": "2022-05-25T08:44:26.832Z", - "events": [ - { - "start": "2022-05-25T05:30:25.924Z", - "end": "2022-05-25T06:35:06.226Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T06:35:06.226Z", - "end": "2022-05-25T07:39:46.528Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T07:39:46.528Z", - "end": "2022-05-25T08:44:26.830Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "791267126190249625", - "game": "575412499399180288", - "start": "2022-06-15T16:43:44.367Z", - "end": "2022-06-16T01:52:17.510Z", - "events": [ - { - "start": "2022-06-15T16:43:44.367Z", - "end": "2022-06-16T01:52:17.510Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "558547388583772201", - "start": "2022-05-01T20:24:27.220Z", - "end": "2022-05-01T23:35:55.078Z", - "events": [ - { - "start": "2022-05-01T20:24:27.220Z", - "end": "2022-05-01T21:12:19.184Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T21:12:19.184Z", - "end": "2022-05-01T22:00:11.148Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T22:00:11.148Z", - "end": "2022-05-01T22:48:03.112Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T22:48:03.112Z", - "end": "2022-05-01T23:35:55.076Z", - "state": "IDLE" - } - ] - }, - { - "user": "866600263421429886", - "game": "519644368735567873", - "start": "2022-08-05T13:15:21.129Z", - "end": "2022-08-05T18:44:37.769Z", - "events": [ - { - "start": "2022-08-05T13:15:21.129Z", - "end": "2022-08-05T18:44:37.769Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "512498684211232768", - "start": "2022-06-02T14:57:15.811Z", - "end": "2022-06-02T19:45:56.400Z", - "events": [ - { - "start": "2022-06-02T14:57:15.811Z", - "end": "2022-06-02T15:54:59.928Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T15:54:59.928Z", - "end": "2022-06-02T16:52:44.045Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T16:52:44.045Z", - "end": "2022-06-02T17:50:28.162Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T17:50:28.162Z", - "end": "2022-06-02T18:48:12.279Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-02T18:48:12.279Z", - "end": "2022-06-02T19:45:56.396Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "614380482620293151", - "start": "2022-04-19T22:33:22.566Z", - "end": "2022-04-20T00:27:54.021Z", - "events": [ - { - "start": "2022-04-19T22:33:22.566Z", - "end": "2022-04-19T22:56:16.857Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T22:56:16.857Z", - "end": "2022-04-19T23:19:11.148Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T23:19:11.148Z", - "end": "2022-04-19T23:42:05.439Z", - "state": "IDLE" - }, - { - "start": "2022-04-19T23:42:05.439Z", - "end": "2022-04-20T00:04:59.730Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T00:04:59.730Z", - "end": "2022-04-20T00:27:54.021Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "605723970188938456", - "game": "514228311661084682", - "start": "2022-07-01T16:05:40.181Z", - "end": "2022-07-01T19:59:32.408Z", - "events": [ - { - "start": "2022-07-01T16:05:40.181Z", - "end": "2022-07-01T17:04:08.237Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-01T17:04:08.237Z", - "end": "2022-07-01T18:02:36.293Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T18:02:36.293Z", - "end": "2022-07-01T19:01:04.349Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T19:01:04.349Z", - "end": "2022-07-01T19:59:32.405Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "786084290971413565", - "game": "614380482620293151", - "start": "2022-07-27T05:46:34.293Z", - "end": "2022-07-27T12:21:14.723Z", - "events": [ - { - "start": "2022-07-27T05:46:34.293Z", - "end": "2022-07-27T07:05:30.379Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T07:05:30.379Z", - "end": "2022-07-27T08:24:26.465Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T08:24:26.465Z", - "end": "2022-07-27T09:43:22.551Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T09:43:22.551Z", - "end": "2022-07-27T11:02:18.637Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T11:02:18.637Z", - "end": "2022-07-27T12:21:14.723Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "347172184335646820", - "game": "575412499399180288", - "start": "2022-07-08T08:41:32.737Z", - "end": "2022-07-08T13:26:58.974Z", - "events": [ - { - "start": "2022-07-08T08:41:32.737Z", - "end": "2022-07-08T13:26:58.974Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "774637841058278398", - "game": "512789343157485602", - "start": "2022-06-02T02:04:38.312Z", - "end": "2022-06-02T11:48:46.692Z", - "events": [ - { - "start": "2022-06-02T02:04:38.312Z", - "end": "2022-06-02T05:19:21.105Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T05:19:21.105Z", - "end": "2022-06-02T08:34:03.898Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T08:34:03.898Z", - "end": "2022-06-02T11:48:46.691Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302679892350666678", - "game": "526489929631531009", - "start": "2022-05-23T03:43:04.542Z", - "end": "2022-05-23T11:47:44.682Z", - "events": [ - { - "start": "2022-05-23T03:43:04.542Z", - "end": "2022-05-23T07:45:24.612Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T07:45:24.612Z", - "end": "2022-05-23T11:47:44.682Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "395281349698024181", - "game": "569253958967885828", - "start": "2022-07-12T07:49:46.180Z", - "end": "2022-07-12T12:43:01.935Z", - "events": [ - { - "start": "2022-07-12T07:49:46.180Z", - "end": "2022-07-12T09:03:05.118Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T09:03:05.118Z", - "end": "2022-07-12T10:16:24.056Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T10:16:24.056Z", - "end": "2022-07-12T11:29:42.994Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T11:29:42.994Z", - "end": "2022-07-12T12:43:01.932Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "519644368735567873", - "start": "2022-07-04T03:24:29.625Z", - "end": "2022-07-04T05:50:58.853Z", - "events": [ - { - "start": "2022-07-04T03:24:29.625Z", - "end": "2022-07-04T03:53:47.470Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-04T03:53:47.470Z", - "end": "2022-07-04T04:23:05.315Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-04T04:23:05.315Z", - "end": "2022-07-04T04:52:23.160Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T04:52:23.160Z", - "end": "2022-07-04T05:21:41.005Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T05:21:41.005Z", - "end": "2022-07-04T05:50:58.850Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "788818750251007268", - "game": "508057374875975682", - "start": "2022-05-19T15:09:41.613Z", - "end": "2022-05-19T17:43:48.124Z", - "events": [ - { - "start": "2022-05-19T15:09:41.613Z", - "end": "2022-05-19T15:40:30.915Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-19T15:40:30.915Z", - "end": "2022-05-19T16:11:20.217Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T16:11:20.217Z", - "end": "2022-05-19T16:42:09.519Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T16:42:09.519Z", - "end": "2022-05-19T17:12:58.821Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-19T17:12:58.821Z", - "end": "2022-05-19T17:43:48.123Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "614380482620293151", - "start": "2022-07-19T01:30:17.823Z", - "end": "2022-07-19T05:43:13.815Z", - "events": [ - { - "start": "2022-07-19T01:30:17.823Z", - "end": "2022-07-19T05:43:13.815Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302714757313826277", - "game": "553697181249437716", - "start": "2022-05-10T11:14:11.548Z", - "end": "2022-05-10T21:17:06.555Z", - "events": [ - { - "start": "2022-05-10T11:14:11.548Z", - "end": "2022-05-10T14:35:09.883Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T14:35:09.883Z", - "end": "2022-05-10T17:56:08.218Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-10T17:56:08.218Z", - "end": "2022-05-10T21:17:06.553Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "590467327095087095", - "game": "518088627234930688", - "start": "2022-06-02T16:21:25.398Z", - "end": "2022-06-02T19:10:06.820Z", - "events": [ - { - "start": "2022-06-02T16:21:25.398Z", - "end": "2022-06-02T17:03:35.753Z", - "state": "IDLE" - }, - { - "start": "2022-06-02T17:03:35.753Z", - "end": "2022-06-02T17:45:46.108Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-02T17:45:46.108Z", - "end": "2022-06-02T18:27:56.463Z", - "state": "IDLE" - }, - { - "start": "2022-06-02T18:27:56.463Z", - "end": "2022-06-02T19:10:06.818Z", - "state": "IDLE" - } - ] - }, - { - "user": "297014162745407430", - "game": "535371564850479134", - "start": "2022-05-29T00:07:58.979Z", - "end": "2022-05-29T08:26:07.056Z", - "events": [ - { - "start": "2022-05-29T00:07:58.979Z", - "end": "2022-05-29T02:54:01.671Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T02:54:01.671Z", - "end": "2022-05-29T05:40:04.363Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T05:40:04.363Z", - "end": "2022-05-29T08:26:07.055Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "597860020935327787", - "start": "2022-07-16T19:25:48.397Z", - "end": "2022-07-16T20:30:50.480Z", - "events": [ - { - "start": "2022-07-16T19:25:48.397Z", - "end": "2022-07-16T19:38:48.813Z", - "state": "IDLE" - }, - { - "start": "2022-07-16T19:38:48.813Z", - "end": "2022-07-16T19:51:49.229Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T19:51:49.229Z", - "end": "2022-07-16T20:04:49.645Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-16T20:04:49.645Z", - "end": "2022-07-16T20:17:50.061Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-16T20:17:50.061Z", - "end": "2022-07-16T20:30:50.477Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "546175179542364160", - "start": "2022-06-03T18:48:33.965Z", - "end": "2022-06-04T04:24:46.772Z", - "events": [ - { - "start": "2022-06-03T18:48:33.965Z", - "end": "2022-06-03T22:00:38.234Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T22:00:38.234Z", - "end": "2022-06-04T01:12:42.503Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T01:12:42.503Z", - "end": "2022-06-04T04:24:46.772Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "512501896896970762", - "start": "2022-06-29T17:55:03.636Z", - "end": "2022-06-29T21:35:17.112Z", - "events": [ - { - "start": "2022-06-29T17:55:03.636Z", - "end": "2022-06-29T21:35:17.112Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "395281349698024181", - "game": "510199020782747732", - "start": "2022-07-04T21:56:40.384Z", - "end": "2022-07-05T00:01:12.323Z", - "events": [ - { - "start": "2022-07-04T21:56:40.384Z", - "end": "2022-07-05T00:01:12.323Z", - "state": "IDLE" - } - ] - }, - { - "user": "605723970188938456", - "game": "554573307161214977", - "start": "2022-06-12T03:28:01.580Z", - "end": "2022-06-12T10:24:33.193Z", - "events": [ - { - "start": "2022-06-12T03:28:01.580Z", - "end": "2022-06-12T06:56:17.386Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T06:56:17.386Z", - "end": "2022-06-12T10:24:33.192Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "514228311661084682", - "start": "2022-07-24T05:28:45.611Z", - "end": "2022-07-24T08:19:23.412Z", - "events": [ - { - "start": "2022-07-24T05:28:45.611Z", - "end": "2022-07-24T06:11:25.061Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T06:11:25.061Z", - "end": "2022-07-24T06:54:04.511Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T06:54:04.511Z", - "end": "2022-07-24T07:36:43.961Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T07:36:43.961Z", - "end": "2022-07-24T08:19:23.411Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "549512435585908756", - "start": "2022-06-28T23:30:47.650Z", - "end": "2022-06-29T06:50:29.579Z", - "events": [ - { - "start": "2022-06-28T23:30:47.650Z", - "end": "2022-06-29T00:58:44.035Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T00:58:44.035Z", - "end": "2022-06-29T02:26:40.420Z", - "state": "IDLE" - }, - { - "start": "2022-06-29T02:26:40.420Z", - "end": "2022-06-29T03:54:36.805Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T03:54:36.805Z", - "end": "2022-06-29T05:22:33.190Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-29T05:22:33.190Z", - "end": "2022-06-29T06:50:29.575Z", - "state": "IDLE" - } - ] - }, - { - "user": "590467327095087095", - "game": "356875221078245376", - "start": "2022-05-27T18:31:27.991Z", - "end": "2022-05-27T23:36:04.449Z", - "events": [ - { - "start": "2022-05-27T18:31:27.991Z", - "end": "2022-05-27T21:03:46.220Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T21:03:46.220Z", - "end": "2022-05-27T23:36:04.449Z", - "state": "IDLE" - } - ] - }, - { - "user": "525940629729163286", - "game": "597860020935327787", - "start": "2022-06-28T16:51:21.576Z", - "end": "2022-06-28T20:52:09.267Z", - "events": [ - { - "start": "2022-06-28T16:51:21.576Z", - "end": "2022-06-28T18:11:37.473Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T18:11:37.473Z", - "end": "2022-06-28T19:31:53.370Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T19:31:53.370Z", - "end": "2022-06-28T20:52:09.267Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "700136079562375258", - "start": "2022-07-23T22:10:54.984Z", - "end": "2022-07-24T08:17:28.604Z", - "events": [ - { - "start": "2022-07-23T22:10:54.984Z", - "end": "2022-07-24T00:42:33.389Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-24T00:42:33.389Z", - "end": "2022-07-24T03:14:11.794Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-24T03:14:11.794Z", - "end": "2022-07-24T05:45:50.199Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-24T05:45:50.199Z", - "end": "2022-07-24T08:17:28.604Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "297014162745407430", - "game": "542475118396309528", - "start": "2022-08-05T12:35:13.970Z", - "end": "2022-08-05T13:25:29.746Z", - "events": [ - { - "start": "2022-08-05T12:35:13.970Z", - "end": "2022-08-05T12:47:47.914Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T12:47:47.914Z", - "end": "2022-08-05T13:00:21.858Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-05T13:00:21.858Z", - "end": "2022-08-05T13:12:55.802Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T13:12:55.802Z", - "end": "2022-08-05T13:25:29.746Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "213263852824749877", - "game": "584069374462394368", - "start": "2022-08-04T18:01:51.299Z", - "end": "2022-08-04T21:26:44.342Z", - "events": [ - { - "start": "2022-08-04T18:01:51.299Z", - "end": "2022-08-04T21:26:44.342Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "463820732483181525", - "game": "520462578061803588", - "start": "2022-07-10T06:37:13.535Z", - "end": "2022-07-10T15:45:37.514Z", - "events": [ - { - "start": "2022-07-10T06:37:13.535Z", - "end": "2022-07-10T15:45:37.514Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "788818750251007268", - "game": "526489929631531009", - "start": "2022-05-27T08:34:45.256Z", - "end": "2022-05-27T14:15:57.595Z", - "events": [ - { - "start": "2022-05-27T08:34:45.256Z", - "end": "2022-05-27T10:28:29.369Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T10:28:29.369Z", - "end": "2022-05-27T12:22:13.482Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-27T12:22:13.482Z", - "end": "2022-05-27T14:15:57.595Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "590467327095087095", - "game": "511619499053678668", - "start": "2022-06-25T11:57:05.983Z", - "end": "2022-06-25T19:13:19.863Z", - "events": [ - { - "start": "2022-06-25T11:57:05.983Z", - "end": "2022-06-25T15:35:12.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T15:35:12.923Z", - "end": "2022-06-25T19:13:19.863Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "537786518874514211", - "game": "553697181249437716", - "start": "2022-06-24T00:57:52.839Z", - "end": "2022-06-24T03:10:17.768Z", - "events": [ - { - "start": "2022-06-24T00:57:52.839Z", - "end": "2022-06-24T02:04:05.303Z", - "state": "IDLE" - }, - { - "start": "2022-06-24T02:04:05.303Z", - "end": "2022-06-24T03:10:17.767Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "584489284152985092", - "game": "558547388583772201", - "start": "2022-05-29T11:19:48.064Z", - "end": "2022-05-29T12:32:53.616Z", - "events": [ - { - "start": "2022-05-29T11:19:48.064Z", - "end": "2022-05-29T11:34:25.174Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T11:34:25.174Z", - "end": "2022-05-29T11:49:02.284Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T11:49:02.284Z", - "end": "2022-05-29T12:03:39.394Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T12:03:39.394Z", - "end": "2022-05-29T12:18:16.504Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T12:18:16.504Z", - "end": "2022-05-29T12:32:53.614Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "791267126190249625", - "game": "512789427462995988", - "start": "2022-07-11T17:27:25.698Z", - "end": "2022-07-11T23:55:53.631Z", - "events": [ - { - "start": "2022-07-11T17:27:25.698Z", - "end": "2022-07-11T19:04:32.681Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T19:04:32.681Z", - "end": "2022-07-11T20:41:39.664Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T20:41:39.664Z", - "end": "2022-07-11T22:18:46.647Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T22:18:46.647Z", - "end": "2022-07-11T23:55:53.630Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "512789427462995988", - "start": "2022-06-08T09:11:59.389Z", - "end": "2022-06-08T15:20:34.955Z", - "events": [ - { - "start": "2022-06-08T09:11:59.389Z", - "end": "2022-06-08T10:25:42.502Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T10:25:42.502Z", - "end": "2022-06-08T11:39:25.615Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T11:39:25.615Z", - "end": "2022-06-08T12:53:08.728Z", - "state": "IDLE" - }, - { - "start": "2022-06-08T12:53:08.728Z", - "end": "2022-06-08T14:06:51.841Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T14:06:51.841Z", - "end": "2022-06-08T15:20:34.954Z", - "state": "IDLE" - } - ] - }, - { - "user": "385692164951394422", - "game": "519644267212177418", - "start": "2022-06-05T07:24:22.023Z", - "end": "2022-06-05T08:32:03.869Z", - "events": [ - { - "start": "2022-06-05T07:24:22.023Z", - "end": "2022-06-05T07:46:55.971Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T07:46:55.971Z", - "end": "2022-06-05T08:09:29.919Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-05T08:09:29.919Z", - "end": "2022-06-05T08:32:03.867Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "592976500802846750", - "start": "2022-06-09T15:53:24.065Z", - "end": "2022-06-09T19:02:51.819Z", - "events": [ - { - "start": "2022-06-09T15:53:24.065Z", - "end": "2022-06-09T19:02:51.819Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "101572134856427564", - "game": "356875221078245376", - "start": "2022-05-10T05:49:05.476Z", - "end": "2022-05-10T07:50:33.211Z", - "events": [ - { - "start": "2022-05-10T05:49:05.476Z", - "end": "2022-05-10T06:19:27.409Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-10T06:19:27.409Z", - "end": "2022-05-10T06:49:49.342Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T06:49:49.342Z", - "end": "2022-05-10T07:20:11.275Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T07:20:11.275Z", - "end": "2022-05-10T07:50:33.208Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "440349172934867131", - "game": "512789343157485602", - "start": "2022-07-11T11:58:35.208Z", - "end": "2022-07-11T14:21:21.629Z", - "events": [ - { - "start": "2022-07-11T11:58:35.208Z", - "end": "2022-07-11T13:09:58.418Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T13:09:58.418Z", - "end": "2022-07-11T14:21:21.628Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "495724335127362694", - "game": "554573307161214977", - "start": "2022-04-13T12:24:16.995Z", - "end": "2022-04-13T17:43:24.160Z", - "events": [ - { - "start": "2022-04-13T12:24:16.995Z", - "end": "2022-04-13T17:43:24.160Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "131482253203487270", - "game": "512789427462995988", - "start": "2022-04-18T03:11:14.576Z", - "end": "2022-04-18T03:46:24.799Z", - "events": [ - { - "start": "2022-04-18T03:11:14.576Z", - "end": "2022-04-18T03:20:02.131Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T03:20:02.131Z", - "end": "2022-04-18T03:28:49.686Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T03:28:49.686Z", - "end": "2022-04-18T03:37:37.241Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T03:37:37.241Z", - "end": "2022-04-18T03:46:24.796Z", - "state": "IDLE" - } - ] - }, - { - "user": "541104083732114799", - "game": "512789343157485602", - "start": "2022-06-03T18:11:05.091Z", - "end": "2022-06-04T02:09:20.244Z", - "events": [ - { - "start": "2022-06-03T18:11:05.091Z", - "end": "2022-06-03T20:50:30.142Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T20:50:30.142Z", - "end": "2022-06-03T23:29:55.193Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T23:29:55.193Z", - "end": "2022-06-04T02:09:20.244Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "269014914705953013", - "game": "542474758835535872", - "start": "2022-05-05T06:12:15.476Z", - "end": "2022-05-05T10:53:38.659Z", - "events": [ - { - "start": "2022-05-05T06:12:15.476Z", - "end": "2022-05-05T07:08:32.112Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-05T07:08:32.112Z", - "end": "2022-05-05T08:04:48.748Z", - "state": "IDLE" - }, - { - "start": "2022-05-05T08:04:48.748Z", - "end": "2022-05-05T09:01:05.384Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T09:01:05.384Z", - "end": "2022-05-05T09:57:22.020Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T09:57:22.020Z", - "end": "2022-05-05T10:53:38.656Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "747381962738157784", - "game": "553697181249437716", - "start": "2022-06-03T09:16:05.174Z", - "end": "2022-06-03T10:28:20.524Z", - "events": [ - { - "start": "2022-06-03T09:16:05.174Z", - "end": "2022-06-03T09:34:09.011Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T09:34:09.011Z", - "end": "2022-06-03T09:52:12.848Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T09:52:12.848Z", - "end": "2022-06-03T10:10:16.685Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T10:10:16.685Z", - "end": "2022-06-03T10:28:20.522Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "559757870366930730", - "game": "535869836748783616", - "start": "2022-06-04T22:46:09.604Z", - "end": "2022-06-05T02:11:32.197Z", - "events": [ - { - "start": "2022-06-04T22:46:09.604Z", - "end": "2022-06-05T00:28:50.900Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T00:28:50.900Z", - "end": "2022-06-05T02:11:32.196Z", - "state": "IDLE" - } - ] - }, - { - "user": "126384926926158511", - "game": "512789427462995988", - "start": "2022-04-17T13:47:01.135Z", - "end": "2022-04-17T21:52:03.182Z", - "events": [ - { - "start": "2022-04-17T13:47:01.135Z", - "end": "2022-04-17T15:24:01.544Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T15:24:01.544Z", - "end": "2022-04-17T17:01:01.953Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-17T17:01:01.953Z", - "end": "2022-04-17T18:38:02.362Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-17T18:38:02.362Z", - "end": "2022-04-17T20:15:02.771Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-17T20:15:02.771Z", - "end": "2022-04-17T21:52:03.180Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "530454325214969866", - "start": "2022-06-19T12:27:22.908Z", - "end": "2022-06-19T16:41:57.439Z", - "events": [ - { - "start": "2022-06-19T12:27:22.908Z", - "end": "2022-06-19T13:31:01.540Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T13:31:01.540Z", - "end": "2022-06-19T14:34:40.172Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-19T14:34:40.172Z", - "end": "2022-06-19T15:38:18.804Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T15:38:18.804Z", - "end": "2022-06-19T16:41:57.436Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "200801427122341912", - "game": "512501896896970762", - "start": "2022-05-28T18:15:43.715Z", - "end": "2022-05-28T22:04:36.904Z", - "events": [ - { - "start": "2022-05-28T18:15:43.715Z", - "end": "2022-05-28T19:32:01.444Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T19:32:01.444Z", - "end": "2022-05-28T20:48:19.173Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T20:48:19.173Z", - "end": "2022-05-28T22:04:36.902Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "285410867718320291", - "game": "512501896896970762", - "start": "2022-08-05T13:40:43.379Z", - "end": "2022-08-05T22:42:46.963Z", - "events": [ - { - "start": "2022-08-05T13:40:43.379Z", - "end": "2022-08-05T15:56:14.275Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-05T15:56:14.275Z", - "end": "2022-08-05T18:11:45.171Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-05T18:11:45.171Z", - "end": "2022-08-05T20:27:16.067Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T20:27:16.067Z", - "end": "2022-08-05T22:42:46.963Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "623295654897148670", - "game": "512789120234422301", - "start": "2022-07-13T10:03:44.282Z", - "end": "2022-07-13T12:32:48.588Z", - "events": [ - { - "start": "2022-07-13T10:03:44.282Z", - "end": "2022-07-13T11:18:16.435Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T11:18:16.435Z", - "end": "2022-07-13T12:32:48.588Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "521842831262875670", - "start": "2022-07-12T19:06:18.391Z", - "end": "2022-07-12T19:31:36.703Z", - "events": [ - { - "start": "2022-07-12T19:06:18.391Z", - "end": "2022-07-12T19:18:57.547Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T19:18:57.547Z", - "end": "2022-07-12T19:31:36.703Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "614448244260339712", - "start": "2022-06-22T04:09:08.636Z", - "end": "2022-06-22T04:13:57.656Z", - "events": [ - { - "start": "2022-06-22T04:09:08.636Z", - "end": "2022-06-22T04:10:44.976Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T04:10:44.976Z", - "end": "2022-06-22T04:12:21.316Z", - "state": "IDLE" - }, - { - "start": "2022-06-22T04:12:21.316Z", - "end": "2022-06-22T04:13:57.656Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "800318424708872602", - "game": "554921822626381879", - "start": "2022-06-04T17:41:45.742Z", - "end": "2022-06-04T23:00:29.583Z", - "events": [ - { - "start": "2022-06-04T17:41:45.742Z", - "end": "2022-06-04T19:01:26.702Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T19:01:26.702Z", - "end": "2022-06-04T20:21:07.662Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T20:21:07.662Z", - "end": "2022-06-04T21:40:48.622Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T21:40:48.622Z", - "end": "2022-06-04T23:00:29.582Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "559757870366930730", - "game": "597860020935327787", - "start": "2022-07-31T14:46:01.659Z", - "end": "2022-07-31T19:21:40.365Z", - "events": [ - { - "start": "2022-07-31T14:46:01.659Z", - "end": "2022-07-31T15:41:09.400Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T15:41:09.400Z", - "end": "2022-07-31T16:36:17.141Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T16:36:17.141Z", - "end": "2022-07-31T17:31:24.882Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T17:31:24.882Z", - "end": "2022-07-31T18:26:32.623Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T18:26:32.623Z", - "end": "2022-07-31T19:21:40.364Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "606163888052109312", - "start": "2022-07-05T08:04:13.002Z", - "end": "2022-07-05T09:29:31.001Z", - "events": [ - { - "start": "2022-07-05T08:04:13.002Z", - "end": "2022-07-05T08:46:52.001Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-05T08:46:52.001Z", - "end": "2022-07-05T09:29:31.000Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "569008830701240340", - "start": "2022-07-16T17:10:01.725Z", - "end": "2022-07-16T18:51:06.492Z", - "events": [ - { - "start": "2022-07-16T17:10:01.725Z", - "end": "2022-07-16T18:51:06.492Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "198010595767135394", - "game": "588739017718366208", - "start": "2022-07-31T02:26:09.774Z", - "end": "2022-07-31T10:34:49.856Z", - "events": [ - { - "start": "2022-07-31T02:26:09.774Z", - "end": "2022-07-31T04:03:53.790Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T04:03:53.790Z", - "end": "2022-07-31T05:41:37.806Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T05:41:37.806Z", - "end": "2022-07-31T07:19:21.822Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T07:19:21.822Z", - "end": "2022-07-31T08:57:05.838Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-31T08:57:05.838Z", - "end": "2022-07-31T10:34:49.854Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "542474758835535872", - "start": "2022-07-17T23:17:05.742Z", - "end": "2022-07-18T07:54:16.518Z", - "events": [ - { - "start": "2022-07-17T23:17:05.742Z", - "end": "2022-07-18T02:09:29.334Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T02:09:29.334Z", - "end": "2022-07-18T05:01:52.926Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T05:01:52.926Z", - "end": "2022-07-18T07:54:16.518Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "530454325214969866", - "start": "2022-08-05T14:03:51.902Z", - "end": "2022-08-05T20:19:45.633Z", - "events": [ - { - "start": "2022-08-05T14:03:51.902Z", - "end": "2022-08-05T20:19:45.633Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "546175179542364160", - "start": "2022-05-25T03:48:32.871Z", - "end": "2022-05-25T09:50:04.757Z", - "events": [ - { - "start": "2022-05-25T03:48:32.871Z", - "end": "2022-05-25T05:49:03.499Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T05:49:03.499Z", - "end": "2022-05-25T07:49:34.127Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T07:49:34.127Z", - "end": "2022-05-25T09:50:04.755Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "549512435585908756", - "start": "2022-07-08T21:52:58.589Z", - "end": "2022-07-08T23:59:35.735Z", - "events": [ - { - "start": "2022-07-08T21:52:58.589Z", - "end": "2022-07-08T22:24:37.875Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T22:24:37.875Z", - "end": "2022-07-08T22:56:17.161Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-08T22:56:17.161Z", - "end": "2022-07-08T23:27:56.447Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-08T23:27:56.447Z", - "end": "2022-07-08T23:59:35.733Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "360264570671216445", - "game": "514228311661084682", - "start": "2022-05-12T08:29:28.812Z", - "end": "2022-05-12T15:54:27.429Z", - "events": [ - { - "start": "2022-05-12T08:29:28.812Z", - "end": "2022-05-12T10:20:43.466Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T10:20:43.466Z", - "end": "2022-05-12T12:11:58.120Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T12:11:58.120Z", - "end": "2022-05-12T14:03:12.774Z", - "state": "IDLE" - }, - { - "start": "2022-05-12T14:03:12.774Z", - "end": "2022-05-12T15:54:27.428Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "518088627234930688", - "start": "2022-07-11T00:26:42.411Z", - "end": "2022-07-11T08:54:18.480Z", - "events": [ - { - "start": "2022-07-11T00:26:42.411Z", - "end": "2022-07-11T02:33:36.428Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T02:33:36.428Z", - "end": "2022-07-11T04:40:30.445Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T04:40:30.445Z", - "end": "2022-07-11T06:47:24.462Z", - "state": "IDLE" - }, - { - "start": "2022-07-11T06:47:24.462Z", - "end": "2022-07-11T08:54:18.479Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "453350270016457959", - "game": "508057374875975682", - "start": "2022-07-30T14:27:55.872Z", - "end": "2022-07-30T16:15:42.390Z", - "events": [ - { - "start": "2022-07-30T14:27:55.872Z", - "end": "2022-07-30T16:15:42.390Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "800318424708872602", - "game": "512789427462995988", - "start": "2022-06-04T23:57:21.824Z", - "end": "2022-06-05T07:13:50.022Z", - "events": [ - { - "start": "2022-06-04T23:57:21.824Z", - "end": "2022-06-05T01:24:39.463Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T01:24:39.463Z", - "end": "2022-06-05T02:51:57.102Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-05T02:51:57.102Z", - "end": "2022-06-05T04:19:14.741Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-05T04:19:14.741Z", - "end": "2022-06-05T05:46:32.380Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T05:46:32.380Z", - "end": "2022-06-05T07:13:50.019Z", - "state": "IDLE" - } - ] - }, - { - "user": "346608907417001845", - "game": "523154344187789312", - "start": "2022-07-12T12:20:11.483Z", - "end": "2022-07-12T13:38:22.597Z", - "events": [ - { - "start": "2022-07-12T12:20:11.483Z", - "end": "2022-07-12T12:39:44.261Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T12:39:44.261Z", - "end": "2022-07-12T12:59:17.039Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T12:59:17.039Z", - "end": "2022-07-12T13:18:49.817Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T13:18:49.817Z", - "end": "2022-07-12T13:38:22.595Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "600708263053781983", - "game": "554573307161214977", - "start": "2022-04-14T00:21:53.214Z", - "end": "2022-04-14T02:08:03.866Z", - "events": [ - { - "start": "2022-04-14T00:21:53.214Z", - "end": "2022-04-14T01:14:58.540Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-14T01:14:58.540Z", - "end": "2022-04-14T02:08:03.866Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "608700383891121851", - "game": "565341641427124244", - "start": "2022-07-18T07:24:34.010Z", - "end": "2022-07-18T12:13:37.013Z", - "events": [ - { - "start": "2022-07-18T07:24:34.010Z", - "end": "2022-07-18T09:00:55.011Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T09:00:55.011Z", - "end": "2022-07-18T10:37:16.012Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T10:37:16.012Z", - "end": "2022-07-18T12:13:37.013Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "558547388583772201", - "start": "2022-07-04T00:05:05.611Z", - "end": "2022-07-04T09:55:46.303Z", - "events": [ - { - "start": "2022-07-04T00:05:05.611Z", - "end": "2022-07-04T02:32:45.784Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T02:32:45.784Z", - "end": "2022-07-04T05:00:25.957Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-04T05:00:25.957Z", - "end": "2022-07-04T07:28:06.130Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T07:28:06.130Z", - "end": "2022-07-04T09:55:46.303Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "590467327095087095", - "game": "550277544025522176", - "start": "2022-06-20T20:02:32.254Z", - "end": "2022-06-21T03:55:43.019Z", - "events": [ - { - "start": "2022-06-20T20:02:32.254Z", - "end": "2022-06-20T22:00:49.945Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T22:00:49.945Z", - "end": "2022-06-20T23:59:07.636Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-20T23:59:07.636Z", - "end": "2022-06-21T01:57:25.327Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T01:57:25.327Z", - "end": "2022-06-21T03:55:43.018Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "606163888052109312", - "start": "2022-06-07T04:55:45.598Z", - "end": "2022-06-07T07:49:57.167Z", - "events": [ - { - "start": "2022-06-07T04:55:45.598Z", - "end": "2022-06-07T06:22:51.382Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-07T06:22:51.382Z", - "end": "2022-06-07T07:49:57.166Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "269014914705953013", - "game": "512789343157485602", - "start": "2022-08-03T04:30:00.640Z", - "end": "2022-08-03T04:36:01.861Z", - "events": [ - { - "start": "2022-08-03T04:30:00.640Z", - "end": "2022-08-03T04:36:01.861Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "213263852824749877", - "game": "528145079819436043", - "start": "2022-08-02T15:58:08.829Z", - "end": "2022-08-03T00:16:52.200Z", - "events": [ - { - "start": "2022-08-02T15:58:08.829Z", - "end": "2022-08-02T18:44:23.286Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T18:44:23.286Z", - "end": "2022-08-02T21:30:37.743Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T21:30:37.743Z", - "end": "2022-08-03T00:16:52.200Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "537786518874514211", - "game": "549512435585908756", - "start": "2022-06-23T20:39:54.379Z", - "end": "2022-06-23T21:51:38.091Z", - "events": [ - { - "start": "2022-06-23T20:39:54.379Z", - "end": "2022-06-23T20:57:50.307Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-23T20:57:50.307Z", - "end": "2022-06-23T21:15:46.235Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T21:15:46.235Z", - "end": "2022-06-23T21:33:42.163Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T21:33:42.163Z", - "end": "2022-06-23T21:51:38.091Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "584489284152985092", - "game": "588739017718366208", - "start": "2022-05-05T07:55:59.851Z", - "end": "2022-05-05T10:21:39.344Z", - "events": [ - { - "start": "2022-05-05T07:55:59.851Z", - "end": "2022-05-05T10:21:39.344Z", - "state": "IDLE" - } - ] - }, - { - "user": "521350927850935744", - "game": "523154344187789312", - "start": "2022-05-18T20:34:30.734Z", - "end": "2022-05-19T04:14:28.602Z", - "events": [ - { - "start": "2022-05-18T20:34:30.734Z", - "end": "2022-05-18T23:07:50.023Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-18T23:07:50.023Z", - "end": "2022-05-19T01:41:09.312Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-19T01:41:09.312Z", - "end": "2022-05-19T04:14:28.601Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "525940629729163286", - "game": "597588168178663434", - "start": "2022-06-08T11:52:21.053Z", - "end": "2022-06-08T19:56:46.342Z", - "events": [ - { - "start": "2022-06-08T11:52:21.053Z", - "end": "2022-06-08T15:54:33.697Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T15:54:33.697Z", - "end": "2022-06-08T19:56:46.341Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "538658792298239054", - "game": "550277544025522176", - "start": "2022-07-02T03:58:36.856Z", - "end": "2022-07-02T05:49:46.981Z", - "events": [ - { - "start": "2022-07-02T03:58:36.856Z", - "end": "2022-07-02T04:54:11.918Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T04:54:11.918Z", - "end": "2022-07-02T05:49:46.980Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "768513326430993269", - "game": "597860020935327787", - "start": "2022-05-06T09:30:11.926Z", - "end": "2022-05-06T13:42:21.413Z", - "events": [ - { - "start": "2022-05-06T09:30:11.926Z", - "end": "2022-05-06T13:42:21.413Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "378424071510192465", - "game": "535869836748783616", - "start": "2022-07-27T10:41:04.871Z", - "end": "2022-07-27T12:12:09.572Z", - "events": [ - { - "start": "2022-07-27T10:41:04.871Z", - "end": "2022-07-27T12:12:09.572Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "560781100197216267", - "start": "2022-07-11T12:05:00.818Z", - "end": "2022-07-11T21:04:47.567Z", - "events": [ - { - "start": "2022-07-11T12:05:00.818Z", - "end": "2022-07-11T14:19:57.505Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T14:19:57.505Z", - "end": "2022-07-11T16:34:54.192Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T16:34:54.192Z", - "end": "2022-07-11T18:49:50.879Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T18:49:50.879Z", - "end": "2022-07-11T21:04:47.566Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "576482762446602270", - "start": "2022-05-21T20:17:40.500Z", - "end": "2022-05-22T05:14:40.599Z", - "events": [ - { - "start": "2022-05-21T20:17:40.500Z", - "end": "2022-05-22T00:46:10.549Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T00:46:10.549Z", - "end": "2022-05-22T05:14:40.598Z", - "state": "IDLE" - } - ] - }, - { - "user": "725502702868293700", - "game": "542475118396309528", - "start": "2022-07-09T10:14:20.635Z", - "end": "2022-07-09T15:11:17.702Z", - "events": [ - { - "start": "2022-07-09T10:14:20.635Z", - "end": "2022-07-09T11:53:19.657Z", - "state": "IDLE" - }, - { - "start": "2022-07-09T11:53:19.657Z", - "end": "2022-07-09T13:32:18.679Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T13:32:18.679Z", - "end": "2022-07-09T15:11:17.701Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "329429619186234053", - "game": "514228311661084682", - "start": "2022-06-12T15:54:12.122Z", - "end": "2022-06-12T17:12:10.655Z", - "events": [ - { - "start": "2022-06-12T15:54:12.122Z", - "end": "2022-06-12T16:20:11.633Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T16:20:11.633Z", - "end": "2022-06-12T16:46:11.144Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-12T16:46:11.144Z", - "end": "2022-06-12T17:12:10.655Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "182925797752958092", - "game": "519644368735567873", - "start": "2022-08-02T12:43:18.065Z", - "end": "2022-08-02T14:44:28.829Z", - "events": [ - { - "start": "2022-08-02T12:43:18.065Z", - "end": "2022-08-02T13:43:53.447Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T13:43:53.447Z", - "end": "2022-08-02T14:44:28.829Z", - "state": "IDLE" - } - ] - }, - { - "user": "182925797752958092", - "game": "554921822626381879", - "start": "2022-06-12T22:32:35.498Z", - "end": "2022-06-13T01:43:51.849Z", - "events": [ - { - "start": "2022-06-12T22:32:35.498Z", - "end": "2022-06-12T23:10:50.768Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-12T23:10:50.768Z", - "end": "2022-06-12T23:49:06.038Z", - "state": "IDLE" - }, - { - "start": "2022-06-12T23:49:06.038Z", - "end": "2022-06-13T00:27:21.308Z", - "state": "IDLE" - }, - { - "start": "2022-06-13T00:27:21.308Z", - "end": "2022-06-13T01:05:36.578Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T01:05:36.578Z", - "end": "2022-06-13T01:43:51.848Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "636935635446628860", - "game": "549512435585908756", - "start": "2022-07-14T17:42:12.237Z", - "end": "2022-07-15T01:29:38.303Z", - "events": [ - { - "start": "2022-07-14T17:42:12.237Z", - "end": "2022-07-14T19:15:41.450Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T19:15:41.450Z", - "end": "2022-07-14T20:49:10.663Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T20:49:10.663Z", - "end": "2022-07-14T22:22:39.876Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T22:22:39.876Z", - "end": "2022-07-14T23:56:09.089Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T23:56:09.089Z", - "end": "2022-07-15T01:29:38.302Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "694111074254984301", - "game": "512789427462995988", - "start": "2022-07-08T22:19:32.917Z", - "end": "2022-07-09T00:23:06.659Z", - "events": [ - { - "start": "2022-07-08T22:19:32.917Z", - "end": "2022-07-08T23:21:19.788Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-08T23:21:19.788Z", - "end": "2022-07-09T00:23:06.659Z", - "state": "IDLE" - } - ] - }, - { - "user": "457796054587169483", - "game": "535384357536399404", - "start": "2022-07-26T17:10:11.222Z", - "end": "2022-07-27T03:07:14.797Z", - "events": [ - { - "start": "2022-07-26T17:10:11.222Z", - "end": "2022-07-26T19:09:35.937Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-26T19:09:35.937Z", - "end": "2022-07-26T21:09:00.652Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-26T21:09:00.652Z", - "end": "2022-07-26T23:08:25.367Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-26T23:08:25.367Z", - "end": "2022-07-27T01:07:50.082Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T01:07:50.082Z", - "end": "2022-07-27T03:07:14.797Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "123137660023366590", - "game": "575412499399180288", - "start": "2022-06-03T15:34:52.910Z", - "end": "2022-06-03T19:29:19.503Z", - "events": [ - { - "start": "2022-06-03T15:34:52.910Z", - "end": "2022-06-03T16:21:46.228Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T16:21:46.228Z", - "end": "2022-06-03T17:08:39.546Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-03T17:08:39.546Z", - "end": "2022-06-03T17:55:32.864Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T17:55:32.864Z", - "end": "2022-06-03T18:42:26.182Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-03T18:42:26.182Z", - "end": "2022-06-03T19:29:19.500Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "592976500802846750", - "start": "2022-07-14T15:39:28.938Z", - "end": "2022-07-14T22:21:03.940Z", - "events": [ - { - "start": "2022-07-14T15:39:28.938Z", - "end": "2022-07-14T17:19:52.688Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T17:19:52.688Z", - "end": "2022-07-14T19:00:16.438Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-14T19:00:16.438Z", - "end": "2022-07-14T20:40:40.188Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T20:40:40.188Z", - "end": "2022-07-14T22:21:03.938Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302347517889336519", - "game": "510199020782747732", - "start": "2022-05-27T04:31:33.207Z", - "end": "2022-05-27T10:16:41.214Z", - "events": [ - { - "start": "2022-05-27T04:31:33.207Z", - "end": "2022-05-27T05:40:34.808Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T05:40:34.808Z", - "end": "2022-05-27T06:49:36.409Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T06:49:36.409Z", - "end": "2022-05-27T07:58:38.010Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T07:58:38.010Z", - "end": "2022-05-27T09:07:39.611Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T09:07:39.611Z", - "end": "2022-05-27T10:16:41.212Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "554573307161214977", - "start": "2022-06-14T07:09:31.706Z", - "end": "2022-06-14T13:56:30.313Z", - "events": [ - { - "start": "2022-06-14T07:09:31.706Z", - "end": "2022-06-14T08:30:55.427Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-14T08:30:55.427Z", - "end": "2022-06-14T09:52:19.148Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T09:52:19.148Z", - "end": "2022-06-14T11:13:42.869Z", - "state": "IDLE" - }, - { - "start": "2022-06-14T11:13:42.869Z", - "end": "2022-06-14T12:35:06.590Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-14T12:35:06.590Z", - "end": "2022-06-14T13:56:30.311Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "931211630078779300", - "game": "512789427462995988", - "start": "2022-07-07T02:38:50.691Z", - "end": "2022-07-07T09:08:09.162Z", - "events": [ - { - "start": "2022-07-07T02:38:50.691Z", - "end": "2022-07-07T09:08:09.162Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "430732724825949756", - "game": "546175179542364160", - "start": "2022-07-22T14:26:54.460Z", - "end": "2022-07-22T22:50:34.867Z", - "events": [ - { - "start": "2022-07-22T14:26:54.460Z", - "end": "2022-07-22T17:14:47.929Z", - "state": "IDLE" - }, - { - "start": "2022-07-22T17:14:47.929Z", - "end": "2022-07-22T20:02:41.398Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T20:02:41.398Z", - "end": "2022-07-22T22:50:34.867Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "878082205985098233", - "game": "530454325214969866", - "start": "2022-06-20T19:58:02.528Z", - "end": "2022-06-21T05:27:08.126Z", - "events": [ - { - "start": "2022-06-20T19:58:02.528Z", - "end": "2022-06-20T22:20:18.927Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-20T22:20:18.927Z", - "end": "2022-06-21T00:42:35.326Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T00:42:35.326Z", - "end": "2022-06-21T03:04:51.725Z", - "state": "IDLE" - }, - { - "start": "2022-06-21T03:04:51.725Z", - "end": "2022-06-21T05:27:08.124Z", - "state": "IDLE" - } - ] - }, - { - "user": "559757870366930730", - "game": "526489929631531009", - "start": "2022-05-12T07:32:55.889Z", - "end": "2022-05-12T15:57:29.239Z", - "events": [ - { - "start": "2022-05-12T07:32:55.889Z", - "end": "2022-05-12T09:13:50.559Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T09:13:50.559Z", - "end": "2022-05-12T10:54:45.229Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T10:54:45.229Z", - "end": "2022-05-12T12:35:39.899Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T12:35:39.899Z", - "end": "2022-05-12T14:16:34.569Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T14:16:34.569Z", - "end": "2022-05-12T15:57:29.239Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "900234800332446962", - "game": "512501896896970762", - "start": "2022-06-17T03:42:29.351Z", - "end": "2022-06-17T07:20:22.181Z", - "events": [ - { - "start": "2022-06-17T03:42:29.351Z", - "end": "2022-06-17T04:36:57.558Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T04:36:57.558Z", - "end": "2022-06-17T05:31:25.765Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-17T05:31:25.765Z", - "end": "2022-06-17T06:25:53.972Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T06:25:53.972Z", - "end": "2022-06-17T07:20:22.179Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "530454325214969866", - "start": "2022-05-13T19:40:07.906Z", - "end": "2022-05-14T00:59:16.577Z", - "events": [ - { - "start": "2022-05-13T19:40:07.906Z", - "end": "2022-05-14T00:59:16.577Z", - "state": "IDLE" - } - ] - }, - { - "user": "355708392202112685", - "game": "526489929631531009", - "start": "2022-05-06T15:23:33.436Z", - "end": "2022-05-06T19:07:53.202Z", - "events": [ - { - "start": "2022-05-06T15:23:33.436Z", - "end": "2022-05-06T17:15:43.319Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-06T17:15:43.319Z", - "end": "2022-05-06T19:07:53.202Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "628567265580410356", - "game": "535869836748783616", - "start": "2022-05-27T06:25:42.283Z", - "end": "2022-05-27T11:03:16.514Z", - "events": [ - { - "start": "2022-05-27T06:25:42.283Z", - "end": "2022-05-27T07:58:13.693Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T07:58:13.693Z", - "end": "2022-05-27T09:30:45.103Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-27T09:30:45.103Z", - "end": "2022-05-27T11:03:16.513Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "900234800332446962", - "game": "597588168178663434", - "start": "2022-06-07T03:47:44.687Z", - "end": "2022-06-07T10:37:50.790Z", - "events": [ - { - "start": "2022-06-07T03:47:44.687Z", - "end": "2022-06-07T05:09:45.907Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T05:09:45.907Z", - "end": "2022-06-07T06:31:47.127Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T06:31:47.127Z", - "end": "2022-06-07T07:53:48.347Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-07T07:53:48.347Z", - "end": "2022-06-07T09:15:49.567Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-07T09:15:49.567Z", - "end": "2022-06-07T10:37:50.787Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "568387317892070397", - "game": "606163888052109312", - "start": "2022-08-04T18:20:08.785Z", - "end": "2022-08-04T19:55:35.409Z", - "events": [ - { - "start": "2022-08-04T18:20:08.785Z", - "end": "2022-08-04T18:51:57.659Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-04T18:51:57.659Z", - "end": "2022-08-04T19:23:46.533Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T19:23:46.533Z", - "end": "2022-08-04T19:55:35.407Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "600708263053781983", - "game": "514228311661084682", - "start": "2022-05-15T22:47:45.207Z", - "end": "2022-05-16T01:45:12.173Z", - "events": [ - { - "start": "2022-05-15T22:47:45.207Z", - "end": "2022-05-15T23:32:06.948Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T23:32:06.948Z", - "end": "2022-05-16T00:16:28.689Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T00:16:28.689Z", - "end": "2022-05-16T01:00:50.430Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-16T01:00:50.430Z", - "end": "2022-05-16T01:45:12.171Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "788818750251007268", - "game": "597588168178663434", - "start": "2022-08-01T02:52:54.753Z", - "end": "2022-08-01T02:58:24.494Z", - "events": [ - { - "start": "2022-08-01T02:52:54.753Z", - "end": "2022-08-01T02:58:24.494Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512501896896970762", - "start": "2022-07-13T15:33:19.491Z", - "end": "2022-07-13T21:05:21.120Z", - "events": [ - { - "start": "2022-07-13T15:33:19.491Z", - "end": "2022-07-13T17:24:00.034Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T17:24:00.034Z", - "end": "2022-07-13T19:14:40.577Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-13T19:14:40.577Z", - "end": "2022-07-13T21:05:21.120Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "520462578061803588", - "start": "2022-05-29T04:44:47.760Z", - "end": "2022-05-29T11:52:11.945Z", - "events": [ - { - "start": "2022-05-29T04:44:47.760Z", - "end": "2022-05-29T07:07:15.821Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T07:07:15.821Z", - "end": "2022-05-29T09:29:43.882Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T09:29:43.882Z", - "end": "2022-05-29T11:52:11.943Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "938976307338486810", - "game": "542474758835535872", - "start": "2022-05-27T19:27:21.307Z", - "end": "2022-05-27T23:42:46.396Z", - "events": [ - { - "start": "2022-05-27T19:27:21.307Z", - "end": "2022-05-27T20:31:12.579Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T20:31:12.579Z", - "end": "2022-05-27T21:35:03.851Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-27T21:35:03.851Z", - "end": "2022-05-27T22:38:55.123Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T22:38:55.123Z", - "end": "2022-05-27T23:42:46.395Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "525940629729163286", - "game": "542474758835535872", - "start": "2022-07-29T10:50:11.600Z", - "end": "2022-07-29T11:49:07.164Z", - "events": [ - { - "start": "2022-07-29T10:50:11.600Z", - "end": "2022-07-29T11:01:58.712Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-29T11:01:58.712Z", - "end": "2022-07-29T11:13:45.824Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T11:13:45.824Z", - "end": "2022-07-29T11:25:32.936Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T11:25:32.936Z", - "end": "2022-07-29T11:37:20.048Z", - "state": "IDLE" - }, - { - "start": "2022-07-29T11:37:20.048Z", - "end": "2022-07-29T11:49:07.160Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "329429619186234053", - "game": "597860020935327787", - "start": "2022-06-27T02:24:54.294Z", - "end": "2022-06-27T02:25:02.917Z", - "events": [ - { - "start": "2022-06-27T02:24:54.294Z", - "end": "2022-06-27T02:24:56.018Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-27T02:24:56.018Z", - "end": "2022-06-27T02:24:57.742Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:24:57.742Z", - "end": "2022-06-27T02:24:59.466Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:24:59.466Z", - "end": "2022-06-27T02:25:01.190Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T02:25:01.190Z", - "end": "2022-06-27T02:25:02.914Z", - "state": "IDLE" - } - ] - }, - { - "user": "658550407298256890", - "game": "519644267212177418", - "start": "2022-06-25T10:32:10.626Z", - "end": "2022-06-25T17:28:37.002Z", - "events": [ - { - "start": "2022-06-25T10:32:10.626Z", - "end": "2022-06-25T12:50:59.418Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-25T12:50:59.418Z", - "end": "2022-06-25T15:09:48.210Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-25T15:09:48.210Z", - "end": "2022-06-25T17:28:37.002Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "430732724825949756", - "game": "520462578061803588", - "start": "2022-06-13T02:21:41.747Z", - "end": "2022-06-13T07:18:53.877Z", - "events": [ - { - "start": "2022-06-13T02:21:41.747Z", - "end": "2022-06-13T03:35:59.779Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-13T03:35:59.779Z", - "end": "2022-06-13T04:50:17.811Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T04:50:17.811Z", - "end": "2022-06-13T06:04:35.843Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-13T06:04:35.843Z", - "end": "2022-06-13T07:18:53.875Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "608700383891121851", - "game": "511619499053678668", - "start": "2022-07-25T10:55:59.233Z", - "end": "2022-07-25T15:48:09.442Z", - "events": [ - { - "start": "2022-07-25T10:55:59.233Z", - "end": "2022-07-25T12:09:01.785Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-25T12:09:01.785Z", - "end": "2022-07-25T13:22:04.337Z", - "state": "IDLE" - }, - { - "start": "2022-07-25T13:22:04.337Z", - "end": "2022-07-25T14:35:06.889Z", - "state": "IDLE" - }, - { - "start": "2022-07-25T14:35:06.889Z", - "end": "2022-07-25T15:48:09.441Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "554573307161214977", - "start": "2022-06-27T00:28:15.348Z", - "end": "2022-06-27T05:09:39.662Z", - "events": [ - { - "start": "2022-06-27T00:28:15.348Z", - "end": "2022-06-27T01:38:36.426Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T01:38:36.426Z", - "end": "2022-06-27T02:48:57.504Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T02:48:57.504Z", - "end": "2022-06-27T03:59:18.582Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-27T03:59:18.582Z", - "end": "2022-06-27T05:09:39.660Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "385692164951394422", - "game": "553697181249437716", - "start": "2022-07-03T04:53:40.719Z", - "end": "2022-07-03T09:44:13.630Z", - "events": [ - { - "start": "2022-07-03T04:53:40.719Z", - "end": "2022-07-03T06:06:18.946Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T06:06:18.946Z", - "end": "2022-07-03T07:18:57.173Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-03T07:18:57.173Z", - "end": "2022-07-03T08:31:35.400Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T08:31:35.400Z", - "end": "2022-07-03T09:44:13.627Z", - "state": "IDLE" - } - ] - }, - { - "user": "596421190780633864", - "game": "535869836748783616", - "start": "2022-07-01T11:41:01.459Z", - "end": "2022-07-01T17:18:46.835Z", - "events": [ - { - "start": "2022-07-01T11:41:01.459Z", - "end": "2022-07-01T14:29:54.147Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T14:29:54.147Z", - "end": "2022-07-01T17:18:46.835Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "747381962738157784", - "game": "560781100197216267", - "start": "2022-05-04T07:14:22.369Z", - "end": "2022-05-04T14:46:07.078Z", - "events": [ - { - "start": "2022-05-04T07:14:22.369Z", - "end": "2022-05-04T09:07:18.546Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T09:07:18.546Z", - "end": "2022-05-04T11:00:14.723Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T11:00:14.723Z", - "end": "2022-05-04T12:53:10.900Z", - "state": "IDLE" - }, - { - "start": "2022-05-04T12:53:10.900Z", - "end": "2022-05-04T14:46:07.077Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "686825797960121847", - "game": "553697181249437716", - "start": "2022-06-16T14:52:09.046Z", - "end": "2022-06-16T21:31:59.157Z", - "events": [ - { - "start": "2022-06-16T14:52:09.046Z", - "end": "2022-06-16T16:12:07.068Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T16:12:07.068Z", - "end": "2022-06-16T17:32:05.090Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T17:32:05.090Z", - "end": "2022-06-16T18:52:03.112Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T18:52:03.112Z", - "end": "2022-06-16T20:12:01.134Z", - "state": "IDLE" - }, - { - "start": "2022-06-16T20:12:01.134Z", - "end": "2022-06-16T21:31:59.156Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "881335427428668054", - "game": "554573307161214977", - "start": "2022-07-20T22:29:40.940Z", - "end": "2022-07-21T07:12:37.419Z", - "events": [ - { - "start": "2022-07-20T22:29:40.940Z", - "end": "2022-07-21T00:14:16.235Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T00:14:16.235Z", - "end": "2022-07-21T01:58:51.530Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T01:58:51.530Z", - "end": "2022-07-21T03:43:26.825Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T03:43:26.825Z", - "end": "2022-07-21T05:28:02.120Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T05:28:02.120Z", - "end": "2022-07-21T07:12:37.415Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "762163239408560283", - "game": "528145079819436043", - "start": "2022-04-19T18:43:00.842Z", - "end": "2022-04-20T00:46:53.790Z", - "events": [ - { - "start": "2022-04-19T18:43:00.842Z", - "end": "2022-04-19T21:44:57.316Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T21:44:57.316Z", - "end": "2022-04-20T00:46:53.790Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302679892350666678", - "game": "508057374875975682", - "start": "2022-05-23T06:50:30.505Z", - "end": "2022-05-23T14:08:51.860Z", - "events": [ - { - "start": "2022-05-23T06:50:30.505Z", - "end": "2022-05-23T08:40:05.843Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T08:40:05.843Z", - "end": "2022-05-23T10:29:41.181Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T10:29:41.181Z", - "end": "2022-05-23T12:19:16.519Z", - "state": "IDLE" - }, - { - "start": "2022-05-23T12:19:16.519Z", - "end": "2022-05-23T14:08:51.857Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "596421190780633864", - "game": "519644368735567873", - "start": "2022-07-10T01:38:31.536Z", - "end": "2022-07-10T08:22:47.237Z", - "events": [ - { - "start": "2022-07-10T01:38:31.536Z", - "end": "2022-07-10T03:19:35.461Z", - "state": "IDLE" - }, - { - "start": "2022-07-10T03:19:35.461Z", - "end": "2022-07-10T05:00:39.386Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T05:00:39.386Z", - "end": "2022-07-10T06:41:43.311Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T06:41:43.311Z", - "end": "2022-07-10T08:22:47.236Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "512498684211232768", - "start": "2022-05-09T20:51:02.865Z", - "end": "2022-05-10T06:04:54.249Z", - "events": [ - { - "start": "2022-05-09T20:51:02.865Z", - "end": "2022-05-09T23:09:30.711Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-09T23:09:30.711Z", - "end": "2022-05-10T01:27:58.557Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-10T01:27:58.557Z", - "end": "2022-05-10T03:46:26.403Z", - "state": "IDLE" - }, - { - "start": "2022-05-10T03:46:26.403Z", - "end": "2022-05-10T06:04:54.249Z", - "state": "IDLE" - } - ] - }, - { - "user": "198010595767135394", - "game": "540120593576493057", - "start": "2022-05-25T05:11:35.107Z", - "end": "2022-05-25T14:27:06.730Z", - "events": [ - { - "start": "2022-05-25T05:11:35.107Z", - "end": "2022-05-25T08:16:45.648Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T08:16:45.648Z", - "end": "2022-05-25T11:21:56.189Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T11:21:56.189Z", - "end": "2022-05-25T14:27:06.730Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "715446191320920764", - "game": "508057374875975682", - "start": "2022-04-23T23:21:47.719Z", - "end": "2022-04-24T05:59:19.992Z", - "events": [ - { - "start": "2022-04-23T23:21:47.719Z", - "end": "2022-04-24T01:01:10.787Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T01:01:10.787Z", - "end": "2022-04-24T02:40:33.855Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T02:40:33.855Z", - "end": "2022-04-24T04:19:56.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T04:19:56.923Z", - "end": "2022-04-24T05:59:19.991Z", - "state": "IDLE" - } - ] - }, - { - "user": "318220875546522080", - "game": "606163888052109312", - "start": "2022-05-26T17:53:38.050Z", - "end": "2022-05-26T18:10:49.573Z", - "events": [ - { - "start": "2022-05-26T17:53:38.050Z", - "end": "2022-05-26T17:57:55.930Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-26T17:57:55.930Z", - "end": "2022-05-26T18:02:13.810Z", - "state": "IDLE" - }, - { - "start": "2022-05-26T18:02:13.810Z", - "end": "2022-05-26T18:06:31.690Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-26T18:06:31.690Z", - "end": "2022-05-26T18:10:49.570Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "106607193284486979", - "game": "565341641427124244", - "start": "2022-06-13T08:19:33.169Z", - "end": "2022-06-13T16:02:58.117Z", - "events": [ - { - "start": "2022-06-13T08:19:33.169Z", - "end": "2022-06-13T16:02:58.117Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "554573307161214977", - "start": "2022-05-06T21:50:04.717Z", - "end": "2022-05-07T06:07:34.220Z", - "events": [ - { - "start": "2022-05-06T21:50:04.717Z", - "end": "2022-05-07T00:35:54.551Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-07T00:35:54.551Z", - "end": "2022-05-07T03:21:44.385Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-07T03:21:44.385Z", - "end": "2022-05-07T06:07:34.219Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "535371564850479134", - "start": "2022-07-22T04:07:39.464Z", - "end": "2022-07-22T08:57:28.574Z", - "events": [ - { - "start": "2022-07-22T04:07:39.464Z", - "end": "2022-07-22T08:57:28.574Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "951131768137733554", - "game": "514228311661084682", - "start": "2022-06-19T03:15:37.734Z", - "end": "2022-06-19T09:40:11.979Z", - "events": [ - { - "start": "2022-06-19T03:15:37.734Z", - "end": "2022-06-19T09:40:11.979Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "463820732483181525", - "game": "560781100197216267", - "start": "2022-07-10T09:05:43.148Z", - "end": "2022-07-10T10:10:39.356Z", - "events": [ - { - "start": "2022-07-10T09:05:43.148Z", - "end": "2022-07-10T09:21:57.200Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T09:21:57.200Z", - "end": "2022-07-10T09:38:11.252Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T09:38:11.252Z", - "end": "2022-07-10T09:54:25.304Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T09:54:25.304Z", - "end": "2022-07-10T10:10:39.356Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "542474758835535872", - "start": "2022-07-23T03:27:58.577Z", - "end": "2022-07-23T13:31:30.916Z", - "events": [ - { - "start": "2022-07-23T03:27:58.577Z", - "end": "2022-07-23T05:58:51.661Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T05:58:51.661Z", - "end": "2022-07-23T08:29:44.745Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T08:29:44.745Z", - "end": "2022-07-23T11:00:37.829Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-23T11:00:37.829Z", - "end": "2022-07-23T13:31:30.913Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "131482253203487270", - "game": "542475118396309528", - "start": "2022-06-11T05:12:31.294Z", - "end": "2022-06-11T13:44:07.151Z", - "events": [ - { - "start": "2022-06-11T05:12:31.294Z", - "end": "2022-06-11T13:44:07.151Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "596421190780633864", - "game": "614380482620293151", - "start": "2022-06-27T16:28:50.631Z", - "end": "2022-06-28T01:39:03.014Z", - "events": [ - { - "start": "2022-06-27T16:28:50.631Z", - "end": "2022-06-27T21:03:56.822Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T21:03:56.822Z", - "end": "2022-06-28T01:39:03.013Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "494763633796983404", - "game": "540120593576493057", - "start": "2022-05-01T07:42:30.649Z", - "end": "2022-05-01T12:06:06.985Z", - "events": [ - { - "start": "2022-05-01T07:42:30.649Z", - "end": "2022-05-01T08:35:13.916Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T08:35:13.916Z", - "end": "2022-05-01T09:27:57.183Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T09:27:57.183Z", - "end": "2022-05-01T10:20:40.450Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T10:20:40.450Z", - "end": "2022-05-01T11:13:23.717Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-01T11:13:23.717Z", - "end": "2022-05-01T12:06:06.984Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "494763633796983404", - "game": "520462578061803588", - "start": "2022-04-14T10:52:46.605Z", - "end": "2022-04-14T19:19:03.140Z", - "events": [ - { - "start": "2022-04-14T10:52:46.605Z", - "end": "2022-04-14T15:05:54.872Z", - "state": "IDLE" - }, - { - "start": "2022-04-14T15:05:54.872Z", - "end": "2022-04-14T19:19:03.139Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "424856688594618054", - "game": "519644368735567873", - "start": "2022-07-23T07:43:45.084Z", - "end": "2022-07-23T16:21:00.086Z", - "events": [ - { - "start": "2022-07-23T07:43:45.084Z", - "end": "2022-07-23T10:36:10.084Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T10:36:10.084Z", - "end": "2022-07-23T13:28:35.084Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-23T13:28:35.084Z", - "end": "2022-07-23T16:21:00.084Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "106607193284486979", - "game": "521842831262875670", - "start": "2022-06-16T01:57:48.479Z", - "end": "2022-06-16T06:07:55.198Z", - "events": [ - { - "start": "2022-06-16T01:57:48.479Z", - "end": "2022-06-16T03:21:10.718Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-16T03:21:10.718Z", - "end": "2022-06-16T04:44:32.957Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T04:44:32.957Z", - "end": "2022-06-16T06:07:55.196Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "768513326430993269", - "game": "606163888052109312", - "start": "2022-05-25T01:36:22.686Z", - "end": "2022-05-25T02:06:01.888Z", - "events": [ - { - "start": "2022-05-25T01:36:22.686Z", - "end": "2022-05-25T01:43:47.486Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T01:43:47.486Z", - "end": "2022-05-25T01:51:12.286Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T01:51:12.286Z", - "end": "2022-05-25T01:58:37.086Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-25T01:58:37.086Z", - "end": "2022-05-25T02:06:01.886Z", - "state": "IDLE" - } - ] - }, - { - "user": "872035310834814925", - "game": "535384357536399404", - "start": "2022-06-10T19:13:10.237Z", - "end": "2022-06-11T01:53:05.033Z", - "events": [ - { - "start": "2022-06-10T19:13:10.237Z", - "end": "2022-06-11T01:53:05.033Z", - "state": "IDLE" - } - ] - }, - { - "user": "725502702868293700", - "game": "514228311661084682", - "start": "2022-07-02T12:09:53.142Z", - "end": "2022-07-02T21:59:47.745Z", - "events": [ - { - "start": "2022-07-02T12:09:53.142Z", - "end": "2022-07-02T17:04:50.443Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-02T17:04:50.443Z", - "end": "2022-07-02T21:59:47.744Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "958598056500699208", - "game": "597860020935327787", - "start": "2022-04-27T08:08:00.713Z", - "end": "2022-04-27T10:52:59.707Z", - "events": [ - { - "start": "2022-04-27T08:08:00.713Z", - "end": "2022-04-27T10:52:59.707Z", - "state": "IDLE" - } - ] - }, - { - "user": "297014162745407430", - "game": "575412499399180288", - "start": "2022-06-18T16:03:27.194Z", - "end": "2022-06-19T00:12:20.843Z", - "events": [ - { - "start": "2022-06-18T16:03:27.194Z", - "end": "2022-06-18T18:46:25.077Z", - "state": "IDLE" - }, - { - "start": "2022-06-18T18:46:25.077Z", - "end": "2022-06-18T21:29:22.960Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-18T21:29:22.960Z", - "end": "2022-06-19T00:12:20.843Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "467658810442648809", - "game": "523154344187789312", - "start": "2022-04-24T08:34:59.201Z", - "end": "2022-04-24T10:25:06.775Z", - "events": [ - { - "start": "2022-04-24T08:34:59.201Z", - "end": "2022-04-24T08:57:00.715Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T08:57:00.715Z", - "end": "2022-04-24T09:19:02.229Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T09:19:02.229Z", - "end": "2022-04-24T09:41:03.743Z", - "state": "IDLE" - }, - { - "start": "2022-04-24T09:41:03.743Z", - "end": "2022-04-24T10:03:05.257Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T10:03:05.257Z", - "end": "2022-04-24T10:25:06.771Z", - "state": "IDLE" - } - ] - }, - { - "user": "137536289023624121", - "game": "511619499053678668", - "start": "2022-07-27T13:46:58.126Z", - "end": "2022-07-27T17:48:33.538Z", - "events": [ - { - "start": "2022-07-27T13:46:58.126Z", - "end": "2022-07-27T15:07:29.930Z", - "state": "IDLE" - }, - { - "start": "2022-07-27T15:07:29.930Z", - "end": "2022-07-27T16:28:01.734Z", - "state": "IDLE" - }, - { - "start": "2022-07-27T16:28:01.734Z", - "end": "2022-07-27T17:48:33.538Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "542475118396309528", - "start": "2022-06-19T06:30:18.699Z", - "end": "2022-06-19T11:01:21.311Z", - "events": [ - { - "start": "2022-06-19T06:30:18.699Z", - "end": "2022-06-19T08:00:39.569Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T08:00:39.569Z", - "end": "2022-06-19T09:31:00.439Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-19T09:31:00.439Z", - "end": "2022-06-19T11:01:21.309Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "530454325214969866", - "start": "2022-05-18T11:49:00.164Z", - "end": "2022-05-18T13:39:51.259Z", - "events": [ - { - "start": "2022-05-18T11:49:00.164Z", - "end": "2022-05-18T13:39:51.259Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "457796054587169483", - "game": "518088627234930688", - "start": "2022-05-29T00:53:08.926Z", - "end": "2022-05-29T08:22:36.457Z", - "events": [ - { - "start": "2022-05-29T00:53:08.926Z", - "end": "2022-05-29T02:23:02.432Z", - "state": "IDLE" - }, - { - "start": "2022-05-29T02:23:02.432Z", - "end": "2022-05-29T03:52:55.938Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T03:52:55.938Z", - "end": "2022-05-29T05:22:49.444Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T05:22:49.444Z", - "end": "2022-05-29T06:52:42.950Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T06:52:42.950Z", - "end": "2022-05-29T08:22:36.456Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "606163888052109312", - "start": "2022-04-23T20:27:07.697Z", - "end": "2022-04-23T22:57:29.519Z", - "events": [ - { - "start": "2022-04-23T20:27:07.697Z", - "end": "2022-04-23T21:04:43.152Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T21:04:43.152Z", - "end": "2022-04-23T21:42:18.607Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T21:42:18.607Z", - "end": "2022-04-23T22:19:54.062Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-23T22:19:54.062Z", - "end": "2022-04-23T22:57:29.517Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "608700383891121851", - "game": "518088627234930688", - "start": "2022-06-09T23:28:44.742Z", - "end": "2022-06-10T07:13:02.415Z", - "events": [ - { - "start": "2022-06-09T23:28:44.742Z", - "end": "2022-06-10T07:13:02.415Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "495724335127362694", - "game": "510199020782747732", - "start": "2022-07-23T00:37:37.141Z", - "end": "2022-07-23T10:10:05.796Z", - "events": [ - { - "start": "2022-07-23T00:37:37.141Z", - "end": "2022-07-23T10:10:05.796Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "213263852824749877", - "game": "512789343157485602", - "start": "2022-05-14T11:36:22.764Z", - "end": "2022-05-14T17:18:22.494Z", - "events": [ - { - "start": "2022-05-14T11:36:22.764Z", - "end": "2022-05-14T17:18:22.494Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "931211630078779300", - "game": "540120593576493057", - "start": "2022-06-03T01:46:05.257Z", - "end": "2022-06-03T10:58:57.286Z", - "events": [ - { - "start": "2022-06-03T01:46:05.257Z", - "end": "2022-06-03T06:22:31.271Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T06:22:31.271Z", - "end": "2022-06-03T10:58:57.285Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "695941172337689379", - "game": "560781100197216267", - "start": "2022-04-18T11:06:37.323Z", - "end": "2022-04-18T20:42:31.143Z", - "events": [ - { - "start": "2022-04-18T11:06:37.323Z", - "end": "2022-04-18T14:18:35.263Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T14:18:35.263Z", - "end": "2022-04-18T17:30:33.203Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T17:30:33.203Z", - "end": "2022-04-18T20:42:31.143Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "542475118396309528", - "start": "2022-06-24T16:15:02.147Z", - "end": "2022-06-24T20:54:58.850Z", - "events": [ - { - "start": "2022-06-24T16:15:02.147Z", - "end": "2022-06-24T18:35:00.498Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-24T18:35:00.498Z", - "end": "2022-06-24T20:54:58.849Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "584069374462394368", - "start": "2022-07-27T10:57:18.041Z", - "end": "2022-07-27T15:36:12.474Z", - "events": [ - { - "start": "2022-07-27T10:57:18.041Z", - "end": "2022-07-27T15:36:12.474Z", - "state": "IDLE" - } - ] - }, - { - "user": "424856688594618054", - "game": "575412499399180288", - "start": "2022-05-29T18:33:35.646Z", - "end": "2022-05-29T19:17:25.176Z", - "events": [ - { - "start": "2022-05-29T18:33:35.646Z", - "end": "2022-05-29T18:44:33.028Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T18:44:33.028Z", - "end": "2022-05-29T18:55:30.410Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T18:55:30.410Z", - "end": "2022-05-29T19:06:27.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T19:06:27.792Z", - "end": "2022-05-29T19:17:25.174Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "535371564850479134", - "start": "2022-06-07T08:37:56.600Z", - "end": "2022-06-07T10:32:10.553Z", - "events": [ - { - "start": "2022-06-07T08:37:56.600Z", - "end": "2022-06-07T09:35:03.576Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-07T09:35:03.576Z", - "end": "2022-06-07T10:32:10.552Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "541104083732114799", - "game": "528145079819436043", - "start": "2022-07-10T21:51:42.839Z", - "end": "2022-07-11T07:36:58.697Z", - "events": [ - { - "start": "2022-07-10T21:51:42.839Z", - "end": "2022-07-11T01:06:48.125Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T01:06:48.125Z", - "end": "2022-07-11T04:21:53.411Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-11T04:21:53.411Z", - "end": "2022-07-11T07:36:58.697Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "137536289023624121", - "game": "508057374875975682", - "start": "2022-04-19T13:45:35.180Z", - "end": "2022-04-19T13:53:41.952Z", - "events": [ - { - "start": "2022-04-19T13:45:35.180Z", - "end": "2022-04-19T13:47:36.873Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-19T13:47:36.873Z", - "end": "2022-04-19T13:49:38.566Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T13:49:38.566Z", - "end": "2022-04-19T13:51:40.259Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-19T13:51:40.259Z", - "end": "2022-04-19T13:53:41.952Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786084290971413565", - "game": "542075586886107149", - "start": "2022-08-06T00:49:35.714Z", - "end": "2022-08-06T09:07:31.897Z", - "events": [ - { - "start": "2022-08-06T00:49:35.714Z", - "end": "2022-08-06T02:54:04.759Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-06T02:54:04.759Z", - "end": "2022-08-06T04:58:33.804Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-06T04:58:33.804Z", - "end": "2022-08-06T07:03:02.849Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T07:03:02.849Z", - "end": "2022-08-06T09:07:31.894Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "318220875546522080", - "game": "576482762446602270", - "start": "2022-05-28T01:50:17.403Z", - "end": "2022-05-28T11:23:32.888Z", - "events": [ - { - "start": "2022-05-28T01:50:17.403Z", - "end": "2022-05-28T05:01:22.564Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T05:01:22.564Z", - "end": "2022-05-28T08:12:27.725Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T08:12:27.725Z", - "end": "2022-05-28T11:23:32.886Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "137536289023624121", - "game": "554573307161214977", - "start": "2022-06-24T04:37:44.538Z", - "end": "2022-06-24T07:54:00.703Z", - "events": [ - { - "start": "2022-06-24T04:37:44.538Z", - "end": "2022-06-24T07:54:00.703Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302347517889336519", - "game": "521842831262875670", - "start": "2022-08-06T09:54:40.572Z", - "end": "2022-08-06T12:24:23.408Z", - "events": [ - { - "start": "2022-08-06T09:54:40.572Z", - "end": "2022-08-06T10:32:06.281Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T10:32:06.281Z", - "end": "2022-08-06T11:09:31.990Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T11:09:31.990Z", - "end": "2022-08-06T11:46:57.699Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-06T11:46:57.699Z", - "end": "2022-08-06T12:24:23.408Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "518088627234930688", - "start": "2022-05-24T00:05:04.393Z", - "end": "2022-05-24T00:58:21.272Z", - "events": [ - { - "start": "2022-05-24T00:05:04.393Z", - "end": "2022-05-24T00:58:21.272Z", - "state": "IDLE" - } - ] - }, - { - "user": "625617695768437507", - "game": "614448244260339712", - "start": "2022-08-04T01:42:12.603Z", - "end": "2022-08-04T03:24:50.843Z", - "events": [ - { - "start": "2022-08-04T01:42:12.603Z", - "end": "2022-08-04T02:16:25.349Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-04T02:16:25.349Z", - "end": "2022-08-04T02:50:38.095Z", - "state": "IDLE" - }, - { - "start": "2022-08-04T02:50:38.095Z", - "end": "2022-08-04T03:24:50.841Z", - "state": "IDLE" - } - ] - }, - { - "user": "625617695768437507", - "game": "520462578061803588", - "start": "2022-07-13T22:18:19.587Z", - "end": "2022-07-14T06:04:56.980Z", - "events": [ - { - "start": "2022-07-13T22:18:19.587Z", - "end": "2022-07-14T02:11:38.283Z", - "state": "IDLE" - }, - { - "start": "2022-07-14T02:11:38.283Z", - "end": "2022-07-14T06:04:56.979Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "542075586886107149", - "start": "2022-07-19T03:43:36.127Z", - "end": "2022-07-19T08:43:39.796Z", - "events": [ - { - "start": "2022-07-19T03:43:36.127Z", - "end": "2022-07-19T05:23:37.350Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T05:23:37.350Z", - "end": "2022-07-19T07:03:38.573Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-19T07:03:38.573Z", - "end": "2022-07-19T08:43:39.796Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "512699108809637890", - "start": "2022-06-01T17:15:50.876Z", - "end": "2022-06-02T00:08:34.025Z", - "events": [ - { - "start": "2022-06-01T17:15:50.876Z", - "end": "2022-06-01T18:38:23.505Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T18:38:23.505Z", - "end": "2022-06-01T20:00:56.134Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-01T20:00:56.134Z", - "end": "2022-06-01T21:23:28.763Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-01T21:23:28.763Z", - "end": "2022-06-01T22:46:01.392Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-01T22:46:01.392Z", - "end": "2022-06-02T00:08:34.021Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "346608907417001845", - "game": "606163888052109312", - "start": "2022-07-22T20:50:50.623Z", - "end": "2022-07-23T04:33:38.891Z", - "events": [ - { - "start": "2022-07-22T20:50:50.623Z", - "end": "2022-07-23T00:42:14.757Z", - "state": "IDLE" - }, - { - "start": "2022-07-23T00:42:14.757Z", - "end": "2022-07-23T04:33:38.891Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "788818750251007268", - "game": "512789343157485602", - "start": "2022-07-28T11:17:34.462Z", - "end": "2022-07-28T15:35:48.504Z", - "events": [ - { - "start": "2022-07-28T11:17:34.462Z", - "end": "2022-07-28T12:43:39.142Z", - "state": "IDLE" - }, - { - "start": "2022-07-28T12:43:39.142Z", - "end": "2022-07-28T14:09:43.822Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T14:09:43.822Z", - "end": "2022-07-28T15:35:48.502Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "512501896896970762", - "start": "2022-08-05T21:49:13.665Z", - "end": "2022-08-05T22:59:16.789Z", - "events": [ - { - "start": "2022-08-05T21:49:13.665Z", - "end": "2022-08-05T22:12:34.706Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T22:12:34.706Z", - "end": "2022-08-05T22:35:55.747Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T22:35:55.747Z", - "end": "2022-08-05T22:59:16.788Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786084290971413565", - "game": "512789120234422301", - "start": "2022-04-25T21:09:41.402Z", - "end": "2022-04-26T03:36:26.336Z", - "events": [ - { - "start": "2022-04-25T21:09:41.402Z", - "end": "2022-04-25T22:46:22.635Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T22:46:22.635Z", - "end": "2022-04-26T00:23:03.868Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-26T00:23:03.868Z", - "end": "2022-04-26T01:59:45.101Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T01:59:45.101Z", - "end": "2022-04-26T03:36:26.334Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "747381962738157784", - "game": "565341641427124244", - "start": "2022-05-27T04:30:13.948Z", - "end": "2022-05-27T10:59:05.310Z", - "events": [ - { - "start": "2022-05-27T04:30:13.948Z", - "end": "2022-05-27T10:59:05.310Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "614448244260339712", - "start": "2022-07-30T12:07:49.958Z", - "end": "2022-07-30T19:53:18.450Z", - "events": [ - { - "start": "2022-07-30T12:07:49.958Z", - "end": "2022-07-30T14:04:12.081Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-30T14:04:12.081Z", - "end": "2022-07-30T16:00:34.204Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-30T16:00:34.204Z", - "end": "2022-07-30T17:56:56.327Z", - "state": "IDLE" - }, - { - "start": "2022-07-30T17:56:56.327Z", - "end": "2022-07-30T19:53:18.450Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "137536289023624121", - "game": "606163888052109312", - "start": "2022-05-31T05:53:32.521Z", - "end": "2022-05-31T06:44:03.966Z", - "events": [ - { - "start": "2022-05-31T05:53:32.521Z", - "end": "2022-05-31T06:03:38.810Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T06:03:38.810Z", - "end": "2022-05-31T06:13:45.099Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T06:13:45.099Z", - "end": "2022-05-31T06:23:51.388Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T06:23:51.388Z", - "end": "2022-05-31T06:33:57.677Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-31T06:33:57.677Z", - "end": "2022-05-31T06:44:03.966Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "572456126872944651", - "start": "2022-04-23T21:55:08.888Z", - "end": "2022-04-24T01:17:14.876Z", - "events": [ - { - "start": "2022-04-23T21:55:08.888Z", - "end": "2022-04-24T01:17:14.876Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "406850294055619241", - "game": "540120593576493057", - "start": "2022-07-31T05:40:41.711Z", - "end": "2022-07-31T14:22:29.746Z", - "events": [ - { - "start": "2022-07-31T05:40:41.711Z", - "end": "2022-07-31T07:25:03.318Z", - "state": "IDLE" - }, - { - "start": "2022-07-31T07:25:03.318Z", - "end": "2022-07-31T09:09:24.925Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T09:09:24.925Z", - "end": "2022-07-31T10:53:46.532Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T10:53:46.532Z", - "end": "2022-07-31T12:38:08.139Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T12:38:08.139Z", - "end": "2022-07-31T14:22:29.746Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "866600263421429886", - "game": "700136079562375258", - "start": "2022-05-29T12:42:14.981Z", - "end": "2022-05-29T18:14:25.623Z", - "events": [ - { - "start": "2022-05-29T12:42:14.981Z", - "end": "2022-05-29T14:05:17.641Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T14:05:17.641Z", - "end": "2022-05-29T15:28:20.301Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T15:28:20.301Z", - "end": "2022-05-29T16:51:22.961Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T16:51:22.961Z", - "end": "2022-05-29T18:14:25.621Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "636935635446628860", - "game": "512789427462995988", - "start": "2022-07-04T01:15:28.450Z", - "end": "2022-07-04T09:59:55.681Z", - "events": [ - { - "start": "2022-07-04T01:15:28.450Z", - "end": "2022-07-04T05:37:42.065Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T05:37:42.065Z", - "end": "2022-07-04T09:59:55.680Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "938976307338486810", - "game": "535869836748783616", - "start": "2022-07-01T13:24:05.510Z", - "end": "2022-07-01T21:03:33.608Z", - "events": [ - { - "start": "2022-07-01T13:24:05.510Z", - "end": "2022-07-01T14:55:59.129Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T14:55:59.129Z", - "end": "2022-07-01T16:27:52.748Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-01T16:27:52.748Z", - "end": "2022-07-01T17:59:46.367Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T17:59:46.367Z", - "end": "2022-07-01T19:31:39.986Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T19:31:39.986Z", - "end": "2022-07-01T21:03:33.605Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "161887854890745672", - "game": "584069374462394368", - "start": "2022-07-01T02:23:02.433Z", - "end": "2022-07-01T06:34:00.328Z", - "events": [ - { - "start": "2022-07-01T02:23:02.433Z", - "end": "2022-07-01T03:13:14.012Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T03:13:14.012Z", - "end": "2022-07-01T04:03:25.591Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T04:03:25.591Z", - "end": "2022-07-01T04:53:37.170Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T04:53:37.170Z", - "end": "2022-07-01T05:43:48.749Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T05:43:48.749Z", - "end": "2022-07-01T06:34:00.328Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "510690749854514547", - "game": "511619499053678668", - "start": "2022-07-31T21:08:36.930Z", - "end": "2022-08-01T04:17:27.928Z", - "events": [ - { - "start": "2022-07-31T21:08:36.930Z", - "end": "2022-08-01T04:17:27.928Z", - "state": "IDLE" - } - ] - }, - { - "user": "467658810442648809", - "game": "553697181249437716", - "start": "2022-06-30T22:28:23.510Z", - "end": "2022-07-01T00:58:12.469Z", - "events": [ - { - "start": "2022-06-30T22:28:23.510Z", - "end": "2022-06-30T22:58:21.301Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-30T22:58:21.301Z", - "end": "2022-06-30T23:28:19.092Z", - "state": "IDLE" - }, - { - "start": "2022-06-30T23:28:19.092Z", - "end": "2022-06-30T23:58:16.883Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-30T23:58:16.883Z", - "end": "2022-07-01T00:28:14.674Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-01T00:28:14.674Z", - "end": "2022-07-01T00:58:12.465Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "605723970188938456", - "game": "584069374462394368", - "start": "2022-08-05T16:04:09.960Z", - "end": "2022-08-05T22:44:57.529Z", - "events": [ - { - "start": "2022-08-05T16:04:09.960Z", - "end": "2022-08-05T22:44:57.529Z", - "state": "IDLE" - } - ] - }, - { - "user": "538658792298239054", - "game": "588739017718366208", - "start": "2022-07-06T18:21:31.818Z", - "end": "2022-07-07T01:27:58.305Z", - "events": [ - { - "start": "2022-07-06T18:21:31.818Z", - "end": "2022-07-06T19:46:49.115Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T19:46:49.115Z", - "end": "2022-07-06T21:12:06.412Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-06T21:12:06.412Z", - "end": "2022-07-06T22:37:23.709Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-06T22:37:23.709Z", - "end": "2022-07-07T00:02:41.006Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T00:02:41.006Z", - "end": "2022-07-07T01:27:58.303Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "605723970188938456", - "game": "356875221078245376", - "start": "2022-07-22T05:00:20.885Z", - "end": "2022-07-22T08:29:27.798Z", - "events": [ - { - "start": "2022-07-22T05:00:20.885Z", - "end": "2022-07-22T06:44:54.341Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T06:44:54.341Z", - "end": "2022-07-22T08:29:27.797Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "554921822626381879", - "start": "2022-07-11T12:10:39.818Z", - "end": "2022-07-11T13:34:29.516Z", - "events": [ - { - "start": "2022-07-11T12:10:39.818Z", - "end": "2022-07-11T13:34:29.516Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "153631479524744694", - "game": "542474758835535872", - "start": "2022-07-22T08:44:31.785Z", - "end": "2022-07-22T16:00:51.431Z", - "events": [ - { - "start": "2022-07-22T08:44:31.785Z", - "end": "2022-07-22T10:11:47.714Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T10:11:47.714Z", - "end": "2022-07-22T11:39:03.643Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T11:39:03.643Z", - "end": "2022-07-22T13:06:19.572Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T13:06:19.572Z", - "end": "2022-07-22T14:33:35.501Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T14:33:35.501Z", - "end": "2022-07-22T16:00:51.430Z", - "state": "IDLE" - } - ] - }, - { - "user": "126384926926158511", - "game": "550277544025522176", - "start": "2022-08-05T07:59:42.712Z", - "end": "2022-08-05T17:06:21.759Z", - "events": [ - { - "start": "2022-08-05T07:59:42.712Z", - "end": "2022-08-05T17:06:21.759Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "467658810442648809", - "game": "560781100197216267", - "start": "2022-07-01T18:00:48.472Z", - "end": "2022-07-02T01:51:23.008Z", - "events": [ - { - "start": "2022-07-01T18:00:48.472Z", - "end": "2022-07-02T01:51:23.008Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "592976500802846750", - "start": "2022-05-27T21:24:32.133Z", - "end": "2022-05-28T01:18:06.404Z", - "events": [ - { - "start": "2022-05-27T21:24:32.133Z", - "end": "2022-05-27T23:21:19.268Z", - "state": "IDLE" - }, - { - "start": "2022-05-27T23:21:19.268Z", - "end": "2022-05-28T01:18:06.403Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "394970121077311909", - "game": "572456126872944651", - "start": "2022-05-15T16:57:32.210Z", - "end": "2022-05-16T01:02:29.325Z", - "events": [ - { - "start": "2022-05-15T16:57:32.210Z", - "end": "2022-05-15T18:58:46.488Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-15T18:58:46.488Z", - "end": "2022-05-15T21:00:00.766Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-15T21:00:00.766Z", - "end": "2022-05-15T23:01:15.044Z", - "state": "IDLE" - }, - { - "start": "2022-05-15T23:01:15.044Z", - "end": "2022-05-16T01:02:29.322Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "565021137482980984", - "game": "597588168178663434", - "start": "2022-06-01T13:02:23.174Z", - "end": "2022-06-01T19:19:39.308Z", - "events": [ - { - "start": "2022-06-01T13:02:23.174Z", - "end": "2022-06-01T19:19:39.308Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "542075586886107149", - "start": "2022-07-29T13:02:43.772Z", - "end": "2022-07-29T17:16:22.286Z", - "events": [ - { - "start": "2022-07-29T13:02:43.772Z", - "end": "2022-07-29T14:27:16.610Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T14:27:16.610Z", - "end": "2022-07-29T15:51:49.448Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T15:51:49.448Z", - "end": "2022-07-29T17:16:22.286Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "500919588166575890", - "game": "606163888052109312", - "start": "2022-08-05T10:55:08.937Z", - "end": "2022-08-05T14:28:49.337Z", - "events": [ - { - "start": "2022-08-05T10:55:08.937Z", - "end": "2022-08-05T12:41:59.137Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T12:41:59.137Z", - "end": "2022-08-05T14:28:49.337Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "553697181249437716", - "start": "2022-05-24T13:50:09.251Z", - "end": "2022-05-24T22:40:49.257Z", - "events": [ - { - "start": "2022-05-24T13:50:09.251Z", - "end": "2022-05-24T15:36:17.252Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T15:36:17.252Z", - "end": "2022-05-24T17:22:25.253Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T17:22:25.253Z", - "end": "2022-05-24T19:08:33.254Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T19:08:33.254Z", - "end": "2022-05-24T20:54:41.255Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T20:54:41.255Z", - "end": "2022-05-24T22:40:49.256Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "931211630078779300", - "game": "569008830701240340", - "start": "2022-05-25T12:53:15.056Z", - "end": "2022-05-25T18:16:23.511Z", - "events": [ - { - "start": "2022-05-25T12:53:15.056Z", - "end": "2022-05-25T13:57:52.747Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T13:57:52.747Z", - "end": "2022-05-25T15:02:30.438Z", - "state": "IDLE" - }, - { - "start": "2022-05-25T15:02:30.438Z", - "end": "2022-05-25T16:07:08.129Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-25T16:07:08.129Z", - "end": "2022-05-25T17:11:45.820Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T17:11:45.820Z", - "end": "2022-05-25T18:16:23.511Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "559757870366930730", - "game": "569008830701240340", - "start": "2022-05-08T07:26:17.977Z", - "end": "2022-05-08T08:00:48.176Z", - "events": [ - { - "start": "2022-05-08T07:26:17.977Z", - "end": "2022-05-08T07:34:55.526Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T07:34:55.526Z", - "end": "2022-05-08T07:43:33.075Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T07:43:33.075Z", - "end": "2022-05-08T07:52:10.624Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T07:52:10.624Z", - "end": "2022-05-08T08:00:48.173Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "605723970188938456", - "game": "540120593576493057", - "start": "2022-05-22T02:07:20.803Z", - "end": "2022-05-22T07:20:23.119Z", - "events": [ - { - "start": "2022-05-22T02:07:20.803Z", - "end": "2022-05-22T07:20:23.119Z", - "state": "IDLE" - } - ] - }, - { - "user": "791267126190249625", - "game": "572456126872944651", - "start": "2022-04-20T13:31:32.611Z", - "end": "2022-04-20T19:51:46.657Z", - "events": [ - { - "start": "2022-04-20T13:31:32.611Z", - "end": "2022-04-20T15:38:17.293Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-20T15:38:17.293Z", - "end": "2022-04-20T17:45:01.975Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T17:45:01.975Z", - "end": "2022-04-20T19:51:46.657Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "553697181249437716", - "start": "2022-07-23T18:47:59.400Z", - "end": "2022-07-23T20:25:38.869Z", - "events": [ - { - "start": "2022-07-23T18:47:59.400Z", - "end": "2022-07-23T20:25:38.869Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "269014914705953013", - "game": "588739017718366208", - "start": "2022-08-03T23:02:09.338Z", - "end": "2022-08-03T23:24:38.907Z", - "events": [ - { - "start": "2022-08-03T23:02:09.338Z", - "end": "2022-08-03T23:13:24.122Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-03T23:13:24.122Z", - "end": "2022-08-03T23:24:38.906Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "694111074254984301", - "game": "560781100197216267", - "start": "2022-07-07T06:37:10.343Z", - "end": "2022-07-07T14:45:32.800Z", - "events": [ - { - "start": "2022-07-07T06:37:10.343Z", - "end": "2022-07-07T10:41:21.571Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-07T10:41:21.571Z", - "end": "2022-07-07T14:45:32.799Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "336473229248470346", - "game": "554573307161214977", - "start": "2022-05-02T10:20:14.851Z", - "end": "2022-05-02T20:09:05.878Z", - "events": [ - { - "start": "2022-05-02T10:20:14.851Z", - "end": "2022-05-02T12:47:27.607Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-02T12:47:27.607Z", - "end": "2022-05-02T15:14:40.363Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-02T15:14:40.363Z", - "end": "2022-05-02T17:41:53.119Z", - "state": "IDLE" - }, - { - "start": "2022-05-02T17:41:53.119Z", - "end": "2022-05-02T20:09:05.875Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "131482253203487270", - "game": "512789343157485602", - "start": "2022-05-12T16:53:10.880Z", - "end": "2022-05-12T18:24:57.735Z", - "events": [ - { - "start": "2022-05-12T16:53:10.880Z", - "end": "2022-05-12T17:16:07.593Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T17:16:07.593Z", - "end": "2022-05-12T17:39:04.306Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T17:39:04.306Z", - "end": "2022-05-12T18:02:01.019Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-12T18:02:01.019Z", - "end": "2022-05-12T18:24:57.732Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "346608907417001845", - "game": "558547388583772201", - "start": "2022-07-19T06:31:57.346Z", - "end": "2022-07-19T09:13:49.416Z", - "events": [ - { - "start": "2022-07-19T06:31:57.346Z", - "end": "2022-07-19T07:25:54.702Z", - "state": "IDLE" - }, - { - "start": "2022-07-19T07:25:54.702Z", - "end": "2022-07-19T08:19:52.058Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-19T08:19:52.058Z", - "end": "2022-07-19T09:13:49.414Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "600708263053781983", - "game": "512789343157485602", - "start": "2022-06-03T19:16:04.576Z", - "end": "2022-06-04T01:48:11.200Z", - "events": [ - { - "start": "2022-06-03T19:16:04.576Z", - "end": "2022-06-03T20:54:06.232Z", - "state": "IDLE" - }, - { - "start": "2022-06-03T20:54:06.232Z", - "end": "2022-06-03T22:32:07.888Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-03T22:32:07.888Z", - "end": "2022-06-04T00:10:09.544Z", - "state": "IDLE" - }, - { - "start": "2022-06-04T00:10:09.544Z", - "end": "2022-06-04T01:48:11.200Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "302679892350666678", - "game": "554573307161214977", - "start": "2022-07-01T09:06:50.695Z", - "end": "2022-07-01T10:39:24.569Z", - "events": [ - { - "start": "2022-07-01T09:06:50.695Z", - "end": "2022-07-01T09:29:59.163Z", - "state": "IDLE" - }, - { - "start": "2022-07-01T09:29:59.163Z", - "end": "2022-07-01T09:53:07.631Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T09:53:07.631Z", - "end": "2022-07-01T10:16:16.099Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-01T10:16:16.099Z", - "end": "2022-07-01T10:39:24.567Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "596421190780633864", - "game": "569253958967885828", - "start": "2022-04-27T12:50:51.700Z", - "end": "2022-04-27T22:54:38.818Z", - "events": [ - { - "start": "2022-04-27T12:50:51.700Z", - "end": "2022-04-27T14:51:37.123Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T14:51:37.123Z", - "end": "2022-04-27T16:52:22.546Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T16:52:22.546Z", - "end": "2022-04-27T18:53:07.969Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T18:53:07.969Z", - "end": "2022-04-27T20:53:53.392Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T20:53:53.392Z", - "end": "2022-04-27T22:54:38.815Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "463820732483181525", - "game": "569253958967885828", - "start": "2022-07-29T11:47:22.244Z", - "end": "2022-07-29T12:05:42.780Z", - "events": [ - { - "start": "2022-07-29T11:47:22.244Z", - "end": "2022-07-29T11:56:32.512Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T11:56:32.512Z", - "end": "2022-07-29T12:05:42.780Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "424856688594618054", - "game": "512699108809637890", - "start": "2022-05-28T04:31:37.330Z", - "end": "2022-05-28T08:35:05.703Z", - "events": [ - { - "start": "2022-05-28T04:31:37.330Z", - "end": "2022-05-28T05:20:19.004Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T05:20:19.004Z", - "end": "2022-05-28T06:09:00.678Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-28T06:09:00.678Z", - "end": "2022-05-28T06:57:42.352Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T06:57:42.352Z", - "end": "2022-05-28T07:46:24.026Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-28T07:46:24.026Z", - "end": "2022-05-28T08:35:05.700Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "269014914705953013", - "game": "597588168178663434", - "start": "2022-06-23T00:01:38.350Z", - "end": "2022-06-23T00:22:39.341Z", - "events": [ - { - "start": "2022-06-23T00:01:38.350Z", - "end": "2022-06-23T00:06:53.597Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T00:06:53.597Z", - "end": "2022-06-23T00:12:08.844Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T00:12:08.844Z", - "end": "2022-06-23T00:17:24.091Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T00:17:24.091Z", - "end": "2022-06-23T00:22:39.338Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "732542352358923773", - "game": "558547388583772201", - "start": "2022-04-21T19:14:39.216Z", - "end": "2022-04-22T02:39:04.273Z", - "events": [ - { - "start": "2022-04-21T19:14:39.216Z", - "end": "2022-04-21T22:56:51.744Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-21T22:56:51.744Z", - "end": "2022-04-22T02:39:04.272Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "101572134856427564", - "game": "597588168178663434", - "start": "2022-06-04T16:28:00.130Z", - "end": "2022-06-04T17:09:45.235Z", - "events": [ - { - "start": "2022-06-04T16:28:00.130Z", - "end": "2022-06-04T17:09:45.235Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "494763633796983404", - "game": "597588168178663434", - "start": "2022-06-16T06:45:01.953Z", - "end": "2022-06-16T12:22:36.492Z", - "events": [ - { - "start": "2022-06-16T06:45:01.953Z", - "end": "2022-06-16T08:37:33.466Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T08:37:33.466Z", - "end": "2022-06-16T10:30:04.979Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-16T10:30:04.979Z", - "end": "2022-06-16T12:22:36.492Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "514228311661084682", - "start": "2022-06-12T09:55:32.283Z", - "end": "2022-06-12T10:17:47.066Z", - "events": [ - { - "start": "2022-06-12T09:55:32.283Z", - "end": "2022-06-12T10:17:47.066Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "182925797752958092", - "game": "512699108809637890", - "start": "2022-07-31T16:11:55.767Z", - "end": "2022-07-31T22:58:21.770Z", - "events": [ - { - "start": "2022-07-31T16:11:55.767Z", - "end": "2022-07-31T22:58:21.770Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "597588168178663434", - "start": "2022-04-16T06:12:38.840Z", - "end": "2022-04-16T14:05:24.493Z", - "events": [ - { - "start": "2022-04-16T06:12:38.840Z", - "end": "2022-04-16T07:47:11.970Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T07:47:11.970Z", - "end": "2022-04-16T09:21:45.100Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T09:21:45.100Z", - "end": "2022-04-16T10:56:18.230Z", - "state": "IDLE" - }, - { - "start": "2022-04-16T10:56:18.230Z", - "end": "2022-04-16T12:30:51.360Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-16T12:30:51.360Z", - "end": "2022-04-16T14:05:24.490Z", - "state": "IDLE" - } - ] - }, - { - "user": "922664752332558395", - "game": "514228311661084682", - "start": "2022-05-22T14:01:46.446Z", - "end": "2022-05-22T17:35:15.492Z", - "events": [ - { - "start": "2022-05-22T14:01:46.446Z", - "end": "2022-05-22T17:35:15.492Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "625617695768437507", - "game": "584069374462394368", - "start": "2022-05-22T15:20:27.216Z", - "end": "2022-05-22T18:03:00.559Z", - "events": [ - { - "start": "2022-05-22T15:20:27.216Z", - "end": "2022-05-22T16:01:05.551Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-22T16:01:05.551Z", - "end": "2022-05-22T16:41:43.886Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-22T16:41:43.886Z", - "end": "2022-05-22T17:22:22.221Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T17:22:22.221Z", - "end": "2022-05-22T18:03:00.556Z", - "state": "IDLE" - } - ] - }, - { - "user": "911848869344266044", - "game": "565341641427124244", - "start": "2022-06-23T18:17:27.587Z", - "end": "2022-06-23T19:56:07.800Z", - "events": [ - { - "start": "2022-06-23T18:17:27.587Z", - "end": "2022-06-23T18:50:20.991Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T18:50:20.991Z", - "end": "2022-06-23T19:23:14.395Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T19:23:14.395Z", - "end": "2022-06-23T19:56:07.799Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "329429619186234053", - "game": "569008830701240340", - "start": "2022-06-26T00:07:34.575Z", - "end": "2022-06-26T03:40:16.762Z", - "events": [ - { - "start": "2022-06-26T00:07:34.575Z", - "end": "2022-06-26T03:40:16.762Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "153631479524744694", - "game": "572456126872944651", - "start": "2022-05-17T14:18:25.925Z", - "end": "2022-05-17T14:50:41.251Z", - "events": [ - { - "start": "2022-05-17T14:18:25.925Z", - "end": "2022-05-17T14:50:41.251Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "841397740041930984", - "game": "569008830701240340", - "start": "2022-08-02T09:46:35.228Z", - "end": "2022-08-02T13:43:02.556Z", - "events": [ - { - "start": "2022-08-02T09:46:35.228Z", - "end": "2022-08-02T10:33:52.693Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T10:33:52.693Z", - "end": "2022-08-02T11:21:10.158Z", - "state": "OFFLINE" - }, - { - "start": "2022-08-02T11:21:10.158Z", - "end": "2022-08-02T12:08:27.623Z", - "state": "ACTIVE" - }, - { - "start": "2022-08-02T12:08:27.623Z", - "end": "2022-08-02T12:55:45.088Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-08-02T12:55:45.088Z", - "end": "2022-08-02T13:43:02.553Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "786028561315351452", - "game": "569253958967885828", - "start": "2022-04-24T15:40:05.327Z", - "end": "2022-04-25T01:29:32.908Z", - "events": [ - { - "start": "2022-04-24T15:40:05.327Z", - "end": "2022-04-24T18:56:34.520Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T18:56:34.520Z", - "end": "2022-04-24T22:13:03.713Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-24T22:13:03.713Z", - "end": "2022-04-25T01:29:32.906Z", - "state": "IDLE" - } - ] - }, - { - "user": "951131768137733554", - "game": "518088627234930688", - "start": "2022-06-04T19:06:44.493Z", - "end": "2022-06-04T23:15:26.869Z", - "events": [ - { - "start": "2022-06-04T19:06:44.493Z", - "end": "2022-06-04T23:15:26.869Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "452396069922968436", - "game": "521842831262875670", - "start": "2022-05-17T15:36:20.645Z", - "end": "2022-05-17T17:46:18.668Z", - "events": [ - { - "start": "2022-05-17T15:36:20.645Z", - "end": "2022-05-17T16:41:19.656Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-17T16:41:19.656Z", - "end": "2022-05-17T17:46:18.667Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "549054179973094329", - "game": "520462578061803588", - "start": "2022-07-09T10:30:36.517Z", - "end": "2022-07-09T15:20:26.006Z", - "events": [ - { - "start": "2022-07-09T10:30:36.517Z", - "end": "2022-07-09T12:07:13.013Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T12:07:13.013Z", - "end": "2022-07-09T13:43:49.509Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T13:43:49.509Z", - "end": "2022-07-09T15:20:26.005Z", - "state": "IDLE" - } - ] - }, - { - "user": "106607193284486979", - "game": "540120593576493057", - "start": "2022-07-17T10:28:53.370Z", - "end": "2022-07-17T15:42:42.510Z", - "events": [ - { - "start": "2022-07-17T10:28:53.370Z", - "end": "2022-07-17T11:31:39.198Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-17T11:31:39.198Z", - "end": "2022-07-17T12:34:25.026Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T12:34:25.026Z", - "end": "2022-07-17T13:37:10.854Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-17T13:37:10.854Z", - "end": "2022-07-17T14:39:56.682Z", - "state": "IDLE" - }, - { - "start": "2022-07-17T14:39:56.682Z", - "end": "2022-07-17T15:42:42.510Z", - "state": "IDLE" - } - ] - }, - { - "user": "731522398939920723", - "game": "508057374875975682", - "start": "2022-07-12T09:44:27.599Z", - "end": "2022-07-12T11:02:34.943Z", - "events": [ - { - "start": "2022-07-12T09:44:27.599Z", - "end": "2022-07-12T10:23:31.271Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T10:23:31.271Z", - "end": "2022-07-12T11:02:34.943Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "821608522568592914", - "game": "519644267212177418", - "start": "2022-05-14T01:01:14.567Z", - "end": "2022-05-14T01:30:15.462Z", - "events": [ - { - "start": "2022-05-14T01:01:14.567Z", - "end": "2022-05-14T01:08:29.790Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T01:08:29.790Z", - "end": "2022-05-14T01:15:45.013Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-14T01:15:45.013Z", - "end": "2022-05-14T01:23:00.236Z", - "state": "IDLE" - }, - { - "start": "2022-05-14T01:23:00.236Z", - "end": "2022-05-14T01:30:15.459Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "549512435585908756", - "start": "2022-05-30T14:00:32.932Z", - "end": "2022-05-30T15:20:39.979Z", - "events": [ - { - "start": "2022-05-30T14:00:32.932Z", - "end": "2022-05-30T14:27:15.281Z", - "state": "IDLE" - }, - { - "start": "2022-05-30T14:27:15.281Z", - "end": "2022-05-30T14:53:57.630Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T14:53:57.630Z", - "end": "2022-05-30T15:20:39.979Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "126384926926158511", - "game": "512501896896970762", - "start": "2022-05-29T03:49:52.301Z", - "end": "2022-05-29T13:20:30.567Z", - "events": [ - { - "start": "2022-05-29T03:49:52.301Z", - "end": "2022-05-29T06:12:31.867Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T06:12:31.867Z", - "end": "2022-05-29T08:35:11.433Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T08:35:11.433Z", - "end": "2022-05-29T10:57:50.999Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-29T10:57:50.999Z", - "end": "2022-05-29T13:20:30.565Z", - "state": "IDLE" - } - ] - }, - { - "user": "452396069922968436", - "game": "519644267212177418", - "start": "2022-07-22T06:09:07.017Z", - "end": "2022-07-22T14:13:41.668Z", - "events": [ - { - "start": "2022-07-22T06:09:07.017Z", - "end": "2022-07-22T07:46:01.947Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T07:46:01.947Z", - "end": "2022-07-22T09:22:56.877Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T09:22:56.877Z", - "end": "2022-07-22T10:59:51.807Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T10:59:51.807Z", - "end": "2022-07-22T12:36:46.737Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-22T12:36:46.737Z", - "end": "2022-07-22T14:13:41.667Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "440349172934867131", - "game": "542475118396309528", - "start": "2022-07-11T18:48:23.823Z", - "end": "2022-07-12T04:08:10.468Z", - "events": [ - { - "start": "2022-07-11T18:48:23.823Z", - "end": "2022-07-11T20:40:21.152Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T20:40:21.152Z", - "end": "2022-07-11T22:32:18.481Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-11T22:32:18.481Z", - "end": "2022-07-12T00:24:15.810Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T00:24:15.810Z", - "end": "2022-07-12T02:16:13.139Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T02:16:13.139Z", - "end": "2022-07-12T04:08:10.468Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "147480245458136084", - "game": "521842831262875670", - "start": "2022-07-10T17:26:23.530Z", - "end": "2022-07-10T22:11:41.118Z", - "events": [ - { - "start": "2022-07-10T17:26:23.530Z", - "end": "2022-07-10T22:11:41.118Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "731522398939920723", - "game": "606163888052109312", - "start": "2022-05-18T16:10:08.781Z", - "end": "2022-05-18T18:08:33.347Z", - "events": [ - { - "start": "2022-05-18T16:10:08.781Z", - "end": "2022-05-18T17:09:21.064Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-18T17:09:21.064Z", - "end": "2022-05-18T18:08:33.347Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "658550407298256890", - "game": "553697181249437716", - "start": "2022-06-13T11:00:42.239Z", - "end": "2022-06-13T14:21:46.129Z", - "events": [ - { - "start": "2022-06-13T11:00:42.239Z", - "end": "2022-06-13T14:21:46.129Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "517335360477493827", - "game": "356875221078245376", - "start": "2022-06-16T10:39:25.521Z", - "end": "2022-06-16T13:23:30.642Z", - "events": [ - { - "start": "2022-06-16T10:39:25.521Z", - "end": "2022-06-16T12:01:28.081Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T12:01:28.081Z", - "end": "2022-06-16T13:23:30.641Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "584069374462394368", - "start": "2022-07-09T10:21:40.866Z", - "end": "2022-07-09T18:33:58.170Z", - "events": [ - { - "start": "2022-07-09T10:21:40.866Z", - "end": "2022-07-09T18:33:58.170Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "510690749854514547", - "game": "553697181249437716", - "start": "2022-06-20T21:14:39.765Z", - "end": "2022-06-21T04:26:01.131Z", - "events": [ - { - "start": "2022-06-20T21:14:39.765Z", - "end": "2022-06-20T23:02:30.106Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-20T23:02:30.106Z", - "end": "2022-06-21T00:50:20.447Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T00:50:20.447Z", - "end": "2022-06-21T02:38:10.788Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-21T02:38:10.788Z", - "end": "2022-06-21T04:26:01.129Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "378424071510192465", - "game": "510199020782747732", - "start": "2022-06-28T13:55:28.821Z", - "end": "2022-06-28T23:48:32.772Z", - "events": [ - { - "start": "2022-06-28T13:55:28.821Z", - "end": "2022-06-28T16:23:44.808Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-28T16:23:44.808Z", - "end": "2022-06-28T18:52:00.795Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T18:52:00.795Z", - "end": "2022-06-28T21:20:16.782Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-28T21:20:16.782Z", - "end": "2022-06-28T23:48:32.769Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "153631479524744694", - "game": "542474758835535872", - "start": "2022-04-25T19:10:14.978Z", - "end": "2022-04-26T05:06:34.947Z", - "events": [ - { - "start": "2022-04-25T19:10:14.978Z", - "end": "2022-04-25T21:39:19.970Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T21:39:19.970Z", - "end": "2022-04-26T00:08:24.962Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T00:08:24.962Z", - "end": "2022-04-26T02:37:29.954Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T02:37:29.954Z", - "end": "2022-04-26T05:06:34.946Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "537786518874514211", - "game": "535869836748783616", - "start": "2022-05-11T09:23:34.942Z", - "end": "2022-05-11T10:32:13.724Z", - "events": [ - { - "start": "2022-05-11T09:23:34.942Z", - "end": "2022-05-11T09:46:27.869Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T09:46:27.869Z", - "end": "2022-05-11T10:09:20.796Z", - "state": "IDLE" - }, - { - "start": "2022-05-11T10:09:20.796Z", - "end": "2022-05-11T10:32:13.723Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786028561315351452", - "game": "576482762446602270", - "start": "2022-05-30T13:15:51.168Z", - "end": "2022-05-30T18:33:06.102Z", - "events": [ - { - "start": "2022-05-30T13:15:51.168Z", - "end": "2022-05-30T14:19:18.154Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T14:19:18.154Z", - "end": "2022-05-30T15:22:45.140Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T15:22:45.140Z", - "end": "2022-05-30T16:26:12.126Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T16:26:12.126Z", - "end": "2022-05-30T17:29:39.112Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-30T17:29:39.112Z", - "end": "2022-05-30T18:33:06.098Z", - "state": "IDLE" - } - ] - }, - { - "user": "866600263421429886", - "game": "572456126872944651", - "start": "2022-07-04T07:24:59.729Z", - "end": "2022-07-04T10:30:46.799Z", - "events": [ - { - "start": "2022-07-04T07:24:59.729Z", - "end": "2022-07-04T08:57:53.264Z", - "state": "IDLE" - }, - { - "start": "2022-07-04T08:57:53.264Z", - "end": "2022-07-04T10:30:46.799Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "161887854890745672", - "game": "553697181249437716", - "start": "2022-04-24T23:48:00.805Z", - "end": "2022-04-24T23:51:35.236Z", - "events": [ - { - "start": "2022-04-24T23:48:00.805Z", - "end": "2022-04-24T23:51:35.236Z", - "state": "IDLE" - } - ] - }, - { - "user": "584489284152985092", - "game": "508057374875975682", - "start": "2022-05-24T17:28:58.606Z", - "end": "2022-05-24T20:02:30.515Z", - "events": [ - { - "start": "2022-05-24T17:28:58.606Z", - "end": "2022-05-24T18:45:44.560Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T18:45:44.560Z", - "end": "2022-05-24T20:02:30.514Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "546175179542364160", - "start": "2022-04-30T18:19:13.312Z", - "end": "2022-05-01T04:01:30.080Z", - "events": [ - { - "start": "2022-04-30T18:19:13.312Z", - "end": "2022-04-30T20:44:47.504Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-30T20:44:47.504Z", - "end": "2022-04-30T23:10:21.696Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-30T23:10:21.696Z", - "end": "2022-05-01T01:35:55.888Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T01:35:55.888Z", - "end": "2022-05-01T04:01:30.080Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "360264570671216445", - "game": "597860020935327787", - "start": "2022-05-08T01:58:51.747Z", - "end": "2022-05-08T02:30:40.978Z", - "events": [ - { - "start": "2022-05-08T01:58:51.747Z", - "end": "2022-05-08T02:05:13.593Z", - "state": "IDLE" - }, - { - "start": "2022-05-08T02:05:13.593Z", - "end": "2022-05-08T02:11:35.439Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-08T02:11:35.439Z", - "end": "2022-05-08T02:17:57.285Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T02:17:57.285Z", - "end": "2022-05-08T02:24:19.131Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-08T02:24:19.131Z", - "end": "2022-05-08T02:30:40.977Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "495724335127362694", - "game": "542075586886107149", - "start": "2022-06-27T00:50:41.273Z", - "end": "2022-06-27T03:29:13.972Z", - "events": [ - { - "start": "2022-06-27T00:50:41.273Z", - "end": "2022-06-27T02:09:57.622Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:09:57.622Z", - "end": "2022-06-27T03:29:13.971Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "625617695768437507", - "game": "592976500802846750", - "start": "2022-05-26T12:35:11.221Z", - "end": "2022-05-26T18:39:03.329Z", - "events": [ - { - "start": "2022-05-26T12:35:11.221Z", - "end": "2022-05-26T15:37:07.275Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-26T15:37:07.275Z", - "end": "2022-05-26T18:39:03.329Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "440349172934867131", - "game": "542475118396309528", - "start": "2022-07-04T22:03:49.866Z", - "end": "2022-07-05T05:29:46.926Z", - "events": [ - { - "start": "2022-07-04T22:03:49.866Z", - "end": "2022-07-04T23:55:19.131Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-04T23:55:19.131Z", - "end": "2022-07-05T01:46:48.396Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-05T01:46:48.396Z", - "end": "2022-07-05T03:38:17.661Z", - "state": "IDLE" - }, - { - "start": "2022-07-05T03:38:17.661Z", - "end": "2022-07-05T05:29:46.926Z", - "state": "IDLE" - } - ] - }, - { - "user": "463820732483181525", - "game": "512789343157485602", - "start": "2022-05-29T04:59:16.196Z", - "end": "2022-05-29T09:30:07.637Z", - "events": [ - { - "start": "2022-05-29T04:59:16.196Z", - "end": "2022-05-29T06:29:33.343Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-29T06:29:33.343Z", - "end": "2022-05-29T07:59:50.490Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-29T07:59:50.490Z", - "end": "2022-05-29T09:30:07.637Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "786084290971413565", - "game": "510199020782747732", - "start": "2022-07-14T07:35:38.556Z", - "end": "2022-07-14T11:13:33.771Z", - "events": [ - { - "start": "2022-07-14T07:35:38.556Z", - "end": "2022-07-14T08:19:13.599Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-14T08:19:13.599Z", - "end": "2022-07-14T09:02:48.642Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T09:02:48.642Z", - "end": "2022-07-14T09:46:23.685Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-14T09:46:23.685Z", - "end": "2022-07-14T10:29:58.728Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-14T10:29:58.728Z", - "end": "2022-07-14T11:13:33.771Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "537786518874514211", - "game": "549512435585908756", - "start": "2022-07-08T01:12:51.480Z", - "end": "2022-07-08T03:06:38.070Z", - "events": [ - { - "start": "2022-07-08T01:12:51.480Z", - "end": "2022-07-08T02:09:44.775Z", - "state": "IDLE" - }, - { - "start": "2022-07-08T02:09:44.775Z", - "end": "2022-07-08T03:06:38.070Z", - "state": "IDLE" - } - ] - }, - { - "user": "715446191320920764", - "game": "535384357536399404", - "start": "2022-04-28T20:17:06.291Z", - "end": "2022-04-28T22:15:57.120Z", - "events": [ - { - "start": "2022-04-28T20:17:06.291Z", - "end": "2022-04-28T20:40:52.456Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-28T20:40:52.456Z", - "end": "2022-04-28T21:04:38.621Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T21:04:38.621Z", - "end": "2022-04-28T21:28:24.786Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T21:28:24.786Z", - "end": "2022-04-28T21:52:10.951Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-28T21:52:10.951Z", - "end": "2022-04-28T22:15:57.116Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "444246898747584433", - "game": "530454325214969866", - "start": "2022-07-05T12:46:41.924Z", - "end": "2022-07-05T14:38:01.588Z", - "events": [ - { - "start": "2022-07-05T12:46:41.924Z", - "end": "2022-07-05T13:42:21.756Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-05T13:42:21.756Z", - "end": "2022-07-05T14:38:01.588Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "406850294055619241", - "game": "512699108809637890", - "start": "2022-05-31T01:13:13.307Z", - "end": "2022-05-31T01:56:51.755Z", - "events": [ - { - "start": "2022-05-31T01:13:13.307Z", - "end": "2022-05-31T01:24:07.919Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T01:24:07.919Z", - "end": "2022-05-31T01:35:02.531Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T01:35:02.531Z", - "end": "2022-05-31T01:45:57.143Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-31T01:45:57.143Z", - "end": "2022-05-31T01:56:51.755Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "200801427122341912", - "game": "520453007578628124", - "start": "2022-04-18T06:00:23.657Z", - "end": "2022-04-18T06:40:59.856Z", - "events": [ - { - "start": "2022-04-18T06:00:23.657Z", - "end": "2022-04-18T06:08:30.896Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-18T06:08:30.896Z", - "end": "2022-04-18T06:16:38.135Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-18T06:16:38.135Z", - "end": "2022-04-18T06:24:45.374Z", - "state": "IDLE" - }, - { - "start": "2022-04-18T06:24:45.374Z", - "end": "2022-04-18T06:32:52.613Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-18T06:32:52.613Z", - "end": "2022-04-18T06:40:59.852Z", - "state": "IDLE" - } - ] - }, - { - "user": "938976307338486810", - "game": "606163888052109312", - "start": "2022-07-09T14:57:07.263Z", - "end": "2022-07-09T17:17:19.573Z", - "events": [ - { - "start": "2022-07-09T14:57:07.263Z", - "end": "2022-07-09T15:25:09.725Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T15:25:09.725Z", - "end": "2022-07-09T15:53:12.187Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-09T15:53:12.187Z", - "end": "2022-07-09T16:21:14.649Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-09T16:21:14.649Z", - "end": "2022-07-09T16:49:17.111Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-09T16:49:17.111Z", - "end": "2022-07-09T17:17:19.573Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "297014162745407430", - "game": "584069374462394368", - "start": "2022-06-26T23:17:24.267Z", - "end": "2022-06-27T08:21:57.751Z", - "events": [ - { - "start": "2022-06-26T23:17:24.267Z", - "end": "2022-06-27T02:18:55.428Z", - "state": "IDLE" - }, - { - "start": "2022-06-27T02:18:55.428Z", - "end": "2022-06-27T05:20:26.589Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-27T05:20:26.589Z", - "end": "2022-06-27T08:21:57.750Z", - "state": "IDLE" - } - ] - }, - { - "user": "768513326430993269", - "game": "519644368735567873", - "start": "2022-07-18T11:10:24.828Z", - "end": "2022-07-18T19:32:23.118Z", - "events": [ - { - "start": "2022-07-18T11:10:24.828Z", - "end": "2022-07-18T15:21:23.973Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T15:21:23.973Z", - "end": "2022-07-18T19:32:23.118Z", - "state": "IDLE" - } - ] - }, - { - "user": "628567265580410356", - "game": "558547388583772201", - "start": "2022-04-20T16:18:05.998Z", - "end": "2022-04-20T21:10:55.165Z", - "events": [ - { - "start": "2022-04-20T16:18:05.998Z", - "end": "2022-04-20T17:55:42.387Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-20T17:55:42.387Z", - "end": "2022-04-20T19:33:18.776Z", - "state": "IDLE" - }, - { - "start": "2022-04-20T19:33:18.776Z", - "end": "2022-04-20T21:10:55.165Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "347172184335646820", - "game": "565341641427124244", - "start": "2022-05-24T13:43:05.324Z", - "end": "2022-05-24T15:57:13.804Z", - "events": [ - { - "start": "2022-05-24T13:43:05.324Z", - "end": "2022-05-24T14:16:37.444Z", - "state": "IDLE" - }, - { - "start": "2022-05-24T14:16:37.444Z", - "end": "2022-05-24T14:50:09.564Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-24T14:50:09.564Z", - "end": "2022-05-24T15:23:41.684Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-24T15:23:41.684Z", - "end": "2022-05-24T15:57:13.804Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "931211630078779300", - "game": "530454325214969866", - "start": "2022-06-19T06:47:11.821Z", - "end": "2022-06-19T10:31:11.103Z", - "events": [ - { - "start": "2022-06-19T06:47:11.821Z", - "end": "2022-06-19T08:01:51.581Z", - "state": "IDLE" - }, - { - "start": "2022-06-19T08:01:51.581Z", - "end": "2022-06-19T09:16:31.341Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-19T09:16:31.341Z", - "end": "2022-06-19T10:31:11.101Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "541104083732114799", - "game": "576482762446602270", - "start": "2022-05-06T18:48:24.454Z", - "end": "2022-05-07T03:59:38.110Z", - "events": [ - { - "start": "2022-05-06T18:48:24.454Z", - "end": "2022-05-06T21:52:09.006Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-06T21:52:09.006Z", - "end": "2022-05-07T00:55:53.558Z", - "state": "IDLE" - }, - { - "start": "2022-05-07T00:55:53.558Z", - "end": "2022-05-07T03:59:38.110Z", - "state": "IDLE" - } - ] - }, - { - "user": "951131768137733554", - "game": "523154344187789312", - "start": "2022-06-21T20:09:49.486Z", - "end": "2022-06-22T06:06:58.630Z", - "events": [ - { - "start": "2022-06-21T20:09:49.486Z", - "end": "2022-06-22T06:06:58.630Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "553697181249437716", - "start": "2022-05-07T05:50:03.751Z", - "end": "2022-05-07T07:14:35.944Z", - "events": [ - { - "start": "2022-05-07T05:50:03.751Z", - "end": "2022-05-07T07:14:35.944Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "495724335127362694", - "game": "520462578061803588", - "start": "2022-07-20T02:02:33.051Z", - "end": "2022-07-20T07:09:19.545Z", - "events": [ - { - "start": "2022-07-20T02:02:33.051Z", - "end": "2022-07-20T03:19:14.674Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-20T03:19:14.674Z", - "end": "2022-07-20T04:35:56.297Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T04:35:56.297Z", - "end": "2022-07-20T05:52:37.920Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-20T05:52:37.920Z", - "end": "2022-07-20T07:09:19.543Z", - "state": "IDLE" - } - ] - }, - { - "user": "881335427428668054", - "game": "553697181249437716", - "start": "2022-07-22T01:15:53.272Z", - "end": "2022-07-22T05:02:17.748Z", - "events": [ - { - "start": "2022-07-22T01:15:53.272Z", - "end": "2022-07-22T05:02:17.748Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "526489929631531009", - "start": "2022-07-03T16:48:09.769Z", - "end": "2022-07-03T17:05:06.015Z", - "events": [ - { - "start": "2022-07-03T16:48:09.769Z", - "end": "2022-07-03T16:56:37.892Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-03T16:56:37.892Z", - "end": "2022-07-03T17:05:06.015Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "628567265580410356", - "game": "530454325214969866", - "start": "2022-07-07T16:55:14.007Z", - "end": "2022-07-07T17:48:45.569Z", - "events": [ - { - "start": "2022-07-07T16:55:14.007Z", - "end": "2022-07-07T17:13:04.527Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-07T17:13:04.527Z", - "end": "2022-07-07T17:30:55.047Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-07T17:30:55.047Z", - "end": "2022-07-07T17:48:45.567Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "106607193284486979", - "game": "597588168178663434", - "start": "2022-06-21T22:37:53.826Z", - "end": "2022-06-22T02:05:36.698Z", - "events": [ - { - "start": "2022-06-21T22:37:53.826Z", - "end": "2022-06-21T23:29:49.544Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-21T23:29:49.544Z", - "end": "2022-06-22T00:21:45.262Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T00:21:45.262Z", - "end": "2022-06-22T01:13:40.980Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-22T01:13:40.980Z", - "end": "2022-06-22T02:05:36.698Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "628567265580410356", - "game": "520453007578628124", - "start": "2022-07-13T04:47:55.569Z", - "end": "2022-07-13T04:57:54.912Z", - "events": [ - { - "start": "2022-07-13T04:47:55.569Z", - "end": "2022-07-13T04:57:54.912Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "318220875546522080", - "game": "572456126872944651", - "start": "2022-05-05T17:18:05.127Z", - "end": "2022-05-05T21:10:29.961Z", - "events": [ - { - "start": "2022-05-05T17:18:05.127Z", - "end": "2022-05-05T18:35:33.405Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T18:35:33.405Z", - "end": "2022-05-05T19:53:01.683Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-05T19:53:01.683Z", - "end": "2022-05-05T21:10:29.961Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "572456126872944651", - "start": "2022-04-27T05:30:12.493Z", - "end": "2022-04-27T14:24:31.812Z", - "events": [ - { - "start": "2022-04-27T05:30:12.493Z", - "end": "2022-04-27T14:24:31.812Z", - "state": "IDLE" - } - ] - }, - { - "user": "747381962738157784", - "game": "550277544025522176", - "start": "2022-04-26T07:11:00.378Z", - "end": "2022-04-26T14:58:22.537Z", - "events": [ - { - "start": "2022-04-26T07:11:00.378Z", - "end": "2022-04-26T09:07:50.917Z", - "state": "IDLE" - }, - { - "start": "2022-04-26T09:07:50.917Z", - "end": "2022-04-26T11:04:41.456Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T11:04:41.456Z", - "end": "2022-04-26T13:01:31.995Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-26T13:01:31.995Z", - "end": "2022-04-26T14:58:22.534Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "285410867718320291", - "game": "700136079562375258", - "start": "2022-06-04T16:49:07.519Z", - "end": "2022-06-05T02:16:26.288Z", - "events": [ - { - "start": "2022-06-04T16:49:07.519Z", - "end": "2022-06-04T18:42:35.272Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-04T18:42:35.272Z", - "end": "2022-06-04T20:36:03.025Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-04T20:36:03.025Z", - "end": "2022-06-04T22:29:30.778Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-04T22:29:30.778Z", - "end": "2022-06-05T00:22:58.531Z", - "state": "IDLE" - }, - { - "start": "2022-06-05T00:22:58.531Z", - "end": "2022-06-05T02:16:26.284Z", - "state": "IDLE" - } - ] - }, - { - "user": "584489284152985092", - "game": "520462578061803588", - "start": "2022-06-22T23:25:53.001Z", - "end": "2022-06-23T08:33:01.364Z", - "events": [ - { - "start": "2022-06-22T23:25:53.001Z", - "end": "2022-06-23T01:42:40.091Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-23T01:42:40.091Z", - "end": "2022-06-23T03:59:27.181Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-23T03:59:27.181Z", - "end": "2022-06-23T06:16:14.271Z", - "state": "IDLE" - }, - { - "start": "2022-06-23T06:16:14.271Z", - "end": "2022-06-23T08:33:01.361Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "378424071510192465", - "game": "512789427462995988", - "start": "2022-06-28T00:04:53.261Z", - "end": "2022-06-28T06:48:03.173Z", - "events": [ - { - "start": "2022-06-28T00:04:53.261Z", - "end": "2022-06-28T01:45:40.739Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-28T01:45:40.739Z", - "end": "2022-06-28T03:26:28.217Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T03:26:28.217Z", - "end": "2022-06-28T05:07:15.695Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-28T05:07:15.695Z", - "end": "2022-06-28T06:48:03.173Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "549054179973094329", - "game": "526489929631531009", - "start": "2022-07-18T01:42:11.193Z", - "end": "2022-07-18T03:02:14.212Z", - "events": [ - { - "start": "2022-07-18T01:42:11.193Z", - "end": "2022-07-18T01:58:11.796Z", - "state": "IDLE" - }, - { - "start": "2022-07-18T01:58:11.796Z", - "end": "2022-07-18T02:14:12.399Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T02:14:12.399Z", - "end": "2022-07-18T02:30:13.002Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T02:30:13.002Z", - "end": "2022-07-18T02:46:13.605Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-18T02:46:13.605Z", - "end": "2022-07-18T03:02:14.208Z", - "state": "IDLE" - } - ] - }, - { - "user": "500919588166575890", - "game": "584069374462394368", - "start": "2022-07-12T12:02:10.793Z", - "end": "2022-07-12T14:29:44.160Z", - "events": [ - { - "start": "2022-07-12T12:02:10.793Z", - "end": "2022-07-12T12:31:41.466Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T12:31:41.466Z", - "end": "2022-07-12T13:01:12.139Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T13:01:12.139Z", - "end": "2022-07-12T13:30:42.812Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T13:30:42.812Z", - "end": "2022-07-12T14:00:13.485Z", - "state": "IDLE" - }, - { - "start": "2022-07-12T14:00:13.485Z", - "end": "2022-07-12T14:29:44.158Z", - "state": "IDLE" - } - ] - }, - { - "user": "101572134856427564", - "game": "508057374875975682", - "start": "2022-05-30T03:47:08.376Z", - "end": "2022-05-30T06:11:00.056Z", - "events": [ - { - "start": "2022-05-30T03:47:08.376Z", - "end": "2022-05-30T04:23:06.296Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T04:23:06.296Z", - "end": "2022-05-30T04:59:04.216Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-30T04:59:04.216Z", - "end": "2022-05-30T05:35:02.136Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-30T05:35:02.136Z", - "end": "2022-05-30T06:11:00.056Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "922664752332558395", - "game": "572456126872944651", - "start": "2022-06-08T15:35:16.431Z", - "end": "2022-06-08T16:53:21.587Z", - "events": [ - { - "start": "2022-06-08T15:35:16.431Z", - "end": "2022-06-08T16:14:19.009Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-08T16:14:19.009Z", - "end": "2022-06-08T16:53:21.587Z", - "state": "IDLE" - } - ] - }, - { - "user": "185442579258045359", - "game": "700136079562375258", - "start": "2022-05-26T04:58:28.718Z", - "end": "2022-05-26T07:01:15.359Z", - "events": [ - { - "start": "2022-05-26T04:58:28.718Z", - "end": "2022-05-26T07:01:15.359Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "500919588166575890", - "game": "558547388583772201", - "start": "2022-07-18T06:01:36.821Z", - "end": "2022-07-18T08:18:13.055Z", - "events": [ - { - "start": "2022-07-18T06:01:36.821Z", - "end": "2022-07-18T06:28:56.067Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T06:28:56.067Z", - "end": "2022-07-18T06:56:15.313Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-18T06:56:15.313Z", - "end": "2022-07-18T07:23:34.559Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T07:23:34.559Z", - "end": "2022-07-18T07:50:53.805Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-18T07:50:53.805Z", - "end": "2022-07-18T08:18:13.051Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "500919588166575890", - "game": "549512435585908756", - "start": "2022-07-31T06:02:44.890Z", - "end": "2022-07-31T10:16:31.400Z", - "events": [ - { - "start": "2022-07-31T06:02:44.890Z", - "end": "2022-07-31T08:09:38.145Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-31T08:09:38.145Z", - "end": "2022-07-31T10:16:31.400Z", - "state": "IDLE" - } - ] - }, - { - "user": "131482253203487270", - "game": "550277544025522176", - "start": "2022-04-14T16:28:38.193Z", - "end": "2022-04-15T02:14:58.682Z", - "events": [ - { - "start": "2022-04-14T16:28:38.193Z", - "end": "2022-04-14T19:44:05.022Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T19:44:05.022Z", - "end": "2022-04-14T22:59:31.851Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-14T22:59:31.851Z", - "end": "2022-04-15T02:14:58.680Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "508057374875975682", - "start": "2022-08-05T12:27:26.373Z", - "end": "2022-08-05T18:07:33.471Z", - "events": [ - { - "start": "2022-08-05T12:27:26.373Z", - "end": "2022-08-05T15:17:29.922Z", - "state": "IDLE" - }, - { - "start": "2022-08-05T15:17:29.922Z", - "end": "2022-08-05T18:07:33.471Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "958598056500699208", - "game": "530454325214969866", - "start": "2022-05-12T00:07:03.002Z", - "end": "2022-05-12T01:59:00.165Z", - "events": [ - { - "start": "2022-05-12T00:07:03.002Z", - "end": "2022-05-12T01:03:01.583Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-12T01:03:01.583Z", - "end": "2022-05-12T01:59:00.164Z", - "state": "IDLE" - } - ] - }, - { - "user": "161887854890745672", - "game": "584069374462394368", - "start": "2022-05-31T05:29:44.086Z", - "end": "2022-05-31T14:35:55.033Z", - "events": [ - { - "start": "2022-05-31T05:29:44.086Z", - "end": "2022-05-31T08:31:47.735Z", - "state": "IDLE" - }, - { - "start": "2022-05-31T08:31:47.735Z", - "end": "2022-05-31T11:33:51.384Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-31T11:33:51.384Z", - "end": "2022-05-31T14:35:55.033Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "394970121077311909", - "game": "535869836748783616", - "start": "2022-07-13T06:55:49.480Z", - "end": "2022-07-13T10:49:23.765Z", - "events": [ - { - "start": "2022-07-13T06:55:49.480Z", - "end": "2022-07-13T08:52:36.622Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-13T08:52:36.622Z", - "end": "2022-07-13T10:49:23.764Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "584489284152985092", - "game": "510199020782747732", - "start": "2022-06-02T18:23:06.860Z", - "end": "2022-06-03T00:30:11.109Z", - "events": [ - { - "start": "2022-06-02T18:23:06.860Z", - "end": "2022-06-02T19:54:52.922Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-02T19:54:52.922Z", - "end": "2022-06-02T21:26:38.984Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-02T21:26:38.984Z", - "end": "2022-06-02T22:58:25.046Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-02T22:58:25.046Z", - "end": "2022-06-03T00:30:11.108Z", - "state": "IDLE" - } - ] - }, - { - "user": "713444659295913502", - "game": "530454325214969866", - "start": "2022-04-27T08:46:20.144Z", - "end": "2022-04-27T14:25:48.310Z", - "events": [ - { - "start": "2022-04-27T08:46:20.144Z", - "end": "2022-04-27T09:54:13.777Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T09:54:13.777Z", - "end": "2022-04-27T11:02:07.410Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T11:02:07.410Z", - "end": "2022-04-27T12:10:01.043Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-27T12:10:01.043Z", - "end": "2022-04-27T13:17:54.676Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-27T13:17:54.676Z", - "end": "2022-04-27T14:25:48.309Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "453350270016457959", - "game": "542475118396309528", - "start": "2022-07-22T01:57:32.050Z", - "end": "2022-07-22T08:15:08.025Z", - "events": [ - { - "start": "2022-07-22T01:57:32.050Z", - "end": "2022-07-22T04:03:24.041Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-22T04:03:24.041Z", - "end": "2022-07-22T06:09:16.032Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-22T06:09:16.032Z", - "end": "2022-07-22T08:15:08.023Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "264503060524837708", - "game": "572456126872944651", - "start": "2022-06-14T23:39:32.680Z", - "end": "2022-06-15T08:28:02.084Z", - "events": [ - { - "start": "2022-06-14T23:39:32.680Z", - "end": "2022-06-15T01:51:40.031Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T01:51:40.031Z", - "end": "2022-06-15T04:03:47.382Z", - "state": "IDLE" - }, - { - "start": "2022-06-15T04:03:47.382Z", - "end": "2022-06-15T06:15:54.733Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-15T06:15:54.733Z", - "end": "2022-06-15T08:28:02.084Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "452396069922968436", - "game": "512699108809637890", - "start": "2022-04-17T01:38:03.195Z", - "end": "2022-04-17T02:47:57.077Z", - "events": [ - { - "start": "2022-04-17T01:38:03.195Z", - "end": "2022-04-17T01:52:01.971Z", - "state": "ACTIVE" - }, - { - "start": "2022-04-17T01:52:01.971Z", - "end": "2022-04-17T02:06:00.747Z", - "state": "IDLE" - }, - { - "start": "2022-04-17T02:06:00.747Z", - "end": "2022-04-17T02:19:59.523Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-17T02:19:59.523Z", - "end": "2022-04-17T02:33:58.299Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-17T02:33:58.299Z", - "end": "2022-04-17T02:47:57.075Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "500919588166575890", - "game": "576482762446602270", - "start": "2022-04-23T06:58:10.984Z", - "end": "2022-04-23T08:46:36.682Z", - "events": [ - { - "start": "2022-04-23T06:58:10.984Z", - "end": "2022-04-23T07:34:19.550Z", - "state": "IDLE" - }, - { - "start": "2022-04-23T07:34:19.550Z", - "end": "2022-04-23T08:10:28.116Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-23T08:10:28.116Z", - "end": "2022-04-23T08:46:36.682Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "878082205985098233", - "game": "542474758835535872", - "start": "2022-05-12T07:46:29.054Z", - "end": "2022-05-12T12:35:03.554Z", - "events": [ - { - "start": "2022-05-12T07:46:29.054Z", - "end": "2022-05-12T08:58:37.679Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T08:58:37.679Z", - "end": "2022-05-12T10:10:46.304Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-12T10:10:46.304Z", - "end": "2022-05-12T11:22:54.929Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-12T11:22:54.929Z", - "end": "2022-05-12T12:35:03.554Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "725502702868293700", - "game": "512789120234422301", - "start": "2022-05-23T13:39:44.645Z", - "end": "2022-05-23T16:52:31.204Z", - "events": [ - { - "start": "2022-05-23T13:39:44.645Z", - "end": "2022-05-23T14:27:56.284Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-23T14:27:56.284Z", - "end": "2022-05-23T15:16:07.923Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-23T15:16:07.923Z", - "end": "2022-05-23T16:04:19.562Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-23T16:04:19.562Z", - "end": "2022-05-23T16:52:31.201Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "302347517889336519", - "game": "614448244260339712", - "start": "2022-05-30T12:29:20.281Z", - "end": "2022-05-30T14:33:50.959Z", - "events": [ - { - "start": "2022-05-30T12:29:20.281Z", - "end": "2022-05-30T14:33:50.959Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "394970121077311909", - "game": "575412499399180288", - "start": "2022-05-16T10:06:51.282Z", - "end": "2022-05-16T13:33:18.923Z", - "events": [ - { - "start": "2022-05-16T10:06:51.282Z", - "end": "2022-05-16T10:48:08.810Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T10:48:08.810Z", - "end": "2022-05-16T11:29:26.338Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T11:29:26.338Z", - "end": "2022-05-16T12:10:43.866Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T12:10:43.866Z", - "end": "2022-05-16T12:52:01.394Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-16T12:52:01.394Z", - "end": "2022-05-16T13:33:18.922Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "521350927850935744", - "game": "523154344187789312", - "start": "2022-06-23T22:26:17.609Z", - "end": "2022-06-23T23:04:32.346Z", - "events": [ - { - "start": "2022-06-23T22:26:17.609Z", - "end": "2022-06-23T23:04:32.346Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "600708263053781983", - "game": "549512435585908756", - "start": "2022-06-23T23:31:23.980Z", - "end": "2022-06-24T05:07:39.388Z", - "events": [ - { - "start": "2022-06-23T23:31:23.980Z", - "end": "2022-06-24T05:07:39.388Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "584489284152985092", - "game": "549512435585908756", - "start": "2022-04-20T04:04:22.159Z", - "end": "2022-04-20T10:10:30.239Z", - "events": [ - { - "start": "2022-04-20T04:04:22.159Z", - "end": "2022-04-20T06:06:24.852Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T06:06:24.852Z", - "end": "2022-04-20T08:08:27.545Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-20T08:08:27.545Z", - "end": "2022-04-20T10:10:30.238Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "517335360477493827", - "game": "565341641427124244", - "start": "2022-07-27T03:44:22.641Z", - "end": "2022-07-27T08:39:43.727Z", - "events": [ - { - "start": "2022-07-27T03:44:22.641Z", - "end": "2022-07-27T04:43:26.858Z", - "state": "IDLE" - }, - { - "start": "2022-07-27T04:43:26.858Z", - "end": "2022-07-27T05:42:31.075Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-27T05:42:31.075Z", - "end": "2022-07-27T06:41:35.292Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T06:41:35.292Z", - "end": "2022-07-27T07:40:39.509Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-27T07:40:39.509Z", - "end": "2022-07-27T08:39:43.726Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "378424071510192465", - "game": "512498684211232768", - "start": "2022-06-13T22:43:09.850Z", - "end": "2022-06-14T03:55:51.660Z", - "events": [ - { - "start": "2022-06-13T22:43:09.850Z", - "end": "2022-06-14T00:27:23.786Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-14T00:27:23.786Z", - "end": "2022-06-14T02:11:37.722Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-14T02:11:37.722Z", - "end": "2022-06-14T03:55:51.658Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "395281349698024181", - "game": "535384357536399404", - "start": "2022-06-16T21:24:47.564Z", - "end": "2022-06-17T07:04:31.032Z", - "events": [ - { - "start": "2022-06-16T21:24:47.564Z", - "end": "2022-06-16T23:49:43.431Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-16T23:49:43.431Z", - "end": "2022-06-17T02:14:39.298Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T02:14:39.298Z", - "end": "2022-06-17T04:39:35.165Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-17T04:39:35.165Z", - "end": "2022-06-17T07:04:31.032Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "658550407298256890", - "game": "508057374875975682", - "start": "2022-07-10T02:33:01.864Z", - "end": "2022-07-10T02:52:31.507Z", - "events": [ - { - "start": "2022-07-10T02:33:01.864Z", - "end": "2022-07-10T02:36:55.792Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T02:36:55.792Z", - "end": "2022-07-10T02:40:49.720Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-10T02:40:49.720Z", - "end": "2022-07-10T02:44:43.648Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T02:44:43.648Z", - "end": "2022-07-10T02:48:37.576Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-10T02:48:37.576Z", - "end": "2022-07-10T02:52:31.504Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "147480245458136084", - "game": "606163888052109312", - "start": "2022-04-22T06:44:18.504Z", - "end": "2022-04-22T12:55:20.859Z", - "events": [ - { - "start": "2022-04-22T06:44:18.504Z", - "end": "2022-04-22T12:55:20.859Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "453350270016457959", - "game": "512789120234422301", - "start": "2022-07-12T08:21:06.406Z", - "end": "2022-07-12T16:41:32.660Z", - "events": [ - { - "start": "2022-07-12T08:21:06.406Z", - "end": "2022-07-12T10:01:11.656Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T10:01:11.656Z", - "end": "2022-07-12T11:41:16.906Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-12T11:41:16.906Z", - "end": "2022-07-12T13:21:22.156Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-12T13:21:22.156Z", - "end": "2022-07-12T15:01:27.406Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-12T15:01:27.406Z", - "end": "2022-07-12T16:41:32.656Z", - "state": "IDLE" - } - ] - }, - { - "user": "636935635446628860", - "game": "520462578061803588", - "start": "2022-07-03T03:46:21.062Z", - "end": "2022-07-03T11:00:39.882Z", - "events": [ - { - "start": "2022-07-03T03:46:21.062Z", - "end": "2022-07-03T07:23:30.472Z", - "state": "IDLE" - }, - { - "start": "2022-07-03T07:23:30.472Z", - "end": "2022-07-03T11:00:39.882Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "453350270016457959", - "game": "526489929631531009", - "start": "2022-07-13T09:58:30.048Z", - "end": "2022-07-13T17:52:53.169Z", - "events": [ - { - "start": "2022-07-13T09:58:30.048Z", - "end": "2022-07-13T17:52:53.169Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "881335427428668054", - "game": "614380482620293151", - "start": "2022-06-26T18:33:08.174Z", - "end": "2022-06-26T22:43:18.558Z", - "events": [ - { - "start": "2022-06-26T18:33:08.174Z", - "end": "2022-06-26T19:56:31.635Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T19:56:31.635Z", - "end": "2022-06-26T21:19:55.096Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-26T21:19:55.096Z", - "end": "2022-06-26T22:43:18.557Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "347172184335646820", - "game": "584069374462394368", - "start": "2022-05-21T20:33:40.219Z", - "end": "2022-05-22T05:02:26.702Z", - "events": [ - { - "start": "2022-05-21T20:33:40.219Z", - "end": "2022-05-21T23:23:15.713Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-21T23:23:15.713Z", - "end": "2022-05-22T02:12:51.207Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-22T02:12:51.207Z", - "end": "2022-05-22T05:02:26.701Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "568387317892070397", - "game": "518088627234930688", - "start": "2022-06-19T18:18:16.450Z", - "end": "2022-06-19T21:07:51.819Z", - "events": [ - { - "start": "2022-06-19T18:18:16.450Z", - "end": "2022-06-19T21:07:51.819Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "514228311661084682", - "start": "2022-04-30T22:53:18.835Z", - "end": "2022-05-01T08:23:05.029Z", - "events": [ - { - "start": "2022-04-30T22:53:18.835Z", - "end": "2022-05-01T01:15:45.383Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T01:15:45.383Z", - "end": "2022-05-01T03:38:11.931Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T03:38:11.931Z", - "end": "2022-05-01T06:00:38.479Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-01T06:00:38.479Z", - "end": "2022-05-01T08:23:05.027Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "355708392202112685", - "game": "553697181249437716", - "start": "2022-04-27T01:06:57.264Z", - "end": "2022-04-27T02:08:57.772Z", - "events": [ - { - "start": "2022-04-27T01:06:57.264Z", - "end": "2022-04-27T01:22:27.391Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-27T01:22:27.391Z", - "end": "2022-04-27T01:37:57.518Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:37:57.518Z", - "end": "2022-04-27T01:53:27.645Z", - "state": "IDLE" - }, - { - "start": "2022-04-27T01:53:27.645Z", - "end": "2022-04-27T02:08:57.772Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "762163239408560283", - "game": "584069374462394368", - "start": "2022-05-17T19:15:20.635Z", - "end": "2022-05-17T20:15:03.247Z", - "events": [ - { - "start": "2022-05-17T19:15:20.635Z", - "end": "2022-05-17T19:30:16.288Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T19:30:16.288Z", - "end": "2022-05-17T19:45:11.941Z", - "state": "IDLE" - }, - { - "start": "2022-05-17T19:45:11.941Z", - "end": "2022-05-17T20:00:07.594Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-17T20:00:07.594Z", - "end": "2022-05-17T20:15:03.247Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "951234649334557435", - "game": "575412499399180288", - "start": "2022-06-27T23:38:13.582Z", - "end": "2022-06-28T06:54:43.828Z", - "events": [ - { - "start": "2022-06-27T23:38:13.582Z", - "end": "2022-06-28T06:54:43.828Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "185442579258045359", - "game": "554573307161214977", - "start": "2022-07-06T02:59:30.987Z", - "end": "2022-07-06T08:42:26.127Z", - "events": [ - { - "start": "2022-07-06T02:59:30.987Z", - "end": "2022-07-06T04:08:06.015Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T04:08:06.015Z", - "end": "2022-07-06T05:16:41.043Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-06T05:16:41.043Z", - "end": "2022-07-06T06:25:16.071Z", - "state": "OFFLINE" - }, - { - "start": "2022-07-06T06:25:16.071Z", - "end": "2022-07-06T07:33:51.099Z", - "state": "IDLE" - }, - { - "start": "2022-07-06T07:33:51.099Z", - "end": "2022-07-06T08:42:26.127Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "605723970188938456", - "game": "523154344187789312", - "start": "2022-06-08T17:22:11.775Z", - "end": "2022-06-09T03:01:28.336Z", - "events": [ - { - "start": "2022-06-08T17:22:11.775Z", - "end": "2022-06-08T22:11:50.055Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T22:11:50.055Z", - "end": "2022-06-09T03:01:28.335Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "951131768137733554", - "game": "512789427462995988", - "start": "2022-04-13T04:00:44.783Z", - "end": "2022-04-13T04:26:46.351Z", - "events": [ - { - "start": "2022-04-13T04:00:44.783Z", - "end": "2022-04-13T04:05:57.096Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-13T04:05:57.096Z", - "end": "2022-04-13T04:11:09.409Z", - "state": "IDLE" - }, - { - "start": "2022-04-13T04:11:09.409Z", - "end": "2022-04-13T04:16:21.722Z", - "state": "IDLE" - }, - { - "start": "2022-04-13T04:16:21.722Z", - "end": "2022-04-13T04:21:34.035Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-13T04:21:34.035Z", - "end": "2022-04-13T04:26:46.348Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "213263852824749877", - "game": "542075586886107149", - "start": "2022-07-27T08:21:19.485Z", - "end": "2022-07-27T15:23:03.254Z", - "events": [ - { - "start": "2022-07-27T08:21:19.485Z", - "end": "2022-07-27T11:52:11.369Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-27T11:52:11.369Z", - "end": "2022-07-27T15:23:03.253Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "336473229248470346", - "game": "542075586886107149", - "start": "2022-06-24T00:12:08.933Z", - "end": "2022-06-24T02:21:16.273Z", - "events": [ - { - "start": "2022-06-24T00:12:08.933Z", - "end": "2022-06-24T02:21:16.273Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "559757870366930730", - "game": "614380482620293151", - "start": "2022-07-26T18:02:40.182Z", - "end": "2022-07-26T19:55:15.615Z", - "events": [ - { - "start": "2022-07-26T18:02:40.182Z", - "end": "2022-07-26T18:40:11.993Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-26T18:40:11.993Z", - "end": "2022-07-26T19:17:43.804Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-26T19:17:43.804Z", - "end": "2022-07-26T19:55:15.615Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "525940629729163286", - "game": "530454325214969866", - "start": "2022-06-02T12:46:59.565Z", - "end": "2022-06-02T19:54:36.326Z", - "events": [ - { - "start": "2022-06-02T12:46:59.565Z", - "end": "2022-06-02T19:54:36.326Z", - "state": "IDLE" - } - ] - }, - { - "user": "537786518874514211", - "game": "700136079562375258", - "start": "2022-05-28T04:51:39.448Z", - "end": "2022-05-28T12:05:41.900Z", - "events": [ - { - "start": "2022-05-28T04:51:39.448Z", - "end": "2022-05-28T06:40:10.061Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-28T06:40:10.061Z", - "end": "2022-05-28T08:28:40.674Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-28T08:28:40.674Z", - "end": "2022-05-28T10:17:11.287Z", - "state": "IDLE" - }, - { - "start": "2022-05-28T10:17:11.287Z", - "end": "2022-05-28T12:05:41.900Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "347172184335646820", - "game": "519644267212177418", - "start": "2022-06-17T06:30:54.310Z", - "end": "2022-06-17T08:38:51.351Z", - "events": [ - { - "start": "2022-06-17T06:30:54.310Z", - "end": "2022-06-17T07:34:52.830Z", - "state": "IDLE" - }, - { - "start": "2022-06-17T07:34:52.830Z", - "end": "2022-06-17T08:38:51.350Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "457796054587169483", - "game": "569253958967885828", - "start": "2022-07-11T04:15:43.095Z", - "end": "2022-07-11T13:47:37.342Z", - "events": [ - { - "start": "2022-07-11T04:15:43.095Z", - "end": "2022-07-11T09:01:40.218Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-11T09:01:40.218Z", - "end": "2022-07-11T13:47:37.341Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "541104083732114799", - "game": "542475118396309528", - "start": "2022-05-11T07:12:33.548Z", - "end": "2022-05-11T16:45:06.056Z", - "events": [ - { - "start": "2022-05-11T07:12:33.548Z", - "end": "2022-05-11T09:07:04.049Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-11T09:07:04.049Z", - "end": "2022-05-11T11:01:34.550Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-11T11:01:34.550Z", - "end": "2022-05-11T12:56:05.051Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-11T12:56:05.051Z", - "end": "2022-05-11T14:50:35.552Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-11T14:50:35.552Z", - "end": "2022-05-11T16:45:06.053Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "549054179973094329", - "game": "518088627234930688", - "start": "2022-05-03T22:19:27.555Z", - "end": "2022-05-04T06:52:08.757Z", - "events": [ - { - "start": "2022-05-03T22:19:27.555Z", - "end": "2022-05-04T00:01:59.795Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T00:01:59.795Z", - "end": "2022-05-04T01:44:32.035Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T01:44:32.035Z", - "end": "2022-05-04T03:27:04.275Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-04T03:27:04.275Z", - "end": "2022-05-04T05:09:36.515Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-04T05:09:36.515Z", - "end": "2022-05-04T06:52:08.755Z", - "state": "IDLE" - } - ] - }, - { - "user": "424856688594618054", - "game": "542075586886107149", - "start": "2022-07-30T04:48:58.993Z", - "end": "2022-07-30T08:58:57.772Z", - "events": [ - { - "start": "2022-07-30T04:48:58.993Z", - "end": "2022-07-30T08:58:57.772Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "302679892350666678", - "game": "526489929631531009", - "start": "2022-06-07T22:59:51.771Z", - "end": "2022-06-08T04:29:09.975Z", - "events": [ - { - "start": "2022-06-07T22:59:51.771Z", - "end": "2022-06-08T00:22:11.322Z", - "state": "OFFLINE" - }, - { - "start": "2022-06-08T00:22:11.322Z", - "end": "2022-06-08T01:44:30.873Z", - "state": "IDLE" - }, - { - "start": "2022-06-08T01:44:30.873Z", - "end": "2022-06-08T03:06:50.424Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-06-08T03:06:50.424Z", - "end": "2022-06-08T04:29:09.975Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "347172184335646820", - "game": "558547388583772201", - "start": "2022-07-28T08:13:02.713Z", - "end": "2022-07-28T16:39:19.577Z", - "events": [ - { - "start": "2022-07-28T08:13:02.713Z", - "end": "2022-07-28T10:19:36.929Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-28T10:19:36.929Z", - "end": "2022-07-28T12:26:11.145Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T12:26:11.145Z", - "end": "2022-07-28T14:32:45.361Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-28T14:32:45.361Z", - "end": "2022-07-28T16:39:19.577Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "538658792298239054", - "game": "521842831262875670", - "start": "2022-05-25T16:38:56.987Z", - "end": "2022-05-26T01:43:21.921Z", - "events": [ - { - "start": "2022-05-25T16:38:56.987Z", - "end": "2022-05-25T19:40:25.298Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T19:40:25.298Z", - "end": "2022-05-25T22:41:53.609Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-25T22:41:53.609Z", - "end": "2022-05-26T01:43:21.920Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "185442579258045359", - "game": "535384357536399404", - "start": "2022-07-29T11:43:51.316Z", - "end": "2022-07-29T17:05:10.916Z", - "events": [ - { - "start": "2022-07-29T11:43:51.316Z", - "end": "2022-07-29T13:30:57.849Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-29T13:30:57.849Z", - "end": "2022-07-29T15:18:04.382Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-29T15:18:04.382Z", - "end": "2022-07-29T17:05:10.915Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "147480245458136084", - "game": "549512435585908756", - "start": "2022-07-21T04:06:20.187Z", - "end": "2022-07-21T09:44:18.259Z", - "events": [ - { - "start": "2022-07-21T04:06:20.187Z", - "end": "2022-07-21T05:30:49.705Z", - "state": "IDLE" - }, - { - "start": "2022-07-21T05:30:49.705Z", - "end": "2022-07-21T06:55:19.223Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-07-21T06:55:19.223Z", - "end": "2022-07-21T08:19:48.741Z", - "state": "ACTIVE" - }, - { - "start": "2022-07-21T08:19:48.741Z", - "end": "2022-07-21T09:44:18.259Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "123137660023366590", - "game": "514228311661084682", - "start": "2022-05-24T05:56:50.088Z", - "end": "2022-05-24T15:34:18.809Z", - "events": [ - { - "start": "2022-05-24T05:56:50.088Z", - "end": "2022-05-24T09:09:19.661Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T09:09:19.661Z", - "end": "2022-05-24T12:21:49.234Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-05-24T12:21:49.234Z", - "end": "2022-05-24T15:34:18.807Z", - "state": "OFFLINE" - } - ] - }, - { - "user": "747381962738157784", - "game": "550277544025522176", - "start": "2022-04-25T00:09:18.629Z", - "end": "2022-04-25T09:52:13.593Z", - "events": [ - { - "start": "2022-04-25T00:09:18.629Z", - "end": "2022-04-25T03:23:36.950Z", - "state": "IDLE" - }, - { - "start": "2022-04-25T03:23:36.950Z", - "end": "2022-04-25T06:37:55.271Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-25T06:37:55.271Z", - "end": "2022-04-25T09:52:13.592Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "495724335127362694", - "game": "512699108809637890", - "start": "2022-05-08T12:55:15.232Z", - "end": "2022-05-08T16:42:25.008Z", - "events": [ - { - "start": "2022-05-08T12:55:15.232Z", - "end": "2022-05-08T14:10:58.490Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T14:10:58.490Z", - "end": "2022-05-08T15:26:41.748Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-08T15:26:41.748Z", - "end": "2022-05-08T16:42:25.006Z", - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "user": "297014162745407430", - "game": "606163888052109312", - "start": "2022-05-21T21:44:22.055Z", - "end": "2022-05-22T01:38:30.720Z", - "events": [ - { - "start": "2022-05-21T21:44:22.055Z", - "end": "2022-05-21T22:31:11.788Z", - "state": "ACTIVE" - }, - { - "start": "2022-05-21T22:31:11.788Z", - "end": "2022-05-21T23:18:01.521Z", - "state": "OFFLINE" - }, - { - "start": "2022-05-21T23:18:01.521Z", - "end": "2022-05-22T00:04:51.254Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T00:04:51.254Z", - "end": "2022-05-22T00:51:40.987Z", - "state": "IDLE" - }, - { - "start": "2022-05-22T00:51:40.987Z", - "end": "2022-05-22T01:38:30.720Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "731522398939920723", - "game": "512789343157485602", - "start": "2022-04-24T01:21:45.409Z", - "end": "2022-04-24T06:05:33.344Z", - "events": [ - { - "start": "2022-04-24T01:21:45.409Z", - "end": "2022-04-24T02:32:42.392Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T02:32:42.392Z", - "end": "2022-04-24T03:43:39.375Z", - "state": "OFFLINE" - }, - { - "start": "2022-04-24T03:43:39.375Z", - "end": "2022-04-24T04:54:36.358Z", - "state": "DO_NOT_DISTURB" - }, - { - "start": "2022-04-24T04:54:36.358Z", - "end": "2022-04-24T06:05:33.341Z", - "state": "ACTIVE" - } - ] - }, - { - "user": "137536289023624121", - "game": "592976500802846750", - "start": "2022-05-01T00:00:34.540Z", - "end": "2022-05-01T02:00:28.666Z", - "events": [ - { - "start": "2022-05-01T00:00:34.540Z", - "end": "2022-05-01T01:00:31.603Z", - "state": "IDLE" - }, - { - "start": "2022-05-01T01:00:31.603Z", - "end": "2022-05-01T02:00:28.666Z", - "state": "IDLE" - } - ] - }, - { - "user": "285410867718320291", - "game": "540120593576493057", - "start": "2022-06-17T14:16:32.787Z", - "end": "2022-06-17T22:39:48.331Z", - "events": [ - { - "start": "2022-06-17T14:16:32.787Z", - "end": "2022-06-17T15:57:11.895Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T15:57:11.895Z", - "end": "2022-06-17T17:37:51.003Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T17:37:51.003Z", - "end": "2022-06-17T19:18:30.111Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T19:18:30.111Z", - "end": "2022-06-17T20:59:09.219Z", - "state": "ACTIVE" - }, - { - "start": "2022-06-17T20:59:09.219Z", - "end": "2022-06-17T22:39:48.327Z", - "state": "IDLE" - } - ] - } -].map((session) => ({ - ...session, - start: new Date(session.start), - end: new Date(session.end), - events: session.events.map((event) => ({ - ...event, - start: new Date(event.start), - end: new Date(event.end), - })) -})); - -db.session.insertMany(sessions); \ No newline at end of file diff --git a/init.sh b/init.sh new file mode 100755 index 0000000..f4ee020 --- /dev/null +++ b/init.sh @@ -0,0 +1,7 @@ +#!/bin/bash +mongo gabriel --eval 'db.game.drop()' +mongo gabriel --eval 'db.session.drop()' +mongo gabriel --eval 'db.user.drop()' +mongoimport --db gabriel --collection game --jsonArray --file games.json +mongoimport --db gabriel --collection session --jsonArray --file sessions.json +mongoimport --db gabriel --collection user --jsonArray --file users.json \ No newline at end of file diff --git a/sessions.json b/sessions.json new file mode 100644 index 0000000..5b7d82e --- /dev/null +++ b/sessions.json @@ -0,0 +1,701273 @@ +[ + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "87fa6a20-cc01-477a-8f10-99a6e60fce19", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T00:21:48.000Z" + }, + "end": { + "$date": "2020-10-10T00:37:47.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T00:21:48.000Z" + }, + "end": { + "$date": "2020-10-10T00:37:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3669b6b3-1493-430d-b186-aaefb188c009", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T02:22:29.000Z" + }, + "end": { + "$date": "2020-10-10T02:25:58.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T02:22:29.000Z" + }, + "end": { + "$date": "2020-10-10T02:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "405a8fc3-b025-44bf-9ac0-e1b371c78984", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-10T01:23:19.000Z" + }, + "end": { + "$date": "2020-10-10T01:24:18.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T01:23:19.000Z" + }, + "end": { + "$date": "2020-10-10T01:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6be92f89-518e-46a4-9fec-703bd90a5abb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T01:25:12.000Z" + }, + "end": { + "$date": "2020-10-10T02:52:29.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T01:25:12.000Z" + }, + "end": { + "$date": "2020-10-10T02:52:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8bae1c50-1264-4db8-896a-f53136292444", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-10T01:31:45.000Z" + }, + "end": { + "$date": "2020-10-10T04:14:59.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T01:31:45.000Z" + }, + "end": { + "$date": "2020-10-10T04:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de23b4e9-46eb-4ada-b5b9-248bc6ec0c58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T02:22:29.000Z" + }, + "end": { + "$date": "2020-10-10T03:07:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T02:22:29.000Z" + }, + "end": { + "$date": "2020-10-10T03:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "ca5ddcf5-bebd-4ed3-903c-1449ef11abf9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T02:54:44.000Z" + }, + "end": { + "$date": "2020-10-10T03:08:53.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T02:54:44.000Z" + }, + "end": { + "$date": "2020-10-10T03:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "806a53b0-da9f-4748-99e2-7a45a0543510", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T02:57:46.000Z" + }, + "end": { + "$date": "2020-10-10T03:03:47.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T02:57:46.000Z" + }, + "end": { + "$date": "2020-10-10T03:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "ba91dd9b-63ad-4e11-8d6d-e60bdc296d01", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T03:03:51.000Z" + }, + "end": { + "$date": "2020-10-10T03:05:27.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:03:51.000Z" + }, + "end": { + "$date": "2020-10-10T03:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "d431fa28-85c3-4cea-9a59-d40a318382e9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T03:06:01.000Z" + }, + "end": { + "$date": "2020-10-10T03:11:03.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:06:01.000Z" + }, + "end": { + "$date": "2020-10-10T03:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "1455ad1e-1015-4fc8-94ff-b52de9dc4c21", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T03:09:03.000Z" + }, + "end": { + "$date": "2020-10-10T03:09:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:09:03.000Z" + }, + "end": { + "$date": "2020-10-10T03:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "d0cb95dc-96b1-47a6-b4db-7046b33b309a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T03:14:44.000Z" + }, + "end": { + "$date": "2020-10-10T03:15:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:14:44.000Z" + }, + "end": { + "$date": "2020-10-10T03:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "aba3bae3-a793-4488-a286-68d5dd000e60", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T03:14:46.000Z" + }, + "end": { + "$date": "2020-10-10T03:15:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:14:46.000Z" + }, + "end": { + "$date": "2020-10-10T03:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "ec924358-7a62-457a-90ca-904f19bd9984", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T03:16:29.000Z" + }, + "end": { + "$date": "2020-10-10T03:17:34.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:16:29.000Z" + }, + "end": { + "$date": "2020-10-10T03:17:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a86d05fc-da18-44a2-bf0d-aea71e4085bf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T03:27:25.000Z" + }, + "end": { + "$date": "2020-10-10T03:56:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:27:25.000Z" + }, + "end": { + "$date": "2020-10-10T03:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07cee757-3cab-41ba-ae59-8d77c1f3c767", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-10T06:57:19.000Z" + }, + "end": { + "$date": "2020-10-10T06:57:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T06:57:19.000Z" + }, + "end": { + "$date": "2020-10-10T06:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "11c40d5d-624b-440f-93d4-ab359f8db16c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T03:23:02.000Z" + }, + "end": { + "$date": "2020-10-10T03:24:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:23:02.000Z" + }, + "end": { + "$date": "2020-10-10T03:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "fb808872-99be-46bb-9b5c-bcffda1441af", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T03:24:42.000Z" + }, + "end": { + "$date": "2020-10-10T03:25:03.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:24:42.000Z" + }, + "end": { + "$date": "2020-10-10T03:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "be21f3f3-6156-41c7-97f3-a89926bf58a0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T03:24:51.000Z" + }, + "end": { + "$date": "2020-10-10T03:25:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:24:51.000Z" + }, + "end": { + "$date": "2020-10-10T03:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "774ebeca-d5d3-4a73-a0f7-98ced544208b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T03:25:12.000Z" + }, + "end": { + "$date": "2020-10-10T06:08:12.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:25:12.000Z" + }, + "end": { + "$date": "2020-10-10T06:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "9fbd058c-7c32-4d9f-9f5d-878ec868bb4b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T03:26:06.000Z" + }, + "end": { + "$date": "2020-10-10T06:08:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:26:06.000Z" + }, + "end": { + "$date": "2020-10-10T06:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "d0e00f7e-60b3-4c8f-ad04-d7ea0d243073", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-10T03:34:53.000Z" + }, + "end": { + "$date": "2020-10-10T04:01:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T03:34:53.000Z" + }, + "end": { + "$date": "2020-10-10T04:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3796bcd-9229-46a5-b27d-03b65dea19bc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T04:42:26.000Z" + }, + "end": { + "$date": "2020-10-10T05:18:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:42:26.000Z" + }, + "end": { + "$date": "2020-10-10T05:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f03a2e5-972e-4438-96ba-9120adab6a15", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-10T04:03:44.000Z" + }, + "end": { + "$date": "2020-10-10T04:41:16.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:03:44.000Z" + }, + "end": { + "$date": "2020-10-10T04:41:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "5e8d18de-a2d3-4572-8cff-4fffee683dec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T04:11:03.000Z" + }, + "end": { + "$date": "2020-10-10T04:11:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:11:03.000Z" + }, + "end": { + "$date": "2020-10-10T04:11:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e53c0499-5388-4cc4-a181-2191fec73c3f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-10T04:27:16.000Z" + }, + "end": { + "$date": "2020-10-10T04:31:11.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:27:16.000Z" + }, + "end": { + "$date": "2020-10-10T04:31:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5d703851-1af3-4a97-bc93-794580db2e01", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T04:44:35.000Z" + }, + "end": { + "$date": "2020-10-10T04:44:49.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:44:35.000Z" + }, + "end": { + "$date": "2020-10-10T04:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "406d3645-4e69-4f99-954f-e6d7913cbb16", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-10T04:31:47.000Z" + }, + "end": { + "$date": "2020-10-10T07:18:08.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:31:47.000Z" + }, + "end": { + "$date": "2020-10-10T07:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdf3c512-197b-40f0-803a-aaca233f556b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-10T04:47:56.000Z" + }, + "end": { + "$date": "2020-10-10T05:09:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T04:47:56.000Z" + }, + "end": { + "$date": "2020-10-10T05:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e323a0c-fd6d-424f-b660-0b0b14928aab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T05:20:29.000Z" + }, + "end": { + "$date": "2020-10-10T05:40:39.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T05:20:29.000Z" + }, + "end": { + "$date": "2020-10-10T05:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42217b1d-1a08-482b-bdaf-e892b719d84c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T05:44:15.000Z" + }, + "end": { + "$date": "2020-10-10T06:16:45.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T05:44:15.000Z" + }, + "end": { + "$date": "2020-10-10T06:16:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "56e3a158-04bc-4224-9e93-16b52f25660f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T06:08:20.000Z" + }, + "end": { + "$date": "2020-10-10T08:09:49.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T06:08:20.000Z" + }, + "end": { + "$date": "2020-10-10T08:09:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "52f6261c-e0e8-4144-ab66-bd7e799d314b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T06:08:23.000Z" + }, + "end": { + "$date": "2020-10-10T08:09:58.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T06:08:23.000Z" + }, + "end": { + "$date": "2020-10-10T08:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f38fee97-1b5b-4241-8088-b1e446fa3fb2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-10T06:19:41.000Z" + }, + "end": { + "$date": "2020-10-10T06:57:16.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T06:19:41.000Z" + }, + "end": { + "$date": "2020-10-10T06:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f670bbe2-7c50-466b-bd62-54e5921bcca2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "1970-01-01T00:00:00.000Z" + }, + "end": { + "$date": "2020-10-10T07:02:10.000Z" + }, + "events": [ + { + "start": { + "$date": "1970-01-01T00:00:00.000Z" + }, + "end": { + "$date": "2020-10-10T07:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff0d1c1d-a16b-4bde-b279-0baf6f06c886", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-10T06:59:57.000Z" + }, + "end": { + "$date": "2020-10-10T06:59:58.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T06:59:57.000Z" + }, + "end": { + "$date": "2020-10-10T06:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "11e3f472-1413-4728-8d21-b0ce09459c0b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-10T07:23:41.000Z" + }, + "end": { + "$date": "2020-10-10T08:46:53.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T07:23:41.000Z" + }, + "end": { + "$date": "2020-10-10T08:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8591f7c9-1c59-4bb1-b9cb-485f2f97cbf6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-10T08:09:57.000Z" + }, + "end": { + "$date": "2020-10-10T09:00:15.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T08:09:57.000Z" + }, + "end": { + "$date": "2020-10-10T09:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d321324b-685e-4fe7-8341-ad7b08240dd5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T15:29:09.000Z" + }, + "end": { + "$date": "2020-10-10T15:59:19.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T15:29:09.000Z" + }, + "end": { + "$date": "2020-10-10T15:59:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d653b13d-207d-4b2a-90ec-cd2ccb9d1e15", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T16:01:04.000Z" + }, + "end": { + "$date": "2020-10-10T16:17:30.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T16:01:04.000Z" + }, + "end": { + "$date": "2020-10-10T16:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "237249ed-a589-4d46-936f-fc13bbae6e50", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T16:19:45.000Z" + }, + "end": { + "$date": "2020-10-10T16:27:05.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T16:19:45.000Z" + }, + "end": { + "$date": "2020-10-10T16:27:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "783f18db-abf6-4327-9482-86a96e6d8be3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T16:38:32.000Z" + }, + "end": { + "$date": "2020-10-10T17:33:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T16:38:32.000Z" + }, + "end": { + "$date": "2020-10-10T17:33:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "7f18b659-6c8a-458a-b002-74de4c4ea815", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T17:48:00.000Z" + }, + "end": { + "$date": "2020-10-10T18:07:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T17:48:00.000Z" + }, + "end": { + "$date": "2020-10-10T18:07:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fe9f369b-32ca-419b-9061-fd7ac279dbc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T20:05:52.000Z" + }, + "end": { + "$date": "2020-10-10T21:17:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T20:05:52.000Z" + }, + "end": { + "$date": "2020-10-10T21:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "728039b1-509b-4be0-9605-bd293b875809", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T20:08:32.000Z" + }, + "end": { + "$date": "2020-10-10T21:04:08.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T20:08:32.000Z" + }, + "end": { + "$date": "2020-10-10T21:04:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d2cdbb01-db95-4fb2-992c-089a4f621f27", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-10T21:27:47.000Z" + }, + "end": { + "$date": "2020-10-10T21:48:12.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T21:27:47.000Z" + }, + "end": { + "$date": "2020-10-10T21:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "655a40df-d102-41d2-aec1-75d761595e0b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-10T23:05:11.000Z" + }, + "end": { + "$date": "2020-10-11T01:42:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T23:05:11.000Z" + }, + "end": { + "$date": "2020-10-11T01:42:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "598bfe49-0b28-4ed8-8cf1-75fd5f0092c2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-10T23:24:01.000Z" + }, + "end": { + "$date": "2020-10-11T01:27:37.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-10T23:24:01.000Z" + }, + "end": { + "$date": "2020-10-11T01:27:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "7014c6b1-7158-43c7-b425-113ecac35953", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T01:42:55.000Z" + }, + "end": { + "$date": "2020-10-11T01:48:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T01:42:55.000Z" + }, + "end": { + "$date": "2020-10-11T01:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "16d58bd1-ab16-4e17-9b23-89c0517ad3c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-11T01:45:47.000Z" + }, + "end": { + "$date": "2020-10-11T01:48:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T01:45:47.000Z" + }, + "end": { + "$date": "2020-10-11T01:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "9d62d21c-a20f-43fb-a2c7-3f11aa1d3c59", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T01:54:31.000Z" + }, + "end": { + "$date": "2020-10-11T02:01:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T01:54:31.000Z" + }, + "end": { + "$date": "2020-10-11T02:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "1691a9c0-23fd-41bd-977f-4084b215a0ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T02:01:28.000Z" + }, + "end": { + "$date": "2020-10-11T03:44:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T02:01:28.000Z" + }, + "end": { + "$date": "2020-10-11T03:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00381831-b99f-4888-b2f7-42b5668998f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T03:35:46.000Z" + }, + "end": { + "$date": "2020-10-11T04:13:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T03:35:46.000Z" + }, + "end": { + "$date": "2020-10-11T04:13:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d4cf30ab-32f8-4667-85ae-9bae96a04a76", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-11T03:12:37.000Z" + }, + "end": { + "$date": "2020-10-11T06:02:39.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T03:12:37.000Z" + }, + "end": { + "$date": "2020-10-11T06:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ad84b8c2-0daa-436f-b85c-30143fa7d77e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-11T03:15:31.000Z" + }, + "end": { + "$date": "2020-10-11T04:03:11.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T03:15:31.000Z" + }, + "end": { + "$date": "2020-10-11T04:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4af1e0ea-6be1-48a1-a2f0-c6608e7ad410", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T03:55:49.000Z" + }, + "end": { + "$date": "2020-10-11T07:53:08.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T03:55:49.000Z" + }, + "end": { + "$date": "2020-10-11T07:53:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "444681dc-1a88-4e32-8bdc-2b9ef3b29eea", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-11T04:03:52.000Z" + }, + "end": { + "$date": "2020-10-11T07:49:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T04:03:52.000Z" + }, + "end": { + "$date": "2020-10-11T07:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", + "uuid": "b7c88023-258d-425f-9485-821fad5ec26e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-11T04:05:35.000Z" + }, + "end": { + "$date": "2020-10-11T07:50:08.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T04:05:35.000Z" + }, + "end": { + "$date": "2020-10-11T07:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d9dd791-c117-43c9-9086-2bd193b02850", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T04:14:14.000Z" + }, + "end": { + "$date": "2020-10-11T04:50:37.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T04:14:14.000Z" + }, + "end": { + "$date": "2020-10-11T04:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "68245887-eba1-42a0-bfc8-97d84f840574", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-11T04:24:38.000Z" + }, + "end": { + "$date": "2020-10-11T04:27:58.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T04:24:38.000Z" + }, + "end": { + "$date": "2020-10-11T04:27:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "60fa6e21-189b-4ec6-b838-0feed117c985", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-11T04:29:18.000Z" + }, + "end": { + "$date": "2020-10-11T04:40:09.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T04:29:18.000Z" + }, + "end": { + "$date": "2020-10-11T04:40:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "256e4005-b73a-49dc-866d-6375123788f4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-11T04:47:10.000Z" + }, + "end": { + "$date": "2020-10-11T05:31:21.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T04:47:10.000Z" + }, + "end": { + "$date": "2020-10-11T05:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d18893d9-0e9e-4035-8750-909326f81a1c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T05:24:15.000Z" + }, + "end": { + "$date": "2020-10-11T06:06:59.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T05:24:15.000Z" + }, + "end": { + "$date": "2020-10-11T06:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf1b97d8-bdd8-414a-9181-28414bab0cac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T06:14:49.000Z" + }, + "end": { + "$date": "2020-10-11T06:57:07.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T06:14:49.000Z" + }, + "end": { + "$date": "2020-10-11T06:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "785455e8-6e01-467a-ae5c-b216d56609ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T07:06:41.000Z" + }, + "end": { + "$date": "2020-10-11T07:40:56.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T07:06:41.000Z" + }, + "end": { + "$date": "2020-10-11T07:40:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "925c27d8-f9fe-4e90-80c8-954898471770", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-11T06:58:59.000Z" + }, + "end": { + "$date": "2020-10-11T06:59:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T06:58:59.000Z" + }, + "end": { + "$date": "2020-10-11T06:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "851d40f4-c116-417d-808f-60a11b894608", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-11T06:59:41.000Z" + }, + "end": { + "$date": "2020-10-11T08:26:33.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T06:59:41.000Z" + }, + "end": { + "$date": "2020-10-11T08:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06f21edc-d145-4300-a3f3-20415be3bd23", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-11T07:07:44.000Z" + }, + "end": { + "$date": "2020-10-11T07:40:49.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T07:07:44.000Z" + }, + "end": { + "$date": "2020-10-11T07:40:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efd4a3bd-abda-44ce-832f-9d23ab9a6d90", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T07:43:11.000Z" + }, + "end": { + "$date": "2020-10-11T08:23:30.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T07:43:11.000Z" + }, + "end": { + "$date": "2020-10-11T08:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "748c7392-79eb-40d4-8d13-72c97c35c1d1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-11T07:43:15.000Z" + }, + "end": { + "$date": "2020-10-11T08:23:20.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T07:43:15.000Z" + }, + "end": { + "$date": "2020-10-11T08:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "0eafbc70-fac8-4726-b11a-deb84cbcacc8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-11T07:56:05.000Z" + }, + "end": { + "$date": "2020-10-11T09:06:45.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T07:56:05.000Z" + }, + "end": { + "$date": "2020-10-11T09:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "8146ed42-7315-4a5d-838e-b8b748084101", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-11T07:59:46.000Z" + }, + "end": { + "$date": "2020-10-11T08:32:08.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T07:59:46.000Z" + }, + "end": { + "$date": "2020-10-11T08:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fc228ce2-1af3-493e-bcd3-16acd782f815", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T08:03:10.000Z" + }, + "end": { + "$date": "2020-10-11T08:25:54.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T08:03:10.000Z" + }, + "end": { + "$date": "2020-10-11T08:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e063837-3bdd-41d9-84d2-a875057fe7d2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T08:23:35.000Z" + }, + "end": { + "$date": "2020-10-11T08:24:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T08:23:35.000Z" + }, + "end": { + "$date": "2020-10-11T08:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "97cbe10d-8a0e-4e8d-a2cc-d46f9a5b59b1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-11T08:32:14.000Z" + }, + "end": { + "$date": "2020-10-11T09:06:40.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T08:32:14.000Z" + }, + "end": { + "$date": "2020-10-11T09:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "41bf2558-da3e-416e-9319-557d3abde0e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-11T08:43:03.000Z" + }, + "end": { + "$date": "2020-10-11T09:51:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T08:43:03.000Z" + }, + "end": { + "$date": "2020-10-11T09:51:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ac6ee3e5-2c4f-44dc-bce7-a0ec172e4c8f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-11T09:06:51.000Z" + }, + "end": { + "$date": "2020-10-11T09:53:09.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T09:06:51.000Z" + }, + "end": { + "$date": "2020-10-11T09:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79b76057-c13f-4bb9-be7e-70965f63729a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-11T16:49:15.000Z" + }, + "end": { + "$date": "2020-10-11T17:20:12.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T16:49:15.000Z" + }, + "end": { + "$date": "2020-10-11T17:20:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "15519ce0-4747-4cc8-9c35-e1aa58abee0d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-11T18:20:06.000Z" + }, + "end": { + "$date": "2020-10-11T19:11:04.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T18:20:06.000Z" + }, + "end": { + "$date": "2020-10-11T19:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e58baecd-d524-4e9f-a0ef-4fac0d67e638", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T18:49:03.000Z" + }, + "end": { + "$date": "2020-10-11T19:21:47.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T18:49:03.000Z" + }, + "end": { + "$date": "2020-10-11T19:21:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fc19e64-99f5-457b-b2ab-f94f1483fb32", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-11T19:23:06.000Z" + }, + "end": { + "$date": "2020-10-11T19:57:49.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T19:23:06.000Z" + }, + "end": { + "$date": "2020-10-11T19:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "6440a8a4-2e4f-494b-981f-82112d68ec4e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-11T19:33:02.000Z" + }, + "end": { + "$date": "2020-10-11T19:52:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T19:33:02.000Z" + }, + "end": { + "$date": "2020-10-11T19:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "243822f0-8367-43a0-9ee2-bef15f30fa60", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-11T19:43:10.000Z" + }, + "end": { + "$date": "2020-10-11T20:42:32.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T19:43:10.000Z" + }, + "end": { + "$date": "2020-10-11T20:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6597c836-a766-4829-be59-3649a67e20d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-11T19:57:48.000Z" + }, + "end": { + "$date": "2020-10-11T20:12:48.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T19:57:48.000Z" + }, + "end": { + "$date": "2020-10-11T20:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bed25f4e-31cf-4080-9c8e-d881fa774b5a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-11T20:32:40.000Z" + }, + "end": { + "$date": "2020-10-11T20:47:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T20:32:40.000Z" + }, + "end": { + "$date": "2020-10-11T20:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "44cd6076-c797-40fd-b930-f4cbb44df6ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-11T20:53:03.000Z" + }, + "end": { + "$date": "2020-10-11T23:12:15.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T20:53:03.000Z" + }, + "end": { + "$date": "2020-10-11T23:12:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6bb2a381-fbdf-4918-8528-46b11eecef89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T21:01:59.000Z" + }, + "end": { + "$date": "2020-10-11T22:56:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T21:01:59.000Z" + }, + "end": { + "$date": "2020-10-11T22:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d0bd3e82-cfdf-4b9e-a73d-30267b8d1488", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-11T21:07:42.000Z" + }, + "end": { + "$date": "2020-10-12T00:13:33.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T21:07:42.000Z" + }, + "end": { + "$date": "2020-10-12T00:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bc25b654-4171-4a75-8e1c-a54aa2893b5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-11T21:09:04.000Z" + }, + "end": { + "$date": "2020-10-11T22:19:16.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T21:09:04.000Z" + }, + "end": { + "$date": "2020-10-11T22:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b54feb7-ec57-4d09-abe3-eb9b9aa53037", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-11T21:24:05.000Z" + }, + "end": { + "$date": "2020-10-11T21:27:31.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T21:24:05.000Z" + }, + "end": { + "$date": "2020-10-11T21:27:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "dd5e3232-156a-47b2-a50a-3a1340ebcfee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-11T21:28:54.000Z" + }, + "end": { + "$date": "2020-10-11T21:30:00.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T21:28:54.000Z" + }, + "end": { + "$date": "2020-10-11T21:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c3de643f-8270-4a9c-8139-270164c0cce3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-11T22:19:39.000Z" + }, + "end": { + "$date": "2020-10-12T01:59:45.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T22:19:39.000Z" + }, + "end": { + "$date": "2020-10-12T01:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e8f501f3-874d-4315-b7c5-ebf985462432", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-10-11T22:21:27.000Z" + }, + "end": { + "$date": "2020-10-12T02:00:03.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T22:21:27.000Z" + }, + "end": { + "$date": "2020-10-12T02:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "eb3cc83a-e5df-49f9-b43a-a4697e7f7df9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-11T23:07:48.000Z" + }, + "end": { + "$date": "2020-10-12T01:29:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T23:07:48.000Z" + }, + "end": { + "$date": "2020-10-12T01:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac993efb-064f-4ffd-a8ec-a6165f310abf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-11T23:16:34.000Z" + }, + "end": { + "$date": "2020-10-11T23:53:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T23:16:34.000Z" + }, + "end": { + "$date": "2020-10-11T23:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "111ecf73-d2ed-4516-b67a-3765c087ded8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-11T23:57:16.000Z" + }, + "end": { + "$date": "2020-10-12T00:36:34.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-11T23:57:16.000Z" + }, + "end": { + "$date": "2020-10-12T00:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "84c72d09-dfab-4c27-9baa-69b1e328c083", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-12T00:08:09.000Z" + }, + "end": { + "$date": "2020-10-12T00:28:34.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T00:08:09.000Z" + }, + "end": { + "$date": "2020-10-12T00:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20d422f7-006c-4210-9274-1c7b124e3aac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-12T00:27:49.000Z" + }, + "end": { + "$date": "2020-10-12T00:51:00.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T00:27:49.000Z" + }, + "end": { + "$date": "2020-10-12T00:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ea208d9-90c0-48b4-9f9b-96dfa8402762", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-12T00:56:37.000Z" + }, + "end": { + "$date": "2020-10-12T00:57:01.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T00:56:37.000Z" + }, + "end": { + "$date": "2020-10-12T00:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "a8605801-8a3d-4ae8-a011-323ec9b6c4dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-12T01:03:27.000Z" + }, + "end": { + "$date": "2020-10-12T02:36:55.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T01:03:27.000Z" + }, + "end": { + "$date": "2020-10-12T02:36:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "208d745d-0877-4abe-97ee-fcb29824862d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-12T01:28:02.000Z" + }, + "end": { + "$date": "2020-10-12T02:00:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T01:28:02.000Z" + }, + "end": { + "$date": "2020-10-12T02:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "fd51502e-a39a-4631-8040-32aaf6fe8fee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T01:54:13.000Z" + }, + "end": { + "$date": "2020-10-12T02:00:39.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T01:54:13.000Z" + }, + "end": { + "$date": "2020-10-12T02:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "167eaaad-e29f-4685-a9be-c2b48f48f412", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T02:01:15.000Z" + }, + "end": { + "$date": "2020-10-12T02:25:12.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:01:15.000Z" + }, + "end": { + "$date": "2020-10-12T02:25:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "3a46ff10-0386-4c55-b571-b6ffbf01e421", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-12T02:01:50.000Z" + }, + "end": { + "$date": "2020-10-12T02:47:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:01:50.000Z" + }, + "end": { + "$date": "2020-10-12T02:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "9e5c9630-36ce-4aeb-8813-e8978cc06380", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-12T02:02:54.000Z" + }, + "end": { + "$date": "2020-10-12T02:03:08.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:02:54.000Z" + }, + "end": { + "$date": "2020-10-12T02:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "8a380985-61f8-4f3b-b85d-25d38988e8c7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-12T02:03:39.000Z" + }, + "end": { + "$date": "2020-10-12T02:47:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:03:39.000Z" + }, + "end": { + "$date": "2020-10-12T02:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "704fd50d-f03e-4360-90bc-763ead397a14", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T02:26:03.000Z" + }, + "end": { + "$date": "2020-10-12T02:26:53.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:26:03.000Z" + }, + "end": { + "$date": "2020-10-12T02:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "20f9dd1a-0ee6-4006-98f6-2bd23454d822", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T02:27:33.000Z" + }, + "end": { + "$date": "2020-10-12T02:40:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:27:33.000Z" + }, + "end": { + "$date": "2020-10-12T02:40:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "3ed304f8-c7b1-4234-a05c-01cdbd3f8927", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T02:42:55.000Z" + }, + "end": { + "$date": "2020-10-12T02:46:10.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:42:55.000Z" + }, + "end": { + "$date": "2020-10-12T02:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6374f7ff-5060-4925-8812-80d5bd579162", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T02:47:26.000Z" + }, + "end": { + "$date": "2020-10-12T02:58:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T02:47:26.000Z" + }, + "end": { + "$date": "2020-10-12T02:58:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "18ade822-97f4-4e95-8eea-257dad0e3168", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T03:03:27.000Z" + }, + "end": { + "$date": "2020-10-12T03:37:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T03:03:27.000Z" + }, + "end": { + "$date": "2020-10-12T03:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "8faddcfb-4b0b-4722-8ce1-82cb02bcf320", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T03:17:47.000Z" + }, + "end": { + "$date": "2020-10-12T04:11:34.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T03:17:47.000Z" + }, + "end": { + "$date": "2020-10-12T04:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "576b63da-78d5-4d82-af3a-c2a2f40e6690", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-12T03:30:16.000Z" + }, + "end": { + "$date": "2020-10-12T05:05:28.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T03:30:16.000Z" + }, + "end": { + "$date": "2020-10-12T05:05:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cfa4b348-7178-4700-9724-0647074be9b2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-12T03:41:21.000Z" + }, + "end": { + "$date": "2020-10-12T05:09:29.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T03:41:21.000Z" + }, + "end": { + "$date": "2020-10-12T05:09:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "799a6c45-ae7a-4567-ad9c-a09a82891151", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-12T05:06:33.000Z" + }, + "end": { + "$date": "2020-10-12T05:07:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T05:06:33.000Z" + }, + "end": { + "$date": "2020-10-12T05:07:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "73b8fb5f-c315-445f-b474-9dbf89e61ad9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-12T05:07:38.000Z" + }, + "end": { + "$date": "2020-10-12T05:11:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T05:07:38.000Z" + }, + "end": { + "$date": "2020-10-12T05:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dcb72550-2aa7-4562-8b09-a1782ea4950d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-12T05:58:11.000Z" + }, + "end": { + "$date": "2020-10-12T08:03:15.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T05:58:11.000Z" + }, + "end": { + "$date": "2020-10-12T08:03:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "56e61c75-670e-4f36-995d-a1e767bd128a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T16:31:47.000Z" + }, + "end": { + "$date": "2020-10-12T17:27:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T16:31:47.000Z" + }, + "end": { + "$date": "2020-10-12T17:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ce60bc6-21e1-473b-9195-5672a3e0e939", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T19:52:32.000Z" + }, + "end": { + "$date": "2020-10-12T20:27:25.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T19:52:32.000Z" + }, + "end": { + "$date": "2020-10-12T20:27:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "9e0224b9-8805-4f5c-a3fd-f1314a8fa8b9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-12T19:57:06.000Z" + }, + "end": { + "$date": "2020-10-12T19:57:21.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T19:57:06.000Z" + }, + "end": { + "$date": "2020-10-12T19:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "35598d4b-5549-449a-b4c8-13c94cb5fb9d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-12T19:58:36.000Z" + }, + "end": { + "$date": "2020-10-12T22:49:55.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T19:58:36.000Z" + }, + "end": { + "$date": "2020-10-12T22:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "469555e7-16bf-4b47-9e99-85ce8d31974e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-12T20:00:33.000Z" + }, + "end": { + "$date": "2020-10-12T20:50:56.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T20:00:33.000Z" + }, + "end": { + "$date": "2020-10-12T20:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7b20dfe1-d590-408d-92f3-33f302bc94bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-12T21:03:18.000Z" + }, + "end": { + "$date": "2020-10-13T00:50:32.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T21:03:18.000Z" + }, + "end": { + "$date": "2020-10-13T00:50:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11a1988a-7f72-4b08-9f94-8c583bd890ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T21:20:59.000Z" + }, + "end": { + "$date": "2020-10-12T21:22:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T21:20:59.000Z" + }, + "end": { + "$date": "2020-10-12T21:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b021ade0-3a08-4be3-a0d2-c296d2b6919c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T21:22:49.000Z" + }, + "end": { + "$date": "2020-10-12T21:24:10.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T21:22:49.000Z" + }, + "end": { + "$date": "2020-10-12T21:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3993486f-70c9-462f-baab-436144b0a35e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T21:24:24.000Z" + }, + "end": { + "$date": "2020-10-12T22:03:03.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T21:24:24.000Z" + }, + "end": { + "$date": "2020-10-12T22:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "46fd650c-401e-443e-ad54-0d370602a6b4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-12T21:37:53.000Z" + }, + "end": { + "$date": "2020-10-12T22:16:39.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T21:37:53.000Z" + }, + "end": { + "$date": "2020-10-12T22:16:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "89897c74-f8bf-481f-8c30-bf591653b2c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T00:04:32.000Z" + }, + "end": { + "$date": "2020-10-13T01:20:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T00:04:32.000Z" + }, + "end": { + "$date": "2020-10-13T01:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "44dee2b1-a58d-4e5a-9ce7-6b60ec33485a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-12T22:36:33.000Z" + }, + "end": { + "$date": "2020-10-13T00:31:10.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T22:36:33.000Z" + }, + "end": { + "$date": "2020-10-13T00:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a944b47-41c0-4c87-acdd-58004bb6bf9a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-12T22:46:58.000Z" + }, + "end": { + "$date": "2020-10-12T23:20:36.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T22:46:58.000Z" + }, + "end": { + "$date": "2020-10-12T23:20:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0788dbc7-aec4-4682-872d-a6d965789591", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-12T23:46:46.000Z" + }, + "end": { + "$date": "2020-10-13T00:26:36.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-12T23:46:46.000Z" + }, + "end": { + "$date": "2020-10-13T00:26:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6dc578a6-54e0-441e-9652-c5f73eb6fe14", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-13T00:03:55.000Z" + }, + "end": { + "$date": "2020-10-13T00:20:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T00:03:55.000Z" + }, + "end": { + "$date": "2020-10-13T00:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af3959ad-46e6-43d3-ab85-667135d63049", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-13T00:56:22.000Z" + }, + "end": { + "$date": "2020-10-13T01:33:11.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T00:56:22.000Z" + }, + "end": { + "$date": "2020-10-13T01:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "356c2f0b-8698-4ee1-98cd-b2b5f626ec7e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-13T00:53:02.000Z" + }, + "end": { + "$date": "2020-10-13T04:13:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T00:53:02.000Z" + }, + "end": { + "$date": "2020-10-13T04:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d939a0b-e054-42fb-850a-320c684c4309", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-13T00:56:53.000Z" + }, + "end": { + "$date": "2020-10-13T01:32:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T00:56:53.000Z" + }, + "end": { + "$date": "2020-10-13T01:32:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7b0f0f14-83e3-4e95-b4bb-7db8c0a17299", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T01:21:19.000Z" + }, + "end": { + "$date": "2020-10-13T02:16:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T01:21:19.000Z" + }, + "end": { + "$date": "2020-10-13T02:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cdec9ed-fe88-45fa-b4b3-9b520677151d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-13T02:33:47.000Z" + }, + "end": { + "$date": "2020-10-13T03:09:12.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T02:33:47.000Z" + }, + "end": { + "$date": "2020-10-13T03:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6569ee8a-2565-45c4-915c-7e1f48a78ee3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T02:17:57.000Z" + }, + "end": { + "$date": "2020-10-13T02:32:18.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T02:17:57.000Z" + }, + "end": { + "$date": "2020-10-13T02:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8e92b489-7568-44f8-a361-ac43ee0ccc69", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-13T02:25:28.000Z" + }, + "end": { + "$date": "2020-10-13T03:00:25.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T02:25:28.000Z" + }, + "end": { + "$date": "2020-10-13T03:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8ba15e5b-3708-486d-8b0e-062b4c0a4d00", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T02:34:53.000Z" + }, + "end": { + "$date": "2020-10-13T04:24:11.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T02:34:53.000Z" + }, + "end": { + "$date": "2020-10-13T04:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "093e0b42-6ba9-49e4-84ff-a6a536457992", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-13T03:09:46.000Z" + }, + "end": { + "$date": "2020-10-13T03:48:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T03:09:46.000Z" + }, + "end": { + "$date": "2020-10-13T03:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "346d1aeb-0cfe-4c99-9c70-8b7c5abce0b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-13T04:18:52.000Z" + }, + "end": { + "$date": "2020-10-13T04:32:00.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T04:18:52.000Z" + }, + "end": { + "$date": "2020-10-13T04:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "abe043b8-c6cf-4115-aea9-f5a8063b6d6d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T04:26:21.000Z" + }, + "end": { + "$date": "2020-10-13T04:31:36.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T04:26:21.000Z" + }, + "end": { + "$date": "2020-10-13T04:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6524b4ee-5f0b-498c-b4f1-d17b6e8e3673", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-13T04:39:32.000Z" + }, + "end": { + "$date": "2020-10-13T04:48:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T04:39:32.000Z" + }, + "end": { + "$date": "2020-10-13T04:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "96577e2b-5ba1-48ef-86af-8aa10670b514", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-13T05:19:25.000Z" + }, + "end": { + "$date": "2020-10-13T07:36:36.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-13T05:19:25.000Z" + }, + "end": { + "$date": "2020-10-13T07:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6991c1cf-6e9f-4d9a-8dcd-f66194bf1a9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-13T13:52:31.000Z" + }, + "end": { + "$date": "2020-10-13T14:31:59.000Z" + }, + "events": [ + { + "uuid": "23ca256d-7932-492f-8711-27dddcbbc8af", + "start": { + "$date": "2020-10-13T13:52:31.000Z" + }, + "end": { + "$date": "2020-10-13T14:31:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "dd351f62-6dca-44d2-8b3b-60f1f17814e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-13T16:35:51.000Z" + }, + "end": { + "$date": "2020-10-13T17:34:29.000Z" + }, + "events": [ + { + "uuid": "28e479e7-c8a5-483e-b045-1425dfbde34e", + "start": { + "$date": "2020-10-13T16:35:51.000Z" + }, + "end": { + "$date": "2020-10-13T17:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d5b338de-b922-4948-bae3-e853da4365e1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-13T19:30:13.000Z" + }, + "end": { + "$date": "2020-10-13T20:50:38.000Z" + }, + "events": [ + { + "uuid": "dba89b9c-28e1-46e7-b434-52d581bf2a32", + "start": { + "$date": "2020-10-13T19:30:13.000Z" + }, + "end": { + "$date": "2020-10-13T20:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "081a50ff-3b5e-4b80-beb3-b0e3c01fa3f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T21:17:19.000Z" + }, + "end": { + "$date": "2020-10-13T21:18:18.000Z" + }, + "events": [ + { + "uuid": "b740622f-ddf8-49c0-91ff-5e6aa7c598d3", + "start": { + "$date": "2020-10-13T21:17:19.000Z" + }, + "end": { + "$date": "2020-10-13T21:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7ba4be38-9421-471c-9a39-8dd0a030921c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T21:19:04.000Z" + }, + "end": { + "$date": "2020-10-13T21:35:09.000Z" + }, + "events": [ + { + "uuid": "d1feae34-01dc-478a-9e91-3e609d56eab0", + "start": { + "$date": "2020-10-13T21:19:04.000Z" + }, + "end": { + "$date": "2020-10-13T21:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "36eb1b83-591d-4c26-befc-9a6104f4381a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T21:37:05.000Z" + }, + "end": { + "$date": "2020-10-13T22:29:40.000Z" + }, + "events": [ + { + "uuid": "cf5a3fc9-e291-413f-9295-bf83f0e9333a", + "start": { + "$date": "2020-10-13T21:37:05.000Z" + }, + "end": { + "$date": "2020-10-13T22:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9ba4e282-bb6c-458c-b57e-c299a43a0310", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-13T22:03:15.000Z" + }, + "end": { + "$date": "2020-10-13T22:25:45.000Z" + }, + "events": [ + { + "uuid": "ddd6299f-f0cc-4256-a5f3-d32a62c2085f", + "start": { + "$date": "2020-10-13T22:03:15.000Z" + }, + "end": { + "$date": "2020-10-13T22:25:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "8470c0a1-6b7d-4d54-89e4-757c7fcad90d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-13T22:41:12.000Z" + }, + "end": { + "$date": "2020-10-13T22:57:21.000Z" + }, + "events": [ + { + "uuid": "7e56a376-148d-457e-be31-25f5e87f1c37", + "start": { + "$date": "2020-10-13T22:41:12.000Z" + }, + "end": { + "$date": "2020-10-13T22:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "df5f0325-8ee0-4fc9-826b-f4f319fe2d5a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-13T23:01:43.000Z" + }, + "end": { + "$date": "2020-10-14T00:03:25.000Z" + }, + "events": [ + { + "uuid": "29e4b78c-b371-4eec-b39f-3e3025251d44", + "start": { + "$date": "2020-10-13T23:01:43.000Z" + }, + "end": { + "$date": "2020-10-14T00:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d4f28709-1ef4-41ee-a48d-ae0e232f6ad2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T00:10:09.000Z" + }, + "end": { + "$date": "2020-10-14T00:20:29.000Z" + }, + "events": [ + { + "uuid": "99ed1896-77a7-45dd-a8f2-33825ae3220d", + "start": { + "$date": "2020-10-14T00:10:09.000Z" + }, + "end": { + "$date": "2020-10-14T00:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "024d220d-1d7d-49a6-8a2f-3cb7f2fb60d4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-14T00:03:36.000Z" + }, + "end": { + "$date": "2020-10-14T00:08:27.000Z" + }, + "events": [ + { + "uuid": "99084247-b013-42c1-9517-4f16b2130990", + "start": { + "$date": "2020-10-14T00:03:36.000Z" + }, + "end": { + "$date": "2020-10-14T00:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "34a8e257-34f8-4efc-b613-5ca6b1faee11", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T00:20:55.000Z" + }, + "end": { + "$date": "2020-10-14T00:39:00.000Z" + }, + "events": [ + { + "uuid": "3a7124f7-74f0-492e-b06e-2625ab9e44dd", + "start": { + "$date": "2020-10-14T00:20:55.000Z" + }, + "end": { + "$date": "2020-10-14T00:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d579984d-5840-4e0d-bd8d-a8ea757214a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T00:56:27.000Z" + }, + "end": { + "$date": "2020-10-14T02:24:29.000Z" + }, + "events": [ + { + "uuid": "d1ddca99-9359-4fdb-8144-d894d17de274", + "start": { + "$date": "2020-10-14T00:56:27.000Z" + }, + "end": { + "$date": "2020-10-14T01:38:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97625545-ad70-417a-8fba-600756062272", + "start": { + "$date": "2020-10-14T01:38:27.000Z" + }, + "end": { + "$date": "2020-10-14T01:43:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "813f476a-dc1c-45f9-a4c8-a94006e1f07c", + "start": { + "$date": "2020-10-14T01:43:27.000Z" + }, + "end": { + "$date": "2020-10-14T01:53:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cff4f9f1-969f-4862-83a1-62994984562a", + "start": { + "$date": "2020-10-14T01:53:27.000Z" + }, + "end": { + "$date": "2020-10-14T02:20:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "40e9a980-3fc3-4491-a998-405e1a2f88a2", + "start": { + "$date": "2020-10-14T02:20:27.000Z" + }, + "end": { + "$date": "2020-10-14T02:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2dad2ba7-f2ae-4199-86c2-dab2f7b5bf00", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-14T01:03:27.000Z" + }, + "end": { + "$date": "2020-10-14T02:07:41.000Z" + }, + "events": [ + { + "uuid": "be3f8fcf-fc16-48b6-9a83-f52241abb6e1", + "start": { + "$date": "2020-10-14T01:03:27.000Z" + }, + "end": { + "$date": "2020-10-14T02:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0ce20da7-7305-4517-b422-e5cc457eedfe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-14T01:50:48.000Z" + }, + "end": { + "$date": "2020-10-14T03:51:23.000Z" + }, + "events": [ + { + "uuid": "a2c7f7f0-cb8f-4e75-bd4c-837b90d17aa6", + "start": { + "$date": "2020-10-14T01:50:48.000Z" + }, + "end": { + "$date": "2020-10-14T03:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "25420a80-a46b-41ae-b498-3e70212810f0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-14T02:20:42.000Z" + }, + "end": { + "$date": "2020-10-14T02:44:11.000Z" + }, + "events": [ + { + "uuid": "7104178a-86c9-4ec9-a4c4-9772e5345383", + "start": { + "$date": "2020-10-14T02:20:42.000Z" + }, + "end": { + "$date": "2020-10-14T02:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c138b876-1c04-4872-a237-c779d97ce68b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T02:24:50.000Z" + }, + "end": { + "$date": "2020-10-14T02:52:36.000Z" + }, + "events": [ + { + "uuid": "c8447019-12bb-45d7-890e-03852c12a4ae", + "start": { + "$date": "2020-10-14T02:24:50.000Z" + }, + "end": { + "$date": "2020-10-14T02:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b3984f1f-e200-43d2-8fe1-7b04f74bba79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-14T02:59:17.000Z" + }, + "end": { + "$date": "2020-10-14T03:38:56.000Z" + }, + "events": [ + { + "uuid": "59b05f5f-e5cc-4413-9435-5cb847007ee1", + "start": { + "$date": "2020-10-14T02:59:17.000Z" + }, + "end": { + "$date": "2020-10-14T03:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3665461b-eadc-45dd-b166-8f8ddf2c12ed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-14T03:44:06.000Z" + }, + "end": { + "$date": "2020-10-14T04:49:47.000Z" + }, + "events": [ + { + "uuid": "6e805c91-0863-4284-965b-3c8d301636c1", + "start": { + "$date": "2020-10-14T03:44:06.000Z" + }, + "end": { + "$date": "2020-10-14T04:49:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2bb928b3-fd67-45bb-b6a6-c2a9e0053045", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T03:54:52.000Z" + }, + "end": { + "$date": "2020-10-14T03:58:02.000Z" + }, + "events": [ + { + "uuid": "ba2b811a-100c-4692-8bdf-ac3c24ab1d79", + "start": { + "$date": "2020-10-14T03:54:52.000Z" + }, + "end": { + "$date": "2020-10-14T03:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "ec8aa272-0a60-4f6e-ba4c-67b4f47f3095", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-14T04:58:14.000Z" + }, + "end": { + "$date": "2020-10-14T06:32:43.000Z" + }, + "events": [ + { + "uuid": "48df0186-5b8e-4600-97f2-b9e3a080c7e1", + "start": { + "$date": "2020-10-14T04:58:14.000Z" + }, + "end": { + "$date": "2020-10-14T06:32:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bcbcdf39-a18d-4f90-a5f7-88d037f5056f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-14T05:36:07.000Z" + }, + "end": { + "$date": "2020-10-14T05:40:48.000Z" + }, + "events": [ + { + "uuid": "6542db59-e2ef-4c24-a167-4ab2d579b0c7", + "start": { + "$date": "2020-10-14T05:36:07.000Z" + }, + "end": { + "$date": "2020-10-14T05:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d0b22a8f-ffd2-4b91-a73e-d1e4f6eb9008", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-14T14:39:07.000Z" + }, + "end": { + "$date": "2020-10-14T14:40:25.000Z" + }, + "events": [ + { + "uuid": "6731abe5-f7cb-41eb-963e-55dc4b264161", + "start": { + "$date": "2020-10-14T14:39:07.000Z" + }, + "end": { + "$date": "2020-10-14T14:40:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "330e5e77-f34b-41a2-89f7-53dfb900f7ec", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-14T14:40:38.000Z" + }, + "end": { + "$date": "2020-10-14T14:43:45.000Z" + }, + "events": [ + { + "uuid": "ec792f43-fa61-43b8-9560-988af1bfcba3", + "start": { + "$date": "2020-10-14T14:40:38.000Z" + }, + "end": { + "$date": "2020-10-14T14:43:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ea2c56cb-7d3d-48f6-9f52-e764a9e12fdd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-14T14:44:13.000Z" + }, + "end": { + "$date": "2020-10-14T17:04:43.000Z" + }, + "events": [ + { + "uuid": "a9892428-6721-4402-9cf8-972108f132ff", + "start": { + "$date": "2020-10-14T14:44:13.000Z" + }, + "end": { + "$date": "2020-10-14T17:04:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "4b804cd3-9821-44f0-bb6b-cd54c706995d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-14T17:06:33.000Z" + }, + "end": { + "$date": "2020-10-14T17:26:59.000Z" + }, + "events": [ + { + "uuid": "e16c6d24-6458-4e5c-bcb6-045ea8ea381d", + "start": { + "$date": "2020-10-14T17:06:33.000Z" + }, + "end": { + "$date": "2020-10-14T17:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "2b84402d-5e23-427a-9e20-4c05cf2acd81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-14T19:41:01.000Z" + }, + "end": { + "$date": "2020-10-14T19:44:16.000Z" + }, + "events": [ + { + "uuid": "9cbd8df4-7e71-49f5-aa01-e279f6906163", + "start": { + "$date": "2020-10-14T19:41:01.000Z" + }, + "end": { + "$date": "2020-10-14T19:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c1f27f12-a2de-4643-b2d8-c13f5d7b7dd9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T21:19:28.000Z" + }, + "end": { + "$date": "2020-10-14T21:38:06.000Z" + }, + "events": [ + { + "uuid": "c42e01c1-6384-4694-9ca4-e9764486484e", + "start": { + "$date": "2020-10-14T21:19:28.000Z" + }, + "end": { + "$date": "2020-10-14T21:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "beecd677-88f9-43f0-9262-1681e3ce2b7b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T21:56:10.000Z" + }, + "end": { + "$date": "2020-10-14T22:38:39.000Z" + }, + "events": [ + { + "uuid": "b5d1b01f-6be2-40bd-8ad3-13274565bc76", + "start": { + "$date": "2020-10-14T21:56:10.000Z" + }, + "end": { + "$date": "2020-10-14T22:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af63dd9e-624e-4afd-8d96-665acf81e6e6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-14T22:21:01.000Z" + }, + "end": { + "$date": "2020-10-14T22:21:08.000Z" + }, + "events": [ + { + "uuid": "bd3273b5-c488-46ae-a527-eee11d85e802", + "start": { + "$date": "2020-10-14T22:21:01.000Z" + }, + "end": { + "$date": "2020-10-14T22:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "794be415-3137-4072-93b0-4cda941e8372", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-14T22:58:04.000Z" + }, + "end": { + "$date": "2020-10-14T23:35:08.000Z" + }, + "events": [ + { + "uuid": "4e9e6cad-7ebf-40c4-af53-28845ad021da", + "start": { + "$date": "2020-10-14T22:58:04.000Z" + }, + "end": { + "$date": "2020-10-14T23:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59962565-de67-417a-9681-35fe488fb1fc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-14T22:23:24.000Z" + }, + "end": { + "$date": "2020-10-14T22:56:32.000Z" + }, + "events": [ + { + "uuid": "fa7a8882-efcd-4168-95b2-f17d41e925f2", + "start": { + "$date": "2020-10-14T22:23:24.000Z" + }, + "end": { + "$date": "2020-10-14T22:56:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5968dee2-d2db-480c-bda8-b0c4ff161a88", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-14T22:57:26.000Z" + }, + "end": { + "$date": "2020-10-14T23:35:10.000Z" + }, + "events": [ + { + "uuid": "00525c21-8805-4997-add3-72b07805cca4", + "start": { + "$date": "2020-10-14T22:57:26.000Z" + }, + "end": { + "$date": "2020-10-14T23:35:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "36acd9ba-aaed-4dd2-9fbc-e12d5b23cdce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-14T23:17:54.000Z" + }, + "end": { + "$date": "2020-10-14T23:19:49.000Z" + }, + "events": [ + { + "uuid": "8c50571c-ae3a-43c3-bdb8-eae486c81d30", + "start": { + "$date": "2020-10-14T23:17:54.000Z" + }, + "end": { + "$date": "2020-10-14T23:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0f7334e4-bd4b-4843-8d9a-e2fa2d091eed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-14T23:20:09.000Z" + }, + "end": { + "$date": "2020-10-15T02:23:27.000Z" + }, + "events": [ + { + "uuid": "79facb52-2b09-45ca-a27f-af68a68e7316", + "start": { + "$date": "2020-10-14T23:20:09.000Z" + }, + "end": { + "$date": "2020-10-14T23:56:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "482bcb0a-c7e5-4328-bbd5-9a1f201404e1", + "start": { + "$date": "2020-10-14T23:56:09.000Z" + }, + "end": { + "$date": "2020-10-15T00:00:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a26031c1-252e-45b0-9418-6843ab13f2b9", + "start": { + "$date": "2020-10-15T00:00:09.000Z" + }, + "end": { + "$date": "2020-10-15T01:39:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f40de8a-721d-4eed-812c-5cb130d033fa", + "start": { + "$date": "2020-10-15T01:39:09.000Z" + }, + "end": { + "$date": "2020-10-15T01:44:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0130ae8e-163e-4b75-9fea-c5d0c0ae2956", + "start": { + "$date": "2020-10-15T01:44:09.000Z" + }, + "end": { + "$date": "2020-10-15T02:23:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "87c1e358-db20-44d4-86aa-c48a1fd55bb3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T23:21:40.000Z" + }, + "end": { + "$date": "2020-10-14T23:24:08.000Z" + }, + "events": [ + { + "uuid": "5d9108a7-23b5-488b-9513-f91695a262b4", + "start": { + "$date": "2020-10-14T23:21:40.000Z" + }, + "end": { + "$date": "2020-10-14T23:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cd927c76-defe-44a6-bc6c-1dff6422322a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T23:24:20.000Z" + }, + "end": { + "$date": "2020-10-14T23:36:24.000Z" + }, + "events": [ + { + "uuid": "baef0c1d-36c0-4a5a-a639-fd3afcbe8071", + "start": { + "$date": "2020-10-14T23:24:20.000Z" + }, + "end": { + "$date": "2020-10-14T23:36:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfdb8c9d-68fb-4457-a55e-cb4347116970", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-14T23:38:13.000Z" + }, + "end": { + "$date": "2020-10-15T00:05:24.000Z" + }, + "events": [ + { + "uuid": "43ca8724-85d3-46bf-93d9-64fe1b7aaf5d", + "start": { + "$date": "2020-10-14T23:38:13.000Z" + }, + "end": { + "$date": "2020-10-15T00:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac859969-37c9-41ea-b400-ce8547f51d06", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-14T23:37:39.000Z" + }, + "end": { + "$date": "2020-10-15T00:05:15.000Z" + }, + "events": [ + { + "uuid": "76039fb2-4eea-4874-badd-5e3750fce1da", + "start": { + "$date": "2020-10-14T23:37:39.000Z" + }, + "end": { + "$date": "2020-10-15T00:05:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8d0e102a-7e19-4e13-8c55-fdb4a59d780e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-14T23:43:38.000Z" + }, + "end": { + "$date": "2020-10-15T00:22:01.000Z" + }, + "events": [ + { + "uuid": "5df706c8-db57-42a9-822c-988222260ea5", + "start": { + "$date": "2020-10-14T23:43:38.000Z" + }, + "end": { + "$date": "2020-10-15T00:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6eeecde3-9087-4ef8-a6a3-0b8caddce50d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-14T23:50:54.000Z" + }, + "end": { + "$date": "2020-10-15T00:23:19.000Z" + }, + "events": [ + { + "uuid": "98ece0d8-ad32-42cb-b7e8-0daf86c0a1ee", + "start": { + "$date": "2020-10-14T23:50:54.000Z" + }, + "end": { + "$date": "2020-10-15T00:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "46e60496-346e-4cf2-9ad7-eb8ae8e9874d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-14T23:58:28.000Z" + }, + "end": { + "$date": "2020-10-15T01:55:48.000Z" + }, + "events": [ + { + "uuid": "ac1958d0-a5ae-4f4b-85ae-e28bf04d9a12", + "start": { + "$date": "2020-10-14T23:58:28.000Z" + }, + "end": { + "$date": "2020-10-15T00:42:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0bfc20a6-cc43-4e6b-bb5f-995adb8083f5", + "start": { + "$date": "2020-10-15T00:42:28.000Z" + }, + "end": { + "$date": "2020-10-15T00:47:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d0192e8-2553-48d6-ae6c-12002d96c056", + "start": { + "$date": "2020-10-15T00:47:28.000Z" + }, + "end": { + "$date": "2020-10-15T00:57:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c79a9163-7c4b-4a50-b31f-cf9db84a2839", + "start": { + "$date": "2020-10-15T00:57:28.000Z" + }, + "end": { + "$date": "2020-10-15T01:14:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "89dec968-38c5-4ae5-8d3d-e493da79bed2", + "start": { + "$date": "2020-10-15T01:14:28.000Z" + }, + "end": { + "$date": "2020-10-15T01:24:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "775ee93c-a9c9-415c-b80f-b6b96a05a86e", + "start": { + "$date": "2020-10-15T01:24:28.000Z" + }, + "end": { + "$date": "2020-10-15T01:50:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "401483df-12eb-4f64-9f7f-cf129fce2e04", + "start": { + "$date": "2020-10-15T01:50:28.000Z" + }, + "end": { + "$date": "2020-10-15T01:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64a24987-b249-4f04-8da1-3f905807acbd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-15T00:08:13.000Z" + }, + "end": { + "$date": "2020-10-15T00:25:59.000Z" + }, + "events": [ + { + "uuid": "3069eb46-af0f-4407-bce8-425920f6a482", + "start": { + "$date": "2020-10-15T00:08:13.000Z" + }, + "end": { + "$date": "2020-10-15T00:25:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbdd23a4-28dc-4001-9bab-7c5205b61efe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-15T00:08:10.000Z" + }, + "end": { + "$date": "2020-10-15T00:26:02.000Z" + }, + "events": [ + { + "uuid": "9cf1c689-7c12-4bd0-a4c7-32738b2168a2", + "start": { + "$date": "2020-10-15T00:08:10.000Z" + }, + "end": { + "$date": "2020-10-15T00:26:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1359d6c-867b-4a15-8268-d342b3a7e66a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-15T00:28:34.000Z" + }, + "end": { + "$date": "2020-10-15T00:45:20.000Z" + }, + "events": [ + { + "uuid": "32160339-fda0-4090-b102-8ff847620d49", + "start": { + "$date": "2020-10-15T00:28:34.000Z" + }, + "end": { + "$date": "2020-10-15T00:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "231ecf89-1042-47e6-ba9c-dad480486c42", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-15T00:28:30.000Z" + }, + "end": { + "$date": "2020-10-15T00:45:22.000Z" + }, + "events": [ + { + "uuid": "5f9277c7-8608-4942-ab6a-a7f9ad587e51", + "start": { + "$date": "2020-10-15T00:28:30.000Z" + }, + "end": { + "$date": "2020-10-15T00:45:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "75071964-5263-4916-8fe9-5d6bdeacbbc4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-15T01:58:15.000Z" + }, + "end": { + "$date": "2020-10-15T04:28:02.000Z" + }, + "events": [ + { + "uuid": "5dc4bf99-6b71-4fa6-8d2a-0df9621376b1", + "start": { + "$date": "2020-10-15T01:58:15.000Z" + }, + "end": { + "$date": "2020-10-15T04:28:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "06c89c3b-3a30-4d73-bb9f-30158c88391f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-15T02:00:18.000Z" + }, + "end": { + "$date": "2020-10-15T04:28:08.000Z" + }, + "events": [ + { + "uuid": "8b6efec9-fefd-433b-a584-f7e54f69aedd", + "start": { + "$date": "2020-10-15T02:00:18.000Z" + }, + "end": { + "$date": "2020-10-15T04:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30a277f3-6db7-42b8-b33c-38d0e57e4613", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-15T02:14:29.000Z" + }, + "end": { + "$date": "2020-10-15T02:50:41.000Z" + }, + "events": [ + { + "uuid": "54f110f1-4110-47d2-bf0e-1d57a9e506f3", + "start": { + "$date": "2020-10-15T02:14:29.000Z" + }, + "end": { + "$date": "2020-10-15T02:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "de5b625b-6f68-4bb1-95a1-4f1157176dd8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-15T02:28:14.000Z" + }, + "end": { + "$date": "2020-10-15T04:04:59.000Z" + }, + "events": [ + { + "uuid": "3113969b-ddd9-4f98-9807-ec962cb5fbd1", + "start": { + "$date": "2020-10-15T02:28:14.000Z" + }, + "end": { + "$date": "2020-10-15T04:04:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "6bff872f-e42a-4984-a156-b2e8f2559c03", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-15T02:31:13.000Z" + }, + "end": { + "$date": "2020-10-15T02:39:58.000Z" + }, + "events": [ + { + "uuid": "34fd6d58-a85b-4373-8529-6e3ea7274002", + "start": { + "$date": "2020-10-15T02:31:13.000Z" + }, + "end": { + "$date": "2020-10-15T02:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04819407-8fe1-46d5-a109-666e1f2bbfae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-15T03:01:06.000Z" + }, + "end": { + "$date": "2020-10-15T03:36:42.000Z" + }, + "events": [ + { + "uuid": "34f6724e-00a7-40a1-abd7-d41544c8c4ae", + "start": { + "$date": "2020-10-15T03:01:06.000Z" + }, + "end": { + "$date": "2020-10-15T03:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a9daad0-0473-42ba-a0dd-c71d1aa3355f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-15T03:36:40.000Z" + }, + "end": { + "$date": "2020-10-15T03:38:11.000Z" + }, + "events": [ + { + "uuid": "906b98c1-2088-4472-840a-7f1b5f582ce2", + "start": { + "$date": "2020-10-15T03:36:40.000Z" + }, + "end": { + "$date": "2020-10-15T03:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b456f2e-a816-450d-885f-78ad13d5256b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-15T03:37:07.000Z" + }, + "end": { + "$date": "2020-10-15T04:13:09.000Z" + }, + "events": [ + { + "uuid": "3b67e7bf-5f7b-4359-a30c-71ecd1b0cb1b", + "start": { + "$date": "2020-10-15T03:37:07.000Z" + }, + "end": { + "$date": "2020-10-15T04:02:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6fa10744-046c-4085-a830-3f75a70a1b41", + "start": { + "$date": "2020-10-15T04:02:07.000Z" + }, + "end": { + "$date": "2020-10-15T04:03:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4993d8f5-af88-47e4-a08a-998fd39fcf14", + "start": { + "$date": "2020-10-15T04:03:07.000Z" + }, + "end": { + "$date": "2020-10-15T04:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ae35599-4854-42ab-b46f-0f5e6505cf72", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-15T03:38:22.000Z" + }, + "end": { + "$date": "2020-10-15T06:09:49.000Z" + }, + "events": [ + { + "uuid": "8d87d9cf-78fd-42dd-97ab-43158fd2ad08", + "start": { + "$date": "2020-10-15T03:38:22.000Z" + }, + "end": { + "$date": "2020-10-15T06:09:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da99fbb8-c0e8-467c-8d6f-97e6c858432d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-15T05:39:49.000Z" + }, + "end": { + "$date": "2020-10-15T06:14:01.000Z" + }, + "events": [ + { + "uuid": "9c188fa1-3094-4c05-b31c-0d5fd9b72220", + "start": { + "$date": "2020-10-15T05:39:49.000Z" + }, + "end": { + "$date": "2020-10-15T06:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec8263b0-d942-4a12-9f7c-4abbb872e1b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-15T06:14:04.000Z" + }, + "end": { + "$date": "2020-10-15T06:39:00.000Z" + }, + "events": [ + { + "uuid": "18472503-8761-4e27-9a03-ae3c60804267", + "start": { + "$date": "2020-10-15T06:14:04.000Z" + }, + "end": { + "$date": "2020-10-15T06:39:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dfb2d71e-d77d-4fa9-856d-e6428d8c3e26", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-15T06:18:56.000Z" + }, + "end": { + "$date": "2020-10-15T06:39:30.000Z" + }, + "events": [ + { + "uuid": "cf55f1d9-272d-484f-af80-f897ced39312", + "start": { + "$date": "2020-10-15T06:18:56.000Z" + }, + "end": { + "$date": "2020-10-15T06:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "c788900a-bd19-41bd-b246-51174b06efee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-15T14:47:49.000Z" + }, + "end": { + "$date": "2020-10-15T14:50:46.000Z" + }, + "events": [ + { + "uuid": "416cc019-9b40-480d-9716-b1084ae13374", + "start": { + "$date": "2020-10-15T14:47:49.000Z" + }, + "end": { + "$date": "2020-10-15T14:50:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "63ea6d71-9e26-4923-a34c-92b4a917d027", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-15T16:11:22.000Z" + }, + "end": { + "$date": "2020-10-15T16:43:33.000Z" + }, + "events": [ + { + "uuid": "d505b775-4cc7-4a86-b3af-849c9b35c25d", + "start": { + "$date": "2020-10-15T16:11:22.000Z" + }, + "end": { + "$date": "2020-10-15T16:43:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "fdea33b1-7587-4193-84c7-994cb58a52eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-15T20:48:30.000Z" + }, + "end": { + "$date": "2020-10-15T21:00:28.000Z" + }, + "events": [ + { + "uuid": "95d63dcc-f83b-4de8-b160-46992e6e37e8", + "start": { + "$date": "2020-10-15T20:48:30.000Z" + }, + "end": { + "$date": "2020-10-15T21:00:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6c2357cb-1fc9-4233-9b45-d35b4d0ac5f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-15T21:38:18.000Z" + }, + "end": { + "$date": "2020-10-15T21:54:57.000Z" + }, + "events": [ + { + "uuid": "eb2d5d74-08e2-4d3c-8e33-1652a65d6fef", + "start": { + "$date": "2020-10-15T21:38:18.000Z" + }, + "end": { + "$date": "2020-10-15T21:54:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "bd899c9b-3ae4-49cc-b639-fb253b5c1511", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-15T21:39:41.000Z" + }, + "end": { + "$date": "2020-10-15T22:54:47.000Z" + }, + "events": [ + { + "uuid": "ed33fec9-488e-4aaa-afbf-1888d6b8198c", + "start": { + "$date": "2020-10-15T21:39:41.000Z" + }, + "end": { + "$date": "2020-10-15T22:54:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f9fdf7a4-645f-4434-b265-060feeb105f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-15T22:24:16.000Z" + }, + "end": { + "$date": "2020-10-15T23:03:51.000Z" + }, + "events": [ + { + "uuid": "2053b559-d18f-437e-abb6-3cda0792f538", + "start": { + "$date": "2020-10-15T22:24:16.000Z" + }, + "end": { + "$date": "2020-10-15T23:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "657ffdbe-ff08-417d-b12f-abd2c459b622", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-15T23:24:16.000Z" + }, + "end": { + "$date": "2020-10-15T23:25:30.000Z" + }, + "events": [ + { + "uuid": "2c3d0621-ddf6-48a4-b486-e312f94e45ec", + "start": { + "$date": "2020-10-15T23:24:16.000Z" + }, + "end": { + "$date": "2020-10-15T23:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "064499af-df1d-4cc4-96ef-702efe24edaa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-15T23:46:59.000Z" + }, + "end": { + "$date": "2020-10-16T00:10:21.000Z" + }, + "events": [ + { + "uuid": "4e2e566a-d1b1-4f64-ac3a-0740b71f0bfd", + "start": { + "$date": "2020-10-15T23:46:59.000Z" + }, + "end": { + "$date": "2020-10-16T00:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0f32ede2-ae1c-4d2c-9c46-4abde40c3565", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-15T23:47:33.000Z" + }, + "end": { + "$date": "2020-10-16T00:17:47.000Z" + }, + "events": [ + { + "uuid": "9344a266-6f3a-411e-9365-610b6d437248", + "start": { + "$date": "2020-10-15T23:47:33.000Z" + }, + "end": { + "$date": "2020-10-16T00:17:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "86c4f2ac-48b0-44e9-b73a-485b8cf27b02", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-15T23:59:51.000Z" + }, + "end": { + "$date": "2020-10-16T00:17:00.000Z" + }, + "events": [ + { + "uuid": "6dcbfce4-b009-4e09-b531-339ed73fd4cb", + "start": { + "$date": "2020-10-15T23:59:51.000Z" + }, + "end": { + "$date": "2020-10-16T00:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d618cb2d-12ca-4617-beb7-2070d9eef143", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-16T00:15:46.000Z" + }, + "end": { + "$date": "2020-10-16T00:37:27.000Z" + }, + "events": [ + { + "uuid": "7643b87e-9b27-4521-8721-cd1d78b59718", + "start": { + "$date": "2020-10-16T00:15:46.000Z" + }, + "end": { + "$date": "2020-10-16T00:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7c1fb7e6-9429-4798-8d41-742a0cf0b0a7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-16T00:47:55.000Z" + }, + "end": { + "$date": "2020-10-16T01:16:01.000Z" + }, + "events": [ + { + "uuid": "a777f783-5b54-43bf-8a8b-55f5c0abad23", + "start": { + "$date": "2020-10-16T00:47:55.000Z" + }, + "end": { + "$date": "2020-10-16T01:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e411e078-8ecb-450c-a5a9-3376dfe574db", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-16T00:48:31.000Z" + }, + "end": { + "$date": "2020-10-16T01:19:20.000Z" + }, + "events": [ + { + "uuid": "4f9e2424-3801-46f6-abe1-96d59596aeea", + "start": { + "$date": "2020-10-16T00:48:31.000Z" + }, + "end": { + "$date": "2020-10-16T01:19:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2a42e31f-666a-4f08-81f4-0ea2c313948e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-16T01:29:33.000Z" + }, + "end": { + "$date": "2020-10-16T04:17:35.000Z" + }, + "events": [ + { + "uuid": "9ea78832-de71-4869-8b01-86dcd2e7557a", + "start": { + "$date": "2020-10-16T01:29:33.000Z" + }, + "end": { + "$date": "2020-10-16T04:17:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ebff2da8-2c45-4e71-9b00-2935aaa59402", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-16T01:43:59.000Z" + }, + "end": { + "$date": "2020-10-16T02:16:42.000Z" + }, + "events": [ + { + "uuid": "d17ffb48-df08-4f45-b78e-a9bada0bae9d", + "start": { + "$date": "2020-10-16T01:43:59.000Z" + }, + "end": { + "$date": "2020-10-16T02:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "684e0ede-b40c-4da4-b9b7-5ba5cf38c6c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T02:15:59.000Z" + }, + "end": { + "$date": "2020-10-16T02:17:44.000Z" + }, + "events": [ + { + "uuid": "96052f3b-a0ec-4226-9683-c988088e2a99", + "start": { + "$date": "2020-10-16T02:15:59.000Z" + }, + "end": { + "$date": "2020-10-16T02:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f01fe7d-73ab-4b7f-9c35-78214269fce6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T02:48:14.000Z" + }, + "end": { + "$date": "2020-10-16T03:22:14.000Z" + }, + "events": [ + { + "uuid": "3ed32915-11cc-4768-be92-64ebf8f4b900", + "start": { + "$date": "2020-10-16T02:48:14.000Z" + }, + "end": { + "$date": "2020-10-16T03:22:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ba10b7c9-380a-4862-a11d-a480dbef092c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-16T02:40:42.000Z" + }, + "end": { + "$date": "2020-10-16T02:46:18.000Z" + }, + "events": [ + { + "uuid": "60eff568-be9f-4274-926f-22bc8dd25590", + "start": { + "$date": "2020-10-16T02:40:42.000Z" + }, + "end": { + "$date": "2020-10-16T02:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6ffeae94-5d3b-4914-81f9-afa0652e3541", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-16T02:48:16.000Z" + }, + "end": { + "$date": "2020-10-16T04:39:54.000Z" + }, + "events": [ + { + "uuid": "051f01c3-758d-413d-ac40-9c9f74f775f3", + "start": { + "$date": "2020-10-16T02:48:16.000Z" + }, + "end": { + "$date": "2020-10-16T04:39:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bb68308e-ef4a-47af-aee7-86b052706ed2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-16T02:49:37.000Z" + }, + "end": { + "$date": "2020-10-16T04:37:58.000Z" + }, + "events": [ + { + "uuid": "835813ba-690d-4cc4-b8f7-7256311c1f5c", + "start": { + "$date": "2020-10-16T02:49:37.000Z" + }, + "end": { + "$date": "2020-10-16T04:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65184d21-f033-451c-b1f9-8f692954aae2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-16T03:13:09.000Z" + }, + "end": { + "$date": "2020-10-16T03:30:34.000Z" + }, + "events": [ + { + "uuid": "df7ebfeb-677b-4cbf-96c3-72439c32b80d", + "start": { + "$date": "2020-10-16T03:13:09.000Z" + }, + "end": { + "$date": "2020-10-16T03:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3cb9203-7eff-48da-93c4-19c0b2684d85", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T03:30:35.000Z" + }, + "end": { + "$date": "2020-10-16T04:12:06.000Z" + }, + "events": [ + { + "uuid": "290d333c-30ec-4038-b139-3ea9053a5c1c", + "start": { + "$date": "2020-10-16T03:30:35.000Z" + }, + "end": { + "$date": "2020-10-16T04:12:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dafb709b-87c6-4212-9430-69a02d130bb6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-16T03:30:28.000Z" + }, + "end": { + "$date": "2020-10-16T04:12:09.000Z" + }, + "events": [ + { + "uuid": "957ed795-cae0-4cc1-8d59-c87d08bfd525", + "start": { + "$date": "2020-10-16T03:30:28.000Z" + }, + "end": { + "$date": "2020-10-16T04:12:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d7c73e5-b65c-4624-b8e3-006f9e23cff1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-16T03:38:01.000Z" + }, + "end": { + "$date": "2020-10-16T04:01:26.000Z" + }, + "events": [ + { + "uuid": "9aec2c45-9d57-41a3-8d0a-b3bc11a0f95f", + "start": { + "$date": "2020-10-16T03:38:01.000Z" + }, + "end": { + "$date": "2020-10-16T04:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d43b8f9-d7ae-40ad-8c5f-beb04910ba86", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-16T04:05:01.000Z" + }, + "end": { + "$date": "2020-10-16T04:23:36.000Z" + }, + "events": [ + { + "uuid": "86c2e924-a382-49c9-ab91-b1d1f2c4202e", + "start": { + "$date": "2020-10-16T04:05:01.000Z" + }, + "end": { + "$date": "2020-10-16T04:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f7f0628-12de-476c-9c4b-7c61b2df223b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T04:12:21.000Z" + }, + "end": { + "$date": "2020-10-16T04:13:27.000Z" + }, + "events": [ + { + "uuid": "4820f813-d077-454e-add9-338d9fdd8929", + "start": { + "$date": "2020-10-16T04:12:21.000Z" + }, + "end": { + "$date": "2020-10-16T04:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f9fd943-44f7-47f9-affe-0584eb67bec5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-16T04:13:27.000Z" + }, + "end": { + "$date": "2020-10-16T04:15:31.000Z" + }, + "events": [ + { + "uuid": "6a394b67-0974-4dfa-8e25-639cb856bed7", + "start": { + "$date": "2020-10-16T04:13:27.000Z" + }, + "end": { + "$date": "2020-10-16T04:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b3311a5-3987-4500-9668-080023767623", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-16T04:27:58.000Z" + }, + "end": { + "$date": "2020-10-16T04:46:53.000Z" + }, + "events": [ + { + "uuid": "a1b09997-fc60-4647-8c5e-0d32e1ad736b", + "start": { + "$date": "2020-10-16T04:27:58.000Z" + }, + "end": { + "$date": "2020-10-16T04:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c875ffe5-4acf-4a79-82dd-c38282054144", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-16T04:25:47.000Z" + }, + "end": { + "$date": "2020-10-16T05:06:38.000Z" + }, + "events": [ + { + "uuid": "18d06764-af57-40b6-88fc-23a0dca26ac1", + "start": { + "$date": "2020-10-16T04:25:47.000Z" + }, + "end": { + "$date": "2020-10-16T05:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9ba72edc-4255-40b6-b868-f2617e5b4ec3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-16T04:39:50.000Z" + }, + "end": { + "$date": "2020-10-16T06:59:43.000Z" + }, + "events": [ + { + "uuid": "a1fa593f-5d1a-4503-b0e8-d59075698d9d", + "start": { + "$date": "2020-10-16T04:39:50.000Z" + }, + "end": { + "$date": "2020-10-16T06:59:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b2be7d5-6007-45fb-b3af-24a0f21c5173", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-16T05:12:51.000Z" + }, + "end": { + "$date": "2020-10-16T05:40:57.000Z" + }, + "events": [ + { + "uuid": "7e0d394b-a6c0-4159-a1c2-febba18cacc3", + "start": { + "$date": "2020-10-16T05:12:51.000Z" + }, + "end": { + "$date": "2020-10-16T05:40:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e841b145-82c8-4a16-bb4a-c64857f740ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-16T05:07:10.000Z" + }, + "end": { + "$date": "2020-10-16T05:08:58.000Z" + }, + "events": [ + { + "uuid": "c0bf14b5-447e-4c6c-bf96-702993fc5ceb", + "start": { + "$date": "2020-10-16T05:07:10.000Z" + }, + "end": { + "$date": "2020-10-16T05:08:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ef823fe8-407f-4a30-8b59-2caaee14d0ca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-16T06:10:32.000Z" + }, + "end": { + "$date": "2020-10-16T07:35:04.000Z" + }, + "events": [ + { + "uuid": "b3133002-e525-42b7-9dd7-47d6ac108291", + "start": { + "$date": "2020-10-16T06:10:32.000Z" + }, + "end": { + "$date": "2020-10-16T07:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74a7c481-e22e-44a6-a088-3520237f1b9f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T13:51:10.000Z" + }, + "end": { + "$date": "2020-10-16T14:39:46.000Z" + }, + "events": [ + { + "uuid": "faa661c2-96c7-4728-9a99-e89d6e8aca03", + "start": { + "$date": "2020-10-16T13:51:10.000Z" + }, + "end": { + "$date": "2020-10-16T14:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2734a1c6-d4ff-45c8-9a0a-d4d52f793bbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T15:04:58.000Z" + }, + "end": { + "$date": "2020-10-16T15:30:29.000Z" + }, + "events": [ + { + "uuid": "760f5db7-eac5-4b72-a660-8d84ab57f838", + "start": { + "$date": "2020-10-16T15:04:58.000Z" + }, + "end": { + "$date": "2020-10-16T15:30:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "149306fe-74fc-4df7-9040-7c8f424ce444", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T15:33:04.000Z" + }, + "end": { + "$date": "2020-10-16T15:56:43.000Z" + }, + "events": [ + { + "uuid": "e907eb07-ed8a-4144-b57d-5be14c051192", + "start": { + "$date": "2020-10-16T15:33:04.000Z" + }, + "end": { + "$date": "2020-10-16T15:56:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d65bda8-1981-4f57-a6f9-b949ec3deefc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T16:08:44.000Z" + }, + "end": { + "$date": "2020-10-16T18:47:25.000Z" + }, + "events": [ + { + "uuid": "e22b992c-8606-40b0-ab3d-e110e036e760", + "start": { + "$date": "2020-10-16T16:08:44.000Z" + }, + "end": { + "$date": "2020-10-16T18:02:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d95f271-a0de-41a6-8fa1-60076f0eb27f", + "start": { + "$date": "2020-10-16T18:02:44.000Z" + }, + "end": { + "$date": "2020-10-16T18:20:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6852fd72-d849-4a50-a26a-c0fcef272765", + "start": { + "$date": "2020-10-16T18:20:44.000Z" + }, + "end": { + "$date": "2020-10-16T18:47:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "dba7092d-7043-4d91-bf43-0f7e87ad7c6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-16T16:35:19.000Z" + }, + "end": { + "$date": "2020-10-16T19:52:24.000Z" + }, + "events": [ + { + "uuid": "f5e9ec43-6890-4994-a99e-22f235b599ab", + "start": { + "$date": "2020-10-16T16:35:19.000Z" + }, + "end": { + "$date": "2020-10-16T19:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "ba029332-4f51-4afc-9931-89cc8faf74fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T18:56:39.000Z" + }, + "end": { + "$date": "2020-10-16T18:58:15.000Z" + }, + "events": [ + { + "uuid": "a4ea94ff-0e88-4bb7-8f7f-c5892f34d20b", + "start": { + "$date": "2020-10-16T18:56:39.000Z" + }, + "end": { + "$date": "2020-10-16T18:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "1f3b6453-cbc1-45bd-a619-54d10e61a317", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T20:09:50.000Z" + }, + "end": { + "$date": "2020-10-16T20:36:03.000Z" + }, + "events": [ + { + "uuid": "8b6f5c2e-ea6a-4498-ab82-053286eeb84d", + "start": { + "$date": "2020-10-16T20:09:50.000Z" + }, + "end": { + "$date": "2020-10-16T20:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44f1ff02-6341-42dc-a81b-cea4182e9fdc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T20:58:55.000Z" + }, + "end": { + "$date": "2020-10-16T21:37:51.000Z" + }, + "events": [ + { + "uuid": "c067c92a-36ef-4410-8a02-59d38bf28884", + "start": { + "$date": "2020-10-16T20:58:55.000Z" + }, + "end": { + "$date": "2020-10-16T21:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ced41e28-f033-4e4c-a1fb-097c33ceae18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-16T21:03:17.000Z" + }, + "end": { + "$date": "2020-10-16T21:08:08.000Z" + }, + "events": [ + { + "uuid": "a3f17ff6-7976-435c-a15d-cdd704e442e9", + "start": { + "$date": "2020-10-16T21:03:17.000Z" + }, + "end": { + "$date": "2020-10-16T21:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e9c280a3-5bab-470e-b1ee-a9626e364c55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-16T21:13:58.000Z" + }, + "end": { + "$date": "2020-10-17T01:48:59.000Z" + }, + "events": [ + { + "uuid": "2d7caeb6-618d-455c-8a42-928a5380cedd", + "start": { + "$date": "2020-10-16T21:13:58.000Z" + }, + "end": { + "$date": "2020-10-17T01:48:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "535b47ef-450d-4acf-a634-aa85620805bb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-16T22:02:45.000Z" + }, + "end": { + "$date": "2020-10-16T23:24:37.000Z" + }, + "events": [ + { + "uuid": "b76de52f-82a6-407c-83d1-ff55db6c5fa8", + "start": { + "$date": "2020-10-16T22:02:45.000Z" + }, + "end": { + "$date": "2020-10-16T23:24:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cb1bee9-ba32-40d3-8761-327b398ea974", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-16T22:43:49.000Z" + }, + "end": { + "$date": "2020-10-16T23:05:49.000Z" + }, + "events": [ + { + "uuid": "f05a556f-2b3c-4a7a-865e-f497569ffc5d", + "start": { + "$date": "2020-10-16T22:43:49.000Z" + }, + "end": { + "$date": "2020-10-16T23:05:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "1e98a9a8-a42d-47c1-b24b-2a3da2350214", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T22:47:59.000Z" + }, + "end": { + "$date": "2020-10-16T23:04:30.000Z" + }, + "events": [ + { + "uuid": "41eabf98-ce44-4cb4-9ab1-0f885547ac62", + "start": { + "$date": "2020-10-16T22:47:59.000Z" + }, + "end": { + "$date": "2020-10-16T23:04:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10d11a8e-e732-4676-8eec-944ad7f35253", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-16T23:20:35.000Z" + }, + "end": { + "$date": "2020-10-16T23:33:46.000Z" + }, + "events": [ + { + "uuid": "bab698b7-d6ca-4102-9aed-252402ecfc31", + "start": { + "$date": "2020-10-16T23:20:35.000Z" + }, + "end": { + "$date": "2020-10-16T23:33:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7603535-38aa-4575-93bc-610c66a2b4c0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-16T23:08:58.000Z" + }, + "end": { + "$date": "2020-10-16T23:40:40.000Z" + }, + "events": [ + { + "uuid": "037b6b72-f03e-4db1-af5e-b9a3abcd4d5a", + "start": { + "$date": "2020-10-16T23:08:58.000Z" + }, + "end": { + "$date": "2020-10-16T23:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbeb4c45-88fd-4bf2-b3eb-27ead81598ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-16T23:09:00.000Z" + }, + "end": { + "$date": "2020-10-16T23:40:41.000Z" + }, + "events": [ + { + "uuid": "f91b2fac-564e-41e0-a133-756b1eb98584", + "start": { + "$date": "2020-10-16T23:09:00.000Z" + }, + "end": { + "$date": "2020-10-16T23:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "7abde27a-5f22-47dc-b7a8-ffbf3c20937f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-16T23:25:02.000Z" + }, + "end": { + "$date": "2020-10-17T00:15:39.000Z" + }, + "events": [ + { + "uuid": "7374d03a-918d-4eb3-9a13-2f3587ed4960", + "start": { + "$date": "2020-10-16T23:25:02.000Z" + }, + "end": { + "$date": "2020-10-17T00:15:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8782df8d-1c9f-4649-a9fc-ea1d86ec9229", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-17T00:03:01.000Z" + }, + "end": { + "$date": "2020-10-17T01:06:36.000Z" + }, + "events": [ + { + "uuid": "5db84f0e-886e-4c27-a197-b3707523f1ad", + "start": { + "$date": "2020-10-17T00:03:01.000Z" + }, + "end": { + "$date": "2020-10-17T01:02:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "65f013f8-1350-4af5-84ed-0e1c1d6e644b", + "start": { + "$date": "2020-10-17T01:02:01.000Z" + }, + "end": { + "$date": "2020-10-17T01:06:36.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "619764db-3e91-4202-8a17-debc4598653d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-17T00:48:24.000Z" + }, + "end": { + "$date": "2020-10-17T01:35:36.000Z" + }, + "events": [ + { + "uuid": "c8804301-e824-4cc9-9bc2-5c18fd107def", + "start": { + "$date": "2020-10-17T00:48:24.000Z" + }, + "end": { + "$date": "2020-10-17T01:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "5e8601e4-0f7c-4381-a71c-932efcde5205", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T00:58:37.000Z" + }, + "end": { + "$date": "2020-10-17T01:05:53.000Z" + }, + "events": [ + { + "uuid": "15c826b9-b5e4-4522-be68-9823914a24a9", + "start": { + "$date": "2020-10-17T00:58:37.000Z" + }, + "end": { + "$date": "2020-10-17T01:05:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f2374f58-e4c0-4ee6-8e50-009c427a7ff4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-17T02:05:43.000Z" + }, + "end": { + "$date": "2020-10-17T06:04:51.000Z" + }, + "events": [ + { + "uuid": "c99ae664-91db-4a87-b344-441bb3b4c2f5", + "start": { + "$date": "2020-10-17T02:05:43.000Z" + }, + "end": { + "$date": "2020-10-17T06:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6307b6c5-2677-48ee-849f-37cd7f885a67", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T04:15:59.000Z" + }, + "end": { + "$date": "2020-10-17T04:41:36.000Z" + }, + "events": [ + { + "uuid": "31a2dfaa-d2ae-4c28-8414-73aa1e833cee", + "start": { + "$date": "2020-10-17T04:15:59.000Z" + }, + "end": { + "$date": "2020-10-17T04:58:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "96b5d950-a0b4-4d0a-95eb-c9fc8f9d205d", + "start": { + "$date": "2020-10-17T04:58:59.000Z" + }, + "end": { + "$date": "2020-10-17T05:35:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3020a2fc-30de-4714-ab72-9201f04acda9", + "start": { + "$date": "2020-10-17T05:35:59.000Z" + }, + "end": { + "$date": "2020-10-17T05:37:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09624dae-7c4d-48b4-ad41-2bba24f93e2f", + "start": { + "$date": "2020-10-17T05:37:59.000Z" + }, + "end": { + "$date": "2020-10-17T05:53:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "71fac0e2-e087-4262-85e1-9d29b200eab8", + "start": { + "$date": "2020-10-17T05:53:59.000Z" + }, + "end": { + "$date": "2020-10-17T05:58:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7077c498-f7a9-4a21-b13a-34992055f6c9", + "start": { + "$date": "2020-10-17T05:58:59.000Z" + }, + "end": { + "$date": "2020-10-17T06:03:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41405ece-64f6-450c-956b-9b57d7566247", + "start": { + "$date": "2020-10-17T06:03:59.000Z" + }, + "end": { + "$date": "2020-10-17T06:07:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d76ae01-4449-4ffd-88fe-019be0df47a5", + "start": { + "$date": "2020-10-17T06:07:59.000Z" + }, + "end": { + "$date": "2020-10-17T06:08:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6fc7158-9185-4f17-a52c-2167b536d060", + "start": { + "$date": "2020-10-17T06:08:59.000Z" + }, + "end": { + "$date": "2020-10-17T06:10:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5c9e929-abe0-4be3-ad89-e920a7d91141", + "start": { + "$date": "2020-10-17T06:10:59.000Z" + }, + "end": { + "$date": "2020-10-17T06:14:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "304639c8-0b72-4bda-8de6-b0fc4c4bfd74", + "start": { + "$date": "2020-10-17T06:14:59.000Z" + }, + "end": { + "$date": "2020-10-17T04:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b6e18e3e-17ce-4665-b02b-83f3239ecb98", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-17T02:16:54.000Z" + }, + "end": { + "$date": "2020-10-17T05:04:28.000Z" + }, + "events": [ + { + "uuid": "3a879ac9-f323-4339-9a68-f3c4e331ccf1", + "start": { + "$date": "2020-10-17T02:16:54.000Z" + }, + "end": { + "$date": "2020-10-17T05:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "01b7f191-06f6-4f5f-9bdb-0c601b51074c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T02:47:58.000Z" + }, + "end": { + "$date": "2020-10-17T02:48:59.000Z" + }, + "events": [ + { + "uuid": "08d9cd44-3936-4903-903d-8aa2bfea672e", + "start": { + "$date": "2020-10-17T02:47:58.000Z" + }, + "end": { + "$date": "2020-10-17T02:48:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d6d26755-73a6-4669-a3db-3c7db9e81528", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T02:49:28.000Z" + }, + "end": { + "$date": "2020-10-17T03:34:12.000Z" + }, + "events": [ + { + "uuid": "2f7b81c1-1809-46f3-bc4d-852382b00301", + "start": { + "$date": "2020-10-17T02:49:28.000Z" + }, + "end": { + "$date": "2020-10-17T03:34:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e33d3241-0001-4c32-9c32-28a05d5477e4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-17T03:21:34.000Z" + }, + "end": { + "$date": "2020-10-17T04:28:31.000Z" + }, + "events": [ + { + "uuid": "4480b7da-3345-4aac-8146-294d90609783", + "start": { + "$date": "2020-10-17T03:21:34.000Z" + }, + "end": { + "$date": "2020-10-17T04:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "28f9cbd5-ced5-422d-8e09-40f4e741e012", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T04:01:49.000Z" + }, + "end": { + "$date": "2020-10-17T04:47:08.000Z" + }, + "events": [ + { + "uuid": "8d4fce90-b02d-446a-8860-9d7a759caa24", + "start": { + "$date": "2020-10-17T04:01:49.000Z" + }, + "end": { + "$date": "2020-10-17T04:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "88fae9cc-5a02-480a-a02d-34a4de668c7c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-17T04:26:13.000Z" + }, + "end": { + "$date": "2020-10-17T05:04:21.000Z" + }, + "events": [ + { + "uuid": "cedaf31e-76af-4593-b296-c4da7d18151e", + "start": { + "$date": "2020-10-17T04:26:13.000Z" + }, + "end": { + "$date": "2020-10-17T05:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a10ff3e1-f470-4019-b555-3d999e51400b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T04:47:35.000Z" + }, + "end": { + "$date": "2020-10-17T05:14:43.000Z" + }, + "events": [ + { + "uuid": "1e12cb3f-dbcb-4502-9974-0cd28a8c5832", + "start": { + "$date": "2020-10-17T04:47:35.000Z" + }, + "end": { + "$date": "2020-10-17T05:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7755427-fd14-461c-a42a-be3659901499", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T04:47:28.000Z" + }, + "end": { + "$date": "2020-10-17T05:14:45.000Z" + }, + "events": [ + { + "uuid": "bfe0aa77-2cc6-4141-ac75-2a0bf4318301", + "start": { + "$date": "2020-10-17T04:47:28.000Z" + }, + "end": { + "$date": "2020-10-17T05:14:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9bc93f8e-fe14-4589-9821-5e77ac3c2d58", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T04:47:14.000Z" + }, + "end": { + "$date": "2020-10-17T05:03:16.000Z" + }, + "events": [ + { + "uuid": "a34a1aaf-7348-4e51-9f19-bf3bebc14999", + "start": { + "$date": "2020-10-17T04:47:14.000Z" + }, + "end": { + "$date": "2020-10-17T05:03:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "70fd371b-acc8-4aeb-9d64-8f47343c6850", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T05:03:22.000Z" + }, + "end": { + "$date": "2020-10-17T05:15:30.000Z" + }, + "events": [ + { + "uuid": "49021167-183e-4e74-85a7-6d222c69b150", + "start": { + "$date": "2020-10-17T05:03:22.000Z" + }, + "end": { + "$date": "2020-10-17T05:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "23611fb9-5a21-42d2-9fb9-ec4669e6941f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-17T05:04:35.000Z" + }, + "end": { + "$date": "2020-10-17T05:23:26.000Z" + }, + "events": [ + { + "uuid": "8e494944-3acd-422b-89c6-378c44f1bc78", + "start": { + "$date": "2020-10-17T05:04:35.000Z" + }, + "end": { + "$date": "2020-10-17T05:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "babab41b-cbcf-4cff-b649-b65302d93ad8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-17T05:04:54.000Z" + }, + "end": { + "$date": "2020-10-17T05:23:06.000Z" + }, + "events": [ + { + "uuid": "37817ba2-2c37-41f8-9a9f-6e71d846add7", + "start": { + "$date": "2020-10-17T05:04:54.000Z" + }, + "end": { + "$date": "2020-10-17T05:23:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf05e07d-8f2f-44f2-93f5-4b969a9c1abe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T05:21:37.000Z" + }, + "end": { + "$date": "2020-10-17T06:00:10.000Z" + }, + "events": [ + { + "uuid": "4486a52a-1fc4-4821-bb53-8c399d9b0283", + "start": { + "$date": "2020-10-17T05:21:37.000Z" + }, + "end": { + "$date": "2020-10-17T06:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9ab8273f-df2d-48bb-8813-1cabbc08e136", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T05:44:58.000Z" + }, + "end": { + "$date": "2020-10-17T06:00:02.000Z" + }, + "events": [ + { + "uuid": "d1168823-e35c-4fe7-8795-9c43df34ee4e", + "start": { + "$date": "2020-10-17T05:44:58.000Z" + }, + "end": { + "$date": "2020-10-17T06:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27237044-6e8d-4754-b5f3-685a6fa85f00", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T05:16:20.000Z" + }, + "end": { + "$date": "2020-10-17T05:17:23.000Z" + }, + "events": [ + { + "uuid": "60093835-c7e8-4b89-8617-70ada9f717bd", + "start": { + "$date": "2020-10-17T05:16:20.000Z" + }, + "end": { + "$date": "2020-10-17T05:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "123f8f3f-f8ba-469e-a55b-a2fd7b1c4617", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T05:21:17.000Z" + }, + "end": { + "$date": "2020-10-17T06:00:03.000Z" + }, + "events": [ + { + "uuid": "27910509-001f-416b-aa1e-8a06f9bfc215", + "start": { + "$date": "2020-10-17T05:21:17.000Z" + }, + "end": { + "$date": "2020-10-17T06:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2152712-097a-45de-8ccc-9247cd7471a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-17T05:23:35.000Z" + }, + "end": { + "$date": "2020-10-17T05:54:52.000Z" + }, + "events": [ + { + "uuid": "6c8dbd33-481c-4595-84c3-134c18b1af10", + "start": { + "$date": "2020-10-17T05:23:35.000Z" + }, + "end": { + "$date": "2020-10-17T05:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "585ad135-e82d-4938-9c1c-b98990bb94d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-17T05:23:47.000Z" + }, + "end": { + "$date": "2020-10-17T05:54:59.000Z" + }, + "events": [ + { + "uuid": "a89fbdac-d26c-4598-82b9-47a9b3dac7be", + "start": { + "$date": "2020-10-17T05:23:47.000Z" + }, + "end": { + "$date": "2020-10-17T05:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20ac567d-4fbb-413d-9b25-ac925001efab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T06:02:34.000Z" + }, + "end": { + "$date": "2020-10-17T06:20:11.000Z" + }, + "events": [ + { + "uuid": "641acc49-a02f-473c-afe1-99176017b298", + "start": { + "$date": "2020-10-17T06:02:34.000Z" + }, + "end": { + "$date": "2020-10-17T06:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc831776-3189-40d1-bdce-946cd52a098d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T06:04:09.000Z" + }, + "end": { + "$date": "2020-10-17T06:20:08.000Z" + }, + "events": [ + { + "uuid": "30572a0e-fd93-4d6f-a769-dfb34fed108e", + "start": { + "$date": "2020-10-17T06:04:09.000Z" + }, + "end": { + "$date": "2020-10-17T06:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d384b487-e724-431c-a3c1-4d96d00769af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T06:03:33.000Z" + }, + "end": { + "$date": "2020-10-17T06:20:09.000Z" + }, + "events": [ + { + "uuid": "27ecafb9-3658-4864-9a39-f18599d12442", + "start": { + "$date": "2020-10-17T06:03:33.000Z" + }, + "end": { + "$date": "2020-10-17T06:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fed3c2e-404b-4df4-9750-8ca4c19fc5e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T06:20:22.000Z" + }, + "end": { + "$date": "2020-10-17T06:40:11.000Z" + }, + "events": [ + { + "uuid": "111857f9-35fd-4a57-9b8d-01edd39fe833", + "start": { + "$date": "2020-10-17T06:20:22.000Z" + }, + "end": { + "$date": "2020-10-17T06:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4b28fbf9-fdaa-4155-91f5-c624dd0e7072", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-17T06:30:19.000Z" + }, + "end": { + "$date": "2020-10-17T06:55:41.000Z" + }, + "events": [ + { + "uuid": "4e8d4b46-c9bd-4388-82c4-206d96ac11ab", + "start": { + "$date": "2020-10-17T06:30:19.000Z" + }, + "end": { + "$date": "2020-10-17T06:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4b01088-0e53-4f56-bac7-af44c4d3fef1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T06:45:00.000Z" + }, + "end": { + "$date": "2020-10-17T07:07:52.000Z" + }, + "events": [ + { + "uuid": "7c4995a0-f9bc-48cc-9ba8-79697ef27b7b", + "start": { + "$date": "2020-10-17T06:45:00.000Z" + }, + "end": { + "$date": "2020-10-17T07:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4d37dad-2e5a-47ab-a635-ef70dbdba5af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T06:44:57.000Z" + }, + "end": { + "$date": "2020-10-17T07:07:53.000Z" + }, + "events": [ + { + "uuid": "f9470895-198d-49da-bb8b-09f94e2af430", + "start": { + "$date": "2020-10-17T06:44:57.000Z" + }, + "end": { + "$date": "2020-10-17T07:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32a496c1-2e5e-4bdc-a9eb-78542e775825", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T07:10:21.000Z" + }, + "end": { + "$date": "2020-10-17T07:34:17.000Z" + }, + "events": [ + { + "uuid": "30a98de5-dffa-4299-9601-58964c8ec4fc", + "start": { + "$date": "2020-10-17T07:10:21.000Z" + }, + "end": { + "$date": "2020-10-17T07:34:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f43392cd-6a80-4fae-9934-205195db8cdf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T07:10:17.000Z" + }, + "end": { + "$date": "2020-10-17T07:34:09.000Z" + }, + "events": [ + { + "uuid": "99576500-0ceb-4417-9556-6cac0fc03ea5", + "start": { + "$date": "2020-10-17T07:10:17.000Z" + }, + "end": { + "$date": "2020-10-17T07:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "25657c75-e1d2-451a-b898-571cf6dfc062", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-17T07:50:30.000Z" + }, + "end": { + "$date": "2020-10-17T08:06:47.000Z" + }, + "events": [ + { + "uuid": "587ab3b7-bcf5-46c4-b226-05f64005179b", + "start": { + "$date": "2020-10-17T07:50:30.000Z" + }, + "end": { + "$date": "2020-10-17T08:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c9881d35-4590-4167-baa0-835c4084cfc3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-17T14:41:02.000Z" + }, + "end": { + "$date": "2020-10-17T16:49:49.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-17T14:41:02.000Z" + }, + "end": { + "$date": "2020-10-17T16:49:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69604f55-a283-422f-a3eb-e77682ffffac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T17:11:11.000Z" + }, + "end": { + "$date": "2020-10-17T17:50:24.000Z" + }, + "events": [ + { + "uuid": "3a00f4a1-e3fe-4a1e-82a3-e9a668ef3dba", + "start": { + "$date": "2020-10-17T17:11:11.000Z" + }, + "end": { + "$date": "2020-10-17T17:50:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abca565f-9219-4b37-90e2-b13e8ed0b2f1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-17T17:11:07.000Z" + }, + "end": { + "$date": "2020-10-17T17:50:25.000Z" + }, + "events": [ + { + "uuid": "3cf69407-32c2-486b-8a82-787ddaf58d7d", + "start": { + "$date": "2020-10-17T17:11:07.000Z" + }, + "end": { + "$date": "2020-10-17T17:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b72860d-b8cf-485d-8944-79e33c43737c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T17:11:05.000Z" + }, + "end": { + "$date": "2020-10-17T17:50:25.000Z" + }, + "events": [ + { + "uuid": "2d82608c-d8e3-453a-80cf-e79bde08a2c2", + "start": { + "$date": "2020-10-17T17:11:05.000Z" + }, + "end": { + "$date": "2020-10-17T17:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f902c903-7867-42a5-babb-08a79c6eddec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-17T17:21:29.000Z" + }, + "end": { + "$date": "2020-10-17T18:28:56.000Z" + }, + "events": [ + { + "uuid": "f2ea3dd0-c2ce-4d97-b53e-efbf4610628c", + "start": { + "$date": "2020-10-17T17:21:29.000Z" + }, + "end": { + "$date": "2020-10-17T18:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a74590d-f3ec-4b9f-8775-a9e25c918057", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T17:51:28.000Z" + }, + "end": { + "$date": "2020-10-17T18:27:11.000Z" + }, + "events": [ + { + "uuid": "8b912fc7-3c59-4325-b192-35af2d250d48", + "start": { + "$date": "2020-10-17T17:51:28.000Z" + }, + "end": { + "$date": "2020-10-17T18:27:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36efe5c1-28df-47f2-85a3-06e0695c79aa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-17T17:51:35.000Z" + }, + "end": { + "$date": "2020-10-17T18:27:13.000Z" + }, + "events": [ + { + "uuid": "31f5b61e-8a5b-4215-82d6-12365a25ba3d", + "start": { + "$date": "2020-10-17T17:51:35.000Z" + }, + "end": { + "$date": "2020-10-17T18:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "887f77dc-3b93-4a58-84f7-876e82960cd9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T17:51:14.000Z" + }, + "end": { + "$date": "2020-10-17T18:27:29.000Z" + }, + "events": [ + { + "uuid": "d4e14d26-6486-446b-80c1-3a11e7a9a254", + "start": { + "$date": "2020-10-17T17:51:14.000Z" + }, + "end": { + "$date": "2020-10-17T18:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "209dd8f1-d054-4972-88ae-d6130f443e46", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T18:36:09.000Z" + }, + "end": { + "$date": "2020-10-17T19:42:36.000Z" + }, + "events": [ + { + "uuid": "ddde6f52-dba0-4e2f-9f7d-418452ffd343", + "start": { + "$date": "2020-10-17T18:36:09.000Z" + }, + "end": { + "$date": "2020-10-17T19:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fab8da94-52b8-48a9-8bb8-36e0505ba184", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T18:27:16.000Z" + }, + "end": { + "$date": "2020-10-17T18:31:24.000Z" + }, + "events": [ + { + "uuid": "62369ac5-61a8-44b2-86b0-6d2286723b2f", + "start": { + "$date": "2020-10-17T18:27:16.000Z" + }, + "end": { + "$date": "2020-10-17T18:31:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "ef374c47-705e-49eb-9667-545079ba6119", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T18:32:20.000Z" + }, + "end": { + "$date": "2020-10-17T19:05:31.000Z" + }, + "events": [ + { + "uuid": "92565228-9e9b-4ba3-8642-78a9c7878716", + "start": { + "$date": "2020-10-17T18:32:20.000Z" + }, + "end": { + "$date": "2020-10-17T19:05:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3767e0c-de00-47e3-892f-ad6b03d2b769", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-17T18:34:51.000Z" + }, + "end": { + "$date": "2020-10-17T18:36:03.000Z" + }, + "events": [ + { + "uuid": "6e20ffe7-a8f8-4a66-9248-ba3f1844ff52", + "start": { + "$date": "2020-10-17T18:34:51.000Z" + }, + "end": { + "$date": "2020-10-17T18:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "d1a80e92-04ce-4353-b586-e927fb7f4a22", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T18:52:23.000Z" + }, + "end": { + "$date": "2020-10-17T19:15:30.000Z" + }, + "events": [ + { + "uuid": "966b0e1a-b614-49d2-b00b-fba897dc7e5d", + "start": { + "$date": "2020-10-17T18:52:23.000Z" + }, + "end": { + "$date": "2020-10-17T19:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0f8dbca6-6a97-4d3c-b6f5-d8369e912612", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-17T18:55:12.000Z" + }, + "end": { + "$date": "2020-10-17T18:59:58.000Z" + }, + "events": [ + { + "uuid": "9b3bd269-7593-4ba2-9676-8ba2ba6d9da0", + "start": { + "$date": "2020-10-17T18:55:12.000Z" + }, + "end": { + "$date": "2020-10-17T18:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "9251dc60-c269-42b1-a2d6-3825fda03f6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T19:15:55.000Z" + }, + "end": { + "$date": "2020-10-17T19:30:51.000Z" + }, + "events": [ + { + "uuid": "5c019c12-dcdd-440f-b848-b62f9e3a8295", + "start": { + "$date": "2020-10-17T19:15:55.000Z" + }, + "end": { + "$date": "2020-10-17T19:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f83f4f1b-3066-4f81-b0db-5f8b339e3abb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-17T19:18:52.000Z" + }, + "end": { + "$date": "2020-10-17T21:15:01.000Z" + }, + "events": [ + { + "uuid": "c5302ff8-c7fe-42e0-aa89-2d6c5c7c5f4f", + "start": { + "$date": "2020-10-17T19:18:52.000Z" + }, + "end": { + "$date": "2020-10-17T19:55:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8001b598-bc97-4754-8c3c-4eacb3ee5108", + "start": { + "$date": "2020-10-17T19:55:52.000Z" + }, + "end": { + "$date": "2020-10-17T19:59:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28ea786b-3b27-4f27-9e9d-2532db503000", + "start": { + "$date": "2020-10-17T19:59:52.000Z" + }, + "end": { + "$date": "2020-10-17T21:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "015532ab-4d49-428a-bf57-b9e3ea053334", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T19:38:21.000Z" + }, + "end": { + "$date": "2020-10-17T19:50:17.000Z" + }, + "events": [ + { + "uuid": "6bc4316d-800e-4589-b02b-ce05ddf099b3", + "start": { + "$date": "2020-10-17T19:38:21.000Z" + }, + "end": { + "$date": "2020-10-17T19:50:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b07019e1-36e7-49aa-9909-92c5553fb95c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T19:38:14.000Z" + }, + "end": { + "$date": "2020-10-17T19:50:26.000Z" + }, + "events": [ + { + "uuid": "60e32e67-7344-40d6-80fc-89d6b09412fc", + "start": { + "$date": "2020-10-17T19:38:14.000Z" + }, + "end": { + "$date": "2020-10-17T19:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36ac2e60-32d9-4431-a31e-6d043b68776f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T19:38:13.000Z" + }, + "end": { + "$date": "2020-10-17T19:50:20.000Z" + }, + "events": [ + { + "uuid": "af617750-205f-4004-833f-82211a292fd1", + "start": { + "$date": "2020-10-17T19:38:13.000Z" + }, + "end": { + "$date": "2020-10-17T19:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0efe53c-937f-477f-819d-8238415f928e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T19:53:52.000Z" + }, + "end": { + "$date": "2020-10-17T20:18:33.000Z" + }, + "events": [ + { + "uuid": "355f58fa-7303-496d-a203-87063787828e", + "start": { + "$date": "2020-10-17T19:53:52.000Z" + }, + "end": { + "$date": "2020-10-17T20:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ca28176-af2e-47e7-a67c-33dcabe49fbe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-17T19:54:20.000Z" + }, + "end": { + "$date": "2020-10-17T20:18:32.000Z" + }, + "events": [ + { + "uuid": "cbf13bc9-d129-4da2-96d3-2804e0791744", + "start": { + "$date": "2020-10-17T19:54:20.000Z" + }, + "end": { + "$date": "2020-10-17T20:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b74abc5-eedf-4202-9ea9-82fa01befb15", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-17T19:53:44.000Z" + }, + "end": { + "$date": "2020-10-17T20:18:32.000Z" + }, + "events": [ + { + "uuid": "6ad04e4f-d309-4b15-a7a8-6f6931eac4ad", + "start": { + "$date": "2020-10-17T19:53:44.000Z" + }, + "end": { + "$date": "2020-10-17T20:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eca686bc-de7a-4a36-b316-ff66979a201d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-17T20:25:20.000Z" + }, + "end": { + "$date": "2020-10-17T21:26:14.000Z" + }, + "events": [ + { + "uuid": "b43997d9-8cef-4a05-8cba-654b85cbee75", + "start": { + "$date": "2020-10-17T20:25:20.000Z" + }, + "end": { + "$date": "2020-10-17T21:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7d6f6532-eb0a-4a72-bfee-391b9354e098", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-17T20:29:11.000Z" + }, + "end": { + "$date": "2020-10-17T20:37:19.000Z" + }, + "events": [ + { + "uuid": "ec3a4291-8714-4d0f-afb9-73c6f13c1086", + "start": { + "$date": "2020-10-17T20:29:11.000Z" + }, + "end": { + "$date": "2020-10-17T20:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9ed5de16-21a8-4f4a-9306-5ba59d68af0c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-17T20:52:01.000Z" + }, + "end": { + "$date": "2020-10-17T22:48:15.000Z" + }, + "events": [ + { + "uuid": "698d0850-54b6-49c7-b841-cdfae4978af8", + "start": { + "$date": "2020-10-17T20:52:01.000Z" + }, + "end": { + "$date": "2020-10-17T22:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5431ab9f-e6c6-40d6-b6dd-bf35671e00ec", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-17T20:56:03.000Z" + }, + "end": { + "$date": "2020-10-17T21:06:34.000Z" + }, + "events": [ + { + "uuid": "5f5fd8aa-6d6a-4784-a090-aa54ec89e339", + "start": { + "$date": "2020-10-17T20:56:03.000Z" + }, + "end": { + "$date": "2020-10-17T21:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "966b6834-76e5-4569-91af-cf9b17442307", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T21:02:37.000Z" + }, + "end": { + "$date": "2020-10-17T21:59:20.000Z" + }, + "events": [ + { + "uuid": "be2c2376-325c-4d50-b167-223824bf44ad", + "start": { + "$date": "2020-10-17T21:02:37.000Z" + }, + "end": { + "$date": "2020-10-17T21:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a33304b1-565e-415e-af74-157879c0e395", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-17T21:07:14.000Z" + }, + "end": { + "$date": "2020-10-17T22:29:21.000Z" + }, + "events": [ + { + "uuid": "9a3096b7-01fd-4e03-94c8-10f2f7706b24", + "start": { + "$date": "2020-10-17T21:07:14.000Z" + }, + "end": { + "$date": "2020-10-17T22:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "7a2e7526-cbe7-4d89-ae3d-690e54e488c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-17T21:08:26.000Z" + }, + "end": { + "$date": "2020-10-17T21:55:09.000Z" + }, + "events": [ + { + "uuid": "f61962fb-eb5d-433a-b3d4-f324641606a1", + "start": { + "$date": "2020-10-17T21:08:26.000Z" + }, + "end": { + "$date": "2020-10-17T21:55:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "d062e930-eb4f-4834-a079-4c5297bccba7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-17T21:10:35.000Z" + }, + "end": { + "$date": "2020-10-17T21:31:06.000Z" + }, + "events": [ + { + "uuid": "a3b071b9-776f-45e8-be5e-2b0a88b6db54", + "start": { + "$date": "2020-10-17T21:10:35.000Z" + }, + "end": { + "$date": "2020-10-17T21:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "caeba1b1-fa82-4e72-bca6-06c9ee4b2c4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-17T22:13:23.000Z" + }, + "end": { + "$date": "2020-10-17T23:21:54.000Z" + }, + "events": [ + { + "uuid": "00a2d818-930b-47ff-8bbb-9dffea1171a7", + "start": { + "$date": "2020-10-17T22:13:23.000Z" + }, + "end": { + "$date": "2020-10-17T23:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3e513185-4bbe-445f-8753-0d71f69faab7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-17T22:17:49.000Z" + }, + "end": { + "$date": "2020-10-17T22:46:05.000Z" + }, + "events": [ + { + "uuid": "b15e41b6-8b56-4d76-950c-9bf02dec3735", + "start": { + "$date": "2020-10-17T22:17:49.000Z" + }, + "end": { + "$date": "2020-10-17T22:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc17184f-3157-429e-9b25-3058bdd33db1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-17T22:32:04.000Z" + }, + "end": { + "$date": "2020-10-17T23:52:53.000Z" + }, + "events": [ + { + "uuid": "d35ceba8-c26e-4878-b4f7-0b36cf9f87b8", + "start": { + "$date": "2020-10-17T22:32:04.000Z" + }, + "end": { + "$date": "2020-10-17T23:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4ac9e64d-e4df-4aca-8d68-1bb55d7334de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T01:22:35.000Z" + }, + "end": { + "$date": "2020-10-18T01:25:56.000Z" + }, + "events": [ + { + "uuid": "9fa2a69a-6450-48cc-8b93-f0ad4a45bd0f", + "start": { + "$date": "2020-10-18T01:22:35.000Z" + }, + "end": { + "$date": "2020-10-18T01:25:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4d8a7b60-f085-42e2-9c8c-d2fd96db7cba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T01:32:31.000Z" + }, + "end": { + "$date": "2020-10-18T02:09:05.000Z" + }, + "events": [ + { + "uuid": "74815901-1293-4dfa-a4ab-2a889d11991a", + "start": { + "$date": "2020-10-18T01:32:31.000Z" + }, + "end": { + "$date": "2020-10-18T02:09:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "da4cda7b-43ca-4919-b234-b4093e619796", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T01:34:08.000Z" + }, + "end": { + "$date": "2020-10-18T04:31:25.000Z" + }, + "events": [ + { + "uuid": "59e9113c-e547-4ff6-b5b2-5f18bd609839", + "start": { + "$date": "2020-10-18T01:34:08.000Z" + }, + "end": { + "$date": "2020-10-18T04:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "11f65300-4a47-43b5-8aa1-f993acc6afb7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T01:37:36.000Z" + }, + "end": { + "$date": "2020-10-18T02:14:48.000Z" + }, + "events": [ + { + "uuid": "79e884e2-b712-4a5b-ad24-9710c1de2e53", + "start": { + "$date": "2020-10-18T01:37:36.000Z" + }, + "end": { + "$date": "2020-10-18T02:14:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "cb75033c-9eac-4a2a-884e-44d7fe6f1ad7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-18T01:38:09.000Z" + }, + "end": { + "$date": "2020-10-18T04:58:18.000Z" + }, + "events": [ + { + "uuid": "4a9ad2da-8e43-4bd2-9d15-858fb5770f43", + "start": { + "$date": "2020-10-18T01:38:09.000Z" + }, + "end": { + "$date": "2020-10-18T04:58:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "fe71e0e8-ffda-4944-97a7-a625c7702fe9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-18T02:18:18.000Z" + }, + "end": { + "$date": "2020-10-18T02:30:13.000Z" + }, + "events": [ + { + "uuid": "891bcc40-21f0-467d-9477-abbb07eb8164", + "start": { + "$date": "2020-10-18T02:18:18.000Z" + }, + "end": { + "$date": "2020-10-18T02:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29f376f2-e169-4704-8f45-1cfb267298f2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-18T02:53:19.000Z" + }, + "end": { + "$date": "2020-10-18T03:33:05.000Z" + }, + "events": [ + { + "uuid": "025c307a-544f-4c01-9b98-bddb4f5ecb5e", + "start": { + "$date": "2020-10-18T02:53:19.000Z" + }, + "end": { + "$date": "2020-10-18T03:33:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc3875b7-0ffe-4760-8f50-b4bc31134908", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-18T02:57:07.000Z" + }, + "end": { + "$date": "2020-10-18T02:59:12.000Z" + }, + "events": [ + { + "uuid": "f3b8c32e-3690-4096-854d-04aa18e7d6f5", + "start": { + "$date": "2020-10-18T02:57:07.000Z" + }, + "end": { + "$date": "2020-10-18T02:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "783f2470-dcc7-47b3-893b-d1f7bdc0f1f5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T03:03:32.000Z" + }, + "end": { + "$date": "2020-10-18T04:58:00.000Z" + }, + "events": [ + { + "uuid": "ab4fcc74-8495-4d76-b400-61f49a10eb7c", + "start": { + "$date": "2020-10-18T03:03:32.000Z" + }, + "end": { + "$date": "2020-10-18T04:58:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "uuid": "40823c81-d386-4b72-81e4-d0a54b13db32", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T03:30:33.000Z" + }, + "end": { + "$date": "2020-10-18T03:33:28.000Z" + }, + "events": [ + { + "uuid": "6eea7c06-e205-484a-acde-f389484cf48e", + "start": { + "$date": "2020-10-18T03:30:33.000Z" + }, + "end": { + "$date": "2020-10-18T03:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "uuid": "aac41a81-a798-45dd-963f-86dd83119703", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T03:34:18.000Z" + }, + "end": { + "$date": "2020-10-18T03:35:58.000Z" + }, + "events": [ + { + "uuid": "b9c272b9-fbc0-4893-bc71-ecff71e54246", + "start": { + "$date": "2020-10-18T03:34:18.000Z" + }, + "end": { + "$date": "2020-10-18T03:35:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "uuid": "7d4f2cbf-d79e-4ed1-8513-f749c9739dcc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T03:40:14.000Z" + }, + "end": { + "$date": "2020-10-18T03:45:19.000Z" + }, + "events": [ + { + "uuid": "04980c2d-a55b-4ae3-bf7c-5e5da708565f", + "start": { + "$date": "2020-10-18T03:40:14.000Z" + }, + "end": { + "$date": "2020-10-18T03:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "uuid": "23608038-c728-4afb-9a0c-4737e4a05ab0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T03:45:30.000Z" + }, + "end": { + "$date": "2020-10-18T05:47:59.000Z" + }, + "events": [ + { + "uuid": "22e2daae-7281-4832-85d8-87ad4c18f35e", + "start": { + "$date": "2020-10-18T03:45:30.000Z" + }, + "end": { + "$date": "2020-10-18T05:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7a0fb43a-e917-4062-933e-870581467ccf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T04:31:46.000Z" + }, + "end": { + "$date": "2020-10-18T07:24:19.000Z" + }, + "events": [ + { + "uuid": "abc9413d-50e5-433a-b1b9-60f7fac5f6ed", + "start": { + "$date": "2020-10-18T04:31:46.000Z" + }, + "end": { + "$date": "2020-10-18T07:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0611e096-9d42-41c9-b05b-14272c73b1a1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-18T04:46:10.000Z" + }, + "end": { + "$date": "2020-10-18T04:56:00.000Z" + }, + "events": [ + { + "uuid": "097d3596-2c98-4005-ae8e-4e4b1c43f140", + "start": { + "$date": "2020-10-18T04:46:10.000Z" + }, + "end": { + "$date": "2020-10-18T04:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "61cae649-678a-4fbd-bea9-97e9ff90caee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-18T04:59:17.000Z" + }, + "end": { + "$date": "2020-10-18T05:21:09.000Z" + }, + "events": [ + { + "uuid": "7e86b9b2-1e17-4198-b272-946317bc5a3f", + "start": { + "$date": "2020-10-18T04:59:17.000Z" + }, + "end": { + "$date": "2020-10-18T05:21:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9ff83299-cd2d-4712-b4b2-bca20ed3b6a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T05:01:25.000Z" + }, + "end": { + "$date": "2020-10-18T05:21:16.000Z" + }, + "events": [ + { + "uuid": "cd460325-4b81-41a0-9ebd-452fc701067a", + "start": { + "$date": "2020-10-18T05:01:25.000Z" + }, + "end": { + "$date": "2020-10-18T05:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "4f314c66-0547-4f40-b55c-0d11ea575cdf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T05:10:28.000Z" + }, + "end": { + "$date": "2020-10-18T05:14:03.000Z" + }, + "events": [ + { + "uuid": "56b4f46e-00d5-48e9-8caf-7a99456924d1", + "start": { + "$date": "2020-10-18T05:10:28.000Z" + }, + "end": { + "$date": "2020-10-18T05:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14f3814f-433d-444a-aa08-00df67513bfb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T05:28:49.000Z" + }, + "end": { + "$date": "2020-10-18T05:46:15.000Z" + }, + "events": [ + { + "uuid": "e208cc71-5dc1-4295-bf31-bbde2d813979", + "start": { + "$date": "2020-10-18T05:28:49.000Z" + }, + "end": { + "$date": "2020-10-18T05:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c6cf414-6c4c-4b7d-a492-c4b975e68c4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T05:28:50.000Z" + }, + "end": { + "$date": "2020-10-18T05:46:10.000Z" + }, + "events": [ + { + "uuid": "9c1688d2-cf8e-4a08-b867-1113afc9cb4a", + "start": { + "$date": "2020-10-18T05:28:50.000Z" + }, + "end": { + "$date": "2020-10-18T05:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a079b971-2019-4344-938d-3c42897fe511", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T05:56:56.000Z" + }, + "end": { + "$date": "2020-10-18T06:19:24.000Z" + }, + "events": [ + { + "uuid": "28745adb-e798-4898-9d66-aec7ec876562", + "start": { + "$date": "2020-10-18T05:56:56.000Z" + }, + "end": { + "$date": "2020-10-18T06:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "uuid": "3911118e-61cc-4bf6-833c-32d5e52cbc0c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T05:49:00.000Z" + }, + "end": { + "$date": "2020-10-18T05:58:10.000Z" + }, + "events": [ + { + "uuid": "8e70cfd5-f3af-47b2-a947-e4b2c62af6bc", + "start": { + "$date": "2020-10-18T05:49:00.000Z" + }, + "end": { + "$date": "2020-10-18T05:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "604ae49b-9f83-439e-98b6-72b0546b5985", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T05:56:48.000Z" + }, + "end": { + "$date": "2020-10-18T06:19:24.000Z" + }, + "events": [ + { + "uuid": "5a6b058e-b456-412e-a736-f8292150b4e3", + "start": { + "$date": "2020-10-18T05:56:48.000Z" + }, + "end": { + "$date": "2020-10-18T06:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "de14918a-27d1-4eab-b573-6d7e1ee5a65d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T05:55:39.000Z" + }, + "end": { + "$date": "2020-10-18T05:58:10.000Z" + }, + "events": [ + { + "uuid": "fd1e9fda-e850-449a-aaf5-69b2c925c29b", + "start": { + "$date": "2020-10-18T05:55:39.000Z" + }, + "end": { + "$date": "2020-10-18T05:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "189d6be4-64a6-45d5-8932-b50728507cdc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T06:03:06.000Z" + }, + "end": { + "$date": "2020-10-18T07:29:32.000Z" + }, + "events": [ + { + "uuid": "77df0981-695b-4d65-884f-dec4abfa0703", + "start": { + "$date": "2020-10-18T06:03:06.000Z" + }, + "end": { + "$date": "2020-10-18T07:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6f5fe706-a8f6-4a2e-b4fc-3c0e4e84e4ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-18T06:18:31.000Z" + }, + "end": { + "$date": "2020-10-18T06:53:13.000Z" + }, + "events": [ + { + "uuid": "de211f52-102a-437a-b8a6-313f666de6fa", + "start": { + "$date": "2020-10-18T06:18:31.000Z" + }, + "end": { + "$date": "2020-10-18T06:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0466f3a6-b43c-4858-a8a3-ad6a3bc26c43", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T06:23:02.000Z" + }, + "end": { + "$date": "2020-10-18T06:38:47.000Z" + }, + "events": [ + { + "uuid": "f5ae5832-4ce4-4b30-af00-ecd50da1c362", + "start": { + "$date": "2020-10-18T06:23:02.000Z" + }, + "end": { + "$date": "2020-10-18T06:38:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "567c2016-ffdb-4872-b0a8-fb13691f8afd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T06:22:57.000Z" + }, + "end": { + "$date": "2020-10-18T06:38:50.000Z" + }, + "events": [ + { + "uuid": "fa7d86fc-63f6-432d-b2ad-d682c426496c", + "start": { + "$date": "2020-10-18T06:22:57.000Z" + }, + "end": { + "$date": "2020-10-18T06:38:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d1510662-c44a-436e-a3e1-e5dc0c246d25", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T06:28:26.000Z" + }, + "end": { + "$date": "2020-10-18T08:26:50.000Z" + }, + "events": [ + { + "uuid": "3ba5facd-1c3c-4e53-a818-8d72b605d19e", + "start": { + "$date": "2020-10-18T06:28:26.000Z" + }, + "end": { + "$date": "2020-10-18T07:26:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9bc684e9-0d19-4678-978c-e5e2ed65296d", + "start": { + "$date": "2020-10-18T07:26:26.000Z" + }, + "end": { + "$date": "2020-10-18T07:32:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "625e3b3f-9357-4676-a009-475d8fbd61e9", + "start": { + "$date": "2020-10-18T07:32:26.000Z" + }, + "end": { + "$date": "2020-10-18T07:55:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6877efb-d47d-4c2e-89af-c4cd8eb0df6d", + "start": { + "$date": "2020-10-18T07:55:26.000Z" + }, + "end": { + "$date": "2020-10-18T08:26:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ccf40b0-f1dc-43e8-82a4-1880d40bfe93", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T06:43:08.000Z" + }, + "end": { + "$date": "2020-10-18T07:11:59.000Z" + }, + "events": [ + { + "uuid": "6fac6031-a5da-4e20-8826-7794c4e226f3", + "start": { + "$date": "2020-10-18T06:43:08.000Z" + }, + "end": { + "$date": "2020-10-18T07:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c5473867-5c78-4439-aaf3-7473d54b5e0d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-18T06:39:41.000Z" + }, + "end": { + "$date": "2020-10-18T06:52:02.000Z" + }, + "events": [ + { + "uuid": "785d559c-c91c-4b1f-813e-956d62c8c1db", + "start": { + "$date": "2020-10-18T06:39:41.000Z" + }, + "end": { + "$date": "2020-10-18T06:52:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1f058a0-58ff-411c-8a7c-9d9ff43239fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T06:43:08.000Z" + }, + "end": { + "$date": "2020-10-18T07:11:53.000Z" + }, + "events": [ + { + "uuid": "cf2438c7-55e7-472a-91ed-ea67c56e1b5c", + "start": { + "$date": "2020-10-18T06:43:08.000Z" + }, + "end": { + "$date": "2020-10-18T07:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca2f6664-7cf6-4ad2-9e08-9a777aa5d0a7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T07:12:22.000Z" + }, + "end": { + "$date": "2020-10-18T07:15:15.000Z" + }, + "events": [ + { + "uuid": "2277efe8-3a1a-489b-9d6d-f2571fd2b1d3", + "start": { + "$date": "2020-10-18T07:12:22.000Z" + }, + "end": { + "$date": "2020-10-18T07:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "65f3c2a4-de9b-4136-89a6-4b3fd83305b2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-18T07:41:05.000Z" + }, + "end": { + "$date": "2020-10-18T09:19:31.000Z" + }, + "events": [ + { + "uuid": "9ec9d5a6-4249-436f-b452-bdeee24500a7", + "start": { + "$date": "2020-10-18T07:41:05.000Z" + }, + "end": { + "$date": "2020-10-18T09:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "73fec381-646a-47d1-95a6-203ff750c8f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T15:13:03.000Z" + }, + "end": { + "$date": "2020-10-18T15:14:54.000Z" + }, + "events": [ + { + "uuid": "ada2e37c-0e1f-4e85-8b06-6b2b0f824bc0", + "start": { + "$date": "2020-10-18T15:13:03.000Z" + }, + "end": { + "$date": "2020-10-18T15:14:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e521d26a-10c1-4663-a1c7-4a322c072c83", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T15:13:05.000Z" + }, + "end": { + "$date": "2020-10-18T15:53:47.000Z" + }, + "events": [ + { + "uuid": "2fa3e574-68c2-4ab5-b5dc-e968e3de7d46", + "start": { + "$date": "2020-10-18T15:13:05.000Z" + }, + "end": { + "$date": "2020-10-18T15:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "e1cf79e5-e50c-4419-9afe-4b2293fc0818", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T15:22:59.000Z" + }, + "end": { + "$date": "2020-10-18T15:29:05.000Z" + }, + "events": [ + { + "uuid": "3652fa66-3740-45c4-a839-351869905f78", + "start": { + "$date": "2020-10-18T15:22:59.000Z" + }, + "end": { + "$date": "2020-10-18T15:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "6c5c3904-d240-4d1c-b5dc-a5b7af994f28", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T15:32:59.000Z" + }, + "end": { + "$date": "2020-10-18T15:34:05.000Z" + }, + "events": [ + { + "uuid": "34eeb2fd-d149-45dd-b78e-b660deee9595", + "start": { + "$date": "2020-10-18T15:32:59.000Z" + }, + "end": { + "$date": "2020-10-18T15:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "1537ea61-3e04-462c-b874-8705539090b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T15:38:15.000Z" + }, + "end": { + "$date": "2020-10-18T15:42:15.000Z" + }, + "events": [ + { + "uuid": "1d7013b8-e0cd-40d4-b858-49ddacb09982", + "start": { + "$date": "2020-10-18T15:38:15.000Z" + }, + "end": { + "$date": "2020-10-18T15:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "8fad5aad-274c-445f-827b-1337dfa7bf3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T15:44:45.000Z" + }, + "end": { + "$date": "2020-10-18T15:46:26.000Z" + }, + "events": [ + { + "uuid": "00d8054e-c541-402f-b06e-09af3de44740", + "start": { + "$date": "2020-10-18T15:44:45.000Z" + }, + "end": { + "$date": "2020-10-18T15:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "d50755f8-b45c-49ce-8374-f72b0344e3fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T15:58:26.000Z" + }, + "end": { + "$date": "2020-10-18T16:00:11.000Z" + }, + "events": [ + { + "uuid": "bc3b29eb-cc57-40f9-a91d-3f13bbb80130", + "start": { + "$date": "2020-10-18T15:58:26.000Z" + }, + "end": { + "$date": "2020-10-18T16:00:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "52780ff2-56c3-4fea-9119-c9487a93e008", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T16:14:08.000Z" + }, + "end": { + "$date": "2020-10-18T16:34:19.000Z" + }, + "events": [ + { + "uuid": "fed25d31-1633-47f6-b67b-e5b8235676ba", + "start": { + "$date": "2020-10-18T16:14:08.000Z" + }, + "end": { + "$date": "2020-10-18T16:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0ca3f43f-9ff1-45ae-874c-949c7cc1c3df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T16:41:24.000Z" + }, + "end": { + "$date": "2020-10-18T16:43:04.000Z" + }, + "events": [ + { + "uuid": "a8938785-be8e-4ca9-9e61-2cfe241f6607", + "start": { + "$date": "2020-10-18T16:41:24.000Z" + }, + "end": { + "$date": "2020-10-18T16:43:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "da5f4dfa-5efe-4982-a9ad-fa0194fda03b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T16:43:19.000Z" + }, + "end": { + "$date": "2020-10-18T16:54:25.000Z" + }, + "events": [ + { + "uuid": "358db44a-ccc9-4b1d-8aa0-9bf4ec03df1a", + "start": { + "$date": "2020-10-18T16:43:19.000Z" + }, + "end": { + "$date": "2020-10-18T16:54:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99f8e62b-58f9-4a10-b7e9-779e929d05a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T17:38:40.000Z" + }, + "end": { + "$date": "2020-10-18T17:38:49.000Z" + }, + "events": [ + { + "uuid": "8bdb1963-92fd-4dac-b6e7-b186a826eabf", + "start": { + "$date": "2020-10-18T17:38:40.000Z" + }, + "end": { + "$date": "2020-10-18T17:38:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7193221-48cf-4d5f-9f9b-16792dba1765", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T17:34:59.000Z" + }, + "end": { + "$date": "2020-10-18T17:38:46.000Z" + }, + "events": [ + { + "uuid": "82de8e3f-42d6-45d2-b2a2-73e579e7f3ac", + "start": { + "$date": "2020-10-18T17:34:59.000Z" + }, + "end": { + "$date": "2020-10-18T17:38:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "962c9ebd-668e-4b37-a70f-b102253da25f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-18T17:00:59.000Z" + }, + "end": { + "$date": "2020-10-18T17:33:36.000Z" + }, + "events": [ + { + "uuid": "61d80686-7a20-439b-a284-716de3072007", + "start": { + "$date": "2020-10-18T17:00:59.000Z" + }, + "end": { + "$date": "2020-10-18T17:33:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dec146a-da30-44c0-adff-3d2edb2e4267", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T17:37:07.000Z" + }, + "end": { + "$date": "2020-10-18T18:06:51.000Z" + }, + "events": [ + { + "uuid": "1126594e-4697-4587-a8f4-18a9c0216b85", + "start": { + "$date": "2020-10-18T17:37:07.000Z" + }, + "end": { + "$date": "2020-10-18T18:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea5814fe-38f6-4c83-aa42-f384defaae00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T17:42:11.000Z" + }, + "end": { + "$date": "2020-10-18T18:13:43.000Z" + }, + "events": [ + { + "uuid": "21957d3f-17f5-48b5-aae5-9a8205f4642d", + "start": { + "$date": "2020-10-18T17:42:11.000Z" + }, + "end": { + "$date": "2020-10-18T18:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90d15fe7-eabb-4a10-9b19-fd469728453c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T17:41:37.000Z" + }, + "end": { + "$date": "2020-10-18T18:20:28.000Z" + }, + "events": [ + { + "uuid": "bdaa6ab1-3276-42eb-8bfe-f4e1ad3a5dc8", + "start": { + "$date": "2020-10-18T17:41:37.000Z" + }, + "end": { + "$date": "2020-10-18T18:20:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9af66d54-24a0-4735-b3a7-ab99bac9a34f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T20:41:42.000Z" + }, + "end": { + "$date": "2020-10-18T20:44:01.000Z" + }, + "events": [ + { + "uuid": "fff5e9f3-cd87-4ee1-b650-e946ad68531f", + "start": { + "$date": "2020-10-18T20:41:42.000Z" + }, + "end": { + "$date": "2020-10-18T20:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7fdd6e9-4a1e-4e01-935b-14d21906ebde", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T18:09:32.000Z" + }, + "end": { + "$date": "2020-10-18T18:29:38.000Z" + }, + "events": [ + { + "uuid": "7a524da0-013d-49f1-a888-26698694e0d8", + "start": { + "$date": "2020-10-18T18:09:32.000Z" + }, + "end": { + "$date": "2020-10-18T18:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6758ca1f-9781-43d4-94bd-c44e6ea9c026", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T18:22:45.000Z" + }, + "end": { + "$date": "2020-10-18T18:49:54.000Z" + }, + "events": [ + { + "uuid": "d3ae7d5b-1818-4e62-9aee-bd2a8ea79fea", + "start": { + "$date": "2020-10-18T18:22:45.000Z" + }, + "end": { + "$date": "2020-10-18T18:49:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f6ee516d-5efa-4ec8-a780-72a969618904", + "uuid": "61edb958-1745-4ebe-a33a-5cc7a8ccdd43", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T18:22:59.000Z" + }, + "end": { + "$date": "2020-10-18T18:36:14.000Z" + }, + "events": [ + { + "uuid": "9e429a31-67d8-486e-b50d-12cdba10c45a", + "start": { + "$date": "2020-10-18T18:22:59.000Z" + }, + "end": { + "$date": "2020-10-18T18:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34678655-5333-42c0-8622-bb111544fb64", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T18:58:11.000Z" + }, + "end": { + "$date": "2020-10-18T19:43:15.000Z" + }, + "events": [ + { + "uuid": "60021a20-3b35-4509-9f30-3e2091f33751", + "start": { + "$date": "2020-10-18T18:58:11.000Z" + }, + "end": { + "$date": "2020-10-18T19:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9f88763-5c1d-4c37-9ca4-97e89d82ef66", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T18:57:33.000Z" + }, + "end": { + "$date": "2020-10-18T19:43:22.000Z" + }, + "events": [ + { + "uuid": "7411d234-ffce-4752-88df-75d89d2937d3", + "start": { + "$date": "2020-10-18T18:57:33.000Z" + }, + "end": { + "$date": "2020-10-18T19:43:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "a41f852f-f26e-4c07-9263-85cf7a00f956", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T18:57:13.000Z" + }, + "end": { + "$date": "2020-10-18T18:58:32.000Z" + }, + "events": [ + { + "uuid": "a56de603-2b9b-469e-a4a3-9ca51c407dc1", + "start": { + "$date": "2020-10-18T18:57:13.000Z" + }, + "end": { + "$date": "2020-10-18T18:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7ad9c5dd-a2ee-4e24-b0cf-7eba660b0761", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T19:00:33.000Z" + }, + "end": { + "$date": "2020-10-18T19:14:39.000Z" + }, + "events": [ + { + "uuid": "1a88cac9-5cd6-4dd4-89d1-72905c4bc1f1", + "start": { + "$date": "2020-10-18T19:00:33.000Z" + }, + "end": { + "$date": "2020-10-18T19:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "03b4e411-d241-419b-a5fa-35a15dc22b4b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T19:36:54.000Z" + }, + "end": { + "$date": "2020-10-18T20:34:05.000Z" + }, + "events": [ + { + "uuid": "6237b928-9753-494d-b5e1-a4d6d6096130", + "start": { + "$date": "2020-10-18T19:36:54.000Z" + }, + "end": { + "$date": "2020-10-18T20:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59d67fbb-6ee7-4b05-8bbb-034e0f7d2c74", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T19:47:42.000Z" + }, + "end": { + "$date": "2020-10-18T20:20:26.000Z" + }, + "events": [ + { + "uuid": "e4cdf761-e550-41fa-bfb6-2d867e2c78a5", + "start": { + "$date": "2020-10-18T19:47:42.000Z" + }, + "end": { + "$date": "2020-10-18T20:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f08b5b73-4df1-422a-aa4a-45166e3262e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T19:47:10.000Z" + }, + "end": { + "$date": "2020-10-18T20:20:33.000Z" + }, + "events": [ + { + "uuid": "6c1d8196-3777-4094-9483-ed42085dac4c", + "start": { + "$date": "2020-10-18T19:47:10.000Z" + }, + "end": { + "$date": "2020-10-18T20:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "290860f3-374e-416e-8ee7-61094ee95f2d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-18T20:16:48.000Z" + }, + "end": { + "$date": "2020-10-18T22:43:23.000Z" + }, + "events": [ + { + "uuid": "7eeab434-4fa9-477c-a617-3092d4132a49", + "start": { + "$date": "2020-10-18T20:16:48.000Z" + }, + "end": { + "$date": "2020-10-18T22:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f12b474b-bdf2-4513-8e39-213e07c7d08d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T20:23:43.000Z" + }, + "end": { + "$date": "2020-10-18T20:41:37.000Z" + }, + "events": [ + { + "uuid": "25da92ee-47c3-49a4-9604-140f9ee907f3", + "start": { + "$date": "2020-10-18T20:23:43.000Z" + }, + "end": { + "$date": "2020-10-18T20:41:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "243316d5-8512-412b-abfc-dd9fa55d36f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T20:23:41.000Z" + }, + "end": { + "$date": "2020-10-18T20:41:44.000Z" + }, + "events": [ + { + "uuid": "39cc9c3a-a031-4b9e-b766-0ed8b3b7bb56", + "start": { + "$date": "2020-10-18T20:23:41.000Z" + }, + "end": { + "$date": "2020-10-18T20:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "68eec110-b463-4442-badf-ad40b6391862", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T20:35:04.000Z" + }, + "end": { + "$date": "2020-10-18T20:39:05.000Z" + }, + "events": [ + { + "uuid": "99c3fade-7289-4c7d-842b-3d12c916ea6a", + "start": { + "$date": "2020-10-18T20:35:04.000Z" + }, + "end": { + "$date": "2020-10-18T20:39:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "23896a78-a8ca-40e0-908b-e9e3ac59423d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T20:40:07.000Z" + }, + "end": { + "$date": "2020-10-18T23:05:32.000Z" + }, + "events": [ + { + "uuid": "6a57a03f-1602-4d35-86c9-150325aa9eb8", + "start": { + "$date": "2020-10-18T20:40:07.000Z" + }, + "end": { + "$date": "2020-10-18T23:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "409a6a7e-82f2-42c3-8544-b58bacf23477", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T20:43:30.000Z" + }, + "end": { + "$date": "2020-10-18T20:46:01.000Z" + }, + "events": [ + { + "uuid": "4e23d5f2-6464-4e3e-9357-6c22568b8278", + "start": { + "$date": "2020-10-18T20:43:30.000Z" + }, + "end": { + "$date": "2020-10-18T20:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8048c610-b432-4fb7-9f51-0ad15eab4705", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-18T20:44:01.000Z" + }, + "end": { + "$date": "2020-10-18T20:47:09.000Z" + }, + "events": [ + { + "uuid": "916ed33a-ae62-4f98-b4ef-8e3f02985210", + "start": { + "$date": "2020-10-18T20:44:01.000Z" + }, + "end": { + "$date": "2020-10-18T20:47:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "b7ff6995-966b-42de-81be-8815ead6b39b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T21:31:20.000Z" + }, + "end": { + "$date": "2020-10-18T22:53:23.000Z" + }, + "events": [ + { + "uuid": "190f1200-03ec-45f2-bd4c-3cfc76dc90fb", + "start": { + "$date": "2020-10-18T21:31:20.000Z" + }, + "end": { + "$date": "2020-10-18T22:11:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "741d88ad-9782-4552-98e5-09b8f9f77fe9", + "start": { + "$date": "2020-10-18T22:11:20.000Z" + }, + "end": { + "$date": "2020-10-18T22:53:23.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "f870317b-82c3-43b9-b537-f88adf652f81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-18T22:09:51.000Z" + }, + "end": { + "$date": "2020-10-18T22:15:38.000Z" + }, + "events": [ + { + "uuid": "a0751f22-6cc3-4984-a15d-b3fa41d0a719", + "start": { + "$date": "2020-10-18T22:09:51.000Z" + }, + "end": { + "$date": "2020-10-18T22:15:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7a7fb8b-1e67-496a-8456-53dcd63934fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-18T22:14:15.000Z" + }, + "end": { + "$date": "2020-10-19T00:30:00.000Z" + }, + "events": [ + { + "uuid": "6969b0cd-8baf-489c-a203-f70ffbe702d6", + "start": { + "$date": "2020-10-18T22:14:15.000Z" + }, + "end": { + "$date": "2020-10-18T23:56:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "daefc70c-dfa8-4c7f-a73b-0486776d26dc", + "start": { + "$date": "2020-10-18T23:56:15.000Z" + }, + "end": { + "$date": "2020-10-19T00:20:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e990a0d3-f09d-422b-8a9a-1beab70e5313", + "start": { + "$date": "2020-10-19T00:20:15.000Z" + }, + "end": { + "$date": "2020-10-19T00:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4fc41e67-f9d7-45d4-9ed4-d53b56c28a03", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-18T22:42:56.000Z" + }, + "end": { + "$date": "2020-10-19T00:37:35.000Z" + }, + "events": [ + { + "uuid": "a46312a5-0c53-4876-a9bc-676c8a1b6871", + "start": { + "$date": "2020-10-18T22:42:56.000Z" + }, + "end": { + "$date": "2020-10-19T00:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a1e9c7da-6880-4c80-a9e6-71a0ae263e7c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-18T22:51:48.000Z" + }, + "end": { + "$date": "2020-10-19T05:15:59.000Z" + }, + "events": [ + { + "uuid": "5010b708-a41f-4f1d-b99b-b6d6177db7e3", + "start": { + "$date": "2020-10-18T22:51:48.000Z" + }, + "end": { + "$date": "2020-10-19T05:15:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ae1db1f4-964c-45bc-956b-a07732d69a90", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T23:31:57.000Z" + }, + "end": { + "$date": "2020-10-18T23:41:47.000Z" + }, + "events": [ + { + "uuid": "74e73be1-f125-4752-8d27-b68b4d230b32", + "start": { + "$date": "2020-10-18T23:31:57.000Z" + }, + "end": { + "$date": "2020-10-18T23:41:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "23feac28-a09c-440b-a567-f356c7518676", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-18T23:32:24.000Z" + }, + "end": { + "$date": "2020-10-19T01:36:12.000Z" + }, + "events": [ + { + "uuid": "c4992659-42d6-4e0f-88e3-5d160159f3a6", + "start": { + "$date": "2020-10-18T23:32:24.000Z" + }, + "end": { + "$date": "2020-10-19T00:01:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b3622bb-1501-4d95-9488-6db2007f8dea", + "start": { + "$date": "2020-10-19T00:01:24.000Z" + }, + "end": { + "$date": "2020-10-19T00:03:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "658f8ea5-8c3b-4cfc-95c4-adbfb450ed34", + "start": { + "$date": "2020-10-19T00:03:24.000Z" + }, + "end": { + "$date": "2020-10-19T01:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "6a9e67d9-3b4b-4191-923b-3134024698e0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-18T23:42:08.000Z" + }, + "end": { + "$date": "2020-10-19T01:03:05.000Z" + }, + "events": [ + { + "uuid": "f1f3b694-bf94-4ae5-88a1-37ea6993d6f7", + "start": { + "$date": "2020-10-18T23:42:08.000Z" + }, + "end": { + "$date": "2020-10-19T01:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ae6d3786-1830-4454-b5f2-333002a409ec", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-18T23:51:53.000Z" + }, + "end": { + "$date": "2020-10-18T23:54:18.000Z" + }, + "events": [ + { + "uuid": "a72c68b5-f988-40ef-9dc4-32b5d30c4238", + "start": { + "$date": "2020-10-18T23:51:53.000Z" + }, + "end": { + "$date": "2020-10-18T23:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1b2b6561-6454-4b96-9c45-8e6de44f567e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-19T00:05:55.000Z" + }, + "end": { + "$date": "2020-10-19T02:00:52.000Z" + }, + "events": [ + { + "uuid": "88b5a0ef-b4f8-47f4-9a8f-afd3a1594bd6", + "start": { + "$date": "2020-10-19T00:05:55.000Z" + }, + "end": { + "$date": "2020-10-19T02:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a197ef4-d685-4c1e-8cd3-46dd6b47e11b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T00:17:31.000Z" + }, + "end": { + "$date": "2020-10-19T00:30:00.000Z" + }, + "events": [ + { + "uuid": "8b5f2b46-01a6-4de2-b6d4-f72a66a3ff1e", + "start": { + "$date": "2020-10-19T00:17:31.000Z" + }, + "end": { + "$date": "2020-10-19T00:30:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1775ccb1-785d-4c03-bcd2-9ea16e955b4e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-19T00:21:32.000Z" + }, + "end": { + "$date": "2020-10-19T00:30:00.000Z" + }, + "events": [ + { + "uuid": "27888e4b-4500-4da4-bbac-4ead73d23897", + "start": { + "$date": "2020-10-19T00:21:32.000Z" + }, + "end": { + "$date": "2020-10-19T00:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2a7c7fe-0ad9-4d0d-97ce-dfd1a79bac0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T00:38:22.000Z" + }, + "end": { + "$date": "2020-10-19T00:59:35.000Z" + }, + "events": [ + { + "uuid": "72941384-2640-45d4-a6f9-96482fcde526", + "start": { + "$date": "2020-10-19T00:38:22.000Z" + }, + "end": { + "$date": "2020-10-19T00:59:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42a8ca9c-47f5-449d-9dcc-f9d3442b3ddc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-19T00:30:33.000Z" + }, + "end": { + "$date": "2020-10-19T00:32:29.000Z" + }, + "events": [ + { + "uuid": "27ae3e98-0b84-465e-9b89-36b157b3f19b", + "start": { + "$date": "2020-10-19T00:30:33.000Z" + }, + "end": { + "$date": "2020-10-19T00:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33821c2b-d2b3-45f0-8ec5-183aa678dc35", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-19T00:38:19.000Z" + }, + "end": { + "$date": "2020-10-19T00:59:35.000Z" + }, + "events": [ + { + "uuid": "cce37fb5-69a8-43df-b843-0ca2c13aff16", + "start": { + "$date": "2020-10-19T00:38:19.000Z" + }, + "end": { + "$date": "2020-10-19T00:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d2f32f2-aa3c-47eb-951a-f5b617176fe8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T01:18:11.000Z" + }, + "end": { + "$date": "2020-10-19T01:43:04.000Z" + }, + "events": [ + { + "uuid": "e7fcb5df-f9b7-4d04-88af-eeb09defcd8e", + "start": { + "$date": "2020-10-19T01:18:11.000Z" + }, + "end": { + "$date": "2020-10-19T01:43:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "9f4c4bfc-eb8a-436f-adbe-ae2bbb0ea3ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-19T01:14:03.000Z" + }, + "end": { + "$date": "2020-10-19T01:37:04.000Z" + }, + "events": [ + { + "uuid": "2e40a1af-d053-4583-b5fe-3ca12b946186", + "start": { + "$date": "2020-10-19T01:14:03.000Z" + }, + "end": { + "$date": "2020-10-19T01:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45f9f1af-78d7-41b8-9946-d6ee5cd50b0a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T01:43:46.000Z" + }, + "end": { + "$date": "2020-10-19T01:54:48.000Z" + }, + "events": [ + { + "uuid": "a9dbb5cd-07c7-459b-a11f-91dae685138b", + "start": { + "$date": "2020-10-19T01:43:46.000Z" + }, + "end": { + "$date": "2020-10-19T01:54:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "476f374e-d602-4e8c-ae4b-33aeb2146f60", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T02:50:19.000Z" + }, + "end": { + "$date": "2020-10-19T03:07:19.000Z" + }, + "events": [ + { + "uuid": "7ab65b2e-7ffa-445c-91fb-b75ae28a2f7d", + "start": { + "$date": "2020-10-19T02:50:19.000Z" + }, + "end": { + "$date": "2020-10-19T03:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "9e2e7af8-0da2-4563-9c7e-41e11480f031", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-19T02:50:08.000Z" + }, + "end": { + "$date": "2020-10-19T02:51:23.000Z" + }, + "events": [ + { + "uuid": "d2e3d7cf-e1d5-411f-bf1f-8d1f4029f95e", + "start": { + "$date": "2020-10-19T02:50:08.000Z" + }, + "end": { + "$date": "2020-10-19T02:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a61d94d-b869-404d-a80a-c82bfa4531e0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T03:12:04.000Z" + }, + "end": { + "$date": "2020-10-19T03:33:37.000Z" + }, + "events": [ + { + "uuid": "36189f3e-669d-4b27-8ccf-c1a2729829b3", + "start": { + "$date": "2020-10-19T03:12:04.000Z" + }, + "end": { + "$date": "2020-10-19T03:33:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "21806871-9069-4099-82f5-b3498e73ff5f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-19T03:27:25.000Z" + }, + "end": { + "$date": "2020-10-19T04:41:43.000Z" + }, + "events": [ + { + "uuid": "ab46ca52-68d2-4a21-80f1-dbf2012cd95d", + "start": { + "$date": "2020-10-19T03:27:25.000Z" + }, + "end": { + "$date": "2020-10-19T04:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "eb1fd504-a8d5-4fcc-89ac-c662e8130a2f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-19T03:30:23.000Z" + }, + "end": { + "$date": "2020-10-19T04:41:31.000Z" + }, + "events": [ + { + "uuid": "44d2b7c6-034a-4216-b8bc-bc8218634c9d", + "start": { + "$date": "2020-10-19T03:30:23.000Z" + }, + "end": { + "$date": "2020-10-19T04:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cb8ebee-1945-4abb-8508-7038d5bc2ddc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T03:42:55.000Z" + }, + "end": { + "$date": "2020-10-19T04:03:09.000Z" + }, + "events": [ + { + "uuid": "f6211ca7-b045-4889-bd21-f10047f312b6", + "start": { + "$date": "2020-10-19T03:42:55.000Z" + }, + "end": { + "$date": "2020-10-19T04:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fd7e1d5-919a-494c-be81-e7d0176c6805", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-19T03:42:57.000Z" + }, + "end": { + "$date": "2020-10-19T04:03:09.000Z" + }, + "events": [ + { + "uuid": "4873a09d-1aeb-46f8-a1ea-82aba1c7eaf3", + "start": { + "$date": "2020-10-19T03:42:57.000Z" + }, + "end": { + "$date": "2020-10-19T04:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9060f35-ce53-4dee-8f35-63e9aab43706", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T04:15:08.000Z" + }, + "end": { + "$date": "2020-10-19T04:45:56.000Z" + }, + "events": [ + { + "uuid": "dfc40f4d-6872-4b64-bff7-d1a1ce7c9b50", + "start": { + "$date": "2020-10-19T04:15:08.000Z" + }, + "end": { + "$date": "2020-10-19T04:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c890b4f-2168-439e-9ab1-25dae875e19d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-19T04:16:52.000Z" + }, + "end": { + "$date": "2020-10-19T04:45:53.000Z" + }, + "events": [ + { + "uuid": "13bbbed5-a35b-4896-8678-9b3dc1f6d4ae", + "start": { + "$date": "2020-10-19T04:16:52.000Z" + }, + "end": { + "$date": "2020-10-19T04:45:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2afe04a7-3de5-4a44-bfc9-3847e6227da3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-19T04:15:04.000Z" + }, + "end": { + "$date": "2020-10-19T04:46:01.000Z" + }, + "events": [ + { + "uuid": "d4021e96-b1fd-4183-8eb0-fb630b63c891", + "start": { + "$date": "2020-10-19T04:15:04.000Z" + }, + "end": { + "$date": "2020-10-19T04:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f0eb63b-a311-4a45-82e5-685f192b2256", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T04:54:59.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:43.000Z" + }, + "events": [ + { + "uuid": "a39e998c-98dd-4428-a34a-faa29c39e680", + "start": { + "$date": "2020-10-19T04:54:59.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2208274-f487-459e-9536-6edc6f80f01d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-19T04:54:56.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:37.000Z" + }, + "events": [ + { + "uuid": "29697cd2-1b08-4d48-b317-9d1537b1aaf0", + "start": { + "$date": "2020-10-19T04:54:56.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70894600-e2c6-4d15-9734-67d265eea11d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-19T04:55:33.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:43.000Z" + }, + "events": [ + { + "uuid": "4953ff27-758b-41a3-8418-73bd5dd1fc86", + "start": { + "$date": "2020-10-19T04:55:33.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73fafe44-3b6f-4309-ae56-399f84065f70", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-19T04:54:52.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:43.000Z" + }, + "events": [ + { + "uuid": "2a61fa98-5d33-4743-8f27-174cba1bc308", + "start": { + "$date": "2020-10-19T04:54:52.000Z" + }, + "end": { + "$date": "2020-10-19T05:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81961d48-0b2c-4027-ac5f-25f793f9d612", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T05:27:10.000Z" + }, + "end": { + "$date": "2020-10-19T06:06:00.000Z" + }, + "events": [ + { + "uuid": "e603ce91-e4f2-42fd-b4f9-c5f4197739c3", + "start": { + "$date": "2020-10-19T05:27:10.000Z" + }, + "end": { + "$date": "2020-10-19T06:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcea24eb-98bf-40e3-b529-a0a9b27f2e03", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-19T05:27:07.000Z" + }, + "end": { + "$date": "2020-10-19T06:05:53.000Z" + }, + "events": [ + { + "uuid": "b39bc4d0-e0d9-4ff1-8d2b-6176c82315b0", + "start": { + "$date": "2020-10-19T05:27:07.000Z" + }, + "end": { + "$date": "2020-10-19T06:05:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b46d2e07-ae45-4774-af7a-4457f7c906fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-19T05:27:08.000Z" + }, + "end": { + "$date": "2020-10-19T06:05:55.000Z" + }, + "events": [ + { + "uuid": "3ead994b-2276-4a36-b8fd-00792e1fddb2", + "start": { + "$date": "2020-10-19T05:27:08.000Z" + }, + "end": { + "$date": "2020-10-19T06:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9fa26aa-22a1-43aa-9237-d251ee709a25", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-19T05:27:14.000Z" + }, + "end": { + "$date": "2020-10-19T06:06:01.000Z" + }, + "events": [ + { + "uuid": "ba9eaff7-7c32-47d5-9149-fc7417fe3c5f", + "start": { + "$date": "2020-10-19T05:27:14.000Z" + }, + "end": { + "$date": "2020-10-19T06:06:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fe0b56a5-f01c-4a8b-b6f6-095c558674d4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-19T05:35:03.000Z" + }, + "end": { + "$date": "2020-10-19T07:06:13.000Z" + }, + "events": [ + { + "uuid": "720086eb-6699-450f-90f5-ffd9d71d66b5", + "start": { + "$date": "2020-10-19T05:35:03.000Z" + }, + "end": { + "$date": "2020-10-19T07:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "90ad4e23-63af-4ad5-a8f5-63175b17e2f9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-19T06:07:28.000Z" + }, + "end": { + "$date": "2020-10-19T07:02:41.000Z" + }, + "events": [ + { + "uuid": "e9a1db23-9414-4922-8068-a300432d2e70", + "start": { + "$date": "2020-10-19T06:07:28.000Z" + }, + "end": { + "$date": "2020-10-19T07:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a052880d-9e8f-4014-98c3-4260938c30bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T06:24:53.000Z" + }, + "end": { + "$date": "2020-10-19T07:53:29.000Z" + }, + "events": [ + { + "uuid": "43aceeff-bff9-4fa4-b852-15c4bec75221", + "start": { + "$date": "2020-10-19T06:24:53.000Z" + }, + "end": { + "$date": "2020-10-19T07:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "76910ff1-a05e-4596-aada-9c52a9019cfd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-19T15:53:15.000Z" + }, + "end": { + "$date": "2020-10-19T16:26:31.000Z" + }, + "events": [ + { + "uuid": "a2cc0179-cc55-4eee-93c6-72fe84775503", + "start": { + "$date": "2020-10-19T15:53:15.000Z" + }, + "end": { + "$date": "2020-10-19T16:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cd50db78-7ec9-4c50-9066-f26bcc412087", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-19T17:13:59.000Z" + }, + "end": { + "$date": "2020-10-19T19:44:13.000Z" + }, + "events": [ + { + "uuid": "a556b9d1-1969-464f-b353-133e04f0e0bb", + "start": { + "$date": "2020-10-19T17:13:59.000Z" + }, + "end": { + "$date": "2020-10-19T19:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "86f42964-263f-4b96-a0c4-2828b1e7a3aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-19T17:16:41.000Z" + }, + "end": { + "$date": "2020-10-19T17:33:03.000Z" + }, + "events": [ + { + "uuid": "5dc8d61e-beed-40f2-a540-1c4f64608c48", + "start": { + "$date": "2020-10-19T17:16:41.000Z" + }, + "end": { + "$date": "2020-10-19T17:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "71b6d592-e63f-48b0-96a4-9a9345cdaf4c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-19T17:20:59.000Z" + }, + "end": { + "$date": "2020-10-19T17:55:23.000Z" + }, + "events": [ + { + "uuid": "3e630651-be2c-4059-ba1e-0f69fc491fb3", + "start": { + "$date": "2020-10-19T17:20:59.000Z" + }, + "end": { + "$date": "2020-10-19T17:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "93e0fd58-3257-4ef5-9de2-11ae376e0034", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-19T17:52:26.000Z" + }, + "end": { + "$date": "2020-10-19T21:56:15.000Z" + }, + "events": [ + { + "uuid": "c1116a61-4566-440b-b654-10d2eb38739f", + "start": { + "$date": "2020-10-19T17:52:26.000Z" + }, + "end": { + "$date": "2020-10-19T21:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "17a838cf-de6f-41b8-8604-8fe028486fec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-19T19:02:18.000Z" + }, + "end": { + "$date": "2020-10-19T19:26:50.000Z" + }, + "events": [ + { + "uuid": "acfbfd4d-437b-4469-a7e7-1f4ac099cae1", + "start": { + "$date": "2020-10-19T19:02:18.000Z" + }, + "end": { + "$date": "2020-10-19T19:26:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "869b5cf0-4bc3-42b1-93f9-cb5209e8eb32", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-19T19:33:46.000Z" + }, + "end": { + "$date": "2020-10-19T20:16:07.000Z" + }, + "events": [ + { + "uuid": "e2bbc5a0-8162-45de-a12b-973549c374dc", + "start": { + "$date": "2020-10-19T19:33:46.000Z" + }, + "end": { + "$date": "2020-10-19T20:16:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "587928d1-06b0-46c4-ab06-f7bab5a6fbe7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-19T21:43:50.000Z" + }, + "end": { + "$date": "2020-10-19T23:55:51.000Z" + }, + "events": [ + { + "uuid": "a332ac1f-b6ff-418b-ad5a-1c6cc27375c4", + "start": { + "$date": "2020-10-19T21:43:50.000Z" + }, + "end": { + "$date": "2020-10-19T23:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7fd82572-3465-4567-a94d-8e288da200b6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-19T21:47:58.000Z" + }, + "end": { + "$date": "2020-10-19T23:24:03.000Z" + }, + "events": [ + { + "uuid": "4fffed4e-8ffc-469c-89cf-37a83b0b5d7b", + "start": { + "$date": "2020-10-19T21:47:58.000Z" + }, + "end": { + "$date": "2020-10-19T23:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "a8883cac-7163-4075-80fa-f6c553dcb54a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-19T21:55:56.000Z" + }, + "end": { + "$date": "2020-10-19T21:59:08.000Z" + }, + "events": [ + { + "uuid": "160b8fce-4413-4e83-bd03-5a59397dbc7a", + "start": { + "$date": "2020-10-19T21:55:56.000Z" + }, + "end": { + "$date": "2020-10-19T21:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1bb86133-5cb4-4693-9130-b7c879972ea3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-19T22:06:42.000Z" + }, + "end": { + "$date": "2020-10-19T22:46:34.000Z" + }, + "events": [ + { + "uuid": "a10b8403-697e-41ec-84b5-d98a83c9af76", + "start": { + "$date": "2020-10-19T22:06:42.000Z" + }, + "end": { + "$date": "2020-10-19T22:17:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb46c8ef-94df-45a6-9efe-22cfe63b764a", + "start": { + "$date": "2020-10-19T22:17:42.000Z" + }, + "end": { + "$date": "2020-10-19T22:19:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2b96a64-113e-4e93-9dd4-54f6f67f6ad9", + "start": { + "$date": "2020-10-19T22:19:42.000Z" + }, + "end": { + "$date": "2020-10-19T22:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2e7c949-3f6c-4610-b065-b04a3c5c088e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-19T23:08:00.000Z" + }, + "end": { + "$date": "2020-10-19T23:30:25.000Z" + }, + "events": [ + { + "uuid": "589eaf5c-eedf-420b-9ece-89fd7394a791", + "start": { + "$date": "2020-10-19T23:08:00.000Z" + }, + "end": { + "$date": "2020-10-19T23:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62ab9e3c-2ad9-425e-86e7-ed8811806360", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-19T23:34:41.000Z" + }, + "end": { + "$date": "2020-10-19T23:41:26.000Z" + }, + "events": [ + { + "uuid": "600ee004-34f0-4985-b862-397c8aa53c96", + "start": { + "$date": "2020-10-19T23:34:41.000Z" + }, + "end": { + "$date": "2020-10-19T23:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "8c5117f4-7820-4942-bc78-c0f6b3723486", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-19T23:51:07.000Z" + }, + "end": { + "$date": "2020-10-20T00:23:23.000Z" + }, + "events": [ + { + "uuid": "6611279a-d81f-4bb1-85cb-5e975ae5407a", + "start": { + "$date": "2020-10-19T23:51:07.000Z" + }, + "end": { + "$date": "2020-10-20T00:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "680f8b12-eb25-47e8-9d53-a36b2f06fb32", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-20T00:27:38.000Z" + }, + "end": { + "$date": "2020-10-20T00:38:58.000Z" + }, + "events": [ + { + "uuid": "80facbc7-c2a7-4b15-96c2-6a88118bca72", + "start": { + "$date": "2020-10-20T00:27:38.000Z" + }, + "end": { + "$date": "2020-10-20T00:38:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "028841bc-3734-40c5-873d-7b0791dc1235", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-20T00:34:21.000Z" + }, + "end": { + "$date": "2020-10-20T00:35:27.000Z" + }, + "events": [ + { + "uuid": "261dc7c3-949d-442d-8671-46be8cbcb1df", + "start": { + "$date": "2020-10-20T00:34:21.000Z" + }, + "end": { + "$date": "2020-10-20T00:35:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5652f89a-b3d2-4c83-8617-5ee9431aca66", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-20T00:37:17.000Z" + }, + "end": { + "$date": "2020-10-20T01:25:27.000Z" + }, + "events": [ + { + "uuid": "43c36775-8dca-4c3b-9f1a-abf40c882692", + "start": { + "$date": "2020-10-20T00:37:17.000Z" + }, + "end": { + "$date": "2020-10-20T01:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d873912-5239-4027-aa0b-cde3c6b2eab8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-20T00:48:27.000Z" + }, + "end": { + "$date": "2020-10-20T01:25:17.000Z" + }, + "events": [ + { + "uuid": "31f3fee2-58d9-43cf-8577-25fabbfaf22e", + "start": { + "$date": "2020-10-20T00:48:27.000Z" + }, + "end": { + "$date": "2020-10-20T01:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "195ea88c-02ba-4aff-a854-c92cfdbd04e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-20T00:45:14.000Z" + }, + "end": { + "$date": "2020-10-20T00:47:04.000Z" + }, + "events": [ + { + "uuid": "5da90fa1-f145-4d89-8f83-1d5364ba3955", + "start": { + "$date": "2020-10-20T00:45:14.000Z" + }, + "end": { + "$date": "2020-10-20T00:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "9a0abcb9-042f-45ba-a01e-8fbe29a7ffeb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-20T00:45:16.000Z" + }, + "end": { + "$date": "2020-10-20T00:46:18.000Z" + }, + "events": [ + { + "uuid": "d89c8b8f-c9f3-43ed-a03d-8a684e83cd43", + "start": { + "$date": "2020-10-20T00:45:16.000Z" + }, + "end": { + "$date": "2020-10-20T00:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28830307-0998-4b2d-a9a8-6e8feba55ff8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-20T00:47:21.000Z" + }, + "end": { + "$date": "2020-10-20T01:25:15.000Z" + }, + "events": [ + { + "uuid": "62679f82-2125-491d-a107-81a8b937de7a", + "start": { + "$date": "2020-10-20T00:47:21.000Z" + }, + "end": { + "$date": "2020-10-20T01:25:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "befc55a6-cd42-4bd1-97df-e2c9026114e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-20T01:02:51.000Z" + }, + "end": { + "$date": "2020-10-20T02:32:48.000Z" + }, + "events": [ + { + "uuid": "b48393f0-1090-4a41-852e-991b51bf0bb4", + "start": { + "$date": "2020-10-20T01:02:51.000Z" + }, + "end": { + "$date": "2020-10-20T02:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "3353a591-87be-463e-9a26-c5ecce260ae3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-20T00:47:54.000Z" + }, + "end": { + "$date": "2020-10-20T01:02:50.000Z" + }, + "events": [ + { + "uuid": "93cd283d-64de-4180-8776-fe007b1da6ff", + "start": { + "$date": "2020-10-20T00:47:54.000Z" + }, + "end": { + "$date": "2020-10-20T01:02:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9b172a4d-9243-48a8-aa52-fe299a85f33e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-20T01:03:05.000Z" + }, + "end": { + "$date": "2020-10-20T02:12:07.000Z" + }, + "events": [ + { + "uuid": "7605b396-81c7-4305-8424-b854988fc03c", + "start": { + "$date": "2020-10-20T01:03:05.000Z" + }, + "end": { + "$date": "2020-10-20T02:12:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9e6ce03c-b2c8-41f9-8951-7ef2392445f6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-20T01:21:55.000Z" + }, + "end": { + "$date": "2020-10-20T02:03:02.000Z" + }, + "events": [ + { + "uuid": "015e882d-2b7b-4b0d-b268-f43a103ce758", + "start": { + "$date": "2020-10-20T01:21:55.000Z" + }, + "end": { + "$date": "2020-10-20T02:03:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0441523-1bf4-4c23-9f8c-056023d9640d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-20T01:25:21.000Z" + }, + "end": { + "$date": "2020-10-20T01:29:41.000Z" + }, + "events": [ + { + "uuid": "5d1c1eba-ae0c-4c49-88e1-2e54b8411d8c", + "start": { + "$date": "2020-10-20T01:25:21.000Z" + }, + "end": { + "$date": "2020-10-20T01:29:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "29653fe7-ca00-4d88-802c-30995307a849", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-20T01:37:48.000Z" + }, + "end": { + "$date": "2020-10-20T02:58:45.000Z" + }, + "events": [ + { + "uuid": "055c86b5-8642-4ced-a3fa-8626f5528d64", + "start": { + "$date": "2020-10-20T01:37:48.000Z" + }, + "end": { + "$date": "2020-10-20T02:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c265ecb1-10d0-457b-9a68-e74194cf7702", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-20T02:33:23.000Z" + }, + "end": { + "$date": "2020-10-20T02:57:29.000Z" + }, + "events": [ + { + "uuid": "3204a4e7-8b28-46f3-af23-b149e51da624", + "start": { + "$date": "2020-10-20T02:33:23.000Z" + }, + "end": { + "$date": "2020-10-20T02:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "31b3c706-fb1e-4973-b186-62946569d319", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-20T02:52:31.000Z" + }, + "end": { + "$date": "2020-10-20T04:00:56.000Z" + }, + "events": [ + { + "uuid": "79801663-f197-492d-9c0d-3101b770d14a", + "start": { + "$date": "2020-10-20T02:52:31.000Z" + }, + "end": { + "$date": "2020-10-20T04:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b812df53-266b-4e0a-9cbc-c9d3997b3c31", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-20T02:54:38.000Z" + }, + "end": { + "$date": "2020-10-20T04:05:10.000Z" + }, + "events": [ + { + "uuid": "d53777c1-975e-4b18-8abc-95381ae4e0ac", + "start": { + "$date": "2020-10-20T02:54:38.000Z" + }, + "end": { + "$date": "2020-10-20T04:05:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "5ca766ff-7162-4c9e-a9c2-0dcb317f634b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-20T02:54:53.000Z" + }, + "end": { + "$date": "2020-10-20T03:03:13.000Z" + }, + "events": [ + { + "uuid": "23c87a44-db6b-4139-81b9-3cf1904a0d4d", + "start": { + "$date": "2020-10-20T02:54:53.000Z" + }, + "end": { + "$date": "2020-10-20T03:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5811f62a-2e3f-4c30-8d82-b97462a41e72", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-20T03:10:15.000Z" + }, + "end": { + "$date": "2020-10-20T07:36:13.000Z" + }, + "events": [ + { + "uuid": "e4516fd8-791f-4057-8c5c-91e1435b132b", + "start": { + "$date": "2020-10-20T03:10:15.000Z" + }, + "end": { + "$date": "2020-10-20T07:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "981d3654-2ceb-4089-b358-60207b469d3c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-20T03:22:04.000Z" + }, + "end": { + "$date": "2020-10-20T03:52:15.000Z" + }, + "events": [ + { + "uuid": "47b1039d-60e0-4e1f-abbe-385ee5ddcf15", + "start": { + "$date": "2020-10-20T03:22:04.000Z" + }, + "end": { + "$date": "2020-10-20T03:52:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e1387d9a-5af1-4299-917b-5220e5e422f0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-20T03:28:28.000Z" + }, + "end": { + "$date": "2020-10-20T05:41:50.000Z" + }, + "events": [ + { + "uuid": "7b980dd9-1f69-44ce-8f40-db4b29ebb45a", + "start": { + "$date": "2020-10-20T03:28:28.000Z" + }, + "end": { + "$date": "2020-10-20T05:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7258a4df-f694-4cd9-86b9-de35a02c6056", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-20T04:10:50.000Z" + }, + "end": { + "$date": "2020-10-20T04:58:04.000Z" + }, + "events": [ + { + "uuid": "7e80b58e-2a8c-40a3-96e1-41fd055d9b79", + "start": { + "$date": "2020-10-20T04:10:50.000Z" + }, + "end": { + "$date": "2020-10-20T04:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d9c7e42d-b308-41e4-bf22-4263ea8276b3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-20T04:17:31.000Z" + }, + "end": { + "$date": "2020-10-20T05:41:28.000Z" + }, + "events": [ + { + "uuid": "8389c058-d06b-46b9-b008-8d049fa33d8a", + "start": { + "$date": "2020-10-20T04:17:31.000Z" + }, + "end": { + "$date": "2020-10-20T05:41:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46579959-4795-4f9d-a780-2386cd7c089d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-20T04:43:20.000Z" + }, + "end": { + "$date": "2020-10-20T05:10:23.000Z" + }, + "events": [ + { + "uuid": "50fcbbaa-b101-4fe5-8a45-ede07bc8e2cf", + "start": { + "$date": "2020-10-20T04:43:20.000Z" + }, + "end": { + "$date": "2020-10-20T05:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a21e0216-c20b-4327-8037-13700543fa2d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-20T05:21:44.000Z" + }, + "end": { + "$date": "2020-10-20T05:51:10.000Z" + }, + "events": [ + { + "uuid": "a803b5ab-d564-4a37-aafa-630f0ba7ad2b", + "start": { + "$date": "2020-10-20T05:21:44.000Z" + }, + "end": { + "$date": "2020-10-20T05:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a920b01e-1208-470e-ae70-8b6ea1bc70d8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-20T05:31:36.000Z" + }, + "end": { + "$date": "2020-10-20T06:04:09.000Z" + }, + "events": [ + { + "uuid": "7e104f6c-118c-401f-83f9-b5d416fdea6a", + "start": { + "$date": "2020-10-20T05:31:36.000Z" + }, + "end": { + "$date": "2020-10-20T06:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "d56d54e8-c215-4ed5-be77-21de72d2bc82", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-20T05:41:25.000Z" + }, + "end": { + "$date": "2020-10-20T07:19:06.000Z" + }, + "events": [ + { + "uuid": "a3a4e490-7916-4ce9-85e8-2c5d3b8bd79c", + "start": { + "$date": "2020-10-20T05:41:25.000Z" + }, + "end": { + "$date": "2020-10-20T07:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "648011c9-f6da-40c6-b6d6-f9200b5be39e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-20T15:03:30.000Z" + }, + "end": { + "$date": "2020-10-20T15:11:02.000Z" + }, + "events": [ + { + "uuid": "8913383d-a1af-4c5f-a980-bacd9ac3cc96", + "start": { + "$date": "2020-10-20T15:03:30.000Z" + }, + "end": { + "$date": "2020-10-20T15:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "01bdb5b9-1943-421a-b081-f5b03153ed66", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-20T15:12:07.000Z" + }, + "end": { + "$date": "2020-10-20T15:27:20.000Z" + }, + "events": [ + { + "uuid": "a65f7309-203b-4fcb-9d4c-243d1afa1ceb", + "start": { + "$date": "2020-10-20T15:12:07.000Z" + }, + "end": { + "$date": "2020-10-20T15:27:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "59858bf9-7787-4897-97de-42cd95bb006b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-20T15:12:08.000Z" + }, + "end": { + "$date": "2020-10-20T15:14:28.000Z" + }, + "events": [ + { + "uuid": "4d1d6461-593c-455e-8627-96b69a52e498", + "start": { + "$date": "2020-10-20T15:12:08.000Z" + }, + "end": { + "$date": "2020-10-20T15:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0ca2dd9d-3c59-49ad-b858-7d14561387a8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-20T16:32:07.000Z" + }, + "end": { + "$date": "2020-10-20T16:47:53.000Z" + }, + "events": [ + { + "uuid": "027402c2-7653-43c2-94cd-ea5603bf9077", + "start": { + "$date": "2020-10-20T16:32:07.000Z" + }, + "end": { + "$date": "2020-10-20T16:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "574b5591-e7a4-4b77-bc70-f560fc104dba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-20T18:28:10.000Z" + }, + "end": { + "$date": "2020-10-20T18:51:46.000Z" + }, + "events": [ + { + "uuid": "10814571-5798-4675-b999-6d3b895f2e67", + "start": { + "$date": "2020-10-20T18:28:10.000Z" + }, + "end": { + "$date": "2020-10-20T18:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3798add-1519-40b3-b35e-818e70e9b95c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-20T20:22:39.000Z" + }, + "end": { + "$date": "2020-10-20T20:26:13.000Z" + }, + "events": [ + { + "uuid": "81cdc7ea-8bde-43d2-a886-a8442eb09564", + "start": { + "$date": "2020-10-20T20:22:39.000Z" + }, + "end": { + "$date": "2020-10-20T20:26:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "b504ee2e-d77f-43cb-aa3c-4a6f2042367a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-20T20:53:33.000Z" + }, + "end": { + "$date": "2020-10-20T23:20:22.000Z" + }, + "events": [ + { + "uuid": "829f325f-1c5c-4422-a0ee-7bb5904e6232", + "start": { + "$date": "2020-10-20T20:53:33.000Z" + }, + "end": { + "$date": "2020-10-20T23:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "9bcee310-eede-4f58-8850-b273375a1512", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-20T21:42:14.000Z" + }, + "end": { + "$date": "2020-10-20T23:11:59.000Z" + }, + "events": [ + { + "uuid": "10b52b1c-c6e8-4b2e-a05f-8deaa5b0933c", + "start": { + "$date": "2020-10-20T21:42:14.000Z" + }, + "end": { + "$date": "2020-10-20T23:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "960bfe05-2633-4977-a2d2-7a47c857acc9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-20T21:39:06.000Z" + }, + "end": { + "$date": "2020-10-21T01:53:48.000Z" + }, + "events": [ + { + "uuid": "756f0119-fdbc-462e-9c9f-2b8de7ce8136", + "start": { + "$date": "2020-10-20T21:39:06.000Z" + }, + "end": { + "$date": "2020-10-21T01:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "79cca223-3cf2-47e4-9908-22d1e29c502f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-20T22:02:12.000Z" + }, + "end": { + "$date": "2020-10-20T22:54:38.000Z" + }, + "events": [ + { + "uuid": "866902d1-d13d-411d-b4e0-94e34d8423f5", + "start": { + "$date": "2020-10-20T22:02:12.000Z" + }, + "end": { + "$date": "2020-10-20T22:54:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0a9e28bf-5fa6-45cb-9382-995da39dba0f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-20T23:05:36.000Z" + }, + "end": { + "$date": "2020-10-21T00:41:12.000Z" + }, + "events": [ + { + "uuid": "0ccaf465-3a3b-4568-b254-499d15ef7d70", + "start": { + "$date": "2020-10-20T23:05:36.000Z" + }, + "end": { + "$date": "2020-10-21T00:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f474a333-dc4d-41b9-a1ea-71517bd3cf34", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-20T23:15:25.000Z" + }, + "end": { + "$date": "2020-10-20T23:39:00.000Z" + }, + "events": [ + { + "uuid": "46183b01-8338-47c2-bee7-df33468e80c9", + "start": { + "$date": "2020-10-20T23:15:25.000Z" + }, + "end": { + "$date": "2020-10-20T23:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e0c48a11-9d63-40fc-ac16-87e7c2fa394d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-20T23:38:00.000Z" + }, + "end": { + "$date": "2020-10-21T00:56:23.000Z" + }, + "events": [ + { + "uuid": "59a691f4-04e0-4873-a236-2705ae054a47", + "start": { + "$date": "2020-10-20T23:38:00.000Z" + }, + "end": { + "$date": "2020-10-21T00:55:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6c3cc17c-bf25-46bd-84bd-1a76d2fadaf8", + "start": { + "$date": "2020-10-21T00:55:00.000Z" + }, + "end": { + "$date": "2020-10-21T00:56:23.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "7c4562cb-b1d5-4caf-bc1e-dd91149a98a1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-20T23:40:01.000Z" + }, + "end": { + "$date": "2020-10-21T01:08:28.000Z" + }, + "events": [ + { + "uuid": "a49cff28-7c3c-4b3f-b052-541ae281949b", + "start": { + "$date": "2020-10-20T23:40:01.000Z" + }, + "end": { + "$date": "2020-10-21T01:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "18672779-7388-4f48-b911-fffca1b4cf57", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-20T23:47:13.000Z" + }, + "end": { + "$date": "2020-10-21T00:44:05.000Z" + }, + "events": [ + { + "uuid": "05548f0e-e8c4-4517-ad94-890ba30adbec", + "start": { + "$date": "2020-10-20T23:47:13.000Z" + }, + "end": { + "$date": "2020-10-21T00:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "173aef65-e8ee-4daf-8f72-190a98817594", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T00:26:23.000Z" + }, + "end": { + "$date": "2020-10-21T00:53:53.000Z" + }, + "events": [ + { + "uuid": "6c35ddd1-53bc-45b6-929a-5ec22508b3ac", + "start": { + "$date": "2020-10-21T00:26:23.000Z" + }, + "end": { + "$date": "2020-10-21T00:53:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6afe840f-0396-4955-961b-8a50e267ca65", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-21T00:26:21.000Z" + }, + "end": { + "$date": "2020-10-21T00:53:52.000Z" + }, + "events": [ + { + "uuid": "8660db34-46e7-446f-b5f0-34822a11df73", + "start": { + "$date": "2020-10-21T00:26:21.000Z" + }, + "end": { + "$date": "2020-10-21T00:53:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a980224f-4f28-4cbf-9db2-184510defe42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T00:59:44.000Z" + }, + "end": { + "$date": "2020-10-21T01:17:53.000Z" + }, + "events": [ + { + "uuid": "bc3db268-d971-40a4-8a6d-3ea229feaf5e", + "start": { + "$date": "2020-10-21T00:59:44.000Z" + }, + "end": { + "$date": "2020-10-21T01:17:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac219a32-2bfd-4c76-83ae-8a72da3a4d3f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-21T00:59:43.000Z" + }, + "end": { + "$date": "2020-10-21T01:17:59.000Z" + }, + "events": [ + { + "uuid": "4a5ca07e-3aaf-43e2-8cc9-41e4f0b27833", + "start": { + "$date": "2020-10-21T00:59:43.000Z" + }, + "end": { + "$date": "2020-10-21T01:17:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24c9196c-476e-4807-9d5d-2d1628577dba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T01:21:20.000Z" + }, + "end": { + "$date": "2020-10-21T01:43:23.000Z" + }, + "events": [ + { + "uuid": "3a5d476c-c68d-4b5f-a945-0f2dc554733b", + "start": { + "$date": "2020-10-21T01:21:20.000Z" + }, + "end": { + "$date": "2020-10-21T01:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d04f4649-9694-447c-8df9-6b59c2bd9415", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-21T01:21:19.000Z" + }, + "end": { + "$date": "2020-10-21T01:43:26.000Z" + }, + "events": [ + { + "uuid": "1f0cb70b-eb6e-4e3e-95d3-57b6a39b3f95", + "start": { + "$date": "2020-10-21T01:21:19.000Z" + }, + "end": { + "$date": "2020-10-21T01:43:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "de1c127e-dad6-4215-9473-282695b30e93", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-21T01:48:19.000Z" + }, + "end": { + "$date": "2020-10-21T01:52:07.000Z" + }, + "events": [ + { + "uuid": "a58d91a8-3a05-4706-96e3-70270e724779", + "start": { + "$date": "2020-10-21T01:48:19.000Z" + }, + "end": { + "$date": "2020-10-21T01:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "beedb122-a9ff-4d73-afb4-e414fb6bbe40", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-21T01:55:06.000Z" + }, + "end": { + "$date": "2020-10-21T01:57:37.000Z" + }, + "events": [ + { + "uuid": "138c3ff3-f1cd-496f-ae6e-dd1b84bf7876", + "start": { + "$date": "2020-10-21T01:55:06.000Z" + }, + "end": { + "$date": "2020-10-21T01:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "23da636a-b52d-46d1-b4f9-38e52708616f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-21T02:13:52.000Z" + }, + "end": { + "$date": "2020-10-21T05:54:53.000Z" + }, + "events": [ + { + "uuid": "6ca506c5-deba-4afb-bc53-1361a7a71997", + "start": { + "$date": "2020-10-21T02:13:52.000Z" + }, + "end": { + "$date": "2020-10-21T05:54:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "da91d6de-b4f9-44d9-8008-f665cc9f1bf6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-21T02:21:59.000Z" + }, + "end": { + "$date": "2020-10-21T03:20:42.000Z" + }, + "events": [ + { + "uuid": "2db48d93-9c9a-4f3e-98bf-f5d4c863611c", + "start": { + "$date": "2020-10-21T02:21:59.000Z" + }, + "end": { + "$date": "2020-10-21T03:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5349c8ac-a304-4edf-ab56-169c92dc6ff6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-21T02:58:28.000Z" + }, + "end": { + "$date": "2020-10-21T03:32:31.000Z" + }, + "events": [ + { + "uuid": "09fa0cce-d1e9-4b1f-8cf2-71253e11056d", + "start": { + "$date": "2020-10-21T02:58:28.000Z" + }, + "end": { + "$date": "2020-10-21T03:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7eb5974d-7919-4877-aeb3-88b496b599de", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-21T02:30:12.000Z" + }, + "end": { + "$date": "2020-10-21T05:13:46.000Z" + }, + "events": [ + { + "uuid": "2adaff7d-97b4-4769-8dbb-efabf632eb36", + "start": { + "$date": "2020-10-21T02:30:12.000Z" + }, + "end": { + "$date": "2020-10-21T05:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "637eb0bb-739f-4008-a889-c5dad1c0fdc7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-21T02:58:00.000Z" + }, + "end": { + "$date": "2020-10-21T03:33:51.000Z" + }, + "events": [ + { + "uuid": "6401c98c-28ce-4aa3-a5f9-898f9ed38a46", + "start": { + "$date": "2020-10-21T02:58:00.000Z" + }, + "end": { + "$date": "2020-10-21T03:33:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dc89f961-930a-4a8c-9422-d744aecef762", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-21T03:21:15.000Z" + }, + "end": { + "$date": "2020-10-21T04:21:29.000Z" + }, + "events": [ + { + "uuid": "ecf411c7-eb1c-48d4-88bb-3eb020625ba4", + "start": { + "$date": "2020-10-21T03:21:15.000Z" + }, + "end": { + "$date": "2020-10-21T04:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "076defc8-9cb2-4980-979a-2bdbeac15d9e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-21T03:24:13.000Z" + }, + "end": { + "$date": "2020-10-21T04:29:36.000Z" + }, + "events": [ + { + "uuid": "e1d80637-0416-4157-af43-56aa8a3ec51d", + "start": { + "$date": "2020-10-21T03:24:13.000Z" + }, + "end": { + "$date": "2020-10-21T04:29:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6291347a-0d28-48ea-b95c-d73cfe66619d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-21T03:37:05.000Z" + }, + "end": { + "$date": "2020-10-21T04:10:53.000Z" + }, + "events": [ + { + "uuid": "e9b464f3-bcd8-49ce-a875-e8f4578b7d5a", + "start": { + "$date": "2020-10-21T03:37:05.000Z" + }, + "end": { + "$date": "2020-10-21T04:10:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1dabd631-a92f-4545-8613-1a00d83b675a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-21T03:35:04.000Z" + }, + "end": { + "$date": "2020-10-21T04:11:38.000Z" + }, + "events": [ + { + "uuid": "a6f1f0b4-443d-462e-bca3-7e26ea96ef8f", + "start": { + "$date": "2020-10-21T03:35:04.000Z" + }, + "end": { + "$date": "2020-10-21T04:11:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "c6809d13-e0a3-4a0d-9397-af1a9cb20794", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-21T04:26:10.000Z" + }, + "end": { + "$date": "2020-10-21T04:37:15.000Z" + }, + "events": [ + { + "uuid": "403b493b-3f3e-4955-bd2b-cd18606270cb", + "start": { + "$date": "2020-10-21T04:26:10.000Z" + }, + "end": { + "$date": "2020-10-21T04:37:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "468d96ed-447a-4fa4-a22e-86f45c0a1137", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-21T04:34:14.000Z" + }, + "end": { + "$date": "2020-10-21T05:05:58.000Z" + }, + "events": [ + { + "uuid": "13a684f9-11e7-4907-bb51-8a3ae0dfab33", + "start": { + "$date": "2020-10-21T04:34:14.000Z" + }, + "end": { + "$date": "2020-10-21T05:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "20aabd48-9902-4f90-a2da-7f097399c9aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-21T04:39:05.000Z" + }, + "end": { + "$date": "2020-10-21T05:13:46.000Z" + }, + "events": [ + { + "uuid": "a548d918-3ba4-4ad1-a567-8a7a235d972c", + "start": { + "$date": "2020-10-21T04:39:05.000Z" + }, + "end": { + "$date": "2020-10-21T05:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c5d8eef-2ba2-42a7-8fc7-bfb68666c170", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-21T05:20:48.000Z" + }, + "end": { + "$date": "2020-10-21T05:46:00.000Z" + }, + "events": [ + { + "uuid": "3fbdd498-af5e-4499-8fb3-69cc91094188", + "start": { + "$date": "2020-10-21T05:20:48.000Z" + }, + "end": { + "$date": "2020-10-21T05:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "b401c026-3c31-4bd3-a468-de7b1c08b500", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-21T05:14:16.000Z" + }, + "end": { + "$date": "2020-10-21T06:01:53.000Z" + }, + "events": [ + { + "uuid": "4afed7e7-d8f5-4661-88ca-9085fe113d45", + "start": { + "$date": "2020-10-21T05:14:16.000Z" + }, + "end": { + "$date": "2020-10-21T06:01:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1da807d-3353-4219-93a4-0aa917188cae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T06:10:01.000Z" + }, + "end": { + "$date": "2020-10-21T06:45:27.000Z" + }, + "events": [ + { + "uuid": "ad865bc4-f6f9-4e15-9278-39272527163f", + "start": { + "$date": "2020-10-21T06:10:01.000Z" + }, + "end": { + "$date": "2020-10-21T06:45:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "079c4ad2-da1a-47c6-a155-3b6ffec18b4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T07:07:27.000Z" + }, + "end": { + "$date": "2020-10-21T07:07:35.000Z" + }, + "events": [ + { + "uuid": "49197beb-f567-4b97-ac7b-c83f5602325a", + "start": { + "$date": "2020-10-21T07:07:27.000Z" + }, + "end": { + "$date": "2020-10-21T07:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70641483-58e3-49ae-ae15-f59b16d1788e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-21T15:20:02.000Z" + }, + "end": { + "$date": "2020-10-21T15:52:41.000Z" + }, + "events": [ + { + "uuid": "5c4bc6e5-abfc-40c6-a2d3-d8c636112afe", + "start": { + "$date": "2020-10-21T15:20:02.000Z" + }, + "end": { + "$date": "2020-10-21T15:52:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "b5c24e35-5f71-4da4-a108-e5bff73236b6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-21T15:24:04.000Z" + }, + "end": { + "$date": "2020-10-21T15:26:30.000Z" + }, + "events": [ + { + "uuid": "6d954cde-ad07-417d-8a5e-5753e94c4421", + "start": { + "$date": "2020-10-21T15:24:04.000Z" + }, + "end": { + "$date": "2020-10-21T15:26:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "17bc0c98-edb4-4cb9-ac76-0c364727a3d2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-21T15:24:04.000Z" + }, + "end": { + "$date": "2020-10-21T16:45:01.000Z" + }, + "events": [ + { + "uuid": "2188f65a-9c6e-437b-b2c8-14b9d75e34e8", + "start": { + "$date": "2020-10-21T15:24:04.000Z" + }, + "end": { + "$date": "2020-10-21T16:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1b2a01ac-a5b7-46a6-90b8-549dadaf009b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-21T17:13:16.000Z" + }, + "end": { + "$date": "2020-10-21T19:39:46.000Z" + }, + "events": [ + { + "uuid": "6a037ae3-4c50-4a58-8f4a-3f3ba2d29979", + "start": { + "$date": "2020-10-21T17:13:16.000Z" + }, + "end": { + "$date": "2020-10-21T19:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "d66ccbe6-9f33-44b6-8abc-8e72bb4733a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-21T18:30:29.000Z" + }, + "end": { + "$date": "2020-10-21T18:52:55.000Z" + }, + "events": [ + { + "uuid": "27a3db51-93f1-4711-8099-7107d1963346", + "start": { + "$date": "2020-10-21T18:30:29.000Z" + }, + "end": { + "$date": "2020-10-21T18:52:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ba35307c-dafb-42ef-a680-33a50b9d4133", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-21T19:33:32.000Z" + }, + "end": { + "$date": "2020-10-21T19:57:42.000Z" + }, + "events": [ + { + "uuid": "305a4c19-f723-48a8-b328-61af12f55ca6", + "start": { + "$date": "2020-10-21T19:33:32.000Z" + }, + "end": { + "$date": "2020-10-21T19:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ccf7f940-148d-4be4-8df3-404fc4028f2e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T20:38:52.000Z" + }, + "end": { + "$date": "2020-10-21T20:54:33.000Z" + }, + "events": [ + { + "uuid": "d892999e-8f0c-4a1a-97fe-d82b7ffb1e9b", + "start": { + "$date": "2020-10-21T20:38:52.000Z" + }, + "end": { + "$date": "2020-10-21T20:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "103a98a1-060f-4547-9111-7533012adfda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T20:58:03.000Z" + }, + "end": { + "$date": "2020-10-21T21:11:20.000Z" + }, + "events": [ + { + "uuid": "f8bf9297-8c8e-4e98-8cd9-54c9bfede204", + "start": { + "$date": "2020-10-21T20:58:03.000Z" + }, + "end": { + "$date": "2020-10-21T21:11:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b055811c-56ee-4bc0-ae34-33243354c8c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T21:14:14.000Z" + }, + "end": { + "$date": "2020-10-21T21:40:40.000Z" + }, + "events": [ + { + "uuid": "4bcfcc12-4eda-4b2c-bfdb-434792e3c009", + "start": { + "$date": "2020-10-21T21:14:14.000Z" + }, + "end": { + "$date": "2020-10-21T21:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "aed65403-00ff-4439-8066-21d277935297", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-21T21:20:53.000Z" + }, + "end": { + "$date": "2020-10-21T23:07:20.000Z" + }, + "events": [ + { + "uuid": "6cf2fe0b-db6b-4de4-b6e8-160cbe614584", + "start": { + "$date": "2020-10-21T21:20:53.000Z" + }, + "end": { + "$date": "2020-10-21T23:07:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "21ee7fbd-86e2-4ecf-9778-29feffa1123e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-21T21:41:45.000Z" + }, + "end": { + "$date": "2020-10-21T23:04:11.000Z" + }, + "events": [ + { + "uuid": "f0b65d31-0d66-476a-9dbb-2bb9ea3d3e50", + "start": { + "$date": "2020-10-21T21:41:45.000Z" + }, + "end": { + "$date": "2020-10-21T23:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "465bfb58-6bd7-4145-89fd-e64eda9928d8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-21T21:43:36.000Z" + }, + "end": { + "$date": "2020-10-21T23:01:12.000Z" + }, + "events": [ + { + "uuid": "8cbdedef-d44f-4ad2-b085-b19504e21863", + "start": { + "$date": "2020-10-21T21:43:36.000Z" + }, + "end": { + "$date": "2020-10-21T23:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d1b7301d-b3c8-4acc-aa64-a310d02b2580", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-21T21:49:01.000Z" + }, + "end": { + "$date": "2020-10-21T22:30:40.000Z" + }, + "events": [ + { + "uuid": "e6ca811d-5015-489e-8f7a-5ea34dac7790", + "start": { + "$date": "2020-10-21T21:49:01.000Z" + }, + "end": { + "$date": "2020-10-21T22:30:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0ab12e41-7d1b-4f61-9d94-00ecbbd10503", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-21T21:51:20.000Z" + }, + "end": { + "$date": "2020-10-21T22:09:11.000Z" + }, + "events": [ + { + "uuid": "b3a83c5c-52a0-4f93-8114-efbaf40782e9", + "start": { + "$date": "2020-10-21T21:51:20.000Z" + }, + "end": { + "$date": "2020-10-21T22:09:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "97ea6a7b-9263-47a3-827f-1c7901823f64", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-21T22:19:01.000Z" + }, + "end": { + "$date": "2020-10-21T23:56:18.000Z" + }, + "events": [ + { + "uuid": "879ff5b2-6a3a-4045-89bb-33e05900e933", + "start": { + "$date": "2020-10-21T22:19:01.000Z" + }, + "end": { + "$date": "2020-10-21T23:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "eb663d5c-8740-43a3-a58f-ebfbbbb849ef", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-21T22:35:55.000Z" + }, + "end": { + "$date": "2020-10-21T23:48:28.000Z" + }, + "events": [ + { + "uuid": "7ae43559-a4cc-41d1-90c7-adab4374f8e6", + "start": { + "$date": "2020-10-21T22:35:55.000Z" + }, + "end": { + "$date": "2020-10-21T23:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf206654-f02f-40bc-b42d-bf072351ca54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-21T22:57:59.000Z" + }, + "end": { + "$date": "2020-10-21T23:31:07.000Z" + }, + "events": [ + { + "uuid": "42d53e8a-e20b-4651-bc33-7b44c5618620", + "start": { + "$date": "2020-10-21T22:57:59.000Z" + }, + "end": { + "$date": "2020-10-21T23:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a88f7a11-fd8f-462f-937e-640feb03603f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-21T23:25:49.000Z" + }, + "end": { + "$date": "2020-10-22T00:02:18.000Z" + }, + "events": [ + { + "uuid": "5471c85d-df56-4260-88fc-ac11c7fd8bc1", + "start": { + "$date": "2020-10-21T23:25:49.000Z" + }, + "end": { + "$date": "2020-10-22T00:02:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "556bf92e-d905-4d0a-9b16-d9666402771d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-22T00:03:32.000Z" + }, + "end": { + "$date": "2020-10-22T00:37:40.000Z" + }, + "events": [ + { + "uuid": "47140d6c-48c6-462c-acfc-0561429ec4ec", + "start": { + "$date": "2020-10-22T00:03:32.000Z" + }, + "end": { + "$date": "2020-10-22T00:37:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c57a94b3-8779-403b-b2a7-0cb6afbaabcd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T00:03:32.000Z" + }, + "end": { + "$date": "2020-10-22T00:37:46.000Z" + }, + "events": [ + { + "uuid": "7357b3f4-9305-4acb-aab2-498311d914ff", + "start": { + "$date": "2020-10-22T00:03:32.000Z" + }, + "end": { + "$date": "2020-10-22T00:37:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "cbfb3c6f-055e-46e8-a4c3-3c1c2c989d43", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-22T00:06:23.000Z" + }, + "end": { + "$date": "2020-10-22T00:29:35.000Z" + }, + "events": [ + { + "uuid": "0811cb76-1c0f-46bd-bb3a-0a623580f680", + "start": { + "$date": "2020-10-22T00:06:23.000Z" + }, + "end": { + "$date": "2020-10-22T00:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ed5e4716-e502-461d-8692-2cc826d6de80", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-22T00:12:55.000Z" + }, + "end": { + "$date": "2020-10-22T00:15:23.000Z" + }, + "events": [ + { + "uuid": "e8f67b58-c1e7-4886-ac4c-a60713955dcc", + "start": { + "$date": "2020-10-22T00:12:55.000Z" + }, + "end": { + "$date": "2020-10-22T00:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8ca9be53-88f8-4ac3-a2f5-cc3da8cc7ee9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-22T00:47:55.000Z" + }, + "end": { + "$date": "2020-10-22T01:50:43.000Z" + }, + "events": [ + { + "uuid": "a57209c2-3653-440b-b78e-68396e22296f", + "start": { + "$date": "2020-10-22T00:47:55.000Z" + }, + "end": { + "$date": "2020-10-22T01:50:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b80477f1-6578-443e-a6fa-302bc86cd77e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T00:55:07.000Z" + }, + "end": { + "$date": "2020-10-22T01:22:02.000Z" + }, + "events": [ + { + "uuid": "5abfdd92-be73-4456-b73c-1477a5eea7d3", + "start": { + "$date": "2020-10-22T00:55:07.000Z" + }, + "end": { + "$date": "2020-10-22T01:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c75c3446-265f-41ac-ad1d-7ff47e2d2d7e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T01:04:38.000Z" + }, + "end": { + "$date": "2020-10-22T02:49:34.000Z" + }, + "events": [ + { + "uuid": "233a1357-ba51-473e-9004-cafded5a71ef", + "start": { + "$date": "2020-10-22T01:04:38.000Z" + }, + "end": { + "$date": "2020-10-22T02:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "105057d4-70ab-48ec-9a7d-e20f012fbb14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-22T01:08:28.000Z" + }, + "end": { + "$date": "2020-10-22T03:04:13.000Z" + }, + "events": [ + { + "uuid": "850eaaa9-5121-4925-8a00-dbb274c93e92", + "start": { + "$date": "2020-10-22T01:08:28.000Z" + }, + "end": { + "$date": "2020-10-22T03:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "817b7ccc-17e1-404f-b202-e6110fa91312", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T02:28:21.000Z" + }, + "end": { + "$date": "2020-10-22T02:52:30.000Z" + }, + "events": [ + { + "uuid": "58811b46-e2b8-42c5-8352-d65427234239", + "start": { + "$date": "2020-10-22T02:28:21.000Z" + }, + "end": { + "$date": "2020-10-22T02:52:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "284f06cb-9d06-42b2-9d05-16cc9d06a4f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-22T01:41:39.000Z" + }, + "end": { + "$date": "2020-10-22T05:46:43.000Z" + }, + "events": [ + { + "uuid": "5d7cc203-2f07-4f7d-a152-dc37a9714849", + "start": { + "$date": "2020-10-22T01:41:39.000Z" + }, + "end": { + "$date": "2020-10-22T05:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a85d1b41-c92a-41fd-ad35-d0fcc4d84cff", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-22T02:00:36.000Z" + }, + "end": { + "$date": "2020-10-22T03:43:21.000Z" + }, + "events": [ + { + "uuid": "5870e724-505f-4043-ac3e-b142bef4e5de", + "start": { + "$date": "2020-10-22T02:00:36.000Z" + }, + "end": { + "$date": "2020-10-22T03:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "970c7e9f-bb1e-4f35-99b2-22830dd5369a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-22T02:02:03.000Z" + }, + "end": { + "$date": "2020-10-22T02:33:00.000Z" + }, + "events": [ + { + "uuid": "41951164-285e-4511-b9db-51fda771e193", + "start": { + "$date": "2020-10-22T02:02:03.000Z" + }, + "end": { + "$date": "2020-10-22T02:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c008cb78-fe75-445f-9b5b-2d73b30298a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-22T02:33:20.000Z" + }, + "end": { + "$date": "2020-10-22T04:06:14.000Z" + }, + "events": [ + { + "uuid": "0a60c03f-6084-4406-99f7-d97e388adfed", + "start": { + "$date": "2020-10-22T02:33:20.000Z" + }, + "end": { + "$date": "2020-10-22T04:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "369ae0c9-802b-4c33-a051-b86e514af3ad", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-22T02:36:27.000Z" + }, + "end": { + "$date": "2020-10-22T03:52:35.000Z" + }, + "events": [ + { + "uuid": "7fc2400b-b708-4ffd-b3b1-b9702a57367e", + "start": { + "$date": "2020-10-22T02:36:27.000Z" + }, + "end": { + "$date": "2020-10-22T03:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7076775f-da93-4ba8-8f0a-71e2d2065791", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T03:00:11.000Z" + }, + "end": { + "$date": "2020-10-22T03:37:42.000Z" + }, + "events": [ + { + "uuid": "dd56bb27-ff97-4a2f-a202-f83c960a262d", + "start": { + "$date": "2020-10-22T03:00:11.000Z" + }, + "end": { + "$date": "2020-10-22T03:37:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83b855ec-2cb2-4b60-b3c0-924bfb4d6143", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-22T03:00:37.000Z" + }, + "end": { + "$date": "2020-10-22T03:38:15.000Z" + }, + "events": [ + { + "uuid": "43646c08-3797-470d-b013-fc17d78d3457", + "start": { + "$date": "2020-10-22T03:00:37.000Z" + }, + "end": { + "$date": "2020-10-22T03:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8ece4868-7436-401a-8908-3d52dd3a7477", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-22T03:37:05.000Z" + }, + "end": { + "$date": "2020-10-22T04:37:45.000Z" + }, + "events": [ + { + "uuid": "ea393d87-659f-4c6a-8ae9-7981af1eb41f", + "start": { + "$date": "2020-10-22T03:37:05.000Z" + }, + "end": { + "$date": "2020-10-22T04:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bda6eab6-9f88-4afb-a679-c6ba16aedf5e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T03:46:07.000Z" + }, + "end": { + "$date": "2020-10-22T04:20:45.000Z" + }, + "events": [ + { + "uuid": "2456aa43-079b-419c-a547-4c9730063848", + "start": { + "$date": "2020-10-22T03:46:07.000Z" + }, + "end": { + "$date": "2020-10-22T04:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f5d5e02-b9e2-4a5e-ac36-245e343c2f9b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-22T05:00:42.000Z" + }, + "end": { + "$date": "2020-10-22T05:01:17.000Z" + }, + "events": [ + { + "uuid": "1b372bae-93fc-475f-aadf-6e6e20046ef4", + "start": { + "$date": "2020-10-22T05:00:42.000Z" + }, + "end": { + "$date": "2020-10-22T05:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "72975776-6a5e-4b21-8c7d-c4e010f10d57", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-22T03:46:49.000Z" + }, + "end": { + "$date": "2020-10-22T04:25:43.000Z" + }, + "events": [ + { + "uuid": "083cf737-721c-4f21-a73c-286ccf104a8c", + "start": { + "$date": "2020-10-22T03:46:49.000Z" + }, + "end": { + "$date": "2020-10-22T04:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "df140804-b335-41f3-81ac-29988e4fd666", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-10-22T04:19:02.000Z" + }, + "end": { + "$date": "2020-10-22T05:07:25.000Z" + }, + "events": [ + { + "uuid": "ddc60730-8439-461b-b327-60e13a18a46a", + "start": { + "$date": "2020-10-22T04:19:02.000Z" + }, + "end": { + "$date": "2020-10-22T05:07:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c5074b7-7e31-4496-9817-d98dbada14b6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-22T04:20:12.000Z" + }, + "end": { + "$date": "2020-10-22T04:57:45.000Z" + }, + "events": [ + { + "uuid": "a1931498-cbd7-4805-9830-08d008a20306", + "start": { + "$date": "2020-10-22T04:20:12.000Z" + }, + "end": { + "$date": "2020-10-22T04:57:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7176ec0e-9c49-4a6c-95dd-df0d770ce67e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T04:24:49.000Z" + }, + "end": { + "$date": "2020-10-22T05:00:54.000Z" + }, + "events": [ + { + "uuid": "69d1daa0-c7f0-4041-8481-3192cb339d5c", + "start": { + "$date": "2020-10-22T04:24:49.000Z" + }, + "end": { + "$date": "2020-10-22T05:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06cc34fd-a40c-4a52-a760-5aa2d048342d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T04:24:55.000Z" + }, + "end": { + "$date": "2020-10-22T05:00:45.000Z" + }, + "events": [ + { + "uuid": "af00b473-d169-4edb-a338-e0885b73d38e", + "start": { + "$date": "2020-10-22T04:24:55.000Z" + }, + "end": { + "$date": "2020-10-22T05:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00d24305-cde2-4817-ad38-7cbabb006381", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-22T07:05:13.000Z" + }, + "end": { + "$date": "2020-10-22T07:42:14.000Z" + }, + "events": [ + { + "uuid": "7071169d-947f-4b8d-ba2e-24da2930f3ac", + "start": { + "$date": "2020-10-22T07:05:13.000Z" + }, + "end": { + "$date": "2020-10-22T07:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "59096b5a-e48b-46e8-8243-2ff6ed298098", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-22T13:55:32.000Z" + }, + "end": { + "$date": "2020-10-22T16:15:35.000Z" + }, + "events": [ + { + "uuid": "43c5b92d-c68c-456a-b4ce-2de6660e1145", + "start": { + "$date": "2020-10-22T13:55:32.000Z" + }, + "end": { + "$date": "2020-10-22T16:15:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "a8dc64bf-e4e2-40c0-9b5a-035a1092c85a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-22T14:03:11.000Z" + }, + "end": { + "$date": "2020-10-22T14:47:08.000Z" + }, + "events": [ + { + "uuid": "7d5826d8-2f3f-48cc-a67c-f5f0cf866684", + "start": { + "$date": "2020-10-22T14:03:11.000Z" + }, + "end": { + "$date": "2020-10-22T14:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "fd0cec1a-9579-4f9b-bc43-c2c1ed78bcbf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-22T15:16:34.000Z" + }, + "end": { + "$date": "2020-10-22T16:09:26.000Z" + }, + "events": [ + { + "uuid": "ce91904e-23d0-41c3-8e8a-21762be72e95", + "start": { + "$date": "2020-10-22T15:16:34.000Z" + }, + "end": { + "$date": "2020-10-22T16:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7e5fb98-8db7-4aa1-98e7-7d55a5b9a63c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T17:40:12.000Z" + }, + "end": { + "$date": "2020-10-22T17:57:20.000Z" + }, + "events": [ + { + "uuid": "1e35e568-1a44-4fb9-b2ba-cd4f60457292", + "start": { + "$date": "2020-10-22T17:40:12.000Z" + }, + "end": { + "$date": "2020-10-22T17:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c2741993-3158-49aa-8c42-517a613f3a4a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-22T18:57:59.000Z" + }, + "end": { + "$date": "2020-10-22T20:14:01.000Z" + }, + "events": [ + { + "uuid": "cac0ad50-6fb5-4556-9fff-3882e15d30b4", + "start": { + "$date": "2020-10-22T18:57:59.000Z" + }, + "end": { + "$date": "2020-10-22T20:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44b9896d-54db-45f3-bab4-ea84c0a85be2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T19:14:09.000Z" + }, + "end": { + "$date": "2020-10-22T19:27:16.000Z" + }, + "events": [ + { + "uuid": "4fada79b-7ea9-46eb-a9b7-1845075ebd61", + "start": { + "$date": "2020-10-22T19:14:09.000Z" + }, + "end": { + "$date": "2020-10-22T19:27:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f575fefb-ef6e-4c29-8663-77f08204f511", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T19:27:54.000Z" + }, + "end": { + "$date": "2020-10-22T19:29:48.000Z" + }, + "events": [ + { + "uuid": "f6302d5d-ccde-4a82-a9df-9f7b9b6bc18a", + "start": { + "$date": "2020-10-22T19:27:54.000Z" + }, + "end": { + "$date": "2020-10-22T19:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f9f3993-333f-4aa2-b476-4b57242e92bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-22T20:48:40.000Z" + }, + "end": { + "$date": "2020-10-22T21:21:42.000Z" + }, + "events": [ + { + "uuid": "33d0e38c-4f1f-4185-adff-6f0ce5661a74", + "start": { + "$date": "2020-10-22T20:48:40.000Z" + }, + "end": { + "$date": "2020-10-22T21:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6d74182e-8d33-4147-874d-6a9c2d076aaa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-22T20:57:32.000Z" + }, + "end": { + "$date": "2020-10-22T21:03:22.000Z" + }, + "events": [ + { + "uuid": "77b93524-2705-49ec-a386-4c88078688af", + "start": { + "$date": "2020-10-22T20:57:32.000Z" + }, + "end": { + "$date": "2020-10-22T21:03:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "401c9c2f-b12d-4be3-aae8-e7542e917e86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-22T21:03:15.000Z" + }, + "end": { + "$date": "2020-10-22T23:06:17.000Z" + }, + "events": [ + { + "uuid": "2394cd7b-e340-41d4-a359-bbf7a504d16f", + "start": { + "$date": "2020-10-22T21:03:15.000Z" + }, + "end": { + "$date": "2020-10-22T23:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "13a5aada-cb51-49cd-9341-df2865cc9394", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-22T21:14:29.000Z" + }, + "end": { + "$date": "2020-10-22T21:54:10.000Z" + }, + "events": [ + { + "uuid": "53a40eb5-be76-4edf-ade3-0662c20eca8b", + "start": { + "$date": "2020-10-22T21:14:29.000Z" + }, + "end": { + "$date": "2020-10-22T21:54:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "205f9689-f431-4ac9-a669-ab0a81e1f6a3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-22T21:22:51.000Z" + }, + "end": { + "$date": "2020-10-22T21:58:15.000Z" + }, + "events": [ + { + "uuid": "45efd5ce-4509-4ef9-9ebf-b7c55b176373", + "start": { + "$date": "2020-10-22T21:22:51.000Z" + }, + "end": { + "$date": "2020-10-22T21:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "27eb8268-8422-4e2c-b252-586535e426ef", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-22T21:37:23.000Z" + }, + "end": { + "$date": "2020-10-22T23:37:16.000Z" + }, + "events": [ + { + "uuid": "bbd3a757-46ff-4b5e-8c29-d5613d2adcac", + "start": { + "$date": "2020-10-22T21:37:23.000Z" + }, + "end": { + "$date": "2020-10-22T23:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1dc6eab-6d7b-43a4-a594-737af5b04b2f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T22:24:51.000Z" + }, + "end": { + "$date": "2020-10-22T22:48:53.000Z" + }, + "events": [ + { + "uuid": "add25c8c-2918-4060-b78c-9fb0cf374e94", + "start": { + "$date": "2020-10-22T22:24:51.000Z" + }, + "end": { + "$date": "2020-10-22T22:48:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "0c0940a6-7608-47da-84bb-9d4d58c9c353", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-22T22:49:32.000Z" + }, + "end": { + "$date": "2020-10-22T23:28:39.000Z" + }, + "events": [ + { + "uuid": "0d0a495d-d72e-45e9-9472-b80befdb8c97", + "start": { + "$date": "2020-10-22T22:49:32.000Z" + }, + "end": { + "$date": "2020-10-22T23:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3016eb4d-e0c4-4faf-ad2b-724f8f69dd7a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-23T00:15:41.000Z" + }, + "end": { + "$date": "2020-10-23T00:43:19.000Z" + }, + "events": [ + { + "uuid": "239ce278-53fd-433b-a32c-2d67f0c8e97a", + "start": { + "$date": "2020-10-23T00:15:41.000Z" + }, + "end": { + "$date": "2020-10-23T00:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82e128f6-be3d-413b-90bd-21bf1970d826", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-22T23:39:07.000Z" + }, + "end": { + "$date": "2020-10-23T00:13:28.000Z" + }, + "events": [ + { + "uuid": "e3c2b695-86e6-40d3-8508-446e96a64577", + "start": { + "$date": "2020-10-22T23:39:07.000Z" + }, + "end": { + "$date": "2020-10-23T00:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81d88b8d-118b-4295-bcee-662287327909", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-23T01:27:07.000Z" + }, + "end": { + "$date": "2020-10-23T02:15:47.000Z" + }, + "events": [ + { + "uuid": "e71eb44b-0096-4068-b0f0-28aab74c75bf", + "start": { + "$date": "2020-10-23T01:27:07.000Z" + }, + "end": { + "$date": "2020-10-23T01:43:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "485d282b-cbbd-436a-a84a-7ff896e56baa", + "start": { + "$date": "2020-10-23T01:43:07.000Z" + }, + "end": { + "$date": "2020-10-23T02:15:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea480e13-d100-4b7f-b104-473dce864915", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-23T00:14:30.000Z" + }, + "end": { + "$date": "2020-10-23T00:43:30.000Z" + }, + "events": [ + { + "uuid": "4da41578-52c5-4fc8-9136-2648ae9413f7", + "start": { + "$date": "2020-10-23T00:14:30.000Z" + }, + "end": { + "$date": "2020-10-23T00:43:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "45ef5528-81cd-4d36-9804-820df6af02e3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-23T00:15:02.000Z" + }, + "end": { + "$date": "2020-10-23T00:54:19.000Z" + }, + "events": [ + { + "uuid": "2342ffd0-b8bd-4502-a80f-981c0eac9ccf", + "start": { + "$date": "2020-10-23T00:15:02.000Z" + }, + "end": { + "$date": "2020-10-23T00:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8120db1c-c6ed-4fd5-b238-a42542eec0cd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-23T00:25:47.000Z" + }, + "end": { + "$date": "2020-10-23T00:58:37.000Z" + }, + "events": [ + { + "uuid": "70bdf5e5-066d-47c7-b7bf-d083650eb963", + "start": { + "$date": "2020-10-23T00:25:47.000Z" + }, + "end": { + "$date": "2020-10-23T00:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bcc47b3b-0de7-4004-afac-28443eb08b78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-23T00:45:41.000Z" + }, + "end": { + "$date": "2020-10-23T01:33:03.000Z" + }, + "events": [ + { + "uuid": "5b490886-b759-405f-afe2-5a6dcc0f35e1", + "start": { + "$date": "2020-10-23T00:45:41.000Z" + }, + "end": { + "$date": "2020-10-23T01:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "afeb2b00-ebde-42bb-802a-98288253ad1e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-23T01:33:35.000Z" + }, + "end": { + "$date": "2020-10-23T05:37:09.000Z" + }, + "events": [ + { + "uuid": "3ad46383-3ab7-4bad-9f1e-d84c8994eaa1", + "start": { + "$date": "2020-10-23T01:33:35.000Z" + }, + "end": { + "$date": "2020-10-23T05:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a059af44-f0da-455b-b1f9-18a06a99cff6", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-10-23T02:27:14.000Z" + }, + "end": { + "$date": "2020-10-23T03:23:35.000Z" + }, + "events": [ + { + "uuid": "ea79781b-1c04-47da-b12d-1582363428f2", + "start": { + "$date": "2020-10-23T02:27:14.000Z" + }, + "end": { + "$date": "2020-10-23T03:23:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "92101907-8ca5-4999-820e-b75a11cf042c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-23T02:31:39.000Z" + }, + "end": { + "$date": "2020-10-23T02:59:56.000Z" + }, + "events": [ + { + "uuid": "d6d9acf3-638d-4fcb-a309-72684a9c1f64", + "start": { + "$date": "2020-10-23T02:31:39.000Z" + }, + "end": { + "$date": "2020-10-23T02:59:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f4869de9-c4a0-4423-b20a-9a51fd8ae6a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-23T02:39:27.000Z" + }, + "end": { + "$date": "2020-10-23T07:02:32.000Z" + }, + "events": [ + { + "uuid": "8f10a847-f8d1-4c27-9437-159347132460", + "start": { + "$date": "2020-10-23T02:39:27.000Z" + }, + "end": { + "$date": "2020-10-23T07:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4934d897-7a9d-4c8c-8c10-bd3a7e05bd18", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-23T02:58:15.000Z" + }, + "end": { + "$date": "2020-10-23T03:32:13.000Z" + }, + "events": [ + { + "uuid": "d3078470-8ef6-462d-ab0a-445c1e8d040a", + "start": { + "$date": "2020-10-23T02:58:15.000Z" + }, + "end": { + "$date": "2020-10-23T03:32:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b1a164da-c57d-4a96-af62-d03664c36712", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-23T03:00:26.000Z" + }, + "end": { + "$date": "2020-10-23T04:15:23.000Z" + }, + "events": [ + { + "uuid": "12342f19-5b04-479c-877a-5b958eda782b", + "start": { + "$date": "2020-10-23T03:00:26.000Z" + }, + "end": { + "$date": "2020-10-23T04:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "80b44283-5c5e-42cd-9d09-8607af91b304", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-23T03:00:51.000Z" + }, + "end": { + "$date": "2020-10-23T05:28:10.000Z" + }, + "events": [ + { + "uuid": "3a4723f2-ee4f-4e31-8603-91eaa99a5e0a", + "start": { + "$date": "2020-10-23T03:00:51.000Z" + }, + "end": { + "$date": "2020-10-23T05:28:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f828044-966d-4d70-b512-261534f86c8d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-23T03:09:05.000Z" + }, + "end": { + "$date": "2020-10-23T03:38:01.000Z" + }, + "events": [ + { + "uuid": "2441ba6f-1767-4506-bbcb-d12371cda160", + "start": { + "$date": "2020-10-23T03:09:05.000Z" + }, + "end": { + "$date": "2020-10-23T03:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "fa828de8-c8db-4fb3-95cb-107b15399616", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-23T03:08:16.000Z" + }, + "end": { + "$date": "2020-10-23T04:00:46.000Z" + }, + "events": [ + { + "uuid": "5b4fdcef-f1e7-46ab-8dc3-c371519e5748", + "start": { + "$date": "2020-10-23T03:08:16.000Z" + }, + "end": { + "$date": "2020-10-23T04:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1046e1b-3ba5-4710-941b-186927271292", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-23T03:39:00.000Z" + }, + "end": { + "$date": "2020-10-23T04:57:02.000Z" + }, + "events": [ + { + "uuid": "284089a8-ee5a-4c80-81dc-fea6b80fef29", + "start": { + "$date": "2020-10-23T03:39:00.000Z" + }, + "end": { + "$date": "2020-10-23T04:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "aa6485a0-8a8a-4cad-84a4-fc54f4c7f7c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-23T03:53:24.000Z" + }, + "end": { + "$date": "2020-10-23T03:59:31.000Z" + }, + "events": [ + { + "uuid": "05a49c44-f1d7-4494-afac-5d1e2835234f", + "start": { + "$date": "2020-10-23T03:53:24.000Z" + }, + "end": { + "$date": "2020-10-23T03:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd4f336d-39ba-4010-be58-499064038af9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-23T04:35:07.000Z" + }, + "end": { + "$date": "2020-10-23T04:35:41.000Z" + }, + "events": [ + { + "uuid": "a17df5c6-ba6a-4651-8c8e-04ebb6d6efa7", + "start": { + "$date": "2020-10-23T04:35:07.000Z" + }, + "end": { + "$date": "2020-10-23T04:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c7046dbc-c4c3-4de3-92fb-bf74dd3eb72a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-23T04:14:10.000Z" + }, + "end": { + "$date": "2020-10-23T06:20:45.000Z" + }, + "events": [ + { + "uuid": "40029594-2eea-4da3-8f51-1270dc6b3203", + "start": { + "$date": "2020-10-23T04:14:10.000Z" + }, + "end": { + "$date": "2020-10-23T06:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "9f110bb9-7186-46db-9ba7-232590e45659", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-23T04:22:59.000Z" + }, + "end": { + "$date": "2020-10-23T05:30:45.000Z" + }, + "events": [ + { + "uuid": "63f60120-6cd3-4737-a33d-914b55abf291", + "start": { + "$date": "2020-10-23T04:22:59.000Z" + }, + "end": { + "$date": "2020-10-23T05:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7222d77b-cb58-4821-a83e-19e2f0e27972", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-23T04:33:21.000Z" + }, + "end": { + "$date": "2020-10-23T05:28:37.000Z" + }, + "events": [ + { + "uuid": "ffc173fb-2691-4a73-9214-8d9e793e46ee", + "start": { + "$date": "2020-10-23T04:33:21.000Z" + }, + "end": { + "$date": "2020-10-23T05:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30c42611-2798-4015-88a1-d58b7461d676", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-23T05:00:56.000Z" + }, + "end": { + "$date": "2020-10-23T05:36:52.000Z" + }, + "events": [ + { + "uuid": "49f54fc7-1462-4b9a-b7b4-d9a3143e57fd", + "start": { + "$date": "2020-10-23T05:00:56.000Z" + }, + "end": { + "$date": "2020-10-23T05:36:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e8b590f2-74c6-4766-9273-5d9566d6abff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-23T05:38:16.000Z" + }, + "end": { + "$date": "2020-10-23T06:14:07.000Z" + }, + "events": [ + { + "uuid": "c86b4b1e-dd06-4fac-9943-9393b28da86e", + "start": { + "$date": "2020-10-23T05:38:16.000Z" + }, + "end": { + "$date": "2020-10-23T06:14:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "df11decb-d945-422d-9397-daa88cf76b78", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-23T16:16:42.000Z" + }, + "end": { + "$date": "2020-10-23T19:06:30.000Z" + }, + "events": [ + { + "uuid": "52794074-d2b1-4105-a932-9f3fa7295c97", + "start": { + "$date": "2020-10-23T16:16:42.000Z" + }, + "end": { + "$date": "2020-10-23T16:32:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "377fd815-c166-4bc3-8dca-9014f4b781e7", + "start": { + "$date": "2020-10-23T16:32:42.000Z" + }, + "end": { + "$date": "2020-10-23T16:45:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e280aa6-e556-4521-a043-0e43d90dd86f", + "start": { + "$date": "2020-10-23T16:45:42.000Z" + }, + "end": { + "$date": "2020-10-23T19:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "b094fc50-7d31-4f1c-bfd8-18dd2667a0c0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-23T16:37:00.000Z" + }, + "end": { + "$date": "2020-10-23T18:30:41.000Z" + }, + "events": [ + { + "uuid": "11c38fa8-e664-4226-be1c-3b78ec3f9120", + "start": { + "$date": "2020-10-23T16:37:00.000Z" + }, + "end": { + "$date": "2020-10-23T18:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8fad107e-1678-4cd9-bce2-391698cf598d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-23T17:59:30.000Z" + }, + "end": { + "$date": "2020-10-23T19:53:33.000Z" + }, + "events": [ + { + "uuid": "6f07f6a3-c9a3-4aac-9a6e-c175c2285237", + "start": { + "$date": "2020-10-23T17:59:30.000Z" + }, + "end": { + "$date": "2020-10-23T19:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "892e652f-cd42-4fbf-9d6e-e33554cfe6d6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-23T20:19:52.000Z" + }, + "end": { + "$date": "2020-10-23T22:01:10.000Z" + }, + "events": [ + { + "uuid": "f38eeb86-315c-4cc5-a8e5-6eabeeeab220", + "start": { + "$date": "2020-10-23T20:19:52.000Z" + }, + "end": { + "$date": "2020-10-23T22:01:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2141ff4-cfd6-4f09-9ad9-5ac64a941c54", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-23T20:26:59.000Z" + }, + "end": { + "$date": "2020-10-23T20:50:23.000Z" + }, + "events": [ + { + "uuid": "3a920139-46e0-4c3a-a895-12b20b23b059", + "start": { + "$date": "2020-10-23T20:26:59.000Z" + }, + "end": { + "$date": "2020-10-23T20:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f72fc73e-4215-4e5c-b922-5c26e4bc6da3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-23T20:54:15.000Z" + }, + "end": { + "$date": "2020-10-23T21:11:59.000Z" + }, + "events": [ + { + "uuid": "4d527ed2-de03-47f8-8ba8-d3adfa585f61", + "start": { + "$date": "2020-10-23T20:54:15.000Z" + }, + "end": { + "$date": "2020-10-23T21:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f8587b4-6b17-4a52-b9b5-bcd47d7f2a6b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-23T20:58:26.000Z" + }, + "end": { + "$date": "2020-10-23T21:32:08.000Z" + }, + "events": [ + { + "uuid": "94bb0fd5-b2a2-4567-bd51-32eac03435b8", + "start": { + "$date": "2020-10-23T20:58:26.000Z" + }, + "end": { + "$date": "2020-10-23T21:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9be1998e-06da-4049-bfec-27b07670a431", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-23T21:12:55.000Z" + }, + "end": { + "$date": "2020-10-23T21:58:39.000Z" + }, + "events": [ + { + "uuid": "0cebe768-1eb6-4798-bf1a-8e0de9e33ae1", + "start": { + "$date": "2020-10-23T21:12:55.000Z" + }, + "end": { + "$date": "2020-10-23T21:58:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "852b496c-b6e1-403d-a20b-3f0ca9c4765b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-23T21:16:04.000Z" + }, + "end": { + "$date": "2020-10-23T22:18:25.000Z" + }, + "events": [ + { + "uuid": "b19b9fb7-91db-494f-b184-e6346b7d3a91", + "start": { + "$date": "2020-10-23T21:16:04.000Z" + }, + "end": { + "$date": "2020-10-23T22:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0b99c622-d5e5-449d-bdf5-3594e017353f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-23T21:39:49.000Z" + }, + "end": { + "$date": "2020-10-23T22:23:02.000Z" + }, + "events": [ + { + "uuid": "a5c87824-63ab-4e98-929b-a88b7834a41b", + "start": { + "$date": "2020-10-23T21:39:49.000Z" + }, + "end": { + "$date": "2020-10-23T22:23:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "9ab16a76-4733-4e89-b2f4-536b768bc394", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-23T22:21:50.000Z" + }, + "end": { + "$date": "2020-10-24T00:20:09.000Z" + }, + "events": [ + { + "uuid": "156123da-5820-4c1e-a76b-c44bdf3c6142", + "start": { + "$date": "2020-10-23T22:21:50.000Z" + }, + "end": { + "$date": "2020-10-24T00:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dd0a6dcd-671d-41b6-917a-59747a47745f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-23T22:27:17.000Z" + }, + "end": { + "$date": "2020-10-23T22:28:23.000Z" + }, + "events": [ + { + "uuid": "670756fb-3ebf-4749-8408-f8ebfbbaf01f", + "start": { + "$date": "2020-10-23T22:27:17.000Z" + }, + "end": { + "$date": "2020-10-23T22:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ade40d4d-1109-4966-9f7f-773bd3c32c16", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-23T22:38:09.000Z" + }, + "end": { + "$date": "2020-10-23T22:54:04.000Z" + }, + "events": [ + { + "uuid": "0c479117-7252-4143-b7ac-5419875e52c8", + "start": { + "$date": "2020-10-23T22:38:09.000Z" + }, + "end": { + "$date": "2020-10-23T22:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "30f7dfb9-9ca1-470f-ad02-a9e66decaf4b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-23T22:56:14.000Z" + }, + "end": { + "$date": "2020-10-23T23:34:35.000Z" + }, + "events": [ + { + "uuid": "7d1f6c4b-5e96-4751-a37a-1eb95d4db3ae", + "start": { + "$date": "2020-10-23T22:56:14.000Z" + }, + "end": { + "$date": "2020-10-23T23:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c8854580-5386-42cb-82c6-1d09696de43c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-23T23:36:43.000Z" + }, + "end": { + "$date": "2020-10-24T00:32:23.000Z" + }, + "events": [ + { + "uuid": "2578869d-2d0f-48aa-8735-f55b0804ade3", + "start": { + "$date": "2020-10-23T23:36:43.000Z" + }, + "end": { + "$date": "2020-10-24T00:32:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7151b5f9-c50f-4f57-afa8-6538777f3cfa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-23T23:55:13.000Z" + }, + "end": { + "$date": "2020-10-24T00:48:20.000Z" + }, + "events": [ + { + "uuid": "442a6402-5a40-4217-b1a9-d32799c21d2d", + "start": { + "$date": "2020-10-23T23:55:13.000Z" + }, + "end": { + "$date": "2020-10-24T00:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a691f7d6-b3ab-4027-b1c4-a756567583ab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-23T23:56:49.000Z" + }, + "end": { + "$date": "2020-10-24T00:10:58.000Z" + }, + "events": [ + { + "uuid": "3355579b-cb15-46dc-a5f7-4c90bc6bf2f1", + "start": { + "$date": "2020-10-23T23:56:49.000Z" + }, + "end": { + "$date": "2020-10-24T00:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de3e495f-5158-4e21-9db2-c6a3fdc7aa02", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T00:25:48.000Z" + }, + "end": { + "$date": "2020-10-24T00:50:01.000Z" + }, + "events": [ + { + "uuid": "3f271414-2748-4e7a-9537-3ff2568480ae", + "start": { + "$date": "2020-10-24T00:25:48.000Z" + }, + "end": { + "$date": "2020-10-24T00:50:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68cea8f5-a714-4637-8b82-debfd4365438", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T00:27:56.000Z" + }, + "end": { + "$date": "2020-10-24T00:50:02.000Z" + }, + "events": [ + { + "uuid": "1c9f5759-5aa3-40fe-bc6a-85f0ed10f50d", + "start": { + "$date": "2020-10-24T00:27:56.000Z" + }, + "end": { + "$date": "2020-10-24T00:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ed2f6428-7bdc-4966-b223-52d6d8d58a4d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-24T00:48:43.000Z" + }, + "end": { + "$date": "2020-10-24T03:13:11.000Z" + }, + "events": [ + { + "uuid": "0a890bb2-5e22-4923-a076-6eac09840a36", + "start": { + "$date": "2020-10-24T00:48:43.000Z" + }, + "end": { + "$date": "2020-10-24T03:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fcdcf54-60f7-46b6-b429-ee1b05063b62", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T00:53:07.000Z" + }, + "end": { + "$date": "2020-10-24T01:17:43.000Z" + }, + "events": [ + { + "uuid": "df977b71-c9f1-4404-a45b-a5c50f13f0d6", + "start": { + "$date": "2020-10-24T00:53:07.000Z" + }, + "end": { + "$date": "2020-10-24T01:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a7b86c2-7d52-4ab6-88f7-8ce6395e870c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T00:53:02.000Z" + }, + "end": { + "$date": "2020-10-24T01:17:33.000Z" + }, + "events": [ + { + "uuid": "9e62bf3e-1800-47e3-a29d-45cceccce48d", + "start": { + "$date": "2020-10-24T00:53:02.000Z" + }, + "end": { + "$date": "2020-10-24T01:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "511d889b-9515-48e3-bc67-d30d78e10f8f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-24T01:10:28.000Z" + }, + "end": { + "$date": "2020-10-24T10:55:12.000Z" + }, + "events": [ + { + "uuid": "2e70061a-9609-49e6-b351-fb541fc38251", + "start": { + "$date": "2020-10-24T01:10:28.000Z" + }, + "end": { + "$date": "2020-10-24T02:02:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d0eb1d2-4464-45ae-9bd1-0d62e514b65a", + "start": { + "$date": "2020-10-24T02:02:28.000Z" + }, + "end": { + "$date": "2020-10-24T10:55:12.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "c2781e37-b509-45e4-9a16-c011ab6f0a26", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T02:00:16.000Z" + }, + "end": { + "$date": "2020-10-24T02:49:17.000Z" + }, + "events": [ + { + "uuid": "2836a8ad-938f-425d-9245-29e24f720764", + "start": { + "$date": "2020-10-24T02:00:16.000Z" + }, + "end": { + "$date": "2020-10-24T02:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5627dff8-4f59-4e4e-afbc-fa36a44a6ead", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T01:17:33.000Z" + }, + "end": { + "$date": "2020-10-24T02:56:58.000Z" + }, + "events": [ + { + "uuid": "8c3099b5-30dc-41c8-988e-b769675617cb", + "start": { + "$date": "2020-10-24T01:17:33.000Z" + }, + "end": { + "$date": "2020-10-24T02:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "78d985dd-9cc9-469d-9567-8d482d6b8930", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-24T02:13:35.000Z" + }, + "end": { + "$date": "2020-10-24T02:14:50.000Z" + }, + "events": [ + { + "uuid": "00cb89fe-eac4-4ffe-9023-292ac3dac950", + "start": { + "$date": "2020-10-24T02:13:35.000Z" + }, + "end": { + "$date": "2020-10-24T02:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "7b7a6d77-40cb-4f9a-aef3-b84c7887ef4b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-24T02:14:56.000Z" + }, + "end": { + "$date": "2020-10-24T02:28:32.000Z" + }, + "events": [ + { + "uuid": "1f3a42d4-f24d-4d85-a790-2411715cf11a", + "start": { + "$date": "2020-10-24T02:14:56.000Z" + }, + "end": { + "$date": "2020-10-24T02:28:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "256e9796-8376-4e4e-b9e6-bb33ff2b1f68", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-24T02:42:35.000Z" + }, + "end": { + "$date": "2020-10-24T07:07:37.000Z" + }, + "events": [ + { + "uuid": "8ab0a241-0259-4f3f-bed1-fd038ddb33c6", + "start": { + "$date": "2020-10-24T02:42:35.000Z" + }, + "end": { + "$date": "2020-10-24T07:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dbbc81c9-24ad-4c7a-b352-4cabf0d37aef", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-24T03:07:45.000Z" + }, + "end": { + "$date": "2020-10-24T03:52:13.000Z" + }, + "events": [ + { + "uuid": "77f27299-8061-4c00-a463-1ee91f4f7e40", + "start": { + "$date": "2020-10-24T03:07:45.000Z" + }, + "end": { + "$date": "2020-10-24T03:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d4dd60af-a8bd-4669-930e-7b47b21075fd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-24T03:08:11.000Z" + }, + "end": { + "$date": "2020-10-24T03:20:00.000Z" + }, + "events": [ + { + "uuid": "0dd528f9-814c-4642-9562-33e5b9f656a2", + "start": { + "$date": "2020-10-24T03:08:11.000Z" + }, + "end": { + "$date": "2020-10-24T03:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "45bcd458-5ae9-4db7-8133-a3c523950fd1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-24T03:26:35.000Z" + }, + "end": { + "$date": "2020-10-24T03:28:38.000Z" + }, + "events": [ + { + "uuid": "fb679f80-ac8f-4578-9263-f0e91875e36a", + "start": { + "$date": "2020-10-24T03:26:35.000Z" + }, + "end": { + "$date": "2020-10-24T03:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0211db17-4fe6-4214-9885-4d6e4ff11962", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-24T03:32:27.000Z" + }, + "end": { + "$date": "2020-10-24T04:52:32.000Z" + }, + "events": [ + { + "uuid": "f28220fb-e592-4c61-bdc6-b0330a826583", + "start": { + "$date": "2020-10-24T03:32:27.000Z" + }, + "end": { + "$date": "2020-10-24T04:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "b4f61c2e-139f-49ca-b778-68698f815e24", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-24T03:59:08.000Z" + }, + "end": { + "$date": "2020-10-24T05:46:44.000Z" + }, + "events": [ + { + "uuid": "68f691d3-b70f-43d7-9e4e-1f830ab5e92d", + "start": { + "$date": "2020-10-24T03:59:08.000Z" + }, + "end": { + "$date": "2020-10-24T05:46:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "9dacf6a6-d351-4d0a-b189-311ccaaba233", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T03:59:28.000Z" + }, + "end": { + "$date": "2020-10-24T05:47:03.000Z" + }, + "events": [ + { + "uuid": "659cd9c9-694e-4258-bf0b-7103286430c0", + "start": { + "$date": "2020-10-24T03:59:28.000Z" + }, + "end": { + "$date": "2020-10-24T05:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92d42441-1108-45b8-b4c9-36fa554ca4a8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-24T04:00:05.000Z" + }, + "end": { + "$date": "2020-10-24T05:48:02.000Z" + }, + "events": [ + { + "uuid": "1a1a1ae9-7c3f-4dff-b838-e13d2d4e88fb", + "start": { + "$date": "2020-10-24T04:00:05.000Z" + }, + "end": { + "$date": "2020-10-24T05:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "8b214f85-eb9b-48b2-8eb8-f919fafcad76", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-24T04:05:59.000Z" + }, + "end": { + "$date": "2020-10-24T04:13:11.000Z" + }, + "events": [ + { + "uuid": "abccf933-2c84-4582-bb0f-82a3eec5d5c5", + "start": { + "$date": "2020-10-24T04:05:59.000Z" + }, + "end": { + "$date": "2020-10-24T04:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cdadc3d-43e6-4f96-bd8d-86a575d49b96", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T04:19:46.000Z" + }, + "end": { + "$date": "2020-10-24T04:25:02.000Z" + }, + "events": [ + { + "uuid": "1540f7eb-2128-4d4e-aa73-f0b561bf0e5f", + "start": { + "$date": "2020-10-24T04:19:46.000Z" + }, + "end": { + "$date": "2020-10-24T04:25:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30cc39d1-20ff-44df-9a7b-bbd618e2505f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T05:05:55.000Z" + }, + "end": { + "$date": "2020-10-24T05:06:20.000Z" + }, + "events": [ + { + "uuid": "3683437a-4ff8-4f15-8ba9-b63426efc636", + "start": { + "$date": "2020-10-24T05:05:55.000Z" + }, + "end": { + "$date": "2020-10-24T05:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "b8e165c5-095a-4f9a-ab8f-ff47c63d2e19", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-24T04:24:00.000Z" + }, + "end": { + "$date": "2020-10-24T04:53:38.000Z" + }, + "events": [ + { + "uuid": "54568b90-44e4-4a25-af49-48e3a0290020", + "start": { + "$date": "2020-10-24T04:24:00.000Z" + }, + "end": { + "$date": "2020-10-24T04:53:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e44d4499-96f3-4854-b17a-fba6f6017611", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T04:26:59.000Z" + }, + "end": { + "$date": "2020-10-24T04:41:33.000Z" + }, + "events": [ + { + "uuid": "c2ececbf-a628-4877-8446-28cefc60021e", + "start": { + "$date": "2020-10-24T04:26:59.000Z" + }, + "end": { + "$date": "2020-10-24T04:41:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58533bc8-7e67-4714-ba5f-428884784854", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-24T06:14:43.000Z" + }, + "end": { + "$date": "2020-10-24T06:14:59.000Z" + }, + "events": [ + { + "uuid": "de82fcd3-676d-4d25-8fd1-c41a337c2f7b", + "start": { + "$date": "2020-10-24T06:14:43.000Z" + }, + "end": { + "$date": "2020-10-24T06:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ca79ac5-f3e7-4d70-a91c-00663668b35d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T04:42:00.000Z" + }, + "end": { + "$date": "2020-10-24T07:58:53.000Z" + }, + "events": [ + { + "uuid": "c11d4d3e-8725-4992-bb7d-6f27838db7f1", + "start": { + "$date": "2020-10-24T04:42:00.000Z" + }, + "end": { + "$date": "2020-10-24T07:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "be7f79c0-d7bf-4955-abf2-f134ff7e15a8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-24T05:57:27.000Z" + }, + "end": { + "$date": "2020-10-24T08:23:48.000Z" + }, + "events": [ + { + "uuid": "afeff6a6-341a-4c05-9511-ce782758313c", + "start": { + "$date": "2020-10-24T05:57:27.000Z" + }, + "end": { + "$date": "2020-10-24T08:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c8f8c855-ed42-4250-8674-90e313b88abb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-24T06:00:20.000Z" + }, + "end": { + "$date": "2020-10-24T07:16:57.000Z" + }, + "events": [ + { + "uuid": "2dae8a8d-81b2-42c0-a094-89f486d9b185", + "start": { + "$date": "2020-10-24T06:00:20.000Z" + }, + "end": { + "$date": "2020-10-24T07:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37b53809-f5ae-48da-ba80-4974bde0eaa5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T06:00:26.000Z" + }, + "end": { + "$date": "2020-10-24T07:17:01.000Z" + }, + "events": [ + { + "uuid": "1fd19428-5324-469a-981f-f4d40fc9ddf0", + "start": { + "$date": "2020-10-24T06:00:26.000Z" + }, + "end": { + "$date": "2020-10-24T07:17:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ba0d73c-7bf8-4276-a569-267570333759", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-24T08:17:00.000Z" + }, + "end": { + "$date": "2020-10-24T08:38:56.000Z" + }, + "events": [ + { + "uuid": "cf0394be-ebe0-47d7-b075-a4c845e13d19", + "start": { + "$date": "2020-10-24T08:17:00.000Z" + }, + "end": { + "$date": "2020-10-24T08:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5eb5215c-40db-4acf-9405-6d71adf2c5de", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-24T13:15:25.000Z" + }, + "end": { + "$date": "2020-10-24T13:19:46.000Z" + }, + "events": [ + { + "uuid": "31e4175d-b545-46dd-88a2-cc78647df76f", + "start": { + "$date": "2020-10-24T13:15:25.000Z" + }, + "end": { + "$date": "2020-10-24T13:19:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63510146-7b08-4c1c-bed1-5aaa7775f247", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-24T13:19:50.000Z" + }, + "end": { + "$date": "2020-10-24T13:59:20.000Z" + }, + "events": [ + { + "uuid": "48ecbac1-74ea-4b77-a0de-1b182e774a10", + "start": { + "$date": "2020-10-24T13:19:50.000Z" + }, + "end": { + "$date": "2020-10-24T13:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "c678037e-23c4-4dd0-9f40-1e2437da7266", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T14:20:53.000Z" + }, + "end": { + "$date": "2020-10-24T14:24:17.000Z" + }, + "events": [ + { + "uuid": "0588deba-6d45-4feb-8031-65a6d50fdfaf", + "start": { + "$date": "2020-10-24T14:20:53.000Z" + }, + "end": { + "$date": "2020-10-24T14:24:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7118a23a-cc15-446c-9cdd-d7487485874d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T14:39:45.000Z" + }, + "end": { + "$date": "2020-10-24T15:00:14.000Z" + }, + "events": [ + { + "uuid": "24c38d95-1d73-4c71-b346-294ec519ea70", + "start": { + "$date": "2020-10-24T14:39:45.000Z" + }, + "end": { + "$date": "2020-10-24T15:00:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "f12e06b1-1459-4099-b871-6da21b6343e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T15:06:21.000Z" + }, + "end": { + "$date": "2020-10-24T15:58:31.000Z" + }, + "events": [ + { + "uuid": "25477d78-f2b9-4124-9d41-f8e12f4af26d", + "start": { + "$date": "2020-10-24T15:06:21.000Z" + }, + "end": { + "$date": "2020-10-24T15:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "c614cf01-12a0-47da-be1e-7d2d72b1123f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T15:26:40.000Z" + }, + "end": { + "$date": "2020-10-24T16:05:26.000Z" + }, + "events": [ + { + "uuid": "905b275e-5695-4b51-a46b-d35313fccbd6", + "start": { + "$date": "2020-10-24T15:26:40.000Z" + }, + "end": { + "$date": "2020-10-24T16:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "be0e477d-ff4d-4b7f-9a77-f42ac25c602b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-24T15:42:18.000Z" + }, + "end": { + "$date": "2020-10-24T16:16:48.000Z" + }, + "events": [ + { + "uuid": "ce1bb75d-219b-4001-9165-79ad32e05647", + "start": { + "$date": "2020-10-24T15:42:18.000Z" + }, + "end": { + "$date": "2020-10-24T16:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7d0fefb1-99a8-431c-9a99-d63a4dd78054", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T15:59:07.000Z" + }, + "end": { + "$date": "2020-10-24T16:05:01.000Z" + }, + "events": [ + { + "uuid": "bb82fd87-485b-4822-94b7-3b8f0f90add7", + "start": { + "$date": "2020-10-24T15:59:07.000Z" + }, + "end": { + "$date": "2020-10-24T16:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1199b19f-d52f-4e9c-a2f3-a7e256d28fa5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-24T19:08:56.000Z" + }, + "end": { + "$date": "2020-10-24T19:09:52.000Z" + }, + "events": [ + { + "uuid": "095a338f-c0a5-4da9-be5a-f556a88dcd85", + "start": { + "$date": "2020-10-24T19:08:56.000Z" + }, + "end": { + "$date": "2020-10-24T19:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42a41bd5-9cfb-4ae3-93b3-3b44cd750afc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T16:08:11.000Z" + }, + "end": { + "$date": "2020-10-24T16:37:08.000Z" + }, + "events": [ + { + "uuid": "37d85352-f89a-49ca-9c77-47201eda157c", + "start": { + "$date": "2020-10-24T16:08:11.000Z" + }, + "end": { + "$date": "2020-10-24T16:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7769e8f4-7031-4125-8bd7-3fd4f0315f58", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T16:29:25.000Z" + }, + "end": { + "$date": "2020-10-24T17:31:46.000Z" + }, + "events": [ + { + "uuid": "64dd6b26-90ca-4a2b-bd30-d64cbd910650", + "start": { + "$date": "2020-10-24T16:29:25.000Z" + }, + "end": { + "$date": "2020-10-24T17:31:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26911771-6136-450b-aea4-780554ada3f5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-24T17:09:17.000Z" + }, + "end": { + "$date": "2020-10-24T17:46:37.000Z" + }, + "events": [ + { + "uuid": "43a612d3-0ffc-4844-80ca-93414cc52859", + "start": { + "$date": "2020-10-24T17:09:17.000Z" + }, + "end": { + "$date": "2020-10-24T17:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ec91831-c45b-4c3d-be89-aa759f4cc579", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T17:10:05.000Z" + }, + "end": { + "$date": "2020-10-24T17:46:33.000Z" + }, + "events": [ + { + "uuid": "9d2cdae7-074a-4009-9f87-f23a5d938cfe", + "start": { + "$date": "2020-10-24T17:10:05.000Z" + }, + "end": { + "$date": "2020-10-24T17:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7dadf3e-fb38-4224-a5d6-6c0faf6c8778", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T17:09:39.000Z" + }, + "end": { + "$date": "2020-10-24T17:46:43.000Z" + }, + "events": [ + { + "uuid": "2a97e364-ccd5-4c9b-8dd3-29eaf11b29de", + "start": { + "$date": "2020-10-24T17:09:39.000Z" + }, + "end": { + "$date": "2020-10-24T17:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "d8957572-141a-4244-b920-92c2cf03adee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T17:32:08.000Z" + }, + "end": { + "$date": "2020-10-24T19:26:38.000Z" + }, + "events": [ + { + "uuid": "ee2cd37a-d984-4f07-b47e-862844e68d3a", + "start": { + "$date": "2020-10-24T17:32:08.000Z" + }, + "end": { + "$date": "2020-10-24T19:26:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "624d4e2b-4fe7-4b6a-80b3-f91015a1af29", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-24T17:54:46.000Z" + }, + "end": { + "$date": "2020-10-24T18:31:21.000Z" + }, + "events": [ + { + "uuid": "56e59fa2-6154-44d2-a164-c2701c43d9f9", + "start": { + "$date": "2020-10-24T17:54:46.000Z" + }, + "end": { + "$date": "2020-10-24T18:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d1bbd4b-8d09-4f2f-bce4-bae600b23ada", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T17:54:56.000Z" + }, + "end": { + "$date": "2020-10-24T18:31:25.000Z" + }, + "events": [ + { + "uuid": "8a08b459-2472-4373-be70-7ea566c9b974", + "start": { + "$date": "2020-10-24T17:54:56.000Z" + }, + "end": { + "$date": "2020-10-24T18:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55ee0cf6-d4b8-4208-a230-84b98602e7f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T17:54:17.000Z" + }, + "end": { + "$date": "2020-10-24T18:31:15.000Z" + }, + "events": [ + { + "uuid": "369809a7-5601-4406-a0a4-f432ac10eb67", + "start": { + "$date": "2020-10-24T17:54:17.000Z" + }, + "end": { + "$date": "2020-10-24T18:31:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9eca68d3-62e9-4146-aa70-68aeb2882ea6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-24T18:32:05.000Z" + }, + "end": { + "$date": "2020-10-24T19:09:06.000Z" + }, + "events": [ + { + "uuid": "2aba09d9-bfd5-4f5d-b91a-1094b9c73049", + "start": { + "$date": "2020-10-24T18:32:05.000Z" + }, + "end": { + "$date": "2020-10-24T19:09:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57c5fd29-6664-423c-8c61-683d5d89ea42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-24T18:32:54.000Z" + }, + "end": { + "$date": "2020-10-24T19:07:52.000Z" + }, + "events": [ + { + "uuid": "5c6e27d4-0f5d-462b-b5f2-98844be4ff69", + "start": { + "$date": "2020-10-24T18:32:54.000Z" + }, + "end": { + "$date": "2020-10-24T19:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76073c8c-5006-43a6-87d7-d3a383ac189d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T18:32:35.000Z" + }, + "end": { + "$date": "2020-10-24T19:06:05.000Z" + }, + "events": [ + { + "uuid": "8872df0a-9add-4b4d-bf19-5822a5727ad6", + "start": { + "$date": "2020-10-24T18:32:35.000Z" + }, + "end": { + "$date": "2020-10-24T19:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "967e0ada-e6af-4fa4-b0ae-0336d347bcff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T18:33:24.000Z" + }, + "end": { + "$date": "2020-10-24T19:06:50.000Z" + }, + "events": [ + { + "uuid": "744d9b57-b2bf-4455-9a7b-e774881de40a", + "start": { + "$date": "2020-10-24T18:33:24.000Z" + }, + "end": { + "$date": "2020-10-24T19:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3f999b0e-eff3-459e-a91f-6e2c2ec12207", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-24T18:37:07.000Z" + }, + "end": { + "$date": "2020-10-24T19:16:02.000Z" + }, + "events": [ + { + "uuid": "cccae036-a51d-4557-a40a-8dc0b6f84d47", + "start": { + "$date": "2020-10-24T18:37:07.000Z" + }, + "end": { + "$date": "2020-10-24T19:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d085a994-b0a6-4c0e-b957-9643e931e9d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T18:48:19.000Z" + }, + "end": { + "$date": "2020-10-24T19:06:46.000Z" + }, + "events": [ + { + "uuid": "e96ebede-9aee-41da-9028-b8ed1fa451d0", + "start": { + "$date": "2020-10-24T18:48:19.000Z" + }, + "end": { + "$date": "2020-10-24T19:06:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8337e5fe-3763-40db-a8e8-2696d15999dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T19:06:15.000Z" + }, + "end": { + "$date": "2020-10-24T19:11:15.000Z" + }, + "events": [ + { + "uuid": "a1c74d47-cd61-4203-b854-aed27d4c4cc7", + "start": { + "$date": "2020-10-24T19:06:15.000Z" + }, + "end": { + "$date": "2020-10-24T19:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57e76c14-1aee-4600-af0e-1e1a9552c4c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T19:10:50.000Z" + }, + "end": { + "$date": "2020-10-24T19:29:32.000Z" + }, + "events": [ + { + "uuid": "4cf14176-6ee9-46ab-98a7-bf0c0d05b53e", + "start": { + "$date": "2020-10-24T19:10:50.000Z" + }, + "end": { + "$date": "2020-10-24T19:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b79f7436-818d-48a5-91a0-f9f5e67a887e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T19:17:11.000Z" + }, + "end": { + "$date": "2020-10-24T19:43:54.000Z" + }, + "events": [ + { + "uuid": "934ecbc9-62d5-4974-a487-9c33bf5e4dd1", + "start": { + "$date": "2020-10-24T19:17:11.000Z" + }, + "end": { + "$date": "2020-10-24T19:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "245368bb-0a17-4318-bb25-f11801628ad3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-24T19:18:38.000Z" + }, + "end": { + "$date": "2020-10-24T19:44:01.000Z" + }, + "events": [ + { + "uuid": "4d646be5-d9b6-4ce1-912f-13770caf19fa", + "start": { + "$date": "2020-10-24T19:18:38.000Z" + }, + "end": { + "$date": "2020-10-24T19:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e66c41d8-5f4b-4c36-962d-231e4be03d35", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T19:33:16.000Z" + }, + "end": { + "$date": "2020-10-24T20:17:44.000Z" + }, + "events": [ + { + "uuid": "b17165e7-00d5-410c-b3cc-151ce7ecbc20", + "start": { + "$date": "2020-10-24T19:33:16.000Z" + }, + "end": { + "$date": "2020-10-24T20:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6700dfae-c868-48aa-b64d-d1acc1360f62", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T19:45:49.000Z" + }, + "end": { + "$date": "2020-10-24T20:22:17.000Z" + }, + "events": [ + { + "uuid": "b8576a22-e794-4704-9367-457a0f32e7df", + "start": { + "$date": "2020-10-24T19:45:49.000Z" + }, + "end": { + "$date": "2020-10-24T20:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bab1a8c2-525b-440f-ad72-79ce8cd0f82d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-24T19:45:51.000Z" + }, + "end": { + "$date": "2020-10-24T20:22:24.000Z" + }, + "events": [ + { + "uuid": "eb33ac18-e4d4-4628-9707-363b2c24884e", + "start": { + "$date": "2020-10-24T19:45:51.000Z" + }, + "end": { + "$date": "2020-10-24T20:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b025f030-af62-4f44-96c0-f95840d38a83", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T20:17:53.000Z" + }, + "end": { + "$date": "2020-10-24T21:08:21.000Z" + }, + "events": [ + { + "uuid": "21cbe7e0-9189-4c5d-a9d1-624f31ac9284", + "start": { + "$date": "2020-10-24T20:17:53.000Z" + }, + "end": { + "$date": "2020-10-24T21:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d7db5d10-0ef2-4104-bec2-a4b6830c9442", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T20:22:32.000Z" + }, + "end": { + "$date": "2020-10-24T21:19:30.000Z" + }, + "events": [ + { + "uuid": "d6e18f38-9257-4f88-a16a-5501c2f546d7", + "start": { + "$date": "2020-10-24T20:22:32.000Z" + }, + "end": { + "$date": "2020-10-24T21:19:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a6f9c7d8-c2d3-4cb4-a9e9-bc71896a3247", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-24T20:23:04.000Z" + }, + "end": { + "$date": "2020-10-24T21:19:33.000Z" + }, + "events": [ + { + "uuid": "10dc6470-18e0-406b-b3eb-efc5f42da70d", + "start": { + "$date": "2020-10-24T20:23:04.000Z" + }, + "end": { + "$date": "2020-10-24T21:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "592ffe42-28f8-4fef-9492-b65e29febae4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T20:49:55.000Z" + }, + "end": { + "$date": "2020-10-24T21:26:37.000Z" + }, + "events": [ + { + "uuid": "727dedd2-5e96-4b8e-85a4-1cac565b92ae", + "start": { + "$date": "2020-10-24T20:49:55.000Z" + }, + "end": { + "$date": "2020-10-24T21:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eec83563-e3ca-4db5-9fd8-8c4d7b5d3eaa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T21:24:27.000Z" + }, + "end": { + "$date": "2020-10-24T21:40:43.000Z" + }, + "events": [ + { + "uuid": "c7b5c4f6-75cd-45ec-8391-c44306361273", + "start": { + "$date": "2020-10-24T21:24:27.000Z" + }, + "end": { + "$date": "2020-10-24T21:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb2c81f1-913a-40e1-a33a-a6506bc3915d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T21:43:43.000Z" + }, + "end": { + "$date": "2020-10-24T21:59:12.000Z" + }, + "events": [ + { + "uuid": "f1265bb6-b113-4ad2-8bc0-fb245ab511fb", + "start": { + "$date": "2020-10-24T21:43:43.000Z" + }, + "end": { + "$date": "2020-10-24T21:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82807214-1eeb-4869-890c-3a44b2cc7f98", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T21:54:59.000Z" + }, + "end": { + "$date": "2020-10-24T22:34:47.000Z" + }, + "events": [ + { + "uuid": "96bca10b-d207-4bea-82d1-a68af374dc59", + "start": { + "$date": "2020-10-24T21:54:59.000Z" + }, + "end": { + "$date": "2020-10-24T22:34:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8fb93b08-c345-4e56-9bd2-63ea0fdb8cc3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-24T22:29:58.000Z" + }, + "end": { + "$date": "2020-10-24T23:08:16.000Z" + }, + "events": [ + { + "uuid": "5c0d0351-c90a-4257-9bff-e5de70d60766", + "start": { + "$date": "2020-10-24T22:29:58.000Z" + }, + "end": { + "$date": "2020-10-24T23:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a856e71a-f6b9-4e2d-9536-80c61e56f419", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-24T23:03:27.000Z" + }, + "end": { + "$date": "2020-10-25T00:58:59.000Z" + }, + "events": [ + { + "uuid": "9ebece71-152a-4be5-a008-1aaae3c860cb", + "start": { + "$date": "2020-10-24T23:03:27.000Z" + }, + "end": { + "$date": "2020-10-25T00:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aaf92eb1-7687-42c8-9348-e887536490c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-24T23:16:57.000Z" + }, + "end": { + "$date": "2020-10-25T05:23:10.000Z" + }, + "events": [ + { + "uuid": "cc02ddd9-278a-46a6-90de-20330fbdf5a5", + "start": { + "$date": "2020-10-24T23:16:57.000Z" + }, + "end": { + "$date": "2020-10-25T01:28:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5cb7ab59-8325-41c7-b175-43ad457f7790", + "start": { + "$date": "2020-10-25T01:28:57.000Z" + }, + "end": { + "$date": "2020-10-25T01:29:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32a4dfbb-1962-4145-b895-6ce1afdab4f9", + "start": { + "$date": "2020-10-25T01:29:57.000Z" + }, + "end": { + "$date": "2020-10-25T05:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0cf6ee53-e501-41a5-b448-0e6977d13106", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-24T23:26:56.000Z" + }, + "end": { + "$date": "2020-10-24T23:35:18.000Z" + }, + "events": [ + { + "uuid": "21811fd9-3f6d-4c44-befe-90b21542049b", + "start": { + "$date": "2020-10-24T23:26:56.000Z" + }, + "end": { + "$date": "2020-10-24T23:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "73f7352c-605c-4718-852f-26e7353e0a57", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-24T23:35:57.000Z" + }, + "end": { + "$date": "2020-10-24T23:58:34.000Z" + }, + "events": [ + { + "uuid": "33e4831e-442d-4077-b044-c3d7e7223a19", + "start": { + "$date": "2020-10-24T23:35:57.000Z" + }, + "end": { + "$date": "2020-10-24T23:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b8e68f3b-d3a7-40b2-b51d-2cb18bb65187", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-24T23:47:24.000Z" + }, + "end": { + "$date": "2020-10-25T00:58:59.000Z" + }, + "events": [ + { + "uuid": "4f560bf4-12d2-4621-9266-be3fd1e85011", + "start": { + "$date": "2020-10-24T23:47:24.000Z" + }, + "end": { + "$date": "2020-10-25T00:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8905ea83-7327-4ce9-9871-5f3b208f0b91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-24T23:56:44.000Z" + }, + "end": { + "$date": "2020-10-25T00:31:09.000Z" + }, + "events": [ + { + "uuid": "85f4945a-b8c5-4265-b405-ec90c32a1c3d", + "start": { + "$date": "2020-10-24T23:56:44.000Z" + }, + "end": { + "$date": "2020-10-25T00:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac1a01f2-0a7b-4b43-a2da-ac78135da49e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-24T23:56:33.000Z" + }, + "end": { + "$date": "2020-10-25T00:31:09.000Z" + }, + "events": [ + { + "uuid": "c2f4922d-3ea4-493c-b2bf-fe0e1a8026dd", + "start": { + "$date": "2020-10-24T23:56:33.000Z" + }, + "end": { + "$date": "2020-10-25T00:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d002e4a6-9fbc-45ee-99a4-9e48e09dfc6b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-24T23:53:10.000Z" + }, + "end": { + "$date": "2020-10-25T00:09:43.000Z" + }, + "events": [ + { + "uuid": "6000dc35-d3a2-4c88-96ff-b01fe88ffd2e", + "start": { + "$date": "2020-10-24T23:53:10.000Z" + }, + "end": { + "$date": "2020-10-25T00:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c09f17d8-6798-4661-bc3a-5c4a88094d17", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T00:37:36.000Z" + }, + "end": { + "$date": "2020-10-25T01:09:29.000Z" + }, + "events": [ + { + "uuid": "2cd07ec4-8896-4d63-8c87-bd76d802e3b5", + "start": { + "$date": "2020-10-25T00:37:36.000Z" + }, + "end": { + "$date": "2020-10-25T01:09:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e1ae7e9-7be3-4835-bb5e-7aa22f45f656", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-25T00:37:25.000Z" + }, + "end": { + "$date": "2020-10-25T01:09:20.000Z" + }, + "events": [ + { + "uuid": "81f21350-565d-4f72-8283-efb28724a567", + "start": { + "$date": "2020-10-25T00:37:25.000Z" + }, + "end": { + "$date": "2020-10-25T01:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "365470b5-ecd3-4232-af7b-b01d7e950405", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T00:44:31.000Z" + }, + "end": { + "$date": "2020-10-25T01:12:25.000Z" + }, + "events": [ + { + "uuid": "b3394280-9f38-46c2-9ec3-6b7193b560ae", + "start": { + "$date": "2020-10-25T00:44:31.000Z" + }, + "end": { + "$date": "2020-10-25T01:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "186e903c-90ca-4ea0-9004-7d896a1e5aad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T01:12:37.000Z" + }, + "end": { + "$date": "2020-10-25T01:42:57.000Z" + }, + "events": [ + { + "uuid": "b78f34a7-6952-4bda-b775-b56947a167e3", + "start": { + "$date": "2020-10-25T01:12:37.000Z" + }, + "end": { + "$date": "2020-10-25T01:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "fddb511a-cb93-45c9-8a7b-714d899e31ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-25T01:26:33.000Z" + }, + "end": { + "$date": "2020-10-25T03:17:52.000Z" + }, + "events": [ + { + "uuid": "f5fd071a-b7c1-4f94-b02f-a043a2f01953", + "start": { + "$date": "2020-10-25T01:26:33.000Z" + }, + "end": { + "$date": "2020-10-25T03:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fb67db76-9064-469c-b3d9-0b701a1c6359", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T01:44:54.000Z" + }, + "end": { + "$date": "2020-10-25T01:47:26.000Z" + }, + "events": [ + { + "uuid": "1208050a-3e49-4554-b1ff-03d3c2825658", + "start": { + "$date": "2020-10-25T01:44:54.000Z" + }, + "end": { + "$date": "2020-10-25T01:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "d16c5350-cfaa-426b-8b8d-e8f66cb2b89f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-25T01:47:34.000Z" + }, + "end": { + "$date": "2020-10-25T01:56:46.000Z" + }, + "events": [ + { + "uuid": "7512db57-0a1c-4895-b925-2467a05d69c8", + "start": { + "$date": "2020-10-25T01:47:34.000Z" + }, + "end": { + "$date": "2020-10-25T01:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "64e0d462-3a94-4581-8ba3-3a9e32455182", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T01:51:45.000Z" + }, + "end": { + "$date": "2020-10-25T06:01:10.000Z" + }, + "events": [ + { + "uuid": "959fc9ba-40e6-4fb4-ba45-9e91a2f997a4", + "start": { + "$date": "2020-10-25T01:51:45.000Z" + }, + "end": { + "$date": "2020-10-25T06:01:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e37c8120-6dda-4950-841a-1222ae146e07", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-25T01:57:55.000Z" + }, + "end": { + "$date": "2020-10-25T02:33:23.000Z" + }, + "events": [ + { + "uuid": "6359430e-eee6-49f2-af13-8e591d70961f", + "start": { + "$date": "2020-10-25T01:57:55.000Z" + }, + "end": { + "$date": "2020-10-25T02:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "30464e60-f8fd-45af-9070-b53414f16f01", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-25T01:58:00.000Z" + }, + "end": { + "$date": "2020-10-25T02:32:57.000Z" + }, + "events": [ + { + "uuid": "9d2c2bd5-a39c-45de-ac5d-73d7f0817b0a", + "start": { + "$date": "2020-10-25T01:58:00.000Z" + }, + "end": { + "$date": "2020-10-25T02:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", + "uuid": "e34eabcc-a9ec-420e-969a-11a329b66e8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T02:21:51.000Z" + }, + "end": { + "$date": "2020-10-25T02:24:21.000Z" + }, + "events": [ + { + "uuid": "57576880-774e-45d7-90cf-288c610fcb75", + "start": { + "$date": "2020-10-25T02:21:51.000Z" + }, + "end": { + "$date": "2020-10-25T02:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", + "uuid": "4e001cac-cbc4-4f0f-9141-e3f97b862fe8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T02:24:41.000Z" + }, + "end": { + "$date": "2020-10-25T03:14:28.000Z" + }, + "events": [ + { + "uuid": "d3cddd3f-b193-464a-9aad-c6babc9b9622", + "start": { + "$date": "2020-10-25T02:24:41.000Z" + }, + "end": { + "$date": "2020-10-25T03:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "d3382659-b67c-4f67-963d-db8a99f63645", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-25T03:11:11.000Z" + }, + "end": { + "$date": "2020-10-25T05:27:08.000Z" + }, + "events": [ + { + "uuid": "d0b19f21-a3a1-42f5-911d-cd0cdf3599de", + "start": { + "$date": "2020-10-25T03:11:11.000Z" + }, + "end": { + "$date": "2020-10-25T05:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "933e45a6-159a-40c3-88d4-4e55b0f42562", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T03:33:11.000Z" + }, + "end": { + "$date": "2020-10-25T03:52:53.000Z" + }, + "events": [ + { + "uuid": "7e359ccc-df52-4d31-92ab-6e38673fb939", + "start": { + "$date": "2020-10-25T03:33:11.000Z" + }, + "end": { + "$date": "2020-10-25T03:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eefaf046-bca0-41ad-9238-24ff75a53322", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-25T03:32:25.000Z" + }, + "end": { + "$date": "2020-10-25T05:09:53.000Z" + }, + "events": [ + { + "uuid": "a30984b4-e94f-489f-8440-078c0d2000ed", + "start": { + "$date": "2020-10-25T03:32:25.000Z" + }, + "end": { + "$date": "2020-10-25T05:09:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "763725fa-d1a0-42b8-b3f5-153afbaa6dd0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-25T03:43:54.000Z" + }, + "end": { + "$date": "2020-10-25T05:44:37.000Z" + }, + "events": [ + { + "uuid": "3a789d24-64cd-4a06-8f50-f3bbc9fff7e1", + "start": { + "$date": "2020-10-25T03:43:54.000Z" + }, + "end": { + "$date": "2020-10-25T05:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "834373e2-7872-4362-a2ec-6418050ca4b9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T06:05:31.000Z" + }, + "end": { + "$date": "2020-10-25T06:51:34.000Z" + }, + "events": [ + { + "uuid": "bb0fc22b-9b49-489a-8644-e8dfe7e88574", + "start": { + "$date": "2020-10-25T06:05:31.000Z" + }, + "end": { + "$date": "2020-10-25T06:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7bcc2d9a-0d6d-4069-b3bc-24575e00793a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T06:16:48.000Z" + }, + "end": { + "$date": "2020-10-25T06:18:59.000Z" + }, + "events": [ + { + "uuid": "78b2811b-7e00-49fc-b547-33d165ef718d", + "start": { + "$date": "2020-10-25T06:16:48.000Z" + }, + "end": { + "$date": "2020-10-25T06:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c72e37b3-0a86-4cff-a517-f7faa8dd1a38", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-25T07:22:33.000Z" + }, + "end": { + "$date": "2020-10-25T07:50:37.000Z" + }, + "events": [ + { + "uuid": "5624fa76-bc85-49fc-a346-dc665c132f75", + "start": { + "$date": "2020-10-25T07:22:33.000Z" + }, + "end": { + "$date": "2020-10-25T07:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "17834e0d-4cfa-4063-bd18-6479b7a62fe9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T07:13:53.000Z" + }, + "end": { + "$date": "2020-10-25T08:06:45.000Z" + }, + "events": [ + { + "uuid": "a3060a8c-d43f-488a-98da-02d71e5ea7d5", + "start": { + "$date": "2020-10-25T07:13:53.000Z" + }, + "end": { + "$date": "2020-10-25T08:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fc7552c-e22f-4b36-b5aa-bbd98c0b281a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-25T08:02:00.000Z" + }, + "end": { + "$date": "2020-10-25T08:29:31.000Z" + }, + "events": [ + { + "uuid": "196e35e0-62d6-4070-91b0-ec3241a8a96d", + "start": { + "$date": "2020-10-25T08:02:00.000Z" + }, + "end": { + "$date": "2020-10-25T08:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7688c387-556e-41d4-90f1-72632cd65f5a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-25T14:54:22.000Z" + }, + "end": { + "$date": "2020-10-25T18:12:53.000Z" + }, + "events": [ + { + "uuid": "9b96a863-a0f3-4510-a684-6ab1285820ba", + "start": { + "$date": "2020-10-25T14:54:22.000Z" + }, + "end": { + "$date": "2020-10-25T18:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "9c583627-7809-4f72-98bd-8abd8ab74c7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-25T15:54:13.000Z" + }, + "end": { + "$date": "2020-10-25T15:58:10.000Z" + }, + "events": [ + { + "uuid": "c38b998d-a959-4569-afa8-23e5c0544fb2", + "start": { + "$date": "2020-10-25T15:54:13.000Z" + }, + "end": { + "$date": "2020-10-25T15:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a4d0191-7906-44f0-ba7b-fd742e8255be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-25T16:01:24.000Z" + }, + "end": { + "$date": "2020-10-25T16:26:06.000Z" + }, + "events": [ + { + "uuid": "d1ee8b72-d1fb-41f6-ac3d-11d7fd091d21", + "start": { + "$date": "2020-10-25T16:01:24.000Z" + }, + "end": { + "$date": "2020-10-25T16:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e286db69-0c1e-4197-afa4-b74d0fc1f21f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-25T16:30:45.000Z" + }, + "end": { + "$date": "2020-10-25T17:03:27.000Z" + }, + "events": [ + { + "uuid": "ec4e212e-bbe7-435a-a3b4-ea25d2a6592e", + "start": { + "$date": "2020-10-25T16:30:45.000Z" + }, + "end": { + "$date": "2020-10-25T17:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7e880a6e-e4f5-4377-b8d2-24bbd90ea027", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-25T16:28:29.000Z" + }, + "end": { + "$date": "2020-10-25T18:05:09.000Z" + }, + "events": [ + { + "uuid": "1a794cfa-fece-4623-8b5f-f7c1597bf267", + "start": { + "$date": "2020-10-25T16:28:29.000Z" + }, + "end": { + "$date": "2020-10-25T17:32:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "285511bd-c9f5-4af3-a7ff-ea1eb3cef3b3", + "start": { + "$date": "2020-10-25T17:32:29.000Z" + }, + "end": { + "$date": "2020-10-25T17:37:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb7b1ad9-42fd-4f18-9e4a-78b5ac159573", + "start": { + "$date": "2020-10-25T17:37:29.000Z" + }, + "end": { + "$date": "2020-10-25T17:47:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f713a0d6-34a4-4610-bbf5-2fc24a74a698", + "start": { + "$date": "2020-10-25T17:47:29.000Z" + }, + "end": { + "$date": "2020-10-25T18:05:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "941e94cd-9354-474d-b72a-7a9d9d0b0978", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-25T17:52:08.000Z" + }, + "end": { + "$date": "2020-10-25T20:53:23.000Z" + }, + "events": [ + { + "uuid": "07e20f4c-5bbd-4973-bf5b-7c8ebe4b0bef", + "start": { + "$date": "2020-10-25T17:52:08.000Z" + }, + "end": { + "$date": "2020-10-25T20:53:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15e84139-f23e-433e-a910-ea1de7be0118", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T19:57:36.000Z" + }, + "end": { + "$date": "2020-10-25T20:21:18.000Z" + }, + "events": [ + { + "uuid": "dc98339e-ff60-49ab-9e5d-27898ba6288b", + "start": { + "$date": "2020-10-25T19:57:36.000Z" + }, + "end": { + "$date": "2020-10-25T20:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f1cc94d-3a77-437c-be01-f2bafd85ab3e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T20:24:38.000Z" + }, + "end": { + "$date": "2020-10-25T20:55:14.000Z" + }, + "events": [ + { + "uuid": "fb0ee3a5-7d1f-4211-816a-9ee6bb64ede6", + "start": { + "$date": "2020-10-25T20:24:38.000Z" + }, + "end": { + "$date": "2020-10-25T20:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f4af9887-7cc6-4dd5-ac71-b3fab42b9221", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-25T20:32:20.000Z" + }, + "end": { + "$date": "2020-10-25T22:09:18.000Z" + }, + "events": [ + { + "uuid": "f5841a91-06bc-4592-a440-8dc6ae8df91a", + "start": { + "$date": "2020-10-25T20:32:20.000Z" + }, + "end": { + "$date": "2020-10-25T22:09:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e47ceb2c-8604-4319-92d4-8a982a2960b9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T20:33:25.000Z" + }, + "end": { + "$date": "2020-10-25T20:59:38.000Z" + }, + "events": [ + { + "uuid": "356d466e-5be3-47d6-8e90-aca43dbeb35d", + "start": { + "$date": "2020-10-25T20:33:25.000Z" + }, + "end": { + "$date": "2020-10-25T20:59:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "f36270bb-e5c8-4771-a83d-e0ef65910713", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-25T20:51:13.000Z" + }, + "end": { + "$date": "2020-10-25T21:50:05.000Z" + }, + "events": [ + { + "uuid": "33bfd16d-8e37-4871-8a20-144c8d7e44a8", + "start": { + "$date": "2020-10-25T20:51:13.000Z" + }, + "end": { + "$date": "2020-10-25T21:50:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "21155e0a-3ca7-47d6-8e7e-f12fcc7d2327", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-25T21:10:49.000Z" + }, + "end": { + "$date": "2020-10-26T02:12:18.000Z" + }, + "events": [ + { + "uuid": "7035c26c-f3a6-4ebd-bbdb-6360f6162240", + "start": { + "$date": "2020-10-25T21:10:49.000Z" + }, + "end": { + "$date": "2020-10-26T02:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c48943e-a82a-474a-9cc2-6c7aeafc7c3e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T21:59:34.000Z" + }, + "end": { + "$date": "2020-10-25T22:14:50.000Z" + }, + "events": [ + { + "uuid": "a1a8dc87-5412-4dfd-90da-0f63e0505729", + "start": { + "$date": "2020-10-25T21:59:34.000Z" + }, + "end": { + "$date": "2020-10-25T22:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a23e92d-8a15-43f8-a14c-42eef68a0898", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T22:21:56.000Z" + }, + "end": { + "$date": "2020-10-25T22:38:41.000Z" + }, + "events": [ + { + "uuid": "42e821bd-2445-484a-aa5c-01f5a09bd2dc", + "start": { + "$date": "2020-10-25T22:21:56.000Z" + }, + "end": { + "$date": "2020-10-25T22:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f338037e-56ab-41cc-8253-7844f0408c0a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T22:15:38.000Z" + }, + "end": { + "$date": "2020-10-25T22:25:54.000Z" + }, + "events": [ + { + "uuid": "06a07c92-5f8d-4272-a055-802ff5c4b035", + "start": { + "$date": "2020-10-25T22:15:38.000Z" + }, + "end": { + "$date": "2020-10-25T22:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89abaabe-b73c-430c-823a-957ecaf7b634", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-25T22:45:42.000Z" + }, + "end": { + "$date": "2020-10-25T23:10:02.000Z" + }, + "events": [ + { + "uuid": "6deee4e5-18c9-49af-a15d-b96d11e141d7", + "start": { + "$date": "2020-10-25T22:45:42.000Z" + }, + "end": { + "$date": "2020-10-25T23:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3f14a96a-77c1-49a0-a7f6-a0659580d0f5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-25T22:41:04.000Z" + }, + "end": { + "$date": "2020-10-26T01:11:25.000Z" + }, + "events": [ + { + "uuid": "a455d92c-ed1d-4cdb-b485-ab4ecba428c4", + "start": { + "$date": "2020-10-25T22:41:04.000Z" + }, + "end": { + "$date": "2020-10-25T23:17:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7cb301b-1062-432a-b879-ab6e55b7a8ec", + "start": { + "$date": "2020-10-25T23:17:04.000Z" + }, + "end": { + "$date": "2020-10-25T23:22:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7091644c-ab4c-4eaf-a9dc-562d0b88e5be", + "start": { + "$date": "2020-10-25T23:22:04.000Z" + }, + "end": { + "$date": "2020-10-26T01:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaa0d2bb-50e8-4368-be89-b3cb5bcb340d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T00:20:15.000Z" + }, + "end": { + "$date": "2020-10-26T00:42:50.000Z" + }, + "events": [ + { + "uuid": "679de8fb-a74a-41dd-a761-3bbcc0c9a428", + "start": { + "$date": "2020-10-26T00:20:15.000Z" + }, + "end": { + "$date": "2020-10-26T00:42:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3df76735-eb81-4bf2-90de-e70f7993bce6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T00:47:31.000Z" + }, + "end": { + "$date": "2020-10-26T01:03:47.000Z" + }, + "events": [ + { + "uuid": "077064ac-67f8-4567-bc51-0ce513554d4a", + "start": { + "$date": "2020-10-26T00:47:31.000Z" + }, + "end": { + "$date": "2020-10-26T01:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6e542e81-9611-4a52-a3d3-1f81024fe530", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T01:06:57.000Z" + }, + "end": { + "$date": "2020-10-26T01:30:10.000Z" + }, + "events": [ + { + "uuid": "ac5892cb-e62d-42c5-a398-29f91fc40433", + "start": { + "$date": "2020-10-26T01:06:57.000Z" + }, + "end": { + "$date": "2020-10-26T01:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "29df745f-44d9-43b9-8beb-3f40f8556783", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-26T01:07:17.000Z" + }, + "end": { + "$date": "2020-10-26T02:35:54.000Z" + }, + "events": [ + { + "uuid": "7413b55a-3464-4455-910f-e6fc0eea1837", + "start": { + "$date": "2020-10-26T01:07:17.000Z" + }, + "end": { + "$date": "2020-10-26T02:35:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8a45dff0-69ef-405c-b8a2-d99e00b557f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-26T01:23:47.000Z" + }, + "end": { + "$date": "2020-10-26T01:43:53.000Z" + }, + "events": [ + { + "uuid": "262e9f0e-bb12-45c8-ad6d-a3648ff6bac6", + "start": { + "$date": "2020-10-26T01:23:47.000Z" + }, + "end": { + "$date": "2020-10-26T01:43:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5cf660a6-44cf-4ffd-a484-316460e837f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T01:37:41.000Z" + }, + "end": { + "$date": "2020-10-26T02:44:16.000Z" + }, + "events": [ + { + "uuid": "ed3f8f9d-13de-4211-94ac-d8f80a582586", + "start": { + "$date": "2020-10-26T01:37:41.000Z" + }, + "end": { + "$date": "2020-10-26T02:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "1d834e86-d2c0-4318-a5ae-e128261e6676", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-26T02:27:21.000Z" + }, + "end": { + "$date": "2020-10-26T02:33:39.000Z" + }, + "events": [ + { + "uuid": "adf64ae0-004a-485c-899b-d73f90920d40", + "start": { + "$date": "2020-10-26T02:27:21.000Z" + }, + "end": { + "$date": "2020-10-26T02:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "7e715877-95a0-488e-90e0-cce11f2fedfd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-26T02:34:03.000Z" + }, + "end": { + "$date": "2020-10-26T02:43:40.000Z" + }, + "events": [ + { + "uuid": "47750c1f-9b21-455e-a5f3-7a6c34514b9b", + "start": { + "$date": "2020-10-26T02:34:03.000Z" + }, + "end": { + "$date": "2020-10-26T02:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ce4268f2-58d1-43de-a721-6b355e124713", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-26T01:07:17.000Z" + }, + "end": { + "$date": "2020-10-26T02:43:53.000Z" + }, + "events": [ + { + "uuid": "fff483ce-9f2f-4763-bc2c-374080a5db9e", + "start": { + "$date": "2020-10-26T01:07:17.000Z" + }, + "end": { + "$date": "2020-10-26T02:43:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a8aa20fb-36a1-4cfd-ad29-a26da9019dc7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-26T02:44:14.000Z" + }, + "end": { + "$date": "2020-10-26T03:03:41.000Z" + }, + "events": [ + { + "uuid": "67ff631b-70c9-440e-b6e7-f8b72629c085", + "start": { + "$date": "2020-10-26T02:44:14.000Z" + }, + "end": { + "$date": "2020-10-26T03:03:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca2ceff7-b358-45be-a3f6-56f53372818a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-26T03:04:34.000Z" + }, + "end": { + "$date": "2020-10-26T03:27:50.000Z" + }, + "events": [ + { + "uuid": "1c0fe01d-1d00-4aed-aab8-7f1c3d15d3f6", + "start": { + "$date": "2020-10-26T03:04:34.000Z" + }, + "end": { + "$date": "2020-10-26T03:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f1d43c5b-cdf6-4256-86da-186a6c13c5cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-26T03:06:59.000Z" + }, + "end": { + "$date": "2020-10-26T04:54:58.000Z" + }, + "events": [ + { + "uuid": "f2e905cc-56d9-4eee-8496-ff5812fc8073", + "start": { + "$date": "2020-10-26T03:06:59.000Z" + }, + "end": { + "$date": "2020-10-26T04:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33b098c5-2a0c-4778-8c98-304922b1d9e6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-26T03:22:23.000Z" + }, + "end": { + "$date": "2020-10-26T03:53:46.000Z" + }, + "events": [ + { + "uuid": "92a8105b-5316-47f4-ad38-0f1b077e5a29", + "start": { + "$date": "2020-10-26T03:22:23.000Z" + }, + "end": { + "$date": "2020-10-26T03:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acabf76a-6f3e-4f05-a8f2-7cd59bf5a274", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-26T03:59:44.000Z" + }, + "end": { + "$date": "2020-10-26T04:35:21.000Z" + }, + "events": [ + { + "uuid": "bbcba5aa-1d21-4d84-9057-f5001f906cb7", + "start": { + "$date": "2020-10-26T03:59:44.000Z" + }, + "end": { + "$date": "2020-10-26T04:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8c0789d1-6cee-4659-b94c-4f3da5d67b9d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-26T04:35:52.000Z" + }, + "end": { + "$date": "2020-10-26T04:37:07.000Z" + }, + "events": [ + { + "uuid": "c3691988-3c62-4ef7-a7af-6da9ad7a6764", + "start": { + "$date": "2020-10-26T04:35:52.000Z" + }, + "end": { + "$date": "2020-10-26T04:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cadc49e-2790-404c-ba72-b6008c15b93a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-26T04:41:41.000Z" + }, + "end": { + "$date": "2020-10-26T05:11:07.000Z" + }, + "events": [ + { + "uuid": "73cd236a-73a5-4454-a6ce-3466a17752b3", + "start": { + "$date": "2020-10-26T04:41:41.000Z" + }, + "end": { + "$date": "2020-10-26T05:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4a416a36-e9a5-48ac-b7c9-3e50e70b98de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-26T04:37:27.000Z" + }, + "end": { + "$date": "2020-10-26T05:02:49.000Z" + }, + "events": [ + { + "uuid": "cb351bab-9a4c-49e5-b92d-5d34317fdc6f", + "start": { + "$date": "2020-10-26T04:37:27.000Z" + }, + "end": { + "$date": "2020-10-26T05:02:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ffa0abc-2b07-4564-a572-415f7464eb42", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-26T04:39:33.000Z" + }, + "end": { + "$date": "2020-10-26T05:30:48.000Z" + }, + "events": [ + { + "uuid": "62873330-ef0b-47f7-baf5-49e0c2eb5b28", + "start": { + "$date": "2020-10-26T04:39:33.000Z" + }, + "end": { + "$date": "2020-10-26T05:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "811ef9e9-a842-4cba-bad8-ed57f5afa198", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-26T15:36:45.000Z" + }, + "end": { + "$date": "2020-10-26T17:06:44.000Z" + }, + "events": [ + { + "uuid": "47116ca2-5cdf-484f-ba5f-72cee79287fb", + "start": { + "$date": "2020-10-26T15:36:45.000Z" + }, + "end": { + "$date": "2020-10-26T17:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "ce5cd32b-10f3-426b-a6b9-1a138992bb90", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T15:53:17.000Z" + }, + "end": { + "$date": "2020-10-26T16:02:32.000Z" + }, + "events": [ + { + "uuid": "77a100b1-3e04-41cd-a328-13af8598ed07", + "start": { + "$date": "2020-10-26T15:53:17.000Z" + }, + "end": { + "$date": "2020-10-26T16:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "6d67b128-b487-403f-963d-1b0085e9655c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T16:03:08.000Z" + }, + "end": { + "$date": "2020-10-26T16:42:13.000Z" + }, + "events": [ + { + "uuid": "1f77645d-1067-4cde-9be0-536203048221", + "start": { + "$date": "2020-10-26T16:03:08.000Z" + }, + "end": { + "$date": "2020-10-26T16:42:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "164c1e90-5dc1-417d-9a02-126cb7e0dea4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T17:01:10.000Z" + }, + "end": { + "$date": "2020-10-26T17:56:36.000Z" + }, + "events": [ + { + "uuid": "effe932c-a893-4587-b48b-6c11d491c55d", + "start": { + "$date": "2020-10-26T17:01:10.000Z" + }, + "end": { + "$date": "2020-10-26T17:56:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62ed17d7-5836-448b-86d7-b5eaae450bbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T17:59:07.000Z" + }, + "end": { + "$date": "2020-10-26T18:19:19.000Z" + }, + "events": [ + { + "uuid": "90bee209-2152-4e17-a81b-e26d0d31bc2a", + "start": { + "$date": "2020-10-26T17:59:07.000Z" + }, + "end": { + "$date": "2020-10-26T18:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1033cfac-7d9b-46d8-a58e-59cc4a4f9d65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T18:02:02.000Z" + }, + "end": { + "$date": "2020-10-26T18:14:12.000Z" + }, + "events": [ + { + "uuid": "283e26e4-b579-4c7a-bf01-48ababda37f2", + "start": { + "$date": "2020-10-26T18:02:02.000Z" + }, + "end": { + "$date": "2020-10-26T18:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "46ac9e19-23c3-47b2-a70c-e31fcf0de452", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T18:14:37.000Z" + }, + "end": { + "$date": "2020-10-26T18:36:49.000Z" + }, + "events": [ + { + "uuid": "564fe878-1938-41a3-bce8-7f3d841331b3", + "start": { + "$date": "2020-10-26T18:14:37.000Z" + }, + "end": { + "$date": "2020-10-26T18:36:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80e2e19a-a87f-448b-b04b-abb7659872ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T18:42:34.000Z" + }, + "end": { + "$date": "2020-10-26T18:43:05.000Z" + }, + "events": [ + { + "uuid": "56a816d0-90be-4868-99b0-e65946d6e189", + "start": { + "$date": "2020-10-26T18:42:34.000Z" + }, + "end": { + "$date": "2020-10-26T18:43:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "129d5621-a016-4916-8b78-cee20ea0b03d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T19:05:22.000Z" + }, + "end": { + "$date": "2020-10-26T20:14:39.000Z" + }, + "events": [ + { + "uuid": "fc5ee0ae-49c5-418a-ae3e-9f3647139ae4", + "start": { + "$date": "2020-10-26T19:05:22.000Z" + }, + "end": { + "$date": "2020-10-26T20:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "daa4473f-7afd-4420-9774-4d140fef035b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-10-26T19:11:14.000Z" + }, + "end": { + "$date": "2020-10-26T20:24:10.000Z" + }, + "events": [ + { + "uuid": "22ff1c87-7b5b-4ed2-8749-d3bf497e35f0", + "start": { + "$date": "2020-10-26T19:11:14.000Z" + }, + "end": { + "$date": "2020-10-26T20:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0f0c24bc-73e2-4b7c-a8f0-86122a7d1e0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-26T20:19:58.000Z" + }, + "end": { + "$date": "2020-10-26T20:43:54.000Z" + }, + "events": [ + { + "uuid": "cac9ea29-661e-4655-a106-84fe1076ca80", + "start": { + "$date": "2020-10-26T20:19:58.000Z" + }, + "end": { + "$date": "2020-10-26T20:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "15dd6479-b44a-4c32-b7ee-d4ec6d479b7e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T21:13:15.000Z" + }, + "end": { + "$date": "2020-10-26T21:44:56.000Z" + }, + "events": [ + { + "uuid": "b760ffbf-9807-490d-b203-c4bd8d61ce98", + "start": { + "$date": "2020-10-26T21:13:15.000Z" + }, + "end": { + "$date": "2020-10-26T21:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "f5d221b0-bc3f-4963-a4d5-bdbe7d7aa1d6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-26T21:17:42.000Z" + }, + "end": { + "$date": "2020-10-27T00:01:42.000Z" + }, + "events": [ + { + "uuid": "8830dcc0-8995-480b-97b6-f230716ccf04", + "start": { + "$date": "2020-10-26T21:17:42.000Z" + }, + "end": { + "$date": "2020-10-27T00:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "f65dfff8-f9fe-40db-93b6-84bb4d397c2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-26T21:45:22.000Z" + }, + "end": { + "$date": "2020-10-26T23:23:44.000Z" + }, + "events": [ + { + "uuid": "0f029e67-f84a-4625-9d29-960ee92db0b6", + "start": { + "$date": "2020-10-26T21:45:22.000Z" + }, + "end": { + "$date": "2020-10-26T23:23:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f83433e-1fc9-4f4e-9b92-52983b8e3cd2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T22:16:25.000Z" + }, + "end": { + "$date": "2020-10-26T22:41:31.000Z" + }, + "events": [ + { + "uuid": "4932568d-1019-4ac1-a1d0-c91dc4f8e987", + "start": { + "$date": "2020-10-26T22:16:25.000Z" + }, + "end": { + "$date": "2020-10-26T22:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0328e698-4ccf-44e4-9591-7ac8000dba4f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-26T23:39:27.000Z" + }, + "end": { + "$date": "2020-10-27T00:09:11.000Z" + }, + "events": [ + { + "uuid": "ecd8fb11-642f-4b15-a4a8-50d9cb96d832", + "start": { + "$date": "2020-10-26T23:39:27.000Z" + }, + "end": { + "$date": "2020-10-27T00:09:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d70b33e-35c7-492a-8948-a98b19041cc3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-26T23:59:45.000Z" + }, + "end": { + "$date": "2020-10-27T00:37:47.000Z" + }, + "events": [ + { + "uuid": "a9ba2a79-5fd2-43a4-9a01-fad2a81cbe73", + "start": { + "$date": "2020-10-26T23:59:45.000Z" + }, + "end": { + "$date": "2020-10-27T00:36:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0b7b6494-6f45-4689-83e8-97427920ecec", + "start": { + "$date": "2020-10-27T00:36:45.000Z" + }, + "end": { + "$date": "2020-10-27T00:37:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d94061a2-e5c6-40ec-8e6c-5cb93939f6b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-27T01:32:21.000Z" + }, + "end": { + "$date": "2020-10-27T01:34:01.000Z" + }, + "events": [ + { + "uuid": "6a7da411-1c06-4709-85fd-629b11548746", + "start": { + "$date": "2020-10-27T01:32:21.000Z" + }, + "end": { + "$date": "2020-10-27T01:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f0e95dbb-8210-40d6-8796-887db9f1bfe1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-27T01:35:06.000Z" + }, + "end": { + "$date": "2020-10-27T05:22:28.000Z" + }, + "events": [ + { + "uuid": "5b375f89-959a-47b2-89a6-9d28e683d423", + "start": { + "$date": "2020-10-27T01:35:06.000Z" + }, + "end": { + "$date": "2020-10-27T05:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ff378385-0ea6-4fb4-8356-81f9fcf314c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-27T01:53:31.000Z" + }, + "end": { + "$date": "2020-10-27T01:54:37.000Z" + }, + "events": [ + { + "uuid": "c6f77fd2-2063-48dc-90e2-e6abad4a9b31", + "start": { + "$date": "2020-10-27T01:53:31.000Z" + }, + "end": { + "$date": "2020-10-27T01:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9d616b19-c521-4bfa-8f42-5cc7721c65cc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-27T01:54:57.000Z" + }, + "end": { + "$date": "2020-10-27T01:56:02.000Z" + }, + "events": [ + { + "uuid": "8c7fc1fe-b403-459a-ad06-be350bdf48c5", + "start": { + "$date": "2020-10-27T01:54:57.000Z" + }, + "end": { + "$date": "2020-10-27T01:56:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cd0db0f3-ff9d-4f5a-9cd1-eca986143b10", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-27T01:56:12.000Z" + }, + "end": { + "$date": "2020-10-27T03:34:19.000Z" + }, + "events": [ + { + "uuid": "6f1ad945-4d3a-4431-81e4-3799f3f70d80", + "start": { + "$date": "2020-10-27T01:56:12.000Z" + }, + "end": { + "$date": "2020-10-27T03:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "6ab79714-172c-48fd-94e3-c23e9f0daf06", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T02:59:33.000Z" + }, + "end": { + "$date": "2020-10-27T03:02:04.000Z" + }, + "events": [ + { + "uuid": "067406ec-98b4-4b57-bd5d-431be5cd9f79", + "start": { + "$date": "2020-10-27T02:59:33.000Z" + }, + "end": { + "$date": "2020-10-27T03:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1b796f9e-0a9a-4a8d-ae5c-40eb8955e193", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-27T03:01:38.000Z" + }, + "end": { + "$date": "2020-10-27T03:39:15.000Z" + }, + "events": [ + { + "uuid": "ad37923c-0c86-433f-a2e7-32f7ca1bfba5", + "start": { + "$date": "2020-10-27T03:01:38.000Z" + }, + "end": { + "$date": "2020-10-27T03:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b0143962-0e09-40ad-806e-fe9ac6b57719", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T03:11:50.000Z" + }, + "end": { + "$date": "2020-10-27T03:43:33.000Z" + }, + "events": [ + { + "uuid": "89bfd710-a57d-4f4b-b45c-99b627d00f28", + "start": { + "$date": "2020-10-27T03:11:50.000Z" + }, + "end": { + "$date": "2020-10-27T03:43:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "467c9d94-3399-4d95-b91e-63337f36d1b2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T03:43:42.000Z" + }, + "end": { + "$date": "2020-10-27T03:49:33.000Z" + }, + "events": [ + { + "uuid": "8ce4f709-cfe8-4124-b7c2-bd7190761aee", + "start": { + "$date": "2020-10-27T03:43:42.000Z" + }, + "end": { + "$date": "2020-10-27T03:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6c58ef43-5359-4d8f-a7f2-619fc3f3f875", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-27T03:44:58.000Z" + }, + "end": { + "$date": "2020-10-27T06:35:34.000Z" + }, + "events": [ + { + "uuid": "3c14ee67-1799-4873-b1c3-77f093790796", + "start": { + "$date": "2020-10-27T03:44:58.000Z" + }, + "end": { + "$date": "2020-10-27T06:35:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ab71bf9-2610-4fbb-abcd-e85b7377fa2e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T04:28:21.000Z" + }, + "end": { + "$date": "2020-10-27T05:04:36.000Z" + }, + "events": [ + { + "uuid": "aec642c3-aaf0-4190-bea5-0854cf04c240", + "start": { + "$date": "2020-10-27T04:28:21.000Z" + }, + "end": { + "$date": "2020-10-27T05:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d67c1a1-675f-4354-a432-528e875b8d34", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-27T03:52:25.000Z" + }, + "end": { + "$date": "2020-10-27T04:26:53.000Z" + }, + "events": [ + { + "uuid": "5f81e19c-bbe1-4a8a-9b4b-2a7e2ab9fc24", + "start": { + "$date": "2020-10-27T03:52:25.000Z" + }, + "end": { + "$date": "2020-10-27T04:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eac12830-841c-4519-8f4b-5959fbd31b41", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-27T04:28:38.000Z" + }, + "end": { + "$date": "2020-10-27T05:04:36.000Z" + }, + "events": [ + { + "uuid": "05b7f10e-824f-435b-984e-3fe272745724", + "start": { + "$date": "2020-10-27T04:28:38.000Z" + }, + "end": { + "$date": "2020-10-27T05:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "f826bc83-f29c-47e5-b15d-dc912ec02c81", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-27T06:35:59.000Z" + }, + "end": { + "$date": "2020-10-27T08:04:14.000Z" + }, + "events": [ + { + "uuid": "4e15b1dc-048f-410e-aa99-36d4949ed241", + "start": { + "$date": "2020-10-27T06:35:59.000Z" + }, + "end": { + "$date": "2020-10-27T08:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "e42c566f-b371-4472-b120-08c1bd1cec69", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-27T14:15:34.000Z" + }, + "end": { + "$date": "2020-10-27T14:27:48.000Z" + }, + "events": [ + { + "uuid": "680cf151-dc67-4ac9-88ea-628e0a129f6a", + "start": { + "$date": "2020-10-27T14:15:34.000Z" + }, + "end": { + "$date": "2020-10-27T14:26:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "38ac5d16-6771-43d7-8442-2e6ee6581e83", + "start": { + "$date": "2020-10-27T14:26:34.000Z" + }, + "end": { + "$date": "2020-10-27T14:27:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bc4b352-53ed-4084-8f07-f49eb159ea52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-27T16:08:53.000Z" + }, + "end": { + "$date": "2020-10-27T16:47:16.000Z" + }, + "events": [ + { + "uuid": "76f24bdc-1e15-4160-9c19-7270e0869c6b", + "start": { + "$date": "2020-10-27T16:08:53.000Z" + }, + "end": { + "$date": "2020-10-27T16:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "794caaef-101a-4597-9151-075258715878", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-27T17:08:00.000Z" + }, + "end": { + "$date": "2020-10-27T19:03:46.000Z" + }, + "events": [ + { + "uuid": "74f90360-4dec-4c18-82f8-8f20d661fc1a", + "start": { + "$date": "2020-10-27T17:08:00.000Z" + }, + "end": { + "$date": "2020-10-27T19:03:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79ec4e93-f113-4fe0-b651-3e7e0bf61c4b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T19:51:03.000Z" + }, + "end": { + "$date": "2020-10-27T20:10:24.000Z" + }, + "events": [ + { + "uuid": "bd017a3c-57d1-4da4-9824-b0612fedacee", + "start": { + "$date": "2020-10-27T19:51:03.000Z" + }, + "end": { + "$date": "2020-10-27T20:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2455d88c-6ea9-4780-ba38-6b8e042336e1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T20:13:49.000Z" + }, + "end": { + "$date": "2020-10-27T20:26:45.000Z" + }, + "events": [ + { + "uuid": "ac9ea3b5-1af8-49a0-abf9-dd531dd866a7", + "start": { + "$date": "2020-10-27T20:13:49.000Z" + }, + "end": { + "$date": "2020-10-27T20:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "86ccab30-53b1-4c77-a557-46005398c860", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-27T21:05:13.000Z" + }, + "end": { + "$date": "2020-10-27T22:24:15.000Z" + }, + "events": [ + { + "uuid": "85cb2906-f503-4c5c-931c-a290b0f7e15f", + "start": { + "$date": "2020-10-27T21:05:13.000Z" + }, + "end": { + "$date": "2020-10-27T22:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "50b15e2d-8d1a-4101-808c-214c976a06ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-27T22:53:29.000Z" + }, + "end": { + "$date": "2020-10-27T23:13:53.000Z" + }, + "events": [ + { + "uuid": "3331e007-0b84-464f-b67a-f4e9fdc9cc22", + "start": { + "$date": "2020-10-27T22:53:29.000Z" + }, + "end": { + "$date": "2020-10-27T23:13:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4304de96-244c-4502-b99c-371eb05e5f74", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-27T23:15:01.000Z" + }, + "end": { + "$date": "2020-10-28T01:25:20.000Z" + }, + "events": [ + { + "uuid": "efd5e0a4-15c3-478c-ab0b-6674a44911eb", + "start": { + "$date": "2020-10-27T23:15:01.000Z" + }, + "end": { + "$date": "2020-10-28T01:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1419d9f6-ea09-4208-ab2c-4a82200f00d0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-28T00:51:31.000Z" + }, + "end": { + "$date": "2020-10-28T04:55:42.000Z" + }, + "events": [ + { + "uuid": "31fcabd4-ccc3-40d6-a076-38e08b4a3fbe", + "start": { + "$date": "2020-10-28T00:51:31.000Z" + }, + "end": { + "$date": "2020-10-28T02:18:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c4235e29-26da-4532-9fd1-75f294a6a1f3", + "start": { + "$date": "2020-10-28T02:18:31.000Z" + }, + "end": { + "$date": "2020-10-28T02:22:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b04c705-3db1-460f-a15a-61f752698794", + "start": { + "$date": "2020-10-28T02:22:31.000Z" + }, + "end": { + "$date": "2020-10-28T04:00:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98072b77-420d-4d56-b8cf-3b53343a9901", + "start": { + "$date": "2020-10-28T04:00:31.000Z" + }, + "end": { + "$date": "2020-10-28T04:02:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ecd78632-ddc1-4ac2-8989-e196843a3770", + "start": { + "$date": "2020-10-28T04:02:31.000Z" + }, + "end": { + "$date": "2020-10-28T04:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d810368b-01a2-4d95-8009-a5a144956431", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-28T01:36:05.000Z" + }, + "end": { + "$date": "2020-10-28T01:42:32.000Z" + }, + "events": [ + { + "uuid": "ba19aea5-516d-4aea-840c-6f828d1fbed1", + "start": { + "$date": "2020-10-28T01:36:05.000Z" + }, + "end": { + "$date": "2020-10-28T01:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2f3309f2-e8f4-4d0c-9ba9-9a6a37f45167", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-28T01:42:46.000Z" + }, + "end": { + "$date": "2020-10-28T01:52:32.000Z" + }, + "events": [ + { + "uuid": "c94f1143-9cb2-4450-a3a2-2af0d095fab0", + "start": { + "$date": "2020-10-28T01:42:46.000Z" + }, + "end": { + "$date": "2020-10-28T01:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a1711f0-782c-4ba2-be9c-3720d2abafe5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-28T04:08:58.000Z" + }, + "end": { + "$date": "2020-10-28T04:48:08.000Z" + }, + "events": [ + { + "uuid": "b00b3d86-c74c-4b56-ba63-97bdac5bab4c", + "start": { + "$date": "2020-10-28T04:08:58.000Z" + }, + "end": { + "$date": "2020-10-28T04:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58d403ea-ff3f-449f-aab7-cc79080be9b6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-28T03:29:08.000Z" + }, + "end": { + "$date": "2020-10-28T04:01:54.000Z" + }, + "events": [ + { + "uuid": "8e3ce6ae-ab78-4930-8106-0ef470829c54", + "start": { + "$date": "2020-10-28T03:29:08.000Z" + }, + "end": { + "$date": "2020-10-28T04:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "597a9c55-5683-49e9-9d87-cf5942920071", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-28T04:09:04.000Z" + }, + "end": { + "$date": "2020-10-28T04:48:06.000Z" + }, + "events": [ + { + "uuid": "3cfd2878-f5ca-41e3-b2f2-c073b28ac5f5", + "start": { + "$date": "2020-10-28T04:09:04.000Z" + }, + "end": { + "$date": "2020-10-28T04:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "316aeefa-98d5-4a4b-83a3-8c6ff0fe0dcb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-28T04:09:40.000Z" + }, + "end": { + "$date": "2020-10-28T04:47:57.000Z" + }, + "events": [ + { + "uuid": "c25d1c1d-13ee-42c7-abec-a7252477e773", + "start": { + "$date": "2020-10-28T04:09:40.000Z" + }, + "end": { + "$date": "2020-10-28T04:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67ba9a42-e208-43e2-8696-fbd1b7130a4f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-28T04:50:57.000Z" + }, + "end": { + "$date": "2020-10-28T05:09:53.000Z" + }, + "events": [ + { + "uuid": "f20b3e1b-72f1-4527-aa7a-186bf944060a", + "start": { + "$date": "2020-10-28T04:50:57.000Z" + }, + "end": { + "$date": "2020-10-28T05:09:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5eda35f-e4c5-4415-8001-782fd41c9d7d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-28T04:51:07.000Z" + }, + "end": { + "$date": "2020-10-28T05:09:47.000Z" + }, + "events": [ + { + "uuid": "e8f54d6b-a080-41c9-94fa-dbbb2d2b7638", + "start": { + "$date": "2020-10-28T04:51:07.000Z" + }, + "end": { + "$date": "2020-10-28T05:09:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d5770f4-967d-4699-bffa-807ce2d1c2a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-28T04:50:58.000Z" + }, + "end": { + "$date": "2020-10-28T05:09:48.000Z" + }, + "events": [ + { + "uuid": "d7bbf1ab-6fdc-4aed-b979-32256a48c781", + "start": { + "$date": "2020-10-28T04:50:58.000Z" + }, + "end": { + "$date": "2020-10-28T05:09:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "02de168f-b6df-4da7-b6c3-c58cbb285089", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-28T14:33:11.000Z" + }, + "end": { + "$date": "2020-10-28T16:07:04.000Z" + }, + "events": [ + { + "uuid": "8b85860e-089c-431e-9527-8e904c36d050", + "start": { + "$date": "2020-10-28T14:33:11.000Z" + }, + "end": { + "$date": "2020-10-28T16:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "534c5e4c-2437-4739-8264-c1e404951815", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-28T17:07:39.000Z" + }, + "end": { + "$date": "2020-10-28T17:41:01.000Z" + }, + "events": [ + { + "uuid": "9eeea64d-5c97-41d6-b5b6-af54d7acc9f5", + "start": { + "$date": "2020-10-28T17:07:39.000Z" + }, + "end": { + "$date": "2020-10-28T17:41:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "379c628f-449f-44dc-9890-486250f833a6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-28T18:15:44.000Z" + }, + "end": { + "$date": "2020-10-28T18:16:49.000Z" + }, + "events": [ + { + "uuid": "85970fb8-e8c5-4a11-a05d-41ada477ef41", + "start": { + "$date": "2020-10-28T18:15:44.000Z" + }, + "end": { + "$date": "2020-10-28T18:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "564c3263-042d-4e98-85de-561d0e0192a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-28T19:46:25.000Z" + }, + "end": { + "$date": "2020-10-28T20:14:19.000Z" + }, + "events": [ + { + "uuid": "243ee8da-6487-4895-894c-03415c9f84ee", + "start": { + "$date": "2020-10-28T19:46:25.000Z" + }, + "end": { + "$date": "2020-10-28T20:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "508ad7a4-b21f-4d21-ac84-391ef294daca", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-28T20:39:00.000Z" + }, + "end": { + "$date": "2020-10-28T20:41:30.000Z" + }, + "events": [ + { + "uuid": "5f6e6bbc-8ef8-4577-aee4-d15db735992d", + "start": { + "$date": "2020-10-28T20:39:00.000Z" + }, + "end": { + "$date": "2020-10-28T20:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a0bed433-ea6b-4d79-9178-ccfd5b8729d7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-28T20:43:22.000Z" + }, + "end": { + "$date": "2020-10-28T20:54:51.000Z" + }, + "events": [ + { + "uuid": "95e847b7-3de5-4f29-a6a1-58ab5d444c08", + "start": { + "$date": "2020-10-28T20:43:22.000Z" + }, + "end": { + "$date": "2020-10-28T20:54:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cb80b555-6acc-4b00-a956-1bda1e141115", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-28T20:55:47.000Z" + }, + "end": { + "$date": "2020-10-28T23:09:28.000Z" + }, + "events": [ + { + "uuid": "08fff3d9-3346-4ac0-a6dc-c177d495ae13", + "start": { + "$date": "2020-10-28T20:55:47.000Z" + }, + "end": { + "$date": "2020-10-28T23:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b216e4d1-a97f-4dad-954f-8f1213afb413", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-28T21:20:47.000Z" + }, + "end": { + "$date": "2020-10-28T21:32:54.000Z" + }, + "events": [ + { + "uuid": "e7d78e79-0f92-4ca8-9862-306ca0ec326c", + "start": { + "$date": "2020-10-28T21:20:47.000Z" + }, + "end": { + "$date": "2020-10-28T21:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e8f95e1-e76e-404a-8172-8dde28fb9b83", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-28T21:36:22.000Z" + }, + "end": { + "$date": "2020-10-28T21:55:50.000Z" + }, + "events": [ + { + "uuid": "771fd7e4-2581-434e-a520-dec018853e44", + "start": { + "$date": "2020-10-28T21:36:22.000Z" + }, + "end": { + "$date": "2020-10-28T21:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "da8cd4d6-7727-4375-9427-6600c22fc8aa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-28T21:50:37.000Z" + }, + "end": { + "$date": "2020-10-28T23:20:37.000Z" + }, + "events": [ + { + "uuid": "378fdfe9-d4f3-4e04-bc31-2f98624d978f", + "start": { + "$date": "2020-10-28T21:50:37.000Z" + }, + "end": { + "$date": "2020-10-28T23:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2a220358-1f63-4b18-817f-15be4b76c197", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-28T23:20:51.000Z" + }, + "end": { + "$date": "2020-10-29T00:53:06.000Z" + }, + "events": [ + { + "uuid": "64b6eb54-d6cf-4bbd-ae76-22750ecfb30c", + "start": { + "$date": "2020-10-28T23:20:51.000Z" + }, + "end": { + "$date": "2020-10-29T00:53:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4a0768f4-3146-4b69-bbff-e966d6f8f9e5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-28T23:21:07.000Z" + }, + "end": { + "$date": "2020-10-29T00:53:01.000Z" + }, + "events": [ + { + "uuid": "b0de7577-6928-41cf-a9f7-d5084b003d22", + "start": { + "$date": "2020-10-28T23:21:07.000Z" + }, + "end": { + "$date": "2020-10-29T00:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc9cc31c-6908-44d8-9f57-35bfd66275a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-29T00:57:11.000Z" + }, + "end": { + "$date": "2020-10-29T01:21:12.000Z" + }, + "events": [ + { + "uuid": "76bf7f92-1a39-42f0-b1d4-8c0eec3781cb", + "start": { + "$date": "2020-10-29T00:57:11.000Z" + }, + "end": { + "$date": "2020-10-29T00:59:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55dfbc56-394e-43bf-838f-c046034a84b5", + "start": { + "$date": "2020-10-29T00:59:11.000Z" + }, + "end": { + "$date": "2020-10-29T01:21:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "434ba286-4235-487b-a51c-5f99bfff124e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-29T01:05:09.000Z" + }, + "end": { + "$date": "2020-10-29T01:06:14.000Z" + }, + "events": [ + { + "uuid": "9aea47fd-a68e-4874-8ec6-ce3dd61914a7", + "start": { + "$date": "2020-10-29T01:05:09.000Z" + }, + "end": { + "$date": "2020-10-29T01:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1c7c670f-c946-49d9-abe0-655e8df60f28", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-29T01:06:19.000Z" + }, + "end": { + "$date": "2020-10-29T02:21:18.000Z" + }, + "events": [ + { + "uuid": "6c91404e-d3c3-4760-8d9d-eaa7bc2e52a3", + "start": { + "$date": "2020-10-29T01:06:19.000Z" + }, + "end": { + "$date": "2020-10-29T02:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3013e9f0-0cd2-43aa-9087-f068b946fa2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-29T01:13:59.000Z" + }, + "end": { + "$date": "2020-10-29T01:42:37.000Z" + }, + "events": [ + { + "uuid": "af03b61b-223e-430b-9da1-7f0d6d099e78", + "start": { + "$date": "2020-10-29T01:13:59.000Z" + }, + "end": { + "$date": "2020-10-29T01:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6660c6df-c4ee-41a4-96e7-c54611db9783", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-29T02:19:12.000Z" + }, + "end": { + "$date": "2020-10-29T04:28:38.000Z" + }, + "events": [ + { + "uuid": "893a655a-e97b-4d54-bca2-98b29b9f08d4", + "start": { + "$date": "2020-10-29T02:19:12.000Z" + }, + "end": { + "$date": "2020-10-29T04:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "23bcea3c-d362-461b-8a1d-71db9f2b0ed8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-29T02:37:46.000Z" + }, + "end": { + "$date": "2020-10-29T04:51:52.000Z" + }, + "events": [ + { + "uuid": "e1e2210c-166d-4d89-8ce6-4039847a0bb3", + "start": { + "$date": "2020-10-29T02:37:46.000Z" + }, + "end": { + "$date": "2020-10-29T04:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "74b9819c-8f84-4924-a970-67fd9613a343", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-29T03:07:34.000Z" + }, + "end": { + "$date": "2020-10-29T05:38:36.000Z" + }, + "events": [ + { + "uuid": "009a14cf-defb-4f9a-a59e-907756a5873c", + "start": { + "$date": "2020-10-29T03:07:34.000Z" + }, + "end": { + "$date": "2020-10-29T04:51:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3e565226-2c6f-426c-a89c-a4eb57bd03ef", + "start": { + "$date": "2020-10-29T04:51:34.000Z" + }, + "end": { + "$date": "2020-10-29T04:56:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae7905db-c158-4234-bb59-62c917991de1", + "start": { + "$date": "2020-10-29T04:56:34.000Z" + }, + "end": { + "$date": "2020-10-29T05:06:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f3b69a4-80c1-4f8a-a660-c95b72239a5a", + "start": { + "$date": "2020-10-29T05:06:34.000Z" + }, + "end": { + "$date": "2020-10-29T05:38:36.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ce6fb1e-bc4e-4d07-8723-4adccf5fc32a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-29T03:59:51.000Z" + }, + "end": { + "$date": "2020-10-29T04:32:29.000Z" + }, + "events": [ + { + "uuid": "0f2b7c32-e3b8-4a7f-bd77-1e93887a45ad", + "start": { + "$date": "2020-10-29T03:59:51.000Z" + }, + "end": { + "$date": "2020-10-29T04:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4757fe1-0c1e-481c-abce-a8254f82e8a2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-29T04:00:15.000Z" + }, + "end": { + "$date": "2020-10-29T04:32:21.000Z" + }, + "events": [ + { + "uuid": "5ea7ee75-8ac4-4f48-bd79-b0203aac292e", + "start": { + "$date": "2020-10-29T04:00:15.000Z" + }, + "end": { + "$date": "2020-10-29T04:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5393fb32-6b5e-45a0-9fd4-25d043e536cc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-29T04:33:57.000Z" + }, + "end": { + "$date": "2020-10-29T05:10:42.000Z" + }, + "events": [ + { + "uuid": "f95b0d34-f45f-43b5-937c-53c1ef7c401a", + "start": { + "$date": "2020-10-29T04:33:57.000Z" + }, + "end": { + "$date": "2020-10-29T05:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7defd21-32cf-4393-8549-df3bef556e2c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-29T04:34:14.000Z" + }, + "end": { + "$date": "2020-10-29T05:04:32.000Z" + }, + "events": [ + { + "uuid": "f7fd6047-a95d-4dd4-98a5-74516ab9fdc7", + "start": { + "$date": "2020-10-29T04:34:14.000Z" + }, + "end": { + "$date": "2020-10-29T05:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99dbf8e3-8afe-48a7-a25e-67e583f18d93", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-29T04:34:16.000Z" + }, + "end": { + "$date": "2020-10-29T05:10:44.000Z" + }, + "events": [ + { + "uuid": "1cec9b09-258a-4dec-8c76-be5a62c1c378", + "start": { + "$date": "2020-10-29T04:34:16.000Z" + }, + "end": { + "$date": "2020-10-29T05:10:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2a0dd609-d52c-4290-be10-0d78bcbb8b65", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-29T04:36:19.000Z" + }, + "end": { + "$date": "2020-10-29T04:50:55.000Z" + }, + "events": [ + { + "uuid": "37d3c91d-a8c7-4688-a43e-38e2cdfd7936", + "start": { + "$date": "2020-10-29T04:36:19.000Z" + }, + "end": { + "$date": "2020-10-29T04:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "81794086-e3c3-452e-967b-544ec6e11727", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-29T05:11:22.000Z" + }, + "end": { + "$date": "2020-10-29T05:27:07.000Z" + }, + "events": [ + { + "uuid": "17bd164c-377b-4889-8f99-e96fefb3c6f7", + "start": { + "$date": "2020-10-29T05:11:22.000Z" + }, + "end": { + "$date": "2020-10-29T05:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "2a25df1f-2892-4dce-9f92-90018ef92515", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-29T14:07:35.000Z" + }, + "end": { + "$date": "2020-10-29T16:54:13.000Z" + }, + "events": [ + { + "uuid": "638fe0bf-40a2-4933-9b3d-a80b18409292", + "start": { + "$date": "2020-10-29T14:07:35.000Z" + }, + "end": { + "$date": "2020-10-29T16:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "f7510d42-e050-4bdf-b162-129aeef4b2c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-29T14:51:34.000Z" + }, + "end": { + "$date": "2020-10-29T15:25:26.000Z" + }, + "events": [ + { + "uuid": "0dcacc0e-ecbe-4259-afbf-36340483e801", + "start": { + "$date": "2020-10-29T14:51:34.000Z" + }, + "end": { + "$date": "2020-10-29T15:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b3cce810-dea6-4a10-b49b-38d312217d0f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-29T15:50:13.000Z" + }, + "end": { + "$date": "2020-10-29T16:45:23.000Z" + }, + "events": [ + { + "uuid": "9939ec12-2096-4975-a4f2-470d0896212e", + "start": { + "$date": "2020-10-29T15:50:13.000Z" + }, + "end": { + "$date": "2020-10-29T16:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "931c1164-c9bf-4dc5-844d-3e52b5bd5862", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-29T16:46:10.000Z" + }, + "end": { + "$date": "2020-10-29T16:48:19.000Z" + }, + "events": [ + { + "uuid": "27aa4057-6fa0-4d39-96ea-13d77b4a3a7d", + "start": { + "$date": "2020-10-29T16:46:10.000Z" + }, + "end": { + "$date": "2020-10-29T16:48:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3e4e50f2-d121-47cf-8737-81bdbcbe87f7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-29T16:51:39.000Z" + }, + "end": { + "$date": "2020-10-29T17:05:08.000Z" + }, + "events": [ + { + "uuid": "183515b5-85f2-43d6-95b4-0c57cccc7568", + "start": { + "$date": "2020-10-29T16:51:39.000Z" + }, + "end": { + "$date": "2020-10-29T17:05:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e5aa8b01-9337-4443-9c7e-1266c37e8995", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-29T17:05:22.000Z" + }, + "end": { + "$date": "2020-10-29T17:06:58.000Z" + }, + "events": [ + { + "uuid": "b6c77a97-5ac7-4602-a573-c34454625853", + "start": { + "$date": "2020-10-29T17:05:22.000Z" + }, + "end": { + "$date": "2020-10-29T17:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "345076f1-8a87-42bb-afc2-8132717d3c01", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-29T19:52:49.000Z" + }, + "end": { + "$date": "2020-10-29T20:40:20.000Z" + }, + "events": [ + { + "uuid": "131e3d2c-3acc-4d65-9e19-4a202cb0bf79", + "start": { + "$date": "2020-10-29T19:52:49.000Z" + }, + "end": { + "$date": "2020-10-29T20:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "77eec172-fa97-4618-9248-2b7ba9d1e4aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-29T21:25:34.000Z" + }, + "end": { + "$date": "2020-10-29T22:05:06.000Z" + }, + "events": [ + { + "uuid": "9ce857ed-4d63-44bc-9c01-801680eb489b", + "start": { + "$date": "2020-10-29T21:25:34.000Z" + }, + "end": { + "$date": "2020-10-29T22:05:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "ac6d17b5-82f3-436a-98b5-3782a5ca0373", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-29T21:43:16.000Z" + }, + "end": { + "$date": "2020-10-30T00:58:50.000Z" + }, + "events": [ + { + "uuid": "11b1d515-6662-4911-9a37-4a482670e3e0", + "start": { + "$date": "2020-10-29T21:43:16.000Z" + }, + "end": { + "$date": "2020-10-30T00:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "67bd3857-bdb2-4ae4-998f-3bbee8e7171a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-29T22:15:27.000Z" + }, + "end": { + "$date": "2020-10-29T22:21:42.000Z" + }, + "events": [ + { + "uuid": "b577035c-f3cb-4259-a751-0217cb312a62", + "start": { + "$date": "2020-10-29T22:15:27.000Z" + }, + "end": { + "$date": "2020-10-29T22:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b4e8d376-f154-4f75-984e-a08d8bf98739", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-29T22:24:13.000Z" + }, + "end": { + "$date": "2020-10-29T22:35:22.000Z" + }, + "events": [ + { + "uuid": "6a0ee73a-9da7-4a6e-bb6d-4090fc30198c", + "start": { + "$date": "2020-10-29T22:24:13.000Z" + }, + "end": { + "$date": "2020-10-29T22:35:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "275ada21-a726-41ee-817f-159e71d3938c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-29T22:25:19.000Z" + }, + "end": { + "$date": "2020-10-30T00:18:51.000Z" + }, + "events": [ + { + "uuid": "3582a35c-9674-4f7d-9ceb-126cf1c505e3", + "start": { + "$date": "2020-10-29T22:25:19.000Z" + }, + "end": { + "$date": "2020-10-30T00:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "637cd1c3-561b-4436-a6e9-db6fa4c47b60", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-29T22:37:21.000Z" + }, + "end": { + "$date": "2020-10-29T23:48:33.000Z" + }, + "events": [ + { + "uuid": "b0f933e1-abc9-4c96-a9e4-e5d9492188a7", + "start": { + "$date": "2020-10-29T22:37:21.000Z" + }, + "end": { + "$date": "2020-10-29T23:48:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d2526712-16e8-4127-8f9d-b9d6375816fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-29T23:06:41.000Z" + }, + "end": { + "$date": "2020-10-30T00:32:42.000Z" + }, + "events": [ + { + "uuid": "2a1c8d82-1b13-47da-b5ac-334e1210d3cb", + "start": { + "$date": "2020-10-29T23:06:41.000Z" + }, + "end": { + "$date": "2020-10-30T00:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cd313c31-0555-4941-8fa7-0d765bf68d7c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-29T23:09:46.000Z" + }, + "end": { + "$date": "2020-10-30T01:23:00.000Z" + }, + "events": [ + { + "uuid": "e0ae828a-d531-4e21-a968-81c1245bb104", + "start": { + "$date": "2020-10-29T23:09:46.000Z" + }, + "end": { + "$date": "2020-10-30T01:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "496a708f-a607-4d40-9291-3d26ba3e372a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-29T23:21:31.000Z" + }, + "end": { + "$date": "2020-10-30T01:14:47.000Z" + }, + "events": [ + { + "uuid": "e60e12d1-6eff-4b7b-be9a-b3c832839bc8", + "start": { + "$date": "2020-10-29T23:21:31.000Z" + }, + "end": { + "$date": "2020-10-30T01:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de96230a-3981-40f9-9b9c-0c6df0f6cfda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-30T00:48:28.000Z" + }, + "end": { + "$date": "2020-10-30T01:14:29.000Z" + }, + "events": [ + { + "uuid": "e14fc350-feed-4fc5-9b70-efe48bfa4d5a", + "start": { + "$date": "2020-10-30T00:48:28.000Z" + }, + "end": { + "$date": "2020-10-30T01:14:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3744220a-5de9-4ae5-82fd-7252bd8d01bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-30T01:29:44.000Z" + }, + "end": { + "$date": "2020-10-30T03:31:34.000Z" + }, + "events": [ + { + "uuid": "7cd3cacd-7002-44b7-8707-1094443b7fd5", + "start": { + "$date": "2020-10-30T01:29:44.000Z" + }, + "end": { + "$date": "2020-10-30T03:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "294c419d-f89a-46ac-8065-6279238845e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-30T01:56:13.000Z" + }, + "end": { + "$date": "2020-10-30T02:29:31.000Z" + }, + "events": [ + { + "uuid": "0b3bc090-b193-4255-af89-a68e73c15c72", + "start": { + "$date": "2020-10-30T01:56:13.000Z" + }, + "end": { + "$date": "2020-10-30T02:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd2e517b-51aa-404e-a3a4-8df16b8c88d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-30T02:51:43.000Z" + }, + "end": { + "$date": "2020-10-30T03:12:54.000Z" + }, + "events": [ + { + "uuid": "07f6820d-47da-413c-8b13-b34651188564", + "start": { + "$date": "2020-10-30T02:51:43.000Z" + }, + "end": { + "$date": "2020-10-30T03:12:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ec323b5-1c12-47a2-8234-529ce645ce99", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-10-30T03:30:04.000Z" + }, + "end": { + "$date": "2020-10-30T04:38:14.000Z" + }, + "events": [ + { + "uuid": "58ab3d93-b23f-4bca-a903-d2eb6b049ce1", + "start": { + "$date": "2020-10-30T03:30:04.000Z" + }, + "end": { + "$date": "2020-10-30T04:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9a3748f1-8431-43ef-a4fe-1e9cada04be7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-30T03:33:18.000Z" + }, + "end": { + "$date": "2020-10-30T04:51:58.000Z" + }, + "events": [ + { + "uuid": "7efb5c3c-f793-4f2f-860c-6e3821e4a9ca", + "start": { + "$date": "2020-10-30T03:33:18.000Z" + }, + "end": { + "$date": "2020-10-30T04:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47af3259-7be4-4d56-ba05-4b8e21191b1b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-30T04:06:40.000Z" + }, + "end": { + "$date": "2020-10-30T05:25:05.000Z" + }, + "events": [ + { + "uuid": "62c81613-8271-4462-96ac-a470d2960e16", + "start": { + "$date": "2020-10-30T04:06:40.000Z" + }, + "end": { + "$date": "2020-10-30T05:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b0ee1dbf-7b52-4b2b-9ce1-2bdd3229d88d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-30T04:02:41.000Z" + }, + "end": { + "$date": "2020-10-30T05:25:07.000Z" + }, + "events": [ + { + "uuid": "219072f3-17a2-471a-b1e5-89150629829f", + "start": { + "$date": "2020-10-30T04:02:41.000Z" + }, + "end": { + "$date": "2020-10-30T05:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95785734-60fa-4e9a-b53d-4e53e3607f55", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-30T04:37:59.000Z" + }, + "end": { + "$date": "2020-10-30T05:11:43.000Z" + }, + "events": [ + { + "uuid": "f8054ce0-242b-49ac-8aa2-3a89d9d1c308", + "start": { + "$date": "2020-10-30T04:37:59.000Z" + }, + "end": { + "$date": "2020-10-30T05:11:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "af3056ec-7548-40f1-98b3-fb25a62a329b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-30T23:50:16.000Z" + }, + "end": { + "$date": "2020-10-31T02:26:37.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-10-30T23:50:16.000Z" + }, + "end": { + "$date": "2020-10-31T02:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8183d324-d4d0-429f-9b2f-7b1b8ce0bcdf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T01:23:37.000Z" + }, + "end": { + "$date": "2020-10-31T02:02:15.000Z" + }, + "events": [ + { + "uuid": "95bce0b0-68f5-4e55-9397-7fe9a18ea872", + "start": { + "$date": "2020-10-31T01:23:37.000Z" + }, + "end": { + "$date": "2020-10-31T02:02:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a878df18-b8c8-4524-83ff-f450c1c1df32", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-31T01:57:58.000Z" + }, + "end": { + "$date": "2020-10-31T03:38:39.000Z" + }, + "events": [ + { + "uuid": "137b6e55-8a75-410d-9454-f09e67ca1b5e", + "start": { + "$date": "2020-10-31T01:57:58.000Z" + }, + "end": { + "$date": "2020-10-31T03:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "1c7e1d0a-c2ef-486e-a689-91a97cdf43b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-31T02:05:54.000Z" + }, + "end": { + "$date": "2020-10-31T03:13:56.000Z" + }, + "events": [ + { + "uuid": "f97d0cb1-d12e-4bed-af9c-b7f6fb458d0e", + "start": { + "$date": "2020-10-31T02:05:54.000Z" + }, + "end": { + "$date": "2020-10-31T03:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "9f495e46-bf8e-480b-bc46-b30c8771e2d9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T02:09:49.000Z" + }, + "end": { + "$date": "2020-10-31T02:19:59.000Z" + }, + "events": [ + { + "uuid": "0715ee9c-1fcc-4ebe-bbde-357ef4a79631", + "start": { + "$date": "2020-10-31T02:09:49.000Z" + }, + "end": { + "$date": "2020-10-31T02:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8a3eac10-b42a-44e3-a3f6-76fdb19ee72c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T02:10:25.000Z" + }, + "end": { + "$date": "2020-10-31T03:12:50.000Z" + }, + "events": [ + { + "uuid": "ab1cef72-bbf1-4743-a0a1-504a803506c1", + "start": { + "$date": "2020-10-31T02:10:25.000Z" + }, + "end": { + "$date": "2020-10-31T03:12:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "48f9619f-eb2b-4422-91f5-b53126957c4c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T02:23:46.000Z" + }, + "end": { + "$date": "2020-10-31T02:50:00.000Z" + }, + "events": [ + { + "uuid": "554d641b-10b6-4fbc-b438-6c56a79b8995", + "start": { + "$date": "2020-10-31T02:23:46.000Z" + }, + "end": { + "$date": "2020-10-31T02:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "84bce6b2-28ec-44a7-8959-bed4ee1a9a42", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-31T03:10:30.000Z" + }, + "end": { + "$date": "2020-10-31T03:58:41.000Z" + }, + "events": [ + { + "uuid": "594c5f4d-e589-498f-8e49-75267a9b658a", + "start": { + "$date": "2020-10-31T03:10:30.000Z" + }, + "end": { + "$date": "2020-10-31T03:58:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3850e62f-6a21-47bf-bd6d-e5474b25e3d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-31T03:35:14.000Z" + }, + "end": { + "$date": "2020-10-31T03:38:58.000Z" + }, + "events": [ + { + "uuid": "da9fc1fc-bd29-4aad-aeda-b6a083411deb", + "start": { + "$date": "2020-10-31T03:35:14.000Z" + }, + "end": { + "$date": "2020-10-31T03:38:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "44408936-462a-4ef3-ae32-d3f4181ffa36", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-31T03:38:44.000Z" + }, + "end": { + "$date": "2020-10-31T03:42:20.000Z" + }, + "events": [ + { + "uuid": "2d79c2cd-549e-4451-aca7-345d23c3c5e3", + "start": { + "$date": "2020-10-31T03:38:44.000Z" + }, + "end": { + "$date": "2020-10-31T03:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39f35b1c-c796-4eb8-a2d0-675976e31e29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-31T03:41:33.000Z" + }, + "end": { + "$date": "2020-10-31T04:10:01.000Z" + }, + "events": [ + { + "uuid": "79374eda-ca56-43ea-89e9-420b04377096", + "start": { + "$date": "2020-10-31T03:41:33.000Z" + }, + "end": { + "$date": "2020-10-31T04:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "7ca56c0b-67d1-4df7-92da-c89244056658", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-10-31T03:45:34.000Z" + }, + "end": { + "$date": "2020-10-31T06:27:50.000Z" + }, + "events": [ + { + "uuid": "6ad4b314-6b88-474e-bd23-52b923aa2378", + "start": { + "$date": "2020-10-31T03:45:34.000Z" + }, + "end": { + "$date": "2020-10-31T06:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "147a478b-9070-4404-8c5e-8c7fb870c542", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-31T03:54:59.000Z" + }, + "end": { + "$date": "2020-10-31T07:12:45.000Z" + }, + "events": [ + { + "uuid": "c6e468c8-79ac-4555-93df-d174a58063ec", + "start": { + "$date": "2020-10-31T03:54:59.000Z" + }, + "end": { + "$date": "2020-10-31T07:12:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "7b0b0891-d794-4757-8420-20e672dda2d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-31T04:00:37.000Z" + }, + "end": { + "$date": "2020-10-31T06:27:02.000Z" + }, + "events": [ + { + "uuid": "9c7602c5-8ec6-4397-9ebb-c1e47c4d8a1c", + "start": { + "$date": "2020-10-31T04:00:37.000Z" + }, + "end": { + "$date": "2020-10-31T06:27:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "97eb75fa-4a4f-4baa-bd65-903cc72f3a6d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-31T04:24:40.000Z" + }, + "end": { + "$date": "2020-10-31T07:12:52.000Z" + }, + "events": [ + { + "uuid": "584279d9-5c1d-439f-914e-8875cb63ab6f", + "start": { + "$date": "2020-10-31T04:24:40.000Z" + }, + "end": { + "$date": "2020-10-31T07:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0a8d2383-0aaa-41d9-ae50-b09e2080030b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-10-31T05:23:29.000Z" + }, + "end": { + "$date": "2020-10-31T06:39:08.000Z" + }, + "events": [ + { + "uuid": "b64fb227-2fc1-49b5-a9ee-bd20f89302b1", + "start": { + "$date": "2020-10-31T05:23:29.000Z" + }, + "end": { + "$date": "2020-10-31T06:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "7b7b0544-2cd8-457a-aa49-bc45fc7fc3c5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-31T05:31:16.000Z" + }, + "end": { + "$date": "2020-10-31T05:55:37.000Z" + }, + "events": [ + { + "uuid": "84c28838-9646-4454-ba2a-dba033e61168", + "start": { + "$date": "2020-10-31T05:31:16.000Z" + }, + "end": { + "$date": "2020-10-31T05:55:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "9e8ca612-dbf3-4cf3-86a8-9ce222368191", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T06:01:14.000Z" + }, + "end": { + "$date": "2020-10-31T07:12:51.000Z" + }, + "events": [ + { + "uuid": "d706a711-218e-4988-8cda-9810194a9e12", + "start": { + "$date": "2020-10-31T06:01:14.000Z" + }, + "end": { + "$date": "2020-10-31T07:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "55c0db35-465f-4c5f-805d-22c5958a8c9e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-31T06:52:11.000Z" + }, + "end": { + "$date": "2020-10-31T07:51:36.000Z" + }, + "events": [ + { + "uuid": "632016a7-a52f-4c9f-9d64-02dff7c40f94", + "start": { + "$date": "2020-10-31T06:52:11.000Z" + }, + "end": { + "$date": "2020-10-31T07:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f952272f-6bb6-4827-9094-29838364cec8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T07:16:47.000Z" + }, + "end": { + "$date": "2020-10-31T07:20:57.000Z" + }, + "events": [ + { + "uuid": "eb46600e-679d-4c85-a54d-5155d150d277", + "start": { + "$date": "2020-10-31T07:16:47.000Z" + }, + "end": { + "$date": "2020-10-31T07:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d2eaca1f-1363-4abc-9a00-89949e5f70a8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T07:21:23.000Z" + }, + "end": { + "$date": "2020-10-31T07:27:13.000Z" + }, + "events": [ + { + "uuid": "c36a6c8c-fe3d-4e1d-902a-5647ee0f2a5e", + "start": { + "$date": "2020-10-31T07:21:23.000Z" + }, + "end": { + "$date": "2020-10-31T07:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d0da446d-2e97-4a27-9649-f120ef1b8e51", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T07:28:03.000Z" + }, + "end": { + "$date": "2020-10-31T07:35:53.000Z" + }, + "events": [ + { + "uuid": "cabffe73-3368-45d1-b270-71c2de94277a", + "start": { + "$date": "2020-10-31T07:28:03.000Z" + }, + "end": { + "$date": "2020-10-31T07:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81045b48-774e-43d6-92ec-724b65823a74", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-31T07:39:55.000Z" + }, + "end": { + "$date": "2020-10-31T08:16:27.000Z" + }, + "events": [ + { + "uuid": "de416a92-7e28-4cd0-b817-8cc22aefb26c", + "start": { + "$date": "2020-10-31T07:39:55.000Z" + }, + "end": { + "$date": "2020-10-31T08:16:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf9a37ab-2cb4-493b-b628-13a5afa18fe5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-31T08:22:56.000Z" + }, + "end": { + "$date": "2020-10-31T08:45:49.000Z" + }, + "events": [ + { + "uuid": "e859b019-e23f-4232-ac15-d156204108a2", + "start": { + "$date": "2020-10-31T08:22:56.000Z" + }, + "end": { + "$date": "2020-10-31T08:45:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca44e3b0-e814-41f1-88ab-ce2fb498fe22", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-10-31T09:08:28.000Z" + }, + "end": { + "$date": "2020-10-31T09:33:03.000Z" + }, + "events": [ + { + "uuid": "2a5f61f6-d9a4-4fd9-933c-a0fe49c5f346", + "start": { + "$date": "2020-10-31T09:08:28.000Z" + }, + "end": { + "$date": "2020-10-31T09:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b5477e96-fe3f-4653-be64-21623bf65aa0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T14:51:03.000Z" + }, + "end": { + "$date": "2020-10-31T14:55:23.000Z" + }, + "events": [ + { + "uuid": "e89b2b14-7a92-4c48-9894-090df07e1df8", + "start": { + "$date": "2020-10-31T14:51:03.000Z" + }, + "end": { + "$date": "2020-10-31T14:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "5efa7e0d-ab49-41c6-bc2b-4c3e3438df6b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T14:55:43.000Z" + }, + "end": { + "$date": "2020-10-31T15:09:05.000Z" + }, + "events": [ + { + "uuid": "1760ad24-7b4a-4af9-abf6-aff6b9fb53dc", + "start": { + "$date": "2020-10-31T14:55:43.000Z" + }, + "end": { + "$date": "2020-10-31T15:09:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "f5d7f8c5-4338-41da-82b2-6698978b1e08", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T15:09:40.000Z" + }, + "end": { + "$date": "2020-10-31T15:24:02.000Z" + }, + "events": [ + { + "uuid": "b99ab1c1-c83a-482d-b0e2-c4c8467cb530", + "start": { + "$date": "2020-10-31T15:09:40.000Z" + }, + "end": { + "$date": "2020-10-31T15:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d12b326e-e039-4834-8f00-e34d89db4104", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T15:24:07.000Z" + }, + "end": { + "$date": "2020-10-31T15:48:15.000Z" + }, + "events": [ + { + "uuid": "c62a51f9-74e1-4775-a0df-c6543a1002cd", + "start": { + "$date": "2020-10-31T15:24:07.000Z" + }, + "end": { + "$date": "2020-10-31T15:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0a7e4c72-6b3d-4db6-b504-074160c08e68", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-31T15:30:53.000Z" + }, + "end": { + "$date": "2020-10-31T16:21:52.000Z" + }, + "events": [ + { + "uuid": "ec2877e1-cfa3-4b91-a090-111050e39bbd", + "start": { + "$date": "2020-10-31T15:30:53.000Z" + }, + "end": { + "$date": "2020-10-31T16:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f41703b4-1fa7-45b2-8f9e-ebf2cc2281f1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T15:32:31.000Z" + }, + "end": { + "$date": "2020-10-31T16:35:25.000Z" + }, + "events": [ + { + "uuid": "11089ef0-deb6-4628-b461-fb29d44b7f09", + "start": { + "$date": "2020-10-31T15:32:31.000Z" + }, + "end": { + "$date": "2020-10-31T16:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "040e15a3-d5bb-4c8f-be3f-7aafd220bad3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T15:48:25.000Z" + }, + "end": { + "$date": "2020-10-31T16:05:55.000Z" + }, + "events": [ + { + "uuid": "bfbafd64-f8e9-472d-b8b8-404da430886a", + "start": { + "$date": "2020-10-31T15:48:25.000Z" + }, + "end": { + "$date": "2020-10-31T16:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "38ea0474-91d9-4a0c-b9b0-e2fc62244ae7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T16:06:16.000Z" + }, + "end": { + "$date": "2020-10-31T16:51:01.000Z" + }, + "events": [ + { + "uuid": "5262938e-b5f0-4328-bd2d-cfd0faff812e", + "start": { + "$date": "2020-10-31T16:06:16.000Z" + }, + "end": { + "$date": "2020-10-31T16:51:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "63319e1d-a992-4331-80bd-14846411df9a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-10-31T17:01:09.000Z" + }, + "end": { + "$date": "2020-10-31T18:59:16.000Z" + }, + "events": [ + { + "uuid": "a84b0bd6-1012-4b26-9671-5609ea9cd993", + "start": { + "$date": "2020-10-31T17:01:09.000Z" + }, + "end": { + "$date": "2020-10-31T18:59:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "e946748f-4106-4e67-b8dd-d88d890de8be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-31T17:01:24.000Z" + }, + "end": { + "$date": "2020-10-31T17:22:01.000Z" + }, + "events": [ + { + "uuid": "2966f7a0-c502-4e63-a00c-23a600a462c9", + "start": { + "$date": "2020-10-31T17:01:24.000Z" + }, + "end": { + "$date": "2020-10-31T17:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "01226de3-9ee1-402b-925d-604f320fd418", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T17:04:14.000Z" + }, + "end": { + "$date": "2020-10-31T18:59:37.000Z" + }, + "events": [ + { + "uuid": "c6e0118c-5e26-4b4b-991c-3c475f76efe0", + "start": { + "$date": "2020-10-31T17:04:14.000Z" + }, + "end": { + "$date": "2020-10-31T18:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d188e1c4-e39f-45d9-a244-ed5a102a16c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-31T17:22:30.000Z" + }, + "end": { + "$date": "2020-10-31T18:58:12.000Z" + }, + "events": [ + { + "uuid": "b90c3be8-375a-41c3-928f-326f807faaa1", + "start": { + "$date": "2020-10-31T17:22:30.000Z" + }, + "end": { + "$date": "2020-10-31T18:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e9f589a3-3506-494f-814f-f125ad4c36fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T17:27:17.000Z" + }, + "end": { + "$date": "2020-10-31T18:58:37.000Z" + }, + "events": [ + { + "uuid": "6b372c26-7cac-4830-9591-58dd9e2c166b", + "start": { + "$date": "2020-10-31T17:27:17.000Z" + }, + "end": { + "$date": "2020-10-31T17:39:17.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "7ade93f0-4b3e-4dfa-b26a-7678c6e7e9c4", + "start": { + "$date": "2020-10-31T17:39:17.000Z" + }, + "end": { + "$date": "2020-10-31T18:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "cd6501c7-0b0d-431e-a77a-1f07713b7cf7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T17:54:44.000Z" + }, + "end": { + "$date": "2020-10-31T18:58:43.000Z" + }, + "events": [ + { + "uuid": "d02d76a5-9413-4878-ad6b-ced821e3ae14", + "start": { + "$date": "2020-10-31T17:54:44.000Z" + }, + "end": { + "$date": "2020-10-31T18:31:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0ae8698-3bc8-4f08-a47a-937f991d0a9b", + "start": { + "$date": "2020-10-31T18:31:44.000Z" + }, + "end": { + "$date": "2020-10-31T18:35:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "06788631-4c21-46db-8be7-6a766249ec54", + "start": { + "$date": "2020-10-31T18:35:44.000Z" + }, + "end": { + "$date": "2020-10-31T18:58:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "51b53b6a-d440-4b05-97ad-9873ad4fda34", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T19:01:49.000Z" + }, + "end": { + "$date": "2020-10-31T19:49:25.000Z" + }, + "events": [ + { + "uuid": "1dcef2ef-012c-4cb4-ad42-b66e14069286", + "start": { + "$date": "2020-10-31T19:01:49.000Z" + }, + "end": { + "$date": "2020-10-31T19:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "532d2f66-bedb-459a-9440-7e01430a4a8e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-10-31T20:02:26.000Z" + }, + "end": { + "$date": "2020-10-31T23:36:27.000Z" + }, + "events": [ + { + "uuid": "887c4f2e-c118-42da-8681-d0e317cfda62", + "start": { + "$date": "2020-10-31T20:02:26.000Z" + }, + "end": { + "$date": "2020-10-31T23:16:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b50eae39-40e4-45a0-b9ea-00e88d1e990f", + "start": { + "$date": "2020-10-31T23:16:26.000Z" + }, + "end": { + "$date": "2020-10-31T23:19:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7eaf438f-fef4-4fe3-afcf-7c54589b12dd", + "start": { + "$date": "2020-10-31T23:19:26.000Z" + }, + "end": { + "$date": "2020-10-31T23:36:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "4d0ced93-e5a3-4f01-aaaf-cb1903daa897", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T20:04:17.000Z" + }, + "end": { + "$date": "2020-10-31T20:41:15.000Z" + }, + "events": [ + { + "uuid": "b31dfb92-34c0-4be6-a90e-eebbcd732308", + "start": { + "$date": "2020-10-31T20:04:17.000Z" + }, + "end": { + "$date": "2020-10-31T20:18:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ccb652d-2565-4b12-bd62-4a26194f0d12", + "start": { + "$date": "2020-10-31T20:18:17.000Z" + }, + "end": { + "$date": "2020-10-31T20:23:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2684bafa-7514-41a5-90d3-69debace9a61", + "start": { + "$date": "2020-10-31T20:23:17.000Z" + }, + "end": { + "$date": "2020-10-31T20:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b48bbd79-3fa3-463e-9f61-ff249176540d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T20:25:46.000Z" + }, + "end": { + "$date": "2020-10-31T20:57:29.000Z" + }, + "events": [ + { + "uuid": "eff52472-0114-491a-86ec-9f0e913bd1d9", + "start": { + "$date": "2020-10-31T20:25:46.000Z" + }, + "end": { + "$date": "2020-10-31T20:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abac6727-74ff-4ec2-8fd9-983b07688302", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-31T21:43:23.000Z" + }, + "end": { + "$date": "2020-10-31T21:54:03.000Z" + }, + "events": [ + { + "uuid": "deb6c591-8a15-42a1-b50e-6e8352cad240", + "start": { + "$date": "2020-10-31T21:43:23.000Z" + }, + "end": { + "$date": "2020-10-31T21:54:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a774d0e-d442-45e8-b607-8b9ace1813e3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T20:25:35.000Z" + }, + "end": { + "$date": "2020-10-31T20:57:35.000Z" + }, + "events": [ + { + "uuid": "cdd6b04a-eb21-471f-a587-0ac5278def05", + "start": { + "$date": "2020-10-31T20:25:35.000Z" + }, + "end": { + "$date": "2020-10-31T20:57:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c2e7bbc8-a5f8-4745-af76-476347be4eed", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-31T20:23:22.000Z" + }, + "end": { + "$date": "2020-10-31T22:52:19.000Z" + }, + "events": [ + { + "uuid": "01a61db0-951f-4f5c-846f-b144f0f4fbe4", + "start": { + "$date": "2020-10-31T20:23:22.000Z" + }, + "end": { + "$date": "2020-10-31T22:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "db015f34-4e1a-4300-ae0e-dc652e595e3b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-10-31T20:47:55.000Z" + }, + "end": { + "$date": "2020-10-31T21:11:46.000Z" + }, + "events": [ + { + "uuid": "ab198592-2876-4526-bb52-8db5d950c0c4", + "start": { + "$date": "2020-10-31T20:47:55.000Z" + }, + "end": { + "$date": "2020-10-31T21:11:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d317d0ce-84e5-46ce-ba30-b174ef62d1a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T21:07:33.000Z" + }, + "end": { + "$date": "2020-10-31T21:43:32.000Z" + }, + "events": [ + { + "uuid": "c2a83d67-4faf-4658-a97e-07658e7b736e", + "start": { + "$date": "2020-10-31T21:07:33.000Z" + }, + "end": { + "$date": "2020-10-31T21:43:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c104c4ab-5320-4095-9d96-325e92b45bf0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T20:58:34.000Z" + }, + "end": { + "$date": "2020-10-31T21:01:11.000Z" + }, + "events": [ + { + "uuid": "69e23194-73a8-4557-869c-681a6a32c224", + "start": { + "$date": "2020-10-31T20:58:34.000Z" + }, + "end": { + "$date": "2020-10-31T21:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e2d55b5-3a55-4b94-abe7-34a587e65045", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T21:07:17.000Z" + }, + "end": { + "$date": "2020-10-31T21:43:43.000Z" + }, + "events": [ + { + "uuid": "8ddb3c28-5f0f-46ac-b9c2-5f3a64d53b0b", + "start": { + "$date": "2020-10-31T21:07:17.000Z" + }, + "end": { + "$date": "2020-10-31T21:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "fad2c079-2c3e-480f-a404-773d1eebfe71", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-10-31T21:31:15.000Z" + }, + "end": { + "$date": "2020-10-31T21:55:38.000Z" + }, + "events": [ + { + "uuid": "9e0fe285-be0e-4af1-bdb8-e1fbac06afd9", + "start": { + "$date": "2020-10-31T21:31:15.000Z" + }, + "end": { + "$date": "2020-10-31T21:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0477dd6d-d2a7-444d-a29b-6ea96b9a45c4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T21:56:25.000Z" + }, + "end": { + "$date": "2020-10-31T22:10:52.000Z" + }, + "events": [ + { + "uuid": "4bd7bbb7-837c-4a8b-bb25-81fa0d1fbcca", + "start": { + "$date": "2020-10-31T21:56:25.000Z" + }, + "end": { + "$date": "2020-10-31T22:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ddcb06c-a2e3-4f93-8e6e-690a977ce1ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T21:44:32.000Z" + }, + "end": { + "$date": "2020-10-31T21:47:39.000Z" + }, + "events": [ + { + "uuid": "60a1b4d1-1218-46dc-af13-a5681c42a34e", + "start": { + "$date": "2020-10-31T21:44:32.000Z" + }, + "end": { + "$date": "2020-10-31T21:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0180a3bd-ab8c-4297-ac26-7e95a20757c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-10-31T21:49:40.000Z" + }, + "end": { + "$date": "2020-10-31T21:51:43.000Z" + }, + "events": [ + { + "uuid": "68d57fa9-b1a3-4efa-b432-c68dfa2845db", + "start": { + "$date": "2020-10-31T21:49:40.000Z" + }, + "end": { + "$date": "2020-10-31T21:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0eb0b83d-6989-467b-bdc3-755192cd8308", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-10-31T21:56:44.000Z" + }, + "end": { + "$date": "2020-10-31T22:52:21.000Z" + }, + "events": [ + { + "uuid": "6dfc67bd-eaef-43dd-acfe-65319e99c454", + "start": { + "$date": "2020-10-31T21:56:44.000Z" + }, + "end": { + "$date": "2020-10-31T22:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f39446be-b55a-4b87-bf12-8e95b7b0cf83", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T22:13:31.000Z" + }, + "end": { + "$date": "2020-10-31T22:27:55.000Z" + }, + "events": [ + { + "uuid": "af63de6e-07b8-4c34-8bdb-f5546fcca59b", + "start": { + "$date": "2020-10-31T22:13:31.000Z" + }, + "end": { + "$date": "2020-10-31T22:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4962bc06-c04f-4cf2-8c10-bd5529c07fac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-10-31T22:27:18.000Z" + }, + "end": { + "$date": "2020-10-31T22:52:00.000Z" + }, + "events": [ + { + "uuid": "1d4d91ff-84fe-487a-810f-6f95a11d1c47", + "start": { + "$date": "2020-10-31T22:27:18.000Z" + }, + "end": { + "$date": "2020-10-31T22:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a243d102-3ca0-4afb-90e6-7fa97e94c650", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-10-31T22:31:02.000Z" + }, + "end": { + "$date": "2020-10-31T22:50:29.000Z" + }, + "events": [ + { + "uuid": "96beb6fa-62bf-49a0-9dc6-f90dbabdcff1", + "start": { + "$date": "2020-10-31T22:31:02.000Z" + }, + "end": { + "$date": "2020-10-31T22:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0986bb41-c9c0-46bb-9203-6066dd71c50f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-10-31T23:59:28.000Z" + }, + "end": { + "$date": "2020-11-01T01:19:48.000Z" + }, + "events": [ + { + "uuid": "6804cc3d-511a-4963-ba34-d7eac659a315", + "start": { + "$date": "2020-10-31T23:59:28.000Z" + }, + "end": { + "$date": "2020-11-01T01:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "368870de-7776-47bf-b4ba-576a88725282", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-01T00:00:02.000Z" + }, + "end": { + "$date": "2020-11-01T01:02:09.000Z" + }, + "events": [ + { + "uuid": "d02a8154-422d-413d-8167-f77b6a3757b8", + "start": { + "$date": "2020-11-01T00:00:02.000Z" + }, + "end": { + "$date": "2020-11-01T01:02:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3712f1a2-6e40-4c2e-b9ff-fd9cf70361f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-01T00:41:49.000Z" + }, + "end": { + "$date": "2020-11-01T00:54:02.000Z" + }, + "events": [ + { + "uuid": "c1341251-961f-41f5-bf43-524eb6ed49f8", + "start": { + "$date": "2020-11-01T00:41:49.000Z" + }, + "end": { + "$date": "2020-11-01T00:54:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9482813b-9e0b-4c6a-a07d-ceb5bcaa95a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-01T01:41:26.000Z" + }, + "end": { + "$date": "2020-11-01T02:18:29.000Z" + }, + "events": [ + { + "uuid": "170a14e2-9ccc-4519-aca1-3c79d173ea5e", + "start": { + "$date": "2020-11-01T01:41:26.000Z" + }, + "end": { + "$date": "2020-11-01T02:18:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7dc92aad-1216-4180-b24c-d331d0ea3299", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-01T01:48:22.000Z" + }, + "end": { + "$date": "2020-11-01T06:57:56.000Z" + }, + "events": [ + { + "uuid": "c3e1787a-7c6e-4e03-a451-6d9ec2a67938", + "start": { + "$date": "2020-11-01T01:48:22.000Z" + }, + "end": { + "$date": "2020-11-01T02:55:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e06de040-893b-47c8-a41f-afbbee717efa", + "start": { + "$date": "2020-11-01T02:55:22.000Z" + }, + "end": { + "$date": "2020-11-01T03:00:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f32c2de7-d67e-4d6e-88be-7fbd05fa7b40", + "start": { + "$date": "2020-11-01T03:00:22.000Z" + }, + "end": { + "$date": "2020-11-01T06:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a5299df6-67c8-4aa7-b0b8-861e62e8af35", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-01T02:09:59.000Z" + }, + "end": { + "$date": "2020-11-01T05:56:20.000Z" + }, + "events": [ + { + "uuid": "62cfeee4-7846-4871-991d-194141b84571", + "start": { + "$date": "2020-11-01T02:09:59.000Z" + }, + "end": { + "$date": "2020-11-01T05:56:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "fcf097d6-81c8-4a7b-9620-666870c0bf5c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-01T03:05:20.000Z" + }, + "end": { + "$date": "2020-11-01T03:56:44.000Z" + }, + "events": [ + { + "uuid": "28713d5b-2fab-4221-8c6b-d3ea71b43e5d", + "start": { + "$date": "2020-11-01T03:05:20.000Z" + }, + "end": { + "$date": "2020-11-01T03:56:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c4d2da9e-cd97-4583-aea4-99a640b32381", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T03:32:54.000Z" + }, + "end": { + "$date": "2020-11-01T03:40:54.000Z" + }, + "events": [ + { + "uuid": "52abd3b2-88e9-462e-807e-96bd25ea05c8", + "start": { + "$date": "2020-11-01T03:32:54.000Z" + }, + "end": { + "$date": "2020-11-01T03:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9fd686f9-fcfe-4a57-96ea-a6fb475c4665", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T03:41:20.000Z" + }, + "end": { + "$date": "2020-11-01T06:14:03.000Z" + }, + "events": [ + { + "uuid": "891bdeb0-69e3-4878-adeb-8ca6cf77a3dc", + "start": { + "$date": "2020-11-01T03:41:20.000Z" + }, + "end": { + "$date": "2020-11-01T05:54:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4f3f7694-7b1e-4c2f-ba76-7f7abb415119", + "start": { + "$date": "2020-11-01T05:54:20.000Z" + }, + "end": { + "$date": "2020-11-01T05:59:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d3e9bc13-a6e9-47a6-af08-b72ba9c63b9a", + "start": { + "$date": "2020-11-01T05:59:20.000Z" + }, + "end": { + "$date": "2020-11-01T06:12:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46e77333-24fb-46b1-b64c-102c318745b4", + "start": { + "$date": "2020-11-01T06:12:20.000Z" + }, + "end": { + "$date": "2020-11-01T06:17:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c109e06-8b8a-400f-bf74-059fa0e14886", + "start": { + "$date": "2020-11-01T06:17:20.000Z" + }, + "end": { + "$date": "2020-11-01T07:05:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8e6abaa-294c-4645-8ffd-1ddc986087d4", + "start": { + "$date": "2020-11-01T07:05:20.000Z" + }, + "end": { + "$date": "2020-11-01T07:08:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2fed086-700d-4b74-8459-2095b497348e", + "start": { + "$date": "2020-11-01T07:08:20.000Z" + }, + "end": { + "$date": "2020-11-01T06:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "b8b811d4-894e-40d2-8afe-c0019a26bca5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-01T03:57:30.000Z" + }, + "end": { + "$date": "2020-11-01T06:52:15.000Z" + }, + "events": [ + { + "uuid": "ea99e44c-0fa8-401c-b556-81bb28af0aad", + "start": { + "$date": "2020-11-01T03:57:30.000Z" + }, + "end": { + "$date": "2020-11-01T06:52:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "8d18539b-6cd7-43b0-9c2f-3ef829dfa725", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-01T04:03:50.000Z" + }, + "end": { + "$date": "2020-11-01T06:53:40.000Z" + }, + "events": [ + { + "uuid": "0e2ec7ff-45db-4d2a-86a0-22e0847c20ed", + "start": { + "$date": "2020-11-01T04:03:50.000Z" + }, + "end": { + "$date": "2020-11-01T06:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "fd21bd30-bf44-4494-9ba4-352b6e16432a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-01T04:06:34.000Z" + }, + "end": { + "$date": "2020-11-01T06:52:06.000Z" + }, + "events": [ + { + "uuid": "4a6c4b84-3ca8-4483-8532-c25b1dcb7ac7", + "start": { + "$date": "2020-11-01T04:06:34.000Z" + }, + "end": { + "$date": "2020-11-01T06:52:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d34e4581-5066-4fbc-a8f7-4fb6822d5c64", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-01T04:10:25.000Z" + }, + "end": { + "$date": "2020-11-01T05:15:58.000Z" + }, + "events": [ + { + "uuid": "d8000c39-6e78-4320-9b2e-24ba51d0c707", + "start": { + "$date": "2020-11-01T04:10:25.000Z" + }, + "end": { + "$date": "2020-11-01T05:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "10c56b78-b914-4553-a231-239f9db8c4d2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T04:23:07.000Z" + }, + "end": { + "$date": "2020-11-01T05:33:06.000Z" + }, + "events": [ + { + "uuid": "5aee85ef-dbb6-4b7d-b043-2f5a2c6ab1d3", + "start": { + "$date": "2020-11-01T04:23:07.000Z" + }, + "end": { + "$date": "2020-11-01T05:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "ef30bf56-b58a-430b-8fba-bd94adc1a4ea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T05:39:36.000Z" + }, + "end": { + "$date": "2020-11-01T06:27:15.000Z" + }, + "events": [ + { + "uuid": "37b1771f-b0ca-4756-8b12-59df625675f0", + "start": { + "$date": "2020-11-01T05:39:36.000Z" + }, + "end": { + "$date": "2020-11-01T06:27:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", + "uuid": "328dd5a2-0c90-4dcd-a3aa-0d303cea9726", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T06:20:25.000Z" + }, + "end": { + "$date": "2020-11-01T06:27:50.000Z" + }, + "events": [ + { + "uuid": "34ac106a-86a7-4b73-8b43-64da91ce6293", + "start": { + "$date": "2020-11-01T06:20:25.000Z" + }, + "end": { + "$date": "2020-11-01T06:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3520290-f233-4e3f-9ba8-aa0edc2f4a98", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-01T08:25:48.000Z" + }, + "end": { + "$date": "2020-11-01T08:51:39.000Z" + }, + "events": [ + { + "uuid": "f06cf4a5-47e9-49a5-8577-fdcf26c2ad17", + "start": { + "$date": "2020-11-01T08:25:48.000Z" + }, + "end": { + "$date": "2020-11-01T08:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a585423f-b233-4ffd-80b3-8246b64df21c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-01T09:12:48.000Z" + }, + "end": { + "$date": "2020-11-01T09:45:55.000Z" + }, + "events": [ + { + "uuid": "5161469e-a21e-4e1c-8802-358eca4ef0d5", + "start": { + "$date": "2020-11-01T09:12:48.000Z" + }, + "end": { + "$date": "2020-11-01T09:45:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b8d75112-2f9e-405f-8629-85230f3700f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-01T14:43:48.000Z" + }, + "end": { + "$date": "2020-11-01T17:20:45.000Z" + }, + "events": [ + { + "uuid": "5d8d0a6f-3d4c-42ce-b6ef-5e52775ebed8", + "start": { + "$date": "2020-11-01T14:43:48.000Z" + }, + "end": { + "$date": "2020-11-01T17:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "2b852e27-af23-44da-86e7-5847ea86e9e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-01T17:00:05.000Z" + }, + "end": { + "$date": "2020-11-01T17:38:35.000Z" + }, + "events": [ + { + "uuid": "5e9442e3-1f98-47c3-9dce-3f9b051d93bb", + "start": { + "$date": "2020-11-01T17:00:05.000Z" + }, + "end": { + "$date": "2020-11-01T17:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "68c047c1-a90d-4e2c-98c8-9aa54175ce00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-01T17:20:16.000Z" + }, + "end": { + "$date": "2020-11-01T18:28:30.000Z" + }, + "events": [ + { + "uuid": "4f8fccce-e11a-4688-b650-6f1bd0b321cf", + "start": { + "$date": "2020-11-01T17:20:16.000Z" + }, + "end": { + "$date": "2020-11-01T18:28:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "de62bd77-02be-4cc3-a3ce-4f5ba653724d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T17:21:52.000Z" + }, + "end": { + "$date": "2020-11-01T18:28:44.000Z" + }, + "events": [ + { + "uuid": "4aa9a2e6-aec2-4b10-8244-021c6027eff3", + "start": { + "$date": "2020-11-01T17:21:52.000Z" + }, + "end": { + "$date": "2020-11-01T18:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9fe35827-6959-4c5e-8987-07dae98f6175", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-01T17:33:30.000Z" + }, + "end": { + "$date": "2020-11-01T20:10:14.000Z" + }, + "events": [ + { + "uuid": "742eec55-0ac2-422a-b2be-d7949703fee9", + "start": { + "$date": "2020-11-01T17:33:30.000Z" + }, + "end": { + "$date": "2020-11-01T20:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "f42f767d-a407-4600-b4f4-3255769bec25", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-01T17:57:22.000Z" + }, + "end": { + "$date": "2020-11-01T18:07:29.000Z" + }, + "events": [ + { + "uuid": "da459acc-60a4-4b78-98b3-1a0caf2b831a", + "start": { + "$date": "2020-11-01T17:57:22.000Z" + }, + "end": { + "$date": "2020-11-01T18:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ce92b573-cb36-4c78-ad10-2bf0a9b3f828", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T18:04:20.000Z" + }, + "end": { + "$date": "2020-11-01T18:28:47.000Z" + }, + "events": [ + { + "uuid": "d13b4056-4ece-48db-bf23-b5ab031f4c52", + "start": { + "$date": "2020-11-01T18:04:20.000Z" + }, + "end": { + "$date": "2020-11-01T18:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "83dea1d6-4f30-4e6f-a2c0-7fc9bbb96350", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-01T18:07:53.000Z" + }, + "end": { + "$date": "2020-11-01T18:53:48.000Z" + }, + "events": [ + { + "uuid": "5c4f50f7-457c-47b3-ae58-707489d1f4e2", + "start": { + "$date": "2020-11-01T18:07:53.000Z" + }, + "end": { + "$date": "2020-11-01T18:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5014b037-e72f-4f23-b52d-95676523f41f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T18:34:48.000Z" + }, + "end": { + "$date": "2020-11-01T19:15:01.000Z" + }, + "events": [ + { + "uuid": "82a30576-09dd-4440-a791-59e6d8c4cbb4", + "start": { + "$date": "2020-11-01T18:34:48.000Z" + }, + "end": { + "$date": "2020-11-01T19:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba016cbb-d104-4572-8bb6-73dfd8e66a7d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T18:34:47.000Z" + }, + "end": { + "$date": "2020-11-01T19:16:06.000Z" + }, + "events": [ + { + "uuid": "e33efa13-74d2-41ec-a3e4-4543bec45eb4", + "start": { + "$date": "2020-11-01T18:34:47.000Z" + }, + "end": { + "$date": "2020-11-01T19:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6a97343-6c97-49bf-95b5-7a47f3552d2f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T19:15:14.000Z" + }, + "end": { + "$date": "2020-11-01T19:18:47.000Z" + }, + "events": [ + { + "uuid": "0ad3e213-6faa-4fb7-89ca-159296632efa", + "start": { + "$date": "2020-11-01T19:15:14.000Z" + }, + "end": { + "$date": "2020-11-01T19:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "813bedf9-210f-4781-a073-a8967c660d46", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T19:19:02.000Z" + }, + "end": { + "$date": "2020-11-01T21:37:10.000Z" + }, + "events": [ + { + "uuid": "d5620bd0-d102-4764-ab3f-97cb75e862d9", + "start": { + "$date": "2020-11-01T19:19:02.000Z" + }, + "end": { + "$date": "2020-11-01T21:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c43d79be-9790-4dda-a345-bfa191c3ca60", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-01T20:19:35.000Z" + }, + "end": { + "$date": "2020-11-01T20:23:11.000Z" + }, + "events": [ + { + "uuid": "fb71eaa6-59c8-4abf-aef3-4558b80acf70", + "start": { + "$date": "2020-11-01T20:19:35.000Z" + }, + "end": { + "$date": "2020-11-01T20:23:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bef3b129-80d5-4b64-9135-31de716ee7bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-01T20:53:47.000Z" + }, + "end": { + "$date": "2020-11-01T23:17:05.000Z" + }, + "events": [ + { + "uuid": "67425dac-6854-4f12-955b-7d8e46276e9b", + "start": { + "$date": "2020-11-01T20:53:47.000Z" + }, + "end": { + "$date": "2020-11-01T22:23:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7bcf9cb-0c69-48c1-92d5-fbb25129cd1e", + "start": { + "$date": "2020-11-01T22:23:47.000Z" + }, + "end": { + "$date": "2020-11-01T23:01:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7e609d0-213e-4c53-b265-f5229bd9ec43", + "start": { + "$date": "2020-11-01T23:01:47.000Z" + }, + "end": { + "$date": "2020-11-01T23:17:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "16a5c13f-abd0-471c-a242-20e47ebed639", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-01T21:18:02.000Z" + }, + "end": { + "$date": "2020-11-01T22:55:06.000Z" + }, + "events": [ + { + "uuid": "622b48bb-8046-4347-a46c-b5ffc1ffd768", + "start": { + "$date": "2020-11-01T21:18:02.000Z" + }, + "end": { + "$date": "2020-11-01T22:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "86e830ad-9fd3-4e4a-a63f-05cad77aaa36", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-01T21:18:59.000Z" + }, + "end": { + "$date": "2020-11-01T22:54:47.000Z" + }, + "events": [ + { + "uuid": "5a84c5a2-9291-4d73-a901-354432591f42", + "start": { + "$date": "2020-11-01T21:18:59.000Z" + }, + "end": { + "$date": "2020-11-01T22:54:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a21f78d9-1033-4e55-9412-9dd84b81aff0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T21:38:15.000Z" + }, + "end": { + "$date": "2020-11-01T21:39:25.000Z" + }, + "events": [ + { + "uuid": "e2b5e6e2-d99b-4258-af8b-77b71f49888c", + "start": { + "$date": "2020-11-01T21:38:15.000Z" + }, + "end": { + "$date": "2020-11-01T21:39:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f31330d4-439c-43e3-9285-650f5ff308f5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T21:39:38.000Z" + }, + "end": { + "$date": "2020-11-01T22:48:28.000Z" + }, + "events": [ + { + "uuid": "d4b49407-28fa-4ad7-8e58-9df819bcf34b", + "start": { + "$date": "2020-11-01T21:39:38.000Z" + }, + "end": { + "$date": "2020-11-01T22:37:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97311248-cc4a-43cd-8028-06cecd81298f", + "start": { + "$date": "2020-11-01T22:37:38.000Z" + }, + "end": { + "$date": "2020-11-01T22:38:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "128fcd09-4708-4382-b263-5006fcb7f5f4", + "start": { + "$date": "2020-11-01T22:38:38.000Z" + }, + "end": { + "$date": "2020-11-01T22:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cc9ece33-dc5a-450c-bf2b-829c4b85029d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-01T21:39:45.000Z" + }, + "end": { + "$date": "2020-11-01T22:21:14.000Z" + }, + "events": [ + { + "uuid": "138ef527-445b-4842-9094-29942bfd3733", + "start": { + "$date": "2020-11-01T21:39:45.000Z" + }, + "end": { + "$date": "2020-11-01T22:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f38e897a-9cef-49de-ac75-d4dffed60c37", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-01T21:43:03.000Z" + }, + "end": { + "$date": "2020-11-01T22:26:25.000Z" + }, + "events": [ + { + "uuid": "ef16fcf6-ccd0-408a-b5ba-c8dcd9a2ec13", + "start": { + "$date": "2020-11-01T21:43:03.000Z" + }, + "end": { + "$date": "2020-11-01T22:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c4b18f9f-0d99-42a1-83c6-713e3b69d55e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-01T22:48:35.000Z" + }, + "end": { + "$date": "2020-11-01T22:56:24.000Z" + }, + "events": [ + { + "uuid": "2d4160cb-28e3-4c04-a100-06d9dc96149c", + "start": { + "$date": "2020-11-01T22:48:35.000Z" + }, + "end": { + "$date": "2020-11-01T22:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76910d05-0972-43d5-9a0f-442c2e47ef90", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-01T23:56:54.000Z" + }, + "end": { + "$date": "2020-11-02T00:20:14.000Z" + }, + "events": [ + { + "uuid": "44b30101-ecdd-4c55-beeb-244ceb08270e", + "start": { + "$date": "2020-11-01T23:56:54.000Z" + }, + "end": { + "$date": "2020-11-02T00:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ca24031f-21e6-46ad-8d6d-de7e7448d599", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-01T23:55:13.000Z" + }, + "end": { + "$date": "2020-11-02T05:41:02.000Z" + }, + "events": [ + { + "uuid": "7f0c6801-5e6e-4669-b8fc-da5009caa1d3", + "start": { + "$date": "2020-11-01T23:55:13.000Z" + }, + "end": { + "$date": "2020-11-02T01:22:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "be847731-e6b2-4281-8f2c-193b404c3a5f", + "start": { + "$date": "2020-11-02T01:22:13.000Z" + }, + "end": { + "$date": "2020-11-02T01:26:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2a74c61-9f5f-439e-bdba-863fb2ba0d62", + "start": { + "$date": "2020-11-02T01:26:13.000Z" + }, + "end": { + "$date": "2020-11-02T01:55:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8ddefbde-2b3f-4ef5-9064-6db50f78ede9", + "start": { + "$date": "2020-11-02T01:55:13.000Z" + }, + "end": { + "$date": "2020-11-02T02:03:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cbe54cb5-7043-4208-9b87-952a1c1933af", + "start": { + "$date": "2020-11-02T02:03:13.000Z" + }, + "end": { + "$date": "2020-11-02T03:45:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14603313-200d-4136-abff-2baf8c275b8b", + "start": { + "$date": "2020-11-02T03:45:13.000Z" + }, + "end": { + "$date": "2020-11-02T03:50:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04ddf891-2241-49fb-900f-89dd5c9b238d", + "start": { + "$date": "2020-11-02T03:50:13.000Z" + }, + "end": { + "$date": "2020-11-02T04:00:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "788ce415-a120-4138-8874-683f9d533e3d", + "start": { + "$date": "2020-11-02T04:00:13.000Z" + }, + "end": { + "$date": "2020-11-02T04:13:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c98c2014-27fe-40a3-a2a2-83bc2a3333a0", + "start": { + "$date": "2020-11-02T04:13:13.000Z" + }, + "end": { + "$date": "2020-11-02T05:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "188229a5-9104-43c7-969a-99c8c92b4094", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-02T01:07:14.000Z" + }, + "end": { + "$date": "2020-11-02T02:05:35.000Z" + }, + "events": [ + { + "uuid": "b56795d2-2cad-43af-97b6-8dbb46edf46c", + "start": { + "$date": "2020-11-02T01:07:14.000Z" + }, + "end": { + "$date": "2020-11-02T02:05:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c2f88c5a-0864-4f82-957a-c8a8935e9c1c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-02T02:08:49.000Z" + }, + "end": { + "$date": "2020-11-02T04:34:11.000Z" + }, + "events": [ + { + "uuid": "23211b1f-2646-4871-a02f-a51c4f02dd9d", + "start": { + "$date": "2020-11-02T02:08:49.000Z" + }, + "end": { + "$date": "2020-11-02T04:34:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "daacb50b-d81d-43fc-b090-a1bc78640f0b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-02T02:10:06.000Z" + }, + "end": { + "$date": "2020-11-02T02:40:38.000Z" + }, + "events": [ + { + "uuid": "30b5710f-019b-4618-8f11-afa1245c2ffc", + "start": { + "$date": "2020-11-02T02:10:06.000Z" + }, + "end": { + "$date": "2020-11-02T02:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4f5b489-6e8e-42ea-ba3f-8c85ea0cca52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-02T02:16:35.000Z" + }, + "end": { + "$date": "2020-11-02T02:33:13.000Z" + }, + "events": [ + { + "uuid": "19121ea7-af96-4349-a155-42983401cc0d", + "start": { + "$date": "2020-11-02T02:16:35.000Z" + }, + "end": { + "$date": "2020-11-02T02:33:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "50115c0f-72ce-4606-b601-0e57925022b2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-02T02:38:26.000Z" + }, + "end": { + "$date": "2020-11-02T06:31:22.000Z" + }, + "events": [ + { + "uuid": "9aa2f8cf-7689-4373-8e7a-270b7e612051", + "start": { + "$date": "2020-11-02T02:38:26.000Z" + }, + "end": { + "$date": "2020-11-02T06:31:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "552f487a-f162-4c6b-9559-dc767c92c9d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-02T03:57:26.000Z" + }, + "end": { + "$date": "2020-11-02T03:57:27.000Z" + }, + "events": [ + { + "uuid": "301d362c-27bb-47bf-8b5c-453c34d8fff0", + "start": { + "$date": "2020-11-02T03:57:26.000Z" + }, + "end": { + "$date": "2020-11-02T03:57:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "96c3f259-ea02-4cca-b979-ef9a7c8053dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-02T03:48:07.000Z" + }, + "end": { + "$date": "2020-11-02T03:58:43.000Z" + }, + "events": [ + { + "uuid": "1b0a87c9-bc3f-415b-a938-cb5edb77a113", + "start": { + "$date": "2020-11-02T03:48:07.000Z" + }, + "end": { + "$date": "2020-11-02T03:58:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08fc52ea-139d-4701-8fef-520ec1e213b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-02T04:03:16.000Z" + }, + "end": { + "$date": "2020-11-02T04:24:51.000Z" + }, + "events": [ + { + "uuid": "6e5ca6da-700c-4ff6-8307-24b5c40fe5a0", + "start": { + "$date": "2020-11-02T04:03:16.000Z" + }, + "end": { + "$date": "2020-11-02T04:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "920ff2b7-a18f-4fc4-b36b-a959db8d3838", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-02T04:05:29.000Z" + }, + "end": { + "$date": "2020-11-02T04:24:51.000Z" + }, + "events": [ + { + "uuid": "b35ad9f2-6067-44a8-9082-3b2a77669944", + "start": { + "$date": "2020-11-02T04:05:29.000Z" + }, + "end": { + "$date": "2020-11-02T04:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea6686ce-31aa-4927-9e43-c5125d8fc50b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-02T04:25:12.000Z" + }, + "end": { + "$date": "2020-11-02T04:27:10.000Z" + }, + "events": [ + { + "uuid": "8a5beaad-7ce1-4344-9d1f-a556fbea93b7", + "start": { + "$date": "2020-11-02T04:25:12.000Z" + }, + "end": { + "$date": "2020-11-02T04:27:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e307c6bb-050f-4f18-baa7-c51720ecbb88", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-02T04:25:55.000Z" + }, + "end": { + "$date": "2020-11-02T04:27:01.000Z" + }, + "events": [ + { + "uuid": "e4150a18-0aae-4a3d-b399-f116b593d6dc", + "start": { + "$date": "2020-11-02T04:25:55.000Z" + }, + "end": { + "$date": "2020-11-02T04:27:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3f6ebac2-f5b6-4fca-a329-789dd78aa374", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-02T04:27:05.000Z" + }, + "end": { + "$date": "2020-11-02T05:22:42.000Z" + }, + "events": [ + { + "uuid": "640cd054-703f-434f-9148-e5cef91b53e6", + "start": { + "$date": "2020-11-02T04:27:05.000Z" + }, + "end": { + "$date": "2020-11-02T05:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1787fb59-5425-409e-89ef-199ac4c3d1bb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-02T04:28:13.000Z" + }, + "end": { + "$date": "2020-11-02T05:40:02.000Z" + }, + "events": [ + { + "uuid": "237a60b5-47a1-4855-b4ce-4a8cf13493fc", + "start": { + "$date": "2020-11-02T04:28:13.000Z" + }, + "end": { + "$date": "2020-11-02T05:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9f3da904-b08f-4604-9985-5a7a0330a8fe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-02T04:34:19.000Z" + }, + "end": { + "$date": "2020-11-02T05:22:36.000Z" + }, + "events": [ + { + "uuid": "94ec61cd-b6d2-468b-a19a-ef3bbd22b6c2", + "start": { + "$date": "2020-11-02T04:34:19.000Z" + }, + "end": { + "$date": "2020-11-02T05:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18eb6273-7bdc-4647-9c3f-332917c6b1b6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-02T04:58:14.000Z" + }, + "end": { + "$date": "2020-11-02T05:30:01.000Z" + }, + "events": [ + { + "uuid": "979baddf-6254-4902-a7bc-3232812cb349", + "start": { + "$date": "2020-11-02T04:58:14.000Z" + }, + "end": { + "$date": "2020-11-02T05:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6a77260-9641-4dfa-af78-6116570e5d5f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-02T05:34:55.000Z" + }, + "end": { + "$date": "2020-11-02T06:14:39.000Z" + }, + "events": [ + { + "uuid": "954dbbfc-ab3c-4f0b-870a-eea51bcbe7d6", + "start": { + "$date": "2020-11-02T05:34:55.000Z" + }, + "end": { + "$date": "2020-11-02T06:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "38e272ff-5b43-4a1e-bbe5-e960bf355a50", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-02T06:14:47.000Z" + }, + "end": { + "$date": "2020-11-02T06:21:58.000Z" + }, + "events": [ + { + "uuid": "c2b47167-3a59-4e87-bcb5-bacd513df94b", + "start": { + "$date": "2020-11-02T06:14:47.000Z" + }, + "end": { + "$date": "2020-11-02T06:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8aaf0037-274f-472b-b441-66e15afd6540", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-02T06:23:03.000Z" + }, + "end": { + "$date": "2020-11-02T06:35:40.000Z" + }, + "events": [ + { + "uuid": "5a109e7e-0724-466b-a86c-336d4e45a689", + "start": { + "$date": "2020-11-02T06:23:03.000Z" + }, + "end": { + "$date": "2020-11-02T06:35:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01798749-71d6-42f5-ba06-2446e902bb5b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-02T06:35:38.000Z" + }, + "end": { + "$date": "2020-11-02T07:03:14.000Z" + }, + "events": [ + { + "uuid": "f9dd6ea3-7066-4c26-b6bf-1feb829b195a", + "start": { + "$date": "2020-11-02T06:35:38.000Z" + }, + "end": { + "$date": "2020-11-02T07:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8adcb7b-e8ec-4216-8e3d-21cc0f20d9c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-02T18:02:42.000Z" + }, + "end": { + "$date": "2020-11-02T18:26:54.000Z" + }, + "events": [ + { + "uuid": "c8f6b134-9199-457a-978f-df8c8fef90ed", + "start": { + "$date": "2020-11-02T18:02:42.000Z" + }, + "end": { + "$date": "2020-11-02T18:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "205f0232-5dfa-4395-81f5-4c697b20ae82", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-02T18:27:11.000Z" + }, + "end": { + "$date": "2020-11-02T18:44:31.000Z" + }, + "events": [ + { + "uuid": "6fa2e3c0-cac9-4bdb-a8cd-bfc3d5f24ff7", + "start": { + "$date": "2020-11-02T18:27:11.000Z" + }, + "end": { + "$date": "2020-11-02T18:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a92ebff6-dfe9-41e6-8388-85531f267745", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-02T19:14:05.000Z" + }, + "end": { + "$date": "2020-11-02T19:15:55.000Z" + }, + "events": [ + { + "uuid": "3ad9e3d9-4212-4d33-96e9-2e91ee0d7513", + "start": { + "$date": "2020-11-02T19:14:05.000Z" + }, + "end": { + "$date": "2020-11-02T19:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "16e53747-9861-45fc-9b41-f63006c549ec", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-02T21:48:17.000Z" + }, + "end": { + "$date": "2020-11-02T21:51:08.000Z" + }, + "events": [ + { + "uuid": "b1a27f50-100e-4fa7-bedf-e13fc539859c", + "start": { + "$date": "2020-11-02T21:48:17.000Z" + }, + "end": { + "$date": "2020-11-02T21:51:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f37dd74-5c48-4b47-8d96-a02ea7f1aaae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-02T22:01:27.000Z" + }, + "end": { + "$date": "2020-11-02T22:40:29.000Z" + }, + "events": [ + { + "uuid": "548fee86-7cc4-43e3-90cf-b5d83886da6e", + "start": { + "$date": "2020-11-02T22:01:27.000Z" + }, + "end": { + "$date": "2020-11-02T22:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "64eb9b3f-b4fa-4de3-9dd8-3fc7705b83a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-02T22:18:15.000Z" + }, + "end": { + "$date": "2020-11-03T00:23:51.000Z" + }, + "events": [ + { + "uuid": "1693ca62-c1ca-413e-af8f-cb2571976a0a", + "start": { + "$date": "2020-11-02T22:18:15.000Z" + }, + "end": { + "$date": "2020-11-03T00:23:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f9693ae7-f611-4af5-ae4c-2ad71abcc871", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-02T22:36:38.000Z" + }, + "end": { + "$date": "2020-11-02T23:06:23.000Z" + }, + "events": [ + { + "uuid": "21f5f1f8-418a-484b-b0c8-f3ffae1cc9e4", + "start": { + "$date": "2020-11-02T22:36:38.000Z" + }, + "end": { + "$date": "2020-11-02T23:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "288e20c8-dbec-4877-b0fd-6dc7f03c2849", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-02T23:23:25.000Z" + }, + "end": { + "$date": "2020-11-03T00:20:17.000Z" + }, + "events": [ + { + "uuid": "55e84502-3bcc-49d0-9226-bcdf29687347", + "start": { + "$date": "2020-11-02T23:23:25.000Z" + }, + "end": { + "$date": "2020-11-03T00:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6dddf21-2052-4b75-888a-6c2e6c5c8605", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-03T01:29:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:37.000Z" + }, + "events": [ + { + "uuid": "70041571-d49b-49c4-8192-ca7480a47164", + "start": { + "$date": "2020-11-03T01:29:41.000Z" + }, + "end": { + "$date": "2020-11-03T03:42:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "836d2e41-7937-4dde-b2b5-817fbb7ebff8", + "start": { + "$date": "2020-11-03T03:42:41.000Z" + }, + "end": { + "$date": "2020-11-03T03:47:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "168819e9-b70d-4161-a455-f62b6624e08e", + "start": { + "$date": "2020-11-03T03:47:41.000Z" + }, + "end": { + "$date": "2020-11-03T03:51:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d93ffe9-237f-4e95-b3bf-b3e06cfc49a5", + "start": { + "$date": "2020-11-03T03:51:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:01:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6dccffa9-bcb2-4fff-b256-42bd6b5eae16", + "start": { + "$date": "2020-11-03T04:01:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9134e9d-4ec1-475a-978a-bf383a01c16b", + "start": { + "$date": "2020-11-03T04:03:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:21:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09ed7d43-0eef-4f11-9da7-025fc65a850d", + "start": { + "$date": "2020-11-03T04:21:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:23:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bdd4e69c-b86d-4b91-b1f6-eba232c965ef", + "start": { + "$date": "2020-11-03T04:23:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:27:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "833c047f-d71c-4ff0-a768-d4a274eb3cfc", + "start": { + "$date": "2020-11-03T04:27:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:32:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0d9a152-6afc-47e9-a6e4-d1cd6e604fbc", + "start": { + "$date": "2020-11-03T04:32:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:34:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "62c6aaa6-0f15-42a4-8339-fd43b538ac05", + "start": { + "$date": "2020-11-03T04:34:41.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7bf72405-c774-4956-a1f3-0ef0e36cab29", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T00:27:51.000Z" + }, + "end": { + "$date": "2020-11-03T01:32:35.000Z" + }, + "events": [ + { + "uuid": "5bc52fe5-045e-4314-9893-4f58a9114e51", + "start": { + "$date": "2020-11-03T00:27:51.000Z" + }, + "end": { + "$date": "2020-11-03T00:47:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0f82ee3-30df-4a5b-b3a6-42698d58d996", + "start": { + "$date": "2020-11-03T00:47:51.000Z" + }, + "end": { + "$date": "2020-11-03T00:52:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b760118-283f-42a1-8a95-0aa1e2bbca20", + "start": { + "$date": "2020-11-03T00:52:51.000Z" + }, + "end": { + "$date": "2020-11-03T01:32:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "1a840a61-9fb3-4b1f-ba04-4b995f446cc5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-02T22:57:29.000Z" + }, + "end": { + "$date": "2020-11-03T07:12:40.000Z" + }, + "events": [ + { + "uuid": "ea2c035c-23e8-45ea-98d8-09d9ba448ccb", + "start": { + "$date": "2020-11-02T22:57:29.000Z" + }, + "end": { + "$date": "2020-11-02T23:34:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0be6332a-cf77-4629-9e5a-795b8e784f4f", + "start": { + "$date": "2020-11-02T23:34:29.000Z" + }, + "end": { + "$date": "2020-11-02T23:40:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aec5d1fc-7882-4f3f-9bb7-dee2db3200d8", + "start": { + "$date": "2020-11-02T23:40:29.000Z" + }, + "end": { + "$date": "2020-11-02T23:53:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd0c1b25-aff9-4616-8c7f-eb042aca8056", + "start": { + "$date": "2020-11-02T23:53:29.000Z" + }, + "end": { + "$date": "2020-11-02T23:59:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "463b4e15-5864-4d0a-b191-308b8eb790c5", + "start": { + "$date": "2020-11-02T23:59:29.000Z" + }, + "end": { + "$date": "2020-11-03T00:06:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "922d5faf-63d5-4329-9148-519339a4ce83", + "start": { + "$date": "2020-11-03T00:06:29.000Z" + }, + "end": { + "$date": "2020-11-03T00:41:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "33466ff1-e122-4804-ae03-e742a60e5684", + "start": { + "$date": "2020-11-03T00:41:29.000Z" + }, + "end": { + "$date": "2020-11-03T01:34:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa6d6653-5101-4c4b-9e51-965fbf69aef7", + "start": { + "$date": "2020-11-03T01:34:29.000Z" + }, + "end": { + "$date": "2020-11-03T01:59:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f43d3297-9ee3-464a-b7ab-e409c80b0d5c", + "start": { + "$date": "2020-11-03T01:59:29.000Z" + }, + "end": { + "$date": "2020-11-03T03:47:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "752576b5-8587-4439-ab48-9486c24271b1", + "start": { + "$date": "2020-11-03T03:47:29.000Z" + }, + "end": { + "$date": "2020-11-03T03:48:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0ddd42b7-dc19-47c8-82e9-91700cd608d5", + "start": { + "$date": "2020-11-03T03:48:29.000Z" + }, + "end": { + "$date": "2020-11-03T04:15:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f1fabda-d0a0-4990-b439-85088781cfcf", + "start": { + "$date": "2020-11-03T04:15:29.000Z" + }, + "end": { + "$date": "2020-11-03T04:20:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b62d7fa1-e39e-485c-9cb6-e7845308a68d", + "start": { + "$date": "2020-11-03T04:20:29.000Z" + }, + "end": { + "$date": "2020-11-03T07:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "74d3525f-004f-40be-8b90-8c49e33082a6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-03T02:06:43.000Z" + }, + "end": { + "$date": "2020-11-03T05:17:03.000Z" + }, + "events": [ + { + "uuid": "c39ecc93-be07-4ba0-bb78-8ea585b1f949", + "start": { + "$date": "2020-11-03T02:06:43.000Z" + }, + "end": { + "$date": "2020-11-03T05:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9cfdf17a-a226-4276-bcbf-68b6a0950164", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T02:41:02.000Z" + }, + "end": { + "$date": "2020-11-03T04:19:50.000Z" + }, + "events": [ + { + "uuid": "c6ac86ba-496c-496f-8023-1f7d51c2ed2b", + "start": { + "$date": "2020-11-03T02:41:02.000Z" + }, + "end": { + "$date": "2020-11-03T04:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e9e519a6-77cd-45d9-9bf8-46f1f8af85f1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T02:46:46.000Z" + }, + "end": { + "$date": "2020-11-03T02:48:37.000Z" + }, + "events": [ + { + "uuid": "f72cd304-c52b-4d87-9774-2a7037254145", + "start": { + "$date": "2020-11-03T02:46:46.000Z" + }, + "end": { + "$date": "2020-11-03T02:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "55e144c3-9572-4fe4-ba4d-eab9e35d3b08", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-03T02:50:27.000Z" + }, + "end": { + "$date": "2020-11-03T02:58:08.000Z" + }, + "events": [ + { + "uuid": "be56eeb5-da41-407f-a290-19d03b0a7acb", + "start": { + "$date": "2020-11-03T02:50:27.000Z" + }, + "end": { + "$date": "2020-11-03T02:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1698b4e2-5b3d-427f-a600-aee22131f114", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T02:52:12.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:23.000Z" + }, + "events": [ + { + "uuid": "03718694-f224-494e-9abe-1619796e09f2", + "start": { + "$date": "2020-11-03T02:52:12.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "aa1bc5bf-0f55-4819-97a9-b147b4a6f944", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-03T02:58:04.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:28.000Z" + }, + "events": [ + { + "uuid": "edff84bd-900c-4c8d-a809-6d653ec31ee3", + "start": { + "$date": "2020-11-03T02:58:04.000Z" + }, + "end": { + "$date": "2020-11-03T04:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "91623aec-bd93-43da-8779-261d7e0a6b94", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-03T03:00:53.000Z" + }, + "end": { + "$date": "2020-11-03T05:59:09.000Z" + }, + "events": [ + { + "uuid": "f30dcfac-6951-414e-91d2-c810ed68dba1", + "start": { + "$date": "2020-11-03T03:00:53.000Z" + }, + "end": { + "$date": "2020-11-03T05:59:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "191fcd45-a0cc-4bf1-ac2c-004d4b0eb070", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-03T03:05:48.000Z" + }, + "end": { + "$date": "2020-11-03T05:59:10.000Z" + }, + "events": [ + { + "uuid": "4dc5c837-325f-4da8-b09f-916802660fa6", + "start": { + "$date": "2020-11-03T03:05:48.000Z" + }, + "end": { + "$date": "2020-11-03T05:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "643419f1-f373-426b-b0ed-6ed0675e48d9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-03T03:59:19.000Z" + }, + "end": { + "$date": "2020-11-03T06:09:10.000Z" + }, + "events": [ + { + "uuid": "253f14cc-163f-4329-bccd-62bbc4dbfeec", + "start": { + "$date": "2020-11-03T03:59:19.000Z" + }, + "end": { + "$date": "2020-11-03T06:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "8211f9fd-a65a-4ff3-94b1-072ec193d3df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T04:25:21.000Z" + }, + "end": { + "$date": "2020-11-03T04:30:16.000Z" + }, + "events": [ + { + "uuid": "af06b776-849f-46a2-bc4a-bfcaf6b2d7be", + "start": { + "$date": "2020-11-03T04:25:21.000Z" + }, + "end": { + "$date": "2020-11-03T04:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0d252cb2-00b2-41ed-9b38-84fae0b90b70", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-03T04:28:28.000Z" + }, + "end": { + "$date": "2020-11-03T06:54:00.000Z" + }, + "events": [ + { + "uuid": "e292291a-1b29-4b7c-b8c3-a423b8a2096b", + "start": { + "$date": "2020-11-03T04:28:28.000Z" + }, + "end": { + "$date": "2020-11-03T06:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "a96413f3-bc33-4aea-9a86-a740c950bd8b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T04:30:41.000Z" + }, + "end": { + "$date": "2020-11-03T05:16:30.000Z" + }, + "events": [ + { + "uuid": "3087e213-c7bb-4af6-ab7e-521ede20004e", + "start": { + "$date": "2020-11-03T04:30:41.000Z" + }, + "end": { + "$date": "2020-11-03T05:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e4b2c9f-29e1-47be-8ed5-e8dd76747b88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T04:48:48.000Z" + }, + "end": { + "$date": "2020-11-03T05:11:19.000Z" + }, + "events": [ + { + "uuid": "5f4571f7-3253-49c9-bf66-43813ccb8cbe", + "start": { + "$date": "2020-11-03T04:48:48.000Z" + }, + "end": { + "$date": "2020-11-03T05:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79704673-ca45-4de7-9ffe-b920e0bc4807", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-03T04:48:43.000Z" + }, + "end": { + "$date": "2020-11-03T05:11:18.000Z" + }, + "events": [ + { + "uuid": "3047b41d-cdbd-4642-a5b9-3c23ad9ca486", + "start": { + "$date": "2020-11-03T04:48:43.000Z" + }, + "end": { + "$date": "2020-11-03T05:11:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eb536f65-74bd-4f54-b3aa-f97b2df87dea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-03T04:49:09.000Z" + }, + "end": { + "$date": "2020-11-03T04:51:20.000Z" + }, + "events": [ + { + "uuid": "34a5d91a-85ae-4d47-8c75-43afb4644744", + "start": { + "$date": "2020-11-03T04:49:09.000Z" + }, + "end": { + "$date": "2020-11-03T04:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f0715b11-9e9e-40ed-96e9-dec27eef7002", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-03T04:54:39.000Z" + }, + "end": { + "$date": "2020-11-03T04:55:56.000Z" + }, + "events": [ + { + "uuid": "d4fda238-8d0e-449c-85f5-96812b6c3cda", + "start": { + "$date": "2020-11-03T04:54:39.000Z" + }, + "end": { + "$date": "2020-11-03T04:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6368ce01-f509-442d-881b-80f6acbbcca2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-03T04:56:10.000Z" + }, + "end": { + "$date": "2020-11-03T04:57:16.000Z" + }, + "events": [ + { + "uuid": "96e64aeb-0109-4e8e-9a40-b953c7f0ab09", + "start": { + "$date": "2020-11-03T04:56:10.000Z" + }, + "end": { + "$date": "2020-11-03T04:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "73f53389-ec1e-4e7d-a583-8c3a2ae7b8b8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-03T04:57:26.000Z" + }, + "end": { + "$date": "2020-11-03T05:15:50.000Z" + }, + "events": [ + { + "uuid": "3ebc6872-e7a9-47fe-a56b-d74e67625ca4", + "start": { + "$date": "2020-11-03T04:57:26.000Z" + }, + "end": { + "$date": "2020-11-03T05:15:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bf45c90-153d-4bd9-863c-00a1eb91a38a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T05:11:36.000Z" + }, + "end": { + "$date": "2020-11-03T05:13:06.000Z" + }, + "events": [ + { + "uuid": "50237523-4205-4df7-9cfd-50b48c1a87fe", + "start": { + "$date": "2020-11-03T05:11:36.000Z" + }, + "end": { + "$date": "2020-11-03T05:13:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a437d7c0-e453-44f6-bb88-ac64547158d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T05:22:17.000Z" + }, + "end": { + "$date": "2020-11-03T06:11:34.000Z" + }, + "events": [ + { + "uuid": "18790362-6d4b-44e1-ab5f-d5faee3c44a0", + "start": { + "$date": "2020-11-03T05:22:17.000Z" + }, + "end": { + "$date": "2020-11-03T06:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fe1e9f1-3333-4192-a586-7d033faf13a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-03T06:11:38.000Z" + }, + "end": { + "$date": "2020-11-03T06:11:44.000Z" + }, + "events": [ + { + "uuid": "c1f15122-dcd8-4f41-9386-0a0355f0e8af", + "start": { + "$date": "2020-11-03T06:11:38.000Z" + }, + "end": { + "$date": "2020-11-03T06:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f96b68c-8579-489f-98f0-31c59546a4e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T06:11:59.000Z" + }, + "end": { + "$date": "2020-11-03T06:13:35.000Z" + }, + "events": [ + { + "uuid": "08a32114-e8e5-43ca-a8d6-b2e760ee9913", + "start": { + "$date": "2020-11-03T06:11:59.000Z" + }, + "end": { + "$date": "2020-11-03T06:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb60aa91-cfd0-4711-a060-d9e5f4e222ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T19:15:43.000Z" + }, + "end": { + "$date": "2020-11-03T19:37:41.000Z" + }, + "events": [ + { + "uuid": "ed71ac8b-e9d4-46c7-a8b0-dc602d42c342", + "start": { + "$date": "2020-11-03T19:15:43.000Z" + }, + "end": { + "$date": "2020-11-03T19:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78b889f5-d634-4ae3-a77e-a7bdde72b2a9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T19:40:49.000Z" + }, + "end": { + "$date": "2020-11-03T19:59:52.000Z" + }, + "events": [ + { + "uuid": "bcada2af-fb33-41c9-be38-07db7b70efd3", + "start": { + "$date": "2020-11-03T19:40:49.000Z" + }, + "end": { + "$date": "2020-11-03T19:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76cad09f-291a-45a0-82c6-e527c814ef14", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T20:04:00.000Z" + }, + "end": { + "$date": "2020-11-03T20:26:58.000Z" + }, + "events": [ + { + "uuid": "a346b246-50f4-40ba-b83c-0bfcc9778ad6", + "start": { + "$date": "2020-11-03T20:04:00.000Z" + }, + "end": { + "$date": "2020-11-03T20:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9df3a896-107a-4704-91df-6a8fa1dad05f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T20:30:21.000Z" + }, + "end": { + "$date": "2020-11-03T20:53:44.000Z" + }, + "events": [ + { + "uuid": "8834af78-d115-4b0c-adb1-327597d44f39", + "start": { + "$date": "2020-11-03T20:30:21.000Z" + }, + "end": { + "$date": "2020-11-03T20:53:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02073e0c-5bae-40d7-a97e-b86cd14e0cf6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T20:57:12.000Z" + }, + "end": { + "$date": "2020-11-03T21:20:38.000Z" + }, + "events": [ + { + "uuid": "455f77e1-846c-47c4-b249-3e4f26d73253", + "start": { + "$date": "2020-11-03T20:57:12.000Z" + }, + "end": { + "$date": "2020-11-03T21:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "258ce3e9-093f-46c4-b56a-292f85980deb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-03T21:42:44.000Z" + }, + "end": { + "$date": "2020-11-03T23:16:36.000Z" + }, + "events": [ + { + "uuid": "05a1eba9-db2e-4401-9e78-f512382ecf42", + "start": { + "$date": "2020-11-03T21:42:44.000Z" + }, + "end": { + "$date": "2020-11-03T22:06:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a024f6f-deef-4d91-984d-7ae919d646a3", + "start": { + "$date": "2020-11-03T22:06:44.000Z" + }, + "end": { + "$date": "2020-11-03T23:16:36.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "271dde01-6d86-4f55-8e65-660dd07351ce", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T22:13:07.000Z" + }, + "end": { + "$date": "2020-11-03T22:34:08.000Z" + }, + "events": [ + { + "uuid": "bde44cf3-37a6-46f1-9f7f-cab212a22e37", + "start": { + "$date": "2020-11-03T22:13:07.000Z" + }, + "end": { + "$date": "2020-11-03T22:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "52ead0a9-2d7a-400b-9116-e7be15a2c87b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-03T22:27:55.000Z" + }, + "end": { + "$date": "2020-11-03T22:29:28.000Z" + }, + "events": [ + { + "uuid": "9421f344-2918-4adf-a923-2e07d2679782", + "start": { + "$date": "2020-11-03T22:27:55.000Z" + }, + "end": { + "$date": "2020-11-03T22:29:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "edffa8a6-e4bb-4e3e-ba8a-edcd0bfe3edf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-03T22:29:50.000Z" + }, + "end": { + "$date": "2020-11-04T00:53:05.000Z" + }, + "events": [ + { + "uuid": "594ab82f-c206-401d-80ba-704e5ff3a09d", + "start": { + "$date": "2020-11-03T22:29:50.000Z" + }, + "end": { + "$date": "2020-11-03T22:30:50.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "d71eef9e-ee1c-4cff-a12d-2b39e32da372", + "start": { + "$date": "2020-11-03T22:30:50.000Z" + }, + "end": { + "$date": "2020-11-04T00:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e9211063-e2a4-4262-9b1e-d37f57b42e15", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T22:36:08.000Z" + }, + "end": { + "$date": "2020-11-03T23:30:35.000Z" + }, + "events": [ + { + "uuid": "6b522dbe-ed2c-4b57-b87c-ca93cb386057", + "start": { + "$date": "2020-11-03T22:36:08.000Z" + }, + "end": { + "$date": "2020-11-03T23:30:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7408243-c59c-4a3e-a586-3189c15b7036", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T22:43:57.000Z" + }, + "end": { + "$date": "2020-11-03T23:09:16.000Z" + }, + "events": [ + { + "uuid": "9349c6b8-b324-4bc6-8f7e-5449f62d677c", + "start": { + "$date": "2020-11-03T22:43:57.000Z" + }, + "end": { + "$date": "2020-11-03T23:09:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a5c266f-72de-42be-8da4-08f5c85e3f28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T23:36:28.000Z" + }, + "end": { + "$date": "2020-11-03T23:53:32.000Z" + }, + "events": [ + { + "uuid": "8ed1799f-9963-49bb-a9a9-265c639b0b5f", + "start": { + "$date": "2020-11-03T23:36:28.000Z" + }, + "end": { + "$date": "2020-11-03T23:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "6cf2a899-e9e1-4407-9ac8-a77bf52d18a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T23:34:10.000Z" + }, + "end": { + "$date": "2020-11-03T23:38:35.000Z" + }, + "events": [ + { + "uuid": "db94ec15-7e37-40a2-83b7-281f9da56828", + "start": { + "$date": "2020-11-03T23:34:10.000Z" + }, + "end": { + "$date": "2020-11-03T23:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dae64086-5301-403c-ad79-d5aefeea0e68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-03T23:39:05.000Z" + }, + "end": { + "$date": "2020-11-04T00:59:43.000Z" + }, + "events": [ + { + "uuid": "6400ea91-b637-4a3a-8395-3dbc6a3df0ad", + "start": { + "$date": "2020-11-03T23:39:05.000Z" + }, + "end": { + "$date": "2020-11-04T00:59:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd62ec1d-4cfc-4602-8733-e8b722e4c811", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-03T23:57:18.000Z" + }, + "end": { + "$date": "2020-11-04T00:20:56.000Z" + }, + "events": [ + { + "uuid": "7748726c-d422-40c4-97be-c70d551594ec", + "start": { + "$date": "2020-11-03T23:57:18.000Z" + }, + "end": { + "$date": "2020-11-04T00:20:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1525f9c6-f8ac-4b2b-a02f-4a4a2bd91908", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T00:44:47.000Z" + }, + "end": { + "$date": "2020-11-04T01:05:51.000Z" + }, + "events": [ + { + "uuid": "39946eac-35f2-41a9-8a42-876fb66df5e9", + "start": { + "$date": "2020-11-04T00:44:47.000Z" + }, + "end": { + "$date": "2020-11-04T01:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "80677478-acae-4bca-9a68-05c3168eb1d9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-04T00:50:08.000Z" + }, + "end": { + "$date": "2020-11-04T04:55:26.000Z" + }, + "events": [ + { + "uuid": "31f4e505-4ddb-4aac-bfae-78ee60049fea", + "start": { + "$date": "2020-11-04T00:50:08.000Z" + }, + "end": { + "$date": "2020-11-04T04:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "74ab5319-3957-4d4c-9a6f-ca933202aee5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-04T00:57:02.000Z" + }, + "end": { + "$date": "2020-11-04T00:58:49.000Z" + }, + "events": [ + { + "uuid": "38ccb07d-6f39-4d70-bed0-9884bfbc61fc", + "start": { + "$date": "2020-11-04T00:57:02.000Z" + }, + "end": { + "$date": "2020-11-04T00:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e1933cf-a673-43f9-8c69-b9be7a8fbf93", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T01:10:18.000Z" + }, + "end": { + "$date": "2020-11-04T01:30:55.000Z" + }, + "events": [ + { + "uuid": "4e6eec14-0c88-4b63-8194-29c7bed50dad", + "start": { + "$date": "2020-11-04T01:10:18.000Z" + }, + "end": { + "$date": "2020-11-04T01:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2e86791-936b-4a8c-a292-05740156c1c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T01:58:17.000Z" + }, + "end": { + "$date": "2020-11-04T02:32:05.000Z" + }, + "events": [ + { + "uuid": "a7434c24-2939-46f0-8644-f6af00a71505", + "start": { + "$date": "2020-11-04T01:58:17.000Z" + }, + "end": { + "$date": "2020-11-04T02:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97cc0899-5307-4bdf-a69b-61d4e3e1645a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-04T01:59:28.000Z" + }, + "end": { + "$date": "2020-11-04T02:32:24.000Z" + }, + "events": [ + { + "uuid": "919654c1-afc9-4509-b5f8-05f880ff1197", + "start": { + "$date": "2020-11-04T01:59:28.000Z" + }, + "end": { + "$date": "2020-11-04T02:32:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f307467c-5485-45e3-9ec6-e2d958c7e7cf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T02:41:24.000Z" + }, + "end": { + "$date": "2020-11-04T03:00:26.000Z" + }, + "events": [ + { + "uuid": "48baa1e4-c9c9-4c96-b48b-f353242542cf", + "start": { + "$date": "2020-11-04T02:41:24.000Z" + }, + "end": { + "$date": "2020-11-04T03:00:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1472ab47-fddc-4057-bc64-8f49c0b8507f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-04T02:41:15.000Z" + }, + "end": { + "$date": "2020-11-04T03:00:21.000Z" + }, + "events": [ + { + "uuid": "6693f3a3-41f4-42dd-935e-aea5c671483e", + "start": { + "$date": "2020-11-04T02:41:15.000Z" + }, + "end": { + "$date": "2020-11-04T03:00:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2710122b-8207-43bd-882a-ad4458a168c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T02:45:06.000Z" + }, + "end": { + "$date": "2020-11-04T04:55:06.000Z" + }, + "events": [ + { + "uuid": "6f5fe2a9-8b92-4ebb-bce9-226bc3ce6b96", + "start": { + "$date": "2020-11-04T02:45:06.000Z" + }, + "end": { + "$date": "2020-11-04T04:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcff521e-16ce-47c9-aa3b-e1245d571bd9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T03:05:30.000Z" + }, + "end": { + "$date": "2020-11-04T03:29:37.000Z" + }, + "events": [ + { + "uuid": "522e383a-48e2-43a7-a946-0ee31a695dd2", + "start": { + "$date": "2020-11-04T03:05:30.000Z" + }, + "end": { + "$date": "2020-11-04T03:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ae3c209-3968-46d0-849d-b5701de6de37", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-04T03:05:21.000Z" + }, + "end": { + "$date": "2020-11-04T03:29:27.000Z" + }, + "events": [ + { + "uuid": "a9bc9ca0-eb8f-49d0-8662-a9df12a3269a", + "start": { + "$date": "2020-11-04T03:05:21.000Z" + }, + "end": { + "$date": "2020-11-04T03:29:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0c2cf84a-5c0f-4179-87c0-fcff1873e605", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-04T03:37:43.000Z" + }, + "end": { + "$date": "2020-11-04T04:36:34.000Z" + }, + "events": [ + { + "uuid": "14b75cbe-7d63-4e78-92f5-b13378975273", + "start": { + "$date": "2020-11-04T03:37:43.000Z" + }, + "end": { + "$date": "2020-11-04T04:36:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4e3d1831-76b2-4dae-ad10-1659a8de79b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T03:39:42.000Z" + }, + "end": { + "$date": "2020-11-04T07:17:30.000Z" + }, + "events": [ + { + "uuid": "855e23ce-442a-4b32-94ae-deda32856dd3", + "start": { + "$date": "2020-11-04T03:39:42.000Z" + }, + "end": { + "$date": "2020-11-04T07:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "436c8afc-f9d9-4ec4-8a93-f459cd498123", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-04T04:09:55.000Z" + }, + "end": { + "$date": "2020-11-04T05:39:18.000Z" + }, + "events": [ + { + "uuid": "11d1ed0f-83ba-4930-b023-186069226c57", + "start": { + "$date": "2020-11-04T04:09:55.000Z" + }, + "end": { + "$date": "2020-11-04T04:10:55.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "0b3305e8-e107-4167-9c08-1f690f9b4096", + "start": { + "$date": "2020-11-04T04:10:55.000Z" + }, + "end": { + "$date": "2020-11-04T05:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d9376222-f568-4469-8909-2a4307c82232", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-04T04:20:39.000Z" + }, + "end": { + "$date": "2020-11-04T04:37:59.000Z" + }, + "events": [ + { + "uuid": "91591705-5ab1-40e8-a86d-505ed65402db", + "start": { + "$date": "2020-11-04T04:20:39.000Z" + }, + "end": { + "$date": "2020-11-04T04:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "080b7b29-485d-4f39-87e8-acefbae68bd6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-04T04:22:26.000Z" + }, + "end": { + "$date": "2020-11-04T06:26:13.000Z" + }, + "events": [ + { + "uuid": "af9da301-5323-48f8-93d3-356f01905941", + "start": { + "$date": "2020-11-04T04:22:26.000Z" + }, + "end": { + "$date": "2020-11-04T06:26:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "b2335552-e201-487f-83cc-5394154a7a03", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-04T04:29:16.000Z" + }, + "end": { + "$date": "2020-11-04T04:31:13.000Z" + }, + "events": [ + { + "uuid": "27abc914-b654-4d11-909c-7c05aa1073a5", + "start": { + "$date": "2020-11-04T04:29:16.000Z" + }, + "end": { + "$date": "2020-11-04T04:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "52900c1f-7c73-4e77-afe3-8808a1cf3150", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-04T04:31:21.000Z" + }, + "end": { + "$date": "2020-11-04T05:04:29.000Z" + }, + "events": [ + { + "uuid": "3bc5b9d2-d56b-4a7e-bef8-5344cefd8172", + "start": { + "$date": "2020-11-04T04:31:21.000Z" + }, + "end": { + "$date": "2020-11-04T05:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "3c4251d5-067b-4567-a184-627cfda0daf8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-04T04:39:00.000Z" + }, + "end": { + "$date": "2020-11-04T04:55:35.000Z" + }, + "events": [ + { + "uuid": "ba907fdd-70e3-42c6-84b4-781297874cab", + "start": { + "$date": "2020-11-04T04:39:00.000Z" + }, + "end": { + "$date": "2020-11-04T04:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "1ad902cc-9531-47b6-bf17-56d3c7cfc931", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-04T04:50:46.000Z" + }, + "end": { + "$date": "2020-11-04T06:31:06.000Z" + }, + "events": [ + { + "uuid": "c0497c3a-cc81-4e08-8ffe-1e713e19f371", + "start": { + "$date": "2020-11-04T04:50:46.000Z" + }, + "end": { + "$date": "2020-11-04T06:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "aaccd497-5949-46d4-90d8-ba4b5b6ea415", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T04:55:39.000Z" + }, + "end": { + "$date": "2020-11-04T05:01:56.000Z" + }, + "events": [ + { + "uuid": "48749aad-f6a3-407a-8086-b5307448800f", + "start": { + "$date": "2020-11-04T04:55:39.000Z" + }, + "end": { + "$date": "2020-11-04T05:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "a27d9957-3ba4-443d-8f0b-2cab013faee7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-04T04:55:50.000Z" + }, + "end": { + "$date": "2020-11-04T05:47:55.000Z" + }, + "events": [ + { + "uuid": "e47199b1-59a3-40f3-b552-f86f75a0b20d", + "start": { + "$date": "2020-11-04T04:55:50.000Z" + }, + "end": { + "$date": "2020-11-04T05:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "e5c28ac6-1664-4e37-89be-7b929b061a6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-04T04:59:41.000Z" + }, + "end": { + "$date": "2020-11-04T05:01:17.000Z" + }, + "events": [ + { + "uuid": "744df5d8-8cda-41d0-905e-12310321c5f0", + "start": { + "$date": "2020-11-04T04:59:41.000Z" + }, + "end": { + "$date": "2020-11-04T05:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "11012c0f-a1ed-4d49-999e-2e4c75dbc4bd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T05:02:04.000Z" + }, + "end": { + "$date": "2020-11-04T05:48:03.000Z" + }, + "events": [ + { + "uuid": "99e2de62-14fa-456b-9427-89ea4b6e4044", + "start": { + "$date": "2020-11-04T05:02:04.000Z" + }, + "end": { + "$date": "2020-11-04T05:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "bfb60ce9-7bd2-48c0-a00c-eeba99a43918", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-04T05:39:58.000Z" + }, + "end": { + "$date": "2020-11-04T05:47:10.000Z" + }, + "events": [ + { + "uuid": "d53c598f-53aa-4a57-ac6f-ca8e5e5184b7", + "start": { + "$date": "2020-11-04T05:39:58.000Z" + }, + "end": { + "$date": "2020-11-04T05:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "276193e2-e9d1-4a38-b3da-5899d6106d8b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-04T05:54:13.000Z" + }, + "end": { + "$date": "2020-11-04T06:47:28.000Z" + }, + "events": [ + { + "uuid": "eebba5a0-ad29-4f5b-bdf5-96f94878f9d5", + "start": { + "$date": "2020-11-04T05:54:13.000Z" + }, + "end": { + "$date": "2020-11-04T06:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "892ecb50-4539-4d59-818a-c49ec9ff3fc6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T06:56:48.000Z" + }, + "end": { + "$date": "2020-11-04T07:07:26.000Z" + }, + "events": [ + { + "uuid": "92336c48-c57c-4755-929e-c1429cd662dc", + "start": { + "$date": "2020-11-04T06:56:48.000Z" + }, + "end": { + "$date": "2020-11-04T07:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "4a01b563-6eee-4ebf-b906-09f9a41cf790", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-04T15:58:49.000Z" + }, + "end": { + "$date": "2020-11-04T17:29:47.000Z" + }, + "events": [ + { + "uuid": "4eaecca7-4a72-46f1-b28e-54e8aa604bf9", + "start": { + "$date": "2020-11-04T15:58:49.000Z" + }, + "end": { + "$date": "2020-11-04T17:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d500de09-4139-4782-b8ed-39148af44f5c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T17:36:10.000Z" + }, + "end": { + "$date": "2020-11-04T18:03:28.000Z" + }, + "events": [ + { + "uuid": "52f432e2-2468-4fda-85f0-44415ad4cf71", + "start": { + "$date": "2020-11-04T17:36:10.000Z" + }, + "end": { + "$date": "2020-11-04T18:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "8f42fbe7-46c8-45fc-b0ed-22dbd6602ff3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-04T17:15:49.000Z" + }, + "end": { + "$date": "2020-11-05T02:18:18.000Z" + }, + "events": [ + { + "uuid": "54d8a2a2-ab60-4340-9703-8b784aa3f12f", + "start": { + "$date": "2020-11-04T17:15:49.000Z" + }, + "end": { + "$date": "2020-11-04T18:46:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b9dfc83-7819-4353-a50e-389f088cae89", + "start": { + "$date": "2020-11-04T18:46:49.000Z" + }, + "end": { + "$date": "2020-11-04T19:34:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ccb3726-908c-4473-acb3-1c3cf42216d2", + "start": { + "$date": "2020-11-04T19:34:49.000Z" + }, + "end": { + "$date": "2020-11-04T19:36:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de27354f-0bca-4dcc-876a-8f92d9b52a9e", + "start": { + "$date": "2020-11-04T19:36:49.000Z" + }, + "end": { + "$date": "2020-11-04T19:43:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "caf3ec8b-f6e4-4c40-b4a5-2b09da5d08d9", + "start": { + "$date": "2020-11-04T19:43:49.000Z" + }, + "end": { + "$date": "2020-11-04T19:56:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0c8c501d-1ecf-4ad1-847e-5ed930fb2692", + "start": { + "$date": "2020-11-04T19:56:49.000Z" + }, + "end": { + "$date": "2020-11-04T19:58:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de3ba96e-bb1b-4eff-93ba-67f0ad7b768e", + "start": { + "$date": "2020-11-04T19:58:49.000Z" + }, + "end": { + "$date": "2020-11-04T20:42:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0b53f927-e953-451e-9d81-e6b68dd1f3be", + "start": { + "$date": "2020-11-04T20:42:49.000Z" + }, + "end": { + "$date": "2020-11-04T21:04:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd0d7198-9f2f-4e60-9d9d-ddcb40a78dde", + "start": { + "$date": "2020-11-04T21:04:49.000Z" + }, + "end": { + "$date": "2020-11-04T22:20:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "23a2f73e-a3a9-454b-b975-a77db28f89fd", + "start": { + "$date": "2020-11-04T22:20:49.000Z" + }, + "end": { + "$date": "2020-11-04T22:23:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ffd9432d-f759-4fd5-8e9b-ab79a012dd9f", + "start": { + "$date": "2020-11-04T22:23:49.000Z" + }, + "end": { + "$date": "2020-11-04T22:52:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f512e54e-9a03-43c1-b7de-c92a84daeba9", + "start": { + "$date": "2020-11-04T22:52:49.000Z" + }, + "end": { + "$date": "2020-11-04T23:05:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "85f27733-0186-4d1f-a2ec-448875376b73", + "start": { + "$date": "2020-11-04T23:05:49.000Z" + }, + "end": { + "$date": "2020-11-04T23:18:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df2e17b8-8f6a-4532-bcba-a76041804f87", + "start": { + "$date": "2020-11-04T23:18:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:04:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8cb41ab-7e2c-45e1-b645-6cd75148109c", + "start": { + "$date": "2020-11-05T01:04:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:08:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "563bca95-d859-462a-848a-e48dee32e32d", + "start": { + "$date": "2020-11-05T01:08:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:22:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf2cc007-0ebb-4e03-9a77-57f9027d58d8", + "start": { + "$date": "2020-11-05T01:22:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:24:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d518cef0-1b9d-4869-ac91-0fd27fef24b6", + "start": { + "$date": "2020-11-05T01:24:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:42:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a26f8cf4-db11-41cf-b424-dc191d564fde", + "start": { + "$date": "2020-11-05T01:42:49.000Z" + }, + "end": { + "$date": "2020-11-05T02:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f937af17-2782-4423-8cae-8e2d289f325a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T18:06:12.000Z" + }, + "end": { + "$date": "2020-11-04T18:33:38.000Z" + }, + "events": [ + { + "uuid": "2ffa448b-2ee3-44ae-b357-418be8ffdae3", + "start": { + "$date": "2020-11-04T18:06:12.000Z" + }, + "end": { + "$date": "2020-11-04T18:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0512b35a-f7a1-4fed-80ad-f3d2a75f34d8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-04T18:17:09.000Z" + }, + "end": { + "$date": "2020-11-04T18:45:01.000Z" + }, + "events": [ + { + "uuid": "7cfdb1d2-699c-4f45-8040-55d9c54f3b30", + "start": { + "$date": "2020-11-04T18:17:09.000Z" + }, + "end": { + "$date": "2020-11-04T18:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0160e80c-b4e1-46ee-9e0e-babc1e750341", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T19:33:37.000Z" + }, + "end": { + "$date": "2020-11-04T20:14:43.000Z" + }, + "events": [ + { + "uuid": "a93b3968-a05f-499a-bc42-1c4970869d6c", + "start": { + "$date": "2020-11-04T19:33:37.000Z" + }, + "end": { + "$date": "2020-11-04T20:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dddcd98-2fab-49ed-b944-6d70f7538b55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-04T20:15:24.000Z" + }, + "end": { + "$date": "2020-11-04T20:46:17.000Z" + }, + "events": [ + { + "uuid": "1615b389-bda8-40ac-a6de-d38b7bc284c3", + "start": { + "$date": "2020-11-04T20:15:24.000Z" + }, + "end": { + "$date": "2020-11-04T20:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "360fd263-89d6-4e2d-bfc9-973e83d839f1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T20:15:48.000Z" + }, + "end": { + "$date": "2020-11-04T20:42:59.000Z" + }, + "events": [ + { + "uuid": "2ef9f786-8122-46e1-98f6-a4ec4f4d94c9", + "start": { + "$date": "2020-11-04T20:15:48.000Z" + }, + "end": { + "$date": "2020-11-04T20:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbb8565d-b5b6-4ddb-be85-b3ff401dadda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T21:03:49.000Z" + }, + "end": { + "$date": "2020-11-04T21:29:51.000Z" + }, + "events": [ + { + "uuid": "2ae7eda0-5141-44fa-8258-337e1308a999", + "start": { + "$date": "2020-11-04T21:03:49.000Z" + }, + "end": { + "$date": "2020-11-04T21:29:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1c0a54e2-ead9-4add-974f-1deb56574e4c", + "uuid": "b8c09391-1f37-4e99-8774-a6c32798527d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-04T21:11:36.000Z" + }, + "end": { + "$date": "2020-11-04T22:47:49.000Z" + }, + "events": [ + { + "uuid": "e2e3f492-9687-4d52-a607-ed26c4a76ef6", + "start": { + "$date": "2020-11-04T21:11:36.000Z" + }, + "end": { + "$date": "2020-11-04T22:28:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ac632b9-4850-4b4f-baaa-e0e373b64ecb", + "start": { + "$date": "2020-11-04T22:28:36.000Z" + }, + "end": { + "$date": "2020-11-04T22:47:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f28b83c-7f97-4259-a837-4ce9268b6a56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T21:39:16.000Z" + }, + "end": { + "$date": "2020-11-04T21:59:46.000Z" + }, + "events": [ + { + "uuid": "a68d020b-783c-4924-9cd8-32a0bf3fa580", + "start": { + "$date": "2020-11-04T21:39:16.000Z" + }, + "end": { + "$date": "2020-11-04T21:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2111d50a-8f78-4e8c-aee0-2bc66acd1d09", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T22:03:12.000Z" + }, + "end": { + "$date": "2020-11-04T22:20:09.000Z" + }, + "events": [ + { + "uuid": "f4b150eb-5cdb-4d81-9a12-9ae0938002fc", + "start": { + "$date": "2020-11-04T22:03:12.000Z" + }, + "end": { + "$date": "2020-11-04T22:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4a05183b-8d8f-44fa-a97d-f687821ec342", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-04T22:02:22.000Z" + }, + "end": { + "$date": "2020-11-04T23:09:27.000Z" + }, + "events": [ + { + "uuid": "d470b35c-83c3-48e3-95ab-f75fbc47866b", + "start": { + "$date": "2020-11-04T22:02:22.000Z" + }, + "end": { + "$date": "2020-11-04T23:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f15ca71-122a-46bb-816e-b7ae3f2abdca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T22:24:33.000Z" + }, + "end": { + "$date": "2020-11-04T22:48:00.000Z" + }, + "events": [ + { + "uuid": "0ae69549-ed91-49af-9634-065bb4bedc6f", + "start": { + "$date": "2020-11-04T22:24:33.000Z" + }, + "end": { + "$date": "2020-11-04T22:48:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "377c58f0-7367-4ea6-8896-9773a7afb7c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-04T22:48:49.000Z" + }, + "end": { + "$date": "2020-11-04T22:49:59.000Z" + }, + "events": [ + { + "uuid": "0037d909-107e-4612-be1e-0ebde14b1086", + "start": { + "$date": "2020-11-04T22:48:49.000Z" + }, + "end": { + "$date": "2020-11-04T22:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "b941375c-8905-4658-b122-30c92e7ae4c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-04T23:08:06.000Z" + }, + "end": { + "$date": "2020-11-05T00:48:56.000Z" + }, + "events": [ + { + "uuid": "279a5be6-e09b-4b83-a171-4531f8d9c056", + "start": { + "$date": "2020-11-04T23:08:06.000Z" + }, + "end": { + "$date": "2020-11-05T00:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a3c94a5d-127b-49f9-82fa-611910a07e44", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-04T23:10:29.000Z" + }, + "end": { + "$date": "2020-11-04T23:57:44.000Z" + }, + "events": [ + { + "uuid": "e7571066-8ead-4e27-922c-03e8dc5abb87", + "start": { + "$date": "2020-11-04T23:10:29.000Z" + }, + "end": { + "$date": "2020-11-04T23:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2b3bc0e1-87b3-4a6f-83c1-e83d909a43ee", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-04T23:58:38.000Z" + }, + "end": { + "$date": "2020-11-05T00:33:11.000Z" + }, + "events": [ + { + "uuid": "8b295424-e641-4bf4-97e7-4676538acb77", + "start": { + "$date": "2020-11-04T23:58:38.000Z" + }, + "end": { + "$date": "2020-11-05T00:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "af8d98b9-5551-46f5-8331-868f5fb1e8e5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-05T00:47:48.000Z" + }, + "end": { + "$date": "2020-11-05T01:43:55.000Z" + }, + "events": [ + { + "uuid": "127b076d-66cc-44f6-9456-7b7b08cadc20", + "start": { + "$date": "2020-11-05T00:47:48.000Z" + }, + "end": { + "$date": "2020-11-05T01:43:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b8e6eaa6-ca07-4f7d-8178-dc3a716e45a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T00:51:17.000Z" + }, + "end": { + "$date": "2020-11-05T00:52:16.000Z" + }, + "events": [ + { + "uuid": "2a282f15-e20d-4999-9c91-b4e89d5e52c3", + "start": { + "$date": "2020-11-05T00:51:17.000Z" + }, + "end": { + "$date": "2020-11-05T00:52:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "4e139b7e-8538-439f-bc1d-7dd4f6c76012", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T00:56:13.000Z" + }, + "end": { + "$date": "2020-11-05T00:56:28.000Z" + }, + "events": [ + { + "uuid": "d1408b93-2a17-4b88-a5ab-26ccc6588123", + "start": { + "$date": "2020-11-05T00:56:13.000Z" + }, + "end": { + "$date": "2020-11-05T00:56:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "47de1db6-c77e-4e5c-bfde-d33c3e50011c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T00:56:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:30:41.000Z" + }, + "events": [ + { + "uuid": "df034ef9-9d2a-4c42-aae9-1b65b2279b21", + "start": { + "$date": "2020-11-05T00:56:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:09:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bad3c820-2650-4be6-80e6-2a34f7a0a1fc", + "start": { + "$date": "2020-11-05T01:09:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:11:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80a258d2-7a30-4a6c-90d6-14cab1686bc1", + "start": { + "$date": "2020-11-05T01:11:49.000Z" + }, + "end": { + "$date": "2020-11-05T01:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "dbaa446b-93fb-47a4-848a-7e77688a68c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T01:35:17.000Z" + }, + "end": { + "$date": "2020-11-05T02:14:23.000Z" + }, + "events": [ + { + "uuid": "cead6b6b-960d-43e3-966e-733b64029b96", + "start": { + "$date": "2020-11-05T01:35:17.000Z" + }, + "end": { + "$date": "2020-11-05T01:57:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74ab7c12-1c95-4c8c-9241-2c47d1070dec", + "start": { + "$date": "2020-11-05T01:57:17.000Z" + }, + "end": { + "$date": "2020-11-05T01:58:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb459f80-31cb-4227-b2c7-7a985ffe1296", + "start": { + "$date": "2020-11-05T01:58:17.000Z" + }, + "end": { + "$date": "2020-11-05T02:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fa536cf5-c3e1-4a55-83c6-5b804eccce56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-05T02:11:52.000Z" + }, + "end": { + "$date": "2020-11-05T02:42:01.000Z" + }, + "events": [ + { + "uuid": "6b765f42-31a8-473f-81f9-9ff264b08af8", + "start": { + "$date": "2020-11-05T02:11:52.000Z" + }, + "end": { + "$date": "2020-11-05T02:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "557a4b80-8121-4096-9639-46bae09cb7c8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T02:14:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:47:13.000Z" + }, + "events": [ + { + "uuid": "c7d4763b-bc7e-4ad2-9153-a68068bb308a", + "start": { + "$date": "2020-11-05T02:14:44.000Z" + }, + "end": { + "$date": "2020-11-05T02:45:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "960ff9d1-ba14-4672-81f3-10a48f1c0ebe", + "start": { + "$date": "2020-11-05T02:45:44.000Z" + }, + "end": { + "$date": "2020-11-05T02:49:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e517d281-ae1c-4deb-92f1-30d92c1f3f9a", + "start": { + "$date": "2020-11-05T02:49:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:00:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e768433-f278-4fc2-9e00-64650683c9db", + "start": { + "$date": "2020-11-05T03:00:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:04:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "56e4d2fd-c89a-404a-b2d9-d18e156161f4", + "start": { + "$date": "2020-11-05T03:04:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:14:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7de6c667-ac38-443b-aefd-6381b2856c3f", + "start": { + "$date": "2020-11-05T03:14:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:19:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de0add5d-c302-4e84-86e5-371fe38acbea", + "start": { + "$date": "2020-11-05T03:19:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:29:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ca41dff-4870-4f9d-8ece-7e8a7d9189f8", + "start": { + "$date": "2020-11-05T03:29:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:34:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fbdc2fc9-e962-4881-ad9a-357395fce162", + "start": { + "$date": "2020-11-05T03:34:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:44:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c25e23d-08ea-4e3f-bd63-88216ad9bc83", + "start": { + "$date": "2020-11-05T03:44:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:47:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "99473f93-df15-40e9-8a9b-d1e07252f5d4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-05T02:45:21.000Z" + }, + "end": { + "$date": "2020-11-05T03:59:51.000Z" + }, + "events": [ + { + "uuid": "e1fd0be9-7c5b-4915-ada9-30c0fa61c8b5", + "start": { + "$date": "2020-11-05T02:45:21.000Z" + }, + "end": { + "$date": "2020-11-05T03:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "972a1aa8-7fbd-4f2d-86b7-1ea7b650fdb8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-05T03:04:35.000Z" + }, + "end": { + "$date": "2020-11-05T03:52:21.000Z" + }, + "events": [ + { + "uuid": "68b546fd-ff76-4f74-a722-992efc673583", + "start": { + "$date": "2020-11-05T03:04:35.000Z" + }, + "end": { + "$date": "2020-11-05T03:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5ff9ebda-48f2-4fd2-b31f-252deee02380", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-05T03:12:29.000Z" + }, + "end": { + "$date": "2020-11-05T04:43:52.000Z" + }, + "events": [ + { + "uuid": "7e3e8e14-0d1e-4d0e-b3a7-c518f76d242e", + "start": { + "$date": "2020-11-05T03:12:29.000Z" + }, + "end": { + "$date": "2020-11-05T04:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "f9c17739-694b-4a31-ab1a-45d92fe96ea2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-05T03:17:40.000Z" + }, + "end": { + "$date": "2020-11-05T04:29:34.000Z" + }, + "events": [ + { + "uuid": "92d67470-5a17-44e7-afa9-d25387c2e68d", + "start": { + "$date": "2020-11-05T03:17:40.000Z" + }, + "end": { + "$date": "2020-11-05T04:29:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9cb40dbc-278e-4549-a2ec-115983421977", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-05T03:19:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:29:51.000Z" + }, + "events": [ + { + "uuid": "650ab529-b7bc-41e7-b90f-b5c736bc0105", + "start": { + "$date": "2020-11-05T03:19:44.000Z" + }, + "end": { + "$date": "2020-11-05T03:29:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "03130921-da7c-4c12-b08b-f2161164a143", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-05T03:24:30.000Z" + }, + "end": { + "$date": "2020-11-05T05:47:53.000Z" + }, + "events": [ + { + "uuid": "99121a4e-02d1-452c-a694-550c65b9278a", + "start": { + "$date": "2020-11-05T03:24:30.000Z" + }, + "end": { + "$date": "2020-11-05T05:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "87cae347-49f3-42d8-b09d-4d586a6d3d5b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-05T03:25:20.000Z" + }, + "end": { + "$date": "2020-11-05T04:46:06.000Z" + }, + "events": [ + { + "uuid": "96e130fd-e7d1-4f9d-8591-d9ad0d63a112", + "start": { + "$date": "2020-11-05T03:25:20.000Z" + }, + "end": { + "$date": "2020-11-05T04:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "d3e3350c-8920-4de5-8265-280797913994", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-05T03:26:39.000Z" + }, + "end": { + "$date": "2020-11-05T05:47:52.000Z" + }, + "events": [ + { + "uuid": "3cbcf671-a636-476d-bac0-e2833436500b", + "start": { + "$date": "2020-11-05T03:26:39.000Z" + }, + "end": { + "$date": "2020-11-05T05:47:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3f1e5bdf-17d5-4a33-9801-c99ea63a0831", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-05T03:29:55.000Z" + }, + "end": { + "$date": "2020-11-05T04:44:20.000Z" + }, + "events": [ + { + "uuid": "eac879e2-bf9a-4f7f-8417-17947e09a501", + "start": { + "$date": "2020-11-05T03:29:55.000Z" + }, + "end": { + "$date": "2020-11-05T04:44:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7934e3f5-7932-4ebb-899e-d91ae9c03e65", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-05T03:51:26.000Z" + }, + "end": { + "$date": "2020-11-05T04:11:24.000Z" + }, + "events": [ + { + "uuid": "9c5c03c5-3aa7-491a-8158-c6ca6c550a4a", + "start": { + "$date": "2020-11-05T03:51:26.000Z" + }, + "end": { + "$date": "2020-11-05T04:11:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "76f0e021-429f-4d9f-9d33-0ead6cfb3794", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T03:58:24.000Z" + }, + "end": { + "$date": "2020-11-05T05:56:49.000Z" + }, + "events": [ + { + "uuid": "712c013e-c765-4d3c-ba49-b7734c1d0d72", + "start": { + "$date": "2020-11-05T03:58:24.000Z" + }, + "end": { + "$date": "2020-11-05T05:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "88545a9b-375d-40a2-9808-62fb582c265a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-05T03:58:43.000Z" + }, + "end": { + "$date": "2020-11-05T05:18:56.000Z" + }, + "events": [ + { + "uuid": "6bf83e0e-dc4c-4ffb-bbf8-256070df1abe", + "start": { + "$date": "2020-11-05T03:58:43.000Z" + }, + "end": { + "$date": "2020-11-05T05:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "70fa27c8-520a-49a8-bddc-86d8e7b17b52", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-05T04:03:07.000Z" + }, + "end": { + "$date": "2020-11-05T04:41:17.000Z" + }, + "events": [ + { + "uuid": "c89af198-2899-471f-b8dc-227fa66eea3f", + "start": { + "$date": "2020-11-05T04:03:07.000Z" + }, + "end": { + "$date": "2020-11-05T04:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f84dfcdb-386a-4fd7-b8ae-456d1132e299", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-05T04:20:48.000Z" + }, + "end": { + "$date": "2020-11-05T05:53:33.000Z" + }, + "events": [ + { + "uuid": "05f00020-887f-4396-a265-8888823e0c09", + "start": { + "$date": "2020-11-05T04:20:48.000Z" + }, + "end": { + "$date": "2020-11-05T05:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f6c26fe0-f7f6-4689-954e-622432c5f909", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-05T04:30:05.000Z" + }, + "end": { + "$date": "2020-11-05T05:57:16.000Z" + }, + "events": [ + { + "uuid": "6a669025-4312-4b10-b043-a3214b198536", + "start": { + "$date": "2020-11-05T04:30:05.000Z" + }, + "end": { + "$date": "2020-11-05T04:44:05.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "adea7582-9d64-468f-86ee-286843de826a", + "start": { + "$date": "2020-11-05T04:44:05.000Z" + }, + "end": { + "$date": "2020-11-05T05:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "f30bc601-727b-4744-b6f1-5cc31ffcd41b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-05T04:43:19.000Z" + }, + "end": { + "$date": "2020-11-05T04:53:45.000Z" + }, + "events": [ + { + "uuid": "890db028-0022-4d09-bf7d-527a8adc75d7", + "start": { + "$date": "2020-11-05T04:43:19.000Z" + }, + "end": { + "$date": "2020-11-05T04:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8ed3fa75-3f81-49ae-9d47-83955e324fef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-05T05:20:19.000Z" + }, + "end": { + "$date": "2020-11-05T06:37:16.000Z" + }, + "events": [ + { + "uuid": "7228d110-734f-4fd3-ba4a-b62f9c331d65", + "start": { + "$date": "2020-11-05T05:20:19.000Z" + }, + "end": { + "$date": "2020-11-05T06:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "7ac8b367-3abc-42ac-b188-469af5104e4f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-05T05:51:05.000Z" + }, + "end": { + "$date": "2020-11-05T06:20:46.000Z" + }, + "events": [ + { + "uuid": "aa25f4f9-a9df-472a-aed0-e256d061e507", + "start": { + "$date": "2020-11-05T05:51:05.000Z" + }, + "end": { + "$date": "2020-11-05T06:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6003814e-9776-4800-a2ae-35d174a88103", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-05T06:00:20.000Z" + }, + "end": { + "$date": "2020-11-05T06:05:10.000Z" + }, + "events": [ + { + "uuid": "63258c38-b0a8-413b-9f38-869b35ba8070", + "start": { + "$date": "2020-11-05T06:00:20.000Z" + }, + "end": { + "$date": "2020-11-05T06:05:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "c8f3bd51-09b6-425f-8d54-938937319a55", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-05T15:13:47.000Z" + }, + "end": { + "$date": "2020-11-05T16:59:58.000Z" + }, + "events": [ + { + "uuid": "5c79e542-b85d-46e1-a016-4c068735272f", + "start": { + "$date": "2020-11-05T15:13:47.000Z" + }, + "end": { + "$date": "2020-11-05T16:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "36977fc7-3876-4ac7-a2f9-0411c593bca5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-05T19:15:38.000Z" + }, + "end": { + "$date": "2020-11-05T19:38:05.000Z" + }, + "events": [ + { + "uuid": "ba354bcc-155c-4824-add9-472c67d2b57d", + "start": { + "$date": "2020-11-05T19:15:38.000Z" + }, + "end": { + "$date": "2020-11-05T19:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d41c2d5-93eb-4f03-8d1c-92f427df91ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-05T21:52:21.000Z" + }, + "end": { + "$date": "2020-11-05T22:23:00.000Z" + }, + "events": [ + { + "uuid": "8c4d86c3-fc6d-459b-8de7-088de6ed17a8", + "start": { + "$date": "2020-11-05T21:52:21.000Z" + }, + "end": { + "$date": "2020-11-05T22:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "fc8daf48-1f04-404b-80bf-7a14fbb9acf5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-05T22:45:54.000Z" + }, + "end": { + "$date": "2020-11-06T00:34:39.000Z" + }, + "events": [ + { + "uuid": "a8fcf051-8e5b-4915-b678-198449067eca", + "start": { + "$date": "2020-11-05T22:45:54.000Z" + }, + "end": { + "$date": "2020-11-06T00:34:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "ec4eaa20-c7ef-4935-9f05-7111be1ae605", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-05T22:50:21.000Z" + }, + "end": { + "$date": "2020-11-05T22:59:58.000Z" + }, + "events": [ + { + "uuid": "64b18dd0-2561-4768-a937-35358ad7e617", + "start": { + "$date": "2020-11-05T22:50:21.000Z" + }, + "end": { + "$date": "2020-11-05T22:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "be057380-dd39-4049-84f3-e0529d4a51e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-06T03:58:35.000Z" + }, + "end": { + "$date": "2020-11-06T04:00:39.000Z" + }, + "events": [ + { + "uuid": "e3f5be47-5bfe-41ea-b40a-06f25a332253", + "start": { + "$date": "2020-11-06T03:58:35.000Z" + }, + "end": { + "$date": "2020-11-06T05:51:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03f0c4bd-9c02-4723-b7e5-051df126d902", + "start": { + "$date": "2020-11-06T05:51:35.000Z" + }, + "end": { + "$date": "2020-11-06T05:56:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70bbba3d-b4e5-406d-8c2a-0a1ec05b94bf", + "start": { + "$date": "2020-11-06T05:56:35.000Z" + }, + "end": { + "$date": "2020-11-06T06:06:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "476a1e51-ac56-4a0f-83d4-41220f3c8da3", + "start": { + "$date": "2020-11-06T06:06:35.000Z" + }, + "end": { + "$date": "2020-11-06T06:10:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c77bd138-6f23-4ec3-9645-3c8e23f11193", + "start": { + "$date": "2020-11-06T06:10:35.000Z" + }, + "end": { + "$date": "2020-11-06T06:28:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b86eae26-4f4d-4ed5-bd63-da7cae92befd", + "start": { + "$date": "2020-11-06T06:28:35.000Z" + }, + "end": { + "$date": "2020-11-06T06:31:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f31e56e5-1501-4c1b-bb02-ff0d581a57f1", + "start": { + "$date": "2020-11-06T06:31:35.000Z" + }, + "end": { + "$date": "2020-11-06T04:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd12df2c-36f4-4422-8a26-e790719857d8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T00:46:16.000Z" + }, + "end": { + "$date": "2020-11-06T00:50:21.000Z" + }, + "events": [ + { + "uuid": "8ca46b01-0580-41d8-9360-b1702db2ef97", + "start": { + "$date": "2020-11-06T00:46:16.000Z" + }, + "end": { + "$date": "2020-11-06T00:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bfcb29f7-8807-4e47-af3c-a71d2e70ee18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T00:51:51.000Z" + }, + "end": { + "$date": "2020-11-06T00:53:56.000Z" + }, + "events": [ + { + "uuid": "84045476-207c-446a-9081-9609f2d82008", + "start": { + "$date": "2020-11-06T00:51:51.000Z" + }, + "end": { + "$date": "2020-11-06T00:53:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "236cf442-1e38-473a-8fd3-73ac9500cd95", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T00:55:42.000Z" + }, + "end": { + "$date": "2020-11-06T01:17:17.000Z" + }, + "events": [ + { + "uuid": "a016a90d-064b-4ea0-91e2-f1adf546cf0b", + "start": { + "$date": "2020-11-06T00:55:42.000Z" + }, + "end": { + "$date": "2020-11-06T01:17:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c97fe428-527d-4dfd-b629-9395a8c66f26", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-06T01:08:57.000Z" + }, + "end": { + "$date": "2020-11-06T01:16:53.000Z" + }, + "events": [ + { + "uuid": "c4b780f5-ceb2-4442-a696-06f6327d26fc", + "start": { + "$date": "2020-11-06T01:08:57.000Z" + }, + "end": { + "$date": "2020-11-06T01:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d363922a-6bf8-4926-9d01-1335e5f072bd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-06T01:10:30.000Z" + }, + "end": { + "$date": "2020-11-06T01:11:40.000Z" + }, + "events": [ + { + "uuid": "c245d476-cdb2-46db-a458-e8f3792e3965", + "start": { + "$date": "2020-11-06T01:10:30.000Z" + }, + "end": { + "$date": "2020-11-06T01:11:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ca187665-b4f3-4859-b3dd-b7c4d51b4e74", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-06T01:55:33.000Z" + }, + "end": { + "$date": "2020-11-06T03:00:16.000Z" + }, + "events": [ + { + "uuid": "ad1b41fc-7d25-4ad0-a363-0ed0ce1de89d", + "start": { + "$date": "2020-11-06T01:55:33.000Z" + }, + "end": { + "$date": "2020-11-06T03:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8c0676bb-e4bc-49ea-8f17-c9140b4e105a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-06T02:54:10.000Z" + }, + "end": { + "$date": "2020-11-06T03:00:20.000Z" + }, + "events": [ + { + "uuid": "d304a6f8-1910-4a31-8388-9182dc5ec99c", + "start": { + "$date": "2020-11-06T02:54:10.000Z" + }, + "end": { + "$date": "2020-11-06T03:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "aafa08e3-10b4-43b3-b40f-7c0d609bb23a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-06T03:01:20.000Z" + }, + "end": { + "$date": "2020-11-06T03:06:50.000Z" + }, + "events": [ + { + "uuid": "55863a3e-966c-4873-bd3d-15ab40366655", + "start": { + "$date": "2020-11-06T03:01:20.000Z" + }, + "end": { + "$date": "2020-11-06T03:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "811ff806-f984-4d98-a995-7009beaef42f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-06T03:06:56.000Z" + }, + "end": { + "$date": "2020-11-06T03:22:51.000Z" + }, + "events": [ + { + "uuid": "cb22b092-7970-4a2d-9e01-fad813923c54", + "start": { + "$date": "2020-11-06T03:06:56.000Z" + }, + "end": { + "$date": "2020-11-06T03:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b7e2d109-9147-4aad-85ff-af08a8660b9a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-06T03:09:37.000Z" + }, + "end": { + "$date": "2020-11-06T03:42:15.000Z" + }, + "events": [ + { + "uuid": "1442e702-dfc4-4fd7-9f9f-320a2606d510", + "start": { + "$date": "2020-11-06T03:09:37.000Z" + }, + "end": { + "$date": "2020-11-06T03:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "59e3ff4b-ece7-475d-a44c-57775dca3766", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-06T03:18:03.000Z" + }, + "end": { + "$date": "2020-11-06T03:19:18.000Z" + }, + "events": [ + { + "uuid": "0ebd513c-28a9-489e-9959-0d3ada95891a", + "start": { + "$date": "2020-11-06T03:18:03.000Z" + }, + "end": { + "$date": "2020-11-06T03:19:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cab65f7e-adec-4cc3-b334-15201358374e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-06T03:18:05.000Z" + }, + "end": { + "$date": "2020-11-06T03:20:00.000Z" + }, + "events": [ + { + "uuid": "77dda65a-6cb3-40cd-bd9c-813cd7812b95", + "start": { + "$date": "2020-11-06T03:18:05.000Z" + }, + "end": { + "$date": "2020-11-06T03:20:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3de72fbb-44fc-4d2d-bd20-c3254051d911", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-06T03:22:00.000Z" + }, + "end": { + "$date": "2020-11-06T03:35:27.000Z" + }, + "events": [ + { + "uuid": "1898c89b-1e2e-4082-82cd-2a29c03e444c", + "start": { + "$date": "2020-11-06T03:22:00.000Z" + }, + "end": { + "$date": "2020-11-06T03:35:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "88aa9ae1-270c-4ffa-8a8a-6433a2b8ee60", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-06T03:24:44.000Z" + }, + "end": { + "$date": "2020-11-06T04:01:28.000Z" + }, + "events": [ + { + "uuid": "7cb94cb3-a1ac-4734-b489-d76a9d67d4d9", + "start": { + "$date": "2020-11-06T03:24:44.000Z" + }, + "end": { + "$date": "2020-11-06T04:01:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "06d017d7-4894-4a0b-9293-01b47b0f6a60", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-06T03:27:03.000Z" + }, + "end": { + "$date": "2020-11-06T03:34:29.000Z" + }, + "events": [ + { + "uuid": "82c4399c-a722-4f12-9c15-19b5bd08064d", + "start": { + "$date": "2020-11-06T03:27:03.000Z" + }, + "end": { + "$date": "2020-11-06T03:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ee885750-b398-47b1-888e-63c3799492aa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-06T03:34:54.000Z" + }, + "end": { + "$date": "2020-11-06T03:37:10.000Z" + }, + "events": [ + { + "uuid": "549f0bdb-38b0-4563-b56f-68d7e23011fd", + "start": { + "$date": "2020-11-06T03:34:54.000Z" + }, + "end": { + "$date": "2020-11-06T03:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0b4971e7-9bd5-4e31-aa70-80d499ca2e35", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-06T03:35:52.000Z" + }, + "end": { + "$date": "2020-11-06T03:41:43.000Z" + }, + "events": [ + { + "uuid": "9422cae6-39f2-4f29-acf7-eb2989dcfba3", + "start": { + "$date": "2020-11-06T03:35:52.000Z" + }, + "end": { + "$date": "2020-11-06T03:41:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5a593501-c2ad-443a-b8ce-6ee3b40bb061", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-06T03:38:19.000Z" + }, + "end": { + "$date": "2020-11-06T03:39:30.000Z" + }, + "events": [ + { + "uuid": "06e15b96-d394-40e4-b8ae-3b0748605958", + "start": { + "$date": "2020-11-06T03:38:19.000Z" + }, + "end": { + "$date": "2020-11-06T03:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "3ce15c0b-68be-4e2b-a465-d7204938a3b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-06T03:42:13.000Z" + }, + "end": { + "$date": "2020-11-06T03:56:26.000Z" + }, + "events": [ + { + "uuid": "419ecfa7-2be1-4298-82a2-92be86430866", + "start": { + "$date": "2020-11-06T03:42:13.000Z" + }, + "end": { + "$date": "2020-11-06T03:56:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "21b313a4-9416-4884-8a1f-444ded5e8a18", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-06T03:42:31.000Z" + }, + "end": { + "$date": "2020-11-06T04:52:05.000Z" + }, + "events": [ + { + "uuid": "fdef6c0c-3fdc-4a06-9dc9-baf3a261cfe7", + "start": { + "$date": "2020-11-06T03:42:31.000Z" + }, + "end": { + "$date": "2020-11-06T04:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "ccf2caad-6598-4f35-a69a-6130cd9dd778", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-06T03:44:10.000Z" + }, + "end": { + "$date": "2020-11-06T04:51:10.000Z" + }, + "events": [ + { + "uuid": "3e29b00a-32e8-448c-8d69-173c5297b152", + "start": { + "$date": "2020-11-06T03:44:10.000Z" + }, + "end": { + "$date": "2020-11-06T04:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "2d7768a5-a790-428b-9789-9b36d308d460", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T03:55:54.000Z" + }, + "end": { + "$date": "2020-11-06T04:51:10.000Z" + }, + "events": [ + { + "uuid": "f2cb1495-0bdf-4ef4-a675-a0556f23a39c", + "start": { + "$date": "2020-11-06T03:55:54.000Z" + }, + "end": { + "$date": "2020-11-06T04:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e64649fe-d1fa-426a-9fdf-5c7121ba4b48", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-06T04:16:47.000Z" + }, + "end": { + "$date": "2020-11-06T06:58:43.000Z" + }, + "events": [ + { + "uuid": "2d3f85ed-59fb-49b5-93a5-6c2bbdd4dbd3", + "start": { + "$date": "2020-11-06T04:16:47.000Z" + }, + "end": { + "$date": "2020-11-06T06:42:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b56822c0-2317-4c6c-9f09-281b981d206a", + "start": { + "$date": "2020-11-06T06:42:47.000Z" + }, + "end": { + "$date": "2020-11-06T06:45:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1321b549-7794-44ef-a23b-7f3c6cbc206c", + "start": { + "$date": "2020-11-06T06:45:47.000Z" + }, + "end": { + "$date": "2020-11-06T06:49:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bbe1016e-3763-446f-a9c9-39fda3033ec0", + "start": { + "$date": "2020-11-06T06:49:47.000Z" + }, + "end": { + "$date": "2020-11-06T06:58:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "cc1bfcb7-73b9-4481-8713-021d576f9d19", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-06T04:46:21.000Z" + }, + "end": { + "$date": "2020-11-06T06:43:06.000Z" + }, + "events": [ + { + "uuid": "3405cb9e-45e1-446a-a892-bb4ad8dd3862", + "start": { + "$date": "2020-11-06T04:46:21.000Z" + }, + "end": { + "$date": "2020-11-06T06:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "27070c6f-1854-4bee-ae81-b410c1557108", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-06T04:52:39.000Z" + }, + "end": { + "$date": "2020-11-06T06:07:33.000Z" + }, + "events": [ + { + "uuid": "4827d1af-9a7b-4d55-8082-250ece5aa438", + "start": { + "$date": "2020-11-06T04:52:39.000Z" + }, + "end": { + "$date": "2020-11-06T06:07:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f0eb30f9-26da-4805-beca-b6227b7d41d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T04:53:07.000Z" + }, + "end": { + "$date": "2020-11-06T05:24:47.000Z" + }, + "events": [ + { + "uuid": "8c77e890-e65e-4af7-951f-cd7586136c26", + "start": { + "$date": "2020-11-06T04:53:07.000Z" + }, + "end": { + "$date": "2020-11-06T05:24:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f9e4aea-85b2-4c35-bfed-caaa545b8726", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-06T04:54:00.000Z" + }, + "end": { + "$date": "2020-11-06T05:24:52.000Z" + }, + "events": [ + { + "uuid": "331072da-f5f1-4810-a2d7-21b83247f13e", + "start": { + "$date": "2020-11-06T04:54:00.000Z" + }, + "end": { + "$date": "2020-11-06T05:24:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "648cbdfd-0749-4d3d-94e4-b193f523fcc7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-06T05:04:20.000Z" + }, + "end": { + "$date": "2020-11-06T05:10:27.000Z" + }, + "events": [ + { + "uuid": "b9fd8225-ef82-4996-ad33-7124f88cda48", + "start": { + "$date": "2020-11-06T05:04:20.000Z" + }, + "end": { + "$date": "2020-11-06T05:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "a0bee0ec-7d4d-4caa-9666-275baacf1cb8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-06T16:54:00.000Z" + }, + "end": { + "$date": "2020-11-06T17:13:50.000Z" + }, + "events": [ + { + "uuid": "e78c580c-784b-46e0-889b-ab7fbe8c2f13", + "start": { + "$date": "2020-11-06T16:54:00.000Z" + }, + "end": { + "$date": "2020-11-06T17:13:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aae1ad12-4d84-48b3-9527-ba58e7d581f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-06T19:15:02.000Z" + }, + "end": { + "$date": "2020-11-06T19:41:10.000Z" + }, + "events": [ + { + "uuid": "8194f740-ea7c-4631-a929-a16fb60c3e36", + "start": { + "$date": "2020-11-06T19:15:02.000Z" + }, + "end": { + "$date": "2020-11-06T19:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92256399-b948-475b-9b60-1315c2764eb4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-06T19:44:42.000Z" + }, + "end": { + "$date": "2020-11-06T20:21:25.000Z" + }, + "events": [ + { + "uuid": "9d49566e-bf85-4f2e-8081-a5e2b29932df", + "start": { + "$date": "2020-11-06T19:44:42.000Z" + }, + "end": { + "$date": "2020-11-06T20:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "07ebcb5c-ee5d-49c0-b0ef-0f2ea4f6c33b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-06T20:39:31.000Z" + }, + "end": { + "$date": "2020-11-06T20:49:15.000Z" + }, + "events": [ + { + "uuid": "196cbf8e-8332-45cd-9bfb-ca3192ac988b", + "start": { + "$date": "2020-11-06T20:39:31.000Z" + }, + "end": { + "$date": "2020-11-06T20:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "630d69d1-d3be-4a6f-9ef8-2b1cf3782c98", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-06T21:22:29.000Z" + }, + "end": { + "$date": "2020-11-06T22:33:00.000Z" + }, + "events": [ + { + "uuid": "9dc032da-cbc2-4427-b68b-8ae63cba5216", + "start": { + "$date": "2020-11-06T21:22:29.000Z" + }, + "end": { + "$date": "2020-11-06T22:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "459661b7-38b1-497f-81e8-058f9611e920", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T22:35:32.000Z" + }, + "end": { + "$date": "2020-11-06T22:37:06.000Z" + }, + "events": [ + { + "uuid": "30fc81c8-7911-43d0-8022-7557c6737c76", + "start": { + "$date": "2020-11-06T22:35:32.000Z" + }, + "end": { + "$date": "2020-11-06T22:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e775eea7-3014-49d8-96eb-cd1fb743537e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T22:37:37.000Z" + }, + "end": { + "$date": "2020-11-06T22:58:42.000Z" + }, + "events": [ + { + "uuid": "845791f0-82bc-4bb2-be17-1e20940b80bf", + "start": { + "$date": "2020-11-06T22:37:37.000Z" + }, + "end": { + "$date": "2020-11-06T22:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "b2db9d9a-119b-4c6b-bb2c-14a267440756", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-06T22:42:26.000Z" + }, + "end": { + "$date": "2020-11-06T23:55:28.000Z" + }, + "events": [ + { + "uuid": "bcc229d2-67ae-4c3f-aa98-a9b6068b2b4c", + "start": { + "$date": "2020-11-06T22:42:26.000Z" + }, + "end": { + "$date": "2020-11-06T23:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "282ec0fe-9c1d-4425-8106-7efc14f389fe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T23:00:13.000Z" + }, + "end": { + "$date": "2020-11-06T23:45:53.000Z" + }, + "events": [ + { + "uuid": "6f634b5a-5735-4041-a248-26b9bdda592a", + "start": { + "$date": "2020-11-06T23:00:13.000Z" + }, + "end": { + "$date": "2020-11-06T23:45:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2c50ad06-e4c3-4990-9708-60015de78b62", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-06T23:14:54.000Z" + }, + "end": { + "$date": "2020-11-07T02:30:12.000Z" + }, + "events": [ + { + "uuid": "a195d85e-74fc-4746-a37c-42dda0272829", + "start": { + "$date": "2020-11-06T23:14:54.000Z" + }, + "end": { + "$date": "2020-11-06T23:39:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "751a25cd-1711-4f5f-8260-517d0cd1ac16", + "start": { + "$date": "2020-11-06T23:39:54.000Z" + }, + "end": { + "$date": "2020-11-06T23:40:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "452a7946-1248-493c-bbfd-6ea5b6f90bc7", + "start": { + "$date": "2020-11-06T23:40:54.000Z" + }, + "end": { + "$date": "2020-11-07T01:19:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b542071-e92f-4eee-97e6-7a5c2d58a8cc", + "start": { + "$date": "2020-11-07T01:19:54.000Z" + }, + "end": { + "$date": "2020-11-07T01:26:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "936c32fb-7f78-4486-b2e9-45ab469e9f2a", + "start": { + "$date": "2020-11-07T01:26:54.000Z" + }, + "end": { + "$date": "2020-11-07T02:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f6b8bf54-f29f-4364-9446-b6c2b81028a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-06T23:49:20.000Z" + }, + "end": { + "$date": "2020-11-07T00:08:59.000Z" + }, + "events": [ + { + "uuid": "7a076066-21c5-4fb9-939c-fc78edc22b02", + "start": { + "$date": "2020-11-06T23:49:20.000Z" + }, + "end": { + "$date": "2020-11-07T00:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4d4de0aa-2fad-416e-b10a-f813830b216a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-07T00:03:18.000Z" + }, + "end": { + "$date": "2020-11-07T00:21:48.000Z" + }, + "events": [ + { + "uuid": "e40ca8f5-dbd5-4960-aca8-280571786a12", + "start": { + "$date": "2020-11-07T00:03:18.000Z" + }, + "end": { + "$date": "2020-11-07T00:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "557cc0f6-d912-4491-b96b-ad0154f41269", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-07T00:06:15.000Z" + }, + "end": { + "$date": "2020-11-07T01:44:42.000Z" + }, + "events": [ + { + "uuid": "c562eef1-570e-4858-b726-452ae975f7b8", + "start": { + "$date": "2020-11-07T00:06:15.000Z" + }, + "end": { + "$date": "2020-11-07T01:44:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "38fde55f-c0a4-42d6-97b3-059de4a8d84e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-07T00:06:37.000Z" + }, + "end": { + "$date": "2020-11-07T01:00:41.000Z" + }, + "events": [ + { + "uuid": "1a3c2f96-dd41-4f64-bed6-6f9b0cd7cf21", + "start": { + "$date": "2020-11-07T00:06:37.000Z" + }, + "end": { + "$date": "2020-11-07T01:00:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7963bd75-9619-4c1f-99e6-eb5604c5f511", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T00:34:23.000Z" + }, + "end": { + "$date": "2020-11-07T00:59:38.000Z" + }, + "events": [ + { + "uuid": "cec08b50-3bc7-4173-b453-7af291d95e6c", + "start": { + "$date": "2020-11-07T00:34:23.000Z" + }, + "end": { + "$date": "2020-11-07T00:59:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "776abba0-97dd-4a30-947b-4c111ad827da", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-07T01:47:15.000Z" + }, + "end": { + "$date": "2020-11-07T02:09:21.000Z" + }, + "events": [ + { + "uuid": "326a7893-18c3-4ba4-87ca-72bb67dc5901", + "start": { + "$date": "2020-11-07T01:47:15.000Z" + }, + "end": { + "$date": "2020-11-07T02:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "7c72c3b1-af30-4d7a-aac9-0f9126431db5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-07T02:13:39.000Z" + }, + "end": { + "$date": "2020-11-07T09:33:26.000Z" + }, + "events": [ + { + "uuid": "7cbbe2f4-4bb2-42d1-b4d3-f09094218a1c", + "start": { + "$date": "2020-11-07T02:13:39.000Z" + }, + "end": { + "$date": "2020-11-07T09:33:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "c0f2d0e9-d77f-4d1c-aa1e-aa03a8902afa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-07T02:18:01.000Z" + }, + "end": { + "$date": "2020-11-07T09:30:22.000Z" + }, + "events": [ + { + "uuid": "bb98e0d2-fe23-4e48-9f2b-7cea2e9e6441", + "start": { + "$date": "2020-11-07T02:18:01.000Z" + }, + "end": { + "$date": "2020-11-07T09:30:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2e5c07e5-103c-4ada-a5f3-55f2f80c3d64", + "uuid": "758f244a-b514-43e8-8243-52c7801fe634", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-07T02:22:10.000Z" + }, + "end": { + "$date": "2020-11-07T03:47:13.000Z" + }, + "events": [ + { + "uuid": "0007e147-a15a-43f1-ac64-fc953335acc1", + "start": { + "$date": "2020-11-07T02:22:10.000Z" + }, + "end": { + "$date": "2020-11-07T03:47:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "2e8834ed-c41c-42b6-b2ec-67dfc50fcb32", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-07T02:24:55.000Z" + }, + "end": { + "$date": "2020-11-07T04:41:32.000Z" + }, + "events": [ + { + "uuid": "fe02ccd8-f157-45a0-a69d-98559d46162e", + "start": { + "$date": "2020-11-07T02:24:55.000Z" + }, + "end": { + "$date": "2020-11-07T04:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8c4f353c-e78f-4773-91a5-80b0cda292c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-07T02:38:27.000Z" + }, + "end": { + "$date": "2020-11-07T02:50:07.000Z" + }, + "events": [ + { + "uuid": "1e92ad8b-17d1-40a4-ae74-41fb934a0a7b", + "start": { + "$date": "2020-11-07T02:38:27.000Z" + }, + "end": { + "$date": "2020-11-07T02:50:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "898fda77-b7c4-4871-97c4-fce6ff95082e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T02:39:50.000Z" + }, + "end": { + "$date": "2020-11-07T03:14:41.000Z" + }, + "events": [ + { + "uuid": "b906ebb7-34cb-4197-bda7-1b0f9ac72564", + "start": { + "$date": "2020-11-07T02:39:50.000Z" + }, + "end": { + "$date": "2020-11-07T03:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "adea9775-2744-4bc7-ba55-34b79ccc69dc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-07T02:50:37.000Z" + }, + "end": { + "$date": "2020-11-07T09:30:10.000Z" + }, + "events": [ + { + "uuid": "34e2ef6c-57c6-4e76-849c-540bf1fe0cf0", + "start": { + "$date": "2020-11-07T02:50:37.000Z" + }, + "end": { + "$date": "2020-11-07T09:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "26cf415a-a032-4a36-bcb8-fbccb4a5d632", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-07T03:13:07.000Z" + }, + "end": { + "$date": "2020-11-07T07:52:16.000Z" + }, + "events": [ + { + "uuid": "9d148546-9694-4c56-a34f-77b66683d2a9", + "start": { + "$date": "2020-11-07T03:13:07.000Z" + }, + "end": { + "$date": "2020-11-07T05:21:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea7b01fe-b45a-44fb-bebc-cf6f4eb0940b", + "start": { + "$date": "2020-11-07T05:21:07.000Z" + }, + "end": { + "$date": "2020-11-07T05:28:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edff756c-d1b7-490e-9c70-e4beb1ac917d", + "start": { + "$date": "2020-11-07T05:28:07.000Z" + }, + "end": { + "$date": "2020-11-07T07:52:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2a9dc858-c5a5-4bf8-8cf7-09569d15fb72", + "uuid": "60a51081-02ab-46ca-8a8d-e0bed0d1eb03", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T03:14:51.000Z" + }, + "end": { + "$date": "2020-11-07T06:05:50.000Z" + }, + "events": [ + { + "uuid": "ffbe6e43-cfad-4cd5-bad6-9a9f5c8ac79a", + "start": { + "$date": "2020-11-07T03:14:51.000Z" + }, + "end": { + "$date": "2020-11-07T06:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "9c696a9a-ba32-4aff-be3f-def9f9dc5ea7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-07T03:50:12.000Z" + }, + "end": { + "$date": "2020-11-07T03:55:19.000Z" + }, + "events": [ + { + "uuid": "5042ca8d-25a7-47d1-80a3-485ff5d20208", + "start": { + "$date": "2020-11-07T03:50:12.000Z" + }, + "end": { + "$date": "2020-11-07T03:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d136ee51-2554-4753-82ce-b233c2a7d4f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-07T04:15:26.000Z" + }, + "end": { + "$date": "2020-11-07T06:20:15.000Z" + }, + "events": [ + { + "uuid": "5623322a-5d18-4d90-a6ed-367f65043069", + "start": { + "$date": "2020-11-07T04:15:26.000Z" + }, + "end": { + "$date": "2020-11-07T06:20:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ff365214-5535-4e6e-afa8-d11b935bf4ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-07T04:58:47.000Z" + }, + "end": { + "$date": "2020-11-07T05:13:34.000Z" + }, + "events": [ + { + "uuid": "7520e3c9-b186-4a00-b2e3-71bdf0bb767d", + "start": { + "$date": "2020-11-07T04:58:47.000Z" + }, + "end": { + "$date": "2020-11-07T05:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7120120a-af15-4dfb-b247-8342a3433585", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-07T05:14:44.000Z" + }, + "end": { + "$date": "2020-11-07T07:02:02.000Z" + }, + "events": [ + { + "uuid": "3c3ca01a-3186-413a-be4d-2d73f552e43f", + "start": { + "$date": "2020-11-07T05:14:44.000Z" + }, + "end": { + "$date": "2020-11-07T07:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cf907503-cd00-4d93-aa14-d9c815b5c5db", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-07T05:26:15.000Z" + }, + "end": { + "$date": "2020-11-07T07:06:56.000Z" + }, + "events": [ + { + "uuid": "7cd52fe9-4462-4b50-a5c1-77ae24533132", + "start": { + "$date": "2020-11-07T05:26:15.000Z" + }, + "end": { + "$date": "2020-11-07T07:06:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "50ea9a17-b9c6-48ee-81cf-9c5f12be9a7c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-07T06:20:39.000Z" + }, + "end": { + "$date": "2020-11-07T06:38:51.000Z" + }, + "events": [ + { + "uuid": "f18a580c-2e48-4058-b02f-2e8c8f36ea7c", + "start": { + "$date": "2020-11-07T06:20:39.000Z" + }, + "end": { + "$date": "2020-11-07T06:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "675bf356-af83-47f4-b411-bbbf7ba582ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-07T06:39:10.000Z" + }, + "end": { + "$date": "2020-11-07T07:01:51.000Z" + }, + "events": [ + { + "uuid": "2bb35062-8a51-4d93-95ae-512de7da8d85", + "start": { + "$date": "2020-11-07T06:39:10.000Z" + }, + "end": { + "$date": "2020-11-07T07:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "ca53f986-93f0-4633-a19d-6b182fc94431", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-07T08:41:44.000Z" + }, + "end": { + "$date": "2020-11-07T08:45:54.000Z" + }, + "events": [ + { + "uuid": "83069b1c-2aa5-4647-843e-15705838567a", + "start": { + "$date": "2020-11-07T08:41:44.000Z" + }, + "end": { + "$date": "2020-11-07T08:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "0b80acb5-63d9-450e-9889-f664f57963ed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-07T08:46:14.000Z" + }, + "end": { + "$date": "2020-11-07T08:51:14.000Z" + }, + "events": [ + { + "uuid": "9009dcbe-3949-4814-af90-718eca4e244a", + "start": { + "$date": "2020-11-07T08:46:14.000Z" + }, + "end": { + "$date": "2020-11-07T08:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5da11c2f-953e-4bc4-b894-82aa87c7ffc7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-07T08:51:54.000Z" + }, + "end": { + "$date": "2020-11-07T09:05:33.000Z" + }, + "events": [ + { + "uuid": "372a0326-3bbe-418c-84a8-9a1ea3213bff", + "start": { + "$date": "2020-11-07T08:51:54.000Z" + }, + "end": { + "$date": "2020-11-07T09:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "eb269819-d8e3-444c-81b7-1048012c4c63", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-07T09:31:01.000Z" + }, + "end": { + "$date": "2020-11-07T09:33:16.000Z" + }, + "events": [ + { + "uuid": "344982f8-4c56-49ba-9760-23a13fddda1b", + "start": { + "$date": "2020-11-07T09:31:01.000Z" + }, + "end": { + "$date": "2020-11-07T09:33:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "4f3de473-ccf4-4c66-be86-6018ba204d0f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-07T09:31:01.000Z" + }, + "end": { + "$date": "2020-11-07T09:33:06.000Z" + }, + "events": [ + { + "uuid": "e4b4fb56-d462-4c02-b77b-21f7839ce6d2", + "start": { + "$date": "2020-11-07T09:31:01.000Z" + }, + "end": { + "$date": "2020-11-07T09:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "6bdaacfb-fcb5-4277-a504-54505f8b73e4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T15:07:26.000Z" + }, + "end": { + "$date": "2020-11-07T16:59:02.000Z" + }, + "events": [ + { + "uuid": "d9dc2bcb-ab95-4cc7-a75f-9661d0a4b953", + "start": { + "$date": "2020-11-07T15:07:26.000Z" + }, + "end": { + "$date": "2020-11-07T16:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f06c766b-a874-4766-a49e-da17e58da3f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T15:22:52.000Z" + }, + "end": { + "$date": "2020-11-07T15:33:54.000Z" + }, + "events": [ + { + "uuid": "2e2834a0-9c6c-4293-99c8-4c6335193938", + "start": { + "$date": "2020-11-07T15:22:52.000Z" + }, + "end": { + "$date": "2020-11-07T15:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f2f0ba04-53ad-48dd-86eb-b5ddc427901b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T16:33:32.000Z" + }, + "end": { + "$date": "2020-11-07T16:37:57.000Z" + }, + "events": [ + { + "uuid": "f15a2f5f-b70c-4920-9759-9f9b1d5269f1", + "start": { + "$date": "2020-11-07T16:33:32.000Z" + }, + "end": { + "$date": "2020-11-07T16:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "9ebb19ce-b8d2-4d71-a579-3cddb572e594", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T16:38:52.000Z" + }, + "end": { + "$date": "2020-11-07T17:18:18.000Z" + }, + "events": [ + { + "uuid": "61b07ba9-68b8-4496-ab91-a536fd8873e2", + "start": { + "$date": "2020-11-07T16:38:52.000Z" + }, + "end": { + "$date": "2020-11-07T17:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "de161ec7-7d62-4d9a-9b09-fe91b4980521", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T17:06:04.000Z" + }, + "end": { + "$date": "2020-11-07T17:21:08.000Z" + }, + "events": [ + { + "uuid": "4a458aba-ad4b-4b78-9cae-07eeb3ddf1c2", + "start": { + "$date": "2020-11-07T17:06:04.000Z" + }, + "end": { + "$date": "2020-11-07T17:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f4c0b3b0-7d96-448f-aaa6-798f66aa668f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T17:24:38.000Z" + }, + "end": { + "$date": "2020-11-07T18:03:51.000Z" + }, + "events": [ + { + "uuid": "5dae56df-3b33-46a2-b66a-8ea01a46b281", + "start": { + "$date": "2020-11-07T17:24:38.000Z" + }, + "end": { + "$date": "2020-11-07T18:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "18947622-c833-4673-92ed-09731b5598f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T17:25:34.000Z" + }, + "end": { + "$date": "2020-11-07T17:27:49.000Z" + }, + "events": [ + { + "uuid": "8b48c6a1-46e6-41b7-8dc8-60f30719aa82", + "start": { + "$date": "2020-11-07T17:25:34.000Z" + }, + "end": { + "$date": "2020-11-07T17:27:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "739a5c29-7155-4888-b541-43130c3ff436", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T17:27:59.000Z" + }, + "end": { + "$date": "2020-11-07T18:03:25.000Z" + }, + "events": [ + { + "uuid": "aa4dbe29-81d8-48a9-b6c8-fee4d0641794", + "start": { + "$date": "2020-11-07T17:27:59.000Z" + }, + "end": { + "$date": "2020-11-07T18:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2be06229-ca73-4b8f-bd29-b3ef7b349715", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T18:36:39.000Z" + }, + "end": { + "$date": "2020-11-07T18:53:14.000Z" + }, + "events": [ + { + "uuid": "325137bb-722e-4d47-baf7-fc8636d45044", + "start": { + "$date": "2020-11-07T18:36:39.000Z" + }, + "end": { + "$date": "2020-11-07T18:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "4fc7fca0-7dfb-4fbc-a320-72f47fd98a26", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T19:09:30.000Z" + }, + "end": { + "$date": "2020-11-07T19:18:11.000Z" + }, + "events": [ + { + "uuid": "1fa83611-7a4d-4c81-9a40-a54714c1c976", + "start": { + "$date": "2020-11-07T19:09:30.000Z" + }, + "end": { + "$date": "2020-11-07T19:18:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "2f70ff45-1550-4b23-b860-28b0d26ee372", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-07T19:10:34.000Z" + }, + "end": { + "$date": "2020-11-07T19:20:26.000Z" + }, + "events": [ + { + "uuid": "443ccd3e-e943-4094-abb6-2286b56696bf", + "start": { + "$date": "2020-11-07T19:10:34.000Z" + }, + "end": { + "$date": "2020-11-07T19:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "d76c8ce3-c38e-4eaf-8361-ee2dd89405eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-07T19:34:30.000Z" + }, + "end": { + "$date": "2020-11-08T02:39:29.000Z" + }, + "events": [ + { + "uuid": "7478106c-43b1-42bd-b8b0-bbe91a9b9dfd", + "start": { + "$date": "2020-11-07T19:34:30.000Z" + }, + "end": { + "$date": "2020-11-08T02:39:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c9275b60-9401-4542-a886-e43a18d68b3a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-07T19:44:37.000Z" + }, + "end": { + "$date": "2020-11-07T20:26:36.000Z" + }, + "events": [ + { + "uuid": "191a5c84-272a-4b83-b79a-dd2e796275c4", + "start": { + "$date": "2020-11-07T19:44:37.000Z" + }, + "end": { + "$date": "2020-11-07T20:26:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c87d22ba-8c3f-47c6-8cd3-963f5de7e10e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T19:49:13.000Z" + }, + "end": { + "$date": "2020-11-07T19:50:53.000Z" + }, + "events": [ + { + "uuid": "4d2f2e90-2fbf-4995-9d9f-9a972093d6a0", + "start": { + "$date": "2020-11-07T19:49:13.000Z" + }, + "end": { + "$date": "2020-11-07T19:50:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e41bab35-2516-4548-8407-ecafaa954aa3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T20:13:05.000Z" + }, + "end": { + "$date": "2020-11-07T22:55:11.000Z" + }, + "events": [ + { + "uuid": "f3e9ffd5-2a76-465f-bfa9-4197587920ac", + "start": { + "$date": "2020-11-07T20:13:05.000Z" + }, + "end": { + "$date": "2020-11-07T22:55:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "31de04a1-9671-42b3-b817-c19ffa85d77b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-07T20:28:07.000Z" + }, + "end": { + "$date": "2020-11-07T21:15:33.000Z" + }, + "events": [ + { + "uuid": "cf3892a2-9f3b-45b3-8315-fcffbabc8c9c", + "start": { + "$date": "2020-11-07T20:28:07.000Z" + }, + "end": { + "$date": "2020-11-07T21:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "de1ec939-a35c-4f98-b49f-5867ebee3921", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-07T21:32:52.000Z" + }, + "end": { + "$date": "2020-11-08T02:12:18.000Z" + }, + "events": [ + { + "uuid": "08d7ec0b-4d50-4ea0-912f-fab7a86a1891", + "start": { + "$date": "2020-11-07T21:32:52.000Z" + }, + "end": { + "$date": "2020-11-07T23:01:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "420d5a8e-2253-43a1-86d4-96d678b7d8d1", + "start": { + "$date": "2020-11-07T23:01:52.000Z" + }, + "end": { + "$date": "2020-11-07T23:02:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53539312-efe9-4277-bdc8-bca053ab8f0b", + "start": { + "$date": "2020-11-07T23:02:52.000Z" + }, + "end": { + "$date": "2020-11-07T23:12:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "162b7d01-ac9e-4ee7-afbe-178c1aa1a2ca", + "start": { + "$date": "2020-11-07T23:12:52.000Z" + }, + "end": { + "$date": "2020-11-08T01:59:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "422b04e0-3dba-4615-8f7b-a12c1dd6a2ea", + "start": { + "$date": "2020-11-08T01:59:52.000Z" + }, + "end": { + "$date": "2020-11-08T02:03:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b08a7627-eeeb-46ce-bca3-4d6dcbed7260", + "start": { + "$date": "2020-11-08T02:03:52.000Z" + }, + "end": { + "$date": "2020-11-08T02:12:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "082854b4-6f9c-470a-88cb-8cb8da9e7cc8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-07T21:34:43.000Z" + }, + "end": { + "$date": "2020-11-07T23:29:58.000Z" + }, + "events": [ + { + "uuid": "2119ffd3-6ac0-478b-9c8b-1ac09e20525d", + "start": { + "$date": "2020-11-07T21:34:43.000Z" + }, + "end": { + "$date": "2020-11-07T23:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b8203ead-f1b8-41d5-831d-3f636d97f439", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-07T23:37:51.000Z" + }, + "end": { + "$date": "2020-11-07T23:38:06.000Z" + }, + "events": [ + { + "uuid": "f71a9f22-af8c-4521-b607-1c106e7f63d3", + "start": { + "$date": "2020-11-07T23:37:51.000Z" + }, + "end": { + "$date": "2020-11-07T23:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "533e9736-34a8-471a-81e6-3ea97d156e66", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-07T22:47:32.000Z" + }, + "end": { + "$date": "2020-11-08T00:33:29.000Z" + }, + "events": [ + { + "uuid": "3e7aab1b-8197-451d-bc66-3b8cbf59c589", + "start": { + "$date": "2020-11-07T22:47:32.000Z" + }, + "end": { + "$date": "2020-11-07T23:05:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "065c4b9e-d5c6-4480-bd8b-00ecc2a9fdbe", + "start": { + "$date": "2020-11-07T23:05:32.000Z" + }, + "end": { + "$date": "2020-11-08T00:33:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ee18464f-8cfe-47c9-8bc4-5851980df0ba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-07T23:08:03.000Z" + }, + "end": { + "$date": "2020-11-08T00:34:37.000Z" + }, + "events": [ + { + "uuid": "13f682a6-7760-4fa7-b0b0-6479ab7ded6c", + "start": { + "$date": "2020-11-07T23:08:03.000Z" + }, + "end": { + "$date": "2020-11-08T00:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "1ac343a7-9645-4534-a2ad-525176a9d738", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-07T23:16:23.000Z" + }, + "end": { + "$date": "2020-11-07T23:35:13.000Z" + }, + "events": [ + { + "uuid": "bf05ced1-8a38-4955-8314-6b0007cfb038", + "start": { + "$date": "2020-11-07T23:16:23.000Z" + }, + "end": { + "$date": "2020-11-07T23:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9daa1666-af3f-407e-94c1-810ff8add464", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-07T23:21:22.000Z" + }, + "end": { + "$date": "2020-11-08T00:24:40.000Z" + }, + "events": [ + { + "uuid": "ce815f1f-793c-446c-afb7-2b666812fafb", + "start": { + "$date": "2020-11-07T23:21:22.000Z" + }, + "end": { + "$date": "2020-11-08T00:24:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e7d69ffe-a884-458f-b51f-0413644deaaa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-07T23:38:21.000Z" + }, + "end": { + "$date": "2020-11-08T00:34:36.000Z" + }, + "events": [ + { + "uuid": "e3efd74e-8af5-4a56-b63a-dc18c13b5845", + "start": { + "$date": "2020-11-07T23:38:21.000Z" + }, + "end": { + "$date": "2020-11-08T00:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ea3408ac-29e1-4391-ae60-babc0809bc1b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-08T00:12:35.000Z" + }, + "end": { + "$date": "2020-11-08T01:29:47.000Z" + }, + "events": [ + { + "uuid": "9198da0f-e70a-4889-9b05-37a0727110c5", + "start": { + "$date": "2020-11-08T00:12:35.000Z" + }, + "end": { + "$date": "2020-11-08T01:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "1f1c9171-02b6-406e-b427-0364c117fa90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-08T00:26:27.000Z" + }, + "end": { + "$date": "2020-11-08T01:12:24.000Z" + }, + "events": [ + { + "uuid": "2146e289-5866-452f-8aa8-0d8e538a79a6", + "start": { + "$date": "2020-11-08T00:26:27.000Z" + }, + "end": { + "$date": "2020-11-08T01:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fc2428b7-294b-4964-8e06-12dc4de96f71", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T00:34:51.000Z" + }, + "end": { + "$date": "2020-11-08T01:58:49.000Z" + }, + "events": [ + { + "uuid": "9fdb938f-23fa-4d4a-8179-f9566e64c17d", + "start": { + "$date": "2020-11-08T00:34:51.000Z" + }, + "end": { + "$date": "2020-11-08T01:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "06e21d99-2438-4f53-8e93-a675b240681c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T00:35:35.000Z" + }, + "end": { + "$date": "2020-11-08T00:56:40.000Z" + }, + "events": [ + { + "uuid": "d8488004-6104-43e5-b493-e22de080f184", + "start": { + "$date": "2020-11-08T00:35:35.000Z" + }, + "end": { + "$date": "2020-11-08T00:56:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "addd2735-0e58-46f6-8d43-437560a10a82", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-08T00:42:12.000Z" + }, + "end": { + "$date": "2020-11-08T01:59:13.000Z" + }, + "events": [ + { + "uuid": "da1f62e4-850e-403a-bac4-0c921c323f5b", + "start": { + "$date": "2020-11-08T00:42:12.000Z" + }, + "end": { + "$date": "2020-11-08T01:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "31642394-8e01-42ec-bf6d-e8411079010b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T01:22:27.000Z" + }, + "end": { + "$date": "2020-11-08T01:25:33.000Z" + }, + "events": [ + { + "uuid": "c90e7cf0-5c4e-4bce-aae1-708394cb2265", + "start": { + "$date": "2020-11-08T01:22:27.000Z" + }, + "end": { + "$date": "2020-11-08T01:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3a9df56c-7e8c-49e9-8601-ebac53c30a1d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T01:25:43.000Z" + }, + "end": { + "$date": "2020-11-08T01:28:28.000Z" + }, + "events": [ + { + "uuid": "7b579e34-1085-4d78-bcb9-063abf4bf814", + "start": { + "$date": "2020-11-08T01:25:43.000Z" + }, + "end": { + "$date": "2020-11-08T01:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e9d8378f-1d90-44a5-94cf-a286fb4944b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T01:30:03.000Z" + }, + "end": { + "$date": "2020-11-08T01:53:48.000Z" + }, + "events": [ + { + "uuid": "0f300cd6-da8f-47c1-bbf1-3349c152fb8e", + "start": { + "$date": "2020-11-08T01:30:03.000Z" + }, + "end": { + "$date": "2020-11-08T01:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5ce00376-6720-4730-b876-9f206442f50c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-08T01:34:28.000Z" + }, + "end": { + "$date": "2020-11-08T02:27:19.000Z" + }, + "events": [ + { + "uuid": "a8c32129-a4e4-44ea-aae2-a8374152a3fb", + "start": { + "$date": "2020-11-08T01:34:28.000Z" + }, + "end": { + "$date": "2020-11-08T02:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d1d7365e-7650-46b2-842c-c0689dc9abac", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-08T01:44:39.000Z" + }, + "end": { + "$date": "2020-11-08T02:01:06.000Z" + }, + "events": [ + { + "uuid": "8618a7c0-d328-47f8-946a-a1c2bb83174c", + "start": { + "$date": "2020-11-08T01:44:39.000Z" + }, + "end": { + "$date": "2020-11-08T02:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b110ab2a-ec03-47ef-ac53-77f5a5ee780a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-08T02:13:09.000Z" + }, + "end": { + "$date": "2020-11-08T05:08:25.000Z" + }, + "events": [ + { + "uuid": "6c55bad9-b9f1-4460-89a7-30bb8f926d95", + "start": { + "$date": "2020-11-08T02:13:09.000Z" + }, + "end": { + "$date": "2020-11-08T05:08:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c67407b3-3acd-4c36-abc5-fad287fb934a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T02:28:16.000Z" + }, + "end": { + "$date": "2020-11-08T02:53:22.000Z" + }, + "events": [ + { + "uuid": "29af8858-b893-4f69-a4df-ef5354d74668", + "start": { + "$date": "2020-11-08T02:28:16.000Z" + }, + "end": { + "$date": "2020-11-08T02:53:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d2620f71-c969-4cd0-9627-451c951a3903", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-08T02:30:05.000Z" + }, + "end": { + "$date": "2020-11-08T05:08:37.000Z" + }, + "events": [ + { + "uuid": "b7dd937b-b79d-408b-a8ba-dc60b72b039a", + "start": { + "$date": "2020-11-08T02:30:05.000Z" + }, + "end": { + "$date": "2020-11-08T05:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5e7fecf3-e135-444a-8682-282bcfd88ca8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-08T03:01:46.000Z" + }, + "end": { + "$date": "2020-11-08T04:02:00.000Z" + }, + "events": [ + { + "uuid": "00d6b2b5-9f18-4312-bcf4-65d3ceb64d80", + "start": { + "$date": "2020-11-08T03:01:46.000Z" + }, + "end": { + "$date": "2020-11-08T04:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56bc94b5-770a-4a90-b442-83df2d075f5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T03:59:17.000Z" + }, + "end": { + "$date": "2020-11-08T03:59:24.000Z" + }, + "events": [ + { + "uuid": "7eab75b6-e8aa-4a9c-88bf-356efd7eb166", + "start": { + "$date": "2020-11-08T03:59:17.000Z" + }, + "end": { + "$date": "2020-11-08T03:59:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f2a5a609-e484-4819-89d1-6531b133b176", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-08T03:51:40.000Z" + }, + "end": { + "$date": "2020-11-08T08:22:28.000Z" + }, + "events": [ + { + "uuid": "8b767e67-006f-4805-920f-d0a5eb95a883", + "start": { + "$date": "2020-11-08T03:51:40.000Z" + }, + "end": { + "$date": "2020-11-08T07:14:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3833725d-95bd-4542-96fc-f9602f1d10e0", + "start": { + "$date": "2020-11-08T07:14:40.000Z" + }, + "end": { + "$date": "2020-11-08T07:18:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c7715d68-f493-424d-8ada-294c4690a198", + "start": { + "$date": "2020-11-08T07:18:40.000Z" + }, + "end": { + "$date": "2020-11-08T08:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "30d48110-a070-4cc7-bfda-44fc6d2a592a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T04:00:22.000Z" + }, + "end": { + "$date": "2020-11-08T04:26:05.000Z" + }, + "events": [ + { + "uuid": "6f913f87-f6fd-4f25-bc7f-f0d85d225100", + "start": { + "$date": "2020-11-08T04:00:22.000Z" + }, + "end": { + "$date": "2020-11-08T04:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "477079d5-690e-4f36-bec9-2812d37b1e25", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-08T04:00:41.000Z" + }, + "end": { + "$date": "2020-11-08T04:42:26.000Z" + }, + "events": [ + { + "uuid": "a1502fcf-315b-43dc-b901-59286ffca7d2", + "start": { + "$date": "2020-11-08T04:00:41.000Z" + }, + "end": { + "$date": "2020-11-08T04:42:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "42fa0dd0-863f-4b3c-8c5a-19c251336c9b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T04:26:58.000Z" + }, + "end": { + "$date": "2020-11-08T05:08:35.000Z" + }, + "events": [ + { + "uuid": "b2d6aa16-529d-429a-8cc2-271323d41192", + "start": { + "$date": "2020-11-08T04:26:58.000Z" + }, + "end": { + "$date": "2020-11-08T05:08:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2a9dc858-c5a5-4bf8-8cf7-09569d15fb72", + "uuid": "8d74f0ca-2bcc-46f5-aeb8-d5085c1beff5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-08T04:13:12.000Z" + }, + "end": { + "$date": "2020-11-08T04:20:32.000Z" + }, + "events": [ + { + "uuid": "de825166-7d8c-4cec-9ad9-3a64232c0fdb", + "start": { + "$date": "2020-11-08T04:13:12.000Z" + }, + "end": { + "$date": "2020-11-08T04:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b873b3e-b833-401d-9e4d-08a9bc4b534e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T04:31:40.000Z" + }, + "end": { + "$date": "2020-11-08T04:51:26.000Z" + }, + "events": [ + { + "uuid": "b6fe504d-01f0-46a5-ac7d-b8d5388e3717", + "start": { + "$date": "2020-11-08T04:31:40.000Z" + }, + "end": { + "$date": "2020-11-08T04:51:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "529f7aa5-55ca-45fb-86dd-ea03fb9b1a1d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T04:55:16.000Z" + }, + "end": { + "$date": "2020-11-08T05:16:52.000Z" + }, + "events": [ + { + "uuid": "124c5be0-5faa-4668-81ec-bd98952fd364", + "start": { + "$date": "2020-11-08T04:55:16.000Z" + }, + "end": { + "$date": "2020-11-08T05:16:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "620ec2da-b726-482a-bfeb-8750aed72736", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2020-11-08T04:58:27.000Z" + }, + "end": { + "$date": "2020-11-08T05:00:16.000Z" + }, + "events": [ + { + "uuid": "94952128-3f1c-48a1-a0b3-0f1c0a3a4d46", + "start": { + "$date": "2020-11-08T04:58:27.000Z" + }, + "end": { + "$date": "2020-11-08T05:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "d0781870-57ad-4ad8-b438-d2c02803db5b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2020-11-08T05:01:47.000Z" + }, + "end": { + "$date": "2020-11-08T05:05:56.000Z" + }, + "events": [ + { + "uuid": "4275c9f6-ee63-4414-bde8-3938414e86de", + "start": { + "$date": "2020-11-08T05:01:47.000Z" + }, + "end": { + "$date": "2020-11-08T05:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b9a6519a-e2e0-4199-bc1e-667e7f4e6b7a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T05:11:40.000Z" + }, + "end": { + "$date": "2020-11-08T07:08:55.000Z" + }, + "events": [ + { + "uuid": "5d8d49c9-c9c6-4b0e-92b9-02c1bbb6ef1c", + "start": { + "$date": "2020-11-08T05:11:40.000Z" + }, + "end": { + "$date": "2020-11-08T07:08:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d53c3b14-19bc-4e61-b432-158696be36b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-08T05:12:12.000Z" + }, + "end": { + "$date": "2020-11-08T07:08:29.000Z" + }, + "events": [ + { + "uuid": "228f4c1a-9c81-4625-9739-765ec4582283", + "start": { + "$date": "2020-11-08T05:12:12.000Z" + }, + "end": { + "$date": "2020-11-08T07:08:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c2c09fbd-8b05-4cc3-88ed-6a269a6c8b89", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-08T05:13:59.000Z" + }, + "end": { + "$date": "2020-11-08T05:24:15.000Z" + }, + "events": [ + { + "uuid": "c183834f-8b78-43a2-8ca4-0847d522c1dc", + "start": { + "$date": "2020-11-08T05:13:59.000Z" + }, + "end": { + "$date": "2020-11-08T05:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "80e6f9c1-ca02-4d7f-9703-6cf0cd6d4614", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T05:17:22.000Z" + }, + "end": { + "$date": "2020-11-08T07:08:35.000Z" + }, + "events": [ + { + "uuid": "6b5788c9-069c-4286-9730-6e429146098f", + "start": { + "$date": "2020-11-08T05:17:22.000Z" + }, + "end": { + "$date": "2020-11-08T07:08:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "b594e848-2d5a-4298-a408-5c89d6a21f3a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2020-11-08T05:31:05.000Z" + }, + "end": { + "$date": "2020-11-08T06:33:16.000Z" + }, + "events": [ + { + "uuid": "05c758de-9ce2-4846-b534-2456079b83f5", + "start": { + "$date": "2020-11-08T05:31:05.000Z" + }, + "end": { + "$date": "2020-11-08T06:33:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "fccfe61f-93ae-4386-ac56-e13eb071239e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-08T05:49:45.000Z" + }, + "end": { + "$date": "2020-11-08T08:18:09.000Z" + }, + "events": [ + { + "uuid": "87151df0-0050-4e5a-a412-6196bcbfffae", + "start": { + "$date": "2020-11-08T05:49:45.000Z" + }, + "end": { + "$date": "2020-11-08T08:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7c463560-5d51-4e15-bb2d-7f99175f6965", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-08T06:09:32.000Z" + }, + "end": { + "$date": "2020-11-08T06:27:43.000Z" + }, + "events": [ + { + "uuid": "23e992e3-a1b5-49d7-acc1-061c59f0c677", + "start": { + "$date": "2020-11-08T06:09:32.000Z" + }, + "end": { + "$date": "2020-11-08T06:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a078eb4a-8d78-4685-adfd-b7b986ebe6a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T07:14:26.000Z" + }, + "end": { + "$date": "2020-11-08T08:59:12.000Z" + }, + "events": [ + { + "uuid": "b69444d3-f782-4b5c-b668-96c662941d47", + "start": { + "$date": "2020-11-08T07:14:26.000Z" + }, + "end": { + "$date": "2020-11-08T08:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5f1293ee-fa47-4283-b960-ed7596fa04fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-08T07:17:10.000Z" + }, + "end": { + "$date": "2020-11-08T09:07:55.000Z" + }, + "events": [ + { + "uuid": "681c1675-29db-49a8-b8ad-8ddff8f3c660", + "start": { + "$date": "2020-11-08T07:17:10.000Z" + }, + "end": { + "$date": "2020-11-08T09:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "873be68d-cf2b-448d-93ee-f2a6aa318ea8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-08T07:21:01.000Z" + }, + "end": { + "$date": "2020-11-08T09:07:58.000Z" + }, + "events": [ + { + "uuid": "dc2ab9c2-7934-49c8-b76b-411d596cc1c1", + "start": { + "$date": "2020-11-08T07:21:01.000Z" + }, + "end": { + "$date": "2020-11-08T09:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd3a1c05-5d47-4c7f-8ec9-20e6e27fdd16", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T07:24:22.000Z" + }, + "end": { + "$date": "2020-11-08T08:58:29.000Z" + }, + "events": [ + { + "uuid": "20e23fd3-215c-4646-8818-7ac8de12685f", + "start": { + "$date": "2020-11-08T07:24:22.000Z" + }, + "end": { + "$date": "2020-11-08T08:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8569d736-fc50-4195-bd11-e78387a90e45", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-08T15:38:10.000Z" + }, + "end": { + "$date": "2020-11-08T18:46:27.000Z" + }, + "events": [ + { + "uuid": "e2f8d368-0a2f-453c-9556-f49b3a9bd4ef", + "start": { + "$date": "2020-11-08T15:38:10.000Z" + }, + "end": { + "$date": "2020-11-08T18:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0402eea5-1778-4a83-b49c-3349ff491f08", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-08T17:20:53.000Z" + }, + "end": { + "$date": "2020-11-08T17:54:17.000Z" + }, + "events": [ + { + "uuid": "3fb3eb01-e907-4925-9b9b-bb48174ce04d", + "start": { + "$date": "2020-11-08T17:20:53.000Z" + }, + "end": { + "$date": "2020-11-08T17:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "86da675d-0af0-456d-9f64-9b8b917e58f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T17:48:48.000Z" + }, + "end": { + "$date": "2020-11-08T18:45:40.000Z" + }, + "events": [ + { + "uuid": "d9ed68ed-29eb-442e-ae97-49cf55995b72", + "start": { + "$date": "2020-11-08T17:48:48.000Z" + }, + "end": { + "$date": "2020-11-08T18:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "0ee3bfc5-975d-4fb2-88fe-fc2b0745f010", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-08T18:13:07.000Z" + }, + "end": { + "$date": "2020-11-08T18:22:53.000Z" + }, + "events": [ + { + "uuid": "39d36b7f-db52-4cf5-aae8-af968604b1a6", + "start": { + "$date": "2020-11-08T18:13:07.000Z" + }, + "end": { + "$date": "2020-11-08T18:22:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "bca11978-1e97-4903-bd29-9a66aeaf6103", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-08T19:23:50.000Z" + }, + "end": { + "$date": "2020-11-08T21:31:56.000Z" + }, + "events": [ + { + "uuid": "58fedb02-b4a0-4f65-b227-74a965eddd25", + "start": { + "$date": "2020-11-08T19:23:50.000Z" + }, + "end": { + "$date": "2020-11-08T21:31:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e7e030f8-8801-4f4e-ab0d-a3a84257d485", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T20:03:27.000Z" + }, + "end": { + "$date": "2020-11-08T20:08:08.000Z" + }, + "events": [ + { + "uuid": "6484691a-0e6f-4248-af6a-4a84426e37ca", + "start": { + "$date": "2020-11-08T20:03:27.000Z" + }, + "end": { + "$date": "2020-11-08T20:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "70505d84-1407-45c4-b7ba-938f4ec0dbc3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-08T20:05:30.000Z" + }, + "end": { + "$date": "2020-11-08T20:49:12.000Z" + }, + "events": [ + { + "uuid": "b5d89041-b20b-43f9-9298-6fec515ba400", + "start": { + "$date": "2020-11-08T20:05:30.000Z" + }, + "end": { + "$date": "2020-11-08T20:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0dd8906d-7d10-480f-9598-fdf3db13e412", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T20:05:56.000Z" + }, + "end": { + "$date": "2020-11-08T21:39:50.000Z" + }, + "events": [ + { + "uuid": "201d4922-5b6c-4b40-9e28-461348321c23", + "start": { + "$date": "2020-11-08T20:05:56.000Z" + }, + "end": { + "$date": "2020-11-08T21:06:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0970590a-bc5e-47d9-a3f2-d6234e9192f7", + "start": { + "$date": "2020-11-08T21:06:56.000Z" + }, + "end": { + "$date": "2020-11-08T21:17:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d0a15c8-70d7-4c20-ad28-8f56fcfd2b69", + "start": { + "$date": "2020-11-08T21:17:56.000Z" + }, + "end": { + "$date": "2020-11-08T21:20:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba10f5db-f1b9-4bf9-a00c-1e589074d267", + "start": { + "$date": "2020-11-08T21:20:56.000Z" + }, + "end": { + "$date": "2020-11-08T21:37:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be6ab772-fdbc-4bcb-a282-71f63cb838ef", + "start": { + "$date": "2020-11-08T21:37:56.000Z" + }, + "end": { + "$date": "2020-11-08T21:39:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "bd4a9844-8ef7-4e09-864f-160d03114f5f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-08T20:06:18.000Z" + }, + "end": { + "$date": "2020-11-08T20:49:36.000Z" + }, + "events": [ + { + "uuid": "b97001cb-a742-4245-8150-9125eb524411", + "start": { + "$date": "2020-11-08T20:06:18.000Z" + }, + "end": { + "$date": "2020-11-08T20:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ca216e0-3b00-4322-9cc7-42398cc73f13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-08T20:08:18.000Z" + }, + "end": { + "$date": "2020-11-08T20:31:33.000Z" + }, + "events": [ + { + "uuid": "5839b644-ba02-4abc-81c6-a8a8abcd8748", + "start": { + "$date": "2020-11-08T20:08:18.000Z" + }, + "end": { + "$date": "2020-11-08T20:31:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a1d9e902-7f00-411d-a04f-2c9a2377fa53", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-08T20:47:10.000Z" + }, + "end": { + "$date": "2020-11-08T23:08:51.000Z" + }, + "events": [ + { + "uuid": "0e434f8e-640b-48d8-835e-b2a70f99f289", + "start": { + "$date": "2020-11-08T20:47:10.000Z" + }, + "end": { + "$date": "2020-11-08T23:08:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "8d8f4b6f-1897-4173-9915-904a7b0509f8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-08T21:06:53.000Z" + }, + "end": { + "$date": "2020-11-08T22:02:56.000Z" + }, + "events": [ + { + "uuid": "5193ad4f-a951-4245-aa6c-ab10f717c1fd", + "start": { + "$date": "2020-11-08T21:06:53.000Z" + }, + "end": { + "$date": "2020-11-08T22:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c3fc2dfd-4cc8-45b8-acea-41e145697ec6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T22:02:46.000Z" + }, + "end": { + "$date": "2020-11-08T22:36:15.000Z" + }, + "events": [ + { + "uuid": "00dc0ca4-b51c-4daa-a1e9-99e4282d0079", + "start": { + "$date": "2020-11-08T22:02:46.000Z" + }, + "end": { + "$date": "2020-11-08T22:36:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4d834a17-3f1c-444a-99f7-64983c7a24a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T22:03:23.000Z" + }, + "end": { + "$date": "2020-11-08T22:36:16.000Z" + }, + "events": [ + { + "uuid": "9dc9c885-a5a6-4d14-b7be-908445ac58f6", + "start": { + "$date": "2020-11-08T22:03:23.000Z" + }, + "end": { + "$date": "2020-11-08T22:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c589c300-4490-4b9c-995f-7656dd5e98fa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-08T22:03:25.000Z" + }, + "end": { + "$date": "2020-11-08T22:36:57.000Z" + }, + "events": [ + { + "uuid": "23673959-701e-4a85-9399-0bb84fe1a3c2", + "start": { + "$date": "2020-11-08T22:03:25.000Z" + }, + "end": { + "$date": "2020-11-08T22:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f378aa5f-c206-4f90-976c-17f7da1b7ff4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-08T22:30:45.000Z" + }, + "end": { + "$date": "2020-11-08T23:24:14.000Z" + }, + "events": [ + { + "uuid": "8d421e75-a688-4e89-ad41-3ec9614d7f96", + "start": { + "$date": "2020-11-08T22:30:45.000Z" + }, + "end": { + "$date": "2020-11-08T23:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3d47689f-baf1-42d2-9ff0-47491fd789aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-08T22:36:58.000Z" + }, + "end": { + "$date": "2020-11-08T23:23:47.000Z" + }, + "events": [ + { + "uuid": "3dbfd6eb-07af-4a59-9aab-f075a86488bf", + "start": { + "$date": "2020-11-08T22:36:58.000Z" + }, + "end": { + "$date": "2020-11-08T23:23:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "da7a34b3-2b42-47cc-9a20-31bda8a56cbe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-08T22:36:51.000Z" + }, + "end": { + "$date": "2020-11-08T23:24:07.000Z" + }, + "events": [ + { + "uuid": "f5ffb0c4-1810-4318-a6cd-44f0a5869952", + "start": { + "$date": "2020-11-08T22:36:51.000Z" + }, + "end": { + "$date": "2020-11-08T23:24:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "745425a7-ce0a-45f9-82fc-42655e21c9fb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-08T22:40:32.000Z" + }, + "end": { + "$date": "2020-11-08T23:24:11.000Z" + }, + "events": [ + { + "uuid": "6af91b86-c13d-4f50-a74e-cdbf3023164c", + "start": { + "$date": "2020-11-08T22:40:32.000Z" + }, + "end": { + "$date": "2020-11-08T23:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "8a57d8e4-e752-408c-b310-4108e1e855a9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-08T23:25:29.000Z" + }, + "end": { + "$date": "2020-11-09T02:11:06.000Z" + }, + "events": [ + { + "uuid": "95e1a377-1f9d-467f-894e-1f5b9bdf2bdf", + "start": { + "$date": "2020-11-08T23:25:29.000Z" + }, + "end": { + "$date": "2020-11-09T02:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "96d31f83-e61e-4e11-9265-3af9e67fee8d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-08T23:31:13.000Z" + }, + "end": { + "$date": "2020-11-09T00:22:18.000Z" + }, + "events": [ + { + "uuid": "d44dd805-c410-4c37-9a10-9f39e5475ba9", + "start": { + "$date": "2020-11-08T23:31:13.000Z" + }, + "end": { + "$date": "2020-11-09T00:22:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3903c30b-e902-4130-85a5-197cbf088b07", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-08T23:58:07.000Z" + }, + "end": { + "$date": "2020-11-09T06:11:25.000Z" + }, + "events": [ + { + "uuid": "6e92c868-342d-4ee8-a1da-5e8980ca3eff", + "start": { + "$date": "2020-11-08T23:58:07.000Z" + }, + "end": { + "$date": "2020-11-09T00:46:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "362a8438-77da-4bc0-9f00-d06093308d65", + "start": { + "$date": "2020-11-09T00:46:07.000Z" + }, + "end": { + "$date": "2020-11-09T00:52:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6af19871-fdb5-4703-8165-f032d588ac96", + "start": { + "$date": "2020-11-09T00:52:07.000Z" + }, + "end": { + "$date": "2020-11-09T01:02:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f7804e5-a22a-4918-a29f-33c3ecbc4302", + "start": { + "$date": "2020-11-09T01:02:07.000Z" + }, + "end": { + "$date": "2020-11-09T01:05:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d07bdcf-212c-4868-bf8d-6977ca9b18ac", + "start": { + "$date": "2020-11-09T01:05:07.000Z" + }, + "end": { + "$date": "2020-11-09T03:31:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d73f48c-4485-404c-ac69-e3d0ffb8e211", + "start": { + "$date": "2020-11-09T03:31:07.000Z" + }, + "end": { + "$date": "2020-11-09T03:36:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3ecd1bca-b948-42d7-8ef3-b3a278300933", + "start": { + "$date": "2020-11-09T03:36:07.000Z" + }, + "end": { + "$date": "2020-11-09T06:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c2ffed19-202e-43de-8bc5-1110b4de80ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-09T00:14:25.000Z" + }, + "end": { + "$date": "2020-11-09T00:32:31.000Z" + }, + "events": [ + { + "uuid": "c72f56b5-91fa-4178-a383-e77dd22dcdfd", + "start": { + "$date": "2020-11-09T00:14:25.000Z" + }, + "end": { + "$date": "2020-11-09T00:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9135e24a-3020-4ac9-9e5e-067c7a536df7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-09T00:29:48.000Z" + }, + "end": { + "$date": "2020-11-09T02:05:14.000Z" + }, + "events": [ + { + "uuid": "1b368eca-33c0-40ac-b872-014471446a25", + "start": { + "$date": "2020-11-09T00:29:48.000Z" + }, + "end": { + "$date": "2020-11-09T02:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4967b6a7-0520-429a-954d-aa2dd1e5305b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-09T00:32:46.000Z" + }, + "end": { + "$date": "2020-11-09T02:43:55.000Z" + }, + "events": [ + { + "uuid": "09fee750-fa6e-4b07-99c8-2a35071735c9", + "start": { + "$date": "2020-11-09T00:32:46.000Z" + }, + "end": { + "$date": "2020-11-09T02:43:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "694d8474-02d8-4538-b394-cf596fc20253", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-09T01:01:02.000Z" + }, + "end": { + "$date": "2020-11-09T01:21:22.000Z" + }, + "events": [ + { + "uuid": "768d549e-cf74-4a7d-94df-141c9026066e", + "start": { + "$date": "2020-11-09T01:01:02.000Z" + }, + "end": { + "$date": "2020-11-09T01:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "b25a681b-e51b-42b9-b2c2-90856b9d2fd9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-09T02:59:24.000Z" + }, + "end": { + "$date": "2020-11-09T05:30:03.000Z" + }, + "events": [ + { + "uuid": "d076e506-f97f-4075-ab24-93d6a8f83bd0", + "start": { + "$date": "2020-11-09T02:59:24.000Z" + }, + "end": { + "$date": "2020-11-09T05:30:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3cfa2579-c91f-46e1-ba3c-afde593c7507", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-09T03:07:39.000Z" + }, + "end": { + "$date": "2020-11-09T04:50:58.000Z" + }, + "events": [ + { + "uuid": "db8e242b-108e-4611-9295-76807ec158e5", + "start": { + "$date": "2020-11-09T03:07:39.000Z" + }, + "end": { + "$date": "2020-11-09T04:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e5608dbb-4425-441e-b994-50307544f0c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-09T03:31:26.000Z" + }, + "end": { + "$date": "2020-11-09T04:09:07.000Z" + }, + "events": [ + { + "uuid": "5f239d58-02a8-48f6-a7e6-ae5361796832", + "start": { + "$date": "2020-11-09T03:31:26.000Z" + }, + "end": { + "$date": "2020-11-09T04:09:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "7ef934bd-1775-4498-8138-96a609c450ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-09T04:02:15.000Z" + }, + "end": { + "$date": "2020-11-09T07:11:50.000Z" + }, + "events": [ + { + "uuid": "27f86dbe-1eec-41e1-a0e0-048e190a6c9b", + "start": { + "$date": "2020-11-09T04:02:15.000Z" + }, + "end": { + "$date": "2020-11-09T07:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8575a5e3-541e-438f-9817-279cb3947506", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-09T04:04:02.000Z" + }, + "end": { + "$date": "2020-11-09T04:30:37.000Z" + }, + "events": [ + { + "uuid": "c46ca802-c18b-4c64-99e6-a36678726317", + "start": { + "$date": "2020-11-09T04:04:02.000Z" + }, + "end": { + "$date": "2020-11-09T04:30:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "b5088bdb-c93c-4e1c-971f-9bd7d098442c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-09T04:51:13.000Z" + }, + "end": { + "$date": "2020-11-09T07:27:07.000Z" + }, + "events": [ + { + "uuid": "1eb5b369-2e73-4a64-8013-593fab35d49c", + "start": { + "$date": "2020-11-09T04:51:13.000Z" + }, + "end": { + "$date": "2020-11-09T07:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "49a85dc6-2b45-4495-9cf9-d5fe8dedf6a5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-09T04:53:10.000Z" + }, + "end": { + "$date": "2020-11-09T07:28:57.000Z" + }, + "events": [ + { + "uuid": "9334696a-5428-4196-b784-f1cae3be9c12", + "start": { + "$date": "2020-11-09T04:53:10.000Z" + }, + "end": { + "$date": "2020-11-09T07:28:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "cc08cbba-8019-4205-a82a-926695a79ed2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-09T04:56:24.000Z" + }, + "end": { + "$date": "2020-11-09T07:28:54.000Z" + }, + "events": [ + { + "uuid": "41bdd744-07c2-4ea3-b30e-3925f226374f", + "start": { + "$date": "2020-11-09T04:56:24.000Z" + }, + "end": { + "$date": "2020-11-09T07:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "442e0982-b67b-40ec-93e3-bce3c5bc9b9c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-09T07:02:03.000Z" + }, + "end": { + "$date": "2020-11-09T07:16:14.000Z" + }, + "events": [ + { + "uuid": "c421d453-9a33-4189-84ba-c1dc0d464888", + "start": { + "$date": "2020-11-09T07:02:03.000Z" + }, + "end": { + "$date": "2020-11-09T07:16:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "24261af9-204d-44d1-834b-21f2e1660a10", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T17:53:01.000Z" + }, + "events": [ + { + "uuid": "79b58101-06bc-4eb5-89c3-1bbbe52106e1", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T17:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "41f1e11d-8d5c-470a-8054-c43043c2c6ed", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T17:55:48.000Z" + }, + "events": [ + { + "uuid": "03e8bc1b-4785-4463-85a0-fc8b9310dd2f", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T17:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "9c9a46de-52ea-4187-8eca-9544f1e113c6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T17:57:59.000Z" + }, + "events": [ + { + "uuid": "d0e34c1c-db89-4c0d-b42c-64abeec42e40", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T17:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "e7433374-95f8-44f0-8da3-4702e063afea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T18:02:43.000Z" + }, + "events": [ + { + "uuid": "717e7c5b-8553-43dc-812d-1e0147654ba8", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T18:02:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "d2c1f6f5-1181-49aa-994e-547d0054e24c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-09T18:02:05.000Z" + }, + "end": { + "$date": "2020-11-09T18:36:26.000Z" + }, + "events": [ + { + "uuid": "cdcaf53a-2a3e-48b7-9efe-680662b14b3a", + "start": { + "$date": "2020-11-09T18:02:05.000Z" + }, + "end": { + "$date": "2020-11-09T18:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "06210ea8-59f9-4aa2-ab6a-8c3313182c89", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T18:13:08.000Z" + }, + "events": [ + { + "uuid": "24f373d3-d7bf-452d-bcab-0ac85510bd33", + "start": { + "$date": "2020-11-09T16:12:17.000Z" + }, + "end": { + "$date": "2020-11-09T18:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1f1aff4b-a0be-4393-a591-a142caecf7c4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-09T19:19:33.000Z" + }, + "end": { + "$date": "2020-11-09T20:08:24.000Z" + }, + "events": [ + { + "uuid": "4b79a10f-604c-40cd-9c7e-852ae301ee5c", + "start": { + "$date": "2020-11-09T19:19:33.000Z" + }, + "end": { + "$date": "2020-11-09T20:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "979d49b0-935a-4e66-a857-fe7f1f439e43", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-09T20:41:29.000Z" + }, + "end": { + "$date": "2020-11-09T20:46:12.000Z" + }, + "events": [ + { + "uuid": "5eabbe69-9d49-45cc-aa66-2670aaa68538", + "start": { + "$date": "2020-11-09T20:41:29.000Z" + }, + "end": { + "$date": "2020-11-09T20:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ece52112-4316-4113-ae1a-3868f4917711", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-09T22:09:46.000Z" + }, + "end": { + "$date": "2020-11-09T23:36:08.000Z" + }, + "events": [ + { + "uuid": "1857f48c-e566-46f9-8356-c19af08279d2", + "start": { + "$date": "2020-11-09T22:09:46.000Z" + }, + "end": { + "$date": "2020-11-09T23:36:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c9b4c1d8-74cd-4c29-a0b3-363482f3105d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-09T23:39:22.000Z" + }, + "end": { + "$date": "2020-11-09T23:50:34.000Z" + }, + "events": [ + { + "uuid": "c2754606-8ac7-4156-bc4f-3b6a059dcfd1", + "start": { + "$date": "2020-11-09T23:39:22.000Z" + }, + "end": { + "$date": "2020-11-09T23:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "18d4693f-cd85-4d8f-9aeb-f47e4c59ab65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-09T23:50:43.000Z" + }, + "end": { + "$date": "2020-11-10T00:31:39.000Z" + }, + "events": [ + { + "uuid": "8a8cd8b1-c981-499f-b239-23ecc0c6a30c", + "start": { + "$date": "2020-11-09T23:50:43.000Z" + }, + "end": { + "$date": "2020-11-10T00:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "21cce177-b142-49df-aa9a-525a4d7fb12b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-09T23:54:06.000Z" + }, + "end": { + "$date": "2020-11-10T00:28:35.000Z" + }, + "events": [ + { + "uuid": "1523256d-1dab-4c57-a73d-93b703f507f0", + "start": { + "$date": "2020-11-09T23:54:06.000Z" + }, + "end": { + "$date": "2020-11-10T00:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cbcf6fa-11c6-4af4-a0f7-f9d3d3036c46", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-10T00:06:03.000Z" + }, + "end": { + "$date": "2020-11-10T00:33:06.000Z" + }, + "events": [ + { + "uuid": "ae53ce9b-6deb-4861-8b13-6b16206ce79c", + "start": { + "$date": "2020-11-10T00:06:03.000Z" + }, + "end": { + "$date": "2020-11-10T00:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "9fab0a5b-3283-4e52-a0c2-938d45053cc5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-10T00:34:06.000Z" + }, + "end": { + "$date": "2020-11-10T02:01:09.000Z" + }, + "events": [ + { + "uuid": "57ba3b76-e383-4251-8651-b874b1363d16", + "start": { + "$date": "2020-11-10T00:34:06.000Z" + }, + "end": { + "$date": "2020-11-10T02:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "70bb1c9a-4dbe-40a4-848d-6bf4598af9aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-10T00:46:00.000Z" + }, + "end": { + "$date": "2020-11-10T01:08:06.000Z" + }, + "events": [ + { + "uuid": "4b9e2816-b877-4956-9f3a-094228a507a4", + "start": { + "$date": "2020-11-10T00:46:00.000Z" + }, + "end": { + "$date": "2020-11-10T01:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6f3629ea-4195-4aef-b6da-b5c47ec98466", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-10T01:24:27.000Z" + }, + "end": { + "$date": "2020-11-10T06:14:00.000Z" + }, + "events": [ + { + "uuid": "2800cca2-0aba-4575-93bc-93367db4fafe", + "start": { + "$date": "2020-11-10T01:24:27.000Z" + }, + "end": { + "$date": "2020-11-10T01:44:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5941ad1d-da49-4ad1-9ed2-fd4a4ee391ef", + "start": { + "$date": "2020-11-10T01:44:27.000Z" + }, + "end": { + "$date": "2020-11-10T01:50:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea0dcb5a-e91e-46b8-962f-d1db7eedac15", + "start": { + "$date": "2020-11-10T01:50:27.000Z" + }, + "end": { + "$date": "2020-11-10T06:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff21efd2-cc10-4331-afa2-9f6836763871", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-10T01:42:12.000Z" + }, + "end": { + "$date": "2020-11-10T01:57:18.000Z" + }, + "events": [ + { + "uuid": "9d9517d2-1126-4eec-a626-126ce06a2538", + "start": { + "$date": "2020-11-10T01:42:12.000Z" + }, + "end": { + "$date": "2020-11-10T01:57:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9903f26a-9a94-4c8e-afe4-0160e4023323", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T02:07:10.000Z" + }, + "end": { + "$date": "2020-11-10T15:53:14.000Z" + }, + "events": [ + { + "uuid": "a8463231-06c6-4ac5-8e8b-07f3e6424736", + "start": { + "$date": "2020-11-10T02:07:10.000Z" + }, + "end": { + "$date": "2020-11-10T08:22:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c271caf6-343c-49ad-a3e3-73cc5fe83905", + "start": { + "$date": "2020-11-10T08:22:10.000Z" + }, + "end": { + "$date": "2020-11-10T08:27:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ab3c82b2-a3c8-4b3a-b23a-8e1fb11e5b2e", + "start": { + "$date": "2020-11-10T08:27:10.000Z" + }, + "end": { + "$date": "2020-11-10T08:37:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d155048-5795-4c72-ae77-33aadad5d4a8", + "start": { + "$date": "2020-11-10T08:37:10.000Z" + }, + "end": { + "$date": "2020-11-10T13:37:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "845a0fe9-8f3a-425a-82db-7d600299f4c1", + "start": { + "$date": "2020-11-10T13:37:10.000Z" + }, + "end": { + "$date": "2020-11-10T13:47:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d6ad1c5e-3755-4d02-b297-4962a0256b4c", + "start": { + "$date": "2020-11-10T13:47:10.000Z" + }, + "end": { + "$date": "2020-11-10T15:50:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ea11101-5d2a-4b06-8f4a-687db26d9315", + "start": { + "$date": "2020-11-10T15:50:10.000Z" + }, + "end": { + "$date": "2020-11-10T15:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a0641698-ea08-4b62-914c-a3eae38e867d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-10T02:15:25.000Z" + }, + "end": { + "$date": "2020-11-10T03:25:04.000Z" + }, + "events": [ + { + "uuid": "24dddefd-b148-4162-bde3-1997300b3a5c", + "start": { + "$date": "2020-11-10T02:15:25.000Z" + }, + "end": { + "$date": "2020-11-10T03:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "2915640a-0a1a-4930-95b0-4bf29ff8046b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-10T03:04:10.000Z" + }, + "end": { + "$date": "2020-11-10T06:33:19.000Z" + }, + "events": [ + { + "uuid": "7a22a68d-07cd-4f5a-874b-bf34808cc1a1", + "start": { + "$date": "2020-11-10T03:04:10.000Z" + }, + "end": { + "$date": "2020-11-10T06:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "63d71539-b859-4205-992c-c8bb78de5c39", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-10T03:05:30.000Z" + }, + "end": { + "$date": "2020-11-10T06:32:55.000Z" + }, + "events": [ + { + "uuid": "b20e1e64-918b-4c1d-a62e-f866b47f3bf3", + "start": { + "$date": "2020-11-10T03:05:30.000Z" + }, + "end": { + "$date": "2020-11-10T06:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "1f0cd260-5bca-4898-8af1-c7d61e2269fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-10T03:07:41.000Z" + }, + "end": { + "$date": "2020-11-10T06:32:43.000Z" + }, + "events": [ + { + "uuid": "62199ddc-d0c3-468c-a506-7194eabe78ed", + "start": { + "$date": "2020-11-10T03:07:41.000Z" + }, + "end": { + "$date": "2020-11-10T06:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b8a1b6e9-5e75-4b68-8f0f-cf9a412888f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-10T03:30:53.000Z" + }, + "end": { + "$date": "2020-11-10T05:17:28.000Z" + }, + "events": [ + { + "uuid": "c43116a2-0f36-4f51-a878-78e396c07915", + "start": { + "$date": "2020-11-10T03:30:53.000Z" + }, + "end": { + "$date": "2020-11-10T05:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f8569040-c1af-4823-bc8b-48daba3ce131", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-10T03:33:23.000Z" + }, + "end": { + "$date": "2020-11-10T03:57:55.000Z" + }, + "events": [ + { + "uuid": "114e0280-7ee7-4ce2-981e-b16f0e66c1ae", + "start": { + "$date": "2020-11-10T03:33:23.000Z" + }, + "end": { + "$date": "2020-11-10T03:57:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0179a0b4-82f9-4b9c-b527-0c05c3caf76e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-10T04:13:18.000Z" + }, + "end": { + "$date": "2020-11-10T05:20:28.000Z" + }, + "events": [ + { + "uuid": "1e1e722e-bcf6-4c47-b861-cdddba5ccf61", + "start": { + "$date": "2020-11-10T04:13:18.000Z" + }, + "end": { + "$date": "2020-11-10T05:20:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2f7f28aa-e783-4948-aa28-5eb3b587df65", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-10T04:29:24.000Z" + }, + "end": { + "$date": "2020-11-10T04:36:40.000Z" + }, + "events": [ + { + "uuid": "b7efccef-e18d-4117-9329-408d0ff8508b", + "start": { + "$date": "2020-11-10T04:29:24.000Z" + }, + "end": { + "$date": "2020-11-10T04:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "578a0ed9-2fad-4b38-8a04-03a96c586f4f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-10T04:34:46.000Z" + }, + "end": { + "$date": "2020-11-10T07:17:42.000Z" + }, + "events": [ + { + "uuid": "1f54d61b-36a5-48ef-931a-47dc8859e16d", + "start": { + "$date": "2020-11-10T04:34:46.000Z" + }, + "end": { + "$date": "2020-11-10T07:17:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "15c4bbb1-e313-488a-8c43-4691ed25fefe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-10T04:35:52.000Z" + }, + "end": { + "$date": "2020-11-10T05:01:31.000Z" + }, + "events": [ + { + "uuid": "9760cb16-43bb-47ba-9c0e-99a1712a6cff", + "start": { + "$date": "2020-11-10T04:35:52.000Z" + }, + "end": { + "$date": "2020-11-10T05:01:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "d8397563-2636-4f4b-a753-e49850f40634", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-10T05:47:51.000Z" + }, + "end": { + "$date": "2020-11-10T10:34:04.000Z" + }, + "events": [ + { + "uuid": "0b99958b-982b-44d8-a1b4-eb4aed522207", + "start": { + "$date": "2020-11-10T05:47:51.000Z" + }, + "end": { + "$date": "2020-11-10T10:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "677142aa-afd6-47dd-be0f-090a5c096cd9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-10T06:35:09.000Z" + }, + "end": { + "$date": "2020-11-10T06:39:44.000Z" + }, + "events": [ + { + "uuid": "ad090814-0155-49da-a8ed-f582e40cbe4a", + "start": { + "$date": "2020-11-10T06:35:09.000Z" + }, + "end": { + "$date": "2020-11-10T06:39:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "22076e73-2200-49ca-a264-3b912b86668e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-11-10T15:37:41.000Z" + }, + "end": { + "$date": "2020-11-10T18:04:41.000Z" + }, + "events": [ + { + "uuid": "8cbec0af-c1ed-482e-9a08-f6a9e8482b43", + "start": { + "$date": "2020-11-10T15:37:41.000Z" + }, + "end": { + "$date": "2020-11-10T18:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5f92e169-2845-47bd-befd-f8b84d3422e7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T16:29:13.000Z" + }, + "end": { + "$date": "2020-11-10T16:31:29.000Z" + }, + "events": [ + { + "uuid": "07cf2d6d-c320-4224-83fe-04982393d119", + "start": { + "$date": "2020-11-10T16:29:13.000Z" + }, + "end": { + "$date": "2020-11-10T16:31:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "73cec713-1567-46f8-b407-25921740f5f7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-10T16:30:45.000Z" + }, + "end": { + "$date": "2020-11-10T16:32:21.000Z" + }, + "events": [ + { + "uuid": "a4107188-3771-43b1-98d4-68e535402990", + "start": { + "$date": "2020-11-10T16:30:45.000Z" + }, + "end": { + "$date": "2020-11-10T16:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "b4d009ac-916e-41af-8142-d21d97d757dc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T16:36:24.000Z" + }, + "end": { + "$date": "2020-11-10T17:34:41.000Z" + }, + "events": [ + { + "uuid": "6c996c6f-6147-4e78-b4fc-180cf5e78a85", + "start": { + "$date": "2020-11-10T16:36:24.000Z" + }, + "end": { + "$date": "2020-11-10T17:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2ef00291-2a80-491e-a071-5a4b3521c0e7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T17:54:18.000Z" + }, + "end": { + "$date": "2020-11-10T18:06:18.000Z" + }, + "events": [ + { + "uuid": "c286216d-bb40-4163-95b9-f92b60d87179", + "start": { + "$date": "2020-11-10T17:54:18.000Z" + }, + "end": { + "$date": "2020-11-10T18:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "612ce11f-58f4-4983-a9d9-b626b43ea3f5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T18:10:44.000Z" + }, + "end": { + "$date": "2020-11-10T18:57:45.000Z" + }, + "events": [ + { + "uuid": "48ef19de-8cee-42fc-841b-bd97420491e3", + "start": { + "$date": "2020-11-10T18:10:44.000Z" + }, + "end": { + "$date": "2020-11-10T18:57:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "24172929-f12a-4c27-8ac7-a02645508120", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-10T18:32:10.000Z" + }, + "end": { + "$date": "2020-11-10T19:26:37.000Z" + }, + "events": [ + { + "uuid": "0381aacd-c866-4c8b-8f79-103ca61944cd", + "start": { + "$date": "2020-11-10T18:32:10.000Z" + }, + "end": { + "$date": "2020-11-10T19:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e0e275cd-9655-4979-99bd-3d030e349b56", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-10T18:47:48.000Z" + }, + "end": { + "$date": "2020-11-10T21:53:21.000Z" + }, + "events": [ + { + "uuid": "ad8b5a6b-da59-47cf-a530-d1c84ff8841e", + "start": { + "$date": "2020-11-10T18:47:48.000Z" + }, + "end": { + "$date": "2020-11-10T21:53:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "32437dab-e7a0-42da-a6e3-6fe147d3a0a4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T19:50:57.000Z" + }, + "end": { + "$date": "2020-11-10T20:07:18.000Z" + }, + "events": [ + { + "uuid": "3c1facc4-f01f-4cef-bae8-4dbe178ea62c", + "start": { + "$date": "2020-11-10T19:50:57.000Z" + }, + "end": { + "$date": "2020-11-10T20:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "176d0cec-3401-4464-9db0-6f67004c8e07", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T20:07:58.000Z" + }, + "end": { + "$date": "2020-11-10T22:29:10.000Z" + }, + "events": [ + { + "uuid": "f254554b-ce39-4098-a6a4-f1ade45ef522", + "start": { + "$date": "2020-11-10T20:07:58.000Z" + }, + "end": { + "$date": "2020-11-10T22:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f95bfa90-5c89-4521-b71f-e893855a2bec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-10T20:15:28.000Z" + }, + "end": { + "$date": "2020-11-10T20:17:39.000Z" + }, + "events": [ + { + "uuid": "ce14a99e-ccee-4f54-a1b6-b55295eadf08", + "start": { + "$date": "2020-11-10T20:15:28.000Z" + }, + "end": { + "$date": "2020-11-10T20:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71f43f79-b865-425f-b080-ec75c13ed02a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-10T20:43:11.000Z" + }, + "end": { + "$date": "2020-11-10T21:05:24.000Z" + }, + "events": [ + { + "uuid": "c363cae9-4af2-4443-8fa6-770aac189cf3", + "start": { + "$date": "2020-11-10T20:43:11.000Z" + }, + "end": { + "$date": "2020-11-10T21:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c308d02-f050-406e-9fe7-3767c5be45cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-10T21:52:28.000Z" + }, + "end": { + "$date": "2020-11-10T21:54:59.000Z" + }, + "events": [ + { + "uuid": "b19244a5-05af-426b-9cd2-ee85446fe391", + "start": { + "$date": "2020-11-10T21:52:28.000Z" + }, + "end": { + "$date": "2020-11-10T21:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a10d5927-d7f4-406f-8fe6-8725681c25a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-10T22:14:15.000Z" + }, + "end": { + "$date": "2020-11-10T23:16:48.000Z" + }, + "events": [ + { + "uuid": "71d9f615-29e8-4899-9f45-4fc10690673a", + "start": { + "$date": "2020-11-10T22:14:15.000Z" + }, + "end": { + "$date": "2020-11-10T23:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc9e43f4-991a-41ff-bea1-9042a810a8fa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T22:29:15.000Z" + }, + "end": { + "$date": "2020-11-10T23:07:21.000Z" + }, + "events": [ + { + "uuid": "3ef55379-2805-4f80-af87-06afe24a727f", + "start": { + "$date": "2020-11-10T22:29:15.000Z" + }, + "end": { + "$date": "2020-11-10T23:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a6cf3ef6-e2ae-469e-9de5-2480583d2ece", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T00:05:34.000Z" + }, + "end": { + "$date": "2020-11-11T00:05:54.000Z" + }, + "events": [ + { + "uuid": "459977ee-6ea9-481a-b958-3d6ec5a904cd", + "start": { + "$date": "2020-11-11T00:05:34.000Z" + }, + "end": { + "$date": "2020-11-11T00:05:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "143f42b1-db8a-4fe7-a87b-52917f63aaef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T23:20:43.000Z" + }, + "end": { + "$date": "2020-11-10T23:48:54.000Z" + }, + "events": [ + { + "uuid": "74f57771-f026-4a30-8245-336eeae12817", + "start": { + "$date": "2020-11-10T23:20:43.000Z" + }, + "end": { + "$date": "2020-11-10T23:48:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "413fc5ea-e6e1-4a53-82e4-748b8ad9fd3b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-10T23:26:14.000Z" + }, + "end": { + "$date": "2020-11-10T23:44:06.000Z" + }, + "events": [ + { + "uuid": "400ad2db-cf04-42c8-b6c5-4a3d96f059c4", + "start": { + "$date": "2020-11-10T23:26:14.000Z" + }, + "end": { + "$date": "2020-11-10T23:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "512e42a6-52f5-431e-891c-e7b9a41d74f4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-10T23:38:57.000Z" + }, + "end": { + "$date": "2020-11-10T23:41:32.000Z" + }, + "events": [ + { + "uuid": "d935d99d-2a60-4f4d-9a41-7a4abe58014d", + "start": { + "$date": "2020-11-10T23:38:57.000Z" + }, + "end": { + "$date": "2020-11-10T23:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2a8a3fb5-3803-43e5-8260-295c8419e009", + "uuid": "2e13fc11-17ae-4363-9d5f-bfeb015e797c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-10T23:58:00.000Z" + }, + "end": { + "$date": "2020-11-11T00:48:10.000Z" + }, + "events": [ + { + "uuid": "b85f1d21-290f-4212-87a5-03fe9329478e", + "start": { + "$date": "2020-11-10T23:58:00.000Z" + }, + "end": { + "$date": "2020-11-11T00:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f77c00f6-f267-42d1-b4cd-c3d61e316521", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T00:33:02.000Z" + }, + "end": { + "$date": "2020-11-11T01:25:43.000Z" + }, + "events": [ + { + "uuid": "a03615f0-21ad-444a-af5a-6d1bbad84a87", + "start": { + "$date": "2020-11-11T00:33:02.000Z" + }, + "end": { + "$date": "2020-11-11T01:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "766a3663-af92-4b51-a33b-601baf4631db", + "uuid": "137ea739-797d-4176-a955-ab2d0abad3fa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T00:50:55.000Z" + }, + "end": { + "$date": "2020-11-11T04:06:34.000Z" + }, + "events": [ + { + "uuid": "e299c0fc-11ae-4f20-8639-13fecd4e80a1", + "start": { + "$date": "2020-11-11T00:50:55.000Z" + }, + "end": { + "$date": "2020-11-11T04:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "69e24f89-b551-4dde-9700-e952f82c1b03", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-11T02:15:01.000Z" + }, + "end": { + "$date": "2020-11-11T02:26:02.000Z" + }, + "events": [ + { + "uuid": "1dea73a7-a59e-4758-8b01-0f9ab10f372c", + "start": { + "$date": "2020-11-11T02:15:01.000Z" + }, + "end": { + "$date": "2020-11-11T02:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3c8f084a-53c6-4570-b0c9-879b52699942", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-11T02:58:19.000Z" + }, + "end": { + "$date": "2020-11-11T03:00:06.000Z" + }, + "events": [ + { + "uuid": "f241eb99-078b-4886-8a4f-cf8ca8bd30f7", + "start": { + "$date": "2020-11-11T02:58:19.000Z" + }, + "end": { + "$date": "2020-11-11T03:00:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fddbc863-12b0-449c-8628-5b331d366904", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-11T03:01:14.000Z" + }, + "end": { + "$date": "2020-11-11T04:52:51.000Z" + }, + "events": [ + { + "uuid": "000feca0-dbc4-425f-993e-9912f55f603d", + "start": { + "$date": "2020-11-11T03:01:14.000Z" + }, + "end": { + "$date": "2020-11-11T04:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ba42769-149d-4e2f-95b1-edc2c07afa40", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-11T03:07:04.000Z" + }, + "end": { + "$date": "2020-11-11T05:06:38.000Z" + }, + "events": [ + { + "uuid": "a208dd97-1404-4d9d-b85f-cad90c6c85bf", + "start": { + "$date": "2020-11-11T03:07:04.000Z" + }, + "end": { + "$date": "2020-11-11T05:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "40b4254e-7471-448f-bdc1-c0f0d12c2924", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-11T03:20:14.000Z" + }, + "end": { + "$date": "2020-11-11T05:06:56.000Z" + }, + "events": [ + { + "uuid": "8719890f-f072-4df0-a09d-86c67b59fe9d", + "start": { + "$date": "2020-11-11T03:20:14.000Z" + }, + "end": { + "$date": "2020-11-11T05:06:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "3b4ba031-99d0-4030-83fc-e731ce15b32e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T04:06:27.000Z" + }, + "end": { + "$date": "2020-11-11T05:10:34.000Z" + }, + "events": [ + { + "uuid": "6bf74832-fae3-43ab-a7cc-701d0f89206b", + "start": { + "$date": "2020-11-11T04:06:27.000Z" + }, + "end": { + "$date": "2020-11-11T05:10:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "ee1b0ddb-0a8c-4b41-993d-6e307eda9204", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T04:07:54.000Z" + }, + "end": { + "$date": "2020-11-11T05:10:38.000Z" + }, + "events": [ + { + "uuid": "f7640774-f33d-4335-a9eb-21a8a1532b3f", + "start": { + "$date": "2020-11-11T04:07:54.000Z" + }, + "end": { + "$date": "2020-11-11T05:10:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0cf91f5a-4689-4ff6-b922-50fecc0a99a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-11T04:11:53.000Z" + }, + "end": { + "$date": "2020-11-11T04:39:00.000Z" + }, + "events": [ + { + "uuid": "3f2daac7-7e46-49e8-9c0e-fda3b0547776", + "start": { + "$date": "2020-11-11T04:11:53.000Z" + }, + "end": { + "$date": "2020-11-11T04:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5bcaf6d5-455b-415a-8667-4346aab0c266", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-11T04:14:50.000Z" + }, + "end": { + "$date": "2020-11-11T04:37:37.000Z" + }, + "events": [ + { + "uuid": "a7ada518-ba79-42cb-9c4a-1ec273130fc6", + "start": { + "$date": "2020-11-11T04:14:50.000Z" + }, + "end": { + "$date": "2020-11-11T04:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "72e433fd-0d2f-466c-84f8-d9a7ca05b14f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-11T04:25:20.000Z" + }, + "end": { + "$date": "2020-11-11T04:34:32.000Z" + }, + "events": [ + { + "uuid": "d398f12d-4344-4655-a2e3-d6f820ff5bde", + "start": { + "$date": "2020-11-11T04:25:20.000Z" + }, + "end": { + "$date": "2020-11-11T04:34:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "03d5988e-a250-4ecc-a224-ce05c8111b2f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-11T04:38:17.000Z" + }, + "end": { + "$date": "2020-11-11T06:37:58.000Z" + }, + "events": [ + { + "uuid": "c46d2174-2b50-4e4a-ac21-8d8a499c1c75", + "start": { + "$date": "2020-11-11T04:38:17.000Z" + }, + "end": { + "$date": "2020-11-11T06:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "4958bdb4-8d9f-43a9-98b9-87e186cfaf7b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-11T04:40:30.000Z" + }, + "end": { + "$date": "2020-11-11T05:04:03.000Z" + }, + "events": [ + { + "uuid": "ff03c8f9-9f89-4bda-910f-437d4abf226c", + "start": { + "$date": "2020-11-11T04:40:30.000Z" + }, + "end": { + "$date": "2020-11-11T05:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f5cbd478-5277-4074-afe6-ea10d2ac9350", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T05:14:03.000Z" + }, + "end": { + "$date": "2020-11-11T06:09:55.000Z" + }, + "events": [ + { + "uuid": "e65d64f8-2d04-4ce9-b651-6b12fb9e1dcf", + "start": { + "$date": "2020-11-11T05:14:03.000Z" + }, + "end": { + "$date": "2020-11-11T06:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c65cfbc8-6974-4ce1-862e-08847b756e8c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-11T06:09:48.000Z" + }, + "end": { + "$date": "2020-11-11T06:55:03.000Z" + }, + "events": [ + { + "uuid": "dc0fd29a-08e8-479c-a446-f7025c979e5b", + "start": { + "$date": "2020-11-11T06:09:48.000Z" + }, + "end": { + "$date": "2020-11-11T06:52:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ef580b9-94ae-443a-af01-6be758e7e572", + "start": { + "$date": "2020-11-11T06:52:48.000Z" + }, + "end": { + "$date": "2020-11-11T06:53:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "27c7b153-62f6-4189-938f-9184b66f99a3", + "start": { + "$date": "2020-11-11T06:53:48.000Z" + }, + "end": { + "$date": "2020-11-11T06:55:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "72d11afd-6dcc-4704-bbac-ff5b3e86eed6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T06:10:56.000Z" + }, + "end": { + "$date": "2020-11-11T07:31:23.000Z" + }, + "events": [ + { + "uuid": "b2c0146a-b01b-4c21-96a5-75bba3464207", + "start": { + "$date": "2020-11-11T06:10:56.000Z" + }, + "end": { + "$date": "2020-11-11T07:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f64cb05e-8870-4218-96f9-996733438c60", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T06:12:51.000Z" + }, + "end": { + "$date": "2020-11-11T06:14:43.000Z" + }, + "events": [ + { + "uuid": "6be93af4-0383-40dd-a254-8401c252783c", + "start": { + "$date": "2020-11-11T06:12:51.000Z" + }, + "end": { + "$date": "2020-11-11T06:14:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "88b13c0e-8e89-42bf-8456-717051dbb5f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T06:14:08.000Z" + }, + "end": { + "$date": "2020-11-11T07:22:35.000Z" + }, + "events": [ + { + "uuid": "6550cdce-9ab1-4dd6-ad9a-69926c868411", + "start": { + "$date": "2020-11-11T06:14:08.000Z" + }, + "end": { + "$date": "2020-11-11T07:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ccea0df-88d5-47e2-b67c-6963aaf70cb5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T06:36:03.000Z" + }, + "end": { + "$date": "2020-11-11T07:05:09.000Z" + }, + "events": [ + { + "uuid": "b6d74f2c-9d95-4db9-a72c-01959c3f3fc2", + "start": { + "$date": "2020-11-11T06:36:03.000Z" + }, + "end": { + "$date": "2020-11-11T07:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b51bc92-01e7-4b4b-af6f-1c4d593eeb1c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T07:10:54.000Z" + }, + "end": { + "$date": "2020-11-11T07:42:34.000Z" + }, + "events": [ + { + "uuid": "7c3d1cdb-4cfc-4028-8cb3-62540c566ee9", + "start": { + "$date": "2020-11-11T07:10:54.000Z" + }, + "end": { + "$date": "2020-11-11T07:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "cf8b264f-5e7e-448c-b81e-af2ed82ef405", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-11T08:07:56.000Z" + }, + "end": { + "$date": "2020-11-11T09:49:55.000Z" + }, + "events": [ + { + "uuid": "2d419dc2-1bd8-43e7-9ab8-dc53dc7eaae6", + "start": { + "$date": "2020-11-11T08:07:56.000Z" + }, + "end": { + "$date": "2020-11-11T09:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2da566d0-6f2a-452c-820b-61ae0abfc561", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T16:16:30.000Z" + }, + "end": { + "$date": "2020-11-11T16:42:11.000Z" + }, + "events": [ + { + "uuid": "c541283b-94a0-434a-86ac-d3d3bd1c01c7", + "start": { + "$date": "2020-11-11T16:16:30.000Z" + }, + "end": { + "$date": "2020-11-11T16:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "8bbcd6c7-6d37-41fe-a367-99bc69aa2d32", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T16:53:16.000Z" + }, + "end": { + "$date": "2020-11-11T16:54:21.000Z" + }, + "events": [ + { + "uuid": "aa396b2f-beda-4642-8cbb-e1c1c435356f", + "start": { + "$date": "2020-11-11T16:53:16.000Z" + }, + "end": { + "$date": "2020-11-11T16:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "15d993dc-ecdd-4b72-80f6-2808ef0cf07c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T16:54:56.000Z" + }, + "end": { + "$date": "2020-11-11T17:34:29.000Z" + }, + "events": [ + { + "uuid": "da74a306-83b3-4769-ac38-a0ccd08b02d9", + "start": { + "$date": "2020-11-11T16:54:56.000Z" + }, + "end": { + "$date": "2020-11-11T17:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "987322d9-47f8-4ca5-8a30-e454731d5e52", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T17:13:11.000Z" + }, + "end": { + "$date": "2020-11-11T17:21:12.000Z" + }, + "events": [ + { + "uuid": "f935e1c6-db14-4e58-825c-cd07fb1a1f5f", + "start": { + "$date": "2020-11-11T17:13:11.000Z" + }, + "end": { + "$date": "2020-11-11T17:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "dacc6ed5-381e-4e79-a8e4-36bd3c71dd4e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T17:41:09.000Z" + }, + "end": { + "$date": "2020-11-11T21:01:15.000Z" + }, + "events": [ + { + "uuid": "bddfd247-1b26-4aec-af10-4ab90975a58c", + "start": { + "$date": "2020-11-11T17:41:09.000Z" + }, + "end": { + "$date": "2020-11-11T21:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "bc8c9a33-6e4a-4b6f-be51-910872a52d04", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T17:41:33.000Z" + }, + "end": { + "$date": "2020-11-11T21:00:06.000Z" + }, + "events": [ + { + "uuid": "5a2dd270-0641-4b37-be44-3e07f790d2ac", + "start": { + "$date": "2020-11-11T17:41:33.000Z" + }, + "end": { + "$date": "2020-11-11T21:00:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59215456-dfa6-475a-af56-7c384887b5da", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T19:00:03.000Z" + }, + "end": { + "$date": "2020-11-11T19:26:37.000Z" + }, + "events": [ + { + "uuid": "bae3476f-ee66-4976-a7b4-d460e2f5c979", + "start": { + "$date": "2020-11-11T19:00:03.000Z" + }, + "end": { + "$date": "2020-11-11T19:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ee4abbc-8e54-4183-be43-e3a92d69d6bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T19:27:17.000Z" + }, + "end": { + "$date": "2020-11-11T19:30:19.000Z" + }, + "events": [ + { + "uuid": "24598196-6516-43d0-9b08-8216d90f7ec3", + "start": { + "$date": "2020-11-11T19:27:17.000Z" + }, + "end": { + "$date": "2020-11-11T19:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5778a410-dec5-424a-956a-fdd80018d85b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T20:26:09.000Z" + }, + "end": { + "$date": "2020-11-11T21:08:47.000Z" + }, + "events": [ + { + "uuid": "7a27b6bd-7de0-4a25-82a0-289fe622ec0f", + "start": { + "$date": "2020-11-11T20:26:09.000Z" + }, + "end": { + "$date": "2020-11-11T21:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "25154977-8843-4604-b2af-9052953f75eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-11T20:20:56.000Z" + }, + "end": { + "$date": "2020-11-11T22:50:11.000Z" + }, + "events": [ + { + "uuid": "f469b7da-9f83-450b-8686-1961ef06f084", + "start": { + "$date": "2020-11-11T20:20:56.000Z" + }, + "end": { + "$date": "2020-11-11T22:50:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05c87f26-ef68-4002-8ae7-a59fcf8094c5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-11T20:50:07.000Z" + }, + "end": { + "$date": "2020-11-11T21:18:27.000Z" + }, + "events": [ + { + "uuid": "1a6bca79-761a-497a-9fd8-4b6942ed6085", + "start": { + "$date": "2020-11-11T20:50:07.000Z" + }, + "end": { + "$date": "2020-11-11T21:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1576e9ac-e3e5-4715-b826-4b97cefba9f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T21:09:04.000Z" + }, + "end": { + "$date": "2020-11-11T21:10:07.000Z" + }, + "events": [ + { + "uuid": "4e6beb44-b74a-4b91-a326-472731299c38", + "start": { + "$date": "2020-11-11T21:09:04.000Z" + }, + "end": { + "$date": "2020-11-11T21:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9a2855c-c6bc-42f5-86e8-00271291fb18", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T21:25:22.000Z" + }, + "end": { + "$date": "2020-11-11T21:51:15.000Z" + }, + "events": [ + { + "uuid": "53704253-1fca-44e1-a6ea-0e87a1b067dc", + "start": { + "$date": "2020-11-11T21:25:22.000Z" + }, + "end": { + "$date": "2020-11-11T21:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "633ef363-bb95-4282-987a-698f4174348a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-11T21:45:09.000Z" + }, + "end": { + "$date": "2020-11-11T23:36:50.000Z" + }, + "events": [ + { + "uuid": "8c68465f-750f-4b64-a765-b8f3943aabc8", + "start": { + "$date": "2020-11-11T21:45:09.000Z" + }, + "end": { + "$date": "2020-11-11T21:56:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b717195a-e545-4367-a37a-80039bdcb1eb", + "start": { + "$date": "2020-11-11T21:56:09.000Z" + }, + "end": { + "$date": "2020-11-11T22:00:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "046bf10c-5955-40d3-a1cc-a1371416fb5a", + "start": { + "$date": "2020-11-11T22:00:09.000Z" + }, + "end": { + "$date": "2020-11-11T23:36:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4265be77-d5b4-4650-8b3d-df2cd2e25b26", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T21:45:23.000Z" + }, + "end": { + "$date": "2020-11-11T22:00:22.000Z" + }, + "events": [ + { + "uuid": "c2c8bac0-59b9-4b94-98dc-1ce0d8e5a205", + "start": { + "$date": "2020-11-11T21:45:23.000Z" + }, + "end": { + "$date": "2020-11-11T22:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "392e8de5-b32e-4f4d-8895-a01f150e02b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-11T21:46:08.000Z" + }, + "end": { + "$date": "2020-11-11T22:08:04.000Z" + }, + "events": [ + { + "uuid": "c44309d5-3a5e-4277-876d-14504358fe6c", + "start": { + "$date": "2020-11-11T21:46:08.000Z" + }, + "end": { + "$date": "2020-11-11T22:08:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65d81415-7897-4475-bc2c-b399e5d66a44", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T21:52:22.000Z" + }, + "end": { + "$date": "2020-11-11T22:07:58.000Z" + }, + "events": [ + { + "uuid": "4012cdb1-a8e5-458d-b1a2-7c7c3ed3c142", + "start": { + "$date": "2020-11-11T21:52:22.000Z" + }, + "end": { + "$date": "2020-11-11T22:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "56cadfb1-a9b6-4676-9ef0-e982b78aec71", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-11T22:02:21.000Z" + }, + "end": { + "$date": "2020-11-11T23:36:46.000Z" + }, + "events": [ + { + "uuid": "64b4b31d-c78b-4a69-98ab-b2348ebfb1bb", + "start": { + "$date": "2020-11-11T22:02:21.000Z" + }, + "end": { + "$date": "2020-11-11T23:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1acc499f-b8b7-4b91-ad21-939e3f1b10ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-11T22:40:51.000Z" + }, + "end": { + "$date": "2020-11-11T23:13:13.000Z" + }, + "events": [ + { + "uuid": "b0e36f16-dc43-412f-ab95-b0140a05a6e8", + "start": { + "$date": "2020-11-11T22:40:51.000Z" + }, + "end": { + "$date": "2020-11-11T23:13:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7cdfe118-ab2a-4aeb-9808-826ab19bb0de", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-12T01:12:18.000Z" + }, + "end": { + "$date": "2020-11-12T02:53:26.000Z" + }, + "events": [ + { + "uuid": "83241ad5-bad3-4368-80d0-3980b0d0418c", + "start": { + "$date": "2020-11-12T01:12:18.000Z" + }, + "end": { + "$date": "2020-11-12T02:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "292c5b0c-87f3-468a-895e-b2a88b51adbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-11T23:50:39.000Z" + }, + "end": { + "$date": "2020-11-12T00:23:10.000Z" + }, + "events": [ + { + "uuid": "6d16abc2-9bc9-4d67-9812-e54ddd414460", + "start": { + "$date": "2020-11-11T23:50:39.000Z" + }, + "end": { + "$date": "2020-11-12T00:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c0fb7ef4-3eb0-4d27-9845-1f9f7f2c5312", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-12T00:01:07.000Z" + }, + "end": { + "$date": "2020-11-12T00:49:26.000Z" + }, + "events": [ + { + "uuid": "9a689b3b-b961-4dec-a773-f2a5c3d52cd6", + "start": { + "$date": "2020-11-12T00:01:07.000Z" + }, + "end": { + "$date": "2020-11-12T00:49:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f00fb514-e660-42b9-9ce5-daa97cc9c6e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-12T00:14:39.000Z" + }, + "end": { + "$date": "2020-11-12T00:41:42.000Z" + }, + "events": [ + { + "uuid": "90dfedb1-12f9-48e5-818a-770323a39823", + "start": { + "$date": "2020-11-12T00:14:39.000Z" + }, + "end": { + "$date": "2020-11-12T00:41:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dfb8ad0b-efce-44ba-be4f-824555efc4e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-12T00:21:46.000Z" + }, + "end": { + "$date": "2020-11-12T00:49:43.000Z" + }, + "events": [ + { + "uuid": "1646c088-1e02-4511-91df-57d833208044", + "start": { + "$date": "2020-11-12T00:21:46.000Z" + }, + "end": { + "$date": "2020-11-12T00:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44ad59c2-7f74-49d5-9722-1246b4c143b9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-12T00:31:57.000Z" + }, + "end": { + "$date": "2020-11-12T01:13:52.000Z" + }, + "events": [ + { + "uuid": "cd0a7939-864c-4137-887a-2adb0a3f5382", + "start": { + "$date": "2020-11-12T00:31:57.000Z" + }, + "end": { + "$date": "2020-11-12T01:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8f6f33bf-161d-4026-99c5-30cfbea56df3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-12T00:52:09.000Z" + }, + "end": { + "$date": "2020-11-12T01:14:50.000Z" + }, + "events": [ + { + "uuid": "778bad84-ba22-41c2-9a58-bd9e4971845f", + "start": { + "$date": "2020-11-12T00:52:09.000Z" + }, + "end": { + "$date": "2020-11-12T01:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b081d309-6a93-4433-9000-28a4f2edb0b1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-12T01:04:05.000Z" + }, + "end": { + "$date": "2020-11-12T01:23:16.000Z" + }, + "events": [ + { + "uuid": "941d22ad-4d23-4c36-a715-dc24f44c08ee", + "start": { + "$date": "2020-11-12T01:04:05.000Z" + }, + "end": { + "$date": "2020-11-12T01:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2635ed7c-131f-466c-ab08-0e14b4bb4ead", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T01:10:35.000Z" + }, + "end": { + "$date": "2020-11-12T01:19:26.000Z" + }, + "events": [ + { + "uuid": "19c0917b-5a6c-4f9e-a41e-c4063022fe2a", + "start": { + "$date": "2020-11-12T01:10:35.000Z" + }, + "end": { + "$date": "2020-11-12T01:19:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3a5e91a5-f076-428f-9574-ad1efbda1d77", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-12T01:18:23.000Z" + }, + "end": { + "$date": "2020-11-12T01:29:44.000Z" + }, + "events": [ + { + "uuid": "1a8f6c45-41c1-47b2-9bf4-bf8cbfa8b77b", + "start": { + "$date": "2020-11-12T01:18:23.000Z" + }, + "end": { + "$date": "2020-11-12T01:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "048493c1-7268-4caf-9759-b0a1b96c87e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-12T01:22:32.000Z" + }, + "end": { + "$date": "2020-11-12T01:52:21.000Z" + }, + "events": [ + { + "uuid": "15a8d920-7387-4df2-a8dd-3775c75f67ad", + "start": { + "$date": "2020-11-12T01:22:32.000Z" + }, + "end": { + "$date": "2020-11-12T01:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c609e0c1-aa79-4fef-a8bc-5b26ca8d112c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-12T01:24:22.000Z" + }, + "end": { + "$date": "2020-11-12T01:25:42.000Z" + }, + "events": [ + { + "uuid": "268b9a0d-6fba-4659-b2aa-3c27c12a41a8", + "start": { + "$date": "2020-11-12T01:24:22.000Z" + }, + "end": { + "$date": "2020-11-12T01:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a5a9a554-1503-4749-9d1b-e26ede5946d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-12T01:26:07.000Z" + }, + "end": { + "$date": "2020-11-12T06:02:06.000Z" + }, + "events": [ + { + "uuid": "b2de1a07-9abf-4f94-8cc9-271e068ccd4a", + "start": { + "$date": "2020-11-12T01:26:07.000Z" + }, + "end": { + "$date": "2020-11-12T04:41:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60426a6b-c8ae-42a9-b161-532dadb08bb6", + "start": { + "$date": "2020-11-12T04:41:07.000Z" + }, + "end": { + "$date": "2020-11-12T04:43:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b2c29c3-0562-4e2a-8f94-f20553a53659", + "start": { + "$date": "2020-11-12T04:43:07.000Z" + }, + "end": { + "$date": "2020-11-12T06:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "45da3ef3-8644-4829-8100-7ac3a365099d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-12T01:36:41.000Z" + }, + "end": { + "$date": "2020-11-12T02:40:43.000Z" + }, + "events": [ + { + "uuid": "aa486b49-979e-4fe2-bdeb-d9817460a36a", + "start": { + "$date": "2020-11-12T01:36:41.000Z" + }, + "end": { + "$date": "2020-11-12T02:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f5fb0235-5b15-4130-aafb-7d93988ab97d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T01:37:28.000Z" + }, + "end": { + "$date": "2020-11-12T02:24:14.000Z" + }, + "events": [ + { + "uuid": "d09b7ae4-4453-4ca0-bab5-2e83e73104f0", + "start": { + "$date": "2020-11-12T01:37:28.000Z" + }, + "end": { + "$date": "2020-11-12T02:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "72fbc361-9961-4a8d-879b-02135b2344f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-12T01:47:25.000Z" + }, + "end": { + "$date": "2020-11-12T01:58:41.000Z" + }, + "events": [ + { + "uuid": "80b2c173-817c-4fd9-a4da-a39e67b7c805", + "start": { + "$date": "2020-11-12T01:47:25.000Z" + }, + "end": { + "$date": "2020-11-12T01:58:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9f35a79e-e133-4312-aa93-a45ade8c91bf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-12T02:28:03.000Z" + }, + "end": { + "$date": "2020-11-12T03:50:10.000Z" + }, + "events": [ + { + "uuid": "ced4de7c-1011-4613-8ee1-dd8a60de44df", + "start": { + "$date": "2020-11-12T02:28:03.000Z" + }, + "end": { + "$date": "2020-11-12T03:50:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d530030a-7857-4e7a-938b-8032a4976b47", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-12T03:57:00.000Z" + }, + "end": { + "$date": "2020-11-12T04:24:00.000Z" + }, + "events": [ + { + "uuid": "3582b2a8-1e34-4350-9cfa-334317b37b85", + "start": { + "$date": "2020-11-12T03:57:00.000Z" + }, + "end": { + "$date": "2020-11-12T04:24:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7d7ee0db-840d-4c71-8759-87d676983718", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-12T04:03:47.000Z" + }, + "end": { + "$date": "2020-11-12T05:16:46.000Z" + }, + "events": [ + { + "uuid": "917b8b18-bc0f-4dc3-9879-c504e9a6dec8", + "start": { + "$date": "2020-11-12T04:03:47.000Z" + }, + "end": { + "$date": "2020-11-12T05:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "906bda55-7e15-49d2-8495-162b961fbef2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-12T05:14:56.000Z" + }, + "end": { + "$date": "2020-11-12T05:47:05.000Z" + }, + "events": [ + { + "uuid": "3e28f531-2306-441d-b137-23305b5d296e", + "start": { + "$date": "2020-11-12T05:14:56.000Z" + }, + "end": { + "$date": "2020-11-12T05:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a047e43-6729-45a3-95bd-ac9b62a73655", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-12T05:13:49.000Z" + }, + "end": { + "$date": "2020-11-12T05:47:00.000Z" + }, + "events": [ + { + "uuid": "0b02d081-2488-4bfe-97ef-36cf7a9bf998", + "start": { + "$date": "2020-11-12T05:13:49.000Z" + }, + "end": { + "$date": "2020-11-12T05:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5aa79b4f-d76f-42fe-9ca7-b79b190c19b3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-12T05:12:52.000Z" + }, + "end": { + "$date": "2020-11-12T05:18:33.000Z" + }, + "events": [ + { + "uuid": "84eda43c-6707-45d6-9d11-3c30151a3f0a", + "start": { + "$date": "2020-11-12T05:12:52.000Z" + }, + "end": { + "$date": "2020-11-12T05:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5928ae79-3868-465d-8830-e59bcb419af6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-12T05:18:37.000Z" + }, + "end": { + "$date": "2020-11-12T07:00:04.000Z" + }, + "events": [ + { + "uuid": "1d8074a4-3356-436d-9ac8-22e9b1672d9e", + "start": { + "$date": "2020-11-12T05:18:37.000Z" + }, + "end": { + "$date": "2020-11-12T05:50:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4560cb4-893d-4475-8a03-6999bd004cec", + "start": { + "$date": "2020-11-12T05:50:37.000Z" + }, + "end": { + "$date": "2020-11-12T06:02:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "206c6a68-1674-488d-983c-57514c051614", + "start": { + "$date": "2020-11-12T06:02:37.000Z" + }, + "end": { + "$date": "2020-11-12T07:00:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "587332e8-8b2e-4af3-9c52-60d2d950eee6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T05:44:29.000Z" + }, + "end": { + "$date": "2020-11-12T05:59:25.000Z" + }, + "events": [ + { + "uuid": "2dd7442a-f926-461e-a270-9dd7d5979e85", + "start": { + "$date": "2020-11-12T05:44:29.000Z" + }, + "end": { + "$date": "2020-11-12T05:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "495d975e-3f9d-438c-85ce-6ebd687f77b4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-12T05:56:04.000Z" + }, + "end": { + "$date": "2020-11-12T06:28:13.000Z" + }, + "events": [ + { + "uuid": "fa6516db-d843-4cb2-9398-d638fc2c40e7", + "start": { + "$date": "2020-11-12T05:56:04.000Z" + }, + "end": { + "$date": "2020-11-12T06:28:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4f5f186-47ae-4b40-9695-75f0f689282e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-12T05:54:16.000Z" + }, + "end": { + "$date": "2020-11-12T06:28:11.000Z" + }, + "events": [ + { + "uuid": "5bcfd2e1-dc6e-4f12-8a7d-c3142f564c03", + "start": { + "$date": "2020-11-12T05:54:16.000Z" + }, + "end": { + "$date": "2020-11-12T06:28:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b9a551b-973b-4fb5-b69f-74e1c189d569", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-12T06:40:23.000Z" + }, + "end": { + "$date": "2020-11-12T07:12:45.000Z" + }, + "events": [ + { + "uuid": "749eeba7-8948-41db-8ad5-2bd3791dd6ce", + "start": { + "$date": "2020-11-12T06:40:23.000Z" + }, + "end": { + "$date": "2020-11-12T07:12:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f42921f6-01a2-40d3-90e8-f491be351488", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-12T07:14:46.000Z" + }, + "end": { + "$date": "2020-11-12T07:24:33.000Z" + }, + "events": [ + { + "uuid": "6d9b5fc3-8abf-43a5-a1fa-e2a25a41e65a", + "start": { + "$date": "2020-11-12T07:14:46.000Z" + }, + "end": { + "$date": "2020-11-12T07:24:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cea8fecc-ddff-42ed-b9a3-36e7ce7461f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-12T16:33:33.000Z" + }, + "end": { + "$date": "2020-11-12T17:23:21.000Z" + }, + "events": [ + { + "uuid": "dbb473e7-140c-49eb-abec-879858896e86", + "start": { + "$date": "2020-11-12T16:33:33.000Z" + }, + "end": { + "$date": "2020-11-12T17:23:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "4a1134db-e88e-42fe-91d1-2f8d2b6e7df1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-12T17:27:01.000Z" + }, + "end": { + "$date": "2020-11-12T18:27:28.000Z" + }, + "events": [ + { + "uuid": "1e95641d-d1e9-4ed7-8df1-6bb5283ac7f8", + "start": { + "$date": "2020-11-12T17:27:01.000Z" + }, + "end": { + "$date": "2020-11-12T18:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d7b9aa4c-7e39-494e-842a-86440548095a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-12T20:38:49.000Z" + }, + "end": { + "$date": "2020-11-12T21:48:40.000Z" + }, + "events": [ + { + "uuid": "6817df90-d570-47ce-82d8-3c18313109b6", + "start": { + "$date": "2020-11-12T20:38:49.000Z" + }, + "end": { + "$date": "2020-11-12T21:48:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e5301d7a-184b-4f4c-9093-2787d7d0761c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-12T20:52:20.000Z" + }, + "end": { + "$date": "2020-11-12T22:28:52.000Z" + }, + "events": [ + { + "uuid": "dd72046e-105d-4d0f-8f4b-134e13a66bc7", + "start": { + "$date": "2020-11-12T20:52:20.000Z" + }, + "end": { + "$date": "2020-11-12T22:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae0abdfc-b6ae-4ade-beed-afce02361ad7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-12T21:09:18.000Z" + }, + "end": { + "$date": "2020-11-12T21:46:24.000Z" + }, + "events": [ + { + "uuid": "d7958fdc-9cf6-406e-9122-81204968cd56", + "start": { + "$date": "2020-11-12T21:09:18.000Z" + }, + "end": { + "$date": "2020-11-12T21:46:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "06dbb4ce-aca1-471e-81c5-ef7073fa6713", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T21:55:57.000Z" + }, + "end": { + "$date": "2020-11-12T21:58:47.000Z" + }, + "events": [ + { + "uuid": "ecd523e8-7951-457a-9f83-1792657318df", + "start": { + "$date": "2020-11-12T21:55:57.000Z" + }, + "end": { + "$date": "2020-11-12T21:58:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e6240fb1-478a-442a-888c-102e38332567", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T22:00:02.000Z" + }, + "end": { + "$date": "2020-11-12T22:07:08.000Z" + }, + "events": [ + { + "uuid": "eb290fd4-fb40-4541-8bfa-4d63a94a26e1", + "start": { + "$date": "2020-11-12T22:00:02.000Z" + }, + "end": { + "$date": "2020-11-12T22:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "882e624d-3157-4490-9176-73157bb5042c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-12T22:59:11.000Z" + }, + "end": { + "$date": "2020-11-12T23:01:11.000Z" + }, + "events": [ + { + "uuid": "4183deca-1f4e-4699-a247-3510cc5bbd81", + "start": { + "$date": "2020-11-12T22:59:11.000Z" + }, + "end": { + "$date": "2020-11-12T23:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0aee70ba-9f64-49c3-9e6e-10c4e5b9dc98", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T23:00:17.000Z" + }, + "end": { + "$date": "2020-11-12T23:49:03.000Z" + }, + "events": [ + { + "uuid": "800d469f-e097-4934-af42-6ec6e736da02", + "start": { + "$date": "2020-11-12T23:00:17.000Z" + }, + "end": { + "$date": "2020-11-12T23:49:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "39c69f91-9900-4bf9-8577-f6ec7a4aad6d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-12T23:00:25.000Z" + }, + "end": { + "$date": "2020-11-12T23:14:00.000Z" + }, + "events": [ + { + "uuid": "22cfd0a4-1313-4caa-b4be-1075fd8e428d", + "start": { + "$date": "2020-11-12T23:00:25.000Z" + }, + "end": { + "$date": "2020-11-12T23:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1d9c9641-dd37-4d00-a080-bcd1d1de6323", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-12T23:06:58.000Z" + }, + "end": { + "$date": "2020-11-12T23:41:27.000Z" + }, + "events": [ + { + "uuid": "9f10b8e4-9b37-440b-816d-0ec81bc11331", + "start": { + "$date": "2020-11-12T23:06:58.000Z" + }, + "end": { + "$date": "2020-11-12T23:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "80e77772-f55f-47d6-807d-84d999fb54a2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-12T23:14:49.000Z" + }, + "end": { + "$date": "2020-11-12T23:16:12.000Z" + }, + "events": [ + { + "uuid": "a863e2a6-b135-49a2-9850-411f4dfe61a9", + "start": { + "$date": "2020-11-12T23:14:49.000Z" + }, + "end": { + "$date": "2020-11-12T23:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "739c7142-21a5-49a3-ac26-3001180e75a5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-12T23:17:25.000Z" + }, + "end": { + "$date": "2020-11-13T00:28:55.000Z" + }, + "events": [ + { + "uuid": "25fa4fb5-f78e-407a-b332-2b35f2b7b1e9", + "start": { + "$date": "2020-11-12T23:17:25.000Z" + }, + "end": { + "$date": "2020-11-13T00:28:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d07a3038-1174-45ed-a3e9-3276b239695f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-12T23:17:56.000Z" + }, + "end": { + "$date": "2020-11-13T00:01:58.000Z" + }, + "events": [ + { + "uuid": "47a4f9e5-a5eb-40a2-a7b8-038d1d75275f", + "start": { + "$date": "2020-11-12T23:17:56.000Z" + }, + "end": { + "$date": "2020-11-13T00:01:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "69721678-5fc6-4577-9093-7656f152e418", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-12T23:54:59.000Z" + }, + "end": { + "$date": "2020-11-13T00:02:04.000Z" + }, + "events": [ + { + "uuid": "c54aa7ca-70f7-432b-b0d6-cc73676d46dd", + "start": { + "$date": "2020-11-12T23:54:59.000Z" + }, + "end": { + "$date": "2020-11-13T00:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "40421db0-f50e-4669-8418-c7f7531a6653", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-13T00:13:03.000Z" + }, + "end": { + "$date": "2020-11-13T01:27:59.000Z" + }, + "events": [ + { + "uuid": "bbbb5a55-cd86-4004-b6eb-6ef40ed7b92f", + "start": { + "$date": "2020-11-13T00:13:03.000Z" + }, + "end": { + "$date": "2020-11-13T01:27:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c023db11-b265-46e9-b59f-bc9478f79fe5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T00:23:37.000Z" + }, + "end": { + "$date": "2020-11-13T01:53:15.000Z" + }, + "events": [ + { + "uuid": "79baca10-e574-46c3-8dd0-06101c0265fc", + "start": { + "$date": "2020-11-13T00:23:37.000Z" + }, + "end": { + "$date": "2020-11-13T00:34:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0da1c79e-fdf3-4132-af85-e0a7e3837629", + "start": { + "$date": "2020-11-13T00:34:37.000Z" + }, + "end": { + "$date": "2020-11-13T00:57:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fcad4e4e-5ca5-4888-8893-d74120af6845", + "start": { + "$date": "2020-11-13T00:57:37.000Z" + }, + "end": { + "$date": "2020-11-13T01:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4027ee8a-018f-43b8-b48e-ffb6572b5af5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-13T00:24:49.000Z" + }, + "end": { + "$date": "2020-11-13T00:49:42.000Z" + }, + "events": [ + { + "uuid": "525b7cd0-25d8-4f44-baca-f3f66928a04e", + "start": { + "$date": "2020-11-13T00:24:49.000Z" + }, + "end": { + "$date": "2020-11-13T00:49:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2a174c38-2a85-4427-a7c2-32eff272e67b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-13T00:27:16.000Z" + }, + "end": { + "$date": "2020-11-13T00:28:52.000Z" + }, + "events": [ + { + "uuid": "e1b1a77d-1a83-4828-9c85-b8be3b831d3b", + "start": { + "$date": "2020-11-13T00:27:16.000Z" + }, + "end": { + "$date": "2020-11-13T00:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "168c6b2f-021d-46ff-b7e4-e7bd826d0aba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-13T01:45:55.000Z" + }, + "end": { + "$date": "2020-11-13T03:19:57.000Z" + }, + "events": [ + { + "uuid": "276f1694-045a-487e-92b2-1b595b73bc9a", + "start": { + "$date": "2020-11-13T01:45:55.000Z" + }, + "end": { + "$date": "2020-11-13T03:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a4035128-a060-4089-bf47-18a91c4424ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T02:00:48.000Z" + }, + "end": { + "$date": "2020-11-13T02:05:56.000Z" + }, + "events": [ + { + "uuid": "e664f06b-ae7f-42f6-aa19-b30b88db8e1a", + "start": { + "$date": "2020-11-13T02:00:48.000Z" + }, + "end": { + "$date": "2020-11-13T02:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1d9dcc02-9ebd-42dc-b784-587ffdb5aed6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-13T02:04:03.000Z" + }, + "end": { + "$date": "2020-11-13T02:05:44.000Z" + }, + "events": [ + { + "uuid": "0e23e3db-411d-41d2-a6ac-e7944298dc27", + "start": { + "$date": "2020-11-13T02:04:03.000Z" + }, + "end": { + "$date": "2020-11-13T02:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5350748a-1b0e-4788-9bed-f4cc8865131b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-13T02:05:54.000Z" + }, + "end": { + "$date": "2020-11-13T02:33:48.000Z" + }, + "events": [ + { + "uuid": "04308112-35f3-4acf-9e5d-a0e279ae4b1c", + "start": { + "$date": "2020-11-13T02:05:54.000Z" + }, + "end": { + "$date": "2020-11-13T02:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "44ce24d0-3def-41e3-a318-422894e0454a", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-11-13T02:21:48.000Z" + }, + "end": { + "$date": "2020-11-13T04:32:52.000Z" + }, + "events": [ + { + "uuid": "1eba36d4-d7b4-42e0-90c1-89383122b173", + "start": { + "$date": "2020-11-13T02:21:48.000Z" + }, + "end": { + "$date": "2020-11-13T04:32:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8e347b8d-6669-4c8a-9072-807b3b5dc12d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T02:22:02.000Z" + }, + "end": { + "$date": "2020-11-13T02:26:27.000Z" + }, + "events": [ + { + "uuid": "9b8624c0-f541-4676-a219-1bb1d49d4806", + "start": { + "$date": "2020-11-13T02:22:02.000Z" + }, + "end": { + "$date": "2020-11-13T02:26:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "852b37ca-5abf-442d-8ce6-26541e8e5288", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T02:27:57.000Z" + }, + "end": { + "$date": "2020-11-13T02:33:48.000Z" + }, + "events": [ + { + "uuid": "15080b47-6406-4df4-859b-595240a124cb", + "start": { + "$date": "2020-11-13T02:27:57.000Z" + }, + "end": { + "$date": "2020-11-13T02:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "54ab2709-46a6-48cb-8771-f048bb994433", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-13T02:29:35.000Z" + }, + "end": { + "$date": "2020-11-13T04:38:24.000Z" + }, + "events": [ + { + "uuid": "1929dfdf-94e4-491a-92a2-d6140e7c6238", + "start": { + "$date": "2020-11-13T02:29:35.000Z" + }, + "end": { + "$date": "2020-11-13T04:38:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ab0ef857-baff-4202-8e3b-ecd62fcc4feb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T02:53:05.000Z" + }, + "end": { + "$date": "2020-11-13T04:09:50.000Z" + }, + "events": [ + { + "uuid": "4c891ae9-344e-4f0e-a15c-b4fa45eb09b7", + "start": { + "$date": "2020-11-13T02:53:05.000Z" + }, + "end": { + "$date": "2020-11-13T04:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b1734930-83f5-4ff8-bf48-fa4f7d89ddc2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-13T02:55:05.000Z" + }, + "end": { + "$date": "2020-11-13T02:58:08.000Z" + }, + "events": [ + { + "uuid": "fd5a6b26-c486-4ed9-a169-c6773163ff89", + "start": { + "$date": "2020-11-13T02:55:05.000Z" + }, + "end": { + "$date": "2020-11-13T02:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "10e777a2-68f2-468a-bdbd-d3bcbba9d507", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-13T02:55:51.000Z" + }, + "end": { + "$date": "2020-11-13T04:09:54.000Z" + }, + "events": [ + { + "uuid": "e64adef2-73a8-4cec-b731-57f3661c7c13", + "start": { + "$date": "2020-11-13T02:55:51.000Z" + }, + "end": { + "$date": "2020-11-13T04:09:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1525061f-a666-4b42-82ce-7c5b3a1dcd5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-13T02:58:26.000Z" + }, + "end": { + "$date": "2020-11-13T03:14:21.000Z" + }, + "events": [ + { + "uuid": "13f0263d-71a6-4041-90a9-66fcfe88b382", + "start": { + "$date": "2020-11-13T02:58:26.000Z" + }, + "end": { + "$date": "2020-11-13T03:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "77de28d0-952d-48f4-a00b-6df6f00e4df1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-13T03:00:10.000Z" + }, + "end": { + "$date": "2020-11-13T05:05:46.000Z" + }, + "events": [ + { + "uuid": "d9b78f74-8227-456d-a077-fabae15cbb47", + "start": { + "$date": "2020-11-13T03:00:10.000Z" + }, + "end": { + "$date": "2020-11-13T05:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a173f4ea-949c-4a86-8b62-351ab1c31fa5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-13T03:21:31.000Z" + }, + "end": { + "$date": "2020-11-13T04:09:58.000Z" + }, + "events": [ + { + "uuid": "6f969ce4-4a6e-4181-ba3f-cc40fb3001db", + "start": { + "$date": "2020-11-13T03:21:31.000Z" + }, + "end": { + "$date": "2020-11-13T04:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "628e2095-f2a1-4a7d-82a1-22bc65b3927e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-13T03:49:34.000Z" + }, + "end": { + "$date": "2020-11-13T04:50:48.000Z" + }, + "events": [ + { + "uuid": "8f72f97d-e7d2-401d-a1eb-60165e3bde29", + "start": { + "$date": "2020-11-13T03:49:34.000Z" + }, + "end": { + "$date": "2020-11-13T04:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7e592bdd-81e6-43ad-a7c4-8c6da44a0051", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-13T03:58:28.000Z" + }, + "end": { + "$date": "2020-11-13T06:44:06.000Z" + }, + "events": [ + { + "uuid": "146c56cd-ad63-467e-83b9-e6ecae177daa", + "start": { + "$date": "2020-11-13T03:58:28.000Z" + }, + "end": { + "$date": "2020-11-13T06:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "c2de4041-d01d-422c-9039-8ecc98a54b10", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-13T04:32:18.000Z" + }, + "end": { + "$date": "2020-11-13T05:01:43.000Z" + }, + "events": [ + { + "uuid": "7a6d932a-d3b3-4f98-9e52-34fa7ca10347", + "start": { + "$date": "2020-11-13T04:32:18.000Z" + }, + "end": { + "$date": "2020-11-13T05:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dbef64bc-5241-4ee6-9d82-bb9a4cd15780", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-13T04:42:47.000Z" + }, + "end": { + "$date": "2020-11-13T04:56:17.000Z" + }, + "events": [ + { + "uuid": "7774d5bf-c725-4a5c-8914-421c67b58e65", + "start": { + "$date": "2020-11-13T04:42:47.000Z" + }, + "end": { + "$date": "2020-11-13T04:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "25ddb6d9-5e9b-48e8-adc4-d8cf93e85347", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-13T05:20:33.000Z" + }, + "end": { + "$date": "2020-11-13T06:41:37.000Z" + }, + "events": [ + { + "uuid": "01985ae4-6933-4cdd-a698-0d66f9cd1241", + "start": { + "$date": "2020-11-13T05:20:33.000Z" + }, + "end": { + "$date": "2020-11-13T06:41:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "766a3663-af92-4b51-a33b-601baf4631db", + "uuid": "2a12446a-6ad1-4f55-8507-c5c02246a6b4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-13T05:22:58.000Z" + }, + "end": { + "$date": "2020-11-13T05:45:13.000Z" + }, + "events": [ + { + "uuid": "999e1c00-47e9-42c1-9e54-af81d9cf0cce", + "start": { + "$date": "2020-11-13T05:22:58.000Z" + }, + "end": { + "$date": "2020-11-13T05:45:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a18e6a56-841a-4ceb-9c44-5d2033b7928a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-13T05:34:47.000Z" + }, + "end": { + "$date": "2020-11-13T07:14:01.000Z" + }, + "events": [ + { + "uuid": "aebaffd2-7b83-48bb-8d41-fdb8de8be8bd", + "start": { + "$date": "2020-11-13T05:34:47.000Z" + }, + "end": { + "$date": "2020-11-13T07:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "766a3663-af92-4b51-a33b-601baf4631db", + "uuid": "3e0be1cd-d8da-494a-a89e-2bddddf8435f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-13T05:45:17.000Z" + }, + "end": { + "$date": "2020-11-13T06:01:59.000Z" + }, + "events": [ + { + "uuid": "9151a5ce-cb7e-4bbb-abaa-8d6873ca0579", + "start": { + "$date": "2020-11-13T05:45:17.000Z" + }, + "end": { + "$date": "2020-11-13T06:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "766a3663-af92-4b51-a33b-601baf4631db", + "uuid": "a096aac3-9249-4cba-b398-954d571aeaed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-13T06:02:10.000Z" + }, + "end": { + "$date": "2020-11-13T07:15:28.000Z" + }, + "events": [ + { + "uuid": "eb750ad8-738a-4fa1-9c60-052c794fea05", + "start": { + "$date": "2020-11-13T06:02:10.000Z" + }, + "end": { + "$date": "2020-11-13T07:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "2ee2e2e1-058c-4567-919b-521b60e6225c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-13T07:37:14.000Z" + }, + "end": { + "$date": "2020-11-13T09:40:43.000Z" + }, + "events": [ + { + "uuid": "6f790fbc-ecd4-48d4-877d-46ed00150ec2", + "start": { + "$date": "2020-11-13T07:37:14.000Z" + }, + "end": { + "$date": "2020-11-13T09:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", + "uuid": "5d41a7c2-6e2e-413a-bd75-3ed38ac3046a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-13T07:46:59.000Z" + }, + "end": { + "$date": "2020-11-13T07:59:17.000Z" + }, + "events": [ + { + "uuid": "8b8b1f52-5e1c-4d36-a7bd-dfe1c1328714", + "start": { + "$date": "2020-11-13T07:46:59.000Z" + }, + "end": { + "$date": "2020-11-13T07:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fa6b7f17-230e-46da-8ded-b82ac2e7ac7c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-13T16:05:45.000Z" + }, + "end": { + "$date": "2020-11-13T17:07:13.000Z" + }, + "events": [ + { + "uuid": "dd6ffb9e-5e7c-4352-b3e6-94d67bffda64", + "start": { + "$date": "2020-11-13T16:05:45.000Z" + }, + "end": { + "$date": "2020-11-13T17:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6db40d91-646c-4879-b93b-fa8ade208b54", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-13T17:41:42.000Z" + }, + "end": { + "$date": "2020-11-13T18:11:07.000Z" + }, + "events": [ + { + "uuid": "b2276046-dc32-47fa-84a9-29133a77bc76", + "start": { + "$date": "2020-11-13T17:41:42.000Z" + }, + "end": { + "$date": "2020-11-13T18:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a3c32fd-7b59-45ee-a971-7187a91bc6f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-13T18:24:09.000Z" + }, + "end": { + "$date": "2020-11-13T18:54:33.000Z" + }, + "events": [ + { + "uuid": "8e070b9f-9a41-46d4-91c2-649bcf496324", + "start": { + "$date": "2020-11-13T18:24:09.000Z" + }, + "end": { + "$date": "2020-11-13T18:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "a88a1eb4-d99d-4c41-83d6-a626af59f058", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T18:14:33.000Z" + }, + "end": { + "$date": "2020-11-13T18:15:59.000Z" + }, + "events": [ + { + "uuid": "71b037f2-99ba-41ec-b1b8-5cef9f782abb", + "start": { + "$date": "2020-11-13T18:14:33.000Z" + }, + "end": { + "$date": "2020-11-13T18:15:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "41f3ab91-0dbe-4676-9987-e2ed67b70704", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T18:17:33.000Z" + }, + "end": { + "$date": "2020-11-13T19:09:26.000Z" + }, + "events": [ + { + "uuid": "5feae9cd-b05f-42e4-b678-92348bf99188", + "start": { + "$date": "2020-11-13T18:17:33.000Z" + }, + "end": { + "$date": "2020-11-13T19:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "886c2413-de94-47a0-b57b-eb51ed94bddd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-13T19:02:55.000Z" + }, + "end": { + "$date": "2020-11-13T19:37:00.000Z" + }, + "events": [ + { + "uuid": "2dd9f804-32bc-4b0d-b107-ff2d4d0659be", + "start": { + "$date": "2020-11-13T19:02:55.000Z" + }, + "end": { + "$date": "2020-11-13T19:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72a1572c-bf42-46dd-ab5c-bf96d4e0d5bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T19:36:23.000Z" + }, + "end": { + "$date": "2020-11-13T20:13:26.000Z" + }, + "events": [ + { + "uuid": "c210082e-74a5-403a-8a33-ad2b215f2afe", + "start": { + "$date": "2020-11-13T19:36:23.000Z" + }, + "end": { + "$date": "2020-11-13T20:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "465699a1-3895-4679-8b04-526b747f4205", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-13T19:42:17.000Z" + }, + "end": { + "$date": "2020-11-13T20:25:17.000Z" + }, + "events": [ + { + "uuid": "4b4e6b7c-7765-44d9-9cdd-702a3dd16bfc", + "start": { + "$date": "2020-11-13T19:42:17.000Z" + }, + "end": { + "$date": "2020-11-13T20:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "uuid": "401375f5-5e60-4bf2-a908-be9a52be187a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-13T20:08:00.000Z" + }, + "end": { + "$date": "2020-11-13T20:10:20.000Z" + }, + "events": [ + { + "uuid": "1aafbf05-cdd2-404a-849c-b0e12135546f", + "start": { + "$date": "2020-11-13T20:08:00.000Z" + }, + "end": { + "$date": "2020-11-13T20:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cb1f828b-c69a-4d45-a8e2-a801e7b05bb0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-13T20:16:49.000Z" + }, + "end": { + "$date": "2020-11-13T20:19:16.000Z" + }, + "events": [ + { + "uuid": "a65a43d0-23b0-4fed-8167-d6762db79ea4", + "start": { + "$date": "2020-11-13T20:16:49.000Z" + }, + "end": { + "$date": "2020-11-13T20:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "123a3530-4151-4ef6-a0b2-95af4b85afcb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-13T20:32:24.000Z" + }, + "end": { + "$date": "2020-11-13T20:59:38.000Z" + }, + "events": [ + { + "uuid": "45ecac2a-0a0e-47cd-92e4-b4db0dd8696f", + "start": { + "$date": "2020-11-13T20:32:24.000Z" + }, + "end": { + "$date": "2020-11-13T20:59:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "84cc483c-996c-4e8b-89a2-825032dcf5c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-11-13T22:32:12.000Z" + }, + "end": { + "$date": "2020-11-13T23:57:36.000Z" + }, + "events": [ + { + "uuid": "46481dd4-f1f7-4d7b-b00c-4ba634a670d5", + "start": { + "$date": "2020-11-13T22:32:12.000Z" + }, + "end": { + "$date": "2020-11-13T23:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffdb27d6-2cb7-466f-8473-fa93b5f27d34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-13T22:58:58.000Z" + }, + "end": { + "$date": "2020-11-13T23:34:31.000Z" + }, + "events": [ + { + "uuid": "56eb3b93-4c74-42d1-94f6-8e12c46575d9", + "start": { + "$date": "2020-11-13T22:58:58.000Z" + }, + "end": { + "$date": "2020-11-13T23:34:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "a6abfa40-3f21-4692-909c-5e9b9e03744e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-13T23:13:58.000Z" + }, + "end": { + "$date": "2020-11-14T00:01:39.000Z" + }, + "events": [ + { + "uuid": "136e8c3b-cc36-4e2b-9824-61eecea41635", + "start": { + "$date": "2020-11-13T23:13:58.000Z" + }, + "end": { + "$date": "2020-11-14T00:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "33d8b842-2d4b-4843-84b5-c1837d7ce136", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-13T23:57:34.000Z" + }, + "end": { + "$date": "2020-11-14T00:10:05.000Z" + }, + "events": [ + { + "uuid": "5670b491-abfc-40ae-be27-80f928fee3a0", + "start": { + "$date": "2020-11-13T23:57:34.000Z" + }, + "end": { + "$date": "2020-11-14T00:10:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "6d19c2ca-bdcf-4b0e-9bc4-9a352b6393d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T00:07:25.000Z" + }, + "end": { + "$date": "2020-11-14T00:09:22.000Z" + }, + "events": [ + { + "uuid": "4fabaf4b-2f89-42ac-a631-45ca83d42a58", + "start": { + "$date": "2020-11-14T00:07:25.000Z" + }, + "end": { + "$date": "2020-11-14T00:09:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "0da8488e-2499-4cfe-bbe2-a99f2b14a08e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T00:09:33.000Z" + }, + "end": { + "$date": "2020-11-14T00:13:33.000Z" + }, + "events": [ + { + "uuid": "ec6f27f6-823d-4614-ac68-c447c46c817f", + "start": { + "$date": "2020-11-14T00:09:33.000Z" + }, + "end": { + "$date": "2020-11-14T00:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "3caa12da-519f-401a-aca5-9af375bc8bbb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T00:19:29.000Z" + }, + "end": { + "$date": "2020-11-14T00:26:05.000Z" + }, + "events": [ + { + "uuid": "812f04e1-b058-483b-a8f3-d764ae39791f", + "start": { + "$date": "2020-11-14T00:19:29.000Z" + }, + "end": { + "$date": "2020-11-14T00:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "82c1eb84-9d66-480e-bde1-2e72708f2534", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T00:26:55.000Z" + }, + "end": { + "$date": "2020-11-14T01:07:37.000Z" + }, + "events": [ + { + "uuid": "8588235e-dccc-4a16-bee4-a0003eefb103", + "start": { + "$date": "2020-11-14T00:26:55.000Z" + }, + "end": { + "$date": "2020-11-14T01:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ed623995-feb7-4586-874e-99e21456a7c1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-14T00:40:22.000Z" + }, + "end": { + "$date": "2020-11-14T01:01:27.000Z" + }, + "events": [ + { + "uuid": "3f3d4e88-52eb-48d0-80eb-4d39d6d2b805", + "start": { + "$date": "2020-11-14T00:40:22.000Z" + }, + "end": { + "$date": "2020-11-14T01:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "65cb5a59-7991-46fb-adb3-2b2930160ee2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T01:04:22.000Z" + }, + "end": { + "$date": "2020-11-14T01:26:25.000Z" + }, + "events": [ + { + "uuid": "0d676ba3-c934-491f-b550-01e267b45d54", + "start": { + "$date": "2020-11-14T01:04:22.000Z" + }, + "end": { + "$date": "2020-11-14T01:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "ffc741a6-2099-4d53-bd72-3cddbddd1c02", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T01:07:53.000Z" + }, + "end": { + "$date": "2020-11-14T01:51:01.000Z" + }, + "events": [ + { + "uuid": "d6e8179a-3a0b-4ce6-abb7-263640f655c9", + "start": { + "$date": "2020-11-14T01:07:53.000Z" + }, + "end": { + "$date": "2020-11-14T01:51:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "49eea530-950f-4c70-aa89-bb0a61546e9f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-14T01:48:31.000Z" + }, + "end": { + "$date": "2020-11-14T04:45:57.000Z" + }, + "events": [ + { + "uuid": "6c37f404-76aa-4a45-b339-cd2743db3a32", + "start": { + "$date": "2020-11-14T01:48:31.000Z" + }, + "end": { + "$date": "2020-11-14T04:45:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "519adaa6-1614-4661-8105-0cb154813042", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-14T02:00:21.000Z" + }, + "end": { + "$date": "2020-11-14T02:35:59.000Z" + }, + "events": [ + { + "uuid": "55983289-0a4d-4281-993e-f3ac2faf2c2d", + "start": { + "$date": "2020-11-14T02:00:21.000Z" + }, + "end": { + "$date": "2020-11-14T02:35:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "4e1c6536-2f97-4d69-8d47-100d95c5edea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T02:00:22.000Z" + }, + "end": { + "$date": "2020-11-14T03:03:27.000Z" + }, + "events": [ + { + "uuid": "bd9d0145-17bc-4d6b-9785-91991977b144", + "start": { + "$date": "2020-11-14T02:00:22.000Z" + }, + "end": { + "$date": "2020-11-14T03:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "415750fe-c99c-4f2b-b602-3ca00eea28fa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-14T02:55:46.000Z" + }, + "end": { + "$date": "2020-11-14T03:30:38.000Z" + }, + "events": [ + { + "uuid": "abca7584-71ad-4662-ac0e-85805d720e13", + "start": { + "$date": "2020-11-14T02:55:46.000Z" + }, + "end": { + "$date": "2020-11-14T03:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1170a82-7d2f-4dfa-8e2d-995a2f78c5b9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T02:39:56.000Z" + }, + "end": { + "$date": "2020-11-14T02:41:31.000Z" + }, + "events": [ + { + "uuid": "10c6bd82-5b76-4772-a323-3fe69420b1eb", + "start": { + "$date": "2020-11-14T02:39:56.000Z" + }, + "end": { + "$date": "2020-11-14T02:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84b07fb5-d0c9-4ac9-aa0c-899cf7662e2c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T02:57:17.000Z" + }, + "end": { + "$date": "2020-11-14T03:30:29.000Z" + }, + "events": [ + { + "uuid": "2343eb8b-68f1-4c96-a8e0-13f60e473abc", + "start": { + "$date": "2020-11-14T02:57:17.000Z" + }, + "end": { + "$date": "2020-11-14T03:30:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8fa0e192-1f7f-46ba-ad72-2f39758fec27", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-14T03:04:02.000Z" + }, + "end": { + "$date": "2020-11-14T05:57:03.000Z" + }, + "events": [ + { + "uuid": "5a43b848-6ac1-4ce9-a9a0-2df29048ce45", + "start": { + "$date": "2020-11-14T03:04:02.000Z" + }, + "end": { + "$date": "2020-11-14T05:57:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81bdbe9e-f6b8-4a8f-b11f-7f39f466bf6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-14T03:53:12.000Z" + }, + "end": { + "$date": "2020-11-14T04:27:42.000Z" + }, + "events": [ + { + "uuid": "92f2b2ba-03a1-4155-acec-9ffb52312fdd", + "start": { + "$date": "2020-11-14T03:53:12.000Z" + }, + "end": { + "$date": "2020-11-14T04:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2bcc2ad-1079-4baf-91a0-3200c5435522", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T03:31:51.000Z" + }, + "end": { + "$date": "2020-11-14T03:37:48.000Z" + }, + "events": [ + { + "uuid": "938cfeec-7f57-4a6d-8ab8-d17631706eb0", + "start": { + "$date": "2020-11-14T03:31:51.000Z" + }, + "end": { + "$date": "2020-11-14T03:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "326fbb5d-02e2-4272-9434-dafaa42cd0ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T03:43:57.000Z" + }, + "end": { + "$date": "2020-11-14T03:47:06.000Z" + }, + "events": [ + { + "uuid": "093a7cda-96b5-4402-b4fa-6b2b22203959", + "start": { + "$date": "2020-11-14T03:43:57.000Z" + }, + "end": { + "$date": "2020-11-14T03:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ec3d667-3f71-4c26-a137-164d80a2a73d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T03:47:06.000Z" + }, + "end": { + "$date": "2020-11-14T03:50:38.000Z" + }, + "events": [ + { + "uuid": "55cbd7ac-ae9b-46e9-b1d4-813913da4410", + "start": { + "$date": "2020-11-14T03:47:06.000Z" + }, + "end": { + "$date": "2020-11-14T03:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2168679-245c-4d89-8d84-c44149d77227", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T04:27:40.000Z" + }, + "end": { + "$date": "2020-11-14T04:28:31.000Z" + }, + "events": [ + { + "uuid": "bb958d9b-ccda-497b-b393-5c12d5866972", + "start": { + "$date": "2020-11-14T04:27:40.000Z" + }, + "end": { + "$date": "2020-11-14T04:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6365e825-5800-4ae0-9560-e4e584b1bc25", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-14T04:13:13.000Z" + }, + "end": { + "$date": "2020-11-14T06:48:38.000Z" + }, + "events": [ + { + "uuid": "0b41d602-e31a-41d7-b8c2-2e4981c760d1", + "start": { + "$date": "2020-11-14T04:13:13.000Z" + }, + "end": { + "$date": "2020-11-14T06:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "f459ed47-ee34-44aa-887e-2f47a431a745", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T04:45:37.000Z" + }, + "end": { + "$date": "2020-11-14T08:04:35.000Z" + }, + "events": [ + { + "uuid": "12d9edaa-c3ed-457b-9900-29b70b8bb932", + "start": { + "$date": "2020-11-14T04:45:37.000Z" + }, + "end": { + "$date": "2020-11-14T08:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "625e6c14-2d25-45a5-bd79-19108f51ea09", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T04:59:56.000Z" + }, + "end": { + "$date": "2020-11-14T05:27:29.000Z" + }, + "events": [ + { + "uuid": "05a74dcb-1fa4-4991-94c7-9d62a01d7878", + "start": { + "$date": "2020-11-14T04:59:56.000Z" + }, + "end": { + "$date": "2020-11-14T05:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1e146baf-b241-4193-9b09-6628526205c0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T05:02:00.000Z" + }, + "end": { + "$date": "2020-11-14T05:27:34.000Z" + }, + "events": [ + { + "uuid": "bef19ca4-b963-4a1d-aa07-f592517e1612", + "start": { + "$date": "2020-11-14T05:02:00.000Z" + }, + "end": { + "$date": "2020-11-14T05:27:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa06e568-a05f-41df-9890-78a994958069", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T05:32:47.000Z" + }, + "end": { + "$date": "2020-11-14T05:51:55.000Z" + }, + "events": [ + { + "uuid": "30395792-007b-41a5-aa17-0a811f1db641", + "start": { + "$date": "2020-11-14T05:32:47.000Z" + }, + "end": { + "$date": "2020-11-14T05:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b6704b2-424c-429c-a5ac-4e9d386e7fe5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-14T05:59:00.000Z" + }, + "end": { + "$date": "2020-11-14T06:28:26.000Z" + }, + "events": [ + { + "uuid": "43fcc234-6867-4da4-ab4d-c439c8e716f0", + "start": { + "$date": "2020-11-14T05:59:00.000Z" + }, + "end": { + "$date": "2020-11-14T06:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da872cca-d954-4b14-a9cc-bb0bb86d73e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T05:58:58.000Z" + }, + "end": { + "$date": "2020-11-14T06:28:25.000Z" + }, + "events": [ + { + "uuid": "7cea8ed5-abc0-4339-a151-d5974fc7d7ab", + "start": { + "$date": "2020-11-14T05:58:58.000Z" + }, + "end": { + "$date": "2020-11-14T06:28:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3315923f-83cb-4e99-9940-ef3597a15e8d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-14T06:01:46.000Z" + }, + "end": { + "$date": "2020-11-14T07:01:24.000Z" + }, + "events": [ + { + "uuid": "7a5868bf-0dc4-4c06-940b-469484984dcb", + "start": { + "$date": "2020-11-14T06:01:46.000Z" + }, + "end": { + "$date": "2020-11-14T07:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "5e87911d-92c5-40ff-8826-5003e50db77b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-14T06:22:08.000Z" + }, + "end": { + "$date": "2020-11-14T06:52:24.000Z" + }, + "events": [ + { + "uuid": "e0063189-fa72-4a92-b9e2-d936918c54a3", + "start": { + "$date": "2020-11-14T06:22:08.000Z" + }, + "end": { + "$date": "2020-11-14T06:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2178ea07-d37c-4a25-83f2-90ebe409c503", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T06:31:15.000Z" + }, + "end": { + "$date": "2020-11-14T07:35:38.000Z" + }, + "events": [ + { + "uuid": "c4219686-1381-43e0-aa50-c4ca81c702af", + "start": { + "$date": "2020-11-14T06:31:15.000Z" + }, + "end": { + "$date": "2020-11-14T07:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "63dd7004-c75d-46c5-b061-8bc09f2769b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-14T06:38:13.000Z" + }, + "end": { + "$date": "2020-11-14T07:35:21.000Z" + }, + "events": [ + { + "uuid": "dd00ea15-199d-46c9-ba89-375201c248f2", + "start": { + "$date": "2020-11-14T06:38:13.000Z" + }, + "end": { + "$date": "2020-11-14T07:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7440662-92d4-4539-9736-28115a5c3b6b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-14T06:43:54.000Z" + }, + "end": { + "$date": "2020-11-14T07:39:17.000Z" + }, + "events": [ + { + "uuid": "fa026822-ca6e-4ef9-852c-6fcd01e0fd52", + "start": { + "$date": "2020-11-14T06:43:54.000Z" + }, + "end": { + "$date": "2020-11-14T07:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cafbdcbc-dc32-462b-adf7-e49e25eb2f37", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-14T06:49:52.000Z" + }, + "end": { + "$date": "2020-11-14T07:38:09.000Z" + }, + "events": [ + { + "uuid": "40c8e685-ead8-431e-a6a1-21383aa3d6d9", + "start": { + "$date": "2020-11-14T06:49:52.000Z" + }, + "end": { + "$date": "2020-11-14T07:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36338fe3-0689-4016-93b4-de93f10d4c0c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-14T06:52:57.000Z" + }, + "end": { + "$date": "2020-11-14T07:38:36.000Z" + }, + "events": [ + { + "uuid": "20e1855f-f109-4cd3-90c4-8744b0867f2a", + "start": { + "$date": "2020-11-14T06:52:57.000Z" + }, + "end": { + "$date": "2020-11-14T07:38:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "265ff891-2211-4340-8438-12b932ab13b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-14T07:34:42.000Z" + }, + "end": { + "$date": "2020-11-14T08:01:47.000Z" + }, + "events": [ + { + "uuid": "3f2805cc-96cf-4a61-9d29-e95747edbf2c", + "start": { + "$date": "2020-11-14T07:34:42.000Z" + }, + "end": { + "$date": "2020-11-14T08:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "0c5e2e9a-fab1-49b4-bcf0-1ecc815d5cf6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-14T07:47:09.000Z" + }, + "end": { + "$date": "2020-11-14T08:22:21.000Z" + }, + "events": [ + { + "uuid": "5ee867c9-c628-468d-a5d2-8938ba33032b", + "start": { + "$date": "2020-11-14T07:47:09.000Z" + }, + "end": { + "$date": "2020-11-14T08:22:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "7f7d9e9c-d48a-483b-938b-4575598bd502", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T17:12:50.000Z" + }, + "end": { + "$date": "2020-11-14T17:14:20.000Z" + }, + "events": [ + { + "uuid": "8c769739-f8e9-4a02-a35e-66403d67ddbf", + "start": { + "$date": "2020-11-14T17:12:50.000Z" + }, + "end": { + "$date": "2020-11-14T17:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "138c28b4-a97c-43c1-af16-6325338dbd63", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T17:14:40.000Z" + }, + "end": { + "$date": "2020-11-14T17:49:41.000Z" + }, + "events": [ + { + "uuid": "fc8d3e39-862a-4025-957c-b84378dddefc", + "start": { + "$date": "2020-11-14T17:14:40.000Z" + }, + "end": { + "$date": "2020-11-14T17:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1533a69-a5aa-49e9-8992-bb7c07a50a33", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-14T19:43:09.000Z" + }, + "end": { + "$date": "2020-11-14T20:22:23.000Z" + }, + "events": [ + { + "uuid": "691692df-f937-48a6-92f6-71744ab504fe", + "start": { + "$date": "2020-11-14T19:43:09.000Z" + }, + "end": { + "$date": "2020-11-14T20:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "bc16df75-227e-453f-8176-4a6f8126b617", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T19:44:16.000Z" + }, + "end": { + "$date": "2020-11-14T20:23:42.000Z" + }, + "events": [ + { + "uuid": "e9b324aa-a91a-405d-bd20-37bf0733f6e4", + "start": { + "$date": "2020-11-14T19:44:16.000Z" + }, + "end": { + "$date": "2020-11-14T20:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "70932b99-fdee-4508-83b8-c084685652ea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-14T20:25:13.000Z" + }, + "end": { + "$date": "2020-11-14T23:46:37.000Z" + }, + "events": [ + { + "uuid": "1bea022a-c98a-4153-b602-728fad2e9e16", + "start": { + "$date": "2020-11-14T20:25:13.000Z" + }, + "end": { + "$date": "2020-11-14T23:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c49a32dd-8707-4461-abea-e052f38bf64d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-14T21:26:14.000Z" + }, + "end": { + "$date": "2020-11-14T23:28:11.000Z" + }, + "events": [ + { + "uuid": "d21b0e88-5c8e-4d1e-93a3-74e402faa6b1", + "start": { + "$date": "2020-11-14T21:26:14.000Z" + }, + "end": { + "$date": "2020-11-14T23:28:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "3b77e19a-76c2-4b83-9833-4afd1f304121", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-14T21:58:19.000Z" + }, + "end": { + "$date": "2020-11-15T01:00:54.000Z" + }, + "events": [ + { + "uuid": "2e834d72-542c-4387-a88b-ad12fadd6d9a", + "start": { + "$date": "2020-11-14T21:58:19.000Z" + }, + "end": { + "$date": "2020-11-15T01:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "942ac0ea-9678-4b02-abed-0c27bce3b5c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T22:19:43.000Z" + }, + "end": { + "$date": "2020-11-14T22:21:10.000Z" + }, + "events": [ + { + "uuid": "ad42e895-8614-4171-801f-e5cce62b6c90", + "start": { + "$date": "2020-11-14T22:19:43.000Z" + }, + "end": { + "$date": "2020-11-14T22:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e6807d80-0b96-4e1c-a699-78f01aa0e197", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T22:21:18.000Z" + }, + "end": { + "$date": "2020-11-14T22:22:23.000Z" + }, + "events": [ + { + "uuid": "278e143e-cd30-4165-b4a4-61f5c0058441", + "start": { + "$date": "2020-11-14T22:21:18.000Z" + }, + "end": { + "$date": "2020-11-14T22:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ac1fd664-e9de-4e38-b9f5-443308d0415f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-14T22:53:16.000Z" + }, + "end": { + "$date": "2020-11-14T23:46:25.000Z" + }, + "events": [ + { + "uuid": "f3094cd6-8310-4586-9ec7-3278bfc3b9d8", + "start": { + "$date": "2020-11-14T22:53:16.000Z" + }, + "end": { + "$date": "2020-11-14T23:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "2e90a60e-b4f6-451d-b44f-fb636d5d8fa7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-14T23:18:37.000Z" + }, + "end": { + "$date": "2020-11-15T06:10:50.000Z" + }, + "events": [ + { + "uuid": "3ea59745-f483-4a79-9d94-78788f4d4311", + "start": { + "$date": "2020-11-14T23:18:37.000Z" + }, + "end": { + "$date": "2020-11-15T06:10:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "uuid": "9c1ddaa0-6c1d-465a-9003-21756dc4e67e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-14T23:30:37.000Z" + }, + "end": { + "$date": "2020-11-14T23:35:21.000Z" + }, + "events": [ + { + "uuid": "e126299f-13c3-491d-bfe4-0bfa10fc9506", + "start": { + "$date": "2020-11-14T23:30:37.000Z" + }, + "end": { + "$date": "2020-11-14T23:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "357929ff-1b10-4796-8b87-1c5cdd9781eb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-14T23:36:37.000Z" + }, + "end": { + "$date": "2020-11-14T23:42:47.000Z" + }, + "events": [ + { + "uuid": "c3f39c2d-9e9a-4788-9098-62c19a80d7fc", + "start": { + "$date": "2020-11-14T23:36:37.000Z" + }, + "end": { + "$date": "2020-11-14T23:42:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "9f097eff-a74e-4740-b4ed-922d294c9495", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-14T22:10:36.000Z" + }, + "end": { + "$date": "2020-11-15T02:47:02.000Z" + }, + "events": [ + { + "uuid": "3c006ce5-dbb2-477a-b41d-7b371f692e33", + "start": { + "$date": "2020-11-14T22:10:36.000Z" + }, + "end": { + "$date": "2020-11-14T23:11:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5310c89-158a-4582-a20e-04b88806210e", + "start": { + "$date": "2020-11-14T23:11:36.000Z" + }, + "end": { + "$date": "2020-11-14T23:20:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ffdc3e36-c2fa-498c-9b2b-5ec7a32411b3", + "start": { + "$date": "2020-11-14T23:20:36.000Z" + }, + "end": { + "$date": "2020-11-14T23:47:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3fb58351-13e7-41b2-9a71-7a87b9e10098", + "start": { + "$date": "2020-11-14T23:47:36.000Z" + }, + "end": { + "$date": "2020-11-15T00:18:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3999ce4d-620d-4d2d-b63c-ebd0a540c7af", + "start": { + "$date": "2020-11-15T00:18:36.000Z" + }, + "end": { + "$date": "2020-11-15T02:47:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b4af6f75-b016-4c66-bfd7-bf090843b259", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-15T01:37:04.000Z" + }, + "end": { + "$date": "2020-11-15T02:02:56.000Z" + }, + "events": [ + { + "uuid": "8c049dea-a6c4-4437-b392-b6b8cb7fe9bc", + "start": { + "$date": "2020-11-15T01:37:04.000Z" + }, + "end": { + "$date": "2020-11-15T02:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "6011a443-c5d0-4aad-abd8-e1a1bfaad152", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-15T02:00:03.000Z" + }, + "end": { + "$date": "2020-11-15T03:07:40.000Z" + }, + "events": [ + { + "uuid": "621f75c5-e653-4dbb-b2e2-2c5cb15f3555", + "start": { + "$date": "2020-11-15T02:00:03.000Z" + }, + "end": { + "$date": "2020-11-15T03:07:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "2994e93a-f31e-4f9c-b1bb-34e3dd98d8af", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-15T02:49:30.000Z" + }, + "end": { + "$date": "2020-11-15T07:48:31.000Z" + }, + "events": [ + { + "uuid": "2722c18b-451e-4249-943a-c8eb9790f9aa", + "start": { + "$date": "2020-11-15T02:49:30.000Z" + }, + "end": { + "$date": "2020-11-15T03:44:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85bc6fd8-689e-45cd-9dd0-1d2399a12ba9", + "start": { + "$date": "2020-11-15T03:44:30.000Z" + }, + "end": { + "$date": "2020-11-15T04:13:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd853737-d978-4b62-b0a9-0ce540cffda1", + "start": { + "$date": "2020-11-15T04:13:30.000Z" + }, + "end": { + "$date": "2020-11-15T07:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "00877909-9c78-43d5-8e9f-d6bd46874b7c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-15T03:09:12.000Z" + }, + "end": { + "$date": "2020-11-15T06:30:38.000Z" + }, + "events": [ + { + "uuid": "1ee78d75-9318-432a-a789-365b706ac857", + "start": { + "$date": "2020-11-15T03:09:12.000Z" + }, + "end": { + "$date": "2020-11-15T06:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "ff0ad6c0-f50e-49f3-8a22-250d9435a23b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-15T03:17:52.000Z" + }, + "end": { + "$date": "2020-11-15T04:15:50.000Z" + }, + "events": [ + { + "uuid": "42a6cfe8-55b7-4c0d-b11b-cb18dcbb1dc0", + "start": { + "$date": "2020-11-15T03:17:52.000Z" + }, + "end": { + "$date": "2020-11-15T04:15:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "24b1ca00-aa56-43f2-8e91-2294ad9dc058", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-15T03:35:46.000Z" + }, + "end": { + "$date": "2020-11-15T04:02:31.000Z" + }, + "events": [ + { + "uuid": "ab9337ba-7207-4627-937b-1bda042b33d3", + "start": { + "$date": "2020-11-15T03:35:46.000Z" + }, + "end": { + "$date": "2020-11-15T04:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73dd1b78-995d-4a3d-99e6-f980a46c334e", + "uuid": "06fd0b7d-d6fe-4a40-acf1-fbff4ae58205", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-15T03:58:22.000Z" + }, + "end": { + "$date": "2020-11-15T04:50:47.000Z" + }, + "events": [ + { + "uuid": "e6db3d1a-62a7-4a9c-90b5-daf7fe5c8551", + "start": { + "$date": "2020-11-15T03:58:22.000Z" + }, + "end": { + "$date": "2020-11-15T04:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a0d1a20d-72e5-4be6-ba30-88e6ea7be2d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T04:06:34.000Z" + }, + "end": { + "$date": "2020-11-15T05:23:14.000Z" + }, + "events": [ + { + "uuid": "11f0b1a3-778c-49f6-960c-1d27b2a0d942", + "start": { + "$date": "2020-11-15T04:06:34.000Z" + }, + "end": { + "$date": "2020-11-15T04:59:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c6a9f63-3b75-4788-ae4f-cd7c3d9c4c74", + "start": { + "$date": "2020-11-15T04:59:34.000Z" + }, + "end": { + "$date": "2020-11-15T05:13:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1eaccb09-97da-4402-8838-bcb5e9f67f71", + "start": { + "$date": "2020-11-15T05:13:34.000Z" + }, + "end": { + "$date": "2020-11-15T05:23:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "dd0e0892-1141-47d5-8916-64bd0d340ed3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-15T04:09:24.000Z" + }, + "end": { + "$date": "2020-11-15T05:01:22.000Z" + }, + "events": [ + { + "uuid": "1b619725-30fc-4177-8ccc-bad8dad53109", + "start": { + "$date": "2020-11-15T04:09:24.000Z" + }, + "end": { + "$date": "2020-11-15T05:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "411aaa00-ff73-4d9a-bcf6-addc9d8c7dfd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-15T04:16:37.000Z" + }, + "end": { + "$date": "2020-11-15T06:00:33.000Z" + }, + "events": [ + { + "uuid": "6783c7a0-4679-4a30-8025-61a529f59827", + "start": { + "$date": "2020-11-15T04:16:37.000Z" + }, + "end": { + "$date": "2020-11-15T06:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "72923a15-fb3c-4a2b-be36-93290fef22b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-15T05:01:51.000Z" + }, + "end": { + "$date": "2020-11-15T06:44:09.000Z" + }, + "events": [ + { + "uuid": "8c8bf3fd-aaf7-48d1-933b-73234792a137", + "start": { + "$date": "2020-11-15T05:01:51.000Z" + }, + "end": { + "$date": "2020-11-15T06:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "053cedc7-db96-43d2-a254-93a0196c6381", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-15T05:05:29.000Z" + }, + "end": { + "$date": "2020-11-15T05:15:42.000Z" + }, + "events": [ + { + "uuid": "c28049db-dd15-4373-a156-6c9500d08ea7", + "start": { + "$date": "2020-11-15T05:05:29.000Z" + }, + "end": { + "$date": "2020-11-15T05:15:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "6d3a91db-8dac-4ee5-bc6f-6ba43a454477", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-15T05:51:15.000Z" + }, + "end": { + "$date": "2020-11-15T07:12:54.000Z" + }, + "events": [ + { + "uuid": "04e8cffb-b61c-4793-84fa-2ecdb9bce2f7", + "start": { + "$date": "2020-11-15T05:51:15.000Z" + }, + "end": { + "$date": "2020-11-15T07:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "141cc898-711a-4ba0-9b78-d763d345a752", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-15T06:00:41.000Z" + }, + "end": { + "$date": "2020-11-15T06:33:06.000Z" + }, + "events": [ + { + "uuid": "cfca14ac-be42-45f3-86e3-326864569874", + "start": { + "$date": "2020-11-15T06:00:41.000Z" + }, + "end": { + "$date": "2020-11-15T06:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5303e44e-054b-4422-8d78-7b1981ef458d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-15T07:19:17.000Z" + }, + "end": { + "$date": "2020-11-15T08:29:56.000Z" + }, + "events": [ + { + "uuid": "ce213135-03a9-4652-ba3c-347a167a4984", + "start": { + "$date": "2020-11-15T07:19:17.000Z" + }, + "end": { + "$date": "2020-11-15T08:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "9c72a264-4769-4dc0-a98b-12e2bdc982d3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-15T08:30:24.000Z" + }, + "end": { + "$date": "2020-11-15T13:06:27.000Z" + }, + "events": [ + { + "uuid": "e6c052c6-4484-469b-9e50-580c46079916", + "start": { + "$date": "2020-11-15T08:30:24.000Z" + }, + "end": { + "$date": "2020-11-15T13:06:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "36999454-45f4-4df2-8c51-47dbebc5d061", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-15T15:57:01.000Z" + }, + "end": { + "$date": "2020-11-15T16:35:28.000Z" + }, + "events": [ + { + "uuid": "fc23f39b-a3d4-4e5b-8ffd-db20ebf11563", + "start": { + "$date": "2020-11-15T15:57:01.000Z" + }, + "end": { + "$date": "2020-11-15T16:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6c7e9baa-91cc-4d20-ba44-1ddd113dad22", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-15T16:31:18.000Z" + }, + "end": { + "$date": "2020-11-15T17:32:57.000Z" + }, + "events": [ + { + "uuid": "cb07ab30-e01a-4eb9-a671-4e39b0dbcd91", + "start": { + "$date": "2020-11-15T16:31:18.000Z" + }, + "end": { + "$date": "2020-11-15T17:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "b092572e-0fca-4b9a-841a-740e6b0d6b61", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-15T17:16:46.000Z" + }, + "end": { + "$date": "2020-11-15T17:57:18.000Z" + }, + "events": [ + { + "uuid": "4a58dcd9-ede2-4d93-bddd-4c17c3da343b", + "start": { + "$date": "2020-11-15T17:16:46.000Z" + }, + "end": { + "$date": "2020-11-15T17:57:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ccfdb7ba-05bb-4565-880b-a75842efb807", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-15T19:17:01.000Z" + }, + "end": { + "$date": "2020-11-15T19:32:56.000Z" + }, + "events": [ + { + "uuid": "f073f473-9fe4-4156-919a-aec2b6ee3a04", + "start": { + "$date": "2020-11-15T19:17:01.000Z" + }, + "end": { + "$date": "2020-11-15T19:32:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1d384669-717e-4ece-99e2-eee44ce499b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-15T18:27:44.000Z" + }, + "end": { + "$date": "2020-11-15T19:46:56.000Z" + }, + "events": [ + { + "uuid": "1035c942-50ef-492d-9374-e83de365385a", + "start": { + "$date": "2020-11-15T18:27:44.000Z" + }, + "end": { + "$date": "2020-11-15T19:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3d6b3bc5-3b73-4d0a-a29d-d80257bfe458", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T19:01:04.000Z" + }, + "end": { + "$date": "2020-11-15T19:07:33.000Z" + }, + "events": [ + { + "uuid": "a2a7d043-c1db-4f61-a336-b3809f0a7364", + "start": { + "$date": "2020-11-15T19:01:04.000Z" + }, + "end": { + "$date": "2020-11-15T19:07:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "036e1cc8-11d4-4e16-a2e0-1f6ce89f4d20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T19:10:01.000Z" + }, + "end": { + "$date": "2020-11-15T19:46:29.000Z" + }, + "events": [ + { + "uuid": "02fd2cd6-2252-4809-b5ae-fbe18f6b1f83", + "start": { + "$date": "2020-11-15T19:10:01.000Z" + }, + "end": { + "$date": "2020-11-15T19:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ee41412-d95a-4f5b-832f-eef190795364", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T19:54:55.000Z" + }, + "end": { + "$date": "2020-11-15T20:30:01.000Z" + }, + "events": [ + { + "uuid": "4bc586ad-ca4d-4d1e-af05-1f0061b2d4ef", + "start": { + "$date": "2020-11-15T19:54:55.000Z" + }, + "end": { + "$date": "2020-11-15T20:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3a2b79b-b136-4374-9788-8b97826c8ddb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-15T19:55:46.000Z" + }, + "end": { + "$date": "2020-11-15T20:29:56.000Z" + }, + "events": [ + { + "uuid": "02682e6a-8294-4ef8-8f28-1ba1703de5a5", + "start": { + "$date": "2020-11-15T19:55:46.000Z" + }, + "end": { + "$date": "2020-11-15T20:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3c7604ac-fdd9-4d6f-a87e-ea0bc888c8d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-15T20:21:53.000Z" + }, + "end": { + "$date": "2020-11-15T22:29:33.000Z" + }, + "events": [ + { + "uuid": "04e8705f-bc0b-4efd-8275-1219f3fa63be", + "start": { + "$date": "2020-11-15T20:21:53.000Z" + }, + "end": { + "$date": "2020-11-15T22:29:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bb01bac-5268-470f-a4dc-725464ab9bdb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T20:41:33.000Z" + }, + "end": { + "$date": "2020-11-15T21:24:05.000Z" + }, + "events": [ + { + "uuid": "80421bac-5ae7-49c5-82f1-8b1d1ca62024", + "start": { + "$date": "2020-11-15T20:41:33.000Z" + }, + "end": { + "$date": "2020-11-15T21:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a888e60c-c229-4c9a-bdc6-bdd5be5d5c87", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-15T20:42:23.000Z" + }, + "end": { + "$date": "2020-11-15T21:23:57.000Z" + }, + "events": [ + { + "uuid": "197f9723-dd22-4e1c-a72a-7d5c9963f05d", + "start": { + "$date": "2020-11-15T20:42:23.000Z" + }, + "end": { + "$date": "2020-11-15T21:23:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "646bb5cb-5a77-40d5-b163-538966180651", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-15T20:41:47.000Z" + }, + "end": { + "$date": "2020-11-15T21:24:01.000Z" + }, + "events": [ + { + "uuid": "3aa1c64a-0e3d-4383-b3e4-74b043bc7c3f", + "start": { + "$date": "2020-11-15T20:41:47.000Z" + }, + "end": { + "$date": "2020-11-15T21:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "cd2ed5d9-9ec9-4831-9a0b-ab20404ec9f9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-15T21:18:01.000Z" + }, + "end": { + "$date": "2020-11-15T21:20:27.000Z" + }, + "events": [ + { + "uuid": "b9364fdf-f387-440e-8d69-6ec6fdc1760d", + "start": { + "$date": "2020-11-15T21:18:01.000Z" + }, + "end": { + "$date": "2020-11-15T21:20:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "6431e546-e793-4abd-9acc-c316c7130a94", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-15T21:21:32.000Z" + }, + "end": { + "$date": "2020-11-16T04:24:16.000Z" + }, + "events": [ + { + "uuid": "09cc6cf9-0be4-45d5-b014-e10ae491db0f", + "start": { + "$date": "2020-11-15T21:21:32.000Z" + }, + "end": { + "$date": "2020-11-15T22:48:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de91b5f6-4050-49b6-a6d8-b0ba32fb6805", + "start": { + "$date": "2020-11-15T22:48:32.000Z" + }, + "end": { + "$date": "2020-11-15T22:58:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d82359e4-663b-41ce-8cc9-38af425ea6f0", + "start": { + "$date": "2020-11-15T22:58:32.000Z" + }, + "end": { + "$date": "2020-11-15T23:42:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20e328af-9a21-4ba2-80b4-497b15b1eba0", + "start": { + "$date": "2020-11-15T23:42:32.000Z" + }, + "end": { + "$date": "2020-11-15T23:45:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5186af77-5fda-40d0-94d3-0c69cffb3688", + "start": { + "$date": "2020-11-15T23:45:32.000Z" + }, + "end": { + "$date": "2020-11-16T00:03:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2642a71-0c20-48ff-9639-9bb30d5c4969", + "start": { + "$date": "2020-11-16T00:03:32.000Z" + }, + "end": { + "$date": "2020-11-16T00:30:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "684baf1a-b1eb-45a0-ab01-259fcc789104", + "start": { + "$date": "2020-11-16T00:30:32.000Z" + }, + "end": { + "$date": "2020-11-16T03:48:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "769bc13f-4211-439c-832d-e98b2451ae53", + "start": { + "$date": "2020-11-16T03:48:32.000Z" + }, + "end": { + "$date": "2020-11-16T03:53:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43136b81-5709-4d54-8aa0-59978a44b9df", + "start": { + "$date": "2020-11-16T03:53:32.000Z" + }, + "end": { + "$date": "2020-11-16T04:24:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e709758-58ae-48d7-a9a0-358f6cc17be0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T21:26:44.000Z" + }, + "end": { + "$date": "2020-11-15T21:59:41.000Z" + }, + "events": [ + { + "uuid": "0dd25089-1744-407e-adbc-139de1b8fb6a", + "start": { + "$date": "2020-11-15T21:26:44.000Z" + }, + "end": { + "$date": "2020-11-15T21:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8a0b131-9cac-4777-b2ac-31c744abc869", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-15T21:27:38.000Z" + }, + "end": { + "$date": "2020-11-15T21:59:43.000Z" + }, + "events": [ + { + "uuid": "e8e1ed7c-01c0-43e9-b07c-d16b7da92fac", + "start": { + "$date": "2020-11-15T21:27:38.000Z" + }, + "end": { + "$date": "2020-11-15T21:59:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2e6add2-efd2-48a9-a6d3-64b018c35c5d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-15T21:59:58.000Z" + }, + "end": { + "$date": "2020-11-15T21:59:49.000Z" + }, + "events": [ + { + "uuid": "5f9ca52e-b310-4db0-a985-cb34c2bb7139", + "start": { + "$date": "2020-11-15T21:59:58.000Z" + }, + "end": { + "$date": "2020-11-15T21:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5408dbe-ecfa-4d83-bd8c-91cb9a508350", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-15T22:08:17.000Z" + }, + "end": { + "$date": "2020-11-15T22:37:44.000Z" + }, + "events": [ + { + "uuid": "1090010f-5098-4d27-bc44-c580fafbb574", + "start": { + "$date": "2020-11-15T22:08:17.000Z" + }, + "end": { + "$date": "2020-11-15T22:37:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbbec120-b911-4aea-96bd-a51b5fc57e7d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-15T22:09:47.000Z" + }, + "end": { + "$date": "2020-11-15T22:37:41.000Z" + }, + "events": [ + { + "uuid": "64a04181-20f4-4bc8-991e-e8ddeac7f640", + "start": { + "$date": "2020-11-15T22:09:47.000Z" + }, + "end": { + "$date": "2020-11-15T22:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5fac8c7e-d6b2-4edc-866c-4d9a0c890a3e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-15T22:08:34.000Z" + }, + "end": { + "$date": "2020-11-15T22:37:49.000Z" + }, + "events": [ + { + "uuid": "8d753b47-7e2a-4a90-aec0-142878b461e8", + "start": { + "$date": "2020-11-15T22:08:34.000Z" + }, + "end": { + "$date": "2020-11-15T22:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4da219d0-4ba3-4af4-a036-68839dd33d38", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-15T22:40:24.000Z" + }, + "end": { + "$date": "2020-11-15T22:47:39.000Z" + }, + "events": [ + { + "uuid": "390b92e1-7642-48d7-8efb-f533c523ae28", + "start": { + "$date": "2020-11-15T22:40:24.000Z" + }, + "end": { + "$date": "2020-11-15T22:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a63cf9cc-6bd7-4415-aef2-f5488c54c589", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-15T23:26:26.000Z" + }, + "end": { + "$date": "2020-11-16T00:01:36.000Z" + }, + "events": [ + { + "uuid": "a5e68e80-b366-4975-973d-980ece1c2094", + "start": { + "$date": "2020-11-15T23:26:26.000Z" + }, + "end": { + "$date": "2020-11-16T00:01:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "c1a4b051-0bb2-4208-b849-efceb7e286ae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-15T23:49:07.000Z" + }, + "end": { + "$date": "2020-11-16T01:26:06.000Z" + }, + "events": [ + { + "uuid": "eb0ac2e5-911b-40c8-afa9-66f1751dd1ad", + "start": { + "$date": "2020-11-15T23:49:07.000Z" + }, + "end": { + "$date": "2020-11-16T01:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43124477-beb3-450f-8b29-4a67d2fe601c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T00:02:06.000Z" + }, + "end": { + "$date": "2020-11-16T00:09:52.000Z" + }, + "events": [ + { + "uuid": "b3cc2165-6aed-447e-b5b1-e111347b5798", + "start": { + "$date": "2020-11-16T00:02:06.000Z" + }, + "end": { + "$date": "2020-11-16T00:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "358cea73-4496-44ca-94f3-dd59123c8aa9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-16T00:04:20.000Z" + }, + "end": { + "$date": "2020-11-16T02:04:29.000Z" + }, + "events": [ + { + "uuid": "919cf8a1-bda1-4eb8-b968-df8cb6629296", + "start": { + "$date": "2020-11-16T00:04:20.000Z" + }, + "end": { + "$date": "2020-11-16T01:32:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8327ff09-0e05-4d49-b881-f85e14a40561", + "start": { + "$date": "2020-11-16T01:32:20.000Z" + }, + "end": { + "$date": "2020-11-16T01:40:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0756a5ff-4d8c-4c51-ad04-664bda6c76b6", + "start": { + "$date": "2020-11-16T01:40:20.000Z" + }, + "end": { + "$date": "2020-11-16T02:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a098773e-5871-4c4c-b835-67c99d4867d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-16T00:24:44.000Z" + }, + "end": { + "$date": "2020-11-16T00:35:01.000Z" + }, + "events": [ + { + "uuid": "2bd9f6cf-37c7-4ad2-9cce-4f014f44b056", + "start": { + "$date": "2020-11-16T00:24:44.000Z" + }, + "end": { + "$date": "2020-11-16T00:35:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "2c8ff2a2-6f77-428e-aab1-970bac8f6243", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-16T00:24:29.000Z" + }, + "end": { + "$date": "2020-11-16T01:34:02.000Z" + }, + "events": [ + { + "uuid": "e921d750-4f26-466d-9825-8ca2d9c9e264", + "start": { + "$date": "2020-11-16T00:24:29.000Z" + }, + "end": { + "$date": "2020-11-16T01:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "b11bc5fd-3a76-4efd-8a56-8b6cfcdb7bc2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-16T00:29:42.000Z" + }, + "end": { + "$date": "2020-11-16T02:11:44.000Z" + }, + "events": [ + { + "uuid": "caf2b8df-0eed-4c92-8712-94f52ab80e76", + "start": { + "$date": "2020-11-16T00:29:42.000Z" + }, + "end": { + "$date": "2020-11-16T02:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f0c4a2c1-27d0-43b0-beee-21d379ad6e9f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-16T00:35:26.000Z" + }, + "end": { + "$date": "2020-11-16T00:46:55.000Z" + }, + "events": [ + { + "uuid": "b24535ec-62c9-44c9-881a-f8fab25ea4d8", + "start": { + "$date": "2020-11-16T00:35:26.000Z" + }, + "end": { + "$date": "2020-11-16T00:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94b4e01a-88d8-4bfa-802e-3ca2d44057e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T02:09:04.000Z" + }, + "end": { + "$date": "2020-11-16T02:44:16.000Z" + }, + "events": [ + { + "uuid": "a6e861c3-6d7f-47ef-a8ea-9f89b5d57453", + "start": { + "$date": "2020-11-16T02:09:04.000Z" + }, + "end": { + "$date": "2020-11-16T02:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5cad9a3-bb83-46cf-bbd6-f0244d40dc03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T02:50:15.000Z" + }, + "end": { + "$date": "2020-11-16T03:30:39.000Z" + }, + "events": [ + { + "uuid": "78448302-3920-4aa0-8ea4-a89ee8874edd", + "start": { + "$date": "2020-11-16T02:50:15.000Z" + }, + "end": { + "$date": "2020-11-16T03:30:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "906883b4-bff5-4761-81cb-ef2b77459069", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-16T02:48:12.000Z" + }, + "end": { + "$date": "2020-11-16T03:41:59.000Z" + }, + "events": [ + { + "uuid": "3269146b-88b2-4302-b80a-d81e852418c5", + "start": { + "$date": "2020-11-16T02:48:12.000Z" + }, + "end": { + "$date": "2020-11-16T03:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5c8dd360-33c3-40c5-8f68-3564af5b4c0d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-16T03:06:45.000Z" + }, + "end": { + "$date": "2020-11-16T04:10:09.000Z" + }, + "events": [ + { + "uuid": "38bd8f94-3efd-46d7-adcb-088948f3998e", + "start": { + "$date": "2020-11-16T03:06:45.000Z" + }, + "end": { + "$date": "2020-11-16T04:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "903bb364-2bc8-44ac-973b-15d4f734a729", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-16T03:09:45.000Z" + }, + "end": { + "$date": "2020-11-16T04:01:46.000Z" + }, + "events": [ + { + "uuid": "cddd4dbc-6810-43ca-8e3f-4082eb668bb4", + "start": { + "$date": "2020-11-16T03:09:45.000Z" + }, + "end": { + "$date": "2020-11-16T04:01:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "838d1fd6-fcd3-4a77-b3a1-9d584503e586", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-16T03:22:44.000Z" + }, + "end": { + "$date": "2020-11-16T04:16:02.000Z" + }, + "events": [ + { + "uuid": "9917e096-b505-48b7-a525-1c809b5018bf", + "start": { + "$date": "2020-11-16T03:22:44.000Z" + }, + "end": { + "$date": "2020-11-16T04:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "932b43b9-ed84-4ff1-99c9-821ed5268698", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T03:31:10.000Z" + }, + "end": { + "$date": "2020-11-16T05:33:03.000Z" + }, + "events": [ + { + "uuid": "34de4cea-d98d-42ea-a5ee-d0526c9c7c95", + "start": { + "$date": "2020-11-16T03:31:10.000Z" + }, + "end": { + "$date": "2020-11-16T03:40:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc53dbed-a8fb-471e-b6fa-3b1515c13d04", + "start": { + "$date": "2020-11-16T03:40:10.000Z" + }, + "end": { + "$date": "2020-11-16T05:33:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "c4e0beca-212e-4153-99d8-aa6e96b0b322", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-16T03:55:13.000Z" + }, + "end": { + "$date": "2020-11-16T04:56:51.000Z" + }, + "events": [ + { + "uuid": "84ee9821-ad55-4633-b829-fd4eb0dbb33d", + "start": { + "$date": "2020-11-16T03:55:13.000Z" + }, + "end": { + "$date": "2020-11-16T04:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae4feafe-4103-4bdd-83dc-63a1b3ce0bb1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-16T04:21:19.000Z" + }, + "end": { + "$date": "2020-11-16T06:25:17.000Z" + }, + "events": [ + { + "uuid": "009016ed-80e2-4233-8077-a7fcc47e9c47", + "start": { + "$date": "2020-11-16T04:21:19.000Z" + }, + "end": { + "$date": "2020-11-16T06:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "4df8eb4e-9655-4841-93ce-afe4f571e764", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-16T04:27:03.000Z" + }, + "end": { + "$date": "2020-11-16T06:10:29.000Z" + }, + "events": [ + { + "uuid": "33d0e493-dd33-4965-a4d3-150eab2a03b5", + "start": { + "$date": "2020-11-16T04:27:03.000Z" + }, + "end": { + "$date": "2020-11-16T06:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7437b32c-279c-494c-835b-4275b9b070bc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-16T04:50:53.000Z" + }, + "end": { + "$date": "2020-11-16T07:11:40.000Z" + }, + "events": [ + { + "uuid": "5ed5e766-deac-4b84-b5d8-ab86801ebddd", + "start": { + "$date": "2020-11-16T04:50:53.000Z" + }, + "end": { + "$date": "2020-11-16T07:11:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a25a9213-18c4-491c-9ee9-677bce1472f5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-16T04:57:06.000Z" + }, + "end": { + "$date": "2020-11-16T07:34:58.000Z" + }, + "events": [ + { + "uuid": "a1d19338-fb30-4468-aa82-9bb3ee2c7e7d", + "start": { + "$date": "2020-11-16T04:57:06.000Z" + }, + "end": { + "$date": "2020-11-16T07:34:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3970b598-3d22-4638-a51d-c6ad5e778380", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-16T04:59:08.000Z" + }, + "end": { + "$date": "2020-11-16T08:21:58.000Z" + }, + "events": [ + { + "uuid": "801d057d-af79-4ef3-9d09-ab7e597cefef", + "start": { + "$date": "2020-11-16T04:59:08.000Z" + }, + "end": { + "$date": "2020-11-16T08:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5bf615a7-d9b4-4779-bacd-9e589b2bcb79", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T05:36:31.000Z" + }, + "end": { + "$date": "2020-11-16T07:09:33.000Z" + }, + "events": [ + { + "uuid": "a6fc603c-2168-4149-88b9-3e460f180ab9", + "start": { + "$date": "2020-11-16T05:36:31.000Z" + }, + "end": { + "$date": "2020-11-16T05:41:31.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "daf7f66f-ebc9-41ed-a4cb-27be2455bb15", + "start": { + "$date": "2020-11-16T05:41:31.000Z" + }, + "end": { + "$date": "2020-11-16T07:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "b223bb9f-c21f-4816-9d34-450c1ec5f9a5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-16T05:54:02.000Z" + }, + "end": { + "$date": "2020-11-16T07:48:26.000Z" + }, + "events": [ + { + "uuid": "7b9aac31-59e0-48d6-91ba-5e2a0603dabe", + "start": { + "$date": "2020-11-16T05:54:02.000Z" + }, + "end": { + "$date": "2020-11-16T07:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a4c31ef0-94a1-4421-895a-0e568dcced5a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-16T06:08:55.000Z" + }, + "end": { + "$date": "2020-11-16T06:21:41.000Z" + }, + "events": [ + { + "uuid": "e675982f-ec3d-46c9-816a-7245a65e02c8", + "start": { + "$date": "2020-11-16T06:08:55.000Z" + }, + "end": { + "$date": "2020-11-16T06:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fe3894a9-e3a3-4a39-a593-a85fd6782b6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-16T06:14:00.000Z" + }, + "end": { + "$date": "2020-11-16T06:27:56.000Z" + }, + "events": [ + { + "uuid": "972652b9-26ba-4315-af43-0ce2ea55ae95", + "start": { + "$date": "2020-11-16T06:14:00.000Z" + }, + "end": { + "$date": "2020-11-16T06:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "9fbb4320-be9d-484e-b59b-82299e8d18a9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-16T06:22:06.000Z" + }, + "end": { + "$date": "2020-11-16T06:23:17.000Z" + }, + "events": [ + { + "uuid": "fd88375b-1c93-4195-b6ae-322a76a35e7e", + "start": { + "$date": "2020-11-16T06:22:06.000Z" + }, + "end": { + "$date": "2020-11-16T06:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d73047e1-7540-4a55-a79e-b679cf3dc51d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-16T06:25:38.000Z" + }, + "end": { + "$date": "2020-11-16T07:11:50.000Z" + }, + "events": [ + { + "uuid": "161be11b-81ca-4610-bb0c-0fac371ce88e", + "start": { + "$date": "2020-11-16T06:25:38.000Z" + }, + "end": { + "$date": "2020-11-16T06:26:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2384f1b-570d-40e1-af47-e90de659b891", + "start": { + "$date": "2020-11-16T06:26:38.000Z" + }, + "end": { + "$date": "2020-11-16T07:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26c76286-b5cd-4a0f-80dd-9c5e40f2819b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T18:11:33.000Z" + }, + "end": { + "$date": "2020-11-16T18:29:14.000Z" + }, + "events": [ + { + "uuid": "45ee94d1-bece-43a3-a1f5-28ddb96a67b8", + "start": { + "$date": "2020-11-16T18:11:33.000Z" + }, + "end": { + "$date": "2020-11-16T18:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a7c548a1-6455-455f-842f-c999d8367063", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-16T18:13:57.000Z" + }, + "end": { + "$date": "2020-11-16T18:56:27.000Z" + }, + "events": [ + { + "uuid": "4d86fdae-cfbd-44f2-a27d-bfe3b86ac3d8", + "start": { + "$date": "2020-11-16T18:13:57.000Z" + }, + "end": { + "$date": "2020-11-16T18:34:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bdcd0c5e-5d62-4520-90c2-788f2eb6b1f0", + "start": { + "$date": "2020-11-16T18:34:57.000Z" + }, + "end": { + "$date": "2020-11-16T18:37:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92204962-c308-4d98-bd8c-557ecaac518d", + "start": { + "$date": "2020-11-16T18:37:57.000Z" + }, + "end": { + "$date": "2020-11-16T18:56:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20df3d3c-263c-4a0e-a6d0-bd40fd6670b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T18:32:33.000Z" + }, + "end": { + "$date": "2020-11-16T18:52:40.000Z" + }, + "events": [ + { + "uuid": "f2582b8d-2c2c-4810-b8e8-5d08e140e0d0", + "start": { + "$date": "2020-11-16T18:32:33.000Z" + }, + "end": { + "$date": "2020-11-16T18:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9febd245-aa03-4eeb-aebf-aad5df23c635", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-16T20:15:29.000Z" + }, + "end": { + "$date": "2020-11-16T20:52:22.000Z" + }, + "events": [ + { + "uuid": "0d45928b-1356-4d9b-a042-39b4d1e6d26e", + "start": { + "$date": "2020-11-16T20:15:29.000Z" + }, + "end": { + "$date": "2020-11-16T20:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78972fba-2dea-48ca-b84b-b34d2043bab8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-16T21:03:17.000Z" + }, + "end": { + "$date": "2020-11-16T21:35:57.000Z" + }, + "events": [ + { + "uuid": "e91409a7-41a2-4936-a5c1-f232e01d5888", + "start": { + "$date": "2020-11-16T21:03:17.000Z" + }, + "end": { + "$date": "2020-11-16T21:35:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "de515ffa-2e46-4faf-8909-d3f66c0de6f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-16T23:33:47.000Z" + }, + "end": { + "$date": "2020-11-17T00:03:04.000Z" + }, + "events": [ + { + "uuid": "c52b0451-333a-4f29-af0a-01db5528e66e", + "start": { + "$date": "2020-11-16T23:33:47.000Z" + }, + "end": { + "$date": "2020-11-17T00:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c26d28c-f67f-4e8d-8ce8-9bd913d2e5a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-17T00:16:31.000Z" + }, + "end": { + "$date": "2020-11-17T00:58:04.000Z" + }, + "events": [ + { + "uuid": "67afb95e-0a21-4223-94c5-3ec791d09d8b", + "start": { + "$date": "2020-11-17T00:16:31.000Z" + }, + "end": { + "$date": "2020-11-17T00:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "419ebba1-cfbf-42c1-873e-a2860a3bd41e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-17T00:23:39.000Z" + }, + "end": { + "$date": "2020-11-17T03:24:44.000Z" + }, + "events": [ + { + "uuid": "c05cb6aa-7e4a-466b-bca1-ca15c5854607", + "start": { + "$date": "2020-11-17T00:23:39.000Z" + }, + "end": { + "$date": "2020-11-17T01:39:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aeac69f4-e1ae-43fd-bf1d-f6c8b3bbd350", + "start": { + "$date": "2020-11-17T01:39:39.000Z" + }, + "end": { + "$date": "2020-11-17T02:12:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cfc487df-1420-467b-90a1-a115c74e33fb", + "start": { + "$date": "2020-11-17T02:12:39.000Z" + }, + "end": { + "$date": "2020-11-17T03:09:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b814f5d3-e6e1-4c32-910d-611203ea2b50", + "start": { + "$date": "2020-11-17T03:09:39.000Z" + }, + "end": { + "$date": "2020-11-17T03:14:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6fdfa513-8ab5-44f5-821b-cfaa38f55e54", + "start": { + "$date": "2020-11-17T03:14:39.000Z" + }, + "end": { + "$date": "2020-11-17T03:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "4c7522a0-3390-47dc-b1d6-2334ab98cc24", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-17T00:39:29.000Z" + }, + "end": { + "$date": "2020-11-17T03:39:08.000Z" + }, + "events": [ + { + "uuid": "12401560-02bc-4a51-8569-14a7ed771559", + "start": { + "$date": "2020-11-17T00:39:29.000Z" + }, + "end": { + "$date": "2020-11-17T03:39:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6943d353-0fbb-46e6-9176-9ee999a6c5dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T00:42:00.000Z" + }, + "end": { + "$date": "2020-11-17T00:59:05.000Z" + }, + "events": [ + { + "uuid": "c0d25e23-3a51-453d-be64-b1c708750ec5", + "start": { + "$date": "2020-11-17T00:42:00.000Z" + }, + "end": { + "$date": "2020-11-17T00:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "720ead55-9b68-49cc-b8c8-68aeee068cfc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T01:14:47.000Z" + }, + "end": { + "$date": "2020-11-17T01:51:23.000Z" + }, + "events": [ + { + "uuid": "10ea0c38-0774-48cf-b8ba-e69ee5b375f8", + "start": { + "$date": "2020-11-17T01:14:47.000Z" + }, + "end": { + "$date": "2020-11-17T01:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2597b5af-6930-4aa9-83d7-6adeb6328445", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T03:07:52.000Z" + }, + "end": { + "$date": "2020-11-17T03:07:36.000Z" + }, + "events": [ + { + "uuid": "2e450796-b6a5-4133-a622-2e7d1d716959", + "start": { + "$date": "2020-11-17T03:07:52.000Z" + }, + "end": { + "$date": "2020-11-17T03:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "baa2b73b-7fd4-458a-a9a3-e5995ac62435", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-17T02:51:57.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:09.000Z" + }, + "events": [ + { + "uuid": "f9dce5a9-9b32-45d6-ad76-fa04ac3c8d62", + "start": { + "$date": "2020-11-17T02:51:57.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "63e07531-ec81-4d0a-ba70-07a332b7bc31", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-17T03:19:09.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:13.000Z" + }, + "events": [ + { + "uuid": "9fbb3bcf-e7d3-4eec-bafb-a6d8ea2f3591", + "start": { + "$date": "2020-11-17T03:19:09.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f5dcf08d-96d3-4b47-8fae-fbcc950b7bdc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-17T02:58:22.000Z" + }, + "end": { + "$date": "2020-11-17T03:11:55.000Z" + }, + "events": [ + { + "uuid": "dbeff5f7-9a2a-4e31-8fc3-19c51fdb0e60", + "start": { + "$date": "2020-11-17T02:58:22.000Z" + }, + "end": { + "$date": "2020-11-17T03:11:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "740826d6-3f87-4208-b9fb-1e365bd4dc03", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-17T03:07:15.000Z" + }, + "end": { + "$date": "2020-11-17T03:09:04.000Z" + }, + "events": [ + { + "uuid": "a18aa9b8-79a4-43ae-9178-99631ee1efe9", + "start": { + "$date": "2020-11-17T03:07:15.000Z" + }, + "end": { + "$date": "2020-11-17T03:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6617f033-2685-435a-b291-3afee8885a24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T03:09:22.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:02.000Z" + }, + "events": [ + { + "uuid": "153faa49-96e8-4355-983b-db9619e5cfe7", + "start": { + "$date": "2020-11-17T03:09:22.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "624c9db6-6d6c-4049-b1ea-bd8b30435775", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-17T03:12:15.000Z" + }, + "end": { + "$date": "2020-11-17T04:33:57.000Z" + }, + "events": [ + { + "uuid": "2bced0c1-0520-4425-bc17-4f8c12c14ed3", + "start": { + "$date": "2020-11-17T03:12:15.000Z" + }, + "end": { + "$date": "2020-11-17T04:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df5aabc9-b36e-4c3d-8514-9c33aa6e4135", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-17T03:12:26.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:10.000Z" + }, + "events": [ + { + "uuid": "27010a07-2632-4819-bfaf-f76e91b58e5b", + "start": { + "$date": "2020-11-17T03:12:26.000Z" + }, + "end": { + "$date": "2020-11-17T04:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8b5644a8-2f37-451c-a9e4-c2b30d813cfb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-17T03:24:59.000Z" + }, + "end": { + "$date": "2020-11-17T03:28:29.000Z" + }, + "events": [ + { + "uuid": "cd8421b0-d272-4624-8637-aafd7b90e639", + "start": { + "$date": "2020-11-17T03:24:59.000Z" + }, + "end": { + "$date": "2020-11-17T03:28:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "734a92fe-d0ed-406f-8b2f-41ed8832075c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-17T03:30:49.000Z" + }, + "end": { + "$date": "2020-11-17T04:15:06.000Z" + }, + "events": [ + { + "uuid": "5568bdfe-735c-49df-9b5b-14dd2623d0e0", + "start": { + "$date": "2020-11-17T03:30:49.000Z" + }, + "end": { + "$date": "2020-11-17T04:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b1cde4e1-308a-4c1a-8fb1-1663949470c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-17T03:35:39.000Z" + }, + "end": { + "$date": "2020-11-17T04:00:45.000Z" + }, + "events": [ + { + "uuid": "4dd849a9-88ff-4066-9333-8556b20c1185", + "start": { + "$date": "2020-11-17T03:35:39.000Z" + }, + "end": { + "$date": "2020-11-17T04:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "1ef8c70e-8c2e-44c8-846c-db62b55e3422", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-17T04:11:48.000Z" + }, + "end": { + "$date": "2020-11-17T06:23:51.000Z" + }, + "events": [ + { + "uuid": "e330a62b-6b25-48b8-b97c-f90a7ef99040", + "start": { + "$date": "2020-11-17T04:11:48.000Z" + }, + "end": { + "$date": "2020-11-17T06:23:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f9b03fe0-5696-4b43-a6b3-526c272a5204", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-17T04:15:30.000Z" + }, + "end": { + "$date": "2020-11-17T05:53:32.000Z" + }, + "events": [ + { + "uuid": "a4f0a591-9755-4525-b2f4-d4cf81d5d231", + "start": { + "$date": "2020-11-17T04:15:30.000Z" + }, + "end": { + "$date": "2020-11-17T05:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "95f9c6ba-039b-40be-96cd-a1f81901c212", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-17T04:38:16.000Z" + }, + "end": { + "$date": "2020-11-17T04:58:24.000Z" + }, + "events": [ + { + "uuid": "6a43df45-645b-4c9f-b0b5-61f8790b57eb", + "start": { + "$date": "2020-11-17T04:38:16.000Z" + }, + "end": { + "$date": "2020-11-17T04:58:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d6f0ba4-2b61-420a-b0f9-5d3b635bb0b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T05:29:50.000Z" + }, + "end": { + "$date": "2020-11-17T05:45:03.000Z" + }, + "events": [ + { + "uuid": "338ca333-bd6a-41dd-b5a7-b157dbaaa431", + "start": { + "$date": "2020-11-17T05:29:50.000Z" + }, + "end": { + "$date": "2020-11-17T05:45:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b164014-3d1d-4967-b0e8-e74dab011fe4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T05:50:45.000Z" + }, + "end": { + "$date": "2020-11-17T06:26:28.000Z" + }, + "events": [ + { + "uuid": "c9317843-4368-4e6d-ab69-deb1f32bc977", + "start": { + "$date": "2020-11-17T05:50:45.000Z" + }, + "end": { + "$date": "2020-11-17T06:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "41645194-907b-4824-9cbc-5957a8e6049a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-17T05:54:12.000Z" + }, + "end": { + "$date": "2020-11-17T07:11:04.000Z" + }, + "events": [ + { + "uuid": "ea5cfea5-ad96-41af-8513-e383f0202e9b", + "start": { + "$date": "2020-11-17T05:54:12.000Z" + }, + "end": { + "$date": "2020-11-17T07:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "eed76c4c-c370-42e0-bd4e-3c8ccf97d277", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-17T06:19:08.000Z" + }, + "end": { + "$date": "2020-11-17T09:54:29.000Z" + }, + "events": [ + { + "uuid": "74465aef-0be6-4419-ae5c-a09df02a08f9", + "start": { + "$date": "2020-11-17T06:19:08.000Z" + }, + "end": { + "$date": "2020-11-17T09:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67d6606f-e825-4058-a174-f8cf37f4ecd1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T06:34:42.000Z" + }, + "end": { + "$date": "2020-11-17T07:02:17.000Z" + }, + "events": [ + { + "uuid": "eaadca82-d1cd-4d87-913d-ac6e6f2f857a", + "start": { + "$date": "2020-11-17T06:34:42.000Z" + }, + "end": { + "$date": "2020-11-17T07:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e755dfd-77d4-40a4-ae15-2b0c39d2896b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-17T21:51:57.000Z" + }, + "end": { + "$date": "2020-11-17T22:49:25.000Z" + }, + "events": [ + { + "uuid": "f15c28ff-62e8-4774-92df-dfdc59812bd2", + "start": { + "$date": "2020-11-17T21:51:57.000Z" + }, + "end": { + "$date": "2020-11-17T22:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02c9eb5d-750a-49b1-947f-d39ca9f33426", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-17T23:06:12.000Z" + }, + "end": { + "$date": "2020-11-17T23:45:19.000Z" + }, + "events": [ + { + "uuid": "0b147e9f-3e4e-40e3-9753-595bb183e2e7", + "start": { + "$date": "2020-11-17T23:06:12.000Z" + }, + "end": { + "$date": "2020-11-17T23:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ee178d6d-3626-4e3c-9b4f-248839368c3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-17T23:44:33.000Z" + }, + "end": { + "$date": "2020-11-18T00:27:17.000Z" + }, + "events": [ + { + "uuid": "73db09fd-0479-4e3b-8cb0-4a0395cc183e", + "start": { + "$date": "2020-11-17T23:44:33.000Z" + }, + "end": { + "$date": "2020-11-18T00:27:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7db4c0e4-2c25-4788-8edd-9fa8c5f2898e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T00:24:15.000Z" + }, + "end": { + "$date": "2020-11-18T00:52:36.000Z" + }, + "events": [ + { + "uuid": "fd287af5-f1c1-4e7f-8861-a46ce4e8ffda", + "start": { + "$date": "2020-11-18T00:24:15.000Z" + }, + "end": { + "$date": "2020-11-18T00:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "cb37da07-88e6-466b-8db8-22ba2a4ca4c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-18T00:27:47.000Z" + }, + "end": { + "$date": "2020-11-18T02:26:10.000Z" + }, + "events": [ + { + "uuid": "c1258d25-2415-439a-b538-c3ab0ab0cd5a", + "start": { + "$date": "2020-11-18T00:27:47.000Z" + }, + "end": { + "$date": "2020-11-18T02:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e218071f-291e-4e8a-8717-34252366fdbd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-18T01:08:57.000Z" + }, + "end": { + "$date": "2020-11-18T01:38:44.000Z" + }, + "events": [ + { + "uuid": "b0d81338-a8b8-4907-93db-bc1d6fd29bf3", + "start": { + "$date": "2020-11-18T01:08:57.000Z" + }, + "end": { + "$date": "2020-11-18T01:38:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "467ad001-9b82-47d5-b0e1-3a8f173de378", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T01:29:18.000Z" + }, + "end": { + "$date": "2020-11-18T01:47:53.000Z" + }, + "events": [ + { + "uuid": "dbbd5526-f8d9-42b3-82e7-bd3d88719308", + "start": { + "$date": "2020-11-18T01:29:18.000Z" + }, + "end": { + "$date": "2020-11-18T01:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf269259-a9d7-4109-b360-d6cbd3c6cb43", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T01:47:07.000Z" + }, + "end": { + "$date": "2020-11-18T02:13:16.000Z" + }, + "events": [ + { + "uuid": "f932e0d1-2b67-4c82-9601-c30010ccf5ec", + "start": { + "$date": "2020-11-18T01:47:07.000Z" + }, + "end": { + "$date": "2020-11-18T02:13:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24e1c223-c51a-4046-9327-8e1f4fe46b24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T02:17:19.000Z" + }, + "end": { + "$date": "2020-11-18T02:35:59.000Z" + }, + "events": [ + { + "uuid": "a16a4697-235b-45ec-92a9-2e4c03be90c0", + "start": { + "$date": "2020-11-18T02:17:19.000Z" + }, + "end": { + "$date": "2020-11-18T02:35:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "42ee4f0a-33c6-4e63-8d8e-8d742e34ed3e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T02:28:30.000Z" + }, + "end": { + "$date": "2020-11-18T02:59:27.000Z" + }, + "events": [ + { + "uuid": "6cb803c1-7b59-40fb-be59-882afcfd8514", + "start": { + "$date": "2020-11-18T02:28:30.000Z" + }, + "end": { + "$date": "2020-11-18T02:59:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1012f5b8-527d-400f-b36b-561b0e81552f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-18T02:28:35.000Z" + }, + "end": { + "$date": "2020-11-18T02:30:07.000Z" + }, + "events": [ + { + "uuid": "ba71109d-c8d1-469e-abbe-7452b02d3542", + "start": { + "$date": "2020-11-18T02:28:35.000Z" + }, + "end": { + "$date": "2020-11-18T02:30:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f158df6b-5130-4329-8faf-121e75711105", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-18T02:32:06.000Z" + }, + "end": { + "$date": "2020-11-18T04:26:47.000Z" + }, + "events": [ + { + "uuid": "b49dec5d-899d-439c-848f-992247885172", + "start": { + "$date": "2020-11-18T02:32:06.000Z" + }, + "end": { + "$date": "2020-11-18T04:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1eda09b-b607-453e-ad61-df2d3e0c2c98", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T02:40:05.000Z" + }, + "end": { + "$date": "2020-11-18T03:00:24.000Z" + }, + "events": [ + { + "uuid": "769dd6ef-ab09-4f69-b45a-fce6f344a7b6", + "start": { + "$date": "2020-11-18T02:40:05.000Z" + }, + "end": { + "$date": "2020-11-18T03:00:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "601e9371-ee40-4c01-a031-97545b6b1dca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-18T02:38:36.000Z" + }, + "end": { + "$date": "2020-11-18T03:59:30.000Z" + }, + "events": [ + { + "uuid": "77235399-2fa3-473d-8c27-b26cd6d5e765", + "start": { + "$date": "2020-11-18T02:38:36.000Z" + }, + "end": { + "$date": "2020-11-18T03:22:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c2a2b37b-4584-4bd5-858e-4c72488d60a5", + "start": { + "$date": "2020-11-18T03:22:36.000Z" + }, + "end": { + "$date": "2020-11-18T03:24:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "87f55fa2-9330-49d5-a5c9-ce02181b500f", + "start": { + "$date": "2020-11-18T03:24:36.000Z" + }, + "end": { + "$date": "2020-11-18T03:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f58f603c-4a69-40a0-9f44-10e7f4123b23", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T03:04:01.000Z" + }, + "end": { + "$date": "2020-11-18T03:36:54.000Z" + }, + "events": [ + { + "uuid": "ed732a48-ddae-465d-8d15-6c5ee31ef5b2", + "start": { + "$date": "2020-11-18T03:04:01.000Z" + }, + "end": { + "$date": "2020-11-18T03:36:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "424a355f-1bea-4989-b687-cad460a9893b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T03:32:06.000Z" + }, + "end": { + "$date": "2020-11-18T04:08:57.000Z" + }, + "events": [ + { + "uuid": "711f0b49-2637-4b07-b589-22bbdc0cf570", + "start": { + "$date": "2020-11-18T03:32:06.000Z" + }, + "end": { + "$date": "2020-11-18T04:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "e94e7e82-effc-42a6-a771-c568bd898eb7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-18T03:58:06.000Z" + }, + "end": { + "$date": "2020-11-18T06:34:35.000Z" + }, + "events": [ + { + "uuid": "12a768d5-7609-41a0-8706-0a9608eab933", + "start": { + "$date": "2020-11-18T03:58:06.000Z" + }, + "end": { + "$date": "2020-11-18T06:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bb555908-265b-47dd-9946-ea3b50c19d69", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-18T04:12:33.000Z" + }, + "end": { + "$date": "2020-11-18T05:13:08.000Z" + }, + "events": [ + { + "uuid": "6008ad23-5020-4c70-8291-3237bea90fbb", + "start": { + "$date": "2020-11-18T04:12:33.000Z" + }, + "end": { + "$date": "2020-11-18T05:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "7e82ee89-494f-4a1a-9a26-eb15fd98a381", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T04:16:53.000Z" + }, + "end": { + "$date": "2020-11-18T04:27:10.000Z" + }, + "events": [ + { + "uuid": "22480321-bd7d-4fde-aa29-ff2d22a8fd56", + "start": { + "$date": "2020-11-18T04:16:53.000Z" + }, + "end": { + "$date": "2020-11-18T04:27:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "e6fd5457-3ad5-45cd-8dd8-9ee639798e2c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T04:42:32.000Z" + }, + "end": { + "$date": "2020-11-18T04:46:47.000Z" + }, + "events": [ + { + "uuid": "2d6cdacf-6564-49e5-a5ae-5df262c7ddb9", + "start": { + "$date": "2020-11-18T04:42:32.000Z" + }, + "end": { + "$date": "2020-11-18T04:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "0c5f7402-c1dc-456f-9a21-dd651ccf6b10", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T04:47:03.000Z" + }, + "end": { + "$date": "2020-11-18T05:03:33.000Z" + }, + "events": [ + { + "uuid": "3e893293-34fc-4360-b786-dbe873ac4552", + "start": { + "$date": "2020-11-18T04:47:03.000Z" + }, + "end": { + "$date": "2020-11-18T05:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f6bca19-5da3-4d75-a9a1-13082b7adcf8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T04:58:05.000Z" + }, + "end": { + "$date": "2020-11-18T05:25:20.000Z" + }, + "events": [ + { + "uuid": "1cf03039-f809-4c6a-b5ec-d9f1e7c3b481", + "start": { + "$date": "2020-11-18T04:58:05.000Z" + }, + "end": { + "$date": "2020-11-18T05:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "810aeba0-f231-498e-a66e-8228b08ed0a0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-18T04:57:41.000Z" + }, + "end": { + "$date": "2020-11-18T05:25:28.000Z" + }, + "events": [ + { + "uuid": "8bc67b37-4973-45ea-894e-39d9dab2e977", + "start": { + "$date": "2020-11-18T04:57:41.000Z" + }, + "end": { + "$date": "2020-11-18T05:25:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8db2ca7-1da4-4fdf-93ea-0a3a7d72dd4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T05:31:11.000Z" + }, + "end": { + "$date": "2020-11-18T05:58:36.000Z" + }, + "events": [ + { + "uuid": "317f0d0e-a0ad-40be-b129-b72302f8ab2c", + "start": { + "$date": "2020-11-18T05:31:11.000Z" + }, + "end": { + "$date": "2020-11-18T05:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "e4e32de4-1c65-4aac-81bb-38667f97e5d1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T05:30:37.000Z" + }, + "end": { + "$date": "2020-11-18T05:40:58.000Z" + }, + "events": [ + { + "uuid": "867a36bb-c51a-4d4e-85fb-cd6a6e10f971", + "start": { + "$date": "2020-11-18T05:30:37.000Z" + }, + "end": { + "$date": "2020-11-18T05:40:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "a4e785cc-54b9-4b74-a1f1-827dbe8d50c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T05:41:29.000Z" + }, + "end": { + "$date": "2020-11-18T05:42:28.000Z" + }, + "events": [ + { + "uuid": "22ca869a-aff6-4e77-a3e8-fc566b3e043b", + "start": { + "$date": "2020-11-18T05:41:29.000Z" + }, + "end": { + "$date": "2020-11-18T05:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "73f17193-d30a-4655-a1a8-67a979a9220b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-18T05:47:11.000Z" + }, + "end": { + "$date": "2020-11-18T06:21:02.000Z" + }, + "events": [ + { + "uuid": "cd921b7f-c5fe-46d2-af3b-3be4fc0f3d75", + "start": { + "$date": "2020-11-18T05:47:11.000Z" + }, + "end": { + "$date": "2020-11-18T06:21:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "035d1ad8-ba88-4d99-9d59-75a623c06f40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T06:04:37.000Z" + }, + "end": { + "$date": "2020-11-18T06:47:32.000Z" + }, + "events": [ + { + "uuid": "4d9749a8-5a92-400a-97af-fb05cffaf467", + "start": { + "$date": "2020-11-18T06:04:37.000Z" + }, + "end": { + "$date": "2020-11-18T06:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73fd7c9b-b843-4fca-849e-3e67710d2c77", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-18T16:56:11.000Z" + }, + "end": { + "$date": "2020-11-18T17:08:58.000Z" + }, + "events": [ + { + "uuid": "efdef6f1-0dc1-4318-a534-0420b4d1c960", + "start": { + "$date": "2020-11-18T16:56:11.000Z" + }, + "end": { + "$date": "2020-11-18T17:08:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "21cebadf-66fb-4d72-b834-6f6420c4eb7b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-18T17:06:25.000Z" + }, + "end": { + "$date": "2020-11-18T17:59:31.000Z" + }, + "events": [ + { + "uuid": "925b6e57-131f-4094-aa1a-9a8424727726", + "start": { + "$date": "2020-11-18T17:06:25.000Z" + }, + "end": { + "$date": "2020-11-18T17:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd572849-5a81-4f42-a8aa-18b5459bb767", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T17:38:28.000Z" + }, + "end": { + "$date": "2020-11-18T18:22:59.000Z" + }, + "events": [ + { + "uuid": "23d35b83-ba0b-475d-959f-98eb3e3708af", + "start": { + "$date": "2020-11-18T17:38:28.000Z" + }, + "end": { + "$date": "2020-11-18T18:22:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aad42b02-bf64-41aa-a9aa-ec38fe0331af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T18:28:27.000Z" + }, + "end": { + "$date": "2020-11-18T18:29:46.000Z" + }, + "events": [ + { + "uuid": "05236e7c-18fc-416b-b857-0aa4c36e45b6", + "start": { + "$date": "2020-11-18T18:28:27.000Z" + }, + "end": { + "$date": "2020-11-18T18:29:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "d16716cf-59dd-4747-a7cc-dae0537c7ba1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-18T18:34:01.000Z" + }, + "end": { + "$date": "2020-11-18T19:33:03.000Z" + }, + "events": [ + { + "uuid": "626333e1-8af9-4f33-8476-c6aac3dd3d2f", + "start": { + "$date": "2020-11-18T18:34:01.000Z" + }, + "end": { + "$date": "2020-11-18T19:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0af170c7-b6da-4213-9f83-34567b792c94", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T19:56:12.000Z" + }, + "end": { + "$date": "2020-11-18T20:42:25.000Z" + }, + "events": [ + { + "uuid": "198b2e6e-62ff-4d05-800a-fa49054e2631", + "start": { + "$date": "2020-11-18T19:56:12.000Z" + }, + "end": { + "$date": "2020-11-18T20:42:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7a8d45e-43a8-4388-ac1f-f4d6ee5e65fe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-18T20:11:39.000Z" + }, + "end": { + "$date": "2020-11-18T20:38:27.000Z" + }, + "events": [ + { + "uuid": "fbc6cf38-4781-427e-8e45-1d7e36bb720d", + "start": { + "$date": "2020-11-18T20:11:39.000Z" + }, + "end": { + "$date": "2020-11-18T20:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "017b76fa-99aa-4be5-b10a-74337539ae55", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-18T21:29:24.000Z" + }, + "end": { + "$date": "2020-11-18T22:35:51.000Z" + }, + "events": [ + { + "uuid": "1420179a-1578-4de1-a8d2-58b53fe9aca0", + "start": { + "$date": "2020-11-18T21:29:24.000Z" + }, + "end": { + "$date": "2020-11-18T22:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff980396-7eb1-4c93-b9a7-8058f9b08361", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T23:03:34.000Z" + }, + "end": { + "$date": "2020-11-18T23:22:13.000Z" + }, + "events": [ + { + "uuid": "4eb76846-7a66-4b10-9b94-d3946efe8096", + "start": { + "$date": "2020-11-18T23:03:34.000Z" + }, + "end": { + "$date": "2020-11-18T23:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e75f605d-5ace-4c57-8215-8a050407fbae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-18T23:13:49.000Z" + }, + "end": { + "$date": "2020-11-18T23:32:44.000Z" + }, + "events": [ + { + "uuid": "bbe990d2-036f-41c5-b19b-d573990fa954", + "start": { + "$date": "2020-11-18T23:13:49.000Z" + }, + "end": { + "$date": "2020-11-18T23:32:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ceb847dc-0b40-40ef-abd4-ef30f55027fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-18T23:26:04.000Z" + }, + "end": { + "$date": "2020-11-19T00:07:34.000Z" + }, + "events": [ + { + "uuid": "366c6de0-0931-48e8-8176-51e14506153b", + "start": { + "$date": "2020-11-18T23:26:04.000Z" + }, + "end": { + "$date": "2020-11-19T00:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b97655c-bbbc-44d9-8428-b60bf97eee20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T01:03:15.000Z" + }, + "end": { + "$date": "2020-11-19T01:23:18.000Z" + }, + "events": [ + { + "uuid": "49ff97e3-3df2-49af-b9fd-2abcf7680a8e", + "start": { + "$date": "2020-11-19T01:03:15.000Z" + }, + "end": { + "$date": "2020-11-19T01:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2dcb51e-c509-454a-a6e7-fe8185d612e3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T01:32:57.000Z" + }, + "end": { + "$date": "2020-11-19T01:51:07.000Z" + }, + "events": [ + { + "uuid": "d315d336-67f6-4fbe-9ebe-bf19cc6dfc89", + "start": { + "$date": "2020-11-19T01:32:57.000Z" + }, + "end": { + "$date": "2020-11-19T01:51:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "964e5727-c1f0-499c-bc31-7f8a9ce9a563", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T02:03:04.000Z" + }, + "end": { + "$date": "2020-11-19T02:30:24.000Z" + }, + "events": [ + { + "uuid": "40f0d6a9-03a7-40b2-b806-a514726f5f8d", + "start": { + "$date": "2020-11-19T02:03:04.000Z" + }, + "end": { + "$date": "2020-11-19T02:30:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4a77ddaf-fa87-44a9-9c69-cb70c1103e98", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-19T01:54:49.000Z" + }, + "end": { + "$date": "2020-11-19T02:19:38.000Z" + }, + "events": [ + { + "uuid": "3292411e-87b7-46cb-9a76-c8fea61d4d82", + "start": { + "$date": "2020-11-19T01:54:49.000Z" + }, + "end": { + "$date": "2020-11-19T02:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "80705f81-ed60-4581-a5af-6e1739af68c9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-19T02:20:13.000Z" + }, + "end": { + "$date": "2020-11-19T03:41:56.000Z" + }, + "events": [ + { + "uuid": "d06cf280-3941-4f15-9354-d58df53e8ebc", + "start": { + "$date": "2020-11-19T02:20:13.000Z" + }, + "end": { + "$date": "2020-11-19T03:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "82d0ad25-8424-40ea-bfce-5270ff484b86", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T02:30:00.000Z" + }, + "end": { + "$date": "2020-11-19T04:11:16.000Z" + }, + "events": [ + { + "uuid": "12d17567-ca32-4388-9e60-7a910d25f72c", + "start": { + "$date": "2020-11-19T02:30:00.000Z" + }, + "end": { + "$date": "2020-11-19T04:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d108020e-fc7f-4a19-aa57-2fdd502248ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T02:31:08.000Z" + }, + "end": { + "$date": "2020-11-19T02:52:44.000Z" + }, + "events": [ + { + "uuid": "e3bd5917-54e1-4769-9179-55b3508e604e", + "start": { + "$date": "2020-11-19T02:31:08.000Z" + }, + "end": { + "$date": "2020-11-19T02:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "11d265b2-728a-4c1b-bf57-4c97799cc923", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-19T02:38:19.000Z" + }, + "end": { + "$date": "2020-11-19T04:11:42.000Z" + }, + "events": [ + { + "uuid": "d9c82261-f301-40d1-b7d6-f5cb98480168", + "start": { + "$date": "2020-11-19T02:38:19.000Z" + }, + "end": { + "$date": "2020-11-19T04:11:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b8c5d1a2-b9dc-4936-9257-8fe6bb7fa6b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T03:01:32.000Z" + }, + "end": { + "$date": "2020-11-19T04:11:10.000Z" + }, + "events": [ + { + "uuid": "0ca5318b-d31e-4778-b2f3-c11d867ca902", + "start": { + "$date": "2020-11-19T03:01:32.000Z" + }, + "end": { + "$date": "2020-11-19T04:11:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "73764c2c-175b-4a8f-ac73-dda67d82aa75", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-19T03:16:43.000Z" + }, + "end": { + "$date": "2020-11-19T06:22:31.000Z" + }, + "events": [ + { + "uuid": "d62fcf29-24f0-41c9-a448-39ca7776533b", + "start": { + "$date": "2020-11-19T03:16:43.000Z" + }, + "end": { + "$date": "2020-11-19T06:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4b5368f3-4fea-4bfd-8d68-ae06b1da5d15", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-19T03:27:19.000Z" + }, + "end": { + "$date": "2020-11-19T04:27:53.000Z" + }, + "events": [ + { + "uuid": "766a94b7-f324-4d57-bf06-d85e9f3bbf74", + "start": { + "$date": "2020-11-19T03:27:19.000Z" + }, + "end": { + "$date": "2020-11-19T04:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d0a13456-52be-42c7-8063-b326eef3d58b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-19T04:18:06.000Z" + }, + "end": { + "$date": "2020-11-19T06:06:54.000Z" + }, + "events": [ + { + "uuid": "b4ac6bc6-767b-4d2b-afbb-d0c70b06bb2a", + "start": { + "$date": "2020-11-19T04:18:06.000Z" + }, + "end": { + "$date": "2020-11-19T06:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c10e50e5-ce09-42ae-a190-3637b2abe3c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T04:53:16.000Z" + }, + "end": { + "$date": "2020-11-19T05:36:23.000Z" + }, + "events": [ + { + "uuid": "67598b47-f3ef-44df-ad94-a72a466c8621", + "start": { + "$date": "2020-11-19T04:53:16.000Z" + }, + "end": { + "$date": "2020-11-19T05:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c65dc50-48cc-4d10-877d-f7ee596371e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T05:47:00.000Z" + }, + "end": { + "$date": "2020-11-19T06:24:36.000Z" + }, + "events": [ + { + "uuid": "45c4d3e4-6112-4291-a758-11fd4b651924", + "start": { + "$date": "2020-11-19T05:47:00.000Z" + }, + "end": { + "$date": "2020-11-19T06:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4570b47a-1d7e-499c-831e-bc6359853022", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-19T06:09:51.000Z" + }, + "end": { + "$date": "2020-11-19T07:08:41.000Z" + }, + "events": [ + { + "uuid": "24f5c643-b220-4cb3-890f-64a5240d65ab", + "start": { + "$date": "2020-11-19T06:09:51.000Z" + }, + "end": { + "$date": "2020-11-19T07:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24bb2374-5158-4f1f-8cf8-ba1a27b8db62", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T06:30:26.000Z" + }, + "end": { + "$date": "2020-11-19T06:54:52.000Z" + }, + "events": [ + { + "uuid": "b82a8f52-3b4f-4a0e-8f99-b83df84f90fb", + "start": { + "$date": "2020-11-19T06:30:26.000Z" + }, + "end": { + "$date": "2020-11-19T06:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d95d031-8d26-434c-9963-a396b5da3ad4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T07:01:22.000Z" + }, + "end": { + "$date": "2020-11-19T07:29:58.000Z" + }, + "events": [ + { + "uuid": "449312c1-69e1-43e3-b4e3-559cbda28ccb", + "start": { + "$date": "2020-11-19T07:01:22.000Z" + }, + "end": { + "$date": "2020-11-19T07:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "ca23e2ce-c37a-42b7-aecf-5b2a8d9350fb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-19T06:59:53.000Z" + }, + "end": { + "$date": "2020-11-19T07:02:05.000Z" + }, + "events": [ + { + "uuid": "ea790652-0225-4387-aaea-94ee7637cf39", + "start": { + "$date": "2020-11-19T06:59:53.000Z" + }, + "end": { + "$date": "2020-11-19T07:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "d9d3bfc1-16f5-450e-9101-c4399f758128", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-19T07:04:58.000Z" + }, + "end": { + "$date": "2020-11-19T07:06:00.000Z" + }, + "events": [ + { + "uuid": "87cd9071-c2b2-4b43-a245-47d0eb1735dd", + "start": { + "$date": "2020-11-19T07:04:58.000Z" + }, + "end": { + "$date": "2020-11-19T07:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "6199d373-9090-4d37-bbcb-f18de0841d1a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-19T07:16:49.000Z" + }, + "end": { + "$date": "2020-11-19T08:43:56.000Z" + }, + "events": [ + { + "uuid": "922fbd07-05e6-43fd-b6f1-85da45ae59af", + "start": { + "$date": "2020-11-19T07:16:49.000Z" + }, + "end": { + "$date": "2020-11-19T08:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "89b74045-890d-4b4c-b314-3f64e9fa4351", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T17:36:30.000Z" + }, + "end": { + "$date": "2020-11-19T17:38:16.000Z" + }, + "events": [ + { + "uuid": "266c15d8-0bb3-4914-abbb-f9abcb6de02b", + "start": { + "$date": "2020-11-19T17:36:30.000Z" + }, + "end": { + "$date": "2020-11-19T17:38:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f688451f-cd1a-4694-9716-28f2eae8ec4c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T17:38:40.000Z" + }, + "end": { + "$date": "2020-11-19T17:39:41.000Z" + }, + "events": [ + { + "uuid": "2282bb15-8ef7-4ad6-8d48-b005fa2fab0a", + "start": { + "$date": "2020-11-19T17:38:40.000Z" + }, + "end": { + "$date": "2020-11-19T17:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6629abf5-c2ea-42f8-8610-2872e30657aa", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-19T17:47:28.000Z" + }, + "end": { + "$date": "2020-11-19T19:38:11.000Z" + }, + "events": [ + { + "uuid": "1435be57-0e3b-49b9-a32c-1d39c90482c5", + "start": { + "$date": "2020-11-19T17:47:28.000Z" + }, + "end": { + "$date": "2020-11-19T19:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3b90c665-2fd7-4f98-817b-3aa9f5dce045", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T17:52:26.000Z" + }, + "end": { + "$date": "2020-11-19T18:38:12.000Z" + }, + "events": [ + { + "uuid": "a46ae366-a4eb-43e8-b013-e3d95a82cdb7", + "start": { + "$date": "2020-11-19T17:52:26.000Z" + }, + "end": { + "$date": "2020-11-19T18:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9085edbe-1f55-4dd9-ba20-0faaec93050c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T18:46:46.000Z" + }, + "end": { + "$date": "2020-11-19T19:17:14.000Z" + }, + "events": [ + { + "uuid": "63c39323-c39e-4b03-9001-86af4bdcdb32", + "start": { + "$date": "2020-11-19T18:46:46.000Z" + }, + "end": { + "$date": "2020-11-19T19:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52b8c824-1739-4874-949f-d69c471ccf97", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T19:19:04.000Z" + }, + "end": { + "$date": "2020-11-19T19:57:41.000Z" + }, + "events": [ + { + "uuid": "f509e2b2-f441-4a68-bceb-cd0784015d32", + "start": { + "$date": "2020-11-19T19:19:04.000Z" + }, + "end": { + "$date": "2020-11-19T19:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e487f0d2-73f7-4ab4-9b98-910da7a4fbec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T20:24:25.000Z" + }, + "end": { + "$date": "2020-11-19T20:51:01.000Z" + }, + "events": [ + { + "uuid": "b27fa511-7080-4836-8bbf-bb41fa949461", + "start": { + "$date": "2020-11-19T20:24:25.000Z" + }, + "end": { + "$date": "2020-11-19T20:51:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "20818935-5a44-4066-a903-733747122565", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T20:51:45.000Z" + }, + "end": { + "$date": "2020-11-19T21:03:52.000Z" + }, + "events": [ + { + "uuid": "2639249a-3cf4-45be-91c5-eaf2cd8da0b9", + "start": { + "$date": "2020-11-19T20:51:45.000Z" + }, + "end": { + "$date": "2020-11-19T21:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ff51490-f74c-4f17-8a50-f26c932b4898", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T21:39:10.000Z" + }, + "end": { + "$date": "2020-11-19T22:02:42.000Z" + }, + "events": [ + { + "uuid": "8b5e9f53-f984-486b-848d-292845e42225", + "start": { + "$date": "2020-11-19T21:39:10.000Z" + }, + "end": { + "$date": "2020-11-19T22:02:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d516c42-a775-4f78-bb65-4df0052bf46a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-19T22:13:17.000Z" + }, + "end": { + "$date": "2020-11-19T22:27:09.000Z" + }, + "events": [ + { + "uuid": "657e7661-6b48-4f58-9194-dc0fe9b716c0", + "start": { + "$date": "2020-11-19T22:13:17.000Z" + }, + "end": { + "$date": "2020-11-19T22:27:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "a3202f75-8eb4-457e-ad2d-1856c19b193e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-19T23:02:03.000Z" + }, + "end": { + "$date": "2020-11-19T23:06:51.000Z" + }, + "events": [ + { + "uuid": "f5ae1568-3438-495e-a196-a4b10f7d2cc1", + "start": { + "$date": "2020-11-19T23:02:03.000Z" + }, + "end": { + "$date": "2020-11-19T23:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b3688a54-7277-4850-8ab1-2113e45fe7eb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-19T23:51:17.000Z" + }, + "end": { + "$date": "2020-11-19T23:53:28.000Z" + }, + "events": [ + { + "uuid": "0a948abc-ee87-4f50-84fe-fa51da249661", + "start": { + "$date": "2020-11-19T23:51:17.000Z" + }, + "end": { + "$date": "2020-11-19T23:53:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5d4a720c-11d1-41af-933f-a209a2331ea0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T01:05:51.000Z" + }, + "end": { + "$date": "2020-11-20T01:41:31.000Z" + }, + "events": [ + { + "uuid": "a0f6f614-100e-48c5-9c0e-6935a6771382", + "start": { + "$date": "2020-11-20T01:05:51.000Z" + }, + "end": { + "$date": "2020-11-20T01:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b52ebfe-03a0-4a8a-818b-2c1f6ebdbb33", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T01:50:08.000Z" + }, + "end": { + "$date": "2020-11-20T01:51:00.000Z" + }, + "events": [ + { + "uuid": "62135546-6ea4-471d-b3a5-2b2f0f3710d9", + "start": { + "$date": "2020-11-20T01:50:08.000Z" + }, + "end": { + "$date": "2020-11-20T01:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fb0ae63f-0fed-41c9-b112-6f603bcc0185", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T01:47:11.000Z" + }, + "end": { + "$date": "2020-11-20T02:17:39.000Z" + }, + "events": [ + { + "uuid": "6d50c3d0-84db-481e-b5c5-bf80ed032c53", + "start": { + "$date": "2020-11-20T01:47:11.000Z" + }, + "end": { + "$date": "2020-11-20T02:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "742c417d-24b7-418b-a859-3a9e0c6830bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T01:54:36.000Z" + }, + "end": { + "$date": "2020-11-20T02:33:57.000Z" + }, + "events": [ + { + "uuid": "f39272c9-ba0e-4599-9109-d29bb79ff0ec", + "start": { + "$date": "2020-11-20T01:54:36.000Z" + }, + "end": { + "$date": "2020-11-20T02:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96938efd-6a29-43e4-958b-4c6e10cf834d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T01:54:36.000Z" + }, + "end": { + "$date": "2020-11-20T02:34:04.000Z" + }, + "events": [ + { + "uuid": "8af6c907-ad6d-417f-93e9-7f831d3052a7", + "start": { + "$date": "2020-11-20T01:54:36.000Z" + }, + "end": { + "$date": "2020-11-20T02:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a976970e-ac57-4fbd-846b-f122f5791d43", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T02:39:53.000Z" + }, + "end": { + "$date": "2020-11-20T03:15:09.000Z" + }, + "events": [ + { + "uuid": "f64a9c34-dda2-4bde-94b5-46309f1a1c07", + "start": { + "$date": "2020-11-20T02:39:53.000Z" + }, + "end": { + "$date": "2020-11-20T03:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d71891b7-4436-4da3-a031-d0b0939a1514", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T02:39:55.000Z" + }, + "end": { + "$date": "2020-11-20T03:15:02.000Z" + }, + "events": [ + { + "uuid": "1ce03e4e-6b08-4adb-99e7-31cdb16685d8", + "start": { + "$date": "2020-11-20T02:39:55.000Z" + }, + "end": { + "$date": "2020-11-20T03:15:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1d5bd942-27a9-4f01-b502-367463c94cea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-20T03:07:00.000Z" + }, + "end": { + "$date": "2020-11-20T04:15:24.000Z" + }, + "events": [ + { + "uuid": "2ceebfe1-9c0b-42cf-a5a4-66328b2fbea7", + "start": { + "$date": "2020-11-20T03:07:00.000Z" + }, + "end": { + "$date": "2020-11-20T04:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", + "uuid": "b64694c0-c7ff-4d18-b6ff-637231c15ad2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-20T03:12:30.000Z" + }, + "end": { + "$date": "2020-11-20T03:25:28.000Z" + }, + "events": [ + { + "uuid": "ec933d14-afff-4a85-a5d6-5d562d475a09", + "start": { + "$date": "2020-11-20T03:12:30.000Z" + }, + "end": { + "$date": "2020-11-20T03:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a793155-ea80-423e-a077-350d86a3207b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T03:22:15.000Z" + }, + "end": { + "$date": "2020-11-20T03:50:35.000Z" + }, + "events": [ + { + "uuid": "83951452-9643-403e-8920-844840880104", + "start": { + "$date": "2020-11-20T03:22:15.000Z" + }, + "end": { + "$date": "2020-11-20T03:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd02e2c9-7bd3-414d-9299-07a7a22297a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T03:22:13.000Z" + }, + "end": { + "$date": "2020-11-20T03:50:41.000Z" + }, + "events": [ + { + "uuid": "e0a6df15-3452-4ff8-8c6e-826ac526239c", + "start": { + "$date": "2020-11-20T03:22:13.000Z" + }, + "end": { + "$date": "2020-11-20T03:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7ff0b43f-a836-4f8e-9c14-9c9d18cca478", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-20T03:36:42.000Z" + }, + "end": { + "$date": "2020-11-20T04:17:30.000Z" + }, + "events": [ + { + "uuid": "43ff9310-e4fd-43d6-a4f6-8256672a7c51", + "start": { + "$date": "2020-11-20T03:36:42.000Z" + }, + "end": { + "$date": "2020-11-20T04:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c92b9892-92f5-4c25-bd58-ad599f74c3af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T03:56:22.000Z" + }, + "end": { + "$date": "2020-11-20T04:26:27.000Z" + }, + "events": [ + { + "uuid": "9b23e368-d3be-45fb-bee1-885254b4f5a9", + "start": { + "$date": "2020-11-20T03:56:22.000Z" + }, + "end": { + "$date": "2020-11-20T04:26:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "302f1b40-2e2b-4899-8ab1-b2fa5a4ed17a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T03:57:01.000Z" + }, + "end": { + "$date": "2020-11-20T04:26:28.000Z" + }, + "events": [ + { + "uuid": "368ee920-e8a5-44d0-8f89-0f6d2eb14fbd", + "start": { + "$date": "2020-11-20T03:57:01.000Z" + }, + "end": { + "$date": "2020-11-20T04:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ec3e4a9-7d51-47d5-95a1-90e34ae1efe0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T04:27:53.000Z" + }, + "end": { + "$date": "2020-11-20T04:30:49.000Z" + }, + "events": [ + { + "uuid": "6ab9a5f1-6c06-433c-91b2-511b7ee40009", + "start": { + "$date": "2020-11-20T04:27:53.000Z" + }, + "end": { + "$date": "2020-11-20T04:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91a985a2-0b7f-473f-ab8a-746efc70330f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T05:13:35.000Z" + }, + "end": { + "$date": "2020-11-20T05:14:05.000Z" + }, + "events": [ + { + "uuid": "cf404476-842e-4336-8f79-fc99c27363ac", + "start": { + "$date": "2020-11-20T05:13:35.000Z" + }, + "end": { + "$date": "2020-11-20T05:14:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "846db5ed-0435-4037-b757-5f9614461971", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-20T04:57:22.000Z" + }, + "end": { + "$date": "2020-11-20T06:02:11.000Z" + }, + "events": [ + { + "uuid": "cdcdcde2-c50f-4c3c-a1e9-074e41e1b95e", + "start": { + "$date": "2020-11-20T04:57:22.000Z" + }, + "end": { + "$date": "2020-11-20T06:02:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1c30a596-bac4-4422-b707-06973a1c3500", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T05:02:36.000Z" + }, + "end": { + "$date": "2020-11-20T05:13:53.000Z" + }, + "events": [ + { + "uuid": "df07c3f3-3fe4-4883-839f-587b723e59c9", + "start": { + "$date": "2020-11-20T05:02:36.000Z" + }, + "end": { + "$date": "2020-11-20T05:13:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1b65fc4a-550a-48ec-b75f-a5a503344579", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-20T05:08:22.000Z" + }, + "end": { + "$date": "2020-11-20T05:13:57.000Z" + }, + "events": [ + { + "uuid": "2e727f2c-70b8-4d5c-a7a3-78a6ec9ffda5", + "start": { + "$date": "2020-11-20T05:08:22.000Z" + }, + "end": { + "$date": "2020-11-20T05:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "57876246-cc15-4d27-b20f-848dce69912f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T05:14:25.000Z" + }, + "end": { + "$date": "2020-11-20T05:55:32.000Z" + }, + "events": [ + { + "uuid": "3a6a000f-8baf-42f7-bf43-5fec6cc483dd", + "start": { + "$date": "2020-11-20T05:14:25.000Z" + }, + "end": { + "$date": "2020-11-20T05:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d5e0227f-181e-4b5f-b43e-0de393cbb54b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T05:14:32.000Z" + }, + "end": { + "$date": "2020-11-20T05:54:14.000Z" + }, + "events": [ + { + "uuid": "a31628b7-8886-4122-9957-3fe759f2a198", + "start": { + "$date": "2020-11-20T05:14:32.000Z" + }, + "end": { + "$date": "2020-11-20T05:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2569230e-432d-49fc-9664-081aceb60f50", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-20T05:15:22.000Z" + }, + "end": { + "$date": "2020-11-20T05:55:35.000Z" + }, + "events": [ + { + "uuid": "4d2866fd-c7b9-4f6c-8854-a1471d2411d3", + "start": { + "$date": "2020-11-20T05:15:22.000Z" + }, + "end": { + "$date": "2020-11-20T05:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "b7517215-7dd4-468a-bf81-0cbb95bc52d9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-20T05:54:07.000Z" + }, + "end": { + "$date": "2020-11-20T06:08:45.000Z" + }, + "events": [ + { + "uuid": "2fed5872-ebaa-4629-9c89-159126caa23f", + "start": { + "$date": "2020-11-20T05:54:07.000Z" + }, + "end": { + "$date": "2020-11-20T06:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9396028d-76e5-4927-9d06-9c667695c3dc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-20T06:02:41.000Z" + }, + "end": { + "$date": "2020-11-20T06:18:39.000Z" + }, + "events": [ + { + "uuid": "17161c44-09cb-4fb4-82e4-1b9a09d4e1dd", + "start": { + "$date": "2020-11-20T06:02:41.000Z" + }, + "end": { + "$date": "2020-11-20T06:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "fd945cdf-12a1-49b2-b249-98b1f68a8013", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-20T06:09:00.000Z" + }, + "end": { + "$date": "2020-11-20T06:10:31.000Z" + }, + "events": [ + { + "uuid": "a0983a14-1935-468d-a06e-4b3eb4e03543", + "start": { + "$date": "2020-11-20T06:09:00.000Z" + }, + "end": { + "$date": "2020-11-20T06:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "4faf613f-7edc-4115-8ea5-d9f8ad622848", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-20T06:10:46.000Z" + }, + "end": { + "$date": "2020-11-20T06:50:19.000Z" + }, + "events": [ + { + "uuid": "d3015901-7eed-4a7e-8544-3771c2371a6f", + "start": { + "$date": "2020-11-20T06:10:46.000Z" + }, + "end": { + "$date": "2020-11-20T06:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d598cc34-53af-407f-83c1-c27051c4c0b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T06:26:36.000Z" + }, + "end": { + "$date": "2020-11-20T07:07:49.000Z" + }, + "events": [ + { + "uuid": "363e28e3-aded-4bf1-81e2-db215834e681", + "start": { + "$date": "2020-11-20T06:26:36.000Z" + }, + "end": { + "$date": "2020-11-20T07:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fe88ef51-4f0b-42bc-bc56-c56aa73a5154", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T18:15:35.000Z" + }, + "end": { + "$date": "2020-11-20T19:01:03.000Z" + }, + "events": [ + { + "uuid": "7a5f72d2-aa6e-4163-a141-07db385ee235", + "start": { + "$date": "2020-11-20T18:15:35.000Z" + }, + "end": { + "$date": "2020-11-20T19:01:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "9deca7b9-e60b-495b-bd68-2db5a5f3bb8d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T19:09:57.000Z" + }, + "end": { + "$date": "2020-11-20T19:35:00.000Z" + }, + "events": [ + { + "uuid": "05577fbc-5dc8-4f9d-a8a8-148e51f951b9", + "start": { + "$date": "2020-11-20T19:09:57.000Z" + }, + "end": { + "$date": "2020-11-20T19:35:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "853c0704-30a6-4a5a-a2c6-633c803d5fb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T19:22:02.000Z" + }, + "end": { + "$date": "2020-11-20T19:54:45.000Z" + }, + "events": [ + { + "uuid": "b7049b85-91b3-4db0-9058-1b116b7c3769", + "start": { + "$date": "2020-11-20T19:22:02.000Z" + }, + "end": { + "$date": "2020-11-20T19:54:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e705de9-7f93-45c3-91df-5afdce40befa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T20:02:34.000Z" + }, + "end": { + "$date": "2020-11-20T20:36:43.000Z" + }, + "events": [ + { + "uuid": "c74b750f-0db6-4080-a05a-832f0c787d0c", + "start": { + "$date": "2020-11-20T20:02:34.000Z" + }, + "end": { + "$date": "2020-11-20T20:36:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "91c7edec-9591-4598-b8fe-bfa0fb7b899f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T21:04:45.000Z" + }, + "end": { + "$date": "2020-11-20T21:54:07.000Z" + }, + "events": [ + { + "uuid": "649e9959-ffdb-4473-8021-f88e9ce9ef37", + "start": { + "$date": "2020-11-20T21:04:45.000Z" + }, + "end": { + "$date": "2020-11-20T21:54:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ae99f38-7f3e-45c5-baa0-ed76897e65a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-20T21:28:11.000Z" + }, + "end": { + "$date": "2020-11-20T21:47:33.000Z" + }, + "events": [ + { + "uuid": "8eab1056-9ff0-4c2d-b851-e432a6b75efa", + "start": { + "$date": "2020-11-20T21:28:11.000Z" + }, + "end": { + "$date": "2020-11-20T21:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "78678953-f62b-420c-b96e-07c61e22fffa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-20T21:54:20.000Z" + }, + "end": { + "$date": "2020-11-20T22:16:58.000Z" + }, + "events": [ + { + "uuid": "2cee1ea6-1cb6-442a-a50f-48ac4ecd9e53", + "start": { + "$date": "2020-11-20T21:54:20.000Z" + }, + "end": { + "$date": "2020-11-20T22:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ce9760f2-ebb7-4cea-8b9f-b6cc25b83806", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-20T23:19:51.000Z" + }, + "end": { + "$date": "2020-11-20T23:41:22.000Z" + }, + "events": [ + { + "uuid": "cad9475d-36cc-4688-ac58-b93b8bc7f5d2", + "start": { + "$date": "2020-11-20T23:19:51.000Z" + }, + "end": { + "$date": "2020-11-20T23:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "4b1303e8-0563-4a01-ad4f-66f1b737c35f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-20T23:23:29.000Z" + }, + "end": { + "$date": "2020-11-21T00:42:10.000Z" + }, + "events": [ + { + "uuid": "5d5e2165-12d5-457d-a614-7b33238aaad0", + "start": { + "$date": "2020-11-20T23:23:29.000Z" + }, + "end": { + "$date": "2020-11-21T00:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "7194ea18-ac25-4f2d-a35b-501958eb21f2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-20T23:31:19.000Z" + }, + "end": { + "$date": "2020-11-21T00:04:13.000Z" + }, + "events": [ + { + "uuid": "557b32e6-bc02-40d5-8e5b-14e91d361297", + "start": { + "$date": "2020-11-20T23:31:19.000Z" + }, + "end": { + "$date": "2020-11-21T00:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e47ee00a-e37f-4113-941a-ce95b56359e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T00:08:32.000Z" + }, + "end": { + "$date": "2020-11-21T00:39:14.000Z" + }, + "events": [ + { + "uuid": "8faa04fe-7b48-46dc-bbb2-00f14d45093f", + "start": { + "$date": "2020-11-21T00:08:32.000Z" + }, + "end": { + "$date": "2020-11-21T00:39:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "80d559dc-62d7-48fc-b4ff-2af58227b954", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T00:48:52.000Z" + }, + "end": { + "$date": "2020-11-21T01:36:05.000Z" + }, + "events": [ + { + "uuid": "ad2db979-5698-4e0c-be47-3abc5725ce57", + "start": { + "$date": "2020-11-21T00:48:52.000Z" + }, + "end": { + "$date": "2020-11-21T01:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8e94760b-3a8f-493b-8379-a21de794b177", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T00:54:39.000Z" + }, + "end": { + "$date": "2020-11-21T01:36:51.000Z" + }, + "events": [ + { + "uuid": "d6d89113-d483-4e41-8a87-055cd7b19604", + "start": { + "$date": "2020-11-21T00:54:39.000Z" + }, + "end": { + "$date": "2020-11-21T01:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c0bb134a-d270-4bf5-990a-3f08aec0913f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-21T01:53:46.000Z" + }, + "end": { + "$date": "2020-11-21T02:27:59.000Z" + }, + "events": [ + { + "uuid": "dc130119-f329-4ab8-8537-0c8abfe5372c", + "start": { + "$date": "2020-11-21T01:53:46.000Z" + }, + "end": { + "$date": "2020-11-21T02:27:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cda2d447-c308-4093-83f3-4af7085f859e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-21T02:24:35.000Z" + }, + "end": { + "$date": "2020-11-21T02:49:07.000Z" + }, + "events": [ + { + "uuid": "0ceebaed-77e7-455c-b4df-6b9f4610ac43", + "start": { + "$date": "2020-11-21T02:24:35.000Z" + }, + "end": { + "$date": "2020-11-21T02:36:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed548604-1e3a-45a9-a3cb-6d04607e0fe3", + "start": { + "$date": "2020-11-21T02:36:35.000Z" + }, + "end": { + "$date": "2020-11-21T02:44:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4372bd83-2d84-43ae-9d58-74235d915926", + "start": { + "$date": "2020-11-21T02:44:35.000Z" + }, + "end": { + "$date": "2020-11-21T02:49:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0ece1beb-5ec3-4c5e-9ec4-35791b8709b3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-21T02:37:35.000Z" + }, + "end": { + "$date": "2020-11-21T05:04:51.000Z" + }, + "events": [ + { + "uuid": "9cc61e96-2e42-49d2-b75e-b7b928c470eb", + "start": { + "$date": "2020-11-21T02:37:35.000Z" + }, + "end": { + "$date": "2020-11-21T05:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "d02bae64-2153-412f-9604-8f232dc3e4ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-21T02:55:25.000Z" + }, + "end": { + "$date": "2020-11-21T06:47:44.000Z" + }, + "events": [ + { + "uuid": "7891a050-31ce-4cda-b962-028e32544159", + "start": { + "$date": "2020-11-21T02:55:25.000Z" + }, + "end": { + "$date": "2020-11-21T06:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a5573890-8084-4669-bb62-febc21f8fcf9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T02:49:25.000Z" + }, + "end": { + "$date": "2020-11-21T05:58:46.000Z" + }, + "events": [ + { + "uuid": "f02b3513-104e-41a6-9d29-ed72162e91ad", + "start": { + "$date": "2020-11-21T02:49:25.000Z" + }, + "end": { + "$date": "2020-11-21T05:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b3947947-1e6a-4e1c-9f97-8effacb7d643", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-21T02:49:26.000Z" + }, + "end": { + "$date": "2020-11-21T06:47:56.000Z" + }, + "events": [ + { + "uuid": "51d5d2d2-e33a-46f8-8c15-99cc0c87e10c", + "start": { + "$date": "2020-11-21T02:49:26.000Z" + }, + "end": { + "$date": "2020-11-21T06:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6bab8298-0504-4ef5-84bd-4a62a4bb1de5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T03:27:43.000Z" + }, + "end": { + "$date": "2020-11-21T06:47:45.000Z" + }, + "events": [ + { + "uuid": "fa8f3675-baec-46e3-85fa-7781834fa4b4", + "start": { + "$date": "2020-11-21T03:27:43.000Z" + }, + "end": { + "$date": "2020-11-21T06:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d4304e78-de5d-4b1e-984c-f36216dadf1c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-21T03:36:22.000Z" + }, + "end": { + "$date": "2020-11-21T05:16:37.000Z" + }, + "events": [ + { + "uuid": "d3e7d323-72af-4bf0-be7f-19f2f238bae5", + "start": { + "$date": "2020-11-21T03:36:22.000Z" + }, + "end": { + "$date": "2020-11-21T05:16:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8882567c-7ff5-4c78-9da1-30a089ff75dc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-21T05:20:33.000Z" + }, + "end": { + "$date": "2020-11-21T06:33:29.000Z" + }, + "events": [ + { + "uuid": "4c564d01-95ba-48d9-b313-e249a131cbdb", + "start": { + "$date": "2020-11-21T05:20:33.000Z" + }, + "end": { + "$date": "2020-11-21T06:33:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a3b48bb2-24fe-4579-a998-efa4fb00fa71", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-21T05:28:39.000Z" + }, + "end": { + "$date": "2020-11-21T06:59:47.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T05:28:39.000Z" + }, + "end": { + "$date": "2020-11-21T06:59:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6dab43b8-56c1-4007-a55f-0d6ab9f91fd3", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-21T05:44:51.000Z" + }, + "end": { + "$date": "2020-11-21T07:59:50.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T05:44:51.000Z" + }, + "end": { + "$date": "2020-11-21T07:59:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "269b88fc-2f5f-4993-bd7b-51e0e19adc04", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-21T05:50:16.000Z" + }, + "end": { + "$date": "2020-11-21T09:20:16.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T05:50:16.000Z" + }, + "end": { + "$date": "2020-11-21T09:20:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5bab5aa3-a5d1-4dde-bdf9-37f8ba1d5b7b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-21T06:35:55.000Z" + }, + "end": { + "$date": "2020-11-21T08:21:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T06:35:55.000Z" + }, + "end": { + "$date": "2020-11-21T08:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "822684c4-5e95-4541-8b3e-31f4dd72b2c4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T06:48:00.000Z" + }, + "end": { + "$date": "2020-11-21T06:55:21.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T06:48:00.000Z" + }, + "end": { + "$date": "2020-11-21T06:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9b873635-84cf-425b-b5e4-130658520503", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T06:56:32.000Z" + }, + "end": { + "$date": "2020-11-21T07:59:45.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T06:56:32.000Z" + }, + "end": { + "$date": "2020-11-21T07:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ffefe4e6-fbe5-41fa-ae55-8c429ded8edd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-21T07:04:56.000Z" + }, + "end": { + "$date": "2020-11-21T08:21:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-21T07:04:56.000Z" + }, + "end": { + "$date": "2020-11-21T08:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "c9cda120-a3dd-482c-b921-fdc4b5d86cbd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T16:49:57.000Z" + }, + "end": { + "$date": "2020-11-21T17:33:48.000Z" + }, + "events": [ + { + "uuid": "a75216d3-42d0-435e-9e16-1364c9c97087", + "start": { + "$date": "2020-11-21T16:49:57.000Z" + }, + "end": { + "$date": "2020-11-21T17:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "eb8d3ef1-f3b9-45e4-b649-6591b1a6b6e2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T17:47:41.000Z" + }, + "end": { + "$date": "2020-11-21T17:56:22.000Z" + }, + "events": [ + { + "uuid": "cb7d0997-ed17-417f-9068-3ce340451631", + "start": { + "$date": "2020-11-21T17:47:41.000Z" + }, + "end": { + "$date": "2020-11-21T17:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ffe0f85c-bc36-49b2-b8dd-a0ece9bd8ad5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T18:24:43.000Z" + }, + "end": { + "$date": "2020-11-21T18:25:23.000Z" + }, + "events": [ + { + "uuid": "858eb921-9fa1-483f-b558-9ebe6abd5007", + "start": { + "$date": "2020-11-21T18:24:43.000Z" + }, + "end": { + "$date": "2020-11-21T18:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0c3b4131-387f-4dd2-9509-ba930740b8fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T18:31:38.000Z" + }, + "end": { + "$date": "2020-11-21T19:18:54.000Z" + }, + "events": [ + { + "uuid": "fccf7203-f270-448f-8022-fc5d3ddd07c1", + "start": { + "$date": "2020-11-21T18:31:38.000Z" + }, + "end": { + "$date": "2020-11-21T18:55:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f3eaa031-49e2-47c3-81c8-ae4d72261f3e", + "start": { + "$date": "2020-11-21T18:55:38.000Z" + }, + "end": { + "$date": "2020-11-21T19:01:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca626258-5248-4337-863c-870327ab8c2e", + "start": { + "$date": "2020-11-21T19:01:38.000Z" + }, + "end": { + "$date": "2020-11-21T19:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9cd30420-3032-4048-ad45-17b47440264a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-21T19:17:40.000Z" + }, + "end": { + "$date": "2020-11-21T19:54:09.000Z" + }, + "events": [ + { + "uuid": "7bc4270d-5d1a-43de-999e-928f8ff029d8", + "start": { + "$date": "2020-11-21T19:17:40.000Z" + }, + "end": { + "$date": "2020-11-21T19:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "89e284d9-1f24-4fb4-8251-53ed3ac8766e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T19:23:56.000Z" + }, + "end": { + "$date": "2020-11-21T19:25:51.000Z" + }, + "events": [ + { + "uuid": "d3a0db53-8219-4799-bdbb-a218c4d9cb3c", + "start": { + "$date": "2020-11-21T19:23:56.000Z" + }, + "end": { + "$date": "2020-11-21T19:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4f64adac-20e9-4737-a103-e2ddf97d4ed0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T19:26:06.000Z" + }, + "end": { + "$date": "2020-11-21T19:34:27.000Z" + }, + "events": [ + { + "uuid": "e26d670c-02c3-4605-81f4-640ff27ca254", + "start": { + "$date": "2020-11-21T19:26:06.000Z" + }, + "end": { + "$date": "2020-11-21T19:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0c8584a9-a2f3-463d-b5cd-7a81ac89be00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T19:35:26.000Z" + }, + "end": { + "$date": "2020-11-21T20:47:18.000Z" + }, + "events": [ + { + "uuid": "3cfc12fd-586a-41c8-883d-b9e5d709fa9b", + "start": { + "$date": "2020-11-21T19:35:26.000Z" + }, + "end": { + "$date": "2020-11-21T20:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ade39ef7-b01a-404a-b5ba-f7d093d3c899", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-21T20:37:17.000Z" + }, + "end": { + "$date": "2020-11-21T20:39:54.000Z" + }, + "events": [ + { + "uuid": "18a19098-d35b-446d-b93c-4580790edb07", + "start": { + "$date": "2020-11-21T20:37:17.000Z" + }, + "end": { + "$date": "2020-11-21T20:39:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1485212c-ae7a-4df2-9eb4-1c53678b683e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-21T20:38:42.000Z" + }, + "end": { + "$date": "2020-11-21T20:39:52.000Z" + }, + "events": [ + { + "uuid": "d76e3179-7063-4f22-8e46-578c838603a2", + "start": { + "$date": "2020-11-21T20:38:42.000Z" + }, + "end": { + "$date": "2020-11-21T20:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7a191105-1a05-45b7-b3b9-d23f60caf83e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-21T20:50:48.000Z" + }, + "end": { + "$date": "2020-11-21T21:09:39.000Z" + }, + "events": [ + { + "uuid": "367e6fcb-4cb3-4e7c-84e9-6d1817bdd651", + "start": { + "$date": "2020-11-21T20:50:48.000Z" + }, + "end": { + "$date": "2020-11-21T21:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "59a316ab-cdde-426b-9e21-c4ab73acf830", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-21T22:23:17.000Z" + }, + "end": { + "$date": "2020-11-21T23:18:38.000Z" + }, + "events": [ + { + "uuid": "fe938373-510e-4902-b50d-67876a9156c9", + "start": { + "$date": "2020-11-21T22:23:17.000Z" + }, + "end": { + "$date": "2020-11-21T23:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8f884c36-1575-4b30-b69f-9ad801aa59a7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-21T22:56:30.000Z" + }, + "end": { + "$date": "2020-11-21T23:12:12.000Z" + }, + "events": [ + { + "uuid": "d7f75c09-ca85-410f-a431-a86797e0da91", + "start": { + "$date": "2020-11-21T22:56:30.000Z" + }, + "end": { + "$date": "2020-11-21T23:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ecb8005c-e6ad-418f-b172-3856aeefe115", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-22T01:03:40.000Z" + }, + "end": { + "$date": "2020-11-22T01:55:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T01:03:40.000Z" + }, + "end": { + "$date": "2020-11-22T01:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "d246e582-4e39-4259-a526-0c58d9ab2861", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-22T01:33:56.000Z" + }, + "end": { + "$date": "2020-11-22T03:34:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T01:33:56.000Z" + }, + "end": { + "$date": "2020-11-22T03:34:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "255e1039-bede-45dd-9bb5-34eb2ca26c4c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-22T01:58:13.000Z" + }, + "end": { + "$date": "2020-11-22T04:03:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T01:58:13.000Z" + }, + "end": { + "$date": "2020-11-22T04:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84cabe1b-ed02-4655-8b8e-beda38e46fdb", + "uuid": "2bcecf44-476c-43d5-9f12-ef373711b46a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T03:01:19.000Z" + }, + "end": { + "$date": "2020-11-22T03:06:35.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T03:01:19.000Z" + }, + "end": { + "$date": "2020-11-22T03:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4a61bf48-a6f6-4602-9ebf-35cb8b669865", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T02:09:22.000Z" + }, + "end": { + "$date": "2020-11-22T04:46:52.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T02:09:22.000Z" + }, + "end": { + "$date": "2020-11-22T04:46:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "63402b5a-e69c-47e6-b914-f79255e2a01c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-22T02:49:54.000Z" + }, + "end": { + "$date": "2020-11-22T05:59:41.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T02:49:54.000Z" + }, + "end": { + "$date": "2020-11-22T05:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "47343ba8-da82-4ede-8912-0dc45021f14a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T04:01:52.000Z" + }, + "end": { + "$date": "2020-11-22T04:27:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T04:01:52.000Z" + }, + "end": { + "$date": "2020-11-22T04:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6a8166e5-483f-422e-a498-eeda96ca5c04", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-22T04:04:05.000Z" + }, + "end": { + "$date": "2020-11-22T05:40:47.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T04:04:05.000Z" + }, + "end": { + "$date": "2020-11-22T05:40:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7df8e7ed-51c2-4172-b421-1261184e9288", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T04:48:56.000Z" + }, + "end": { + "$date": "2020-11-22T04:57:59.000Z" + }, + "events": [ + { + "uuid": "595866e6-cfd5-484f-9895-968f59d10400", + "start": { + "$date": "2020-11-22T04:48:56.000Z" + }, + "end": { + "$date": "2020-11-22T04:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0bd1586d-02bc-4893-b8a8-0aa7b32d57ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T05:21:58.000Z" + }, + "end": { + "$date": "2020-11-22T05:31:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T05:21:58.000Z" + }, + "end": { + "$date": "2020-11-22T05:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "04144b1a-5856-460a-befb-79e4d856338d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T05:22:22.000Z" + }, + "end": { + "$date": "2020-11-22T06:12:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T05:22:22.000Z" + }, + "end": { + "$date": "2020-11-22T06:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "697450b2-d162-471d-a7df-de046dd3195a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-22T05:27:37.000Z" + }, + "end": { + "$date": "2020-11-22T08:11:04.000Z" + }, + "events": [ + { + "uuid": "13ee5a11-7ded-49a5-ba39-f8a0ea6c5c72", + "start": { + "$date": "2020-11-22T05:27:37.000Z" + }, + "end": { + "$date": "2020-11-22T08:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3462b73a-5ed2-44da-9e9f-084482ec352a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-22T05:28:19.000Z" + }, + "end": { + "$date": "2020-11-22T08:11:02.000Z" + }, + "events": [ + { + "uuid": "c8a82067-b269-40a6-934f-4f6fae272e5a", + "start": { + "$date": "2020-11-22T05:28:19.000Z" + }, + "end": { + "$date": "2020-11-22T08:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6b9e982e-d71b-4d6b-a2c1-1b742b6347fa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T05:32:14.000Z" + }, + "end": { + "$date": "2020-11-22T06:00:47.000Z" + }, + "events": [ + { + "uuid": "0527b696-a658-43e9-b00d-a30a89438222", + "start": { + "$date": "2020-11-22T05:32:14.000Z" + }, + "end": { + "$date": "2020-11-22T06:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "75bdf3a6-a8c8-4db6-b011-a8951b1859ff", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-22T05:44:08.000Z" + }, + "end": { + "$date": "2020-11-22T07:14:57.000Z" + }, + "events": [ + { + "uuid": "958f8e57-faba-44b4-abbd-7e646cf8aa14", + "start": { + "$date": "2020-11-22T05:44:08.000Z" + }, + "end": { + "$date": "2020-11-22T07:14:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6418f4fd-5403-4367-8f4b-10a8d39f781f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T06:01:03.000Z" + }, + "end": { + "$date": "2020-11-22T06:26:45.000Z" + }, + "events": [ + { + "uuid": "e501b499-26ff-46a6-a718-0b8553198432", + "start": { + "$date": "2020-11-22T06:01:03.000Z" + }, + "end": { + "$date": "2020-11-22T06:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a4da9871-689b-48fe-85ed-ab4cf8277834", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-22T06:21:00.000Z" + }, + "end": { + "$date": "2020-11-22T08:11:02.000Z" + }, + "events": [ + { + "uuid": "b94a1772-c2df-449b-9799-2967e5cbb502", + "start": { + "$date": "2020-11-22T06:21:00.000Z" + }, + "end": { + "$date": "2020-11-22T08:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d36e4032-a55e-4ed0-b3ae-0cbc621b7a83", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T06:27:30.000Z" + }, + "end": { + "$date": "2020-11-22T06:57:24.000Z" + }, + "events": [ + { + "uuid": "6baf8ab1-7403-4673-9e2b-27465f2e8d14", + "start": { + "$date": "2020-11-22T06:27:30.000Z" + }, + "end": { + "$date": "2020-11-22T06:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bd9e32f0-b327-4665-9741-c296e1eddf8a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T06:57:39.000Z" + }, + "end": { + "$date": "2020-11-22T07:51:48.000Z" + }, + "events": [ + { + "uuid": "8c2b5d16-5797-4845-be42-3b46726a1b6a", + "start": { + "$date": "2020-11-22T06:57:39.000Z" + }, + "end": { + "$date": "2020-11-22T07:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "399124ae-f131-4140-9d18-3bc6186a7197", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-22T07:21:09.000Z" + }, + "end": { + "$date": "2020-11-22T07:44:20.000Z" + }, + "events": [ + { + "uuid": "cffa02ab-7813-49d9-b230-18a921dc64d4", + "start": { + "$date": "2020-11-22T07:21:09.000Z" + }, + "end": { + "$date": "2020-11-22T07:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "95be880b-3e28-42ef-9ff4-af4405e203e4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-22T07:32:58.000Z" + }, + "end": { + "$date": "2020-11-22T08:46:32.000Z" + }, + "events": [ + { + "uuid": "948c2a28-ee20-4e23-8da3-cb6cd2258d2f", + "start": { + "$date": "2020-11-22T07:32:58.000Z" + }, + "end": { + "$date": "2020-11-22T08:46:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "57219205-b7a3-4eae-b263-ffea40e7a13e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T07:52:34.000Z" + }, + "end": { + "$date": "2020-11-22T08:10:53.000Z" + }, + "events": [ + { + "uuid": "a04a91c8-269a-4a1b-b8fb-2e456e869328", + "start": { + "$date": "2020-11-22T07:52:34.000Z" + }, + "end": { + "$date": "2020-11-22T08:10:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "954e5f00-5f4c-40d5-894f-fa491d8d4366", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T16:38:13.000Z" + }, + "end": { + "$date": "2020-11-22T16:41:30.000Z" + }, + "events": [ + { + "uuid": "68e1bd60-9343-40a0-8991-a268c0cccf2f", + "start": { + "$date": "2020-11-22T16:38:13.000Z" + }, + "end": { + "$date": "2020-11-22T16:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "268e7743-255c-4a67-bff2-f2391f824566", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T16:41:58.000Z" + }, + "end": { + "$date": "2020-11-22T17:41:48.000Z" + }, + "events": [ + { + "uuid": "f9c0212d-3dac-4081-9402-3abed5c001f5", + "start": { + "$date": "2020-11-22T16:41:58.000Z" + }, + "end": { + "$date": "2020-11-22T17:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0ca2f5fb-44d8-4489-ba64-0148fd5f6f3d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T17:41:56.000Z" + }, + "end": { + "$date": "2020-11-22T17:42:58.000Z" + }, + "events": [ + { + "uuid": "5c6ecefa-2c5e-4b5d-a651-2888c4e8cb47", + "start": { + "$date": "2020-11-22T17:41:56.000Z" + }, + "end": { + "$date": "2020-11-22T17:42:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5de6ee9d-b45b-4ae5-94ea-c1abb9a68275", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T18:01:53.000Z" + }, + "end": { + "$date": "2020-11-22T19:36:31.000Z" + }, + "events": [ + { + "uuid": "09870b57-fc54-4eab-906b-ac73fb17b8ec", + "start": { + "$date": "2020-11-22T18:01:53.000Z" + }, + "end": { + "$date": "2020-11-22T19:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e47bbbeb-1427-4f47-a89f-5a8174c91cc2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-22T18:16:00.000Z" + }, + "end": { + "$date": "2020-11-22T18:54:03.000Z" + }, + "events": [ + { + "uuid": "789f1461-0a0b-4ad2-b877-8fa17675b8d2", + "start": { + "$date": "2020-11-22T18:16:00.000Z" + }, + "end": { + "$date": "2020-11-22T18:54:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "516c53b1-ba5c-4041-9999-676bc77689dc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-22T20:18:02.000Z" + }, + "end": { + "$date": "2020-11-22T20:25:03.000Z" + }, + "events": [ + { + "uuid": "225c6234-7975-452b-ba31-55fa5bced491", + "start": { + "$date": "2020-11-22T20:18:02.000Z" + }, + "end": { + "$date": "2020-11-22T20:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bccf72f4-bb79-4176-a2ae-7977d8ff3355", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-22T20:25:08.000Z" + }, + "end": { + "$date": "2020-11-22T21:19:39.000Z" + }, + "events": [ + { + "uuid": "1b1e3e95-7954-4f83-bd71-6dd00da667ca", + "start": { + "$date": "2020-11-22T20:25:08.000Z" + }, + "end": { + "$date": "2020-11-22T21:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2bc4b02c-9e77-4cb9-9a30-8296ccb130f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T20:30:24.000Z" + }, + "end": { + "$date": "2020-11-22T20:34:05.000Z" + }, + "events": [ + { + "uuid": "5084840e-82c3-4a1f-9f96-5759eacde762", + "start": { + "$date": "2020-11-22T20:30:24.000Z" + }, + "end": { + "$date": "2020-11-22T20:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "a140ad16-1453-4847-b6cd-1df6cf6e3b95", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T20:34:20.000Z" + }, + "end": { + "$date": "2020-11-22T20:36:48.000Z" + }, + "events": [ + { + "uuid": "4ea6ae7e-cd24-4cc2-961f-aefe02372feb", + "start": { + "$date": "2020-11-22T20:34:20.000Z" + }, + "end": { + "$date": "2020-11-22T20:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4faaf850-5621-49a8-b765-f68e67fcdfda", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T20:39:40.000Z" + }, + "end": { + "$date": "2020-11-22T20:42:55.000Z" + }, + "events": [ + { + "uuid": "23d76af1-39d3-4205-bb62-08e6235e27e5", + "start": { + "$date": "2020-11-22T20:39:40.000Z" + }, + "end": { + "$date": "2020-11-22T20:42:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fe51b459-95cd-47e0-bfe3-09b710d564b7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-22T20:59:25.000Z" + }, + "end": { + "$date": "2020-11-23T00:15:03.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-22T20:59:25.000Z" + }, + "end": { + "$date": "2020-11-23T00:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0869fb52-c0ff-4050-b5f5-77fe877e3f22", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T21:19:59.000Z" + }, + "end": { + "$date": "2020-11-22T21:44:22.000Z" + }, + "events": [ + { + "uuid": "e5f26535-a33e-4b4b-b1b0-4826ab0f34ad", + "start": { + "$date": "2020-11-22T21:19:59.000Z" + }, + "end": { + "$date": "2020-11-22T21:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d632424-b622-4e8b-beb9-2be5a7fc8219", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-22T21:41:52.000Z" + }, + "end": { + "$date": "2020-11-22T22:32:29.000Z" + }, + "events": [ + { + "uuid": "d7348edb-0eda-4203-9ac9-34db847a3844", + "start": { + "$date": "2020-11-22T21:41:52.000Z" + }, + "end": { + "$date": "2020-11-22T22:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2af3d452-55ea-4b99-9bae-17c8edc65384", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-22T21:55:14.000Z" + }, + "end": { + "$date": "2020-11-22T22:32:35.000Z" + }, + "events": [ + { + "uuid": "b21f5758-7771-43fc-a433-3c7d7f37cbb6", + "start": { + "$date": "2020-11-22T21:55:14.000Z" + }, + "end": { + "$date": "2020-11-22T22:32:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5110731c-7f72-4a31-85fb-93ceef05a1ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-23T00:15:14.000Z" + }, + "end": { + "$date": "2020-11-23T01:41:50.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T00:15:14.000Z" + }, + "end": { + "$date": "2020-11-23T01:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "f54b3785-2877-44ba-b6b6-62c6aa5bb40c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T23:15:08.000Z" + }, + "end": { + "$date": "2020-11-22T23:22:44.000Z" + }, + "events": [ + { + "uuid": "fa1b8d4b-4d92-4d9e-90ce-29b1aeffc80e", + "start": { + "$date": "2020-11-22T23:15:08.000Z" + }, + "end": { + "$date": "2020-11-22T23:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6c986af6-2f2c-44d9-b6f3-5138b3269844", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-22T23:17:56.000Z" + }, + "end": { + "$date": "2020-11-23T00:15:08.000Z" + }, + "events": [ + { + "uuid": "9504b428-8cae-478e-9ce7-6e6f878c5fb3", + "start": { + "$date": "2020-11-22T23:17:56.000Z" + }, + "end": { + "$date": "2020-11-23T00:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4bd9e5e2-cfec-4a3d-8122-d98455b4db43", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-22T23:22:18.000Z" + }, + "end": { + "$date": "2020-11-23T00:14:36.000Z" + }, + "events": [ + { + "uuid": "276c5911-a9b0-48d2-8a0a-eb79fd0c363d", + "start": { + "$date": "2020-11-22T23:22:18.000Z" + }, + "end": { + "$date": "2020-11-23T00:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "98848393-9f30-4e4a-8345-32f6559b79ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-22T23:22:56.000Z" + }, + "end": { + "$date": "2020-11-23T00:11:17.000Z" + }, + "events": [ + { + "uuid": "d02d1b15-d3ce-4e62-bea6-8aeafd0065a0", + "start": { + "$date": "2020-11-22T23:22:56.000Z" + }, + "end": { + "$date": "2020-11-23T00:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0419eee5-11b2-4a64-b9e9-4d4ed01ae4c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-22T23:25:17.000Z" + }, + "end": { + "$date": "2020-11-23T00:15:08.000Z" + }, + "events": [ + { + "uuid": "9a145d37-4804-4b27-819e-3d2717389eff", + "start": { + "$date": "2020-11-22T23:25:17.000Z" + }, + "end": { + "$date": "2020-11-23T00:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1fb0b821-9d1b-441b-b04b-9b5ff3b73d13", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-23T00:17:28.000Z" + }, + "end": { + "$date": "2020-11-23T01:41:59.000Z" + }, + "events": [ + { + "uuid": "ad24c72f-00f0-4e74-953a-ca1063ce1e53", + "start": { + "$date": "2020-11-23T00:17:28.000Z" + }, + "end": { + "$date": "2020-11-23T01:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4d2c3db0-bb93-4f6d-bd0b-4a24d1c1320c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-23T01:07:55.000Z" + }, + "end": { + "$date": "2020-11-23T01:37:52.000Z" + }, + "events": [ + { + "uuid": "091c981a-51b2-4481-86e2-ad2fd1e607c9", + "start": { + "$date": "2020-11-23T01:07:55.000Z" + }, + "end": { + "$date": "2020-11-23T01:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "938d966b-95cf-4457-a75a-27e8fc8f5816", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-23T02:20:59.000Z" + }, + "end": { + "$date": "2020-11-23T02:22:30.000Z" + }, + "events": [ + { + "uuid": "d5594ba5-97ae-4402-bd66-9572495f9a38", + "start": { + "$date": "2020-11-23T02:20:59.000Z" + }, + "end": { + "$date": "2020-11-23T02:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3a86e36b-3560-48bc-af4c-63032f85b4cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-23T02:49:29.000Z" + }, + "end": { + "$date": "2020-11-23T03:01:35.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T02:49:29.000Z" + }, + "end": { + "$date": "2020-11-23T03:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "90cfeceb-8833-492d-8786-6afb122d9dfd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-11-23T02:58:29.000Z" + }, + "end": { + "$date": "2020-11-23T05:50:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T02:58:29.000Z" + }, + "end": { + "$date": "2020-11-23T05:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "adc1a822-5305-46af-bc7b-be9c79bb201a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-23T03:16:19.000Z" + }, + "end": { + "$date": "2020-11-23T04:03:40.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T03:16:19.000Z" + }, + "end": { + "$date": "2020-11-23T04:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2449270e-0def-41c9-bc6f-dc582a8cd8b9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-23T03:25:24.000Z" + }, + "end": { + "$date": "2020-11-23T03:36:11.000Z" + }, + "events": [ + { + "uuid": "c23e6099-ad32-47ed-9522-dd1b001996a7", + "start": { + "$date": "2020-11-23T03:25:24.000Z" + }, + "end": { + "$date": "2020-11-23T03:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8b44944-9556-49a1-a3ba-13d573444059", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-23T03:58:09.000Z" + }, + "end": { + "$date": "2020-11-23T06:01:15.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T03:58:09.000Z" + }, + "end": { + "$date": "2020-11-23T06:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c48df78d-b254-48b9-833f-aced2935c23f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-23T04:03:12.000Z" + }, + "end": { + "$date": "2020-11-23T06:08:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T04:03:12.000Z" + }, + "end": { + "$date": "2020-11-23T06:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2e318335-12f6-4833-afd7-8cfe05187c4f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-23T04:04:38.000Z" + }, + "end": { + "$date": "2020-11-23T06:08:07.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T04:04:38.000Z" + }, + "end": { + "$date": "2020-11-23T06:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f003b91a-5712-46ea-a076-2db3e9d5e94a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-23T04:05:35.000Z" + }, + "end": { + "$date": "2020-11-23T06:07:50.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T04:05:35.000Z" + }, + "end": { + "$date": "2020-11-23T06:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "838a73c9-7ea0-405a-b91d-e8d27ecd2a89", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-23T04:05:47.000Z" + }, + "end": { + "$date": "2020-11-23T06:08:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T04:05:47.000Z" + }, + "end": { + "$date": "2020-11-23T06:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bedcfc04-bf4b-4b50-8964-f016f340dc7c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-23T04:17:45.000Z" + }, + "end": { + "$date": "2020-11-23T05:27:08.000Z" + }, + "events": [ + { + "uuid": "aafc5434-1592-46cb-b118-102dc964ad7e", + "start": { + "$date": "2020-11-23T04:17:45.000Z" + }, + "end": { + "$date": "2020-11-23T05:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9248b883-d9a4-4ff7-8197-15b3ae32fbc6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-23T04:49:42.000Z" + }, + "end": { + "$date": "2020-11-23T05:13:35.000Z" + }, + "events": [ + { + "uuid": "250659e1-bd09-4372-b21f-381970a8e444", + "start": { + "$date": "2020-11-23T04:49:42.000Z" + }, + "end": { + "$date": "2020-11-23T05:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "376c7ecf-b72f-48ab-8634-eda03e4379c1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-23T05:14:21.000Z" + }, + "end": { + "$date": "2020-11-23T05:16:16.000Z" + }, + "events": [ + { + "uuid": "d93a4c39-bd2a-4184-bf85-d344f9556a3b", + "start": { + "$date": "2020-11-23T05:14:21.000Z" + }, + "end": { + "$date": "2020-11-23T05:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "d641c17d-a277-40c7-aad5-4a5a9ade7f81", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-23T05:16:51.000Z" + }, + "end": { + "$date": "2020-11-23T06:54:21.000Z" + }, + "events": [ + { + "uuid": "d7d2f46e-f831-4a6c-a347-e36a0d247a4b", + "start": { + "$date": "2020-11-23T05:16:51.000Z" + }, + "end": { + "$date": "2020-11-23T06:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a741ab1b-cde8-41c8-b69e-8ff9fb6d126c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-23T06:01:27.000Z" + }, + "end": { + "$date": "2020-11-23T06:09:35.000Z" + }, + "events": [ + { + "uuid": "dc729f2c-30d7-402b-ae5a-8db1493a4c95", + "start": { + "$date": "2020-11-23T06:01:27.000Z" + }, + "end": { + "$date": "2020-11-23T06:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a0d040c5-f25f-48d2-bb15-2388161208ad", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-23T06:28:38.000Z" + }, + "end": { + "$date": "2020-11-23T08:01:27.000Z" + }, + "events": [ + { + "uuid": "b9c587bd-79df-49da-9dac-b62a72e1d2e1", + "start": { + "$date": "2020-11-23T06:28:38.000Z" + }, + "end": { + "$date": "2020-11-23T08:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "57f671b5-19cb-4f42-837a-ae52b5c3985e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-23T06:43:58.000Z" + }, + "end": { + "$date": "2020-11-23T08:54:12.000Z" + }, + "events": [ + { + "uuid": "7544c92e-a708-4a5a-b114-a00d3f44077c", + "start": { + "$date": "2020-11-23T06:43:58.000Z" + }, + "end": { + "$date": "2020-11-23T08:54:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "3065d0ab-5507-48a4-a7c9-410ef8f5c349", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-23T06:57:35.000Z" + }, + "end": { + "$date": "2020-11-23T08:54:42.000Z" + }, + "events": [ + { + "uuid": "1fdaabae-385d-412b-b254-8d9753858c4b", + "start": { + "$date": "2020-11-23T06:57:35.000Z" + }, + "end": { + "$date": "2020-11-23T08:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "18fa69dd-a101-4399-9ef5-7883a685bbfb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-23T08:55:01.000Z" + }, + "end": { + "$date": "2020-11-23T08:57:42.000Z" + }, + "events": [ + { + "uuid": "bd94478a-7cbd-471c-b207-adcce6070fc9", + "start": { + "$date": "2020-11-23T08:55:01.000Z" + }, + "end": { + "$date": "2020-11-23T08:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "e82c1488-f772-4450-86e8-05f7e13be9f5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-23T08:58:32.000Z" + }, + "end": { + "$date": "2020-11-23T09:14:44.000Z" + }, + "events": [ + { + "uuid": "a3d58b7b-317d-4039-adb6-ddf275db33ba", + "start": { + "$date": "2020-11-23T08:58:32.000Z" + }, + "end": { + "$date": "2020-11-23T09:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1bddd9e5-c2cb-457b-8f51-2f308191f9dc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-23T15:30:18.000Z" + }, + "end": { + "$date": "2020-11-23T15:43:41.000Z" + }, + "events": [ + { + "uuid": "ca6d65a3-3174-4555-ae4b-adfac1835595", + "start": { + "$date": "2020-11-23T15:30:18.000Z" + }, + "end": { + "$date": "2020-11-23T15:43:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "cc6c8b62-d6ef-4afc-974d-38c51005b6ca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-23T18:31:04.000Z" + }, + "end": { + "$date": "2020-11-23T19:08:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T18:31:04.000Z" + }, + "end": { + "$date": "2020-11-23T19:08:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7f73aa3e-aa2c-4d04-965f-fe20656f4d97", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-23T19:07:13.000Z" + }, + "end": { + "$date": "2020-11-24T00:40:54.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-23T19:07:13.000Z" + }, + "end": { + "$date": "2020-11-24T00:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "58be6e73-0ca8-4489-96e7-5d69aaace319", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-23T19:22:07.000Z" + }, + "end": { + "$date": "2020-11-23T21:21:38.000Z" + }, + "events": [ + { + "uuid": "bdc5433c-1284-4c66-85ba-666c719f96f7", + "start": { + "$date": "2020-11-23T19:22:07.000Z" + }, + "end": { + "$date": "2020-11-23T21:21:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "2bc27621-f66f-4b52-a38a-a4a042bce3a9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-23T20:19:09.000Z" + }, + "end": { + "$date": "2020-11-23T23:28:32.000Z" + }, + "events": [ + { + "uuid": "f604c971-bdea-4b3c-8a66-d0af99dcbf71", + "start": { + "$date": "2020-11-23T20:19:09.000Z" + }, + "end": { + "$date": "2020-11-23T23:28:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "34039511-4e9d-432a-a90e-1d1f26e460f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-23T22:08:07.000Z" + }, + "end": { + "$date": "2020-11-23T23:14:50.000Z" + }, + "events": [ + { + "uuid": "cbe2d591-7d85-43a8-84cc-c8163cec8d36", + "start": { + "$date": "2020-11-23T22:08:07.000Z" + }, + "end": { + "$date": "2020-11-23T23:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1863eb3b-527d-4c10-aca7-ab690f7ce7ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-23T22:30:29.000Z" + }, + "end": { + "$date": "2020-11-24T00:34:44.000Z" + }, + "events": [ + { + "uuid": "aec0d8d0-ccc3-4135-9ba4-c56e3f994578", + "start": { + "$date": "2020-11-23T22:30:29.000Z" + }, + "end": { + "$date": "2020-11-24T00:34:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "f4437660-326e-4f36-a7f2-438ac824e54c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-23T23:28:48.000Z" + }, + "end": { + "$date": "2020-11-24T00:52:11.000Z" + }, + "events": [ + { + "uuid": "5550e49d-922f-44f0-9715-346090471f21", + "start": { + "$date": "2020-11-23T23:28:48.000Z" + }, + "end": { + "$date": "2020-11-24T00:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e90e8255-4d00-4289-a020-d3b667ad5f45", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-24T00:52:44.000Z" + }, + "end": { + "$date": "2020-11-24T02:23:49.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T00:52:44.000Z" + }, + "end": { + "$date": "2020-11-24T02:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "830d734e-23a0-47f7-9dfb-d73f64567817", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T01:17:03.000Z" + }, + "end": { + "$date": "2020-11-24T01:46:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T01:17:03.000Z" + }, + "end": { + "$date": "2020-11-24T01:46:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "37170974-2538-4c82-b3ba-ab401f20a29d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T01:48:49.000Z" + }, + "end": { + "$date": "2020-11-24T02:04:15.000Z" + }, + "events": [ + { + "uuid": "64249f0f-5eb9-43be-bdad-e42df8ce3312", + "start": { + "$date": "2020-11-24T01:48:49.000Z" + }, + "end": { + "$date": "2020-11-24T02:04:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "756ac854-acf3-4fc4-ac26-63fee93f41bc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-24T02:06:34.000Z" + }, + "end": { + "$date": "2020-11-24T02:38:33.000Z" + }, + "events": [ + { + "uuid": "c9b65856-9782-46cd-96e1-baba1367eb0f", + "start": { + "$date": "2020-11-24T02:06:34.000Z" + }, + "end": { + "$date": "2020-11-24T02:38:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bbcf14b-712e-4cdd-912a-553ff15554d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T02:06:35.000Z" + }, + "end": { + "$date": "2020-11-24T02:38:26.000Z" + }, + "events": [ + { + "uuid": "768964fe-996a-4872-a10b-abb8ee708c64", + "start": { + "$date": "2020-11-24T02:06:35.000Z" + }, + "end": { + "$date": "2020-11-24T02:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2eb112a5-3686-425a-a539-80b7f6e6311b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-24T02:33:16.000Z" + }, + "end": { + "$date": "2020-11-24T02:50:42.000Z" + }, + "events": [ + { + "uuid": "c1ab36f8-64f0-4628-8a4d-e810ed927194", + "start": { + "$date": "2020-11-24T02:33:16.000Z" + }, + "end": { + "$date": "2020-11-24T02:50:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "522a5a6b-044c-40fd-8fff-8107b5edd418", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-24T02:45:02.000Z" + }, + "end": { + "$date": "2020-11-24T03:27:28.000Z" + }, + "events": [ + { + "uuid": "8ca498c6-f751-40f0-8631-b4310059892d", + "start": { + "$date": "2020-11-24T02:45:02.000Z" + }, + "end": { + "$date": "2020-11-24T03:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f4abca8-abb7-41be-acb2-41e63ffd8fdd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T02:40:12.000Z" + }, + "end": { + "$date": "2020-11-24T02:41:37.000Z" + }, + "events": [ + { + "uuid": "adf960f4-fa88-4dc3-9f58-a008ed8cbf3b", + "start": { + "$date": "2020-11-24T02:40:12.000Z" + }, + "end": { + "$date": "2020-11-24T02:41:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b1724bb-d856-45a0-b885-4e201d955206", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T02:45:04.000Z" + }, + "end": { + "$date": "2020-11-24T03:27:21.000Z" + }, + "events": [ + { + "uuid": "eef2e9f7-708a-46e9-a0b7-7829fa593ac1", + "start": { + "$date": "2020-11-24T02:45:04.000Z" + }, + "end": { + "$date": "2020-11-24T03:27:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "e9238978-7776-4bff-a4a7-1f5b6cf45e01", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-24T02:51:33.000Z" + }, + "end": { + "$date": "2020-11-24T04:01:16.000Z" + }, + "events": [ + { + "uuid": "c685e6b8-000e-4536-9eda-47c4bcedab45", + "start": { + "$date": "2020-11-24T02:51:33.000Z" + }, + "end": { + "$date": "2020-11-24T04:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "683b517b-85c9-42fc-9052-d0be118e8e66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-24T03:27:50.000Z" + }, + "end": { + "$date": "2020-11-24T04:24:30.000Z" + }, + "events": [ + { + "uuid": "73ab9d60-8658-4444-8acd-dd5631a009e0", + "start": { + "$date": "2020-11-24T03:27:50.000Z" + }, + "end": { + "$date": "2020-11-24T03:39:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebb087f9-7a0f-4e1c-8997-0493b0b50559", + "start": { + "$date": "2020-11-24T03:39:50.000Z" + }, + "end": { + "$date": "2020-11-24T03:51:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bcc8a1e2-5ab6-4104-8737-510b47db97ab", + "start": { + "$date": "2020-11-24T03:51:50.000Z" + }, + "end": { + "$date": "2020-11-24T03:53:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0804b160-7cd1-4478-b48f-6f048d3c9e0a", + "start": { + "$date": "2020-11-24T03:53:50.000Z" + }, + "end": { + "$date": "2020-11-24T04:06:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d13a5274-a201-4463-b729-651db0a5d2cd", + "start": { + "$date": "2020-11-24T04:06:50.000Z" + }, + "end": { + "$date": "2020-11-24T04:08:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7dc227a-6c24-4dbb-9c24-4284fc6e02e5", + "start": { + "$date": "2020-11-24T04:08:50.000Z" + }, + "end": { + "$date": "2020-11-24T04:12:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84d4f9b8-82d2-49ae-ace7-e517e006b9ed", + "start": { + "$date": "2020-11-24T04:12:50.000Z" + }, + "end": { + "$date": "2020-11-24T04:24:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9482e1c2-00ce-40a7-9442-e7cc05eec77d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-24T04:24:30.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:10.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T04:24:30.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8c6c1393-433d-41bc-be45-d1d1115d87c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-24T04:24:42.000Z" + }, + "end": { + "$date": "2020-11-24T04:50:54.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T04:24:42.000Z" + }, + "end": { + "$date": "2020-11-24T04:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d9b15c81-6951-4e1e-b757-2c94a961435c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-24T04:28:27.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T04:28:27.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9be78e3-f222-4ce9-9e31-a198013d2605", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-24T04:28:33.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T04:28:33.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e936324a-f7bb-456b-8564-088c14147629", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T04:28:42.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T04:28:42.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8fdc9084-41f9-4eb6-8e34-87f579b77d07", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-24T04:51:25.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:09.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-24T04:51:25.000Z" + }, + "end": { + "$date": "2020-11-24T05:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "ee9e6024-35e9-40da-b866-b0413c1aa36c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T05:26:12.000Z" + }, + "end": { + "$date": "2020-11-24T06:41:50.000Z" + }, + "events": [ + { + "uuid": "5750be51-a7a9-4dad-83ad-d6c8b7e38a23", + "start": { + "$date": "2020-11-24T05:26:12.000Z" + }, + "end": { + "$date": "2020-11-24T06:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d6a200b9-1ecc-484d-9be9-4ca48e3fc0f0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-24T05:45:15.000Z" + }, + "end": { + "$date": "2020-11-24T07:47:41.000Z" + }, + "events": [ + { + "uuid": "977c8a8d-4b8d-4055-8844-b0a852381332", + "start": { + "$date": "2020-11-24T05:45:15.000Z" + }, + "end": { + "$date": "2020-11-24T07:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "1cc23fc4-efa2-4478-b81f-7cd88131b404", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-24T05:52:05.000Z" + }, + "end": { + "$date": "2020-11-24T10:14:04.000Z" + }, + "events": [ + { + "uuid": "745206c2-47ed-4848-b7b2-1eb6e4d78427", + "start": { + "$date": "2020-11-24T05:52:05.000Z" + }, + "end": { + "$date": "2020-11-24T10:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "1a50cad4-17b1-4c61-aab3-2f6b0be22b26", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-24T05:59:50.000Z" + }, + "end": { + "$date": "2020-11-24T10:13:15.000Z" + }, + "events": [ + { + "uuid": "95101521-eab8-4e2c-9ee1-62297ecafb21", + "start": { + "$date": "2020-11-24T05:59:50.000Z" + }, + "end": { + "$date": "2020-11-24T10:13:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", + "uuid": "19f0169b-7e5e-454c-99d9-439e178232ff", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-24T06:01:00.000Z" + }, + "end": { + "$date": "2020-11-24T06:03:00.000Z" + }, + "events": [ + { + "uuid": "857e6f45-5d0c-4a4e-aacd-ea8475839c86", + "start": { + "$date": "2020-11-24T06:01:00.000Z" + }, + "end": { + "$date": "2020-11-24T06:03:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "c75ed313-61af-45af-be4b-f7113adf4cd3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-24T06:05:36.000Z" + }, + "end": { + "$date": "2020-11-24T10:15:45.000Z" + }, + "events": [ + { + "uuid": "08f0cc32-1068-41a5-b7fd-478ce3bc9677", + "start": { + "$date": "2020-11-24T06:05:36.000Z" + }, + "end": { + "$date": "2020-11-24T10:15:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "48bdf1cc-c347-4287-8aa8-2de637c4653b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-24T07:55:58.000Z" + }, + "end": { + "$date": "2020-11-24T09:29:40.000Z" + }, + "events": [ + { + "uuid": "15833af9-211e-420f-9638-41f541cbc63d", + "start": { + "$date": "2020-11-24T07:55:58.000Z" + }, + "end": { + "$date": "2020-11-24T09:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "dc1118e0-fd1c-4264-be08-be8850081341", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T20:59:20.000Z" + }, + "end": { + "$date": "2020-11-24T21:18:07.000Z" + }, + "events": [ + { + "uuid": "4e492bcf-5ffc-45e3-b620-9f3e2896a831", + "start": { + "$date": "2020-11-24T20:59:20.000Z" + }, + "end": { + "$date": "2020-11-24T21:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ed71109-9856-4ec3-816b-f90785ef834a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T21:16:29.000Z" + }, + "end": { + "$date": "2020-11-24T21:46:09.000Z" + }, + "events": [ + { + "uuid": "8bfe8f04-d2e5-41d9-87d8-a3345c0f2f85", + "start": { + "$date": "2020-11-24T21:16:29.000Z" + }, + "end": { + "$date": "2020-11-24T21:46:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77e1b8fa-dcd6-45ad-bae5-81e362fd52dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T21:33:41.000Z" + }, + "end": { + "$date": "2020-11-24T21:56:24.000Z" + }, + "events": [ + { + "uuid": "2181c87c-6d82-4d7f-afdd-b17fe402f381", + "start": { + "$date": "2020-11-24T21:33:41.000Z" + }, + "end": { + "$date": "2020-11-24T21:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c48eb288-779e-4887-be2c-d9dfb2820aaf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T21:53:25.000Z" + }, + "end": { + "$date": "2020-11-24T22:19:26.000Z" + }, + "events": [ + { + "uuid": "74f2141f-eaa6-4623-a741-9d98c9337f7d", + "start": { + "$date": "2020-11-24T21:53:25.000Z" + }, + "end": { + "$date": "2020-11-24T22:19:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34d33e31-0c5f-4b59-a755-876ef42a76ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T21:57:33.000Z" + }, + "end": { + "$date": "2020-11-24T22:17:51.000Z" + }, + "events": [ + { + "uuid": "176686a3-be78-46e3-94ac-66900d462347", + "start": { + "$date": "2020-11-24T21:57:33.000Z" + }, + "end": { + "$date": "2020-11-24T22:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e52648c5-a985-46ea-ac37-cf21a7e44662", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-24T22:18:49.000Z" + }, + "end": { + "$date": "2020-11-24T22:40:48.000Z" + }, + "events": [ + { + "uuid": "348062f5-a5bd-444c-ad8e-867e157e021c", + "start": { + "$date": "2020-11-24T22:18:49.000Z" + }, + "end": { + "$date": "2020-11-24T22:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9ac356c-691d-443e-abe5-3a8b4c433501", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-24T22:23:36.000Z" + }, + "end": { + "$date": "2020-11-24T22:47:36.000Z" + }, + "events": [ + { + "uuid": "3b1f3d1b-e71b-428c-b018-422ed99ce856", + "start": { + "$date": "2020-11-24T22:23:36.000Z" + }, + "end": { + "$date": "2020-11-24T22:47:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "817f23f2-d981-43e4-9259-f1aea7421319", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-24T23:30:23.000Z" + }, + "end": { + "$date": "2020-11-25T00:24:25.000Z" + }, + "events": [ + { + "uuid": "594c2bf6-5327-4e1a-9f15-b26d45790bdf", + "start": { + "$date": "2020-11-24T23:30:23.000Z" + }, + "end": { + "$date": "2020-11-25T00:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "87bc7343-8cad-4d18-be1b-81f04b1e6a94", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-24T23:31:26.000Z" + }, + "end": { + "$date": "2020-11-25T00:49:45.000Z" + }, + "events": [ + { + "uuid": "6aa4c295-20ac-4ba9-a7b1-6cc07f00512b", + "start": { + "$date": "2020-11-24T23:31:26.000Z" + }, + "end": { + "$date": "2020-11-25T00:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dc64d4f8-feec-4d4a-9e6f-72ba9a08260e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-24T23:49:38.000Z" + }, + "end": { + "$date": "2020-11-25T00:40:24.000Z" + }, + "events": [ + { + "uuid": "50a8298f-915d-4384-9d5d-d5410b531834", + "start": { + "$date": "2020-11-24T23:49:38.000Z" + }, + "end": { + "$date": "2020-11-25T00:40:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b9f46c8b-bf9a-46b0-a4bd-2fe3c0972d3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-24T23:18:05.000Z" + }, + "end": { + "$date": "2020-11-25T01:34:15.000Z" + }, + "events": [ + { + "uuid": "0e139f66-d9be-472d-95b0-759a2f1bff3f", + "start": { + "$date": "2020-11-24T23:18:05.000Z" + }, + "end": { + "$date": "2020-11-25T01:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c6783d4e-bffe-48d7-9a7a-ff2e19d25c30", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-25T01:31:13.000Z" + }, + "end": { + "$date": "2020-11-25T01:57:24.000Z" + }, + "events": [ + { + "uuid": "e5825dd9-4b30-4cae-83c5-c9ede495dd4e", + "start": { + "$date": "2020-11-25T01:31:13.000Z" + }, + "end": { + "$date": "2020-11-25T01:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9cc373b7-18c5-4cb9-9d10-96345a2747f3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-25T01:44:27.000Z" + }, + "end": { + "$date": "2020-11-25T03:12:33.000Z" + }, + "events": [ + { + "uuid": "e8fd66b3-1244-4641-94b6-e201c04b11de", + "start": { + "$date": "2020-11-25T01:44:27.000Z" + }, + "end": { + "$date": "2020-11-25T03:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0bc832a4-631f-4d54-8652-87933d0d8e5b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-25T02:35:28.000Z" + }, + "end": { + "$date": "2020-11-25T02:53:01.000Z" + }, + "events": [ + { + "uuid": "ebcf8c49-6226-4a7f-85f5-baac587b60db", + "start": { + "$date": "2020-11-25T02:35:28.000Z" + }, + "end": { + "$date": "2020-11-25T02:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "eba54cab-268a-42b3-84a2-8b466fc617fa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-25T02:56:46.000Z" + }, + "end": { + "$date": "2020-11-25T05:02:44.000Z" + }, + "events": [ + { + "uuid": "daa70bc8-75f8-4192-9111-2e94bbb279ee", + "start": { + "$date": "2020-11-25T02:56:46.000Z" + }, + "end": { + "$date": "2020-11-25T05:02:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "286bacfe-a379-4de8-9cc0-2a1f51571722", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T03:09:19.000Z" + }, + "end": { + "$date": "2020-11-25T03:58:50.000Z" + }, + "events": [ + { + "uuid": "295def18-04e9-4c25-91fe-43a2d9bd3d4c", + "start": { + "$date": "2020-11-25T03:09:19.000Z" + }, + "end": { + "$date": "2020-11-25T03:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7300247-4add-466e-a6fe-b59772818598", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-25T03:22:29.000Z" + }, + "end": { + "$date": "2020-11-25T03:58:45.000Z" + }, + "events": [ + { + "uuid": "151db36d-0435-4c1e-b8fc-f7a2b5bcc557", + "start": { + "$date": "2020-11-25T03:22:29.000Z" + }, + "end": { + "$date": "2020-11-25T03:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2219cdf5-1d48-4e92-a480-32c1f7cd8239", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T04:07:45.000Z" + }, + "end": { + "$date": "2020-11-25T04:32:30.000Z" + }, + "events": [ + { + "uuid": "63ca60f0-12df-4f09-beed-d4ed72667da0", + "start": { + "$date": "2020-11-25T04:07:45.000Z" + }, + "end": { + "$date": "2020-11-25T04:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fd48c4bd-3cff-40c1-b69b-605cce1baf1b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-25T04:05:30.000Z" + }, + "end": { + "$date": "2020-11-25T05:35:05.000Z" + }, + "events": [ + { + "uuid": "aefb1140-d90d-4c09-8407-fc99ef5449f7", + "start": { + "$date": "2020-11-25T04:05:30.000Z" + }, + "end": { + "$date": "2020-11-25T05:35:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "266cd2b3-f9cd-4c62-9e04-128a5483026c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-25T04:27:15.000Z" + }, + "end": { + "$date": "2020-11-25T06:58:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T04:27:15.000Z" + }, + "end": { + "$date": "2020-11-25T06:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42c8be4a-6569-45c5-9a62-7c2be8395868", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T04:36:56.000Z" + }, + "end": { + "$date": "2020-11-25T05:02:27.000Z" + }, + "events": [ + { + "uuid": "38068644-beb9-49b1-8866-74863beabb01", + "start": { + "$date": "2020-11-25T04:36:56.000Z" + }, + "end": { + "$date": "2020-11-25T05:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e8ae6c2-f73e-4f60-a244-40d1d58e650b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T05:08:48.000Z" + }, + "end": { + "$date": "2020-11-25T05:32:31.000Z" + }, + "events": [ + { + "uuid": "82ac90ed-a6fe-441a-86ad-c509f64bfde0", + "start": { + "$date": "2020-11-25T05:08:48.000Z" + }, + "end": { + "$date": "2020-11-25T05:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43fbcec7-0c89-41cb-8285-2133cd7b6cc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T05:38:49.000Z" + }, + "end": { + "$date": "2020-11-25T05:54:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T05:38:49.000Z" + }, + "end": { + "$date": "2020-11-25T05:54:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "66cc7d20-18e4-4e0b-8ded-a1246fbfcbd1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-25T05:34:40.000Z" + }, + "end": { + "$date": "2020-11-25T07:24:22.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T05:34:40.000Z" + }, + "end": { + "$date": "2020-11-25T07:24:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "149c33cc-ef04-4c8a-b4f1-c3623f5c6166", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-25T05:35:18.000Z" + }, + "end": { + "$date": "2020-11-25T07:32:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T05:35:18.000Z" + }, + "end": { + "$date": "2020-11-25T07:32:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "3823af1b-3bb4-42bd-8ea5-e95f2ea0da8e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-25T05:45:59.000Z" + }, + "end": { + "$date": "2020-11-25T07:23:45.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T05:45:59.000Z" + }, + "end": { + "$date": "2020-11-25T07:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e387ec7f-326d-46a1-98c6-d0b7c7aafc1d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T05:59:38.000Z" + }, + "end": { + "$date": "2020-11-25T07:39:00.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T05:59:38.000Z" + }, + "end": { + "$date": "2020-11-25T07:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "9f48ec65-93e5-45f6-8246-eb6aaa9507fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T06:00:34.000Z" + }, + "end": { + "$date": "2020-11-25T07:25:20.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-25T06:00:34.000Z" + }, + "end": { + "$date": "2020-11-25T07:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51f84cce-755a-495b-970f-7a886c01186d", + "uuid": "4f996116-e2a7-4c64-b898-0791f1b3435f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T08:03:37.000Z" + }, + "end": { + "$date": "2020-11-25T08:06:03.000Z" + }, + "events": [ + { + "uuid": "ab1639b2-be6b-4a81-9775-6e7fe54185d1", + "start": { + "$date": "2020-11-25T08:03:37.000Z" + }, + "end": { + "$date": "2020-11-25T08:06:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "84a25ee7-9fc9-4ce7-aa72-cb81604c941d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-25T08:13:42.000Z" + }, + "end": { + "$date": "2020-11-25T08:56:37.000Z" + }, + "events": [ + { + "uuid": "72f68ff7-84c1-4be8-8841-879486d26fc9", + "start": { + "$date": "2020-11-25T08:13:42.000Z" + }, + "end": { + "$date": "2020-11-25T08:56:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "369ae7a7-9f83-4bb3-9fb0-d0330909b1a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-25T15:33:52.000Z" + }, + "end": { + "$date": "2020-11-25T16:18:08.000Z" + }, + "events": [ + { + "uuid": "5fb7270a-7fea-4a4b-845d-9eb1b2eecfe1", + "start": { + "$date": "2020-11-25T15:33:52.000Z" + }, + "end": { + "$date": "2020-11-25T16:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7ad1813d-a605-459f-81cf-5be38a202d26", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-25T16:40:00.000Z" + }, + "end": { + "$date": "2020-11-25T16:56:40.000Z" + }, + "events": [ + { + "uuid": "cc3ad881-337e-4085-8ce2-f4781085d53b", + "start": { + "$date": "2020-11-25T16:40:00.000Z" + }, + "end": { + "$date": "2020-11-25T16:56:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e95ec3ef-c3ba-4d99-80bf-d7a97b176e25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T18:16:07.000Z" + }, + "end": { + "$date": "2020-11-25T18:37:30.000Z" + }, + "events": [ + { + "uuid": "74743e4e-b6fb-400e-8b86-c97ce3d8ebd8", + "start": { + "$date": "2020-11-25T18:16:07.000Z" + }, + "end": { + "$date": "2020-11-25T18:37:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97239190-6e7e-4f67-bb99-9ecd3cd863a6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T18:42:28.000Z" + }, + "end": { + "$date": "2020-11-25T19:02:00.000Z" + }, + "events": [ + { + "uuid": "618d352a-b9ac-457a-bf11-7556f00093a1", + "start": { + "$date": "2020-11-25T18:42:28.000Z" + }, + "end": { + "$date": "2020-11-25T19:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9c6bec15-b52e-4f61-b63e-4841172f7acf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T19:02:09.000Z" + }, + "end": { + "$date": "2020-11-25T19:05:05.000Z" + }, + "events": [ + { + "uuid": "9204fafe-6bf7-44bf-bb1d-da4b1c21a4a3", + "start": { + "$date": "2020-11-25T19:02:09.000Z" + }, + "end": { + "$date": "2020-11-25T19:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95136eb2-6091-42bb-9bac-c382bd4d721e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T19:04:44.000Z" + }, + "end": { + "$date": "2020-11-25T19:27:20.000Z" + }, + "events": [ + { + "uuid": "857c5bd1-c44e-4cb6-89a9-9b7b189e34c5", + "start": { + "$date": "2020-11-25T19:04:44.000Z" + }, + "end": { + "$date": "2020-11-25T19:27:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4f9c461-72e1-4f03-9936-a21284b58deb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T19:10:49.000Z" + }, + "end": { + "$date": "2020-11-25T19:50:04.000Z" + }, + "events": [ + { + "uuid": "972c197c-a941-4973-adf0-15e5f79f66ca", + "start": { + "$date": "2020-11-25T19:10:49.000Z" + }, + "end": { + "$date": "2020-11-25T19:50:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12573024-c18e-4308-9815-39860195c710", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T22:10:55.000Z" + }, + "end": { + "$date": "2020-11-25T22:19:14.000Z" + }, + "events": [ + { + "uuid": "4c213c98-fb9b-48d5-bac5-44e8125d455f", + "start": { + "$date": "2020-11-25T22:10:55.000Z" + }, + "end": { + "$date": "2020-11-25T22:19:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d590c0be-464c-481b-b343-4ea925dc6155", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-25T20:45:38.000Z" + }, + "end": { + "$date": "2020-11-25T21:23:20.000Z" + }, + "events": [ + { + "uuid": "7bd1f092-47ca-4e50-b99e-e154b16cb409", + "start": { + "$date": "2020-11-25T20:45:38.000Z" + }, + "end": { + "$date": "2020-11-25T21:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eb3801d5-3ce2-407a-8828-78a8e2c4c457", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-25T21:49:45.000Z" + }, + "end": { + "$date": "2020-11-25T22:51:57.000Z" + }, + "events": [ + { + "uuid": "be2bc6d1-fa62-44d5-9301-47eff27883bd", + "start": { + "$date": "2020-11-25T21:49:45.000Z" + }, + "end": { + "$date": "2020-11-25T22:51:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ed676cc0-d079-4e52-9e0f-c3cb64332be8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-25T21:56:40.000Z" + }, + "end": { + "$date": "2020-11-25T22:51:42.000Z" + }, + "events": [ + { + "uuid": "709c490b-c09f-4532-8867-3780940af62f", + "start": { + "$date": "2020-11-25T21:56:40.000Z" + }, + "end": { + "$date": "2020-11-25T22:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4a19197a-55b9-44ae-8184-9a8cb9ad4102", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-25T21:56:40.000Z" + }, + "end": { + "$date": "2020-11-25T23:39:42.000Z" + }, + "events": [ + { + "uuid": "c9a4151d-0e92-44bd-83cb-cd55ae564279", + "start": { + "$date": "2020-11-25T21:56:40.000Z" + }, + "end": { + "$date": "2020-11-25T23:39:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "371f9dfc-989b-4626-80fc-79c2a2e133bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-25T21:49:45.000Z" + }, + "end": { + "$date": "2020-11-25T23:37:23.000Z" + }, + "events": [ + { + "uuid": "2ab09de9-af5b-41d7-8868-47a7bf447cea", + "start": { + "$date": "2020-11-25T21:49:45.000Z" + }, + "end": { + "$date": "2020-11-25T23:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3d4d9bf-f035-4c0c-9530-867499cee96b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-25T23:57:22.000Z" + }, + "end": { + "$date": "2020-11-26T00:35:04.000Z" + }, + "events": [ + { + "uuid": "88ea6f23-f12c-4a70-9fcc-660c28ad3c69", + "start": { + "$date": "2020-11-25T23:57:22.000Z" + }, + "end": { + "$date": "2020-11-26T00:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6ad33a2-9dbd-4781-afdd-c5f78625897f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T00:40:40.000Z" + }, + "end": { + "$date": "2020-11-26T01:37:00.000Z" + }, + "events": [ + { + "uuid": "a0ff3b56-e0c3-47d2-8917-28150651223f", + "start": { + "$date": "2020-11-26T00:40:40.000Z" + }, + "end": { + "$date": "2020-11-26T01:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32041a63-46eb-4b62-9e02-bcb7aa12032e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-26T02:10:17.000Z" + }, + "end": { + "$date": "2020-11-26T02:42:51.000Z" + }, + "events": [ + { + "uuid": "5fbe116b-bdea-40d2-873d-949c19e99c44", + "start": { + "$date": "2020-11-26T02:10:17.000Z" + }, + "end": { + "$date": "2020-11-26T02:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c223e138-4e4c-4096-8587-85058ff9c368", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T02:10:16.000Z" + }, + "end": { + "$date": "2020-11-26T02:42:52.000Z" + }, + "events": [ + { + "uuid": "93b54c31-e1d8-4793-8353-b5da56e1779f", + "start": { + "$date": "2020-11-26T02:10:16.000Z" + }, + "end": { + "$date": "2020-11-26T02:42:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "386d2b04-0e02-4776-92a4-c6576f7d6cee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-26T02:11:40.000Z" + }, + "end": { + "$date": "2020-11-26T03:27:19.000Z" + }, + "events": [ + { + "uuid": "3631960c-091f-48ec-8052-d764d9d57d20", + "start": { + "$date": "2020-11-26T02:11:40.000Z" + }, + "end": { + "$date": "2020-11-26T03:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c81fba36-cb69-4d1e-8620-96db8b4f295c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-26T02:42:10.000Z" + }, + "end": { + "$date": "2020-11-26T03:08:25.000Z" + }, + "events": [ + { + "uuid": "6f8f37c8-7322-4f05-986b-78920b872c0f", + "start": { + "$date": "2020-11-26T02:42:10.000Z" + }, + "end": { + "$date": "2020-11-26T03:08:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ff13de8-aaa4-40c5-a513-ed65fbca103a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-26T02:49:44.000Z" + }, + "end": { + "$date": "2020-11-26T03:22:03.000Z" + }, + "events": [ + { + "uuid": "1211d4f0-388b-456c-979a-7aa21d2be0ef", + "start": { + "$date": "2020-11-26T02:49:44.000Z" + }, + "end": { + "$date": "2020-11-26T03:22:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f81b3db-06f4-4ff4-99d6-3c5f3042e6ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T02:49:44.000Z" + }, + "end": { + "$date": "2020-11-26T03:22:00.000Z" + }, + "events": [ + { + "uuid": "53745a91-8e3d-4d8c-83e5-b99f159f671e", + "start": { + "$date": "2020-11-26T02:49:44.000Z" + }, + "end": { + "$date": "2020-11-26T03:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0b96e8da-c521-4814-a932-0806073c0c9f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-26T02:55:17.000Z" + }, + "end": { + "$date": "2020-11-26T05:19:03.000Z" + }, + "events": [ + { + "uuid": "b9111f46-9bb5-4c69-b217-d9b5928cb1b3", + "start": { + "$date": "2020-11-26T02:55:17.000Z" + }, + "end": { + "$date": "2020-11-26T05:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c453fd2d-7caa-48a2-be74-ea2ed92f8ec5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T03:32:27.000Z" + }, + "end": { + "$date": "2020-11-26T04:13:36.000Z" + }, + "events": [ + { + "uuid": "009f27e5-9575-4da1-b1c5-e8a3481908f0", + "start": { + "$date": "2020-11-26T03:32:27.000Z" + }, + "end": { + "$date": "2020-11-26T04:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05102ead-43b8-4958-a547-afbc36e30d69", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-26T03:32:28.000Z" + }, + "end": { + "$date": "2020-11-26T04:13:23.000Z" + }, + "events": [ + { + "uuid": "ede2936b-62b7-4135-8a3d-89a7dc86caa1", + "start": { + "$date": "2020-11-26T03:32:28.000Z" + }, + "end": { + "$date": "2020-11-26T04:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "244172d6-c424-4079-b43f-b94780a27b3b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-26T04:20:30.000Z" + }, + "end": { + "$date": "2020-11-26T04:44:05.000Z" + }, + "events": [ + { + "uuid": "f415f5d4-e716-451c-a711-b9fb91ad4b93", + "start": { + "$date": "2020-11-26T04:20:30.000Z" + }, + "end": { + "$date": "2020-11-26T04:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "380b1898-033f-4c6d-8618-b4bac9b26400", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-26T04:37:21.000Z" + }, + "end": { + "$date": "2020-11-26T04:50:39.000Z" + }, + "events": [ + { + "uuid": "33880f01-0572-4bea-a96a-b143f4344a99", + "start": { + "$date": "2020-11-26T04:37:21.000Z" + }, + "end": { + "$date": "2020-11-26T04:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4aea0a95-7eab-4c77-9231-3ff3985003f6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-26T05:11:16.000Z" + }, + "end": { + "$date": "2020-11-26T06:45:29.000Z" + }, + "events": [ + { + "uuid": "0e4a6e77-74d5-460b-a1db-43e192cdd4d3", + "start": { + "$date": "2020-11-26T05:11:16.000Z" + }, + "end": { + "$date": "2020-11-26T06:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a293ee69-486a-4bb5-9ed5-4ebfc2583468", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T05:19:45.000Z" + }, + "end": { + "$date": "2020-11-26T05:45:48.000Z" + }, + "events": [ + { + "uuid": "9573a6c8-d4f1-4346-b076-657ad561f4a3", + "start": { + "$date": "2020-11-26T05:19:45.000Z" + }, + "end": { + "$date": "2020-11-26T05:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a55cc839-a09b-4574-8288-a6cdc2ef623f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-26T05:22:05.000Z" + }, + "end": { + "$date": "2020-11-26T05:23:40.000Z" + }, + "events": [ + { + "uuid": "7dee4cde-6f12-41a7-bf2a-adca580b3c8f", + "start": { + "$date": "2020-11-26T05:22:05.000Z" + }, + "end": { + "$date": "2020-11-26T05:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "711f1b7b-8215-42f1-9014-f3e80705da68", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-26T05:24:28.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:25.000Z" + }, + "events": [ + { + "uuid": "7469dfef-ae7b-4ed2-802e-e8e26e098d5a", + "start": { + "$date": "2020-11-26T05:24:28.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fc9bbbb8-b0f7-4edc-bf29-9f6f31d3f824", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-26T05:24:31.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:05.000Z" + }, + "events": [ + { + "uuid": "1d900c67-7c77-4bd5-9149-4c5958873818", + "start": { + "$date": "2020-11-26T05:24:31.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a028be2-f7e6-48a8-ac9b-aa4f3b6a5e67", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-26T05:24:43.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:27.000Z" + }, + "events": [ + { + "uuid": "b8adddc2-fbe0-4806-a395-98232b5be63f", + "start": { + "$date": "2020-11-26T05:24:43.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a0c09468-c661-4375-907e-54e2470bbcdb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-26T05:24:55.000Z" + }, + "end": { + "$date": "2020-11-26T06:59:28.000Z" + }, + "events": [ + { + "uuid": "f88a82c1-a7e2-4f4f-9717-40863344fb16", + "start": { + "$date": "2020-11-26T05:24:55.000Z" + }, + "end": { + "$date": "2020-11-26T06:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b1e6b06e-8524-45dd-9885-0f39ffa1b34e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-26T05:26:10.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:24.000Z" + }, + "events": [ + { + "uuid": "c5c7ccca-740f-4d94-8e78-435bb7473f5b", + "start": { + "$date": "2020-11-26T05:26:10.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "57485c07-7476-4e89-855a-2a013e05f0db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T05:45:58.000Z" + }, + "end": { + "$date": "2020-11-26T06:12:18.000Z" + }, + "events": [ + { + "uuid": "48ccf9cf-015c-43bd-85eb-8d8c345732a2", + "start": { + "$date": "2020-11-26T05:45:58.000Z" + }, + "end": { + "$date": "2020-11-26T06:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf149150-3e0e-453b-977e-902de62cf07a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T06:13:04.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:22.000Z" + }, + "events": [ + { + "uuid": "6fc968fe-b7ad-4d87-84a1-64b4896726f5", + "start": { + "$date": "2020-11-26T06:13:04.000Z" + }, + "end": { + "$date": "2020-11-26T07:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "acd31277-20ba-46b4-bfe7-19f10d517420", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-26T07:32:23.000Z" + }, + "end": { + "$date": "2020-11-26T08:29:13.000Z" + }, + "events": [ + { + "uuid": "8afbeef9-03e2-4a11-b825-110a4f65d28c", + "start": { + "$date": "2020-11-26T07:32:23.000Z" + }, + "end": { + "$date": "2020-11-26T08:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "366487d8-7421-4eb3-b80d-2d423b43aacf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-26T09:33:07.000Z" + }, + "end": { + "$date": "2020-11-26T09:46:29.000Z" + }, + "events": [ + { + "uuid": "d77aa472-0ada-43cb-b079-75f3cc001ac9", + "start": { + "$date": "2020-11-26T09:33:07.000Z" + }, + "end": { + "$date": "2020-11-26T09:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "23d06bf2-fd5f-47aa-ae80-71ab5a478aee", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-26T09:46:39.000Z" + }, + "end": { + "$date": "2020-11-26T11:00:42.000Z" + }, + "events": [ + { + "uuid": "af6a44dc-d7a2-428a-83c1-7f967129f3a5", + "start": { + "$date": "2020-11-26T09:46:39.000Z" + }, + "end": { + "$date": "2020-11-26T11:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f6ea731c-7d31-408d-9f81-84f403ff00bd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-26T15:17:54.000Z" + }, + "end": { + "$date": "2020-11-26T16:47:04.000Z" + }, + "events": [ + { + "uuid": "89b14a38-6a0e-4765-a823-b6d4010e6a3e", + "start": { + "$date": "2020-11-26T15:17:54.000Z" + }, + "end": { + "$date": "2020-11-26T16:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "60a03e1d-1704-427c-aec3-cf9e51f78412", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-26T16:55:21.000Z" + }, + "end": { + "$date": "2020-11-26T17:23:40.000Z" + }, + "events": [ + { + "uuid": "5fd02d8f-571b-4cbb-aa05-3dbfdf7fe212", + "start": { + "$date": "2020-11-26T16:55:21.000Z" + }, + "end": { + "$date": "2020-11-26T17:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "82fe79ee-03f6-4699-a6bf-9249bcdfce64", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-26T17:38:12.000Z" + }, + "end": { + "$date": "2020-11-26T17:45:37.000Z" + }, + "events": [ + { + "uuid": "97469baf-bbb0-478e-bc83-d1d5eca15285", + "start": { + "$date": "2020-11-26T17:38:12.000Z" + }, + "end": { + "$date": "2020-11-26T17:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d174b4b4-c6f4-4311-8ad7-a22f15bab268", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-26T17:46:33.000Z" + }, + "end": { + "$date": "2020-11-26T18:29:28.000Z" + }, + "events": [ + { + "uuid": "42404c9b-a0fa-415e-a248-0ee9b97e11e6", + "start": { + "$date": "2020-11-26T17:46:33.000Z" + }, + "end": { + "$date": "2020-11-26T18:29:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "58aa5529-dae5-423e-b743-f6e975c503c0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-26T21:07:08.000Z" + }, + "end": { + "$date": "2020-11-26T22:41:15.000Z" + }, + "events": [ + { + "uuid": "07b15dbe-d52e-403c-8ea1-1cc81dc0d391", + "start": { + "$date": "2020-11-26T21:07:08.000Z" + }, + "end": { + "$date": "2020-11-26T22:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3b57529f-6091-477a-8e75-74d4131bf0fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-26T21:34:53.000Z" + }, + "end": { + "$date": "2020-11-26T22:42:06.000Z" + }, + "events": [ + { + "uuid": "0deb1294-c0b0-49da-bc9d-8571ad5cf417", + "start": { + "$date": "2020-11-26T21:34:53.000Z" + }, + "end": { + "$date": "2020-11-26T22:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b06eda1a-ca66-4cb8-9990-62ae87d442c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T22:34:12.000Z" + }, + "end": { + "$date": "2020-11-26T22:45:09.000Z" + }, + "events": [ + { + "uuid": "ec62648d-be91-40ed-a278-63da8ef2796b", + "start": { + "$date": "2020-11-26T22:34:12.000Z" + }, + "end": { + "$date": "2020-11-26T22:45:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "541a0537-a201-484e-94c2-944705701a3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-26T22:38:11.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:58.000Z" + }, + "events": [ + { + "uuid": "4002924f-051b-4775-b396-95c1ef0061ec", + "start": { + "$date": "2020-11-26T22:38:11.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "17b0e56a-6be1-4ade-8ed3-0a3ca6b76918", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-26T22:39:11.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:50.000Z" + }, + "events": [ + { + "uuid": "389329a0-d3d1-412a-ae1d-330b019bccd0", + "start": { + "$date": "2020-11-26T22:39:11.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fd3ff379-c9fa-4397-ac9e-e119451e362a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-26T22:41:47.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:52.000Z" + }, + "events": [ + { + "uuid": "ccabc796-2f4b-4af9-93b2-db0710c54534", + "start": { + "$date": "2020-11-26T22:41:47.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "16b2367f-da3a-446f-b785-de98d6bba674", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-26T22:42:21.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:32.000Z" + }, + "events": [ + { + "uuid": "ba525794-7fcd-4bfe-9339-bf64254999cf", + "start": { + "$date": "2020-11-26T22:42:21.000Z" + }, + "end": { + "$date": "2020-11-26T23:56:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fa61a209-7638-4acf-8feb-b247b481f7fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-26T22:46:18.000Z" + }, + "end": { + "$date": "2020-11-27T00:59:13.000Z" + }, + "events": [ + { + "uuid": "ca5b92e4-5566-4063-b8ad-c996b8a0d641", + "start": { + "$date": "2020-11-26T22:46:18.000Z" + }, + "end": { + "$date": "2020-11-27T00:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "73d4a6b9-294d-4ce8-910b-4df529373726", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-26T23:14:16.000Z" + }, + "end": { + "$date": "2020-11-26T23:49:38.000Z" + }, + "events": [ + { + "uuid": "cfda7ca4-2a92-4b30-98cd-679d1d0c250a", + "start": { + "$date": "2020-11-26T23:14:16.000Z" + }, + "end": { + "$date": "2020-11-26T23:49:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f8e41917-a722-4584-ad8e-7c17d41dad0c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-26T23:56:46.000Z" + }, + "end": { + "$date": "2020-11-27T04:00:15.000Z" + }, + "events": [ + { + "uuid": "6f667b9c-95df-4494-9a97-ff9ce0fcfbab", + "start": { + "$date": "2020-11-26T23:56:46.000Z" + }, + "end": { + "$date": "2020-11-27T04:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "e463cec3-7de8-4869-8b44-5c9c04429f32", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-26T23:57:49.000Z" + }, + "end": { + "$date": "2020-11-26T23:58:50.000Z" + }, + "events": [ + { + "uuid": "b6c49c1b-3df2-418f-8206-66fd919f6f6e", + "start": { + "$date": "2020-11-26T23:57:49.000Z" + }, + "end": { + "$date": "2020-11-26T23:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6c90c8cf-6e0c-4ea1-93e2-603dd800b57b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T00:03:15.000Z" + }, + "end": { + "$date": "2020-11-27T02:32:20.000Z" + }, + "events": [ + { + "uuid": "8b764180-773a-439f-97c3-91d5aafc2555", + "start": { + "$date": "2020-11-27T00:03:15.000Z" + }, + "end": { + "$date": "2020-11-27T02:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "4bf9d367-bc58-47e6-bb6c-6de056c10868", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T01:00:18.000Z" + }, + "end": { + "$date": "2020-11-27T02:12:21.000Z" + }, + "events": [ + { + "uuid": "7def99d7-d991-4111-80db-a0fc3888ddae", + "start": { + "$date": "2020-11-27T01:00:18.000Z" + }, + "end": { + "$date": "2020-11-27T02:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a4278990-adab-4142-b6ad-287be1c9eb51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-27T01:19:40.000Z" + }, + "end": { + "$date": "2020-11-27T02:09:38.000Z" + }, + "events": [ + { + "uuid": "4dd31212-694b-41f4-88ef-3f3836e86fe2", + "start": { + "$date": "2020-11-27T01:19:40.000Z" + }, + "end": { + "$date": "2020-11-27T02:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "63cc2459-439a-4b5e-8e38-af5afb1bf513", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-27T01:48:34.000Z" + }, + "end": { + "$date": "2020-11-27T05:20:25.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-27T01:48:34.000Z" + }, + "end": { + "$date": "2020-11-27T05:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53bd0dcb-1836-4795-9b72-abbc50608c19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T02:19:21.000Z" + }, + "end": { + "$date": "2020-11-27T02:56:07.000Z" + }, + "events": [ + { + "uuid": "99c2c47f-fefa-453e-a465-0e5e48ad697c", + "start": { + "$date": "2020-11-27T02:19:21.000Z" + }, + "end": { + "$date": "2020-11-27T02:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0723e3d-3340-4d34-bc59-86032511c3ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T02:19:22.000Z" + }, + "end": { + "$date": "2020-11-27T02:56:03.000Z" + }, + "events": [ + { + "uuid": "8815f0ea-f441-4772-b79b-55fecea0df21", + "start": { + "$date": "2020-11-27T02:19:22.000Z" + }, + "end": { + "$date": "2020-11-27T02:56:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5aa086b-3d6c-4664-ad0a-3dca977937bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T03:01:18.000Z" + }, + "end": { + "$date": "2020-11-27T03:20:08.000Z" + }, + "events": [ + { + "uuid": "fd769349-d529-492c-b147-d293d687d4eb", + "start": { + "$date": "2020-11-27T03:01:18.000Z" + }, + "end": { + "$date": "2020-11-27T03:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8c60b10-e71a-44f7-ac1f-6fe12b48ee8a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T03:01:18.000Z" + }, + "end": { + "$date": "2020-11-27T03:20:05.000Z" + }, + "events": [ + { + "uuid": "25519fa9-60db-4057-84fc-fbdecd73c00e", + "start": { + "$date": "2020-11-27T03:01:18.000Z" + }, + "end": { + "$date": "2020-11-27T03:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e957a597-e944-422a-ba25-88de2a742dfe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-27T03:23:06.000Z" + }, + "end": { + "$date": "2020-11-27T03:59:29.000Z" + }, + "events": [ + { + "uuid": "28e828d2-4b04-4339-95e6-f0787a2257f9", + "start": { + "$date": "2020-11-27T03:23:06.000Z" + }, + "end": { + "$date": "2020-11-27T03:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "eaeaa1e3-9bf0-4864-90b4-797adc2361f1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T04:06:41.000Z" + }, + "end": { + "$date": "2020-11-27T05:29:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-27T04:06:41.000Z" + }, + "end": { + "$date": "2020-11-27T05:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "10766f43-3865-46cc-b00b-fbbaa3b282e9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-27T05:15:14.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:35.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-27T05:15:14.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4a7f1c09-203a-440d-896d-54434bec07ef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-27T05:30:30.000Z" + }, + "end": { + "$date": "2020-11-27T07:26:49.000Z" + }, + "events": [ + { + "uuid": "acbc3cfa-2688-47c3-b1d5-2e114c771f9f", + "start": { + "$date": "2020-11-27T05:30:30.000Z" + }, + "end": { + "$date": "2020-11-27T07:26:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "66e8e10a-756f-4fb0-b9e4-35c90f8c2b2c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T05:31:08.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:26.000Z" + }, + "events": [ + { + "uuid": "9770ea20-c0d3-44ec-b476-fae6f4d0f1da", + "start": { + "$date": "2020-11-27T05:31:08.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6925f699-2608-492f-953a-ccce3c96c0fe", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T05:31:18.000Z" + }, + "end": { + "$date": "2020-11-27T07:29:56.000Z" + }, + "events": [ + { + "uuid": "df957109-8d35-4c93-a900-38156cb965e6", + "start": { + "$date": "2020-11-27T05:31:18.000Z" + }, + "end": { + "$date": "2020-11-27T07:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd5a65dc-ac43-4e8a-b4be-86136df4a3f3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T05:32:48.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:20.000Z" + }, + "events": [ + { + "uuid": "4c5784a8-50ec-44f3-b471-8bf1aec354f7", + "start": { + "$date": "2020-11-27T05:32:48.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bd81f5e3-2146-4264-bcb5-780ce12a3e0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T06:47:07.000Z" + }, + "end": { + "$date": "2020-11-27T07:34:07.000Z" + }, + "events": [ + { + "uuid": "666a54a1-8cea-4659-9c6c-99d31e2ad884", + "start": { + "$date": "2020-11-27T06:47:07.000Z" + }, + "end": { + "$date": "2020-11-27T07:34:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eebf3c8d-2e48-4730-9a61-9b147791c55b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T07:13:30.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:06.000Z" + }, + "events": [ + { + "uuid": "c50de8ae-153c-477c-b6c2-dc554521d743", + "start": { + "$date": "2020-11-27T07:13:30.000Z" + }, + "end": { + "$date": "2020-11-27T07:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b54e8d33-3143-4d77-a032-90b1ee9670dd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-27T07:27:04.000Z" + }, + "end": { + "$date": "2020-11-27T07:55:56.000Z" + }, + "events": [ + { + "uuid": "8d8ccaac-4c98-43c5-a57b-c7175fffc26f", + "start": { + "$date": "2020-11-27T07:27:04.000Z" + }, + "end": { + "$date": "2020-11-27T07:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1ca242f9-134d-444b-bc31-51ee52aac29b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T07:30:46.000Z" + }, + "end": { + "$date": "2020-11-27T07:32:18.000Z" + }, + "events": [ + { + "uuid": "69d03ee0-d77b-45f3-bedb-96cdc510d78c", + "start": { + "$date": "2020-11-27T07:30:46.000Z" + }, + "end": { + "$date": "2020-11-27T07:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5a50515-48f8-4c66-89ba-26cc9fefdd63", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T07:41:48.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:14.000Z" + }, + "events": [ + { + "uuid": "891ccc0c-0453-40a0-8a25-00b381b08cfe", + "start": { + "$date": "2020-11-27T07:41:48.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "410a9473-2d6c-49bd-9141-b810c00ee0fd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T07:33:02.000Z" + }, + "end": { + "$date": "2020-11-27T07:39:57.000Z" + }, + "events": [ + { + "uuid": "9c6ea296-8e0f-48eb-bdf6-211ea840aab5", + "start": { + "$date": "2020-11-27T07:33:02.000Z" + }, + "end": { + "$date": "2020-11-27T07:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6e9269b-a4b3-459b-8952-c3e1751c6be6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T07:58:28.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:09.000Z" + }, + "events": [ + { + "uuid": "43453e74-4610-41b0-8688-581aec9f3708", + "start": { + "$date": "2020-11-27T07:58:28.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "797d5303-7c2d-4ee6-8697-da7b40516f27", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T07:41:47.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:12.000Z" + }, + "events": [ + { + "uuid": "8617d281-967d-43c0-9540-e966fbc18aab", + "start": { + "$date": "2020-11-27T07:41:47.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8439eb8-bd45-4116-b1b8-6795170b0ef0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-27T07:41:50.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:16.000Z" + }, + "events": [ + { + "uuid": "5de84dda-319d-4514-b632-73e25b5398aa", + "start": { + "$date": "2020-11-27T07:41:50.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ce85e3c-6a77-4fd6-9eee-fce036a5f93c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T07:41:48.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:08.000Z" + }, + "events": [ + { + "uuid": "3044dd52-aa67-41a2-ab4e-8958d4a15274", + "start": { + "$date": "2020-11-27T07:41:48.000Z" + }, + "end": { + "$date": "2020-11-27T08:10:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "847e405b-4954-4679-8948-aa90c3afcfa3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T08:11:28.000Z" + }, + "end": { + "$date": "2020-11-27T08:34:04.000Z" + }, + "events": [ + { + "uuid": "4d09c502-fe93-43c4-b144-d8df47d6c26d", + "start": { + "$date": "2020-11-27T08:11:28.000Z" + }, + "end": { + "$date": "2020-11-27T08:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "931f8e00-74ab-4432-8b53-3567597ee812", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T08:33:28.000Z" + }, + "end": { + "$date": "2020-11-27T08:36:24.000Z" + }, + "events": [ + { + "uuid": "0ce492d4-d6f5-448a-845e-d79c1529661d", + "start": { + "$date": "2020-11-27T08:33:28.000Z" + }, + "end": { + "$date": "2020-11-27T08:36:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "b53df48d-5301-44c3-8d80-989f8447fdc4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T08:37:09.000Z" + }, + "end": { + "$date": "2020-11-27T08:39:59.000Z" + }, + "events": [ + { + "uuid": "d7c922a1-4497-4ac9-9f1a-e6d43b96a6fa", + "start": { + "$date": "2020-11-27T08:37:09.000Z" + }, + "end": { + "$date": "2020-11-27T08:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "4e29428b-c826-4889-a442-558f2d47c88f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T08:40:24.000Z" + }, + "end": { + "$date": "2020-11-27T08:41:29.000Z" + }, + "events": [ + { + "uuid": "7806feca-cf0e-41ca-9829-f94a12122098", + "start": { + "$date": "2020-11-27T08:40:24.000Z" + }, + "end": { + "$date": "2020-11-27T08:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "04ea678f-fd64-470a-b754-ce2e57c8eed6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T08:41:44.000Z" + }, + "end": { + "$date": "2020-11-27T10:05:09.000Z" + }, + "events": [ + { + "uuid": "5e43bf50-8158-45ef-9b60-41361a74187a", + "start": { + "$date": "2020-11-27T08:41:44.000Z" + }, + "end": { + "$date": "2020-11-27T10:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b47bd9e1-d8fc-401d-b970-ab141d5f77a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T15:18:23.000Z" + }, + "end": { + "$date": "2020-11-27T16:59:19.000Z" + }, + "events": [ + { + "uuid": "c6547831-2661-4aaa-b91c-ebd8be1649be", + "start": { + "$date": "2020-11-27T15:18:23.000Z" + }, + "end": { + "$date": "2020-11-27T16:59:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74c1ec4f-52b5-428e-bdf3-5f1ef8c47a72", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T17:23:33.000Z" + }, + "end": { + "$date": "2020-11-27T17:50:00.000Z" + }, + "events": [ + { + "uuid": "b630dec1-4b82-48ff-b672-15afddd3862f", + "start": { + "$date": "2020-11-27T17:23:33.000Z" + }, + "end": { + "$date": "2020-11-27T17:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "aac0b518-3aa2-4ad1-826e-98e34ea58dc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T17:22:17.000Z" + }, + "end": { + "$date": "2020-11-27T17:29:26.000Z" + }, + "events": [ + { + "uuid": "2d93922f-70db-49ff-97a7-bb543fd884ef", + "start": { + "$date": "2020-11-27T17:22:17.000Z" + }, + "end": { + "$date": "2020-11-27T17:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "5913bffd-bbb4-4f3a-90ef-8bf2dbde18dd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T17:29:47.000Z" + }, + "end": { + "$date": "2020-11-27T18:34:38.000Z" + }, + "events": [ + { + "uuid": "408d5fec-b6ef-4dfd-be0c-4b41f3a54bed", + "start": { + "$date": "2020-11-27T17:29:47.000Z" + }, + "end": { + "$date": "2020-11-27T17:47:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0cb830d-09e4-4c05-94f4-b03ec1b366fc", + "start": { + "$date": "2020-11-27T17:47:47.000Z" + }, + "end": { + "$date": "2020-11-27T17:48:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e411de83-2f16-45d7-9363-08379f2c4750", + "start": { + "$date": "2020-11-27T17:48:47.000Z" + }, + "end": { + "$date": "2020-11-27T18:18:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4e1b9f8-c362-444a-bbbb-ba5cf90def4a", + "start": { + "$date": "2020-11-27T18:18:47.000Z" + }, + "end": { + "$date": "2020-11-27T18:34:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36e9b590-64b8-4a98-9bb9-7709f3dc33bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T18:08:01.000Z" + }, + "end": { + "$date": "2020-11-27T18:48:21.000Z" + }, + "events": [ + { + "uuid": "df6c1e64-81c4-4472-aaf7-5eaa647b01a7", + "start": { + "$date": "2020-11-27T18:08:01.000Z" + }, + "end": { + "$date": "2020-11-27T18:48:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fb278e5-36ec-4c6d-a76f-a479bdcdc4f3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T18:10:39.000Z" + }, + "end": { + "$date": "2020-11-27T18:48:20.000Z" + }, + "events": [ + { + "uuid": "c85bae40-4b03-4ae1-80b8-aa4f5a82bfd0", + "start": { + "$date": "2020-11-27T18:10:39.000Z" + }, + "end": { + "$date": "2020-11-27T18:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5da30ba-171f-4696-b980-8fb3724f049a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T18:53:03.000Z" + }, + "end": { + "$date": "2020-11-27T19:36:31.000Z" + }, + "events": [ + { + "uuid": "b8dd5fd2-0c2c-4e76-b19d-5d1a64291fbe", + "start": { + "$date": "2020-11-27T18:53:03.000Z" + }, + "end": { + "$date": "2020-11-27T19:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcba7cf8-9d27-4e78-8b1e-9fcf72217954", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T18:52:55.000Z" + }, + "end": { + "$date": "2020-11-27T19:36:54.000Z" + }, + "events": [ + { + "uuid": "be85dc69-b388-4d6c-b488-9da0b4673c2e", + "start": { + "$date": "2020-11-27T18:52:55.000Z" + }, + "end": { + "$date": "2020-11-27T19:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4444a253-7fc3-4bc8-9897-f70d6f3c9d2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T18:51:45.000Z" + }, + "end": { + "$date": "2020-11-27T18:53:50.000Z" + }, + "events": [ + { + "uuid": "00c90abb-3dc5-4019-a54d-536042e50ab4", + "start": { + "$date": "2020-11-27T18:51:45.000Z" + }, + "end": { + "$date": "2020-11-27T18:53:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b2fa12f7-a4fb-4667-b06f-d590561b0f63", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T18:54:00.000Z" + }, + "end": { + "$date": "2020-11-27T19:03:01.000Z" + }, + "events": [ + { + "uuid": "61b58c19-6140-41fa-be24-c9421ea43a49", + "start": { + "$date": "2020-11-27T18:54:00.000Z" + }, + "end": { + "$date": "2020-11-27T19:03:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3e9833d4-c85f-48ae-914a-c5245c8f9f5e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T19:11:32.000Z" + }, + "end": { + "$date": "2020-11-27T20:33:54.000Z" + }, + "events": [ + { + "uuid": "f3ba0cbb-fb00-4ceb-81bf-18d9693c18bf", + "start": { + "$date": "2020-11-27T19:11:32.000Z" + }, + "end": { + "$date": "2020-11-27T20:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce8bd228-9914-4001-ab47-f10643042bba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T19:45:26.000Z" + }, + "end": { + "$date": "2020-11-27T20:22:35.000Z" + }, + "events": [ + { + "uuid": "ffa39256-40ae-454e-9da3-8202e943d85f", + "start": { + "$date": "2020-11-27T19:45:26.000Z" + }, + "end": { + "$date": "2020-11-27T20:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c196015-7f75-4a6e-a070-4f9831cad86f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T19:45:22.000Z" + }, + "end": { + "$date": "2020-11-27T20:22:23.000Z" + }, + "events": [ + { + "uuid": "d4e3d9f1-6c42-478a-a1cd-4a6247c3945c", + "start": { + "$date": "2020-11-27T19:45:22.000Z" + }, + "end": { + "$date": "2020-11-27T20:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d8e8f375-6057-421b-b848-2fd86ccd605b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-27T20:13:01.000Z" + }, + "end": { + "$date": "2020-11-27T21:33:56.000Z" + }, + "events": [ + { + "uuid": "539f95bb-0661-4a2e-b00d-d5dd4940c4b5", + "start": { + "$date": "2020-11-27T20:13:01.000Z" + }, + "end": { + "$date": "2020-11-27T21:33:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efc5cdf6-b698-47bd-b5cf-a337b492d285", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T20:30:43.000Z" + }, + "end": { + "$date": "2020-11-27T21:11:09.000Z" + }, + "events": [ + { + "uuid": "86c73b18-e765-4e6e-a24c-55eb69dd0f4e", + "start": { + "$date": "2020-11-27T20:30:43.000Z" + }, + "end": { + "$date": "2020-11-27T21:11:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "7bd47d07-e438-437d-99ae-2774e831f77a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-27T20:26:51.000Z" + }, + "end": { + "$date": "2020-11-27T20:29:04.000Z" + }, + "events": [ + { + "uuid": "fc191c6f-6a29-421f-ba55-24eb750a5f73", + "start": { + "$date": "2020-11-27T20:26:51.000Z" + }, + "end": { + "$date": "2020-11-27T20:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51ca3022-ce17-4418-9450-630679d54daa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T20:30:40.000Z" + }, + "end": { + "$date": "2020-11-27T21:11:06.000Z" + }, + "events": [ + { + "uuid": "e0802ad1-e238-4d98-9a01-3ca1d3f823e2", + "start": { + "$date": "2020-11-27T20:30:40.000Z" + }, + "end": { + "$date": "2020-11-27T21:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dc0e043f-3fe4-49b5-ad5b-ca98e8152ecf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-27T20:38:22.000Z" + }, + "end": { + "$date": "2020-11-27T20:46:06.000Z" + }, + "events": [ + { + "uuid": "8297906e-106b-42fd-a51e-9545a8ffcb96", + "start": { + "$date": "2020-11-27T20:38:22.000Z" + }, + "end": { + "$date": "2020-11-27T20:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ef63864-2280-45d1-9216-cbe3a0f82c58", + "uuid": "63fcd99f-d1be-4400-b37e-1a5cbedb636d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T21:04:22.000Z" + }, + "end": { + "$date": "2020-11-27T21:17:22.000Z" + }, + "events": [ + { + "uuid": "dbb83e25-70ee-46f3-a8fa-2dba58d1c26c", + "start": { + "$date": "2020-11-27T21:04:22.000Z" + }, + "end": { + "$date": "2020-11-27T21:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36b8f278-89e9-44b0-b4e2-ed2a77951465", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T21:12:08.000Z" + }, + "end": { + "$date": "2020-11-27T21:14:11.000Z" + }, + "events": [ + { + "uuid": "396a08c2-c66e-4374-8d72-d2ca433b459f", + "start": { + "$date": "2020-11-27T21:12:08.000Z" + }, + "end": { + "$date": "2020-11-27T21:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1d42b27-77f2-479a-b7f8-b32ebc198677", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-27T21:14:11.000Z" + }, + "end": { + "$date": "2020-11-27T22:59:43.000Z" + }, + "events": [ + { + "uuid": "ef64f16c-e11e-40be-baa3-8321b238d52d", + "start": { + "$date": "2020-11-27T21:14:11.000Z" + }, + "end": { + "$date": "2020-11-27T21:25:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a72fd20-f250-47ec-9e8e-ba2430daa410", + "start": { + "$date": "2020-11-27T21:25:11.000Z" + }, + "end": { + "$date": "2020-11-27T21:27:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4aab8c14-a538-43b5-8887-d97082530ca0", + "start": { + "$date": "2020-11-27T21:27:11.000Z" + }, + "end": { + "$date": "2020-11-27T21:29:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9616a49-b846-4565-9bc2-da1829a046f4", + "start": { + "$date": "2020-11-27T21:29:11.000Z" + }, + "end": { + "$date": "2020-11-27T21:33:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f68153f-8fc6-4f90-8c54-e08d5085af31", + "start": { + "$date": "2020-11-27T21:33:11.000Z" + }, + "end": { + "$date": "2020-11-27T21:43:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e1c0ae91-244a-4299-93a6-155ac047107e", + "start": { + "$date": "2020-11-27T21:43:11.000Z" + }, + "end": { + "$date": "2020-11-27T22:36:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8512d276-423c-412a-b16f-310c1b7e2da7", + "start": { + "$date": "2020-11-27T22:36:11.000Z" + }, + "end": { + "$date": "2020-11-27T22:58:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "366716a8-8f6c-49cd-a3b6-0febadd5774f", + "start": { + "$date": "2020-11-27T22:58:11.000Z" + }, + "end": { + "$date": "2020-11-27T22:59:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "9ebf68c9-8fd1-4d4a-b604-72ce898d5e3a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T21:23:17.000Z" + }, + "end": { + "$date": "2020-11-27T21:28:03.000Z" + }, + "events": [ + { + "uuid": "0ae8349d-592e-4472-980c-59633d0f8eed", + "start": { + "$date": "2020-11-27T21:23:17.000Z" + }, + "end": { + "$date": "2020-11-27T21:28:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ef26f5fd-038b-4890-96b0-f1096725ec4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-27T21:31:39.000Z" + }, + "end": { + "$date": "2020-11-27T21:42:34.000Z" + }, + "events": [ + { + "uuid": "e991e0a5-fea5-4b59-a96e-40c7b5b32431", + "start": { + "$date": "2020-11-27T21:31:39.000Z" + }, + "end": { + "$date": "2020-11-27T21:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b2107dc-1a81-4269-9ca6-98381afcdadf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-27T21:34:06.000Z" + }, + "end": { + "$date": "2020-11-27T22:21:19.000Z" + }, + "events": [ + { + "uuid": "f0a244c7-c839-4ccc-be46-a5245ec08bfe", + "start": { + "$date": "2020-11-27T21:34:06.000Z" + }, + "end": { + "$date": "2020-11-27T22:21:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6aa766ce-e303-4bca-9791-664bf0dbd823", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-11-27T22:44:25.000Z" + }, + "end": { + "$date": "2020-11-28T05:20:04.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-27T22:44:25.000Z" + }, + "end": { + "$date": "2020-11-28T05:20:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6e9838bc-b56d-48ba-879e-e137b8d10b3a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-27T22:47:34.000Z" + }, + "end": { + "$date": "2020-11-27T23:02:43.000Z" + }, + "events": [ + { + "uuid": "c6cb02f0-b1ae-407c-abcc-f50fe7599153", + "start": { + "$date": "2020-11-27T22:47:34.000Z" + }, + "end": { + "$date": "2020-11-27T23:02:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "d53f7096-eeae-46c7-9347-e4bc9984219d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T22:48:39.000Z" + }, + "end": { + "$date": "2020-11-27T22:50:45.000Z" + }, + "events": [ + { + "uuid": "9922f6b4-9b26-4652-8fe5-3e32be40842b", + "start": { + "$date": "2020-11-27T22:48:39.000Z" + }, + "end": { + "$date": "2020-11-27T22:50:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bd1208f8-0e12-4bc2-801d-a27716f23ff9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-27T22:50:59.000Z" + }, + "end": { + "$date": "2020-11-28T01:32:45.000Z" + }, + "events": [ + { + "uuid": "48ee296c-e975-4845-b9a1-204a3f5cf224", + "start": { + "$date": "2020-11-27T22:50:59.000Z" + }, + "end": { + "$date": "2020-11-28T01:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc368ed4-cb9f-43e2-9f3b-dd73b36e871d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-27T22:59:43.000Z" + }, + "end": { + "$date": "2020-11-28T00:36:14.000Z" + }, + "events": [ + { + "uuid": "ed7b5004-2631-40c5-ba69-d61647ff57de", + "start": { + "$date": "2020-11-27T22:59:43.000Z" + }, + "end": { + "$date": "2020-11-27T23:02:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bdaa1c18-a7d1-4a29-a633-1c6da8e0d807", + "start": { + "$date": "2020-11-27T23:02:43.000Z" + }, + "end": { + "$date": "2020-11-27T23:36:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e39d774d-eb4c-474e-bcfa-db5c4d0a044f", + "start": { + "$date": "2020-11-27T23:36:43.000Z" + }, + "end": { + "$date": "2020-11-28T00:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d8a936dc-23d6-447f-9503-545df7d34f05", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-27T23:07:04.000Z" + }, + "end": { + "$date": "2020-11-28T01:33:15.000Z" + }, + "events": [ + { + "uuid": "12ae9631-0ce0-44ae-86fc-b49b81c262ed", + "start": { + "$date": "2020-11-27T23:07:04.000Z" + }, + "end": { + "$date": "2020-11-28T01:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6d1ee3f2-7f9b-4de8-a1ae-d02d95a030ae", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-27T23:38:36.000Z" + }, + "end": { + "$date": "2020-11-28T05:20:09.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-27T23:38:36.000Z" + }, + "end": { + "$date": "2020-11-28T05:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "268fb00a-d976-4dc5-ab23-970ea9bb78bd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-28T00:17:20.000Z" + }, + "end": { + "$date": "2020-11-28T00:33:28.000Z" + }, + "events": [ + { + "uuid": "5c3a009d-9405-4cb5-8f0d-914da6fd907c", + "start": { + "$date": "2020-11-28T00:17:20.000Z" + }, + "end": { + "$date": "2020-11-28T00:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "344455e2-a935-456c-b5c9-467e28718604", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-28T00:40:34.000Z" + }, + "end": { + "$date": "2020-11-28T01:27:32.000Z" + }, + "events": [ + { + "uuid": "79a20ec8-4b5a-473f-b7e9-285336dd1d6c", + "start": { + "$date": "2020-11-28T00:40:34.000Z" + }, + "end": { + "$date": "2020-11-28T01:27:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60ce557e-9680-41d5-87a0-3eeee9df7661", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T00:40:38.000Z" + }, + "end": { + "$date": "2020-11-28T01:27:23.000Z" + }, + "events": [ + { + "uuid": "079a22e4-9edf-4b8e-8475-d1c47da9d3d8", + "start": { + "$date": "2020-11-28T00:40:38.000Z" + }, + "end": { + "$date": "2020-11-28T01:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "32997b4c-4293-4c1c-93da-227f5dab550e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T01:19:51.000Z" + }, + "end": { + "$date": "2020-11-28T02:36:24.000Z" + }, + "events": [ + { + "uuid": "b6bfd899-a027-43b8-84c5-99ed62c4e96d", + "start": { + "$date": "2020-11-28T01:19:51.000Z" + }, + "end": { + "$date": "2020-11-28T02:36:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a963bf2b-8ba6-46b5-8911-ce86b63ba525", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-28T01:36:15.000Z" + }, + "end": { + "$date": "2020-11-28T01:55:02.000Z" + }, + "events": [ + { + "uuid": "2ca0e3a0-8e93-456c-9d9e-3300fdeb184d", + "start": { + "$date": "2020-11-28T01:36:15.000Z" + }, + "end": { + "$date": "2020-11-28T01:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf0b6b75-2b19-40c4-85ca-fe0170aaf200", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T02:35:03.000Z" + }, + "end": { + "$date": "2020-11-28T03:00:56.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-28T02:35:03.000Z" + }, + "end": { + "$date": "2020-11-28T03:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b541359d-9476-49a1-b394-4740015063ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-28T01:55:29.000Z" + }, + "end": { + "$date": "2020-11-28T02:24:17.000Z" + }, + "events": [ + { + "uuid": "fc7767d6-5327-44b8-bdbb-6504692694ed", + "start": { + "$date": "2020-11-28T01:55:29.000Z" + }, + "end": { + "$date": "2020-11-28T02:24:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4ed74bcb-20ac-4d4a-b8c2-5168a18f418b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-28T02:43:48.000Z" + }, + "end": { + "$date": "2020-11-28T03:09:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-11-28T02:43:48.000Z" + }, + "end": { + "$date": "2020-11-28T03:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "55ec9723-2ac1-4c0d-b525-1a00778d8ee9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-28T03:19:37.000Z" + }, + "end": { + "$date": "2020-11-28T05:33:27.000Z" + }, + "events": [ + { + "uuid": "eeaf4344-ba8d-42bc-a029-be1ee92cb66f", + "start": { + "$date": "2020-11-28T03:19:37.000Z" + }, + "end": { + "$date": "2020-11-28T05:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2d33b8f4-c559-4459-a424-7edf338cc845", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T03:50:17.000Z" + }, + "end": { + "$date": "2020-11-28T04:27:14.000Z" + }, + "events": [ + { + "uuid": "91777fc8-5fcb-455c-8aaf-a10f86b7d2dd", + "start": { + "$date": "2020-11-28T03:50:17.000Z" + }, + "end": { + "$date": "2020-11-28T04:27:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9dca9e0c-b6c3-4e88-97d3-8fbbf91202fc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T04:12:28.000Z" + }, + "end": { + "$date": "2020-11-28T06:12:53.000Z" + }, + "events": [ + { + "uuid": "31609840-54d9-41f6-a479-9ad8fc8537fc", + "start": { + "$date": "2020-11-28T04:12:28.000Z" + }, + "end": { + "$date": "2020-11-28T06:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b080a85-36c1-4939-9977-44fe17ecf059", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T05:39:23.000Z" + }, + "end": { + "$date": "2020-11-28T06:01:58.000Z" + }, + "events": [ + { + "uuid": "9fd918f7-0377-4b82-8900-e3151d20589e", + "start": { + "$date": "2020-11-28T05:39:23.000Z" + }, + "end": { + "$date": "2020-11-28T06:01:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3f421a8a-45bc-4b2c-8a8c-336ca4ead671", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-28T05:35:47.000Z" + }, + "end": { + "$date": "2020-11-28T06:25:07.000Z" + }, + "events": [ + { + "uuid": "ba6ab8d8-edee-44db-8dd9-21518558599a", + "start": { + "$date": "2020-11-28T05:35:47.000Z" + }, + "end": { + "$date": "2020-11-28T06:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "44e1de7c-899e-49e1-8146-8f74c16cfaab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-28T05:39:23.000Z" + }, + "end": { + "$date": "2020-11-28T06:01:45.000Z" + }, + "events": [ + { + "uuid": "bb86c5b9-59a7-4226-892c-ee8097da532e", + "start": { + "$date": "2020-11-28T05:39:23.000Z" + }, + "end": { + "$date": "2020-11-28T06:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ab6975d-9680-4bf4-8290-285257263d9d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T06:02:22.000Z" + }, + "end": { + "$date": "2020-11-28T06:30:08.000Z" + }, + "events": [ + { + "uuid": "8bc12c15-5b6c-4522-8d43-807bf1b46db8", + "start": { + "$date": "2020-11-28T06:02:22.000Z" + }, + "end": { + "$date": "2020-11-28T06:30:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c03e030-2964-4579-9c07-3a5edfb54561", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T06:04:41.000Z" + }, + "end": { + "$date": "2020-11-28T06:10:57.000Z" + }, + "events": [ + { + "uuid": "49b0feef-3fb5-44cb-ba15-fb2c5f57e246", + "start": { + "$date": "2020-11-28T06:04:41.000Z" + }, + "end": { + "$date": "2020-11-28T06:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5565d5a2-e46d-4b11-89c8-452eaaea2baf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T06:11:12.000Z" + }, + "end": { + "$date": "2020-11-28T06:58:40.000Z" + }, + "events": [ + { + "uuid": "f35a03c2-9a69-4c6d-aa4f-ee593b8871de", + "start": { + "$date": "2020-11-28T06:11:12.000Z" + }, + "end": { + "$date": "2020-11-28T06:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9edeb576-bf5b-4fa3-8c33-5b7619a772c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-28T06:32:17.000Z" + }, + "end": { + "$date": "2020-11-28T09:25:42.000Z" + }, + "events": [ + { + "uuid": "e1b48b30-6c72-4bfd-9dbb-5aec57a911e0", + "start": { + "$date": "2020-11-28T06:32:17.000Z" + }, + "end": { + "$date": "2020-11-28T09:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b686b882-4eec-4172-9b97-2c85a2ecfe4b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-28T06:37:34.000Z" + }, + "end": { + "$date": "2020-11-28T09:20:07.000Z" + }, + "events": [ + { + "uuid": "e04b0127-5a49-4be6-aaeb-025eeb9d825f", + "start": { + "$date": "2020-11-28T06:37:34.000Z" + }, + "end": { + "$date": "2020-11-28T09:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6e7ea3eb-cbae-47ed-b949-77701872e293", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T16:35:00.000Z" + }, + "end": { + "$date": "2020-11-28T17:09:20.000Z" + }, + "events": [ + { + "uuid": "20c082ea-5431-444d-9b8c-5b6018446ba9", + "start": { + "$date": "2020-11-28T16:35:00.000Z" + }, + "end": { + "$date": "2020-11-28T17:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "deddfac2-ceda-4aa5-b888-440df8eb6043", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T17:10:28.000Z" + }, + "end": { + "$date": "2020-11-28T18:09:41.000Z" + }, + "events": [ + { + "uuid": "27eae64c-7c0b-4212-a5e6-a7f3054ecc22", + "start": { + "$date": "2020-11-28T17:10:28.000Z" + }, + "end": { + "$date": "2020-11-28T18:09:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1d034b43-d748-4a4e-9135-17e56adb7293", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-28T17:10:29.000Z" + }, + "end": { + "$date": "2020-11-28T17:55:10.000Z" + }, + "events": [ + { + "uuid": "351a47e8-b2a6-4699-8802-2eeee83f5f7c", + "start": { + "$date": "2020-11-28T17:10:29.000Z" + }, + "end": { + "$date": "2020-11-28T17:55:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "90d8f8cc-85c1-4bd6-948e-b2588a8a8dcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-28T17:39:17.000Z" + }, + "end": { + "$date": "2020-11-28T18:20:11.000Z" + }, + "events": [ + { + "uuid": "fcd2511c-cdc1-40d6-b7ad-354b728340b2", + "start": { + "$date": "2020-11-28T17:39:17.000Z" + }, + "end": { + "$date": "2020-11-28T17:50:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "00ce44b7-dad5-4f57-9c96-a0cc6ddab568", + "start": { + "$date": "2020-11-28T17:50:17.000Z" + }, + "end": { + "$date": "2020-11-28T17:55:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "66397b6a-f2d9-4c99-a30a-6022809fd72d", + "start": { + "$date": "2020-11-28T17:55:17.000Z" + }, + "end": { + "$date": "2020-11-28T18:05:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bb0fd05-ac0b-415e-8a62-9603ce28d1da", + "start": { + "$date": "2020-11-28T18:05:17.000Z" + }, + "end": { + "$date": "2020-11-28T18:12:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fbaf6dd1-e8a7-4dea-9a51-b6c3cfc26730", + "start": { + "$date": "2020-11-28T18:12:17.000Z" + }, + "end": { + "$date": "2020-11-28T18:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b1e1cb0e-09d3-486d-9bce-72e4d9438df4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-28T18:29:17.000Z" + }, + "end": { + "$date": "2020-11-28T23:22:57.000Z" + }, + "events": [ + { + "uuid": "90ad1c29-51f1-430f-b783-b4e6f5fec453", + "start": { + "$date": "2020-11-28T18:29:17.000Z" + }, + "end": { + "$date": "2020-11-28T20:38:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aaf7efec-5725-4638-8f9e-09587946deb3", + "start": { + "$date": "2020-11-28T20:38:17.000Z" + }, + "end": { + "$date": "2020-11-28T21:06:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0836eba6-152d-40bf-ae98-b32c9c7f9428", + "start": { + "$date": "2020-11-28T21:06:17.000Z" + }, + "end": { + "$date": "2020-11-28T23:22:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c01b2393-c52f-4994-9ae7-7a98f66e7717", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-28T18:29:58.000Z" + }, + "end": { + "$date": "2020-11-28T23:17:45.000Z" + }, + "events": [ + { + "uuid": "d9644394-b989-4807-80d0-54355b30a4f3", + "start": { + "$date": "2020-11-28T18:29:58.000Z" + }, + "end": { + "$date": "2020-11-28T20:45:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9e8d5612-6460-4f2f-98dd-2c87f3f234f4", + "start": { + "$date": "2020-11-28T20:45:58.000Z" + }, + "end": { + "$date": "2020-11-28T21:05:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "07899a44-6102-4ced-b581-599c38650f97", + "start": { + "$date": "2020-11-28T21:05:58.000Z" + }, + "end": { + "$date": "2020-11-28T23:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7d8c16e3-8e90-4866-a183-27f411a9f9c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-28T18:53:34.000Z" + }, + "end": { + "$date": "2020-11-28T20:00:15.000Z" + }, + "events": [ + { + "uuid": "0fbd90cc-954a-433a-8f00-9bb8d3f488d6", + "start": { + "$date": "2020-11-28T18:53:34.000Z" + }, + "end": { + "$date": "2020-11-28T20:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "877e3fb2-4ff7-4a95-8b3d-82bebd7f18db", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T19:51:08.000Z" + }, + "end": { + "$date": "2020-11-28T20:12:39.000Z" + }, + "events": [ + { + "uuid": "be549eaa-de23-4cb0-ba20-f4dc5de07bcd", + "start": { + "$date": "2020-11-28T19:51:08.000Z" + }, + "end": { + "$date": "2020-11-28T20:12:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "884c8f1e-2116-49c1-842d-d2aca0f2eb87", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T20:21:57.000Z" + }, + "end": { + "$date": "2020-11-28T20:37:23.000Z" + }, + "events": [ + { + "uuid": "ce662ff2-611f-4f23-a55c-f9ab79a9689b", + "start": { + "$date": "2020-11-28T20:21:57.000Z" + }, + "end": { + "$date": "2020-11-28T20:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "e4336328-ca4c-4a16-a6d2-1d8b18ce4d5f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T21:06:59.000Z" + }, + "end": { + "$date": "2020-11-28T21:10:09.000Z" + }, + "events": [ + { + "uuid": "3d1779df-6454-425c-91b4-60c4b4b2857b", + "start": { + "$date": "2020-11-28T21:06:59.000Z" + }, + "end": { + "$date": "2020-11-28T21:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "8151067b-fdc7-4f77-949c-8480a419f7a3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T21:11:29.000Z" + }, + "end": { + "$date": "2020-11-28T21:13:25.000Z" + }, + "events": [ + { + "uuid": "04c38398-e8b1-4042-b677-f2eacb19c395", + "start": { + "$date": "2020-11-28T21:11:29.000Z" + }, + "end": { + "$date": "2020-11-28T21:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "994039f1-c2ba-4152-a4b8-223f9c8c46a4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-28T21:21:15.000Z" + }, + "end": { + "$date": "2020-11-28T22:11:59.000Z" + }, + "events": [ + { + "uuid": "8b62ce5f-36b6-4c04-865a-b7be41f3d26d", + "start": { + "$date": "2020-11-28T21:21:15.000Z" + }, + "end": { + "$date": "2020-11-28T22:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25f4d41a-ccd5-4258-bc4e-79d2d77af5ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T21:40:55.000Z" + }, + "end": { + "$date": "2020-11-28T22:25:11.000Z" + }, + "events": [ + { + "uuid": "61c5d194-97ae-4cf4-90b8-91d34836ef4b", + "start": { + "$date": "2020-11-28T21:40:55.000Z" + }, + "end": { + "$date": "2020-11-28T22:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39d81aba-464e-480f-870f-d263b53968bb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-28T21:40:53.000Z" + }, + "end": { + "$date": "2020-11-28T22:25:10.000Z" + }, + "events": [ + { + "uuid": "00ffa100-f089-4bc9-b3e6-61506396d517", + "start": { + "$date": "2020-11-28T21:40:53.000Z" + }, + "end": { + "$date": "2020-11-28T22:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a99ae26a-1078-4043-983a-b896f8c04dc8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T21:39:25.000Z" + }, + "end": { + "$date": "2020-11-28T21:40:31.000Z" + }, + "events": [ + { + "uuid": "b6e86160-14f6-4986-bcf8-fd12bc41417b", + "start": { + "$date": "2020-11-28T21:39:25.000Z" + }, + "end": { + "$date": "2020-11-28T21:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d5bd711c-2ff4-4763-8f92-1ab6ec84bec3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-28T21:41:21.000Z" + }, + "end": { + "$date": "2020-11-29T01:31:47.000Z" + }, + "events": [ + { + "uuid": "27d30af9-308d-4e45-9bc9-7d4314017cb3", + "start": { + "$date": "2020-11-28T21:41:21.000Z" + }, + "end": { + "$date": "2020-11-29T00:52:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "111dc12e-c627-46a7-8900-066e366043dc", + "start": { + "$date": "2020-11-29T00:52:21.000Z" + }, + "end": { + "$date": "2020-11-29T01:09:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc6b3c06-3ca9-4392-b972-98e1d3da2989", + "start": { + "$date": "2020-11-29T01:09:21.000Z" + }, + "end": { + "$date": "2020-11-29T01:31:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "755c030e-eca2-47d3-bcfd-fec7ca9e5363", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-28T21:51:47.000Z" + }, + "end": { + "$date": "2020-11-28T21:58:22.000Z" + }, + "events": [ + { + "uuid": "16af423c-a56e-4460-a903-1349d3463df0", + "start": { + "$date": "2020-11-28T21:51:47.000Z" + }, + "end": { + "$date": "2020-11-28T21:58:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d46f298-46e6-425b-a29d-cb829ba30214", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T22:29:27.000Z" + }, + "end": { + "$date": "2020-11-28T23:17:53.000Z" + }, + "events": [ + { + "uuid": "3df2c04a-cdff-4bea-9d4d-d8832d732c46", + "start": { + "$date": "2020-11-28T22:29:27.000Z" + }, + "end": { + "$date": "2020-11-28T23:17:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86cdf78e-be4d-4402-ab2c-46f339e5fe80", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-28T22:29:26.000Z" + }, + "end": { + "$date": "2020-11-28T23:17:08.000Z" + }, + "events": [ + { + "uuid": "76f90f84-b0eb-4def-bbdc-97d5dad6e8e4", + "start": { + "$date": "2020-11-28T22:29:26.000Z" + }, + "end": { + "$date": "2020-11-28T23:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dccc17f0-8329-477d-ab27-1c454ab5b545", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-28T22:47:34.000Z" + }, + "end": { + "$date": "2020-11-28T23:33:42.000Z" + }, + "events": [ + { + "uuid": "578e48fb-db7d-4cd9-ae7f-1c5482eef4f2", + "start": { + "$date": "2020-11-28T22:47:34.000Z" + }, + "end": { + "$date": "2020-11-28T23:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7007835d-599d-4bd5-8efa-7fba05908897", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-28T23:14:06.000Z" + }, + "end": { + "$date": "2020-11-29T01:23:11.000Z" + }, + "events": [ + { + "uuid": "9b73105a-1551-4a11-87fe-d1969fa33235", + "start": { + "$date": "2020-11-28T23:14:06.000Z" + }, + "end": { + "$date": "2020-11-29T01:23:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5fed068-2437-4424-9934-b709c3a879cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-28T23:18:40.000Z" + }, + "end": { + "$date": "2020-11-28T23:22:52.000Z" + }, + "events": [ + { + "uuid": "2e80fc46-8b3e-4f65-bceb-4f2bb28b77e6", + "start": { + "$date": "2020-11-28T23:18:40.000Z" + }, + "end": { + "$date": "2020-11-28T23:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fae2816f-1e8a-47d8-8e85-48b650e53a20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-28T23:22:52.000Z" + }, + "end": { + "$date": "2020-11-29T03:48:02.000Z" + }, + "events": [ + { + "uuid": "8d4cc818-c9e7-42a0-987d-42f3b0907018", + "start": { + "$date": "2020-11-28T23:22:52.000Z" + }, + "end": { + "$date": "2020-11-28T23:48:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82983473-abce-4d3c-9bbb-8d03a9325074", + "start": { + "$date": "2020-11-28T23:48:52.000Z" + }, + "end": { + "$date": "2020-11-28T23:49:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2cc97e86-d483-4ab9-8904-74b088cf38e2", + "start": { + "$date": "2020-11-28T23:49:52.000Z" + }, + "end": { + "$date": "2020-11-28T23:59:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ca614551-a4f7-4488-9836-78cc71c3e575", + "start": { + "$date": "2020-11-28T23:59:52.000Z" + }, + "end": { + "$date": "2020-11-29T00:03:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f46fee1-34f3-45db-8fe0-8aa7b37ec868", + "start": { + "$date": "2020-11-29T00:03:52.000Z" + }, + "end": { + "$date": "2020-11-29T00:18:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae655a58-5740-4485-88e7-fa9c064f4157", + "start": { + "$date": "2020-11-29T00:18:52.000Z" + }, + "end": { + "$date": "2020-11-29T00:26:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b131df2-4b8d-4f86-a000-1e7bc7adcfdb", + "start": { + "$date": "2020-11-29T00:26:52.000Z" + }, + "end": { + "$date": "2020-11-29T02:04:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85c0adb0-5ab4-471c-899f-51b0d491bec9", + "start": { + "$date": "2020-11-29T02:04:52.000Z" + }, + "end": { + "$date": "2020-11-29T02:55:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "475ef4a3-4be3-48cf-82cc-702f2808b869", + "start": { + "$date": "2020-11-29T02:55:52.000Z" + }, + "end": { + "$date": "2020-11-29T03:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "923ca6ad-0b3d-4c9e-b27a-5cad577a6b6a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-28T23:36:22.000Z" + }, + "end": { + "$date": "2020-11-29T00:21:47.000Z" + }, + "events": [ + { + "uuid": "a50e84d0-3ca8-48c6-bbf7-09b318d64362", + "start": { + "$date": "2020-11-28T23:36:22.000Z" + }, + "end": { + "$date": "2020-11-28T23:49:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aab205a5-9211-4d55-84ef-d04f9a75fdb6", + "start": { + "$date": "2020-11-28T23:49:22.000Z" + }, + "end": { + "$date": "2020-11-28T23:54:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "34040a05-37c8-46a0-a916-810d883e1687", + "start": { + "$date": "2020-11-28T23:54:22.000Z" + }, + "end": { + "$date": "2020-11-29T00:04:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7539e55-8ed6-4a61-a715-ab97603ecf49", + "start": { + "$date": "2020-11-29T00:04:22.000Z" + }, + "end": { + "$date": "2020-11-29T00:20:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6112467f-e560-41e5-8b8c-703e6b2a7f20", + "start": { + "$date": "2020-11-29T00:20:22.000Z" + }, + "end": { + "$date": "2020-11-29T00:21:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5fbbe0ca-7057-48f2-8ada-e7962cb8ac4b", + "uuid": "262a06e1-91e9-4e37-9f6f-b4cc3c4c4789", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-28T23:38:11.000Z" + }, + "end": { + "$date": "2020-11-29T00:29:25.000Z" + }, + "events": [ + { + "uuid": "0830af90-d8d1-4308-b897-e07669b85a65", + "start": { + "$date": "2020-11-28T23:38:11.000Z" + }, + "end": { + "$date": "2020-11-29T00:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d3f3535b-f137-4140-8a8e-2c1e5703eb97", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-29T00:30:09.000Z" + }, + "end": { + "$date": "2020-11-29T00:47:00.000Z" + }, + "events": [ + { + "uuid": "624aa5ce-e598-48c4-9d82-8a3a36e3d108", + "start": { + "$date": "2020-11-29T00:30:09.000Z" + }, + "end": { + "$date": "2020-11-29T00:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "581dc9fa-e2d5-4e30-84c3-0d9d2b5d2797", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-29T00:45:04.000Z" + }, + "end": { + "$date": "2020-11-29T01:23:35.000Z" + }, + "events": [ + { + "uuid": "7dc4aa8e-4782-4bf5-8db5-4a2e8960c248", + "start": { + "$date": "2020-11-29T00:45:04.000Z" + }, + "end": { + "$date": "2020-11-29T01:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "83974432-3a9d-40ac-bcc8-0bafa6cde65b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-29T01:20:12.000Z" + }, + "end": { + "$date": "2020-11-29T01:25:23.000Z" + }, + "events": [ + { + "uuid": "868220ef-adc6-413d-b66e-87224bca5a0d", + "start": { + "$date": "2020-11-29T01:20:12.000Z" + }, + "end": { + "$date": "2020-11-29T01:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "41817207-c248-42d5-b40a-699ded69942a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-29T02:10:37.000Z" + }, + "end": { + "$date": "2020-11-29T02:34:42.000Z" + }, + "events": [ + { + "uuid": "ff2eab3f-0a1a-429f-91a6-45c2b8ff94bb", + "start": { + "$date": "2020-11-29T02:10:37.000Z" + }, + "end": { + "$date": "2020-11-29T02:34:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9623b96f-b5c2-45eb-8a6f-6d8f648895ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T02:30:27.000Z" + }, + "end": { + "$date": "2020-11-29T02:48:31.000Z" + }, + "events": [ + { + "uuid": "35c3ec4e-e083-4182-89f9-4d4afba30c37", + "start": { + "$date": "2020-11-29T02:30:27.000Z" + }, + "end": { + "$date": "2020-11-29T02:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "629446dd-206c-449c-be8d-ffc5b8019221", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T02:50:12.000Z" + }, + "end": { + "$date": "2020-11-29T03:14:19.000Z" + }, + "events": [ + { + "uuid": "9f8e3c7e-5886-4a5d-bee3-d9a8fcde903c", + "start": { + "$date": "2020-11-29T02:50:12.000Z" + }, + "end": { + "$date": "2020-11-29T03:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fd7ba696-b262-407a-9262-6acefdc0d2df", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-29T03:29:22.000Z" + }, + "end": { + "$date": "2020-11-29T05:44:11.000Z" + }, + "events": [ + { + "uuid": "4d617b6b-3ad5-4d34-915e-31f4aed2dbb9", + "start": { + "$date": "2020-11-29T03:29:22.000Z" + }, + "end": { + "$date": "2020-11-29T05:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "77dbe7bb-e39c-4e16-b84a-033aca1c1a00", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-29T03:41:52.000Z" + }, + "end": { + "$date": "2020-11-29T03:55:33.000Z" + }, + "events": [ + { + "uuid": "a2eca8da-207a-4038-9408-bce9bf91364d", + "start": { + "$date": "2020-11-29T03:41:52.000Z" + }, + "end": { + "$date": "2020-11-29T03:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f1d51b8-384e-4f0b-b387-9990da183954", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T03:48:02.000Z" + }, + "end": { + "$date": "2020-11-29T06:26:03.000Z" + }, + "events": [ + { + "uuid": "04764120-f5dd-41cd-b18b-420c41001dc6", + "start": { + "$date": "2020-11-29T03:48:02.000Z" + }, + "end": { + "$date": "2020-11-29T03:59:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "608fc721-62d7-44fa-8239-61a32ed67977", + "start": { + "$date": "2020-11-29T03:59:02.000Z" + }, + "end": { + "$date": "2020-11-29T04:04:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f60aea74-2d70-47fd-b6a3-7935e8aab8d3", + "start": { + "$date": "2020-11-29T04:04:02.000Z" + }, + "end": { + "$date": "2020-11-29T04:07:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08c660b6-6311-4144-80dc-837d68aae3ee", + "start": { + "$date": "2020-11-29T04:07:02.000Z" + }, + "end": { + "$date": "2020-11-29T04:34:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f487777-3b56-40aa-b9f9-92b94eb086bd", + "start": { + "$date": "2020-11-29T04:34:02.000Z" + }, + "end": { + "$date": "2020-11-29T04:36:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "993b945a-8cd6-479c-bff2-23941e7383e1", + "start": { + "$date": "2020-11-29T04:36:02.000Z" + }, + "end": { + "$date": "2020-11-29T05:37:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1a24d93-dcb1-40e2-8242-9413394e90b4", + "start": { + "$date": "2020-11-29T05:37:02.000Z" + }, + "end": { + "$date": "2020-11-29T05:39:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "76627e7d-5c9c-4dfb-8314-0575b0f1bff6", + "start": { + "$date": "2020-11-29T05:39:02.000Z" + }, + "end": { + "$date": "2020-11-29T05:47:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0307c2a6-8fee-49c1-be15-9138f4372b93", + "start": { + "$date": "2020-11-29T05:47:02.000Z" + }, + "end": { + "$date": "2020-11-29T05:52:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83c48d8b-f314-46e1-aefc-742c77124c4d", + "start": { + "$date": "2020-11-29T05:52:02.000Z" + }, + "end": { + "$date": "2020-11-29T05:53:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "29f5cc06-7a88-4ebc-8993-da30e1f002c3", + "start": { + "$date": "2020-11-29T05:53:02.000Z" + }, + "end": { + "$date": "2020-11-29T05:55:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c61d7a30-1a5d-416d-a9a1-0129a9f0b9ef", + "start": { + "$date": "2020-11-29T05:55:02.000Z" + }, + "end": { + "$date": "2020-11-29T06:03:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e65042ad-0d74-4825-9462-acd20f2a2d92", + "start": { + "$date": "2020-11-29T06:03:02.000Z" + }, + "end": { + "$date": "2020-11-29T06:08:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b3ec8b7-0f1d-44ee-9090-c68478f9bcee", + "start": { + "$date": "2020-11-29T06:08:02.000Z" + }, + "end": { + "$date": "2020-11-29T06:26:03.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9a1bdbf6-8c53-4448-8157-85ae02f03056", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-29T03:48:09.000Z" + }, + "end": { + "$date": "2020-11-29T03:51:14.000Z" + }, + "events": [ + { + "uuid": "37eb5276-d7e3-4e60-a06b-f39622c0c7ef", + "start": { + "$date": "2020-11-29T03:48:09.000Z" + }, + "end": { + "$date": "2020-11-29T03:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "4be05ce9-c4c6-4967-b87e-66f8e40e44b5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-29T03:51:33.000Z" + }, + "end": { + "$date": "2020-11-29T06:30:48.000Z" + }, + "events": [ + { + "uuid": "13f0a2ab-d41c-41c3-a218-85bf53a57bdf", + "start": { + "$date": "2020-11-29T03:51:33.000Z" + }, + "end": { + "$date": "2020-11-29T06:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "9ef81946-45a7-4833-8443-18952a6d603b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-29T03:52:34.000Z" + }, + "end": { + "$date": "2020-11-29T04:03:14.000Z" + }, + "events": [ + { + "uuid": "3ac58aa1-fcda-4198-a4d1-1e45bea9ea0c", + "start": { + "$date": "2020-11-29T03:52:34.000Z" + }, + "end": { + "$date": "2020-11-29T04:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "82bc990f-518f-4e2e-86e6-1d3a8c5c819b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-29T03:52:40.000Z" + }, + "end": { + "$date": "2020-11-29T05:45:29.000Z" + }, + "events": [ + { + "uuid": "87861b8a-7176-4a9f-bc22-a2b583f8a07b", + "start": { + "$date": "2020-11-29T03:52:40.000Z" + }, + "end": { + "$date": "2020-11-29T05:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d73d2281-1ddb-4d1e-aa3d-3acbec1999e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-29T03:56:19.000Z" + }, + "end": { + "$date": "2020-11-29T05:45:10.000Z" + }, + "events": [ + { + "uuid": "40461330-bfc8-4168-bfef-7fae64e6aeb2", + "start": { + "$date": "2020-11-29T03:56:19.000Z" + }, + "end": { + "$date": "2020-11-29T05:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab775ee0-be0c-4b9e-a817-05c2f1c8cb21", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-29T03:59:57.000Z" + }, + "end": { + "$date": "2020-11-29T05:44:16.000Z" + }, + "events": [ + { + "uuid": "1e61fb76-bc7e-473a-a8f2-26dc610b5a8a", + "start": { + "$date": "2020-11-29T03:59:57.000Z" + }, + "end": { + "$date": "2020-11-29T05:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "02fb31c0-8326-49a2-9c4e-443d3d9ae16b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-29T04:00:58.000Z" + }, + "end": { + "$date": "2020-11-29T04:03:14.000Z" + }, + "events": [ + { + "uuid": "17b9bb75-069a-42fc-887c-dfd6c43c067c", + "start": { + "$date": "2020-11-29T04:00:58.000Z" + }, + "end": { + "$date": "2020-11-29T04:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9fc8ddac-406a-431f-b45c-215ca0970b7c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-29T04:04:28.000Z" + }, + "end": { + "$date": "2020-11-29T05:44:15.000Z" + }, + "events": [ + { + "uuid": "94d1c430-6b62-4949-996a-fd3a2965eb43", + "start": { + "$date": "2020-11-29T04:04:28.000Z" + }, + "end": { + "$date": "2020-11-29T05:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0171720c-9d6f-4eac-acb9-96e981cec332", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-29T05:44:26.000Z" + }, + "end": { + "$date": "2020-11-29T07:05:34.000Z" + }, + "events": [ + { + "uuid": "79a2f718-287e-4435-9cbb-727dc5c8f169", + "start": { + "$date": "2020-11-29T05:44:26.000Z" + }, + "end": { + "$date": "2020-11-29T07:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d0748530-06c8-4d33-9ff6-236e0f7f29a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-29T05:52:56.000Z" + }, + "end": { + "$date": "2020-11-29T06:03:27.000Z" + }, + "events": [ + { + "uuid": "99a0b0e1-c8f6-4f62-9492-f221fa956be9", + "start": { + "$date": "2020-11-29T05:52:56.000Z" + }, + "end": { + "$date": "2020-11-29T06:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c57fd120-4e8f-4a8b-acfe-97ba4110f8d3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-29T05:59:11.000Z" + }, + "end": { + "$date": "2020-11-29T07:49:21.000Z" + }, + "events": [ + { + "uuid": "198c2c3e-7a57-41d5-842b-b4423af268fc", + "start": { + "$date": "2020-11-29T05:59:11.000Z" + }, + "end": { + "$date": "2020-11-29T07:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "950f72f4-93b0-44b4-9a97-e6774be9ca28", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-29T08:43:21.000Z" + }, + "end": { + "$date": "2020-11-29T12:14:35.000Z" + }, + "events": [ + { + "uuid": "f205ed38-67db-4e62-b6d5-baf931db0384", + "start": { + "$date": "2020-11-29T08:43:21.000Z" + }, + "end": { + "$date": "2020-11-29T12:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "791505a5-f4bc-446b-a7af-3a40083b9e55", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-29T08:58:22.000Z" + }, + "end": { + "$date": "2020-11-29T09:26:40.000Z" + }, + "events": [ + { + "uuid": "128e13d9-f71a-4dce-8733-6253f3b60564", + "start": { + "$date": "2020-11-29T08:58:22.000Z" + }, + "end": { + "$date": "2020-11-29T09:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "d8634174-98b0-4153-85b8-e97c0151a941", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-29T10:09:29.000Z" + }, + "end": { + "$date": "2020-11-29T10:48:12.000Z" + }, + "events": [ + { + "uuid": "1c643587-ee9d-4c8b-a1d4-9f80e9442008", + "start": { + "$date": "2020-11-29T10:09:29.000Z" + }, + "end": { + "$date": "2020-11-29T10:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6ff72dbf-2dcd-4422-8929-540e8045e357", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-29T16:26:00.000Z" + }, + "end": { + "$date": "2020-11-29T17:00:52.000Z" + }, + "events": [ + { + "uuid": "0adc14b7-0de1-4f0c-b026-39ea3719688b", + "start": { + "$date": "2020-11-29T16:26:00.000Z" + }, + "end": { + "$date": "2020-11-29T17:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "307b68b5-4d69-413a-b872-8a64e56afc9c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-11-29T16:39:37.000Z" + }, + "end": { + "$date": "2020-11-29T16:45:28.000Z" + }, + "events": [ + { + "uuid": "f3401648-7d1a-4c99-82e0-776aa1cf6834", + "start": { + "$date": "2020-11-29T16:39:37.000Z" + }, + "end": { + "$date": "2020-11-29T16:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "29ab9a2c-1683-4d57-a0dd-ac7fc79d5b00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-29T17:22:37.000Z" + }, + "end": { + "$date": "2020-11-29T18:06:49.000Z" + }, + "events": [ + { + "uuid": "57c2f0da-8d2d-486a-bb81-949626d3d105", + "start": { + "$date": "2020-11-29T17:22:37.000Z" + }, + "end": { + "$date": "2020-11-29T18:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "f62b90f4-067a-4459-aa46-72faace6bafe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-29T18:46:00.000Z" + }, + "end": { + "$date": "2020-11-29T20:20:43.000Z" + }, + "events": [ + { + "uuid": "9a726242-e94f-43ae-8bc7-5722cb7cd508", + "start": { + "$date": "2020-11-29T18:46:00.000Z" + }, + "end": { + "$date": "2020-11-29T20:20:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5fc3b5e7-8722-4dab-9846-4a96f90216ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T19:40:27.000Z" + }, + "end": { + "$date": "2020-11-29T20:03:08.000Z" + }, + "events": [ + { + "uuid": "e473aea0-4d70-4847-a2ed-f5d512468ae6", + "start": { + "$date": "2020-11-29T19:40:27.000Z" + }, + "end": { + "$date": "2020-11-29T20:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dbf66fa2-2539-45e9-890e-ac2b7187f9c0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-29T19:40:12.000Z" + }, + "end": { + "$date": "2020-11-29T22:09:39.000Z" + }, + "events": [ + { + "uuid": "fe165a60-9bcd-473d-a754-9867e70e61f8", + "start": { + "$date": "2020-11-29T19:40:12.000Z" + }, + "end": { + "$date": "2020-11-29T22:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb05006c-207a-42f4-842a-e401fdca00ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T20:06:43.000Z" + }, + "end": { + "$date": "2020-11-29T20:30:20.000Z" + }, + "events": [ + { + "uuid": "eedc9f80-c18c-40f9-b613-ee1f94a1589d", + "start": { + "$date": "2020-11-29T20:06:43.000Z" + }, + "end": { + "$date": "2020-11-29T20:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6119f13f-4f74-499f-91b2-8d744903377d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T20:33:49.000Z" + }, + "end": { + "$date": "2020-11-29T20:51:30.000Z" + }, + "events": [ + { + "uuid": "b8ab7108-169d-486f-aa34-db6cddafe5b7", + "start": { + "$date": "2020-11-29T20:33:49.000Z" + }, + "end": { + "$date": "2020-11-29T20:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7118e5f4-2e0a-48d6-928d-fe23623d0c30", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-29T20:54:50.000Z" + }, + "end": { + "$date": "2020-11-29T21:19:36.000Z" + }, + "events": [ + { + "uuid": "2bdf76f4-ea53-4db7-92df-d7800ad54960", + "start": { + "$date": "2020-11-29T20:54:50.000Z" + }, + "end": { + "$date": "2020-11-29T21:19:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "32820e40-ff52-43fb-81c9-f84a554bbe57", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-29T22:54:03.000Z" + }, + "end": { + "$date": "2020-11-30T00:17:41.000Z" + }, + "events": [ + { + "uuid": "0cc02be6-3fdb-431f-b9d2-633a9b7a9f22", + "start": { + "$date": "2020-11-29T22:54:03.000Z" + }, + "end": { + "$date": "2020-11-30T00:17:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c2c6a482-1769-4ac2-acf1-f39956a803d0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-29T23:34:33.000Z" + }, + "end": { + "$date": "2020-11-30T00:16:32.000Z" + }, + "events": [ + { + "uuid": "62d873c6-f386-49ad-8040-2da962fb0ba5", + "start": { + "$date": "2020-11-29T23:34:33.000Z" + }, + "end": { + "$date": "2020-11-30T00:16:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "edad8491-5ea6-4895-81bb-2a02f5847131", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-29T23:44:24.000Z" + }, + "end": { + "$date": "2020-11-30T01:39:59.000Z" + }, + "events": [ + { + "uuid": "4a54f836-6d6d-476f-827b-fab611438c27", + "start": { + "$date": "2020-11-29T23:44:24.000Z" + }, + "end": { + "$date": "2020-11-30T01:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "49002adf-bdb3-488d-930a-5577084edf4c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-30T00:59:35.000Z" + }, + "end": { + "$date": "2020-11-30T06:29:58.000Z" + }, + "events": [ + { + "uuid": "6e87ad7a-e451-4b32-b17d-f49d93be7a26", + "start": { + "$date": "2020-11-30T00:59:35.000Z" + }, + "end": { + "$date": "2020-11-30T03:38:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b79a5bd-394a-4a87-9df0-970cecff0bd5", + "start": { + "$date": "2020-11-30T03:38:35.000Z" + }, + "end": { + "$date": "2020-11-30T03:57:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d22b7a66-a35f-4c61-a4ba-e27975a756ad", + "start": { + "$date": "2020-11-30T03:57:35.000Z" + }, + "end": { + "$date": "2020-11-30T06:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "803cf788-feb6-4359-9d6e-553176fe54d9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-30T01:44:04.000Z" + }, + "end": { + "$date": "2020-11-30T02:08:51.000Z" + }, + "events": [ + { + "uuid": "04bef154-430e-477d-b717-76e140162f47", + "start": { + "$date": "2020-11-30T01:44:04.000Z" + }, + "end": { + "$date": "2020-11-30T02:08:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69c2bfb6-4c7b-4c65-be87-9e9ee18d9180", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-30T02:55:31.000Z" + }, + "end": { + "$date": "2020-11-30T03:27:24.000Z" + }, + "events": [ + { + "uuid": "b58ddc15-f582-4a77-b2c8-e7d5ca22407c", + "start": { + "$date": "2020-11-30T02:55:31.000Z" + }, + "end": { + "$date": "2020-11-30T03:27:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f38f0177-d8be-45ae-9707-a98995db2b10", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-30T03:00:52.000Z" + }, + "end": { + "$date": "2020-11-30T05:34:10.000Z" + }, + "events": [ + { + "uuid": "2d9efdd8-b3d8-475d-acd6-9aeda8d27895", + "start": { + "$date": "2020-11-30T03:00:52.000Z" + }, + "end": { + "$date": "2020-11-30T05:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "33880d84-13f8-4cda-b371-d53cc5de7534", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-30T03:04:34.000Z" + }, + "end": { + "$date": "2020-11-30T04:54:44.000Z" + }, + "events": [ + { + "uuid": "aabd1bff-91f4-4f46-b082-af7fa3dd0ad3", + "start": { + "$date": "2020-11-30T03:04:34.000Z" + }, + "end": { + "$date": "2020-11-30T04:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8cb4771a-1c06-41b8-b5a3-b5810984d45a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-30T03:39:18.000Z" + }, + "end": { + "$date": "2020-11-30T03:40:34.000Z" + }, + "events": [ + { + "uuid": "bd5cf472-2d17-49b1-bcb6-39716a8eaec6", + "start": { + "$date": "2020-11-30T03:39:18.000Z" + }, + "end": { + "$date": "2020-11-30T03:40:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6c99565c-b7f7-493c-8201-3cfc072b07f4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-30T03:42:45.000Z" + }, + "end": { + "$date": "2020-11-30T05:39:20.000Z" + }, + "events": [ + { + "uuid": "ae7fbbab-4036-4821-aee3-bf296907a7fd", + "start": { + "$date": "2020-11-30T03:42:45.000Z" + }, + "end": { + "$date": "2020-11-30T05:39:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9f3c89be-8b61-4728-89a6-468821b9245b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-30T04:21:01.000Z" + }, + "end": { + "$date": "2020-11-30T06:35:48.000Z" + }, + "events": [ + { + "uuid": "696595ec-b592-4fef-b848-cb7066b54a6a", + "start": { + "$date": "2020-11-30T04:21:01.000Z" + }, + "end": { + "$date": "2020-11-30T06:35:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ef746d57-9b9e-4f8c-aec2-b90c9bd89860", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-30T04:42:14.000Z" + }, + "end": { + "$date": "2020-11-30T05:37:58.000Z" + }, + "events": [ + { + "uuid": "9f2ca1de-fb26-47f8-97ea-307f24e3de07", + "start": { + "$date": "2020-11-30T04:42:14.000Z" + }, + "end": { + "$date": "2020-11-30T05:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "ca141fa1-eca5-4cde-abfd-3e319c169e11", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-30T04:53:46.000Z" + }, + "end": { + "$date": "2020-11-30T07:57:09.000Z" + }, + "events": [ + { + "uuid": "9b87f37f-595e-48d2-be1d-4757c32f2055", + "start": { + "$date": "2020-11-30T04:53:46.000Z" + }, + "end": { + "$date": "2020-11-30T07:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e17bf933-e5ab-4d13-b14f-94076b78812d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-30T04:54:53.000Z" + }, + "end": { + "$date": "2020-11-30T05:16:15.000Z" + }, + "events": [ + { + "uuid": "222f8296-d866-45ac-aa05-249e0d69ce75", + "start": { + "$date": "2020-11-30T04:54:53.000Z" + }, + "end": { + "$date": "2020-11-30T05:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "66a44ae9-33f0-4bfb-add1-648b354d76da", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-30T05:14:10.000Z" + }, + "end": { + "$date": "2020-11-30T05:39:30.000Z" + }, + "events": [ + { + "uuid": "913f4623-acdb-423e-89af-899acf7facd0", + "start": { + "$date": "2020-11-30T05:14:10.000Z" + }, + "end": { + "$date": "2020-11-30T05:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2b9a10c2-048b-423c-b87c-d622af208244", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-30T05:39:29.000Z" + }, + "end": { + "$date": "2020-11-30T05:40:33.000Z" + }, + "events": [ + { + "uuid": "7b387a3e-8eaf-4e20-9beb-b73d4f32567b", + "start": { + "$date": "2020-11-30T05:39:29.000Z" + }, + "end": { + "$date": "2020-11-30T05:40:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6057c550-d3bd-4e74-903c-c04c4fb6943e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-11-30T05:40:20.000Z" + }, + "end": { + "$date": "2020-11-30T06:51:39.000Z" + }, + "events": [ + { + "uuid": "e1d84b5d-6809-4e24-987a-78fc429e4ae5", + "start": { + "$date": "2020-11-30T05:40:20.000Z" + }, + "end": { + "$date": "2020-11-30T06:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e6e6b9c8-2cb4-4bbc-a632-bfdc41456c8b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-11-30T05:41:04.000Z" + }, + "end": { + "$date": "2020-11-30T07:05:50.000Z" + }, + "events": [ + { + "uuid": "12238fc4-e20f-486c-81fe-64f667bb8bfc", + "start": { + "$date": "2020-11-30T05:41:04.000Z" + }, + "end": { + "$date": "2020-11-30T07:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0dd4b48a-73a8-4172-a006-408ab3bc665c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-11-30T05:41:49.000Z" + }, + "end": { + "$date": "2020-11-30T08:38:12.000Z" + }, + "events": [ + { + "uuid": "b7cdca53-9ee5-424b-8a1c-24bca0cfa18e", + "start": { + "$date": "2020-11-30T05:41:49.000Z" + }, + "end": { + "$date": "2020-11-30T07:01:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2c3e3c0-ddcf-4e62-8b7a-fb064fffecff", + "start": { + "$date": "2020-11-30T07:01:49.000Z" + }, + "end": { + "$date": "2020-11-30T07:11:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2210c6e3-1b8d-44fc-b40c-d8e7a752eee4", + "start": { + "$date": "2020-11-30T07:11:49.000Z" + }, + "end": { + "$date": "2020-11-30T07:13:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0eaacbd2-9236-4a25-b9bd-7f39bb5effd1", + "start": { + "$date": "2020-11-30T07:13:49.000Z" + }, + "end": { + "$date": "2020-11-30T07:27:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8388ddd9-9cf9-4be2-9c01-862ba9d2bce9", + "start": { + "$date": "2020-11-30T07:27:49.000Z" + }, + "end": { + "$date": "2020-11-30T07:37:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82221a89-5b02-4d5d-a523-8d25fd3c258c", + "start": { + "$date": "2020-11-30T07:37:49.000Z" + }, + "end": { + "$date": "2020-11-30T07:47:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73f5b7ee-2563-447f-8189-2dbd47871fb6", + "start": { + "$date": "2020-11-30T07:47:49.000Z" + }, + "end": { + "$date": "2020-11-30T08:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6e95168a-f106-434d-aea1-13c0a56cb188", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-11-30T05:41:51.000Z" + }, + "end": { + "$date": "2020-11-30T06:51:39.000Z" + }, + "events": [ + { + "uuid": "fc01efb3-5ead-424d-8530-56f426f10599", + "start": { + "$date": "2020-11-30T05:41:51.000Z" + }, + "end": { + "$date": "2020-11-30T06:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7aa2daab-c4a6-4ad8-b0d9-38eb0f48c5d7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-30T05:42:03.000Z" + }, + "end": { + "$date": "2020-11-30T06:50:16.000Z" + }, + "events": [ + { + "uuid": "f13d61e5-f357-45e7-a380-12cb871e439c", + "start": { + "$date": "2020-11-30T05:42:03.000Z" + }, + "end": { + "$date": "2020-11-30T06:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5bb2210-17d1-4b11-a6c3-eafe646bd7a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-30T05:43:38.000Z" + }, + "end": { + "$date": "2020-11-30T06:48:52.000Z" + }, + "events": [ + { + "uuid": "77ae3a8f-2d07-4d6e-9d87-00b6ce3095d3", + "start": { + "$date": "2020-11-30T05:43:38.000Z" + }, + "end": { + "$date": "2020-11-30T06:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db5552a4-65cd-4db2-bb85-a4eb856dd8a7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-30T06:01:39.000Z" + }, + "end": { + "$date": "2020-11-30T06:26:21.000Z" + }, + "events": [ + { + "uuid": "d0b84c5a-9cc7-4036-aa44-ad7aa28ea59b", + "start": { + "$date": "2020-11-30T06:01:39.000Z" + }, + "end": { + "$date": "2020-11-30T06:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a14ead40-61ee-44dc-93b4-ce808f09d066", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-11-30T06:30:25.000Z" + }, + "end": { + "$date": "2020-11-30T06:47:02.000Z" + }, + "events": [ + { + "uuid": "4dac9396-5c29-4b70-bc87-cb85c756eccb", + "start": { + "$date": "2020-11-30T06:30:25.000Z" + }, + "end": { + "$date": "2020-11-30T06:47:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8e384487-cbee-4c9e-9759-d413c1410303", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-11-30T06:30:39.000Z" + }, + "end": { + "$date": "2020-11-30T07:16:45.000Z" + }, + "events": [ + { + "uuid": "df902184-ebae-47f4-9cca-75d3df31f61d", + "start": { + "$date": "2020-11-30T06:30:39.000Z" + }, + "end": { + "$date": "2020-11-30T07:16:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "131ccb42-9973-4bd8-bb71-a44bd02a887f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-11-30T06:41:02.000Z" + }, + "end": { + "$date": "2020-11-30T07:15:20.000Z" + }, + "events": [ + { + "uuid": "259b9b8f-7032-4088-8460-2fbc14f76a87", + "start": { + "$date": "2020-11-30T06:41:02.000Z" + }, + "end": { + "$date": "2020-11-30T07:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "9221018c-05b5-4439-9553-dd6f2873a627", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-11-30T08:39:49.000Z" + }, + "end": { + "$date": "2020-11-30T11:30:07.000Z" + }, + "events": [ + { + "uuid": "55b26725-0c99-462b-b2eb-77ea48bf7ccb", + "start": { + "$date": "2020-11-30T08:39:49.000Z" + }, + "end": { + "$date": "2020-11-30T11:30:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ebdea884-cc36-4da8-8e0a-b48817779103", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-30T17:55:17.000Z" + }, + "end": { + "$date": "2020-11-30T18:18:07.000Z" + }, + "events": [ + { + "uuid": "101a14dd-303f-44eb-9646-a456c407ce5c", + "start": { + "$date": "2020-11-30T17:55:17.000Z" + }, + "end": { + "$date": "2020-11-30T18:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "799bc452-1e10-45fa-a87b-65ebae2dd934", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-30T20:04:50.000Z" + }, + "end": { + "$date": "2020-11-30T20:24:13.000Z" + }, + "events": [ + { + "uuid": "0aab0ecf-e40e-47e5-a77c-71b8851b22ad", + "start": { + "$date": "2020-11-30T20:04:50.000Z" + }, + "end": { + "$date": "2020-11-30T20:24:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "01fbc710-dd2a-4527-997e-ee5302f96a9c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-11-30T21:02:44.000Z" + }, + "end": { + "$date": "2020-11-30T22:05:15.000Z" + }, + "events": [ + { + "uuid": "b865a666-7049-46a3-9b53-662210d168c1", + "start": { + "$date": "2020-11-30T21:02:44.000Z" + }, + "end": { + "$date": "2020-11-30T22:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "773938af-0778-4de0-8d57-bb0a586a6fd4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-30T22:01:49.000Z" + }, + "end": { + "$date": "2020-11-30T22:10:15.000Z" + }, + "events": [ + { + "uuid": "7b5e237b-909b-4067-9893-949f7b5a181c", + "start": { + "$date": "2020-11-30T22:01:49.000Z" + }, + "end": { + "$date": "2020-11-30T22:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "63d5581b-0fae-4296-a2ea-e87535a8a152", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-11-30T22:10:50.000Z" + }, + "end": { + "$date": "2020-11-30T22:38:06.000Z" + }, + "events": [ + { + "uuid": "218d2fe0-6770-405b-8a2e-27496bc16c59", + "start": { + "$date": "2020-11-30T22:10:50.000Z" + }, + "end": { + "$date": "2020-11-30T22:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bfdbfd16-8e9d-4b62-b2f3-ba85653d1725", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-30T23:55:41.000Z" + }, + "end": { + "$date": "2020-11-30T23:57:48.000Z" + }, + "events": [ + { + "uuid": "4e3b8fc9-da86-41d2-ab26-c21e0583f117", + "start": { + "$date": "2020-11-30T23:55:41.000Z" + }, + "end": { + "$date": "2020-11-30T23:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "284e5ac9-5877-463f-87c3-33521faa4c51", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-11-30T23:58:22.000Z" + }, + "end": { + "$date": "2020-12-01T00:25:03.000Z" + }, + "events": [ + { + "uuid": "61fa9d03-0edb-424f-84e1-9d160f59a00f", + "start": { + "$date": "2020-11-30T23:58:22.000Z" + }, + "end": { + "$date": "2020-12-01T00:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8b2a9d6c-a6fb-4ea6-b691-b5449999ff0d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-01T00:06:57.000Z" + }, + "end": { + "$date": "2020-12-01T12:57:40.000Z" + }, + "events": [ + { + "uuid": "5373e5a2-12b6-42e1-9d5c-fc56ff6e00ae", + "start": { + "$date": "2020-12-01T00:06:57.000Z" + }, + "end": { + "$date": "2020-12-01T01:18:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbd9e206-b9bd-4566-8afe-0bc71b68d814", + "start": { + "$date": "2020-12-01T01:18:57.000Z" + }, + "end": { + "$date": "2020-12-01T01:56:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42e458d0-07fb-472b-8628-4c29e46efcaf", + "start": { + "$date": "2020-12-01T01:56:57.000Z" + }, + "end": { + "$date": "2020-12-01T02:02:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e360aef-7d89-494d-b01e-e8454945f4ec", + "start": { + "$date": "2020-12-01T02:02:57.000Z" + }, + "end": { + "$date": "2020-12-01T02:10:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e0ca11bf-1d8a-4b3e-915d-bfd770f3bb0b", + "start": { + "$date": "2020-12-01T02:10:57.000Z" + }, + "end": { + "$date": "2020-12-01T02:12:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e58498c-9c9f-4eb5-a1ca-5fdd2c33ee5f", + "start": { + "$date": "2020-12-01T02:12:57.000Z" + }, + "end": { + "$date": "2020-12-01T12:57:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "37b54a67-47e1-481f-ae14-2d448aaecc5b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-01T00:54:53.000Z" + }, + "end": { + "$date": "2020-12-01T02:42:38.000Z" + }, + "events": [ + { + "uuid": "645f6b1b-be77-43eb-abac-ae38f42c81f1", + "start": { + "$date": "2020-12-01T00:54:53.000Z" + }, + "end": { + "$date": "2020-12-01T01:13:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cf9b4da0-1763-48b7-8b55-a724544c10a1", + "start": { + "$date": "2020-12-01T01:13:53.000Z" + }, + "end": { + "$date": "2020-12-01T01:18:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c326d044-07a3-46ad-9f7d-93ddcbf2f94c", + "start": { + "$date": "2020-12-01T01:18:53.000Z" + }, + "end": { + "$date": "2020-12-01T02:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b581964-8dfd-498d-810c-d41417418209", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-01T01:57:39.000Z" + }, + "end": { + "$date": "2020-12-01T02:00:25.000Z" + }, + "events": [ + { + "uuid": "3e5ddbc9-b336-405c-a4d8-5ffd0f6c678b", + "start": { + "$date": "2020-12-01T01:57:39.000Z" + }, + "end": { + "$date": "2020-12-01T02:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "00c1d7e1-b037-4bf6-9be4-014ee3f9bae4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-01T01:34:46.000Z" + }, + "end": { + "$date": "2020-12-01T01:37:26.000Z" + }, + "events": [ + { + "uuid": "a2ea2820-82e5-4782-88f8-16803884050c", + "start": { + "$date": "2020-12-01T01:34:46.000Z" + }, + "end": { + "$date": "2020-12-01T01:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae00185c-07d7-4db4-a83e-d66c29a4e146", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-01T01:37:31.000Z" + }, + "end": { + "$date": "2020-12-01T02:07:56.000Z" + }, + "events": [ + { + "uuid": "2e769836-9a62-454f-b854-64bc3d4d707a", + "start": { + "$date": "2020-12-01T01:37:31.000Z" + }, + "end": { + "$date": "2020-12-01T02:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f76ad19c-a592-4f39-a860-cd20e174231d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-01T02:04:54.000Z" + }, + "end": { + "$date": "2020-12-01T02:50:05.000Z" + }, + "events": [ + { + "uuid": "bbc4d0fb-53b8-478a-a04f-56eadacf0a51", + "start": { + "$date": "2020-12-01T02:04:54.000Z" + }, + "end": { + "$date": "2020-12-01T02:50:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "969e1661-06fa-4955-b5ad-1960533320c8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-01T02:13:55.000Z" + }, + "end": { + "$date": "2020-12-01T03:01:47.000Z" + }, + "events": [ + { + "uuid": "d26e1d7e-4c0e-487a-bbb2-f6ae7ead1c20", + "start": { + "$date": "2020-12-01T02:13:55.000Z" + }, + "end": { + "$date": "2020-12-01T03:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "e5de1f44-8eba-4b13-93da-bb8a96af4acf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-01T02:13:59.000Z" + }, + "end": { + "$date": "2020-12-01T03:18:10.000Z" + }, + "events": [ + { + "uuid": "0febdbfc-65d0-45e4-b105-c01af1a43c8e", + "start": { + "$date": "2020-12-01T02:13:59.000Z" + }, + "end": { + "$date": "2020-12-01T03:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "036df565-07f6-44c6-b7b1-4924c0b4585c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-01T02:49:10.000Z" + }, + "end": { + "$date": "2020-12-01T04:16:33.000Z" + }, + "events": [ + { + "uuid": "2ae67d18-3bc9-42c1-8a87-81b23defcde4", + "start": { + "$date": "2020-12-01T02:49:10.000Z" + }, + "end": { + "$date": "2020-12-01T04:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "126adc64-77c6-43ef-a8eb-cf8ef4915ed7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-01T04:02:14.000Z" + }, + "end": { + "$date": "2020-12-01T04:40:37.000Z" + }, + "events": [ + { + "uuid": "a7391dba-c0bd-43cc-93aa-3ea800178152", + "start": { + "$date": "2020-12-01T04:02:14.000Z" + }, + "end": { + "$date": "2020-12-01T04:40:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6a7ab457-b85d-49e4-81d6-87db5b32313e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-01T04:04:35.000Z" + }, + "end": { + "$date": "2020-12-01T04:58:25.000Z" + }, + "events": [ + { + "uuid": "5badbf92-49c8-4509-8ee8-3a2599475604", + "start": { + "$date": "2020-12-01T04:04:35.000Z" + }, + "end": { + "$date": "2020-12-01T04:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82151acb-842b-48bc-b21e-9056e74d7dbb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-01T04:25:26.000Z" + }, + "end": { + "$date": "2020-12-01T04:46:26.000Z" + }, + "events": [ + { + "uuid": "6a993143-fdb8-438d-b055-90687359ffcd", + "start": { + "$date": "2020-12-01T04:25:26.000Z" + }, + "end": { + "$date": "2020-12-01T04:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7e9b354c-8d81-49d6-bf19-bfe1f7d6ab63", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-01T04:39:50.000Z" + }, + "end": { + "$date": "2020-12-01T06:12:51.000Z" + }, + "events": [ + { + "uuid": "48782773-8b27-4ac4-83e2-3f9536f6276c", + "start": { + "$date": "2020-12-01T04:39:50.000Z" + }, + "end": { + "$date": "2020-12-01T06:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fe5240d2-dcf5-4d23-b3fb-d822678e7800", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-01T04:41:32.000Z" + }, + "end": { + "$date": "2020-12-01T05:24:35.000Z" + }, + "events": [ + { + "uuid": "36e51a0f-77f8-4314-a750-06fd6fb756c6", + "start": { + "$date": "2020-12-01T04:41:32.000Z" + }, + "end": { + "$date": "2020-12-01T05:24:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "372711b4-0170-441d-b0a0-5b0ae1e5b3f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-01T04:45:34.000Z" + }, + "end": { + "$date": "2020-12-01T04:48:40.000Z" + }, + "events": [ + { + "uuid": "e26ecace-ff68-4e86-a221-36545f07039e", + "start": { + "$date": "2020-12-01T04:45:34.000Z" + }, + "end": { + "$date": "2020-12-01T04:48:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fd7e821-867b-4f53-96bf-4157fbd64c57", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-01T04:49:17.000Z" + }, + "end": { + "$date": "2020-12-01T05:09:11.000Z" + }, + "events": [ + { + "uuid": "b1e53f30-ae65-4110-8f52-b0557694e04a", + "start": { + "$date": "2020-12-01T04:49:17.000Z" + }, + "end": { + "$date": "2020-12-01T05:09:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "279bae7c-eebf-406a-a37f-eb9e0e6a0d7c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-01T04:47:35.000Z" + }, + "end": { + "$date": "2020-12-01T05:04:15.000Z" + }, + "events": [ + { + "uuid": "22d7bdaa-e835-48ca-bbea-43463e4030a5", + "start": { + "$date": "2020-12-01T04:47:35.000Z" + }, + "end": { + "$date": "2020-12-01T05:04:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a2ab1002-2610-4d4d-82bd-c7cd500cf41b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-01T04:48:34.000Z" + }, + "end": { + "$date": "2020-12-01T05:58:12.000Z" + }, + "events": [ + { + "uuid": "95face0e-0a4a-4533-8218-985c94c4643b", + "start": { + "$date": "2020-12-01T04:48:34.000Z" + }, + "end": { + "$date": "2020-12-01T05:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "38ba84ae-69d8-458c-a5dd-7191b12c9e07", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-01T05:04:32.000Z" + }, + "end": { + "$date": "2020-12-01T05:58:37.000Z" + }, + "events": [ + { + "uuid": "5d09aeb0-61eb-40c7-bcdb-232f1dd9bbaf", + "start": { + "$date": "2020-12-01T05:04:32.000Z" + }, + "end": { + "$date": "2020-12-01T05:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "123525ba-46fa-4fe7-888a-ea030333e3eb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-01T05:18:23.000Z" + }, + "end": { + "$date": "2020-12-01T05:36:19.000Z" + }, + "events": [ + { + "uuid": "ec1eae6d-5d8b-49aa-bf39-d73403219944", + "start": { + "$date": "2020-12-01T05:18:23.000Z" + }, + "end": { + "$date": "2020-12-01T05:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "3295b729-9b05-42cb-b635-6aa97964d4ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-01T05:29:31.000Z" + }, + "end": { + "$date": "2020-12-01T05:40:21.000Z" + }, + "events": [ + { + "uuid": "d4bacf7f-957a-4b52-a2ea-3aa192742382", + "start": { + "$date": "2020-12-01T05:29:31.000Z" + }, + "end": { + "$date": "2020-12-01T05:40:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "659186fc-71bc-47e1-973f-233df745cb04", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-01T05:48:12.000Z" + }, + "end": { + "$date": "2020-12-01T05:58:27.000Z" + }, + "events": [ + { + "uuid": "611b197e-a9d0-4cdf-be03-9db9363b44b0", + "start": { + "$date": "2020-12-01T05:48:12.000Z" + }, + "end": { + "$date": "2020-12-01T05:58:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "095e6f94-fa3f-48a0-acc1-b8916757505d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-01T06:13:21.000Z" + }, + "end": { + "$date": "2020-12-01T07:17:43.000Z" + }, + "events": [ + { + "uuid": "57fa51aa-a2e0-4768-aca6-92751a59c2f5", + "start": { + "$date": "2020-12-01T06:13:21.000Z" + }, + "end": { + "$date": "2020-12-01T06:15:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa5755b8-9dfc-401a-a9e3-720b9afeb6a5", + "start": { + "$date": "2020-12-01T06:15:21.000Z" + }, + "end": { + "$date": "2020-12-01T06:17:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bbe18903-67d2-4918-a2bd-5be245a4e5ac", + "start": { + "$date": "2020-12-01T06:17:21.000Z" + }, + "end": { + "$date": "2020-12-01T06:19:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "163dbe7c-d58f-4135-b49b-740fdfef3965", + "start": { + "$date": "2020-12-01T06:19:21.000Z" + }, + "end": { + "$date": "2020-12-01T06:28:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd972210-b738-4aec-bdf7-9e6c4ce9a0c6", + "start": { + "$date": "2020-12-01T06:28:21.000Z" + }, + "end": { + "$date": "2020-12-01T07:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "dd9274b7-b96f-4ee9-9d12-ca1355349f62", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-01T06:34:17.000Z" + }, + "end": { + "$date": "2020-12-01T07:02:53.000Z" + }, + "events": [ + { + "uuid": "11a8483e-152a-4c24-9a2e-7ee50d45a5d5", + "start": { + "$date": "2020-12-01T06:34:17.000Z" + }, + "end": { + "$date": "2020-12-01T07:02:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "f740f186-8663-4d49-9900-2be1a6909e74", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-01T16:26:45.000Z" + }, + "end": { + "$date": "2020-12-01T16:32:21.000Z" + }, + "events": [ + { + "uuid": "bc9f67ab-f469-42c1-a4aa-bb647017da8b", + "start": { + "$date": "2020-12-01T16:26:45.000Z" + }, + "end": { + "$date": "2020-12-01T16:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "992d9ae1-e391-45d0-9948-dfee55712cf8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-01T20:37:09.000Z" + }, + "end": { + "$date": "2020-12-01T22:23:03.000Z" + }, + "events": [ + { + "uuid": "06d6638c-46c4-4ae5-ac62-a985b0e05605", + "start": { + "$date": "2020-12-01T20:37:09.000Z" + }, + "end": { + "$date": "2020-12-01T22:23:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4201d4f2-6d50-46c7-829c-f827949f1388", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-01T22:16:42.000Z" + }, + "end": { + "$date": "2020-12-01T22:16:57.000Z" + }, + "events": [ + { + "uuid": "09881bb1-b464-4368-87b2-6691330300d9", + "start": { + "$date": "2020-12-01T22:16:42.000Z" + }, + "end": { + "$date": "2020-12-01T22:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4a4bc58f-a232-4e21-9ffa-1f3a831d4453", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-01T22:41:50.000Z" + }, + "end": { + "$date": "2020-12-01T23:38:57.000Z" + }, + "events": [ + { + "uuid": "e2713fa4-3e68-43fa-a8f9-cbd3d3fabc76", + "start": { + "$date": "2020-12-01T22:41:50.000Z" + }, + "end": { + "$date": "2020-12-01T23:38:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "eb3c7588-3171-48c8-8e55-22d40e46d561", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-01T23:53:56.000Z" + }, + "end": { + "$date": "2020-12-01T23:59:02.000Z" + }, + "events": [ + { + "uuid": "20b96466-1d2f-47ee-8852-a015ff229b10", + "start": { + "$date": "2020-12-01T23:53:56.000Z" + }, + "end": { + "$date": "2020-12-01T23:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "790d02e6-624e-4f86-9789-76f6d99af3f0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T00:10:38.000Z" + }, + "end": { + "$date": "2020-12-02T01:23:47.000Z" + }, + "events": [ + { + "uuid": "c4784501-ec83-46a8-999a-e910adbc0fef", + "start": { + "$date": "2020-12-02T00:10:38.000Z" + }, + "end": { + "$date": "2020-12-02T01:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ca9d3a05-850e-4d6a-824c-706decc97133", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-02T00:28:44.000Z" + }, + "end": { + "$date": "2020-12-02T00:58:06.000Z" + }, + "events": [ + { + "uuid": "65d9b848-776e-4a03-b990-39f98fe5e7c4", + "start": { + "$date": "2020-12-02T00:28:44.000Z" + }, + "end": { + "$date": "2020-12-02T00:58:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f83b5cbb-e021-4b57-bb79-6f2d0e155392", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-02T00:55:32.000Z" + }, + "end": { + "$date": "2020-12-02T01:10:09.000Z" + }, + "events": [ + { + "uuid": "82038530-ab7c-4709-9589-949dd178e7fb", + "start": { + "$date": "2020-12-02T00:55:32.000Z" + }, + "end": { + "$date": "2020-12-02T01:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "226c7c60-af1d-456c-a214-392464dbdc0c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-02T01:02:59.000Z" + }, + "end": { + "$date": "2020-12-02T03:42:50.000Z" + }, + "events": [ + { + "uuid": "f2aedba9-c7c6-4219-8596-48bb977c32e1", + "start": { + "$date": "2020-12-02T01:02:59.000Z" + }, + "end": { + "$date": "2020-12-02T03:42:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "104fefd3-3e04-4b80-9f79-366e2a02c632", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T01:31:58.000Z" + }, + "end": { + "$date": "2020-12-02T01:32:03.000Z" + }, + "events": [ + { + "uuid": "71d45607-2b66-464c-a3e6-0b7afe02e3e2", + "start": { + "$date": "2020-12-02T01:31:58.000Z" + }, + "end": { + "$date": "2020-12-02T01:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6e451537-7a8d-456c-bd09-c4f517bc4406", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-02T02:06:58.000Z" + }, + "end": { + "$date": "2020-12-02T03:01:22.000Z" + }, + "events": [ + { + "uuid": "edb13350-c083-4aed-b919-c14e46c606d0", + "start": { + "$date": "2020-12-02T02:06:58.000Z" + }, + "end": { + "$date": "2020-12-02T03:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "101a6f7b-dbb8-4b34-9126-5c146b8653d9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T02:25:59.000Z" + }, + "end": { + "$date": "2020-12-02T02:34:08.000Z" + }, + "events": [ + { + "uuid": "df0771e2-2dfc-40f4-ad38-2c9c65306287", + "start": { + "$date": "2020-12-02T02:25:59.000Z" + }, + "end": { + "$date": "2020-12-02T02:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "19c37f06-e128-44af-b6d2-1085db2341cf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-02T02:26:42.000Z" + }, + "end": { + "$date": "2020-12-02T03:28:03.000Z" + }, + "events": [ + { + "uuid": "2afb72f1-494a-4c50-a812-4a0d3ae4721f", + "start": { + "$date": "2020-12-02T02:26:42.000Z" + }, + "end": { + "$date": "2020-12-02T03:28:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b5fd783b-a357-42c7-ac3c-6ab4497c3ea4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T02:26:58.000Z" + }, + "end": { + "$date": "2020-12-02T04:09:09.000Z" + }, + "events": [ + { + "uuid": "03c7a6ba-0b01-4ab7-9099-b187dc6b4d69", + "start": { + "$date": "2020-12-02T02:26:58.000Z" + }, + "end": { + "$date": "2020-12-02T04:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "4e081146-a67d-489e-ae1c-361341a028ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-02T03:01:15.000Z" + }, + "end": { + "$date": "2020-12-02T05:03:40.000Z" + }, + "events": [ + { + "uuid": "93abf751-0838-473b-9fba-e05012db0af0", + "start": { + "$date": "2020-12-02T03:01:15.000Z" + }, + "end": { + "$date": "2020-12-02T05:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aec1eff0-bb23-4b02-b3de-1b3608bc5756", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-02T03:36:09.000Z" + }, + "end": { + "$date": "2020-12-02T04:08:38.000Z" + }, + "events": [ + { + "uuid": "e44c6f2a-b943-4e3a-8714-29cfc0fb47be", + "start": { + "$date": "2020-12-02T03:36:09.000Z" + }, + "end": { + "$date": "2020-12-02T04:08:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11b3f030-6af5-4689-8f64-3fa3d48e4dac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T03:36:11.000Z" + }, + "end": { + "$date": "2020-12-02T04:08:37.000Z" + }, + "events": [ + { + "uuid": "8453827d-d278-4802-9637-9f57e2b246ea", + "start": { + "$date": "2020-12-02T03:36:11.000Z" + }, + "end": { + "$date": "2020-12-02T04:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92c877a1-4d1c-401e-9ea2-9a0a514e4201", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-02T03:43:43.000Z" + }, + "end": { + "$date": "2020-12-02T03:54:23.000Z" + }, + "events": [ + { + "uuid": "65b0e844-e221-443b-9ce7-a16fcc02085a", + "start": { + "$date": "2020-12-02T03:43:43.000Z" + }, + "end": { + "$date": "2020-12-02T03:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "05a1c14d-635c-496d-86a0-1625b7edbd82", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-02T03:50:25.000Z" + }, + "end": { + "$date": "2020-12-02T04:41:08.000Z" + }, + "events": [ + { + "uuid": "70f2aa19-2efa-480c-aa41-9fbd98dedce4", + "start": { + "$date": "2020-12-02T03:50:25.000Z" + }, + "end": { + "$date": "2020-12-02T04:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "732f8caa-6b88-438b-a2a1-53f0b91365ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T03:51:54.000Z" + }, + "end": { + "$date": "2020-12-02T06:03:39.000Z" + }, + "events": [ + { + "uuid": "7d5c77e2-0da9-420c-a464-0e14669a3847", + "start": { + "$date": "2020-12-02T03:51:54.000Z" + }, + "end": { + "$date": "2020-12-02T06:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "15cd9e4c-f410-4727-87e9-2044e6a9fad6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-02T03:59:21.000Z" + }, + "end": { + "$date": "2020-12-02T04:27:44.000Z" + }, + "events": [ + { + "uuid": "f04a588d-9015-4996-9763-b14c70849989", + "start": { + "$date": "2020-12-02T03:59:21.000Z" + }, + "end": { + "$date": "2020-12-02T04:27:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "dfdac04e-32e8-4d0b-9ecb-fb9a4370caaf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-02T04:07:53.000Z" + }, + "end": { + "$date": "2020-12-02T04:25:59.000Z" + }, + "events": [ + { + "uuid": "f8dabf47-a88c-4381-abb2-b9bafb395b1d", + "start": { + "$date": "2020-12-02T04:07:53.000Z" + }, + "end": { + "$date": "2020-12-02T04:25:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebc208b2-d49e-4e64-80a1-2d753c929da1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-02T04:08:58.000Z" + }, + "end": { + "$date": "2020-12-02T06:12:21.000Z" + }, + "events": [ + { + "uuid": "f05e6ca8-5536-46ce-afd6-862390961751", + "start": { + "$date": "2020-12-02T04:08:58.000Z" + }, + "end": { + "$date": "2020-12-02T06:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8195ced8-fb65-4615-ba3a-77fdb38e0b21", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T04:10:46.000Z" + }, + "end": { + "$date": "2020-12-02T04:15:01.000Z" + }, + "events": [ + { + "uuid": "5c95a59e-c6dd-47de-ad1e-186b9136760e", + "start": { + "$date": "2020-12-02T04:10:46.000Z" + }, + "end": { + "$date": "2020-12-02T04:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10a2257a-6387-442d-8982-16d2a69e48f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T04:10:47.000Z" + }, + "end": { + "$date": "2020-12-02T04:15:01.000Z" + }, + "events": [ + { + "uuid": "cffc0990-140b-411d-a3a3-15f45ee36783", + "start": { + "$date": "2020-12-02T04:10:47.000Z" + }, + "end": { + "$date": "2020-12-02T04:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70409c17-2efd-41da-8a8b-8d9b75e2d2d9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T04:15:44.000Z" + }, + "end": { + "$date": "2020-12-02T04:22:12.000Z" + }, + "events": [ + { + "uuid": "51dfcc15-9b8c-4446-b75c-dd3b79edcde4", + "start": { + "$date": "2020-12-02T04:15:44.000Z" + }, + "end": { + "$date": "2020-12-02T04:22:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de9f306b-25df-4f18-98ef-7ca133d298b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T04:15:46.000Z" + }, + "end": { + "$date": "2020-12-02T04:22:12.000Z" + }, + "events": [ + { + "uuid": "cb2ab7b4-829a-441e-8b1e-8bcb53379523", + "start": { + "$date": "2020-12-02T04:15:46.000Z" + }, + "end": { + "$date": "2020-12-02T04:22:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9687e100-b1e7-45ae-9042-c1af11db792c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T04:22:12.000Z" + }, + "end": { + "$date": "2020-12-02T04:24:23.000Z" + }, + "events": [ + { + "uuid": "bfdd9bee-282f-45cc-bcf3-f54f9600341a", + "start": { + "$date": "2020-12-02T04:22:12.000Z" + }, + "end": { + "$date": "2020-12-02T04:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8fcb880-f3d3-4ac3-935d-fe76d88aa9cb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T04:22:13.000Z" + }, + "end": { + "$date": "2020-12-02T04:24:23.000Z" + }, + "events": [ + { + "uuid": "2a14c746-19ec-4ccc-800f-11b1b9f89f91", + "start": { + "$date": "2020-12-02T04:22:13.000Z" + }, + "end": { + "$date": "2020-12-02T04:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cfaf430-d53e-41b3-9c16-99088dc24d73", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T04:30:33.000Z" + }, + "end": { + "$date": "2020-12-02T05:03:13.000Z" + }, + "events": [ + { + "uuid": "cbbee749-8979-480e-a6ab-7df3091fb306", + "start": { + "$date": "2020-12-02T04:30:33.000Z" + }, + "end": { + "$date": "2020-12-02T05:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4edd8d1b-b880-4aa0-afd0-bcca3e0e107b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T05:03:20.000Z" + }, + "end": { + "$date": "2020-12-02T05:03:20.000Z" + }, + "events": [ + { + "uuid": "f6ab3d28-2ab8-448e-8281-c57cc0cc013f", + "start": { + "$date": "2020-12-02T05:03:20.000Z" + }, + "end": { + "$date": "2020-12-02T05:03:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6dd7c768-32d0-44cf-bcc7-41ec30835ca0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-02T04:29:58.000Z" + }, + "end": { + "$date": "2020-12-02T06:56:13.000Z" + }, + "events": [ + { + "uuid": "7049670d-65ac-49da-802b-bafb376a444e", + "start": { + "$date": "2020-12-02T04:29:58.000Z" + }, + "end": { + "$date": "2020-12-02T06:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c28c4413-069f-4265-8f0e-74c60b87f6af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-02T04:38:11.000Z" + }, + "end": { + "$date": "2020-12-02T04:56:07.000Z" + }, + "events": [ + { + "uuid": "6c1f218d-d837-4211-9480-9a27bc5c6db2", + "start": { + "$date": "2020-12-02T04:38:11.000Z" + }, + "end": { + "$date": "2020-12-02T04:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1877d76a-931d-4315-b7d3-c0280c0e3b7c", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-12-02T05:00:01.000Z" + }, + "end": { + "$date": "2020-12-02T06:41:15.000Z" + }, + "events": [ + { + "uuid": "39cc371d-6960-4ec9-bcbd-77c1ae6a9e79", + "start": { + "$date": "2020-12-02T05:00:01.000Z" + }, + "end": { + "$date": "2020-12-02T06:41:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29cf6343-b368-4c56-ad07-084f38ccf2e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T05:06:33.000Z" + }, + "end": { + "$date": "2020-12-02T05:41:30.000Z" + }, + "events": [ + { + "uuid": "5744d5e4-7a6f-4f17-8297-347472155911", + "start": { + "$date": "2020-12-02T05:06:33.000Z" + }, + "end": { + "$date": "2020-12-02T05:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51fb8115-f987-4871-b617-baab7bd22d20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T05:06:29.000Z" + }, + "end": { + "$date": "2020-12-02T05:41:29.000Z" + }, + "events": [ + { + "uuid": "706e692c-d52a-44a0-a1ce-d2bfb30ece05", + "start": { + "$date": "2020-12-02T05:06:29.000Z" + }, + "end": { + "$date": "2020-12-02T05:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f762e092-9876-4f2c-be5d-73c3bb957163", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-02T05:06:28.000Z" + }, + "end": { + "$date": "2020-12-02T05:41:30.000Z" + }, + "events": [ + { + "uuid": "d7fcac3c-e3fb-4231-9199-79dcb57dcaf7", + "start": { + "$date": "2020-12-02T05:06:28.000Z" + }, + "end": { + "$date": "2020-12-02T05:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dfef8199-f6d3-4011-9e06-4d01947d7c69", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-02T05:04:15.000Z" + }, + "end": { + "$date": "2020-12-02T06:36:42.000Z" + }, + "events": [ + { + "uuid": "7ac9ef41-3930-4dde-abbc-57ad88e37f3a", + "start": { + "$date": "2020-12-02T05:04:15.000Z" + }, + "end": { + "$date": "2020-12-02T06:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cf1a0534-bfa8-45d6-a036-04847acbd96d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-02T05:32:43.000Z" + }, + "end": { + "$date": "2020-12-02T06:56:45.000Z" + }, + "events": [ + { + "uuid": "d19e8295-7c8c-43fd-bc5b-65d95846b635", + "start": { + "$date": "2020-12-02T05:32:43.000Z" + }, + "end": { + "$date": "2020-12-02T06:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9598ee1-27a8-406e-aaf7-d66a4dca929e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T05:44:50.000Z" + }, + "end": { + "$date": "2020-12-02T06:10:20.000Z" + }, + "events": [ + { + "uuid": "3b680472-89cd-420e-a077-1a8fe7f09492", + "start": { + "$date": "2020-12-02T05:44:50.000Z" + }, + "end": { + "$date": "2020-12-02T06:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37c0593e-ddd7-46fc-a874-fea6b6c6fdfc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-02T05:43:55.000Z" + }, + "end": { + "$date": "2020-12-02T06:10:28.000Z" + }, + "events": [ + { + "uuid": "a1880f9a-3ef6-4884-941b-7a5d22f2c1be", + "start": { + "$date": "2020-12-02T05:43:55.000Z" + }, + "end": { + "$date": "2020-12-02T06:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27ade3a8-ccff-43cf-95ac-ebf89b575d29", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-02T05:45:09.000Z" + }, + "end": { + "$date": "2020-12-02T06:10:20.000Z" + }, + "events": [ + { + "uuid": "5d24f566-6069-4dbd-bc1b-713d7ccf2596", + "start": { + "$date": "2020-12-02T05:45:09.000Z" + }, + "end": { + "$date": "2020-12-02T06:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bfaadb4e-0735-4856-abb7-a3053db085e2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T06:18:06.000Z" + }, + "end": { + "$date": "2020-12-02T06:25:14.000Z" + }, + "events": [ + { + "uuid": "799238b8-4052-4d67-8e1f-7b83a541591d", + "start": { + "$date": "2020-12-02T06:18:06.000Z" + }, + "end": { + "$date": "2020-12-02T06:25:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a8520fb6-11ea-4470-910c-13d758a68ef1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T06:26:42.000Z" + }, + "end": { + "$date": "2020-12-02T06:29:39.000Z" + }, + "events": [ + { + "uuid": "69d6dfa3-973b-455c-8b38-8443c7f26c24", + "start": { + "$date": "2020-12-02T06:26:42.000Z" + }, + "end": { + "$date": "2020-12-02T06:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e61f7f7d-c05b-4ce6-8479-1611e8b0ccf5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T06:31:18.000Z" + }, + "end": { + "$date": "2020-12-02T06:33:42.000Z" + }, + "events": [ + { + "uuid": "3c96303e-618b-4d5f-8669-2a6387360ac1", + "start": { + "$date": "2020-12-02T06:31:18.000Z" + }, + "end": { + "$date": "2020-12-02T06:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fb6de590-c9fa-4949-9cda-268300f1ae3b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T06:37:28.000Z" + }, + "end": { + "$date": "2020-12-02T07:24:07.000Z" + }, + "events": [ + { + "uuid": "d3140217-7c9f-4a9c-90f5-e15e95918cdb", + "start": { + "$date": "2020-12-02T06:37:28.000Z" + }, + "end": { + "$date": "2020-12-02T07:24:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4aa2776c-dfa7-4388-9f7f-66d796f2aedf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-02T07:26:13.000Z" + }, + "end": { + "$date": "2020-12-02T07:31:38.000Z" + }, + "events": [ + { + "uuid": "d6a0feab-04a5-4d69-8729-1ac369b74ea6", + "start": { + "$date": "2020-12-02T07:26:13.000Z" + }, + "end": { + "$date": "2020-12-02T07:31:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c163c008-1b53-42ee-a952-e44d1c5b6d40", + "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", + "start": { + "$date": "2020-12-02T09:54:22.000Z" + }, + "end": { + "$date": "2020-12-02T09:54:44.000Z" + }, + "events": [ + { + "uuid": "43c59808-ed1a-4205-98c3-c8fbd266dc38", + "start": { + "$date": "2020-12-02T09:54:22.000Z" + }, + "end": { + "$date": "2020-12-02T09:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d8fa4a28-268f-46c0-a986-d3fccec2993f", + "uuid": "25a1d3ec-6c18-42bc-9480-3a4e9d20e672", + "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", + "start": { + "$date": "2020-12-02T10:06:23.000Z" + }, + "end": { + "$date": "2020-12-02T10:08:14.000Z" + }, + "events": [ + { + "uuid": "70075d18-6bdc-4ed0-b61e-39a099af247d", + "start": { + "$date": "2020-12-02T10:06:23.000Z" + }, + "end": { + "$date": "2020-12-02T10:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5bf52c34-f83b-4036-83e4-7533ed3531a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-02T17:43:29.000Z" + }, + "end": { + "$date": "2020-12-02T18:28:22.000Z" + }, + "events": [ + { + "uuid": "1288652e-9c64-4add-88be-d0fe41fb4493", + "start": { + "$date": "2020-12-02T17:43:29.000Z" + }, + "end": { + "$date": "2020-12-02T18:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a80d9cc-2fe8-4412-b75e-a8bdb8b0d876", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-02T17:59:29.000Z" + }, + "end": { + "$date": "2020-12-02T20:11:03.000Z" + }, + "events": [ + { + "uuid": "80d55074-9766-47b2-98aa-2f19ad2e5bcc", + "start": { + "$date": "2020-12-02T17:59:29.000Z" + }, + "end": { + "$date": "2020-12-02T20:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de106362-3f8b-423b-97db-73d1b46e75da", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-02T21:03:32.000Z" + }, + "end": { + "$date": "2020-12-02T21:33:25.000Z" + }, + "events": [ + { + "uuid": "0a58fb89-0d9d-4cdb-af04-c1192a7ed3d2", + "start": { + "$date": "2020-12-02T21:03:32.000Z" + }, + "end": { + "$date": "2020-12-02T21:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "31b2997a-2d7b-47df-8de1-b13faebbba6f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-02T21:24:12.000Z" + }, + "end": { + "$date": "2020-12-03T00:57:54.000Z" + }, + "events": [ + { + "uuid": "996f191c-15a0-401c-a8eb-37869e240168", + "start": { + "$date": "2020-12-02T21:24:12.000Z" + }, + "end": { + "$date": "2020-12-02T22:52:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4595f573-9546-4d98-a820-c7ffa59aded8", + "start": { + "$date": "2020-12-02T22:52:12.000Z" + }, + "end": { + "$date": "2020-12-02T23:04:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd94c7d9-6d71-486b-9a39-43a74c663e2e", + "start": { + "$date": "2020-12-02T23:04:12.000Z" + }, + "end": { + "$date": "2020-12-02T23:36:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7668cb97-3f94-4529-aaa6-843f31961dce", + "start": { + "$date": "2020-12-02T23:36:12.000Z" + }, + "end": { + "$date": "2020-12-02T23:51:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0f038fa-c10c-4706-985d-bcb09ce29198", + "start": { + "$date": "2020-12-02T23:51:12.000Z" + }, + "end": { + "$date": "2020-12-02T23:59:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69d584d2-7f6c-487b-ae62-ff74c7b2e167", + "start": { + "$date": "2020-12-02T23:59:12.000Z" + }, + "end": { + "$date": "2020-12-03T00:02:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1cae65a5-5d1b-4802-9521-20e999d3c8c3", + "start": { + "$date": "2020-12-03T00:02:12.000Z" + }, + "end": { + "$date": "2020-12-03T00:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eb5c167f-4c84-4079-b415-576c6484482b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-02T21:38:27.000Z" + }, + "end": { + "$date": "2020-12-02T22:27:10.000Z" + }, + "events": [ + { + "uuid": "b7db42d2-2682-4ef8-a512-7b14ae23127a", + "start": { + "$date": "2020-12-02T21:38:27.000Z" + }, + "end": { + "$date": "2020-12-02T22:27:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8985057-504d-41a7-934c-304234aa828e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-02T22:15:14.000Z" + }, + "end": { + "$date": "2020-12-02T22:39:09.000Z" + }, + "events": [ + { + "uuid": "fcd2f532-7df9-47b1-a638-20dfffd2970f", + "start": { + "$date": "2020-12-02T22:15:14.000Z" + }, + "end": { + "$date": "2020-12-02T22:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e30b3d01-07fb-4704-97d1-a16359c492fd", + "uuid": "2fffce5c-9cbf-4b35-9824-f26684c1a31e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-02T22:36:08.000Z" + }, + "end": { + "$date": "2020-12-02T23:49:17.000Z" + }, + "events": [ + { + "uuid": "c60a1bde-643f-4455-abdd-fb0eb45f0b04", + "start": { + "$date": "2020-12-02T22:36:08.000Z" + }, + "end": { + "$date": "2020-12-02T23:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cd975d18-113b-42b9-b94f-c945fe806065", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-02T22:55:01.000Z" + }, + "end": { + "$date": "2020-12-03T01:30:20.000Z" + }, + "events": [ + { + "uuid": "41efd660-df18-48a1-a081-8aa76cbd77c4", + "start": { + "$date": "2020-12-02T22:55:01.000Z" + }, + "end": { + "$date": "2020-12-03T01:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1ca1e270-1fc3-4a74-9d8f-550f4d27431e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-02T23:33:51.000Z" + }, + "end": { + "$date": "2020-12-02T23:34:51.000Z" + }, + "events": [ + { + "uuid": "bce9216b-8d23-48c8-b1c6-9250bbd6c9e1", + "start": { + "$date": "2020-12-02T23:33:51.000Z" + }, + "end": { + "$date": "2020-12-02T23:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6a5dabc2-689f-496d-8818-d1e4cd48adf5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-02T23:35:06.000Z" + }, + "end": { + "$date": "2020-12-02T23:36:26.000Z" + }, + "events": [ + { + "uuid": "1fd5bad2-3ef5-445c-8324-9ddc50adb737", + "start": { + "$date": "2020-12-02T23:35:06.000Z" + }, + "end": { + "$date": "2020-12-02T23:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "54a3febd-f355-4f42-b1d5-0f81af6b7bde", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-02T23:36:51.000Z" + }, + "end": { + "$date": "2020-12-03T00:34:12.000Z" + }, + "events": [ + { + "uuid": "5d31f195-92d3-4d13-965a-89916f6ca521", + "start": { + "$date": "2020-12-02T23:36:51.000Z" + }, + "end": { + "$date": "2020-12-03T00:34:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "94dd06fa-8764-4ae1-895f-ea6c453e3a76", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-02T23:49:59.000Z" + }, + "end": { + "$date": "2020-12-03T00:41:59.000Z" + }, + "events": [ + { + "uuid": "43ca1112-0ecd-41f5-b3e9-b247a90b5903", + "start": { + "$date": "2020-12-02T23:49:59.000Z" + }, + "end": { + "$date": "2020-12-03T00:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "4ae5930d-eccd-48d5-b016-0efbe64f6853", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-03T00:05:07.000Z" + }, + "end": { + "$date": "2020-12-03T00:32:19.000Z" + }, + "events": [ + { + "uuid": "ad3d85bd-d7f6-43ac-8ee9-d667dc41265d", + "start": { + "$date": "2020-12-03T00:05:07.000Z" + }, + "end": { + "$date": "2020-12-03T00:25:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46f3e436-33a2-4ce2-a235-a2285ee0e1f0", + "start": { + "$date": "2020-12-03T00:25:07.000Z" + }, + "end": { + "$date": "2020-12-03T00:30:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aae2ca82-9887-4672-ae93-32da953532ea", + "start": { + "$date": "2020-12-03T00:30:07.000Z" + }, + "end": { + "$date": "2020-12-03T00:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "4c9da6f9-5cc2-495f-a302-3c52dc6920d8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-03T00:15:58.000Z" + }, + "end": { + "$date": "2020-12-03T02:19:16.000Z" + }, + "events": [ + { + "uuid": "1fd7b265-17ee-49f7-8ad6-1b4dc557dafd", + "start": { + "$date": "2020-12-03T00:15:58.000Z" + }, + "end": { + "$date": "2020-12-03T02:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "39ba78f0-6a11-4783-96c4-592c60339a4f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-03T00:35:05.000Z" + }, + "end": { + "$date": "2020-12-03T02:18:54.000Z" + }, + "events": [ + { + "uuid": "612a7153-9f9f-408a-8b8a-59d3441142d1", + "start": { + "$date": "2020-12-03T00:35:05.000Z" + }, + "end": { + "$date": "2020-12-03T02:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84675917-02fd-4665-a41e-6907472678f1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T00:56:27.000Z" + }, + "end": { + "$date": "2020-12-03T01:35:40.000Z" + }, + "events": [ + { + "uuid": "7ac0100a-dca9-40eb-be9a-26ac8f90bd31", + "start": { + "$date": "2020-12-03T00:56:27.000Z" + }, + "end": { + "$date": "2020-12-03T01:03:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0bfcde0-1230-4544-968b-ed25bc86b39b", + "start": { + "$date": "2020-12-03T01:03:27.000Z" + }, + "end": { + "$date": "2020-12-03T01:35:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "020a916f-1d35-4354-bce2-4fc0a393a49f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T00:56:25.000Z" + }, + "end": { + "$date": "2020-12-03T01:35:44.000Z" + }, + "events": [ + { + "uuid": "cdcb0c10-c1a4-4ee2-ae3d-3c93efe0a5f0", + "start": { + "$date": "2020-12-03T00:56:25.000Z" + }, + "end": { + "$date": "2020-12-03T01:35:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3071f71a-525d-4743-965b-c933f79fd8a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T01:28:43.000Z" + }, + "end": { + "$date": "2020-12-03T02:07:59.000Z" + }, + "events": [ + { + "uuid": "ebfd11f2-c215-4a8b-9089-952df52fdd20", + "start": { + "$date": "2020-12-03T01:28:43.000Z" + }, + "end": { + "$date": "2020-12-03T02:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da2fe26f-9c6f-4a1c-bfec-6ffdd92cee87", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T01:44:09.000Z" + }, + "end": { + "$date": "2020-12-03T02:09:52.000Z" + }, + "events": [ + { + "uuid": "bfac2ebe-492c-4643-9176-182347639d14", + "start": { + "$date": "2020-12-03T01:44:09.000Z" + }, + "end": { + "$date": "2020-12-03T02:09:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc163468-3401-49cc-a81f-4697eaf14865", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T01:39:59.000Z" + }, + "end": { + "$date": "2020-12-03T01:40:05.000Z" + }, + "events": [ + { + "uuid": "0ff8ca74-a2c0-4413-b9a5-7cd999e0c3a7", + "start": { + "$date": "2020-12-03T01:39:59.000Z" + }, + "end": { + "$date": "2020-12-03T01:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "fc2b6629-9363-41ec-aafa-e68a1d0708fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T01:38:20.000Z" + }, + "end": { + "$date": "2020-12-03T01:43:09.000Z" + }, + "events": [ + { + "uuid": "a43b343d-37f5-42e5-a543-75ce060c7d3a", + "start": { + "$date": "2020-12-03T01:38:20.000Z" + }, + "end": { + "$date": "2020-12-03T01:43:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cecda78f-f401-47a2-9b52-6f3480976677", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T01:44:12.000Z" + }, + "end": { + "$date": "2020-12-03T02:09:48.000Z" + }, + "events": [ + { + "uuid": "dc2458fa-492e-4baa-a37c-b2efc19dedb9", + "start": { + "$date": "2020-12-03T01:44:12.000Z" + }, + "end": { + "$date": "2020-12-03T02:09:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a73a85bf-1689-4b0b-a032-32657f92a835", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-03T01:41:01.000Z" + }, + "end": { + "$date": "2020-12-03T03:08:50.000Z" + }, + "events": [ + { + "uuid": "646f7348-157a-4389-9201-6d527cf8c747", + "start": { + "$date": "2020-12-03T01:41:01.000Z" + }, + "end": { + "$date": "2020-12-03T03:08:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c9a41452-c37a-44da-ae53-415aa1b3ea39", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T01:43:25.000Z" + }, + "end": { + "$date": "2020-12-03T02:17:39.000Z" + }, + "events": [ + { + "uuid": "4f08aabf-d728-49b0-90af-e8ff4c18e343", + "start": { + "$date": "2020-12-03T01:43:25.000Z" + }, + "end": { + "$date": "2020-12-03T02:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "44697405-e10c-4e78-97ef-cc8b8d531c5f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T02:02:52.000Z" + }, + "end": { + "$date": "2020-12-03T02:10:42.000Z" + }, + "events": [ + { + "uuid": "6a42d315-26bf-4df3-87d7-f6cf3ceb32e5", + "start": { + "$date": "2020-12-03T02:02:52.000Z" + }, + "end": { + "$date": "2020-12-03T02:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "305890ca-e0ee-4ef9-9d6e-65317e3979a0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T02:16:11.000Z" + }, + "end": { + "$date": "2020-12-03T02:48:01.000Z" + }, + "events": [ + { + "uuid": "054cc8a6-ccb0-4d5e-901b-a4653736d2ac", + "start": { + "$date": "2020-12-03T02:16:11.000Z" + }, + "end": { + "$date": "2020-12-03T02:48:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8af8129-8ba1-4318-833f-497721c8c18e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T02:17:31.000Z" + }, + "end": { + "$date": "2020-12-03T02:47:55.000Z" + }, + "events": [ + { + "uuid": "813def33-7e09-4876-96ea-a6c33c657e84", + "start": { + "$date": "2020-12-03T02:17:31.000Z" + }, + "end": { + "$date": "2020-12-03T02:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ea265bf-9fe5-425d-98c2-4d77b9697b24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T02:16:25.000Z" + }, + "end": { + "$date": "2020-12-03T02:47:55.000Z" + }, + "events": [ + { + "uuid": "58b3a91f-9a9a-4665-85c2-16a541ac1667", + "start": { + "$date": "2020-12-03T02:16:25.000Z" + }, + "end": { + "$date": "2020-12-03T02:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11536633-aa15-4583-b300-ccb4138a00ec", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T02:16:14.000Z" + }, + "end": { + "$date": "2020-12-03T02:47:54.000Z" + }, + "events": [ + { + "uuid": "4e3a7d13-662c-4aaa-9e82-24918e6219b1", + "start": { + "$date": "2020-12-03T02:16:14.000Z" + }, + "end": { + "$date": "2020-12-03T02:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f42b7bc4-3fa6-4672-98ca-c9aa9a4fe2c7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T02:42:26.000Z" + }, + "end": { + "$date": "2020-12-03T02:42:30.000Z" + }, + "events": [ + { + "uuid": "6dc9fb8a-a963-4361-a349-402eb6d48a13", + "start": { + "$date": "2020-12-03T02:42:26.000Z" + }, + "end": { + "$date": "2020-12-03T02:42:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b5687015-1974-454b-a42a-cc8e710d0ed3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-03T02:19:30.000Z" + }, + "end": { + "$date": "2020-12-03T04:37:45.000Z" + }, + "events": [ + { + "uuid": "5d4e7d5a-52e4-4bf6-be92-9c0a2ae2ccd4", + "start": { + "$date": "2020-12-03T02:19:30.000Z" + }, + "end": { + "$date": "2020-12-03T04:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "209027bd-f034-44e7-9dc2-28ded47c263b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T02:42:46.000Z" + }, + "end": { + "$date": "2020-12-03T04:15:52.000Z" + }, + "events": [ + { + "uuid": "dc4e66a0-5878-4de9-a133-1ecd6a3ca879", + "start": { + "$date": "2020-12-03T02:42:46.000Z" + }, + "end": { + "$date": "2020-12-03T04:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bb94695-e89e-4178-b587-f55d9a34e3b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T02:57:18.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:13.000Z" + }, + "events": [ + { + "uuid": "49f8a75e-9c01-40a6-ab72-59a95e3d8c8e", + "start": { + "$date": "2020-12-03T02:57:18.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "aa896750-e14f-4f29-b2a9-dab933d33433", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T02:49:25.000Z" + }, + "end": { + "$date": "2020-12-03T03:29:02.000Z" + }, + "events": [ + { + "uuid": "b4dbefa2-f644-470c-bb9b-e9b153588b1c", + "start": { + "$date": "2020-12-03T02:49:25.000Z" + }, + "end": { + "$date": "2020-12-03T03:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32888f05-124f-4916-ad6e-c5c1d190fa91", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T02:51:44.000Z" + }, + "end": { + "$date": "2020-12-03T02:52:45.000Z" + }, + "events": [ + { + "uuid": "7117c287-a812-4be1-8aa0-cfb2c762bfc8", + "start": { + "$date": "2020-12-03T02:51:44.000Z" + }, + "end": { + "$date": "2020-12-03T02:52:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4de1ae5-99df-4e41-bd4b-f37fb1218938", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T02:51:44.000Z" + }, + "end": { + "$date": "2020-12-03T02:52:45.000Z" + }, + "events": [ + { + "uuid": "be9477bd-409d-489f-926a-87c653927eca", + "start": { + "$date": "2020-12-03T02:51:44.000Z" + }, + "end": { + "$date": "2020-12-03T02:52:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25965063-0a5b-410f-8f09-a500066ce7a0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T02:57:17.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:07.000Z" + }, + "events": [ + { + "uuid": "eab2e11e-132d-4807-bbe4-87977dab4389", + "start": { + "$date": "2020-12-03T02:57:17.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21b097ea-6e67-4a45-b188-899ea8be48f2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-03T02:57:27.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:12.000Z" + }, + "events": [ + { + "uuid": "4beb94d8-37a1-4cae-a535-fb3aa5addcaa", + "start": { + "$date": "2020-12-03T02:57:27.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b197b5c5-a950-4d45-8513-a673b59bafa1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T02:57:16.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:12.000Z" + }, + "events": [ + { + "uuid": "cefee4ef-d69d-4ae0-88a4-0ea437cf1d5f", + "start": { + "$date": "2020-12-03T02:57:16.000Z" + }, + "end": { + "$date": "2020-12-03T03:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cda2bedb-9ae9-4934-a665-133ca71a4dc2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-03T03:14:07.000Z" + }, + "end": { + "$date": "2020-12-03T03:44:11.000Z" + }, + "events": [ + { + "uuid": "dc68ab67-0cdd-4bfb-b829-ecf49d1512af", + "start": { + "$date": "2020-12-03T03:14:07.000Z" + }, + "end": { + "$date": "2020-12-03T03:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e99d01d-57be-4c9a-9087-28a91d99e1a0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T03:28:26.000Z" + }, + "end": { + "$date": "2020-12-03T03:29:49.000Z" + }, + "events": [ + { + "uuid": "59c7bea5-8303-4143-8750-210a7d20e6bc", + "start": { + "$date": "2020-12-03T03:28:26.000Z" + }, + "end": { + "$date": "2020-12-03T03:29:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "979ede14-4744-45fa-903d-2f03f37fcb61", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T03:28:46.000Z" + }, + "end": { + "$date": "2020-12-03T03:29:49.000Z" + }, + "events": [ + { + "uuid": "87a7f58f-1481-407f-9bb4-6945387502fc", + "start": { + "$date": "2020-12-03T03:28:46.000Z" + }, + "end": { + "$date": "2020-12-03T03:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76c4af1d-68f1-415e-bf9a-17549a3894db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-03T03:31:33.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:44.000Z" + }, + "events": [ + { + "uuid": "0945a153-cfb0-466b-bcff-b85805230018", + "start": { + "$date": "2020-12-03T03:31:33.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "439356f0-aceb-4579-8da4-33bf4ad2a7d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T03:31:39.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:43.000Z" + }, + "events": [ + { + "uuid": "b3ff6a54-1387-4760-b862-5fc7d09c6b26", + "start": { + "$date": "2020-12-03T03:31:39.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8bcd24b-a970-4aa9-bc8f-ea7b780f8737", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T03:31:42.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:47.000Z" + }, + "events": [ + { + "uuid": "b4ea4910-69dc-418a-b9da-46d5d10734ff", + "start": { + "$date": "2020-12-03T03:31:42.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4eca8dfe-7f96-4364-a59e-c6d4d0b7297c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T03:32:18.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:47.000Z" + }, + "events": [ + { + "uuid": "1f07d85b-d25c-417d-bdd0-b90eeca31cbe", + "start": { + "$date": "2020-12-03T03:32:18.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c3c0dc2-241e-4680-94c1-e9f7b4606d58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T03:31:37.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:48.000Z" + }, + "events": [ + { + "uuid": "069d4d13-09ac-4868-b130-62baf13cc572", + "start": { + "$date": "2020-12-03T03:31:37.000Z" + }, + "end": { + "$date": "2020-12-03T03:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "626b61fb-5e4b-445e-ac2a-f74245edb4c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T03:48:35.000Z" + }, + "end": { + "$date": "2020-12-03T03:49:53.000Z" + }, + "events": [ + { + "uuid": "441d5f53-7b4a-41ed-a6ea-eb7601495eed", + "start": { + "$date": "2020-12-03T03:48:35.000Z" + }, + "end": { + "$date": "2020-12-03T03:49:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4b324f0-d903-44a0-bbfe-4801a1cad727", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-03T03:49:53.000Z" + }, + "end": { + "$date": "2020-12-03T03:51:13.000Z" + }, + "events": [ + { + "uuid": "51e3b698-af35-4fd5-a289-080e010bade0", + "start": { + "$date": "2020-12-03T03:49:53.000Z" + }, + "end": { + "$date": "2020-12-03T03:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "127cd5fd-9826-485b-adf8-318dd622f636", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T03:51:13.000Z" + }, + "end": { + "$date": "2020-12-03T03:53:11.000Z" + }, + "events": [ + { + "uuid": "9fb9c3aa-da62-4fd2-a26e-7f0ab605a625", + "start": { + "$date": "2020-12-03T03:51:13.000Z" + }, + "end": { + "$date": "2020-12-03T03:53:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cacf57e8-438c-4091-a1a2-25aac13e0df7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T03:51:27.000Z" + }, + "end": { + "$date": "2020-12-03T04:33:15.000Z" + }, + "events": [ + { + "uuid": "872881eb-1152-41c2-9945-c9ecfa7f33a5", + "start": { + "$date": "2020-12-03T03:51:27.000Z" + }, + "end": { + "$date": "2020-12-03T04:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "55b72639-f5c4-4c84-a08d-57975d9764dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T03:54:40.000Z" + }, + "end": { + "$date": "2020-12-03T04:26:46.000Z" + }, + "events": [ + { + "uuid": "d5e020eb-5e24-47d3-ad8f-78e78209c178", + "start": { + "$date": "2020-12-03T03:54:40.000Z" + }, + "end": { + "$date": "2020-12-03T04:26:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e5699440-04f1-4b20-90d1-253124108301", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T04:26:57.000Z" + }, + "end": { + "$date": "2020-12-03T04:53:32.000Z" + }, + "events": [ + { + "uuid": "8b83848f-8318-4fa0-88c5-eef942bf8a3a", + "start": { + "$date": "2020-12-03T04:26:57.000Z" + }, + "end": { + "$date": "2020-12-03T04:53:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", + "uuid": "aea6dccf-7ae2-42f7-bf29-3e92be398ded", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-03T04:28:24.000Z" + }, + "end": { + "$date": "2020-12-03T04:30:10.000Z" + }, + "events": [ + { + "uuid": "b297b683-c20b-48e3-9661-1a6dc1c58cfb", + "start": { + "$date": "2020-12-03T04:28:24.000Z" + }, + "end": { + "$date": "2020-12-03T04:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d60c4326-1dd5-4293-9425-d2d947df6400", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-03T04:31:14.000Z" + }, + "end": { + "$date": "2020-12-03T06:06:06.000Z" + }, + "events": [ + { + "uuid": "90aa4354-58f0-4088-b515-529cd29e6706", + "start": { + "$date": "2020-12-03T04:31:14.000Z" + }, + "end": { + "$date": "2020-12-03T06:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b038fe10-0e98-4320-afca-f62d413a9106", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-03T04:34:14.000Z" + }, + "end": { + "$date": "2020-12-03T05:44:16.000Z" + }, + "events": [ + { + "uuid": "c7352c7c-8764-4342-9750-33a332a84989", + "start": { + "$date": "2020-12-03T04:34:14.000Z" + }, + "end": { + "$date": "2020-12-03T05:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "38485008-c5ff-44cd-b085-dca72b1ff4dc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T04:34:26.000Z" + }, + "end": { + "$date": "2020-12-03T06:24:31.000Z" + }, + "events": [ + { + "uuid": "0e880d46-52be-4521-a5c6-396dc5c0e26b", + "start": { + "$date": "2020-12-03T04:34:26.000Z" + }, + "end": { + "$date": "2020-12-03T06:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3971108b-334c-419f-8c3a-1b68e2593bde", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T04:34:36.000Z" + }, + "end": { + "$date": "2020-12-03T06:18:27.000Z" + }, + "events": [ + { + "uuid": "0f3167c7-f1b9-4e22-bfee-bbf7a7b121d5", + "start": { + "$date": "2020-12-03T04:34:36.000Z" + }, + "end": { + "$date": "2020-12-03T06:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9d455356-1326-4197-ad64-ff0061e30c66", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-03T04:46:57.000Z" + }, + "end": { + "$date": "2020-12-03T06:24:47.000Z" + }, + "events": [ + { + "uuid": "0c9b5fa6-0bae-4b3f-9681-7baca625732f", + "start": { + "$date": "2020-12-03T04:46:57.000Z" + }, + "end": { + "$date": "2020-12-03T06:24:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d99b9b97-178c-484d-acaf-412f9a8a356b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-03T04:54:58.000Z" + }, + "end": { + "$date": "2020-12-03T06:19:30.000Z" + }, + "events": [ + { + "uuid": "79551c4e-cf66-4f15-89cd-4795c50cadd5", + "start": { + "$date": "2020-12-03T04:54:58.000Z" + }, + "end": { + "$date": "2020-12-03T06:19:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "22ba75fb-b40e-49d3-8433-b40292a4f2cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-03T05:26:07.000Z" + }, + "end": { + "$date": "2020-12-03T06:25:39.000Z" + }, + "events": [ + { + "uuid": "65d87fc8-519d-447c-b39d-851f92b37e40", + "start": { + "$date": "2020-12-03T05:26:07.000Z" + }, + "end": { + "$date": "2020-12-03T06:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c3b5e184-6193-445b-b4fa-e4db1257af55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T05:29:58.000Z" + }, + "end": { + "$date": "2020-12-03T06:05:49.000Z" + }, + "events": [ + { + "uuid": "0e598b07-4658-4c51-8bd0-2937dec06c8d", + "start": { + "$date": "2020-12-03T05:29:58.000Z" + }, + "end": { + "$date": "2020-12-03T06:05:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "039af96c-7e5d-4bdd-bb8f-df4c972cc20d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-03T05:57:16.000Z" + }, + "end": { + "$date": "2020-12-03T06:25:03.000Z" + }, + "events": [ + { + "uuid": "752034a9-26ab-4da2-bc70-bd844e160819", + "start": { + "$date": "2020-12-03T05:57:16.000Z" + }, + "end": { + "$date": "2020-12-03T06:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", + "uuid": "6e8131bd-d712-42a3-8d7a-2edc735f337c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-03T07:14:47.000Z" + }, + "end": { + "$date": "2020-12-03T08:37:43.000Z" + }, + "events": [ + { + "uuid": "923b0876-4ebd-49cd-957a-ffad2218e9e1", + "start": { + "$date": "2020-12-03T07:14:47.000Z" + }, + "end": { + "$date": "2020-12-03T08:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "87bfc99b-c81b-420c-a8d6-aecc4762c252", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-03T07:51:10.000Z" + }, + "end": { + "$date": "2020-12-03T09:07:58.000Z" + }, + "events": [ + { + "uuid": "a6680370-3120-45f8-832a-fa2ab8d09cc7", + "start": { + "$date": "2020-12-03T07:51:10.000Z" + }, + "end": { + "$date": "2020-12-03T09:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "b02f3a9d-88d8-4645-9bea-9ece1489aa09", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-03T15:26:21.000Z" + }, + "end": { + "$date": "2020-12-03T16:41:13.000Z" + }, + "events": [ + { + "uuid": "2ec8314c-26a7-4ecd-8093-84e4f8ea6b98", + "start": { + "$date": "2020-12-03T15:26:21.000Z" + }, + "end": { + "$date": "2020-12-03T16:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "efe176f1-2c6e-4f94-bc3c-4b76bcca906c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T16:16:54.000Z" + }, + "end": { + "$date": "2020-12-03T18:10:58.000Z" + }, + "events": [ + { + "uuid": "3ae844f0-bd66-43e3-96d2-b218e8f81048", + "start": { + "$date": "2020-12-03T16:16:54.000Z" + }, + "end": { + "$date": "2020-12-03T18:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0e034985-f67c-49bb-83b9-4a843ddea3a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-03T19:52:09.000Z" + }, + "end": { + "$date": "2020-12-03T21:14:18.000Z" + }, + "events": [ + { + "uuid": "9e217d34-5c3b-4454-87fc-b9f214ddbfaa", + "start": { + "$date": "2020-12-03T19:52:09.000Z" + }, + "end": { + "$date": "2020-12-03T21:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e203e65a-18f2-40e5-91b8-344ad4812e5e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-03T20:31:30.000Z" + }, + "end": { + "$date": "2020-12-03T21:44:27.000Z" + }, + "events": [ + { + "uuid": "9adee3e6-d2e8-4e24-8574-4b6e5e8927d1", + "start": { + "$date": "2020-12-03T20:31:30.000Z" + }, + "end": { + "$date": "2020-12-03T21:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "330d03dd-1d92-4e18-a7c1-d036c74fcee5", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-03T20:55:44.000Z" + }, + "end": { + "$date": "2020-12-04T00:37:23.000Z" + }, + "events": [ + { + "uuid": "e873ead6-d7a6-4e88-9083-de77e0d8400b", + "start": { + "$date": "2020-12-03T20:55:44.000Z" + }, + "end": { + "$date": "2020-12-04T00:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3fe2ec73-0f3a-4ed5-b6ee-0fa63682df18", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-03T21:03:18.000Z" + }, + "end": { + "$date": "2020-12-03T22:19:53.000Z" + }, + "events": [ + { + "uuid": "aec52b38-d61e-471e-ac9f-fb13de1f0d6f", + "start": { + "$date": "2020-12-03T21:03:18.000Z" + }, + "end": { + "$date": "2020-12-03T22:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "c2447735-027a-4022-b502-5123de4eb3cd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-03T22:26:18.000Z" + }, + "end": { + "$date": "2020-12-03T22:41:38.000Z" + }, + "events": [ + { + "uuid": "f266a238-c5c4-4136-9be8-d773662e29bd", + "start": { + "$date": "2020-12-03T22:26:18.000Z" + }, + "end": { + "$date": "2020-12-03T22:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "e99a3925-331b-4a1c-97c5-91c168b5e1f5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T22:33:23.000Z" + }, + "end": { + "$date": "2020-12-03T22:51:48.000Z" + }, + "events": [ + { + "uuid": "a13e32df-f2c5-4acc-aa65-98cf858288e8", + "start": { + "$date": "2020-12-03T22:33:23.000Z" + }, + "end": { + "$date": "2020-12-03T22:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "85439d08-26bf-43e4-b9d2-9e9a0cd95c87", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-03T22:41:54.000Z" + }, + "end": { + "$date": "2020-12-03T23:12:55.000Z" + }, + "events": [ + { + "uuid": "144aedce-4926-41b9-9e94-1b4ae168343f", + "start": { + "$date": "2020-12-03T22:41:54.000Z" + }, + "end": { + "$date": "2020-12-03T23:12:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "943a2784-20ca-4fba-9bec-bd146761cc59", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T23:00:09.000Z" + }, + "end": { + "$date": "2020-12-03T23:05:24.000Z" + }, + "events": [ + { + "uuid": "16b83319-56fd-4942-88a9-c948898e671d", + "start": { + "$date": "2020-12-03T23:00:09.000Z" + }, + "end": { + "$date": "2020-12-03T23:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b4bc3814-1e19-40af-ba81-9ecb1f91574c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-03T23:06:04.000Z" + }, + "end": { + "$date": "2020-12-04T00:05:30.000Z" + }, + "events": [ + { + "uuid": "f8a980e9-2e26-45fb-9d0a-48f0107f575a", + "start": { + "$date": "2020-12-03T23:06:04.000Z" + }, + "end": { + "$date": "2020-12-04T00:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "c9c12d6f-b426-4eeb-b848-607228641f1d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-03T23:15:06.000Z" + }, + "end": { + "$date": "2020-12-04T02:00:25.000Z" + }, + "events": [ + { + "uuid": "ff773cf0-c55e-440d-aca8-f1b629c94f84", + "start": { + "$date": "2020-12-03T23:15:06.000Z" + }, + "end": { + "$date": "2020-12-04T02:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "de212b8e-bc8d-48ff-bec7-1325ef1c81ca", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-03T23:27:00.000Z" + }, + "end": { + "$date": "2020-12-04T00:32:41.000Z" + }, + "events": [ + { + "uuid": "c0580489-9a3f-41b0-a38f-f128443351e7", + "start": { + "$date": "2020-12-03T23:27:00.000Z" + }, + "end": { + "$date": "2020-12-04T00:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e8d582dd-bb63-476f-8699-a413ed89bd3d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T00:45:16.000Z" + }, + "end": { + "$date": "2020-12-04T00:47:01.000Z" + }, + "events": [ + { + "uuid": "3f4ee0dc-93cc-426b-90c9-626bb7329a8f", + "start": { + "$date": "2020-12-04T00:45:16.000Z" + }, + "end": { + "$date": "2020-12-04T00:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1a9ee9c6-552b-44b3-96cc-463a568be52f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T00:49:36.000Z" + }, + "end": { + "$date": "2020-12-04T03:05:09.000Z" + }, + "events": [ + { + "uuid": "8ad8fdf1-c5c4-4cd1-a4bf-65ac25fa3302", + "start": { + "$date": "2020-12-04T00:49:36.000Z" + }, + "end": { + "$date": "2020-12-04T03:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0eb27604-d453-49cf-a363-0c4a69519d56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-04T01:09:02.000Z" + }, + "end": { + "$date": "2020-12-04T02:11:06.000Z" + }, + "events": [ + { + "uuid": "12314ff7-81b2-41e6-84fa-079351b88d4a", + "start": { + "$date": "2020-12-04T01:09:02.000Z" + }, + "end": { + "$date": "2020-12-04T02:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "58545ae1-6428-4918-8a2c-4d4419bb9ac1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-04T01:17:49.000Z" + }, + "end": { + "$date": "2020-12-04T01:56:59.000Z" + }, + "events": [ + { + "uuid": "1dc2bfb3-2ccf-4fd4-b7ae-e855ac78c2af", + "start": { + "$date": "2020-12-04T01:17:49.000Z" + }, + "end": { + "$date": "2020-12-04T01:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f91175e7-f887-440a-b6cc-3e9fa0f211e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-04T02:12:15.000Z" + }, + "end": { + "$date": "2020-12-04T02:50:31.000Z" + }, + "events": [ + { + "uuid": "e28f51eb-d2a0-4a70-a064-51859216c685", + "start": { + "$date": "2020-12-04T02:12:15.000Z" + }, + "end": { + "$date": "2020-12-04T02:50:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f3bbfef0-d173-45a4-aa7d-815744bef30d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-04T02:13:50.000Z" + }, + "end": { + "$date": "2020-12-04T02:17:11.000Z" + }, + "events": [ + { + "uuid": "1201bccd-3479-486e-9473-234adf01c4f8", + "start": { + "$date": "2020-12-04T02:13:50.000Z" + }, + "end": { + "$date": "2020-12-04T02:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c509a641-6f15-4d8c-a98c-42c8d3bd0d78", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-04T02:19:27.000Z" + }, + "end": { + "$date": "2020-12-04T02:49:50.000Z" + }, + "events": [ + { + "uuid": "853c0296-d2f1-4908-a15f-09e23a248bf6", + "start": { + "$date": "2020-12-04T02:19:27.000Z" + }, + "end": { + "$date": "2020-12-04T02:49:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "045e2f0f-fa62-4edd-aa5e-23e0cee936d8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-04T02:28:04.000Z" + }, + "end": { + "$date": "2020-12-04T04:05:47.000Z" + }, + "events": [ + { + "uuid": "918c26d4-53dd-454c-9a3d-a6d1cda0d80d", + "start": { + "$date": "2020-12-04T02:28:04.000Z" + }, + "end": { + "$date": "2020-12-04T04:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c55df751-972e-41b5-9511-c0b00257e28c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-04T03:08:13.000Z" + }, + "end": { + "$date": "2020-12-04T06:19:16.000Z" + }, + "events": [ + { + "uuid": "9a1a0f58-a098-4698-a56c-2fca4dad124e", + "start": { + "$date": "2020-12-04T03:08:13.000Z" + }, + "end": { + "$date": "2020-12-04T06:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d49658c2-c9df-4d89-af5f-bd528ca3dfd6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T03:28:48.000Z" + }, + "end": { + "$date": "2020-12-04T03:46:40.000Z" + }, + "events": [ + { + "uuid": "50538312-8723-4321-877f-44847665f94e", + "start": { + "$date": "2020-12-04T03:28:48.000Z" + }, + "end": { + "$date": "2020-12-04T03:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "effc5f88-cd7c-4243-83a3-c55ad49b8755", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-04T03:52:36.000Z" + }, + "end": { + "$date": "2020-12-04T04:09:47.000Z" + }, + "events": [ + { + "uuid": "2fc39c48-ca42-4f02-b087-6b9ecb451481", + "start": { + "$date": "2020-12-04T03:52:36.000Z" + }, + "end": { + "$date": "2020-12-04T04:09:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bc1fb096-b541-495e-a8ca-4fb506fc4c10", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T03:55:46.000Z" + }, + "end": { + "$date": "2020-12-04T03:57:26.000Z" + }, + "events": [ + { + "uuid": "573ab66c-eeac-4d53-92e8-882e952a2dc0", + "start": { + "$date": "2020-12-04T03:55:46.000Z" + }, + "end": { + "$date": "2020-12-04T03:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bca4e616-b595-42f1-b1ea-6056a3b2e2e7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-04T04:05:02.000Z" + }, + "end": { + "$date": "2020-12-04T06:03:15.000Z" + }, + "events": [ + { + "uuid": "1dc3799a-4691-4a71-a660-cd4b38e940c2", + "start": { + "$date": "2020-12-04T04:05:02.000Z" + }, + "end": { + "$date": "2020-12-04T06:03:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6110d436-bd91-45a8-adae-79916ccf97b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T04:37:41.000Z" + }, + "end": { + "$date": "2020-12-04T05:59:27.000Z" + }, + "events": [ + { + "uuid": "33457957-9a6b-40eb-862e-fb83d3b334c3", + "start": { + "$date": "2020-12-04T04:37:41.000Z" + }, + "end": { + "$date": "2020-12-04T05:04:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "200bf2a9-6087-4424-8edd-08069bcd349a", + "start": { + "$date": "2020-12-04T05:04:41.000Z" + }, + "end": { + "$date": "2020-12-04T05:05:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70d9b1c1-514b-4ca2-90a1-dee3fa0f56be", + "start": { + "$date": "2020-12-04T05:05:41.000Z" + }, + "end": { + "$date": "2020-12-04T05:59:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "daba0308-7766-4260-ae6b-65feede17bed", + "uuid": "b3c8e822-3962-43d1-8137-03066489e630", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-04T04:55:28.000Z" + }, + "end": { + "$date": "2020-12-04T05:38:09.000Z" + }, + "events": [ + { + "uuid": "d5e64f78-377d-438f-88fd-f8f4528316d0", + "start": { + "$date": "2020-12-04T04:55:28.000Z" + }, + "end": { + "$date": "2020-12-04T05:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9ff95e4-19d5-4dec-ab05-e7cb8744893f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-04T05:40:16.000Z" + }, + "end": { + "$date": "2020-12-04T05:47:20.000Z" + }, + "events": [ + { + "uuid": "0b67f000-6794-472e-ab5f-e4441e170fde", + "start": { + "$date": "2020-12-04T05:40:16.000Z" + }, + "end": { + "$date": "2020-12-04T05:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9c3ba1c9-ca82-4fc3-9710-6179c6de467e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T06:00:18.000Z" + }, + "end": { + "$date": "2020-12-04T06:47:09.000Z" + }, + "events": [ + { + "uuid": "7ba44a63-7b68-4836-8bf1-6afa4c91d84d", + "start": { + "$date": "2020-12-04T06:00:18.000Z" + }, + "end": { + "$date": "2020-12-04T06:47:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0f8f94d1-463e-4be2-9b28-9d8d1d5c6368", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-04T06:03:50.000Z" + }, + "end": { + "$date": "2020-12-04T06:05:27.000Z" + }, + "events": [ + { + "uuid": "dff42da2-a87e-4346-8d9b-9026f270b98f", + "start": { + "$date": "2020-12-04T06:03:50.000Z" + }, + "end": { + "$date": "2020-12-04T06:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7114d4f7-605d-4ac4-8392-90c1b549d307", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-04T06:06:05.000Z" + }, + "end": { + "$date": "2020-12-04T06:19:22.000Z" + }, + "events": [ + { + "uuid": "25db0b42-8a9e-430e-8965-e5a7e9bdd194", + "start": { + "$date": "2020-12-04T06:06:05.000Z" + }, + "end": { + "$date": "2020-12-04T06:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9dc56b6e-d803-47b5-af04-3e3e3e206b4d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-04T06:22:07.000Z" + }, + "end": { + "$date": "2020-12-04T06:36:37.000Z" + }, + "events": [ + { + "uuid": "38f34416-8501-47f0-b5b3-5e8c447d5c88", + "start": { + "$date": "2020-12-04T06:22:07.000Z" + }, + "end": { + "$date": "2020-12-04T06:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d37ac5f7-3753-4520-a2cb-d929755479bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-04T06:43:56.000Z" + }, + "end": { + "$date": "2020-12-04T08:11:00.000Z" + }, + "events": [ + { + "uuid": "57b70d36-00e2-4f66-b96d-880c50d0cb86", + "start": { + "$date": "2020-12-04T06:43:56.000Z" + }, + "end": { + "$date": "2020-12-04T08:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", + "uuid": "4a66c479-e6b3-4bce-aabe-fe87f95a6c60", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-04T07:52:21.000Z" + }, + "end": { + "$date": "2020-12-04T09:19:05.000Z" + }, + "events": [ + { + "uuid": "d9173f5d-a843-4d23-89fd-bd1d84939822", + "start": { + "$date": "2020-12-04T07:52:21.000Z" + }, + "end": { + "$date": "2020-12-04T09:19:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "a39b22f4-a445-429a-8f39-55744abee04c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-04T15:33:21.000Z" + }, + "end": { + "$date": "2020-12-04T17:29:56.000Z" + }, + "events": [ + { + "uuid": "a3491e48-3683-4060-a933-e4c87343b894", + "start": { + "$date": "2020-12-04T15:33:21.000Z" + }, + "end": { + "$date": "2020-12-04T17:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "76bc206a-dcf5-4d44-b383-f4032ced1cae", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-04T17:30:01.000Z" + }, + "end": { + "$date": "2020-12-04T17:56:18.000Z" + }, + "events": [ + { + "uuid": "05615300-83c1-4369-9736-fe327bfcf54c", + "start": { + "$date": "2020-12-04T17:30:01.000Z" + }, + "end": { + "$date": "2020-12-04T17:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "029ccb2a-27d1-4e1d-9971-5ea1f8175d7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-04T17:47:06.000Z" + }, + "end": { + "$date": "2020-12-04T19:18:07.000Z" + }, + "events": [ + { + "uuid": "6c9b2d7c-5409-4e54-a5d2-46dc031dd074", + "start": { + "$date": "2020-12-04T17:47:06.000Z" + }, + "end": { + "$date": "2020-12-04T19:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d09a3799-6102-446d-88eb-913908531e6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-04T19:15:55.000Z" + }, + "end": { + "$date": "2020-12-04T19:45:07.000Z" + }, + "events": [ + { + "uuid": "a6f45ea2-bfef-4abc-84b4-2861655d9218", + "start": { + "$date": "2020-12-04T19:15:55.000Z" + }, + "end": { + "$date": "2020-12-04T19:45:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d26c612f-de82-4f92-9e38-bda5ca7a0ac7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-04T19:16:08.000Z" + }, + "end": { + "$date": "2020-12-04T19:45:18.000Z" + }, + "events": [ + { + "uuid": "710b8542-f1a5-4b65-a526-0007004ce3b4", + "start": { + "$date": "2020-12-04T19:16:08.000Z" + }, + "end": { + "$date": "2020-12-04T19:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "bd67acf5-c784-411b-a8ad-fe70726cc13b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-04T19:18:16.000Z" + }, + "end": { + "$date": "2020-12-04T20:08:32.000Z" + }, + "events": [ + { + "uuid": "ac1dc14c-67a9-4cc0-90e5-6c2ec16a9668", + "start": { + "$date": "2020-12-04T19:18:16.000Z" + }, + "end": { + "$date": "2020-12-04T20:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd86b115-3d1b-4815-a3da-d36123ed6c6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-04T19:47:46.000Z" + }, + "end": { + "$date": "2020-12-04T20:07:44.000Z" + }, + "events": [ + { + "uuid": "d3824b45-a5b4-49b2-9db4-d1817c71f549", + "start": { + "$date": "2020-12-04T19:47:46.000Z" + }, + "end": { + "$date": "2020-12-04T20:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3489e9aa-cc09-472f-a681-910c72d83e62", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-04T19:47:44.000Z" + }, + "end": { + "$date": "2020-12-04T20:07:58.000Z" + }, + "events": [ + { + "uuid": "74d07ea0-6fe9-414c-9c3f-c9e16b3eb5bf", + "start": { + "$date": "2020-12-04T19:47:44.000Z" + }, + "end": { + "$date": "2020-12-04T20:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c0ca778-2bf0-4351-b891-10c4a5cf0855", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-04T20:10:52.000Z" + }, + "end": { + "$date": "2020-12-04T20:33:04.000Z" + }, + "events": [ + { + "uuid": "a420f4ec-7f0b-477f-b2a3-7297d6651955", + "start": { + "$date": "2020-12-04T20:10:52.000Z" + }, + "end": { + "$date": "2020-12-04T20:33:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00b99c8a-ae23-4806-8388-83442c8674c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-04T20:35:03.000Z" + }, + "end": { + "$date": "2020-12-04T20:57:28.000Z" + }, + "events": [ + { + "uuid": "8551bbf4-fb16-41e9-a126-931e81edd980", + "start": { + "$date": "2020-12-04T20:35:03.000Z" + }, + "end": { + "$date": "2020-12-04T20:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5868518b-7bce-4870-84a6-e0cb7fb186dd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-04T22:04:52.000Z" + }, + "end": { + "$date": "2020-12-05T00:06:27.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-04T22:04:52.000Z" + }, + "end": { + "$date": "2020-12-05T00:06:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "44b0e721-65ef-4873-9c84-6c2af8cdfbc5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-04T22:21:51.000Z" + }, + "end": { + "$date": "2020-12-04T23:50:29.000Z" + }, + "events": [ + { + "uuid": "ee78e953-5171-4aa3-89dd-88f8cb5fe1e3", + "start": { + "$date": "2020-12-04T22:21:51.000Z" + }, + "end": { + "$date": "2020-12-04T23:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4665b549-0e94-4d2b-8238-53fafb744826", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-04T23:22:04.000Z" + }, + "end": { + "$date": "2020-12-05T01:25:16.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-04T23:22:04.000Z" + }, + "end": { + "$date": "2020-12-05T01:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e9a2d3e-3352-4161-9afa-a7c7027399b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T01:10:45.000Z" + }, + "end": { + "$date": "2020-12-05T01:10:41.000Z" + }, + "events": [ + { + "uuid": "ad2e5eb1-4b93-47a2-8e7b-7e7a54544762", + "start": { + "$date": "2020-12-05T01:10:45.000Z" + }, + "end": { + "$date": "2020-12-05T01:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3804e1b-3ecd-426b-bf5b-d305eacae6da", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T01:16:09.000Z" + }, + "end": { + "$date": "2020-12-05T02:07:41.000Z" + }, + "events": [ + { + "uuid": "9fd8bc7b-1ee2-416d-92cb-87ab07372fd8", + "start": { + "$date": "2020-12-05T01:16:09.000Z" + }, + "end": { + "$date": "2020-12-05T02:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d012afb3-bded-4cc5-81f6-4f342adf12ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T01:16:13.000Z" + }, + "end": { + "$date": "2020-12-05T02:07:57.000Z" + }, + "events": [ + { + "uuid": "c5479abb-709d-4bbf-8f94-7e51d1983b29", + "start": { + "$date": "2020-12-05T01:16:13.000Z" + }, + "end": { + "$date": "2020-12-05T02:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "74276f3d-bacd-4951-b39c-478164f37646", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-05T01:27:08.000Z" + }, + "end": { + "$date": "2020-12-05T07:13:27.000Z" + }, + "events": [ + { + "uuid": "613caf10-ee19-452c-af19-9d0d4b035372", + "start": { + "$date": "2020-12-05T01:27:08.000Z" + }, + "end": { + "$date": "2020-12-05T01:29:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51da626b-12cd-4879-a3e5-7cedcbf9bcca", + "start": { + "$date": "2020-12-05T01:29:08.000Z" + }, + "end": { + "$date": "2020-12-05T01:31:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9bba970-dcf7-4509-9930-d4cff32dfb19", + "start": { + "$date": "2020-12-05T01:31:08.000Z" + }, + "end": { + "$date": "2020-12-05T01:57:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "076b9a18-8d8d-4361-b592-100c1d0e235c", + "start": { + "$date": "2020-12-05T01:57:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:07:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a5c0d0f2-9e2c-4bc2-a74e-fa2bc437ccb3", + "start": { + "$date": "2020-12-05T04:07:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:09:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea155a68-0557-47a7-a4e9-eb9abde96e2c", + "start": { + "$date": "2020-12-05T04:09:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:18:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df8841c2-152e-4365-8c35-5e89bf89aefa", + "start": { + "$date": "2020-12-05T04:18:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:20:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5165610d-79c7-4f37-a5e6-f4279c295512", + "start": { + "$date": "2020-12-05T04:20:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:38:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bceabbfb-8113-4d5f-a1de-4d9df5e47b45", + "start": { + "$date": "2020-12-05T04:38:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:40:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08d88d16-f4d4-486a-b5bf-cc64d982e109", + "start": { + "$date": "2020-12-05T04:40:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:42:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf8e4826-751b-4014-9dd7-a27a3b56c698", + "start": { + "$date": "2020-12-05T04:42:08.000Z" + }, + "end": { + "$date": "2020-12-05T04:44:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aee243b9-7404-4ef0-8830-15bd95eda137", + "start": { + "$date": "2020-12-05T04:44:08.000Z" + }, + "end": { + "$date": "2020-12-05T05:27:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45021017-06ac-4d49-a8d1-881930f914aa", + "start": { + "$date": "2020-12-05T05:27:08.000Z" + }, + "end": { + "$date": "2020-12-05T05:44:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b13159e-73d7-47d4-866c-0b06ee365c67", + "start": { + "$date": "2020-12-05T05:44:08.000Z" + }, + "end": { + "$date": "2020-12-05T05:46:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3370e72f-a6f3-4457-a782-b97805cd9f2d", + "start": { + "$date": "2020-12-05T05:46:08.000Z" + }, + "end": { + "$date": "2020-12-05T07:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "daba0308-7766-4260-ae6b-65feede17bed", + "uuid": "b8281918-0fb9-4724-8fd8-e242346faebf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-05T01:54:31.000Z" + }, + "end": { + "$date": "2020-12-05T02:52:22.000Z" + }, + "events": [ + { + "uuid": "ec716bc7-b78d-44c9-ac83-8e9ff0c708c9", + "start": { + "$date": "2020-12-05T01:54:31.000Z" + }, + "end": { + "$date": "2020-12-05T02:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "106ad938-aa95-4b7f-9680-c338ca982398", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T02:14:57.000Z" + }, + "end": { + "$date": "2020-12-05T02:52:43.000Z" + }, + "events": [ + { + "uuid": "3bc7317d-d365-47f3-9433-eb0afb4a8d7e", + "start": { + "$date": "2020-12-05T02:14:57.000Z" + }, + "end": { + "$date": "2020-12-05T02:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f901af1b-8362-443d-a021-c177e83aef4a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-05T02:52:32.000Z" + }, + "end": { + "$date": "2020-12-05T02:57:02.000Z" + }, + "events": [ + { + "uuid": "df38c498-6e99-47fa-8807-3e6ebb55854a", + "start": { + "$date": "2020-12-05T02:52:32.000Z" + }, + "end": { + "$date": "2020-12-05T02:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4912ed30-6b33-46b4-8f8b-78a6bedb849d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T02:15:00.000Z" + }, + "end": { + "$date": "2020-12-05T02:52:33.000Z" + }, + "events": [ + { + "uuid": "c36ac931-7e28-4782-93e4-770b3586a4c2", + "start": { + "$date": "2020-12-05T02:15:00.000Z" + }, + "end": { + "$date": "2020-12-05T02:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "e355aae2-0afd-42bc-bc71-9df6b30654d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T02:30:25.000Z" + }, + "end": { + "$date": "2020-12-05T02:39:56.000Z" + }, + "events": [ + { + "uuid": "746af55e-5c47-47f8-97aa-7c923216207c", + "start": { + "$date": "2020-12-05T02:30:25.000Z" + }, + "end": { + "$date": "2020-12-05T02:39:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e5b88b7-12f4-42ec-976d-b2d7f2391575", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T02:53:21.000Z" + }, + "end": { + "$date": "2020-12-05T03:01:00.000Z" + }, + "events": [ + { + "uuid": "5c71196c-bdcb-4455-bf18-4b16759339b4", + "start": { + "$date": "2020-12-05T02:53:21.000Z" + }, + "end": { + "$date": "2020-12-05T03:01:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "21bd8682-ab36-489b-b7f8-27515bcf894f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T02:56:11.000Z" + }, + "end": { + "$date": "2020-12-05T02:59:06.000Z" + }, + "events": [ + { + "uuid": "7b7a1256-0454-4d12-915c-ca3753f17a8e", + "start": { + "$date": "2020-12-05T02:56:11.000Z" + }, + "end": { + "$date": "2020-12-05T02:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fa14e4e7-9b01-4609-8998-8d1230013062", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-05T02:56:57.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:41.000Z" + }, + "events": [ + { + "uuid": "4b693f79-4382-4020-906c-5264898f4418", + "start": { + "$date": "2020-12-05T02:56:57.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba1338cd-9cfe-47ec-8967-5d6bae97c5a2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T02:57:16.000Z" + }, + "end": { + "$date": "2020-12-05T03:51:26.000Z" + }, + "events": [ + { + "uuid": "fe7f2143-f1ad-45d2-835e-973cbd235adf", + "start": { + "$date": "2020-12-05T02:57:16.000Z" + }, + "end": { + "$date": "2020-12-05T03:51:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1638bfbd-067b-43cc-955a-cfc9d852cfe8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-05T05:01:47.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:56.000Z" + }, + "events": [ + { + "uuid": "74180a25-7518-49c1-bf5e-28add0989a0a", + "start": { + "$date": "2020-12-05T05:01:47.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "2b9b250b-93cc-4907-9709-09a88decf837", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T02:59:27.000Z" + }, + "end": { + "$date": "2020-12-05T03:18:42.000Z" + }, + "events": [ + { + "uuid": "5e37a312-53a3-410d-94d2-007cd3ea4f0f", + "start": { + "$date": "2020-12-05T02:59:27.000Z" + }, + "end": { + "$date": "2020-12-05T03:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "659f66f2-dac5-45b7-bdee-d2a2e66f85f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T02:59:41.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:32.000Z" + }, + "events": [ + { + "uuid": "8b39aaf0-bcde-485f-ad7a-43aaf6d5e72c", + "start": { + "$date": "2020-12-05T02:59:41.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b350874c-4ff2-4826-840c-db986d3bf1ae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T03:01:04.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:25.000Z" + }, + "events": [ + { + "uuid": "470d675b-b019-4a67-9cf5-5c0005fb620f", + "start": { + "$date": "2020-12-05T03:01:04.000Z" + }, + "end": { + "$date": "2020-12-05T05:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "bb2546d2-8017-434f-95cd-68e1b2066b34", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T03:19:08.000Z" + }, + "end": { + "$date": "2020-12-05T06:44:18.000Z" + }, + "events": [ + { + "uuid": "57547315-9eb8-400d-9092-e97602dbc8d4", + "start": { + "$date": "2020-12-05T03:19:08.000Z" + }, + "end": { + "$date": "2020-12-05T06:44:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08250624-538d-490f-8d5b-8ec26fe49dbe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T04:20:31.000Z" + }, + "end": { + "$date": "2020-12-05T05:00:44.000Z" + }, + "events": [ + { + "uuid": "a4ad2b27-34d5-4982-a124-75faa0b0925b", + "start": { + "$date": "2020-12-05T04:20:31.000Z" + }, + "end": { + "$date": "2020-12-05T05:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a602d4cc-3c91-446b-8eaa-d69abab7b524", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T05:07:14.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:37.000Z" + }, + "events": [ + { + "uuid": "0896d717-752f-485c-b0d3-242b337664a4", + "start": { + "$date": "2020-12-05T05:07:14.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d11efef-2fa1-40db-b6eb-8f0ae5d20005", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-05T05:07:06.000Z" + }, + "end": { + "$date": "2020-12-05T05:44:25.000Z" + }, + "events": [ + { + "uuid": "4048e6c5-4aa8-41f9-9650-4357ce53758a", + "start": { + "$date": "2020-12-05T05:07:06.000Z" + }, + "end": { + "$date": "2020-12-05T05:44:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "664e8a15-5709-48fd-9c29-eefaa4991ead", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-05T05:02:53.000Z" + }, + "end": { + "$date": "2020-12-05T07:54:22.000Z" + }, + "events": [ + { + "uuid": "6ec4985f-564f-423f-a9ec-b937857fa306", + "start": { + "$date": "2020-12-05T05:02:53.000Z" + }, + "end": { + "$date": "2020-12-05T07:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60fc864d-a6db-4bd4-a932-6dc8d8f23459", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T05:07:48.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:29.000Z" + }, + "events": [ + { + "uuid": "ead3aac1-0b99-47c2-8796-547175a4009d", + "start": { + "$date": "2020-12-05T05:07:48.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46d8f005-6b29-4344-a38f-93d9625c5287", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-05T05:07:11.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:36.000Z" + }, + "events": [ + { + "uuid": "00b43086-de5b-4b6d-bd33-89880b463605", + "start": { + "$date": "2020-12-05T05:07:11.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7982a125-4599-4793-a7c5-bde8d4ac454e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T05:07:16.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:39.000Z" + }, + "events": [ + { + "uuid": "124da182-8843-4d45-b50d-a13194376894", + "start": { + "$date": "2020-12-05T05:07:16.000Z" + }, + "end": { + "$date": "2020-12-05T05:42:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cbbeb078-da23-4131-a8f9-8a6ed39446eb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-05T05:03:36.000Z" + }, + "end": { + "$date": "2020-12-05T07:54:19.000Z" + }, + "events": [ + { + "uuid": "983d1f91-9060-45f7-aca2-65ddb8b4fe7d", + "start": { + "$date": "2020-12-05T05:03:36.000Z" + }, + "end": { + "$date": "2020-12-05T07:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32d92cf2-1e15-4e17-9ed9-9ca5e426fa67", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T06:03:47.000Z" + }, + "end": { + "$date": "2020-12-05T06:34:08.000Z" + }, + "events": [ + { + "uuid": "1501d3f7-51ca-41d0-93e6-b72cebb35237", + "start": { + "$date": "2020-12-05T06:03:47.000Z" + }, + "end": { + "$date": "2020-12-05T06:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b88e6aa8-f6e3-41ca-98d7-8940832be3c3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-05T05:44:37.000Z" + }, + "end": { + "$date": "2020-12-05T05:48:56.000Z" + }, + "events": [ + { + "uuid": "0f44796f-48e8-441d-9885-1443ba06b8e0", + "start": { + "$date": "2020-12-05T05:44:37.000Z" + }, + "end": { + "$date": "2020-12-05T05:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "104c96de-9832-4248-9bf2-8d28b326fc82", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T05:44:38.000Z" + }, + "end": { + "$date": "2020-12-05T05:48:55.000Z" + }, + "events": [ + { + "uuid": "6b6755ce-30d0-420c-b1c0-e659db28ee8b", + "start": { + "$date": "2020-12-05T05:44:38.000Z" + }, + "end": { + "$date": "2020-12-05T05:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57d23501-d35a-4553-a641-53e455134ea2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-05T07:17:58.000Z" + }, + "end": { + "$date": "2020-12-05T07:19:29.000Z" + }, + "events": [ + { + "uuid": "940c16e4-0b09-431b-83f4-5e07fb8aa0a6", + "start": { + "$date": "2020-12-05T07:17:58.000Z" + }, + "end": { + "$date": "2020-12-05T07:19:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "706f1c6d-5d17-4c9a-8440-4dd216a7a618", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-05T05:49:32.000Z" + }, + "end": { + "$date": "2020-12-05T05:53:37.000Z" + }, + "events": [ + { + "uuid": "2ea24ce3-13ef-4d9d-a490-e9c32519acc7", + "start": { + "$date": "2020-12-05T05:49:32.000Z" + }, + "end": { + "$date": "2020-12-05T05:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9756789-f813-4bcf-b7fc-0ec0a3fcaefc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T05:49:33.000Z" + }, + "end": { + "$date": "2020-12-05T05:53:37.000Z" + }, + "events": [ + { + "uuid": "d241862d-6192-4d31-9ece-b5bb6291dc35", + "start": { + "$date": "2020-12-05T05:49:33.000Z" + }, + "end": { + "$date": "2020-12-05T05:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cacd3866-b77d-4261-8524-913f167b20fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-05T05:53:42.000Z" + }, + "end": { + "$date": "2020-12-05T08:21:16.000Z" + }, + "events": [ + { + "uuid": "db757708-0897-41af-a3f0-fa986f1a9a85", + "start": { + "$date": "2020-12-05T05:53:42.000Z" + }, + "end": { + "$date": "2020-12-05T08:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7304908-478d-4078-af9d-ca941b19504b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-05T06:03:43.000Z" + }, + "end": { + "$date": "2020-12-05T06:34:15.000Z" + }, + "events": [ + { + "uuid": "80bc4694-8899-4965-989c-1dfe5099f655", + "start": { + "$date": "2020-12-05T06:03:43.000Z" + }, + "end": { + "$date": "2020-12-05T06:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7940d61c-c1f8-438f-b55f-178c6d5880c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T06:03:45.000Z" + }, + "end": { + "$date": "2020-12-05T06:34:11.000Z" + }, + "events": [ + { + "uuid": "b6f2f1df-6db5-4b29-8a64-da80999eaa79", + "start": { + "$date": "2020-12-05T06:03:45.000Z" + }, + "end": { + "$date": "2020-12-05T06:34:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "de274461-a5e8-477a-be99-463232477b34", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-05T06:10:17.000Z" + }, + "end": { + "$date": "2020-12-05T07:54:42.000Z" + }, + "events": [ + { + "uuid": "10a27869-e50e-4d9b-908c-f7e58cfbc464", + "start": { + "$date": "2020-12-05T06:10:17.000Z" + }, + "end": { + "$date": "2020-12-05T07:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1513aeb7-799a-48b7-a3b3-f2d54b14871e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T06:38:33.000Z" + }, + "end": { + "$date": "2020-12-05T07:17:59.000Z" + }, + "events": [ + { + "uuid": "4c469c62-9333-46da-99ba-70de3ba971b8", + "start": { + "$date": "2020-12-05T06:38:33.000Z" + }, + "end": { + "$date": "2020-12-05T07:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34d42c2c-a2c8-461d-85fb-1bf94eadc825", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-05T07:17:49.000Z" + }, + "end": { + "$date": "2020-12-05T07:18:34.000Z" + }, + "events": [ + { + "uuid": "a7a13233-2469-4f5f-9fe7-75239bc147c5", + "start": { + "$date": "2020-12-05T07:17:49.000Z" + }, + "end": { + "$date": "2020-12-05T07:18:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1a5ab4c-381f-4555-a968-3568bfc0c306", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-05T06:38:37.000Z" + }, + "end": { + "$date": "2020-12-05T07:17:55.000Z" + }, + "events": [ + { + "uuid": "1effe8c6-0c26-44bc-81cd-bde243a41c72", + "start": { + "$date": "2020-12-05T06:38:37.000Z" + }, + "end": { + "$date": "2020-12-05T07:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "93988d1b-cb3d-4524-bc68-09104043471b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T06:51:14.000Z" + }, + "end": { + "$date": "2020-12-05T06:52:49.000Z" + }, + "events": [ + { + "uuid": "84f3cc19-2751-4662-853d-a8fd9b8fe6e2", + "start": { + "$date": "2020-12-05T06:51:14.000Z" + }, + "end": { + "$date": "2020-12-05T06:52:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "63c7e3f1-a928-4efb-bbcd-60ce7039c60d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T07:16:17.000Z" + }, + "end": { + "$date": "2020-12-05T07:19:27.000Z" + }, + "events": [ + { + "uuid": "17b62b8a-768c-49ca-99cf-4735375f1237", + "start": { + "$date": "2020-12-05T07:16:17.000Z" + }, + "end": { + "$date": "2020-12-05T07:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "172e333a-de08-4f12-b776-4f1cd018e280", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-05T07:21:49.000Z" + }, + "end": { + "$date": "2020-12-05T07:46:20.000Z" + }, + "events": [ + { + "uuid": "60acfbde-1002-4583-8c59-42b20c47e5f6", + "start": { + "$date": "2020-12-05T07:21:49.000Z" + }, + "end": { + "$date": "2020-12-05T07:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "17bf78d8-2178-46a7-8a4f-412af9b69f13", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T07:33:44.000Z" + }, + "end": { + "$date": "2020-12-05T08:48:24.000Z" + }, + "events": [ + { + "uuid": "122c02a1-2410-4a57-894f-122d8c109c68", + "start": { + "$date": "2020-12-05T07:33:44.000Z" + }, + "end": { + "$date": "2020-12-05T08:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", + "uuid": "8e83949b-362f-4ca0-b1ac-555221bfb42c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-05T07:40:10.000Z" + }, + "end": { + "$date": "2020-12-05T09:36:01.000Z" + }, + "events": [ + { + "uuid": "22ccbe7c-61c2-4b42-9274-9c790aa35b38", + "start": { + "$date": "2020-12-05T07:40:10.000Z" + }, + "end": { + "$date": "2020-12-05T09:36:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "58df73b4-c24f-435a-966b-bd2cc6ad6d2c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T17:24:18.000Z" + }, + "end": { + "$date": "2020-12-05T18:28:15.000Z" + }, + "events": [ + { + "uuid": "198b7ea1-ca16-4de0-a8bc-4d3690b59b9a", + "start": { + "$date": "2020-12-05T17:24:18.000Z" + }, + "end": { + "$date": "2020-12-05T18:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e99128f6-576f-463f-b705-34ef5e864226", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-05T18:08:52.000Z" + }, + "end": { + "$date": "2020-12-05T19:05:32.000Z" + }, + "events": [ + { + "uuid": "1c8bd951-84b0-46bd-be5d-0a4035b9a395", + "start": { + "$date": "2020-12-05T18:08:52.000Z" + }, + "end": { + "$date": "2020-12-05T19:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "01ca82df-3c2b-4c3b-aaef-d86749b8c551", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-05T19:34:28.000Z" + }, + "end": { + "$date": "2020-12-05T21:35:39.000Z" + }, + "events": [ + { + "uuid": "cebde4e3-f75e-4664-9214-52940e6a955c", + "start": { + "$date": "2020-12-05T19:34:28.000Z" + }, + "end": { + "$date": "2020-12-05T21:10:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1141aedc-d02a-465d-b228-fda175d6b067", + "start": { + "$date": "2020-12-05T21:10:28.000Z" + }, + "end": { + "$date": "2020-12-05T21:20:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92292988-f4b8-4e79-a97f-d9a590e9789e", + "start": { + "$date": "2020-12-05T21:20:28.000Z" + }, + "end": { + "$date": "2020-12-05T21:35:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "100a86c1-5b52-4a9e-9aeb-fc9d95da6de8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-05T20:44:33.000Z" + }, + "end": { + "$date": "2020-12-06T03:47:57.000Z" + }, + "events": [ + { + "uuid": "69edad74-23b2-4dc5-ad23-0833a9ba594e", + "start": { + "$date": "2020-12-05T20:44:33.000Z" + }, + "end": { + "$date": "2020-12-05T22:59:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1584534-91d0-4e18-a36b-6862e4ef3bdd", + "start": { + "$date": "2020-12-05T22:59:33.000Z" + }, + "end": { + "$date": "2020-12-05T23:45:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2f6534c5-dc61-4d48-abce-607216d6b52d", + "start": { + "$date": "2020-12-05T23:45:33.000Z" + }, + "end": { + "$date": "2020-12-05T23:55:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "938e6315-2a46-418b-bf09-6a2f462b6954", + "start": { + "$date": "2020-12-05T23:55:33.000Z" + }, + "end": { + "$date": "2020-12-06T02:51:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69bf85c1-b3cf-4e34-99fc-d4cb4b1831d5", + "start": { + "$date": "2020-12-06T02:51:33.000Z" + }, + "end": { + "$date": "2020-12-06T02:53:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a419eb5-3ff7-494b-a29a-0e193ea16ba6", + "start": { + "$date": "2020-12-06T02:53:33.000Z" + }, + "end": { + "$date": "2020-12-06T03:26:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e5b5e80-3f42-4f09-a70d-71ec17b51a62", + "start": { + "$date": "2020-12-06T03:26:33.000Z" + }, + "end": { + "$date": "2020-12-06T03:28:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "435ad084-7cf9-4f1b-a104-a7c8f9d2ceb6", + "start": { + "$date": "2020-12-06T03:28:33.000Z" + }, + "end": { + "$date": "2020-12-06T03:47:57.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2c4ccfa6-cd38-4826-84cc-23fb92215946", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-05T21:32:23.000Z" + }, + "end": { + "$date": "2020-12-05T22:45:01.000Z" + }, + "events": [ + { + "uuid": "66bc65e5-3085-438d-aa0d-0c7a5c457d54", + "start": { + "$date": "2020-12-05T21:32:23.000Z" + }, + "end": { + "$date": "2020-12-05T22:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "55c7c7a7-1dca-464d-a009-6cf52366254f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-05T21:32:27.000Z" + }, + "end": { + "$date": "2020-12-05T22:32:00.000Z" + }, + "events": [ + { + "uuid": "606e9251-99d5-4016-9bae-446faa73a9ce", + "start": { + "$date": "2020-12-05T21:32:27.000Z" + }, + "end": { + "$date": "2020-12-05T22:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "aef97c8f-d1d2-419d-8d3e-b0cfec21c49e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T21:52:00.000Z" + }, + "end": { + "$date": "2020-12-05T22:34:06.000Z" + }, + "events": [ + { + "uuid": "ca7f0531-d638-4e44-8f9d-0897bed78c66", + "start": { + "$date": "2020-12-05T21:52:00.000Z" + }, + "end": { + "$date": "2020-12-05T22:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0347fe0b-5ce5-4721-8d22-65024ef44f5f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T22:09:46.000Z" + }, + "end": { + "$date": "2020-12-05T22:24:18.000Z" + }, + "events": [ + { + "uuid": "eee345bd-02d9-4422-a6cb-a4fd07e69417", + "start": { + "$date": "2020-12-05T22:09:46.000Z" + }, + "end": { + "$date": "2020-12-05T22:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1624940d-3d3a-44cf-982b-04749720c27c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T22:28:02.000Z" + }, + "end": { + "$date": "2020-12-05T22:53:31.000Z" + }, + "events": [ + { + "uuid": "917cfc3c-732b-45dd-be8e-ab0c9903bc4c", + "start": { + "$date": "2020-12-05T22:28:02.000Z" + }, + "end": { + "$date": "2020-12-05T22:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "68d63a23-9650-4861-a0ce-6a147217aac2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-05T22:28:18.000Z" + }, + "end": { + "$date": "2020-12-05T23:35:01.000Z" + }, + "events": [ + { + "uuid": "20979cbb-0f24-4975-9dab-ae83e024211d", + "start": { + "$date": "2020-12-05T22:28:18.000Z" + }, + "end": { + "$date": "2020-12-05T23:23:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6002ed2d-d010-413f-9d19-6ae102f2fdfc", + "start": { + "$date": "2020-12-05T23:23:18.000Z" + }, + "end": { + "$date": "2020-12-05T23:28:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e57f75cc-06de-4b02-be19-51201450d72e", + "start": { + "$date": "2020-12-05T23:28:18.000Z" + }, + "end": { + "$date": "2020-12-05T23:35:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "618d5599-2ef9-4f78-8270-e180263ce700", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T22:34:26.000Z" + }, + "end": { + "$date": "2020-12-05T22:37:19.000Z" + }, + "events": [ + { + "uuid": "a65bde7b-d23f-45f3-9ba8-417b7fbfb00e", + "start": { + "$date": "2020-12-05T22:34:26.000Z" + }, + "end": { + "$date": "2020-12-05T22:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "af5ff20a-e43b-4f6a-8539-c74811b25551", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-05T22:37:33.000Z" + }, + "end": { + "$date": "2020-12-05T23:06:49.000Z" + }, + "events": [ + { + "uuid": "72e5016c-d148-4fb6-8c7b-67119f7a8016", + "start": { + "$date": "2020-12-05T22:37:33.000Z" + }, + "end": { + "$date": "2020-12-05T23:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2982eda0-1982-47b3-809d-5ebefa0dcae5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-05T23:41:41.000Z" + }, + "end": { + "$date": "2020-12-06T00:06:53.000Z" + }, + "events": [ + { + "uuid": "86419f75-7aa9-4d5a-98aa-96f6ca8805e0", + "start": { + "$date": "2020-12-05T23:41:41.000Z" + }, + "end": { + "$date": "2020-12-06T00:06:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", + "uuid": "c829034a-3084-483c-bb53-e896f910b580", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-06T00:05:52.000Z" + }, + "end": { + "$date": "2020-12-06T00:14:08.000Z" + }, + "events": [ + { + "uuid": "24dffa5e-123e-4224-8e33-6994e00bec63", + "start": { + "$date": "2020-12-06T00:05:52.000Z" + }, + "end": { + "$date": "2020-12-06T00:14:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", + "uuid": "cf9ba063-2c48-4852-9933-7458ba2464c9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-06T00:16:45.000Z" + }, + "end": { + "$date": "2020-12-06T00:19:51.000Z" + }, + "events": [ + { + "uuid": "85c60ba4-0ef8-4270-bfa6-1b3c83f05863", + "start": { + "$date": "2020-12-06T00:16:45.000Z" + }, + "end": { + "$date": "2020-12-06T00:19:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", + "uuid": "9507b13b-1737-4659-a0bc-046205b3c1ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-06T00:20:00.000Z" + }, + "end": { + "$date": "2020-12-06T02:56:41.000Z" + }, + "events": [ + { + "uuid": "efa2a9ca-bf2e-4f4d-9c4d-a22e305cfd85", + "start": { + "$date": "2020-12-06T00:20:00.000Z" + }, + "end": { + "$date": "2020-12-06T02:56:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "a6dde931-87da-4641-8f28-0986f8bd3467", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T00:38:01.000Z" + }, + "end": { + "$date": "2020-12-06T00:40:11.000Z" + }, + "events": [ + { + "uuid": "6851f848-dc6e-40b5-aa9d-9176c5cf759c", + "start": { + "$date": "2020-12-06T00:38:01.000Z" + }, + "end": { + "$date": "2020-12-06T00:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "b06caba3-1eac-4ae4-ae27-5496d2e68a31", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T00:46:38.000Z" + }, + "end": { + "$date": "2020-12-06T02:07:35.000Z" + }, + "events": [ + { + "uuid": "7524a904-705c-4f32-a6b0-f7ad6d895c12", + "start": { + "$date": "2020-12-06T00:46:38.000Z" + }, + "end": { + "$date": "2020-12-06T02:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "36a7efde-97ba-45e5-a5b0-73f68aea27ca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T01:30:21.000Z" + }, + "end": { + "$date": "2020-12-06T02:19:34.000Z" + }, + "events": [ + { + "uuid": "820c5119-1dac-4164-9f59-7b1e6b367ba0", + "start": { + "$date": "2020-12-06T01:30:21.000Z" + }, + "end": { + "$date": "2020-12-06T02:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7d8ee338-206c-4d1f-8063-b20ecde46423", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T02:21:43.000Z" + }, + "end": { + "$date": "2020-12-06T06:24:33.000Z" + }, + "events": [ + { + "uuid": "effcbb43-bb32-4efe-8e53-fa9563e296e5", + "start": { + "$date": "2020-12-06T02:21:43.000Z" + }, + "end": { + "$date": "2020-12-06T05:23:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae54caa8-ec65-42db-9f59-50eec8dcc717", + "start": { + "$date": "2020-12-06T05:23:43.000Z" + }, + "end": { + "$date": "2020-12-06T05:27:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "77263303-bd1f-4aa1-a87c-8424ffcfcf76", + "start": { + "$date": "2020-12-06T05:27:43.000Z" + }, + "end": { + "$date": "2020-12-06T05:38:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e977b85-3edb-4d44-a059-5257d4db55d5", + "start": { + "$date": "2020-12-06T05:38:43.000Z" + }, + "end": { + "$date": "2020-12-06T06:24:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b77ecc62-cf96-4870-86b1-26d6bdb712ea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-06T03:14:32.000Z" + }, + "end": { + "$date": "2020-12-06T03:46:40.000Z" + }, + "events": [ + { + "uuid": "bae54199-5c3b-4401-ab11-afac558aa23c", + "start": { + "$date": "2020-12-06T03:14:32.000Z" + }, + "end": { + "$date": "2020-12-06T03:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c319291f-0279-4144-8b3b-2e4e86cca1dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T03:53:48.000Z" + }, + "end": { + "$date": "2020-12-06T04:44:42.000Z" + }, + "events": [ + { + "uuid": "ef70b2b0-4373-4b07-972b-2c16bb623b47", + "start": { + "$date": "2020-12-06T03:53:48.000Z" + }, + "end": { + "$date": "2020-12-06T04:44:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", + "uuid": "95843686-dabf-47d9-a41c-4024351ad5ab", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-06T04:02:58.000Z" + }, + "end": { + "$date": "2020-12-06T05:04:11.000Z" + }, + "events": [ + { + "uuid": "3b55c224-ee54-4999-a9a5-d7191a05b830", + "start": { + "$date": "2020-12-06T04:02:58.000Z" + }, + "end": { + "$date": "2020-12-06T05:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f1ed9a24-062d-46b6-b7d2-313be28d280d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-06T04:36:06.000Z" + }, + "end": { + "$date": "2020-12-06T07:07:12.000Z" + }, + "events": [ + { + "uuid": "677bfd09-299d-4a36-8ab0-99fc87ae718a", + "start": { + "$date": "2020-12-06T04:36:06.000Z" + }, + "end": { + "$date": "2020-12-06T07:07:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1141ce05-1da3-42be-9e29-c2efebe8770d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T04:45:35.000Z" + }, + "end": { + "$date": "2020-12-06T04:52:37.000Z" + }, + "events": [ + { + "uuid": "743d762c-8278-4273-80d8-89f27084ab36", + "start": { + "$date": "2020-12-06T04:45:35.000Z" + }, + "end": { + "$date": "2020-12-06T04:52:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd8544a6-7683-446d-896d-801032de613a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-06T04:57:29.000Z" + }, + "end": { + "$date": "2020-12-06T08:25:07.000Z" + }, + "events": [ + { + "uuid": "72079f5f-c254-4a4c-b9c0-faed2d433f80", + "start": { + "$date": "2020-12-06T04:57:29.000Z" + }, + "end": { + "$date": "2020-12-06T08:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7d4d5254-e835-4112-9657-16d39c05435f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-06T05:24:49.000Z" + }, + "end": { + "$date": "2020-12-06T08:25:04.000Z" + }, + "events": [ + { + "uuid": "0ef4e9a0-959c-4db1-a695-3fcc08bab9ea", + "start": { + "$date": "2020-12-06T05:24:49.000Z" + }, + "end": { + "$date": "2020-12-06T08:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4283b48d-f3f6-47e3-816c-6bc75b11dfee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-06T05:33:16.000Z" + }, + "end": { + "$date": "2020-12-06T07:49:13.000Z" + }, + "events": [ + { + "uuid": "462d54fb-4f3a-4d21-b6f1-e78c6e176101", + "start": { + "$date": "2020-12-06T05:33:16.000Z" + }, + "end": { + "$date": "2020-12-06T06:35:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb4c525e-89d2-4219-bd2e-7042c3765de8", + "start": { + "$date": "2020-12-06T06:35:16.000Z" + }, + "end": { + "$date": "2020-12-06T07:49:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36c49817-195b-4daf-ac59-5befcb06ff6b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-06T06:10:20.000Z" + }, + "end": { + "$date": "2020-12-06T06:26:28.000Z" + }, + "events": [ + { + "uuid": "53b3671e-30cb-491e-b9c0-e7d47ea0f1f2", + "start": { + "$date": "2020-12-06T06:10:20.000Z" + }, + "end": { + "$date": "2020-12-06T06:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b98d43e-0ffd-46c5-85f5-b8bce7a6d6bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-06T06:30:06.000Z" + }, + "end": { + "$date": "2020-12-06T06:43:05.000Z" + }, + "events": [ + { + "uuid": "d5738382-9138-4220-825e-4c3097cddcf2", + "start": { + "$date": "2020-12-06T06:30:06.000Z" + }, + "end": { + "$date": "2020-12-06T06:43:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fa576fb-4a11-407a-b9c8-0a993a3a74dd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-06T06:46:46.000Z" + }, + "end": { + "$date": "2020-12-06T07:04:37.000Z" + }, + "events": [ + { + "uuid": "c3a9ade2-40ea-452d-ab64-938791d43eda", + "start": { + "$date": "2020-12-06T06:46:46.000Z" + }, + "end": { + "$date": "2020-12-06T07:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f275bd11-cfeb-42ca-8002-408a11ed1721", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T06:51:27.000Z" + }, + "end": { + "$date": "2020-12-06T08:14:57.000Z" + }, + "events": [ + { + "uuid": "4e46e06a-8f4b-433d-b94c-309959bb45cb", + "start": { + "$date": "2020-12-06T06:51:27.000Z" + }, + "end": { + "$date": "2020-12-06T08:14:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1914078c-70fb-4ee3-83ac-ea860158846f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-06T07:14:26.000Z" + }, + "end": { + "$date": "2020-12-06T07:22:19.000Z" + }, + "events": [ + { + "uuid": "29fe462b-c5b6-45a7-beef-90ede2aa8f7b", + "start": { + "$date": "2020-12-06T07:14:26.000Z" + }, + "end": { + "$date": "2020-12-06T07:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ec7d5057-9e89-4f3c-bc8a-89555c2b7ff5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T08:16:44.000Z" + }, + "end": { + "$date": "2020-12-06T09:06:28.000Z" + }, + "events": [ + { + "uuid": "5266a7e6-7307-4960-b55e-71014d46ddeb", + "start": { + "$date": "2020-12-06T08:16:44.000Z" + }, + "end": { + "$date": "2020-12-06T08:53:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f958dd7-07da-482a-9ac5-6d98f402fbfb", + "start": { + "$date": "2020-12-06T08:53:44.000Z" + }, + "end": { + "$date": "2020-12-06T08:56:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e1158c1b-ade1-4357-847a-55c7f3c9501d", + "start": { + "$date": "2020-12-06T08:56:44.000Z" + }, + "end": { + "$date": "2020-12-06T09:06:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", + "uuid": "2b06281d-096a-4725-a4af-de4b4b827f94", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-06T08:28:34.000Z" + }, + "end": { + "$date": "2020-12-06T10:26:40.000Z" + }, + "events": [ + { + "uuid": "e3a0b756-49f5-42fb-8400-100e34e05748", + "start": { + "$date": "2020-12-06T08:28:34.000Z" + }, + "end": { + "$date": "2020-12-06T10:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8e64ab76-f1fc-441c-a0b5-39d1bd7faa7a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T09:18:24.000Z" + }, + "end": { + "$date": "2020-12-06T09:19:44.000Z" + }, + "events": [ + { + "uuid": "39711f65-e0bb-4ed7-99a4-dc16cbcf69ed", + "start": { + "$date": "2020-12-06T09:18:24.000Z" + }, + "end": { + "$date": "2020-12-06T09:19:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "402a1f9b-f7f1-4852-9225-e77e69747a51", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-06T09:20:10.000Z" + }, + "end": { + "$date": "2020-12-06T09:30:35.000Z" + }, + "events": [ + { + "uuid": "81710559-3093-4561-bc72-debff356ab17", + "start": { + "$date": "2020-12-06T09:20:10.000Z" + }, + "end": { + "$date": "2020-12-06T09:30:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4f479a31-ab00-45c2-949e-6d777144edd5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-06T15:34:41.000Z" + }, + "end": { + "$date": "2020-12-06T16:00:58.000Z" + }, + "events": [ + { + "uuid": "0125e912-4e7f-4f55-af4c-0c7404b3f54d", + "start": { + "$date": "2020-12-06T15:34:41.000Z" + }, + "end": { + "$date": "2020-12-06T16:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "bdef81a8-bbce-4dc3-aa23-075284c57faa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-06T16:28:22.000Z" + }, + "end": { + "$date": "2020-12-06T19:22:08.000Z" + }, + "events": [ + { + "uuid": "022a0f97-7050-4f7b-ba41-70e7f597a77d", + "start": { + "$date": "2020-12-06T16:28:22.000Z" + }, + "end": { + "$date": "2020-12-06T19:13:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "38f6feb8-9f1c-4146-be38-bdc4a87385c3", + "start": { + "$date": "2020-12-06T19:13:22.000Z" + }, + "end": { + "$date": "2020-12-06T19:22:08.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e5cc46cf-4f8e-4529-8d9e-5792b48c92f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T17:20:43.000Z" + }, + "end": { + "$date": "2020-12-06T19:04:54.000Z" + }, + "events": [ + { + "uuid": "e255f420-c506-4352-afa0-15bb17a461be", + "start": { + "$date": "2020-12-06T17:20:43.000Z" + }, + "end": { + "$date": "2020-12-06T19:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62736fdc-c8b4-4c3a-aaa0-242a0c4b7664", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-06T17:27:28.000Z" + }, + "end": { + "$date": "2020-12-06T17:59:41.000Z" + }, + "events": [ + { + "uuid": "e4122a18-c335-4fd8-8624-f9dbf739418b", + "start": { + "$date": "2020-12-06T17:27:28.000Z" + }, + "end": { + "$date": "2020-12-06T17:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8d21bdf9-0644-4bea-b74a-198d18bb7320", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-06T18:11:06.000Z" + }, + "end": { + "$date": "2020-12-06T19:21:13.000Z" + }, + "events": [ + { + "uuid": "ea22f6d1-bb2e-4064-9e2c-d17fdec574bf", + "start": { + "$date": "2020-12-06T18:11:06.000Z" + }, + "end": { + "$date": "2020-12-06T19:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "a8726d38-274d-4450-82f7-9ed2e87a4d66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T20:04:14.000Z" + }, + "end": { + "$date": "2020-12-06T20:28:20.000Z" + }, + "events": [ + { + "uuid": "785992ff-53e0-48e0-9a4b-d4f5863aea85", + "start": { + "$date": "2020-12-06T20:04:14.000Z" + }, + "end": { + "$date": "2020-12-06T20:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "743459ff-9a0d-44db-a98a-f084935a7abb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-06T20:12:28.000Z" + }, + "end": { + "$date": "2020-12-06T20:42:46.000Z" + }, + "events": [ + { + "uuid": "35e93a23-2f89-4e03-b38a-6c8e2905dc20", + "start": { + "$date": "2020-12-06T20:12:28.000Z" + }, + "end": { + "$date": "2020-12-06T20:42:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "77ebd0a8-59e0-4547-b8de-ac2d0ca2ac4f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T20:42:41.000Z" + }, + "end": { + "$date": "2020-12-06T21:16:03.000Z" + }, + "events": [ + { + "uuid": "a4e545d5-b362-4702-a9b4-383d7ef4c6d8", + "start": { + "$date": "2020-12-06T20:42:41.000Z" + }, + "end": { + "$date": "2020-12-06T21:16:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "20c5b381-1462-4d5e-97a8-bcfaf750ab17", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-06T20:52:11.000Z" + }, + "end": { + "$date": "2020-12-06T21:28:02.000Z" + }, + "events": [ + { + "uuid": "e69c3545-5847-4e75-a03d-265f0d4a55cc", + "start": { + "$date": "2020-12-06T20:52:11.000Z" + }, + "end": { + "$date": "2020-12-06T21:28:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "660d7d57-4d70-4e14-bcf9-22e06fb080c8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-06T21:12:41.000Z" + }, + "end": { + "$date": "2020-12-07T00:11:16.000Z" + }, + "events": [ + { + "uuid": "db3df78f-a42d-4ca8-8e3f-0ce5b62b4892", + "start": { + "$date": "2020-12-06T21:12:41.000Z" + }, + "end": { + "$date": "2020-12-07T00:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "28344c65-dd09-401c-8ce0-dd213e753aca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T21:44:34.000Z" + }, + "end": { + "$date": "2020-12-06T22:06:50.000Z" + }, + "events": [ + { + "uuid": "eec08de4-4ed0-4496-8a5e-77089545e780", + "start": { + "$date": "2020-12-06T21:44:34.000Z" + }, + "end": { + "$date": "2020-12-06T22:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "988084e5-127e-4d56-94fb-5616aeb5b1da", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-06T22:48:33.000Z" + }, + "end": { + "$date": "2020-12-06T23:43:02.000Z" + }, + "events": [ + { + "uuid": "74b83313-6d05-4432-b7dc-4ae94246131e", + "start": { + "$date": "2020-12-06T22:48:33.000Z" + }, + "end": { + "$date": "2020-12-06T23:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "c4b29af2-5fc5-40b2-8616-419972963a5a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-06T22:21:47.000Z" + }, + "end": { + "$date": "2020-12-07T00:06:51.000Z" + }, + "events": [ + { + "uuid": "580706a7-2ac0-449b-8371-7d62787d8284", + "start": { + "$date": "2020-12-06T22:21:47.000Z" + }, + "end": { + "$date": "2020-12-07T00:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "85be06b2-4ec9-4acf-aac5-ec14fa02bbeb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-06T23:14:16.000Z" + }, + "end": { + "$date": "2020-12-07T00:57:43.000Z" + }, + "events": [ + { + "uuid": "ca16bebc-1adc-4b5a-97ff-02ee94b80148", + "start": { + "$date": "2020-12-06T23:14:16.000Z" + }, + "end": { + "$date": "2020-12-07T00:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "3eefd349-dfae-447d-9817-764f552e4d3b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-06T23:36:11.000Z" + }, + "end": { + "$date": "2020-12-07T02:32:49.000Z" + }, + "events": [ + { + "uuid": "008bf4f9-fd89-479e-b794-66c7cfce2480", + "start": { + "$date": "2020-12-06T23:36:11.000Z" + }, + "end": { + "$date": "2020-12-07T00:02:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a49eec8-99d5-4bf5-8700-7358ddce6055", + "start": { + "$date": "2020-12-07T00:02:11.000Z" + }, + "end": { + "$date": "2020-12-07T00:30:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7721cdbd-2397-46f2-be43-9c8a378c5fd8", + "start": { + "$date": "2020-12-07T00:30:11.000Z" + }, + "end": { + "$date": "2020-12-07T02:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "d36d5cd8-8da8-4917-aa93-53f14fa15670", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-06T23:49:33.000Z" + }, + "end": { + "$date": "2020-12-06T23:54:58.000Z" + }, + "events": [ + { + "uuid": "915bb716-6e20-411f-b6e5-96bc22bd3fb8", + "start": { + "$date": "2020-12-06T23:49:33.000Z" + }, + "end": { + "$date": "2020-12-06T23:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "55980ca5-27b4-4510-bee9-e1106a58e0fb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-06T23:55:38.000Z" + }, + "end": { + "$date": "2020-12-06T23:56:58.000Z" + }, + "events": [ + { + "uuid": "daf0cf53-934b-4fbf-92e0-0a5262d366c7", + "start": { + "$date": "2020-12-06T23:55:38.000Z" + }, + "end": { + "$date": "2020-12-06T23:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "8972e95c-15fb-4429-8214-a5d24f6334c3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-06T23:58:48.000Z" + }, + "end": { + "$date": "2020-12-07T00:07:12.000Z" + }, + "events": [ + { + "uuid": "7a89121c-a227-4cf1-826e-05fc41b9862e", + "start": { + "$date": "2020-12-06T23:58:48.000Z" + }, + "end": { + "$date": "2020-12-07T00:07:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "8b8708b7-9f72-4b5f-861d-534528179f0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-06T23:59:02.000Z" + }, + "end": { + "$date": "2020-12-07T00:00:31.000Z" + }, + "events": [ + { + "uuid": "b679cbf2-9543-469b-bfdb-0b3a182fff62", + "start": { + "$date": "2020-12-06T23:59:02.000Z" + }, + "end": { + "$date": "2020-12-07T00:00:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e74fd3f1-f85b-4944-84f3-ac1151cbd283", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T00:07:23.000Z" + }, + "end": { + "$date": "2020-12-07T00:09:28.000Z" + }, + "events": [ + { + "uuid": "1ed4c5d7-8f6c-48fd-96ea-93efef2c356a", + "start": { + "$date": "2020-12-07T00:07:23.000Z" + }, + "end": { + "$date": "2020-12-07T00:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "f71b898e-cf9f-4c98-bad9-41e6c35a839e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T00:09:58.000Z" + }, + "end": { + "$date": "2020-12-07T00:12:18.000Z" + }, + "events": [ + { + "uuid": "a60b03bb-ab69-4b3b-9180-9f6a99c0b3fe", + "start": { + "$date": "2020-12-07T00:09:58.000Z" + }, + "end": { + "$date": "2020-12-07T00:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e544c371-dd7f-4773-bae0-732077c78f64", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2020-12-07T00:15:52.000Z" + }, + "end": { + "$date": "2020-12-07T00:24:18.000Z" + }, + "events": [ + { + "uuid": "2bd3dbfd-3ca2-4ece-a66c-88fe584b6644", + "start": { + "$date": "2020-12-07T00:15:52.000Z" + }, + "end": { + "$date": "2020-12-07T00:24:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e4c38d92-b69b-4bf7-8c0c-6e4fdebd5f1e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T00:17:34.000Z" + }, + "end": { + "$date": "2020-12-07T00:20:29.000Z" + }, + "events": [ + { + "uuid": "2b2adc1e-1a28-435d-ac8a-82eaa18bf8f7", + "start": { + "$date": "2020-12-07T00:17:34.000Z" + }, + "end": { + "$date": "2020-12-07T00:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "c894ea5d-29f6-46a0-ae89-920709bc4c63", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T00:21:14.000Z" + }, + "end": { + "$date": "2020-12-07T00:23:54.000Z" + }, + "events": [ + { + "uuid": "9069d569-eeb1-4587-85d4-30bae391fb86", + "start": { + "$date": "2020-12-07T00:21:14.000Z" + }, + "end": { + "$date": "2020-12-07T00:23:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e294e151-da1e-493c-b769-4ce60ad351b1", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2020-12-07T00:25:05.000Z" + }, + "end": { + "$date": "2020-12-07T02:02:26.000Z" + }, + "events": [ + { + "uuid": "27760de3-ddce-44f1-b754-593acc5dc7cb", + "start": { + "$date": "2020-12-07T00:25:05.000Z" + }, + "end": { + "$date": "2020-12-07T02:02:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e7bcf191-c516-45b7-a6d6-f7f614926ed0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T00:24:39.000Z" + }, + "end": { + "$date": "2020-12-07T02:02:10.000Z" + }, + "events": [ + { + "uuid": "24ff9c6c-6bd9-4b08-865e-03e7071a833a", + "start": { + "$date": "2020-12-07T00:24:39.000Z" + }, + "end": { + "$date": "2020-12-07T02:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5fd4861d-fd98-41e7-970f-aef08b4e2527", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-07T01:27:34.000Z" + }, + "end": { + "$date": "2020-12-07T02:11:51.000Z" + }, + "events": [ + { + "uuid": "84410f0e-5183-43b2-90da-b3a7604383b6", + "start": { + "$date": "2020-12-07T01:27:34.000Z" + }, + "end": { + "$date": "2020-12-07T02:11:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "2ec3013e-42e3-49b1-89b6-23b51e06a08c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T01:42:28.000Z" + }, + "end": { + "$date": "2020-12-07T01:45:53.000Z" + }, + "events": [ + { + "uuid": "95867242-9c3f-4866-85c4-7ef736c17500", + "start": { + "$date": "2020-12-07T01:42:28.000Z" + }, + "end": { + "$date": "2020-12-07T01:45:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c7aafe52-44f8-4960-9377-6bd642ab234c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T01:43:02.000Z" + }, + "end": { + "$date": "2020-12-07T01:49:38.000Z" + }, + "events": [ + { + "uuid": "56480324-7bce-40a2-b583-2bbb2517a43e", + "start": { + "$date": "2020-12-07T01:43:02.000Z" + }, + "end": { + "$date": "2020-12-07T01:49:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4eb08006-6f09-4433-ab9a-2abebad9eb93", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T01:51:48.000Z" + }, + "end": { + "$date": "2020-12-07T01:54:04.000Z" + }, + "events": [ + { + "uuid": "6fba231c-0c9f-4c48-b229-f0860a0ccb9d", + "start": { + "$date": "2020-12-07T01:51:48.000Z" + }, + "end": { + "$date": "2020-12-07T01:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "01eca40c-659e-4a74-ab16-15866293cd0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-07T02:01:39.000Z" + }, + "end": { + "$date": "2020-12-07T02:46:42.000Z" + }, + "events": [ + { + "uuid": "5246b943-7917-40ca-8f54-748bfbda5811", + "start": { + "$date": "2020-12-07T02:01:39.000Z" + }, + "end": { + "$date": "2020-12-07T02:46:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "052a6d99-1988-4071-abbb-e844c9151b1b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T02:03:31.000Z" + }, + "end": { + "$date": "2020-12-07T04:36:05.000Z" + }, + "events": [ + { + "uuid": "b277cf99-bf81-4fa6-a346-0955d06eb0cd", + "start": { + "$date": "2020-12-07T02:03:31.000Z" + }, + "end": { + "$date": "2020-12-07T04:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "84c8a3b7-aff5-45d6-bcd5-98d5d0647d26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T02:42:06.000Z" + }, + "end": { + "$date": "2020-12-07T03:47:46.000Z" + }, + "events": [ + { + "uuid": "d342e6ed-717a-408e-817d-12627ecee4d6", + "start": { + "$date": "2020-12-07T02:42:06.000Z" + }, + "end": { + "$date": "2020-12-07T03:47:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e3bf795d-21e1-45ce-8e2b-3b0296ceca85", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-07T03:18:58.000Z" + }, + "end": { + "$date": "2020-12-07T03:39:43.000Z" + }, + "events": [ + { + "uuid": "a5550ca8-1c24-4a43-be6b-7f619ae769b1", + "start": { + "$date": "2020-12-07T03:18:58.000Z" + }, + "end": { + "$date": "2020-12-07T03:39:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68d2398f-0170-4067-abb5-2d6b58cc5d77", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T03:52:57.000Z" + }, + "end": { + "$date": "2020-12-07T04:18:31.000Z" + }, + "events": [ + { + "uuid": "e9b724e0-22f2-419e-8d58-bece9b172783", + "start": { + "$date": "2020-12-07T03:52:57.000Z" + }, + "end": { + "$date": "2020-12-07T04:18:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "53d97c6d-9546-41cc-94e4-a6db190c7d79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-07T03:59:31.000Z" + }, + "end": { + "$date": "2020-12-07T04:04:37.000Z" + }, + "events": [ + { + "uuid": "486b4681-ce45-4aa2-b0c3-d1fb0ffd5444", + "start": { + "$date": "2020-12-07T03:59:31.000Z" + }, + "end": { + "$date": "2020-12-07T04:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d81ca5b5-c0d7-4ce9-94e0-42ed93ba51f3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-07T04:05:02.000Z" + }, + "end": { + "$date": "2020-12-07T04:46:55.000Z" + }, + "events": [ + { + "uuid": "1a7ecad4-b9d4-4e86-8b35-8aa7f74a4b8f", + "start": { + "$date": "2020-12-07T04:05:02.000Z" + }, + "end": { + "$date": "2020-12-07T04:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "daba0308-7766-4260-ae6b-65feede17bed", + "uuid": "bd18008b-0190-4725-8604-6a311d190fb5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T04:40:04.000Z" + }, + "end": { + "$date": "2020-12-07T05:35:09.000Z" + }, + "events": [ + { + "uuid": "0b81803b-d5ff-4b6e-82ea-5d106757f12b", + "start": { + "$date": "2020-12-07T04:40:04.000Z" + }, + "end": { + "$date": "2020-12-07T05:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "1c61d55b-b433-4a00-8de9-20657b4e6dd0", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2020-12-07T04:45:15.000Z" + }, + "end": { + "$date": "2020-12-07T06:18:57.000Z" + }, + "events": [ + { + "uuid": "b77a9515-404e-4d7f-aad7-b9c703fcc8e1", + "start": { + "$date": "2020-12-07T04:45:15.000Z" + }, + "end": { + "$date": "2020-12-07T06:18:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "d41cfd97-43d6-4150-8d43-6781839ffc07", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-07T04:52:11.000Z" + }, + "end": { + "$date": "2020-12-07T05:36:42.000Z" + }, + "events": [ + { + "uuid": "09900430-e04e-4540-9961-c7ceb02de585", + "start": { + "$date": "2020-12-07T04:52:11.000Z" + }, + "end": { + "$date": "2020-12-07T05:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eace85ea-ac09-4709-89eb-607ee95ab824", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T04:57:54.000Z" + }, + "end": { + "$date": "2020-12-07T05:25:26.000Z" + }, + "events": [ + { + "uuid": "f3e32d64-09e4-4b5d-8f0a-c5f6264435de", + "start": { + "$date": "2020-12-07T04:57:54.000Z" + }, + "end": { + "$date": "2020-12-07T05:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5cf1bd1d-c752-4ab8-87a8-cec4363492d1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-07T04:57:57.000Z" + }, + "end": { + "$date": "2020-12-07T05:24:52.000Z" + }, + "events": [ + { + "uuid": "ec90ad10-f7b6-4416-96eb-88ec86730dd9", + "start": { + "$date": "2020-12-07T04:57:57.000Z" + }, + "end": { + "$date": "2020-12-07T05:24:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b62a464e-93f7-49fc-80f6-68eae8f00d42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-07T05:05:37.000Z" + }, + "end": { + "$date": "2020-12-07T05:26:14.000Z" + }, + "events": [ + { + "uuid": "5a8da9a7-50ca-4dc9-812d-4d177f599f50", + "start": { + "$date": "2020-12-07T05:05:37.000Z" + }, + "end": { + "$date": "2020-12-07T05:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f8455df0-f75e-412f-8973-aa4ca9d2b7b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-07T05:32:08.000Z" + }, + "end": { + "$date": "2020-12-07T05:42:20.000Z" + }, + "events": [ + { + "uuid": "85180b8f-6ccd-46f5-8dc2-acfedd563e09", + "start": { + "$date": "2020-12-07T05:32:08.000Z" + }, + "end": { + "$date": "2020-12-07T05:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4db600d0-6f31-4e39-beb3-86a6ce9423e7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-07T06:27:04.000Z" + }, + "end": { + "$date": "2020-12-07T06:52:00.000Z" + }, + "events": [ + { + "uuid": "bc54bf8b-5b26-41bf-b8b3-7fcd5765a96f", + "start": { + "$date": "2020-12-07T06:27:04.000Z" + }, + "end": { + "$date": "2020-12-07T06:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d79c0b4-48e7-40ae-9e95-2d1725fce23c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T06:39:36.000Z" + }, + "end": { + "$date": "2020-12-07T07:01:31.000Z" + }, + "events": [ + { + "uuid": "e045c560-9c06-4b79-8539-6df2650c02fd", + "start": { + "$date": "2020-12-07T06:39:36.000Z" + }, + "end": { + "$date": "2020-12-07T07:01:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d7bc239-9281-438a-b970-719c5714810e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T07:04:02.000Z" + }, + "end": { + "$date": "2020-12-07T07:28:03.000Z" + }, + "events": [ + { + "uuid": "75e2c342-d84d-460b-9f4b-6a54e1259624", + "start": { + "$date": "2020-12-07T07:04:02.000Z" + }, + "end": { + "$date": "2020-12-07T07:28:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a4a5b395-4758-420f-9e5b-f1df2a84c512", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T15:45:16.000Z" + }, + "end": { + "$date": "2020-12-07T16:31:58.000Z" + }, + "events": [ + { + "uuid": "ad5574c2-c04f-4ffc-9311-cb2b401f7f36", + "start": { + "$date": "2020-12-07T15:45:16.000Z" + }, + "end": { + "$date": "2020-12-07T16:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "a7b03e0e-f9c5-4b44-b5f6-107468a494f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-07T15:49:32.000Z" + }, + "end": { + "$date": "2020-12-07T18:39:01.000Z" + }, + "events": [ + { + "uuid": "4ac1a28a-cfa7-4a45-8fe9-a8e13cb4f627", + "start": { + "$date": "2020-12-07T15:49:32.000Z" + }, + "end": { + "$date": "2020-12-07T17:00:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3a5ac2bd-cca3-4d6c-86cb-11210700e498", + "start": { + "$date": "2020-12-07T17:00:32.000Z" + }, + "end": { + "$date": "2020-12-07T17:03:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "560ad1ba-a3fd-4e3c-b323-a0e7545deefb", + "start": { + "$date": "2020-12-07T17:03:32.000Z" + }, + "end": { + "$date": "2020-12-07T18:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3551580b-ae1d-4a7e-aeeb-a6050f5f02b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T17:58:40.000Z" + }, + "end": { + "$date": "2020-12-07T18:16:26.000Z" + }, + "events": [ + { + "uuid": "9ccd515b-af00-4b60-a03b-0f80e46885b1", + "start": { + "$date": "2020-12-07T17:58:40.000Z" + }, + "end": { + "$date": "2020-12-07T18:16:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "565ed823-8911-49f4-96b5-6cd419f6578e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T18:18:45.000Z" + }, + "end": { + "$date": "2020-12-07T18:42:16.000Z" + }, + "events": [ + { + "uuid": "d003d6a0-498a-436a-867e-717d7b8012a6", + "start": { + "$date": "2020-12-07T18:18:45.000Z" + }, + "end": { + "$date": "2020-12-07T18:42:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "33e58fec-3984-45ce-ad4f-47df22792700", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-07T18:46:52.000Z" + }, + "end": { + "$date": "2020-12-07T19:18:08.000Z" + }, + "events": [ + { + "uuid": "e4f5f919-c78c-44ff-9f16-0ef4504cd80b", + "start": { + "$date": "2020-12-07T18:46:52.000Z" + }, + "end": { + "$date": "2020-12-07T19:18:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "304f9086-477a-4901-9167-68d8c6d7a962", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T20:52:53.000Z" + }, + "end": { + "$date": "2020-12-07T21:32:01.000Z" + }, + "events": [ + { + "uuid": "72e2f5bc-1d3c-4ced-bc73-59ae979e0138", + "start": { + "$date": "2020-12-07T20:52:53.000Z" + }, + "end": { + "$date": "2020-12-07T21:32:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1e58206c-08ab-4172-b1da-8716e973bd30", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T21:33:16.000Z" + }, + "end": { + "$date": "2020-12-07T21:35:51.000Z" + }, + "events": [ + { + "uuid": "96bcf0ed-401f-44d4-81e5-64147fe6ac61", + "start": { + "$date": "2020-12-07T21:33:16.000Z" + }, + "end": { + "$date": "2020-12-07T21:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "4fadae20-2686-4778-8ca0-cede1fd859e6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T21:36:06.000Z" + }, + "end": { + "$date": "2020-12-07T21:37:36.000Z" + }, + "events": [ + { + "uuid": "d1e5f9cf-568c-4985-8540-40d69c92a6f4", + "start": { + "$date": "2020-12-07T21:36:06.000Z" + }, + "end": { + "$date": "2020-12-07T21:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "0dfd0adc-c0c1-4771-8673-259775137b99", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T21:38:11.000Z" + }, + "end": { + "$date": "2020-12-07T21:39:57.000Z" + }, + "events": [ + { + "uuid": "9315d567-41d5-49ab-b510-28701be8a3e7", + "start": { + "$date": "2020-12-07T21:38:11.000Z" + }, + "end": { + "$date": "2020-12-07T21:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "cf549da5-5274-4cbb-818c-d4cc5a8476eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-07T21:40:36.000Z" + }, + "end": { + "$date": "2020-12-07T23:26:01.000Z" + }, + "events": [ + { + "uuid": "c48a81df-bd7d-4c79-bcb5-2a89a64cfac9", + "start": { + "$date": "2020-12-07T21:40:36.000Z" + }, + "end": { + "$date": "2020-12-07T22:02:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bfe1033-2b48-4266-9b18-2d2f5f510e9a", + "start": { + "$date": "2020-12-07T22:02:36.000Z" + }, + "end": { + "$date": "2020-12-07T22:05:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0084a62-0689-4b19-befa-c59392f3f3cf", + "start": { + "$date": "2020-12-07T22:05:36.000Z" + }, + "end": { + "$date": "2020-12-07T23:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "66fc969c-4979-4711-a71f-603c8e0ffa58", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T21:42:12.000Z" + }, + "end": { + "$date": "2020-12-07T21:43:52.000Z" + }, + "events": [ + { + "uuid": "054a7f85-8b7b-4702-a17b-2a5625d264f9", + "start": { + "$date": "2020-12-07T21:42:12.000Z" + }, + "end": { + "$date": "2020-12-07T21:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "929d2207-b115-4938-8613-ba65eed1c920", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T21:49:23.000Z" + }, + "end": { + "$date": "2020-12-07T21:51:04.000Z" + }, + "events": [ + { + "uuid": "b3ce4fa9-dfa5-419b-9968-50f679a6d5d5", + "start": { + "$date": "2020-12-07T21:49:23.000Z" + }, + "end": { + "$date": "2020-12-07T21:51:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "8a4cf84e-5c52-4071-8cd8-49e38bb2a7b2", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2020-12-07T21:50:49.000Z" + }, + "end": { + "$date": "2020-12-07T21:52:20.000Z" + }, + "events": [ + { + "uuid": "a612057e-2cca-461f-b2a7-f7aa73774415", + "start": { + "$date": "2020-12-07T21:50:49.000Z" + }, + "end": { + "$date": "2020-12-07T21:52:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", + "uuid": "53828205-bf31-42fe-a3fb-e69f8070d403", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2020-12-07T21:53:01.000Z" + }, + "end": { + "$date": "2020-12-07T23:08:06.000Z" + }, + "events": [ + { + "uuid": "17e3ae11-c2b6-4a2c-bd4e-8dbb9329c0e1", + "start": { + "$date": "2020-12-07T21:53:01.000Z" + }, + "end": { + "$date": "2020-12-07T23:08:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e030aba4-9ad6-4be9-a6d8-f0b0c475fa2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-07T21:54:03.000Z" + }, + "end": { + "$date": "2020-12-07T21:55:59.000Z" + }, + "events": [ + { + "uuid": "6ae5f169-457a-460e-994a-6099f8c8e7c4", + "start": { + "$date": "2020-12-07T21:54:03.000Z" + }, + "end": { + "$date": "2020-12-07T21:55:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "420bc564-90f8-4bce-9e5a-04c641074370", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T21:57:12.000Z" + }, + "end": { + "$date": "2020-12-07T22:30:13.000Z" + }, + "events": [ + { + "uuid": "36b6d453-a216-4ed9-8d9d-585bbd071fef", + "start": { + "$date": "2020-12-07T21:57:12.000Z" + }, + "end": { + "$date": "2020-12-07T22:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "67910386-dac1-41f3-babf-a7ea317bc1bb", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-07T21:59:12.000Z" + }, + "end": { + "$date": "2020-12-07T22:48:45.000Z" + }, + "events": [ + { + "uuid": "8a3b40f2-d409-4dcb-967a-d8c1fbde3ab7", + "start": { + "$date": "2020-12-07T21:59:12.000Z" + }, + "end": { + "$date": "2020-12-07T22:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dd3b18d1-3a86-4bb9-9b31-48f6163dbcbf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-07T22:18:06.000Z" + }, + "end": { + "$date": "2020-12-08T00:46:43.000Z" + }, + "events": [ + { + "uuid": "4851e31e-e417-4338-9e7c-2ce001067838", + "start": { + "$date": "2020-12-07T22:18:06.000Z" + }, + "end": { + "$date": "2020-12-08T00:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0236553d-7bc9-45d3-bbf4-bc2e3e5d0a1f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-07T22:34:32.000Z" + }, + "end": { + "$date": "2020-12-07T23:04:30.000Z" + }, + "events": [ + { + "uuid": "725f0e83-3c49-414f-a729-b106d0aa2cb0", + "start": { + "$date": "2020-12-07T22:34:32.000Z" + }, + "end": { + "$date": "2020-12-07T23:04:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b0543c3c-61f5-44f4-8a53-0b73a68ba78e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-07T22:53:49.000Z" + }, + "end": { + "$date": "2020-12-07T23:47:10.000Z" + }, + "events": [ + { + "uuid": "638cf53f-179c-4fdd-b394-c995e54c26f9", + "start": { + "$date": "2020-12-07T22:53:49.000Z" + }, + "end": { + "$date": "2020-12-07T23:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5bb4ad9e-163b-437f-bf50-f3fe305a7f7e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-07T23:28:32.000Z" + }, + "end": { + "$date": "2020-12-08T01:35:01.000Z" + }, + "events": [ + { + "uuid": "26ef276a-8ffc-440d-8fbc-c6f5d95e618f", + "start": { + "$date": "2020-12-07T23:28:32.000Z" + }, + "end": { + "$date": "2020-12-08T01:35:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "81f6b648-27f1-472a-8a75-5970a73f273b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-07T23:43:40.000Z" + }, + "end": { + "$date": "2020-12-08T04:45:55.000Z" + }, + "events": [ + { + "uuid": "99d4a65e-cc97-4862-ade7-7d151916de90", + "start": { + "$date": "2020-12-07T23:43:40.000Z" + }, + "end": { + "$date": "2020-12-08T02:44:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d5869ff-c042-4f2b-b417-c1714e3726ed", + "start": { + "$date": "2020-12-08T02:44:40.000Z" + }, + "end": { + "$date": "2020-12-08T02:48:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7c65b3e-030e-4e0a-a23e-87bbcc8e04ec", + "start": { + "$date": "2020-12-08T02:48:40.000Z" + }, + "end": { + "$date": "2020-12-08T04:45:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "fa7f0ccc-5276-4632-ac1d-82160299dd01", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T23:54:43.000Z" + }, + "end": { + "$date": "2020-12-07T23:56:39.000Z" + }, + "events": [ + { + "uuid": "ac413066-a5c1-478d-8007-ae26d7ec937c", + "start": { + "$date": "2020-12-07T23:54:43.000Z" + }, + "end": { + "$date": "2020-12-07T23:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "8e6baebc-332c-49b4-aa14-a9597af13ca0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-07T23:59:03.000Z" + }, + "end": { + "$date": "2020-12-08T00:00:19.000Z" + }, + "events": [ + { + "uuid": "47a41333-c02e-4f59-9a3d-9721a0628404", + "start": { + "$date": "2020-12-07T23:59:03.000Z" + }, + "end": { + "$date": "2020-12-08T00:00:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "63f7a713-78ff-4b8b-81a1-fc75601f1e63", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-08T00:42:56.000Z" + }, + "end": { + "$date": "2020-12-08T00:46:57.000Z" + }, + "events": [ + { + "uuid": "8e69fc61-f6df-4892-be79-8c2c81972536", + "start": { + "$date": "2020-12-08T00:42:56.000Z" + }, + "end": { + "$date": "2020-12-08T00:46:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "e252effd-254d-4441-a871-7e8964067771", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T00:44:03.000Z" + }, + "end": { + "$date": "2020-12-08T02:21:25.000Z" + }, + "events": [ + { + "uuid": "f52a18e8-87f9-4118-b333-1e804a9fdd0f", + "start": { + "$date": "2020-12-08T00:44:03.000Z" + }, + "end": { + "$date": "2020-12-08T02:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cb7a475f-ac32-475f-b9e0-c4476e9f3131", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-08T02:32:14.000Z" + }, + "end": { + "$date": "2020-12-08T02:42:07.000Z" + }, + "events": [ + { + "uuid": "58468c24-a1c2-47f4-8b41-c5d443b3ccb0", + "start": { + "$date": "2020-12-08T02:32:14.000Z" + }, + "end": { + "$date": "2020-12-08T02:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0b719a89-2ea8-42c9-b205-e6e942fe5509", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-08T02:36:21.000Z" + }, + "end": { + "$date": "2020-12-08T02:50:38.000Z" + }, + "events": [ + { + "uuid": "4c9563d7-7812-4b8d-b526-fcfd436b61b8", + "start": { + "$date": "2020-12-08T02:36:21.000Z" + }, + "end": { + "$date": "2020-12-08T02:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bec891d2-63b0-45a9-8d58-a961d3396f3e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-08T02:51:21.000Z" + }, + "end": { + "$date": "2020-12-08T03:57:28.000Z" + }, + "events": [ + { + "uuid": "c5a76565-875c-49d1-8c4d-80aef17f1acf", + "start": { + "$date": "2020-12-08T02:51:21.000Z" + }, + "end": { + "$date": "2020-12-08T03:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "deac3a1a-0a56-4df2-bc6a-647a6b3d8fc7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T03:26:38.000Z" + }, + "end": { + "$date": "2020-12-08T04:09:19.000Z" + }, + "events": [ + { + "uuid": "67756412-c14a-4c89-a742-5a11d5929731", + "start": { + "$date": "2020-12-08T03:26:38.000Z" + }, + "end": { + "$date": "2020-12-08T04:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ed3d3c12-beb9-4564-8972-9e57140ef3cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-08T03:48:05.000Z" + }, + "end": { + "$date": "2020-12-08T04:19:23.000Z" + }, + "events": [ + { + "uuid": "b55264d1-4a6e-4688-a1f0-c6c469c99f63", + "start": { + "$date": "2020-12-08T03:48:05.000Z" + }, + "end": { + "$date": "2020-12-08T04:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "179cd55b-360e-4c4a-9554-cee8d59c9737", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-08T04:02:48.000Z" + }, + "end": { + "$date": "2020-12-08T04:50:32.000Z" + }, + "events": [ + { + "uuid": "906bef11-ed52-4c04-87d2-701f0a63d16a", + "start": { + "$date": "2020-12-08T04:02:48.000Z" + }, + "end": { + "$date": "2020-12-08T04:50:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5614807b-a137-4bcb-ac19-04a950c8cb99", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-08T04:10:51.000Z" + }, + "end": { + "$date": "2020-12-08T05:27:17.000Z" + }, + "events": [ + { + "uuid": "20ca49ec-48be-494f-9ac0-63b9e8799046", + "start": { + "$date": "2020-12-08T04:10:51.000Z" + }, + "end": { + "$date": "2020-12-08T05:27:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c421f10a-a702-4c0b-9cd1-388c76bbc993", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-08T04:17:59.000Z" + }, + "end": { + "$date": "2020-12-08T05:06:36.000Z" + }, + "events": [ + { + "uuid": "bf251b9b-c9c2-4220-a3e8-ac13e5bbda11", + "start": { + "$date": "2020-12-08T04:17:59.000Z" + }, + "end": { + "$date": "2020-12-08T05:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4209ecfd-0c93-4ba7-9e89-a4cf10f0b8ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T04:22:30.000Z" + }, + "end": { + "$date": "2020-12-08T04:48:25.000Z" + }, + "events": [ + { + "uuid": "26485aab-557f-4319-8173-33062769fd14", + "start": { + "$date": "2020-12-08T04:22:30.000Z" + }, + "end": { + "$date": "2020-12-08T04:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86f034d1-743b-46eb-aaa6-dd03d80bc4dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T04:50:36.000Z" + }, + "end": { + "$date": "2020-12-08T05:17:19.000Z" + }, + "events": [ + { + "uuid": "744c1470-5b64-4ac5-95c8-3d90559eb64a", + "start": { + "$date": "2020-12-08T04:50:36.000Z" + }, + "end": { + "$date": "2020-12-08T05:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2c14196-4513-44ea-a106-6000767c02f3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-08T05:06:05.000Z" + }, + "end": { + "$date": "2020-12-08T05:32:50.000Z" + }, + "events": [ + { + "uuid": "e6542715-d0cd-4fdd-94ba-feb3e9d76bb5", + "start": { + "$date": "2020-12-08T05:06:05.000Z" + }, + "end": { + "$date": "2020-12-08T05:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1bf1314-e02d-41f9-b7ab-3f81329312b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T05:19:47.000Z" + }, + "end": { + "$date": "2020-12-08T05:38:19.000Z" + }, + "events": [ + { + "uuid": "152b4506-f53f-49f1-bc49-fa90e799ef7c", + "start": { + "$date": "2020-12-08T05:19:47.000Z" + }, + "end": { + "$date": "2020-12-08T05:38:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "086495d1-52ad-44a9-b188-d8cb870d57af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-08T05:47:52.000Z" + }, + "end": { + "$date": "2020-12-08T06:28:06.000Z" + }, + "events": [ + { + "uuid": "345a7e64-63cb-426c-a2f4-e12daa4e5980", + "start": { + "$date": "2020-12-08T05:47:52.000Z" + }, + "end": { + "$date": "2020-12-08T06:28:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7c72c95c-72b1-4109-928a-90a2989b1b22", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-08T08:55:21.000Z" + }, + "end": { + "$date": "2020-12-08T09:03:25.000Z" + }, + "events": [ + { + "uuid": "a0264828-9244-4b16-ace4-806f279b466c", + "start": { + "$date": "2020-12-08T08:55:21.000Z" + }, + "end": { + "$date": "2020-12-08T09:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "e5ba19a3-ed90-45de-b6a4-dee9e38fd1fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-08T16:27:19.000Z" + }, + "end": { + "$date": "2020-12-08T17:31:49.000Z" + }, + "events": [ + { + "uuid": "d4f82b5b-8dc0-4d52-8324-9236dfb2dca8", + "start": { + "$date": "2020-12-08T16:27:19.000Z" + }, + "end": { + "$date": "2020-12-08T17:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "24a48c3a-741d-43a5-b976-c8f76e5acf2e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-08T17:36:38.000Z" + }, + "end": { + "$date": "2020-12-08T18:46:15.000Z" + }, + "events": [ + { + "uuid": "7d2d2fce-9984-4969-882e-dad37ae9daf3", + "start": { + "$date": "2020-12-08T17:36:38.000Z" + }, + "end": { + "$date": "2020-12-08T18:39:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "be51dfa4-fed4-44aa-a6e1-c2533bbec6fe", + "start": { + "$date": "2020-12-08T18:39:38.000Z" + }, + "end": { + "$date": "2020-12-08T18:46:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "866a5fe2-9226-4905-9869-a751640bae9f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T18:10:39.000Z" + }, + "end": { + "$date": "2020-12-08T18:25:11.000Z" + }, + "events": [ + { + "uuid": "aa05d18c-9fc1-49ca-b9c7-840e1fd3a66b", + "start": { + "$date": "2020-12-08T18:10:39.000Z" + }, + "end": { + "$date": "2020-12-08T18:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16b4dabf-4203-46fe-b12e-edcddabdbcad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T18:25:45.000Z" + }, + "end": { + "$date": "2020-12-08T18:27:06.000Z" + }, + "events": [ + { + "uuid": "b8a476f7-1e79-43ec-8715-2d03b02546c9", + "start": { + "$date": "2020-12-08T18:25:45.000Z" + }, + "end": { + "$date": "2020-12-08T18:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18c7eb80-15b0-42dd-883f-180ae8db39fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T18:43:21.000Z" + }, + "end": { + "$date": "2020-12-08T19:18:52.000Z" + }, + "events": [ + { + "uuid": "389ed94c-920d-4ccf-9ce2-4c864e259805", + "start": { + "$date": "2020-12-08T18:43:21.000Z" + }, + "end": { + "$date": "2020-12-08T19:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3923daa7-f133-411f-8aeb-e79afc9f5e8d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-08T19:26:32.000Z" + }, + "end": { + "$date": "2020-12-08T19:59:38.000Z" + }, + "events": [ + { + "uuid": "8513fcf9-5b09-43f6-9c6e-a85b461c9230", + "start": { + "$date": "2020-12-08T19:26:32.000Z" + }, + "end": { + "$date": "2020-12-08T19:59:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "79e7aefb-74ec-4b84-ad4c-df17a5b6199b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-08T21:22:54.000Z" + }, + "end": { + "$date": "2020-12-08T22:32:35.000Z" + }, + "events": [ + { + "uuid": "a01f4db1-7a15-4f20-8a63-4d98c428cea5", + "start": { + "$date": "2020-12-08T21:22:54.000Z" + }, + "end": { + "$date": "2020-12-08T22:32:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed7d53ab-90ce-4814-aa1e-3154fdb59e4f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-08T22:08:42.000Z" + }, + "end": { + "$date": "2020-12-08T22:13:48.000Z" + }, + "events": [ + { + "uuid": "34d22104-ea24-4a2d-b596-cbc06bb8c390", + "start": { + "$date": "2020-12-08T22:08:42.000Z" + }, + "end": { + "$date": "2020-12-08T22:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d4ccc96b-f694-478e-9e3c-d99aaa3e486c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-08T22:42:02.000Z" + }, + "end": { + "$date": "2020-12-08T23:53:26.000Z" + }, + "events": [ + { + "uuid": "d5500bf5-cb5d-4879-ba58-6f10d711c96d", + "start": { + "$date": "2020-12-08T22:42:02.000Z" + }, + "end": { + "$date": "2020-12-08T23:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1f155fde-1b80-4e6b-a077-2732004d1684", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-08T23:52:14.000Z" + }, + "end": { + "$date": "2020-12-09T01:05:57.000Z" + }, + "events": [ + { + "uuid": "244c88ce-a7c9-4839-b091-09faacc4f378", + "start": { + "$date": "2020-12-08T23:52:14.000Z" + }, + "end": { + "$date": "2020-12-09T01:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d3cfc20f-d7b6-49d5-b4b9-ba20b3c4565b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-09T00:58:51.000Z" + }, + "end": { + "$date": "2020-12-09T03:40:41.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-09T00:58:51.000Z" + }, + "end": { + "$date": "2020-12-09T03:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "a1efa776-cf55-4587-a449-584b35d9aa2e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T01:39:07.000Z" + }, + "end": { + "$date": "2020-12-09T01:49:22.000Z" + }, + "events": [ + { + "uuid": "2111e192-0987-4066-9895-d9b0bfe8978f", + "start": { + "$date": "2020-12-09T01:39:07.000Z" + }, + "end": { + "$date": "2020-12-09T01:49:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cee99b5-03a0-423f-abf5-ac0f8c21125b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T02:13:24.000Z" + }, + "end": { + "$date": "2020-12-09T02:13:24.000Z" + }, + "events": [ + { + "uuid": "35ef9ac5-8078-48cb-b6e1-15bdc204f812", + "start": { + "$date": "2020-12-09T02:13:24.000Z" + }, + "end": { + "$date": "2020-12-09T02:13:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4b2f4477-9934-43b5-8529-308bb1e6576a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-09T01:59:47.000Z" + }, + "end": { + "$date": "2020-12-09T02:30:34.000Z" + }, + "events": [ + { + "uuid": "6a6faea0-af55-4fa0-9458-11d703d920a0", + "start": { + "$date": "2020-12-09T01:59:47.000Z" + }, + "end": { + "$date": "2020-12-09T02:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6d75b1b8-4465-4c17-81c5-d903affa0b58", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-09T02:02:04.000Z" + }, + "end": { + "$date": "2020-12-09T05:25:09.000Z" + }, + "events": [ + { + "uuid": "97d142e9-0077-465d-a448-8429e84d8a15", + "start": { + "$date": "2020-12-09T02:02:04.000Z" + }, + "end": { + "$date": "2020-12-09T03:14:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56ff2b82-f366-45a5-89e3-41d6fc05ef33", + "start": { + "$date": "2020-12-09T03:14:04.000Z" + }, + "end": { + "$date": "2020-12-09T03:30:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5c3e4a3d-91e2-4c54-b9b9-bd12a6ec85d4", + "start": { + "$date": "2020-12-09T03:30:04.000Z" + }, + "end": { + "$date": "2020-12-09T04:54:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "139ea8ee-3e08-43dc-aa22-1fde16a5c5d3", + "start": { + "$date": "2020-12-09T04:54:04.000Z" + }, + "end": { + "$date": "2020-12-09T04:56:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1dabedf3-5931-4620-aab0-7d89df31b545", + "start": { + "$date": "2020-12-09T04:56:04.000Z" + }, + "end": { + "$date": "2020-12-09T05:25:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "f2c7ea90-8e47-4d85-ba94-205c22d00633", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-09T02:07:30.000Z" + }, + "end": { + "$date": "2020-12-09T03:54:23.000Z" + }, + "events": [ + { + "uuid": "c7657733-b119-4061-aa0a-3f241bdeb378", + "start": { + "$date": "2020-12-09T02:07:30.000Z" + }, + "end": { + "$date": "2020-12-09T03:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41ab1670-8107-4c28-ad8b-0e2a3ce18578", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T02:15:18.000Z" + }, + "end": { + "$date": "2020-12-09T02:40:21.000Z" + }, + "events": [ + { + "uuid": "3b72a568-02cb-4684-96da-21e8390d37eb", + "start": { + "$date": "2020-12-09T02:15:18.000Z" + }, + "end": { + "$date": "2020-12-09T02:40:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "45066e0c-cf49-40df-8434-15497e0b5493", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T02:40:54.000Z" + }, + "end": { + "$date": "2020-12-09T03:54:09.000Z" + }, + "events": [ + { + "uuid": "a5114dd9-e426-4b23-9d5d-ac9dfd68b37e", + "start": { + "$date": "2020-12-09T02:40:54.000Z" + }, + "end": { + "$date": "2020-12-09T03:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "63166634-21e8-499b-abff-27b9001d3b42", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-09T03:17:55.000Z" + }, + "end": { + "$date": "2020-12-09T06:36:37.000Z" + }, + "events": [ + { + "uuid": "fa0a965e-60ca-4cc0-8571-316bea0aabd9", + "start": { + "$date": "2020-12-09T03:17:55.000Z" + }, + "end": { + "$date": "2020-12-09T06:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "728b9916-68bc-4a7f-ba6f-69ef42591bcf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-09T03:48:48.000Z" + }, + "end": { + "$date": "2020-12-09T04:46:28.000Z" + }, + "events": [ + { + "uuid": "30fadf41-f876-4d48-83de-155d1ecbd01d", + "start": { + "$date": "2020-12-09T03:48:48.000Z" + }, + "end": { + "$date": "2020-12-09T04:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d7ceeb57-3db4-4da8-a317-a6c9f138db07", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-09T03:56:23.000Z" + }, + "end": { + "$date": "2020-12-09T06:36:48.000Z" + }, + "events": [ + { + "uuid": "f349db09-22ec-4b68-a6de-3e6611f5cefc", + "start": { + "$date": "2020-12-09T03:56:23.000Z" + }, + "end": { + "$date": "2020-12-09T06:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "75e46ccb-5669-4c98-9f48-44d6b7e35e92", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-09T04:16:13.000Z" + }, + "end": { + "$date": "2020-12-09T04:54:37.000Z" + }, + "events": [ + { + "uuid": "6d99b631-e6ab-45c0-adba-4c5849329d2f", + "start": { + "$date": "2020-12-09T04:16:13.000Z" + }, + "end": { + "$date": "2020-12-09T04:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e45e3f75-ff94-4897-9f68-84301bbcad12", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T04:21:48.000Z" + }, + "end": { + "$date": "2020-12-09T04:47:28.000Z" + }, + "events": [ + { + "uuid": "8268ce3c-d47e-437a-8e08-d8e60d518b9a", + "start": { + "$date": "2020-12-09T04:21:48.000Z" + }, + "end": { + "$date": "2020-12-09T04:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "305b1d3c-bb96-44af-8a17-4d47e13cbcaf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-09T04:29:37.000Z" + }, + "end": { + "$date": "2020-12-09T05:14:19.000Z" + }, + "events": [ + { + "uuid": "4329cc44-a190-4b2e-b55d-eff9c08ae51a", + "start": { + "$date": "2020-12-09T04:29:37.000Z" + }, + "end": { + "$date": "2020-12-09T05:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f5a5c00e-2bea-4a9b-b61b-de43cbfd3e82", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-09T04:55:04.000Z" + }, + "end": { + "$date": "2020-12-09T06:11:44.000Z" + }, + "events": [ + { + "uuid": "349dad90-1191-4012-a424-528664bdc235", + "start": { + "$date": "2020-12-09T04:55:04.000Z" + }, + "end": { + "$date": "2020-12-09T06:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ffeb9025-7a8c-4786-aca4-494c3d579388", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-09T05:26:08.000Z" + }, + "end": { + "$date": "2020-12-09T06:20:37.000Z" + }, + "events": [ + { + "uuid": "91c51335-5cbe-40f9-afed-2e6b82fe9eff", + "start": { + "$date": "2020-12-09T05:26:08.000Z" + }, + "end": { + "$date": "2020-12-09T06:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3e1a31f3-63eb-469d-a738-90a06408f968", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-09T05:26:10.000Z" + }, + "end": { + "$date": "2020-12-09T06:11:26.000Z" + }, + "events": [ + { + "uuid": "8021c224-c583-4e48-be48-befe3278580e", + "start": { + "$date": "2020-12-09T05:26:10.000Z" + }, + "end": { + "$date": "2020-12-09T06:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "5e3739fc-d1e4-4334-881d-dbc16caf2701", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2020-12-09T07:42:08.000Z" + }, + "end": { + "$date": "2020-12-09T07:52:16.000Z" + }, + "events": [ + { + "uuid": "2ae7158f-ffd0-4c6a-8976-3e516a1459da", + "start": { + "$date": "2020-12-09T07:42:08.000Z" + }, + "end": { + "$date": "2020-12-09T07:52:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "01baed73-9862-4fc0-b8e9-0d2ae7cc3ebf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-09T18:44:43.000Z" + }, + "end": { + "$date": "2020-12-09T19:53:03.000Z" + }, + "events": [ + { + "uuid": "ded42f61-cb77-401d-bf6b-e0bfdb63cc02", + "start": { + "$date": "2020-12-09T18:44:43.000Z" + }, + "end": { + "$date": "2020-12-09T19:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "326fafa8-4519-4ca7-9ad4-193e8283864a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T19:19:36.000Z" + }, + "end": { + "$date": "2020-12-09T19:48:34.000Z" + }, + "events": [ + { + "uuid": "ac783d31-3d0b-4f99-beba-70c1e2c6303d", + "start": { + "$date": "2020-12-09T19:19:36.000Z" + }, + "end": { + "$date": "2020-12-09T19:48:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "0172a110-0f9e-48bb-a38c-af837ecb02e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-09T21:10:29.000Z" + }, + "end": { + "$date": "2020-12-09T21:55:26.000Z" + }, + "events": [ + { + "uuid": "16d6b53b-a001-4b58-8233-5492f7c4f922", + "start": { + "$date": "2020-12-09T21:10:29.000Z" + }, + "end": { + "$date": "2020-12-09T21:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "e2883ce4-1687-41ba-a396-82a082fbce65", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-09T21:19:00.000Z" + }, + "end": { + "$date": "2020-12-09T21:51:17.000Z" + }, + "events": [ + { + "uuid": "d7b589f2-5886-4c6a-ab26-9207d9b65b22", + "start": { + "$date": "2020-12-09T21:19:00.000Z" + }, + "end": { + "$date": "2020-12-09T21:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f8e8b1d7-fdc1-4042-8a9f-785d7e2fc624", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-09T22:35:09.000Z" + }, + "end": { + "$date": "2020-12-10T00:11:27.000Z" + }, + "events": [ + { + "uuid": "5f0324a6-72c2-44a1-8442-7989d9137a98", + "start": { + "$date": "2020-12-09T22:35:09.000Z" + }, + "end": { + "$date": "2020-12-10T00:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1e6e04bc-45a3-473d-920d-4e4234c4838a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-09T22:39:52.000Z" + }, + "end": { + "$date": "2020-12-09T23:36:26.000Z" + }, + "events": [ + { + "uuid": "614c62f5-ac98-4fdc-ab19-df0312f0dcf4", + "start": { + "$date": "2020-12-09T22:39:52.000Z" + }, + "end": { + "$date": "2020-12-09T23:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "c277f18f-263b-472d-98b9-d783e227a8b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-09T22:42:10.000Z" + }, + "end": { + "$date": "2020-12-09T23:35:25.000Z" + }, + "events": [ + { + "uuid": "4f75d1e7-fc37-4f82-acb0-22b18bac0aa1", + "start": { + "$date": "2020-12-09T22:42:10.000Z" + }, + "end": { + "$date": "2020-12-09T23:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "db368277-f890-4636-8434-e02d02d60af1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-09T23:36:27.000Z" + }, + "end": { + "$date": "2020-12-10T01:00:12.000Z" + }, + "events": [ + { + "uuid": "ea6702a3-cb9d-44a2-801f-4349e2c660ab", + "start": { + "$date": "2020-12-09T23:36:27.000Z" + }, + "end": { + "$date": "2020-12-10T01:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "7eadb64e-c4f8-4e3a-b598-e9badaf11c10", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-10T01:18:59.000Z" + }, + "end": { + "$date": "2020-12-10T01:24:10.000Z" + }, + "events": [ + { + "uuid": "456e2764-c5a4-4368-ba53-e6af1579cd06", + "start": { + "$date": "2020-12-10T01:18:59.000Z" + }, + "end": { + "$date": "2020-12-10T01:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ae343aaa-e101-46ca-bdeb-3b15e65887ac", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-12-10T01:42:44.000Z" + }, + "end": { + "$date": "2020-12-10T02:34:54.000Z" + }, + "events": [ + { + "uuid": "735ccb9c-3be2-4053-8ce5-4913d000e21b", + "start": { + "$date": "2020-12-10T01:42:44.000Z" + }, + "end": { + "$date": "2020-12-10T02:34:54.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bf5ca3dd-9a91-41f4-ab6a-e4f16cf52b96", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-10T01:43:20.000Z" + }, + "end": { + "$date": "2020-12-10T02:34:52.000Z" + }, + "events": [ + { + "uuid": "52889bfd-c2d7-49c1-a308-59cf2d855956", + "start": { + "$date": "2020-12-10T01:43:20.000Z" + }, + "end": { + "$date": "2020-12-10T02:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c19e48a2-8c10-420c-8f6e-20618c72a1c9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T02:03:15.000Z" + }, + "end": { + "$date": "2020-12-10T02:46:50.000Z" + }, + "events": [ + { + "uuid": "61c1f7eb-6e58-485d-8de4-c6e157e4f991", + "start": { + "$date": "2020-12-10T02:03:15.000Z" + }, + "end": { + "$date": "2020-12-10T02:46:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "fb4c8667-4163-44ea-8f8d-3b54ee5eac74", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-10T02:20:11.000Z" + }, + "end": { + "$date": "2020-12-10T03:08:25.000Z" + }, + "events": [ + { + "uuid": "dedea341-580d-4923-8897-9bad3b3ee637", + "start": { + "$date": "2020-12-10T02:20:11.000Z" + }, + "end": { + "$date": "2020-12-10T03:08:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d148e6e1-5f58-4d16-99a7-6e785fee58e1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-10T03:16:52.000Z" + }, + "end": { + "$date": "2020-12-10T03:53:12.000Z" + }, + "events": [ + { + "uuid": "aa25d110-f173-4f38-92fc-6e8df2b6a8c5", + "start": { + "$date": "2020-12-10T03:16:52.000Z" + }, + "end": { + "$date": "2020-12-10T03:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "5477cba8-299c-453a-9ec6-3e272446102f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-10T03:33:33.000Z" + }, + "end": { + "$date": "2020-12-10T06:20:29.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-10T03:33:33.000Z" + }, + "end": { + "$date": "2020-12-10T06:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02f163b5-0a8c-4589-9301-37c5e5120335", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T03:50:56.000Z" + }, + "end": { + "$date": "2020-12-10T03:50:52.000Z" + }, + "events": [ + { + "uuid": "410862aa-2560-42fe-b63e-b8020704a143", + "start": { + "$date": "2020-12-10T03:50:56.000Z" + }, + "end": { + "$date": "2020-12-10T03:50:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e45fed7f-d938-4d4b-87ea-056baa0dfe16", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-10T03:36:27.000Z" + }, + "end": { + "$date": "2020-12-10T05:32:18.000Z" + }, + "events": [ + { + "uuid": "2602c8db-e12d-4c67-8153-74596a8431e8", + "start": { + "$date": "2020-12-10T03:36:27.000Z" + }, + "end": { + "$date": "2020-12-10T05:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8982914-6a87-4cff-af0f-b161b17dd794", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T04:18:46.000Z" + }, + "end": { + "$date": "2020-12-10T04:18:57.000Z" + }, + "events": [ + { + "uuid": "a49f3976-890d-4d90-a9ab-e4fe4137664b", + "start": { + "$date": "2020-12-10T04:18:46.000Z" + }, + "end": { + "$date": "2020-12-10T04:18:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "661c3777-9ca8-4ba9-ad78-54e6c8626887", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-10T03:54:02.000Z" + }, + "end": { + "$date": "2020-12-10T05:14:01.000Z" + }, + "events": [ + { + "uuid": "50b9cf0e-7f67-40e9-a143-b5e3018a23d5", + "start": { + "$date": "2020-12-10T03:54:02.000Z" + }, + "end": { + "$date": "2020-12-10T05:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "60e6e096-4726-433f-95d4-ebd09a2af6b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T04:46:10.000Z" + }, + "end": { + "$date": "2020-12-10T06:00:28.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-10T04:46:10.000Z" + }, + "end": { + "$date": "2020-12-10T06:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "62366c0f-eac1-45fb-af2c-388ca6e9f0b2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-10T05:12:31.000Z" + }, + "end": { + "$date": "2020-12-10T05:12:37.000Z" + }, + "events": [ + { + "uuid": "cbc88631-a8dc-45f9-8834-206a79383d8b", + "start": { + "$date": "2020-12-10T05:12:31.000Z" + }, + "end": { + "$date": "2020-12-10T05:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "325dd63c-9987-43de-ae50-6ce3c8436236", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-10T04:50:11.000Z" + }, + "end": { + "$date": "2020-12-10T05:38:24.000Z" + }, + "events": [ + { + "uuid": "c932072c-9dd2-4a2a-8904-99936da887fc", + "start": { + "$date": "2020-12-10T04:50:11.000Z" + }, + "end": { + "$date": "2020-12-10T05:38:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6893bc00-f2d6-4ef9-9f12-75c5a7f55036", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-10T05:12:41.000Z" + }, + "end": { + "$date": "2020-12-10T06:36:04.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-10T05:12:41.000Z" + }, + "end": { + "$date": "2020-12-10T06:36:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c00cfae7-740b-492f-9cab-13b0b5d2aee4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T05:21:04.000Z" + }, + "end": { + "$date": "2020-12-10T05:29:44.000Z" + }, + "events": [ + { + "uuid": "44037b7f-a53f-4634-9101-8dfbc62ccb9d", + "start": { + "$date": "2020-12-10T05:21:04.000Z" + }, + "end": { + "$date": "2020-12-10T05:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "787ed1c4-4006-4cd2-a7fc-561d02a140c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-10T05:32:23.000Z" + }, + "end": { + "$date": "2020-12-10T06:57:15.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-10T05:32:23.000Z" + }, + "end": { + "$date": "2020-12-10T06:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "265b4a6a-c290-4d67-9c90-accf1e2c4d5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T05:32:30.000Z" + }, + "end": { + "$date": "2020-12-10T05:34:35.000Z" + }, + "events": [ + { + "uuid": "c2834720-2ed7-43da-a5b7-fc3449ef5acb", + "start": { + "$date": "2020-12-10T05:32:30.000Z" + }, + "end": { + "$date": "2020-12-10T05:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0fea9b85-86e2-4895-8ee5-a9d251226764", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T05:34:56.000Z" + }, + "end": { + "$date": "2020-12-10T05:35:55.000Z" + }, + "events": [ + { + "uuid": "6b550d09-fca1-4dfa-9be3-b04126ed03f6", + "start": { + "$date": "2020-12-10T05:34:56.000Z" + }, + "end": { + "$date": "2020-12-10T05:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6fe1e0bf-8622-4a8f-b56f-f3e2dd424ef7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T05:48:26.000Z" + }, + "end": { + "$date": "2020-12-10T05:50:40.000Z" + }, + "events": [ + { + "uuid": "fa20102a-47e0-4ecc-a172-eb462f10355c", + "start": { + "$date": "2020-12-10T05:48:26.000Z" + }, + "end": { + "$date": "2020-12-10T05:50:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "db93c4a1-7833-403d-859d-e2657d5bcf66", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T06:01:43.000Z" + }, + "end": { + "$date": "2020-12-10T06:57:10.000Z" + }, + "events": [ + { + "uuid": "041e97c4-5990-4da4-8d2e-df5b56eecf94", + "start": { + "$date": "2020-12-10T06:01:43.000Z" + }, + "end": { + "$date": "2020-12-10T06:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "04808716-4c5d-4de8-be9b-4ae7d8f37a26", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-10T06:37:05.000Z" + }, + "end": { + "$date": "2020-12-10T07:03:48.000Z" + }, + "events": [ + { + "uuid": "f90c664f-08d5-4166-bbfe-d04c06194fd2", + "start": { + "$date": "2020-12-10T06:37:05.000Z" + }, + "end": { + "$date": "2020-12-10T07:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c8109631-42d4-4c13-9076-c4930c7c2d6d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T06:59:01.000Z" + }, + "end": { + "$date": "2020-12-10T07:11:01.000Z" + }, + "events": [ + { + "uuid": "4f9ff49f-6282-4a1b-bd12-4735ffab3111", + "start": { + "$date": "2020-12-10T06:59:01.000Z" + }, + "end": { + "$date": "2020-12-10T07:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "72825102-0cac-4e3d-8f74-817b472545c8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-10T19:16:49.000Z" + }, + "end": { + "$date": "2020-12-10T19:24:11.000Z" + }, + "events": [ + { + "uuid": "f1b9d2d0-c3f6-478f-8195-0aee7ae54be4", + "start": { + "$date": "2020-12-10T19:16:49.000Z" + }, + "end": { + "$date": "2020-12-10T19:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef8615bc-4723-4319-823c-0ddc40785110", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T19:34:01.000Z" + }, + "end": { + "$date": "2020-12-10T19:55:21.000Z" + }, + "events": [ + { + "uuid": "c46d0179-743a-4806-af58-9ce5ce1fd503", + "start": { + "$date": "2020-12-10T19:34:01.000Z" + }, + "end": { + "$date": "2020-12-10T19:55:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "cc86c132-7d34-4493-ac27-876c1ae5b726", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-10T19:33:44.000Z" + }, + "end": { + "$date": "2020-12-10T19:51:46.000Z" + }, + "events": [ + { + "uuid": "ef5e2277-5e50-47a3-b5e6-aad655278206", + "start": { + "$date": "2020-12-10T19:33:44.000Z" + }, + "end": { + "$date": "2020-12-10T19:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "32ce5be9-6eba-4bfe-ba8b-e2ef77067b6e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-10T19:52:05.000Z" + }, + "end": { + "$date": "2020-12-10T20:46:13.000Z" + }, + "events": [ + { + "uuid": "4787b1fa-6168-4928-b563-d0ffe63d325a", + "start": { + "$date": "2020-12-10T19:52:05.000Z" + }, + "end": { + "$date": "2020-12-10T20:46:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "2abb6e8d-baa9-44ce-be92-6b93986e9b0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-10T20:46:18.000Z" + }, + "end": { + "$date": "2020-12-10T22:16:50.000Z" + }, + "events": [ + { + "uuid": "c3097f90-76e8-40cf-85c2-27feb86be030", + "start": { + "$date": "2020-12-10T20:46:18.000Z" + }, + "end": { + "$date": "2020-12-10T21:48:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12150fe5-2774-49cc-9655-2bbba7bbc99b", + "start": { + "$date": "2020-12-10T21:48:18.000Z" + }, + "end": { + "$date": "2020-12-10T22:01:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d761026e-7541-46f0-8c8d-4834c89d39db", + "start": { + "$date": "2020-12-10T22:01:18.000Z" + }, + "end": { + "$date": "2020-12-10T22:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4bc0c100-28f6-408f-a8b4-283d11cc8b2b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T21:03:24.000Z" + }, + "end": { + "$date": "2020-12-10T23:21:52.000Z" + }, + "events": [ + { + "uuid": "fb8dce50-7c9c-415d-8123-f983a21fd252", + "start": { + "$date": "2020-12-10T21:03:24.000Z" + }, + "end": { + "$date": "2020-12-10T22:01:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08a6adce-ba6f-4924-a56e-9ac34a91d3e8", + "start": { + "$date": "2020-12-10T22:01:24.000Z" + }, + "end": { + "$date": "2020-12-10T22:10:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf330034-172f-4a6b-9b14-83c64c0a8bff", + "start": { + "$date": "2020-12-10T22:10:24.000Z" + }, + "end": { + "$date": "2020-12-10T23:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6308a1b7-55a2-49e1-8cb9-982bb9de2f0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T22:20:44.000Z" + }, + "end": { + "$date": "2020-12-10T22:31:35.000Z" + }, + "events": [ + { + "uuid": "fcb09bf2-79e2-4355-a254-7139881e6bdf", + "start": { + "$date": "2020-12-10T22:20:44.000Z" + }, + "end": { + "$date": "2020-12-10T22:31:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "49b46e30-771c-4eed-8088-08dcbdc307a2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-10T22:24:45.000Z" + }, + "end": { + "$date": "2020-12-10T23:08:38.000Z" + }, + "events": [ + { + "uuid": "f9005b28-d4c4-45c4-ae86-8776e1e7562c", + "start": { + "$date": "2020-12-10T22:24:45.000Z" + }, + "end": { + "$date": "2020-12-10T23:08:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "983aafcc-b173-4fed-9c44-437f9ef25e56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T22:34:25.000Z" + }, + "end": { + "$date": "2020-12-10T22:47:42.000Z" + }, + "events": [ + { + "uuid": "628db11c-e4a8-41b9-b826-945b018e2ae5", + "start": { + "$date": "2020-12-10T22:34:25.000Z" + }, + "end": { + "$date": "2020-12-10T22:47:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98201816-436f-4dfc-b582-af1621119871", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T23:13:02.000Z" + }, + "end": { + "$date": "2020-12-10T23:13:04.000Z" + }, + "events": [ + { + "uuid": "294f8073-ec4b-4654-9636-9c1adbbb76f0", + "start": { + "$date": "2020-12-10T23:13:02.000Z" + }, + "end": { + "$date": "2020-12-10T23:13:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "7861c353-0101-450f-8e20-87b089c514e2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-10T23:09:14.000Z" + }, + "end": { + "$date": "2020-12-11T01:59:36.000Z" + }, + "events": [ + { + "uuid": "ffb6d0dc-85ad-41ec-870f-4fd705dfab65", + "start": { + "$date": "2020-12-10T23:09:14.000Z" + }, + "end": { + "$date": "2020-12-11T00:16:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cdb60cbb-10ff-4b03-9d23-118448c7b85c", + "start": { + "$date": "2020-12-11T00:16:14.000Z" + }, + "end": { + "$date": "2020-12-11T00:42:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "da16f5fd-d073-4e81-9c0e-d91c4d1442f2", + "start": { + "$date": "2020-12-11T00:42:14.000Z" + }, + "end": { + "$date": "2020-12-11T01:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8370014-17e8-4b0f-b8da-ba6c54fa566d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T23:16:41.000Z" + }, + "end": { + "$date": "2020-12-10T23:17:39.000Z" + }, + "events": [ + { + "uuid": "5d355f8d-33ea-4192-ac13-8d9cac5dded4", + "start": { + "$date": "2020-12-10T23:16:41.000Z" + }, + "end": { + "$date": "2020-12-10T23:17:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe597070-82aa-4ade-b12d-011a2e84a12f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-10T23:16:43.000Z" + }, + "end": { + "$date": "2020-12-10T23:40:19.000Z" + }, + "events": [ + { + "uuid": "6ba2116e-742a-40fb-8ae2-586af3e4522b", + "start": { + "$date": "2020-12-10T23:16:43.000Z" + }, + "end": { + "$date": "2020-12-10T23:40:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa06cfbf-1b62-4167-807e-4842833655fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T23:17:52.000Z" + }, + "end": { + "$date": "2020-12-10T23:40:19.000Z" + }, + "events": [ + { + "uuid": "c3a4091f-6e25-4dd4-814f-e22d5434f146", + "start": { + "$date": "2020-12-10T23:17:52.000Z" + }, + "end": { + "$date": "2020-12-10T23:40:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c2110643-004a-46d5-9dd2-11fb1552ad3f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-10T23:30:18.000Z" + }, + "end": { + "$date": "2020-12-10T23:44:39.000Z" + }, + "events": [ + { + "uuid": "e1110640-61ac-4e8e-b15d-9bd6b4d25ac1", + "start": { + "$date": "2020-12-10T23:30:18.000Z" + }, + "end": { + "$date": "2020-12-10T23:44:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4867ecb-5cb2-40da-a0c8-1bdc3cd5588a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-10T23:45:08.000Z" + }, + "end": { + "$date": "2020-12-11T00:03:30.000Z" + }, + "events": [ + { + "uuid": "09f5fbbb-a2d2-4406-8b31-e399b8e11f64", + "start": { + "$date": "2020-12-10T23:45:08.000Z" + }, + "end": { + "$date": "2020-12-11T00:03:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b81d9ea-a2d7-4513-943f-bdf39ab95c74", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-10T23:44:59.000Z" + }, + "end": { + "$date": "2020-12-11T00:03:29.000Z" + }, + "events": [ + { + "uuid": "eb334d96-e692-4b7e-84fb-02e910f1c039", + "start": { + "$date": "2020-12-10T23:44:59.000Z" + }, + "end": { + "$date": "2020-12-11T00:03:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4455ff38-e83e-4d2d-932a-7239bac05c49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T00:30:15.000Z" + }, + "end": { + "$date": "2020-12-11T00:30:16.000Z" + }, + "events": [ + { + "uuid": "aa6ceb19-d36f-47ce-8046-8fdcc504c9c9", + "start": { + "$date": "2020-12-11T00:30:15.000Z" + }, + "end": { + "$date": "2020-12-11T00:30:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a1d1205-f6c5-430a-97df-03cd0a16f68b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-11T00:21:15.000Z" + }, + "end": { + "$date": "2020-12-11T00:30:06.000Z" + }, + "events": [ + { + "uuid": "84cf4eb9-ba16-4a07-9f84-685abb59a7b1", + "start": { + "$date": "2020-12-11T00:21:15.000Z" + }, + "end": { + "$date": "2020-12-11T00:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "057aafd9-d5c3-4017-8b18-1cb9618b41b7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T00:10:22.000Z" + }, + "end": { + "$date": "2020-12-11T00:30:03.000Z" + }, + "events": [ + { + "uuid": "67de6bd7-2556-496b-a42e-dbd88375c466", + "start": { + "$date": "2020-12-11T00:10:22.000Z" + }, + "end": { + "$date": "2020-12-11T00:30:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a6249be-59d4-4a1d-96da-6992a50b1f6b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T01:00:26.000Z" + }, + "end": { + "$date": "2020-12-11T01:00:22.000Z" + }, + "events": [ + { + "uuid": "7e3e48f7-18a6-4482-bd85-c1c8653e86d9", + "start": { + "$date": "2020-12-11T01:00:26.000Z" + }, + "end": { + "$date": "2020-12-11T01:00:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11c42c0c-2a34-418a-82b7-ea7fcc79d814", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-11T00:32:17.000Z" + }, + "end": { + "$date": "2020-12-11T00:33:26.000Z" + }, + "events": [ + { + "uuid": "f9f994c9-94c5-4c7d-b7af-896681dc068f", + "start": { + "$date": "2020-12-11T00:32:17.000Z" + }, + "end": { + "$date": "2020-12-11T00:33:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "957318ed-3721-46ef-87ea-0f65913f8e2f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-11T00:32:16.000Z" + }, + "end": { + "$date": "2020-12-11T00:33:26.000Z" + }, + "events": [ + { + "uuid": "84c2452b-5b82-4bb3-a532-5f47b8a459ad", + "start": { + "$date": "2020-12-11T00:32:16.000Z" + }, + "end": { + "$date": "2020-12-11T00:33:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9475a910-69ba-4cb1-add3-c68d5ffcf660", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-11T00:37:11.000Z" + }, + "end": { + "$date": "2020-12-11T01:00:16.000Z" + }, + "events": [ + { + "uuid": "d4729446-f3ee-4a69-bd2b-6ac3b09032ad", + "start": { + "$date": "2020-12-11T00:37:11.000Z" + }, + "end": { + "$date": "2020-12-11T01:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5ea565c-dc8e-4094-9c64-8edf8dd2b03c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-11T00:37:31.000Z" + }, + "end": { + "$date": "2020-12-11T01:00:22.000Z" + }, + "events": [ + { + "uuid": "9c8751c5-469a-4896-92cd-5dba5b0d0078", + "start": { + "$date": "2020-12-11T00:37:31.000Z" + }, + "end": { + "$date": "2020-12-11T01:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bc8b5d0f-0d23-4404-9c0c-f25e2fb13e05", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-12-11T01:19:26.000Z" + }, + "end": { + "$date": "2020-12-11T03:25:24.000Z" + }, + "events": [ + { + "uuid": "b068a52a-27bd-4813-803c-7e19ae0c5ffd", + "start": { + "$date": "2020-12-11T01:19:26.000Z" + }, + "end": { + "$date": "2020-12-11T03:25:24.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a1fd57b5-04ad-4772-a424-171ebc163543", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-11T01:51:46.000Z" + }, + "end": { + "$date": "2020-12-11T01:53:43.000Z" + }, + "events": [ + { + "uuid": "2f26a553-bde2-4cb5-8632-ddf551f176a4", + "start": { + "$date": "2020-12-11T01:51:46.000Z" + }, + "end": { + "$date": "2020-12-11T01:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "dced6043-de91-431a-880a-39c329c1b99d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-11T02:11:56.000Z" + }, + "end": { + "$date": "2020-12-11T02:13:56.000Z" + }, + "events": [ + { + "uuid": "7d679a33-0857-4bc3-bfd3-b77388bcbd96", + "start": { + "$date": "2020-12-11T02:11:56.000Z" + }, + "end": { + "$date": "2020-12-11T02:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8ac3b09-3081-41ab-a4cc-049c927c1e90", + "uuid": "f285faba-5814-4757-ac85-56352426948c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-11T02:12:58.000Z" + }, + "end": { + "$date": "2020-12-11T02:14:51.000Z" + }, + "events": [ + { + "uuid": "ffe8dd65-5645-49f3-a4db-dad0d9de1312", + "start": { + "$date": "2020-12-11T02:12:58.000Z" + }, + "end": { + "$date": "2020-12-11T02:14:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "c52fbf50-d5c2-4188-b65a-85a686045e6a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-11T02:14:56.000Z" + }, + "end": { + "$date": "2020-12-11T02:27:18.000Z" + }, + "events": [ + { + "uuid": "87ff66d2-3adc-4aed-98d2-2058ae5725d0", + "start": { + "$date": "2020-12-11T02:14:56.000Z" + }, + "end": { + "$date": "2020-12-11T02:27:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8ac3b09-3081-41ab-a4cc-049c927c1e90", + "uuid": "097b8c58-c070-4340-808b-8c1a360884b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-11T02:20:53.000Z" + }, + "end": { + "$date": "2020-12-11T02:28:58.000Z" + }, + "events": [ + { + "uuid": "28143e92-48c1-49a2-bb0c-bb4eedd7c76e", + "start": { + "$date": "2020-12-11T02:20:53.000Z" + }, + "end": { + "$date": "2020-12-11T02:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "700ec8d1-03db-4036-9857-46a938d993c6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-11T02:28:33.000Z" + }, + "end": { + "$date": "2020-12-11T02:30:28.000Z" + }, + "events": [ + { + "uuid": "31d21b45-8a38-46bc-8183-7d5491aeb75b", + "start": { + "$date": "2020-12-11T02:28:33.000Z" + }, + "end": { + "$date": "2020-12-11T02:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "010c7e5e-dbce-4017-9398-ae764dede4e2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-11T02:33:19.000Z" + }, + "end": { + "$date": "2020-12-11T02:41:09.000Z" + }, + "events": [ + { + "uuid": "ad538c0f-0884-45ff-936d-eaf20ccb06fb", + "start": { + "$date": "2020-12-11T02:33:19.000Z" + }, + "end": { + "$date": "2020-12-11T02:41:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c85acf1c-3c93-4735-848d-f74008e07554", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-11T02:36:04.000Z" + }, + "end": { + "$date": "2020-12-11T03:20:48.000Z" + }, + "events": [ + { + "uuid": "836ad1a5-2046-488b-b209-eb4a0d4499de", + "start": { + "$date": "2020-12-11T02:36:04.000Z" + }, + "end": { + "$date": "2020-12-11T03:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4b52f343-eb67-4bde-a8aa-6fb929969369", + "uuid": "5ebd7f39-a4e7-4c67-bdbb-b5576b4d98b8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-11T03:19:25.000Z" + }, + "end": { + "$date": "2020-12-11T09:59:32.000Z" + }, + "events": [ + { + "uuid": "a03b3947-4453-4b72-8576-ddaf2d09cb98", + "start": { + "$date": "2020-12-11T03:19:25.000Z" + }, + "end": { + "$date": "2020-12-11T09:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "14e902bf-195e-4f6f-b3af-c37a1e6316e5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-11T03:26:39.000Z" + }, + "end": { + "$date": "2020-12-11T08:01:15.000Z" + }, + "events": [ + { + "uuid": "2fdb30a6-c6f3-4425-81cb-bac950bc5df3", + "start": { + "$date": "2020-12-11T03:26:39.000Z" + }, + "end": { + "$date": "2020-12-11T08:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed2ec38c-5fe2-48d1-963b-f9481cb05b83", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T03:28:00.000Z" + }, + "end": { + "$date": "2020-12-11T03:56:54.000Z" + }, + "events": [ + { + "uuid": "217c3980-24e6-4518-9472-b22299442b40", + "start": { + "$date": "2020-12-11T03:28:00.000Z" + }, + "end": { + "$date": "2020-12-11T03:56:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3f8c988e-a380-491c-b9b5-1f2ee185b0b2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-11T03:31:05.000Z" + }, + "end": { + "$date": "2020-12-11T05:50:41.000Z" + }, + "events": [ + { + "uuid": "494b2729-28cb-4eea-a4c0-e6675a1fb02c", + "start": { + "$date": "2020-12-11T03:31:05.000Z" + }, + "end": { + "$date": "2020-12-11T05:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "90d63d09-6936-473e-8212-a4eafe11b76f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T03:35:57.000Z" + }, + "end": { + "$date": "2020-12-11T04:56:02.000Z" + }, + "events": [ + { + "uuid": "80279e93-39b1-4d81-a918-735cc57da45c", + "start": { + "$date": "2020-12-11T03:35:57.000Z" + }, + "end": { + "$date": "2020-12-11T04:56:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c2011b63-c314-43a1-ac73-4c7a535e5534", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-11T03:50:56.000Z" + }, + "end": { + "$date": "2020-12-11T04:48:33.000Z" + }, + "events": [ + { + "uuid": "8a520c8c-efdd-4a7d-a640-2a7f9b403572", + "start": { + "$date": "2020-12-11T03:50:56.000Z" + }, + "end": { + "$date": "2020-12-11T04:08:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2fe529e2-dbdd-4ad5-8cea-d38d35f21d46", + "start": { + "$date": "2020-12-11T04:08:56.000Z" + }, + "end": { + "$date": "2020-12-11T04:10:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9636b05c-4ec3-4d68-bf39-70579f9e7f6c", + "start": { + "$date": "2020-12-11T04:10:56.000Z" + }, + "end": { + "$date": "2020-12-11T04:48:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7848714-7910-4c43-bfe3-5a7cee94d8ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T03:57:10.000Z" + }, + "end": { + "$date": "2020-12-11T03:58:11.000Z" + }, + "events": [ + { + "uuid": "d60ed969-2ccf-4b24-8796-e318b15f1b94", + "start": { + "$date": "2020-12-11T03:57:10.000Z" + }, + "end": { + "$date": "2020-12-11T03:58:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "a4bf1339-c68f-4bdc-bcdc-6b1fe8bb52db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T04:07:35.000Z" + }, + "end": { + "$date": "2020-12-11T05:33:20.000Z" + }, + "events": [ + { + "uuid": "62b691b7-5731-4e19-acc3-76585366e0e0", + "start": { + "$date": "2020-12-11T04:07:35.000Z" + }, + "end": { + "$date": "2020-12-11T05:33:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "32334892-c1fb-4645-ae9c-ba5b99be7f71", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-11T04:10:46.000Z" + }, + "end": { + "$date": "2020-12-11T05:26:41.000Z" + }, + "events": [ + { + "uuid": "29e85a32-98f7-4917-ba1e-e6d281c0e579", + "start": { + "$date": "2020-12-11T04:10:46.000Z" + }, + "end": { + "$date": "2020-12-11T05:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "dd6f93c1-1834-4067-875d-f04965b94703", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-11T04:56:20.000Z" + }, + "end": { + "$date": "2020-12-11T05:14:04.000Z" + }, + "events": [ + { + "uuid": "569bcff1-6766-4a22-b5e0-808797b94930", + "start": { + "$date": "2020-12-11T04:56:20.000Z" + }, + "end": { + "$date": "2020-12-11T05:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "2982a7dc-fde4-4a47-8f19-905a5ec64c87", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-11T05:28:40.000Z" + }, + "end": { + "$date": "2020-12-11T07:42:30.000Z" + }, + "events": [ + { + "uuid": "f513b9c7-5f0e-4e7d-99f0-c4c587e1d56f", + "start": { + "$date": "2020-12-11T05:28:40.000Z" + }, + "end": { + "$date": "2020-12-11T07:42:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "91dbce0a-cc8e-4e4b-8456-8fc0bb1c4b3b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-11T05:32:04.000Z" + }, + "end": { + "$date": "2020-12-11T07:15:37.000Z" + }, + "events": [ + { + "uuid": "eddf3476-b6a7-479c-9fb5-54327c392b59", + "start": { + "$date": "2020-12-11T05:32:04.000Z" + }, + "end": { + "$date": "2020-12-11T07:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "e0aa7b6c-54af-437c-9c83-a8bb1655e82b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T05:35:54.000Z" + }, + "end": { + "$date": "2020-12-11T06:10:22.000Z" + }, + "events": [ + { + "uuid": "aca6ed3d-f7cd-4340-9f11-7d642ad6522b", + "start": { + "$date": "2020-12-11T05:35:54.000Z" + }, + "end": { + "$date": "2020-12-11T06:10:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "deb83b3b-8710-4b26-a7a6-35349e42fbdd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-11T05:51:19.000Z" + }, + "end": { + "$date": "2020-12-11T05:53:34.000Z" + }, + "events": [ + { + "uuid": "32b61f21-7843-45e9-a06a-24fb41efeadb", + "start": { + "$date": "2020-12-11T05:51:19.000Z" + }, + "end": { + "$date": "2020-12-11T05:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "649c7f97-c6c3-4fb8-9a29-f6d234636f9c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T06:17:47.000Z" + }, + "end": { + "$date": "2020-12-11T06:31:46.000Z" + }, + "events": [ + { + "uuid": "dc72c375-0081-4693-b88e-8bafceafc33e", + "start": { + "$date": "2020-12-11T06:17:47.000Z" + }, + "end": { + "$date": "2020-12-11T06:31:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "81c429d7-3f1f-47be-9395-50b8e80f1897", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T16:15:45.000Z" + }, + "end": { + "$date": "2020-12-11T16:24:02.000Z" + }, + "events": [ + { + "uuid": "67b8817a-16a1-44cb-86f9-2084ddb6e3d2", + "start": { + "$date": "2020-12-11T16:15:45.000Z" + }, + "end": { + "$date": "2020-12-11T16:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c6277fe6-ed65-4cd8-96a8-413e5c2b0209", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T16:24:56.000Z" + }, + "end": { + "$date": "2020-12-11T17:25:04.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-11T16:24:56.000Z" + }, + "end": { + "$date": "2020-12-11T17:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86fb9235-7c66-449e-9498-68444ec73435", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T17:20:22.000Z" + }, + "end": { + "$date": "2020-12-11T17:39:46.000Z" + }, + "events": [ + { + "uuid": "0a59b565-2229-4bb8-8e1e-882a203ae373", + "start": { + "$date": "2020-12-11T17:20:22.000Z" + }, + "end": { + "$date": "2020-12-11T17:39:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "26e0f526-e612-45b3-801d-6cbc132609da", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T17:25:28.000Z" + }, + "end": { + "$date": "2020-12-11T18:07:26.000Z" + }, + "events": [ + { + "uuid": "76eb8c65-01e4-46ac-81df-fba130a1dd99", + "start": { + "$date": "2020-12-11T17:25:28.000Z" + }, + "end": { + "$date": "2020-12-11T18:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4195ea6a-8ac8-4254-878a-a538098e2b37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T18:18:22.000Z" + }, + "end": { + "$date": "2020-12-11T18:32:10.000Z" + }, + "events": [ + { + "uuid": "d6fc24df-1dbd-4f3f-859c-629b6bdb54ee", + "start": { + "$date": "2020-12-11T18:18:22.000Z" + }, + "end": { + "$date": "2020-12-11T18:32:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "444b604c-4707-4300-b711-0dac3d19ccbe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T18:13:30.000Z" + }, + "end": { + "$date": "2020-12-11T18:27:07.000Z" + }, + "events": [ + { + "uuid": "57ba5778-4831-458a-b734-a58fb1a0603a", + "start": { + "$date": "2020-12-11T18:13:30.000Z" + }, + "end": { + "$date": "2020-12-11T18:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28d07948-7c9a-473d-b309-78b89966e6ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T18:37:28.000Z" + }, + "end": { + "$date": "2020-12-11T18:58:07.000Z" + }, + "events": [ + { + "uuid": "f4a01727-4212-44f6-b182-fe441a746d55", + "start": { + "$date": "2020-12-11T18:37:28.000Z" + }, + "end": { + "$date": "2020-12-11T18:58:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78343747-cd52-447d-bdd7-2ab0324b55a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T19:27:13.000Z" + }, + "end": { + "$date": "2020-12-11T19:42:36.000Z" + }, + "events": [ + { + "uuid": "28ad7eba-63a6-444b-9f5e-446f25753405", + "start": { + "$date": "2020-12-11T19:27:13.000Z" + }, + "end": { + "$date": "2020-12-11T19:42:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12414089-0e6e-48c8-a2a1-f5d4029fc2e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T19:27:30.000Z" + }, + "end": { + "$date": "2020-12-11T19:42:32.000Z" + }, + "events": [ + { + "uuid": "ade723f5-ac56-4feb-b7d4-bfa28204a25a", + "start": { + "$date": "2020-12-11T19:27:30.000Z" + }, + "end": { + "$date": "2020-12-11T19:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a48c5a9d-0eb4-4032-8330-f34c4112e49b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T19:46:26.000Z" + }, + "end": { + "$date": "2020-12-11T20:28:51.000Z" + }, + "events": [ + { + "uuid": "4a3eae7f-5806-481f-aebc-34354d2487ec", + "start": { + "$date": "2020-12-11T19:46:26.000Z" + }, + "end": { + "$date": "2020-12-11T20:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "19339802-bdb3-4d69-a61f-2ab5ad08b250", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-11T20:29:39.000Z" + }, + "end": { + "$date": "2020-12-11T21:09:51.000Z" + }, + "events": [ + { + "uuid": "bec5105d-69b3-4928-9bc3-98a0490f9b4f", + "start": { + "$date": "2020-12-11T20:29:39.000Z" + }, + "end": { + "$date": "2020-12-11T21:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3f3f1a97-ca67-4a96-a43d-d787d000fa7a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-11T21:10:07.000Z" + }, + "end": { + "$date": "2020-12-11T21:15:17.000Z" + }, + "events": [ + { + "uuid": "f32bf3f3-b0ca-472e-8be5-c2872fdbada4", + "start": { + "$date": "2020-12-11T21:10:07.000Z" + }, + "end": { + "$date": "2020-12-11T21:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cd1a2f58-93c5-4373-98da-710f5402088e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-11T21:10:07.000Z" + }, + "end": { + "$date": "2020-12-11T22:56:31.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-11T21:10:07.000Z" + }, + "end": { + "$date": "2020-12-11T22:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "53e62130-9eb2-4b46-9eb8-f8f98db2f394", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T22:13:04.000Z" + }, + "end": { + "$date": "2020-12-11T23:30:32.000Z" + }, + "events": [ + { + "uuid": "391457b1-e49f-417f-aca1-f2c32db21e81", + "start": { + "$date": "2020-12-11T22:13:04.000Z" + }, + "end": { + "$date": "2020-12-11T23:30:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "aff3e4dc-4542-4d76-9291-b463eee00e4a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-11T22:44:34.000Z" + }, + "end": { + "$date": "2020-12-12T00:14:17.000Z" + }, + "events": [ + { + "uuid": "1d7aaf50-f5df-456a-9f39-7c62daf1bf49", + "start": { + "$date": "2020-12-11T22:44:34.000Z" + }, + "end": { + "$date": "2020-12-12T00:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e46d70f2-d272-46d7-a1f2-d9a268ec615e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-11T22:45:02.000Z" + }, + "end": { + "$date": "2020-12-11T23:44:07.000Z" + }, + "events": [ + { + "uuid": "1a8c10f1-a4f7-4049-84f8-a2f58df5011a", + "start": { + "$date": "2020-12-11T22:45:02.000Z" + }, + "end": { + "$date": "2020-12-11T23:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86f157a1-befb-40e8-bcb4-bc3bf3641bc6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-11T23:55:20.000Z" + }, + "end": { + "$date": "2020-12-12T00:13:54.000Z" + }, + "events": [ + { + "uuid": "69fb3485-bc3c-4546-bbe4-766eedd11b35", + "start": { + "$date": "2020-12-11T23:55:20.000Z" + }, + "end": { + "$date": "2020-12-12T00:13:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe166c2a-497b-4580-9d8b-d7a61246224a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T00:17:21.000Z" + }, + "end": { + "$date": "2020-12-12T00:37:41.000Z" + }, + "events": [ + { + "uuid": "e422374b-7571-485d-b0fc-76c2d690c7fd", + "start": { + "$date": "2020-12-12T00:17:21.000Z" + }, + "end": { + "$date": "2020-12-12T00:37:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "40100c62-356b-4d3a-b497-7b25c98eaf66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T00:29:53.000Z" + }, + "end": { + "$date": "2020-12-12T00:49:04.000Z" + }, + "events": [ + { + "uuid": "fa4b7f1d-9300-4d4a-babf-94ba64d41f21", + "start": { + "$date": "2020-12-12T00:29:53.000Z" + }, + "end": { + "$date": "2020-12-12T00:49:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8ddfeb8e-e39f-4bf6-b7c5-d0adc71d4fde", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T00:37:53.000Z" + }, + "end": { + "$date": "2020-12-12T00:55:41.000Z" + }, + "events": [ + { + "uuid": "89e414ba-7b3c-414b-92c0-23c604b65b4a", + "start": { + "$date": "2020-12-12T00:37:53.000Z" + }, + "end": { + "$date": "2020-12-12T00:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6677cc8d-855e-4e77-a4b5-6f40491155ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T00:41:32.000Z" + }, + "end": { + "$date": "2020-12-12T01:00:57.000Z" + }, + "events": [ + { + "uuid": "c3d77f7b-94c9-43de-a01f-f6ff79c757c7", + "start": { + "$date": "2020-12-12T00:41:32.000Z" + }, + "end": { + "$date": "2020-12-12T01:00:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "f8887851-7527-4b2d-9280-6bfa122d8a9b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T01:57:53.000Z" + }, + "end": { + "$date": "2020-12-12T01:58:31.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-12T01:57:53.000Z" + }, + "end": { + "$date": "2020-12-12T01:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "8c80b043-37b2-465e-8bcb-8077ce67646b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T02:01:51.000Z" + }, + "end": { + "$date": "2020-12-12T02:34:29.000Z" + }, + "events": [ + { + "uuid": "969d7a60-d69d-4faa-80aa-248b98cf92da", + "start": { + "$date": "2020-12-12T02:01:51.000Z" + }, + "end": { + "$date": "2020-12-12T02:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "61e57d96-30b1-447d-94ae-232b3c0e8ad6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T02:31:06.000Z" + }, + "end": { + "$date": "2020-12-12T02:44:51.000Z" + }, + "events": [ + { + "uuid": "285cd00b-49b8-4b61-a8ab-3e27ff3468df", + "start": { + "$date": "2020-12-12T02:31:06.000Z" + }, + "end": { + "$date": "2020-12-12T02:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "308d03ba-710f-4ee4-b1bb-28189a99c608", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T02:35:29.000Z" + }, + "end": { + "$date": "2020-12-12T03:50:22.000Z" + }, + "events": [ + { + "uuid": "37e17604-4244-4835-aacd-e6fb304c9945", + "start": { + "$date": "2020-12-12T02:35:29.000Z" + }, + "end": { + "$date": "2020-12-12T03:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "bde7ee8b-1545-4f56-809f-02e1ffd4a0af", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-12T02:36:21.000Z" + }, + "end": { + "$date": "2020-12-12T07:46:34.000Z" + }, + "events": [ + { + "uuid": "97373780-47f9-494b-9cb5-cf589ca98ecf", + "start": { + "$date": "2020-12-12T02:36:21.000Z" + }, + "end": { + "$date": "2020-12-12T07:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c03cdd2b-e0b2-49df-b2ec-77b8fba95e87", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-12T03:00:22.000Z" + }, + "end": { + "$date": "2020-12-12T06:29:34.000Z" + }, + "events": [ + { + "uuid": "2bda4b20-0434-4871-af3d-d86462452021", + "start": { + "$date": "2020-12-12T03:00:22.000Z" + }, + "end": { + "$date": "2020-12-12T06:29:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c30ddb17-f809-499b-be11-75cc9e3ce9f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T03:07:36.000Z" + }, + "end": { + "$date": "2020-12-12T03:21:36.000Z" + }, + "events": [ + { + "uuid": "d0cf945b-a530-45f4-b614-ae4602bb455e", + "start": { + "$date": "2020-12-12T03:07:36.000Z" + }, + "end": { + "$date": "2020-12-12T03:21:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f4292a5-8d45-4c0f-8402-36909f03ca7e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T03:27:02.000Z" + }, + "end": { + "$date": "2020-12-12T03:36:32.000Z" + }, + "events": [ + { + "uuid": "8cd4e9e8-842a-4a04-8432-18c1ea7a3c11", + "start": { + "$date": "2020-12-12T03:27:02.000Z" + }, + "end": { + "$date": "2020-12-12T03:36:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f396f1c-ee2f-46e8-9750-570bde051fa0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T03:39:18.000Z" + }, + "end": { + "$date": "2020-12-12T03:56:57.000Z" + }, + "events": [ + { + "uuid": "504203fb-a4f2-4136-98d0-9d835eb67ee5", + "start": { + "$date": "2020-12-12T03:39:18.000Z" + }, + "end": { + "$date": "2020-12-12T03:56:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c5a51eb1-de37-4f63-b2b8-0639ef3baa0e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T03:54:08.000Z" + }, + "end": { + "$date": "2020-12-12T05:21:22.000Z" + }, + "events": [ + { + "uuid": "ebb96b97-77d4-4f38-9424-e871d5111ba5", + "start": { + "$date": "2020-12-12T03:54:08.000Z" + }, + "end": { + "$date": "2020-12-12T05:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "056acaa5-79c9-47eb-af2c-0e54f71c79b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T04:00:24.000Z" + }, + "end": { + "$date": "2020-12-12T04:16:18.000Z" + }, + "events": [ + { + "uuid": "7562555d-e32d-41ae-a552-c8db5d788d2b", + "start": { + "$date": "2020-12-12T04:00:24.000Z" + }, + "end": { + "$date": "2020-12-12T04:16:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5937c58d-ada6-4c88-b579-b1334e32b483", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T04:20:30.000Z" + }, + "end": { + "$date": "2020-12-12T04:31:14.000Z" + }, + "events": [ + { + "uuid": "19ece139-96fa-4ea2-a816-c8b99742daea", + "start": { + "$date": "2020-12-12T04:20:30.000Z" + }, + "end": { + "$date": "2020-12-12T04:31:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f4f7b38f-a871-4b1d-91dc-96c1ccd740d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T05:32:38.000Z" + }, + "end": { + "$date": "2020-12-12T06:18:03.000Z" + }, + "events": [ + { + "uuid": "54e654b9-d5f0-4510-8847-d98d0fc46207", + "start": { + "$date": "2020-12-12T05:32:38.000Z" + }, + "end": { + "$date": "2020-12-12T06:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c2bc294-1d8c-4e90-bc36-1f29cabbfcee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T05:58:18.000Z" + }, + "end": { + "$date": "2020-12-12T05:58:22.000Z" + }, + "events": [ + { + "uuid": "7b5eba4b-d475-4409-9fe6-c6137c843625", + "start": { + "$date": "2020-12-12T05:58:18.000Z" + }, + "end": { + "$date": "2020-12-12T05:58:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1a564b59-4c77-464c-9cb6-02d7a8915e99", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T05:40:13.000Z" + }, + "end": { + "$date": "2020-12-12T06:17:39.000Z" + }, + "events": [ + { + "uuid": "24681218-aea1-468b-a723-b1387a41dfed", + "start": { + "$date": "2020-12-12T05:40:13.000Z" + }, + "end": { + "$date": "2020-12-12T06:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d3d23a26-49cd-40c2-841d-e1c3ed3fbe9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T06:00:58.000Z" + }, + "end": { + "$date": "2020-12-12T06:51:44.000Z" + }, + "events": [ + { + "uuid": "ebe825ef-5d67-44c7-9f96-acc39b21d99e", + "start": { + "$date": "2020-12-12T06:00:58.000Z" + }, + "end": { + "$date": "2020-12-12T06:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "957e83b0-c067-4d08-8b4f-82e9d756cee8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T06:04:29.000Z" + }, + "end": { + "$date": "2020-12-12T06:52:07.000Z" + }, + "events": [ + { + "uuid": "b5203207-4d71-42db-9616-07b86d660665", + "start": { + "$date": "2020-12-12T06:04:29.000Z" + }, + "end": { + "$date": "2020-12-12T06:52:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "de53f7a0-b95c-4b5e-809f-3604e5051776", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-12T06:05:11.000Z" + }, + "end": { + "$date": "2020-12-12T06:53:12.000Z" + }, + "events": [ + { + "uuid": "6f2c141c-6514-4001-a717-19fc09a7919d", + "start": { + "$date": "2020-12-12T06:05:11.000Z" + }, + "end": { + "$date": "2020-12-12T06:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c2ebce82-d135-48fb-8e69-f434f35db213", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T06:35:46.000Z" + }, + "end": { + "$date": "2020-12-12T06:41:00.000Z" + }, + "events": [ + { + "uuid": "f020c2e0-ed68-4ca4-bf43-f3dfe7bcb739", + "start": { + "$date": "2020-12-12T06:35:46.000Z" + }, + "end": { + "$date": "2020-12-12T06:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e7eada19-7d0f-40aa-be2d-869997d197b5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T06:41:37.000Z" + }, + "end": { + "$date": "2020-12-12T06:45:41.000Z" + }, + "events": [ + { + "uuid": "bc5020a4-22b3-4bfc-be50-35d7b7cc72e9", + "start": { + "$date": "2020-12-12T06:41:37.000Z" + }, + "end": { + "$date": "2020-12-12T06:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ed64c660-4542-468a-834f-f0597f8e4a4c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-12T06:46:37.000Z" + }, + "end": { + "$date": "2020-12-12T08:38:27.000Z" + }, + "events": [ + { + "uuid": "f30bdf0d-2a4f-4ce4-8eed-b31c1306e478", + "start": { + "$date": "2020-12-12T06:46:37.000Z" + }, + "end": { + "$date": "2020-12-12T08:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6a61725c-75b7-4adc-aac4-3626e950720a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T06:48:16.000Z" + }, + "end": { + "$date": "2020-12-12T08:45:27.000Z" + }, + "events": [ + { + "uuid": "b0b60a29-24e6-4a8f-90a3-a7bf1e03d984", + "start": { + "$date": "2020-12-12T06:48:16.000Z" + }, + "end": { + "$date": "2020-12-12T07:47:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "009612b9-9e40-418f-bc2b-6fc58e875175", + "start": { + "$date": "2020-12-12T07:47:16.000Z" + }, + "end": { + "$date": "2020-12-12T07:50:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6fefa00c-c0b0-4140-8fe7-d8d58dd96ae4", + "start": { + "$date": "2020-12-12T07:50:16.000Z" + }, + "end": { + "$date": "2020-12-12T08:45:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c47f995-e8d2-43c2-bfeb-92efe7464f26", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T16:43:51.000Z" + }, + "end": { + "$date": "2020-12-12T16:50:37.000Z" + }, + "events": [ + { + "uuid": "6bc96346-d883-4e96-9afc-a7fc26925813", + "start": { + "$date": "2020-12-12T16:43:51.000Z" + }, + "end": { + "$date": "2020-12-12T16:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f96e08e7-96cc-406b-8491-297bc1cbc1fa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T17:14:24.000Z" + }, + "end": { + "$date": "2020-12-12T17:27:55.000Z" + }, + "events": [ + { + "uuid": "32999edc-14ab-4487-9067-4262af8dc9b8", + "start": { + "$date": "2020-12-12T17:14:24.000Z" + }, + "end": { + "$date": "2020-12-12T17:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "69c1b1ec-82e7-41e1-ae10-d7970cf8b0bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-12T17:24:33.000Z" + }, + "end": { + "$date": "2020-12-12T18:25:01.000Z" + }, + "events": [ + { + "uuid": "f9acb4be-79ab-4c8b-bdeb-5313ee11cb81", + "start": { + "$date": "2020-12-12T17:24:33.000Z" + }, + "end": { + "$date": "2020-12-12T18:25:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69be292a-4de8-4214-855b-747a3d13ac5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T17:53:31.000Z" + }, + "end": { + "$date": "2020-12-12T18:14:38.000Z" + }, + "events": [ + { + "uuid": "1ce990ea-5172-4c9b-b195-8ba47e1a3c34", + "start": { + "$date": "2020-12-12T17:53:31.000Z" + }, + "end": { + "$date": "2020-12-12T18:14:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "65b83bed-5fe8-4e83-8df1-62c8a1582a47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T18:01:13.000Z" + }, + "end": { + "$date": "2020-12-12T18:02:44.000Z" + }, + "events": [ + { + "uuid": "720cd7b2-d070-47a3-a13a-fc216948c3cb", + "start": { + "$date": "2020-12-12T18:01:13.000Z" + }, + "end": { + "$date": "2020-12-12T18:02:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65ad9d0e-4f0f-4ee0-9d7e-e9d0dd4caf56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T18:18:07.000Z" + }, + "end": { + "$date": "2020-12-12T18:27:49.000Z" + }, + "events": [ + { + "uuid": "31b0e5d2-a344-48a4-8d87-e76e9827395a", + "start": { + "$date": "2020-12-12T18:18:07.000Z" + }, + "end": { + "$date": "2020-12-12T18:27:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce9db73a-c332-4c96-a9d8-1e7d49de7df1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T18:31:58.000Z" + }, + "end": { + "$date": "2020-12-12T18:53:00.000Z" + }, + "events": [ + { + "uuid": "36a178af-db09-46f8-8e32-eb72e963b678", + "start": { + "$date": "2020-12-12T18:31:58.000Z" + }, + "end": { + "$date": "2020-12-12T18:53:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb05e64f-33e0-42b1-b82c-391514a6678c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T18:57:24.000Z" + }, + "end": { + "$date": "2020-12-12T19:16:16.000Z" + }, + "events": [ + { + "uuid": "51f6ac35-e9d7-4f0f-b88d-b4c8b2f808b4", + "start": { + "$date": "2020-12-12T18:57:24.000Z" + }, + "end": { + "$date": "2020-12-12T19:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "39290060-34b9-426e-aa96-cb4ea8930e2a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T19:07:25.000Z" + }, + "end": { + "$date": "2020-12-12T19:45:23.000Z" + }, + "events": [ + { + "uuid": "d5ca0ec8-8351-4c72-b8f5-b5046ebb53a7", + "start": { + "$date": "2020-12-12T19:07:25.000Z" + }, + "end": { + "$date": "2020-12-12T19:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8a11649-2d2e-4dd6-9b72-7254975afb39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T19:21:00.000Z" + }, + "end": { + "$date": "2020-12-12T19:34:27.000Z" + }, + "events": [ + { + "uuid": "2a0aa743-f828-40ab-9be6-fab5b9e7d2d0", + "start": { + "$date": "2020-12-12T19:21:00.000Z" + }, + "end": { + "$date": "2020-12-12T19:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e86ec698-4de6-48cd-a464-3ae87a75f201", + "uuid": "f75d1fe5-fa61-43c8-860a-89083f457acc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T19:52:30.000Z" + }, + "end": { + "$date": "2020-12-12T20:46:02.000Z" + }, + "events": [ + { + "uuid": "070abfb7-206a-429c-8ebf-6e3a51972da6", + "start": { + "$date": "2020-12-12T19:52:30.000Z" + }, + "end": { + "$date": "2020-12-12T20:46:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "55e22304-a01d-4784-9ca3-1615cfd436d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T20:19:00.000Z" + }, + "end": { + "$date": "2020-12-12T20:27:47.000Z" + }, + "events": [ + { + "uuid": "1159dfd9-7172-43e7-a673-b62b4e5f78fc", + "start": { + "$date": "2020-12-12T20:19:00.000Z" + }, + "end": { + "$date": "2020-12-12T20:27:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "ab080137-28f1-4021-a518-caa4c5c36f78", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T21:08:59.000Z" + }, + "end": { + "$date": "2020-12-12T21:35:41.000Z" + }, + "events": [ + { + "uuid": "b6e7f6a2-df07-4c9b-8e4c-3f38213fb64e", + "start": { + "$date": "2020-12-12T21:08:59.000Z" + }, + "end": { + "$date": "2020-12-12T21:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "738c9b6a-0e13-4419-ba32-4506907ccaa3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T21:10:04.000Z" + }, + "end": { + "$date": "2020-12-12T21:46:45.000Z" + }, + "events": [ + { + "uuid": "32c8c695-e8f5-4367-b4d5-c38627feefab", + "start": { + "$date": "2020-12-12T21:10:04.000Z" + }, + "end": { + "$date": "2020-12-12T21:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fa1d5d66-6315-44cd-97e4-01727507d7ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-12T21:25:30.000Z" + }, + "end": { + "$date": "2020-12-12T22:11:05.000Z" + }, + "events": [ + { + "uuid": "7327bfd4-c65b-4d7c-afe1-17c324a6ebb4", + "start": { + "$date": "2020-12-12T21:25:30.000Z" + }, + "end": { + "$date": "2020-12-12T22:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "43651e58-e997-4030-a533-2fcf2ea1744c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-12T21:33:03.000Z" + }, + "end": { + "$date": "2020-12-12T23:37:07.000Z" + }, + "events": [ + { + "uuid": "0fbf74c2-8745-4dac-9146-f47c80c6b309", + "start": { + "$date": "2020-12-12T21:33:03.000Z" + }, + "end": { + "$date": "2020-12-12T23:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "591c7a6d-97f7-4f80-8ee8-ae92143c20d4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-12T21:42:03.000Z" + }, + "end": { + "$date": "2020-12-12T23:26:37.000Z" + }, + "events": [ + { + "uuid": "8e66da84-70aa-46f6-95dd-ca375d135dc3", + "start": { + "$date": "2020-12-12T21:42:03.000Z" + }, + "end": { + "$date": "2020-12-12T23:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a92a35db-17c9-4b32-a918-505e3de4b5ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T21:51:30.000Z" + }, + "end": { + "$date": "2020-12-12T21:54:21.000Z" + }, + "events": [ + { + "uuid": "21af8c36-487e-454c-b995-2e2c9268f703", + "start": { + "$date": "2020-12-12T21:51:30.000Z" + }, + "end": { + "$date": "2020-12-12T21:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "585fb5e3-5992-4811-bed4-aaffb6727302", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T21:52:20.000Z" + }, + "end": { + "$date": "2020-12-12T22:22:29.000Z" + }, + "events": [ + { + "uuid": "2074738b-651a-4562-88a1-ae9c0af39088", + "start": { + "$date": "2020-12-12T21:52:20.000Z" + }, + "end": { + "$date": "2020-12-12T22:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "215c744f-519e-49d5-b0ee-1b46d7c7d8ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T21:54:41.000Z" + }, + "end": { + "$date": "2020-12-12T22:03:12.000Z" + }, + "events": [ + { + "uuid": "7a11c0ca-9c6e-4eb1-82e7-9b7effc321c2", + "start": { + "$date": "2020-12-12T21:54:41.000Z" + }, + "end": { + "$date": "2020-12-12T22:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d3d5916c-47f4-4f48-ac2e-cd388263002a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T22:25:37.000Z" + }, + "end": { + "$date": "2020-12-12T22:26:17.000Z" + }, + "events": [ + { + "uuid": "3c2f808c-fd75-40f4-9cd7-dbb2728c76f7", + "start": { + "$date": "2020-12-12T22:25:37.000Z" + }, + "end": { + "$date": "2020-12-12T22:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7886d078-6a44-4a19-ba79-ddebbf80d927", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T22:26:27.000Z" + }, + "end": { + "$date": "2020-12-12T23:12:38.000Z" + }, + "events": [ + { + "uuid": "cce7e5d3-c4e4-4688-9aa5-3a7bf379bf1d", + "start": { + "$date": "2020-12-12T22:26:27.000Z" + }, + "end": { + "$date": "2020-12-12T23:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "25b19ca3-6e98-46aa-8751-4697801f2d6e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-12T22:30:28.000Z" + }, + "end": { + "$date": "2020-12-12T22:56:21.000Z" + }, + "events": [ + { + "uuid": "ff175a38-3c9a-4d9f-904b-eb7ff1f8ab8a", + "start": { + "$date": "2020-12-12T22:30:28.000Z" + }, + "end": { + "$date": "2020-12-12T22:56:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61b2abc0-23bb-4d84-b2a4-9abcc0a48dbd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T22:41:29.000Z" + }, + "end": { + "$date": "2020-12-12T23:01:45.000Z" + }, + "events": [ + { + "uuid": "2ff09621-6e05-46ae-8551-e43d8f22c006", + "start": { + "$date": "2020-12-12T22:41:29.000Z" + }, + "end": { + "$date": "2020-12-12T23:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e4ad74d0-cdc3-4f67-aec0-2a806db1ebf9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-12T22:38:43.000Z" + }, + "end": { + "$date": "2020-12-12T23:20:03.000Z" + }, + "events": [ + { + "uuid": "b675b9de-885a-4ffe-8617-617a12844e95", + "start": { + "$date": "2020-12-12T22:38:43.000Z" + }, + "end": { + "$date": "2020-12-12T23:20:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c64a012d-6486-423f-bc28-fb7c7189c7d3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-12T22:43:29.000Z" + }, + "end": { + "$date": "2020-12-13T00:30:05.000Z" + }, + "events": [ + { + "uuid": "ec63cc6a-04de-469a-8971-fc526f4d19aa", + "start": { + "$date": "2020-12-12T22:43:29.000Z" + }, + "end": { + "$date": "2020-12-13T00:30:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "28aab40c-b9a2-40b8-8c7f-cb4bb7202101", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-12T23:06:37.000Z" + }, + "end": { + "$date": "2020-12-13T02:51:54.000Z" + }, + "events": [ + { + "uuid": "3e673ce6-5102-4ae6-80ae-f8918bfd140a", + "start": { + "$date": "2020-12-12T23:06:37.000Z" + }, + "end": { + "$date": "2020-12-13T02:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5de2d3a9-2f32-4874-a20f-fa75059a1858", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T23:21:15.000Z" + }, + "end": { + "$date": "2020-12-12T23:31:41.000Z" + }, + "events": [ + { + "uuid": "27f34637-4044-4feb-82c0-3c67b6cba259", + "start": { + "$date": "2020-12-12T23:21:15.000Z" + }, + "end": { + "$date": "2020-12-12T23:31:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4255e78b-0f33-431c-9bc9-a57f178a7721", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-12T23:19:29.000Z" + }, + "end": { + "$date": "2020-12-13T02:41:59.000Z" + }, + "events": [ + { + "uuid": "c9fc3b43-7841-4c9d-b3d2-142c9cbceb6a", + "start": { + "$date": "2020-12-12T23:19:29.000Z" + }, + "end": { + "$date": "2020-12-13T02:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", + "uuid": "3bd56ec8-db79-48b2-928a-52ccea750098", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-12T23:21:50.000Z" + }, + "end": { + "$date": "2020-12-13T01:03:18.000Z" + }, + "events": [ + { + "uuid": "cfa68177-053d-4867-8741-c4b188b9510c", + "start": { + "$date": "2020-12-12T23:21:50.000Z" + }, + "end": { + "$date": "2020-12-13T01:03:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c50e050-f7a1-48bb-9e73-8664f86d8832", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-12T23:35:41.000Z" + }, + "end": { + "$date": "2020-12-12T23:55:42.000Z" + }, + "events": [ + { + "uuid": "3d95eba7-5622-40a3-8a75-d9f604bec957", + "start": { + "$date": "2020-12-12T23:35:41.000Z" + }, + "end": { + "$date": "2020-12-12T23:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ab1dfcc9-0b9e-453b-932e-db8fc54add4e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-12T23:59:05.000Z" + }, + "end": { + "$date": "2020-12-13T01:57:52.000Z" + }, + "events": [ + { + "uuid": "8e888869-d0b8-418c-b35a-799db6c4d4ac", + "start": { + "$date": "2020-12-12T23:59:05.000Z" + }, + "end": { + "$date": "2020-12-13T01:57:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf4386a1-ce96-4d6d-9783-9d42de7497c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T01:00:23.000Z" + }, + "end": { + "$date": "2020-12-13T01:10:09.000Z" + }, + "events": [ + { + "uuid": "060bba84-2238-48df-8c79-9a7e2c34bf14", + "start": { + "$date": "2020-12-13T01:00:23.000Z" + }, + "end": { + "$date": "2020-12-13T01:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8ac2516-0cb1-4ce7-8d6c-c4c3ba8dbf4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T01:14:29.000Z" + }, + "end": { + "$date": "2020-12-13T01:31:54.000Z" + }, + "events": [ + { + "uuid": "d8ed8c3a-8753-4726-b44a-4987948b4f73", + "start": { + "$date": "2020-12-13T01:14:29.000Z" + }, + "end": { + "$date": "2020-12-13T01:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a4a9c85-7ebe-4eb4-8ee9-b55cd811a38d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T01:35:05.000Z" + }, + "end": { + "$date": "2020-12-13T01:51:26.000Z" + }, + "events": [ + { + "uuid": "e2a77310-8855-43fe-80fb-a8cbf8e5102a", + "start": { + "$date": "2020-12-13T01:35:05.000Z" + }, + "end": { + "$date": "2020-12-13T01:51:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "b11d0d35-9a54-4e36-b9bc-8a657b5abb18", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-13T01:47:52.000Z" + }, + "end": { + "$date": "2020-12-13T05:28:16.000Z" + }, + "events": [ + { + "uuid": "b00e99eb-f85a-4e37-8cc8-a2663abec58d", + "start": { + "$date": "2020-12-13T01:47:52.000Z" + }, + "end": { + "$date": "2020-12-13T05:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "fcc2e64d-2876-43d1-8a3d-d079d1105101", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-13T02:28:46.000Z" + }, + "end": { + "$date": "2020-12-13T03:29:19.000Z" + }, + "events": [ + { + "uuid": "ad902879-8aef-4912-823d-14aea1d4ce15", + "start": { + "$date": "2020-12-13T02:28:46.000Z" + }, + "end": { + "$date": "2020-12-13T03:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cded4efd-56ea-4766-8890-d4012d93963c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T03:21:54.000Z" + }, + "end": { + "$date": "2020-12-13T03:33:59.000Z" + }, + "events": [ + { + "uuid": "3e1ed50d-eded-4004-a30f-70a081687165", + "start": { + "$date": "2020-12-13T03:21:54.000Z" + }, + "end": { + "$date": "2020-12-13T03:33:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6810a335-1226-4548-9d5a-96f158275032", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T03:38:50.000Z" + }, + "end": { + "$date": "2020-12-13T03:59:21.000Z" + }, + "events": [ + { + "uuid": "091eb9b4-9185-47cf-9d65-e374bb23eb8f", + "start": { + "$date": "2020-12-13T03:38:50.000Z" + }, + "end": { + "$date": "2020-12-13T03:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c5cf1144-f248-47ea-bc29-26b97362588e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-13T03:44:59.000Z" + }, + "end": { + "$date": "2020-12-13T04:50:41.000Z" + }, + "events": [ + { + "uuid": "ee819c5f-4f7f-4459-90e2-4b001f5e8d3d", + "start": { + "$date": "2020-12-13T03:44:59.000Z" + }, + "end": { + "$date": "2020-12-13T04:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "415470cb-d6d7-46c7-a905-0a86e88d939f", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-12-13T03:50:54.000Z" + }, + "end": { + "$date": "2020-12-13T05:20:34.000Z" + }, + "events": [ + { + "uuid": "be2786c4-5a50-4489-98dc-b128f9371831", + "start": { + "$date": "2020-12-13T03:50:54.000Z" + }, + "end": { + "$date": "2020-12-13T05:20:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bcba4bdd-40f6-434c-980a-56f03ed916ea", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-13T03:50:58.000Z" + }, + "end": { + "$date": "2020-12-13T05:20:40.000Z" + }, + "events": [ + { + "uuid": "578e468c-a85f-4883-b163-e307823388e4", + "start": { + "$date": "2020-12-13T03:50:58.000Z" + }, + "end": { + "$date": "2020-12-13T05:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "6cb6b3af-3002-4b54-929c-16d0a8f3b297", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-13T03:52:07.000Z" + }, + "end": { + "$date": "2020-12-13T04:18:59.000Z" + }, + "events": [ + { + "uuid": "01c384cd-9dcf-49e6-b8cc-d9893c67bb26", + "start": { + "$date": "2020-12-13T03:52:07.000Z" + }, + "end": { + "$date": "2020-12-13T04:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "d25a6f18-867f-4af9-acff-b2a6a0c2596e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-13T04:11:21.000Z" + }, + "end": { + "$date": "2020-12-13T10:48:41.000Z" + }, + "events": [ + { + "uuid": "8686a52f-6a59-4266-90e7-4aff908f7f2e", + "start": { + "$date": "2020-12-13T04:11:21.000Z" + }, + "end": { + "$date": "2020-12-13T10:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "f312fa34-539c-464f-bfbf-7b9df267c280", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T05:10:24.000Z" + }, + "end": { + "$date": "2020-12-13T06:34:21.000Z" + }, + "events": [ + { + "uuid": "4a757752-30a7-43d4-b251-bff43fd22953", + "start": { + "$date": "2020-12-13T05:10:24.000Z" + }, + "end": { + "$date": "2020-12-13T06:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "e8e9cece-3357-47e3-aad9-aac2f268277d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T05:20:32.000Z" + }, + "end": { + "$date": "2020-12-13T05:43:54.000Z" + }, + "events": [ + { + "uuid": "13b08284-da6d-496c-b8ee-4062fd930b98", + "start": { + "$date": "2020-12-13T05:20:32.000Z" + }, + "end": { + "$date": "2020-12-13T05:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "481b6a7e-3a95-4db1-9b34-a8aa665e41c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T05:44:18.000Z" + }, + "end": { + "$date": "2020-12-13T05:51:04.000Z" + }, + "events": [ + { + "uuid": "de621255-3ba7-49cb-8c65-a2dcec0543f8", + "start": { + "$date": "2020-12-13T05:44:18.000Z" + }, + "end": { + "$date": "2020-12-13T05:51:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "dd63bc7f-9ec4-46db-8cc3-d80eabb1bafe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T05:51:14.000Z" + }, + "end": { + "$date": "2020-12-13T06:40:38.000Z" + }, + "events": [ + { + "uuid": "0bf0ca2f-efba-4014-bdc6-75a515914899", + "start": { + "$date": "2020-12-13T05:51:14.000Z" + }, + "end": { + "$date": "2020-12-13T06:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "67f5af3f-bac7-45a7-8e6c-7d6bbc5e4ba8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-13T05:58:44.000Z" + }, + "end": { + "$date": "2020-12-13T07:33:31.000Z" + }, + "events": [ + { + "uuid": "ed9249fe-b40c-455a-8505-dc303a231ee2", + "start": { + "$date": "2020-12-13T05:58:44.000Z" + }, + "end": { + "$date": "2020-12-13T07:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "86de1cd7-a0d1-4cf7-ae34-c773631c821e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-13T06:19:42.000Z" + }, + "end": { + "$date": "2020-12-13T06:46:53.000Z" + }, + "events": [ + { + "uuid": "eb6e4f74-937f-4b8a-9d33-cc525a1f781a", + "start": { + "$date": "2020-12-13T06:19:42.000Z" + }, + "end": { + "$date": "2020-12-13T06:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "78ec3860-bb7c-40c3-a7a3-88f331148280", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-13T06:09:45.000Z" + }, + "end": { + "$date": "2020-12-13T06:11:11.000Z" + }, + "events": [ + { + "uuid": "a4620ead-f84f-433a-9bba-f905d96b31c6", + "start": { + "$date": "2020-12-13T06:09:45.000Z" + }, + "end": { + "$date": "2020-12-13T06:11:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "30357b1e-d693-4685-b4f8-9b1f6d2aaa55", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-13T06:10:47.000Z" + }, + "end": { + "$date": "2020-12-13T08:27:04.000Z" + }, + "events": [ + { + "uuid": "13ced4d9-8a6a-450a-8cdc-d25da3c6ce21", + "start": { + "$date": "2020-12-13T06:10:47.000Z" + }, + "end": { + "$date": "2020-12-13T08:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "76b5c5da-d99a-4471-bf4e-914a38472bf0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-13T06:11:34.000Z" + }, + "end": { + "$date": "2020-12-13T06:48:49.000Z" + }, + "events": [ + { + "uuid": "0173eb84-4336-4b11-9881-b2e0e80215ab", + "start": { + "$date": "2020-12-13T06:11:34.000Z" + }, + "end": { + "$date": "2020-12-13T06:48:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c2f1c559-1d45-45a9-917a-c584cf24d65c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-13T06:47:14.000Z" + }, + "end": { + "$date": "2020-12-13T06:48:18.000Z" + }, + "events": [ + { + "uuid": "073d5a02-cb24-4995-86d5-1f012975b197", + "start": { + "$date": "2020-12-13T06:47:14.000Z" + }, + "end": { + "$date": "2020-12-13T06:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "7f90c58e-ef1d-4ab3-a0e3-c93e7842a276", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-13T06:51:40.000Z" + }, + "end": { + "$date": "2020-12-13T06:57:14.000Z" + }, + "events": [ + { + "uuid": "51baefe7-4cdf-44a5-a4c2-7aa7dec17c64", + "start": { + "$date": "2020-12-13T06:51:40.000Z" + }, + "end": { + "$date": "2020-12-13T06:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "29bd84a7-0348-4771-b3b0-d2121588454f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-13T06:56:49.000Z" + }, + "end": { + "$date": "2020-12-13T07:36:55.000Z" + }, + "events": [ + { + "uuid": "991af755-5b2a-4e8c-8caa-368aea2e7c67", + "start": { + "$date": "2020-12-13T06:56:49.000Z" + }, + "end": { + "$date": "2020-12-13T07:36:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "42081f04-cda3-4b82-b5ca-5b78ae2cffc4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-13T07:06:31.000Z" + }, + "end": { + "$date": "2020-12-13T07:22:22.000Z" + }, + "events": [ + { + "uuid": "15f4e4bc-c267-4700-b46c-c609e6415871", + "start": { + "$date": "2020-12-13T07:06:31.000Z" + }, + "end": { + "$date": "2020-12-13T07:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "a42d7847-ef9d-4897-865b-3c2f7acc502b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-13T07:22:58.000Z" + }, + "end": { + "$date": "2020-12-13T07:38:28.000Z" + }, + "events": [ + { + "uuid": "6d2ea8d0-8c78-4bdc-a785-0bd41ae77861", + "start": { + "$date": "2020-12-13T07:22:58.000Z" + }, + "end": { + "$date": "2020-12-13T07:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a1058e0b-5ece-4aaa-8d34-a736c6b818a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-13T15:36:29.000Z" + }, + "end": { + "$date": "2020-12-13T16:25:30.000Z" + }, + "events": [ + { + "uuid": "382e2ba4-2730-449c-9c89-a3979a1507ac", + "start": { + "$date": "2020-12-13T15:36:29.000Z" + }, + "end": { + "$date": "2020-12-13T16:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "265cbf01-5de9-4217-be35-a227b0c33da3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-13T16:11:16.000Z" + }, + "end": { + "$date": "2020-12-13T17:37:52.000Z" + }, + "events": [ + { + "uuid": "f9d8e4dc-9e50-4ffe-8b52-0afc606273a9", + "start": { + "$date": "2020-12-13T16:11:16.000Z" + }, + "end": { + "$date": "2020-12-13T17:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c3e1f59b-db14-47d6-ad66-44d2271f2e2e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-13T16:31:26.000Z" + }, + "end": { + "$date": "2020-12-13T16:59:46.000Z" + }, + "events": [ + { + "uuid": "765dd6fb-8fb5-491b-ad4f-4fe16b951f23", + "start": { + "$date": "2020-12-13T16:31:26.000Z" + }, + "end": { + "$date": "2020-12-13T16:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "1fdfc0c2-39b8-448f-857c-2a70e952995f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T16:48:15.000Z" + }, + "end": { + "$date": "2020-12-13T17:19:03.000Z" + }, + "events": [ + { + "uuid": "1d2a75f1-6319-4e0d-a769-7191356d781c", + "start": { + "$date": "2020-12-13T16:48:15.000Z" + }, + "end": { + "$date": "2020-12-13T17:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c1c50821-ef41-4e6f-a742-3f2c50ba5e1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T17:20:02.000Z" + }, + "end": { + "$date": "2020-12-13T18:21:50.000Z" + }, + "events": [ + { + "uuid": "b38ec9db-e013-4b5d-90ea-9e8684b1835f", + "start": { + "$date": "2020-12-13T17:20:02.000Z" + }, + "end": { + "$date": "2020-12-13T18:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0656b23e-3344-4c54-a77e-87e2eefec957", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T17:39:23.000Z" + }, + "end": { + "$date": "2020-12-13T17:59:14.000Z" + }, + "events": [ + { + "uuid": "3ebc3b7f-8883-477c-93b7-cf07256263c4", + "start": { + "$date": "2020-12-13T17:39:23.000Z" + }, + "end": { + "$date": "2020-12-13T17:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d4a9d8e-577c-4d29-b123-1520fe00b0fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T18:03:49.000Z" + }, + "end": { + "$date": "2020-12-13T18:21:07.000Z" + }, + "events": [ + { + "uuid": "c50b4677-c197-4fd4-96a4-fdf7b1f9bcb4", + "start": { + "$date": "2020-12-13T18:03:49.000Z" + }, + "end": { + "$date": "2020-12-13T18:21:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "ebbcb57b-9639-4dbf-871f-db6f1a9ea024", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-13T18:03:00.000Z" + }, + "end": { + "$date": "2020-12-13T19:51:53.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-13T18:03:00.000Z" + }, + "end": { + "$date": "2020-12-13T19:51:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "13f42c92-dbd1-48a8-95d1-24e92fc11210", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T18:22:10.000Z" + }, + "end": { + "$date": "2020-12-13T18:26:20.000Z" + }, + "events": [ + { + "uuid": "a5cffcc1-dc6f-4a30-9e06-b0b7a69fa2b0", + "start": { + "$date": "2020-12-13T18:22:10.000Z" + }, + "end": { + "$date": "2020-12-13T18:26:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e959d35f-f1ce-4509-b52b-ed88f790f1dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T18:25:00.000Z" + }, + "end": { + "$date": "2020-12-13T18:44:22.000Z" + }, + "events": [ + { + "uuid": "b4da4f20-f61b-477d-8c48-a7f541744bfd", + "start": { + "$date": "2020-12-13T18:25:00.000Z" + }, + "end": { + "$date": "2020-12-13T18:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c87f5425-38f2-4165-99b6-3b75f715ec3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T18:30:06.000Z" + }, + "end": { + "$date": "2020-12-13T19:14:59.000Z" + }, + "events": [ + { + "uuid": "a8a30aba-9900-48eb-9fe4-65a4295db295", + "start": { + "$date": "2020-12-13T18:30:06.000Z" + }, + "end": { + "$date": "2020-12-13T19:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "2ff48165-c71e-4f53-b6a8-86be93091921", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-13T20:28:30.000Z" + }, + "end": { + "$date": "2020-12-13T21:11:21.000Z" + }, + "events": [ + { + "uuid": "aff0372e-aa47-491d-8b44-3f53b6a5171d", + "start": { + "$date": "2020-12-13T20:28:30.000Z" + }, + "end": { + "$date": "2020-12-13T21:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "9a201423-e5c5-470e-8b29-ec7ca064f6d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-13T20:34:40.000Z" + }, + "end": { + "$date": "2020-12-13T21:05:59.000Z" + }, + "events": [ + { + "uuid": "7cca87bb-99bd-4d4f-8d9a-cc03f478921d", + "start": { + "$date": "2020-12-13T20:34:40.000Z" + }, + "end": { + "$date": "2020-12-13T21:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "5cf9e930-39f8-480d-b191-f53107f549fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T20:43:03.000Z" + }, + "end": { + "$date": "2020-12-13T21:18:55.000Z" + }, + "events": [ + { + "uuid": "c32588f7-60bd-42f0-813e-a943153b758f", + "start": { + "$date": "2020-12-13T20:43:03.000Z" + }, + "end": { + "$date": "2020-12-13T21:18:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "6638b42e-a4fb-43a6-a184-070a4a749cbd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-13T21:30:35.000Z" + }, + "end": { + "$date": "2020-12-13T22:54:41.000Z" + }, + "events": [ + { + "uuid": "2288e8cc-52fe-4340-af00-7c9ba9d75c90", + "start": { + "$date": "2020-12-13T21:30:35.000Z" + }, + "end": { + "$date": "2020-12-13T22:54:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "04bba545-5b66-4e83-aa49-c4bd9e3c1c7b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-13T21:48:10.000Z" + }, + "end": { + "$date": "2020-12-14T00:53:12.000Z" + }, + "events": [ + { + "uuid": "6a1e74ff-06c4-4f37-80a2-5f335d2468a3", + "start": { + "$date": "2020-12-13T21:48:10.000Z" + }, + "end": { + "$date": "2020-12-14T00:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "846380ef-036e-4826-b808-02e4a066f76c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-13T22:01:06.000Z" + }, + "end": { + "$date": "2020-12-13T23:10:23.000Z" + }, + "events": [ + { + "uuid": "26ba587c-3f5e-4ea3-ba33-9eddbeeba38d", + "start": { + "$date": "2020-12-13T22:01:06.000Z" + }, + "end": { + "$date": "2020-12-13T23:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "5e5ec918-b607-4fc2-ab5b-941b620fa960", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-13T22:44:19.000Z" + }, + "end": { + "$date": "2020-12-13T22:55:23.000Z" + }, + "events": [ + { + "uuid": "33d5b1bf-44eb-40fc-8ef0-5f00368e6110", + "start": { + "$date": "2020-12-13T22:44:19.000Z" + }, + "end": { + "$date": "2020-12-13T22:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10f5eb02-91d8-45f3-bede-a228856db516", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T23:19:32.000Z" + }, + "end": { + "$date": "2020-12-13T23:40:09.000Z" + }, + "events": [ + { + "uuid": "9642e9cc-8f58-4721-97bc-f6a5f1ebd679", + "start": { + "$date": "2020-12-13T23:19:32.000Z" + }, + "end": { + "$date": "2020-12-13T23:40:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "734c30d0-3121-41ed-8e93-e8c6359bda06", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-13T23:44:28.000Z" + }, + "end": { + "$date": "2020-12-14T00:01:44.000Z" + }, + "events": [ + { + "uuid": "5e49812a-37c2-4ed7-9e2b-dbf8c98f511e", + "start": { + "$date": "2020-12-13T23:44:28.000Z" + }, + "end": { + "$date": "2020-12-14T00:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "0bb4f57f-51f4-47f9-a8f7-cca42ca8dfc5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-13T23:40:45.000Z" + }, + "end": { + "$date": "2020-12-14T01:35:23.000Z" + }, + "events": [ + { + "uuid": "11308d95-835d-4ffb-993d-077a7ddd6966", + "start": { + "$date": "2020-12-13T23:40:45.000Z" + }, + "end": { + "$date": "2020-12-14T01:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ddba5544-44ec-410f-8df1-f06b5e884fef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-14T00:08:50.000Z" + }, + "end": { + "$date": "2020-12-14T02:07:31.000Z" + }, + "events": [ + { + "uuid": "89cb1557-1958-49cd-bd97-bce7c495b0ca", + "start": { + "$date": "2020-12-14T00:08:50.000Z" + }, + "end": { + "$date": "2020-12-14T02:07:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a2ed72bf-a4e0-470c-a64f-fcea1a3a880b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-14T00:34:53.000Z" + }, + "end": { + "$date": "2020-12-14T00:36:39.000Z" + }, + "events": [ + { + "uuid": "d23742b1-5c14-452e-b71c-657c1044441a", + "start": { + "$date": "2020-12-14T00:34:53.000Z" + }, + "end": { + "$date": "2020-12-14T00:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "7269e6bf-c833-429e-bde9-c38e705998a9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-14T00:37:13.000Z" + }, + "end": { + "$date": "2020-12-14T02:57:18.000Z" + }, + "events": [ + { + "uuid": "51faad69-935e-4179-abc0-f1a8d1d84e87", + "start": { + "$date": "2020-12-14T00:37:13.000Z" + }, + "end": { + "$date": "2020-12-14T02:21:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4a78783-fff7-499f-90ea-dfd5e54e1558", + "start": { + "$date": "2020-12-14T02:21:13.000Z" + }, + "end": { + "$date": "2020-12-14T02:57:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "82c970c2-c25e-4f40-9777-949f70f55857", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-14T02:06:13.000Z" + }, + "end": { + "$date": "2020-12-14T03:01:26.000Z" + }, + "events": [ + { + "uuid": "d449989a-05c0-4b65-85a8-ccd64746689a", + "start": { + "$date": "2020-12-14T02:06:13.000Z" + }, + "end": { + "$date": "2020-12-14T03:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "8e3b0bf9-0a05-475f-b861-89bdca2e35a7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-14T02:12:41.000Z" + }, + "end": { + "$date": "2020-12-14T04:04:26.000Z" + }, + "events": [ + { + "uuid": "53086de2-524a-48b5-8b21-2a0dc98fc566", + "start": { + "$date": "2020-12-14T02:12:41.000Z" + }, + "end": { + "$date": "2020-12-14T04:04:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f43a9fa6-3979-40f8-b818-067288f8db81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-14T02:12:49.000Z" + }, + "end": { + "$date": "2020-12-14T03:19:26.000Z" + }, + "events": [ + { + "uuid": "0200c800-21cd-4b33-b441-580143ba0e6a", + "start": { + "$date": "2020-12-14T02:12:49.000Z" + }, + "end": { + "$date": "2020-12-14T03:19:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d83884bb-3771-4f6d-a1de-b0a442ed9499", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-14T04:00:55.000Z" + }, + "end": { + "$date": "2020-12-14T04:02:09.000Z" + }, + "events": [ + { + "uuid": "31ff72df-0530-4717-a9a8-b9e230a445ef", + "start": { + "$date": "2020-12-14T04:00:55.000Z" + }, + "end": { + "$date": "2020-12-14T04:02:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "72d411a7-0824-42b4-9105-c1f406298eb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-14T04:11:48.000Z" + }, + "end": { + "$date": "2020-12-14T05:50:35.000Z" + }, + "events": [ + { + "uuid": "cdbd7a15-c3f9-4140-9bf9-5de2b73b72fa", + "start": { + "$date": "2020-12-14T04:11:48.000Z" + }, + "end": { + "$date": "2020-12-14T05:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e86ec698-4de6-48cd-a464-3ae87a75f201", + "uuid": "aaddf92e-6cdd-4ccd-8f7c-6e25e7328c05", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-14T04:23:22.000Z" + }, + "end": { + "$date": "2020-12-14T04:36:57.000Z" + }, + "events": [ + { + "uuid": "3b4c0c0b-902d-4c1b-a582-15459fe60390", + "start": { + "$date": "2020-12-14T04:23:22.000Z" + }, + "end": { + "$date": "2020-12-14T04:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fd1eac0-9a0a-41d2-90b8-6e93930a192b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-14T04:51:33.000Z" + }, + "end": { + "$date": "2020-12-14T05:08:13.000Z" + }, + "events": [ + { + "uuid": "a7f80a07-a430-41e4-a723-ffab7b07179d", + "start": { + "$date": "2020-12-14T04:51:33.000Z" + }, + "end": { + "$date": "2020-12-14T05:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "bad385c0-8032-4afb-8488-06b42685d773", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-14T04:49:46.000Z" + }, + "end": { + "$date": "2020-12-14T06:07:03.000Z" + }, + "events": [ + { + "uuid": "4576c2de-5cec-41ec-a6d0-de3b37d93ca3", + "start": { + "$date": "2020-12-14T04:49:46.000Z" + }, + "end": { + "$date": "2020-12-14T06:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "9b02a406-9e12-482b-a19d-86b97dadfd2d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-14T05:22:07.000Z" + }, + "end": { + "$date": "2020-12-14T05:48:52.000Z" + }, + "events": [ + { + "uuid": "5799003d-634d-4caa-8bd2-c15dfd23c074", + "start": { + "$date": "2020-12-14T05:22:07.000Z" + }, + "end": { + "$date": "2020-12-14T05:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "48c56e24-92e0-457c-9d57-3f9ba290e450", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-14T05:26:34.000Z" + }, + "end": { + "$date": "2020-12-14T06:17:28.000Z" + }, + "events": [ + { + "uuid": "21650097-2da5-4b61-9779-0d7234e83cb6", + "start": { + "$date": "2020-12-14T05:26:34.000Z" + }, + "end": { + "$date": "2020-12-14T06:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "7c6883a0-3634-431f-8ea4-6ad22eb1467f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-14T06:09:56.000Z" + }, + "end": { + "$date": "2020-12-14T07:35:36.000Z" + }, + "events": [ + { + "uuid": "2de13c29-bdb8-438f-b246-f577603d1303", + "start": { + "$date": "2020-12-14T06:09:56.000Z" + }, + "end": { + "$date": "2020-12-14T07:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b9ccf885-1a73-4383-afc7-74e0510ef946", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-14T06:11:19.000Z" + }, + "end": { + "$date": "2020-12-14T06:36:56.000Z" + }, + "events": [ + { + "uuid": "6b003eb7-412b-4bb5-af33-23c8b4188baf", + "start": { + "$date": "2020-12-14T06:11:19.000Z" + }, + "end": { + "$date": "2020-12-14T06:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d8addd7b-e4a8-4595-b5b8-7f7342d6a47f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-14T07:02:16.000Z" + }, + "end": { + "$date": "2020-12-14T07:31:17.000Z" + }, + "events": [ + { + "uuid": "7fc49751-e956-440f-8a5b-32d34617f73f", + "start": { + "$date": "2020-12-14T07:02:16.000Z" + }, + "end": { + "$date": "2020-12-14T07:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "455fb0f0-115d-401e-b47b-3582702b715f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-14T16:28:45.000Z" + }, + "end": { + "$date": "2020-12-14T17:27:28.000Z" + }, + "events": [ + { + "uuid": "79542414-93bb-41a7-a6db-af9986dfc3ee", + "start": { + "$date": "2020-12-14T16:28:45.000Z" + }, + "end": { + "$date": "2020-12-14T17:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "22edda98-675d-493e-bfed-170e9a74e8cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-14T17:36:33.000Z" + }, + "end": { + "$date": "2020-12-14T18:28:17.000Z" + }, + "events": [ + { + "uuid": "e8019665-2d75-4912-b315-ed4204fc4035", + "start": { + "$date": "2020-12-14T17:36:33.000Z" + }, + "end": { + "$date": "2020-12-14T18:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6b8e4d68-6c9b-48b5-9965-0e78b9f85633", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-14T19:14:18.000Z" + }, + "end": { + "$date": "2020-12-14T20:12:49.000Z" + }, + "events": [ + { + "uuid": "e1d1ffa5-d6a7-48de-bbad-7dd11099b4be", + "start": { + "$date": "2020-12-14T19:14:18.000Z" + }, + "end": { + "$date": "2020-12-14T20:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1b21524a-45d3-4471-b817-fc2bd210e0bc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-14T20:29:45.000Z" + }, + "end": { + "$date": "2020-12-14T20:36:16.000Z" + }, + "events": [ + { + "uuid": "30a90530-80ea-4b42-b831-dcc92249f6fb", + "start": { + "$date": "2020-12-14T20:29:45.000Z" + }, + "end": { + "$date": "2020-12-14T20:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e53b5129-7e5d-4900-a8b1-d6fa780d7f12", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-14T20:49:17.000Z" + }, + "end": { + "$date": "2020-12-14T21:07:58.000Z" + }, + "events": [ + { + "uuid": "507f77bf-2cec-4d03-8847-340d1ff801f2", + "start": { + "$date": "2020-12-14T20:49:17.000Z" + }, + "end": { + "$date": "2020-12-14T21:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "a72a93fd-d731-4e59-bd0d-74c7aa47b197", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-14T21:00:29.000Z" + }, + "end": { + "$date": "2020-12-14T23:26:03.000Z" + }, + "events": [ + { + "uuid": "87e163a6-eac4-4201-b26a-28dbe5a89db1", + "start": { + "$date": "2020-12-14T21:00:29.000Z" + }, + "end": { + "$date": "2020-12-14T23:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "89d5604e-38df-4a1b-b324-1ac6c4116a90", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-14T22:35:49.000Z" + }, + "end": { + "$date": "2020-12-15T00:45:40.000Z" + }, + "events": [ + { + "uuid": "ece1d5aa-0fab-4063-8eaf-73ee4f40b212", + "start": { + "$date": "2020-12-14T22:35:49.000Z" + }, + "end": { + "$date": "2020-12-15T00:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b93bd8c5-5303-4e8c-822f-41ecfa59c52c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-14T22:40:08.000Z" + }, + "end": { + "$date": "2020-12-15T00:38:18.000Z" + }, + "events": [ + { + "uuid": "8610f829-d6f2-4c1e-99e7-d6544919d695", + "start": { + "$date": "2020-12-14T22:40:08.000Z" + }, + "end": { + "$date": "2020-12-15T00:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "87674194-7299-473d-bad9-9f84ba7d33f7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-14T22:47:46.000Z" + }, + "end": { + "$date": "2020-12-14T23:25:27.000Z" + }, + "events": [ + { + "uuid": "4e0005f5-5346-4fb5-9278-1f6729a88a48", + "start": { + "$date": "2020-12-14T22:47:46.000Z" + }, + "end": { + "$date": "2020-12-14T23:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "49f76e2b-86ea-4abb-a4ad-e4d691c0bea1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-14T21:00:29.000Z" + }, + "end": { + "$date": "2020-12-15T01:09:47.000Z" + }, + "events": [ + { + "uuid": "e9c7d6d1-6877-468f-bab5-1a03be308b96", + "start": { + "$date": "2020-12-14T21:00:29.000Z" + }, + "end": { + "$date": "2020-12-15T01:09:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "730ae347-413d-4935-946e-8ff114d6c0fa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-14T23:42:37.000Z" + }, + "end": { + "$date": "2020-12-15T01:52:59.000Z" + }, + "events": [ + { + "uuid": "7d749b45-18e1-4661-965c-d573a291aa9b", + "start": { + "$date": "2020-12-14T23:42:37.000Z" + }, + "end": { + "$date": "2020-12-15T01:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "96f4ee7f-c3f6-4d54-90f4-e547a0198456", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-15T01:35:22.000Z" + }, + "end": { + "$date": "2020-12-15T05:28:14.000Z" + }, + "events": [ + { + "uuid": "d99ee13b-9e9b-4629-b854-b4be9585d44e", + "start": { + "$date": "2020-12-15T01:35:22.000Z" + }, + "end": { + "$date": "2020-12-15T05:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9043ac7a-c793-4f5b-9550-13d649f9d13a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-15T02:26:43.000Z" + }, + "end": { + "$date": "2020-12-15T03:57:18.000Z" + }, + "events": [ + { + "uuid": "05f98a19-ce9e-4880-8701-bddfa21d74d7", + "start": { + "$date": "2020-12-15T02:26:43.000Z" + }, + "end": { + "$date": "2020-12-15T03:35:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d80a77f-d51e-43a0-a903-e01f773ee21f", + "start": { + "$date": "2020-12-15T03:35:43.000Z" + }, + "end": { + "$date": "2020-12-15T03:57:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "37d83d73-3bb5-4027-ae46-7cd89c07ba7f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-15T02:33:29.000Z" + }, + "end": { + "$date": "2020-12-15T04:42:07.000Z" + }, + "events": [ + { + "uuid": "f06883a6-163b-46e9-8759-51fba0583de1", + "start": { + "$date": "2020-12-15T02:33:29.000Z" + }, + "end": { + "$date": "2020-12-15T04:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3b1560cc-ec9c-48ac-b8a6-66a3627846be", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-15T03:03:56.000Z" + }, + "end": { + "$date": "2020-12-15T04:42:35.000Z" + }, + "events": [ + { + "uuid": "d8567d87-b425-47c6-a6b9-83668ebb41c2", + "start": { + "$date": "2020-12-15T03:03:56.000Z" + }, + "end": { + "$date": "2020-12-15T04:42:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fd6a7e6e-e2a6-4257-9e60-69e726715ca3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-15T03:24:05.000Z" + }, + "end": { + "$date": "2020-12-15T04:54:42.000Z" + }, + "events": [ + { + "uuid": "a0f69220-5e65-4a6d-a8fa-901a4f9924ac", + "start": { + "$date": "2020-12-15T03:24:05.000Z" + }, + "end": { + "$date": "2020-12-15T03:52:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99b7bc12-fee0-4716-8b75-ca1a71b9663a", + "start": { + "$date": "2020-12-15T03:52:05.000Z" + }, + "end": { + "$date": "2020-12-15T03:53:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2b5d250-deb7-4026-81f3-12364f741f0b", + "start": { + "$date": "2020-12-15T03:53:05.000Z" + }, + "end": { + "$date": "2020-12-15T04:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1bcc543-bbcd-4518-bf56-f27e67b0c788", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-15T03:45:26.000Z" + }, + "end": { + "$date": "2020-12-15T06:50:15.000Z" + }, + "events": [ + { + "uuid": "b429ed16-bdf2-409f-91d8-7f357e3524ae", + "start": { + "$date": "2020-12-15T03:45:26.000Z" + }, + "end": { + "$date": "2020-12-15T06:50:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3477b417-ca92-4968-bbcc-d969f0b6361a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-15T04:01:59.000Z" + }, + "end": { + "$date": "2020-12-15T05:59:28.000Z" + }, + "events": [ + { + "uuid": "f4b75937-ce0d-450a-a1a2-a191569f50b9", + "start": { + "$date": "2020-12-15T04:01:59.000Z" + }, + "end": { + "$date": "2020-12-15T05:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ed5631cf-1769-4e57-ab1f-8ce17b93ac94", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-15T04:55:55.000Z" + }, + "end": { + "$date": "2020-12-15T07:42:40.000Z" + }, + "events": [ + { + "uuid": "e9f867b5-adbc-449d-b204-efa88582cf75", + "start": { + "$date": "2020-12-15T04:55:55.000Z" + }, + "end": { + "$date": "2020-12-15T07:42:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "505e7a84-6e29-4eea-8e2f-eb8f64d24e7b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-15T05:27:24.000Z" + }, + "end": { + "$date": "2020-12-15T06:50:17.000Z" + }, + "events": [ + { + "uuid": "15975f65-80a3-4f71-8ed7-32b428ed4a5a", + "start": { + "$date": "2020-12-15T05:27:24.000Z" + }, + "end": { + "$date": "2020-12-15T06:50:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "4fca2b30-aa9a-4daf-bd90-5ae643d949c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-15T05:27:56.000Z" + }, + "end": { + "$date": "2020-12-15T06:01:45.000Z" + }, + "events": [ + { + "uuid": "946ad720-ee32-4f73-9967-71ccf9388154", + "start": { + "$date": "2020-12-15T05:27:56.000Z" + }, + "end": { + "$date": "2020-12-15T06:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c2b2decc-9015-493d-9a1b-3ebaa7e6725c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-15T06:03:34.000Z" + }, + "end": { + "$date": "2020-12-15T06:04:43.000Z" + }, + "events": [ + { + "uuid": "e05bcb70-feb0-4641-b556-4c6d225e185a", + "start": { + "$date": "2020-12-15T06:03:34.000Z" + }, + "end": { + "$date": "2020-12-15T06:04:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "9f8f7600-f05e-4081-9977-af6369e80b99", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-15T06:08:04.000Z" + }, + "end": { + "$date": "2020-12-15T06:54:34.000Z" + }, + "events": [ + { + "uuid": "7539dd53-7259-4ec0-a576-fbaa15f5cb5f", + "start": { + "$date": "2020-12-15T06:08:04.000Z" + }, + "end": { + "$date": "2020-12-15T06:54:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "15ac869f-6d25-4cff-a324-0d5e4112722d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-15T06:38:53.000Z" + }, + "end": { + "$date": "2020-12-15T10:15:07.000Z" + }, + "events": [ + { + "uuid": "696d9b50-074c-493d-a273-b36e9ac5a304", + "start": { + "$date": "2020-12-15T06:38:53.000Z" + }, + "end": { + "$date": "2020-12-15T10:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5a26f0b0-b645-48ce-80c7-2dd211209e3b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-15T16:19:03.000Z" + }, + "end": { + "$date": "2020-12-15T16:31:09.000Z" + }, + "events": [ + { + "uuid": "78655380-6448-4a43-b4dc-09b63ccd096a", + "start": { + "$date": "2020-12-15T16:19:03.000Z" + }, + "end": { + "$date": "2020-12-15T16:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f5b6a4e-c582-416f-bf81-23c75f76e730", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-15T17:09:01.000Z" + }, + "end": { + "$date": "2020-12-15T17:34:38.000Z" + }, + "events": [ + { + "uuid": "c1279582-4dc8-4e4f-b98e-1e0fa1c3fa2a", + "start": { + "$date": "2020-12-15T17:09:01.000Z" + }, + "end": { + "$date": "2020-12-15T17:34:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8ddb10c2-2280-4d72-b5ca-563386ec21fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-15T17:24:11.000Z" + }, + "end": { + "$date": "2020-12-15T17:34:18.000Z" + }, + "events": [ + { + "uuid": "1e3aac88-0299-4fb1-a7c1-2e032cf6e878", + "start": { + "$date": "2020-12-15T17:24:11.000Z" + }, + "end": { + "$date": "2020-12-15T17:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fa4ee9db-8971-48be-916b-fa7426246e52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-15T17:45:29.000Z" + }, + "end": { + "$date": "2020-12-15T18:09:42.000Z" + }, + "events": [ + { + "uuid": "a7546c91-2483-4248-a162-40c975dabdaf", + "start": { + "$date": "2020-12-15T17:45:29.000Z" + }, + "end": { + "$date": "2020-12-15T18:09:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5920b1e3-9c5a-4b83-8ea7-6474dac64d92", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-15T18:34:01.000Z" + }, + "end": { + "$date": "2020-12-15T18:34:02.000Z" + }, + "events": [ + { + "uuid": "fc0a2591-5f5c-4354-a5a8-97aa1060d81e", + "start": { + "$date": "2020-12-15T18:34:01.000Z" + }, + "end": { + "$date": "2020-12-15T18:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f152dcc0-09e7-435d-a1dc-982e49545519", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-15T18:09:56.000Z" + }, + "end": { + "$date": "2020-12-15T19:35:28.000Z" + }, + "events": [ + { + "uuid": "6d8f512d-3890-4bc3-be96-0ac3c90f381c", + "start": { + "$date": "2020-12-15T18:09:56.000Z" + }, + "end": { + "$date": "2020-12-15T19:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7703c8f8-6a7d-4400-8f99-35d2a245c0ac", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-15T20:33:57.000Z" + }, + "end": { + "$date": "2020-12-15T21:37:23.000Z" + }, + "events": [ + { + "uuid": "87ff6dc5-a225-42a8-9a95-d912301c8b66", + "start": { + "$date": "2020-12-15T20:33:57.000Z" + }, + "end": { + "$date": "2020-12-15T21:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ef3ad23-95b2-4a87-bb33-cd05f5ba35c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-15T20:52:48.000Z" + }, + "end": { + "$date": "2020-12-15T21:12:22.000Z" + }, + "events": [ + { + "uuid": "386bc5d6-ebb1-4091-8834-a8daa4b9c08c", + "start": { + "$date": "2020-12-15T20:52:48.000Z" + }, + "end": { + "$date": "2020-12-15T21:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cd0c7ac5-ba8a-4d10-a9f6-3aad892178af", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-15T22:14:36.000Z" + }, + "end": { + "$date": "2020-12-15T23:18:14.000Z" + }, + "events": [ + { + "uuid": "d775288d-4f66-4cf7-9247-16531c3f1b0f", + "start": { + "$date": "2020-12-15T22:14:36.000Z" + }, + "end": { + "$date": "2020-12-15T23:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8cd0eb1a-866e-4d39-ad22-41e55357e824", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-15T22:16:18.000Z" + }, + "end": { + "$date": "2020-12-15T23:16:04.000Z" + }, + "events": [ + { + "uuid": "fdf00013-600f-47f2-9d9f-2739ba87e113", + "start": { + "$date": "2020-12-15T22:16:18.000Z" + }, + "end": { + "$date": "2020-12-15T23:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "c25312db-4acf-4569-9118-f51ff0730163", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-15T22:28:02.000Z" + }, + "end": { + "$date": "2020-12-16T02:56:48.000Z" + }, + "events": [ + { + "uuid": "2a02a86c-36f4-4d24-90dc-cf33217b16f4", + "start": { + "$date": "2020-12-15T22:28:02.000Z" + }, + "end": { + "$date": "2020-12-16T00:22:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dadf4e28-8e7c-456a-8b4c-ee185efe7722", + "start": { + "$date": "2020-12-16T00:22:02.000Z" + }, + "end": { + "$date": "2020-12-16T00:24:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af14097a-401e-4aa8-ad51-1ff2b9399d38", + "start": { + "$date": "2020-12-16T00:24:02.000Z" + }, + "end": { + "$date": "2020-12-16T02:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "852bffbf-7f8b-4da3-8812-a6e9af77d7a5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T00:46:28.000Z" + }, + "end": { + "$date": "2020-12-16T00:46:38.000Z" + }, + "events": [ + { + "uuid": "2302dd58-04fd-4ea5-8cf6-0af6c0e32966", + "start": { + "$date": "2020-12-16T00:46:28.000Z" + }, + "end": { + "$date": "2020-12-16T00:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "9338ed01-3316-49e1-a367-ed078511a6fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-15T23:49:59.000Z" + }, + "end": { + "$date": "2020-12-16T00:22:05.000Z" + }, + "events": [ + { + "uuid": "6a252b78-90c2-4a8b-8db9-8ea067abbd09", + "start": { + "$date": "2020-12-15T23:49:59.000Z" + }, + "end": { + "$date": "2020-12-16T00:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f75259f0-1d13-40ee-b0e2-7a571cf5f27c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-15T23:57:30.000Z" + }, + "end": { + "$date": "2020-12-16T00:10:17.000Z" + }, + "events": [ + { + "uuid": "86ae1387-fed4-49d8-8683-b807cb4520fa", + "start": { + "$date": "2020-12-15T23:57:30.000Z" + }, + "end": { + "$date": "2020-12-16T00:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "a7c4b1fe-82b0-4bd8-a07f-478edd4ead14", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-16T00:01:48.000Z" + }, + "end": { + "$date": "2020-12-16T01:41:54.000Z" + }, + "events": [ + { + "uuid": "f9cf20b6-10bd-4325-a522-bb245036f826", + "start": { + "$date": "2020-12-16T00:01:48.000Z" + }, + "end": { + "$date": "2020-12-16T00:47:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93dd1a10-527e-4054-9bf9-ebac5b8f57c4", + "start": { + "$date": "2020-12-16T00:47:48.000Z" + }, + "end": { + "$date": "2020-12-16T00:50:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b2f2f56b-c336-49d9-90a4-aeb95fd02bd4", + "start": { + "$date": "2020-12-16T00:50:48.000Z" + }, + "end": { + "$date": "2020-12-16T01:41:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "c659223a-d9fc-4e16-8357-007e461fa99b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T00:24:35.000Z" + }, + "end": { + "$date": "2020-12-16T00:51:42.000Z" + }, + "events": [ + { + "uuid": "d0b1c8bf-8dc5-43f9-815c-8ed6a09fdcd7", + "start": { + "$date": "2020-12-16T00:24:35.000Z" + }, + "end": { + "$date": "2020-12-16T00:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "43c1cf0a-2d2d-4c32-8e0f-427d8b198661", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-16T00:29:57.000Z" + }, + "end": { + "$date": "2020-12-16T01:17:27.000Z" + }, + "events": [ + { + "uuid": "9c12f02f-7e3a-41cd-8b24-50ceb6bb306c", + "start": { + "$date": "2020-12-16T00:29:57.000Z" + }, + "end": { + "$date": "2020-12-16T01:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c4c7e3ac-cf53-4509-890a-168ad0e07678", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T00:44:41.000Z" + }, + "end": { + "$date": "2020-12-16T00:45:48.000Z" + }, + "events": [ + { + "uuid": "c5e54467-2245-48b3-9a66-7f817882eb79", + "start": { + "$date": "2020-12-16T00:44:41.000Z" + }, + "end": { + "$date": "2020-12-16T00:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c7bf1a61-a60b-4ad8-b151-d6f2e1467b05", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T00:46:01.000Z" + }, + "end": { + "$date": "2020-12-16T00:56:13.000Z" + }, + "events": [ + { + "uuid": "5a52f910-0306-46ba-9e5e-550753de1008", + "start": { + "$date": "2020-12-16T00:46:01.000Z" + }, + "end": { + "$date": "2020-12-16T00:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "81596282-2518-4e2f-bc01-46f52b37d392", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T03:47:08.000Z" + }, + "end": { + "$date": "2020-12-16T03:57:39.000Z" + }, + "events": [ + { + "uuid": "c1ea67c7-2819-468a-ba49-b44bb253d9c6", + "start": { + "$date": "2020-12-16T03:47:08.000Z" + }, + "end": { + "$date": "2020-12-16T03:48:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba8e54ac-6b05-4417-8a3b-a3d056889b85", + "start": { + "$date": "2020-12-16T03:48:08.000Z" + }, + "end": { + "$date": "2020-12-16T03:52:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "833f0df4-8121-4488-88e4-af7858b3a56b", + "start": { + "$date": "2020-12-16T03:52:08.000Z" + }, + "end": { + "$date": "2020-12-16T04:19:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "53ce5084-d38b-41e3-8b42-65ef2c563898", + "start": { + "$date": "2020-12-16T04:19:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:25:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44da0319-b80c-46d0-bf7c-afbf2ddabec7", + "start": { + "$date": "2020-12-16T05:25:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:27:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62c3409e-194f-40c7-a913-154df1a2fd94", + "start": { + "$date": "2020-12-16T05:27:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:33:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "50f972e2-5dd0-41cf-9c57-d3c63af5ba5e", + "start": { + "$date": "2020-12-16T05:33:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:36:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2607b9bc-187e-4c39-ba4d-c33c245165be", + "start": { + "$date": "2020-12-16T05:36:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:38:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9918dce5-cc3e-486b-9b29-97818a8390b0", + "start": { + "$date": "2020-12-16T05:38:08.000Z" + }, + "end": { + "$date": "2020-12-16T03:57:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "183145ef-c8fc-4717-9e0c-5d35b767da36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T01:05:46.000Z" + }, + "end": { + "$date": "2020-12-16T01:36:39.000Z" + }, + "events": [ + { + "uuid": "7e8f1ba8-5277-4e8f-b06b-948cb0544fef", + "start": { + "$date": "2020-12-16T01:05:46.000Z" + }, + "end": { + "$date": "2020-12-16T01:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ec57d1bb-c93c-400b-bc4a-0b74bd675956", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-16T01:17:38.000Z" + }, + "end": { + "$date": "2020-12-16T01:37:00.000Z" + }, + "events": [ + { + "uuid": "93246bd1-6d55-4c88-9b8e-93ae2a1d4888", + "start": { + "$date": "2020-12-16T01:17:38.000Z" + }, + "end": { + "$date": "2020-12-16T01:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "a61b38c7-93db-4724-ae93-cf36866332c4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T02:08:22.000Z" + }, + "end": { + "$date": "2020-12-16T04:15:50.000Z" + }, + "events": [ + { + "uuid": "260a8cef-5f93-4bf7-b17d-f1876fcac49e", + "start": { + "$date": "2020-12-16T02:08:22.000Z" + }, + "end": { + "$date": "2020-12-16T04:15:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "3c957c42-047f-4cc9-b6c8-3e50170808c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-16T02:09:23.000Z" + }, + "end": { + "$date": "2020-12-16T04:17:28.000Z" + }, + "events": [ + { + "uuid": "06c82fce-6f9f-40a2-8876-d9a0f6851830", + "start": { + "$date": "2020-12-16T02:09:23.000Z" + }, + "end": { + "$date": "2020-12-16T04:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "de1682d5-daa6-466d-8695-023e137514b4", + "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "start": { + "$date": "2020-12-16T02:28:10.000Z" + }, + "end": { + "$date": "2020-12-16T04:29:00.000Z" + }, + "events": [ + { + "uuid": "7e5fb235-7811-4fa6-9071-8628f6c71488", + "start": { + "$date": "2020-12-16T02:28:10.000Z" + }, + "end": { + "$date": "2020-12-16T04:29:00.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "627cd9b5-983e-4c8d-b9e8-58487ff81e9e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-16T02:29:14.000Z" + }, + "end": { + "$date": "2020-12-16T04:27:21.000Z" + }, + "events": [ + { + "uuid": "d4b40fe0-cde0-4758-87d0-8457e47dba8f", + "start": { + "$date": "2020-12-16T02:29:14.000Z" + }, + "end": { + "$date": "2020-12-16T04:27:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4766dc0d-4465-4c39-9822-006d92a95d45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T02:39:40.000Z" + }, + "end": { + "$date": "2020-12-16T03:05:51.000Z" + }, + "events": [ + { + "uuid": "2aafdbca-5f0e-4ba8-9635-b55affb98fce", + "start": { + "$date": "2020-12-16T02:39:40.000Z" + }, + "end": { + "$date": "2020-12-16T03:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "17c862aa-7e37-4551-8d18-a7bc47aed07e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-16T02:45:13.000Z" + }, + "end": { + "$date": "2020-12-16T02:48:02.000Z" + }, + "events": [ + { + "uuid": "abef1aee-f58a-4738-822d-d143f1f91733", + "start": { + "$date": "2020-12-16T02:45:13.000Z" + }, + "end": { + "$date": "2020-12-16T02:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "07adfe0e-c68e-4f99-a522-91fd7ae9c0fe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-16T02:48:57.000Z" + }, + "end": { + "$date": "2020-12-16T07:56:11.000Z" + }, + "events": [ + { + "uuid": "43ea3f27-45e5-4a67-894a-ffbb7e30f63b", + "start": { + "$date": "2020-12-16T02:48:57.000Z" + }, + "end": { + "$date": "2020-12-16T07:56:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9817f410-88b9-47f4-981b-a92681d7a3ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T03:06:26.000Z" + }, + "end": { + "$date": "2020-12-16T05:46:04.000Z" + }, + "events": [ + { + "uuid": "70e5b555-361b-4a6a-8ca0-e8e2841594fc", + "start": { + "$date": "2020-12-16T03:06:26.000Z" + }, + "end": { + "$date": "2020-12-16T05:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42f1825b-b6c8-4efb-86f7-ec34df265296", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T03:18:16.000Z" + }, + "end": { + "$date": "2020-12-16T03:30:17.000Z" + }, + "events": [ + { + "uuid": "49da2f49-94a4-4701-8b34-f2667190d819", + "start": { + "$date": "2020-12-16T03:18:16.000Z" + }, + "end": { + "$date": "2020-12-16T03:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "897d3962-bda5-4de0-a8b8-033aa3c4c98e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T03:34:58.000Z" + }, + "end": { + "$date": "2020-12-16T03:53:07.000Z" + }, + "events": [ + { + "uuid": "9c37fa15-44d1-4f74-b987-29374e648b71", + "start": { + "$date": "2020-12-16T03:34:58.000Z" + }, + "end": { + "$date": "2020-12-16T03:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a06645cf-7547-461e-95e7-364ec5e0473e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T03:53:31.000Z" + }, + "end": { + "$date": "2020-12-16T04:16:55.000Z" + }, + "events": [ + { + "uuid": "7275d31b-fa88-48a9-835d-98fe71a63890", + "start": { + "$date": "2020-12-16T03:53:31.000Z" + }, + "end": { + "$date": "2020-12-16T04:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "750980e6-053c-4ba7-9103-faa7da450c06", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T03:55:40.000Z" + }, + "end": { + "$date": "2020-12-16T04:16:12.000Z" + }, + "events": [ + { + "uuid": "7be3c261-7a97-4deb-b61b-887d2db68fea", + "start": { + "$date": "2020-12-16T03:55:40.000Z" + }, + "end": { + "$date": "2020-12-16T04:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c58a53a8-e79a-4ef1-ae93-761b541278dd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T04:16:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:02:53.000Z" + }, + "events": [ + { + "uuid": "d4118f86-2c36-4154-84f1-a80461eda02f", + "start": { + "$date": "2020-12-16T04:16:08.000Z" + }, + "end": { + "$date": "2020-12-16T05:02:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d975287e-f12c-4112-85ed-b0df2fdf63b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T04:19:33.000Z" + }, + "end": { + "$date": "2020-12-16T04:43:17.000Z" + }, + "events": [ + { + "uuid": "ff4c1fde-098c-47c4-b319-f5bba0f26b47", + "start": { + "$date": "2020-12-16T04:19:33.000Z" + }, + "end": { + "$date": "2020-12-16T04:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2521ec96-6f2d-4aa0-a790-4cb977c2a0e7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T04:43:07.000Z" + }, + "end": { + "$date": "2020-12-16T04:43:40.000Z" + }, + "events": [ + { + "uuid": "3738365b-f2b3-4b0f-8baa-a90ecf6c729b", + "start": { + "$date": "2020-12-16T04:43:07.000Z" + }, + "end": { + "$date": "2020-12-16T04:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff60c91c-d5ef-4609-96c2-4efdbec986b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T04:19:31.000Z" + }, + "end": { + "$date": "2020-12-16T04:43:07.000Z" + }, + "events": [ + { + "uuid": "b83ada84-4b7a-41be-8ed1-1660ae863eaa", + "start": { + "$date": "2020-12-16T04:19:31.000Z" + }, + "end": { + "$date": "2020-12-16T04:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7518a063-5bee-4531-b7f1-338247924044", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-16T04:28:56.000Z" + }, + "end": { + "$date": "2020-12-16T04:30:31.000Z" + }, + "events": [ + { + "uuid": "42051f1a-6c08-4ac4-a635-464da691de03", + "start": { + "$date": "2020-12-16T04:28:56.000Z" + }, + "end": { + "$date": "2020-12-16T04:30:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "449e187f-72a1-4b40-836c-530d2a568c45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T05:25:40.000Z" + }, + "end": { + "$date": "2020-12-16T05:48:22.000Z" + }, + "events": [ + { + "uuid": "7a942ae2-6f2c-4e33-af3e-d25b45ab4f35", + "start": { + "$date": "2020-12-16T05:25:40.000Z" + }, + "end": { + "$date": "2020-12-16T05:48:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3f5b311-b4a2-44a7-9b59-e4a86a821b49", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T05:08:37.000Z" + }, + "end": { + "$date": "2020-12-16T05:36:16.000Z" + }, + "events": [ + { + "uuid": "bae7eb51-1fc9-491f-806c-0d7b1ec7e7c2", + "start": { + "$date": "2020-12-16T05:08:37.000Z" + }, + "end": { + "$date": "2020-12-16T05:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8966d2e-b4c5-42e7-ba22-aa495c1a93b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T05:25:43.000Z" + }, + "end": { + "$date": "2020-12-16T05:48:24.000Z" + }, + "events": [ + { + "uuid": "95e6a4fe-51a3-4805-9cbb-9f07c18d1a58", + "start": { + "$date": "2020-12-16T05:25:43.000Z" + }, + "end": { + "$date": "2020-12-16T05:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "059812a7-1c33-4822-a34b-b3126becc25b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T05:18:38.000Z" + }, + "end": { + "$date": "2020-12-16T05:23:30.000Z" + }, + "events": [ + { + "uuid": "b35be319-e25e-4ab2-a144-12b85625e5ab", + "start": { + "$date": "2020-12-16T05:18:38.000Z" + }, + "end": { + "$date": "2020-12-16T05:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c873efac-31ad-44c4-8fca-7982f9ff17be", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T05:51:20.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:05.000Z" + }, + "events": [ + { + "uuid": "9288cc64-3979-4749-9338-e3f387f2ed11", + "start": { + "$date": "2020-12-16T05:51:20.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d68785c3-1861-4641-ae71-789d8fab0f73", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T06:06:17.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:49.000Z" + }, + "events": [ + { + "uuid": "291363ec-52d0-47ee-b335-68e19047c86c", + "start": { + "$date": "2020-12-16T06:06:17.000Z" + }, + "end": { + "$date": "2020-12-16T06:22:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5690cf3d-9c19-4ee6-b3ac-23a0e0d77158", + "start": { + "$date": "2020-12-16T06:22:17.000Z" + }, + "end": { + "$date": "2020-12-16T06:24:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6a18c11-d211-4c66-b28a-96aaf67317f4", + "start": { + "$date": "2020-12-16T06:24:17.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "92a1c25c-953d-4eb1-b912-7b66ba7962b7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-16T05:42:40.000Z" + }, + "end": { + "$date": "2020-12-16T06:46:34.000Z" + }, + "events": [ + { + "uuid": "a9c0cdb7-44eb-4bcb-a02b-c2dfb0b0089d", + "start": { + "$date": "2020-12-16T05:42:40.000Z" + }, + "end": { + "$date": "2020-12-16T06:01:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f88eb9d-6f1c-4e9e-b5f9-b7d29c9ca1eb", + "start": { + "$date": "2020-12-16T06:01:40.000Z" + }, + "end": { + "$date": "2020-12-16T06:08:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04ab012a-f1e9-4165-9f23-e3f0db94e834", + "start": { + "$date": "2020-12-16T06:08:40.000Z" + }, + "end": { + "$date": "2020-12-16T06:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "751c5e4e-4574-4e17-80dd-b3561a056d97", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T05:51:15.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:03.000Z" + }, + "events": [ + { + "uuid": "6a4b2de0-55a7-405b-9e24-07a5dbd62179", + "start": { + "$date": "2020-12-16T05:51:15.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ed8b065-cc4b-4a8c-80e2-fcd304676244", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T05:51:14.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:00.000Z" + }, + "events": [ + { + "uuid": "7de41963-0719-4f85-9e03-e867d54b2b4c", + "start": { + "$date": "2020-12-16T05:51:14.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc574662-2ec4-4481-afc8-bc6b33f74397", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-16T05:51:16.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:02.000Z" + }, + "events": [ + { + "uuid": "6d22c3de-4938-4fcc-a6cf-c34d60ce1374", + "start": { + "$date": "2020-12-16T05:51:16.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9dab24c-c57b-4571-8e9c-5397683cd797", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T05:51:14.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:00.000Z" + }, + "events": [ + { + "uuid": "cf0d13c0-4146-410e-b0ec-c6d480940ba0", + "start": { + "$date": "2020-12-16T05:51:14.000Z" + }, + "end": { + "$date": "2020-12-16T06:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "926a4bd5-d0ca-47bc-b6a5-647ef864dbfa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T06:14:47.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:24.000Z" + }, + "events": [ + { + "uuid": "d9915cf0-08bd-4ffe-abeb-dc26385cc059", + "start": { + "$date": "2020-12-16T06:14:47.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "365ac480-bdb6-46be-93bc-f73d4b86b9b8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T06:14:45.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:21.000Z" + }, + "events": [ + { + "uuid": "cbf062c8-6c58-437a-b318-a255ad0d5a0f", + "start": { + "$date": "2020-12-16T06:14:45.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9c7ef6b-e58f-4341-b4f3-702e86b0d140", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T06:14:45.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:25.000Z" + }, + "events": [ + { + "uuid": "392757c8-b055-44e5-9c1a-681f2c4cadec", + "start": { + "$date": "2020-12-16T06:14:45.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53ab4227-ef23-403b-a0f5-022f234fa91e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T06:14:43.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:25.000Z" + }, + "events": [ + { + "uuid": "c51daac1-30c7-4a3a-ab12-0a8ad2869d7d", + "start": { + "$date": "2020-12-16T06:14:43.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "233c2e05-f2c7-4027-92c9-764bd1701391", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-16T06:14:42.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:28.000Z" + }, + "events": [ + { + "uuid": "79b74b93-bb08-46a9-84d8-b7c168536577", + "start": { + "$date": "2020-12-16T06:14:42.000Z" + }, + "end": { + "$date": "2020-12-16T06:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac574b94-2a05-4e56-90d1-320fc720e145", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T06:34:23.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:40.000Z" + }, + "events": [ + { + "uuid": "474006c5-71f2-451c-b845-7f8289e57b94", + "start": { + "$date": "2020-12-16T06:34:23.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2187deef-ba02-45b6-8718-0d520c311a7c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T06:35:11.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:37.000Z" + }, + "events": [ + { + "uuid": "1733bdde-8495-460d-b46a-96e142b05e64", + "start": { + "$date": "2020-12-16T06:35:11.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "955d2a18-1308-479d-a06b-796c072782a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T06:34:20.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:41.000Z" + }, + "events": [ + { + "uuid": "fc8cb269-82db-4f66-a47c-9f2f1d8fe9a7", + "start": { + "$date": "2020-12-16T06:34:20.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e85ec85-6042-4b77-ac7b-414278dd036a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T06:34:48.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:40.000Z" + }, + "events": [ + { + "uuid": "8dc30ba2-3389-410c-b887-3bb1c4717f15", + "start": { + "$date": "2020-12-16T06:34:48.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02ba1ab8-ca82-4154-8830-101b283a72f4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-16T06:34:17.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:43.000Z" + }, + "events": [ + { + "uuid": "df37b9e9-3e4f-4611-94d2-ee8b34c2db83", + "start": { + "$date": "2020-12-16T06:34:17.000Z" + }, + "end": { + "$date": "2020-12-16T06:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8e979865-ff5c-481a-ab83-531beb8ef0d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-16T06:47:00.000Z" + }, + "end": { + "$date": "2020-12-16T06:49:39.000Z" + }, + "events": [ + { + "uuid": "dd67daa5-1c93-42b9-ae58-0c9ac37de55d", + "start": { + "$date": "2020-12-16T06:47:00.000Z" + }, + "end": { + "$date": "2020-12-16T06:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", + "uuid": "692a6720-0da8-45ad-90d3-bbd1d415ed8f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-16T06:48:37.000Z" + }, + "end": { + "$date": "2020-12-16T07:14:42.000Z" + }, + "events": [ + { + "uuid": "155de5c9-4f3f-45c8-b0fb-b5906afd9ee6", + "start": { + "$date": "2020-12-16T06:48:37.000Z" + }, + "end": { + "$date": "2020-12-16T07:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "f6a874f0-2798-4ec4-a919-0e682eb3e92f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T06:49:29.000Z" + }, + "end": { + "$date": "2020-12-16T07:43:58.000Z" + }, + "events": [ + { + "uuid": "eb0a8946-3554-4dc4-afd2-20042fae7f2c", + "start": { + "$date": "2020-12-16T06:49:29.000Z" + }, + "end": { + "$date": "2020-12-16T07:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c6fa7070-867b-478e-9755-5dc0e3ed1424", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-16T06:50:25.000Z" + }, + "end": { + "$date": "2020-12-16T09:01:03.000Z" + }, + "events": [ + { + "uuid": "278e0af8-958d-4849-9396-f8cae6388b09", + "start": { + "$date": "2020-12-16T06:50:25.000Z" + }, + "end": { + "$date": "2020-12-16T09:01:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "bcc7c031-8caf-4194-84ef-2e1031fc715a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T07:01:50.000Z" + }, + "end": { + "$date": "2020-12-16T08:13:28.000Z" + }, + "events": [ + { + "uuid": "295f4762-e1a8-437c-9122-3b35c2cce7c4", + "start": { + "$date": "2020-12-16T07:01:50.000Z" + }, + "end": { + "$date": "2020-12-16T08:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "9ca79e20-77a3-4772-8497-1ba09048f8e5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-16T07:46:48.000Z" + }, + "end": { + "$date": "2020-12-16T07:49:04.000Z" + }, + "events": [ + { + "uuid": "f75e2764-d40d-4130-9c10-0c3045de5ef1", + "start": { + "$date": "2020-12-16T07:46:48.000Z" + }, + "end": { + "$date": "2020-12-16T07:49:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0998a21e-a471-4591-9891-dc70a85b5ab9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T19:33:04.000Z" + }, + "end": { + "$date": "2020-12-16T20:27:04.000Z" + }, + "events": [ + { + "uuid": "f5f6ccc2-c6db-4a4a-8fb6-4fa7dad53d0d", + "start": { + "$date": "2020-12-16T19:33:04.000Z" + }, + "end": { + "$date": "2020-12-16T20:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "a1949326-f715-4ff5-8001-e78f32d6b1f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-16T19:51:28.000Z" + }, + "end": { + "$date": "2020-12-17T00:02:40.000Z" + }, + "events": [ + { + "uuid": "cdfcf34e-0c56-4187-85d4-58301a442aa5", + "start": { + "$date": "2020-12-16T19:51:28.000Z" + }, + "end": { + "$date": "2020-12-16T20:41:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5cddd86-72c6-424c-8c46-b4cc145f8053", + "start": { + "$date": "2020-12-16T20:41:28.000Z" + }, + "end": { + "$date": "2020-12-16T21:10:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b5585776-bde8-4217-be31-f62649949c6b", + "start": { + "$date": "2020-12-16T21:10:28.000Z" + }, + "end": { + "$date": "2020-12-17T00:02:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f16e7925-b7d2-4d6b-8739-48deadcf88b3", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-16T20:20:52.000Z" + }, + "end": { + "$date": "2020-12-16T20:57:18.000Z" + }, + "events": [ + { + "uuid": "43b2c29f-1c8d-4a8e-8890-405467826d30", + "start": { + "$date": "2020-12-16T20:20:52.000Z" + }, + "end": { + "$date": "2020-12-16T20:57:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ad461ebb-0d3c-4a7c-8d19-e5d0731fb7ec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-16T21:03:09.000Z" + }, + "end": { + "$date": "2020-12-17T01:08:15.000Z" + }, + "events": [ + { + "uuid": "0d7efa22-e08d-4376-b951-b5d1a309426d", + "start": { + "$date": "2020-12-16T21:03:09.000Z" + }, + "end": { + "$date": "2020-12-17T01:08:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b4796529-799f-473a-a9ff-570a3ebe5b10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T21:28:08.000Z" + }, + "end": { + "$date": "2020-12-16T21:51:40.000Z" + }, + "events": [ + { + "uuid": "6629bf4c-169d-47d8-aa0d-479d77218a26", + "start": { + "$date": "2020-12-16T21:28:08.000Z" + }, + "end": { + "$date": "2020-12-16T21:51:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "22b5a556-e84a-424a-a6e7-c8807692d2b4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-16T22:16:24.000Z" + }, + "end": { + "$date": "2020-12-16T23:00:52.000Z" + }, + "events": [ + { + "uuid": "505a0c7e-c70c-45dc-a6c2-8488dcffe456", + "start": { + "$date": "2020-12-16T22:16:24.000Z" + }, + "end": { + "$date": "2020-12-16T23:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0cc5832d-c26f-4021-a0ff-8370e85c9c3c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-16T22:28:57.000Z" + }, + "end": { + "$date": "2020-12-16T22:56:45.000Z" + }, + "events": [ + { + "uuid": "7ff2680e-c963-4f61-b880-1c34559febfc", + "start": { + "$date": "2020-12-16T22:28:57.000Z" + }, + "end": { + "$date": "2020-12-16T22:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ab1a654e-52d8-4f48-b845-a57672ce639e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-16T23:07:00.000Z" + }, + "end": { + "$date": "2020-12-16T23:12:01.000Z" + }, + "events": [ + { + "uuid": "9ee71dd6-74d7-4cc9-9bdb-ab1c1604fd15", + "start": { + "$date": "2020-12-16T23:07:00.000Z" + }, + "end": { + "$date": "2020-12-16T23:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "21203cb8-62f9-4491-9f7e-e3fec62c70a9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T23:08:26.000Z" + }, + "end": { + "$date": "2020-12-16T23:31:26.000Z" + }, + "events": [ + { + "uuid": "67416328-75e6-455a-9814-2027423f84bc", + "start": { + "$date": "2020-12-16T23:08:26.000Z" + }, + "end": { + "$date": "2020-12-16T23:31:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "b0de5e8b-b898-4e36-8c45-841b0c243217", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-16T23:52:38.000Z" + }, + "end": { + "$date": "2020-12-17T00:30:20.000Z" + }, + "events": [ + { + "uuid": "dade860c-91ec-40fb-8def-304da0afdae3", + "start": { + "$date": "2020-12-16T23:52:38.000Z" + }, + "end": { + "$date": "2020-12-17T00:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "4eb0c092-e6be-49bb-86e7-e2be91239fbd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-17T00:35:50.000Z" + }, + "end": { + "$date": "2020-12-17T00:38:51.000Z" + }, + "events": [ + { + "uuid": "c220f2e9-0896-4812-a8a4-95a1f3a90b03", + "start": { + "$date": "2020-12-17T00:35:50.000Z" + }, + "end": { + "$date": "2020-12-17T00:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ce5b7085-81f7-440c-bc24-8d290d3e4b1a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T01:11:30.000Z" + }, + "end": { + "$date": "2020-12-17T01:14:14.000Z" + }, + "events": [ + { + "uuid": "1d36d39c-56a9-47c8-90f6-b070f845b781", + "start": { + "$date": "2020-12-17T01:11:30.000Z" + }, + "end": { + "$date": "2020-12-17T01:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "57c83960-2e80-4e1e-8ec1-0a8d998e40e1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T01:14:36.000Z" + }, + "end": { + "$date": "2020-12-17T02:11:19.000Z" + }, + "events": [ + { + "uuid": "55abfdfb-afae-459f-863c-ab45a2cffce5", + "start": { + "$date": "2020-12-17T01:14:36.000Z" + }, + "end": { + "$date": "2020-12-17T02:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "74363566-3b12-4028-b4d4-f77bcda7d2bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-17T01:26:03.000Z" + }, + "end": { + "$date": "2020-12-17T01:54:09.000Z" + }, + "events": [ + { + "uuid": "e1459c73-61b4-463a-9c08-5fc83f2b696c", + "start": { + "$date": "2020-12-17T01:26:03.000Z" + }, + "end": { + "$date": "2020-12-17T01:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "faccb7f1-b861-4de8-ad8d-caee5d5f113b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-17T01:55:21.000Z" + }, + "end": { + "$date": "2020-12-17T09:22:56.000Z" + }, + "events": [ + { + "uuid": "3b0d94b8-b37a-4277-9a54-22e64ef6a7ff", + "start": { + "$date": "2020-12-17T01:55:21.000Z" + }, + "end": { + "$date": "2020-12-17T09:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "3ece2dec-9fd5-4c7e-91c7-d831c0aab371", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T02:22:02.000Z" + }, + "end": { + "$date": "2020-12-17T04:09:12.000Z" + }, + "events": [ + { + "uuid": "c5e1f9c3-4581-428c-ab46-c963c615b7a0", + "start": { + "$date": "2020-12-17T02:22:02.000Z" + }, + "end": { + "$date": "2020-12-17T04:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d96d6e20-a374-450e-b698-869f6cdc77f6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-17T03:25:14.000Z" + }, + "end": { + "$date": "2020-12-17T06:15:18.000Z" + }, + "events": [ + { + "uuid": "269aac27-18bc-4b95-ae02-2d972448a667", + "start": { + "$date": "2020-12-17T03:25:14.000Z" + }, + "end": { + "$date": "2020-12-17T06:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "626af2a6-b1f3-4a35-b071-708808b534a4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-17T03:41:37.000Z" + }, + "end": { + "$date": "2020-12-17T04:08:13.000Z" + }, + "events": [ + { + "uuid": "77a36853-be7a-4ae0-8c52-40325165d97f", + "start": { + "$date": "2020-12-17T03:41:37.000Z" + }, + "end": { + "$date": "2020-12-17T04:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "04a3ac22-c936-4c28-a9a4-3f39dc7607dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-17T03:49:46.000Z" + }, + "end": { + "$date": "2020-12-17T04:35:03.000Z" + }, + "events": [ + { + "uuid": "b332ee3e-c1a2-4aec-89f8-b1c9f97f8ccd", + "start": { + "$date": "2020-12-17T03:49:46.000Z" + }, + "end": { + "$date": "2020-12-17T04:35:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "635c0862-feee-4c7e-bb7a-0f7db8fd7ff6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-17T03:53:13.000Z" + }, + "end": { + "$date": "2020-12-17T05:23:09.000Z" + }, + "events": [ + { + "uuid": "bbfcbe95-78fe-4468-84c4-af54d7c0b228", + "start": { + "$date": "2020-12-17T03:53:13.000Z" + }, + "end": { + "$date": "2020-12-17T05:23:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2e46a6b6-ef0b-4e26-bb7c-ace772acb982", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-17T03:59:50.000Z" + }, + "end": { + "$date": "2020-12-17T06:21:53.000Z" + }, + "events": [ + { + "uuid": "bd17ef0c-e84f-4b4a-84f4-875af566e47b", + "start": { + "$date": "2020-12-17T03:59:50.000Z" + }, + "end": { + "$date": "2020-12-17T06:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "56ac75c4-7331-49ac-9147-e8ec458fba76", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-17T05:38:16.000Z" + }, + "end": { + "$date": "2020-12-17T05:39:41.000Z" + }, + "events": [ + { + "uuid": "fbd26b70-5336-4ea1-b49b-6963d68be6cc", + "start": { + "$date": "2020-12-17T05:38:16.000Z" + }, + "end": { + "$date": "2020-12-17T05:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5cc1964f-7a93-468a-be17-786a6b90e0a7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-17T05:39:56.000Z" + }, + "end": { + "$date": "2020-12-17T06:15:14.000Z" + }, + "events": [ + { + "uuid": "53be0089-05bb-4ff0-8b5f-fc62a0029087", + "start": { + "$date": "2020-12-17T05:39:56.000Z" + }, + "end": { + "$date": "2020-12-17T06:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "839a3c93-9d1a-4c4b-988c-96c8cdb2da5d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T06:11:48.000Z" + }, + "end": { + "$date": "2020-12-17T08:58:00.000Z" + }, + "events": [ + { + "uuid": "54cf096e-b7c8-44ec-98cb-a833c7a094c5", + "start": { + "$date": "2020-12-17T06:11:48.000Z" + }, + "end": { + "$date": "2020-12-17T07:43:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9e4f6b1d-85c5-4b27-9840-85a95fe30070", + "start": { + "$date": "2020-12-17T07:43:48.000Z" + }, + "end": { + "$date": "2020-12-17T07:56:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0fd550dc-72dd-46ed-a31c-ad19cf6beb3f", + "start": { + "$date": "2020-12-17T07:56:48.000Z" + }, + "end": { + "$date": "2020-12-17T08:58:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "a4b3d477-5fe7-4874-a523-ca6992c0894a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-17T06:27:28.000Z" + }, + "end": { + "$date": "2020-12-17T08:15:54.000Z" + }, + "events": [ + { + "uuid": "be2972fe-5f95-44db-a183-3b1b13d8cc96", + "start": { + "$date": "2020-12-17T06:27:28.000Z" + }, + "end": { + "$date": "2020-12-17T08:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c5fe3317-1cc3-414a-a26e-3fabcddb9fbd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-17T18:06:57.000Z" + }, + "end": { + "$date": "2020-12-17T18:26:33.000Z" + }, + "events": [ + { + "uuid": "bc929288-b352-4bfa-aaa6-20d0ebe0ea63", + "start": { + "$date": "2020-12-17T18:06:57.000Z" + }, + "end": { + "$date": "2020-12-17T18:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "ff831170-ddea-4736-b2cc-cfe3c7001b1a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-17T19:55:37.000Z" + }, + "end": { + "$date": "2020-12-17T22:21:57.000Z" + }, + "events": [ + { + "uuid": "dbd98dc5-1d2c-41ae-8133-0fc40ab6ecd8", + "start": { + "$date": "2020-12-17T19:55:37.000Z" + }, + "end": { + "$date": "2020-12-17T21:39:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6c7270a-6c30-4f60-87a3-243e17c1b9f6", + "start": { + "$date": "2020-12-17T21:39:37.000Z" + }, + "end": { + "$date": "2020-12-17T21:42:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6df01f8b-4db3-4f0d-ae17-654e9c1b5bc6", + "start": { + "$date": "2020-12-17T21:42:37.000Z" + }, + "end": { + "$date": "2020-12-17T22:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "2e3f2956-0486-4f47-84db-3e28918a6424", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T20:27:36.000Z" + }, + "end": { + "$date": "2020-12-17T21:50:07.000Z" + }, + "events": [ + { + "uuid": "1e65e0f0-888d-4020-9ece-8d9f4951c8ff", + "start": { + "$date": "2020-12-17T20:27:36.000Z" + }, + "end": { + "$date": "2020-12-17T21:50:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "1f62b627-fe20-4b3f-851b-b27cf4bfcb0b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-17T21:25:36.000Z" + }, + "end": { + "$date": "2020-12-17T22:09:43.000Z" + }, + "events": [ + { + "uuid": "427a5a7a-a3cc-4209-ba8a-fc7372526c1f", + "start": { + "$date": "2020-12-17T21:25:36.000Z" + }, + "end": { + "$date": "2020-12-17T22:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7720dee6-b25c-4f31-a045-ee4dbc87bcc2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T21:53:14.000Z" + }, + "end": { + "$date": "2020-12-17T22:50:14.000Z" + }, + "events": [ + { + "uuid": "144cb406-3a6d-4239-82c2-c6e8e1fb5014", + "start": { + "$date": "2020-12-17T21:53:14.000Z" + }, + "end": { + "$date": "2020-12-17T22:22:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc3a1993-cb93-4f3d-83b1-89fdb4697f02", + "start": { + "$date": "2020-12-17T22:22:14.000Z" + }, + "end": { + "$date": "2020-12-17T22:27:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5230cf44-84d5-4ff8-aac1-e72335be1c11", + "start": { + "$date": "2020-12-17T22:27:14.000Z" + }, + "end": { + "$date": "2020-12-17T22:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "650eeaec-631f-4d74-8c71-74f9d638f0a5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-17T22:12:22.000Z" + }, + "end": { + "$date": "2020-12-17T22:35:03.000Z" + }, + "events": [ + { + "uuid": "70111eb7-1a1b-49d8-8c87-b063088588b0", + "start": { + "$date": "2020-12-17T22:12:22.000Z" + }, + "end": { + "$date": "2020-12-17T22:35:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6d1681c7-d0b8-48f2-9985-9e8f03d19288", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-17T23:01:35.000Z" + }, + "end": { + "$date": "2020-12-17T23:12:06.000Z" + }, + "events": [ + { + "uuid": "7a00a3bb-1889-4108-9612-450a62095005", + "start": { + "$date": "2020-12-17T23:01:35.000Z" + }, + "end": { + "$date": "2020-12-17T23:12:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "b9de07e2-1ec3-4bc0-932d-5c5c407cb4ff", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-17T23:03:52.000Z" + }, + "end": { + "$date": "2020-12-18T01:00:19.000Z" + }, + "events": [ + { + "uuid": "32ba4093-6e71-487e-a069-7ba5e8df6c8f", + "start": { + "$date": "2020-12-17T23:03:52.000Z" + }, + "end": { + "$date": "2020-12-18T01:00:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "27a18e45-5f10-417e-afc7-cf603f16dea2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-17T23:12:45.000Z" + }, + "end": { + "$date": "2020-12-17T23:14:21.000Z" + }, + "events": [ + { + "uuid": "6e8ca006-c44f-49c5-92f5-4b7dda88754b", + "start": { + "$date": "2020-12-17T23:12:45.000Z" + }, + "end": { + "$date": "2020-12-17T23:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49233d7a-f843-49be-addf-20695f26b866", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-17T23:19:02.000Z" + }, + "end": { + "$date": "2020-12-17T23:38:47.000Z" + }, + "events": [ + { + "uuid": "bd50648b-2bfa-4863-bf1e-b2aa073f90d0", + "start": { + "$date": "2020-12-17T23:19:02.000Z" + }, + "end": { + "$date": "2020-12-17T23:38:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "62f42163-e769-4685-b052-d69234995ce9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-17T23:16:46.000Z" + }, + "end": { + "$date": "2020-12-18T00:37:56.000Z" + }, + "events": [ + { + "uuid": "b322b0f0-51ad-4a70-b992-acc445bbc228", + "start": { + "$date": "2020-12-17T23:16:46.000Z" + }, + "end": { + "$date": "2020-12-18T00:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd513281-30a6-4faf-b60c-86b24eda238c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-17T23:46:03.000Z" + }, + "end": { + "$date": "2020-12-18T00:06:34.000Z" + }, + "events": [ + { + "uuid": "37e7a060-6465-4b18-a1da-4b8d0ce50307", + "start": { + "$date": "2020-12-17T23:46:03.000Z" + }, + "end": { + "$date": "2020-12-18T00:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "022f0500-cac3-4288-a409-58ffc8299f15", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-18T00:03:27.000Z" + }, + "end": { + "$date": "2020-12-18T00:13:53.000Z" + }, + "events": [ + { + "uuid": "369840db-81bb-4488-89e6-3482b0d96893", + "start": { + "$date": "2020-12-18T00:03:27.000Z" + }, + "end": { + "$date": "2020-12-18T00:13:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "df29b43a-8d39-4086-b791-7cfa3c25426d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-18T00:32:06.000Z" + }, + "end": { + "$date": "2020-12-18T01:03:36.000Z" + }, + "events": [ + { + "uuid": "b24c697d-e1cd-4171-8f89-4d2b9c11dfd8", + "start": { + "$date": "2020-12-18T00:32:06.000Z" + }, + "end": { + "$date": "2020-12-18T01:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "b0ffee60-5d70-47f4-9d4e-78c70e2354bf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-18T00:40:36.000Z" + }, + "end": { + "$date": "2020-12-18T02:04:25.000Z" + }, + "events": [ + { + "uuid": "a76c295e-7992-443e-8c76-09027af78f23", + "start": { + "$date": "2020-12-18T00:40:36.000Z" + }, + "end": { + "$date": "2020-12-18T02:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "dd528204-e276-44fb-9e09-9b32f6e63a45", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-18T00:41:48.000Z" + }, + "end": { + "$date": "2020-12-18T02:16:33.000Z" + }, + "events": [ + { + "uuid": "754b6704-8599-4068-944e-f1e0cd414aa3", + "start": { + "$date": "2020-12-18T00:41:48.000Z" + }, + "end": { + "$date": "2020-12-18T02:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "03a752e0-2419-441d-8d40-1acb7c18c5c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T00:45:54.000Z" + }, + "end": { + "$date": "2020-12-18T02:40:24.000Z" + }, + "events": [ + { + "uuid": "4ff8e063-9509-4937-bfc7-5e168af5f20e", + "start": { + "$date": "2020-12-18T00:45:54.000Z" + }, + "end": { + "$date": "2020-12-18T02:40:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8f98e43e-d689-4144-9a69-e42aa9a447aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-18T02:10:37.000Z" + }, + "end": { + "$date": "2020-12-18T02:20:09.000Z" + }, + "events": [ + { + "uuid": "0f857320-f747-499a-b9eb-22d5b97d9c51", + "start": { + "$date": "2020-12-18T02:10:37.000Z" + }, + "end": { + "$date": "2020-12-18T02:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "7196083d-eeaf-41c5-a764-25506cce626f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-18T02:34:38.000Z" + }, + "end": { + "$date": "2020-12-18T03:00:10.000Z" + }, + "events": [ + { + "uuid": "1d24b5ae-cd54-49a3-baa4-668e001a24b9", + "start": { + "$date": "2020-12-18T02:34:38.000Z" + }, + "end": { + "$date": "2020-12-18T03:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", + "uuid": "e7d24f53-6a29-44fc-9048-dbe1337151e4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-18T03:37:12.000Z" + }, + "end": { + "$date": "2020-12-18T04:12:25.000Z" + }, + "events": [ + { + "uuid": "b01ec0bd-3260-4918-89fe-ba0e2260ff46", + "start": { + "$date": "2020-12-18T03:37:12.000Z" + }, + "end": { + "$date": "2020-12-18T04:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dd6e48ac-4b12-4498-835e-999adbae7b11", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-18T03:42:58.000Z" + }, + "end": { + "$date": "2020-12-18T04:18:20.000Z" + }, + "events": [ + { + "uuid": "b1fbf70c-2a63-4304-acd1-a5bf1139909d", + "start": { + "$date": "2020-12-18T03:42:58.000Z" + }, + "end": { + "$date": "2020-12-18T04:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d2f97b1-1c95-484e-90b4-837e3b3f8460", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T04:06:07.000Z" + }, + "end": { + "$date": "2020-12-18T04:25:57.000Z" + }, + "events": [ + { + "uuid": "60a4872a-7d80-4a2f-8422-7ae13c5f1d51", + "start": { + "$date": "2020-12-18T04:06:07.000Z" + }, + "end": { + "$date": "2020-12-18T04:25:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c895950e-7c7b-466d-b126-8d611a2998a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-18T04:05:36.000Z" + }, + "end": { + "$date": "2020-12-18T04:07:49.000Z" + }, + "events": [ + { + "uuid": "45a8e265-487b-4d8a-85bd-3a79284a1d8c", + "start": { + "$date": "2020-12-18T04:05:36.000Z" + }, + "end": { + "$date": "2020-12-18T04:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6d467c96-82d5-49a3-ba0c-26ae6a5c0c6a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-18T04:07:53.000Z" + }, + "end": { + "$date": "2020-12-18T07:09:25.000Z" + }, + "events": [ + { + "uuid": "5bd7060c-30d0-43e4-9b14-b81ab4168c19", + "start": { + "$date": "2020-12-18T04:07:53.000Z" + }, + "end": { + "$date": "2020-12-18T07:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19df1236-9171-427c-a355-1d7ed17ee4d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T04:26:21.000Z" + }, + "end": { + "$date": "2020-12-18T04:41:53.000Z" + }, + "events": [ + { + "uuid": "079f9e39-ae2c-4b1f-99e7-28a55b22ef16", + "start": { + "$date": "2020-12-18T04:26:21.000Z" + }, + "end": { + "$date": "2020-12-18T04:41:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "55cea209-ccf1-427e-9503-d7ce764cffc1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T04:42:01.000Z" + }, + "end": { + "$date": "2020-12-18T07:36:24.000Z" + }, + "events": [ + { + "uuid": "f7a03916-3cd8-42c0-baa5-f72b6ae56394", + "start": { + "$date": "2020-12-18T04:42:01.000Z" + }, + "end": { + "$date": "2020-12-18T07:36:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2cff493b-af8b-4bf6-ac14-5eb4a3b71a7c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T04:45:22.000Z" + }, + "end": { + "$date": "2020-12-18T06:09:37.000Z" + }, + "events": [ + { + "uuid": "abbf8324-8de0-4728-b7d2-0a8a2c93b4a5", + "start": { + "$date": "2020-12-18T04:45:22.000Z" + }, + "end": { + "$date": "2020-12-18T06:09:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "977f6948-9c08-4b0b-820e-3f7d5c547911", + "uuid": "04b987f7-2345-46b4-a046-8f5f5c6e122f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-18T04:51:43.000Z" + }, + "end": { + "$date": "2020-12-18T05:15:22.000Z" + }, + "events": [ + { + "uuid": "12362384-1a1d-410f-b794-3ea09b70c5f4", + "start": { + "$date": "2020-12-18T04:51:43.000Z" + }, + "end": { + "$date": "2020-12-18T05:15:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "afba9eab-cd58-4f8e-a9e2-b940c494740f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-18T05:33:31.000Z" + }, + "end": { + "$date": "2020-12-18T10:31:47.000Z" + }, + "events": [ + { + "uuid": "ae02c81f-28fd-4d4a-b324-6aeb7a40950d", + "start": { + "$date": "2020-12-18T05:33:31.000Z" + }, + "end": { + "$date": "2020-12-18T08:43:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa758c03-9ba6-4735-963f-1854b9613fb3", + "start": { + "$date": "2020-12-18T08:43:31.000Z" + }, + "end": { + "$date": "2020-12-18T08:48:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f00d96d5-5727-42d7-bff2-d950d3193d0f", + "start": { + "$date": "2020-12-18T08:48:31.000Z" + }, + "end": { + "$date": "2020-12-18T08:58:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad617a84-db6c-4b37-803b-cee70c14c2eb", + "start": { + "$date": "2020-12-18T08:58:31.000Z" + }, + "end": { + "$date": "2020-12-18T09:01:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d3b5424b-b5e7-40cc-9c33-df24dd229655", + "start": { + "$date": "2020-12-18T09:01:31.000Z" + }, + "end": { + "$date": "2020-12-18T10:31:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "99fbcddd-71ad-41e7-b756-ed8526445fa3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-18T05:40:09.000Z" + }, + "end": { + "$date": "2020-12-18T06:39:15.000Z" + }, + "events": [ + { + "uuid": "20e60362-15ba-4a35-a31f-b10ea346146c", + "start": { + "$date": "2020-12-18T05:40:09.000Z" + }, + "end": { + "$date": "2020-12-18T06:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b7360562-3220-4c93-bf82-b166f2b9b759", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T06:55:13.000Z" + }, + "end": { + "$date": "2020-12-18T07:00:24.000Z" + }, + "events": [ + { + "uuid": "9c2368fc-1ac9-4949-a58e-557c24585459", + "start": { + "$date": "2020-12-18T06:55:13.000Z" + }, + "end": { + "$date": "2020-12-18T07:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "005a9378-3beb-4660-81a5-681f3b013527", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-18T16:09:29.000Z" + }, + "end": { + "$date": "2020-12-18T17:47:38.000Z" + }, + "events": [ + { + "uuid": "fe1b9a92-cd93-4df2-9465-e9bd38b2c9f5", + "start": { + "$date": "2020-12-18T16:09:29.000Z" + }, + "end": { + "$date": "2020-12-18T17:47:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "da6bfc59-9c56-46af-8a7a-0eadfeab71ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-18T17:34:21.000Z" + }, + "end": { + "$date": "2020-12-18T19:22:56.000Z" + }, + "events": [ + { + "uuid": "a46734b0-13e8-41fd-825c-2bf5eb43a78c", + "start": { + "$date": "2020-12-18T17:34:21.000Z" + }, + "end": { + "$date": "2020-12-18T19:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9517e1b-e7b2-4004-87eb-64453b077a40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T18:56:07.000Z" + }, + "end": { + "$date": "2020-12-18T19:20:13.000Z" + }, + "events": [ + { + "uuid": "44385ad1-a242-43d4-b6e4-aa15a9769d35", + "start": { + "$date": "2020-12-18T18:56:07.000Z" + }, + "end": { + "$date": "2020-12-18T19:20:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "829a8396-a632-49e3-8195-0abe92db8ff5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T19:42:18.000Z" + }, + "end": { + "$date": "2020-12-18T20:53:03.000Z" + }, + "events": [ + { + "uuid": "33ff7127-2ce6-418f-9745-9896732e0031", + "start": { + "$date": "2020-12-18T19:42:18.000Z" + }, + "end": { + "$date": "2020-12-18T20:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e204b0fc-df07-4e56-811d-1dc326046e89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-18T20:07:32.000Z" + }, + "end": { + "$date": "2020-12-19T00:21:24.000Z" + }, + "events": [ + { + "uuid": "be368e66-f7ea-4c60-a59a-04d4e3b99341", + "start": { + "$date": "2020-12-18T20:07:32.000Z" + }, + "end": { + "$date": "2020-12-19T00:21:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "dacab880-5fcb-4815-be8b-9f9d3894a46d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-18T20:46:20.000Z" + }, + "end": { + "$date": "2020-12-18T22:36:07.000Z" + }, + "events": [ + { + "uuid": "b133856d-5e33-42c9-8304-1c91866ba49d", + "start": { + "$date": "2020-12-18T20:46:20.000Z" + }, + "end": { + "$date": "2020-12-18T22:36:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "aa83cb0c-4d20-4784-aa29-11d138ee5d2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T22:28:58.000Z" + }, + "end": { + "$date": "2020-12-18T22:30:27.000Z" + }, + "events": [ + { + "uuid": "dd285fc5-92fa-4d81-b1c7-6eeabd6607c5", + "start": { + "$date": "2020-12-18T22:28:58.000Z" + }, + "end": { + "$date": "2020-12-18T22:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "fd8c5a75-6e5d-451b-8fd2-a5d30f04f8ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T22:31:08.000Z" + }, + "end": { + "$date": "2020-12-18T22:34:42.000Z" + }, + "events": [ + { + "uuid": "0c0e21a1-8a59-480d-a691-520d5eb9b9a2", + "start": { + "$date": "2020-12-18T22:31:08.000Z" + }, + "end": { + "$date": "2020-12-18T22:34:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcf8110a-9442-4044-b577-33d7115072cb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-18T22:34:20.000Z" + }, + "end": { + "$date": "2020-12-18T22:52:07.000Z" + }, + "events": [ + { + "uuid": "ea7fd8a9-c047-49db-ac81-1a2de610d917", + "start": { + "$date": "2020-12-18T22:34:20.000Z" + }, + "end": { + "$date": "2020-12-18T22:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "05e850ee-5140-4769-9a6c-3e62bfb9fbdd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T22:42:19.000Z" + }, + "end": { + "$date": "2020-12-18T22:47:38.000Z" + }, + "events": [ + { + "uuid": "ec70c303-f126-4d6c-9774-6a3a4259426d", + "start": { + "$date": "2020-12-18T22:42:19.000Z" + }, + "end": { + "$date": "2020-12-18T22:47:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "fc484287-9653-44a9-ac03-1d522ddacae1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T22:48:09.000Z" + }, + "end": { + "$date": "2020-12-18T22:59:49.000Z" + }, + "events": [ + { + "uuid": "f90afd18-dfc3-4e29-8b8b-367cd32b0ca2", + "start": { + "$date": "2020-12-18T22:48:09.000Z" + }, + "end": { + "$date": "2020-12-18T22:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "188b904a-b2cf-480e-9a42-348560a8ba1e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-18T23:02:20.000Z" + }, + "end": { + "$date": "2020-12-18T23:20:22.000Z" + }, + "events": [ + { + "uuid": "5ad4746a-a225-4ab3-9be7-c405174acee1", + "start": { + "$date": "2020-12-18T23:02:20.000Z" + }, + "end": { + "$date": "2020-12-18T23:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "0df34df0-c63e-464e-aca7-adbd783d0879", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T23:10:56.000Z" + }, + "end": { + "$date": "2020-12-18T23:26:25.000Z" + }, + "events": [ + { + "uuid": "7b43c3c6-ef4e-4168-857d-b4fd6ed3dd40", + "start": { + "$date": "2020-12-18T23:10:56.000Z" + }, + "end": { + "$date": "2020-12-18T23:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b61331f7-4375-4e22-9d81-b550a6629115", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-18T23:42:58.000Z" + }, + "end": { + "$date": "2020-12-19T00:46:39.000Z" + }, + "events": [ + { + "uuid": "e508262f-c581-4e6a-9eff-0cc81dc609fa", + "start": { + "$date": "2020-12-18T23:42:58.000Z" + }, + "end": { + "$date": "2020-12-19T00:46:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "3c4a11ae-fd9d-48ea-86e8-37b4eb59289e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-19T00:44:05.000Z" + }, + "end": { + "$date": "2020-12-19T01:08:32.000Z" + }, + "events": [ + { + "uuid": "00e45163-9312-445e-9d76-edfbf174927b", + "start": { + "$date": "2020-12-19T00:44:05.000Z" + }, + "end": { + "$date": "2020-12-19T01:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "40b4c21f-224e-4cd5-9fe4-8ac4ab752c87", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T01:37:50.000Z" + }, + "end": { + "$date": "2020-12-19T02:10:47.000Z" + }, + "events": [ + { + "uuid": "f3bdcc4f-fad3-4f9c-bf6a-5fc40eacb6d1", + "start": { + "$date": "2020-12-19T01:37:50.000Z" + }, + "end": { + "$date": "2020-12-19T02:10:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "98faf33f-369c-4922-8dd9-a249e3bc781f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T02:16:07.000Z" + }, + "end": { + "$date": "2020-12-19T03:43:44.000Z" + }, + "events": [ + { + "uuid": "119fd8d8-a1e9-44bb-9e62-1ad3f285b844", + "start": { + "$date": "2020-12-19T02:16:07.000Z" + }, + "end": { + "$date": "2020-12-19T03:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "71a58247-f384-43ec-886a-a44c475ba44d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-19T02:21:00.000Z" + }, + "end": { + "$date": "2020-12-19T03:49:16.000Z" + }, + "events": [ + { + "uuid": "d93f4252-1bbe-4ee2-9e09-9ca566b23e4f", + "start": { + "$date": "2020-12-19T02:21:00.000Z" + }, + "end": { + "$date": "2020-12-19T03:28:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2980a623-ba79-401a-9b1c-ea3571591c3c", + "start": { + "$date": "2020-12-19T03:28:00.000Z" + }, + "end": { + "$date": "2020-12-19T03:41:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f966963b-50ff-4638-84d2-b6808610ceca", + "start": { + "$date": "2020-12-19T03:41:00.000Z" + }, + "end": { + "$date": "2020-12-19T03:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e8636bfc-efa3-4440-84b4-15ed7ebcdd2b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T04:10:29.000Z" + }, + "end": { + "$date": "2020-12-19T04:30:40.000Z" + }, + "events": [ + { + "uuid": "f9939717-3281-43c6-8132-0151efb401d9", + "start": { + "$date": "2020-12-19T04:10:29.000Z" + }, + "end": { + "$date": "2020-12-19T04:30:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ae9d6231-55a7-4e29-a254-c203c0e8ae53", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-19T04:12:52.000Z" + }, + "end": { + "$date": "2020-12-19T05:44:49.000Z" + }, + "events": [ + { + "uuid": "5c9b0d21-e3d8-4191-8e02-493ddc99a8d3", + "start": { + "$date": "2020-12-19T04:12:52.000Z" + }, + "end": { + "$date": "2020-12-19T05:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6ad5fb84-dc58-4d50-9050-76f0f388b435", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T04:32:31.000Z" + }, + "end": { + "$date": "2020-12-19T04:45:56.000Z" + }, + "events": [ + { + "uuid": "3228ef81-7025-4dd2-bcd0-a1402d3b70da", + "start": { + "$date": "2020-12-19T04:32:31.000Z" + }, + "end": { + "$date": "2020-12-19T04:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e164bae6-1fb1-4c74-b3b1-ce890aa1384b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T04:47:12.000Z" + }, + "end": { + "$date": "2020-12-19T05:19:14.000Z" + }, + "events": [ + { + "uuid": "84315818-ea11-459e-9826-29bf1b6d4a6b", + "start": { + "$date": "2020-12-19T04:47:12.000Z" + }, + "end": { + "$date": "2020-12-19T05:19:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c7c4fae8-2a39-40e7-817a-b0eae535948e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-19T05:11:32.000Z" + }, + "end": { + "$date": "2020-12-19T07:46:01.000Z" + }, + "events": [ + { + "uuid": "40bf714a-0169-4cf3-b706-d214dc8933e2", + "start": { + "$date": "2020-12-19T05:11:32.000Z" + }, + "end": { + "$date": "2020-12-19T07:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "524d199a-0ab3-47ec-9181-084dafed8483", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T05:17:48.000Z" + }, + "end": { + "$date": "2020-12-19T05:18:53.000Z" + }, + "events": [ + { + "uuid": "19691f2b-10c5-4a39-902b-3336d6569359", + "start": { + "$date": "2020-12-19T05:17:48.000Z" + }, + "end": { + "$date": "2020-12-19T05:18:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a657ba26-4eaa-4570-a76d-fd6c0ddd85ff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T05:19:40.000Z" + }, + "end": { + "$date": "2020-12-19T05:42:40.000Z" + }, + "events": [ + { + "uuid": "b4429bdd-d495-42f0-9699-71f5e3031e5a", + "start": { + "$date": "2020-12-19T05:19:40.000Z" + }, + "end": { + "$date": "2020-12-19T05:42:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "983200d5-7416-4850-95de-7de2cf1e7da1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T05:20:35.000Z" + }, + "end": { + "$date": "2020-12-19T05:53:41.000Z" + }, + "events": [ + { + "uuid": "0cc0fba1-5283-4aa2-bb90-f2911073a306", + "start": { + "$date": "2020-12-19T05:20:35.000Z" + }, + "end": { + "$date": "2020-12-19T05:53:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ccc4133e-6d62-4f35-8399-024c51ae1865", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-19T05:49:23.000Z" + }, + "end": { + "$date": "2020-12-19T07:24:11.000Z" + }, + "events": [ + { + "uuid": "bddd2175-8c27-4b65-9435-a2c1082af433", + "start": { + "$date": "2020-12-19T05:49:23.000Z" + }, + "end": { + "$date": "2020-12-19T07:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f96ce0b1-8acc-4f55-a611-4f3ce463bce7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T05:56:45.000Z" + }, + "end": { + "$date": "2020-12-19T06:15:09.000Z" + }, + "events": [ + { + "uuid": "9f77c9c2-5664-48bc-a4f7-eb6276478319", + "start": { + "$date": "2020-12-19T05:56:45.000Z" + }, + "end": { + "$date": "2020-12-19T06:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "b5c63c2d-b5d9-404f-a319-67bf10258486", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T05:59:37.000Z" + }, + "end": { + "$date": "2020-12-19T06:04:21.000Z" + }, + "events": [ + { + "uuid": "e4aeaeeb-03b5-40c3-9295-9aa674b81928", + "start": { + "$date": "2020-12-19T05:59:37.000Z" + }, + "end": { + "$date": "2020-12-19T06:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "a919bcf2-e9dc-4058-ae67-976f397ca8fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T06:05:48.000Z" + }, + "end": { + "$date": "2020-12-19T06:10:32.000Z" + }, + "events": [ + { + "uuid": "bbb312a5-b40e-46d2-925f-675a8b2fcce8", + "start": { + "$date": "2020-12-19T06:05:48.000Z" + }, + "end": { + "$date": "2020-12-19T06:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7b68e23-5869-45ff-81f6-98f293d0b2bd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-19T06:06:29.000Z" + }, + "end": { + "$date": "2020-12-19T06:11:45.000Z" + }, + "events": [ + { + "uuid": "827ab9df-5c19-4386-a497-ada309897aff", + "start": { + "$date": "2020-12-19T06:06:29.000Z" + }, + "end": { + "$date": "2020-12-19T06:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "b7e83955-1f26-4013-8bac-f7aea4eb52c9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T06:11:03.000Z" + }, + "end": { + "$date": "2020-12-19T06:12:07.000Z" + }, + "events": [ + { + "uuid": "3336ea68-a61f-4d2c-b3b7-2d2897322c14", + "start": { + "$date": "2020-12-19T06:11:03.000Z" + }, + "end": { + "$date": "2020-12-19T06:12:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "fd5ce03a-14fb-44c5-8205-a5511385a609", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T06:13:13.000Z" + }, + "end": { + "$date": "2020-12-19T07:45:16.000Z" + }, + "events": [ + { + "uuid": "f67c33fd-a1e4-4361-9312-1cf5d199bb22", + "start": { + "$date": "2020-12-19T06:13:13.000Z" + }, + "end": { + "$date": "2020-12-19T07:19:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "48b25c3a-2229-4d1c-93da-58fe5db307d4", + "start": { + "$date": "2020-12-19T07:19:13.000Z" + }, + "end": { + "$date": "2020-12-19T07:35:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc52ac95-8e5b-489d-9be4-372318bc76a7", + "start": { + "$date": "2020-12-19T07:35:13.000Z" + }, + "end": { + "$date": "2020-12-19T07:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a94cbce-9555-454c-b0e7-d5c25df8cf13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T06:33:24.000Z" + }, + "end": { + "$date": "2020-12-19T06:33:23.000Z" + }, + "events": [ + { + "uuid": "2b80a3b0-2e30-46d3-ba26-af80e17fa319", + "start": { + "$date": "2020-12-19T06:33:24.000Z" + }, + "end": { + "$date": "2020-12-19T06:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9772620-6482-4f4e-9282-ec8f4407ae5b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-19T06:38:17.000Z" + }, + "end": { + "$date": "2020-12-19T06:58:57.000Z" + }, + "events": [ + { + "uuid": "41737bef-a071-4b98-b177-6169af5a0c76", + "start": { + "$date": "2020-12-19T06:38:17.000Z" + }, + "end": { + "$date": "2020-12-19T06:58:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f735818c-33ac-4eea-99c4-94657342b363", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T06:38:16.000Z" + }, + "end": { + "$date": "2020-12-19T06:59:03.000Z" + }, + "events": [ + { + "uuid": "b74bf0dd-84a6-4410-9b74-95ca9ec16c6d", + "start": { + "$date": "2020-12-19T06:38:16.000Z" + }, + "end": { + "$date": "2020-12-19T06:59:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edb4dad5-5fdd-41d4-8269-bd80e7c2a90a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-19T07:02:02.000Z" + }, + "end": { + "$date": "2020-12-19T07:18:48.000Z" + }, + "events": [ + { + "uuid": "794a7dfb-c0c2-4ee0-aa51-353d2111d4b9", + "start": { + "$date": "2020-12-19T07:02:02.000Z" + }, + "end": { + "$date": "2020-12-19T07:18:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f45ff81e-9428-4ca3-9daf-47e45e017fc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T07:02:07.000Z" + }, + "end": { + "$date": "2020-12-19T07:18:55.000Z" + }, + "events": [ + { + "uuid": "9f2b6935-f99e-430e-8668-7ceeb97abc5d", + "start": { + "$date": "2020-12-19T07:02:07.000Z" + }, + "end": { + "$date": "2020-12-19T07:18:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "6a327cf3-8421-4452-9018-4b4ce099f964", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T07:25:54.000Z" + }, + "end": { + "$date": "2020-12-19T07:56:34.000Z" + }, + "events": [ + { + "uuid": "624df5a4-a637-4ec8-b5b0-383f514d92d1", + "start": { + "$date": "2020-12-19T07:25:54.000Z" + }, + "end": { + "$date": "2020-12-19T07:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6d1b74c7-3f4b-41cc-a212-00caa3823af8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-19T07:47:14.000Z" + }, + "end": { + "$date": "2020-12-19T09:21:54.000Z" + }, + "events": [ + { + "uuid": "ee773e20-8b8b-4902-b3de-5b158ca0eecb", + "start": { + "$date": "2020-12-19T07:47:14.000Z" + }, + "end": { + "$date": "2020-12-19T08:09:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c69cb1ac-3c99-4720-9824-b65ef29bffd5", + "start": { + "$date": "2020-12-19T08:09:14.000Z" + }, + "end": { + "$date": "2020-12-19T08:12:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f2465171-f1c1-47a8-9cbc-acf37d9de4d1", + "start": { + "$date": "2020-12-19T08:12:14.000Z" + }, + "end": { + "$date": "2020-12-19T09:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6c39598-8d34-4fdf-a8d3-127f9826436b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-19T07:59:47.000Z" + }, + "end": { + "$date": "2020-12-19T08:23:58.000Z" + }, + "events": [ + { + "uuid": "0f37bb18-e6a8-45c3-ae78-6b3919efad55", + "start": { + "$date": "2020-12-19T07:59:47.000Z" + }, + "end": { + "$date": "2020-12-19T08:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e9785ca1-6523-4758-8243-fb94da950bba", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T08:15:26.000Z" + }, + "end": { + "$date": "2020-12-19T11:17:02.000Z" + }, + "events": [ + { + "uuid": "05f8af0f-9949-47ff-8ca8-aecb793007ae", + "start": { + "$date": "2020-12-19T08:15:26.000Z" + }, + "end": { + "$date": "2020-12-19T11:17:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eb6c8c7f-06d5-4bb2-ba15-1a25439d3ee8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-19T16:50:44.000Z" + }, + "end": { + "$date": "2020-12-19T18:04:54.000Z" + }, + "events": [ + { + "uuid": "9911c4a6-882c-4edf-a1f2-d6421f8f440d", + "start": { + "$date": "2020-12-19T16:50:44.000Z" + }, + "end": { + "$date": "2020-12-19T17:46:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc2348ab-d99f-4916-9f3a-7978f5d9d541", + "start": { + "$date": "2020-12-19T17:46:44.000Z" + }, + "end": { + "$date": "2020-12-19T18:00:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "650ac2a0-1a36-45ae-87b1-45b45bea4d8e", + "start": { + "$date": "2020-12-19T18:00:44.000Z" + }, + "end": { + "$date": "2020-12-19T18:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "19448e2f-7f86-43e3-801d-aaea391b438c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-19T17:19:15.000Z" + }, + "end": { + "$date": "2020-12-19T18:02:12.000Z" + }, + "events": [ + { + "uuid": "69ba3527-46cb-43cb-94cc-342336276211", + "start": { + "$date": "2020-12-19T17:19:15.000Z" + }, + "end": { + "$date": "2020-12-19T18:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "78c57541-143c-4fe8-bdb6-ee6ab5c618e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-19T18:35:57.000Z" + }, + "end": { + "$date": "2020-12-19T18:37:57.000Z" + }, + "events": [ + { + "uuid": "4eccd5a9-8b3b-4b16-a87f-b6b8f19f517a", + "start": { + "$date": "2020-12-19T18:35:57.000Z" + }, + "end": { + "$date": "2020-12-19T18:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "4df31f4d-397d-4d47-82c2-3dbb3c287058", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-19T18:38:37.000Z" + }, + "end": { + "$date": "2020-12-19T18:43:07.000Z" + }, + "events": [ + { + "uuid": "f5d92ac8-a72a-4dff-8052-b8a8420316fe", + "start": { + "$date": "2020-12-19T18:38:37.000Z" + }, + "end": { + "$date": "2020-12-19T18:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "36d3a67d-2b8c-4b32-87c3-f45d197a2588", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-19T18:50:13.000Z" + }, + "end": { + "$date": "2020-12-19T20:05:13.000Z" + }, + "events": [ + { + "uuid": "cf48a281-9cf2-437d-a952-bfcb5bf7af55", + "start": { + "$date": "2020-12-19T18:50:13.000Z" + }, + "end": { + "$date": "2020-12-19T20:05:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e1e12568-6bdc-4659-8626-e8739857809a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-19T19:59:52.000Z" + }, + "end": { + "$date": "2020-12-19T20:28:54.000Z" + }, + "events": [ + { + "uuid": "dc58fe2b-2dd9-44c0-9dbd-f2fb0ead34dc", + "start": { + "$date": "2020-12-19T19:59:52.000Z" + }, + "end": { + "$date": "2020-12-19T20:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "a7a483dd-3548-4c27-b6e8-6a7d44d1e3e7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-19T20:29:15.000Z" + }, + "end": { + "$date": "2020-12-19T23:15:50.000Z" + }, + "events": [ + { + "uuid": "0acf1ca9-361a-43a2-b92d-277ed8f562f3", + "start": { + "$date": "2020-12-19T20:29:15.000Z" + }, + "end": { + "$date": "2020-12-19T23:15:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "c96f1b83-c5dd-4ce3-b3b7-eaea1759c82d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-19T22:24:13.000Z" + }, + "end": { + "$date": "2020-12-19T22:26:14.000Z" + }, + "events": [ + { + "uuid": "9297ca72-b811-4ccd-b4ad-a1be0deffd76", + "start": { + "$date": "2020-12-19T22:24:13.000Z" + }, + "end": { + "$date": "2020-12-19T22:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "dc7a7f5c-2e4a-4e8d-9377-9af73f6be27b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-19T22:26:38.000Z" + }, + "end": { + "$date": "2020-12-19T22:56:09.000Z" + }, + "events": [ + { + "uuid": "e5823a3f-7aaa-49ca-9ff1-751fc1da6c36", + "start": { + "$date": "2020-12-19T22:26:38.000Z" + }, + "end": { + "$date": "2020-12-19T22:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "d90dbcfe-a96a-4161-85f1-04fdd8b4f119", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-19T23:30:32.000Z" + }, + "end": { + "$date": "2020-12-19T23:33:33.000Z" + }, + "events": [ + { + "uuid": "68478708-bc54-41e1-a1cb-1c6a8df527d0", + "start": { + "$date": "2020-12-19T23:30:32.000Z" + }, + "end": { + "$date": "2020-12-19T23:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "cdf4227b-a0ae-4b10-bcc2-daa68e9cecb7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-19T23:40:40.000Z" + }, + "end": { + "$date": "2020-12-20T01:22:00.000Z" + }, + "events": [ + { + "uuid": "dbb8af62-3ce9-4eb0-bd7c-5c002ad3e912", + "start": { + "$date": "2020-12-19T23:40:40.000Z" + }, + "end": { + "$date": "2020-12-20T01:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "299ba713-0c2b-44fd-a1a7-81898d9afecf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-19T23:59:50.000Z" + }, + "end": { + "$date": "2020-12-20T00:25:52.000Z" + }, + "events": [ + { + "uuid": "5de5ae92-23b2-4d74-9acf-038fff3789ee", + "start": { + "$date": "2020-12-19T23:59:50.000Z" + }, + "end": { + "$date": "2020-12-20T00:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "633a97bd-30a3-4f61-a24e-27d13946ecd2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-20T00:52:06.000Z" + }, + "end": { + "$date": "2020-12-20T00:57:58.000Z" + }, + "events": [ + { + "uuid": "a66ed237-24d9-4150-b693-98f05733e3dd", + "start": { + "$date": "2020-12-20T00:52:06.000Z" + }, + "end": { + "$date": "2020-12-20T00:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "39e477e2-24b2-4f6b-b5fb-7d532553aa1b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T00:52:21.000Z" + }, + "end": { + "$date": "2020-12-20T02:51:14.000Z" + }, + "events": [ + { + "uuid": "be4dc604-1aae-47c6-9cba-29aada3f4b67", + "start": { + "$date": "2020-12-20T00:52:21.000Z" + }, + "end": { + "$date": "2020-12-20T02:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3b370f30-6114-427f-b3da-1bddc4890e42", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-20T01:32:32.000Z" + }, + "end": { + "$date": "2020-12-20T03:40:57.000Z" + }, + "events": [ + { + "uuid": "87672206-1bee-4076-9894-cc73a428aac1", + "start": { + "$date": "2020-12-20T01:32:32.000Z" + }, + "end": { + "$date": "2020-12-20T03:40:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "583aabc3-934b-469c-bc76-75e35531add5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T01:13:57.000Z" + }, + "end": { + "$date": "2020-12-20T02:50:49.000Z" + }, + "events": [ + { + "uuid": "436f481f-4096-47ff-af90-fa9df11bfcf7", + "start": { + "$date": "2020-12-20T01:13:57.000Z" + }, + "end": { + "$date": "2020-12-20T02:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c915959f-0d34-4592-ab13-b0cef74cbee7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-20T02:18:29.000Z" + }, + "end": { + "$date": "2020-12-20T07:39:31.000Z" + }, + "events": [ + { + "uuid": "12ebfab8-74f6-4d84-9862-68f8ad80919e", + "start": { + "$date": "2020-12-20T02:18:29.000Z" + }, + "end": { + "$date": "2020-12-20T05:04:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56760579-4c54-48ed-a9e5-9689f4402420", + "start": { + "$date": "2020-12-20T05:04:29.000Z" + }, + "end": { + "$date": "2020-12-20T05:21:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8efc7025-2b7f-4dd5-9fba-83ce515eed7e", + "start": { + "$date": "2020-12-20T05:21:29.000Z" + }, + "end": { + "$date": "2020-12-20T05:41:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9dcca14-0c45-47d8-a63a-37137a42c6e5", + "start": { + "$date": "2020-12-20T05:41:29.000Z" + }, + "end": { + "$date": "2020-12-20T05:48:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04e0698c-4159-474e-9ca2-f33446e33e51", + "start": { + "$date": "2020-12-20T05:48:29.000Z" + }, + "end": { + "$date": "2020-12-20T07:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6d7a174e-6429-435d-abc1-c9fbc9f1ce59", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-20T02:44:32.000Z" + }, + "end": { + "$date": "2020-12-20T02:55:39.000Z" + }, + "events": [ + { + "uuid": "36c208eb-e1f5-44d3-b372-fb97c1e413bc", + "start": { + "$date": "2020-12-20T02:44:32.000Z" + }, + "end": { + "$date": "2020-12-20T02:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "af863fb6-caf4-4def-9018-6a169f08d292", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T02:51:31.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:46.000Z" + }, + "events": [ + { + "uuid": "f953b9f5-23ab-4ddd-989b-0f8377c4cf95", + "start": { + "$date": "2020-12-20T02:51:31.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c581fab6-c10f-4613-ba17-f8450c4bd9e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T02:53:50.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:41.000Z" + }, + "events": [ + { + "uuid": "b8925b5b-2295-4731-aa25-470f39cef33f", + "start": { + "$date": "2020-12-20T02:53:50.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f8bbd957-5993-49f3-8970-894a579bdcb2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-20T02:58:15.000Z" + }, + "end": { + "$date": "2020-12-20T05:26:00.000Z" + }, + "events": [ + { + "uuid": "e568dcfb-fe22-4d00-8f05-49fdc1598538", + "start": { + "$date": "2020-12-20T02:58:15.000Z" + }, + "end": { + "$date": "2020-12-20T05:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0ad0e7f0-fa6c-4117-be39-7f456f923e3b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T03:02:20.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:44.000Z" + }, + "events": [ + { + "uuid": "60e047ea-6502-4511-a6a4-cdb15c46a072", + "start": { + "$date": "2020-12-20T03:02:20.000Z" + }, + "end": { + "$date": "2020-12-20T03:23:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20bf8833-6ee7-45af-a43c-4ad51b72e82a", + "start": { + "$date": "2020-12-20T03:23:20.000Z" + }, + "end": { + "$date": "2020-12-20T03:56:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e8e09ae-f82e-4552-8300-b8e33920a7eb", + "start": { + "$date": "2020-12-20T03:56:20.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2b441cee-b7a6-47a1-bff5-9bd721614b4b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-20T03:08:05.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:47.000Z" + }, + "events": [ + { + "uuid": "7c7000a0-3118-4936-ba7e-7fbc90e589c2", + "start": { + "$date": "2020-12-20T03:08:05.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "60bdb941-ef78-45df-bd6a-86e81d50ec2b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-20T03:26:55.000Z" + }, + "end": { + "$date": "2020-12-20T04:48:18.000Z" + }, + "events": [ + { + "uuid": "553a7ef6-bf3d-451c-b3aa-a6c323f40123", + "start": { + "$date": "2020-12-20T03:26:55.000Z" + }, + "end": { + "$date": "2020-12-20T04:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8d5042b6-07d7-4c60-a257-9e393edd662e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-20T04:39:56.000Z" + }, + "end": { + "$date": "2020-12-20T04:41:43.000Z" + }, + "events": [ + { + "uuid": "e791b548-2b2c-4045-acb9-6bf1c7eee1f9", + "start": { + "$date": "2020-12-20T04:39:56.000Z" + }, + "end": { + "$date": "2020-12-20T04:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76e0db30-8156-4cb2-887b-503c697fe970", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-20T04:42:21.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:44.000Z" + }, + "events": [ + { + "uuid": "4524e636-f369-4050-bf52-859d33395a98", + "start": { + "$date": "2020-12-20T04:42:21.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "1c3797e7-1557-4b82-957d-e3691b945559", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-20T04:48:48.000Z" + }, + "end": { + "$date": "2020-12-20T06:26:02.000Z" + }, + "events": [ + { + "uuid": "5b926daf-9377-447b-a257-a2f3c3418ac1", + "start": { + "$date": "2020-12-20T04:48:48.000Z" + }, + "end": { + "$date": "2020-12-20T06:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ed4c8727-e9bd-436e-875c-188cdd0a13ed", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-20T04:49:16.000Z" + }, + "end": { + "$date": "2020-12-20T09:03:25.000Z" + }, + "events": [ + { + "uuid": "d6746537-4724-4dbd-bd9e-87a827265a1f", + "start": { + "$date": "2020-12-20T04:49:16.000Z" + }, + "end": { + "$date": "2020-12-20T09:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "773878eb-5299-409f-8617-d82239e8d75a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-20T04:49:33.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:48.000Z" + }, + "events": [ + { + "uuid": "dfca5746-4472-468f-bd62-e3e4885b48a8", + "start": { + "$date": "2020-12-20T04:49:33.000Z" + }, + "end": { + "$date": "2020-12-20T05:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63270fde-c0d5-48b1-9328-775f4ed3a7de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T05:26:08.000Z" + }, + "end": { + "$date": "2020-12-20T05:28:41.000Z" + }, + "events": [ + { + "uuid": "cdbf4c6b-b330-40f0-ad25-0aa8f4c11eb8", + "start": { + "$date": "2020-12-20T05:26:08.000Z" + }, + "end": { + "$date": "2020-12-20T05:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a53693e1-fc45-4472-ad93-84c66e4bc4c6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-20T05:26:20.000Z" + }, + "end": { + "$date": "2020-12-20T06:04:06.000Z" + }, + "events": [ + { + "uuid": "c55f5c59-7202-455c-950e-928b2ab2631b", + "start": { + "$date": "2020-12-20T05:26:20.000Z" + }, + "end": { + "$date": "2020-12-20T06:04:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da1f5af1-cdf1-4797-a1c3-4d01176f7cfe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T06:07:45.000Z" + }, + "end": { + "$date": "2020-12-20T06:07:41.000Z" + }, + "events": [ + { + "uuid": "171cd2ec-d772-4167-bfbd-f09828e750bd", + "start": { + "$date": "2020-12-20T06:07:45.000Z" + }, + "end": { + "$date": "2020-12-20T06:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "440941f5-6dbe-4725-af34-9b20304cee02", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-20T07:37:10.000Z" + }, + "end": { + "$date": "2020-12-20T07:38:04.000Z" + }, + "events": [ + { + "uuid": "0e6183e7-b54d-4e33-ae8a-a73e5108ee72", + "start": { + "$date": "2020-12-20T07:37:10.000Z" + }, + "end": { + "$date": "2020-12-20T07:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dbaaefd-0fb2-490e-ac24-08862098f85f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T05:26:01.000Z" + }, + "end": { + "$date": "2020-12-20T05:32:51.000Z" + }, + "events": [ + { + "uuid": "92c9cf78-ad87-442c-a44f-11c62941a6fb", + "start": { + "$date": "2020-12-20T05:26:01.000Z" + }, + "end": { + "$date": "2020-12-20T05:32:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "457e8d42-0d79-46bd-b942-806470afe06c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T05:31:25.000Z" + }, + "end": { + "$date": "2020-12-20T06:07:40.000Z" + }, + "events": [ + { + "uuid": "31b84605-0091-4b8c-abea-fa285bae4d54", + "start": { + "$date": "2020-12-20T05:31:25.000Z" + }, + "end": { + "$date": "2020-12-20T06:07:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66e3b39b-0974-464d-8fc3-ccadf9dac5e7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-20T07:37:16.000Z" + }, + "end": { + "$date": "2020-12-20T07:38:04.000Z" + }, + "events": [ + { + "uuid": "858f245b-4fc6-41c2-ba26-edc5a11339f4", + "start": { + "$date": "2020-12-20T07:37:16.000Z" + }, + "end": { + "$date": "2020-12-20T07:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e03ab99e-5790-42cd-98ae-1c49194525be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T05:34:36.000Z" + }, + "end": { + "$date": "2020-12-20T06:07:32.000Z" + }, + "events": [ + { + "uuid": "d163498a-ed9b-4d46-b3eb-44ab28bf37df", + "start": { + "$date": "2020-12-20T05:34:36.000Z" + }, + "end": { + "$date": "2020-12-20T06:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d4fd3fd-f4f2-4975-bec9-abdece30403e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T06:10:50.000Z" + }, + "end": { + "$date": "2020-12-20T06:41:22.000Z" + }, + "events": [ + { + "uuid": "68318af6-3d9d-4353-ab14-5102a96fec32", + "start": { + "$date": "2020-12-20T06:10:50.000Z" + }, + "end": { + "$date": "2020-12-20T06:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3346e4d3-e66f-4bec-a23b-b5512abdbcfe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T06:40:48.000Z" + }, + "end": { + "$date": "2020-12-20T06:41:23.000Z" + }, + "events": [ + { + "uuid": "2cb33112-ae7b-467d-885b-593651fc0725", + "start": { + "$date": "2020-12-20T06:40:48.000Z" + }, + "end": { + "$date": "2020-12-20T06:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "786adda9-6579-4abc-853f-51886b745eb0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T06:10:41.000Z" + }, + "end": { + "$date": "2020-12-20T06:41:31.000Z" + }, + "events": [ + { + "uuid": "4d66d38b-9018-4968-9cda-3fa1305dfcf8", + "start": { + "$date": "2020-12-20T06:10:41.000Z" + }, + "end": { + "$date": "2020-12-20T06:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "aab5314a-bfdf-437e-a858-be290838b5c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-20T06:27:12.000Z" + }, + "end": { + "$date": "2020-12-20T08:42:41.000Z" + }, + "events": [ + { + "uuid": "6f7c8bf8-9770-4ba0-aefb-4a0e53dee324", + "start": { + "$date": "2020-12-20T06:27:12.000Z" + }, + "end": { + "$date": "2020-12-20T08:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "759dc912-a026-4eb6-9e9d-840c05450dae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-20T06:31:13.000Z" + }, + "end": { + "$date": "2020-12-20T11:49:36.000Z" + }, + "events": [ + { + "uuid": "71ca94bc-dadf-4e5c-aabb-e835a187b5e3", + "start": { + "$date": "2020-12-20T06:31:13.000Z" + }, + "end": { + "$date": "2020-12-20T11:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc8ab98c-dc63-4233-9f85-d004ae123b28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T06:49:13.000Z" + }, + "end": { + "$date": "2020-12-20T07:09:12.000Z" + }, + "events": [ + { + "uuid": "ffa7d800-658c-4830-af42-082a0c97ed97", + "start": { + "$date": "2020-12-20T06:49:13.000Z" + }, + "end": { + "$date": "2020-12-20T07:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "343745da-ee95-4d90-ae82-627d4b2db36c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T06:43:48.000Z" + }, + "end": { + "$date": "2020-12-20T06:45:32.000Z" + }, + "events": [ + { + "uuid": "e3185fdb-c0d9-446a-b1f4-a51a8492677f", + "start": { + "$date": "2020-12-20T06:43:48.000Z" + }, + "end": { + "$date": "2020-12-20T06:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c538af36-87d8-4f0c-9f42-701b6f8c6b1d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T06:49:07.000Z" + }, + "end": { + "$date": "2020-12-20T07:09:02.000Z" + }, + "events": [ + { + "uuid": "870ac326-ede0-45e8-894f-e15515e54b1d", + "start": { + "$date": "2020-12-20T06:49:07.000Z" + }, + "end": { + "$date": "2020-12-20T07:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "05a9ca21-34fd-406a-8d54-42c56f606192", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-20T06:55:02.000Z" + }, + "end": { + "$date": "2020-12-20T07:39:57.000Z" + }, + "events": [ + { + "uuid": "95cfd18f-28cf-4661-8602-1721c8ff7607", + "start": { + "$date": "2020-12-20T06:55:02.000Z" + }, + "end": { + "$date": "2020-12-20T07:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e9bb301-4ff4-455c-8d1e-d8d8a5048cd8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T07:16:20.000Z" + }, + "end": { + "$date": "2020-12-20T07:37:05.000Z" + }, + "events": [ + { + "uuid": "133017d3-685b-4b39-82a1-fcf25d44fd61", + "start": { + "$date": "2020-12-20T07:16:20.000Z" + }, + "end": { + "$date": "2020-12-20T07:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcf89199-67bc-4169-8438-865cd9c11bc7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T07:10:26.000Z" + }, + "end": { + "$date": "2020-12-20T07:13:25.000Z" + }, + "events": [ + { + "uuid": "d6674943-9c95-4586-888f-3184c0727675", + "start": { + "$date": "2020-12-20T07:10:26.000Z" + }, + "end": { + "$date": "2020-12-20T07:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8688409-54fc-443e-adf4-dafeb9fbf6c9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-20T07:16:12.000Z" + }, + "end": { + "$date": "2020-12-20T07:37:12.000Z" + }, + "events": [ + { + "uuid": "8b3a80e7-6942-4e38-9794-4272be675dbd", + "start": { + "$date": "2020-12-20T07:16:12.000Z" + }, + "end": { + "$date": "2020-12-20T07:37:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f6a594e-b63a-456d-bf8a-d83de4a11422", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-20T08:48:57.000Z" + }, + "end": { + "$date": "2020-12-20T09:30:17.000Z" + }, + "events": [ + { + "uuid": "f2bd43ff-1e93-4e52-bfac-4f4a1db7a879", + "start": { + "$date": "2020-12-20T08:48:57.000Z" + }, + "end": { + "$date": "2020-12-20T09:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "62c95596-cdc8-43d7-ad65-8e3a517e390e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-20T09:20:38.000Z" + }, + "end": { + "$date": "2020-12-20T09:47:15.000Z" + }, + "events": [ + { + "uuid": "9f19f564-496e-4bc4-8190-78bb2407932a", + "start": { + "$date": "2020-12-20T09:20:38.000Z" + }, + "end": { + "$date": "2020-12-20T09:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "39d67093-26ea-40f8-9534-8a05d7a5fda3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-20T15:49:56.000Z" + }, + "end": { + "$date": "2020-12-20T16:43:02.000Z" + }, + "events": [ + { + "uuid": "b7587b08-5615-4f1f-b45c-d99ee2ab625b", + "start": { + "$date": "2020-12-20T15:49:56.000Z" + }, + "end": { + "$date": "2020-12-20T16:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "abbed611-b1f6-44ca-9539-a82ef1744e52", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-20T15:54:08.000Z" + }, + "end": { + "$date": "2020-12-20T16:43:07.000Z" + }, + "events": [ + { + "uuid": "bd414ff2-acc3-4367-8e63-0aad88f29fd5", + "start": { + "$date": "2020-12-20T15:54:08.000Z" + }, + "end": { + "$date": "2020-12-20T16:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "66894d84-9066-4d33-bf87-d723e49c0edd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-20T16:46:36.000Z" + }, + "end": { + "$date": "2020-12-20T18:09:38.000Z" + }, + "events": [ + { + "uuid": "d7074685-822f-45ff-b580-431ec9974aa7", + "start": { + "$date": "2020-12-20T16:46:36.000Z" + }, + "end": { + "$date": "2020-12-20T18:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "165c8446-3112-4a7b-bbb0-4e0cb6fd8b77", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-20T16:47:28.000Z" + }, + "end": { + "$date": "2020-12-20T17:42:34.000Z" + }, + "events": [ + { + "uuid": "1ff743db-3152-4483-b083-557dba64b804", + "start": { + "$date": "2020-12-20T16:47:28.000Z" + }, + "end": { + "$date": "2020-12-20T17:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "92e6024c-22b3-45fd-8993-14d360f29fef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T17:02:07.000Z" + }, + "end": { + "$date": "2020-12-20T17:32:19.000Z" + }, + "events": [ + { + "uuid": "601a4081-88fd-4123-a6e4-724350742514", + "start": { + "$date": "2020-12-20T17:02:07.000Z" + }, + "end": { + "$date": "2020-12-20T17:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "10e0b252-6a70-46ed-8713-a4eaf64bb78f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T17:32:38.000Z" + }, + "end": { + "$date": "2020-12-20T18:31:36.000Z" + }, + "events": [ + { + "uuid": "1faef3a9-b7ad-45e1-9977-71e249ad841f", + "start": { + "$date": "2020-12-20T17:32:38.000Z" + }, + "end": { + "$date": "2020-12-20T18:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15e71228-7898-44af-a397-297b81e0d92b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-20T18:44:03.000Z" + }, + "end": { + "$date": "2020-12-20T19:04:35.000Z" + }, + "events": [ + { + "uuid": "d7157e19-c4e5-48e5-8d81-3660fd3469af", + "start": { + "$date": "2020-12-20T18:44:03.000Z" + }, + "end": { + "$date": "2020-12-20T19:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a66b4cc3-af2c-42b7-93a1-6275922eeea4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-20T19:07:13.000Z" + }, + "end": { + "$date": "2020-12-20T19:08:27.000Z" + }, + "events": [ + { + "uuid": "d39f2f22-4909-43e2-b879-52feb82deaac", + "start": { + "$date": "2020-12-20T19:07:13.000Z" + }, + "end": { + "$date": "2020-12-20T19:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "06ebc290-a77e-485a-b8b7-a87575c0898f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-20T19:08:43.000Z" + }, + "end": { + "$date": "2020-12-20T20:34:43.000Z" + }, + "events": [ + { + "uuid": "aaea357e-a3ab-4ba1-867d-6ba996c54cd7", + "start": { + "$date": "2020-12-20T19:08:43.000Z" + }, + "end": { + "$date": "2020-12-20T20:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "87e5fc1f-2fdd-48a1-8409-ad206bc450d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-20T20:10:33.000Z" + }, + "end": { + "$date": "2020-12-20T20:33:34.000Z" + }, + "events": [ + { + "uuid": "c39fd30b-30d9-4aa5-9ffb-87f7ffac7bb1", + "start": { + "$date": "2020-12-20T20:10:33.000Z" + }, + "end": { + "$date": "2020-12-20T20:33:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "fa0e0af0-f345-4f5c-bea1-46df947dc83e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-20T20:42:04.000Z" + }, + "end": { + "$date": "2020-12-21T05:19:59.000Z" + }, + "events": [ + { + "uuid": "5f557e42-cfb2-478f-872b-4b9f2d3d6d54", + "start": { + "$date": "2020-12-20T20:42:04.000Z" + }, + "end": { + "$date": "2020-12-21T00:17:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3408c1a6-3450-4b74-ae51-201f9290218d", + "start": { + "$date": "2020-12-21T00:17:04.000Z" + }, + "end": { + "$date": "2020-12-21T00:43:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "57160d1d-0f73-44bb-a2a0-39792f3abfb5", + "start": { + "$date": "2020-12-21T00:43:04.000Z" + }, + "end": { + "$date": "2020-12-21T03:46:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97ec29ac-74f8-437a-ae94-d1eec863a70d", + "start": { + "$date": "2020-12-21T03:46:04.000Z" + }, + "end": { + "$date": "2020-12-21T05:00:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6f7d0e0-910a-41c3-8e3d-75b12538295f", + "start": { + "$date": "2020-12-21T05:00:04.000Z" + }, + "end": { + "$date": "2020-12-21T05:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "85648ad6-8617-40e5-aec0-6de2b72d60b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-20T21:25:00.000Z" + }, + "end": { + "$date": "2020-12-20T21:44:09.000Z" + }, + "events": [ + { + "uuid": "1776f2ba-a87a-4da6-9cba-4304efd3ff19", + "start": { + "$date": "2020-12-20T21:25:00.000Z" + }, + "end": { + "$date": "2020-12-20T21:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "7b3e5107-a187-4c45-82bc-aeb5dda892c8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-20T22:55:40.000Z" + }, + "end": { + "$date": "2020-12-21T00:30:13.000Z" + }, + "events": [ + { + "uuid": "a0629861-ee64-477f-9ee0-bfadbceb8eb9", + "start": { + "$date": "2020-12-20T22:55:40.000Z" + }, + "end": { + "$date": "2020-12-21T00:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3ed92515-27a6-4c36-9059-80b39caddf61", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-21T00:26:03.000Z" + }, + "end": { + "$date": "2020-12-21T02:49:58.000Z" + }, + "events": [ + { + "uuid": "250127b9-46b5-46b1-b7f0-f0a0c9411490", + "start": { + "$date": "2020-12-21T00:26:03.000Z" + }, + "end": { + "$date": "2020-12-21T02:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "2b7a6da4-d970-4331-8b84-f5a302b437f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T02:03:38.000Z" + }, + "end": { + "$date": "2020-12-21T03:58:15.000Z" + }, + "events": [ + { + "uuid": "d76ab6b8-17d2-4091-ba87-3d803c174143", + "start": { + "$date": "2020-12-21T02:03:38.000Z" + }, + "end": { + "$date": "2020-12-21T03:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f8e969aa-9729-4571-9ade-cb9fb7d97dfc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T02:24:59.000Z" + }, + "end": { + "$date": "2020-12-21T02:29:26.000Z" + }, + "events": [ + { + "uuid": "75164705-c75d-44a2-9b4d-de4d18e34178", + "start": { + "$date": "2020-12-21T02:24:59.000Z" + }, + "end": { + "$date": "2020-12-21T02:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "85b62f9f-2a72-4361-9480-739367836444", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T02:43:57.000Z" + }, + "end": { + "$date": "2020-12-21T02:57:54.000Z" + }, + "events": [ + { + "uuid": "65825478-cbc8-4dd6-9804-261aef909ee0", + "start": { + "$date": "2020-12-21T02:43:57.000Z" + }, + "end": { + "$date": "2020-12-21T02:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "092c2893-4338-4590-a1c6-5ed598f4c858", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T03:17:42.000Z" + }, + "end": { + "$date": "2020-12-21T04:08:56.000Z" + }, + "events": [ + { + "uuid": "f183afcf-2962-405d-b2ae-8f5126ece48a", + "start": { + "$date": "2020-12-21T03:17:42.000Z" + }, + "end": { + "$date": "2020-12-21T04:08:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edafebe2-3258-4985-8ba7-abc33ed87da9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-21T04:03:27.000Z" + }, + "end": { + "$date": "2020-12-21T04:23:40.000Z" + }, + "events": [ + { + "uuid": "0cc706ff-6f10-41a0-9816-0f7f9d19211e", + "start": { + "$date": "2020-12-21T04:03:27.000Z" + }, + "end": { + "$date": "2020-12-21T04:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddfb98bb-7d6a-4b0b-82c6-fe9cefc34734", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-21T03:51:32.000Z" + }, + "end": { + "$date": "2020-12-21T03:53:58.000Z" + }, + "events": [ + { + "uuid": "448fedc2-eb9d-49cc-9bf7-1db101bc84c9", + "start": { + "$date": "2020-12-21T03:51:32.000Z" + }, + "end": { + "$date": "2020-12-21T03:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5558812b-f2df-4cef-a4a2-8336a9f2c1b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-21T03:53:45.000Z" + }, + "end": { + "$date": "2020-12-21T04:44:41.000Z" + }, + "events": [ + { + "uuid": "fa3b9bc4-3719-4848-8402-f78ce897ebbe", + "start": { + "$date": "2020-12-21T03:53:45.000Z" + }, + "end": { + "$date": "2020-12-21T04:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d896991f-6ae5-42df-959b-fcd757dc01ad", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T04:03:26.000Z" + }, + "end": { + "$date": "2020-12-21T04:23:41.000Z" + }, + "events": [ + { + "uuid": "e274fe99-fe1e-40b4-a7dd-3738734fc8c2", + "start": { + "$date": "2020-12-21T04:03:26.000Z" + }, + "end": { + "$date": "2020-12-21T04:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0f482f0-a69c-46a7-81f1-23674b0aa1e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-21T04:03:30.000Z" + }, + "end": { + "$date": "2020-12-21T04:23:48.000Z" + }, + "events": [ + { + "uuid": "f45b216a-442e-4194-8b0b-5332dffc2048", + "start": { + "$date": "2020-12-21T04:03:30.000Z" + }, + "end": { + "$date": "2020-12-21T04:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1601a038-db4d-401a-b3ee-1cb1adc9f3a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T04:09:41.000Z" + }, + "end": { + "$date": "2020-12-21T15:24:40.000Z" + }, + "events": [ + { + "uuid": "36c03bd2-04a6-4181-aed5-4660a8ab4c46", + "start": { + "$date": "2020-12-21T04:09:41.000Z" + }, + "end": { + "$date": "2020-12-21T15:24:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8fb366a-70cb-4700-92cf-7ee3021e20f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-21T04:31:32.000Z" + }, + "end": { + "$date": "2020-12-21T05:05:27.000Z" + }, + "events": [ + { + "uuid": "ddff2668-a402-4728-aecf-3d01a2734508", + "start": { + "$date": "2020-12-21T04:31:32.000Z" + }, + "end": { + "$date": "2020-12-21T05:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eb1a2c8-2d21-4d08-b48f-806aed40703a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T04:32:32.000Z" + }, + "end": { + "$date": "2020-12-21T05:05:17.000Z" + }, + "events": [ + { + "uuid": "077e8b1f-7b31-4791-b208-7492f5bc00f1", + "start": { + "$date": "2020-12-21T04:32:32.000Z" + }, + "end": { + "$date": "2020-12-21T05:05:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "eee0cf37-bb56-472c-85be-e4826be24dc8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-21T04:29:03.000Z" + }, + "end": { + "$date": "2020-12-21T05:17:58.000Z" + }, + "events": [ + { + "uuid": "fcc0be4c-e894-4e71-acee-074495d68e42", + "start": { + "$date": "2020-12-21T04:29:03.000Z" + }, + "end": { + "$date": "2020-12-21T05:17:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c376c66d-f440-406c-8d20-cd54eea5e436", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-21T05:11:13.000Z" + }, + "end": { + "$date": "2020-12-21T05:51:59.000Z" + }, + "events": [ + { + "uuid": "92ba06c8-0d8d-4eb6-853e-1175b25258e6", + "start": { + "$date": "2020-12-21T05:11:13.000Z" + }, + "end": { + "$date": "2020-12-21T05:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cadb56ef-4821-417b-a322-1189ff171574", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T06:36:19.000Z" + }, + "end": { + "$date": "2020-12-21T06:37:14.000Z" + }, + "events": [ + { + "uuid": "382b0b78-ffb7-4a93-b945-99ca0a71313e", + "start": { + "$date": "2020-12-21T06:36:19.000Z" + }, + "end": { + "$date": "2020-12-21T06:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9a5e0ab-578d-45af-b699-7496ba0382e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-21T05:54:55.000Z" + }, + "end": { + "$date": "2020-12-21T06:07:50.000Z" + }, + "events": [ + { + "uuid": "c0abaea9-4db0-4372-ba55-9aa6a1171c63", + "start": { + "$date": "2020-12-21T05:54:55.000Z" + }, + "end": { + "$date": "2020-12-21T06:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "84c70928-e396-4773-b419-4de4e17fe476", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-21T05:58:50.000Z" + }, + "end": { + "$date": "2020-12-21T10:03:28.000Z" + }, + "events": [ + { + "uuid": "d890674f-38f2-4f73-a0c6-96914d3e9662", + "start": { + "$date": "2020-12-21T05:58:50.000Z" + }, + "end": { + "$date": "2020-12-21T10:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1d8d0a7-da97-4d3c-be68-916d2c5be34a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-21T06:10:00.000Z" + }, + "end": { + "$date": "2020-12-21T06:36:33.000Z" + }, + "events": [ + { + "uuid": "e9408983-f51a-48ab-86dd-356241c9169d", + "start": { + "$date": "2020-12-21T06:10:00.000Z" + }, + "end": { + "$date": "2020-12-21T06:36:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "04f2b772-6749-43e9-b5f7-693ae020a619", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-21T07:06:43.000Z" + }, + "end": { + "$date": "2020-12-21T09:45:20.000Z" + }, + "events": [ + { + "uuid": "003a93c5-e927-45b5-826d-a3a6e107c2f8", + "start": { + "$date": "2020-12-21T07:06:43.000Z" + }, + "end": { + "$date": "2020-12-21T09:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5eb6545e-3f1e-442a-a3ad-2a2cf7424c47", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-21T07:12:54.000Z" + }, + "end": { + "$date": "2020-12-21T08:07:04.000Z" + }, + "events": [ + { + "uuid": "08ea50a5-e0b3-4934-bfa8-8133bc2bab59", + "start": { + "$date": "2020-12-21T07:12:54.000Z" + }, + "end": { + "$date": "2020-12-21T08:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f61eaf34-ccc8-4145-944c-9d1aeffc056f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-21T07:17:23.000Z" + }, + "end": { + "$date": "2020-12-21T08:18:39.000Z" + }, + "events": [ + { + "uuid": "8504d5b1-ae8d-4a74-97b4-a772b69aa097", + "start": { + "$date": "2020-12-21T07:17:23.000Z" + }, + "end": { + "$date": "2020-12-21T08:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7b808085-0324-46da-9a1c-3455c6308aab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T15:48:11.000Z" + }, + "end": { + "$date": "2020-12-21T17:14:30.000Z" + }, + "events": [ + { + "uuid": "9ac2153d-9b17-435e-9fdc-33c0659d4db6", + "start": { + "$date": "2020-12-21T15:48:11.000Z" + }, + "end": { + "$date": "2020-12-21T17:14:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "d209d0b2-5778-44cd-8af9-547b4b6236e2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T17:15:20.000Z" + }, + "end": { + "$date": "2020-12-21T17:19:06.000Z" + }, + "events": [ + { + "uuid": "401b8c9d-6023-4ba9-84ae-182f9f417d86", + "start": { + "$date": "2020-12-21T17:15:20.000Z" + }, + "end": { + "$date": "2020-12-21T17:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "3c342c4c-b215-4402-9b7a-aef5f1a095dc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T17:19:46.000Z" + }, + "end": { + "$date": "2020-12-21T18:05:13.000Z" + }, + "events": [ + { + "uuid": "94391bf2-156d-48ea-aa85-47d8fa097b3e", + "start": { + "$date": "2020-12-21T17:19:46.000Z" + }, + "end": { + "$date": "2020-12-21T18:05:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5fd963d6-0db9-4a4a-830f-41df3d3b8e08", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-21T17:31:35.000Z" + }, + "end": { + "$date": "2020-12-21T18:48:53.000Z" + }, + "events": [ + { + "uuid": "6c8b56c3-37a8-4697-bb02-f83d9c49990d", + "start": { + "$date": "2020-12-21T17:31:35.000Z" + }, + "end": { + "$date": "2020-12-21T18:48:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "fe4b40cb-cf7c-46cd-a128-27943f190e24", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T18:57:09.000Z" + }, + "end": { + "$date": "2020-12-21T20:12:37.000Z" + }, + "events": [ + { + "uuid": "b660e29a-3ea7-462f-ad4f-3e1505518148", + "start": { + "$date": "2020-12-21T18:57:09.000Z" + }, + "end": { + "$date": "2020-12-21T20:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "24311e3e-2f2b-41c5-9e30-72d9713fe28a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-21T19:08:09.000Z" + }, + "end": { + "$date": "2020-12-21T19:39:19.000Z" + }, + "events": [ + { + "uuid": "0905a0b3-4f28-4a31-a4dc-cc6aed8ece19", + "start": { + "$date": "2020-12-21T19:08:09.000Z" + }, + "end": { + "$date": "2020-12-21T19:39:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ed90cd2a-d4f6-47a1-b777-474fb24fd538", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-21T19:08:50.000Z" + }, + "end": { + "$date": "2020-12-21T21:34:45.000Z" + }, + "events": [ + { + "uuid": "21714e53-a1e6-4e92-bb46-a740853e4e4a", + "start": { + "$date": "2020-12-21T19:08:50.000Z" + }, + "end": { + "$date": "2020-12-21T21:34:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "653cdc5b-e7f9-485a-a22c-a18b572f16e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-21T19:40:05.000Z" + }, + "end": { + "$date": "2020-12-21T19:41:09.000Z" + }, + "events": [ + { + "uuid": "1fe1abaa-31db-41b7-ac54-f397aafbf904", + "start": { + "$date": "2020-12-21T19:40:05.000Z" + }, + "end": { + "$date": "2020-12-21T19:41:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "12b3de75-f627-4059-b20f-97924e801a60", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-21T19:56:40.000Z" + }, + "end": { + "$date": "2020-12-21T20:32:40.000Z" + }, + "events": [ + { + "uuid": "21bebeea-698a-455a-a168-c57dfd7d6b56", + "start": { + "$date": "2020-12-21T19:56:40.000Z" + }, + "end": { + "$date": "2020-12-21T20:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "6ac5e025-eac2-4ca8-87c9-cd4c470c237d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T20:41:06.000Z" + }, + "end": { + "$date": "2020-12-21T20:59:53.000Z" + }, + "events": [ + { + "uuid": "ccac2e31-ccd0-4640-88fc-dee11d5dfe5f", + "start": { + "$date": "2020-12-21T20:41:06.000Z" + }, + "end": { + "$date": "2020-12-21T20:59:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "28c145e7-39c4-43c0-88c2-14627ddc5383", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-21T21:43:01.000Z" + }, + "end": { + "$date": "2020-12-21T21:58:17.000Z" + }, + "events": [ + { + "uuid": "74bac8e9-20c3-4450-8bff-b7ead234dcce", + "start": { + "$date": "2020-12-21T21:43:01.000Z" + }, + "end": { + "$date": "2020-12-21T21:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0877ca1e-10a1-47ef-b01a-d334fcbccb19", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-21T22:46:50.000Z" + }, + "end": { + "$date": "2020-12-21T23:22:29.000Z" + }, + "events": [ + { + "uuid": "991789bf-2ee9-413b-98d1-6ae341027318", + "start": { + "$date": "2020-12-21T22:46:50.000Z" + }, + "end": { + "$date": "2020-12-21T23:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f62b7426-50f0-4007-8e69-6fa939ab8edd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-21T22:46:21.000Z" + }, + "end": { + "$date": "2020-12-22T00:32:08.000Z" + }, + "events": [ + { + "uuid": "b29fcdd0-39a1-4d9f-bf9c-adeefb3d40ca", + "start": { + "$date": "2020-12-21T22:46:21.000Z" + }, + "end": { + "$date": "2020-12-22T00:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b88f59b4-b5f4-4650-b63f-e2d723cc9b1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-21T22:51:32.000Z" + }, + "end": { + "$date": "2020-12-22T01:26:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-21T22:51:32.000Z" + }, + "end": { + "$date": "2020-12-22T01:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f53eba2b-714c-4136-93b9-6a1a56a4fc93", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-21T22:52:14.000Z" + }, + "end": { + "$date": "2020-12-22T01:42:56.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-21T22:52:14.000Z" + }, + "end": { + "$date": "2020-12-22T01:42:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "73520b38-7d40-4843-bf1d-e352ef7f8f67", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-21T23:15:34.000Z" + }, + "end": { + "$date": "2020-12-21T23:51:46.000Z" + }, + "events": [ + { + "uuid": "f506a047-01b5-4e0a-a948-e3a41e41b433", + "start": { + "$date": "2020-12-21T23:15:34.000Z" + }, + "end": { + "$date": "2020-12-21T23:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b2047e6a-80f1-487e-93fc-6d8b589389ea", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-21T23:58:48.000Z" + }, + "end": { + "$date": "2020-12-22T00:18:40.000Z" + }, + "events": [ + { + "uuid": "d6dcbd2d-84bd-420e-ac1a-c64a24938784", + "start": { + "$date": "2020-12-21T23:58:48.000Z" + }, + "end": { + "$date": "2020-12-22T00:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "46b762a1-3386-4dff-91d7-e40cdbd60faf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-22T00:50:42.000Z" + }, + "end": { + "$date": "2020-12-22T00:51:32.000Z" + }, + "events": [ + { + "start": { + "$date": "2020-12-22T00:50:42.000Z" + }, + "end": { + "$date": "2020-12-22T00:51:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "e3914a02-d642-405e-8f7a-9c58fa98b7a5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T01:00:24.000Z" + }, + "end": { + "$date": "2020-12-22T03:03:06.000Z" + }, + "events": [ + { + "uuid": "d0775925-1b6a-48cd-ac46-8dc79a690021", + "start": { + "$date": "2020-12-22T01:00:24.000Z" + }, + "end": { + "$date": "2020-12-22T03:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "39e96089-c364-4cd3-91be-99cd6c9241bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-22T01:24:03.000Z" + }, + "end": { + "$date": "2020-12-22T01:25:29.000Z" + }, + "events": [ + { + "uuid": "d6b65d39-afc9-43a0-9ba4-958d98de1be8", + "start": { + "$date": "2020-12-22T01:24:03.000Z" + }, + "end": { + "$date": "2020-12-22T01:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "25998e29-4378-4154-9945-d139b9998d44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-22T01:25:33.000Z" + }, + "end": { + "$date": "2020-12-22T02:33:01.000Z" + }, + "events": [ + { + "uuid": "b39eedb9-f41d-4f8f-bf69-a80c49e8d94c", + "start": { + "$date": "2020-12-22T01:25:33.000Z" + }, + "end": { + "$date": "2020-12-22T02:33:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "dfdc29af-433e-44d8-a2ad-614b02f8d00f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-22T02:33:48.000Z" + }, + "end": { + "$date": "2020-12-22T04:10:26.000Z" + }, + "events": [ + { + "uuid": "79c4e7be-b0a4-4af5-95a0-c0e424562a0b", + "start": { + "$date": "2020-12-22T02:33:48.000Z" + }, + "end": { + "$date": "2020-12-22T04:10:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "66ffeb70-495a-4152-93e6-3652e00e4513", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-22T03:04:38.000Z" + }, + "end": { + "$date": "2020-12-22T03:06:29.000Z" + }, + "events": [ + { + "uuid": "d7cfd822-de7a-48d6-a006-822f2727ba7b", + "start": { + "$date": "2020-12-22T03:04:38.000Z" + }, + "end": { + "$date": "2020-12-22T03:06:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "d15a509f-68fe-4a09-b76f-3d8c97f35fff", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-22T03:07:19.000Z" + }, + "end": { + "$date": "2020-12-22T03:30:26.000Z" + }, + "events": [ + { + "uuid": "b67242f3-791c-4bba-bba0-5d08195a10fa", + "start": { + "$date": "2020-12-22T03:07:19.000Z" + }, + "end": { + "$date": "2020-12-22T03:30:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "cda922c1-a36c-4b8c-8ae9-b1c7431f6ed7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-22T03:30:27.000Z" + }, + "end": { + "$date": "2020-12-22T06:40:22.000Z" + }, + "events": [ + { + "uuid": "1042a45a-2a4e-44d3-b425-77ed521000a0", + "start": { + "$date": "2020-12-22T03:30:27.000Z" + }, + "end": { + "$date": "2020-12-22T06:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a5c61cc-3fc8-4a92-ab69-e54ead643c9b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T03:35:31.000Z" + }, + "end": { + "$date": "2020-12-22T03:50:26.000Z" + }, + "events": [ + { + "uuid": "66c5d454-8cc6-419a-ac5e-9d7fc77d4618", + "start": { + "$date": "2020-12-22T03:35:31.000Z" + }, + "end": { + "$date": "2020-12-22T03:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e4c3c3da-604b-4b2c-9ecd-c7f7115fa8ca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-22T04:09:13.000Z" + }, + "end": { + "$date": "2020-12-22T06:41:47.000Z" + }, + "events": [ + { + "uuid": "4be16467-a1a2-4e57-b746-7830c9c909bf", + "start": { + "$date": "2020-12-22T04:09:13.000Z" + }, + "end": { + "$date": "2020-12-22T06:36:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "66b4266a-faae-4f82-bcec-2945a04b9787", + "start": { + "$date": "2020-12-22T06:36:13.000Z" + }, + "end": { + "$date": "2020-12-22T06:39:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94d1cc36-9125-4169-8a1f-1f02b519ac25", + "start": { + "$date": "2020-12-22T06:39:13.000Z" + }, + "end": { + "$date": "2020-12-22T06:41:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "72de6bb2-885b-4e11-a2b7-bc7bf7eae39d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-22T05:24:26.000Z" + }, + "end": { + "$date": "2020-12-22T05:24:31.000Z" + }, + "events": [ + { + "uuid": "216ce057-464e-4a48-af4c-7e94eb7a3f9a", + "start": { + "$date": "2020-12-22T05:24:26.000Z" + }, + "end": { + "$date": "2020-12-22T05:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "58c8f674-2f6b-434e-8672-129aedc207e8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-22T04:11:22.000Z" + }, + "end": { + "$date": "2020-12-22T06:07:18.000Z" + }, + "events": [ + { + "uuid": "231431c8-2317-4168-8674-166be68fe6d9", + "start": { + "$date": "2020-12-22T04:11:22.000Z" + }, + "end": { + "$date": "2020-12-22T06:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b76331bc-b65b-45c0-b9af-77bc52371bb3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T04:40:01.000Z" + }, + "end": { + "$date": "2020-12-22T04:41:07.000Z" + }, + "events": [ + { + "uuid": "d3a9e59f-aa88-4da7-90df-799864fe8ade", + "start": { + "$date": "2020-12-22T04:40:01.000Z" + }, + "end": { + "$date": "2020-12-22T04:41:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0f48f174-bb9f-4205-ad9d-bbb6176fb3da", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T04:42:26.000Z" + }, + "end": { + "$date": "2020-12-22T05:35:05.000Z" + }, + "events": [ + { + "uuid": "884c3de9-8f5b-4dd0-aa76-92d40fc2ccea", + "start": { + "$date": "2020-12-22T04:42:26.000Z" + }, + "end": { + "$date": "2020-12-22T05:35:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "43ce69b1-2c8a-4bd3-884a-812fe8c95d9e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-22T05:18:17.000Z" + }, + "end": { + "$date": "2020-12-22T05:52:02.000Z" + }, + "events": [ + { + "uuid": "8757563e-5e85-4c21-ae51-6fe8dafe37c6", + "start": { + "$date": "2020-12-22T05:18:17.000Z" + }, + "end": { + "$date": "2020-12-22T05:52:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4759603f-744c-4ae1-8280-f67c9c49f1ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T05:23:10.000Z" + }, + "end": { + "$date": "2020-12-22T05:40:39.000Z" + }, + "events": [ + { + "uuid": "57677262-5ed7-41aa-86ec-079f70d75bc9", + "start": { + "$date": "2020-12-22T05:23:10.000Z" + }, + "end": { + "$date": "2020-12-22T05:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c95981df-d4ac-43d0-8448-c50eb37878e9", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-22T05:30:38.000Z" + }, + "end": { + "$date": "2020-12-22T07:28:01.000Z" + }, + "events": [ + { + "uuid": "be2302cf-3f08-4df3-8c82-683554b42e0f", + "start": { + "$date": "2020-12-22T05:30:38.000Z" + }, + "end": { + "$date": "2020-12-22T07:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b40d573d-b37e-4180-9e12-e33b5687b836", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T05:36:05.000Z" + }, + "end": { + "$date": "2020-12-22T08:00:43.000Z" + }, + "events": [ + { + "uuid": "1957beef-0297-44cd-83ba-b498a95084e1", + "start": { + "$date": "2020-12-22T05:36:05.000Z" + }, + "end": { + "$date": "2020-12-22T08:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "9d293def-8eb9-4852-abbc-096f97427a9b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T05:58:47.000Z" + }, + "end": { + "$date": "2020-12-22T06:33:13.000Z" + }, + "events": [ + { + "uuid": "e2d3c160-64cf-4c5a-a52f-ebdc2d5213ec", + "start": { + "$date": "2020-12-22T05:58:47.000Z" + }, + "end": { + "$date": "2020-12-22T06:33:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "24f386d8-1834-4719-804e-4bbc81c5acd8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-22T06:43:44.000Z" + }, + "end": { + "$date": "2020-12-22T09:31:29.000Z" + }, + "events": [ + { + "uuid": "af0b1c2c-4c2c-43f7-952c-172581170c7c", + "start": { + "$date": "2020-12-22T06:43:44.000Z" + }, + "end": { + "$date": "2020-12-22T08:05:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24bcffb0-e509-410d-81ea-b67311f81e7d", + "start": { + "$date": "2020-12-22T08:05:44.000Z" + }, + "end": { + "$date": "2020-12-22T08:09:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "016fb308-1969-4cb0-9362-f499d0275788", + "start": { + "$date": "2020-12-22T08:09:44.000Z" + }, + "end": { + "$date": "2020-12-22T09:31:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "08a6aefa-7f8a-4546-a79b-fd03ffb91618", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T08:01:03.000Z" + }, + "end": { + "$date": "2020-12-22T08:50:16.000Z" + }, + "events": [ + { + "uuid": "754aec65-7b5d-471c-8392-d1763f5e06dc", + "start": { + "$date": "2020-12-22T08:01:03.000Z" + }, + "end": { + "$date": "2020-12-22T08:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "dc736f71-a146-477a-aa56-9e9d0b3cd2a5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-22T08:50:36.000Z" + }, + "end": { + "$date": "2020-12-22T09:28:17.000Z" + }, + "events": [ + { + "uuid": "460d25b0-64d9-4caa-ac85-d21083eb89b5", + "start": { + "$date": "2020-12-22T08:50:36.000Z" + }, + "end": { + "$date": "2020-12-22T09:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "3497b299-0a72-4a0a-ab13-04e35a10d0ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-22T15:29:24.000Z" + }, + "end": { + "$date": "2020-12-22T15:33:03.000Z" + }, + "events": [ + { + "uuid": "58e26d1e-32af-49cf-8235-27468906bd1f", + "start": { + "$date": "2020-12-22T15:29:24.000Z" + }, + "end": { + "$date": "2020-12-22T15:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a1c51046-7a26-43d0-8f36-af24ffda9a46", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-22T17:14:06.000Z" + }, + "end": { + "$date": "2020-12-22T19:05:32.000Z" + }, + "events": [ + { + "uuid": "795705db-93f0-4067-b1b3-d6c874547630", + "start": { + "$date": "2020-12-22T17:14:06.000Z" + }, + "end": { + "$date": "2020-12-22T19:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "88bcd600-4592-4baf-8e1b-64a99ee59d10", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-22T17:56:53.000Z" + }, + "end": { + "$date": "2020-12-22T18:05:24.000Z" + }, + "events": [ + { + "uuid": "f3f1da31-4060-400a-87e8-c599525b4c41", + "start": { + "$date": "2020-12-22T17:56:53.000Z" + }, + "end": { + "$date": "2020-12-22T18:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "34838778-86a3-4f0a-b3ce-bcd8d927f249", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T18:28:07.000Z" + }, + "end": { + "$date": "2020-12-22T18:35:37.000Z" + }, + "events": [ + { + "uuid": "cbf77588-35eb-49a5-b4b3-02b7d27b0ec4", + "start": { + "$date": "2020-12-22T18:28:07.000Z" + }, + "end": { + "$date": "2020-12-22T18:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9fceadeb-57e4-4321-8f36-a8f914212346", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-22T18:35:26.000Z" + }, + "end": { + "$date": "2020-12-22T19:28:42.000Z" + }, + "events": [ + { + "uuid": "e3513324-afba-4293-aa88-c3063e6341e0", + "start": { + "$date": "2020-12-22T18:35:26.000Z" + }, + "end": { + "$date": "2020-12-22T19:28:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bafaeb8e-6d14-4794-86c8-2aab0927c830", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T18:40:07.000Z" + }, + "end": { + "$date": "2020-12-22T18:58:53.000Z" + }, + "events": [ + { + "uuid": "9c14e004-6a69-4a39-89af-015cdb80e8cb", + "start": { + "$date": "2020-12-22T18:40:07.000Z" + }, + "end": { + "$date": "2020-12-22T18:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "77aeee6e-fb47-4c36-83a3-f29f683f0884", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T18:36:27.000Z" + }, + "end": { + "$date": "2020-12-22T19:28:15.000Z" + }, + "events": [ + { + "uuid": "1b5a76b4-e191-48d5-acf5-7fc20dbb3114", + "start": { + "$date": "2020-12-22T18:36:27.000Z" + }, + "end": { + "$date": "2020-12-22T19:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51cc0e55-96bc-4ddb-9a2a-0030d9006f10", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T19:04:43.000Z" + }, + "end": { + "$date": "2020-12-22T19:20:18.000Z" + }, + "events": [ + { + "uuid": "2d79b932-7d23-44ee-a00a-35e7e476fa60", + "start": { + "$date": "2020-12-22T19:04:43.000Z" + }, + "end": { + "$date": "2020-12-22T19:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c2778bd9-f5b5-454f-a2c0-21430326fad8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-22T19:10:44.000Z" + }, + "end": { + "$date": "2020-12-22T19:45:35.000Z" + }, + "events": [ + { + "uuid": "132f9d97-4367-47e0-979e-6d9a0d5a8822", + "start": { + "$date": "2020-12-22T19:10:44.000Z" + }, + "end": { + "$date": "2020-12-22T19:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "dd245d12-7f50-4eb3-ba0f-b5d7d5edfcee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-22T19:35:30.000Z" + }, + "end": { + "$date": "2020-12-22T20:21:51.000Z" + }, + "events": [ + { + "uuid": "f655bf8c-83d4-4e21-be76-706cdb6fe3a9", + "start": { + "$date": "2020-12-22T19:35:30.000Z" + }, + "end": { + "$date": "2020-12-22T20:21:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "326be810-16dd-4836-93bf-8a3b5e2ed5ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-22T21:21:36.000Z" + }, + "end": { + "$date": "2020-12-23T00:10:39.000Z" + }, + "events": [ + { + "uuid": "27d50bee-a64f-4ba6-af14-37141800b60b", + "start": { + "$date": "2020-12-22T21:21:36.000Z" + }, + "end": { + "$date": "2020-12-22T22:27:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7f88e76-71e6-4cb1-982a-5ce7613b7948", + "start": { + "$date": "2020-12-22T22:27:36.000Z" + }, + "end": { + "$date": "2020-12-22T22:32:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "108f8c92-5d7a-436f-a710-ea4a6b014310", + "start": { + "$date": "2020-12-22T22:32:36.000Z" + }, + "end": { + "$date": "2020-12-23T00:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6267ab7d-44dc-46b1-8312-f5674fa8b91a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-22T21:40:22.000Z" + }, + "end": { + "$date": "2020-12-22T22:17:11.000Z" + }, + "events": [ + { + "uuid": "39be7443-c982-465d-baf2-408b666f9cd8", + "start": { + "$date": "2020-12-22T21:40:22.000Z" + }, + "end": { + "$date": "2020-12-22T22:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b330074d-1f16-48f9-9068-c874070a2462", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-22T21:55:18.000Z" + }, + "end": { + "$date": "2020-12-22T21:57:33.000Z" + }, + "events": [ + { + "uuid": "914b10fa-1e6c-4f79-aac0-ba1a8f6fa548", + "start": { + "$date": "2020-12-22T21:55:18.000Z" + }, + "end": { + "$date": "2020-12-22T21:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "29253535-a9f7-4180-bdaf-6dd46cb080d9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-22T22:11:03.000Z" + }, + "end": { + "$date": "2020-12-22T23:02:45.000Z" + }, + "events": [ + { + "uuid": "cb34137c-9b45-4bdb-82c5-4af911a7785b", + "start": { + "$date": "2020-12-22T22:11:03.000Z" + }, + "end": { + "$date": "2020-12-22T23:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fbd009de-1cf8-4ec9-a695-46d2fdc0ff39", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-22T22:11:31.000Z" + }, + "end": { + "$date": "2020-12-22T23:02:47.000Z" + }, + "events": [ + { + "uuid": "0eabf64a-35ae-483b-ab4d-2def60d57af8", + "start": { + "$date": "2020-12-22T22:11:31.000Z" + }, + "end": { + "$date": "2020-12-22T23:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a491f007-56b2-487d-ad2c-0c09fc80ab2c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-22T22:21:24.000Z" + }, + "end": { + "$date": "2020-12-22T23:19:30.000Z" + }, + "events": [ + { + "uuid": "1d7b6a1a-4a75-456d-9d6a-ceb232548335", + "start": { + "$date": "2020-12-22T22:21:24.000Z" + }, + "end": { + "$date": "2020-12-22T23:19:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c35a3ff-80b3-4aed-a95b-45159ba18fb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T22:38:09.000Z" + }, + "end": { + "$date": "2020-12-22T22:53:56.000Z" + }, + "events": [ + { + "uuid": "396558c7-d9d8-49c6-ae1b-47ca844aa082", + "start": { + "$date": "2020-12-22T22:38:09.000Z" + }, + "end": { + "$date": "2020-12-22T22:53:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "3bc32c96-dd0c-4d58-8918-4206b7501185", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-22T23:28:18.000Z" + }, + "end": { + "$date": "2020-12-23T00:07:54.000Z" + }, + "events": [ + { + "uuid": "b9b971cf-e4ff-48c4-adc9-0ea956c6d496", + "start": { + "$date": "2020-12-22T23:28:18.000Z" + }, + "end": { + "$date": "2020-12-23T00:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d60e0d4-30f2-4dfa-b735-ea0956de26ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-22T23:46:04.000Z" + }, + "end": { + "$date": "2020-12-23T00:04:33.000Z" + }, + "events": [ + { + "uuid": "2991a45d-ea51-4c80-8d3d-199e8b7b5506", + "start": { + "$date": "2020-12-22T23:46:04.000Z" + }, + "end": { + "$date": "2020-12-23T00:04:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "61c4089c-2503-4f9c-8f6f-1bb42300f0fd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-23T00:08:16.000Z" + }, + "end": { + "$date": "2020-12-23T00:55:43.000Z" + }, + "events": [ + { + "uuid": "fab3c34a-b393-4c86-ac97-266fbd1fc9d4", + "start": { + "$date": "2020-12-23T00:08:16.000Z" + }, + "end": { + "$date": "2020-12-23T00:55:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c615a3d6-a4d7-4118-a697-6c3d79c4281a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-23T00:17:05.000Z" + }, + "end": { + "$date": "2020-12-23T02:56:17.000Z" + }, + "events": [ + { + "uuid": "c26d51fd-0d97-4f64-a8a1-021bc735d48f", + "start": { + "$date": "2020-12-23T00:17:05.000Z" + }, + "end": { + "$date": "2020-12-23T01:05:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ef2b5e1-095f-49c0-a605-81e528860cf2", + "start": { + "$date": "2020-12-23T01:05:05.000Z" + }, + "end": { + "$date": "2020-12-23T01:40:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d4c89035-2204-4e4e-bf71-14627f2453f7", + "start": { + "$date": "2020-12-23T01:40:05.000Z" + }, + "end": { + "$date": "2020-12-23T01:44:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "647fcba6-c2b1-4710-a6e9-b7d70fdb191a", + "start": { + "$date": "2020-12-23T01:44:05.000Z" + }, + "end": { + "$date": "2020-12-23T02:45:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6289c3d1-64bd-4c74-9040-c19fe3474c04", + "start": { + "$date": "2020-12-23T02:45:05.000Z" + }, + "end": { + "$date": "2020-12-23T02:48:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "723a091e-d5d4-427f-9bb9-304bdb1da9bb", + "start": { + "$date": "2020-12-23T02:48:05.000Z" + }, + "end": { + "$date": "2020-12-23T02:53:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "19133617-6a5d-471b-b6a3-f182fb63fc03", + "start": { + "$date": "2020-12-23T02:53:05.000Z" + }, + "end": { + "$date": "2020-12-23T02:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "613650fa-8212-4cbf-86f5-c3a6991e5b72", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-23T01:53:57.000Z" + }, + "end": { + "$date": "2020-12-23T04:59:01.000Z" + }, + "events": [ + { + "uuid": "1152f583-d13e-4130-b7e1-2d9762b1b525", + "start": { + "$date": "2020-12-23T01:53:57.000Z" + }, + "end": { + "$date": "2020-12-23T04:59:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "02a94da2-e640-4e30-99c6-43bc448c07e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T01:54:35.000Z" + }, + "end": { + "$date": "2020-12-23T02:01:01.000Z" + }, + "events": [ + { + "uuid": "5b11296b-01de-4d56-91c4-a67ca1f177b6", + "start": { + "$date": "2020-12-23T01:54:35.000Z" + }, + "end": { + "$date": "2020-12-23T02:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "55df2284-d996-4d9d-96ea-eefb4d8c3288", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-23T04:20:55.000Z" + }, + "end": { + "$date": "2020-12-23T08:46:38.000Z" + }, + "events": [ + { + "uuid": "22a32587-ca77-46a2-85de-ffe4287d0adc", + "start": { + "$date": "2020-12-23T04:20:55.000Z" + }, + "end": { + "$date": "2020-12-23T08:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d7846cd7-972a-4d6d-b5a4-fdbc0fbd66b1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T03:28:34.000Z" + }, + "end": { + "$date": "2020-12-23T04:17:11.000Z" + }, + "events": [ + { + "uuid": "738e505f-a0ec-4fd1-9a42-9a1da3193d1d", + "start": { + "$date": "2020-12-23T03:28:34.000Z" + }, + "end": { + "$date": "2020-12-23T04:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b836d044-d6f9-42db-b27c-ca87c3b91bf4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T04:01:29.000Z" + }, + "end": { + "$date": "2020-12-23T04:01:29.000Z" + }, + "events": [ + { + "uuid": "9fb4b494-6f90-43e8-9b74-14b6b7caed1e", + "start": { + "$date": "2020-12-23T04:01:29.000Z" + }, + "end": { + "$date": "2020-12-23T04:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1399262f-f671-4753-b268-b0325992d464", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-23T03:52:38.000Z" + }, + "end": { + "$date": "2020-12-23T04:21:18.000Z" + }, + "events": [ + { + "uuid": "b221ef04-4b63-42fb-b035-36f61d5fb755", + "start": { + "$date": "2020-12-23T03:52:38.000Z" + }, + "end": { + "$date": "2020-12-23T04:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ed3a4983-e298-418e-b60f-0aae55279bbb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-23T03:57:08.000Z" + }, + "end": { + "$date": "2020-12-23T04:41:45.000Z" + }, + "events": [ + { + "uuid": "f48b619b-252c-4104-8666-7b88cc1e9091", + "start": { + "$date": "2020-12-23T03:57:08.000Z" + }, + "end": { + "$date": "2020-12-23T04:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7e86a76d-f192-495a-95ef-e29882b262fa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-23T03:57:25.000Z" + }, + "end": { + "$date": "2020-12-23T05:34:04.000Z" + }, + "events": [ + { + "uuid": "ba91d5e5-fe3f-447e-9eeb-3cad4553bb66", + "start": { + "$date": "2020-12-23T03:57:25.000Z" + }, + "end": { + "$date": "2020-12-23T05:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c839ef5e-500f-4944-9aa1-4f8c7f112b4d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T04:07:19.000Z" + }, + "end": { + "$date": "2020-12-23T04:23:35.000Z" + }, + "events": [ + { + "uuid": "a2c0e39b-b189-4934-b25a-5b7e2617adba", + "start": { + "$date": "2020-12-23T04:07:19.000Z" + }, + "end": { + "$date": "2020-12-23T04:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "c759ffae-db1d-47a9-b60a-ecdf6b37a5d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T04:18:46.000Z" + }, + "end": { + "$date": "2020-12-23T04:21:26.000Z" + }, + "events": [ + { + "uuid": "4947f10d-88a1-48ff-b52c-dc54579c5dd0", + "start": { + "$date": "2020-12-23T04:18:46.000Z" + }, + "end": { + "$date": "2020-12-23T04:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "50e9db99-b244-4cb8-952e-7b47b9bfacdc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T04:21:31.000Z" + }, + "end": { + "$date": "2020-12-23T04:25:21.000Z" + }, + "events": [ + { + "uuid": "28f4c9dc-cb57-4f38-a01c-1e2eb20b283c", + "start": { + "$date": "2020-12-23T04:21:31.000Z" + }, + "end": { + "$date": "2020-12-23T04:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52ee869d-75fe-4068-a8be-d14fb612441d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T04:28:55.000Z" + }, + "end": { + "$date": "2020-12-23T05:15:10.000Z" + }, + "events": [ + { + "uuid": "71f0255e-cfe8-45b8-a2ed-b2222f8d3af7", + "start": { + "$date": "2020-12-23T04:28:55.000Z" + }, + "end": { + "$date": "2020-12-23T05:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "8d2f2496-4cb4-4cec-9736-632c79a50037", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T04:29:22.000Z" + }, + "end": { + "$date": "2020-12-23T05:15:03.000Z" + }, + "events": [ + { + "uuid": "2ecde035-765f-4e36-9af6-fac033941761", + "start": { + "$date": "2020-12-23T04:29:22.000Z" + }, + "end": { + "$date": "2020-12-23T05:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb454202-f5d2-4313-a7a0-ccd09cddf538", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-23T04:29:08.000Z" + }, + "end": { + "$date": "2020-12-23T05:15:05.000Z" + }, + "events": [ + { + "uuid": "b22e98bc-5a5b-4c8f-9b42-17f4170627d2", + "start": { + "$date": "2020-12-23T04:29:08.000Z" + }, + "end": { + "$date": "2020-12-23T05:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9ef2ae72-a209-4777-add2-337d67950173", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-23T04:48:53.000Z" + }, + "end": { + "$date": "2020-12-23T05:06:24.000Z" + }, + "events": [ + { + "uuid": "eecb8b59-53c5-4717-8b4c-23747b5691c9", + "start": { + "$date": "2020-12-23T04:48:53.000Z" + }, + "end": { + "$date": "2020-12-23T05:06:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec7ba0ce-3f7d-4508-9e2a-896808922f74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T05:21:07.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:27.000Z" + }, + "events": [ + { + "uuid": "a5f2d003-0228-4600-9bb3-71788d7f3da6", + "start": { + "$date": "2020-12-23T05:21:07.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "25172256-1a62-47bb-b454-d06db8e4f210", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2020-12-23T05:16:09.000Z" + }, + "end": { + "$date": "2020-12-23T06:53:45.000Z" + }, + "events": [ + { + "uuid": "33baf2aa-f993-468e-b213-ae2da7d4c449", + "start": { + "$date": "2020-12-23T05:16:09.000Z" + }, + "end": { + "$date": "2020-12-23T06:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "102037c1-16f6-4ad2-9c7a-c2794daff98f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T05:22:23.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:29.000Z" + }, + "events": [ + { + "uuid": "374cb99f-8ef6-4e1b-8399-ca170fd65889", + "start": { + "$date": "2020-12-23T05:22:23.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50a35bb7-1604-401c-9dbe-ba9d292c2b03", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-23T05:21:17.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:32.000Z" + }, + "events": [ + { + "uuid": "f3054419-a3f8-499d-9fa2-7e1a669f6059", + "start": { + "$date": "2020-12-23T05:21:17.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ea15fa1-8832-4a84-97fc-102eb496a206", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-23T05:37:49.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:34.000Z" + }, + "events": [ + { + "uuid": "8fcc058a-57d5-4bee-b391-3799f4ab3c3a", + "start": { + "$date": "2020-12-23T05:37:49.000Z" + }, + "end": { + "$date": "2020-12-23T05:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c330f1d-21b4-4520-898c-e14ce3f6b181", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T05:46:48.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:23.000Z" + }, + "events": [ + { + "uuid": "cbe87253-54f7-4744-8c7e-f4626f97f2d3", + "start": { + "$date": "2020-12-23T05:46:48.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acb87120-ba6d-4f70-8a02-8524df8e23b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T05:47:14.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:15.000Z" + }, + "events": [ + { + "uuid": "286e9c76-07e4-4157-868a-2d55601d76d7", + "start": { + "$date": "2020-12-23T05:47:14.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0f50f0e-7301-46f8-8391-3c380bb2a6a2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-23T05:46:45.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:19.000Z" + }, + "events": [ + { + "uuid": "59d6422d-142c-4b73-b911-62bfd3f8fda3", + "start": { + "$date": "2020-12-23T05:46:45.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78b9e56a-d904-4db6-b93e-3f84df47bfe3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-23T05:46:54.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:19.000Z" + }, + "events": [ + { + "uuid": "ebedd3eb-d05b-4768-96ba-9acaeb15c23a", + "start": { + "$date": "2020-12-23T05:46:54.000Z" + }, + "end": { + "$date": "2020-12-23T06:02:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6915bbb-a018-4c2e-99f9-80a996192bca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T06:06:59.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:09.000Z" + }, + "events": [ + { + "uuid": "7feeb5ab-4643-410d-9770-b44b0895a797", + "start": { + "$date": "2020-12-23T06:06:59.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ff9b95c-c16b-42cf-afbb-dcc263163d94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T06:06:59.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:10.000Z" + }, + "events": [ + { + "uuid": "e4247016-39ad-48c5-9235-b3888cc193e0", + "start": { + "$date": "2020-12-23T06:06:59.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "503cf3af-4840-48e6-939f-73726d5bc7ea", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-23T06:07:00.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:15.000Z" + }, + "events": [ + { + "uuid": "e210a0df-7f1f-4b1a-b3db-a249ec9e8ff8", + "start": { + "$date": "2020-12-23T06:07:00.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "feaaae0c-e6ba-4cde-baa3-e9733aa05c4f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-23T06:07:10.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:15.000Z" + }, + "events": [ + { + "uuid": "0ad1b8dd-0099-4650-b3e2-37d6999bab67", + "start": { + "$date": "2020-12-23T06:07:10.000Z" + }, + "end": { + "$date": "2020-12-23T06:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad7f51d9-39a3-4d1f-ba5c-b9ecf3ee807a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T06:22:05.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:35.000Z" + }, + "events": [ + { + "uuid": "92386ee7-c320-430a-a96e-786022b971bb", + "start": { + "$date": "2020-12-23T06:22:05.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdf794c7-31c6-4cad-a89d-bf0e3c94fc18", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-23T06:22:16.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:26.000Z" + }, + "events": [ + { + "uuid": "505ec17e-cf4f-4841-9427-349deae544ab", + "start": { + "$date": "2020-12-23T06:22:16.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5bb38a2-cc42-41fd-b02b-dc8659ef7ebb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T06:22:35.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:26.000Z" + }, + "events": [ + { + "uuid": "dcd1d024-bd84-4a3f-b9f8-4e53d5008c47", + "start": { + "$date": "2020-12-23T06:22:35.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e157dc8-4f6a-48a2-a20f-d00a7b2531eb", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-23T06:22:06.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:25.000Z" + }, + "events": [ + { + "uuid": "08b06bbc-09fd-45c0-a58d-0e97d1a48170", + "start": { + "$date": "2020-12-23T06:22:06.000Z" + }, + "end": { + "$date": "2020-12-23T06:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cc2856be-6ee1-4cd7-b243-4a37f4a559b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-23T06:47:08.000Z" + }, + "end": { + "$date": "2020-12-23T06:52:10.000Z" + }, + "events": [ + { + "uuid": "cb983655-27d3-446b-bbbc-5b0f48da9e97", + "start": { + "$date": "2020-12-23T06:47:08.000Z" + }, + "end": { + "$date": "2020-12-23T06:52:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "63651988-122e-431b-858a-95d31ff3cfe2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T15:53:20.000Z" + }, + "end": { + "$date": "2020-12-23T16:44:24.000Z" + }, + "events": [ + { + "uuid": "048d15d8-7415-439c-b612-8522eb7eb080", + "start": { + "$date": "2020-12-23T15:53:20.000Z" + }, + "end": { + "$date": "2020-12-23T16:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d775edbd-08f4-4d51-a3f4-b029ed833386", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-23T16:14:46.000Z" + }, + "end": { + "$date": "2020-12-23T18:57:30.000Z" + }, + "events": [ + { + "uuid": "358f0e77-d14e-4897-8c21-73687a684e3a", + "start": { + "$date": "2020-12-23T16:14:46.000Z" + }, + "end": { + "$date": "2020-12-23T18:57:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d553cde9-bcef-46da-84ef-cf4cba07c66f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T16:32:33.000Z" + }, + "end": { + "$date": "2020-12-23T16:52:56.000Z" + }, + "events": [ + { + "uuid": "989a77e9-c473-4989-8ef5-89d1ab71ef5a", + "start": { + "$date": "2020-12-23T16:32:33.000Z" + }, + "end": { + "$date": "2020-12-23T16:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3c5db85-c3b8-4633-a4a7-05c96438e142", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T16:58:00.000Z" + }, + "end": { + "$date": "2020-12-23T17:15:37.000Z" + }, + "events": [ + { + "uuid": "8637211f-f350-4441-9c3d-526808b1609f", + "start": { + "$date": "2020-12-23T16:58:00.000Z" + }, + "end": { + "$date": "2020-12-23T17:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "c41a7ace-8d17-40f4-8334-b0cbe13eb49a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-23T18:34:56.000Z" + }, + "end": { + "$date": "2020-12-23T19:54:16.000Z" + }, + "events": [ + { + "uuid": "4c2fb5e2-2f1e-4cfc-aeba-169ccbf81278", + "start": { + "$date": "2020-12-23T18:34:56.000Z" + }, + "end": { + "$date": "2020-12-23T19:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0dda3966-4388-47e1-988a-419188c2db9a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-23T18:37:56.000Z" + }, + "end": { + "$date": "2020-12-24T00:36:29.000Z" + }, + "events": [ + { + "uuid": "7c7c7dd7-04e0-48df-b2a5-c12f862c21bd", + "start": { + "$date": "2020-12-23T18:37:56.000Z" + }, + "end": { + "$date": "2020-12-23T18:57:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c5e742c1-6e54-4af6-bf89-0599777e663e", + "start": { + "$date": "2020-12-23T18:57:56.000Z" + }, + "end": { + "$date": "2020-12-23T19:07:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ac268631-a0cc-4bf0-af82-e79efb3fda06", + "start": { + "$date": "2020-12-23T19:07:56.000Z" + }, + "end": { + "$date": "2020-12-24T00:36:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ab7c63c1-dd46-4812-a576-a0acd85f3c1f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-23T18:50:57.000Z" + }, + "end": { + "$date": "2020-12-23T20:11:00.000Z" + }, + "events": [ + { + "uuid": "2839e4a1-4434-49d9-8357-4e82d83c7d12", + "start": { + "$date": "2020-12-23T18:50:57.000Z" + }, + "end": { + "$date": "2020-12-23T20:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bedd22e0-141e-4ba6-98a3-ae50cfe3808b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-23T20:27:02.000Z" + }, + "end": { + "$date": "2020-12-23T22:50:49.000Z" + }, + "events": [ + { + "uuid": "4ebb25fe-754d-49cb-949c-9a2c971df92a", + "start": { + "$date": "2020-12-23T20:27:02.000Z" + }, + "end": { + "$date": "2020-12-23T22:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "eba2dc07-64d4-4c4a-8cb2-7b8893798ac0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T22:01:37.000Z" + }, + "end": { + "$date": "2020-12-23T22:08:34.000Z" + }, + "events": [ + { + "uuid": "a4fc4820-7a87-49c8-a836-ca8682b3b819", + "start": { + "$date": "2020-12-23T22:01:37.000Z" + }, + "end": { + "$date": "2020-12-23T22:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "11b1eb2c-96e2-4f58-a1ae-ff74b42d3a99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-23T22:08:47.000Z" + }, + "end": { + "$date": "2020-12-24T01:36:50.000Z" + }, + "events": [ + { + "uuid": "a9c3778e-08bd-498a-a9a2-60d410ab5711", + "start": { + "$date": "2020-12-23T22:08:47.000Z" + }, + "end": { + "$date": "2020-12-23T23:52:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41668543-e2bd-4931-a8e5-1e9dabd45e07", + "start": { + "$date": "2020-12-23T23:52:47.000Z" + }, + "end": { + "$date": "2020-12-24T00:16:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "beb05b26-2db8-446c-b54d-096c94ce1e6a", + "start": { + "$date": "2020-12-24T00:16:47.000Z" + }, + "end": { + "$date": "2020-12-24T00:20:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d68a238d-ad00-4501-9600-dbc3877e1959", + "start": { + "$date": "2020-12-24T00:20:47.000Z" + }, + "end": { + "$date": "2020-12-24T00:23:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8eb780e7-d6b4-4809-a89d-60897cc8dad7", + "start": { + "$date": "2020-12-24T00:23:47.000Z" + }, + "end": { + "$date": "2020-12-24T00:26:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "256f2e35-ab66-47a7-aebf-35c74d537fdb", + "start": { + "$date": "2020-12-24T00:26:47.000Z" + }, + "end": { + "$date": "2020-12-24T00:27:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7785e775-c524-42d1-ae44-0633cbfef43f", + "start": { + "$date": "2020-12-24T00:27:47.000Z" + }, + "end": { + "$date": "2020-12-24T01:17:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec9f8b59-6a87-44ce-bae6-f3d9b7529249", + "start": { + "$date": "2020-12-24T01:17:47.000Z" + }, + "end": { + "$date": "2020-12-24T01:35:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8eeddec7-2b53-4718-8573-7838bde01725", + "start": { + "$date": "2020-12-24T01:35:47.000Z" + }, + "end": { + "$date": "2020-12-24T01:36:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "49b0391e-0dc8-49a5-97c6-e5da575d3384", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-23T22:36:53.000Z" + }, + "end": { + "$date": "2020-12-24T03:10:03.000Z" + }, + "events": [ + { + "uuid": "cfec685f-ba05-40a6-b914-07ab67c6665e", + "start": { + "$date": "2020-12-23T22:36:53.000Z" + }, + "end": { + "$date": "2020-12-24T01:29:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a454d22b-0832-417c-91db-0daea2e58b6e", + "start": { + "$date": "2020-12-24T01:29:53.000Z" + }, + "end": { + "$date": "2020-12-24T01:34:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1e2a073-6537-450e-9c36-586f010aa93f", + "start": { + "$date": "2020-12-24T01:34:53.000Z" + }, + "end": { + "$date": "2020-12-24T01:44:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "298c3fae-4053-45ad-b81b-2ae385b6735e", + "start": { + "$date": "2020-12-24T01:44:53.000Z" + }, + "end": { + "$date": "2020-12-24T01:49:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a46b3931-428f-4c1f-8584-d25d2f517b05", + "start": { + "$date": "2020-12-24T01:49:53.000Z" + }, + "end": { + "$date": "2020-12-24T01:59:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4db7fa3f-2cf7-4286-b9d5-f46178be64c5", + "start": { + "$date": "2020-12-24T01:59:53.000Z" + }, + "end": { + "$date": "2020-12-24T02:03:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b2b81b3c-658c-44e3-a4de-e9d6ad4a9cdc", + "start": { + "$date": "2020-12-24T02:03:53.000Z" + }, + "end": { + "$date": "2020-12-24T02:13:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7545079d-d3a5-4587-a2ff-90a556e4bdee", + "start": { + "$date": "2020-12-24T02:13:53.000Z" + }, + "end": { + "$date": "2020-12-24T03:10:03.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "47e85575-3327-4101-b7a8-464ac155573e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-23T22:38:02.000Z" + }, + "end": { + "$date": "2020-12-24T01:23:45.000Z" + }, + "events": [ + { + "uuid": "16f3c875-7fc3-4384-858c-4741b8601e66", + "start": { + "$date": "2020-12-23T22:38:02.000Z" + }, + "end": { + "$date": "2020-12-24T01:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", + "uuid": "581fdcdf-35e2-4674-9e6f-10ee5a43b630", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-23T22:49:17.000Z" + }, + "end": { + "$date": "2020-12-23T23:27:00.000Z" + }, + "events": [ + { + "uuid": "ee08f1b3-515c-4c1d-969e-59c4b05d306f", + "start": { + "$date": "2020-12-23T22:49:17.000Z" + }, + "end": { + "$date": "2020-12-23T23:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "3bb547cf-1355-48d7-8cac-a1fbc9771604", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-23T23:27:25.000Z" + }, + "end": { + "$date": "2020-12-24T00:28:49.000Z" + }, + "events": [ + { + "uuid": "fa16f785-d68f-44a7-8b30-ac1a07ea92e3", + "start": { + "$date": "2020-12-23T23:27:25.000Z" + }, + "end": { + "$date": "2020-12-24T00:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "198335a1-a646-4790-8886-52b44eece440", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-23T23:57:07.000Z" + }, + "end": { + "$date": "2020-12-24T02:53:03.000Z" + }, + "events": [ + { + "uuid": "d95b2e29-296f-4b0e-955a-a09bfc8b5b60", + "start": { + "$date": "2020-12-23T23:57:07.000Z" + }, + "end": { + "$date": "2020-12-24T02:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "ef13a60e-904d-4de2-8e05-0c9029ce7987", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T00:30:08.000Z" + }, + "end": { + "$date": "2020-12-24T02:04:02.000Z" + }, + "events": [ + { + "uuid": "88e2dd6d-7fa0-4507-a159-2a11c72f65cd", + "start": { + "$date": "2020-12-24T00:30:08.000Z" + }, + "end": { + "$date": "2020-12-24T01:26:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc87fddc-fd94-4247-a4c4-baacc29a38ad", + "start": { + "$date": "2020-12-24T01:26:08.000Z" + }, + "end": { + "$date": "2020-12-24T01:58:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d5a87c27-50dc-4bd0-9230-16875c0783f2", + "start": { + "$date": "2020-12-24T01:58:08.000Z" + }, + "end": { + "$date": "2020-12-24T02:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1b91b36-edaa-4f0a-87ba-2cc3d787526b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T01:22:15.000Z" + }, + "end": { + "$date": "2020-12-24T01:38:27.000Z" + }, + "events": [ + { + "uuid": "7bf5a9a1-8855-4d56-b42a-f1ac4450249c", + "start": { + "$date": "2020-12-24T01:22:15.000Z" + }, + "end": { + "$date": "2020-12-24T01:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "851226dd-fb24-47b3-a8ec-79b2ce89d8e2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-24T01:15:33.000Z" + }, + "end": { + "$date": "2020-12-24T01:18:57.000Z" + }, + "events": [ + { + "uuid": "d3e3c1c9-8fb8-4c5b-9083-9a5e52b15c2e", + "start": { + "$date": "2020-12-24T01:15:33.000Z" + }, + "end": { + "$date": "2020-12-24T01:18:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f31e55b-acb5-4dc8-9730-91c7433b4892", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-24T01:22:23.000Z" + }, + "end": { + "$date": "2020-12-24T01:38:30.000Z" + }, + "events": [ + { + "uuid": "892659c9-5b63-4d10-8420-456b036e2db7", + "start": { + "$date": "2020-12-24T01:22:23.000Z" + }, + "end": { + "$date": "2020-12-24T01:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af7fb4be-1413-431d-8604-e2f8acadcdf2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T01:44:59.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:33.000Z" + }, + "events": [ + { + "uuid": "5a06f1d1-ef8d-45e1-bc4c-1f6e46128349", + "start": { + "$date": "2020-12-24T01:44:59.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16fdd0eb-dba4-4174-9dd6-fa8eb186f8ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T01:45:57.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:24.000Z" + }, + "events": [ + { + "uuid": "3877bc25-99b4-4d0c-b99e-71a014149e63", + "start": { + "$date": "2020-12-24T01:45:57.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4020f49f-44fb-456d-bb0e-ee1ab227c0d0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T01:44:53.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:30.000Z" + }, + "events": [ + { + "uuid": "289e6a54-de13-4e64-9668-54c1b7486edd", + "start": { + "$date": "2020-12-24T01:44:53.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0485829-6a09-4678-8508-8a3437ec6e37", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-24T02:17:22.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:33.000Z" + }, + "events": [ + { + "uuid": "8232cf97-584f-4dd6-b8a7-839d6c80a654", + "start": { + "$date": "2020-12-24T02:17:22.000Z" + }, + "end": { + "$date": "2020-12-24T02:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5f8a3f80-c495-40e5-a9fd-39c33b1d9410", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T01:47:52.000Z" + }, + "end": { + "$date": "2020-12-24T01:49:14.000Z" + }, + "events": [ + { + "uuid": "3cd9c208-ee87-4081-9f98-22870dad6726", + "start": { + "$date": "2020-12-24T01:47:52.000Z" + }, + "end": { + "$date": "2020-12-24T01:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b5ede275-617d-46f3-99de-296ca1c298fb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T02:17:35.000Z" + }, + "end": { + "$date": "2020-12-24T06:07:05.000Z" + }, + "events": [ + { + "uuid": "386a4b17-329b-49e9-9283-e76b149c969c", + "start": { + "$date": "2020-12-24T02:17:35.000Z" + }, + "end": { + "$date": "2020-12-24T06:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a672b45-aaf3-4679-9c9f-5d90bb5eccdb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T02:20:00.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:26.000Z" + }, + "events": [ + { + "uuid": "43c41476-0160-48a6-b760-b308b3bc6d82", + "start": { + "$date": "2020-12-24T02:20:00.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3688d3b0-65d2-47a8-b082-a4553830aff0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T02:20:57.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:19.000Z" + }, + "events": [ + { + "uuid": "efb31501-8c59-4445-b986-35356097fb19", + "start": { + "$date": "2020-12-24T02:20:57.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d0fa008-1634-4208-a9a8-70a13b55426f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-24T02:20:02.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:25.000Z" + }, + "events": [ + { + "uuid": "c9e8cb89-bb8b-4910-bcb2-c718e4be19d0", + "start": { + "$date": "2020-12-24T02:20:02.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33e42c61-16fa-4c59-908b-5424d15c29ca", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T02:19:55.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:26.000Z" + }, + "events": [ + { + "uuid": "1c143e54-0168-4dbd-abac-431c7f9b3aae", + "start": { + "$date": "2020-12-24T02:19:55.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba03fd7d-0933-4214-bed6-5470de4d431c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T02:19:57.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:17.000Z" + }, + "events": [ + { + "uuid": "d834cf0a-e85c-42da-9b78-06deb6cb09aa", + "start": { + "$date": "2020-12-24T02:19:57.000Z" + }, + "end": { + "$date": "2020-12-24T02:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b16cd38-d6fc-496f-9474-b68e9196c777", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T02:54:11.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:18.000Z" + }, + "events": [ + { + "uuid": "0297243c-a98a-4df2-a79b-0f84d1be25cf", + "start": { + "$date": "2020-12-24T02:54:11.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "224e61f1-dfd8-4a56-919c-2c0c270c1c56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T02:54:58.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:20.000Z" + }, + "events": [ + { + "uuid": "63615b5e-047c-4cde-aed4-0e01dbea39f1", + "start": { + "$date": "2020-12-24T02:54:58.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5b7f9f0-2d76-432b-83ac-4c690622d71d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T02:54:08.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:24.000Z" + }, + "events": [ + { + "uuid": "f1e95e84-36e4-41e1-9663-f3403064fd2d", + "start": { + "$date": "2020-12-24T02:54:08.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69d4b7dc-b39f-4f5a-be27-80d40f11670c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-24T02:54:14.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:27.000Z" + }, + "events": [ + { + "uuid": "10546718-d74a-429a-b0ae-49822ebc3d78", + "start": { + "$date": "2020-12-24T02:54:14.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b03f227-58df-4866-a807-a4f648f51cc6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T02:54:08.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:31.000Z" + }, + "events": [ + { + "uuid": "63f50007-ef48-4a26-a3f5-591075413264", + "start": { + "$date": "2020-12-24T02:54:08.000Z" + }, + "end": { + "$date": "2020-12-24T03:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6a034a2d-c204-439f-a161-47e2710800db", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-24T02:53:25.000Z" + }, + "end": { + "$date": "2020-12-24T04:59:33.000Z" + }, + "events": [ + { + "uuid": "b83d7153-4c27-4a2a-bf2c-1ec0d28df692", + "start": { + "$date": "2020-12-24T02:53:25.000Z" + }, + "end": { + "$date": "2020-12-24T04:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71029e4b-a959-4232-ba03-ce7660cb703a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T03:25:52.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:33.000Z" + }, + "events": [ + { + "uuid": "47b8dea5-707d-4015-ad3c-cee3d34a4bb1", + "start": { + "$date": "2020-12-24T03:25:52.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8408630b-139b-4eab-9c4c-c9671d6ca79f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T03:25:49.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:39.000Z" + }, + "events": [ + { + "uuid": "354725e4-0877-417a-9aa1-97dcd6a7b1a8", + "start": { + "$date": "2020-12-24T03:25:49.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1be6b4b6-e830-4a79-9b4c-0a092afdfe0a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T03:27:19.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:36.000Z" + }, + "events": [ + { + "uuid": "7634c165-ec2c-4c59-b09a-3699cc9cab6e", + "start": { + "$date": "2020-12-24T03:27:19.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f785604a-1c44-413b-96ea-77e7e38c1fcc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T03:25:50.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:44.000Z" + }, + "events": [ + { + "uuid": "15d2edb0-222f-46ee-a418-9fecd3ff6611", + "start": { + "$date": "2020-12-24T03:25:50.000Z" + }, + "end": { + "$date": "2020-12-24T03:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "94fb7a59-0633-4c56-a29a-378c42aa1343", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-24T03:43:05.000Z" + }, + "end": { + "$date": "2020-12-24T06:39:50.000Z" + }, + "events": [ + { + "uuid": "2c6e8a10-db83-40e6-846b-140b593f0996", + "start": { + "$date": "2020-12-24T03:43:05.000Z" + }, + "end": { + "$date": "2020-12-24T06:39:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a15e7316-32c8-413f-aa99-da3de8425d9e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T03:58:46.000Z" + }, + "end": { + "$date": "2020-12-24T04:34:20.000Z" + }, + "events": [ + { + "uuid": "c1e5b53b-7a2d-403b-91cb-60d98f410d8e", + "start": { + "$date": "2020-12-24T03:58:46.000Z" + }, + "end": { + "$date": "2020-12-24T04:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ae80e1c-d151-46a9-8983-022d9492c8fc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T04:32:56.000Z" + }, + "end": { + "$date": "2020-12-24T04:34:11.000Z" + }, + "events": [ + { + "uuid": "22d02e71-a193-4d63-beac-24c4724524e8", + "start": { + "$date": "2020-12-24T04:32:56.000Z" + }, + "end": { + "$date": "2020-12-24T04:34:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07148588-a278-4d06-8102-225dfee9e2db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T03:58:43.000Z" + }, + "end": { + "$date": "2020-12-24T04:34:21.000Z" + }, + "events": [ + { + "uuid": "6e2850f6-496f-49b8-b637-98424998d6cc", + "start": { + "$date": "2020-12-24T03:58:43.000Z" + }, + "end": { + "$date": "2020-12-24T04:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a93a3ea6-c287-43fe-a361-82908acb4e24", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-24T03:54:57.000Z" + }, + "end": { + "$date": "2020-12-24T05:10:14.000Z" + }, + "events": [ + { + "uuid": "2420fe6d-0ce5-4b7e-a011-89aafb2c7f7b", + "start": { + "$date": "2020-12-24T03:54:57.000Z" + }, + "end": { + "$date": "2020-12-24T05:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "690bc9cf-452d-4156-bca0-157f44e9648e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-24T04:32:11.000Z" + }, + "end": { + "$date": "2020-12-24T06:39:49.000Z" + }, + "events": [ + { + "uuid": "b81c1160-ce54-43e2-88ff-951a5de68f18", + "start": { + "$date": "2020-12-24T04:32:11.000Z" + }, + "end": { + "$date": "2020-12-24T06:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c03be711-23e8-45b2-83ca-4bdd5ddea6d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T04:40:47.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:04.000Z" + }, + "events": [ + { + "uuid": "70761017-a0d0-433d-be75-96eff548d33e", + "start": { + "$date": "2020-12-24T04:40:47.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd88fe35-8a0e-4583-be7d-12d2dc8d1990", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-24T04:37:12.000Z" + }, + "end": { + "$date": "2020-12-24T06:39:52.000Z" + }, + "events": [ + { + "uuid": "3b217081-44ad-44c3-86c4-05c5218d1430", + "start": { + "$date": "2020-12-24T04:37:12.000Z" + }, + "end": { + "$date": "2020-12-24T06:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25e0f548-dde9-4894-9211-e3b8ea73b530", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T04:41:06.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:02.000Z" + }, + "events": [ + { + "uuid": "56badba4-c8a0-47fe-a1bc-d25e28245c19", + "start": { + "$date": "2020-12-24T04:41:06.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11cc6616-02fa-40b9-bf01-bea44f6bb373", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T04:41:15.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:06.000Z" + }, + "events": [ + { + "uuid": "3b79c2ef-6837-4695-8157-c46239583024", + "start": { + "$date": "2020-12-24T04:41:15.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdc8d617-db1e-4071-be14-54b100825e9c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T04:40:46.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:12.000Z" + }, + "events": [ + { + "uuid": "7b2e7eb7-9581-4347-b039-598d4b4cd7ca", + "start": { + "$date": "2020-12-24T04:40:46.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd5b1a37-f2f7-4907-8b43-3d5fa01a11b2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-24T04:40:45.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:10.000Z" + }, + "events": [ + { + "uuid": "88488121-2f1a-48b2-9fd6-b440e1b40d3a", + "start": { + "$date": "2020-12-24T04:40:45.000Z" + }, + "end": { + "$date": "2020-12-24T04:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c80ed84-14a8-4de8-b484-56ff6370b6d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T05:01:39.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:05.000Z" + }, + "events": [ + { + "uuid": "2feae3d3-1d9b-47ef-93bf-bc6c1db6c568", + "start": { + "$date": "2020-12-24T05:01:39.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "827e89bc-52e6-480c-8fd2-9f8285836700", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T05:01:42.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:02.000Z" + }, + "events": [ + { + "uuid": "8dba5cf5-4513-4d65-8c7a-96397c647352", + "start": { + "$date": "2020-12-24T05:01:42.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94f120e3-4aa2-4f47-bd68-e531c2515524", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T05:02:01.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:01.000Z" + }, + "events": [ + { + "uuid": "936215e9-ce4e-4867-ba68-e4d708fb34f3", + "start": { + "$date": "2020-12-24T05:02:01.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1acec1cd-bf89-47f0-ad05-17f9ce73cc9d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-24T05:01:35.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:05.000Z" + }, + "events": [ + { + "uuid": "ba2faab7-fc7f-4d4b-8fd3-3434ef56b1f5", + "start": { + "$date": "2020-12-24T05:01:35.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a059a911-107d-4b07-a567-f3c56ea0a04f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T05:01:37.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:21.000Z" + }, + "events": [ + { + "uuid": "53cf6373-9ee1-472d-9353-bcf30a431441", + "start": { + "$date": "2020-12-24T05:01:37.000Z" + }, + "end": { + "$date": "2020-12-24T05:16:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86ededa2-b265-47ab-ba89-052c2ab0c48c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T05:17:46.000Z" + }, + "end": { + "$date": "2020-12-24T06:03:52.000Z" + }, + "events": [ + { + "uuid": "fa30cf4f-927d-4c83-a7c2-b73e07a7e9e0", + "start": { + "$date": "2020-12-24T05:17:46.000Z" + }, + "end": { + "$date": "2020-12-24T06:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ff5a59f0-88af-4546-8ceb-2dcdda3bf3b5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-24T05:18:32.000Z" + }, + "end": { + "$date": "2020-12-24T06:52:49.000Z" + }, + "events": [ + { + "uuid": "cae594cc-b885-4df4-9a02-87c7ed65f73b", + "start": { + "$date": "2020-12-24T05:18:32.000Z" + }, + "end": { + "$date": "2020-12-24T06:52:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "2571e2e0-593f-4375-8ab0-52dfbb0b3662", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-24T06:41:29.000Z" + }, + "end": { + "$date": "2020-12-24T08:39:16.000Z" + }, + "events": [ + { + "uuid": "06acea66-311a-4f69-a8f0-73e98999e383", + "start": { + "$date": "2020-12-24T06:41:29.000Z" + }, + "end": { + "$date": "2020-12-24T08:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3f09924a-44bd-4224-9ee0-a2757106e1db", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-24T06:52:54.000Z" + }, + "end": { + "$date": "2020-12-24T08:55:57.000Z" + }, + "events": [ + { + "uuid": "c0b14fa3-e2d1-4653-943a-15cd3ab0c731", + "start": { + "$date": "2020-12-24T06:52:54.000Z" + }, + "end": { + "$date": "2020-12-24T08:55:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ccb2df21-d8ec-4c39-9c1e-d2f20d53d3b3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-24T06:58:22.000Z" + }, + "end": { + "$date": "2020-12-24T08:56:44.000Z" + }, + "events": [ + { + "uuid": "cd7c752c-674e-4570-9a13-4195f9094aab", + "start": { + "$date": "2020-12-24T06:58:22.000Z" + }, + "end": { + "$date": "2020-12-24T08:56:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a28b2b20-92ae-4369-a40f-214b44aa487e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-24T07:14:16.000Z" + }, + "end": { + "$date": "2020-12-24T07:19:17.000Z" + }, + "events": [ + { + "uuid": "608953a6-3d56-403a-b284-f61d67a4063c", + "start": { + "$date": "2020-12-24T07:14:16.000Z" + }, + "end": { + "$date": "2020-12-24T07:19:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "ad3a0196-11b2-4a6b-86e4-51ee206a4e24", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T16:34:30.000Z" + }, + "end": { + "$date": "2020-12-24T17:00:17.000Z" + }, + "events": [ + { + "uuid": "ec04403d-e9bb-432a-a4f3-0b223d9114f0", + "start": { + "$date": "2020-12-24T16:34:30.000Z" + }, + "end": { + "$date": "2020-12-24T17:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec32f732-81d2-4737-9731-7d87edb23c7d", + "uuid": "076e4867-1e2b-4905-9f92-dc126d803330", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T17:11:35.000Z" + }, + "end": { + "$date": "2020-12-24T17:17:22.000Z" + }, + "events": [ + { + "uuid": "039dcccf-720e-418e-9e3a-fe0cd2a0afb2", + "start": { + "$date": "2020-12-24T17:11:35.000Z" + }, + "end": { + "$date": "2020-12-24T17:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "c542bd4f-caca-4393-8d76-1870ca6e2aaa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T17:11:43.000Z" + }, + "end": { + "$date": "2020-12-24T17:40:26.000Z" + }, + "events": [ + { + "uuid": "f918b2b0-2a83-4ba7-af80-56389b302258", + "start": { + "$date": "2020-12-24T17:11:43.000Z" + }, + "end": { + "$date": "2020-12-24T17:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8cb809c8-d147-44e8-8dfc-8ad82a9c00cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T17:12:11.000Z" + }, + "end": { + "$date": "2020-12-24T17:16:06.000Z" + }, + "events": [ + { + "uuid": "eeff1dcd-699e-4aab-8e0d-2171274f6daf", + "start": { + "$date": "2020-12-24T17:12:11.000Z" + }, + "end": { + "$date": "2020-12-24T17:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "456adc4a-463d-46f3-8760-f1bb8206b79d", + "uuid": "13ca1803-b55b-4a26-bc47-0f1af5dacff5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T17:55:57.000Z" + }, + "end": { + "$date": "2020-12-24T17:57:08.000Z" + }, + "events": [ + { + "uuid": "6b706a59-58ea-4540-b352-a1dcb2b6d16b", + "start": { + "$date": "2020-12-24T17:55:57.000Z" + }, + "end": { + "$date": "2020-12-24T17:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "03326c97-f359-4199-bbec-e838c965695c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T17:45:20.000Z" + }, + "end": { + "$date": "2020-12-24T17:46:56.000Z" + }, + "events": [ + { + "uuid": "007e5c8b-f114-40b1-835d-99332830bb71", + "start": { + "$date": "2020-12-24T17:45:20.000Z" + }, + "end": { + "$date": "2020-12-24T17:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e0550a18-d2f9-4797-ae5c-6c8cd7597abc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-24T18:08:19.000Z" + }, + "end": { + "$date": "2020-12-24T18:50:39.000Z" + }, + "events": [ + { + "uuid": "0db5c50e-4248-47a2-8108-da2546a3c0ab", + "start": { + "$date": "2020-12-24T18:08:19.000Z" + }, + "end": { + "$date": "2020-12-24T18:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f8f643b4-4f1d-453a-af3e-ce79a1528ffc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-24T19:30:20.000Z" + }, + "end": { + "$date": "2020-12-24T20:15:20.000Z" + }, + "events": [ + { + "uuid": "578b3b06-336b-440e-93d7-c4a261f65417", + "start": { + "$date": "2020-12-24T19:30:20.000Z" + }, + "end": { + "$date": "2020-12-24T20:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "70465861-7f73-4c5a-824b-be9ca64aad12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-24T19:53:35.000Z" + }, + "end": { + "$date": "2020-12-24T23:42:53.000Z" + }, + "events": [ + { + "uuid": "8e6abf57-10c1-4b92-b095-0abba85ca4a6", + "start": { + "$date": "2020-12-24T19:53:35.000Z" + }, + "end": { + "$date": "2020-12-24T23:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "69b2d648-afb3-4765-9fcd-e802e84623a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T20:16:00.000Z" + }, + "end": { + "$date": "2020-12-24T20:30:48.000Z" + }, + "events": [ + { + "uuid": "72436708-6e31-46d6-b7da-16ff1f72462b", + "start": { + "$date": "2020-12-24T20:16:00.000Z" + }, + "end": { + "$date": "2020-12-24T20:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6ad752d7-2dac-4e2c-836f-2a0395d5dd54", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-24T21:54:47.000Z" + }, + "end": { + "$date": "2020-12-24T23:04:16.000Z" + }, + "events": [ + { + "uuid": "e21134d4-9668-41a7-92b2-615f6bb346b3", + "start": { + "$date": "2020-12-24T21:54:47.000Z" + }, + "end": { + "$date": "2020-12-24T23:04:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5faccedb-a85a-4000-b979-a9eafca2b313", + "uuid": "af187108-e26b-4bd5-bd1e-a8d7da86c11e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T21:58:02.000Z" + }, + "end": { + "$date": "2020-12-24T22:12:49.000Z" + }, + "events": [ + { + "uuid": "7ceb8b25-5567-42cd-89f9-f5377b8344a8", + "start": { + "$date": "2020-12-24T21:58:02.000Z" + }, + "end": { + "$date": "2020-12-24T22:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60d3d51a-d645-4f66-a330-f5917ba15ec6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T22:15:14.000Z" + }, + "end": { + "$date": "2020-12-24T22:26:00.000Z" + }, + "events": [ + { + "uuid": "05e5eae0-2284-4a2d-b99c-f7b8a401d7f8", + "start": { + "$date": "2020-12-24T22:15:14.000Z" + }, + "end": { + "$date": "2020-12-24T22:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5faccedb-a85a-4000-b979-a9eafca2b313", + "uuid": "7bad7329-6f27-45dc-bd5e-5edcce9e957c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T22:12:53.000Z" + }, + "end": { + "$date": "2020-12-24T22:40:05.000Z" + }, + "events": [ + { + "uuid": "7704a66b-aa24-4d5b-967a-5d3385173424", + "start": { + "$date": "2020-12-24T22:12:53.000Z" + }, + "end": { + "$date": "2020-12-24T22:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78c50c6f-4367-4b58-a91f-007ac721d271", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T22:49:01.000Z" + }, + "end": { + "$date": "2020-12-24T22:49:11.000Z" + }, + "events": [ + { + "uuid": "081bc05d-d2bb-41e7-9f08-b74d331024fe", + "start": { + "$date": "2020-12-24T22:49:01.000Z" + }, + "end": { + "$date": "2020-12-24T22:49:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5afa654b-2d93-4c50-bed7-ad5870778386", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-24T22:37:47.000Z" + }, + "end": { + "$date": "2020-12-24T22:45:37.000Z" + }, + "events": [ + { + "uuid": "bac1e10a-60b2-4b9b-a3ca-4ba92e6f2502", + "start": { + "$date": "2020-12-24T22:37:47.000Z" + }, + "end": { + "$date": "2020-12-24T22:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6557624e-bc12-4a53-bb80-d21f247de926", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-24T23:54:25.000Z" + }, + "end": { + "$date": "2020-12-25T00:15:03.000Z" + }, + "events": [ + { + "uuid": "e1c7b8d2-1187-4099-97f5-d9b95394b357", + "start": { + "$date": "2020-12-24T23:54:25.000Z" + }, + "end": { + "$date": "2020-12-25T00:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d0ed882-1932-4124-9142-2b58934c2a5d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-24T22:51:25.000Z" + }, + "end": { + "$date": "2020-12-25T00:20:42.000Z" + }, + "events": [ + { + "uuid": "94d209bc-843c-4d7c-a64c-0cd79ff73f44", + "start": { + "$date": "2020-12-24T22:51:25.000Z" + }, + "end": { + "$date": "2020-12-25T00:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9b6c5ac-98ff-4341-8f46-7bb4beea8f9b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T23:01:58.000Z" + }, + "end": { + "$date": "2020-12-24T23:41:15.000Z" + }, + "events": [ + { + "uuid": "feb612a2-01fc-40a7-88bc-4115f1ac67c2", + "start": { + "$date": "2020-12-24T23:01:58.000Z" + }, + "end": { + "$date": "2020-12-24T23:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "b13b4ccc-3888-4838-9bf8-fce2b9962979", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-24T23:03:34.000Z" + }, + "end": { + "$date": "2020-12-24T23:13:03.000Z" + }, + "events": [ + { + "uuid": "cd91fa9e-1893-4610-9d45-55e59b574ab3", + "start": { + "$date": "2020-12-24T23:03:34.000Z" + }, + "end": { + "$date": "2020-12-24T23:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "88b44352-3869-4ba2-869b-c3d74781f1c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-24T23:13:19.000Z" + }, + "end": { + "$date": "2020-12-24T23:56:04.000Z" + }, + "events": [ + { + "uuid": "8568acd1-207d-4abd-890f-f110b43542f9", + "start": { + "$date": "2020-12-24T23:13:19.000Z" + }, + "end": { + "$date": "2020-12-24T23:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "89d33aa0-7bb2-4f02-8279-3349da319cc5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-24T23:40:49.000Z" + }, + "end": { + "$date": "2020-12-25T00:39:02.000Z" + }, + "events": [ + { + "uuid": "287867a1-579c-4844-96cc-2c627633a1fc", + "start": { + "$date": "2020-12-24T23:40:49.000Z" + }, + "end": { + "$date": "2020-12-25T00:39:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4155ccb8-0e30-476a-bdaf-57c5fe42c0c4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-24T23:43:33.000Z" + }, + "end": { + "$date": "2020-12-24T23:47:34.000Z" + }, + "events": [ + { + "uuid": "d36898ac-afca-42f1-8e09-05df6fb44eda", + "start": { + "$date": "2020-12-24T23:43:33.000Z" + }, + "end": { + "$date": "2020-12-24T23:47:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac6193b1-36de-4759-b14c-a5d13dcbe601", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T23:43:31.000Z" + }, + "end": { + "$date": "2020-12-24T23:47:35.000Z" + }, + "events": [ + { + "uuid": "05298a3b-188c-453b-aeb6-84d3d89f0cbd", + "start": { + "$date": "2020-12-24T23:43:31.000Z" + }, + "end": { + "$date": "2020-12-24T23:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2d4dde3-a9a8-48fb-8f15-4df6cd8ac2f8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-24T23:47:37.000Z" + }, + "end": { + "$date": "2020-12-24T23:50:36.000Z" + }, + "events": [ + { + "uuid": "b99b0532-1283-45f7-b19d-359f35b7df7b", + "start": { + "$date": "2020-12-24T23:47:37.000Z" + }, + "end": { + "$date": "2020-12-24T23:50:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9628982c-a7c0-4b70-979a-1ec379d2a4ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T23:47:36.000Z" + }, + "end": { + "$date": "2020-12-24T23:50:37.000Z" + }, + "events": [ + { + "uuid": "514e5d76-68e8-4bc5-b5e7-57d5c1fbe1a7", + "start": { + "$date": "2020-12-24T23:47:36.000Z" + }, + "end": { + "$date": "2020-12-24T23:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b818d822-8aea-4ce3-8791-2a2edba4d1a3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-24T23:50:49.000Z" + }, + "end": { + "$date": "2020-12-25T00:17:07.000Z" + }, + "events": [ + { + "uuid": "999ad784-6b01-462c-bbed-c51b40c22121", + "start": { + "$date": "2020-12-24T23:50:49.000Z" + }, + "end": { + "$date": "2020-12-25T00:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c68ac67-b060-4820-8d31-b3632c4a5bac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-24T23:54:25.000Z" + }, + "end": { + "$date": "2020-12-25T00:14:35.000Z" + }, + "events": [ + { + "uuid": "edc15f80-b3c6-4f57-bf4c-59435b43c69a", + "start": { + "$date": "2020-12-24T23:54:25.000Z" + }, + "end": { + "$date": "2020-12-25T00:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e91ace9a-7c91-4e59-85f0-30bde24ec6dc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T00:25:20.000Z" + }, + "end": { + "$date": "2020-12-25T01:11:38.000Z" + }, + "events": [ + { + "uuid": "856f6361-83fb-4a99-bcfc-f3ea8ee87cfc", + "start": { + "$date": "2020-12-25T00:25:20.000Z" + }, + "end": { + "$date": "2020-12-25T01:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "391c3c70-25d2-4474-b700-7965ef359d0a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T00:27:41.000Z" + }, + "end": { + "$date": "2020-12-25T01:11:35.000Z" + }, + "events": [ + { + "uuid": "e3eb9790-d4d2-4ddb-ad83-d4d1b09a4e1c", + "start": { + "$date": "2020-12-25T00:27:41.000Z" + }, + "end": { + "$date": "2020-12-25T01:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad982d82-db54-4210-abea-023ee00b1221", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T00:25:23.000Z" + }, + "end": { + "$date": "2020-12-25T01:11:29.000Z" + }, + "events": [ + { + "uuid": "7d2864a3-006d-46da-9958-aa9889d5846f", + "start": { + "$date": "2020-12-25T00:25:23.000Z" + }, + "end": { + "$date": "2020-12-25T01:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2bce932-ff7a-4c22-84d7-59c279a3f280", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T01:13:09.000Z" + }, + "end": { + "$date": "2020-12-25T06:26:17.000Z" + }, + "events": [ + { + "uuid": "5cecfb37-faa3-4c0b-8391-c61dfb7232c1", + "start": { + "$date": "2020-12-25T01:13:09.000Z" + }, + "end": { + "$date": "2020-12-25T01:28:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b747cef-74f9-4fb9-9b33-5dd4ab3d69b4", + "start": { + "$date": "2020-12-25T01:28:09.000Z" + }, + "end": { + "$date": "2020-12-25T01:29:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "182a34c8-3d8d-4d99-b16b-4d59f774955c", + "start": { + "$date": "2020-12-25T01:29:09.000Z" + }, + "end": { + "$date": "2020-12-25T03:04:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "daaa199a-3b19-4c30-80e6-1213b9509cc5", + "start": { + "$date": "2020-12-25T03:04:09.000Z" + }, + "end": { + "$date": "2020-12-25T03:09:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9273f654-5776-40bd-b26d-982b0819ebe2", + "start": { + "$date": "2020-12-25T03:09:09.000Z" + }, + "end": { + "$date": "2020-12-25T03:11:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6925665e-696d-4a4d-81a8-1f81ef11c893", + "start": { + "$date": "2020-12-25T03:11:09.000Z" + }, + "end": { + "$date": "2020-12-25T03:17:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0cd6a011-2c01-4029-88e1-b9cea2c18116", + "start": { + "$date": "2020-12-25T03:17:09.000Z" + }, + "end": { + "$date": "2020-12-25T03:19:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1f2b609-0955-439a-a89c-e04242e18602", + "start": { + "$date": "2020-12-25T03:19:09.000Z" + }, + "end": { + "$date": "2020-12-25T03:31:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce533c78-8f01-4ea5-bcba-03ea8b54a204", + "start": { + "$date": "2020-12-25T03:31:09.000Z" + }, + "end": { + "$date": "2020-12-25T06:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "300fb854-5a22-4e60-a6db-c0bee8fb66d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T01:41:20.000Z" + }, + "end": { + "$date": "2020-12-25T01:53:55.000Z" + }, + "events": [ + { + "uuid": "cde5a21b-2a04-4970-b121-e9560c1c9546", + "start": { + "$date": "2020-12-25T01:41:20.000Z" + }, + "end": { + "$date": "2020-12-25T01:54:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c460982c-5aec-421b-b61a-402194d6ccdf", + "start": { + "$date": "2020-12-25T01:54:20.000Z" + }, + "end": { + "$date": "2020-12-25T02:02:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "68ada4ea-3df3-4a64-b3a3-de094ad92726", + "start": { + "$date": "2020-12-25T02:02:20.000Z" + }, + "end": { + "$date": "2020-12-25T01:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2c2f33eb-6ff7-44a7-8cd1-ab366884025a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-25T01:33:44.000Z" + }, + "end": { + "$date": "2020-12-25T03:06:37.000Z" + }, + "events": [ + { + "uuid": "a6145371-35e8-4028-a01f-c381adf4b1af", + "start": { + "$date": "2020-12-25T01:33:44.000Z" + }, + "end": { + "$date": "2020-12-25T03:06:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "5862d5ac-83a7-44c6-8e9e-271b7525be19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T02:02:57.000Z" + }, + "end": { + "$date": "2020-12-25T02:46:19.000Z" + }, + "events": [ + { + "uuid": "2c83c9c9-275b-45e8-af84-41702f9ea67e", + "start": { + "$date": "2020-12-25T02:02:57.000Z" + }, + "end": { + "$date": "2020-12-25T02:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "80e9994f-f32b-43f9-9206-23b87a0ddb7c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T02:33:37.000Z" + }, + "end": { + "$date": "2020-12-25T03:32:26.000Z" + }, + "events": [ + { + "uuid": "efa15716-2c51-487f-b513-d5e0f477a389", + "start": { + "$date": "2020-12-25T02:33:37.000Z" + }, + "end": { + "$date": "2020-12-25T03:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3b97f444-6b26-49f2-8dfc-94ca91481e06", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-25T03:29:56.000Z" + }, + "end": { + "$date": "2020-12-25T05:17:35.000Z" + }, + "events": [ + { + "uuid": "56721eb1-7c57-4f86-9115-7f34cb60296b", + "start": { + "$date": "2020-12-25T03:29:56.000Z" + }, + "end": { + "$date": "2020-12-25T05:17:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "49cb410f-6bfd-4a10-8504-3dc940081777", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-25T03:31:03.000Z" + }, + "end": { + "$date": "2020-12-25T03:32:09.000Z" + }, + "events": [ + { + "uuid": "3e47835c-28a2-4acf-8dad-49bd731efdee", + "start": { + "$date": "2020-12-25T03:31:03.000Z" + }, + "end": { + "$date": "2020-12-25T03:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "216b1842-7f1c-4359-b5ac-c997c0e44e9d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-25T03:57:29.000Z" + }, + "end": { + "$date": "2020-12-25T05:50:11.000Z" + }, + "events": [ + { + "uuid": "642b905f-acfa-468d-8d14-07daaf13494b", + "start": { + "$date": "2020-12-25T03:57:29.000Z" + }, + "end": { + "$date": "2020-12-25T05:50:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0067416d-a0b4-4c4b-8d16-d2141dabb90b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T04:41:20.000Z" + }, + "end": { + "$date": "2020-12-25T05:26:08.000Z" + }, + "events": [ + { + "uuid": "9ef1f5bc-01bf-424a-84d5-21c58146a538", + "start": { + "$date": "2020-12-25T04:41:20.000Z" + }, + "end": { + "$date": "2020-12-25T05:26:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "88cf2a82-9221-4513-a814-98494a34f50d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T05:04:13.000Z" + }, + "end": { + "$date": "2020-12-25T05:36:47.000Z" + }, + "events": [ + { + "uuid": "fdd159d3-2ead-48ba-a0f5-33fe850b4e59", + "start": { + "$date": "2020-12-25T05:04:13.000Z" + }, + "end": { + "$date": "2020-12-25T05:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e89b05f1-79d6-4e7c-9c60-86f4899fe22f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T05:07:00.000Z" + }, + "end": { + "$date": "2020-12-25T05:16:25.000Z" + }, + "events": [ + { + "uuid": "4ffb8eeb-fca0-4be8-a6dc-203bd1a620b6", + "start": { + "$date": "2020-12-25T05:07:00.000Z" + }, + "end": { + "$date": "2020-12-25T05:16:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7ef4da13-6778-4914-93b6-a7306992d3fd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T05:17:17.000Z" + }, + "end": { + "$date": "2020-12-25T05:44:33.000Z" + }, + "events": [ + { + "uuid": "cce9b29e-c20d-4873-bd74-8a4c69d3c6d8", + "start": { + "$date": "2020-12-25T05:17:17.000Z" + }, + "end": { + "$date": "2020-12-25T05:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "27dda5a4-d444-43bc-abc4-7393f3756cf4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-25T05:42:22.000Z" + }, + "end": { + "$date": "2020-12-25T05:42:26.000Z" + }, + "events": [ + { + "uuid": "fc14535d-46df-4876-9d0f-23ade1aa8730", + "start": { + "$date": "2020-12-25T05:42:22.000Z" + }, + "end": { + "$date": "2020-12-25T05:42:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "03334098-a9fb-441e-9884-5400537fa0ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T05:37:29.000Z" + }, + "end": { + "$date": "2020-12-25T05:41:48.000Z" + }, + "events": [ + { + "uuid": "1b6a3bff-a68f-47e2-bdda-f654cbd2b4e8", + "start": { + "$date": "2020-12-25T05:37:29.000Z" + }, + "end": { + "$date": "2020-12-25T05:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e31508c9-4329-4fbf-9f84-dfecf67e7f09", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T05:41:54.000Z" + }, + "end": { + "$date": "2020-12-25T05:45:08.000Z" + }, + "events": [ + { + "uuid": "948e370d-36fc-4936-b7ea-8aa08e43893a", + "start": { + "$date": "2020-12-25T05:41:54.000Z" + }, + "end": { + "$date": "2020-12-25T05:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36e9ccfe-c34d-4a0d-bbfa-62c271a4654a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T06:03:05.000Z" + }, + "end": { + "$date": "2020-12-25T06:03:04.000Z" + }, + "events": [ + { + "uuid": "b36c4195-596c-4053-89ad-931e713fcf64", + "start": { + "$date": "2020-12-25T06:03:05.000Z" + }, + "end": { + "$date": "2020-12-25T06:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0475657f-83d4-4d59-8f31-376a3753f8ac", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T05:48:38.000Z" + }, + "end": { + "$date": "2020-12-25T06:02:58.000Z" + }, + "events": [ + { + "uuid": "fb7e6865-0048-4567-9d13-0b3fa397cca8", + "start": { + "$date": "2020-12-25T05:48:38.000Z" + }, + "end": { + "$date": "2020-12-25T06:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3181c2c3-8d91-429e-8744-71acfb705e80", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-25T06:31:43.000Z" + }, + "end": { + "$date": "2020-12-25T08:21:49.000Z" + }, + "events": [ + { + "uuid": "ab7b177a-32e6-4312-b482-a6dc3f0e59ac", + "start": { + "$date": "2020-12-25T06:31:43.000Z" + }, + "end": { + "$date": "2020-12-25T08:21:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "e323bc18-a3a7-4d03-a7d7-80373248aa65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-25T06:22:59.000Z" + }, + "end": { + "$date": "2020-12-25T06:23:18.000Z" + }, + "events": [ + { + "uuid": "93e4747c-a60e-4441-b1bc-67219ef94ee7", + "start": { + "$date": "2020-12-25T06:22:59.000Z" + }, + "end": { + "$date": "2020-12-25T06:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8c74c58-d61f-4245-8eae-83aab75f4e20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T06:25:07.000Z" + }, + "end": { + "$date": "2020-12-25T06:25:35.000Z" + }, + "events": [ + { + "uuid": "c3968e16-ac3e-44ef-9384-a8a6076e3529", + "start": { + "$date": "2020-12-25T06:25:07.000Z" + }, + "end": { + "$date": "2020-12-25T06:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79403741-fb34-4108-b44c-3c8d65f644ea", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T06:03:43.000Z" + }, + "end": { + "$date": "2020-12-25T06:06:18.000Z" + }, + "events": [ + { + "uuid": "fa705d87-e0fd-4210-8d85-9a45e87b48d5", + "start": { + "$date": "2020-12-25T06:03:43.000Z" + }, + "end": { + "$date": "2020-12-25T06:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36122e04-60d1-4763-8bc7-ac5ab7b35c4c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T06:09:34.000Z" + }, + "end": { + "$date": "2020-12-25T06:25:14.000Z" + }, + "events": [ + { + "uuid": "0cf5e7b9-c6be-4c3e-9597-dc6e824110a3", + "start": { + "$date": "2020-12-25T06:09:34.000Z" + }, + "end": { + "$date": "2020-12-25T06:25:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31a9eb3f-b25e-4e2a-b8c7-a0ec798da722", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T06:33:07.000Z" + }, + "end": { + "$date": "2020-12-25T06:52:27.000Z" + }, + "events": [ + { + "uuid": "887e4848-eb46-4eab-a2ed-ffa18c51aa1b", + "start": { + "$date": "2020-12-25T06:33:07.000Z" + }, + "end": { + "$date": "2020-12-25T06:52:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acfafd0c-d190-428c-a462-a89fda69c26b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T06:32:59.000Z" + }, + "end": { + "$date": "2020-12-25T06:52:34.000Z" + }, + "events": [ + { + "uuid": "9bea91ab-21ec-4b12-a66c-9b41291e3942", + "start": { + "$date": "2020-12-25T06:32:59.000Z" + }, + "end": { + "$date": "2020-12-25T06:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5682226e-4192-40a0-b97f-5496d5d59143", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T06:32:35.000Z" + }, + "end": { + "$date": "2020-12-25T06:52:33.000Z" + }, + "events": [ + { + "uuid": "833ccdac-421b-4639-8651-c875af0b0a66", + "start": { + "$date": "2020-12-25T06:32:35.000Z" + }, + "end": { + "$date": "2020-12-25T06:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bbf9e52-dbe8-4f32-947f-8f04c08f5d2b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T06:57:28.000Z" + }, + "end": { + "$date": "2020-12-25T07:11:27.000Z" + }, + "events": [ + { + "uuid": "314307bd-105a-415f-81d2-231987d91ae2", + "start": { + "$date": "2020-12-25T06:57:28.000Z" + }, + "end": { + "$date": "2020-12-25T07:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf8eb44b-47a8-434a-9d25-0d77c061caae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T06:57:28.000Z" + }, + "end": { + "$date": "2020-12-25T07:11:26.000Z" + }, + "events": [ + { + "uuid": "6adeeaa6-ef3f-4630-b03d-c7748e07b303", + "start": { + "$date": "2020-12-25T06:57:28.000Z" + }, + "end": { + "$date": "2020-12-25T07:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43bc59c7-71c5-4b90-aa63-be37f036b229", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-25T06:57:25.000Z" + }, + "end": { + "$date": "2020-12-25T07:11:25.000Z" + }, + "events": [ + { + "uuid": "c1f9cc7e-971d-4c16-82c1-707dee3ff33c", + "start": { + "$date": "2020-12-25T06:57:25.000Z" + }, + "end": { + "$date": "2020-12-25T07:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09a4e574-4875-4edc-afb6-21d1de9f43c7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T07:16:55.000Z" + }, + "end": { + "$date": "2020-12-25T07:39:52.000Z" + }, + "events": [ + { + "uuid": "33eff005-5f2b-4fc7-8193-8a689f4b2eec", + "start": { + "$date": "2020-12-25T07:16:55.000Z" + }, + "end": { + "$date": "2020-12-25T07:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b632e2c-262a-41c0-8dca-133024311078", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T07:17:00.000Z" + }, + "end": { + "$date": "2020-12-25T07:39:29.000Z" + }, + "events": [ + { + "uuid": "45fb14a4-3228-417e-8d24-6de23f86858b", + "start": { + "$date": "2020-12-25T07:17:00.000Z" + }, + "end": { + "$date": "2020-12-25T07:39:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "78656f35-065b-4d87-a6c8-90aa894d419a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-25T09:59:48.000Z" + }, + "end": { + "$date": "2020-12-25T11:18:39.000Z" + }, + "events": [ + { + "uuid": "4f84199d-8fd7-45d9-b254-dd00d2031d4f", + "start": { + "$date": "2020-12-25T09:59:48.000Z" + }, + "end": { + "$date": "2020-12-25T11:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7f9a9b6c-8b6b-4913-9674-65eeaa534d1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T16:11:47.000Z" + }, + "end": { + "$date": "2020-12-25T17:02:01.000Z" + }, + "events": [ + { + "uuid": "8600c71b-505f-4e9c-b909-b3a3ac807b07", + "start": { + "$date": "2020-12-25T16:11:47.000Z" + }, + "end": { + "$date": "2020-12-25T17:02:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c07039e-f3d6-4f7f-a916-49135d859bb9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-25T16:18:48.000Z" + }, + "end": { + "$date": "2020-12-25T17:58:28.000Z" + }, + "events": [ + { + "uuid": "f65743a7-ea10-46cc-aa25-fe962875f27e", + "start": { + "$date": "2020-12-25T16:18:48.000Z" + }, + "end": { + "$date": "2020-12-25T17:58:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46dca249-f274-4b5a-b569-56bcea32e815", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T17:10:30.000Z" + }, + "end": { + "$date": "2020-12-25T17:37:57.000Z" + }, + "events": [ + { + "uuid": "810d8596-c55a-463e-81df-e3251ea738eb", + "start": { + "$date": "2020-12-25T17:10:30.000Z" + }, + "end": { + "$date": "2020-12-25T17:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c23d64d6-f1a6-4df0-beb4-d1331d56bef3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T17:03:30.000Z" + }, + "end": { + "$date": "2020-12-25T17:04:33.000Z" + }, + "events": [ + { + "uuid": "00dbb615-c8ad-4ecc-a5fe-2d3fe6c7470a", + "start": { + "$date": "2020-12-25T17:03:30.000Z" + }, + "end": { + "$date": "2020-12-25T17:04:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5354cfc-e796-4420-997c-6e33f7e10a9d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T17:10:27.000Z" + }, + "end": { + "$date": "2020-12-25T17:38:04.000Z" + }, + "events": [ + { + "uuid": "4349838f-67bf-4786-8003-7eb9d6c403cb", + "start": { + "$date": "2020-12-25T17:10:27.000Z" + }, + "end": { + "$date": "2020-12-25T17:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1519bec-10fc-4561-a2ff-6539f5ff5bcb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-25T17:37:27.000Z" + }, + "end": { + "$date": "2020-12-25T18:02:45.000Z" + }, + "events": [ + { + "uuid": "d8b500f2-4c5e-4dcb-8580-33aff2c62272", + "start": { + "$date": "2020-12-25T17:37:27.000Z" + }, + "end": { + "$date": "2020-12-25T18:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "423ce9bc-a6a8-40c6-bdd8-2333bd9b4cb9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T17:38:29.000Z" + }, + "end": { + "$date": "2020-12-25T17:49:07.000Z" + }, + "events": [ + { + "uuid": "8a519304-ebb7-49ab-9045-5dbbd48e7005", + "start": { + "$date": "2020-12-25T17:38:29.000Z" + }, + "end": { + "$date": "2020-12-25T17:49:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b102dd4-0d72-4a2e-ab4e-e838c948242a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T17:59:34.000Z" + }, + "end": { + "$date": "2020-12-25T18:14:00.000Z" + }, + "events": [ + { + "uuid": "feb49012-d530-4a31-88bb-c1641828fb9d", + "start": { + "$date": "2020-12-25T17:59:34.000Z" + }, + "end": { + "$date": "2020-12-25T18:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc6b5036-137c-4d47-8644-39bb6e37042d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T17:58:55.000Z" + }, + "end": { + "$date": "2020-12-25T18:13:56.000Z" + }, + "events": [ + { + "uuid": "539eef72-01f8-4959-b34b-a7fc799fc4b9", + "start": { + "$date": "2020-12-25T17:58:55.000Z" + }, + "end": { + "$date": "2020-12-25T18:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf1bbd67-4ce7-4a4b-86d0-aac105815d33", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T17:58:55.000Z" + }, + "end": { + "$date": "2020-12-25T18:13:52.000Z" + }, + "events": [ + { + "uuid": "788fbbdb-2f88-464b-83cf-05e7cb9776b7", + "start": { + "$date": "2020-12-25T17:58:55.000Z" + }, + "end": { + "$date": "2020-12-25T18:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c34834c-f748-44ba-bae2-e9b248fdfc67", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T18:21:05.000Z" + }, + "end": { + "$date": "2020-12-25T18:36:11.000Z" + }, + "events": [ + { + "uuid": "f0e5ea96-a28d-42a2-9a8c-00cc7304d367", + "start": { + "$date": "2020-12-25T18:21:05.000Z" + }, + "end": { + "$date": "2020-12-25T18:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dac23ec3-a0db-4913-a8a5-8d9f5dcccb1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T18:19:31.000Z" + }, + "end": { + "$date": "2020-12-25T18:36:12.000Z" + }, + "events": [ + { + "uuid": "08f7b1f2-9cd6-4a6e-b02b-7689282b4b54", + "start": { + "$date": "2020-12-25T18:19:31.000Z" + }, + "end": { + "$date": "2020-12-25T18:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fff83fd-9c9c-48c4-8564-427a0727bdd4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T18:19:37.000Z" + }, + "end": { + "$date": "2020-12-25T18:36:18.000Z" + }, + "events": [ + { + "uuid": "4908ff35-2592-43d6-b3e6-e55a18e3eb5f", + "start": { + "$date": "2020-12-25T18:19:37.000Z" + }, + "end": { + "$date": "2020-12-25T18:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff9c3239-86bc-43ec-b304-89f3f2caace6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T18:37:02.000Z" + }, + "end": { + "$date": "2020-12-25T18:39:18.000Z" + }, + "events": [ + { + "uuid": "1125988a-dcd2-4e42-ae46-5debbe9e5d22", + "start": { + "$date": "2020-12-25T18:37:02.000Z" + }, + "end": { + "$date": "2020-12-25T18:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "620794a5-f694-470a-bf56-d74f6698ab6d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T18:41:19.000Z" + }, + "end": { + "$date": "2020-12-25T18:43:32.000Z" + }, + "events": [ + { + "uuid": "5f1e0b5b-4769-44d2-ae57-120eeb8d8d92", + "start": { + "$date": "2020-12-25T18:41:19.000Z" + }, + "end": { + "$date": "2020-12-25T18:43:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "80c51af6-0974-4f4b-be75-2c7e0331be98", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T18:39:32.000Z" + }, + "end": { + "$date": "2020-12-25T19:44:04.000Z" + }, + "events": [ + { + "uuid": "c98d3316-0c85-443c-bb66-d89997e62d80", + "start": { + "$date": "2020-12-25T18:39:32.000Z" + }, + "end": { + "$date": "2020-12-25T19:44:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91853ea8-afd5-42fc-9b26-fb1bed457fcc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T18:40:43.000Z" + }, + "end": { + "$date": "2020-12-25T20:12:24.000Z" + }, + "events": [ + { + "uuid": "aee777fe-88c5-42a4-84d7-191263407889", + "start": { + "$date": "2020-12-25T18:40:43.000Z" + }, + "end": { + "$date": "2020-12-25T20:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4108217f-2346-428c-9ff4-a0e85f024d50", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-25T19:12:29.000Z" + }, + "end": { + "$date": "2020-12-25T19:40:11.000Z" + }, + "events": [ + { + "uuid": "605ad40b-c7f0-4643-bac4-522ed5d33b66", + "start": { + "$date": "2020-12-25T19:12:29.000Z" + }, + "end": { + "$date": "2020-12-25T19:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a6015e0d-9e7c-440a-be3b-2b07fc090e71", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-25T19:40:31.000Z" + }, + "end": { + "$date": "2020-12-25T21:27:22.000Z" + }, + "events": [ + { + "uuid": "5024ac67-efe1-4ab5-95c3-96c6b362f145", + "start": { + "$date": "2020-12-25T19:40:31.000Z" + }, + "end": { + "$date": "2020-12-25T19:52:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bbe62239-29ff-43e1-a962-e6e60178e343", + "start": { + "$date": "2020-12-25T19:52:31.000Z" + }, + "end": { + "$date": "2020-12-25T19:57:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0a92977a-a754-45d1-aba6-803f832ef48a", + "start": { + "$date": "2020-12-25T19:57:31.000Z" + }, + "end": { + "$date": "2020-12-25T20:13:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1eeaa5ff-eef9-4f88-86dd-3bbb4c1b6491", + "start": { + "$date": "2020-12-25T20:13:31.000Z" + }, + "end": { + "$date": "2020-12-25T21:27:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6878a354-eee0-4775-ac64-bcde5b2ffdf4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-25T19:49:32.000Z" + }, + "end": { + "$date": "2020-12-25T22:12:08.000Z" + }, + "events": [ + { + "uuid": "0980c542-1f33-4004-8119-e5d49c3d107a", + "start": { + "$date": "2020-12-25T19:49:32.000Z" + }, + "end": { + "$date": "2020-12-25T22:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "45a79d64-d3b1-4283-b0ea-c81de7f962f9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-25T19:55:52.000Z" + }, + "end": { + "$date": "2020-12-26T00:20:05.000Z" + }, + "events": [ + { + "uuid": "8ac3cebe-1b9b-42de-81cb-e518086d9569", + "start": { + "$date": "2020-12-25T19:55:52.000Z" + }, + "end": { + "$date": "2020-12-26T00:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "467fda02-41fb-4fa4-baee-0ef233ec72ef", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T20:15:38.000Z" + }, + "end": { + "$date": "2020-12-25T21:33:54.000Z" + }, + "events": [ + { + "uuid": "13796d0b-6efd-4516-8c3f-2849b508699f", + "start": { + "$date": "2020-12-25T20:15:38.000Z" + }, + "end": { + "$date": "2020-12-25T21:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd57e6f1-dd9c-4db2-ae5e-c798695f1124", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T21:40:12.000Z" + }, + "end": { + "$date": "2020-12-25T21:53:03.000Z" + }, + "events": [ + { + "uuid": "8ef6e081-3734-4046-8c55-6baa4a509dd2", + "start": { + "$date": "2020-12-25T21:40:12.000Z" + }, + "end": { + "$date": "2020-12-25T21:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c15e8b1f-a91b-4c48-a551-0cbef11ca84e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T21:40:04.000Z" + }, + "end": { + "$date": "2020-12-25T21:53:05.000Z" + }, + "events": [ + { + "uuid": "c6dc6164-780e-4674-86bd-a47505f09e27", + "start": { + "$date": "2020-12-25T21:40:04.000Z" + }, + "end": { + "$date": "2020-12-25T21:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "270d698f-5567-4939-ae75-2420491f34df", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T21:43:58.000Z" + }, + "end": { + "$date": "2020-12-25T22:55:32.000Z" + }, + "events": [ + { + "uuid": "1643906f-75be-4aef-ae72-403ec81049f3", + "start": { + "$date": "2020-12-25T21:43:58.000Z" + }, + "end": { + "$date": "2020-12-25T22:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "919a0618-b0ba-4ccb-b967-66f7e39197eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T21:58:33.000Z" + }, + "end": { + "$date": "2020-12-25T22:14:14.000Z" + }, + "events": [ + { + "uuid": "71f6422d-90e9-4c34-807d-7554ac1ffca5", + "start": { + "$date": "2020-12-25T21:58:33.000Z" + }, + "end": { + "$date": "2020-12-25T22:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31cd07df-30c1-4923-8958-575da07e1ff7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T21:58:30.000Z" + }, + "end": { + "$date": "2020-12-25T22:14:37.000Z" + }, + "events": [ + { + "uuid": "55841abf-13f2-4e22-8eb7-0ea843d993dc", + "start": { + "$date": "2020-12-25T21:58:30.000Z" + }, + "end": { + "$date": "2020-12-25T22:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27c45b62-eb76-4de8-b5e4-886d4af0389f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T22:19:00.000Z" + }, + "end": { + "$date": "2020-12-25T22:34:01.000Z" + }, + "events": [ + { + "uuid": "d93611a0-e510-4493-ba24-cf720dc45a36", + "start": { + "$date": "2020-12-25T22:19:00.000Z" + }, + "end": { + "$date": "2020-12-25T22:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d15372c-9c28-407a-a161-3d490a06776c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T22:18:51.000Z" + }, + "end": { + "$date": "2020-12-25T22:34:23.000Z" + }, + "events": [ + { + "uuid": "a1b354ee-cd47-4ff5-bca7-dbc4575f1bf4", + "start": { + "$date": "2020-12-25T22:18:51.000Z" + }, + "end": { + "$date": "2020-12-25T22:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "186858b7-5843-4257-8241-1be93771f622", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T22:38:07.000Z" + }, + "end": { + "$date": "2020-12-25T22:49:08.000Z" + }, + "events": [ + { + "uuid": "0f08c8c6-55a1-432f-a237-22cef3d5cb22", + "start": { + "$date": "2020-12-25T22:38:07.000Z" + }, + "end": { + "$date": "2020-12-25T22:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91d47130-a485-45f8-8503-0e093c5a355c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T22:37:57.000Z" + }, + "end": { + "$date": "2020-12-25T22:49:14.000Z" + }, + "events": [ + { + "uuid": "34737f62-313b-4cd9-855d-9dd87f63a079", + "start": { + "$date": "2020-12-25T22:37:57.000Z" + }, + "end": { + "$date": "2020-12-25T22:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "5c65ac87-5016-4060-abd7-88c40dd6b6a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T22:35:10.000Z" + }, + "end": { + "$date": "2020-12-25T23:26:11.000Z" + }, + "events": [ + { + "uuid": "8efbbe73-af2f-4110-a5b9-c0f9c9da8aa1", + "start": { + "$date": "2020-12-25T22:35:10.000Z" + }, + "end": { + "$date": "2020-12-25T23:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ff26b378-8e29-44f5-a450-0b8215b20f02", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-25T22:39:44.000Z" + }, + "end": { + "$date": "2020-12-25T22:50:37.000Z" + }, + "events": [ + { + "uuid": "1d0e856c-56d6-4fdf-8522-8245744d0742", + "start": { + "$date": "2020-12-25T22:39:44.000Z" + }, + "end": { + "$date": "2020-12-25T22:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00015957-098f-486d-8f83-11dcbb712b4d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T22:59:45.000Z" + }, + "end": { + "$date": "2020-12-25T23:13:15.000Z" + }, + "events": [ + { + "uuid": "21916937-0d2b-4433-ab78-1137b7b177db", + "start": { + "$date": "2020-12-25T22:59:45.000Z" + }, + "end": { + "$date": "2020-12-25T23:13:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f2d9f83-1115-4677-a80a-c671ae137018", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T22:59:38.000Z" + }, + "end": { + "$date": "2020-12-25T23:13:03.000Z" + }, + "events": [ + { + "uuid": "7b251e1c-1ac5-4b16-9c52-d9a674695c9a", + "start": { + "$date": "2020-12-25T22:59:38.000Z" + }, + "end": { + "$date": "2020-12-25T23:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a6f2031-36e9-4d64-9717-7564b51ce8e5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-25T22:59:40.000Z" + }, + "end": { + "$date": "2020-12-25T23:13:30.000Z" + }, + "events": [ + { + "uuid": "b8ba2454-e089-4c6c-bfc3-844980d45888", + "start": { + "$date": "2020-12-25T22:59:40.000Z" + }, + "end": { + "$date": "2020-12-25T23:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cd42bbb4-2359-44df-883b-e09a7d8db40d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-25T23:06:54.000Z" + }, + "end": { + "$date": "2020-12-26T01:39:27.000Z" + }, + "events": [ + { + "uuid": "383de649-6e5d-4771-9732-b60a01b66f2f", + "start": { + "$date": "2020-12-25T23:06:54.000Z" + }, + "end": { + "$date": "2020-12-26T01:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dda33b8-856c-427f-9463-4e0de0db95e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-25T23:50:10.000Z" + }, + "end": { + "$date": "2020-12-26T00:02:51.000Z" + }, + "events": [ + { + "uuid": "3f2e969d-55a8-4a0c-a194-9796c3f60541", + "start": { + "$date": "2020-12-25T23:50:10.000Z" + }, + "end": { + "$date": "2020-12-26T00:01:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9aa1030e-407b-4ddf-8818-527e5445c03e", + "start": { + "$date": "2020-12-26T00:01:10.000Z" + }, + "end": { + "$date": "2020-12-26T00:11:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e561486-6beb-4e7b-b350-a4a670c7690d", + "start": { + "$date": "2020-12-26T00:11:10.000Z" + }, + "end": { + "$date": "2020-12-26T00:15:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51153175-e3c6-4c60-bd4d-07328bd3c79b", + "start": { + "$date": "2020-12-26T00:15:10.000Z" + }, + "end": { + "$date": "2020-12-26T00:17:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e77a0cda-a2f1-4bcb-9baa-42d46767dbf1", + "start": { + "$date": "2020-12-26T00:17:10.000Z" + }, + "end": { + "$date": "2020-12-26T00:02:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7efb8dbb-1d60-4ae3-9ae8-8a422bd38e74", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-25T23:14:04.000Z" + }, + "end": { + "$date": "2020-12-25T23:57:04.000Z" + }, + "events": [ + { + "uuid": "6f902038-1f90-40ad-b98f-8dde873aabc6", + "start": { + "$date": "2020-12-25T23:14:04.000Z" + }, + "end": { + "$date": "2020-12-25T23:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b2d26125-0eb4-4704-b60a-c29ddbb75578", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-25T23:41:37.000Z" + }, + "end": { + "$date": "2020-12-26T00:16:48.000Z" + }, + "events": [ + { + "uuid": "55023ba8-ea8e-4914-892e-fd445e769202", + "start": { + "$date": "2020-12-25T23:41:37.000Z" + }, + "end": { + "$date": "2020-12-26T00:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebaf01b9-7173-48a2-8dfb-6a39e9ecc024", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T00:19:45.000Z" + }, + "end": { + "$date": "2020-12-26T00:32:02.000Z" + }, + "events": [ + { + "uuid": "b9427b10-0a9a-4f1a-9c88-49e16ff40290", + "start": { + "$date": "2020-12-26T00:19:45.000Z" + }, + "end": { + "$date": "2020-12-26T00:32:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9e3d08f-b701-4721-bc4b-338da3d12465", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T00:20:33.000Z" + }, + "end": { + "$date": "2020-12-26T00:31:53.000Z" + }, + "events": [ + { + "uuid": "3e4c0d6e-cbfd-40ba-bd26-b5b832052eaf", + "start": { + "$date": "2020-12-26T00:20:33.000Z" + }, + "end": { + "$date": "2020-12-26T00:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc326875-a427-46ad-afc9-e230a9a8e3fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T00:19:35.000Z" + }, + "end": { + "$date": "2020-12-26T00:32:05.000Z" + }, + "events": [ + { + "uuid": "67c0dc0d-08a8-46d0-8f9c-b49ae929933f", + "start": { + "$date": "2020-12-26T00:19:35.000Z" + }, + "end": { + "$date": "2020-12-26T00:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39a05851-67c5-4ea5-b1a2-c37cc3cbee72", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T00:42:43.000Z" + }, + "end": { + "$date": "2020-12-26T01:05:28.000Z" + }, + "events": [ + { + "uuid": "d9837bd0-c865-400e-ae7f-ba6bb7421b55", + "start": { + "$date": "2020-12-26T00:42:43.000Z" + }, + "end": { + "$date": "2020-12-26T01:05:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5444c7cb-7f65-4add-88c1-6085b4d45466", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T00:42:40.000Z" + }, + "end": { + "$date": "2020-12-26T01:05:20.000Z" + }, + "events": [ + { + "uuid": "4db9970d-0451-4f8a-8e23-86f74d56b355", + "start": { + "$date": "2020-12-26T00:42:40.000Z" + }, + "end": { + "$date": "2020-12-26T01:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c6886b3-22ce-4ce0-8197-212aba884c5f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T00:42:38.000Z" + }, + "end": { + "$date": "2020-12-26T01:05:29.000Z" + }, + "events": [ + { + "uuid": "2ed5e663-3274-4cc6-80f5-6baff6aa0f22", + "start": { + "$date": "2020-12-26T00:42:38.000Z" + }, + "end": { + "$date": "2020-12-26T01:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00fa2cb9-e62e-4f60-92af-da089cba603a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T01:10:34.000Z" + }, + "end": { + "$date": "2020-12-26T01:28:06.000Z" + }, + "events": [ + { + "uuid": "145306b3-2b03-47ef-8fb3-ed01716ef986", + "start": { + "$date": "2020-12-26T01:10:34.000Z" + }, + "end": { + "$date": "2020-12-26T01:28:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa2216e2-1a6a-48c1-a6b0-0660715c146b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T01:11:05.000Z" + }, + "end": { + "$date": "2020-12-26T01:27:55.000Z" + }, + "events": [ + { + "uuid": "9be263cd-a44f-4658-82d5-cd2fc826234e", + "start": { + "$date": "2020-12-26T01:11:05.000Z" + }, + "end": { + "$date": "2020-12-26T01:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dba0efe3-2580-4a2c-b089-bef364ab98fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T01:10:25.000Z" + }, + "end": { + "$date": "2020-12-26T01:28:08.000Z" + }, + "events": [ + { + "uuid": "5985046b-1570-4f2f-8c5b-c9fac818352c", + "start": { + "$date": "2020-12-26T01:10:25.000Z" + }, + "end": { + "$date": "2020-12-26T01:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "648b1308-aa49-4e0b-81cc-4d1df5223a16", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T01:11:37.000Z" + }, + "end": { + "$date": "2020-12-26T01:27:58.000Z" + }, + "events": [ + { + "uuid": "757ca40b-9526-49eb-a3a3-5a9ab5fa9c99", + "start": { + "$date": "2020-12-26T01:11:37.000Z" + }, + "end": { + "$date": "2020-12-26T01:27:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7312b873-e2a8-4618-aa18-d82c2fcca0ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T02:32:38.000Z" + }, + "end": { + "$date": "2020-12-26T02:47:28.000Z" + }, + "events": [ + { + "uuid": "f53cad23-4eb3-4f13-ac12-0a124b62fdb5", + "start": { + "$date": "2020-12-26T02:32:38.000Z" + }, + "end": { + "$date": "2020-12-26T02:50:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09b53719-01c5-424a-90e0-607fb2916f9d", + "start": { + "$date": "2020-12-26T02:50:38.000Z" + }, + "end": { + "$date": "2020-12-26T03:21:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54b0f3dd-2f38-480f-a81a-f2c7aca5b345", + "start": { + "$date": "2020-12-26T03:21:38.000Z" + }, + "end": { + "$date": "2020-12-26T02:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7f4bf761-8446-47d2-8c1a-3c7f08128890", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T01:30:18.000Z" + }, + "end": { + "$date": "2020-12-26T01:48:14.000Z" + }, + "events": [ + { + "uuid": "ac117337-faf8-4426-8617-8cac01b580fe", + "start": { + "$date": "2020-12-26T01:30:18.000Z" + }, + "end": { + "$date": "2020-12-26T01:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "a37f2ab7-565d-4e02-94e8-1ccbec318bd3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T02:34:50.000Z" + }, + "end": { + "$date": "2020-12-26T03:51:33.000Z" + }, + "events": [ + { + "uuid": "efb62e53-c455-4627-b9e0-b4da42ff46f8", + "start": { + "$date": "2020-12-26T02:34:50.000Z" + }, + "end": { + "$date": "2020-12-26T03:51:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "297ae679-a6c7-415d-abc3-0f5f7bd51c5e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T02:52:18.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:28.000Z" + }, + "events": [ + { + "uuid": "1ecb103e-a4d8-4ebf-82e5-f661688f971c", + "start": { + "$date": "2020-12-26T02:52:18.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c76facd-d02b-4982-ab92-6c101e2cbc4a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T02:53:23.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:29.000Z" + }, + "events": [ + { + "uuid": "2694f359-5827-44b6-85e3-3c3996bee675", + "start": { + "$date": "2020-12-26T02:53:23.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3f0a927-90fc-42ff-80e7-8ba550c26ebf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T02:52:18.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:59.000Z" + }, + "events": [ + { + "uuid": "da331c02-9d79-48bb-a656-d74a3371d652", + "start": { + "$date": "2020-12-26T02:52:18.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d3c53ef-7e95-4c6c-9878-2b8c4a856db3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T02:52:19.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:35.000Z" + }, + "events": [ + { + "uuid": "838b8abf-0948-472a-a243-1c1a14ccf468", + "start": { + "$date": "2020-12-26T02:52:19.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbff9369-940d-4887-b335-aaf8ba89d65c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-26T02:52:15.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:30.000Z" + }, + "events": [ + { + "uuid": "64b14da2-4715-4970-a0b3-9d34b9a573c3", + "start": { + "$date": "2020-12-26T02:52:15.000Z" + }, + "end": { + "$date": "2020-12-26T03:10:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "384499e1-6071-4da5-86ee-94ffaf56ea1c", + "uuid": "7be149e3-7d7b-4a92-ae0f-024372c572d7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-26T02:56:21.000Z" + }, + "end": { + "$date": "2020-12-26T02:59:06.000Z" + }, + "events": [ + { + "uuid": "b7d9ce4e-125a-45d6-99d6-7221389ce217", + "start": { + "$date": "2020-12-26T02:56:21.000Z" + }, + "end": { + "$date": "2020-12-26T02:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38277ac7-86fc-4a33-8d10-305c26989035", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T03:14:14.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:39.000Z" + }, + "events": [ + { + "uuid": "9fd82ff2-befb-4813-9efc-623f1a680274", + "start": { + "$date": "2020-12-26T03:14:14.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe80845b-a8fa-46af-aec4-528d0735dd96", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T03:14:15.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:42.000Z" + }, + "events": [ + { + "uuid": "96b16bba-441b-4ee2-a69c-66aab3300210", + "start": { + "$date": "2020-12-26T03:14:15.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0ac73ba-ad95-44d1-b611-ecb9b394d58e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T03:14:16.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:48.000Z" + }, + "events": [ + { + "uuid": "15ab16d9-144c-4767-9a7e-373188fe64b0", + "start": { + "$date": "2020-12-26T03:14:16.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ffed06d-6eb6-4064-8939-70a174991145", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T03:14:14.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:40.000Z" + }, + "events": [ + { + "uuid": "a7e87be0-a8d1-4ca6-80f9-92d2cf8583f7", + "start": { + "$date": "2020-12-26T03:14:14.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ce67f87-b8cf-41e4-b3aa-570422b08f68", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-26T03:14:35.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:46.000Z" + }, + "events": [ + { + "uuid": "0fcde972-b499-46ad-a7b7-5d98867c988a", + "start": { + "$date": "2020-12-26T03:14:35.000Z" + }, + "end": { + "$date": "2020-12-26T03:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "538b546c-c004-46c9-b11a-6aeb6a0eff88", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T03:32:55.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:10.000Z" + }, + "events": [ + { + "uuid": "79318707-efd5-4bc0-9500-10f853a107fd", + "start": { + "$date": "2020-12-26T03:32:55.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44ffc6a5-18a9-49c1-bd05-fb278e21bef6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T03:32:09.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:10.000Z" + }, + "events": [ + { + "uuid": "217a376e-efc3-4af2-9b2c-742e08a33ca7", + "start": { + "$date": "2020-12-26T03:32:09.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4bdde35a-e796-4784-95ff-042d7eda87e6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T03:32:07.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:26.000Z" + }, + "events": [ + { + "uuid": "343b2af2-f93f-460f-89e1-c527bca18ee7", + "start": { + "$date": "2020-12-26T03:32:07.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a464a03-b091-45c4-b5ed-63bdaa76f08e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T03:32:08.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:18.000Z" + }, + "events": [ + { + "uuid": "a4cc6185-930b-432c-b4d1-5bfa39831c27", + "start": { + "$date": "2020-12-26T03:32:08.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e581dfc1-94e2-45bd-9c55-9e95c2497518", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-26T03:32:06.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:11.000Z" + }, + "events": [ + { + "uuid": "a19e1dd5-40f2-4b2a-b5ea-bd3dce472a69", + "start": { + "$date": "2020-12-26T03:32:06.000Z" + }, + "end": { + "$date": "2020-12-26T03:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c979daf-598e-4956-bd12-a8aa30c74fd0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T03:49:01.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:05.000Z" + }, + "events": [ + { + "uuid": "e3c1e3d8-6e4c-4ceb-9795-b80f9d4471cc", + "start": { + "$date": "2020-12-26T03:49:01.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94075fba-2666-491c-9880-e6cb0d87e290", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T03:48:59.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:13.000Z" + }, + "events": [ + { + "uuid": "ad636ffe-019c-46e7-9f4b-3c2dfd1ecfd0", + "start": { + "$date": "2020-12-26T03:48:59.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71b69237-c85b-4362-89c5-c71dd51ec88d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T03:49:40.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:06.000Z" + }, + "events": [ + { + "uuid": "c46780a2-6a64-4e8c-a0b0-aa34bbd5147d", + "start": { + "$date": "2020-12-26T03:49:40.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2efbcd6-f88c-4760-a72a-6531ae4a2a03", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T03:48:59.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:14.000Z" + }, + "events": [ + { + "uuid": "ed75c343-4f02-4598-8b5f-7d0dc33d5ca6", + "start": { + "$date": "2020-12-26T03:48:59.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f941fec-a5cc-4f00-a1ac-6eb958a9bb1f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-26T03:48:57.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:12.000Z" + }, + "events": [ + { + "uuid": "b204e92d-0535-48df-9a65-7b1ecb5e00c7", + "start": { + "$date": "2020-12-26T03:48:57.000Z" + }, + "end": { + "$date": "2020-12-26T04:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "fad7cc8e-401f-48bd-8fff-c6a14c530434", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T03:52:27.000Z" + }, + "end": { + "$date": "2020-12-26T03:53:38.000Z" + }, + "events": [ + { + "uuid": "628888ee-03bf-45dd-b422-4557e3c2b4f1", + "start": { + "$date": "2020-12-26T03:52:27.000Z" + }, + "end": { + "$date": "2020-12-26T03:53:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "3dd85a22-9a34-4112-ab52-f73de19124b1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T03:54:02.000Z" + }, + "end": { + "$date": "2020-12-26T06:04:07.000Z" + }, + "events": [ + { + "uuid": "38e42bfa-06ae-47d9-aea1-135596afd1d5", + "start": { + "$date": "2020-12-26T03:54:02.000Z" + }, + "end": { + "$date": "2020-12-26T06:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "48e78874-68f3-499c-910f-2d61fd7a9d4d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T04:04:56.000Z" + }, + "end": { + "$date": "2020-12-26T07:38:48.000Z" + }, + "events": [ + { + "uuid": "92123079-fd89-4398-97d0-ff3d5503abac", + "start": { + "$date": "2020-12-26T04:04:56.000Z" + }, + "end": { + "$date": "2020-12-26T07:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "a755bcb1-eaf0-439e-be79-c0fab2742b5e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-26T04:05:02.000Z" + }, + "end": { + "$date": "2020-12-26T07:37:48.000Z" + }, + "events": [ + { + "uuid": "bdc4b4ba-b6e4-4e73-b692-14b67f4e7322", + "start": { + "$date": "2020-12-26T04:05:02.000Z" + }, + "end": { + "$date": "2020-12-26T07:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "e51845a8-09ff-4e9f-b99a-635c19fe9819", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T04:05:21.000Z" + }, + "end": { + "$date": "2020-12-26T07:41:53.000Z" + }, + "events": [ + { + "uuid": "170db16e-0bc2-4b16-be14-16823c56a812", + "start": { + "$date": "2020-12-26T04:05:21.000Z" + }, + "end": { + "$date": "2020-12-26T07:41:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "54a84fbc-fc30-434b-bbe2-1147d24a9e38", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T04:07:15.000Z" + }, + "end": { + "$date": "2020-12-26T05:14:23.000Z" + }, + "events": [ + { + "uuid": "5b6b4379-72a2-4673-999e-226a9ccd0255", + "start": { + "$date": "2020-12-26T04:07:15.000Z" + }, + "end": { + "$date": "2020-12-26T05:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "78881baa-a300-4a44-92bc-8a3a318c2a57", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-26T04:09:11.000Z" + }, + "end": { + "$date": "2020-12-26T05:44:36.000Z" + }, + "events": [ + { + "uuid": "f91b02b8-d7f6-49e6-8f69-8deeb3400054", + "start": { + "$date": "2020-12-26T04:09:11.000Z" + }, + "end": { + "$date": "2020-12-26T05:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "a47bae8c-5591-4851-804a-5105eb79276f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-26T05:39:16.000Z" + }, + "end": { + "$date": "2020-12-26T07:38:57.000Z" + }, + "events": [ + { + "uuid": "caf48868-66d6-4e14-bbd9-8d637cef6a07", + "start": { + "$date": "2020-12-26T05:39:16.000Z" + }, + "end": { + "$date": "2020-12-26T07:38:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "a2fc905c-1abd-4c7e-bf96-25b0d2bb91d8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-26T05:44:45.000Z" + }, + "end": { + "$date": "2020-12-26T07:38:25.000Z" + }, + "events": [ + { + "uuid": "91dec86a-2c47-4784-9551-d1bdba4e7047", + "start": { + "$date": "2020-12-26T05:44:45.000Z" + }, + "end": { + "$date": "2020-12-26T07:38:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ceeb5bef-5093-420e-a66d-38887e3dbd5a", + "uuid": "3c048a6c-f470-4e66-aa30-6b28537468a6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-26T05:47:03.000Z" + }, + "end": { + "$date": "2020-12-26T06:45:53.000Z" + }, + "events": [ + { + "uuid": "d3f9edb7-9b9e-4a84-875a-b784ac8aae4c", + "start": { + "$date": "2020-12-26T05:47:03.000Z" + }, + "end": { + "$date": "2020-12-26T06:45:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "631752c2-ab4d-4df9-8085-bca7113acf07", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T06:04:35.000Z" + }, + "end": { + "$date": "2020-12-26T06:44:17.000Z" + }, + "events": [ + { + "uuid": "e784a03b-9059-4a86-818e-9af4ca0fa286", + "start": { + "$date": "2020-12-26T06:04:35.000Z" + }, + "end": { + "$date": "2020-12-26T06:44:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7651ee98-cc14-47d7-ada9-d84f4da27328", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-26T06:00:33.000Z" + }, + "end": { + "$date": "2020-12-26T07:40:03.000Z" + }, + "events": [ + { + "uuid": "1e1ddfbd-1f39-4f72-9609-4dc14b20118d", + "start": { + "$date": "2020-12-26T06:00:33.000Z" + }, + "end": { + "$date": "2020-12-26T07:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd5b1d4e-4091-4267-9637-6ae3583f1560", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T07:04:14.000Z" + }, + "end": { + "$date": "2020-12-26T07:29:29.000Z" + }, + "events": [ + { + "uuid": "d8810114-b729-4927-9266-fd4b78419560", + "start": { + "$date": "2020-12-26T07:04:14.000Z" + }, + "end": { + "$date": "2020-12-26T07:17:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df4d08f8-08ca-44cc-9270-92a98a82561a", + "start": { + "$date": "2020-12-26T07:17:14.000Z" + }, + "end": { + "$date": "2020-12-26T07:19:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "81eac80a-3192-43cf-9611-93727a0335dd", + "start": { + "$date": "2020-12-26T07:19:14.000Z" + }, + "end": { + "$date": "2020-12-26T07:29:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ada56241-e448-4eeb-9cda-82b77cb8485b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T08:06:52.000Z" + }, + "end": { + "$date": "2020-12-26T08:06:52.000Z" + }, + "events": [ + { + "uuid": "13ea5497-2cd9-4bfa-b67c-a54d427c9697", + "start": { + "$date": "2020-12-26T08:06:52.000Z" + }, + "end": { + "$date": "2020-12-26T08:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "c3d8874d-7fff-4d66-bf4d-d0af21a617b0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-26T08:20:17.000Z" + }, + "end": { + "$date": "2020-12-26T13:48:57.000Z" + }, + "events": [ + { + "uuid": "47f7a80f-7c47-46b9-931b-8cbe6acab011", + "start": { + "$date": "2020-12-26T08:20:17.000Z" + }, + "end": { + "$date": "2020-12-26T13:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee82600c-3c63-41ea-b046-39b7f992f494", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T15:29:42.000Z" + }, + "end": { + "$date": "2020-12-26T16:14:26.000Z" + }, + "events": [ + { + "uuid": "1bfaaf10-6e54-4edd-b55e-bf459ff8e06a", + "start": { + "$date": "2020-12-26T15:29:42.000Z" + }, + "end": { + "$date": "2020-12-26T16:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ceeb5bef-5093-420e-a66d-38887e3dbd5a", + "uuid": "dad9dbd5-66c9-4f8e-96df-39abbd8e3239", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-26T16:11:27.000Z" + }, + "end": { + "$date": "2020-12-26T17:09:57.000Z" + }, + "events": [ + { + "uuid": "dc3a356e-7bfa-421c-bb0a-5bb33cff952b", + "start": { + "$date": "2020-12-26T16:11:27.000Z" + }, + "end": { + "$date": "2020-12-26T17:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "f786bc44-3311-4fa7-aa40-669735510532", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T16:50:12.000Z" + }, + "end": { + "$date": "2020-12-26T17:57:42.000Z" + }, + "events": [ + { + "uuid": "b49b9dfb-e326-4eaf-8ee7-e488722d4090", + "start": { + "$date": "2020-12-26T16:50:12.000Z" + }, + "end": { + "$date": "2020-12-26T17:55:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b774ed44-68ca-432d-9280-dfd2b2038dcc", + "start": { + "$date": "2020-12-26T17:55:12.000Z" + }, + "end": { + "$date": "2020-12-26T17:57:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8b6875f3-c326-4738-8d0b-6b3f366a97d0", + "uuid": "54a45dbe-8530-4e40-a566-36778863c634", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T17:03:19.000Z" + }, + "end": { + "$date": "2020-12-26T17:49:33.000Z" + }, + "events": [ + { + "uuid": "81977f8e-13dd-4c10-9a5b-9321b0a3747d", + "start": { + "$date": "2020-12-26T17:03:19.000Z" + }, + "end": { + "$date": "2020-12-26T17:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cba24caa-d70d-4089-81fe-e70bc6cc8646", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T18:03:08.000Z" + }, + "end": { + "$date": "2020-12-26T19:54:05.000Z" + }, + "events": [ + { + "uuid": "4b454861-7c8c-4160-9c03-b87c0fc603ab", + "start": { + "$date": "2020-12-26T18:03:08.000Z" + }, + "end": { + "$date": "2020-12-26T19:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8cfc43c1-15ca-427d-b6db-edfcaadd9573", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-26T18:08:28.000Z" + }, + "end": { + "$date": "2020-12-26T19:54:00.000Z" + }, + "events": [ + { + "uuid": "ba0176a3-be47-4aac-88d1-c01103cfd116", + "start": { + "$date": "2020-12-26T18:08:28.000Z" + }, + "end": { + "$date": "2020-12-26T19:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "854fbe2d-1519-474e-a304-2aed6f78b36b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-26T18:50:41.000Z" + }, + "end": { + "$date": "2020-12-26T19:44:26.000Z" + }, + "events": [ + { + "uuid": "2f4e7d19-eb99-4782-8404-9013f00d7242", + "start": { + "$date": "2020-12-26T18:50:41.000Z" + }, + "end": { + "$date": "2020-12-26T19:30:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe46f4c1-8ad1-4e9f-b007-9afbf2fb33c3", + "start": { + "$date": "2020-12-26T19:30:41.000Z" + }, + "end": { + "$date": "2020-12-26T19:35:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "30a5ae19-a107-42d5-9d2a-a7d1ebd17f33", + "start": { + "$date": "2020-12-26T19:35:41.000Z" + }, + "end": { + "$date": "2020-12-26T19:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "79595ce3-17b6-4a09-87fb-61feb4d16540", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-26T19:57:46.000Z" + }, + "end": { + "$date": "2020-12-26T20:58:50.000Z" + }, + "events": [ + { + "uuid": "b4d12e62-f94f-4e6a-b5fb-8a5331b3b47a", + "start": { + "$date": "2020-12-26T19:57:46.000Z" + }, + "end": { + "$date": "2020-12-26T20:38:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37f23620-0be8-4180-aa55-a5192ca92fdb", + "start": { + "$date": "2020-12-26T20:38:46.000Z" + }, + "end": { + "$date": "2020-12-26T20:43:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "08b59578-8a2f-4410-b40e-3358910b70d2", + "start": { + "$date": "2020-12-26T20:43:46.000Z" + }, + "end": { + "$date": "2020-12-26T20:53:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4e59b1e2-9303-4bf0-a75d-748ef5c106c0", + "start": { + "$date": "2020-12-26T20:53:46.000Z" + }, + "end": { + "$date": "2020-12-26T20:56:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b507bc5-9250-4c5d-bb74-3d5b94ff8ac6", + "start": { + "$date": "2020-12-26T20:56:46.000Z" + }, + "end": { + "$date": "2020-12-26T20:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e4d3f33-1fb2-4796-8175-a236a8be8e19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T21:00:03.000Z" + }, + "end": { + "$date": "2020-12-26T21:24:01.000Z" + }, + "events": [ + { + "uuid": "901c4360-df28-4869-b867-5e72a1aad1c6", + "start": { + "$date": "2020-12-26T21:00:03.000Z" + }, + "end": { + "$date": "2020-12-26T21:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01c3911e-0bd2-437b-be7f-fa26dd136c1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T20:49:07.000Z" + }, + "end": { + "$date": "2020-12-26T20:49:12.000Z" + }, + "events": [ + { + "uuid": "20fbb6e0-14da-418a-b2bf-a3bd7e4adc43", + "start": { + "$date": "2020-12-26T20:49:07.000Z" + }, + "end": { + "$date": "2020-12-26T20:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c49a4e3-954b-449b-bd8a-3dc760eb585d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T20:55:18.000Z" + }, + "end": { + "$date": "2020-12-26T20:55:34.000Z" + }, + "events": [ + { + "uuid": "69c469c2-d568-45ab-9bf4-fc2de527f593", + "start": { + "$date": "2020-12-26T20:55:18.000Z" + }, + "end": { + "$date": "2020-12-26T20:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55db0993-e988-458d-bc11-2b69c52beabd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T21:03:40.000Z" + }, + "end": { + "$date": "2020-12-26T21:23:55.000Z" + }, + "events": [ + { + "uuid": "3974678e-e4fa-4585-89a3-b3f7fcf99e81", + "start": { + "$date": "2020-12-26T21:03:40.000Z" + }, + "end": { + "$date": "2020-12-26T21:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d037f753-fdb5-4074-a139-346f5fc38034", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T20:51:47.000Z" + }, + "end": { + "$date": "2020-12-26T21:47:45.000Z" + }, + "events": [ + { + "uuid": "00bcb345-6133-4cc9-890a-de668b744863", + "start": { + "$date": "2020-12-26T20:51:47.000Z" + }, + "end": { + "$date": "2020-12-26T21:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e4097f6-ae45-4fc1-8400-85847a416043", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T21:00:02.000Z" + }, + "end": { + "$date": "2020-12-26T21:23:53.000Z" + }, + "events": [ + { + "uuid": "1561dd1c-af1e-4f5b-a108-02217249a1a3", + "start": { + "$date": "2020-12-26T21:00:02.000Z" + }, + "end": { + "$date": "2020-12-26T21:23:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9edbd724-e423-45d1-9a37-56fa6683b675", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T21:27:30.000Z" + }, + "end": { + "$date": "2020-12-26T22:05:05.000Z" + }, + "events": [ + { + "uuid": "ae5b3025-29eb-4111-b4de-0732a5b9b79c", + "start": { + "$date": "2020-12-26T21:27:30.000Z" + }, + "end": { + "$date": "2020-12-26T22:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87cc3c9b-18b1-4c84-aa99-ba9e26068468", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T22:01:08.000Z" + }, + "end": { + "$date": "2020-12-26T22:05:06.000Z" + }, + "events": [ + { + "uuid": "26b6b991-4fcc-4b93-b007-e5b5bbb97a32", + "start": { + "$date": "2020-12-26T22:01:08.000Z" + }, + "end": { + "$date": "2020-12-26T22:05:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6b75113-1218-4a31-9b03-5330e6ef3824", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T21:27:26.000Z" + }, + "end": { + "$date": "2020-12-26T22:04:56.000Z" + }, + "events": [ + { + "uuid": "19861556-87aa-479e-8da2-a1e686a22aa5", + "start": { + "$date": "2020-12-26T21:27:26.000Z" + }, + "end": { + "$date": "2020-12-26T22:04:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3a4b5a7e-1d11-4c4d-9e48-a85c01a8874e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-26T21:42:28.000Z" + }, + "end": { + "$date": "2020-12-27T00:13:04.000Z" + }, + "events": [ + { + "uuid": "5fcb1fc1-8eac-4c21-ace3-3f0a7c2abe3a", + "start": { + "$date": "2020-12-26T21:42:28.000Z" + }, + "end": { + "$date": "2020-12-27T00:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a66d16d-5926-4744-85df-f9609d96d058", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T22:14:46.000Z" + }, + "end": { + "$date": "2020-12-26T22:49:39.000Z" + }, + "events": [ + { + "uuid": "83871c65-4d9d-4bb6-8f82-2de64ef183fc", + "start": { + "$date": "2020-12-26T22:14:46.000Z" + }, + "end": { + "$date": "2020-12-26T22:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd749f8b-aef4-4653-83be-47a45522638b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T22:14:43.000Z" + }, + "end": { + "$date": "2020-12-26T22:49:33.000Z" + }, + "events": [ + { + "uuid": "e312e469-78a4-4913-b4cc-b67c52239c7f", + "start": { + "$date": "2020-12-26T22:14:43.000Z" + }, + "end": { + "$date": "2020-12-26T22:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bcbccfc-1329-43ef-8ce0-c97b77106dc2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T22:14:45.000Z" + }, + "end": { + "$date": "2020-12-26T22:49:41.000Z" + }, + "events": [ + { + "uuid": "b0c1c2a3-9649-4f52-9247-3b9b7341d529", + "start": { + "$date": "2020-12-26T22:14:45.000Z" + }, + "end": { + "$date": "2020-12-26T22:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "e9f2cf08-6c81-4ebf-9051-ec12900934dd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-26T22:22:14.000Z" + }, + "end": { + "$date": "2020-12-26T23:14:55.000Z" + }, + "events": [ + { + "uuid": "45f47a62-f123-423f-8105-c6cfb60dc339", + "start": { + "$date": "2020-12-26T22:22:14.000Z" + }, + "end": { + "$date": "2020-12-26T23:14:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "305a1fe8-e3ad-4390-8f63-af02584e49d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T22:57:29.000Z" + }, + "end": { + "$date": "2020-12-26T23:45:58.000Z" + }, + "events": [ + { + "uuid": "96fd731e-703a-4526-95f1-11cbe9de53a9", + "start": { + "$date": "2020-12-26T22:57:29.000Z" + }, + "end": { + "$date": "2020-12-26T23:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a58e9f5f-3de6-42c5-835e-254b708d4a92", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T22:57:29.000Z" + }, + "end": { + "$date": "2020-12-26T23:45:54.000Z" + }, + "events": [ + { + "uuid": "3dbfb9dc-e723-4e72-b420-2930ec422e4d", + "start": { + "$date": "2020-12-26T22:57:29.000Z" + }, + "end": { + "$date": "2020-12-26T23:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c0577e0-7c29-4414-8798-ed935dade166", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T22:57:26.000Z" + }, + "end": { + "$date": "2020-12-26T23:45:49.000Z" + }, + "events": [ + { + "uuid": "74f45e82-c9be-4702-80c1-be1fafbedabd", + "start": { + "$date": "2020-12-26T22:57:26.000Z" + }, + "end": { + "$date": "2020-12-26T23:45:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "801ee48b-aa1c-4b85-b28a-6d72c9bcefc5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-26T23:36:39.000Z" + }, + "end": { + "$date": "2020-12-27T00:47:51.000Z" + }, + "events": [ + { + "uuid": "467ef359-93a7-4832-8db2-b3331bb1f9c8", + "start": { + "$date": "2020-12-26T23:36:39.000Z" + }, + "end": { + "$date": "2020-12-27T00:47:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6057f007-105f-4595-836a-b5d733e8f5a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-26T23:56:42.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:18.000Z" + }, + "events": [ + { + "uuid": "696b4dff-67a9-443c-9587-d3d43ea43063", + "start": { + "$date": "2020-12-26T23:56:42.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b8096ff9-7a6d-4d62-8d9d-014b411a365a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-26T23:47:29.000Z" + }, + "end": { + "$date": "2020-12-27T00:26:47.000Z" + }, + "events": [ + { + "uuid": "1b65480a-446c-4eea-9ba0-5f449c736b8b", + "start": { + "$date": "2020-12-26T23:47:29.000Z" + }, + "end": { + "$date": "2020-12-27T00:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "492189eb-b36b-4ad2-b9e0-bfa91dbf12ae", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T23:47:50.000Z" + }, + "end": { + "$date": "2020-12-26T23:54:09.000Z" + }, + "events": [ + { + "uuid": "5df5c0f8-8a2b-4fdf-a091-13c141fc2573", + "start": { + "$date": "2020-12-26T23:47:50.000Z" + }, + "end": { + "$date": "2020-12-26T23:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f861958-45f8-471a-aea9-02baed30e655", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-26T23:57:15.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:20.000Z" + }, + "events": [ + { + "uuid": "93865325-03b3-4138-8361-dbfcf8bd33d3", + "start": { + "$date": "2020-12-26T23:57:15.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e587d7e-686f-408c-a200-90610bcad6a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-26T23:56:45.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:22.000Z" + }, + "events": [ + { + "uuid": "4b3aac74-1074-40cc-add1-7c977c8526a5", + "start": { + "$date": "2020-12-26T23:56:45.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfa34103-6d80-43d2-95d1-c825e8e8cdc8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-26T23:56:43.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:26.000Z" + }, + "events": [ + { + "uuid": "2e75d44d-0243-449a-aaa3-3252b5f4eed1", + "start": { + "$date": "2020-12-26T23:56:43.000Z" + }, + "end": { + "$date": "2020-12-27T00:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "04037c50-2da0-442c-b49a-85eef92ec55f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-27T00:14:39.000Z" + }, + "end": { + "$date": "2020-12-27T00:20:10.000Z" + }, + "events": [ + { + "uuid": "38a8332d-1dd7-4aa1-b74b-8d3ccff8797b", + "start": { + "$date": "2020-12-27T00:14:39.000Z" + }, + "end": { + "$date": "2020-12-27T00:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdb14532-9bd2-4e37-a686-bc2c04f01648", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T00:41:44.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:34.000Z" + }, + "events": [ + { + "uuid": "5d527755-7c32-4984-9938-02d603523ecc", + "start": { + "$date": "2020-12-27T00:41:44.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b79eeb59-6aee-423a-aae4-4f69c85d95db", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T00:41:46.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:26.000Z" + }, + "events": [ + { + "uuid": "521a8b95-83b7-4483-b297-e10581de86d3", + "start": { + "$date": "2020-12-27T00:41:46.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8da2cf5e-d2e5-410e-bd3f-90fa1edbc7ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T00:42:16.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:27.000Z" + }, + "events": [ + { + "uuid": "0afa61b7-dcbf-4fcf-9c85-46de17e9e0b6", + "start": { + "$date": "2020-12-27T00:42:16.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ab48d85-9008-4a35-b673-b2785c0da82e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T00:41:45.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:34.000Z" + }, + "events": [ + { + "uuid": "e5c2414c-8dab-4d8f-bab2-7b2d86688cbd", + "start": { + "$date": "2020-12-27T00:41:45.000Z" + }, + "end": { + "$date": "2020-12-27T01:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1ac6805-430e-4b70-865d-9fe0407281ab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T01:06:36.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:27.000Z" + }, + "events": [ + { + "uuid": "43e9c9a8-0ad8-4ace-8673-4f3770595df4", + "start": { + "$date": "2020-12-27T01:06:36.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8339e891-ae0c-41e0-a9ea-c9ad6110293e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T01:06:37.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:22.000Z" + }, + "events": [ + { + "uuid": "e2bea772-ab81-42fa-8441-95a597656e85", + "start": { + "$date": "2020-12-27T01:06:37.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6b578da-d145-4fec-a244-22ff17bb416b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T01:07:31.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:23.000Z" + }, + "events": [ + { + "uuid": "222868aa-a5f5-4666-ba6c-4d42e4416f19", + "start": { + "$date": "2020-12-27T01:07:31.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5bebe62-57c9-4757-8527-b9097495b91c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T01:07:41.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:24.000Z" + }, + "events": [ + { + "uuid": "e058cea9-546d-416c-82ae-27bd02483aca", + "start": { + "$date": "2020-12-27T01:07:41.000Z" + }, + "end": { + "$date": "2020-12-27T01:27:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c10a7a4-49df-4c99-b478-3cb1fa55d3e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T01:28:09.000Z" + }, + "end": { + "$date": "2020-12-27T01:29:51.000Z" + }, + "events": [ + { + "uuid": "c5bd3c7a-201f-4824-803d-8622cf39c91b", + "start": { + "$date": "2020-12-27T01:28:09.000Z" + }, + "end": { + "$date": "2020-12-27T01:29:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0397e804-928e-4b77-9702-4e5c5021fac9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T02:48:50.000Z" + }, + "end": { + "$date": "2020-12-27T03:21:24.000Z" + }, + "events": [ + { + "uuid": "8d14ec09-7188-4fdb-bd0d-8fcf2a959ad4", + "start": { + "$date": "2020-12-27T02:48:50.000Z" + }, + "end": { + "$date": "2020-12-27T03:02:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7aec61e-5c3d-4ea1-b8f6-8c7f37f1e707", + "start": { + "$date": "2020-12-27T03:02:50.000Z" + }, + "end": { + "$date": "2020-12-27T03:14:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e76f42f-7abe-42f1-9b1a-8c297aa5b3ff", + "start": { + "$date": "2020-12-27T03:14:50.000Z" + }, + "end": { + "$date": "2020-12-27T03:24:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a55e178-4f53-499e-93f5-f2bad376155b", + "start": { + "$date": "2020-12-27T03:24:50.000Z" + }, + "end": { + "$date": "2020-12-27T03:26:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7a11bf0-beea-442c-8708-9bdcdc690571", + "start": { + "$date": "2020-12-27T03:26:50.000Z" + }, + "end": { + "$date": "2020-12-27T03:21:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "3369e202-2552-484f-94e2-08645301915c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-27T01:33:58.000Z" + }, + "end": { + "$date": "2020-12-27T02:17:22.000Z" + }, + "events": [ + { + "uuid": "30291af6-bfa6-496a-8857-f519e1c003a4", + "start": { + "$date": "2020-12-27T01:33:58.000Z" + }, + "end": { + "$date": "2020-12-27T02:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "2c56e4d5-056a-4fe7-a6c1-be527b635988", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-27T02:15:47.000Z" + }, + "end": { + "$date": "2020-12-27T14:51:26.000Z" + }, + "events": [ + { + "uuid": "5e2ea362-ac5a-4a61-8a7a-341f5665558f", + "start": { + "$date": "2020-12-27T02:15:47.000Z" + }, + "end": { + "$date": "2020-12-27T14:51:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b4e6d5b8-46be-484d-a769-5ef694603f64", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T02:34:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:47:56.000Z" + }, + "events": [ + { + "uuid": "80ae63e1-d1bd-423b-a4c5-09b63f75db81", + "start": { + "$date": "2020-12-27T02:34:25.000Z" + }, + "end": { + "$date": "2020-12-27T02:49:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7d36c440-01b1-47ad-b1f9-ad5559ec0177", + "start": { + "$date": "2020-12-27T02:49:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:01:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18029cef-442f-41e0-9ce1-219a3c785d62", + "start": { + "$date": "2020-12-27T03:01:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:03:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8cf9ed8a-454d-4abc-9a8c-86dac0f507c0", + "start": { + "$date": "2020-12-27T03:03:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:11:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d9be826-6324-45a4-a418-09682b78cb8b", + "start": { + "$date": "2020-12-27T03:11:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:13:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7d9c07c7-e7e1-4482-84c9-f54c90653409", + "start": { + "$date": "2020-12-27T03:13:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:18:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ddf3ffd8-7f3e-4203-9b27-f7791511f893", + "start": { + "$date": "2020-12-27T03:18:25.000Z" + }, + "end": { + "$date": "2020-12-27T03:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2231d643-99ae-424e-85f0-489e572d57fd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-27T02:41:08.000Z" + }, + "end": { + "$date": "2020-12-27T06:35:08.000Z" + }, + "events": [ + { + "uuid": "a8571246-026b-4b88-9e55-9309884da497", + "start": { + "$date": "2020-12-27T02:41:08.000Z" + }, + "end": { + "$date": "2020-12-27T06:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ac055d2-d198-451c-86a7-cb96c4c27285", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T03:59:34.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:50.000Z" + }, + "events": [ + { + "uuid": "2b73467b-f6f8-439c-9c92-1ce698aa1a0a", + "start": { + "$date": "2020-12-27T03:59:34.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba40949f-534e-458b-9d50-bb68e6d431e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T04:00:12.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:43.000Z" + }, + "events": [ + { + "uuid": "ace5703c-98bc-4ec1-a755-dbda804d1fc7", + "start": { + "$date": "2020-12-27T04:00:12.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bdbeb23-4de0-4f66-bc0c-40f0c6c3cb87", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T04:00:21.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:43.000Z" + }, + "events": [ + { + "uuid": "81dd7150-c12a-448e-97b1-7cfa7d49fd2d", + "start": { + "$date": "2020-12-27T04:00:21.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bc184dc-bb5d-43f9-8729-0c82059b41ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T03:59:41.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:48.000Z" + }, + "events": [ + { + "uuid": "932ac4cd-1bac-487a-8894-0683cf66d07f", + "start": { + "$date": "2020-12-27T03:59:41.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d98b6ee-b047-4961-9a34-7ae837f1345f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T03:57:21.000Z" + }, + "end": { + "$date": "2020-12-27T03:59:28.000Z" + }, + "events": [ + { + "uuid": "883f0c72-140c-40a4-b584-3f5dc335ef54", + "start": { + "$date": "2020-12-27T03:57:21.000Z" + }, + "end": { + "$date": "2020-12-27T03:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6efdbe09-c11b-4b70-8873-1a0b3d01e007", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-27T03:59:21.000Z" + }, + "end": { + "$date": "2020-12-27T05:31:37.000Z" + }, + "events": [ + { + "uuid": "c1e1a481-5b00-47b7-b011-57037f43b247", + "start": { + "$date": "2020-12-27T03:59:21.000Z" + }, + "end": { + "$date": "2020-12-27T05:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90bd597a-ac60-4d9b-8c20-85732d3baaa0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T04:00:48.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:45.000Z" + }, + "events": [ + { + "uuid": "c5e46d41-d4b7-4164-8ae6-fcc80aa480ad", + "start": { + "$date": "2020-12-27T04:00:48.000Z" + }, + "end": { + "$date": "2020-12-27T04:19:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46038253-9493-4079-b702-d4ad98c37cfa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T04:23:30.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:50.000Z" + }, + "events": [ + { + "uuid": "9af7caf5-592c-47d6-b2bb-ea5652cf4734", + "start": { + "$date": "2020-12-27T04:23:30.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "825237b2-24d7-40a3-8693-0b5878bb4121", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T04:24:22.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:19.000Z" + }, + "events": [ + { + "uuid": "0ec72ea3-3890-43cb-b45a-d69e1764dfc4", + "start": { + "$date": "2020-12-27T04:24:22.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e07cebfb-c393-4648-856c-5901bbde7c37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T04:23:33.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:22.000Z" + }, + "events": [ + { + "uuid": "d2614c71-eb68-4a8c-8261-7fd75d1b83f8", + "start": { + "$date": "2020-12-27T04:23:33.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "282363cc-a32b-430b-b54f-d0aef08044b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T04:23:28.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:19.000Z" + }, + "events": [ + { + "uuid": "f2ad11d8-f9a2-4eea-a9fb-48ba939231d0", + "start": { + "$date": "2020-12-27T04:23:28.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e625c2c-3ce2-47ec-9271-3a354cd0995d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T04:23:34.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:26.000Z" + }, + "events": [ + { + "uuid": "4e3f20f2-ace3-495c-88ec-30ecfd4e3dc6", + "start": { + "$date": "2020-12-27T04:23:34.000Z" + }, + "end": { + "$date": "2020-12-27T04:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71187ff6-168e-47dc-bb08-84f6d964b767", + "uuid": "94eab43b-db11-40b5-9c6d-98a6525a0e08", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-27T04:42:07.000Z" + }, + "end": { + "$date": "2020-12-27T07:16:04.000Z" + }, + "events": [ + { + "uuid": "5584f8fe-2a16-448f-babf-b757e144ebe5", + "start": { + "$date": "2020-12-27T04:42:07.000Z" + }, + "end": { + "$date": "2020-12-27T07:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ccf362bf-0807-404e-88b9-c724a59781d1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T04:49:57.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:25.000Z" + }, + "events": [ + { + "uuid": "8c6dfb27-57cd-4445-a9c9-c3a218c5c549", + "start": { + "$date": "2020-12-27T04:49:57.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fb03e79-3f50-4e6a-9b1a-ee5eae9498e6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T04:49:55.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:20.000Z" + }, + "events": [ + { + "uuid": "d6817220-4640-4bab-acdc-799f67791662", + "start": { + "$date": "2020-12-27T04:49:55.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac1929b9-fc35-4cd9-b6e8-eacb7265b0a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T04:51:03.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:19.000Z" + }, + "events": [ + { + "uuid": "fac2e4df-952e-4c65-8806-529e051ace2f", + "start": { + "$date": "2020-12-27T04:51:03.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e852ad38-5c5b-404a-88fb-081527c0ad3c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T04:50:01.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:18.000Z" + }, + "events": [ + { + "uuid": "79f78494-bbae-49ac-8c3e-905d429a3a79", + "start": { + "$date": "2020-12-27T04:50:01.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffaecfd2-7837-4a04-ae30-d691e5f7e9e0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T04:50:04.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:18.000Z" + }, + "events": [ + { + "uuid": "ee58224c-c79d-479b-968e-d133178f6ea9", + "start": { + "$date": "2020-12-27T04:50:04.000Z" + }, + "end": { + "$date": "2020-12-27T05:09:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a54e0e9-b321-4a2b-a0fc-d7316992297b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T05:13:34.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:17.000Z" + }, + "events": [ + { + "uuid": "34f03f6f-ae20-4de1-9d90-fcb0785385b0", + "start": { + "$date": "2020-12-27T05:13:34.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad80a8a2-0afc-4f7f-87cd-234c63fa65f4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T05:13:36.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:17.000Z" + }, + "events": [ + { + "uuid": "60ec4db3-12bd-4a6b-8b67-c29aef584be8", + "start": { + "$date": "2020-12-27T05:13:36.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1948049e-ff73-4933-a51d-7e8b34586e54", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T05:13:48.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:14.000Z" + }, + "events": [ + { + "uuid": "93e044e2-7459-4b63-ac24-3b6096fe4ca4", + "start": { + "$date": "2020-12-27T05:13:48.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b65c37d-1266-4f06-8a0b-d280cf3db634", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T05:14:28.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:15.000Z" + }, + "events": [ + { + "uuid": "da5e6f2a-c857-4c9a-b983-306387321b6b", + "start": { + "$date": "2020-12-27T05:14:28.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c7acd17-8057-484a-8952-e1f1ff3f7367", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T05:13:41.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:22.000Z" + }, + "events": [ + { + "uuid": "bf8e6d80-2e84-4489-9679-b2510d13fa09", + "start": { + "$date": "2020-12-27T05:13:41.000Z" + }, + "end": { + "$date": "2020-12-27T05:29:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71973968-3507-4062-ad2d-657be2bcd4a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T05:35:56.000Z" + }, + "end": { + "$date": "2020-12-27T05:48:58.000Z" + }, + "events": [ + { + "uuid": "1d417ba2-7cf9-4dee-a3e0-a4718a831024", + "start": { + "$date": "2020-12-27T05:35:56.000Z" + }, + "end": { + "$date": "2020-12-27T05:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15e5b9ca-112a-4977-8a81-7261b4c292fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T05:35:58.000Z" + }, + "end": { + "$date": "2020-12-27T05:48:53.000Z" + }, + "events": [ + { + "uuid": "60d1a27d-9cc9-42d9-a1ee-0ad25a0d7ab9", + "start": { + "$date": "2020-12-27T05:35:58.000Z" + }, + "end": { + "$date": "2020-12-27T05:48:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73e0a49b-393d-4fe2-acc0-cdcfc0783563", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T05:36:05.000Z" + }, + "end": { + "$date": "2020-12-27T05:49:01.000Z" + }, + "events": [ + { + "uuid": "e99f3310-8651-494e-808f-1c7511abd6e2", + "start": { + "$date": "2020-12-27T05:36:05.000Z" + }, + "end": { + "$date": "2020-12-27T05:49:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d35b083-2ebd-4902-a351-c6a4ca22369f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T05:36:02.000Z" + }, + "end": { + "$date": "2020-12-27T05:48:56.000Z" + }, + "events": [ + { + "uuid": "a50e6d51-8879-47f9-9383-9bdd62aad8bd", + "start": { + "$date": "2020-12-27T05:36:02.000Z" + }, + "end": { + "$date": "2020-12-27T05:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "364be0c1-22af-4d7d-9b1b-6f27e391255b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T05:53:24.000Z" + }, + "end": { + "$date": "2020-12-27T06:13:30.000Z" + }, + "events": [ + { + "uuid": "da752e21-0028-41b7-89ce-b1f3a863e8a2", + "start": { + "$date": "2020-12-27T05:53:24.000Z" + }, + "end": { + "$date": "2020-12-27T06:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "029abb12-fd83-4e38-b690-098a3635116b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T05:53:31.000Z" + }, + "end": { + "$date": "2020-12-27T06:13:33.000Z" + }, + "events": [ + { + "uuid": "8ae4d3d9-3d05-4bda-9771-43bcc2959919", + "start": { + "$date": "2020-12-27T05:53:31.000Z" + }, + "end": { + "$date": "2020-12-27T06:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "475fb92f-b132-41ef-a8f8-3d1732c81236", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T06:13:36.000Z" + }, + "end": { + "$date": "2020-12-27T06:14:19.000Z" + }, + "events": [ + { + "uuid": "b7fb9819-9016-4153-9fdd-be8f201b5314", + "start": { + "$date": "2020-12-27T06:13:36.000Z" + }, + "end": { + "$date": "2020-12-27T06:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8105af62-500f-4e2a-88c4-eac97b8589db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T06:13:30.000Z" + }, + "end": { + "$date": "2020-12-27T06:13:38.000Z" + }, + "events": [ + { + "uuid": "2963d0ec-8fe2-4958-b6ff-b7b86507639a", + "start": { + "$date": "2020-12-27T06:13:30.000Z" + }, + "end": { + "$date": "2020-12-27T06:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "61ddb572-9a9a-42db-9272-4c227d8f5f08", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-27T06:08:15.000Z" + }, + "end": { + "$date": "2020-12-27T06:09:40.000Z" + }, + "events": [ + { + "uuid": "2d4c7728-357d-4a7e-b0b5-ac2f894f1d70", + "start": { + "$date": "2020-12-27T06:08:15.000Z" + }, + "end": { + "$date": "2020-12-27T06:09:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9e125445-9fc2-458a-86c1-3b31a9df63a8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-27T06:09:18.000Z" + }, + "end": { + "$date": "2020-12-27T06:39:31.000Z" + }, + "events": [ + { + "uuid": "aa81a604-a4ae-44b0-b40a-7177d57c547f", + "start": { + "$date": "2020-12-27T06:09:18.000Z" + }, + "end": { + "$date": "2020-12-27T06:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "d39201d3-f0ed-4f88-81b5-37d90e26adc6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-27T06:09:50.000Z" + }, + "end": { + "$date": "2020-12-27T08:00:27.000Z" + }, + "events": [ + { + "uuid": "de7e40aa-785c-48e8-8693-72013ae70e59", + "start": { + "$date": "2020-12-27T06:09:50.000Z" + }, + "end": { + "$date": "2020-12-27T08:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d805134-b1be-41e9-bcee-a5647a373a47", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T06:21:06.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:32.000Z" + }, + "events": [ + { + "uuid": "e5153150-f993-4141-804b-83df11a139a5", + "start": { + "$date": "2020-12-27T06:21:06.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "592820e5-a512-4cb5-8e64-6671d979ebab", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-27T06:21:15.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:14.000Z" + }, + "events": [ + { + "uuid": "38de392f-b3c9-45c3-9d70-e7f05d084012", + "start": { + "$date": "2020-12-27T06:21:15.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f408b85d-65ca-4383-a2d4-1bbc237a6a79", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T06:21:05.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:11.000Z" + }, + "events": [ + { + "uuid": "1ca06b89-26b2-47c1-b8fc-0d5eba9614d8", + "start": { + "$date": "2020-12-27T06:21:05.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fd8da5b-3244-4da6-9162-b3c342b1954c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T06:21:23.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:14.000Z" + }, + "events": [ + { + "uuid": "aef4f08b-27a1-46c0-bb8f-65eb656c2212", + "start": { + "$date": "2020-12-27T06:21:23.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a17734eb-7cad-4196-a0b3-23737453ba48", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T06:21:11.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:20.000Z" + }, + "events": [ + { + "uuid": "543cb290-34a7-408e-be22-c27bc26fb111", + "start": { + "$date": "2020-12-27T06:21:11.000Z" + }, + "end": { + "$date": "2020-12-27T06:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dbbdd23e-29b0-459f-993e-84c3b7fff31c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-27T06:54:12.000Z" + }, + "end": { + "$date": "2020-12-27T07:21:53.000Z" + }, + "events": [ + { + "uuid": "d0778062-6a55-4ba8-a973-c80e30aee52f", + "start": { + "$date": "2020-12-27T06:54:12.000Z" + }, + "end": { + "$date": "2020-12-27T07:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7045a7a-864d-427e-874e-03ec20104d6b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T07:01:13.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:41.000Z" + }, + "events": [ + { + "uuid": "f08958a2-5b96-41a6-9e4e-93dd0724f6c4", + "start": { + "$date": "2020-12-27T07:01:13.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "351c2249-e84e-4211-9684-edfe0bfe48f6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-27T07:01:16.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:35.000Z" + }, + "events": [ + { + "uuid": "34c6f2c3-7cd7-4ef8-aaa9-9097dba5704e", + "start": { + "$date": "2020-12-27T07:01:16.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5478ffb-89b9-4346-8659-1a8ecda09177", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T07:01:17.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:32.000Z" + }, + "events": [ + { + "uuid": "6be9b4a3-1b54-4231-99e1-ac6ceaf1de54", + "start": { + "$date": "2020-12-27T07:01:17.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52e9dd15-e537-4d27-a5eb-db303a67baa8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T07:36:42.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:40.000Z" + }, + "events": [ + { + "uuid": "7ce8d46d-2b07-4a52-8d36-44196f0f6572", + "start": { + "$date": "2020-12-27T07:36:42.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d94cf94-3ea3-4219-8512-e22f8e911e53", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T07:01:05.000Z" + }, + "end": { + "$date": "2020-12-27T07:03:59.000Z" + }, + "events": [ + { + "uuid": "a8d9c19c-3a47-460e-80fd-43913de59f8c", + "start": { + "$date": "2020-12-27T07:01:05.000Z" + }, + "end": { + "$date": "2020-12-27T07:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15dd1fab-86c4-4981-bec9-c0a02d8e522d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T07:04:05.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:39.000Z" + }, + "events": [ + { + "uuid": "83502a0b-e031-4229-a6fe-78f85c98f666", + "start": { + "$date": "2020-12-27T07:04:05.000Z" + }, + "end": { + "$date": "2020-12-27T07:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5767dc47-bdad-41b4-9fd1-9a4d32df824c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-27T07:22:14.000Z" + }, + "end": { + "$date": "2020-12-27T08:25:48.000Z" + }, + "events": [ + { + "uuid": "6af7dc26-28d1-4b55-877e-e263301cbfff", + "start": { + "$date": "2020-12-27T07:22:14.000Z" + }, + "end": { + "$date": "2020-12-27T08:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4d6f546-6ac8-423e-883e-34b62ed0b02e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T07:38:55.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:57.000Z" + }, + "events": [ + { + "uuid": "9113b5b0-ae07-460a-9659-95d2b16b0a03", + "start": { + "$date": "2020-12-27T07:38:55.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07a8b8a5-c91b-4007-a1ac-5bc75eb7a16d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T07:38:53.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:48.000Z" + }, + "events": [ + { + "uuid": "4c785693-eea5-478c-9c2f-297a72dfeb3e", + "start": { + "$date": "2020-12-27T07:38:53.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23cf7d30-2f7e-42af-a964-0ed4aa069387", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T07:38:59.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:52.000Z" + }, + "events": [ + { + "uuid": "1fd47eb5-0d10-4a40-9935-b60640a39a6d", + "start": { + "$date": "2020-12-27T07:38:59.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74e93eed-8a11-42ae-9360-fc556acf4640", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-27T07:38:57.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:46.000Z" + }, + "events": [ + { + "uuid": "415d4716-b5d0-48a5-81f7-981083ed023e", + "start": { + "$date": "2020-12-27T07:38:57.000Z" + }, + "end": { + "$date": "2020-12-27T07:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5380dac-6549-4d2c-8fb8-990e31f7649d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T07:38:50.000Z" + }, + "end": { + "$date": "2020-12-27T08:00:12.000Z" + }, + "events": [ + { + "uuid": "04982b4c-1a5c-496b-b15e-f0b99c54c52d", + "start": { + "$date": "2020-12-27T07:38:50.000Z" + }, + "end": { + "$date": "2020-12-27T08:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdeb26fd-12f3-4414-9fa3-d3a5e9b824d5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T08:03:47.000Z" + }, + "end": { + "$date": "2020-12-27T08:20:01.000Z" + }, + "events": [ + { + "uuid": "1956f288-6054-4b18-8836-062206fed872", + "start": { + "$date": "2020-12-27T08:03:47.000Z" + }, + "end": { + "$date": "2020-12-27T08:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28ad66ca-ca91-4d66-88bb-0d9a4cf9f47d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-27T08:03:48.000Z" + }, + "end": { + "$date": "2020-12-27T08:19:52.000Z" + }, + "events": [ + { + "uuid": "91bbfc68-a02c-4411-a10d-bff396abcbbf", + "start": { + "$date": "2020-12-27T08:03:48.000Z" + }, + "end": { + "$date": "2020-12-27T08:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4c4f974-97f5-45d4-a179-60d634e3ad9c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T08:03:49.000Z" + }, + "end": { + "$date": "2020-12-27T08:19:49.000Z" + }, + "events": [ + { + "uuid": "8bbca44f-998b-44c3-a903-4c1e0a343287", + "start": { + "$date": "2020-12-27T08:03:49.000Z" + }, + "end": { + "$date": "2020-12-27T08:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23ae2799-a3af-4d63-9392-a2107ff9474b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T08:03:45.000Z" + }, + "end": { + "$date": "2020-12-27T08:19:51.000Z" + }, + "events": [ + { + "uuid": "d3e0a39a-605b-4591-bad7-5085871d93bc", + "start": { + "$date": "2020-12-27T08:03:45.000Z" + }, + "end": { + "$date": "2020-12-27T08:19:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e2d72ba-8eaf-481b-bdbd-95d5e30b3566", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T08:03:50.000Z" + }, + "end": { + "$date": "2020-12-27T08:20:03.000Z" + }, + "events": [ + { + "uuid": "7fcdfe19-6916-4999-bfe9-c27aa88e10f6", + "start": { + "$date": "2020-12-27T08:03:50.000Z" + }, + "end": { + "$date": "2020-12-27T08:20:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffc30e79-1c1e-42cc-b065-1fe0b99f31b4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T08:23:03.000Z" + }, + "end": { + "$date": "2020-12-27T08:34:21.000Z" + }, + "events": [ + { + "uuid": "a22c8dc1-67e5-4f6c-a932-b1c1959c8be8", + "start": { + "$date": "2020-12-27T08:23:03.000Z" + }, + "end": { + "$date": "2020-12-27T08:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f263d95d-1df4-4b4d-9924-59507f7f94d3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-27T08:23:04.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:58.000Z" + }, + "events": [ + { + "uuid": "8cd453fb-75fb-4099-a2f5-584265e98fe7", + "start": { + "$date": "2020-12-27T08:23:04.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fff16733-6b99-43f8-a040-54330d95b6bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T08:23:05.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:55.000Z" + }, + "events": [ + { + "uuid": "ef9af027-3c12-4e79-8902-40d9fb6e66c5", + "start": { + "$date": "2020-12-27T08:23:05.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea6da3d5-c3c0-444f-940e-467588a73011", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T08:23:01.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:51.000Z" + }, + "events": [ + { + "uuid": "d3d54a56-ef81-458e-8ab8-d4cce9e5c80c", + "start": { + "$date": "2020-12-27T08:23:01.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fca38b73-1636-44e6-bded-daf020cc6399", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T08:23:07.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:50.000Z" + }, + "events": [ + { + "uuid": "c5e4dd9c-4f6e-4e9c-9f11-8d5be40cec63", + "start": { + "$date": "2020-12-27T08:23:07.000Z" + }, + "end": { + "$date": "2020-12-27T08:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e345cec-ad62-4772-b03d-2e82a8b52ffc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-27T08:37:35.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:52.000Z" + }, + "events": [ + { + "uuid": "cb97c124-12e3-4fd0-beee-52b41520da80", + "start": { + "$date": "2020-12-27T08:37:35.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e9259bd-d750-4ac6-9750-ae41e561489f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T08:37:36.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:42.000Z" + }, + "events": [ + { + "uuid": "cab93c4b-ad8a-465f-b815-84ae5d5da11e", + "start": { + "$date": "2020-12-27T08:37:36.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f94ebf6-4129-4f7d-9e87-439c2895f323", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T08:37:36.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:41.000Z" + }, + "events": [ + { + "uuid": "22167400-e5b5-4d80-8fc5-2a5c1a840db8", + "start": { + "$date": "2020-12-27T08:37:36.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "baddeef3-adc4-4ce3-91f6-3646df958f4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T08:37:37.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:41.000Z" + }, + "events": [ + { + "uuid": "6e819962-51ec-4113-98ab-6eb64cf7fca4", + "start": { + "$date": "2020-12-27T08:37:37.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e70750eb-59c8-42dd-9a72-908803428035", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-27T08:37:59.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:49.000Z" + }, + "events": [ + { + "uuid": "a356d7c1-b4fc-4dd2-a789-d9e356cc4df9", + "start": { + "$date": "2020-12-27T08:37:59.000Z" + }, + "end": { + "$date": "2020-12-27T08:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "6248e50f-dbf8-40a1-a7f0-d4a656904fb7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T15:59:58.000Z" + }, + "end": { + "$date": "2020-12-27T16:25:36.000Z" + }, + "events": [ + { + "uuid": "d1090193-1dda-433b-aec8-d737cfa85e0e", + "start": { + "$date": "2020-12-27T15:59:58.000Z" + }, + "end": { + "$date": "2020-12-27T16:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6e2ce3fa-2419-454c-8ef2-3e9f83607e66", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-27T17:23:07.000Z" + }, + "end": { + "$date": "2020-12-27T18:22:49.000Z" + }, + "events": [ + { + "uuid": "f4b9c8ea-bf17-4399-b1cb-a5ffab8c05a5", + "start": { + "$date": "2020-12-27T17:23:07.000Z" + }, + "end": { + "$date": "2020-12-27T18:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "eb978ac6-9e93-417f-b298-3daa83a0dada", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T18:13:03.000Z" + }, + "end": { + "$date": "2020-12-27T18:16:45.000Z" + }, + "events": [ + { + "uuid": "34ab168b-fdaa-4de9-a64a-59a20108cbf4", + "start": { + "$date": "2020-12-27T18:13:03.000Z" + }, + "end": { + "$date": "2020-12-27T18:16:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "c5f01269-1185-4daf-83bf-1b00ca502018", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T18:18:44.000Z" + }, + "end": { + "$date": "2020-12-27T18:26:41.000Z" + }, + "events": [ + { + "uuid": "d8795bc2-5b03-4f3d-af2d-84799e751a89", + "start": { + "$date": "2020-12-27T18:18:44.000Z" + }, + "end": { + "$date": "2020-12-27T18:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d03ea2f5-f4b7-45c5-b9d6-1803ce5a4709", + "uuid": "15142baa-c6ce-4228-9050-0e42f2741049", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T18:34:07.000Z" + }, + "end": { + "$date": "2020-12-27T18:47:25.000Z" + }, + "events": [ + { + "uuid": "1713962e-c6fb-4fea-a0d1-44009abb98d7", + "start": { + "$date": "2020-12-27T18:34:07.000Z" + }, + "end": { + "$date": "2020-12-27T18:47:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "b43385f6-67bf-4c02-9ae8-73d9c95263ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T18:42:43.000Z" + }, + "end": { + "$date": "2020-12-27T20:11:56.000Z" + }, + "events": [ + { + "uuid": "9ab5fb62-ce0b-494a-95bf-9f6c0aea7dd1", + "start": { + "$date": "2020-12-27T18:42:43.000Z" + }, + "end": { + "$date": "2020-12-27T18:52:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7b527c6-4b10-4b0e-9447-194e85885174", + "start": { + "$date": "2020-12-27T18:52:43.000Z" + }, + "end": { + "$date": "2020-12-27T19:54:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b2f5b428-0948-43fd-8507-86ead13b4a14", + "start": { + "$date": "2020-12-27T19:54:43.000Z" + }, + "end": { + "$date": "2020-12-27T20:11:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "66a7e6e4-2d52-4947-9334-732f2547a477", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T19:04:18.000Z" + }, + "end": { + "$date": "2020-12-27T19:49:41.000Z" + }, + "events": [ + { + "uuid": "fe501335-5b10-43c7-8151-528589da0d5f", + "start": { + "$date": "2020-12-27T19:04:18.000Z" + }, + "end": { + "$date": "2020-12-27T19:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "cb3a9223-9a5b-443e-a76d-08cd1709e0ae", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-27T19:32:32.000Z" + }, + "end": { + "$date": "2020-12-27T21:24:20.000Z" + }, + "events": [ + { + "uuid": "c3e58884-3ea3-40d9-9303-259f48e9e05f", + "start": { + "$date": "2020-12-27T19:32:32.000Z" + }, + "end": { + "$date": "2020-12-27T20:48:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7d52de61-2769-42e6-984b-8c628b2cbbbe", + "start": { + "$date": "2020-12-27T20:48:32.000Z" + }, + "end": { + "$date": "2020-12-27T21:04:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd355ead-22ae-47a5-bee1-53d5dec95bea", + "start": { + "$date": "2020-12-27T21:04:32.000Z" + }, + "end": { + "$date": "2020-12-27T21:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "cebdf43e-6886-43cf-befd-c999366df75d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T20:05:28.000Z" + }, + "end": { + "$date": "2020-12-27T20:13:30.000Z" + }, + "events": [ + { + "uuid": "7511afe9-7e30-4362-bbf4-b6c5d215a88e", + "start": { + "$date": "2020-12-27T20:05:28.000Z" + }, + "end": { + "$date": "2020-12-27T20:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4368f0c4-600c-4a54-9f23-b8358214a9e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-27T20:10:41.000Z" + }, + "end": { + "$date": "2020-12-27T20:38:09.000Z" + }, + "events": [ + { + "uuid": "9ca93e38-ea93-45af-bee0-bc60614c2549", + "start": { + "$date": "2020-12-27T20:10:41.000Z" + }, + "end": { + "$date": "2020-12-27T20:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1f17e961-a5ca-4cb8-8b28-7f933859b90f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-27T20:28:18.000Z" + }, + "end": { + "$date": "2020-12-27T23:09:34.000Z" + }, + "events": [ + { + "uuid": "6751aae3-9846-4a0a-b4aa-96743e5eead0", + "start": { + "$date": "2020-12-27T20:28:18.000Z" + }, + "end": { + "$date": "2020-12-27T23:09:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "b6431ad3-06a0-4cc4-a67e-29a00d23a32d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T20:35:59.000Z" + }, + "end": { + "$date": "2020-12-27T20:47:33.000Z" + }, + "events": [ + { + "uuid": "e92ebe13-269e-4d11-a129-ffaf49ec469b", + "start": { + "$date": "2020-12-27T20:35:59.000Z" + }, + "end": { + "$date": "2020-12-27T20:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "6ad03602-d90b-49b0-8336-965bbcbc685b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T20:36:00.000Z" + }, + "end": { + "$date": "2020-12-27T22:59:36.000Z" + }, + "events": [ + { + "uuid": "d0838097-7e79-4fb5-a1c7-5eaae768618f", + "start": { + "$date": "2020-12-27T20:36:00.000Z" + }, + "end": { + "$date": "2020-12-27T22:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "8dd65c91-b357-46da-8b8c-6de18f4eb632", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T20:36:26.000Z" + }, + "end": { + "$date": "2020-12-27T21:02:56.000Z" + }, + "events": [ + { + "uuid": "3d8b66fd-91a2-426c-b802-661b76159f9b", + "start": { + "$date": "2020-12-27T20:36:26.000Z" + }, + "end": { + "$date": "2020-12-27T21:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "3163ab32-28c2-4612-bcc5-a29a1dc5b1a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T20:47:41.000Z" + }, + "end": { + "$date": "2020-12-27T20:55:14.000Z" + }, + "events": [ + { + "uuid": "697e66d0-aa41-45ab-8da3-d42596aba798", + "start": { + "$date": "2020-12-27T20:47:41.000Z" + }, + "end": { + "$date": "2020-12-27T20:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "f6bfbee5-bb07-4707-b1e3-e1219b4ddd91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-27T20:55:28.000Z" + }, + "end": { + "$date": "2020-12-27T23:00:37.000Z" + }, + "events": [ + { + "uuid": "d78a046e-af7d-4a4b-b2f4-6dd5a38351ac", + "start": { + "$date": "2020-12-27T20:55:28.000Z" + }, + "end": { + "$date": "2020-12-27T23:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "2801c0ff-e519-43cd-8096-658e519f572f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-27T21:03:28.000Z" + }, + "end": { + "$date": "2020-12-27T22:58:00.000Z" + }, + "events": [ + { + "uuid": "5e1574fa-e001-47b8-b540-a447ef6ba310", + "start": { + "$date": "2020-12-27T21:03:28.000Z" + }, + "end": { + "$date": "2020-12-27T22:58:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1128bd4e-3817-4861-a9b9-8733547d7dd0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-27T21:53:04.000Z" + }, + "end": { + "$date": "2020-12-27T22:43:50.000Z" + }, + "events": [ + { + "uuid": "2d56473f-03e2-4652-b17a-fac004e3ed36", + "start": { + "$date": "2020-12-27T21:53:04.000Z" + }, + "end": { + "$date": "2020-12-27T22:43:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d81f5ed0-5662-4737-bc18-249dd9bed279", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-27T22:30:37.000Z" + }, + "end": { + "$date": "2020-12-28T00:11:45.000Z" + }, + "events": [ + { + "uuid": "f026f44b-acc2-44ff-aa32-d0a2e769dfee", + "start": { + "$date": "2020-12-27T22:30:37.000Z" + }, + "end": { + "$date": "2020-12-28T00:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5b82d0c7-e88a-46d9-9bf3-3f9e3a18def3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-27T23:00:25.000Z" + }, + "end": { + "$date": "2020-12-28T00:28:51.000Z" + }, + "events": [ + { + "uuid": "dc4d74cc-489f-4b9f-9b92-0b05965e37a8", + "start": { + "$date": "2020-12-27T23:00:25.000Z" + }, + "end": { + "$date": "2020-12-28T00:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "63259c10-6efe-45ff-8ab0-0abfc182c2f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-27T23:21:29.000Z" + }, + "end": { + "$date": "2020-12-28T00:38:07.000Z" + }, + "events": [ + { + "uuid": "b326ee85-4dfc-4cb0-bff9-41704e0a6280", + "start": { + "$date": "2020-12-27T23:21:29.000Z" + }, + "end": { + "$date": "2020-12-28T00:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "32871cfa-e47e-4d4f-9327-6d1ae752c41a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-27T23:47:50.000Z" + }, + "end": { + "$date": "2020-12-28T01:21:54.000Z" + }, + "events": [ + { + "uuid": "6893229d-a3d8-430b-87a8-6428548a3759", + "start": { + "$date": "2020-12-27T23:47:50.000Z" + }, + "end": { + "$date": "2020-12-28T01:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "730ed4ef-4cc5-4938-b416-94e656090598", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-27T23:52:49.000Z" + }, + "end": { + "$date": "2020-12-28T01:17:10.000Z" + }, + "events": [ + { + "uuid": "1d03b198-17d3-4e60-ac70-0359ebac56cc", + "start": { + "$date": "2020-12-27T23:52:49.000Z" + }, + "end": { + "$date": "2020-12-28T01:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0e428ca6-ea1e-4290-83f7-2516d7b06eda", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-28T00:12:40.000Z" + }, + "end": { + "$date": "2020-12-28T01:57:45.000Z" + }, + "events": [ + { + "uuid": "422a8bf3-412d-4b70-8546-8a21062f773c", + "start": { + "$date": "2020-12-28T00:12:40.000Z" + }, + "end": { + "$date": "2020-12-28T01:57:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "ee6027da-5c3c-49f3-a754-990ca3577952", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T00:33:18.000Z" + }, + "end": { + "$date": "2020-12-28T00:36:09.000Z" + }, + "events": [ + { + "uuid": "602d0cb7-fe70-4e12-aff6-d9277ee6983f", + "start": { + "$date": "2020-12-28T00:33:18.000Z" + }, + "end": { + "$date": "2020-12-28T00:36:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "b9339d41-0e2a-4639-bd16-77612a2bc5af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T00:36:44.000Z" + }, + "end": { + "$date": "2020-12-28T03:23:40.000Z" + }, + "events": [ + { + "uuid": "48f5b1d5-c842-4e93-bbc8-26c1bf3705ef", + "start": { + "$date": "2020-12-28T00:36:44.000Z" + }, + "end": { + "$date": "2020-12-28T03:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "uuid": "8d5997c7-0956-4e62-932b-7f8171863af2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-28T00:40:06.000Z" + }, + "end": { + "$date": "2020-12-28T03:04:29.000Z" + }, + "events": [ + { + "uuid": "b1580221-b0ad-431b-8e23-76e03f45ca85", + "start": { + "$date": "2020-12-28T00:40:06.000Z" + }, + "end": { + "$date": "2020-12-28T03:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ab10d4bb-7a09-4833-8bec-948da18f1078", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-28T01:29:49.000Z" + }, + "end": { + "$date": "2020-12-28T01:46:25.000Z" + }, + "events": [ + { + "uuid": "7fdfd373-4131-442b-a146-9b6e59915806", + "start": { + "$date": "2020-12-28T01:29:49.000Z" + }, + "end": { + "$date": "2020-12-28T01:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1cd648a6-ceca-463c-a036-a3da798c4bcd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T01:56:17.000Z" + }, + "end": { + "$date": "2020-12-28T01:57:58.000Z" + }, + "events": [ + { + "uuid": "35a33b3b-c042-4f57-bc5c-32d24e1017c4", + "start": { + "$date": "2020-12-28T01:56:17.000Z" + }, + "end": { + "$date": "2020-12-28T01:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b8b5ae98-5034-4745-aa97-64f06df78575", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T01:59:12.000Z" + }, + "end": { + "$date": "2020-12-28T02:25:29.000Z" + }, + "events": [ + { + "uuid": "17639fa7-39a1-450e-8362-ac185a022933", + "start": { + "$date": "2020-12-28T01:59:12.000Z" + }, + "end": { + "$date": "2020-12-28T02:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7e60b2cc-e51b-4b8c-a61f-433344d8adf9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-28T02:28:00.000Z" + }, + "end": { + "$date": "2020-12-28T04:54:11.000Z" + }, + "events": [ + { + "uuid": "62941b2d-0d93-4806-ae46-6cb96673f09a", + "start": { + "$date": "2020-12-28T02:28:00.000Z" + }, + "end": { + "$date": "2020-12-28T04:54:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "8791bfa9-64c5-4780-962d-ca094cd02dd4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-28T02:45:58.000Z" + }, + "end": { + "$date": "2020-12-28T07:40:18.000Z" + }, + "events": [ + { + "uuid": "79b3ec4f-579b-4085-833f-c6c493afba24", + "start": { + "$date": "2020-12-28T02:45:58.000Z" + }, + "end": { + "$date": "2020-12-28T07:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "972b5990-f2c9-421a-8c25-99c66d835392", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T02:53:21.000Z" + }, + "end": { + "$date": "2020-12-28T04:37:35.000Z" + }, + "events": [ + { + "uuid": "a9581cc4-a290-4a19-ab93-09a8b39029d1", + "start": { + "$date": "2020-12-28T02:53:21.000Z" + }, + "end": { + "$date": "2020-12-28T04:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "764bafa8-196b-48e2-8a7a-fd075535ad41", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-28T03:06:14.000Z" + }, + "end": { + "$date": "2020-12-28T03:24:42.000Z" + }, + "events": [ + { + "uuid": "d07e6a9f-56f8-4845-ac10-56e660a0ba03", + "start": { + "$date": "2020-12-28T03:06:14.000Z" + }, + "end": { + "$date": "2020-12-28T03:24:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a367f322-0853-4e3e-b8c4-9e0803214e6a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T03:07:43.000Z" + }, + "end": { + "$date": "2020-12-28T03:24:05.000Z" + }, + "events": [ + { + "uuid": "77c67c84-9d67-4d94-a18b-f7c1bfd9f3d0", + "start": { + "$date": "2020-12-28T03:07:43.000Z" + }, + "end": { + "$date": "2020-12-28T03:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50a1bfd2-3f64-43b7-98c4-4719bf7edf81", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T03:22:08.000Z" + }, + "end": { + "$date": "2020-12-28T03:45:16.000Z" + }, + "events": [ + { + "uuid": "1810fb7a-d102-4bbc-904c-2f50daad55d6", + "start": { + "$date": "2020-12-28T03:22:08.000Z" + }, + "end": { + "$date": "2020-12-28T03:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "992f26a4-7e73-40f1-a611-11b9117c3601", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T03:24:24.000Z" + }, + "end": { + "$date": "2020-12-28T05:03:26.000Z" + }, + "events": [ + { + "uuid": "819ff7e9-4468-428a-a32b-848085f3d75b", + "start": { + "$date": "2020-12-28T03:24:24.000Z" + }, + "end": { + "$date": "2020-12-28T05:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f9911ad-dc8a-49be-a064-856e69f2d778", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-28T03:24:51.000Z" + }, + "end": { + "$date": "2020-12-28T05:04:04.000Z" + }, + "events": [ + { + "uuid": "9ce2f130-90ca-47e9-997d-ae7239314637", + "start": { + "$date": "2020-12-28T03:24:51.000Z" + }, + "end": { + "$date": "2020-12-28T05:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "47f96c3c-658e-49f9-949f-be39f0c3e0bc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-28T03:45:55.000Z" + }, + "end": { + "$date": "2020-12-28T07:00:03.000Z" + }, + "events": [ + { + "uuid": "9b15edb2-19e9-4105-ba73-a9fce08c89a9", + "start": { + "$date": "2020-12-28T03:45:55.000Z" + }, + "end": { + "$date": "2020-12-28T07:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7840f246-233f-43fc-9d54-9dd7ef535384", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T03:45:55.000Z" + }, + "end": { + "$date": "2020-12-28T03:47:05.000Z" + }, + "events": [ + { + "uuid": "17c10dc7-54cd-4f07-9f38-89f55be16787", + "start": { + "$date": "2020-12-28T03:45:55.000Z" + }, + "end": { + "$date": "2020-12-28T03:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "deb9a43a-eb9c-45e3-b47d-e5de2f64c06b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T03:47:25.000Z" + }, + "end": { + "$date": "2020-12-28T05:25:06.000Z" + }, + "events": [ + { + "uuid": "b6452913-832e-4994-9385-af1ecef61436", + "start": { + "$date": "2020-12-28T03:47:25.000Z" + }, + "end": { + "$date": "2020-12-28T05:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "04c7e0ec-a591-4ef4-956d-e25bd7af115e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-28T03:55:00.000Z" + }, + "end": { + "$date": "2020-12-28T05:23:28.000Z" + }, + "events": [ + { + "uuid": "2fbeb3d0-8037-445a-b3b6-b5ca30bb6a87", + "start": { + "$date": "2020-12-28T03:55:00.000Z" + }, + "end": { + "$date": "2020-12-28T05:23:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71187ff6-168e-47dc-bb08-84f6d964b767", + "uuid": "a520c488-abfa-41f9-a6d2-fc648b4f0885", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-28T04:12:22.000Z" + }, + "end": { + "$date": "2020-12-28T06:02:19.000Z" + }, + "events": [ + { + "uuid": "9505bd0e-048a-4f37-8887-7e551115aa63", + "start": { + "$date": "2020-12-28T04:12:22.000Z" + }, + "end": { + "$date": "2020-12-28T06:02:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "5f8f44ca-c9dc-47c4-b4f5-bc579d18bf64", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T05:23:56.000Z" + }, + "end": { + "$date": "2020-12-28T05:31:01.000Z" + }, + "events": [ + { + "uuid": "ff6f68f6-9e46-48b9-a63b-20cc152ba96c", + "start": { + "$date": "2020-12-28T05:23:56.000Z" + }, + "end": { + "$date": "2020-12-28T05:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c5929781-683c-47a8-8391-5e1b9f0ba43e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T04:53:35.000Z" + }, + "end": { + "$date": "2020-12-28T05:16:02.000Z" + }, + "events": [ + { + "uuid": "28554774-39f8-458f-8eb2-6899b59f581e", + "start": { + "$date": "2020-12-28T04:53:35.000Z" + }, + "end": { + "$date": "2020-12-28T05:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "uuid": "3f3e6a86-7a1d-4dc5-9201-a7955885f875", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-28T05:04:14.000Z" + }, + "end": { + "$date": "2020-12-28T06:40:45.000Z" + }, + "events": [ + { + "uuid": "8e9cecb6-2a1c-442f-b897-5f5f5c9e8d74", + "start": { + "$date": "2020-12-28T05:04:14.000Z" + }, + "end": { + "$date": "2020-12-28T06:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "uuid": "acf98b41-22f4-40a3-9aa7-8c04f73ce4e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T05:04:16.000Z" + }, + "end": { + "$date": "2020-12-28T05:17:33.000Z" + }, + "events": [ + { + "uuid": "66307beb-16b2-4d99-ab27-98374c5b4675", + "start": { + "$date": "2020-12-28T05:04:16.000Z" + }, + "end": { + "$date": "2020-12-28T05:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a48e69b-46ca-4fa1-b991-33d9c0c2bec7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T05:16:15.000Z" + }, + "end": { + "$date": "2020-12-28T05:23:26.000Z" + }, + "events": [ + { + "uuid": "183e42a4-af45-4596-b0e6-7b55130532c6", + "start": { + "$date": "2020-12-28T05:16:15.000Z" + }, + "end": { + "$date": "2020-12-28T05:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "uuid": "937301fd-0132-4738-9828-ef92fa9685b2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T05:17:58.000Z" + }, + "end": { + "$date": "2020-12-28T06:44:10.000Z" + }, + "events": [ + { + "uuid": "30db9630-084a-4143-a0f3-b4773b1ca826", + "start": { + "$date": "2020-12-28T05:17:58.000Z" + }, + "end": { + "$date": "2020-12-28T06:44:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "1e0d89e6-7d50-4043-bb8a-c9359eb06fe8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T05:31:37.000Z" + }, + "end": { + "$date": "2020-12-28T06:54:05.000Z" + }, + "events": [ + { + "uuid": "ab1d2d18-e408-49b5-8507-7ca68155ae78", + "start": { + "$date": "2020-12-28T05:31:37.000Z" + }, + "end": { + "$date": "2020-12-28T06:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", + "uuid": "56a247db-59df-4625-8aeb-e17264050116", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T05:32:37.000Z" + }, + "end": { + "$date": "2020-12-28T05:38:18.000Z" + }, + "events": [ + { + "uuid": "849e3f60-86c4-43c7-bb94-a647d9c5897b", + "start": { + "$date": "2020-12-28T05:32:37.000Z" + }, + "end": { + "$date": "2020-12-28T05:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d2e2ac6f-4629-4825-a67e-c3d41e0ac4b7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-28T05:34:34.000Z" + }, + "end": { + "$date": "2020-12-28T06:53:52.000Z" + }, + "events": [ + { + "uuid": "9f0bac0f-a708-4849-92ef-8f115b50de96", + "start": { + "$date": "2020-12-28T05:34:34.000Z" + }, + "end": { + "$date": "2020-12-28T06:53:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7b75f888-8023-4669-98a0-5567efc2c09d", + "uuid": "06d62d50-70d2-4d2e-91e1-f065ab8f1670", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T05:39:13.000Z" + }, + "end": { + "$date": "2020-12-28T06:04:18.000Z" + }, + "events": [ + { + "uuid": "00435879-cc8f-4c3c-9cc9-5dcefd6fa284", + "start": { + "$date": "2020-12-28T05:39:13.000Z" + }, + "end": { + "$date": "2020-12-28T06:04:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ff18e0b5-bc31-4b7a-971b-a07aa138c386", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-28T05:44:54.000Z" + }, + "end": { + "$date": "2020-12-28T08:28:49.000Z" + }, + "events": [ + { + "uuid": "ee1f6053-393f-434f-8fc5-42043cdd708c", + "start": { + "$date": "2020-12-28T05:44:54.000Z" + }, + "end": { + "$date": "2020-12-28T08:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d0b08e9a-3f4c-4860-8d5b-47044ddbefbb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-28T05:46:27.000Z" + }, + "end": { + "$date": "2020-12-28T06:53:54.000Z" + }, + "events": [ + { + "uuid": "4d92759c-064d-47fa-b084-11006edd7811", + "start": { + "$date": "2020-12-28T05:46:27.000Z" + }, + "end": { + "$date": "2020-12-28T06:53:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71187ff6-168e-47dc-bb08-84f6d964b767", + "uuid": "e7bc7d4a-d0f9-4e45-bd04-b7bdfb29adb4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-28T06:04:53.000Z" + }, + "end": { + "$date": "2020-12-28T06:48:14.000Z" + }, + "events": [ + { + "uuid": "03aa0fdf-bdfd-4949-8ea5-5e19f6e7adfc", + "start": { + "$date": "2020-12-28T06:04:53.000Z" + }, + "end": { + "$date": "2020-12-28T06:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f20625a3-8f83-47d3-9b82-9c3edf2eab16", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T06:16:55.000Z" + }, + "end": { + "$date": "2020-12-28T07:29:37.000Z" + }, + "events": [ + { + "uuid": "0b63746b-cf8b-4b44-9b79-240ee93c2aeb", + "start": { + "$date": "2020-12-28T06:16:55.000Z" + }, + "end": { + "$date": "2020-12-28T07:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "cbc1c692-7db9-4623-b466-4ccb689331ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T06:54:24.000Z" + }, + "end": { + "$date": "2020-12-28T07:05:03.000Z" + }, + "events": [ + { + "uuid": "d906d6f2-19e5-4404-9285-dbaa9312c331", + "start": { + "$date": "2020-12-28T06:54:24.000Z" + }, + "end": { + "$date": "2020-12-28T07:05:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6b00e368-7192-473b-8834-6c4feaaefd82", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-28T07:04:35.000Z" + }, + "end": { + "$date": "2020-12-28T07:55:53.000Z" + }, + "events": [ + { + "uuid": "164ab1e8-a330-419e-a25d-103b1b7a3ed6", + "start": { + "$date": "2020-12-28T07:04:35.000Z" + }, + "end": { + "$date": "2020-12-28T07:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19b3620b-7044-4bdd-8771-b86794fff3c5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T07:41:59.000Z" + }, + "end": { + "$date": "2020-12-28T08:08:15.000Z" + }, + "events": [ + { + "uuid": "8350d64e-57f9-4692-9dfd-be48872ab472", + "start": { + "$date": "2020-12-28T07:41:59.000Z" + }, + "end": { + "$date": "2020-12-28T08:08:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "0c1bf9e8-09e0-4089-b89d-b9192d7e07e5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-28T09:39:18.000Z" + }, + "end": { + "$date": "2020-12-28T16:01:23.000Z" + }, + "events": [ + { + "uuid": "f01d0b78-49fc-48dc-9f56-190489776c63", + "start": { + "$date": "2020-12-28T09:39:18.000Z" + }, + "end": { + "$date": "2020-12-28T16:01:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d93d0cc-8846-4a70-b449-2897404def35", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T16:06:40.000Z" + }, + "end": { + "$date": "2020-12-28T16:10:56.000Z" + }, + "events": [ + { + "uuid": "69cd498f-70fa-47d5-9232-a539ed5d7c09", + "start": { + "$date": "2020-12-28T16:06:40.000Z" + }, + "end": { + "$date": "2020-12-28T16:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "51e29f2b-8d1a-4d95-8c6d-8af8ee87832b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T16:27:12.000Z" + }, + "end": { + "$date": "2020-12-28T16:32:22.000Z" + }, + "events": [ + { + "uuid": "1d571b80-1231-45c7-a987-cc5e5801d484", + "start": { + "$date": "2020-12-28T16:27:12.000Z" + }, + "end": { + "$date": "2020-12-28T16:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb43c798-804a-4115-96ea-4366c4989829", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T16:32:37.000Z" + }, + "end": { + "$date": "2020-12-28T17:44:21.000Z" + }, + "events": [ + { + "uuid": "39a7c09e-94ce-41d1-af3a-b55a7e10c992", + "start": { + "$date": "2020-12-28T16:32:37.000Z" + }, + "end": { + "$date": "2020-12-28T17:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0cda6160-1a9a-4d21-9723-f4f808f94d38", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T17:10:21.000Z" + }, + "end": { + "$date": "2020-12-28T18:21:16.000Z" + }, + "events": [ + { + "uuid": "a2582460-703b-4fc6-8570-0e99695cf6af", + "start": { + "$date": "2020-12-28T17:10:21.000Z" + }, + "end": { + "$date": "2020-12-28T18:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "d4aa301a-5741-43d4-995b-13f72f71d7c3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-28T17:38:02.000Z" + }, + "end": { + "$date": "2020-12-28T18:18:24.000Z" + }, + "events": [ + { + "uuid": "1b646f67-9795-4d52-af84-2a0e6aa5cacc", + "start": { + "$date": "2020-12-28T17:38:02.000Z" + }, + "end": { + "$date": "2020-12-28T18:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "72271022-9138-4711-b231-2e416797aedc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T17:21:44.000Z" + }, + "end": { + "$date": "2020-12-28T19:15:33.000Z" + }, + "events": [ + { + "uuid": "5b6e8d2b-7ef1-40b6-8db3-eb9815c1bb5e", + "start": { + "$date": "2020-12-28T17:21:44.000Z" + }, + "end": { + "$date": "2020-12-28T19:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", + "uuid": "34ad968e-d558-497f-91b4-05cafd27ef2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T17:59:22.000Z" + }, + "end": { + "$date": "2020-12-28T18:07:58.000Z" + }, + "events": [ + { + "uuid": "4642f378-dcac-4212-885c-ae0971f7b14d", + "start": { + "$date": "2020-12-28T17:59:22.000Z" + }, + "end": { + "$date": "2020-12-28T18:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", + "uuid": "01d80b32-620c-4fca-8779-9d6f0502af65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T18:30:13.000Z" + }, + "end": { + "$date": "2020-12-28T19:16:30.000Z" + }, + "events": [ + { + "uuid": "f301c2bc-c7c3-4c37-b111-790267561727", + "start": { + "$date": "2020-12-28T18:30:13.000Z" + }, + "end": { + "$date": "2020-12-28T19:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "27922aac-cba1-464d-9ed4-9fbb11c135e3", + "uuid": "b6f4cb8f-ee71-428b-bf16-e0ce073dec03", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-28T18:44:05.000Z" + }, + "end": { + "$date": "2020-12-28T19:03:12.000Z" + }, + "events": [ + { + "uuid": "f1702287-1917-4cc8-9bd2-5a4a9610365f", + "start": { + "$date": "2020-12-28T18:44:05.000Z" + }, + "end": { + "$date": "2020-12-28T19:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "c35b8a5a-8291-4190-8f32-8a33cf577ae4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T18:52:18.000Z" + }, + "end": { + "$date": "2020-12-28T18:53:54.000Z" + }, + "events": [ + { + "uuid": "fd2799de-7108-4a3a-a166-372bd522cabe", + "start": { + "$date": "2020-12-28T18:52:18.000Z" + }, + "end": { + "$date": "2020-12-28T18:53:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "0f8edb12-f460-4801-b388-2d9b2f829ad2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T18:54:33.000Z" + }, + "end": { + "$date": "2020-12-28T19:41:55.000Z" + }, + "events": [ + { + "uuid": "e85f81c8-7251-4b18-9810-2b86afbe28d0", + "start": { + "$date": "2020-12-28T18:54:33.000Z" + }, + "end": { + "$date": "2020-12-28T19:41:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "08c81ded-d644-4768-a3af-11eed39cb94e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-28T19:04:01.000Z" + }, + "end": { + "$date": "2020-12-28T19:05:47.000Z" + }, + "events": [ + { + "uuid": "0b3e793e-c10c-45ec-a04b-e1f5d825f3ff", + "start": { + "$date": "2020-12-28T19:04:01.000Z" + }, + "end": { + "$date": "2020-12-28T19:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fa38c8f-7469-45a8-8831-823dd58b0efe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T19:13:48.000Z" + }, + "end": { + "$date": "2020-12-28T19:32:16.000Z" + }, + "events": [ + { + "uuid": "8257d5c0-a363-4396-b40a-32c41eb17cdf", + "start": { + "$date": "2020-12-28T19:13:48.000Z" + }, + "end": { + "$date": "2020-12-28T19:32:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e1621575-4805-4bfa-9f59-bad936bf061a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T19:16:15.000Z" + }, + "end": { + "$date": "2020-12-28T20:39:31.000Z" + }, + "events": [ + { + "uuid": "eeb6bdad-1a13-43fa-ba3f-e72b6e090a1d", + "start": { + "$date": "2020-12-28T19:16:15.000Z" + }, + "end": { + "$date": "2020-12-28T20:26:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7139c207-f1c0-41a9-a9bc-4424f16d3de2", + "start": { + "$date": "2020-12-28T20:26:15.000Z" + }, + "end": { + "$date": "2020-12-28T20:39:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15992da5-5935-4179-86ec-31bc23ce3827", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T19:38:39.000Z" + }, + "end": { + "$date": "2020-12-28T20:10:52.000Z" + }, + "events": [ + { + "uuid": "c7514aef-6e8f-4da3-b0bf-585b67f1c25a", + "start": { + "$date": "2020-12-28T19:38:39.000Z" + }, + "end": { + "$date": "2020-12-28T20:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e2550d5e-59b3-4934-a814-4819c6c4949b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T19:35:31.000Z" + }, + "end": { + "$date": "2020-12-28T20:34:23.000Z" + }, + "events": [ + { + "uuid": "9636b1b3-e08d-4a85-b8c4-516524bb70ff", + "start": { + "$date": "2020-12-28T19:35:31.000Z" + }, + "end": { + "$date": "2020-12-28T20:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e47c4a1-f413-47cd-90b1-58b92f441a2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T20:15:55.000Z" + }, + "end": { + "$date": "2020-12-28T20:45:50.000Z" + }, + "events": [ + { + "uuid": "d1aee857-ed35-4153-b703-fbe2c77bdb44", + "start": { + "$date": "2020-12-28T20:15:55.000Z" + }, + "end": { + "$date": "2020-12-28T20:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0a19e585-139c-4959-aa91-d7be37aaa69a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T20:20:02.000Z" + }, + "end": { + "$date": "2020-12-28T21:10:56.000Z" + }, + "events": [ + { + "uuid": "18322a98-e6ed-4348-b104-8d6f1a424de6", + "start": { + "$date": "2020-12-28T20:20:02.000Z" + }, + "end": { + "$date": "2020-12-28T21:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b92fd46a-1f83-4433-ba4e-74fea08f2745", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-28T20:36:33.000Z" + }, + "end": { + "$date": "2020-12-28T20:55:14.000Z" + }, + "events": [ + { + "uuid": "8dde8a15-53cb-46da-8778-22630d15fcf5", + "start": { + "$date": "2020-12-28T20:36:33.000Z" + }, + "end": { + "$date": "2020-12-28T20:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a0588ef1-a01b-496f-a800-d1d87e8a491d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-28T20:45:03.000Z" + }, + "end": { + "$date": "2020-12-28T23:04:25.000Z" + }, + "events": [ + { + "uuid": "6747c3f6-e61f-45d9-82a8-7d4b8c56a2e6", + "start": { + "$date": "2020-12-28T20:45:03.000Z" + }, + "end": { + "$date": "2020-12-28T23:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0b69dd3a-5532-42b9-93e2-4f01a3c1e322", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-28T20:45:27.000Z" + }, + "end": { + "$date": "2020-12-28T22:27:34.000Z" + }, + "events": [ + { + "uuid": "313a5395-a560-4a89-b9ca-bf0a311b41ce", + "start": { + "$date": "2020-12-28T20:45:27.000Z" + }, + "end": { + "$date": "2020-12-28T22:27:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2eeb1d36-cf8c-4f75-9f4f-5354cf14a6d7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T20:56:23.000Z" + }, + "end": { + "$date": "2020-12-28T21:07:08.000Z" + }, + "events": [ + { + "uuid": "421c176c-7a35-4e48-8b1e-b07e979cd8be", + "start": { + "$date": "2020-12-28T20:56:23.000Z" + }, + "end": { + "$date": "2020-12-28T21:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1dc7477-a6c4-4d6e-8f7c-65353ee43fe5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T20:56:25.000Z" + }, + "end": { + "$date": "2020-12-28T21:07:11.000Z" + }, + "events": [ + { + "uuid": "e766d85b-0442-4ffc-8b9f-7499b9e94f6b", + "start": { + "$date": "2020-12-28T20:56:25.000Z" + }, + "end": { + "$date": "2020-12-28T21:07:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32550310-1c99-483d-9fa9-c029a6891e0d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T21:11:38.000Z" + }, + "end": { + "$date": "2020-12-28T21:32:39.000Z" + }, + "events": [ + { + "uuid": "f346847f-dd00-4dc4-a4b0-a22b8e385fc0", + "start": { + "$date": "2020-12-28T21:11:38.000Z" + }, + "end": { + "$date": "2020-12-28T21:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39b299b0-faf5-45ee-b867-75f05cf4e967", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T21:11:37.000Z" + }, + "end": { + "$date": "2020-12-28T21:32:43.000Z" + }, + "events": [ + { + "uuid": "55117678-6659-40e0-bbca-eee90c73b944", + "start": { + "$date": "2020-12-28T21:11:37.000Z" + }, + "end": { + "$date": "2020-12-28T21:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cd7c9f2-87c8-4f94-9468-2a69df5c2167", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T21:37:34.000Z" + }, + "end": { + "$date": "2020-12-28T21:54:40.000Z" + }, + "events": [ + { + "uuid": "bcdfcb80-dfef-4ecf-bb77-fda10af39cc4", + "start": { + "$date": "2020-12-28T21:37:34.000Z" + }, + "end": { + "$date": "2020-12-28T21:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3fc5785-3949-4839-bb1a-2a2a421a1a3c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T21:37:08.000Z" + }, + "end": { + "$date": "2020-12-28T21:54:50.000Z" + }, + "events": [ + { + "uuid": "94a71568-f6b7-4c88-a8a6-1a0d0ff926d2", + "start": { + "$date": "2020-12-28T21:37:08.000Z" + }, + "end": { + "$date": "2020-12-28T21:54:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c47b7efd-69c9-4a03-bd18-9021785143c6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T21:57:25.000Z" + }, + "end": { + "$date": "2020-12-28T22:16:01.000Z" + }, + "events": [ + { + "uuid": "f9f22d50-9431-4358-89b1-5e3c989dfe5a", + "start": { + "$date": "2020-12-28T21:57:25.000Z" + }, + "end": { + "$date": "2020-12-28T22:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25cfca4e-2ccf-4b20-a73a-dfb647c828a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T21:57:29.000Z" + }, + "end": { + "$date": "2020-12-28T22:16:05.000Z" + }, + "events": [ + { + "uuid": "569c37c1-efab-4a74-8eea-0a640cff3712", + "start": { + "$date": "2020-12-28T21:57:29.000Z" + }, + "end": { + "$date": "2020-12-28T22:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83f9a4f0-90d7-445b-9c14-217224177aa4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T22:21:11.000Z" + }, + "end": { + "$date": "2020-12-28T22:35:37.000Z" + }, + "events": [ + { + "uuid": "8350b927-96ca-4803-8c52-a02b128710fd", + "start": { + "$date": "2020-12-28T22:21:11.000Z" + }, + "end": { + "$date": "2020-12-28T22:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a50f693c-bfe3-4af4-83b4-0436f1d5356b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T22:21:16.000Z" + }, + "end": { + "$date": "2020-12-28T22:35:41.000Z" + }, + "events": [ + { + "uuid": "a83ae8bc-f604-45ca-adf4-72a1642cff2c", + "start": { + "$date": "2020-12-28T22:21:16.000Z" + }, + "end": { + "$date": "2020-12-28T22:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b96eedf1-df37-4b20-b016-1f8d7b434bcc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-28T22:39:47.000Z" + }, + "end": { + "$date": "2020-12-28T22:56:48.000Z" + }, + "events": [ + { + "uuid": "640e1dbc-dc47-494d-87c3-e6ce9c24814b", + "start": { + "$date": "2020-12-28T22:39:47.000Z" + }, + "end": { + "$date": "2020-12-28T22:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c181761-4591-47f1-bfb6-095da4c56c6b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-28T22:39:47.000Z" + }, + "end": { + "$date": "2020-12-28T22:56:47.000Z" + }, + "events": [ + { + "uuid": "0a6a5a6f-0b15-41a5-8ac7-8b46a3f547da", + "start": { + "$date": "2020-12-28T22:39:47.000Z" + }, + "end": { + "$date": "2020-12-28T22:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "78644a49-672c-4caa-89e3-5a33a495231f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-28T23:06:48.000Z" + }, + "end": { + "$date": "2020-12-29T00:44:16.000Z" + }, + "events": [ + { + "uuid": "98eddf96-2915-412b-9c5f-58f583bd6354", + "start": { + "$date": "2020-12-28T23:06:48.000Z" + }, + "end": { + "$date": "2020-12-29T00:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e715c1b3-628c-463a-8753-c5170394476c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-28T23:35:56.000Z" + }, + "end": { + "$date": "2020-12-29T00:38:01.000Z" + }, + "events": [ + { + "uuid": "b480a03a-d9f6-4132-a445-ffde249b75a0", + "start": { + "$date": "2020-12-28T23:35:56.000Z" + }, + "end": { + "$date": "2020-12-29T00:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1dcfb14d-21c6-4bcb-bc3c-ea3b21a7411d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-28T23:39:20.000Z" + }, + "end": { + "$date": "2020-12-29T02:00:37.000Z" + }, + "events": [ + { + "uuid": "275eb0c8-7091-416d-adf8-ba661e105570", + "start": { + "$date": "2020-12-28T23:39:20.000Z" + }, + "end": { + "$date": "2020-12-29T02:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c7fbb75-9a95-49ed-89a3-7d1e03b14c42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-28T23:50:27.000Z" + }, + "end": { + "$date": "2020-12-29T00:31:13.000Z" + }, + "events": [ + { + "uuid": "cd91ecf3-7823-4041-944e-be8f512ef0ab", + "start": { + "$date": "2020-12-28T23:50:27.000Z" + }, + "end": { + "$date": "2020-12-29T00:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "90e66668-8098-4d04-9cef-28c8d6ed1fed", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-28T23:45:54.000Z" + }, + "end": { + "$date": "2020-12-29T00:21:27.000Z" + }, + "events": [ + { + "uuid": "7feff434-4599-437d-b72f-66f2eb0f3118", + "start": { + "$date": "2020-12-28T23:45:54.000Z" + }, + "end": { + "$date": "2020-12-29T00:21:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "282c1451-5ace-43fd-95b8-ba02520fa4f8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T00:31:53.000Z" + }, + "end": { + "$date": "2020-12-29T01:18:11.000Z" + }, + "events": [ + { + "uuid": "7a754caf-7729-448c-9094-e4bebc7a8efe", + "start": { + "$date": "2020-12-29T00:31:53.000Z" + }, + "end": { + "$date": "2020-12-29T00:47:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc1fad32-060b-4eb3-a060-d1b82797c18f", + "start": { + "$date": "2020-12-29T00:47:53.000Z" + }, + "end": { + "$date": "2020-12-29T00:55:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3c879181-2899-4e16-afb4-7623a84503f3", + "start": { + "$date": "2020-12-29T00:55:53.000Z" + }, + "end": { + "$date": "2020-12-29T01:18:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "2cbd93f5-faba-4fa8-a208-b1209019039d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-29T00:44:51.000Z" + }, + "end": { + "$date": "2020-12-29T01:19:04.000Z" + }, + "events": [ + { + "uuid": "4bdf476b-1ecd-4866-863a-a9c07e3e021c", + "start": { + "$date": "2020-12-29T00:44:51.000Z" + }, + "end": { + "$date": "2020-12-29T01:19:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "274e142f-b63c-4554-ac47-81ca3eec5c0d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T01:06:55.000Z" + }, + "end": { + "$date": "2020-12-29T01:59:56.000Z" + }, + "events": [ + { + "uuid": "8a729eac-1a7f-42cf-8b8c-a49a09f871cc", + "start": { + "$date": "2020-12-29T01:06:55.000Z" + }, + "end": { + "$date": "2020-12-29T01:59:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "051db9b9-f71c-4523-9649-bfdc330b136f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T01:18:15.000Z" + }, + "end": { + "$date": "2020-12-29T02:18:22.000Z" + }, + "events": [ + { + "uuid": "5378a655-20f8-4159-b69f-9f8ee30c0d9f", + "start": { + "$date": "2020-12-29T01:18:15.000Z" + }, + "end": { + "$date": "2020-12-29T02:18:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99abf30c-7492-4363-9286-ab3069c39d1c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-29T01:32:42.000Z" + }, + "end": { + "$date": "2020-12-29T03:37:52.000Z" + }, + "events": [ + { + "uuid": "abb7da96-444a-42c3-9693-d8896eaef16a", + "start": { + "$date": "2020-12-29T01:32:42.000Z" + }, + "end": { + "$date": "2020-12-29T03:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "38e72392-e42e-4a69-976c-7be360dee9bb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-29T01:58:19.000Z" + }, + "end": { + "$date": "2020-12-29T02:02:33.000Z" + }, + "events": [ + { + "uuid": "f2aa5ef6-df97-43d9-ac2d-8372f58dd527", + "start": { + "$date": "2020-12-29T01:58:19.000Z" + }, + "end": { + "$date": "2020-12-29T02:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "668f73f3-f201-49bf-8265-1f1dc3b5d604", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-29T02:38:24.000Z" + }, + "end": { + "$date": "2020-12-29T04:11:23.000Z" + }, + "events": [ + { + "uuid": "6adc23a5-14d8-425b-8866-d4fe32efdadf", + "start": { + "$date": "2020-12-29T02:38:24.000Z" + }, + "end": { + "$date": "2020-12-29T04:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f0e261c9-492a-4449-bccc-1e7e05e7349b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-29T02:39:35.000Z" + }, + "end": { + "$date": "2020-12-29T03:58:51.000Z" + }, + "events": [ + { + "uuid": "e64fbf11-b2ff-44fb-9958-bdbb8260a18a", + "start": { + "$date": "2020-12-29T02:39:35.000Z" + }, + "end": { + "$date": "2020-12-29T03:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1089a98-c21f-4f60-8e7b-49d7028798a7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T02:57:13.000Z" + }, + "end": { + "$date": "2020-12-29T03:29:50.000Z" + }, + "events": [ + { + "uuid": "eeb755a7-52aa-4a95-af69-2db0c1188fc9", + "start": { + "$date": "2020-12-29T02:57:13.000Z" + }, + "end": { + "$date": "2020-12-29T03:29:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "4e7443f4-6563-412b-b18e-34a9c2a82cf7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-29T02:52:50.000Z" + }, + "end": { + "$date": "2020-12-29T08:34:34.000Z" + }, + "events": [ + { + "uuid": "fdbb4187-b8e5-4389-bdfd-0c5f49bfe920", + "start": { + "$date": "2020-12-29T02:52:50.000Z" + }, + "end": { + "$date": "2020-12-29T08:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab86deeb-a04c-48d8-873e-87e82bcfea59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T02:57:11.000Z" + }, + "end": { + "$date": "2020-12-29T03:29:48.000Z" + }, + "events": [ + { + "uuid": "8d6f8b74-9038-48e5-8e9a-2396a152ad02", + "start": { + "$date": "2020-12-29T02:57:11.000Z" + }, + "end": { + "$date": "2020-12-29T03:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ca3f36e5-3781-4d35-bc51-aa4530add10a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T03:23:02.000Z" + }, + "end": { + "$date": "2020-12-29T04:02:13.000Z" + }, + "events": [ + { + "uuid": "01ba88fb-e49a-4d19-b191-d736cb963814", + "start": { + "$date": "2020-12-29T03:23:02.000Z" + }, + "end": { + "$date": "2020-12-29T04:02:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97eea3ed-d488-48f5-8ecc-b08da42ce11a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T03:37:10.000Z" + }, + "end": { + "$date": "2020-12-29T04:04:22.000Z" + }, + "events": [ + { + "uuid": "c6663ccc-7be1-46ca-bd8b-ab805bea1d3c", + "start": { + "$date": "2020-12-29T03:37:10.000Z" + }, + "end": { + "$date": "2020-12-29T04:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c32eec8-b767-45ca-8fba-051f31171849", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T03:37:07.000Z" + }, + "end": { + "$date": "2020-12-29T04:04:13.000Z" + }, + "events": [ + { + "uuid": "72f10bfb-a794-4e7d-abfe-070bc0d3277f", + "start": { + "$date": "2020-12-29T03:37:07.000Z" + }, + "end": { + "$date": "2020-12-29T04:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c712154c-9ce3-49ea-acd7-6144143770e8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-29T03:56:49.000Z" + }, + "end": { + "$date": "2020-12-29T06:44:03.000Z" + }, + "events": [ + { + "uuid": "adf51c89-2b11-4eed-9256-ef300a5940db", + "start": { + "$date": "2020-12-29T03:56:49.000Z" + }, + "end": { + "$date": "2020-12-29T06:44:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "uuid": "a6df3587-8a23-448c-b8ee-119f14360d82", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-29T04:02:00.000Z" + }, + "end": { + "$date": "2020-12-29T04:45:33.000Z" + }, + "events": [ + { + "uuid": "f52ac90d-6f33-4d09-8241-76a88148aa86", + "start": { + "$date": "2020-12-29T04:02:00.000Z" + }, + "end": { + "$date": "2020-12-29T04:45:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bf6b6a4-e200-46f3-98fe-d8aa66e19b30", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T04:12:43.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:41.000Z" + }, + "events": [ + { + "uuid": "60205bd8-3e36-4581-b27f-3cbf4a16f655", + "start": { + "$date": "2020-12-29T04:12:43.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a7b81f6-4d1a-4609-850e-6508b2238751", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T04:12:39.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:29.000Z" + }, + "events": [ + { + "uuid": "81d73ff9-1d6f-4409-bcc9-27b337d304f5", + "start": { + "$date": "2020-12-29T04:12:39.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d7b9bad-88e8-477e-9564-2d297ce3643e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T04:12:44.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:34.000Z" + }, + "events": [ + { + "uuid": "24c33994-6bfe-47a1-ba2e-0b111be99448", + "start": { + "$date": "2020-12-29T04:12:44.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b0f7708-c288-4de2-950d-a5f414eb4758", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T04:12:42.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:33.000Z" + }, + "events": [ + { + "uuid": "40a7346e-2bc4-4d13-9f66-d1aa032c05b3", + "start": { + "$date": "2020-12-29T04:12:42.000Z" + }, + "end": { + "$date": "2020-12-29T04:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fddb7e9d-a68a-4ed3-8c91-f0bd19cd19e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-29T04:11:21.000Z" + }, + "end": { + "$date": "2020-12-29T06:44:12.000Z" + }, + "events": [ + { + "uuid": "98155124-8435-4d85-b722-b275ba2b32fa", + "start": { + "$date": "2020-12-29T04:11:21.000Z" + }, + "end": { + "$date": "2020-12-29T06:44:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31cb7165-a65d-4e7d-9af3-e3fa466e19ca", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T04:35:04.000Z" + }, + "end": { + "$date": "2020-12-29T04:48:35.000Z" + }, + "events": [ + { + "uuid": "3c79c1d4-8791-4a55-b9c2-8fa24cf98fb8", + "start": { + "$date": "2020-12-29T04:35:04.000Z" + }, + "end": { + "$date": "2020-12-29T04:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "11af105a-326c-4098-a453-ebf19a21ea1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T04:32:00.000Z" + }, + "end": { + "$date": "2020-12-29T05:40:41.000Z" + }, + "events": [ + { + "uuid": "db5c9930-cb61-4827-9b14-102af79ad15b", + "start": { + "$date": "2020-12-29T04:32:00.000Z" + }, + "end": { + "$date": "2020-12-29T05:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "239811eb-4a74-4bec-90a7-4896272023bd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T04:32:29.000Z" + }, + "end": { + "$date": "2020-12-29T04:34:20.000Z" + }, + "events": [ + { + "uuid": "e1fcf288-7cb7-4cdb-b45d-8d4ffb4c31c1", + "start": { + "$date": "2020-12-29T04:32:29.000Z" + }, + "end": { + "$date": "2020-12-29T04:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ef6afa8-3b2d-4986-a491-87290ffbcbd3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T04:35:05.000Z" + }, + "end": { + "$date": "2020-12-29T04:48:40.000Z" + }, + "events": [ + { + "uuid": "f1d93bab-c023-40d1-a3a8-3d577f3a2f2c", + "start": { + "$date": "2020-12-29T04:35:05.000Z" + }, + "end": { + "$date": "2020-12-29T04:48:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d331e40-833c-4369-982a-bbbb07de40cf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T04:35:33.000Z" + }, + "end": { + "$date": "2020-12-29T04:48:24.000Z" + }, + "events": [ + { + "uuid": "75dfcc9c-8f92-4f60-aa35-e71df8959c70", + "start": { + "$date": "2020-12-29T04:35:33.000Z" + }, + "end": { + "$date": "2020-12-29T04:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdff2383-aa83-4127-86a5-38c281fc3f4d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T04:53:46.000Z" + }, + "end": { + "$date": "2020-12-29T05:07:52.000Z" + }, + "events": [ + { + "uuid": "312178d3-a118-4324-82d0-628cdf953ac0", + "start": { + "$date": "2020-12-29T04:53:46.000Z" + }, + "end": { + "$date": "2020-12-29T05:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "556e9a9e-1ba9-4c9b-8371-ea3d6fecd6f6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T04:53:44.000Z" + }, + "end": { + "$date": "2020-12-29T05:07:45.000Z" + }, + "events": [ + { + "uuid": "eddec80d-b59f-4117-8833-f538d6d854cf", + "start": { + "$date": "2020-12-29T04:53:44.000Z" + }, + "end": { + "$date": "2020-12-29T05:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d38ea18-8013-446c-b43a-d5f3fec462d9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T04:53:47.000Z" + }, + "end": { + "$date": "2020-12-29T05:07:51.000Z" + }, + "events": [ + { + "uuid": "f61a3ba9-0cdb-4a8f-9e17-0d85952fabfb", + "start": { + "$date": "2020-12-29T04:53:47.000Z" + }, + "end": { + "$date": "2020-12-29T05:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d609da3-9702-4728-888c-79e1cd8b8886", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T05:11:23.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:19.000Z" + }, + "events": [ + { + "uuid": "4c9666c6-1841-452d-969d-1d0a0dc46907", + "start": { + "$date": "2020-12-29T05:11:23.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28995408-ccf8-4271-ad4a-d6f7131f8d07", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-29T05:12:22.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:12.000Z" + }, + "events": [ + { + "uuid": "b77636cc-a4b3-47da-b14e-97b0b49ec3c9", + "start": { + "$date": "2020-12-29T05:12:22.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d2549db-850f-458c-9e26-ff9cea1fb16f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T05:11:19.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:15.000Z" + }, + "events": [ + { + "uuid": "932aece3-6df1-45d4-9d01-55af67987d27", + "start": { + "$date": "2020-12-29T05:11:19.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30278465-6447-4ab3-9b5e-dd333ff58140", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T05:11:23.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:22.000Z" + }, + "events": [ + { + "uuid": "c9598e95-24c9-4fab-8fa3-fe9b5f220537", + "start": { + "$date": "2020-12-29T05:11:23.000Z" + }, + "end": { + "$date": "2020-12-29T05:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "24d4d365-0a7a-452f-8537-6a8d6ee2aac7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-29T05:18:58.000Z" + }, + "end": { + "$date": "2020-12-29T06:07:59.000Z" + }, + "events": [ + { + "uuid": "e8a9c624-0cd3-4cd9-a259-8aec5f169e65", + "start": { + "$date": "2020-12-29T05:18:58.000Z" + }, + "end": { + "$date": "2020-12-29T06:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddf86c27-07ff-4c93-be94-1758fe5cfd30", + "uuid": "179b05d5-691b-4f3c-b5d7-cb2f1d63764a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-29T05:24:19.000Z" + }, + "end": { + "$date": "2020-12-29T05:27:26.000Z" + }, + "events": [ + { + "uuid": "475f0b18-8ce6-42ba-85c4-b0d730e8e62b", + "start": { + "$date": "2020-12-29T05:24:19.000Z" + }, + "end": { + "$date": "2020-12-29T05:27:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddf86c27-07ff-4c93-be94-1758fe5cfd30", + "uuid": "17c6bcc9-4856-42cd-bf52-710fe2e46b32", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-29T05:27:29.000Z" + }, + "end": { + "$date": "2020-12-29T06:39:15.000Z" + }, + "events": [ + { + "uuid": "fb33aeba-2fef-48fa-9371-b06f2ec0ea10", + "start": { + "$date": "2020-12-29T05:27:29.000Z" + }, + "end": { + "$date": "2020-12-29T05:54:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f59707e4-d29d-4c59-b507-806a3ffe387a", + "start": { + "$date": "2020-12-29T05:54:29.000Z" + }, + "end": { + "$date": "2020-12-29T05:55:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee63b597-ee0b-485a-ba75-5e967ebb459e", + "start": { + "$date": "2020-12-29T05:55:29.000Z" + }, + "end": { + "$date": "2020-12-29T06:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2c4fae4-21f9-486f-8e37-bcdaf75e0f4f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T05:36:14.000Z" + }, + "end": { + "$date": "2020-12-29T06:06:08.000Z" + }, + "events": [ + { + "uuid": "236f0727-bd62-4705-b81d-11fb36edf2a8", + "start": { + "$date": "2020-12-29T05:36:14.000Z" + }, + "end": { + "$date": "2020-12-29T06:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f9582b0-00b5-442e-95dd-eacec108c5f3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-29T05:36:13.000Z" + }, + "end": { + "$date": "2020-12-29T06:05:58.000Z" + }, + "events": [ + { + "uuid": "c4e8f1d6-0ebf-433f-a83d-63026f2b2b2f", + "start": { + "$date": "2020-12-29T05:36:13.000Z" + }, + "end": { + "$date": "2020-12-29T06:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77eb4a58-25ab-4ec9-9423-2ae363b12714", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T05:36:14.000Z" + }, + "end": { + "$date": "2020-12-29T06:06:05.000Z" + }, + "events": [ + { + "uuid": "2b6a10cb-d403-4b98-aee8-ee3679061378", + "start": { + "$date": "2020-12-29T05:36:14.000Z" + }, + "end": { + "$date": "2020-12-29T06:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2a5427a-ca56-4120-8295-a823442e4c09", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T05:36:09.000Z" + }, + "end": { + "$date": "2020-12-29T06:05:56.000Z" + }, + "events": [ + { + "uuid": "0596e1be-7afa-4764-a44c-e9d6462c1c14", + "start": { + "$date": "2020-12-29T05:36:09.000Z" + }, + "end": { + "$date": "2020-12-29T06:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9067c6de-12d3-49ef-9176-ba20d7375fe0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T06:06:15.000Z" + }, + "end": { + "$date": "2020-12-29T06:07:27.000Z" + }, + "events": [ + { + "uuid": "fa4c7846-4c6b-46b4-8746-1a488e22bc4d", + "start": { + "$date": "2020-12-29T06:06:15.000Z" + }, + "end": { + "$date": "2020-12-29T06:07:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "cc32776a-1976-4ff2-9e1b-db0a13bc32af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T06:46:31.000Z" + }, + "end": { + "$date": "2020-12-29T08:17:15.000Z" + }, + "events": [ + { + "uuid": "fa4f715f-287b-4e86-a926-1c3efc795789", + "start": { + "$date": "2020-12-29T06:46:31.000Z" + }, + "end": { + "$date": "2020-12-29T08:17:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa2496ff-7e66-4d22-8b88-01c6ce1abe7b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T08:45:04.000Z" + }, + "end": { + "$date": "2020-12-29T09:15:46.000Z" + }, + "events": [ + { + "uuid": "5def46c5-ab7c-48b3-b3f9-5497e18e3433", + "start": { + "$date": "2020-12-29T08:45:04.000Z" + }, + "end": { + "$date": "2020-12-29T09:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8e0d933e-c8c7-48f6-845d-d0cd9d664898", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-29T08:28:27.000Z" + }, + "end": { + "$date": "2020-12-29T09:11:50.000Z" + }, + "events": [ + { + "uuid": "be40e5b0-dc9d-43df-b585-f60bc839a9d8", + "start": { + "$date": "2020-12-29T08:28:27.000Z" + }, + "end": { + "$date": "2020-12-29T09:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "82198782-0c3d-4875-8fd0-57256b25f534", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-29T08:28:37.000Z" + }, + "end": { + "$date": "2020-12-29T09:09:19.000Z" + }, + "events": [ + { + "uuid": "6e890d67-41f0-4d07-b90f-7e7da6ca607b", + "start": { + "$date": "2020-12-29T08:28:37.000Z" + }, + "end": { + "$date": "2020-12-29T09:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "b0049ee0-0514-412d-826c-6d1070fa4aa0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-29T09:51:34.000Z" + }, + "end": { + "$date": "2020-12-29T10:18:41.000Z" + }, + "events": [ + { + "uuid": "78c19b5f-ae5e-4ca7-b7bb-3da9a0f3ee1b", + "start": { + "$date": "2020-12-29T09:51:34.000Z" + }, + "end": { + "$date": "2020-12-29T10:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "eddb61d1-96fb-4554-8fc0-0d2a2ce7413d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T14:25:54.000Z" + }, + "end": { + "$date": "2020-12-29T15:18:09.000Z" + }, + "events": [ + { + "uuid": "bef16e9d-75eb-4dc9-b7d9-5e80d750d934", + "start": { + "$date": "2020-12-29T14:25:54.000Z" + }, + "end": { + "$date": "2020-12-29T15:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62fe2487-530b-41f5-9542-ef7e12d383ed", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T15:26:41.000Z" + }, + "end": { + "$date": "2020-12-29T15:46:15.000Z" + }, + "events": [ + { + "uuid": "667057b9-8717-4caa-88f2-2a5b52f6bf7d", + "start": { + "$date": "2020-12-29T15:26:41.000Z" + }, + "end": { + "$date": "2020-12-29T15:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a6b9ffa9-c496-4664-8434-6813e447dcf8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T15:53:58.000Z" + }, + "end": { + "$date": "2020-12-29T16:36:09.000Z" + }, + "events": [ + { + "uuid": "85cedd7d-3650-45ab-b6cb-49ae7b7ce96c", + "start": { + "$date": "2020-12-29T15:53:58.000Z" + }, + "end": { + "$date": "2020-12-29T16:36:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8edaffd7-35c2-4da8-9685-0b3eed943494", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-29T16:23:19.000Z" + }, + "end": { + "$date": "2020-12-29T17:02:35.000Z" + }, + "events": [ + { + "uuid": "c2356bfa-69f1-4904-81ec-9dd1a558b21c", + "start": { + "$date": "2020-12-29T16:23:19.000Z" + }, + "end": { + "$date": "2020-12-29T17:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7e739dff-e635-47be-88ab-12d4bff8760f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T16:37:15.000Z" + }, + "end": { + "$date": "2020-12-29T16:54:36.000Z" + }, + "events": [ + { + "uuid": "7a780ab4-a0f5-4a50-8193-d1102443f266", + "start": { + "$date": "2020-12-29T16:37:15.000Z" + }, + "end": { + "$date": "2020-12-29T16:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5e7984ba-4b86-4841-a916-6e4c02ebcdb7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-29T17:30:03.000Z" + }, + "end": { + "$date": "2020-12-29T17:48:39.000Z" + }, + "events": [ + { + "uuid": "bbc7529a-da4b-4487-93f9-a6e2afab970a", + "start": { + "$date": "2020-12-29T17:30:03.000Z" + }, + "end": { + "$date": "2020-12-29T17:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c6d9c4a9-ec16-4001-91dc-3ec1eca3d2f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T17:44:04.000Z" + }, + "end": { + "$date": "2020-12-29T20:11:23.000Z" + }, + "events": [ + { + "uuid": "2465fefc-46db-4f41-b6ea-c7a037d06705", + "start": { + "$date": "2020-12-29T17:44:04.000Z" + }, + "end": { + "$date": "2020-12-29T18:36:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "16052d50-10fe-4638-a041-13e2d6ac3830", + "start": { + "$date": "2020-12-29T18:36:04.000Z" + }, + "end": { + "$date": "2020-12-29T18:39:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23a9c946-e466-441d-88c5-3445879d8bbe", + "start": { + "$date": "2020-12-29T18:39:04.000Z" + }, + "end": { + "$date": "2020-12-29T20:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "18b8e1c8-244c-4a85-8d72-d3e635452c96", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-29T17:50:24.000Z" + }, + "end": { + "$date": "2020-12-29T17:57:14.000Z" + }, + "events": [ + { + "uuid": "a8604e21-e3ca-48e1-b5ff-f7663977f9ee", + "start": { + "$date": "2020-12-29T17:50:24.000Z" + }, + "end": { + "$date": "2020-12-29T17:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "ed85bc12-3f79-4384-af98-7f04682a5683", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-29T17:50:25.000Z" + }, + "end": { + "$date": "2020-12-29T21:18:14.000Z" + }, + "events": [ + { + "uuid": "eb17fae2-2cb6-49c7-89b3-e9c2a8bff7d4", + "start": { + "$date": "2020-12-29T17:50:25.000Z" + }, + "end": { + "$date": "2020-12-29T21:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "7cdf03eb-a365-4bb5-9869-a4661f3a0e5a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-29T17:57:25.000Z" + }, + "end": { + "$date": "2020-12-29T21:06:02.000Z" + }, + "events": [ + { + "uuid": "bacfc0bf-2141-4ccd-bdeb-01aa2be2c518", + "start": { + "$date": "2020-12-29T17:57:25.000Z" + }, + "end": { + "$date": "2020-12-29T20:10:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "728415ad-3be8-4eb4-9394-2e66dc3a7b54", + "start": { + "$date": "2020-12-29T20:10:25.000Z" + }, + "end": { + "$date": "2020-12-29T20:16:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91e1dbcf-cd08-4d0d-99cd-a260d75d1314", + "start": { + "$date": "2020-12-29T20:16:25.000Z" + }, + "end": { + "$date": "2020-12-29T21:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "0a5831d2-9f80-4025-a95c-08d2c7df87bd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-29T19:03:46.000Z" + }, + "end": { + "$date": "2020-12-29T20:46:45.000Z" + }, + "events": [ + { + "uuid": "fe0166e4-e453-42ff-82d8-ea4646ef317b", + "start": { + "$date": "2020-12-29T19:03:46.000Z" + }, + "end": { + "$date": "2020-12-29T20:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cef544f9-5af2-4cba-a193-22a7a000128e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T19:19:56.000Z" + }, + "end": { + "$date": "2020-12-29T21:50:42.000Z" + }, + "events": [ + { + "uuid": "fa2180ff-9f28-4fb9-842c-3a6ec456afcb", + "start": { + "$date": "2020-12-29T19:19:56.000Z" + }, + "end": { + "$date": "2020-12-29T21:50:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fb94def-195e-4eaf-b2c9-31f67f6bc8e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T20:33:52.000Z" + }, + "end": { + "$date": "2020-12-29T20:34:02.000Z" + }, + "events": [ + { + "uuid": "c98ab273-eb20-41e6-bfc6-1eab975b7b08", + "start": { + "$date": "2020-12-29T20:33:52.000Z" + }, + "end": { + "$date": "2020-12-29T20:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "c146047f-4b06-4312-ab69-baa7bf04ae1a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-29T20:20:22.000Z" + }, + "end": { + "$date": "2020-12-29T20:45:58.000Z" + }, + "events": [ + { + "uuid": "a6c92f8b-7135-4bb6-9f6c-e672798d07b5", + "start": { + "$date": "2020-12-29T20:20:22.000Z" + }, + "end": { + "$date": "2020-12-29T20:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55d1ae24-30f4-4c60-8c3d-b8b7ba58dc48", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T20:41:21.000Z" + }, + "end": { + "$date": "2020-12-29T21:10:41.000Z" + }, + "events": [ + { + "uuid": "a471508f-dd2a-4245-b2af-e94f3d78ac98", + "start": { + "$date": "2020-12-29T20:41:21.000Z" + }, + "end": { + "$date": "2020-12-29T21:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8bef3ce-a537-4d73-8371-93f811a48e61", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T20:41:23.000Z" + }, + "end": { + "$date": "2020-12-29T21:10:42.000Z" + }, + "events": [ + { + "uuid": "cc00e0e2-63c7-4074-b061-192b639b5450", + "start": { + "$date": "2020-12-29T20:41:23.000Z" + }, + "end": { + "$date": "2020-12-29T21:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "33eac253-2f32-4e72-a0c9-3cadf06a8c12", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-29T20:46:22.000Z" + }, + "end": { + "$date": "2020-12-29T21:17:50.000Z" + }, + "events": [ + { + "uuid": "e3fb462c-66ff-4a96-a622-a26d03a9a3ae", + "start": { + "$date": "2020-12-29T20:46:22.000Z" + }, + "end": { + "$date": "2020-12-29T21:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "758427f5-a666-4595-93d7-b1ee4db5b179", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T21:20:17.000Z" + }, + "end": { + "$date": "2020-12-29T21:23:42.000Z" + }, + "events": [ + { + "uuid": "d0a6f4f3-5f8f-4fd6-986a-12811935c9ef", + "start": { + "$date": "2020-12-29T21:20:17.000Z" + }, + "end": { + "$date": "2020-12-29T21:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0de6a481-4c94-421c-85b0-897b43684579", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T21:18:10.000Z" + }, + "end": { + "$date": "2020-12-29T21:23:41.000Z" + }, + "events": [ + { + "uuid": "ff2b3f94-e184-4c27-9c3d-be0cfa22dc58", + "start": { + "$date": "2020-12-29T21:18:10.000Z" + }, + "end": { + "$date": "2020-12-29T21:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "0f86bf34-c7fc-442f-a429-4b694f6ccd29", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-29T21:18:49.000Z" + }, + "end": { + "$date": "2020-12-29T21:36:14.000Z" + }, + "events": [ + { + "uuid": "5fe9524e-8d8f-483b-b7b2-c5aa2f1a3853", + "start": { + "$date": "2020-12-29T21:18:49.000Z" + }, + "end": { + "$date": "2020-12-29T21:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "99f1384a-985f-4682-aac7-c9c9917eaddc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-29T21:21:14.000Z" + }, + "end": { + "$date": "2020-12-29T23:09:20.000Z" + }, + "events": [ + { + "uuid": "4a33e604-f458-4cb2-96a5-aca79906167f", + "start": { + "$date": "2020-12-29T21:21:14.000Z" + }, + "end": { + "$date": "2020-12-29T23:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2856660c-8223-47bc-b4ad-342505eb1b9b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T23:26:14.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:19.000Z" + }, + "events": [ + { + "uuid": "53bd986c-4134-400c-8c00-e455124293db", + "start": { + "$date": "2020-12-29T23:26:14.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69eb29fc-ba51-4bfb-9790-4e2198732f41", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T21:56:02.000Z" + }, + "end": { + "$date": "2020-12-29T21:56:13.000Z" + }, + "events": [ + { + "uuid": "25782fe0-48a5-4fa7-8c0e-27a5680c5e5a", + "start": { + "$date": "2020-12-29T21:56:02.000Z" + }, + "end": { + "$date": "2020-12-29T21:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a068b95-1e49-404a-a5c6-6db1dd3f5fcc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T21:56:44.000Z" + }, + "end": { + "$date": "2020-12-29T21:57:49.000Z" + }, + "events": [ + { + "uuid": "3fad09e3-35be-457c-8c2d-fd50cefa8ece", + "start": { + "$date": "2020-12-29T21:56:44.000Z" + }, + "end": { + "$date": "2020-12-29T21:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45422738-e5d2-4718-bb3e-ca0c773fde4f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T21:56:41.000Z" + }, + "end": { + "$date": "2020-12-29T21:57:49.000Z" + }, + "events": [ + { + "uuid": "0074025d-17e0-49c2-a5df-d2bdbf410921", + "start": { + "$date": "2020-12-29T21:56:41.000Z" + }, + "end": { + "$date": "2020-12-29T21:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0405ce2-b7e5-438a-ae8b-574912833e27", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T22:06:11.000Z" + }, + "end": { + "$date": "2020-12-29T22:31:42.000Z" + }, + "events": [ + { + "uuid": "f2de5d7d-6092-46ec-b7e0-ea18d3f2e202", + "start": { + "$date": "2020-12-29T22:06:11.000Z" + }, + "end": { + "$date": "2020-12-29T22:31:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a269fa73-81cd-48b1-afca-e89af4b167b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T22:05:43.000Z" + }, + "end": { + "$date": "2020-12-29T22:31:41.000Z" + }, + "events": [ + { + "uuid": "b2b2b7fb-a600-4bca-b6b8-f54afc85bbb7", + "start": { + "$date": "2020-12-29T22:05:43.000Z" + }, + "end": { + "$date": "2020-12-29T22:31:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3ef7d20-54b7-4f68-b36f-b9b1bf6a57e1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T22:34:47.000Z" + }, + "end": { + "$date": "2020-12-29T23:20:38.000Z" + }, + "events": [ + { + "uuid": "9c7682be-6cf5-4c62-955a-15e082d4df5e", + "start": { + "$date": "2020-12-29T22:34:47.000Z" + }, + "end": { + "$date": "2020-12-29T23:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "470ed2ea-a77a-4e66-aa48-c26278699a81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T22:34:47.000Z" + }, + "end": { + "$date": "2020-12-29T23:20:39.000Z" + }, + "events": [ + { + "uuid": "ba8d2bc4-f31b-4b3f-9d80-4c5b8cf5cfd0", + "start": { + "$date": "2020-12-29T22:34:47.000Z" + }, + "end": { + "$date": "2020-12-29T23:20:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddb7f0b6-d04c-41df-9407-b93315c52f61", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T23:20:50.000Z" + }, + "end": { + "$date": "2020-12-29T23:20:47.000Z" + }, + "events": [ + { + "uuid": "27482aad-28f2-4409-8aa7-123e5d871ceb", + "start": { + "$date": "2020-12-29T23:20:50.000Z" + }, + "end": { + "$date": "2020-12-29T23:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "64177e1f-7fc9-46a3-ba0f-fbc13732e1d1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-29T23:13:20.000Z" + }, + "end": { + "$date": "2020-12-29T23:16:16.000Z" + }, + "events": [ + { + "uuid": "5fb60aed-d9cb-49b1-a790-2bc830f95bfc", + "start": { + "$date": "2020-12-29T23:13:20.000Z" + }, + "end": { + "$date": "2020-12-29T23:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02e26eb2-0caa-4196-b560-c6cfbf65306c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-29T23:27:49.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:19.000Z" + }, + "events": [ + { + "uuid": "dd2b0689-6e36-4700-9415-8f4efbef7473", + "start": { + "$date": "2020-12-29T23:27:49.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b496c83b-d908-482a-bd2d-7706d92030e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-29T23:28:18.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:20.000Z" + }, + "events": [ + { + "uuid": "9f02f2e8-0673-4c2b-973c-17410f06ac21", + "start": { + "$date": "2020-12-29T23:28:18.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "451951db-0f0b-4f6f-b279-277dfee5e21b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-29T23:26:21.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:28.000Z" + }, + "events": [ + { + "uuid": "ad55bd7b-0db3-4efa-bec6-b0397bbb54e1", + "start": { + "$date": "2020-12-29T23:26:21.000Z" + }, + "end": { + "$date": "2020-12-29T23:43:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aae48fb-221f-4cf1-9077-682797662aac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-29T23:50:40.000Z" + }, + "end": { + "$date": "2020-12-30T00:09:36.000Z" + }, + "events": [ + { + "uuid": "2f217ebd-e101-47db-913e-d79098e59fc7", + "start": { + "$date": "2020-12-29T23:50:40.000Z" + }, + "end": { + "$date": "2020-12-30T00:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03252582-f765-4cf1-96e1-e7c0cf3d7aa9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-29T23:50:48.000Z" + }, + "end": { + "$date": "2020-12-30T00:09:35.000Z" + }, + "events": [ + { + "uuid": "ebb899e2-0d3e-41ca-b758-6b683a01281e", + "start": { + "$date": "2020-12-29T23:50:48.000Z" + }, + "end": { + "$date": "2020-12-30T00:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a0db09b-0030-4ac8-abe7-9eb4cdf2d4b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-29T23:50:46.000Z" + }, + "end": { + "$date": "2020-12-30T00:09:39.000Z" + }, + "events": [ + { + "uuid": "db590269-0bea-4c3d-8d74-8da1bcde17be", + "start": { + "$date": "2020-12-29T23:50:46.000Z" + }, + "end": { + "$date": "2020-12-30T00:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5488f827-2ad9-4a0b-a27f-20d94ee803eb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T00:26:06.000Z" + }, + "end": { + "$date": "2020-12-30T01:10:29.000Z" + }, + "events": [ + { + "uuid": "54ebca83-9574-4752-b92a-07bc4d35e37f", + "start": { + "$date": "2020-12-30T00:26:06.000Z" + }, + "end": { + "$date": "2020-12-30T01:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "b0319d21-e2cc-45b9-adbb-9f67eead8b12", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-30T01:09:40.000Z" + }, + "end": { + "$date": "2020-12-30T01:53:09.000Z" + }, + "events": [ + { + "uuid": "c2c52dd9-dcf7-4843-938d-ba7f10dbc683", + "start": { + "$date": "2020-12-30T01:09:40.000Z" + }, + "end": { + "$date": "2020-12-30T01:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "9e40a9ef-557a-48ee-a275-6592dfd490df", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T03:45:07.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:38.000Z" + }, + "events": [ + { + "uuid": "2ed2fae8-b1cc-42e8-916a-1efb5f0f59cc", + "start": { + "$date": "2020-12-30T03:45:07.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "464db7ea-2f86-40e1-b363-7bf77e599a08", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T01:22:03.000Z" + }, + "end": { + "$date": "2020-12-30T01:42:38.000Z" + }, + "events": [ + { + "uuid": "185ee23e-15ba-4d31-8681-3f76b09cb6fa", + "start": { + "$date": "2020-12-30T01:22:03.000Z" + }, + "end": { + "$date": "2020-12-30T01:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a35b358-c4b6-40dc-b620-62129561ef88", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-30T01:22:06.000Z" + }, + "end": { + "$date": "2020-12-30T01:42:39.000Z" + }, + "events": [ + { + "uuid": "7abbbc53-5e4d-4d00-ab47-5f84037282ea", + "start": { + "$date": "2020-12-30T01:22:06.000Z" + }, + "end": { + "$date": "2020-12-30T01:42:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45eb3ece-2ec8-4c0a-90b8-6fddec31b010", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T01:22:05.000Z" + }, + "end": { + "$date": "2020-12-30T01:42:39.000Z" + }, + "events": [ + { + "uuid": "dafe7194-e562-4041-b32a-6fa8e88e75c5", + "start": { + "$date": "2020-12-30T01:22:05.000Z" + }, + "end": { + "$date": "2020-12-30T01:42:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bf6b8b4-be6b-4929-b30e-643602b62ca8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T01:47:24.000Z" + }, + "end": { + "$date": "2020-12-30T02:07:54.000Z" + }, + "events": [ + { + "uuid": "0258ea1e-9aca-47f4-b5c0-515ebfc0caa6", + "start": { + "$date": "2020-12-30T01:47:24.000Z" + }, + "end": { + "$date": "2020-12-30T02:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f6392a8-3746-47d5-b23d-3f3c0d89ac5b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-30T01:47:32.000Z" + }, + "end": { + "$date": "2020-12-30T02:07:50.000Z" + }, + "events": [ + { + "uuid": "bfa72482-8d4a-448e-8aa3-c1b3ad2d494e", + "start": { + "$date": "2020-12-30T01:47:32.000Z" + }, + "end": { + "$date": "2020-12-30T02:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47cbf228-39ba-436b-ad85-9a3acca41acc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T01:47:26.000Z" + }, + "end": { + "$date": "2020-12-30T02:07:53.000Z" + }, + "events": [ + { + "uuid": "87b5fd7c-bc41-4b8c-b855-5763ba7ebf85", + "start": { + "$date": "2020-12-30T01:47:26.000Z" + }, + "end": { + "$date": "2020-12-30T02:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc736fe5-d86c-47b9-91e7-059cca8de67a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T02:15:46.000Z" + }, + "end": { + "$date": "2020-12-30T02:35:07.000Z" + }, + "events": [ + { + "uuid": "b09ff869-8de2-4af1-99f0-675d79c647cd", + "start": { + "$date": "2020-12-30T02:15:46.000Z" + }, + "end": { + "$date": "2020-12-30T02:35:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17d5e620-fbf7-4ceb-86e9-aa63842bc5fa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-30T02:15:54.000Z" + }, + "end": { + "$date": "2020-12-30T02:35:07.000Z" + }, + "events": [ + { + "uuid": "3c91d15b-f3f5-45e5-894d-566dc05863b9", + "start": { + "$date": "2020-12-30T02:15:54.000Z" + }, + "end": { + "$date": "2020-12-30T02:35:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8d14d34-53b5-4e06-a50a-64ce789c58c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T02:15:53.000Z" + }, + "end": { + "$date": "2020-12-30T02:35:10.000Z" + }, + "events": [ + { + "uuid": "7212ea29-528e-4359-af11-3cbe8403e329", + "start": { + "$date": "2020-12-30T02:15:53.000Z" + }, + "end": { + "$date": "2020-12-30T02:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "09bcee4e-cba9-4ae4-a778-2ec661a5e375", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-30T02:34:17.000Z" + }, + "end": { + "$date": "2020-12-30T03:02:56.000Z" + }, + "events": [ + { + "uuid": "76cfa660-a3e5-48f3-afcf-bf9245fcb96b", + "start": { + "$date": "2020-12-30T02:34:17.000Z" + }, + "end": { + "$date": "2020-12-30T03:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1830bd58-4e33-4679-83c0-8f7f89325be1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T02:40:53.000Z" + }, + "end": { + "$date": "2020-12-30T02:58:08.000Z" + }, + "events": [ + { + "uuid": "366b2ed8-27bc-404d-8046-82dbc2d24d0a", + "start": { + "$date": "2020-12-30T02:40:53.000Z" + }, + "end": { + "$date": "2020-12-30T02:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1260b7a6-bf09-4e23-93ea-8c15774519c6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-30T02:40:58.000Z" + }, + "end": { + "$date": "2020-12-30T02:58:09.000Z" + }, + "events": [ + { + "uuid": "2a4630cf-5fa2-4e70-8bf5-33500f439510", + "start": { + "$date": "2020-12-30T02:40:58.000Z" + }, + "end": { + "$date": "2020-12-30T02:58:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fd49844-5cfd-4f7f-80e0-7901849ee61f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T02:40:50.000Z" + }, + "end": { + "$date": "2020-12-30T02:57:57.000Z" + }, + "events": [ + { + "uuid": "754dde77-a33a-45db-8dbf-0abe38d92209", + "start": { + "$date": "2020-12-30T02:40:50.000Z" + }, + "end": { + "$date": "2020-12-30T02:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "70808b16-ac93-4db9-9292-1f118f7b3fc2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-30T02:39:32.000Z" + }, + "end": { + "$date": "2020-12-30T02:48:43.000Z" + }, + "events": [ + { + "uuid": "d8b6d7dd-49e4-47e3-a32b-718a0a86f0d9", + "start": { + "$date": "2020-12-30T02:39:32.000Z" + }, + "end": { + "$date": "2020-12-30T02:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fdfba13b-7d58-48c3-a9f6-34da9e1813b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-30T02:49:03.000Z" + }, + "end": { + "$date": "2020-12-30T05:21:14.000Z" + }, + "events": [ + { + "uuid": "ed5af89d-44a0-4148-a20d-9e4bc539e849", + "start": { + "$date": "2020-12-30T02:49:03.000Z" + }, + "end": { + "$date": "2020-12-30T05:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e7ce4d2-3974-4f6f-95af-f7bc4878dd44", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T03:45:12.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:42.000Z" + }, + "events": [ + { + "uuid": "19613d83-25f6-49a2-b43b-6f257f848260", + "start": { + "$date": "2020-12-30T03:45:12.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3b3b20c-d4d2-40b8-a4f7-c319390bed91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T03:03:31.000Z" + }, + "end": { + "$date": "2020-12-30T03:35:28.000Z" + }, + "events": [ + { + "uuid": "30d91881-a2ef-404b-a839-572530372c84", + "start": { + "$date": "2020-12-30T03:03:31.000Z" + }, + "end": { + "$date": "2020-12-30T03:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "edbc70f8-d84f-4547-8b8b-1cf8492e4203", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T03:01:14.000Z" + }, + "end": { + "$date": "2020-12-30T03:23:15.000Z" + }, + "events": [ + { + "uuid": "140492fb-a06c-4223-96a0-1a4a9c9e7b8b", + "start": { + "$date": "2020-12-30T03:01:14.000Z" + }, + "end": { + "$date": "2020-12-30T03:23:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c9f451e3-9854-47ac-8620-6a40ee34382b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-30T03:03:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:35:00.000Z" + }, + "events": [ + { + "uuid": "a012851f-217c-4eec-a582-2cc378e1af90", + "start": { + "$date": "2020-12-30T03:03:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:35:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d938eef-042b-4e26-a4b9-ff27f7869c07", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T03:36:54.000Z" + }, + "end": { + "$date": "2020-12-30T03:38:26.000Z" + }, + "events": [ + { + "uuid": "9c7208dd-d2d4-453e-b078-84e3fbd5039f", + "start": { + "$date": "2020-12-30T03:36:54.000Z" + }, + "end": { + "$date": "2020-12-30T03:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80625a8e-838a-4a95-be6d-c680501bd1dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T03:36:58.000Z" + }, + "end": { + "$date": "2020-12-30T03:38:26.000Z" + }, + "events": [ + { + "uuid": "94bcf088-68c7-42ee-a037-fc470510e1c8", + "start": { + "$date": "2020-12-30T03:36:58.000Z" + }, + "end": { + "$date": "2020-12-30T03:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b60a2713-c505-4f81-83e8-e73cffdba4d6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T03:39:37.000Z" + }, + "end": { + "$date": "2020-12-30T03:40:53.000Z" + }, + "events": [ + { + "uuid": "c43e721d-a8ce-44d2-b530-49088a05be0d", + "start": { + "$date": "2020-12-30T03:39:37.000Z" + }, + "end": { + "$date": "2020-12-30T03:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4decad69-558d-4078-a121-65b54ddcf2e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T03:39:36.000Z" + }, + "end": { + "$date": "2020-12-30T03:40:53.000Z" + }, + "events": [ + { + "uuid": "78a30a63-c6b7-4c8a-a167-799051cc8aa8", + "start": { + "$date": "2020-12-30T03:39:36.000Z" + }, + "end": { + "$date": "2020-12-30T03:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8339dce-5b00-4903-8338-cf480e60a1a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T03:39:41.000Z" + }, + "end": { + "$date": "2020-12-30T03:40:53.000Z" + }, + "events": [ + { + "uuid": "477320f4-3270-4bcd-b3c5-3c82ad7b411f", + "start": { + "$date": "2020-12-30T03:39:41.000Z" + }, + "end": { + "$date": "2020-12-30T03:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0808de05-9d9e-4a7f-b6dc-84ac5421f6a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T03:42:26.000Z" + }, + "end": { + "$date": "2020-12-30T03:57:08.000Z" + }, + "events": [ + { + "uuid": "4c6daf88-e0d2-41c0-9583-c0c52a5c12f0", + "start": { + "$date": "2020-12-30T03:42:26.000Z" + }, + "end": { + "$date": "2020-12-30T03:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94f04d4d-0b2e-455b-bc52-04825a3b00c3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T03:45:10.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:41.000Z" + }, + "events": [ + { + "uuid": "0160dcbc-1461-45d0-aa88-543521a5f733", + "start": { + "$date": "2020-12-30T03:45:10.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "576e4fc8-9d1a-4eeb-bf4a-dd2736c947f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T03:46:01.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:37.000Z" + }, + "events": [ + { + "uuid": "c29eb30a-b7ec-4f67-b64b-a70cb7d083d5", + "start": { + "$date": "2020-12-30T03:46:01.000Z" + }, + "end": { + "$date": "2020-12-30T03:56:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "31a54189-25c3-4cf5-b7b3-bec17e797b35", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-30T03:49:49.000Z" + }, + "end": { + "$date": "2020-12-30T06:36:44.000Z" + }, + "events": [ + { + "uuid": "07a04dab-9891-4d2f-b3e0-740dd18e460f", + "start": { + "$date": "2020-12-30T03:49:49.000Z" + }, + "end": { + "$date": "2020-12-30T06:36:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6fbd70a-4de7-4b03-851f-4bb5a070a0aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T04:00:03.000Z" + }, + "end": { + "$date": "2020-12-30T04:18:04.000Z" + }, + "events": [ + { + "uuid": "1586a734-6c94-43af-a2ff-e00afff7fd39", + "start": { + "$date": "2020-12-30T04:00:03.000Z" + }, + "end": { + "$date": "2020-12-30T04:18:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1691fbc8-bbf7-4414-9bcc-7b5f0c5a51d0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T03:59:58.000Z" + }, + "end": { + "$date": "2020-12-30T04:18:09.000Z" + }, + "events": [ + { + "uuid": "c85e879b-6127-4e98-bb28-7208470fe9db", + "start": { + "$date": "2020-12-30T03:59:58.000Z" + }, + "end": { + "$date": "2020-12-30T04:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db5f7673-6dee-4d73-a67b-24f50cf15fa0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T04:00:37.000Z" + }, + "end": { + "$date": "2020-12-30T04:17:57.000Z" + }, + "events": [ + { + "uuid": "33c78f64-ec3d-45f6-babc-3d033acebb28", + "start": { + "$date": "2020-12-30T04:00:37.000Z" + }, + "end": { + "$date": "2020-12-30T04:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5cc9ce3-a10b-42ef-b9cb-38dbfb89660c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T04:00:37.000Z" + }, + "end": { + "$date": "2020-12-30T04:17:57.000Z" + }, + "events": [ + { + "uuid": "ccfbe442-dc4f-4e66-aedc-9cfc386198ba", + "start": { + "$date": "2020-12-30T04:00:37.000Z" + }, + "end": { + "$date": "2020-12-30T04:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c632494d-b4ed-40f7-b68e-f391d3d38e24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T04:00:07.000Z" + }, + "end": { + "$date": "2020-12-30T04:18:10.000Z" + }, + "events": [ + { + "uuid": "fdbfb861-d4b3-4136-8d27-8532e61f35a0", + "start": { + "$date": "2020-12-30T04:00:07.000Z" + }, + "end": { + "$date": "2020-12-30T04:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2887d669-420b-44d3-8a51-d10420d78ff7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T04:21:40.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:56.000Z" + }, + "events": [ + { + "uuid": "fed897f2-ac0a-4a11-8f20-45b2d4d8fd88", + "start": { + "$date": "2020-12-30T04:21:40.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0585f938-5c24-454e-8b60-ff9316c6a3e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T04:18:22.000Z" + }, + "end": { + "$date": "2020-12-30T04:27:18.000Z" + }, + "events": [ + { + "uuid": "4c14be23-8ceb-40c8-82d2-bf22f23302dd", + "start": { + "$date": "2020-12-30T04:18:22.000Z" + }, + "end": { + "$date": "2020-12-30T04:27:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f8e5ee7-2b04-4da1-94c6-ca49c8007336", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T04:21:39.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:45.000Z" + }, + "events": [ + { + "uuid": "80885006-4630-4b47-950b-7d0979183058", + "start": { + "$date": "2020-12-30T04:21:39.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55b09b25-b0d5-48b5-b562-c6f52f44f3c1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T04:22:07.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:48.000Z" + }, + "events": [ + { + "uuid": "9f681d07-9c86-48f0-9820-22044985d86c", + "start": { + "$date": "2020-12-30T04:22:07.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7ded1b0-4938-496f-81bc-d628401caf4d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T04:21:43.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:57.000Z" + }, + "events": [ + { + "uuid": "b259bcd7-e0c3-4cad-8d97-046a82cba8a2", + "start": { + "$date": "2020-12-30T04:21:43.000Z" + }, + "end": { + "$date": "2020-12-30T04:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2987dfb4-fb6a-4b93-a357-ff2b813860f9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T04:45:43.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:14.000Z" + }, + "events": [ + { + "uuid": "661e2ff7-ce58-477d-a9e0-05ad1f548740", + "start": { + "$date": "2020-12-30T04:45:43.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14ab35f0-fdcc-4bad-8f12-55e14585209b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T04:45:39.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:11.000Z" + }, + "events": [ + { + "uuid": "c5dfe854-316f-4187-bfe5-1f5588363484", + "start": { + "$date": "2020-12-30T04:45:39.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abbcff96-e179-409b-99df-6349a6cffaa4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T04:45:49.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:12.000Z" + }, + "events": [ + { + "uuid": "1fe525c6-8d9d-422c-87da-68badf6e9fb3", + "start": { + "$date": "2020-12-30T04:45:49.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3e1d892-ef09-4a6a-a1cd-c85e46fb54ff", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T04:45:43.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:03.000Z" + }, + "events": [ + { + "uuid": "17285f39-dd15-4a06-8bad-be8590c9db14", + "start": { + "$date": "2020-12-30T04:45:43.000Z" + }, + "end": { + "$date": "2020-12-30T05:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1cc5c4e2-ac5b-4632-80c9-b09cc9a41c1a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T04:52:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:42:53.000Z" + }, + "events": [ + { + "uuid": "4dc54398-6a43-4590-94a6-a6594cebe27f", + "start": { + "$date": "2020-12-30T04:52:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:04:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "870c708b-9166-42ff-af02-2107f99a5dfe", + "start": { + "$date": "2020-12-30T06:04:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:13:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c6ab87d3-d45e-4fa9-9bb8-7bdd9318aabd", + "start": { + "$date": "2020-12-30T06:13:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:16:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01a5509d-923a-46f7-9e11-9524a04c3481", + "start": { + "$date": "2020-12-30T06:16:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:23:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3368a361-5b3e-4202-af04-03c81db204ca", + "start": { + "$date": "2020-12-30T06:23:37.000Z" + }, + "end": { + "$date": "2020-12-30T06:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d685001-2d3f-4125-a6e9-d8abc7b5f516", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T05:16:25.000Z" + }, + "end": { + "$date": "2020-12-30T05:55:16.000Z" + }, + "events": [ + { + "uuid": "27320108-ad14-45cf-a75f-709f4a9609c3", + "start": { + "$date": "2020-12-30T05:16:25.000Z" + }, + "end": { + "$date": "2020-12-30T05:55:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b3ad8d9-de9f-4efa-b1f1-97710b01fbf7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T05:08:14.000Z" + }, + "end": { + "$date": "2020-12-30T05:11:14.000Z" + }, + "events": [ + { + "uuid": "babfeba6-0ec2-4917-9df3-7ef953cfb0ff", + "start": { + "$date": "2020-12-30T05:08:14.000Z" + }, + "end": { + "$date": "2020-12-30T05:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f3c6514-6a34-4f0d-9e9e-e069be9386f1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T05:08:18.000Z" + }, + "end": { + "$date": "2020-12-30T05:11:14.000Z" + }, + "events": [ + { + "uuid": "2a7cfc5d-5337-4418-a6e2-b2b98e40cd44", + "start": { + "$date": "2020-12-30T05:08:18.000Z" + }, + "end": { + "$date": "2020-12-30T05:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "26c6794c-873c-4bb6-a8f9-a7234f907a53", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-30T05:08:59.000Z" + }, + "end": { + "$date": "2020-12-30T05:51:29.000Z" + }, + "events": [ + { + "uuid": "87b8d638-80cc-48b5-b9ca-c776341aaa2a", + "start": { + "$date": "2020-12-30T05:08:59.000Z" + }, + "end": { + "$date": "2020-12-30T05:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "032244cc-ecff-4d09-a690-6a804c186b89", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-30T05:17:24.000Z" + }, + "end": { + "$date": "2020-12-30T05:55:20.000Z" + }, + "events": [ + { + "uuid": "bb44e6e0-905c-40d8-a91b-471865c0420f", + "start": { + "$date": "2020-12-30T05:17:24.000Z" + }, + "end": { + "$date": "2020-12-30T05:55:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba92d992-bfd6-4626-8f4a-3c7dc1536080", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T05:16:26.000Z" + }, + "end": { + "$date": "2020-12-30T05:55:13.000Z" + }, + "events": [ + { + "uuid": "17003a83-b255-4f6a-9576-0bd1bf18a9d8", + "start": { + "$date": "2020-12-30T05:16:26.000Z" + }, + "end": { + "$date": "2020-12-30T05:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "08cdb161-16c8-4088-84db-7a789dfab827", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-30T05:36:46.000Z" + }, + "end": { + "$date": "2020-12-30T07:02:39.000Z" + }, + "events": [ + { + "uuid": "c3bb71dc-3770-4147-94c5-12efdf9aeac4", + "start": { + "$date": "2020-12-30T05:36:46.000Z" + }, + "end": { + "$date": "2020-12-30T07:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "52f2c61f-4344-4fbc-8334-4043a6c8911e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-30T05:55:40.000Z" + }, + "end": { + "$date": "2020-12-30T06:41:15.000Z" + }, + "events": [ + { + "uuid": "12399d5b-19b6-42e4-9290-5e84b763c69f", + "start": { + "$date": "2020-12-30T05:55:40.000Z" + }, + "end": { + "$date": "2020-12-30T06:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "a3c76a61-eb6e-48ce-bcc8-f1d0e60f5a36", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-30T06:41:30.000Z" + }, + "end": { + "$date": "2020-12-30T07:00:40.000Z" + }, + "events": [ + { + "uuid": "34284195-9c15-4e12-949c-523cb678f875", + "start": { + "$date": "2020-12-30T06:41:30.000Z" + }, + "end": { + "$date": "2020-12-30T07:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "d679a7d8-63c3-4795-9c0f-955043ad5b23", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-30T06:47:27.000Z" + }, + "end": { + "$date": "2020-12-30T06:48:51.000Z" + }, + "events": [ + { + "uuid": "1718e5aa-771a-4c8c-9c3d-c3ed6f687999", + "start": { + "$date": "2020-12-30T06:47:27.000Z" + }, + "end": { + "$date": "2020-12-30T06:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "e551394e-31a5-4dd5-b05a-8492ff5646aa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-30T06:50:22.000Z" + }, + "end": { + "$date": "2020-12-30T08:41:36.000Z" + }, + "events": [ + { + "uuid": "bd5d5c08-fc3d-4980-98d7-3d3a3ed39332", + "start": { + "$date": "2020-12-30T06:50:22.000Z" + }, + "end": { + "$date": "2020-12-30T08:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "bb7a824b-b04f-4f34-9b01-b162bc88b332", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2020-12-30T06:50:33.000Z" + }, + "end": { + "$date": "2020-12-30T08:41:12.000Z" + }, + "events": [ + { + "uuid": "c5b98f3e-852c-41c7-9d94-189f942569cd", + "start": { + "$date": "2020-12-30T06:50:33.000Z" + }, + "end": { + "$date": "2020-12-30T08:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "42b6c53f-c9a6-4457-9a6f-7c6442436921", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-30T06:55:44.000Z" + }, + "end": { + "$date": "2020-12-30T08:41:57.000Z" + }, + "events": [ + { + "uuid": "82605ce6-9044-47e8-83be-494fa7f20091", + "start": { + "$date": "2020-12-30T06:55:44.000Z" + }, + "end": { + "$date": "2020-12-30T08:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "ee405b56-174f-4170-84c6-04c049e7d296", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T06:56:24.000Z" + }, + "end": { + "$date": "2020-12-30T08:42:15.000Z" + }, + "events": [ + { + "uuid": "1997c02c-5034-48de-b86c-e366dee75150", + "start": { + "$date": "2020-12-30T06:56:24.000Z" + }, + "end": { + "$date": "2020-12-30T08:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "a033ba50-89e2-4052-a41b-ec3910bcc7b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T06:56:32.000Z" + }, + "end": { + "$date": "2020-12-30T08:42:12.000Z" + }, + "events": [ + { + "uuid": "21a6160f-d9b5-4249-ae45-069122be5747", + "start": { + "$date": "2020-12-30T06:56:32.000Z" + }, + "end": { + "$date": "2020-12-30T08:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "2a1e8170-84d1-46a2-9a97-73fd02a64b6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T06:57:24.000Z" + }, + "end": { + "$date": "2020-12-30T08:42:19.000Z" + }, + "events": [ + { + "uuid": "4df0c303-8ba0-4493-9762-f32d0746cbb8", + "start": { + "$date": "2020-12-30T06:57:24.000Z" + }, + "end": { + "$date": "2020-12-30T08:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "1c3b07e9-852c-44ea-bb6e-3a49b5ff4eab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-30T07:03:19.000Z" + }, + "end": { + "$date": "2020-12-30T10:16:16.000Z" + }, + "events": [ + { + "uuid": "de50be4c-d95f-4998-99bd-2d9e9221e8f3", + "start": { + "$date": "2020-12-30T07:03:19.000Z" + }, + "end": { + "$date": "2020-12-30T10:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4831027f-7d1d-40a4-8c91-56de23903cea", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-30T08:42:14.000Z" + }, + "end": { + "$date": "2020-12-30T09:21:26.000Z" + }, + "events": [ + { + "uuid": "34f04a5b-be8b-48bc-9699-c7e7f5dbb13b", + "start": { + "$date": "2020-12-30T08:42:14.000Z" + }, + "end": { + "$date": "2020-12-30T09:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ec357e8a-5bfc-47ec-b688-8da48e66cd39", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T08:44:51.000Z" + }, + "end": { + "$date": "2020-12-30T09:09:30.000Z" + }, + "events": [ + { + "uuid": "5abdfb88-f661-4088-a804-b9b553c0faf1", + "start": { + "$date": "2020-12-30T08:44:51.000Z" + }, + "end": { + "$date": "2020-12-30T09:09:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "f7d7b0b9-ec26-40ce-bbe4-598934ce3fa8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2020-12-30T08:54:27.000Z" + }, + "end": { + "$date": "2020-12-30T12:44:18.000Z" + }, + "events": [ + { + "uuid": "bb935d9e-ec6c-4abe-b0a6-e412f86374d9", + "start": { + "$date": "2020-12-30T08:54:27.000Z" + }, + "end": { + "$date": "2020-12-30T12:44:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0843751a-6347-4050-bed5-92fa7e8dd35e", + "uuid": "0d0e5511-9cce-42c0-a124-fd3cd521e289", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T16:04:49.000Z" + }, + "end": { + "$date": "2020-12-30T18:43:07.000Z" + }, + "events": [ + { + "uuid": "636c6fa5-c60d-4d45-9845-2455200d09d9", + "start": { + "$date": "2020-12-30T16:04:49.000Z" + }, + "end": { + "$date": "2020-12-30T18:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2c517635-9a20-4993-92dc-5969b115ef29", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-30T16:22:40.000Z" + }, + "end": { + "$date": "2020-12-30T17:14:15.000Z" + }, + "events": [ + { + "uuid": "c5d71f1d-ad7d-45f6-86ca-d110dc65d03e", + "start": { + "$date": "2020-12-30T16:22:40.000Z" + }, + "end": { + "$date": "2020-12-30T17:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0225784e-ecba-4818-9229-2e3930a30edd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T17:03:21.000Z" + }, + "end": { + "$date": "2020-12-30T17:33:58.000Z" + }, + "events": [ + { + "uuid": "807bc3e1-946c-46c2-be88-d926854dd677", + "start": { + "$date": "2020-12-30T17:03:21.000Z" + }, + "end": { + "$date": "2020-12-30T17:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b89ead79-f3db-40df-b14f-6f2f66beebaa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-30T17:14:31.000Z" + }, + "end": { + "$date": "2020-12-30T17:35:40.000Z" + }, + "events": [ + { + "uuid": "378a0076-4d25-4228-aa8b-5fe9a46ebd2e", + "start": { + "$date": "2020-12-30T17:14:31.000Z" + }, + "end": { + "$date": "2020-12-30T17:35:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "fd447527-089f-417f-8259-b6d96e63b4b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-30T17:39:27.000Z" + }, + "end": { + "$date": "2020-12-30T19:31:45.000Z" + }, + "events": [ + { + "uuid": "3b28c0af-196f-475c-8db9-8ba1db328a9c", + "start": { + "$date": "2020-12-30T17:39:27.000Z" + }, + "end": { + "$date": "2020-12-30T18:45:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc02059f-cb7b-435b-af6e-1e204019fae8", + "start": { + "$date": "2020-12-30T18:45:27.000Z" + }, + "end": { + "$date": "2020-12-30T18:50:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "233d6d71-addd-4e01-a178-a691668c22b7", + "start": { + "$date": "2020-12-30T18:50:27.000Z" + }, + "end": { + "$date": "2020-12-30T19:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "f74b6723-b17a-426d-ad3d-e936237fd10f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-30T18:31:17.000Z" + }, + "end": { + "$date": "2020-12-30T22:05:15.000Z" + }, + "events": [ + { + "uuid": "00b99eca-b26f-4c40-9375-dea2cbfbe0b9", + "start": { + "$date": "2020-12-30T18:31:17.000Z" + }, + "end": { + "$date": "2020-12-30T20:39:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f345f84f-96ae-4ee6-9e35-4fa5058529ed", + "start": { + "$date": "2020-12-30T20:39:17.000Z" + }, + "end": { + "$date": "2020-12-30T20:40:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7326e03-d55b-4307-9961-83c9bed060c4", + "start": { + "$date": "2020-12-30T20:40:17.000Z" + }, + "end": { + "$date": "2020-12-30T20:42:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9491433e-62af-424e-b9ea-5fb0f4212bd0", + "start": { + "$date": "2020-12-30T20:42:17.000Z" + }, + "end": { + "$date": "2020-12-30T20:47:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "994fc3ef-3233-4406-b23a-8be409def696", + "start": { + "$date": "2020-12-30T20:47:17.000Z" + }, + "end": { + "$date": "2020-12-30T20:49:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "446ad6b3-d53b-409b-819a-8769c078d0aa", + "start": { + "$date": "2020-12-30T20:49:17.000Z" + }, + "end": { + "$date": "2020-12-30T20:58:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "550a33b0-5d35-4e52-bfaf-8e17635d3356", + "start": { + "$date": "2020-12-30T20:58:17.000Z" + }, + "end": { + "$date": "2020-12-30T21:00:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c02c877f-4ac0-46f6-8c14-80b45c1284a4", + "start": { + "$date": "2020-12-30T21:00:17.000Z" + }, + "end": { + "$date": "2020-12-30T21:22:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84b42564-b8c5-402b-a376-bf177ddfa89a", + "start": { + "$date": "2020-12-30T21:22:17.000Z" + }, + "end": { + "$date": "2020-12-30T22:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d49cb493-6dfd-4202-a320-a30131e1b621", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T21:35:58.000Z" + }, + "end": { + "$date": "2020-12-30T22:07:09.000Z" + }, + "events": [ + { + "uuid": "db442e36-e973-4455-a175-6626cd6a38a3", + "start": { + "$date": "2020-12-30T21:35:58.000Z" + }, + "end": { + "$date": "2020-12-30T22:07:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "54394f1a-8d52-4a0e-9b87-dd47d2c31a67", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T21:40:14.000Z" + }, + "end": { + "$date": "2020-12-30T22:43:03.000Z" + }, + "events": [ + { + "uuid": "1ad9fb26-3087-47d1-ba49-7fb996b597c3", + "start": { + "$date": "2020-12-30T21:40:14.000Z" + }, + "end": { + "$date": "2020-12-30T22:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84eb55df-72c6-43d5-b74d-7f2f5e3cb457", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T22:14:29.000Z" + }, + "end": { + "$date": "2020-12-30T22:38:31.000Z" + }, + "events": [ + { + "uuid": "d4018d84-393a-4b86-8a96-ec7ef949f46b", + "start": { + "$date": "2020-12-30T22:14:29.000Z" + }, + "end": { + "$date": "2020-12-30T22:38:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7132529d-cfdc-4f41-9438-df51ccedb19a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T22:14:28.000Z" + }, + "end": { + "$date": "2020-12-30T22:38:33.000Z" + }, + "events": [ + { + "uuid": "db8e485e-e579-40f2-b529-2dbd442c2d65", + "start": { + "$date": "2020-12-30T22:14:28.000Z" + }, + "end": { + "$date": "2020-12-30T22:38:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a249c4c-b82d-4a1a-8e08-036dd459715f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T22:14:29.000Z" + }, + "end": { + "$date": "2020-12-30T22:38:39.000Z" + }, + "events": [ + { + "uuid": "37d747b2-72fc-4098-9ea5-7053c9b75a6d", + "start": { + "$date": "2020-12-30T22:14:29.000Z" + }, + "end": { + "$date": "2020-12-30T22:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be508282-7a76-4d6b-b2d4-8bb769e8f6fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T23:08:31.000Z" + }, + "end": { + "$date": "2020-12-30T23:08:28.000Z" + }, + "events": [ + { + "uuid": "5c33c3b0-b22c-4ced-9a32-2ba3641bf267", + "start": { + "$date": "2020-12-30T23:08:31.000Z" + }, + "end": { + "$date": "2020-12-30T23:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7ee67d8-c5c0-4c60-80a3-4f9d1a6ffca8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T22:44:09.000Z" + }, + "end": { + "$date": "2020-12-30T23:08:20.000Z" + }, + "events": [ + { + "uuid": "f7c8fe1b-4354-4ee5-af08-23fc80c62e05", + "start": { + "$date": "2020-12-30T22:44:09.000Z" + }, + "end": { + "$date": "2020-12-30T23:08:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b4e6eb8-71f8-4a1f-b3a7-56df72b28b03", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-30T23:23:22.000Z" + }, + "end": { + "$date": "2020-12-31T00:08:44.000Z" + }, + "events": [ + { + "uuid": "c14ee630-2937-4079-809b-f14490c12b40", + "start": { + "$date": "2020-12-30T23:23:22.000Z" + }, + "end": { + "$date": "2020-12-31T00:08:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a4efe1ba-a8ec-4fd5-a248-30b5bdf5b5c4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-30T22:45:07.000Z" + }, + "end": { + "$date": "2020-12-31T00:09:55.000Z" + }, + "events": [ + { + "uuid": "d436ae05-bb87-47e4-9c08-e6badc7646af", + "start": { + "$date": "2020-12-30T22:45:07.000Z" + }, + "end": { + "$date": "2020-12-31T00:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0df34fd4-aae0-4eba-82a9-38e2059d4965", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-30T23:21:53.000Z" + }, + "end": { + "$date": "2020-12-31T00:08:45.000Z" + }, + "events": [ + { + "uuid": "21417f7e-8cb0-4db7-982e-a017b2922945", + "start": { + "$date": "2020-12-30T23:21:53.000Z" + }, + "end": { + "$date": "2020-12-31T00:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a09d4d86-a8d0-4242-ab21-4dd47d753876", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T23:09:36.000Z" + }, + "end": { + "$date": "2020-12-30T23:12:05.000Z" + }, + "events": [ + { + "uuid": "94e78062-2df7-412c-915e-ad81fec4fece", + "start": { + "$date": "2020-12-30T23:09:36.000Z" + }, + "end": { + "$date": "2020-12-30T23:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f785b6a8-360e-4afd-9a7b-37ab88744c55", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T23:12:19.000Z" + }, + "end": { + "$date": "2020-12-30T23:16:55.000Z" + }, + "events": [ + { + "uuid": "a3469fb1-a6b8-404b-be7d-a0d4dffd15aa", + "start": { + "$date": "2020-12-30T23:12:19.000Z" + }, + "end": { + "$date": "2020-12-30T23:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "dd964d62-cc6f-46d6-917b-1eab6ae76ddf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-30T23:13:20.000Z" + }, + "end": { + "$date": "2020-12-31T00:11:16.000Z" + }, + "events": [ + { + "uuid": "c77a5f44-0ac0-438b-a1a0-2de7e04709c8", + "start": { + "$date": "2020-12-30T23:13:20.000Z" + }, + "end": { + "$date": "2020-12-31T00:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01e4b7ca-43a5-498d-9b5f-a8dd2ee8cec5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-30T23:21:50.000Z" + }, + "end": { + "$date": "2020-12-31T00:08:34.000Z" + }, + "events": [ + { + "uuid": "eb4e05d9-fe94-499e-ae84-438819f773e9", + "start": { + "$date": "2020-12-30T23:21:50.000Z" + }, + "end": { + "$date": "2020-12-31T00:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5b95dce4-5a2e-4aaa-8327-0e48910a033b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-30T23:39:51.000Z" + }, + "end": { + "$date": "2020-12-30T23:52:03.000Z" + }, + "events": [ + { + "uuid": "0632c7b2-99c2-4f7a-b571-1816917386fa", + "start": { + "$date": "2020-12-30T23:39:51.000Z" + }, + "end": { + "$date": "2020-12-30T23:52:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b24aabe-dfb7-4ddf-a6c2-b518f3455bfd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T00:19:45.000Z" + }, + "end": { + "$date": "2020-12-31T00:41:31.000Z" + }, + "events": [ + { + "uuid": "7c6301b5-a8dd-4c69-8ef2-57fee4914279", + "start": { + "$date": "2020-12-31T00:19:45.000Z" + }, + "end": { + "$date": "2020-12-31T00:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f43d3ae-4f12-41ed-b2c5-5f838c807483", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-31T00:09:28.000Z" + }, + "end": { + "$date": "2020-12-31T00:12:52.000Z" + }, + "events": [ + { + "uuid": "673863ca-9dba-44ef-8feb-2b855d4b03e9", + "start": { + "$date": "2020-12-31T00:09:28.000Z" + }, + "end": { + "$date": "2020-12-31T00:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62a0baba-9fe5-42bc-b850-06b86e766f94", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T00:09:28.000Z" + }, + "end": { + "$date": "2020-12-31T00:12:52.000Z" + }, + "events": [ + { + "uuid": "514eb16a-1c5d-4707-a3dc-12e5d0b4755c", + "start": { + "$date": "2020-12-31T00:09:28.000Z" + }, + "end": { + "$date": "2020-12-31T00:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d45dde2-4194-43e3-a097-0b1a52c64892", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-31T00:19:47.000Z" + }, + "end": { + "$date": "2020-12-31T00:41:21.000Z" + }, + "events": [ + { + "uuid": "df414937-97b8-484b-8b18-bc2f07405a00", + "start": { + "$date": "2020-12-31T00:19:47.000Z" + }, + "end": { + "$date": "2020-12-31T00:41:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18918865-f716-4f95-90f7-7afea4d6977b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T00:20:19.000Z" + }, + "end": { + "$date": "2020-12-31T00:41:29.000Z" + }, + "events": [ + { + "uuid": "6bb80a3c-5047-4c4e-b583-31c3718b9878", + "start": { + "$date": "2020-12-31T00:20:19.000Z" + }, + "end": { + "$date": "2020-12-31T00:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", + "uuid": "c94b7575-6a9e-44d1-81a9-161ecbaee70d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-31T00:56:48.000Z" + }, + "end": { + "$date": "2020-12-31T01:09:55.000Z" + }, + "events": [ + { + "uuid": "99bb3d53-ae96-4090-8c7c-da7f77f297f6", + "start": { + "$date": "2020-12-31T00:56:48.000Z" + }, + "end": { + "$date": "2020-12-31T01:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "20152670-ffbf-4cab-a53b-4f1e8ca3164a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-31T00:58:57.000Z" + }, + "end": { + "$date": "2020-12-31T05:49:27.000Z" + }, + "events": [ + { + "uuid": "653e31e3-be78-41f6-9a94-575e27301f80", + "start": { + "$date": "2020-12-31T00:58:57.000Z" + }, + "end": { + "$date": "2020-12-31T01:46:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bac0f15c-e534-42d7-8650-21002e331b30", + "start": { + "$date": "2020-12-31T01:46:57.000Z" + }, + "end": { + "$date": "2020-12-31T01:52:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f8cee5e-069a-41d8-9c86-f2fa74bd94fc", + "start": { + "$date": "2020-12-31T01:52:57.000Z" + }, + "end": { + "$date": "2020-12-31T05:49:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "84534f9c-07f4-4cf1-b7fa-7c92c097c8ee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-31T01:10:25.000Z" + }, + "end": { + "$date": "2020-12-31T01:11:50.000Z" + }, + "events": [ + { + "uuid": "1406ce40-95ce-4d18-8a02-f24581cf7c54", + "start": { + "$date": "2020-12-31T01:10:25.000Z" + }, + "end": { + "$date": "2020-12-31T01:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e7d758e0-bdda-46a1-8538-ffb79e24ccf5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-31T01:40:18.000Z" + }, + "end": { + "$date": "2020-12-31T05:05:20.000Z" + }, + "events": [ + { + "uuid": "9336eb3c-d461-446c-b2e1-4c3e5a477b27", + "start": { + "$date": "2020-12-31T01:40:18.000Z" + }, + "end": { + "$date": "2020-12-31T05:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb98b05d-b138-4567-895c-79e9c129dbaf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T02:09:59.000Z" + }, + "end": { + "$date": "2020-12-31T02:31:28.000Z" + }, + "events": [ + { + "uuid": "7b0ca89a-ff4a-4f45-9925-a77c4c40720b", + "start": { + "$date": "2020-12-31T02:09:59.000Z" + }, + "end": { + "$date": "2020-12-31T02:31:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4371f952-da9c-4a6e-85e5-499b24c02e9d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T02:09:44.000Z" + }, + "end": { + "$date": "2020-12-31T02:31:31.000Z" + }, + "events": [ + { + "uuid": "7f24ac1f-45b3-4f0f-8ea9-fcdbe6a3522c", + "start": { + "$date": "2020-12-31T02:09:44.000Z" + }, + "end": { + "$date": "2020-12-31T02:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efd4640f-fee9-4bbe-86e9-209795fd08b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T02:36:31.000Z" + }, + "end": { + "$date": "2020-12-31T03:13:16.000Z" + }, + "events": [ + { + "uuid": "072fc3b0-6536-4921-a9dc-ec3f85a21cc9", + "start": { + "$date": "2020-12-31T02:36:31.000Z" + }, + "end": { + "$date": "2020-12-31T03:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09fa7801-054c-45ea-9207-5bf7954b5f8d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T02:38:31.000Z" + }, + "end": { + "$date": "2020-12-31T03:13:36.000Z" + }, + "events": [ + { + "uuid": "8b339794-7ddf-433e-861f-b47d7f844fd8", + "start": { + "$date": "2020-12-31T02:38:31.000Z" + }, + "end": { + "$date": "2020-12-31T03:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "146d40a0-7555-4011-903c-8764c4ad1946", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T02:48:41.000Z" + }, + "end": { + "$date": "2020-12-31T02:56:29.000Z" + }, + "events": [ + { + "uuid": "06da42de-d9a9-4302-b1ce-66997cb5b197", + "start": { + "$date": "2020-12-31T02:48:41.000Z" + }, + "end": { + "$date": "2020-12-31T02:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "660cf768-552d-4c3b-8f22-63044f5d215e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T02:59:56.000Z" + }, + "end": { + "$date": "2020-12-31T03:04:46.000Z" + }, + "events": [ + { + "uuid": "70d849af-d2a4-4176-949e-851f35cf7dd0", + "start": { + "$date": "2020-12-31T02:59:56.000Z" + }, + "end": { + "$date": "2020-12-31T03:04:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "eea984c3-735e-40f6-862c-e45854034c66", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T03:05:06.000Z" + }, + "end": { + "$date": "2020-12-31T03:57:40.000Z" + }, + "events": [ + { + "uuid": "0831413c-d22c-4d5c-8417-0ca672068a42", + "start": { + "$date": "2020-12-31T03:05:06.000Z" + }, + "end": { + "$date": "2020-12-31T03:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b33cc6a4-ee5e-471b-ac67-d5f47395f824", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T03:26:39.000Z" + }, + "end": { + "$date": "2020-12-31T03:50:36.000Z" + }, + "events": [ + { + "uuid": "2415d92d-dd08-4d90-8622-f8f50e1e5a85", + "start": { + "$date": "2020-12-31T03:26:39.000Z" + }, + "end": { + "$date": "2020-12-31T03:50:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5099754-94c9-49be-bace-824eda092449", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T03:14:24.000Z" + }, + "end": { + "$date": "2020-12-31T03:16:23.000Z" + }, + "events": [ + { + "uuid": "91892fc3-81ac-4b00-87cc-7044c11d5f49", + "start": { + "$date": "2020-12-31T03:14:24.000Z" + }, + "end": { + "$date": "2020-12-31T03:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8b777df-01aa-4daf-9bff-e288bf2feacc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T03:26:38.000Z" + }, + "end": { + "$date": "2020-12-31T03:50:35.000Z" + }, + "events": [ + { + "uuid": "5184744b-cdbe-4809-8ba2-612df1e37852", + "start": { + "$date": "2020-12-31T03:26:38.000Z" + }, + "end": { + "$date": "2020-12-31T03:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fea0068c-ed6b-42c3-9a88-3ab0392566ef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T03:58:00.000Z" + }, + "end": { + "$date": "2020-12-31T05:50:38.000Z" + }, + "events": [ + { + "uuid": "53b7166f-d768-4ab1-97ba-e5992bfb6292", + "start": { + "$date": "2020-12-31T03:58:00.000Z" + }, + "end": { + "$date": "2020-12-31T05:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05fe2eb8-96f1-4f08-a72c-dbc7d27808b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T05:14:38.000Z" + }, + "end": { + "$date": "2020-12-31T05:14:35.000Z" + }, + "events": [ + { + "uuid": "13555e64-756f-493f-9369-27a080801005", + "start": { + "$date": "2020-12-31T05:14:38.000Z" + }, + "end": { + "$date": "2020-12-31T05:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae9caa30-201f-4e8f-ad41-50393c0e290a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T04:21:56.000Z" + }, + "end": { + "$date": "2020-12-31T05:14:36.000Z" + }, + "events": [ + { + "uuid": "60928a2d-844d-43bb-bfd6-ab2d672c3ff6", + "start": { + "$date": "2020-12-31T04:21:56.000Z" + }, + "end": { + "$date": "2020-12-31T05:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7391ce99-ea01-433a-b50d-92543dc94090", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T04:50:09.000Z" + }, + "end": { + "$date": "2020-12-31T05:49:01.000Z" + }, + "events": [ + { + "uuid": "61ee9b2c-04c4-4774-b4ea-d081133e46a3", + "start": { + "$date": "2020-12-31T04:50:09.000Z" + }, + "end": { + "$date": "2020-12-31T05:49:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d2800020-7b65-4092-8e81-683c261fb7ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-31T04:55:14.000Z" + }, + "end": { + "$date": "2020-12-31T05:19:02.000Z" + }, + "events": [ + { + "uuid": "d9d8c9de-4e19-41a6-833a-d641d525d2f7", + "start": { + "$date": "2020-12-31T04:55:14.000Z" + }, + "end": { + "$date": "2020-12-31T05:19:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dbff7132-ab42-4573-9d2e-9f7df591f2af", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-31T05:11:01.000Z" + }, + "end": { + "$date": "2020-12-31T05:19:23.000Z" + }, + "events": [ + { + "uuid": "9fb3f243-5bf8-4ab6-83c3-f63c872fcb87", + "start": { + "$date": "2020-12-31T05:11:01.000Z" + }, + "end": { + "$date": "2020-12-31T05:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81f6cb07-ad3b-4316-93d9-e196529947d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T05:33:44.000Z" + }, + "end": { + "$date": "2020-12-31T06:02:46.000Z" + }, + "events": [ + { + "uuid": "f46eab79-39ba-4353-a728-f839bc697dbc", + "start": { + "$date": "2020-12-31T05:33:44.000Z" + }, + "end": { + "$date": "2020-12-31T06:02:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ce7a32f-0d6c-4842-a32b-acedea88c7c5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T05:17:41.000Z" + }, + "end": { + "$date": "2020-12-31T05:22:15.000Z" + }, + "events": [ + { + "uuid": "5c23f303-7d80-44d8-b99e-612373af045e", + "start": { + "$date": "2020-12-31T05:17:41.000Z" + }, + "end": { + "$date": "2020-12-31T05:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "753a7559-21e7-4a77-8659-4f88bd7c62a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T05:17:43.000Z" + }, + "end": { + "$date": "2020-12-31T05:22:15.000Z" + }, + "events": [ + { + "uuid": "be5b048e-bb60-4c1c-bbf8-ee5baa6411d0", + "start": { + "$date": "2020-12-31T05:17:43.000Z" + }, + "end": { + "$date": "2020-12-31T05:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e4c4fb8-968b-43b8-84ea-8a740e4eebcd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T05:22:15.000Z" + }, + "end": { + "$date": "2020-12-31T05:25:05.000Z" + }, + "events": [ + { + "uuid": "78bbdf5d-61c0-405e-b4fc-4c262829efc0", + "start": { + "$date": "2020-12-31T05:22:15.000Z" + }, + "end": { + "$date": "2020-12-31T05:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "905cbc83-d0bb-4602-ad55-695606253dbe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T05:22:17.000Z" + }, + "end": { + "$date": "2020-12-31T05:25:05.000Z" + }, + "events": [ + { + "uuid": "cc6210e8-007d-460e-8d33-358f84df1fa9", + "start": { + "$date": "2020-12-31T05:22:17.000Z" + }, + "end": { + "$date": "2020-12-31T05:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "2428049f-2d65-4032-8632-ebc870a2ee52", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2020-12-31T05:23:02.000Z" + }, + "end": { + "$date": "2020-12-31T14:28:04.000Z" + }, + "events": [ + { + "uuid": "daf4686a-67f0-4ab5-ac6b-b53244bb5940", + "start": { + "$date": "2020-12-31T05:23:02.000Z" + }, + "end": { + "$date": "2020-12-31T14:28:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b644c5c-3f66-4fdb-96b2-82bd4c9b783e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T05:25:32.000Z" + }, + "end": { + "$date": "2020-12-31T05:28:12.000Z" + }, + "events": [ + { + "uuid": "d7882976-6f17-45a4-8dfb-9c83be8812d3", + "start": { + "$date": "2020-12-31T05:25:32.000Z" + }, + "end": { + "$date": "2020-12-31T05:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "758c9a59-8e50-40b8-9f1a-4f0dad50c608", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T05:25:34.000Z" + }, + "end": { + "$date": "2020-12-31T05:28:12.000Z" + }, + "events": [ + { + "uuid": "020ba506-79e8-4c80-a9f2-f535ddcf7f24", + "start": { + "$date": "2020-12-31T05:25:34.000Z" + }, + "end": { + "$date": "2020-12-31T05:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4e346eb-261a-499c-bd7d-7a30d8478b4b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T05:28:30.000Z" + }, + "end": { + "$date": "2020-12-31T05:31:24.000Z" + }, + "events": [ + { + "uuid": "bd7be1b9-6b40-49be-bc12-ef5dc03ce1ab", + "start": { + "$date": "2020-12-31T05:28:30.000Z" + }, + "end": { + "$date": "2020-12-31T05:31:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78d7655f-4f62-4f87-bdb0-bc719939ac23", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T05:28:32.000Z" + }, + "end": { + "$date": "2020-12-31T05:31:24.000Z" + }, + "events": [ + { + "uuid": "b59cb97c-ab4f-4885-99b5-7303c98cac11", + "start": { + "$date": "2020-12-31T05:28:32.000Z" + }, + "end": { + "$date": "2020-12-31T05:31:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fab49ae-dcf4-4073-8061-d6d01ea2a565", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T05:33:41.000Z" + }, + "end": { + "$date": "2020-12-31T06:02:47.000Z" + }, + "events": [ + { + "uuid": "818b6a3f-a80a-4e04-9e88-55d68f64d591", + "start": { + "$date": "2020-12-31T05:33:41.000Z" + }, + "end": { + "$date": "2020-12-31T06:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cfe7674-7d47-48fa-ae8a-4d3788d3536e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T05:33:42.000Z" + }, + "end": { + "$date": "2020-12-31T06:02:55.000Z" + }, + "events": [ + { + "uuid": "15cb8bb1-58fb-437d-a816-9cd09ea7ef27", + "start": { + "$date": "2020-12-31T05:33:42.000Z" + }, + "end": { + "$date": "2020-12-31T06:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "bb1c1c5a-3249-49b9-9b78-f02fec7ba4f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T05:50:23.000Z" + }, + "end": { + "$date": "2020-12-31T10:01:26.000Z" + }, + "events": [ + { + "uuid": "5615da66-c875-453a-8454-c9b335aee807", + "start": { + "$date": "2020-12-31T05:50:23.000Z" + }, + "end": { + "$date": "2020-12-31T10:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c429c32e-2103-4e91-ac54-0af84e76811a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T05:50:48.000Z" + }, + "end": { + "$date": "2020-12-31T06:25:26.000Z" + }, + "events": [ + { + "uuid": "335ec33b-9923-4884-8aaa-52a61b57cac2", + "start": { + "$date": "2020-12-31T05:50:48.000Z" + }, + "end": { + "$date": "2020-12-31T06:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d25f4f94-ae51-455e-8e84-e92797b069ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T06:07:30.000Z" + }, + "end": { + "$date": "2020-12-31T06:27:54.000Z" + }, + "events": [ + { + "uuid": "3fce0942-0325-4179-a6c3-7bd0cebf95ea", + "start": { + "$date": "2020-12-31T06:07:30.000Z" + }, + "end": { + "$date": "2020-12-31T06:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be9422f6-e5d7-4e91-9c4c-bdf56fdd9bad", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T06:03:22.000Z" + }, + "end": { + "$date": "2020-12-31T06:05:29.000Z" + }, + "events": [ + { + "uuid": "9cbea62f-3587-42fc-a08d-46d8f103cc88", + "start": { + "$date": "2020-12-31T06:03:22.000Z" + }, + "end": { + "$date": "2020-12-31T06:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8da351a6-bae8-4293-8c25-0720a52130e1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T06:03:24.000Z" + }, + "end": { + "$date": "2020-12-31T06:05:29.000Z" + }, + "events": [ + { + "uuid": "98441ab9-3d47-4923-b14a-1e4e37ff0259", + "start": { + "$date": "2020-12-31T06:03:24.000Z" + }, + "end": { + "$date": "2020-12-31T06:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d001b49-4f7a-4c6a-b361-6c80c5dee876", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T06:09:47.000Z" + }, + "end": { + "$date": "2020-12-31T06:27:42.000Z" + }, + "events": [ + { + "uuid": "7f079ed1-233c-4488-b94b-b216d654624c", + "start": { + "$date": "2020-12-31T06:09:47.000Z" + }, + "end": { + "$date": "2020-12-31T06:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb143b45-89a7-4cd8-8d2c-1f2fc1935bd2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T06:09:14.000Z" + }, + "end": { + "$date": "2020-12-31T06:27:54.000Z" + }, + "events": [ + { + "uuid": "7d558f98-0692-4e97-9dff-f3bf8526f0df", + "start": { + "$date": "2020-12-31T06:09:14.000Z" + }, + "end": { + "$date": "2020-12-31T06:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "426d41f7-9a2a-4f8b-917f-d255bc85edc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T06:30:21.000Z" + }, + "end": { + "$date": "2020-12-31T07:10:03.000Z" + }, + "events": [ + { + "uuid": "913836d0-ae58-4e2b-8a32-1e78618ed76f", + "start": { + "$date": "2020-12-31T06:30:21.000Z" + }, + "end": { + "$date": "2020-12-31T07:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bc2c816-46fd-432a-ae44-671de62b4e75", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T06:30:42.000Z" + }, + "end": { + "$date": "2020-12-31T07:10:03.000Z" + }, + "events": [ + { + "uuid": "39d5b6af-02a8-40cd-82fb-5ec3d99491ed", + "start": { + "$date": "2020-12-31T06:30:42.000Z" + }, + "end": { + "$date": "2020-12-31T07:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7977c5e3-62a1-4abc-ba0e-0c92a79b57b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T06:30:15.000Z" + }, + "end": { + "$date": "2020-12-31T07:10:06.000Z" + }, + "events": [ + { + "uuid": "ea3b62ae-b7ec-49e1-876e-84b8fa90a733", + "start": { + "$date": "2020-12-31T06:30:15.000Z" + }, + "end": { + "$date": "2020-12-31T07:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "a224c647-d720-4101-89a4-d591eb638cf9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-31T07:15:00.000Z" + }, + "end": { + "$date": "2020-12-31T07:17:05.000Z" + }, + "events": [ + { + "uuid": "9fa329ac-fe09-4cd7-b16e-d59ed6475cfe", + "start": { + "$date": "2020-12-31T07:15:00.000Z" + }, + "end": { + "$date": "2020-12-31T07:17:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b3e98be-b2a9-4763-961d-bbcd815a8c20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T07:18:29.000Z" + }, + "end": { + "$date": "2020-12-31T07:47:56.000Z" + }, + "events": [ + { + "uuid": "c7ca5995-fc7e-4069-a0d5-3d0df742f0aa", + "start": { + "$date": "2020-12-31T07:18:29.000Z" + }, + "end": { + "$date": "2020-12-31T07:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "94c93d23-953a-4f63-b8d6-2c650cb0f664", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-31T07:24:11.000Z" + }, + "end": { + "$date": "2020-12-31T07:27:36.000Z" + }, + "events": [ + { + "uuid": "35a1b1fd-6737-4a3b-9cda-23c4fcaf338c", + "start": { + "$date": "2020-12-31T07:24:11.000Z" + }, + "end": { + "$date": "2020-12-31T07:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0843751a-6347-4050-bed5-92fa7e8dd35e", + "uuid": "8fba2ee7-9edb-4f7a-a438-03a8d2ddbc12", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-31T07:57:34.000Z" + }, + "end": { + "$date": "2020-12-31T09:58:03.000Z" + }, + "events": [ + { + "uuid": "f8dc61f1-7d8c-4e2c-813a-f953f6e956d7", + "start": { + "$date": "2020-12-31T07:57:34.000Z" + }, + "end": { + "$date": "2020-12-31T09:58:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "448e213d-3295-4a9f-bee2-021ca1a01f6f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T16:42:39.000Z" + }, + "end": { + "$date": "2020-12-31T18:10:02.000Z" + }, + "events": [ + { + "uuid": "5f4aead0-d9bb-4e36-a8d5-9d3c5c292dfa", + "start": { + "$date": "2020-12-31T16:42:39.000Z" + }, + "end": { + "$date": "2020-12-31T18:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "48b1172c-6458-409a-a44a-6cb1af27dac1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T16:46:24.000Z" + }, + "end": { + "$date": "2020-12-31T16:51:30.000Z" + }, + "events": [ + { + "uuid": "7aaac4c8-bb03-43b4-85de-45cd23939557", + "start": { + "$date": "2020-12-31T16:46:24.000Z" + }, + "end": { + "$date": "2020-12-31T16:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c7a64851-bf67-4f95-b89a-15796052a70b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-31T16:57:23.000Z" + }, + "end": { + "$date": "2020-12-31T17:19:19.000Z" + }, + "events": [ + { + "uuid": "534c37f7-3787-4953-a961-ba7ee1dd6c02", + "start": { + "$date": "2020-12-31T16:57:23.000Z" + }, + "end": { + "$date": "2020-12-31T17:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee1d0149-2aae-4674-a845-9b70ce078011", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T16:59:56.000Z" + }, + "end": { + "$date": "2020-12-31T17:56:17.000Z" + }, + "events": [ + { + "uuid": "d5ea6204-9a2f-4924-a5af-514d6df92588", + "start": { + "$date": "2020-12-31T16:59:56.000Z" + }, + "end": { + "$date": "2020-12-31T17:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "43e0102e-88e0-4080-a0af-b1cb02598273", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-31T17:20:54.000Z" + }, + "end": { + "$date": "2020-12-31T18:07:05.000Z" + }, + "events": [ + { + "uuid": "67e70232-dbb9-42f1-b598-c86389918f5d", + "start": { + "$date": "2020-12-31T17:20:54.000Z" + }, + "end": { + "$date": "2020-12-31T18:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "32d61fa1-e6c3-4f92-8af2-aa83c28ba3eb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T18:16:24.000Z" + }, + "end": { + "$date": "2020-12-31T18:41:40.000Z" + }, + "events": [ + { + "uuid": "629134f7-a0e7-4f8a-8b8a-a0d4f1adfb32", + "start": { + "$date": "2020-12-31T18:16:24.000Z" + }, + "end": { + "$date": "2020-12-31T18:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "b0447fe8-5fc5-4b27-89ba-916f8eea8704", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-31T18:32:30.000Z" + }, + "end": { + "$date": "2020-12-31T18:47:27.000Z" + }, + "events": [ + { + "uuid": "3f026f60-78d7-4072-bb25-097c45450a3c", + "start": { + "$date": "2020-12-31T18:32:30.000Z" + }, + "end": { + "$date": "2020-12-31T18:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "50dcee21-bad6-4580-8d06-3999577188a5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-31T18:48:47.000Z" + }, + "end": { + "$date": "2020-12-31T19:17:03.000Z" + }, + "events": [ + { + "uuid": "86eb8af6-fa34-4011-ac84-512e57808e0e", + "start": { + "$date": "2020-12-31T18:48:47.000Z" + }, + "end": { + "$date": "2020-12-31T19:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "aa68a930-4ac2-44aa-b160-7432605c94bc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2020-12-31T22:52:56.000Z" + }, + "end": { + "$date": "2021-01-01T00:47:09.000Z" + }, + "events": [ + { + "uuid": "2cf23f6f-1eaa-4e83-880e-54d70e8f0e95", + "start": { + "$date": "2020-12-31T22:52:56.000Z" + }, + "end": { + "$date": "2021-01-01T03:47:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0993af90-0c95-4759-9c1a-c5b2e295a6bc", + "start": { + "$date": "2021-01-01T03:47:56.000Z" + }, + "end": { + "$date": "2021-01-01T03:48:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "881b2f6e-c587-4b49-a350-47d1a42e3f01", + "start": { + "$date": "2021-01-01T03:48:56.000Z" + }, + "end": { + "$date": "2021-01-01T03:59:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67765b90-0f70-4ac8-902f-7334e7c006e1", + "start": { + "$date": "2021-01-01T03:59:56.000Z" + }, + "end": { + "$date": "2021-01-01T04:00:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed18c1af-6ece-4314-b1b0-46f49c5675fc", + "start": { + "$date": "2021-01-01T04:00:56.000Z" + }, + "end": { + "$date": "2021-01-01T00:47:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3d72baa3-d125-4d13-9394-fda210cd7ee8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2020-12-31T19:58:40.000Z" + }, + "end": { + "$date": "2021-01-01T01:35:58.000Z" + }, + "events": [ + { + "uuid": "d44634e9-d0c1-4445-99d2-a72bd2b824eb", + "start": { + "$date": "2020-12-31T19:58:40.000Z" + }, + "end": { + "$date": "2021-01-01T01:35:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "89487b84-7931-4c73-8101-d738dba1d8d9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2020-12-31T20:19:40.000Z" + }, + "end": { + "$date": "2020-12-31T22:31:10.000Z" + }, + "events": [ + { + "uuid": "9f1879d4-4395-4373-ae62-088079746126", + "start": { + "$date": "2020-12-31T20:19:40.000Z" + }, + "end": { + "$date": "2020-12-31T22:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "27ae2503-8ca6-4746-8fb2-671cb1a5300a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-31T20:24:25.000Z" + }, + "end": { + "$date": "2020-12-31T20:32:05.000Z" + }, + "events": [ + { + "uuid": "da93cd7b-f943-473c-b1f0-9f775da30554", + "start": { + "$date": "2020-12-31T20:24:25.000Z" + }, + "end": { + "$date": "2020-12-31T20:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "dbffb50a-714d-4f93-92c4-bac6b1c7f1e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2020-12-31T20:33:40.000Z" + }, + "end": { + "$date": "2020-12-31T21:41:46.000Z" + }, + "events": [ + { + "uuid": "6b281cfd-23db-422e-a5f4-7aca1f77ccdd", + "start": { + "$date": "2020-12-31T20:33:40.000Z" + }, + "end": { + "$date": "2020-12-31T21:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "8df9797a-8698-42bf-b41b-f19c87fd4329", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T21:06:44.000Z" + }, + "end": { + "$date": "2020-12-31T21:13:39.000Z" + }, + "events": [ + { + "uuid": "730fd49c-6733-464f-9ba3-8f1f8c6df2b0", + "start": { + "$date": "2020-12-31T21:06:44.000Z" + }, + "end": { + "$date": "2020-12-31T21:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e28d39bb-f047-4456-9f93-a5f05e4fcaad", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2020-12-31T21:17:36.000Z" + }, + "end": { + "$date": "2021-01-01T00:18:26.000Z" + }, + "events": [ + { + "uuid": "59f24173-b926-4f3c-abf0-eb215118125b", + "start": { + "$date": "2020-12-31T21:17:36.000Z" + }, + "end": { + "$date": "2021-01-01T00:18:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "03a80931-e826-4e71-936b-7e17eafcad95", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T21:30:15.000Z" + }, + "end": { + "$date": "2020-12-31T22:13:56.000Z" + }, + "events": [ + { + "uuid": "70bfa270-d5e5-4faa-be17-2a9b518b1c07", + "start": { + "$date": "2020-12-31T21:30:15.000Z" + }, + "end": { + "$date": "2020-12-31T22:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "27d836e8-ffbb-482a-ae3e-6bc0cd906c09", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2020-12-31T21:35:37.000Z" + }, + "end": { + "$date": "2020-12-31T22:28:37.000Z" + }, + "events": [ + { + "uuid": "24503fde-c0fb-4e0a-a10e-661c193cd4aa", + "start": { + "$date": "2020-12-31T21:35:37.000Z" + }, + "end": { + "$date": "2020-12-31T22:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f41d7090-d310-4ca4-ae6b-54b6fefe6da1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2020-12-31T21:36:21.000Z" + }, + "end": { + "$date": "2021-01-01T00:57:24.000Z" + }, + "events": [ + { + "uuid": "e4172881-570e-42b8-ab79-d1b251203187", + "start": { + "$date": "2020-12-31T21:36:21.000Z" + }, + "end": { + "$date": "2021-01-01T00:35:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7186713-fb3e-4f82-8fc0-f34462b37655", + "start": { + "$date": "2021-01-01T00:35:21.000Z" + }, + "end": { + "$date": "2021-01-01T00:38:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6573f7e5-6eea-419d-9613-7d8b504a8c6f", + "start": { + "$date": "2021-01-01T00:38:21.000Z" + }, + "end": { + "$date": "2021-01-01T00:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "862df5fe-d442-4d84-ad12-ae6012e57cd1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-31T21:59:21.000Z" + }, + "end": { + "$date": "2020-12-31T22:12:52.000Z" + }, + "events": [ + { + "uuid": "1bdf33ab-3d15-41ad-a5d7-e2f192802265", + "start": { + "$date": "2020-12-31T21:59:21.000Z" + }, + "end": { + "$date": "2020-12-31T22:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "571d5413-8da5-4a41-b56e-f3f03c069cbd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T21:59:13.000Z" + }, + "end": { + "$date": "2020-12-31T22:12:58.000Z" + }, + "events": [ + { + "uuid": "57e904f0-5f9e-41e6-b6c9-391822743266", + "start": { + "$date": "2020-12-31T21:59:13.000Z" + }, + "end": { + "$date": "2020-12-31T22:12:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c12528f0-4e6d-470c-a691-c70adf95c81e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2020-12-31T22:17:47.000Z" + }, + "end": { + "$date": "2020-12-31T22:35:19.000Z" + }, + "events": [ + { + "uuid": "5c7d2ef6-6a85-4fca-bd63-28f4c272bec6", + "start": { + "$date": "2020-12-31T22:17:47.000Z" + }, + "end": { + "$date": "2020-12-31T22:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7811c69e-9b10-414a-813a-98801dbc4b56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2020-12-31T22:17:39.000Z" + }, + "end": { + "$date": "2020-12-31T22:35:23.000Z" + }, + "events": [ + { + "uuid": "9bc44094-7daf-41e0-953b-a90059a2b8f9", + "start": { + "$date": "2020-12-31T22:17:39.000Z" + }, + "end": { + "$date": "2020-12-31T22:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1851c6da-8378-4534-b1db-cda49a8b15d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T22:21:01.000Z" + }, + "end": { + "$date": "2020-12-31T22:53:02.000Z" + }, + "events": [ + { + "uuid": "8b7932b1-0b13-4e95-b0dd-787784fcb52b", + "start": { + "$date": "2020-12-31T22:21:01.000Z" + }, + "end": { + "$date": "2020-12-31T22:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "df39ab73-f45f-48ce-a47f-1dcab5c531f9", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2020-12-31T22:41:39.000Z" + }, + "end": { + "$date": "2020-12-31T23:28:01.000Z" + }, + "events": [ + { + "uuid": "0d737fde-b886-407d-86ba-be04c8cab66a", + "start": { + "$date": "2020-12-31T22:41:39.000Z" + }, + "end": { + "$date": "2020-12-31T23:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "02ea4afc-6d44-4e7e-90dc-a7ab59aad796", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2020-12-31T22:54:13.000Z" + }, + "end": { + "$date": "2021-01-01T00:25:40.000Z" + }, + "events": [ + { + "uuid": "1eb7175e-45a0-4f52-8385-622334c35910", + "start": { + "$date": "2020-12-31T22:54:13.000Z" + }, + "end": { + "$date": "2021-01-01T00:25:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "0b011664-5151-4f6d-bf7d-182ad95d517d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T00:25:44.000Z" + }, + "end": { + "$date": "2021-01-01T01:18:24.000Z" + }, + "events": [ + { + "uuid": "c95d351b-d2f8-4cf1-84da-3104787a1832", + "start": { + "$date": "2021-01-01T00:25:44.000Z" + }, + "end": { + "$date": "2021-01-01T01:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "913a854b-f746-4a4e-9903-9ab1665d10d7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T00:26:05.000Z" + }, + "end": { + "$date": "2021-01-01T01:01:11.000Z" + }, + "events": [ + { + "uuid": "221bef1e-56c0-464b-9df4-d524e03dbb3e", + "start": { + "$date": "2021-01-01T00:26:05.000Z" + }, + "end": { + "$date": "2021-01-01T01:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2b0d2595-74f0-4b39-bce7-a8507327d2aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-01T01:05:56.000Z" + }, + "end": { + "$date": "2021-01-01T01:13:51.000Z" + }, + "events": [ + { + "uuid": "69345349-7f20-4a81-9281-5bfc942f5216", + "start": { + "$date": "2021-01-01T01:05:56.000Z" + }, + "end": { + "$date": "2021-01-01T01:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b2b930de-03f2-43ce-b0e6-468016ab3473", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T01:18:40.000Z" + }, + "end": { + "$date": "2021-01-01T02:31:51.000Z" + }, + "events": [ + { + "uuid": "49e37f1e-7364-47ff-8fd8-fbd4799d0433", + "start": { + "$date": "2021-01-01T01:18:40.000Z" + }, + "end": { + "$date": "2021-01-01T02:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e20dd291-5aa6-447c-b105-c0e4326d18ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-01T01:19:07.000Z" + }, + "end": { + "$date": "2021-01-01T01:27:52.000Z" + }, + "events": [ + { + "uuid": "4cfebdb0-fd9d-4733-94a7-bff9b50f83da", + "start": { + "$date": "2021-01-01T01:19:07.000Z" + }, + "end": { + "$date": "2021-01-01T01:27:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e29c96c8-27da-4df0-9c06-58ba584a25d4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T01:35:35.000Z" + }, + "end": { + "$date": "2021-01-01T01:54:41.000Z" + }, + "events": [ + { + "uuid": "3004ada7-5f84-4e52-9f8b-2987b873490c", + "start": { + "$date": "2021-01-01T01:35:35.000Z" + }, + "end": { + "$date": "2021-01-01T01:54:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f86ca56a-4314-45bf-87b5-dfa47de1a1c6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T03:14:27.000Z" + }, + "end": { + "$date": "2021-01-01T03:57:54.000Z" + }, + "events": [ + { + "uuid": "a4b83133-27b3-4099-98f8-8ca13f03fe44", + "start": { + "$date": "2021-01-01T03:14:27.000Z" + }, + "end": { + "$date": "2021-01-01T03:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "1e3a3275-69fe-4fa2-a89d-ced79d0d1478", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T03:33:21.000Z" + }, + "end": { + "$date": "2021-01-01T04:56:22.000Z" + }, + "events": [ + { + "uuid": "65216342-3caf-45c6-b219-8dcff010e138", + "start": { + "$date": "2021-01-01T03:33:21.000Z" + }, + "end": { + "$date": "2021-01-01T04:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4bbad2d8-3047-4b30-8d26-41c3755d0d16", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T05:18:50.000Z" + }, + "end": { + "$date": "2021-01-01T05:22:41.000Z" + }, + "events": [ + { + "uuid": "f4f27421-2d1e-4cb1-b009-732cd0599db3", + "start": { + "$date": "2021-01-01T05:18:50.000Z" + }, + "end": { + "$date": "2021-01-01T05:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "93a82392-444c-4ea3-8bfd-7856f6280a22", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T04:05:20.000Z" + }, + "end": { + "$date": "2021-01-01T04:57:03.000Z" + }, + "events": [ + { + "uuid": "58ae3adb-6158-4d2c-8c13-d17813e4c323", + "start": { + "$date": "2021-01-01T04:05:20.000Z" + }, + "end": { + "$date": "2021-01-01T04:57:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1209236c-6fa8-44ee-bb36-87ef55d12f3e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-01T04:41:49.000Z" + }, + "end": { + "$date": "2021-01-01T05:03:03.000Z" + }, + "events": [ + { + "uuid": "2a9ee805-8c2a-49c9-b5d8-a1bce8bd1302", + "start": { + "$date": "2021-01-01T04:41:49.000Z" + }, + "end": { + "$date": "2021-01-01T05:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "061a9d58-a734-4b1c-8fbb-72642d6dfeba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T04:42:59.000Z" + }, + "end": { + "$date": "2021-01-01T05:02:54.000Z" + }, + "events": [ + { + "uuid": "c6180844-656f-4369-93e1-0345b489f7d5", + "start": { + "$date": "2021-01-01T04:42:59.000Z" + }, + "end": { + "$date": "2021-01-01T05:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f53e7f05-1606-48af-9a00-5520ba04d601", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-01T04:41:47.000Z" + }, + "end": { + "$date": "2021-01-01T05:03:10.000Z" + }, + "events": [ + { + "uuid": "fe5d5e1a-5d5f-4673-a2fc-b782b2e9395b", + "start": { + "$date": "2021-01-01T04:41:47.000Z" + }, + "end": { + "$date": "2021-01-01T05:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78d09500-b644-4f18-8866-0106a017e7bb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-01T05:03:28.000Z" + }, + "end": { + "$date": "2021-01-01T11:10:19.000Z" + }, + "events": [ + { + "uuid": "bcceec31-d413-4589-92d7-18786bbc25e0", + "start": { + "$date": "2021-01-01T05:03:28.000Z" + }, + "end": { + "$date": "2021-01-01T10:30:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77a7eacc-e3d3-40c2-af7a-53bc55a3d243", + "start": { + "$date": "2021-01-01T10:30:28.000Z" + }, + "end": { + "$date": "2021-01-01T10:40:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1deeba88-cfe2-4b39-a4b1-5d370c176c7f", + "start": { + "$date": "2021-01-01T10:40:28.000Z" + }, + "end": { + "$date": "2021-01-01T10:50:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a38daee-8d95-4d22-801d-1fc3fd4bffb0", + "start": { + "$date": "2021-01-01T10:50:28.000Z" + }, + "end": { + "$date": "2021-01-01T11:10:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "a3277541-7438-4868-b1b0-96036cb100e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T05:04:58.000Z" + }, + "end": { + "$date": "2021-01-01T05:41:04.000Z" + }, + "events": [ + { + "uuid": "53fee591-621a-499e-9818-a17b243fceaa", + "start": { + "$date": "2021-01-01T05:04:58.000Z" + }, + "end": { + "$date": "2021-01-01T05:41:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "088978d9-912e-446d-b0ea-91dec97193c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T05:05:03.000Z" + }, + "end": { + "$date": "2021-01-01T05:41:10.000Z" + }, + "events": [ + { + "uuid": "935b87ad-0476-4f12-a84a-9d35c70988bc", + "start": { + "$date": "2021-01-01T05:05:03.000Z" + }, + "end": { + "$date": "2021-01-01T05:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "74a64c43-d3fd-46d1-a500-a7bf21a8e61b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-01T05:09:39.000Z" + }, + "end": { + "$date": "2021-01-01T09:03:24.000Z" + }, + "events": [ + { + "uuid": "1bd86c98-6dda-4abe-9fbd-2d7427e4984f", + "start": { + "$date": "2021-01-01T05:09:39.000Z" + }, + "end": { + "$date": "2021-01-01T09:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "27781b3c-faa2-487d-879e-7bcd0cee8c0f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T05:41:18.000Z" + }, + "end": { + "$date": "2021-01-01T06:28:56.000Z" + }, + "events": [ + { + "uuid": "56c94db4-9ed7-4647-b9f1-5e454a87724e", + "start": { + "$date": "2021-01-01T05:41:18.000Z" + }, + "end": { + "$date": "2021-01-01T06:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "60bfd4c7-6e1e-4a37-b6f4-00124fa01ea6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T05:42:01.000Z" + }, + "end": { + "$date": "2021-01-01T06:30:09.000Z" + }, + "events": [ + { + "uuid": "ee38d9d1-3a3e-459f-845c-c690f6d657b9", + "start": { + "$date": "2021-01-01T05:42:01.000Z" + }, + "end": { + "$date": "2021-01-01T06:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fcee68ec-2c16-4917-a0da-0edbb6a195f8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T09:08:41.000Z" + }, + "end": { + "$date": "2021-01-01T09:08:46.000Z" + }, + "events": [ + { + "uuid": "09a95dbe-5a5e-4681-a083-7d7c53792cee", + "start": { + "$date": "2021-01-01T09:08:41.000Z" + }, + "end": { + "$date": "2021-01-01T09:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dd9f3917-d05f-46db-8ce1-c3c3a697c5ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T06:29:26.000Z" + }, + "end": { + "$date": "2021-01-01T06:43:42.000Z" + }, + "events": [ + { + "uuid": "6a91d564-621f-4c97-8864-ce73797b9192", + "start": { + "$date": "2021-01-01T06:29:26.000Z" + }, + "end": { + "$date": "2021-01-01T06:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fd43a082-bda8-41c5-b7fd-b5ace9140e14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T20:46:06.000Z" + }, + "end": { + "$date": "2021-01-01T20:46:15.000Z" + }, + "events": [ + { + "uuid": "f8252027-b9a3-4810-bb53-5134561a8c2a", + "start": { + "$date": "2021-01-01T20:46:06.000Z" + }, + "end": { + "$date": "2021-01-01T20:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ccae06d-44e6-4e9d-bb39-c4c4753d2298", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-01T06:53:48.000Z" + }, + "end": { + "$date": "2021-01-01T06:59:30.000Z" + }, + "events": [ + { + "uuid": "dbd0ba50-fcb3-482b-8cd9-71a304d34255", + "start": { + "$date": "2021-01-01T06:53:48.000Z" + }, + "end": { + "$date": "2021-01-01T06:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03168681-6670-4885-a574-d327cbc955be", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-01T07:01:08.000Z" + }, + "end": { + "$date": "2021-01-01T07:03:11.000Z" + }, + "events": [ + { + "uuid": "c36cf3ce-f9eb-40d3-ac65-a896ff4af297", + "start": { + "$date": "2021-01-01T07:01:08.000Z" + }, + "end": { + "$date": "2021-01-01T07:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37023eb6-cc7c-4b20-8c80-afa5febdb352", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-01T07:04:30.000Z" + }, + "end": { + "$date": "2021-01-01T07:07:16.000Z" + }, + "events": [ + { + "uuid": "58c5e44f-1fa7-4523-a3bd-b41b8fde60b6", + "start": { + "$date": "2021-01-01T07:04:30.000Z" + }, + "end": { + "$date": "2021-01-01T07:07:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f27e7db-6a23-4463-8506-697ee6bb2ce0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-01T07:09:01.000Z" + }, + "end": { + "$date": "2021-01-01T07:11:27.000Z" + }, + "events": [ + { + "uuid": "5f2ea60d-4321-491d-b61a-55330cff1420", + "start": { + "$date": "2021-01-01T07:09:01.000Z" + }, + "end": { + "$date": "2021-01-01T07:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "010e54c2-021f-4930-a890-8f8b473857f2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-01T07:16:56.000Z" + }, + "end": { + "$date": "2021-01-01T13:30:43.000Z" + }, + "events": [ + { + "uuid": "20c7b125-41df-45d5-85a5-9cd5c61dabcf", + "start": { + "$date": "2021-01-01T07:16:56.000Z" + }, + "end": { + "$date": "2021-01-01T13:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8c2668e9-08fe-42f8-a2a3-fa9df0c60e81", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T07:17:08.000Z" + }, + "end": { + "$date": "2021-01-01T07:19:48.000Z" + }, + "events": [ + { + "uuid": "344285ea-7092-471c-8c9d-067bf41549c7", + "start": { + "$date": "2021-01-01T07:17:08.000Z" + }, + "end": { + "$date": "2021-01-01T07:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fbd41121-2c1c-4dd3-968c-f27a38008aaa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T07:20:33.000Z" + }, + "end": { + "$date": "2021-01-01T07:23:38.000Z" + }, + "events": [ + { + "uuid": "ade7ac4c-9d52-475f-bbeb-b7c7e3fc5148", + "start": { + "$date": "2021-01-01T07:20:33.000Z" + }, + "end": { + "$date": "2021-01-01T07:23:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8e04c7a3-4a97-4d79-b889-ecfb63a6046c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-01T07:20:45.000Z" + }, + "end": { + "$date": "2021-01-01T08:11:18.000Z" + }, + "events": [ + { + "uuid": "c41f6bd6-dc5f-44a7-8e1d-cb679c63feb8", + "start": { + "$date": "2021-01-01T07:20:45.000Z" + }, + "end": { + "$date": "2021-01-01T08:11:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dcc1a623-415d-484b-aa56-954970bfdd17", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T07:24:53.000Z" + }, + "end": { + "$date": "2021-01-01T08:10:51.000Z" + }, + "events": [ + { + "uuid": "401693b4-e58d-49fc-bb80-1d0ba6d12727", + "start": { + "$date": "2021-01-01T07:24:53.000Z" + }, + "end": { + "$date": "2021-01-01T08:10:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0fd409c3-daca-4361-89a6-d7e71d1e45c5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-01T07:25:05.000Z" + }, + "end": { + "$date": "2021-01-01T08:11:32.000Z" + }, + "events": [ + { + "uuid": "3bdb5720-341b-4b34-a26c-a152064e1d6b", + "start": { + "$date": "2021-01-01T07:25:05.000Z" + }, + "end": { + "$date": "2021-01-01T08:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a934b985-34a3-4a2c-9afc-c336d6ff5a4c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T08:11:27.000Z" + }, + "end": { + "$date": "2021-01-01T09:17:30.000Z" + }, + "events": [ + { + "uuid": "18f3e43f-f5f6-477d-8f63-82c837b9c218", + "start": { + "$date": "2021-01-01T08:11:27.000Z" + }, + "end": { + "$date": "2021-01-01T09:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e80b2ff4-43da-47c9-b3d2-6016731728a8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-01T08:11:26.000Z" + }, + "end": { + "$date": "2021-01-01T08:13:14.000Z" + }, + "events": [ + { + "uuid": "5a66d825-5e49-4c23-a267-9704cd2c7619", + "start": { + "$date": "2021-01-01T08:11:26.000Z" + }, + "end": { + "$date": "2021-01-01T08:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "94a6fe48-5ddf-4261-b1de-66d72ffcee47", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T08:13:56.000Z" + }, + "end": { + "$date": "2021-01-01T09:08:27.000Z" + }, + "events": [ + { + "uuid": "749e41e9-700f-4689-962b-64258d59dda7", + "start": { + "$date": "2021-01-01T08:13:56.000Z" + }, + "end": { + "$date": "2021-01-01T09:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "02b7ae2f-a6e3-4cd4-8655-f518bcd68948", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-01T09:03:54.000Z" + }, + "end": { + "$date": "2021-01-01T18:19:26.000Z" + }, + "events": [ + { + "uuid": "03bf191b-5b20-4fc5-97a6-7c85d4203971", + "start": { + "$date": "2021-01-01T09:03:54.000Z" + }, + "end": { + "$date": "2021-01-01T10:27:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8df1e0ff-fd87-4612-b10c-999765abe829", + "start": { + "$date": "2021-01-01T10:27:54.000Z" + }, + "end": { + "$date": "2021-01-01T16:42:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61686a66-5dbd-4721-ac56-03510d7be543", + "start": { + "$date": "2021-01-01T16:42:54.000Z" + }, + "end": { + "$date": "2021-01-01T16:53:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f559ac25-c7f4-48f5-90d5-d43233b8e300", + "start": { + "$date": "2021-01-01T16:53:54.000Z" + }, + "end": { + "$date": "2021-01-01T18:19:26.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4a1614a8-2c99-4968-bcc3-f7282fc3f790", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T09:25:48.000Z" + }, + "end": { + "$date": "2021-01-01T09:28:59.000Z" + }, + "events": [ + { + "uuid": "b1f7af2e-322d-456e-9686-82fa0e8941ad", + "start": { + "$date": "2021-01-01T09:25:48.000Z" + }, + "end": { + "$date": "2021-01-01T09:28:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d404c93a-a7d6-4f20-ba99-97525db598db", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T16:07:55.000Z" + }, + "end": { + "$date": "2021-01-01T16:09:16.000Z" + }, + "events": [ + { + "uuid": "f18bf78b-beff-4887-ace4-aeae9e6df118", + "start": { + "$date": "2021-01-01T16:07:55.000Z" + }, + "end": { + "$date": "2021-01-01T16:09:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "d59e7234-73be-4476-bff4-fb31f4df7fef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T19:12:24.000Z" + }, + "end": { + "$date": "2021-01-01T20:46:28.000Z" + }, + "events": [ + { + "uuid": "bf930346-168f-4400-ba83-92b5318f7f01", + "start": { + "$date": "2021-01-01T19:12:24.000Z" + }, + "end": { + "$date": "2021-01-01T23:04:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93f2f9da-6132-46cb-a14e-39cbe51f840b", + "start": { + "$date": "2021-01-01T23:04:24.000Z" + }, + "end": { + "$date": "2021-01-01T23:07:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f48442f9-b692-4bd2-91a9-1e41c5013325", + "start": { + "$date": "2021-01-01T23:07:24.000Z" + }, + "end": { + "$date": "2021-01-01T20:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1861b5e-d095-4316-97d2-e0aa9cca31d7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-01T17:42:22.000Z" + }, + "end": { + "$date": "2021-01-01T17:57:10.000Z" + }, + "events": [ + { + "uuid": "bee0b95c-c861-48a5-a32c-15c47a753163", + "start": { + "$date": "2021-01-01T17:42:22.000Z" + }, + "end": { + "$date": "2021-01-01T17:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2c8314bc-a4c5-47fb-a2d5-0f58cb230a79", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T18:36:37.000Z" + }, + "end": { + "$date": "2021-01-01T18:38:52.000Z" + }, + "events": [ + { + "uuid": "cdd2c643-5d89-4950-9ae4-55b9fdde972c", + "start": { + "$date": "2021-01-01T18:36:37.000Z" + }, + "end": { + "$date": "2021-01-01T18:38:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bc86fa6a-a085-4e56-a43e-df12bf967e72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T19:14:12.000Z" + }, + "end": { + "$date": "2021-01-01T20:59:34.000Z" + }, + "events": [ + { + "uuid": "0a51d25f-0a54-4c7c-8271-8ac8b452178c", + "start": { + "$date": "2021-01-01T19:14:12.000Z" + }, + "end": { + "$date": "2021-01-01T20:59:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "583ecae1-e2f3-42e5-846b-dc239cdc19c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-01T20:11:38.000Z" + }, + "end": { + "$date": "2021-01-01T22:05:36.000Z" + }, + "events": [ + { + "uuid": "c6e0e540-a6ad-4b8c-a9f7-03d479ba8b0a", + "start": { + "$date": "2021-01-01T20:11:38.000Z" + }, + "end": { + "$date": "2021-01-01T22:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "489f4a1d-f8fe-4438-b445-b0cbf55b45c6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-01T20:12:15.000Z" + }, + "end": { + "$date": "2021-01-01T21:52:11.000Z" + }, + "events": [ + { + "uuid": "ab03a924-4f6f-47d5-b18f-013e11612f41", + "start": { + "$date": "2021-01-01T20:12:15.000Z" + }, + "end": { + "$date": "2021-01-01T21:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e1f829df-05c6-49c2-9f7f-088245f3db82", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T20:58:24.000Z" + }, + "end": { + "$date": "2021-01-01T22:34:08.000Z" + }, + "events": [ + { + "uuid": "589dfb06-bb27-40c2-a414-6fee44443892", + "start": { + "$date": "2021-01-01T20:58:24.000Z" + }, + "end": { + "$date": "2021-01-01T22:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ff20a233-6362-4bc5-ba14-fbcd3101753b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-01T21:01:26.000Z" + }, + "end": { + "$date": "2021-01-01T23:08:01.000Z" + }, + "events": [ + { + "uuid": "007c5286-122b-43c4-90f0-0f2c77662eed", + "start": { + "$date": "2021-01-01T21:01:26.000Z" + }, + "end": { + "$date": "2021-01-01T23:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8b7eaeec-0b3d-447d-9d10-3bbeb7af2b77", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-01T21:10:26.000Z" + }, + "end": { + "$date": "2021-01-01T23:25:45.000Z" + }, + "events": [ + { + "uuid": "387d7b3b-de2b-4a7e-861f-3a017b04bb81", + "start": { + "$date": "2021-01-01T21:10:26.000Z" + }, + "end": { + "$date": "2021-01-01T23:25:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0afb7f69-802c-4267-bf7d-f0f2d59c0e6c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-01T21:46:55.000Z" + }, + "end": { + "$date": "2021-01-01T21:48:35.000Z" + }, + "events": [ + { + "uuid": "3890515f-0b03-4101-b0b8-62d16c07e0a9", + "start": { + "$date": "2021-01-01T21:46:55.000Z" + }, + "end": { + "$date": "2021-01-01T21:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "f2cf72a7-7b43-48e1-ba42-8c2c8c88b5d0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-01T21:48:45.000Z" + }, + "end": { + "$date": "2021-01-02T02:20:36.000Z" + }, + "events": [ + { + "uuid": "a78ab547-5456-4140-b787-965ca7e83d3b", + "start": { + "$date": "2021-01-01T21:48:45.000Z" + }, + "end": { + "$date": "2021-01-02T02:02:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "227a89ce-4a78-4688-98f4-10b06a64515c", + "start": { + "$date": "2021-01-02T02:02:45.000Z" + }, + "end": { + "$date": "2021-01-02T02:07:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "55954766-90b6-4f19-978d-f74da9e7e009", + "start": { + "$date": "2021-01-02T02:07:45.000Z" + }, + "end": { + "$date": "2021-01-02T02:20:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2ff1045-a458-49f4-b393-cdfa2b727e18", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-01T22:03:22.000Z" + }, + "end": { + "$date": "2021-01-02T02:04:38.000Z" + }, + "events": [ + { + "uuid": "47e51281-e128-400a-8308-e01563007ff1", + "start": { + "$date": "2021-01-01T22:03:22.000Z" + }, + "end": { + "$date": "2021-01-01T22:35:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67a934ad-e026-4b1d-821a-8b941d07c300", + "start": { + "$date": "2021-01-01T22:35:22.000Z" + }, + "end": { + "$date": "2021-01-01T22:36:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32a6ed6c-a087-4807-b759-c82d1d64b207", + "start": { + "$date": "2021-01-01T22:36:22.000Z" + }, + "end": { + "$date": "2021-01-01T23:48:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3283a273-5576-44ca-a303-173d9d5f7cff", + "start": { + "$date": "2021-01-01T23:48:22.000Z" + }, + "end": { + "$date": "2021-01-01T23:51:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df999277-f4d4-4389-ab3e-ac45c03ea502", + "start": { + "$date": "2021-01-01T23:51:22.000Z" + }, + "end": { + "$date": "2021-01-02T00:01:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4135b395-0540-4159-bd88-92d6532c4301", + "start": { + "$date": "2021-01-02T00:01:22.000Z" + }, + "end": { + "$date": "2021-01-02T00:16:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4c5f8f8-cac7-4a81-99c8-95f421af381b", + "start": { + "$date": "2021-01-02T00:16:22.000Z" + }, + "end": { + "$date": "2021-01-02T02:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "4d24b528-b189-440a-92e9-5ed594936e4b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-01T22:56:43.000Z" + }, + "end": { + "$date": "2021-01-02T00:35:17.000Z" + }, + "events": [ + { + "uuid": "05327782-a58a-4ec0-9333-f4d531507d71", + "start": { + "$date": "2021-01-01T22:56:43.000Z" + }, + "end": { + "$date": "2021-01-02T00:35:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "040cee9d-8350-4456-aedf-380006fa588d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-01T22:59:05.000Z" + }, + "end": { + "$date": "2021-01-02T00:58:30.000Z" + }, + "events": [ + { + "uuid": "b6f0e334-99de-4971-ba8b-b19e66432773", + "start": { + "$date": "2021-01-01T22:59:05.000Z" + }, + "end": { + "$date": "2021-01-02T00:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "e6b0298c-7195-48dd-8b7e-d1b157e5b9cf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-01T23:08:20.000Z" + }, + "end": { + "$date": "2021-01-02T00:56:38.000Z" + }, + "events": [ + { + "uuid": "2238d318-a35d-4b0c-8eae-581d0c8fc3b5", + "start": { + "$date": "2021-01-01T23:08:20.000Z" + }, + "end": { + "$date": "2021-01-02T00:56:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "7153b922-f8d9-4d63-9cf1-963c9b49f061", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-01T23:38:00.000Z" + }, + "end": { + "$date": "2021-01-02T00:16:00.000Z" + }, + "events": [ + { + "uuid": "ee099276-92c7-487e-9ba4-126f7c78ec7f", + "start": { + "$date": "2021-01-01T23:38:00.000Z" + }, + "end": { + "$date": "2021-01-02T00:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c11e9879-4b92-49bf-93fc-aa29a6337bca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T00:16:15.000Z" + }, + "end": { + "$date": "2021-01-02T00:56:42.000Z" + }, + "events": [ + { + "uuid": "960df2c9-4f45-45d6-a52f-3ff773a21a21", + "start": { + "$date": "2021-01-02T00:16:15.000Z" + }, + "end": { + "$date": "2021-01-02T00:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7cbaa6f9-b294-402f-b0c7-53f7580371ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T00:28:13.000Z" + }, + "end": { + "$date": "2021-01-02T01:03:09.000Z" + }, + "events": [ + { + "uuid": "e9b499b4-10c6-4e0b-9eaa-5e9348f3c820", + "start": { + "$date": "2021-01-02T00:28:13.000Z" + }, + "end": { + "$date": "2021-01-02T01:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "50b6a9b7-7682-4674-a87d-169d89b4838d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-01T22:56:43.000Z" + }, + "end": { + "$date": "2021-01-02T00:59:15.000Z" + }, + "events": [ + { + "uuid": "256560ac-6b4e-48bf-80ba-94e207a3ed66", + "start": { + "$date": "2021-01-01T22:56:43.000Z" + }, + "end": { + "$date": "2021-01-02T00:59:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4244ca92-e805-47f4-a699-ad0d2250bce9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-02T00:58:38.000Z" + }, + "end": { + "$date": "2021-01-02T06:52:05.000Z" + }, + "events": [ + { + "uuid": "b2f201a6-f9c1-4276-8366-6196f99d58e5", + "start": { + "$date": "2021-01-02T00:58:38.000Z" + }, + "end": { + "$date": "2021-01-02T06:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71187ff6-168e-47dc-bb08-84f6d964b767", + "uuid": "7a82f156-15a3-4697-81cd-b944f8550294", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-02T01:14:00.000Z" + }, + "end": { + "$date": "2021-01-02T05:15:45.000Z" + }, + "events": [ + { + "uuid": "d4322d0d-fd93-44b3-85ed-e89063a84b3f", + "start": { + "$date": "2021-01-02T01:14:00.000Z" + }, + "end": { + "$date": "2021-01-02T04:14:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c2165547-02f9-4756-b6eb-6f41a4770461", + "start": { + "$date": "2021-01-02T04:14:00.000Z" + }, + "end": { + "$date": "2021-01-02T04:58:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "969ad476-f151-4661-b04f-81655e11def6", + "start": { + "$date": "2021-01-02T04:58:00.000Z" + }, + "end": { + "$date": "2021-01-02T05:15:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c9b5a71-c832-4ee7-8c76-ee261a570cd0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T01:17:14.000Z" + }, + "end": { + "$date": "2021-01-02T01:21:54.000Z" + }, + "events": [ + { + "uuid": "03e14cae-4fa9-4820-a5ba-b08d2b4ff83d", + "start": { + "$date": "2021-01-02T01:17:14.000Z" + }, + "end": { + "$date": "2021-01-02T01:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9b45313-1b35-4abe-87db-6253ec694e95", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T01:24:36.000Z" + }, + "end": { + "$date": "2021-01-02T01:26:16.000Z" + }, + "events": [ + { + "uuid": "92b2aeb7-7226-492b-9032-cbca94712384", + "start": { + "$date": "2021-01-02T01:24:36.000Z" + }, + "end": { + "$date": "2021-01-02T01:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19b23edf-facf-4903-839e-a79b47a5388a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T01:26:16.000Z" + }, + "end": { + "$date": "2021-01-02T01:27:33.000Z" + }, + "events": [ + { + "uuid": "061aa63d-daa8-44f0-b82b-3e08324931b1", + "start": { + "$date": "2021-01-02T01:26:16.000Z" + }, + "end": { + "$date": "2021-01-02T01:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "20867354-b9c2-4c9d-9852-33badbdf6174", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T01:28:42.000Z" + }, + "end": { + "$date": "2021-01-02T01:37:32.000Z" + }, + "events": [ + { + "uuid": "44503628-cb27-470a-b2de-5ebb235b593b", + "start": { + "$date": "2021-01-02T01:28:42.000Z" + }, + "end": { + "$date": "2021-01-02T01:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "37869491-ad1c-4f8d-bc5a-de9846186673", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T01:38:05.000Z" + }, + "end": { + "$date": "2021-01-02T02:08:41.000Z" + }, + "events": [ + { + "uuid": "c72e9cf6-270a-4942-91b8-81ee3633ce48", + "start": { + "$date": "2021-01-02T01:38:05.000Z" + }, + "end": { + "$date": "2021-01-02T02:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "59e7b5ff-e084-41d1-a6e2-cc616bc03b88", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T02:09:29.000Z" + }, + "end": { + "$date": "2021-01-02T02:14:43.000Z" + }, + "events": [ + { + "uuid": "098d00a9-1a85-4d19-b62b-dc8f57d6500c", + "start": { + "$date": "2021-01-02T02:09:29.000Z" + }, + "end": { + "$date": "2021-01-02T02:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "79e7488c-28ad-4e8b-937f-784ba467e062", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T02:09:49.000Z" + }, + "end": { + "$date": "2021-01-02T02:27:10.000Z" + }, + "events": [ + { + "uuid": "6d2faa2b-89d3-4f71-9bf8-8b6aa4d8fe7a", + "start": { + "$date": "2021-01-02T02:09:49.000Z" + }, + "end": { + "$date": "2021-01-02T02:27:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14fec178-16f4-49a2-b763-2bb7be01a101", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T02:16:04.000Z" + }, + "end": { + "$date": "2021-01-02T02:20:34.000Z" + }, + "events": [ + { + "uuid": "5d867adf-21e5-4ac7-9238-963a9a988b10", + "start": { + "$date": "2021-01-02T02:16:04.000Z" + }, + "end": { + "$date": "2021-01-02T02:20:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "4d761935-dc70-46b3-abc5-47b750aadf7a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T02:16:45.000Z" + }, + "end": { + "$date": "2021-01-02T02:37:16.000Z" + }, + "events": [ + { + "uuid": "1ead174a-6a4e-43a2-b91a-62e249f9780b", + "start": { + "$date": "2021-01-02T02:16:45.000Z" + }, + "end": { + "$date": "2021-01-02T02:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25432e41-8c90-4d39-9538-5a79492cb2a6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T02:32:58.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:48.000Z" + }, + "events": [ + { + "uuid": "a5cac9a2-76d3-4f87-b32b-59b2fa529d64", + "start": { + "$date": "2021-01-02T02:32:58.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "57f6be88-5429-4f95-81db-36fccdf4965f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T02:26:24.000Z" + }, + "end": { + "$date": "2021-01-02T03:33:18.000Z" + }, + "events": [ + { + "uuid": "c76d6afb-4372-4d63-bb15-6ffb0a3ef3c6", + "start": { + "$date": "2021-01-02T02:26:24.000Z" + }, + "end": { + "$date": "2021-01-02T03:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "84e90be7-738e-419f-b0a9-86abbfc4b23b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T02:27:21.000Z" + }, + "end": { + "$date": "2021-01-02T02:39:26.000Z" + }, + "events": [ + { + "uuid": "f42bbddb-a3a8-426a-bb96-1b8e21ec9a7e", + "start": { + "$date": "2021-01-02T02:27:21.000Z" + }, + "end": { + "$date": "2021-01-02T02:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85ba090e-6dfd-4072-b1dd-6b855273740f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T02:33:30.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:44.000Z" + }, + "events": [ + { + "uuid": "431365e6-0286-4372-86ac-3dd146fa23b1", + "start": { + "$date": "2021-01-02T02:33:30.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ed1e38e-4e06-4dd2-94a7-86b090bd9b1b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T02:32:57.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:49.000Z" + }, + "events": [ + { + "uuid": "73c08bee-9455-46d2-a202-1869adb64d03", + "start": { + "$date": "2021-01-02T02:32:57.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f318bec9-fe20-4f9f-ac33-b9fa3a3fe6bd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T02:33:06.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:46.000Z" + }, + "events": [ + { + "uuid": "bffaac82-125a-45b6-9c63-34d135e63c47", + "start": { + "$date": "2021-01-02T02:33:06.000Z" + }, + "end": { + "$date": "2021-01-02T02:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "8deded4f-29d0-4de9-b489-2f23b1d67bc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T02:41:41.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:37.000Z" + }, + "events": [ + { + "uuid": "90fe6cc8-c9c2-4ea8-b2b2-c41e562fb2dc", + "start": { + "$date": "2021-01-02T02:41:41.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "22c5d3bd-7942-4d7c-9440-286864fde91f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T02:44:27.000Z" + }, + "end": { + "$date": "2021-01-02T03:46:07.000Z" + }, + "events": [ + { + "uuid": "b853c0d9-d747-4168-b173-1d6862e37003", + "start": { + "$date": "2021-01-02T02:44:27.000Z" + }, + "end": { + "$date": "2021-01-02T03:46:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79c611de-d1df-4a93-8e26-83b7a18b8f22", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T03:03:04.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:44.000Z" + }, + "events": [ + { + "uuid": "7269b46f-d7be-453d-ab37-91a43220a301", + "start": { + "$date": "2021-01-02T03:03:04.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51a6f9fb-1cfd-4e58-a687-f57eb5ba3836", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T03:03:45.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:40.000Z" + }, + "events": [ + { + "uuid": "6f3d5ac6-bab0-4aad-9430-2962279eaa33", + "start": { + "$date": "2021-01-02T03:03:45.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2a61150-f0cf-4a63-9f6f-4a0db6e63fb1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T03:01:45.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:47.000Z" + }, + "events": [ + { + "uuid": "8b92a868-5958-4a33-a91c-e5fd27446c2a", + "start": { + "$date": "2021-01-02T03:01:45.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "321b3cf3-f78d-4221-b666-e28d22df8596", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T03:01:49.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:51.000Z" + }, + "events": [ + { + "uuid": "ab0cb937-9ac9-458c-b7ad-2f8a18237e45", + "start": { + "$date": "2021-01-02T03:01:49.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f4ccd76-e79d-4d53-9aef-2cb20e86b915", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T03:01:57.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:47.000Z" + }, + "events": [ + { + "uuid": "7e68aa8d-d99f-42a1-8282-8a6bb33c4d7c", + "start": { + "$date": "2021-01-02T03:01:57.000Z" + }, + "end": { + "$date": "2021-01-02T03:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "44500bb1-112c-40b8-be2f-f39cc688a067", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-02T03:19:16.000Z" + }, + "end": { + "$date": "2021-01-02T03:38:38.000Z" + }, + "events": [ + { + "uuid": "32b6f3f2-bcaa-41b4-9ae4-befba3ca4129", + "start": { + "$date": "2021-01-02T03:19:16.000Z" + }, + "end": { + "$date": "2021-01-02T03:38:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09757c1a-da70-4fcb-9055-129b6cff79e3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T03:25:35.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:15.000Z" + }, + "events": [ + { + "uuid": "bfe2977a-7e0a-47ef-9f35-0530055823a8", + "start": { + "$date": "2021-01-02T03:25:35.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30f0c929-4a3e-46fc-b181-18d131b44682", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T03:25:31.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:10.000Z" + }, + "events": [ + { + "uuid": "55a4be15-aff9-4fe5-beef-12a18ad90da8", + "start": { + "$date": "2021-01-02T03:25:31.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3270bf96-d298-47b9-9477-1c2705d1d561", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T03:25:43.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:18.000Z" + }, + "events": [ + { + "uuid": "d0b8571a-ff79-4029-8eb8-93a2208edef0", + "start": { + "$date": "2021-01-02T03:25:43.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98c1993e-eb50-4cd4-bd22-6263316a71f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T03:25:32.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:37.000Z" + }, + "events": [ + { + "uuid": "d004fcae-55ca-4e6f-9699-9f10d263b292", + "start": { + "$date": "2021-01-02T03:25:32.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6020107-e696-476e-8784-a18295492f86", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T03:25:35.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:15.000Z" + }, + "events": [ + { + "uuid": "8e679fd0-0f5d-468b-a093-009b7b8e94ab", + "start": { + "$date": "2021-01-02T03:25:35.000Z" + }, + "end": { + "$date": "2021-01-02T03:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "6620a1b7-fe1e-44f9-9c2b-46598fe0795f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T04:04:55.000Z" + }, + "end": { + "$date": "2021-01-02T04:16:49.000Z" + }, + "events": [ + { + "uuid": "8c4ebc33-9f2f-4993-bea5-9735edccc8c4", + "start": { + "$date": "2021-01-02T04:04:55.000Z" + }, + "end": { + "$date": "2021-01-02T04:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "3e85390b-7803-423c-b1bb-06d05ac406d5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-02T04:17:45.000Z" + }, + "end": { + "$date": "2021-01-02T05:14:46.000Z" + }, + "events": [ + { + "uuid": "bd39fda5-56dc-4f41-9e22-aab7ff04ec4a", + "start": { + "$date": "2021-01-02T04:17:45.000Z" + }, + "end": { + "$date": "2021-01-02T05:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "604318af-e974-4570-ae61-aedd4ecac789", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T04:04:55.000Z" + }, + "end": { + "$date": "2021-01-02T04:20:51.000Z" + }, + "events": [ + { + "uuid": "6de78615-60b6-4564-8b08-64d6fd3ce9c9", + "start": { + "$date": "2021-01-02T04:04:55.000Z" + }, + "end": { + "$date": "2021-01-02T04:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "14f481aa-3cb6-468e-b1d3-a87b90edf012", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T04:18:25.000Z" + }, + "end": { + "$date": "2021-01-02T05:12:13.000Z" + }, + "events": [ + { + "uuid": "882f71b9-fd70-4638-8e49-c2c1fe4d496f", + "start": { + "$date": "2021-01-02T04:18:25.000Z" + }, + "end": { + "$date": "2021-01-02T05:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "9398a9ad-aa0a-480b-8da0-268b57195901", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T04:21:07.000Z" + }, + "end": { + "$date": "2021-01-02T07:31:26.000Z" + }, + "events": [ + { + "uuid": "f91ee6d0-7d2c-42ed-9861-46b25296ad44", + "start": { + "$date": "2021-01-02T04:21:07.000Z" + }, + "end": { + "$date": "2021-01-02T07:31:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "14d5c125-1c3a-42ab-a7d2-f59fefccc1a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T04:21:32.000Z" + }, + "end": { + "$date": "2021-01-02T05:55:44.000Z" + }, + "events": [ + { + "uuid": "f13c9705-c337-486a-b5d5-e5f1ad4c5cfa", + "start": { + "$date": "2021-01-02T04:21:32.000Z" + }, + "end": { + "$date": "2021-01-02T05:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "0d7ccbef-32db-4dd9-bc38-c66359f8d2ae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T04:23:13.000Z" + }, + "end": { + "$date": "2021-01-02T05:07:53.000Z" + }, + "events": [ + { + "uuid": "9dd7296d-6dcf-44ce-82ca-46096456d610", + "start": { + "$date": "2021-01-02T04:23:13.000Z" + }, + "end": { + "$date": "2021-01-02T05:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fc15d322-1d67-4cdf-a1b5-23b1af2f881e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T04:38:02.000Z" + }, + "end": { + "$date": "2021-01-02T04:45:28.000Z" + }, + "events": [ + { + "uuid": "cfb7e14d-e983-46f8-8148-247e2a86e164", + "start": { + "$date": "2021-01-02T04:38:02.000Z" + }, + "end": { + "$date": "2021-01-02T04:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "80a338d2-2a28-4534-9e50-91014f29ede0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T04:45:39.000Z" + }, + "end": { + "$date": "2021-01-02T05:05:34.000Z" + }, + "events": [ + { + "uuid": "bc055d62-c16e-4e2a-ba17-0661a647f8e9", + "start": { + "$date": "2021-01-02T04:45:39.000Z" + }, + "end": { + "$date": "2021-01-02T05:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b86a3c9c-afe7-43f5-b8e5-1f32b1c10caa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T05:08:58.000Z" + }, + "end": { + "$date": "2021-01-02T05:42:45.000Z" + }, + "events": [ + { + "uuid": "43890a2b-7ee1-443a-a587-c2315edf6346", + "start": { + "$date": "2021-01-02T05:08:58.000Z" + }, + "end": { + "$date": "2021-01-02T05:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "4e9584ec-a962-4248-941b-7b886504765f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T05:58:24.000Z" + }, + "end": { + "$date": "2021-01-02T07:34:32.000Z" + }, + "events": [ + { + "uuid": "f3755da2-7249-4814-9fa3-26562e846488", + "start": { + "$date": "2021-01-02T05:58:24.000Z" + }, + "end": { + "$date": "2021-01-02T07:34:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "3a76bba9-5f49-4ad9-a42f-a0f56dd5d90a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T06:02:20.000Z" + }, + "end": { + "$date": "2021-01-02T06:59:36.000Z" + }, + "events": [ + { + "uuid": "8c12bb03-21d3-4a80-b12d-5fe38897bf3d", + "start": { + "$date": "2021-01-02T06:02:20.000Z" + }, + "end": { + "$date": "2021-01-02T06:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "d268e525-a560-49c5-8175-9de961817c5e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T06:14:02.000Z" + }, + "end": { + "$date": "2021-01-02T08:51:46.000Z" + }, + "events": [ + { + "uuid": "26ca9144-be12-4367-adf8-d058df01cd9b", + "start": { + "$date": "2021-01-02T06:14:02.000Z" + }, + "end": { + "$date": "2021-01-02T08:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4272bb4-01c7-476c-8b3d-38c712ffa2bd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T06:41:16.000Z" + }, + "end": { + "$date": "2021-01-02T06:42:34.000Z" + }, + "events": [ + { + "uuid": "06dcf608-f88e-4297-aa97-31be7c8bf4cf", + "start": { + "$date": "2021-01-02T06:41:16.000Z" + }, + "end": { + "$date": "2021-01-02T06:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcef8b6d-ab58-45ca-b76e-01ee88a6b073", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T07:00:24.000Z" + }, + "end": { + "$date": "2021-01-02T07:00:25.000Z" + }, + "events": [ + { + "uuid": "e5ef34f7-7f46-4b15-a4d1-05155afb9a0a", + "start": { + "$date": "2021-01-02T07:00:24.000Z" + }, + "end": { + "$date": "2021-01-02T07:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "b7521caf-f3c7-4d59-8578-f8d57ea088ec", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-02T06:57:07.000Z" + }, + "end": { + "$date": "2021-01-02T12:52:19.000Z" + }, + "events": [ + { + "uuid": "2d699aed-703c-4321-aa11-71fd18b3822b", + "start": { + "$date": "2021-01-02T06:57:07.000Z" + }, + "end": { + "$date": "2021-01-02T12:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e35718e6-3ab0-454d-9b53-bea7f76679f1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-02T07:00:27.000Z" + }, + "end": { + "$date": "2021-01-02T07:47:37.000Z" + }, + "events": [ + { + "uuid": "404bddcd-a685-4fe2-8315-5e61e98b8fcf", + "start": { + "$date": "2021-01-02T07:00:27.000Z" + }, + "end": { + "$date": "2021-01-02T07:47:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acd5c30b-e23f-4cc0-9d4a-8ebb37c4c75c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T07:01:07.000Z" + }, + "end": { + "$date": "2021-01-02T14:29:09.000Z" + }, + "events": [ + { + "uuid": "91d5d4e9-f623-4bc4-8165-db7375ab7927", + "start": { + "$date": "2021-01-02T07:01:07.000Z" + }, + "end": { + "$date": "2021-01-02T12:21:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04ba565b-1651-46ca-91ee-4eceafdee9cf", + "start": { + "$date": "2021-01-02T12:21:07.000Z" + }, + "end": { + "$date": "2021-01-02T12:29:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a5764924-53e5-47e1-af3d-403197b4e219", + "start": { + "$date": "2021-01-02T12:29:07.000Z" + }, + "end": { + "$date": "2021-01-02T12:46:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "114c67e6-d1e6-49d1-ac89-53afc3db7e9f", + "start": { + "$date": "2021-01-02T12:46:07.000Z" + }, + "end": { + "$date": "2021-01-02T13:00:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39a2577d-d45b-4751-a309-f73eff40a4a6", + "start": { + "$date": "2021-01-02T13:00:07.000Z" + }, + "end": { + "$date": "2021-01-02T13:11:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb9e8cbc-cfa8-4f5a-89b7-0e9f90753a66", + "start": { + "$date": "2021-01-02T13:11:07.000Z" + }, + "end": { + "$date": "2021-01-02T13:22:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c7bafc9-2e7c-4c6e-b86e-5571fbae1c5f", + "start": { + "$date": "2021-01-02T13:22:07.000Z" + }, + "end": { + "$date": "2021-01-02T13:32:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c2dfb50-840c-43ea-b244-a01fb3ff7054", + "start": { + "$date": "2021-01-02T13:32:07.000Z" + }, + "end": { + "$date": "2021-01-02T13:41:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5956fd12-88cf-413f-8ec5-d33c7e39abae", + "start": { + "$date": "2021-01-02T13:41:07.000Z" + }, + "end": { + "$date": "2021-01-02T13:51:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5f1208b-c579-4e43-ad58-9e59dd7a8ffc", + "start": { + "$date": "2021-01-02T13:51:07.000Z" + }, + "end": { + "$date": "2021-01-02T14:29:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "921b1392-1503-4973-85cc-82de33ddafed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T08:57:30.000Z" + }, + "end": { + "$date": "2021-01-02T08:59:33.000Z" + }, + "events": [ + { + "uuid": "e66bfc1f-2f4f-46ba-a8ff-35ebd6dc6373", + "start": { + "$date": "2021-01-02T08:57:30.000Z" + }, + "end": { + "$date": "2021-01-02T08:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33088fce-7a81-431d-9759-469dd8551760", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T07:08:34.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:53.000Z" + }, + "events": [ + { + "uuid": "1dd42d1a-93d5-4205-93c1-e0de19e3c477", + "start": { + "$date": "2021-01-02T07:08:34.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e649e4ff-b98f-4b6a-b158-ab419cd1ad6e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T07:08:39.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:56.000Z" + }, + "events": [ + { + "uuid": "56e604ff-d314-4bcf-9bd9-54f0d2f291c9", + "start": { + "$date": "2021-01-02T07:08:39.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebf4bfb8-fe08-4434-af24-01ce1bbd52ed", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-02T07:08:30.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:50.000Z" + }, + "events": [ + { + "uuid": "7102929e-13d0-45b2-bb52-22cfc996074b", + "start": { + "$date": "2021-01-02T07:08:30.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f24c6195-91ab-4064-922b-08b0ea1acf19", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-02T07:08:28.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:49.000Z" + }, + "events": [ + { + "uuid": "72ad382c-59c9-4e74-80e0-4bb2bfe55e3e", + "start": { + "$date": "2021-01-02T07:08:28.000Z" + }, + "end": { + "$date": "2021-01-02T07:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d8606e5-f181-403b-8db1-dccda1c2cd00", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T07:28:56.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:43.000Z" + }, + "events": [ + { + "uuid": "c1e41dd5-f165-4e51-80af-5cb8f6fabea3", + "start": { + "$date": "2021-01-02T07:28:56.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52ea23db-67de-4c0a-b9cf-add3facf7a5b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-02T07:28:55.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:36.000Z" + }, + "events": [ + { + "uuid": "bfd8a155-86ab-4a53-b3c5-1fe517d000a5", + "start": { + "$date": "2021-01-02T07:28:55.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52802ffb-8706-4090-96f9-d465ae46e9b9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T07:29:01.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:37.000Z" + }, + "events": [ + { + "uuid": "6e46ff8b-636e-4d8c-bcc6-9f0b5a6626e6", + "start": { + "$date": "2021-01-02T07:29:01.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01af0de2-84e3-4145-85a2-ac1bc54bcd73", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-02T07:28:53.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:34.000Z" + }, + "events": [ + { + "uuid": "a4a3b7dd-bddd-450f-ba7d-2fdc12ba4c98", + "start": { + "$date": "2021-01-02T07:28:53.000Z" + }, + "end": { + "$date": "2021-01-02T07:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "1701b44d-4050-4e10-898b-e0e4f6056921", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T07:38:57.000Z" + }, + "end": { + "$date": "2021-01-02T07:43:03.000Z" + }, + "events": [ + { + "uuid": "c7aebbae-220d-47bc-89a6-a97d71528ab5", + "start": { + "$date": "2021-01-02T07:38:57.000Z" + }, + "end": { + "$date": "2021-01-02T07:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26adda30-7aa1-4f75-90e6-17b93c0ef22e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T07:49:31.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:41.000Z" + }, + "events": [ + { + "uuid": "676dc1ce-8207-443f-b6ea-3be1f10a571c", + "start": { + "$date": "2021-01-02T07:49:31.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f2472c4-1edc-4166-ab8f-07b98784f9a1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-02T07:49:31.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:36.000Z" + }, + "events": [ + { + "uuid": "d45cdd9b-9490-42c2-b7f8-bdd7e4286155", + "start": { + "$date": "2021-01-02T07:49:31.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e6226ff-c3f1-4d02-abf8-84a2062cfd15", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-02T07:49:49.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:30.000Z" + }, + "events": [ + { + "uuid": "009878fb-00d9-4b74-bb79-98c6c4eb01d1", + "start": { + "$date": "2021-01-02T07:49:49.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b569e07-c23a-4152-a566-4f8ae2a6a2b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T07:49:37.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:33.000Z" + }, + "events": [ + { + "uuid": "0608d773-6263-4fde-943e-18ae6cdc71e7", + "start": { + "$date": "2021-01-02T07:49:37.000Z" + }, + "end": { + "$date": "2021-01-02T08:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bbd88fc-b666-462a-b12c-837cd0711d08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T08:08:17.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:06.000Z" + }, + "events": [ + { + "uuid": "efde2d0a-ca27-4c6e-994f-3d353b08f66c", + "start": { + "$date": "2021-01-02T08:08:17.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d63f220-f2e8-498c-bf04-db8fbb34e516", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T08:08:23.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:09.000Z" + }, + "events": [ + { + "uuid": "435c7150-e351-4e91-8454-ce5cc094263a", + "start": { + "$date": "2021-01-02T08:08:23.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78a7259c-17d6-494d-9a2f-90800cabacc0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-02T08:08:34.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:05.000Z" + }, + "events": [ + { + "uuid": "f210c467-1e80-4f7d-8eb3-fa74d462bfec", + "start": { + "$date": "2021-01-02T08:08:34.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09d94517-ddd1-4712-b0a5-38129d2ca7fc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-02T08:08:16.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:06.000Z" + }, + "events": [ + { + "uuid": "7b61e815-699f-4668-aef8-82fad7bfce9c", + "start": { + "$date": "2021-01-02T08:08:16.000Z" + }, + "end": { + "$date": "2021-01-02T08:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1911ffa8-8954-4da8-898c-284272661f22", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T08:09:17.000Z" + }, + "end": { + "$date": "2021-01-02T08:25:07.000Z" + }, + "events": [ + { + "uuid": "76ca361f-d846-4357-b67f-d1d309666693", + "start": { + "$date": "2021-01-02T08:09:17.000Z" + }, + "end": { + "$date": "2021-01-02T08:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2fef94d-2c00-40f6-8b47-14f2a30dd762", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T08:37:30.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:30.000Z" + }, + "events": [ + { + "uuid": "7f2fee4f-1232-4bd0-a511-bd468013b393", + "start": { + "$date": "2021-01-02T08:37:30.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bde467ce-99c7-43a4-ad5a-e712a7800759", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-02T08:37:27.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:28.000Z" + }, + "events": [ + { + "uuid": "ffffb8ae-0e84-4cd3-b74a-047159299e5c", + "start": { + "$date": "2021-01-02T08:37:27.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fd4d09f-3aed-4997-b5e8-92cf861827a5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T08:37:36.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:21.000Z" + }, + "events": [ + { + "uuid": "f4cbdd15-8da8-4a9b-b11b-98ea47dcdf72", + "start": { + "$date": "2021-01-02T08:37:36.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "935d5b00-9f77-4009-bf94-2a005c01e2e9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-02T08:37:26.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:22.000Z" + }, + "events": [ + { + "uuid": "2ffbbdc2-e063-4811-b6bb-51210c388cd5", + "start": { + "$date": "2021-01-02T08:37:26.000Z" + }, + "end": { + "$date": "2021-01-02T08:57:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "b5d7f634-4fe5-4bff-81b5-d4e94ea1988d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T08:39:20.000Z" + }, + "end": { + "$date": "2021-01-02T09:10:11.000Z" + }, + "events": [ + { + "uuid": "fa3ce886-ba59-4dbd-aee5-d59a2d7b0905", + "start": { + "$date": "2021-01-02T08:39:20.000Z" + }, + "end": { + "$date": "2021-01-02T09:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bb5a7308-0a4b-47e1-83bb-837998e6ac82", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T09:00:18.000Z" + }, + "end": { + "$date": "2021-01-02T09:05:15.000Z" + }, + "events": [ + { + "uuid": "b6dd1fd8-b738-41ef-8dd5-86e486f3bf43", + "start": { + "$date": "2021-01-02T09:00:18.000Z" + }, + "end": { + "$date": "2021-01-02T09:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "93b647a8-5ea5-4c18-a625-6ab051208834", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T17:05:41.000Z" + }, + "end": { + "$date": "2021-01-02T18:16:42.000Z" + }, + "events": [ + { + "uuid": "907b5990-6fdb-451a-a5dd-445199acd249", + "start": { + "$date": "2021-01-02T17:05:41.000Z" + }, + "end": { + "$date": "2021-01-02T18:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "77cc2299-a5f0-4dbc-b981-bf5694708757", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T17:26:21.000Z" + }, + "end": { + "$date": "2021-01-02T18:45:37.000Z" + }, + "events": [ + { + "uuid": "a48ecdc3-e3e7-4fba-96b8-f4ed35fcbbc9", + "start": { + "$date": "2021-01-02T17:26:21.000Z" + }, + "end": { + "$date": "2021-01-02T18:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "f67bf698-0edb-4db3-8706-0d061cf1109b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T17:26:35.000Z" + }, + "end": { + "$date": "2021-01-02T18:48:13.000Z" + }, + "events": [ + { + "uuid": "86c5951e-c788-4ff8-9a35-52539ce78547", + "start": { + "$date": "2021-01-02T17:26:35.000Z" + }, + "end": { + "$date": "2021-01-02T18:48:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6b8fbf78-7b80-4062-b4b0-c94b954038b9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-02T18:20:45.000Z" + }, + "end": { + "$date": "2021-01-02T18:42:50.000Z" + }, + "events": [ + { + "uuid": "996b229a-4675-4f96-8f61-47ba36bdd65e", + "start": { + "$date": "2021-01-02T18:20:45.000Z" + }, + "end": { + "$date": "2021-01-02T18:42:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1010f10d-8d31-45e3-91ea-6fe3a228ba36", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-02T18:43:32.000Z" + }, + "end": { + "$date": "2021-01-02T18:46:28.000Z" + }, + "events": [ + { + "uuid": "a2f97069-4336-4c3e-a124-1c0435cf64a6", + "start": { + "$date": "2021-01-02T18:43:32.000Z" + }, + "end": { + "$date": "2021-01-02T18:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "22e313ca-3d07-4a80-8f7d-75237f1a4c62", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T18:46:17.000Z" + }, + "end": { + "$date": "2021-01-02T18:49:37.000Z" + }, + "events": [ + { + "uuid": "192c931e-950d-4c68-b05a-a4ee4b183689", + "start": { + "$date": "2021-01-02T18:46:17.000Z" + }, + "end": { + "$date": "2021-01-02T18:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1140eec3-31d0-4f7b-bdd2-4c92ed476222", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T18:47:56.000Z" + }, + "end": { + "$date": "2021-01-02T18:55:23.000Z" + }, + "events": [ + { + "uuid": "997b78fd-c3a0-45a8-bb90-0486123e08d9", + "start": { + "$date": "2021-01-02T18:47:56.000Z" + }, + "end": { + "$date": "2021-01-02T18:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d06b6dc1-8251-416b-a470-18b245a9ffae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T21:57:36.000Z" + }, + "end": { + "$date": "2021-01-02T22:27:43.000Z" + }, + "events": [ + { + "uuid": "aa64ceb8-0220-4490-b993-356a831a2b3a", + "start": { + "$date": "2021-01-02T21:57:36.000Z" + }, + "end": { + "$date": "2021-01-02T22:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c0e527ad-1c2f-4d31-be63-a8d29b4f4638", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T18:58:26.000Z" + }, + "end": { + "$date": "2021-01-02T21:52:23.000Z" + }, + "events": [ + { + "uuid": "860089ff-fdbd-41dd-a7ea-3ed79c0e1807", + "start": { + "$date": "2021-01-02T18:58:26.000Z" + }, + "end": { + "$date": "2021-01-02T20:54:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb4a082b-886b-4ad7-b3ac-69768360907b", + "start": { + "$date": "2021-01-02T20:54:26.000Z" + }, + "end": { + "$date": "2021-01-02T20:58:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "951b955d-e2a9-45e1-b045-f75afd490b3a", + "start": { + "$date": "2021-01-02T20:58:26.000Z" + }, + "end": { + "$date": "2021-01-02T21:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "b2ed1ea1-d715-438f-bb6d-0af0d03783c2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-02T18:59:16.000Z" + }, + "end": { + "$date": "2021-01-02T19:50:12.000Z" + }, + "events": [ + { + "uuid": "1b7b1f33-994f-47f6-ae70-e7d60d9915a8", + "start": { + "$date": "2021-01-02T18:59:16.000Z" + }, + "end": { + "$date": "2021-01-02T19:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3a6da035-55fd-4877-a5e5-18d307987c63", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-02T18:59:43.000Z" + }, + "end": { + "$date": "2021-01-02T19:02:54.000Z" + }, + "events": [ + { + "uuid": "a999130c-99e1-4cb0-a510-228adb775e5a", + "start": { + "$date": "2021-01-02T18:59:43.000Z" + }, + "end": { + "$date": "2021-01-02T19:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0116aa97-3edc-471d-b26f-8a1e27c5d497", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T19:07:04.000Z" + }, + "end": { + "$date": "2021-01-02T19:15:44.000Z" + }, + "events": [ + { + "uuid": "bad688e2-aa0e-4b8e-9f06-73ad7a67ff62", + "start": { + "$date": "2021-01-02T19:07:04.000Z" + }, + "end": { + "$date": "2021-01-02T19:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1d9470cc-7946-49fa-9de0-589ae091592b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T19:15:54.000Z" + }, + "end": { + "$date": "2021-01-02T19:36:54.000Z" + }, + "events": [ + { + "uuid": "0c05e3b1-91b2-4387-80bf-c7d64afb3ea0", + "start": { + "$date": "2021-01-02T19:15:54.000Z" + }, + "end": { + "$date": "2021-01-02T19:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "33eef798-e111-4576-8b86-46d078806778", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-02T19:32:22.000Z" + }, + "end": { + "$date": "2021-01-02T22:41:03.000Z" + }, + "events": [ + { + "uuid": "630970a8-623f-4c5e-b94e-b9141b853593", + "start": { + "$date": "2021-01-02T19:32:22.000Z" + }, + "end": { + "$date": "2021-01-02T22:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "05a91701-f1e6-4609-95dc-00d50df82e11", + "uuid": "985a47ea-0fd3-4634-abe5-e56c095e9756", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T19:38:45.000Z" + }, + "end": { + "$date": "2021-01-02T19:41:29.000Z" + }, + "events": [ + { + "uuid": "cd387bd6-50da-429c-a042-387e2c38c63d", + "start": { + "$date": "2021-01-02T19:38:45.000Z" + }, + "end": { + "$date": "2021-01-02T19:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "05a91701-f1e6-4609-95dc-00d50df82e11", + "uuid": "ff222c73-d2ca-468a-9b56-74c45f264e17", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T19:42:05.000Z" + }, + "end": { + "$date": "2021-01-02T20:00:45.000Z" + }, + "events": [ + { + "uuid": "8ecc2cae-e60c-431f-89ba-c0b5ecb03a4a", + "start": { + "$date": "2021-01-02T19:42:05.000Z" + }, + "end": { + "$date": "2021-01-02T20:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "5d3fbe7e-cdb1-491d-a627-7208e78130bd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T20:01:45.000Z" + }, + "end": { + "$date": "2021-01-02T20:40:25.000Z" + }, + "events": [ + { + "uuid": "98a21a98-1ebb-4e34-8ee0-43cf7f8be238", + "start": { + "$date": "2021-01-02T20:01:45.000Z" + }, + "end": { + "$date": "2021-01-02T20:40:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e6e6e3b4-def5-4ab5-acf4-65a69700673b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-02T20:36:21.000Z" + }, + "end": { + "$date": "2021-01-02T21:32:49.000Z" + }, + "events": [ + { + "uuid": "fa50d153-a0e8-4026-a897-40ab752b6bd1", + "start": { + "$date": "2021-01-02T20:36:21.000Z" + }, + "end": { + "$date": "2021-01-02T21:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "2ebcd83e-53f6-41df-a642-7a42384a415d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-02T20:46:38.000Z" + }, + "end": { + "$date": "2021-01-02T23:29:20.000Z" + }, + "events": [ + { + "uuid": "66c3f79e-0964-41b6-b028-c222a33d7685", + "start": { + "$date": "2021-01-02T20:46:38.000Z" + }, + "end": { + "$date": "2021-01-02T23:29:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dd33e6c4-f0bb-478f-9759-b85f689a6e76", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T21:15:19.000Z" + }, + "end": { + "$date": "2021-01-02T22:28:09.000Z" + }, + "events": [ + { + "uuid": "94d1681e-482f-42c1-99f4-cca66ffffccf", + "start": { + "$date": "2021-01-02T21:15:19.000Z" + }, + "end": { + "$date": "2021-01-02T22:28:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2f259b17-c84f-4dc9-ac6b-11915cfcdcf8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-02T21:20:45.000Z" + }, + "end": { + "$date": "2021-01-02T21:25:39.000Z" + }, + "events": [ + { + "uuid": "a9918c39-df3a-4a1d-a40f-4d36a86c0339", + "start": { + "$date": "2021-01-02T21:20:45.000Z" + }, + "end": { + "$date": "2021-01-02T21:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0dac1738-f6a8-4637-a57e-5859823c5eaa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T22:21:47.000Z" + }, + "end": { + "$date": "2021-01-02T22:56:51.000Z" + }, + "events": [ + { + "uuid": "5207cfd6-64bb-48ac-8f31-16c8ca13e582", + "start": { + "$date": "2021-01-02T22:21:47.000Z" + }, + "end": { + "$date": "2021-01-02T22:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "53a6eba3-6551-4e1b-b23c-77a6308f9455", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-02T22:22:00.000Z" + }, + "end": { + "$date": "2021-01-02T23:43:43.000Z" + }, + "events": [ + { + "uuid": "f5e53833-9e87-4a74-9e19-376f02b18728", + "start": { + "$date": "2021-01-02T22:22:00.000Z" + }, + "end": { + "$date": "2021-01-02T23:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5f6a173c-6765-4245-8ab5-f12444061556", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-02T22:27:59.000Z" + }, + "end": { + "$date": "2021-01-03T01:19:19.000Z" + }, + "events": [ + { + "uuid": "69445f64-8f1a-47d0-9edb-da6ede732036", + "start": { + "$date": "2021-01-02T22:27:59.000Z" + }, + "end": { + "$date": "2021-01-03T01:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3fe368b7-45d0-40e2-a1d9-e4c9a3edcced", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T22:50:26.000Z" + }, + "end": { + "$date": "2021-01-02T22:51:25.000Z" + }, + "events": [ + { + "uuid": "c4cf86e6-2e5d-493d-b18b-985d24fb78e9", + "start": { + "$date": "2021-01-02T22:50:26.000Z" + }, + "end": { + "$date": "2021-01-02T22:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "33d132a8-b4d4-46e9-984c-8f23d655646c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T23:01:34.000Z" + }, + "end": { + "$date": "2021-01-02T23:10:15.000Z" + }, + "events": [ + { + "uuid": "c92bd752-e09c-4455-857d-54d602b2d531", + "start": { + "$date": "2021-01-02T23:01:34.000Z" + }, + "end": { + "$date": "2021-01-02T23:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "800125cf-584f-4713-afd9-0fd8310bcf7e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T22:53:01.000Z" + }, + "end": { + "$date": "2021-01-02T22:55:11.000Z" + }, + "events": [ + { + "uuid": "a3dca3ea-908e-477d-9ce9-9ef9489f6d79", + "start": { + "$date": "2021-01-02T22:53:01.000Z" + }, + "end": { + "$date": "2021-01-02T22:55:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "aebc24d6-5c3f-4341-b0ec-35a9cf6eb55c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T22:56:27.000Z" + }, + "end": { + "$date": "2021-01-02T22:59:22.000Z" + }, + "events": [ + { + "uuid": "c0c2afa9-6759-45f3-a77e-cd7f0906bcec", + "start": { + "$date": "2021-01-02T22:56:27.000Z" + }, + "end": { + "$date": "2021-01-02T22:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "85aac421-79c2-4c6c-bc26-29ff16f07a52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T22:58:37.000Z" + }, + "end": { + "$date": "2021-01-02T23:01:06.000Z" + }, + "events": [ + { + "uuid": "60916675-50a5-47a2-92b9-84caef9daef7", + "start": { + "$date": "2021-01-02T22:58:37.000Z" + }, + "end": { + "$date": "2021-01-02T23:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "99c50ff1-deeb-4838-aacf-75cfbd31a93b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-02T22:59:57.000Z" + }, + "end": { + "$date": "2021-01-02T23:49:40.000Z" + }, + "events": [ + { + "uuid": "9a0ce97b-ef8c-4fbc-b386-e2c8d0313687", + "start": { + "$date": "2021-01-02T22:59:57.000Z" + }, + "end": { + "$date": "2021-01-02T23:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e140a3d7-7da7-4e83-8a23-c212bb356182", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-02T23:01:17.000Z" + }, + "end": { + "$date": "2021-01-02T23:49:37.000Z" + }, + "events": [ + { + "uuid": "0edb492c-7c77-496c-86b2-809a2e4b141f", + "start": { + "$date": "2021-01-02T23:01:17.000Z" + }, + "end": { + "$date": "2021-01-02T23:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "db97c0e9-8fd7-453b-bb40-c42942b32791", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T23:04:21.000Z" + }, + "end": { + "$date": "2021-01-02T23:05:31.000Z" + }, + "events": [ + { + "uuid": "688daa67-6387-454b-b092-4273c28cc8d0", + "start": { + "$date": "2021-01-02T23:04:21.000Z" + }, + "end": { + "$date": "2021-01-02T23:05:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "32123e52-a269-4ac3-8bb4-2c83880bb999", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-02T23:06:06.000Z" + }, + "end": { + "$date": "2021-01-03T00:02:42.000Z" + }, + "events": [ + { + "uuid": "1d214444-b1da-4c7f-a002-34a335787967", + "start": { + "$date": "2021-01-02T23:06:06.000Z" + }, + "end": { + "$date": "2021-01-03T00:02:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d45fa996-45e0-4938-8cb8-1a2ec12d7de8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-02T23:06:09.000Z" + }, + "end": { + "$date": "2021-01-02T23:22:28.000Z" + }, + "events": [ + { + "uuid": "04e8b7b9-cf60-41a6-9e98-657084911911", + "start": { + "$date": "2021-01-02T23:06:09.000Z" + }, + "end": { + "$date": "2021-01-02T23:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "638fd7fc-4898-4507-bf99-7390652fcadf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T23:10:25.000Z" + }, + "end": { + "$date": "2021-01-02T23:15:01.000Z" + }, + "events": [ + { + "uuid": "c3ce7dad-5603-4854-9ebb-eab9531c557b", + "start": { + "$date": "2021-01-02T23:10:25.000Z" + }, + "end": { + "$date": "2021-01-02T23:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bc15ca42-8bf6-476c-90a1-e80c408f7b15", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-02T23:55:39.000Z" + }, + "end": { + "$date": "2021-01-03T00:01:05.000Z" + }, + "events": [ + { + "uuid": "9a8400ea-5fd9-47e7-b673-a6922157542f", + "start": { + "$date": "2021-01-02T23:55:39.000Z" + }, + "end": { + "$date": "2021-01-03T00:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f686979d-722f-4c28-b42c-c75d2eca1f42", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T01:24:58.000Z" + }, + "end": { + "$date": "2021-01-03T01:52:42.000Z" + }, + "events": [ + { + "uuid": "cd4435b1-d4c7-4f7c-ba4c-5c5a72c9f727", + "start": { + "$date": "2021-01-03T01:24:58.000Z" + }, + "end": { + "$date": "2021-01-03T01:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e28044be-6b1e-425a-8450-96bfb0cca2fe", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-02T23:29:59.000Z" + }, + "end": { + "$date": "2021-01-02T23:31:25.000Z" + }, + "events": [ + { + "uuid": "5c666429-f2de-480f-85fc-90efe7f2b080", + "start": { + "$date": "2021-01-02T23:29:59.000Z" + }, + "end": { + "$date": "2021-01-02T23:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e0303e9f-decc-4411-a577-257798dbf15f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-02T23:32:03.000Z" + }, + "end": { + "$date": "2021-01-03T02:16:07.000Z" + }, + "events": [ + { + "uuid": "7a07b64e-dd6e-4065-b46e-6c8f08bf3c61", + "start": { + "$date": "2021-01-02T23:32:03.000Z" + }, + "end": { + "$date": "2021-01-03T02:16:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "542e12f8-8608-429a-a05f-df4f8b035b34", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T00:01:11.000Z" + }, + "end": { + "$date": "2021-01-03T00:10:17.000Z" + }, + "events": [ + { + "uuid": "3456b3ad-6eeb-4436-8992-4b9ccf03d054", + "start": { + "$date": "2021-01-03T00:01:11.000Z" + }, + "end": { + "$date": "2021-01-03T00:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b471f39a-816f-4b83-bea4-f06e80ece481", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-03T00:01:32.000Z" + }, + "end": { + "$date": "2021-01-03T00:23:49.000Z" + }, + "events": [ + { + "uuid": "c2d9f01d-ec41-468e-bb9e-ac7d31c0406d", + "start": { + "$date": "2021-01-03T00:01:32.000Z" + }, + "end": { + "$date": "2021-01-03T00:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "888de1c3-994d-4a35-a8c2-86fa3d2338f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T00:06:25.000Z" + }, + "end": { + "$date": "2021-01-03T00:17:23.000Z" + }, + "events": [ + { + "uuid": "b6cb4e8a-3c96-4e40-958d-bfc49c9f7eb2", + "start": { + "$date": "2021-01-03T00:06:25.000Z" + }, + "end": { + "$date": "2021-01-03T00:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "281c2b19-b4db-47f9-a2dd-26d3d599dade", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T00:18:23.000Z" + }, + "end": { + "$date": "2021-01-03T00:47:49.000Z" + }, + "events": [ + { + "uuid": "235f8dea-ad73-408b-8483-598df92f8c7f", + "start": { + "$date": "2021-01-03T00:18:23.000Z" + }, + "end": { + "$date": "2021-01-03T00:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6638bcb8-fbab-433b-bf6e-5411505461a9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T00:18:28.000Z" + }, + "end": { + "$date": "2021-01-03T00:47:45.000Z" + }, + "events": [ + { + "uuid": "2f2dafc1-3025-4251-b5ac-3beb0d220cb2", + "start": { + "$date": "2021-01-03T00:18:28.000Z" + }, + "end": { + "$date": "2021-01-03T00:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9341bbc4-ca86-402d-a33a-6307de5f731d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-03T00:24:03.000Z" + }, + "end": { + "$date": "2021-01-03T01:52:21.000Z" + }, + "events": [ + { + "uuid": "4954b8bb-71e2-4d34-86d2-689793024c27", + "start": { + "$date": "2021-01-03T00:24:03.000Z" + }, + "end": { + "$date": "2021-01-03T01:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "61a84feb-41e1-41a5-b2d5-a78112e0f0fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-03T00:30:40.000Z" + }, + "end": { + "$date": "2021-01-03T01:17:11.000Z" + }, + "events": [ + { + "uuid": "db8d4f25-6859-4e80-81d6-5f9b5733dbae", + "start": { + "$date": "2021-01-03T00:30:40.000Z" + }, + "end": { + "$date": "2021-01-03T01:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "85cb0ddf-a4a8-4549-8bc0-10e9260e995d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-03T00:31:53.000Z" + }, + "end": { + "$date": "2021-01-03T00:56:10.000Z" + }, + "events": [ + { + "uuid": "c6575aae-4271-4fea-b591-9ae20be83e2c", + "start": { + "$date": "2021-01-03T00:31:53.000Z" + }, + "end": { + "$date": "2021-01-03T00:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "615e86ed-67e6-4968-af75-77b99eb97b03", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T00:56:05.000Z" + }, + "end": { + "$date": "2021-01-03T01:22:55.000Z" + }, + "events": [ + { + "uuid": "c2dfb96a-c72e-4966-be19-706bbb88aa61", + "start": { + "$date": "2021-01-03T00:56:05.000Z" + }, + "end": { + "$date": "2021-01-03T01:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "958fd367-057c-4efb-a638-3b8f2631bca0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T00:53:20.000Z" + }, + "end": { + "$date": "2021-01-03T01:23:00.000Z" + }, + "events": [ + { + "uuid": "dc4fba6d-ce36-4bf8-8724-e2387a9986c1", + "start": { + "$date": "2021-01-03T00:53:20.000Z" + }, + "end": { + "$date": "2021-01-03T01:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "fbed3b4e-9892-45a1-876c-6532a9364cc8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-03T01:07:22.000Z" + }, + "end": { + "$date": "2021-01-03T02:03:46.000Z" + }, + "events": [ + { + "uuid": "1361f015-2bc7-4c85-a5f3-2c4535e2f75a", + "start": { + "$date": "2021-01-03T01:07:22.000Z" + }, + "end": { + "$date": "2021-01-03T02:03:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "0e8ba3ec-7036-43a9-a472-8ddf845b7a62", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T01:50:59.000Z" + }, + "end": { + "$date": "2021-01-03T03:09:27.000Z" + }, + "events": [ + { + "uuid": "b54f3e52-ef62-43e0-92e6-76cdb6c35228", + "start": { + "$date": "2021-01-03T01:50:59.000Z" + }, + "end": { + "$date": "2021-01-03T03:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "334681b4-65e3-4a4a-9bcf-70f0f7a93fa6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T01:59:43.000Z" + }, + "end": { + "$date": "2021-01-03T02:28:35.000Z" + }, + "events": [ + { + "uuid": "fd1970c1-ad14-4c68-b9b5-9d76ef491f17", + "start": { + "$date": "2021-01-03T01:59:43.000Z" + }, + "end": { + "$date": "2021-01-03T02:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "a60bd914-a201-4ccc-9d8b-cca6baa6d9db", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T02:07:24.000Z" + }, + "end": { + "$date": "2021-01-03T02:17:55.000Z" + }, + "events": [ + { + "uuid": "93e0c634-af4b-4cd6-a278-fb4180b2f3da", + "start": { + "$date": "2021-01-03T02:07:24.000Z" + }, + "end": { + "$date": "2021-01-03T02:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36634cc5-9245-4dc2-8bf9-536c6b2969a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-03T02:15:48.000Z" + }, + "end": { + "$date": "2021-01-03T06:35:58.000Z" + }, + "events": [ + { + "uuid": "6a1207d3-1c08-4891-8ae2-cdba687217a5", + "start": { + "$date": "2021-01-03T02:15:48.000Z" + }, + "end": { + "$date": "2021-01-03T06:35:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "52f9a47e-9bd6-4373-90f7-67faf6911907", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T02:18:20.000Z" + }, + "end": { + "$date": "2021-01-03T02:46:20.000Z" + }, + "events": [ + { + "uuid": "a706036f-dbaa-4639-97da-07fec91065ed", + "start": { + "$date": "2021-01-03T02:18:20.000Z" + }, + "end": { + "$date": "2021-01-03T02:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ceca3eae-bd6a-43d3-ae29-93bedaccb78c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-03T02:20:57.000Z" + }, + "end": { + "$date": "2021-01-03T06:35:46.000Z" + }, + "events": [ + { + "uuid": "9ef1ecb4-742e-4eb1-99e2-e0a3ae1fca2d", + "start": { + "$date": "2021-01-03T02:20:57.000Z" + }, + "end": { + "$date": "2021-01-03T06:35:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1e89f477-da1e-4612-8cbb-3620571ecbdc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-03T02:35:18.000Z" + }, + "end": { + "$date": "2021-01-03T04:34:37.000Z" + }, + "events": [ + { + "uuid": "36b5617b-0f97-4803-8c24-ffe12ec7565e", + "start": { + "$date": "2021-01-03T02:35:18.000Z" + }, + "end": { + "$date": "2021-01-03T04:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ea04b7f-7791-435e-ad88-9248a5bc6e47", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T02:46:40.000Z" + }, + "end": { + "$date": "2021-01-03T03:47:33.000Z" + }, + "events": [ + { + "uuid": "0bfa5b35-fc77-4407-a7e5-825ac4933b67", + "start": { + "$date": "2021-01-03T02:46:40.000Z" + }, + "end": { + "$date": "2021-01-03T03:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba061a0b-0357-4462-894a-27d3e1c6d841", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T02:59:41.000Z" + }, + "end": { + "$date": "2021-01-03T03:34:14.000Z" + }, + "events": [ + { + "uuid": "91796ba3-ef65-4ce5-b691-27217cc5c1af", + "start": { + "$date": "2021-01-03T02:59:41.000Z" + }, + "end": { + "$date": "2021-01-03T03:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b21b243b-951c-4bcc-b334-d939e22622f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T03:10:03.000Z" + }, + "end": { + "$date": "2021-01-03T03:48:15.000Z" + }, + "events": [ + { + "uuid": "f8b57cee-9b15-4919-aef0-a97c936c86e8", + "start": { + "$date": "2021-01-03T03:10:03.000Z" + }, + "end": { + "$date": "2021-01-03T03:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01c10d21-0b8c-4be8-9d18-bbcd695957ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T03:16:08.000Z" + }, + "end": { + "$date": "2021-01-03T03:51:06.000Z" + }, + "events": [ + { + "uuid": "211123ba-5969-4e16-8153-c382d261bd8b", + "start": { + "$date": "2021-01-03T03:16:08.000Z" + }, + "end": { + "$date": "2021-01-03T03:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "347eb3a4-2049-401c-81f5-610610b13811", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-03T03:31:35.000Z" + }, + "end": { + "$date": "2021-01-03T12:17:34.000Z" + }, + "events": [ + { + "uuid": "c73ede61-3a84-4647-8598-55feb4dc0ec5", + "start": { + "$date": "2021-01-03T03:31:35.000Z" + }, + "end": { + "$date": "2021-01-03T12:17:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cb87bdde-da35-4dfe-9718-1b50ca697790", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T03:35:05.000Z" + }, + "end": { + "$date": "2021-01-03T03:36:55.000Z" + }, + "events": [ + { + "uuid": "22bb77f7-71c3-4ee3-9d88-77c1e1ec9e8d", + "start": { + "$date": "2021-01-03T03:35:05.000Z" + }, + "end": { + "$date": "2021-01-03T03:36:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "44f7acbe-7d14-43e8-8dbd-ac9c1df3d41f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T04:28:16.000Z" + }, + "end": { + "$date": "2021-01-03T04:28:15.000Z" + }, + "events": [ + { + "uuid": "2cadc363-6908-48ef-8ee4-7e4f689ca06c", + "start": { + "$date": "2021-01-03T04:28:16.000Z" + }, + "end": { + "$date": "2021-01-03T04:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "832aa7f3-0c91-4d32-8bf7-43bcd032331c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T03:50:13.000Z" + }, + "end": { + "$date": "2021-01-03T05:30:09.000Z" + }, + "events": [ + { + "uuid": "13ebccd3-58ef-4651-82d2-a314a258ab6f", + "start": { + "$date": "2021-01-03T03:50:13.000Z" + }, + "end": { + "$date": "2021-01-03T05:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "0fa52d17-25f2-43b9-9bc5-253821541233", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T03:50:16.000Z" + }, + "end": { + "$date": "2021-01-03T05:31:12.000Z" + }, + "events": [ + { + "uuid": "6cb04157-ca79-47a2-8e25-3581a22eff27", + "start": { + "$date": "2021-01-03T03:50:16.000Z" + }, + "end": { + "$date": "2021-01-03T05:31:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "37895852-a90c-462e-9d3a-23f95ba8ad8d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T04:25:50.000Z" + }, + "end": { + "$date": "2021-01-03T04:27:10.000Z" + }, + "events": [ + { + "uuid": "4b168aa3-d9d7-4843-be1b-b59edaa16298", + "start": { + "$date": "2021-01-03T04:25:50.000Z" + }, + "end": { + "$date": "2021-01-03T04:27:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "451cb9ec-db64-454d-9ff0-f517320c750b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T04:28:36.000Z" + }, + "end": { + "$date": "2021-01-03T04:29:46.000Z" + }, + "events": [ + { + "uuid": "5b1b1828-98e7-4cd9-8bfe-624538b45815", + "start": { + "$date": "2021-01-03T04:28:36.000Z" + }, + "end": { + "$date": "2021-01-03T04:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fef26829-62ff-482f-acb6-c4eb338c35a9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T04:30:11.000Z" + }, + "end": { + "$date": "2021-01-03T05:11:24.000Z" + }, + "events": [ + { + "uuid": "e8a3e948-1ba2-4bd9-b83a-6f25d3281953", + "start": { + "$date": "2021-01-03T04:30:11.000Z" + }, + "end": { + "$date": "2021-01-03T05:11:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "69fb5469-d113-4208-82a6-99a7126dadfb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T04:34:35.000Z" + }, + "end": { + "$date": "2021-01-03T05:12:11.000Z" + }, + "events": [ + { + "uuid": "a1e1aa7d-d434-4b17-815a-49f74d8a4679", + "start": { + "$date": "2021-01-03T04:34:35.000Z" + }, + "end": { + "$date": "2021-01-03T05:12:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "58127092-3a6f-4d1a-bcf6-1a4eea5fc380", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T05:12:15.000Z" + }, + "end": { + "$date": "2021-01-03T05:38:57.000Z" + }, + "events": [ + { + "uuid": "be9dd643-f823-4b1d-8e7c-4b925ecb90ad", + "start": { + "$date": "2021-01-03T05:12:15.000Z" + }, + "end": { + "$date": "2021-01-03T05:38:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6bc80eef-37fc-441b-b6a1-0707d7b06140", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-03T05:18:15.000Z" + }, + "end": { + "$date": "2021-01-03T06:03:43.000Z" + }, + "events": [ + { + "uuid": "52bb5cdc-7622-4355-b9f3-fc855839dddd", + "start": { + "$date": "2021-01-03T05:18:15.000Z" + }, + "end": { + "$date": "2021-01-03T06:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "1d956f25-4180-429c-b2c9-53a97151d921", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-03T05:36:22.000Z" + }, + "end": { + "$date": "2021-01-03T06:37:43.000Z" + }, + "events": [ + { + "uuid": "17d3fa05-7418-4cf1-9714-e49388f67025", + "start": { + "$date": "2021-01-03T05:36:22.000Z" + }, + "end": { + "$date": "2021-01-03T06:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "29e5ea58-4446-4dc0-9e6d-8c7087e5c504", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T05:39:28.000Z" + }, + "end": { + "$date": "2021-01-03T05:52:40.000Z" + }, + "events": [ + { + "uuid": "6001c22a-613e-4c20-bb1b-f38435682198", + "start": { + "$date": "2021-01-03T05:39:28.000Z" + }, + "end": { + "$date": "2021-01-03T05:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "9d7d6dc0-7ee0-44c1-9696-6c4dc893e88c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T05:42:30.000Z" + }, + "end": { + "$date": "2021-01-03T05:58:15.000Z" + }, + "events": [ + { + "uuid": "972e879e-33af-4087-8355-c656e0cfa30c", + "start": { + "$date": "2021-01-03T05:42:30.000Z" + }, + "end": { + "$date": "2021-01-03T05:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d76a4a3-6c0b-4d0b-bcbd-50de087beac3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T05:47:21.000Z" + }, + "end": { + "$date": "2021-01-03T06:17:27.000Z" + }, + "events": [ + { + "uuid": "614adc85-062e-42f2-a2e4-a121c45f0a8c", + "start": { + "$date": "2021-01-03T05:47:21.000Z" + }, + "end": { + "$date": "2021-01-03T06:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "922af8b2-cbee-4442-aba1-1a68c4c6a1c2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T05:55:26.000Z" + }, + "end": { + "$date": "2021-01-03T06:22:39.000Z" + }, + "events": [ + { + "uuid": "36d8d143-09aa-4ccd-b090-b4e38b07e049", + "start": { + "$date": "2021-01-03T05:55:26.000Z" + }, + "end": { + "$date": "2021-01-03T06:22:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "bf349964-8997-4b2a-833f-19a286dd7df9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T06:08:48.000Z" + }, + "end": { + "$date": "2021-01-03T07:32:42.000Z" + }, + "events": [ + { + "uuid": "c39a39e6-c17a-432a-83d2-5ecc02c873cc", + "start": { + "$date": "2021-01-03T06:08:48.000Z" + }, + "end": { + "$date": "2021-01-03T07:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d717fd8d-2c18-4b13-9744-4ccbdab97a4e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T06:31:25.000Z" + }, + "end": { + "$date": "2021-01-03T07:08:37.000Z" + }, + "events": [ + { + "uuid": "9db84dc9-d865-4434-9e7c-0b92c390a9d0", + "start": { + "$date": "2021-01-03T06:31:25.000Z" + }, + "end": { + "$date": "2021-01-03T07:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3ea0d9e-56af-41ac-8f8b-2c3eb74909d9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T06:23:30.000Z" + }, + "end": { + "$date": "2021-01-03T08:00:15.000Z" + }, + "events": [ + { + "uuid": "01438e2e-1fa8-49c5-81d1-4febf1db0c07", + "start": { + "$date": "2021-01-03T06:23:30.000Z" + }, + "end": { + "$date": "2021-01-03T08:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1822c04d-0319-4afd-88bc-29a7ce16a053", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-03T06:39:11.000Z" + }, + "end": { + "$date": "2021-01-03T06:46:03.000Z" + }, + "events": [ + { + "uuid": "fb8793ee-f76f-4be8-965d-5c3fce923d2b", + "start": { + "$date": "2021-01-03T06:39:11.000Z" + }, + "end": { + "$date": "2021-01-03T06:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03bdddbc-0e71-44d0-ba66-4fae14e2a21d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T07:13:32.000Z" + }, + "end": { + "$date": "2021-01-03T07:37:16.000Z" + }, + "events": [ + { + "uuid": "3014b92c-0e3a-4ff9-a203-b7dbe4ff0cae", + "start": { + "$date": "2021-01-03T07:13:32.000Z" + }, + "end": { + "$date": "2021-01-03T07:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5bf7b68-9f3c-4fb6-8ef8-6e24760ea7b7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-03T07:09:37.000Z" + }, + "end": { + "$date": "2021-01-03T07:11:19.000Z" + }, + "events": [ + { + "uuid": "e3ba7abd-4eac-432a-8116-ddc82cdf127c", + "start": { + "$date": "2021-01-03T07:09:37.000Z" + }, + "end": { + "$date": "2021-01-03T07:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95273bfd-e76a-4295-af74-9154e43d0f2c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-03T07:13:56.000Z" + }, + "end": { + "$date": "2021-01-03T07:37:14.000Z" + }, + "events": [ + { + "uuid": "a17bc71d-1ba4-4357-8c0c-9a89894d1006", + "start": { + "$date": "2021-01-03T07:13:56.000Z" + }, + "end": { + "$date": "2021-01-03T07:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "caa0a396-b6c8-41c8-89dc-7e61da547e54", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T07:33:33.000Z" + }, + "end": { + "$date": "2021-01-03T07:34:38.000Z" + }, + "events": [ + { + "uuid": "c37eb5a5-57a5-446d-80f3-9d592721cf0c", + "start": { + "$date": "2021-01-03T07:33:33.000Z" + }, + "end": { + "$date": "2021-01-03T07:34:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "906c823d-4565-426a-bd72-d102d5cf49e0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T07:34:48.000Z" + }, + "end": { + "$date": "2021-01-03T09:04:22.000Z" + }, + "events": [ + { + "uuid": "5ce8f957-ec3a-4269-973b-45ac8751c3d1", + "start": { + "$date": "2021-01-03T07:34:48.000Z" + }, + "end": { + "$date": "2021-01-03T09:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05277576-8688-4e1d-89a4-75032ad7b002", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T07:40:33.000Z" + }, + "end": { + "$date": "2021-01-03T07:58:13.000Z" + }, + "events": [ + { + "uuid": "2407d3ae-8aad-443e-a26b-b3f7f1cb5556", + "start": { + "$date": "2021-01-03T07:40:33.000Z" + }, + "end": { + "$date": "2021-01-03T07:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8281953-a4ae-463a-a954-d15bfbe7aec1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-03T07:40:27.000Z" + }, + "end": { + "$date": "2021-01-03T07:58:21.000Z" + }, + "events": [ + { + "uuid": "e7def722-5e1d-468c-9d79-b105855959f2", + "start": { + "$date": "2021-01-03T07:40:27.000Z" + }, + "end": { + "$date": "2021-01-03T07:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed6b3343-88a2-4613-924a-58de86d06292", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T16:23:28.000Z" + }, + "end": { + "$date": "2021-01-03T17:00:57.000Z" + }, + "events": [ + { + "uuid": "7f3b2178-0c3c-4c84-bc1a-fb90424a83ed", + "start": { + "$date": "2021-01-03T16:23:28.000Z" + }, + "end": { + "$date": "2021-01-03T16:43:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a92fe21-9548-4540-b952-c0c30336ac29", + "start": { + "$date": "2021-01-03T16:43:28.000Z" + }, + "end": { + "$date": "2021-01-03T17:00:57.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "858939b1-28d2-465f-ab0b-a236de1582db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T16:34:50.000Z" + }, + "end": { + "$date": "2021-01-03T17:03:32.000Z" + }, + "events": [ + { + "uuid": "0e206420-a6b4-4822-8c4e-c61162f5235d", + "start": { + "$date": "2021-01-03T16:34:50.000Z" + }, + "end": { + "$date": "2021-01-03T17:03:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24884e50-f5ce-4942-baa2-a0773c3f0bab", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-03T16:36:11.000Z" + }, + "end": { + "$date": "2021-01-03T17:03:28.000Z" + }, + "events": [ + { + "uuid": "a6d01f81-9f05-4a50-96b2-5fcb78261143", + "start": { + "$date": "2021-01-03T16:36:11.000Z" + }, + "end": { + "$date": "2021-01-03T17:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "0cdfcc7d-5c33-43e8-b13b-0f9ce6b32f33", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T17:01:06.000Z" + }, + "end": { + "$date": "2021-01-03T17:59:59.000Z" + }, + "events": [ + { + "uuid": "a7b9c57c-0b6a-42b5-94d2-a29efd29fbbd", + "start": { + "$date": "2021-01-03T17:01:06.000Z" + }, + "end": { + "$date": "2021-01-03T17:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9b77cbb4-a3d2-4446-80b4-e534601bfaca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T17:03:27.000Z" + }, + "end": { + "$date": "2021-01-03T17:50:49.000Z" + }, + "events": [ + { + "uuid": "89a4618a-5873-4921-9012-661cb8af3d2d", + "start": { + "$date": "2021-01-03T17:03:27.000Z" + }, + "end": { + "$date": "2021-01-03T17:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f95eb046-7d46-47ac-a34b-cb4e1dacfb88", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-03T17:08:31.000Z" + }, + "end": { + "$date": "2021-01-03T17:51:17.000Z" + }, + "events": [ + { + "uuid": "bbf057b1-66e7-41f8-b15a-6250ce26ede6", + "start": { + "$date": "2021-01-03T17:08:31.000Z" + }, + "end": { + "$date": "2021-01-03T17:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ece1211-abf7-4174-baf0-3c1b6d282126", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-03T17:09:07.000Z" + }, + "end": { + "$date": "2021-01-03T17:51:09.000Z" + }, + "events": [ + { + "uuid": "b3c9b677-0da6-452e-b5e5-6656dac73217", + "start": { + "$date": "2021-01-03T17:09:07.000Z" + }, + "end": { + "$date": "2021-01-03T17:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "a8277afb-4288-4268-8a65-1833abb7ff90", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T17:30:50.000Z" + }, + "end": { + "$date": "2021-01-03T18:25:42.000Z" + }, + "events": [ + { + "uuid": "0af03654-d8b8-479c-b14d-968302da52b2", + "start": { + "$date": "2021-01-03T17:30:50.000Z" + }, + "end": { + "$date": "2021-01-03T17:53:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "efb1eef7-21b8-43da-9fcb-6dde4fda0d68", + "start": { + "$date": "2021-01-03T17:53:50.000Z" + }, + "end": { + "$date": "2021-01-03T18:25:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e893b0d6-e7df-44b8-9a64-12c041685e70", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T17:51:19.000Z" + }, + "end": { + "$date": "2021-01-03T18:52:26.000Z" + }, + "events": [ + { + "uuid": "e26b7554-cb17-4cbb-a61b-c7bb962a0dc6", + "start": { + "$date": "2021-01-03T17:51:19.000Z" + }, + "end": { + "$date": "2021-01-03T18:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d6e70af8-99ec-4447-9cb8-0df9f487e82f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T18:00:13.000Z" + }, + "end": { + "$date": "2021-01-03T19:15:17.000Z" + }, + "events": [ + { + "uuid": "964677ca-3969-4596-8b1d-ae827d25a5c7", + "start": { + "$date": "2021-01-03T18:00:13.000Z" + }, + "end": { + "$date": "2021-01-03T19:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a03ec69b-e166-493d-8eaa-2587c3640f2e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T18:25:48.000Z" + }, + "end": { + "$date": "2021-01-03T19:15:21.000Z" + }, + "events": [ + { + "uuid": "928a5aaf-142e-4af5-babf-b760f337a784", + "start": { + "$date": "2021-01-03T18:25:48.000Z" + }, + "end": { + "$date": "2021-01-03T19:15:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "fda419b3-8f61-4346-9485-b2b7b589dae5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T19:15:31.000Z" + }, + "end": { + "$date": "2021-01-03T19:37:28.000Z" + }, + "events": [ + { + "uuid": "4de51389-c48f-4378-9655-aadafda1bbe2", + "start": { + "$date": "2021-01-03T19:15:31.000Z" + }, + "end": { + "$date": "2021-01-03T19:37:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "e96ee601-6f0a-4a42-87c2-1caf2faf9ca2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T19:26:28.000Z" + }, + "end": { + "$date": "2021-01-03T19:30:23.000Z" + }, + "events": [ + { + "uuid": "5567f0fc-f811-4264-bfb2-798a95e51deb", + "start": { + "$date": "2021-01-03T19:26:28.000Z" + }, + "end": { + "$date": "2021-01-03T19:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "3e8ba610-ebcf-4b50-9735-d8d91d5a77ae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T19:30:34.000Z" + }, + "end": { + "$date": "2021-01-03T20:20:25.000Z" + }, + "events": [ + { + "uuid": "2e59a88b-08a8-4b28-9801-10ae6e48f895", + "start": { + "$date": "2021-01-03T19:30:34.000Z" + }, + "end": { + "$date": "2021-01-03T20:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "4c6ba4e5-6ce2-497e-915a-813521e96fe5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T19:37:37.000Z" + }, + "end": { + "$date": "2021-01-03T20:20:18.000Z" + }, + "events": [ + { + "uuid": "3335c2ab-c28c-456b-979d-e5e03cbb1aa0", + "start": { + "$date": "2021-01-03T19:37:37.000Z" + }, + "end": { + "$date": "2021-01-03T20:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d7c9ba3a-2b73-4cee-aef0-f3ab26d6337e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-03T19:55:56.000Z" + }, + "end": { + "$date": "2021-01-03T23:24:14.000Z" + }, + "events": [ + { + "uuid": "1fefe399-c763-4356-bf8a-cdc71ea2b69a", + "start": { + "$date": "2021-01-03T19:55:56.000Z" + }, + "end": { + "$date": "2021-01-03T23:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3f19a6b7-a160-4044-9297-5651d9cfa2ad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-03T20:07:46.000Z" + }, + "end": { + "$date": "2021-01-03T20:52:26.000Z" + }, + "events": [ + { + "uuid": "258934fb-e518-4de6-a6a3-2af1941cc040", + "start": { + "$date": "2021-01-03T20:07:46.000Z" + }, + "end": { + "$date": "2021-01-03T20:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "10d74102-ee60-4387-9d0d-3f37d6228060", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-03T20:09:32.000Z" + }, + "end": { + "$date": "2021-01-03T23:38:46.000Z" + }, + "events": [ + { + "uuid": "aa61c0ee-83a3-4fe1-bd0f-304714e3e895", + "start": { + "$date": "2021-01-03T20:09:32.000Z" + }, + "end": { + "$date": "2021-01-03T23:38:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "6b7b1b20-ba7e-4358-b2a4-da25a53febf5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-03T20:20:14.000Z" + }, + "end": { + "$date": "2021-01-03T22:11:25.000Z" + }, + "events": [ + { + "uuid": "82333bd2-d360-4daa-903f-c7659409836d", + "start": { + "$date": "2021-01-03T20:20:14.000Z" + }, + "end": { + "$date": "2021-01-03T22:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "1cdbf8d3-b076-4ed4-9a28-d9b9ed3a729f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T20:58:52.000Z" + }, + "end": { + "$date": "2021-01-03T21:06:46.000Z" + }, + "events": [ + { + "uuid": "575e82b7-b482-4fd8-a71e-92d5b228cdeb", + "start": { + "$date": "2021-01-03T20:58:52.000Z" + }, + "end": { + "$date": "2021-01-03T21:06:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0c558a6b-146b-4688-9111-670e3fd446a8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-03T21:06:08.000Z" + }, + "end": { + "$date": "2021-01-03T23:32:34.000Z" + }, + "events": [ + { + "uuid": "d3c320a0-4951-4468-81e2-c8fe8bf339f5", + "start": { + "$date": "2021-01-03T21:06:08.000Z" + }, + "end": { + "$date": "2021-01-03T23:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "84411726-7efe-42d1-816d-bef6d3a2ab4a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T21:07:07.000Z" + }, + "end": { + "$date": "2021-01-03T23:05:34.000Z" + }, + "events": [ + { + "uuid": "0e747de9-ab33-426d-8844-62c758735047", + "start": { + "$date": "2021-01-03T21:07:07.000Z" + }, + "end": { + "$date": "2021-01-03T23:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "56c02edd-f865-4d31-a3fb-d6847ca181e5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T21:33:28.000Z" + }, + "end": { + "$date": "2021-01-03T21:33:39.000Z" + }, + "events": [ + { + "uuid": "676f22e1-bea0-443b-8673-a1561101cf42", + "start": { + "$date": "2021-01-03T21:33:28.000Z" + }, + "end": { + "$date": "2021-01-03T21:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "15f245a9-a499-40c2-8d3d-07024593736a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T21:57:54.000Z" + }, + "end": { + "$date": "2021-01-03T22:25:05.000Z" + }, + "events": [ + { + "uuid": "b45e5b43-8492-4915-8d03-c84eaa252c66", + "start": { + "$date": "2021-01-03T21:57:54.000Z" + }, + "end": { + "$date": "2021-01-03T22:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f6749fd2-bf0c-437f-afa0-644acafad390", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-03T22:07:15.000Z" + }, + "end": { + "$date": "2021-01-03T23:26:15.000Z" + }, + "events": [ + { + "uuid": "7b85b7f1-bfd4-466e-9de1-3f196c5ed799", + "start": { + "$date": "2021-01-03T22:07:15.000Z" + }, + "end": { + "$date": "2021-01-03T23:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "460a22cb-a5a4-405d-a8cb-1d6fd5b09678", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T22:43:41.000Z" + }, + "end": { + "$date": "2021-01-03T23:24:19.000Z" + }, + "events": [ + { + "uuid": "ccec8b2e-c5d8-41b1-b520-661990192f82", + "start": { + "$date": "2021-01-03T22:43:41.000Z" + }, + "end": { + "$date": "2021-01-03T23:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1da5289e-e823-47df-a8b0-8017a5dfc399", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-03T22:59:07.000Z" + }, + "end": { + "$date": "2021-01-03T23:51:54.000Z" + }, + "events": [ + { + "uuid": "6b45333b-fccd-4f74-b678-27c612efdc9f", + "start": { + "$date": "2021-01-03T22:59:07.000Z" + }, + "end": { + "$date": "2021-01-03T23:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "8207d545-b97e-4957-87b4-725812d00183", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T23:11:26.000Z" + }, + "end": { + "$date": "2021-01-03T23:36:58.000Z" + }, + "events": [ + { + "uuid": "1a283ef2-1414-4aba-9729-f0334fa8b7d4", + "start": { + "$date": "2021-01-03T23:11:26.000Z" + }, + "end": { + "$date": "2021-01-03T23:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "05c55f6c-df27-4d3b-8690-0e92aaf38d6b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-03T23:32:23.000Z" + }, + "end": { + "$date": "2021-01-04T00:47:30.000Z" + }, + "events": [ + { + "uuid": "d38c527b-9348-411d-90a0-84a62de11580", + "start": { + "$date": "2021-01-03T23:32:23.000Z" + }, + "end": { + "$date": "2021-01-04T00:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "f74cdac7-850e-433e-bdf7-bcff2cbeead3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-03T23:46:40.000Z" + }, + "end": { + "$date": "2021-01-04T02:01:40.000Z" + }, + "events": [ + { + "uuid": "a9afb0f8-253a-4fbb-b0ac-c35a4832cc44", + "start": { + "$date": "2021-01-03T23:46:40.000Z" + }, + "end": { + "$date": "2021-01-04T02:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "41a408c7-566f-4a9e-8dfa-7cc08c64019b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-03T23:57:42.000Z" + }, + "end": { + "$date": "2021-01-04T00:00:46.000Z" + }, + "events": [ + { + "uuid": "84c224ad-f105-4ec8-8e72-5016f64cbf50", + "start": { + "$date": "2021-01-03T23:57:42.000Z" + }, + "end": { + "$date": "2021-01-04T00:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "417ba7bf-9373-4074-a402-cc194b222dc2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T00:08:10.000Z" + }, + "end": { + "$date": "2021-01-04T01:53:36.000Z" + }, + "events": [ + { + "uuid": "3b50e38d-acb1-4a6b-97f9-59268c611a01", + "start": { + "$date": "2021-01-04T00:08:10.000Z" + }, + "end": { + "$date": "2021-01-04T01:53:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "e36af644-928b-4a35-8b05-43520523e608", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-04T01:03:46.000Z" + }, + "end": { + "$date": "2021-01-04T01:12:37.000Z" + }, + "events": [ + { + "uuid": "792728be-90d3-40f2-be70-b0b3d1d55b96", + "start": { + "$date": "2021-01-04T01:03:46.000Z" + }, + "end": { + "$date": "2021-01-04T01:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "597a093f-345a-49fe-a03d-bb79d949f2f2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-04T01:15:39.000Z" + }, + "end": { + "$date": "2021-01-04T01:23:41.000Z" + }, + "events": [ + { + "uuid": "d4fc9bb2-3bc9-4e20-be81-970a0a61860b", + "start": { + "$date": "2021-01-04T01:15:39.000Z" + }, + "end": { + "$date": "2021-01-04T01:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "932dba59-e4db-4c01-aed1-67fd85443a22", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-04T01:26:02.000Z" + }, + "end": { + "$date": "2021-01-04T01:44:21.000Z" + }, + "events": [ + { + "uuid": "80794968-b138-47b9-874b-a2e13a6314e2", + "start": { + "$date": "2021-01-04T01:26:02.000Z" + }, + "end": { + "$date": "2021-01-04T01:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "232b2843-cf54-4987-997b-a6ed3dcd2b95", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-04T01:48:27.000Z" + }, + "end": { + "$date": "2021-01-04T02:00:34.000Z" + }, + "events": [ + { + "uuid": "cf3f871e-1b37-4974-aa5b-a1acf5a6689e", + "start": { + "$date": "2021-01-04T01:48:27.000Z" + }, + "end": { + "$date": "2021-01-04T02:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc0c5ca3-e348-40f1-acbb-c0abdb42a1e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T01:55:45.000Z" + }, + "end": { + "$date": "2021-01-04T01:58:07.000Z" + }, + "events": [ + { + "uuid": "e5967539-df07-418b-a1aa-732d52c57dde", + "start": { + "$date": "2021-01-04T01:55:45.000Z" + }, + "end": { + "$date": "2021-01-04T01:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "5a53001c-3984-48b8-94ef-14f0d4cb9783", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T01:58:41.000Z" + }, + "end": { + "$date": "2021-01-04T02:30:12.000Z" + }, + "events": [ + { + "uuid": "97d3c0ce-8a39-4b02-bfea-0f7c9ccced2d", + "start": { + "$date": "2021-01-04T01:58:41.000Z" + }, + "end": { + "$date": "2021-01-04T02:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9471226d-7680-42cf-9df0-947c10bfaeab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-04T02:17:12.000Z" + }, + "end": { + "$date": "2021-01-04T03:40:20.000Z" + }, + "events": [ + { + "uuid": "fa3625fd-061d-469c-a0da-c23e8a1b988b", + "start": { + "$date": "2021-01-04T02:17:12.000Z" + }, + "end": { + "$date": "2021-01-04T03:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b24fd222-b7bd-4744-9161-fb6e512b71a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T02:17:51.000Z" + }, + "end": { + "$date": "2021-01-04T03:05:53.000Z" + }, + "events": [ + { + "uuid": "082ce5e0-629e-4687-889a-69e8b85edc09", + "start": { + "$date": "2021-01-04T02:17:51.000Z" + }, + "end": { + "$date": "2021-01-04T03:05:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0c6678fa-3858-43cf-a2f9-9f569ffe460d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-04T02:26:41.000Z" + }, + "end": { + "$date": "2021-01-04T05:05:43.000Z" + }, + "events": [ + { + "uuid": "481c3c68-027a-4ecf-b1fb-83014bec7fa2", + "start": { + "$date": "2021-01-04T02:26:41.000Z" + }, + "end": { + "$date": "2021-01-04T05:05:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c2a435e2-6e98-4a9d-9152-048822c26b55", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-04T02:29:46.000Z" + }, + "end": { + "$date": "2021-01-04T05:01:30.000Z" + }, + "events": [ + { + "uuid": "bcfb6f08-b19d-41b8-ac03-05dbd420fcbe", + "start": { + "$date": "2021-01-04T02:29:46.000Z" + }, + "end": { + "$date": "2021-01-04T05:01:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "030ad44b-cb72-497b-b736-283c7614fc3a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T04:50:55.000Z" + }, + "end": { + "$date": "2021-01-04T04:51:00.000Z" + }, + "events": [ + { + "uuid": "f409786d-c0d3-4ee0-a7d1-a4b5b0f4b705", + "start": { + "$date": "2021-01-04T04:50:55.000Z" + }, + "end": { + "$date": "2021-01-04T04:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a58a4ff2-a73b-4b03-8489-b1fc5226f3df", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T03:06:13.000Z" + }, + "end": { + "$date": "2021-01-04T03:30:09.000Z" + }, + "events": [ + { + "uuid": "a76006df-db2f-458d-93bd-26f4753b4d86", + "start": { + "$date": "2021-01-04T03:06:13.000Z" + }, + "end": { + "$date": "2021-01-04T03:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "4ab79111-d47f-4f6c-b471-b33b42a5bcaf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-04T03:24:39.000Z" + }, + "end": { + "$date": "2021-01-04T05:01:49.000Z" + }, + "events": [ + { + "uuid": "dd996d48-89f4-45ef-baf0-c6e209c2fbb6", + "start": { + "$date": "2021-01-04T03:24:39.000Z" + }, + "end": { + "$date": "2021-01-04T05:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2a94fc67-bf4f-4834-931a-ae1e5849b94a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T03:30:19.000Z" + }, + "end": { + "$date": "2021-01-04T03:40:15.000Z" + }, + "events": [ + { + "uuid": "b79563cb-5f52-40e6-a133-5d0ac15a598a", + "start": { + "$date": "2021-01-04T03:30:19.000Z" + }, + "end": { + "$date": "2021-01-04T03:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "3020e065-1d09-4e36-81a2-02500c03b8fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T03:40:59.000Z" + }, + "end": { + "$date": "2021-01-04T03:42:45.000Z" + }, + "events": [ + { + "uuid": "c07bcdba-2775-4c92-9f41-1a01a41f771f", + "start": { + "$date": "2021-01-04T03:40:59.000Z" + }, + "end": { + "$date": "2021-01-04T03:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "5af989e5-0242-4c07-adf4-1942eedb22e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T03:44:09.000Z" + }, + "end": { + "$date": "2021-01-04T04:39:58.000Z" + }, + "events": [ + { + "uuid": "43b4680e-03e7-4c7b-b6f5-17aea86f1fa8", + "start": { + "$date": "2021-01-04T03:44:09.000Z" + }, + "end": { + "$date": "2021-01-04T04:27:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6308c68d-a7b4-4427-ad93-fda61843d838", + "start": { + "$date": "2021-01-04T04:27:09.000Z" + }, + "end": { + "$date": "2021-01-04T04:39:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "6f0b9b29-37d3-4e16-bd70-f6697b38d850", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-04T04:13:44.000Z" + }, + "end": { + "$date": "2021-01-04T04:58:46.000Z" + }, + "events": [ + { + "uuid": "1074d8b3-be99-48ed-a92d-06c0b72bd401", + "start": { + "$date": "2021-01-04T04:13:44.000Z" + }, + "end": { + "$date": "2021-01-04T04:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e2221d62-d640-4780-80a5-12b01a2bc4d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-04T04:15:10.000Z" + }, + "end": { + "$date": "2021-01-04T07:37:04.000Z" + }, + "events": [ + { + "uuid": "7281c23d-f831-441b-95ba-b44291c8b128", + "start": { + "$date": "2021-01-04T04:15:10.000Z" + }, + "end": { + "$date": "2021-01-04T07:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "24d6a991-5ef7-4015-b659-2258b772b2bd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T04:40:42.000Z" + }, + "end": { + "$date": "2021-01-04T05:47:24.000Z" + }, + "events": [ + { + "uuid": "9c233bf6-0158-4962-9cf1-0d43c6a0993a", + "start": { + "$date": "2021-01-04T04:40:42.000Z" + }, + "end": { + "$date": "2021-01-04T05:47:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "1d4a0d87-4e73-44bc-93cf-18a246265acc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-04T04:41:04.000Z" + }, + "end": { + "$date": "2021-01-04T05:47:30.000Z" + }, + "events": [ + { + "uuid": "fdcc09e0-7d8d-41b5-966c-e7797067bb94", + "start": { + "$date": "2021-01-04T04:41:04.000Z" + }, + "end": { + "$date": "2021-01-04T05:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "9c461ae0-5669-4658-a9ca-8b0ddd7edbe1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T04:51:15.000Z" + }, + "end": { + "$date": "2021-01-04T05:38:13.000Z" + }, + "events": [ + { + "uuid": "b5c5e2cc-e269-4c51-8fd5-76fcaedc699f", + "start": { + "$date": "2021-01-04T04:51:15.000Z" + }, + "end": { + "$date": "2021-01-04T05:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "7b125d08-c96f-47aa-85e2-b7d002161c49", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-04T05:03:19.000Z" + }, + "end": { + "$date": "2021-01-04T10:28:12.000Z" + }, + "events": [ + { + "uuid": "6607372d-3f20-4aec-ae13-380bad745144", + "start": { + "$date": "2021-01-04T05:03:19.000Z" + }, + "end": { + "$date": "2021-01-04T10:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "84ad6562-0905-48c8-aae6-7de47b126d40", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-04T05:27:41.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:19.000Z" + }, + "events": [ + { + "uuid": "beb06caf-a77b-4dc7-b944-4a9a851f01df", + "start": { + "$date": "2021-01-04T05:27:41.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f9a76962-e385-40e2-8885-0835cecbe628", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-04T05:28:29.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:13.000Z" + }, + "events": [ + { + "uuid": "a0ea66b4-79c5-4cb0-9439-d5552c67b6f5", + "start": { + "$date": "2021-01-04T05:28:29.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b67d6f2c-686c-4873-9c0a-86792f8b616b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-04T05:31:46.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:13.000Z" + }, + "events": [ + { + "uuid": "f85f2c22-9e8e-4259-8195-8ed84bb30a12", + "start": { + "$date": "2021-01-04T05:31:46.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08414f17-0766-4507-b379-34b770422a85", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-04T06:06:54.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:20.000Z" + }, + "events": [ + { + "uuid": "cca55e79-1342-4387-90a9-d90991d471a5", + "start": { + "$date": "2021-01-04T06:06:54.000Z" + }, + "end": { + "$date": "2021-01-04T07:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "77e6a8dd-fcaa-4e7c-9a8a-fd1146ad8970", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-04T11:51:44.000Z" + }, + "end": { + "$date": "2021-01-04T17:09:33.000Z" + }, + "events": [ + { + "uuid": "aff1a859-6659-4456-92d6-976758e85648", + "start": { + "$date": "2021-01-04T11:51:44.000Z" + }, + "end": { + "$date": "2021-01-04T17:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1fada2d1-214f-4876-9aa1-fc1407455a57", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T16:59:49.000Z" + }, + "end": { + "$date": "2021-01-04T17:33:34.000Z" + }, + "events": [ + { + "uuid": "789541e7-3975-4e04-b4c0-81a3d9c83b63", + "start": { + "$date": "2021-01-04T16:59:49.000Z" + }, + "end": { + "$date": "2021-01-04T17:33:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "85e42791-72e5-48be-85b3-03715cc6c7fb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T17:20:47.000Z" + }, + "end": { + "$date": "2021-01-04T18:30:44.000Z" + }, + "events": [ + { + "uuid": "e98a3816-3537-4be8-9bc8-ce8dcac6c172", + "start": { + "$date": "2021-01-04T17:20:47.000Z" + }, + "end": { + "$date": "2021-01-04T18:30:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7e9e394a-63ad-4881-9084-7cc94458921e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T17:33:55.000Z" + }, + "end": { + "$date": "2021-01-04T17:57:10.000Z" + }, + "events": [ + { + "uuid": "0fd3340e-3b8c-45f3-b504-07e2fabe0a8f", + "start": { + "$date": "2021-01-04T17:33:55.000Z" + }, + "end": { + "$date": "2021-01-04T17:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4f7f288d-1312-4edb-92aa-9d20d4402da8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-04T19:20:07.000Z" + }, + "end": { + "$date": "2021-01-04T21:01:14.000Z" + }, + "events": [ + { + "uuid": "06c06a6d-96a6-4494-a299-8f84d8ee1227", + "start": { + "$date": "2021-01-04T19:20:07.000Z" + }, + "end": { + "$date": "2021-01-04T21:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "5fa3a788-009f-446d-9209-5e572b080425", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-04T19:24:41.000Z" + }, + "end": { + "$date": "2021-01-05T00:42:51.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-04T19:24:41.000Z" + }, + "end": { + "$date": "2021-01-05T00:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3b10ca72-aba2-470b-9403-b9ec59162e66", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-04T19:34:14.000Z" + }, + "end": { + "$date": "2021-01-04T20:01:52.000Z" + }, + "events": [ + { + "uuid": "a8d2c05b-c1b4-46ca-b889-cfdbafc89ca9", + "start": { + "$date": "2021-01-04T19:34:14.000Z" + }, + "end": { + "$date": "2021-01-04T20:01:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c04a0318-0a4a-4179-8e51-8e8f40cba9a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T20:21:17.000Z" + }, + "end": { + "$date": "2021-01-04T21:42:51.000Z" + }, + "events": [ + { + "uuid": "a786eb93-ad15-454a-aa80-b8242051ec61", + "start": { + "$date": "2021-01-04T20:21:17.000Z" + }, + "end": { + "$date": "2021-01-04T21:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3bdc15c9-c1bf-4611-b2fc-219b5f87b887", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-04T20:22:48.000Z" + }, + "end": { + "$date": "2021-01-04T20:43:23.000Z" + }, + "events": [ + { + "uuid": "eca045b4-082c-4fa2-b6d5-8aefab9758d5", + "start": { + "$date": "2021-01-04T20:22:48.000Z" + }, + "end": { + "$date": "2021-01-04T20:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2ebbd35a-d3e3-45c9-afe1-287e9674c481", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-04T21:14:28.000Z" + }, + "end": { + "$date": "2021-01-04T22:16:48.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-04T21:14:28.000Z" + }, + "end": { + "$date": "2021-01-04T22:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0bd5f014-df60-4c84-9f4b-9628d85fa6ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-04T21:48:32.000Z" + }, + "end": { + "$date": "2021-01-04T22:12:41.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-04T21:48:32.000Z" + }, + "end": { + "$date": "2021-01-04T22:12:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "01e7ea93-8063-4cd6-be02-f2f643243884", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-04T21:57:58.000Z" + }, + "end": { + "$date": "2021-01-04T22:54:05.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-04T21:57:58.000Z" + }, + "end": { + "$date": "2021-01-04T22:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "bb1b4e43-a26b-4531-a628-4a5adffc00ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-04T22:07:52.000Z" + }, + "end": { + "$date": "2021-01-05T00:19:37.000Z" + }, + "events": [ + { + "uuid": "960023a2-89eb-4991-b997-d0164b469f36", + "start": { + "$date": "2021-01-04T22:07:52.000Z" + }, + "end": { + "$date": "2021-01-05T00:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "55ae1fef-8a18-4d74-bc78-7b709a2fecea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-04T23:27:13.000Z" + }, + "end": { + "$date": "2021-01-05T01:22:52.000Z" + }, + "events": [ + { + "uuid": "bfca2221-255f-49db-8900-59b46de8839d", + "start": { + "$date": "2021-01-04T23:27:13.000Z" + }, + "end": { + "$date": "2021-01-05T01:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "d64037fe-41fd-4003-854b-eeb87e218135", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-04T23:37:49.000Z" + }, + "end": { + "$date": "2021-01-05T00:26:17.000Z" + }, + "events": [ + { + "uuid": "ea14b2b6-fd2f-4e68-9b0c-dec2b168885c", + "start": { + "$date": "2021-01-04T23:37:49.000Z" + }, + "end": { + "$date": "2021-01-05T00:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7a9a829-0dbe-48ab-a1cd-7b19fc4c7069", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T00:00:15.000Z" + }, + "end": { + "$date": "2021-01-05T00:17:19.000Z" + }, + "events": [ + { + "uuid": "3ca93c8b-4b9e-4f1f-a7b3-185295f7c731", + "start": { + "$date": "2021-01-05T00:00:15.000Z" + }, + "end": { + "$date": "2021-01-05T00:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", + "uuid": "369c01f3-d883-4d71-a1a3-f69c6269e4de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T00:21:01.000Z" + }, + "end": { + "$date": "2021-01-05T00:56:38.000Z" + }, + "events": [ + { + "uuid": "f6fa5548-ed17-4720-88f7-af0986733955", + "start": { + "$date": "2021-01-05T00:21:01.000Z" + }, + "end": { + "$date": "2021-01-05T00:56:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "fbe95ae8-c3d5-4678-99c8-cfc2358ec241", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T01:03:58.000Z" + }, + "end": { + "$date": "2021-01-05T01:11:34.000Z" + }, + "events": [ + { + "uuid": "affd7ab8-9ce2-4319-9059-eeb728ed2ffd", + "start": { + "$date": "2021-01-05T01:03:58.000Z" + }, + "end": { + "$date": "2021-01-05T01:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3531d9bd-e0d3-4f17-8dea-a91be76c1360", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T01:16:34.000Z" + }, + "end": { + "$date": "2021-01-05T02:08:23.000Z" + }, + "events": [ + { + "uuid": "8c6d8085-ce7f-4340-8fb2-50cddbb72854", + "start": { + "$date": "2021-01-05T01:16:34.000Z" + }, + "end": { + "$date": "2021-01-05T02:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c634a6c5-2bcc-458b-bcde-e2a60641a536", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T01:20:04.000Z" + }, + "end": { + "$date": "2021-01-05T01:27:45.000Z" + }, + "events": [ + { + "uuid": "c3d65230-8e4f-49d4-afe8-bffd8be197db", + "start": { + "$date": "2021-01-05T01:20:04.000Z" + }, + "end": { + "$date": "2021-01-05T01:27:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "0f582bf6-e1b7-4113-9200-1367e982cad6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T01:28:19.000Z" + }, + "end": { + "$date": "2021-01-05T02:15:10.000Z" + }, + "events": [ + { + "uuid": "d40db458-a60a-4e43-b24e-a7771eff7c65", + "start": { + "$date": "2021-01-05T01:28:19.000Z" + }, + "end": { + "$date": "2021-01-05T02:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2a958d80-7f9e-4654-bc6d-25bf44421f3a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-05T01:34:27.000Z" + }, + "end": { + "$date": "2021-01-05T01:57:28.000Z" + }, + "events": [ + { + "uuid": "e7999c8b-0454-426a-af0a-2d85de1b9fb5", + "start": { + "$date": "2021-01-05T01:34:27.000Z" + }, + "end": { + "$date": "2021-01-05T01:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d570ad50-3b13-4999-a8cf-c5215a9ee12f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-05T02:14:49.000Z" + }, + "end": { + "$date": "2021-01-05T02:15:54.000Z" + }, + "events": [ + { + "uuid": "03e8e647-9b86-4c81-9ad6-9595b3ec304d", + "start": { + "$date": "2021-01-05T02:14:49.000Z" + }, + "end": { + "$date": "2021-01-05T02:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "67da355e-cac7-4eaf-b537-d62c0f23e456", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T02:15:15.000Z" + }, + "end": { + "$date": "2021-01-05T02:38:36.000Z" + }, + "events": [ + { + "uuid": "fd7d7662-7947-4f82-87c6-3328f05200ae", + "start": { + "$date": "2021-01-05T02:15:15.000Z" + }, + "end": { + "$date": "2021-01-05T02:38:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f60116a9-41b7-4779-a1e7-6f81190baece", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-05T02:52:16.000Z" + }, + "end": { + "$date": "2021-01-05T03:14:49.000Z" + }, + "events": [ + { + "uuid": "e2dbbbf6-41e4-4b17-9089-eddda931c646", + "start": { + "$date": "2021-01-05T02:52:16.000Z" + }, + "end": { + "$date": "2021-01-05T03:14:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "455a91dc-fbea-4d88-b51e-62a1e72c4be7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-05T03:01:15.000Z" + }, + "end": { + "$date": "2021-01-05T03:34:15.000Z" + }, + "events": [ + { + "uuid": "e4a78878-97e4-47f6-9625-a630d8bd23fd", + "start": { + "$date": "2021-01-05T03:01:15.000Z" + }, + "end": { + "$date": "2021-01-05T03:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "61822caf-5a80-48b1-a581-fd14b06e8b2f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-05T03:13:25.000Z" + }, + "end": { + "$date": "2021-01-05T04:38:08.000Z" + }, + "events": [ + { + "uuid": "7d1d7804-5509-4318-af4d-572ec77638e4", + "start": { + "$date": "2021-01-05T03:13:25.000Z" + }, + "end": { + "$date": "2021-01-05T04:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b7f60b3a-ad0b-40f5-93ab-0a3382d9b561", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-05T03:36:49.000Z" + }, + "end": { + "$date": "2021-01-05T04:46:43.000Z" + }, + "events": [ + { + "uuid": "d186f57e-f03a-46bc-bbbd-784a6ff25ad5", + "start": { + "$date": "2021-01-05T03:36:49.000Z" + }, + "end": { + "$date": "2021-01-05T04:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "54c8691f-1d54-4291-bfa2-b468d4acaf71", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-05T04:07:56.000Z" + }, + "end": { + "$date": "2021-01-05T05:29:03.000Z" + }, + "events": [ + { + "uuid": "1d873af1-33f8-4d54-97ac-d773ca07406a", + "start": { + "$date": "2021-01-05T04:07:56.000Z" + }, + "end": { + "$date": "2021-01-05T05:29:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "03d1c475-adc0-4b49-8f3d-ee4184c22c12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-05T04:09:55.000Z" + }, + "end": { + "$date": "2021-01-05T04:53:42.000Z" + }, + "events": [ + { + "uuid": "ea1d4f1b-f428-46fd-bfee-3a4747441e8a", + "start": { + "$date": "2021-01-05T04:09:55.000Z" + }, + "end": { + "$date": "2021-01-05T04:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e16a86a1-d8d5-44e1-b82d-423b49b89ea0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T04:17:59.000Z" + }, + "end": { + "$date": "2021-01-05T04:51:03.000Z" + }, + "events": [ + { + "uuid": "d60007e2-2180-4452-8148-48d5abe0f96b", + "start": { + "$date": "2021-01-05T04:17:59.000Z" + }, + "end": { + "$date": "2021-01-05T04:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a76c14e-9a6c-4312-8b07-5d4c56902f2b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-05T04:18:05.000Z" + }, + "end": { + "$date": "2021-01-05T04:50:57.000Z" + }, + "events": [ + { + "uuid": "bd6f3355-139d-4e70-8613-6a5a244d99e7", + "start": { + "$date": "2021-01-05T04:18:05.000Z" + }, + "end": { + "$date": "2021-01-05T04:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "8c6d158e-08e6-4638-ba19-a2881d9cecc1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T04:21:07.000Z" + }, + "end": { + "$date": "2021-01-05T04:56:32.000Z" + }, + "events": [ + { + "uuid": "8ac1013f-1973-4fb3-977e-d63b1d4a3da6", + "start": { + "$date": "2021-01-05T04:21:07.000Z" + }, + "end": { + "$date": "2021-01-05T04:56:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "e4a1e889-a5bb-40fb-98a9-99b3fae6bda3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T04:34:12.000Z" + }, + "end": { + "$date": "2021-01-05T05:37:20.000Z" + }, + "events": [ + { + "uuid": "19fed5eb-4094-438a-b40c-f515a6ad1bb4", + "start": { + "$date": "2021-01-05T04:34:12.000Z" + }, + "end": { + "$date": "2021-01-05T05:37:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "b32b1853-69ac-4263-8319-b26fd8e1fbbc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-05T04:40:14.000Z" + }, + "end": { + "$date": "2021-01-05T05:37:53.000Z" + }, + "events": [ + { + "uuid": "a192ff83-1809-4624-b809-24951d013698", + "start": { + "$date": "2021-01-05T04:40:14.000Z" + }, + "end": { + "$date": "2021-01-05T05:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "ab2363fe-a4da-4325-98b1-d31a8f911d64", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-05T04:47:58.000Z" + }, + "end": { + "$date": "2021-01-05T05:39:34.000Z" + }, + "events": [ + { + "uuid": "ba30618a-8f19-4bea-a7f8-9206692e804f", + "start": { + "$date": "2021-01-05T04:47:58.000Z" + }, + "end": { + "$date": "2021-01-05T05:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6256904b-ab79-4fd2-88ff-b169829146b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T05:04:33.000Z" + }, + "end": { + "$date": "2021-01-05T05:30:09.000Z" + }, + "events": [ + { + "uuid": "b4a90fea-3327-4daf-b8a7-968f8edf6c26", + "start": { + "$date": "2021-01-05T05:04:33.000Z" + }, + "end": { + "$date": "2021-01-05T05:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e56f38ec-a789-4477-bc72-a2d40abf8255", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-05T04:52:51.000Z" + }, + "end": { + "$date": "2021-01-05T04:54:59.000Z" + }, + "events": [ + { + "uuid": "db89361c-7a09-45c2-aeeb-6718a17a227a", + "start": { + "$date": "2021-01-05T04:52:51.000Z" + }, + "end": { + "$date": "2021-01-05T04:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfef15f3-a853-4113-ba46-e0282aa53957", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-05T05:04:28.000Z" + }, + "end": { + "$date": "2021-01-05T05:30:02.000Z" + }, + "events": [ + { + "uuid": "cf2342f2-7fb9-47c1-8b4d-e0091dc64c26", + "start": { + "$date": "2021-01-05T05:04:28.000Z" + }, + "end": { + "$date": "2021-01-05T05:30:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f816bf6b-f2be-465f-9150-b17e9442f256", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-05T05:05:08.000Z" + }, + "end": { + "$date": "2021-01-05T05:30:03.000Z" + }, + "events": [ + { + "uuid": "015e7410-0fa1-4fef-b343-25d7146fb8f8", + "start": { + "$date": "2021-01-05T05:05:08.000Z" + }, + "end": { + "$date": "2021-01-05T05:30:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7335439-6f42-4135-b2c6-5c1e87b35873", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T05:04:39.000Z" + }, + "end": { + "$date": "2021-01-05T05:29:58.000Z" + }, + "events": [ + { + "uuid": "bf85dc06-3381-44b8-a3cf-d272b95d39db", + "start": { + "$date": "2021-01-05T05:04:39.000Z" + }, + "end": { + "$date": "2021-01-05T05:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f338c34-755b-4b6c-beac-8b6b62e5e521", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T05:33:44.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:53.000Z" + }, + "events": [ + { + "uuid": "d6631ceb-d645-4553-beb4-5194c84ff53b", + "start": { + "$date": "2021-01-05T05:33:44.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "717280c1-144e-479f-97fe-d4cc6ca7d943", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-05T05:33:38.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:44.000Z" + }, + "events": [ + { + "uuid": "efc6b1de-30f2-477d-acb4-d39e61574bc0", + "start": { + "$date": "2021-01-05T05:33:38.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9df89353-673a-4b9b-a62d-71f9bf7c99a2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T05:35:30.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:43.000Z" + }, + "events": [ + { + "uuid": "95d8d547-d2bf-45e3-b03b-8d927f7999f8", + "start": { + "$date": "2021-01-05T05:35:30.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de9734c3-48a4-4216-9518-8478a4c87094", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-05T05:33:43.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:45.000Z" + }, + "events": [ + { + "uuid": "33d76545-86d4-423e-93ea-fc5e8ce3a9b8", + "start": { + "$date": "2021-01-05T05:33:43.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0451eb09-c3b8-4a12-ba10-b6301b34737c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-05T05:33:40.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:53.000Z" + }, + "events": [ + { + "uuid": "d42f9059-8171-4487-ae8f-14c11f4d137d", + "start": { + "$date": "2021-01-05T05:33:40.000Z" + }, + "end": { + "$date": "2021-01-05T06:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "40becf44-dd75-4404-b01b-144b51030e6a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-05T06:18:19.000Z" + }, + "end": { + "$date": "2021-01-05T07:12:25.000Z" + }, + "events": [ + { + "uuid": "89d9618f-d63d-4855-bd7b-573d17c7170a", + "start": { + "$date": "2021-01-05T06:18:19.000Z" + }, + "end": { + "$date": "2021-01-05T07:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6000d3d1-f736-48db-9bdb-18766c045d03", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-05T06:00:32.000Z" + }, + "end": { + "$date": "2021-01-05T07:12:26.000Z" + }, + "events": [ + { + "uuid": "a13c3c5f-b048-493a-bf9d-8ebd8f615ea6", + "start": { + "$date": "2021-01-05T06:00:32.000Z" + }, + "end": { + "$date": "2021-01-05T07:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e60e9219-2468-4d04-8cc5-df54395e422a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T06:11:00.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:26.000Z" + }, + "events": [ + { + "uuid": "e0afd5aa-7098-4b7f-b894-a669f2007f38", + "start": { + "$date": "2021-01-05T06:11:00.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3db0be65-3f32-40fe-b5f5-1c68c42aa525", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T06:11:50.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:23.000Z" + }, + "events": [ + { + "uuid": "ea280025-445d-473f-9d29-e0e6595bb368", + "start": { + "$date": "2021-01-05T06:11:50.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96cc62ee-e3b3-488a-bc57-781f1b17a21e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-05T06:11:00.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:31.000Z" + }, + "events": [ + { + "uuid": "9758d4a6-f636-41ba-a99e-2f4a674bafcf", + "start": { + "$date": "2021-01-05T06:11:00.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d87ee99-b3d0-4b2f-9c66-0b690e1fa38d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-05T06:10:55.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:24.000Z" + }, + "events": [ + { + "uuid": "6506e460-c3e0-4710-9998-58d298a3d795", + "start": { + "$date": "2021-01-05T06:10:55.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e24ddd47-7d27-4438-9a75-c67151851596", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-05T06:10:52.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:27.000Z" + }, + "events": [ + { + "uuid": "444ef65d-341d-4891-a5fc-7ec253b8cd3b", + "start": { + "$date": "2021-01-05T06:10:52.000Z" + }, + "end": { + "$date": "2021-01-05T06:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "ee354fb6-6787-4035-93f4-d669eef4082c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T07:11:59.000Z" + }, + "end": { + "$date": "2021-01-05T07:15:10.000Z" + }, + "events": [ + { + "uuid": "21415d13-71e4-4efb-ab3a-219b268bd8d9", + "start": { + "$date": "2021-01-05T07:11:59.000Z" + }, + "end": { + "$date": "2021-01-05T07:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "ba20abad-7859-4c72-9f57-e6e5f9f146f8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T07:15:20.000Z" + }, + "end": { + "$date": "2021-01-05T08:19:19.000Z" + }, + "events": [ + { + "uuid": "c192f889-81a1-4b71-8ad5-f6b7cb3332b3", + "start": { + "$date": "2021-01-05T07:15:20.000Z" + }, + "end": { + "$date": "2021-01-05T08:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "037ce789-edb3-492e-9958-fd411a08f583", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-05T08:40:15.000Z" + }, + "end": { + "$date": "2021-01-05T09:45:17.000Z" + }, + "events": [ + { + "uuid": "77eddd35-3916-46e6-be35-d138f10c1892", + "start": { + "$date": "2021-01-05T08:40:15.000Z" + }, + "end": { + "$date": "2021-01-05T09:45:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2e0823a2-5a6f-4afa-9f11-ef220d1afa27", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-05T15:45:23.000Z" + }, + "end": { + "$date": "2021-01-05T17:41:45.000Z" + }, + "events": [ + { + "uuid": "7e6d3993-e4c3-4960-94be-0c176132f537", + "start": { + "$date": "2021-01-05T15:45:23.000Z" + }, + "end": { + "$date": "2021-01-05T17:40:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "481b83d9-b87d-4c48-be1a-04f3e3ae132c", + "start": { + "$date": "2021-01-05T17:40:23.000Z" + }, + "end": { + "$date": "2021-01-05T17:41:45.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c0acb0e-6d9e-41eb-a31b-7a079afe2957", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-05T16:45:41.000Z" + }, + "end": { + "$date": "2021-01-05T18:31:54.000Z" + }, + "events": [ + { + "uuid": "b583dba5-58ab-470f-a212-e259673b44ba", + "start": { + "$date": "2021-01-05T16:45:41.000Z" + }, + "end": { + "$date": "2021-01-05T18:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0883df51-a18d-48b4-b471-09dac938bf24", + "uuid": "c80d430c-a59e-442b-87de-9af6d65f44b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T17:07:18.000Z" + }, + "end": { + "$date": "2021-01-05T17:21:53.000Z" + }, + "events": [ + { + "uuid": "33d2492b-8350-4634-9ba9-b6c64c459b72", + "start": { + "$date": "2021-01-05T17:07:18.000Z" + }, + "end": { + "$date": "2021-01-05T17:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b85cf19c-f221-4d26-b11d-1766a2cefd46", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T17:22:44.000Z" + }, + "end": { + "$date": "2021-01-05T18:07:39.000Z" + }, + "events": [ + { + "uuid": "642f4f55-cd70-4655-a6e1-07798179722e", + "start": { + "$date": "2021-01-05T17:22:44.000Z" + }, + "end": { + "$date": "2021-01-05T18:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f4e814d6-c5d8-454a-b914-946d02a68c22", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-05T17:38:50.000Z" + }, + "end": { + "$date": "2021-01-05T17:43:21.000Z" + }, + "events": [ + { + "uuid": "9234a7dd-2d6d-4d3f-8e7c-ad58cc642e07", + "start": { + "$date": "2021-01-05T17:38:50.000Z" + }, + "end": { + "$date": "2021-01-05T17:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2ddf7fcc-0167-4a2e-ac07-5f477a07a4bd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-05T17:48:00.000Z" + }, + "end": { + "$date": "2021-01-05T18:14:01.000Z" + }, + "events": [ + { + "uuid": "edf4ac50-9c70-4238-b220-7d3890d55cf1", + "start": { + "$date": "2021-01-05T17:48:00.000Z" + }, + "end": { + "$date": "2021-01-05T18:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "469168ca-9266-4d5c-a159-6ea905184c42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T18:08:35.000Z" + }, + "end": { + "$date": "2021-01-05T19:10:15.000Z" + }, + "events": [ + { + "uuid": "7881af8f-4573-4618-803f-e16222c144f3", + "start": { + "$date": "2021-01-05T18:08:35.000Z" + }, + "end": { + "$date": "2021-01-05T19:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "3c654a8b-b5f7-431e-83e3-f1d52ddad60e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T20:21:10.000Z" + }, + "end": { + "$date": "2021-01-05T20:21:14.000Z" + }, + "events": [ + { + "uuid": "45f24a7f-ba35-4e6e-a391-3d4ee37f70d9", + "start": { + "$date": "2021-01-05T20:21:10.000Z" + }, + "end": { + "$date": "2021-01-05T20:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fa8b1db-094e-4291-8984-0ee1b6025587", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T20:30:09.000Z" + }, + "end": { + "$date": "2021-01-05T21:05:44.000Z" + }, + "events": [ + { + "uuid": "ed35f677-37ed-4700-b436-769e39de698f", + "start": { + "$date": "2021-01-05T20:30:09.000Z" + }, + "end": { + "$date": "2021-01-05T21:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10a9864b-5574-47b4-b32e-1355f3fdfbb1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T20:29:25.000Z" + }, + "end": { + "$date": "2021-01-05T21:05:52.000Z" + }, + "events": [ + { + "uuid": "a80adb7b-d856-4ae4-8cc1-bd76b548b940", + "start": { + "$date": "2021-01-05T20:29:25.000Z" + }, + "end": { + "$date": "2021-01-05T21:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9b6a6a42-07b6-4319-a2e0-a7856202d4b4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-05T22:09:07.000Z" + }, + "end": { + "$date": "2021-01-05T23:44:01.000Z" + }, + "events": [ + { + "uuid": "07872b23-a8c2-4a94-b45a-1b79ff09f0ff", + "start": { + "$date": "2021-01-05T22:09:07.000Z" + }, + "end": { + "$date": "2021-01-05T23:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "484b8e6d-7c1a-4c3a-bce3-2acc9133985c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-05T22:34:15.000Z" + }, + "end": { + "$date": "2021-01-06T01:19:26.000Z" + }, + "events": [ + { + "uuid": "52baced9-740c-4591-9bf1-751edce4c26b", + "start": { + "$date": "2021-01-05T22:34:15.000Z" + }, + "end": { + "$date": "2021-01-06T01:19:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "23352c0c-b867-4158-8a4b-2a02d6637b23", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-05T22:46:48.000Z" + }, + "end": { + "$date": "2021-01-05T23:54:42.000Z" + }, + "events": [ + { + "uuid": "3b461bce-dfca-4ecb-943c-4cd51657e4c2", + "start": { + "$date": "2021-01-05T22:46:48.000Z" + }, + "end": { + "$date": "2021-01-05T23:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "9cdf07c2-e219-4b8f-b515-4b58970af6c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-05T23:23:37.000Z" + }, + "end": { + "$date": "2021-01-05T23:31:18.000Z" + }, + "events": [ + { + "uuid": "c55e5acc-ac1f-459a-a86b-e67898194787", + "start": { + "$date": "2021-01-05T23:23:37.000Z" + }, + "end": { + "$date": "2021-01-05T23:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "6f281df2-bec3-4991-b32a-fc79a063e329", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-05T23:41:59.000Z" + }, + "end": { + "$date": "2021-01-06T01:57:38.000Z" + }, + "events": [ + { + "uuid": "7450bb2a-f1ee-470e-82fb-8d28c9ff9255", + "start": { + "$date": "2021-01-05T23:41:59.000Z" + }, + "end": { + "$date": "2021-01-06T01:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99352cc3-64cd-4554-9f42-a3aada94b29e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-05T23:57:16.000Z" + }, + "end": { + "$date": "2021-01-06T00:52:12.000Z" + }, + "events": [ + { + "uuid": "4301f60e-78b5-452d-b9b0-fc9a5b9e7dbd", + "start": { + "$date": "2021-01-05T23:57:16.000Z" + }, + "end": { + "$date": "2021-01-06T00:52:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "6abb15ce-c19c-4e42-9cbd-8ea9de2f476e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-06T00:24:24.000Z" + }, + "end": { + "$date": "2021-01-06T00:32:19.000Z" + }, + "events": [ + { + "uuid": "d99cced1-21c2-40b0-8e42-41de16a98825", + "start": { + "$date": "2021-01-06T00:24:24.000Z" + }, + "end": { + "$date": "2021-01-06T00:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cbf34ec2-ea95-45cf-86b1-4d3f4e728ae3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-06T00:25:45.000Z" + }, + "end": { + "$date": "2021-01-06T01:23:01.000Z" + }, + "events": [ + { + "uuid": "39b1fc89-42bb-4926-8020-801f4d9bfd21", + "start": { + "$date": "2021-01-06T00:25:45.000Z" + }, + "end": { + "$date": "2021-01-06T01:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cb7725d6-0959-408d-9c06-f6d35577c39f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-06T00:26:15.000Z" + }, + "end": { + "$date": "2021-01-06T01:23:29.000Z" + }, + "events": [ + { + "uuid": "e8011645-38e3-490a-b310-a80b44f26850", + "start": { + "$date": "2021-01-06T00:26:15.000Z" + }, + "end": { + "$date": "2021-01-06T00:54:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0150c465-d3eb-4779-844c-9a9553455421", + "start": { + "$date": "2021-01-06T00:54:15.000Z" + }, + "end": { + "$date": "2021-01-06T00:56:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "86b7ccda-6453-40cc-ab2e-2fc947581259", + "start": { + "$date": "2021-01-06T00:56:15.000Z" + }, + "end": { + "$date": "2021-01-06T01:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "274ef3a4-d449-4359-ad05-bf6be6791282", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-06T00:33:28.000Z" + }, + "end": { + "$date": "2021-01-06T00:44:52.000Z" + }, + "events": [ + { + "uuid": "214649d7-bb76-4f05-9ce8-46cef29e95fa", + "start": { + "$date": "2021-01-06T00:33:28.000Z" + }, + "end": { + "$date": "2021-01-06T00:44:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "29f08b6b-d5f9-4173-8963-325f5e99e36d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-06T00:29:39.000Z" + }, + "end": { + "$date": "2021-01-06T00:38:30.000Z" + }, + "events": [ + { + "uuid": "7de27b32-e492-4f24-92ec-4b9c868ee80e", + "start": { + "$date": "2021-01-06T00:29:39.000Z" + }, + "end": { + "$date": "2021-01-06T00:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "fbe5bdfc-7113-4936-95d7-65f60cfb1264", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-06T00:35:57.000Z" + }, + "end": { + "$date": "2021-01-06T01:11:32.000Z" + }, + "events": [ + { + "uuid": "c3c815b7-4531-4a36-a2dd-fbb7664aacd2", + "start": { + "$date": "2021-01-06T00:35:57.000Z" + }, + "end": { + "$date": "2021-01-06T01:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", + "uuid": "a15b8ed1-63f1-4f05-bfe8-bd17c4e11b76", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-06T01:09:24.000Z" + }, + "end": { + "$date": "2021-01-06T01:13:35.000Z" + }, + "events": [ + { + "uuid": "bf153945-9f70-4797-bc84-a9359f047ccf", + "start": { + "$date": "2021-01-06T01:09:24.000Z" + }, + "end": { + "$date": "2021-01-06T01:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6ad9286e-5e00-4112-8d89-429dfde9f6a3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-06T01:48:43.000Z" + }, + "end": { + "$date": "2021-01-06T02:20:48.000Z" + }, + "events": [ + { + "uuid": "bdc004f7-a6b5-47f7-9f38-db5022d36c33", + "start": { + "$date": "2021-01-06T01:48:43.000Z" + }, + "end": { + "$date": "2021-01-06T02:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "faf068f1-96ea-40e6-a2d3-8887d49c319f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-06T02:04:34.000Z" + }, + "end": { + "$date": "2021-01-06T02:40:53.000Z" + }, + "events": [ + { + "uuid": "2679ee8c-88f1-443b-a1da-52ae63f9ba60", + "start": { + "$date": "2021-01-06T02:04:34.000Z" + }, + "end": { + "$date": "2021-01-06T02:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76d0eaf1-1802-4485-a1b0-1a97c314071c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-06T03:12:07.000Z" + }, + "end": { + "$date": "2021-01-06T03:31:44.000Z" + }, + "events": [ + { + "uuid": "83c5bdc5-e9a4-4422-8b1f-e197b21c931e", + "start": { + "$date": "2021-01-06T03:12:07.000Z" + }, + "end": { + "$date": "2021-01-06T03:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "f3ad98bf-ba14-4da3-a940-d88084142ec2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-06T03:14:47.000Z" + }, + "end": { + "$date": "2021-01-06T03:15:27.000Z" + }, + "events": [ + { + "uuid": "56dbf587-c012-4b2e-8c08-46a319238f6e", + "start": { + "$date": "2021-01-06T03:14:47.000Z" + }, + "end": { + "$date": "2021-01-06T03:15:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d6ecb6ee-b295-4c59-814c-591b155bc5a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-06T07:30:27.000Z" + }, + "end": { + "$date": "2021-01-06T07:30:32.000Z" + }, + "events": [ + { + "uuid": "75db5079-8a93-447a-915b-d50a554d3da3", + "start": { + "$date": "2021-01-06T07:30:27.000Z" + }, + "end": { + "$date": "2021-01-06T07:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6a26a447-32f9-4609-8c88-0ea1ccafd378", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-06T03:40:02.000Z" + }, + "end": { + "$date": "2021-01-06T05:00:30.000Z" + }, + "events": [ + { + "uuid": "24137d38-2b0d-411f-9f95-78f3d8276265", + "start": { + "$date": "2021-01-06T03:40:02.000Z" + }, + "end": { + "$date": "2021-01-06T05:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b338b8cb-23b0-47b9-9fb4-f6d039cd59c9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-06T04:45:14.000Z" + }, + "end": { + "$date": "2021-01-06T04:49:14.000Z" + }, + "events": [ + { + "uuid": "8eb221a7-6f89-4054-a753-07ac0dedce34", + "start": { + "$date": "2021-01-06T04:45:14.000Z" + }, + "end": { + "$date": "2021-01-06T04:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "f50615ce-bc7a-4e15-ab36-05e8594ad90a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-06T05:02:12.000Z" + }, + "end": { + "$date": "2021-01-06T05:12:14.000Z" + }, + "events": [ + { + "uuid": "ce998b51-f45c-4d6a-bcb2-ad82a4fa9356", + "start": { + "$date": "2021-01-06T05:02:12.000Z" + }, + "end": { + "$date": "2021-01-06T05:12:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "c3f42122-f218-4eda-a314-d7a30fda920d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-06T05:04:40.000Z" + }, + "end": { + "$date": "2021-01-06T06:00:48.000Z" + }, + "events": [ + { + "uuid": "151e46ef-5d8e-4049-a424-b011ec901776", + "start": { + "$date": "2021-01-06T05:04:40.000Z" + }, + "end": { + "$date": "2021-01-06T06:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91fe8d58-354d-4856-bb51-4b5be36ec490", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-06T05:16:29.000Z" + }, + "end": { + "$date": "2021-01-06T05:30:19.000Z" + }, + "events": [ + { + "uuid": "58fc1559-a41c-487a-a399-53ace9ed1786", + "start": { + "$date": "2021-01-06T05:16:29.000Z" + }, + "end": { + "$date": "2021-01-06T05:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "b27684a0-69e3-42df-a013-232c1ebb4986", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-06T05:15:47.000Z" + }, + "end": { + "$date": "2021-01-06T07:26:34.000Z" + }, + "events": [ + { + "uuid": "eb3d8433-418a-4d7f-8d19-f91ef3becc5f", + "start": { + "$date": "2021-01-06T05:15:47.000Z" + }, + "end": { + "$date": "2021-01-06T07:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "0174664c-1bc4-45c2-b345-27f987f94cc2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-06T06:18:54.000Z" + }, + "end": { + "$date": "2021-01-06T10:03:32.000Z" + }, + "events": [ + { + "uuid": "20f2c38c-5918-46d3-88bc-fa873ea2fc3f", + "start": { + "$date": "2021-01-06T06:18:54.000Z" + }, + "end": { + "$date": "2021-01-06T10:03:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "87d9453f-1818-4261-b6cc-402e708af1e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-06T06:32:47.000Z" + }, + "end": { + "$date": "2021-01-06T07:14:20.000Z" + }, + "events": [ + { + "uuid": "37b37ba2-a0ad-46dc-8f55-123bb43cca0b", + "start": { + "$date": "2021-01-06T06:32:47.000Z" + }, + "end": { + "$date": "2021-01-06T07:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ceb9454f-818a-4797-823b-1f364722802b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-06T06:33:58.000Z" + }, + "end": { + "$date": "2021-01-06T07:14:04.000Z" + }, + "events": [ + { + "uuid": "c905843e-28c5-407d-b342-2a4210253bd2", + "start": { + "$date": "2021-01-06T06:33:58.000Z" + }, + "end": { + "$date": "2021-01-06T07:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "395959f9-275a-48ea-a53a-4ac758fc9ad0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-06T14:54:22.000Z" + }, + "end": { + "$date": "2021-01-06T15:12:13.000Z" + }, + "events": [ + { + "uuid": "611c35bf-dfea-4738-aead-05e08dec6fd5", + "start": { + "$date": "2021-01-06T14:54:22.000Z" + }, + "end": { + "$date": "2021-01-06T15:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2b4633d7-6a12-4292-8c97-671588ef1d99", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-06T15:17:21.000Z" + }, + "end": { + "$date": "2021-01-06T17:36:46.000Z" + }, + "events": [ + { + "uuid": "dd8894b6-f3df-496f-9f82-92e4a4ccc61a", + "start": { + "$date": "2021-01-06T15:17:21.000Z" + }, + "end": { + "$date": "2021-01-06T17:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "16073df7-6719-4730-a3ab-72a38e67598b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-06T17:31:08.000Z" + }, + "end": { + "$date": "2021-01-06T23:01:18.000Z" + }, + "events": [ + { + "uuid": "53d5957e-9389-49ac-ab9f-c0b8c17cdbb4", + "start": { + "$date": "2021-01-06T17:31:08.000Z" + }, + "end": { + "$date": "2021-01-06T23:01:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c48d946-9899-4202-9d05-0f3d4f979978", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-06T17:51:34.000Z" + }, + "end": { + "$date": "2021-01-06T17:58:28.000Z" + }, + "events": [ + { + "uuid": "7cabac9c-5668-4d3f-a4ec-539b2f73817a", + "start": { + "$date": "2021-01-06T17:51:34.000Z" + }, + "end": { + "$date": "2021-01-06T17:58:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c7911632-6392-4d47-b23a-040c3563d19b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-06T20:07:56.000Z" + }, + "end": { + "$date": "2021-01-06T21:02:17.000Z" + }, + "events": [ + { + "uuid": "2ae6e77d-d362-435d-8267-2d5f01655178", + "start": { + "$date": "2021-01-06T20:07:56.000Z" + }, + "end": { + "$date": "2021-01-06T21:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c7b69ece-4491-4fe9-95a1-365513b252ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-06T20:08:32.000Z" + }, + "end": { + "$date": "2021-01-06T21:06:33.000Z" + }, + "events": [ + { + "uuid": "f10b3d35-6b5b-4619-beb7-0aeda855c21e", + "start": { + "$date": "2021-01-06T20:08:32.000Z" + }, + "end": { + "$date": "2021-01-06T21:06:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f1cfb887-0a04-4401-938d-795a7e267520", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-06T20:33:17.000Z" + }, + "end": { + "$date": "2021-01-06T20:59:02.000Z" + }, + "events": [ + { + "uuid": "a37b05c5-ae95-4d91-900f-9f418fbdbecf", + "start": { + "$date": "2021-01-06T20:33:17.000Z" + }, + "end": { + "$date": "2021-01-06T20:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "169e87ff-1d58-438d-82c4-6c2d9cbf4765", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-06T21:20:52.000Z" + }, + "end": { + "$date": "2021-01-06T22:43:17.000Z" + }, + "events": [ + { + "uuid": "b8cbcf2a-652c-4015-9178-d3c0b326b355", + "start": { + "$date": "2021-01-06T21:20:52.000Z" + }, + "end": { + "$date": "2021-01-06T22:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f1878bd2-b491-4f58-b53d-b1303bab874f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-06T21:23:33.000Z" + }, + "end": { + "$date": "2021-01-06T22:03:54.000Z" + }, + "events": [ + { + "uuid": "323c7607-3519-4ca3-9282-921b36e29765", + "start": { + "$date": "2021-01-06T21:23:33.000Z" + }, + "end": { + "$date": "2021-01-06T22:03:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3ee4cc50-e36b-4d9d-a2f9-d5c5ca73a110", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-06T21:59:39.000Z" + }, + "end": { + "$date": "2021-01-07T00:36:20.000Z" + }, + "events": [ + { + "uuid": "9b73f32f-583b-4368-a01c-158e85e9366c", + "start": { + "$date": "2021-01-06T21:59:39.000Z" + }, + "end": { + "$date": "2021-01-07T00:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02526cb5-4ab0-43a1-8e68-f27fa2241b32", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-06T22:03:40.000Z" + }, + "end": { + "$date": "2021-01-07T04:35:53.000Z" + }, + "events": [ + { + "uuid": "7857f19e-cb8b-45f1-b27d-ba6c2164359f", + "start": { + "$date": "2021-01-06T22:03:40.000Z" + }, + "end": { + "$date": "2021-01-07T00:06:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6cdb6f14-db0b-4891-adf2-2574c583707a", + "start": { + "$date": "2021-01-07T00:06:40.000Z" + }, + "end": { + "$date": "2021-01-07T00:11:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6f03d356-853b-4609-8e3f-bef45f19e9bf", + "start": { + "$date": "2021-01-07T00:11:40.000Z" + }, + "end": { + "$date": "2021-01-07T00:21:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24b76300-8e23-4b71-9880-653824ea38eb", + "start": { + "$date": "2021-01-07T00:21:40.000Z" + }, + "end": { + "$date": "2021-01-07T00:34:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f107dc2c-8fe8-4921-89f6-867820f8cd59", + "start": { + "$date": "2021-01-07T00:34:40.000Z" + }, + "end": { + "$date": "2021-01-07T00:57:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec1ec113-d99b-4f8c-b5cd-fa7e5959c4b0", + "start": { + "$date": "2021-01-07T00:57:40.000Z" + }, + "end": { + "$date": "2021-01-07T01:17:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "557e1de1-59f2-4e35-a3b4-6303941bffba", + "start": { + "$date": "2021-01-07T01:17:40.000Z" + }, + "end": { + "$date": "2021-01-07T01:29:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec4cbe3b-bac3-4329-a516-b5e10ff090a6", + "start": { + "$date": "2021-01-07T01:29:40.000Z" + }, + "end": { + "$date": "2021-01-07T02:00:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11524d1a-2d4b-44a4-b736-95a329d58399", + "start": { + "$date": "2021-01-07T02:00:40.000Z" + }, + "end": { + "$date": "2021-01-07T04:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e756f3d2-b73a-419c-b6d7-4d536ad34dfd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-06T22:16:47.000Z" + }, + "end": { + "$date": "2021-01-06T23:40:59.000Z" + }, + "events": [ + { + "uuid": "2be934f5-d267-4939-bb5f-f5fa2102bce3", + "start": { + "$date": "2021-01-06T22:16:47.000Z" + }, + "end": { + "$date": "2021-01-06T23:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "a7b4dc69-71d8-42bc-abf4-05123d63719d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-06T21:20:52.000Z" + }, + "end": { + "$date": "2021-01-07T00:04:45.000Z" + }, + "events": [ + { + "uuid": "05eeed57-4aa3-4205-badf-adce7cccadea", + "start": { + "$date": "2021-01-06T21:20:52.000Z" + }, + "end": { + "$date": "2021-01-07T00:04:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b2e0606-ddcc-474c-b81c-cb35c51cff95", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T02:02:40.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:57.000Z" + }, + "events": [ + { + "uuid": "11363ddd-f401-4352-b712-43489ba8da5d", + "start": { + "$date": "2021-01-07T02:02:40.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7918c697-fee6-496d-a7d4-692e96d8f0cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T02:02:34.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:49.000Z" + }, + "events": [ + { + "uuid": "d999a419-8e38-4443-8ae5-1d1fe1c95ece", + "start": { + "$date": "2021-01-07T02:02:34.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "651ff899-11b2-4a22-acb7-f0c3726529df", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T02:03:02.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:58.000Z" + }, + "events": [ + { + "uuid": "e0ee9d6c-2ee4-4f5c-8986-1e6f0f75a526", + "start": { + "$date": "2021-01-07T02:03:02.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1db0115-62e1-4ce0-8fa8-40408cbb9b38", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T02:02:36.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:58.000Z" + }, + "events": [ + { + "uuid": "9d519cd4-fea4-42f5-ac8a-baefb074a5f0", + "start": { + "$date": "2021-01-07T02:02:36.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7681bb23-9dcb-483a-81d2-485551885f11", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T02:04:41.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:57.000Z" + }, + "events": [ + { + "uuid": "98ae6c9f-20f4-4c08-b60e-719ad58fe497", + "start": { + "$date": "2021-01-07T02:04:41.000Z" + }, + "end": { + "$date": "2021-01-07T02:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f985eaa8-efa7-4f27-a5d8-0e7589455863", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T02:15:29.000Z" + }, + "end": { + "$date": "2021-01-07T02:39:58.000Z" + }, + "events": [ + { + "uuid": "9df1acff-b8b4-4fe1-be00-665b40611059", + "start": { + "$date": "2021-01-07T02:15:29.000Z" + }, + "end": { + "$date": "2021-01-07T02:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "30abb073-ae45-49b1-8264-aa8ebfbdf00c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T02:41:09.000Z" + }, + "end": { + "$date": "2021-01-07T02:42:49.000Z" + }, + "events": [ + { + "uuid": "1d66bbb0-6578-4f39-adf0-72338b67a83e", + "start": { + "$date": "2021-01-07T02:41:09.000Z" + }, + "end": { + "$date": "2021-01-07T02:42:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2f5cac2-39f4-4b6e-917c-ea307bee6148", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T02:47:53.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:54.000Z" + }, + "events": [ + { + "uuid": "e975b04c-4df6-4eca-97bf-39951f90425c", + "start": { + "$date": "2021-01-07T02:47:53.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5ad3e913-74e4-4dfd-ab6b-3f24036c4fc1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T02:46:35.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:50.000Z" + }, + "events": [ + { + "uuid": "5be78e83-840c-4d9e-85b9-ba960967bad2", + "start": { + "$date": "2021-01-07T02:46:35.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50bdd6f9-afd1-4c13-94db-99b871309531", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T02:46:35.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:50.000Z" + }, + "events": [ + { + "uuid": "babde662-7738-4262-bd4d-dea7d957ebba", + "start": { + "$date": "2021-01-07T02:46:35.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d19bfad-2297-462e-b4b9-f73b14139f41", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T02:46:41.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:51.000Z" + }, + "events": [ + { + "uuid": "19f80cbf-7ebe-473a-81aa-92c63cac4bb0", + "start": { + "$date": "2021-01-07T02:46:41.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a809abae-672b-46fc-b30a-e8739ed8d199", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T02:46:33.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:51.000Z" + }, + "events": [ + { + "uuid": "dca1d741-f192-42b7-89eb-6ba6418e94d7", + "start": { + "$date": "2021-01-07T02:46:33.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "982ca8ee-431b-4914-9f89-8ec66c3452e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T02:46:38.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:48.000Z" + }, + "events": [ + { + "uuid": "29a1b95b-b4d2-489e-841b-21a642c52494", + "start": { + "$date": "2021-01-07T02:46:38.000Z" + }, + "end": { + "$date": "2021-01-07T03:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "045660a3-9411-4f90-ab75-53528b65b8d1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-07T03:04:08.000Z" + }, + "end": { + "$date": "2021-01-07T03:16:43.000Z" + }, + "events": [ + { + "uuid": "5b865975-8081-4e40-b55d-83bd5f3d0f0c", + "start": { + "$date": "2021-01-07T03:04:08.000Z" + }, + "end": { + "$date": "2021-01-07T03:16:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5727edaf-802d-4126-a230-5b00794bbcc9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T03:09:27.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:36.000Z" + }, + "events": [ + { + "uuid": "b2c5fecc-d510-4c24-8e8d-b6ba59115961", + "start": { + "$date": "2021-01-07T03:09:27.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5153a6fc-d9d9-4ad8-a27d-87a80f98ee37", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T03:09:21.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:31.000Z" + }, + "events": [ + { + "uuid": "5bd167f8-a10f-4f9b-a09a-e6ca87fb8c7a", + "start": { + "$date": "2021-01-07T03:09:21.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "175802ab-5244-45b2-9e26-25d3bab3d7e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T03:09:20.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:25.000Z" + }, + "events": [ + { + "uuid": "02c1c36d-6813-41a3-9bf6-4642ba55c74a", + "start": { + "$date": "2021-01-07T03:09:20.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb20f383-8b4a-4dbd-96c3-3e81758d8823", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T03:09:39.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:35.000Z" + }, + "events": [ + { + "uuid": "29fc117b-d78b-47ff-96f1-fe0441d43b8a", + "start": { + "$date": "2021-01-07T03:09:39.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81ee69b5-e5c7-4179-854b-d1fb9ee497f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T03:09:24.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:29.000Z" + }, + "events": [ + { + "uuid": "79ce38a5-8a9d-4ce8-8485-6f6b5fed70e8", + "start": { + "$date": "2021-01-07T03:09:24.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b09f080f-54c5-4bd7-8328-7abe32e9b02e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T03:09:19.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:26.000Z" + }, + "events": [ + { + "uuid": "50af2cda-5706-4b76-a9af-17851b79ae75", + "start": { + "$date": "2021-01-07T03:09:19.000Z" + }, + "end": { + "$date": "2021-01-07T03:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27eae4e4-1167-4303-afc7-1974f2036e57", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T03:26:43.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:09.000Z" + }, + "events": [ + { + "uuid": "3b0d2ff7-aeda-4305-abb2-d273f11f7e83", + "start": { + "$date": "2021-01-07T03:26:43.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf4ad739-11be-4229-8fa2-0daa2093e9a8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T03:22:43.000Z" + }, + "end": { + "$date": "2021-01-07T03:28:28.000Z" + }, + "events": [ + { + "uuid": "a7a04c4c-e038-42c1-9480-fcc448f8a5d4", + "start": { + "$date": "2021-01-07T03:22:43.000Z" + }, + "end": { + "$date": "2021-01-07T03:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f95362a5-f87c-454e-a26d-04043a9eb6d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T03:22:43.000Z" + }, + "end": { + "$date": "2021-01-07T03:27:30.000Z" + }, + "events": [ + { + "uuid": "e1af63c2-57ad-40ec-a0db-7bece1a47f27", + "start": { + "$date": "2021-01-07T03:22:43.000Z" + }, + "end": { + "$date": "2021-01-07T03:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd95cd30-95c0-4aa1-8f52-ea93ae9645f1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T03:22:41.000Z" + }, + "end": { + "$date": "2021-01-07T03:27:22.000Z" + }, + "events": [ + { + "uuid": "bb45404c-77c6-40ad-8b72-7472afe7738f", + "start": { + "$date": "2021-01-07T03:22:41.000Z" + }, + "end": { + "$date": "2021-01-07T03:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc3b4af2-4c9d-4447-a951-65a03454e43f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T03:22:44.000Z" + }, + "end": { + "$date": "2021-01-07T03:27:17.000Z" + }, + "events": [ + { + "uuid": "5a6363be-9e3a-47fa-b728-1f0cb57d2ac6", + "start": { + "$date": "2021-01-07T03:22:44.000Z" + }, + "end": { + "$date": "2021-01-07T03:27:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "b6b6c071-9c47-4991-9600-909ef9c304aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-07T03:23:49.000Z" + }, + "end": { + "$date": "2021-01-07T03:26:44.000Z" + }, + "events": [ + { + "uuid": "48f08bdd-9c61-4dd5-b262-9e5ac8f0f911", + "start": { + "$date": "2021-01-07T03:23:49.000Z" + }, + "end": { + "$date": "2021-01-07T03:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "954a2e34-4fec-441c-a17d-9bcd5fbe69fe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-07T03:26:54.000Z" + }, + "end": { + "$date": "2021-01-07T04:35:47.000Z" + }, + "events": [ + { + "uuid": "26e9f934-e63c-4e27-a24c-b108ce7a7181", + "start": { + "$date": "2021-01-07T03:26:54.000Z" + }, + "end": { + "$date": "2021-01-07T04:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d718a36-32ee-424c-bc5e-21dada87654a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T03:27:49.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:07.000Z" + }, + "events": [ + { + "uuid": "90d58cb4-91d8-4c90-948b-9bf5fba17b69", + "start": { + "$date": "2021-01-07T03:27:49.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58ea9fd7-8562-49db-9e91-8df0a5da8ce7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T03:28:50.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:06.000Z" + }, + "events": [ + { + "uuid": "58b1f768-273a-44b2-abef-35567d9c0f00", + "start": { + "$date": "2021-01-07T03:28:50.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13e3de67-7850-4fd7-946f-c00126291b94", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T03:28:20.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:15.000Z" + }, + "events": [ + { + "uuid": "5937b93e-2e22-48c6-a521-cbb4c1dffd89", + "start": { + "$date": "2021-01-07T03:28:20.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcd5b573-b2ab-407d-a726-2b7b9bbcade2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T03:29:17.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:07.000Z" + }, + "events": [ + { + "uuid": "004ac8d4-1d12-4d1a-8e13-4cc3c142e7eb", + "start": { + "$date": "2021-01-07T03:29:17.000Z" + }, + "end": { + "$date": "2021-01-07T04:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e076eb7a-ee94-4c8d-9f2e-34761bbf60e6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-07T03:31:23.000Z" + }, + "end": { + "$date": "2021-01-07T04:09:14.000Z" + }, + "events": [ + { + "uuid": "31594ab5-228f-4e3e-bb96-07f9ecad2fe6", + "start": { + "$date": "2021-01-07T03:31:23.000Z" + }, + "end": { + "$date": "2021-01-07T04:09:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bd24e0d2-1232-4f10-becd-5d72ce3b6573", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-07T04:09:24.000Z" + }, + "end": { + "$date": "2021-01-07T04:14:05.000Z" + }, + "events": [ + { + "uuid": "0b6de1d9-2c08-474e-a91c-b10255cb0274", + "start": { + "$date": "2021-01-07T04:09:24.000Z" + }, + "end": { + "$date": "2021-01-07T04:14:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62f0ac0a-f54a-490a-ae78-c18045225106", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T04:40:31.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:24.000Z" + }, + "events": [ + { + "uuid": "278ee249-6335-43fa-aade-0b178eb12563", + "start": { + "$date": "2021-01-07T04:40:31.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0037e7a7-3e33-4ef6-9f67-a620fa0c1bd5", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-07T04:15:11.000Z" + }, + "end": { + "$date": "2021-01-07T08:07:50.000Z" + }, + "events": [ + { + "uuid": "9268890d-d308-433d-bff5-af2b9e3205f0", + "start": { + "$date": "2021-01-07T04:15:11.000Z" + }, + "end": { + "$date": "2021-01-07T08:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "68aabbc8-9a29-4e70-a049-01accdd0beef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-07T04:16:06.000Z" + }, + "end": { + "$date": "2021-01-07T06:54:15.000Z" + }, + "events": [ + { + "uuid": "6397ae1c-04c8-43f9-9c60-ab54f9ec01c0", + "start": { + "$date": "2021-01-07T04:16:06.000Z" + }, + "end": { + "$date": "2021-01-07T06:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb6520a6-f811-46cc-a70f-c287c483440a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T04:20:34.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:15.000Z" + }, + "events": [ + { + "uuid": "eeb49f30-68fb-4688-8907-5aa51976f5a9", + "start": { + "$date": "2021-01-07T04:20:34.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c7e91cc-0b33-4aea-8864-bc2f80a69bc7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T04:20:51.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:16.000Z" + }, + "events": [ + { + "uuid": "9cdf0156-0448-4f81-af1a-68bf304ff5df", + "start": { + "$date": "2021-01-07T04:20:51.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3506469a-4b5e-427e-b51e-ae7b1a742fcd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T04:20:31.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:15.000Z" + }, + "events": [ + { + "uuid": "45e832b1-ec00-49a6-b480-bb8c6c01cf67", + "start": { + "$date": "2021-01-07T04:20:31.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43f74a9c-34af-4eee-abfa-e87650279a36", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T04:17:06.000Z" + }, + "end": { + "$date": "2021-01-07T04:21:45.000Z" + }, + "events": [ + { + "uuid": "7f3fd7c3-dd91-4ff9-98a5-f19c785ddff5", + "start": { + "$date": "2021-01-07T04:17:06.000Z" + }, + "end": { + "$date": "2021-01-07T04:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ec518f7-7b99-4b98-b427-90e8dc925a0d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T04:28:50.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:20.000Z" + }, + "events": [ + { + "uuid": "4263915b-99bb-4cd8-89c9-ec63c212660f", + "start": { + "$date": "2021-01-07T04:28:50.000Z" + }, + "end": { + "$date": "2021-01-07T04:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "6e582c8c-17ba-4f7a-af1a-d466919f31b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-07T04:36:07.000Z" + }, + "end": { + "$date": "2021-01-07T06:45:51.000Z" + }, + "events": [ + { + "uuid": "6267cece-8287-4edf-86bf-0bc86334237d", + "start": { + "$date": "2021-01-07T04:36:07.000Z" + }, + "end": { + "$date": "2021-01-07T06:45:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "ab2bfd23-286d-416a-b357-f98eb7db3905", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-07T04:36:12.000Z" + }, + "end": { + "$date": "2021-01-07T05:32:11.000Z" + }, + "events": [ + { + "uuid": "10d07f6d-98be-4b50-a611-35815590346e", + "start": { + "$date": "2021-01-07T04:36:12.000Z" + }, + "end": { + "$date": "2021-01-07T05:32:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8ebd6f5-bf26-4486-ad12-124da486ab59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T04:58:27.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:22.000Z" + }, + "events": [ + { + "uuid": "1aeb2e7e-ab8e-45b8-96b0-1770d09d3357", + "start": { + "$date": "2021-01-07T04:58:27.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8035989f-1749-4e8e-9652-7149562ba18d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T04:58:17.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:22.000Z" + }, + "events": [ + { + "uuid": "195b7520-5e60-4120-9a7f-8f65a02e9853", + "start": { + "$date": "2021-01-07T04:58:17.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a085695b-346a-4e55-bf0b-994189a4c722", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T04:58:20.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:20.000Z" + }, + "events": [ + { + "uuid": "90e345ee-d20c-429d-aced-5de40774764c", + "start": { + "$date": "2021-01-07T04:58:20.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52f928fa-84c5-40b3-a152-ddaaaf29ced4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T04:58:22.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:28.000Z" + }, + "events": [ + { + "uuid": "42e98697-b91c-4357-81e2-e298b83d337d", + "start": { + "$date": "2021-01-07T04:58:22.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "083aac21-9442-4079-b5b0-ce91fc2c06c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T04:58:21.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:21.000Z" + }, + "events": [ + { + "uuid": "9901cc07-933c-4890-b8ca-3c0f3182c36a", + "start": { + "$date": "2021-01-07T04:58:21.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f34b87fa-0387-4fa7-bc79-85c051eabe37", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T04:58:18.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:20.000Z" + }, + "events": [ + { + "uuid": "675bb092-e13b-4990-a70f-b0973d720b18", + "start": { + "$date": "2021-01-07T04:58:18.000Z" + }, + "end": { + "$date": "2021-01-07T05:13:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d28a46ff-bbbd-40f0-a367-38d1cbef9327", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T05:15:48.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:22.000Z" + }, + "events": [ + { + "uuid": "fe863e48-14e5-4766-b62e-1374349360e5", + "start": { + "$date": "2021-01-07T05:15:48.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4752578-4e02-483b-acf6-b35010607791", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T05:15:41.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:16.000Z" + }, + "events": [ + { + "uuid": "26ddfecb-477e-4573-8fa1-4eeb92e17e32", + "start": { + "$date": "2021-01-07T05:15:41.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d041546c-a8ba-46c0-9e48-6ededfc2bdb5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T05:16:07.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:12.000Z" + }, + "events": [ + { + "uuid": "7aaaed8c-852f-42fa-b35e-9d702d927789", + "start": { + "$date": "2021-01-07T05:16:07.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d937adb-13a0-49d7-a647-4b8c7ca6f9ac", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T05:15:42.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:19.000Z" + }, + "events": [ + { + "uuid": "4208f09b-762e-4405-b04f-45b887202431", + "start": { + "$date": "2021-01-07T05:15:42.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a9241fe-e808-4f07-9011-f882e3e7cbbe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T05:15:41.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:22.000Z" + }, + "events": [ + { + "uuid": "2a048b2d-b219-4cea-abd0-b252ffbe8ccc", + "start": { + "$date": "2021-01-07T05:15:41.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eeb32f65-0685-4f0c-9a94-7e6d7df71977", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-07T05:19:43.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:11.000Z" + }, + "events": [ + { + "uuid": "62ef1a7c-c296-4b2e-ba1a-e59b6aa39ced", + "start": { + "$date": "2021-01-07T05:19:43.000Z" + }, + "end": { + "$date": "2021-01-07T05:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", + "uuid": "8b04f452-1d93-48ad-a284-02986780c2ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T06:00:46.000Z" + }, + "end": { + "$date": "2021-01-07T07:05:51.000Z" + }, + "events": [ + { + "uuid": "d8e0be1d-c98d-4c8e-9eb0-a2889d95e2e5", + "start": { + "$date": "2021-01-07T06:00:46.000Z" + }, + "end": { + "$date": "2021-01-07T07:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cde3b4b7-648d-4326-a8ef-e8a7c15fe721", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-07T07:02:33.000Z" + }, + "end": { + "$date": "2021-01-07T07:05:05.000Z" + }, + "events": [ + { + "uuid": "6425e30e-eac0-4f01-bd73-611d85d7e1ee", + "start": { + "$date": "2021-01-07T07:02:33.000Z" + }, + "end": { + "$date": "2021-01-07T07:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c494b048-ef57-4eb1-ad42-04f014384d07", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-07T07:29:08.000Z" + }, + "end": { + "$date": "2021-01-07T08:15:59.000Z" + }, + "events": [ + { + "uuid": "d0e5bcf9-f83b-4ff2-966c-8901e0e669fd", + "start": { + "$date": "2021-01-07T07:29:08.000Z" + }, + "end": { + "$date": "2021-01-07T08:15:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2f2d5ad9-49e1-4b8f-80f1-9b5cbc87c08b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T07:29:35.000Z" + }, + "end": { + "$date": "2021-01-07T08:16:33.000Z" + }, + "events": [ + { + "uuid": "92b48328-ba3e-4085-a6c6-69e128803004", + "start": { + "$date": "2021-01-07T07:29:35.000Z" + }, + "end": { + "$date": "2021-01-07T08:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c904f8d3-5db0-451a-9bca-9a3053b4a97b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-07T15:16:28.000Z" + }, + "end": { + "$date": "2021-01-07T15:35:26.000Z" + }, + "events": [ + { + "uuid": "04cc678c-473c-4e2a-8a16-461b806b3c9c", + "start": { + "$date": "2021-01-07T15:16:28.000Z" + }, + "end": { + "$date": "2021-01-07T15:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "855e3dce-b8ab-49b3-b867-5cfadabb5baf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T18:16:09.000Z" + }, + "end": { + "$date": "2021-01-07T18:51:15.000Z" + }, + "events": [ + { + "uuid": "3ac850ae-a521-4541-a3e1-15ba40b93b19", + "start": { + "$date": "2021-01-07T18:16:09.000Z" + }, + "end": { + "$date": "2021-01-07T18:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a6836b2a-f9eb-4f48-9a1e-fa6430bc5400", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T18:52:39.000Z" + }, + "end": { + "$date": "2021-01-07T18:58:15.000Z" + }, + "events": [ + { + "uuid": "468c8ca3-43eb-4b3d-a771-fa734e029536", + "start": { + "$date": "2021-01-07T18:52:39.000Z" + }, + "end": { + "$date": "2021-01-07T18:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "713d5ccc-52e8-446a-ae0e-e492df08ace7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-07T19:25:26.000Z" + }, + "end": { + "$date": "2021-01-07T19:29:31.000Z" + }, + "events": [ + { + "uuid": "92d8baf0-f4cb-496b-a163-85e22fded03e", + "start": { + "$date": "2021-01-07T19:25:26.000Z" + }, + "end": { + "$date": "2021-01-07T19:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "10134fde-1eb7-448c-b752-22d5b46a6c88", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-07T19:33:03.000Z" + }, + "end": { + "$date": "2021-01-07T19:36:12.000Z" + }, + "events": [ + { + "uuid": "b5712046-3736-4131-9611-ab0fd921e91f", + "start": { + "$date": "2021-01-07T19:33:03.000Z" + }, + "end": { + "$date": "2021-01-07T19:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "40f46bc1-1825-40ac-b8fe-f9b448cc3439", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T19:33:48.000Z" + }, + "end": { + "$date": "2021-01-07T19:56:45.000Z" + }, + "events": [ + { + "uuid": "02324e4b-10ec-416d-9238-67f2a3f44103", + "start": { + "$date": "2021-01-07T19:33:48.000Z" + }, + "end": { + "$date": "2021-01-07T19:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "992df70e-11b4-41ae-8876-458ec00a08d5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-07T19:51:49.000Z" + }, + "end": { + "$date": "2021-01-07T20:45:28.000Z" + }, + "events": [ + { + "uuid": "affb75a2-0ff7-4201-999e-26bcbf2e63dd", + "start": { + "$date": "2021-01-07T19:51:49.000Z" + }, + "end": { + "$date": "2021-01-07T20:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "80bbf273-f684-4654-af17-1325c7d579e5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-07T19:51:56.000Z" + }, + "end": { + "$date": "2021-01-07T20:41:53.000Z" + }, + "events": [ + { + "uuid": "37772186-81bd-4109-ba79-b39b82ea6fb7", + "start": { + "$date": "2021-01-07T19:51:56.000Z" + }, + "end": { + "$date": "2021-01-07T20:41:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1df03c31-9a6e-4f3b-8dfa-12a989fe9e6b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-07T19:57:46.000Z" + }, + "end": { + "$date": "2021-01-07T20:05:36.000Z" + }, + "events": [ + { + "uuid": "ae7af537-5262-4219-9a84-5ad688587f5a", + "start": { + "$date": "2021-01-07T19:57:46.000Z" + }, + "end": { + "$date": "2021-01-07T20:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5e6456d3-163d-4bc2-b99a-d9776d221f76", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T21:14:06.000Z" + }, + "end": { + "$date": "2021-01-07T21:52:47.000Z" + }, + "events": [ + { + "uuid": "eb22d634-6912-4015-9aa6-cf6438028f5e", + "start": { + "$date": "2021-01-07T21:14:06.000Z" + }, + "end": { + "$date": "2021-01-07T21:52:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6764345e-9ba3-4b66-89a8-95daac0cbb49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T22:24:46.000Z" + }, + "end": { + "$date": "2021-01-07T22:55:33.000Z" + }, + "events": [ + { + "uuid": "ab2ceb8c-3ef0-47df-9ce4-d7e1e7456c92", + "start": { + "$date": "2021-01-07T22:24:46.000Z" + }, + "end": { + "$date": "2021-01-07T22:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f5b47fb-b5a4-4d1c-a15c-22f94e4748ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T23:13:41.000Z" + }, + "end": { + "$date": "2021-01-07T23:39:13.000Z" + }, + "events": [ + { + "uuid": "6bf14305-7839-44ca-96c0-c56478365007", + "start": { + "$date": "2021-01-07T23:13:41.000Z" + }, + "end": { + "$date": "2021-01-07T23:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "662a8644-baef-4c36-b56f-5079e7131508", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T23:24:40.000Z" + }, + "end": { + "$date": "2021-01-07T23:40:45.000Z" + }, + "events": [ + { + "uuid": "2c102739-778e-4970-9224-8b3853421de8", + "start": { + "$date": "2021-01-07T23:24:40.000Z" + }, + "end": { + "$date": "2021-01-07T23:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9eeefdce-1c7e-48dc-8b0b-755ca68c52db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-07T23:40:45.000Z" + }, + "end": { + "$date": "2021-01-08T00:06:10.000Z" + }, + "events": [ + { + "uuid": "fcb1ea16-daf5-4166-9315-d9a37c3b8d11", + "start": { + "$date": "2021-01-07T23:40:45.000Z" + }, + "end": { + "$date": "2021-01-08T00:06:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "358d8f62-aa01-4e32-82b4-49aac25e90e7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T23:40:49.000Z" + }, + "end": { + "$date": "2021-01-07T23:50:29.000Z" + }, + "events": [ + { + "uuid": "869ea52c-6419-438c-a8e5-948d296420c4", + "start": { + "$date": "2021-01-07T23:40:49.000Z" + }, + "end": { + "$date": "2021-01-07T23:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc13590a-6b09-45b8-84ee-82b4d8c3653a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-07T23:58:20.000Z" + }, + "end": { + "$date": "2021-01-08T00:05:45.000Z" + }, + "events": [ + { + "uuid": "9a694569-09f9-488d-8ad8-73e247ba47a6", + "start": { + "$date": "2021-01-07T23:58:20.000Z" + }, + "end": { + "$date": "2021-01-08T00:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a701134a-0325-4190-93ef-a43cc530e8a3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-07T23:58:22.000Z" + }, + "end": { + "$date": "2021-01-08T00:05:42.000Z" + }, + "events": [ + { + "uuid": "80fba226-536b-4267-9310-fc07ad2641f5", + "start": { + "$date": "2021-01-07T23:58:22.000Z" + }, + "end": { + "$date": "2021-01-08T00:05:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb08ce45-5ec4-41db-8968-75f5acddc0b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T00:20:42.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:06.000Z" + }, + "events": [ + { + "uuid": "b10c29c0-c2ae-4e95-82ea-b2baa65d3098", + "start": { + "$date": "2021-01-08T00:20:42.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7d00af5-435f-417c-ba37-a15495226c34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T00:08:55.000Z" + }, + "end": { + "$date": "2021-01-08T00:12:19.000Z" + }, + "events": [ + { + "uuid": "21701151-7ef7-41db-8a57-f065a374a449", + "start": { + "$date": "2021-01-08T00:08:55.000Z" + }, + "end": { + "$date": "2021-01-08T00:12:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31c71d4d-ce5a-4b8e-9fa1-8194cc5163d2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T00:08:55.000Z" + }, + "end": { + "$date": "2021-01-08T00:12:19.000Z" + }, + "events": [ + { + "uuid": "7d0458a8-acf6-4444-9635-ea5ca16ba8df", + "start": { + "$date": "2021-01-08T00:08:55.000Z" + }, + "end": { + "$date": "2021-01-08T00:12:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0927a821-1a23-40ce-b598-80aaf4b8c985", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-08T00:20:41.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:00.000Z" + }, + "events": [ + { + "uuid": "dcf81b45-5f2c-40c7-8b7d-65eea08d137c", + "start": { + "$date": "2021-01-08T00:20:41.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bbecf5d-46af-447c-a9be-159d3f59e59c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T00:20:30.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:22.000Z" + }, + "events": [ + { + "uuid": "43652e41-27f3-4318-9a81-38ab02664968", + "start": { + "$date": "2021-01-08T00:20:30.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c3f153a-e40e-4a48-b738-4324389fe32d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T00:21:45.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:00.000Z" + }, + "events": [ + { + "uuid": "0a3889f4-e6ca-4fe6-b5bd-c1e18a69c637", + "start": { + "$date": "2021-01-08T00:21:45.000Z" + }, + "end": { + "$date": "2021-01-08T00:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ce525255-186b-435d-ab02-67075ea10b7c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-08T00:29:40.000Z" + }, + "end": { + "$date": "2021-01-08T01:16:34.000Z" + }, + "events": [ + { + "uuid": "cfbfcd84-eea9-4653-82c6-1611ee8f788b", + "start": { + "$date": "2021-01-08T00:29:40.000Z" + }, + "end": { + "$date": "2021-01-08T01:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "810661e2-5f4b-47bb-9780-8aa95d6033a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T00:34:33.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:32.000Z" + }, + "events": [ + { + "uuid": "fceae6e8-a0f3-48d7-aa79-e0239c9fed5f", + "start": { + "$date": "2021-01-08T00:34:33.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0eceb781-c1fc-4128-8715-9b948dacdbb8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-08T00:34:21.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:26.000Z" + }, + "events": [ + { + "uuid": "0fb567a4-62d0-48dd-ae8b-dca353a04fd8", + "start": { + "$date": "2021-01-08T00:34:21.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3e6584a-aff1-4a63-abc7-1ee73dbf9901", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T00:34:21.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:21.000Z" + }, + "events": [ + { + "uuid": "f50006b2-763a-41e2-b1ed-ecc6a5231b26", + "start": { + "$date": "2021-01-08T00:34:21.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d119dfe-903c-42e1-8a33-ae039f9cbb0d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T00:34:22.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:28.000Z" + }, + "events": [ + { + "uuid": "355c71d2-abff-4e6e-980d-37b5149bcc78", + "start": { + "$date": "2021-01-08T00:34:22.000Z" + }, + "end": { + "$date": "2021-01-08T01:01:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c23c2e9c-b61f-4e9d-b3be-e8db2de6816a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T01:06:49.000Z" + }, + "end": { + "$date": "2021-01-08T01:22:13.000Z" + }, + "events": [ + { + "uuid": "d0a7afb4-555a-40f8-bb14-0cb18dbb7c61", + "start": { + "$date": "2021-01-08T01:06:49.000Z" + }, + "end": { + "$date": "2021-01-08T01:22:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecb00b29-54da-4c80-a781-444e0c7e09bf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-08T01:07:42.000Z" + }, + "end": { + "$date": "2021-01-08T01:22:07.000Z" + }, + "events": [ + { + "uuid": "f3b70eaa-8523-4f5e-92c4-77180a71d6ac", + "start": { + "$date": "2021-01-08T01:07:42.000Z" + }, + "end": { + "$date": "2021-01-08T01:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "359846c4-d7c4-472b-85af-c21e114f5b6d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-08T01:12:56.000Z" + }, + "end": { + "$date": "2021-01-08T01:31:43.000Z" + }, + "events": [ + { + "uuid": "4d4e6386-0699-4f3b-be38-1a38c53856b9", + "start": { + "$date": "2021-01-08T01:12:56.000Z" + }, + "end": { + "$date": "2021-01-08T01:31:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1a62fde1-e608-46a0-9023-cf2a223c983d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-08T01:24:58.000Z" + }, + "end": { + "$date": "2021-01-08T02:27:39.000Z" + }, + "events": [ + { + "uuid": "01f664b2-8f43-4fc2-ad49-de7ab027301a", + "start": { + "$date": "2021-01-08T01:24:58.000Z" + }, + "end": { + "$date": "2021-01-08T02:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2844b3fc-4923-4342-b782-43da790de7f3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-08T01:44:25.000Z" + }, + "end": { + "$date": "2021-01-08T01:53:34.000Z" + }, + "events": [ + { + "uuid": "b51a0578-c24b-4c2a-85ce-fc647baccfc2", + "start": { + "$date": "2021-01-08T01:44:25.000Z" + }, + "end": { + "$date": "2021-01-08T01:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da9a2363-aa4b-4013-9ef7-f51e7e58b978", + "uuid": "06414bc0-8300-49d8-966e-d8e48dd6c674", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T01:47:13.000Z" + }, + "end": { + "$date": "2021-01-08T01:50:49.000Z" + }, + "events": [ + { + "uuid": "777dd534-a453-4d06-8c70-643932f71647", + "start": { + "$date": "2021-01-08T01:47:13.000Z" + }, + "end": { + "$date": "2021-01-08T01:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da9a2363-aa4b-4013-9ef7-f51e7e58b978", + "uuid": "86ff00a6-08d3-4a6f-a241-d031ba796381", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T01:51:39.000Z" + }, + "end": { + "$date": "2021-01-08T03:09:54.000Z" + }, + "events": [ + { + "uuid": "69162b70-c4ed-4c03-9c91-7a9425d744b3", + "start": { + "$date": "2021-01-08T01:51:39.000Z" + }, + "end": { + "$date": "2021-01-08T03:09:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "51c14eba-2113-47b8-ae53-8a638b874d04", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-08T01:59:32.000Z" + }, + "end": { + "$date": "2021-01-08T02:13:08.000Z" + }, + "events": [ + { + "uuid": "70da9b0f-2cab-4a92-b239-b4b04665f794", + "start": { + "$date": "2021-01-08T01:59:32.000Z" + }, + "end": { + "$date": "2021-01-08T02:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09dae26c-50f6-47f4-92ad-e24a6974e819", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-08T02:31:19.000Z" + }, + "end": { + "$date": "2021-01-08T03:37:50.000Z" + }, + "events": [ + { + "uuid": "33cf311b-8500-44fa-bc96-d00683b7f6fd", + "start": { + "$date": "2021-01-08T02:31:19.000Z" + }, + "end": { + "$date": "2021-01-08T03:37:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fd76c6c8-e423-4524-b869-cc4a8d8efa6b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-08T03:14:03.000Z" + }, + "end": { + "$date": "2021-01-08T03:40:38.000Z" + }, + "events": [ + { + "uuid": "198d8fb0-7370-4193-b360-06a4218e579c", + "start": { + "$date": "2021-01-08T03:14:03.000Z" + }, + "end": { + "$date": "2021-01-08T03:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e853a453-d463-4ba6-84e3-36c61c9085f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T03:15:55.000Z" + }, + "end": { + "$date": "2021-01-08T03:26:06.000Z" + }, + "events": [ + { + "uuid": "08539349-fa97-4ed4-a92f-a0a64293f899", + "start": { + "$date": "2021-01-08T03:15:55.000Z" + }, + "end": { + "$date": "2021-01-08T03:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1566ba31-f886-4958-88a7-79e94b35f645", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-08T03:40:52.000Z" + }, + "end": { + "$date": "2021-01-08T06:38:51.000Z" + }, + "events": [ + { + "uuid": "48814364-d147-4f53-bc3e-3284ddf8d222", + "start": { + "$date": "2021-01-08T03:40:52.000Z" + }, + "end": { + "$date": "2021-01-08T06:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c9b82198-493d-4e48-9c84-76819225a69c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-08T03:43:39.000Z" + }, + "end": { + "$date": "2021-01-08T06:41:22.000Z" + }, + "events": [ + { + "uuid": "7ba11917-7f90-4cfc-8f93-d7b5d2b0c80f", + "start": { + "$date": "2021-01-08T03:43:39.000Z" + }, + "end": { + "$date": "2021-01-08T06:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1e851e45-9fcc-4246-9e7b-93e737207a2f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-08T03:45:26.000Z" + }, + "end": { + "$date": "2021-01-08T06:49:13.000Z" + }, + "events": [ + { + "uuid": "4e6a9ddb-bea4-4677-90f2-15a9aca3833f", + "start": { + "$date": "2021-01-08T03:45:26.000Z" + }, + "end": { + "$date": "2021-01-08T06:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d539d578-ba97-40cf-bae4-061cffd15740", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-08T03:56:51.000Z" + }, + "end": { + "$date": "2021-01-08T04:00:53.000Z" + }, + "events": [ + { + "uuid": "dcbf5d2e-67ff-4be7-b810-56d95438f234", + "start": { + "$date": "2021-01-08T03:56:51.000Z" + }, + "end": { + "$date": "2021-01-08T04:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8958f3e0-a545-49b1-b28d-3374c5df3375", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T04:16:17.000Z" + }, + "end": { + "$date": "2021-01-08T04:51:47.000Z" + }, + "events": [ + { + "uuid": "75abf30b-745e-422f-a99e-e3d4a9e9c85f", + "start": { + "$date": "2021-01-08T04:16:17.000Z" + }, + "end": { + "$date": "2021-01-08T04:51:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "08da480e-f1a6-4cdf-9b38-5135d3804a9e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-08T04:41:21.000Z" + }, + "end": { + "$date": "2021-01-08T05:07:27.000Z" + }, + "events": [ + { + "uuid": "91d1eb8a-98bf-4a72-b7ad-6939115663d5", + "start": { + "$date": "2021-01-08T04:41:21.000Z" + }, + "end": { + "$date": "2021-01-08T05:07:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fa77c322-c420-4698-93ad-39ab1cea3aea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-08T04:43:03.000Z" + }, + "end": { + "$date": "2021-01-08T05:07:54.000Z" + }, + "events": [ + { + "uuid": "7275e3a2-8aa5-4ad6-8724-62f53946b056", + "start": { + "$date": "2021-01-08T04:43:03.000Z" + }, + "end": { + "$date": "2021-01-08T05:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "02bfd1b6-0ca1-4a08-9fb2-b1c44284b506", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T04:50:44.000Z" + }, + "end": { + "$date": "2021-01-08T04:52:54.000Z" + }, + "events": [ + { + "uuid": "96fed550-8350-4b2b-be48-5bf322105e86", + "start": { + "$date": "2021-01-08T04:50:44.000Z" + }, + "end": { + "$date": "2021-01-08T04:52:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8b6d3bdd-8450-4938-979b-cd4e680b5daf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T04:53:38.000Z" + }, + "end": { + "$date": "2021-01-08T06:02:24.000Z" + }, + "events": [ + { + "uuid": "2c76ac76-bb0f-44c0-b748-e7b124a645b7", + "start": { + "$date": "2021-01-08T04:53:38.000Z" + }, + "end": { + "$date": "2021-01-08T06:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "35d60313-7732-4146-a55a-8f045ba07e35", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T04:54:15.000Z" + }, + "end": { + "$date": "2021-01-08T07:16:18.000Z" + }, + "events": [ + { + "uuid": "6fa42d0e-6bc9-4dba-a0a7-9871e101148b", + "start": { + "$date": "2021-01-08T04:54:15.000Z" + }, + "end": { + "$date": "2021-01-08T07:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "4850cfac-f06f-4ed5-9c1c-b8ff06968cfc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-08T05:08:19.000Z" + }, + "end": { + "$date": "2021-01-08T05:51:56.000Z" + }, + "events": [ + { + "uuid": "e8a9a3fd-879c-41f7-b75f-3d30e33c4dbe", + "start": { + "$date": "2021-01-08T05:08:19.000Z" + }, + "end": { + "$date": "2021-01-08T05:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "e2eac9c5-7cf3-4964-85c8-9395d2d30f8d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-08T05:08:27.000Z" + }, + "end": { + "$date": "2021-01-08T06:55:35.000Z" + }, + "events": [ + { + "uuid": "cad620e9-dbf0-4298-a61f-3c62fbb1b8ec", + "start": { + "$date": "2021-01-08T05:08:27.000Z" + }, + "end": { + "$date": "2021-01-08T06:15:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9fa1c97c-f845-4788-8916-f2b82c879eb3", + "start": { + "$date": "2021-01-08T06:15:27.000Z" + }, + "end": { + "$date": "2021-01-08T06:19:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5bb8245a-5949-4466-b657-577a06d7cacc", + "start": { + "$date": "2021-01-08T06:19:27.000Z" + }, + "end": { + "$date": "2021-01-08T06:30:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0e4fa37-7d46-4b95-bc7d-c3debfc7a979", + "start": { + "$date": "2021-01-08T06:30:27.000Z" + }, + "end": { + "$date": "2021-01-08T06:55:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c42592b-64f2-4f34-b2fb-bccdc80bc0c7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T05:43:39.000Z" + }, + "end": { + "$date": "2021-01-08T05:46:28.000Z" + }, + "events": [ + { + "uuid": "c5279f8d-4814-4351-9f5e-8a4f6b487246", + "start": { + "$date": "2021-01-08T05:43:39.000Z" + }, + "end": { + "$date": "2021-01-08T05:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "04686a8c-7a01-4ce5-9578-5ae5aebf5c09", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T05:52:40.000Z" + }, + "end": { + "$date": "2021-01-08T06:38:30.000Z" + }, + "events": [ + { + "uuid": "e5c506fe-681b-4132-ac38-d192659c3df2", + "start": { + "$date": "2021-01-08T05:52:40.000Z" + }, + "end": { + "$date": "2021-01-08T06:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9fca29a2-df7a-4197-80a2-010ac0919573", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-08T06:53:09.000Z" + }, + "end": { + "$date": "2021-01-08T09:07:19.000Z" + }, + "events": [ + { + "uuid": "5e32aa54-340a-442d-8b62-85c775fca179", + "start": { + "$date": "2021-01-08T06:53:09.000Z" + }, + "end": { + "$date": "2021-01-08T09:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0e4f1148-5d10-4d06-a61d-7a3f8a0482aa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-08T06:58:12.000Z" + }, + "end": { + "$date": "2021-01-08T09:07:18.000Z" + }, + "events": [ + { + "uuid": "640bccbb-514d-48c9-937a-f8628987106f", + "start": { + "$date": "2021-01-08T06:58:12.000Z" + }, + "end": { + "$date": "2021-01-08T09:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "dd1f541b-cd01-49a1-8fee-4e48ac5c8bf7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-08T07:13:37.000Z" + }, + "end": { + "$date": "2021-01-08T08:11:48.000Z" + }, + "events": [ + { + "uuid": "bc345d93-08f9-46bc-8023-bb377e275559", + "start": { + "$date": "2021-01-08T07:13:37.000Z" + }, + "end": { + "$date": "2021-01-08T08:11:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a6e3de11-e117-48a3-903c-fcf3b7d79f4d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-08T15:48:15.000Z" + }, + "end": { + "$date": "2021-01-08T17:21:11.000Z" + }, + "events": [ + { + "uuid": "eb156eda-3159-4bc0-ba6c-25727a436eec", + "start": { + "$date": "2021-01-08T15:48:15.000Z" + }, + "end": { + "$date": "2021-01-08T17:21:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3f588e12-1f25-441d-8c69-666d81dd68d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-08T15:56:17.000Z" + }, + "end": { + "$date": "2021-01-08T16:17:18.000Z" + }, + "events": [ + { + "uuid": "07fd3968-3aad-4494-8a24-5de25feb3f3d", + "start": { + "$date": "2021-01-08T15:56:17.000Z" + }, + "end": { + "$date": "2021-01-08T16:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2c004f57-1d32-48d1-b894-dc5bf7a5a669", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-08T16:46:33.000Z" + }, + "end": { + "$date": "2021-01-08T23:15:38.000Z" + }, + "events": [ + { + "uuid": "b58c4ede-e6bb-4a47-ac6d-36c05257a38a", + "start": { + "$date": "2021-01-08T16:46:33.000Z" + }, + "end": { + "$date": "2021-01-08T19:19:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "782bc27c-e881-4c88-aa14-8652f4665412", + "start": { + "$date": "2021-01-08T19:19:33.000Z" + }, + "end": { + "$date": "2021-01-08T19:45:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "110f1f65-0a59-466a-8a12-0d9ed27b354e", + "start": { + "$date": "2021-01-08T19:45:33.000Z" + }, + "end": { + "$date": "2021-01-08T23:15:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1d1fc235-8f19-4375-8df5-a9371a589dbd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T16:51:17.000Z" + }, + "end": { + "$date": "2021-01-08T16:57:22.000Z" + }, + "events": [ + { + "uuid": "680cfd4f-9263-48ef-baf3-e6b1fd9cbd93", + "start": { + "$date": "2021-01-08T16:51:17.000Z" + }, + "end": { + "$date": "2021-01-08T16:57:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "da85dd63-9571-462c-8a30-29f02d915597", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T17:26:48.000Z" + }, + "end": { + "$date": "2021-01-08T19:14:20.000Z" + }, + "events": [ + { + "uuid": "bc57327c-7449-464d-bb6c-b30ccda43058", + "start": { + "$date": "2021-01-08T17:26:48.000Z" + }, + "end": { + "$date": "2021-01-08T19:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "be1912d1-39c8-4310-b005-ddf1dd2f4854", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-08T18:15:10.000Z" + }, + "end": { + "$date": "2021-01-08T18:22:02.000Z" + }, + "events": [ + { + "uuid": "61b3d4b8-7b28-49f2-acd7-d49aedd32941", + "start": { + "$date": "2021-01-08T18:15:10.000Z" + }, + "end": { + "$date": "2021-01-08T18:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d8cdc5f0-243a-446b-91b0-1d9ebf6cfc53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T19:19:03.000Z" + }, + "end": { + "$date": "2021-01-08T21:07:31.000Z" + }, + "events": [ + { + "uuid": "364ce4d8-87b4-4f44-9533-456ac94b75c1", + "start": { + "$date": "2021-01-08T19:19:03.000Z" + }, + "end": { + "$date": "2021-01-08T20:51:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45e95b4d-d6f2-4f83-8478-865d7f8bad94", + "start": { + "$date": "2021-01-08T20:51:03.000Z" + }, + "end": { + "$date": "2021-01-08T21:07:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f0f50e53-dc38-494b-9aee-a6bb31674667", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T19:31:06.000Z" + }, + "end": { + "$date": "2021-01-08T19:49:17.000Z" + }, + "events": [ + { + "uuid": "9764a141-b972-463d-afff-ca0df4e46a02", + "start": { + "$date": "2021-01-08T19:31:06.000Z" + }, + "end": { + "$date": "2021-01-08T19:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a525d00e-4aa4-48c6-9499-9e94d91a73a8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-08T19:36:59.000Z" + }, + "end": { + "$date": "2021-01-08T22:15:10.000Z" + }, + "events": [ + { + "uuid": "7c70f45d-8e91-48a1-bafc-3a5af87571d9", + "start": { + "$date": "2021-01-08T19:36:59.000Z" + }, + "end": { + "$date": "2021-01-08T22:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "11ef3022-7888-4306-a8af-fcb29a6b4b5e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-08T20:23:00.000Z" + }, + "end": { + "$date": "2021-01-09T00:48:52.000Z" + }, + "events": [ + { + "uuid": "353e38ec-c37b-46e6-8a85-bc0f63d49231", + "start": { + "$date": "2021-01-08T20:23:00.000Z" + }, + "end": { + "$date": "2021-01-08T22:21:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c5ae645-2cb2-4f1b-9972-6de08f41ab47", + "start": { + "$date": "2021-01-08T22:21:00.000Z" + }, + "end": { + "$date": "2021-01-08T22:22:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2cbd32cb-3d56-405c-b2f4-e7aa157b0ca0", + "start": { + "$date": "2021-01-08T22:22:00.000Z" + }, + "end": { + "$date": "2021-01-08T22:24:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7537b5ee-f854-4f2d-9698-a0692cc8097a", + "start": { + "$date": "2021-01-08T22:24:00.000Z" + }, + "end": { + "$date": "2021-01-08T22:37:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d7ce98a-2c86-4ea5-bc4e-5e0225b6dd5b", + "start": { + "$date": "2021-01-08T22:37:00.000Z" + }, + "end": { + "$date": "2021-01-09T00:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "74813c14-c070-48e7-81ea-9c27b7a94e55", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-08T21:13:06.000Z" + }, + "end": { + "$date": "2021-01-08T21:42:09.000Z" + }, + "events": [ + { + "uuid": "e8bf5afc-f989-4927-a54a-9bc451357e07", + "start": { + "$date": "2021-01-08T21:13:06.000Z" + }, + "end": { + "$date": "2021-01-08T21:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "76f4332b-b671-4fa0-a96d-1a48a3f20568", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T21:36:23.000Z" + }, + "end": { + "$date": "2021-01-08T22:34:19.000Z" + }, + "events": [ + { + "uuid": "2c0910bb-c8b3-4460-9b70-d4a07a3f01f7", + "start": { + "$date": "2021-01-08T21:36:23.000Z" + }, + "end": { + "$date": "2021-01-08T22:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3a3df9d8-9b41-4a35-9604-68b0e37f2785", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-08T21:55:37.000Z" + }, + "end": { + "$date": "2021-01-08T22:00:33.000Z" + }, + "events": [ + { + "uuid": "a39098b9-90b3-4891-a674-b3ddc046f31d", + "start": { + "$date": "2021-01-08T21:55:37.000Z" + }, + "end": { + "$date": "2021-01-08T22:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3c061a3a-8584-405c-ab7f-fac5a6d86f5c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-08T22:32:16.000Z" + }, + "end": { + "$date": "2021-01-09T00:48:44.000Z" + }, + "events": [ + { + "uuid": "88192e89-9e55-433b-aa24-b952cc7dedc0", + "start": { + "$date": "2021-01-08T22:32:16.000Z" + }, + "end": { + "$date": "2021-01-09T00:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2811e03b-f059-4258-ba4e-4355d8483217", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T00:14:17.000Z" + }, + "end": { + "$date": "2021-01-09T00:34:34.000Z" + }, + "events": [ + { + "uuid": "dddbfff2-6ce2-4ba2-82c2-f2c62af4deff", + "start": { + "$date": "2021-01-09T00:14:17.000Z" + }, + "end": { + "$date": "2021-01-09T00:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "ed14b15f-b6c7-430f-aef4-680125b3a4e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-08T23:12:21.000Z" + }, + "end": { + "$date": "2021-01-09T00:14:57.000Z" + }, + "events": [ + { + "uuid": "68816854-7e52-4eeb-9841-1e8528ce8914", + "start": { + "$date": "2021-01-08T23:12:21.000Z" + }, + "end": { + "$date": "2021-01-09T00:14:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "3d375ea2-5cfe-4afd-99cc-38bbf65f8219", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-08T23:13:35.000Z" + }, + "end": { + "$date": "2021-01-09T01:24:54.000Z" + }, + "events": [ + { + "uuid": "82ada09b-89e9-4cd3-a4b4-1f1409ca37b0", + "start": { + "$date": "2021-01-08T23:13:35.000Z" + }, + "end": { + "$date": "2021-01-09T01:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "787d29b6-0fab-45ca-b5a6-b478ef1b4c66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T02:11:07.000Z" + }, + "end": { + "$date": "2021-01-09T02:11:07.000Z" + }, + "events": [ + { + "uuid": "1a7377ec-f7f3-4a99-bbd4-2c0a5719c7d4", + "start": { + "$date": "2021-01-09T02:11:07.000Z" + }, + "end": { + "$date": "2021-01-09T02:52:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc25df14-4e52-48c9-98e2-82192ebe33b7", + "start": { + "$date": "2021-01-09T02:52:07.000Z" + }, + "end": { + "$date": "2021-01-09T03:08:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0740bcbb-89ed-4aca-a85f-1dfb95028d00", + "start": { + "$date": "2021-01-09T03:08:07.000Z" + }, + "end": { + "$date": "2021-01-09T02:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f4070d57-d84b-40f5-851a-3a687b003c84", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T04:16:10.000Z" + }, + "end": { + "$date": "2021-01-09T05:24:18.000Z" + }, + "events": [ + { + "uuid": "7290cb4d-773d-49db-93e1-ed4294b0eced", + "start": { + "$date": "2021-01-09T04:16:10.000Z" + }, + "end": { + "$date": "2021-01-09T04:59:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1dbe4853-89f5-4188-a845-e0b4c2122bda", + "start": { + "$date": "2021-01-09T04:59:10.000Z" + }, + "end": { + "$date": "2021-01-09T05:25:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9dbbbd73-fa60-4b2a-836b-bbc918b62c5d", + "start": { + "$date": "2021-01-09T05:25:10.000Z" + }, + "end": { + "$date": "2021-01-09T05:42:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "38732b63-ba43-4c60-a070-5ce5b38b5cb5", + "start": { + "$date": "2021-01-09T05:42:10.000Z" + }, + "end": { + "$date": "2021-01-09T05:44:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dbb9455f-0ef6-445a-aa6a-b09016506522", + "start": { + "$date": "2021-01-09T05:44:10.000Z" + }, + "end": { + "$date": "2021-01-09T06:43:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1fd1510c-2e2a-4338-bb98-b7c5e8944f7f", + "start": { + "$date": "2021-01-09T06:43:10.000Z" + }, + "end": { + "$date": "2021-01-09T06:52:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7ef5a084-07b2-4d59-b62a-58b4a46a6097", + "start": { + "$date": "2021-01-09T06:52:10.000Z" + }, + "end": { + "$date": "2021-01-09T05:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8e3b4f14-800a-4b71-b24f-1210d39a318a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T00:15:32.000Z" + }, + "end": { + "$date": "2021-01-09T01:08:09.000Z" + }, + "events": [ + { + "uuid": "46953f8f-31ae-4b81-9a91-2f2a71664c41", + "start": { + "$date": "2021-01-09T00:15:32.000Z" + }, + "end": { + "$date": "2021-01-09T01:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "389e4b04-ee6b-4d86-a271-a3ca3af86eae", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-09T00:32:51.000Z" + }, + "end": { + "$date": "2021-01-09T00:57:02.000Z" + }, + "events": [ + { + "uuid": "f647ff13-c712-4b63-a404-ec6c3203a4a2", + "start": { + "$date": "2021-01-09T00:32:51.000Z" + }, + "end": { + "$date": "2021-01-09T00:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4db608c2-1c28-4c4d-8f30-6720b8281684", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T00:48:00.000Z" + }, + "end": { + "$date": "2021-01-09T03:23:20.000Z" + }, + "events": [ + { + "uuid": "9248b975-ce87-499e-ba04-fd62a90e056c", + "start": { + "$date": "2021-01-09T00:48:00.000Z" + }, + "end": { + "$date": "2021-01-09T03:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2c9968a2-def2-46b7-814e-0f43f004e761", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-09T01:19:17.000Z" + }, + "end": { + "$date": "2021-01-09T02:24:52.000Z" + }, + "events": [ + { + "uuid": "6e4cba0f-1f34-4c43-981a-078c7d5f790f", + "start": { + "$date": "2021-01-09T01:19:17.000Z" + }, + "end": { + "$date": "2021-01-09T02:24:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "96945c71-bb5f-4311-98ef-0df69e836df3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-09T01:25:36.000Z" + }, + "end": { + "$date": "2021-01-09T01:56:30.000Z" + }, + "events": [ + { + "uuid": "2b9317d5-1ba5-46cd-9179-11a2ca7cf83a", + "start": { + "$date": "2021-01-09T01:25:36.000Z" + }, + "end": { + "$date": "2021-01-09T01:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9a855d57-f66a-4618-bba3-9024e61894fd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-09T01:37:58.000Z" + }, + "end": { + "$date": "2021-01-09T03:05:30.000Z" + }, + "events": [ + { + "uuid": "830e317b-4478-4241-8712-ee7f7d2a7258", + "start": { + "$date": "2021-01-09T01:37:58.000Z" + }, + "end": { + "$date": "2021-01-09T03:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8efc4c83-918e-49bf-8fa9-a016db8f3426", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T04:17:13.000Z" + }, + "end": { + "$date": "2021-01-09T04:17:19.000Z" + }, + "events": [ + { + "uuid": "db406c05-5ed7-468b-847e-a89f50ec7d4c", + "start": { + "$date": "2021-01-09T04:17:13.000Z" + }, + "end": { + "$date": "2021-01-09T04:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e5947a8e-8a47-4ead-9f38-1b0dfe1c8b4e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-09T02:36:39.000Z" + }, + "end": { + "$date": "2021-01-09T03:46:06.000Z" + }, + "events": [ + { + "uuid": "f6e7283f-dc5a-485c-9a2c-69681aa1af09", + "start": { + "$date": "2021-01-09T02:36:39.000Z" + }, + "end": { + "$date": "2021-01-09T03:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1df18d20-43bd-4bec-98b3-727a47097b40", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-09T03:50:51.000Z" + }, + "end": { + "$date": "2021-01-09T07:11:15.000Z" + }, + "events": [ + { + "uuid": "60ac44d9-3d0c-4a36-a75f-608bfb391bb1", + "start": { + "$date": "2021-01-09T03:50:51.000Z" + }, + "end": { + "$date": "2021-01-09T07:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8d4f1f0b-7605-4dc0-9807-813933cc3d2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T03:55:29.000Z" + }, + "end": { + "$date": "2021-01-09T05:00:34.000Z" + }, + "events": [ + { + "uuid": "ea2205d0-911c-46a2-9b6f-bf4374dea605", + "start": { + "$date": "2021-01-09T03:55:29.000Z" + }, + "end": { + "$date": "2021-01-09T05:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87427085-84c4-4799-96d9-594c64a2e70a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-09T03:58:26.000Z" + }, + "end": { + "$date": "2021-01-09T07:18:03.000Z" + }, + "events": [ + { + "uuid": "e9a1de4f-58f5-4415-8a25-a301f3faf82b", + "start": { + "$date": "2021-01-09T03:58:26.000Z" + }, + "end": { + "$date": "2021-01-09T07:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d2649a3e-fb85-4c3b-8657-01536de5fad0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-09T03:58:40.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:36.000Z" + }, + "events": [ + { + "uuid": "007abab3-9568-4701-aff1-28ef36d21416", + "start": { + "$date": "2021-01-09T03:58:40.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1342fa2a-a26f-41f7-b311-4ba913d14148", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T03:59:05.000Z" + }, + "end": { + "$date": "2021-01-09T06:49:14.000Z" + }, + "events": [ + { + "uuid": "ec197504-3548-430d-8ccb-50c5175d4110", + "start": { + "$date": "2021-01-09T03:59:05.000Z" + }, + "end": { + "$date": "2021-01-09T06:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "11b3b20e-8d37-4b8c-bcda-47488e0f985c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-09T04:13:10.000Z" + }, + "end": { + "$date": "2021-01-09T07:11:14.000Z" + }, + "events": [ + { + "uuid": "b27ed131-0b4e-4f07-bc3c-1a06a09df0b6", + "start": { + "$date": "2021-01-09T04:13:10.000Z" + }, + "end": { + "$date": "2021-01-09T07:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "208d4b6e-2d0d-4242-8deb-7bb2c46fe47e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T04:59:34.000Z" + }, + "end": { + "$date": "2021-01-09T05:07:30.000Z" + }, + "events": [ + { + "uuid": "a1b60f03-232d-4abe-92a3-5e9608f098c4", + "start": { + "$date": "2021-01-09T04:59:34.000Z" + }, + "end": { + "$date": "2021-01-09T05:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68fa4e4d-76b3-4fad-b5e3-7a26f1c5a454", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T04:55:58.000Z" + }, + "end": { + "$date": "2021-01-09T06:29:19.000Z" + }, + "events": [ + { + "uuid": "114473af-22ea-440f-9952-3ad32ecab28a", + "start": { + "$date": "2021-01-09T04:55:58.000Z" + }, + "end": { + "$date": "2021-01-09T06:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d4e05e36-575b-4478-8f55-35e68b481d97", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T05:02:57.000Z" + }, + "end": { + "$date": "2021-01-09T06:06:53.000Z" + }, + "events": [ + { + "uuid": "b7baface-6271-467e-aeaf-f35a963182a9", + "start": { + "$date": "2021-01-09T05:02:57.000Z" + }, + "end": { + "$date": "2021-01-09T06:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "a233c1c4-66a5-4d1a-86eb-3f08bde1c2e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T05:08:50.000Z" + }, + "end": { + "$date": "2021-01-09T05:56:01.000Z" + }, + "events": [ + { + "uuid": "dc0d6e42-44c3-4404-b463-533f30a02c09", + "start": { + "$date": "2021-01-09T05:08:50.000Z" + }, + "end": { + "$date": "2021-01-09T05:56:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "6cb52beb-7f47-4b3d-bc20-e59b29e54dfb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T05:24:33.000Z" + }, + "end": { + "$date": "2021-01-09T05:56:06.000Z" + }, + "events": [ + { + "uuid": "6d99a6a3-d3c5-4cb4-9947-f8e14d4bb508", + "start": { + "$date": "2021-01-09T05:24:33.000Z" + }, + "end": { + "$date": "2021-01-09T05:56:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "fc3969e8-c4c1-45e4-b4b3-1fd888f3fe5a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T05:56:31.000Z" + }, + "end": { + "$date": "2021-01-09T06:00:56.000Z" + }, + "events": [ + { + "uuid": "cbf71920-0309-4dd5-a7ce-9ae0e6bf4e4d", + "start": { + "$date": "2021-01-09T05:56:31.000Z" + }, + "end": { + "$date": "2021-01-09T06:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "2a343157-e76b-4e7b-bf99-f8ad742ce48f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T05:57:27.000Z" + }, + "end": { + "$date": "2021-01-09T06:03:03.000Z" + }, + "events": [ + { + "uuid": "364e5d13-c5e2-4b9b-b4d2-7bcefc6da6fb", + "start": { + "$date": "2021-01-09T05:57:27.000Z" + }, + "end": { + "$date": "2021-01-09T06:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "4efe800f-05be-422f-a5a8-ff61d198ad03", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T06:01:11.000Z" + }, + "end": { + "$date": "2021-01-09T06:41:33.000Z" + }, + "events": [ + { + "uuid": "0fd47efd-d9ae-4710-9d9e-66d32a1384da", + "start": { + "$date": "2021-01-09T06:01:11.000Z" + }, + "end": { + "$date": "2021-01-09T06:41:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "09e85d62-fd7a-46db-ab07-f8f9c737972d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T06:41:13.000Z" + }, + "end": { + "$date": "2021-01-09T09:22:07.000Z" + }, + "events": [ + { + "uuid": "fb01266f-38dc-4827-bd71-db1091eac30a", + "start": { + "$date": "2021-01-09T06:41:13.000Z" + }, + "end": { + "$date": "2021-01-09T09:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0a5ea6c3-8d74-4e7a-9507-0b6005229996", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T06:30:19.000Z" + }, + "end": { + "$date": "2021-01-09T06:46:16.000Z" + }, + "events": [ + { + "uuid": "dfb664a8-86ef-4487-bd9f-3dbd99884af3", + "start": { + "$date": "2021-01-09T06:30:19.000Z" + }, + "end": { + "$date": "2021-01-09T06:46:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "95083ea1-f639-4c90-a753-5a8780786637", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T06:43:48.000Z" + }, + "end": { + "$date": "2021-01-09T09:12:24.000Z" + }, + "events": [ + { + "uuid": "ff4ca487-4f66-401f-80be-e6f088be262b", + "start": { + "$date": "2021-01-09T06:43:48.000Z" + }, + "end": { + "$date": "2021-01-09T09:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9afcb8e7-780c-43c1-839d-4ad921d8095e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T06:46:21.000Z" + }, + "end": { + "$date": "2021-01-09T08:36:44.000Z" + }, + "events": [ + { + "uuid": "b47c6275-9bf1-424c-99f8-51932f672b23", + "start": { + "$date": "2021-01-09T06:46:21.000Z" + }, + "end": { + "$date": "2021-01-09T08:36:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "799d3981-b932-4204-9c3b-2765dd565696", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T07:11:24.000Z" + }, + "end": { + "$date": "2021-01-09T07:41:02.000Z" + }, + "events": [ + { + "uuid": "71a6182d-a009-4418-abfd-a8225620f3bf", + "start": { + "$date": "2021-01-09T07:11:24.000Z" + }, + "end": { + "$date": "2021-01-09T07:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2db0dba3-5a1e-492f-b315-f7bc2dad3049", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-09T07:18:57.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:02.000Z" + }, + "events": [ + { + "uuid": "3fc77cf1-ae16-4a45-8520-70e176962f55", + "start": { + "$date": "2021-01-09T07:18:57.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d37ab0d4-dc66-4fea-9766-63eb252e63f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T07:48:51.000Z" + }, + "end": { + "$date": "2021-01-09T08:08:01.000Z" + }, + "events": [ + { + "uuid": "ee262648-b825-4e70-ab32-a4a70f94a6ef", + "start": { + "$date": "2021-01-09T07:48:51.000Z" + }, + "end": { + "$date": "2021-01-09T08:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fbcfaa6-2f39-4063-b546-c0944e968dc6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T08:17:49.000Z" + }, + "end": { + "$date": "2021-01-09T08:54:07.000Z" + }, + "events": [ + { + "uuid": "4fdf91bd-3d2d-4344-b321-e9a48dbecfef", + "start": { + "$date": "2021-01-09T08:17:49.000Z" + }, + "end": { + "$date": "2021-01-09T08:54:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "4af4ec79-3e3f-4180-b1e0-9e6ffc70a237", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T08:44:39.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:41.000Z" + }, + "events": [ + { + "uuid": "04441d1c-40d0-4df8-bf7a-c22c258c7bd5", + "start": { + "$date": "2021-01-09T08:44:39.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2cf5aef4-e793-4c97-a9a7-49d498b9348c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T08:59:25.000Z" + }, + "end": { + "$date": "2021-01-09T09:01:19.000Z" + }, + "events": [ + { + "uuid": "eb78cd20-1a40-40ab-ab77-c5c31446d2a9", + "start": { + "$date": "2021-01-09T08:59:25.000Z" + }, + "end": { + "$date": "2021-01-09T09:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "26d66bc0-a8e2-4beb-9f92-e3054e24e034", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-09T09:08:32.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:49.000Z" + }, + "events": [ + { + "uuid": "f5df8790-9254-4a2a-b470-72fc7e3beabc", + "start": { + "$date": "2021-01-09T09:08:32.000Z" + }, + "end": { + "$date": "2021-01-09T10:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "341e2bea-62b2-400f-a038-6654c67d750d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T10:07:26.000Z" + }, + "end": { + "$date": "2021-01-09T12:49:34.000Z" + }, + "events": [ + { + "uuid": "2125cf14-f808-43a1-9086-95af229873bd", + "start": { + "$date": "2021-01-09T10:07:26.000Z" + }, + "end": { + "$date": "2021-01-09T12:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e68ff3df-651c-4ae0-b93c-c46c69760869", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T16:20:22.000Z" + }, + "end": { + "$date": "2021-01-09T17:38:00.000Z" + }, + "events": [ + { + "uuid": "8123875d-2f40-4990-9ebb-c5c9a43d3e06", + "start": { + "$date": "2021-01-09T16:20:22.000Z" + }, + "end": { + "$date": "2021-01-09T17:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "5bbe470f-3e19-409d-bc3f-81a7c4e5e608", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T16:50:31.000Z" + }, + "end": { + "$date": "2021-01-09T17:50:12.000Z" + }, + "events": [ + { + "uuid": "166559a0-08c7-48fb-a125-34fbffeb093d", + "start": { + "$date": "2021-01-09T16:50:31.000Z" + }, + "end": { + "$date": "2021-01-09T17:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a4684a07-13cb-4099-a021-aabf56af6071", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T17:38:02.000Z" + }, + "end": { + "$date": "2021-01-09T18:16:03.000Z" + }, + "events": [ + { + "uuid": "79384df0-e0d0-4bd4-b362-7072d46e409c", + "start": { + "$date": "2021-01-09T17:38:02.000Z" + }, + "end": { + "$date": "2021-01-09T18:16:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "3aeb984e-4b74-4904-b97f-4af316c50140", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T17:50:28.000Z" + }, + "end": { + "$date": "2021-01-09T17:58:27.000Z" + }, + "events": [ + { + "uuid": "64b00711-2b0f-4551-ae46-2fafb5bab86b", + "start": { + "$date": "2021-01-09T17:50:28.000Z" + }, + "end": { + "$date": "2021-01-09T17:58:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f7b5740-f663-4146-a52d-f27a203fd5ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T18:08:44.000Z" + }, + "end": { + "$date": "2021-01-09T18:21:58.000Z" + }, + "events": [ + { + "uuid": "26f62ddc-4275-456b-899c-4c6286bda6bb", + "start": { + "$date": "2021-01-09T18:08:44.000Z" + }, + "end": { + "$date": "2021-01-09T18:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "d81c6b83-7b7b-479b-813a-a2ad39cbc83a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T18:17:57.000Z" + }, + "end": { + "$date": "2021-01-09T18:39:38.000Z" + }, + "events": [ + { + "uuid": "263db14c-67d3-43e9-a6f3-ebb075de97a9", + "start": { + "$date": "2021-01-09T18:17:57.000Z" + }, + "end": { + "$date": "2021-01-09T18:39:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aa54e028-cfa1-4cb4-955a-77ec0e0a99b0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-09T19:29:08.000Z" + }, + "end": { + "$date": "2021-01-09T19:29:24.000Z" + }, + "events": [ + { + "uuid": "99416828-eebb-4061-90cc-358161f50b7d", + "start": { + "$date": "2021-01-09T19:29:08.000Z" + }, + "end": { + "$date": "2021-01-09T19:29:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15b0c3ce-cb25-45ec-8a7b-589807675c76", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T18:42:08.000Z" + }, + "end": { + "$date": "2021-01-09T19:34:58.000Z" + }, + "events": [ + { + "uuid": "1fa81eaa-011f-43a3-97c2-804d41130bd1", + "start": { + "$date": "2021-01-09T18:42:08.000Z" + }, + "end": { + "$date": "2021-01-09T19:11:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5bd1e815-3ab7-4fef-8682-557b53810189", + "start": { + "$date": "2021-01-09T19:11:08.000Z" + }, + "end": { + "$date": "2021-01-09T19:32:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e29c75b-0799-4416-9209-a76aa878a025", + "start": { + "$date": "2021-01-09T19:32:08.000Z" + }, + "end": { + "$date": "2021-01-09T19:34:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f3bfc347-da93-41a2-84af-39839191572c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-09T19:07:20.000Z" + }, + "end": { + "$date": "2021-01-09T19:24:44.000Z" + }, + "events": [ + { + "uuid": "8644a119-6161-490d-8419-07368e50678b", + "start": { + "$date": "2021-01-09T19:07:20.000Z" + }, + "end": { + "$date": "2021-01-09T19:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "06954e43-42b9-4ed4-816e-7e25d59ac6b3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-09T23:49:37.000Z" + }, + "end": { + "$date": "2021-01-10T00:03:12.000Z" + }, + "events": [ + { + "uuid": "f9ab1362-f862-44db-b2b4-93fd1d225732", + "start": { + "$date": "2021-01-09T23:49:37.000Z" + }, + "end": { + "$date": "2021-01-10T01:45:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4df4eb38-ebe1-4773-9955-41c8cc3e0e25", + "start": { + "$date": "2021-01-10T01:45:37.000Z" + }, + "end": { + "$date": "2021-01-10T01:50:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0b0d942d-b2ac-413f-90e7-7d88981aea6a", + "start": { + "$date": "2021-01-10T01:50:37.000Z" + }, + "end": { + "$date": "2021-01-10T02:00:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b577d6b8-ab25-43da-8267-3b99ed2f960b", + "start": { + "$date": "2021-01-10T02:00:37.000Z" + }, + "end": { + "$date": "2021-01-10T02:06:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e21aff56-62f5-436d-8e8a-b8287105beae", + "start": { + "$date": "2021-01-10T02:06:37.000Z" + }, + "end": { + "$date": "2021-01-10T02:08:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85b462b7-292f-42f0-adb9-f105a11dd5df", + "start": { + "$date": "2021-01-10T02:08:37.000Z" + }, + "end": { + "$date": "2021-01-10T02:09:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b1a34698-baf9-45f4-9008-fad71c971dd9", + "start": { + "$date": "2021-01-10T02:09:37.000Z" + }, + "end": { + "$date": "2021-01-10T02:22:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1d8dbfe-0e2c-4657-bfb2-458c6c425a3a", + "start": { + "$date": "2021-01-10T02:22:37.000Z" + }, + "end": { + "$date": "2021-01-10T02:38:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "26d5ddd5-006e-464c-8ef5-cf8a48c84c89", + "start": { + "$date": "2021-01-10T02:38:37.000Z" + }, + "end": { + "$date": "2021-01-10T00:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "5bb1c89c-8a8b-4218-9860-03c41eee7eea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T19:36:39.000Z" + }, + "end": { + "$date": "2021-01-09T20:51:00.000Z" + }, + "events": [ + { + "uuid": "5bd0aad0-4bf8-4a3a-91e4-8d624341940c", + "start": { + "$date": "2021-01-09T19:36:39.000Z" + }, + "end": { + "$date": "2021-01-09T20:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0efda044-8824-437b-9be0-6547272700b8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-09T20:08:51.000Z" + }, + "end": { + "$date": "2021-01-09T20:14:37.000Z" + }, + "events": [ + { + "uuid": "1c08a959-2c69-4c88-b5c4-af3d5f86b9f7", + "start": { + "$date": "2021-01-09T20:08:51.000Z" + }, + "end": { + "$date": "2021-01-09T20:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ef356297-4d7a-451b-a392-0639affe9501", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T00:13:42.000Z" + }, + "end": { + "$date": "2021-01-10T00:38:41.000Z" + }, + "events": [ + { + "uuid": "27e20286-35ed-4a8f-9ec6-585f80124426", + "start": { + "$date": "2021-01-10T00:13:42.000Z" + }, + "end": { + "$date": "2021-01-10T03:12:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7aa6d9f2-b9be-414f-8eb3-6f17ce1b6d91", + "start": { + "$date": "2021-01-10T03:12:42.000Z" + }, + "end": { + "$date": "2021-01-10T03:13:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c6096f30-63f9-4d2c-8348-31eaa4a6b874", + "start": { + "$date": "2021-01-10T03:13:42.000Z" + }, + "end": { + "$date": "2021-01-10T00:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "488bcf1a-9f65-4011-9642-922cadaeb5c4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T20:20:13.000Z" + }, + "end": { + "$date": "2021-01-09T22:29:17.000Z" + }, + "events": [ + { + "uuid": "595e2ab4-0417-4fd2-8eaa-5e26a6bce192", + "start": { + "$date": "2021-01-09T20:20:13.000Z" + }, + "end": { + "$date": "2021-01-09T22:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "837e06aa-3012-4c06-b55f-73bbc31ae4d9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-09T20:30:36.000Z" + }, + "end": { + "$date": "2021-01-09T23:57:56.000Z" + }, + "events": [ + { + "uuid": "2c6a32e4-72da-44af-920d-bcf64e32d9b2", + "start": { + "$date": "2021-01-09T20:30:36.000Z" + }, + "end": { + "$date": "2021-01-09T23:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "943b3bf6-4d3a-4881-9516-57e898e607d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T21:00:16.000Z" + }, + "end": { + "$date": "2021-01-09T21:19:55.000Z" + }, + "events": [ + { + "uuid": "3da7e4b7-5b45-4362-b043-29c814792ea6", + "start": { + "$date": "2021-01-09T21:00:16.000Z" + }, + "end": { + "$date": "2021-01-09T21:19:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f9579cc-f802-43b0-9c4f-11b3e904cc40", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T21:40:48.000Z" + }, + "end": { + "$date": "2021-01-09T21:53:22.000Z" + }, + "events": [ + { + "uuid": "84688d68-c7f0-4379-9329-0247ff403861", + "start": { + "$date": "2021-01-09T21:40:48.000Z" + }, + "end": { + "$date": "2021-01-09T21:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6cd9e508-550a-4843-b245-f549fc776900", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-09T21:41:11.000Z" + }, + "end": { + "$date": "2021-01-09T22:43:02.000Z" + }, + "events": [ + { + "uuid": "5d882c6f-94b5-4919-8057-4748026ac8c0", + "start": { + "$date": "2021-01-09T21:41:11.000Z" + }, + "end": { + "$date": "2021-01-09T22:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cba06f06-8161-4d03-a132-185a998fc4dd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-09T21:52:56.000Z" + }, + "end": { + "$date": "2021-01-09T22:25:27.000Z" + }, + "events": [ + { + "uuid": "08ed738b-57dc-48cd-ba84-0b1a9c9c5723", + "start": { + "$date": "2021-01-09T21:52:56.000Z" + }, + "end": { + "$date": "2021-01-09T22:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9290028d-d4f9-4a09-96da-e10499b56771", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-09T21:54:05.000Z" + }, + "end": { + "$date": "2021-01-10T00:51:42.000Z" + }, + "events": [ + { + "uuid": "5e1a3a0a-1502-44e1-b518-2fd9a275a7fb", + "start": { + "$date": "2021-01-09T21:54:05.000Z" + }, + "end": { + "$date": "2021-01-09T22:42:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cad54daa-dc2d-437b-9368-1a0d382ea8a2", + "start": { + "$date": "2021-01-09T22:42:05.000Z" + }, + "end": { + "$date": "2021-01-09T22:54:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41199958-d1a8-44d1-9070-b3bf976102de", + "start": { + "$date": "2021-01-09T22:54:05.000Z" + }, + "end": { + "$date": "2021-01-09T23:27:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d1a7d5b6-09f4-4605-890c-ee62d6d839d5", + "start": { + "$date": "2021-01-09T23:27:05.000Z" + }, + "end": { + "$date": "2021-01-09T23:34:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a9dbb42d-fa9d-471f-9058-36e3e2ec7c48", + "start": { + "$date": "2021-01-09T23:34:05.000Z" + }, + "end": { + "$date": "2021-01-09T23:59:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e0e33cf-4247-4522-86d8-b27ffa13db58", + "start": { + "$date": "2021-01-09T23:59:05.000Z" + }, + "end": { + "$date": "2021-01-10T00:03:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "95c5746a-fde5-4bba-b6cf-c761227d2e88", + "start": { + "$date": "2021-01-10T00:03:05.000Z" + }, + "end": { + "$date": "2021-01-10T00:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "05a8c168-abaa-4791-bd7c-4fb5f2cb65d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T22:10:20.000Z" + }, + "end": { + "$date": "2021-01-09T23:09:44.000Z" + }, + "events": [ + { + "uuid": "bcaeef18-5ac2-49ad-954a-b811910bc504", + "start": { + "$date": "2021-01-09T22:10:20.000Z" + }, + "end": { + "$date": "2021-01-09T23:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3f96b22a-ea89-409d-a8ab-cd63f33d322e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-09T22:29:51.000Z" + }, + "end": { + "$date": "2021-01-10T01:36:11.000Z" + }, + "events": [ + { + "uuid": "7ddb9ca8-af97-40f9-8368-98cbe3899b88", + "start": { + "$date": "2021-01-09T22:29:51.000Z" + }, + "end": { + "$date": "2021-01-10T01:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cebe160e-908b-4af5-9cc3-7026625fdefe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-09T22:43:37.000Z" + }, + "end": { + "$date": "2021-01-09T23:14:35.000Z" + }, + "events": [ + { + "uuid": "4690b0bf-0787-40eb-9ec7-8f6f89e3f319", + "start": { + "$date": "2021-01-09T22:43:37.000Z" + }, + "end": { + "$date": "2021-01-09T23:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b67a50c3-4347-4c0e-bcd0-f061d4e22004", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-09T23:10:15.000Z" + }, + "end": { + "$date": "2021-01-09T23:23:50.000Z" + }, + "events": [ + { + "uuid": "dc737d7a-2bb3-44ef-b014-2ebb81312dae", + "start": { + "$date": "2021-01-09T23:10:15.000Z" + }, + "end": { + "$date": "2021-01-09T23:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8022f6cf-b70e-4b0c-a4da-450d488bf0f5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-09T23:40:48.000Z" + }, + "end": { + "$date": "2021-01-09T23:50:23.000Z" + }, + "events": [ + { + "uuid": "f5719a0f-fb53-467f-9647-7228e7875120", + "start": { + "$date": "2021-01-09T23:40:48.000Z" + }, + "end": { + "$date": "2021-01-09T23:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e10afd8d-1a40-40a4-ba53-f4d14ee9e32a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-09T23:59:16.000Z" + }, + "end": { + "$date": "2021-01-10T00:16:01.000Z" + }, + "events": [ + { + "uuid": "f8ed3c35-59b5-4b7a-b4b7-d0f41ad3f7fe", + "start": { + "$date": "2021-01-09T23:59:16.000Z" + }, + "end": { + "$date": "2021-01-10T00:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c43be85-0fad-4b88-b2e1-b82bdffd8c09", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T00:04:29.000Z" + }, + "end": { + "$date": "2021-01-10T00:39:46.000Z" + }, + "events": [ + { + "uuid": "38a1fac6-f63c-4b8c-832f-d84a3961a054", + "start": { + "$date": "2021-01-10T00:04:29.000Z" + }, + "end": { + "$date": "2021-01-10T00:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5e8fe97f-d073-4aeb-a7d4-545d8d9cd9b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-10T00:29:14.000Z" + }, + "end": { + "$date": "2021-01-10T00:39:39.000Z" + }, + "events": [ + { + "uuid": "cb294687-ef64-41d8-888a-8c56c4dad6a6", + "start": { + "$date": "2021-01-10T00:29:14.000Z" + }, + "end": { + "$date": "2021-01-10T00:39:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ccffdde4-09be-45da-b4c4-93e786868f32", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-10T00:30:26.000Z" + }, + "end": { + "$date": "2021-01-10T00:54:03.000Z" + }, + "events": [ + { + "uuid": "f401e2cc-b3d9-49db-ba83-c798313a00fd", + "start": { + "$date": "2021-01-10T00:30:26.000Z" + }, + "end": { + "$date": "2021-01-10T00:54:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "001aef1f-bbbc-4c25-8b08-f261bc156637", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T01:00:17.000Z" + }, + "end": { + "$date": "2021-01-10T01:14:49.000Z" + }, + "events": [ + { + "uuid": "fef7fc64-0346-4dae-9fab-30caf9d7af72", + "start": { + "$date": "2021-01-10T01:00:17.000Z" + }, + "end": { + "$date": "2021-01-10T01:14:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5526a971-df73-40c9-a628-a15cc9b9472e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-10T00:39:46.000Z" + }, + "end": { + "$date": "2021-01-10T01:37:48.000Z" + }, + "events": [ + { + "uuid": "d95a7261-d3ee-4403-8ec7-41a35d6eaf3c", + "start": { + "$date": "2021-01-10T00:39:46.000Z" + }, + "end": { + "$date": "2021-01-10T01:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "15046230-99b2-4189-bebc-9c4edcfc4b9f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T00:44:41.000Z" + }, + "end": { + "$date": "2021-01-10T01:36:54.000Z" + }, + "events": [ + { + "uuid": "679d5116-d651-4f09-855b-feafd5174d17", + "start": { + "$date": "2021-01-10T00:44:41.000Z" + }, + "end": { + "$date": "2021-01-10T01:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "465f42b5-ae9e-4ee5-ab0c-67875879ba96", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T00:52:11.000Z" + }, + "end": { + "$date": "2021-01-10T01:48:19.000Z" + }, + "events": [ + { + "uuid": "7420f91c-3a5f-4f76-8060-336cc6f66db6", + "start": { + "$date": "2021-01-10T00:52:11.000Z" + }, + "end": { + "$date": "2021-01-10T01:48:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d38598f1-a691-45b1-b418-870ed70ab7d9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-10T01:01:29.000Z" + }, + "end": { + "$date": "2021-01-10T01:07:44.000Z" + }, + "events": [ + { + "uuid": "dcc3c851-731c-437f-ae71-ec7d8f09304a", + "start": { + "$date": "2021-01-10T01:01:29.000Z" + }, + "end": { + "$date": "2021-01-10T01:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d6904be0-173a-494f-98b7-efcaf9fb9740", + "uuid": "5a4d72f1-22cc-4f3f-9164-5743f39eb13f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-10T01:07:49.000Z" + }, + "end": { + "$date": "2021-01-10T04:07:05.000Z" + }, + "events": [ + { + "uuid": "898a1a2b-0600-4331-96f1-d1282dfcf592", + "start": { + "$date": "2021-01-10T01:07:49.000Z" + }, + "end": { + "$date": "2021-01-10T04:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d6904be0-173a-494f-98b7-efcaf9fb9740", + "uuid": "506378c4-159a-46de-957f-dad572284808", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T01:15:07.000Z" + }, + "end": { + "$date": "2021-01-10T04:06:05.000Z" + }, + "events": [ + { + "uuid": "3b181310-bee3-4209-8592-590eb592f0dd", + "start": { + "$date": "2021-01-10T01:15:07.000Z" + }, + "end": { + "$date": "2021-01-10T04:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a3f4f6ad-d32f-4f92-a0bb-aa81975567ea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T01:50:39.000Z" + }, + "end": { + "$date": "2021-01-10T01:55:58.000Z" + }, + "events": [ + { + "uuid": "aa02dc23-9e6e-4438-b4f1-ab72a1c7b87b", + "start": { + "$date": "2021-01-10T01:50:39.000Z" + }, + "end": { + "$date": "2021-01-10T01:55:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "08d735f1-6d76-47cd-9395-03c5f0b9b27c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T01:51:29.000Z" + }, + "end": { + "$date": "2021-01-10T02:52:48.000Z" + }, + "events": [ + { + "uuid": "bc900fce-aa94-4d2f-b400-b2bef360b7ab", + "start": { + "$date": "2021-01-10T01:51:29.000Z" + }, + "end": { + "$date": "2021-01-10T02:31:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "651184cc-6d1b-4b2b-b62f-d2902e087d5a", + "start": { + "$date": "2021-01-10T02:31:29.000Z" + }, + "end": { + "$date": "2021-01-10T02:36:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d2c1de3-be33-4122-916a-ec8028a545db", + "start": { + "$date": "2021-01-10T02:36:29.000Z" + }, + "end": { + "$date": "2021-01-10T02:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cc67396f-f821-4270-9e5c-d079eed7462b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T01:56:25.000Z" + }, + "end": { + "$date": "2021-01-10T01:59:48.000Z" + }, + "events": [ + { + "uuid": "45ec26f7-7375-49f5-aaa4-a94f18a4873e", + "start": { + "$date": "2021-01-10T01:56:25.000Z" + }, + "end": { + "$date": "2021-01-10T01:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b64c9b4d-5343-4433-b17d-d569f6474ac0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T02:04:24.000Z" + }, + "end": { + "$date": "2021-01-10T02:27:54.000Z" + }, + "events": [ + { + "uuid": "a26e28b2-af65-4d5f-ab80-09e84d32168d", + "start": { + "$date": "2021-01-10T02:04:24.000Z" + }, + "end": { + "$date": "2021-01-10T02:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d515304-925e-418e-bb68-a3abfab12fa2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T02:04:20.000Z" + }, + "end": { + "$date": "2021-01-10T02:27:49.000Z" + }, + "events": [ + { + "uuid": "58ba5daf-1eab-4c2a-a4f0-d5c24c23489f", + "start": { + "$date": "2021-01-10T02:04:20.000Z" + }, + "end": { + "$date": "2021-01-10T02:27:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97130bf1-70db-41a8-b7c2-f2d07180e688", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T02:33:21.000Z" + }, + "end": { + "$date": "2021-01-10T03:18:58.000Z" + }, + "events": [ + { + "uuid": "71e0fff0-526d-4e15-8fa7-4cbb00bcef4c", + "start": { + "$date": "2021-01-10T02:33:21.000Z" + }, + "end": { + "$date": "2021-01-10T03:18:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b82c8c4-cd30-44ed-aca6-bb5bc9bcf4f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T02:34:00.000Z" + }, + "end": { + "$date": "2021-01-10T03:18:59.000Z" + }, + "events": [ + { + "uuid": "2d062cc0-c935-42c9-97fb-9ff9be06c434", + "start": { + "$date": "2021-01-10T02:34:00.000Z" + }, + "end": { + "$date": "2021-01-10T03:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "58bee151-dc91-4da7-8017-7165fff68707", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-10T02:33:39.000Z" + }, + "end": { + "$date": "2021-01-10T05:58:12.000Z" + }, + "events": [ + { + "uuid": "5032dfd4-1973-4d6a-83e1-4b96a4bd6d1b", + "start": { + "$date": "2021-01-10T02:33:39.000Z" + }, + "end": { + "$date": "2021-01-10T05:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4a2063d9-75d0-42d1-9335-a00a591d83a9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-10T02:47:14.000Z" + }, + "end": { + "$date": "2021-01-10T03:12:07.000Z" + }, + "events": [ + { + "uuid": "efc1bc56-750e-43a8-ae8d-7afd128a3d8c", + "start": { + "$date": "2021-01-10T02:47:14.000Z" + }, + "end": { + "$date": "2021-01-10T03:12:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4736f6ac-6526-44cd-b2e3-be0849d29046", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T02:50:57.000Z" + }, + "end": { + "$date": "2021-01-10T03:09:31.000Z" + }, + "events": [ + { + "uuid": "2018b806-2072-4507-a6d7-04ef2001763b", + "start": { + "$date": "2021-01-10T02:50:57.000Z" + }, + "end": { + "$date": "2021-01-10T03:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "38c6177d-48e9-4dea-a757-8622af7d41a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T02:52:52.000Z" + }, + "end": { + "$date": "2021-01-10T03:03:14.000Z" + }, + "events": [ + { + "uuid": "626b2878-9f36-4b9f-a4f5-c06316450adf", + "start": { + "$date": "2021-01-10T02:52:52.000Z" + }, + "end": { + "$date": "2021-01-10T03:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cb674f44-3de1-4da1-bd03-8d675abc5bdf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T03:11:48.000Z" + }, + "end": { + "$date": "2021-01-10T05:57:40.000Z" + }, + "events": [ + { + "uuid": "f4523080-a3fa-46a4-accf-3e51ab9a00b0", + "start": { + "$date": "2021-01-10T03:11:48.000Z" + }, + "end": { + "$date": "2021-01-10T05:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "de5f7d1d-ad06-4531-b8e4-72341bfdeae8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-10T03:12:27.000Z" + }, + "end": { + "$date": "2021-01-10T05:27:35.000Z" + }, + "events": [ + { + "uuid": "b5103c3a-f68a-4ac0-b7d9-028976fe2c63", + "start": { + "$date": "2021-01-10T03:12:27.000Z" + }, + "end": { + "$date": "2021-01-10T05:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cb750e1f-5465-4457-961a-6b45254da71b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T03:20:32.000Z" + }, + "end": { + "$date": "2021-01-10T04:59:49.000Z" + }, + "events": [ + { + "uuid": "e01ee306-2d42-4255-bafa-f7910643e664", + "start": { + "$date": "2021-01-10T03:20:32.000Z" + }, + "end": { + "$date": "2021-01-10T04:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e375ea75-8d40-4132-9576-590885632823", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-01-10T02:52:13.000Z" + }, + "end": { + "$date": "2021-01-10T03:57:05.000Z" + }, + "events": [ + { + "uuid": "c5c4e7e7-106d-4877-957f-cbb0f0d36da9", + "start": { + "$date": "2021-01-10T02:52:13.000Z" + }, + "end": { + "$date": "2021-01-10T03:57:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "14d9cf2b-6b3f-42d6-a488-fc123033b78a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T03:55:08.000Z" + }, + "end": { + "$date": "2021-01-10T03:57:33.000Z" + }, + "events": [ + { + "uuid": "979160bd-6a81-4330-b1cc-4697e2ce909b", + "start": { + "$date": "2021-01-10T03:55:08.000Z" + }, + "end": { + "$date": "2021-01-10T03:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5158f0c8-e834-4039-8b1a-3540aef1679d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-10T04:08:45.000Z" + }, + "end": { + "$date": "2021-01-10T04:28:34.000Z" + }, + "events": [ + { + "uuid": "47976188-476c-4bed-80a8-9d80a721d506", + "start": { + "$date": "2021-01-10T04:08:45.000Z" + }, + "end": { + "$date": "2021-01-10T04:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "88898744-d1df-49db-9c0c-2540da0a018b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T04:30:51.000Z" + }, + "end": { + "$date": "2021-01-10T08:30:41.000Z" + }, + "events": [ + { + "uuid": "b9fa1898-ecf4-4128-9f8c-2bd7b4aedfae", + "start": { + "$date": "2021-01-10T04:30:51.000Z" + }, + "end": { + "$date": "2021-01-10T08:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "895ad157-d6c3-4119-87e7-3c6720ffeeef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T05:25:44.000Z" + }, + "end": { + "$date": "2021-01-10T06:36:17.000Z" + }, + "events": [ + { + "uuid": "509e4df6-531f-4a99-9bcf-112bc7c02621", + "start": { + "$date": "2021-01-10T05:25:44.000Z" + }, + "end": { + "$date": "2021-01-10T06:36:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dd33e710-32e0-4b72-9802-8047ebe898f5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-10T06:44:32.000Z" + }, + "end": { + "$date": "2021-01-10T08:48:30.000Z" + }, + "events": [ + { + "uuid": "4d9f4587-6f04-4cc7-b83c-93f84f7c667b", + "start": { + "$date": "2021-01-10T06:44:32.000Z" + }, + "end": { + "$date": "2021-01-10T08:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c713f7ee-ef79-4b56-8a4c-38f128a4871d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-10T04:44:40.000Z" + }, + "end": { + "$date": "2021-01-10T05:15:11.000Z" + }, + "events": [ + { + "uuid": "e198d884-65b2-49ea-a957-1618bc700749", + "start": { + "$date": "2021-01-10T04:44:40.000Z" + }, + "end": { + "$date": "2021-01-10T05:15:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c9b7ff7b-13c6-4002-9fd9-53ef6e0926b0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-10T04:44:26.000Z" + }, + "end": { + "$date": "2021-01-10T06:17:03.000Z" + }, + "events": [ + { + "uuid": "ec1487bc-8a9f-4fcf-8fb2-90043df40a1c", + "start": { + "$date": "2021-01-10T04:44:26.000Z" + }, + "end": { + "$date": "2021-01-10T06:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34d3cf4c-f10f-40c6-ad8f-8ebb85b4d043", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T04:58:06.000Z" + }, + "end": { + "$date": "2021-01-10T05:17:35.000Z" + }, + "events": [ + { + "uuid": "2f287953-4619-457e-aa35-a7b75b1b51f5", + "start": { + "$date": "2021-01-10T04:58:06.000Z" + }, + "end": { + "$date": "2021-01-10T05:17:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e2676fb3-24fb-4277-885b-632fb341b754", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T05:00:34.000Z" + }, + "end": { + "$date": "2021-01-10T05:36:45.000Z" + }, + "events": [ + { + "uuid": "9ad2ae69-f2e2-4c03-b626-64f7258e0f41", + "start": { + "$date": "2021-01-10T05:00:34.000Z" + }, + "end": { + "$date": "2021-01-10T05:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "e5a2749d-c4b4-4029-82ab-672e1ec61178", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-10T05:02:10.000Z" + }, + "end": { + "$date": "2021-01-10T05:44:51.000Z" + }, + "events": [ + { + "uuid": "d14d458b-5d32-453a-b3c4-22b089636d3c", + "start": { + "$date": "2021-01-10T05:02:10.000Z" + }, + "end": { + "$date": "2021-01-10T05:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52763a38-8964-4aea-829c-4c1c9793045d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-10T05:22:05.000Z" + }, + "end": { + "$date": "2021-01-10T05:57:16.000Z" + }, + "events": [ + { + "uuid": "3c72a00c-7088-448e-a533-d7a8bb15463d", + "start": { + "$date": "2021-01-10T05:22:05.000Z" + }, + "end": { + "$date": "2021-01-10T05:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "830f7923-f666-452f-a6a5-c26d65c6d475", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T05:18:56.000Z" + }, + "end": { + "$date": "2021-01-10T06:00:06.000Z" + }, + "events": [ + { + "uuid": "f467b962-bd58-4ab5-92d1-8454324b1431", + "start": { + "$date": "2021-01-10T05:18:56.000Z" + }, + "end": { + "$date": "2021-01-10T06:00:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d5caf7fe-7feb-472e-be92-1dfa98bb5e5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T05:42:44.000Z" + }, + "end": { + "$date": "2021-01-10T06:16:18.000Z" + }, + "events": [ + { + "uuid": "d5489cca-b1ef-4617-9391-c92a8040728d", + "start": { + "$date": "2021-01-10T05:42:44.000Z" + }, + "end": { + "$date": "2021-01-10T06:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f565617d-9283-4556-a2b7-514625023e73", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-10T05:46:26.000Z" + }, + "end": { + "$date": "2021-01-10T07:29:25.000Z" + }, + "events": [ + { + "uuid": "8541c4bb-35a8-48e9-8c4c-f5ff412ac8d7", + "start": { + "$date": "2021-01-10T05:46:26.000Z" + }, + "end": { + "$date": "2021-01-10T07:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1028d875-5197-47a4-a047-608dc9a7ac15", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T05:58:11.000Z" + }, + "end": { + "$date": "2021-01-10T06:10:02.000Z" + }, + "events": [ + { + "uuid": "dfafb9f2-6e3c-4802-b5ca-dd9ba4af060a", + "start": { + "$date": "2021-01-10T05:58:11.000Z" + }, + "end": { + "$date": "2021-01-10T06:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5997425-db8b-473c-b5dd-269f225fbd82", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-10T06:02:46.000Z" + }, + "end": { + "$date": "2021-01-10T06:34:37.000Z" + }, + "events": [ + { + "uuid": "29f07383-883c-46f5-b221-2fbfee5eebc3", + "start": { + "$date": "2021-01-10T06:02:46.000Z" + }, + "end": { + "$date": "2021-01-10T06:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "72d3fc7f-f065-4b17-9fff-d3b38e4af264", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T06:17:21.000Z" + }, + "end": { + "$date": "2021-01-10T08:16:40.000Z" + }, + "events": [ + { + "uuid": "4a854e10-155b-4aee-b655-58a101f3dae9", + "start": { + "$date": "2021-01-10T06:17:21.000Z" + }, + "end": { + "$date": "2021-01-10T08:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd3c573a-d2a8-47c8-a1e1-689266cf0dcf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T06:49:59.000Z" + }, + "end": { + "$date": "2021-01-10T07:39:57.000Z" + }, + "events": [ + { + "uuid": "38fb0bd3-4487-4606-a8da-5b85959f2321", + "start": { + "$date": "2021-01-10T06:49:59.000Z" + }, + "end": { + "$date": "2021-01-10T07:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d94f796b-1879-4203-90db-48727431cc2d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-10T06:44:27.000Z" + }, + "end": { + "$date": "2021-01-10T08:55:30.000Z" + }, + "events": [ + { + "uuid": "a7c4ea13-f155-4e63-9011-cb1fea5696f8", + "start": { + "$date": "2021-01-10T06:44:27.000Z" + }, + "end": { + "$date": "2021-01-10T08:55:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bbe5173b-cc77-4495-ab6e-cbf0b6549273", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T06:44:54.000Z" + }, + "end": { + "$date": "2021-01-10T08:55:33.000Z" + }, + "events": [ + { + "uuid": "77224348-6b10-4316-bc71-8522b695937b", + "start": { + "$date": "2021-01-10T06:44:54.000Z" + }, + "end": { + "$date": "2021-01-10T08:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6c8f9a3-2786-4278-8526-01ebb89cc61e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-10T07:31:23.000Z" + }, + "end": { + "$date": "2021-01-10T07:39:48.000Z" + }, + "events": [ + { + "uuid": "76bc2492-554a-49b8-87a2-6b33c8fc6f9a", + "start": { + "$date": "2021-01-10T07:31:23.000Z" + }, + "end": { + "$date": "2021-01-10T07:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0cfa215a-3709-4ceb-adf2-3937df7d1e25", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-10T07:30:29.000Z" + }, + "end": { + "$date": "2021-01-10T08:55:48.000Z" + }, + "events": [ + { + "uuid": "9ea7680d-e09c-4036-9484-933dcbd08b7a", + "start": { + "$date": "2021-01-10T07:30:29.000Z" + }, + "end": { + "$date": "2021-01-10T08:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7726ef6b-89ef-4b99-9321-d68dd8e20403", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T07:46:36.000Z" + }, + "end": { + "$date": "2021-01-10T08:07:13.000Z" + }, + "events": [ + { + "uuid": "8e978756-2b3f-48f5-9178-83f345b16e30", + "start": { + "$date": "2021-01-10T07:46:36.000Z" + }, + "end": { + "$date": "2021-01-10T08:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cedbce8-cce2-411f-b5b6-6dc1516f3c9b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-10T07:52:03.000Z" + }, + "end": { + "$date": "2021-01-10T08:07:09.000Z" + }, + "events": [ + { + "uuid": "134e9824-a0e3-47a9-ae63-677c3188d7c5", + "start": { + "$date": "2021-01-10T07:52:03.000Z" + }, + "end": { + "$date": "2021-01-10T08:07:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "89e4f3af-045f-4824-b056-a21f6eec2fc8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-10T08:34:36.000Z" + }, + "end": { + "$date": "2021-01-10T09:58:44.000Z" + }, + "events": [ + { + "uuid": "d30559b5-f4e9-40f0-8803-29dbd4bdc1c8", + "start": { + "$date": "2021-01-10T08:34:36.000Z" + }, + "end": { + "$date": "2021-01-10T09:58:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4415755f-0baa-4ed9-af22-3fbe5e9abe89", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-10T09:04:06.000Z" + }, + "end": { + "$date": "2021-01-10T09:26:56.000Z" + }, + "events": [ + { + "uuid": "ae759a95-d7c5-460c-ab44-0854826eb8e6", + "start": { + "$date": "2021-01-10T09:04:06.000Z" + }, + "end": { + "$date": "2021-01-10T09:26:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "51a4e8a6-17d8-447d-add1-2af5b0f43bb6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T09:07:00.000Z" + }, + "end": { + "$date": "2021-01-10T09:26:45.000Z" + }, + "events": [ + { + "uuid": "c92b93d6-f880-4545-90a1-f16fa773e1ba", + "start": { + "$date": "2021-01-10T09:07:00.000Z" + }, + "end": { + "$date": "2021-01-10T09:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d388913d-275e-4902-adac-8479d9fecd13", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-10T09:07:39.000Z" + }, + "end": { + "$date": "2021-01-10T09:12:25.000Z" + }, + "events": [ + { + "uuid": "c3a2b5b1-4e96-4716-b386-1bdc1a909f9d", + "start": { + "$date": "2021-01-10T09:07:39.000Z" + }, + "end": { + "$date": "2021-01-10T09:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "56b79d12-889e-409f-94c2-ee748ddcc1ed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-10T10:00:50.000Z" + }, + "end": { + "$date": "2021-01-10T10:47:54.000Z" + }, + "events": [ + { + "uuid": "66c9103f-b414-4d65-9747-dbb498593695", + "start": { + "$date": "2021-01-10T10:00:50.000Z" + }, + "end": { + "$date": "2021-01-10T10:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8a1029e1-1136-4570-8381-d395b094c571", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T16:40:16.000Z" + }, + "end": { + "$date": "2021-01-10T16:42:33.000Z" + }, + "events": [ + { + "uuid": "2c92e838-cd6c-4007-99e4-1cd914897c33", + "start": { + "$date": "2021-01-10T16:40:16.000Z" + }, + "end": { + "$date": "2021-01-10T16:42:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3902e9c1-45e0-4cd4-93cf-c6a1620e4f56", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T16:42:42.000Z" + }, + "end": { + "$date": "2021-01-10T17:12:10.000Z" + }, + "events": [ + { + "uuid": "8b9aa929-ac24-4125-8e9c-a6f91b20b24f", + "start": { + "$date": "2021-01-10T16:42:42.000Z" + }, + "end": { + "$date": "2021-01-10T17:12:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "de6bf439-7ab0-472d-9837-085910e94670", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T17:14:19.000Z" + }, + "end": { + "$date": "2021-01-10T17:18:30.000Z" + }, + "events": [ + { + "uuid": "88eb92c1-04d3-4d3e-a88c-c47504bfbd4b", + "start": { + "$date": "2021-01-10T17:14:19.000Z" + }, + "end": { + "$date": "2021-01-10T17:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "34382d66-ba06-4913-885c-c236872f4518", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-10T17:26:20.000Z" + }, + "end": { + "$date": "2021-01-10T19:21:19.000Z" + }, + "events": [ + { + "uuid": "ba46a5d4-4bc3-4ee5-b006-99c80bfac02f", + "start": { + "$date": "2021-01-10T17:26:20.000Z" + }, + "end": { + "$date": "2021-01-10T19:21:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "576d13f3-acf5-4e03-89b8-ee97cd073835", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T17:39:22.000Z" + }, + "end": { + "$date": "2021-01-10T17:43:51.000Z" + }, + "events": [ + { + "uuid": "a28a3f49-cc55-4476-bb6b-7fdd11146e99", + "start": { + "$date": "2021-01-10T17:39:22.000Z" + }, + "end": { + "$date": "2021-01-10T17:43:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e3b3805-b4c5-444b-8861-fd4879bddf9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T17:51:52.000Z" + }, + "end": { + "$date": "2021-01-10T18:04:36.000Z" + }, + "events": [ + { + "uuid": "3311c539-e643-4555-a7d3-f4040ffd4fbd", + "start": { + "$date": "2021-01-10T17:51:52.000Z" + }, + "end": { + "$date": "2021-01-10T18:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c29fd08b-4157-4b0e-9b17-722b544282fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T18:11:42.000Z" + }, + "end": { + "$date": "2021-01-10T18:25:12.000Z" + }, + "events": [ + { + "uuid": "fae87fb6-fcfe-4b3f-ad51-9448830a143c", + "start": { + "$date": "2021-01-10T18:11:42.000Z" + }, + "end": { + "$date": "2021-01-10T18:25:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5774da2a-1c39-4c6b-84b3-f16e3b56fe29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T18:26:06.000Z" + }, + "end": { + "$date": "2021-01-10T18:28:23.000Z" + }, + "events": [ + { + "uuid": "7960e4e2-0ec5-4e40-b148-52024cf48bfd", + "start": { + "$date": "2021-01-10T18:26:06.000Z" + }, + "end": { + "$date": "2021-01-10T18:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "889e6f12-f34f-487f-b007-79d009124ff6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T18:28:42.000Z" + }, + "end": { + "$date": "2021-01-10T18:30:17.000Z" + }, + "events": [ + { + "uuid": "2925533b-042b-403d-b423-06c66285302f", + "start": { + "$date": "2021-01-10T18:28:42.000Z" + }, + "end": { + "$date": "2021-01-10T18:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "cede134c-b5b7-4959-9647-b26c6c1046ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T18:30:22.000Z" + }, + "end": { + "$date": "2021-01-10T18:48:37.000Z" + }, + "events": [ + { + "uuid": "1db3a0de-49e8-4f35-8b04-213c1f6084b2", + "start": { + "$date": "2021-01-10T18:30:22.000Z" + }, + "end": { + "$date": "2021-01-10T18:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "df69075f-9e35-4847-878d-4d5f592d1f61", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-10T19:02:41.000Z" + }, + "end": { + "$date": "2021-01-11T00:19:21.000Z" + }, + "events": [ + { + "uuid": "96cac3f3-ad51-498a-be64-f003a695f9e1", + "start": { + "$date": "2021-01-10T19:02:41.000Z" + }, + "end": { + "$date": "2021-01-10T19:38:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d948fc98-9bb1-4f8c-9f5c-cbfbf5ec1a86", + "start": { + "$date": "2021-01-10T19:38:41.000Z" + }, + "end": { + "$date": "2021-01-10T19:56:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3fdcc5f1-5a6d-485b-9497-fdc1d7c937eb", + "start": { + "$date": "2021-01-10T19:56:41.000Z" + }, + "end": { + "$date": "2021-01-10T20:14:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "be2edabd-adac-4914-9bac-b644e046de0b", + "start": { + "$date": "2021-01-10T20:14:41.000Z" + }, + "end": { + "$date": "2021-01-10T20:15:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "75415eb7-83de-44d5-b1b5-070c97212b83", + "start": { + "$date": "2021-01-10T20:15:41.000Z" + }, + "end": { + "$date": "2021-01-11T00:11:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "768b24b5-7ed2-4137-a38b-769d22ead880", + "start": { + "$date": "2021-01-11T00:11:41.000Z" + }, + "end": { + "$date": "2021-01-11T00:13:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69f706df-29f2-4ad2-8a6c-5aa7bde73e7a", + "start": { + "$date": "2021-01-11T00:13:41.000Z" + }, + "end": { + "$date": "2021-01-11T00:19:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "37966962-305f-487b-ad87-3adc67097c6d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T19:03:54.000Z" + }, + "end": { + "$date": "2021-01-10T19:26:14.000Z" + }, + "events": [ + { + "uuid": "840277b7-8349-46c2-91ee-fa8a65cc6f79", + "start": { + "$date": "2021-01-10T19:03:54.000Z" + }, + "end": { + "$date": "2021-01-10T19:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8c3514b-ab02-444f-b371-e66a204d4f53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T20:05:46.000Z" + }, + "end": { + "$date": "2021-01-10T20:05:46.000Z" + }, + "events": [ + { + "uuid": "2d279704-6c4c-4f45-910c-3d7ea4a1daa9", + "start": { + "$date": "2021-01-10T20:05:46.000Z" + }, + "end": { + "$date": "2021-01-10T20:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6babfc9-0530-4cb2-87f4-3f9b41e84042", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T19:31:14.000Z" + }, + "end": { + "$date": "2021-01-10T20:05:34.000Z" + }, + "events": [ + { + "uuid": "f292d5a4-0fc2-4f9a-ac02-7b7dfd59dea8", + "start": { + "$date": "2021-01-10T19:31:14.000Z" + }, + "end": { + "$date": "2021-01-10T20:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e0fd47d-84eb-4da8-8325-13e65575b38b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T19:38:58.000Z" + }, + "end": { + "$date": "2021-01-10T20:01:45.000Z" + }, + "events": [ + { + "uuid": "a78c0f98-271f-4cb9-8ba7-081bfd24d6f9", + "start": { + "$date": "2021-01-10T19:38:58.000Z" + }, + "end": { + "$date": "2021-01-10T20:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1fcb117-2cb9-438c-9c70-d76c2904398d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T20:17:52.000Z" + }, + "end": { + "$date": "2021-01-10T20:50:37.000Z" + }, + "events": [ + { + "uuid": "652e3acf-055c-42b8-bc2d-8d1e2ba7a1ac", + "start": { + "$date": "2021-01-10T20:17:52.000Z" + }, + "end": { + "$date": "2021-01-10T20:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "292e08a5-98a6-48cc-821d-f6e929be672a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T20:18:15.000Z" + }, + "end": { + "$date": "2021-01-10T20:50:35.000Z" + }, + "events": [ + { + "uuid": "ccd21549-e417-43fe-b10c-f42e7088977e", + "start": { + "$date": "2021-01-10T20:18:15.000Z" + }, + "end": { + "$date": "2021-01-10T20:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c634d32-9384-409b-a04e-46ea02a848c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T20:17:54.000Z" + }, + "end": { + "$date": "2021-01-10T20:50:35.000Z" + }, + "events": [ + { + "uuid": "6f052197-d956-4307-977d-ac1f55874ea0", + "start": { + "$date": "2021-01-10T20:17:54.000Z" + }, + "end": { + "$date": "2021-01-10T20:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "10ad4df7-d7ed-47fd-88b1-c99dd82573ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-10T20:38:05.000Z" + }, + "end": { + "$date": "2021-01-10T22:06:52.000Z" + }, + "events": [ + { + "uuid": "306db250-79bd-443c-89fc-2b849fe59272", + "start": { + "$date": "2021-01-10T20:38:05.000Z" + }, + "end": { + "$date": "2021-01-10T22:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "326ed87c-2490-4668-9641-efdfd23fb657", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-10T20:40:06.000Z" + }, + "end": { + "$date": "2021-01-10T21:39:17.000Z" + }, + "events": [ + { + "uuid": "6b9dc12c-76a4-4f97-a8d6-4eae998b79b9", + "start": { + "$date": "2021-01-10T20:40:06.000Z" + }, + "end": { + "$date": "2021-01-10T21:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "387d23a0-ee22-4d17-814b-689be28d4c51", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T21:02:14.000Z" + }, + "end": { + "$date": "2021-01-10T21:27:08.000Z" + }, + "events": [ + { + "uuid": "fc4a9093-7bc5-4803-9545-0f5905de1006", + "start": { + "$date": "2021-01-10T21:02:14.000Z" + }, + "end": { + "$date": "2021-01-10T21:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa980bd1-d19b-442e-9c24-a323f65a9504", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T21:03:06.000Z" + }, + "end": { + "$date": "2021-01-10T21:26:55.000Z" + }, + "events": [ + { + "uuid": "5a83e531-d757-4ff1-aa4f-4c08f430fc6c", + "start": { + "$date": "2021-01-10T21:03:06.000Z" + }, + "end": { + "$date": "2021-01-10T21:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dea48921-a231-4afb-99b5-46c76d1ea183", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T21:02:12.000Z" + }, + "end": { + "$date": "2021-01-10T21:26:58.000Z" + }, + "events": [ + { + "uuid": "8c23c180-f26c-4299-9a14-efa31c9cbfc9", + "start": { + "$date": "2021-01-10T21:02:12.000Z" + }, + "end": { + "$date": "2021-01-10T21:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bde7db8-3a95-498d-9bc0-dd689c10116c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T21:55:48.000Z" + }, + "end": { + "$date": "2021-01-10T22:22:36.000Z" + }, + "events": [ + { + "uuid": "6f08b138-9ffd-4a1c-a1b8-dcdb87d8c418", + "start": { + "$date": "2021-01-10T21:55:48.000Z" + }, + "end": { + "$date": "2021-01-10T22:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "90db3183-c62a-4aaa-9586-9d0ddb44c278", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-10T21:28:36.000Z" + }, + "end": { + "$date": "2021-01-10T22:57:09.000Z" + }, + "events": [ + { + "uuid": "77b7267d-7814-48b8-ad70-2b05358eb820", + "start": { + "$date": "2021-01-10T21:28:36.000Z" + }, + "end": { + "$date": "2021-01-10T22:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "675c3fea-44ce-4123-88e9-1189c282aef6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T21:35:03.000Z" + }, + "end": { + "$date": "2021-01-10T21:39:55.000Z" + }, + "events": [ + { + "uuid": "39234934-c6f2-4b4d-9ef1-6201e366b19d", + "start": { + "$date": "2021-01-10T21:35:03.000Z" + }, + "end": { + "$date": "2021-01-10T21:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2763da1-17b2-4442-8204-0995a3b056be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T21:35:03.000Z" + }, + "end": { + "$date": "2021-01-10T21:39:55.000Z" + }, + "events": [ + { + "uuid": "4ec510b1-d47e-464c-8931-99f0f7581c1c", + "start": { + "$date": "2021-01-10T21:35:03.000Z" + }, + "end": { + "$date": "2021-01-10T21:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "109c0187-ffb6-49fa-bf57-8bc0cc358d41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T21:56:43.000Z" + }, + "end": { + "$date": "2021-01-10T22:22:22.000Z" + }, + "events": [ + { + "uuid": "ef241807-bc68-4135-947c-0c011e5fff96", + "start": { + "$date": "2021-01-10T21:56:43.000Z" + }, + "end": { + "$date": "2021-01-10T22:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0de32c3f-3695-4431-b45b-92cfe838ea05", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T21:55:48.000Z" + }, + "end": { + "$date": "2021-01-10T22:22:31.000Z" + }, + "events": [ + { + "uuid": "f21c5713-87ad-4b95-98fb-e101717a5161", + "start": { + "$date": "2021-01-10T21:55:48.000Z" + }, + "end": { + "$date": "2021-01-10T22:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "b48ab00b-8c88-4d42-bc55-17fc8851bfda", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-10T22:02:40.000Z" + }, + "end": { + "$date": "2021-01-10T23:25:06.000Z" + }, + "events": [ + { + "uuid": "c9af561e-9d2d-44dd-a5cc-c8e70fd7d17e", + "start": { + "$date": "2021-01-10T22:02:40.000Z" + }, + "end": { + "$date": "2021-01-10T23:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4a9532e-7a08-490f-a83e-1333c34412ba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T22:32:55.000Z" + }, + "end": { + "$date": "2021-01-10T23:08:30.000Z" + }, + "events": [ + { + "uuid": "495a0830-bdc4-45c2-ad9c-c7ef10c6ba6c", + "start": { + "$date": "2021-01-10T22:32:55.000Z" + }, + "end": { + "$date": "2021-01-10T23:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f4c6c02-d84d-4e10-ae5f-7da5534981b7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T22:34:04.000Z" + }, + "end": { + "$date": "2021-01-10T23:08:23.000Z" + }, + "events": [ + { + "uuid": "6520da52-ce0e-4f9e-ac71-005526c7b749", + "start": { + "$date": "2021-01-10T22:34:04.000Z" + }, + "end": { + "$date": "2021-01-10T23:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3042c71-b5b9-4f9d-b27b-60dd9047b0e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T22:32:56.000Z" + }, + "end": { + "$date": "2021-01-10T23:08:29.000Z" + }, + "events": [ + { + "uuid": "7b87df91-f850-4fbb-b206-babaae66a4af", + "start": { + "$date": "2021-01-10T22:32:56.000Z" + }, + "end": { + "$date": "2021-01-10T23:08:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6c0d5b91-079f-4590-a255-c667cbd6036c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-10T23:05:17.000Z" + }, + "end": { + "$date": "2021-01-10T23:19:19.000Z" + }, + "events": [ + { + "uuid": "00f87ca6-f2e5-4b1c-a63b-110765e9615e", + "start": { + "$date": "2021-01-10T23:05:17.000Z" + }, + "end": { + "$date": "2021-01-10T23:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7eb2325-6ab4-49a4-9993-e6108d789962", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-10T23:15:51.000Z" + }, + "end": { + "$date": "2021-01-10T23:57:42.000Z" + }, + "events": [ + { + "uuid": "3347d1b5-9ffb-4cbd-b2c7-da02925ff46e", + "start": { + "$date": "2021-01-10T23:15:51.000Z" + }, + "end": { + "$date": "2021-01-10T23:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fc08e5c-89d5-4afa-922c-496cb4eb6b75", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-10T23:17:19.000Z" + }, + "end": { + "$date": "2021-01-10T23:57:39.000Z" + }, + "events": [ + { + "uuid": "03e40334-8165-4fcf-b751-2ab3b4436e6b", + "start": { + "$date": "2021-01-10T23:17:19.000Z" + }, + "end": { + "$date": "2021-01-10T23:57:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71b5cc01-8314-4320-b38e-4b25761bba19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-10T23:15:48.000Z" + }, + "end": { + "$date": "2021-01-10T23:57:48.000Z" + }, + "events": [ + { + "uuid": "a7ad9a7b-f6d9-47f9-805e-46950b0be2d5", + "start": { + "$date": "2021-01-10T23:15:48.000Z" + }, + "end": { + "$date": "2021-01-10T23:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e7723288-1ae8-4865-baee-68e586ba4488", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-10T23:47:59.000Z" + }, + "end": { + "$date": "2021-01-11T00:29:31.000Z" + }, + "events": [ + { + "uuid": "ded71fa4-66fe-44ba-ad9f-a99153169300", + "start": { + "$date": "2021-01-10T23:47:59.000Z" + }, + "end": { + "$date": "2021-01-11T00:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cf255f8-30b4-4dcf-8019-d17f6bd01514", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T00:05:39.000Z" + }, + "end": { + "$date": "2021-01-11T00:38:40.000Z" + }, + "events": [ + { + "uuid": "15c5a997-3dc0-4230-b8b8-9264bb72eb68", + "start": { + "$date": "2021-01-11T00:05:39.000Z" + }, + "end": { + "$date": "2021-01-11T00:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eec1851f-43cb-4675-b48c-b578cc4964c1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T00:05:15.000Z" + }, + "end": { + "$date": "2021-01-11T00:38:34.000Z" + }, + "events": [ + { + "uuid": "19068fc2-5103-4a0e-8d0b-f3faf03c9c5d", + "start": { + "$date": "2021-01-11T00:05:15.000Z" + }, + "end": { + "$date": "2021-01-11T00:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c3e98d8-f7a0-42cc-b700-cf60493780d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T00:38:37.000Z" + }, + "end": { + "$date": "2021-01-11T00:38:40.000Z" + }, + "events": [ + { + "uuid": "4436c363-790d-4611-8774-05e790acc503", + "start": { + "$date": "2021-01-11T00:38:37.000Z" + }, + "end": { + "$date": "2021-01-11T00:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "343b3117-5a08-4270-a165-bbd82d9c7101", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-11T00:08:01.000Z" + }, + "end": { + "$date": "2021-01-11T00:25:31.000Z" + }, + "events": [ + { + "uuid": "62f1b2e0-8bd0-4544-8b74-a18e5cacd8d8", + "start": { + "$date": "2021-01-11T00:08:01.000Z" + }, + "end": { + "$date": "2021-01-11T00:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee265a68-c1c0-488b-8f63-4971f2eefeaa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T01:16:20.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:52.000Z" + }, + "events": [ + { + "uuid": "37fe2bc2-6186-45af-abe5-a92b0a6bb3e7", + "start": { + "$date": "2021-01-11T01:16:20.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "fec22a76-a399-4c1c-9ce0-363f3582ed91", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T01:00:17.000Z" + }, + "end": { + "$date": "2021-01-11T01:10:25.000Z" + }, + "events": [ + { + "uuid": "f4985c59-688b-4ae9-8c28-c5a93581f74b", + "start": { + "$date": "2021-01-11T01:00:17.000Z" + }, + "end": { + "$date": "2021-01-11T01:10:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d5d442c-dbc9-4058-bc23-e9da6a4f9572", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T01:16:12.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:47.000Z" + }, + "events": [ + { + "uuid": "ebfe5efe-6d02-450d-9c14-a796993d4bb6", + "start": { + "$date": "2021-01-11T01:16:12.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c8d2717-07b2-4818-b316-4e0caadb8064", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T01:16:09.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:55.000Z" + }, + "events": [ + { + "uuid": "89792fe3-cbea-491a-84ab-bbd25afa169b", + "start": { + "$date": "2021-01-11T01:16:09.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b08ec57d-78b4-4584-915b-70fd86b008f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T01:15:08.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:48.000Z" + }, + "events": [ + { + "uuid": "3c4ccad5-e313-4b14-9fd3-3c0a07bbb0ec", + "start": { + "$date": "2021-01-11T01:15:08.000Z" + }, + "end": { + "$date": "2021-01-11T01:35:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01cfdce3-80f9-475b-8072-ae4e7dc92142", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T01:41:53.000Z" + }, + "end": { + "$date": "2021-01-11T01:56:43.000Z" + }, + "events": [ + { + "uuid": "a3d545f4-972e-4c76-8bd1-f1b58695ff5e", + "start": { + "$date": "2021-01-11T01:41:53.000Z" + }, + "end": { + "$date": "2021-01-11T01:56:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9cf2285-4e82-42cd-93c3-c8c4f39f3e00", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T01:40:39.000Z" + }, + "end": { + "$date": "2021-01-11T01:56:45.000Z" + }, + "events": [ + { + "uuid": "d061783a-c9a6-4ec5-b8ec-12a24278a522", + "start": { + "$date": "2021-01-11T01:40:39.000Z" + }, + "end": { + "$date": "2021-01-11T01:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72f79824-8ba8-4462-870c-d644d76cc7b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T01:41:28.000Z" + }, + "end": { + "$date": "2021-01-11T01:56:37.000Z" + }, + "events": [ + { + "uuid": "bcd1cbde-e98a-45d5-81d0-f119ec6adf89", + "start": { + "$date": "2021-01-11T01:41:28.000Z" + }, + "end": { + "$date": "2021-01-11T01:56:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6e5bc5ec-e605-479f-b2d9-e1d1c93bf0d8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T02:31:12.000Z" + }, + "end": { + "$date": "2021-01-11T03:48:56.000Z" + }, + "events": [ + { + "uuid": "5c1e9efe-d788-4f00-b3c1-1f385e05df17", + "start": { + "$date": "2021-01-11T02:31:12.000Z" + }, + "end": { + "$date": "2021-01-11T03:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2381ad19-73ee-48b1-b2d5-7b21e4e939b6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T01:43:30.000Z" + }, + "end": { + "$date": "2021-01-11T01:54:37.000Z" + }, + "events": [ + { + "uuid": "922792d0-bc28-4385-95fa-1c186260d263", + "start": { + "$date": "2021-01-11T01:43:30.000Z" + }, + "end": { + "$date": "2021-01-11T01:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c014f732-f5b0-4d99-8e2e-e4662ca59945", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T01:59:59.000Z" + }, + "end": { + "$date": "2021-01-11T02:10:03.000Z" + }, + "events": [ + { + "uuid": "ab92386b-83f8-43cc-9a1b-d48209ae4320", + "start": { + "$date": "2021-01-11T01:59:59.000Z" + }, + "end": { + "$date": "2021-01-11T02:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e3e519f-8d2e-4c67-aaab-856783a9b1e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T02:00:43.000Z" + }, + "end": { + "$date": "2021-01-11T02:09:57.000Z" + }, + "events": [ + { + "uuid": "5a143bc7-b2f0-4afd-943b-cd05bb37da7a", + "start": { + "$date": "2021-01-11T02:00:43.000Z" + }, + "end": { + "$date": "2021-01-11T02:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42488ba2-0489-4271-af78-915e5bb3c531", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T02:00:00.000Z" + }, + "end": { + "$date": "2021-01-11T02:10:00.000Z" + }, + "events": [ + { + "uuid": "3b06f93e-3b1e-4bcd-9ad8-d2722f41aa17", + "start": { + "$date": "2021-01-11T02:00:00.000Z" + }, + "end": { + "$date": "2021-01-11T02:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47dbec40-8943-4b0e-8623-a71251bd08d4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T01:59:59.000Z" + }, + "end": { + "$date": "2021-01-11T02:10:00.000Z" + }, + "events": [ + { + "uuid": "30f9eb4d-90fe-46c0-a370-cf1cc9047772", + "start": { + "$date": "2021-01-11T01:59:59.000Z" + }, + "end": { + "$date": "2021-01-11T02:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf092c76-5c1b-4fbf-894b-219ad4e74c26", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T02:12:49.000Z" + }, + "end": { + "$date": "2021-01-11T02:34:03.000Z" + }, + "events": [ + { + "uuid": "b9113841-4278-4228-b2b4-f61431871792", + "start": { + "$date": "2021-01-11T02:12:49.000Z" + }, + "end": { + "$date": "2021-01-11T02:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d907f16-c764-470d-96ba-63fc7cb5212e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T02:12:45.000Z" + }, + "end": { + "$date": "2021-01-11T02:34:01.000Z" + }, + "events": [ + { + "uuid": "fda9c512-ed87-4857-93bb-f39ce3fd08c9", + "start": { + "$date": "2021-01-11T02:12:45.000Z" + }, + "end": { + "$date": "2021-01-11T02:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce3da290-4a66-4c9e-aac6-d4c91cebdcaf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T02:15:03.000Z" + }, + "end": { + "$date": "2021-01-11T02:33:53.000Z" + }, + "events": [ + { + "uuid": "32fb1371-7298-4950-97ca-a3b2dc21029d", + "start": { + "$date": "2021-01-11T02:15:03.000Z" + }, + "end": { + "$date": "2021-01-11T02:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3b62322-52bc-4293-b556-8c1a086e5995", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T02:12:46.000Z" + }, + "end": { + "$date": "2021-01-11T02:34:03.000Z" + }, + "events": [ + { + "uuid": "3ab12509-7c39-454b-ba29-d9559fcb3b35", + "start": { + "$date": "2021-01-11T02:12:46.000Z" + }, + "end": { + "$date": "2021-01-11T02:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fe8efb21-7477-4f2c-a5aa-40cbdd649729", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-11T02:11:22.000Z" + }, + "end": { + "$date": "2021-01-11T03:10:59.000Z" + }, + "events": [ + { + "uuid": "ab9437a8-a9ee-4bcd-b9e1-85b8c43ff2d6", + "start": { + "$date": "2021-01-11T02:11:22.000Z" + }, + "end": { + "$date": "2021-01-11T03:10:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7ef5e378-8d44-407e-9f30-f844859d4c75", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T02:39:15.000Z" + }, + "end": { + "$date": "2021-01-11T03:09:38.000Z" + }, + "events": [ + { + "uuid": "a1122997-d54c-4d6c-b0e7-0c8139105be4", + "start": { + "$date": "2021-01-11T02:39:15.000Z" + }, + "end": { + "$date": "2021-01-11T03:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fffb5d1b-4221-4907-8c27-e6b5d33f70e6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T02:38:16.000Z" + }, + "end": { + "$date": "2021-01-11T02:58:08.000Z" + }, + "events": [ + { + "uuid": "bbd62870-ba97-4e90-9566-11beb3e88a82", + "start": { + "$date": "2021-01-11T02:38:16.000Z" + }, + "end": { + "$date": "2021-01-11T02:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb4a0497-e6e3-4ab2-9d78-16c4def53bb4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T02:38:53.000Z" + }, + "end": { + "$date": "2021-01-11T02:57:58.000Z" + }, + "events": [ + { + "uuid": "2c1a1161-d56e-4e19-aa74-15c23ebf1165", + "start": { + "$date": "2021-01-11T02:38:53.000Z" + }, + "end": { + "$date": "2021-01-11T02:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bfc8d55-cb13-4871-ac43-a5ef616719e2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T02:38:16.000Z" + }, + "end": { + "$date": "2021-01-11T02:58:02.000Z" + }, + "events": [ + { + "uuid": "a5b3cdf4-040a-4d78-b7f2-215b70a7d889", + "start": { + "$date": "2021-01-11T02:38:16.000Z" + }, + "end": { + "$date": "2021-01-11T02:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22ebc733-b111-475e-b5f2-446095345aa4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T02:38:17.000Z" + }, + "end": { + "$date": "2021-01-11T02:57:57.000Z" + }, + "events": [ + { + "uuid": "d2609cd3-06fb-42a2-948e-ce29ab6f8191", + "start": { + "$date": "2021-01-11T02:38:17.000Z" + }, + "end": { + "$date": "2021-01-11T02:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b887325e-a0d3-436e-b351-8731e249861e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T03:02:16.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:46.000Z" + }, + "events": [ + { + "uuid": "f4428a46-aaa9-48d9-bc15-6319e850087f", + "start": { + "$date": "2021-01-11T03:02:16.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e90d2cd3-b355-457d-a5fb-d20ce8d5c33d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T03:02:09.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:38.000Z" + }, + "events": [ + { + "uuid": "19296be0-a27b-4723-8eef-55b485131322", + "start": { + "$date": "2021-01-11T03:02:09.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cc971ad-29ae-4f03-b644-5739d902276f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T03:02:16.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:48.000Z" + }, + "events": [ + { + "uuid": "c31ba954-bbf3-4ef2-a03b-91b5e24b0bb5", + "start": { + "$date": "2021-01-11T03:02:16.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfa129b5-85ec-48ef-a9d3-923a93552368", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T03:02:13.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:38.000Z" + }, + "events": [ + { + "uuid": "c8da3893-e555-4c50-bf1c-9d24d15e6d09", + "start": { + "$date": "2021-01-11T03:02:13.000Z" + }, + "end": { + "$date": "2021-01-11T03:23:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3c09d30b-6007-4418-bba1-f59054b0044c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-11T03:03:46.000Z" + }, + "end": { + "$date": "2021-01-11T05:18:01.000Z" + }, + "events": [ + { + "uuid": "5c316a6c-50a4-412d-bb52-3fd8d07fff77", + "start": { + "$date": "2021-01-11T03:03:46.000Z" + }, + "end": { + "$date": "2021-01-11T05:18:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "826187f9-afb3-4ef8-8409-f0e305ae34b8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T03:21:59.000Z" + }, + "end": { + "$date": "2021-01-11T03:46:58.000Z" + }, + "events": [ + { + "uuid": "7e4d800e-c811-48e1-99d5-5e166c6a9920", + "start": { + "$date": "2021-01-11T03:21:59.000Z" + }, + "end": { + "$date": "2021-01-11T03:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "003021e8-e0da-4ae4-b409-b27e29909470", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-11T03:14:35.000Z" + }, + "end": { + "$date": "2021-01-11T03:44:15.000Z" + }, + "events": [ + { + "uuid": "fffec996-7892-4ee1-a13b-aae1c6c3176e", + "start": { + "$date": "2021-01-11T03:14:35.000Z" + }, + "end": { + "$date": "2021-01-11T03:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87e9fa52-60d2-4b3e-b2b7-7590fae1148c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T03:26:47.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:07.000Z" + }, + "events": [ + { + "uuid": "8dc1310d-893d-4b1a-b658-ed56def99971", + "start": { + "$date": "2021-01-11T03:26:47.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebd61400-55e0-4368-894c-cca27a9c6223", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T03:26:47.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:08.000Z" + }, + "events": [ + { + "uuid": "70af7ff3-3300-42ff-9d78-0ee013cd6853", + "start": { + "$date": "2021-01-11T03:26:47.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "213b5e8d-6db7-4a78-87b2-f0ea0441a1b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T03:26:54.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:04.000Z" + }, + "events": [ + { + "uuid": "f152b68f-9285-42f6-8f95-7cc914f8fef1", + "start": { + "$date": "2021-01-11T03:26:54.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1327fed-1edc-4364-ade5-52280df37334", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T03:26:49.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:04.000Z" + }, + "events": [ + { + "uuid": "fc287a1e-b864-4084-9d05-62374b268fc0", + "start": { + "$date": "2021-01-11T03:26:49.000Z" + }, + "end": { + "$date": "2021-01-11T03:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0957ed4f-5166-4e5a-a7c3-bb14f9c48232", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T03:54:29.000Z" + }, + "end": { + "$date": "2021-01-11T04:15:24.000Z" + }, + "events": [ + { + "uuid": "fef47215-b235-46b1-9abe-91cb3789ad78", + "start": { + "$date": "2021-01-11T03:54:29.000Z" + }, + "end": { + "$date": "2021-01-11T04:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "93b966b6-d0cd-4d8c-860b-ef4f3fd96a95", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T03:49:15.000Z" + }, + "end": { + "$date": "2021-01-11T03:53:46.000Z" + }, + "events": [ + { + "uuid": "bbad7ba5-d9e5-4197-bd4a-609fe2b24ebd", + "start": { + "$date": "2021-01-11T03:49:15.000Z" + }, + "end": { + "$date": "2021-01-11T03:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c00420a4-6766-45b6-8a41-edac9df2ac85", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T03:54:28.000Z" + }, + "end": { + "$date": "2021-01-11T04:15:19.000Z" + }, + "events": [ + { + "uuid": "50e93aed-1aa5-4fb6-a690-193a9d33949d", + "start": { + "$date": "2021-01-11T03:54:28.000Z" + }, + "end": { + "$date": "2021-01-11T04:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e09bfa9e-7f80-4056-877e-a8a166084fa4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T03:56:13.000Z" + }, + "end": { + "$date": "2021-01-11T04:15:14.000Z" + }, + "events": [ + { + "uuid": "b1364dce-1464-42dc-89a4-8e75b6ab5ad7", + "start": { + "$date": "2021-01-11T03:56:13.000Z" + }, + "end": { + "$date": "2021-01-11T04:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b3ea27b7-02dc-4cc3-bfef-b02249b5b05f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T04:03:43.000Z" + }, + "end": { + "$date": "2021-01-11T04:10:10.000Z" + }, + "events": [ + { + "uuid": "7031ad57-47c0-4461-ae24-c9ecc8eb1a32", + "start": { + "$date": "2021-01-11T04:03:43.000Z" + }, + "end": { + "$date": "2021-01-11T04:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "565124f0-f363-4d1f-92b3-24845e1f43ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T04:11:19.000Z" + }, + "end": { + "$date": "2021-01-11T04:12:55.000Z" + }, + "events": [ + { + "uuid": "34f0f15a-b917-4184-9f86-1057cac92d9d", + "start": { + "$date": "2021-01-11T04:11:19.000Z" + }, + "end": { + "$date": "2021-01-11T04:12:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66798a47-35a4-43e5-8b90-d48d9942d5ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T04:29:01.000Z" + }, + "end": { + "$date": "2021-01-11T04:44:00.000Z" + }, + "events": [ + { + "uuid": "c55900f3-fd2c-48d0-8044-a8ee4bcf0c31", + "start": { + "$date": "2021-01-11T04:29:01.000Z" + }, + "end": { + "$date": "2021-01-11T04:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75afeb5e-98f7-4829-959a-0c9c122bbe07", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T04:15:57.000Z" + }, + "end": { + "$date": "2021-01-11T04:18:29.000Z" + }, + "events": [ + { + "uuid": "cde771f9-4435-4028-bdc9-e1a7b81bf44b", + "start": { + "$date": "2021-01-11T04:15:57.000Z" + }, + "end": { + "$date": "2021-01-11T04:18:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6b29b03-05c5-4b14-ab47-93a21442a9df", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T04:15:58.000Z" + }, + "end": { + "$date": "2021-01-11T04:18:29.000Z" + }, + "events": [ + { + "uuid": "d802449d-a34e-4a58-b132-d0cf9ffc030d", + "start": { + "$date": "2021-01-11T04:15:58.000Z" + }, + "end": { + "$date": "2021-01-11T04:18:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6cfa7da5-efd0-4835-ae6d-6c5a442c05c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T04:53:44.000Z" + }, + "end": { + "$date": "2021-01-11T04:53:55.000Z" + }, + "events": [ + { + "uuid": "04657a83-1433-483d-abba-f37f61f021a2", + "start": { + "$date": "2021-01-11T04:53:44.000Z" + }, + "end": { + "$date": "2021-01-11T04:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "30200ba2-8e13-474b-a598-be14b68a180e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-11T04:16:47.000Z" + }, + "end": { + "$date": "2021-01-11T04:18:38.000Z" + }, + "events": [ + { + "uuid": "7518d0f2-4d64-4925-a3ca-037d2b265643", + "start": { + "$date": "2021-01-11T04:16:47.000Z" + }, + "end": { + "$date": "2021-01-11T04:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ef43b3ae-4464-4725-be2c-b31479bf2798", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-11T04:18:47.000Z" + }, + "end": { + "$date": "2021-01-11T05:22:34.000Z" + }, + "events": [ + { + "uuid": "a4e09682-9f35-4ff7-bd3c-7436f64971ae", + "start": { + "$date": "2021-01-11T04:18:47.000Z" + }, + "end": { + "$date": "2021-01-11T05:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "16a08907-c3b5-4f12-9253-6a606f4990fd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T04:22:40.000Z" + }, + "end": { + "$date": "2021-01-11T06:14:59.000Z" + }, + "events": [ + { + "uuid": "df47ce6b-d3c5-4c68-b329-86dc0b76acac", + "start": { + "$date": "2021-01-11T04:22:40.000Z" + }, + "end": { + "$date": "2021-01-11T06:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ce6017a-1859-42c9-b0a4-42287ee1be1e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T04:28:09.000Z" + }, + "end": { + "$date": "2021-01-11T04:44:06.000Z" + }, + "events": [ + { + "uuid": "0b1f8fbe-739f-4302-9d8c-f6be41a724ea", + "start": { + "$date": "2021-01-11T04:28:09.000Z" + }, + "end": { + "$date": "2021-01-11T04:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71db4118-1f01-49b0-8f76-a9da76d93653", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T04:28:19.000Z" + }, + "end": { + "$date": "2021-01-11T04:44:00.000Z" + }, + "events": [ + { + "uuid": "6e310436-2bcf-4e8a-bcd5-5630ee13ff68", + "start": { + "$date": "2021-01-11T04:28:19.000Z" + }, + "end": { + "$date": "2021-01-11T04:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf59ec2e-16ee-4c11-90c8-3505eefa4762", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T04:48:41.000Z" + }, + "end": { + "$date": "2021-01-11T04:59:51.000Z" + }, + "events": [ + { + "uuid": "fdeabc57-f32e-4778-9351-6adfcf284a59", + "start": { + "$date": "2021-01-11T04:48:41.000Z" + }, + "end": { + "$date": "2021-01-11T04:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d19ef0d6-3970-442a-b301-4267fc436a99", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-11T04:48:35.000Z" + }, + "end": { + "$date": "2021-01-11T04:59:51.000Z" + }, + "events": [ + { + "uuid": "601e70af-e387-40a1-881f-1c15efab7951", + "start": { + "$date": "2021-01-11T04:48:35.000Z" + }, + "end": { + "$date": "2021-01-11T04:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4745ffca-1179-4902-8e18-abff625a1d66", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T04:48:40.000Z" + }, + "end": { + "$date": "2021-01-11T04:59:46.000Z" + }, + "events": [ + { + "uuid": "71f89f20-4e8e-4445-a67b-01cd367552ce", + "start": { + "$date": "2021-01-11T04:48:40.000Z" + }, + "end": { + "$date": "2021-01-11T04:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "543eae1e-6952-45b8-826a-0db715ca1763", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-11T04:46:20.000Z" + }, + "end": { + "$date": "2021-01-11T04:55:21.000Z" + }, + "events": [ + { + "uuid": "2dcd29ed-a78f-4ae9-834a-8717c772339b", + "start": { + "$date": "2021-01-11T04:46:20.000Z" + }, + "end": { + "$date": "2021-01-11T04:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0602a612-859d-4b82-93f7-918e51962aaa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-11T04:56:51.000Z" + }, + "end": { + "$date": "2021-01-11T06:00:33.000Z" + }, + "events": [ + { + "uuid": "2da1859c-b046-4635-9703-2c943bd823d8", + "start": { + "$date": "2021-01-11T04:56:51.000Z" + }, + "end": { + "$date": "2021-01-11T06:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cb8394e5-7566-4ab3-b6e2-505c07b149f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T04:57:29.000Z" + }, + "end": { + "$date": "2021-01-11T08:20:59.000Z" + }, + "events": [ + { + "uuid": "4ac22cf7-e19a-4972-a083-5f8a4074be91", + "start": { + "$date": "2021-01-11T04:57:29.000Z" + }, + "end": { + "$date": "2021-01-11T08:20:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37e6f3b4-64b8-416c-aff6-eb8f8f7112c6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T05:18:39.000Z" + }, + "end": { + "$date": "2021-01-11T05:55:26.000Z" + }, + "events": [ + { + "uuid": "b1322d06-c3e8-4cd4-91be-66718667b462", + "start": { + "$date": "2021-01-11T05:18:39.000Z" + }, + "end": { + "$date": "2021-01-11T05:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca74b1a0-1967-4a69-93c6-9be240090aca", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-11T05:21:27.000Z" + }, + "end": { + "$date": "2021-01-11T05:55:26.000Z" + }, + "events": [ + { + "uuid": "810839e8-ece1-4c84-aec5-b55200d4eb95", + "start": { + "$date": "2021-01-11T05:21:27.000Z" + }, + "end": { + "$date": "2021-01-11T05:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a36c8914-ef7f-48bd-b41c-0bbc0284588d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T05:18:43.000Z" + }, + "end": { + "$date": "2021-01-11T05:55:26.000Z" + }, + "events": [ + { + "uuid": "e578861a-3072-47fc-8243-6737871a6db6", + "start": { + "$date": "2021-01-11T05:18:43.000Z" + }, + "end": { + "$date": "2021-01-11T05:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "766927cc-9e0a-4e11-95ee-cbd82037de95", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-11T05:18:25.000Z" + }, + "end": { + "$date": "2021-01-11T05:25:02.000Z" + }, + "events": [ + { + "uuid": "a38f825b-ee1b-40cd-9c68-014b31699419", + "start": { + "$date": "2021-01-11T05:18:25.000Z" + }, + "end": { + "$date": "2021-01-11T05:25:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e414e3af-3b00-46da-b221-815941a6ed45", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-11T05:22:44.000Z" + }, + "end": { + "$date": "2021-01-11T05:40:24.000Z" + }, + "events": [ + { + "uuid": "eb0aa425-e235-4dfa-b924-31796835bd38", + "start": { + "$date": "2021-01-11T05:22:44.000Z" + }, + "end": { + "$date": "2021-01-11T05:40:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ec618a8f-3aff-4ac3-abe6-b78731443c42", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-11T05:30:16.000Z" + }, + "end": { + "$date": "2021-01-11T05:40:25.000Z" + }, + "events": [ + { + "uuid": "46f6cd36-b2df-46dc-9f39-19b3e3e899ae", + "start": { + "$date": "2021-01-11T05:30:16.000Z" + }, + "end": { + "$date": "2021-01-11T05:40:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0cd1d7c6-faad-4252-a1e9-cafd8f3b6bc2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-11T05:30:57.000Z" + }, + "end": { + "$date": "2021-01-11T05:50:28.000Z" + }, + "events": [ + { + "uuid": "f341047b-f558-41e7-80d0-20246c1c5179", + "start": { + "$date": "2021-01-11T05:30:57.000Z" + }, + "end": { + "$date": "2021-01-11T05:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "86c221c0-a10c-4145-b6bc-12859aa6f762", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-11T05:54:14.000Z" + }, + "end": { + "$date": "2021-01-11T06:15:30.000Z" + }, + "events": [ + { + "uuid": "f0b3222b-2d62-4d0a-a86d-438050c3bf44", + "start": { + "$date": "2021-01-11T05:54:14.000Z" + }, + "end": { + "$date": "2021-01-11T06:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "527387fc-eef7-4267-99db-3fad9886a439", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T05:57:36.000Z" + }, + "end": { + "$date": "2021-01-11T06:25:27.000Z" + }, + "events": [ + { + "uuid": "41e49f54-9571-4659-bcbe-7d86b53f6ef0", + "start": { + "$date": "2021-01-11T05:57:36.000Z" + }, + "end": { + "$date": "2021-01-11T06:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b233c36c-8484-4a08-80c3-3f54e2e0147c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T06:02:40.000Z" + }, + "end": { + "$date": "2021-01-11T07:08:15.000Z" + }, + "events": [ + { + "uuid": "c6b462d5-3750-4ece-bad4-19e548b0011c", + "start": { + "$date": "2021-01-11T06:02:40.000Z" + }, + "end": { + "$date": "2021-01-11T07:08:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5a7c30a5-9f34-4020-8571-fcaf4c1f2036", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-11T06:07:39.000Z" + }, + "end": { + "$date": "2021-01-11T07:46:18.000Z" + }, + "events": [ + { + "uuid": "25c84ab1-f274-4862-aab5-89dffb57a1ac", + "start": { + "$date": "2021-01-11T06:07:39.000Z" + }, + "end": { + "$date": "2021-01-11T07:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e0e75dc3-8a9f-4ae5-b3ce-2b155b1adb7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T06:11:24.000Z" + }, + "end": { + "$date": "2021-01-11T07:15:44.000Z" + }, + "events": [ + { + "uuid": "4848ab6e-0450-4f11-b663-57eebb937998", + "start": { + "$date": "2021-01-11T06:11:24.000Z" + }, + "end": { + "$date": "2021-01-11T07:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4fbe1d33-48b9-4de2-8d21-918639b03676", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T17:30:05.000Z" + }, + "end": { + "$date": "2021-01-11T19:24:19.000Z" + }, + "events": [ + { + "uuid": "67150261-466d-4dc1-85cb-66c8230d19de", + "start": { + "$date": "2021-01-11T17:30:05.000Z" + }, + "end": { + "$date": "2021-01-11T19:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ca3e53b1-b61c-4a24-81a4-ca6c04da8a43", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T17:40:11.000Z" + }, + "end": { + "$date": "2021-01-11T18:39:27.000Z" + }, + "events": [ + { + "uuid": "0dda5cf9-bb70-4216-9ae3-9277b2aa4894", + "start": { + "$date": "2021-01-11T17:40:11.000Z" + }, + "end": { + "$date": "2021-01-11T18:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9b33e46f-1710-47c2-9140-f47fe755cde0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T19:45:57.000Z" + }, + "end": { + "$date": "2021-01-11T20:14:34.000Z" + }, + "events": [ + { + "uuid": "fda865f2-3794-4c87-9a84-173baad4cc85", + "start": { + "$date": "2021-01-11T19:45:57.000Z" + }, + "end": { + "$date": "2021-01-11T20:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "44143479-be62-4715-afb7-de6a7bd58e8d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-11T20:13:10.000Z" + }, + "end": { + "$date": "2021-01-11T20:44:58.000Z" + }, + "events": [ + { + "uuid": "6a0165ca-ea50-4fb3-98e5-22eaa8138bcf", + "start": { + "$date": "2021-01-11T20:13:10.000Z" + }, + "end": { + "$date": "2021-01-11T20:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8eac3013-639c-4411-a278-1dbbbfb46586", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T20:17:44.000Z" + }, + "end": { + "$date": "2021-01-11T23:06:12.000Z" + }, + "events": [ + { + "uuid": "58ff448b-382a-4d3b-b150-15e9e7ef863e", + "start": { + "$date": "2021-01-11T20:17:44.000Z" + }, + "end": { + "$date": "2021-01-11T23:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "06526267-c78c-44cb-999c-468d7f93996c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T20:21:10.000Z" + }, + "end": { + "$date": "2021-01-11T20:54:38.000Z" + }, + "events": [ + { + "uuid": "f588060c-76e7-4690-97a2-d73947a85920", + "start": { + "$date": "2021-01-11T20:21:10.000Z" + }, + "end": { + "$date": "2021-01-11T20:54:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "97fe3d25-922b-4ac5-9fd9-15434160d7a8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-11T20:36:47.000Z" + }, + "end": { + "$date": "2021-01-11T21:01:40.000Z" + }, + "events": [ + { + "uuid": "79564c14-e446-4ef4-8116-cc8eb66bf549", + "start": { + "$date": "2021-01-11T20:36:47.000Z" + }, + "end": { + "$date": "2021-01-11T21:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "43a2e69d-b564-4521-902e-2c50f6eff2a7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T20:59:24.000Z" + }, + "end": { + "$date": "2021-01-11T21:16:44.000Z" + }, + "events": [ + { + "uuid": "fe2354cd-2d84-495a-8ec3-c11144ca9d8b", + "start": { + "$date": "2021-01-11T20:59:24.000Z" + }, + "end": { + "$date": "2021-01-11T21:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f090935b-e43e-4bff-a8b9-56f451152261", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T21:12:37.000Z" + }, + "end": { + "$date": "2021-01-11T21:50:07.000Z" + }, + "events": [ + { + "uuid": "ba45b0dc-bdbc-41d6-9623-bbfb01fd1c2f", + "start": { + "$date": "2021-01-11T21:12:37.000Z" + }, + "end": { + "$date": "2021-01-11T21:50:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b560d337-10b2-40a4-b811-8a8d785a2f17", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T21:30:11.000Z" + }, + "end": { + "$date": "2021-01-11T22:01:50.000Z" + }, + "events": [ + { + "uuid": "2fa633b0-2e96-424c-a63d-f2d3d962b542", + "start": { + "$date": "2021-01-11T21:30:11.000Z" + }, + "end": { + "$date": "2021-01-11T22:01:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3c7844f2-2216-4218-9eef-7a468583ae4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T21:52:08.000Z" + }, + "end": { + "$date": "2021-01-11T22:08:24.000Z" + }, + "events": [ + { + "uuid": "585818ae-f1d0-4b86-8d66-97466e1e6323", + "start": { + "$date": "2021-01-11T21:52:08.000Z" + }, + "end": { + "$date": "2021-01-11T22:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a5a9a3f6-9b0f-4d55-8b7f-7f37b0999c50", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T22:41:31.000Z" + }, + "end": { + "$date": "2021-01-11T23:00:01.000Z" + }, + "events": [ + { + "uuid": "5c405b9a-0147-4298-bbe9-95178225e7f0", + "start": { + "$date": "2021-01-11T22:41:31.000Z" + }, + "end": { + "$date": "2021-01-11T23:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "9d286aa2-2c78-455d-b504-497e6767785a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T22:43:07.000Z" + }, + "end": { + "$date": "2021-01-11T23:02:44.000Z" + }, + "events": [ + { + "uuid": "eda9e630-1c9c-4aba-bf73-4f9689058e2d", + "start": { + "$date": "2021-01-11T22:43:07.000Z" + }, + "end": { + "$date": "2021-01-11T23:02:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f17c38b9-0563-4f74-b711-bd48dcea5bab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T23:06:26.000Z" + }, + "end": { + "$date": "2021-01-11T23:17:22.000Z" + }, + "events": [ + { + "uuid": "cbec77eb-8bcf-434c-8c4b-e80628100fbb", + "start": { + "$date": "2021-01-11T23:06:26.000Z" + }, + "end": { + "$date": "2021-01-11T23:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2a23e50-76f3-46d5-bfb6-880296c46551", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-11T23:11:59.000Z" + }, + "end": { + "$date": "2021-01-11T23:13:00.000Z" + }, + "events": [ + { + "uuid": "2819babe-f3db-41f8-85be-2918dcdb5cdb", + "start": { + "$date": "2021-01-11T23:11:59.000Z" + }, + "end": { + "$date": "2021-01-11T23:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "88b8b356-2f8a-4866-912d-2d7942d9b309", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-11T23:15:46.000Z" + }, + "end": { + "$date": "2021-01-12T00:54:58.000Z" + }, + "events": [ + { + "uuid": "961599c4-cb02-4d92-b6b0-2e9959aa16d3", + "start": { + "$date": "2021-01-11T23:15:46.000Z" + }, + "end": { + "$date": "2021-01-12T00:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "25798032-6866-4401-bab1-276d746f59f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T23:18:02.000Z" + }, + "end": { + "$date": "2021-01-11T23:42:23.000Z" + }, + "events": [ + { + "uuid": "8c306036-b089-4c53-b925-76ecbd5d969b", + "start": { + "$date": "2021-01-11T23:18:02.000Z" + }, + "end": { + "$date": "2021-01-11T23:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1382f3d9-19cb-44c5-a6a3-463c08c8293e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T23:20:04.000Z" + }, + "end": { + "$date": "2021-01-11T23:53:01.000Z" + }, + "events": [ + { + "uuid": "f4487f71-d915-4639-9bb3-d19aea817b00", + "start": { + "$date": "2021-01-11T23:20:04.000Z" + }, + "end": { + "$date": "2021-01-11T23:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5db41178-d56b-486e-a29f-c6f3c66cdf9e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T23:26:07.000Z" + }, + "end": { + "$date": "2021-01-11T23:34:08.000Z" + }, + "events": [ + { + "uuid": "e58b33a1-d9c4-47cb-b138-783e24ff608e", + "start": { + "$date": "2021-01-11T23:26:07.000Z" + }, + "end": { + "$date": "2021-01-11T23:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4916b0e-3ec6-467f-b7d9-603ab7ae5c8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-11T23:53:57.000Z" + }, + "end": { + "$date": "2021-01-12T00:22:41.000Z" + }, + "events": [ + { + "uuid": "2595acc8-37fa-448a-8e84-9ba640aa6c00", + "start": { + "$date": "2021-01-11T23:53:57.000Z" + }, + "end": { + "$date": "2021-01-12T00:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01957a7c-8dda-470b-823d-7c63114fa52f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T23:41:27.000Z" + }, + "end": { + "$date": "2021-01-11T23:44:05.000Z" + }, + "events": [ + { + "uuid": "dd26db39-ec30-407e-88a8-3f56bada9737", + "start": { + "$date": "2021-01-11T23:41:27.000Z" + }, + "end": { + "$date": "2021-01-11T23:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f6e93b0-2654-4ed3-a1b1-7725bdc5be33", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T23:41:26.000Z" + }, + "end": { + "$date": "2021-01-11T23:44:05.000Z" + }, + "events": [ + { + "uuid": "ed60178e-a462-4cd4-8c4a-84b76930d46b", + "start": { + "$date": "2021-01-11T23:41:26.000Z" + }, + "end": { + "$date": "2021-01-11T23:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "04703568-77b7-4112-b99f-8d750da4b471", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-11T23:42:39.000Z" + }, + "end": { + "$date": "2021-01-12T01:48:04.000Z" + }, + "events": [ + { + "uuid": "9c433e5c-eff7-4e47-a0a7-41e9a628c35c", + "start": { + "$date": "2021-01-11T23:42:39.000Z" + }, + "end": { + "$date": "2021-01-12T01:48:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9bf171cb-f555-45d9-abab-c1a054658634", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-11T23:43:11.000Z" + }, + "end": { + "$date": "2021-01-12T00:34:18.000Z" + }, + "events": [ + { + "uuid": "cd8abb7a-d8a2-4487-b02f-e6518ff58950", + "start": { + "$date": "2021-01-11T23:43:11.000Z" + }, + "end": { + "$date": "2021-01-12T00:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c3ced37-ddef-470c-aae8-9a52258b79cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-11T23:52:37.000Z" + }, + "end": { + "$date": "2021-01-12T00:22:55.000Z" + }, + "events": [ + { + "uuid": "8f80de15-83e3-4a7c-a5f7-ae5819786942", + "start": { + "$date": "2021-01-11T23:52:37.000Z" + }, + "end": { + "$date": "2021-01-12T00:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b976893-08ea-4ada-8c1b-e2f57eec42ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-11T23:52:35.000Z" + }, + "end": { + "$date": "2021-01-12T00:22:52.000Z" + }, + "events": [ + { + "uuid": "49414730-1e1a-4fb1-8ea5-f00331b985fd", + "start": { + "$date": "2021-01-11T23:52:35.000Z" + }, + "end": { + "$date": "2021-01-12T00:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "87f9fc23-e190-4384-943e-dc92fa6dcd9a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-11T23:59:01.000Z" + }, + "end": { + "$date": "2021-01-12T00:32:30.000Z" + }, + "events": [ + { + "uuid": "f37ccb22-1e78-478f-ad15-de02f92fe611", + "start": { + "$date": "2021-01-11T23:59:01.000Z" + }, + "end": { + "$date": "2021-01-12T00:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "df3a0f20-4b62-4593-b46c-74cf6112b5f4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-12T00:20:06.000Z" + }, + "end": { + "$date": "2021-01-12T00:34:19.000Z" + }, + "events": [ + { + "uuid": "75377760-2d09-4188-8ed6-6b01ec41322d", + "start": { + "$date": "2021-01-12T00:20:06.000Z" + }, + "end": { + "$date": "2021-01-12T00:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b20b28ad-f235-42fe-a919-01a6cfc404bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-12T00:37:52.000Z" + }, + "end": { + "$date": "2021-01-12T01:06:36.000Z" + }, + "events": [ + { + "uuid": "a634f874-d047-4770-8ac1-0479a56a2d48", + "start": { + "$date": "2021-01-12T00:37:52.000Z" + }, + "end": { + "$date": "2021-01-12T01:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2be34cbf-7939-42f8-81a7-a09bdda2b40b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T00:37:28.000Z" + }, + "end": { + "$date": "2021-01-12T01:06:34.000Z" + }, + "events": [ + { + "uuid": "511b63fc-9d83-4cd9-b984-03f5a3ba4c41", + "start": { + "$date": "2021-01-12T00:37:28.000Z" + }, + "end": { + "$date": "2021-01-12T01:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42f92454-710e-4d2c-a659-8e03ecadc373", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T00:38:58.000Z" + }, + "end": { + "$date": "2021-01-12T01:06:47.000Z" + }, + "events": [ + { + "uuid": "3a4c6795-26e5-4f6b-b300-c2e0b0c27b1a", + "start": { + "$date": "2021-01-12T00:38:58.000Z" + }, + "end": { + "$date": "2021-01-12T01:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ee8b4c53-56e1-4ab0-916d-7209510b3651", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-12T00:39:55.000Z" + }, + "end": { + "$date": "2021-01-12T00:47:07.000Z" + }, + "events": [ + { + "uuid": "c779f8af-ab07-4d10-b0a7-6acc4b8bcd4a", + "start": { + "$date": "2021-01-12T00:39:55.000Z" + }, + "end": { + "$date": "2021-01-12T00:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c256b1dc-9bfa-4137-b138-6b2863b24a0f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-12T01:27:54.000Z" + }, + "end": { + "$date": "2021-01-12T01:38:00.000Z" + }, + "events": [ + { + "uuid": "39dd9116-aceb-4f83-938e-6d3637c1435e", + "start": { + "$date": "2021-01-12T01:27:54.000Z" + }, + "end": { + "$date": "2021-01-12T01:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", + "uuid": "3c5c9f49-7657-492c-ad09-9f51c44557c0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-12T02:00:41.000Z" + }, + "end": { + "$date": "2021-01-12T02:21:03.000Z" + }, + "events": [ + { + "uuid": "131915e4-8f1b-4b6e-9650-d887e6cb4d70", + "start": { + "$date": "2021-01-12T02:00:41.000Z" + }, + "end": { + "$date": "2021-01-12T02:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c266c79e-f205-4f3a-adbd-0cbd5ff57f68", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-12T02:13:28.000Z" + }, + "end": { + "$date": "2021-01-12T04:15:49.000Z" + }, + "events": [ + { + "uuid": "ff006b5c-167a-4436-845c-cc19b59240da", + "start": { + "$date": "2021-01-12T02:13:28.000Z" + }, + "end": { + "$date": "2021-01-12T04:15:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "78a07c06-58e1-4cfd-b007-770431a2d2c5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-12T02:45:26.000Z" + }, + "end": { + "$date": "2021-01-12T04:33:28.000Z" + }, + "events": [ + { + "uuid": "5127f98f-1e17-4988-b42b-dd95a9baf1f3", + "start": { + "$date": "2021-01-12T02:45:26.000Z" + }, + "end": { + "$date": "2021-01-12T04:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a4a562e4-3f06-467a-8c77-38060019ad1d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-12T02:52:21.000Z" + }, + "end": { + "$date": "2021-01-12T06:24:24.000Z" + }, + "events": [ + { + "uuid": "0f672fab-5ec3-45db-ad6c-171523b09eca", + "start": { + "$date": "2021-01-12T02:52:21.000Z" + }, + "end": { + "$date": "2021-01-12T06:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "356d143d-4df8-4c63-9164-d69a96bb220d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T03:13:15.000Z" + }, + "end": { + "$date": "2021-01-12T03:49:57.000Z" + }, + "events": [ + { + "uuid": "a4cff412-9473-475f-9406-ef469041809f", + "start": { + "$date": "2021-01-12T03:13:15.000Z" + }, + "end": { + "$date": "2021-01-12T03:49:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f8e6db4-01e3-45cb-8876-efbfd0d1f70f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-12T03:13:14.000Z" + }, + "end": { + "$date": "2021-01-12T03:49:46.000Z" + }, + "events": [ + { + "uuid": "6cb48202-06db-4167-8cf2-9867e0d30a03", + "start": { + "$date": "2021-01-12T03:13:14.000Z" + }, + "end": { + "$date": "2021-01-12T03:49:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31c9c92c-c400-4681-b512-81e5dde95bc1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T03:24:15.000Z" + }, + "end": { + "$date": "2021-01-12T03:41:15.000Z" + }, + "events": [ + { + "uuid": "8b0a8ce1-b962-4427-8960-ecf081baf159", + "start": { + "$date": "2021-01-12T03:24:15.000Z" + }, + "end": { + "$date": "2021-01-12T03:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6c083231-7936-48e2-bb4f-d3020028f93b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-12T03:24:32.000Z" + }, + "end": { + "$date": "2021-01-12T04:21:18.000Z" + }, + "events": [ + { + "uuid": "4b95809b-1e2c-4b2f-b6d7-efb3017a3201", + "start": { + "$date": "2021-01-12T03:24:32.000Z" + }, + "end": { + "$date": "2021-01-12T04:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d31a80be-5efa-4485-96e4-8811add92e00", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-12T03:39:17.000Z" + }, + "end": { + "$date": "2021-01-12T03:50:43.000Z" + }, + "events": [ + { + "uuid": "00d18566-245b-41a9-8f7c-2be886da0c22", + "start": { + "$date": "2021-01-12T03:39:17.000Z" + }, + "end": { + "$date": "2021-01-12T03:50:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b2b2313-7389-4ba2-8898-2331e4723fce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T04:01:07.000Z" + }, + "end": { + "$date": "2021-01-12T04:31:01.000Z" + }, + "events": [ + { + "uuid": "a45144b7-39cf-4cca-bdd1-f0b4f61a6fea", + "start": { + "$date": "2021-01-12T04:01:07.000Z" + }, + "end": { + "$date": "2021-01-12T04:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67093b12-a897-4a2d-9760-21a5c4576ad3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T03:55:33.000Z" + }, + "end": { + "$date": "2021-01-12T04:11:15.000Z" + }, + "events": [ + { + "uuid": "59957e71-5185-4593-8e8b-8aa7b5a02294", + "start": { + "$date": "2021-01-12T03:55:33.000Z" + }, + "end": { + "$date": "2021-01-12T04:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27c212a7-1df0-4031-9f9d-050879082c61", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-12T03:55:33.000Z" + }, + "end": { + "$date": "2021-01-12T04:11:09.000Z" + }, + "events": [ + { + "uuid": "8408f496-ed51-4e1b-a38a-ab37d6f6c8ef", + "start": { + "$date": "2021-01-12T03:55:33.000Z" + }, + "end": { + "$date": "2021-01-12T04:11:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d0cfaac-ed4f-4307-9bc6-093ff6638c51", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-12T03:57:25.000Z" + }, + "end": { + "$date": "2021-01-12T04:11:15.000Z" + }, + "events": [ + { + "uuid": "935b2de1-ef8f-45fc-ab41-a3ca1f62e17c", + "start": { + "$date": "2021-01-12T03:57:25.000Z" + }, + "end": { + "$date": "2021-01-12T04:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fce9605-555c-4cee-9c37-f29a7e4b6bab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-12T04:01:27.000Z" + }, + "end": { + "$date": "2021-01-12T04:30:51.000Z" + }, + "events": [ + { + "uuid": "21820d5d-bdcd-4c37-a333-651b8244a29d", + "start": { + "$date": "2021-01-12T04:01:27.000Z" + }, + "end": { + "$date": "2021-01-12T04:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d228a851-3710-4376-a82f-bbcd0f11dd2e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T04:17:05.000Z" + }, + "end": { + "$date": "2021-01-12T04:37:26.000Z" + }, + "events": [ + { + "uuid": "b6acce1e-33d9-43b9-8925-e96e8622058b", + "start": { + "$date": "2021-01-12T04:17:05.000Z" + }, + "end": { + "$date": "2021-01-12T04:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d22026e3-7a67-4891-899f-f8d776b56612", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-12T04:12:00.000Z" + }, + "end": { + "$date": "2021-01-12T06:41:47.000Z" + }, + "events": [ + { + "uuid": "aa00aed9-5766-43a8-9f0e-eb34ff4cdb0a", + "start": { + "$date": "2021-01-12T04:12:00.000Z" + }, + "end": { + "$date": "2021-01-12T06:41:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3eb56598-972c-412f-9083-d0e4af5255c5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-12T04:16:54.000Z" + }, + "end": { + "$date": "2021-01-12T04:37:16.000Z" + }, + "events": [ + { + "uuid": "2f4d6df4-c97f-40fa-b00a-f12b3640e668", + "start": { + "$date": "2021-01-12T04:16:54.000Z" + }, + "end": { + "$date": "2021-01-12T04:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "395e9034-438c-435d-8ac3-119124d9407f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-12T04:17:31.000Z" + }, + "end": { + "$date": "2021-01-12T04:37:14.000Z" + }, + "events": [ + { + "uuid": "14eb00f2-afd6-42bd-a6d3-b7cb4e9ddf06", + "start": { + "$date": "2021-01-12T04:17:31.000Z" + }, + "end": { + "$date": "2021-01-12T04:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "599347fd-48fb-41f8-881a-2473b1bf3e6a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-12T04:16:51.000Z" + }, + "end": { + "$date": "2021-01-12T04:34:05.000Z" + }, + "events": [ + { + "uuid": "e3f701b6-0a01-4dee-9c9b-1735b13c3858", + "start": { + "$date": "2021-01-12T04:16:51.000Z" + }, + "end": { + "$date": "2021-01-12T04:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "08ab082e-2967-42ef-be3e-4ca26c5e6265", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-12T04:29:14.000Z" + }, + "end": { + "$date": "2021-01-12T05:07:18.000Z" + }, + "events": [ + { + "uuid": "f5a9d3c6-b342-482a-af31-795b814a7d1d", + "start": { + "$date": "2021-01-12T04:29:14.000Z" + }, + "end": { + "$date": "2021-01-12T05:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f7a7a77-baf2-4de3-93f1-6195eb32299a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T04:31:41.000Z" + }, + "end": { + "$date": "2021-01-12T04:33:25.000Z" + }, + "events": [ + { + "uuid": "096e3a36-f55d-4a18-b5c8-13b14b379278", + "start": { + "$date": "2021-01-12T04:31:41.000Z" + }, + "end": { + "$date": "2021-01-12T04:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "06a228a6-c885-4ded-af4d-baaa6883ad7f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-12T04:34:02.000Z" + }, + "end": { + "$date": "2021-01-12T04:42:41.000Z" + }, + "events": [ + { + "uuid": "100fe667-0660-4f77-b6b0-fe7611c115c1", + "start": { + "$date": "2021-01-12T04:34:02.000Z" + }, + "end": { + "$date": "2021-01-12T04:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2549c319-959f-455a-9548-e659cd423eb5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T04:38:44.000Z" + }, + "end": { + "$date": "2021-01-12T05:19:23.000Z" + }, + "events": [ + { + "uuid": "10cccc6d-9ab0-40c2-914a-3786cfe5e26c", + "start": { + "$date": "2021-01-12T04:38:44.000Z" + }, + "end": { + "$date": "2021-01-12T05:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4fae015b-4a47-433d-b454-466eebcd8e62", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-12T04:34:36.000Z" + }, + "end": { + "$date": "2021-01-12T05:18:23.000Z" + }, + "events": [ + { + "uuid": "8e68e1ca-c28f-43df-9ffa-ce13a966c238", + "start": { + "$date": "2021-01-12T04:34:36.000Z" + }, + "end": { + "$date": "2021-01-12T05:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "450002b8-d93b-46a6-b3f8-6cabdd4917a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T04:41:08.000Z" + }, + "end": { + "$date": "2021-01-12T05:00:43.000Z" + }, + "events": [ + { + "uuid": "9f5117cf-83b8-4ed6-9003-66444672772c", + "start": { + "$date": "2021-01-12T04:41:08.000Z" + }, + "end": { + "$date": "2021-01-12T05:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7318e97-2fe0-4c84-afc8-cd6021cde51e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-12T04:41:10.000Z" + }, + "end": { + "$date": "2021-01-12T05:00:45.000Z" + }, + "events": [ + { + "uuid": "226cc5a9-46e8-48a0-914e-738129aad157", + "start": { + "$date": "2021-01-12T04:41:10.000Z" + }, + "end": { + "$date": "2021-01-12T05:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "896ff53a-d244-44f3-9fa2-8f2dfaa58a07", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-12T04:41:51.000Z" + }, + "end": { + "$date": "2021-01-12T05:00:38.000Z" + }, + "events": [ + { + "uuid": "d9e572fb-4130-456a-a351-16613857e3e8", + "start": { + "$date": "2021-01-12T04:41:51.000Z" + }, + "end": { + "$date": "2021-01-12T05:00:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8d276343-c7a8-402d-94a6-2429bd9c6c0c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-12T04:51:10.000Z" + }, + "end": { + "$date": "2021-01-12T06:42:23.000Z" + }, + "events": [ + { + "uuid": "2bfe086c-0f85-44a8-9501-be503d0de877", + "start": { + "$date": "2021-01-12T04:51:10.000Z" + }, + "end": { + "$date": "2021-01-12T06:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d1b7c8d7-4032-41a6-8ea9-cc11afb3ebe3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-12T05:18:43.000Z" + }, + "end": { + "$date": "2021-01-12T05:51:39.000Z" + }, + "events": [ + { + "uuid": "1b72e128-76dc-4548-82dd-7472538fb180", + "start": { + "$date": "2021-01-12T05:18:43.000Z" + }, + "end": { + "$date": "2021-01-12T05:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edd86470-9565-4202-adc1-b0f850bb42f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T05:27:21.000Z" + }, + "end": { + "$date": "2021-01-12T05:58:13.000Z" + }, + "events": [ + { + "uuid": "fb8bd1a6-35e1-4ab9-97e0-ea991f8181e4", + "start": { + "$date": "2021-01-12T05:27:21.000Z" + }, + "end": { + "$date": "2021-01-12T05:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4142fce-3ebb-496c-9076-c9322540f7cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T05:27:23.000Z" + }, + "end": { + "$date": "2021-01-12T05:58:15.000Z" + }, + "events": [ + { + "uuid": "047d9622-cc26-4d76-8eae-7077e9cd5d11", + "start": { + "$date": "2021-01-12T05:27:23.000Z" + }, + "end": { + "$date": "2021-01-12T05:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f16ce220-b72c-414f-b6a2-bb15842aaf89", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T05:59:13.000Z" + }, + "end": { + "$date": "2021-01-12T06:41:33.000Z" + }, + "events": [ + { + "uuid": "575aa5f4-87b8-4de2-8296-e7d4df3d11d1", + "start": { + "$date": "2021-01-12T05:59:13.000Z" + }, + "end": { + "$date": "2021-01-12T06:41:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7104091e-e80d-41b5-a923-584fd6a1b9b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-12T06:13:12.000Z" + }, + "end": { + "$date": "2021-01-12T06:43:13.000Z" + }, + "events": [ + { + "uuid": "ddee4a98-8800-44a8-ab88-1d9bdf7bd685", + "start": { + "$date": "2021-01-12T06:13:12.000Z" + }, + "end": { + "$date": "2021-01-12T06:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9da8127-5214-445f-bbbe-24aa5d24a1d7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T06:25:35.000Z" + }, + "end": { + "$date": "2021-01-12T07:20:07.000Z" + }, + "events": [ + { + "uuid": "cfb72713-f80f-4732-80f5-24d45f661dad", + "start": { + "$date": "2021-01-12T06:25:35.000Z" + }, + "end": { + "$date": "2021-01-12T07:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae9fe720-4c98-4298-b609-0ab961c080ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T06:49:15.000Z" + }, + "end": { + "$date": "2021-01-12T07:24:00.000Z" + }, + "events": [ + { + "uuid": "e84c1db0-33a9-4a30-8dc9-8d10d603fd15", + "start": { + "$date": "2021-01-12T06:49:15.000Z" + }, + "end": { + "$date": "2021-01-12T07:24:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "2ad8f533-9acb-4e95-a234-50539843bd0c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-12T06:48:11.000Z" + }, + "end": { + "$date": "2021-01-12T07:04:48.000Z" + }, + "events": [ + { + "uuid": "bb6ef151-6826-4a55-81e0-c0d53f6be530", + "start": { + "$date": "2021-01-12T06:48:11.000Z" + }, + "end": { + "$date": "2021-01-12T07:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ecca8550-3d99-4900-95f8-3ff6c13b8396", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-12T06:48:29.000Z" + }, + "end": { + "$date": "2021-01-12T07:16:36.000Z" + }, + "events": [ + { + "uuid": "4c94703d-54d7-4429-a0cd-dba288fb970c", + "start": { + "$date": "2021-01-12T06:48:29.000Z" + }, + "end": { + "$date": "2021-01-12T07:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d09c846-efa4-46f5-afc2-7c6b348cf050", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T07:24:40.000Z" + }, + "end": { + "$date": "2021-01-12T07:27:41.000Z" + }, + "events": [ + { + "uuid": "e7eb8c4d-67b9-4a4c-b26c-6e491d077f33", + "start": { + "$date": "2021-01-12T07:24:40.000Z" + }, + "end": { + "$date": "2021-01-12T07:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d16c110-cdb1-41e3-a914-0c530d6a6b48", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T07:33:38.000Z" + }, + "end": { + "$date": "2021-01-12T08:12:13.000Z" + }, + "events": [ + { + "uuid": "a5479f8b-9376-4945-8075-2c05fdc4f53b", + "start": { + "$date": "2021-01-12T07:33:38.000Z" + }, + "end": { + "$date": "2021-01-12T08:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1a2f0bc-283f-481a-b232-ac88a7223f17", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T09:09:21.000Z" + }, + "end": { + "$date": "2021-01-12T09:41:05.000Z" + }, + "events": [ + { + "uuid": "a4f5ab92-6bcf-46f6-89a6-55cf08897613", + "start": { + "$date": "2021-01-12T09:09:21.000Z" + }, + "end": { + "$date": "2021-01-12T09:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5ae8186-dd95-43a5-a56f-013eb4904ca9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T09:43:00.000Z" + }, + "end": { + "$date": "2021-01-12T09:46:56.000Z" + }, + "events": [ + { + "uuid": "e372e3e0-2315-4840-af8a-349678e434ec", + "start": { + "$date": "2021-01-12T09:43:00.000Z" + }, + "end": { + "$date": "2021-01-12T09:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5f9ff025-5ad4-46e5-87df-29954d327617", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-12T15:32:26.000Z" + }, + "end": { + "$date": "2021-01-12T17:07:53.000Z" + }, + "events": [ + { + "uuid": "8fe3e153-01a4-4053-9dae-6d9a0a37c725", + "start": { + "$date": "2021-01-12T15:32:26.000Z" + }, + "end": { + "$date": "2021-01-12T17:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "189c3e44-d4cf-4569-8203-c8fdec89178e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-12T17:13:24.000Z" + }, + "end": { + "$date": "2021-01-12T17:32:38.000Z" + }, + "events": [ + { + "uuid": "c6463dff-c3a8-4760-a0b0-f9218dc9f8bd", + "start": { + "$date": "2021-01-12T17:13:24.000Z" + }, + "end": { + "$date": "2021-01-12T17:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "573b786e-456a-4898-bb05-62fe3159cef4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T17:15:09.000Z" + }, + "end": { + "$date": "2021-01-12T17:40:28.000Z" + }, + "events": [ + { + "uuid": "41806240-452b-4390-a6f0-50d770d7dd4c", + "start": { + "$date": "2021-01-12T17:15:09.000Z" + }, + "end": { + "$date": "2021-01-12T17:40:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "177a325b-ea3b-46b2-94dd-2fd966b8d03b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-12T17:37:11.000Z" + }, + "end": { + "$date": "2021-01-12T17:41:26.000Z" + }, + "events": [ + { + "uuid": "19cb7b3c-4602-46ba-98ba-01c12b01d0bc", + "start": { + "$date": "2021-01-12T17:37:11.000Z" + }, + "end": { + "$date": "2021-01-12T17:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9f783c6c-6043-4afb-af62-e004c0e8c464", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-12T17:41:46.000Z" + }, + "end": { + "$date": "2021-01-12T18:28:31.000Z" + }, + "events": [ + { + "uuid": "e6ba33ef-8579-45b8-acef-3803a96fb451", + "start": { + "$date": "2021-01-12T17:41:46.000Z" + }, + "end": { + "$date": "2021-01-12T18:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8bd7c150-b25c-4996-bccf-5a509fcb7dbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-12T18:29:27.000Z" + }, + "end": { + "$date": "2021-01-12T19:20:27.000Z" + }, + "events": [ + { + "uuid": "772fe82e-891c-4fea-8154-67f4f7dccb1b", + "start": { + "$date": "2021-01-12T18:29:27.000Z" + }, + "end": { + "$date": "2021-01-12T19:20:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "233b2998-057e-4af9-bf9f-6e734b09e832", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-12T19:37:17.000Z" + }, + "end": { + "$date": "2021-01-12T20:32:59.000Z" + }, + "events": [ + { + "uuid": "7125486b-c39b-4ac7-aa60-3bde75eb60cb", + "start": { + "$date": "2021-01-12T19:37:17.000Z" + }, + "end": { + "$date": "2021-01-12T20:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7bd794a3-c915-4558-b895-df3d4b935453", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-12T20:12:48.000Z" + }, + "end": { + "$date": "2021-01-12T22:17:16.000Z" + }, + "events": [ + { + "uuid": "a12bf20f-ee6d-474e-8a5d-8d723615bf08", + "start": { + "$date": "2021-01-12T20:12:48.000Z" + }, + "end": { + "$date": "2021-01-12T21:06:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ec23c2b-e180-48cc-88d2-3cb3d4a6bb50", + "start": { + "$date": "2021-01-12T21:06:48.000Z" + }, + "end": { + "$date": "2021-01-12T21:27:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a940b129-b315-4b6c-9c20-3f2d7377f48a", + "start": { + "$date": "2021-01-12T21:27:48.000Z" + }, + "end": { + "$date": "2021-01-12T22:17:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "79b2cc7f-ec6a-4c3f-b9c6-4cdd5c29a7d4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-12T20:21:44.000Z" + }, + "end": { + "$date": "2021-01-12T21:33:24.000Z" + }, + "events": [ + { + "uuid": "ff900763-30ca-411d-9fd2-caa33143b1c5", + "start": { + "$date": "2021-01-12T20:21:44.000Z" + }, + "end": { + "$date": "2021-01-12T21:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaf34f38-01d6-4f6f-93e5-2cd362eaeebc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-12T20:55:43.000Z" + }, + "end": { + "$date": "2021-01-12T21:25:42.000Z" + }, + "events": [ + { + "uuid": "c57434b1-1db2-4167-8349-754504f9ae32", + "start": { + "$date": "2021-01-12T20:55:43.000Z" + }, + "end": { + "$date": "2021-01-12T21:25:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "9a1fe243-33f4-4c57-8603-f0e0ed86a4ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-12T22:15:58.000Z" + }, + "end": { + "$date": "2021-01-12T23:25:46.000Z" + }, + "events": [ + { + "uuid": "2fa1abf9-8735-4d10-a1aa-d5552024b393", + "start": { + "$date": "2021-01-12T22:15:58.000Z" + }, + "end": { + "$date": "2021-01-12T23:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c350fc12-30b1-45be-86c6-d492ca74a3d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-12T22:21:47.000Z" + }, + "end": { + "$date": "2021-01-12T22:30:53.000Z" + }, + "events": [ + { + "uuid": "bc5fd9d6-d977-424c-a8f8-da4979980afe", + "start": { + "$date": "2021-01-12T22:21:47.000Z" + }, + "end": { + "$date": "2021-01-12T22:30:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f470c809-9891-4725-a5ae-6e8aa842f00e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-12T23:13:54.000Z" + }, + "end": { + "$date": "2021-01-13T01:45:18.000Z" + }, + "events": [ + { + "uuid": "94fe3fae-3444-4082-ae39-f43f9757b0cf", + "start": { + "$date": "2021-01-12T23:13:54.000Z" + }, + "end": { + "$date": "2021-01-13T01:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "023613b9-c7e3-4e4e-91f8-8779884059e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-12T23:14:21.000Z" + }, + "end": { + "$date": "2021-01-13T00:09:27.000Z" + }, + "events": [ + { + "uuid": "8732a264-ae40-4355-9455-909bc2741be5", + "start": { + "$date": "2021-01-12T23:14:21.000Z" + }, + "end": { + "$date": "2021-01-13T00:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "481902a0-394c-4bcf-9482-35463d49c9ec", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-12T23:34:41.000Z" + }, + "end": { + "$date": "2021-01-13T02:17:28.000Z" + }, + "events": [ + { + "uuid": "ab747beb-0cd0-4192-a22e-f03a05bdd61d", + "start": { + "$date": "2021-01-12T23:34:41.000Z" + }, + "end": { + "$date": "2021-01-13T02:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5a8d49ea-e9ed-4fd3-9f85-18f13f7464df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T00:08:46.000Z" + }, + "end": { + "$date": "2021-01-13T00:47:31.000Z" + }, + "events": [ + { + "uuid": "c7cc22df-9dba-4537-989e-63050c393036", + "start": { + "$date": "2021-01-13T00:08:46.000Z" + }, + "end": { + "$date": "2021-01-13T00:47:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "13a00994-bc1a-406e-940f-fe72e2472c5e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-13T00:36:43.000Z" + }, + "end": { + "$date": "2021-01-13T04:40:04.000Z" + }, + "events": [ + { + "uuid": "65869b4b-0d12-4ff6-b8ed-0013f10edcc5", + "start": { + "$date": "2021-01-13T00:36:43.000Z" + }, + "end": { + "$date": "2021-01-13T04:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1932e1f7-16e6-4ee6-822c-cbc145defb49", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-13T00:46:26.000Z" + }, + "end": { + "$date": "2021-01-13T00:48:42.000Z" + }, + "events": [ + { + "uuid": "c95d43d2-ce4a-41a2-abb5-e0f4912ff99d", + "start": { + "$date": "2021-01-13T00:46:26.000Z" + }, + "end": { + "$date": "2021-01-13T00:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aa118db-6644-4119-8ee5-1ad18b26813a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T01:11:47.000Z" + }, + "end": { + "$date": "2021-01-13T01:48:38.000Z" + }, + "events": [ + { + "uuid": "122fa7d3-50a2-4f82-a060-64d8df7f4bf4", + "start": { + "$date": "2021-01-13T01:11:47.000Z" + }, + "end": { + "$date": "2021-01-13T01:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf62a5e6-3ccb-4ce5-907e-b3bf6ece0032", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T01:13:13.000Z" + }, + "end": { + "$date": "2021-01-13T01:48:30.000Z" + }, + "events": [ + { + "uuid": "e42db833-9995-40bf-a9b0-fb957e845e50", + "start": { + "$date": "2021-01-13T01:13:13.000Z" + }, + "end": { + "$date": "2021-01-13T01:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e733c2f4-4801-41cd-8d81-fced796513d1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-13T01:21:34.000Z" + }, + "end": { + "$date": "2021-01-13T01:33:00.000Z" + }, + "events": [ + { + "uuid": "87fa251b-beae-4985-a9f0-4d99b30d5587", + "start": { + "$date": "2021-01-13T01:21:34.000Z" + }, + "end": { + "$date": "2021-01-13T01:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d5158ddc-f7c4-4cab-ad73-ecc9584d5f5f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-13T01:46:37.000Z" + }, + "end": { + "$date": "2021-01-13T01:54:20.000Z" + }, + "events": [ + { + "uuid": "a69a7315-4fc2-4044-af4c-63e1ebf9ac12", + "start": { + "$date": "2021-01-13T01:46:37.000Z" + }, + "end": { + "$date": "2021-01-13T01:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f4ad51f-2167-4afd-8fbf-f8f9c6eec9fa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T01:48:33.000Z" + }, + "end": { + "$date": "2021-01-13T01:49:52.000Z" + }, + "events": [ + { + "uuid": "eb92fff7-d7ca-422b-9b51-f52cca84cee7", + "start": { + "$date": "2021-01-13T01:48:33.000Z" + }, + "end": { + "$date": "2021-01-13T01:49:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f64d966-88f2-4522-b2aa-cc8a359ad137", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T01:53:18.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:24.000Z" + }, + "events": [ + { + "uuid": "71e4ca90-8241-43f5-8675-c8e0bc25ed1d", + "start": { + "$date": "2021-01-13T01:53:18.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "886ce5fc-6886-4623-a833-8c5a031eb5a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T01:52:54.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:25.000Z" + }, + "events": [ + { + "uuid": "ec249cc5-60d6-4fcf-85b0-269e05d2fb64", + "start": { + "$date": "2021-01-13T01:52:54.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "982b7e1b-e501-4206-8d20-32fc175db97c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-13T01:52:56.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:34.000Z" + }, + "events": [ + { + "uuid": "dccc7ebf-43ff-4fbc-b913-bf6ad85ca946", + "start": { + "$date": "2021-01-13T01:52:56.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04beea4c-e9ad-423f-bd3b-74a11daee484", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T01:54:36.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:33.000Z" + }, + "events": [ + { + "uuid": "752d6341-436e-4d8f-9c01-4cf1ff2bb9b5", + "start": { + "$date": "2021-01-13T01:54:36.000Z" + }, + "end": { + "$date": "2021-01-13T02:22:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1858ad5-576e-4e41-a4ec-7445abe8d9ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T02:27:36.000Z" + }, + "end": { + "$date": "2021-01-13T03:04:04.000Z" + }, + "events": [ + { + "uuid": "ea1a06ac-e032-4d40-8aaa-0f2608d05db8", + "start": { + "$date": "2021-01-13T02:27:36.000Z" + }, + "end": { + "$date": "2021-01-13T03:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "275ebcc9-25fc-4a0b-89c5-d1bfe48b15e4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T02:38:09.000Z" + }, + "end": { + "$date": "2021-01-13T03:03:44.000Z" + }, + "events": [ + { + "uuid": "9f7e428d-da71-4315-8d8a-2d7e6750b5ba", + "start": { + "$date": "2021-01-13T02:38:09.000Z" + }, + "end": { + "$date": "2021-01-13T03:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a101875-96a8-4abd-aa1b-2a28783394ac", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-13T02:27:34.000Z" + }, + "end": { + "$date": "2021-01-13T03:03:46.000Z" + }, + "events": [ + { + "uuid": "c8ee18f9-60c8-4eba-8c94-f3afaaf7e7ff", + "start": { + "$date": "2021-01-13T02:27:34.000Z" + }, + "end": { + "$date": "2021-01-13T03:03:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34f2a288-438d-4f5a-a762-b127d123c4f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T02:27:33.000Z" + }, + "end": { + "$date": "2021-01-13T03:03:55.000Z" + }, + "events": [ + { + "uuid": "f87d69cb-6eda-4953-bc45-83e35752a64d", + "start": { + "$date": "2021-01-13T02:27:33.000Z" + }, + "end": { + "$date": "2021-01-13T03:03:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fe631fe6-1ac6-4b1f-ad04-02d88e9111d7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-13T02:30:34.000Z" + }, + "end": { + "$date": "2021-01-13T02:58:39.000Z" + }, + "events": [ + { + "uuid": "adacc153-d6e8-4a5c-adf6-507468a06ec4", + "start": { + "$date": "2021-01-13T02:30:34.000Z" + }, + "end": { + "$date": "2021-01-13T02:58:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b5ad9588-5959-49fa-a4ea-f7bd80e62e6a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-13T02:31:46.000Z" + }, + "end": { + "$date": "2021-01-13T03:00:55.000Z" + }, + "events": [ + { + "uuid": "b0e819a5-f768-49a5-a435-30ebcf7a5029", + "start": { + "$date": "2021-01-13T02:31:46.000Z" + }, + "end": { + "$date": "2021-01-13T03:00:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01ae9e90-8d79-4355-aaa5-761186bf897e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T03:07:32.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:23.000Z" + }, + "events": [ + { + "uuid": "d9176f1c-4f72-4236-bea7-5f4721acf151", + "start": { + "$date": "2021-01-13T03:07:32.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86012176-28d5-4cbf-bfb8-7f77b296282f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-13T03:07:30.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:21.000Z" + }, + "events": [ + { + "uuid": "ef6352b5-d3d6-49b4-bd90-dd0269e948e9", + "start": { + "$date": "2021-01-13T03:07:30.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b2c2252-c84e-4fb7-90c5-eff9b99bd9ad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T03:08:44.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:25.000Z" + }, + "events": [ + { + "uuid": "c5b9f0d7-cb93-42f7-b6f6-cf01643c6951", + "start": { + "$date": "2021-01-13T03:08:44.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91bb1c2a-fdbc-46e6-a5cf-e38c0b96f063", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T03:08:09.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:26.000Z" + }, + "events": [ + { + "uuid": "dee7f9f9-9743-444d-b9ce-7275daaaa975", + "start": { + "$date": "2021-01-13T03:08:09.000Z" + }, + "end": { + "$date": "2021-01-13T03:44:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "33f1f975-e1a2-4e58-a4f0-65684617fb71", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-13T03:05:26.000Z" + }, + "end": { + "$date": "2021-01-13T04:03:47.000Z" + }, + "events": [ + { + "uuid": "109c74e9-80c3-4bc8-885a-e3840990d2ed", + "start": { + "$date": "2021-01-13T03:05:26.000Z" + }, + "end": { + "$date": "2021-01-13T04:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61d0a27f-1dd6-43bd-844b-c54665105fe1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T03:49:14.000Z" + }, + "end": { + "$date": "2021-01-13T04:31:00.000Z" + }, + "events": [ + { + "uuid": "5b63baaa-6400-4247-8188-780eb65d4f6f", + "start": { + "$date": "2021-01-13T03:49:14.000Z" + }, + "end": { + "$date": "2021-01-13T04:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09cfdea5-fb65-48ab-abe1-c4f3534b47fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T03:49:10.000Z" + }, + "end": { + "$date": "2021-01-13T04:30:55.000Z" + }, + "events": [ + { + "uuid": "1878e496-50d9-4d16-baa4-5fb15b4f2334", + "start": { + "$date": "2021-01-13T03:49:10.000Z" + }, + "end": { + "$date": "2021-01-13T04:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "406a30b0-b5b2-42a4-b79f-6d27289dcbb9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-13T03:49:12.000Z" + }, + "end": { + "$date": "2021-01-13T04:30:58.000Z" + }, + "events": [ + { + "uuid": "1756937a-c2aa-442f-8bcd-005e3e1f9ae1", + "start": { + "$date": "2021-01-13T03:49:12.000Z" + }, + "end": { + "$date": "2021-01-13T04:30:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fa9e844-e1b3-4125-92e2-b9b1e9b3483e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-13T03:49:41.000Z" + }, + "end": { + "$date": "2021-01-13T04:31:05.000Z" + }, + "events": [ + { + "uuid": "c32905d1-3a44-43fb-8905-ae09a0defd92", + "start": { + "$date": "2021-01-13T03:49:41.000Z" + }, + "end": { + "$date": "2021-01-13T04:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb271747-04b0-4a6b-af6d-7a8c4a720e19", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T03:49:16.000Z" + }, + "end": { + "$date": "2021-01-13T04:31:10.000Z" + }, + "events": [ + { + "uuid": "6efb7890-0987-47d1-bf33-d27844a3f466", + "start": { + "$date": "2021-01-13T03:49:16.000Z" + }, + "end": { + "$date": "2021-01-13T04:31:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2933510a-cb1e-4b58-994b-4afe375ffb73", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-13T04:05:45.000Z" + }, + "end": { + "$date": "2021-01-13T05:15:33.000Z" + }, + "events": [ + { + "uuid": "269a8033-d117-4076-8350-ca55b9260322", + "start": { + "$date": "2021-01-13T04:05:45.000Z" + }, + "end": { + "$date": "2021-01-13T05:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5bf432a1-c62d-4909-a077-a8f0252233ed", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-13T04:19:45.000Z" + }, + "end": { + "$date": "2021-01-13T07:11:35.000Z" + }, + "events": [ + { + "uuid": "93460e7c-1065-415b-b9cb-8e3aaf3193d4", + "start": { + "$date": "2021-01-13T04:19:45.000Z" + }, + "end": { + "$date": "2021-01-13T07:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d86b8fda-259f-4272-ba4c-d7169e82ceb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T04:36:07.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:21.000Z" + }, + "events": [ + { + "uuid": "9108bd0a-4b13-40e9-8b1a-4ba9a41f8526", + "start": { + "$date": "2021-01-13T04:36:07.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2314df0f-bf81-4999-96c0-7f1342ff9a4b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-13T04:36:04.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:15.000Z" + }, + "events": [ + { + "uuid": "8fe069a7-452a-47b9-b16c-d875ad7dca97", + "start": { + "$date": "2021-01-13T04:36:04.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "171760d0-bdab-4356-83e5-7be65d370fa9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T04:36:00.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:10.000Z" + }, + "events": [ + { + "uuid": "57287da6-17d1-4687-af8a-6f3a65867853", + "start": { + "$date": "2021-01-13T04:36:00.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5a9ddf8-376f-449b-9b42-ef4fb69b4df2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-13T04:36:37.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:13.000Z" + }, + "events": [ + { + "uuid": "69dacee7-b073-4a4c-99d8-285c7ae07242", + "start": { + "$date": "2021-01-13T04:36:37.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3d17ad7-2b39-4216-b312-f9d03c364656", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T04:36:04.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:33.000Z" + }, + "events": [ + { + "uuid": "1bbd90cd-f0f9-4d92-9726-9fe045a3a18d", + "start": { + "$date": "2021-01-13T04:36:04.000Z" + }, + "end": { + "$date": "2021-01-13T05:10:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1b6728a0-7f1f-4179-ae3a-16af4fa398ca", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-13T04:51:30.000Z" + }, + "end": { + "$date": "2021-01-13T07:11:10.000Z" + }, + "events": [ + { + "uuid": "13a53146-c6ef-4639-af38-371235ba1eb2", + "start": { + "$date": "2021-01-13T04:51:30.000Z" + }, + "end": { + "$date": "2021-01-13T07:11:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "a66d6518-1555-42d6-b779-8390fefe0a88", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-13T04:59:36.000Z" + }, + "end": { + "$date": "2021-01-13T05:04:47.000Z" + }, + "events": [ + { + "uuid": "45bf97a0-f5d5-42be-a018-0683d34c9aab", + "start": { + "$date": "2021-01-13T04:59:36.000Z" + }, + "end": { + "$date": "2021-01-13T05:04:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "830de4d2-fcd8-43a8-8d55-386f96d0ca5d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-13T05:20:57.000Z" + }, + "end": { + "$date": "2021-01-13T05:54:29.000Z" + }, + "events": [ + { + "uuid": "f1ba5827-42f4-4d37-b251-3d1809b50a82", + "start": { + "$date": "2021-01-13T05:20:57.000Z" + }, + "end": { + "$date": "2021-01-13T05:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "733fda9a-a6ce-4060-9c0d-3c0121039fe5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-13T05:06:27.000Z" + }, + "end": { + "$date": "2021-01-13T07:43:38.000Z" + }, + "events": [ + { + "uuid": "afe3efd6-21a8-4e0d-85e8-69844dc014e8", + "start": { + "$date": "2021-01-13T05:06:27.000Z" + }, + "end": { + "$date": "2021-01-13T07:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42a2282f-84c0-498e-9f93-6f078f0dcf43", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T05:15:04.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:11.000Z" + }, + "events": [ + { + "uuid": "d4cd4d22-66e2-42da-883c-883391f19be3", + "start": { + "$date": "2021-01-13T05:15:04.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c50694d3-6d7f-4227-9d84-f9868d11b312", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T05:16:31.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:06.000Z" + }, + "events": [ + { + "uuid": "c1f6e3b3-29d6-469c-9553-8f832ee78562", + "start": { + "$date": "2021-01-13T05:16:31.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0d0e046-00cf-4b85-937f-80bce602c90f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-13T05:15:01.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:02.000Z" + }, + "events": [ + { + "uuid": "f3bdeb66-7024-4302-aabe-33420e5763ca", + "start": { + "$date": "2021-01-13T05:15:01.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d3eca26-2fbc-46aa-8a53-4fc33a3f8375", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T05:15:02.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:14.000Z" + }, + "events": [ + { + "uuid": "e3c5b29b-b218-4e73-af0c-57043c3c39be", + "start": { + "$date": "2021-01-13T05:15:02.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f182138-079c-4225-933a-7202ee367eaf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-13T05:14:58.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:04.000Z" + }, + "events": [ + { + "uuid": "94c1c05d-2fec-4bbf-a587-a7c949cb23f1", + "start": { + "$date": "2021-01-13T05:14:58.000Z" + }, + "end": { + "$date": "2021-01-13T05:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2658e66c-dae1-458f-930c-bc5f2b67e2e9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-13T05:29:10.000Z" + }, + "end": { + "$date": "2021-01-13T06:24:58.000Z" + }, + "events": [ + { + "uuid": "8362e0a7-9e53-4efa-83a7-b65234fcf5ad", + "start": { + "$date": "2021-01-13T05:29:10.000Z" + }, + "end": { + "$date": "2021-01-13T06:24:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fb42ff63-e901-4f69-97d0-44a86a734715", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T05:44:06.000Z" + }, + "end": { + "$date": "2021-01-13T05:59:26.000Z" + }, + "events": [ + { + "uuid": "40d82b33-ef1d-4039-abca-5b835733ab06", + "start": { + "$date": "2021-01-13T05:44:06.000Z" + }, + "end": { + "$date": "2021-01-13T05:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06432d1c-becb-44b5-ba01-4a2a9f8c0668", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T06:06:38.000Z" + }, + "end": { + "$date": "2021-01-13T06:24:13.000Z" + }, + "events": [ + { + "uuid": "c31f553f-48ca-4e28-8377-277f9675486c", + "start": { + "$date": "2021-01-13T06:06:38.000Z" + }, + "end": { + "$date": "2021-01-13T06:24:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8004d0d2-f88e-48e1-9948-29e9901b4dfe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T06:33:05.000Z" + }, + "end": { + "$date": "2021-01-13T07:01:20.000Z" + }, + "events": [ + { + "uuid": "79f25d48-c142-4d71-9c82-bc174475bb8b", + "start": { + "$date": "2021-01-13T06:33:05.000Z" + }, + "end": { + "$date": "2021-01-13T07:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29297aa9-a719-48f4-b4cd-fea8a6922e79", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T07:02:07.000Z" + }, + "end": { + "$date": "2021-01-13T07:03:39.000Z" + }, + "events": [ + { + "uuid": "1fbfbde5-b611-4769-a1e9-b74fb884c2bc", + "start": { + "$date": "2021-01-13T07:02:07.000Z" + }, + "end": { + "$date": "2021-01-13T07:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "92144774-b196-4849-8c29-3be0e0e93825", + "uuid": "3bd85455-17b7-4f7b-a2fe-0ab5761196fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T07:26:22.000Z" + }, + "end": { + "$date": "2021-01-13T07:32:23.000Z" + }, + "events": [ + { + "uuid": "f6c264ee-888c-480a-997d-a03ba5c4ef2a", + "start": { + "$date": "2021-01-13T07:26:22.000Z" + }, + "end": { + "$date": "2021-01-13T07:32:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bbda0cb6-6e89-4e50-910b-fe522c209c00", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-13T07:44:03.000Z" + }, + "end": { + "$date": "2021-01-13T07:48:14.000Z" + }, + "events": [ + { + "uuid": "c8c041cf-e6c6-491f-9096-6bed5f5a0cf0", + "start": { + "$date": "2021-01-13T07:44:03.000Z" + }, + "end": { + "$date": "2021-01-13T07:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e002e82a-d83b-479e-a90b-a38bf9d8722f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-13T09:29:30.000Z" + }, + "end": { + "$date": "2021-01-13T13:18:53.000Z" + }, + "events": [ + { + "uuid": "d084bdee-bb3b-426d-93c5-4e50f0287db4", + "start": { + "$date": "2021-01-13T09:29:30.000Z" + }, + "end": { + "$date": "2021-01-13T13:18:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c0719e53-5904-48f1-a3ab-8e2fb1d17334", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-13T17:07:34.000Z" + }, + "end": { + "$date": "2021-01-13T17:11:26.000Z" + }, + "events": [ + { + "uuid": "a7b71fe0-01f3-46f0-a355-b21648c1b36f", + "start": { + "$date": "2021-01-13T17:07:34.000Z" + }, + "end": { + "$date": "2021-01-13T17:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0bb7a046-cbca-4366-a84a-80ea2a27dd5f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-13T17:08:56.000Z" + }, + "end": { + "$date": "2021-01-14T02:14:03.000Z" + }, + "events": [ + { + "uuid": "b1fb8e28-79f7-429a-9735-200f0c45f62e", + "start": { + "$date": "2021-01-13T17:08:56.000Z" + }, + "end": { + "$date": "2021-01-14T02:14:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "efda4a2d-7333-44e1-bd41-9daa3f5d4fa8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T17:09:38.000Z" + }, + "end": { + "$date": "2021-01-13T18:14:25.000Z" + }, + "events": [ + { + "uuid": "0821427d-b162-41a6-ac41-141e9a937111", + "start": { + "$date": "2021-01-13T17:09:38.000Z" + }, + "end": { + "$date": "2021-01-13T18:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "955b7c74-d415-44df-9e57-b583e874699b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T18:44:50.000Z" + }, + "end": { + "$date": "2021-01-13T19:20:09.000Z" + }, + "events": [ + { + "uuid": "ad29c9e1-1131-4446-aa37-3426871c2f20", + "start": { + "$date": "2021-01-13T18:44:50.000Z" + }, + "end": { + "$date": "2021-01-13T19:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c4a65e2-b87d-44ac-817b-e0e5faa28a07", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T18:45:47.000Z" + }, + "end": { + "$date": "2021-01-13T19:20:07.000Z" + }, + "events": [ + { + "uuid": "4bbcac05-bcf7-41ec-b8db-cd7fb9e7ace8", + "start": { + "$date": "2021-01-13T18:45:47.000Z" + }, + "end": { + "$date": "2021-01-13T19:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4e6e3b6-9d92-478d-9e4b-7ac7ec741733", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T19:26:16.000Z" + }, + "end": { + "$date": "2021-01-13T20:01:45.000Z" + }, + "events": [ + { + "uuid": "94ae9c78-d861-4195-823b-45be11f01ab3", + "start": { + "$date": "2021-01-13T19:26:16.000Z" + }, + "end": { + "$date": "2021-01-13T20:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23854e21-46cb-40af-b853-e508b8db64b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T19:26:57.000Z" + }, + "end": { + "$date": "2021-01-13T20:01:47.000Z" + }, + "events": [ + { + "uuid": "8d660458-420c-4249-95b2-25671e34b03e", + "start": { + "$date": "2021-01-13T19:26:57.000Z" + }, + "end": { + "$date": "2021-01-13T20:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ab7bdc6-7322-418e-8cb2-bc8ad6a6c796", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T20:06:18.000Z" + }, + "end": { + "$date": "2021-01-13T20:40:59.000Z" + }, + "events": [ + { + "uuid": "417aa29f-1b8a-40e9-858f-1143b53b7b82", + "start": { + "$date": "2021-01-13T20:06:18.000Z" + }, + "end": { + "$date": "2021-01-13T20:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c726b29-8c3a-4af1-9829-ff11fa12cc55", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-13T20:37:02.000Z" + }, + "end": { + "$date": "2021-01-13T20:51:03.000Z" + }, + "events": [ + { + "uuid": "38d4eb21-ce06-4ab1-b253-13d2bee28595", + "start": { + "$date": "2021-01-13T20:37:02.000Z" + }, + "end": { + "$date": "2021-01-13T20:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80a76812-3873-4c19-9d9b-a2c76f2eba0a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T20:46:09.000Z" + }, + "end": { + "$date": "2021-01-13T21:20:02.000Z" + }, + "events": [ + { + "uuid": "eb3881c7-6e11-4bd7-970e-4cda97d52432", + "start": { + "$date": "2021-01-13T20:46:09.000Z" + }, + "end": { + "$date": "2021-01-13T21:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "58de8063-821c-4a5b-afd6-a31bf7af77ba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-13T20:49:11.000Z" + }, + "end": { + "$date": "2021-01-13T21:54:35.000Z" + }, + "events": [ + { + "uuid": "60066aab-e438-4d7c-b30b-044b1e5e5077", + "start": { + "$date": "2021-01-13T20:49:11.000Z" + }, + "end": { + "$date": "2021-01-13T21:41:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3c42e9c1-836a-4970-a925-524708d09576", + "start": { + "$date": "2021-01-13T21:41:11.000Z" + }, + "end": { + "$date": "2021-01-13T21:42:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03f7365e-f416-41a1-a2a6-a3d353014d05", + "start": { + "$date": "2021-01-13T21:42:11.000Z" + }, + "end": { + "$date": "2021-01-13T21:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7a9fc117-11a3-43e5-8732-b544e851b4f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-13T21:26:53.000Z" + }, + "end": { + "$date": "2021-01-13T22:08:14.000Z" + }, + "events": [ + { + "uuid": "85cb0af7-38fa-4ab8-85f5-ac0e11c7c641", + "start": { + "$date": "2021-01-13T21:26:53.000Z" + }, + "end": { + "$date": "2021-01-13T22:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b40aa4e8-bc2c-494f-bfad-535703e5c504", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-13T22:37:46.000Z" + }, + "end": { + "$date": "2021-01-14T01:14:22.000Z" + }, + "events": [ + { + "uuid": "e04b4bde-4404-4561-8485-128f1a4b907e", + "start": { + "$date": "2021-01-13T22:37:46.000Z" + }, + "end": { + "$date": "2021-01-14T01:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75f5e39f-d7ed-4b96-92ae-22068cd264fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-13T23:17:48.000Z" + }, + "end": { + "$date": "2021-01-13T23:47:30.000Z" + }, + "events": [ + { + "uuid": "63ada846-2cdd-492f-9b44-cb081aff805a", + "start": { + "$date": "2021-01-13T23:17:48.000Z" + }, + "end": { + "$date": "2021-01-13T23:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "ddff3274-4b9d-40d7-b871-8304b8b41e4a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T00:48:45.000Z" + }, + "end": { + "$date": "2021-01-14T01:08:35.000Z" + }, + "events": [ + { + "uuid": "4d7088da-73c0-4fc3-b8eb-7fc0858e1b5e", + "start": { + "$date": "2021-01-14T00:48:45.000Z" + }, + "end": { + "$date": "2021-01-14T01:08:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "213b40ac-4989-4908-a985-13bff34d6f1a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T00:57:02.000Z" + }, + "end": { + "$date": "2021-01-14T01:27:15.000Z" + }, + "events": [ + { + "uuid": "bb61e3c6-7a3f-4de9-8e54-b39ee5ca45f6", + "start": { + "$date": "2021-01-14T00:57:02.000Z" + }, + "end": { + "$date": "2021-01-14T01:27:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa923284-3218-4e0d-9fb9-c791b98d772b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T00:57:08.000Z" + }, + "end": { + "$date": "2021-01-14T01:27:06.000Z" + }, + "events": [ + { + "uuid": "5ebc3e20-59a5-48f0-9d12-7f98810f9b34", + "start": { + "$date": "2021-01-14T00:57:08.000Z" + }, + "end": { + "$date": "2021-01-14T01:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "25e6069c-ef71-4cfb-9edf-06b5d59474e8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-14T01:11:00.000Z" + }, + "end": { + "$date": "2021-01-14T02:27:12.000Z" + }, + "events": [ + { + "uuid": "dad86345-a141-4a7e-80db-24a58f651e5c", + "start": { + "$date": "2021-01-14T01:11:00.000Z" + }, + "end": { + "$date": "2021-01-14T02:27:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "11a36a40-0f14-4ea9-8a41-602f00adef14", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-14T01:11:25.000Z" + }, + "end": { + "$date": "2021-01-14T03:01:31.000Z" + }, + "events": [ + { + "uuid": "d2de55a7-81c8-4130-bdcb-5b00e0a53cac", + "start": { + "$date": "2021-01-14T01:11:25.000Z" + }, + "end": { + "$date": "2021-01-14T03:01:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7f051794-dc28-4835-b566-c45e17c6f0f3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-14T01:18:32.000Z" + }, + "end": { + "$date": "2021-01-14T01:20:33.000Z" + }, + "events": [ + { + "uuid": "f15382fc-a457-4d0c-827e-982f4c97900f", + "start": { + "$date": "2021-01-14T01:18:32.000Z" + }, + "end": { + "$date": "2021-01-14T01:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "955a852e-9c70-462b-8276-d3b357c597e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T01:31:25.000Z" + }, + "end": { + "$date": "2021-01-14T01:57:37.000Z" + }, + "events": [ + { + "uuid": "85dfa00e-25ec-48c6-abb5-9294fdc910bc", + "start": { + "$date": "2021-01-14T01:31:25.000Z" + }, + "end": { + "$date": "2021-01-14T01:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e9f29c3-ab2f-498e-b3f0-4690390303e5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T01:31:20.000Z" + }, + "end": { + "$date": "2021-01-14T01:57:43.000Z" + }, + "events": [ + { + "uuid": "71a4f9e8-e9f1-4c63-8fcc-3d180d42b98f", + "start": { + "$date": "2021-01-14T01:31:20.000Z" + }, + "end": { + "$date": "2021-01-14T01:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "78fe9dff-b4ba-4d7c-9fbf-d61da1b1f15c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T01:52:56.000Z" + }, + "end": { + "$date": "2021-01-14T02:44:31.000Z" + }, + "events": [ + { + "uuid": "2b43e5ef-bba0-476d-94e0-362c31a97c47", + "start": { + "$date": "2021-01-14T01:52:56.000Z" + }, + "end": { + "$date": "2021-01-14T02:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2bba01f-4729-4fa3-93ba-a64fb13079d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T02:03:36.000Z" + }, + "end": { + "$date": "2021-01-14T02:41:58.000Z" + }, + "events": [ + { + "uuid": "a629c864-f2cc-4d60-875f-01cb006e832f", + "start": { + "$date": "2021-01-14T02:03:36.000Z" + }, + "end": { + "$date": "2021-01-14T02:41:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0e7a9fc-c3f8-49c2-9d09-5de61e02e46f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T02:04:46.000Z" + }, + "end": { + "$date": "2021-01-14T02:42:00.000Z" + }, + "events": [ + { + "uuid": "f814329d-822b-46df-be9e-c94486d81488", + "start": { + "$date": "2021-01-14T02:04:46.000Z" + }, + "end": { + "$date": "2021-01-14T02:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "857c0302-b29b-44d2-8fb5-a8256bf1aede", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-14T02:27:58.000Z" + }, + "end": { + "$date": "2021-01-14T03:32:40.000Z" + }, + "events": [ + { + "uuid": "6ea41ab0-ed11-49b6-a415-e77e25ccb903", + "start": { + "$date": "2021-01-14T02:27:58.000Z" + }, + "end": { + "$date": "2021-01-14T03:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e053648-4c95-42f3-af7f-c063a31a522b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T02:35:03.000Z" + }, + "end": { + "$date": "2021-01-14T02:42:47.000Z" + }, + "events": [ + { + "uuid": "6dc755de-2a15-4921-a2b3-4deac379f106", + "start": { + "$date": "2021-01-14T02:35:03.000Z" + }, + "end": { + "$date": "2021-01-14T02:42:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b2e2fe3-3255-46c0-a4a9-3907fcd7bdef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T02:46:57.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:05.000Z" + }, + "events": [ + { + "uuid": "98f86bc7-ef06-4b87-a908-8eaa8c09baee", + "start": { + "$date": "2021-01-14T02:46:57.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "daa08e33-14f3-4975-912d-c6877742685d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T02:46:53.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:07.000Z" + }, + "events": [ + { + "uuid": "5adcc150-2a01-4f07-b5c0-62184a2a98cc", + "start": { + "$date": "2021-01-14T02:46:53.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "753b8672-cf40-4224-870a-b2f64d6ca5d1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T02:55:41.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:11.000Z" + }, + "events": [ + { + "uuid": "24cb723a-83aa-4d80-a31b-74aeec0bf39c", + "start": { + "$date": "2021-01-14T02:55:41.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9025975a-b18b-4bcd-8624-e48e02f2cbca", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T02:49:28.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:12.000Z" + }, + "events": [ + { + "uuid": "887efb33-db79-4c4f-98c8-be285eeb286a", + "start": { + "$date": "2021-01-14T02:49:28.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b81ed88-0e98-44af-a996-c0b375b690c2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T02:47:09.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:05.000Z" + }, + "events": [ + { + "uuid": "612485f7-8bc1-4b1d-9824-e1cc9cd24385", + "start": { + "$date": "2021-01-14T02:47:09.000Z" + }, + "end": { + "$date": "2021-01-14T03:23:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e0c1a36-8474-437b-8617-3a2c3faebb5f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-14T03:10:48.000Z" + }, + "end": { + "$date": "2021-01-14T03:25:19.000Z" + }, + "events": [ + { + "uuid": "aced9912-b0e8-42ae-a4eb-403806902340", + "start": { + "$date": "2021-01-14T03:10:48.000Z" + }, + "end": { + "$date": "2021-01-14T03:25:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1970b556-c826-46a2-b536-ba05248b8ae9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T03:27:33.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:21.000Z" + }, + "events": [ + { + "uuid": "12d0307b-106c-498e-930d-aea298e9c2a8", + "start": { + "$date": "2021-01-14T03:27:33.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "354e9ebc-a8f4-4edb-8192-f11cd2c07b12", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T03:27:46.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:16.000Z" + }, + "events": [ + { + "uuid": "bc6d382a-e8a4-4724-a5a5-5b5339b552e5", + "start": { + "$date": "2021-01-14T03:27:46.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46dfdbfd-3417-4c4d-bcec-6366dfafb5f5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T03:27:45.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:13.000Z" + }, + "events": [ + { + "uuid": "352eb5fe-937f-432d-bdc0-5e73164f1475", + "start": { + "$date": "2021-01-14T03:27:45.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db532478-7e83-49f3-a9ca-a314e3ad0f2d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T03:27:31.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:17.000Z" + }, + "events": [ + { + "uuid": "fdd1e13b-5f29-483c-908a-24364ae183af", + "start": { + "$date": "2021-01-14T03:27:31.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11f72ea8-e0fd-48c6-87ba-8379d535b55d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T03:28:47.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:12.000Z" + }, + "events": [ + { + "uuid": "44e771ff-d5e0-4723-9f5a-50502bb4dc5a", + "start": { + "$date": "2021-01-14T03:28:47.000Z" + }, + "end": { + "$date": "2021-01-14T03:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4cc6d8c4-c858-4b70-8b40-ce89a8987be4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-14T03:29:13.000Z" + }, + "end": { + "$date": "2021-01-14T03:31:18.000Z" + }, + "events": [ + { + "uuid": "9fc0df7d-25c4-4150-b650-91af577b1c18", + "start": { + "$date": "2021-01-14T03:29:13.000Z" + }, + "end": { + "$date": "2021-01-14T03:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "71b2f2bf-a9d9-405c-8f5e-f271c4d7ffbb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-14T03:29:52.000Z" + }, + "end": { + "$date": "2021-01-14T03:43:44.000Z" + }, + "events": [ + { + "uuid": "11cbf4d8-0485-4d18-878c-1904a592dfd6", + "start": { + "$date": "2021-01-14T03:29:52.000Z" + }, + "end": { + "$date": "2021-01-14T03:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "a4b9a967-162e-4cbd-bded-220feaf48a77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-14T03:32:48.000Z" + }, + "end": { + "$date": "2021-01-14T04:55:46.000Z" + }, + "events": [ + { + "uuid": "e5022d3d-be64-40cd-b97d-83e6472c9f18", + "start": { + "$date": "2021-01-14T03:32:48.000Z" + }, + "end": { + "$date": "2021-01-14T04:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "20c7e988-85fd-41fa-8db3-61e43ff97b62", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-14T03:39:36.000Z" + }, + "end": { + "$date": "2021-01-14T03:52:48.000Z" + }, + "events": [ + { + "uuid": "217f3dd6-b188-4fdc-9cd8-4d5d342c76b0", + "start": { + "$date": "2021-01-14T03:39:36.000Z" + }, + "end": { + "$date": "2021-01-14T03:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "990d443f-a466-4c5c-b13e-755a8e80973c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-14T03:39:41.000Z" + }, + "end": { + "$date": "2021-01-14T04:55:40.000Z" + }, + "events": [ + { + "uuid": "45f39171-db49-4ead-b73d-b840e60c332e", + "start": { + "$date": "2021-01-14T03:39:41.000Z" + }, + "end": { + "$date": "2021-01-14T04:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91399ecd-9031-4c32-bb60-3fdaedf2e51f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T03:46:59.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:08.000Z" + }, + "events": [ + { + "uuid": "b8adb233-f734-44c0-8b3d-e48d41ae0cb6", + "start": { + "$date": "2021-01-14T03:46:59.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73d68a86-0b0a-4f57-ba7c-5a0b81e1a055", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T03:46:51.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:02.000Z" + }, + "events": [ + { + "uuid": "df84a621-b9ce-4966-aa28-1ef56c0d25d7", + "start": { + "$date": "2021-01-14T03:46:51.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "022055e0-72cc-4034-a72f-20f0a449f1b5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T03:47:13.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:08.000Z" + }, + "events": [ + { + "uuid": "4f37c7d7-06a8-4fa2-9d74-a29947629d9b", + "start": { + "$date": "2021-01-14T03:47:13.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9174dbb3-8c6b-4e2d-a3e2-f22939ffa288", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T03:46:57.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:09.000Z" + }, + "events": [ + { + "uuid": "7f92f016-5916-471f-ad44-15473898a292", + "start": { + "$date": "2021-01-14T03:46:57.000Z" + }, + "end": { + "$date": "2021-01-14T04:23:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b9efe379-a26c-4073-9fde-afbd2a716db3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-14T04:10:22.000Z" + }, + "end": { + "$date": "2021-01-14T06:45:15.000Z" + }, + "events": [ + { + "uuid": "79a77a1a-ac73-4841-bfce-0255cc9b5d1f", + "start": { + "$date": "2021-01-14T04:10:22.000Z" + }, + "end": { + "$date": "2021-01-14T06:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fc60597-103b-4388-b6f0-7b1485e735b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T04:28:00.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:24.000Z" + }, + "events": [ + { + "uuid": "68e98ed5-7091-4927-b062-9cdddfaa245a", + "start": { + "$date": "2021-01-14T04:28:00.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb35bccd-7dae-4aab-9221-089f13dcf949", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T04:27:54.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:24.000Z" + }, + "events": [ + { + "uuid": "1d8413ab-b81b-40f8-a66a-80b99f8f73f4", + "start": { + "$date": "2021-01-14T04:27:54.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32b2009c-675f-45ea-ab3b-46d920c314be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T04:28:32.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:17.000Z" + }, + "events": [ + { + "uuid": "9a559c19-aecd-4687-b3c0-892994c72254", + "start": { + "$date": "2021-01-14T04:28:32.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d63991fd-5bab-40d4-9423-4ce292b0b716", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T04:27:59.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:27.000Z" + }, + "events": [ + { + "uuid": "da96c5ad-7eae-4671-8150-3b83bc677bff", + "start": { + "$date": "2021-01-14T04:27:59.000Z" + }, + "end": { + "$date": "2021-01-14T04:53:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6cb57768-cd6d-4051-90e3-8eb92b8a7d87", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-14T04:52:49.000Z" + }, + "end": { + "$date": "2021-01-14T07:02:32.000Z" + }, + "events": [ + { + "uuid": "22332a7a-4737-423f-a042-e24a136acb88", + "start": { + "$date": "2021-01-14T04:52:49.000Z" + }, + "end": { + "$date": "2021-01-14T07:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbb74078-0c06-468d-b1cf-8f191ad6f880", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T04:57:51.000Z" + }, + "end": { + "$date": "2021-01-14T05:11:59.000Z" + }, + "events": [ + { + "uuid": "bbc9258c-493f-4640-9019-045ce5208e43", + "start": { + "$date": "2021-01-14T04:57:51.000Z" + }, + "end": { + "$date": "2021-01-14T05:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85f7945b-867e-4017-838f-564f33fa2a39", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T04:57:42.000Z" + }, + "end": { + "$date": "2021-01-14T05:11:57.000Z" + }, + "events": [ + { + "uuid": "1ed21c14-e69e-4e36-8cc6-8253501722d2", + "start": { + "$date": "2021-01-14T04:57:42.000Z" + }, + "end": { + "$date": "2021-01-14T05:11:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f27fb4b-e869-4531-98c1-397d631b8c7a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T04:58:10.000Z" + }, + "end": { + "$date": "2021-01-14T05:11:59.000Z" + }, + "events": [ + { + "uuid": "ba3cbfe1-bfb7-4fdb-9506-ba5f1f6f6b55", + "start": { + "$date": "2021-01-14T04:58:10.000Z" + }, + "end": { + "$date": "2021-01-14T05:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e344c94-8b1f-49d1-ba2e-c84f68e4fb20", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T04:57:45.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:00.000Z" + }, + "events": [ + { + "uuid": "5a819098-1a79-4c67-ab76-8b4f00de8846", + "start": { + "$date": "2021-01-14T04:57:45.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0342b015-836a-4f0a-9eb7-ee9c1e037203", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T04:57:46.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:04.000Z" + }, + "events": [ + { + "uuid": "6a0d8551-0c6f-4371-98db-50f5c8cc316b", + "start": { + "$date": "2021-01-14T04:57:46.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f900a06-9611-4621-9ab5-2ee1c8c6ec20", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T04:58:03.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:03.000Z" + }, + "events": [ + { + "uuid": "923eebf0-5aff-4d05-959a-e26bde2a1386", + "start": { + "$date": "2021-01-14T04:58:03.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8ca2fa85-c15d-4e17-9fb3-0e6875ee667f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-14T05:10:08.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:33.000Z" + }, + "events": [ + { + "uuid": "f4056554-800a-451c-aeae-76dabe778965", + "start": { + "$date": "2021-01-14T05:10:08.000Z" + }, + "end": { + "$date": "2021-01-14T05:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5c5a867-fe35-42e2-8939-42c4179bfe2c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T05:15:07.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:22.000Z" + }, + "events": [ + { + "uuid": "9181ca0a-6ddc-4f0f-a57a-d0d9058bfefc", + "start": { + "$date": "2021-01-14T05:15:07.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c244718e-3c1b-4f38-8341-f3d1ecaeabc3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-14T05:12:48.000Z" + }, + "end": { + "$date": "2021-01-14T05:31:34.000Z" + }, + "events": [ + { + "uuid": "2ef3ed49-a719-418c-95f8-f3c00b31f29b", + "start": { + "$date": "2021-01-14T05:12:48.000Z" + }, + "end": { + "$date": "2021-01-14T05:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d8aa020-0dc2-4d2f-b0c3-db3a00c3c290", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T05:15:17.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:12.000Z" + }, + "events": [ + { + "uuid": "d18a027e-c8e5-4d76-89e2-640415cbeedf", + "start": { + "$date": "2021-01-14T05:15:17.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b10faadd-7785-4460-b67d-aa8bd9cf12e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T05:15:20.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:20.000Z" + }, + "events": [ + { + "uuid": "3c1af3b3-3cc1-441f-9b01-5f14ed69584e", + "start": { + "$date": "2021-01-14T05:15:20.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e335647c-4fbf-48f8-b837-905c64813827", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T05:15:20.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:16.000Z" + }, + "events": [ + { + "uuid": "d1a17e37-9528-466a-9abf-bf4ed7ff7f2f", + "start": { + "$date": "2021-01-14T05:15:20.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75845aee-0557-4724-80bb-2f69c4ad2ff4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T05:15:18.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:19.000Z" + }, + "events": [ + { + "uuid": "8e3f3559-1d9d-4199-937b-b6a4c624ba25", + "start": { + "$date": "2021-01-14T05:15:18.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7b87b22-ffde-46a0-b246-a89742fc54ae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T05:15:05.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:16.000Z" + }, + "events": [ + { + "uuid": "a4d76b9e-dbec-4ec8-b3ae-5693a5c30db7", + "start": { + "$date": "2021-01-14T05:15:05.000Z" + }, + "end": { + "$date": "2021-01-14T05:36:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c0b2cd4-3daf-487c-888b-00eb5476221e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T05:54:48.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:44.000Z" + }, + "events": [ + { + "uuid": "476c5aff-583a-42f8-9e80-4af525854bf1", + "start": { + "$date": "2021-01-14T05:54:48.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "895c44fa-8ca5-433f-8397-a744542dd8b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T05:41:33.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:38.000Z" + }, + "events": [ + { + "uuid": "b74cf642-0b75-4525-89f8-af783e41cee1", + "start": { + "$date": "2021-01-14T05:41:33.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d25bd47c-3a7c-48ce-977b-c865ae2b0b32", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T05:40:41.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:36.000Z" + }, + "events": [ + { + "uuid": "d2c9ed13-4542-46b5-9236-a6b5b225a7ab", + "start": { + "$date": "2021-01-14T05:40:41.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e8aaf05-c9e0-41c3-8204-0c2e18f3e03d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T05:40:26.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:40.000Z" + }, + "events": [ + { + "uuid": "250661dc-e7da-469b-98df-cbdfbfdb3a8b", + "start": { + "$date": "2021-01-14T05:40:26.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7918340-58cb-4548-887a-fad5ebb2c012", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T05:40:27.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:37.000Z" + }, + "events": [ + { + "uuid": "a7bfff62-f650-4ecb-9920-fe98633addb0", + "start": { + "$date": "2021-01-14T05:40:27.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3bae2ad-8961-4466-b237-58f5e5acde13", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T05:40:49.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:35.000Z" + }, + "events": [ + { + "uuid": "727eca7c-d109-40cb-91b7-d45c1003673e", + "start": { + "$date": "2021-01-14T05:40:49.000Z" + }, + "end": { + "$date": "2021-01-14T05:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03282929-1b77-4819-9131-e0fd3c413c80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T05:55:30.000Z" + }, + "end": { + "$date": "2021-01-14T05:58:32.000Z" + }, + "events": [ + { + "uuid": "9e46b79a-8dfd-454d-830c-e0d54958f3ce", + "start": { + "$date": "2021-01-14T05:55:30.000Z" + }, + "end": { + "$date": "2021-01-14T05:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b3991d26-f04a-4fda-b0aa-174ca3805f50", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-14T05:55:32.000Z" + }, + "end": { + "$date": "2021-01-14T14:20:44.000Z" + }, + "events": [ + { + "uuid": "e9870541-1139-4d2a-af12-2b0b373a4f99", + "start": { + "$date": "2021-01-14T05:55:32.000Z" + }, + "end": { + "$date": "2021-01-14T14:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "987c0ffd-9f08-4390-98aa-be5d2340b835", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T06:04:44.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:06.000Z" + }, + "events": [ + { + "uuid": "24e6951e-a5ef-46e8-961d-0c11f7be78e3", + "start": { + "$date": "2021-01-14T06:04:44.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72b87a98-f3e7-4e26-b8c1-48b3d2f24512", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T06:04:58.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:03.000Z" + }, + "events": [ + { + "uuid": "aa3f2eaf-5e16-4bf2-9835-110f36f7fd4f", + "start": { + "$date": "2021-01-14T06:04:58.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ebf3684-70ca-473f-b5c5-87aa314cdb23", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T06:04:37.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:03.000Z" + }, + "events": [ + { + "uuid": "fa197258-b43a-41bc-8913-01a23dae296c", + "start": { + "$date": "2021-01-14T06:04:37.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4069343-e6dc-447e-8644-ae648a4f29c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T06:04:42.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:01.000Z" + }, + "events": [ + { + "uuid": "25dd0690-1fc1-44d8-89c0-9988e2563588", + "start": { + "$date": "2021-01-14T06:04:42.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c70ac21a-59a8-45ea-bfc4-f26f9de43ccd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T06:04:39.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:10.000Z" + }, + "events": [ + { + "uuid": "a5b82469-8c00-4ed2-a328-581f3fb9bcc9", + "start": { + "$date": "2021-01-14T06:04:39.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89a6ab57-fa72-4b91-8a2f-7e05d0cff6b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T06:04:56.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:07.000Z" + }, + "events": [ + { + "uuid": "83ff20ef-db73-4de4-81c9-b2115e06c02a", + "start": { + "$date": "2021-01-14T06:04:56.000Z" + }, + "end": { + "$date": "2021-01-14T06:26:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3d496e92-be08-4648-9f9e-0810a83710d0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-14T06:09:31.000Z" + }, + "end": { + "$date": "2021-01-14T06:12:44.000Z" + }, + "events": [ + { + "uuid": "31b900e4-a5bb-46d6-9507-43fb64386f7e", + "start": { + "$date": "2021-01-14T06:09:31.000Z" + }, + "end": { + "$date": "2021-01-14T06:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "da2c5f37-25bb-4f7d-a295-15ba51b7daac", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-14T06:20:06.000Z" + }, + "end": { + "$date": "2021-01-14T07:43:54.000Z" + }, + "events": [ + { + "uuid": "2e0dd39a-8274-4c31-b850-6bcd761de6d2", + "start": { + "$date": "2021-01-14T06:20:06.000Z" + }, + "end": { + "$date": "2021-01-14T07:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd0f7eb9-94fc-4f8f-b5c8-2c7c94339e39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T06:33:01.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:50.000Z" + }, + "events": [ + { + "uuid": "9b734674-686c-40dd-a1a6-76c727138311", + "start": { + "$date": "2021-01-14T06:33:01.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a86594ee-3448-42b3-a734-e304795382d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T06:32:53.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:39.000Z" + }, + "events": [ + { + "uuid": "35c26eec-926f-4f9c-b846-18044b95899a", + "start": { + "$date": "2021-01-14T06:32:53.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50b9ae3e-37b3-4bc0-a345-c18f6d8dd96f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T06:32:52.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:37.000Z" + }, + "events": [ + { + "uuid": "44e847b1-04dc-4478-877c-142df0694492", + "start": { + "$date": "2021-01-14T06:32:52.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7da67cb8-8a67-4a97-8558-c89a29403b43", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T06:33:09.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:39.000Z" + }, + "events": [ + { + "uuid": "c164960f-c84d-47a4-9785-64c0407a5519", + "start": { + "$date": "2021-01-14T06:33:09.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd0e92c9-77aa-468f-a4f9-0e54d7775089", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T06:32:56.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:42.000Z" + }, + "events": [ + { + "uuid": "143aa954-2194-43c0-8ed7-f0e62000b8b5", + "start": { + "$date": "2021-01-14T06:32:56.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d9089d7-e039-4be9-9b4e-7d18acb631cf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T06:33:12.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:44.000Z" + }, + "events": [ + { + "uuid": "90d7009c-f2c4-4686-b58e-45219b131319", + "start": { + "$date": "2021-01-14T06:33:12.000Z" + }, + "end": { + "$date": "2021-01-14T07:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78fe6700-a0d9-4096-83fd-81a778dc61b1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T07:10:24.000Z" + }, + "end": { + "$date": "2021-01-14T07:12:59.000Z" + }, + "events": [ + { + "uuid": "c487567d-763c-484b-984b-6bbb52eca773", + "start": { + "$date": "2021-01-14T07:10:24.000Z" + }, + "end": { + "$date": "2021-01-14T07:12:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8924af69-8bed-467a-bbc8-8eed357a96eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T07:18:12.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:56.000Z" + }, + "events": [ + { + "uuid": "76e78c3b-872a-4f74-9528-3120392a5966", + "start": { + "$date": "2021-01-14T07:18:12.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0bb0243-7ce1-4186-9cb3-5a9c45526bdc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T07:18:09.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:49.000Z" + }, + "events": [ + { + "uuid": "9439459e-9c8c-4168-8c64-18ed9c7e4e45", + "start": { + "$date": "2021-01-14T07:18:09.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f336285-8401-40e6-bd05-e1fdc85e9e79", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T07:18:09.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:49.000Z" + }, + "events": [ + { + "uuid": "b25cc86d-52b1-4205-988f-5c89d85c1253", + "start": { + "$date": "2021-01-14T07:18:09.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb063f71-e5e6-4ac3-9d7b-a331aa41260d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-14T07:18:45.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:45.000Z" + }, + "events": [ + { + "uuid": "a81ac6db-6f93-4c16-abde-9e0b3d956aeb", + "start": { + "$date": "2021-01-14T07:18:45.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "563ca568-de19-42d5-b806-824ff173f32b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T07:18:13.000Z" + }, + "end": { + "$date": "2021-01-14T07:58:02.000Z" + }, + "events": [ + { + "uuid": "be47f782-c4d5-46df-9275-ad986afdc3f9", + "start": { + "$date": "2021-01-14T07:18:13.000Z" + }, + "end": { + "$date": "2021-01-14T07:58:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9665feed-488e-482c-95f3-30aaab600c20", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T07:22:40.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:47.000Z" + }, + "events": [ + { + "uuid": "30c8324b-6ec6-47eb-915b-9fecfa307c5e", + "start": { + "$date": "2021-01-14T07:22:40.000Z" + }, + "end": { + "$date": "2021-01-14T07:57:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f8e68b8-a84e-47d0-a533-32123855308a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T07:59:02.000Z" + }, + "end": { + "$date": "2021-01-14T08:02:16.000Z" + }, + "events": [ + { + "uuid": "0b446078-3c2d-48be-978b-c6fa582166d4", + "start": { + "$date": "2021-01-14T07:59:02.000Z" + }, + "end": { + "$date": "2021-01-14T08:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "203d43a6-5eb7-4b5a-bcf0-50bea453a29b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-14T15:23:36.000Z" + }, + "end": { + "$date": "2021-01-14T15:57:03.000Z" + }, + "events": [ + { + "uuid": "aa0e6193-23c1-49dc-8fa6-1f1e87e2c70d", + "start": { + "$date": "2021-01-14T15:23:36.000Z" + }, + "end": { + "$date": "2021-01-14T15:57:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ebfb2ba1-8e5a-4158-8279-9307ee3404d1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T15:26:36.000Z" + }, + "end": { + "$date": "2021-01-14T15:31:22.000Z" + }, + "events": [ + { + "uuid": "0d8a9cfc-3f27-48f5-8b59-f58278f81993", + "start": { + "$date": "2021-01-14T15:26:36.000Z" + }, + "end": { + "$date": "2021-01-14T15:31:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "28e1e8d0-a60f-4ff2-9990-02f2ef06d160", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-14T18:22:08.000Z" + }, + "end": { + "$date": "2021-01-14T19:33:07.000Z" + }, + "events": [ + { + "uuid": "33f2314a-d378-480b-a568-8dab088a475d", + "start": { + "$date": "2021-01-14T18:22:08.000Z" + }, + "end": { + "$date": "2021-01-14T18:37:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d67e025e-2644-40fe-a271-a08a633a74a8", + "start": { + "$date": "2021-01-14T18:37:08.000Z" + }, + "end": { + "$date": "2021-01-14T18:41:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "50e4733b-d0b3-4a42-9d9d-da5cc6198f86", + "start": { + "$date": "2021-01-14T18:41:08.000Z" + }, + "end": { + "$date": "2021-01-14T19:33:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "3a0d1054-cf03-4a26-b5e1-a787f6f5291b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T19:15:25.000Z" + }, + "end": { + "$date": "2021-01-14T19:26:22.000Z" + }, + "events": [ + { + "uuid": "29821b0a-a54f-47f2-b1aa-f2dd304c43b4", + "start": { + "$date": "2021-01-14T19:15:25.000Z" + }, + "end": { + "$date": "2021-01-14T19:21:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51ffd41b-8fdd-4fcc-87a5-d0b670b7c104", + "start": { + "$date": "2021-01-14T19:21:25.000Z" + }, + "end": { + "$date": "2021-01-14T19:26:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27d33091-49bb-4021-8b93-b8a7f812f3e1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T20:41:04.000Z" + }, + "end": { + "$date": "2021-01-14T21:14:28.000Z" + }, + "events": [ + { + "uuid": "c1bcbf04-3545-424f-b3fa-5a4b57453e1a", + "start": { + "$date": "2021-01-14T20:41:04.000Z" + }, + "end": { + "$date": "2021-01-14T21:14:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "169e5c33-c5a9-465a-8213-86ee049d37e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-14T20:38:47.000Z" + }, + "end": { + "$date": "2021-01-14T22:14:44.000Z" + }, + "events": [ + { + "uuid": "4ad96ea6-cb20-4480-8a30-117715c5abbb", + "start": { + "$date": "2021-01-14T20:38:47.000Z" + }, + "end": { + "$date": "2021-01-14T22:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "898ac6a0-ec52-44e0-a63c-55fc5ff36ea8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T20:44:20.000Z" + }, + "end": { + "$date": "2021-01-14T21:05:58.000Z" + }, + "events": [ + { + "uuid": "1a4c3582-8123-4048-89a0-6a9b4bf43c7d", + "start": { + "$date": "2021-01-14T20:44:20.000Z" + }, + "end": { + "$date": "2021-01-14T21:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8f6f1c8f-5294-4f34-ae77-31b4b95745ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-14T20:50:16.000Z" + }, + "end": { + "$date": "2021-01-14T21:15:14.000Z" + }, + "events": [ + { + "uuid": "915d71f2-d34c-48d5-8367-8106a3b96ac0", + "start": { + "$date": "2021-01-14T20:50:16.000Z" + }, + "end": { + "$date": "2021-01-14T21:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a1dff05d-d863-4a27-b742-b2d00428d782", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T20:51:33.000Z" + }, + "end": { + "$date": "2021-01-14T20:54:14.000Z" + }, + "events": [ + { + "uuid": "2e63993f-375b-408c-9f0e-35b44dd03289", + "start": { + "$date": "2021-01-14T20:51:33.000Z" + }, + "end": { + "$date": "2021-01-14T20:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a9fb9199-6804-4178-8784-56ca0e4c874d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-14T20:57:04.000Z" + }, + "end": { + "$date": "2021-01-14T21:36:58.000Z" + }, + "events": [ + { + "uuid": "ff5478a1-b9d1-4141-810c-6025f4710103", + "start": { + "$date": "2021-01-14T20:57:04.000Z" + }, + "end": { + "$date": "2021-01-14T21:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "540f8d7a-0878-421a-b7e8-cc3c67b3a2b9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T21:11:56.000Z" + }, + "end": { + "$date": "2021-01-14T21:36:39.000Z" + }, + "events": [ + { + "uuid": "f4f7838f-f503-424f-8981-8e0c2ec7459a", + "start": { + "$date": "2021-01-14T21:11:56.000Z" + }, + "end": { + "$date": "2021-01-14T21:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d92d5dba-db01-4ce1-a898-caf2d239d349", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T21:14:55.000Z" + }, + "end": { + "$date": "2021-01-14T21:32:34.000Z" + }, + "events": [ + { + "uuid": "5b6edc31-daa7-4870-989c-f2151a1df8fd", + "start": { + "$date": "2021-01-14T21:14:55.000Z" + }, + "end": { + "$date": "2021-01-14T21:32:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83a1bcde-3253-478b-af8f-d1b653e7df01", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T21:18:57.000Z" + }, + "end": { + "$date": "2021-01-14T21:42:43.000Z" + }, + "events": [ + { + "uuid": "02103163-7bd7-42c7-a811-7fa0e1701944", + "start": { + "$date": "2021-01-14T21:18:57.000Z" + }, + "end": { + "$date": "2021-01-14T21:42:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4800d72b-bfad-4c25-bfed-11b95ee0d525", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-14T21:46:45.000Z" + }, + "end": { + "$date": "2021-01-14T22:04:31.000Z" + }, + "events": [ + { + "uuid": "54237873-d206-4bd4-862c-0534df84792d", + "start": { + "$date": "2021-01-14T21:46:45.000Z" + }, + "end": { + "$date": "2021-01-14T22:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a9880996-2baa-4aff-9f94-3bf0f92e4e17", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-14T21:37:39.000Z" + }, + "end": { + "$date": "2021-01-15T00:16:46.000Z" + }, + "events": [ + { + "uuid": "da1f9502-163f-4a10-b674-c80a88ee90f0", + "start": { + "$date": "2021-01-14T21:37:39.000Z" + }, + "end": { + "$date": "2021-01-15T00:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8225e303-e1e2-4537-a65f-ec2851d1003b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-14T21:58:29.000Z" + }, + "end": { + "$date": "2021-01-14T22:04:35.000Z" + }, + "events": [ + { + "uuid": "8cad3fe5-eb6e-4520-8a89-688459e79278", + "start": { + "$date": "2021-01-14T21:58:29.000Z" + }, + "end": { + "$date": "2021-01-14T22:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "88afec81-7e45-4595-af20-408a7ad01ad9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-14T22:12:37.000Z" + }, + "end": { + "$date": "2021-01-14T23:36:11.000Z" + }, + "events": [ + { + "uuid": "3970a485-766f-41eb-82e1-94b36199119a", + "start": { + "$date": "2021-01-14T22:12:37.000Z" + }, + "end": { + "$date": "2021-01-14T23:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a393b96-40bb-4ff8-b23b-f8421ce9762c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-14T22:34:20.000Z" + }, + "end": { + "$date": "2021-01-14T23:10:49.000Z" + }, + "events": [ + { + "uuid": "4eb72cc9-0fa8-4650-b059-a4f7a24c9bf3", + "start": { + "$date": "2021-01-14T22:34:20.000Z" + }, + "end": { + "$date": "2021-01-14T23:10:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0de626e2-9d3b-4a7a-b3f7-01939a5f81ad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-14T22:44:10.000Z" + }, + "end": { + "$date": "2021-01-14T23:07:35.000Z" + }, + "events": [ + { + "uuid": "1d36b194-050c-43e6-b2b8-e8d8b6d9e5b2", + "start": { + "$date": "2021-01-14T22:44:10.000Z" + }, + "end": { + "$date": "2021-01-14T23:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "3ecf5f7c-aa3d-48c0-8554-22ee38280a55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T23:22:44.000Z" + }, + "end": { + "$date": "2021-01-14T23:24:19.000Z" + }, + "events": [ + { + "uuid": "dc4244df-9046-4446-8fae-5fad169465d9", + "start": { + "$date": "2021-01-14T23:22:44.000Z" + }, + "end": { + "$date": "2021-01-14T23:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "09b2fb7f-5711-46d7-a621-4ee8982ea6fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-14T23:26:04.000Z" + }, + "end": { + "$date": "2021-01-14T23:59:41.000Z" + }, + "events": [ + { + "uuid": "60246403-af14-4a9d-887c-eefff3547a78", + "start": { + "$date": "2021-01-14T23:26:04.000Z" + }, + "end": { + "$date": "2021-01-14T23:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ff326d20-57bd-4229-905e-bd776efb01de", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-14T23:39:41.000Z" + }, + "end": { + "$date": "2021-01-15T01:51:52.000Z" + }, + "events": [ + { + "uuid": "972bb8c4-9f76-4bb3-935b-9484e521094d", + "start": { + "$date": "2021-01-14T23:39:41.000Z" + }, + "end": { + "$date": "2021-01-15T01:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "6796106a-c377-4682-8ff4-294bbb2d63d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T00:00:21.000Z" + }, + "end": { + "$date": "2021-01-15T01:10:42.000Z" + }, + "events": [ + { + "uuid": "eab402e9-4203-4461-ba6b-426b15c9467e", + "start": { + "$date": "2021-01-15T00:00:21.000Z" + }, + "end": { + "$date": "2021-01-15T01:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "8a27742f-48f0-4d3b-9d28-be322941d680", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-15T00:08:45.000Z" + }, + "end": { + "$date": "2021-01-15T00:17:18.000Z" + }, + "events": [ + { + "uuid": "447ccd1b-e9fa-46d0-aa91-2ff2bf64418c", + "start": { + "$date": "2021-01-15T00:08:45.000Z" + }, + "end": { + "$date": "2021-01-15T00:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "75216f2f-3857-43fe-8c38-d18716cc8213", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T00:27:03.000Z" + }, + "end": { + "$date": "2021-01-15T00:39:09.000Z" + }, + "events": [ + { + "uuid": "f2df7002-8b16-48c2-a6fa-b216d29ffdcc", + "start": { + "$date": "2021-01-15T00:27:03.000Z" + }, + "end": { + "$date": "2021-01-15T00:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "f5f01271-0683-4e7f-9d7e-74310aaec7bb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-15T00:35:49.000Z" + }, + "end": { + "$date": "2021-01-15T02:56:57.000Z" + }, + "events": [ + { + "uuid": "497ded3b-551b-409e-858f-094ec46b1681", + "start": { + "$date": "2021-01-15T00:35:49.000Z" + }, + "end": { + "$date": "2021-01-15T00:51:49.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "2cd20668-4d09-4eed-9cab-1529c50f85f6", + "start": { + "$date": "2021-01-15T00:51:49.000Z" + }, + "end": { + "$date": "2021-01-15T02:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "8954c7c6-4030-42da-854e-747af8d055d4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T04:22:00.000Z" + }, + "end": { + "$date": "2021-01-15T04:22:05.000Z" + }, + "events": [ + { + "uuid": "3feaae2c-2545-43e5-9ddd-3a2a98f45ab4", + "start": { + "$date": "2021-01-15T04:22:00.000Z" + }, + "end": { + "$date": "2021-01-15T04:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "b2bb22e1-8293-4ebf-901d-1c05a29e08eb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-15T00:56:54.000Z" + }, + "end": { + "$date": "2021-01-15T01:42:31.000Z" + }, + "events": [ + { + "uuid": "7a5c989c-f6f6-4ff4-92f7-204a7d79da5d", + "start": { + "$date": "2021-01-15T00:56:54.000Z" + }, + "end": { + "$date": "2021-01-15T01:42:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "b76acaeb-ef3f-487f-8041-c81e758741f1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-15T04:20:45.000Z" + }, + "end": { + "$date": "2021-01-15T04:20:49.000Z" + }, + "events": [ + { + "uuid": "fa05edc3-d5d6-46c1-8e8d-4122d5cbe137", + "start": { + "$date": "2021-01-15T04:20:45.000Z" + }, + "end": { + "$date": "2021-01-15T04:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fef16ccd-49dc-4b7b-b659-be9eb78c2c27", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-15T01:41:39.000Z" + }, + "end": { + "$date": "2021-01-15T01:56:26.000Z" + }, + "events": [ + { + "uuid": "968f04ad-6d85-43d7-bf7f-c98d50ba6a6c", + "start": { + "$date": "2021-01-15T01:41:39.000Z" + }, + "end": { + "$date": "2021-01-15T01:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cf7262e1-3ce0-4ece-a9bb-87a6161f1fc1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T02:25:48.000Z" + }, + "end": { + "$date": "2021-01-15T02:57:59.000Z" + }, + "events": [ + { + "uuid": "2dca012d-5e5f-4e6d-8b85-44262cd1fbd8", + "start": { + "$date": "2021-01-15T02:25:48.000Z" + }, + "end": { + "$date": "2021-01-15T02:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3329c40a-5809-4a1e-a746-82d8ebd9a206", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-15T02:49:51.000Z" + }, + "end": { + "$date": "2021-01-15T03:19:54.000Z" + }, + "events": [ + { + "uuid": "f71a6841-ca2c-42ee-bcb8-28b670fc377a", + "start": { + "$date": "2021-01-15T02:49:51.000Z" + }, + "end": { + "$date": "2021-01-15T03:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2823709b-abc5-41aa-bbb0-fe6c3093199d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T02:59:54.000Z" + }, + "end": { + "$date": "2021-01-15T03:33:44.000Z" + }, + "events": [ + { + "uuid": "4b229571-a042-48a3-bba6-751352f9fe54", + "start": { + "$date": "2021-01-15T02:59:54.000Z" + }, + "end": { + "$date": "2021-01-15T03:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9fe5c512-f0fe-486f-9372-947373461186", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-15T03:22:25.000Z" + }, + "end": { + "$date": "2021-01-15T04:17:54.000Z" + }, + "events": [ + { + "uuid": "faed0308-a264-4af1-b1d1-92c6e63de438", + "start": { + "$date": "2021-01-15T03:22:25.000Z" + }, + "end": { + "$date": "2021-01-15T04:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bb8ca73c-1c86-41f4-af6e-539a5a271f53", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-15T03:31:54.000Z" + }, + "end": { + "$date": "2021-01-15T08:13:31.000Z" + }, + "events": [ + { + "uuid": "66b58ab4-560d-4290-b93e-55570609aaa2", + "start": { + "$date": "2021-01-15T03:31:54.000Z" + }, + "end": { + "$date": "2021-01-15T08:13:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed478de1-c147-4724-a172-f058813111c9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T03:29:38.000Z" + }, + "end": { + "$date": "2021-01-15T03:48:58.000Z" + }, + "events": [ + { + "uuid": "2c0d3cf9-bec0-4b5b-b4cc-bf99da727be7", + "start": { + "$date": "2021-01-15T03:29:38.000Z" + }, + "end": { + "$date": "2021-01-15T03:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40b9ae04-160a-4b8c-8383-a46ca799c4b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-15T03:57:44.000Z" + }, + "end": { + "$date": "2021-01-15T04:17:56.000Z" + }, + "events": [ + { + "uuid": "9b903cea-443b-4f95-ad2b-eb47e1323d8e", + "start": { + "$date": "2021-01-15T03:57:44.000Z" + }, + "end": { + "$date": "2021-01-15T04:17:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b80e50b9-4952-41da-9d88-3b5bb3113d0b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-15T04:17:54.000Z" + }, + "end": { + "$date": "2021-01-15T04:18:22.000Z" + }, + "events": [ + { + "uuid": "812068b3-4757-47d1-a897-4d120fdcd3ca", + "start": { + "$date": "2021-01-15T04:17:54.000Z" + }, + "end": { + "$date": "2021-01-15T04:18:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e36c407-56cb-4ddd-881d-6ccef2752bc3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T03:58:26.000Z" + }, + "end": { + "$date": "2021-01-15T04:17:54.000Z" + }, + "events": [ + { + "uuid": "822c0b5b-40b1-4f3e-b191-e468fb130cf3", + "start": { + "$date": "2021-01-15T03:58:26.000Z" + }, + "end": { + "$date": "2021-01-15T04:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d095aa4b-d417-434c-8d64-2336c49d7587", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-15T04:22:52.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:12.000Z" + }, + "events": [ + { + "uuid": "9f2353ce-369d-4d9b-8c65-afe34eb1e17d", + "start": { + "$date": "2021-01-15T04:22:52.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c345b672-c449-4761-beba-b5395b06b7ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T04:21:48.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:03.000Z" + }, + "events": [ + { + "uuid": "a8a1ad5c-230f-4165-9465-37d53ce4ca73", + "start": { + "$date": "2021-01-15T04:21:48.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84b9dcd3-dd7c-4261-97ac-868d28598699", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-15T04:21:54.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:03.000Z" + }, + "events": [ + { + "uuid": "86e8e963-a1e1-41e4-8a46-892b7e0fa606", + "start": { + "$date": "2021-01-15T04:21:54.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2027346-3cf0-4ac7-99a8-bf48b183bf35", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T04:22:31.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:09.000Z" + }, + "events": [ + { + "uuid": "33ef98ef-ffb3-4c85-b9e0-ce9719ee1ab1", + "start": { + "$date": "2021-01-15T04:22:31.000Z" + }, + "end": { + "$date": "2021-01-15T04:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "12d831e7-f4f2-4d03-bcc2-a62640e394ff", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T04:43:17.000Z" + }, + "end": { + "$date": "2021-01-15T04:45:42.000Z" + }, + "events": [ + { + "uuid": "bc32dfd2-5141-4fb1-911b-dffa42e04096", + "start": { + "$date": "2021-01-15T04:43:17.000Z" + }, + "end": { + "$date": "2021-01-15T04:45:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0d967b89-0ab5-41e7-b0e1-ffc5bd9ec2fb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T04:46:07.000Z" + }, + "end": { + "$date": "2021-01-15T06:07:57.000Z" + }, + "events": [ + { + "uuid": "c90ea1e0-99b4-43c0-b784-f2894a1ac5f1", + "start": { + "$date": "2021-01-15T04:46:07.000Z" + }, + "end": { + "$date": "2021-01-15T06:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ee3c933-cb45-4858-94d1-00e229425902", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-15T04:52:44.000Z" + }, + "end": { + "$date": "2021-01-15T05:17:43.000Z" + }, + "events": [ + { + "uuid": "b070918b-6d42-4b7a-bdcd-b4616c32c5d4", + "start": { + "$date": "2021-01-15T04:52:44.000Z" + }, + "end": { + "$date": "2021-01-15T05:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb375c4c-1316-4bec-b789-60a6a266b22c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-15T05:16:44.000Z" + }, + "end": { + "$date": "2021-01-15T05:19:09.000Z" + }, + "events": [ + { + "uuid": "6bea3019-3d5c-4037-9111-67a1d76400bf", + "start": { + "$date": "2021-01-15T05:16:44.000Z" + }, + "end": { + "$date": "2021-01-15T05:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "486020a8-4ec3-4291-88fb-117d3b0a4b48", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T04:52:47.000Z" + }, + "end": { + "$date": "2021-01-15T05:16:37.000Z" + }, + "events": [ + { + "uuid": "7d5cac16-4938-42cb-8566-bc3102b903bb", + "start": { + "$date": "2021-01-15T04:52:47.000Z" + }, + "end": { + "$date": "2021-01-15T05:16:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ceb6dfa9-4b1a-4e91-b5cc-fadba952dc42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T04:52:53.000Z" + }, + "end": { + "$date": "2021-01-15T05:16:33.000Z" + }, + "events": [ + { + "uuid": "faecb2f7-ed2d-4e0d-bf1d-26972e2ed662", + "start": { + "$date": "2021-01-15T04:52:53.000Z" + }, + "end": { + "$date": "2021-01-15T05:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "691071cf-faf2-42dc-b9b5-2ac7456d4bac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-15T05:12:37.000Z" + }, + "end": { + "$date": "2021-01-15T05:14:17.000Z" + }, + "events": [ + { + "uuid": "d4241826-9a55-4a51-a828-78cf5032938b", + "start": { + "$date": "2021-01-15T05:12:37.000Z" + }, + "end": { + "$date": "2021-01-15T05:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b257de7-8669-4a34-8837-97b22a38897b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-15T05:22:12.000Z" + }, + "end": { + "$date": "2021-01-15T05:48:29.000Z" + }, + "events": [ + { + "uuid": "f2dbd4c2-43a3-4084-9ebd-d48092c7c11c", + "start": { + "$date": "2021-01-15T05:22:12.000Z" + }, + "end": { + "$date": "2021-01-15T05:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4a204d1-695f-4079-b069-03176e84e66a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T05:54:34.000Z" + }, + "end": { + "$date": "2021-01-15T06:39:59.000Z" + }, + "events": [ + { + "uuid": "4738d7bb-f10b-4f91-8ad3-7a0d7e5b064a", + "start": { + "$date": "2021-01-15T05:54:34.000Z" + }, + "end": { + "$date": "2021-01-15T06:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86b9bdd6-a974-4e0d-ae13-82d41b08b8d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-15T05:22:45.000Z" + }, + "end": { + "$date": "2021-01-15T05:47:50.000Z" + }, + "events": [ + { + "uuid": "26966277-83b1-45f4-9a1b-5bd2bd44f06b", + "start": { + "$date": "2021-01-15T05:22:45.000Z" + }, + "end": { + "$date": "2021-01-15T05:47:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e299f9dd-9f1b-4a58-9559-0be09a564fcf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T05:22:23.000Z" + }, + "end": { + "$date": "2021-01-15T05:47:58.000Z" + }, + "events": [ + { + "uuid": "6c397869-675a-4e2d-af2f-0b116b38f8f9", + "start": { + "$date": "2021-01-15T05:22:23.000Z" + }, + "end": { + "$date": "2021-01-15T05:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "99080472-2d6f-425b-928c-b6747efaa9c2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-15T05:21:54.000Z" + }, + "end": { + "$date": "2021-01-15T06:20:54.000Z" + }, + "events": [ + { + "uuid": "25aca28c-c715-4182-a2aa-ee61995a6302", + "start": { + "$date": "2021-01-15T05:21:54.000Z" + }, + "end": { + "$date": "2021-01-15T06:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "feb17227-fe48-4e56-aa4c-dbe7b24ffc75", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-15T05:36:45.000Z" + }, + "end": { + "$date": "2021-01-15T07:18:56.000Z" + }, + "events": [ + { + "uuid": "9de0737c-9d94-4ab4-9c78-ceaa2a3938b8", + "start": { + "$date": "2021-01-15T05:36:45.000Z" + }, + "end": { + "$date": "2021-01-15T07:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36e6f6c0-1602-45d3-bf4e-0398979f3a73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-15T05:54:16.000Z" + }, + "end": { + "$date": "2021-01-15T06:40:01.000Z" + }, + "events": [ + { + "uuid": "2ccde5be-e9a1-47d7-88b7-0eef63da1f55", + "start": { + "$date": "2021-01-15T05:54:16.000Z" + }, + "end": { + "$date": "2021-01-15T06:40:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99441361-2e67-4878-869f-83d4b667f46e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-15T05:54:16.000Z" + }, + "end": { + "$date": "2021-01-15T06:40:01.000Z" + }, + "events": [ + { + "uuid": "97c47dbc-3058-4ed6-bbfe-1cfed51a1e6c", + "start": { + "$date": "2021-01-15T05:54:16.000Z" + }, + "end": { + "$date": "2021-01-15T06:40:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32409712-1d48-438c-b17d-f66ddb0c3930", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T05:54:08.000Z" + }, + "end": { + "$date": "2021-01-15T06:11:09.000Z" + }, + "events": [ + { + "uuid": "2cc8c3a3-f667-4686-848e-9d0402ce804b", + "start": { + "$date": "2021-01-15T05:54:08.000Z" + }, + "end": { + "$date": "2021-01-15T06:11:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b591b7b2-1337-4611-a1ce-8767a2bdf2b3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-15T05:54:21.000Z" + }, + "end": { + "$date": "2021-01-15T06:40:02.000Z" + }, + "events": [ + { + "uuid": "00711990-f7dc-4875-8b71-d8a70acc41f7", + "start": { + "$date": "2021-01-15T05:54:21.000Z" + }, + "end": { + "$date": "2021-01-15T06:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "abfe8f33-693a-4723-ad33-d42eef5097d8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T06:14:53.000Z" + }, + "end": { + "$date": "2021-01-15T07:59:40.000Z" + }, + "events": [ + { + "uuid": "7b1f7f57-24da-4762-b41d-2f68dec14b73", + "start": { + "$date": "2021-01-15T06:14:53.000Z" + }, + "end": { + "$date": "2021-01-15T07:59:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dd80b6f-0e97-4e11-941e-3c7f2b2cb24b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-15T06:28:57.000Z" + }, + "end": { + "$date": "2021-01-15T06:39:57.000Z" + }, + "events": [ + { + "uuid": "2b9f9ca1-8d67-434f-bd0a-9f655f2b9aee", + "start": { + "$date": "2021-01-15T06:28:57.000Z" + }, + "end": { + "$date": "2021-01-15T06:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c1353e33-b93c-49ab-90cb-4a5b52d1b84f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-15T06:41:32.000Z" + }, + "end": { + "$date": "2021-01-15T06:52:51.000Z" + }, + "events": [ + { + "uuid": "b781f1d1-0215-470c-9e25-89959624e764", + "start": { + "$date": "2021-01-15T06:41:32.000Z" + }, + "end": { + "$date": "2021-01-15T06:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a5f3113-52da-4aed-a238-36a1b1cbfe09", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-15T07:01:06.000Z" + }, + "end": { + "$date": "2021-01-15T07:42:11.000Z" + }, + "events": [ + { + "uuid": "e777b477-0601-44b3-87ce-798803139deb", + "start": { + "$date": "2021-01-15T07:01:06.000Z" + }, + "end": { + "$date": "2021-01-15T07:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e79f8f0a-18a6-4619-b71d-69340b9b49d2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-15T08:49:12.000Z" + }, + "end": { + "$date": "2021-01-15T13:28:51.000Z" + }, + "events": [ + { + "uuid": "2ed41539-1b86-4736-8821-9a1d070b0eef", + "start": { + "$date": "2021-01-15T08:49:12.000Z" + }, + "end": { + "$date": "2021-01-15T13:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fd3a3050-8d37-49a3-8177-a3ee07ebac7f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-15T15:37:31.000Z" + }, + "end": { + "$date": "2021-01-15T16:47:51.000Z" + }, + "events": [ + { + "uuid": "394835fd-a11b-4318-85d7-73582f2d03ff", + "start": { + "$date": "2021-01-15T15:37:31.000Z" + }, + "end": { + "$date": "2021-01-15T16:47:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "9291c678-1d5f-48a1-a92c-64050ef49f31", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-15T16:54:02.000Z" + }, + "end": { + "$date": "2021-01-15T16:55:53.000Z" + }, + "events": [ + { + "uuid": "5193813a-f1b0-4b9e-8821-01a83e5d18dc", + "start": { + "$date": "2021-01-15T16:54:02.000Z" + }, + "end": { + "$date": "2021-01-15T16:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "882d84c0-8842-4391-b884-ca557d53d58e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T16:56:28.000Z" + }, + "end": { + "$date": "2021-01-15T18:01:14.000Z" + }, + "events": [ + { + "uuid": "22efe788-ecf9-461b-af10-277a446b3f27", + "start": { + "$date": "2021-01-15T16:56:28.000Z" + }, + "end": { + "$date": "2021-01-15T18:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "73bbef95-5475-4608-b251-fe7147bf0dc9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-15T16:56:48.000Z" + }, + "end": { + "$date": "2021-01-15T18:00:24.000Z" + }, + "events": [ + { + "uuid": "3070cb36-f793-425d-a3a4-34ad8b8a2ae2", + "start": { + "$date": "2021-01-15T16:56:48.000Z" + }, + "end": { + "$date": "2021-01-15T18:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "dadbbfe8-3bac-4235-bf6e-a6acc8235dca", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-15T17:12:17.000Z" + }, + "end": { + "$date": "2021-01-15T17:14:44.000Z" + }, + "events": [ + { + "uuid": "846ab607-c7c5-44b1-b5d8-069a32f5f52e", + "start": { + "$date": "2021-01-15T17:12:17.000Z" + }, + "end": { + "$date": "2021-01-15T17:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "966decea-85ef-4a05-b95d-6786057ac710", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-15T17:14:47.000Z" + }, + "end": { + "$date": "2021-01-15T18:27:29.000Z" + }, + "events": [ + { + "uuid": "9da48d61-8c17-4017-b268-72a6a8089782", + "start": { + "$date": "2021-01-15T17:14:47.000Z" + }, + "end": { + "$date": "2021-01-15T18:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c81d151-9014-4c2d-b5f8-cda1eadc01c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T18:29:46.000Z" + }, + "end": { + "$date": "2021-01-15T19:01:11.000Z" + }, + "events": [ + { + "uuid": "9e19af52-a3aa-42e5-a2fd-0bad047a1655", + "start": { + "$date": "2021-01-15T18:29:46.000Z" + }, + "end": { + "$date": "2021-01-15T19:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33edf4cf-1f59-4039-990a-13321c08c8c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T19:10:06.000Z" + }, + "end": { + "$date": "2021-01-15T19:44:16.000Z" + }, + "events": [ + { + "uuid": "2aa02e2b-3ef6-4f4d-a332-9f33216b4e03", + "start": { + "$date": "2021-01-15T19:10:06.000Z" + }, + "end": { + "$date": "2021-01-15T19:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55625406-a59d-40f8-86de-d7ead4b4c2a8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T19:49:26.000Z" + }, + "end": { + "$date": "2021-01-15T20:06:02.000Z" + }, + "events": [ + { + "uuid": "209366aa-3852-4a5b-a021-f1aa47a954bc", + "start": { + "$date": "2021-01-15T19:49:26.000Z" + }, + "end": { + "$date": "2021-01-15T20:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "362b450d-d601-4637-b154-3e73acf87824", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-15T20:11:15.000Z" + }, + "end": { + "$date": "2021-01-15T21:33:49.000Z" + }, + "events": [ + { + "uuid": "e9b0fd63-1a73-45f3-89bd-f27bc84dcba0", + "start": { + "$date": "2021-01-15T20:11:15.000Z" + }, + "end": { + "$date": "2021-01-15T21:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "15c344c3-8eb1-4fb4-a416-d773004bbbda", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-15T20:22:31.000Z" + }, + "end": { + "$date": "2021-01-15T21:01:44.000Z" + }, + "events": [ + { + "uuid": "cd7bf0d5-7f1e-499d-bf9b-fcbe6e8a1644", + "start": { + "$date": "2021-01-15T20:22:31.000Z" + }, + "end": { + "$date": "2021-01-15T21:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "389ad8d3-e8b2-4a90-8f67-0198568d1d8b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-15T21:21:59.000Z" + }, + "end": { + "$date": "2021-01-15T23:21:55.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-15T21:21:59.000Z" + }, + "end": { + "$date": "2021-01-15T23:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "42a079c7-b73d-45f9-9276-473b9c895589", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T21:50:27.000Z" + }, + "end": { + "$date": "2021-01-15T22:20:03.000Z" + }, + "events": [ + { + "uuid": "b2bca238-d844-4085-96b7-1017bcf1f0a1", + "start": { + "$date": "2021-01-15T21:50:27.000Z" + }, + "end": { + "$date": "2021-01-15T22:20:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5d803cdd-84a2-445e-b932-bafa7a1cf19b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-15T22:06:33.000Z" + }, + "end": { + "$date": "2021-01-15T23:12:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-15T22:06:33.000Z" + }, + "end": { + "$date": "2021-01-15T23:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "fa318be8-e8f9-4a7e-9d9b-d301558c59af", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-15T22:10:25.000Z" + }, + "end": { + "$date": "2021-01-16T05:10:23.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-15T22:10:25.000Z" + }, + "end": { + "$date": "2021-01-16T05:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e73368c8-7968-4e3a-be84-f8aed4f91db9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T23:01:41.000Z" + }, + "end": { + "$date": "2021-01-15T23:22:11.000Z" + }, + "events": [ + { + "uuid": "25a0b149-933f-4fa4-a46c-59edf83b36bb", + "start": { + "$date": "2021-01-15T23:01:41.000Z" + }, + "end": { + "$date": "2021-01-15T23:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "01d35760-e72a-42ba-a8da-8a8c6fffd287", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-15T23:12:52.000Z" + }, + "end": { + "$date": "2021-01-15T23:15:13.000Z" + }, + "events": [ + { + "uuid": "a225ca30-cb1d-418f-ba00-fe150c9f26f4", + "start": { + "$date": "2021-01-15T23:12:52.000Z" + }, + "end": { + "$date": "2021-01-15T23:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d2d22598-55b6-4a87-8365-1a5174d2d57a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-15T23:15:23.000Z" + }, + "end": { + "$date": "2021-01-15T23:58:48.000Z" + }, + "events": [ + { + "uuid": "322bdd82-ec9c-461e-8395-f9305bfbd031", + "start": { + "$date": "2021-01-15T23:15:23.000Z" + }, + "end": { + "$date": "2021-01-15T23:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6d7467d3-1529-43c1-9afb-88f6aac338f9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-15T23:24:31.000Z" + }, + "end": { + "$date": "2021-01-16T00:40:49.000Z" + }, + "events": [ + { + "uuid": "488c1042-1dee-4f11-966f-67a3a851e0eb", + "start": { + "$date": "2021-01-15T23:24:31.000Z" + }, + "end": { + "$date": "2021-01-16T00:40:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62da8aae-f8f4-41a6-afb6-4c4aed093870", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-15T23:27:21.000Z" + }, + "end": { + "$date": "2021-01-15T23:53:48.000Z" + }, + "events": [ + { + "uuid": "e750b937-d085-4866-ad99-18db1f4c1527", + "start": { + "$date": "2021-01-15T23:27:21.000Z" + }, + "end": { + "$date": "2021-01-15T23:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "98e9db29-0b8c-4f55-98d7-a5f33988670d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-15T23:44:07.000Z" + }, + "end": { + "$date": "2021-01-16T00:10:17.000Z" + }, + "events": [ + { + "uuid": "49f294da-2b2a-4f8f-9448-921f47c6d560", + "start": { + "$date": "2021-01-15T23:44:07.000Z" + }, + "end": { + "$date": "2021-01-16T00:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4544f695-bbe6-423b-aba5-3feec2198cad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-15T23:59:23.000Z" + }, + "end": { + "$date": "2021-01-16T00:38:11.000Z" + }, + "events": [ + { + "uuid": "3e5a37b3-e61a-45ba-bc9a-a1d2c2756be1", + "start": { + "$date": "2021-01-15T23:59:23.000Z" + }, + "end": { + "$date": "2021-01-16T00:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d58c028d-690f-44e8-9fc4-4641f067b501", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T00:40:17.000Z" + }, + "end": { + "$date": "2021-01-16T00:44:27.000Z" + }, + "events": [ + { + "uuid": "74d42e32-cf71-4b69-b01c-876a409d1897", + "start": { + "$date": "2021-01-16T00:40:17.000Z" + }, + "end": { + "$date": "2021-01-16T00:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "c85b5206-e3f1-4475-a632-f69efa39769c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T00:49:49.000Z" + }, + "end": { + "$date": "2021-01-16T01:03:59.000Z" + }, + "events": [ + { + "uuid": "8a8e5936-9efb-41f7-a506-290d74ae562f", + "start": { + "$date": "2021-01-16T00:49:49.000Z" + }, + "end": { + "$date": "2021-01-16T01:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2db5b84b-82b5-4663-8601-ade0fa5726ec", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T01:14:29.000Z" + }, + "end": { + "$date": "2021-01-16T01:50:30.000Z" + }, + "events": [ + { + "uuid": "50575422-953b-4b8c-ac81-97b038acfe0f", + "start": { + "$date": "2021-01-16T01:14:29.000Z" + }, + "end": { + "$date": "2021-01-16T01:50:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0ecb81b4-f10d-4202-9740-6dce2e2eb8d2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T01:26:08.000Z" + }, + "end": { + "$date": "2021-01-16T01:46:05.000Z" + }, + "events": [ + { + "uuid": "bb930cb1-2a84-4a9c-aa44-af79952473fa", + "start": { + "$date": "2021-01-16T01:26:08.000Z" + }, + "end": { + "$date": "2021-01-16T01:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "083034b6-c506-42c8-a138-b9b979b33121", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T01:55:10.000Z" + }, + "end": { + "$date": "2021-01-16T02:24:20.000Z" + }, + "events": [ + { + "uuid": "43cfe6c6-b921-4ab6-b1fa-49755f96556d", + "start": { + "$date": "2021-01-16T01:55:10.000Z" + }, + "end": { + "$date": "2021-01-16T02:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efd3a7fe-d7f4-40da-ba2d-26a6973e2c60", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T02:30:52.000Z" + }, + "end": { + "$date": "2021-01-16T02:33:10.000Z" + }, + "events": [ + { + "uuid": "ad0ead1b-a9be-4a76-860d-3e7e23967ba2", + "start": { + "$date": "2021-01-16T02:30:52.000Z" + }, + "end": { + "$date": "2021-01-16T02:33:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7e97911-6fe5-42f4-9599-adef169c2b69", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T01:56:29.000Z" + }, + "end": { + "$date": "2021-01-16T02:33:20.000Z" + }, + "events": [ + { + "uuid": "5dc38b32-caf7-4ec3-9dd5-9b37a7858aca", + "start": { + "$date": "2021-01-16T01:56:29.000Z" + }, + "end": { + "$date": "2021-01-16T02:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9aaf5adc-2fef-47b9-b959-8e72dbece425", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T01:55:03.000Z" + }, + "end": { + "$date": "2021-01-16T02:33:17.000Z" + }, + "events": [ + { + "uuid": "c708615e-bd4c-4a3c-91c0-4096eb449fa4", + "start": { + "$date": "2021-01-16T01:55:03.000Z" + }, + "end": { + "$date": "2021-01-16T02:33:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65237b0d-e01b-4c9c-a421-7e0e040813e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T02:37:20.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:40.000Z" + }, + "events": [ + { + "uuid": "8751941d-43db-45f8-81ce-d501e0542d16", + "start": { + "$date": "2021-01-16T02:37:20.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cbcf879-9510-44c9-98c7-7177abdfe1f5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T02:37:18.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:36.000Z" + }, + "events": [ + { + "uuid": "f19c928f-f536-420c-b7f8-a659d9cf0523", + "start": { + "$date": "2021-01-16T02:37:18.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e2e237c-68d6-46fe-8449-2fe3fbcbd435", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T02:37:35.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:35.000Z" + }, + "events": [ + { + "uuid": "543e31ec-2f20-4867-bf38-9414352406e6", + "start": { + "$date": "2021-01-16T02:37:35.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24bb35dd-7e27-4530-a6e2-3ae22421a142", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T02:37:13.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:44.000Z" + }, + "events": [ + { + "uuid": "48eef8c4-00bb-47f5-afb4-16ac3db5fa26", + "start": { + "$date": "2021-01-16T02:37:13.000Z" + }, + "end": { + "$date": "2021-01-16T02:59:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9ade9c0-ca59-423a-bf72-2cbfd28dcc0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T03:04:01.000Z" + }, + "end": { + "$date": "2021-01-16T03:35:51.000Z" + }, + "events": [ + { + "uuid": "8b204112-d820-43c7-bd9f-520f0f16785c", + "start": { + "$date": "2021-01-16T03:04:01.000Z" + }, + "end": { + "$date": "2021-01-16T03:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fecfc68-7691-45e7-83d9-ef2db040228e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T03:03:59.000Z" + }, + "end": { + "$date": "2021-01-16T03:35:57.000Z" + }, + "events": [ + { + "uuid": "58baab0f-1679-44a9-8f0b-a1f0828b1403", + "start": { + "$date": "2021-01-16T03:03:59.000Z" + }, + "end": { + "$date": "2021-01-16T03:35:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38e75a0d-3b61-45b8-9875-6e0e505ea8e7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T03:04:00.000Z" + }, + "end": { + "$date": "2021-01-16T03:36:12.000Z" + }, + "events": [ + { + "uuid": "f6dabd69-2da4-47e0-b8c8-02ed78b9b464", + "start": { + "$date": "2021-01-16T03:04:00.000Z" + }, + "end": { + "$date": "2021-01-16T03:36:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62370e9d-abbf-4879-ab3c-100e973fee33", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T03:13:09.000Z" + }, + "end": { + "$date": "2021-01-16T05:49:55.000Z" + }, + "events": [ + { + "uuid": "b9dd2e58-685e-4dda-9993-4a3d02a600a3", + "start": { + "$date": "2021-01-16T03:13:09.000Z" + }, + "end": { + "$date": "2021-01-16T05:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79685770-82fa-4478-88db-31e941f2f02a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T03:38:41.000Z" + }, + "end": { + "$date": "2021-01-16T04:00:18.000Z" + }, + "events": [ + { + "uuid": "55e0d8e1-b296-4aa3-b332-bfa20a2cd3fa", + "start": { + "$date": "2021-01-16T03:38:41.000Z" + }, + "end": { + "$date": "2021-01-16T04:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcb9f0bd-5a72-4737-be97-e4cec6d8654a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T03:38:39.000Z" + }, + "end": { + "$date": "2021-01-16T04:00:08.000Z" + }, + "events": [ + { + "uuid": "d8fb14f3-dfa3-4337-8100-eaf8310e1f75", + "start": { + "$date": "2021-01-16T03:38:39.000Z" + }, + "end": { + "$date": "2021-01-16T04:00:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7559eacd-cb0b-4754-ad35-1c7655ec07de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T03:38:36.000Z" + }, + "end": { + "$date": "2021-01-16T04:00:17.000Z" + }, + "events": [ + { + "uuid": "738340a9-244a-43cb-bdc0-129f7e12dd9e", + "start": { + "$date": "2021-01-16T03:38:36.000Z" + }, + "end": { + "$date": "2021-01-16T04:00:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "62a8ecd7-c7f3-4f9f-9634-f8afc6c53b6d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T03:38:45.000Z" + }, + "end": { + "$date": "2021-01-16T05:29:42.000Z" + }, + "events": [ + { + "uuid": "371f6249-21c2-4130-806c-0389d58ef40d", + "start": { + "$date": "2021-01-16T03:38:45.000Z" + }, + "end": { + "$date": "2021-01-16T05:29:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8d6b5db5-b35c-4c92-b5d3-08ea31e2372e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-16T03:40:34.000Z" + }, + "end": { + "$date": "2021-01-16T04:37:17.000Z" + }, + "events": [ + { + "uuid": "d23dc8ee-b2c0-4622-9993-2c51e76d469e", + "start": { + "$date": "2021-01-16T03:40:34.000Z" + }, + "end": { + "$date": "2021-01-16T04:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "570a70b2-0c63-47b5-bb46-66f0d58971ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T04:03:58.000Z" + }, + "end": { + "$date": "2021-01-16T04:43:18.000Z" + }, + "events": [ + { + "uuid": "2d84166f-5133-47f4-938f-ca89569720cc", + "start": { + "$date": "2021-01-16T04:03:58.000Z" + }, + "end": { + "$date": "2021-01-16T04:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3776ca5d-529f-48a8-995d-a14fbf57d441", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T04:03:55.000Z" + }, + "end": { + "$date": "2021-01-16T04:43:24.000Z" + }, + "events": [ + { + "uuid": "27a2b86c-2d2a-40e7-964a-5d2d1f811ff9", + "start": { + "$date": "2021-01-16T04:03:55.000Z" + }, + "end": { + "$date": "2021-01-16T04:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "309cb24f-10c5-43de-8b8f-5454ee559d29", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T04:03:57.000Z" + }, + "end": { + "$date": "2021-01-16T04:43:41.000Z" + }, + "events": [ + { + "uuid": "bcd7d02f-a12b-4a97-ab02-f64f7512445b", + "start": { + "$date": "2021-01-16T04:03:57.000Z" + }, + "end": { + "$date": "2021-01-16T04:43:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93fe8e04-47ac-47bf-af55-c66944b4186d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T05:02:34.000Z" + }, + "end": { + "$date": "2021-01-16T05:04:14.000Z" + }, + "events": [ + { + "uuid": "a78938fd-90b9-4100-9f4f-0d8add4fcb36", + "start": { + "$date": "2021-01-16T05:02:34.000Z" + }, + "end": { + "$date": "2021-01-16T05:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f372be4c-dc87-4b7b-88ca-d320a1ecd97c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T05:04:13.000Z" + }, + "end": { + "$date": "2021-01-16T05:09:58.000Z" + }, + "events": [ + { + "uuid": "57b701d5-c0c7-4345-8fd2-52b42c919307", + "start": { + "$date": "2021-01-16T05:04:13.000Z" + }, + "end": { + "$date": "2021-01-16T05:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64253fb8-cb4d-44e6-bcb8-b9876b93ba92", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T05:04:09.000Z" + }, + "end": { + "$date": "2021-01-16T05:05:05.000Z" + }, + "events": [ + { + "uuid": "7b7dd194-682a-49cb-be1c-9d980f927988", + "start": { + "$date": "2021-01-16T05:04:09.000Z" + }, + "end": { + "$date": "2021-01-16T05:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f49050d1-0d84-46dc-8f03-51c4c7474389", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T04:46:36.000Z" + }, + "end": { + "$date": "2021-01-16T05:04:10.000Z" + }, + "events": [ + { + "uuid": "6b98e23b-3c42-4b09-8e75-d72ba6d9ea2b", + "start": { + "$date": "2021-01-16T04:46:36.000Z" + }, + "end": { + "$date": "2021-01-16T05:04:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e5476b4-4f80-4aa1-9e96-58e8f6f6d326", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T05:04:15.000Z" + }, + "end": { + "$date": "2021-01-16T05:04:35.000Z" + }, + "events": [ + { + "uuid": "6cdf595c-c306-4830-bbde-f6c591d6c5f6", + "start": { + "$date": "2021-01-16T05:04:15.000Z" + }, + "end": { + "$date": "2021-01-16T05:04:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "c4608310-1097-4bfe-b3b1-f96ab3c56927", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T05:04:01.000Z" + }, + "end": { + "$date": "2021-01-16T05:52:21.000Z" + }, + "events": [ + { + "uuid": "5341da7a-4003-455b-95ef-59e04766ce28", + "start": { + "$date": "2021-01-16T05:04:01.000Z" + }, + "end": { + "$date": "2021-01-16T05:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6bf1193-a597-4b4a-806a-9779c569d686", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T05:17:56.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:59.000Z" + }, + "events": [ + { + "uuid": "776509b0-b16b-40ad-ad96-8f2e6268742e", + "start": { + "$date": "2021-01-16T05:17:56.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c204523-e22f-4ee3-b11d-b3a74fa28227", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T05:17:54.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:48.000Z" + }, + "events": [ + { + "uuid": "67827ddf-49a9-4eee-8425-42ddb681d831", + "start": { + "$date": "2021-01-16T05:17:54.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d996889-e462-4654-97c8-36e320856200", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T05:17:45.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:47.000Z" + }, + "events": [ + { + "uuid": "cd96a7e9-20a1-42bd-adab-1fc473a45af1", + "start": { + "$date": "2021-01-16T05:17:45.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2c193a5-c9be-4961-bb49-856297cafacf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-16T05:17:52.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:56.000Z" + }, + "events": [ + { + "uuid": "05577ba3-960a-4065-aca3-f77a107ec60c", + "start": { + "$date": "2021-01-16T05:17:52.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc055ac8-d5a3-49d2-9aa8-9b6345d2c6a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T05:17:51.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:46.000Z" + }, + "events": [ + { + "uuid": "8b75b2c0-d469-47e6-bf6e-9f35e9a4f939", + "start": { + "$date": "2021-01-16T05:17:51.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8708d85-52d5-4fdc-8a90-50388afcce79", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T05:17:51.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:56.000Z" + }, + "events": [ + { + "uuid": "f05045a3-db56-426f-9f76-6c71213137d4", + "start": { + "$date": "2021-01-16T05:17:51.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2179c37-65d5-4da0-a890-f749c48afd7c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T05:18:03.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:49.000Z" + }, + "events": [ + { + "uuid": "507bb49b-d076-4be1-99f2-dfcf1211bc5a", + "start": { + "$date": "2021-01-16T05:18:03.000Z" + }, + "end": { + "$date": "2021-01-16T05:36:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2cb3be31-e3f0-4861-b553-a908cca944a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T05:30:53.000Z" + }, + "end": { + "$date": "2021-01-16T06:15:15.000Z" + }, + "events": [ + { + "uuid": "6a986076-b29c-415d-952f-8fc0903c36cc", + "start": { + "$date": "2021-01-16T05:30:53.000Z" + }, + "end": { + "$date": "2021-01-16T06:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d8e60bd-14d1-4259-b873-99247c4912aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T05:57:56.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:51.000Z" + }, + "events": [ + { + "uuid": "9d7f6e35-a62c-44fb-bf02-1352ab4b9010", + "start": { + "$date": "2021-01-16T05:57:56.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7576e7ff-6a7a-4ce6-b48d-448491fb4d37", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T05:49:04.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:43.000Z" + }, + "events": [ + { + "uuid": "1e7f63fc-1ea8-4489-9f63-87adbff703e2", + "start": { + "$date": "2021-01-16T05:49:04.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "836fd15f-6033-4ef2-9e3d-7417e5a05a23", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-16T05:39:47.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:52.000Z" + }, + "events": [ + { + "uuid": "a8cac735-6a83-42ec-b398-2d96089e632a", + "start": { + "$date": "2021-01-16T05:39:47.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5e22af8-a690-496e-a439-8bb06384b4b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T05:39:46.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:47.000Z" + }, + "events": [ + { + "uuid": "9481f8f2-0a1f-48f5-b607-a693eacf874f", + "start": { + "$date": "2021-01-16T05:39:46.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ead6c01f-0849-4990-9029-935286009a87", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T05:39:46.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:43.000Z" + }, + "events": [ + { + "uuid": "d21c0ddf-43f2-49d3-a6a8-198dc6670c64", + "start": { + "$date": "2021-01-16T05:39:46.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14e097ca-1686-48b6-a5cb-6364dad796ef", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T05:39:49.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:44.000Z" + }, + "events": [ + { + "uuid": "f289945c-d708-45ce-adef-1c1ba542c34e", + "start": { + "$date": "2021-01-16T05:39:49.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df5a646b-d47b-4231-9299-199983a7a615", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T05:39:47.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:42.000Z" + }, + "events": [ + { + "uuid": "e581a28d-dc3a-46bf-b18d-1259678c8316", + "start": { + "$date": "2021-01-16T05:39:47.000Z" + }, + "end": { + "$date": "2021-01-16T05:57:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "60e52d00-ebe1-49ee-9599-7801888fac84", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T05:51:10.000Z" + }, + "end": { + "$date": "2021-01-16T06:19:28.000Z" + }, + "events": [ + { + "uuid": "f37916c7-f727-43fa-a984-4a3dd1785cbd", + "start": { + "$date": "2021-01-16T05:51:10.000Z" + }, + "end": { + "$date": "2021-01-16T06:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "1087b7b0-b867-4fa9-a10c-a48e5ca8c8ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T05:52:51.000Z" + }, + "end": { + "$date": "2021-01-16T06:18:48.000Z" + }, + "events": [ + { + "uuid": "c4df1931-f8e2-4575-9d34-2350e6d83bc7", + "start": { + "$date": "2021-01-16T05:52:51.000Z" + }, + "end": { + "$date": "2021-01-16T06:18:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4db1179d-195c-46fa-bf5e-34a1df5db683", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T06:00:13.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:18.000Z" + }, + "events": [ + { + "uuid": "9ac8e7de-ff81-483b-a32c-9602e75f2de1", + "start": { + "$date": "2021-01-16T06:00:13.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cac28ed-ea45-47e7-b6d3-c40fa683388c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T06:00:54.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:14.000Z" + }, + "events": [ + { + "uuid": "d41f5368-911b-44da-b9ea-6d5d70735e33", + "start": { + "$date": "2021-01-16T06:00:54.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9abd8df-c29c-44f3-a10c-7e438e4f3049", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T06:00:26.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:21.000Z" + }, + "events": [ + { + "uuid": "a63a35d7-011b-48cd-ab8d-ddb551aa31ea", + "start": { + "$date": "2021-01-16T06:00:26.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4fb8a1b-6778-4dde-ae81-7e3c758b7a34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T06:00:17.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:17.000Z" + }, + "events": [ + { + "uuid": "c36b9533-8840-49c6-9062-2eefcec7f3dd", + "start": { + "$date": "2021-01-16T06:00:17.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c998924-833c-4e0c-9b0c-66ec7be3c2a7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T06:00:12.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:17.000Z" + }, + "events": [ + { + "uuid": "9a1a1d0c-38e4-4c57-a3bb-2ddda8e2eefa", + "start": { + "$date": "2021-01-16T06:00:12.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9f7782b-f96e-47d8-adc1-37d57446fbce", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-16T06:00:12.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:22.000Z" + }, + "events": [ + { + "uuid": "a83a5c7a-af8a-473d-8f1d-015fdc1bc770", + "start": { + "$date": "2021-01-16T06:00:12.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e12de074-52e8-4ad9-a6a3-b2c1b30df471", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T06:00:14.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:15.000Z" + }, + "events": [ + { + "uuid": "dcaf3f82-5096-49ed-82cf-38a08b061909", + "start": { + "$date": "2021-01-16T06:00:14.000Z" + }, + "end": { + "$date": "2021-01-16T06:20:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d468fec8-a024-4638-92d1-33872070375b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T06:21:05.000Z" + }, + "end": { + "$date": "2021-01-16T06:22:12.000Z" + }, + "events": [ + { + "uuid": "59c567db-443b-4af7-9d99-2b5deaf44dc4", + "start": { + "$date": "2021-01-16T06:21:05.000Z" + }, + "end": { + "$date": "2021-01-16T06:22:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4a0296e-5e5a-4809-bb04-5298d290ae3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-16T06:26:18.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:23.000Z" + }, + "events": [ + { + "uuid": "05609cb5-9e4d-43f7-a9d5-92086d7142f4", + "start": { + "$date": "2021-01-16T06:26:18.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b964929-a8b6-4578-b5d5-8d136cd3c1ae", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T06:26:27.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:14.000Z" + }, + "events": [ + { + "uuid": "6c7cf9d6-c213-4423-8c3e-3ddfb8f50bf8", + "start": { + "$date": "2021-01-16T06:26:27.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee35e0e8-342e-4c11-878f-143ec0019608", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T06:26:09.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:19.000Z" + }, + "events": [ + { + "uuid": "88ba034b-6f3a-4681-be09-20df0f932b65", + "start": { + "$date": "2021-01-16T06:26:09.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "888f9a29-78ca-466a-960f-9f880eee53cb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T06:26:13.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:18.000Z" + }, + "events": [ + { + "uuid": "e2c06475-14c0-4f52-be99-d00d33af661f", + "start": { + "$date": "2021-01-16T06:26:13.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9533cdb-31f4-451e-aa74-3364ab43870d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-16T06:26:13.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:23.000Z" + }, + "events": [ + { + "uuid": "488117d7-47ac-4a50-b726-44bb4983a807", + "start": { + "$date": "2021-01-16T06:26:13.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d26ed8cf-ddf0-45a2-ae19-d30d5c6a5cf9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T06:26:25.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:16.000Z" + }, + "events": [ + { + "uuid": "dcba617c-78b9-4e0f-8d02-82eacdd7d69f", + "start": { + "$date": "2021-01-16T06:26:25.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53cdb962-a70a-4d9f-856b-52e44edb4b71", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T06:26:14.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:20.000Z" + }, + "events": [ + { + "uuid": "4d19d116-87be-46a4-8385-9f30c1da4770", + "start": { + "$date": "2021-01-16T06:26:14.000Z" + }, + "end": { + "$date": "2021-01-16T06:43:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5c95198c-b4a8-43b2-88ce-d43a4aec174f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T06:26:03.000Z" + }, + "end": { + "$date": "2021-01-16T07:39:28.000Z" + }, + "events": [ + { + "uuid": "a19644cf-2c99-4518-8a0c-2e7cd2605188", + "start": { + "$date": "2021-01-16T06:26:03.000Z" + }, + "end": { + "$date": "2021-01-16T07:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "e17d0219-7d7d-412c-a8a0-6062d937c2fd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T06:27:32.000Z" + }, + "end": { + "$date": "2021-01-16T07:39:54.000Z" + }, + "events": [ + { + "uuid": "b68cdd8b-1c5a-46eb-84e8-3ffc2eeba1d4", + "start": { + "$date": "2021-01-16T06:27:32.000Z" + }, + "end": { + "$date": "2021-01-16T07:39:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfc201dd-f719-4087-b68c-0e9ec07ec9cd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T06:48:32.000Z" + }, + "end": { + "$date": "2021-01-16T07:11:00.000Z" + }, + "events": [ + { + "uuid": "19652b62-421d-4571-953f-448d967344c3", + "start": { + "$date": "2021-01-16T06:48:32.000Z" + }, + "end": { + "$date": "2021-01-16T07:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4508e346-59b2-43fd-9f2a-41d662a14e9d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T06:45:28.000Z" + }, + "end": { + "$date": "2021-01-16T07:15:18.000Z" + }, + "events": [ + { + "uuid": "380f970b-bf8b-4577-b53b-3f76ed000f1d", + "start": { + "$date": "2021-01-16T06:45:28.000Z" + }, + "end": { + "$date": "2021-01-16T07:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82f41726-9b39-449d-8804-8584a16f2b0d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-16T06:47:48.000Z" + }, + "end": { + "$date": "2021-01-16T07:37:26.000Z" + }, + "events": [ + { + "uuid": "864e069e-7ad4-4053-924c-4cf7d4a09b97", + "start": { + "$date": "2021-01-16T06:47:48.000Z" + }, + "end": { + "$date": "2021-01-16T07:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "43e8828b-3b20-40c7-a99d-b29b202ec73a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-16T06:48:44.000Z" + }, + "end": { + "$date": "2021-01-16T07:37:55.000Z" + }, + "events": [ + { + "uuid": "a40a2573-a4a8-45be-acb4-59c83223106c", + "start": { + "$date": "2021-01-16T06:48:44.000Z" + }, + "end": { + "$date": "2021-01-16T07:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "94259bef-ddd9-4701-ba4f-dbf27d02a63e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-16T06:49:18.000Z" + }, + "end": { + "$date": "2021-01-16T07:37:16.000Z" + }, + "events": [ + { + "uuid": "e9d75c60-880d-4f27-9ca5-c5b5658c5aab", + "start": { + "$date": "2021-01-16T06:49:18.000Z" + }, + "end": { + "$date": "2021-01-16T07:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec4f218b-9444-4b35-8c58-3c9cf623dc6b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-16T07:13:23.000Z" + }, + "end": { + "$date": "2021-01-16T07:33:48.000Z" + }, + "events": [ + { + "uuid": "d2b38b07-b5e1-4c67-9b35-c86888c477ef", + "start": { + "$date": "2021-01-16T07:13:23.000Z" + }, + "end": { + "$date": "2021-01-16T07:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "34003fef-6a15-420d-84d2-ae3d4935b3a0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T07:35:48.000Z" + }, + "end": { + "$date": "2021-01-16T08:41:49.000Z" + }, + "events": [ + { + "uuid": "c0bb39bd-2345-4727-8d9a-001d19114394", + "start": { + "$date": "2021-01-16T07:35:48.000Z" + }, + "end": { + "$date": "2021-01-16T08:41:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "aa94ca4c-3017-4d43-bd9c-2a03c99acd79", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T07:40:14.000Z" + }, + "end": { + "$date": "2021-01-16T09:05:56.000Z" + }, + "events": [ + { + "uuid": "9ed51b47-338c-40db-8435-a3a0e7905327", + "start": { + "$date": "2021-01-16T07:40:14.000Z" + }, + "end": { + "$date": "2021-01-16T09:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "0209f272-2232-4fe9-9197-841d197a9374", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T08:00:36.000Z" + }, + "end": { + "$date": "2021-01-16T08:46:06.000Z" + }, + "events": [ + { + "uuid": "7551fa7c-c877-48f8-8a44-3c024e6ae7e3", + "start": { + "$date": "2021-01-16T08:00:36.000Z" + }, + "end": { + "$date": "2021-01-16T08:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0eabf510-c360-4eda-b128-10594645bfd7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-16T08:05:36.000Z" + }, + "end": { + "$date": "2021-01-16T13:45:29.000Z" + }, + "events": [ + { + "uuid": "078b36a3-289c-4e6a-be33-75f434623f5d", + "start": { + "$date": "2021-01-16T08:05:36.000Z" + }, + "end": { + "$date": "2021-01-16T13:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b6b49fd5-c62c-45e6-a181-32ac74eb4ace", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T08:41:59.000Z" + }, + "end": { + "$date": "2021-01-16T12:32:45.000Z" + }, + "events": [ + { + "uuid": "b27a424e-8e1d-41f9-bfe4-ffb6dbf49640", + "start": { + "$date": "2021-01-16T08:41:59.000Z" + }, + "end": { + "$date": "2021-01-16T12:32:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b02d56b7-c975-494d-85b4-db4aa12e3eb3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T08:55:12.000Z" + }, + "end": { + "$date": "2021-01-16T10:49:04.000Z" + }, + "events": [ + { + "uuid": "27ee3395-fd31-45ad-b7ff-d143398f3e39", + "start": { + "$date": "2021-01-16T08:55:12.000Z" + }, + "end": { + "$date": "2021-01-16T10:49:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "57390fbd-062d-4066-bb19-a2fa8d717d62", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T14:29:33.000Z" + }, + "end": { + "$date": "2021-01-16T18:10:27.000Z" + }, + "events": [ + { + "uuid": "86b27e46-8c3e-4ea1-bd28-f73e5b295142", + "start": { + "$date": "2021-01-16T14:29:33.000Z" + }, + "end": { + "$date": "2021-01-16T16:54:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03c0b408-e55b-46a6-b059-f2a901acf764", + "start": { + "$date": "2021-01-16T16:54:33.000Z" + }, + "end": { + "$date": "2021-01-16T17:25:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18717051-f7b3-46e0-8b4a-91bc8a2dc3d1", + "start": { + "$date": "2021-01-16T17:25:33.000Z" + }, + "end": { + "$date": "2021-01-16T18:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "94f07fe4-0b3a-43ea-b37a-8fda836385fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T15:41:31.000Z" + }, + "end": { + "$date": "2021-01-16T15:55:37.000Z" + }, + "events": [ + { + "uuid": "c8965374-f7ec-4f3d-b0dd-6c12e6970cea", + "start": { + "$date": "2021-01-16T15:41:31.000Z" + }, + "end": { + "$date": "2021-01-16T15:55:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "463a5a62-34c4-486e-a582-c5482d5b2f83", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T16:52:50.000Z" + }, + "end": { + "$date": "2021-01-16T17:36:45.000Z" + }, + "events": [ + { + "uuid": "ffa49ff7-32c7-426d-a78b-19d6b8ee57ad", + "start": { + "$date": "2021-01-16T16:52:50.000Z" + }, + "end": { + "$date": "2021-01-16T17:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "55f0f582-c697-4ea7-970c-cad0b13926f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T17:33:28.000Z" + }, + "end": { + "$date": "2021-01-16T18:16:08.000Z" + }, + "events": [ + { + "uuid": "f25785ad-b82e-4758-b9b9-bd660bcbabf1", + "start": { + "$date": "2021-01-16T17:33:28.000Z" + }, + "end": { + "$date": "2021-01-16T18:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "57e84ba5-fda5-4a50-8144-6cd2b392c102", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T17:40:51.000Z" + }, + "end": { + "$date": "2021-01-16T18:27:12.000Z" + }, + "events": [ + { + "uuid": "31dc68e4-2b7d-4bab-ad17-6d942e2e4a34", + "start": { + "$date": "2021-01-16T17:40:51.000Z" + }, + "end": { + "$date": "2021-01-16T18:27:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f66fbb8c-b4b3-4393-821e-56e2dda34801", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T18:38:49.000Z" + }, + "end": { + "$date": "2021-01-16T18:47:01.000Z" + }, + "events": [ + { + "uuid": "5e803f16-5d96-463f-97a1-75961fe137cb", + "start": { + "$date": "2021-01-16T18:38:49.000Z" + }, + "end": { + "$date": "2021-01-16T18:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c10837a1-67be-4134-ba29-b7f1e576fd65", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T18:49:12.000Z" + }, + "end": { + "$date": "2021-01-16T19:06:15.000Z" + }, + "events": [ + { + "uuid": "16c40ecf-39c4-440e-ba8b-71ae6fbdfe1c", + "start": { + "$date": "2021-01-16T18:49:12.000Z" + }, + "end": { + "$date": "2021-01-16T19:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "12864461-68c5-40b4-8ed7-1ac4488def44", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-16T18:53:21.000Z" + }, + "end": { + "$date": "2021-01-16T19:28:07.000Z" + }, + "events": [ + { + "uuid": "c765b243-0ed9-4763-81ed-c5c971a955d3", + "start": { + "$date": "2021-01-16T18:53:21.000Z" + }, + "end": { + "$date": "2021-01-16T19:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "61693076-3318-4d83-98e8-355ca1f3636b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T18:56:35.000Z" + }, + "end": { + "$date": "2021-01-16T20:25:52.000Z" + }, + "events": [ + { + "uuid": "b49c4cc0-6dc0-42f2-b958-7238309b51d1", + "start": { + "$date": "2021-01-16T18:56:35.000Z" + }, + "end": { + "$date": "2021-01-16T20:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "61d2dc5e-1687-47d3-a092-bd8c9b4e4458", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T19:06:59.000Z" + }, + "end": { + "$date": "2021-01-16T20:24:08.000Z" + }, + "events": [ + { + "uuid": "3bf1e704-6341-4807-bb71-b8e9011b21cc", + "start": { + "$date": "2021-01-16T19:06:59.000Z" + }, + "end": { + "$date": "2021-01-16T20:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "f5088be8-66bc-4386-8789-55ac531bf254", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-16T20:13:40.000Z" + }, + "end": { + "$date": "2021-01-16T22:09:28.000Z" + }, + "events": [ + { + "uuid": "786e64d1-bea5-4878-afd1-be254fbac3a6", + "start": { + "$date": "2021-01-16T20:13:40.000Z" + }, + "end": { + "$date": "2021-01-16T22:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c6a8269c-c3fc-4035-b7c1-f2038602dd68", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T20:26:42.000Z" + }, + "end": { + "$date": "2021-01-16T21:09:45.000Z" + }, + "events": [ + { + "uuid": "20461689-7074-4b0a-b7c8-662ac5b10b22", + "start": { + "$date": "2021-01-16T20:26:42.000Z" + }, + "end": { + "$date": "2021-01-16T21:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4aecb330-a45d-4778-acd5-5e1e8a22bcd7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T20:42:19.000Z" + }, + "end": { + "$date": "2021-01-16T20:54:39.000Z" + }, + "events": [ + { + "uuid": "7c648c3a-ea53-4754-8f87-92dfef16b0d8", + "start": { + "$date": "2021-01-16T20:42:19.000Z" + }, + "end": { + "$date": "2021-01-16T20:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "10befc9a-2802-4041-aa7d-50579e789aac", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T20:48:08.000Z" + }, + "end": { + "$date": "2021-01-16T22:25:43.000Z" + }, + "events": [ + { + "uuid": "1837c685-519e-4dfe-be3f-3284275ead9d", + "start": { + "$date": "2021-01-16T20:48:08.000Z" + }, + "end": { + "$date": "2021-01-16T22:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "75917899-e9f0-4822-8363-e7a39ba7eb20", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T21:01:34.000Z" + }, + "end": { + "$date": "2021-01-16T21:50:52.000Z" + }, + "events": [ + { + "uuid": "780ebb73-76a2-4c55-bc02-08429f68ca99", + "start": { + "$date": "2021-01-16T21:01:34.000Z" + }, + "end": { + "$date": "2021-01-16T21:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bd8ddb86-fe36-407e-bb0c-e78f2ef0553d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T21:01:35.000Z" + }, + "end": { + "$date": "2021-01-16T21:21:55.000Z" + }, + "events": [ + { + "uuid": "e5badb8a-6f31-4f41-8912-88372b245e7b", + "start": { + "$date": "2021-01-16T21:01:35.000Z" + }, + "end": { + "$date": "2021-01-16T21:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "03a8dd5d-f6e4-42cd-a441-773ec65e2282", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-16T21:11:40.000Z" + }, + "end": { + "$date": "2021-01-16T23:15:12.000Z" + }, + "events": [ + { + "uuid": "262925cf-a2d1-499a-983e-e8503d77574a", + "start": { + "$date": "2021-01-16T21:11:40.000Z" + }, + "end": { + "$date": "2021-01-16T23:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3a388dff-1620-463b-88a3-fa6e5907e161", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T21:14:57.000Z" + }, + "end": { + "$date": "2021-01-16T22:42:15.000Z" + }, + "events": [ + { + "uuid": "272ef5e2-b339-4d6e-819f-5540af0981ef", + "start": { + "$date": "2021-01-16T21:14:57.000Z" + }, + "end": { + "$date": "2021-01-16T22:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "899dcf1e-63b0-42d2-903d-808e07b34239", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-16T21:19:25.000Z" + }, + "end": { + "$date": "2021-01-16T21:27:20.000Z" + }, + "events": [ + { + "uuid": "1265071b-8435-49b5-99cc-f6639ed66a6c", + "start": { + "$date": "2021-01-16T21:19:25.000Z" + }, + "end": { + "$date": "2021-01-16T21:27:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "81501de5-f93d-4bd3-9db8-8270e5a4cc45", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-16T21:53:55.000Z" + }, + "end": { + "$date": "2021-01-17T04:07:55.000Z" + }, + "events": [ + { + "uuid": "ea8f19df-7684-45ee-b731-badd2bd651d7", + "start": { + "$date": "2021-01-16T21:53:55.000Z" + }, + "end": { + "$date": "2021-01-17T01:42:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7effee5f-85f1-4253-9fdd-21ecd45e309d", + "start": { + "$date": "2021-01-17T01:42:55.000Z" + }, + "end": { + "$date": "2021-01-17T02:06:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61819b9b-1781-420b-8888-2f28e93e748d", + "start": { + "$date": "2021-01-17T02:06:55.000Z" + }, + "end": { + "$date": "2021-01-17T04:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "05931417-c01c-4d4a-8b6c-375c6f86897d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T21:55:27.000Z" + }, + "end": { + "$date": "2021-01-16T22:22:04.000Z" + }, + "events": [ + { + "uuid": "b954ca2b-79b8-466c-8915-07aae9fb8a4f", + "start": { + "$date": "2021-01-16T21:55:27.000Z" + }, + "end": { + "$date": "2021-01-16T22:22:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b9aa8434-34c2-42fd-815c-31de37ec424f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-16T22:48:21.000Z" + }, + "end": { + "$date": "2021-01-16T23:18:23.000Z" + }, + "events": [ + { + "uuid": "fdce8842-11fd-4007-8286-1a6938323514", + "start": { + "$date": "2021-01-16T22:48:21.000Z" + }, + "end": { + "$date": "2021-01-16T23:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a5addedb-154a-4955-a93b-a7d5092439b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-16T22:53:59.000Z" + }, + "end": { + "$date": "2021-01-17T00:40:52.000Z" + }, + "events": [ + { + "uuid": "2e2a882e-c7b4-49ed-8c93-fad9236a593d", + "start": { + "$date": "2021-01-16T22:53:59.000Z" + }, + "end": { + "$date": "2021-01-16T23:35:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2cf0db12-96dc-4685-9bc2-d6fb0c1fc163", + "start": { + "$date": "2021-01-16T23:35:59.000Z" + }, + "end": { + "$date": "2021-01-16T23:44:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "236ae3cd-15ac-46ee-a3bd-4354ad140a30", + "start": { + "$date": "2021-01-16T23:44:59.000Z" + }, + "end": { + "$date": "2021-01-17T00:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23e2a73c-f161-4ff3-94a7-90785a55b0af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-16T23:33:38.000Z" + }, + "end": { + "$date": "2021-01-16T23:36:12.000Z" + }, + "events": [ + { + "uuid": "6d75b27f-c08b-4408-b840-66074524be26", + "start": { + "$date": "2021-01-16T23:33:38.000Z" + }, + "end": { + "$date": "2021-01-16T23:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13f6e8b1-af11-4718-bd21-2ee56944f9ff", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-16T23:40:07.000Z" + }, + "end": { + "$date": "2021-01-17T00:21:22.000Z" + }, + "events": [ + { + "uuid": "1620b776-934e-4fd2-b169-af2713c4c40e", + "start": { + "$date": "2021-01-16T23:40:07.000Z" + }, + "end": { + "$date": "2021-01-17T00:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b954128f-496b-4006-8c8b-b8061832294b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-16T23:38:08.000Z" + }, + "end": { + "$date": "2021-01-17T01:04:07.000Z" + }, + "events": [ + { + "uuid": "1965fe27-0763-4fa7-a9cd-3bd84cc23d0f", + "start": { + "$date": "2021-01-16T23:38:08.000Z" + }, + "end": { + "$date": "2021-01-17T01:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "10c68645-4360-4515-aeda-3fc9d0c7805e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-16T23:58:41.000Z" + }, + "end": { + "$date": "2021-01-17T00:28:51.000Z" + }, + "events": [ + { + "uuid": "c7447ed2-5d6f-4409-bd36-6190a197f551", + "start": { + "$date": "2021-01-16T23:58:41.000Z" + }, + "end": { + "$date": "2021-01-17T00:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d40ae450-29ab-47d4-9bf6-de744e760a60", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T00:00:08.000Z" + }, + "end": { + "$date": "2021-01-17T01:31:05.000Z" + }, + "events": [ + { + "uuid": "3d86dca2-e833-4c05-ab3f-f3644cae3303", + "start": { + "$date": "2021-01-17T00:00:08.000Z" + }, + "end": { + "$date": "2021-01-17T00:40:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0feec913-f983-4054-af3f-7bf97ca97cee", + "start": { + "$date": "2021-01-17T00:40:08.000Z" + }, + "end": { + "$date": "2021-01-17T00:41:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "105066ac-8952-485b-b4be-f68230eb8f86", + "start": { + "$date": "2021-01-17T00:41:08.000Z" + }, + "end": { + "$date": "2021-01-17T01:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "76597f45-1e36-434d-acd3-fde9feaa902f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T00:12:20.000Z" + }, + "end": { + "$date": "2021-01-17T01:46:06.000Z" + }, + "events": [ + { + "uuid": "9715220a-4915-4e71-b248-4ce400fe2046", + "start": { + "$date": "2021-01-17T00:12:20.000Z" + }, + "end": { + "$date": "2021-01-17T01:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ea8f2bc9-046a-4b05-b567-80a894659ea6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T00:22:34.000Z" + }, + "end": { + "$date": "2021-01-17T00:37:47.000Z" + }, + "events": [ + { + "uuid": "c1ea1a67-13e0-42b2-be98-7ab5090649cc", + "start": { + "$date": "2021-01-17T00:22:34.000Z" + }, + "end": { + "$date": "2021-01-17T00:37:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "35e0b1ea-f4a9-43ad-9b41-b58aa39d587d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T01:09:03.000Z" + }, + "end": { + "$date": "2021-01-17T01:31:23.000Z" + }, + "events": [ + { + "uuid": "1884850b-92c2-489e-b384-7d115fce7fe0", + "start": { + "$date": "2021-01-17T01:09:03.000Z" + }, + "end": { + "$date": "2021-01-17T01:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "73e72307-e22e-4ae0-a207-da8da91e9f11", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T01:31:48.000Z" + }, + "end": { + "$date": "2021-01-17T02:04:14.000Z" + }, + "events": [ + { + "uuid": "245522ab-6fd9-4349-ac29-e4c0a94dbcb3", + "start": { + "$date": "2021-01-17T01:31:48.000Z" + }, + "end": { + "$date": "2021-01-17T02:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "15be3027-89d3-4c79-b7d9-a4118990ad12", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T01:32:57.000Z" + }, + "end": { + "$date": "2021-01-17T02:04:02.000Z" + }, + "events": [ + { + "uuid": "0da95e91-6f16-4e57-becd-0771c3f1a832", + "start": { + "$date": "2021-01-17T01:32:57.000Z" + }, + "end": { + "$date": "2021-01-17T02:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "00b41ea6-2f06-4b14-9620-854147a42a0d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T01:37:55.000Z" + }, + "end": { + "$date": "2021-01-17T02:10:39.000Z" + }, + "events": [ + { + "uuid": "4c913ad6-5675-4d21-9bea-27d80b7c2165", + "start": { + "$date": "2021-01-17T01:37:55.000Z" + }, + "end": { + "$date": "2021-01-17T02:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d957708f-6cde-480f-8027-207570c0f3f5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T02:30:05.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:10.000Z" + }, + "events": [ + { + "uuid": "0927d4f2-a557-4b8f-af25-27fe0696d811", + "start": { + "$date": "2021-01-17T02:30:05.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad120797-21f7-403b-980c-0f480de26db7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T02:29:52.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:13.000Z" + }, + "events": [ + { + "uuid": "abc25c51-6ab7-4f45-aa47-dfeab563e569", + "start": { + "$date": "2021-01-17T02:29:52.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c672f75-38f5-486c-ba1d-ecfd75c240ff", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T02:29:52.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:08.000Z" + }, + "events": [ + { + "uuid": "7de8b062-e947-4e69-aacf-7110d2c183ed", + "start": { + "$date": "2021-01-17T02:29:52.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b5f5111-cbfb-4563-975b-0e730e84842c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T02:30:05.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:17.000Z" + }, + "events": [ + { + "uuid": "8eca364a-1206-450a-94a4-8106b74ce514", + "start": { + "$date": "2021-01-17T02:30:05.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23d129a5-9049-4fe1-a31a-8818004894f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T02:30:55.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:09.000Z" + }, + "events": [ + { + "uuid": "2a19a15a-b4ef-4315-b1a2-b0de853361c2", + "start": { + "$date": "2021-01-17T02:30:55.000Z" + }, + "end": { + "$date": "2021-01-17T02:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1383862d-5dbb-4600-9dc6-47e91184fc78", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T02:14:38.000Z" + }, + "end": { + "$date": "2021-01-17T03:00:52.000Z" + }, + "events": [ + { + "uuid": "c453fbfd-90eb-4cb2-8ed9-560151ba9afa", + "start": { + "$date": "2021-01-17T02:14:38.000Z" + }, + "end": { + "$date": "2021-01-17T03:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6808adff-6a3d-42a3-85a3-310cbdccb570", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T02:25:17.000Z" + }, + "end": { + "$date": "2021-01-17T03:34:54.000Z" + }, + "events": [ + { + "uuid": "f3bdffec-2a36-48fa-957f-e2a557421c1a", + "start": { + "$date": "2021-01-17T02:25:17.000Z" + }, + "end": { + "$date": "2021-01-17T03:34:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d25e92fb-4490-40fd-bb8b-f6f2ed67887c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T02:39:50.000Z" + }, + "end": { + "$date": "2021-01-17T04:18:05.000Z" + }, + "events": [ + { + "uuid": "d1deef3d-8843-4032-b3f2-f678369a57d1", + "start": { + "$date": "2021-01-17T02:39:50.000Z" + }, + "end": { + "$date": "2021-01-17T04:18:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09cfe5bf-28e8-428a-862e-556ad9fce451", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T03:27:03.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:40.000Z" + }, + "events": [ + { + "uuid": "f8e9acb8-2bdd-4d5a-af06-67b3f5fb74b1", + "start": { + "$date": "2021-01-17T03:27:03.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94196c3a-d93a-4269-98ea-46d85f2a0b1d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T03:27:06.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:40.000Z" + }, + "events": [ + { + "uuid": "ad68cd7e-908a-4786-b24b-ca4eab34d224", + "start": { + "$date": "2021-01-17T03:27:06.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c55e2951-f924-45ff-8f3e-8180e6116e01", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T03:27:36.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:31.000Z" + }, + "events": [ + { + "uuid": "76514719-eeb5-4af4-a2a5-e1d1cbe923fe", + "start": { + "$date": "2021-01-17T03:27:36.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d0e71aa-103d-4242-abd2-5bcc9e19fe70", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T03:27:14.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:30.000Z" + }, + "events": [ + { + "uuid": "efcd8dd3-772c-49eb-844b-1cd3c2ca704b", + "start": { + "$date": "2021-01-17T03:27:14.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "778d96d5-dc02-4cdb-87e2-2981c3b596b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T03:27:07.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:37.000Z" + }, + "events": [ + { + "uuid": "3d19f215-1bc6-4e8a-945b-96743e38ceeb", + "start": { + "$date": "2021-01-17T03:27:07.000Z" + }, + "end": { + "$date": "2021-01-17T04:05:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2761c11d-d958-4e9c-8a47-012400286e52", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T03:13:52.000Z" + }, + "end": { + "$date": "2021-01-17T03:43:58.000Z" + }, + "events": [ + { + "uuid": "e547c58b-9ea0-4af9-ba46-8b6eeca96ba2", + "start": { + "$date": "2021-01-17T03:13:52.000Z" + }, + "end": { + "$date": "2021-01-17T03:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d83f5b39-0552-43a3-baf3-fdacf870bd34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T04:17:27.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:21.000Z" + }, + "events": [ + { + "uuid": "cbc46667-f68a-4d9e-b366-152cd70e09c1", + "start": { + "$date": "2021-01-17T04:17:27.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd0b4ca0-af69-4ef6-8d9e-05149295fe3f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T04:17:24.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:25.000Z" + }, + "events": [ + { + "uuid": "d683510b-6a6d-4772-875b-7aae07803a32", + "start": { + "$date": "2021-01-17T04:17:24.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9d1751e-d9b8-4eee-956b-30957fd4cd64", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T04:17:48.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:24.000Z" + }, + "events": [ + { + "uuid": "7176dfa4-c7dc-401c-9e70-86acea5d5482", + "start": { + "$date": "2021-01-17T04:17:48.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b15b338-8a78-4729-8369-688e96f4f860", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T04:17:29.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:29.000Z" + }, + "events": [ + { + "uuid": "f29f8824-019f-4881-9ce2-d4e67be1053f", + "start": { + "$date": "2021-01-17T04:17:29.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48a60e1e-947c-4716-8d71-7d8dd90f5446", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T04:17:36.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:29.000Z" + }, + "events": [ + { + "uuid": "7fc4214a-f956-4491-8999-71c6861ff1e6", + "start": { + "$date": "2021-01-17T04:17:36.000Z" + }, + "end": { + "$date": "2021-01-17T04:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "31616ba1-c63e-478d-b6a2-dda5468f524d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T04:08:56.000Z" + }, + "end": { + "$date": "2021-01-17T05:55:42.000Z" + }, + "events": [ + { + "uuid": "f1e8b0c9-f9e7-4bb5-9107-c1cfd9cbe623", + "start": { + "$date": "2021-01-17T04:08:56.000Z" + }, + "end": { + "$date": "2021-01-17T05:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9d925b14-2a93-492d-a306-cef0ffeb3ddd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T04:13:04.000Z" + }, + "end": { + "$date": "2021-01-17T04:50:06.000Z" + }, + "events": [ + { + "uuid": "c75a1f3f-65b3-4c9e-819f-4f8cbd7e740b", + "start": { + "$date": "2021-01-17T04:13:04.000Z" + }, + "end": { + "$date": "2021-01-17T04:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "908e5333-5693-4986-81ae-edca46741f99", + "uuid": "034fabab-f65c-4626-93c4-839e46860353", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T04:16:55.000Z" + }, + "end": { + "$date": "2021-01-17T05:52:50.000Z" + }, + "events": [ + { + "uuid": "f833855b-df8b-40f9-a5e0-e359efa39adc", + "start": { + "$date": "2021-01-17T04:16:55.000Z" + }, + "end": { + "$date": "2021-01-17T05:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24bcfd61-5bd9-4556-979a-8bed2110e876", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T04:37:52.000Z" + }, + "end": { + "$date": "2021-01-17T04:40:22.000Z" + }, + "events": [ + { + "uuid": "c11b1ba7-3941-4f28-aaed-f64c703086b2", + "start": { + "$date": "2021-01-17T04:37:52.000Z" + }, + "end": { + "$date": "2021-01-17T04:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47da4443-4165-41e7-9214-5295352e635c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T04:45:15.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:22.000Z" + }, + "events": [ + { + "uuid": "b783c591-88c1-4ad2-bd42-4d557acd3e66", + "start": { + "$date": "2021-01-17T04:45:15.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db21613b-bf58-43ec-af0b-28a520e9eddf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T04:46:32.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:12.000Z" + }, + "events": [ + { + "uuid": "59cdee5a-5514-4bbc-86c0-a505bcbf9a77", + "start": { + "$date": "2021-01-17T04:46:32.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "486c5c66-b37d-44cf-82af-f331617917ec", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T04:45:15.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:11.000Z" + }, + "events": [ + { + "uuid": "7a5608be-8efc-4de6-b3f3-df0c9fcadee9", + "start": { + "$date": "2021-01-17T04:45:15.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2c2befa-532a-4301-be2c-f0623a5f74b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T04:45:22.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:22.000Z" + }, + "events": [ + { + "uuid": "c3de6670-4729-4420-b94e-1b8772bc8d1c", + "start": { + "$date": "2021-01-17T04:45:22.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cd8264d-08e3-460e-b27c-e7636af30336", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T04:48:46.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:12.000Z" + }, + "events": [ + { + "uuid": "9fcd477e-c479-46e4-9373-80fbbdccbc75", + "start": { + "$date": "2021-01-17T04:48:46.000Z" + }, + "end": { + "$date": "2021-01-17T05:17:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "486859c4-dc2f-42e0-83df-aabef948814c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T04:13:04.000Z" + }, + "end": { + "$date": "2021-01-17T04:52:11.000Z" + }, + "events": [ + { + "uuid": "38330e77-5be5-4c87-ad1d-91e1b0f3b1a0", + "start": { + "$date": "2021-01-17T04:13:04.000Z" + }, + "end": { + "$date": "2021-01-17T04:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a9664b85-e21a-42a7-a857-6c0e75ce062d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T04:50:41.000Z" + }, + "end": { + "$date": "2021-01-17T08:20:08.000Z" + }, + "events": [ + { + "uuid": "186033d4-fa1c-4b61-a555-1b50ab848149", + "start": { + "$date": "2021-01-17T04:50:41.000Z" + }, + "end": { + "$date": "2021-01-17T08:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a5b0345e-9a45-4433-bfb4-9ba4c48d04a1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-17T04:50:53.000Z" + }, + "end": { + "$date": "2021-01-17T08:20:19.000Z" + }, + "events": [ + { + "uuid": "5a105525-82b2-4b4c-aa8b-ceaff5bedefe", + "start": { + "$date": "2021-01-17T04:50:53.000Z" + }, + "end": { + "$date": "2021-01-17T08:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e8726c76-f45a-4400-a6a1-0ea2accbca8c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T04:13:04.000Z" + }, + "end": { + "$date": "2021-01-17T05:40:29.000Z" + }, + "events": [ + { + "uuid": "afc8f58b-73bd-44a4-a748-d44b8833fac8", + "start": { + "$date": "2021-01-17T04:13:04.000Z" + }, + "end": { + "$date": "2021-01-17T05:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d70b485d-2e98-4812-812e-4368f92504f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T05:18:13.000Z" + }, + "end": { + "$date": "2021-01-17T05:20:44.000Z" + }, + "events": [ + { + "uuid": "c553be4f-fd7c-4930-b06c-9fdbac56dea9", + "start": { + "$date": "2021-01-17T05:18:13.000Z" + }, + "end": { + "$date": "2021-01-17T05:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "785077ff-90fa-49ad-85d5-01d9901897ad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T05:19:23.000Z" + }, + "end": { + "$date": "2021-01-17T05:50:53.000Z" + }, + "events": [ + { + "uuid": "6693f9f0-0028-4bb5-b621-44b265495938", + "start": { + "$date": "2021-01-17T05:19:23.000Z" + }, + "end": { + "$date": "2021-01-17T05:50:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "67442203-6cc8-4652-8735-8bfa35dd204b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T05:20:41.000Z" + }, + "end": { + "$date": "2021-01-17T05:22:02.000Z" + }, + "events": [ + { + "uuid": "e6a8b6e0-febf-48ba-9b92-b6a5bd5c33e5", + "start": { + "$date": "2021-01-17T05:20:41.000Z" + }, + "end": { + "$date": "2021-01-17T05:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0eb6f4f0-2599-4cac-9a03-d46126c60e0c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T05:22:32.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:24.000Z" + }, + "events": [ + { + "uuid": "cf142d3d-ec6b-4bc8-a4ff-ae7e7950f7b4", + "start": { + "$date": "2021-01-17T05:22:32.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "45f374d9-58dc-4c1f-bfa0-a3afd30666ba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T05:30:38.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:13.000Z" + }, + "events": [ + { + "uuid": "8fc39658-c979-4390-8e08-50f8aa89958f", + "start": { + "$date": "2021-01-17T05:30:38.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d8b18517-dd3e-4e51-a062-af0ea17db775", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T05:40:58.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:37.000Z" + }, + "events": [ + { + "uuid": "b1e767e2-a996-4687-a9e6-89411fd47617", + "start": { + "$date": "2021-01-17T05:40:58.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "4729a543-66e6-4027-86a8-82dfeebb870c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T06:17:28.000Z" + }, + "end": { + "$date": "2021-01-17T07:34:50.000Z" + }, + "events": [ + { + "uuid": "b8b1d078-d04d-43c1-81fc-7e481e8e6f22", + "start": { + "$date": "2021-01-17T06:17:28.000Z" + }, + "end": { + "$date": "2021-01-17T07:34:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5c1a9240-fe5c-42ea-ac15-ccf4386ff56b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T05:51:21.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:19.000Z" + }, + "events": [ + { + "uuid": "b92f3686-8e53-49de-ab95-99e63324d006", + "start": { + "$date": "2021-01-17T05:51:21.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "3582896e-b879-4480-83b6-d24dc26edb3d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T06:15:31.000Z" + }, + "end": { + "$date": "2021-01-17T07:34:56.000Z" + }, + "events": [ + { + "uuid": "2cf18dce-77fb-4f13-b6c9-751fc4b49f06", + "start": { + "$date": "2021-01-17T06:15:31.000Z" + }, + "end": { + "$date": "2021-01-17T07:34:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "5e7ef175-ed51-40fb-b666-0b0c23799639", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T05:55:57.000Z" + }, + "end": { + "$date": "2021-01-17T06:06:21.000Z" + }, + "events": [ + { + "uuid": "211e802d-fc3f-4eb6-bf0a-212dfbebfbc0", + "start": { + "$date": "2021-01-17T05:55:57.000Z" + }, + "end": { + "$date": "2021-01-17T06:06:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "07f587d2-5f99-4b5e-894b-4f2e39724520", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T06:06:56.000Z" + }, + "end": { + "$date": "2021-01-17T06:16:12.000Z" + }, + "events": [ + { + "uuid": "56a4a845-d1d0-40cd-8cd7-81b20015a165", + "start": { + "$date": "2021-01-17T06:06:56.000Z" + }, + "end": { + "$date": "2021-01-17T06:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "6048c39c-ea16-4010-a682-b721c715f13c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T06:16:17.000Z" + }, + "end": { + "$date": "2021-01-17T07:34:54.000Z" + }, + "events": [ + { + "uuid": "3c0cde22-49f8-4d6e-8979-a0a8eaed6b4e", + "start": { + "$date": "2021-01-17T06:16:17.000Z" + }, + "end": { + "$date": "2021-01-17T07:34:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "72eae1e4-fbda-4f93-8eed-a1877dd71023", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-17T07:02:19.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:24.000Z" + }, + "events": [ + { + "uuid": "ed6744cf-066f-4aa8-9d2d-ec38e20816d2", + "start": { + "$date": "2021-01-17T07:02:19.000Z" + }, + "end": { + "$date": "2021-01-17T07:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10266b57-6ce3-48f0-8430-806b33e48aea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T07:30:19.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:14.000Z" + }, + "events": [ + { + "uuid": "e9a10764-7b78-472b-b27c-58a793fef5a6", + "start": { + "$date": "2021-01-17T07:30:19.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aede291-65b6-4daa-a514-8dfa677a2552", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T07:30:19.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:04.000Z" + }, + "events": [ + { + "uuid": "ececc4cc-80cd-4215-9055-5f1650259544", + "start": { + "$date": "2021-01-17T07:30:19.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd4f96bd-816d-4124-a1ee-2df2384c0ab7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T07:30:45.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:09.000Z" + }, + "events": [ + { + "uuid": "c2b075c9-f656-42ce-bd1f-18cc91166dda", + "start": { + "$date": "2021-01-17T07:30:45.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81b84548-4ec2-461a-9d5c-506194647e7d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-17T07:30:20.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:05.000Z" + }, + "events": [ + { + "uuid": "9cfe5d6b-2b5d-45c0-9b78-115c23b21033", + "start": { + "$date": "2021-01-17T07:30:20.000Z" + }, + "end": { + "$date": "2021-01-17T07:51:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "30b8acdb-2e6e-40b1-9871-6fcfa65c6c29", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T07:29:38.000Z" + }, + "end": { + "$date": "2021-01-17T10:28:39.000Z" + }, + "events": [ + { + "uuid": "0422491c-23cb-4baa-88a3-adff30c00d0f", + "start": { + "$date": "2021-01-17T07:29:38.000Z" + }, + "end": { + "$date": "2021-01-17T10:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2b3405b-3570-45ff-8ab7-d230c7825ab4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T07:54:04.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:45.000Z" + }, + "events": [ + { + "uuid": "0e2054e8-93bd-431d-822f-de401f048b15", + "start": { + "$date": "2021-01-17T07:54:04.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e389d6d-bc20-4362-98bf-27eae5252556", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T07:54:24.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:45.000Z" + }, + "events": [ + { + "uuid": "b68fbe89-5ca5-431d-a2ac-45a17a9ff094", + "start": { + "$date": "2021-01-17T07:54:24.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4000c34a-63c0-4ffd-8544-27b83ac5c9a0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T07:54:05.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:45.000Z" + }, + "events": [ + { + "uuid": "d80d65e7-428f-4039-83f0-7140b90afcda", + "start": { + "$date": "2021-01-17T07:54:05.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1355bccd-bcd2-445d-abd6-2ee57562c634", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T07:54:21.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:52.000Z" + }, + "events": [ + { + "uuid": "77bad66e-8880-43e1-ab50-a591c783e0ca", + "start": { + "$date": "2021-01-17T07:54:21.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35a36a90-be12-4bda-938d-7c0812400772", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-17T07:54:05.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:50.000Z" + }, + "events": [ + { + "uuid": "3242ec23-757d-4d52-ad91-cc267718196e", + "start": { + "$date": "2021-01-17T07:54:05.000Z" + }, + "end": { + "$date": "2021-01-17T08:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0c057292-5cd7-4da3-b26b-a84930b8408a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T07:53:37.000Z" + }, + "end": { + "$date": "2021-01-17T08:33:02.000Z" + }, + "events": [ + { + "uuid": "46ea6339-70ad-42d3-947b-45811826edb4", + "start": { + "$date": "2021-01-17T07:53:37.000Z" + }, + "end": { + "$date": "2021-01-17T08:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dbcd39fc-2718-4da7-bb4c-913b01f4f2ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T08:00:13.000Z" + }, + "end": { + "$date": "2021-01-17T08:27:00.000Z" + }, + "events": [ + { + "uuid": "3767cc84-30ae-4299-8d2c-7dc14117bf2a", + "start": { + "$date": "2021-01-17T08:00:13.000Z" + }, + "end": { + "$date": "2021-01-17T08:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6dc219b-f2e3-4811-b598-1e916ec8695c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T08:11:40.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:14.000Z" + }, + "events": [ + { + "uuid": "aad24e6d-47cf-4355-a1a6-e305b242560f", + "start": { + "$date": "2021-01-17T08:11:40.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a65f83e-eed3-4682-80f9-dcbb4a351341", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T08:11:35.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:11.000Z" + }, + "events": [ + { + "uuid": "126ba3cd-b297-4b44-9aa5-bb1099bc2cf0", + "start": { + "$date": "2021-01-17T08:11:35.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1791376a-0870-4d58-9f60-1142c14fdf10", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T08:11:56.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:10.000Z" + }, + "events": [ + { + "uuid": "63819bd5-ca60-4b6c-9300-4072bed3d8ff", + "start": { + "$date": "2021-01-17T08:11:56.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d17c9ee-e1d9-4868-8aa1-af5248d63979", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T08:11:56.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:07.000Z" + }, + "events": [ + { + "uuid": "a2800d88-c6bb-4662-a69a-20218aa1922d", + "start": { + "$date": "2021-01-17T08:11:56.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b01e6b0-3e6e-4634-898c-b32a26a69c11", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-17T08:11:36.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:10.000Z" + }, + "events": [ + { + "uuid": "1e563feb-2efc-4c2d-82a3-8c9de2a0f2b6", + "start": { + "$date": "2021-01-17T08:11:36.000Z" + }, + "end": { + "$date": "2021-01-17T08:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0341bb14-c054-4b8f-aa4c-0b0bb02bcd8c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T08:35:11.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:37.000Z" + }, + "events": [ + { + "uuid": "0b3d9488-516c-4972-ab35-9f69ca142cd9", + "start": { + "$date": "2021-01-17T08:35:11.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e265370-ef6b-4f86-9142-42c355791a1c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T08:36:06.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:31.000Z" + }, + "events": [ + { + "uuid": "b0717d39-6b14-496a-9c24-4f8af6a01dfa", + "start": { + "$date": "2021-01-17T08:36:06.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c168672-6488-4e08-ac54-0ee3c4bfe739", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T08:35:11.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:36.000Z" + }, + "events": [ + { + "uuid": "4c1a22c7-b5fc-44c0-bb3e-2298aa511e2c", + "start": { + "$date": "2021-01-17T08:35:11.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fce6029-3869-4354-8fe1-2fb014fde206", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T08:35:32.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:37.000Z" + }, + "events": [ + { + "uuid": "bf32a16e-e391-43d1-95b6-2e91c11932b4", + "start": { + "$date": "2021-01-17T08:35:32.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8db6bffd-5155-413e-ab75-7a0771a29e89", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-17T08:35:06.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:31.000Z" + }, + "events": [ + { + "uuid": "a8f615b9-994b-4e20-9dc1-e9420125a9ce", + "start": { + "$date": "2021-01-17T08:35:06.000Z" + }, + "end": { + "$date": "2021-01-17T08:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6786c5e2-73e6-4d11-9aa2-16992633450b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T08:52:42.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:08.000Z" + }, + "events": [ + { + "uuid": "d98746ee-8e44-4dc6-8dd7-ebcea99dd88b", + "start": { + "$date": "2021-01-17T08:52:42.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f5e54af-d42a-46e3-ad94-cca8b2998e8e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T08:53:36.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:07.000Z" + }, + "events": [ + { + "uuid": "a884c498-6329-4b48-b8d9-24658cd49c05", + "start": { + "$date": "2021-01-17T08:53:36.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64fffd1c-4618-4e47-8d50-06253a0162fa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T08:52:57.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:06.000Z" + }, + "events": [ + { + "uuid": "0be193d6-36ab-4187-ae52-87003971818b", + "start": { + "$date": "2021-01-17T08:52:57.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e99c9ea-fc0b-4dec-9154-3878bd30bc99", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-17T08:53:27.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:08.000Z" + }, + "events": [ + { + "uuid": "029102c4-e397-426f-99d3-40cc44b38cf2", + "start": { + "$date": "2021-01-17T08:53:27.000Z" + }, + "end": { + "$date": "2021-01-17T09:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8306413-4078-412e-a195-4fc319b724d9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T09:23:11.000Z" + }, + "end": { + "$date": "2021-01-17T09:24:38.000Z" + }, + "events": [ + { + "uuid": "6425e835-ba81-4a42-aa60-97bc21049388", + "start": { + "$date": "2021-01-17T09:23:11.000Z" + }, + "end": { + "$date": "2021-01-17T09:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a23ddb76-3104-447c-80c4-5bdfb4ddd063", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-17T09:24:38.000Z" + }, + "end": { + "$date": "2021-01-17T09:29:35.000Z" + }, + "events": [ + { + "uuid": "fb8ac3f0-6744-4575-bb01-0c1c81dc992d", + "start": { + "$date": "2021-01-17T09:24:38.000Z" + }, + "end": { + "$date": "2021-01-17T09:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7e94bb6c-4ce2-463d-b8f8-466e42db7804", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T09:27:03.000Z" + }, + "end": { + "$date": "2021-01-17T09:51:56.000Z" + }, + "events": [ + { + "uuid": "47431393-1590-4933-ad10-1d05ebf49953", + "start": { + "$date": "2021-01-17T09:27:03.000Z" + }, + "end": { + "$date": "2021-01-17T09:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c077a15f-8cb1-486e-ae73-1b6ee830189e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T09:35:13.000Z" + }, + "end": { + "$date": "2021-01-17T10:39:15.000Z" + }, + "events": [ + { + "uuid": "1a0a1952-f9d0-43a9-a0ac-01664f3dae35", + "start": { + "$date": "2021-01-17T09:35:13.000Z" + }, + "end": { + "$date": "2021-01-17T10:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b0b7f74f-ce0a-433e-b2a5-a62c947e1d84", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-01-17T12:41:44.000Z" + }, + "end": { + "$date": "2021-01-17T15:13:44.000Z" + }, + "events": [ + { + "uuid": "9fba447b-cf78-48a7-89e4-e4b2e3e0377f", + "start": { + "$date": "2021-01-17T12:41:44.000Z" + }, + "end": { + "$date": "2021-01-17T15:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "344b223b-07a2-4a8f-b502-d3f6853c40a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T17:12:11.000Z" + }, + "end": { + "$date": "2021-01-17T17:26:21.000Z" + }, + "events": [ + { + "uuid": "b240b0f1-dbc6-4a5a-94af-d129621e39ae", + "start": { + "$date": "2021-01-17T17:12:11.000Z" + }, + "end": { + "$date": "2021-01-17T17:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d9932550-f357-408b-8666-25cd2af7c0e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T17:31:12.000Z" + }, + "end": { + "$date": "2021-01-17T18:03:23.000Z" + }, + "events": [ + { + "uuid": "714574e8-cf2e-4bc7-b757-411a89fa3d19", + "start": { + "$date": "2021-01-17T17:31:12.000Z" + }, + "end": { + "$date": "2021-01-17T18:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "02d4f93c-f2e2-4412-be10-8dea0db77db6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T17:58:14.000Z" + }, + "end": { + "$date": "2021-01-17T18:16:16.000Z" + }, + "events": [ + { + "uuid": "787b7dca-6ed5-48d5-b46d-cd1222eeec5a", + "start": { + "$date": "2021-01-17T17:58:14.000Z" + }, + "end": { + "$date": "2021-01-17T18:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5cb22739-6928-44c4-87b5-642df88c0782", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T18:16:40.000Z" + }, + "end": { + "$date": "2021-01-17T18:22:07.000Z" + }, + "events": [ + { + "uuid": "e752d78a-ff79-4206-9935-1940d52ba895", + "start": { + "$date": "2021-01-17T18:16:40.000Z" + }, + "end": { + "$date": "2021-01-17T18:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "23d208fe-e532-4be8-afb5-79e61a02ad36", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T18:22:26.000Z" + }, + "end": { + "$date": "2021-01-17T18:44:55.000Z" + }, + "events": [ + { + "uuid": "c4c4cb4e-3f98-424f-a6a3-b188a9826672", + "start": { + "$date": "2021-01-17T18:22:26.000Z" + }, + "end": { + "$date": "2021-01-17T18:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3256d5fc-7470-4d52-b0ac-5d3978629912", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T18:45:19.000Z" + }, + "end": { + "$date": "2021-01-17T19:30:52.000Z" + }, + "events": [ + { + "uuid": "13f253fd-507f-4c88-8e46-750305beb335", + "start": { + "$date": "2021-01-17T18:45:19.000Z" + }, + "end": { + "$date": "2021-01-17T19:30:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7d2a688-6dc5-4e81-8834-dbe29a218466", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T18:51:50.000Z" + }, + "end": { + "$date": "2021-01-17T19:35:29.000Z" + }, + "events": [ + { + "uuid": "e556fda0-fa7f-4000-bb3d-aa6478cbff9a", + "start": { + "$date": "2021-01-17T18:51:50.000Z" + }, + "end": { + "$date": "2021-01-17T19:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "ebfc2650-e1e8-4451-9bf6-d06c5c63bfb5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T19:37:27.000Z" + }, + "end": { + "$date": "2021-01-17T19:42:57.000Z" + }, + "events": [ + { + "uuid": "3add6623-f601-4511-a412-a097d235522d", + "start": { + "$date": "2021-01-17T19:37:27.000Z" + }, + "end": { + "$date": "2021-01-17T19:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "f65be303-e315-44f4-a270-f8ee9dd813ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T19:38:07.000Z" + }, + "end": { + "$date": "2021-01-17T19:43:24.000Z" + }, + "events": [ + { + "uuid": "163fd0b8-c474-4bad-b075-5f1058d076a3", + "start": { + "$date": "2021-01-17T19:38:07.000Z" + }, + "end": { + "$date": "2021-01-17T19:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a19ef202-1b74-47d4-a8ca-1702bdb967e6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T19:43:38.000Z" + }, + "end": { + "$date": "2021-01-17T20:36:59.000Z" + }, + "events": [ + { + "uuid": "7b07a5fc-9918-4959-8389-3f73351daae7", + "start": { + "$date": "2021-01-17T19:43:38.000Z" + }, + "end": { + "$date": "2021-01-17T20:36:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f06d103a-3d53-4131-ab05-32836897b3ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T19:44:15.000Z" + }, + "end": { + "$date": "2021-01-17T20:36:56.000Z" + }, + "events": [ + { + "uuid": "9e492dfd-b71e-43ab-a23e-8f0690f150ae", + "start": { + "$date": "2021-01-17T19:44:15.000Z" + }, + "end": { + "$date": "2021-01-17T20:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "763c392d-2aad-4c2c-9d4c-7ce61c03c87a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-17T20:08:19.000Z" + }, + "end": { + "$date": "2021-01-17T22:02:38.000Z" + }, + "events": [ + { + "uuid": "c9b86c51-bd93-4d69-8e25-7b7a84dfd01e", + "start": { + "$date": "2021-01-17T20:08:19.000Z" + }, + "end": { + "$date": "2021-01-17T22:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "e656a30e-0fcd-4bc6-851f-34ff63ead343", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T20:38:10.000Z" + }, + "end": { + "$date": "2021-01-17T20:43:35.000Z" + }, + "events": [ + { + "uuid": "1111a6bd-fc53-48f5-9140-f0845fe4e816", + "start": { + "$date": "2021-01-17T20:38:10.000Z" + }, + "end": { + "$date": "2021-01-17T20:43:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bf7adaa1-b828-48cb-9041-393d26d2ddf4", + "uuid": "46668629-f5fa-43e3-a342-0ba8ec6ac923", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-17T20:38:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:41:54.000Z" + }, + "events": [ + { + "uuid": "e4a120c9-b855-4e93-b6d7-50bf18d61b72", + "start": { + "$date": "2021-01-17T20:38:40.000Z" + }, + "end": { + "$date": "2021-01-17T20:52:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d955b09-ca8c-4d3a-ae10-3293f74edb7c", + "start": { + "$date": "2021-01-17T20:52:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:05:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e896b9f9-11f8-4716-b1f7-58ae97267eed", + "start": { + "$date": "2021-01-17T21:05:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:15:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2344472-333a-45df-95f5-d767ba6170d7", + "start": { + "$date": "2021-01-17T21:15:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:17:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9bc1eda3-a12c-4cff-a6bd-1c342c1c988e", + "start": { + "$date": "2021-01-17T21:17:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:27:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e083b885-614e-4464-8cb8-81746426c84b", + "start": { + "$date": "2021-01-17T21:27:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:31:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9645d6f6-d15c-495b-a1ab-e5484e2c4475", + "start": { + "$date": "2021-01-17T21:31:40.000Z" + }, + "end": { + "$date": "2021-01-17T21:41:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "f69eedc3-867a-4fc6-aeaa-e3429d4c8656", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T20:45:15.000Z" + }, + "end": { + "$date": "2021-01-17T21:59:49.000Z" + }, + "events": [ + { + "uuid": "56816b16-9a0f-4ecf-8488-453c6d170eed", + "start": { + "$date": "2021-01-17T20:45:15.000Z" + }, + "end": { + "$date": "2021-01-17T21:03:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7086b28a-9dee-4fda-9487-bd23f847f549", + "start": { + "$date": "2021-01-17T21:03:15.000Z" + }, + "end": { + "$date": "2021-01-17T21:06:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c33cb3b6-5f30-4456-8ab7-ad9e06055f99", + "start": { + "$date": "2021-01-17T21:06:15.000Z" + }, + "end": { + "$date": "2021-01-17T21:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23dab54a-734c-4a69-8a08-203df5d522c7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T20:47:08.000Z" + }, + "end": { + "$date": "2021-01-17T21:04:51.000Z" + }, + "events": [ + { + "uuid": "8b5d4846-b32e-485c-b884-3fbb9c867e34", + "start": { + "$date": "2021-01-17T20:47:08.000Z" + }, + "end": { + "$date": "2021-01-17T21:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "34b9e29e-87c1-4ae8-8b50-ae02157085d4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T21:05:42.000Z" + }, + "end": { + "$date": "2021-01-17T22:16:37.000Z" + }, + "events": [ + { + "uuid": "a9805df8-d2ba-4d60-a738-68e045ba9ce1", + "start": { + "$date": "2021-01-17T21:05:42.000Z" + }, + "end": { + "$date": "2021-01-17T22:16:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb8c1249-6c07-4df4-84c3-3707eeae2a34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-17T22:10:20.000Z" + }, + "end": { + "$date": "2021-01-17T22:49:45.000Z" + }, + "events": [ + { + "uuid": "009caee2-b37b-4167-916d-b0e44126752a", + "start": { + "$date": "2021-01-17T22:10:20.000Z" + }, + "end": { + "$date": "2021-01-17T22:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "252bcb68-a0ac-452c-b431-233d5cc34562", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T21:57:34.000Z" + }, + "end": { + "$date": "2021-01-17T22:15:44.000Z" + }, + "events": [ + { + "uuid": "6fa27ef0-2a94-4d3d-8386-181dbf0b02af", + "start": { + "$date": "2021-01-17T21:57:34.000Z" + }, + "end": { + "$date": "2021-01-17T22:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1e859a6-b655-4e0b-9f86-c0a79c63f084", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-17T22:09:27.000Z" + }, + "end": { + "$date": "2021-01-17T22:49:53.000Z" + }, + "events": [ + { + "uuid": "42a59a88-c876-477b-905d-057945601733", + "start": { + "$date": "2021-01-17T22:09:27.000Z" + }, + "end": { + "$date": "2021-01-17T22:49:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "eae9c16e-8a54-4a2b-8e23-3c0c046fb04e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T22:15:06.000Z" + }, + "end": { + "$date": "2021-01-17T23:04:25.000Z" + }, + "events": [ + { + "uuid": "ec067079-da6a-444b-82ac-dca92b8146e8", + "start": { + "$date": "2021-01-17T22:15:06.000Z" + }, + "end": { + "$date": "2021-01-17T23:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f46a4762-4998-4edf-9398-679d7b79f19c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T22:15:54.000Z" + }, + "end": { + "$date": "2021-01-17T23:04:25.000Z" + }, + "events": [ + { + "uuid": "a3ccd665-c9a2-4840-afd7-a79cbae06751", + "start": { + "$date": "2021-01-17T22:15:54.000Z" + }, + "end": { + "$date": "2021-01-17T23:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6bf5a6e3-5c21-47d1-8cce-e588fb4b2781", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-17T22:19:50.000Z" + }, + "end": { + "$date": "2021-01-17T22:58:31.000Z" + }, + "events": [ + { + "uuid": "82f0e710-ebb9-41b1-9453-7abad4d2a8ae", + "start": { + "$date": "2021-01-17T22:19:50.000Z" + }, + "end": { + "$date": "2021-01-17T22:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bf7adaa1-b828-48cb-9041-393d26d2ddf4", + "uuid": "987cd51a-7eb3-4f71-a8fd-d68a2ac3d7ff", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-17T22:31:01.000Z" + }, + "end": { + "$date": "2021-01-17T22:36:47.000Z" + }, + "events": [ + { + "uuid": "533feb3f-17fe-4a09-af2e-6ae2ad8c6dc9", + "start": { + "$date": "2021-01-17T22:31:01.000Z" + }, + "end": { + "$date": "2021-01-17T22:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1751b892-d622-4703-8860-54ccc3548f77", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T00:15:48.000Z" + }, + "end": { + "$date": "2021-01-18T00:46:58.000Z" + }, + "events": [ + { + "uuid": "28bde4c2-dad4-49c8-9f5c-106580aff1f2", + "start": { + "$date": "2021-01-18T00:15:48.000Z" + }, + "end": { + "$date": "2021-01-18T01:24:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fff36c12-d3d3-4d8c-86a2-c29736dbf06a", + "start": { + "$date": "2021-01-18T01:24:48.000Z" + }, + "end": { + "$date": "2021-01-18T01:40:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42e1fabf-84eb-4509-8820-812bec58797e", + "start": { + "$date": "2021-01-18T01:40:48.000Z" + }, + "end": { + "$date": "2021-01-18T00:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67f6070a-ae64-4ea8-9209-a47cb784753f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T00:16:01.000Z" + }, + "end": { + "$date": "2021-01-18T00:47:05.000Z" + }, + "events": [ + { + "uuid": "20f6aaf0-f3ce-48d2-9ee2-5805d79efb79", + "start": { + "$date": "2021-01-18T00:16:01.000Z" + }, + "end": { + "$date": "2021-01-18T00:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "b75a7df6-2039-4b3a-8eac-96128b58139a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-17T23:05:21.000Z" + }, + "end": { + "$date": "2021-01-18T00:26:53.000Z" + }, + "events": [ + { + "uuid": "88763c44-d102-43ae-b914-12b0720dffb8", + "start": { + "$date": "2021-01-17T23:05:21.000Z" + }, + "end": { + "$date": "2021-01-18T00:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "bdee48eb-5220-494f-8df6-072086c26131", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-17T23:48:55.000Z" + }, + "end": { + "$date": "2021-01-18T00:33:25.000Z" + }, + "events": [ + { + "uuid": "3dabb628-4c52-48df-9e77-5198ce995327", + "start": { + "$date": "2021-01-17T23:48:55.000Z" + }, + "end": { + "$date": "2021-01-18T00:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d1006ee0-94a5-44d1-8551-ec76a8bc9459", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T23:06:52.000Z" + }, + "end": { + "$date": "2021-01-17T23:07:58.000Z" + }, + "events": [ + { + "uuid": "08299c96-1062-4d42-bc6c-b5a7e88d036b", + "start": { + "$date": "2021-01-17T23:06:52.000Z" + }, + "end": { + "$date": "2021-01-17T23:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ed61a075-4f68-44d5-94a3-f6d8ba51f1cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-17T23:09:43.000Z" + }, + "end": { + "$date": "2021-01-18T00:13:51.000Z" + }, + "events": [ + { + "uuid": "3310b1ed-7918-40b7-a2fe-10297640c88a", + "start": { + "$date": "2021-01-17T23:09:43.000Z" + }, + "end": { + "$date": "2021-01-18T00:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3ec96f80-bede-4a43-b32a-680c34a824d1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T23:24:14.000Z" + }, + "end": { + "$date": "2021-01-17T23:27:19.000Z" + }, + "events": [ + { + "uuid": "3e9ce98d-362f-4cad-9d8f-d5b4f32d56bc", + "start": { + "$date": "2021-01-17T23:24:14.000Z" + }, + "end": { + "$date": "2021-01-17T23:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b0284722-0ac8-4bc6-883e-8ae87bf1db70", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T23:27:29.000Z" + }, + "end": { + "$date": "2021-01-17T23:41:05.000Z" + }, + "events": [ + { + "uuid": "676849b2-b18e-4082-87f8-390ef99dd08c", + "start": { + "$date": "2021-01-17T23:27:29.000Z" + }, + "end": { + "$date": "2021-01-17T23:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "801901f7-533d-4560-b909-80f95c337c85", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-17T23:28:32.000Z" + }, + "end": { + "$date": "2021-01-18T00:07:59.000Z" + }, + "events": [ + { + "uuid": "2c5cd3df-041e-4048-a804-2fcb9d2d1280", + "start": { + "$date": "2021-01-17T23:28:32.000Z" + }, + "end": { + "$date": "2021-01-18T00:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "073f50c1-8fad-4ec9-ab93-866ab1c94c2a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-17T23:28:57.000Z" + }, + "end": { + "$date": "2021-01-18T01:56:19.000Z" + }, + "events": [ + { + "uuid": "fd247110-b801-4651-96df-2df6379206ea", + "start": { + "$date": "2021-01-17T23:28:57.000Z" + }, + "end": { + "$date": "2021-01-17T23:51:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d68f1773-f7ca-4d22-9399-d73ac80dc9ff", + "start": { + "$date": "2021-01-17T23:51:57.000Z" + }, + "end": { + "$date": "2021-01-17T23:56:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d34f577d-2311-491d-8214-6adbe04fe2d4", + "start": { + "$date": "2021-01-17T23:56:57.000Z" + }, + "end": { + "$date": "2021-01-18T00:06:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33508d33-6846-407e-a40d-554d5b2342f8", + "start": { + "$date": "2021-01-18T00:06:57.000Z" + }, + "end": { + "$date": "2021-01-18T00:32:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "678e85a4-dd70-44f5-b807-194b6d7ba500", + "start": { + "$date": "2021-01-18T00:32:57.000Z" + }, + "end": { + "$date": "2021-01-18T01:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d7bec6da-d0be-49a6-9885-873a544ed9ef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-17T23:41:25.000Z" + }, + "end": { + "$date": "2021-01-18T01:01:50.000Z" + }, + "events": [ + { + "uuid": "e6f22acc-3b55-4d24-af19-717ddfefae12", + "start": { + "$date": "2021-01-17T23:41:25.000Z" + }, + "end": { + "$date": "2021-01-18T00:18:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eeec1f86-5445-4492-b706-fccc689aa1fa", + "start": { + "$date": "2021-01-18T00:18:25.000Z" + }, + "end": { + "$date": "2021-01-18T00:27:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5183ef1e-95f1-49ec-8e76-222952d7c8e9", + "start": { + "$date": "2021-01-18T00:27:25.000Z" + }, + "end": { + "$date": "2021-01-18T01:01:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ca12d79-483c-4d4f-8223-04826502aace", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T00:18:09.000Z" + }, + "end": { + "$date": "2021-01-18T00:42:58.000Z" + }, + "events": [ + { + "uuid": "f98e12c4-20cc-4172-adff-1914a93e7abb", + "start": { + "$date": "2021-01-18T00:18:09.000Z" + }, + "end": { + "$date": "2021-01-18T00:42:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88eae0f2-8d8f-4784-af88-6cba9a3c0f6b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T00:18:26.000Z" + }, + "end": { + "$date": "2021-01-18T00:47:04.000Z" + }, + "events": [ + { + "uuid": "c888fb39-13a4-4a3a-ade6-9ed3eb43e2d5", + "start": { + "$date": "2021-01-18T00:18:26.000Z" + }, + "end": { + "$date": "2021-01-18T00:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "606b76aa-72b2-44a7-a6e5-c4fbeab09ec1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-18T00:33:16.000Z" + }, + "end": { + "$date": "2021-01-18T00:42:23.000Z" + }, + "events": [ + { + "uuid": "fabfd10f-7e01-468a-b2bf-44abe0832507", + "start": { + "$date": "2021-01-18T00:33:16.000Z" + }, + "end": { + "$date": "2021-01-18T00:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5927a213-0535-411b-afe3-da8ad4da3f24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-18T00:42:57.000Z" + }, + "end": { + "$date": "2021-01-18T00:44:37.000Z" + }, + "events": [ + { + "uuid": "b0361c30-6258-420a-a763-308a22bb1f77", + "start": { + "$date": "2021-01-18T00:42:57.000Z" + }, + "end": { + "$date": "2021-01-18T00:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d17d0e2-e795-4ea4-960e-908706aacf8c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T00:43:06.000Z" + }, + "end": { + "$date": "2021-01-18T00:47:10.000Z" + }, + "events": [ + { + "uuid": "63c12c10-591e-4f3b-bc43-0a63c54d8fb7", + "start": { + "$date": "2021-01-18T00:43:06.000Z" + }, + "end": { + "$date": "2021-01-18T00:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fca9477-0319-40c5-ac23-9d270ef55ab1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T03:31:24.000Z" + }, + "end": { + "$date": "2021-01-18T03:34:16.000Z" + }, + "events": [ + { + "uuid": "1bac73c9-b396-488c-808e-64fa6801cf12", + "start": { + "$date": "2021-01-18T03:31:24.000Z" + }, + "end": { + "$date": "2021-01-18T03:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35cc38ca-ec45-4914-ab0b-3b5d9fb729e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T02:01:48.000Z" + }, + "end": { + "$date": "2021-01-18T02:31:14.000Z" + }, + "events": [ + { + "uuid": "afe6bc95-07c8-42aa-813b-330333b04f75", + "start": { + "$date": "2021-01-18T02:01:48.000Z" + }, + "end": { + "$date": "2021-01-18T02:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fb4b46c-aaf4-4190-a6b8-72f93bfc5370", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T01:07:51.000Z" + }, + "end": { + "$date": "2021-01-18T01:43:37.000Z" + }, + "events": [ + { + "uuid": "ffed5092-81fc-407b-8f6b-3fb473c69721", + "start": { + "$date": "2021-01-18T01:07:51.000Z" + }, + "end": { + "$date": "2021-01-18T01:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6ef2737-11d9-42a5-8f33-2ef37700cdd0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T03:31:56.000Z" + }, + "end": { + "$date": "2021-01-18T05:18:56.000Z" + }, + "events": [ + { + "uuid": "4d697716-fbe0-49a4-95e5-a01ef0b47ed7", + "start": { + "$date": "2021-01-18T03:31:56.000Z" + }, + "end": { + "$date": "2021-01-18T06:26:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b71556e4-7a58-4bc1-a198-d7aaf4fabdb1", + "start": { + "$date": "2021-01-18T06:26:56.000Z" + }, + "end": { + "$date": "2021-01-18T06:56:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7e2eb2c-2b1e-4cbc-b249-5e8897d261b0", + "start": { + "$date": "2021-01-18T06:56:56.000Z" + }, + "end": { + "$date": "2021-01-18T05:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "04548c97-5b73-43ef-b38a-39932fb75b32", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T01:10:50.000Z" + }, + "end": { + "$date": "2021-01-18T01:27:30.000Z" + }, + "events": [ + { + "uuid": "6cb45226-10b7-459d-a4cb-0a87520ac283", + "start": { + "$date": "2021-01-18T01:10:50.000Z" + }, + "end": { + "$date": "2021-01-18T01:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b88d65e-6dc9-4d7e-921b-13099d079d17", + "uuid": "265c5463-b36f-424f-9e63-f56e39c326e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T01:14:09.000Z" + }, + "end": { + "$date": "2021-01-18T01:40:04.000Z" + }, + "events": [ + { + "uuid": "51498dad-e9ab-46ad-8c09-d49040ea0449", + "start": { + "$date": "2021-01-18T01:14:09.000Z" + }, + "end": { + "$date": "2021-01-18T01:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "048cca7b-8948-41b9-a95d-db70c7f1536e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T02:02:38.000Z" + }, + "end": { + "$date": "2021-01-18T02:31:14.000Z" + }, + "events": [ + { + "uuid": "3b6ad00b-b17a-418c-839e-d2fb9be4951d", + "start": { + "$date": "2021-01-18T02:02:38.000Z" + }, + "end": { + "$date": "2021-01-18T02:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "55d570cb-1eda-46d6-877d-d9b0bf2674a4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T01:49:17.000Z" + }, + "end": { + "$date": "2021-01-18T02:12:13.000Z" + }, + "events": [ + { + "uuid": "6a15956d-0c9c-4834-8a4f-ff12abf4535e", + "start": { + "$date": "2021-01-18T01:49:17.000Z" + }, + "end": { + "$date": "2021-01-18T02:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cc97bc3-494b-4ddf-bc79-9905d55a0fe7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T02:56:57.000Z" + }, + "end": { + "$date": "2021-01-18T03:31:21.000Z" + }, + "events": [ + { + "uuid": "25f6fe21-3601-4505-a2a1-824b60ba8c8a", + "start": { + "$date": "2021-01-18T02:56:57.000Z" + }, + "end": { + "$date": "2021-01-18T03:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "956902ab-8f9b-4149-b412-4bbdeefab9fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T02:56:07.000Z" + }, + "end": { + "$date": "2021-01-18T03:31:13.000Z" + }, + "events": [ + { + "uuid": "f3c343a5-14b9-4509-b482-5d97c8f54e2c", + "start": { + "$date": "2021-01-18T02:56:07.000Z" + }, + "end": { + "$date": "2021-01-18T03:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b88d65e-6dc9-4d7e-921b-13099d079d17", + "uuid": "d36552de-f438-40ea-aaf7-a02093c177f4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T02:48:08.000Z" + }, + "end": { + "$date": "2021-01-18T03:28:44.000Z" + }, + "events": [ + { + "uuid": "dce8a1fb-a1e5-4139-8260-05d5d00b9831", + "start": { + "$date": "2021-01-18T02:48:08.000Z" + }, + "end": { + "$date": "2021-01-18T03:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f3729c57-3983-4d15-b738-e39c485a02f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-18T03:07:32.000Z" + }, + "end": { + "$date": "2021-01-18T07:05:22.000Z" + }, + "events": [ + { + "uuid": "87530544-1d83-493f-a291-59623af21974", + "start": { + "$date": "2021-01-18T03:07:32.000Z" + }, + "end": { + "$date": "2021-01-18T04:42:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "099d6d12-11d5-46cd-b407-c1f7e1853fbf", + "start": { + "$date": "2021-01-18T04:42:32.000Z" + }, + "end": { + "$date": "2021-01-18T04:46:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b163dcd7-bfe2-4327-b2f1-c4542d3251de", + "start": { + "$date": "2021-01-18T04:46:32.000Z" + }, + "end": { + "$date": "2021-01-18T07:05:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0e47d217-5937-40df-aed3-518b770cf4e2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T03:07:37.000Z" + }, + "end": { + "$date": "2021-01-18T03:15:02.000Z" + }, + "events": [ + { + "uuid": "ff0a3b3a-4678-4a61-8828-754f3cd9a147", + "start": { + "$date": "2021-01-18T03:07:37.000Z" + }, + "end": { + "$date": "2021-01-18T03:15:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7ab59341-03ba-49a4-8d4a-b76ddc246b04", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T03:21:33.000Z" + }, + "end": { + "$date": "2021-01-18T03:32:03.000Z" + }, + "events": [ + { + "uuid": "c17a6040-e7fa-4973-a506-b50e619364c7", + "start": { + "$date": "2021-01-18T03:21:33.000Z" + }, + "end": { + "$date": "2021-01-18T03:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a00d2635-1dc2-463a-a33b-317cf04403a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T03:29:19.000Z" + }, + "end": { + "$date": "2021-01-18T04:46:55.000Z" + }, + "events": [ + { + "uuid": "42bcb19c-3ab9-44dd-a74b-73ead3e78f90", + "start": { + "$date": "2021-01-18T03:29:19.000Z" + }, + "end": { + "$date": "2021-01-18T04:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e7b6b25-e008-45f7-849d-d201913d7b20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T03:35:23.000Z" + }, + "end": { + "$date": "2021-01-18T04:47:00.000Z" + }, + "events": [ + { + "uuid": "b7e455c2-6f83-43d2-a488-5a73cee5b996", + "start": { + "$date": "2021-01-18T03:35:23.000Z" + }, + "end": { + "$date": "2021-01-18T04:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e90a289a-c401-42f1-bdc3-f26bf4201910", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-18T04:01:57.000Z" + }, + "end": { + "$date": "2021-01-18T04:44:56.000Z" + }, + "events": [ + { + "uuid": "419fbff5-3397-4598-b957-d6b7040ec9ed", + "start": { + "$date": "2021-01-18T04:01:57.000Z" + }, + "end": { + "$date": "2021-01-18T04:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "e94d2fac-cd44-480d-bb84-ec29ff78e111", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-18T04:28:51.000Z" + }, + "end": { + "$date": "2021-01-18T04:32:07.000Z" + }, + "events": [ + { + "uuid": "26d125fe-5edb-4c53-bf25-ad20b6c0ddd6", + "start": { + "$date": "2021-01-18T04:28:51.000Z" + }, + "end": { + "$date": "2021-01-18T04:32:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "72a4d9de-e201-4aa3-96c4-2f967212524b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T04:47:21.000Z" + }, + "end": { + "$date": "2021-01-18T05:30:21.000Z" + }, + "events": [ + { + "uuid": "e461cadb-87fe-4bce-bf2a-436a64be843e", + "start": { + "$date": "2021-01-18T04:47:21.000Z" + }, + "end": { + "$date": "2021-01-18T05:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1476aa2d-edc6-4455-a079-64abd81b41f0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T04:48:06.000Z" + }, + "end": { + "$date": "2021-01-18T05:03:50.000Z" + }, + "events": [ + { + "uuid": "8127d802-d810-4306-aa34-c99a044663e7", + "start": { + "$date": "2021-01-18T04:48:06.000Z" + }, + "end": { + "$date": "2021-01-18T05:03:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "f63665a7-76f0-4b73-95be-9726f23d8265", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-18T04:48:56.000Z" + }, + "end": { + "$date": "2021-01-18T05:30:28.000Z" + }, + "events": [ + { + "uuid": "488746e3-3e51-4994-8fb5-75ba1df8557a", + "start": { + "$date": "2021-01-18T04:48:56.000Z" + }, + "end": { + "$date": "2021-01-18T05:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63ebe1fc-6a3b-4b7f-909c-eba4e66b3ed8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T06:03:28.000Z" + }, + "end": { + "$date": "2021-01-18T06:20:08.000Z" + }, + "events": [ + { + "uuid": "9f9a97b9-e884-40db-902b-9a505c9fd63f", + "start": { + "$date": "2021-01-18T06:03:28.000Z" + }, + "end": { + "$date": "2021-01-18T06:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9ce3be87-0239-43f2-9451-ec7d8d3d3073", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T06:00:12.000Z" + }, + "end": { + "$date": "2021-01-18T06:20:42.000Z" + }, + "events": [ + { + "uuid": "82104ab0-022e-4c23-a45b-f4bff7b8fb8a", + "start": { + "$date": "2021-01-18T06:00:12.000Z" + }, + "end": { + "$date": "2021-01-18T06:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0577b45d-b8c0-400f-bf73-ecbea1ffac83", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T06:04:18.000Z" + }, + "end": { + "$date": "2021-01-18T06:20:04.000Z" + }, + "events": [ + { + "uuid": "fa4113bf-cb73-4f54-88df-7610a0706922", + "start": { + "$date": "2021-01-18T06:04:18.000Z" + }, + "end": { + "$date": "2021-01-18T06:20:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34d9027e-c735-4324-9740-aa82b0a2378a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T06:30:50.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:21.000Z" + }, + "events": [ + { + "uuid": "1e5f0623-cccb-4ff0-b484-f10daf88c848", + "start": { + "$date": "2021-01-18T06:30:50.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f7ae578d-17dd-459c-ac63-0d23158c31b4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T06:21:23.000Z" + }, + "end": { + "$date": "2021-01-18T07:11:23.000Z" + }, + "events": [ + { + "uuid": "5bf795f1-dba0-4bd5-b8ca-8578e01f95fb", + "start": { + "$date": "2021-01-18T06:21:23.000Z" + }, + "end": { + "$date": "2021-01-18T07:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9b2cc038-4a26-46a0-bf42-9b569dd67050", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T06:21:43.000Z" + }, + "end": { + "$date": "2021-01-18T07:12:20.000Z" + }, + "events": [ + { + "uuid": "e7f156a0-2575-423d-9a21-4592ee98ebf5", + "start": { + "$date": "2021-01-18T06:21:43.000Z" + }, + "end": { + "$date": "2021-01-18T07:12:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04a1e4aa-62bd-488a-9774-f67419080f23", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T06:31:15.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:15.000Z" + }, + "events": [ + { + "uuid": "cb2cea00-a046-4a6b-8899-a0dcc4cdd6c2", + "start": { + "$date": "2021-01-18T06:31:15.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "961f675b-a466-4b9f-bfce-e68ad3bf67e6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T06:31:17.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:17.000Z" + }, + "events": [ + { + "uuid": "323a3cc9-41c4-41b7-8e70-585a75c12c9b", + "start": { + "$date": "2021-01-18T06:31:17.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfe6f86a-9f90-4111-91c2-6333ab99797a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-18T06:30:46.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:22.000Z" + }, + "events": [ + { + "uuid": "c733b9d6-2710-422d-970e-13b90b024c72", + "start": { + "$date": "2021-01-18T06:30:46.000Z" + }, + "end": { + "$date": "2021-01-18T06:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa4d2ad9-8682-4d88-88f6-c36b9b48f282", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T06:56:41.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:27.000Z" + }, + "events": [ + { + "uuid": "a6d8176f-f154-4867-9f55-3a986b0827c0", + "start": { + "$date": "2021-01-18T06:56:41.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e31ecfc-9414-47a7-a565-5a5d44752f59", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T06:56:29.000Z" + }, + "end": { + "$date": "2021-01-18T07:11:04.000Z" + }, + "events": [ + { + "uuid": "79c9a99b-bc95-43e6-b930-a14264dac33a", + "start": { + "$date": "2021-01-18T06:56:29.000Z" + }, + "end": { + "$date": "2021-01-18T07:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91aac20e-0ba0-47ad-b144-69e7dddff41f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T06:56:37.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:28.000Z" + }, + "events": [ + { + "uuid": "46384b79-759f-48d8-9f12-ce9be21bf889", + "start": { + "$date": "2021-01-18T06:56:37.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a89358ee-6b39-452a-bd89-199716855864", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-18T06:58:12.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:32.000Z" + }, + "events": [ + { + "uuid": "3a0bbd4f-a846-4240-83ae-a363a1bef9a9", + "start": { + "$date": "2021-01-18T06:58:12.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5289d016-2992-4b6e-b843-8f7cdf054f0a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-18T07:11:19.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:32.000Z" + }, + "events": [ + { + "uuid": "9878bf43-ed66-4397-b88d-0016e607b22d", + "start": { + "$date": "2021-01-18T07:11:19.000Z" + }, + "end": { + "$date": "2021-01-18T07:13:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9b0456bd-32bb-4e7b-9b66-72cc62625fec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T07:11:44.000Z" + }, + "end": { + "$date": "2021-01-18T07:24:38.000Z" + }, + "events": [ + { + "uuid": "ba4dd60c-4933-4eed-93b3-3bbeea3e8293", + "start": { + "$date": "2021-01-18T07:11:44.000Z" + }, + "end": { + "$date": "2021-01-18T07:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6e1b8f84-6c98-4fb9-bf7f-a8fe987d5827", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-18T07:12:29.000Z" + }, + "end": { + "$date": "2021-01-18T07:24:38.000Z" + }, + "events": [ + { + "uuid": "f259338f-e20b-4eed-8e5a-4109e3ddaa54", + "start": { + "$date": "2021-01-18T07:12:29.000Z" + }, + "end": { + "$date": "2021-01-18T07:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "251bd31b-bdc8-41bc-8552-1bad01152abc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T07:15:08.000Z" + }, + "end": { + "$date": "2021-01-18T07:18:05.000Z" + }, + "events": [ + { + "uuid": "6e56dffa-c0f1-4d5a-b42d-6f393280f6fd", + "start": { + "$date": "2021-01-18T07:15:08.000Z" + }, + "end": { + "$date": "2021-01-18T07:18:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "27d91c9a-b825-456f-8a74-be6f60d3e0f3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-18T08:03:34.000Z" + }, + "end": { + "$date": "2021-01-18T09:03:05.000Z" + }, + "events": [ + { + "uuid": "afb8ad63-c969-4bf1-b35b-0941f18313c2", + "start": { + "$date": "2021-01-18T08:03:34.000Z" + }, + "end": { + "$date": "2021-01-18T09:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2ca2feb-fe3b-493c-bf65-b3849fe4c30a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T12:57:33.000Z" + }, + "end": { + "$date": "2021-01-18T13:23:57.000Z" + }, + "events": [ + { + "uuid": "5d63e5f3-3da3-43ad-91a0-ba5001932c2d", + "start": { + "$date": "2021-01-18T12:57:33.000Z" + }, + "end": { + "$date": "2021-01-18T13:23:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36d644d0-67a3-48bb-8432-e84c3347e15e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T13:42:43.000Z" + }, + "end": { + "$date": "2021-01-18T14:16:17.000Z" + }, + "events": [ + { + "uuid": "e0499c63-4e62-4d12-a2f3-472c2cd386d8", + "start": { + "$date": "2021-01-18T13:42:43.000Z" + }, + "end": { + "$date": "2021-01-18T14:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b38c93c2-c015-4ea6-9445-d3efb3701a1d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T14:27:09.000Z" + }, + "end": { + "$date": "2021-01-18T15:03:03.000Z" + }, + "events": [ + { + "uuid": "36ee866c-c521-4ea2-afa8-f99e7cf6a182", + "start": { + "$date": "2021-01-18T14:27:09.000Z" + }, + "end": { + "$date": "2021-01-18T15:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5750d420-d873-4a87-905d-ecb2b146fc5c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T15:11:19.000Z" + }, + "end": { + "$date": "2021-01-18T15:44:07.000Z" + }, + "events": [ + { + "uuid": "6ad1d030-90e5-4c43-8036-54379806ce0b", + "start": { + "$date": "2021-01-18T15:11:19.000Z" + }, + "end": { + "$date": "2021-01-18T15:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e65b6b98-f6cf-4d91-a193-5b39c2e1b0bb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T15:06:55.000Z" + }, + "end": { + "$date": "2021-01-18T16:16:12.000Z" + }, + "events": [ + { + "uuid": "57d5fb6d-fd52-4b14-89b1-f02af0ca79b6", + "start": { + "$date": "2021-01-18T15:06:55.000Z" + }, + "end": { + "$date": "2021-01-18T16:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c0bff74-b1c7-4d98-be52-53d1da3ac4e5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T16:41:08.000Z" + }, + "end": { + "$date": "2021-01-18T17:19:00.000Z" + }, + "events": [ + { + "uuid": "8a65fe1b-b84b-47a6-b058-d9776c9fc46a", + "start": { + "$date": "2021-01-18T16:41:08.000Z" + }, + "end": { + "$date": "2021-01-18T16:58:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "713000ad-369a-4b78-8cda-b629d81d419b", + "start": { + "$date": "2021-01-18T16:58:08.000Z" + }, + "end": { + "$date": "2021-01-18T17:01:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91a64cc4-8c7f-45a3-9f20-1b1f670524ed", + "start": { + "$date": "2021-01-18T17:01:08.000Z" + }, + "end": { + "$date": "2021-01-18T17:19:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b88d65e-6dc9-4d7e-921b-13099d079d17", + "uuid": "dd66d90b-aef4-4080-9e7e-0f4106f0f2a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T16:17:28.000Z" + }, + "end": { + "$date": "2021-01-18T16:28:58.000Z" + }, + "events": [ + { + "uuid": "18918a8b-7ffb-455b-a72b-201ad344354f", + "start": { + "$date": "2021-01-18T16:17:28.000Z" + }, + "end": { + "$date": "2021-01-18T16:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "196187af-1cd6-4e1b-99a3-1a0b519c5e47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T16:42:18.000Z" + }, + "end": { + "$date": "2021-01-18T17:18:52.000Z" + }, + "events": [ + { + "uuid": "f8897b38-e850-408c-ab5b-fc5d735daa5b", + "start": { + "$date": "2021-01-18T16:42:18.000Z" + }, + "end": { + "$date": "2021-01-18T17:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09f70dfd-3646-434a-b79e-4d720ea92e9f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T17:23:49.000Z" + }, + "end": { + "$date": "2021-01-18T17:58:52.000Z" + }, + "events": [ + { + "uuid": "684530cb-861f-470c-a0a2-84bbe518f528", + "start": { + "$date": "2021-01-18T17:23:49.000Z" + }, + "end": { + "$date": "2021-01-18T17:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca4a8fe1-bf0d-4835-bb42-6287720ccf2e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T17:24:58.000Z" + }, + "end": { + "$date": "2021-01-18T17:58:42.000Z" + }, + "events": [ + { + "uuid": "cda3d5bc-c769-49a9-a56d-02bfac48a245", + "start": { + "$date": "2021-01-18T17:24:58.000Z" + }, + "end": { + "$date": "2021-01-18T17:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2c2e44d-9315-4173-b6bd-17196f0b7e4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-18T18:05:35.000Z" + }, + "end": { + "$date": "2021-01-18T18:40:42.000Z" + }, + "events": [ + { + "uuid": "052c0799-3e44-41b2-85c2-492287e89633", + "start": { + "$date": "2021-01-18T18:05:35.000Z" + }, + "end": { + "$date": "2021-01-18T18:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a63919ed-7bf5-46aa-b4f3-a876fb4139d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T18:20:55.000Z" + }, + "end": { + "$date": "2021-01-18T19:54:42.000Z" + }, + "events": [ + { + "uuid": "c66e5b02-ede6-476c-8f4a-5d3d0b9b1a85", + "start": { + "$date": "2021-01-18T18:20:55.000Z" + }, + "end": { + "$date": "2021-01-18T19:44:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82406473-b0e1-466b-a7e4-5886e43a93e4", + "start": { + "$date": "2021-01-18T19:44:55.000Z" + }, + "end": { + "$date": "2021-01-18T19:54:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "741468a6-6b11-40ea-b1f9-7c2efadf8935", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T18:30:05.000Z" + }, + "end": { + "$date": "2021-01-18T19:01:09.000Z" + }, + "events": [ + { + "uuid": "9cef903f-3caa-4b06-a9ef-fc9dbc7ddaaa", + "start": { + "$date": "2021-01-18T18:30:05.000Z" + }, + "end": { + "$date": "2021-01-18T19:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9a944b50-ca6e-4f35-925c-1b291d0ee98e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-18T19:16:57.000Z" + }, + "end": { + "$date": "2021-01-18T23:50:25.000Z" + }, + "events": [ + { + "uuid": "20006e83-f462-4398-a4a1-8801253f8ef3", + "start": { + "$date": "2021-01-18T19:16:57.000Z" + }, + "end": { + "$date": "2021-01-18T20:22:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd520353-b525-4913-81f6-92518f56b3e8", + "start": { + "$date": "2021-01-18T20:22:57.000Z" + }, + "end": { + "$date": "2021-01-18T20:31:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1210229-4249-45a3-ad27-a9d0a9558ab0", + "start": { + "$date": "2021-01-18T20:31:57.000Z" + }, + "end": { + "$date": "2021-01-18T23:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f61fb41e-d38f-449e-bd75-9e7753570995", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T19:21:26.000Z" + }, + "end": { + "$date": "2021-01-18T20:16:07.000Z" + }, + "events": [ + { + "uuid": "fda10ec8-2cd8-45f1-8465-4740d534488e", + "start": { + "$date": "2021-01-18T19:21:26.000Z" + }, + "end": { + "$date": "2021-01-18T20:16:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f69e458a-e421-43c4-8f35-3556dd2962e3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-18T20:38:28.000Z" + }, + "end": { + "$date": "2021-01-18T22:22:28.000Z" + }, + "events": [ + { + "uuid": "adf0045f-16ff-4495-a277-f45b8e5d30c7", + "start": { + "$date": "2021-01-18T20:38:28.000Z" + }, + "end": { + "$date": "2021-01-18T22:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2caf0660-07e0-44d4-8c2f-d8a575770119", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T20:51:31.000Z" + }, + "end": { + "$date": "2021-01-18T22:08:33.000Z" + }, + "events": [ + { + "uuid": "49638d3b-4a53-47b9-817a-76a8338b4d88", + "start": { + "$date": "2021-01-18T20:51:31.000Z" + }, + "end": { + "$date": "2021-01-18T22:08:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f6df86d7-d48c-4194-8274-b77d47079f2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T20:56:52.000Z" + }, + "end": { + "$date": "2021-01-18T22:04:44.000Z" + }, + "events": [ + { + "uuid": "683bd39b-318d-45d1-bf63-f189ed7c1003", + "start": { + "$date": "2021-01-18T20:56:52.000Z" + }, + "end": { + "$date": "2021-01-18T22:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "296f8ed6-6ab9-4bbe-b1c7-122c20e85b4f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T22:13:34.000Z" + }, + "end": { + "$date": "2021-01-18T22:38:15.000Z" + }, + "events": [ + { + "uuid": "5da81eae-8cc7-4219-84d5-82fde3d45070", + "start": { + "$date": "2021-01-18T22:13:34.000Z" + }, + "end": { + "$date": "2021-01-18T22:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6472c7a6-885a-4e74-a356-0672a3c51b99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-18T23:20:26.000Z" + }, + "end": { + "$date": "2021-01-19T00:20:13.000Z" + }, + "events": [ + { + "uuid": "d70225b5-d8ff-40b9-b622-0fa5d8969b7a", + "start": { + "$date": "2021-01-18T23:20:26.000Z" + }, + "end": { + "$date": "2021-01-19T00:20:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "49a1eb4c-7847-49e3-9d6b-f337d47d7546", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-18T23:23:00.000Z" + }, + "end": { + "$date": "2021-01-19T00:10:40.000Z" + }, + "events": [ + { + "uuid": "eb903704-c8eb-41f4-ae1e-8f65711ebf6c", + "start": { + "$date": "2021-01-18T23:23:00.000Z" + }, + "end": { + "$date": "2021-01-19T00:10:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3172ab3-d7e9-4775-bb76-968763e60c8c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-18T23:52:40.000Z" + }, + "end": { + "$date": "2021-01-19T00:16:41.000Z" + }, + "events": [ + { + "uuid": "97b7ac82-1cbc-47cc-8aa3-bd884232b117", + "start": { + "$date": "2021-01-18T23:52:40.000Z" + }, + "end": { + "$date": "2021-01-19T00:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c031cc6-e346-4927-8df4-e0e105b748af", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-18T23:50:30.000Z" + }, + "end": { + "$date": "2021-01-19T00:16:36.000Z" + }, + "events": [ + { + "uuid": "2214e652-5334-4177-a976-f5aeccfd5945", + "start": { + "$date": "2021-01-18T23:50:30.000Z" + }, + "end": { + "$date": "2021-01-19T00:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9df53e0-d4bf-4b5b-adee-87eff9b59d2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-19T01:18:21.000Z" + }, + "end": { + "$date": "2021-01-19T01:49:02.000Z" + }, + "events": [ + { + "uuid": "71d4466a-fd22-47be-b01f-5e647e5deca2", + "start": { + "$date": "2021-01-19T01:18:21.000Z" + }, + "end": { + "$date": "2021-01-19T01:49:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebe5526e-48f6-4244-b66a-5facb671c38c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T00:27:51.000Z" + }, + "end": { + "$date": "2021-01-19T00:56:51.000Z" + }, + "events": [ + { + "uuid": "073af53b-2d65-4bd3-8eaa-cd40658bcc88", + "start": { + "$date": "2021-01-19T00:27:51.000Z" + }, + "end": { + "$date": "2021-01-19T00:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4747ce95-22f7-4d21-a630-457c89547024", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T00:17:20.000Z" + }, + "end": { + "$date": "2021-01-19T00:21:43.000Z" + }, + "events": [ + { + "uuid": "a15d291e-b54d-4a74-9190-6fac1f19fe09", + "start": { + "$date": "2021-01-19T00:17:20.000Z" + }, + "end": { + "$date": "2021-01-19T00:21:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf82af00-c047-4d39-a1b7-5249baa5a85b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T00:27:47.000Z" + }, + "end": { + "$date": "2021-01-19T00:56:47.000Z" + }, + "events": [ + { + "uuid": "98ebbf60-f558-4034-b315-c78d0fbd982b", + "start": { + "$date": "2021-01-19T00:27:47.000Z" + }, + "end": { + "$date": "2021-01-19T00:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c82ca93-f51a-4e1c-80e2-8dbe802a8161", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T01:00:52.000Z" + }, + "end": { + "$date": "2021-01-19T01:15:52.000Z" + }, + "events": [ + { + "uuid": "b9865633-3bf0-4ac2-b7d6-dd9cfae18348", + "start": { + "$date": "2021-01-19T01:00:52.000Z" + }, + "end": { + "$date": "2021-01-19T01:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c3bc941-526d-4432-9470-43126db291fd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T01:00:52.000Z" + }, + "end": { + "$date": "2021-01-19T01:15:47.000Z" + }, + "events": [ + { + "uuid": "1cf98355-0180-4fae-b9a3-ddec6d4aa351", + "start": { + "$date": "2021-01-19T01:00:52.000Z" + }, + "end": { + "$date": "2021-01-19T01:15:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67e3beef-9cbc-4a57-8735-fa23f18fea8c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T01:17:53.000Z" + }, + "end": { + "$date": "2021-01-19T01:30:48.000Z" + }, + "events": [ + { + "uuid": "65052d4f-5aa3-4f21-9e60-4e72255f10d2", + "start": { + "$date": "2021-01-19T01:17:53.000Z" + }, + "end": { + "$date": "2021-01-19T01:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95a7bbc2-4a3d-469f-aff6-be8612f25eb8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T01:17:32.000Z" + }, + "end": { + "$date": "2021-01-19T01:30:43.000Z" + }, + "events": [ + { + "uuid": "b126963c-48de-4bf4-a3e7-eb0083f7a84a", + "start": { + "$date": "2021-01-19T01:17:32.000Z" + }, + "end": { + "$date": "2021-01-19T01:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7019dd29-7e56-4838-a8ec-e53a2e221204", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-19T01:17:20.000Z" + }, + "end": { + "$date": "2021-01-19T01:55:48.000Z" + }, + "events": [ + { + "uuid": "80edc684-c86e-406b-a065-afdf4f1f53ec", + "start": { + "$date": "2021-01-19T01:17:20.000Z" + }, + "end": { + "$date": "2021-01-19T01:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c72d80e1-f82f-4e3f-af73-6294cb75d0c6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-19T01:27:50.000Z" + }, + "end": { + "$date": "2021-01-19T01:58:11.000Z" + }, + "events": [ + { + "uuid": "9c4c65de-e812-4033-919a-4d456e7d56ca", + "start": { + "$date": "2021-01-19T01:27:50.000Z" + }, + "end": { + "$date": "2021-01-19T01:58:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88c6d7a8-bf99-402b-8173-edd56ffa8571", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T01:31:19.000Z" + }, + "end": { + "$date": "2021-01-19T04:19:11.000Z" + }, + "events": [ + { + "uuid": "1d3c358f-e382-4701-887f-c58157e8472f", + "start": { + "$date": "2021-01-19T01:31:19.000Z" + }, + "end": { + "$date": "2021-01-19T01:58:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5ef5f32-f0c1-4889-be80-471660fa6b35", + "start": { + "$date": "2021-01-19T01:58:19.000Z" + }, + "end": { + "$date": "2021-01-19T02:05:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e49dfd13-fc74-414c-afbd-e48140f09e64", + "start": { + "$date": "2021-01-19T02:05:19.000Z" + }, + "end": { + "$date": "2021-01-19T02:22:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f3db4df3-7c08-4300-bc29-18fcebc3c6fb", + "start": { + "$date": "2021-01-19T02:22:19.000Z" + }, + "end": { + "$date": "2021-01-19T02:26:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7460b2b2-4c1d-4d21-8164-7f3873568e37", + "start": { + "$date": "2021-01-19T02:26:19.000Z" + }, + "end": { + "$date": "2021-01-19T02:34:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8aa7b2ed-36b3-4824-b09c-fa7eee1c3657", + "start": { + "$date": "2021-01-19T02:34:19.000Z" + }, + "end": { + "$date": "2021-01-19T02:37:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58eece6a-e888-4251-b299-b2c5225cddaa", + "start": { + "$date": "2021-01-19T02:37:19.000Z" + }, + "end": { + "$date": "2021-01-19T03:31:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82969707-1e93-4432-8627-0eeb741690d5", + "start": { + "$date": "2021-01-19T03:31:19.000Z" + }, + "end": { + "$date": "2021-01-19T03:44:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ad18eac-0a05-4b47-a36c-b1709efa2b16", + "start": { + "$date": "2021-01-19T03:44:19.000Z" + }, + "end": { + "$date": "2021-01-19T03:55:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4084dc88-b67e-45ab-b347-1ea70d24e776", + "start": { + "$date": "2021-01-19T03:55:19.000Z" + }, + "end": { + "$date": "2021-01-19T04:19:11.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "33ef323b-a0c4-4c46-8e0f-2ca9e89c3124", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-19T01:46:22.000Z" + }, + "end": { + "$date": "2021-01-19T03:20:52.000Z" + }, + "events": [ + { + "uuid": "30b25428-d9b1-4324-901a-cda470bc7c3a", + "start": { + "$date": "2021-01-19T01:46:22.000Z" + }, + "end": { + "$date": "2021-01-19T03:20:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "20c42269-def3-4a74-8cbe-7f5547d5f222", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-19T01:58:49.000Z" + }, + "end": { + "$date": "2021-01-19T01:59:45.000Z" + }, + "events": [ + { + "uuid": "76012c88-5dc8-4da5-8035-d0ad45a7cbf3", + "start": { + "$date": "2021-01-19T01:58:49.000Z" + }, + "end": { + "$date": "2021-01-19T01:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8fabb8c5-65dc-40be-a4cd-7ddf939746c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-19T02:16:10.000Z" + }, + "end": { + "$date": "2021-01-19T02:18:52.000Z" + }, + "events": [ + { + "uuid": "3ba87505-fb0b-4e40-883f-99e6deb9d62e", + "start": { + "$date": "2021-01-19T02:16:10.000Z" + }, + "end": { + "$date": "2021-01-19T02:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d19be97f-41d6-4f95-a6f4-47cb460ec606", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-19T05:01:31.000Z" + }, + "end": { + "$date": "2021-01-19T05:16:41.000Z" + }, + "events": [ + { + "uuid": "ca2fb572-5c2f-4b68-b86b-77a2daffaaff", + "start": { + "$date": "2021-01-19T05:01:31.000Z" + }, + "end": { + "$date": "2021-01-19T05:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dc65d98f-d110-4287-9e89-c0871b27362c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-19T02:31:13.000Z" + }, + "end": { + "$date": "2021-01-19T02:47:33.000Z" + }, + "events": [ + { + "uuid": "8fcc2834-1e29-4471-a6aa-9aa02252611d", + "start": { + "$date": "2021-01-19T02:31:13.000Z" + }, + "end": { + "$date": "2021-01-19T02:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0a310474-14de-4d0b-81bd-768b5d7e33f8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-19T02:47:49.000Z" + }, + "end": { + "$date": "2021-01-19T03:01:49.000Z" + }, + "events": [ + { + "uuid": "6393cefe-2f3e-45b6-a48a-c81f45d1da63", + "start": { + "$date": "2021-01-19T02:47:49.000Z" + }, + "end": { + "$date": "2021-01-19T03:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d085c811-e1d3-498b-ae7f-98fb1a0d99e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-19T02:48:51.000Z" + }, + "end": { + "$date": "2021-01-19T03:23:22.000Z" + }, + "events": [ + { + "uuid": "f712c9c7-4873-46c8-8b97-9adc4c0540d6", + "start": { + "$date": "2021-01-19T02:48:51.000Z" + }, + "end": { + "$date": "2021-01-19T03:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "53b20621-c82f-480e-ac94-589cf1e272c4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-19T02:52:31.000Z" + }, + "end": { + "$date": "2021-01-19T03:48:38.000Z" + }, + "events": [ + { + "uuid": "97e40e2f-655a-479d-9709-6f5ffbcf62e6", + "start": { + "$date": "2021-01-19T02:52:31.000Z" + }, + "end": { + "$date": "2021-01-19T03:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "89ca2c58-9748-4bcf-ac55-392544b95450", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-19T03:01:35.000Z" + }, + "end": { + "$date": "2021-01-19T04:04:22.000Z" + }, + "events": [ + { + "uuid": "68d8957d-0ddb-4ca6-9ac5-666c2d9e1316", + "start": { + "$date": "2021-01-19T03:01:35.000Z" + }, + "end": { + "$date": "2021-01-19T04:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6fecc781-bcef-402c-b8ec-4e7185be2750", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-19T05:16:45.000Z" + }, + "end": { + "$date": "2021-01-19T06:37:41.000Z" + }, + "events": [ + { + "uuid": "6a66aff7-746a-442c-80e1-4ba49b925c0a", + "start": { + "$date": "2021-01-19T05:16:45.000Z" + }, + "end": { + "$date": "2021-01-19T06:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c7a24b32-99c5-4315-831f-d8f4f54c9ebe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T03:07:10.000Z" + }, + "end": { + "$date": "2021-01-19T04:15:40.000Z" + }, + "events": [ + { + "uuid": "e6f46e70-4a72-45c7-bdb1-77bdba4cd337", + "start": { + "$date": "2021-01-19T03:07:10.000Z" + }, + "end": { + "$date": "2021-01-19T04:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fc740811-15d4-48d8-9f2b-d0b68824471d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-19T03:22:59.000Z" + }, + "end": { + "$date": "2021-01-19T03:53:29.000Z" + }, + "events": [ + { + "uuid": "079b91fb-ced7-4a8d-b6e9-8899002fcb8e", + "start": { + "$date": "2021-01-19T03:22:59.000Z" + }, + "end": { + "$date": "2021-01-19T03:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c59ce8fd-4733-43d9-9cb5-3e404e4c9741", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-19T03:54:05.000Z" + }, + "end": { + "$date": "2021-01-19T04:55:52.000Z" + }, + "events": [ + { + "uuid": "14e8a57b-166d-4d69-be81-227befcd7256", + "start": { + "$date": "2021-01-19T03:54:05.000Z" + }, + "end": { + "$date": "2021-01-19T04:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8052e12a-ea0a-4c97-bb80-2dfa2afb1273", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T04:44:29.000Z" + }, + "end": { + "$date": "2021-01-19T04:50:45.000Z" + }, + "events": [ + { + "uuid": "e4ea87bc-5e10-4321-93df-eefe271a48eb", + "start": { + "$date": "2021-01-19T04:44:29.000Z" + }, + "end": { + "$date": "2021-01-19T04:50:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6f4c5413-f1d0-4ca8-b086-e06b4d45be73", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T04:57:30.000Z" + }, + "end": { + "$date": "2021-01-19T05:09:36.000Z" + }, + "events": [ + { + "uuid": "a097ab41-8db2-4ab7-a59d-f75b398bb3af", + "start": { + "$date": "2021-01-19T04:57:30.000Z" + }, + "end": { + "$date": "2021-01-19T05:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "be99a921-4064-4e50-bc30-410abdc2a20d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-19T05:16:51.000Z" + }, + "end": { + "$date": "2021-01-19T05:47:22.000Z" + }, + "events": [ + { + "uuid": "a45d0507-ce56-4fd0-abcb-39805e270cb0", + "start": { + "$date": "2021-01-19T05:16:51.000Z" + }, + "end": { + "$date": "2021-01-19T05:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6af9930-2372-45ee-aae4-e0a5d08f383c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T05:20:22.000Z" + }, + "end": { + "$date": "2021-01-19T05:57:29.000Z" + }, + "events": [ + { + "uuid": "5a54e305-a160-4bd7-820d-be4aad2466a8", + "start": { + "$date": "2021-01-19T05:20:22.000Z" + }, + "end": { + "$date": "2021-01-19T05:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "6a4fd680-a7d0-4943-ae83-ae431ebed137", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-19T05:23:45.000Z" + }, + "end": { + "$date": "2021-01-19T05:51:06.000Z" + }, + "events": [ + { + "uuid": "8bfdcbc5-2ca2-493a-9638-de75b33b8bae", + "start": { + "$date": "2021-01-19T05:23:45.000Z" + }, + "end": { + "$date": "2021-01-19T05:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "f2ed458b-2f0b-4970-a19b-25621d51dd14", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-19T05:32:32.000Z" + }, + "end": { + "$date": "2021-01-19T06:08:11.000Z" + }, + "events": [ + { + "uuid": "e407a3ce-d1c4-40f2-abe6-7802a369e69f", + "start": { + "$date": "2021-01-19T05:32:32.000Z" + }, + "end": { + "$date": "2021-01-19T06:08:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4dff2e63-1496-46eb-ad4d-f7c364fbf588", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-19T06:14:04.000Z" + }, + "end": { + "$date": "2021-01-19T06:55:13.000Z" + }, + "events": [ + { + "uuid": "88e53e6f-fac4-4b5d-8ae3-33be67084b9c", + "start": { + "$date": "2021-01-19T06:14:04.000Z" + }, + "end": { + "$date": "2021-01-19T06:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "13cdbe4c-677b-41d1-8518-b830c61f9635", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-19T06:40:37.000Z" + }, + "end": { + "$date": "2021-01-19T06:43:07.000Z" + }, + "events": [ + { + "uuid": "9d973a1e-11a9-4654-88e8-5e635929a1da", + "start": { + "$date": "2021-01-19T06:40:37.000Z" + }, + "end": { + "$date": "2021-01-19T06:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f1f26a0-927a-4be8-b3a5-75e2315a8f7d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T08:13:28.000Z" + }, + "end": { + "$date": "2021-01-19T08:36:05.000Z" + }, + "events": [ + { + "uuid": "fd2c4318-34dc-4c9c-9210-d5ff0551e5c6", + "start": { + "$date": "2021-01-19T08:13:28.000Z" + }, + "end": { + "$date": "2021-01-19T08:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cb32838-8877-473e-82da-a26756c2bdc1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T09:00:48.000Z" + }, + "end": { + "$date": "2021-01-19T09:27:56.000Z" + }, + "events": [ + { + "uuid": "491da18a-ae3c-4750-8d1b-240fe34076d1", + "start": { + "$date": "2021-01-19T09:00:48.000Z" + }, + "end": { + "$date": "2021-01-19T09:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54e01681-2542-4dda-9f75-29f70339a9a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-19T09:33:01.000Z" + }, + "end": { + "$date": "2021-01-19T09:40:10.000Z" + }, + "events": [ + { + "uuid": "470b8245-6221-4c65-b9b0-aaa924d252b5", + "start": { + "$date": "2021-01-19T09:33:01.000Z" + }, + "end": { + "$date": "2021-01-19T09:40:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7aaa291c-20d5-4e53-be4b-133175ba62d6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T15:40:50.000Z" + }, + "end": { + "$date": "2021-01-19T16:15:51.000Z" + }, + "events": [ + { + "uuid": "0ac67edd-1f93-4768-9763-c94bc93c213d", + "start": { + "$date": "2021-01-19T15:40:50.000Z" + }, + "end": { + "$date": "2021-01-19T16:15:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "72d326f9-d592-4fec-859c-a9eda9e35d6e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-19T15:55:20.000Z" + }, + "end": { + "$date": "2021-01-19T16:54:31.000Z" + }, + "events": [ + { + "uuid": "6d9f1892-6ed5-46aa-ae47-40692a8e6afc", + "start": { + "$date": "2021-01-19T15:55:20.000Z" + }, + "end": { + "$date": "2021-01-19T16:54:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "279b09bc-cdd9-421e-a4b9-bc940b021ca4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T16:16:46.000Z" + }, + "end": { + "$date": "2021-01-19T16:29:27.000Z" + }, + "events": [ + { + "uuid": "681a0e1b-76a3-4928-b1e6-1eb23bcf728c", + "start": { + "$date": "2021-01-19T16:16:46.000Z" + }, + "end": { + "$date": "2021-01-19T16:29:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e83dc9dc-67ac-432f-b802-14234325f597", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T16:37:46.000Z" + }, + "end": { + "$date": "2021-01-19T16:40:41.000Z" + }, + "events": [ + { + "uuid": "c6a2dbfd-fbec-4b3e-a045-eab95333e81e", + "start": { + "$date": "2021-01-19T16:37:46.000Z" + }, + "end": { + "$date": "2021-01-19T16:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d888b70f-0f3c-4e25-94e0-8ddd7c44050f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-19T18:28:34.000Z" + }, + "end": { + "$date": "2021-01-19T19:04:36.000Z" + }, + "events": [ + { + "uuid": "d4612749-dcd0-4de6-b6e7-b477c8fd4c69", + "start": { + "$date": "2021-01-19T18:28:34.000Z" + }, + "end": { + "$date": "2021-01-19T18:38:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c06d4bbb-eb6f-4752-9236-374051141ab9", + "start": { + "$date": "2021-01-19T18:38:34.000Z" + }, + "end": { + "$date": "2021-01-19T18:47:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "441fb8ad-ff6d-4583-af3b-9906ab8a1be6", + "start": { + "$date": "2021-01-19T18:47:34.000Z" + }, + "end": { + "$date": "2021-01-19T19:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "48b3c491-1d9f-4b17-b74f-9bec80141184", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-19T19:07:26.000Z" + }, + "end": { + "$date": "2021-01-19T19:51:43.000Z" + }, + "events": [ + { + "uuid": "792bfab8-227c-4664-9869-16b5ede086e7", + "start": { + "$date": "2021-01-19T19:07:26.000Z" + }, + "end": { + "$date": "2021-01-19T19:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3c2b082e-1f61-4517-8fad-ae19246978c1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-19T20:14:59.000Z" + }, + "end": { + "$date": "2021-01-19T21:38:10.000Z" + }, + "events": [ + { + "uuid": "4ca3886d-2f33-4b29-a470-a0fd2613f1f6", + "start": { + "$date": "2021-01-19T20:14:59.000Z" + }, + "end": { + "$date": "2021-01-19T20:45:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f48661e0-3afc-4ebf-bace-160e28d55507", + "start": { + "$date": "2021-01-19T20:45:59.000Z" + }, + "end": { + "$date": "2021-01-19T20:59:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "071032d9-9986-4317-aa69-d43113731d0b", + "start": { + "$date": "2021-01-19T20:59:59.000Z" + }, + "end": { + "$date": "2021-01-19T21:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f98a0c6d-3e6c-46bf-ad3f-6a271b7e6966", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-19T20:15:39.000Z" + }, + "end": { + "$date": "2021-01-19T21:42:41.000Z" + }, + "events": [ + { + "uuid": "c5ed75cb-8cb1-47e0-9186-4130b5c26d3e", + "start": { + "$date": "2021-01-19T20:15:39.000Z" + }, + "end": { + "$date": "2021-01-19T21:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4d5605c9-ce55-4041-aa7c-885787cf8256", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T21:28:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:50:18.000Z" + }, + "events": [ + { + "uuid": "8118990f-86f4-4dc1-a519-f801c6f264ce", + "start": { + "$date": "2021-01-19T21:28:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:09:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bac9d706-6a0c-42b9-905f-326a3717d86b", + "start": { + "$date": "2021-01-19T22:09:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:14:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d151c92-c825-4945-bfa3-cd41bd836b3e", + "start": { + "$date": "2021-01-19T22:14:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:24:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45c80211-7487-43a6-be7b-74d9fcc31735", + "start": { + "$date": "2021-01-19T22:24:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:33:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "364c4bfa-5b25-40b6-86fb-bd5ddbd7286d", + "start": { + "$date": "2021-01-19T22:33:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:35:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c57d3c7c-38ba-4848-9009-896e2a795c61", + "start": { + "$date": "2021-01-19T22:35:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:48:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94472946-4297-4331-9e0c-37f87598e162", + "start": { + "$date": "2021-01-19T22:48:01.000Z" + }, + "end": { + "$date": "2021-01-19T22:50:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8c8c0cd-6502-40c1-a17f-c1555118b768", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T22:35:07.000Z" + }, + "end": { + "$date": "2021-01-19T23:01:19.000Z" + }, + "events": [ + { + "uuid": "1d3e1e3a-6b65-47bf-995e-e54be8bb1409", + "start": { + "$date": "2021-01-19T22:35:07.000Z" + }, + "end": { + "$date": "2021-01-19T23:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9ea39c2a-27ff-45f6-a7b7-716ea0d239cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-19T22:50:16.000Z" + }, + "end": { + "$date": "2021-01-19T23:14:46.000Z" + }, + "events": [ + { + "uuid": "084db962-de83-4ae1-81be-49a4d3abefdd", + "start": { + "$date": "2021-01-19T22:50:16.000Z" + }, + "end": { + "$date": "2021-01-19T23:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f1950851-d2af-43cd-854c-6aab3aac42cd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T22:50:27.000Z" + }, + "end": { + "$date": "2021-01-19T22:52:48.000Z" + }, + "events": [ + { + "uuid": "eda98797-46fc-471d-92f3-0b838dd23d02", + "start": { + "$date": "2021-01-19T22:50:27.000Z" + }, + "end": { + "$date": "2021-01-19T22:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "71f30429-3509-45f3-bc4e-4940faffd789", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T22:53:47.000Z" + }, + "end": { + "$date": "2021-01-19T22:54:49.000Z" + }, + "events": [ + { + "uuid": "2c79a19d-2564-47fb-95a7-68c8d41b638b", + "start": { + "$date": "2021-01-19T22:53:47.000Z" + }, + "end": { + "$date": "2021-01-19T22:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "50beeed7-a67b-4cd8-ac80-4b446506ca2d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-19T22:57:43.000Z" + }, + "end": { + "$date": "2021-01-19T23:12:04.000Z" + }, + "events": [ + { + "uuid": "9d87379d-6c31-436e-aac5-7f3a9072ff6f", + "start": { + "$date": "2021-01-19T22:57:43.000Z" + }, + "end": { + "$date": "2021-01-19T23:12:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8afde5bb-5335-4234-b91d-344269400a57", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T23:04:45.000Z" + }, + "end": { + "$date": "2021-01-19T23:18:11.000Z" + }, + "events": [ + { + "uuid": "bb8cb817-f17f-43c7-b5a6-9226f56ff509", + "start": { + "$date": "2021-01-19T23:04:45.000Z" + }, + "end": { + "$date": "2021-01-19T23:18:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d20a5fda-05c3-4016-804a-a7af507583e6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-19T23:27:48.000Z" + }, + "end": { + "$date": "2021-01-19T23:47:35.000Z" + }, + "events": [ + { + "uuid": "73904dbc-2451-40f1-956d-f4e8da846cef", + "start": { + "$date": "2021-01-19T23:27:48.000Z" + }, + "end": { + "$date": "2021-01-19T23:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89f84d0c-0285-46b0-b38b-5f0c1b689c0b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-20T00:09:11.000Z" + }, + "end": { + "$date": "2021-01-20T00:09:15.000Z" + }, + "events": [ + { + "uuid": "84a2c571-efca-41dd-aca5-ca6d70be33ba", + "start": { + "$date": "2021-01-20T00:09:11.000Z" + }, + "end": { + "$date": "2021-01-20T00:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d8da851-9a2a-4900-ba6d-61e7b037d28b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T00:03:50.000Z" + }, + "end": { + "$date": "2021-01-20T00:40:27.000Z" + }, + "events": [ + { + "uuid": "23291321-f81d-4865-82e2-626e047908f3", + "start": { + "$date": "2021-01-20T00:03:50.000Z" + }, + "end": { + "$date": "2021-01-20T00:04:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f6f73ed-0ae9-432f-b94a-f773eb2cb405", + "start": { + "$date": "2021-01-20T00:04:50.000Z" + }, + "end": { + "$date": "2021-01-20T00:40:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a68f7d2-d873-4469-8fa1-07d7406b18a5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-20T00:11:56.000Z" + }, + "end": { + "$date": "2021-01-20T00:25:46.000Z" + }, + "events": [ + { + "uuid": "abb8872d-33a2-4fb5-8286-6ca85e4257c7", + "start": { + "$date": "2021-01-20T00:11:56.000Z" + }, + "end": { + "$date": "2021-01-20T00:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc8c1012-b45c-4f30-9235-0e661bff96cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T00:11:55.000Z" + }, + "end": { + "$date": "2021-01-20T00:25:52.000Z" + }, + "events": [ + { + "uuid": "af1b2e89-ae37-48d1-b802-6ef33b3a7755", + "start": { + "$date": "2021-01-20T00:11:55.000Z" + }, + "end": { + "$date": "2021-01-20T00:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31a0a02f-de42-4fbf-8b5b-b836c3412a93", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T00:11:59.000Z" + }, + "end": { + "$date": "2021-01-20T00:26:00.000Z" + }, + "events": [ + { + "uuid": "bfd6aeca-7b8a-4142-b333-6f2c6a62dd7f", + "start": { + "$date": "2021-01-20T00:11:59.000Z" + }, + "end": { + "$date": "2021-01-20T00:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e953e407-a53c-4a68-818b-26535165bc6e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T00:17:57.000Z" + }, + "end": { + "$date": "2021-01-20T01:59:08.000Z" + }, + "events": [ + { + "uuid": "aaae5de8-aec4-434a-af09-913e7c9261d8", + "start": { + "$date": "2021-01-20T00:17:57.000Z" + }, + "end": { + "$date": "2021-01-20T01:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c548a838-b16e-4ae8-9854-1464bc2cb9a8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-20T00:29:27.000Z" + }, + "end": { + "$date": "2021-01-20T00:54:22.000Z" + }, + "events": [ + { + "uuid": "706f7943-1fb2-4bf6-9f28-8b8a243cd07a", + "start": { + "$date": "2021-01-20T00:29:27.000Z" + }, + "end": { + "$date": "2021-01-20T00:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8f669a5-4e9e-4ad7-bf9c-efd86767bcf8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T00:28:01.000Z" + }, + "end": { + "$date": "2021-01-20T00:54:23.000Z" + }, + "events": [ + { + "uuid": "e92ea388-cfb5-4f86-a0d4-8d36efb14e3c", + "start": { + "$date": "2021-01-20T00:28:01.000Z" + }, + "end": { + "$date": "2021-01-20T00:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3c69330-bf81-4c90-bf11-1b266ca7d02a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T00:28:05.000Z" + }, + "end": { + "$date": "2021-01-20T00:54:26.000Z" + }, + "events": [ + { + "uuid": "bef26848-c0ae-4d54-b4f9-b4436cc5c3e5", + "start": { + "$date": "2021-01-20T00:28:05.000Z" + }, + "end": { + "$date": "2021-01-20T00:54:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67d42246-1d84-463a-b6ca-8b0f9b91522b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T00:43:13.000Z" + }, + "end": { + "$date": "2021-01-20T01:06:13.000Z" + }, + "events": [ + { + "uuid": "656e9b48-605a-40c5-ac6a-a58245b57acc", + "start": { + "$date": "2021-01-20T00:43:13.000Z" + }, + "end": { + "$date": "2021-01-20T01:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92f793c4-b6bd-4a33-a80c-b106732262ec", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-20T00:56:43.000Z" + }, + "end": { + "$date": "2021-01-20T01:07:48.000Z" + }, + "events": [ + { + "uuid": "fb9cdff6-032d-489f-ac4a-6cf95d010644", + "start": { + "$date": "2021-01-20T00:56:43.000Z" + }, + "end": { + "$date": "2021-01-20T01:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58fead4e-bd70-40d4-8e6f-1272931e40de", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T00:57:43.000Z" + }, + "end": { + "$date": "2021-01-20T01:07:44.000Z" + }, + "events": [ + { + "uuid": "259267df-7d82-43e0-9c0b-ca43bac77b0a", + "start": { + "$date": "2021-01-20T00:57:43.000Z" + }, + "end": { + "$date": "2021-01-20T01:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3cfcd53-82d8-41ff-8a51-8d23a28e52db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T00:56:47.000Z" + }, + "end": { + "$date": "2021-01-20T01:07:43.000Z" + }, + "events": [ + { + "uuid": "c5caa984-0ec9-4789-8154-ace244737f98", + "start": { + "$date": "2021-01-20T00:56:47.000Z" + }, + "end": { + "$date": "2021-01-20T01:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "c86a97bb-3f2e-407d-8bb0-bbad815049a6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-20T00:56:54.000Z" + }, + "end": { + "$date": "2021-01-20T00:57:55.000Z" + }, + "events": [ + { + "uuid": "21ce2c98-f556-4d33-bf2d-9d12139dad2f", + "start": { + "$date": "2021-01-20T00:56:54.000Z" + }, + "end": { + "$date": "2021-01-20T00:57:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "965c125e-7766-4a65-be1e-a7ac1567745e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-20T00:57:59.000Z" + }, + "end": { + "$date": "2021-01-20T01:55:28.000Z" + }, + "events": [ + { + "uuid": "3659fd59-79f5-4151-8240-2977cbd2142b", + "start": { + "$date": "2021-01-20T00:57:59.000Z" + }, + "end": { + "$date": "2021-01-20T01:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0cac29b-059b-4055-ad27-2e2ab7e5ef86", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-20T01:12:13.000Z" + }, + "end": { + "$date": "2021-01-20T01:26:58.000Z" + }, + "events": [ + { + "uuid": "2f629874-1224-444e-83aa-fed0e7362892", + "start": { + "$date": "2021-01-20T01:12:13.000Z" + }, + "end": { + "$date": "2021-01-20T01:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58475d10-3132-4382-bbe7-6bb2ff5af4f7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T01:11:49.000Z" + }, + "end": { + "$date": "2021-01-20T01:27:04.000Z" + }, + "events": [ + { + "uuid": "299be50f-c708-4b9f-b8d2-26486e507a97", + "start": { + "$date": "2021-01-20T01:11:49.000Z" + }, + "end": { + "$date": "2021-01-20T01:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f83d7f10-d101-4f16-ac07-d1c4fd3bda27", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T01:21:11.000Z" + }, + "end": { + "$date": "2021-01-20T02:09:15.000Z" + }, + "events": [ + { + "uuid": "3941f88a-fccd-400f-a39c-a07c78855b26", + "start": { + "$date": "2021-01-20T01:21:11.000Z" + }, + "end": { + "$date": "2021-01-20T02:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53b8a558-0f5e-4e6a-9f63-6b349a019007", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-20T01:31:59.000Z" + }, + "end": { + "$date": "2021-01-20T01:50:14.000Z" + }, + "events": [ + { + "uuid": "040c65c9-b347-4e37-b249-e5024f16d3d2", + "start": { + "$date": "2021-01-20T01:31:59.000Z" + }, + "end": { + "$date": "2021-01-20T01:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f50a49a9-965d-4dd1-a1f1-316db3bc393c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-20T01:32:08.000Z" + }, + "end": { + "$date": "2021-01-20T01:50:19.000Z" + }, + "events": [ + { + "uuid": "2c63cc10-94de-4507-81c4-0e580342fccf", + "start": { + "$date": "2021-01-20T01:32:08.000Z" + }, + "end": { + "$date": "2021-01-20T01:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac5fb63c-0fa8-4779-ac68-05c920357eb3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T01:31:40.000Z" + }, + "end": { + "$date": "2021-01-20T01:50:16.000Z" + }, + "events": [ + { + "uuid": "9833e9d5-9bf9-468f-9e38-734ecaecd328", + "start": { + "$date": "2021-01-20T01:31:40.000Z" + }, + "end": { + "$date": "2021-01-20T01:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7038a093-3e6f-4d00-a12b-47c05da7ee0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-20T01:39:11.000Z" + }, + "end": { + "$date": "2021-01-20T02:02:10.000Z" + }, + "events": [ + { + "uuid": "3d37dc40-b3df-4c04-93bb-5dc13469d641", + "start": { + "$date": "2021-01-20T01:39:11.000Z" + }, + "end": { + "$date": "2021-01-20T02:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "aa197b89-3716-49f2-90de-9b245818454f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T01:59:11.000Z" + }, + "end": { + "$date": "2021-01-20T02:53:42.000Z" + }, + "events": [ + { + "uuid": "a399e44b-d9d3-4475-9dcd-ab7807d80a55", + "start": { + "$date": "2021-01-20T01:59:11.000Z" + }, + "end": { + "$date": "2021-01-20T02:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2f948b5-ff21-4260-b4bc-6bf68fd57fe5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T01:50:17.000Z" + }, + "end": { + "$date": "2021-01-20T02:14:54.000Z" + }, + "events": [ + { + "uuid": "95831e60-73fa-4b71-b8ed-25852508cb86", + "start": { + "$date": "2021-01-20T01:50:17.000Z" + }, + "end": { + "$date": "2021-01-20T02:14:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2e0e2b48-2723-4c5b-98e5-df0cfacf4578", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T02:01:30.000Z" + }, + "end": { + "$date": "2021-01-20T03:08:47.000Z" + }, + "events": [ + { + "uuid": "ad042adf-f427-42ab-8c65-c25cd53b79e5", + "start": { + "$date": "2021-01-20T02:01:30.000Z" + }, + "end": { + "$date": "2021-01-20T03:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2fd9bdca-55f4-4d23-bf6b-7608fae835de", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-20T02:03:43.000Z" + }, + "end": { + "$date": "2021-01-20T02:40:05.000Z" + }, + "events": [ + { + "uuid": "4468d2ce-9faa-4658-845f-d0121fce360a", + "start": { + "$date": "2021-01-20T02:03:43.000Z" + }, + "end": { + "$date": "2021-01-20T02:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb9b6228-6b46-446b-a7eb-37396cc0cbba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T03:01:55.000Z" + }, + "end": { + "$date": "2021-01-20T03:16:46.000Z" + }, + "events": [ + { + "uuid": "2fa4f2e5-3974-4e4e-94e6-0d4970ff3996", + "start": { + "$date": "2021-01-20T03:01:55.000Z" + }, + "end": { + "$date": "2021-01-20T03:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "083da8e0-6b7b-42a3-aad8-71868647dd34", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T02:31:45.000Z" + }, + "end": { + "$date": "2021-01-20T03:19:39.000Z" + }, + "events": [ + { + "uuid": "7e1b8bdc-8655-451e-b8e3-5e2df3271b13", + "start": { + "$date": "2021-01-20T02:31:45.000Z" + }, + "end": { + "$date": "2021-01-20T03:05:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "814e4cc9-48d0-4192-bd7c-1b1786265a0d", + "start": { + "$date": "2021-01-20T03:05:45.000Z" + }, + "end": { + "$date": "2021-01-20T03:13:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b0e5397-99f9-4577-9a45-6ddf7f35e193", + "start": { + "$date": "2021-01-20T03:13:45.000Z" + }, + "end": { + "$date": "2021-01-20T03:15:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a7d6dfe-6eda-4bc8-b1cc-0b436ebe6f2b", + "start": { + "$date": "2021-01-20T03:15:45.000Z" + }, + "end": { + "$date": "2021-01-20T03:19:39.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "39f54370-e295-4143-8682-d35aa7a33ebe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T02:37:10.000Z" + }, + "end": { + "$date": "2021-01-20T03:18:07.000Z" + }, + "events": [ + { + "uuid": "3da0e0ba-9dcf-4416-bbd0-e928294472f4", + "start": { + "$date": "2021-01-20T02:37:10.000Z" + }, + "end": { + "$date": "2021-01-20T03:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9879d416-75b2-4d0a-ab97-6f928f37e199", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-20T02:40:18.000Z" + }, + "end": { + "$date": "2021-01-20T03:22:33.000Z" + }, + "events": [ + { + "uuid": "3f277752-19c1-4a42-aa50-7260a81d551b", + "start": { + "$date": "2021-01-20T02:40:18.000Z" + }, + "end": { + "$date": "2021-01-20T03:22:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "75c964cc-0c9b-4a0a-9c3f-c97d9087dcac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T02:53:57.000Z" + }, + "end": { + "$date": "2021-01-20T03:21:13.000Z" + }, + "events": [ + { + "uuid": "e8e6f8f2-067e-493f-bfd8-35b696663a90", + "start": { + "$date": "2021-01-20T02:53:57.000Z" + }, + "end": { + "$date": "2021-01-20T03:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad1d6bee-2c37-4590-b8e4-83b93dbbe1e9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T02:56:58.000Z" + }, + "end": { + "$date": "2021-01-20T02:58:35.000Z" + }, + "events": [ + { + "uuid": "44894bef-37d7-4aca-97be-75ecd900d5dc", + "start": { + "$date": "2021-01-20T02:56:58.000Z" + }, + "end": { + "$date": "2021-01-20T02:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea8b9aff-87ee-4689-9327-016df6640e1c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T03:01:30.000Z" + }, + "end": { + "$date": "2021-01-20T03:16:46.000Z" + }, + "events": [ + { + "uuid": "3a84bb37-501c-4a10-b109-8e32cb736712", + "start": { + "$date": "2021-01-20T03:01:30.000Z" + }, + "end": { + "$date": "2021-01-20T03:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "ff6c8813-e24e-4566-b76d-35d1fbd99054", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T03:09:20.000Z" + }, + "end": { + "$date": "2021-01-20T03:57:15.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:09:20.000Z" + }, + "end": { + "$date": "2021-01-20T03:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81ad1d88-d9a3-4e31-aef0-6dede35e3da4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T03:17:02.000Z" + }, + "end": { + "$date": "2021-01-20T03:21:10.000Z" + }, + "events": [ + { + "uuid": "a3e179ec-bb58-4890-8f46-6d835d26dc71", + "start": { + "$date": "2021-01-20T03:17:02.000Z" + }, + "end": { + "$date": "2021-01-20T03:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2ece023-2c12-40cd-92d2-5b33e77ee4d1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T03:26:32.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:26:32.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df23dac5-cad1-4234-a1e9-0da7e88ea373", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T03:26:56.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:26:56.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8746ad3a-41db-4cb3-9f41-1988595279a6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T03:26:34.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:40.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:26:34.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b08a55c4-0f33-4e8e-bec8-f017245fa99e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T03:26:33.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:26:33.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b6de8f8-98f4-4811-b6e2-260590082609", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-20T03:42:58.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:42:58.000Z" + }, + "end": { + "$date": "2021-01-20T03:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ae4e8ff5-8807-406b-9621-641d3012033a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-20T03:25:25.000Z" + }, + "end": { + "$date": "2021-01-20T05:36:33.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:25:25.000Z" + }, + "end": { + "$date": "2021-01-20T05:36:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", + "uuid": "34810d21-27d5-471f-85ad-46dfbc1b1aba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-20T03:30:25.000Z" + }, + "end": { + "$date": "2021-01-20T03:57:55.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-20T03:30:25.000Z" + }, + "end": { + "$date": "2021-01-20T03:57:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6643822-f8b0-40d8-926a-680a6a816410", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T03:43:49.000Z" + }, + "end": { + "$date": "2021-01-20T03:44:53.000Z" + }, + "events": [ + { + "uuid": "4fd90867-f720-467b-8c4c-95580e282ea2", + "start": { + "$date": "2021-01-20T03:43:49.000Z" + }, + "end": { + "$date": "2021-01-20T03:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69f8e2ad-1787-404d-bf76-93bd97eb2711", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-20T03:49:04.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:15.000Z" + }, + "events": [ + { + "uuid": "17a06f72-7295-43c6-952c-9746611e2c1b", + "start": { + "$date": "2021-01-20T03:49:04.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c497954-a2bb-424e-9285-76d6480a0273", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T03:48:58.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:14.000Z" + }, + "events": [ + { + "uuid": "62618600-9738-4b81-93e6-41de532cd617", + "start": { + "$date": "2021-01-20T03:48:58.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cddfcb93-80a5-4599-b725-067445f656d9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T03:49:16.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:16.000Z" + }, + "events": [ + { + "uuid": "8660a7fd-ad2b-47e5-90e3-bd847734ba57", + "start": { + "$date": "2021-01-20T03:49:16.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09293a9c-1bff-4376-a294-14c8497d8172", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T03:49:04.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:15.000Z" + }, + "events": [ + { + "uuid": "46e4caa5-4dc9-4abf-9187-9210a15abd3f", + "start": { + "$date": "2021-01-20T03:49:04.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aacd2ad2-2a11-4045-addb-429f8dde3477", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T03:49:03.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:14.000Z" + }, + "events": [ + { + "uuid": "f2ad0bae-6f13-4a8a-b3a7-480aa72ca4f1", + "start": { + "$date": "2021-01-20T03:49:03.000Z" + }, + "end": { + "$date": "2021-01-20T04:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4a5274cf-5dab-46d1-91b5-33e6a6dba0d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-20T03:58:46.000Z" + }, + "end": { + "$date": "2021-01-20T06:24:54.000Z" + }, + "events": [ + { + "uuid": "44cf4057-fe40-4e73-af28-20d800e0a8e0", + "start": { + "$date": "2021-01-20T03:58:46.000Z" + }, + "end": { + "$date": "2021-01-20T06:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7be94398-1c02-4680-ac9b-9ff292070b26", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T04:05:49.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:15.000Z" + }, + "events": [ + { + "uuid": "94ea140d-fd6e-48ae-82de-dc45fd180bf7", + "start": { + "$date": "2021-01-20T04:05:49.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de3ef4f0-7350-4249-a320-4e78f7c94366", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T04:05:45.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:16.000Z" + }, + "events": [ + { + "uuid": "7e97aac0-b88e-4ab6-b583-acb4fd22dec0", + "start": { + "$date": "2021-01-20T04:05:45.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d77a1e2-4959-4908-a602-a1a21e7d3eae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T04:06:14.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:14.000Z" + }, + "events": [ + { + "uuid": "e3fe248a-abe2-4186-850f-6adb4d811022", + "start": { + "$date": "2021-01-20T04:06:14.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81e5e63d-f1c8-4053-859a-e22e844d9989", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-20T04:06:00.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:16.000Z" + }, + "events": [ + { + "uuid": "6fb3472d-b0fe-4e27-8930-0896a51bd04d", + "start": { + "$date": "2021-01-20T04:06:00.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f587d9f7-a05b-4e88-a82f-71fce9348bf8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T04:05:47.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:17.000Z" + }, + "events": [ + { + "uuid": "a39a43c2-b92b-4250-8a6e-f2f73e5d0dc3", + "start": { + "$date": "2021-01-20T04:05:47.000Z" + }, + "end": { + "$date": "2021-01-20T04:24:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ff9ad8fb-bc0a-4941-8232-ae1cf62307c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T04:03:48.000Z" + }, + "end": { + "$date": "2021-01-20T05:35:49.000Z" + }, + "events": [ + { + "uuid": "18b25638-4797-4712-97f9-14c4de177147", + "start": { + "$date": "2021-01-20T04:03:48.000Z" + }, + "end": { + "$date": "2021-01-20T05:35:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75d2a021-9970-4ee9-a3b1-454a24311304", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-20T05:27:35.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:31.000Z" + }, + "events": [ + { + "uuid": "783119c4-c6bc-48f7-ac59-d2f00132bac4", + "start": { + "$date": "2021-01-20T05:27:35.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "bf15f239-b8cb-460c-a868-ce060e1676dd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-20T04:36:27.000Z" + }, + "end": { + "$date": "2021-01-20T07:16:41.000Z" + }, + "events": [ + { + "uuid": "0db03895-fc05-43ae-8c3f-a4408ac3ab2a", + "start": { + "$date": "2021-01-20T04:36:27.000Z" + }, + "end": { + "$date": "2021-01-20T07:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "27397890-7b0f-4f0e-b321-6bc088bebe49", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T04:44:30.000Z" + }, + "end": { + "$date": "2021-01-20T05:22:07.000Z" + }, + "events": [ + { + "uuid": "21010e72-0b52-44b8-86c6-c6e9d11b714f", + "start": { + "$date": "2021-01-20T04:44:30.000Z" + }, + "end": { + "$date": "2021-01-20T05:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d1074c6-f798-4078-a504-c72c7393e41c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-20T04:44:28.000Z" + }, + "end": { + "$date": "2021-01-20T05:22:16.000Z" + }, + "events": [ + { + "uuid": "eca85d17-c5d2-47a7-b4a0-792d287c5d03", + "start": { + "$date": "2021-01-20T04:44:28.000Z" + }, + "end": { + "$date": "2021-01-20T05:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9820b43b-5f4d-4f9b-966e-fe758245954f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T04:44:59.000Z" + }, + "end": { + "$date": "2021-01-20T05:22:09.000Z" + }, + "events": [ + { + "uuid": "f18ca958-9c01-49be-aeca-f6e7a5f7b05b", + "start": { + "$date": "2021-01-20T04:44:59.000Z" + }, + "end": { + "$date": "2021-01-20T05:22:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd23ea08-0606-4fbb-a40f-13b427304504", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T05:27:11.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:27.000Z" + }, + "events": [ + { + "uuid": "6b82504c-ec98-4d9a-b54d-2245521e5ada", + "start": { + "$date": "2021-01-20T05:27:11.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b98acc7-0443-4317-9054-5f003e5248f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-20T05:27:13.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:26.000Z" + }, + "events": [ + { + "uuid": "75932629-ded8-4d3f-a9f8-8bcf9625c0c2", + "start": { + "$date": "2021-01-20T05:27:13.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa4ff9c2-6582-40fb-bd0a-b0884f1867de", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-20T05:27:26.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:32.000Z" + }, + "events": [ + { + "uuid": "9c92faef-a692-4f2f-a920-6dd253be8585", + "start": { + "$date": "2021-01-20T05:27:26.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06a3f8e8-7e8d-41cb-b0dc-e074a5574898", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T05:27:10.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:25.000Z" + }, + "events": [ + { + "uuid": "e1a6b7ec-9a3a-4f6b-bdde-afe3602b8572", + "start": { + "$date": "2021-01-20T05:27:10.000Z" + }, + "end": { + "$date": "2021-01-20T05:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "92ff2bee-e1cd-48d1-a8fa-919644ef998b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T05:27:32.000Z" + }, + "end": { + "$date": "2021-01-20T07:09:04.000Z" + }, + "events": [ + { + "uuid": "6b0f4f16-0823-42aa-a3b7-0c87112407eb", + "start": { + "$date": "2021-01-20T05:27:32.000Z" + }, + "end": { + "$date": "2021-01-20T07:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f22c1e48-8c51-4e36-9390-5610d15cb7f8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-20T05:37:26.000Z" + }, + "end": { + "$date": "2021-01-20T07:12:42.000Z" + }, + "events": [ + { + "uuid": "b6e31c71-31f7-45d4-b8e6-ed55cce8494f", + "start": { + "$date": "2021-01-20T05:37:26.000Z" + }, + "end": { + "$date": "2021-01-20T07:12:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3a0f5254-343c-4f89-9830-9400d8a9822f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-20T05:39:18.000Z" + }, + "end": { + "$date": "2021-01-20T07:54:27.000Z" + }, + "events": [ + { + "uuid": "12914905-b710-4cbf-9302-1cd309722b02", + "start": { + "$date": "2021-01-20T05:39:18.000Z" + }, + "end": { + "$date": "2021-01-20T07:54:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7d5ed1aa-752f-4ebe-bcdd-d369928d40f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T05:46:13.000Z" + }, + "end": { + "$date": "2021-01-20T11:01:36.000Z" + }, + "events": [ + { + "uuid": "97a3a764-9d7e-469b-8b6e-004004dad8d1", + "start": { + "$date": "2021-01-20T05:46:13.000Z" + }, + "end": { + "$date": "2021-01-20T08:14:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "638b35c6-512e-40a9-bca8-67fbf5514f9b", + "start": { + "$date": "2021-01-20T08:14:13.000Z" + }, + "end": { + "$date": "2021-01-20T08:19:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cda36c89-ddd2-46d8-812d-eaf11205f963", + "start": { + "$date": "2021-01-20T08:19:13.000Z" + }, + "end": { + "$date": "2021-01-20T08:29:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c239722-1d3a-4242-b0cc-f206c1203d8e", + "start": { + "$date": "2021-01-20T08:29:13.000Z" + }, + "end": { + "$date": "2021-01-20T11:01:36.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "61022414-557e-45c6-9999-fe8e2d7c715e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T05:50:12.000Z" + }, + "end": { + "$date": "2021-01-20T08:35:25.000Z" + }, + "events": [ + { + "uuid": "c68e695f-f208-49cf-81e3-458792754812", + "start": { + "$date": "2021-01-20T05:50:12.000Z" + }, + "end": { + "$date": "2021-01-20T08:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "01f6300f-2019-4964-9f57-8789d784a682", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-20T06:40:01.000Z" + }, + "end": { + "$date": "2021-01-20T08:13:14.000Z" + }, + "events": [ + { + "uuid": "f690e341-d72b-4fda-918e-75f326498c7e", + "start": { + "$date": "2021-01-20T06:40:01.000Z" + }, + "end": { + "$date": "2021-01-20T08:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e14ec7f4-7fa6-4c51-b0a1-04206333a5c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-20T07:24:20.000Z" + }, + "end": { + "$date": "2021-01-20T07:35:19.000Z" + }, + "events": [ + { + "uuid": "63110989-f08e-412e-89fa-c0d6ee5e7e21", + "start": { + "$date": "2021-01-20T07:24:20.000Z" + }, + "end": { + "$date": "2021-01-20T07:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d3cc599b-38be-4b44-8b0f-c9795c2055e8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-20T08:21:46.000Z" + }, + "end": { + "$date": "2021-01-20T08:28:35.000Z" + }, + "events": [ + { + "uuid": "451d8749-ddec-4bcd-8bbc-301f05fd1e07", + "start": { + "$date": "2021-01-20T08:21:46.000Z" + }, + "end": { + "$date": "2021-01-20T08:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "636fa304-a6fb-405e-a828-712a41d76aab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T05:46:13.000Z" + }, + "end": { + "$date": "2021-01-20T14:38:43.000Z" + }, + "events": [ + { + "uuid": "8c891eb4-d387-4419-b89e-624fbfc126f1", + "start": { + "$date": "2021-01-20T05:46:13.000Z" + }, + "end": { + "$date": "2021-01-20T08:13:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99ab9831-0d42-49c2-81ca-03a2a6ea8f98", + "start": { + "$date": "2021-01-20T08:13:13.000Z" + }, + "end": { + "$date": "2021-01-20T08:23:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40a5feff-33ad-46d9-81b4-04703dec878e", + "start": { + "$date": "2021-01-20T08:23:13.000Z" + }, + "end": { + "$date": "2021-01-20T14:38:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "25edc54f-19ed-462f-adb8-a7630e98718f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T14:53:00.000Z" + }, + "end": { + "$date": "2021-01-20T15:01:21.000Z" + }, + "events": [ + { + "uuid": "48ce4bfc-e11b-4d8c-8093-5f2536f118f0", + "start": { + "$date": "2021-01-20T14:53:00.000Z" + }, + "end": { + "$date": "2021-01-20T15:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "89c9be42-64fe-4e63-ac48-f0794942c782", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T15:57:14.000Z" + }, + "end": { + "$date": "2021-01-20T16:31:05.000Z" + }, + "events": [ + { + "uuid": "b475dbe2-0eb4-4c39-9ac0-d34a99a1377e", + "start": { + "$date": "2021-01-20T15:57:14.000Z" + }, + "end": { + "$date": "2021-01-20T16:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5b2fc09f-5543-49ab-b1e4-55b6e8653529", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T16:25:04.000Z" + }, + "end": { + "$date": "2021-01-20T17:55:47.000Z" + }, + "events": [ + { + "uuid": "2f41d192-10d5-4e01-a035-093e131d6d4d", + "start": { + "$date": "2021-01-20T16:25:04.000Z" + }, + "end": { + "$date": "2021-01-20T17:55:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "80983a59-d9a5-4319-b0ab-6a01d2bb0bde", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T16:37:31.000Z" + }, + "end": { + "$date": "2021-01-20T18:22:42.000Z" + }, + "events": [ + { + "uuid": "710a56ba-9d0b-4077-b852-2bebb8ca77b6", + "start": { + "$date": "2021-01-20T16:37:31.000Z" + }, + "end": { + "$date": "2021-01-20T17:42:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3e9ea08b-f748-4ee7-87e5-2b93a031fa48", + "start": { + "$date": "2021-01-20T17:42:31.000Z" + }, + "end": { + "$date": "2021-01-20T18:22:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "328a0309-9063-4b32-8930-3a78f7e87e58", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T18:26:05.000Z" + }, + "end": { + "$date": "2021-01-20T18:47:38.000Z" + }, + "events": [ + { + "uuid": "ce92ea87-bca9-4bed-bfe2-314466c606e7", + "start": { + "$date": "2021-01-20T18:26:05.000Z" + }, + "end": { + "$date": "2021-01-20T18:47:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "48bc6ca0-05e9-4508-aa1c-16c78cdeda12", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T18:37:49.000Z" + }, + "end": { + "$date": "2021-01-20T19:32:17.000Z" + }, + "events": [ + { + "uuid": "f0e63485-4e25-4f40-8588-85df7a517f2f", + "start": { + "$date": "2021-01-20T18:37:49.000Z" + }, + "end": { + "$date": "2021-01-20T19:23:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "611442c8-c60b-4500-b6f4-f700ed52230a", + "start": { + "$date": "2021-01-20T19:23:49.000Z" + }, + "end": { + "$date": "2021-01-20T19:30:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d4550c5b-a371-49ce-9de3-24e358cfe335", + "start": { + "$date": "2021-01-20T19:30:49.000Z" + }, + "end": { + "$date": "2021-01-20T19:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5b70a68-ba87-4eb7-882f-ab5a41e60c5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-20T19:35:59.000Z" + }, + "end": { + "$date": "2021-01-20T20:17:09.000Z" + }, + "events": [ + { + "uuid": "eb4d7af9-49e7-45dd-9ea8-4e17cc562347", + "start": { + "$date": "2021-01-20T19:35:59.000Z" + }, + "end": { + "$date": "2021-01-20T20:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9f53c54-0605-480d-9381-b91948bc0760", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-20T19:43:21.000Z" + }, + "end": { + "$date": "2021-01-20T20:19:08.000Z" + }, + "events": [ + { + "uuid": "7fe5bf0c-8810-4681-9570-96fafd44910a", + "start": { + "$date": "2021-01-20T19:43:21.000Z" + }, + "end": { + "$date": "2021-01-20T20:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "5c6bd7d6-4d0c-4db9-b304-641e1c5b7d87", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T19:56:34.000Z" + }, + "end": { + "$date": "2021-01-20T20:23:14.000Z" + }, + "events": [ + { + "uuid": "91d88f8b-c157-4ebd-99ea-966ffbc2cf9f", + "start": { + "$date": "2021-01-20T19:56:34.000Z" + }, + "end": { + "$date": "2021-01-20T20:23:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f75fa070-90d3-4c79-bf1f-897b49d208db", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-20T20:23:29.000Z" + }, + "end": { + "$date": "2021-01-20T21:34:46.000Z" + }, + "events": [ + { + "uuid": "dd433d9a-e3f2-4998-a05c-46f091fd0dac", + "start": { + "$date": "2021-01-20T20:23:29.000Z" + }, + "end": { + "$date": "2021-01-20T21:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4124dc72-9c55-4329-a257-4d6d73d2a111", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-20T20:43:27.000Z" + }, + "end": { + "$date": "2021-01-20T22:06:04.000Z" + }, + "events": [ + { + "uuid": "f8c27e1c-cb59-44fb-b295-667340e9dfb3", + "start": { + "$date": "2021-01-20T20:43:27.000Z" + }, + "end": { + "$date": "2021-01-20T22:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a0639280-700c-4e64-abc3-478493cf9611", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-20T21:01:08.000Z" + }, + "end": { + "$date": "2021-01-20T22:02:17.000Z" + }, + "events": [ + { + "uuid": "92e162f8-0968-4fe9-ba7a-dbacd91e65e3", + "start": { + "$date": "2021-01-20T21:01:08.000Z" + }, + "end": { + "$date": "2021-01-20T22:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "256b428f-aaa9-4881-b571-e538fcd0a57d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T21:01:47.000Z" + }, + "end": { + "$date": "2021-01-20T21:12:18.000Z" + }, + "events": [ + { + "uuid": "77d6cddc-66cf-40de-9fd8-b87cbbfdbfae", + "start": { + "$date": "2021-01-20T21:01:47.000Z" + }, + "end": { + "$date": "2021-01-20T21:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ff1aaf50-9187-42c1-9466-9e0df9fe34c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T21:51:10.000Z" + }, + "end": { + "$date": "2021-01-20T22:08:52.000Z" + }, + "events": [ + { + "uuid": "4079ec94-1ab4-4211-9af0-7e4466763ece", + "start": { + "$date": "2021-01-20T21:51:10.000Z" + }, + "end": { + "$date": "2021-01-20T22:08:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75659658-d417-4ce9-9d3b-da204c6a44dc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-20T23:39:33.000Z" + }, + "end": { + "$date": "2021-01-21T00:06:06.000Z" + }, + "events": [ + { + "uuid": "9a6417ff-db4a-4215-97ab-8412a1e24fd0", + "start": { + "$date": "2021-01-20T23:39:33.000Z" + }, + "end": { + "$date": "2021-01-21T00:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9e1d46f4-f54d-4cee-ab83-b178b0d3d1bc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-20T23:46:10.000Z" + }, + "end": { + "$date": "2021-01-21T00:09:32.000Z" + }, + "events": [ + { + "uuid": "0e377333-a596-414f-9008-465647e96f90", + "start": { + "$date": "2021-01-20T23:46:10.000Z" + }, + "end": { + "$date": "2021-01-21T00:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9578b49-1e29-4969-9589-614d32bf728f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T00:02:48.000Z" + }, + "end": { + "$date": "2021-01-21T00:26:40.000Z" + }, + "events": [ + { + "uuid": "5a471b87-e868-4542-832c-ff7c09f5b360", + "start": { + "$date": "2021-01-21T00:02:48.000Z" + }, + "end": { + "$date": "2021-01-21T00:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63ac78ae-7dd1-4778-be56-c81e2426dc3f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-21T00:04:41.000Z" + }, + "end": { + "$date": "2021-01-21T00:26:22.000Z" + }, + "events": [ + { + "uuid": "8c3469e1-f711-4356-a8fe-d077978efe28", + "start": { + "$date": "2021-01-21T00:04:41.000Z" + }, + "end": { + "$date": "2021-01-21T00:26:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "56acfaf9-d2c7-43ff-84e1-9f3b150b12e9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T00:12:24.000Z" + }, + "end": { + "$date": "2021-01-21T01:44:56.000Z" + }, + "events": [ + { + "uuid": "fb7ed82b-5721-4eae-ac4e-7afe493a8b27", + "start": { + "$date": "2021-01-21T00:12:24.000Z" + }, + "end": { + "$date": "2021-01-21T01:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9b1e14e-26d1-4444-94af-8074e9f7c091", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T00:31:35.000Z" + }, + "end": { + "$date": "2021-01-21T00:45:11.000Z" + }, + "events": [ + { + "uuid": "21c8cc8e-e114-4c18-854e-a114751fb03f", + "start": { + "$date": "2021-01-21T00:31:35.000Z" + }, + "end": { + "$date": "2021-01-21T00:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0ed643c-af77-43ed-9d2b-cc5bf32f08b6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-21T00:32:22.000Z" + }, + "end": { + "$date": "2021-01-21T00:45:08.000Z" + }, + "events": [ + { + "uuid": "1b801467-492a-4e29-b058-526f41ae4777", + "start": { + "$date": "2021-01-21T00:32:22.000Z" + }, + "end": { + "$date": "2021-01-21T00:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a065cd7-456d-430f-bc99-7b2d5e9ddb87", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T00:31:37.000Z" + }, + "end": { + "$date": "2021-01-21T00:45:16.000Z" + }, + "events": [ + { + "uuid": "6e4e53c4-358e-45d0-9760-02e2160e814f", + "start": { + "$date": "2021-01-21T00:31:37.000Z" + }, + "end": { + "$date": "2021-01-21T00:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2fc3164b-ebc3-4168-b501-811180071108", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T00:47:21.000Z" + }, + "end": { + "$date": "2021-01-21T01:10:20.000Z" + }, + "events": [ + { + "uuid": "14624335-e2bb-4d03-86d5-14f4bdb541bf", + "start": { + "$date": "2021-01-21T00:47:21.000Z" + }, + "end": { + "$date": "2021-01-21T01:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f4d2ca2-0ed3-4b98-bcfa-567be8f5afbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T00:47:17.000Z" + }, + "end": { + "$date": "2021-01-21T01:10:20.000Z" + }, + "events": [ + { + "uuid": "2d9b4a87-ca64-411a-bb39-85bc4fb0fc49", + "start": { + "$date": "2021-01-21T00:47:17.000Z" + }, + "end": { + "$date": "2021-01-21T01:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0277ce33-7fcf-4678-91d7-1cc81e6458b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-21T00:48:58.000Z" + }, + "end": { + "$date": "2021-01-21T01:10:14.000Z" + }, + "events": [ + { + "uuid": "cbdcc935-b87c-4a11-a043-71716cf963aa", + "start": { + "$date": "2021-01-21T00:48:58.000Z" + }, + "end": { + "$date": "2021-01-21T01:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0498907e-093a-4740-a649-62f05a6e6c58", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T00:53:40.000Z" + }, + "end": { + "$date": "2021-01-21T02:00:01.000Z" + }, + "events": [ + { + "uuid": "15e3254a-eb5a-468d-9d2d-98f4a6c0ebef", + "start": { + "$date": "2021-01-21T00:53:40.000Z" + }, + "end": { + "$date": "2021-01-21T02:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7221966b-3d12-47f4-abea-0c530123145e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-21T01:11:05.000Z" + }, + "end": { + "$date": "2021-01-21T01:12:05.000Z" + }, + "events": [ + { + "uuid": "c6257947-b9a0-4479-a616-4c36c7047958", + "start": { + "$date": "2021-01-21T01:11:05.000Z" + }, + "end": { + "$date": "2021-01-21T01:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2eb8116c-9d09-410b-ac1a-2612cf5738a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-21T01:13:10.000Z" + }, + "end": { + "$date": "2021-01-21T02:55:09.000Z" + }, + "events": [ + { + "uuid": "1259b79d-685c-4058-a4b3-c03d3e00a5ee", + "start": { + "$date": "2021-01-21T01:13:10.000Z" + }, + "end": { + "$date": "2021-01-21T02:55:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4cee8468-26f8-4e73-bb7b-66bd84db9ca1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-21T02:32:31.000Z" + }, + "end": { + "$date": "2021-01-21T05:24:33.000Z" + }, + "events": [ + { + "uuid": "3fdcd62d-b2b4-4e2f-bfd6-ee300d85467d", + "start": { + "$date": "2021-01-21T02:32:31.000Z" + }, + "end": { + "$date": "2021-01-21T05:24:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "86564c6b-ba7a-40d9-8892-a242327d6c9d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T02:40:42.000Z" + }, + "end": { + "$date": "2021-01-21T03:02:41.000Z" + }, + "events": [ + { + "uuid": "7fc41c70-f41a-4bbb-b096-2263791ed02d", + "start": { + "$date": "2021-01-21T02:40:42.000Z" + }, + "end": { + "$date": "2021-01-21T03:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb9cce22-ebbb-4f8d-b052-650037c5c493", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T03:01:30.000Z" + }, + "end": { + "$date": "2021-01-21T03:30:59.000Z" + }, + "events": [ + { + "uuid": "34742525-4887-496a-93e9-b43f22ab5c37", + "start": { + "$date": "2021-01-21T03:01:30.000Z" + }, + "end": { + "$date": "2021-01-21T03:30:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47f98450-1be5-44eb-9191-c45f6bf1752f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T03:30:57.000Z" + }, + "end": { + "$date": "2021-01-21T03:31:49.000Z" + }, + "events": [ + { + "uuid": "cced5f9f-d8a2-4f94-b0ad-7d5ce25c1e7a", + "start": { + "$date": "2021-01-21T03:30:57.000Z" + }, + "end": { + "$date": "2021-01-21T03:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "377a3918-fe11-4704-9232-9e33d1ff23ae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-21T03:03:58.000Z" + }, + "end": { + "$date": "2021-01-21T03:30:55.000Z" + }, + "events": [ + { + "uuid": "8c6326f9-8deb-4ec6-9db3-1b5b1e8fe631", + "start": { + "$date": "2021-01-21T03:03:58.000Z" + }, + "end": { + "$date": "2021-01-21T03:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a60f5a1-e875-468d-858a-3e024247c380", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T03:09:00.000Z" + }, + "end": { + "$date": "2021-01-21T03:26:31.000Z" + }, + "events": [ + { + "uuid": "5c324e63-8de8-42fd-b6c1-d6722624fbc3", + "start": { + "$date": "2021-01-21T03:09:00.000Z" + }, + "end": { + "$date": "2021-01-21T03:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4565ba6-e94c-4990-95b1-c09187684d4e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T03:31:29.000Z" + }, + "end": { + "$date": "2021-01-21T03:33:42.000Z" + }, + "events": [ + { + "uuid": "c1eaa8f5-ff33-474d-9cb0-20ce97ee921c", + "start": { + "$date": "2021-01-21T03:31:29.000Z" + }, + "end": { + "$date": "2021-01-21T03:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6d8c0f3-13f0-4b61-bd39-31b30e57bedb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T03:35:56.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:51.000Z" + }, + "events": [ + { + "uuid": "203b7df8-2aa9-47f2-babc-c05c3f0ece3e", + "start": { + "$date": "2021-01-21T03:35:56.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e989340f-55d6-428e-8b4e-079712ac8a32", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-21T03:35:52.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:48.000Z" + }, + "events": [ + { + "uuid": "48869a6c-79fb-42ed-99fe-4a99a1a85a59", + "start": { + "$date": "2021-01-21T03:35:52.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f5df58e-85fb-43d5-8c50-08fe475d2e64", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T03:35:57.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:43.000Z" + }, + "events": [ + { + "uuid": "56ef91d4-54d7-4484-be0a-30b7d9150b81", + "start": { + "$date": "2021-01-21T03:35:57.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0daafa31-deb2-4202-9881-ba9e2469cfba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T03:35:53.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:48.000Z" + }, + "events": [ + { + "uuid": "34d17ee5-769c-493e-9bc8-cebcb0dc029f", + "start": { + "$date": "2021-01-21T03:35:53.000Z" + }, + "end": { + "$date": "2021-01-21T03:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e67a468-01a7-493f-b2c6-2a71e5b7d9ab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T03:55:31.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:59.000Z" + }, + "events": [ + { + "uuid": "0442add2-d627-422b-9427-ef9b6f1ea346", + "start": { + "$date": "2021-01-21T03:55:31.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63c77995-a0e7-4061-b79c-ffff5c7a97d6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T03:55:37.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:48.000Z" + }, + "events": [ + { + "uuid": "1cd9d0f1-7c57-4982-8084-29a30e5424fc", + "start": { + "$date": "2021-01-21T03:55:37.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "638a2020-ab5d-41c1-9bc0-497035558220", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-21T03:56:28.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:49.000Z" + }, + "events": [ + { + "uuid": "5ecc8232-7134-445c-b2c0-3e91a59c237b", + "start": { + "$date": "2021-01-21T03:56:28.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e44a820-4042-4aff-9994-79c4457e8627", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T03:55:33.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:54.000Z" + }, + "events": [ + { + "uuid": "3801ae4d-3b98-43c5-8e54-1cc86aad80f9", + "start": { + "$date": "2021-01-21T03:55:33.000Z" + }, + "end": { + "$date": "2021-01-21T04:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4df1c2d7-602c-49b3-8032-fa79a20e7275", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T03:53:58.000Z" + }, + "end": { + "$date": "2021-01-21T04:51:19.000Z" + }, + "events": [ + { + "uuid": "f642e7fc-d69c-47d1-8e4a-ae4a5f4125c8", + "start": { + "$date": "2021-01-21T03:53:58.000Z" + }, + "end": { + "$date": "2021-01-21T04:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37507870-682b-4e0c-89ed-de34833847d8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-21T03:54:18.000Z" + }, + "end": { + "$date": "2021-01-21T04:52:11.000Z" + }, + "events": [ + { + "uuid": "3ca02178-0b34-484e-8614-c5bd68705c7e", + "start": { + "$date": "2021-01-21T03:54:18.000Z" + }, + "end": { + "$date": "2021-01-21T04:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fd8a536-749c-4e42-9a40-726a61d6ff34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T04:15:07.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:52.000Z" + }, + "events": [ + { + "uuid": "fce98fae-0bce-4bb5-99a5-8d422bad5633", + "start": { + "$date": "2021-01-21T04:15:07.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02e6ee51-3c34-47cd-a770-57e123276c1d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-21T04:15:08.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:45.000Z" + }, + "events": [ + { + "uuid": "3c8feb7d-73e3-40d2-bb64-afe325f5039d", + "start": { + "$date": "2021-01-21T04:15:08.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b37d05a-4042-4910-9caf-3cfaae9d4c80", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T04:15:22.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:43.000Z" + }, + "events": [ + { + "uuid": "dc2eb798-f8e5-498c-bfc5-03bc2f90da36", + "start": { + "$date": "2021-01-21T04:15:22.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0f152eb-0c12-42fa-9448-73866ef85d63", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T04:15:09.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:45.000Z" + }, + "events": [ + { + "uuid": "1118a816-701d-4b02-ba22-c6e51fe0326d", + "start": { + "$date": "2021-01-21T04:15:09.000Z" + }, + "end": { + "$date": "2021-01-21T04:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e85f2aaf-0e6c-4ce5-99e1-8bb691dc85c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T04:32:00.000Z" + }, + "end": { + "$date": "2021-01-21T05:07:56.000Z" + }, + "events": [ + { + "uuid": "afc3f98b-9677-48fe-8a06-cc8ada6c0ffa", + "start": { + "$date": "2021-01-21T04:32:00.000Z" + }, + "end": { + "$date": "2021-01-21T05:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc905051-db32-456b-aee5-92796a2cd989", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-21T04:46:44.000Z" + }, + "end": { + "$date": "2021-01-21T05:07:57.000Z" + }, + "events": [ + { + "uuid": "925c9c6f-39b5-4c32-ac56-de035b9f9b64", + "start": { + "$date": "2021-01-21T04:46:44.000Z" + }, + "end": { + "$date": "2021-01-21T05:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9872967-64df-44c2-bd05-e0bd3b16c27d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T04:32:12.000Z" + }, + "end": { + "$date": "2021-01-21T05:07:51.000Z" + }, + "events": [ + { + "uuid": "3be9496f-0619-4f3d-8451-88d45d2d5d59", + "start": { + "$date": "2021-01-21T04:32:12.000Z" + }, + "end": { + "$date": "2021-01-21T05:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3771b909-7a27-42a5-a8f3-16c12e774deb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-21T04:32:03.000Z" + }, + "end": { + "$date": "2021-01-21T05:28:22.000Z" + }, + "events": [ + { + "uuid": "5df6ea84-ef74-4c59-9398-9749bf8028c6", + "start": { + "$date": "2021-01-21T04:32:03.000Z" + }, + "end": { + "$date": "2021-01-21T05:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c60eb4b-8e29-4893-bce5-a8b9a0e19d06", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-21T04:46:13.000Z" + }, + "end": { + "$date": "2021-01-21T05:49:24.000Z" + }, + "events": [ + { + "uuid": "652bc00c-f6ed-463c-9b51-8dd127b74992", + "start": { + "$date": "2021-01-21T04:46:13.000Z" + }, + "end": { + "$date": "2021-01-21T05:49:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "96dc6dcc-376e-4620-a1e8-641f2b540b60", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T04:52:14.000Z" + }, + "end": { + "$date": "2021-01-21T06:16:09.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-21T04:52:14.000Z" + }, + "end": { + "$date": "2021-01-21T06:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "59f31a1a-0e43-4bd6-a8ba-10c1854cdea9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-21T04:52:56.000Z" + }, + "end": { + "$date": "2021-01-21T05:18:56.000Z" + }, + "events": [ + { + "uuid": "37295a03-18c2-4c1c-acd5-3fe7801fe59c", + "start": { + "$date": "2021-01-21T04:52:56.000Z" + }, + "end": { + "$date": "2021-01-21T05:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7570dd58-cca1-4f2f-94e8-081afc880b3f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T05:08:00.000Z" + }, + "end": { + "$date": "2021-01-21T05:16:50.000Z" + }, + "events": [ + { + "uuid": "bde55223-0643-4536-9b84-fbf07a46e59c", + "start": { + "$date": "2021-01-21T05:08:00.000Z" + }, + "end": { + "$date": "2021-01-21T05:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a0bb131-c7ca-4edf-8d66-69861f26f8a7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-21T05:09:02.000Z" + }, + "end": { + "$date": "2021-01-21T05:15:06.000Z" + }, + "events": [ + { + "uuid": "22e061ae-b03d-4565-8387-f11daec52f2c", + "start": { + "$date": "2021-01-21T05:09:02.000Z" + }, + "end": { + "$date": "2021-01-21T05:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97841bdd-3ae9-4ee3-b11e-062ca183f12c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-21T05:09:03.000Z" + }, + "end": { + "$date": "2021-01-21T05:15:05.000Z" + }, + "events": [ + { + "uuid": "d259a44f-2ba7-4ba2-b1a1-46a004b872a7", + "start": { + "$date": "2021-01-21T05:09:03.000Z" + }, + "end": { + "$date": "2021-01-21T05:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "728aee95-ba9a-4c94-86f7-5b0890bd1c73", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-21T05:29:30.000Z" + }, + "end": { + "$date": "2021-01-21T07:08:23.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-21T05:29:30.000Z" + }, + "end": { + "$date": "2021-01-21T07:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "91b84876-5b19-43c5-886d-a2d3a3a2e499", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T06:17:19.000Z" + }, + "end": { + "$date": "2021-01-21T06:21:19.000Z" + }, + "events": [ + { + "uuid": "2af6e474-c6c9-420f-9a11-278359e7acb9", + "start": { + "$date": "2021-01-21T06:17:19.000Z" + }, + "end": { + "$date": "2021-01-21T06:21:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "843c1548-3caf-4838-87ca-552d17c5f369", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-21T15:51:18.000Z" + }, + "end": { + "$date": "2021-01-21T16:11:03.000Z" + }, + "events": [ + { + "uuid": "a2320e8b-b8bb-490e-aaf1-d7e7a1bc5b5e", + "start": { + "$date": "2021-01-21T15:51:18.000Z" + }, + "end": { + "$date": "2021-01-21T16:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f9db14a-5c9c-4447-95ba-461ebd8b0e51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-21T16:11:49.000Z" + }, + "end": { + "$date": "2021-01-21T16:44:50.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-21T16:11:49.000Z" + }, + "end": { + "$date": "2021-01-21T16:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1793391b-9099-40d7-b5df-2e8a1ee57665", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T18:33:59.000Z" + }, + "end": { + "$date": "2021-01-21T18:41:10.000Z" + }, + "events": [ + { + "uuid": "db08ad05-a91f-441a-977e-58f35c5e7fc8", + "start": { + "$date": "2021-01-21T18:33:59.000Z" + }, + "end": { + "$date": "2021-01-21T18:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "81ae8b66-5d37-4c5f-aa05-319d520fb5bb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-21T18:58:43.000Z" + }, + "end": { + "$date": "2021-01-21T19:02:53.000Z" + }, + "events": [ + { + "uuid": "192fcc48-702b-4f0c-8928-3c3ba00b8f4f", + "start": { + "$date": "2021-01-21T18:58:43.000Z" + }, + "end": { + "$date": "2021-01-21T19:02:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2b166a1-03f6-4782-a0b0-2b1f52faa054", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-21T19:19:44.000Z" + }, + "end": { + "$date": "2021-01-21T19:40:05.000Z" + }, + "events": [ + { + "uuid": "dd3bb32b-3206-4756-86fd-0a5c97c86fce", + "start": { + "$date": "2021-01-21T19:19:44.000Z" + }, + "end": { + "$date": "2021-01-21T19:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0dd2a479-06e2-4eca-8109-f30d18997357", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-21T19:44:56.000Z" + }, + "end": { + "$date": "2021-01-21T20:43:15.000Z" + }, + "events": [ + { + "uuid": "93e17162-6378-464a-af24-9a16e41a915e", + "start": { + "$date": "2021-01-21T19:44:56.000Z" + }, + "end": { + "$date": "2021-01-21T20:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3f5a414b-ea2d-4e90-8ee3-0c774662fda1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-21T20:04:39.000Z" + }, + "end": { + "$date": "2021-01-21T21:27:26.000Z" + }, + "events": [ + { + "uuid": "a4bd29e1-0624-4cf6-bfa7-517c4ba78717", + "start": { + "$date": "2021-01-21T20:04:39.000Z" + }, + "end": { + "$date": "2021-01-21T21:27:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4c2e3662-d39a-4026-8996-104c2b8843d7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-21T20:51:22.000Z" + }, + "end": { + "$date": "2021-01-21T21:47:28.000Z" + }, + "events": [ + { + "uuid": "467fa717-e377-49a7-8174-d9de00bccd75", + "start": { + "$date": "2021-01-21T20:51:22.000Z" + }, + "end": { + "$date": "2021-01-21T21:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d1d9850f-2637-4cad-934f-d849300f3c7f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-21T21:02:16.000Z" + }, + "end": { + "$date": "2021-01-21T21:55:49.000Z" + }, + "events": [ + { + "uuid": "887cb0a2-a8d3-4a0b-9756-48a6679d050a", + "start": { + "$date": "2021-01-21T21:02:16.000Z" + }, + "end": { + "$date": "2021-01-21T21:55:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8dae1b3c-a14b-4e27-99eb-b6a79e94cdfd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T21:41:30.000Z" + }, + "end": { + "$date": "2021-01-21T23:20:20.000Z" + }, + "events": [ + { + "uuid": "0ee56ebb-1301-4c44-a799-a9be700070f8", + "start": { + "$date": "2021-01-21T21:41:30.000Z" + }, + "end": { + "$date": "2021-01-21T23:20:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "ad368f8a-4765-4802-bf85-eff68ab71085", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-21T21:46:27.000Z" + }, + "end": { + "$date": "2021-01-21T22:47:55.000Z" + }, + "events": [ + { + "uuid": "9a6bc71f-2f7a-4288-99af-098436ed7b19", + "start": { + "$date": "2021-01-21T21:46:27.000Z" + }, + "end": { + "$date": "2021-01-21T22:18:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78659272-7cc9-4ca9-b955-4814b336b8b0", + "start": { + "$date": "2021-01-21T22:18:27.000Z" + }, + "end": { + "$date": "2021-01-21T22:29:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2ee14ebc-6c92-4e61-80ce-e386269d3748", + "start": { + "$date": "2021-01-21T22:29:27.000Z" + }, + "end": { + "$date": "2021-01-21T22:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "566966ed-8436-41fe-b376-754ca3d1e4b0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-21T22:05:03.000Z" + }, + "end": { + "$date": "2021-01-21T23:03:15.000Z" + }, + "events": [ + { + "uuid": "fc268e13-dce3-494c-9186-2302a421a9d8", + "start": { + "$date": "2021-01-21T22:05:03.000Z" + }, + "end": { + "$date": "2021-01-21T23:03:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9509450e-609b-4ef4-b0f2-cebd88e3746b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-21T22:13:19.000Z" + }, + "end": { + "$date": "2021-01-21T22:42:18.000Z" + }, + "events": [ + { + "uuid": "01b5bc61-f3f9-4d3e-92b5-e40253bcfdea", + "start": { + "$date": "2021-01-21T22:13:19.000Z" + }, + "end": { + "$date": "2021-01-21T22:42:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd431f38-e9a4-4d6c-9c51-cb67b2f3d626", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T23:24:36.000Z" + }, + "end": { + "$date": "2021-01-21T23:59:07.000Z" + }, + "events": [ + { + "uuid": "87efa661-f9ee-49de-b20e-3a9a1bf491d3", + "start": { + "$date": "2021-01-21T23:24:36.000Z" + }, + "end": { + "$date": "2021-01-21T23:59:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8502d17-fb4a-424e-a259-881f7c780e41", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-21T23:25:03.000Z" + }, + "end": { + "$date": "2021-01-21T23:59:04.000Z" + }, + "events": [ + { + "uuid": "67f0a84c-317b-439c-a132-e3b682f59154", + "start": { + "$date": "2021-01-21T23:25:03.000Z" + }, + "end": { + "$date": "2021-01-21T23:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cca5df05-eccd-4584-8fba-9a43feb617a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-21T23:55:32.000Z" + }, + "end": { + "$date": "2021-01-22T01:08:58.000Z" + }, + "events": [ + { + "uuid": "93daa5df-43de-43c3-92ac-6c121d106e7f", + "start": { + "$date": "2021-01-21T23:55:32.000Z" + }, + "end": { + "$date": "2021-01-22T01:04:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ffe5b84-c30d-4808-a9e7-ddbf22775710", + "start": { + "$date": "2021-01-22T01:04:32.000Z" + }, + "end": { + "$date": "2021-01-22T01:08:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f514f2c4-16f8-4867-a75e-f48862eff4ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-21T23:59:10.000Z" + }, + "end": { + "$date": "2021-01-22T07:45:13.000Z" + }, + "events": [ + { + "uuid": "55710ccf-4dcd-4be8-8894-82b5d3064d97", + "start": { + "$date": "2021-01-21T23:59:10.000Z" + }, + "end": { + "$date": "2021-01-22T07:45:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6bdf1bc0-055b-4f93-98c7-1eeb04ce6a6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-22T00:00:58.000Z" + }, + "end": { + "$date": "2021-01-22T03:09:28.000Z" + }, + "events": [ + { + "uuid": "7163f717-ca9b-4b1b-b5e0-139dd00398bc", + "start": { + "$date": "2021-01-22T00:00:58.000Z" + }, + "end": { + "$date": "2021-01-22T03:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b0248189-e9fe-4530-8b84-f1b38f6427dd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-22T00:01:45.000Z" + }, + "end": { + "$date": "2021-01-22T01:49:31.000Z" + }, + "events": [ + { + "uuid": "3fd69a82-cfcc-4fab-b08a-fb5f9e5d94c1", + "start": { + "$date": "2021-01-22T00:01:45.000Z" + }, + "end": { + "$date": "2021-01-22T01:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf67afef-cc4f-4afe-8aae-0115e8b607ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T01:34:11.000Z" + }, + "end": { + "$date": "2021-01-22T01:57:06.000Z" + }, + "events": [ + { + "uuid": "443a3859-3045-46ad-8d3c-349bdf115231", + "start": { + "$date": "2021-01-22T01:34:11.000Z" + }, + "end": { + "$date": "2021-01-22T01:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "195f0c7a-202b-44d6-a657-e30d1efb64aa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-22T01:36:53.000Z" + }, + "end": { + "$date": "2021-01-22T02:01:39.000Z" + }, + "events": [ + { + "uuid": "86a8945d-efe3-4f46-912f-eb64039a62dc", + "start": { + "$date": "2021-01-22T01:36:53.000Z" + }, + "end": { + "$date": "2021-01-22T02:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "152c51b1-953a-4855-ab8d-66c2dbf21cb7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T01:58:32.000Z" + }, + "end": { + "$date": "2021-01-22T02:24:46.000Z" + }, + "events": [ + { + "uuid": "33b8bd56-ab2c-41e5-bf91-571ce27e13b1", + "start": { + "$date": "2021-01-22T01:58:32.000Z" + }, + "end": { + "$date": "2021-01-22T02:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e53a6cb0-0ce3-42c1-abfa-8c50578cf46d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-22T02:01:19.000Z" + }, + "end": { + "$date": "2021-01-22T03:45:19.000Z" + }, + "events": [ + { + "uuid": "18564b0d-209f-4421-b5a5-165adc830af4", + "start": { + "$date": "2021-01-22T02:01:19.000Z" + }, + "end": { + "$date": "2021-01-22T03:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a1b2826-b9dd-42f0-b042-50291fac4e82", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-22T02:39:06.000Z" + }, + "end": { + "$date": "2021-01-22T03:15:18.000Z" + }, + "events": [ + { + "uuid": "bbc7fe59-bdcc-4340-9df1-740296e7b25f", + "start": { + "$date": "2021-01-22T02:39:06.000Z" + }, + "end": { + "$date": "2021-01-22T03:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5b4ea24a-4591-457a-80a1-119918f8f32d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T02:54:14.000Z" + }, + "end": { + "$date": "2021-01-22T03:42:54.000Z" + }, + "events": [ + { + "uuid": "a9594af5-d0d4-4e57-b9ee-e40c77466f7d", + "start": { + "$date": "2021-01-22T02:54:14.000Z" + }, + "end": { + "$date": "2021-01-22T03:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34b9d471-470b-464b-be5c-7b2e48a33baa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-22T04:01:16.000Z" + }, + "end": { + "$date": "2021-01-22T04:41:22.000Z" + }, + "events": [ + { + "uuid": "435d1858-95fd-43b5-a5b3-c5bb0ebbaaa3", + "start": { + "$date": "2021-01-22T04:01:16.000Z" + }, + "end": { + "$date": "2021-01-22T04:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "63787c35-e6f9-4938-ae0f-d989c5f2959f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-22T03:21:27.000Z" + }, + "end": { + "$date": "2021-01-22T06:52:08.000Z" + }, + "events": [ + { + "uuid": "20cfceda-96f8-450d-8267-a3f3cc44bf65", + "start": { + "$date": "2021-01-22T03:21:27.000Z" + }, + "end": { + "$date": "2021-01-22T05:41:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c2bffc4a-824c-48a8-8810-5aadac59128d", + "start": { + "$date": "2021-01-22T05:41:27.000Z" + }, + "end": { + "$date": "2021-01-22T05:46:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7199d65-3ee6-4883-846e-2dbb8ef62188", + "start": { + "$date": "2021-01-22T05:46:27.000Z" + }, + "end": { + "$date": "2021-01-22T06:52:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "775a4281-8aab-4779-a681-4d35ffec92b4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-22T06:36:16.000Z" + }, + "end": { + "$date": "2021-01-22T06:57:46.000Z" + }, + "events": [ + { + "uuid": "415a37e5-a915-4520-956f-c697ca048231", + "start": { + "$date": "2021-01-22T06:36:16.000Z" + }, + "end": { + "$date": "2021-01-22T06:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "621a8269-f650-4b39-b74a-c282d9313e65", + "uuid": "bbf1549f-7b06-4ae0-b533-c52d11f27ddb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-22T03:53:51.000Z" + }, + "end": { + "$date": "2021-01-22T04:23:09.000Z" + }, + "events": [ + { + "uuid": "232f7dbb-1623-4ab5-9d93-106c1e3b4d02", + "start": { + "$date": "2021-01-22T03:53:51.000Z" + }, + "end": { + "$date": "2021-01-22T04:23:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fe67594a-2b13-48eb-acd8-7fdb5f4546fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-22T04:14:34.000Z" + }, + "end": { + "$date": "2021-01-22T06:37:34.000Z" + }, + "events": [ + { + "uuid": "dad471ea-db14-498c-8a26-b47d46b88e6c", + "start": { + "$date": "2021-01-22T04:14:34.000Z" + }, + "end": { + "$date": "2021-01-22T06:37:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0645a6b6-a6f6-47f6-b191-72db9eae3a54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T04:15:36.000Z" + }, + "end": { + "$date": "2021-01-22T04:54:13.000Z" + }, + "events": [ + { + "uuid": "609eb7a5-6163-483c-b657-c755e30b26b2", + "start": { + "$date": "2021-01-22T04:15:36.000Z" + }, + "end": { + "$date": "2021-01-22T04:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6771831a-dadd-45ff-abb9-3d8803086b17", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-22T04:50:57.000Z" + }, + "end": { + "$date": "2021-01-22T07:20:12.000Z" + }, + "events": [ + { + "uuid": "5f01c951-e166-42d0-a988-7698e805e82f", + "start": { + "$date": "2021-01-22T04:50:57.000Z" + }, + "end": { + "$date": "2021-01-22T07:20:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0a3e608-37f8-4111-9534-4c939f5a0fad", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-22T05:11:36.000Z" + }, + "end": { + "$date": "2021-01-22T05:35:17.000Z" + }, + "events": [ + { + "uuid": "c002f31b-4313-4ef5-95e9-42963b8a5307", + "start": { + "$date": "2021-01-22T05:11:36.000Z" + }, + "end": { + "$date": "2021-01-22T05:35:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de7bd201-684e-4230-adfc-10610d405e5a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-22T05:40:52.000Z" + }, + "end": { + "$date": "2021-01-22T06:04:22.000Z" + }, + "events": [ + { + "uuid": "61a063e4-fe74-43e0-9f5a-229c974b5c30", + "start": { + "$date": "2021-01-22T05:40:52.000Z" + }, + "end": { + "$date": "2021-01-22T06:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "696a18b0-0e99-422c-987a-f74414e1bb20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-22T06:01:06.000Z" + }, + "end": { + "$date": "2021-01-22T06:13:52.000Z" + }, + "events": [ + { + "uuid": "79ec55af-5f27-4264-96dd-c84d30d070d2", + "start": { + "$date": "2021-01-22T06:01:06.000Z" + }, + "end": { + "$date": "2021-01-22T06:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1d9a322e-fc6f-417d-aba7-efcc6dbd6255", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T15:46:11.000Z" + }, + "end": { + "$date": "2021-01-22T16:15:02.000Z" + }, + "events": [ + { + "uuid": "e7d90b92-5d44-4bf8-ba33-a5a9a210e4cb", + "start": { + "$date": "2021-01-22T15:46:11.000Z" + }, + "end": { + "$date": "2021-01-22T16:15:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "0d4ea543-d4d1-416c-b864-7d2b3ac615e3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-22T15:54:18.000Z" + }, + "end": { + "$date": "2021-01-22T16:34:58.000Z" + }, + "events": [ + { + "uuid": "9771e272-69f5-487d-b495-206b10c1f63b", + "start": { + "$date": "2021-01-22T15:54:18.000Z" + }, + "end": { + "$date": "2021-01-22T16:34:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0abd18fd-d891-4329-98be-d33b4cb52dbb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-22T15:54:53.000Z" + }, + "end": { + "$date": "2021-01-22T16:42:54.000Z" + }, + "events": [ + { + "uuid": "1edbde3b-7811-4e8f-bd09-80cb9abd7dc3", + "start": { + "$date": "2021-01-22T15:54:53.000Z" + }, + "end": { + "$date": "2021-01-22T16:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "28c3c80d-d682-4f13-a299-8e2a3854d400", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T18:01:24.000Z" + }, + "end": { + "$date": "2021-01-22T18:55:50.000Z" + }, + "events": [ + { + "uuid": "c16f018d-f132-4828-8bff-c76c853d599c", + "start": { + "$date": "2021-01-22T18:01:24.000Z" + }, + "end": { + "$date": "2021-01-22T18:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63fec018-8529-433e-b1bb-bb21433d8b2f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-22T18:29:18.000Z" + }, + "end": { + "$date": "2021-01-22T19:10:25.000Z" + }, + "events": [ + { + "uuid": "5ea97116-2ac0-4128-9d00-ccda8ac0984b", + "start": { + "$date": "2021-01-22T18:29:18.000Z" + }, + "end": { + "$date": "2021-01-22T19:10:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24500900-0cfc-4d74-983c-0457667f7579", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T19:26:33.000Z" + }, + "end": { + "$date": "2021-01-22T20:03:19.000Z" + }, + "events": [ + { + "uuid": "ecd5732c-384e-4622-85f8-08fdcfbefdbd", + "start": { + "$date": "2021-01-22T19:26:33.000Z" + }, + "end": { + "$date": "2021-01-22T20:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaeefb81-0b1e-4e3b-ba59-709843eb744e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T20:04:10.000Z" + }, + "end": { + "$date": "2021-01-22T20:42:35.000Z" + }, + "events": [ + { + "uuid": "d99534d0-f976-4d7c-abc1-05d8f7bd838f", + "start": { + "$date": "2021-01-22T20:04:10.000Z" + }, + "end": { + "$date": "2021-01-22T20:42:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8166778d-f43d-4e0d-855a-bea77010649f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-22T20:26:37.000Z" + }, + "end": { + "$date": "2021-01-22T20:54:34.000Z" + }, + "events": [ + { + "uuid": "e119c515-43ba-499e-a43b-cad14995c85a", + "start": { + "$date": "2021-01-22T20:26:37.000Z" + }, + "end": { + "$date": "2021-01-22T20:54:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "edd6ec96-2573-4137-a747-c0082207ad32", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-22T20:29:46.000Z" + }, + "end": { + "$date": "2021-01-22T22:26:29.000Z" + }, + "events": [ + { + "uuid": "ecfc4df6-5ebe-4689-8929-760f93dbbd81", + "start": { + "$date": "2021-01-22T20:29:46.000Z" + }, + "end": { + "$date": "2021-01-22T22:26:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3452cf3e-d0b1-479d-8ae9-fc847b40844d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-22T20:51:12.000Z" + }, + "end": { + "$date": "2021-01-22T22:09:14.000Z" + }, + "events": [ + { + "uuid": "34c42ba3-3785-4f64-bb2e-cd45d4b3ecbb", + "start": { + "$date": "2021-01-22T20:51:12.000Z" + }, + "end": { + "$date": "2021-01-22T22:09:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b6e86d1c-1987-4302-818b-264e06c8e643", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-22T21:15:03.000Z" + }, + "end": { + "$date": "2021-01-22T23:36:28.000Z" + }, + "events": [ + { + "uuid": "9ec5abc6-57e2-4089-975f-eb23f51031a8", + "start": { + "$date": "2021-01-22T21:15:03.000Z" + }, + "end": { + "$date": "2021-01-22T23:36:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "c8bfdbf7-d08d-4d79-bc23-1dfc06c6c014", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-22T21:58:12.000Z" + }, + "end": { + "$date": "2021-01-22T22:04:07.000Z" + }, + "events": [ + { + "uuid": "9a2e2918-ae94-49e4-bccb-3d748ce802b0", + "start": { + "$date": "2021-01-22T21:58:12.000Z" + }, + "end": { + "$date": "2021-01-22T22:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "c413d00b-1f45-4b9d-9fc7-7fddab056424", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-22T22:00:44.000Z" + }, + "end": { + "$date": "2021-01-22T22:11:32.000Z" + }, + "events": [ + { + "uuid": "96092ba0-fc6c-4e17-9847-cdd16d6521fb", + "start": { + "$date": "2021-01-22T22:00:44.000Z" + }, + "end": { + "$date": "2021-01-22T22:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e53aac53-0433-4576-bbb6-d40abecfd6e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-22T22:04:18.000Z" + }, + "end": { + "$date": "2021-01-22T23:19:29.000Z" + }, + "events": [ + { + "uuid": "c6b0a3db-1d42-4885-8366-88fa34059a05", + "start": { + "$date": "2021-01-22T22:04:18.000Z" + }, + "end": { + "$date": "2021-01-22T23:19:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "423ae3dc-b3d0-4f70-a016-2beac357d1f1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-22T22:06:39.000Z" + }, + "end": { + "$date": "2021-01-22T22:37:51.000Z" + }, + "events": [ + { + "uuid": "e6c5c7ae-cde5-41c4-8fd4-25c6686266f8", + "start": { + "$date": "2021-01-22T22:06:39.000Z" + }, + "end": { + "$date": "2021-01-22T22:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c4edcbcc-be60-4298-89c0-cd38a96f031b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-22T23:00:09.000Z" + }, + "end": { + "$date": "2021-01-22T23:03:10.000Z" + }, + "events": [ + { + "uuid": "b4ec3716-6d86-44ac-94de-bac0dd7bb446", + "start": { + "$date": "2021-01-22T23:00:09.000Z" + }, + "end": { + "$date": "2021-01-22T23:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e4d77441-cf6c-47bd-9962-86993564a477", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-22T23:05:12.000Z" + }, + "end": { + "$date": "2021-01-23T04:48:11.000Z" + }, + "events": [ + { + "uuid": "00dd2262-49ed-42b0-885a-458c4264de04", + "start": { + "$date": "2021-01-22T23:05:12.000Z" + }, + "end": { + "$date": "2021-01-23T04:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "38993ced-7949-47cf-9e18-70abb9a827f5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-22T23:05:49.000Z" + }, + "end": { + "$date": "2021-01-23T04:47:22.000Z" + }, + "events": [ + { + "uuid": "ae2a343d-302b-4261-9d16-1f1a36394db3", + "start": { + "$date": "2021-01-22T23:05:49.000Z" + }, + "end": { + "$date": "2021-01-23T04:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "1de61ca4-331e-4ac2-8785-538d692cb49b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-22T23:20:25.000Z" + }, + "end": { + "$date": "2021-01-23T00:07:31.000Z" + }, + "events": [ + { + "uuid": "17959264-1c20-4daf-90ee-b110e4845cd3", + "start": { + "$date": "2021-01-22T23:20:25.000Z" + }, + "end": { + "$date": "2021-01-23T00:07:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "11e71216-0247-4bcc-ad59-e69486ebac23", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T00:16:44.000Z" + }, + "end": { + "$date": "2021-01-23T01:04:25.000Z" + }, + "events": [ + { + "uuid": "d121af6f-c48d-487e-8709-fbbc3b61eea9", + "start": { + "$date": "2021-01-23T00:16:44.000Z" + }, + "end": { + "$date": "2021-01-23T01:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5d7959c6-c719-472a-9fe7-29fcd641036d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T00:19:57.000Z" + }, + "end": { + "$date": "2021-01-23T01:25:02.000Z" + }, + "events": [ + { + "uuid": "ece911b9-f6f6-4e54-8c99-93a9666e58d6", + "start": { + "$date": "2021-01-23T00:19:57.000Z" + }, + "end": { + "$date": "2021-01-23T01:25:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a2b55283-5ce9-482c-96ec-a1787c88157e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T01:06:16.000Z" + }, + "end": { + "$date": "2021-01-23T01:20:25.000Z" + }, + "events": [ + { + "uuid": "7f5fce6d-004c-4a98-b493-37316fa4fe41", + "start": { + "$date": "2021-01-23T01:06:16.000Z" + }, + "end": { + "$date": "2021-01-23T01:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "66f4ba5d-c7ce-41eb-89aa-0bfbbffe5f67", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T01:26:23.000Z" + }, + "end": { + "$date": "2021-01-23T01:32:38.000Z" + }, + "events": [ + { + "uuid": "1b85f818-475c-4b64-ae99-ab2c81f10bf5", + "start": { + "$date": "2021-01-23T01:26:23.000Z" + }, + "end": { + "$date": "2021-01-23T01:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "8772981e-9699-4af4-aaa5-b354c7698808", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T01:32:59.000Z" + }, + "end": { + "$date": "2021-01-23T02:25:05.000Z" + }, + "events": [ + { + "uuid": "90e99dde-c9ce-41d7-a4a2-a3335d6f846e", + "start": { + "$date": "2021-01-23T01:32:59.000Z" + }, + "end": { + "$date": "2021-01-23T02:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eda5ef16-f0a4-4919-b088-8d775167388a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-23T02:25:17.000Z" + }, + "end": { + "$date": "2021-01-23T03:22:17.000Z" + }, + "events": [ + { + "uuid": "9fe3b2a2-172b-488f-8631-06ae3afa5861", + "start": { + "$date": "2021-01-23T02:25:17.000Z" + }, + "end": { + "$date": "2021-01-23T03:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d3f650da-ac24-44b7-8ef3-e09d421eeabc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T02:29:24.000Z" + }, + "end": { + "$date": "2021-01-23T03:23:09.000Z" + }, + "events": [ + { + "uuid": "1909b368-e8fb-41bc-9166-b0229678d864", + "start": { + "$date": "2021-01-23T02:29:24.000Z" + }, + "end": { + "$date": "2021-01-23T03:23:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c1746b41-edc0-41ee-8a55-125acae148be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-23T02:55:54.000Z" + }, + "end": { + "$date": "2021-01-23T03:28:33.000Z" + }, + "events": [ + { + "uuid": "75708d42-0d34-4b72-8fff-0ec05d7d22aa", + "start": { + "$date": "2021-01-23T02:55:54.000Z" + }, + "end": { + "$date": "2021-01-23T03:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f956bde8-5a38-4599-8a9a-13fc09002a34", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-23T02:59:25.000Z" + }, + "end": { + "$date": "2021-01-23T05:24:08.000Z" + }, + "events": [ + { + "uuid": "5d4e3a83-b6d5-4837-80c4-a4c27391eecd", + "start": { + "$date": "2021-01-23T02:59:25.000Z" + }, + "end": { + "$date": "2021-01-23T05:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04fdc173-27c3-4c4e-b056-e27842e52539", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T03:09:13.000Z" + }, + "end": { + "$date": "2021-01-23T03:16:18.000Z" + }, + "events": [ + { + "uuid": "bae26b39-7645-4059-a94c-fa4c79f5c0a1", + "start": { + "$date": "2021-01-23T03:09:13.000Z" + }, + "end": { + "$date": "2021-01-23T03:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51f27a6e-27eb-4eed-973b-8451dc36e864", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T03:25:59.000Z" + }, + "end": { + "$date": "2021-01-23T03:48:43.000Z" + }, + "events": [ + { + "uuid": "a7efd450-ca8b-4861-91bb-e9c559fe29e3", + "start": { + "$date": "2021-01-23T03:25:59.000Z" + }, + "end": { + "$date": "2021-01-23T03:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5212410a-b419-45f9-b4be-4b0afb84901b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T03:28:46.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:59.000Z" + }, + "events": [ + { + "uuid": "154cf90b-8426-4950-9d79-6deec567a051", + "start": { + "$date": "2021-01-23T03:28:46.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7e6d4645-20cd-4e44-b4d3-b4477762e5d1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-23T03:30:17.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:58.000Z" + }, + "events": [ + { + "uuid": "61525373-6022-4069-b37f-2396b5217a17", + "start": { + "$date": "2021-01-23T03:30:17.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b74d5088-1c11-4d50-bb82-b94228f1e72d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-23T03:35:55.000Z" + }, + "end": { + "$date": "2021-01-23T04:39:07.000Z" + }, + "events": [ + { + "uuid": "281fccfa-5e63-4165-b67d-e13a481751c0", + "start": { + "$date": "2021-01-23T03:35:55.000Z" + }, + "end": { + "$date": "2021-01-23T04:39:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "619f4e23-d327-475e-99d5-ed1e2b2710e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T03:58:22.000Z" + }, + "end": { + "$date": "2021-01-23T04:25:12.000Z" + }, + "events": [ + { + "uuid": "817fc569-3284-4737-96e4-d19797763f73", + "start": { + "$date": "2021-01-23T03:58:22.000Z" + }, + "end": { + "$date": "2021-01-23T04:25:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6e54d328-bb11-4acf-8a08-0091741fad8d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T04:18:27.000Z" + }, + "end": { + "$date": "2021-01-23T05:26:38.000Z" + }, + "events": [ + { + "uuid": "61527357-c353-4e0f-a569-4288588e49c0", + "start": { + "$date": "2021-01-23T04:18:27.000Z" + }, + "end": { + "$date": "2021-01-23T05:26:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c678a03-754e-4439-8bf4-df040633fbf7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T04:33:10.000Z" + }, + "end": { + "$date": "2021-01-23T04:56:31.000Z" + }, + "events": [ + { + "uuid": "d8180660-43fb-42f1-bd5b-0e52f5ec6297", + "start": { + "$date": "2021-01-23T04:33:10.000Z" + }, + "end": { + "$date": "2021-01-23T04:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c35667de-ee86-440e-b2d7-c27a8ebc6b24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T04:33:18.000Z" + }, + "end": { + "$date": "2021-01-23T04:56:33.000Z" + }, + "events": [ + { + "uuid": "a91cc7f1-8f83-4f56-a759-9f74db2c2cc2", + "start": { + "$date": "2021-01-23T04:33:18.000Z" + }, + "end": { + "$date": "2021-01-23T04:56:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "21323192-b279-4f29-ba92-19303cb96f64", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T04:33:31.000Z" + }, + "end": { + "$date": "2021-01-23T04:53:20.000Z" + }, + "events": [ + { + "uuid": "286cf7c9-1fd5-4dfb-af12-155fb84b896f", + "start": { + "$date": "2021-01-23T04:33:31.000Z" + }, + "end": { + "$date": "2021-01-23T04:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40e297a6-de10-4b36-92ca-dbd724953b9a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-23T04:52:26.000Z" + }, + "end": { + "$date": "2021-01-23T06:04:03.000Z" + }, + "events": [ + { + "uuid": "ddd814c9-b446-4c72-a3ba-82261f4d3650", + "start": { + "$date": "2021-01-23T04:52:26.000Z" + }, + "end": { + "$date": "2021-01-23T06:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3c7f4a08-3ae1-4fd3-be02-25aad80e6b25", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T04:52:31.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:56.000Z" + }, + "events": [ + { + "uuid": "6e4b923a-0a1a-4731-bd40-a3ee6d5bc08c", + "start": { + "$date": "2021-01-23T04:52:31.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "424cc349-fe0e-4a34-ab2b-78df55e82864", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T04:53:41.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:57.000Z" + }, + "events": [ + { + "uuid": "49690343-7a12-4283-a2f3-fccb9c69e653", + "start": { + "$date": "2021-01-23T04:53:41.000Z" + }, + "end": { + "$date": "2021-01-23T06:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3521809b-8858-47f6-a222-cb6093f7e759", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T05:32:51.000Z" + }, + "end": { + "$date": "2021-01-23T06:01:01.000Z" + }, + "events": [ + { + "uuid": "6106d6e8-1bbd-4973-bbf7-733d9556516f", + "start": { + "$date": "2021-01-23T05:32:51.000Z" + }, + "end": { + "$date": "2021-01-23T06:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c627048b-852c-4a88-a791-3240df68e657", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T05:32:43.000Z" + }, + "end": { + "$date": "2021-01-23T06:00:54.000Z" + }, + "events": [ + { + "uuid": "8d446c58-4526-4f07-9b5c-1ba5508343fd", + "start": { + "$date": "2021-01-23T05:32:43.000Z" + }, + "end": { + "$date": "2021-01-23T06:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a543373d-9750-4dc2-8c61-d79c1ada8aba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T05:32:57.000Z" + }, + "end": { + "$date": "2021-01-23T06:01:00.000Z" + }, + "events": [ + { + "uuid": "6b6cb4b5-fd00-486f-909e-63863532b03a", + "start": { + "$date": "2021-01-23T05:32:57.000Z" + }, + "end": { + "$date": "2021-01-23T06:01:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "72994372-ec08-4f8c-b72d-a4a262c09215", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T05:34:10.000Z" + }, + "end": { + "$date": "2021-01-23T05:35:39.000Z" + }, + "events": [ + { + "uuid": "78deaffd-3aa8-4367-9158-5406837dd31b", + "start": { + "$date": "2021-01-23T05:34:10.000Z" + }, + "end": { + "$date": "2021-01-23T05:35:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3e26b61b-e10e-464b-bacf-3c904f4d1cf9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T05:36:30.000Z" + }, + "end": { + "$date": "2021-01-23T08:06:50.000Z" + }, + "events": [ + { + "uuid": "da76d1dd-fd16-4b98-8aee-4fb95e2d81ef", + "start": { + "$date": "2021-01-23T05:36:30.000Z" + }, + "end": { + "$date": "2021-01-23T08:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fffaf9a0-5490-4250-8de4-6b9998c1124c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-23T05:38:26.000Z" + }, + "end": { + "$date": "2021-01-23T08:06:51.000Z" + }, + "events": [ + { + "uuid": "d55b2628-529e-4e56-ab6d-3b733f02f209", + "start": { + "$date": "2021-01-23T05:38:26.000Z" + }, + "end": { + "$date": "2021-01-23T08:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfaaf593-dd84-4a95-882b-1a1cb81fe90c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T06:01:46.000Z" + }, + "end": { + "$date": "2021-01-23T06:04:08.000Z" + }, + "events": [ + { + "uuid": "7338d7bf-3b13-4118-910d-dbcb6d7c3cff", + "start": { + "$date": "2021-01-23T06:01:46.000Z" + }, + "end": { + "$date": "2021-01-23T06:04:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e44a8948-7907-45ef-b90c-8067af4f2d61", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T06:02:40.000Z" + }, + "end": { + "$date": "2021-01-23T06:04:09.000Z" + }, + "events": [ + { + "uuid": "37f23755-b5cc-4361-82eb-9ceabd2850dc", + "start": { + "$date": "2021-01-23T06:02:40.000Z" + }, + "end": { + "$date": "2021-01-23T06:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41618e30-bbf1-4d23-a975-13764f6e9e65", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T06:05:23.000Z" + }, + "end": { + "$date": "2021-01-23T06:07:26.000Z" + }, + "events": [ + { + "uuid": "2c75a0c5-e6dc-44bf-8f94-7bb1f9a958d2", + "start": { + "$date": "2021-01-23T06:05:23.000Z" + }, + "end": { + "$date": "2021-01-23T06:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81080ade-e6d0-4a94-80d7-40337d1a24e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T06:12:53.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:57.000Z" + }, + "events": [ + { + "uuid": "2d0804aa-0947-4e45-8696-eaa3fe5e0e3f", + "start": { + "$date": "2021-01-23T06:12:53.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73c9af4c-de75-4951-9470-3f3e82fc4d1e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T06:13:10.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:55.000Z" + }, + "events": [ + { + "uuid": "adaa38c4-fc93-48d1-a7d6-c0edab68c058", + "start": { + "$date": "2021-01-23T06:13:10.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2330852-222a-4063-836e-41505251c1d5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T06:12:39.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:50.000Z" + }, + "events": [ + { + "uuid": "200da7d6-f7ed-4dbe-a0e2-82a3f8510c70", + "start": { + "$date": "2021-01-23T06:12:39.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad4169dd-aef0-40bd-8a3a-6c7f3b4ccb40", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T06:13:08.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:48.000Z" + }, + "events": [ + { + "uuid": "5d15fa9a-5860-4a5c-8653-fbdb4f525747", + "start": { + "$date": "2021-01-23T06:13:08.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09ccb093-da39-491e-a5c0-bc0ea4199baa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T06:12:43.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:49.000Z" + }, + "events": [ + { + "uuid": "39887da4-ea67-4e49-a2c1-e25149e50e40", + "start": { + "$date": "2021-01-23T06:12:43.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18b2ee3c-f46b-4d53-a1c5-fbe9e005a5e5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T06:13:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:52.000Z" + }, + "events": [ + { + "uuid": "c98535d2-f9c1-4f0b-93e6-844a08e8a839", + "start": { + "$date": "2021-01-23T06:13:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3339fb14-5276-4a89-921d-7d5c01cc3ca3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-23T06:12:44.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:54.000Z" + }, + "events": [ + { + "uuid": "cfd47721-65fa-464c-b16e-2b599a177cf7", + "start": { + "$date": "2021-01-23T06:12:44.000Z" + }, + "end": { + "$date": "2021-01-23T06:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ee1dd2f-7be8-4d86-ad4d-30330e8027b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T06:34:14.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:14.000Z" + }, + "events": [ + { + "uuid": "bf644c16-3ae3-412c-a3a5-3c710f0b9c04", + "start": { + "$date": "2021-01-23T06:34:14.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eab7467f-8c3f-462f-9703-379e6a80e992", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T06:34:39.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:13.000Z" + }, + "events": [ + { + "uuid": "0ea37a1b-91fe-4b41-80a4-1f8331e4314d", + "start": { + "$date": "2021-01-23T06:34:39.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "856f8b78-e310-4444-b115-a01dc04055dc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T06:34:01.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:11.000Z" + }, + "events": [ + { + "uuid": "e33e18d0-5d0d-4b26-8257-32c664b918f1", + "start": { + "$date": "2021-01-23T06:34:01.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb972644-c1dc-4aa4-b30e-cdf01e3dc8e6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T06:34:25.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:19.000Z" + }, + "events": [ + { + "uuid": "9d8bb31f-e2cb-460f-89a6-04804bca2bd9", + "start": { + "$date": "2021-01-23T06:34:25.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44d66503-f63c-48e0-bb0b-76cc37c8dcd5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T06:34:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:13.000Z" + }, + "events": [ + { + "uuid": "72986ef7-b711-4386-84e6-e8225f9c1099", + "start": { + "$date": "2021-01-23T06:34:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9941a34d-c835-4b17-8f94-e7d7c9a0ecc5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-23T06:34:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:19.000Z" + }, + "events": [ + { + "uuid": "925e8b63-81b3-490e-b736-960940d93053", + "start": { + "$date": "2021-01-23T06:34:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c29e122f-0206-4837-ae08-c894414f8653", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T06:34:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:15.000Z" + }, + "events": [ + { + "uuid": "eb168544-d9e9-4970-ae0b-ca53c0d44661", + "start": { + "$date": "2021-01-23T06:34:04.000Z" + }, + "end": { + "$date": "2021-01-23T06:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb53f317-c51a-48f9-80fd-0b8dc99000ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T06:57:40.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:41.000Z" + }, + "events": [ + { + "uuid": "aedb52a7-d501-465a-a53d-567a6abc5b17", + "start": { + "$date": "2021-01-23T06:57:40.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b188e089-62d0-4074-ab87-513c00c9907e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T06:57:26.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:37.000Z" + }, + "events": [ + { + "uuid": "d00fbd51-4ac5-4d01-979a-11d0acc50b2f", + "start": { + "$date": "2021-01-23T06:57:26.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b91e641-01b3-4454-8bab-a015e37e0d24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T06:57:54.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:33.000Z" + }, + "events": [ + { + "uuid": "ad56ca48-4a16-424e-9a3e-b042e54244fb", + "start": { + "$date": "2021-01-23T06:57:54.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "600b85bb-ed14-4260-90b5-6f943a9b0b53", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T06:57:30.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:31.000Z" + }, + "events": [ + { + "uuid": "67c03b16-cc58-4275-810b-5b5b010874e3", + "start": { + "$date": "2021-01-23T06:57:30.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "caa915ae-9fc5-4f0d-a2c3-dee0d4562a22", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T06:57:31.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:34.000Z" + }, + "events": [ + { + "uuid": "ea592a19-e74d-4971-aac0-b9eb6fe02975", + "start": { + "$date": "2021-01-23T06:57:31.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a452342-3134-4337-bac6-027ddd253489", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-23T07:13:35.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:40.000Z" + }, + "events": [ + { + "uuid": "8d1855be-e1e6-4561-9b09-ce6b4c538626", + "start": { + "$date": "2021-01-23T07:13:35.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc05f7e3-111e-4eb6-b44a-bb0bbb2909ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T06:57:31.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:36.000Z" + }, + "events": [ + { + "uuid": "76032abd-8570-4b3e-a146-9afa0f4bf8ce", + "start": { + "$date": "2021-01-23T06:57:31.000Z" + }, + "end": { + "$date": "2021-01-23T07:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "026a6ed2-32ef-4f0e-add5-0c47019ae635", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-23T07:30:57.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:44.000Z" + }, + "events": [ + { + "uuid": "823e2344-e2a1-4a41-8d26-d10fd10889c9", + "start": { + "$date": "2021-01-23T07:30:57.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22931992-7e59-4e6b-a14a-6db49d4d053b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T07:30:42.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:33.000Z" + }, + "events": [ + { + "uuid": "2cd2527d-9742-4c40-bcbc-b802205f8ba9", + "start": { + "$date": "2021-01-23T07:30:42.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d95174d1-cdcd-4ee9-9e77-098ce60eb8d2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T07:30:43.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:34.000Z" + }, + "events": [ + { + "uuid": "d144c101-00e3-477b-afeb-5544adc8f43c", + "start": { + "$date": "2021-01-23T07:30:43.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af6d38fe-0fca-4aa8-9141-3b8ce3f006a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T07:30:48.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:39.000Z" + }, + "events": [ + { + "uuid": "209ebc09-f1fb-4fb3-9bf1-297215d5e20f", + "start": { + "$date": "2021-01-23T07:30:48.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd5d4342-f69c-4d7a-97b3-c5946b86b461", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T07:30:47.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:35.000Z" + }, + "events": [ + { + "uuid": "648e1cfc-2d41-4385-b826-7d42e1334cb7", + "start": { + "$date": "2021-01-23T07:30:47.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae8e18e7-2376-4db1-b758-c918ff387af0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-23T07:30:47.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:42.000Z" + }, + "events": [ + { + "uuid": "0ba23129-db5d-4348-a37f-c50c9a2414a5", + "start": { + "$date": "2021-01-23T07:30:47.000Z" + }, + "end": { + "$date": "2021-01-23T08:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4c9a1819-fa3d-442c-8159-bc862180ca4b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-23T08:01:36.000Z" + }, + "end": { + "$date": "2021-01-23T09:14:11.000Z" + }, + "events": [ + { + "uuid": "85e3f673-d7c3-421f-9e64-a1a9c3e8c0f8", + "start": { + "$date": "2021-01-23T08:01:36.000Z" + }, + "end": { + "$date": "2021-01-23T09:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6eb9feec-aeba-4976-81de-6095edaea3d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T08:09:30.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:40.000Z" + }, + "events": [ + { + "uuid": "08a5f836-7fc5-4e62-a03b-7feda7df96b9", + "start": { + "$date": "2021-01-23T08:09:30.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "331b7687-92f3-4129-980f-cb052bdb213e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T08:09:25.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:35.000Z" + }, + "events": [ + { + "uuid": "e6b8677a-7252-4af8-ac37-46ee1b58bd34", + "start": { + "$date": "2021-01-23T08:09:25.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "baa899b2-df3f-4ae9-85e5-6291265378dd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T08:09:54.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:34.000Z" + }, + "events": [ + { + "uuid": "db6a101b-5e75-40a8-bf5d-f031ef892e9b", + "start": { + "$date": "2021-01-23T08:09:54.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "282f5355-0d30-4082-b293-837da90dd22f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T08:09:28.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:36.000Z" + }, + "events": [ + { + "uuid": "cc84adb0-03b4-491f-8349-567c588f008d", + "start": { + "$date": "2021-01-23T08:09:28.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "44d8f1f8-7b92-4ace-b868-1e2791d24a72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-23T08:07:46.000Z" + }, + "end": { + "$date": "2021-01-23T08:15:46.000Z" + }, + "events": [ + { + "uuid": "4457176d-42fa-46a7-8036-0da4ef8f11cb", + "start": { + "$date": "2021-01-23T08:07:46.000Z" + }, + "end": { + "$date": "2021-01-23T08:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ced74da1-859f-465c-8364-a380ac66ddaf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T08:15:36.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:21.000Z" + }, + "events": [ + { + "uuid": "3eb4cf2a-b7f1-4988-b7f0-3232974ac4c2", + "start": { + "$date": "2021-01-23T08:15:36.000Z" + }, + "end": { + "$date": "2021-01-23T08:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "28a0aaf7-092a-49d7-93ff-4b2d4db813a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T08:26:27.000Z" + }, + "end": { + "$date": "2021-01-23T09:11:32.000Z" + }, + "events": [ + { + "uuid": "c0585ed9-073b-4da4-9869-5c6e44db5f2a", + "start": { + "$date": "2021-01-23T08:26:27.000Z" + }, + "end": { + "$date": "2021-01-23T09:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "348410d2-81f7-44c8-b2ae-5704407fb46d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T08:32:01.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:42.000Z" + }, + "events": [ + { + "uuid": "43eb9cce-bcfd-4161-9ddc-d784e6df2ae9", + "start": { + "$date": "2021-01-23T08:32:01.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e8618fa-1c74-474e-ae0c-484a74e922bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T08:32:00.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:41.000Z" + }, + "events": [ + { + "uuid": "34f57359-8c8a-44d3-a64e-1c0bc4501241", + "start": { + "$date": "2021-01-23T08:32:00.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2802caef-5466-4366-86e6-ee143c72c9ff", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-23T08:32:14.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:45.000Z" + }, + "events": [ + { + "uuid": "30607166-f577-41e6-8904-7c6abfea2803", + "start": { + "$date": "2021-01-23T08:32:14.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3ce2324-c0cf-472a-bf31-14b47aa74158", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T08:32:23.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:41.000Z" + }, + "events": [ + { + "uuid": "592c2cb4-e328-41b5-b11e-db3c001f74de", + "start": { + "$date": "2021-01-23T08:32:23.000Z" + }, + "end": { + "$date": "2021-01-23T08:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68e95f59-16d5-4e2c-ace4-31a70fc8e559", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T08:55:13.000Z" + }, + "end": { + "$date": "2021-01-23T09:29:49.000Z" + }, + "events": [ + { + "uuid": "23bdcc94-54f3-44cd-aaf3-3badcddea162", + "start": { + "$date": "2021-01-23T08:55:13.000Z" + }, + "end": { + "$date": "2021-01-23T09:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5bd62e09-16c5-4838-943f-d268235ce67c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-23T17:28:44.000Z" + }, + "end": { + "$date": "2021-01-23T17:29:04.000Z" + }, + "events": [ + { + "uuid": "bc566acd-42bb-400d-bfdc-af39b6c172fa", + "start": { + "$date": "2021-01-23T17:28:44.000Z" + }, + "end": { + "$date": "2021-01-23T17:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "da871b71-6ccc-4065-9804-1a01d4e09163", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T16:18:45.000Z" + }, + "end": { + "$date": "2021-01-23T16:23:45.000Z" + }, + "events": [ + { + "uuid": "e52daa14-ac52-4242-928c-24ed9282ed34", + "start": { + "$date": "2021-01-23T16:18:45.000Z" + }, + "end": { + "$date": "2021-01-23T16:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "307c918a-28e0-40b9-8a24-f15591791c41", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T16:24:11.000Z" + }, + "end": { + "$date": "2021-01-23T16:37:40.000Z" + }, + "events": [ + { + "uuid": "f708c377-316f-4c3d-8654-37e32119688d", + "start": { + "$date": "2021-01-23T16:24:11.000Z" + }, + "end": { + "$date": "2021-01-23T16:37:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e6177709-f7b1-49ed-99d8-b9885cda41e4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T16:26:13.000Z" + }, + "end": { + "$date": "2021-01-23T20:13:09.000Z" + }, + "events": [ + { + "uuid": "c389e8fa-2249-4e81-9746-4007e867fd1b", + "start": { + "$date": "2021-01-23T16:26:13.000Z" + }, + "end": { + "$date": "2021-01-23T20:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9d6608a1-752e-41e6-bfd8-bf0334276754", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T16:37:51.000Z" + }, + "end": { + "$date": "2021-01-23T17:28:37.000Z" + }, + "events": [ + { + "uuid": "544a586e-7817-448e-96a7-26dfe4c939b4", + "start": { + "$date": "2021-01-23T16:37:51.000Z" + }, + "end": { + "$date": "2021-01-23T17:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8b052e35-c8fa-47d1-8311-688148f98108", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T17:07:57.000Z" + }, + "end": { + "$date": "2021-01-23T18:18:09.000Z" + }, + "events": [ + { + "uuid": "5a2c23e7-77db-4a58-946c-7276be6de779", + "start": { + "$date": "2021-01-23T17:07:57.000Z" + }, + "end": { + "$date": "2021-01-23T18:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8df19f0e-a954-44cf-a85e-bc60d1d70871", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T17:29:08.000Z" + }, + "end": { + "$date": "2021-01-23T18:14:28.000Z" + }, + "events": [ + { + "uuid": "b32a18d0-41e2-460b-a9a0-903e53774598", + "start": { + "$date": "2021-01-23T17:29:08.000Z" + }, + "end": { + "$date": "2021-01-23T18:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a492ae8e-f241-4474-8a71-9a1d66653cea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T19:01:10.000Z" + }, + "end": { + "$date": "2021-01-23T19:22:59.000Z" + }, + "events": [ + { + "uuid": "3ba2c6d8-6fc2-44e6-94d6-6ba3db4268dd", + "start": { + "$date": "2021-01-23T19:01:10.000Z" + }, + "end": { + "$date": "2021-01-23T19:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1d0284b1-aac4-4531-9804-467b3ddc7a06", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-23T19:03:30.000Z" + }, + "end": { + "$date": "2021-01-23T19:27:46.000Z" + }, + "events": [ + { + "uuid": "760aec20-9091-42c7-ab15-29da8102a98a", + "start": { + "$date": "2021-01-23T19:03:30.000Z" + }, + "end": { + "$date": "2021-01-23T19:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c4b3c3e-0642-4183-96e9-7385cd83574b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T19:30:00.000Z" + }, + "end": { + "$date": "2021-01-23T20:05:17.000Z" + }, + "events": [ + { + "uuid": "34c81dc7-f27f-469e-9d0b-354dad6ee2aa", + "start": { + "$date": "2021-01-23T19:30:00.000Z" + }, + "end": { + "$date": "2021-01-23T20:05:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "fc7904f3-7acf-473b-96df-1d8539f9a3b3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T19:33:31.000Z" + }, + "end": { + "$date": "2021-01-23T21:59:06.000Z" + }, + "events": [ + { + "uuid": "35a61489-3e0d-4bb7-9510-b31cfe6eeb84", + "start": { + "$date": "2021-01-23T19:33:31.000Z" + }, + "end": { + "$date": "2021-01-23T21:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7484f648-e0f9-44af-b30d-eef18c583ae1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-23T20:14:40.000Z" + }, + "end": { + "$date": "2021-01-23T20:14:47.000Z" + }, + "events": [ + { + "uuid": "24e364f3-c2af-4ea3-867c-ce41b9ea7d80", + "start": { + "$date": "2021-01-23T20:14:40.000Z" + }, + "end": { + "$date": "2021-01-23T20:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2744d4f-db0e-4a47-890f-c2f59aac2f6b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T20:34:43.000Z" + }, + "end": { + "$date": "2021-01-23T20:52:04.000Z" + }, + "events": [ + { + "uuid": "89a88845-6e73-47fb-8cc1-440b4eee130f", + "start": { + "$date": "2021-01-23T20:34:43.000Z" + }, + "end": { + "$date": "2021-01-23T20:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "ce916132-2d05-48e6-b45e-ff49d6dae1a0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-23T20:25:38.000Z" + }, + "end": { + "$date": "2021-01-23T21:52:07.000Z" + }, + "events": [ + { + "uuid": "ec99375d-1758-42b7-b2cb-234f022e1f59", + "start": { + "$date": "2021-01-23T20:25:38.000Z" + }, + "end": { + "$date": "2021-01-23T21:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "731021dc-8f78-4e15-858b-a32df0499365", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-23T20:36:02.000Z" + }, + "end": { + "$date": "2021-01-23T20:52:03.000Z" + }, + "events": [ + { + "uuid": "0dfeb2b6-4f66-4750-a328-d2edbf8e48d8", + "start": { + "$date": "2021-01-23T20:36:02.000Z" + }, + "end": { + "$date": "2021-01-23T20:52:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "16620948-a186-4c28-a69a-f4fc0dfd79c9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-23T20:38:16.000Z" + }, + "end": { + "$date": "2021-01-23T21:41:24.000Z" + }, + "events": [ + { + "uuid": "ef3f3e3f-e28b-47ab-b3a4-d7b1814fedac", + "start": { + "$date": "2021-01-23T20:38:16.000Z" + }, + "end": { + "$date": "2021-01-23T21:41:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bb28850-0150-4ae6-9042-2abf6731bee8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T21:00:15.000Z" + }, + "end": { + "$date": "2021-01-23T21:26:06.000Z" + }, + "events": [ + { + "uuid": "86ceca2a-d893-4317-a9b2-d4349c0d3dbe", + "start": { + "$date": "2021-01-23T21:00:15.000Z" + }, + "end": { + "$date": "2021-01-23T21:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "934aef0f-6288-4510-abca-1327bec45e7a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T21:14:01.000Z" + }, + "end": { + "$date": "2021-01-23T21:26:07.000Z" + }, + "events": [ + { + "uuid": "1f198889-d97c-4022-b7e5-896cd86eb23b", + "start": { + "$date": "2021-01-23T21:14:01.000Z" + }, + "end": { + "$date": "2021-01-23T21:26:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7e5ba099-4019-4312-8f8e-7102d1c9810d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-23T21:15:15.000Z" + }, + "end": { + "$date": "2021-01-23T23:01:11.000Z" + }, + "events": [ + { + "uuid": "07e1f442-e039-4347-940e-e89c295b539c", + "start": { + "$date": "2021-01-23T21:15:15.000Z" + }, + "end": { + "$date": "2021-01-23T23:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b54464e3-0d57-497a-949a-a8d2b0d43079", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T21:42:32.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:08.000Z" + }, + "events": [ + { + "uuid": "5d9880ad-86f7-4df1-9f54-684db116ccae", + "start": { + "$date": "2021-01-23T21:42:32.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8c6b6763-cbf7-4693-86d9-8bd9d42ad8d6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T21:27:37.000Z" + }, + "end": { + "$date": "2021-01-23T21:30:49.000Z" + }, + "events": [ + { + "uuid": "138cbc3a-be60-4658-9ce3-374e0ec9f1d6", + "start": { + "$date": "2021-01-23T21:27:37.000Z" + }, + "end": { + "$date": "2021-01-23T21:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f7c8e4cb-b3d4-435b-bf27-7989eac1683a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T21:31:09.000Z" + }, + "end": { + "$date": "2021-01-23T21:34:37.000Z" + }, + "events": [ + { + "uuid": "42066b22-f9cc-4000-9b18-f9231a210a70", + "start": { + "$date": "2021-01-23T21:31:09.000Z" + }, + "end": { + "$date": "2021-01-23T21:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9f445be8-89f7-4fd4-9559-6e7a52626bb9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T21:43:44.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:05.000Z" + }, + "events": [ + { + "uuid": "3a7c7bb3-bcfb-4e36-aeed-c97cc60bf49a", + "start": { + "$date": "2021-01-23T21:43:44.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "debfe80f-2fd4-4d3d-a7ee-a5c3c2af2cd4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T21:43:10.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:10.000Z" + }, + "events": [ + { + "uuid": "5d3acffe-3edd-40ad-906b-3675292808b2", + "start": { + "$date": "2021-01-23T21:43:10.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "362a04f0-6506-4eec-91fd-ae70f75d663a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T21:50:46.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:06.000Z" + }, + "events": [ + { + "uuid": "e666a686-7465-443f-94d1-164c16dc360f", + "start": { + "$date": "2021-01-23T21:50:46.000Z" + }, + "end": { + "$date": "2021-01-23T22:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "68708d5c-9c3c-4e6a-b229-74ce85e7dd7b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T23:44:00.000Z" + }, + "end": { + "$date": "2021-01-23T23:44:05.000Z" + }, + "events": [ + { + "uuid": "be1ac9b4-4a63-464b-8ce8-e03ce44f5bea", + "start": { + "$date": "2021-01-23T23:44:00.000Z" + }, + "end": { + "$date": "2021-01-23T23:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33f9cd0e-0cf4-420e-adc5-6f0efd73a198", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T22:12:09.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:20.000Z" + }, + "events": [ + { + "uuid": "70aa5994-fbd8-4a78-a863-ade5a4328871", + "start": { + "$date": "2021-01-23T22:12:09.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9c0769c-fdfb-46ca-ba03-5d13282bffbb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T22:14:09.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:19.000Z" + }, + "events": [ + { + "uuid": "8f63b9ad-ff60-4543-810f-f729817b2d0d", + "start": { + "$date": "2021-01-23T22:14:09.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb95b4bd-f756-4039-ad88-9fb631f597c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T22:44:21.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:23.000Z" + }, + "events": [ + { + "uuid": "8689fb16-08f1-414f-8565-c54cd3f7d2b1", + "start": { + "$date": "2021-01-23T22:44:21.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74bc3bf6-7d29-4b82-b451-a580e8d6e736", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T22:12:05.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:21.000Z" + }, + "events": [ + { + "uuid": "3b248d96-2c86-43db-9d93-97f4c0874b18", + "start": { + "$date": "2021-01-23T22:12:05.000Z" + }, + "end": { + "$date": "2021-01-23T22:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3aa0bd3b-99a9-4903-ba5c-bcafaa101abd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-23T22:29:17.000Z" + }, + "end": { + "$date": "2021-01-24T00:03:43.000Z" + }, + "events": [ + { + "uuid": "a21bd11b-d873-4761-8a27-5aadf03b4a76", + "start": { + "$date": "2021-01-23T22:29:17.000Z" + }, + "end": { + "$date": "2021-01-24T00:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6c84a36-f6f6-4f5b-8623-fd876303a8f7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-23T22:47:05.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:06.000Z" + }, + "events": [ + { + "uuid": "8afb5f85-c05b-4e67-a4e8-52f06d8b3558", + "start": { + "$date": "2021-01-23T22:47:05.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11f417fd-0263-476d-9472-a7985c3c6ef5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T22:47:04.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:06.000Z" + }, + "events": [ + { + "uuid": "42767b01-a151-48a2-8928-7e3ea951e3d0", + "start": { + "$date": "2021-01-23T22:47:04.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e6186af-4a60-4434-a888-cc7d7f76527e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-23T22:47:47.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:04.000Z" + }, + "events": [ + { + "uuid": "dd680d82-a0ea-4137-b2cb-5bbbd54dba29", + "start": { + "$date": "2021-01-23T22:47:47.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b5de7da-0d43-4454-a92f-c7cf42ab791d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-23T22:47:16.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:02.000Z" + }, + "events": [ + { + "uuid": "54f9f24c-9c4b-41ac-bb48-1a0636bdd472", + "start": { + "$date": "2021-01-23T22:47:16.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba4bb30c-9c9e-4a94-b61b-618a74d912c1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-23T23:22:07.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:27.000Z" + }, + "events": [ + { + "uuid": "d87bc819-8f37-4ae7-b440-e7da0e94860c", + "start": { + "$date": "2021-01-23T23:22:07.000Z" + }, + "end": { + "$date": "2021-01-23T23:22:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "136f337f-6ee6-489f-9371-259341b89a40", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-23T23:23:16.000Z" + }, + "end": { + "$date": "2021-01-24T00:05:24.000Z" + }, + "events": [ + { + "uuid": "c3d013b8-3495-464b-a813-7a02a9b19625", + "start": { + "$date": "2021-01-23T23:23:16.000Z" + }, + "end": { + "$date": "2021-01-24T00:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "1f6c2447-2455-4115-a734-460180a9f6a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-23T23:44:30.000Z" + }, + "end": { + "$date": "2021-01-24T01:07:14.000Z" + }, + "events": [ + { + "uuid": "fe47aaa2-00ee-4df3-bf9d-0b08d123d539", + "start": { + "$date": "2021-01-23T23:44:30.000Z" + }, + "end": { + "$date": "2021-01-24T01:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "69bd93e6-539f-487f-9bcc-5f0d708962c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T00:33:50.000Z" + }, + "end": { + "$date": "2021-01-24T02:48:45.000Z" + }, + "events": [ + { + "uuid": "38402d39-1e64-43c9-8994-ae56f4d672de", + "start": { + "$date": "2021-01-24T00:33:50.000Z" + }, + "end": { + "$date": "2021-01-24T02:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "cc04c79f-9932-4b73-a2de-b21e6ff65c27", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-24T00:50:04.000Z" + }, + "end": { + "$date": "2021-01-24T02:24:14.000Z" + }, + "events": [ + { + "uuid": "79a13e3d-805f-49bb-bc67-22d68c684edb", + "start": { + "$date": "2021-01-24T00:50:04.000Z" + }, + "end": { + "$date": "2021-01-24T02:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1f3d6984-6a7e-4b61-ba8e-357eefaea40e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-24T01:32:07.000Z" + }, + "end": { + "$date": "2021-01-24T05:19:20.000Z" + }, + "events": [ + { + "uuid": "8d6457fb-03ef-4be3-a90e-07c402c84b5c", + "start": { + "$date": "2021-01-24T01:32:07.000Z" + }, + "end": { + "$date": "2021-01-24T05:19:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5612e0d5-f544-46ea-9349-18cb1ceb8583", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T01:42:52.000Z" + }, + "end": { + "$date": "2021-01-24T03:32:58.000Z" + }, + "events": [ + { + "uuid": "a767679c-8d9e-4be6-8aeb-3cee8e38eddd", + "start": { + "$date": "2021-01-24T01:42:52.000Z" + }, + "end": { + "$date": "2021-01-24T03:32:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "b2effd09-9c69-4248-82a3-a12219abd562", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-24T01:48:03.000Z" + }, + "end": { + "$date": "2021-01-24T03:01:36.000Z" + }, + "events": [ + { + "uuid": "995f6138-4e88-42a3-a6c3-a63fe6852d94", + "start": { + "$date": "2021-01-24T01:48:03.000Z" + }, + "end": { + "$date": "2021-01-24T03:01:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "faf1de32-6349-4b4a-ace6-ba50d4d24ed9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-24T01:59:24.000Z" + }, + "end": { + "$date": "2021-01-24T02:05:50.000Z" + }, + "events": [ + { + "uuid": "112a0ba3-b155-4aa9-852b-a52ac3bd0489", + "start": { + "$date": "2021-01-24T01:59:24.000Z" + }, + "end": { + "$date": "2021-01-24T02:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4c730bb4-a878-4a67-9c0f-6b299818e08f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-24T02:25:23.000Z" + }, + "end": { + "$date": "2021-01-24T06:55:00.000Z" + }, + "events": [ + { + "uuid": "d14a7aae-da83-4687-a758-ea368c7828ac", + "start": { + "$date": "2021-01-24T02:25:23.000Z" + }, + "end": { + "$date": "2021-01-24T06:55:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "70ae0833-4944-429a-964e-518f14156e88", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-24T02:25:52.000Z" + }, + "end": { + "$date": "2021-01-24T06:56:01.000Z" + }, + "events": [ + { + "uuid": "54fd766d-67e8-4908-a166-754419bf8220", + "start": { + "$date": "2021-01-24T02:25:52.000Z" + }, + "end": { + "$date": "2021-01-24T06:56:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "58cb6fb8-5825-4f4c-97e4-4d74f6d9f1ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-24T02:38:28.000Z" + }, + "end": { + "$date": "2021-01-24T04:32:29.000Z" + }, + "events": [ + { + "uuid": "9a9f9e6f-24b8-4663-b1f8-e038c29f2580", + "start": { + "$date": "2021-01-24T02:38:28.000Z" + }, + "end": { + "$date": "2021-01-24T04:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7d72a82f-0173-4498-9d04-f050a4ec7891", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-24T02:58:01.000Z" + }, + "end": { + "$date": "2021-01-24T04:44:56.000Z" + }, + "events": [ + { + "uuid": "acd85dce-8f3e-4899-8159-42c32a9715e0", + "start": { + "$date": "2021-01-24T02:58:01.000Z" + }, + "end": { + "$date": "2021-01-24T04:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f939d01d-df05-427e-8e6a-645092099933", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-24T03:40:34.000Z" + }, + "end": { + "$date": "2021-01-24T04:10:47.000Z" + }, + "events": [ + { + "uuid": "e7ac1fc3-6e32-4091-8bec-0e4a047ea44c", + "start": { + "$date": "2021-01-24T03:40:34.000Z" + }, + "end": { + "$date": "2021-01-24T04:10:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df3a5546-f2cc-4eb1-b3ec-3f909b7d9a32", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T03:35:36.000Z" + }, + "end": { + "$date": "2021-01-24T03:36:47.000Z" + }, + "events": [ + { + "uuid": "0b1558b7-db43-40ed-a2c7-7516abc8ac18", + "start": { + "$date": "2021-01-24T03:35:36.000Z" + }, + "end": { + "$date": "2021-01-24T03:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "845d8605-d197-4259-a8e0-4598fe03b80e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T03:35:32.000Z" + }, + "end": { + "$date": "2021-01-24T04:07:48.000Z" + }, + "events": [ + { + "uuid": "2178a1a7-036e-4550-b955-e2aeffcd8f29", + "start": { + "$date": "2021-01-24T03:35:32.000Z" + }, + "end": { + "$date": "2021-01-24T04:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9aa5bbfa-5bcf-4f00-8d45-f39381e1b0d2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T03:40:34.000Z" + }, + "end": { + "$date": "2021-01-24T04:10:54.000Z" + }, + "events": [ + { + "uuid": "db8e8176-a1c8-47a5-9342-dc16bd82117e", + "start": { + "$date": "2021-01-24T03:40:34.000Z" + }, + "end": { + "$date": "2021-01-24T04:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab93ce03-82a2-4f57-9406-2adef0a70892", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T04:17:48.000Z" + }, + "end": { + "$date": "2021-01-24T04:37:29.000Z" + }, + "events": [ + { + "uuid": "52502f0d-f989-42c5-84bd-bd11af303519", + "start": { + "$date": "2021-01-24T04:17:48.000Z" + }, + "end": { + "$date": "2021-01-24T04:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2baa00d-29c8-4751-95de-d7079fd66b08", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T04:17:11.000Z" + }, + "end": { + "$date": "2021-01-24T04:37:35.000Z" + }, + "events": [ + { + "uuid": "480c1f09-34c6-492a-b8df-d3e933d7ec11", + "start": { + "$date": "2021-01-24T04:17:11.000Z" + }, + "end": { + "$date": "2021-01-24T04:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de65e205-bd45-4125-9c85-0923e13004de", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-24T04:17:12.000Z" + }, + "end": { + "$date": "2021-01-24T04:37:29.000Z" + }, + "events": [ + { + "uuid": "1d93c057-86ac-4f04-a153-fa1ffaa60650", + "start": { + "$date": "2021-01-24T04:17:12.000Z" + }, + "end": { + "$date": "2021-01-24T04:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2358927f-9adf-4db7-a26c-18bb8bee1a53", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T04:37:43.000Z" + }, + "end": { + "$date": "2021-01-24T06:01:33.000Z" + }, + "events": [ + { + "uuid": "8af25fd7-7b51-4968-8815-6433927c4455", + "start": { + "$date": "2021-01-24T04:37:43.000Z" + }, + "end": { + "$date": "2021-01-24T06:01:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c76e09cd-6313-4bd8-b53c-daf196f09f2c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T04:39:19.000Z" + }, + "end": { + "$date": "2021-01-24T04:41:51.000Z" + }, + "events": [ + { + "uuid": "7336229a-4cf1-4e82-9084-b06e660226ea", + "start": { + "$date": "2021-01-24T04:39:19.000Z" + }, + "end": { + "$date": "2021-01-24T04:41:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d638012e-2580-4404-b266-90f0965d7c89", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-24T04:39:18.000Z" + }, + "end": { + "$date": "2021-01-24T04:41:51.000Z" + }, + "events": [ + { + "uuid": "60e9c16f-2f15-479c-ac77-b5d24edfc437", + "start": { + "$date": "2021-01-24T04:39:18.000Z" + }, + "end": { + "$date": "2021-01-24T04:41:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfb41f14-05bb-4c65-a41d-aa43b4c77eac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T04:48:58.000Z" + }, + "end": { + "$date": "2021-01-24T05:25:04.000Z" + }, + "events": [ + { + "uuid": "16d88b6c-f803-41a7-8e45-6356b9dfc06e", + "start": { + "$date": "2021-01-24T04:48:58.000Z" + }, + "end": { + "$date": "2021-01-24T05:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1f243a0d-416a-46ef-8491-8071891d44cf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-24T04:48:07.000Z" + }, + "end": { + "$date": "2021-01-24T06:01:39.000Z" + }, + "events": [ + { + "uuid": "96b227d1-a872-4acc-907b-01de59ce3d65", + "start": { + "$date": "2021-01-24T04:48:07.000Z" + }, + "end": { + "$date": "2021-01-24T06:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f708551-0f35-4ac4-ac36-714c2ff3b42d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-24T04:49:38.000Z" + }, + "end": { + "$date": "2021-01-24T05:24:52.000Z" + }, + "events": [ + { + "uuid": "2e831e41-a1ac-4420-ad64-7f52521c1c01", + "start": { + "$date": "2021-01-24T04:49:38.000Z" + }, + "end": { + "$date": "2021-01-24T05:24:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "eeb82c98-35e8-42c8-ae53-ed1dc3e08a96", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-24T04:57:10.000Z" + }, + "end": { + "$date": "2021-01-24T05:13:25.000Z" + }, + "events": [ + { + "uuid": "f13146bd-3e6a-4279-a5ac-01ef855424e5", + "start": { + "$date": "2021-01-24T04:57:10.000Z" + }, + "end": { + "$date": "2021-01-24T05:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "aeb3163a-5a82-43f1-83f9-076cc6276ed1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-24T04:58:05.000Z" + }, + "end": { + "$date": "2021-01-24T08:29:45.000Z" + }, + "events": [ + { + "uuid": "cf7f9245-329a-457c-87a7-25bcbfd82312", + "start": { + "$date": "2021-01-24T04:58:05.000Z" + }, + "end": { + "$date": "2021-01-24T08:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6638ad24-c474-476f-8e13-1147cf51b96b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-24T06:22:16.000Z" + }, + "end": { + "$date": "2021-01-24T06:33:19.000Z" + }, + "events": [ + { + "uuid": "e7dab926-80d2-46ea-a58b-e6351c1790f8", + "start": { + "$date": "2021-01-24T06:22:16.000Z" + }, + "end": { + "$date": "2021-01-24T06:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "51fec090-c1e4-463d-b4e9-3f6b98854aa6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-24T06:15:47.000Z" + }, + "end": { + "$date": "2021-01-24T08:29:55.000Z" + }, + "events": [ + { + "uuid": "8919528d-5862-4acc-bf9f-5ad8ee253b9f", + "start": { + "$date": "2021-01-24T06:15:47.000Z" + }, + "end": { + "$date": "2021-01-24T08:29:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "51cfbb91-4320-4a68-b6b9-cc90873e83c0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-24T06:29:41.000Z" + }, + "end": { + "$date": "2021-01-24T08:02:35.000Z" + }, + "events": [ + { + "uuid": "e2ce0dd1-050e-4283-b065-43d2f95ada49", + "start": { + "$date": "2021-01-24T06:29:41.000Z" + }, + "end": { + "$date": "2021-01-24T08:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50be1c05-c146-49f6-9583-d0a55813139b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-24T06:49:47.000Z" + }, + "end": { + "$date": "2021-01-24T07:24:35.000Z" + }, + "events": [ + { + "uuid": "4dcb8b19-b03c-4948-b65b-622b00e3876a", + "start": { + "$date": "2021-01-24T06:49:47.000Z" + }, + "end": { + "$date": "2021-01-24T07:24:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdff1624-1c4c-464b-b97d-a578ae9dbdf8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T06:57:39.000Z" + }, + "end": { + "$date": "2021-01-24T07:19:47.000Z" + }, + "events": [ + { + "uuid": "b837462e-8be3-45eb-9670-7743027634ba", + "start": { + "$date": "2021-01-24T06:57:39.000Z" + }, + "end": { + "$date": "2021-01-24T07:19:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "949722d5-8b6a-4bc4-924f-aa804eda346d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-24T07:18:57.000Z" + }, + "end": { + "$date": "2021-01-24T09:53:42.000Z" + }, + "events": [ + { + "uuid": "ea9f37cb-85ec-4734-bf1d-f973cb8ade09", + "start": { + "$date": "2021-01-24T07:18:57.000Z" + }, + "end": { + "$date": "2021-01-24T09:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17cc9ffc-118f-4605-8be1-6eaf4d529343", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T07:26:40.000Z" + }, + "end": { + "$date": "2021-01-24T07:41:21.000Z" + }, + "events": [ + { + "uuid": "c28bbb97-9339-4a86-9625-acb199af66f8", + "start": { + "$date": "2021-01-24T07:26:40.000Z" + }, + "end": { + "$date": "2021-01-24T07:41:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "181f7541-1d76-43ad-9622-68bdf24e1fef", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-24T07:30:32.000Z" + }, + "end": { + "$date": "2021-01-24T07:56:55.000Z" + }, + "events": [ + { + "uuid": "f8b7010c-d203-41ce-ad0b-678501f1a435", + "start": { + "$date": "2021-01-24T07:30:32.000Z" + }, + "end": { + "$date": "2021-01-24T07:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf44aae7-4c25-4a5b-8d65-4589b6bf3b52", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T07:45:30.000Z" + }, + "end": { + "$date": "2021-01-24T08:30:16.000Z" + }, + "events": [ + { + "uuid": "2ba136e9-60d4-4bd0-9023-c81c8d2be9e1", + "start": { + "$date": "2021-01-24T07:45:30.000Z" + }, + "end": { + "$date": "2021-01-24T08:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99db0514-53b0-40ca-89ee-2120580bd0b2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-24T08:04:13.000Z" + }, + "end": { + "$date": "2021-01-24T08:31:35.000Z" + }, + "events": [ + { + "uuid": "d33ae378-0626-4fdf-9c4d-a1dd152871a6", + "start": { + "$date": "2021-01-24T08:04:13.000Z" + }, + "end": { + "$date": "2021-01-24T08:31:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "76625396-0ee4-4bce-abb4-cc9e0dfc4faa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-24T15:26:02.000Z" + }, + "end": { + "$date": "2021-01-24T17:37:05.000Z" + }, + "events": [ + { + "uuid": "fb7b2bb2-c087-40e2-91fb-d681cc1e2d11", + "start": { + "$date": "2021-01-24T15:26:02.000Z" + }, + "end": { + "$date": "2021-01-24T17:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "18750da3-65e6-485d-9c4c-3f60ecc73f36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T17:20:29.000Z" + }, + "end": { + "$date": "2021-01-24T18:35:33.000Z" + }, + "events": [ + { + "uuid": "8b834b3c-f003-4924-9801-2dbfb2401b73", + "start": { + "$date": "2021-01-24T17:20:29.000Z" + }, + "end": { + "$date": "2021-01-24T18:35:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7a5c5492-cdd3-4e8f-9bed-d09b1227d27a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-24T17:37:22.000Z" + }, + "end": { + "$date": "2021-01-24T18:28:50.000Z" + }, + "events": [ + { + "uuid": "511ec869-6c6d-41b3-88fe-4eb396358b5e", + "start": { + "$date": "2021-01-24T17:37:22.000Z" + }, + "end": { + "$date": "2021-01-24T18:06:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e589eab5-4e0a-4734-8bb0-387f84f3e125", + "start": { + "$date": "2021-01-24T18:06:22.000Z" + }, + "end": { + "$date": "2021-01-24T18:28:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9aa84f2-d84a-4c5b-b1bf-abc60f0043be", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T18:28:50.000Z" + }, + "end": { + "$date": "2021-01-24T18:57:16.000Z" + }, + "events": [ + { + "uuid": "aaffaafa-f67e-48df-96e0-6d7df9783050", + "start": { + "$date": "2021-01-24T18:28:50.000Z" + }, + "end": { + "$date": "2021-01-24T18:44:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb6492db-b01c-429c-82f5-c840862398d6", + "start": { + "$date": "2021-01-24T18:44:50.000Z" + }, + "end": { + "$date": "2021-01-24T18:45:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52e62416-f528-45ed-8376-3e9339986663", + "start": { + "$date": "2021-01-24T18:45:50.000Z" + }, + "end": { + "$date": "2021-01-24T18:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4aa638d9-4ef5-4563-8769-214701299833", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-24T17:53:27.000Z" + }, + "end": { + "$date": "2021-01-24T18:27:46.000Z" + }, + "events": [ + { + "uuid": "788aa5d7-1d65-4073-a757-e1ef5d0ff394", + "start": { + "$date": "2021-01-24T17:53:27.000Z" + }, + "end": { + "$date": "2021-01-24T18:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e2ff9cd-58dc-4ea8-be7f-af928fdd7496", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T19:06:44.000Z" + }, + "end": { + "$date": "2021-01-24T19:33:52.000Z" + }, + "events": [ + { + "uuid": "03cb3c5c-804b-488f-a2fb-9c326a068d19", + "start": { + "$date": "2021-01-24T19:06:44.000Z" + }, + "end": { + "$date": "2021-01-24T19:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f913387-a597-4e67-a85b-fac6d6ff8ef5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T19:06:40.000Z" + }, + "end": { + "$date": "2021-01-24T19:33:35.000Z" + }, + "events": [ + { + "uuid": "8d2b9e6b-356e-4bf6-857f-58d8622da738", + "start": { + "$date": "2021-01-24T19:06:40.000Z" + }, + "end": { + "$date": "2021-01-24T19:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71b0ee61-dca3-49b6-a45f-7c62bfdc12dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T19:36:11.000Z" + }, + "end": { + "$date": "2021-01-24T19:44:32.000Z" + }, + "events": [ + { + "uuid": "0e1aae09-1f12-46ae-8b56-1ce6cfa44dc1", + "start": { + "$date": "2021-01-24T19:36:11.000Z" + }, + "end": { + "$date": "2021-01-24T19:44:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dd6037cd-38fc-4f90-af7a-7a07e0c3eb3d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T19:44:36.000Z" + }, + "end": { + "$date": "2021-01-24T21:34:26.000Z" + }, + "events": [ + { + "uuid": "4dadc769-7d40-4478-9212-59d9648ebfd4", + "start": { + "$date": "2021-01-24T19:44:36.000Z" + }, + "end": { + "$date": "2021-01-24T21:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8f58a803-445f-4b8e-b7dd-473adcee1a63", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-24T21:22:59.000Z" + }, + "end": { + "$date": "2021-01-24T21:54:07.000Z" + }, + "events": [ + { + "uuid": "2b8c2d33-b5d8-4451-bdf2-58891cbf5e77", + "start": { + "$date": "2021-01-24T21:22:59.000Z" + }, + "end": { + "$date": "2021-01-24T21:54:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6942955f-4afd-44ef-9baa-11f90f4aa15b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T21:41:37.000Z" + }, + "end": { + "$date": "2021-01-24T21:57:17.000Z" + }, + "events": [ + { + "uuid": "e7d3cb52-314a-4a94-b4d7-b20332a91b8e", + "start": { + "$date": "2021-01-24T21:41:37.000Z" + }, + "end": { + "$date": "2021-01-24T21:57:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b55cade-b0f7-4ea0-922a-51da936a60b7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-24T21:41:36.000Z" + }, + "end": { + "$date": "2021-01-24T21:57:20.000Z" + }, + "events": [ + { + "uuid": "36afc239-9639-4767-b656-ac4651fcd0b0", + "start": { + "$date": "2021-01-24T21:41:36.000Z" + }, + "end": { + "$date": "2021-01-24T21:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7861e61-ffb3-460e-b1fa-e63d30f33126", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T22:01:33.000Z" + }, + "end": { + "$date": "2021-01-24T22:26:03.000Z" + }, + "events": [ + { + "uuid": "13da1361-5c11-407b-9cc5-21557ad67feb", + "start": { + "$date": "2021-01-24T22:01:33.000Z" + }, + "end": { + "$date": "2021-01-24T22:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6e4576f-37fb-486f-a7da-2b44089e8eab", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-24T22:01:27.000Z" + }, + "end": { + "$date": "2021-01-24T22:02:43.000Z" + }, + "events": [ + { + "uuid": "a39873d6-59ed-477d-88eb-18f44f490ff6", + "start": { + "$date": "2021-01-24T22:01:27.000Z" + }, + "end": { + "$date": "2021-01-24T22:02:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8833fe5c-449e-4ed4-bda5-724bc876c473", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-24T22:02:07.000Z" + }, + "end": { + "$date": "2021-01-24T22:26:02.000Z" + }, + "events": [ + { + "uuid": "52f5fd59-c115-43d1-8957-37ddfd4d0c13", + "start": { + "$date": "2021-01-24T22:02:07.000Z" + }, + "end": { + "$date": "2021-01-24T22:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5c48eca3-ee91-4584-a674-2b31451f2e27", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-24T21:58:53.000Z" + }, + "end": { + "$date": "2021-01-24T23:16:29.000Z" + }, + "events": [ + { + "uuid": "b1eb53e9-2379-4adc-91c8-3a798782d36f", + "start": { + "$date": "2021-01-24T21:58:53.000Z" + }, + "end": { + "$date": "2021-01-24T23:16:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "66b34bb5-a89a-4e8f-8424-3308e91116d2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-24T21:59:52.000Z" + }, + "end": { + "$date": "2021-01-24T22:56:29.000Z" + }, + "events": [ + { + "uuid": "6b5dcfd4-4903-4e3a-b1f2-348955bcf070", + "start": { + "$date": "2021-01-24T21:59:52.000Z" + }, + "end": { + "$date": "2021-01-24T22:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "886d42ab-eea3-49e5-aace-cb8b2cd7c940", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-24T22:29:54.000Z" + }, + "end": { + "$date": "2021-01-24T23:20:48.000Z" + }, + "events": [ + { + "uuid": "3cfb612e-dacc-4f64-93cd-694971a91f1b", + "start": { + "$date": "2021-01-24T22:29:54.000Z" + }, + "end": { + "$date": "2021-01-24T23:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6f44bc61-261c-4150-ad85-692b18265b23", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-25T00:18:09.000Z" + }, + "end": { + "$date": "2021-01-25T01:29:03.000Z" + }, + "events": [ + { + "uuid": "5aacafc2-0643-49e5-8987-9b70300dead5", + "start": { + "$date": "2021-01-25T00:18:09.000Z" + }, + "end": { + "$date": "2021-01-25T01:29:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15910aa2-f231-4516-b581-e6c1a60b850f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-25T00:56:10.000Z" + }, + "end": { + "$date": "2021-01-25T00:57:07.000Z" + }, + "events": [ + { + "uuid": "0283f795-5046-4327-9078-a31eefac3f1d", + "start": { + "$date": "2021-01-25T00:56:10.000Z" + }, + "end": { + "$date": "2021-01-25T00:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1630f47f-af50-4bc2-bfb3-cd2c898dfec3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-25T00:56:10.000Z" + }, + "end": { + "$date": "2021-01-25T00:56:10.000Z" + }, + "events": [ + { + "uuid": "717c53d9-8051-4ef9-938a-54980dd856bb", + "start": { + "$date": "2021-01-25T00:56:10.000Z" + }, + "end": { + "$date": "2021-01-25T00:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "39c0ce51-4524-42a5-b07e-d85ac29bc1ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-25T01:14:54.000Z" + }, + "end": { + "$date": "2021-01-25T02:46:47.000Z" + }, + "events": [ + { + "uuid": "64dcb418-1dcc-4d6c-b932-26223b26efd8", + "start": { + "$date": "2021-01-25T01:14:54.000Z" + }, + "end": { + "$date": "2021-01-25T02:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ea08d30-5a94-4fd7-93a3-172e5caf690f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-25T02:19:04.000Z" + }, + "end": { + "$date": "2021-01-25T02:19:09.000Z" + }, + "events": [ + { + "uuid": "fdfeae05-9fb4-4d3e-8391-f374afcfc868", + "start": { + "$date": "2021-01-25T02:19:04.000Z" + }, + "end": { + "$date": "2021-01-25T02:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9abfbe6e-de42-4842-b071-21bbc00c4435", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-25T01:26:56.000Z" + }, + "end": { + "$date": "2021-01-25T01:39:22.000Z" + }, + "events": [ + { + "uuid": "ed252375-6bbe-4f8e-90d0-1c52a8942770", + "start": { + "$date": "2021-01-25T01:26:56.000Z" + }, + "end": { + "$date": "2021-01-25T01:39:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a05f4964-d7e8-422d-a0a9-f71f4c29d83d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-25T01:26:56.000Z" + }, + "end": { + "$date": "2021-01-25T01:39:22.000Z" + }, + "events": [ + { + "uuid": "733a682f-cf3c-43f9-8304-c3057aa0eac8", + "start": { + "$date": "2021-01-25T01:26:56.000Z" + }, + "end": { + "$date": "2021-01-25T01:39:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "166019f3-8f57-4963-8f26-0a8bea2afa30", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-25T01:40:16.000Z" + }, + "end": { + "$date": "2021-01-25T01:57:34.000Z" + }, + "events": [ + { + "uuid": "478768ba-b3f3-40a0-b1ed-c46db2a9a03f", + "start": { + "$date": "2021-01-25T01:40:16.000Z" + }, + "end": { + "$date": "2021-01-25T01:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6b306385-bc3c-4735-ad57-a6eb0086a39f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-25T02:05:52.000Z" + }, + "end": { + "$date": "2021-01-25T02:30:09.000Z" + }, + "events": [ + { + "uuid": "33a09cc2-2e9b-4123-a9c3-ea0f126bbb38", + "start": { + "$date": "2021-01-25T02:05:52.000Z" + }, + "end": { + "$date": "2021-01-25T02:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad4dca57-d38f-435e-b258-b7a44d6cb76c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-25T02:13:58.000Z" + }, + "end": { + "$date": "2021-01-25T02:53:41.000Z" + }, + "events": [ + { + "uuid": "cbe1a419-54b7-4378-8e5c-5b6d0a08e466", + "start": { + "$date": "2021-01-25T02:13:58.000Z" + }, + "end": { + "$date": "2021-01-25T02:53:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abb6f264-89f2-48e4-86cc-e411427a204a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-25T02:36:26.000Z" + }, + "end": { + "$date": "2021-01-25T03:10:42.000Z" + }, + "events": [ + { + "uuid": "dcb6784b-e82e-4aee-9546-31711f86a107", + "start": { + "$date": "2021-01-25T02:36:26.000Z" + }, + "end": { + "$date": "2021-01-25T03:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e24cfdf2-15dd-4d21-a2c1-424d771e9264", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-25T02:31:00.000Z" + }, + "end": { + "$date": "2021-01-25T03:15:48.000Z" + }, + "events": [ + { + "uuid": "905dd198-3bc2-4ec3-9e30-fe5fa5b7ac66", + "start": { + "$date": "2021-01-25T02:31:00.000Z" + }, + "end": { + "$date": "2021-01-25T03:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f47a7a34-6cc9-4846-8d16-8e6f81d9685c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T02:46:08.000Z" + }, + "end": { + "$date": "2021-01-25T03:13:38.000Z" + }, + "events": [ + { + "uuid": "4279b77f-9e03-4ac2-9fac-59812b018484", + "start": { + "$date": "2021-01-25T02:46:08.000Z" + }, + "end": { + "$date": "2021-01-25T03:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9bcffcd4-add9-4351-952b-eb2708b75991", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-25T02:50:15.000Z" + }, + "end": { + "$date": "2021-01-25T03:15:19.000Z" + }, + "events": [ + { + "uuid": "a9186ac2-491f-4446-9054-52aee1d18e61", + "start": { + "$date": "2021-01-25T02:50:15.000Z" + }, + "end": { + "$date": "2021-01-25T03:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a52b5ca4-c666-43ec-8734-1203b6d98ad2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-25T02:58:48.000Z" + }, + "end": { + "$date": "2021-01-25T04:05:45.000Z" + }, + "events": [ + { + "uuid": "40574ac1-17b9-4b5a-8fee-f40af25e5193", + "start": { + "$date": "2021-01-25T02:58:48.000Z" + }, + "end": { + "$date": "2021-01-25T04:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d18beada-8c0a-40bf-8b8e-570339304fc6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-25T03:04:24.000Z" + }, + "end": { + "$date": "2021-01-25T05:57:38.000Z" + }, + "events": [ + { + "uuid": "9546bfb8-05f2-46e4-8515-8d9725fd6aa2", + "start": { + "$date": "2021-01-25T03:04:24.000Z" + }, + "end": { + "$date": "2021-01-25T04:19:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b6b8470-0873-4f4c-9da3-275180a974a3", + "start": { + "$date": "2021-01-25T04:19:24.000Z" + }, + "end": { + "$date": "2021-01-25T04:22:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9343a04e-3be1-4aa8-ad86-4c75889a532a", + "start": { + "$date": "2021-01-25T04:22:24.000Z" + }, + "end": { + "$date": "2021-01-25T05:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e70df5e-a981-447f-92a4-dcd91376e3bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-25T03:24:39.000Z" + }, + "end": { + "$date": "2021-01-25T04:02:56.000Z" + }, + "events": [ + { + "uuid": "4f87996f-5047-4535-8975-a9977f8f8559", + "start": { + "$date": "2021-01-25T03:24:39.000Z" + }, + "end": { + "$date": "2021-01-25T04:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29e4b37f-ef6c-4667-9265-5fc04d2d6619", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T03:29:05.000Z" + }, + "end": { + "$date": "2021-01-25T04:05:45.000Z" + }, + "events": [ + { + "uuid": "11bb8181-0047-4773-a57f-f0c4b8eec72f", + "start": { + "$date": "2021-01-25T03:29:05.000Z" + }, + "end": { + "$date": "2021-01-25T04:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2321163-a9e6-466f-9c8b-9dace7d4e7b0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-25T03:16:40.000Z" + }, + "end": { + "$date": "2021-01-25T05:21:05.000Z" + }, + "events": [ + { + "uuid": "77a71c50-d218-49e5-b2a8-a849bd740e43", + "start": { + "$date": "2021-01-25T03:16:40.000Z" + }, + "end": { + "$date": "2021-01-25T05:21:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "fba058f8-5a3b-48d9-b77c-f380499871a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-25T04:06:18.000Z" + }, + "end": { + "$date": "2021-01-25T06:24:31.000Z" + }, + "events": [ + { + "uuid": "1c5bcee0-844d-406b-aeb0-c51e7bf0de5a", + "start": { + "$date": "2021-01-25T04:06:18.000Z" + }, + "end": { + "$date": "2021-01-25T06:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "8c4eadb1-b6bc-4b8e-a7b3-0e3d76be44d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-25T04:08:24.000Z" + }, + "end": { + "$date": "2021-01-25T06:56:59.000Z" + }, + "events": [ + { + "uuid": "d528c162-bbf8-4d3a-98f3-b5712d1e451c", + "start": { + "$date": "2021-01-25T04:08:24.000Z" + }, + "end": { + "$date": "2021-01-25T06:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b14adcb1-6c6f-44b2-92c5-363b4af12c9c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T04:16:16.000Z" + }, + "end": { + "$date": "2021-01-25T04:46:31.000Z" + }, + "events": [ + { + "uuid": "0931a324-7d65-45fe-b9f9-6b313a96313c", + "start": { + "$date": "2021-01-25T04:16:16.000Z" + }, + "end": { + "$date": "2021-01-25T04:46:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d37b2f07-0dbe-4255-87b4-bf65c2eebc39", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T04:51:47.000Z" + }, + "end": { + "$date": "2021-01-25T05:38:46.000Z" + }, + "events": [ + { + "uuid": "16653d2d-c1e8-4f7e-9dd2-cb3354822ace", + "start": { + "$date": "2021-01-25T04:51:47.000Z" + }, + "end": { + "$date": "2021-01-25T05:38:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9366264-2e65-4d62-a365-c49fc77f471c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T05:45:38.000Z" + }, + "end": { + "$date": "2021-01-25T06:12:28.000Z" + }, + "events": [ + { + "uuid": "3e5a9219-ea1d-4b69-b501-1e777446defa", + "start": { + "$date": "2021-01-25T05:45:38.000Z" + }, + "end": { + "$date": "2021-01-25T06:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7948c6f9-4a26-4eaa-ae93-b9ebf5a89ae0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-25T05:53:35.000Z" + }, + "end": { + "$date": "2021-01-25T07:04:19.000Z" + }, + "events": [ + { + "uuid": "9bd69f24-8045-4d02-8531-fd6ede6f02d5", + "start": { + "$date": "2021-01-25T05:53:35.000Z" + }, + "end": { + "$date": "2021-01-25T07:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "69917de5-7063-4f59-a33b-f9f200421e5d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-25T05:58:25.000Z" + }, + "end": { + "$date": "2021-01-25T05:59:54.000Z" + }, + "events": [ + { + "uuid": "8a376bdb-824a-4a41-b0f0-b94d8b03bbda", + "start": { + "$date": "2021-01-25T05:58:25.000Z" + }, + "end": { + "$date": "2021-01-25T05:59:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "39a30695-cfb6-4103-85e9-55e1a94ef59d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-25T06:02:11.000Z" + }, + "end": { + "$date": "2021-01-25T06:19:22.000Z" + }, + "events": [ + { + "uuid": "5c36bfd6-4861-405d-9e8a-9cc21b322614", + "start": { + "$date": "2021-01-25T06:02:11.000Z" + }, + "end": { + "$date": "2021-01-25T06:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3afdd3dd-0592-4395-bd2c-2686e7a76090", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T06:16:58.000Z" + }, + "end": { + "$date": "2021-01-25T06:17:25.000Z" + }, + "events": [ + { + "uuid": "ada2331b-d92b-4229-8ac1-287d63fd84bb", + "start": { + "$date": "2021-01-25T06:16:58.000Z" + }, + "end": { + "$date": "2021-01-25T06:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e83f74d7-4c9f-4d47-9d40-b5c964598b57", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-25T06:53:05.000Z" + }, + "end": { + "$date": "2021-01-25T06:59:04.000Z" + }, + "events": [ + { + "uuid": "98d6cdbf-d38b-45d7-8494-09bcc8118ee7", + "start": { + "$date": "2021-01-25T06:53:05.000Z" + }, + "end": { + "$date": "2021-01-25T06:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "6d667624-47ee-443f-9028-97cee3a67073", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-25T06:20:47.000Z" + }, + "end": { + "$date": "2021-01-25T07:03:57.000Z" + }, + "events": [ + { + "uuid": "87d53c19-59a8-46a1-a571-0e421ef7d71b", + "start": { + "$date": "2021-01-25T06:20:47.000Z" + }, + "end": { + "$date": "2021-01-25T07:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0eeab688-2f11-404c-9f17-aca234225f64", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-25T16:41:11.000Z" + }, + "end": { + "$date": "2021-01-25T16:45:12.000Z" + }, + "events": [ + { + "uuid": "c701eef9-369b-4dce-a1e3-8fe25482f9c0", + "start": { + "$date": "2021-01-25T16:41:11.000Z" + }, + "end": { + "$date": "2021-01-25T16:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "06c2ac08-b4bf-4074-9833-59824799a050", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-25T17:48:44.000Z" + }, + "end": { + "$date": "2021-01-25T18:30:15.000Z" + }, + "events": [ + { + "uuid": "9b293383-338d-4188-a942-78d8622ce1f4", + "start": { + "$date": "2021-01-25T17:48:44.000Z" + }, + "end": { + "$date": "2021-01-25T18:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b9551630-ad37-4756-91d9-c81a4a61cc97", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-25T19:41:13.000Z" + }, + "end": { + "$date": "2021-01-25T22:17:30.000Z" + }, + "events": [ + { + "uuid": "34a00944-a974-4c77-8cc8-4f4aaf227714", + "start": { + "$date": "2021-01-25T19:41:13.000Z" + }, + "end": { + "$date": "2021-01-25T22:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "650d9923-8fb1-4824-aa02-9f12e486be81", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-25T20:07:11.000Z" + }, + "end": { + "$date": "2021-01-25T21:10:21.000Z" + }, + "events": [ + { + "uuid": "2a3a8a25-0cf0-4729-8b38-ae32f291266c", + "start": { + "$date": "2021-01-25T20:07:11.000Z" + }, + "end": { + "$date": "2021-01-25T21:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "f84d585a-cb35-4c3e-b09e-a6172085f0d5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-25T22:06:38.000Z" + }, + "end": { + "$date": "2021-01-25T23:47:44.000Z" + }, + "events": [ + { + "uuid": "3d79fb68-abe2-465e-8ebb-a876a20ddfb1", + "start": { + "$date": "2021-01-25T22:06:38.000Z" + }, + "end": { + "$date": "2021-01-25T23:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "754ba62a-a8a5-4f1f-88e4-49fd7e2efac3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-25T22:08:53.000Z" + }, + "end": { + "$date": "2021-01-26T01:23:44.000Z" + }, + "events": [ + { + "uuid": "b0fab246-8e7f-48a1-b627-52862600bf8c", + "start": { + "$date": "2021-01-25T22:08:53.000Z" + }, + "end": { + "$date": "2021-01-26T01:23:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "6f576a08-bf73-411a-94f1-ce292a9e2eb6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-25T22:20:58.000Z" + }, + "end": { + "$date": "2021-01-26T03:32:01.000Z" + }, + "events": [ + { + "uuid": "fc67990e-02bf-49b3-b42d-5e69b6b1231b", + "start": { + "$date": "2021-01-25T22:20:58.000Z" + }, + "end": { + "$date": "2021-01-26T00:23:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "445bdcdc-2b37-4138-b642-2482ac0d1ab4", + "start": { + "$date": "2021-01-26T00:23:58.000Z" + }, + "end": { + "$date": "2021-01-26T00:48:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92e280e3-6b54-4bf6-a3ee-dd124d1dd87a", + "start": { + "$date": "2021-01-26T00:48:58.000Z" + }, + "end": { + "$date": "2021-01-26T00:50:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0de25214-4a51-4b2c-9bc0-cd060d23379a", + "start": { + "$date": "2021-01-26T00:50:58.000Z" + }, + "end": { + "$date": "2021-01-26T00:58:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "05b2e2cd-296f-49eb-9928-b3a6e4993529", + "start": { + "$date": "2021-01-26T00:58:58.000Z" + }, + "end": { + "$date": "2021-01-26T03:32:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cd16e33b-4d33-45f3-a5bc-6be63cc0d1fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-26T00:05:18.000Z" + }, + "end": { + "$date": "2021-01-26T01:58:58.000Z" + }, + "events": [ + { + "uuid": "2271ec85-021c-4cc9-856f-9aa17a2d072e", + "start": { + "$date": "2021-01-26T00:05:18.000Z" + }, + "end": { + "$date": "2021-01-26T01:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "9de47623-4d81-4138-bc8a-181ac1fe6660", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-26T00:59:22.000Z" + }, + "end": { + "$date": "2021-01-26T01:16:00.000Z" + }, + "events": [ + { + "uuid": "f72329ed-a4ca-44e2-baa6-39b4829752c0", + "start": { + "$date": "2021-01-26T00:59:22.000Z" + }, + "end": { + "$date": "2021-01-26T01:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "08045eb4-8b3e-48f6-94f4-9661ce01a6ea", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-26T01:16:26.000Z" + }, + "end": { + "$date": "2021-01-26T03:51:30.000Z" + }, + "events": [ + { + "uuid": "094ca9b8-1cd8-43da-b236-d8e440f3c166", + "start": { + "$date": "2021-01-26T01:16:26.000Z" + }, + "end": { + "$date": "2021-01-26T03:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8de50aa9-f1ad-4eba-8fb7-d9c4154c08de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-26T01:33:55.000Z" + }, + "end": { + "$date": "2021-01-26T03:08:21.000Z" + }, + "events": [ + { + "uuid": "25ef7d89-56e9-4375-b86e-e185145ba324", + "start": { + "$date": "2021-01-26T01:33:55.000Z" + }, + "end": { + "$date": "2021-01-26T03:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ba076bb4-7e0a-4fc3-8799-2d4cb1609b33", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-26T01:57:42.000Z" + }, + "end": { + "$date": "2021-01-26T02:33:34.000Z" + }, + "events": [ + { + "uuid": "d08af496-d376-4fda-8747-c5460c34f899", + "start": { + "$date": "2021-01-26T01:57:42.000Z" + }, + "end": { + "$date": "2021-01-26T02:33:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "814fabba-7228-4970-b6ae-3255f3b0f2c8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-26T02:41:13.000Z" + }, + "end": { + "$date": "2021-01-26T03:05:18.000Z" + }, + "events": [ + { + "uuid": "18f4c63e-12bb-4a1f-9fb4-36c128c46e40", + "start": { + "$date": "2021-01-26T02:41:13.000Z" + }, + "end": { + "$date": "2021-01-26T03:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ac80cbe2-a223-4a6f-a23f-37bd229c9330", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-26T02:40:45.000Z" + }, + "end": { + "$date": "2021-01-26T03:15:32.000Z" + }, + "events": [ + { + "uuid": "35c7a3c0-4309-44c2-8384-9a59eea296da", + "start": { + "$date": "2021-01-26T02:40:45.000Z" + }, + "end": { + "$date": "2021-01-26T03:15:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b63dc307-ec3c-47f0-a07a-62f2ec961cd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-26T03:08:25.000Z" + }, + "end": { + "$date": "2021-01-26T03:25:28.000Z" + }, + "events": [ + { + "uuid": "e701ecbd-9fa1-41a8-8eb5-563ba5bc2f0a", + "start": { + "$date": "2021-01-26T03:08:25.000Z" + }, + "end": { + "$date": "2021-01-26T03:12:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "097adb18-dd82-47e3-837d-641dedf884fd", + "start": { + "$date": "2021-01-26T03:12:25.000Z" + }, + "end": { + "$date": "2021-01-26T03:15:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1bd2c743-e41d-4b89-84c5-83d79d0a4183", + "start": { + "$date": "2021-01-26T03:15:25.000Z" + }, + "end": { + "$date": "2021-01-26T03:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "a2081450-5d46-410d-aefb-37c82253adbc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-26T03:15:47.000Z" + }, + "end": { + "$date": "2021-01-26T05:01:51.000Z" + }, + "events": [ + { + "uuid": "d11cf2bf-bd9b-4e39-834a-96e07b4e08e5", + "start": { + "$date": "2021-01-26T03:15:47.000Z" + }, + "end": { + "$date": "2021-01-26T04:34:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5538f78c-ddbf-4258-a7e0-63abc3040803", + "start": { + "$date": "2021-01-26T04:34:47.000Z" + }, + "end": { + "$date": "2021-01-26T04:56:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b99de01-d372-4ef7-bca0-bce3831d4081", + "start": { + "$date": "2021-01-26T04:56:47.000Z" + }, + "end": { + "$date": "2021-01-26T05:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6523193b-9398-4cf1-9ea9-560cc68cc036", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-26T03:55:40.000Z" + }, + "end": { + "$date": "2021-01-26T04:23:07.000Z" + }, + "events": [ + { + "uuid": "1a034c17-c96a-44ad-8dd6-f4c2fd946c70", + "start": { + "$date": "2021-01-26T03:55:40.000Z" + }, + "end": { + "$date": "2021-01-26T04:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "56bda71e-ee41-4cca-b8e3-7d4b1601ed82", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-26T03:51:34.000Z" + }, + "end": { + "$date": "2021-01-26T07:35:22.000Z" + }, + "events": [ + { + "uuid": "f74dd163-cedd-4d20-8950-2c486dd6312f", + "start": { + "$date": "2021-01-26T03:51:34.000Z" + }, + "end": { + "$date": "2021-01-26T07:35:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4d441a86-ab4a-4713-a6ec-df92da14c0bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T03:52:59.000Z" + }, + "end": { + "$date": "2021-01-26T04:21:25.000Z" + }, + "events": [ + { + "uuid": "10031de7-4dd7-4e43-bb93-332c60418ec0", + "start": { + "$date": "2021-01-26T03:52:59.000Z" + }, + "end": { + "$date": "2021-01-26T04:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9ed6b344-ea4a-489d-b93a-06181f8375d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-26T03:54:25.000Z" + }, + "end": { + "$date": "2021-01-26T04:17:00.000Z" + }, + "events": [ + { + "uuid": "de3bb8c7-52c0-446d-a9eb-cd94e4506056", + "start": { + "$date": "2021-01-26T03:54:25.000Z" + }, + "end": { + "$date": "2021-01-26T04:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02d6b8bc-52b1-49b5-af2b-d514d67a1537", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-26T04:31:26.000Z" + }, + "end": { + "$date": "2021-01-26T04:46:43.000Z" + }, + "events": [ + { + "uuid": "98e68d36-f270-43b3-aab0-14ce65f479e3", + "start": { + "$date": "2021-01-26T04:31:26.000Z" + }, + "end": { + "$date": "2021-01-26T04:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e546326a-919c-4043-a5ed-418eb6735836", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-26T04:39:44.000Z" + }, + "end": { + "$date": "2021-01-26T06:34:14.000Z" + }, + "events": [ + { + "uuid": "452acbb4-e56b-4e71-8a81-3f81dbf5b605", + "start": { + "$date": "2021-01-26T04:39:44.000Z" + }, + "end": { + "$date": "2021-01-26T06:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7e1658bf-3ec6-4f85-b2ef-eb837e349feb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-26T04:41:02.000Z" + }, + "end": { + "$date": "2021-01-26T06:34:07.000Z" + }, + "events": [ + { + "uuid": "db07b7ae-c01d-408e-8b94-0cfa474ae4c4", + "start": { + "$date": "2021-01-26T04:41:02.000Z" + }, + "end": { + "$date": "2021-01-26T06:34:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "821fdf6e-fe8f-4ede-a06b-31aebc7a6f0c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-26T04:52:17.000Z" + }, + "end": { + "$date": "2021-01-26T05:36:34.000Z" + }, + "events": [ + { + "uuid": "192f464d-024b-4a40-abc8-3252ef84f058", + "start": { + "$date": "2021-01-26T04:52:17.000Z" + }, + "end": { + "$date": "2021-01-26T05:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "08fc56df-c804-4baa-89c8-3f6510f389b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-26T05:08:11.000Z" + }, + "end": { + "$date": "2021-01-26T05:41:56.000Z" + }, + "events": [ + { + "uuid": "df0fb896-7be2-4559-a359-0ea49d861ebc", + "start": { + "$date": "2021-01-26T05:08:11.000Z" + }, + "end": { + "$date": "2021-01-26T05:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6ebee304-5968-4a75-9e71-5a63f22aea09", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-26T05:27:44.000Z" + }, + "end": { + "$date": "2021-01-26T06:17:44.000Z" + }, + "events": [ + { + "uuid": "6f5ce4fb-1a02-4c2f-8a2c-9fbf1d4484cd", + "start": { + "$date": "2021-01-26T05:27:44.000Z" + }, + "end": { + "$date": "2021-01-26T06:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59f490db-9dec-4f11-b87a-be29ee468ae4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-26T05:42:08.000Z" + }, + "end": { + "$date": "2021-01-26T06:07:00.000Z" + }, + "events": [ + { + "uuid": "6470bf07-3a0b-4f02-aa13-70886542b08d", + "start": { + "$date": "2021-01-26T05:42:08.000Z" + }, + "end": { + "$date": "2021-01-26T06:07:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "30683351-5576-4d71-822b-ff1b3ab05fa9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T05:55:21.000Z" + }, + "end": { + "$date": "2021-01-26T10:12:52.000Z" + }, + "events": [ + { + "uuid": "c2607c02-8568-484f-8a44-0a2a53f59902", + "start": { + "$date": "2021-01-26T05:55:21.000Z" + }, + "end": { + "$date": "2021-01-26T10:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5afb739d-2bbc-4bfe-9a30-b3bf9e8fd99e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-26T06:03:40.000Z" + }, + "end": { + "$date": "2021-01-26T08:09:00.000Z" + }, + "events": [ + { + "uuid": "56129e44-1cac-4a9c-8f06-1641a1378582", + "start": { + "$date": "2021-01-26T06:03:40.000Z" + }, + "end": { + "$date": "2021-01-26T08:09:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dc397754-2159-4baa-a3c1-7a49ae2a7958", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-26T06:06:11.000Z" + }, + "end": { + "$date": "2021-01-26T08:07:10.000Z" + }, + "events": [ + { + "uuid": "ff2e65bb-f1f8-4112-af02-cf0e39fbfb48", + "start": { + "$date": "2021-01-26T06:06:11.000Z" + }, + "end": { + "$date": "2021-01-26T08:07:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a391b69-f42f-4549-b18c-68c8f53bdc59", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-26T06:07:51.000Z" + }, + "end": { + "$date": "2021-01-26T06:11:43.000Z" + }, + "events": [ + { + "uuid": "3c1edfd0-c3e7-4450-9039-1ac717869525", + "start": { + "$date": "2021-01-26T06:07:51.000Z" + }, + "end": { + "$date": "2021-01-26T06:11:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e2e081b6-7e35-4ce7-92ad-08345b6f0649", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-26T06:18:19.000Z" + }, + "end": { + "$date": "2021-01-26T06:23:30.000Z" + }, + "events": [ + { + "uuid": "a1074682-e081-4804-ba63-c512ff013c65", + "start": { + "$date": "2021-01-26T06:18:19.000Z" + }, + "end": { + "$date": "2021-01-26T06:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "be18d3a6-d878-40de-b67b-ef77c2fce29b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-26T07:32:39.000Z" + }, + "end": { + "$date": "2021-01-26T07:33:00.000Z" + }, + "events": [ + { + "uuid": "1fc74f2b-3cb4-4732-b05e-c85319709d7a", + "start": { + "$date": "2021-01-26T07:32:39.000Z" + }, + "end": { + "$date": "2021-01-26T07:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "893480e9-ba82-4e5b-a418-9f021e9132ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-26T06:37:04.000Z" + }, + "end": { + "$date": "2021-01-26T07:54:36.000Z" + }, + "events": [ + { + "uuid": "663ec929-b2b9-44d1-9639-826112edbe2e", + "start": { + "$date": "2021-01-26T06:37:04.000Z" + }, + "end": { + "$date": "2021-01-26T07:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cd7f33a0-0236-4875-bf4a-1740d598beb1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T14:46:55.000Z" + }, + "end": { + "$date": "2021-01-26T15:18:57.000Z" + }, + "events": [ + { + "uuid": "52afe181-cd10-465a-a02a-ff356dce6303", + "start": { + "$date": "2021-01-26T14:46:55.000Z" + }, + "end": { + "$date": "2021-01-26T15:18:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6ebcb946-7926-48cc-b55f-d5f710475a4f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-26T15:33:57.000Z" + }, + "end": { + "$date": "2021-01-26T15:55:54.000Z" + }, + "events": [ + { + "uuid": "7fb5b3b3-a01a-4a33-a362-7b6c34440ff2", + "start": { + "$date": "2021-01-26T15:33:57.000Z" + }, + "end": { + "$date": "2021-01-26T15:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a0912b4d-e2ae-4254-90c0-126b01709b95", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-26T15:56:45.000Z" + }, + "end": { + "$date": "2021-01-26T17:16:17.000Z" + }, + "events": [ + { + "uuid": "312928fe-4e31-442a-a486-52c6d2ffeefb", + "start": { + "$date": "2021-01-26T15:56:45.000Z" + }, + "end": { + "$date": "2021-01-26T17:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "02a82598-ad14-4250-a221-87f4a1b2de4a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-26T16:12:33.000Z" + }, + "end": { + "$date": "2021-01-26T20:09:45.000Z" + }, + "events": [ + { + "uuid": "8fec4375-e770-4f93-ab10-a2394a599ef4", + "start": { + "$date": "2021-01-26T16:12:33.000Z" + }, + "end": { + "$date": "2021-01-26T20:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e9e13ff1-3a5f-4812-8699-238ff3d9529b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T16:13:43.000Z" + }, + "end": { + "$date": "2021-01-26T17:20:09.000Z" + }, + "events": [ + { + "uuid": "f44ad532-3072-4f86-b86e-8325644bdf44", + "start": { + "$date": "2021-01-26T16:13:43.000Z" + }, + "end": { + "$date": "2021-01-26T16:59:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2c99b25d-1f0b-4233-a1b1-97dd7fa7c9a4", + "start": { + "$date": "2021-01-26T16:59:43.000Z" + }, + "end": { + "$date": "2021-01-26T17:04:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8744093b-1eb4-46a5-819f-a3fd6fb8f79b", + "start": { + "$date": "2021-01-26T17:04:43.000Z" + }, + "end": { + "$date": "2021-01-26T17:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "035a5fc9-c1c6-4112-b737-ea7bd49039c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T20:00:11.000Z" + }, + "end": { + "$date": "2021-01-26T20:01:48.000Z" + }, + "events": [ + { + "uuid": "9d53e6d1-5f7a-4e99-bc60-8b8d9ae5f051", + "start": { + "$date": "2021-01-26T20:00:11.000Z" + }, + "end": { + "$date": "2021-01-26T20:01:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8722a214-9e3b-42dd-81c9-8ceb1bc2322b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-26T19:37:21.000Z" + }, + "end": { + "$date": "2021-01-26T19:54:01.000Z" + }, + "events": [ + { + "uuid": "2c71f4dc-4ba0-483d-bc46-c144e591273c", + "start": { + "$date": "2021-01-26T19:37:21.000Z" + }, + "end": { + "$date": "2021-01-26T19:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4e33f46f-c88a-4700-b0fa-056e3265fd00", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T22:40:20.000Z" + }, + "end": { + "$date": "2021-01-26T23:50:33.000Z" + }, + "events": [ + { + "uuid": "41bc6fc6-895b-4a98-9f20-69c1e64aaf3e", + "start": { + "$date": "2021-01-26T22:40:20.000Z" + }, + "end": { + "$date": "2021-01-26T23:54:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "15249126-8bc3-42cc-8b29-f13b03c73dd3", + "start": { + "$date": "2021-01-26T23:54:20.000Z" + }, + "end": { + "$date": "2021-01-27T00:51:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "459e8262-dc3b-4223-9d6a-4cc09ec7a69e", + "start": { + "$date": "2021-01-27T00:51:20.000Z" + }, + "end": { + "$date": "2021-01-27T01:01:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44f84d8b-9e01-4d02-a069-e6889c5b4664", + "start": { + "$date": "2021-01-27T01:01:20.000Z" + }, + "end": { + "$date": "2021-01-27T01:06:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cae521e8-b35e-4b90-a408-e59577323dda", + "start": { + "$date": "2021-01-27T01:06:20.000Z" + }, + "end": { + "$date": "2021-01-27T01:16:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04f24168-b11f-4327-b3b8-e70574f530cf", + "start": { + "$date": "2021-01-27T01:16:20.000Z" + }, + "end": { + "$date": "2021-01-26T23:50:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6d876a14-7f88-4246-821a-8742420ac029", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-26T20:39:07.000Z" + }, + "end": { + "$date": "2021-01-26T21:22:43.000Z" + }, + "events": [ + { + "uuid": "bdb17ab7-d4fb-40a7-8202-819febb0223d", + "start": { + "$date": "2021-01-26T20:39:07.000Z" + }, + "end": { + "$date": "2021-01-26T21:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ee7428ae-6994-4959-86dc-9a9d07d5a563", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-26T21:15:54.000Z" + }, + "end": { + "$date": "2021-01-26T22:13:16.000Z" + }, + "events": [ + { + "uuid": "e5eeded4-ca75-493e-9bb1-6884c42caa17", + "start": { + "$date": "2021-01-26T21:15:54.000Z" + }, + "end": { + "$date": "2021-01-26T22:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c3217f03-6e1d-4936-95e4-0a0e0fb01b96", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-26T22:02:00.000Z" + }, + "end": { + "$date": "2021-01-27T01:07:05.000Z" + }, + "events": [ + { + "uuid": "c1470385-4607-4b4e-9f24-5e5afb63f8a7", + "start": { + "$date": "2021-01-26T22:02:00.000Z" + }, + "end": { + "$date": "2021-01-27T01:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0086d74f-c5ee-4735-89bd-eb677c602862", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-26T22:13:00.000Z" + }, + "end": { + "$date": "2021-01-26T23:18:33.000Z" + }, + "events": [ + { + "uuid": "ecac0bfa-b8eb-4da5-b7e4-8fafe74e4405", + "start": { + "$date": "2021-01-26T22:13:00.000Z" + }, + "end": { + "$date": "2021-01-26T23:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "50978c67-a2f5-4962-b11d-dc1677908027", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-26T23:21:19.000Z" + }, + "end": { + "$date": "2021-01-27T00:51:58.000Z" + }, + "events": [ + { + "uuid": "c745b0ad-6bb2-4e16-aa41-4c0b7037fd06", + "start": { + "$date": "2021-01-26T23:21:19.000Z" + }, + "end": { + "$date": "2021-01-27T00:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e7d17fad-175f-43a3-b9f3-5cd384d868cb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-26T23:54:17.000Z" + }, + "end": { + "$date": "2021-01-27T04:59:44.000Z" + }, + "events": [ + { + "uuid": "a2021f79-0315-4093-9ee0-9e7078b76116", + "start": { + "$date": "2021-01-26T23:54:17.000Z" + }, + "end": { + "$date": "2021-01-27T01:16:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "10e170f3-e77f-4995-87f5-e95cc9061589", + "start": { + "$date": "2021-01-27T01:16:17.000Z" + }, + "end": { + "$date": "2021-01-27T01:34:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "694db52c-9fe3-4d54-bd4c-62231ffd2f01", + "start": { + "$date": "2021-01-27T01:34:17.000Z" + }, + "end": { + "$date": "2021-01-27T02:30:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8198adb-4708-4620-87cd-609173619780", + "start": { + "$date": "2021-01-27T02:30:17.000Z" + }, + "end": { + "$date": "2021-01-27T02:41:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8dc40acc-f623-4099-9b4a-102330e9137a", + "start": { + "$date": "2021-01-27T02:41:17.000Z" + }, + "end": { + "$date": "2021-01-27T04:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa666d68-67c0-4fe0-b897-a1122f16cbac", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-27T00:17:31.000Z" + }, + "end": { + "$date": "2021-01-27T00:47:00.000Z" + }, + "events": [ + { + "uuid": "2e046307-0bc5-471c-af35-b72b99bb2e39", + "start": { + "$date": "2021-01-27T00:17:31.000Z" + }, + "end": { + "$date": "2021-01-27T00:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e57989d4-bb4e-4d81-8f05-7c747fc25b12", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-27T01:18:26.000Z" + }, + "end": { + "$date": "2021-01-27T05:34:38.000Z" + }, + "events": [ + { + "uuid": "af5fd2b8-2eb0-42a0-ab34-83d1500600ae", + "start": { + "$date": "2021-01-27T01:18:26.000Z" + }, + "end": { + "$date": "2021-01-27T05:34:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "232349fb-a057-4bc2-91ea-bc67c2171051", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-27T02:33:31.000Z" + }, + "end": { + "$date": "2021-01-27T03:40:35.000Z" + }, + "events": [ + { + "uuid": "cdb1dcd4-afdb-48ad-a588-9a1096ab4544", + "start": { + "$date": "2021-01-27T02:33:31.000Z" + }, + "end": { + "$date": "2021-01-27T03:19:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b35e5bc8-ecb4-408a-a94d-dd123006fe6f", + "start": { + "$date": "2021-01-27T03:19:31.000Z" + }, + "end": { + "$date": "2021-01-27T03:24:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2ac378fd-b051-4bdd-93fd-8e85f47e5012", + "start": { + "$date": "2021-01-27T03:24:31.000Z" + }, + "end": { + "$date": "2021-01-27T03:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cf72b736-259b-4622-b2b9-9d1b4cf77236", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-27T02:53:46.000Z" + }, + "end": { + "$date": "2021-01-27T02:58:48.000Z" + }, + "events": [ + { + "uuid": "cad76071-1fab-4cf9-89a1-a04a455a1fd7", + "start": { + "$date": "2021-01-27T02:53:46.000Z" + }, + "end": { + "$date": "2021-01-27T02:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cfe340f1-23e3-47cb-a2e4-795a73b3ecea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-27T03:00:18.000Z" + }, + "end": { + "$date": "2021-01-27T03:08:19.000Z" + }, + "events": [ + { + "uuid": "6740df52-6d96-4614-8a5b-62a4a5fb2868", + "start": { + "$date": "2021-01-27T03:00:18.000Z" + }, + "end": { + "$date": "2021-01-27T03:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "27797379-9cc6-45ff-b78d-4fc1bff0ceb0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-27T03:16:44.000Z" + }, + "end": { + "$date": "2021-01-27T03:39:05.000Z" + }, + "events": [ + { + "uuid": "69f5971f-3b91-4d4c-8847-83480d5b3b8c", + "start": { + "$date": "2021-01-27T03:16:44.000Z" + }, + "end": { + "$date": "2021-01-27T03:39:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9dc91ef3-015a-40d9-a319-85494dcd4495", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-27T03:27:30.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:17.000Z" + }, + "events": [ + { + "uuid": "23efd5a8-6c5f-44bc-a604-312f6725a21e", + "start": { + "$date": "2021-01-27T03:27:30.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1df6d26b-9a21-4b2b-8e27-aec8a8aed1d0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-27T03:36:32.000Z" + }, + "end": { + "$date": "2021-01-27T04:00:38.000Z" + }, + "events": [ + { + "uuid": "c7da0bde-96b1-4713-9326-e4f40ad864f8", + "start": { + "$date": "2021-01-27T03:36:32.000Z" + }, + "end": { + "$date": "2021-01-27T04:00:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "688fa8e2-1f49-4ff1-8e7d-a4d34bab62bd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-27T03:36:29.000Z" + }, + "end": { + "$date": "2021-01-27T04:00:41.000Z" + }, + "events": [ + { + "uuid": "abdd12a8-ab85-4d3a-bf39-a9df795f2e25", + "start": { + "$date": "2021-01-27T03:36:29.000Z" + }, + "end": { + "$date": "2021-01-27T04:00:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da28d416-0942-4343-a3f3-509202e6cdc7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-27T04:03:18.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:26.000Z" + }, + "events": [ + { + "uuid": "8c6bf233-8283-463a-b346-0e1c682cad2d", + "start": { + "$date": "2021-01-27T04:03:18.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3cafbec3-8374-4302-a01e-914141165d86", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-27T03:39:10.000Z" + }, + "end": { + "$date": "2021-01-27T04:19:24.000Z" + }, + "events": [ + { + "uuid": "75518788-af11-4a64-9ff8-750ca98ef2a2", + "start": { + "$date": "2021-01-27T03:39:10.000Z" + }, + "end": { + "$date": "2021-01-27T04:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "ca7a923c-5d3d-4423-bdb4-e02d7e02b794", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-27T03:41:00.000Z" + }, + "end": { + "$date": "2021-01-27T03:42:30.000Z" + }, + "events": [ + { + "uuid": "393d0ed2-825b-4743-939f-665d979a45b4", + "start": { + "$date": "2021-01-27T03:41:00.000Z" + }, + "end": { + "$date": "2021-01-27T03:42:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e75afed7-793d-4e71-b144-62cb9e4fc659", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-27T03:42:36.000Z" + }, + "end": { + "$date": "2021-01-27T04:59:59.000Z" + }, + "events": [ + { + "uuid": "b6ac5a97-970d-4d05-a93b-65aa3ca2d89e", + "start": { + "$date": "2021-01-27T03:42:36.000Z" + }, + "end": { + "$date": "2021-01-27T04:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0bd6574b-12aa-49ff-8d35-11799598e4d1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-27T03:59:06.000Z" + }, + "end": { + "$date": "2021-01-27T05:13:38.000Z" + }, + "events": [ + { + "uuid": "0a2dd026-ec7d-4bcb-b3ba-b319974904d2", + "start": { + "$date": "2021-01-27T03:59:06.000Z" + }, + "end": { + "$date": "2021-01-27T05:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b581d8ba-b01f-4b03-962c-9ddfdedba642", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-27T04:03:12.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:23.000Z" + }, + "events": [ + { + "uuid": "3b0658fa-fca4-438f-942e-ceb2a6c638eb", + "start": { + "$date": "2021-01-27T04:03:12.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "817558ec-fa02-4f8b-842c-c40a5d17a1e6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-27T04:04:35.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:22.000Z" + }, + "events": [ + { + "uuid": "cdd8ebcb-be3f-43ad-be3f-45e54f851279", + "start": { + "$date": "2021-01-27T04:04:35.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8f497f52-c42c-4775-942f-25b0888938ca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-27T04:03:20.000Z" + }, + "end": { + "$date": "2021-01-27T04:37:14.000Z" + }, + "events": [ + { + "uuid": "9dbd3d1f-f213-43ab-8dae-5b30224c8667", + "start": { + "$date": "2021-01-27T04:03:20.000Z" + }, + "end": { + "$date": "2021-01-27T04:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a625622c-f6db-4dc7-aa47-e8aeab82a147", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-27T04:16:17.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:52.000Z" + }, + "events": [ + { + "uuid": "cb917380-5df2-46cb-8417-659e30dd719f", + "start": { + "$date": "2021-01-27T04:16:17.000Z" + }, + "end": { + "$date": "2021-01-27T04:20:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "42930184-fac9-4ac3-9ef2-cf01e7b78dcb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-27T04:20:14.000Z" + }, + "end": { + "$date": "2021-01-27T08:02:06.000Z" + }, + "events": [ + { + "uuid": "acdd2a0b-4867-474f-b379-9a5c1ae16898", + "start": { + "$date": "2021-01-27T04:20:14.000Z" + }, + "end": { + "$date": "2021-01-27T08:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ed15298-15e9-49d3-bcce-00bfb28545e7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-27T04:25:13.000Z" + }, + "end": { + "$date": "2021-01-27T04:41:59.000Z" + }, + "events": [ + { + "uuid": "9d2adb86-5fd1-4c3e-ae40-d15be2e0fd67", + "start": { + "$date": "2021-01-27T04:25:13.000Z" + }, + "end": { + "$date": "2021-01-27T04:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83ae2a66-2124-4d90-a26f-bacd985b7d3d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-27T04:23:57.000Z" + }, + "end": { + "$date": "2021-01-27T04:41:57.000Z" + }, + "events": [ + { + "uuid": "b9109009-7d12-4762-b11f-8fa0c2b806b6", + "start": { + "$date": "2021-01-27T04:23:57.000Z" + }, + "end": { + "$date": "2021-01-27T04:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c60fb722-141f-42aa-81ee-2a26d50c7947", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-27T04:23:14.000Z" + }, + "end": { + "$date": "2021-01-27T04:42:05.000Z" + }, + "events": [ + { + "uuid": "0a360884-fb7a-4310-8e4f-f9dcd744cca0", + "start": { + "$date": "2021-01-27T04:23:14.000Z" + }, + "end": { + "$date": "2021-01-27T04:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a67132bb-4216-42b0-8d10-b592b7439650", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-27T04:25:14.000Z" + }, + "end": { + "$date": "2021-01-27T08:02:10.000Z" + }, + "events": [ + { + "uuid": "fd79e4b9-03f6-4a31-9caf-ebec8706ba0a", + "start": { + "$date": "2021-01-27T04:25:14.000Z" + }, + "end": { + "$date": "2021-01-27T08:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1675e037-a861-4f4b-968f-b7f07339f268", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-27T04:49:14.000Z" + }, + "end": { + "$date": "2021-01-27T05:07:25.000Z" + }, + "events": [ + { + "uuid": "48251d5d-357a-403d-a98b-e46da3bc7269", + "start": { + "$date": "2021-01-27T04:49:14.000Z" + }, + "end": { + "$date": "2021-01-27T05:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c16b68cf-d0dc-496b-a0f8-13aa5bcf5530", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-27T04:48:50.000Z" + }, + "end": { + "$date": "2021-01-27T05:07:27.000Z" + }, + "events": [ + { + "uuid": "6e1f71fd-d8ca-4326-8ae4-7dec4161d2c4", + "start": { + "$date": "2021-01-27T04:48:50.000Z" + }, + "end": { + "$date": "2021-01-27T05:07:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a32dbd7c-2403-488e-b44d-9e16f1ce5d32", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-27T04:46:35.000Z" + }, + "end": { + "$date": "2021-01-27T05:07:27.000Z" + }, + "events": [ + { + "uuid": "af870130-2342-40ea-8877-5cda1eb6c11d", + "start": { + "$date": "2021-01-27T04:46:35.000Z" + }, + "end": { + "$date": "2021-01-27T05:07:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "6e3281a5-b250-4220-9c3a-0b2e4abd23ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-27T05:02:49.000Z" + }, + "end": { + "$date": "2021-01-27T06:44:21.000Z" + }, + "events": [ + { + "uuid": "e32c2dc5-612d-48f7-b90d-a2d40f50ab4b", + "start": { + "$date": "2021-01-27T05:02:49.000Z" + }, + "end": { + "$date": "2021-01-27T06:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb406a79-3d87-46fd-81bb-be647529480b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-27T05:10:32.000Z" + }, + "end": { + "$date": "2021-01-27T05:27:43.000Z" + }, + "events": [ + { + "uuid": "4b975886-c027-43be-a06c-0f6b4b39ede1", + "start": { + "$date": "2021-01-27T05:10:32.000Z" + }, + "end": { + "$date": "2021-01-27T05:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1a2ab7b-9641-4e98-b5c0-10c8388bba26", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-27T05:11:06.000Z" + }, + "end": { + "$date": "2021-01-27T05:27:38.000Z" + }, + "events": [ + { + "uuid": "68824ab5-50f5-4119-8d5f-0f5e87c72267", + "start": { + "$date": "2021-01-27T05:11:06.000Z" + }, + "end": { + "$date": "2021-01-27T05:27:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0785aafd-9f83-45b7-ba58-c24d629991c2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-27T05:11:54.000Z" + }, + "end": { + "$date": "2021-01-27T08:02:04.000Z" + }, + "events": [ + { + "uuid": "0980414a-03d2-4127-bdf0-6c99c3c83b36", + "start": { + "$date": "2021-01-27T05:11:54.000Z" + }, + "end": { + "$date": "2021-01-27T06:37:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13f1e9c1-7159-48dc-9eed-6aff3a1685bb", + "start": { + "$date": "2021-01-27T06:37:54.000Z" + }, + "end": { + "$date": "2021-01-27T06:38:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef6f490c-1533-4768-a136-d31e6188c432", + "start": { + "$date": "2021-01-27T06:38:54.000Z" + }, + "end": { + "$date": "2021-01-27T08:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f2180ec2-e04b-4cb1-b294-6356e64780d3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-27T05:22:55.000Z" + }, + "end": { + "$date": "2021-01-27T05:43:50.000Z" + }, + "events": [ + { + "uuid": "089e215c-ff3a-4563-b9f7-305fc5bdaf8e", + "start": { + "$date": "2021-01-27T05:22:55.000Z" + }, + "end": { + "$date": "2021-01-27T05:43:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c247fb9b-3637-4fa0-ac5d-8682b78ae20d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-27T05:26:56.000Z" + }, + "end": { + "$date": "2021-01-27T06:41:37.000Z" + }, + "events": [ + { + "uuid": "c64411de-a02a-46cc-9c6c-5c84f854d96f", + "start": { + "$date": "2021-01-27T05:26:56.000Z" + }, + "end": { + "$date": "2021-01-27T06:41:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c178c463-1486-4ce4-9108-a6fb73806beb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-27T05:31:08.000Z" + }, + "end": { + "$date": "2021-01-27T05:51:02.000Z" + }, + "events": [ + { + "uuid": "58d7819c-d042-4a19-bdaf-e75cd3c380aa", + "start": { + "$date": "2021-01-27T05:31:08.000Z" + }, + "end": { + "$date": "2021-01-27T05:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1be29113-8f4d-4f0d-bb3d-5ef3964d487c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-27T05:32:17.000Z" + }, + "end": { + "$date": "2021-01-27T05:50:54.000Z" + }, + "events": [ + { + "uuid": "4d711320-5b3c-455e-880a-78120625b876", + "start": { + "$date": "2021-01-27T05:32:17.000Z" + }, + "end": { + "$date": "2021-01-27T05:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d01217cf-63e1-4abd-a92b-506692055df1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-27T05:46:36.000Z" + }, + "end": { + "$date": "2021-01-27T06:48:39.000Z" + }, + "events": [ + { + "uuid": "764353ea-ade4-4458-9e8c-4168bbba11f9", + "start": { + "$date": "2021-01-27T05:46:36.000Z" + }, + "end": { + "$date": "2021-01-27T06:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "763c853c-b72f-4e26-af6f-feb57c04bfd1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-27T06:05:53.000Z" + }, + "end": { + "$date": "2021-01-27T06:30:19.000Z" + }, + "events": [ + { + "uuid": "7acce700-fdb8-48ca-b6e2-fba36add9f47", + "start": { + "$date": "2021-01-27T06:05:53.000Z" + }, + "end": { + "$date": "2021-01-27T06:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dabc215d-db46-4fbf-8ac3-401cc0923158", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-27T06:34:54.000Z" + }, + "end": { + "$date": "2021-01-27T07:07:45.000Z" + }, + "events": [ + { + "uuid": "830fabca-18ef-4216-ab57-2943e05b7d66", + "start": { + "$date": "2021-01-27T06:34:54.000Z" + }, + "end": { + "$date": "2021-01-27T07:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "72e3f09a-cd3e-4461-b908-3e23273afe22", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-27T06:44:32.000Z" + }, + "end": { + "$date": "2021-01-27T07:00:17.000Z" + }, + "events": [ + { + "uuid": "a8f60f37-4795-4a23-b686-ad7a45610a54", + "start": { + "$date": "2021-01-27T06:44:32.000Z" + }, + "end": { + "$date": "2021-01-27T07:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "04646c33-6e07-4635-9286-3726e18e7c55", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-27T08:07:16.000Z" + }, + "end": { + "$date": "2021-01-27T08:22:38.000Z" + }, + "events": [ + { + "uuid": "3723927f-120e-47e3-b4dd-6f7cfa41066d", + "start": { + "$date": "2021-01-27T08:07:16.000Z" + }, + "end": { + "$date": "2021-01-27T08:22:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ebfa17ef-ee0b-4a12-8094-169f8167b248", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-27T08:10:56.000Z" + }, + "end": { + "$date": "2021-01-27T08:20:48.000Z" + }, + "events": [ + { + "uuid": "839afadf-aa8c-4c52-b1f4-3df14fde12d9", + "start": { + "$date": "2021-01-27T08:10:56.000Z" + }, + "end": { + "$date": "2021-01-27T08:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "82979be3-9986-480c-b9f8-b6a1312898cc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-27T15:11:40.000Z" + }, + "end": { + "$date": "2021-01-27T16:55:36.000Z" + }, + "events": [ + { + "uuid": "17bbf819-822c-4c42-8986-956f0c80a3a4", + "start": { + "$date": "2021-01-27T15:11:40.000Z" + }, + "end": { + "$date": "2021-01-27T16:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "95e646ca-3c88-470b-8315-1044e18f645a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-27T19:01:18.000Z" + }, + "end": { + "$date": "2021-01-27T19:22:24.000Z" + }, + "events": [ + { + "uuid": "a0839924-68e2-4d77-9256-d6493c18dac5", + "start": { + "$date": "2021-01-27T19:01:18.000Z" + }, + "end": { + "$date": "2021-01-27T19:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bdc34ffc-14bc-4265-9270-f757575a61a8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-27T20:26:56.000Z" + }, + "end": { + "$date": "2021-01-27T21:22:34.000Z" + }, + "events": [ + { + "uuid": "b5efe753-e1d4-4e49-be7f-c56f94f8f6b8", + "start": { + "$date": "2021-01-27T20:26:56.000Z" + }, + "end": { + "$date": "2021-01-27T21:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5a212dcd-10e2-4c14-ba20-3e2d68058f96", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-27T20:30:06.000Z" + }, + "end": { + "$date": "2021-01-27T21:06:38.000Z" + }, + "events": [ + { + "uuid": "e78bce74-ee1f-4e2d-a4e7-488287eb9e2e", + "start": { + "$date": "2021-01-27T20:30:06.000Z" + }, + "end": { + "$date": "2021-01-27T21:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1a02a425-f980-4b64-bac8-6800fe475ceb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-27T22:12:05.000Z" + }, + "end": { + "$date": "2021-01-28T01:29:02.000Z" + }, + "events": [ + { + "uuid": "59dc96eb-8462-4f22-a28e-f288c6f984b9", + "start": { + "$date": "2021-01-27T22:12:05.000Z" + }, + "end": { + "$date": "2021-01-28T01:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cbea5a57-8d15-429d-9eb0-7d10c66739e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-27T22:33:42.000Z" + }, + "end": { + "$date": "2021-01-28T01:34:34.000Z" + }, + "events": [ + { + "uuid": "8b7b7d9c-6811-481a-a8d7-1c141917a6ce", + "start": { + "$date": "2021-01-27T22:33:42.000Z" + }, + "end": { + "$date": "2021-01-28T01:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "aeaf04ac-69a1-426a-beb6-433fb0cda9b6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T00:25:50.000Z" + }, + "end": { + "$date": "2021-01-28T00:27:53.000Z" + }, + "events": [ + { + "uuid": "8982176a-c33e-4799-885d-dca07db06080", + "start": { + "$date": "2021-01-28T00:25:50.000Z" + }, + "end": { + "$date": "2021-01-28T00:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "fcc1b352-ae5b-4f3b-bc87-ecd3d7d602e0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T00:28:37.000Z" + }, + "end": { + "$date": "2021-01-28T00:39:21.000Z" + }, + "events": [ + { + "uuid": "15f8e36d-40dd-4fbd-804d-fa99d0c1f5eb", + "start": { + "$date": "2021-01-28T00:28:37.000Z" + }, + "end": { + "$date": "2021-01-28T00:39:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "53df79cf-7cb0-462b-b4cd-8cbc643d3b73", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T00:48:55.000Z" + }, + "end": { + "$date": "2021-01-28T00:54:37.000Z" + }, + "events": [ + { + "uuid": "e26233bf-53c6-4ecd-907c-d8cbc38a9509", + "start": { + "$date": "2021-01-28T00:48:55.000Z" + }, + "end": { + "$date": "2021-01-28T00:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4abde69-d517-47c5-8477-b9b763c76932", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T01:33:21.000Z" + }, + "end": { + "$date": "2021-01-28T01:48:26.000Z" + }, + "events": [ + { + "uuid": "4b950f7c-4e1b-492e-9a94-94b416f188c4", + "start": { + "$date": "2021-01-28T01:33:21.000Z" + }, + "end": { + "$date": "2021-01-28T01:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "8d65c642-c308-4dda-a4ec-6250c6ec6de9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T01:42:11.000Z" + }, + "end": { + "$date": "2021-01-28T01:43:43.000Z" + }, + "events": [ + { + "uuid": "cee5cc11-44e3-4a21-bc61-7884cbd5f68c", + "start": { + "$date": "2021-01-28T01:42:11.000Z" + }, + "end": { + "$date": "2021-01-28T01:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "8432a713-a303-496f-89f0-6a1ce7b6f307", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T01:44:06.000Z" + }, + "end": { + "$date": "2021-01-28T01:50:09.000Z" + }, + "events": [ + { + "uuid": "244f4ee1-7edf-4809-a50f-30a8939a2bd3", + "start": { + "$date": "2021-01-28T01:44:06.000Z" + }, + "end": { + "$date": "2021-01-28T01:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ed6b8013-2771-411b-b36c-cbd5000c8b5b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-28T01:45:59.000Z" + }, + "end": { + "$date": "2021-01-28T03:02:00.000Z" + }, + "events": [ + { + "uuid": "47c128d7-a25b-4c5d-9c3e-4cbbc6170a93", + "start": { + "$date": "2021-01-28T01:45:59.000Z" + }, + "end": { + "$date": "2021-01-28T02:08:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c3b6720-b0ec-4c62-9acf-cfdfa17d0eeb", + "start": { + "$date": "2021-01-28T02:08:59.000Z" + }, + "end": { + "$date": "2021-01-28T02:39:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "811527cf-633f-498f-98c2-f82bb6f654a7", + "start": { + "$date": "2021-01-28T02:39:59.000Z" + }, + "end": { + "$date": "2021-01-28T03:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e071d200-bd12-4c5a-801f-2edf9b72c7eb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T02:00:31.000Z" + }, + "end": { + "$date": "2021-01-28T02:31:25.000Z" + }, + "events": [ + { + "uuid": "e5fd97cf-2714-4b62-ac02-deeab27b35fa", + "start": { + "$date": "2021-01-28T02:00:31.000Z" + }, + "end": { + "$date": "2021-01-28T02:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "f6428721-6bda-47dc-a58f-6fb2feac3c46", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T01:51:38.000Z" + }, + "end": { + "$date": "2021-01-28T01:57:25.000Z" + }, + "events": [ + { + "uuid": "161996c9-41c0-4043-b68b-59dbebc26257", + "start": { + "$date": "2021-01-28T01:51:38.000Z" + }, + "end": { + "$date": "2021-01-28T01:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "0f334f9b-3035-44dd-9af6-249633de90c0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T01:59:24.000Z" + }, + "end": { + "$date": "2021-01-28T02:06:22.000Z" + }, + "events": [ + { + "uuid": "c1ec007c-1f2e-4dbd-abc1-c97c18b96faa", + "start": { + "$date": "2021-01-28T01:59:24.000Z" + }, + "end": { + "$date": "2021-01-28T02:06:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad946e42-6e82-4e1a-9d9b-64bc0a871956", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T02:06:09.000Z" + }, + "end": { + "$date": "2021-01-28T05:02:43.000Z" + }, + "events": [ + { + "uuid": "fed9b9ab-4de1-4758-80c2-8aa7ba4f2b8d", + "start": { + "$date": "2021-01-28T02:06:09.000Z" + }, + "end": { + "$date": "2021-01-28T05:02:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f214a344-4ef9-40d3-a4ab-6c3798122aeb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T03:09:51.000Z" + }, + "end": { + "$date": "2021-01-28T03:41:41.000Z" + }, + "events": [ + { + "uuid": "43eff447-a320-494b-8d2b-a38191d9a1d2", + "start": { + "$date": "2021-01-28T03:09:51.000Z" + }, + "end": { + "$date": "2021-01-28T03:41:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6409ea34-1d5d-44a4-abf2-c0eeda2e1df8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-28T02:41:15.000Z" + }, + "end": { + "$date": "2021-01-28T03:56:58.000Z" + }, + "events": [ + { + "uuid": "e7c871cc-ca0b-42ea-ae1f-e34be6f84064", + "start": { + "$date": "2021-01-28T02:41:15.000Z" + }, + "end": { + "$date": "2021-01-28T03:28:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "53155ee7-4e3e-4a9f-ac9e-f7027acd96fe", + "start": { + "$date": "2021-01-28T03:28:15.000Z" + }, + "end": { + "$date": "2021-01-28T03:29:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "039169e9-5b9d-4f79-b1ad-2d1ae075339d", + "start": { + "$date": "2021-01-28T03:29:15.000Z" + }, + "end": { + "$date": "2021-01-28T03:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0ec09fa-44c9-4d80-ade1-9b843e89a16c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T03:10:21.000Z" + }, + "end": { + "$date": "2021-01-28T03:41:40.000Z" + }, + "events": [ + { + "uuid": "e6e49754-b5e8-4e72-a87d-b27fa0b2394d", + "start": { + "$date": "2021-01-28T03:10:21.000Z" + }, + "end": { + "$date": "2021-01-28T03:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b6d7b633-c8d0-4bdc-b512-9f0f03280194", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-28T03:11:23.000Z" + }, + "end": { + "$date": "2021-01-28T05:12:43.000Z" + }, + "events": [ + { + "uuid": "63cf0a0d-07dd-45df-800e-cdf5a7f8dfad", + "start": { + "$date": "2021-01-28T03:11:23.000Z" + }, + "end": { + "$date": "2021-01-28T05:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "81c32ba9-a111-4d97-9d0a-376b34d0a3c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-28T03:14:39.000Z" + }, + "end": { + "$date": "2021-01-28T03:43:26.000Z" + }, + "events": [ + { + "uuid": "2a043dc7-10ac-46ee-8cc1-c1b3781fe2c6", + "start": { + "$date": "2021-01-28T03:14:39.000Z" + }, + "end": { + "$date": "2021-01-28T03:43:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "911cce0d-65a1-4e4e-8d0f-bf7ddfc942af", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-28T03:18:19.000Z" + }, + "end": { + "$date": "2021-01-28T03:26:53.000Z" + }, + "events": [ + { + "uuid": "dbc22a23-3a1e-44b4-9026-92b80d92f9ec", + "start": { + "$date": "2021-01-28T03:18:19.000Z" + }, + "end": { + "$date": "2021-01-28T03:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "695ad12c-e375-4280-8d0f-a9b5c1ae16c1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-28T03:25:00.000Z" + }, + "end": { + "$date": "2021-01-28T03:44:28.000Z" + }, + "events": [ + { + "uuid": "31aba40e-3458-49f5-8d86-95af70ad833f", + "start": { + "$date": "2021-01-28T03:25:00.000Z" + }, + "end": { + "$date": "2021-01-28T03:44:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df1a6e99-5785-4b14-a9b3-337f81424d73", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T05:49:26.000Z" + }, + "end": { + "$date": "2021-01-28T06:00:27.000Z" + }, + "events": [ + { + "uuid": "ab69154c-01d8-461a-80f5-97b34a831462", + "start": { + "$date": "2021-01-28T05:49:26.000Z" + }, + "end": { + "$date": "2021-01-28T06:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a46d81c4-06d3-4698-949e-4b35381a015a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T03:48:02.000Z" + }, + "end": { + "$date": "2021-01-28T04:08:43.000Z" + }, + "events": [ + { + "uuid": "828d5a23-03dd-4122-99dc-6d37121eb261", + "start": { + "$date": "2021-01-28T03:48:02.000Z" + }, + "end": { + "$date": "2021-01-28T04:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "77edc1d6-573e-4187-80c2-77ce735d073e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-28T03:47:43.000Z" + }, + "end": { + "$date": "2021-01-28T07:29:06.000Z" + }, + "events": [ + { + "uuid": "d6af25bc-b91a-41a5-a8f5-ca9149a107a4", + "start": { + "$date": "2021-01-28T03:47:43.000Z" + }, + "end": { + "$date": "2021-01-28T07:29:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ce59721-6789-4b5e-ba3f-08043dba6bf5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-28T03:48:14.000Z" + }, + "end": { + "$date": "2021-01-28T05:58:38.000Z" + }, + "events": [ + { + "uuid": "29a253ef-4619-4d1a-a7e3-0e9991966d96", + "start": { + "$date": "2021-01-28T03:48:14.000Z" + }, + "end": { + "$date": "2021-01-28T05:58:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0f292d7b-8b6b-417a-93ac-9657c40ebd07", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T03:50:00.000Z" + }, + "end": { + "$date": "2021-01-28T04:05:55.000Z" + }, + "events": [ + { + "uuid": "aeadbe7a-5854-4145-9423-cb6fd349a4ac", + "start": { + "$date": "2021-01-28T03:50:00.000Z" + }, + "end": { + "$date": "2021-01-28T04:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fced46ff-ec03-4088-aa97-f5e9cab4c7d1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T04:10:51.000Z" + }, + "end": { + "$date": "2021-01-28T04:12:26.000Z" + }, + "events": [ + { + "uuid": "7f1f00de-b459-4774-95ee-748d00ad62f2", + "start": { + "$date": "2021-01-28T04:10:51.000Z" + }, + "end": { + "$date": "2021-01-28T04:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c42d48af-b717-497b-8e91-f1b377b9e1ef", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T04:10:51.000Z" + }, + "end": { + "$date": "2021-01-28T04:12:26.000Z" + }, + "events": [ + { + "uuid": "068a5bea-b81a-4620-8605-1fcf47e52e2f", + "start": { + "$date": "2021-01-28T04:10:51.000Z" + }, + "end": { + "$date": "2021-01-28T04:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e0dcd1a-f375-4a28-9ea8-3e643fa30382", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T04:15:21.000Z" + }, + "end": { + "$date": "2021-01-28T04:45:38.000Z" + }, + "events": [ + { + "uuid": "3fb5b0f5-3650-4f38-9ceb-090404d25954", + "start": { + "$date": "2021-01-28T04:15:21.000Z" + }, + "end": { + "$date": "2021-01-28T04:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f920a274-5291-46f4-a2ec-0b9f8414abf8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T04:15:08.000Z" + }, + "end": { + "$date": "2021-01-28T04:45:29.000Z" + }, + "events": [ + { + "uuid": "da220958-64c7-40ff-8ac4-589e605c4a9c", + "start": { + "$date": "2021-01-28T04:15:08.000Z" + }, + "end": { + "$date": "2021-01-28T04:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "021e88f7-1b64-4914-868d-a386c68e9515", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-28T04:27:26.000Z" + }, + "end": { + "$date": "2021-01-28T05:12:22.000Z" + }, + "events": [ + { + "uuid": "22f9e042-f79c-44ff-8440-199e6cb67991", + "start": { + "$date": "2021-01-28T04:27:26.000Z" + }, + "end": { + "$date": "2021-01-28T05:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1ede88b-b9f4-4bc9-b49e-00b75b225969", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-28T04:33:50.000Z" + }, + "end": { + "$date": "2021-01-28T06:07:18.000Z" + }, + "events": [ + { + "uuid": "4edae10a-7c9f-4b84-a824-1b3fd1fd2f8b", + "start": { + "$date": "2021-01-28T04:33:50.000Z" + }, + "end": { + "$date": "2021-01-28T06:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bcc007b-cc95-4c6f-b2a8-534347959942", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T04:48:23.000Z" + }, + "end": { + "$date": "2021-01-28T05:14:40.000Z" + }, + "events": [ + { + "uuid": "fa68e433-c504-4c27-9dfa-ba386f792121", + "start": { + "$date": "2021-01-28T04:48:23.000Z" + }, + "end": { + "$date": "2021-01-28T05:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7232337d-a0c4-42ab-a70a-9f4b68c51df8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T04:48:24.000Z" + }, + "end": { + "$date": "2021-01-28T05:14:40.000Z" + }, + "events": [ + { + "uuid": "48fc1a1a-3ad5-45d2-a6e3-18ee3a273c2b", + "start": { + "$date": "2021-01-28T04:48:24.000Z" + }, + "end": { + "$date": "2021-01-28T05:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "233f2c1c-13cb-4740-be55-9c64fb132e5b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T05:18:25.000Z" + }, + "end": { + "$date": "2021-01-28T05:49:17.000Z" + }, + "events": [ + { + "uuid": "65627651-76e6-492a-8896-1130a81bed70", + "start": { + "$date": "2021-01-28T05:18:25.000Z" + }, + "end": { + "$date": "2021-01-28T05:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0aeb2bf2-64ab-474a-97f8-13dd02432aee", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T05:18:55.000Z" + }, + "end": { + "$date": "2021-01-28T05:49:21.000Z" + }, + "events": [ + { + "uuid": "e9a7044d-48de-4455-8631-565c28244ff2", + "start": { + "$date": "2021-01-28T05:18:55.000Z" + }, + "end": { + "$date": "2021-01-28T05:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c819ede8-6cf1-427a-8734-8f53ecf98eea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-28T05:20:00.000Z" + }, + "end": { + "$date": "2021-01-28T05:24:24.000Z" + }, + "events": [ + { + "uuid": "5fa4c3fa-8417-4b6f-8b8d-0c32dc8661fe", + "start": { + "$date": "2021-01-28T05:20:00.000Z" + }, + "end": { + "$date": "2021-01-28T05:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d17d0828-86a3-4ee5-ab69-0d1379a9fe07", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-28T05:28:06.000Z" + }, + "end": { + "$date": "2021-01-28T06:37:25.000Z" + }, + "events": [ + { + "uuid": "cd675947-7e54-4881-91ac-e360767629be", + "start": { + "$date": "2021-01-28T05:28:06.000Z" + }, + "end": { + "$date": "2021-01-28T06:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6e91d538-9464-470b-878e-04521047c5c3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-28T05:53:26.000Z" + }, + "end": { + "$date": "2021-01-28T07:28:06.000Z" + }, + "events": [ + { + "uuid": "cbadb7b7-3b9b-46da-afe2-cbde793c78e4", + "start": { + "$date": "2021-01-28T05:53:26.000Z" + }, + "end": { + "$date": "2021-01-28T05:55:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bb642e8-89e1-4a79-aeb9-e76e6d1501a8", + "start": { + "$date": "2021-01-28T05:55:26.000Z" + }, + "end": { + "$date": "2021-01-28T05:57:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d31254e7-dadd-484d-8be9-2f37965b5cb2", + "start": { + "$date": "2021-01-28T05:57:26.000Z" + }, + "end": { + "$date": "2021-01-28T05:59:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cf6be0d4-6ada-46c1-9def-0724c62bc922", + "start": { + "$date": "2021-01-28T05:59:26.000Z" + }, + "end": { + "$date": "2021-01-28T06:08:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "964db61a-a189-4be0-a876-8d448843d9d3", + "start": { + "$date": "2021-01-28T06:08:26.000Z" + }, + "end": { + "$date": "2021-01-28T06:10:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98a670bd-c289-461f-ae68-913fcb697fab", + "start": { + "$date": "2021-01-28T06:10:26.000Z" + }, + "end": { + "$date": "2021-01-28T06:12:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "25df5d04-e702-4cbf-b979-af631ae67ee6", + "start": { + "$date": "2021-01-28T06:12:26.000Z" + }, + "end": { + "$date": "2021-01-28T07:28:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "4ed761fc-5519-4e3a-bf93-0038cc8648fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T06:13:46.000Z" + }, + "end": { + "$date": "2021-01-28T06:15:51.000Z" + }, + "events": [ + { + "uuid": "eb58e206-e83d-41c8-8c7c-71970ae212af", + "start": { + "$date": "2021-01-28T06:13:46.000Z" + }, + "end": { + "$date": "2021-01-28T06:15:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31d27f77-147d-45e2-84cb-6e6827ee570c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-28T06:28:36.000Z" + }, + "end": { + "$date": "2021-01-28T07:09:45.000Z" + }, + "events": [ + { + "uuid": "2b2cb4eb-c089-416f-99ab-b2d05a3c0054", + "start": { + "$date": "2021-01-28T06:28:36.000Z" + }, + "end": { + "$date": "2021-01-28T07:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a15c113-15dd-4f55-92b2-a452dc2de229", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T06:31:18.000Z" + }, + "end": { + "$date": "2021-01-28T07:16:55.000Z" + }, + "events": [ + { + "uuid": "7d782d15-5860-4971-bc8c-b49895723572", + "start": { + "$date": "2021-01-28T06:31:18.000Z" + }, + "end": { + "$date": "2021-01-28T07:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1e3ae52-caa7-4805-b649-859e7503ac49", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T08:08:08.000Z" + }, + "end": { + "$date": "2021-01-28T08:12:53.000Z" + }, + "events": [ + { + "uuid": "25b28920-4a76-4429-918e-b1b4f2469c58", + "start": { + "$date": "2021-01-28T08:08:08.000Z" + }, + "end": { + "$date": "2021-01-28T08:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "61ee1b39-ad1c-4ca5-9ff9-b22d164bf168", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T15:53:14.000Z" + }, + "end": { + "$date": "2021-01-28T16:25:35.000Z" + }, + "events": [ + { + "uuid": "dcbb31ac-8734-4b13-b74e-f57c00207fa8", + "start": { + "$date": "2021-01-28T15:53:14.000Z" + }, + "end": { + "$date": "2021-01-28T16:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b840292b-1186-4c5f-a9f1-d78504589c28", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-28T16:52:59.000Z" + }, + "end": { + "$date": "2021-01-28T16:54:04.000Z" + }, + "events": [ + { + "uuid": "db6a8c58-b5f3-44bf-b0e5-ce8bb30941d4", + "start": { + "$date": "2021-01-28T16:52:59.000Z" + }, + "end": { + "$date": "2021-01-28T16:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d1f414d1-bb3c-4590-9e3b-d541d9d6d0ab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T17:15:01.000Z" + }, + "end": { + "$date": "2021-01-28T17:17:41.000Z" + }, + "events": [ + { + "uuid": "b8cc3722-8588-4478-8ae1-950ac7b23604", + "start": { + "$date": "2021-01-28T17:15:01.000Z" + }, + "end": { + "$date": "2021-01-28T17:17:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "ba1cec8f-38ca-4fef-a0a2-a2f5798a8f95", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T17:23:12.000Z" + }, + "end": { + "$date": "2021-01-28T17:42:43.000Z" + }, + "events": [ + { + "uuid": "0ffc3d60-4015-4c5b-ad54-5636dd843264", + "start": { + "$date": "2021-01-28T17:23:12.000Z" + }, + "end": { + "$date": "2021-01-28T17:42:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f70af2f2-674c-451b-afc7-a54b5016e890", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-28T17:41:36.000Z" + }, + "end": { + "$date": "2021-01-28T18:00:29.000Z" + }, + "events": [ + { + "uuid": "c55a465e-21eb-48f0-99bc-af49b7c7a639", + "start": { + "$date": "2021-01-28T17:41:36.000Z" + }, + "end": { + "$date": "2021-01-28T18:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "80d3dfad-970e-468e-9da8-bcf2dc944656", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T18:28:09.000Z" + }, + "end": { + "$date": "2021-01-28T18:38:01.000Z" + }, + "events": [ + { + "uuid": "0abd6ecb-3d6a-40f4-85ed-8d4140b444c7", + "start": { + "$date": "2021-01-28T18:28:09.000Z" + }, + "end": { + "$date": "2021-01-28T18:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "4dcd8c58-cc4d-4d3a-86f8-b8d38d949f6e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T19:15:11.000Z" + }, + "end": { + "$date": "2021-01-28T19:49:58.000Z" + }, + "events": [ + { + "uuid": "3ac7e4b3-0f17-4ecb-b210-d0705d865053", + "start": { + "$date": "2021-01-28T19:15:11.000Z" + }, + "end": { + "$date": "2021-01-28T19:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4e3ce5e6-06ff-4547-aaae-867706a33ade", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-28T19:43:05.000Z" + }, + "end": { + "$date": "2021-01-28T19:57:35.000Z" + }, + "events": [ + { + "uuid": "ff0cbb5c-2afa-4a92-bfd4-8f9afc4e902a", + "start": { + "$date": "2021-01-28T19:43:05.000Z" + }, + "end": { + "$date": "2021-01-28T19:57:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bfb6c54e-5b63-4feb-8ede-4cd6b5ffd11e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T19:53:34.000Z" + }, + "end": { + "$date": "2021-01-28T19:56:24.000Z" + }, + "events": [ + { + "uuid": "6f10d5fa-f43e-4beb-a8e1-010559b51737", + "start": { + "$date": "2021-01-28T19:53:34.000Z" + }, + "end": { + "$date": "2021-01-28T19:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "eadeb70b-5fa9-46bb-bfbb-39929d659e1d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-28T20:10:19.000Z" + }, + "end": { + "$date": "2021-01-29T03:01:50.000Z" + }, + "events": [ + { + "uuid": "fae0cd6c-a5d0-4c60-9ea7-42ab987e96e9", + "start": { + "$date": "2021-01-28T20:10:19.000Z" + }, + "end": { + "$date": "2021-01-28T22:12:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06989955-05ed-42f7-ad86-b04750375a69", + "start": { + "$date": "2021-01-28T22:12:19.000Z" + }, + "end": { + "$date": "2021-01-28T22:17:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f8624089-f2e1-4fd8-a6da-0caac71c65dc", + "start": { + "$date": "2021-01-28T22:17:19.000Z" + }, + "end": { + "$date": "2021-01-29T00:06:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "332af292-8876-4dea-b70e-385e7cb72dab", + "start": { + "$date": "2021-01-29T00:06:19.000Z" + }, + "end": { + "$date": "2021-01-29T00:09:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a79e6304-cc1e-42f8-869c-5686f27aa575", + "start": { + "$date": "2021-01-29T00:09:19.000Z" + }, + "end": { + "$date": "2021-01-29T00:13:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a877645-cf9b-4f51-9ae0-7196edff8c56", + "start": { + "$date": "2021-01-29T00:13:19.000Z" + }, + "end": { + "$date": "2021-01-29T00:17:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36242836-afbc-4cf6-9bd0-922f3c7ccf45", + "start": { + "$date": "2021-01-29T00:17:19.000Z" + }, + "end": { + "$date": "2021-01-29T02:14:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03dd4200-cf63-4039-9197-187f5095d32d", + "start": { + "$date": "2021-01-29T02:14:19.000Z" + }, + "end": { + "$date": "2021-01-29T02:23:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "77970bad-1666-43cc-8da8-98cdc740688b", + "start": { + "$date": "2021-01-29T02:23:19.000Z" + }, + "end": { + "$date": "2021-01-29T02:28:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36adca32-9ecd-4e94-a853-94d9059180fb", + "start": { + "$date": "2021-01-29T02:28:19.000Z" + }, + "end": { + "$date": "2021-01-29T02:30:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79f4c360-be71-48f4-842a-3f2ea7fd79a4", + "start": { + "$date": "2021-01-29T02:30:19.000Z" + }, + "end": { + "$date": "2021-01-29T03:01:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b4ee44eb-0f47-4fde-a951-7972e0268168", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-28T20:28:37.000Z" + }, + "end": { + "$date": "2021-01-28T21:02:40.000Z" + }, + "events": [ + { + "uuid": "9863b4f4-31c0-4068-98d0-220f7f406d95", + "start": { + "$date": "2021-01-28T20:28:37.000Z" + }, + "end": { + "$date": "2021-01-28T21:02:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e7f4ffa1-4455-4ba2-85ac-fb80dd6cefbd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-28T20:29:06.000Z" + }, + "end": { + "$date": "2021-01-28T21:38:08.000Z" + }, + "events": [ + { + "uuid": "da76ec56-cce5-45a0-83a4-c49daed55bdc", + "start": { + "$date": "2021-01-28T20:29:06.000Z" + }, + "end": { + "$date": "2021-01-28T21:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3434c887-51a4-46bd-a687-768b58ce632b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T21:15:25.000Z" + }, + "end": { + "$date": "2021-01-28T21:17:50.000Z" + }, + "events": [ + { + "uuid": "8eaac1de-a1b9-48ef-9334-f8fd5bcca906", + "start": { + "$date": "2021-01-28T21:15:25.000Z" + }, + "end": { + "$date": "2021-01-28T21:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f0cf2b37-cdec-4bf9-9ac8-698376e60451", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T21:19:40.000Z" + }, + "end": { + "$date": "2021-01-28T21:41:46.000Z" + }, + "events": [ + { + "uuid": "b1710fa9-270e-41d2-bafb-82b52ca512d8", + "start": { + "$date": "2021-01-28T21:19:40.000Z" + }, + "end": { + "$date": "2021-01-28T21:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2228eb23-f23c-4b76-940e-ecf884eaf7af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-28T21:27:11.000Z" + }, + "end": { + "$date": "2021-01-28T22:08:34.000Z" + }, + "events": [ + { + "uuid": "d9b7c8f2-8af8-422f-a8af-9698ba707ef6", + "start": { + "$date": "2021-01-28T21:27:11.000Z" + }, + "end": { + "$date": "2021-01-28T22:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2727ffaa-615b-430a-b99d-288969fe6daf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-28T21:41:10.000Z" + }, + "end": { + "$date": "2021-01-28T21:44:09.000Z" + }, + "events": [ + { + "uuid": "d00cbf1b-4f4e-418b-b501-9ded78ad7043", + "start": { + "$date": "2021-01-28T21:41:10.000Z" + }, + "end": { + "$date": "2021-01-28T21:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "97b67a90-32c6-4749-8966-5d06288c0ce2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-28T21:44:21.000Z" + }, + "end": { + "$date": "2021-01-28T22:08:49.000Z" + }, + "events": [ + { + "uuid": "34ddc058-ddea-4b87-b133-2a1ed71d7237", + "start": { + "$date": "2021-01-28T21:44:21.000Z" + }, + "end": { + "$date": "2021-01-28T22:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "07a9b805-96ac-4470-b8d7-8ae65f785a02", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T22:00:13.000Z" + }, + "end": { + "$date": "2021-01-28T22:00:18.000Z" + }, + "events": [ + { + "uuid": "25181f59-3e95-492f-8ad8-cd58e664cbcd", + "start": { + "$date": "2021-01-28T22:00:13.000Z" + }, + "end": { + "$date": "2021-01-28T22:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e20879c3-907b-48c6-baeb-b6321641f185", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-28T22:18:11.000Z" + }, + "end": { + "$date": "2021-01-29T01:24:48.000Z" + }, + "events": [ + { + "uuid": "d98c595e-d2a5-4c9b-a01a-2c7907772d51", + "start": { + "$date": "2021-01-28T22:18:11.000Z" + }, + "end": { + "$date": "2021-01-29T01:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "11c6492f-0a2c-47b5-8e7f-5b7dd3a51999", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-28T22:18:37.000Z" + }, + "end": { + "$date": "2021-01-28T22:21:58.000Z" + }, + "events": [ + { + "uuid": "743b5bd0-0487-442d-8176-310b0f3d34ed", + "start": { + "$date": "2021-01-28T22:18:37.000Z" + }, + "end": { + "$date": "2021-01-28T22:21:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1697844c-b065-417e-a8fa-44dd378b8821", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-28T22:23:18.000Z" + }, + "end": { + "$date": "2021-01-29T01:24:45.000Z" + }, + "events": [ + { + "uuid": "bbe1510c-0bce-44bb-89cb-c49fbf37c4df", + "start": { + "$date": "2021-01-28T22:23:18.000Z" + }, + "end": { + "$date": "2021-01-29T01:24:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "26dc6688-dddc-46e7-a42b-a8791bd22742", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T22:25:07.000Z" + }, + "end": { + "$date": "2021-01-28T22:56:55.000Z" + }, + "events": [ + { + "uuid": "b5fc1741-95e7-41b3-a8d1-0498bd119595", + "start": { + "$date": "2021-01-28T22:25:07.000Z" + }, + "end": { + "$date": "2021-01-28T22:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "16c0d53b-545b-4233-bf36-5b190e78fcdd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-28T22:37:51.000Z" + }, + "end": { + "$date": "2021-01-28T23:50:37.000Z" + }, + "events": [ + { + "uuid": "0e344adb-b489-4c36-94b8-5bf90e091195", + "start": { + "$date": "2021-01-28T22:37:51.000Z" + }, + "end": { + "$date": "2021-01-28T23:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2e3aaf88-99e6-46d3-af62-0fa3b0d4a4cb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-28T22:38:16.000Z" + }, + "end": { + "$date": "2021-01-28T23:51:45.000Z" + }, + "events": [ + { + "uuid": "f02b083e-1cf7-4a53-ac32-85ec5367e1de", + "start": { + "$date": "2021-01-28T22:38:16.000Z" + }, + "end": { + "$date": "2021-01-28T23:51:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb6ffe4c-5d0a-4e6a-86cb-8785bc043ff2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-28T22:57:05.000Z" + }, + "end": { + "$date": "2021-01-28T23:46:47.000Z" + }, + "events": [ + { + "uuid": "50f03997-a516-4d83-9b05-b07e1df7c65e", + "start": { + "$date": "2021-01-28T22:57:05.000Z" + }, + "end": { + "$date": "2021-01-28T23:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b7f911ca-ded9-4a96-a44a-f8549f629c51", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-28T23:03:23.000Z" + }, + "end": { + "$date": "2021-01-28T23:23:56.000Z" + }, + "events": [ + { + "uuid": "85702518-160d-4f57-bd7e-afe40cbb12e8", + "start": { + "$date": "2021-01-28T23:03:23.000Z" + }, + "end": { + "$date": "2021-01-28T23:23:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "01f9a5da-2ba6-47f5-97af-c51db4656cce", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-28T23:43:39.000Z" + }, + "end": { + "$date": "2021-01-29T00:20:10.000Z" + }, + "events": [ + { + "uuid": "4a07af0e-4c69-480b-b607-b1b982aba881", + "start": { + "$date": "2021-01-28T23:43:39.000Z" + }, + "end": { + "$date": "2021-01-29T00:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9c2bed25-84c1-487a-ba98-6e5be9353969", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-29T00:01:18.000Z" + }, + "end": { + "$date": "2021-01-29T00:02:17.000Z" + }, + "events": [ + { + "uuid": "6702c112-4608-4f09-b0f8-ea3201f12fdc", + "start": { + "$date": "2021-01-29T00:01:18.000Z" + }, + "end": { + "$date": "2021-01-29T00:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "66209f6f-27aa-4cc8-9a66-f3fd3e3a27e9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-29T00:03:28.000Z" + }, + "end": { + "$date": "2021-01-29T00:58:10.000Z" + }, + "events": [ + { + "uuid": "3bfd67a9-897f-4987-a62c-6bfb2a500fb1", + "start": { + "$date": "2021-01-29T00:03:28.000Z" + }, + "end": { + "$date": "2021-01-29T00:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "860ab468-e593-4ade-8960-8119c083f9ba", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-29T01:25:49.000Z" + }, + "end": { + "$date": "2021-01-29T02:04:31.000Z" + }, + "events": [ + { + "uuid": "d7a1f077-08b2-4bcc-ab08-8ab518d0a0a8", + "start": { + "$date": "2021-01-29T01:25:49.000Z" + }, + "end": { + "$date": "2021-01-29T02:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c430c285-ef02-4713-b5d6-edad802c0ad7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-29T01:57:51.000Z" + }, + "end": { + "$date": "2021-01-29T02:46:12.000Z" + }, + "events": [ + { + "uuid": "7cd9add4-c90b-4dab-82e5-70605a3adb2b", + "start": { + "$date": "2021-01-29T01:57:51.000Z" + }, + "end": { + "$date": "2021-01-29T02:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "29106740-0d83-4cf4-88ff-59477edba85b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-29T02:07:04.000Z" + }, + "end": { + "$date": "2021-01-29T02:44:28.000Z" + }, + "events": [ + { + "uuid": "bfe9f146-acc1-4368-a5e9-57bdf254c8fa", + "start": { + "$date": "2021-01-29T02:07:04.000Z" + }, + "end": { + "$date": "2021-01-29T02:44:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "686c9d5f-648b-4120-a73b-17ccee7b821d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T02:35:17.000Z" + }, + "end": { + "$date": "2021-01-29T02:38:59.000Z" + }, + "events": [ + { + "uuid": "e1e1460c-e644-4f7a-97b2-1ef61d8b1b6d", + "start": { + "$date": "2021-01-29T02:35:17.000Z" + }, + "end": { + "$date": "2021-01-29T02:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8ce59264-e490-460b-9fdc-f123371b9639", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T02:44:48.000Z" + }, + "end": { + "$date": "2021-01-29T02:57:29.000Z" + }, + "events": [ + { + "uuid": "2079bc38-9cb7-4399-9f8b-7276684b52c5", + "start": { + "$date": "2021-01-29T02:44:48.000Z" + }, + "end": { + "$date": "2021-01-29T02:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "438cec23-9512-4cc1-bb1f-6927eb93a22b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T02:59:50.000Z" + }, + "end": { + "$date": "2021-01-29T04:03:05.000Z" + }, + "events": [ + { + "uuid": "40a64663-767b-42cd-86e3-c17fdcccbedc", + "start": { + "$date": "2021-01-29T02:59:50.000Z" + }, + "end": { + "$date": "2021-01-29T04:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8adf0501-5fa7-41ef-8bb7-5edd8a59123f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T03:03:42.000Z" + }, + "end": { + "$date": "2021-01-29T03:05:57.000Z" + }, + "events": [ + { + "uuid": "0b1d03fa-769a-48bc-9a96-552c4ea5c39d", + "start": { + "$date": "2021-01-29T03:03:42.000Z" + }, + "end": { + "$date": "2021-01-29T03:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "02149a88-ae3a-4e17-81e6-24c723b4a521", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T04:23:36.000Z" + }, + "end": { + "$date": "2021-01-29T04:23:36.000Z" + }, + "events": [ + { + "uuid": "91dacdd2-d39e-4aa2-9e9e-94ca2cb1fc84", + "start": { + "$date": "2021-01-29T04:23:36.000Z" + }, + "end": { + "$date": "2021-01-29T04:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "176c8ea4-10b8-4c37-8a0d-9d200b1c6344", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-29T05:12:01.000Z" + }, + "end": { + "$date": "2021-01-29T05:36:16.000Z" + }, + "events": [ + { + "uuid": "3100a9a6-f57c-4ed6-8ea7-e1a925319674", + "start": { + "$date": "2021-01-29T05:12:01.000Z" + }, + "end": { + "$date": "2021-01-29T05:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "80d4ae7b-a4d5-4ed5-a360-96df418d08c1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-29T03:48:46.000Z" + }, + "end": { + "$date": "2021-01-29T04:22:12.000Z" + }, + "events": [ + { + "uuid": "113b22bf-bb9a-4621-9c78-be2780d4d67a", + "start": { + "$date": "2021-01-29T03:48:46.000Z" + }, + "end": { + "$date": "2021-01-29T04:22:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "df14dd54-e72f-4144-892e-986406d4cac3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T04:03:36.000Z" + }, + "end": { + "$date": "2021-01-29T04:37:02.000Z" + }, + "events": [ + { + "uuid": "4fc0c66b-71fc-47d4-b20a-fc5356399c34", + "start": { + "$date": "2021-01-29T04:03:36.000Z" + }, + "end": { + "$date": "2021-01-29T04:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "6c4bdee7-cba0-4beb-81db-755a81bfc071", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-29T04:19:53.000Z" + }, + "end": { + "$date": "2021-01-29T05:58:38.000Z" + }, + "events": [ + { + "uuid": "ff762e23-7c03-4267-ac7d-a4235ebad1e1", + "start": { + "$date": "2021-01-29T04:19:53.000Z" + }, + "end": { + "$date": "2021-01-29T05:58:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e57be762-de98-42c5-b672-dc439c6e99e5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T04:25:31.000Z" + }, + "end": { + "$date": "2021-01-29T04:43:32.000Z" + }, + "events": [ + { + "uuid": "9b04b682-f7d1-49f9-becb-46cdc0611239", + "start": { + "$date": "2021-01-29T04:25:31.000Z" + }, + "end": { + "$date": "2021-01-29T04:43:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cc57ce1-3bf8-4c0d-950e-d7535eb6410d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-29T04:26:22.000Z" + }, + "end": { + "$date": "2021-01-29T04:43:28.000Z" + }, + "events": [ + { + "uuid": "74d54878-9013-48b8-a454-198d011ca4fe", + "start": { + "$date": "2021-01-29T04:26:22.000Z" + }, + "end": { + "$date": "2021-01-29T04:43:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "431e6960-0f61-410c-82a0-d02b4081e92a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T04:37:23.000Z" + }, + "end": { + "$date": "2021-01-29T04:46:59.000Z" + }, + "events": [ + { + "uuid": "797fdba8-ce40-45f3-b4d0-ecfe1c34ad3c", + "start": { + "$date": "2021-01-29T04:37:23.000Z" + }, + "end": { + "$date": "2021-01-29T04:46:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf7d5f3c-98ee-45c4-95c7-b43510c2e8c2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T04:46:57.000Z" + }, + "end": { + "$date": "2021-01-29T05:25:44.000Z" + }, + "events": [ + { + "uuid": "6f1ecbe1-bd75-4857-9136-2781e47f202f", + "start": { + "$date": "2021-01-29T04:46:57.000Z" + }, + "end": { + "$date": "2021-01-29T05:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5df0713f-444a-45d4-9bf4-9ccd33a50391", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-29T04:43:37.000Z" + }, + "end": { + "$date": "2021-01-29T07:25:46.000Z" + }, + "events": [ + { + "uuid": "f52845d8-2dce-476f-a4bb-5f60cac2ab4f", + "start": { + "$date": "2021-01-29T04:43:37.000Z" + }, + "end": { + "$date": "2021-01-29T07:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a43bdf5-ce97-47b5-9745-c9540c099b16", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-29T05:25:35.000Z" + }, + "end": { + "$date": "2021-01-29T05:25:53.000Z" + }, + "events": [ + { + "uuid": "df2b5c92-fdbb-4032-864d-845e6307b86a", + "start": { + "$date": "2021-01-29T05:25:35.000Z" + }, + "end": { + "$date": "2021-01-29T05:25:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ff2cd2b0-a4f0-4e84-a63c-fd108c419ac2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T04:47:25.000Z" + }, + "end": { + "$date": "2021-01-29T07:19:24.000Z" + }, + "events": [ + { + "uuid": "9c206b99-b996-43fb-8deb-48e5b2dc9ddf", + "start": { + "$date": "2021-01-29T04:47:25.000Z" + }, + "end": { + "$date": "2021-01-29T07:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "03e66b11-69a5-442a-bd41-54c9cf644bc6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-29T04:54:44.000Z" + }, + "end": { + "$date": "2021-01-29T05:38:41.000Z" + }, + "events": [ + { + "uuid": "70aa3133-f65f-44e2-9cfb-0e839273a2ba", + "start": { + "$date": "2021-01-29T04:54:44.000Z" + }, + "end": { + "$date": "2021-01-29T05:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9464cc4a-d83a-46bf-b74f-507c322e9bd7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-29T05:39:32.000Z" + }, + "end": { + "$date": "2021-01-29T06:11:37.000Z" + }, + "events": [ + { + "uuid": "ff49b8c3-2cf3-4224-8b07-92aec5bc46d0", + "start": { + "$date": "2021-01-29T05:39:32.000Z" + }, + "end": { + "$date": "2021-01-29T06:08:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80ea6723-0890-466b-9b4c-bfd74e3bb847", + "start": { + "$date": "2021-01-29T06:08:32.000Z" + }, + "end": { + "$date": "2021-01-29T06:11:37.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "5ed73361-70e9-4f5d-af9d-6ede5586f228", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-29T05:51:28.000Z" + }, + "end": { + "$date": "2021-01-29T07:37:00.000Z" + }, + "events": [ + { + "uuid": "da1d9978-5fc2-4e7b-8e86-8d1128a77fae", + "start": { + "$date": "2021-01-29T05:51:28.000Z" + }, + "end": { + "$date": "2021-01-29T07:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f218a83-12ae-44e6-a0e1-660543e66abc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T06:03:18.000Z" + }, + "end": { + "$date": "2021-01-29T06:38:51.000Z" + }, + "events": [ + { + "uuid": "575cf48d-98e1-48ab-89aa-7c12e7c48751", + "start": { + "$date": "2021-01-29T06:03:18.000Z" + }, + "end": { + "$date": "2021-01-29T06:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35ee90c2-e3f5-43d4-87ba-0913943a8683", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-29T06:03:52.000Z" + }, + "end": { + "$date": "2021-01-29T06:38:49.000Z" + }, + "events": [ + { + "uuid": "2d1fec86-89d3-46b3-9028-6587395b9bbb", + "start": { + "$date": "2021-01-29T06:03:52.000Z" + }, + "end": { + "$date": "2021-01-29T06:38:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81151ef9-4263-4930-b3c5-cfc5c6c715a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T06:42:55.000Z" + }, + "end": { + "$date": "2021-01-29T07:03:45.000Z" + }, + "events": [ + { + "uuid": "14638734-993f-481c-ad60-2c4f16ca7f20", + "start": { + "$date": "2021-01-29T06:42:55.000Z" + }, + "end": { + "$date": "2021-01-29T07:03:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e58eff3b-264f-43f3-9dad-9048d6101d3d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-29T06:44:09.000Z" + }, + "end": { + "$date": "2021-01-29T07:03:35.000Z" + }, + "events": [ + { + "uuid": "91050c64-ad20-45cc-9fb7-813e4288a67e", + "start": { + "$date": "2021-01-29T06:44:09.000Z" + }, + "end": { + "$date": "2021-01-29T07:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d553aaa-45f9-4941-a6aa-87cf3c614344", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-29T07:11:15.000Z" + }, + "end": { + "$date": "2021-01-29T07:52:37.000Z" + }, + "events": [ + { + "uuid": "abd8f9cf-d973-4b29-bf67-b88b7a6c1fb0", + "start": { + "$date": "2021-01-29T07:11:15.000Z" + }, + "end": { + "$date": "2021-01-29T07:52:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ed9cc75d-a5ad-4af6-b4ff-3793554403c2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T07:09:56.000Z" + }, + "end": { + "$date": "2021-01-29T07:27:43.000Z" + }, + "events": [ + { + "uuid": "5453212e-c8dc-4d6f-952d-a78ffcf1ea3a", + "start": { + "$date": "2021-01-29T07:09:56.000Z" + }, + "end": { + "$date": "2021-01-29T07:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08d0957d-a876-48e5-a943-62f1f5668c5a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-29T14:47:24.000Z" + }, + "end": { + "$date": "2021-01-29T15:09:07.000Z" + }, + "events": [ + { + "uuid": "04d314e6-332c-440a-a257-be229198cd86", + "start": { + "$date": "2021-01-29T14:47:24.000Z" + }, + "end": { + "$date": "2021-01-29T15:09:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09411504-2bb6-443d-beb8-7b86c12ef4b8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-29T16:31:38.000Z" + }, + "end": { + "$date": "2021-01-29T18:35:05.000Z" + }, + "events": [ + { + "uuid": "4990f059-3a39-42d8-8c7e-3e3a950c990f", + "start": { + "$date": "2021-01-29T16:31:38.000Z" + }, + "end": { + "$date": "2021-01-29T18:35:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b7eb7c3b-155c-4706-b2e0-e6008aa03c13", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-29T16:39:21.000Z" + }, + "end": { + "$date": "2021-01-29T17:28:38.000Z" + }, + "events": [ + { + "uuid": "415d984a-7d20-4f68-a98c-21374ef0edb3", + "start": { + "$date": "2021-01-29T16:39:21.000Z" + }, + "end": { + "$date": "2021-01-29T17:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b607914d-48b9-4497-a8f2-4bb4d95dae97", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-29T16:59:25.000Z" + }, + "end": { + "$date": "2021-01-29T17:01:42.000Z" + }, + "events": [ + { + "uuid": "8f7555ae-2f8b-46e8-8eff-2b013dd3513e", + "start": { + "$date": "2021-01-29T16:59:25.000Z" + }, + "end": { + "$date": "2021-01-29T17:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cb050001-0990-4648-b0c9-07b36c797c06", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-29T17:03:15.000Z" + }, + "end": { + "$date": "2021-01-29T18:06:08.000Z" + }, + "events": [ + { + "uuid": "2ecc0809-3c82-41b7-817a-938f9893f6d1", + "start": { + "$date": "2021-01-29T17:03:15.000Z" + }, + "end": { + "$date": "2021-01-29T18:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "4cca00a2-1213-46a0-9a47-851b7c635cc9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-29T17:51:26.000Z" + }, + "end": { + "$date": "2021-01-29T19:15:16.000Z" + }, + "events": [ + { + "uuid": "33586399-f999-4dde-a9a9-3004a07f7ca5", + "start": { + "$date": "2021-01-29T17:51:26.000Z" + }, + "end": { + "$date": "2021-01-29T19:02:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f54f258e-d199-4021-b127-560337271775", + "start": { + "$date": "2021-01-29T19:02:26.000Z" + }, + "end": { + "$date": "2021-01-29T19:09:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4ca3b9c1-dff0-4eb0-a89b-52a7cd995871", + "start": { + "$date": "2021-01-29T19:09:26.000Z" + }, + "end": { + "$date": "2021-01-29T19:15:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7f6ec133-5262-4c1d-a608-6d4c9d24b89d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T18:40:43.000Z" + }, + "end": { + "$date": "2021-01-29T18:44:13.000Z" + }, + "events": [ + { + "uuid": "06f258c8-13b2-4b81-813c-1d7b493967f1", + "start": { + "$date": "2021-01-29T18:40:43.000Z" + }, + "end": { + "$date": "2021-01-29T18:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "94845689-d253-4204-b060-8bc31d196e6e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T18:44:24.000Z" + }, + "end": { + "$date": "2021-01-29T18:45:54.000Z" + }, + "events": [ + { + "uuid": "841fc0db-b40c-42f4-b4c5-52d91b631904", + "start": { + "$date": "2021-01-29T18:44:24.000Z" + }, + "end": { + "$date": "2021-01-29T18:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cf9fca09-4dbb-4ed4-8aed-26c957332b2d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T18:56:30.000Z" + }, + "end": { + "$date": "2021-01-29T18:58:05.000Z" + }, + "events": [ + { + "uuid": "94acc4a8-c3db-4084-909c-e6a4db46bd7c", + "start": { + "$date": "2021-01-29T18:56:30.000Z" + }, + "end": { + "$date": "2021-01-29T18:58:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fb21ec90-e17f-4f56-baac-a75d37bed5bf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T19:33:53.000Z" + }, + "end": { + "$date": "2021-01-29T19:39:48.000Z" + }, + "events": [ + { + "uuid": "89cc9dd2-8c12-4041-b1d4-38a18c3ab089", + "start": { + "$date": "2021-01-29T19:33:53.000Z" + }, + "end": { + "$date": "2021-01-29T19:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3962431a-b521-4f73-8368-506a73f9956b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T19:44:24.000Z" + }, + "end": { + "$date": "2021-01-29T19:45:34.000Z" + }, + "events": [ + { + "uuid": "b00f10f6-1e61-49e9-8175-c494f2dbeed1", + "start": { + "$date": "2021-01-29T19:44:24.000Z" + }, + "end": { + "$date": "2021-01-29T19:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f6760919-8b0f-413f-a67d-f47ec2aa2184", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T19:52:20.000Z" + }, + "end": { + "$date": "2021-01-29T20:05:56.000Z" + }, + "events": [ + { + "uuid": "445108b3-1504-4257-ad8b-f3030b925c57", + "start": { + "$date": "2021-01-29T19:52:20.000Z" + }, + "end": { + "$date": "2021-01-29T20:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a6481e46-7c3b-4b41-a500-95f5bf63d83a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-29T20:07:41.000Z" + }, + "end": { + "$date": "2021-01-29T21:22:00.000Z" + }, + "events": [ + { + "uuid": "8a825b38-5e75-4f26-a6f0-f671c22e8a41", + "start": { + "$date": "2021-01-29T20:07:41.000Z" + }, + "end": { + "$date": "2021-01-29T21:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6aa9cc04-e125-4d1e-bb0d-269d68cb6127", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T20:07:51.000Z" + }, + "end": { + "$date": "2021-01-29T20:14:17.000Z" + }, + "events": [ + { + "uuid": "77a558fd-2bf7-4c36-9ab1-216d0fbcc3db", + "start": { + "$date": "2021-01-29T20:07:51.000Z" + }, + "end": { + "$date": "2021-01-29T20:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b42147b1-5347-483f-8bf3-dfb937b66080", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-29T20:23:04.000Z" + }, + "end": { + "$date": "2021-01-29T20:47:30.000Z" + }, + "events": [ + { + "uuid": "8d9b781b-4594-4349-ad0b-bd27769fcbd8", + "start": { + "$date": "2021-01-29T20:23:04.000Z" + }, + "end": { + "$date": "2021-01-29T20:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cbff4cb0-9131-47f3-bc05-a7f5c95175cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T20:33:26.000Z" + }, + "end": { + "$date": "2021-01-29T20:34:50.000Z" + }, + "events": [ + { + "uuid": "1eb70db0-eba6-4b8f-87cb-393e321ba9fc", + "start": { + "$date": "2021-01-29T20:33:26.000Z" + }, + "end": { + "$date": "2021-01-29T20:34:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "20d3c498-f0c8-447f-93a9-533047112058", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T20:34:53.000Z" + }, + "end": { + "$date": "2021-01-29T20:39:58.000Z" + }, + "events": [ + { + "uuid": "dbb3e663-3593-408b-b84f-49524b1da321", + "start": { + "$date": "2021-01-29T20:34:53.000Z" + }, + "end": { + "$date": "2021-01-29T20:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f590edf2-cc77-4c7a-9aaf-43bab25b58fb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-29T22:05:50.000Z" + }, + "end": { + "$date": "2021-01-29T22:44:39.000Z" + }, + "events": [ + { + "uuid": "932ff727-885c-494f-81a0-07fd0d6f1b20", + "start": { + "$date": "2021-01-29T22:05:50.000Z" + }, + "end": { + "$date": "2021-01-29T22:44:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "70417800-7d13-4fc5-b7d6-6b7d0ec599e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-29T22:29:19.000Z" + }, + "end": { + "$date": "2021-01-30T00:15:51.000Z" + }, + "events": [ + { + "uuid": "f0e65c56-b067-4bbb-a9cb-9a1baa075431", + "start": { + "$date": "2021-01-29T22:29:19.000Z" + }, + "end": { + "$date": "2021-01-30T00:15:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "aea777f1-38c4-482a-a10e-a064ec0941a7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-29T22:39:30.000Z" + }, + "end": { + "$date": "2021-01-30T00:38:34.000Z" + }, + "events": [ + { + "uuid": "773fd7af-2a97-4bf6-87af-6b49c73d466a", + "start": { + "$date": "2021-01-29T22:39:30.000Z" + }, + "end": { + "$date": "2021-01-30T00:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c93a59f7-e740-4645-9d55-8c0a99b7faa9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-29T22:41:28.000Z" + }, + "end": { + "$date": "2021-01-29T23:10:33.000Z" + }, + "events": [ + { + "uuid": "792ab790-56b7-4b38-b19d-43d5ac22e8a4", + "start": { + "$date": "2021-01-29T22:41:28.000Z" + }, + "end": { + "$date": "2021-01-29T23:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "73b8449f-ca2c-492a-811f-da4de135be06", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-29T22:47:07.000Z" + }, + "end": { + "$date": "2021-01-29T23:04:39.000Z" + }, + "events": [ + { + "uuid": "59f97e0e-b0f1-439a-a8db-ae523e7584f4", + "start": { + "$date": "2021-01-29T22:47:07.000Z" + }, + "end": { + "$date": "2021-01-29T23:04:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8728b2e6-1cc0-4cb9-995f-f16c6eba443f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T22:49:02.000Z" + }, + "end": { + "$date": "2021-01-29T22:53:07.000Z" + }, + "events": [ + { + "uuid": "866a8546-aa44-43c3-8eeb-6e06bdfb1435", + "start": { + "$date": "2021-01-29T22:49:02.000Z" + }, + "end": { + "$date": "2021-01-29T22:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec0401cd-10de-4401-8ebc-7066d12b0079", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-29T22:57:57.000Z" + }, + "end": { + "$date": "2021-01-29T23:33:48.000Z" + }, + "events": [ + { + "uuid": "5540558f-cacb-4b9f-b4e3-fe79bab6ed51", + "start": { + "$date": "2021-01-29T22:57:57.000Z" + }, + "end": { + "$date": "2021-01-29T23:33:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac022f8b-9360-471e-8230-25b0dfb281b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-29T23:04:16.000Z" + }, + "end": { + "$date": "2021-01-29T23:33:49.000Z" + }, + "events": [ + { + "uuid": "9b38803a-dec3-43c4-8723-313c0ffc9061", + "start": { + "$date": "2021-01-29T23:04:16.000Z" + }, + "end": { + "$date": "2021-01-29T23:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e130baa3-ee9d-4050-a433-c15549b63d35", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-29T23:01:05.000Z" + }, + "end": { + "$date": "2021-01-29T23:44:23.000Z" + }, + "events": [ + { + "uuid": "f0d775ba-df17-4546-b5b9-2dfd22c31cdf", + "start": { + "$date": "2021-01-29T23:01:05.000Z" + }, + "end": { + "$date": "2021-01-29T23:12:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bfc2820f-4c76-4aa1-a234-40a2d5afb5bd", + "start": { + "$date": "2021-01-29T23:12:05.000Z" + }, + "end": { + "$date": "2021-01-29T23:44:23.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "34196d19-efdb-4636-bf48-43c61ce3b149", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-29T23:20:47.000Z" + }, + "end": { + "$date": "2021-01-29T23:39:53.000Z" + }, + "events": [ + { + "uuid": "b4b71b22-4cca-4e52-ba12-a15c7fedaa4a", + "start": { + "$date": "2021-01-29T23:20:47.000Z" + }, + "end": { + "$date": "2021-01-29T23:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bb76b3c3-5361-4baf-b688-0bd3cd3a5d3c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-29T23:25:53.000Z" + }, + "end": { + "$date": "2021-01-29T23:43:54.000Z" + }, + "events": [ + { + "uuid": "a4b349ad-efb8-45a1-92ae-f8271331d770", + "start": { + "$date": "2021-01-29T23:25:53.000Z" + }, + "end": { + "$date": "2021-01-29T23:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afe567a4-afea-4c76-b570-6cbf65d6ee16", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-30T01:01:38.000Z" + }, + "end": { + "$date": "2021-01-30T01:03:18.000Z" + }, + "events": [ + { + "uuid": "29a8fed3-69ca-48f7-a929-ebef28222e51", + "start": { + "$date": "2021-01-30T01:01:38.000Z" + }, + "end": { + "$date": "2021-01-30T01:03:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c73d339-f209-4d5a-b964-8c633a4b6981", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-29T23:39:54.000Z" + }, + "end": { + "$date": "2021-01-30T00:16:50.000Z" + }, + "events": [ + { + "uuid": "a498ea5e-88ed-4e2c-b343-cd6fab0e5ff7", + "start": { + "$date": "2021-01-29T23:39:54.000Z" + }, + "end": { + "$date": "2021-01-30T00:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "510dd126-46a7-4a6f-af22-2503332032d5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-29T23:39:36.000Z" + }, + "end": { + "$date": "2021-01-30T00:16:49.000Z" + }, + "events": [ + { + "uuid": "1320d138-e677-46e5-b982-b209c433162e", + "start": { + "$date": "2021-01-29T23:39:36.000Z" + }, + "end": { + "$date": "2021-01-30T00:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a9467957-df56-49e4-b279-e2b25c680863", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-29T23:44:10.000Z" + }, + "end": { + "$date": "2021-01-30T00:14:44.000Z" + }, + "events": [ + { + "uuid": "19313a96-088b-40cb-9e80-be52fd819595", + "start": { + "$date": "2021-01-29T23:44:10.000Z" + }, + "end": { + "$date": "2021-01-30T00:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a40477e4-43b7-4421-a586-b62f6fd8c870", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-29T23:45:24.000Z" + }, + "end": { + "$date": "2021-01-30T00:10:27.000Z" + }, + "events": [ + { + "uuid": "fbf83a86-7553-4850-b8b4-af9fa0f06f5e", + "start": { + "$date": "2021-01-29T23:45:24.000Z" + }, + "end": { + "$date": "2021-01-30T00:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "0293d4fb-7152-4640-940f-014798cf1e79", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T00:18:02.000Z" + }, + "end": { + "$date": "2021-01-30T03:01:04.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-30T00:18:02.000Z" + }, + "end": { + "$date": "2021-01-30T03:01:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a61281bd-e838-47ec-8619-24f79ae72f1f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T01:01:31.000Z" + }, + "end": { + "$date": "2021-01-30T01:03:03.000Z" + }, + "events": [ + { + "uuid": "dd197cfd-0180-41f7-b186-cf86bea57615", + "start": { + "$date": "2021-01-30T01:01:31.000Z" + }, + "end": { + "$date": "2021-01-30T01:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a835c3ae-6946-4555-96f2-428ce1f69dc3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T00:22:20.000Z" + }, + "end": { + "$date": "2021-01-30T01:01:29.000Z" + }, + "events": [ + { + "uuid": "aaf7b5c3-705c-46c7-9c87-31d86118b0c9", + "start": { + "$date": "2021-01-30T00:22:20.000Z" + }, + "end": { + "$date": "2021-01-30T01:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a7f24ec5-c106-455b-9a5d-353e85e36327", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T01:23:14.000Z" + }, + "end": { + "$date": "2021-01-30T01:44:01.000Z" + }, + "events": [ + { + "uuid": "139d77d7-7807-49fa-8fa5-32c977c992c3", + "start": { + "$date": "2021-01-30T01:23:14.000Z" + }, + "end": { + "$date": "2021-01-30T01:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1e27d904-58c5-4be3-af98-170e5feb3ca1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T01:44:41.000Z" + }, + "end": { + "$date": "2021-01-30T03:26:14.000Z" + }, + "events": [ + { + "uuid": "ac8760ee-9bc1-461e-9785-537904bd8c04", + "start": { + "$date": "2021-01-30T01:44:41.000Z" + }, + "end": { + "$date": "2021-01-30T03:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f549bc24-7ab6-4461-954b-e25d777e5eab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-30T02:54:26.000Z" + }, + "end": { + "$date": "2021-01-30T02:58:35.000Z" + }, + "events": [ + { + "uuid": "1eeb50f8-c57f-4b5d-9e85-4629815eaa89", + "start": { + "$date": "2021-01-30T02:54:26.000Z" + }, + "end": { + "$date": "2021-01-30T02:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ac10a953-9135-4917-9ebc-39d2d991b8cb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-30T02:59:11.000Z" + }, + "end": { + "$date": "2021-01-30T03:24:43.000Z" + }, + "events": [ + { + "uuid": "746f554f-6b85-4a90-983f-b97eea9cf8eb", + "start": { + "$date": "2021-01-30T02:59:11.000Z" + }, + "end": { + "$date": "2021-01-30T03:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "ac6b91e5-5ed0-48f1-b8b3-212734740f4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T03:03:29.000Z" + }, + "end": { + "$date": "2021-01-30T04:03:52.000Z" + }, + "events": [ + { + "uuid": "66f4501b-abd7-4a3f-ac50-ef99a1cb4605", + "start": { + "$date": "2021-01-30T03:03:29.000Z" + }, + "end": { + "$date": "2021-01-30T04:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5925a066-5a50-4fb9-93cd-ad259f89c96a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-30T04:46:02.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:23.000Z" + }, + "events": [ + { + "uuid": "fc399233-86c6-4078-887f-051f96c00261", + "start": { + "$date": "2021-01-30T04:46:02.000Z" + }, + "end": { + "$date": "2021-01-30T05:55:02.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "297cc7ed-5035-4a11-b8d6-a63fa5fd1066", + "start": { + "$date": "2021-01-30T05:55:02.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fbefbef-9f4c-4ab2-9f21-756dd9989b0c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T03:22:31.000Z" + }, + "end": { + "$date": "2021-01-30T03:33:14.000Z" + }, + "events": [ + { + "uuid": "f4f9719e-bf27-4f8a-a7b4-9b975a6c7105", + "start": { + "$date": "2021-01-30T03:22:31.000Z" + }, + "end": { + "$date": "2021-01-30T03:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "18fcb26d-b96e-4b19-a569-b1080d88babd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-30T03:24:59.000Z" + }, + "end": { + "$date": "2021-01-30T03:39:58.000Z" + }, + "events": [ + { + "uuid": "a18b845d-3de8-4554-9991-f61d624a3bde", + "start": { + "$date": "2021-01-30T03:24:59.000Z" + }, + "end": { + "$date": "2021-01-30T03:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "177a8f77-bf83-40fc-8dfe-8dff95e392d6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T03:37:24.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "events": [ + { + "uuid": "b7ebbd77-9c46-4b87-aa90-f20afa192d07", + "start": { + "$date": "2021-01-30T03:37:24.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32d83165-1efa-42ad-a0f2-f4d852a5ffb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T03:37:29.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "events": [ + { + "uuid": "757b8ba0-e81b-4348-a28d-fe18ade73a8b", + "start": { + "$date": "2021-01-30T03:37:29.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b1981a5-518d-4c1e-bf07-2bad9f69bd23", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-30T03:37:26.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "events": [ + { + "uuid": "0a6fd2ac-c066-4c3f-be2e-d9a08928710a", + "start": { + "$date": "2021-01-30T03:37:26.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6347064-9d57-47c9-a4e3-5e37a5f80ccf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T03:37:25.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "events": [ + { + "uuid": "f3ec6fac-3eb8-4f0e-b950-e5554e4ab05f", + "start": { + "$date": "2021-01-30T03:37:25.000Z" + }, + "end": { + "$date": "2021-01-30T03:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b755290-63cf-4c41-9ac9-5eddd94e4a10", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T03:41:03.000Z" + }, + "end": { + "$date": "2021-01-30T04:15:04.000Z" + }, + "events": [ + { + "uuid": "cb818470-2115-4d29-af2f-57d1a376734a", + "start": { + "$date": "2021-01-30T03:41:03.000Z" + }, + "end": { + "$date": "2021-01-30T04:15:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce5841c3-8c61-4051-ae13-58b084ab5d41", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-30T04:46:05.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:26.000Z" + }, + "events": [ + { + "uuid": "60cf0b71-5c7c-408d-a604-e546b528e247", + "start": { + "$date": "2021-01-30T04:46:05.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f3ca0e5-5a6c-4c3b-8ef6-2172a1d755ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T03:41:04.000Z" + }, + "end": { + "$date": "2021-01-30T04:15:12.000Z" + }, + "events": [ + { + "uuid": "7720c69c-fbf5-413b-885f-1c65a4aef1e8", + "start": { + "$date": "2021-01-30T03:41:04.000Z" + }, + "end": { + "$date": "2021-01-30T04:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d051e26-87fb-416a-b813-e9c222bb6810", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-30T03:41:24.000Z" + }, + "end": { + "$date": "2021-01-30T04:15:09.000Z" + }, + "events": [ + { + "uuid": "dcf60caf-cb57-40a4-9f9a-12355f45b366", + "start": { + "$date": "2021-01-30T03:41:24.000Z" + }, + "end": { + "$date": "2021-01-30T04:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8fc74eb9-127b-4629-9305-bc02da32117d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-30T03:41:19.000Z" + }, + "end": { + "$date": "2021-01-30T06:00:58.000Z" + }, + "events": [ + { + "uuid": "850917c5-d15b-463f-86eb-3b6011fced07", + "start": { + "$date": "2021-01-30T03:41:19.000Z" + }, + "end": { + "$date": "2021-01-30T06:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "26bb25fa-c77e-41f9-aa51-139b8c13a345", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T04:09:17.000Z" + }, + "end": { + "$date": "2021-01-30T04:19:52.000Z" + }, + "events": [ + { + "uuid": "5b2a7457-63ad-414c-acdf-d9df3680a28a", + "start": { + "$date": "2021-01-30T04:09:17.000Z" + }, + "end": { + "$date": "2021-01-30T04:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "433e3d59-cf50-4dd3-affc-a29b1a88170a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T04:20:40.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:24.000Z" + }, + "events": [ + { + "uuid": "b34f7cf7-24fa-4d02-81a0-56ff2159aa07", + "start": { + "$date": "2021-01-30T04:20:40.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8967e278-e9f1-49e7-b5a2-d422ee4e2c04", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T04:20:57.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:17.000Z" + }, + "events": [ + { + "uuid": "fa65b003-3656-4a9e-8f33-93c0d70dc579", + "start": { + "$date": "2021-01-30T04:20:57.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62c902a2-f7bf-4d2d-9184-6ab7db7439a4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T04:20:49.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:20.000Z" + }, + "events": [ + { + "uuid": "f5425d0a-8248-4b79-a491-b79cdaa8a25c", + "start": { + "$date": "2021-01-30T04:20:49.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb5bb844-d02c-4721-af2c-08414e3d19d1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-30T04:23:55.000Z" + }, + "end": { + "$date": "2021-01-30T04:24:00.000Z" + }, + "events": [ + { + "uuid": "01b7d925-b0b5-45f6-a11e-5523fb4219b3", + "start": { + "$date": "2021-01-30T04:23:55.000Z" + }, + "end": { + "$date": "2021-01-30T04:24:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea0bd3fb-e770-4742-a3ca-d44bb0a4d11e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T04:20:41.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:16.000Z" + }, + "events": [ + { + "uuid": "5ed5eb30-277d-495d-b10c-d2cdf16eabdc", + "start": { + "$date": "2021-01-30T04:20:41.000Z" + }, + "end": { + "$date": "2021-01-30T04:41:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "eb863a82-27c9-4187-91b7-2c3fbd5c67f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T04:23:58.000Z" + }, + "end": { + "$date": "2021-01-30T04:33:33.000Z" + }, + "events": [ + { + "uuid": "a952b20e-eef3-4b87-a6e8-a478f2deb515", + "start": { + "$date": "2021-01-30T04:23:58.000Z" + }, + "end": { + "$date": "2021-01-30T04:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "fc57364e-9dc4-4917-8e26-94c84a50bfa1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T04:35:34.000Z" + }, + "end": { + "$date": "2021-01-30T05:01:05.000Z" + }, + "events": [ + { + "uuid": "9fc533a0-9a5c-4d41-8d96-20cf53fbeb74", + "start": { + "$date": "2021-01-30T04:35:34.000Z" + }, + "end": { + "$date": "2021-01-30T05:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8bb059b-82fa-4b4f-a4c3-e2d70225f7fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T04:46:06.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:28.000Z" + }, + "events": [ + { + "uuid": "f41eb746-4024-48bd-a65d-89c946aa623d", + "start": { + "$date": "2021-01-30T04:46:06.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1d19879-309c-4f41-a2b2-475b152072c1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T04:46:00.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:21.000Z" + }, + "events": [ + { + "uuid": "fcdfee17-0162-48e1-b8f0-371265af2f7a", + "start": { + "$date": "2021-01-30T04:46:00.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd90ff81-4a39-49de-986c-19cf2659c836", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T04:45:57.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:23.000Z" + }, + "events": [ + { + "uuid": "a17decec-c511-4870-adcd-f05bb11ee3ad", + "start": { + "$date": "2021-01-30T04:45:57.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c8c2a72-0b0d-477e-81f6-befe1886bda2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-30T04:46:02.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:28.000Z" + }, + "events": [ + { + "uuid": "8d1cd436-f44f-4d74-b695-59266e721cbc", + "start": { + "$date": "2021-01-30T04:46:02.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16bb0a87-beb9-4704-8000-54df2914041d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T04:47:36.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:22.000Z" + }, + "events": [ + { + "uuid": "4559da82-76fd-4446-ae2a-51d4f38c5803", + "start": { + "$date": "2021-01-30T04:47:36.000Z" + }, + "end": { + "$date": "2021-01-30T05:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9791cf06-53f3-43a2-8cda-844a0fa9251c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-30T04:53:47.000Z" + }, + "end": { + "$date": "2021-01-30T05:03:50.000Z" + }, + "events": [ + { + "uuid": "b9bc33fd-711f-4fec-aa68-b10eb4ac619d", + "start": { + "$date": "2021-01-30T04:53:47.000Z" + }, + "end": { + "$date": "2021-01-30T05:03:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "3c8f149d-63b2-44d9-bbea-23862df40a84", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T05:06:56.000Z" + }, + "end": { + "$date": "2021-01-30T06:13:46.000Z" + }, + "events": [ + { + "uuid": "ff609a10-9470-4f42-8ac1-a83d0912b206", + "start": { + "$date": "2021-01-30T05:06:56.000Z" + }, + "end": { + "$date": "2021-01-30T06:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "0bba1c7b-c2fa-407e-b9fe-ae119683e9ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T05:09:33.000Z" + }, + "end": { + "$date": "2021-01-30T05:16:08.000Z" + }, + "events": [ + { + "uuid": "21448c07-91ce-46f4-8634-b45bb85560f8", + "start": { + "$date": "2021-01-30T05:09:33.000Z" + }, + "end": { + "$date": "2021-01-30T05:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2490e142-8d61-4615-bc18-a87e39a756ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T05:14:57.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:33.000Z" + }, + "events": [ + { + "uuid": "4e2adbe7-7d57-4fd1-bd53-50d27eebbd07", + "start": { + "$date": "2021-01-30T05:14:57.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7f5e3ea-3e31-46ff-91f0-166a6a28186d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T05:14:51.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:27.000Z" + }, + "events": [ + { + "uuid": "a641c6a2-ab1f-45ff-a6f5-191303bb1ac0", + "start": { + "$date": "2021-01-30T05:14:51.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f81dafb-57b1-46a4-98ea-6d7a8dcad7f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T05:14:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:28.000Z" + }, + "events": [ + { + "uuid": "8e4cc166-fdae-4510-856d-8369d747ce2d", + "start": { + "$date": "2021-01-30T05:14:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4a41354-3548-42b9-9a24-a4ad23a60a40", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-30T05:14:52.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:32.000Z" + }, + "events": [ + { + "uuid": "30aa71de-9c13-4b7c-9165-5ece1ff5d493", + "start": { + "$date": "2021-01-30T05:14:52.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37092051-fede-4975-b772-4dc00178e754", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-30T05:14:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:28.000Z" + }, + "events": [ + { + "uuid": "822d5eb0-3ec9-4f59-87f0-ceab068faa84", + "start": { + "$date": "2021-01-30T05:14:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27e4b738-6125-4479-a2f9-eff408869b17", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-30T05:14:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:29.000Z" + }, + "events": [ + { + "uuid": "67890ed7-0484-45a2-a790-9ed2b5d85097", + "start": { + "$date": "2021-01-30T05:14:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a59a7e5b-ffd7-43b6-8b2d-273772a4f769", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T05:14:52.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:28.000Z" + }, + "events": [ + { + "uuid": "e26f975a-c99d-483a-8c26-33e61ea71dd9", + "start": { + "$date": "2021-01-30T05:14:52.000Z" + }, + "end": { + "$date": "2021-01-30T05:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ddb12f29-1351-4e16-af36-1cb16c973306", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T05:22:14.000Z" + }, + "end": { + "$date": "2021-01-30T05:40:05.000Z" + }, + "events": [ + { + "uuid": "7ad3607a-ce4f-4366-a302-3478ea28e08c", + "start": { + "$date": "2021-01-30T05:22:14.000Z" + }, + "end": { + "$date": "2021-01-30T05:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecf2efb0-2cc8-42eb-a1ea-d6544be8ec1b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T05:35:03.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:48.000Z" + }, + "events": [ + { + "uuid": "0cd752f9-f83b-4560-a9a0-897b274c483e", + "start": { + "$date": "2021-01-30T05:35:03.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b739569-0529-49b1-8184-fb29c354ef62", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T05:34:52.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:47.000Z" + }, + "events": [ + { + "uuid": "9cb6bcbf-cc5a-43d4-82e6-6f7d34e3004a", + "start": { + "$date": "2021-01-30T05:34:52.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a4057e9-4896-4d1f-a985-c7cc3168aa94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T05:35:18.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:38.000Z" + }, + "events": [ + { + "uuid": "86367162-f749-44e6-9933-f22384a00d4a", + "start": { + "$date": "2021-01-30T05:35:18.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef31efc6-bc94-4c91-9f01-45ffbc7d6a7b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-30T05:35:19.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:39.000Z" + }, + "events": [ + { + "uuid": "4ffa19df-9a0f-41b8-ae0b-a5cd1875571d", + "start": { + "$date": "2021-01-30T05:35:19.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "585b480f-5874-44bc-a866-8fb0dc3e84bf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-30T05:34:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:44.000Z" + }, + "events": [ + { + "uuid": "1689a599-cb47-45e0-b9b7-6a2de7b6a518", + "start": { + "$date": "2021-01-30T05:34:53.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2335cd5d-ebe5-4031-99e8-fc832225c9d5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-30T05:34:54.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:45.000Z" + }, + "events": [ + { + "uuid": "1b1e7682-7adb-4b2e-9494-aeff25d4bd09", + "start": { + "$date": "2021-01-30T05:34:54.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "217f4b09-4792-4160-8997-c8444641b12f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T05:35:13.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:46.000Z" + }, + "events": [ + { + "uuid": "1f4a1935-8494-4325-a784-e905923133fa", + "start": { + "$date": "2021-01-30T05:35:13.000Z" + }, + "end": { + "$date": "2021-01-30T05:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "e45ebb06-84bc-427f-a2e7-4c4d11d04fe0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T05:40:35.000Z" + }, + "end": { + "$date": "2021-01-30T05:47:06.000Z" + }, + "events": [ + { + "uuid": "a5e93f87-b715-4c4b-85e3-55dfe11a622b", + "start": { + "$date": "2021-01-30T05:40:35.000Z" + }, + "end": { + "$date": "2021-01-30T05:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5830eee7-4372-487a-9e73-f3240bb9f117", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T05:56:53.000Z" + }, + "end": { + "$date": "2021-01-30T06:12:37.000Z" + }, + "events": [ + { + "uuid": "3f942c3b-2b1b-4e6f-9313-38eb56a7d247", + "start": { + "$date": "2021-01-30T05:56:53.000Z" + }, + "end": { + "$date": "2021-01-30T06:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f56bf5b-d929-4177-818f-b7c63b8cea0b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T05:57:08.000Z" + }, + "end": { + "$date": "2021-01-30T06:12:29.000Z" + }, + "events": [ + { + "uuid": "877866ba-bcc9-44e8-a88f-b5e1abbee2b7", + "start": { + "$date": "2021-01-30T05:57:08.000Z" + }, + "end": { + "$date": "2021-01-30T06:12:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d039971-d5c8-42ce-88ce-968683d00279", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T07:00:23.000Z" + }, + "end": { + "$date": "2021-01-30T07:52:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-30T07:00:23.000Z" + }, + "end": { + "$date": "2021-01-30T07:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "29d9b237-174f-4416-98fe-d220a95b6047", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T06:13:18.000Z" + }, + "end": { + "$date": "2021-01-30T09:22:40.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-01-30T06:13:18.000Z" + }, + "end": { + "$date": "2021-01-30T09:22:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1de2f59-205a-4701-8c83-bafc2e47ce3b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T08:01:04.000Z" + }, + "end": { + "$date": "2021-01-30T08:27:50.000Z" + }, + "events": [ + { + "uuid": "e91ea3ac-c73e-44de-977d-2ed9111c03b6", + "start": { + "$date": "2021-01-30T08:01:04.000Z" + }, + "end": { + "$date": "2021-01-30T08:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fec0ee95-6d80-470c-92ef-f9f72fbca633", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-30T08:01:32.000Z" + }, + "end": { + "$date": "2021-01-30T08:10:52.000Z" + }, + "events": [ + { + "uuid": "18555885-ac35-4ab9-9edf-64c78b4bd6a9", + "start": { + "$date": "2021-01-30T08:01:32.000Z" + }, + "end": { + "$date": "2021-01-30T08:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0c6e1c83-2439-4601-b61b-9ce8c409620c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-30T08:14:49.000Z" + }, + "end": { + "$date": "2021-01-30T08:24:26.000Z" + }, + "events": [ + { + "uuid": "85e834d6-737a-4086-806b-c7548a5dafff", + "start": { + "$date": "2021-01-30T08:14:49.000Z" + }, + "end": { + "$date": "2021-01-30T08:24:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce4913e1-fb54-4d8c-b580-54d5fd6bbbc7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T08:38:56.000Z" + }, + "end": { + "$date": "2021-01-30T09:10:42.000Z" + }, + "events": [ + { + "uuid": "91f02039-4968-44f6-a4dd-0fbd6048ba94", + "start": { + "$date": "2021-01-30T08:38:56.000Z" + }, + "end": { + "$date": "2021-01-30T09:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bddab5ad-6c1a-4419-aaa7-610da224237a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-30T14:14:32.000Z" + }, + "end": { + "$date": "2021-01-30T16:09:20.000Z" + }, + "events": [ + { + "uuid": "e1225611-9ab7-4685-ace8-6b6bea0fbcbf", + "start": { + "$date": "2021-01-30T14:14:32.000Z" + }, + "end": { + "$date": "2021-01-30T16:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0b18213f-bfcd-4ed1-89a2-22486e215676", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T16:17:17.000Z" + }, + "end": { + "$date": "2021-01-30T17:35:20.000Z" + }, + "events": [ + { + "uuid": "70947cee-ca35-4b29-9e8d-a11b8e961f72", + "start": { + "$date": "2021-01-30T16:17:17.000Z" + }, + "end": { + "$date": "2021-01-30T17:25:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e521a99e-472b-4674-8742-fb5a8071fb7b", + "start": { + "$date": "2021-01-30T17:25:17.000Z" + }, + "end": { + "$date": "2021-01-30T17:30:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c69f9b6-6044-4b11-bfff-c8cbb251dd6d", + "start": { + "$date": "2021-01-30T17:30:17.000Z" + }, + "end": { + "$date": "2021-01-30T17:35:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "128edc82-7f81-428e-ae5a-2b8ae007ab09", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T17:29:29.000Z" + }, + "end": { + "$date": "2021-01-30T18:24:42.000Z" + }, + "events": [ + { + "uuid": "5676e07f-e312-4a7e-b07b-0856d036e853", + "start": { + "$date": "2021-01-30T17:29:29.000Z" + }, + "end": { + "$date": "2021-01-30T18:24:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "07bc242f-a35c-45c9-8421-9d40aa1409c2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-30T17:53:42.000Z" + }, + "end": { + "$date": "2021-01-30T19:40:15.000Z" + }, + "events": [ + { + "uuid": "610022d2-8fe3-47b4-9c3c-20590895e7cb", + "start": { + "$date": "2021-01-30T17:53:42.000Z" + }, + "end": { + "$date": "2021-01-30T19:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "00958c9a-5200-4a14-8b73-822d32207e6a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-30T18:24:39.000Z" + }, + "end": { + "$date": "2021-01-30T21:56:21.000Z" + }, + "events": [ + { + "uuid": "2d04b547-3f8c-4517-9c18-f33e0ab36fd9", + "start": { + "$date": "2021-01-30T18:24:39.000Z" + }, + "end": { + "$date": "2021-01-30T21:56:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3255c666-e005-455b-bd39-73602013e76d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T18:28:47.000Z" + }, + "end": { + "$date": "2021-01-30T19:04:22.000Z" + }, + "events": [ + { + "uuid": "e14d8d16-30a4-47fd-83c4-4b88286b6ddb", + "start": { + "$date": "2021-01-30T18:28:47.000Z" + }, + "end": { + "$date": "2021-01-30T19:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "22c4fffe-0858-4f38-b829-c1b61c34deab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-30T19:15:14.000Z" + }, + "end": { + "$date": "2021-01-30T19:17:09.000Z" + }, + "events": [ + { + "uuid": "610874aa-b43c-444e-89c2-c5750549d564", + "start": { + "$date": "2021-01-30T19:15:14.000Z" + }, + "end": { + "$date": "2021-01-30T19:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9f94f025-b2f0-4c8b-ae05-71ee9f8cadbf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-30T19:22:03.000Z" + }, + "end": { + "$date": "2021-01-30T22:14:54.000Z" + }, + "events": [ + { + "uuid": "354a86b0-5ff9-4ed6-afa4-cc2ff574e36a", + "start": { + "$date": "2021-01-30T19:22:03.000Z" + }, + "end": { + "$date": "2021-01-30T20:50:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3a337976-ba80-40ca-b840-4a968f0a4b5a", + "start": { + "$date": "2021-01-30T20:50:03.000Z" + }, + "end": { + "$date": "2021-01-30T20:56:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e0ccd9a0-c545-4c02-b073-817a86f6ba96", + "start": { + "$date": "2021-01-30T20:56:03.000Z" + }, + "end": { + "$date": "2021-01-30T22:14:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5d7c7880-9a62-4e56-bf7e-c7aca631ba2c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-30T19:42:22.000Z" + }, + "end": { + "$date": "2021-01-30T20:54:08.000Z" + }, + "events": [ + { + "uuid": "79f48226-9b5d-4532-86cd-b66b50ccb532", + "start": { + "$date": "2021-01-30T19:42:22.000Z" + }, + "end": { + "$date": "2021-01-30T20:54:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e3b9e72-f1de-457d-b46f-fa6e037370b7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T20:16:17.000Z" + }, + "end": { + "$date": "2021-01-30T20:51:49.000Z" + }, + "events": [ + { + "uuid": "9d3ab5de-1eef-4e49-8db6-fef9629cbc50", + "start": { + "$date": "2021-01-30T20:16:17.000Z" + }, + "end": { + "$date": "2021-01-30T20:51:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "2ed247ef-66b4-4e5e-a673-495c6ebb724b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-30T20:10:33.000Z" + }, + "end": { + "$date": "2021-01-30T21:16:24.000Z" + }, + "events": [ + { + "uuid": "29c184b8-644f-4461-b414-2027d28a4ec0", + "start": { + "$date": "2021-01-30T20:10:33.000Z" + }, + "end": { + "$date": "2021-01-30T21:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6167e51e-1d09-475e-90dc-9c2e292d1fbd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-30T23:44:23.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:47.000Z" + }, + "events": [ + { + "uuid": "c92ef04e-0d97-47b7-b74e-fcee0d93df3b", + "start": { + "$date": "2021-01-30T23:44:23.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35857217-fa7c-44eb-9968-9c235f7dc5a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-30T21:09:10.000Z" + }, + "end": { + "$date": "2021-01-30T21:51:41.000Z" + }, + "events": [ + { + "uuid": "d9450510-d5e7-41b2-85ec-d4f4082d3029", + "start": { + "$date": "2021-01-30T21:09:10.000Z" + }, + "end": { + "$date": "2021-01-30T21:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "89d402fb-027c-4fa0-b130-20336c259cbe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-30T21:19:25.000Z" + }, + "end": { + "$date": "2021-01-30T21:35:52.000Z" + }, + "events": [ + { + "uuid": "1f50d5f9-11dd-43d3-9bea-98a4fb106c57", + "start": { + "$date": "2021-01-30T21:19:25.000Z" + }, + "end": { + "$date": "2021-01-30T21:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "517c774a-f525-4bc7-986f-884ae6b373d0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T21:25:22.000Z" + }, + "end": { + "$date": "2021-01-30T21:50:30.000Z" + }, + "events": [ + { + "uuid": "3885afac-2139-454c-8adc-d6e5e2864092", + "start": { + "$date": "2021-01-30T21:25:22.000Z" + }, + "end": { + "$date": "2021-01-30T21:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e57284dc-28f3-4114-865f-6f1f1438b179", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T21:59:16.000Z" + }, + "end": { + "$date": "2021-01-30T22:29:07.000Z" + }, + "events": [ + { + "uuid": "5379886e-e9b1-45dc-8f3e-635b64185fd4", + "start": { + "$date": "2021-01-30T21:59:16.000Z" + }, + "end": { + "$date": "2021-01-30T22:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "874ce0ee-2ad7-494e-aada-9c981ee62498", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T21:49:50.000Z" + }, + "end": { + "$date": "2021-01-30T21:51:40.000Z" + }, + "events": [ + { + "uuid": "85256d0c-0019-4866-b054-77a0ca32a1c5", + "start": { + "$date": "2021-01-30T21:49:50.000Z" + }, + "end": { + "$date": "2021-01-30T21:51:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "48a28126-9854-4fbd-a266-52086644fad5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T21:52:15.000Z" + }, + "end": { + "$date": "2021-01-30T22:37:01.000Z" + }, + "events": [ + { + "uuid": "d18d518b-66f7-498b-a3af-ecdf3965baae", + "start": { + "$date": "2021-01-30T21:52:15.000Z" + }, + "end": { + "$date": "2021-01-30T22:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a134a776-e096-4b00-9567-421a6a3cbc3b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-30T22:14:54.000Z" + }, + "end": { + "$date": "2021-01-31T03:25:58.000Z" + }, + "events": [ + { + "uuid": "7359d046-683d-4a3d-8105-5b85d5c9f83b", + "start": { + "$date": "2021-01-30T22:14:54.000Z" + }, + "end": { + "$date": "2021-01-31T00:33:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b8c62d53-91b4-4850-99ae-6d8954716607", + "start": { + "$date": "2021-01-31T00:33:54.000Z" + }, + "end": { + "$date": "2021-01-31T00:39:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "46c90499-85b2-4e41-8fbe-0a4c75164724", + "start": { + "$date": "2021-01-31T00:39:54.000Z" + }, + "end": { + "$date": "2021-01-31T03:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9cfef426-babf-4bcf-8601-265342a88b33", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-30T22:21:59.000Z" + }, + "end": { + "$date": "2021-01-30T22:34:21.000Z" + }, + "events": [ + { + "uuid": "f34d7fc7-f96d-4e4e-b05c-31ce2d1e6a0f", + "start": { + "$date": "2021-01-30T22:21:59.000Z" + }, + "end": { + "$date": "2021-01-30T22:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36da16ad-3ae0-4219-92a6-4081e5c37097", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T22:38:03.000Z" + }, + "end": { + "$date": "2021-01-30T23:13:35.000Z" + }, + "events": [ + { + "uuid": "48646843-4008-4ff6-bac2-f86a923e90be", + "start": { + "$date": "2021-01-30T22:38:03.000Z" + }, + "end": { + "$date": "2021-01-30T23:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "058dda68-d746-4a4d-b2b4-adeb4a364d15", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-30T23:48:32.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:29.000Z" + }, + "events": [ + { + "uuid": "dcf7d60a-6dc7-4f78-ae0c-ee06db05cd1a", + "start": { + "$date": "2021-01-30T23:48:32.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "3c3ba2eb-a8b4-48bc-a9d6-226183f248a2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-30T23:00:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:15:09.000Z" + }, + "events": [ + { + "uuid": "7cb4dccf-feb4-4476-a01f-c72855be7b0e", + "start": { + "$date": "2021-01-30T23:00:17.000Z" + }, + "end": { + "$date": "2021-01-30T23:25:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f2527d9-a576-4456-9a96-1808c2ad72b2", + "start": { + "$date": "2021-01-30T23:25:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:15:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c28e868c-f8ee-481f-a559-c324192a2fa2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T23:17:39.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:22.000Z" + }, + "events": [ + { + "uuid": "27ccadea-71d5-478f-8b18-77cd2a407286", + "start": { + "$date": "2021-01-30T23:17:39.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0fe981d-6c45-47d0-a535-19b227681c09", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T23:17:29.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:15.000Z" + }, + "events": [ + { + "uuid": "fab6972a-2447-4561-a678-0cc853b4829f", + "start": { + "$date": "2021-01-30T23:17:29.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9027b4cb-c934-49cb-b1ff-afda94c7ca67", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T23:17:29.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:14.000Z" + }, + "events": [ + { + "uuid": "02c3e6a2-692f-4f9f-9418-848afe927ec4", + "start": { + "$date": "2021-01-30T23:17:29.000Z" + }, + "end": { + "$date": "2021-01-30T23:44:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fda12ea-418f-4b0b-8aac-eb1493f9d818", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-30T23:48:40.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:37.000Z" + }, + "events": [ + { + "uuid": "3750aabc-3aa8-4eac-ae38-557eb393c636", + "start": { + "$date": "2021-01-30T23:48:40.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2cfbdf4-a28c-4777-95cf-85553a76f5c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-30T23:48:30.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:31.000Z" + }, + "events": [ + { + "uuid": "b028c3bb-b2e0-4f04-9ebe-a6f31e4daf4a", + "start": { + "$date": "2021-01-30T23:48:30.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "026ca888-2d93-4353-9cee-528ee072e0c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-30T23:48:29.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:29.000Z" + }, + "events": [ + { + "uuid": "fc6471a8-bceb-43fd-bc26-aed0a818c8b1", + "start": { + "$date": "2021-01-30T23:48:29.000Z" + }, + "end": { + "$date": "2021-01-31T00:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "24b43caf-4d30-419b-85a7-6e629eeb6a96", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-30T23:47:54.000Z" + }, + "end": { + "$date": "2021-01-30T23:52:54.000Z" + }, + "events": [ + { + "uuid": "6a257747-4af3-4313-9566-68a01b99c8ef", + "start": { + "$date": "2021-01-30T23:47:54.000Z" + }, + "end": { + "$date": "2021-01-30T23:52:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "01403134-8c8b-4f6c-b55c-501c4a24f10f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-30T23:49:11.000Z" + }, + "end": { + "$date": "2021-01-30T23:51:17.000Z" + }, + "events": [ + { + "uuid": "da56aada-7a9d-41dd-b976-95726d1b8d2b", + "start": { + "$date": "2021-01-30T23:49:11.000Z" + }, + "end": { + "$date": "2021-01-30T23:51:17.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "023635b0-f3d0-4987-ad15-094ad044e7f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T00:37:37.000Z" + }, + "end": { + "$date": "2021-01-31T01:28:09.000Z" + }, + "events": [ + { + "uuid": "10ca59b1-d291-4e30-9b0f-8fe53660d1f7", + "start": { + "$date": "2021-01-31T00:37:37.000Z" + }, + "end": { + "$date": "2021-01-31T01:28:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "76e6aa61-2849-4887-95ca-b0e8377923be", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-31T01:04:00.000Z" + }, + "end": { + "$date": "2021-01-31T01:28:32.000Z" + }, + "events": [ + { + "uuid": "a629f56c-9e1f-4d26-9f37-75e409560461", + "start": { + "$date": "2021-01-31T01:04:00.000Z" + }, + "end": { + "$date": "2021-01-31T01:28:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bd5a98aa-952a-4dc2-9158-3c2a04ba681f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-31T01:11:40.000Z" + }, + "end": { + "$date": "2021-01-31T01:49:13.000Z" + }, + "events": [ + { + "uuid": "a3f5a598-a765-421a-92c9-eaafdbb0f38d", + "start": { + "$date": "2021-01-31T01:11:40.000Z" + }, + "end": { + "$date": "2021-01-31T01:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6b418e18-094c-421d-9c96-d288fc3cad0b", + "uuid": "6b7129f4-b76d-4297-9ef7-d4008aba7796", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-01-30T23:00:17.000Z" + }, + "end": { + "$date": "2021-01-31T04:47:02.000Z" + }, + "events": [ + { + "uuid": "1b87e67a-1974-406a-9b4d-76b67669175d", + "start": { + "$date": "2021-01-30T23:00:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:11:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09a1556d-5693-4bbc-97aa-5c238210f696", + "start": { + "$date": "2021-01-31T01:11:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:13:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56ded22d-062b-46ab-9feb-795c8e0295bb", + "start": { + "$date": "2021-01-31T01:13:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:27:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dee46843-22d4-4f0c-a2bc-e26c7bcdc5a0", + "start": { + "$date": "2021-01-31T01:27:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:29:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d6155b43-d9c2-483f-9894-6ff979c87df6", + "start": { + "$date": "2021-01-31T01:29:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:46:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3328aaab-43c3-4f6b-ad6d-7c812d826918", + "start": { + "$date": "2021-01-31T01:46:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:50:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7089535-1b77-4f1f-86bb-2db1423c69e0", + "start": { + "$date": "2021-01-31T01:50:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:56:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d9519108-227f-4120-a5b5-6b2472e74a9d", + "start": { + "$date": "2021-01-31T01:56:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:58:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8b8f579-8f24-45a1-a785-fcdd8e360d4c", + "start": { + "$date": "2021-01-31T01:58:17.000Z" + }, + "end": { + "$date": "2021-01-31T01:59:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1775c2e-315f-4f46-8599-56da5ec5eae4", + "start": { + "$date": "2021-01-31T01:59:17.000Z" + }, + "end": { + "$date": "2021-01-31T02:01:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "628b8aa3-3127-4d25-b30b-17cb3fba84fe", + "start": { + "$date": "2021-01-31T02:01:17.000Z" + }, + "end": { + "$date": "2021-01-31T02:28:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8de74a4e-add2-4d8a-87c4-34deafad346e", + "start": { + "$date": "2021-01-31T02:28:17.000Z" + }, + "end": { + "$date": "2021-01-31T02:30:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77c0c5d5-3c88-41d1-81db-beda00c30ef1", + "start": { + "$date": "2021-01-31T02:30:17.000Z" + }, + "end": { + "$date": "2021-01-31T04:47:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7170e0fe-7e7f-46a3-9a1f-b08786825a13", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-31T01:28:41.000Z" + }, + "end": { + "$date": "2021-01-31T03:25:17.000Z" + }, + "events": [ + { + "uuid": "adb4b1b9-8461-479c-a78d-bd316384787e", + "start": { + "$date": "2021-01-31T01:28:41.000Z" + }, + "end": { + "$date": "2021-01-31T03:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "406850a9-13e4-41db-9aef-19eb3c266d13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T02:00:42.000Z" + }, + "end": { + "$date": "2021-01-31T02:23:35.000Z" + }, + "events": [ + { + "uuid": "87bbe491-7e17-4483-8cc7-1b675adaff0e", + "start": { + "$date": "2021-01-31T02:00:42.000Z" + }, + "end": { + "$date": "2021-01-31T02:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2068faf5-44a0-4c92-b51c-cdd44dbea68b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-31T02:01:12.000Z" + }, + "end": { + "$date": "2021-01-31T02:23:28.000Z" + }, + "events": [ + { + "uuid": "bfd7c026-4b16-4cc0-9265-7a5b2f681de4", + "start": { + "$date": "2021-01-31T02:01:12.000Z" + }, + "end": { + "$date": "2021-01-31T02:23:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "9bc821f5-a72f-43b7-89ba-425cbea75c79", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T02:23:12.000Z" + }, + "end": { + "$date": "2021-01-31T02:53:43.000Z" + }, + "events": [ + { + "uuid": "81ba2925-2916-4444-a446-10f5b64b592b", + "start": { + "$date": "2021-01-31T02:23:12.000Z" + }, + "end": { + "$date": "2021-01-31T02:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d3cf127-34cc-4f6f-8646-3d45b1735907", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T02:29:03.000Z" + }, + "end": { + "$date": "2021-01-31T03:00:09.000Z" + }, + "events": [ + { + "uuid": "790fdede-399c-4e7c-b861-6432656cbbb6", + "start": { + "$date": "2021-01-31T02:29:03.000Z" + }, + "end": { + "$date": "2021-01-31T03:00:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "203ded55-1272-484e-9467-41916d576eeb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-31T02:25:41.000Z" + }, + "end": { + "$date": "2021-01-31T02:25:43.000Z" + }, + "events": [ + { + "uuid": "0869d3f5-175e-488c-bd66-04267135c167", + "start": { + "$date": "2021-01-31T02:25:41.000Z" + }, + "end": { + "$date": "2021-01-31T02:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff0977e8-e5fb-4b4b-9c54-3cf899f0ca19", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-31T02:29:33.000Z" + }, + "end": { + "$date": "2021-01-31T03:00:10.000Z" + }, + "events": [ + { + "uuid": "f14f01b5-8499-4522-bcb4-a47013f381c3", + "start": { + "$date": "2021-01-31T02:29:33.000Z" + }, + "end": { + "$date": "2021-01-31T03:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38e4583c-b4ce-4f74-8a99-0e5ab24b3bca", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-31T02:29:00.000Z" + }, + "end": { + "$date": "2021-01-31T03:00:06.000Z" + }, + "events": [ + { + "uuid": "8d065c75-aa1c-4a77-85f3-0bb3691107e8", + "start": { + "$date": "2021-01-31T02:29:00.000Z" + }, + "end": { + "$date": "2021-01-31T03:00:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aa5d3d08-155d-4a5f-8ee7-0746e6e24ac7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-31T02:52:30.000Z" + }, + "end": { + "$date": "2021-01-31T10:45:40.000Z" + }, + "events": [ + { + "uuid": "67f20e16-e232-42f4-97c5-f343ae75a926", + "start": { + "$date": "2021-01-31T02:52:30.000Z" + }, + "end": { + "$date": "2021-01-31T10:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5e21b989-a21e-4a99-b943-ff8b2f69184e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-31T02:52:53.000Z" + }, + "end": { + "$date": "2021-01-31T10:45:08.000Z" + }, + "events": [ + { + "uuid": "6083b69e-80e9-4547-a9bc-3c50b9a75b6f", + "start": { + "$date": "2021-01-31T02:52:53.000Z" + }, + "end": { + "$date": "2021-01-31T10:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0c12154e-d1e2-454e-a791-0105b5f9e805", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-31T02:58:17.000Z" + }, + "end": { + "$date": "2021-01-31T03:17:10.000Z" + }, + "events": [ + { + "uuid": "4a4cc9b3-d845-433f-b4d1-6bd2cf95e2c4", + "start": { + "$date": "2021-01-31T02:58:17.000Z" + }, + "end": { + "$date": "2021-01-31T03:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "116c97eb-c636-4ed5-95cf-d4ea89aa1283", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T03:07:15.000Z" + }, + "end": { + "$date": "2021-01-31T03:38:52.000Z" + }, + "events": [ + { + "uuid": "c1cc0d53-3393-44fa-844d-5a7b2003b6b2", + "start": { + "$date": "2021-01-31T03:07:15.000Z" + }, + "end": { + "$date": "2021-01-31T03:38:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca6ea670-8c00-4a07-87f0-db60ec5bdf49", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-31T03:07:12.000Z" + }, + "end": { + "$date": "2021-01-31T03:38:53.000Z" + }, + "events": [ + { + "uuid": "ccf8a58a-63b4-4f0a-9e77-a44cc0fcc092", + "start": { + "$date": "2021-01-31T03:07:12.000Z" + }, + "end": { + "$date": "2021-01-31T03:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d8468ec6-da3d-437e-be70-4df9a5f80137", + "uuid": "07582279-a42a-40f8-8109-61568dd8eb1a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T03:17:42.000Z" + }, + "end": { + "$date": "2021-01-31T03:26:18.000Z" + }, + "events": [ + { + "uuid": "7cad2572-c993-4615-97b1-53b8f329ce52", + "start": { + "$date": "2021-01-31T03:17:42.000Z" + }, + "end": { + "$date": "2021-01-31T03:26:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f22b48b1-3914-4282-84f7-6832e090f2f4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-31T03:28:32.000Z" + }, + "end": { + "$date": "2021-01-31T08:48:52.000Z" + }, + "events": [ + { + "uuid": "663472b8-cb25-4d55-a025-2e1570ea9ddd", + "start": { + "$date": "2021-01-31T03:28:32.000Z" + }, + "end": { + "$date": "2021-01-31T08:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "54ba23d6-15bc-4b8b-a7b3-a2fd184dda6a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-31T03:29:52.000Z" + }, + "end": { + "$date": "2021-01-31T03:36:33.000Z" + }, + "events": [ + { + "uuid": "c6129768-ae2b-40a0-b3ab-3f75c8ed75a3", + "start": { + "$date": "2021-01-31T03:29:52.000Z" + }, + "end": { + "$date": "2021-01-31T03:36:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "937282d2-787a-43fd-9d08-224383e193f7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-31T04:06:08.000Z" + }, + "end": { + "$date": "2021-01-31T04:10:23.000Z" + }, + "events": [ + { + "uuid": "1f73a3c8-63d0-4190-8697-8e84850441bd", + "start": { + "$date": "2021-01-31T04:06:08.000Z" + }, + "end": { + "$date": "2021-01-31T04:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "381eb429-0801-4cfa-b483-f60b56051c8b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-31T04:06:10.000Z" + }, + "end": { + "$date": "2021-01-31T06:25:11.000Z" + }, + "events": [ + { + "uuid": "81b9a2a7-93bc-44bb-93fe-d22afb90a8ba", + "start": { + "$date": "2021-01-31T04:06:10.000Z" + }, + "end": { + "$date": "2021-01-31T06:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd7bbc0b-3f01-4de9-8b35-1cb91e5aae2d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T04:21:58.000Z" + }, + "end": { + "$date": "2021-01-31T05:01:35.000Z" + }, + "events": [ + { + "uuid": "7a43b3aa-8ce5-4676-9d84-5b5c494e3c98", + "start": { + "$date": "2021-01-31T04:21:58.000Z" + }, + "end": { + "$date": "2021-01-31T05:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "3ecd5aaa-6792-414c-a51e-cac44317c308", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-01-31T04:18:05.000Z" + }, + "end": { + "$date": "2021-01-31T04:43:29.000Z" + }, + "events": [ + { + "uuid": "cdbc31f2-2e7f-4f46-b8ca-81470ab99e68", + "start": { + "$date": "2021-01-31T04:18:05.000Z" + }, + "end": { + "$date": "2021-01-31T04:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "2e854b11-073d-44d6-aecd-7893a910c8e8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-01-31T04:30:03.000Z" + }, + "end": { + "$date": "2021-01-31T05:22:46.000Z" + }, + "events": [ + { + "uuid": "5f4d55f9-e550-4760-a66f-18e029d3c600", + "start": { + "$date": "2021-01-31T04:30:03.000Z" + }, + "end": { + "$date": "2021-01-31T05:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "926aedbc-432d-4e4d-a9e4-b8b7f46877a4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-31T04:36:09.000Z" + }, + "end": { + "$date": "2021-01-31T05:26:58.000Z" + }, + "events": [ + { + "uuid": "205a23fc-9e80-480a-8b66-2fc06a1ebded", + "start": { + "$date": "2021-01-31T04:36:09.000Z" + }, + "end": { + "$date": "2021-01-31T05:17:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3547ba5-0fb1-43b1-9692-4320208fc57f", + "start": { + "$date": "2021-01-31T05:17:09.000Z" + }, + "end": { + "$date": "2021-01-31T05:19:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a1519dd6-e1f4-42c2-83d5-20d08a7ddf54", + "start": { + "$date": "2021-01-31T05:19:09.000Z" + }, + "end": { + "$date": "2021-01-31T05:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecd3afc3-f2d9-4c0a-a713-4502cf21008c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T05:06:24.000Z" + }, + "end": { + "$date": "2021-01-31T05:30:01.000Z" + }, + "events": [ + { + "uuid": "b2c701c5-2410-4ffa-93ec-210403f70031", + "start": { + "$date": "2021-01-31T05:06:24.000Z" + }, + "end": { + "$date": "2021-01-31T05:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e47c6791-2fbe-4302-8a26-80d935dba183", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-31T05:05:06.000Z" + }, + "end": { + "$date": "2021-01-31T05:30:27.000Z" + }, + "events": [ + { + "uuid": "ffcf1c44-e728-4c11-a97c-d69391d42c7e", + "start": { + "$date": "2021-01-31T05:05:06.000Z" + }, + "end": { + "$date": "2021-01-31T05:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7708907-5294-44a1-b72f-d91801bf6dd5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T05:29:39.000Z" + }, + "end": { + "$date": "2021-01-31T06:05:47.000Z" + }, + "events": [ + { + "uuid": "7ec2bc5f-5679-45a5-86f9-9e6a503d14d6", + "start": { + "$date": "2021-01-31T05:29:39.000Z" + }, + "end": { + "$date": "2021-01-31T06:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f8ab37df-c19b-4689-8a2a-b806f9a10ca6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-01-31T05:27:23.000Z" + }, + "end": { + "$date": "2021-01-31T08:48:57.000Z" + }, + "events": [ + { + "uuid": "d828856e-cdd6-4ac8-b6bc-5743caafc539", + "start": { + "$date": "2021-01-31T05:27:23.000Z" + }, + "end": { + "$date": "2021-01-31T08:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5172502-55ce-475e-891d-5a7aefd2477e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T05:40:00.000Z" + }, + "end": { + "$date": "2021-01-31T06:09:12.000Z" + }, + "events": [ + { + "uuid": "320b33c6-52d1-4b77-b69b-fb8831993312", + "start": { + "$date": "2021-01-31T05:40:00.000Z" + }, + "end": { + "$date": "2021-01-31T06:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "48879fd2-0f62-43e1-894e-d0e1dcc2b088", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-31T05:30:58.000Z" + }, + "end": { + "$date": "2021-01-31T05:43:23.000Z" + }, + "events": [ + { + "uuid": "8cb91a76-6c15-4d8b-a013-b473febdcfdb", + "start": { + "$date": "2021-01-31T05:30:58.000Z" + }, + "end": { + "$date": "2021-01-31T05:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4c47795b-665e-4ae3-9313-56d8c343bd90", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-31T05:43:48.000Z" + }, + "end": { + "$date": "2021-01-31T06:27:39.000Z" + }, + "events": [ + { + "uuid": "8d4ad101-fd2f-4f30-92df-c488e101f1a6", + "start": { + "$date": "2021-01-31T05:43:48.000Z" + }, + "end": { + "$date": "2021-01-31T06:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "48f07174-0896-4687-8d0f-044ccf528d4d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T05:59:45.000Z" + }, + "end": { + "$date": "2021-01-31T08:25:39.000Z" + }, + "events": [ + { + "uuid": "fd7e622a-958e-4ca7-8057-f12b468ea3e6", + "start": { + "$date": "2021-01-31T05:59:45.000Z" + }, + "end": { + "$date": "2021-01-31T08:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "1291e480-00c2-45ed-8204-8bef8053c991", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-31T06:01:29.000Z" + }, + "end": { + "$date": "2021-01-31T07:46:38.000Z" + }, + "events": [ + { + "uuid": "8035a57e-686d-4cc3-b490-5b8070c5d7a0", + "start": { + "$date": "2021-01-31T06:01:29.000Z" + }, + "end": { + "$date": "2021-01-31T07:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08c29da2-bbc2-4335-99df-9a868a0bba0b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T06:11:19.000Z" + }, + "end": { + "$date": "2021-01-31T06:12:40.000Z" + }, + "events": [ + { + "uuid": "a78f7495-6e3e-4b31-a8b9-fe1c5e55bd5a", + "start": { + "$date": "2021-01-31T06:11:19.000Z" + }, + "end": { + "$date": "2021-01-31T06:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6622bd22-df1d-408d-8ed9-83ead4d299c7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T06:16:21.000Z" + }, + "end": { + "$date": "2021-01-31T06:44:18.000Z" + }, + "events": [ + { + "uuid": "7a41773d-4380-4210-b9ed-fac53c518820", + "start": { + "$date": "2021-01-31T06:16:21.000Z" + }, + "end": { + "$date": "2021-01-31T06:44:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb83c09b-1231-46b6-b9e4-c42d50a4cbc9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T06:16:29.000Z" + }, + "end": { + "$date": "2021-01-31T06:44:27.000Z" + }, + "events": [ + { + "uuid": "2c4b10d9-e968-479c-8855-4c0f608ab8ea", + "start": { + "$date": "2021-01-31T06:16:29.000Z" + }, + "end": { + "$date": "2021-01-31T06:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a976d0e5-1ac7-44c9-a61a-6c83ee874010", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-31T06:25:16.000Z" + }, + "end": { + "$date": "2021-01-31T06:26:18.000Z" + }, + "events": [ + { + "uuid": "26ac6828-5dad-4952-9dfb-c871b6f64759", + "start": { + "$date": "2021-01-31T06:25:16.000Z" + }, + "end": { + "$date": "2021-01-31T06:26:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fff2e24d-7197-43cc-bfbf-3621802a1ece", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-31T06:27:10.000Z" + }, + "end": { + "$date": "2021-01-31T07:03:43.000Z" + }, + "events": [ + { + "uuid": "a3b1af6d-211e-4167-a5a9-87ea7017188b", + "start": { + "$date": "2021-01-31T06:27:10.000Z" + }, + "end": { + "$date": "2021-01-31T07:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1d4cf6ca-fb19-4d7e-bbd8-af8b582b52cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-31T06:30:09.000Z" + }, + "end": { + "$date": "2021-01-31T10:25:09.000Z" + }, + "events": [ + { + "uuid": "49372266-9bf0-4210-9daf-968595769976", + "start": { + "$date": "2021-01-31T06:30:09.000Z" + }, + "end": { + "$date": "2021-01-31T10:25:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1631fd3a-160f-4cef-9d94-39738bfa4ded", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T06:51:40.000Z" + }, + "end": { + "$date": "2021-01-31T07:21:10.000Z" + }, + "events": [ + { + "uuid": "8b3904cc-68cb-4808-8b81-0c3d3608ef5c", + "start": { + "$date": "2021-01-31T06:51:40.000Z" + }, + "end": { + "$date": "2021-01-31T07:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cdaac61-8e3f-4a22-af19-eddba0cdd5b3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T06:52:53.000Z" + }, + "end": { + "$date": "2021-01-31T07:21:05.000Z" + }, + "events": [ + { + "uuid": "00c436a4-30ed-44e8-9637-9f5ef0260b6f", + "start": { + "$date": "2021-01-31T06:52:53.000Z" + }, + "end": { + "$date": "2021-01-31T07:21:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "95287bce-e680-4217-849e-9bbb9aba67b5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-31T07:32:17.000Z" + }, + "end": { + "$date": "2021-01-31T07:49:29.000Z" + }, + "events": [ + { + "uuid": "516ec86f-592d-4277-a226-efe2a694101c", + "start": { + "$date": "2021-01-31T07:32:17.000Z" + }, + "end": { + "$date": "2021-01-31T07:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5640be71-7c0e-49e8-a073-1b8c0c3df6ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T07:26:06.000Z" + }, + "end": { + "$date": "2021-01-31T08:02:26.000Z" + }, + "events": [ + { + "uuid": "c14e73ed-d11a-4196-a7d0-fda92ad1506b", + "start": { + "$date": "2021-01-31T07:26:06.000Z" + }, + "end": { + "$date": "2021-01-31T08:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09ecd598-d6c0-4ea9-b302-a780e51748f3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T07:28:54.000Z" + }, + "end": { + "$date": "2021-01-31T08:02:16.000Z" + }, + "events": [ + { + "uuid": "58f6c50e-e57a-47f2-b199-e78013293703", + "start": { + "$date": "2021-01-31T07:28:54.000Z" + }, + "end": { + "$date": "2021-01-31T08:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2e75eef5-9b88-4546-8bda-134d2e351fc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-31T07:46:54.000Z" + }, + "end": { + "$date": "2021-01-31T08:26:39.000Z" + }, + "events": [ + { + "uuid": "dd3a3fa3-82f5-4776-8fac-fe28055ead90", + "start": { + "$date": "2021-01-31T07:46:54.000Z" + }, + "end": { + "$date": "2021-01-31T08:26:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3442892-78cf-4b28-93ef-163d7550065c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T08:07:57.000Z" + }, + "end": { + "$date": "2021-01-31T08:23:56.000Z" + }, + "events": [ + { + "uuid": "5eca68ae-7831-49ef-9d21-64e8b8f3aa92", + "start": { + "$date": "2021-01-31T08:07:57.000Z" + }, + "end": { + "$date": "2021-01-31T08:23:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c474691-43d2-4866-915d-662563decc86", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T08:08:25.000Z" + }, + "end": { + "$date": "2021-01-31T08:23:47.000Z" + }, + "events": [ + { + "uuid": "4b426ea8-82bb-4acb-a96d-6419af574fc1", + "start": { + "$date": "2021-01-31T08:08:25.000Z" + }, + "end": { + "$date": "2021-01-31T08:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c8cbe0e-26e6-4c5a-8373-262a396eaf8d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T08:28:33.000Z" + }, + "end": { + "$date": "2021-01-31T08:55:06.000Z" + }, + "events": [ + { + "uuid": "c8e936e6-5a30-492f-8cb1-5a37b0af5eef", + "start": { + "$date": "2021-01-31T08:28:33.000Z" + }, + "end": { + "$date": "2021-01-31T08:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6bee1ce-e125-4228-9acd-c197a42da0fe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T08:28:31.000Z" + }, + "end": { + "$date": "2021-01-31T08:54:58.000Z" + }, + "events": [ + { + "uuid": "b32ea210-c82d-46b0-a268-60c065a8ea5b", + "start": { + "$date": "2021-01-31T08:28:31.000Z" + }, + "end": { + "$date": "2021-01-31T08:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "5c9ca195-79d5-4d1a-a865-f39769927a47", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T08:31:30.000Z" + }, + "end": { + "$date": "2021-01-31T09:15:21.000Z" + }, + "events": [ + { + "uuid": "f583bcc3-c08e-4fcd-82ae-a6f66f674772", + "start": { + "$date": "2021-01-31T08:31:30.000Z" + }, + "end": { + "$date": "2021-01-31T09:15:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "d17ed7d2-500a-4a87-b9a1-ffe92986c895", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-31T08:37:15.000Z" + }, + "end": { + "$date": "2021-01-31T08:41:19.000Z" + }, + "events": [ + { + "uuid": "719a2fa6-61cd-440c-a1d5-5513856893e3", + "start": { + "$date": "2021-01-31T08:37:15.000Z" + }, + "end": { + "$date": "2021-01-31T08:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d77be5f2-9062-44a0-aeed-858300bea66d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T09:06:14.000Z" + }, + "end": { + "$date": "2021-01-31T09:39:57.000Z" + }, + "events": [ + { + "uuid": "061310c1-907e-40fb-8b5f-7725dbefe228", + "start": { + "$date": "2021-01-31T09:06:14.000Z" + }, + "end": { + "$date": "2021-01-31T09:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4d6346f-3ada-4b5f-8462-8163ce9fa0bf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T09:55:49.000Z" + }, + "end": { + "$date": "2021-01-31T10:36:42.000Z" + }, + "events": [ + { + "uuid": "7b1ae4b4-1d67-4aa7-8a8f-6d40da93cd2d", + "start": { + "$date": "2021-01-31T09:55:49.000Z" + }, + "end": { + "$date": "2021-01-31T10:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "97606664-01d5-4d1a-a105-78eefd8e9761", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-01-31T16:22:03.000Z" + }, + "end": { + "$date": "2021-01-31T20:55:34.000Z" + }, + "events": [ + { + "uuid": "8c3575f2-38a7-4cc5-bc15-78be7fb92a77", + "start": { + "$date": "2021-01-31T16:22:03.000Z" + }, + "end": { + "$date": "2021-01-31T20:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5943dd27-5383-4771-80f8-fbbb5d15ed54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-01-31T18:40:59.000Z" + }, + "end": { + "$date": "2021-01-31T19:52:40.000Z" + }, + "events": [ + { + "uuid": "cdd8be32-bd68-499f-a6af-ee195381f691", + "start": { + "$date": "2021-01-31T18:40:59.000Z" + }, + "end": { + "$date": "2021-01-31T19:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9e58380-bda3-4120-9c67-8111a126c541", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-31T18:45:51.000Z" + }, + "end": { + "$date": "2021-01-31T19:28:26.000Z" + }, + "events": [ + { + "uuid": "8119efea-88b7-4e3f-86d5-e3a5da430a11", + "start": { + "$date": "2021-01-31T18:45:51.000Z" + }, + "end": { + "$date": "2021-01-31T19:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "da5a5576-7062-4cb1-90be-d11ec29174df", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-31T19:29:37.000Z" + }, + "end": { + "$date": "2021-01-31T20:44:31.000Z" + }, + "events": [ + { + "uuid": "52dfc350-c301-42cf-8aa8-f1c58f27c414", + "start": { + "$date": "2021-01-31T19:29:37.000Z" + }, + "end": { + "$date": "2021-01-31T20:21:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0de7edb7-694d-45ec-ad41-fcf85f066022", + "start": { + "$date": "2021-01-31T20:21:37.000Z" + }, + "end": { + "$date": "2021-01-31T20:44:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5db6bc8d-35d7-4e77-ad81-38b6706887b5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-01-31T20:11:38.000Z" + }, + "end": { + "$date": "2021-01-31T21:22:39.000Z" + }, + "events": [ + { + "uuid": "eade0b8b-5ec3-4330-9f6f-9c7c6e1e5a62", + "start": { + "$date": "2021-01-31T20:11:38.000Z" + }, + "end": { + "$date": "2021-01-31T21:22:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "877c9517-0f02-44e5-9c07-e0bc3d79879b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T21:10:09.000Z" + }, + "end": { + "$date": "2021-01-31T21:26:49.000Z" + }, + "events": [ + { + "uuid": "86a18475-5975-4484-97f9-8703711f401e", + "start": { + "$date": "2021-01-31T21:10:09.000Z" + }, + "end": { + "$date": "2021-01-31T21:26:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f18aec72-7899-418f-9081-9eaef2fe7b1f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-01-31T21:16:36.000Z" + }, + "end": { + "$date": "2021-01-31T21:24:32.000Z" + }, + "events": [ + { + "uuid": "43f30f38-e09a-4c49-938c-88e315338cc8", + "start": { + "$date": "2021-01-31T21:16:36.000Z" + }, + "end": { + "$date": "2021-01-31T21:24:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d15750c5-fafb-4d10-bd8d-71366ee5727c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-31T21:21:28.000Z" + }, + "end": { + "$date": "2021-01-31T22:20:58.000Z" + }, + "events": [ + { + "uuid": "45581b55-ce58-42f3-8054-98a05d3a5b49", + "start": { + "$date": "2021-01-31T21:21:28.000Z" + }, + "end": { + "$date": "2021-01-31T22:20:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c457cdad-8c2d-4b14-8159-03114470c42e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-01-31T21:22:40.000Z" + }, + "end": { + "$date": "2021-02-01T09:00:34.000Z" + }, + "events": [ + { + "uuid": "a6546b1d-c4c4-4743-b327-819cd68882a4", + "start": { + "$date": "2021-01-31T21:22:40.000Z" + }, + "end": { + "$date": "2021-02-01T09:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e2fc48f-b58d-4433-a32f-fcbf9abf3ce6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T21:39:10.000Z" + }, + "end": { + "$date": "2021-01-31T22:15:52.000Z" + }, + "events": [ + { + "uuid": "ac4dc942-3375-4df0-90e2-cb84bae3f851", + "start": { + "$date": "2021-01-31T21:39:10.000Z" + }, + "end": { + "$date": "2021-01-31T22:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e490ed2-3a6e-42c5-b4ab-dc12cae3bd8b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-01-31T21:40:05.000Z" + }, + "end": { + "$date": "2021-01-31T22:15:53.000Z" + }, + "events": [ + { + "uuid": "9e9ab16b-c8f5-4bea-9600-0f203b551f8a", + "start": { + "$date": "2021-01-31T21:40:05.000Z" + }, + "end": { + "$date": "2021-01-31T22:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e74ea315-ccb5-4afa-bcf6-a9c5f108f3da", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-01-31T22:03:16.000Z" + }, + "end": { + "$date": "2021-02-01T02:52:46.000Z" + }, + "events": [ + { + "uuid": "193e9e92-3a34-448c-b2ec-788321246586", + "start": { + "$date": "2021-01-31T22:03:16.000Z" + }, + "end": { + "$date": "2021-02-01T00:34:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "17e41ff6-a4fb-4db1-a2d4-0ddb10cf36ce", + "start": { + "$date": "2021-02-01T00:34:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:06:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59bc80c6-a0e7-403b-928f-1d219a29f8ca", + "start": { + "$date": "2021-02-01T01:06:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:16:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3cb27e95-6286-47d2-ac9a-9f810a6cce72", + "start": { + "$date": "2021-02-01T01:16:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:17:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f666e44-bc9f-4c4d-814a-2716f62ed038", + "start": { + "$date": "2021-02-01T01:17:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:27:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93f69495-be33-4cab-b66d-a923606307d5", + "start": { + "$date": "2021-02-01T01:27:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:33:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36960cd1-512f-4e8f-9da8-211b736430dd", + "start": { + "$date": "2021-02-01T01:33:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:43:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "460e8f2b-ceeb-42b5-a60d-69e9f9ec1128", + "start": { + "$date": "2021-02-01T01:43:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:49:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae995975-8db8-46d8-8cf3-386730cb760c", + "start": { + "$date": "2021-02-01T01:49:16.000Z" + }, + "end": { + "$date": "2021-02-01T01:59:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a0a4c5f-9ba3-456b-a1bf-ee9d8a7ab2f7", + "start": { + "$date": "2021-02-01T01:59:16.000Z" + }, + "end": { + "$date": "2021-02-01T02:14:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d3be38d-bfe5-45f6-941d-1cb9170a3718", + "start": { + "$date": "2021-02-01T02:14:16.000Z" + }, + "end": { + "$date": "2021-02-01T02:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcc3d0c0-0e9d-4a6d-8bc4-e08471b7df6e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T22:22:51.000Z" + }, + "end": { + "$date": "2021-01-31T22:55:23.000Z" + }, + "events": [ + { + "uuid": "936615d8-ea83-4130-afaa-a6b1a5e824e8", + "start": { + "$date": "2021-01-31T22:22:51.000Z" + }, + "end": { + "$date": "2021-01-31T22:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3cc307c-da98-4e23-afb6-e5152320554b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-01-31T22:55:33.000Z" + }, + "end": { + "$date": "2021-01-31T22:57:37.000Z" + }, + "events": [ + { + "uuid": "33b67b6d-48fd-4a62-a98d-855085643862", + "start": { + "$date": "2021-01-31T22:55:33.000Z" + }, + "end": { + "$date": "2021-01-31T22:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "680cb34a-a62e-4256-86de-e2ece7439103", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-31T22:21:53.000Z" + }, + "end": { + "$date": "2021-01-31T22:24:24.000Z" + }, + "events": [ + { + "uuid": "700c1b8f-45c9-4a46-a63a-af8bc65054aa", + "start": { + "$date": "2021-01-31T22:21:53.000Z" + }, + "end": { + "$date": "2021-01-31T22:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "05d06ed6-fe06-4017-89f5-c2636497dc7b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-01-31T22:28:28.000Z" + }, + "end": { + "$date": "2021-02-01T02:17:17.000Z" + }, + "events": [ + { + "uuid": "a9d0f034-d4fa-4cd8-8890-a9d2ef16096e", + "start": { + "$date": "2021-01-31T22:28:28.000Z" + }, + "end": { + "$date": "2021-01-31T23:30:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7fe97d2-cf09-4690-ae0a-988401d321a0", + "start": { + "$date": "2021-01-31T23:30:28.000Z" + }, + "end": { + "$date": "2021-02-01T00:34:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "132c6342-5c4c-4a22-bd45-36242e06fde6", + "start": { + "$date": "2021-02-01T00:34:28.000Z" + }, + "end": { + "$date": "2021-02-01T00:36:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "53a29cc3-de0e-4bd3-a014-f4ade0469137", + "start": { + "$date": "2021-02-01T00:36:28.000Z" + }, + "end": { + "$date": "2021-02-01T00:49:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "33ae5100-cc50-483b-906e-4dc85c14dbd1", + "start": { + "$date": "2021-02-01T00:49:28.000Z" + }, + "end": { + "$date": "2021-02-01T00:51:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bdaf52f-8ba7-4242-87b0-a65085b28f46", + "start": { + "$date": "2021-02-01T00:51:28.000Z" + }, + "end": { + "$date": "2021-02-01T01:31:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b8a1dd54-1485-4dca-b98a-00c2ca0dcc44", + "start": { + "$date": "2021-02-01T01:31:28.000Z" + }, + "end": { + "$date": "2021-02-01T01:33:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3ce78827-c51b-44f7-821d-cd10c2cd92d5", + "start": { + "$date": "2021-02-01T01:33:28.000Z" + }, + "end": { + "$date": "2021-02-01T01:39:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d6485a1-1f6e-4624-bd5c-d6fd701e9225", + "start": { + "$date": "2021-02-01T01:39:28.000Z" + }, + "end": { + "$date": "2021-02-01T01:42:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8980030-3b31-45a0-a95b-61cd7a9ac224", + "start": { + "$date": "2021-02-01T01:42:28.000Z" + }, + "end": { + "$date": "2021-02-01T01:43:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69ea6975-dc17-4711-8c05-6b4106fece41", + "start": { + "$date": "2021-02-01T01:43:28.000Z" + }, + "end": { + "$date": "2021-02-01T02:17:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "869116fd-b29b-4cd7-9d83-ba0fb8bf7dc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T23:04:33.000Z" + }, + "end": { + "$date": "2021-01-31T23:33:15.000Z" + }, + "events": [ + { + "uuid": "21baf907-28e7-4a57-93e0-8e54c75b8d26", + "start": { + "$date": "2021-01-31T23:04:33.000Z" + }, + "end": { + "$date": "2021-01-31T23:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b650126c-ee79-401a-acc1-f1949583bd59", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T00:08:31.000Z" + }, + "end": { + "$date": "2021-02-01T00:09:26.000Z" + }, + "events": [ + { + "uuid": "16e43401-d8fa-45fd-b66f-86cb112d8e57", + "start": { + "$date": "2021-02-01T00:08:31.000Z" + }, + "end": { + "$date": "2021-02-01T00:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "42429f65-0198-48e4-bf17-833e37638078", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-01-31T23:09:40.000Z" + }, + "end": { + "$date": "2021-02-01T03:31:22.000Z" + }, + "events": [ + { + "uuid": "b28cb9a1-698c-4f9a-a96f-83dc3edc1c09", + "start": { + "$date": "2021-01-31T23:09:40.000Z" + }, + "end": { + "$date": "2021-02-01T03:31:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c058d91-f88f-466b-87d3-7bffc4f2145b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-01-31T23:38:23.000Z" + }, + "end": { + "$date": "2021-01-31T23:49:56.000Z" + }, + "events": [ + { + "uuid": "1f4e109e-bcc2-4e75-8a1d-e3cdcd65b3a6", + "start": { + "$date": "2021-01-31T23:38:23.000Z" + }, + "end": { + "$date": "2021-01-31T23:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56454e91-7c01-46d0-9bb8-d6736696874a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T00:08:45.000Z" + }, + "end": { + "$date": "2021-02-01T00:08:41.000Z" + }, + "events": [ + { + "uuid": "e24463f7-c25e-44ed-9343-f382470025e4", + "start": { + "$date": "2021-02-01T00:08:45.000Z" + }, + "end": { + "$date": "2021-02-01T00:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7bc60f09-dfcc-4f6b-aa5c-8794f3909f90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-01T00:24:12.000Z" + }, + "end": { + "$date": "2021-02-01T00:29:30.000Z" + }, + "events": [ + { + "uuid": "553211ff-1299-4725-97c3-d11439d7d647", + "start": { + "$date": "2021-02-01T00:24:12.000Z" + }, + "end": { + "$date": "2021-02-01T00:29:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "9dbb0a63-8755-4708-a1fe-a012578ef494", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-01T00:35:35.000Z" + }, + "end": { + "$date": "2021-02-01T02:21:29.000Z" + }, + "events": [ + { + "uuid": "10e973bc-f822-4467-be35-2c55d5d0a744", + "start": { + "$date": "2021-02-01T00:35:35.000Z" + }, + "end": { + "$date": "2021-02-01T02:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "361c37a8-bc25-4f81-b085-815bf35824dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-01T00:39:02.000Z" + }, + "end": { + "$date": "2021-02-01T02:45:51.000Z" + }, + "events": [ + { + "uuid": "8e7ae593-2b28-4d93-bc67-b72782bd9d08", + "start": { + "$date": "2021-02-01T00:39:02.000Z" + }, + "end": { + "$date": "2021-02-01T01:44:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f0ca1b57-d727-4834-9bb3-59b9f6059f12", + "start": { + "$date": "2021-02-01T01:44:02.000Z" + }, + "end": { + "$date": "2021-02-01T02:23:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef91bb30-44d3-4a42-bb9f-68f259fbef61", + "start": { + "$date": "2021-02-01T02:23:02.000Z" + }, + "end": { + "$date": "2021-02-01T02:25:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9c16069-9182-4a01-b779-1c984c53bc91", + "start": { + "$date": "2021-02-01T02:25:02.000Z" + }, + "end": { + "$date": "2021-02-01T02:42:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b54c9a3-0510-48e7-a1c7-eb432bcb1b5a", + "start": { + "$date": "2021-02-01T02:42:02.000Z" + }, + "end": { + "$date": "2021-02-01T02:45:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8c2d84b8-5be5-45cf-a230-78376e3507c8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-01T01:10:19.000Z" + }, + "end": { + "$date": "2021-02-01T01:18:38.000Z" + }, + "events": [ + { + "uuid": "83609955-60a7-42ef-b829-4a578d165ca9", + "start": { + "$date": "2021-02-01T01:10:19.000Z" + }, + "end": { + "$date": "2021-02-01T01:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "87a606ab-1a6e-436b-8317-81e617bbf31f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-01T01:23:32.000Z" + }, + "end": { + "$date": "2021-02-01T02:14:56.000Z" + }, + "events": [ + { + "uuid": "bbb3201e-50da-4f9f-91c8-8797fec48aa3", + "start": { + "$date": "2021-02-01T01:23:32.000Z" + }, + "end": { + "$date": "2021-02-01T02:14:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a76fe477-941e-4dbe-8c6a-3d667b11829a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-01T02:26:05.000Z" + }, + "end": { + "$date": "2021-02-01T04:22:49.000Z" + }, + "events": [ + { + "uuid": "cb1f3d6f-2e15-4b89-8b4c-be430281e12d", + "start": { + "$date": "2021-02-01T02:26:05.000Z" + }, + "end": { + "$date": "2021-02-01T04:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7db984d-2618-45ec-b247-0b98607917e9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T02:53:50.000Z" + }, + "end": { + "$date": "2021-02-01T03:26:24.000Z" + }, + "events": [ + { + "uuid": "b8e293ea-4e63-4a4a-a3ee-fc65ad51c496", + "start": { + "$date": "2021-02-01T02:53:50.000Z" + }, + "end": { + "$date": "2021-02-01T03:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "1b34d5dc-8960-4fcf-8378-c376c3a4809e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-01T03:03:18.000Z" + }, + "end": { + "$date": "2021-02-01T03:42:59.000Z" + }, + "events": [ + { + "uuid": "a889ea49-063d-42d3-92fb-fbd08097e990", + "start": { + "$date": "2021-02-01T03:03:18.000Z" + }, + "end": { + "$date": "2021-02-01T03:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a5b65e75-134f-485c-9f9a-29a9e322c52e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-01T03:17:17.000Z" + }, + "end": { + "$date": "2021-02-01T05:18:10.000Z" + }, + "events": [ + { + "uuid": "e82c35b3-282a-4287-bdcf-2ace0c5b8f7c", + "start": { + "$date": "2021-02-01T03:17:17.000Z" + }, + "end": { + "$date": "2021-02-01T05:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d937839-1197-4c92-b31b-2e5c803d9e42", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T05:15:39.000Z" + }, + "end": { + "$date": "2021-02-01T05:16:31.000Z" + }, + "events": [ + { + "uuid": "a07afbcb-030b-457c-8f21-deb3d88944ff", + "start": { + "$date": "2021-02-01T05:15:39.000Z" + }, + "end": { + "$date": "2021-02-01T05:16:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9628201c-1d48-4fb5-a7f6-f8b6d87ffd6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T03:33:15.000Z" + }, + "end": { + "$date": "2021-02-01T03:53:26.000Z" + }, + "events": [ + { + "uuid": "5940fae1-8bef-4c19-a8dd-550d957b9a0d", + "start": { + "$date": "2021-02-01T03:33:15.000Z" + }, + "end": { + "$date": "2021-02-01T03:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2246d853-5e8a-4c40-aff9-a1833e25f7e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-01T03:42:46.000Z" + }, + "end": { + "$date": "2021-02-01T03:48:30.000Z" + }, + "events": [ + { + "uuid": "b3fff324-18de-415f-9444-879f9517f726", + "start": { + "$date": "2021-02-01T03:42:46.000Z" + }, + "end": { + "$date": "2021-02-01T03:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "24de810a-8686-4c94-b936-6785429b4403", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-01T03:48:57.000Z" + }, + "end": { + "$date": "2021-02-01T04:33:17.000Z" + }, + "events": [ + { + "uuid": "48f405a7-4af2-48db-ad52-e64b6e01140d", + "start": { + "$date": "2021-02-01T03:48:57.000Z" + }, + "end": { + "$date": "2021-02-01T04:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1386234a-27c0-4be9-9d1b-28c993bfe722", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T04:36:23.000Z" + }, + "end": { + "$date": "2021-02-01T04:36:23.000Z" + }, + "events": [ + { + "uuid": "eca7fa7d-88ba-48af-a5b1-90abc4e95582", + "start": { + "$date": "2021-02-01T04:36:23.000Z" + }, + "end": { + "$date": "2021-02-01T04:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a99f2576-0d77-428f-93f3-d10f4b2f0fef", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-01T03:55:42.000Z" + }, + "end": { + "$date": "2021-02-01T05:18:20.000Z" + }, + "events": [ + { + "uuid": "b852eefe-7cd4-4ec3-a442-d0f5ca489af6", + "start": { + "$date": "2021-02-01T03:55:42.000Z" + }, + "end": { + "$date": "2021-02-01T05:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4658b2f7-3ecc-44d6-862c-c228f178b53b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-01T04:19:13.000Z" + }, + "end": { + "$date": "2021-02-01T05:31:08.000Z" + }, + "events": [ + { + "uuid": "bb239b65-de4c-4a0f-8ba0-286de7058ed7", + "start": { + "$date": "2021-02-01T04:19:13.000Z" + }, + "end": { + "$date": "2021-02-01T05:31:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "05a01154-4f8f-49c7-8f02-989dcac776ee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-01T04:23:24.000Z" + }, + "end": { + "$date": "2021-02-01T05:32:40.000Z" + }, + "events": [ + { + "uuid": "0bdf3ebd-eca9-4638-88fb-7fe2f1f714a2", + "start": { + "$date": "2021-02-01T04:23:24.000Z" + }, + "end": { + "$date": "2021-02-01T05:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "e28c2671-5403-4c63-af7b-e461e2d42daf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-01T04:23:35.000Z" + }, + "end": { + "$date": "2021-02-01T05:36:31.000Z" + }, + "events": [ + { + "uuid": "bded89ed-b876-4f57-8d0d-438824ebb27e", + "start": { + "$date": "2021-02-01T04:23:35.000Z" + }, + "end": { + "$date": "2021-02-01T05:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65f52615-ee3a-4d21-a132-66efd9e52d38", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-01T04:36:05.000Z" + }, + "end": { + "$date": "2021-02-01T05:06:06.000Z" + }, + "events": [ + { + "uuid": "eb8e23f7-81d6-45c4-95f9-b66d798cd435", + "start": { + "$date": "2021-02-01T04:36:05.000Z" + }, + "end": { + "$date": "2021-02-01T05:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad67c084-b724-47f9-8d23-9cb3d5cd8c2f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T04:37:35.000Z" + }, + "end": { + "$date": "2021-02-01T04:39:13.000Z" + }, + "events": [ + { + "uuid": "4221ece0-0149-4cc2-b1d7-b062964a8a9d", + "start": { + "$date": "2021-02-01T04:37:35.000Z" + }, + "end": { + "$date": "2021-02-01T04:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86f96c58-9de8-4617-83b7-bc3eb1ab7539", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T04:43:32.000Z" + }, + "end": { + "$date": "2021-02-01T05:15:37.000Z" + }, + "events": [ + { + "uuid": "d9e5418c-6979-4b47-858b-7150b1fbff56", + "start": { + "$date": "2021-02-01T04:43:32.000Z" + }, + "end": { + "$date": "2021-02-01T05:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c9ed97f-47a3-4c50-940a-372fb5faddd9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-01T05:00:13.000Z" + }, + "end": { + "$date": "2021-02-01T08:18:28.000Z" + }, + "events": [ + { + "uuid": "5d256a8e-b74f-4f08-8dac-9281c091d282", + "start": { + "$date": "2021-02-01T05:00:13.000Z" + }, + "end": { + "$date": "2021-02-01T08:18:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "08365025-64dc-4a29-bd99-880722c5e779", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-01T05:05:52.000Z" + }, + "end": { + "$date": "2021-02-01T08:06:59.000Z" + }, + "events": [ + { + "uuid": "6f8650d5-1f9b-43bd-bdbe-c6e602a202a1", + "start": { + "$date": "2021-02-01T05:05:52.000Z" + }, + "end": { + "$date": "2021-02-01T08:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e330c4f5-51f8-4e9e-8f3d-fe77e4ce46aa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-01T05:47:47.000Z" + }, + "end": { + "$date": "2021-02-01T05:50:00.000Z" + }, + "events": [ + { + "uuid": "72417419-7875-416d-b676-28cdedd31dfc", + "start": { + "$date": "2021-02-01T05:47:47.000Z" + }, + "end": { + "$date": "2021-02-01T05:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b81d571a-8aec-4c7d-a2dd-f1913dd256fb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-01T05:46:44.000Z" + }, + "end": { + "$date": "2021-02-01T07:18:52.000Z" + }, + "events": [ + { + "uuid": "c6560762-14bc-458b-b157-3848ec025305", + "start": { + "$date": "2021-02-01T05:46:44.000Z" + }, + "end": { + "$date": "2021-02-01T07:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0474d15f-5432-4419-b808-250999476e24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T05:56:43.000Z" + }, + "end": { + "$date": "2021-02-01T06:23:29.000Z" + }, + "events": [ + { + "uuid": "930b8b76-09a5-4ca8-b768-29c4616bbb3e", + "start": { + "$date": "2021-02-01T05:56:43.000Z" + }, + "end": { + "$date": "2021-02-01T06:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "dd88cda6-03ac-4b0c-bd85-92ffc1200b7c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-01T05:51:18.000Z" + }, + "end": { + "$date": "2021-02-01T06:05:14.000Z" + }, + "events": [ + { + "uuid": "095ad232-2802-499a-a431-d71f34ad9e97", + "start": { + "$date": "2021-02-01T05:51:18.000Z" + }, + "end": { + "$date": "2021-02-01T06:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fecb97d3-0688-4b8d-ba08-f6bd252a38bb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-01T05:57:23.000Z" + }, + "end": { + "$date": "2021-02-01T06:23:24.000Z" + }, + "events": [ + { + "uuid": "0cec7744-998c-4681-8fad-cae6dbc26656", + "start": { + "$date": "2021-02-01T05:57:23.000Z" + }, + "end": { + "$date": "2021-02-01T06:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dd3615d2-dcd7-4bc4-912f-3a88b297261f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-01T06:06:36.000Z" + }, + "end": { + "$date": "2021-02-01T06:20:09.000Z" + }, + "events": [ + { + "uuid": "0adfc0ad-b115-4ba0-9a93-8431e3a9d620", + "start": { + "$date": "2021-02-01T06:06:36.000Z" + }, + "end": { + "$date": "2021-02-01T06:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc5128ab-94e0-4510-b377-7cfb22f957db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T09:03:56.000Z" + }, + "end": { + "$date": "2021-02-01T09:25:53.000Z" + }, + "events": [ + { + "uuid": "c47015d3-14c8-4216-97b7-7058bbdb48c2", + "start": { + "$date": "2021-02-01T09:03:56.000Z" + }, + "end": { + "$date": "2021-02-01T09:25:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd2977f2-b446-40a7-a21b-ceeb8901dd56", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T09:34:24.000Z" + }, + "end": { + "$date": "2021-02-01T10:05:07.000Z" + }, + "events": [ + { + "uuid": "34618bd0-19af-4504-8406-c27a2bee2950", + "start": { + "$date": "2021-02-01T09:34:24.000Z" + }, + "end": { + "$date": "2021-02-01T10:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a71bb19-0b0c-4e73-b5cc-39678e4679e7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T10:10:18.000Z" + }, + "end": { + "$date": "2021-02-01T10:41:43.000Z" + }, + "events": [ + { + "uuid": "3dea06e6-7849-4914-82d6-527b1cc536c4", + "start": { + "$date": "2021-02-01T10:10:18.000Z" + }, + "end": { + "$date": "2021-02-01T10:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb4d0a34-e63e-4e37-93ba-73f7307646a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T10:46:52.000Z" + }, + "end": { + "$date": "2021-02-01T11:08:59.000Z" + }, + "events": [ + { + "uuid": "5dd5d0e6-97ca-468a-b5e1-aa93dbf81bc7", + "start": { + "$date": "2021-02-01T10:46:52.000Z" + }, + "end": { + "$date": "2021-02-01T11:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dff3a0a5-f023-44d3-97d1-af5ab141f829", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T11:14:11.000Z" + }, + "end": { + "$date": "2021-02-01T11:44:23.000Z" + }, + "events": [ + { + "uuid": "c4d9e836-10fa-4814-a302-875d96abf3f8", + "start": { + "$date": "2021-02-01T11:14:11.000Z" + }, + "end": { + "$date": "2021-02-01T11:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2147f9f-5b1d-47c7-967f-2cef83d0c3e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-01T11:51:15.000Z" + }, + "end": { + "$date": "2021-02-01T12:49:22.000Z" + }, + "events": [ + { + "uuid": "10b27add-6a85-4d32-839d-3238d1d846b9", + "start": { + "$date": "2021-02-01T11:51:15.000Z" + }, + "end": { + "$date": "2021-02-01T12:12:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0d5310b-e4cc-4f8e-aea8-678deacca60b", + "start": { + "$date": "2021-02-01T12:12:15.000Z" + }, + "end": { + "$date": "2021-02-01T12:21:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94aa95c0-e2c3-4410-8193-57e072f9fe37", + "start": { + "$date": "2021-02-01T12:21:15.000Z" + }, + "end": { + "$date": "2021-02-01T12:36:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dfdc08cd-179d-421b-892d-d8a8b75968c8", + "start": { + "$date": "2021-02-01T12:36:15.000Z" + }, + "end": { + "$date": "2021-02-01T12:49:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "47d30235-634e-473b-9146-1ff3b404deb1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-01T16:18:22.000Z" + }, + "end": { + "$date": "2021-02-01T17:55:13.000Z" + }, + "events": [ + { + "uuid": "8a1422d5-f3a1-4001-99b9-f7fe54befa62", + "start": { + "$date": "2021-02-01T16:18:22.000Z" + }, + "end": { + "$date": "2021-02-01T17:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b74ac2d5-3c52-4b62-b28b-6aee6c6fe85f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-01T16:57:54.000Z" + }, + "end": { + "$date": "2021-02-01T17:12:03.000Z" + }, + "events": [ + { + "uuid": "f07facce-baac-4e2a-966f-968514c51ae8", + "start": { + "$date": "2021-02-01T16:57:54.000Z" + }, + "end": { + "$date": "2021-02-01T17:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f8ae89ef-2fc8-4f18-918a-43ebb85caf96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-01T16:57:49.000Z" + }, + "end": { + "$date": "2021-02-01T17:29:56.000Z" + }, + "events": [ + { + "uuid": "87265b67-3ed0-4014-9f71-f8dc6b616d8a", + "start": { + "$date": "2021-02-01T16:57:49.000Z" + }, + "end": { + "$date": "2021-02-01T17:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14432753-3f4a-4d30-8c1e-94c5b817212f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T17:20:05.000Z" + }, + "end": { + "$date": "2021-02-01T17:38:33.000Z" + }, + "events": [ + { + "uuid": "04ab720e-60d9-423c-8516-a77155672d17", + "start": { + "$date": "2021-02-01T17:20:05.000Z" + }, + "end": { + "$date": "2021-02-01T17:38:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6b418e18-094c-421d-9c96-d288fc3cad0b", + "uuid": "0b9bea74-392e-4113-aec5-f917ec042a7a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-01T16:18:22.000Z" + }, + "end": { + "$date": "2021-02-02T01:32:51.000Z" + }, + "events": [ + { + "uuid": "c450557c-7e86-4e92-ae72-25376a0d99a3", + "start": { + "$date": "2021-02-01T16:18:22.000Z" + }, + "end": { + "$date": "2021-02-01T22:47:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22f0b314-b831-4a0a-9d05-f4db72078984", + "start": { + "$date": "2021-02-01T22:47:22.000Z" + }, + "end": { + "$date": "2021-02-01T23:03:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c1bb5bf-d987-4241-ae20-33c3b699c41a", + "start": { + "$date": "2021-02-01T23:03:22.000Z" + }, + "end": { + "$date": "2021-02-02T01:32:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb32eebe-b5c1-42f5-ae09-360d4c05ae44", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T18:06:03.000Z" + }, + "end": { + "$date": "2021-02-01T18:23:51.000Z" + }, + "events": [ + { + "uuid": "ce295965-3b63-4813-b4ef-9d1aeea096db", + "start": { + "$date": "2021-02-01T18:06:03.000Z" + }, + "end": { + "$date": "2021-02-01T18:23:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5d39a22-f9db-4385-87f8-33e228dc5df1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T18:24:17.000Z" + }, + "end": { + "$date": "2021-02-01T18:41:49.000Z" + }, + "events": [ + { + "uuid": "95da308e-7ec4-4b3d-a73c-203ca63adcf6", + "start": { + "$date": "2021-02-01T18:24:17.000Z" + }, + "end": { + "$date": "2021-02-01T18:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f97bce55-d40b-4c2a-afd3-e5b01e4bcded", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-01T18:30:02.000Z" + }, + "end": { + "$date": "2021-02-01T18:41:07.000Z" + }, + "events": [ + { + "uuid": "8c3e1be1-72e6-4b4f-b7d6-0ec8a3d2539f", + "start": { + "$date": "2021-02-01T18:30:02.000Z" + }, + "end": { + "$date": "2021-02-01T18:41:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "45817459-fd34-42d0-9766-198025437318", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-01T18:36:25.000Z" + }, + "end": { + "$date": "2021-02-01T19:13:00.000Z" + }, + "events": [ + { + "uuid": "95427387-4a7d-4afb-9b7b-45b892212106", + "start": { + "$date": "2021-02-01T18:36:25.000Z" + }, + "end": { + "$date": "2021-02-01T19:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e758f6e-be19-4536-8eb8-089ffe8809aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T19:00:07.000Z" + }, + "end": { + "$date": "2021-02-01T19:31:08.000Z" + }, + "events": [ + { + "uuid": "db6a6618-5cf0-4ffe-bdc5-4fd1f4d60092", + "start": { + "$date": "2021-02-01T19:00:07.000Z" + }, + "end": { + "$date": "2021-02-01T19:31:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "95c36706-ab92-4924-8f94-53e6ea06a923", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-01T19:27:56.000Z" + }, + "end": { + "$date": "2021-02-01T20:13:26.000Z" + }, + "events": [ + { + "uuid": "f82a235b-acdc-4860-b20f-ff9fe206185c", + "start": { + "$date": "2021-02-01T19:27:56.000Z" + }, + "end": { + "$date": "2021-02-01T20:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc5a0d9f-5471-4074-9a1d-ef99aa0b1997", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T20:11:17.000Z" + }, + "end": { + "$date": "2021-02-01T20:11:15.000Z" + }, + "events": [ + { + "uuid": "7bb065fd-c1a0-4d89-8b3f-397ceca54789", + "start": { + "$date": "2021-02-01T20:11:17.000Z" + }, + "end": { + "$date": "2021-02-01T20:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5d4736e8-7cbb-4627-a332-4332848b33a6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-01T19:34:00.000Z" + }, + "end": { + "$date": "2021-02-01T20:20:21.000Z" + }, + "events": [ + { + "uuid": "56f12ed8-c18e-49e5-84dd-3aac65b4a5f9", + "start": { + "$date": "2021-02-01T19:34:00.000Z" + }, + "end": { + "$date": "2021-02-01T20:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cce355ce-9185-407a-ac30-1cd2d458794d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-01T20:05:03.000Z" + }, + "end": { + "$date": "2021-02-01T21:20:40.000Z" + }, + "events": [ + { + "uuid": "c3d72cca-7388-430a-8680-4e47a5e67c5c", + "start": { + "$date": "2021-02-01T20:05:03.000Z" + }, + "end": { + "$date": "2021-02-01T21:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "95a8805a-d962-438a-aad5-be4690cfe508", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-01T20:39:46.000Z" + }, + "end": { + "$date": "2021-02-01T21:51:34.000Z" + }, + "events": [ + { + "uuid": "36b2093e-c16f-4edf-ac3f-7bb9d55369cb", + "start": { + "$date": "2021-02-01T20:39:46.000Z" + }, + "end": { + "$date": "2021-02-01T21:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "70ff69d1-c2ef-4f1a-9c9a-b06e72014f01", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-01T21:18:12.000Z" + }, + "end": { + "$date": "2021-02-01T22:35:53.000Z" + }, + "events": [ + { + "uuid": "ec923600-23a8-4bc9-b477-f6c5525d3532", + "start": { + "$date": "2021-02-01T21:18:12.000Z" + }, + "end": { + "$date": "2021-02-01T22:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a013df55-bfdc-4545-adf7-73bb7a2d7e24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T22:35:33.000Z" + }, + "end": { + "$date": "2021-02-01T22:35:30.000Z" + }, + "events": [ + { + "uuid": "05024aa6-b057-4284-b8d6-f5584b9c0e99", + "start": { + "$date": "2021-02-01T22:35:33.000Z" + }, + "end": { + "$date": "2021-02-01T22:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f22d10b9-050d-4775-8750-d5340b37f1a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-01T21:59:03.000Z" + }, + "end": { + "$date": "2021-02-01T22:57:39.000Z" + }, + "events": [ + { + "uuid": "18ffbfbb-5910-4f87-b648-764efb06e68e", + "start": { + "$date": "2021-02-01T21:59:03.000Z" + }, + "end": { + "$date": "2021-02-01T22:57:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b90a9a6e-86b6-48bd-ad61-7363f56e6abb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-01T22:36:09.000Z" + }, + "end": { + "$date": "2021-02-01T23:33:42.000Z" + }, + "events": [ + { + "uuid": "cd82e819-4457-4f08-857b-77e56d1c901f", + "start": { + "$date": "2021-02-01T22:36:09.000Z" + }, + "end": { + "$date": "2021-02-01T23:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58152f03-43d5-49d3-b511-30a565e14163", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-01T22:42:24.000Z" + }, + "end": { + "$date": "2021-02-01T23:10:02.000Z" + }, + "events": [ + { + "uuid": "83e1fe9d-0cc2-4bf4-af85-ebfc8e4af3c4", + "start": { + "$date": "2021-02-01T22:42:24.000Z" + }, + "end": { + "$date": "2021-02-01T23:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73e5959f-b5b7-483c-b582-ad931ab5b793", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-01T23:09:56.000Z" + }, + "end": { + "$date": "2021-02-01T23:10:32.000Z" + }, + "events": [ + { + "uuid": "1ee2873a-4758-426d-8a47-754cbc2ed871", + "start": { + "$date": "2021-02-01T23:09:56.000Z" + }, + "end": { + "$date": "2021-02-01T23:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9301fe59-53b8-45e8-b54c-60bf8aae6e25", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-01T22:56:46.000Z" + }, + "end": { + "$date": "2021-02-01T23:08:01.000Z" + }, + "events": [ + { + "uuid": "41d8da12-02a4-4ed1-b87b-28b7e5fb0e13", + "start": { + "$date": "2021-02-01T22:56:46.000Z" + }, + "end": { + "$date": "2021-02-01T23:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "661535d6-65cc-459f-9ff4-680ebad94858", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-01T23:04:09.000Z" + }, + "end": { + "$date": "2021-02-02T00:21:21.000Z" + }, + "events": [ + { + "uuid": "178703c8-fc93-4c6b-b27c-fe947e97db37", + "start": { + "$date": "2021-02-01T23:04:09.000Z" + }, + "end": { + "$date": "2021-02-02T00:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a8d17ec8-5ef3-4ddc-b024-15b9ebbb244a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-01T23:44:01.000Z" + }, + "end": { + "$date": "2021-02-02T01:08:14.000Z" + }, + "events": [ + { + "uuid": "040501c1-0013-43d1-98e0-2c4b6d5f1cf5", + "start": { + "$date": "2021-02-01T23:44:01.000Z" + }, + "end": { + "$date": "2021-02-02T01:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb28a835-36bb-429f-a4cc-153a9ecba5cd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T00:16:16.000Z" + }, + "end": { + "$date": "2021-02-02T00:41:51.000Z" + }, + "events": [ + { + "uuid": "4723f931-c1e1-4cbb-ba40-8e25649a49db", + "start": { + "$date": "2021-02-02T00:16:16.000Z" + }, + "end": { + "$date": "2021-02-02T00:41:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7e316ce7-08f7-44bf-81b9-2df0110a220f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T00:42:53.000Z" + }, + "end": { + "$date": "2021-02-02T01:51:05.000Z" + }, + "events": [ + { + "uuid": "a4d341b6-7432-4722-86cb-60ed604c4cb6", + "start": { + "$date": "2021-02-02T00:42:53.000Z" + }, + "end": { + "$date": "2021-02-02T01:51:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d6d02ea9-0e09-4afc-9963-baccee7367ae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-02T00:26:11.000Z" + }, + "end": { + "$date": "2021-02-02T00:27:28.000Z" + }, + "events": [ + { + "uuid": "fd9f93a6-aeb4-4d80-8f9a-8c42739f17cc", + "start": { + "$date": "2021-02-02T00:26:11.000Z" + }, + "end": { + "$date": "2021-02-02T00:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38d9ded6-6323-4ef8-8c94-1506222c5b77", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-02T00:29:21.000Z" + }, + "end": { + "$date": "2021-02-02T00:52:21.000Z" + }, + "events": [ + { + "uuid": "4ac4a0de-ce3f-4e22-8df6-f34f36a0d80f", + "start": { + "$date": "2021-02-02T00:29:21.000Z" + }, + "end": { + "$date": "2021-02-02T00:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "054fb584-0807-4b9d-9e26-92581b132e0d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-02T00:37:35.000Z" + }, + "end": { + "$date": "2021-02-02T01:14:59.000Z" + }, + "events": [ + { + "uuid": "a15a0091-5883-4b52-a61e-5f0767a545df", + "start": { + "$date": "2021-02-02T00:37:35.000Z" + }, + "end": { + "$date": "2021-02-02T01:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2097f75c-162c-443d-886c-178657be4835", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T00:49:21.000Z" + }, + "end": { + "$date": "2021-02-02T01:23:22.000Z" + }, + "events": [ + { + "uuid": "aaa9c67f-7871-433e-b8c8-1fc429af347a", + "start": { + "$date": "2021-02-02T00:49:21.000Z" + }, + "end": { + "$date": "2021-02-02T01:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "36c2a365-0ba8-4949-851b-200467677b6b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-02T00:50:24.000Z" + }, + "end": { + "$date": "2021-02-02T00:55:44.000Z" + }, + "events": [ + { + "uuid": "c6b02649-2fdb-463d-83a6-87c534b31fa4", + "start": { + "$date": "2021-02-02T00:50:24.000Z" + }, + "end": { + "$date": "2021-02-02T00:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c10d1e9f-3339-4fbc-bae6-38b912ed47eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T00:59:46.000Z" + }, + "end": { + "$date": "2021-02-02T01:28:44.000Z" + }, + "events": [ + { + "uuid": "95653585-35b2-4bf9-8484-c9fb20a368e4", + "start": { + "$date": "2021-02-02T00:59:46.000Z" + }, + "end": { + "$date": "2021-02-02T01:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9fa36426-2004-4930-966e-e066bbe5c066", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T01:25:30.000Z" + }, + "end": { + "$date": "2021-02-02T01:50:46.000Z" + }, + "events": [ + { + "uuid": "61fb1bd8-63af-4d4c-9421-f7124a0eea3c", + "start": { + "$date": "2021-02-02T01:25:30.000Z" + }, + "end": { + "$date": "2021-02-02T01:50:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e635fba3-7cf8-4308-805f-9835568a21b1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T01:47:05.000Z" + }, + "end": { + "$date": "2021-02-02T02:17:37.000Z" + }, + "events": [ + { + "uuid": "fb75f031-af28-46d5-89b0-4eebe5769236", + "start": { + "$date": "2021-02-02T01:47:05.000Z" + }, + "end": { + "$date": "2021-02-02T02:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac9b2f48-29a0-499c-a1cb-fcd9a78b9795", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-02T01:31:17.000Z" + }, + "end": { + "$date": "2021-02-02T01:36:01.000Z" + }, + "events": [ + { + "uuid": "56bb0f86-55c1-4ecd-b7e3-97512384649e", + "start": { + "$date": "2021-02-02T01:31:17.000Z" + }, + "end": { + "$date": "2021-02-02T01:36:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5aeb6108-469f-4878-853d-174fa7e2410d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-02T01:31:58.000Z" + }, + "end": { + "$date": "2021-02-02T06:41:39.000Z" + }, + "events": [ + { + "uuid": "a540eb22-ebf7-4445-8c36-fe8bee8f3ed9", + "start": { + "$date": "2021-02-02T01:31:58.000Z" + }, + "end": { + "$date": "2021-02-02T06:41:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2d98996-c01c-4fb2-b9cc-bfd59e9cf8ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-02T02:17:38.000Z" + }, + "end": { + "$date": "2021-02-02T02:22:33.000Z" + }, + "events": [ + { + "uuid": "d25d1936-4e83-419b-b50f-fb92b33581fb", + "start": { + "$date": "2021-02-02T02:17:38.000Z" + }, + "end": { + "$date": "2021-02-02T02:22:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "c5ce16a2-7c7e-49a7-8fbf-684aa61fcbcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T01:54:46.000Z" + }, + "end": { + "$date": "2021-02-02T02:06:56.000Z" + }, + "events": [ + { + "uuid": "fad1be93-4d2c-43a0-904f-8aec8dee124e", + "start": { + "$date": "2021-02-02T01:54:46.000Z" + }, + "end": { + "$date": "2021-02-02T02:06:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3ecac701-056f-4e87-b808-36dea993e594", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-02T02:04:08.000Z" + }, + "end": { + "$date": "2021-02-02T02:08:50.000Z" + }, + "events": [ + { + "uuid": "d0f94ffd-7c8d-4afe-ba9c-f5718d3c47eb", + "start": { + "$date": "2021-02-02T02:04:08.000Z" + }, + "end": { + "$date": "2021-02-02T02:08:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e01ba57c-8980-42ce-9d55-7ec10c56bcf1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T02:12:37.000Z" + }, + "end": { + "$date": "2021-02-02T02:18:57.000Z" + }, + "events": [ + { + "uuid": "40aa9ae3-ca6c-4759-8d19-6b92be0b5133", + "start": { + "$date": "2021-02-02T02:12:37.000Z" + }, + "end": { + "$date": "2021-02-02T02:18:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b442c9e-304b-471f-962b-610d137f351d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T02:27:12.000Z" + }, + "end": { + "$date": "2021-02-02T03:01:18.000Z" + }, + "events": [ + { + "uuid": "dd87d7e6-aa70-443c-822c-3bb1e9d224a4", + "start": { + "$date": "2021-02-02T02:27:12.000Z" + }, + "end": { + "$date": "2021-02-02T03:01:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ada4156-9220-4811-b130-8b8c52e11b17", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-02T03:01:13.000Z" + }, + "end": { + "$date": "2021-02-02T03:02:12.000Z" + }, + "events": [ + { + "uuid": "fa849410-9e29-4b04-b90a-9252853937da", + "start": { + "$date": "2021-02-02T03:01:13.000Z" + }, + "end": { + "$date": "2021-02-02T03:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4408d517-040b-4a34-bec7-0de1bec56e6a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T02:26:32.000Z" + }, + "end": { + "$date": "2021-02-02T06:26:46.000Z" + }, + "events": [ + { + "uuid": "5edbab28-8843-43b3-9437-f636ba6f8e20", + "start": { + "$date": "2021-02-02T02:26:32.000Z" + }, + "end": { + "$date": "2021-02-02T03:13:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dea0ecf2-ac44-48fa-a4cc-9ca7e105ff40", + "start": { + "$date": "2021-02-02T03:13:32.000Z" + }, + "end": { + "$date": "2021-02-02T03:18:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c006762-5c05-4512-b94e-61c7493ee94b", + "start": { + "$date": "2021-02-02T03:18:32.000Z" + }, + "end": { + "$date": "2021-02-02T03:28:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b8bc129e-53af-4b1a-8977-76dcee875074", + "start": { + "$date": "2021-02-02T03:28:32.000Z" + }, + "end": { + "$date": "2021-02-02T03:35:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "caa9e346-9636-4562-8c33-ca74ed7fd22e", + "start": { + "$date": "2021-02-02T03:35:32.000Z" + }, + "end": { + "$date": "2021-02-02T06:26:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ce44b617-cae7-455b-8de4-9bddfadf8d3e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-02T02:41:01.000Z" + }, + "end": { + "$date": "2021-02-02T06:26:44.000Z" + }, + "events": [ + { + "uuid": "99ed103a-f6c0-47f5-a56f-bda21f0a7707", + "start": { + "$date": "2021-02-02T02:41:01.000Z" + }, + "end": { + "$date": "2021-02-02T06:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0d83eac8-850e-49d4-a07a-d052f4ec56ca", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T02:53:43.000Z" + }, + "end": { + "$date": "2021-02-02T06:13:18.000Z" + }, + "events": [ + { + "uuid": "f757e99c-a395-4c16-9dd8-966e1767a069", + "start": { + "$date": "2021-02-02T02:53:43.000Z" + }, + "end": { + "$date": "2021-02-02T05:31:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f656644f-94bf-4539-a644-dc0b86571261", + "start": { + "$date": "2021-02-02T05:31:43.000Z" + }, + "end": { + "$date": "2021-02-02T05:46:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5937b9b9-063b-4e4a-b4bc-e0a8acc39407", + "start": { + "$date": "2021-02-02T05:46:43.000Z" + }, + "end": { + "$date": "2021-02-02T06:07:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a6959a17-c061-4951-bbd0-21dea6c3fdcb", + "start": { + "$date": "2021-02-02T06:07:43.000Z" + }, + "end": { + "$date": "2021-02-02T06:08:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7662c953-d22c-450b-9738-5af1cb87ac45", + "start": { + "$date": "2021-02-02T06:08:43.000Z" + }, + "end": { + "$date": "2021-02-02T06:13:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb6ee3be-86bf-4771-91c6-200953f830d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T03:01:44.000Z" + }, + "end": { + "$date": "2021-02-02T03:04:23.000Z" + }, + "events": [ + { + "uuid": "820aef48-e679-44eb-992a-0517cb4dbb3d", + "start": { + "$date": "2021-02-02T03:01:44.000Z" + }, + "end": { + "$date": "2021-02-02T03:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "781a4b20-0ad5-4664-8223-1fda8265c22d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-02T04:27:06.000Z" + }, + "end": { + "$date": "2021-02-02T04:27:50.000Z" + }, + "events": [ + { + "uuid": "f70cb51b-1911-44c1-bc4e-2e996bc5915b", + "start": { + "$date": "2021-02-02T04:27:06.000Z" + }, + "end": { + "$date": "2021-02-02T04:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7f0a865-48ad-4797-bc52-43502913bb84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T03:06:44.000Z" + }, + "end": { + "$date": "2021-02-02T03:38:39.000Z" + }, + "events": [ + { + "uuid": "835f8bb6-4583-4360-9001-cb5c9d30c105", + "start": { + "$date": "2021-02-02T03:06:44.000Z" + }, + "end": { + "$date": "2021-02-02T03:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1659a817-6d8d-4b3d-9987-3d70d650624e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-02T03:06:49.000Z" + }, + "end": { + "$date": "2021-02-02T03:38:46.000Z" + }, + "events": [ + { + "uuid": "1be3670a-7975-4ce7-9e0c-10d482579716", + "start": { + "$date": "2021-02-02T03:06:49.000Z" + }, + "end": { + "$date": "2021-02-02T03:38:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e471431f-bb54-4656-8c69-726427b64479", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T03:06:53.000Z" + }, + "end": { + "$date": "2021-02-02T03:38:54.000Z" + }, + "events": [ + { + "uuid": "62d95dc4-5a59-4782-a91c-5fe5993bb52c", + "start": { + "$date": "2021-02-02T03:06:53.000Z" + }, + "end": { + "$date": "2021-02-02T03:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "5928fc76-aaa4-4543-882a-ea8d2f3d0e4f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-02T03:12:15.000Z" + }, + "end": { + "$date": "2021-02-02T03:39:27.000Z" + }, + "events": [ + { + "uuid": "e775d8e9-149b-4381-9dac-fd69ea836dc6", + "start": { + "$date": "2021-02-02T03:12:15.000Z" + }, + "end": { + "$date": "2021-02-02T03:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b881ef63-aea9-4b4b-9ded-e7ab43e0aaa3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T03:56:36.000Z" + }, + "end": { + "$date": "2021-02-02T04:26:58.000Z" + }, + "events": [ + { + "uuid": "8cba68ca-a145-40fb-87d6-f636e385b8c5", + "start": { + "$date": "2021-02-02T03:56:36.000Z" + }, + "end": { + "$date": "2021-02-02T04:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44788e65-27d6-4e0b-941f-fd4ca3b57b9c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-02T03:40:07.000Z" + }, + "end": { + "$date": "2021-02-02T03:43:07.000Z" + }, + "events": [ + { + "uuid": "40add8ce-77f9-4356-9944-0f8877725e75", + "start": { + "$date": "2021-02-02T03:40:07.000Z" + }, + "end": { + "$date": "2021-02-02T03:43:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "933532d4-256f-4d3d-809e-ab2222f32078", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T03:40:07.000Z" + }, + "end": { + "$date": "2021-02-02T03:43:06.000Z" + }, + "events": [ + { + "uuid": "c8e19e30-f18d-45dc-9f4f-99af6477bd01", + "start": { + "$date": "2021-02-02T03:40:07.000Z" + }, + "end": { + "$date": "2021-02-02T03:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d34e8bc7-ab78-4f31-af6a-f186d83fc260", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T03:57:05.000Z" + }, + "end": { + "$date": "2021-02-02T04:26:55.000Z" + }, + "events": [ + { + "uuid": "f9f6604f-c5ed-4422-b2b5-40cbb6473a2a", + "start": { + "$date": "2021-02-02T03:57:05.000Z" + }, + "end": { + "$date": "2021-02-02T04:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a39e2289-333f-44f8-bd37-3453e18a7bb6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-02T03:56:29.000Z" + }, + "end": { + "$date": "2021-02-02T04:27:04.000Z" + }, + "events": [ + { + "uuid": "a48777b2-0613-48f8-8c97-fab640ce27f1", + "start": { + "$date": "2021-02-02T03:56:29.000Z" + }, + "end": { + "$date": "2021-02-02T04:27:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c635208-f3c4-4f95-ac12-c1454ebee457", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-02T04:28:59.000Z" + }, + "end": { + "$date": "2021-02-02T04:54:10.000Z" + }, + "events": [ + { + "uuid": "11a4cbc0-53d5-45c9-84ea-d0c06b632676", + "start": { + "$date": "2021-02-02T04:28:59.000Z" + }, + "end": { + "$date": "2021-02-02T04:54:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cd45245-e422-4102-8479-888217c379e2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-02T05:21:10.000Z" + }, + "end": { + "$date": "2021-02-02T05:21:51.000Z" + }, + "events": [ + { + "uuid": "682368fa-88a8-4d92-be6d-bae43e9ea1b8", + "start": { + "$date": "2021-02-02T05:21:10.000Z" + }, + "end": { + "$date": "2021-02-02T05:21:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1ad651f-50fa-478e-a0d3-ab28695875dc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-02T04:55:43.000Z" + }, + "end": { + "$date": "2021-02-02T06:57:09.000Z" + }, + "events": [ + { + "uuid": "7c49c69c-8fe4-450a-9901-a9970958638a", + "start": { + "$date": "2021-02-02T04:55:43.000Z" + }, + "end": { + "$date": "2021-02-02T06:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b74c5c1-de83-4f31-8483-adde314b1ee5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-02T05:26:46.000Z" + }, + "end": { + "$date": "2021-02-02T06:11:12.000Z" + }, + "events": [ + { + "uuid": "5fbef3fc-5b94-48ef-bad4-3f457f03bb9e", + "start": { + "$date": "2021-02-02T05:26:46.000Z" + }, + "end": { + "$date": "2021-02-02T06:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "428bdbaa-40e1-4289-8119-86ed2155978c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T06:02:45.000Z" + }, + "end": { + "$date": "2021-02-02T06:24:08.000Z" + }, + "events": [ + { + "uuid": "6f97bdf5-f0dc-4ef0-9e46-484e1d4ebe02", + "start": { + "$date": "2021-02-02T06:02:45.000Z" + }, + "end": { + "$date": "2021-02-02T06:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1143df85-4110-4389-8bba-a31ac1ba7ad6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T06:26:07.000Z" + }, + "end": { + "$date": "2021-02-02T06:29:18.000Z" + }, + "events": [ + { + "uuid": "3d8ec51d-3f24-4343-afa3-5c4ad08b9b4e", + "start": { + "$date": "2021-02-02T06:26:07.000Z" + }, + "end": { + "$date": "2021-02-02T06:29:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "3139ed49-88d3-489f-b254-35f6952c36a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T06:51:33.000Z" + }, + "end": { + "$date": "2021-02-02T07:14:27.000Z" + }, + "events": [ + { + "uuid": "42c0c505-f10d-4a31-88db-880c115bcec8", + "start": { + "$date": "2021-02-02T06:51:33.000Z" + }, + "end": { + "$date": "2021-02-02T07:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "b4599366-69ee-4461-bc61-d979c1a29cb1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T06:51:33.000Z" + }, + "end": { + "$date": "2021-02-02T07:37:53.000Z" + }, + "events": [ + { + "uuid": "25eac46b-e29a-43fe-a592-75dc21764dc2", + "start": { + "$date": "2021-02-02T06:51:33.000Z" + }, + "end": { + "$date": "2021-02-02T07:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "0091d621-9e61-43ba-9761-6ff74f062788", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T06:51:33.000Z" + }, + "end": { + "$date": "2021-02-02T07:40:37.000Z" + }, + "events": [ + { + "uuid": "1bd042fd-2ad7-40ae-b4e4-cd5024e87757", + "start": { + "$date": "2021-02-02T06:51:33.000Z" + }, + "end": { + "$date": "2021-02-02T07:40:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "789b11df-2348-4185-ba2a-c5f5e0617fe4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T06:51:29.000Z" + }, + "end": { + "$date": "2021-02-02T07:49:35.000Z" + }, + "events": [ + { + "uuid": "b2835cfa-9616-4ca1-acd0-e5d8fe2ffc51", + "start": { + "$date": "2021-02-02T06:51:29.000Z" + }, + "end": { + "$date": "2021-02-02T07:49:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "f06e1bd8-b20b-4b92-9f9d-d45a818d7408", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T07:55:20.000Z" + }, + "end": { + "$date": "2021-02-02T08:02:34.000Z" + }, + "events": [ + { + "uuid": "e9cbeab4-59d3-4139-bc83-8aa7e2248cbe", + "start": { + "$date": "2021-02-02T07:55:20.000Z" + }, + "end": { + "$date": "2021-02-02T08:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "d702f7a3-9797-4da5-b9dd-0cf9c35f4c2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-02T07:55:20.000Z" + }, + "end": { + "$date": "2021-02-02T08:15:06.000Z" + }, + "events": [ + { + "uuid": "2d5b955a-c825-4f0f-9a5c-95901094057e", + "start": { + "$date": "2021-02-02T07:55:20.000Z" + }, + "end": { + "$date": "2021-02-02T08:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "7cc7f08a-7f94-4dc6-9577-d31b0e6b2c68", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-02T14:37:09.000Z" + }, + "end": { + "$date": "2021-02-02T19:16:15.000Z" + }, + "events": [ + { + "uuid": "78ec21c5-5423-47f0-9b93-48004163595d", + "start": { + "$date": "2021-02-02T14:37:09.000Z" + }, + "end": { + "$date": "2021-02-02T19:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "68008876-faf8-4f6b-96e2-12636533a850", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T15:40:16.000Z" + }, + "end": { + "$date": "2021-02-02T17:47:44.000Z" + }, + "events": [ + { + "uuid": "428adce2-3485-43b1-99da-e71aed67a85d", + "start": { + "$date": "2021-02-02T15:40:16.000Z" + }, + "end": { + "$date": "2021-02-02T17:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cac1e48d-7942-45fb-9bec-dc7e233d1d74", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T17:57:12.000Z" + }, + "end": { + "$date": "2021-02-02T18:03:11.000Z" + }, + "events": [ + { + "uuid": "cc6f783a-0ab1-46cb-87c3-07d55ddc33d6", + "start": { + "$date": "2021-02-02T17:57:12.000Z" + }, + "end": { + "$date": "2021-02-02T18:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "769d0099-3268-440a-be19-d4d0406e61b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T18:09:33.000Z" + }, + "end": { + "$date": "2021-02-02T18:11:23.000Z" + }, + "events": [ + { + "uuid": "50520dcb-c60a-4ce2-af62-0f8ab59afe61", + "start": { + "$date": "2021-02-02T18:09:33.000Z" + }, + "end": { + "$date": "2021-02-02T18:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "096c184c-fe93-4207-8cfe-66def06d1199", + "uuid": "454ba536-0bb5-4b43-bc96-f27ab95cb8ba", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T18:12:34.000Z" + }, + "end": { + "$date": "2021-02-02T19:08:25.000Z" + }, + "events": [ + { + "uuid": "de52fc93-8f76-4e8e-8d33-4ab8106fc2f3", + "start": { + "$date": "2021-02-02T18:12:34.000Z" + }, + "end": { + "$date": "2021-02-02T18:36:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5613d6e-2c6b-43ce-8a9e-0bdd58584191", + "start": { + "$date": "2021-02-02T18:36:34.000Z" + }, + "end": { + "$date": "2021-02-02T18:41:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "83dd2211-f048-4e6d-a120-7dd2666142f7", + "start": { + "$date": "2021-02-02T18:41:34.000Z" + }, + "end": { + "$date": "2021-02-02T19:08:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "0f98a890-5c74-4403-8922-1523c74205b6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-02T18:20:05.000Z" + }, + "end": { + "$date": "2021-02-02T21:01:27.000Z" + }, + "events": [ + { + "uuid": "932f4bc1-839d-4ae5-88b7-3841b375e97f", + "start": { + "$date": "2021-02-02T18:20:05.000Z" + }, + "end": { + "$date": "2021-02-02T21:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "25b90d82-02eb-4f2d-a2f6-6951caa15728", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-02T18:50:55.000Z" + }, + "end": { + "$date": "2021-02-02T19:15:34.000Z" + }, + "events": [ + { + "uuid": "430ca4f4-9c95-408b-920c-23f45078ab36", + "start": { + "$date": "2021-02-02T18:50:55.000Z" + }, + "end": { + "$date": "2021-02-02T19:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6b5d33d4-9f10-4431-bb32-c7eadaeb837e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T19:21:11.000Z" + }, + "end": { + "$date": "2021-02-02T19:37:25.000Z" + }, + "events": [ + { + "uuid": "4f87e106-e4cf-4803-9d21-99c7679ddd18", + "start": { + "$date": "2021-02-02T19:21:11.000Z" + }, + "end": { + "$date": "2021-02-02T19:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b74da68a-da0f-40e8-affb-d60501c02465", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-02T19:49:55.000Z" + }, + "end": { + "$date": "2021-02-02T21:25:48.000Z" + }, + "events": [ + { + "uuid": "125d3958-7756-49b6-8914-e2a8f2f6b202", + "start": { + "$date": "2021-02-02T19:49:55.000Z" + }, + "end": { + "$date": "2021-02-02T21:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5e0cf19e-0761-49a9-bede-7b23ff0a3c66", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-02T20:11:09.000Z" + }, + "end": { + "$date": "2021-02-02T20:43:39.000Z" + }, + "events": [ + { + "uuid": "cd9042e9-1763-4ebf-a123-39205751b88d", + "start": { + "$date": "2021-02-02T20:11:09.000Z" + }, + "end": { + "$date": "2021-02-02T20:43:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "84798c1d-51e7-4304-a764-675a05373d11", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T20:12:47.000Z" + }, + "end": { + "$date": "2021-02-02T20:14:51.000Z" + }, + "events": [ + { + "uuid": "f8341f8a-f44e-45b3-959d-ee000ffa119e", + "start": { + "$date": "2021-02-02T20:12:47.000Z" + }, + "end": { + "$date": "2021-02-02T20:14:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb8caaf6-13e9-40bd-86fb-02a881631ad5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-02T20:37:51.000Z" + }, + "end": { + "$date": "2021-02-02T21:07:28.000Z" + }, + "events": [ + { + "uuid": "366eee42-f85b-4834-90e7-57d331c1251d", + "start": { + "$date": "2021-02-02T20:37:51.000Z" + }, + "end": { + "$date": "2021-02-02T21:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f38445a6-fe9d-442c-90a5-9c2dfa12bd45", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-02T20:56:17.000Z" + }, + "end": { + "$date": "2021-02-02T21:22:49.000Z" + }, + "events": [ + { + "uuid": "e1d6b04a-0239-44f2-a529-a88971673b6c", + "start": { + "$date": "2021-02-02T20:56:17.000Z" + }, + "end": { + "$date": "2021-02-02T21:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "4393353e-d47c-4f79-8f02-6eb0a7709f3f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-02T21:35:03.000Z" + }, + "end": { + "$date": "2021-02-02T23:53:33.000Z" + }, + "events": [ + { + "uuid": "0be37b17-4e99-459d-8899-dfba8a156206", + "start": { + "$date": "2021-02-02T21:35:03.000Z" + }, + "end": { + "$date": "2021-02-02T23:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7716a44a-aefe-45e5-8046-3a17c07a4b69", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-02T21:46:08.000Z" + }, + "end": { + "$date": "2021-02-03T01:20:18.000Z" + }, + "events": [ + { + "uuid": "a8b2eb9b-57d4-45bf-aceb-3e68a15f9df5", + "start": { + "$date": "2021-02-02T21:46:08.000Z" + }, + "end": { + "$date": "2021-02-03T01:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "36881d76-c46b-4f6d-9d76-f3a66689bb38", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-02T23:02:57.000Z" + }, + "end": { + "$date": "2021-02-02T23:40:18.000Z" + }, + "events": [ + { + "uuid": "d861bdea-9e4a-4a39-b816-9aa84930f704", + "start": { + "$date": "2021-02-02T23:02:57.000Z" + }, + "end": { + "$date": "2021-02-02T23:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b2c687b1-159c-4011-ad26-8b2b48736266", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T23:15:34.000Z" + }, + "end": { + "$date": "2021-02-02T23:31:05.000Z" + }, + "events": [ + { + "uuid": "1e6c5c83-0f35-4cca-8d16-7b494297ed78", + "start": { + "$date": "2021-02-02T23:15:34.000Z" + }, + "end": { + "$date": "2021-02-02T23:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ac381c42-ce20-429f-a3c6-d19182fa4f61", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-02T23:26:08.000Z" + }, + "end": { + "$date": "2021-02-02T23:29:04.000Z" + }, + "events": [ + { + "uuid": "a3d2260a-1b9f-4567-8cdb-5dff9087596f", + "start": { + "$date": "2021-02-02T23:26:08.000Z" + }, + "end": { + "$date": "2021-02-02T23:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "1597067c-1c39-4d91-a9e3-2c8b7f0c709f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-02T23:37:54.000Z" + }, + "end": { + "$date": "2021-02-03T03:49:00.000Z" + }, + "events": [ + { + "uuid": "0badcdd2-fb05-4b0e-8e01-45786180007b", + "start": { + "$date": "2021-02-02T23:37:54.000Z" + }, + "end": { + "$date": "2021-02-03T03:49:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "05299934-9fb6-43ac-bd78-91eda79f1c41", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-02T23:48:17.000Z" + }, + "end": { + "$date": "2021-02-03T00:10:29.000Z" + }, + "events": [ + { + "uuid": "ec5f44f4-8444-442c-a2d7-6dfde6065154", + "start": { + "$date": "2021-02-02T23:48:17.000Z" + }, + "end": { + "$date": "2021-02-03T00:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3c3e7763-1e62-4d13-b6aa-f04c1a96c2c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-02T23:53:21.000Z" + }, + "end": { + "$date": "2021-02-02T23:54:51.000Z" + }, + "events": [ + { + "uuid": "1b44cee7-9a35-401f-9601-a9a7b91feb68", + "start": { + "$date": "2021-02-02T23:53:21.000Z" + }, + "end": { + "$date": "2021-02-02T23:54:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bc83a11-6ac2-4d07-9b2b-45e672f22564", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-03T00:06:49.000Z" + }, + "end": { + "$date": "2021-02-03T00:38:14.000Z" + }, + "events": [ + { + "uuid": "1743bfcc-e76e-4722-923b-3cf4821bf306", + "start": { + "$date": "2021-02-03T00:06:49.000Z" + }, + "end": { + "$date": "2021-02-03T00:38:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90bdfdda-05d4-4a21-999a-32a72cf36598", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T00:06:50.000Z" + }, + "end": { + "$date": "2021-02-03T00:38:14.000Z" + }, + "events": [ + { + "uuid": "64e498ef-ff68-4444-81de-b014c45f4b49", + "start": { + "$date": "2021-02-03T00:06:50.000Z" + }, + "end": { + "$date": "2021-02-03T00:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ff6fb461-f463-4755-92ba-14bb8810bd3c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T00:22:09.000Z" + }, + "end": { + "$date": "2021-02-03T01:07:25.000Z" + }, + "events": [ + { + "uuid": "ad22ff3a-e156-4c68-a84f-6d3263d6d822", + "start": { + "$date": "2021-02-03T00:22:09.000Z" + }, + "end": { + "$date": "2021-02-03T01:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "69731833-af10-4721-b353-caef76cdc6af", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-03T00:35:52.000Z" + }, + "end": { + "$date": "2021-02-03T00:55:24.000Z" + }, + "events": [ + { + "uuid": "7c595a8f-33eb-4893-a9bb-55d222fe199e", + "start": { + "$date": "2021-02-03T00:35:52.000Z" + }, + "end": { + "$date": "2021-02-03T00:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72b37ac7-6df7-4f4b-9b5b-94cfb94e554d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-03T00:41:40.000Z" + }, + "end": { + "$date": "2021-02-03T01:06:02.000Z" + }, + "events": [ + { + "uuid": "d4e89d7f-b6a0-42ee-a486-f22a4e296fcb", + "start": { + "$date": "2021-02-03T00:41:40.000Z" + }, + "end": { + "$date": "2021-02-03T01:06:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8e1f5471-f9f6-4c96-893b-5764ea22e09e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T01:40:58.000Z" + }, + "end": { + "$date": "2021-02-03T01:50:53.000Z" + }, + "events": [ + { + "uuid": "4094fbec-64e2-4c6b-9fb3-0661613e3061", + "start": { + "$date": "2021-02-03T01:40:58.000Z" + }, + "end": { + "$date": "2021-02-03T01:50:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04735ad0-ea91-4f91-9a56-75d1000c9ba3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T02:02:29.000Z" + }, + "end": { + "$date": "2021-02-03T02:36:58.000Z" + }, + "events": [ + { + "uuid": "0d627b81-5fbe-4d7a-9ac2-92cc903f6d53", + "start": { + "$date": "2021-02-03T02:02:29.000Z" + }, + "end": { + "$date": "2021-02-03T02:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31acb6ae-727c-4047-941d-b0303552a4fb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T01:49:10.000Z" + }, + "end": { + "$date": "2021-02-03T01:50:49.000Z" + }, + "events": [ + { + "uuid": "0d07ca32-93e9-43ca-aa12-c6ea0c442671", + "start": { + "$date": "2021-02-03T01:49:10.000Z" + }, + "end": { + "$date": "2021-02-03T01:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "12377fab-dff9-4165-9047-ee59573f7f8c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-03T01:50:29.000Z" + }, + "end": { + "$date": "2021-02-03T02:05:45.000Z" + }, + "events": [ + { + "uuid": "88588109-6c55-4708-804f-ccdb5bbb1849", + "start": { + "$date": "2021-02-03T01:50:29.000Z" + }, + "end": { + "$date": "2021-02-03T02:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c9f9073-69c2-4715-b396-dad3159a9e82", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T01:51:32.000Z" + }, + "end": { + "$date": "2021-02-03T01:54:00.000Z" + }, + "events": [ + { + "uuid": "8cc9a319-4791-4a4f-b7ca-60df2eed6cc5", + "start": { + "$date": "2021-02-03T01:51:32.000Z" + }, + "end": { + "$date": "2021-02-03T01:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9db120da-64cb-4069-bbf8-4521220860a8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T01:51:32.000Z" + }, + "end": { + "$date": "2021-02-03T01:54:01.000Z" + }, + "events": [ + { + "uuid": "95131aaa-e811-4d53-a487-6eb095601e60", + "start": { + "$date": "2021-02-03T01:51:32.000Z" + }, + "end": { + "$date": "2021-02-03T01:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a35daf6-23ef-4bab-ae25-1f11aa1c3746", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T04:04:29.000Z" + }, + "end": { + "$date": "2021-02-03T04:05:38.000Z" + }, + "events": [ + { + "uuid": "a8f733de-998d-45bc-980b-e7bae975ba30", + "start": { + "$date": "2021-02-03T04:04:29.000Z" + }, + "end": { + "$date": "2021-02-03T04:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8143b038-2ddb-42fc-afd5-96bd337ae0be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T02:22:24.000Z" + }, + "end": { + "$date": "2021-02-03T02:36:49.000Z" + }, + "events": [ + { + "uuid": "bec05a84-8878-4ea9-8b93-8e971ac11885", + "start": { + "$date": "2021-02-03T02:22:24.000Z" + }, + "end": { + "$date": "2021-02-03T02:36:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "58d45d8b-b5ac-4872-a1d5-a5388ad61674", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-03T01:54:37.000Z" + }, + "end": { + "$date": "2021-02-03T06:16:55.000Z" + }, + "events": [ + { + "uuid": "d7c7c794-6750-48bc-af8a-325f7f3fc244", + "start": { + "$date": "2021-02-03T01:54:37.000Z" + }, + "end": { + "$date": "2021-02-03T04:14:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c03febc-2e7d-410c-b891-4f606bb32d23", + "start": { + "$date": "2021-02-03T04:14:37.000Z" + }, + "end": { + "$date": "2021-02-03T04:19:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47935113-8522-4776-9b3b-6190a01654a1", + "start": { + "$date": "2021-02-03T04:19:37.000Z" + }, + "end": { + "$date": "2021-02-03T05:00:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffcad720-fd97-4486-b8db-ffb475325419", + "start": { + "$date": "2021-02-03T05:00:37.000Z" + }, + "end": { + "$date": "2021-02-03T05:03:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3590f390-bfe7-4327-9e17-a8a5cb2b8f35", + "start": { + "$date": "2021-02-03T05:03:37.000Z" + }, + "end": { + "$date": "2021-02-03T06:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "ad2f40f9-3f71-4e2f-a7ea-488090e91524", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-03T02:02:23.000Z" + }, + "end": { + "$date": "2021-02-03T04:59:18.000Z" + }, + "events": [ + { + "uuid": "f7d91982-1fcc-4f09-a091-089c218eeeef", + "start": { + "$date": "2021-02-03T02:02:23.000Z" + }, + "end": { + "$date": "2021-02-03T02:05:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "902bfa84-779e-4b1b-8794-b13d59c7d2c6", + "start": { + "$date": "2021-02-03T02:05:23.000Z" + }, + "end": { + "$date": "2021-02-03T02:08:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "065f54da-b687-4055-8cea-2a811dbed042", + "start": { + "$date": "2021-02-03T02:08:23.000Z" + }, + "end": { + "$date": "2021-02-03T02:21:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1adc257c-3ae8-4ece-8d87-513530182c51", + "start": { + "$date": "2021-02-03T02:21:23.000Z" + }, + "end": { + "$date": "2021-02-03T02:51:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a52746e-50a4-4b0a-9f97-58710a585c22", + "start": { + "$date": "2021-02-03T02:51:23.000Z" + }, + "end": { + "$date": "2021-02-03T03:39:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b8d76b9b-98d4-45ab-9c88-f426baf71cd3", + "start": { + "$date": "2021-02-03T03:39:23.000Z" + }, + "end": { + "$date": "2021-02-03T03:42:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e099f78-03e6-4465-a859-20b795813fa7", + "start": { + "$date": "2021-02-03T03:42:23.000Z" + }, + "end": { + "$date": "2021-02-03T04:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18f46341-55a8-48ae-8f97-7477c45e9c26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T02:47:41.000Z" + }, + "end": { + "$date": "2021-02-03T03:26:22.000Z" + }, + "events": [ + { + "uuid": "fa66328c-0957-4ef7-8351-2bb5ac6ef1b6", + "start": { + "$date": "2021-02-03T02:47:41.000Z" + }, + "end": { + "$date": "2021-02-03T03:26:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56a3edfa-3425-4594-a751-ba1e2251537f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T02:36:49.000Z" + }, + "end": { + "$date": "2021-02-03T02:42:15.000Z" + }, + "events": [ + { + "uuid": "eeb2cfb2-c792-4bd1-84d5-c3871d79bb19", + "start": { + "$date": "2021-02-03T02:36:49.000Z" + }, + "end": { + "$date": "2021-02-03T02:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9326204f-c3e9-4013-a729-cfe8d9f7af9c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-03T03:09:50.000Z" + }, + "end": { + "$date": "2021-02-03T05:44:05.000Z" + }, + "events": [ + { + "uuid": "e0412550-82e5-4bd5-920b-d08b1648abd7", + "start": { + "$date": "2021-02-03T03:09:50.000Z" + }, + "end": { + "$date": "2021-02-03T05:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b465145e-f931-4218-9ec6-83bca6b1bb9d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T03:34:53.000Z" + }, + "end": { + "$date": "2021-02-03T04:04:36.000Z" + }, + "events": [ + { + "uuid": "1e8ffafa-d675-4ba8-8f22-f3bf0c8a5155", + "start": { + "$date": "2021-02-03T03:34:53.000Z" + }, + "end": { + "$date": "2021-02-03T04:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f7ff2c6e-8d43-4c7c-a90e-ed64810432c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-03T03:31:15.000Z" + }, + "end": { + "$date": "2021-02-03T05:27:39.000Z" + }, + "events": [ + { + "uuid": "47db149c-0743-401f-97f9-81da8d812f76", + "start": { + "$date": "2021-02-03T03:31:15.000Z" + }, + "end": { + "$date": "2021-02-03T05:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e5e52819-42f1-4f4f-89de-035726b405af", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-03T03:31:38.000Z" + }, + "end": { + "$date": "2021-02-03T05:27:31.000Z" + }, + "events": [ + { + "uuid": "dd1edc19-e5be-49d7-8fa1-950a79d4bf23", + "start": { + "$date": "2021-02-03T03:31:38.000Z" + }, + "end": { + "$date": "2021-02-03T05:27:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef5b5c69-e534-4290-b2e3-9da1dc80d9e6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-03T03:40:21.000Z" + }, + "end": { + "$date": "2021-02-03T04:14:27.000Z" + }, + "events": [ + { + "uuid": "4099b399-e1db-416a-9143-5e91ad16aefc", + "start": { + "$date": "2021-02-03T03:40:21.000Z" + }, + "end": { + "$date": "2021-02-03T04:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4b193ee-0760-49a5-9e83-93c741f4eb0f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T05:05:04.000Z" + }, + "end": { + "$date": "2021-02-03T05:38:49.000Z" + }, + "events": [ + { + "uuid": "b685fd94-af07-498d-9ca1-321452a88b81", + "start": { + "$date": "2021-02-03T05:05:04.000Z" + }, + "end": { + "$date": "2021-02-03T05:31:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2bd85f6-929c-4985-87b5-0ad71c675cc0", + "start": { + "$date": "2021-02-03T05:31:04.000Z" + }, + "end": { + "$date": "2021-02-03T05:56:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2266eead-7913-426b-aa83-e1979678ca20", + "start": { + "$date": "2021-02-03T05:56:04.000Z" + }, + "end": { + "$date": "2021-02-03T05:38:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2689df3d-e9ff-4183-9879-fc2f40be3d3b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-03T04:59:58.000Z" + }, + "end": { + "$date": "2021-02-03T05:00:06.000Z" + }, + "events": [ + { + "uuid": "2500cb40-2592-4823-bf68-073064d9da8c", + "start": { + "$date": "2021-02-03T04:59:58.000Z" + }, + "end": { + "$date": "2021-02-03T05:00:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d562cdcb-036c-4f0b-991d-155269c309a1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T04:26:05.000Z" + }, + "end": { + "$date": "2021-02-03T04:37:16.000Z" + }, + "events": [ + { + "uuid": "bb3a54fc-d7c6-4088-b728-6bf48a3d63e5", + "start": { + "$date": "2021-02-03T04:26:05.000Z" + }, + "end": { + "$date": "2021-02-03T04:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3ef4e69c-982d-4b18-82fe-105a013d8e6c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-03T04:30:53.000Z" + }, + "end": { + "$date": "2021-02-03T04:37:11.000Z" + }, + "events": [ + { + "uuid": "eefc8ab2-1158-496a-8833-8fbb555bbae1", + "start": { + "$date": "2021-02-03T04:30:53.000Z" + }, + "end": { + "$date": "2021-02-03T04:37:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07a50128-0a18-43c6-b04f-f37000383d12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T05:38:40.000Z" + }, + "end": { + "$date": "2021-02-03T05:40:15.000Z" + }, + "events": [ + { + "uuid": "3453dd6e-9c2e-45ee-9d8b-e90a502445af", + "start": { + "$date": "2021-02-03T05:38:40.000Z" + }, + "end": { + "$date": "2021-02-03T05:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45bc1154-600f-4b8e-a068-7f78094ac1fd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-03T05:06:44.000Z" + }, + "end": { + "$date": "2021-02-03T05:38:39.000Z" + }, + "events": [ + { + "uuid": "4774b81e-64b3-4586-a5b1-f133a846f858", + "start": { + "$date": "2021-02-03T05:06:44.000Z" + }, + "end": { + "$date": "2021-02-03T05:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e0152f89-379f-4d91-9c79-7e86963afd0a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-03T05:27:57.000Z" + }, + "end": { + "$date": "2021-02-03T06:03:42.000Z" + }, + "events": [ + { + "uuid": "92fe1b24-d8e4-46c0-8b34-aed41ec2f4e6", + "start": { + "$date": "2021-02-03T05:27:57.000Z" + }, + "end": { + "$date": "2021-02-03T06:03:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07b4c495-b710-418a-91ab-7f8b2dd622aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T05:51:56.000Z" + }, + "end": { + "$date": "2021-02-03T06:36:01.000Z" + }, + "events": [ + { + "uuid": "24b89de7-23fa-499d-bc49-54900e980b23", + "start": { + "$date": "2021-02-03T05:51:56.000Z" + }, + "end": { + "$date": "2021-02-03T06:36:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f893ab4c-81fc-4225-9c40-df929603ae2a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-03T05:40:41.000Z" + }, + "end": { + "$date": "2021-02-03T05:45:04.000Z" + }, + "events": [ + { + "uuid": "7aaf40d0-23e8-4bbc-9dcc-f247441fc61b", + "start": { + "$date": "2021-02-03T05:40:41.000Z" + }, + "end": { + "$date": "2021-02-03T05:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5a7a10f9-bfd0-4daa-b881-2f9d7f55ae3b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T05:43:11.000Z" + }, + "end": { + "$date": "2021-02-03T08:25:21.000Z" + }, + "events": [ + { + "uuid": "7be49e3d-9b5e-438d-a059-5efc907124b3", + "start": { + "$date": "2021-02-03T05:43:11.000Z" + }, + "end": { + "$date": "2021-02-03T08:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9cf596fc-25e4-4cd2-8c24-327666a1d1e7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-03T05:44:18.000Z" + }, + "end": { + "$date": "2021-02-03T08:25:21.000Z" + }, + "events": [ + { + "uuid": "2be4f9a0-0f3f-4eca-901a-766c1792061a", + "start": { + "$date": "2021-02-03T05:44:18.000Z" + }, + "end": { + "$date": "2021-02-03T08:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8e6e47df-bc0e-474a-8798-d24a0c380295", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T05:45:06.000Z" + }, + "end": { + "$date": "2021-02-03T05:52:11.000Z" + }, + "events": [ + { + "uuid": "597268b2-3ad8-40b2-910c-dd85644c4ae1", + "start": { + "$date": "2021-02-03T05:45:06.000Z" + }, + "end": { + "$date": "2021-02-03T05:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22a78508-a3c4-4366-bbc0-189b324d6209", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-03T05:52:51.000Z" + }, + "end": { + "$date": "2021-02-03T06:36:02.000Z" + }, + "events": [ + { + "uuid": "e9fbd602-997d-45fb-b1bd-55f2a6b4a3e3", + "start": { + "$date": "2021-02-03T05:52:51.000Z" + }, + "end": { + "$date": "2021-02-03T06:36:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f1dafe7c-8d50-4def-8aa7-0d47238a43df", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-03T06:22:33.000Z" + }, + "end": { + "$date": "2021-02-03T08:24:58.000Z" + }, + "events": [ + { + "uuid": "ea9c00d3-358b-4a30-adaf-a05ba64c42e7", + "start": { + "$date": "2021-02-03T06:22:33.000Z" + }, + "end": { + "$date": "2021-02-03T06:26:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3cda4d98-40f4-462e-b0a7-2e3a22d3f2a1", + "start": { + "$date": "2021-02-03T06:26:33.000Z" + }, + "end": { + "$date": "2021-02-03T06:28:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "21e51179-c8cf-4fcf-b914-35760916c12b", + "start": { + "$date": "2021-02-03T06:28:33.000Z" + }, + "end": { + "$date": "2021-02-03T08:24:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e1a2f27e-ab2c-4e12-86e1-ecbebe2c862f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T16:39:51.000Z" + }, + "end": { + "$date": "2021-02-03T17:41:31.000Z" + }, + "events": [ + { + "uuid": "a575adcd-ee07-49d0-9c9f-23cb4c339a73", + "start": { + "$date": "2021-02-03T16:39:51.000Z" + }, + "end": { + "$date": "2021-02-03T17:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8910d159-bc47-473c-a64f-7734fc4870ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T16:51:32.000Z" + }, + "end": { + "$date": "2021-02-03T17:20:30.000Z" + }, + "events": [ + { + "uuid": "870cd7a1-bbdd-41a3-9a1b-3ae106607c0a", + "start": { + "$date": "2021-02-03T16:51:32.000Z" + }, + "end": { + "$date": "2021-02-03T17:20:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f4f4d5f-b083-46d3-bb0c-f4c80fc086f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T17:25:39.000Z" + }, + "end": { + "$date": "2021-02-03T17:58:39.000Z" + }, + "events": [ + { + "uuid": "ef51e91e-0801-4248-9621-6d3f29b6ae6a", + "start": { + "$date": "2021-02-03T17:25:39.000Z" + }, + "end": { + "$date": "2021-02-03T17:58:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e47e8fdb-06db-40bd-bbb2-32e3f36400ac", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-03T18:24:24.000Z" + }, + "end": { + "$date": "2021-02-03T19:27:30.000Z" + }, + "events": [ + { + "uuid": "37079e1a-aed4-41b4-9923-902e3734d7bc", + "start": { + "$date": "2021-02-03T18:24:24.000Z" + }, + "end": { + "$date": "2021-02-03T19:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d9abc0bf-d535-41a9-a95e-ac579872bbbd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-03T18:48:48.000Z" + }, + "end": { + "$date": "2021-02-03T19:07:44.000Z" + }, + "events": [ + { + "uuid": "fd52ea2b-1a46-4cb7-a57e-1dfa5c70d099", + "start": { + "$date": "2021-02-03T18:48:48.000Z" + }, + "end": { + "$date": "2021-02-03T19:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc02f509-d0c8-450e-8958-610b9b55218a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T18:54:37.000Z" + }, + "end": { + "$date": "2021-02-03T19:25:42.000Z" + }, + "events": [ + { + "uuid": "5e4ea3a2-834c-420c-9bef-be6611dfa986", + "start": { + "$date": "2021-02-03T18:54:37.000Z" + }, + "end": { + "$date": "2021-02-03T19:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4065a921-aab7-42d8-9a1c-ab47d8e68946", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T19:34:25.000Z" + }, + "end": { + "$date": "2021-02-03T19:44:42.000Z" + }, + "events": [ + { + "uuid": "3c197a3c-1bde-4bac-b765-f5c6d5c962a1", + "start": { + "$date": "2021-02-03T19:34:25.000Z" + }, + "end": { + "$date": "2021-02-03T19:44:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "45536f9e-b93b-43ec-ad65-b49620a6801a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-03T19:37:31.000Z" + }, + "end": { + "$date": "2021-02-03T20:29:29.000Z" + }, + "events": [ + { + "uuid": "b9d19c2b-9104-41c5-9572-11dac92b6c93", + "start": { + "$date": "2021-02-03T19:37:31.000Z" + }, + "end": { + "$date": "2021-02-03T20:29:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2d39fda-635a-483e-8561-f250e89ab338", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T19:44:49.000Z" + }, + "end": { + "$date": "2021-02-03T20:06:25.000Z" + }, + "events": [ + { + "uuid": "aff375a7-d33e-4d07-9f51-44404d2ff212", + "start": { + "$date": "2021-02-03T19:44:49.000Z" + }, + "end": { + "$date": "2021-02-03T20:06:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc29f704-cfb9-47c4-a336-f28f3d63711b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T20:08:10.000Z" + }, + "end": { + "$date": "2021-02-03T20:46:07.000Z" + }, + "events": [ + { + "uuid": "58228dd3-d914-4c24-89d8-7485715e30a7", + "start": { + "$date": "2021-02-03T20:08:10.000Z" + }, + "end": { + "$date": "2021-02-03T20:46:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c8192014-3c6f-41b2-930a-e9589b1e2ced", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-03T20:35:36.000Z" + }, + "end": { + "$date": "2021-02-03T20:40:07.000Z" + }, + "events": [ + { + "uuid": "5ef3f172-0a75-4c25-8caf-50d2a74d0b7e", + "start": { + "$date": "2021-02-03T20:35:36.000Z" + }, + "end": { + "$date": "2021-02-03T20:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5ff09d87-8bd8-4c80-8bff-6acc4c98d0f7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-03T20:47:53.000Z" + }, + "end": { + "$date": "2021-02-03T21:48:54.000Z" + }, + "events": [ + { + "uuid": "59251fab-a68c-4f58-9270-dfc33e6bf023", + "start": { + "$date": "2021-02-03T20:47:53.000Z" + }, + "end": { + "$date": "2021-02-03T21:48:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e7582020-0445-40f7-a16e-ce36283a7a4b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-03T21:20:51.000Z" + }, + "end": { + "$date": "2021-02-03T23:06:45.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-03T21:20:51.000Z" + }, + "end": { + "$date": "2021-02-03T23:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e00ef6f-9e70-4994-9175-2c87baa32820", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T21:37:36.000Z" + }, + "end": { + "$date": "2021-02-03T22:13:43.000Z" + }, + "events": [ + { + "uuid": "229d0c1f-4e21-40f1-9176-79fd10c455bd", + "start": { + "$date": "2021-02-03T21:37:36.000Z" + }, + "end": { + "$date": "2021-02-03T22:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87e7f231-6fbf-47a4-a81c-8b3779075b8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T22:08:33.000Z" + }, + "end": { + "$date": "2021-02-03T22:37:19.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-03T22:08:33.000Z" + }, + "end": { + "$date": "2021-02-03T22:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c1c6d19a-bba9-4441-b7b8-40e0106e2a9e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-03T22:10:04.000Z" + }, + "end": { + "$date": "2021-02-03T22:12:09.000Z" + }, + "events": [ + { + "uuid": "3ebe102f-c9eb-4f9b-9f88-65076368a191", + "start": { + "$date": "2021-02-03T22:10:04.000Z" + }, + "end": { + "$date": "2021-02-03T22:12:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2393df10-036b-4dc9-8f6f-d64a3f19df5a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-03T22:12:39.000Z" + }, + "end": { + "$date": "2021-02-03T22:15:29.000Z" + }, + "events": [ + { + "uuid": "89d853d1-4071-47e8-818b-363731538886", + "start": { + "$date": "2021-02-03T22:12:39.000Z" + }, + "end": { + "$date": "2021-02-03T22:15:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "106cbed3-eebe-4dff-9b77-2dbbc930a7b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T22:16:22.000Z" + }, + "end": { + "$date": "2021-02-03T22:24:34.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-03T22:16:22.000Z" + }, + "end": { + "$date": "2021-02-03T22:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d738c47b-c9cd-429b-a66b-bddd5fefc27d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T23:03:57.000Z" + }, + "end": { + "$date": "2021-02-03T23:03:57.000Z" + }, + "events": [ + { + "uuid": "193547d2-a852-49c8-8b20-04520f8359d9", + "start": { + "$date": "2021-02-03T23:03:57.000Z" + }, + "end": { + "$date": "2021-02-03T23:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d27e680-f093-41ef-96c4-cd010b73d97a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-03T23:07:50.000Z" + }, + "end": { + "$date": "2021-02-03T23:41:34.000Z" + }, + "events": [ + { + "uuid": "79fdfdfb-43d4-4f5a-8fa8-1cae44b089e2", + "start": { + "$date": "2021-02-03T23:07:50.000Z" + }, + "end": { + "$date": "2021-02-03T23:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a9080c4f-18cd-45fb-a8d4-08d72d1b0147", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-03T23:28:10.000Z" + }, + "end": { + "$date": "2021-02-04T00:01:26.000Z" + }, + "events": [ + { + "uuid": "d4c96df5-0b77-4488-99df-20626867422b", + "start": { + "$date": "2021-02-03T23:28:10.000Z" + }, + "end": { + "$date": "2021-02-04T00:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "72bd5ea5-adc8-4c77-b07b-fd48501636da", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-03T23:33:22.000Z" + }, + "end": { + "$date": "2021-02-03T23:53:55.000Z" + }, + "events": [ + { + "uuid": "78803495-748a-4229-8594-568d2398ff09", + "start": { + "$date": "2021-02-03T23:33:22.000Z" + }, + "end": { + "$date": "2021-02-03T23:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4de08a73-e7b4-45a1-8155-2385feb9ea27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-04T00:22:09.000Z" + }, + "end": { + "$date": "2021-02-04T00:22:17.000Z" + }, + "events": [ + { + "uuid": "e2ac5b3d-d419-425f-9b86-9aa026a3ffd3", + "start": { + "$date": "2021-02-04T00:22:09.000Z" + }, + "end": { + "$date": "2021-02-04T00:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "9279d660-5e57-41f7-a5b4-b8b0c807370e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-03T23:49:10.000Z" + }, + "end": { + "$date": "2021-02-04T00:28:25.000Z" + }, + "events": [ + { + "uuid": "7f54ceea-2b80-462d-a176-63a0440c4fae", + "start": { + "$date": "2021-02-03T23:49:10.000Z" + }, + "end": { + "$date": "2021-02-04T00:28:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6f19551a-97e8-4f07-8acc-2ec9c8745b98", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-03T23:54:20.000Z" + }, + "end": { + "$date": "2021-02-04T03:44:15.000Z" + }, + "events": [ + { + "uuid": "ea69f026-c370-4243-81b6-f4ecd894c8cb", + "start": { + "$date": "2021-02-03T23:54:20.000Z" + }, + "end": { + "$date": "2021-02-04T03:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "00d48e7d-17e3-476e-8672-c3ea33c5c432", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-04T01:14:57.000Z" + }, + "end": { + "$date": "2021-02-04T01:40:37.000Z" + }, + "events": [ + { + "uuid": "ef0a4fe9-c438-4e83-9305-9df0778367d6", + "start": { + "$date": "2021-02-04T01:14:57.000Z" + }, + "end": { + "$date": "2021-02-04T01:40:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f9bcd44d-179f-443b-a2e0-c558c0997678", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-04T01:40:48.000Z" + }, + "end": { + "$date": "2021-02-04T02:34:04.000Z" + }, + "events": [ + { + "uuid": "7e5f24af-fab9-4e90-b163-457cd73b3670", + "start": { + "$date": "2021-02-04T01:40:48.000Z" + }, + "end": { + "$date": "2021-02-04T02:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bd1fa501-aec6-432d-adf3-5ee80295c507", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-04T02:52:39.000Z" + }, + "end": { + "$date": "2021-02-04T04:09:31.000Z" + }, + "events": [ + { + "uuid": "329c7561-7627-42d9-9fe4-a8d3365bea2c", + "start": { + "$date": "2021-02-04T02:52:39.000Z" + }, + "end": { + "$date": "2021-02-04T04:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5d055cc-3c4f-449c-a2a0-77effcf3d27a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-04T03:05:10.000Z" + }, + "end": { + "$date": "2021-02-04T03:42:15.000Z" + }, + "events": [ + { + "uuid": "8cb0025b-fbfe-4f29-ad08-034988218f55", + "start": { + "$date": "2021-02-04T03:05:10.000Z" + }, + "end": { + "$date": "2021-02-04T03:42:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "60e54837-3f6e-4e60-bf52-a5cdea6ff3e6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-04T03:08:56.000Z" + }, + "end": { + "$date": "2021-02-04T05:30:25.000Z" + }, + "events": [ + { + "uuid": "a64f64fd-74db-4549-be5a-ae3d438f2fab", + "start": { + "$date": "2021-02-04T03:08:56.000Z" + }, + "end": { + "$date": "2021-02-04T05:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d0b51d4c-e711-4a7b-bab8-3bc96fb3746f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-04T03:10:58.000Z" + }, + "end": { + "$date": "2021-02-04T05:30:08.000Z" + }, + "events": [ + { + "uuid": "d910400e-e6c5-486f-8a81-2ad562c8640a", + "start": { + "$date": "2021-02-04T03:10:58.000Z" + }, + "end": { + "$date": "2021-02-04T05:30:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "647f4ab8-e722-4e4f-be25-b4b9d011ee8b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-04T03:29:39.000Z" + }, + "end": { + "$date": "2021-02-04T04:11:35.000Z" + }, + "events": [ + { + "uuid": "b8a0a68a-0d27-48b0-8bd5-0655d00236e0", + "start": { + "$date": "2021-02-04T03:29:39.000Z" + }, + "end": { + "$date": "2021-02-04T04:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6eea1c50-7c6a-4064-8bda-4099483ff533", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-04T03:44:47.000Z" + }, + "end": { + "$date": "2021-02-04T06:47:20.000Z" + }, + "events": [ + { + "uuid": "01db5a27-da41-4366-8062-4ffdedb9d99f", + "start": { + "$date": "2021-02-04T03:44:47.000Z" + }, + "end": { + "$date": "2021-02-04T06:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9b7a2997-41cb-4a8e-9d71-842e3e4b3261", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-04T03:44:51.000Z" + }, + "end": { + "$date": "2021-02-04T05:08:33.000Z" + }, + "events": [ + { + "uuid": "9ff1db05-1f9f-4864-b147-8b43ef0ceb82", + "start": { + "$date": "2021-02-04T03:44:51.000Z" + }, + "end": { + "$date": "2021-02-04T05:08:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6c1d6c59-73bd-4b8b-ae57-b83832a7ea94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-04T04:12:11.000Z" + }, + "end": { + "$date": "2021-02-04T05:29:53.000Z" + }, + "events": [ + { + "uuid": "ddcac2f8-4fe6-44c5-9814-695e3f834eea", + "start": { + "$date": "2021-02-04T04:12:11.000Z" + }, + "end": { + "$date": "2021-02-04T05:29:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "345c4531-bba4-49d0-b115-547fab258d79", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-04T04:49:10.000Z" + }, + "end": { + "$date": "2021-02-04T05:30:16.000Z" + }, + "events": [ + { + "uuid": "0d2ea47f-91d1-444d-ab43-d75ca030357d", + "start": { + "$date": "2021-02-04T04:49:10.000Z" + }, + "end": { + "$date": "2021-02-04T05:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "916620d1-542e-4867-9f30-5affb4b3caa8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-04T05:32:45.000Z" + }, + "end": { + "$date": "2021-02-04T06:28:49.000Z" + }, + "events": [ + { + "uuid": "b5420c96-920d-42df-9e3a-545534270d16", + "start": { + "$date": "2021-02-04T05:32:45.000Z" + }, + "end": { + "$date": "2021-02-04T06:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "461eb0c2-9ec2-4d22-817b-368cec4c2d98", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-04T05:57:00.000Z" + }, + "end": { + "$date": "2021-02-04T06:04:21.000Z" + }, + "events": [ + { + "uuid": "bfc9e433-26fb-427a-8013-107724338f4b", + "start": { + "$date": "2021-02-04T05:57:00.000Z" + }, + "end": { + "$date": "2021-02-04T06:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5614959e-25bf-4d09-91ec-e30466c960e6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-04T06:53:36.000Z" + }, + "end": { + "$date": "2021-02-04T07:01:37.000Z" + }, + "events": [ + { + "uuid": "ab020044-eaa9-4699-b5dd-0900008fa7e4", + "start": { + "$date": "2021-02-04T06:53:36.000Z" + }, + "end": { + "$date": "2021-02-04T07:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "966f114b-1302-4e24-90e3-d10a0e23c318", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-04T07:03:03.000Z" + }, + "end": { + "$date": "2021-02-04T07:04:22.000Z" + }, + "events": [ + { + "uuid": "b7619530-ac89-48ae-91c9-d18ed7ce69c0", + "start": { + "$date": "2021-02-04T07:03:03.000Z" + }, + "end": { + "$date": "2021-02-04T07:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0f91160d-c3f7-414f-bd7a-ba3a462284b2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-04T07:03:42.000Z" + }, + "end": { + "$date": "2021-02-04T08:09:34.000Z" + }, + "events": [ + { + "uuid": "8ead81d4-a8d5-4b78-84e8-8c37fde699af", + "start": { + "$date": "2021-02-04T07:03:42.000Z" + }, + "end": { + "$date": "2021-02-04T08:09:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a326b020-5a25-4f70-9c03-f776aa635a29", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-04T16:32:53.000Z" + }, + "end": { + "$date": "2021-02-04T16:36:19.000Z" + }, + "events": [ + { + "uuid": "30690f65-f3e5-45c1-9175-4c3815d58fe2", + "start": { + "$date": "2021-02-04T16:32:53.000Z" + }, + "end": { + "$date": "2021-02-04T16:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8a646bc9-868b-4ec6-95af-42e895128289", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-04T18:13:48.000Z" + }, + "end": { + "$date": "2021-02-04T19:08:15.000Z" + }, + "events": [ + { + "uuid": "f2ceaac2-18dc-492c-8911-5d400f3cdde4", + "start": { + "$date": "2021-02-04T18:13:48.000Z" + }, + "end": { + "$date": "2021-02-04T18:35:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6c314c83-5414-4d89-a4a9-47f3c311b81e", + "start": { + "$date": "2021-02-04T18:35:48.000Z" + }, + "end": { + "$date": "2021-02-04T18:41:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "822f7b18-46ff-4554-b683-b057a455b3b7", + "start": { + "$date": "2021-02-04T18:41:48.000Z" + }, + "end": { + "$date": "2021-02-04T19:08:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7fb4230c-0f4a-4a5e-a7f5-e36f0063790b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-04T19:35:18.000Z" + }, + "end": { + "$date": "2021-02-04T19:57:11.000Z" + }, + "events": [ + { + "uuid": "c9fa93ce-e8f4-4060-928a-7bf9a216c980", + "start": { + "$date": "2021-02-04T19:35:18.000Z" + }, + "end": { + "$date": "2021-02-04T19:46:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09f2f4ee-f495-4b7f-85b0-f101a4857404", + "start": { + "$date": "2021-02-04T19:46:18.000Z" + }, + "end": { + "$date": "2021-02-04T19:57:11.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "403b89e0-b0be-4c8f-ae5a-1c6af1a12912", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-04T19:35:48.000Z" + }, + "end": { + "$date": "2021-02-04T19:55:25.000Z" + }, + "events": [ + { + "uuid": "17620063-7de6-40b3-a1a7-d7d5e2c38e19", + "start": { + "$date": "2021-02-04T19:35:48.000Z" + }, + "end": { + "$date": "2021-02-04T19:55:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "17839476-92f5-4d45-9564-d62c55900e95", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-04T20:16:42.000Z" + }, + "end": { + "$date": "2021-02-04T21:16:47.000Z" + }, + "events": [ + { + "uuid": "b2ff57db-2d06-4d32-b427-e0e746db33f5", + "start": { + "$date": "2021-02-04T20:16:42.000Z" + }, + "end": { + "$date": "2021-02-04T21:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0892e2f8-ffbf-4115-8afd-8871d3eb8fe2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-04T20:23:38.000Z" + }, + "end": { + "$date": "2021-02-04T21:00:32.000Z" + }, + "events": [ + { + "uuid": "7c678ec5-3ec3-4f95-a227-a17028c18acb", + "start": { + "$date": "2021-02-04T20:23:38.000Z" + }, + "end": { + "$date": "2021-02-04T21:00:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ee22f3af-be33-4773-9789-1acec1cd8d25", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-04T22:55:49.000Z" + }, + "end": { + "$date": "2021-02-05T00:00:39.000Z" + }, + "events": [ + { + "uuid": "7214036a-6769-4895-bee8-8b28a9012533", + "start": { + "$date": "2021-02-04T22:55:49.000Z" + }, + "end": { + "$date": "2021-02-05T00:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d59c194e-3f18-4e67-b034-376edab22df6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-04T22:59:23.000Z" + }, + "end": { + "$date": "2021-02-05T00:11:25.000Z" + }, + "events": [ + { + "uuid": "458ed697-71b3-4642-b82b-ad463251c248", + "start": { + "$date": "2021-02-04T22:59:23.000Z" + }, + "end": { + "$date": "2021-02-05T00:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "96aa161d-1d8b-4d18-9471-f681bca630ab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-04T23:36:01.000Z" + }, + "end": { + "$date": "2021-02-04T23:49:27.000Z" + }, + "events": [ + { + "uuid": "9c9da767-7962-4c63-98a5-d848a5c9a32c", + "start": { + "$date": "2021-02-04T23:36:01.000Z" + }, + "end": { + "$date": "2021-02-04T23:49:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27e8a428-e7e9-4d82-9b81-fa5b32d1f99b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T00:39:30.000Z" + }, + "end": { + "$date": "2021-02-05T01:14:27.000Z" + }, + "events": [ + { + "uuid": "c8fac600-c59a-4b54-a46c-68f2b52f6487", + "start": { + "$date": "2021-02-05T00:39:30.000Z" + }, + "end": { + "$date": "2021-02-05T01:14:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "70e14f5d-98ad-4315-b8f1-f20edbf4a5f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T00:31:21.000Z" + }, + "end": { + "$date": "2021-02-05T00:34:35.000Z" + }, + "events": [ + { + "uuid": "27f96e14-a074-4749-8347-39b39086aff9", + "start": { + "$date": "2021-02-05T00:31:21.000Z" + }, + "end": { + "$date": "2021-02-05T00:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "da30f779-164d-4b54-9f9b-bee189d2c021", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T00:40:01.000Z" + }, + "end": { + "$date": "2021-02-05T01:43:38.000Z" + }, + "events": [ + { + "uuid": "2a73b2cf-463c-4077-be9d-f6abcdcb9a6e", + "start": { + "$date": "2021-02-05T00:40:01.000Z" + }, + "end": { + "$date": "2021-02-05T01:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a43edafc-150e-4a52-b8b7-54c1c0bde149", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T01:15:32.000Z" + }, + "end": { + "$date": "2021-02-05T02:05:56.000Z" + }, + "events": [ + { + "uuid": "b0306aba-a795-4865-9293-a5fd527b7197", + "start": { + "$date": "2021-02-05T01:15:32.000Z" + }, + "end": { + "$date": "2021-02-05T02:05:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "871c3f4c-b870-43e2-a8a5-a9737f1e171a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-05T01:16:54.000Z" + }, + "end": { + "$date": "2021-02-05T01:28:39.000Z" + }, + "events": [ + { + "uuid": "02c21930-d2d6-4a70-8903-892521d63bf6", + "start": { + "$date": "2021-02-05T01:16:54.000Z" + }, + "end": { + "$date": "2021-02-05T01:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "1e335e29-878c-4022-9fa7-35a1b486e793", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-05T01:17:04.000Z" + }, + "end": { + "$date": "2021-02-05T01:24:59.000Z" + }, + "events": [ + { + "uuid": "1696fb2f-c9cd-4e36-9c04-e0287f97eba5", + "start": { + "$date": "2021-02-05T01:17:04.000Z" + }, + "end": { + "$date": "2021-02-05T01:24:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "1c0e94c7-63e1-40fe-bbd8-2acd99439642", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-05T01:25:06.000Z" + }, + "end": { + "$date": "2021-02-05T04:23:59.000Z" + }, + "events": [ + { + "uuid": "225fc3d4-8955-40b5-addb-28b41db59828", + "start": { + "$date": "2021-02-05T01:25:06.000Z" + }, + "end": { + "$date": "2021-02-05T04:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f6c56d6a-c70d-45e2-bfa4-daddf4f4d024", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T01:58:57.000Z" + }, + "end": { + "$date": "2021-02-05T02:57:54.000Z" + }, + "events": [ + { + "uuid": "d94d3133-6933-459b-a36c-ac9a56f3a91a", + "start": { + "$date": "2021-02-05T01:58:57.000Z" + }, + "end": { + "$date": "2021-02-05T02:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bbbd37b-da91-4e10-bbce-1ea868161a9e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T01:59:50.000Z" + }, + "end": { + "$date": "2021-02-05T03:20:48.000Z" + }, + "events": [ + { + "uuid": "97f1d4da-84f4-4a6e-80e9-c36913affed9", + "start": { + "$date": "2021-02-05T01:59:50.000Z" + }, + "end": { + "$date": "2021-02-05T03:05:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d009441f-29bf-4ca8-ad3c-ac76ce35172c", + "start": { + "$date": "2021-02-05T03:05:50.000Z" + }, + "end": { + "$date": "2021-02-05T03:09:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09691ec0-d6fe-4342-b9fc-1eec72ca7a25", + "start": { + "$date": "2021-02-05T03:09:50.000Z" + }, + "end": { + "$date": "2021-02-05T03:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e90f755-42bd-498d-924d-3f84166ea64d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T02:07:25.000Z" + }, + "end": { + "$date": "2021-02-05T02:20:47.000Z" + }, + "events": [ + { + "uuid": "6b8bba9c-208f-4315-983d-f0c3cf5ba8c7", + "start": { + "$date": "2021-02-05T02:07:25.000Z" + }, + "end": { + "$date": "2021-02-05T02:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06c2873e-d1a7-4aa4-87eb-a7d92f6718b4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T02:07:27.000Z" + }, + "end": { + "$date": "2021-02-05T02:20:38.000Z" + }, + "events": [ + { + "uuid": "e6b24c5b-c340-4dab-8cd0-3a0c3d3c7155", + "start": { + "$date": "2021-02-05T02:07:27.000Z" + }, + "end": { + "$date": "2021-02-05T02:20:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87e5f5ee-4b83-44e4-a064-8cbf53bd70aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T04:12:49.000Z" + }, + "end": { + "$date": "2021-02-05T04:29:49.000Z" + }, + "events": [ + { + "uuid": "aed65475-a5c1-403a-83f3-43db8ac18e30", + "start": { + "$date": "2021-02-05T04:12:49.000Z" + }, + "end": { + "$date": "2021-02-05T05:50:49.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "e8089dbe-568a-461c-8b59-23d214e33548", + "start": { + "$date": "2021-02-05T05:50:49.000Z" + }, + "end": { + "$date": "2021-02-05T04:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a7e7902e-1e79-4843-a8c7-c5d719a7f5c3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-05T03:47:56.000Z" + }, + "end": { + "$date": "2021-02-05T05:21:43.000Z" + }, + "events": [ + { + "uuid": "e53954e6-ffa6-4aea-a046-f29cdf87918b", + "start": { + "$date": "2021-02-05T03:47:56.000Z" + }, + "end": { + "$date": "2021-02-05T05:20:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "977df2c7-ae23-4d30-b7d3-29e1eccfab17", + "start": { + "$date": "2021-02-05T05:20:56.000Z" + }, + "end": { + "$date": "2021-02-05T05:22:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "021481f3-d37a-4479-8ea3-dd0c83814464", + "start": { + "$date": "2021-02-05T05:22:56.000Z" + }, + "end": { + "$date": "2021-02-05T05:21:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "aafc0768-da9a-4944-a4ec-50ddc1688cd3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T03:21:11.000Z" + }, + "end": { + "$date": "2021-02-05T03:24:54.000Z" + }, + "events": [ + { + "uuid": "cce138e0-f933-4ea5-b590-cadc59674e7b", + "start": { + "$date": "2021-02-05T03:21:11.000Z" + }, + "end": { + "$date": "2021-02-05T03:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "316e96f7-1a9d-44ad-8d55-e5f6ed40efe5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T03:21:09.000Z" + }, + "end": { + "$date": "2021-02-05T04:16:54.000Z" + }, + "events": [ + { + "uuid": "a438df94-f3aa-4d38-af49-5657faaf27f1", + "start": { + "$date": "2021-02-05T03:21:09.000Z" + }, + "end": { + "$date": "2021-02-05T04:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "3d53d59c-ecdd-4ed5-86ec-62c78e03802b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-05T03:33:40.000Z" + }, + "end": { + "$date": "2021-02-05T06:22:55.000Z" + }, + "events": [ + { + "uuid": "ad5a6575-ba6f-43a9-a78c-c45916fb270d", + "start": { + "$date": "2021-02-05T03:33:40.000Z" + }, + "end": { + "$date": "2021-02-05T06:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c34f2ff6-79fd-4b49-a6a4-2c8385051441", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-05T03:50:56.000Z" + }, + "end": { + "$date": "2021-02-05T03:55:57.000Z" + }, + "events": [ + { + "uuid": "5f732489-37e4-482e-8e52-c35b3751e8fb", + "start": { + "$date": "2021-02-05T03:50:56.000Z" + }, + "end": { + "$date": "2021-02-05T03:55:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18401aac-d5c7-40e0-b4e1-70e32d564927", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-05T04:03:44.000Z" + }, + "end": { + "$date": "2021-02-05T04:13:26.000Z" + }, + "events": [ + { + "uuid": "4a8af415-7e4a-445d-856f-fa62fce2d893", + "start": { + "$date": "2021-02-05T04:03:44.000Z" + }, + "end": { + "$date": "2021-02-05T04:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c89d94b3-a6ad-4304-af74-f693999f1562", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T04:12:47.000Z" + }, + "end": { + "$date": "2021-02-05T04:29:43.000Z" + }, + "events": [ + { + "uuid": "394cb61c-1daa-4293-8f63-c3fefd3d43fe", + "start": { + "$date": "2021-02-05T04:12:47.000Z" + }, + "end": { + "$date": "2021-02-05T04:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8c3ed3c-b958-4b0e-bb2a-cdc4ca83ff52", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-05T04:16:21.000Z" + }, + "end": { + "$date": "2021-02-05T04:36:37.000Z" + }, + "events": [ + { + "uuid": "b1e4a3b7-a1ff-439a-9116-59d256b7445e", + "start": { + "$date": "2021-02-05T04:16:21.000Z" + }, + "end": { + "$date": "2021-02-05T04:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fa893356-c879-40c8-8237-bd36e1aa1e3f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T04:21:36.000Z" + }, + "end": { + "$date": "2021-02-05T04:28:55.000Z" + }, + "events": [ + { + "uuid": "7b6392f3-f31f-4d79-b99e-39c3e1b64506", + "start": { + "$date": "2021-02-05T04:21:36.000Z" + }, + "end": { + "$date": "2021-02-05T04:28:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c31ca9bc-749c-42b6-93e8-377330517599", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T04:38:41.000Z" + }, + "end": { + "$date": "2021-02-05T05:00:52.000Z" + }, + "events": [ + { + "uuid": "231711e8-db2b-4835-9cdc-18631de15740", + "start": { + "$date": "2021-02-05T04:38:41.000Z" + }, + "end": { + "$date": "2021-02-05T05:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8abbc3b-2220-44d6-bf46-481b1776272b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-05T05:00:43.000Z" + }, + "end": { + "$date": "2021-02-05T05:00:53.000Z" + }, + "events": [ + { + "uuid": "4a32fe28-29ac-4086-9f6a-26f388fa9e91", + "start": { + "$date": "2021-02-05T05:00:43.000Z" + }, + "end": { + "$date": "2021-02-05T05:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16d54345-d6bf-41e5-a02d-412526671a78", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T04:38:53.000Z" + }, + "end": { + "$date": "2021-02-05T05:00:48.000Z" + }, + "events": [ + { + "uuid": "0c8362c3-f577-45e5-a1ee-6777bec6f992", + "start": { + "$date": "2021-02-05T04:38:53.000Z" + }, + "end": { + "$date": "2021-02-05T05:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "1e59ca62-37e1-4a17-9548-f6f39a76d28c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T04:48:09.000Z" + }, + "end": { + "$date": "2021-02-05T04:55:34.000Z" + }, + "events": [ + { + "uuid": "f6c76512-9288-43f1-a434-89ed01a83381", + "start": { + "$date": "2021-02-05T04:48:09.000Z" + }, + "end": { + "$date": "2021-02-05T04:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "594c4f09-b078-4938-b716-504c199f2242", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T05:04:47.000Z" + }, + "end": { + "$date": "2021-02-05T05:27:29.000Z" + }, + "events": [ + { + "uuid": "73fe2818-80c5-4efb-abb9-e847a5cba990", + "start": { + "$date": "2021-02-05T05:04:47.000Z" + }, + "end": { + "$date": "2021-02-05T05:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bb3c3bd-8059-477d-b5a6-4ff0601b04e0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-05T05:05:38.000Z" + }, + "end": { + "$date": "2021-02-05T05:27:25.000Z" + }, + "events": [ + { + "uuid": "55c34760-e6e2-4447-9f7e-d18ffcd36b0d", + "start": { + "$date": "2021-02-05T05:05:38.000Z" + }, + "end": { + "$date": "2021-02-05T05:27:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6013dc7-4a1e-4044-b0c0-b31c8ada980c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T05:04:44.000Z" + }, + "end": { + "$date": "2021-02-05T05:27:28.000Z" + }, + "events": [ + { + "uuid": "a9f2d4ec-20fa-4554-9a24-429eca406842", + "start": { + "$date": "2021-02-05T05:04:44.000Z" + }, + "end": { + "$date": "2021-02-05T05:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "55ceafe9-7aae-4755-bf97-c3776f3cf7cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-05T05:22:24.000Z" + }, + "end": { + "$date": "2021-02-05T06:47:31.000Z" + }, + "events": [ + { + "uuid": "42b16365-21a8-4ce7-87fa-102bb334a13e", + "start": { + "$date": "2021-02-05T05:22:24.000Z" + }, + "end": { + "$date": "2021-02-05T06:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bf46a4f-0d17-4cac-89db-5e1563f2a14f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T05:30:34.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:55.000Z" + }, + "events": [ + { + "uuid": "1034ace9-efbd-4e3b-8eec-0a9afec7bd26", + "start": { + "$date": "2021-02-05T05:30:34.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "737228dd-59c9-437b-a7f5-f70349b6fe61", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-05T05:30:59.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:49.000Z" + }, + "events": [ + { + "uuid": "8c233d61-ada8-40b7-85ba-b93b9666c89d", + "start": { + "$date": "2021-02-05T05:30:59.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9fffe3e-65d4-4e80-ac30-a0c34ac68ee5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-05T05:31:15.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:46.000Z" + }, + "events": [ + { + "uuid": "f18fd787-608c-45cc-8b10-f95249542a6d", + "start": { + "$date": "2021-02-05T05:31:15.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26b39c7b-da3f-485c-b47c-a5b927287b39", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T05:30:39.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:46.000Z" + }, + "events": [ + { + "uuid": "1acee9ad-1d8a-4774-9701-ed6faf4f734d", + "start": { + "$date": "2021-02-05T05:30:39.000Z" + }, + "end": { + "$date": "2021-02-05T05:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c73e5dbb-fae8-4752-ad1a-7e71eda15063", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T05:44:46.000Z" + }, + "end": { + "$date": "2021-02-05T06:04:52.000Z" + }, + "events": [ + { + "uuid": "5783fdfb-a44c-43c5-bdd0-351169bba10b", + "start": { + "$date": "2021-02-05T05:44:46.000Z" + }, + "end": { + "$date": "2021-02-05T06:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27effca3-8558-4d45-98e3-20978b6151a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T07:34:52.000Z" + }, + "end": { + "$date": "2021-02-05T07:36:19.000Z" + }, + "events": [ + { + "uuid": "c6efc509-794a-4d29-8734-4259ef6b1640", + "start": { + "$date": "2021-02-05T07:34:52.000Z" + }, + "end": { + "$date": "2021-02-05T07:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "562ab79c-10f2-4933-9c53-ae00338d2f22", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-05T05:54:00.000Z" + }, + "end": { + "$date": "2021-02-05T06:55:21.000Z" + }, + "events": [ + { + "uuid": "6eecbf3e-bdaf-406c-bdd3-183b86e60760", + "start": { + "$date": "2021-02-05T05:54:00.000Z" + }, + "end": { + "$date": "2021-02-05T06:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96d8fa13-cb03-4719-8831-a3988fba13a3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-05T07:34:53.000Z" + }, + "end": { + "$date": "2021-02-05T07:36:00.000Z" + }, + "events": [ + { + "uuid": "17680778-c25f-436e-88be-384d0e8ea6ef", + "start": { + "$date": "2021-02-05T07:34:53.000Z" + }, + "end": { + "$date": "2021-02-05T07:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5224ee1-df8c-4a07-8b1c-d5336002e36d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T06:29:02.000Z" + }, + "end": { + "$date": "2021-02-05T06:47:34.000Z" + }, + "events": [ + { + "uuid": "37f0de3b-8907-4d40-b0ed-78567dd0e784", + "start": { + "$date": "2021-02-05T06:29:02.000Z" + }, + "end": { + "$date": "2021-02-05T06:47:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e8b6cf3-717e-4df7-a6eb-4538febafa19", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-05T06:28:52.000Z" + }, + "end": { + "$date": "2021-02-05T06:47:27.000Z" + }, + "events": [ + { + "uuid": "1f210623-ed0f-4254-9cc8-6490a729b14a", + "start": { + "$date": "2021-02-05T06:28:52.000Z" + }, + "end": { + "$date": "2021-02-05T06:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "22ed99f7-d26f-4649-ab1f-6180b4c6f41d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-05T06:48:01.000Z" + }, + "end": { + "$date": "2021-02-05T06:53:31.000Z" + }, + "events": [ + { + "uuid": "2b334efa-a72c-4e0d-8380-947d152ba013", + "start": { + "$date": "2021-02-05T06:48:01.000Z" + }, + "end": { + "$date": "2021-02-05T06:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f17d051-3b07-49b9-99ee-2145595df24d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T06:52:03.000Z" + }, + "end": { + "$date": "2021-02-05T07:10:55.000Z" + }, + "events": [ + { + "uuid": "f5b0ba8b-cf48-4859-af33-9116f5ecf851", + "start": { + "$date": "2021-02-05T06:52:03.000Z" + }, + "end": { + "$date": "2021-02-05T07:10:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18c2d0a0-f1c0-4a5b-81f6-2081cdcdf619", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-05T06:50:07.000Z" + }, + "end": { + "$date": "2021-02-05T07:10:57.000Z" + }, + "events": [ + { + "uuid": "bfe35214-80bc-43b1-9713-6b799744d4ea", + "start": { + "$date": "2021-02-05T06:50:07.000Z" + }, + "end": { + "$date": "2021-02-05T07:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef0ebba7-9c22-4fcb-827e-c3509e571324", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-05T07:13:59.000Z" + }, + "end": { + "$date": "2021-02-05T07:34:40.000Z" + }, + "events": [ + { + "uuid": "a9ca145b-4107-406c-a738-5ad5c0583a13", + "start": { + "$date": "2021-02-05T07:13:59.000Z" + }, + "end": { + "$date": "2021-02-05T07:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8edb2d7-7ad9-4fba-a7a3-e529031af7c6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-05T07:13:47.000Z" + }, + "end": { + "$date": "2021-02-05T07:34:47.000Z" + }, + "events": [ + { + "uuid": "c2f64c00-47d4-4a08-b2be-c1a741c64bbe", + "start": { + "$date": "2021-02-05T07:13:47.000Z" + }, + "end": { + "$date": "2021-02-05T07:34:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ffac4bca-8691-4bd8-a06b-fdc555df233a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-05T07:35:22.000Z" + }, + "end": { + "$date": "2021-02-05T07:39:09.000Z" + }, + "events": [ + { + "uuid": "0aee2321-3197-4fbe-a8f7-247c038d4659", + "start": { + "$date": "2021-02-05T07:35:22.000Z" + }, + "end": { + "$date": "2021-02-05T07:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d69a481e-35f4-408c-95f5-2067fe74ca97", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T16:15:04.000Z" + }, + "end": { + "$date": "2021-02-05T16:38:12.000Z" + }, + "events": [ + { + "uuid": "f799103a-d306-46e7-a943-3836e21164a0", + "start": { + "$date": "2021-02-05T16:15:04.000Z" + }, + "end": { + "$date": "2021-02-05T16:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e96d969-25e4-4859-aa5d-0d3c2852530f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T16:42:50.000Z" + }, + "end": { + "$date": "2021-02-05T16:54:35.000Z" + }, + "events": [ + { + "uuid": "453be31a-375d-4f7c-b644-0b7d24ee8b60", + "start": { + "$date": "2021-02-05T16:42:50.000Z" + }, + "end": { + "$date": "2021-02-05T16:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ac7cbe9b-d967-4d90-80d8-407d1b500a90", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-05T17:32:43.000Z" + }, + "end": { + "$date": "2021-02-05T17:36:19.000Z" + }, + "events": [ + { + "uuid": "74ae86f8-b00d-455e-981b-885459312cfb", + "start": { + "$date": "2021-02-05T17:32:43.000Z" + }, + "end": { + "$date": "2021-02-05T17:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32d97e37-eba4-4299-af7f-98521fa2a587", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T17:37:27.000Z" + }, + "end": { + "$date": "2021-02-05T17:58:22.000Z" + }, + "events": [ + { + "uuid": "03f1b53e-1244-49be-b019-4ff34a1e0528", + "start": { + "$date": "2021-02-05T17:37:27.000Z" + }, + "end": { + "$date": "2021-02-05T17:58:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "5da7d97b-40a2-4e28-a03f-3b50fc26ac0d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-05T17:37:40.000Z" + }, + "end": { + "$date": "2021-02-06T02:15:54.000Z" + }, + "events": [ + { + "uuid": "23232908-7a9e-4a6f-9fe3-13afa4181d91", + "start": { + "$date": "2021-02-05T17:37:40.000Z" + }, + "end": { + "$date": "2021-02-05T17:48:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2aab7260-adac-4b25-af2e-d28d8f538aff", + "start": { + "$date": "2021-02-05T17:48:40.000Z" + }, + "end": { + "$date": "2021-02-05T18:01:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "255d7d8a-61c0-4d21-a740-078c44d51439", + "start": { + "$date": "2021-02-05T18:01:40.000Z" + }, + "end": { + "$date": "2021-02-05T23:33:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3ecd28b-5073-4de9-93ba-3b08d58e80aa", + "start": { + "$date": "2021-02-05T23:33:40.000Z" + }, + "end": { + "$date": "2021-02-06T02:14:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74454855-91b8-4446-a0d0-f2cc61091d42", + "start": { + "$date": "2021-02-06T02:14:40.000Z" + }, + "end": { + "$date": "2021-02-06T02:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97080ff4-2d26-4a24-aa7d-e3a87bd68e81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T18:00:42.000Z" + }, + "end": { + "$date": "2021-02-05T18:23:40.000Z" + }, + "events": [ + { + "uuid": "9689fdb9-5c82-4f33-918f-d879fef1ab23", + "start": { + "$date": "2021-02-05T18:00:42.000Z" + }, + "end": { + "$date": "2021-02-05T18:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1d8b4f9f-f1f7-4c73-86cd-3c7f88127779", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-05T18:08:52.000Z" + }, + "end": { + "$date": "2021-02-05T18:18:24.000Z" + }, + "events": [ + { + "uuid": "132b6a83-ea64-4e54-bd9a-910b1ac62116", + "start": { + "$date": "2021-02-05T18:08:52.000Z" + }, + "end": { + "$date": "2021-02-05T18:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "44ae4e29-45a5-4af2-9014-863e3adcf0fb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-05T18:21:01.000Z" + }, + "end": { + "$date": "2021-02-05T18:29:47.000Z" + }, + "events": [ + { + "uuid": "c0ab47b9-e039-47b0-aa4a-2a06af20b88d", + "start": { + "$date": "2021-02-05T18:21:01.000Z" + }, + "end": { + "$date": "2021-02-05T18:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3fa8a4c-a64d-4771-89f3-997479e8cb53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T18:25:53.000Z" + }, + "end": { + "$date": "2021-02-05T18:49:22.000Z" + }, + "events": [ + { + "uuid": "137d6823-009d-4090-bc28-3a0f6f373feb", + "start": { + "$date": "2021-02-05T18:25:53.000Z" + }, + "end": { + "$date": "2021-02-05T18:49:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "41d5de28-c197-4f2f-b38e-5361fba72463", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-05T18:30:33.000Z" + }, + "end": { + "$date": "2021-02-05T18:34:48.000Z" + }, + "events": [ + { + "uuid": "61c603a0-51c3-4335-a396-6adbdbba9623", + "start": { + "$date": "2021-02-05T18:30:33.000Z" + }, + "end": { + "$date": "2021-02-05T18:34:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "364c2374-cd0c-43d2-a397-2e52491e7124", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-05T18:35:19.000Z" + }, + "end": { + "$date": "2021-02-05T19:03:33.000Z" + }, + "events": [ + { + "uuid": "6f372b7f-2c67-463a-96cb-3c42b207fc29", + "start": { + "$date": "2021-02-05T18:35:19.000Z" + }, + "end": { + "$date": "2021-02-05T19:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b06b3201-9117-42d8-8e3e-e56041e97db8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T18:52:59.000Z" + }, + "end": { + "$date": "2021-02-05T19:14:00.000Z" + }, + "events": [ + { + "uuid": "0a352073-2a64-445e-a9c5-23a28a930fd9", + "start": { + "$date": "2021-02-05T18:52:59.000Z" + }, + "end": { + "$date": "2021-02-05T19:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4708965-31d4-448f-9bdd-67cde9b65853", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T19:21:40.000Z" + }, + "end": { + "$date": "2021-02-05T19:42:05.000Z" + }, + "events": [ + { + "uuid": "3ff5788c-3770-499c-9743-8a8e8fa123d5", + "start": { + "$date": "2021-02-05T19:21:40.000Z" + }, + "end": { + "$date": "2021-02-05T19:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec13ab9b-e590-4a27-aa19-3416d0e7c638", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T19:44:40.000Z" + }, + "end": { + "$date": "2021-02-05T19:54:05.000Z" + }, + "events": [ + { + "uuid": "1534e2b0-ea5c-4643-bb2b-29a8e7369284", + "start": { + "$date": "2021-02-05T19:44:40.000Z" + }, + "end": { + "$date": "2021-02-05T19:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5061c714-3bd8-4639-8d1c-17bd1d8f7731", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T19:59:40.000Z" + }, + "end": { + "$date": "2021-02-05T20:17:30.000Z" + }, + "events": [ + { + "uuid": "9e08c9c6-ee67-4bd5-ad3c-2e70113a7c4d", + "start": { + "$date": "2021-02-05T19:59:40.000Z" + }, + "end": { + "$date": "2021-02-05T20:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d631367c-72c5-4fbb-b723-efab106ce4b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T19:59:57.000Z" + }, + "end": { + "$date": "2021-02-05T20:19:31.000Z" + }, + "events": [ + { + "uuid": "8d07813c-4a15-4a70-aebc-74eb39deceb2", + "start": { + "$date": "2021-02-05T19:59:57.000Z" + }, + "end": { + "$date": "2021-02-05T20:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2034b8e-8d49-4f7f-a6fd-21b9d66e78d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T20:20:06.000Z" + }, + "end": { + "$date": "2021-02-05T20:36:11.000Z" + }, + "events": [ + { + "uuid": "91bb42ce-db8d-4d96-be82-6b8ed3ff6787", + "start": { + "$date": "2021-02-05T20:20:06.000Z" + }, + "end": { + "$date": "2021-02-05T20:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47794f5b-5caa-4a07-a252-c3e305ca89d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T20:40:13.000Z" + }, + "end": { + "$date": "2021-02-05T20:54:19.000Z" + }, + "events": [ + { + "uuid": "5cec9235-5da2-43df-9fd1-50088cf4c98e", + "start": { + "$date": "2021-02-05T20:40:13.000Z" + }, + "end": { + "$date": "2021-02-05T20:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d409720d-6466-4c3e-8433-3eeece300537", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-05T20:40:36.000Z" + }, + "end": { + "$date": "2021-02-05T20:54:01.000Z" + }, + "events": [ + { + "uuid": "f463efff-75c1-4a0b-95a0-3d4541972b63", + "start": { + "$date": "2021-02-05T20:40:36.000Z" + }, + "end": { + "$date": "2021-02-05T20:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "846d8e0b-3ac1-4dc7-93a9-d6c50e0b62c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-05T20:38:45.000Z" + }, + "end": { + "$date": "2021-02-05T21:45:16.000Z" + }, + "events": [ + { + "uuid": "b4cc611f-06f4-4004-8312-93e275085076", + "start": { + "$date": "2021-02-05T20:38:45.000Z" + }, + "end": { + "$date": "2021-02-05T21:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b65ea4d8-6cb0-460d-b5d1-be60d14914e3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-05T20:39:33.000Z" + }, + "end": { + "$date": "2021-02-05T21:27:14.000Z" + }, + "events": [ + { + "uuid": "90f86e8a-cf17-45dd-ac18-93a6f47c03a5", + "start": { + "$date": "2021-02-05T20:39:33.000Z" + }, + "end": { + "$date": "2021-02-05T21:27:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af2323c1-6495-4acf-97b5-fed1b022dd66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T20:45:52.000Z" + }, + "end": { + "$date": "2021-02-05T21:11:26.000Z" + }, + "events": [ + { + "uuid": "7f68c9f7-983e-4297-92fe-638ec174d73b", + "start": { + "$date": "2021-02-05T20:45:52.000Z" + }, + "end": { + "$date": "2021-02-05T21:11:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "576c1fa3-90b0-4790-8698-450b2ad04723", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T21:00:24.000Z" + }, + "end": { + "$date": "2021-02-05T21:18:01.000Z" + }, + "events": [ + { + "uuid": "ebab9491-9b03-4fea-971a-7fa5e274f2a2", + "start": { + "$date": "2021-02-05T21:00:24.000Z" + }, + "end": { + "$date": "2021-02-05T21:18:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb3e9c72-5f31-4efc-9bcd-4e84a54154b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T21:42:58.000Z" + }, + "end": { + "$date": "2021-02-05T21:55:53.000Z" + }, + "events": [ + { + "uuid": "24e3478f-300a-4f0e-a67e-7d6a2938167a", + "start": { + "$date": "2021-02-05T21:42:58.000Z" + }, + "end": { + "$date": "2021-02-05T21:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab6e488f-afd3-425a-b9ee-53c2467758a7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-05T22:08:20.000Z" + }, + "end": { + "$date": "2021-02-05T23:17:47.000Z" + }, + "events": [ + { + "uuid": "dde9d166-5573-4816-90bc-6af27ae6b982", + "start": { + "$date": "2021-02-05T22:08:20.000Z" + }, + "end": { + "$date": "2021-02-05T23:17:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7aae55bc-4361-4252-bbb3-2eed1e431ba3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T21:57:39.000Z" + }, + "end": { + "$date": "2021-02-05T22:13:08.000Z" + }, + "events": [ + { + "uuid": "1bca628f-eb7d-4387-99eb-20b608eb0c68", + "start": { + "$date": "2021-02-05T21:57:39.000Z" + }, + "end": { + "$date": "2021-02-05T22:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9506e915-ee6b-4358-9a63-3a65fa24a8f8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T22:15:49.000Z" + }, + "end": { + "$date": "2021-02-05T22:37:43.000Z" + }, + "events": [ + { + "uuid": "7fa52aad-8149-4f65-88f6-9708fea1532b", + "start": { + "$date": "2021-02-05T22:15:49.000Z" + }, + "end": { + "$date": "2021-02-05T22:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17419baa-92cd-478c-88f7-e42fb40fbc8a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-05T22:59:43.000Z" + }, + "end": { + "$date": "2021-02-05T22:59:41.000Z" + }, + "events": [ + { + "uuid": "13dbba2f-bfbf-4358-a485-e1ae08f73c7f", + "start": { + "$date": "2021-02-05T22:59:43.000Z" + }, + "end": { + "$date": "2021-02-05T22:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e1a77aa-5084-4648-9001-898e02c71237", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T00:03:13.000Z" + }, + "end": { + "$date": "2021-02-06T00:42:54.000Z" + }, + "events": [ + { + "uuid": "afd7839b-fa7d-4be9-99a4-ffb28dcc5bef", + "start": { + "$date": "2021-02-06T00:03:13.000Z" + }, + "end": { + "$date": "2021-02-06T00:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ababac6-29e5-4a3f-b695-d31636ee86f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T00:08:43.000Z" + }, + "end": { + "$date": "2021-02-06T01:39:35.000Z" + }, + "events": [ + { + "uuid": "44a0d322-1951-4c96-8510-278a54d63377", + "start": { + "$date": "2021-02-06T00:08:43.000Z" + }, + "end": { + "$date": "2021-02-06T01:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fffbf22e-550e-4a3f-a4d0-343f76644f47", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T00:48:03.000Z" + }, + "end": { + "$date": "2021-02-06T01:39:34.000Z" + }, + "events": [ + { + "uuid": "db0df3d9-57cc-46cb-b161-f2659c453feb", + "start": { + "$date": "2021-02-06T00:48:03.000Z" + }, + "end": { + "$date": "2021-02-06T01:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0b66ec49-a0e2-4acf-97d5-36d3a05e99d5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-06T01:07:22.000Z" + }, + "end": { + "$date": "2021-02-06T02:18:23.000Z" + }, + "events": [ + { + "uuid": "d60756b3-a9d3-4f78-9f55-87280a8c4307", + "start": { + "$date": "2021-02-06T01:07:22.000Z" + }, + "end": { + "$date": "2021-02-06T02:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37674378-0eb4-4cf7-ac58-3b9ae4d043e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T01:15:36.000Z" + }, + "end": { + "$date": "2021-02-06T01:31:18.000Z" + }, + "events": [ + { + "uuid": "1a858b49-8233-4a9d-8932-4e6fd643a4c4", + "start": { + "$date": "2021-02-06T01:15:36.000Z" + }, + "end": { + "$date": "2021-02-06T01:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62d1d0f6-9614-4591-8af9-cf7792e95e20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T01:40:08.000Z" + }, + "end": { + "$date": "2021-02-06T01:53:51.000Z" + }, + "events": [ + { + "uuid": "2f8f583c-9322-4977-a04a-ad2ff07bcd5c", + "start": { + "$date": "2021-02-06T01:40:08.000Z" + }, + "end": { + "$date": "2021-02-06T01:53:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "44136414-57fd-495f-ac82-374307ce78b3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-06T01:32:25.000Z" + }, + "end": { + "$date": "2021-02-06T01:33:35.000Z" + }, + "events": [ + { + "uuid": "7ce8d9a5-6333-453d-a897-91c82b0e4c9d", + "start": { + "$date": "2021-02-06T01:32:25.000Z" + }, + "end": { + "$date": "2021-02-06T01:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "64ca6af3-58c8-44a2-822a-96028a2b8855", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T01:35:17.000Z" + }, + "end": { + "$date": "2021-02-06T02:19:15.000Z" + }, + "events": [ + { + "uuid": "ac21da23-b5c2-4082-8600-65276031ba50", + "start": { + "$date": "2021-02-06T01:35:17.000Z" + }, + "end": { + "$date": "2021-02-06T02:19:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05c3392a-732b-42ec-be06-1c35927c3164", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T01:56:19.000Z" + }, + "end": { + "$date": "2021-02-06T02:20:46.000Z" + }, + "events": [ + { + "uuid": "e752de5d-75c8-466d-8c97-398dd34daf47", + "start": { + "$date": "2021-02-06T01:56:19.000Z" + }, + "end": { + "$date": "2021-02-06T02:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d2cd1b7-bed1-4bc4-b75f-6aef7e1ff5fa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T02:09:35.000Z" + }, + "end": { + "$date": "2021-02-06T02:43:50.000Z" + }, + "events": [ + { + "uuid": "b5d91eb4-36d9-438b-a428-218127a18574", + "start": { + "$date": "2021-02-06T02:09:35.000Z" + }, + "end": { + "$date": "2021-02-06T02:43:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6b418e18-094c-421d-9c96-d288fc3cad0b", + "uuid": "d68cfb8c-b52c-41ba-aa70-2f3e5e55c095", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-05T17:37:51.000Z" + }, + "end": { + "$date": "2021-02-07T06:55:11.000Z" + }, + "events": [ + { + "uuid": "f79a5300-55ea-49d0-ad51-c3e89febd27f", + "start": { + "$date": "2021-02-05T17:37:51.000Z" + }, + "end": { + "$date": "2021-02-05T17:39:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d92af454-188d-48bc-9b1a-3f49000b9190", + "start": { + "$date": "2021-02-05T17:39:51.000Z" + }, + "end": { + "$date": "2021-02-05T17:41:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "defd64f2-6ce6-44a9-b9f4-5b9f8558e728", + "start": { + "$date": "2021-02-05T17:41:51.000Z" + }, + "end": { + "$date": "2021-02-06T04:17:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1fdc806b-7c62-4eb2-93cd-e8f555c7068a", + "start": { + "$date": "2021-02-06T04:17:51.000Z" + }, + "end": { + "$date": "2021-02-06T04:29:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb8b4d01-4a5e-46a7-bdc5-8fabd045ab9d", + "start": { + "$date": "2021-02-06T04:29:51.000Z" + }, + "end": { + "$date": "2021-02-06T05:21:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5404275-f96e-47a9-a403-7f0bc682aa9b", + "start": { + "$date": "2021-02-06T05:21:51.000Z" + }, + "end": { + "$date": "2021-02-06T05:32:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a92ed7be-18e8-430d-b6af-e68f2e64c8cd", + "start": { + "$date": "2021-02-06T05:32:51.000Z" + }, + "end": { + "$date": "2021-02-06T07:31:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "290ad086-0730-47e7-91d3-bac13788ac39", + "start": { + "$date": "2021-02-06T07:31:51.000Z" + }, + "end": { + "$date": "2021-02-06T07:33:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ee21befc-652b-4ed5-9767-a68efc21b6e7", + "start": { + "$date": "2021-02-06T07:33:51.000Z" + }, + "end": { + "$date": "2021-02-06T07:46:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7e311e87-5fe0-48a6-8d19-1a8fd7c5fbb0", + "start": { + "$date": "2021-02-06T07:46:51.000Z" + }, + "end": { + "$date": "2021-02-06T08:41:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3655f34e-6f93-4152-aaae-30f8bde8d35d", + "start": { + "$date": "2021-02-06T08:41:51.000Z" + }, + "end": { + "$date": "2021-02-06T13:59:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c792e897-7f06-4047-878f-adeca82bfde8", + "start": { + "$date": "2021-02-06T13:59:51.000Z" + }, + "end": { + "$date": "2021-02-06T14:01:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e27bb74-f52b-4182-a51a-d4a72d4eddb4", + "start": { + "$date": "2021-02-06T14:01:51.000Z" + }, + "end": { + "$date": "2021-02-06T14:14:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a631191a-d6dc-44be-ba7c-8416f4889ab8", + "start": { + "$date": "2021-02-06T14:14:51.000Z" + }, + "end": { + "$date": "2021-02-06T14:52:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77992826-3499-4940-8f40-ad9de987a58f", + "start": { + "$date": "2021-02-06T14:52:51.000Z" + }, + "end": { + "$date": "2021-02-06T16:15:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36db59a2-347b-4e89-b40d-7292b7905b90", + "start": { + "$date": "2021-02-06T16:15:51.000Z" + }, + "end": { + "$date": "2021-02-06T16:30:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "28105050-da28-4b07-bb2e-5079032691b9", + "start": { + "$date": "2021-02-06T16:30:51.000Z" + }, + "end": { + "$date": "2021-02-06T18:22:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "411bc7be-fd54-4665-96e7-0cf698a449fc", + "start": { + "$date": "2021-02-06T18:22:51.000Z" + }, + "end": { + "$date": "2021-02-06T18:26:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "458051c4-ce75-43ae-9b19-f7141c013893", + "start": { + "$date": "2021-02-06T18:26:51.000Z" + }, + "end": { + "$date": "2021-02-06T20:05:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54ae724e-8342-45f9-af5b-0e6d347c97c9", + "start": { + "$date": "2021-02-06T20:05:51.000Z" + }, + "end": { + "$date": "2021-02-06T20:07:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e30af0c-4923-4859-88a3-26a3f5ab3e0a", + "start": { + "$date": "2021-02-06T20:07:51.000Z" + }, + "end": { + "$date": "2021-02-06T20:10:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "410e9fbb-567a-4b9d-8e69-a4cd80208e13", + "start": { + "$date": "2021-02-06T20:10:51.000Z" + }, + "end": { + "$date": "2021-02-07T06:55:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "0c62f553-de56-44ee-9727-0d09e620ae55", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-06T02:17:34.000Z" + }, + "end": { + "$date": "2021-02-06T11:47:54.000Z" + }, + "events": [ + { + "uuid": "2c1d756e-3173-477e-9baf-12e958e55032", + "start": { + "$date": "2021-02-06T02:17:34.000Z" + }, + "end": { + "$date": "2021-02-06T11:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "eb38877f-7349-4b65-8112-ddf7477d027e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-06T02:19:59.000Z" + }, + "end": { + "$date": "2021-02-06T05:45:37.000Z" + }, + "events": [ + { + "uuid": "960e11d0-8dc1-4bc1-96db-7f96b834ee1f", + "start": { + "$date": "2021-02-06T02:19:59.000Z" + }, + "end": { + "$date": "2021-02-06T05:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5cc375a-6b73-4161-8c25-360bcaa5d39a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T02:22:40.000Z" + }, + "end": { + "$date": "2021-02-06T02:36:56.000Z" + }, + "events": [ + { + "uuid": "58ebc858-d1c4-4101-b61e-dfa0e253a12d", + "start": { + "$date": "2021-02-06T02:22:40.000Z" + }, + "end": { + "$date": "2021-02-06T02:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ab9b8c27-a5b2-4110-a43c-659c613d1268", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-06T02:22:51.000Z" + }, + "end": { + "$date": "2021-02-06T02:58:49.000Z" + }, + "events": [ + { + "uuid": "f8e4275a-3eeb-45d8-a837-7212f62d1c95", + "start": { + "$date": "2021-02-06T02:22:51.000Z" + }, + "end": { + "$date": "2021-02-06T02:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31fdbf11-01ac-41d4-87e2-c741b9920b1f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T03:13:27.000Z" + }, + "end": { + "$date": "2021-02-06T03:13:23.000Z" + }, + "events": [ + { + "uuid": "658fef67-3349-40ff-9b85-f387585bc559", + "start": { + "$date": "2021-02-06T03:13:27.000Z" + }, + "end": { + "$date": "2021-02-06T03:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f01c575-7f27-4b4e-af4f-6d87f93921dc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T03:24:22.000Z" + }, + "end": { + "$date": "2021-02-06T04:02:18.000Z" + }, + "events": [ + { + "uuid": "68c4b88e-94fa-417b-8364-d9c1e74ba7f3", + "start": { + "$date": "2021-02-06T03:24:22.000Z" + }, + "end": { + "$date": "2021-02-06T04:02:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "af0c7161-bc6c-493a-809b-4c591cf28072", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-06T02:59:15.000Z" + }, + "end": { + "$date": "2021-02-06T07:44:50.000Z" + }, + "events": [ + { + "uuid": "60a5c09c-d8d4-48fa-9eb8-656f15a231fb", + "start": { + "$date": "2021-02-06T02:59:15.000Z" + }, + "end": { + "$date": "2021-02-06T04:28:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98ff0945-c02a-4931-ac95-7e0a5eaa5885", + "start": { + "$date": "2021-02-06T04:28:15.000Z" + }, + "end": { + "$date": "2021-02-06T04:33:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03f9e140-245a-483f-ab39-2b07f0cd7332", + "start": { + "$date": "2021-02-06T04:33:15.000Z" + }, + "end": { + "$date": "2021-02-06T07:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "87c4dd9d-db51-49af-98e9-e3e3846394ef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T03:22:49.000Z" + }, + "end": { + "$date": "2021-02-06T03:33:44.000Z" + }, + "events": [ + { + "uuid": "d48d6bee-181c-40ac-a3c5-9cfd849caeff", + "start": { + "$date": "2021-02-06T03:22:49.000Z" + }, + "end": { + "$date": "2021-02-06T03:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "461e17e0-96cb-4edd-b2ee-33c76e2aa389", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T03:49:45.000Z" + }, + "end": { + "$date": "2021-02-06T04:12:51.000Z" + }, + "events": [ + { + "uuid": "4794f046-7d74-4a31-a1fa-218081c9eeb2", + "start": { + "$date": "2021-02-06T03:49:45.000Z" + }, + "end": { + "$date": "2021-02-06T04:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c49a6ac2-1c4f-48f6-afc5-502f687780bc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T04:12:38.000Z" + }, + "end": { + "$date": "2021-02-06T04:13:09.000Z" + }, + "events": [ + { + "uuid": "745056c5-f71e-47cd-9a94-6cab35e4a5c8", + "start": { + "$date": "2021-02-06T04:12:38.000Z" + }, + "end": { + "$date": "2021-02-06T04:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "261fb1e1-b132-43b0-a5b2-02ec3008ace8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T04:41:34.000Z" + }, + "end": { + "$date": "2021-02-06T04:44:49.000Z" + }, + "events": [ + { + "uuid": "33e3f3b0-80d4-45ee-8ea8-8472f24b052a", + "start": { + "$date": "2021-02-06T04:41:34.000Z" + }, + "end": { + "$date": "2021-02-06T04:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "934b95af-7672-47b0-8eed-aa4298290be9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T05:25:45.000Z" + }, + "end": { + "$date": "2021-02-06T05:37:18.000Z" + }, + "events": [ + { + "uuid": "ec6af00d-a829-443e-9fcd-8e67f46924ed", + "start": { + "$date": "2021-02-06T05:25:45.000Z" + }, + "end": { + "$date": "2021-02-06T05:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "1c01e9d2-ca04-4257-bc46-b778ff2e6ce7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T05:53:52.000Z" + }, + "end": { + "$date": "2021-02-06T06:40:49.000Z" + }, + "events": [ + { + "uuid": "f636cb40-f099-4397-97ed-aded42627b7c", + "start": { + "$date": "2021-02-06T05:53:52.000Z" + }, + "end": { + "$date": "2021-02-06T06:40:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2ee4b83-b433-44b3-afbb-26fc9062f72c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T04:16:56.000Z" + }, + "end": { + "$date": "2021-02-06T04:39:58.000Z" + }, + "events": [ + { + "uuid": "c0f9fc48-5308-4259-b267-cffe9b15cc8b", + "start": { + "$date": "2021-02-06T04:16:56.000Z" + }, + "end": { + "$date": "2021-02-06T04:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "842f8e03-4fbd-46ab-bfbf-5cf65d9bf9a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T04:17:39.000Z" + }, + "end": { + "$date": "2021-02-06T04:39:59.000Z" + }, + "events": [ + { + "uuid": "e7d709fd-abc3-4300-b8ce-070ec7ae8a31", + "start": { + "$date": "2021-02-06T04:17:39.000Z" + }, + "end": { + "$date": "2021-02-06T04:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ddf44fe-d0f3-4827-8e50-161982557aab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T04:46:22.000Z" + }, + "end": { + "$date": "2021-02-06T05:00:07.000Z" + }, + "events": [ + { + "uuid": "10a5e4b7-8385-4f64-9375-8bd7d677c993", + "start": { + "$date": "2021-02-06T04:46:22.000Z" + }, + "end": { + "$date": "2021-02-06T05:00:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9bf93f9-1704-409a-b5ee-49e7d45346e9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T06:03:56.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:11.000Z" + }, + "events": [ + { + "uuid": "93c570b7-498a-4b82-94a8-c155772992a5", + "start": { + "$date": "2021-02-06T06:03:56.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70a6c523-ef11-4caa-baa8-c1b859c0630f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T04:46:20.000Z" + }, + "end": { + "$date": "2021-02-06T05:00:08.000Z" + }, + "events": [ + { + "uuid": "f4d82502-a63a-4986-99ad-f28729a4726d", + "start": { + "$date": "2021-02-06T04:46:20.000Z" + }, + "end": { + "$date": "2021-02-06T05:00:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b4fd87bb-60bb-4c3e-8c31-b55e2c3e5256", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T04:47:21.000Z" + }, + "end": { + "$date": "2021-02-06T05:00:31.000Z" + }, + "events": [ + { + "uuid": "49614c6f-0281-4618-a206-54576f5064c9", + "start": { + "$date": "2021-02-06T04:47:21.000Z" + }, + "end": { + "$date": "2021-02-06T04:57:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bbd482b3-f797-441d-92b1-449ab7ede003", + "start": { + "$date": "2021-02-06T04:57:21.000Z" + }, + "end": { + "$date": "2021-02-06T04:59:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4217b690-1583-4421-bfd0-c2bdd2e5258a", + "start": { + "$date": "2021-02-06T04:59:21.000Z" + }, + "end": { + "$date": "2021-02-06T05:00:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ceed73c-3994-463c-8496-1c53ccbd734e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T04:58:13.000Z" + }, + "end": { + "$date": "2021-02-06T05:36:23.000Z" + }, + "events": [ + { + "uuid": "c7ebf807-f639-4d9b-904b-d23d5b22af91", + "start": { + "$date": "2021-02-06T04:58:13.000Z" + }, + "end": { + "$date": "2021-02-06T05:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2ac7380-66df-400d-ae7a-5570e5f815f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T05:00:28.000Z" + }, + "end": { + "$date": "2021-02-06T05:02:08.000Z" + }, + "events": [ + { + "uuid": "4987426a-9a75-4f14-8098-6aa68fb49deb", + "start": { + "$date": "2021-02-06T05:00:28.000Z" + }, + "end": { + "$date": "2021-02-06T05:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0b09bd5-5867-42c3-8a0f-bce8cf2576f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T05:51:19.000Z" + }, + "end": { + "$date": "2021-02-06T05:51:23.000Z" + }, + "events": [ + { + "uuid": "df96b7f6-d579-487c-804c-5bc98273b6cf", + "start": { + "$date": "2021-02-06T05:51:19.000Z" + }, + "end": { + "$date": "2021-02-06T05:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b6d61125-041f-4999-954a-31762d7f242c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T05:02:32.000Z" + }, + "end": { + "$date": "2021-02-06T05:52:42.000Z" + }, + "events": [ + { + "uuid": "b8492a6d-b0e1-47a4-b8e9-8abeea8afd25", + "start": { + "$date": "2021-02-06T05:02:32.000Z" + }, + "end": { + "$date": "2021-02-06T05:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dd6aac5-797b-4a41-92d7-44b79a148a4e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T05:14:27.000Z" + }, + "end": { + "$date": "2021-02-06T05:51:17.000Z" + }, + "events": [ + { + "uuid": "4596e0af-c9a5-432d-be80-768f70bc9cc1", + "start": { + "$date": "2021-02-06T05:14:27.000Z" + }, + "end": { + "$date": "2021-02-06T05:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "bffb54c4-012d-4ec0-9db3-c383f1def4e4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T05:44:10.000Z" + }, + "end": { + "$date": "2021-02-06T05:44:15.000Z" + }, + "events": [ + { + "uuid": "6e3a5cb8-4514-4233-8401-c290310ab07f", + "start": { + "$date": "2021-02-06T05:44:10.000Z" + }, + "end": { + "$date": "2021-02-06T05:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "66247376-56f4-4005-bbb7-deb4c78b848b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-06T05:45:59.000Z" + }, + "end": { + "$date": "2021-02-06T07:51:00.000Z" + }, + "events": [ + { + "uuid": "d33b7d73-c1ec-4be0-8abb-bd6faa9a8eb9", + "start": { + "$date": "2021-02-06T05:45:59.000Z" + }, + "end": { + "$date": "2021-02-06T07:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "be4d87ac-f483-47c7-a1a3-a10e650a355f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T05:49:42.000Z" + }, + "end": { + "$date": "2021-02-06T05:51:25.000Z" + }, + "events": [ + { + "uuid": "4644cab8-315b-430f-a148-57a6e90f79dc", + "start": { + "$date": "2021-02-06T05:49:42.000Z" + }, + "end": { + "$date": "2021-02-06T05:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82aa98c9-8346-48ea-9bd8-7d25c2cff35e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T05:51:22.000Z" + }, + "end": { + "$date": "2021-02-06T05:52:43.000Z" + }, + "events": [ + { + "uuid": "90583b76-78b4-4a82-97d6-d74d3aec6f2c", + "start": { + "$date": "2021-02-06T05:51:22.000Z" + }, + "end": { + "$date": "2021-02-06T05:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "64bf94b3-60d2-438d-aed7-d790e9660397", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T05:52:38.000Z" + }, + "end": { + "$date": "2021-02-06T05:52:47.000Z" + }, + "events": [ + { + "uuid": "9ce73faa-0e9a-4634-93e8-e912de2715d0", + "start": { + "$date": "2021-02-06T05:52:38.000Z" + }, + "end": { + "$date": "2021-02-06T05:52:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "ef243272-6755-49d4-83e6-d6798d6324b0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T05:55:08.000Z" + }, + "end": { + "$date": "2021-02-06T06:40:13.000Z" + }, + "events": [ + { + "uuid": "805b8fae-c3ce-498b-8a16-a266a6cffacb", + "start": { + "$date": "2021-02-06T05:55:08.000Z" + }, + "end": { + "$date": "2021-02-06T06:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4063772-f888-415a-a17d-7475e66a9700", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-06T06:03:55.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:10.000Z" + }, + "events": [ + { + "uuid": "3d66c976-f29a-44ef-8af1-f4e8ceecb601", + "start": { + "$date": "2021-02-06T06:03:55.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61513145-ad66-498f-8693-532f282c2444", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T06:03:51.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:06.000Z" + }, + "events": [ + { + "uuid": "246d098c-374a-4fe3-8a0c-0e854a0d1ebb", + "start": { + "$date": "2021-02-06T06:03:51.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "122b3839-2f6a-4a76-b6fc-d8075e203c1c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T06:03:57.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:08.000Z" + }, + "events": [ + { + "uuid": "a6c39514-cfbc-456c-8ca9-a206c647d8fd", + "start": { + "$date": "2021-02-06T06:03:57.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1d3765e-7f81-4802-9f43-8f81339c17a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T06:04:11.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:11.000Z" + }, + "events": [ + { + "uuid": "d6ce488d-f170-4638-90d7-f9941d162452", + "start": { + "$date": "2021-02-06T06:04:11.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2cfd366b-5f45-405c-b2c2-59d1d147b358", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T06:03:56.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:18.000Z" + }, + "events": [ + { + "uuid": "1c8993db-4f17-44b5-9417-4090f5e202e8", + "start": { + "$date": "2021-02-06T06:03:56.000Z" + }, + "end": { + "$date": "2021-02-06T06:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0eb74de1-e3bd-4f32-bf4c-033348489b77", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T06:42:12.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:25.000Z" + }, + "events": [ + { + "uuid": "46c7df69-03a5-46ac-86b0-91cd4a3f4ad2", + "start": { + "$date": "2021-02-06T06:42:12.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2598768f-9d35-4485-a24b-e60d3eb887b9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-06T06:42:16.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:16.000Z" + }, + "events": [ + { + "uuid": "d8903678-a007-4c86-840f-aadbe5ef22fb", + "start": { + "$date": "2021-02-06T06:42:16.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24c02169-bc72-4612-bcbd-f791d82d7bb2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T06:42:31.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:16.000Z" + }, + "events": [ + { + "uuid": "67eb0cda-99c5-41e0-87e2-04489bb39d34", + "start": { + "$date": "2021-02-06T06:42:31.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1aa9bce5-1e68-4d97-b08c-124446f03889", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T06:42:13.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:18.000Z" + }, + "events": [ + { + "uuid": "f32ab320-3427-450f-8c41-ff8012076f42", + "start": { + "$date": "2021-02-06T06:42:13.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "189e7579-e3c8-4d55-b4f4-4ec10a4f6bd7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T06:42:29.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:22.000Z" + }, + "events": [ + { + "uuid": "dcc52da1-7f48-4a33-b62b-7ce09b203c98", + "start": { + "$date": "2021-02-06T06:42:29.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8227b825-eced-4fa5-911e-859614df5361", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T06:42:17.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:17.000Z" + }, + "events": [ + { + "uuid": "cfedf47b-27bf-467d-82b4-9b15833e67a7", + "start": { + "$date": "2021-02-06T06:42:17.000Z" + }, + "end": { + "$date": "2021-02-06T06:55:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0bb741f3-dba9-45b8-9b1e-58d306412ec6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T06:41:09.000Z" + }, + "end": { + "$date": "2021-02-06T08:20:49.000Z" + }, + "events": [ + { + "uuid": "8b8e3735-156c-4f43-bea6-50e4c775010f", + "start": { + "$date": "2021-02-06T06:41:09.000Z" + }, + "end": { + "$date": "2021-02-06T08:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bbae1312-ea2a-4535-9a41-bb389bcc6c71", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T06:43:14.000Z" + }, + "end": { + "$date": "2021-02-06T08:19:47.000Z" + }, + "events": [ + { + "uuid": "2804bbfc-47ed-4e7d-b376-1f696ff5205e", + "start": { + "$date": "2021-02-06T06:43:14.000Z" + }, + "end": { + "$date": "2021-02-06T08:19:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c4afd37-4fbd-4e1c-bc22-f4928dc82788", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T06:57:28.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:13.000Z" + }, + "events": [ + { + "uuid": "fd5d3776-5734-4cd1-bc23-781391ce821e", + "start": { + "$date": "2021-02-06T06:57:28.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e038ddf-736d-4d11-a0d5-08800ed605bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-06T06:57:26.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:11.000Z" + }, + "events": [ + { + "uuid": "fbe785c4-1ee9-4677-893a-9113a9a4eec9", + "start": { + "$date": "2021-02-06T06:57:26.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea2a62a8-75ea-42c2-909d-3edfb2b7f791", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T06:57:47.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:12.000Z" + }, + "events": [ + { + "uuid": "4948eef3-1185-4196-9101-ea672157ea83", + "start": { + "$date": "2021-02-06T06:57:47.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6d52b67-fbb1-4b16-b2fb-bbeff0824d21", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T06:57:43.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:18.000Z" + }, + "events": [ + { + "uuid": "bb94ef97-7a79-4bec-aa19-9ed85cbab82d", + "start": { + "$date": "2021-02-06T06:57:43.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "925d4a8b-4413-4628-af30-c28745852ac5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-06T06:57:40.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:18.000Z" + }, + "events": [ + { + "uuid": "d7d6122d-afa1-4f00-908a-68bd5cb81621", + "start": { + "$date": "2021-02-06T06:57:40.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42ccdd0d-d82c-4566-9dc4-d3f47318353a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T06:57:28.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:19.000Z" + }, + "events": [ + { + "uuid": "36be75bc-fec5-458d-aabb-9b295f635b05", + "start": { + "$date": "2021-02-06T06:57:28.000Z" + }, + "end": { + "$date": "2021-02-06T07:16:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "cc8e1020-89b8-4c40-94ce-b1e7c66e4d68", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-06T07:18:52.000Z" + }, + "end": { + "$date": "2021-02-06T10:36:14.000Z" + }, + "events": [ + { + "uuid": "b95fd32a-2024-4a49-a805-d1e4bf17bd0c", + "start": { + "$date": "2021-02-06T07:18:52.000Z" + }, + "end": { + "$date": "2021-02-06T10:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ab463a1-0acf-47e1-aa9d-7d44a021a56b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T07:56:34.000Z" + }, + "end": { + "$date": "2021-02-06T08:17:20.000Z" + }, + "events": [ + { + "uuid": "6eaec8b7-1034-4712-985d-a62fe2465dad", + "start": { + "$date": "2021-02-06T07:56:34.000Z" + }, + "end": { + "$date": "2021-02-06T08:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9fc86531-f93a-4495-a3a1-bda104a97ef2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-06T08:04:43.000Z" + }, + "end": { + "$date": "2021-02-06T09:00:07.000Z" + }, + "events": [ + { + "uuid": "d9740a98-b6ae-457c-803e-720de8724c11", + "start": { + "$date": "2021-02-06T08:04:43.000Z" + }, + "end": { + "$date": "2021-02-06T09:00:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b0da2d9-0455-439b-a2c4-3b0596115814", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T08:31:42.000Z" + }, + "end": { + "$date": "2021-02-06T09:08:47.000Z" + }, + "events": [ + { + "uuid": "804140b6-7cbf-4c88-a4b4-b59a97de139c", + "start": { + "$date": "2021-02-06T08:31:42.000Z" + }, + "end": { + "$date": "2021-02-06T09:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d8c0994-b4e6-4c19-a92d-db62f04bc1d8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-06T09:14:33.000Z" + }, + "end": { + "$date": "2021-02-06T09:39:16.000Z" + }, + "events": [ + { + "uuid": "e1e1fce1-13ea-4d23-89f8-ed31dc6ab467", + "start": { + "$date": "2021-02-06T09:14:33.000Z" + }, + "end": { + "$date": "2021-02-06T09:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5cf873c-0601-4945-b093-61a1d249a58c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T15:19:11.000Z" + }, + "end": { + "$date": "2021-02-06T15:47:26.000Z" + }, + "events": [ + { + "uuid": "e90f2d40-df29-42d1-b402-14d1f05be8f2", + "start": { + "$date": "2021-02-06T15:19:11.000Z" + }, + "end": { + "$date": "2021-02-06T15:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ef1f003-d06a-4e19-a241-c2ae0b4a0e66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T15:52:30.000Z" + }, + "end": { + "$date": "2021-02-06T16:16:40.000Z" + }, + "events": [ + { + "uuid": "6fb2bc9a-76eb-465a-91c3-c90fa5479ad0", + "start": { + "$date": "2021-02-06T15:52:30.000Z" + }, + "end": { + "$date": "2021-02-06T16:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4a6cbe2e-473e-4d6e-b54a-94d382bd72a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T16:02:26.000Z" + }, + "end": { + "$date": "2021-02-06T16:24:12.000Z" + }, + "events": [ + { + "uuid": "afed7f59-2351-4452-8407-239296da604d", + "start": { + "$date": "2021-02-06T16:02:26.000Z" + }, + "end": { + "$date": "2021-02-06T16:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "381a1e7f-09af-4ecd-9781-b16bfd16f84e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T16:26:32.000Z" + }, + "end": { + "$date": "2021-02-06T16:55:37.000Z" + }, + "events": [ + { + "uuid": "22435539-41d0-41e2-9446-c6293a638e0a", + "start": { + "$date": "2021-02-06T16:26:32.000Z" + }, + "end": { + "$date": "2021-02-06T16:55:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "754aa49d-99e3-43e2-bf88-ce9841f94035", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T16:24:22.000Z" + }, + "end": { + "$date": "2021-02-06T16:59:38.000Z" + }, + "events": [ + { + "uuid": "72ca218f-7e03-4d7f-a15f-58feae71316e", + "start": { + "$date": "2021-02-06T16:24:22.000Z" + }, + "end": { + "$date": "2021-02-06T16:59:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a8517f39-a321-4a2b-9286-9b02fee44af1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-06T17:57:07.000Z" + }, + "end": { + "$date": "2021-02-06T17:57:27.000Z" + }, + "events": [ + { + "uuid": "4942e5e1-227d-4175-92c4-94ec2524c2c4", + "start": { + "$date": "2021-02-06T17:57:07.000Z" + }, + "end": { + "$date": "2021-02-06T17:57:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f9b25ea-dc6d-4688-bb81-456eddf531cc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T17:54:06.000Z" + }, + "end": { + "$date": "2021-02-06T18:47:47.000Z" + }, + "events": [ + { + "uuid": "c4849f78-325d-4599-9192-afd1a189b625", + "start": { + "$date": "2021-02-06T17:54:06.000Z" + }, + "end": { + "$date": "2021-02-06T19:03:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "42398f77-97a7-42bb-bda8-45cc1130d981", + "start": { + "$date": "2021-02-06T19:03:06.000Z" + }, + "end": { + "$date": "2021-02-06T19:33:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a0c70f25-9125-4edd-b563-6f90539ada12", + "start": { + "$date": "2021-02-06T19:33:06.000Z" + }, + "end": { + "$date": "2021-02-06T18:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bb502a1-a8c9-4e7c-a604-b466122a1f78", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T17:04:12.000Z" + }, + "end": { + "$date": "2021-02-06T17:48:56.000Z" + }, + "events": [ + { + "uuid": "76fac9d0-f735-4310-8593-e525ab781e1b", + "start": { + "$date": "2021-02-06T17:04:12.000Z" + }, + "end": { + "$date": "2021-02-06T17:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "08da2b45-36b0-444d-8113-7e26c99a997b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T16:59:58.000Z" + }, + "end": { + "$date": "2021-02-06T17:54:05.000Z" + }, + "events": [ + { + "uuid": "53920303-9a1b-4bf5-8002-d73927f5a3e7", + "start": { + "$date": "2021-02-06T16:59:58.000Z" + }, + "end": { + "$date": "2021-02-06T17:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d4dd3cc-825a-419b-9269-dfa2b5be9364", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T17:57:03.000Z" + }, + "end": { + "$date": "2021-02-06T18:27:58.000Z" + }, + "events": [ + { + "uuid": "8f7c199f-0bb4-462c-970c-a771fc4152f8", + "start": { + "$date": "2021-02-06T17:57:03.000Z" + }, + "end": { + "$date": "2021-02-06T18:27:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e73d4049-463a-440f-945d-cbfe8a9be22c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T17:57:34.000Z" + }, + "end": { + "$date": "2021-02-06T18:27:48.000Z" + }, + "events": [ + { + "uuid": "0f68cc25-0a75-4481-9141-ea6a192d98a2", + "start": { + "$date": "2021-02-06T17:57:34.000Z" + }, + "end": { + "$date": "2021-02-06T18:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "221704df-e204-4994-9430-8827baf40a90", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-06T18:32:04.000Z" + }, + "end": { + "$date": "2021-02-06T18:50:39.000Z" + }, + "events": [ + { + "uuid": "34484254-7e91-4f1d-a8da-5aadab817afa", + "start": { + "$date": "2021-02-06T18:32:04.000Z" + }, + "end": { + "$date": "2021-02-06T18:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "851b9c45-23d9-4c5b-a091-03df8f6eeb60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T18:32:30.000Z" + }, + "end": { + "$date": "2021-02-06T18:50:34.000Z" + }, + "events": [ + { + "uuid": "573d99f3-abaf-46ae-927c-1c4126fdc60c", + "start": { + "$date": "2021-02-06T18:32:30.000Z" + }, + "end": { + "$date": "2021-02-06T18:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8eb19d16-df20-44f2-b73a-96ab864c37ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-06T18:45:15.000Z" + }, + "end": { + "$date": "2021-02-06T19:30:18.000Z" + }, + "events": [ + { + "uuid": "0ff5ce08-179c-4110-905c-33234de5ec4c", + "start": { + "$date": "2021-02-06T18:45:15.000Z" + }, + "end": { + "$date": "2021-02-06T19:30:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93376639-7138-45fe-8cc2-7a3060231ac9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T19:45:07.000Z" + }, + "end": { + "$date": "2021-02-06T20:14:12.000Z" + }, + "events": [ + { + "uuid": "001f2226-4c4e-4c88-98ce-8220b0d01133", + "start": { + "$date": "2021-02-06T19:45:07.000Z" + }, + "end": { + "$date": "2021-02-06T20:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "92905de8-7237-4c63-a1e0-8c58e29e0824", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-06T19:40:34.000Z" + }, + "end": { + "$date": "2021-02-06T20:19:50.000Z" + }, + "events": [ + { + "uuid": "d9e8c0e8-be36-41a4-ab5d-a062aa6b17c1", + "start": { + "$date": "2021-02-06T19:40:34.000Z" + }, + "end": { + "$date": "2021-02-06T20:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2bfd7c6-9fcb-4eea-8247-295e85f664a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T20:20:45.000Z" + }, + "end": { + "$date": "2021-02-06T20:52:34.000Z" + }, + "events": [ + { + "uuid": "20388e90-89ef-472a-accb-727d5750e442", + "start": { + "$date": "2021-02-06T20:20:45.000Z" + }, + "end": { + "$date": "2021-02-06T20:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79001f45-f771-4975-a7ce-124bd6bc5a85", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T20:58:51.000Z" + }, + "end": { + "$date": "2021-02-06T21:33:31.000Z" + }, + "events": [ + { + "uuid": "f970700a-7699-4702-bc7d-800b48b27fe0", + "start": { + "$date": "2021-02-06T20:58:51.000Z" + }, + "end": { + "$date": "2021-02-06T21:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2334e85f-58b2-48fd-90b5-3f6dbd398f76", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-06T21:31:22.000Z" + }, + "end": { + "$date": "2021-02-06T23:13:13.000Z" + }, + "events": [ + { + "uuid": "2aa79260-32ec-4e7b-96ef-477713f182ae", + "start": { + "$date": "2021-02-06T21:31:22.000Z" + }, + "end": { + "$date": "2021-02-06T23:13:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69e4d920-9f74-469f-82e7-5f241147c277", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T21:38:57.000Z" + }, + "end": { + "$date": "2021-02-06T22:10:45.000Z" + }, + "events": [ + { + "uuid": "1dca30a4-0f52-401d-babc-e2f593c7023c", + "start": { + "$date": "2021-02-06T21:38:57.000Z" + }, + "end": { + "$date": "2021-02-06T22:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c68b9c8c-dadf-403f-b121-5cd485678932", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T22:14:59.000Z" + }, + "end": { + "$date": "2021-02-06T22:50:51.000Z" + }, + "events": [ + { + "uuid": "d7a9d68a-63ee-4d21-babf-49e383ff4b50", + "start": { + "$date": "2021-02-06T22:14:59.000Z" + }, + "end": { + "$date": "2021-02-06T22:50:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e0f355a4-854b-473f-afa2-98a0bc20ffd9", + "uuid": "9b279da0-5e82-483f-9a9c-1b03f08e1233", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-06T22:54:57.000Z" + }, + "end": { + "$date": "2021-02-07T01:46:54.000Z" + }, + "events": [ + { + "uuid": "d0317ce3-43c0-409c-9829-7a17933b6ea0", + "start": { + "$date": "2021-02-06T22:54:57.000Z" + }, + "end": { + "$date": "2021-02-06T23:30:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c652ef5e-2c78-4347-a50c-03090bcc5930", + "start": { + "$date": "2021-02-06T23:30:57.000Z" + }, + "end": { + "$date": "2021-02-06T23:40:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5fa274f-d962-4701-ac71-5b2770d5932c", + "start": { + "$date": "2021-02-06T23:40:57.000Z" + }, + "end": { + "$date": "2021-02-07T01:46:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c58926a1-af84-46be-8eb2-4d4343f29db9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-07T00:04:17.000Z" + }, + "end": { + "$date": "2021-02-07T00:24:19.000Z" + }, + "events": [ + { + "uuid": "ad6809e9-aca3-4c6d-bdfb-fb7eb71d901f", + "start": { + "$date": "2021-02-07T00:04:17.000Z" + }, + "end": { + "$date": "2021-02-07T00:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "839b32ef-b8d7-4558-bed3-0180ab71d61f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T00:18:07.000Z" + }, + "end": { + "$date": "2021-02-07T00:20:47.000Z" + }, + "events": [ + { + "uuid": "98621ac6-8cda-4ab2-9142-a323d9e47e9f", + "start": { + "$date": "2021-02-07T00:18:07.000Z" + }, + "end": { + "$date": "2021-02-07T00:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a67599b-2b75-4e8c-9983-79f4164cc88b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T01:46:59.000Z" + }, + "end": { + "$date": "2021-02-07T04:15:48.000Z" + }, + "events": [ + { + "uuid": "31e8e6db-8bea-4f4d-9fab-1bdb4cffd8cc", + "start": { + "$date": "2021-02-07T01:46:59.000Z" + }, + "end": { + "$date": "2021-02-07T02:41:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62e1692d-7bfb-4197-9ea7-274e66551fca", + "start": { + "$date": "2021-02-07T02:41:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:14:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "12e676d6-5142-47ab-884e-2f3a2e2adb0f", + "start": { + "$date": "2021-02-07T03:14:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:16:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "756ca880-5305-445d-a971-1d20077e07df", + "start": { + "$date": "2021-02-07T03:16:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:17:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "997a9e51-404a-41d1-a0e2-3bd3dcf3d330", + "start": { + "$date": "2021-02-07T03:17:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:23:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "07935ac9-a4e5-4795-b4c9-65f2d842ce21", + "start": { + "$date": "2021-02-07T03:23:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:24:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b51e7133-6261-4756-b10c-75d9cdd91ec8", + "start": { + "$date": "2021-02-07T03:24:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:27:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e4228db-d452-4cef-a951-5e39699caa45", + "start": { + "$date": "2021-02-07T03:27:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:36:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "498fa806-9353-447c-a73a-f402fe8c64d2", + "start": { + "$date": "2021-02-07T03:36:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:57:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8ca4ce83-4031-4c4b-a2d2-3a44e63cba24", + "start": { + "$date": "2021-02-07T03:57:59.000Z" + }, + "end": { + "$date": "2021-02-07T03:58:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98827857-7664-4fe8-8c46-4d06d0a865c2", + "start": { + "$date": "2021-02-07T03:58:59.000Z" + }, + "end": { + "$date": "2021-02-07T04:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "df320391-fcfb-4c3c-bbcd-514a7d6a4de2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T02:35:23.000Z" + }, + "end": { + "$date": "2021-02-07T03:47:12.000Z" + }, + "events": [ + { + "uuid": "0d1921c0-6934-4c1a-9a00-5a2320f52f49", + "start": { + "$date": "2021-02-07T02:35:23.000Z" + }, + "end": { + "$date": "2021-02-07T03:47:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "295f5afd-7420-4e6d-b94d-f626f2956016", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T02:57:58.000Z" + }, + "end": { + "$date": "2021-02-07T03:46:56.000Z" + }, + "events": [ + { + "uuid": "147a60fb-d67c-4807-8df9-b5af1844bf9d", + "start": { + "$date": "2021-02-07T02:57:58.000Z" + }, + "end": { + "$date": "2021-02-07T03:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "69d0705a-4344-4e8f-894a-ef40d0eb7d0a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-07T02:46:58.000Z" + }, + "end": { + "$date": "2021-02-07T08:37:33.000Z" + }, + "events": [ + { + "uuid": "edc46f16-f19c-4d74-bf8c-d7335ccebb1d", + "start": { + "$date": "2021-02-07T02:46:58.000Z" + }, + "end": { + "$date": "2021-02-07T08:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9212052f-b287-4cab-b67c-f99781f37b66", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-07T03:01:45.000Z" + }, + "end": { + "$date": "2021-02-07T03:24:28.000Z" + }, + "events": [ + { + "uuid": "6b6deae4-6af8-4ed0-9d47-a24265817a82", + "start": { + "$date": "2021-02-07T03:01:45.000Z" + }, + "end": { + "$date": "2021-02-07T03:24:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "341f7f8f-b37f-489f-a4e0-c59687acfb4c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-07T03:55:09.000Z" + }, + "end": { + "$date": "2021-02-07T04:05:56.000Z" + }, + "events": [ + { + "uuid": "8aa90efc-0160-478a-8751-abeccee3c51b", + "start": { + "$date": "2021-02-07T03:55:09.000Z" + }, + "end": { + "$date": "2021-02-07T04:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9bad576-0dff-4cde-83c0-f7916cfcc2b9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T03:55:22.000Z" + }, + "end": { + "$date": "2021-02-07T06:23:17.000Z" + }, + "events": [ + { + "uuid": "2ca3cc40-a028-4279-abb3-f9cb89f9703b", + "start": { + "$date": "2021-02-07T03:55:22.000Z" + }, + "end": { + "$date": "2021-02-07T06:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "5445b3ea-518e-4148-baac-bd2aaf53112f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T03:59:34.000Z" + }, + "end": { + "$date": "2021-02-07T05:42:23.000Z" + }, + "events": [ + { + "uuid": "9fa2e280-5f2f-405c-b981-0dca88d5d53e", + "start": { + "$date": "2021-02-07T03:59:34.000Z" + }, + "end": { + "$date": "2021-02-07T05:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8140b9e3-ab78-4c79-9c4c-feb2909488b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-07T04:00:34.000Z" + }, + "end": { + "$date": "2021-02-07T04:47:36.000Z" + }, + "events": [ + { + "uuid": "be39fa54-9e51-435a-9ef1-ae708015b515", + "start": { + "$date": "2021-02-07T04:00:34.000Z" + }, + "end": { + "$date": "2021-02-07T04:47:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "16d0d106-1649-456e-a0c4-79d8a63f8f23", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-07T04:06:16.000Z" + }, + "end": { + "$date": "2021-02-07T04:21:17.000Z" + }, + "events": [ + { + "uuid": "9ef8fe48-380b-4e75-9beb-bb06048b001e", + "start": { + "$date": "2021-02-07T04:06:16.000Z" + }, + "end": { + "$date": "2021-02-07T04:21:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ff46002-0338-47e0-a795-d35fc1ee097e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-07T04:34:58.000Z" + }, + "end": { + "$date": "2021-02-07T04:42:19.000Z" + }, + "events": [ + { + "uuid": "7d1827bc-285b-45b4-8f27-199662871f77", + "start": { + "$date": "2021-02-07T04:34:58.000Z" + }, + "end": { + "$date": "2021-02-07T04:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "05f9be56-039b-4f02-a200-b6e9190163d4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-07T04:34:58.000Z" + }, + "end": { + "$date": "2021-02-07T05:56:57.000Z" + }, + "events": [ + { + "uuid": "6689f896-3f04-464b-8155-cd8577b54974", + "start": { + "$date": "2021-02-07T04:34:58.000Z" + }, + "end": { + "$date": "2021-02-07T05:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c46813d2-2936-4d02-b080-a48d41c8750d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-07T04:50:11.000Z" + }, + "end": { + "$date": "2021-02-07T06:04:52.000Z" + }, + "events": [ + { + "uuid": "fd9b63c1-5e47-4d9d-9919-7f3f7ad9f6fd", + "start": { + "$date": "2021-02-07T04:50:11.000Z" + }, + "end": { + "$date": "2021-02-07T06:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "459a6734-487b-41e0-9026-a52d83915977", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-07T05:33:31.000Z" + }, + "end": { + "$date": "2021-02-07T05:54:16.000Z" + }, + "events": [ + { + "uuid": "7294916a-2bd3-43a4-a1a7-8cc32e944061", + "start": { + "$date": "2021-02-07T05:33:31.000Z" + }, + "end": { + "$date": "2021-02-07T05:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c924902f-33f4-4c51-8c16-b436f4a11948", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-07T05:32:12.000Z" + }, + "end": { + "$date": "2021-02-07T07:22:27.000Z" + }, + "events": [ + { + "uuid": "62b14f4c-558c-4b3e-a283-9e6e6af3379e", + "start": { + "$date": "2021-02-07T05:32:12.000Z" + }, + "end": { + "$date": "2021-02-07T07:22:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e05f174a-7b8d-4ea4-8dcf-ae8b2d6c4e40", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-07T05:55:07.000Z" + }, + "end": { + "$date": "2021-02-07T06:03:24.000Z" + }, + "events": [ + { + "uuid": "a07ba253-3088-440a-a385-023737554d29", + "start": { + "$date": "2021-02-07T05:55:07.000Z" + }, + "end": { + "$date": "2021-02-07T06:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f2535e00-ecc9-4550-97aa-e9587f3aee1b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-07T05:57:28.000Z" + }, + "end": { + "$date": "2021-02-07T06:25:39.000Z" + }, + "events": [ + { + "uuid": "b1758f1f-8096-4835-8bea-842c71012c11", + "start": { + "$date": "2021-02-07T05:57:28.000Z" + }, + "end": { + "$date": "2021-02-07T06:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "cdfa4eaa-027b-432a-98b0-f189a8ec232e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-07T06:26:45.000Z" + }, + "end": { + "$date": "2021-02-07T07:14:28.000Z" + }, + "events": [ + { + "uuid": "03428325-e2e8-45dd-b304-8a6e067274a1", + "start": { + "$date": "2021-02-07T06:26:45.000Z" + }, + "end": { + "$date": "2021-02-07T07:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e34f649-c219-4266-ba3f-ef6bf2df51b9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T06:41:02.000Z" + }, + "end": { + "$date": "2021-02-07T06:54:08.000Z" + }, + "events": [ + { + "uuid": "df0ad044-62a7-434e-a56d-21f48436d074", + "start": { + "$date": "2021-02-07T06:41:02.000Z" + }, + "end": { + "$date": "2021-02-07T06:54:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "83a16378-dc56-4d0d-b12d-42a145bc55b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T06:34:59.000Z" + }, + "end": { + "$date": "2021-02-07T07:14:27.000Z" + }, + "events": [ + { + "uuid": "8925795d-b054-4f70-8066-455c10e3386d", + "start": { + "$date": "2021-02-07T06:34:59.000Z" + }, + "end": { + "$date": "2021-02-07T07:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "3e3bf5a0-a596-4f80-9cb7-c255d89102be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T06:41:34.000Z" + }, + "end": { + "$date": "2021-02-07T07:14:35.000Z" + }, + "events": [ + { + "uuid": "9e18369a-5b0e-4a23-b3a6-3ca6cbb3a87a", + "start": { + "$date": "2021-02-07T06:41:34.000Z" + }, + "end": { + "$date": "2021-02-07T07:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "077a8ee5-6c64-470a-8b44-14e82aa8de66", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-07T06:51:47.000Z" + }, + "end": { + "$date": "2021-02-07T07:30:43.000Z" + }, + "events": [ + { + "uuid": "8fdf5f54-feeb-4db6-9681-558a1f7d09b4", + "start": { + "$date": "2021-02-07T06:51:47.000Z" + }, + "end": { + "$date": "2021-02-07T07:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "229c00c7-20b7-49b1-82b4-ddbd0c39e0a9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T06:55:53.000Z" + }, + "end": { + "$date": "2021-02-07T07:12:49.000Z" + }, + "events": [ + { + "uuid": "9da76241-068b-4b7f-a306-d8c7f5dfafff", + "start": { + "$date": "2021-02-07T06:55:53.000Z" + }, + "end": { + "$date": "2021-02-07T07:12:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "074356de-ce50-4dec-8707-b3c09462defe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T07:16:10.000Z" + }, + "end": { + "$date": "2021-02-07T07:34:16.000Z" + }, + "events": [ + { + "uuid": "9d85a379-332e-40e6-9bc1-37ef69be228d", + "start": { + "$date": "2021-02-07T07:16:10.000Z" + }, + "end": { + "$date": "2021-02-07T07:34:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "e33cf3cc-095d-45f3-a911-f6ed6ca60f28", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-07T07:14:39.000Z" + }, + "end": { + "$date": "2021-02-07T08:13:35.000Z" + }, + "events": [ + { + "uuid": "1e224e05-bcb3-48af-bf83-d4fee46bad8c", + "start": { + "$date": "2021-02-07T07:14:39.000Z" + }, + "end": { + "$date": "2021-02-07T08:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "49975b0f-ac18-468d-844c-805ecc93b974", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T07:14:46.000Z" + }, + "end": { + "$date": "2021-02-07T08:13:31.000Z" + }, + "events": [ + { + "uuid": "4332e13b-43fc-45a5-84f7-2c366481b35c", + "start": { + "$date": "2021-02-07T07:14:46.000Z" + }, + "end": { + "$date": "2021-02-07T08:13:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "a152a4ef-d4db-4023-8534-2d544d71d530", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T07:17:53.000Z" + }, + "end": { + "$date": "2021-02-07T08:13:51.000Z" + }, + "events": [ + { + "uuid": "5a701936-0db7-4ef3-899a-b4f874095e69", + "start": { + "$date": "2021-02-07T07:17:53.000Z" + }, + "end": { + "$date": "2021-02-07T08:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dea446f0-0ade-47d5-80c4-a200d9366150", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T07:36:06.000Z" + }, + "end": { + "$date": "2021-02-07T07:54:17.000Z" + }, + "events": [ + { + "uuid": "56e8587e-c1a8-4ec7-8145-e7a30ad27db4", + "start": { + "$date": "2021-02-07T07:36:06.000Z" + }, + "end": { + "$date": "2021-02-07T07:54:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "3041362e-3a78-43b3-a73a-f0a1b4809fb5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-07T07:34:53.000Z" + }, + "end": { + "$date": "2021-02-07T11:02:47.000Z" + }, + "events": [ + { + "uuid": "af9de0d0-3f3c-4da2-b981-b88f9a3750cd", + "start": { + "$date": "2021-02-07T07:34:53.000Z" + }, + "end": { + "$date": "2021-02-07T11:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ffc9bc2-9c6c-4086-bc65-cb3186eeb1ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T08:03:43.000Z" + }, + "end": { + "$date": "2021-02-07T08:37:11.000Z" + }, + "events": [ + { + "uuid": "585efb01-57be-4363-a180-32e97f3b66c1", + "start": { + "$date": "2021-02-07T08:03:43.000Z" + }, + "end": { + "$date": "2021-02-07T08:37:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bcf2d2c4-fb41-4acb-9b64-6e6ecf67d0ec", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-07T08:12:02.000Z" + }, + "end": { + "$date": "2021-02-07T08:14:07.000Z" + }, + "events": [ + { + "uuid": "c945de2c-74ba-45a1-ae27-e0915aa2dfab", + "start": { + "$date": "2021-02-07T08:12:02.000Z" + }, + "end": { + "$date": "2021-02-07T08:14:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "173723be-a916-4fa4-b87b-af0c60b880ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-07T08:14:22.000Z" + }, + "end": { + "$date": "2021-02-07T11:03:01.000Z" + }, + "events": [ + { + "uuid": "c60d3846-e450-4c75-924c-09267c47c6d4", + "start": { + "$date": "2021-02-07T08:14:22.000Z" + }, + "end": { + "$date": "2021-02-07T11:03:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f6016a6e-0ea1-4a3a-a638-7f12da7576ae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T08:17:06.000Z" + }, + "end": { + "$date": "2021-02-07T09:23:36.000Z" + }, + "events": [ + { + "uuid": "5b3f2e15-7bd0-412d-a42e-c733b04273f5", + "start": { + "$date": "2021-02-07T08:17:06.000Z" + }, + "end": { + "$date": "2021-02-07T09:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55aed70f-1d53-44d3-bbf7-e9f37ebeeb12", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T08:38:32.000Z" + }, + "end": { + "$date": "2021-02-07T09:59:06.000Z" + }, + "events": [ + { + "uuid": "17141641-f765-4228-8886-512a26d66974", + "start": { + "$date": "2021-02-07T08:38:32.000Z" + }, + "end": { + "$date": "2021-02-07T09:59:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d97a68c-af2e-46c7-892c-53f7c35aab6c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-07T09:45:56.000Z" + }, + "end": { + "$date": "2021-02-07T10:12:34.000Z" + }, + "events": [ + { + "uuid": "d2182989-cea4-4e29-98ff-f6bdac656be0", + "start": { + "$date": "2021-02-07T09:45:56.000Z" + }, + "end": { + "$date": "2021-02-07T10:12:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7e9084e9-949d-4da7-82c9-e0d50e60014c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-07T11:02:57.000Z" + }, + "end": { + "$date": "2021-02-07T11:05:43.000Z" + }, + "events": [ + { + "uuid": "714b340e-c3aa-4d2d-aac7-037bf0ef6624", + "start": { + "$date": "2021-02-07T11:02:57.000Z" + }, + "end": { + "$date": "2021-02-07T11:05:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bfd6d344-0e4f-4756-a0eb-d62de276cdc6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T15:29:29.000Z" + }, + "end": { + "$date": "2021-02-07T16:05:20.000Z" + }, + "events": [ + { + "uuid": "2c672699-2b65-47eb-ba37-3df1d35ff1ef", + "start": { + "$date": "2021-02-07T15:29:29.000Z" + }, + "end": { + "$date": "2021-02-07T16:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "73fdbde5-8116-44e7-a449-ecea08e91636", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T16:05:35.000Z" + }, + "end": { + "$date": "2021-02-07T16:41:57.000Z" + }, + "events": [ + { + "uuid": "1b0853be-60cc-4055-910d-5f1b503fc67b", + "start": { + "$date": "2021-02-07T16:05:35.000Z" + }, + "end": { + "$date": "2021-02-07T16:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0db65ca5-e0e5-44dc-89eb-87e0a69713cf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T16:42:12.000Z" + }, + "end": { + "$date": "2021-02-07T18:03:08.000Z" + }, + "events": [ + { + "uuid": "dbf7bd00-cba5-453d-a7e7-014e90929660", + "start": { + "$date": "2021-02-07T16:42:12.000Z" + }, + "end": { + "$date": "2021-02-07T18:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "ffec72aa-0eb8-4d68-95f7-7bac8b1d7762", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-07T17:36:41.000Z" + }, + "end": { + "$date": "2021-02-07T20:36:37.000Z" + }, + "events": [ + { + "uuid": "978e9294-e077-4abe-a772-7773a3d6d623", + "start": { + "$date": "2021-02-07T17:36:41.000Z" + }, + "end": { + "$date": "2021-02-07T18:20:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a3da459-7ea5-4797-b755-beff161521a7", + "start": { + "$date": "2021-02-07T18:20:41.000Z" + }, + "end": { + "$date": "2021-02-07T19:07:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b243f68f-9bc1-42ad-9836-dd3580a6b770", + "start": { + "$date": "2021-02-07T19:07:41.000Z" + }, + "end": { + "$date": "2021-02-07T20:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6cdfa833-802b-467b-a924-fd9bfc189437", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-07T17:59:43.000Z" + }, + "end": { + "$date": "2021-02-07T19:11:30.000Z" + }, + "events": [ + { + "uuid": "976b9a07-eb53-4dcf-ab47-5a3d7f793df9", + "start": { + "$date": "2021-02-07T17:59:43.000Z" + }, + "end": { + "$date": "2021-02-07T19:11:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b90298e0-7af6-41a5-943a-1740121ea8a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T18:34:50.000Z" + }, + "end": { + "$date": "2021-02-07T19:52:46.000Z" + }, + "events": [ + { + "uuid": "fb0f2f15-0009-4ef7-bb02-4a16e907d6ba", + "start": { + "$date": "2021-02-07T18:34:50.000Z" + }, + "end": { + "$date": "2021-02-07T19:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe3a1365-6ecb-4b6f-953e-a196fab58417", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T18:48:21.000Z" + }, + "end": { + "$date": "2021-02-07T19:15:53.000Z" + }, + "events": [ + { + "uuid": "ed6b2fa9-8295-4828-9517-d887d9606742", + "start": { + "$date": "2021-02-07T18:48:21.000Z" + }, + "end": { + "$date": "2021-02-07T19:15:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6a2ec13a-560b-4a69-b747-abd543dff731", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-07T18:43:31.000Z" + }, + "end": { + "$date": "2021-02-07T22:57:08.000Z" + }, + "events": [ + { + "uuid": "7853ebdf-c268-4c11-8601-d45ced3d0a68", + "start": { + "$date": "2021-02-07T18:43:31.000Z" + }, + "end": { + "$date": "2021-02-07T21:11:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b18b8087-915d-4ca2-9578-1c55442b8c63", + "start": { + "$date": "2021-02-07T21:11:31.000Z" + }, + "end": { + "$date": "2021-02-07T21:43:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5d2be80f-e5ea-41bd-9eea-a2c03c0d6193", + "start": { + "$date": "2021-02-07T21:43:31.000Z" + }, + "end": { + "$date": "2021-02-07T22:06:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3c6a9c8f-d400-497f-ac3c-448a64477faa", + "start": { + "$date": "2021-02-07T22:06:31.000Z" + }, + "end": { + "$date": "2021-02-07T22:09:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "592cf74a-c3b7-4c73-b0b1-c1fed687e578", + "start": { + "$date": "2021-02-07T22:09:31.000Z" + }, + "end": { + "$date": "2021-02-07T22:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bd23da0-a196-47ec-abc3-27280f78a0ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T19:21:35.000Z" + }, + "end": { + "$date": "2021-02-07T19:48:13.000Z" + }, + "events": [ + { + "uuid": "503becc8-e664-4a7d-964e-26b1e9a18cbd", + "start": { + "$date": "2021-02-07T19:21:35.000Z" + }, + "end": { + "$date": "2021-02-07T19:48:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7daa3ef8-6933-41b6-b572-b14e58ec54de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T19:53:29.000Z" + }, + "end": { + "$date": "2021-02-07T20:25:51.000Z" + }, + "events": [ + { + "uuid": "21160c83-8a1d-47c6-80e5-d9d6cc366c2d", + "start": { + "$date": "2021-02-07T19:53:29.000Z" + }, + "end": { + "$date": "2021-02-07T20:25:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "59ec3af6-bed0-4665-a97e-baafc251b965", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-07T20:02:57.000Z" + }, + "end": { + "$date": "2021-02-07T20:10:42.000Z" + }, + "events": [ + { + "uuid": "fadce399-24de-41b6-b2d0-4e179d6cc1dd", + "start": { + "$date": "2021-02-07T20:02:57.000Z" + }, + "end": { + "$date": "2021-02-07T20:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "82d4b35e-9728-4439-8a37-1ddade57992a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-07T20:05:34.000Z" + }, + "end": { + "$date": "2021-02-07T21:11:31.000Z" + }, + "events": [ + { + "uuid": "f59ded8a-fdbc-4d6d-96e4-8e4a934a6837", + "start": { + "$date": "2021-02-07T20:05:34.000Z" + }, + "end": { + "$date": "2021-02-07T21:11:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7a3b4de-ef8b-4c74-97e6-6d6541b0f8a8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T20:31:18.000Z" + }, + "end": { + "$date": "2021-02-07T20:59:15.000Z" + }, + "events": [ + { + "uuid": "98a4eca4-f894-4d00-8d84-6d4c3516a14e", + "start": { + "$date": "2021-02-07T20:31:18.000Z" + }, + "end": { + "$date": "2021-02-07T20:59:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9b19a5a2-8040-4ed7-9bca-4e090ee188ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-07T20:42:05.000Z" + }, + "end": { + "$date": "2021-02-07T21:56:39.000Z" + }, + "events": [ + { + "uuid": "316b96e1-3548-4012-8acd-e0df07c4115c", + "start": { + "$date": "2021-02-07T20:42:05.000Z" + }, + "end": { + "$date": "2021-02-07T21:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15ba8770-7e68-44ed-93e6-300466fd6447", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T21:11:34.000Z" + }, + "end": { + "$date": "2021-02-07T21:46:27.000Z" + }, + "events": [ + { + "uuid": "7a6db1b1-e245-410d-b6c2-8bd05a60fbc7", + "start": { + "$date": "2021-02-07T21:11:34.000Z" + }, + "end": { + "$date": "2021-02-07T21:46:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "27142df5-3f1b-4d9a-ba8f-aba72993f19b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-07T21:10:25.000Z" + }, + "end": { + "$date": "2021-02-07T21:55:56.000Z" + }, + "events": [ + { + "uuid": "8ae6c3df-3f28-4974-bd7b-e363da8909bf", + "start": { + "$date": "2021-02-07T21:10:25.000Z" + }, + "end": { + "$date": "2021-02-07T21:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74a8fa9a-328f-4c13-a686-80a739600616", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T21:50:43.000Z" + }, + "end": { + "$date": "2021-02-07T22:21:17.000Z" + }, + "events": [ + { + "uuid": "c723eb24-0eff-48e3-9a21-755a1c11b392", + "start": { + "$date": "2021-02-07T21:50:43.000Z" + }, + "end": { + "$date": "2021-02-07T22:21:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c907dd6-9cf9-47aa-897a-d72b74513837", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T22:33:01.000Z" + }, + "end": { + "$date": "2021-02-07T23:16:52.000Z" + }, + "events": [ + { + "uuid": "58725e25-3ca1-4230-b83a-25738680215d", + "start": { + "$date": "2021-02-07T22:33:01.000Z" + }, + "end": { + "$date": "2021-02-07T23:16:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5551fef7-5a2a-498f-b605-20aeaea7f068", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-07T23:59:33.000Z" + }, + "end": { + "$date": "2021-02-07T23:59:52.000Z" + }, + "events": [ + { + "uuid": "624b6738-81f3-42a5-9e29-a01321d7c55e", + "start": { + "$date": "2021-02-07T23:59:33.000Z" + }, + "end": { + "$date": "2021-02-07T23:59:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "02ee25b9-c9d6-4218-ad54-76ee02a5750c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-07T23:51:22.000Z" + }, + "end": { + "$date": "2021-02-08T00:19:59.000Z" + }, + "events": [ + { + "uuid": "4bf64395-1db1-488e-8b10-f74f377876a1", + "start": { + "$date": "2021-02-07T23:51:22.000Z" + }, + "end": { + "$date": "2021-02-08T00:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8898d1f3-6e35-491a-b41c-47332b6debbc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-07T23:57:30.000Z" + }, + "end": { + "$date": "2021-02-08T00:46:02.000Z" + }, + "events": [ + { + "uuid": "07ac4d2e-77e4-43d2-8a95-6b3d80315e19", + "start": { + "$date": "2021-02-07T23:57:30.000Z" + }, + "end": { + "$date": "2021-02-08T00:46:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0613cdb8-16b5-43cc-8c32-9b35e94b5afc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-08T00:19:31.000Z" + }, + "end": { + "$date": "2021-02-08T02:07:39.000Z" + }, + "events": [ + { + "uuid": "28722b17-a85d-40cf-a2c3-37ee7fc936cb", + "start": { + "$date": "2021-02-08T00:19:31.000Z" + }, + "end": { + "$date": "2021-02-08T02:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "f98c8e42-4ead-4e4a-938b-31d0016ee8cc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-08T00:42:09.000Z" + }, + "end": { + "$date": "2021-02-08T01:30:39.000Z" + }, + "events": [ + { + "uuid": "c7a74e5d-d8b1-46d5-8f86-4b01d066ffe9", + "start": { + "$date": "2021-02-08T00:42:09.000Z" + }, + "end": { + "$date": "2021-02-08T01:30:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b3b59996-6740-4571-bb18-08a93feb653c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-08T01:23:44.000Z" + }, + "end": { + "$date": "2021-02-08T01:53:31.000Z" + }, + "events": [ + { + "uuid": "903827cf-1687-48ab-a2cf-55dba7311700", + "start": { + "$date": "2021-02-08T01:23:44.000Z" + }, + "end": { + "$date": "2021-02-08T01:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "538c5c90-1794-4599-b36c-216cf00ad619", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-08T01:35:06.000Z" + }, + "end": { + "$date": "2021-02-08T02:25:05.000Z" + }, + "events": [ + { + "uuid": "151521b3-24a1-4308-9c31-239862080339", + "start": { + "$date": "2021-02-08T01:35:06.000Z" + }, + "end": { + "$date": "2021-02-08T02:25:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "e5ec2afd-9f6a-4878-ab48-c7fc0acf1ba6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-08T01:41:30.000Z" + }, + "end": { + "$date": "2021-02-08T03:15:06.000Z" + }, + "events": [ + { + "uuid": "ad18fb90-c74b-4821-91bb-7cf05442eefd", + "start": { + "$date": "2021-02-08T01:41:30.000Z" + }, + "end": { + "$date": "2021-02-08T02:51:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b448ccfe-74cb-4c5b-b5ef-6ee27d97726f", + "start": { + "$date": "2021-02-08T02:51:30.000Z" + }, + "end": { + "$date": "2021-02-08T03:13:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8ef5055-cb4f-4fcc-8bd0-90c538939220", + "start": { + "$date": "2021-02-08T03:13:30.000Z" + }, + "end": { + "$date": "2021-02-08T03:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd504afa-477e-4fd2-ba9d-191eddded252", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-08T02:33:14.000Z" + }, + "end": { + "$date": "2021-02-08T03:02:49.000Z" + }, + "events": [ + { + "uuid": "8319a3ef-78d4-451f-a7f2-6a93fd1e08fe", + "start": { + "$date": "2021-02-08T02:33:14.000Z" + }, + "end": { + "$date": "2021-02-08T03:02:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e99bcd2e-edb7-40d9-975b-5d0b8f38472f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-08T02:29:55.000Z" + }, + "end": { + "$date": "2021-02-08T02:54:14.000Z" + }, + "events": [ + { + "uuid": "a13dc848-64bf-452d-85f9-f2e988d92fd2", + "start": { + "$date": "2021-02-08T02:29:55.000Z" + }, + "end": { + "$date": "2021-02-08T02:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "375540e1-bfce-4824-a05d-da813c734394", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-08T02:43:01.000Z" + }, + "end": { + "$date": "2021-02-08T03:42:02.000Z" + }, + "events": [ + { + "uuid": "b410751b-e7ef-4af4-aa2a-a989f3c3c7f5", + "start": { + "$date": "2021-02-08T02:43:01.000Z" + }, + "end": { + "$date": "2021-02-08T03:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "595548cf-d50a-400d-8fb4-c44cbc9b8a44", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-08T02:56:44.000Z" + }, + "end": { + "$date": "2021-02-08T04:11:16.000Z" + }, + "events": [ + { + "uuid": "c4a273f1-a6cf-45f1-acfd-b50c1a28f0e8", + "start": { + "$date": "2021-02-08T02:56:44.000Z" + }, + "end": { + "$date": "2021-02-08T04:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36ca2461-05fa-4743-87f5-a8d8595f9a40", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-08T02:59:06.000Z" + }, + "end": { + "$date": "2021-02-08T04:12:39.000Z" + }, + "events": [ + { + "uuid": "e17a3d1f-b98b-4e32-b4be-e4788bd405ad", + "start": { + "$date": "2021-02-08T02:59:06.000Z" + }, + "end": { + "$date": "2021-02-08T04:12:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df9f0847-7168-46e5-b1e9-0d34e9f7843b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-08T03:35:51.000Z" + }, + "end": { + "$date": "2021-02-08T04:12:56.000Z" + }, + "events": [ + { + "uuid": "5ceacd9a-7788-4310-ad83-90806f413b17", + "start": { + "$date": "2021-02-08T03:35:51.000Z" + }, + "end": { + "$date": "2021-02-08T04:12:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "de6924c5-c8d6-43e8-9123-b390048d6da3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-08T03:19:39.000Z" + }, + "end": { + "$date": "2021-02-08T03:43:01.000Z" + }, + "events": [ + { + "uuid": "54d9b6f8-473e-4fb1-ba7c-5827dc9525ad", + "start": { + "$date": "2021-02-08T03:19:39.000Z" + }, + "end": { + "$date": "2021-02-08T03:43:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9c9f8816-f602-48ba-9963-ccef0860e33b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-08T03:29:44.000Z" + }, + "end": { + "$date": "2021-02-08T04:19:38.000Z" + }, + "events": [ + { + "uuid": "7bed94aa-c312-4f80-a9bf-62593eedea93", + "start": { + "$date": "2021-02-08T03:29:44.000Z" + }, + "end": { + "$date": "2021-02-08T04:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "c0ace955-230a-4901-b00c-97fed373ba63", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-08T03:55:34.000Z" + }, + "end": { + "$date": "2021-02-08T05:25:30.000Z" + }, + "events": [ + { + "uuid": "9e0692b0-0a59-4b82-aae7-5dfa1d4c3e9e", + "start": { + "$date": "2021-02-08T03:55:34.000Z" + }, + "end": { + "$date": "2021-02-08T05:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef610e17-ac3e-47dd-a3c7-531ae6289acc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-08T04:06:45.000Z" + }, + "end": { + "$date": "2021-02-08T04:29:47.000Z" + }, + "events": [ + { + "uuid": "3c47e4a3-2e70-433b-8e89-0b16ab5eb00f", + "start": { + "$date": "2021-02-08T04:06:45.000Z" + }, + "end": { + "$date": "2021-02-08T04:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "58655a9f-4b1b-4548-a79e-9091c0c5f3b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-08T04:09:19.000Z" + }, + "end": { + "$date": "2021-02-08T04:54:36.000Z" + }, + "events": [ + { + "uuid": "5404d972-4ffc-4f4e-bd43-11c8c2a2941a", + "start": { + "$date": "2021-02-08T04:09:19.000Z" + }, + "end": { + "$date": "2021-02-08T04:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "81d8ffd3-9f61-4f90-8769-6f854c9ab1bd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-08T04:12:21.000Z" + }, + "end": { + "$date": "2021-02-08T04:23:04.000Z" + }, + "events": [ + { + "uuid": "fa431b02-980f-4863-88bb-4ae3424a62b3", + "start": { + "$date": "2021-02-08T04:12:21.000Z" + }, + "end": { + "$date": "2021-02-08T04:23:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f505fb2-6425-4a31-b094-f2ad7d4ca794", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-08T04:19:07.000Z" + }, + "end": { + "$date": "2021-02-08T04:50:14.000Z" + }, + "events": [ + { + "uuid": "90d4fe1f-b224-4a37-b196-f2e47f7d1064", + "start": { + "$date": "2021-02-08T04:19:07.000Z" + }, + "end": { + "$date": "2021-02-08T04:50:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a85e0ce-4f32-476d-8ee5-070bc4bc6402", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-08T04:34:20.000Z" + }, + "end": { + "$date": "2021-02-08T04:59:18.000Z" + }, + "events": [ + { + "uuid": "448fb697-0528-423d-acb5-9b31d081a00e", + "start": { + "$date": "2021-02-08T04:34:20.000Z" + }, + "end": { + "$date": "2021-02-08T04:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7d7797d1-b398-4a60-88ef-5928ab3fcea7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-08T04:40:16.000Z" + }, + "end": { + "$date": "2021-02-08T05:07:07.000Z" + }, + "events": [ + { + "uuid": "eaf9b22c-dcbd-4052-ac55-60f719d3da1a", + "start": { + "$date": "2021-02-08T04:40:16.000Z" + }, + "end": { + "$date": "2021-02-08T05:07:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "48a86d9f-a452-4ea5-b551-42d0e07d6195", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-08T04:57:16.000Z" + }, + "end": { + "$date": "2021-02-08T07:31:39.000Z" + }, + "events": [ + { + "uuid": "cccc8044-7bcd-40a1-81d2-594ab90621de", + "start": { + "$date": "2021-02-08T04:57:16.000Z" + }, + "end": { + "$date": "2021-02-08T07:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1349a5d-55c5-4b84-bb0c-49d83e9cd490", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-08T05:04:11.000Z" + }, + "end": { + "$date": "2021-02-08T05:38:29.000Z" + }, + "events": [ + { + "uuid": "6c5905a3-487f-4618-8dbf-5caa8096e8e8", + "start": { + "$date": "2021-02-08T05:04:11.000Z" + }, + "end": { + "$date": "2021-02-08T05:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5798263-a617-42ab-958c-05243f410e4e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-08T05:19:54.000Z" + }, + "end": { + "$date": "2021-02-08T05:47:25.000Z" + }, + "events": [ + { + "uuid": "49eaaa73-8816-455b-9bc2-1c51d268bcc6", + "start": { + "$date": "2021-02-08T05:19:54.000Z" + }, + "end": { + "$date": "2021-02-08T05:47:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fd83adbb-1416-4af6-bd6d-4705bca48f82", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-08T05:27:18.000Z" + }, + "end": { + "$date": "2021-02-08T06:03:04.000Z" + }, + "events": [ + { + "uuid": "c6eb83a3-dfb8-4b0f-8824-e71f00e53e18", + "start": { + "$date": "2021-02-08T05:27:18.000Z" + }, + "end": { + "$date": "2021-02-08T06:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25748faf-c8f9-414e-bae6-643adc384961", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-08T05:45:38.000Z" + }, + "end": { + "$date": "2021-02-08T06:10:15.000Z" + }, + "events": [ + { + "uuid": "0b3c2e2c-f967-46bf-9374-78913ec84465", + "start": { + "$date": "2021-02-08T05:45:38.000Z" + }, + "end": { + "$date": "2021-02-08T06:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d5f7eaaf-2817-4f83-ad25-52f63186ba5d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-08T16:20:47.000Z" + }, + "end": { + "$date": "2021-02-08T17:02:45.000Z" + }, + "events": [ + { + "uuid": "aff5d6ee-51dd-46ad-b77a-d7c0c27ae047", + "start": { + "$date": "2021-02-08T16:20:47.000Z" + }, + "end": { + "$date": "2021-02-08T17:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "89fe9c70-a4f1-482b-a542-f0eb4da52aca", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-08T16:24:44.000Z" + }, + "end": { + "$date": "2021-02-08T23:37:25.000Z" + }, + "events": [ + { + "uuid": "ed37dd21-4370-41f2-afd2-e7a93cab0e21", + "start": { + "$date": "2021-02-08T16:24:44.000Z" + }, + "end": { + "$date": "2021-02-08T23:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c216ac61-5d18-4e4e-b9fc-6c607cf6357f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-08T18:12:38.000Z" + }, + "end": { + "$date": "2021-02-08T18:33:08.000Z" + }, + "events": [ + { + "uuid": "2482675c-982e-42f2-bf88-ab6932cd59b9", + "start": { + "$date": "2021-02-08T18:12:38.000Z" + }, + "end": { + "$date": "2021-02-08T18:33:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e09f4d0-b9b9-4c94-b839-fee2cc658cb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-08T18:36:13.000Z" + }, + "end": { + "$date": "2021-02-08T18:58:08.000Z" + }, + "events": [ + { + "uuid": "0364fca9-48df-4bef-a2c0-b43ba7d7d47a", + "start": { + "$date": "2021-02-08T18:36:13.000Z" + }, + "end": { + "$date": "2021-02-08T18:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "496356ad-5d94-42e1-b2ed-ec56e6af449b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-08T22:28:43.000Z" + }, + "end": { + "$date": "2021-02-08T22:44:06.000Z" + }, + "events": [ + { + "uuid": "4bfa58b4-e8bf-4de8-87b7-b22573198afa", + "start": { + "$date": "2021-02-08T22:28:43.000Z" + }, + "end": { + "$date": "2021-02-08T22:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "48536c4d-8e42-4ccc-8694-53e4cdbcf9ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-08T23:32:19.000Z" + }, + "end": { + "$date": "2021-02-08T23:50:45.000Z" + }, + "events": [ + { + "uuid": "bb4d009f-11ec-47dd-ae97-ee03ff723309", + "start": { + "$date": "2021-02-08T23:32:19.000Z" + }, + "end": { + "$date": "2021-02-08T23:50:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "53fa47cf-9f54-4285-b527-3f5b51863a13", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-08T23:38:30.000Z" + }, + "end": { + "$date": "2021-02-09T00:46:20.000Z" + }, + "events": [ + { + "uuid": "1fb372a4-a1d1-489e-9f00-633f53e24e75", + "start": { + "$date": "2021-02-08T23:38:30.000Z" + }, + "end": { + "$date": "2021-02-09T00:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5a43b012-f52a-41a2-a34b-c12d54e060e3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-09T01:26:20.000Z" + }, + "end": { + "$date": "2021-02-09T01:37:48.000Z" + }, + "events": [ + { + "uuid": "7bb2257c-b508-441d-9149-a442a3fc3de7", + "start": { + "$date": "2021-02-09T01:26:20.000Z" + }, + "end": { + "$date": "2021-02-09T01:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2595fb92-9723-4ddc-b5e9-0126e813c8ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-09T01:40:44.000Z" + }, + "end": { + "$date": "2021-02-09T03:09:11.000Z" + }, + "events": [ + { + "uuid": "6c6be081-476e-45d7-8a12-b3ab056bd025", + "start": { + "$date": "2021-02-09T01:40:44.000Z" + }, + "end": { + "$date": "2021-02-09T03:09:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2389870-d832-4898-9114-fc579a466091", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-09T02:03:09.000Z" + }, + "end": { + "$date": "2021-02-09T02:28:50.000Z" + }, + "events": [ + { + "uuid": "056d3aa0-1c15-4a2e-8316-07f3c0cdcfbb", + "start": { + "$date": "2021-02-09T02:03:09.000Z" + }, + "end": { + "$date": "2021-02-09T02:28:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ffcc7ca-e9f3-4692-b3ff-70886f6270d2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-09T02:32:55.000Z" + }, + "end": { + "$date": "2021-02-09T03:10:22.000Z" + }, + "events": [ + { + "uuid": "c569a85d-a119-4090-ab79-dac02998de9e", + "start": { + "$date": "2021-02-09T02:32:55.000Z" + }, + "end": { + "$date": "2021-02-09T03:10:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6ec813b7-5a62-4006-8e71-c0ae4133b7d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-09T02:50:51.000Z" + }, + "end": { + "$date": "2021-02-09T03:24:01.000Z" + }, + "events": [ + { + "uuid": "8b66112d-aa25-431d-8829-093b591fc5fa", + "start": { + "$date": "2021-02-09T02:50:51.000Z" + }, + "end": { + "$date": "2021-02-09T03:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14c6c051-2873-46b6-908c-af2241e0ded3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-09T03:18:43.000Z" + }, + "end": { + "$date": "2021-02-09T03:53:39.000Z" + }, + "events": [ + { + "uuid": "533af6ce-3f05-4e29-8ce4-aa651391ef1f", + "start": { + "$date": "2021-02-09T03:18:43.000Z" + }, + "end": { + "$date": "2021-02-09T03:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "7b8f1b8d-e84c-428d-90e4-addac14e6f45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-09T03:12:39.000Z" + }, + "end": { + "$date": "2021-02-09T03:25:39.000Z" + }, + "events": [ + { + "uuid": "2940c3f5-c49d-4994-b3cc-2ad8889c6186", + "start": { + "$date": "2021-02-09T03:12:39.000Z" + }, + "end": { + "$date": "2021-02-09T03:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6dc8bfe0-960d-4acf-81f0-921b214ed267", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-09T03:24:12.000Z" + }, + "end": { + "$date": "2021-02-09T03:48:47.000Z" + }, + "events": [ + { + "uuid": "70d43245-2516-403c-a7a6-9dda304f9e39", + "start": { + "$date": "2021-02-09T03:24:12.000Z" + }, + "end": { + "$date": "2021-02-09T03:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "1ae2ffbe-581b-44c9-8b2e-04019fdc67d7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-09T03:30:56.000Z" + }, + "end": { + "$date": "2021-02-09T05:28:16.000Z" + }, + "events": [ + { + "uuid": "413c5e06-6ecd-48e3-9fb2-3834335ce085", + "start": { + "$date": "2021-02-09T03:30:56.000Z" + }, + "end": { + "$date": "2021-02-09T05:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "80241061-5d24-4bed-bcd7-6af4ecf5cab8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-09T05:34:53.000Z" + }, + "end": { + "$date": "2021-02-09T05:34:57.000Z" + }, + "events": [ + { + "uuid": "08492d4f-9d2d-4efe-a122-03258befa5e0", + "start": { + "$date": "2021-02-09T05:34:53.000Z" + }, + "end": { + "$date": "2021-02-09T05:34:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4f71a05f-870c-4736-a9ad-fb87042d57fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-09T03:48:53.000Z" + }, + "end": { + "$date": "2021-02-09T05:35:04.000Z" + }, + "events": [ + { + "uuid": "158f0090-8dff-4470-95b5-34f3e59fa3d2", + "start": { + "$date": "2021-02-09T03:48:53.000Z" + }, + "end": { + "$date": "2021-02-09T05:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cf2cb33-f430-45fe-aa95-9ae77d3fe446", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-09T03:59:05.000Z" + }, + "end": { + "$date": "2021-02-09T04:25:07.000Z" + }, + "events": [ + { + "uuid": "bcea1654-e082-4ac2-b821-731fd74855f2", + "start": { + "$date": "2021-02-09T03:59:05.000Z" + }, + "end": { + "$date": "2021-02-09T04:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4e4e0c15-a040-45fa-b512-b5342e002211", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-09T04:03:23.000Z" + }, + "end": { + "$date": "2021-02-09T04:16:49.000Z" + }, + "events": [ + { + "uuid": "1fdcad4d-447d-4d7c-a010-a739f876d57a", + "start": { + "$date": "2021-02-09T04:03:23.000Z" + }, + "end": { + "$date": "2021-02-09T04:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "221d28fe-5368-403b-873e-9af2e16eeab6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-09T04:06:55.000Z" + }, + "end": { + "$date": "2021-02-09T04:13:02.000Z" + }, + "events": [ + { + "uuid": "75569a55-871b-481c-8078-8232cd1555b5", + "start": { + "$date": "2021-02-09T04:06:55.000Z" + }, + "end": { + "$date": "2021-02-09T04:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73dd1b78-995d-4a3d-99e6-f980a46c334e", + "uuid": "c6a53edb-45b5-41a5-acc3-380859cdcc1b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-09T04:18:17.000Z" + }, + "end": { + "$date": "2021-02-09T04:21:29.000Z" + }, + "events": [ + { + "uuid": "f9045f70-540e-499d-81d4-8a6e0aebcf63", + "start": { + "$date": "2021-02-09T04:18:17.000Z" + }, + "end": { + "$date": "2021-02-09T04:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad9c7fe5-095b-48f6-b9a6-1598f4ff2d46", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-09T04:34:29.000Z" + }, + "end": { + "$date": "2021-02-09T05:04:54.000Z" + }, + "events": [ + { + "uuid": "6896a8bd-7627-44b1-a9ab-e202a0014e84", + "start": { + "$date": "2021-02-09T04:34:29.000Z" + }, + "end": { + "$date": "2021-02-09T05:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b4c3cbe1-db4b-4c83-b12d-4c62cbba6d6a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-09T04:26:16.000Z" + }, + "end": { + "$date": "2021-02-09T04:41:44.000Z" + }, + "events": [ + { + "uuid": "0132a408-b3cf-44cb-9abc-ff99fda88057", + "start": { + "$date": "2021-02-09T04:26:16.000Z" + }, + "end": { + "$date": "2021-02-09T04:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "2c5c8dcd-fe87-40d4-8ed6-2f72caad87c5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-09T04:44:40.000Z" + }, + "end": { + "$date": "2021-02-09T06:28:43.000Z" + }, + "events": [ + { + "uuid": "a13d42eb-48a0-4ea6-a243-c9458889f036", + "start": { + "$date": "2021-02-09T04:44:40.000Z" + }, + "end": { + "$date": "2021-02-09T06:28:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "450d0406-d610-4f45-9672-ccea9cf6bd84", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-09T05:07:16.000Z" + }, + "end": { + "$date": "2021-02-09T05:31:22.000Z" + }, + "events": [ + { + "uuid": "5837c29b-bf85-40dc-ae87-cc31e2856e39", + "start": { + "$date": "2021-02-09T05:07:16.000Z" + }, + "end": { + "$date": "2021-02-09T05:31:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0211dbb1-ddc6-47b9-b9d4-a6a3d14fc86a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-09T05:08:16.000Z" + }, + "end": { + "$date": "2021-02-09T07:23:51.000Z" + }, + "events": [ + { + "uuid": "b673589d-6a45-41af-867f-76f385cde68e", + "start": { + "$date": "2021-02-09T05:08:16.000Z" + }, + "end": { + "$date": "2021-02-09T07:23:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94ea758e-df20-485f-b37d-305c137f5fe4", + "uuid": "f6b68c45-e973-414f-a2f3-c80aefd56ab5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-09T05:43:50.000Z" + }, + "end": { + "$date": "2021-02-09T07:45:01.000Z" + }, + "events": [ + { + "uuid": "d85b3392-8e1a-4ffb-b504-63b376868057", + "start": { + "$date": "2021-02-09T05:43:50.000Z" + }, + "end": { + "$date": "2021-02-09T07:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94ea758e-df20-485f-b37d-305c137f5fe4", + "uuid": "69b6b811-7bce-40ce-b814-eee33152522f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-09T06:14:13.000Z" + }, + "end": { + "$date": "2021-02-09T06:48:29.000Z" + }, + "events": [ + { + "uuid": "a3de363d-52c5-4716-a719-071731a049c3", + "start": { + "$date": "2021-02-09T06:14:13.000Z" + }, + "end": { + "$date": "2021-02-09T06:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94ea758e-df20-485f-b37d-305c137f5fe4", + "uuid": "19879e8f-0e62-4849-8533-73b5ae747b33", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-09T06:48:39.000Z" + }, + "end": { + "$date": "2021-02-09T07:34:49.000Z" + }, + "events": [ + { + "uuid": "a9350d49-35cc-4654-9c4d-34ceb58c478d", + "start": { + "$date": "2021-02-09T06:48:39.000Z" + }, + "end": { + "$date": "2021-02-09T07:34:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f5756236-b7d9-4f77-a11d-cf7681aa55fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-09T15:18:42.000Z" + }, + "end": { + "$date": "2021-02-09T15:54:20.000Z" + }, + "events": [ + { + "uuid": "9c8868eb-5bbd-41e3-bc8d-d1d11052ab75", + "start": { + "$date": "2021-02-09T15:18:42.000Z" + }, + "end": { + "$date": "2021-02-09T15:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef54252f-1382-41d3-a6ef-4cc84122cc4b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-09T17:11:03.000Z" + }, + "end": { + "$date": "2021-02-09T17:33:31.000Z" + }, + "events": [ + { + "uuid": "9a402b7b-1f19-4cd9-be15-7ed1c59984f8", + "start": { + "$date": "2021-02-09T17:11:03.000Z" + }, + "end": { + "$date": "2021-02-09T17:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae82e123-e1fc-4dc3-87dc-ccbbedb1ab94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-09T17:41:36.000Z" + }, + "end": { + "$date": "2021-02-09T18:13:04.000Z" + }, + "events": [ + { + "uuid": "242bfecb-40c7-4978-851a-6b857cec049e", + "start": { + "$date": "2021-02-09T17:41:36.000Z" + }, + "end": { + "$date": "2021-02-09T18:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7d0bcf27-40f8-4d08-a805-fa486e1c8c58", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-09T18:51:16.000Z" + }, + "end": { + "$date": "2021-02-09T19:00:22.000Z" + }, + "events": [ + { + "uuid": "0a70f23f-2770-40e8-8e27-6018af7abee5", + "start": { + "$date": "2021-02-09T18:51:16.000Z" + }, + "end": { + "$date": "2021-02-09T19:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2ad9f0e3-8f6a-4ee0-8fff-70d2cae19a9a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-09T19:06:15.000Z" + }, + "end": { + "$date": "2021-02-09T19:56:59.000Z" + }, + "events": [ + { + "uuid": "0d6e9b79-1cb9-46d0-9fa5-fae288760b96", + "start": { + "$date": "2021-02-09T19:06:15.000Z" + }, + "end": { + "$date": "2021-02-09T19:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "44c2e3c6-444e-4313-a7c1-71070292e3f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-09T19:41:15.000Z" + }, + "end": { + "$date": "2021-02-09T19:43:57.000Z" + }, + "events": [ + { + "uuid": "41e0ee91-5e5d-4081-ade9-1dbd1707e8e9", + "start": { + "$date": "2021-02-09T19:41:15.000Z" + }, + "end": { + "$date": "2021-02-09T19:43:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "c3977151-3c05-4d2b-b0ea-8ecb4f837fd9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-09T19:44:56.000Z" + }, + "end": { + "$date": "2021-02-09T19:56:33.000Z" + }, + "events": [ + { + "uuid": "bd57086f-c9a9-4906-b0b3-a82b1ae9354e", + "start": { + "$date": "2021-02-09T19:44:56.000Z" + }, + "end": { + "$date": "2021-02-09T19:56:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "11d72310-b27a-4885-9a45-1ddb3a268a63", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-09T20:10:14.000Z" + }, + "end": { + "$date": "2021-02-09T20:23:30.000Z" + }, + "events": [ + { + "uuid": "eee8c58c-e1ae-4295-976b-d63c33a738d9", + "start": { + "$date": "2021-02-09T20:10:14.000Z" + }, + "end": { + "$date": "2021-02-09T20:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "19c4c475-13e6-40bf-9d48-657121db9360", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-09T20:51:41.000Z" + }, + "end": { + "$date": "2021-02-09T20:54:48.000Z" + }, + "events": [ + { + "uuid": "0fb4c809-f634-4251-b9d8-f8003c9e3c43", + "start": { + "$date": "2021-02-09T20:51:41.000Z" + }, + "end": { + "$date": "2021-02-09T20:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c9c1a4d5-6199-4121-928c-6b327d59a2e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-09T21:48:25.000Z" + }, + "end": { + "$date": "2021-02-09T22:49:59.000Z" + }, + "events": [ + { + "uuid": "6ed34ccb-9bf0-4902-b05b-c798f7fa1ffd", + "start": { + "$date": "2021-02-09T21:48:25.000Z" + }, + "end": { + "$date": "2021-02-09T22:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad1a3394-2700-4057-96e4-71e1d99fcd69", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-09T22:26:59.000Z" + }, + "end": { + "$date": "2021-02-09T23:02:08.000Z" + }, + "events": [ + { + "uuid": "6a51d3f2-97f5-4f1a-9c16-55420bc029e5", + "start": { + "$date": "2021-02-09T22:26:59.000Z" + }, + "end": { + "$date": "2021-02-09T23:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c6cef953-fb7e-4430-a81a-7fc05b2ea7d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-09T23:56:17.000Z" + }, + "end": { + "$date": "2021-02-09T23:58:37.000Z" + }, + "events": [ + { + "uuid": "52113126-14d3-415f-ac60-3d3660de3605", + "start": { + "$date": "2021-02-09T23:56:17.000Z" + }, + "end": { + "$date": "2021-02-09T23:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a96f2c75-e38f-4225-84fa-f0fa48d72ba3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-10T00:31:25.000Z" + }, + "end": { + "$date": "2021-02-10T00:57:58.000Z" + }, + "events": [ + { + "uuid": "1df773ef-d462-4967-8681-20d204c9ec2d", + "start": { + "$date": "2021-02-10T00:31:25.000Z" + }, + "end": { + "$date": "2021-02-10T00:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a1f6fc2-42d2-4064-87e8-5b6ba6a317c9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T00:35:30.000Z" + }, + "end": { + "$date": "2021-02-10T00:53:33.000Z" + }, + "events": [ + { + "uuid": "8955310a-b94d-4169-bd8b-e8241e60b236", + "start": { + "$date": "2021-02-10T00:35:30.000Z" + }, + "end": { + "$date": "2021-02-10T00:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96103720-d482-46ad-8f0b-c70bc75b500c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T00:35:24.000Z" + }, + "end": { + "$date": "2021-02-10T00:53:21.000Z" + }, + "events": [ + { + "uuid": "1e550389-70bc-4288-a110-fcefc1d77035", + "start": { + "$date": "2021-02-10T00:35:24.000Z" + }, + "end": { + "$date": "2021-02-10T00:53:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf4ed72e-7185-4774-add2-9b653aef4479", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T00:35:24.000Z" + }, + "end": { + "$date": "2021-02-10T00:53:34.000Z" + }, + "events": [ + { + "uuid": "d3827ccd-addb-405f-bc4e-3de9bf856801", + "start": { + "$date": "2021-02-10T00:35:24.000Z" + }, + "end": { + "$date": "2021-02-10T00:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bfa3a74-2e72-4b85-a93f-7770d052fca8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T00:55:51.000Z" + }, + "end": { + "$date": "2021-02-10T01:08:02.000Z" + }, + "events": [ + { + "uuid": "1f6e8cdd-fe4f-471d-bb5d-b36ed5f0ece9", + "start": { + "$date": "2021-02-10T00:55:51.000Z" + }, + "end": { + "$date": "2021-02-10T01:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcf83caf-c3d4-40a0-b5af-56236a776d46", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T00:55:45.000Z" + }, + "end": { + "$date": "2021-02-10T01:07:52.000Z" + }, + "events": [ + { + "uuid": "ff491f49-4fd5-4f74-b8c2-cb9f5459ea0f", + "start": { + "$date": "2021-02-10T00:55:45.000Z" + }, + "end": { + "$date": "2021-02-10T01:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7e32de5-8265-40e2-a658-f37426c447e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T00:55:50.000Z" + }, + "end": { + "$date": "2021-02-10T01:07:56.000Z" + }, + "events": [ + { + "uuid": "20f5fda7-b60e-4212-944c-789a2336ded1", + "start": { + "$date": "2021-02-10T00:55:50.000Z" + }, + "end": { + "$date": "2021-02-10T01:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41eba44b-e03e-4530-b63b-3c9b1a1bf0ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-10T01:00:43.000Z" + }, + "end": { + "$date": "2021-02-10T01:37:56.000Z" + }, + "events": [ + { + "uuid": "5240104b-3813-458e-91f4-7d7670901f46", + "start": { + "$date": "2021-02-10T01:00:43.000Z" + }, + "end": { + "$date": "2021-02-10T01:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ca04696-2bd4-4035-a674-c75b01434c64", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T01:10:27.000Z" + }, + "end": { + "$date": "2021-02-10T01:33:12.000Z" + }, + "events": [ + { + "uuid": "e358c082-2642-44c4-877e-d55574a7aecc", + "start": { + "$date": "2021-02-10T01:10:27.000Z" + }, + "end": { + "$date": "2021-02-10T01:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a4c9476-2635-4e0d-9250-ad09817df8ab", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T01:10:21.000Z" + }, + "end": { + "$date": "2021-02-10T01:33:09.000Z" + }, + "events": [ + { + "uuid": "3c056400-de57-4359-bf48-3ab7688e06a8", + "start": { + "$date": "2021-02-10T01:10:21.000Z" + }, + "end": { + "$date": "2021-02-10T01:33:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c931dc57-c669-4089-a970-c4bc56450e23", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T01:10:21.000Z" + }, + "end": { + "$date": "2021-02-10T01:33:08.000Z" + }, + "events": [ + { + "uuid": "1add8399-cae4-4447-94bc-4f021d451f0e", + "start": { + "$date": "2021-02-10T01:10:21.000Z" + }, + "end": { + "$date": "2021-02-10T01:33:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d486421-fa51-4f1b-8dd0-298c8d4ba25e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T01:33:32.000Z" + }, + "end": { + "$date": "2021-02-10T01:35:02.000Z" + }, + "events": [ + { + "uuid": "284b78b9-8b3a-4f5a-b145-82f343c7f442", + "start": { + "$date": "2021-02-10T01:33:32.000Z" + }, + "end": { + "$date": "2021-02-10T01:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5841c68-9584-412e-8333-d09901e50bb5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T02:34:14.000Z" + }, + "end": { + "$date": "2021-02-10T03:05:33.000Z" + }, + "events": [ + { + "uuid": "7a7b0854-7d3a-4f4d-8870-672b35fe3c07", + "start": { + "$date": "2021-02-10T02:34:14.000Z" + }, + "end": { + "$date": "2021-02-10T03:16:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "903c03a5-082b-4b0c-9a7d-8477108ded81", + "start": { + "$date": "2021-02-10T03:16:14.000Z" + }, + "end": { + "$date": "2021-02-10T03:21:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa6114be-e6b5-474f-9631-d16d3446ed87", + "start": { + "$date": "2021-02-10T03:21:14.000Z" + }, + "end": { + "$date": "2021-02-10T03:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4bfc1407-37c8-4006-9c4b-021a21be90e9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-10T01:52:56.000Z" + }, + "end": { + "$date": "2021-02-10T02:15:14.000Z" + }, + "events": [ + { + "uuid": "c4d900ff-5d2a-4a56-8676-b0b014f9cf7e", + "start": { + "$date": "2021-02-10T01:52:56.000Z" + }, + "end": { + "$date": "2021-02-10T02:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6a036831-3f8a-4e56-870b-c38836873bdf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-10T02:09:55.000Z" + }, + "end": { + "$date": "2021-02-10T06:29:04.000Z" + }, + "events": [ + { + "uuid": "e010426f-7390-4cfc-95fc-235cc713e947", + "start": { + "$date": "2021-02-10T02:09:55.000Z" + }, + "end": { + "$date": "2021-02-10T04:26:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c2e840e-37f7-4318-a035-1cf88cb6abd1", + "start": { + "$date": "2021-02-10T04:26:55.000Z" + }, + "end": { + "$date": "2021-02-10T04:31:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e494de3f-1b9c-4119-8a90-02ed11ad8a79", + "start": { + "$date": "2021-02-10T04:31:55.000Z" + }, + "end": { + "$date": "2021-02-10T04:41:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d25ba107-f921-4acf-bfa0-4b50a7dfdfd3", + "start": { + "$date": "2021-02-10T04:41:55.000Z" + }, + "end": { + "$date": "2021-02-10T04:42:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "877b62c4-57a6-4ce9-aac8-42c39264f7b2", + "start": { + "$date": "2021-02-10T04:42:55.000Z" + }, + "end": { + "$date": "2021-02-10T05:18:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7eb6ad5-863f-46aa-9260-e209f9ee79b8", + "start": { + "$date": "2021-02-10T05:18:55.000Z" + }, + "end": { + "$date": "2021-02-10T05:23:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b713075c-8d05-4628-b126-ff4d2dd30ef8", + "start": { + "$date": "2021-02-10T05:23:55.000Z" + }, + "end": { + "$date": "2021-02-10T06:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "4c37df5d-ea36-460a-bd93-e0f771ff7bcb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-10T02:12:08.000Z" + }, + "end": { + "$date": "2021-02-10T03:11:51.000Z" + }, + "events": [ + { + "uuid": "e30d6f41-4a1f-469b-a129-9ef9e5e08292", + "start": { + "$date": "2021-02-10T02:12:08.000Z" + }, + "end": { + "$date": "2021-02-10T02:50:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e45b0886-bbdb-43e0-9112-81afda547bc1", + "start": { + "$date": "2021-02-10T02:50:08.000Z" + }, + "end": { + "$date": "2021-02-10T03:11:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1cc73142-6c32-46dd-867c-80e275ba2602", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-10T02:16:21.000Z" + }, + "end": { + "$date": "2021-02-10T03:17:07.000Z" + }, + "events": [ + { + "uuid": "812c1afa-e566-4d54-905a-cafceb60fc24", + "start": { + "$date": "2021-02-10T02:16:21.000Z" + }, + "end": { + "$date": "2021-02-10T03:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ab28d9d4-e085-4f4b-88a5-df77ab378f74", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-10T02:23:31.000Z" + }, + "end": { + "$date": "2021-02-10T03:57:28.000Z" + }, + "events": [ + { + "uuid": "da8dc5cb-4e39-4a7c-8463-06f9aec361d5", + "start": { + "$date": "2021-02-10T02:23:31.000Z" + }, + "end": { + "$date": "2021-02-10T03:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c78b1518-54ea-41bb-bcad-c1cba89dc25b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-10T02:27:57.000Z" + }, + "end": { + "$date": "2021-02-10T02:34:41.000Z" + }, + "events": [ + { + "uuid": "272f94d7-0999-474d-bd40-adb07a625df0", + "start": { + "$date": "2021-02-10T02:27:57.000Z" + }, + "end": { + "$date": "2021-02-10T02:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "acd1a6c8-2ae6-414c-abca-2d920abcdf04", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-10T03:19:54.000Z" + }, + "end": { + "$date": "2021-02-10T03:21:03.000Z" + }, + "events": [ + { + "uuid": "f65c05d0-0719-45fe-a269-5e7886563219", + "start": { + "$date": "2021-02-10T03:19:54.000Z" + }, + "end": { + "$date": "2021-02-10T03:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9482e2e6-783c-48ff-b654-a8673385102e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T04:01:27.000Z" + }, + "end": { + "$date": "2021-02-10T04:50:48.000Z" + }, + "events": [ + { + "uuid": "ee08e5ba-351f-4e49-bed0-b717f3504699", + "start": { + "$date": "2021-02-10T04:01:27.000Z" + }, + "end": { + "$date": "2021-02-10T04:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f278da4-03cd-4265-ad14-0d75c6e0b11f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T03:39:25.000Z" + }, + "end": { + "$date": "2021-02-10T03:54:32.000Z" + }, + "events": [ + { + "uuid": "cf79d7b9-8c53-40cf-93b7-b09c7b2a8a82", + "start": { + "$date": "2021-02-10T03:39:25.000Z" + }, + "end": { + "$date": "2021-02-10T03:54:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "793ce3c1-4d38-4617-9e47-b341f1bd2a96", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-10T03:48:52.000Z" + }, + "end": { + "$date": "2021-02-10T05:45:19.000Z" + }, + "events": [ + { + "uuid": "80102ac2-3808-4977-80ca-03c48878cc9b", + "start": { + "$date": "2021-02-10T03:48:52.000Z" + }, + "end": { + "$date": "2021-02-10T05:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ec43fa87-31ca-4c57-83bd-5d631962dda0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-10T03:49:19.000Z" + }, + "end": { + "$date": "2021-02-10T05:44:57.000Z" + }, + "events": [ + { + "uuid": "526a6216-e1b6-4eaa-9b12-97100e3c1496", + "start": { + "$date": "2021-02-10T03:49:19.000Z" + }, + "end": { + "$date": "2021-02-10T05:44:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edbd61b9-1cd5-4baf-9b55-06dfc4dd4467", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T04:01:27.000Z" + }, + "end": { + "$date": "2021-02-10T04:50:56.000Z" + }, + "events": [ + { + "uuid": "970356df-61ce-4716-bb1a-172c139e28f2", + "start": { + "$date": "2021-02-10T04:01:27.000Z" + }, + "end": { + "$date": "2021-02-10T04:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "aae99134-39bf-40b0-805a-b1d136e2a5bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-10T04:40:53.000Z" + }, + "end": { + "$date": "2021-02-10T07:43:02.000Z" + }, + "events": [ + { + "uuid": "d842e50d-2d8c-4096-b57c-6a797332731b", + "start": { + "$date": "2021-02-10T04:40:53.000Z" + }, + "end": { + "$date": "2021-02-10T07:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "df9e4ea6-e4b6-4c0e-9e42-e7da2b96fc41", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-10T04:40:59.000Z" + }, + "end": { + "$date": "2021-02-10T07:43:16.000Z" + }, + "events": [ + { + "uuid": "937be61d-4503-4a45-a797-3aacaca9b4af", + "start": { + "$date": "2021-02-10T04:40:59.000Z" + }, + "end": { + "$date": "2021-02-10T07:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e864034-370f-4cee-9334-674d1979f676", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T04:55:28.000Z" + }, + "end": { + "$date": "2021-02-10T05:10:03.000Z" + }, + "events": [ + { + "uuid": "f0302d7b-f12a-4a27-b7d1-af2f66010b6d", + "start": { + "$date": "2021-02-10T04:55:28.000Z" + }, + "end": { + "$date": "2021-02-10T05:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb83506d-ca15-4245-92a3-8bab4248ef9a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T04:55:26.000Z" + }, + "end": { + "$date": "2021-02-10T05:10:09.000Z" + }, + "events": [ + { + "uuid": "24718a38-27cf-4ec7-aff9-845dd154c8e0", + "start": { + "$date": "2021-02-10T04:55:26.000Z" + }, + "end": { + "$date": "2021-02-10T05:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb6f98be-f17e-4c6c-94c0-23fd23adbc58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T04:55:24.000Z" + }, + "end": { + "$date": "2021-02-10T05:10:10.000Z" + }, + "events": [ + { + "uuid": "75051588-e261-4476-b824-e33ddb23da47", + "start": { + "$date": "2021-02-10T04:55:24.000Z" + }, + "end": { + "$date": "2021-02-10T05:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e45beda-b7d7-4400-a0b4-712ad2a95932", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T05:12:39.000Z" + }, + "end": { + "$date": "2021-02-10T05:31:06.000Z" + }, + "events": [ + { + "uuid": "3882a4bb-4ada-4f66-a7fa-2e77e2210b51", + "start": { + "$date": "2021-02-10T05:12:39.000Z" + }, + "end": { + "$date": "2021-02-10T05:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f453763-f908-42f1-902d-558c47fbf1af", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T05:13:07.000Z" + }, + "end": { + "$date": "2021-02-10T05:30:56.000Z" + }, + "events": [ + { + "uuid": "9e3840cd-081f-44cf-b0ac-a25b01594db6", + "start": { + "$date": "2021-02-10T05:13:07.000Z" + }, + "end": { + "$date": "2021-02-10T05:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c8e6e59-c123-47df-a8b9-e321b9793c8f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T05:12:40.000Z" + }, + "end": { + "$date": "2021-02-10T05:30:56.000Z" + }, + "events": [ + { + "uuid": "edb4621a-3c69-4eb7-93b4-591810d73c43", + "start": { + "$date": "2021-02-10T05:12:40.000Z" + }, + "end": { + "$date": "2021-02-10T05:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0613421-f9bc-4c67-b7bf-8d8a3dad0ad7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T05:33:14.000Z" + }, + "end": { + "$date": "2021-02-10T05:44:32.000Z" + }, + "events": [ + { + "uuid": "6182832e-9979-493b-bbf3-d24e4a32d49e", + "start": { + "$date": "2021-02-10T05:33:14.000Z" + }, + "end": { + "$date": "2021-02-10T05:44:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afa0fe5e-a956-4eef-8a96-451ecc84b837", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T05:33:12.000Z" + }, + "end": { + "$date": "2021-02-10T05:44:32.000Z" + }, + "events": [ + { + "uuid": "12abdfe4-ddda-4d37-8f02-2e26cb150825", + "start": { + "$date": "2021-02-10T05:33:12.000Z" + }, + "end": { + "$date": "2021-02-10T05:44:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e271a7ff-2b66-40b2-b0d6-e76891af9a81", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-10T06:05:34.000Z" + }, + "end": { + "$date": "2021-02-10T06:40:30.000Z" + }, + "events": [ + { + "uuid": "ac88fdbe-9c5f-4635-bbbb-73abca7cbe30", + "start": { + "$date": "2021-02-10T06:05:34.000Z" + }, + "end": { + "$date": "2021-02-10T06:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10f4a0ce-09d3-44aa-bf2e-7ff3d83b3f06", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T15:53:42.000Z" + }, + "end": { + "$date": "2021-02-10T16:22:22.000Z" + }, + "events": [ + { + "uuid": "4248bd0d-d078-4b87-b77f-8215d0ca7b44", + "start": { + "$date": "2021-02-10T15:53:42.000Z" + }, + "end": { + "$date": "2021-02-10T16:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79591223-f7cc-4513-8990-9038deabb00d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T16:24:10.000Z" + }, + "end": { + "$date": "2021-02-10T16:52:12.000Z" + }, + "events": [ + { + "uuid": "4787fc03-87a8-4390-a861-15e230ddb1c4", + "start": { + "$date": "2021-02-10T16:24:10.000Z" + }, + "end": { + "$date": "2021-02-10T16:52:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b5a1f21a-43c8-4d25-b1f8-92b3d3a833bb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-10T16:26:24.000Z" + }, + "end": { + "$date": "2021-02-10T17:33:08.000Z" + }, + "events": [ + { + "uuid": "3c495fb1-83d5-4328-90cc-aa98f3dc6142", + "start": { + "$date": "2021-02-10T16:26:24.000Z" + }, + "end": { + "$date": "2021-02-10T17:33:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8175f6c-2407-4b67-9443-f996cf6832e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T16:54:20.000Z" + }, + "end": { + "$date": "2021-02-10T17:25:26.000Z" + }, + "events": [ + { + "uuid": "8a9e2bd7-0b12-41fe-bac7-fd166117b495", + "start": { + "$date": "2021-02-10T16:54:20.000Z" + }, + "end": { + "$date": "2021-02-10T17:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc6ae9b0-5504-47aa-a9c6-38ea33c1746c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-10T17:37:03.000Z" + }, + "end": { + "$date": "2021-02-10T17:59:53.000Z" + }, + "events": [ + { + "uuid": "d6d1f11c-3391-46fc-852c-4a8e5adf62e1", + "start": { + "$date": "2021-02-10T17:37:03.000Z" + }, + "end": { + "$date": "2021-02-10T17:59:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db80f042-216b-4c5e-9f69-2cb296e7101e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T17:46:41.000Z" + }, + "end": { + "$date": "2021-02-10T18:03:29.000Z" + }, + "events": [ + { + "uuid": "7f8540ff-bb8f-4627-8138-e33cea1bc10e", + "start": { + "$date": "2021-02-10T17:46:41.000Z" + }, + "end": { + "$date": "2021-02-10T18:03:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a50d848c-0030-4f70-bda8-fff26866e578", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T18:46:32.000Z" + }, + "end": { + "$date": "2021-02-10T18:46:29.000Z" + }, + "events": [ + { + "uuid": "f05e916d-d38b-4c65-b46e-a96dd43a855d", + "start": { + "$date": "2021-02-10T18:46:32.000Z" + }, + "end": { + "$date": "2021-02-10T18:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e687cbee-bf35-4b13-88fe-0429a820e7b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-10T18:08:29.000Z" + }, + "end": { + "$date": "2021-02-10T18:49:31.000Z" + }, + "events": [ + { + "uuid": "c2491374-8352-481e-8a1f-1bd3f6fc2820", + "start": { + "$date": "2021-02-10T18:08:29.000Z" + }, + "end": { + "$date": "2021-02-10T18:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04510ffb-0165-44b6-ae47-5ee0499e652e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T18:47:23.000Z" + }, + "end": { + "$date": "2021-02-10T18:48:44.000Z" + }, + "events": [ + { + "uuid": "e6d51363-eaa3-4e7f-9b73-b41452aa7690", + "start": { + "$date": "2021-02-10T18:47:23.000Z" + }, + "end": { + "$date": "2021-02-10T18:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "53549a22-c7d5-4581-8a2b-9fc71fba947f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T19:23:49.000Z" + }, + "end": { + "$date": "2021-02-10T19:25:10.000Z" + }, + "events": [ + { + "uuid": "ade41ded-83df-491e-bd4d-cde5d81fba3f", + "start": { + "$date": "2021-02-10T19:23:49.000Z" + }, + "end": { + "$date": "2021-02-10T19:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03a79e25-622e-4633-9c95-0d02474727e3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-10T19:37:46.000Z" + }, + "end": { + "$date": "2021-02-10T20:10:21.000Z" + }, + "events": [ + { + "uuid": "2398b847-81d7-4fc0-afd2-9f2fe4501f24", + "start": { + "$date": "2021-02-10T19:37:46.000Z" + }, + "end": { + "$date": "2021-02-10T20:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "404261f2-e696-488a-a209-a73159afd9f4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-10T20:57:05.000Z" + }, + "end": { + "$date": "2021-02-10T21:28:38.000Z" + }, + "events": [ + { + "uuid": "51ff2d42-7b3d-426e-a93b-5259c1a76a06", + "start": { + "$date": "2021-02-10T20:57:05.000Z" + }, + "end": { + "$date": "2021-02-10T21:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "34ec1f92-3749-4bfd-974a-9823e460ec0f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-10T21:09:24.000Z" + }, + "end": { + "$date": "2021-02-10T21:53:58.000Z" + }, + "events": [ + { + "uuid": "994f3f28-91d3-49fe-8a34-7c00344ad98e", + "start": { + "$date": "2021-02-10T21:09:24.000Z" + }, + "end": { + "$date": "2021-02-10T21:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61b9c95f-3d45-4cff-9049-c04e9c889c38", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T22:00:13.000Z" + }, + "end": { + "$date": "2021-02-10T22:19:42.000Z" + }, + "events": [ + { + "uuid": "08fb61d8-619e-40bd-8287-a13ab920fa1f", + "start": { + "$date": "2021-02-10T22:00:13.000Z" + }, + "end": { + "$date": "2021-02-10T22:19:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "48856a09-cc46-4afb-aea2-ca88bc68a5ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-10T22:03:57.000Z" + }, + "end": { + "$date": "2021-02-10T22:11:10.000Z" + }, + "events": [ + { + "uuid": "114f8de7-3f3f-400b-8d7f-614b8c476b68", + "start": { + "$date": "2021-02-10T22:03:57.000Z" + }, + "end": { + "$date": "2021-02-10T22:11:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "303196d4-185a-4b25-845b-8fa56cb9c802", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-10T22:13:33.000Z" + }, + "end": { + "$date": "2021-02-11T00:45:56.000Z" + }, + "events": [ + { + "uuid": "3e13bd8a-d282-4bb3-b9a4-78e1116c36f6", + "start": { + "$date": "2021-02-10T22:13:33.000Z" + }, + "end": { + "$date": "2021-02-11T00:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "faf22a89-058e-4a25-bd7c-b2349df0df36", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-10T22:19:27.000Z" + }, + "end": { + "$date": "2021-02-11T01:09:09.000Z" + }, + "events": [ + { + "uuid": "8bd0d2d5-20e1-4a4d-a2f6-e6caa8241494", + "start": { + "$date": "2021-02-10T22:19:27.000Z" + }, + "end": { + "$date": "2021-02-11T01:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc54a5fc-a088-434d-98bf-edb9ad9bb033", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T22:30:18.000Z" + }, + "end": { + "$date": "2021-02-10T22:50:51.000Z" + }, + "events": [ + { + "uuid": "3668a6a3-be2b-4c04-adaa-17500a1ce1fb", + "start": { + "$date": "2021-02-10T22:30:18.000Z" + }, + "end": { + "$date": "2021-02-10T22:50:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5d445717-ac6d-4fe4-945d-cb76c8893735", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-10T22:31:37.000Z" + }, + "end": { + "$date": "2021-02-10T22:50:50.000Z" + }, + "events": [ + { + "uuid": "5bf0dd21-08bd-4a7f-975c-31e56a8d2c95", + "start": { + "$date": "2021-02-10T22:31:37.000Z" + }, + "end": { + "$date": "2021-02-10T22:50:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a1046db-ef5d-4631-9c74-9d8de6d6f49b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T22:53:38.000Z" + }, + "end": { + "$date": "2021-02-10T23:13:59.000Z" + }, + "events": [ + { + "uuid": "935e75c1-3094-4bbe-973a-99b59212f3df", + "start": { + "$date": "2021-02-10T22:53:38.000Z" + }, + "end": { + "$date": "2021-02-10T23:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88b5d6a8-9f1a-48f1-89d7-d6a347e2c903", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T22:54:11.000Z" + }, + "end": { + "$date": "2021-02-10T23:13:52.000Z" + }, + "events": [ + { + "uuid": "8509f302-0e18-4a88-946f-88c2ab58e25e", + "start": { + "$date": "2021-02-10T22:54:11.000Z" + }, + "end": { + "$date": "2021-02-10T23:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1d1a2767-0d78-4e07-97ce-14d9fdc48f13", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-10T22:51:06.000Z" + }, + "end": { + "$date": "2021-02-10T22:52:31.000Z" + }, + "events": [ + { + "uuid": "dbafb033-8136-468f-8a9f-4bcfd0585a08", + "start": { + "$date": "2021-02-10T22:51:06.000Z" + }, + "end": { + "$date": "2021-02-10T22:52:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "516c59bf-0c79-437f-b732-cd7a9799d582", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T23:16:30.000Z" + }, + "end": { + "$date": "2021-02-10T23:26:56.000Z" + }, + "events": [ + { + "uuid": "2830100f-51c9-4397-bbbd-b42946bc2c8b", + "start": { + "$date": "2021-02-10T23:16:30.000Z" + }, + "end": { + "$date": "2021-02-10T23:26:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7ce6bd7-eae5-43ab-88c8-13e5714c93d4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T23:17:12.000Z" + }, + "end": { + "$date": "2021-02-10T23:26:53.000Z" + }, + "events": [ + { + "uuid": "5ded731d-b1fc-4cf4-a6dc-86aa5e9a50eb", + "start": { + "$date": "2021-02-10T23:17:12.000Z" + }, + "end": { + "$date": "2021-02-10T23:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "223cae0b-5c74-4bcf-9a1c-b53f43c98627", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-10T23:30:11.000Z" + }, + "end": { + "$date": "2021-02-10T23:46:07.000Z" + }, + "events": [ + { + "uuid": "e74cde31-ef79-41ca-aac6-3577f6647200", + "start": { + "$date": "2021-02-10T23:30:11.000Z" + }, + "end": { + "$date": "2021-02-10T23:46:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "155109cf-863d-4858-bbc3-37eda7e32ce8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-10T23:29:53.000Z" + }, + "end": { + "$date": "2021-02-10T23:46:00.000Z" + }, + "events": [ + { + "uuid": "4db6d372-2a02-47de-899d-593141e0e8cd", + "start": { + "$date": "2021-02-10T23:29:53.000Z" + }, + "end": { + "$date": "2021-02-10T23:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b02054ae-cd94-4e3e-9bef-40d165e10615", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-10T23:58:27.000Z" + }, + "end": { + "$date": "2021-02-11T00:31:23.000Z" + }, + "events": [ + { + "uuid": "7e06b379-cd37-4559-8d7e-3cfbd3874357", + "start": { + "$date": "2021-02-10T23:58:27.000Z" + }, + "end": { + "$date": "2021-02-11T00:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4e9378c1-a414-423a-9cb2-21edbde36add", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T00:43:48.000Z" + }, + "end": { + "$date": "2021-02-11T02:11:02.000Z" + }, + "events": [ + { + "uuid": "47f3d8a4-3c4b-40ba-8845-afd83c51b748", + "start": { + "$date": "2021-02-11T00:43:48.000Z" + }, + "end": { + "$date": "2021-02-11T02:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c57d687c-3074-4d11-a891-44cec55b8668", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-11T00:54:36.000Z" + }, + "end": { + "$date": "2021-02-11T01:14:53.000Z" + }, + "events": [ + { + "uuid": "a908e3d4-81dd-40a0-9e80-b7da8d32182e", + "start": { + "$date": "2021-02-11T00:54:36.000Z" + }, + "end": { + "$date": "2021-02-11T01:14:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c50e9974-d0b8-4434-bde4-4c0bcecb198a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-11T00:58:31.000Z" + }, + "end": { + "$date": "2021-02-11T01:22:42.000Z" + }, + "events": [ + { + "uuid": "e66c76f0-d01b-4acd-80a1-ee6d3436dd76", + "start": { + "$date": "2021-02-11T00:58:31.000Z" + }, + "end": { + "$date": "2021-02-11T01:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0aaed63-5744-465f-b97a-cbcc9f32a5f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-11T01:15:12.000Z" + }, + "end": { + "$date": "2021-02-11T02:01:05.000Z" + }, + "events": [ + { + "uuid": "be9a7912-465c-4531-b192-8220a1a41a25", + "start": { + "$date": "2021-02-11T01:15:12.000Z" + }, + "end": { + "$date": "2021-02-11T02:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "aa5c7474-e063-41dc-a019-9d1fe78a309c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-11T01:19:33.000Z" + }, + "end": { + "$date": "2021-02-11T01:26:11.000Z" + }, + "events": [ + { + "uuid": "89178d6f-bff3-4ca6-8018-b954ee8d2fa9", + "start": { + "$date": "2021-02-11T01:19:33.000Z" + }, + "end": { + "$date": "2021-02-11T01:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "adfbced1-caa8-4d87-be9d-4b8d26537873", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-11T01:31:33.000Z" + }, + "end": { + "$date": "2021-02-11T06:34:14.000Z" + }, + "events": [ + { + "uuid": "d7a529b1-060b-401b-bf7b-d66d4809c4c3", + "start": { + "$date": "2021-02-11T01:31:33.000Z" + }, + "end": { + "$date": "2021-02-11T04:13:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b28a307-c4a2-4b0e-9c4e-9164e0d9e549", + "start": { + "$date": "2021-02-11T04:13:33.000Z" + }, + "end": { + "$date": "2021-02-11T04:16:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8525b418-3069-47f8-8b5e-57e1e029ecb1", + "start": { + "$date": "2021-02-11T04:16:33.000Z" + }, + "end": { + "$date": "2021-02-11T06:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "34c765cd-c90e-45ca-b3d8-854e71118a8e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-11T02:22:47.000Z" + }, + "end": { + "$date": "2021-02-11T02:58:19.000Z" + }, + "events": [ + { + "uuid": "552c250f-a6f8-401f-8768-c8f58386813b", + "start": { + "$date": "2021-02-11T02:22:47.000Z" + }, + "end": { + "$date": "2021-02-11T02:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83830375-a7d9-45f7-87f2-11a76b5f51e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T02:35:34.000Z" + }, + "end": { + "$date": "2021-02-11T03:01:55.000Z" + }, + "events": [ + { + "uuid": "53695fb5-500a-4c7c-b3b7-3a8689af824e", + "start": { + "$date": "2021-02-11T02:35:34.000Z" + }, + "end": { + "$date": "2021-02-11T03:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "01fc5c46-71de-4b9c-9802-71133a9fc56e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-11T03:01:31.000Z" + }, + "end": { + "$date": "2021-02-11T03:17:10.000Z" + }, + "events": [ + { + "uuid": "8e629100-b749-413c-a89f-b2e52eae257e", + "start": { + "$date": "2021-02-11T03:01:31.000Z" + }, + "end": { + "$date": "2021-02-11T03:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f4886c27-6d8d-4293-8cd3-244b03ba6cf8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-11T03:18:46.000Z" + }, + "end": { + "$date": "2021-02-11T03:28:26.000Z" + }, + "events": [ + { + "uuid": "9029c0d9-0a78-4e75-9c3a-96d6e450e58c", + "start": { + "$date": "2021-02-11T03:18:46.000Z" + }, + "end": { + "$date": "2021-02-11T03:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fd9bf5a2-f467-44b1-a30f-ef02f8a86f65", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-11T03:20:02.000Z" + }, + "end": { + "$date": "2021-02-11T04:31:19.000Z" + }, + "events": [ + { + "uuid": "82b4f8e6-a207-4caa-a38f-f7113d068a65", + "start": { + "$date": "2021-02-11T03:20:02.000Z" + }, + "end": { + "$date": "2021-02-11T04:31:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "020dfa7b-755d-4ee8-a386-2a1a26c61f2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-11T03:29:17.000Z" + }, + "end": { + "$date": "2021-02-11T05:21:10.000Z" + }, + "events": [ + { + "uuid": "4c6942b9-2036-45c1-9075-7db6fe2472b2", + "start": { + "$date": "2021-02-11T03:29:17.000Z" + }, + "end": { + "$date": "2021-02-11T05:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7d06a70f-aad2-408c-8563-2ec1e922fa4a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-11T03:59:57.000Z" + }, + "end": { + "$date": "2021-02-11T04:50:49.000Z" + }, + "events": [ + { + "uuid": "f80e1723-d5f3-4cec-880f-80c4fc9c4bef", + "start": { + "$date": "2021-02-11T03:59:57.000Z" + }, + "end": { + "$date": "2021-02-11T04:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ecabe407-c0f9-47c2-87ab-f9b79e1aa6f0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-11T04:06:06.000Z" + }, + "end": { + "$date": "2021-02-11T04:42:28.000Z" + }, + "events": [ + { + "uuid": "c3606d11-7716-43e0-ae11-494f61471cf1", + "start": { + "$date": "2021-02-11T04:06:06.000Z" + }, + "end": { + "$date": "2021-02-11T04:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "5411f448-4b06-40f5-b0b4-8f7397d4b7f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-11T04:13:32.000Z" + }, + "end": { + "$date": "2021-02-11T05:28:22.000Z" + }, + "events": [ + { + "uuid": "2ccfe707-130c-4fc9-b52b-3f31ddd51c7a", + "start": { + "$date": "2021-02-11T04:13:32.000Z" + }, + "end": { + "$date": "2021-02-11T05:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e9e01db9-57f4-42fe-a45b-5d94c3f83647", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-11T04:41:32.000Z" + }, + "end": { + "$date": "2021-02-11T05:21:03.000Z" + }, + "events": [ + { + "uuid": "a7da1dd1-a5a3-4289-8768-2d2da4f71816", + "start": { + "$date": "2021-02-11T04:41:32.000Z" + }, + "end": { + "$date": "2021-02-11T05:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f0b1246-0865-47c4-b680-82ff1d365f3d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-11T04:55:42.000Z" + }, + "end": { + "$date": "2021-02-11T05:11:14.000Z" + }, + "events": [ + { + "uuid": "c5dfeedb-98cf-4278-812d-53fe5b75710e", + "start": { + "$date": "2021-02-11T04:55:42.000Z" + }, + "end": { + "$date": "2021-02-11T05:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6702076-f669-42fd-a359-d831936eb001", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T05:07:26.000Z" + }, + "end": { + "$date": "2021-02-11T05:07:39.000Z" + }, + "events": [ + { + "uuid": "58f9f77c-418b-4965-8bb0-f912c1bd0c76", + "start": { + "$date": "2021-02-11T05:07:26.000Z" + }, + "end": { + "$date": "2021-02-11T05:07:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c4539fa-a84f-4883-8c7d-b30f14e2b429", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-11T05:16:08.000Z" + }, + "end": { + "$date": "2021-02-11T05:43:55.000Z" + }, + "events": [ + { + "uuid": "993c3738-510d-47ad-bb6f-dc815b60226a", + "start": { + "$date": "2021-02-11T05:16:08.000Z" + }, + "end": { + "$date": "2021-02-11T05:43:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a53123af-9ddd-432f-9b5f-c1e6749d23c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-11T05:22:15.000Z" + }, + "end": { + "$date": "2021-02-11T07:14:50.000Z" + }, + "events": [ + { + "uuid": "ada6ef5a-9c08-40bc-a8d0-342795094420", + "start": { + "$date": "2021-02-11T05:22:15.000Z" + }, + "end": { + "$date": "2021-02-11T07:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "986c846e-678e-4ce1-89ed-0639dda9a6b7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-11T05:29:23.000Z" + }, + "end": { + "$date": "2021-02-11T07:14:29.000Z" + }, + "events": [ + { + "uuid": "fb4b31e7-4c7c-4825-aec9-d6b0b48aa5a5", + "start": { + "$date": "2021-02-11T05:29:23.000Z" + }, + "end": { + "$date": "2021-02-11T07:14:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be4e5925-2a9a-4543-bfca-8c1a28deaa94", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-11T05:49:45.000Z" + }, + "end": { + "$date": "2021-02-11T06:17:19.000Z" + }, + "events": [ + { + "uuid": "6c1c6dde-6984-4ddb-8941-e17a8469436d", + "start": { + "$date": "2021-02-11T05:49:45.000Z" + }, + "end": { + "$date": "2021-02-11T06:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4e11b49-3f7a-4268-97f4-4bfb598d1a81", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-11T06:23:21.000Z" + }, + "end": { + "$date": "2021-02-11T06:53:17.000Z" + }, + "events": [ + { + "uuid": "a52a44c6-6bf1-481c-b075-0bd6166daf95", + "start": { + "$date": "2021-02-11T06:23:21.000Z" + }, + "end": { + "$date": "2021-02-11T06:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2695a97a-1c7b-4ec3-9ef5-de2da18094bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-11T06:58:07.000Z" + }, + "end": { + "$date": "2021-02-11T07:32:18.000Z" + }, + "events": [ + { + "uuid": "bf59d22f-6c22-4312-84f2-775e3284220f", + "start": { + "$date": "2021-02-11T06:58:07.000Z" + }, + "end": { + "$date": "2021-02-11T07:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "74092e56-e1d8-43f2-93d2-83a35e12ed33", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-11T17:08:37.000Z" + }, + "end": { + "$date": "2021-02-11T17:13:03.000Z" + }, + "events": [ + { + "uuid": "a7882fcc-6595-4fe6-8a08-5a24d55d4d7e", + "start": { + "$date": "2021-02-11T17:08:37.000Z" + }, + "end": { + "$date": "2021-02-11T17:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0aa9f6d4-f6a1-47c3-b9b4-61f7e6ea284b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T17:23:19.000Z" + }, + "end": { + "$date": "2021-02-11T17:59:31.000Z" + }, + "events": [ + { + "uuid": "18abae68-8b18-4667-906b-1809b51a28ff", + "start": { + "$date": "2021-02-11T17:23:19.000Z" + }, + "end": { + "$date": "2021-02-11T17:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f1ebf90-b4ae-434b-a54a-b85472d8b708", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T20:33:14.000Z" + }, + "end": { + "$date": "2021-02-11T21:10:26.000Z" + }, + "events": [ + { + "uuid": "09e9737a-c671-42c6-9892-765a1cd50c80", + "start": { + "$date": "2021-02-11T20:33:14.000Z" + }, + "end": { + "$date": "2021-02-11T21:10:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7f4a2b40-8391-491d-a2b7-2539bd8c9b15", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-11T20:52:15.000Z" + }, + "end": { + "$date": "2021-02-11T22:08:41.000Z" + }, + "events": [ + { + "uuid": "882f781f-6b75-4169-b063-283e62da0f3b", + "start": { + "$date": "2021-02-11T20:52:15.000Z" + }, + "end": { + "$date": "2021-02-11T22:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "00dfa590-61db-45c6-9f56-96c02c22d027", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-11T21:04:54.000Z" + }, + "end": { + "$date": "2021-02-11T22:53:39.000Z" + }, + "events": [ + { + "uuid": "5e8aa22b-908e-445e-a530-9006075abef0", + "start": { + "$date": "2021-02-11T21:04:54.000Z" + }, + "end": { + "$date": "2021-02-11T22:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a7e620d-1def-46da-92a8-b9ef3eb7923c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T21:21:33.000Z" + }, + "end": { + "$date": "2021-02-11T21:50:09.000Z" + }, + "events": [ + { + "uuid": "8ead60e4-41e5-4f9f-afb7-bf0878b14bdc", + "start": { + "$date": "2021-02-11T21:21:33.000Z" + }, + "end": { + "$date": "2021-02-11T21:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0eddbbad-d6ac-41c6-a0b5-121849359652", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-11T22:17:09.000Z" + }, + "end": { + "$date": "2021-02-11T22:25:22.000Z" + }, + "events": [ + { + "uuid": "eb96542c-b891-4b13-8100-8bdc73f52fe2", + "start": { + "$date": "2021-02-11T22:17:09.000Z" + }, + "end": { + "$date": "2021-02-11T22:25:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2c34940f-4f32-450b-a49d-fef7b6fdbcfe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-11T22:45:08.000Z" + }, + "end": { + "$date": "2021-02-11T22:54:04.000Z" + }, + "events": [ + { + "uuid": "aa50b281-30c2-4b58-99f9-c744e9514807", + "start": { + "$date": "2021-02-11T22:45:08.000Z" + }, + "end": { + "$date": "2021-02-11T22:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "564e251b-0dd2-450c-b979-f39de2083762", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-11T23:32:55.000Z" + }, + "end": { + "$date": "2021-02-12T00:29:23.000Z" + }, + "events": [ + { + "uuid": "3759c740-06e5-4c56-b286-7ce1d26290f8", + "start": { + "$date": "2021-02-11T23:32:55.000Z" + }, + "end": { + "$date": "2021-02-12T00:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6e6bc89-9500-42ab-895e-5e8107c52045", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-12T00:05:13.000Z" + }, + "end": { + "$date": "2021-02-12T00:24:56.000Z" + }, + "events": [ + { + "uuid": "01820610-8d2c-4941-84e8-8ccc56011915", + "start": { + "$date": "2021-02-12T00:05:13.000Z" + }, + "end": { + "$date": "2021-02-12T00:24:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "841e2730-c359-4380-ade8-a04907e91145", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-12T00:03:28.000Z" + }, + "end": { + "$date": "2021-02-12T00:33:33.000Z" + }, + "events": [ + { + "uuid": "fda80356-676e-4b38-a787-cb3a50cc44ad", + "start": { + "$date": "2021-02-12T00:03:28.000Z" + }, + "end": { + "$date": "2021-02-12T00:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "16208f3a-0c43-40d7-b71c-59ff81d02d3d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-12T00:03:37.000Z" + }, + "end": { + "$date": "2021-02-12T00:55:54.000Z" + }, + "events": [ + { + "uuid": "898ef82f-b7f7-4327-9818-dbc6a8b4168f", + "start": { + "$date": "2021-02-12T00:03:37.000Z" + }, + "end": { + "$date": "2021-02-12T00:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "717f8da4-af26-471c-87e0-b0c9a4cb0f16", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-12T00:14:35.000Z" + }, + "end": { + "$date": "2021-02-12T00:57:08.000Z" + }, + "events": [ + { + "uuid": "5c18f21d-2034-42eb-a311-0d315b63df5e", + "start": { + "$date": "2021-02-12T00:14:35.000Z" + }, + "end": { + "$date": "2021-02-12T00:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9b524ed1-5073-49e6-bbbf-65be79dd3a69", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-12T00:45:11.000Z" + }, + "end": { + "$date": "2021-02-12T01:33:53.000Z" + }, + "events": [ + { + "uuid": "42cbd19e-4afc-4350-8a5a-818cd453ab97", + "start": { + "$date": "2021-02-12T00:45:11.000Z" + }, + "end": { + "$date": "2021-02-12T01:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a175f1d-1771-472d-ac50-87ce74f89577", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-12T01:04:40.000Z" + }, + "end": { + "$date": "2021-02-12T01:50:55.000Z" + }, + "events": [ + { + "uuid": "e2021ef7-716c-4747-94bf-9ea19beaaa59", + "start": { + "$date": "2021-02-12T01:04:40.000Z" + }, + "end": { + "$date": "2021-02-12T01:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "ec28259b-18f8-4503-93dc-699b69960da8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-12T01:28:58.000Z" + }, + "end": { + "$date": "2021-02-12T01:51:13.000Z" + }, + "events": [ + { + "uuid": "3fc58cf7-ee62-4d4d-887a-212c90c23496", + "start": { + "$date": "2021-02-12T01:28:58.000Z" + }, + "end": { + "$date": "2021-02-12T01:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15d39622-2486-4fc3-a043-602a0ece0219", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T01:30:53.000Z" + }, + "end": { + "$date": "2021-02-12T02:11:25.000Z" + }, + "events": [ + { + "uuid": "da9a75b0-d9bb-4391-9d3e-fb8ee65ee6fe", + "start": { + "$date": "2021-02-12T01:30:53.000Z" + }, + "end": { + "$date": "2021-02-12T02:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "eb25ecbb-fd59-40db-8e1f-ade62addfcfb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-12T03:01:17.000Z" + }, + "end": { + "$date": "2021-02-12T04:07:18.000Z" + }, + "events": [ + { + "uuid": "5d97c689-ed63-42f5-b517-a4d91e0a70b8", + "start": { + "$date": "2021-02-12T03:01:17.000Z" + }, + "end": { + "$date": "2021-02-12T04:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "15ca2495-bb93-44b1-bf4c-775a7a391476", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-12T03:03:35.000Z" + }, + "end": { + "$date": "2021-02-12T04:27:27.000Z" + }, + "events": [ + { + "uuid": "0e3cf185-6894-40da-a487-63e997c050d6", + "start": { + "$date": "2021-02-12T03:03:35.000Z" + }, + "end": { + "$date": "2021-02-12T04:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "367e9245-c784-4af8-b34f-b6dac0dda497", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T03:58:00.000Z" + }, + "end": { + "$date": "2021-02-12T04:48:11.000Z" + }, + "events": [ + { + "uuid": "c6b669ff-c9b3-4fd2-96f6-5e332c8882f3", + "start": { + "$date": "2021-02-12T03:58:00.000Z" + }, + "end": { + "$date": "2021-02-12T04:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e780c8e-f41e-45ae-a60e-e5ce5414932a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T04:15:03.000Z" + }, + "end": { + "$date": "2021-02-12T04:50:14.000Z" + }, + "events": [ + { + "uuid": "46cda33a-385a-4187-a609-1d32372fbce9", + "start": { + "$date": "2021-02-12T04:15:03.000Z" + }, + "end": { + "$date": "2021-02-12T04:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "698a4f09-bd05-43dc-b510-4b7f1b648093", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-12T04:40:13.000Z" + }, + "end": { + "$date": "2021-02-12T05:02:00.000Z" + }, + "events": [ + { + "uuid": "474b2a08-5e84-40d3-89cb-d8ae78fab2b1", + "start": { + "$date": "2021-02-12T04:40:13.000Z" + }, + "end": { + "$date": "2021-02-12T05:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61ecef1e-583a-4b80-81b1-020386f95b4a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-12T04:07:18.000Z" + }, + "end": { + "$date": "2021-02-12T05:39:12.000Z" + }, + "events": [ + { + "uuid": "7af6b19e-0a1b-4abc-8273-6708b9a9513e", + "start": { + "$date": "2021-02-12T04:07:18.000Z" + }, + "end": { + "$date": "2021-02-12T05:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f03af139-cdd4-4da0-bb57-fe3aad7327e9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-12T04:50:17.000Z" + }, + "end": { + "$date": "2021-02-12T06:35:47.000Z" + }, + "events": [ + { + "uuid": "4da3c90f-a54b-4878-9829-743c894d5439", + "start": { + "$date": "2021-02-12T04:50:17.000Z" + }, + "end": { + "$date": "2021-02-12T06:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1dc0e64b-eee7-4714-8352-53ea8676e376", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T05:15:35.000Z" + }, + "end": { + "$date": "2021-02-12T05:39:10.000Z" + }, + "events": [ + { + "uuid": "020cc22d-04e0-4d19-8f8a-93322275f962", + "start": { + "$date": "2021-02-12T05:15:35.000Z" + }, + "end": { + "$date": "2021-02-12T05:39:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d84fac56-6cc6-4174-b74c-3fdee9769463", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T05:44:35.000Z" + }, + "end": { + "$date": "2021-02-12T06:00:19.000Z" + }, + "events": [ + { + "uuid": "152cfd87-4d41-4bef-9e23-7da4f3e8f527", + "start": { + "$date": "2021-02-12T05:44:35.000Z" + }, + "end": { + "$date": "2021-02-12T06:00:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e4b27d0-cc25-4d5d-a046-508863598d94", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-12T05:00:14.000Z" + }, + "end": { + "$date": "2021-02-12T05:30:15.000Z" + }, + "events": [ + { + "uuid": "f20c26b7-7ac5-4d92-b970-ffd579caf822", + "start": { + "$date": "2021-02-12T05:00:14.000Z" + }, + "end": { + "$date": "2021-02-12T05:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f04bd70-10bd-47dd-b616-d958eece53c7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-12T05:16:10.000Z" + }, + "end": { + "$date": "2021-02-12T05:39:02.000Z" + }, + "events": [ + { + "uuid": "266e72f8-b7fe-4c27-8d04-d7c939664a69", + "start": { + "$date": "2021-02-12T05:16:10.000Z" + }, + "end": { + "$date": "2021-02-12T05:39:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b8d7496-f7fe-414a-96b5-7c62d1a09dff", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-12T05:36:30.000Z" + }, + "end": { + "$date": "2021-02-12T06:09:50.000Z" + }, + "events": [ + { + "uuid": "6dd5f130-a5b4-43c6-b5a2-fa0fdecb7739", + "start": { + "$date": "2021-02-12T05:36:30.000Z" + }, + "end": { + "$date": "2021-02-12T06:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30999281-5f5f-48ed-b61d-7244f2d0780e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T05:41:26.000Z" + }, + "end": { + "$date": "2021-02-12T06:06:04.000Z" + }, + "events": [ + { + "uuid": "01690f6c-acf8-48f5-abdb-26cba1fd1814", + "start": { + "$date": "2021-02-12T05:41:26.000Z" + }, + "end": { + "$date": "2021-02-12T06:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67ea76c8-6323-4982-92ed-57bd5c1ae33d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-12T05:42:27.000Z" + }, + "end": { + "$date": "2021-02-12T06:05:59.000Z" + }, + "events": [ + { + "uuid": "c3116787-869c-4347-816a-5a656b9b6ad1", + "start": { + "$date": "2021-02-12T05:42:27.000Z" + }, + "end": { + "$date": "2021-02-12T06:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3aa1f434-4880-44eb-a2df-721c9fac21ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T06:00:35.000Z" + }, + "end": { + "$date": "2021-02-12T07:40:32.000Z" + }, + "events": [ + { + "uuid": "8cc0dc4f-8a67-4f94-a9fb-95c5f1aa9c1f", + "start": { + "$date": "2021-02-12T06:00:35.000Z" + }, + "end": { + "$date": "2021-02-12T07:40:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "681a12cf-f017-4248-bc81-012f8354190d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-12T14:09:12.000Z" + }, + "end": { + "$date": "2021-02-12T14:53:22.000Z" + }, + "events": [ + { + "uuid": "64c3cec7-1b62-41b3-a841-eb91a10ce96a", + "start": { + "$date": "2021-02-12T14:09:12.000Z" + }, + "end": { + "$date": "2021-02-12T14:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "01ad2063-abba-476a-8282-ccd7f6982efb", + "uuid": "549b4ef3-5edf-48a4-b668-21cfba323c36", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T15:08:39.000Z" + }, + "end": { + "$date": "2021-02-12T15:23:34.000Z" + }, + "events": [ + { + "uuid": "4d1839df-f69f-4d06-bb15-d91a17a0101a", + "start": { + "$date": "2021-02-12T15:08:39.000Z" + }, + "end": { + "$date": "2021-02-12T15:23:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "184a4c92-209c-4025-b08b-adee59ccf358", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T15:23:59.000Z" + }, + "end": { + "$date": "2021-02-12T15:57:30.000Z" + }, + "events": [ + { + "uuid": "e0e7481e-af66-49d0-86d2-7f0e44acd0aa", + "start": { + "$date": "2021-02-12T15:23:59.000Z" + }, + "end": { + "$date": "2021-02-12T15:57:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73f2fe57-1983-4a79-938e-dc7ef4ea8f42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T15:50:51.000Z" + }, + "end": { + "$date": "2021-02-12T16:22:25.000Z" + }, + "events": [ + { + "uuid": "8c6d2358-30fa-4d85-8b05-c1c751f6e182", + "start": { + "$date": "2021-02-12T15:50:51.000Z" + }, + "end": { + "$date": "2021-02-12T16:22:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "448eecdc-168b-44d4-afd9-cec6a1d58f0c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T15:58:00.000Z" + }, + "end": { + "$date": "2021-02-12T16:08:11.000Z" + }, + "events": [ + { + "uuid": "181ee82c-bba9-42c7-a0ac-3366120c6086", + "start": { + "$date": "2021-02-12T15:58:00.000Z" + }, + "end": { + "$date": "2021-02-12T16:08:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "251beab4-5e92-4dfd-af46-a671dd902b49", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T16:11:51.000Z" + }, + "end": { + "$date": "2021-02-12T16:33:12.000Z" + }, + "events": [ + { + "uuid": "651f6824-a14c-41fa-8cf2-1b502116f75e", + "start": { + "$date": "2021-02-12T16:11:51.000Z" + }, + "end": { + "$date": "2021-02-12T16:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c1cfa6d-e539-435f-9986-18741899e166", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T16:23:16.000Z" + }, + "end": { + "$date": "2021-02-12T16:59:05.000Z" + }, + "events": [ + { + "uuid": "7a46ca6d-2949-48f3-9b65-f1f381e3cc8d", + "start": { + "$date": "2021-02-12T16:23:16.000Z" + }, + "end": { + "$date": "2021-02-12T16:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9bb14e21-509c-437c-a67a-7b27d44d9d7b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T16:34:07.000Z" + }, + "end": { + "$date": "2021-02-12T17:30:58.000Z" + }, + "events": [ + { + "uuid": "6278387a-d5c8-4238-8e13-94870c818f71", + "start": { + "$date": "2021-02-12T16:34:07.000Z" + }, + "end": { + "$date": "2021-02-12T17:30:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4a46293e-6c56-40e8-9e8a-3926361f817b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T17:31:08.000Z" + }, + "end": { + "$date": "2021-02-12T17:43:29.000Z" + }, + "events": [ + { + "uuid": "65659726-f7c3-488d-9449-1eb024cc1b7e", + "start": { + "$date": "2021-02-12T17:31:08.000Z" + }, + "end": { + "$date": "2021-02-12T17:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "1359637b-324c-4391-98ad-3ca348a88f0a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T17:41:15.000Z" + }, + "end": { + "$date": "2021-02-12T17:47:26.000Z" + }, + "events": [ + { + "uuid": "3ad8b112-4444-4e84-87bb-4c481057e3df", + "start": { + "$date": "2021-02-12T17:41:15.000Z" + }, + "end": { + "$date": "2021-02-12T17:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "564ce8bd-fe1a-4cba-8d86-8527aa292be1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-12T17:42:31.000Z" + }, + "end": { + "$date": "2021-02-12T17:57:06.000Z" + }, + "events": [ + { + "uuid": "53f4de98-70f1-45f8-a3c3-4469747c1af7", + "start": { + "$date": "2021-02-12T17:42:31.000Z" + }, + "end": { + "$date": "2021-02-12T17:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "5b604042-5762-4d05-9ec3-4730983ac019", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T17:57:11.000Z" + }, + "end": { + "$date": "2021-02-12T18:13:23.000Z" + }, + "events": [ + { + "uuid": "72a067f7-68b7-4764-8c71-bc3ef5f4585a", + "start": { + "$date": "2021-02-12T17:57:11.000Z" + }, + "end": { + "$date": "2021-02-12T18:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "053dea26-b952-4c85-90ba-022d7c61c8fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T18:19:53.000Z" + }, + "end": { + "$date": "2021-02-12T19:01:23.000Z" + }, + "events": [ + { + "uuid": "2c7356e7-5aec-4f20-9df0-69e4afd187ae", + "start": { + "$date": "2021-02-12T18:19:53.000Z" + }, + "end": { + "$date": "2021-02-12T19:01:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b2d0c7f-9575-4620-8d8d-32cfb499fbfe", + "uuid": "b4898397-60b4-4f12-9801-e5b2580e6393", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T18:33:05.000Z" + }, + "end": { + "$date": "2021-02-12T19:02:50.000Z" + }, + "events": [ + { + "uuid": "8651887b-6554-455f-846d-406ea858698a", + "start": { + "$date": "2021-02-12T18:33:05.000Z" + }, + "end": { + "$date": "2021-02-12T19:02:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b2d0c7f-9575-4620-8d8d-32cfb499fbfe", + "uuid": "de339e4b-f141-4476-a418-ca8d107826e7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T19:02:55.000Z" + }, + "end": { + "$date": "2021-02-12T19:18:42.000Z" + }, + "events": [ + { + "uuid": "e6547ae0-60cf-4cb8-8171-73566b18c516", + "start": { + "$date": "2021-02-12T19:02:55.000Z" + }, + "end": { + "$date": "2021-02-12T19:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b372e881-2233-40fe-96c2-0dc10fd9bb30", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T19:19:07.000Z" + }, + "end": { + "$date": "2021-02-12T19:49:58.000Z" + }, + "events": [ + { + "uuid": "2ebd6d26-bdb5-4f4f-a508-c6a9d3cafcd7", + "start": { + "$date": "2021-02-12T19:19:07.000Z" + }, + "end": { + "$date": "2021-02-12T19:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c63c1d67-33ab-435b-801e-2a54d6b422cf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-12T19:39:44.000Z" + }, + "end": { + "$date": "2021-02-12T22:56:54.000Z" + }, + "events": [ + { + "uuid": "3885ffb8-83d6-4a2f-8742-831581e02755", + "start": { + "$date": "2021-02-12T19:39:44.000Z" + }, + "end": { + "$date": "2021-02-12T22:56:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "52ff1432-98cf-4a61-8407-1eb5265cd5ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-12T20:40:21.000Z" + }, + "end": { + "$date": "2021-02-12T22:25:26.000Z" + }, + "events": [ + { + "uuid": "bddd9693-e6c9-4a95-adc2-ccefc5628585", + "start": { + "$date": "2021-02-12T20:40:21.000Z" + }, + "end": { + "$date": "2021-02-12T22:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ea37112-d125-465e-ab36-4a149c158f1b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-12T20:52:04.000Z" + }, + "end": { + "$date": "2021-02-12T21:27:31.000Z" + }, + "events": [ + { + "uuid": "e3a76749-aa55-4c24-a318-53cf1dcd43bf", + "start": { + "$date": "2021-02-12T20:52:04.000Z" + }, + "end": { + "$date": "2021-02-12T21:27:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c1b061b5-45bd-4307-b6cc-d25ca714c67c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-12T21:13:29.000Z" + }, + "end": { + "$date": "2021-02-12T22:26:23.000Z" + }, + "events": [ + { + "uuid": "6fa0a65c-bce0-4b8a-b521-31d9dc3f3ee0", + "start": { + "$date": "2021-02-12T21:13:29.000Z" + }, + "end": { + "$date": "2021-02-12T22:26:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cfa19ae-6880-4e47-b692-54293e904a0a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-12T21:27:31.000Z" + }, + "end": { + "$date": "2021-02-12T23:27:26.000Z" + }, + "events": [ + { + "uuid": "9cbb4bbe-e2c6-49a0-b1b9-07df0103b895", + "start": { + "$date": "2021-02-12T21:27:31.000Z" + }, + "end": { + "$date": "2021-02-12T21:51:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a39c5fe8-2150-4dfd-b22e-d4201831cb3d", + "start": { + "$date": "2021-02-12T21:51:31.000Z" + }, + "end": { + "$date": "2021-02-12T21:56:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6bb32569-33e0-433f-be67-e3a3dec599a5", + "start": { + "$date": "2021-02-12T21:56:31.000Z" + }, + "end": { + "$date": "2021-02-12T22:01:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67c6b33d-2f0e-4c11-83d0-5e91f57ec91a", + "start": { + "$date": "2021-02-12T22:01:31.000Z" + }, + "end": { + "$date": "2021-02-12T22:02:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4b2907f-f502-4d32-882f-12baae3786a2", + "start": { + "$date": "2021-02-12T22:02:31.000Z" + }, + "end": { + "$date": "2021-02-12T22:13:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69f73b48-9526-425f-b5b6-5ba230f95829", + "start": { + "$date": "2021-02-12T22:13:31.000Z" + }, + "end": { + "$date": "2021-02-12T22:45:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69770949-44e1-4608-b724-ecc141dae4e0", + "start": { + "$date": "2021-02-12T22:45:31.000Z" + }, + "end": { + "$date": "2021-02-12T23:27:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "871da9b5-ac41-4f7f-b329-7b7a1ec0eb99", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T22:38:32.000Z" + }, + "end": { + "$date": "2021-02-12T23:19:38.000Z" + }, + "events": [ + { + "uuid": "3ae08a9b-b1fa-4ee6-8b38-cfd243bac9d4", + "start": { + "$date": "2021-02-12T22:38:32.000Z" + }, + "end": { + "$date": "2021-02-12T23:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "18174b36-d9ee-45e5-9b5b-4197a35b6d31", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-12T23:05:30.000Z" + }, + "end": { + "$date": "2021-02-13T01:45:15.000Z" + }, + "events": [ + { + "uuid": "9286a135-d236-4fba-8498-9359336809dc", + "start": { + "$date": "2021-02-12T23:05:30.000Z" + }, + "end": { + "$date": "2021-02-13T01:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b726eb40-cf6c-46ce-b0f0-5413f248a93b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T23:32:55.000Z" + }, + "end": { + "$date": "2021-02-12T23:50:36.000Z" + }, + "events": [ + { + "uuid": "aec579f1-c6d3-4f80-891b-d3e4bd62927e", + "start": { + "$date": "2021-02-12T23:32:55.000Z" + }, + "end": { + "$date": "2021-02-12T23:50:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e07e0e10-e618-4aca-9203-80faadbcfb2a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-12T23:32:47.000Z" + }, + "end": { + "$date": "2021-02-12T23:50:33.000Z" + }, + "events": [ + { + "uuid": "7efd4d1c-62a5-4f40-a020-7478c3d54cad", + "start": { + "$date": "2021-02-12T23:32:47.000Z" + }, + "end": { + "$date": "2021-02-12T23:50:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b83e4a7c-e15b-4231-83f5-409407eabf3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-12T23:55:30.000Z" + }, + "end": { + "$date": "2021-02-13T00:14:41.000Z" + }, + "events": [ + { + "uuid": "ab8199f1-7c10-415f-bf16-3e45ceff61c4", + "start": { + "$date": "2021-02-12T23:55:30.000Z" + }, + "end": { + "$date": "2021-02-13T00:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afa57b71-7251-496c-b400-2e5665e56833", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-12T23:55:53.000Z" + }, + "end": { + "$date": "2021-02-13T00:14:39.000Z" + }, + "events": [ + { + "uuid": "10fe428d-b267-4309-a72e-e5a8570223c6", + "start": { + "$date": "2021-02-12T23:55:53.000Z" + }, + "end": { + "$date": "2021-02-13T00:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "652a0948-3221-4c18-b685-dfa33ff471d0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T00:50:20.000Z" + }, + "end": { + "$date": "2021-02-13T01:12:51.000Z" + }, + "events": [ + { + "uuid": "7009480e-2028-43db-8ccf-2ad33a69190c", + "start": { + "$date": "2021-02-13T00:50:20.000Z" + }, + "end": { + "$date": "2021-02-13T01:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "74bf84a1-cabc-4d07-88b3-71e87be30828", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T00:54:42.000Z" + }, + "end": { + "$date": "2021-02-13T01:30:13.000Z" + }, + "events": [ + { + "uuid": "5a01e903-db8b-4ecf-b566-086ff61d7627", + "start": { + "$date": "2021-02-13T00:54:42.000Z" + }, + "end": { + "$date": "2021-02-13T01:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c24d5b85-7735-4acc-95a6-f65e6c93f13e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T01:14:53.000Z" + }, + "end": { + "$date": "2021-02-13T01:52:40.000Z" + }, + "events": [ + { + "uuid": "7f27a20d-3f72-4a10-8ac8-57c9f54e6ca8", + "start": { + "$date": "2021-02-13T01:14:53.000Z" + }, + "end": { + "$date": "2021-02-13T01:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba99b2ed-1c93-4a32-a99a-610622cc96fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T01:14:53.000Z" + }, + "end": { + "$date": "2021-02-13T01:54:04.000Z" + }, + "events": [ + { + "uuid": "a9975e48-5f8b-4507-936f-daa4cdc6e56c", + "start": { + "$date": "2021-02-13T01:14:53.000Z" + }, + "end": { + "$date": "2021-02-13T01:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2cacb24d-5aa8-4286-859d-7129c628325c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T01:23:34.000Z" + }, + "end": { + "$date": "2021-02-13T03:50:25.000Z" + }, + "events": [ + { + "uuid": "733ab21f-70cf-4feb-afe4-4453243a5b51", + "start": { + "$date": "2021-02-13T01:23:34.000Z" + }, + "end": { + "$date": "2021-02-13T03:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7f2d3b8d-508e-439e-9f18-b42898fdf518", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T01:46:00.000Z" + }, + "end": { + "$date": "2021-02-13T01:56:46.000Z" + }, + "events": [ + { + "uuid": "38bd86e6-baae-4f7e-a68a-0911d8a50923", + "start": { + "$date": "2021-02-13T01:46:00.000Z" + }, + "end": { + "$date": "2021-02-13T01:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "224b1100-d78d-480f-abf8-b0411f1f8da6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T01:55:12.000Z" + }, + "end": { + "$date": "2021-02-13T02:26:59.000Z" + }, + "events": [ + { + "uuid": "6cce31cb-6457-41c6-8ac1-f58d04d00893", + "start": { + "$date": "2021-02-13T01:55:12.000Z" + }, + "end": { + "$date": "2021-02-13T02:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee7fba55-29cd-47fb-a4a0-4c9f829584b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T01:55:56.000Z" + }, + "end": { + "$date": "2021-02-13T02:34:32.000Z" + }, + "events": [ + { + "uuid": "92a664ae-fa90-404e-ac88-ee25b3c07bcb", + "start": { + "$date": "2021-02-13T01:55:56.000Z" + }, + "end": { + "$date": "2021-02-13T02:34:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e661895-bb32-4d16-99fa-129a8561ce40", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T01:55:14.000Z" + }, + "end": { + "$date": "2021-02-13T02:34:30.000Z" + }, + "events": [ + { + "uuid": "ab450583-dada-4fc1-8309-7885fa7fad42", + "start": { + "$date": "2021-02-13T01:55:14.000Z" + }, + "end": { + "$date": "2021-02-13T02:34:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "890ae2a1-2abd-48ea-a5fc-eeb6b4a2c648", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T02:39:21.000Z" + }, + "end": { + "$date": "2021-02-13T02:57:27.000Z" + }, + "events": [ + { + "uuid": "552fba1b-60a0-4a70-be78-920c39384ea8", + "start": { + "$date": "2021-02-13T02:39:21.000Z" + }, + "end": { + "$date": "2021-02-13T02:57:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a168c4c0-8904-40a5-9fa2-b242f4f4623e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T02:39:18.000Z" + }, + "end": { + "$date": "2021-02-13T02:57:23.000Z" + }, + "events": [ + { + "uuid": "bf687668-1bb0-46cb-b566-74c9feac65ba", + "start": { + "$date": "2021-02-13T02:39:18.000Z" + }, + "end": { + "$date": "2021-02-13T02:57:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0e39e45-72cb-4acf-8bf7-3b10e86f9973", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T02:39:21.000Z" + }, + "end": { + "$date": "2021-02-13T02:57:32.000Z" + }, + "events": [ + { + "uuid": "a791640e-fd38-4e45-a307-9f66445d1f97", + "start": { + "$date": "2021-02-13T02:39:21.000Z" + }, + "end": { + "$date": "2021-02-13T02:57:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "37d97150-f39d-425f-88cd-f774057a806c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-13T02:41:08.000Z" + }, + "end": { + "$date": "2021-02-13T03:59:15.000Z" + }, + "events": [ + { + "uuid": "574774a9-ef6a-447a-8c60-9240a53d90a7", + "start": { + "$date": "2021-02-13T02:41:08.000Z" + }, + "end": { + "$date": "2021-02-13T03:59:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e1102729-2f7f-4f3f-9a1f-4954eff5b232", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T02:41:20.000Z" + }, + "end": { + "$date": "2021-02-13T02:44:30.000Z" + }, + "events": [ + { + "uuid": "d63f8ddc-72e6-4fdd-9eba-7c7f68363dec", + "start": { + "$date": "2021-02-13T02:41:20.000Z" + }, + "end": { + "$date": "2021-02-13T02:44:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a92ad32-fcc1-44dc-9953-aeaf28c61461", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T02:45:57.000Z" + }, + "end": { + "$date": "2021-02-13T04:00:19.000Z" + }, + "events": [ + { + "uuid": "2d0a8662-7d45-4c8c-a39b-58ef9f18bfe8", + "start": { + "$date": "2021-02-13T02:45:57.000Z" + }, + "end": { + "$date": "2021-02-13T04:00:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72c70453-1f09-4309-adb4-cedba201be80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T02:59:47.000Z" + }, + "end": { + "$date": "2021-02-13T03:21:39.000Z" + }, + "events": [ + { + "uuid": "77da7ee9-8f58-4b39-ab22-56f193557763", + "start": { + "$date": "2021-02-13T02:59:47.000Z" + }, + "end": { + "$date": "2021-02-13T03:21:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec34abce-ac3d-41c2-b985-3386ed44eaf8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T02:59:47.000Z" + }, + "end": { + "$date": "2021-02-13T03:21:33.000Z" + }, + "events": [ + { + "uuid": "24e42feb-b87d-4d01-b845-da571a17e8f5", + "start": { + "$date": "2021-02-13T02:59:47.000Z" + }, + "end": { + "$date": "2021-02-13T03:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6334e8a9-c065-46ce-9501-22eb47e977c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T03:00:43.000Z" + }, + "end": { + "$date": "2021-02-13T03:21:33.000Z" + }, + "events": [ + { + "uuid": "afeb9d15-2649-4be3-9d17-4a375e613fe4", + "start": { + "$date": "2021-02-13T03:00:43.000Z" + }, + "end": { + "$date": "2021-02-13T03:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b2cbc27-33f2-4c62-9b04-278e10317806", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T03:23:58.000Z" + }, + "end": { + "$date": "2021-02-13T03:43:53.000Z" + }, + "events": [ + { + "uuid": "cecc82ae-66be-4e56-8c9f-22498d7c72e9", + "start": { + "$date": "2021-02-13T03:23:58.000Z" + }, + "end": { + "$date": "2021-02-13T03:43:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70f56350-f4b4-43f9-8cf1-8aa4a42d510c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T03:24:33.000Z" + }, + "end": { + "$date": "2021-02-13T03:43:48.000Z" + }, + "events": [ + { + "uuid": "3ff03acf-76bb-4aaf-922d-9c85987f7bbb", + "start": { + "$date": "2021-02-13T03:24:33.000Z" + }, + "end": { + "$date": "2021-02-13T03:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "068465c8-287c-4268-9443-3f87d226caf8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T03:23:58.000Z" + }, + "end": { + "$date": "2021-02-13T03:43:49.000Z" + }, + "events": [ + { + "uuid": "f4a014b5-1f2d-4173-81b7-b1390bd62de1", + "start": { + "$date": "2021-02-13T03:23:58.000Z" + }, + "end": { + "$date": "2021-02-13T03:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fce4df6a-cf2c-4f9e-a8a4-e3d2d41f499c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T03:37:02.000Z" + }, + "end": { + "$date": "2021-02-13T04:39:53.000Z" + }, + "events": [ + { + "uuid": "5976b5a7-45f9-4785-91f4-94b714e30aec", + "start": { + "$date": "2021-02-13T03:37:02.000Z" + }, + "end": { + "$date": "2021-02-13T04:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2fa5428-db60-4f97-8076-035759eae186", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T04:49:54.000Z" + }, + "end": { + "$date": "2021-02-13T05:25:52.000Z" + }, + "events": [ + { + "uuid": "8dcc1912-8e2e-4ae1-a9f4-53223f532338", + "start": { + "$date": "2021-02-13T04:49:54.000Z" + }, + "end": { + "$date": "2021-02-13T05:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2db44aac-47bf-40f3-a342-1b3e387ba05d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T04:04:16.000Z" + }, + "end": { + "$date": "2021-02-13T04:34:02.000Z" + }, + "events": [ + { + "uuid": "90ffe548-d62a-4b2d-a148-5201b7c50f04", + "start": { + "$date": "2021-02-13T04:04:16.000Z" + }, + "end": { + "$date": "2021-02-13T04:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "42d71e51-310a-4d8f-9604-58821a1ef9a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T04:40:03.000Z" + }, + "end": { + "$date": "2021-02-13T05:19:24.000Z" + }, + "events": [ + { + "uuid": "6da9e1c5-1996-40d2-a43f-a90dbddd295c", + "start": { + "$date": "2021-02-13T04:40:03.000Z" + }, + "end": { + "$date": "2021-02-13T05:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b26d5b20-5f9b-4e44-bd09-1d446e95b4cf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-13T04:40:42.000Z" + }, + "end": { + "$date": "2021-02-13T05:22:08.000Z" + }, + "events": [ + { + "uuid": "2cd8a256-5ca9-4e2e-968c-6f8029941ca0", + "start": { + "$date": "2021-02-13T04:40:42.000Z" + }, + "end": { + "$date": "2021-02-13T05:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e62f6d63-8958-41d4-adf5-d6a78c6018a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T04:50:39.000Z" + }, + "end": { + "$date": "2021-02-13T05:25:47.000Z" + }, + "events": [ + { + "uuid": "ee03cfc8-8b30-4239-ba37-4254ee3c89e2", + "start": { + "$date": "2021-02-13T04:50:39.000Z" + }, + "end": { + "$date": "2021-02-13T05:25:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "073d92bf-0286-4f9d-b923-647a2e950250", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T05:41:38.000Z" + }, + "end": { + "$date": "2021-02-13T06:00:03.000Z" + }, + "events": [ + { + "uuid": "bd72c275-ecc1-4387-b9b2-fe65bc7f66d5", + "start": { + "$date": "2021-02-13T05:41:38.000Z" + }, + "end": { + "$date": "2021-02-13T06:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "535240c4-c14d-41f8-b650-2bfe8efa55d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T05:37:44.000Z" + }, + "end": { + "$date": "2021-02-13T07:33:58.000Z" + }, + "events": [ + { + "uuid": "7bf1d0ae-53a9-48e2-85a9-9061d637de13", + "start": { + "$date": "2021-02-13T05:37:44.000Z" + }, + "end": { + "$date": "2021-02-13T07:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b35a0052-3dd2-4fd2-9beb-8f4f719a9091", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T05:42:13.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:46.000Z" + }, + "events": [ + { + "uuid": "84d7431e-334f-430b-b409-54d68ff2d319", + "start": { + "$date": "2021-02-13T05:42:13.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd559124-85e2-4c5c-884f-c57a03cc6e2a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T05:41:34.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:44.000Z" + }, + "events": [ + { + "uuid": "9b04ccd5-2958-4635-889d-b7410114d01e", + "start": { + "$date": "2021-02-13T05:41:34.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "282d0aa1-1447-47fb-84bc-091caa1afd02", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T05:41:52.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:44.000Z" + }, + "events": [ + { + "uuid": "51a22a26-abec-4ef5-a404-3500111e899b", + "start": { + "$date": "2021-02-13T05:41:52.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "374bd4ab-9e1c-4cae-8ba9-eea5269dac55", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-13T05:41:35.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:50.000Z" + }, + "events": [ + { + "uuid": "9cc96b58-5252-43f1-bdb8-d2413fe52004", + "start": { + "$date": "2021-02-13T05:41:35.000Z" + }, + "end": { + "$date": "2021-02-13T05:59:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43ad2248-dc97-4d92-8759-502c9edb0ce0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T06:06:24.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:05.000Z" + }, + "events": [ + { + "uuid": "aa689cee-eacb-4365-b43d-a68080eb052a", + "start": { + "$date": "2021-02-13T06:06:24.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc143704-669e-4d45-a22d-5abe26af013c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T06:07:57.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:02.000Z" + }, + "events": [ + { + "uuid": "df49ff55-4633-4a32-84ef-38cfbeaee019", + "start": { + "$date": "2021-02-13T06:07:57.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f4819e8-1082-4a1f-9c5c-fd32dc61a391", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-13T06:06:25.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:10.000Z" + }, + "events": [ + { + "uuid": "f8335167-679c-4fe0-9af1-8a90ce7d5c47", + "start": { + "$date": "2021-02-13T06:06:25.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adea1972-dbde-40c8-a6da-72c6c494dbb4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T06:07:18.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:05.000Z" + }, + "events": [ + { + "uuid": "f7f4ce2e-16e0-4d86-a529-189caac022d9", + "start": { + "$date": "2021-02-13T06:07:18.000Z" + }, + "end": { + "$date": "2021-02-13T06:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a2cd762-f25e-472d-8ad4-b181804d19bf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T06:26:23.000Z" + }, + "end": { + "$date": "2021-02-13T06:27:44.000Z" + }, + "events": [ + { + "uuid": "dc0ac7e6-371f-423a-97f3-b1538ccd3e9d", + "start": { + "$date": "2021-02-13T06:26:23.000Z" + }, + "end": { + "$date": "2021-02-13T06:27:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78beb5ab-31da-4723-af66-37ad9ed24089", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T06:30:53.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:20.000Z" + }, + "events": [ + { + "uuid": "1fa581e4-4050-4181-a7de-79d362bca16f", + "start": { + "$date": "2021-02-13T06:30:53.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dae0b8c0-af93-41be-a84c-549eb5a54024", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T06:31:13.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:23.000Z" + }, + "events": [ + { + "uuid": "15480c90-163d-43aa-b848-de82952899f9", + "start": { + "$date": "2021-02-13T06:31:13.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e975457-b3f9-4648-ba22-25c89c0c2c83", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T06:30:46.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:27.000Z" + }, + "events": [ + { + "uuid": "e1c0ed1c-7070-4ea2-91cf-2566ac83ae2a", + "start": { + "$date": "2021-02-13T06:30:46.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4341d7a6-06da-4132-be1b-8b5b1df5401e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-13T06:30:46.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:26.000Z" + }, + "events": [ + { + "uuid": "1b0898d8-d5e6-4ab5-abda-92285ac03650", + "start": { + "$date": "2021-02-13T06:30:46.000Z" + }, + "end": { + "$date": "2021-02-13T06:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80d1c651-a256-468e-99f0-e831c396fe3d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T06:51:04.000Z" + }, + "end": { + "$date": "2021-02-13T06:52:05.000Z" + }, + "events": [ + { + "uuid": "225e5d7f-7046-45c6-ac76-286614d3387f", + "start": { + "$date": "2021-02-13T06:51:04.000Z" + }, + "end": { + "$date": "2021-02-13T06:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "854325b7-484f-4826-9080-7cd75f199403", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T06:56:24.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:57.000Z" + }, + "events": [ + { + "uuid": "e36a8a21-949b-4e34-a9e7-80b1f65ef1c9", + "start": { + "$date": "2021-02-13T06:56:24.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cb2cd99-e02d-4379-b4be-af971694dabf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T06:56:49.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:49.000Z" + }, + "events": [ + { + "uuid": "fc1c4349-f558-4d32-a698-38cafeab7e85", + "start": { + "$date": "2021-02-13T06:56:49.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fefa1923-8017-4482-b3dc-1003a9b91384", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T06:56:28.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:54.000Z" + }, + "events": [ + { + "uuid": "229a720f-eb1f-4dc8-8076-6286d6994c6d", + "start": { + "$date": "2021-02-13T06:56:28.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e927fdd-93f7-46d5-9296-cfbb6e7639ef", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-13T06:56:27.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:57.000Z" + }, + "events": [ + { + "uuid": "3ef040db-90d4-43ad-b918-ce84fc60c59b", + "start": { + "$date": "2021-02-13T06:56:27.000Z" + }, + "end": { + "$date": "2021-02-13T07:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "4ea54bba-b20b-4372-a0ae-f1567b572183", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T06:55:47.000Z" + }, + "end": { + "$date": "2021-02-13T08:03:12.000Z" + }, + "events": [ + { + "uuid": "82e804ad-133f-47ec-80ff-5497dfde40a8", + "start": { + "$date": "2021-02-13T06:55:47.000Z" + }, + "end": { + "$date": "2021-02-13T08:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "b53266f3-d15e-40fe-ba6b-d5adf619232a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T07:00:14.000Z" + }, + "end": { + "$date": "2021-02-13T07:02:04.000Z" + }, + "events": [ + { + "uuid": "953ee21e-e3ea-4dd9-9f87-508e63c3c4eb", + "start": { + "$date": "2021-02-13T07:00:14.000Z" + }, + "end": { + "$date": "2021-02-13T07:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", + "uuid": "f680c496-4aeb-4ed5-b244-37882277609a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T07:02:14.000Z" + }, + "end": { + "$date": "2021-02-13T08:04:21.000Z" + }, + "events": [ + { + "uuid": "ec77a061-817d-4f94-99a8-ac7a82aa6864", + "start": { + "$date": "2021-02-13T07:02:14.000Z" + }, + "end": { + "$date": "2021-02-13T08:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b343cc22-79b4-43b5-8a6e-497f9c7323b3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T07:24:20.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:55.000Z" + }, + "events": [ + { + "uuid": "c1a045dc-22bd-43ff-9279-5fafc6a53cfd", + "start": { + "$date": "2021-02-13T07:24:20.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15003b58-cef3-4422-adc9-5585ac41dfdf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T07:24:20.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:55.000Z" + }, + "events": [ + { + "uuid": "6b8bb273-5f5a-4864-9bfa-d1b2254f0de9", + "start": { + "$date": "2021-02-13T07:24:20.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73a7d0d3-2141-4de3-8652-5500934f296e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T07:24:20.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:52.000Z" + }, + "events": [ + { + "uuid": "92694a78-0211-44cd-b6d3-98ee8a61dc72", + "start": { + "$date": "2021-02-13T07:24:20.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd1757fc-2d5f-4781-b701-f3bdbd8959ca", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-13T07:24:22.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:53.000Z" + }, + "events": [ + { + "uuid": "ae046d07-2877-4d54-858f-e2cd706fb2dc", + "start": { + "$date": "2021-02-13T07:24:22.000Z" + }, + "end": { + "$date": "2021-02-13T07:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bbbdbde-5842-4c7f-8470-f9178ab78874", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T08:36:47.000Z" + }, + "end": { + "$date": "2021-02-13T08:59:46.000Z" + }, + "events": [ + { + "uuid": "8d07d956-5de5-4e83-952f-069322247f78", + "start": { + "$date": "2021-02-13T08:36:47.000Z" + }, + "end": { + "$date": "2021-02-13T08:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2677a96f-c9cb-43ab-9da2-dfe965f877dc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T09:06:59.000Z" + }, + "end": { + "$date": "2021-02-13T09:41:11.000Z" + }, + "events": [ + { + "uuid": "531be920-b01b-4e60-9685-d8bfad4c7f6d", + "start": { + "$date": "2021-02-13T09:06:59.000Z" + }, + "end": { + "$date": "2021-02-13T09:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74063db2-a716-4755-93d8-8366ebc09df3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-13T09:51:46.000Z" + }, + "end": { + "$date": "2021-02-13T10:23:52.000Z" + }, + "events": [ + { + "uuid": "d3e14cb2-0f61-4299-aeb7-3a6706876042", + "start": { + "$date": "2021-02-13T09:51:46.000Z" + }, + "end": { + "$date": "2021-02-13T10:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "f0f74410-d4de-4743-8b9b-0a2eaed7c05b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T16:47:46.000Z" + }, + "end": { + "$date": "2021-02-13T17:47:32.000Z" + }, + "events": [ + { + "uuid": "2bbdac89-69e1-4cd9-804c-cf7f8e04c6a7", + "start": { + "$date": "2021-02-13T16:47:46.000Z" + }, + "end": { + "$date": "2021-02-13T17:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09e46601-510e-4738-b306-6c44c827b4ed", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T17:48:12.000Z" + }, + "end": { + "$date": "2021-02-13T18:39:53.000Z" + }, + "events": [ + { + "uuid": "7766dc27-1e70-4e77-a57e-d64ca2da6c57", + "start": { + "$date": "2021-02-13T17:48:12.000Z" + }, + "end": { + "$date": "2021-02-13T18:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "43beb117-be2c-4a46-a125-34423a0ed479", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T18:04:04.000Z" + }, + "end": { + "$date": "2021-02-13T18:29:24.000Z" + }, + "events": [ + { + "uuid": "08d04f5e-a7b9-42f9-a8fb-a6edf09d4134", + "start": { + "$date": "2021-02-13T18:04:04.000Z" + }, + "end": { + "$date": "2021-02-13T18:29:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e18e6a75-a991-4663-bbc8-1ad4e1a72e8c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T18:38:28.000Z" + }, + "end": { + "$date": "2021-02-13T20:58:29.000Z" + }, + "events": [ + { + "uuid": "3b1597c1-e7c8-4416-b91c-855827832724", + "start": { + "$date": "2021-02-13T18:38:28.000Z" + }, + "end": { + "$date": "2021-02-13T19:41:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "139243f7-9042-47ee-88fd-574ffcb30ebd", + "start": { + "$date": "2021-02-13T19:41:28.000Z" + }, + "end": { + "$date": "2021-02-13T19:46:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "25ba746e-69f6-4278-9242-40376b151638", + "start": { + "$date": "2021-02-13T19:46:28.000Z" + }, + "end": { + "$date": "2021-02-13T20:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "85a50f37-3506-4f29-ad4a-04291f6a2667", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T18:39:58.000Z" + }, + "end": { + "$date": "2021-02-13T18:56:09.000Z" + }, + "events": [ + { + "uuid": "5d72d0cf-42ba-4c06-8a0f-47cfa416446d", + "start": { + "$date": "2021-02-13T18:39:58.000Z" + }, + "end": { + "$date": "2021-02-13T18:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "95c60951-6b59-4476-a080-eaf2ed4cb700", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T19:30:56.000Z" + }, + "end": { + "$date": "2021-02-13T20:14:52.000Z" + }, + "events": [ + { + "uuid": "4e3c6a43-1856-4bba-b033-d4378ea5a5da", + "start": { + "$date": "2021-02-13T19:30:56.000Z" + }, + "end": { + "$date": "2021-02-13T20:14:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "251385b7-a481-4186-ba86-682d19c7eb84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T20:07:01.000Z" + }, + "end": { + "$date": "2021-02-13T20:33:46.000Z" + }, + "events": [ + { + "uuid": "87d52cba-6b4f-41ff-8818-56e9c6b46625", + "start": { + "$date": "2021-02-13T20:07:01.000Z" + }, + "end": { + "$date": "2021-02-13T20:33:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3959d5cc-cf3e-430e-8f0a-f6f8536a52dd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-13T20:15:23.000Z" + }, + "end": { + "$date": "2021-02-13T20:38:26.000Z" + }, + "events": [ + { + "uuid": "97d1132a-02ca-4336-8fb8-c10e22a05055", + "start": { + "$date": "2021-02-13T20:15:23.000Z" + }, + "end": { + "$date": "2021-02-13T20:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b0b4831d-69ec-49bc-aa87-c0a19a6c7aa8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T20:19:17.000Z" + }, + "end": { + "$date": "2021-02-13T20:58:20.000Z" + }, + "events": [ + { + "uuid": "ba3e060b-4829-4847-b4d7-f92c0ca91e9e", + "start": { + "$date": "2021-02-13T20:19:17.000Z" + }, + "end": { + "$date": "2021-02-13T20:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3fee0f69-806c-4800-9794-47e84d97e3ed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T21:02:17.000Z" + }, + "end": { + "$date": "2021-02-13T21:03:27.000Z" + }, + "events": [ + { + "uuid": "a43f02c2-8fa9-4357-8885-0fd0a584710b", + "start": { + "$date": "2021-02-13T21:02:17.000Z" + }, + "end": { + "$date": "2021-02-13T21:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9a772065-e769-45b3-ade6-88635da66571", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T21:03:43.000Z" + }, + "end": { + "$date": "2021-02-13T22:40:41.000Z" + }, + "events": [ + { + "uuid": "bb1ab210-7df2-4da0-919c-743f66286bd2", + "start": { + "$date": "2021-02-13T21:03:43.000Z" + }, + "end": { + "$date": "2021-02-13T22:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cae9724c-0a91-4771-a235-b24f6b197fea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T21:13:33.000Z" + }, + "end": { + "$date": "2021-02-13T21:40:15.000Z" + }, + "events": [ + { + "uuid": "e2866b26-ba87-4ea7-8f18-7b568d1d1b0a", + "start": { + "$date": "2021-02-13T21:13:33.000Z" + }, + "end": { + "$date": "2021-02-13T21:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf274910-25f7-413e-8f5a-cb4c4cf89b9e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T21:08:32.000Z" + }, + "end": { + "$date": "2021-02-13T21:10:10.000Z" + }, + "events": [ + { + "uuid": "8d194fdf-9cb7-4ee7-9c99-dcfdf441cf3f", + "start": { + "$date": "2021-02-13T21:08:32.000Z" + }, + "end": { + "$date": "2021-02-13T21:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "85cc1286-5e77-485d-9912-ea5c521ab6d9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-13T21:08:36.000Z" + }, + "end": { + "$date": "2021-02-13T21:42:42.000Z" + }, + "events": [ + { + "uuid": "f58aee56-b96a-46a5-af23-a13e4ec22209", + "start": { + "$date": "2021-02-13T21:08:36.000Z" + }, + "end": { + "$date": "2021-02-13T21:42:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2edf9b4-4147-4f55-a17c-a6e85aef6935", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T21:10:15.000Z" + }, + "end": { + "$date": "2021-02-13T21:11:35.000Z" + }, + "events": [ + { + "uuid": "b624c18c-6a91-468c-8ef4-004d383ef371", + "start": { + "$date": "2021-02-13T21:10:15.000Z" + }, + "end": { + "$date": "2021-02-13T21:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9fe7976-2ef7-4d7e-98ce-d85827d69c34", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T21:13:30.000Z" + }, + "end": { + "$date": "2021-02-13T21:42:28.000Z" + }, + "events": [ + { + "uuid": "10dba376-b909-4fdb-b585-242b88d63379", + "start": { + "$date": "2021-02-13T21:13:30.000Z" + }, + "end": { + "$date": "2021-02-13T21:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "92d0d64f-2f15-496e-b5d7-c3f8e46a279f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T21:24:01.000Z" + }, + "end": { + "$date": "2021-02-13T21:28:47.000Z" + }, + "events": [ + { + "uuid": "c41e6a3e-f6e8-4a78-8209-1d2cb1ad1a5d", + "start": { + "$date": "2021-02-13T21:24:01.000Z" + }, + "end": { + "$date": "2021-02-13T21:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a5a9fade-815c-40be-9adf-7dd9aed17371", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T21:28:57.000Z" + }, + "end": { + "$date": "2021-02-13T22:43:49.000Z" + }, + "events": [ + { + "uuid": "0873bed5-826f-4bdb-b6af-6efeaa70dc05", + "start": { + "$date": "2021-02-13T21:28:57.000Z" + }, + "end": { + "$date": "2021-02-13T22:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "375e2fac-eba2-4bfe-a30d-7219d11d3c22", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T21:50:57.000Z" + }, + "end": { + "$date": "2021-02-13T22:26:37.000Z" + }, + "events": [ + { + "uuid": "1a8a0052-a29d-4a9c-b8c0-c02a6b3cb423", + "start": { + "$date": "2021-02-13T21:50:57.000Z" + }, + "end": { + "$date": "2021-02-13T22:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ead3af97-2438-490f-bddb-bc90b49c6382", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T21:50:52.000Z" + }, + "end": { + "$date": "2021-02-13T22:26:28.000Z" + }, + "events": [ + { + "uuid": "8ee29c86-89e4-4220-9816-ff024479a798", + "start": { + "$date": "2021-02-13T21:50:52.000Z" + }, + "end": { + "$date": "2021-02-13T22:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2772143-b4e0-42e4-bb86-133dfbd8310b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-13T21:50:46.000Z" + }, + "end": { + "$date": "2021-02-13T22:27:55.000Z" + }, + "events": [ + { + "uuid": "36c25f8f-79f5-40ea-af0d-b255026ad1d5", + "start": { + "$date": "2021-02-13T21:50:46.000Z" + }, + "end": { + "$date": "2021-02-13T22:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "ab7ae9a0-0e6a-4c05-8183-313c7a027c0b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-13T22:02:23.000Z" + }, + "end": { + "$date": "2021-02-13T22:17:00.000Z" + }, + "events": [ + { + "uuid": "3273a7b0-87d7-49ac-9b70-96159d49d7eb", + "start": { + "$date": "2021-02-13T22:02:23.000Z" + }, + "end": { + "$date": "2021-02-13T22:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "e5de9a73-4f37-4a79-8865-d94cac95e3d9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-13T22:23:40.000Z" + }, + "end": { + "$date": "2021-02-14T03:45:10.000Z" + }, + "events": [ + { + "uuid": "ba4d35b6-22c0-4a42-b4ec-db9730ef0e5f", + "start": { + "$date": "2021-02-13T22:23:40.000Z" + }, + "end": { + "$date": "2021-02-14T03:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "8712ae79-856e-4d60-b2a2-d33e9df4dc5c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T22:30:13.000Z" + }, + "end": { + "$date": "2021-02-13T23:29:26.000Z" + }, + "events": [ + { + "uuid": "b0616ac2-e1a9-4001-846d-3ea98a0740ee", + "start": { + "$date": "2021-02-13T22:30:13.000Z" + }, + "end": { + "$date": "2021-02-13T23:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2152b373-8541-420e-9070-bd0a2868fc72", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T22:43:25.000Z" + }, + "end": { + "$date": "2021-02-13T23:05:50.000Z" + }, + "events": [ + { + "uuid": "d507cc9f-508e-4617-a30e-bb5db9d7a36b", + "start": { + "$date": "2021-02-13T22:43:25.000Z" + }, + "end": { + "$date": "2021-02-13T23:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9b7c930-7e27-4319-a913-7f4766198df1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-13T23:07:55.000Z" + }, + "end": { + "$date": "2021-02-13T23:25:40.000Z" + }, + "events": [ + { + "uuid": "dd2eef24-860c-4919-8535-180aee662dc0", + "start": { + "$date": "2021-02-13T23:07:55.000Z" + }, + "end": { + "$date": "2021-02-13T23:25:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5416862d-d491-455d-b77e-b2afc23932fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T23:11:16.000Z" + }, + "end": { + "$date": "2021-02-13T23:30:42.000Z" + }, + "events": [ + { + "uuid": "e3924f15-779b-4c38-bdc7-c9452dd078b6", + "start": { + "$date": "2021-02-13T23:11:16.000Z" + }, + "end": { + "$date": "2021-02-13T23:30:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cfe3ff26-562b-4e30-b7ab-08b036555c6f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-13T23:28:08.000Z" + }, + "end": { + "$date": "2021-02-13T23:31:18.000Z" + }, + "events": [ + { + "uuid": "27e440a1-edc1-41b7-8906-debfec8f6023", + "start": { + "$date": "2021-02-13T23:28:08.000Z" + }, + "end": { + "$date": "2021-02-13T23:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "77d21fec-4625-41a2-86ae-2a55cf65dc78", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T23:32:07.000Z" + }, + "end": { + "$date": "2021-02-13T23:53:17.000Z" + }, + "events": [ + { + "uuid": "ef5c2e31-d1f8-44f6-b0cd-855a80aec289", + "start": { + "$date": "2021-02-13T23:32:07.000Z" + }, + "end": { + "$date": "2021-02-13T23:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb48aff7-951f-4a56-b281-cebea3c6e03a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T23:39:21.000Z" + }, + "end": { + "$date": "2021-02-13T23:55:38.000Z" + }, + "events": [ + { + "uuid": "bb2a0e24-8d40-44ae-a2d1-a5219d45a794", + "start": { + "$date": "2021-02-13T23:39:21.000Z" + }, + "end": { + "$date": "2021-02-13T23:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f1847dca-e19f-46fb-825c-a1fdfc5670d0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-13T23:53:32.000Z" + }, + "end": { + "$date": "2021-02-14T00:07:52.000Z" + }, + "events": [ + { + "uuid": "aa51a51e-6e24-442a-a7fc-a00ed7a90ed4", + "start": { + "$date": "2021-02-13T23:53:32.000Z" + }, + "end": { + "$date": "2021-02-14T00:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17af7163-d838-4350-85c0-1988e4786191", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-13T23:58:08.000Z" + }, + "end": { + "$date": "2021-02-14T00:17:32.000Z" + }, + "events": [ + { + "uuid": "71753ead-443e-49cb-946c-45c22c41863b", + "start": { + "$date": "2021-02-13T23:58:08.000Z" + }, + "end": { + "$date": "2021-02-14T00:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "f0e5f146-c516-4573-a81d-7ae6d2d40a0b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-14T00:08:32.000Z" + }, + "end": { + "$date": "2021-02-14T01:30:09.000Z" + }, + "events": [ + { + "uuid": "229d281f-3da8-4e01-bf4b-52845cd40c20", + "start": { + "$date": "2021-02-14T00:08:32.000Z" + }, + "end": { + "$date": "2021-02-14T01:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "880ffa5c-be2d-4d53-ab1c-07142861df5f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-14T00:11:02.000Z" + }, + "end": { + "$date": "2021-02-14T01:35:09.000Z" + }, + "events": [ + { + "uuid": "24a3a606-282d-4520-8f10-b868fe0acad1", + "start": { + "$date": "2021-02-14T00:11:02.000Z" + }, + "end": { + "$date": "2021-02-14T01:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "806245bc-9394-4ecd-8429-37b655f38487", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T00:19:33.000Z" + }, + "end": { + "$date": "2021-02-14T00:44:50.000Z" + }, + "events": [ + { + "uuid": "80751411-20bf-4689-8760-6f2394cff631", + "start": { + "$date": "2021-02-14T00:19:33.000Z" + }, + "end": { + "$date": "2021-02-14T00:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d036d8a-a201-473c-826a-ccbca8088a3d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T00:42:13.000Z" + }, + "end": { + "$date": "2021-02-14T01:23:18.000Z" + }, + "events": [ + { + "uuid": "4034535b-86f8-4efc-a940-a842a54332bf", + "start": { + "$date": "2021-02-14T00:42:13.000Z" + }, + "end": { + "$date": "2021-02-14T01:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c52bd6d-e27d-4f58-9be5-9dbbffb2eb6d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T02:20:01.000Z" + }, + "end": { + "$date": "2021-02-14T03:07:13.000Z" + }, + "events": [ + { + "uuid": "f117d96b-04a8-4c5e-82f2-18508a9189f7", + "start": { + "$date": "2021-02-14T02:20:01.000Z" + }, + "end": { + "$date": "2021-02-14T03:03:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19e527e6-0292-499e-a430-1d0d1e374df4", + "start": { + "$date": "2021-02-14T03:03:01.000Z" + }, + "end": { + "$date": "2021-02-14T03:05:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2fe06af9-2787-4ad1-a3d8-0c0da5f9bd9e", + "start": { + "$date": "2021-02-14T03:05:01.000Z" + }, + "end": { + "$date": "2021-02-14T03:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31371c93-d71f-4e87-b40b-e32e0694d61f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T02:27:13.000Z" + }, + "end": { + "$date": "2021-02-14T02:42:56.000Z" + }, + "events": [ + { + "uuid": "f303cd05-42df-4c25-af89-b8cdbf8663c1", + "start": { + "$date": "2021-02-14T02:27:13.000Z" + }, + "end": { + "$date": "2021-02-14T02:42:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "82dd3548-f9a9-48fe-8150-ba14bc2b7845", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-14T02:39:27.000Z" + }, + "end": { + "$date": "2021-02-14T03:50:17.000Z" + }, + "events": [ + { + "uuid": "a241e1b0-b157-4f42-813e-1f9fca9f859e", + "start": { + "$date": "2021-02-14T02:39:27.000Z" + }, + "end": { + "$date": "2021-02-14T03:50:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4c03c09-9463-4b9e-8042-992587e8f35b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T02:47:25.000Z" + }, + "end": { + "$date": "2021-02-14T03:05:52.000Z" + }, + "events": [ + { + "uuid": "a4b061df-b6c1-49bc-8ddd-c7bb59ab6ba8", + "start": { + "$date": "2021-02-14T02:47:25.000Z" + }, + "end": { + "$date": "2021-02-14T03:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ac005f9-c0fb-4c33-882b-ce3308b34c32", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T02:47:26.000Z" + }, + "end": { + "$date": "2021-02-14T03:05:46.000Z" + }, + "events": [ + { + "uuid": "20eb1cf7-022c-40d6-9d39-34b069b8f363", + "start": { + "$date": "2021-02-14T02:47:26.000Z" + }, + "end": { + "$date": "2021-02-14T03:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "821a45fb-5ee3-4d2c-bcca-b44d0940b6d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T03:10:21.000Z" + }, + "end": { + "$date": "2021-02-14T03:24:46.000Z" + }, + "events": [ + { + "uuid": "4f62e7db-e460-49c4-80fa-29d0ab43952f", + "start": { + "$date": "2021-02-14T03:10:21.000Z" + }, + "end": { + "$date": "2021-02-14T03:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "590ddabb-82e7-44eb-85d1-fe7532600637", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T03:10:11.000Z" + }, + "end": { + "$date": "2021-02-14T03:24:31.000Z" + }, + "events": [ + { + "uuid": "6aeacc98-97f9-4f02-a564-76ca1c3e399f", + "start": { + "$date": "2021-02-14T03:10:11.000Z" + }, + "end": { + "$date": "2021-02-14T03:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab108cfb-0911-42f6-b811-4eadd654486c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T03:10:17.000Z" + }, + "end": { + "$date": "2021-02-14T03:24:37.000Z" + }, + "events": [ + { + "uuid": "6264ebfc-656e-44c8-885e-7422eb0e38ac", + "start": { + "$date": "2021-02-14T03:10:17.000Z" + }, + "end": { + "$date": "2021-02-14T03:24:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5406c72e-6367-4c40-ae7c-b17395623793", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T03:50:37.000Z" + }, + "end": { + "$date": "2021-02-14T03:50:44.000Z" + }, + "events": [ + { + "uuid": "c1aafae5-c9ae-42bf-a491-c6ea4af585a7", + "start": { + "$date": "2021-02-14T03:50:37.000Z" + }, + "end": { + "$date": "2021-02-14T03:50:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e44fc3d-ee7e-4556-95bf-838c2b2743a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T04:54:51.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:54.000Z" + }, + "events": [ + { + "uuid": "b1df90f5-9929-4bd5-a060-6902cf883878", + "start": { + "$date": "2021-02-14T04:54:51.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3a3e1b3-e0d2-4141-8434-b7a356048068", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T03:26:28.000Z" + }, + "end": { + "$date": "2021-02-14T03:50:38.000Z" + }, + "events": [ + { + "uuid": "2324f484-717e-4e71-aa51-1ccfdeb8b9a5", + "start": { + "$date": "2021-02-14T03:26:28.000Z" + }, + "end": { + "$date": "2021-02-14T03:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "574df2f0-9c96-426a-9bc7-1a52267330dd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-14T03:43:19.000Z" + }, + "end": { + "$date": "2021-02-14T04:05:40.000Z" + }, + "events": [ + { + "uuid": "f582677c-d848-4390-9aae-2d1181627e79", + "start": { + "$date": "2021-02-14T03:43:19.000Z" + }, + "end": { + "$date": "2021-02-14T04:05:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e846441-d184-4343-8210-641ff747a9e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T04:07:53.000Z" + }, + "end": { + "$date": "2021-02-14T04:07:52.000Z" + }, + "events": [ + { + "uuid": "b84ecea8-01d8-43d2-8efe-60cbd70c23f5", + "start": { + "$date": "2021-02-14T04:07:53.000Z" + }, + "end": { + "$date": "2021-02-14T04:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "884fec06-db21-4064-8fd3-155ab482efcd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T03:52:34.000Z" + }, + "end": { + "$date": "2021-02-14T04:07:59.000Z" + }, + "events": [ + { + "uuid": "f09f0475-5ce1-4e4b-8dca-1e3fd6ede96f", + "start": { + "$date": "2021-02-14T03:52:34.000Z" + }, + "end": { + "$date": "2021-02-14T04:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1471aef8-3bd0-483a-923b-d8380f7e4c82", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-14T03:58:43.000Z" + }, + "end": { + "$date": "2021-02-14T05:03:22.000Z" + }, + "events": [ + { + "uuid": "797f9263-bb84-4fd7-a0e3-aea28cfa14ab", + "start": { + "$date": "2021-02-14T03:58:43.000Z" + }, + "end": { + "$date": "2021-02-14T05:03:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "41d40592-4e32-484c-9cca-2d06b917f631", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-14T04:06:00.000Z" + }, + "end": { + "$date": "2021-02-14T05:23:49.000Z" + }, + "events": [ + { + "uuid": "98a93120-3859-412e-98c9-da300a0b3875", + "start": { + "$date": "2021-02-14T04:06:00.000Z" + }, + "end": { + "$date": "2021-02-14T05:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4afe7255-3c0d-44a7-84d5-2bf017e1758f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T04:11:28.000Z" + }, + "end": { + "$date": "2021-02-14T04:34:16.000Z" + }, + "events": [ + { + "uuid": "6871c05a-f1bc-4bcd-807a-5700b3534cbb", + "start": { + "$date": "2021-02-14T04:11:28.000Z" + }, + "end": { + "$date": "2021-02-14T04:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3747990a-f6f7-4a69-a6ef-c4675bd21026", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T04:12:05.000Z" + }, + "end": { + "$date": "2021-02-14T04:34:16.000Z" + }, + "events": [ + { + "uuid": "7e6d6ce8-9812-4a3b-ae0a-29bc8c444c7c", + "start": { + "$date": "2021-02-14T04:12:05.000Z" + }, + "end": { + "$date": "2021-02-14T04:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8a85c31-d7cf-4ee3-baab-9b2ecb2e6de6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-14T04:11:24.000Z" + }, + "end": { + "$date": "2021-02-14T04:34:10.000Z" + }, + "events": [ + { + "uuid": "8a70497b-89e2-48fe-b727-8f2a5c4a5a59", + "start": { + "$date": "2021-02-14T04:11:24.000Z" + }, + "end": { + "$date": "2021-02-14T04:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "70b8e380-4f24-46cf-ad4e-5430254edb34", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-14T04:12:36.000Z" + }, + "end": { + "$date": "2021-02-14T05:08:27.000Z" + }, + "events": [ + { + "uuid": "a867b82d-031e-47b9-be2b-ef3300946276", + "start": { + "$date": "2021-02-14T04:12:36.000Z" + }, + "end": { + "$date": "2021-02-14T05:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "2e00d3f4-9429-4bac-b948-5222062569ae", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-14T04:32:34.000Z" + }, + "end": { + "$date": "2021-02-14T09:16:35.000Z" + }, + "events": [ + { + "uuid": "66a0f604-da4a-411c-b07d-d29c19d9579e", + "start": { + "$date": "2021-02-14T04:32:34.000Z" + }, + "end": { + "$date": "2021-02-14T09:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bf2087e-29b7-4d7e-ab6a-837ca4f2ae6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T04:36:34.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:58.000Z" + }, + "events": [ + { + "uuid": "9d36df47-1f0f-4bf9-ac26-43e72589f6f0", + "start": { + "$date": "2021-02-14T04:36:34.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34ebd416-91fd-4a5e-9d1e-5b8131c171d9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T04:36:31.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:47.000Z" + }, + "events": [ + { + "uuid": "2c596070-eee3-4243-8055-ff7c1d769612", + "start": { + "$date": "2021-02-14T04:36:31.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a565434e-288f-489f-8f1d-e376138ccbce", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-14T04:36:40.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:50.000Z" + }, + "events": [ + { + "uuid": "fb76bc8f-b2c9-4464-8ce9-e44b45c5015c", + "start": { + "$date": "2021-02-14T04:36:40.000Z" + }, + "end": { + "$date": "2021-02-14T04:54:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "553ab8d1-b7af-41f1-8485-3b8b8c164578", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T04:59:05.000Z" + }, + "end": { + "$date": "2021-02-14T05:49:58.000Z" + }, + "events": [ + { + "uuid": "9c55c01a-8135-4e5c-a150-2c7ca31c70f3", + "start": { + "$date": "2021-02-14T04:59:05.000Z" + }, + "end": { + "$date": "2021-02-14T05:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8e33043e-52ca-48d2-879c-2da4e2ecdc83", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-14T05:04:51.000Z" + }, + "end": { + "$date": "2021-02-14T05:51:50.000Z" + }, + "events": [ + { + "uuid": "4db5e17e-eada-417c-9e4b-667a238426cf", + "start": { + "$date": "2021-02-14T05:04:51.000Z" + }, + "end": { + "$date": "2021-02-14T05:51:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c234f6f6-a5a7-4edb-8839-239c472140b7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-14T05:16:48.000Z" + }, + "end": { + "$date": "2021-02-14T07:21:54.000Z" + }, + "events": [ + { + "uuid": "ab9ade91-1ed0-4e59-8dfc-56a993541a68", + "start": { + "$date": "2021-02-14T05:16:48.000Z" + }, + "end": { + "$date": "2021-02-14T07:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b76f71b4-6697-490b-98ae-93e54d4a29fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-14T05:23:58.000Z" + }, + "end": { + "$date": "2021-02-14T08:21:38.000Z" + }, + "events": [ + { + "uuid": "8390dea6-ae83-4571-86b5-06ae0257a169", + "start": { + "$date": "2021-02-14T05:23:58.000Z" + }, + "end": { + "$date": "2021-02-14T08:21:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6c1ca29-18a5-488f-97fc-acef76a07f8c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T06:06:49.000Z" + }, + "end": { + "$date": "2021-02-14T06:23:46.000Z" + }, + "events": [ + { + "uuid": "cd318941-c6d2-43a6-af1b-5854408845b6", + "start": { + "$date": "2021-02-14T06:06:49.000Z" + }, + "end": { + "$date": "2021-02-14T06:23:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f37a231c-1fe4-4dfe-a182-f8aed2b932b0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-14T06:07:37.000Z" + }, + "end": { + "$date": "2021-02-14T07:50:48.000Z" + }, + "events": [ + { + "uuid": "0a8a6cc8-c957-4d35-937d-ef10cb75117c", + "start": { + "$date": "2021-02-14T06:07:37.000Z" + }, + "end": { + "$date": "2021-02-14T07:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf44e9f8-774f-44a0-9d93-7dd329f66e06", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T06:27:25.000Z" + }, + "end": { + "$date": "2021-02-14T06:45:57.000Z" + }, + "events": [ + { + "uuid": "b103c9f7-52a3-4876-b65b-cc69ab91360b", + "start": { + "$date": "2021-02-14T06:27:25.000Z" + }, + "end": { + "$date": "2021-02-14T06:45:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09cc0936-a464-4cea-ba9b-97c85aef594d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T06:48:31.000Z" + }, + "end": { + "$date": "2021-02-14T07:09:09.000Z" + }, + "events": [ + { + "uuid": "75665b44-e2b1-4a0b-a4a5-98d2a3809f33", + "start": { + "$date": "2021-02-14T06:48:31.000Z" + }, + "end": { + "$date": "2021-02-14T07:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af7a5f40-addb-4e13-b42f-9d58ff8f61f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-14T07:13:32.000Z" + }, + "end": { + "$date": "2021-02-14T07:41:57.000Z" + }, + "events": [ + { + "uuid": "e275a297-1127-45b7-9264-7c2dbb68ebd3", + "start": { + "$date": "2021-02-14T07:13:32.000Z" + }, + "end": { + "$date": "2021-02-14T07:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9b07f41f-fdfe-4b75-81ee-467621b9b54a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-14T07:51:19.000Z" + }, + "end": { + "$date": "2021-02-14T07:53:43.000Z" + }, + "events": [ + { + "uuid": "2085fb67-2c8a-4bdb-85f8-b1e557c16431", + "start": { + "$date": "2021-02-14T07:51:19.000Z" + }, + "end": { + "$date": "2021-02-14T07:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3085982f-e6c6-4860-b42f-40c4d5bb9a7f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-14T07:58:30.000Z" + }, + "end": { + "$date": "2021-02-14T08:23:57.000Z" + }, + "events": [ + { + "uuid": "20450a3f-c16d-4bd0-b72a-0053a85d9e5a", + "start": { + "$date": "2021-02-14T07:58:30.000Z" + }, + "end": { + "$date": "2021-02-14T08:23:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e0f355a4-854b-473f-afa2-98a0bc20ffd9", + "uuid": "f3038d08-ac8e-41bb-aa08-11c1b90cde87", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T14:07:38.000Z" + }, + "end": { + "$date": "2021-02-14T23:30:23.000Z" + }, + "events": [ + { + "uuid": "163e49f8-6232-4b61-8c86-886be20d4e0d", + "start": { + "$date": "2021-02-14T14:07:38.000Z" + }, + "end": { + "$date": "2021-02-14T15:33:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "16215c5d-9b69-479e-b05a-2277748b0a5a", + "start": { + "$date": "2021-02-14T15:33:38.000Z" + }, + "end": { + "$date": "2021-02-14T18:43:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96c37d0b-418c-414f-b298-d169fb07ecb1", + "start": { + "$date": "2021-02-14T18:43:38.000Z" + }, + "end": { + "$date": "2021-02-14T18:45:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f871143b-0005-4abb-8294-15a533cfda7e", + "start": { + "$date": "2021-02-14T18:45:38.000Z" + }, + "end": { + "$date": "2021-02-14T18:46:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5accc03a-8cb0-484c-b4d5-70187f63d6f8", + "start": { + "$date": "2021-02-14T18:46:38.000Z" + }, + "end": { + "$date": "2021-02-14T18:48:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0b7c6909-9219-4572-9dbc-53ab89dabfea", + "start": { + "$date": "2021-02-14T18:48:38.000Z" + }, + "end": { + "$date": "2021-02-14T19:19:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7819a7d-2488-4e28-ba0f-2f09a4ddd450", + "start": { + "$date": "2021-02-14T19:19:38.000Z" + }, + "end": { + "$date": "2021-02-14T23:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b5509cdc-fba8-4224-b880-38636a2126e7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-14T16:10:46.000Z" + }, + "end": { + "$date": "2021-02-14T16:14:21.000Z" + }, + "events": [ + { + "uuid": "83637db7-7a8b-4126-9658-72d83a0f9be4", + "start": { + "$date": "2021-02-14T16:10:46.000Z" + }, + "end": { + "$date": "2021-02-14T16:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "75014bdc-6f13-4a71-bfb1-c9d6eef09ead", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-14T16:16:11.000Z" + }, + "end": { + "$date": "2021-02-14T16:18:31.000Z" + }, + "events": [ + { + "uuid": "87e01a98-e403-49b6-901b-30e8e1c94fcc", + "start": { + "$date": "2021-02-14T16:16:11.000Z" + }, + "end": { + "$date": "2021-02-14T16:18:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "91bb7e69-a030-4a71-b94b-9c26d5cb46b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-14T16:26:03.000Z" + }, + "end": { + "$date": "2021-02-14T17:12:49.000Z" + }, + "events": [ + { + "uuid": "24c51ec5-300b-44f4-8b67-c9f8168c42e2", + "start": { + "$date": "2021-02-14T16:26:03.000Z" + }, + "end": { + "$date": "2021-02-14T17:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4bc02794-918e-44f3-b535-2a6036b2ab39", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T18:21:47.000Z" + }, + "end": { + "$date": "2021-02-14T19:01:54.000Z" + }, + "events": [ + { + "uuid": "5d3f28fc-eb25-4abb-97bd-39b448bccf90", + "start": { + "$date": "2021-02-14T18:21:47.000Z" + }, + "end": { + "$date": "2021-02-14T19:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "866949e3-6e09-4f58-bf66-f8f3f4b4006e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-14T20:10:49.000Z" + }, + "end": { + "$date": "2021-02-14T20:55:07.000Z" + }, + "events": [ + { + "uuid": "c7165e9b-a06b-4044-90cc-210ad5256db0", + "start": { + "$date": "2021-02-14T20:10:49.000Z" + }, + "end": { + "$date": "2021-02-14T20:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b7d2b173-e445-4533-8e82-0a84e3bdf75e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-14T21:10:58.000Z" + }, + "end": { + "$date": "2021-02-14T22:26:41.000Z" + }, + "events": [ + { + "uuid": "2827c045-815a-486d-b5c3-1fb62a0b4634", + "start": { + "$date": "2021-02-14T21:10:58.000Z" + }, + "end": { + "$date": "2021-02-14T22:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b759409a-6f77-41bc-8828-e9d555434908", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T21:11:27.000Z" + }, + "end": { + "$date": "2021-02-14T21:48:55.000Z" + }, + "events": [ + { + "uuid": "8b73b36d-17b4-4978-82c5-16693181abeb", + "start": { + "$date": "2021-02-14T21:11:27.000Z" + }, + "end": { + "$date": "2021-02-14T21:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e29f56f4-7d99-4920-b2f1-00f030be8d0a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-14T21:29:28.000Z" + }, + "end": { + "$date": "2021-02-15T03:04:01.000Z" + }, + "events": [ + { + "uuid": "b9a3f97e-737d-43d0-8e08-430e78ef2dce", + "start": { + "$date": "2021-02-14T21:29:28.000Z" + }, + "end": { + "$date": "2021-02-14T21:46:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "be3cf6f3-fc34-49ca-8bda-b0c0ed02c3af", + "start": { + "$date": "2021-02-14T21:46:28.000Z" + }, + "end": { + "$date": "2021-02-14T21:56:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2cdfdc57-bfb4-426b-9707-29a29819a3ff", + "start": { + "$date": "2021-02-14T21:56:28.000Z" + }, + "end": { + "$date": "2021-02-14T22:07:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1d21831-ed3f-438c-bada-b29b02329d12", + "start": { + "$date": "2021-02-14T22:07:28.000Z" + }, + "end": { + "$date": "2021-02-14T22:18:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ffc9fcbc-2c1d-4ee0-a955-8aa1fd484854", + "start": { + "$date": "2021-02-14T22:18:28.000Z" + }, + "end": { + "$date": "2021-02-14T22:37:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ceed2db0-1973-474b-8d76-4b1a2f14b285", + "start": { + "$date": "2021-02-14T22:37:28.000Z" + }, + "end": { + "$date": "2021-02-14T22:50:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d12c0be-2c19-4a1e-85e2-6b538321f4aa", + "start": { + "$date": "2021-02-14T22:50:28.000Z" + }, + "end": { + "$date": "2021-02-15T01:10:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03d98399-e9dd-4fe4-9d7e-c360345dd6a3", + "start": { + "$date": "2021-02-15T01:10:28.000Z" + }, + "end": { + "$date": "2021-02-15T01:26:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a98b14dd-8852-4b8a-9610-9e6d57e8b796", + "start": { + "$date": "2021-02-15T01:26:28.000Z" + }, + "end": { + "$date": "2021-02-15T03:04:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5400ede3-b7f5-4173-83c5-00c0ed23f2af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T21:51:35.000Z" + }, + "end": { + "$date": "2021-02-14T22:12:12.000Z" + }, + "events": [ + { + "uuid": "7cb2182a-e230-45cc-ace5-70a7db2d4766", + "start": { + "$date": "2021-02-14T21:51:35.000Z" + }, + "end": { + "$date": "2021-02-14T22:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3dc2a657-64f3-450f-8e6e-2b445325a464", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-14T22:15:32.000Z" + }, + "end": { + "$date": "2021-02-14T22:47:35.000Z" + }, + "events": [ + { + "uuid": "4c010fe5-1d26-4239-973f-21f747309a5c", + "start": { + "$date": "2021-02-14T22:15:32.000Z" + }, + "end": { + "$date": "2021-02-14T22:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdec4698-66e8-486e-9f96-d21fa0340dec", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-14T23:51:34.000Z" + }, + "end": { + "$date": "2021-02-15T00:17:07.000Z" + }, + "events": [ + { + "uuid": "081a006b-c17e-460d-8bb6-b1663d48956b", + "start": { + "$date": "2021-02-14T23:51:34.000Z" + }, + "end": { + "$date": "2021-02-15T00:02:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a1c8861-ecc4-4dcc-bc00-5da9df772ba6", + "start": { + "$date": "2021-02-15T00:02:34.000Z" + }, + "end": { + "$date": "2021-02-15T00:09:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ded937e8-15c9-40c4-9b97-40d30e8a9b3e", + "start": { + "$date": "2021-02-15T00:09:34.000Z" + }, + "end": { + "$date": "2021-02-15T00:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4c6eddd2-ad22-4b3f-9a34-26fb82ebd2c1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-15T00:23:30.000Z" + }, + "end": { + "$date": "2021-02-15T01:05:33.000Z" + }, + "events": [ + { + "uuid": "f47f9151-f4d9-41e2-91af-38e931296928", + "start": { + "$date": "2021-02-15T00:23:30.000Z" + }, + "end": { + "$date": "2021-02-15T01:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dbf8a85f-20e0-4f7e-8f2d-e5753324e831", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-15T00:25:58.000Z" + }, + "end": { + "$date": "2021-02-15T00:41:23.000Z" + }, + "events": [ + { + "uuid": "c9b57793-4d67-44e0-81d6-7cd2b1dcaf3b", + "start": { + "$date": "2021-02-15T00:25:58.000Z" + }, + "end": { + "$date": "2021-02-15T00:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "433b08f6-9748-4604-8150-8c9f2989a658", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-15T00:41:48.000Z" + }, + "end": { + "$date": "2021-02-15T01:01:34.000Z" + }, + "events": [ + { + "uuid": "079f977d-e4c9-474d-9cb2-799a30f9bbb6", + "start": { + "$date": "2021-02-15T00:41:48.000Z" + }, + "end": { + "$date": "2021-02-15T01:01:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5661ef8-1ffb-4d17-9479-90ebd4495f10", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-15T01:11:50.000Z" + }, + "end": { + "$date": "2021-02-15T01:57:24.000Z" + }, + "events": [ + { + "uuid": "7fa8b8f7-e54a-4245-b5a7-922c8e97d3b5", + "start": { + "$date": "2021-02-15T01:11:50.000Z" + }, + "end": { + "$date": "2021-02-15T01:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1b20ccd5-72ce-4e26-957c-420f8c8b499b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T01:10:30.000Z" + }, + "end": { + "$date": "2021-02-15T01:18:07.000Z" + }, + "events": [ + { + "uuid": "59b56faa-2917-4bf4-8b41-6e041c241b34", + "start": { + "$date": "2021-02-15T01:10:30.000Z" + }, + "end": { + "$date": "2021-02-15T01:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7a0276b1-4b34-4626-a19b-8afe568f523a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-15T01:12:13.000Z" + }, + "end": { + "$date": "2021-02-15T01:18:35.000Z" + }, + "events": [ + { + "uuid": "cc040272-9e5f-487e-8de8-767b168feb70", + "start": { + "$date": "2021-02-15T01:12:13.000Z" + }, + "end": { + "$date": "2021-02-15T01:18:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "16fb722d-a11b-4e98-bfd9-37e21e3d5433", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T01:27:29.000Z" + }, + "end": { + "$date": "2021-02-15T02:22:49.000Z" + }, + "events": [ + { + "uuid": "3c79bbd2-f619-4afc-a4f7-525ec50cce46", + "start": { + "$date": "2021-02-15T01:27:29.000Z" + }, + "end": { + "$date": "2021-02-15T02:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "308344ba-ba21-48b2-bde1-dcd7942d547e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-15T04:09:24.000Z" + }, + "end": { + "$date": "2021-02-15T04:44:24.000Z" + }, + "events": [ + { + "uuid": "ad4aab12-635f-40c5-bc46-16ba9ccfc913", + "start": { + "$date": "2021-02-15T04:09:24.000Z" + }, + "end": { + "$date": "2021-02-15T04:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8d20f46c-fc36-4f72-9df8-63373d2c6e3a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-15T02:18:09.000Z" + }, + "end": { + "$date": "2021-02-15T03:24:53.000Z" + }, + "events": [ + { + "uuid": "f25e8324-8e27-4b53-8a95-1ab9346d2ecf", + "start": { + "$date": "2021-02-15T02:18:09.000Z" + }, + "end": { + "$date": "2021-02-15T03:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5d025425-ad99-4f3e-9082-f57f15e5429d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T03:25:32.000Z" + }, + "end": { + "$date": "2021-02-15T03:27:27.000Z" + }, + "events": [ + { + "uuid": "bbd1757b-4948-43cc-b1b3-d171ea6c7eed", + "start": { + "$date": "2021-02-15T03:25:32.000Z" + }, + "end": { + "$date": "2021-02-15T03:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "392026bd-756e-40ec-9ad5-9b07e0f51116", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T03:27:58.000Z" + }, + "end": { + "$date": "2021-02-15T04:38:07.000Z" + }, + "events": [ + { + "uuid": "ed11ae0c-1fa6-4ae8-b805-34e0291123e3", + "start": { + "$date": "2021-02-15T03:27:58.000Z" + }, + "end": { + "$date": "2021-02-15T04:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "c95ef829-a0e1-4c87-9f0c-40510fa338d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-15T03:28:26.000Z" + }, + "end": { + "$date": "2021-02-15T04:16:53.000Z" + }, + "events": [ + { + "uuid": "00b3c1bf-8488-4085-9890-2a22fc0b5e4a", + "start": { + "$date": "2021-02-15T03:28:26.000Z" + }, + "end": { + "$date": "2021-02-15T04:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c55756-ae07-4771-86d2-bba19006baa0", + "uuid": "1f533813-e620-427b-887b-f0bcf92a7a95", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-15T03:42:52.000Z" + }, + "end": { + "$date": "2021-02-15T03:44:36.000Z" + }, + "events": [ + { + "uuid": "1aafbd33-3348-422b-9879-932d7c6bd066", + "start": { + "$date": "2021-02-15T03:42:52.000Z" + }, + "end": { + "$date": "2021-02-15T03:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "63821184-3e39-452c-86d0-4d89119d603c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-15T03:44:47.000Z" + }, + "end": { + "$date": "2021-02-15T04:46:00.000Z" + }, + "events": [ + { + "uuid": "2117f5b4-a7b7-4818-b732-fc76cea8ff15", + "start": { + "$date": "2021-02-15T03:44:47.000Z" + }, + "end": { + "$date": "2021-02-15T04:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "9d9ff32f-a14c-4b48-a4de-308c5539fd6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-15T03:28:26.000Z" + }, + "end": { + "$date": "2021-02-15T04:21:31.000Z" + }, + "events": [ + { + "uuid": "f24a0490-7d63-4d86-a838-69c650e416f6", + "start": { + "$date": "2021-02-15T03:28:26.000Z" + }, + "end": { + "$date": "2021-02-15T04:21:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "8388b04f-ee56-45ec-8f9d-90af5d58bcbd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-15T04:21:58.000Z" + }, + "end": { + "$date": "2021-02-15T05:02:02.000Z" + }, + "events": [ + { + "uuid": "ea0c8c98-8bd1-4622-97b6-ffe94e98f866", + "start": { + "$date": "2021-02-15T04:21:58.000Z" + }, + "end": { + "$date": "2021-02-15T05:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "211fb78d-6369-4228-8b09-491cb0c5d0b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-15T04:41:30.000Z" + }, + "end": { + "$date": "2021-02-15T04:58:01.000Z" + }, + "events": [ + { + "uuid": "da836dcc-2045-40dd-a5c4-6355d21be7cf", + "start": { + "$date": "2021-02-15T04:41:30.000Z" + }, + "end": { + "$date": "2021-02-15T04:58:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7c5e7e9d-c92a-4532-8019-5e673389c1cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T04:42:12.000Z" + }, + "end": { + "$date": "2021-02-15T05:16:19.000Z" + }, + "events": [ + { + "uuid": "69733936-3995-47d7-a11b-d1d3b0bb9a33", + "start": { + "$date": "2021-02-15T04:42:12.000Z" + }, + "end": { + "$date": "2021-02-15T05:16:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "74911a7c-6b84-490c-a0bf-229b3bf2af28", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-15T04:48:16.000Z" + }, + "end": { + "$date": "2021-02-15T05:31:56.000Z" + }, + "events": [ + { + "uuid": "35fed503-2c08-42c9-b934-969a21ac63a7", + "start": { + "$date": "2021-02-15T04:48:16.000Z" + }, + "end": { + "$date": "2021-02-15T05:31:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "125257ec-b669-43fd-8b17-9165d3f35f49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-15T05:05:20.000Z" + }, + "end": { + "$date": "2021-02-15T05:25:43.000Z" + }, + "events": [ + { + "uuid": "797387de-c5f2-4281-9f4e-8bfefe671de0", + "start": { + "$date": "2021-02-15T05:05:20.000Z" + }, + "end": { + "$date": "2021-02-15T05:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2260ceb-c489-4368-aecd-81f1ea677635", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T05:04:53.000Z" + }, + "end": { + "$date": "2021-02-15T05:42:05.000Z" + }, + "events": [ + { + "uuid": "9a7eb0cc-5275-493a-9651-a98bf95a9fc0", + "start": { + "$date": "2021-02-15T05:04:53.000Z" + }, + "end": { + "$date": "2021-02-15T05:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5987e0f2-b3cf-40f3-9380-252d6343bcfa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-15T05:13:48.000Z" + }, + "end": { + "$date": "2021-02-15T05:32:33.000Z" + }, + "events": [ + { + "uuid": "04d3e67a-59ed-48e3-9076-f0f062e42eaa", + "start": { + "$date": "2021-02-15T05:13:48.000Z" + }, + "end": { + "$date": "2021-02-15T05:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "f4ce1be5-9a31-4ae0-91e0-7da2755d8c20", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T05:22:42.000Z" + }, + "end": { + "$date": "2021-02-15T05:27:05.000Z" + }, + "events": [ + { + "uuid": "e283de50-691f-4823-a539-82071a42a2ef", + "start": { + "$date": "2021-02-15T05:22:42.000Z" + }, + "end": { + "$date": "2021-02-15T05:27:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "89a99ae1-90db-4447-a060-cc49752788f4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T05:42:24.000Z" + }, + "end": { + "$date": "2021-02-15T06:11:17.000Z" + }, + "events": [ + { + "uuid": "0255d371-06cc-4ac6-864e-21b343d32f30", + "start": { + "$date": "2021-02-15T05:42:24.000Z" + }, + "end": { + "$date": "2021-02-15T06:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "bb06d773-cc89-4877-a00e-6bdf568100c0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-15T05:47:24.000Z" + }, + "end": { + "$date": "2021-02-15T16:03:31.000Z" + }, + "events": [ + { + "uuid": "3db48091-63be-468d-83aa-2b605e517056", + "start": { + "$date": "2021-02-15T05:47:24.000Z" + }, + "end": { + "$date": "2021-02-15T06:37:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9616962-5d18-4f77-970c-39240446b156", + "start": { + "$date": "2021-02-15T06:37:24.000Z" + }, + "end": { + "$date": "2021-02-15T06:46:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c9cfa67-1a0d-4ff9-9cb9-bd3e62f3ccd2", + "start": { + "$date": "2021-02-15T06:46:24.000Z" + }, + "end": { + "$date": "2021-02-15T06:48:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "124e7fbb-74a4-4123-85a1-5529965731f4", + "start": { + "$date": "2021-02-15T06:48:24.000Z" + }, + "end": { + "$date": "2021-02-15T08:17:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b6c8673-21d9-4001-81c0-18b808e97bcf", + "start": { + "$date": "2021-02-15T08:17:24.000Z" + }, + "end": { + "$date": "2021-02-15T08:27:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55de1284-c283-492a-9816-5fccbdcac1eb", + "start": { + "$date": "2021-02-15T08:27:24.000Z" + }, + "end": { + "$date": "2021-02-15T15:06:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48edf8e8-d883-4756-9ab3-51ec66b3d3a9", + "start": { + "$date": "2021-02-15T15:06:24.000Z" + }, + "end": { + "$date": "2021-02-15T15:09:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5bd2182-66ef-4c54-baa3-2cdf884e1586", + "start": { + "$date": "2021-02-15T15:09:24.000Z" + }, + "end": { + "$date": "2021-02-15T16:03:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9f45e615-e93a-4f02-98a0-67eb4715866f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T06:04:14.000Z" + }, + "end": { + "$date": "2021-02-15T06:19:54.000Z" + }, + "events": [ + { + "uuid": "d1246c82-6a1e-4cc0-9666-b1375c131d07", + "start": { + "$date": "2021-02-15T06:04:14.000Z" + }, + "end": { + "$date": "2021-02-15T06:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "02bb2136-47b4-4caa-812b-69c9bbceb01d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T06:11:31.000Z" + }, + "end": { + "$date": "2021-02-15T06:16:17.000Z" + }, + "events": [ + { + "uuid": "b8dbfa2c-b986-4d5d-99c1-34784b88bc34", + "start": { + "$date": "2021-02-15T06:11:31.000Z" + }, + "end": { + "$date": "2021-02-15T06:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e99595aa-adad-48c6-9d80-d03d86499a40", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T06:16:36.000Z" + }, + "end": { + "$date": "2021-02-15T06:40:43.000Z" + }, + "events": [ + { + "uuid": "36388602-222e-423b-a5d9-daaf35020592", + "start": { + "$date": "2021-02-15T06:16:36.000Z" + }, + "end": { + "$date": "2021-02-15T06:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "645e5df5-84a8-452b-90f4-082af4b36d07", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-15T06:04:14.000Z" + }, + "end": { + "$date": "2021-02-15T07:31:38.000Z" + }, + "events": [ + { + "uuid": "84c0d694-f180-446b-9e5d-a4312e0bfb3f", + "start": { + "$date": "2021-02-15T06:04:14.000Z" + }, + "end": { + "$date": "2021-02-15T07:31:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "185543e7-9f91-4ca4-867d-6c611cef7bcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T06:41:12.000Z" + }, + "end": { + "$date": "2021-02-15T07:25:16.000Z" + }, + "events": [ + { + "uuid": "27942c45-bddb-4719-925d-e90388f80dea", + "start": { + "$date": "2021-02-15T06:41:12.000Z" + }, + "end": { + "$date": "2021-02-15T07:00:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03fd38c2-5370-4cb4-b78e-8bb9ec5c3d3b", + "start": { + "$date": "2021-02-15T07:00:12.000Z" + }, + "end": { + "$date": "2021-02-15T07:03:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03d3590c-3661-43c4-81b5-1f7cbb043f2b", + "start": { + "$date": "2021-02-15T07:03:12.000Z" + }, + "end": { + "$date": "2021-02-15T07:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "7fa9aa21-0231-442f-8773-33cb7e8bdfd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T07:27:35.000Z" + }, + "end": { + "$date": "2021-02-15T08:21:16.000Z" + }, + "events": [ + { + "uuid": "d5e207cb-bb9f-4892-b953-c9c62169a3b6", + "start": { + "$date": "2021-02-15T07:27:35.000Z" + }, + "end": { + "$date": "2021-02-15T08:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "ed9fdb62-ee8f-406a-b5ea-b7e2ae7dd2a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T08:23:01.000Z" + }, + "end": { + "$date": "2021-02-15T08:33:52.000Z" + }, + "events": [ + { + "uuid": "4f3e6c20-0280-446f-ac5e-a226f5bff07b", + "start": { + "$date": "2021-02-15T08:23:01.000Z" + }, + "end": { + "$date": "2021-02-15T08:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc2899ce-aab1-42e3-81aa-0b41d83ff0c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T08:34:21.000Z" + }, + "end": { + "$date": "2021-02-15T08:48:12.000Z" + }, + "events": [ + { + "uuid": "0d6bb23c-f697-409c-8079-15ba159c3e2a", + "start": { + "$date": "2021-02-15T08:34:21.000Z" + }, + "end": { + "$date": "2021-02-15T08:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "c4a68136-ab1a-4f38-a99a-c5745af8fea3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T15:01:12.000Z" + }, + "end": { + "$date": "2021-02-15T15:35:29.000Z" + }, + "events": [ + { + "uuid": "d849d5c5-6512-4e41-a746-2782f34bd731", + "start": { + "$date": "2021-02-15T15:01:12.000Z" + }, + "end": { + "$date": "2021-02-15T15:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "1d617d34-c9ee-435a-9c23-fb56f6b64bc0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T15:37:13.000Z" + }, + "end": { + "$date": "2021-02-15T16:04:24.000Z" + }, + "events": [ + { + "uuid": "7495bd13-8d98-43b8-8add-21e4e034679f", + "start": { + "$date": "2021-02-15T15:37:13.000Z" + }, + "end": { + "$date": "2021-02-15T16:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dbb94bc2-ed02-4f20-a2ac-b74b01fd0740", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T16:09:34.000Z" + }, + "end": { + "$date": "2021-02-15T16:20:45.000Z" + }, + "events": [ + { + "uuid": "60d54297-d35d-458d-af34-77d1a2631712", + "start": { + "$date": "2021-02-15T16:09:34.000Z" + }, + "end": { + "$date": "2021-02-15T16:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6fba3593-a859-40a6-adf1-4867893340b8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T16:20:55.000Z" + }, + "end": { + "$date": "2021-02-15T17:49:58.000Z" + }, + "events": [ + { + "uuid": "caf38931-d111-404f-a175-09fa57671a65", + "start": { + "$date": "2021-02-15T16:20:55.000Z" + }, + "end": { + "$date": "2021-02-15T17:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "83fffa14-897f-45d3-8376-eeec3cbb9aa0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-15T16:26:56.000Z" + }, + "end": { + "$date": "2021-02-15T18:17:32.000Z" + }, + "events": [ + { + "uuid": "faaf36f2-5299-43ee-8989-f16c34ad9966", + "start": { + "$date": "2021-02-15T16:26:56.000Z" + }, + "end": { + "$date": "2021-02-15T18:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "6357f24f-27b4-4deb-b5cd-a00717abc695", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-15T16:43:29.000Z" + }, + "end": { + "$date": "2021-02-15T16:56:40.000Z" + }, + "events": [ + { + "uuid": "64cc7b70-156f-48e5-b915-c907cdc27223", + "start": { + "$date": "2021-02-15T16:43:29.000Z" + }, + "end": { + "$date": "2021-02-15T16:56:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "39f8daec-0fa7-4ac0-bae6-39bcad435236", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T17:50:17.000Z" + }, + "end": { + "$date": "2021-02-15T19:49:16.000Z" + }, + "events": [ + { + "uuid": "d5b05272-75d1-488f-8aba-4041ac3d1d37", + "start": { + "$date": "2021-02-15T17:50:17.000Z" + }, + "end": { + "$date": "2021-02-15T19:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db5c1334-1a54-4de4-ab27-fa3f6667ffcd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-15T18:18:40.000Z" + }, + "end": { + "$date": "2021-02-15T18:51:58.000Z" + }, + "events": [ + { + "uuid": "610cdd1b-e99a-4e38-b86a-cc97dae41d86", + "start": { + "$date": "2021-02-15T18:18:40.000Z" + }, + "end": { + "$date": "2021-02-15T18:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "2f42eb32-db85-4db7-a982-01357b2ec59a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-15T18:23:34.000Z" + }, + "end": { + "$date": "2021-02-15T19:32:18.000Z" + }, + "events": [ + { + "uuid": "c20981e1-4c0f-4061-8ca5-0bc2dba0e4a3", + "start": { + "$date": "2021-02-15T18:23:34.000Z" + }, + "end": { + "$date": "2021-02-15T19:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ac219a58-d6a4-455b-aea0-e99c0281e972", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-15T18:28:25.000Z" + }, + "end": { + "$date": "2021-02-15T23:10:27.000Z" + }, + "events": [ + { + "uuid": "c52de0df-1185-4e09-aca7-d00591d9a3a3", + "start": { + "$date": "2021-02-15T18:28:25.000Z" + }, + "end": { + "$date": "2021-02-15T20:27:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4c835eb-48b4-4623-8408-71a08af89a1c", + "start": { + "$date": "2021-02-15T20:27:25.000Z" + }, + "end": { + "$date": "2021-02-15T20:36:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c7b3c58-606b-4c61-b483-7db7432d34d6", + "start": { + "$date": "2021-02-15T20:36:25.000Z" + }, + "end": { + "$date": "2021-02-15T20:52:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7239764-63fa-460e-91f9-e16a60a119d5", + "start": { + "$date": "2021-02-15T20:52:25.000Z" + }, + "end": { + "$date": "2021-02-15T21:06:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6f17dff9-b7ef-4b2b-90e2-7588e44184a5", + "start": { + "$date": "2021-02-15T21:06:25.000Z" + }, + "end": { + "$date": "2021-02-15T23:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "a2a25b32-b130-4815-9400-666b6f31d820", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T19:57:22.000Z" + }, + "end": { + "$date": "2021-02-15T20:16:48.000Z" + }, + "events": [ + { + "uuid": "086851c1-ee36-4f17-910a-508154ee6828", + "start": { + "$date": "2021-02-15T19:57:22.000Z" + }, + "end": { + "$date": "2021-02-15T20:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "9b790b3d-fe1b-4970-87ba-adfbfb3a541c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T20:16:57.000Z" + }, + "end": { + "$date": "2021-02-15T20:25:08.000Z" + }, + "events": [ + { + "uuid": "e4db2222-c59c-4f19-8947-f5e1d7a25b27", + "start": { + "$date": "2021-02-15T20:16:57.000Z" + }, + "end": { + "$date": "2021-02-15T20:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "833e325a-1442-4c8b-b154-0989ef8bdcf0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-15T20:26:46.000Z" + }, + "end": { + "$date": "2021-02-15T23:47:15.000Z" + }, + "events": [ + { + "uuid": "844a89f4-78fb-4c8a-bff7-f46a10de2554", + "start": { + "$date": "2021-02-15T20:26:46.000Z" + }, + "end": { + "$date": "2021-02-15T23:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "550a5937-e841-455f-836c-5307bc64722c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-15T20:27:36.000Z" + }, + "end": { + "$date": "2021-02-16T01:36:19.000Z" + }, + "events": [ + { + "uuid": "9e4c1915-e538-4df1-a475-c304e3cacb22", + "start": { + "$date": "2021-02-15T20:27:36.000Z" + }, + "end": { + "$date": "2021-02-16T01:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "4deaa0cf-b5a3-4f77-a380-b754953722ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-15T20:49:25.000Z" + }, + "end": { + "$date": "2021-02-15T21:00:45.000Z" + }, + "events": [ + { + "uuid": "3191ae52-8f53-47ee-992e-c9ecb470aca1", + "start": { + "$date": "2021-02-15T20:49:25.000Z" + }, + "end": { + "$date": "2021-02-15T21:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f1e3f036-2b67-4fee-91c9-8d3931dbd1a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-15T21:04:51.000Z" + }, + "end": { + "$date": "2021-02-15T21:17:17.000Z" + }, + "events": [ + { + "uuid": "3e15d163-2fce-4822-a03d-07db8cd534fd", + "start": { + "$date": "2021-02-15T21:04:51.000Z" + }, + "end": { + "$date": "2021-02-15T21:17:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c302eaad-e6de-474f-94a4-b8c68baf8713", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-15T22:12:40.000Z" + }, + "end": { + "$date": "2021-02-16T01:35:10.000Z" + }, + "events": [ + { + "uuid": "14a91df6-d857-4380-9013-f3d563f95ef0", + "start": { + "$date": "2021-02-15T22:12:40.000Z" + }, + "end": { + "$date": "2021-02-16T01:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "d985554e-e1d6-4e4a-861e-3050b28c2214", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-15T23:10:32.000Z" + }, + "end": { + "$date": "2021-02-16T05:50:08.000Z" + }, + "events": [ + { + "uuid": "66b5e8f4-874a-483c-892e-530e894d9f3a", + "start": { + "$date": "2021-02-15T23:10:32.000Z" + }, + "end": { + "$date": "2021-02-16T05:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "391af90f-e4c6-4a44-92f8-e7adc94601a1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-16T00:08:10.000Z" + }, + "end": { + "$date": "2021-02-16T00:29:23.000Z" + }, + "events": [ + { + "uuid": "bd3392a2-c336-47f0-a0b9-b0efe7ffa169", + "start": { + "$date": "2021-02-16T00:08:10.000Z" + }, + "end": { + "$date": "2021-02-16T00:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0952db47-0d7c-4e25-8e06-dd132391677a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-16T00:45:13.000Z" + }, + "end": { + "$date": "2021-02-16T01:58:51.000Z" + }, + "events": [ + { + "uuid": "4cdc69a6-7355-4ad5-83b5-be6666c66871", + "start": { + "$date": "2021-02-16T00:45:13.000Z" + }, + "end": { + "$date": "2021-02-16T01:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bee43078-d1e5-4cb4-9065-cbee4e6c20bb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-16T01:44:18.000Z" + }, + "end": { + "$date": "2021-02-16T02:20:14.000Z" + }, + "events": [ + { + "uuid": "1e720079-2396-4407-bfb2-d8c2993a2cae", + "start": { + "$date": "2021-02-16T01:44:18.000Z" + }, + "end": { + "$date": "2021-02-16T02:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1586435e-2b99-4503-8d06-a53b0eb1f7ff", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-16T02:23:24.000Z" + }, + "end": { + "$date": "2021-02-16T02:48:25.000Z" + }, + "events": [ + { + "uuid": "835f01a9-ae10-4f1b-b79e-d6ca17f86993", + "start": { + "$date": "2021-02-16T02:23:24.000Z" + }, + "end": { + "$date": "2021-02-16T02:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "95948ed6-5c5e-4f19-9178-8d4882902d14", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-16T02:50:39.000Z" + }, + "end": { + "$date": "2021-02-16T03:36:14.000Z" + }, + "events": [ + { + "uuid": "7613615d-f0ea-49e6-a0f7-4a8984793854", + "start": { + "$date": "2021-02-16T02:50:39.000Z" + }, + "end": { + "$date": "2021-02-16T03:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd9bae15-3f00-4539-b569-36b924da7da6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-16T02:59:10.000Z" + }, + "end": { + "$date": "2021-02-16T03:16:46.000Z" + }, + "events": [ + { + "uuid": "7592b6e9-19d3-4997-bf38-8091eda43733", + "start": { + "$date": "2021-02-16T02:59:10.000Z" + }, + "end": { + "$date": "2021-02-16T03:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "69a9fdc8-ed30-4417-bcee-5a28a9263099", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-16T03:14:31.000Z" + }, + "end": { + "$date": "2021-02-16T04:28:20.000Z" + }, + "events": [ + { + "uuid": "a18d9199-1fc9-4c05-93fb-6a5f020eaf19", + "start": { + "$date": "2021-02-16T03:14:31.000Z" + }, + "end": { + "$date": "2021-02-16T04:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b5ebee9-3189-4459-8015-1abcc21f7b9d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-16T03:19:05.000Z" + }, + "end": { + "$date": "2021-02-16T03:36:16.000Z" + }, + "events": [ + { + "uuid": "d83c6ec5-d13b-4b5d-b192-dd5361a39ec8", + "start": { + "$date": "2021-02-16T03:19:05.000Z" + }, + "end": { + "$date": "2021-02-16T03:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bd00c0cd-00f5-4ec5-8f3b-319a9ae8d0ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-16T03:36:50.000Z" + }, + "end": { + "$date": "2021-02-16T05:11:26.000Z" + }, + "events": [ + { + "uuid": "22c36f02-4846-475d-9fc4-b07facf376aa", + "start": { + "$date": "2021-02-16T03:36:50.000Z" + }, + "end": { + "$date": "2021-02-16T05:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "92dd9254-bf87-4986-b9fc-67b943491dd7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-16T04:00:52.000Z" + }, + "end": { + "$date": "2021-02-16T05:04:17.000Z" + }, + "events": [ + { + "uuid": "82ac174b-3ea4-497d-b100-b84ce23ffded", + "start": { + "$date": "2021-02-16T04:00:52.000Z" + }, + "end": { + "$date": "2021-02-16T05:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "24a57468-1f9c-4703-8f36-8ed0335acd28", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-16T04:01:00.000Z" + }, + "end": { + "$date": "2021-02-16T04:35:14.000Z" + }, + "events": [ + { + "uuid": "7a30861e-f882-49e2-9c2e-1adee10393ef", + "start": { + "$date": "2021-02-16T04:01:00.000Z" + }, + "end": { + "$date": "2021-02-16T04:35:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "1a2788ed-d4b2-4773-b24a-be65c2fec176", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-16T04:43:51.000Z" + }, + "end": { + "$date": "2021-02-16T06:22:28.000Z" + }, + "events": [ + { + "uuid": "236f9e49-30e3-48cc-b131-1238e4850b96", + "start": { + "$date": "2021-02-16T04:43:51.000Z" + }, + "end": { + "$date": "2021-02-16T06:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "03c1dd02-ee3a-459d-986a-b11101ec02a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-16T05:16:43.000Z" + }, + "end": { + "$date": "2021-02-16T06:22:49.000Z" + }, + "events": [ + { + "uuid": "e05969a9-b2ff-4fdc-8b86-ed243216c38c", + "start": { + "$date": "2021-02-16T05:16:43.000Z" + }, + "end": { + "$date": "2021-02-16T06:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "874f3c6c-4cbb-407d-9ef4-e2e0356eea28", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-16T05:50:13.000Z" + }, + "end": { + "$date": "2021-02-16T06:45:48.000Z" + }, + "events": [ + { + "uuid": "a82c3982-224c-4135-acaa-2fc44261f6bf", + "start": { + "$date": "2021-02-16T05:50:13.000Z" + }, + "end": { + "$date": "2021-02-16T06:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "d6fdc302-c2b2-45c5-b4fb-59d1e7dc04c8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-16T06:24:15.000Z" + }, + "end": { + "$date": "2021-02-16T06:26:29.000Z" + }, + "events": [ + { + "uuid": "27c84c57-cfc2-4cb2-a595-93f9a5e135c0", + "start": { + "$date": "2021-02-16T06:24:15.000Z" + }, + "end": { + "$date": "2021-02-16T06:26:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "9602dcd0-1c43-4759-9809-8ed862f8b9ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-16T06:26:56.000Z" + }, + "end": { + "$date": "2021-02-16T07:02:14.000Z" + }, + "events": [ + { + "uuid": "00db2745-aaf8-4535-a351-5206b159c142", + "start": { + "$date": "2021-02-16T06:26:56.000Z" + }, + "end": { + "$date": "2021-02-16T07:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d4e0b964-e9d1-48b2-a8b6-c35985b2f3b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-16T06:53:32.000Z" + }, + "end": { + "$date": "2021-02-16T07:24:53.000Z" + }, + "events": [ + { + "uuid": "47a82f20-c5e0-4b42-af9d-d961252875d8", + "start": { + "$date": "2021-02-16T06:53:32.000Z" + }, + "end": { + "$date": "2021-02-16T07:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a4c3292-f3be-450e-a315-da848a114c28", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-16T06:53:55.000Z" + }, + "end": { + "$date": "2021-02-16T07:24:46.000Z" + }, + "events": [ + { + "uuid": "c653ed4c-a00a-4ba4-850e-3f5a05edb92f", + "start": { + "$date": "2021-02-16T06:53:55.000Z" + }, + "end": { + "$date": "2021-02-16T07:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "ae96ca0a-4144-4452-b5ff-946f47b935af", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-16T06:27:00.000Z" + }, + "end": { + "$date": "2021-02-16T07:36:15.000Z" + }, + "events": [ + { + "uuid": "7b16ec67-469b-4885-a959-6db41cb805f3", + "start": { + "$date": "2021-02-16T06:27:00.000Z" + }, + "end": { + "$date": "2021-02-16T07:36:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "0900138f-9d2d-4552-979a-0f105174df3d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-16T19:28:57.000Z" + }, + "end": { + "$date": "2021-02-16T20:25:29.000Z" + }, + "events": [ + { + "uuid": "de1ddf1c-7b75-435b-b8fb-acc16ad33d82", + "start": { + "$date": "2021-02-16T19:28:57.000Z" + }, + "end": { + "$date": "2021-02-16T20:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c7e72344-2bf8-4735-8012-4d935c486c0b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-16T19:40:28.000Z" + }, + "end": { + "$date": "2021-02-16T21:12:22.000Z" + }, + "events": [ + { + "uuid": "54c478c6-df39-4b6c-a3f9-0f47f65b0285", + "start": { + "$date": "2021-02-16T19:40:28.000Z" + }, + "end": { + "$date": "2021-02-16T20:46:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14e798b7-4fd4-486b-af48-d1974d2218a0", + "start": { + "$date": "2021-02-16T20:46:28.000Z" + }, + "end": { + "$date": "2021-02-16T20:47:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ad75f893-e678-4bf6-b5c8-9bcb5fe3f10b", + "start": { + "$date": "2021-02-16T20:47:28.000Z" + }, + "end": { + "$date": "2021-02-16T21:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "6b6841dd-f840-4511-bc86-ac1047266d39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-16T19:41:46.000Z" + }, + "end": { + "$date": "2021-02-16T20:19:46.000Z" + }, + "events": [ + { + "uuid": "7e95d01c-1520-4814-9d20-6665adf27ad6", + "start": { + "$date": "2021-02-16T19:41:46.000Z" + }, + "end": { + "$date": "2021-02-16T20:19:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "339b2451-d177-41c8-b3cd-343e7b13ce52", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-16T19:41:44.000Z" + }, + "end": { + "$date": "2021-02-16T21:59:29.000Z" + }, + "events": [ + { + "uuid": "c8f91031-1a1d-46f5-8bf7-a3def909c380", + "start": { + "$date": "2021-02-16T19:41:44.000Z" + }, + "end": { + "$date": "2021-02-16T21:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "a779440e-9446-4769-97f1-9801881c55c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-16T20:20:37.000Z" + }, + "end": { + "$date": "2021-02-16T21:09:33.000Z" + }, + "events": [ + { + "uuid": "4b036463-bb24-416e-a566-27d3477bf1c5", + "start": { + "$date": "2021-02-16T20:20:37.000Z" + }, + "end": { + "$date": "2021-02-16T21:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "983b3130-68af-461c-8aa5-a67e34c88b72", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-16T21:02:49.000Z" + }, + "end": { + "$date": "2021-02-16T23:11:41.000Z" + }, + "events": [ + { + "uuid": "51d79736-8dd7-48df-8e05-509d7c77a08d", + "start": { + "$date": "2021-02-16T21:02:49.000Z" + }, + "end": { + "$date": "2021-02-16T23:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "91eb0820-38eb-4bad-93ed-2656271ca1a5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-16T21:04:17.000Z" + }, + "end": { + "$date": "2021-02-16T22:47:25.000Z" + }, + "events": [ + { + "uuid": "f3a55dc2-3c2d-441f-beef-f132d7b559b4", + "start": { + "$date": "2021-02-16T21:04:17.000Z" + }, + "end": { + "$date": "2021-02-16T22:47:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "516c0950-87c2-4367-8743-13e94f4111fd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-16T21:14:23.000Z" + }, + "end": { + "$date": "2021-02-16T21:15:37.000Z" + }, + "events": [ + { + "uuid": "b45ca850-df15-4a85-bf80-65ca6ebebb9a", + "start": { + "$date": "2021-02-16T21:14:23.000Z" + }, + "end": { + "$date": "2021-02-16T21:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "da0d468e-0ef0-4f3c-847c-458ef650e03e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-16T21:15:53.000Z" + }, + "end": { + "$date": "2021-02-16T21:32:54.000Z" + }, + "events": [ + { + "uuid": "5ee926a1-5fa8-4dea-bab8-92785c3ffffd", + "start": { + "$date": "2021-02-16T21:15:53.000Z" + }, + "end": { + "$date": "2021-02-16T21:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "db3f9ccb-49f8-4bdd-810f-5e0bb3846dd1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-16T22:37:09.000Z" + }, + "end": { + "$date": "2021-02-16T23:44:06.000Z" + }, + "events": [ + { + "uuid": "d965fcd1-c7e9-41db-a90a-3c58926c1ccf", + "start": { + "$date": "2021-02-16T22:37:09.000Z" + }, + "end": { + "$date": "2021-02-16T23:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a89b4c4f-d936-47c7-8eac-8d5ae0c30f32", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-16T23:46:05.000Z" + }, + "end": { + "$date": "2021-02-16T23:46:15.000Z" + }, + "events": [ + { + "uuid": "7de1ad14-ff4c-4bb9-8cb9-a34f9b1517de", + "start": { + "$date": "2021-02-16T23:46:05.000Z" + }, + "end": { + "$date": "2021-02-16T23:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "4c4ce5e5-78fe-467c-b68d-e19739b5f907", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-16T22:52:56.000Z" + }, + "end": { + "$date": "2021-02-17T00:45:53.000Z" + }, + "events": [ + { + "uuid": "532f3b55-8197-4054-8b2f-b357370f2734", + "start": { + "$date": "2021-02-16T22:52:56.000Z" + }, + "end": { + "$date": "2021-02-17T00:45:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "2762ec8e-2d7f-4922-aa5c-c0dd0448d9c6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-16T23:47:21.000Z" + }, + "end": { + "$date": "2021-02-17T00:07:22.000Z" + }, + "events": [ + { + "uuid": "d66a9ca3-28d1-468c-9afa-51f39be2855f", + "start": { + "$date": "2021-02-16T23:47:21.000Z" + }, + "end": { + "$date": "2021-02-17T00:07:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37f66b70-3517-4cec-a858-38a9a97a1091", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T00:05:37.000Z" + }, + "end": { + "$date": "2021-02-17T00:26:17.000Z" + }, + "events": [ + { + "uuid": "1df6c8cb-2c5f-4fba-977b-78166c7f065b", + "start": { + "$date": "2021-02-17T00:05:37.000Z" + }, + "end": { + "$date": "2021-02-17T00:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed0ee65a-34d6-420f-82f2-e3acec616f11", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-17T00:15:03.000Z" + }, + "end": { + "$date": "2021-02-17T01:46:37.000Z" + }, + "events": [ + { + "uuid": "8c503499-e029-4640-9ae0-57b7c1f61430", + "start": { + "$date": "2021-02-17T00:15:03.000Z" + }, + "end": { + "$date": "2021-02-17T01:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27f99100-1135-402a-9a59-3ac694d1010d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T00:28:52.000Z" + }, + "end": { + "$date": "2021-02-17T00:41:03.000Z" + }, + "events": [ + { + "uuid": "75e8c8af-f41a-4007-b20d-1a1d289ea067", + "start": { + "$date": "2021-02-17T00:28:52.000Z" + }, + "end": { + "$date": "2021-02-17T00:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2245d03-7147-4cc7-a255-50f6db396aaa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T00:43:38.000Z" + }, + "end": { + "$date": "2021-02-17T00:58:33.000Z" + }, + "events": [ + { + "uuid": "5f6a2422-2bf8-4bcc-b559-0f88e7547c55", + "start": { + "$date": "2021-02-17T00:43:38.000Z" + }, + "end": { + "$date": "2021-02-17T00:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74f0e678-a0ac-4a24-b558-e20aa0c1189b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T01:01:08.000Z" + }, + "end": { + "$date": "2021-02-17T01:17:44.000Z" + }, + "events": [ + { + "uuid": "c3b7a687-4fd6-4815-983d-3169f06e8b69", + "start": { + "$date": "2021-02-17T01:01:08.000Z" + }, + "end": { + "$date": "2021-02-17T01:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c4b7753d-c392-443b-b237-165d6b70824e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T02:06:50.000Z" + }, + "end": { + "$date": "2021-02-17T02:13:35.000Z" + }, + "events": [ + { + "uuid": "05d8d2c4-3466-4a2a-8b9d-faae24e68e08", + "start": { + "$date": "2021-02-17T02:06:50.000Z" + }, + "end": { + "$date": "2021-02-17T02:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "268f7106-9e03-4125-8efd-2848b932dca9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T02:13:50.000Z" + }, + "end": { + "$date": "2021-02-17T02:15:05.000Z" + }, + "events": [ + { + "uuid": "1e746059-decd-43ab-b071-1ae9f77c1ab9", + "start": { + "$date": "2021-02-17T02:13:50.000Z" + }, + "end": { + "$date": "2021-02-17T02:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b810a54-568d-492d-bbdc-badc0b18a706", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T02:21:05.000Z" + }, + "end": { + "$date": "2021-02-17T02:36:17.000Z" + }, + "events": [ + { + "uuid": "e7ac24c5-db24-4a46-82a2-ab6b933c0034", + "start": { + "$date": "2021-02-17T02:21:05.000Z" + }, + "end": { + "$date": "2021-02-17T02:36:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "21f357c4-6dcd-487b-b680-733b949e5d06", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-17T02:19:52.000Z" + }, + "end": { + "$date": "2021-02-17T05:33:36.000Z" + }, + "events": [ + { + "uuid": "af257b77-6cfe-4c6b-9b18-5d842f5695cb", + "start": { + "$date": "2021-02-17T02:19:52.000Z" + }, + "end": { + "$date": "2021-02-17T05:33:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "042bdd1f-e687-4379-9d72-5128ac716a0c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-17T02:21:00.000Z" + }, + "end": { + "$date": "2021-02-17T05:33:43.000Z" + }, + "events": [ + { + "uuid": "074c9559-6ca0-470a-9f60-bd8900ceecb9", + "start": { + "$date": "2021-02-17T02:21:00.000Z" + }, + "end": { + "$date": "2021-02-17T05:33:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9ce7f30-cd45-4609-9d5b-f324d2a06e4f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T02:38:21.000Z" + }, + "end": { + "$date": "2021-02-17T02:51:47.000Z" + }, + "events": [ + { + "uuid": "44e6dfb9-6c13-400e-8ef8-2657fff0767d", + "start": { + "$date": "2021-02-17T02:38:21.000Z" + }, + "end": { + "$date": "2021-02-17T02:51:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1f5ff472-f39f-42ca-ae42-808f438519a2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T02:52:37.000Z" + }, + "end": { + "$date": "2021-02-17T03:32:34.000Z" + }, + "events": [ + { + "uuid": "44efd2f3-a525-4297-956b-71b81c8fafeb", + "start": { + "$date": "2021-02-17T02:52:37.000Z" + }, + "end": { + "$date": "2021-02-17T03:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2fa8cfee-212d-4390-957d-10fda4e08bc2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-17T03:29:55.000Z" + }, + "end": { + "$date": "2021-02-17T05:33:32.000Z" + }, + "events": [ + { + "uuid": "e5264d65-5e5c-4b99-b9e6-45d90ef2c8f1", + "start": { + "$date": "2021-02-17T03:29:55.000Z" + }, + "end": { + "$date": "2021-02-17T05:33:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6b5c2b0c-0a0b-4f02-9cb8-2746b75d543a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T04:03:21.000Z" + }, + "end": { + "$date": "2021-02-17T07:18:18.000Z" + }, + "events": [ + { + "uuid": "db9b6edf-863c-47eb-b597-e57ac6409002", + "start": { + "$date": "2021-02-17T04:03:21.000Z" + }, + "end": { + "$date": "2021-02-17T07:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "b06dc305-dd3c-4b02-940b-29aeefd03fc0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-17T05:03:07.000Z" + }, + "end": { + "$date": "2021-02-17T05:11:26.000Z" + }, + "events": [ + { + "uuid": "4f29dead-3fc5-47ba-8f25-a6d69985e69c", + "start": { + "$date": "2021-02-17T05:03:07.000Z" + }, + "end": { + "$date": "2021-02-17T05:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "716dc19d-b957-4f5c-9109-b29df10e7bef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-17T05:12:32.000Z" + }, + "end": { + "$date": "2021-02-17T05:20:57.000Z" + }, + "events": [ + { + "uuid": "5b2da994-f959-4a31-9440-cf46a07cfbb1", + "start": { + "$date": "2021-02-17T05:12:32.000Z" + }, + "end": { + "$date": "2021-02-17T05:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "9b187d1b-3c0f-42cf-b11a-37bcc4b60a3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-17T05:22:45.000Z" + }, + "end": { + "$date": "2021-02-17T05:29:14.000Z" + }, + "events": [ + { + "uuid": "32714a46-a2c3-49bd-839f-51adab8c1e5c", + "start": { + "$date": "2021-02-17T05:22:45.000Z" + }, + "end": { + "$date": "2021-02-17T05:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "9d18de05-7caf-4f74-b81a-9d19ed502fa1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-17T05:22:38.000Z" + }, + "end": { + "$date": "2021-02-17T05:42:28.000Z" + }, + "events": [ + { + "uuid": "40f73d75-01a6-485d-9705-57ae51ef19b0", + "start": { + "$date": "2021-02-17T05:22:38.000Z" + }, + "end": { + "$date": "2021-02-17T05:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fd8279bd-f425-466a-b051-a941c41c3ad9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-17T05:34:32.000Z" + }, + "end": { + "$date": "2021-02-17T05:54:14.000Z" + }, + "events": [ + { + "uuid": "e1049c0f-0005-421c-839f-805184f36f9f", + "start": { + "$date": "2021-02-17T05:34:32.000Z" + }, + "end": { + "$date": "2021-02-17T05:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "d514fc10-fd8e-4890-b845-2a63bc5f4b4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-17T05:42:39.000Z" + }, + "end": { + "$date": "2021-02-17T06:55:33.000Z" + }, + "events": [ + { + "uuid": "5828358f-048d-4ada-a7de-bd776305a69e", + "start": { + "$date": "2021-02-17T05:42:39.000Z" + }, + "end": { + "$date": "2021-02-17T06:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ecebf024-f311-4ca4-85a7-96beb06062ba", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-17T06:13:48.000Z" + }, + "end": { + "$date": "2021-02-17T06:37:58.000Z" + }, + "events": [ + { + "uuid": "a6d94bf0-90e2-45a6-b9b4-23bbd971db38", + "start": { + "$date": "2021-02-17T06:13:48.000Z" + }, + "end": { + "$date": "2021-02-17T06:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "499daaa7-352d-4448-89d6-206ee7474a1f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T07:55:47.000Z" + }, + "end": { + "$date": "2021-02-17T08:17:14.000Z" + }, + "events": [ + { + "uuid": "4b6ff5ed-4dcd-4c3a-92eb-5228afeccde1", + "start": { + "$date": "2021-02-17T07:55:47.000Z" + }, + "end": { + "$date": "2021-02-17T08:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "67042556-acc9-4594-be0e-e3d7550a0283", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T08:19:24.000Z" + }, + "end": { + "$date": "2021-02-17T08:23:50.000Z" + }, + "events": [ + { + "uuid": "44937af6-5ebd-44d9-ae2d-a1f41ce960e1", + "start": { + "$date": "2021-02-17T08:19:24.000Z" + }, + "end": { + "$date": "2021-02-17T08:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "927e25c7-c759-45a5-99da-eb62a49ebcb6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-17T18:33:40.000Z" + }, + "end": { + "$date": "2021-02-17T19:31:00.000Z" + }, + "events": [ + { + "uuid": "5ae980ec-44bc-4462-8b44-ece85a713fed", + "start": { + "$date": "2021-02-17T18:33:40.000Z" + }, + "end": { + "$date": "2021-02-17T19:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "27545232-626a-44ec-a8e8-02206288ed1d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T19:17:08.000Z" + }, + "end": { + "$date": "2021-02-17T19:22:19.000Z" + }, + "events": [ + { + "uuid": "ff8d3192-bc27-46b7-8ca5-50393253b9ae", + "start": { + "$date": "2021-02-17T19:17:08.000Z" + }, + "end": { + "$date": "2021-02-17T19:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "90269459-b524-49c0-a3e2-ac411af5713c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-17T19:59:51.000Z" + }, + "end": { + "$date": "2021-02-18T00:07:23.000Z" + }, + "events": [ + { + "uuid": "70fd96f2-2c24-4359-9b33-d6e22a9f4d3f", + "start": { + "$date": "2021-02-17T19:59:51.000Z" + }, + "end": { + "$date": "2021-02-18T00:07:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c2a8797-8ce6-4d55-9342-5f50ab8ae608", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-17T19:32:06.000Z" + }, + "end": { + "$date": "2021-02-17T20:24:10.000Z" + }, + "events": [ + { + "uuid": "66a175e4-c400-4780-9cf6-bcb9406a1c87", + "start": { + "$date": "2021-02-17T19:32:06.000Z" + }, + "end": { + "$date": "2021-02-17T20:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "1625b816-300c-4285-8f70-383df589a93c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-17T20:24:20.000Z" + }, + "end": { + "$date": "2021-02-17T21:10:32.000Z" + }, + "events": [ + { + "uuid": "4295dc6a-e50f-4e19-9f1b-eeb2d46262a3", + "start": { + "$date": "2021-02-17T20:24:20.000Z" + }, + "end": { + "$date": "2021-02-17T21:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cb6ad14c-0a67-4e8f-befd-5778969f7309", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-17T21:10:37.000Z" + }, + "end": { + "$date": "2021-02-17T21:55:08.000Z" + }, + "events": [ + { + "uuid": "b0abad57-ccce-4080-9243-801a253b0b3e", + "start": { + "$date": "2021-02-17T21:10:37.000Z" + }, + "end": { + "$date": "2021-02-17T21:55:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "9edf63bf-5e8d-48da-bfad-46c688b55534", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-17T21:25:00.000Z" + }, + "end": { + "$date": "2021-02-17T21:33:23.000Z" + }, + "events": [ + { + "uuid": "08e0a30f-d5a6-4f11-8309-42a94e4618eb", + "start": { + "$date": "2021-02-17T21:25:00.000Z" + }, + "end": { + "$date": "2021-02-17T21:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "542960d9-4dae-4572-9f69-d45bb8b92dfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-17T21:38:23.000Z" + }, + "end": { + "$date": "2021-02-17T21:39:59.000Z" + }, + "events": [ + { + "uuid": "f1ec57af-904d-45f1-b6e0-989340a2ec2c", + "start": { + "$date": "2021-02-17T21:38:23.000Z" + }, + "end": { + "$date": "2021-02-17T21:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70c79395-c78b-492e-986b-57523208fbc1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-17T21:44:01.000Z" + }, + "end": { + "$date": "2021-02-17T21:46:13.000Z" + }, + "events": [ + { + "uuid": "4656d7b0-6f06-4386-811c-55f1b8b129a9", + "start": { + "$date": "2021-02-17T21:44:01.000Z" + }, + "end": { + "$date": "2021-02-17T21:46:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "49dfbedf-b706-46a4-b6c1-8a60a86d9193", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-17T21:48:51.000Z" + }, + "end": { + "$date": "2021-02-17T21:49:36.000Z" + }, + "events": [ + { + "uuid": "ff2c6836-c644-4f0d-b787-5127b438e7a5", + "start": { + "$date": "2021-02-17T21:48:51.000Z" + }, + "end": { + "$date": "2021-02-17T21:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e77ce930-3a30-495a-bf3f-6914046b0b13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-17T21:50:26.000Z" + }, + "end": { + "$date": "2021-02-17T22:09:38.000Z" + }, + "events": [ + { + "uuid": "deb8f160-53ac-4a74-ae6e-dc7e1bb69935", + "start": { + "$date": "2021-02-17T21:50:26.000Z" + }, + "end": { + "$date": "2021-02-17T22:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a7c22da6-c79c-44fc-9286-78e58d2629b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-17T23:00:32.000Z" + }, + "end": { + "$date": "2021-02-18T00:58:20.000Z" + }, + "events": [ + { + "uuid": "ed3228a4-b169-4bb1-8f26-154c035d6d3b", + "start": { + "$date": "2021-02-17T23:00:32.000Z" + }, + "end": { + "$date": "2021-02-18T00:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a3eb3f1d-83d8-46d5-85c4-7daeeddef4fb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-17T23:35:56.000Z" + }, + "end": { + "$date": "2021-02-18T01:10:11.000Z" + }, + "events": [ + { + "uuid": "0ddc55d3-0890-42ce-a5d0-096f0169b2cb", + "start": { + "$date": "2021-02-17T23:35:56.000Z" + }, + "end": { + "$date": "2021-02-18T01:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4337b927-f82d-4ab8-9e42-0c63e730fcbf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-17T23:54:05.000Z" + }, + "end": { + "$date": "2021-02-18T00:27:41.000Z" + }, + "events": [ + { + "uuid": "2f869cd0-0cfd-4f63-9b70-27433d73908d", + "start": { + "$date": "2021-02-17T23:54:05.000Z" + }, + "end": { + "$date": "2021-02-18T00:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e4becf37-0726-4ddb-b8d0-ffb9ec0f520a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-17T23:50:22.000Z" + }, + "end": { + "$date": "2021-02-18T05:27:56.000Z" + }, + "events": [ + { + "uuid": "e54c71a9-a790-4544-9aeb-d70e88882c56", + "start": { + "$date": "2021-02-17T23:50:22.000Z" + }, + "end": { + "$date": "2021-02-18T05:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cf44b313-2468-4940-b67a-624dd19c0625", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-18T00:09:28.000Z" + }, + "end": { + "$date": "2021-02-18T02:15:41.000Z" + }, + "events": [ + { + "uuid": "e188ae52-8260-4585-a84c-3d2b5c9e4019", + "start": { + "$date": "2021-02-18T00:09:28.000Z" + }, + "end": { + "$date": "2021-02-18T02:15:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d6bcb6c-fdf0-42c6-92f7-054e862e2c08", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-18T00:31:11.000Z" + }, + "end": { + "$date": "2021-02-18T00:35:38.000Z" + }, + "events": [ + { + "uuid": "5128a345-50fa-428a-bd50-08abda450b52", + "start": { + "$date": "2021-02-18T00:31:11.000Z" + }, + "end": { + "$date": "2021-02-18T00:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee2f5b0f-b33d-4cd8-88a5-447d8623dc16", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-18T00:45:33.000Z" + }, + "end": { + "$date": "2021-02-18T01:23:04.000Z" + }, + "events": [ + { + "uuid": "bcee36d0-1941-4b28-a81a-346f271c1167", + "start": { + "$date": "2021-02-18T00:45:33.000Z" + }, + "end": { + "$date": "2021-02-18T01:23:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c94b6751-fc4f-441c-a116-47174adc55ea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-18T02:20:38.000Z" + }, + "end": { + "$date": "2021-02-18T02:45:04.000Z" + }, + "events": [ + { + "uuid": "5e4f6ec8-b76d-4632-b909-47cb6c172233", + "start": { + "$date": "2021-02-18T02:20:38.000Z" + }, + "end": { + "$date": "2021-02-18T02:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "49051481-04ea-442c-8401-eb961af55a5b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T02:24:37.000Z" + }, + "end": { + "$date": "2021-02-18T02:34:08.000Z" + }, + "events": [ + { + "uuid": "06de313f-6e13-446b-8f6e-61bacc3c0344", + "start": { + "$date": "2021-02-18T02:24:37.000Z" + }, + "end": { + "$date": "2021-02-18T02:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ab0d84f5-45dc-459b-bfb0-9b4437cbb63b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T02:36:49.000Z" + }, + "end": { + "$date": "2021-02-18T04:10:18.000Z" + }, + "events": [ + { + "uuid": "ff41a387-4b55-4d91-a14a-58aa59ab8d26", + "start": { + "$date": "2021-02-18T02:36:49.000Z" + }, + "end": { + "$date": "2021-02-18T04:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7b39f91b-26ae-459a-8ccd-2ae6055e4d11", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-18T02:49:08.000Z" + }, + "end": { + "$date": "2021-02-18T07:33:52.000Z" + }, + "events": [ + { + "uuid": "ae2f39f1-fef7-481e-9c8c-345a65577bbb", + "start": { + "$date": "2021-02-18T02:49:08.000Z" + }, + "end": { + "$date": "2021-02-18T07:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "e10bf65c-4ac6-4edb-aa6c-eab78de9c46a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-18T03:31:04.000Z" + }, + "end": { + "$date": "2021-02-18T03:35:58.000Z" + }, + "events": [ + { + "uuid": "f98ada2b-6413-4794-b760-fad37e83b22d", + "start": { + "$date": "2021-02-18T03:31:04.000Z" + }, + "end": { + "$date": "2021-02-18T03:35:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "865f9c4b-fab3-4a10-ae4b-48127f591e34", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-18T03:36:09.000Z" + }, + "end": { + "$date": "2021-02-18T07:44:31.000Z" + }, + "events": [ + { + "uuid": "cc0a5b11-e964-4fc7-b3dc-8b9c9413489d", + "start": { + "$date": "2021-02-18T03:36:09.000Z" + }, + "end": { + "$date": "2021-02-18T07:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "723bf19f-2be2-46aa-b004-9de495e7a146", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-18T04:49:29.000Z" + }, + "end": { + "$date": "2021-02-18T04:52:08.000Z" + }, + "events": [ + { + "uuid": "49f0fa32-c608-4ab4-8d90-28a95bc7ca89", + "start": { + "$date": "2021-02-18T04:49:29.000Z" + }, + "end": { + "$date": "2021-02-18T04:52:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7ebadb8c-025c-4146-9e90-95d73b53eede", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T04:15:24.000Z" + }, + "end": { + "$date": "2021-02-18T04:52:09.000Z" + }, + "events": [ + { + "uuid": "783ef425-96b8-4b82-9abd-038af05da829", + "start": { + "$date": "2021-02-18T04:15:24.000Z" + }, + "end": { + "$date": "2021-02-18T04:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2a3415a-83f7-4a5d-997d-67d8d598ef03", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-18T04:53:46.000Z" + }, + "end": { + "$date": "2021-02-18T05:13:17.000Z" + }, + "events": [ + { + "uuid": "0e9174ee-d162-400a-81ca-57172b5f7d8a", + "start": { + "$date": "2021-02-18T04:53:46.000Z" + }, + "end": { + "$date": "2021-02-18T05:13:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "d1a58fe2-e21a-4e51-9433-652fd94ab29b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-18T04:52:44.000Z" + }, + "end": { + "$date": "2021-02-18T06:10:50.000Z" + }, + "events": [ + { + "uuid": "bee8baaf-4c6a-47f2-b2bf-fd57ab09b133", + "start": { + "$date": "2021-02-18T04:52:44.000Z" + }, + "end": { + "$date": "2021-02-18T06:10:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "3be26748-df47-4650-afe3-7ac1cd2e73f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T04:52:59.000Z" + }, + "end": { + "$date": "2021-02-18T06:11:10.000Z" + }, + "events": [ + { + "uuid": "664de161-a1cb-45fb-834d-16bf1c2de33e", + "start": { + "$date": "2021-02-18T04:52:59.000Z" + }, + "end": { + "$date": "2021-02-18T06:11:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7f1e47e-a409-442e-8361-419f2b356502", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-18T05:19:58.000Z" + }, + "end": { + "$date": "2021-02-18T05:54:23.000Z" + }, + "events": [ + { + "uuid": "1f46cc14-e64a-4b6e-8f02-fb1b94ecc653", + "start": { + "$date": "2021-02-18T05:19:58.000Z" + }, + "end": { + "$date": "2021-02-18T05:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "380e25d3-71a3-40ea-9605-e6263cfe70f3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-18T06:10:11.000Z" + }, + "end": { + "$date": "2021-02-18T06:49:17.000Z" + }, + "events": [ + { + "uuid": "0c1c7d95-bed0-4d39-b59e-c1a431c88193", + "start": { + "$date": "2021-02-18T06:10:11.000Z" + }, + "end": { + "$date": "2021-02-18T06:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "31b8ada7-3959-4d0b-adbb-f8de19f24ce0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-18T06:11:46.000Z" + }, + "end": { + "$date": "2021-02-18T07:21:48.000Z" + }, + "events": [ + { + "uuid": "cd7030c9-fb0e-4072-b1b8-5f973edb1362", + "start": { + "$date": "2021-02-18T06:11:46.000Z" + }, + "end": { + "$date": "2021-02-18T07:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "994fc3ff-5b80-480f-b0c1-056811bc222f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T06:12:10.000Z" + }, + "end": { + "$date": "2021-02-18T07:21:53.000Z" + }, + "events": [ + { + "uuid": "2d97f37d-4f76-4536-a008-9dc4f27cb189", + "start": { + "$date": "2021-02-18T06:12:10.000Z" + }, + "end": { + "$date": "2021-02-18T07:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "11a327a0-f49e-4955-b5ad-bc74c29ab3b1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-18T07:46:47.000Z" + }, + "end": { + "$date": "2021-02-18T08:13:38.000Z" + }, + "events": [ + { + "uuid": "bd882794-28eb-44ff-bbb8-dd227381cfae", + "start": { + "$date": "2021-02-18T07:46:47.000Z" + }, + "end": { + "$date": "2021-02-18T08:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fba66c95-9c6e-4f9b-864d-fd07ee9c4f09", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-18T07:47:29.000Z" + }, + "end": { + "$date": "2021-02-18T08:21:26.000Z" + }, + "events": [ + { + "uuid": "feac22a9-220d-41e5-a74f-5ea041dd7d01", + "start": { + "$date": "2021-02-18T07:47:29.000Z" + }, + "end": { + "$date": "2021-02-18T08:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "656b3e60-38a5-43a9-aa81-fedf3dd26836", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T16:55:15.000Z" + }, + "end": { + "$date": "2021-02-18T17:03:05.000Z" + }, + "events": [ + { + "uuid": "76205b61-6f5f-4bf6-9ba0-3d9251151207", + "start": { + "$date": "2021-02-18T16:55:15.000Z" + }, + "end": { + "$date": "2021-02-18T17:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0b66beef-84bb-4cf8-ae3f-f4227721ae94", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T17:03:30.000Z" + }, + "end": { + "$date": "2021-02-18T17:27:16.000Z" + }, + "events": [ + { + "uuid": "701c6dc3-03b8-4301-bf02-957f4bd69b62", + "start": { + "$date": "2021-02-18T17:03:30.000Z" + }, + "end": { + "$date": "2021-02-18T17:27:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "82e3b7d8-9586-407a-95c0-5229225657f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-18T18:09:14.000Z" + }, + "end": { + "$date": "2021-02-18T18:10:54.000Z" + }, + "events": [ + { + "uuid": "e1a42881-55bd-48c8-9b1b-1a636e9deb1c", + "start": { + "$date": "2021-02-18T18:09:14.000Z" + }, + "end": { + "$date": "2021-02-18T18:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "12e18671-e7ec-43ff-b1df-fc586409ae4e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T20:14:33.000Z" + }, + "end": { + "$date": "2021-02-18T21:19:22.000Z" + }, + "events": [ + { + "uuid": "448e4bff-656a-462c-ada9-9cdbd52382da", + "start": { + "$date": "2021-02-18T20:14:33.000Z" + }, + "end": { + "$date": "2021-02-18T21:30:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa68c9c6-40a7-4e03-a263-9a652123732b", + "start": { + "$date": "2021-02-18T21:30:33.000Z" + }, + "end": { + "$date": "2021-02-18T21:45:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "210b0b22-0be4-400a-8e11-19a768468c7d", + "start": { + "$date": "2021-02-18T21:45:33.000Z" + }, + "end": { + "$date": "2021-02-18T21:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "62855d38-282d-48ad-b402-009d7c386780", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-18T18:57:03.000Z" + }, + "end": { + "$date": "2021-02-18T21:02:37.000Z" + }, + "events": [ + { + "uuid": "bb644492-49ba-43fe-a889-1f3efc7cabe6", + "start": { + "$date": "2021-02-18T18:57:03.000Z" + }, + "end": { + "$date": "2021-02-18T21:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f42b0945-3007-4d23-83c4-1395a8c9e2f1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-18T19:11:01.000Z" + }, + "end": { + "$date": "2021-02-18T21:39:12.000Z" + }, + "events": [ + { + "uuid": "67de32a8-a830-4d02-a760-bbc6f7c03bd4", + "start": { + "$date": "2021-02-18T19:11:01.000Z" + }, + "end": { + "$date": "2021-02-18T20:20:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51f58e7a-7677-4661-9c19-838ca10a5cce", + "start": { + "$date": "2021-02-18T20:20:01.000Z" + }, + "end": { + "$date": "2021-02-18T21:25:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9ed8915f-7ea7-4111-ba19-b1b9e6bd936f", + "start": { + "$date": "2021-02-18T21:25:01.000Z" + }, + "end": { + "$date": "2021-02-18T21:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "831e6a37-a953-493c-bcd9-df7eaab0f7bf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-18T21:22:36.000Z" + }, + "end": { + "$date": "2021-02-19T00:32:44.000Z" + }, + "events": [ + { + "uuid": "f240d228-7f32-4d54-9513-13c5ae4e9b9b", + "start": { + "$date": "2021-02-18T21:22:36.000Z" + }, + "end": { + "$date": "2021-02-19T00:32:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bc8bdd15-aaa4-470e-b20b-6b03f16dc5f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-18T21:34:30.000Z" + }, + "end": { + "$date": "2021-02-18T21:36:20.000Z" + }, + "events": [ + { + "uuid": "838f1e85-ee98-4d72-8337-a2c46ea26cfc", + "start": { + "$date": "2021-02-18T21:34:30.000Z" + }, + "end": { + "$date": "2021-02-18T21:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7718473b-7cda-49ac-9613-23f089804dd2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-18T21:37:40.000Z" + }, + "end": { + "$date": "2021-02-18T22:41:49.000Z" + }, + "events": [ + { + "uuid": "d28b8a70-d883-44f6-8026-607b53a2c5a4", + "start": { + "$date": "2021-02-18T21:37:40.000Z" + }, + "end": { + "$date": "2021-02-18T22:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "35e96477-3ef9-43a3-9abd-2aa6e527c7a0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-18T21:40:39.000Z" + }, + "end": { + "$date": "2021-02-19T00:31:57.000Z" + }, + "events": [ + { + "uuid": "22e252fe-7ad9-4b31-be30-59a0e89b6eaf", + "start": { + "$date": "2021-02-18T21:40:39.000Z" + }, + "end": { + "$date": "2021-02-19T00:31:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3d1eabfe-ddc7-4a67-863d-91c0db5b7246", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-18T21:55:06.000Z" + }, + "end": { + "$date": "2021-02-18T21:56:31.000Z" + }, + "events": [ + { + "uuid": "60524a1c-f2f0-4909-9dad-6fb659785a9e", + "start": { + "$date": "2021-02-18T21:55:06.000Z" + }, + "end": { + "$date": "2021-02-18T21:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "577ef7cc-04cf-4975-ba24-153da4449502", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-18T22:21:28.000Z" + }, + "end": { + "$date": "2021-02-19T02:43:27.000Z" + }, + "events": [ + { + "uuid": "456d2c7c-56b1-4dc6-aeee-3a0466d6f528", + "start": { + "$date": "2021-02-18T22:21:28.000Z" + }, + "end": { + "$date": "2021-02-19T02:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0237e048-afb3-43b2-a38f-a80a84b59da6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-18T22:35:35.000Z" + }, + "end": { + "$date": "2021-02-18T22:47:42.000Z" + }, + "events": [ + { + "uuid": "b6a1b555-a909-4e67-9b93-219024de0225", + "start": { + "$date": "2021-02-18T22:35:35.000Z" + }, + "end": { + "$date": "2021-02-18T22:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "84c7c57f-f76a-4d55-b632-115e9a32b406", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-18T23:10:48.000Z" + }, + "end": { + "$date": "2021-02-18T23:51:23.000Z" + }, + "events": [ + { + "uuid": "0a559922-6651-4f7e-aaba-d206b1afadcf", + "start": { + "$date": "2021-02-18T23:10:48.000Z" + }, + "end": { + "$date": "2021-02-18T23:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "19571310-bbcc-414b-a960-309119ea8bbc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-18T23:26:11.000Z" + }, + "end": { + "$date": "2021-02-18T23:28:06.000Z" + }, + "events": [ + { + "uuid": "b6672171-a5ae-4ce5-a2e8-621225829326", + "start": { + "$date": "2021-02-18T23:26:11.000Z" + }, + "end": { + "$date": "2021-02-18T23:28:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c759c52f-ecb9-49c1-913c-f946795de255", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-18T23:31:35.000Z" + }, + "end": { + "$date": "2021-02-18T23:55:39.000Z" + }, + "events": [ + { + "uuid": "222dd4ab-f268-4dcc-96a0-9c852bc2292d", + "start": { + "$date": "2021-02-18T23:31:35.000Z" + }, + "end": { + "$date": "2021-02-18T23:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93d64a13-41b7-41b6-b5f7-a4baa8018399", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-18T23:52:59.000Z" + }, + "end": { + "$date": "2021-02-19T00:31:07.000Z" + }, + "events": [ + { + "uuid": "f114abbd-7c57-4543-9d04-2b8848d23e32", + "start": { + "$date": "2021-02-18T23:52:59.000Z" + }, + "end": { + "$date": "2021-02-19T00:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bbb7a2c-8c60-4ae6-b1d8-47df7baa8707", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T00:23:52.000Z" + }, + "end": { + "$date": "2021-02-19T00:50:55.000Z" + }, + "events": [ + { + "uuid": "6973ef7b-4db5-42b9-a910-1363132b9b91", + "start": { + "$date": "2021-02-19T00:23:52.000Z" + }, + "end": { + "$date": "2021-02-19T00:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c742da59-4bb0-4b29-a771-e2adcc48557d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-19T00:31:19.000Z" + }, + "end": { + "$date": "2021-02-19T00:32:58.000Z" + }, + "events": [ + { + "uuid": "f7f8cbaf-6278-4e37-b9c5-dab9ca5cf424", + "start": { + "$date": "2021-02-19T00:31:19.000Z" + }, + "end": { + "$date": "2021-02-19T00:32:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "482f09bd-f61f-472c-bbef-840986db8e2c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-19T00:40:19.000Z" + }, + "end": { + "$date": "2021-02-19T06:31:30.000Z" + }, + "events": [ + { + "uuid": "4b2d04be-739b-4ce3-b625-d014557152c7", + "start": { + "$date": "2021-02-19T00:40:19.000Z" + }, + "end": { + "$date": "2021-02-19T06:31:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b0bae3b-368a-463a-9cc4-721905afa044", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T00:54:09.000Z" + }, + "end": { + "$date": "2021-02-19T00:58:05.000Z" + }, + "events": [ + { + "uuid": "4a4a252b-3b2a-4483-b3d2-0fbc9d20093f", + "start": { + "$date": "2021-02-19T00:54:09.000Z" + }, + "end": { + "$date": "2021-02-19T00:58:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ccb89a6-0c95-48f8-abad-ce5ccff48a3f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T01:01:26.000Z" + }, + "end": { + "$date": "2021-02-19T01:03:39.000Z" + }, + "events": [ + { + "uuid": "e34b0748-e429-4057-8a37-7a274bd269a3", + "start": { + "$date": "2021-02-19T01:01:26.000Z" + }, + "end": { + "$date": "2021-02-19T01:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb1c85f4-066d-41d1-8fe9-f60d89bfe00e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T01:05:53.000Z" + }, + "end": { + "$date": "2021-02-19T01:09:57.000Z" + }, + "events": [ + { + "uuid": "d3189498-72b3-4335-ac98-264de3045ad5", + "start": { + "$date": "2021-02-19T01:05:53.000Z" + }, + "end": { + "$date": "2021-02-19T01:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "de4eeb04-06ec-464f-afe2-03f4e9150ac8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-19T01:08:02.000Z" + }, + "end": { + "$date": "2021-02-19T02:55:13.000Z" + }, + "events": [ + { + "uuid": "b6f2b70d-0d1a-45fe-a977-c6ba16f30cb2", + "start": { + "$date": "2021-02-19T01:08:02.000Z" + }, + "end": { + "$date": "2021-02-19T02:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "505b7816-80df-48e7-ac09-b1e624d906c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T01:10:40.000Z" + }, + "end": { + "$date": "2021-02-19T01:29:06.000Z" + }, + "events": [ + { + "uuid": "27c8e695-4db2-4b24-bc1d-53cbb3aa5720", + "start": { + "$date": "2021-02-19T01:10:40.000Z" + }, + "end": { + "$date": "2021-02-19T01:21:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "11453753-3fe3-4043-9881-0f6f28174293", + "start": { + "$date": "2021-02-19T01:21:40.000Z" + }, + "end": { + "$date": "2021-02-19T01:29:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "014b84ec-3085-4dd8-b11b-939f87eb6430", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T01:32:27.000Z" + }, + "end": { + "$date": "2021-02-19T01:34:43.000Z" + }, + "events": [ + { + "uuid": "0fc144f4-2ad8-4156-973e-9a126c9d326a", + "start": { + "$date": "2021-02-19T01:32:27.000Z" + }, + "end": { + "$date": "2021-02-19T01:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32b0b6ff-7f14-40ec-aac7-3bbf21db4003", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-19T01:40:21.000Z" + }, + "end": { + "$date": "2021-02-19T02:01:40.000Z" + }, + "events": [ + { + "uuid": "b788a2b7-28e9-4ce3-94b2-c3ef8114077e", + "start": { + "$date": "2021-02-19T01:40:21.000Z" + }, + "end": { + "$date": "2021-02-19T02:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "869eda34-5b52-4148-9b2b-8dcd29ced6d7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T01:40:28.000Z" + }, + "end": { + "$date": "2021-02-19T02:01:28.000Z" + }, + "events": [ + { + "uuid": "becc75a4-07b8-4455-aa8e-b5c8948a4972", + "start": { + "$date": "2021-02-19T01:40:28.000Z" + }, + "end": { + "$date": "2021-02-19T02:01:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ca86fd6-b33c-4052-ac07-b34bf7445e64", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-19T01:43:26.000Z" + }, + "end": { + "$date": "2021-02-19T02:01:38.000Z" + }, + "events": [ + { + "uuid": "b35d5c55-9dbe-458e-b4f6-01dca0083866", + "start": { + "$date": "2021-02-19T01:43:26.000Z" + }, + "end": { + "$date": "2021-02-19T02:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05c72c6b-f68a-4b36-8675-bdeba9123613", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-19T02:04:32.000Z" + }, + "end": { + "$date": "2021-02-19T02:26:00.000Z" + }, + "events": [ + { + "uuid": "aeefaa27-525b-4726-8992-49006a9aba62", + "start": { + "$date": "2021-02-19T02:04:32.000Z" + }, + "end": { + "$date": "2021-02-19T02:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b75f6a14-d296-42d7-be79-0d52b21d7b36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T02:05:08.000Z" + }, + "end": { + "$date": "2021-02-19T02:25:49.000Z" + }, + "events": [ + { + "uuid": "8b295b74-9f6c-4720-a321-5053d2afa0c8", + "start": { + "$date": "2021-02-19T02:05:08.000Z" + }, + "end": { + "$date": "2021-02-19T02:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7571a03c-4733-4eda-b292-bf085a372c9a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-19T02:05:17.000Z" + }, + "end": { + "$date": "2021-02-19T02:25:49.000Z" + }, + "events": [ + { + "uuid": "b6a89e59-2671-4d85-8fe5-28aec4a6a265", + "start": { + "$date": "2021-02-19T02:05:17.000Z" + }, + "end": { + "$date": "2021-02-19T02:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e1b54f4e-a8ec-4e42-9d55-6afbb38bf31c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-19T02:20:22.000Z" + }, + "end": { + "$date": "2021-02-19T02:27:19.000Z" + }, + "events": [ + { + "uuid": "0a8dd300-243b-48ff-822c-84d4cd8c5129", + "start": { + "$date": "2021-02-19T02:20:22.000Z" + }, + "end": { + "$date": "2021-02-19T02:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db8f7ad6-e6ca-40f1-9a34-3720905567c9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-19T02:27:33.000Z" + }, + "end": { + "$date": "2021-02-19T02:54:50.000Z" + }, + "events": [ + { + "uuid": "d9385470-9aa4-4700-9c5c-65d8b79e9280", + "start": { + "$date": "2021-02-19T02:27:33.000Z" + }, + "end": { + "$date": "2021-02-19T02:54:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9d2c58f-20b1-4ca5-99a2-b28c89419673", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T02:28:03.000Z" + }, + "end": { + "$date": "2021-02-19T03:08:06.000Z" + }, + "events": [ + { + "uuid": "94f19cd3-a36f-4afe-808b-3ab2e38b2577", + "start": { + "$date": "2021-02-19T02:28:03.000Z" + }, + "end": { + "$date": "2021-02-19T03:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "e7839f5e-6240-49b9-a480-f532f36d558b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-19T03:25:05.000Z" + }, + "end": { + "$date": "2021-02-19T03:26:55.000Z" + }, + "events": [ + { + "uuid": "dc6f698e-9851-4bd7-80ca-170cc2a58d43", + "start": { + "$date": "2021-02-19T03:25:05.000Z" + }, + "end": { + "$date": "2021-02-19T03:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "68307255-ed9a-42f8-835b-b39c46c19e11", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-19T03:33:50.000Z" + }, + "end": { + "$date": "2021-02-19T05:08:39.000Z" + }, + "events": [ + { + "uuid": "4d8cf543-9abe-4510-8730-3feed2061423", + "start": { + "$date": "2021-02-19T03:33:50.000Z" + }, + "end": { + "$date": "2021-02-19T05:08:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "bb5dcecb-ac61-48d9-a588-970a17ef6984", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T03:36:33.000Z" + }, + "end": { + "$date": "2021-02-19T03:53:59.000Z" + }, + "events": [ + { + "uuid": "0c7a97c9-e41b-46e3-aae8-f24c4fbf38ae", + "start": { + "$date": "2021-02-19T03:36:33.000Z" + }, + "end": { + "$date": "2021-02-19T03:53:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "34b14102-6c04-4f38-ae02-72ac8da69bfb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T03:57:54.000Z" + }, + "end": { + "$date": "2021-02-19T04:22:26.000Z" + }, + "events": [ + { + "uuid": "ba3d604f-985d-472b-88af-d1dd7dfadfa9", + "start": { + "$date": "2021-02-19T03:57:54.000Z" + }, + "end": { + "$date": "2021-02-19T04:22:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "da6d9332-7c36-4948-8b67-a1c68102194c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-19T04:19:32.000Z" + }, + "end": { + "$date": "2021-02-19T07:59:25.000Z" + }, + "events": [ + { + "uuid": "87306526-a50a-4f04-ad69-c58b6a9a0f11", + "start": { + "$date": "2021-02-19T04:19:32.000Z" + }, + "end": { + "$date": "2021-02-19T07:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "c0b6351d-b47f-4948-b024-64ac3ce94bbe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-19T05:07:38.000Z" + }, + "end": { + "$date": "2021-02-19T05:22:54.000Z" + }, + "events": [ + { + "uuid": "0a1e2468-bdde-43da-bc21-c8ad95d88d47", + "start": { + "$date": "2021-02-19T05:07:38.000Z" + }, + "end": { + "$date": "2021-02-19T05:22:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "865049c0-40de-4ff6-b4e9-fd0464092e11", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-19T05:23:14.000Z" + }, + "end": { + "$date": "2021-02-19T05:27:24.000Z" + }, + "events": [ + { + "uuid": "7c8fb810-0e12-4a6b-bacc-14dc0aef126c", + "start": { + "$date": "2021-02-19T05:23:14.000Z" + }, + "end": { + "$date": "2021-02-19T05:27:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd816fb7-c5ad-48e5-8f30-aeda38a57f2e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-19T05:32:07.000Z" + }, + "end": { + "$date": "2021-02-19T06:09:33.000Z" + }, + "events": [ + { + "uuid": "1c71c0dc-859d-4b92-93bd-5dd2cccea106", + "start": { + "$date": "2021-02-19T05:32:07.000Z" + }, + "end": { + "$date": "2021-02-19T06:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47cc68b9-b143-4cf2-944b-c3fb85deac68", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-19T06:10:34.000Z" + }, + "end": { + "$date": "2021-02-19T06:22:20.000Z" + }, + "events": [ + { + "uuid": "95f40c56-8b68-432f-83ee-18ee201bc359", + "start": { + "$date": "2021-02-19T06:10:34.000Z" + }, + "end": { + "$date": "2021-02-19T06:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "770f238b-13c7-4aac-beae-229c066f2eea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-19T06:32:19.000Z" + }, + "end": { + "$date": "2021-02-19T08:09:30.000Z" + }, + "events": [ + { + "uuid": "d7c0880b-be5e-45eb-93e6-f43d668072e6", + "start": { + "$date": "2021-02-19T06:32:19.000Z" + }, + "end": { + "$date": "2021-02-19T08:09:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "06b1bd93-ab28-48a2-a467-8e9d411ec689", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-19T08:00:20.000Z" + }, + "end": { + "$date": "2021-02-19T08:17:03.000Z" + }, + "events": [ + { + "uuid": "119b4f1f-2e5c-44bd-a641-dfdb71d30190", + "start": { + "$date": "2021-02-19T08:00:20.000Z" + }, + "end": { + "$date": "2021-02-19T08:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3c3bb499-22fc-4fca-8b44-a4d74453a6d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-19T08:18:43.000Z" + }, + "end": { + "$date": "2021-02-19T08:44:55.000Z" + }, + "events": [ + { + "uuid": "39511680-6855-4102-aa25-5916d0770e41", + "start": { + "$date": "2021-02-19T08:18:43.000Z" + }, + "end": { + "$date": "2021-02-19T08:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "483217a5-0738-4e5e-a272-a0d02646b906", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-19T15:58:14.000Z" + }, + "end": { + "$date": "2021-02-19T16:00:49.000Z" + }, + "events": [ + { + "uuid": "87c618b2-5590-425e-940a-b89a033939c7", + "start": { + "$date": "2021-02-19T15:58:14.000Z" + }, + "end": { + "$date": "2021-02-19T16:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "42a6213d-f6dc-453b-be96-b67aada8f659", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-19T16:02:09.000Z" + }, + "end": { + "$date": "2021-02-19T16:09:23.000Z" + }, + "events": [ + { + "uuid": "be396a39-1131-4931-9fbb-83d8bef2864e", + "start": { + "$date": "2021-02-19T16:02:09.000Z" + }, + "end": { + "$date": "2021-02-19T16:09:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "34b89224-662c-4074-a1f2-337483a70ed7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-19T16:39:38.000Z" + }, + "end": { + "$date": "2021-02-19T20:17:43.000Z" + }, + "events": [ + { + "uuid": "a9314e36-5466-4050-9419-00253adde715", + "start": { + "$date": "2021-02-19T16:39:38.000Z" + }, + "end": { + "$date": "2021-02-19T20:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "df93e83d-e0d0-4be2-9fba-b62b44609d88", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T16:50:19.000Z" + }, + "end": { + "$date": "2021-02-19T16:52:34.000Z" + }, + "events": [ + { + "uuid": "2654265f-7b69-433a-b311-e9450c420e76", + "start": { + "$date": "2021-02-19T16:50:19.000Z" + }, + "end": { + "$date": "2021-02-19T16:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5d94f682-1861-4b2d-acad-ac940d53c3e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T17:04:50.000Z" + }, + "end": { + "$date": "2021-02-19T17:07:49.000Z" + }, + "events": [ + { + "uuid": "387c3764-868b-4b40-b65f-9f59f4b8fa8f", + "start": { + "$date": "2021-02-19T17:04:50.000Z" + }, + "end": { + "$date": "2021-02-19T17:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "6b7b15ff-6f61-4ae5-a323-345560749788", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T17:45:21.000Z" + }, + "end": { + "$date": "2021-02-19T18:50:28.000Z" + }, + "events": [ + { + "uuid": "f4514f0d-8645-410d-8a3f-76cbcaa4c738", + "start": { + "$date": "2021-02-19T17:45:21.000Z" + }, + "end": { + "$date": "2021-02-19T18:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6906ca7-cf59-4400-b3c9-51448e2c09f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-19T20:20:38.000Z" + }, + "end": { + "$date": "2021-02-19T21:49:18.000Z" + }, + "events": [ + { + "uuid": "60b14bcf-8774-4df8-a402-38e8215ee697", + "start": { + "$date": "2021-02-19T20:20:38.000Z" + }, + "end": { + "$date": "2021-02-19T23:50:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3f7f8eb-5d92-4d6c-9edc-5af44529705b", + "start": { + "$date": "2021-02-19T23:50:38.000Z" + }, + "end": { + "$date": "2021-02-19T23:55:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "86d26101-2367-4616-9f43-d21b8a1cadf9", + "start": { + "$date": "2021-02-19T23:55:38.000Z" + }, + "end": { + "$date": "2021-02-20T00:05:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c13693d8-661e-46a5-b349-4509018ab8e1", + "start": { + "$date": "2021-02-20T00:05:38.000Z" + }, + "end": { + "$date": "2021-02-20T00:07:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d797290-4473-4062-8a68-480be43f1bbf", + "start": { + "$date": "2021-02-20T00:07:38.000Z" + }, + "end": { + "$date": "2021-02-19T21:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "005fded0-4ee5-4784-892e-938496f88b4b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-19T20:10:28.000Z" + }, + "end": { + "$date": "2021-02-20T01:08:17.000Z" + }, + "events": [ + { + "uuid": "f30e9b06-8684-4a7e-9036-5c3ad4e04ec2", + "start": { + "$date": "2021-02-19T20:10:28.000Z" + }, + "end": { + "$date": "2021-02-20T01:08:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d8bbdc5-9b25-4135-ab02-36e185bfd905", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T20:13:09.000Z" + }, + "end": { + "$date": "2021-02-19T20:41:15.000Z" + }, + "events": [ + { + "uuid": "0746710d-acf6-4eee-8af3-7ce25fe64ad3", + "start": { + "$date": "2021-02-19T20:13:09.000Z" + }, + "end": { + "$date": "2021-02-19T20:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "773edfb1-7296-4527-ba0f-e878ba8d31db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-19T20:31:39.000Z" + }, + "end": { + "$date": "2021-02-19T21:15:08.000Z" + }, + "events": [ + { + "uuid": "cd570235-a647-4d8b-bd1b-1504c5790685", + "start": { + "$date": "2021-02-19T20:31:39.000Z" + }, + "end": { + "$date": "2021-02-19T21:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "977a5228-068a-4017-9ddc-9afda4d242aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T20:41:47.000Z" + }, + "end": { + "$date": "2021-02-19T21:51:27.000Z" + }, + "events": [ + { + "uuid": "73ee60c5-c937-4740-a038-55a9dc30aa6e", + "start": { + "$date": "2021-02-19T20:41:47.000Z" + }, + "end": { + "$date": "2021-02-19T21:51:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bd482df9-396c-4e6f-b821-f5cb87f183fd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-19T20:46:11.000Z" + }, + "end": { + "$date": "2021-02-19T22:54:57.000Z" + }, + "events": [ + { + "uuid": "393b60e6-e16a-46ad-999d-5ffa29f3e60c", + "start": { + "$date": "2021-02-19T20:46:11.000Z" + }, + "end": { + "$date": "2021-02-19T20:57:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5bd42ea9-5db2-4bb9-9224-ff57c7506a40", + "start": { + "$date": "2021-02-19T20:57:11.000Z" + }, + "end": { + "$date": "2021-02-19T21:02:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cba62968-0199-423a-9e41-6c8bfbef438d", + "start": { + "$date": "2021-02-19T21:02:11.000Z" + }, + "end": { + "$date": "2021-02-19T22:54:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a79f8b27-6b5b-4bf9-b6a8-e74ac2fbd554", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-19T21:22:55.000Z" + }, + "end": { + "$date": "2021-02-19T22:59:48.000Z" + }, + "events": [ + { + "uuid": "71f92d3e-35e3-4b45-9435-7e83b167aa68", + "start": { + "$date": "2021-02-19T21:22:55.000Z" + }, + "end": { + "$date": "2021-02-19T22:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d129d189-c635-47b2-a9fd-d6d36656faa2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-19T21:49:38.000Z" + }, + "end": { + "$date": "2021-02-19T22:10:45.000Z" + }, + "events": [ + { + "uuid": "64e02ec8-7b8a-4ad2-9f14-567c4ce36ebe", + "start": { + "$date": "2021-02-19T21:49:38.000Z" + }, + "end": { + "$date": "2021-02-19T22:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8e99739b-18ce-4ef4-8190-6c17b8594dc3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-19T21:51:20.000Z" + }, + "end": { + "$date": "2021-02-19T23:03:47.000Z" + }, + "events": [ + { + "uuid": "c49b060d-7a13-42ac-8151-41d4a1077b87", + "start": { + "$date": "2021-02-19T21:51:20.000Z" + }, + "end": { + "$date": "2021-02-19T23:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b96e652-05b4-40da-83bd-b64298a18e24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T21:53:47.000Z" + }, + "end": { + "$date": "2021-02-19T22:17:22.000Z" + }, + "events": [ + { + "uuid": "1047f5b9-bb2c-41a4-b163-1e29c0b542dc", + "start": { + "$date": "2021-02-19T21:53:47.000Z" + }, + "end": { + "$date": "2021-02-19T22:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cb77261-a4d9-405d-bf07-bee4c2b9c4c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T22:27:28.000Z" + }, + "end": { + "$date": "2021-02-19T22:39:48.000Z" + }, + "events": [ + { + "uuid": "f4ec4b6c-52bf-452e-a677-a918385bc3f9", + "start": { + "$date": "2021-02-19T22:27:28.000Z" + }, + "end": { + "$date": "2021-02-19T22:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e065f36f-7584-41c9-8128-6e52dbc27a0a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T22:43:54.000Z" + }, + "end": { + "$date": "2021-02-19T23:02:49.000Z" + }, + "events": [ + { + "uuid": "8f80c00e-ccad-4ffa-80ec-a596fcf32537", + "start": { + "$date": "2021-02-19T22:43:54.000Z" + }, + "end": { + "$date": "2021-02-19T23:02:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14766929-415a-4573-8488-ae1ca44ab314", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T23:05:59.000Z" + }, + "end": { + "$date": "2021-02-19T23:26:24.000Z" + }, + "events": [ + { + "uuid": "7312899f-fa9e-494f-b460-412ad4fa5365", + "start": { + "$date": "2021-02-19T23:05:59.000Z" + }, + "end": { + "$date": "2021-02-19T23:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "9033f03a-6308-456a-a3f1-2a85bfdba0a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-19T23:03:57.000Z" + }, + "end": { + "$date": "2021-02-19T23:48:58.000Z" + }, + "events": [ + { + "uuid": "005c3e03-7504-4ab8-9672-72b2dcfbfe91", + "start": { + "$date": "2021-02-19T23:03:57.000Z" + }, + "end": { + "$date": "2021-02-19T23:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acc8dfc7-4ed8-44d9-bc5c-d71b34c60e52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T23:28:54.000Z" + }, + "end": { + "$date": "2021-02-19T23:31:03.000Z" + }, + "events": [ + { + "uuid": "840d1769-5446-427e-a09e-dabb5d44ee1d", + "start": { + "$date": "2021-02-19T23:28:54.000Z" + }, + "end": { + "$date": "2021-02-19T23:31:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a1bd80f-7546-451b-8ade-6761954714e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T23:32:45.000Z" + }, + "end": { + "$date": "2021-02-19T23:51:39.000Z" + }, + "events": [ + { + "uuid": "2b98b2be-6306-437f-994a-4d409a1b1840", + "start": { + "$date": "2021-02-19T23:32:45.000Z" + }, + "end": { + "$date": "2021-02-19T23:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7c653980-8db5-4d15-9a87-f76f37a354e5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-19T23:49:03.000Z" + }, + "end": { + "$date": "2021-02-20T03:37:10.000Z" + }, + "events": [ + { + "uuid": "443d1d9a-cbee-4fef-b1d0-27db5f722e1b", + "start": { + "$date": "2021-02-19T23:49:03.000Z" + }, + "end": { + "$date": "2021-02-20T03:23:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc88292a-c5c3-404d-ba79-ded838f0128f", + "start": { + "$date": "2021-02-20T03:23:03.000Z" + }, + "end": { + "$date": "2021-02-20T03:24:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0156066a-c6df-4b61-9a59-420f960a1057", + "start": { + "$date": "2021-02-20T03:24:03.000Z" + }, + "end": { + "$date": "2021-02-20T03:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5839c0ae-b412-4c8a-af91-228b2ef04ebd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-19T23:56:50.000Z" + }, + "end": { + "$date": "2021-02-20T00:21:40.000Z" + }, + "events": [ + { + "uuid": "94706317-0a91-4c86-b728-b0c6a508f96e", + "start": { + "$date": "2021-02-19T23:56:50.000Z" + }, + "end": { + "$date": "2021-02-20T00:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8be0832d-29a3-45cd-88b8-15aadcd79905", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T00:58:49.000Z" + }, + "end": { + "$date": "2021-02-20T03:22:17.000Z" + }, + "events": [ + { + "uuid": "3dc55939-1433-42c0-8af8-c7cbf9215d78", + "start": { + "$date": "2021-02-20T00:58:49.000Z" + }, + "end": { + "$date": "2021-02-20T03:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c94da005-1005-4a2d-99d0-91cae26d3e1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T02:02:03.000Z" + }, + "end": { + "$date": "2021-02-20T02:20:03.000Z" + }, + "events": [ + { + "uuid": "399d7c02-96eb-48ca-a070-321b4ebe7466", + "start": { + "$date": "2021-02-20T02:02:03.000Z" + }, + "end": { + "$date": "2021-02-20T02:20:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "795e3c6b-7727-4624-a92d-2c2cba4801f4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T02:09:20.000Z" + }, + "end": { + "$date": "2021-02-20T03:24:14.000Z" + }, + "events": [ + { + "uuid": "11d489c7-aafe-4d13-a4f3-5526463f5813", + "start": { + "$date": "2021-02-20T02:09:20.000Z" + }, + "end": { + "$date": "2021-02-20T03:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8c65c1bb-4033-4b4d-bb96-757f11e993d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T02:11:57.000Z" + }, + "end": { + "$date": "2021-02-20T03:49:37.000Z" + }, + "events": [ + { + "uuid": "50088454-c798-4291-a253-a3e5045225dd", + "start": { + "$date": "2021-02-20T02:11:57.000Z" + }, + "end": { + "$date": "2021-02-20T03:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "706c5727-d669-4746-8d4e-e582e3101dcd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T02:21:12.000Z" + }, + "end": { + "$date": "2021-02-20T03:19:28.000Z" + }, + "events": [ + { + "uuid": "af37a395-9187-46cc-ba8b-d1fc1aac8a68", + "start": { + "$date": "2021-02-20T02:21:12.000Z" + }, + "end": { + "$date": "2021-02-20T03:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4811c472-b9b6-4e97-8514-40885a19e294", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T02:22:58.000Z" + }, + "end": { + "$date": "2021-02-20T02:42:43.000Z" + }, + "events": [ + { + "uuid": "820a5aa9-33f1-47cf-bd4e-41df78d6252d", + "start": { + "$date": "2021-02-20T02:22:58.000Z" + }, + "end": { + "$date": "2021-02-20T02:42:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b503e08f-ee5f-4650-bec3-3b8b9b36fd50", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T02:46:34.000Z" + }, + "end": { + "$date": "2021-02-20T03:07:19.000Z" + }, + "events": [ + { + "uuid": "a4f3384b-29f0-446b-bcd1-d89ee3ef0e13", + "start": { + "$date": "2021-02-20T02:46:34.000Z" + }, + "end": { + "$date": "2021-02-20T03:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fd83c647-3024-4409-82c5-9523d05f0df9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-20T03:02:22.000Z" + }, + "end": { + "$date": "2021-02-20T03:03:27.000Z" + }, + "events": [ + { + "uuid": "96b77177-7a42-4c4b-aed6-5e1e471fc636", + "start": { + "$date": "2021-02-20T03:02:22.000Z" + }, + "end": { + "$date": "2021-02-20T03:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1f87b0c-eaa2-4b7c-9226-1daeeb5bdf5e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T03:10:46.000Z" + }, + "end": { + "$date": "2021-02-20T03:25:24.000Z" + }, + "events": [ + { + "uuid": "1077fc4a-c8b6-4bc1-b478-b070d9fc737d", + "start": { + "$date": "2021-02-20T03:10:46.000Z" + }, + "end": { + "$date": "2021-02-20T03:25:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "923d0192-b735-42cd-94a7-44fca0fca38d", + "uuid": "9ab661ec-5354-49a6-bfd0-f56bcb3780d1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T03:26:31.000Z" + }, + "end": { + "$date": "2021-02-20T03:51:19.000Z" + }, + "events": [ + { + "uuid": "112fbb4e-2a8f-4c6f-acf0-5888319523b3", + "start": { + "$date": "2021-02-20T03:26:31.000Z" + }, + "end": { + "$date": "2021-02-20T03:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", + "uuid": "9ab336da-59e1-40e2-a94c-b41115ea8564", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T03:26:47.000Z" + }, + "end": { + "$date": "2021-02-20T03:30:49.000Z" + }, + "events": [ + { + "uuid": "8a490854-fcdd-4fa8-99ca-88dc70251782", + "start": { + "$date": "2021-02-20T03:26:47.000Z" + }, + "end": { + "$date": "2021-02-20T03:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", + "uuid": "6cbe60f5-315e-481b-9d5f-011ec8ef4331", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T03:30:53.000Z" + }, + "end": { + "$date": "2021-02-20T07:06:47.000Z" + }, + "events": [ + { + "uuid": "e5ef1406-db13-4427-9aa2-1be17123abee", + "start": { + "$date": "2021-02-20T03:30:53.000Z" + }, + "end": { + "$date": "2021-02-20T07:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "07449e39-59d7-4408-908e-538cff1d684e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T03:33:32.000Z" + }, + "end": { + "$date": "2021-02-20T03:56:00.000Z" + }, + "events": [ + { + "uuid": "6746b3e9-3ee7-4841-806a-2a4fa0d11b40", + "start": { + "$date": "2021-02-20T03:33:32.000Z" + }, + "end": { + "$date": "2021-02-20T03:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "1ca75d52-c877-4931-b84b-9c85b4165ea9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T03:37:24.000Z" + }, + "end": { + "$date": "2021-02-20T03:54:21.000Z" + }, + "events": [ + { + "uuid": "1dd3a633-6b45-4350-b4ec-ea02b4f26e1e", + "start": { + "$date": "2021-02-20T03:37:24.000Z" + }, + "end": { + "$date": "2021-02-20T03:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "109634e2-1b45-4942-a515-a804d9225724", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T03:54:56.000Z" + }, + "end": { + "$date": "2021-02-20T05:31:18.000Z" + }, + "events": [ + { + "uuid": "4c363c85-2e81-4715-b1a6-ad090797d41c", + "start": { + "$date": "2021-02-20T03:54:56.000Z" + }, + "end": { + "$date": "2021-02-20T05:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "5d3aecf0-bf1b-46fa-bc48-b59c8bf05ef2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T03:56:56.000Z" + }, + "end": { + "$date": "2021-02-20T05:31:10.000Z" + }, + "events": [ + { + "uuid": "02dc9b72-01e3-4881-a88c-ae6239fd6277", + "start": { + "$date": "2021-02-20T03:56:56.000Z" + }, + "end": { + "$date": "2021-02-20T05:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a56ad76-648f-417d-bb38-d484a186b4a1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T04:00:51.000Z" + }, + "end": { + "$date": "2021-02-20T04:22:13.000Z" + }, + "events": [ + { + "uuid": "313c2c3d-9797-49af-95df-25576eb01be4", + "start": { + "$date": "2021-02-20T04:00:51.000Z" + }, + "end": { + "$date": "2021-02-20T04:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce0ce26e-df85-45a1-8b13-91cd27a3861a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T04:00:48.000Z" + }, + "end": { + "$date": "2021-02-20T04:22:13.000Z" + }, + "events": [ + { + "uuid": "eaa24d76-6e98-47d6-a1d0-c54e62ffb9ac", + "start": { + "$date": "2021-02-20T04:00:48.000Z" + }, + "end": { + "$date": "2021-02-20T04:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2230e31f-7944-491d-a3d8-fb77b2ab5a10", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T04:00:55.000Z" + }, + "end": { + "$date": "2021-02-20T04:22:15.000Z" + }, + "events": [ + { + "uuid": "8e9ff9dd-4234-49d4-b89c-0fa620915ce4", + "start": { + "$date": "2021-02-20T04:00:55.000Z" + }, + "end": { + "$date": "2021-02-20T04:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f67d6af5-6a8b-4152-ae1b-aa1ce31f66f4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T03:59:09.000Z" + }, + "end": { + "$date": "2021-02-20T05:42:22.000Z" + }, + "events": [ + { + "uuid": "33a3a8c1-bb9d-4c51-b0ba-b4143c5b1cfd", + "start": { + "$date": "2021-02-20T03:59:09.000Z" + }, + "end": { + "$date": "2021-02-20T05:42:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faebfc0e-4102-485b-82d6-3fcee0e9fd1e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T04:24:57.000Z" + }, + "end": { + "$date": "2021-02-20T04:50:19.000Z" + }, + "events": [ + { + "uuid": "d760d4b6-856c-4f9b-b904-f96b8ca1450b", + "start": { + "$date": "2021-02-20T04:24:57.000Z" + }, + "end": { + "$date": "2021-02-20T04:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83ea0816-2e6e-41e7-9a62-9d106bf85f28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T04:25:06.000Z" + }, + "end": { + "$date": "2021-02-20T04:50:24.000Z" + }, + "events": [ + { + "uuid": "5cdbef85-4c7a-4b62-9e48-ae7907588742", + "start": { + "$date": "2021-02-20T04:25:06.000Z" + }, + "end": { + "$date": "2021-02-20T04:50:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d21053a0-e2c2-4d18-9485-b9f7f044012b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T04:25:14.000Z" + }, + "end": { + "$date": "2021-02-20T04:50:14.000Z" + }, + "events": [ + { + "uuid": "864403ce-857a-4fbc-a003-6aeedeebe0d1", + "start": { + "$date": "2021-02-20T04:25:14.000Z" + }, + "end": { + "$date": "2021-02-20T04:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "864de9b8-e28f-4111-be03-ad499010310d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T04:53:58.000Z" + }, + "end": { + "$date": "2021-02-20T05:13:35.000Z" + }, + "events": [ + { + "uuid": "67792ade-f231-4546-9240-0ba22f61e773", + "start": { + "$date": "2021-02-20T04:53:58.000Z" + }, + "end": { + "$date": "2021-02-20T05:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62132898-2c42-4422-a22b-6b56abf9902a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T04:53:44.000Z" + }, + "end": { + "$date": "2021-02-20T05:13:34.000Z" + }, + "events": [ + { + "uuid": "776384af-7d5e-45d4-a695-e33e1b641a37", + "start": { + "$date": "2021-02-20T04:53:44.000Z" + }, + "end": { + "$date": "2021-02-20T05:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d727dac-e125-4e6b-b00e-5ecdf1830aa5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T04:53:22.000Z" + }, + "end": { + "$date": "2021-02-20T05:13:38.000Z" + }, + "events": [ + { + "uuid": "6a64bdbb-452e-477e-9d2c-278175d5712c", + "start": { + "$date": "2021-02-20T04:53:22.000Z" + }, + "end": { + "$date": "2021-02-20T05:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c44e15a4-9a04-4158-a1f2-dcf45b5eb54d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-20T04:56:45.000Z" + }, + "end": { + "$date": "2021-02-20T05:08:14.000Z" + }, + "events": [ + { + "uuid": "e58bc4d2-a9f1-4c4c-8aeb-61648a0e1223", + "start": { + "$date": "2021-02-20T04:56:45.000Z" + }, + "end": { + "$date": "2021-02-20T05:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "2e515656-c616-4414-8b15-4428037bb561", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-20T05:08:40.000Z" + }, + "end": { + "$date": "2021-02-20T09:11:30.000Z" + }, + "events": [ + { + "uuid": "a6cd825c-028b-43e5-9355-2151e2683ecc", + "start": { + "$date": "2021-02-20T05:08:40.000Z" + }, + "end": { + "$date": "2021-02-20T09:11:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a7e242d-0803-4e5e-830b-5baab94365a6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T05:16:59.000Z" + }, + "end": { + "$date": "2021-02-20T05:34:15.000Z" + }, + "events": [ + { + "uuid": "2d8ae918-4ecf-4485-8fdc-db258a94cbed", + "start": { + "$date": "2021-02-20T05:16:59.000Z" + }, + "end": { + "$date": "2021-02-20T05:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a37eca4b-a383-42ff-9b3a-b79d6c36fb7a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T05:17:08.000Z" + }, + "end": { + "$date": "2021-02-20T05:34:23.000Z" + }, + "events": [ + { + "uuid": "94fe0b49-60ee-41f9-b959-bd69c184c7af", + "start": { + "$date": "2021-02-20T05:17:08.000Z" + }, + "end": { + "$date": "2021-02-20T05:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e510f5c-51e9-44cf-bdb8-0d452d2deddf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T05:17:00.000Z" + }, + "end": { + "$date": "2021-02-20T05:34:15.000Z" + }, + "events": [ + { + "uuid": "4173f906-f73a-4a34-8b4c-42909b3ff3b5", + "start": { + "$date": "2021-02-20T05:17:00.000Z" + }, + "end": { + "$date": "2021-02-20T05:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6456579b-a4a7-495f-b0e7-c2a92b17f838", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T05:36:29.000Z" + }, + "end": { + "$date": "2021-02-20T05:58:51.000Z" + }, + "events": [ + { + "uuid": "9174b1bc-b2c7-4b3e-8d28-a3ba0b457e8f", + "start": { + "$date": "2021-02-20T05:36:29.000Z" + }, + "end": { + "$date": "2021-02-20T05:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df162f8f-5d56-43e4-865a-8fbfa9a14628", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T05:36:30.000Z" + }, + "end": { + "$date": "2021-02-20T05:58:50.000Z" + }, + "events": [ + { + "uuid": "e762a22b-f1ce-4ed6-ba27-6ebd8c021774", + "start": { + "$date": "2021-02-20T05:36:30.000Z" + }, + "end": { + "$date": "2021-02-20T05:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4bd9687-e712-4d88-af65-535c67db89d9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T05:36:34.000Z" + }, + "end": { + "$date": "2021-02-20T05:58:50.000Z" + }, + "events": [ + { + "uuid": "454b51a8-2e94-4002-b12e-ac166d7cfb85", + "start": { + "$date": "2021-02-20T05:36:34.000Z" + }, + "end": { + "$date": "2021-02-20T05:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a2809fa5-6b1a-458e-8051-1b9fea28d23e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T05:41:44.000Z" + }, + "end": { + "$date": "2021-02-20T06:35:30.000Z" + }, + "events": [ + { + "uuid": "55d75895-9f61-401e-8a72-50b863897d6b", + "start": { + "$date": "2021-02-20T05:41:44.000Z" + }, + "end": { + "$date": "2021-02-20T06:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f261b495-b3ae-46b9-8280-57f3c846a2eb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T05:42:46.000Z" + }, + "end": { + "$date": "2021-02-20T06:35:53.000Z" + }, + "events": [ + { + "uuid": "c6fe364a-2185-4e56-8faf-05accb2760fd", + "start": { + "$date": "2021-02-20T05:42:46.000Z" + }, + "end": { + "$date": "2021-02-20T06:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4cf29491-5a09-4d59-ad94-2e62ff654ac1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T06:00:20.000Z" + }, + "end": { + "$date": "2021-02-20T09:07:45.000Z" + }, + "events": [ + { + "uuid": "b5bf3703-b735-431b-876a-bc7781b110dd", + "start": { + "$date": "2021-02-20T06:00:20.000Z" + }, + "end": { + "$date": "2021-02-20T09:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ab545af3-10b4-4898-8593-de579b36f309", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T06:35:50.000Z" + }, + "end": { + "$date": "2021-02-20T06:50:55.000Z" + }, + "events": [ + { + "uuid": "8a0600dc-d2dc-4cd5-b171-af6882ce78b9", + "start": { + "$date": "2021-02-20T06:35:50.000Z" + }, + "end": { + "$date": "2021-02-20T06:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "063ee0a4-54c4-4a14-9cc7-4116befaa509", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T06:40:19.000Z" + }, + "end": { + "$date": "2021-02-20T08:14:40.000Z" + }, + "events": [ + { + "uuid": "0e42c298-1034-4376-9885-d89c1fc00834", + "start": { + "$date": "2021-02-20T06:40:19.000Z" + }, + "end": { + "$date": "2021-02-20T06:53:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b3e2169-036e-4e54-bc78-1638189e9043", + "start": { + "$date": "2021-02-20T06:53:19.000Z" + }, + "end": { + "$date": "2021-02-20T06:56:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9184453c-7163-4464-94f9-bf077e6d05e2", + "start": { + "$date": "2021-02-20T06:56:19.000Z" + }, + "end": { + "$date": "2021-02-20T08:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c07fa079-e836-4a6b-9eda-37f664f1faa0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T07:05:31.000Z" + }, + "end": { + "$date": "2021-02-20T08:26:26.000Z" + }, + "events": [ + { + "uuid": "70fc609e-848a-447d-9172-f7ee0652adce", + "start": { + "$date": "2021-02-20T07:05:31.000Z" + }, + "end": { + "$date": "2021-02-20T08:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ec844734-6b75-47f6-a353-1a564056fb41", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T07:13:10.000Z" + }, + "end": { + "$date": "2021-02-20T07:22:31.000Z" + }, + "events": [ + { + "uuid": "330c512c-a041-47fa-b8e6-c226a1c6ac8f", + "start": { + "$date": "2021-02-20T07:13:10.000Z" + }, + "end": { + "$date": "2021-02-20T07:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "669c607e-b8f3-4bee-ace3-10f1e384cd6e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T08:07:51.000Z" + }, + "end": { + "$date": "2021-02-20T09:22:17.000Z" + }, + "events": [ + { + "uuid": "3470d67a-0113-4446-bf2a-5a8570ecd4ac", + "start": { + "$date": "2021-02-20T08:07:51.000Z" + }, + "end": { + "$date": "2021-02-20T09:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1bb28705-69c8-414e-9bc6-41af1de50d49", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T08:52:53.000Z" + }, + "end": { + "$date": "2021-02-20T10:23:12.000Z" + }, + "events": [ + { + "uuid": "c3ed576e-3389-4fbf-8d1f-51bbea32a554", + "start": { + "$date": "2021-02-20T08:52:53.000Z" + }, + "end": { + "$date": "2021-02-20T10:23:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "04587646-797a-4826-b653-cf212d629569", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T15:56:42.000Z" + }, + "end": { + "$date": "2021-02-20T16:00:58.000Z" + }, + "events": [ + { + "uuid": "ac6dec7f-92d0-4e4c-89b5-012a89e2a6b4", + "start": { + "$date": "2021-02-20T15:56:42.000Z" + }, + "end": { + "$date": "2021-02-20T16:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4d57449b-f9d9-4ee8-a8ae-13b321b10249", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T16:01:38.000Z" + }, + "end": { + "$date": "2021-02-20T17:27:39.000Z" + }, + "events": [ + { + "uuid": "8c29c31a-820e-4a7b-bf8b-0bdbf6ab9301", + "start": { + "$date": "2021-02-20T16:01:38.000Z" + }, + "end": { + "$date": "2021-02-20T17:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b51e22a4-f689-4415-a0a8-3ff41488c5eb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T16:05:40.000Z" + }, + "end": { + "$date": "2021-02-20T18:08:26.000Z" + }, + "events": [ + { + "uuid": "b424b98e-488f-4926-8cb0-db82f16d7c52", + "start": { + "$date": "2021-02-20T16:05:40.000Z" + }, + "end": { + "$date": "2021-02-20T18:08:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dbd204b4-b504-47e7-a75a-36bfe0f48c2b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T16:21:53.000Z" + }, + "end": { + "$date": "2021-02-20T17:42:30.000Z" + }, + "events": [ + { + "uuid": "28cb960b-8876-433b-93aa-fbb9e821ea29", + "start": { + "$date": "2021-02-20T16:21:53.000Z" + }, + "end": { + "$date": "2021-02-20T16:35:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e9c6822-6fb8-466d-88da-43cddec9ecaa", + "start": { + "$date": "2021-02-20T16:35:53.000Z" + }, + "end": { + "$date": "2021-02-20T16:39:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8bb44a1-289f-451f-851e-6ab9ec322046", + "start": { + "$date": "2021-02-20T16:39:53.000Z" + }, + "end": { + "$date": "2021-02-20T17:42:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99a3ee98-8dbd-47b4-8349-9600cd41bf71", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T17:27:59.000Z" + }, + "end": { + "$date": "2021-02-20T17:29:09.000Z" + }, + "events": [ + { + "uuid": "f82e42eb-9f8f-4fc4-bdc5-7856121354db", + "start": { + "$date": "2021-02-20T17:27:59.000Z" + }, + "end": { + "$date": "2021-02-20T17:29:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a51a9688-1b3c-4faf-acd6-52d038fc5685", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T17:29:14.000Z" + }, + "end": { + "$date": "2021-02-20T17:31:15.000Z" + }, + "events": [ + { + "uuid": "45ef6899-f0aa-4f10-815f-f5a3135276c9", + "start": { + "$date": "2021-02-20T17:29:14.000Z" + }, + "end": { + "$date": "2021-02-20T17:31:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "378159c2-4449-43a0-a5d9-d0026e5fdcbf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T17:33:30.000Z" + }, + "end": { + "$date": "2021-02-20T18:17:41.000Z" + }, + "events": [ + { + "uuid": "7de67dd4-4d19-4266-8f44-8bb9e68fd16d", + "start": { + "$date": "2021-02-20T17:33:30.000Z" + }, + "end": { + "$date": "2021-02-20T18:17:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d68dbb90-4270-4caa-b15d-c2a281e7ff4b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T18:09:42.000Z" + }, + "end": { + "$date": "2021-02-20T18:23:58.000Z" + }, + "events": [ + { + "uuid": "c0fa05fb-7afa-4e24-8c80-ca595ee32a14", + "start": { + "$date": "2021-02-20T18:09:42.000Z" + }, + "end": { + "$date": "2021-02-20T18:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "88f80848-56f6-4988-bc0f-e2471ac87bce", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T18:17:46.000Z" + }, + "end": { + "$date": "2021-02-20T19:00:25.000Z" + }, + "events": [ + { + "uuid": "5aab612e-8dc9-4b3c-ac1a-66b3eb4a417d", + "start": { + "$date": "2021-02-20T18:17:46.000Z" + }, + "end": { + "$date": "2021-02-20T19:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ab7b9f5-c968-4e58-8275-419702540da7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T19:10:46.000Z" + }, + "end": { + "$date": "2021-02-20T19:43:15.000Z" + }, + "events": [ + { + "uuid": "bf68f782-8d87-43d0-8e22-557ecf205a36", + "start": { + "$date": "2021-02-20T19:10:46.000Z" + }, + "end": { + "$date": "2021-02-20T19:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a40aa53b-c987-483e-a68a-4ac1d00c6ca9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T19:18:03.000Z" + }, + "end": { + "$date": "2021-02-20T19:19:34.000Z" + }, + "events": [ + { + "uuid": "752298d7-f394-4ee9-a78f-8cfb05dbf24a", + "start": { + "$date": "2021-02-20T19:18:03.000Z" + }, + "end": { + "$date": "2021-02-20T19:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c49ad8e2-dffb-46e8-8456-b5527e813e83", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-20T19:31:45.000Z" + }, + "end": { + "$date": "2021-02-20T20:34:41.000Z" + }, + "events": [ + { + "uuid": "a8bdf7f2-559d-4fd1-8fdb-5edc20b93e38", + "start": { + "$date": "2021-02-20T19:31:45.000Z" + }, + "end": { + "$date": "2021-02-20T20:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "038fb780-49f9-4edf-aa2c-51c47e494102", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T20:15:18.000Z" + }, + "end": { + "$date": "2021-02-20T20:59:11.000Z" + }, + "events": [ + { + "uuid": "51bde14a-0ade-4bf7-b507-360eaa23c51b", + "start": { + "$date": "2021-02-20T20:15:18.000Z" + }, + "end": { + "$date": "2021-02-20T20:59:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d420f7cc-38a0-410f-a869-0caa26272113", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T20:16:59.000Z" + }, + "end": { + "$date": "2021-02-20T21:25:25.000Z" + }, + "events": [ + { + "uuid": "05e1c201-7d28-45ec-9254-d8a4802d7528", + "start": { + "$date": "2021-02-20T20:16:59.000Z" + }, + "end": { + "$date": "2021-02-20T21:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "7e22ac5a-8ec9-4a12-8d2d-e6ad13c25802", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-20T20:19:22.000Z" + }, + "end": { + "$date": "2021-02-20T21:17:09.000Z" + }, + "events": [ + { + "uuid": "553f9d14-2d66-4358-a186-f049aba558cf", + "start": { + "$date": "2021-02-20T20:19:22.000Z" + }, + "end": { + "$date": "2021-02-20T21:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a718cb36-c259-4639-a859-6b366960d534", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T21:02:14.000Z" + }, + "end": { + "$date": "2021-02-20T21:37:17.000Z" + }, + "events": [ + { + "uuid": "445f0f8b-b1fc-4815-8bb5-47f007dc0e5f", + "start": { + "$date": "2021-02-20T21:02:14.000Z" + }, + "end": { + "$date": "2021-02-20T21:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cfdc9b81-069a-42a0-940f-67850ed389a8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-20T21:17:10.000Z" + }, + "end": { + "$date": "2021-02-21T00:42:51.000Z" + }, + "events": [ + { + "uuid": "a5c9cbde-969a-4e6f-8502-839776d113a5", + "start": { + "$date": "2021-02-20T21:17:10.000Z" + }, + "end": { + "$date": "2021-02-21T00:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a4c2bedf-6d25-48e3-9a0e-dfba72a615a1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T21:20:24.000Z" + }, + "end": { + "$date": "2021-02-20T22:19:06.000Z" + }, + "events": [ + { + "uuid": "004bac9f-00d7-4176-b4fd-fce7423af4d9", + "start": { + "$date": "2021-02-20T21:20:24.000Z" + }, + "end": { + "$date": "2021-02-20T22:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f68686ad-5a9d-4eea-ba00-7097a66b3072", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T21:36:13.000Z" + }, + "end": { + "$date": "2021-02-20T21:56:51.000Z" + }, + "events": [ + { + "uuid": "6018bef3-bd96-4a70-908c-54ae3d939f05", + "start": { + "$date": "2021-02-20T21:36:13.000Z" + }, + "end": { + "$date": "2021-02-20T21:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "66527cf8-af02-4699-ad77-04c275c53555", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-20T21:43:03.000Z" + }, + "end": { + "$date": "2021-02-20T23:53:31.000Z" + }, + "events": [ + { + "uuid": "291601c8-6877-4031-b321-3866762e1dcd", + "start": { + "$date": "2021-02-20T21:43:03.000Z" + }, + "end": { + "$date": "2021-02-20T22:18:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "936aa820-6fb7-4966-bc12-fda1ae8e8be3", + "start": { + "$date": "2021-02-20T22:18:03.000Z" + }, + "end": { + "$date": "2021-02-20T22:41:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc98cfe7-1ef9-4345-beea-26485ecc7bf0", + "start": { + "$date": "2021-02-20T22:41:03.000Z" + }, + "end": { + "$date": "2021-02-20T23:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94ab31f4-5035-48bd-8c65-b3567eaf7531", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-20T21:48:38.000Z" + }, + "end": { + "$date": "2021-02-20T22:17:58.000Z" + }, + "events": [ + { + "uuid": "fd856ffa-437d-4bb4-93a0-9710d41c8e07", + "start": { + "$date": "2021-02-20T21:48:38.000Z" + }, + "end": { + "$date": "2021-02-20T22:17:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bd477c1d-8c66-421a-b7b0-bc8da3111137", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-20T21:53:16.000Z" + }, + "end": { + "$date": "2021-02-21T03:59:37.000Z" + }, + "events": [ + { + "uuid": "30d78184-3bae-43eb-b1fd-062e69d8b054", + "start": { + "$date": "2021-02-20T21:53:16.000Z" + }, + "end": { + "$date": "2021-02-20T23:01:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "190b678f-f585-4d78-bda4-b57a12c21395", + "start": { + "$date": "2021-02-20T23:01:16.000Z" + }, + "end": { + "$date": "2021-02-20T23:02:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ddf5421e-1ab3-48b3-ba9e-c87b1bf29e14", + "start": { + "$date": "2021-02-20T23:02:16.000Z" + }, + "end": { + "$date": "2021-02-21T00:33:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06c7ddd8-9ba3-40db-962a-26f1c1596ec6", + "start": { + "$date": "2021-02-21T00:33:16.000Z" + }, + "end": { + "$date": "2021-02-21T00:37:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4896c979-ada6-4be6-8ea5-fb7796a20b33", + "start": { + "$date": "2021-02-21T00:37:16.000Z" + }, + "end": { + "$date": "2021-02-21T00:49:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "967124ba-13f8-4e99-b670-b6af76f505ff", + "start": { + "$date": "2021-02-21T00:49:16.000Z" + }, + "end": { + "$date": "2021-02-21T01:00:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f94667e7-9eea-49b4-8bcb-12799447799c", + "start": { + "$date": "2021-02-21T01:00:16.000Z" + }, + "end": { + "$date": "2021-02-21T02:24:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1aa6497-9f60-4f44-bc47-00f08f01e7c1", + "start": { + "$date": "2021-02-21T02:24:16.000Z" + }, + "end": { + "$date": "2021-02-21T02:28:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "553a534c-5285-4e9c-86de-d2d12f04b51a", + "start": { + "$date": "2021-02-21T02:28:16.000Z" + }, + "end": { + "$date": "2021-02-21T03:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d8772a3-d764-40e1-9d83-858ca64913c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T22:02:38.000Z" + }, + "end": { + "$date": "2021-02-20T22:19:31.000Z" + }, + "events": [ + { + "uuid": "3542cc29-4b14-4560-9892-a9ded2538511", + "start": { + "$date": "2021-02-20T22:02:38.000Z" + }, + "end": { + "$date": "2021-02-20T22:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f23c41b-128b-4b79-980b-6e06aa384b4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-20T22:14:23.000Z" + }, + "end": { + "$date": "2021-02-20T22:21:48.000Z" + }, + "events": [ + { + "uuid": "99cefc98-5c38-4de8-94bb-1e45f1ce68de", + "start": { + "$date": "2021-02-20T22:14:23.000Z" + }, + "end": { + "$date": "2021-02-20T22:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d05ac50-5aea-44ec-a367-5643e5710193", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T22:22:14.000Z" + }, + "end": { + "$date": "2021-02-20T22:42:37.000Z" + }, + "events": [ + { + "uuid": "64e7b604-a1ba-49a8-8580-73c07335b022", + "start": { + "$date": "2021-02-20T22:22:14.000Z" + }, + "end": { + "$date": "2021-02-20T22:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "dd215a10-ba3a-4e4f-9929-fa1b219b641e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-20T22:34:45.000Z" + }, + "end": { + "$date": "2021-02-20T23:41:19.000Z" + }, + "events": [ + { + "uuid": "7d0d5296-9f4c-42e8-b635-2f422c9589a9", + "start": { + "$date": "2021-02-20T22:34:45.000Z" + }, + "end": { + "$date": "2021-02-20T23:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bce45dcf-0f13-4906-a421-34a7918550a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-20T22:46:09.000Z" + }, + "end": { + "$date": "2021-02-20T22:59:57.000Z" + }, + "events": [ + { + "uuid": "da382795-636e-410a-97e0-70d60ebc6eb0", + "start": { + "$date": "2021-02-20T22:46:09.000Z" + }, + "end": { + "$date": "2021-02-20T22:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a51446f8-9fa1-43e9-92a2-2cd55ea1dcba", + "uuid": "a4632c5c-d31f-401f-81dc-917616ab60d3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-20T22:43:14.000Z" + }, + "end": { + "$date": "2021-02-20T22:49:56.000Z" + }, + "events": [ + { + "uuid": "f1d97769-b1b3-4b99-8b36-e1cb3a7736cd", + "start": { + "$date": "2021-02-20T22:43:14.000Z" + }, + "end": { + "$date": "2021-02-20T22:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "5e7d31b0-efbd-4852-97d4-ff54e90bcccd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T22:53:04.000Z" + }, + "end": { + "$date": "2021-02-20T23:31:37.000Z" + }, + "events": [ + { + "uuid": "249f8077-3ad5-44f7-b2b9-f571ce8c43f6", + "start": { + "$date": "2021-02-20T22:53:04.000Z" + }, + "end": { + "$date": "2021-02-20T23:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "8075f692-70de-4f36-ae5c-2ea6e222f2b5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-20T23:31:53.000Z" + }, + "end": { + "$date": "2021-02-21T00:28:28.000Z" + }, + "events": [ + { + "uuid": "fc317765-20db-4bda-9384-93778467460c", + "start": { + "$date": "2021-02-20T23:31:53.000Z" + }, + "end": { + "$date": "2021-02-21T00:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", + "uuid": "b9fdf1af-5baf-4736-ac4b-4eb7501c7f38", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-21T00:30:05.000Z" + }, + "end": { + "$date": "2021-02-21T01:25:29.000Z" + }, + "events": [ + { + "uuid": "31bf6054-9129-430c-bbe4-af5a72da68b5", + "start": { + "$date": "2021-02-21T00:30:05.000Z" + }, + "end": { + "$date": "2021-02-21T01:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4cf05cca-c1a5-4dc0-9166-647e70bc244e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T00:42:04.000Z" + }, + "end": { + "$date": "2021-02-21T00:50:13.000Z" + }, + "events": [ + { + "uuid": "d383fc84-bc1d-4b1e-aa3c-ffded4a61603", + "start": { + "$date": "2021-02-21T00:42:04.000Z" + }, + "end": { + "$date": "2021-02-21T00:50:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "385eb4e6-dd95-491a-8358-fcb5ca5124fe", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T00:51:15.000Z" + }, + "end": { + "$date": "2021-02-21T01:59:50.000Z" + }, + "events": [ + { + "uuid": "f8d991af-937b-4724-8827-195e1c76ba42", + "start": { + "$date": "2021-02-21T00:51:15.000Z" + }, + "end": { + "$date": "2021-02-21T01:58:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ac625ea-24e7-4fd3-9023-4d399551e0f4", + "start": { + "$date": "2021-02-21T01:58:15.000Z" + }, + "end": { + "$date": "2021-02-21T01:59:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "29d97064-d7f3-4395-9c16-17f21209990d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T00:59:50.000Z" + }, + "end": { + "$date": "2021-02-21T02:12:58.000Z" + }, + "events": [ + { + "uuid": "e4f4d1b4-7e62-4269-acd5-3492ae082c79", + "start": { + "$date": "2021-02-21T00:59:50.000Z" + }, + "end": { + "$date": "2021-02-21T02:12:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "873e3a21-386f-4786-8806-0dd1ab4cd7e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T02:46:13.000Z" + }, + "end": { + "$date": "2021-02-21T03:23:44.000Z" + }, + "events": [ + { + "uuid": "96d2ffec-4f96-4f83-b0b1-34f43b7964ba", + "start": { + "$date": "2021-02-21T02:46:13.000Z" + }, + "end": { + "$date": "2021-02-21T03:23:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b1f9748-1d5e-49ed-ab56-ab01b52d2bc3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-21T02:46:36.000Z" + }, + "end": { + "$date": "2021-02-21T03:23:41.000Z" + }, + "events": [ + { + "uuid": "ad98594c-b1d4-4e00-807b-8fe88b112036", + "start": { + "$date": "2021-02-21T02:46:36.000Z" + }, + "end": { + "$date": "2021-02-21T03:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ded3c30-449d-4ad4-a0b0-3ca58b52e7e4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T02:46:04.000Z" + }, + "end": { + "$date": "2021-02-21T03:23:40.000Z" + }, + "events": [ + { + "uuid": "c741ccb8-a3af-4429-bf0b-f7f4d83739e2", + "start": { + "$date": "2021-02-21T02:46:04.000Z" + }, + "end": { + "$date": "2021-02-21T03:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "9ccf2701-1969-4789-8ec9-7de5c24daef0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-21T02:23:10.000Z" + }, + "end": { + "$date": "2021-02-21T05:40:45.000Z" + }, + "events": [ + { + "uuid": "82017ff0-b214-4797-82c9-0f49b8610727", + "start": { + "$date": "2021-02-21T02:23:10.000Z" + }, + "end": { + "$date": "2021-02-21T05:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8f9ed4ac-a1ad-4539-a717-41f0d2f5ce8b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T02:35:54.000Z" + }, + "end": { + "$date": "2021-02-21T03:32:08.000Z" + }, + "events": [ + { + "uuid": "5d72b2a6-9a0b-4567-85e7-ac5d47807521", + "start": { + "$date": "2021-02-21T02:35:54.000Z" + }, + "end": { + "$date": "2021-02-21T03:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f696d4be-7e42-4f24-87a0-09d6f7068631", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T03:16:38.000Z" + }, + "end": { + "$date": "2021-02-21T03:33:53.000Z" + }, + "events": [ + { + "uuid": "809c235e-f245-40ec-b2b3-c74361e208ae", + "start": { + "$date": "2021-02-21T03:16:38.000Z" + }, + "end": { + "$date": "2021-02-21T03:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "067ea53d-dc6f-4e98-a754-e0de25a790a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T03:36:31.000Z" + }, + "end": { + "$date": "2021-02-21T04:11:13.000Z" + }, + "events": [ + { + "uuid": "c09a3b1d-5858-464b-b605-0ddfc62154ca", + "start": { + "$date": "2021-02-21T03:36:31.000Z" + }, + "end": { + "$date": "2021-02-21T04:11:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a8846ce-d1d6-4700-9c35-2ebd720aa841", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-21T03:36:53.000Z" + }, + "end": { + "$date": "2021-02-21T04:11:04.000Z" + }, + "events": [ + { + "uuid": "e961a23e-4810-4215-84d7-9245d3eb8ebf", + "start": { + "$date": "2021-02-21T03:36:53.000Z" + }, + "end": { + "$date": "2021-02-21T04:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "257b593d-c61f-4605-a307-6c23f030fcdd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T03:36:22.000Z" + }, + "end": { + "$date": "2021-02-21T04:11:02.000Z" + }, + "events": [ + { + "uuid": "41147aea-e6ec-4098-a1d5-38d9843e9f50", + "start": { + "$date": "2021-02-21T03:36:22.000Z" + }, + "end": { + "$date": "2021-02-21T04:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3432648e-92da-4ec8-8a55-ac24dcb57800", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T03:37:58.000Z" + }, + "end": { + "$date": "2021-02-21T03:58:38.000Z" + }, + "events": [ + { + "uuid": "3a7a3f90-69a2-4070-b913-a9b96c02834f", + "start": { + "$date": "2021-02-21T03:37:58.000Z" + }, + "end": { + "$date": "2021-02-21T03:58:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c898c13-d147-471d-a630-33186b1463c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T03:35:39.000Z" + }, + "end": { + "$date": "2021-02-21T04:14:34.000Z" + }, + "events": [ + { + "uuid": "d94a9c3e-f974-4259-af3c-aca7d93b9fb6", + "start": { + "$date": "2021-02-21T03:35:39.000Z" + }, + "end": { + "$date": "2021-02-21T04:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c089430f-694f-4f45-b509-d85d482de6f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T03:36:25.000Z" + }, + "end": { + "$date": "2021-02-21T04:13:25.000Z" + }, + "events": [ + { + "uuid": "371c3d2c-f2de-49a1-b75b-eb852afbc3bf", + "start": { + "$date": "2021-02-21T03:36:25.000Z" + }, + "end": { + "$date": "2021-02-21T04:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1a42b371-6bd0-45c7-82a0-456053b8f1c9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-21T04:06:43.000Z" + }, + "end": { + "$date": "2021-02-21T04:32:26.000Z" + }, + "events": [ + { + "uuid": "95e6a81e-f6ed-4969-8719-cd3fadf6b5bd", + "start": { + "$date": "2021-02-21T04:06:43.000Z" + }, + "end": { + "$date": "2021-02-21T04:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b377cc10-4d4c-49f7-9d8a-0a87b1597f44", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T04:14:40.000Z" + }, + "end": { + "$date": "2021-02-21T05:34:06.000Z" + }, + "events": [ + { + "uuid": "68b600d6-eb1a-4de8-b350-9c50f0485661", + "start": { + "$date": "2021-02-21T04:14:40.000Z" + }, + "end": { + "$date": "2021-02-21T05:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79fb962e-427e-4d68-8883-bc4fd994a2ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T04:19:45.000Z" + }, + "end": { + "$date": "2021-02-21T04:38:05.000Z" + }, + "events": [ + { + "uuid": "09cb1fa7-0c02-4b99-a565-7b33accce2bd", + "start": { + "$date": "2021-02-21T04:19:45.000Z" + }, + "end": { + "$date": "2021-02-21T04:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ff1b38f1-bc2c-4fc6-ae22-ed654f7b8aeb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T04:15:06.000Z" + }, + "end": { + "$date": "2021-02-21T04:25:06.000Z" + }, + "events": [ + { + "uuid": "1bbf23b9-10d9-47a5-9c98-082126c68119", + "start": { + "$date": "2021-02-21T04:15:06.000Z" + }, + "end": { + "$date": "2021-02-21T04:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fe30ede7-4b76-45c3-9b60-ce6929c24efd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-21T04:15:11.000Z" + }, + "end": { + "$date": "2021-02-21T05:34:12.000Z" + }, + "events": [ + { + "uuid": "9a077a6d-2ef8-4f76-a76a-0441a709e19b", + "start": { + "$date": "2021-02-21T04:15:11.000Z" + }, + "end": { + "$date": "2021-02-21T05:34:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69290ab0-b802-4d23-acc8-dcdb480ef1ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T04:21:08.000Z" + }, + "end": { + "$date": "2021-02-21T04:38:03.000Z" + }, + "events": [ + { + "uuid": "b89164e0-1ff9-4555-acb1-a97dad777ccf", + "start": { + "$date": "2021-02-21T04:21:08.000Z" + }, + "end": { + "$date": "2021-02-21T04:38:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "883c14b3-6fe1-4f99-b385-5026d1f882dc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T04:20:34.000Z" + }, + "end": { + "$date": "2021-02-21T04:38:11.000Z" + }, + "events": [ + { + "uuid": "cc329683-5225-42bd-9617-5b81cca11105", + "start": { + "$date": "2021-02-21T04:20:34.000Z" + }, + "end": { + "$date": "2021-02-21T04:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "069e25a5-f2e7-43f5-828a-88e5eb8306ec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-21T04:22:34.000Z" + }, + "end": { + "$date": "2021-02-21T04:28:20.000Z" + }, + "events": [ + { + "uuid": "55a54820-53d8-4638-bb7c-40b95c37012a", + "start": { + "$date": "2021-02-21T04:22:34.000Z" + }, + "end": { + "$date": "2021-02-21T04:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "040fdf19-5214-41e6-b107-2d2e2fd9c23e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-21T04:29:45.000Z" + }, + "end": { + "$date": "2021-02-21T08:32:55.000Z" + }, + "events": [ + { + "uuid": "887ca0b2-d89a-448d-b7ec-3646c95bb5a6", + "start": { + "$date": "2021-02-21T04:29:45.000Z" + }, + "end": { + "$date": "2021-02-21T08:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5c6bc578-f728-4a6e-8d76-f53ae57a71b0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T04:33:58.000Z" + }, + "end": { + "$date": "2021-02-21T05:22:16.000Z" + }, + "events": [ + { + "uuid": "5fa6c8b2-2a70-4424-b1cb-ea54595c3bad", + "start": { + "$date": "2021-02-21T04:33:58.000Z" + }, + "end": { + "$date": "2021-02-21T05:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "17db7a4f-cb50-4071-9e3a-995cf8c82614", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-21T04:34:22.000Z" + }, + "end": { + "$date": "2021-02-21T05:25:58.000Z" + }, + "events": [ + { + "uuid": "3ebef5b1-ce06-41aa-91e1-ca10e1f90d60", + "start": { + "$date": "2021-02-21T04:34:22.000Z" + }, + "end": { + "$date": "2021-02-21T05:24:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33a003b2-b9d5-45d4-a2e6-90f1f5f088ea", + "start": { + "$date": "2021-02-21T05:24:22.000Z" + }, + "end": { + "$date": "2021-02-21T05:25:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d59340d5-0233-40f8-be83-575366a30312", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T04:41:16.000Z" + }, + "end": { + "$date": "2021-02-21T05:02:21.000Z" + }, + "events": [ + { + "uuid": "3912e8ed-ecd4-4ac2-ab4b-48ecd223cd1d", + "start": { + "$date": "2021-02-21T04:41:16.000Z" + }, + "end": { + "$date": "2021-02-21T05:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6351f41c-53e3-47fa-a961-6931f9cb8406", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T04:41:59.000Z" + }, + "end": { + "$date": "2021-02-21T05:02:24.000Z" + }, + "events": [ + { + "uuid": "4ddb0451-837c-4a23-8ca3-facf1fc7236c", + "start": { + "$date": "2021-02-21T04:41:59.000Z" + }, + "end": { + "$date": "2021-02-21T05:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edc17bb1-17d7-47c2-8ecf-b8a4b973b061", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T04:42:05.000Z" + }, + "end": { + "$date": "2021-02-21T05:02:22.000Z" + }, + "events": [ + { + "uuid": "218048e1-235e-454c-8048-df49d3f06537", + "start": { + "$date": "2021-02-21T04:42:05.000Z" + }, + "end": { + "$date": "2021-02-21T05:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "288bd099-bd0a-4c0a-a9df-5a6cd512a8ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T05:04:42.000Z" + }, + "end": { + "$date": "2021-02-21T05:19:37.000Z" + }, + "events": [ + { + "uuid": "cb46b2f7-1dcd-4ad9-a7be-2f51da0855bb", + "start": { + "$date": "2021-02-21T05:04:42.000Z" + }, + "end": { + "$date": "2021-02-21T05:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c7d0d37-3687-4a4c-8dff-7e978d53a07f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T05:23:00.000Z" + }, + "end": { + "$date": "2021-02-21T05:46:46.000Z" + }, + "events": [ + { + "uuid": "3989f38e-83b9-49cd-ac99-933a063395cd", + "start": { + "$date": "2021-02-21T05:23:00.000Z" + }, + "end": { + "$date": "2021-02-21T05:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "673b8d05-90ed-48fc-a5c5-e6b89294daae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T05:04:36.000Z" + }, + "end": { + "$date": "2021-02-21T05:19:34.000Z" + }, + "events": [ + { + "uuid": "e46a5594-522b-4ed7-bcb1-d52a77739f5a", + "start": { + "$date": "2021-02-21T05:04:36.000Z" + }, + "end": { + "$date": "2021-02-21T05:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2da83905-b3c4-4459-96f9-5482db1ca1aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T05:21:32.000Z" + }, + "end": { + "$date": "2021-02-21T05:47:01.000Z" + }, + "events": [ + { + "uuid": "651372f5-8273-4a44-ab7b-17b2aff87390", + "start": { + "$date": "2021-02-21T05:21:32.000Z" + }, + "end": { + "$date": "2021-02-21T05:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c144dbda-e6a7-4b08-ba50-61f7741a8827", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T05:21:37.000Z" + }, + "end": { + "$date": "2021-02-21T05:46:45.000Z" + }, + "events": [ + { + "uuid": "63a52cdf-850b-437c-a0c4-1d8ccfc97f13", + "start": { + "$date": "2021-02-21T05:21:37.000Z" + }, + "end": { + "$date": "2021-02-21T05:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26a2aa54-82bb-47c6-9688-f6a357dd3fbb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-21T05:22:26.000Z" + }, + "end": { + "$date": "2021-02-21T05:46:55.000Z" + }, + "events": [ + { + "uuid": "5f344fed-595c-4287-8644-393ed5be7874", + "start": { + "$date": "2021-02-21T05:22:26.000Z" + }, + "end": { + "$date": "2021-02-21T05:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "4507f075-4e4a-41a9-9885-7250e22ad4f8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T05:34:03.000Z" + }, + "end": { + "$date": "2021-02-21T07:42:01.000Z" + }, + "events": [ + { + "uuid": "ed9974da-3c90-4421-92ec-d84f4f921b7e", + "start": { + "$date": "2021-02-21T05:34:03.000Z" + }, + "end": { + "$date": "2021-02-21T07:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "7d8b8d81-126c-45d4-8136-45d4376abac5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-21T05:34:34.000Z" + }, + "end": { + "$date": "2021-02-21T06:57:24.000Z" + }, + "events": [ + { + "uuid": "bcac2de8-e323-4feb-bba4-94273e27888d", + "start": { + "$date": "2021-02-21T05:34:34.000Z" + }, + "end": { + "$date": "2021-02-21T06:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "fca6f1a3-cc09-4db9-a74c-2b29d3522888", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T05:34:51.000Z" + }, + "end": { + "$date": "2021-02-21T06:39:48.000Z" + }, + "events": [ + { + "uuid": "bcf37002-9b5f-4bcf-a8fd-dd524e8cc9ad", + "start": { + "$date": "2021-02-21T05:34:51.000Z" + }, + "end": { + "$date": "2021-02-21T06:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5562e4e8-2204-4807-90a1-14b40d524172", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T05:34:57.000Z" + }, + "end": { + "$date": "2021-02-21T05:38:11.000Z" + }, + "events": [ + { + "uuid": "fd247114-9328-4c11-a5d2-d334380ad118", + "start": { + "$date": "2021-02-21T05:34:57.000Z" + }, + "end": { + "$date": "2021-02-21T05:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "96786b53-123e-459d-be3d-0b77abb225b5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-21T05:38:08.000Z" + }, + "end": { + "$date": "2021-02-21T07:41:46.000Z" + }, + "events": [ + { + "uuid": "65b2d049-aea1-4454-bd11-fa98ad5c292d", + "start": { + "$date": "2021-02-21T05:38:08.000Z" + }, + "end": { + "$date": "2021-02-21T07:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "937598b7-a67d-42e0-859a-d05a4df494f2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T05:40:13.000Z" + }, + "end": { + "$date": "2021-02-21T06:05:08.000Z" + }, + "events": [ + { + "uuid": "739f8691-056f-46b1-a44d-a3db66d64bb5", + "start": { + "$date": "2021-02-21T05:40:13.000Z" + }, + "end": { + "$date": "2021-02-21T06:05:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "3d5171c2-5161-428b-ad41-69539fe432ac", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-21T05:41:56.000Z" + }, + "end": { + "$date": "2021-02-21T08:51:13.000Z" + }, + "events": [ + { + "uuid": "c64fb2a8-f8e2-4de9-aa2e-da911f5f5be5", + "start": { + "$date": "2021-02-21T05:41:56.000Z" + }, + "end": { + "$date": "2021-02-21T08:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15d28090-f156-450c-a3d0-af068263ba68", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T05:49:03.000Z" + }, + "end": { + "$date": "2021-02-21T06:02:01.000Z" + }, + "events": [ + { + "uuid": "efc73562-9616-45d2-a9ba-fc3adabd1ed0", + "start": { + "$date": "2021-02-21T05:49:03.000Z" + }, + "end": { + "$date": "2021-02-21T06:02:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "874e740f-34f9-4108-a527-02ee8c9cefe7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T05:49:45.000Z" + }, + "end": { + "$date": "2021-02-21T06:01:56.000Z" + }, + "events": [ + { + "uuid": "b95cca39-7652-4fa6-aaec-5c0bb4e24ae9", + "start": { + "$date": "2021-02-21T05:49:45.000Z" + }, + "end": { + "$date": "2021-02-21T06:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e144393e-9618-420b-ba5a-f6fd96502b74", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T05:49:04.000Z" + }, + "end": { + "$date": "2021-02-21T06:01:56.000Z" + }, + "events": [ + { + "uuid": "5ea7bda8-ffd3-45df-b50f-0442ea410f5a", + "start": { + "$date": "2021-02-21T05:49:04.000Z" + }, + "end": { + "$date": "2021-02-21T06:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "729fd879-f579-493f-8f8f-c701430058b4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-21T05:49:01.000Z" + }, + "end": { + "$date": "2021-02-21T06:01:57.000Z" + }, + "events": [ + { + "uuid": "08f243ae-ec1f-4981-a5df-9cecdb133334", + "start": { + "$date": "2021-02-21T05:49:01.000Z" + }, + "end": { + "$date": "2021-02-21T06:01:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4492e15f-6cfd-42d6-9ceb-6650333f10ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T06:03:59.000Z" + }, + "end": { + "$date": "2021-02-21T06:11:27.000Z" + }, + "events": [ + { + "uuid": "e8a2929c-d820-4269-ab18-254e6f55fd43", + "start": { + "$date": "2021-02-21T06:03:59.000Z" + }, + "end": { + "$date": "2021-02-21T06:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c285b67-930b-450b-8fad-cdeb9a71bccd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T06:04:46.000Z" + }, + "end": { + "$date": "2021-02-21T06:11:22.000Z" + }, + "events": [ + { + "uuid": "cb9eb37e-ce65-425a-8487-1faef01d354a", + "start": { + "$date": "2021-02-21T06:04:46.000Z" + }, + "end": { + "$date": "2021-02-21T06:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a08734c-6da1-4983-819d-d25acd1ce40a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-21T06:11:22.000Z" + }, + "end": { + "$date": "2021-02-21T06:12:22.000Z" + }, + "events": [ + { + "uuid": "4669e399-d29a-400f-a3e2-0af754d8636b", + "start": { + "$date": "2021-02-21T06:11:22.000Z" + }, + "end": { + "$date": "2021-02-21T06:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab060dd8-1cec-46fb-a8d7-72ad245589a4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T06:04:45.000Z" + }, + "end": { + "$date": "2021-02-21T06:11:21.000Z" + }, + "events": [ + { + "uuid": "f9c5a726-fa05-4a82-bb94-ac6e103f6071", + "start": { + "$date": "2021-02-21T06:04:45.000Z" + }, + "end": { + "$date": "2021-02-21T06:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38833f63-ffff-4f2b-b042-4b6a69ad2524", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T06:14:55.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:23.000Z" + }, + "events": [ + { + "uuid": "018e906b-74f7-4f69-aadc-6c60ef404f9c", + "start": { + "$date": "2021-02-21T06:14:55.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c9cdb0c-82d1-46c3-b8b0-73e8ec9b27ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T06:15:06.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:17.000Z" + }, + "events": [ + { + "uuid": "353c6881-c739-4e68-a69f-1e44648d7332", + "start": { + "$date": "2021-02-21T06:15:06.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3405f940-c85e-42c3-91fa-2abc1c04cf88", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T06:14:55.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:17.000Z" + }, + "events": [ + { + "uuid": "a7097ac9-77ca-445b-9b4d-dae8158000a9", + "start": { + "$date": "2021-02-21T06:14:55.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c38604a5-21d2-4987-914a-51e0f17776d8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-21T06:14:53.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:18.000Z" + }, + "events": [ + { + "uuid": "196efae7-4a8f-476f-a80c-b6bb54f43a4a", + "start": { + "$date": "2021-02-21T06:14:53.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac079e7e-5929-4837-a9ff-f064d4f28bb4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T06:14:57.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:15.000Z" + }, + "events": [ + { + "uuid": "5cf3ed04-ac2a-422e-85f1-51e266feef37", + "start": { + "$date": "2021-02-21T06:14:57.000Z" + }, + "end": { + "$date": "2021-02-21T06:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b3afc22-5d34-4e2c-b610-5a9981cd1e6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T06:26:40.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:11.000Z" + }, + "events": [ + { + "uuid": "11dc496a-2b2f-458a-9f5d-ea9c53a60f72", + "start": { + "$date": "2021-02-21T06:26:40.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2e779ff-bf50-4a7b-8c0c-c42312fcf0be", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T06:26:42.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:17.000Z" + }, + "events": [ + { + "uuid": "505b7fd1-188b-42c6-bfc7-0dd85a9d34ed", + "start": { + "$date": "2021-02-21T06:26:42.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76d11902-7f20-401b-9bb3-4d2bbe810fa0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T06:26:42.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:20.000Z" + }, + "events": [ + { + "uuid": "7151a610-f3ba-4448-881e-782805922547", + "start": { + "$date": "2021-02-21T06:26:42.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f18530d-f4e7-44c1-9d3a-a099dfbccbc2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T06:26:51.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:13.000Z" + }, + "events": [ + { + "uuid": "68d5f34a-d657-4504-b6ae-6c2df2b24625", + "start": { + "$date": "2021-02-21T06:26:51.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e130ebe1-78f9-4ab1-ad91-1dcb9481dbd9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-21T06:26:43.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:19.000Z" + }, + "events": [ + { + "uuid": "debbb5dc-42d9-4f0e-a819-904f55b5b76b", + "start": { + "$date": "2021-02-21T06:26:43.000Z" + }, + "end": { + "$date": "2021-02-21T06:40:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0afc9f58-a028-4833-90f2-1177aacaef34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-21T06:44:01.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:16.000Z" + }, + "events": [ + { + "uuid": "cb58120f-9528-4653-a706-97860cbcb252", + "start": { + "$date": "2021-02-21T06:44:01.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2451d310-2184-4e73-8072-1b644558b2b0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T06:44:17.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:12.000Z" + }, + "events": [ + { + "uuid": "6a8a01b0-0a4a-4196-ab09-6132c7e1a780", + "start": { + "$date": "2021-02-21T06:44:17.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d752ad4-460a-4da8-8b2a-cc9075ce9116", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-21T06:44:05.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:15.000Z" + }, + "events": [ + { + "uuid": "73b1f34a-cddd-4254-9e03-d8997d1ed2a3", + "start": { + "$date": "2021-02-21T06:44:05.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "756ce0ba-223f-4b79-b13f-f3d00c411d04", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-21T06:44:02.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:14.000Z" + }, + "events": [ + { + "uuid": "5758e913-b6ac-4db7-8812-ef4d2ca38e50", + "start": { + "$date": "2021-02-21T06:44:02.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69e41e19-161a-471d-b677-db2c8f3ab1d0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T06:44:03.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:16.000Z" + }, + "events": [ + { + "uuid": "9afb530c-85a0-47cd-be89-c414ca4a0fbb", + "start": { + "$date": "2021-02-21T06:44:03.000Z" + }, + "end": { + "$date": "2021-02-21T07:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "ee0e6441-00f1-4e5f-9dd0-2fc90e2fed73", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-21T06:58:00.000Z" + }, + "end": { + "$date": "2021-02-21T07:42:31.000Z" + }, + "events": [ + { + "uuid": "20187607-8554-45ca-86bf-2d33a753f451", + "start": { + "$date": "2021-02-21T06:58:00.000Z" + }, + "end": { + "$date": "2021-02-21T07:42:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0e41f97a-39c9-4705-93a7-1347d5c63f96", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T07:48:03.000Z" + }, + "end": { + "$date": "2021-02-21T08:50:44.000Z" + }, + "events": [ + { + "uuid": "f802e973-fcfb-4ba4-8585-2de479e4ab18", + "start": { + "$date": "2021-02-21T07:48:03.000Z" + }, + "end": { + "$date": "2021-02-21T08:50:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "76d8c799-f197-4b01-a00c-2d8f1165bec3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-21T07:52:34.000Z" + }, + "end": { + "$date": "2021-02-21T08:42:42.000Z" + }, + "events": [ + { + "uuid": "07d62a43-da9e-4ce8-8e41-b829fc3a00cd", + "start": { + "$date": "2021-02-21T07:52:34.000Z" + }, + "end": { + "$date": "2021-02-21T08:42:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8941f00f-29ab-4fcb-b1eb-c0caa63cba75", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-21T07:56:26.000Z" + }, + "end": { + "$date": "2021-02-21T08:50:57.000Z" + }, + "events": [ + { + "uuid": "7dea72d9-07ea-442b-ae6a-039571415216", + "start": { + "$date": "2021-02-21T07:56:26.000Z" + }, + "end": { + "$date": "2021-02-21T08:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "08e4a6d1-ec40-4a49-bf65-c49fc211bc1f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-21T08:55:07.000Z" + }, + "end": { + "$date": "2021-02-21T09:24:15.000Z" + }, + "events": [ + { + "uuid": "b533cac1-9c4b-4287-984f-2f37611e5dcc", + "start": { + "$date": "2021-02-21T08:55:07.000Z" + }, + "end": { + "$date": "2021-02-21T09:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10222c00-bac3-4989-92e8-bc5e2f747eaa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-21T09:48:48.000Z" + }, + "end": { + "$date": "2021-02-21T10:21:54.000Z" + }, + "events": [ + { + "uuid": "1fdb7d7f-6a06-4d7f-8320-bb9892af5c37", + "start": { + "$date": "2021-02-21T09:48:48.000Z" + }, + "end": { + "$date": "2021-02-21T10:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5b88ea44-97e4-4d55-8d98-de0fabf41f1c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T15:25:19.000Z" + }, + "end": { + "$date": "2021-02-21T15:28:07.000Z" + }, + "events": [ + { + "uuid": "beed3003-a447-4bf7-b42d-bf507343e390", + "start": { + "$date": "2021-02-21T15:25:19.000Z" + }, + "end": { + "$date": "2021-02-21T15:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fe6cc044-c1e9-400e-9111-8d084a3033c0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T15:28:30.000Z" + }, + "end": { + "$date": "2021-02-21T16:12:26.000Z" + }, + "events": [ + { + "uuid": "9a624bc6-0d64-4f60-ae28-ecdef7f192c1", + "start": { + "$date": "2021-02-21T15:28:30.000Z" + }, + "end": { + "$date": "2021-02-21T16:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68c232d4-423b-40a5-9462-0d29faf73c7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T16:25:26.000Z" + }, + "end": { + "$date": "2021-02-21T16:51:42.000Z" + }, + "events": [ + { + "uuid": "09c35ced-5cbf-4715-bdae-e2722ed4da58", + "start": { + "$date": "2021-02-21T16:25:26.000Z" + }, + "end": { + "$date": "2021-02-21T16:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a8c5ace5-f07d-4390-b0ba-3c01fe4e2220", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T16:24:20.000Z" + }, + "end": { + "$date": "2021-02-21T16:24:25.000Z" + }, + "events": [ + { + "uuid": "490f0bc3-c5f5-41e1-b5be-3a19515ab326", + "start": { + "$date": "2021-02-21T16:24:20.000Z" + }, + "end": { + "$date": "2021-02-21T16:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6d907ea3-3bfc-498b-b76f-89a87969d102", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T16:24:30.000Z" + }, + "end": { + "$date": "2021-02-21T17:25:27.000Z" + }, + "events": [ + { + "uuid": "0dd38129-396b-4dda-b425-7051ba34ae11", + "start": { + "$date": "2021-02-21T16:24:30.000Z" + }, + "end": { + "$date": "2021-02-21T17:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "0d58ce50-77d1-4d2e-a119-4dae12b28a24", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T16:36:56.000Z" + }, + "end": { + "$date": "2021-02-21T18:23:17.000Z" + }, + "events": [ + { + "uuid": "c67b2f36-0ec7-4d3e-b1af-2c9b7753cb0c", + "start": { + "$date": "2021-02-21T16:36:56.000Z" + }, + "end": { + "$date": "2021-02-21T18:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b983b05-8637-4395-8612-899297e93145", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T16:53:07.000Z" + }, + "end": { + "$date": "2021-02-21T17:25:13.000Z" + }, + "events": [ + { + "uuid": "34941187-4bae-4569-882a-5ac689371b75", + "start": { + "$date": "2021-02-21T16:53:07.000Z" + }, + "end": { + "$date": "2021-02-21T17:25:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8d7c8378-1347-455c-b5dd-4ca269d8f762", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-21T17:27:17.000Z" + }, + "end": { + "$date": "2021-02-21T18:14:36.000Z" + }, + "events": [ + { + "uuid": "0b055532-96cb-4df5-925f-3d57081286f6", + "start": { + "$date": "2021-02-21T17:27:17.000Z" + }, + "end": { + "$date": "2021-02-21T18:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49d3980a-64af-486a-bb5e-f6d2e2800d45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T17:31:08.000Z" + }, + "end": { + "$date": "2021-02-21T18:06:15.000Z" + }, + "events": [ + { + "uuid": "667a8ca6-977b-4339-b1fe-bc21495b7e95", + "start": { + "$date": "2021-02-21T17:31:08.000Z" + }, + "end": { + "$date": "2021-02-21T18:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "822007dd-5a8c-428f-8b1b-1871c281efe2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T19:04:32.000Z" + }, + "end": { + "$date": "2021-02-21T20:39:49.000Z" + }, + "events": [ + { + "uuid": "295ea746-75af-45e9-b55f-b0f6e8b0d685", + "start": { + "$date": "2021-02-21T19:04:32.000Z" + }, + "end": { + "$date": "2021-02-21T20:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ee738448-3494-463c-b2e5-4ca0fa4aaf9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T19:20:52.000Z" + }, + "end": { + "$date": "2021-02-21T19:47:28.000Z" + }, + "events": [ + { + "uuid": "55712b39-8638-4189-a34a-405621cf4981", + "start": { + "$date": "2021-02-21T19:20:52.000Z" + }, + "end": { + "$date": "2021-02-21T19:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c2e6fd68-1fa6-42c3-9491-129e8baa12bc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-21T19:51:53.000Z" + }, + "end": { + "$date": "2021-02-21T19:54:13.000Z" + }, + "events": [ + { + "uuid": "1757a8df-099b-4128-8de6-04418e302717", + "start": { + "$date": "2021-02-21T19:51:53.000Z" + }, + "end": { + "$date": "2021-02-21T19:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8b90dbd6-b9e3-4ba2-b71d-f45077ac76fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-21T19:54:12.000Z" + }, + "end": { + "$date": "2021-02-21T22:14:04.000Z" + }, + "events": [ + { + "uuid": "da2f210b-d30b-434a-9eff-33911ed3fbaf", + "start": { + "$date": "2021-02-21T19:54:12.000Z" + }, + "end": { + "$date": "2021-02-21T21:19:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1310369-6ab3-4eaa-b2d0-3bfac6d9d810", + "start": { + "$date": "2021-02-21T21:19:12.000Z" + }, + "end": { + "$date": "2021-02-21T21:22:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef7409b8-c157-4eae-a98d-0dae40563fae", + "start": { + "$date": "2021-02-21T21:22:12.000Z" + }, + "end": { + "$date": "2021-02-21T21:24:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "462f3039-e9f6-4126-9ebc-9e726e5d59d0", + "start": { + "$date": "2021-02-21T21:24:12.000Z" + }, + "end": { + "$date": "2021-02-21T21:25:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04750e99-7f88-4646-97a4-02785c60a38f", + "start": { + "$date": "2021-02-21T21:25:12.000Z" + }, + "end": { + "$date": "2021-02-21T22:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "78534bd9-6694-4b4f-8149-3fb458fd44f8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-21T20:26:44.000Z" + }, + "end": { + "$date": "2021-02-21T20:36:47.000Z" + }, + "events": [ + { + "uuid": "f901aaac-6614-4878-b63f-bde12114671b", + "start": { + "$date": "2021-02-21T20:26:44.000Z" + }, + "end": { + "$date": "2021-02-21T20:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d19e29a0-1f84-4dc2-997c-21a744eff165", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T20:27:11.000Z" + }, + "end": { + "$date": "2021-02-21T21:03:08.000Z" + }, + "events": [ + { + "uuid": "c2946aa7-064a-4d31-8a30-89a183db6f30", + "start": { + "$date": "2021-02-21T20:27:11.000Z" + }, + "end": { + "$date": "2021-02-21T21:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6530212b-3d11-426a-bcbb-edc075cba137", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T20:39:47.000Z" + }, + "end": { + "$date": "2021-02-21T21:30:19.000Z" + }, + "events": [ + { + "uuid": "13afda72-33d2-4fa5-a474-ae3c4fe55715", + "start": { + "$date": "2021-02-21T20:39:47.000Z" + }, + "end": { + "$date": "2021-02-21T21:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "33aa5345-2114-47a3-b483-dd776066625c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-21T21:20:02.000Z" + }, + "end": { + "$date": "2021-02-21T23:01:13.000Z" + }, + "events": [ + { + "uuid": "c20114d4-28ef-4c60-a97b-0aa43bbcffc7", + "start": { + "$date": "2021-02-21T21:20:02.000Z" + }, + "end": { + "$date": "2021-02-21T23:01:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "17c9b7c5-9ea8-4e9f-b02f-203cd727cc84", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T22:04:14.000Z" + }, + "end": { + "$date": "2021-02-21T23:45:07.000Z" + }, + "events": [ + { + "uuid": "05c0eddf-c585-4174-8a3a-6d65a9f7d3f2", + "start": { + "$date": "2021-02-21T22:04:14.000Z" + }, + "end": { + "$date": "2021-02-21T23:45:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cdf90045-6b6b-4414-8b58-ba51aafcdd85", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T22:38:17.000Z" + }, + "end": { + "$date": "2021-02-21T22:56:04.000Z" + }, + "events": [ + { + "uuid": "43a1c030-0f03-49e2-a6ec-7cef8aaa9f4a", + "start": { + "$date": "2021-02-21T22:38:17.000Z" + }, + "end": { + "$date": "2021-02-21T22:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bffd35e6-d257-4668-92ca-c5e3abd276ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-21T22:56:23.000Z" + }, + "end": { + "$date": "2021-02-21T23:39:44.000Z" + }, + "events": [ + { + "uuid": "e3cadc94-d369-4f69-8e24-4c109278187b", + "start": { + "$date": "2021-02-21T22:56:23.000Z" + }, + "end": { + "$date": "2021-02-21T23:39:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "56d05af5-ecce-4a38-9395-875ee9cfb0f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-21T23:48:44.000Z" + }, + "end": { + "$date": "2021-02-22T00:06:43.000Z" + }, + "events": [ + { + "uuid": "2c4722c6-2c65-41d3-9e4c-c0f1e82a09ba", + "start": { + "$date": "2021-02-21T23:48:44.000Z" + }, + "end": { + "$date": "2021-02-22T00:06:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ad9f99ce-0886-44cb-b294-e22e17b01919", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-22T00:23:38.000Z" + }, + "end": { + "$date": "2021-02-22T00:57:42.000Z" + }, + "events": [ + { + "uuid": "a9d724b5-c0f9-47e0-84a8-5ac1432c4d1a", + "start": { + "$date": "2021-02-22T00:23:38.000Z" + }, + "end": { + "$date": "2021-02-22T00:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7a0c8e2-fe75-4d77-8fe6-804e93c2ba3a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T00:28:13.000Z" + }, + "end": { + "$date": "2021-02-22T00:53:39.000Z" + }, + "events": [ + { + "uuid": "63c7d817-f3dd-47b4-be82-4465264f7dec", + "start": { + "$date": "2021-02-22T00:28:13.000Z" + }, + "end": { + "$date": "2021-02-22T00:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc9ef8aa-dfb9-4fd4-8493-26731143fa15", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-22T00:40:41.000Z" + }, + "end": { + "$date": "2021-02-22T02:47:30.000Z" + }, + "events": [ + { + "uuid": "601c93b4-a721-4c44-91d3-3fabf1325cf9", + "start": { + "$date": "2021-02-22T00:40:41.000Z" + }, + "end": { + "$date": "2021-02-22T02:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0efdbbe0-e79b-42d7-b9bc-af68d35b8adf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-22T00:43:53.000Z" + }, + "end": { + "$date": "2021-02-22T03:02:06.000Z" + }, + "events": [ + { + "uuid": "4b3625fb-7389-4b3a-b274-e91cb3f97165", + "start": { + "$date": "2021-02-22T00:43:53.000Z" + }, + "end": { + "$date": "2021-02-22T03:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09cff168-e61c-4397-9f2e-2abc46c31838", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T01:42:37.000Z" + }, + "end": { + "$date": "2021-02-22T01:42:37.000Z" + }, + "events": [ + { + "uuid": "afc291ae-b354-43e1-afa0-9bdcf9dcbcbd", + "start": { + "$date": "2021-02-22T01:42:37.000Z" + }, + "end": { + "$date": "2021-02-22T01:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "428e98e2-ed0a-406f-957c-4b57ee682d60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-22T01:25:26.000Z" + }, + "end": { + "$date": "2021-02-22T02:00:18.000Z" + }, + "events": [ + { + "uuid": "d0836ff0-a215-48a2-a0f9-c5541b335fa8", + "start": { + "$date": "2021-02-22T01:25:26.000Z" + }, + "end": { + "$date": "2021-02-22T02:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5ea9f936-09d3-405b-a6bf-8902985e8b92", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-22T01:26:17.000Z" + }, + "end": { + "$date": "2021-02-22T01:29:39.000Z" + }, + "events": [ + { + "uuid": "7e507eac-760a-44a0-98e7-ce652e5b4b6e", + "start": { + "$date": "2021-02-22T01:26:17.000Z" + }, + "end": { + "$date": "2021-02-22T01:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bed2c0b2-bdf9-4296-a5e4-12db2f6c3ebd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-22T01:31:53.000Z" + }, + "end": { + "$date": "2021-02-22T01:32:57.000Z" + }, + "events": [ + { + "uuid": "ade3ff17-80fc-4213-9ee6-efc342b5addd", + "start": { + "$date": "2021-02-22T01:31:53.000Z" + }, + "end": { + "$date": "2021-02-22T01:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9dd129e0-b1e6-46aa-95fb-cd3a75e3f620", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-22T01:40:23.000Z" + }, + "end": { + "$date": "2021-02-22T09:05:39.000Z" + }, + "events": [ + { + "uuid": "453aa003-f0aa-4a74-8a4d-c9bfa3a04251", + "start": { + "$date": "2021-02-22T01:40:23.000Z" + }, + "end": { + "$date": "2021-02-22T09:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6161a13-3693-48b4-b42b-ef6ac099e93d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T01:43:41.000Z" + }, + "end": { + "$date": "2021-02-22T02:10:10.000Z" + }, + "events": [ + { + "uuid": "7b5d3aa0-fe38-4d00-84b8-e128c1a8ecdd", + "start": { + "$date": "2021-02-22T01:43:41.000Z" + }, + "end": { + "$date": "2021-02-22T02:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c47d5f73-e750-44f6-8827-3514229c904f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T02:17:44.000Z" + }, + "end": { + "$date": "2021-02-22T02:50:02.000Z" + }, + "events": [ + { + "uuid": "58bdfa1a-4a9f-4c9f-be4e-1471c180720d", + "start": { + "$date": "2021-02-22T02:17:44.000Z" + }, + "end": { + "$date": "2021-02-22T02:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56c27987-86a9-42ab-8ef9-6c339caed9de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T03:03:12.000Z" + }, + "end": { + "$date": "2021-02-22T03:35:42.000Z" + }, + "events": [ + { + "uuid": "c08e114e-3798-4e87-a61a-b3c8594dfb32", + "start": { + "$date": "2021-02-22T03:03:12.000Z" + }, + "end": { + "$date": "2021-02-22T03:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21910d7d-230f-4927-831b-3ab3c5d51d4e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-22T02:01:13.000Z" + }, + "end": { + "$date": "2021-02-22T05:17:40.000Z" + }, + "events": [ + { + "uuid": "779ee573-7139-4abd-a765-46361acaa4d5", + "start": { + "$date": "2021-02-22T02:01:13.000Z" + }, + "end": { + "$date": "2021-02-22T04:16:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8e4b4d81-c447-4d6b-a73c-f489516df89e", + "start": { + "$date": "2021-02-22T04:16:13.000Z" + }, + "end": { + "$date": "2021-02-22T05:17:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "bc45b70f-5ddc-4cca-9b9f-34bef99d630d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-22T02:02:01.000Z" + }, + "end": { + "$date": "2021-02-22T02:30:38.000Z" + }, + "events": [ + { + "uuid": "62426370-2022-48dd-8248-5c3ab06c1bb3", + "start": { + "$date": "2021-02-22T02:02:01.000Z" + }, + "end": { + "$date": "2021-02-22T02:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d20f8ad0-bc55-4581-ac88-9e1bf7c64e84", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T02:18:08.000Z" + }, + "end": { + "$date": "2021-02-22T02:50:00.000Z" + }, + "events": [ + { + "uuid": "39234e32-f72c-4d3a-9eeb-791ec7c1f4f5", + "start": { + "$date": "2021-02-22T02:18:08.000Z" + }, + "end": { + "$date": "2021-02-22T02:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6dbe47f-8155-4668-a351-21ea21d5798f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T02:13:50.000Z" + }, + "end": { + "$date": "2021-02-22T02:41:35.000Z" + }, + "events": [ + { + "uuid": "f6112712-f6dc-43d7-b398-876bcd52472e", + "start": { + "$date": "2021-02-22T02:13:50.000Z" + }, + "end": { + "$date": "2021-02-22T02:41:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "1ba18572-6096-4c37-8a2d-973b40471c74", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-22T02:34:07.000Z" + }, + "end": { + "$date": "2021-02-22T07:11:07.000Z" + }, + "events": [ + { + "uuid": "99905526-10fc-4602-924d-3130a9d388c7", + "start": { + "$date": "2021-02-22T02:34:07.000Z" + }, + "end": { + "$date": "2021-02-22T07:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3026ed32-7879-4db4-9072-4b5a9954d4f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T03:03:10.000Z" + }, + "end": { + "$date": "2021-02-22T03:35:32.000Z" + }, + "events": [ + { + "uuid": "a77bd269-0599-45c5-ac2e-5b0eef0a6c30", + "start": { + "$date": "2021-02-22T03:03:10.000Z" + }, + "end": { + "$date": "2021-02-22T03:35:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d53efcb4-0f82-4cdd-95e5-802a53ace722", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T03:03:12.000Z" + }, + "end": { + "$date": "2021-02-22T03:35:43.000Z" + }, + "events": [ + { + "uuid": "63a71e4f-fab1-4cab-b780-530bc7d83e06", + "start": { + "$date": "2021-02-22T03:03:12.000Z" + }, + "end": { + "$date": "2021-02-22T03:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "22b2c05b-89fe-4f36-9b66-b01c2297ff9e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-22T02:54:06.000Z" + }, + "end": { + "$date": "2021-02-22T05:32:42.000Z" + }, + "events": [ + { + "uuid": "8351f863-8262-41f9-b0fa-fc1b1d616f0f", + "start": { + "$date": "2021-02-22T02:54:06.000Z" + }, + "end": { + "$date": "2021-02-22T05:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e14bdb2-71ed-420a-bc80-1b5cd7247f9c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-22T03:12:41.000Z" + }, + "end": { + "$date": "2021-02-22T05:32:46.000Z" + }, + "events": [ + { + "uuid": "b22e23a7-db52-4bee-8b25-eaefbaf16871", + "start": { + "$date": "2021-02-22T03:12:41.000Z" + }, + "end": { + "$date": "2021-02-22T05:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9c0b9715-7690-4079-9043-c19029786aeb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-22T03:35:38.000Z" + }, + "end": { + "$date": "2021-02-22T04:07:18.000Z" + }, + "events": [ + { + "uuid": "531f9a4d-8638-434b-bfa8-9c6779d2cb28", + "start": { + "$date": "2021-02-22T03:35:38.000Z" + }, + "end": { + "$date": "2021-02-22T04:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f6358cb-3244-475a-a82f-94d612375740", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T03:58:59.000Z" + }, + "end": { + "$date": "2021-02-22T04:15:45.000Z" + }, + "events": [ + { + "uuid": "92482a21-6854-4472-9919-b0ed284a9766", + "start": { + "$date": "2021-02-22T03:58:59.000Z" + }, + "end": { + "$date": "2021-02-22T04:15:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bc28265-29a9-4977-9e60-5da1d2ec0ded", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T03:58:37.000Z" + }, + "end": { + "$date": "2021-02-22T04:15:47.000Z" + }, + "events": [ + { + "uuid": "096714ef-7553-4257-9626-f8eb0a769b6f", + "start": { + "$date": "2021-02-22T03:58:37.000Z" + }, + "end": { + "$date": "2021-02-22T04:15:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09760f21-ad19-4c84-a5ec-ab1714a8f329", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T03:58:40.000Z" + }, + "end": { + "$date": "2021-02-22T04:15:53.000Z" + }, + "events": [ + { + "uuid": "88cdf529-f8b6-40f5-8391-195a9a19cbdc", + "start": { + "$date": "2021-02-22T03:58:40.000Z" + }, + "end": { + "$date": "2021-02-22T04:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b499dfe5-bf3f-4352-8410-7c634c85d4fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T04:41:36.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:12.000Z" + }, + "events": [ + { + "uuid": "76d2203e-c8c7-41d8-8bb5-d3b223ed31eb", + "start": { + "$date": "2021-02-22T04:41:36.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", + "uuid": "fa52f4f1-aa24-439a-9647-6b5c686cd51c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T04:17:01.000Z" + }, + "end": { + "$date": "2021-02-22T04:21:37.000Z" + }, + "events": [ + { + "uuid": "45bd16a3-9199-44a0-a171-f128727d095a", + "start": { + "$date": "2021-02-22T04:17:01.000Z" + }, + "end": { + "$date": "2021-02-22T04:21:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "f6587030-ead0-45c4-99a9-c1f6595cae05", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T04:24:32.000Z" + }, + "end": { + "$date": "2021-02-22T04:33:34.000Z" + }, + "events": [ + { + "uuid": "d15f3f59-8cf0-412c-93ec-56d412b06870", + "start": { + "$date": "2021-02-22T04:24:32.000Z" + }, + "end": { + "$date": "2021-02-22T04:33:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d72f46c7-0628-4720-aec9-badea1a6dde0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T04:24:40.000Z" + }, + "end": { + "$date": "2021-02-22T04:31:40.000Z" + }, + "events": [ + { + "uuid": "517a3064-05ee-4d9b-a405-babdf1610974", + "start": { + "$date": "2021-02-22T04:24:40.000Z" + }, + "end": { + "$date": "2021-02-22T04:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efeadf22-07ef-43a4-8bc4-8fc22e9bc5a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T04:24:41.000Z" + }, + "end": { + "$date": "2021-02-22T04:31:40.000Z" + }, + "events": [ + { + "uuid": "625cde16-2b25-42cd-aaaa-a6b9935c0466", + "start": { + "$date": "2021-02-22T04:24:41.000Z" + }, + "end": { + "$date": "2021-02-22T04:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01086e64-1cbd-4b10-a8ec-6273701a677e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T04:31:40.000Z" + }, + "end": { + "$date": "2021-02-22T04:34:15.000Z" + }, + "events": [ + { + "uuid": "81c91a5d-50ca-4c90-8c6c-e383372afb6b", + "start": { + "$date": "2021-02-22T04:31:40.000Z" + }, + "end": { + "$date": "2021-02-22T04:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77788abb-fe9f-43c4-a1d2-3244a5be53b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T04:31:42.000Z" + }, + "end": { + "$date": "2021-02-22T04:34:15.000Z" + }, + "events": [ + { + "uuid": "cd9bca06-cbfd-4dd6-992b-68b1423b9620", + "start": { + "$date": "2021-02-22T04:31:42.000Z" + }, + "end": { + "$date": "2021-02-22T04:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "523ffc5f-bec6-4b03-8132-4c0478b68e6a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T04:34:30.000Z" + }, + "end": { + "$date": "2021-02-22T04:36:19.000Z" + }, + "events": [ + { + "uuid": "65533146-504c-4adb-a488-3febce55a9d2", + "start": { + "$date": "2021-02-22T04:34:30.000Z" + }, + "end": { + "$date": "2021-02-22T04:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b66b619-4ffa-4d5f-ba57-d0006eb6e55b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T04:34:32.000Z" + }, + "end": { + "$date": "2021-02-22T04:36:20.000Z" + }, + "events": [ + { + "uuid": "f9a410ed-cff5-4bef-98c2-952f5e95a69e", + "start": { + "$date": "2021-02-22T04:34:32.000Z" + }, + "end": { + "$date": "2021-02-22T04:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae4c7ac3-e9e8-44b3-9a5d-54df4fea12ad", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T04:41:25.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:08.000Z" + }, + "events": [ + { + "uuid": "c4cbd542-f618-4f30-a62c-d1c0041d2020", + "start": { + "$date": "2021-02-22T04:41:25.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93a22b22-4d92-4042-bf40-054e020990ff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T04:39:59.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:10.000Z" + }, + "events": [ + { + "uuid": "d9bd0936-f94d-4a8c-8b31-19dc759eaebf", + "start": { + "$date": "2021-02-22T04:39:59.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a3561d1-6d63-45f6-924d-a2bbad368e8e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-22T04:41:21.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:13.000Z" + }, + "events": [ + { + "uuid": "74074006-aee8-4e3b-b3bc-a39029576ca6", + "start": { + "$date": "2021-02-22T04:41:21.000Z" + }, + "end": { + "$date": "2021-02-22T05:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "546ef287-f707-4ce4-9591-2a0b40854d6e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T05:26:53.000Z" + }, + "end": { + "$date": "2021-02-22T05:36:59.000Z" + }, + "events": [ + { + "uuid": "b7710df4-1f8b-4e7d-8802-d0ea7dfcfee4", + "start": { + "$date": "2021-02-22T05:26:53.000Z" + }, + "end": { + "$date": "2021-02-22T05:36:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cba41b25-c148-4afa-b95b-7fe4304e341b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T05:27:38.000Z" + }, + "end": { + "$date": "2021-02-22T05:36:54.000Z" + }, + "events": [ + { + "uuid": "5e7b207a-a51d-4103-8712-5f4777fef101", + "start": { + "$date": "2021-02-22T05:27:38.000Z" + }, + "end": { + "$date": "2021-02-22T05:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85ffe9f4-5498-419a-b524-bd8820a84f41", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T05:26:57.000Z" + }, + "end": { + "$date": "2021-02-22T05:37:03.000Z" + }, + "events": [ + { + "uuid": "075fb391-e4e1-4515-8582-ea55a5bc1250", + "start": { + "$date": "2021-02-22T05:26:57.000Z" + }, + "end": { + "$date": "2021-02-22T05:37:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "302c47b2-a25f-4e32-b0a8-073e2ed7a15d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-22T05:26:54.000Z" + }, + "end": { + "$date": "2021-02-22T05:36:59.000Z" + }, + "events": [ + { + "uuid": "ed5a0865-c95e-4ee9-a0af-ab785f7b9ed5", + "start": { + "$date": "2021-02-22T05:26:54.000Z" + }, + "end": { + "$date": "2021-02-22T05:36:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "26e96b4d-1454-4910-96bc-c39ccb1b4445", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-22T05:33:47.000Z" + }, + "end": { + "$date": "2021-02-22T06:00:58.000Z" + }, + "events": [ + { + "uuid": "7d2686a1-432f-42d3-a229-7cf0715ea1cd", + "start": { + "$date": "2021-02-22T05:33:47.000Z" + }, + "end": { + "$date": "2021-02-22T06:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "196f3fcf-0ffe-4f1a-b9f1-ef7aec49f43c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T05:39:09.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:45.000Z" + }, + "events": [ + { + "uuid": "e35cfdcc-8c8e-49ce-877e-ffee31cc2db3", + "start": { + "$date": "2021-02-22T05:39:09.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4c404cf-787c-43a5-a994-e73fc4b9700c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T05:39:12.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:42.000Z" + }, + "events": [ + { + "uuid": "6a096816-2854-4f1c-a0e2-5d6f256353fd", + "start": { + "$date": "2021-02-22T05:39:12.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c81191d-69a2-49c1-abd3-7da0d6cf11c6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-22T05:40:44.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:46.000Z" + }, + "events": [ + { + "uuid": "1685de3e-fe66-496e-bd96-5c7131ba2d6a", + "start": { + "$date": "2021-02-22T05:40:44.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3ca9963-94b8-4c32-ab9d-2d5a494e9647", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-22T05:39:10.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:45.000Z" + }, + "events": [ + { + "uuid": "5b5f85c4-b7e5-4e05-845b-635608df399a", + "start": { + "$date": "2021-02-22T05:39:10.000Z" + }, + "end": { + "$date": "2021-02-22T06:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "20ebd0b1-93b9-4f73-9382-de0247edf573", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T06:26:18.000Z" + }, + "end": { + "$date": "2021-02-22T07:08:34.000Z" + }, + "events": [ + { + "uuid": "b9348fdf-524e-4115-ad3f-230fbbcc2f99", + "start": { + "$date": "2021-02-22T06:26:18.000Z" + }, + "end": { + "$date": "2021-02-22T07:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "65252df7-4ffb-4d62-96b5-19228f1d68b1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-22T16:34:10.000Z" + }, + "end": { + "$date": "2021-02-22T17:54:06.000Z" + }, + "events": [ + { + "uuid": "2d7c18df-63ed-4482-a56f-c3c922d49feb", + "start": { + "$date": "2021-02-22T16:34:10.000Z" + }, + "end": { + "$date": "2021-02-22T17:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "e7b64f60-5ddc-4c17-be0d-a2f335de36dc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-22T17:31:28.000Z" + }, + "end": { + "$date": "2021-02-22T19:55:24.000Z" + }, + "events": [ + { + "uuid": "3ee8dca7-2050-4608-b955-006f27c9f0a1", + "start": { + "$date": "2021-02-22T17:31:28.000Z" + }, + "end": { + "$date": "2021-02-22T19:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2728072b-eb22-4460-ab53-e7fc63aefbde", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T17:35:51.000Z" + }, + "end": { + "$date": "2021-02-22T17:52:38.000Z" + }, + "events": [ + { + "uuid": "32584839-2a49-45f7-8da4-48f9823b8204", + "start": { + "$date": "2021-02-22T17:35:51.000Z" + }, + "end": { + "$date": "2021-02-22T17:52:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b881f911-1da4-4a41-b6c9-81b653d8f720", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T17:55:52.000Z" + }, + "end": { + "$date": "2021-02-22T18:22:13.000Z" + }, + "events": [ + { + "uuid": "c01df212-0917-45a9-8fda-31275512456b", + "start": { + "$date": "2021-02-22T17:55:52.000Z" + }, + "end": { + "$date": "2021-02-22T18:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47d71ede-70f1-4d6c-b2d1-94dcf2ea6105", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-22T18:07:38.000Z" + }, + "end": { + "$date": "2021-02-22T18:42:09.000Z" + }, + "events": [ + { + "uuid": "63212a0c-e476-42c2-9160-b2e5122f1c1c", + "start": { + "$date": "2021-02-22T18:07:38.000Z" + }, + "end": { + "$date": "2021-02-22T18:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51b886dd-c01e-4224-8d72-d06103ac1b36", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T19:55:53.000Z" + }, + "end": { + "$date": "2021-02-22T19:55:50.000Z" + }, + "events": [ + { + "uuid": "218fa52d-c8bd-43d7-841c-6fffa1c4ed9b", + "start": { + "$date": "2021-02-22T19:55:53.000Z" + }, + "end": { + "$date": "2021-02-22T19:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "140b3173-2f52-4dca-b77c-fe5bf6377c61", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-22T19:42:08.000Z" + }, + "end": { + "$date": "2021-02-22T23:22:19.000Z" + }, + "events": [ + { + "uuid": "41bcceb9-8041-4a67-9a87-395af5a6b142", + "start": { + "$date": "2021-02-22T19:42:08.000Z" + }, + "end": { + "$date": "2021-02-22T21:00:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5ccfbcb-c848-47fd-ad74-951bcc68b75c", + "start": { + "$date": "2021-02-22T21:00:08.000Z" + }, + "end": { + "$date": "2021-02-22T21:09:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f12d44e8-4096-4336-8e16-4bbd6f067be8", + "start": { + "$date": "2021-02-22T21:09:08.000Z" + }, + "end": { + "$date": "2021-02-22T23:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26ece7bf-3fb9-4d65-b4b9-c399c664950f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T19:57:37.000Z" + }, + "end": { + "$date": "2021-02-22T20:25:57.000Z" + }, + "events": [ + { + "uuid": "8e870984-4927-44ce-b220-15e38a16d317", + "start": { + "$date": "2021-02-22T19:57:37.000Z" + }, + "end": { + "$date": "2021-02-22T20:25:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa4d1cc9-1055-411c-9b35-40731fc10c6a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-22T19:57:29.000Z" + }, + "end": { + "$date": "2021-02-22T20:37:25.000Z" + }, + "events": [ + { + "uuid": "f1107886-b426-4416-9793-fe810b48bba7", + "start": { + "$date": "2021-02-22T19:57:29.000Z" + }, + "end": { + "$date": "2021-02-22T20:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "4c0eec24-b63a-4c0d-a463-1271d4c9325a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-22T19:57:55.000Z" + }, + "end": { + "$date": "2021-02-22T23:11:46.000Z" + }, + "events": [ + { + "uuid": "bab32afc-566f-4fad-93a8-261ff0153200", + "start": { + "$date": "2021-02-22T19:57:55.000Z" + }, + "end": { + "$date": "2021-02-22T23:11:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "13a90b98-fb05-4b9c-b983-9b281a91dc81", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-22T20:16:31.000Z" + }, + "end": { + "$date": "2021-02-22T20:50:00.000Z" + }, + "events": [ + { + "uuid": "cdcac91a-6c5a-4f4e-885f-e0b13ca7e43d", + "start": { + "$date": "2021-02-22T20:16:31.000Z" + }, + "end": { + "$date": "2021-02-22T20:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "de628854-c00b-4336-90ad-edb0bed80508", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-22T20:22:57.000Z" + }, + "end": { + "$date": "2021-02-22T21:11:02.000Z" + }, + "events": [ + { + "uuid": "579467e4-e4da-4608-b1e9-9a083cb1499b", + "start": { + "$date": "2021-02-22T20:22:57.000Z" + }, + "end": { + "$date": "2021-02-22T21:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f8ba5cf-e3be-4f04-9199-c72587de411a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T20:40:33.000Z" + }, + "end": { + "$date": "2021-02-22T21:10:49.000Z" + }, + "events": [ + { + "uuid": "e656a0c4-79c4-4d71-9283-dee7ee577995", + "start": { + "$date": "2021-02-22T20:40:33.000Z" + }, + "end": { + "$date": "2021-02-22T21:10:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "404bb0bf-0e85-45f8-a73e-9fa047f42dee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-22T21:15:12.000Z" + }, + "end": { + "$date": "2021-02-22T21:15:34.000Z" + }, + "events": [ + { + "uuid": "e49a1934-1a8d-4e33-a336-276dfa992a35", + "start": { + "$date": "2021-02-22T21:15:12.000Z" + }, + "end": { + "$date": "2021-02-22T21:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85728141-9bee-43c5-af53-0aab691b45cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T20:58:29.000Z" + }, + "end": { + "$date": "2021-02-22T21:38:30.000Z" + }, + "events": [ + { + "uuid": "14a7e7fe-dc1a-4ebb-8b83-6a61a2498673", + "start": { + "$date": "2021-02-22T20:58:29.000Z" + }, + "end": { + "$date": "2021-02-22T21:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da42c6d4-9f21-4aaf-904f-2b5e7ef97b00", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T21:18:18.000Z" + }, + "end": { + "$date": "2021-02-22T21:42:16.000Z" + }, + "events": [ + { + "uuid": "20b24f7f-0bc8-4076-99dd-343f6f3d4de6", + "start": { + "$date": "2021-02-22T21:18:18.000Z" + }, + "end": { + "$date": "2021-02-22T21:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "888b8bb6-a1bb-4267-9636-97837765f29d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T21:47:10.000Z" + }, + "end": { + "$date": "2021-02-22T22:08:57.000Z" + }, + "events": [ + { + "uuid": "0d1f024e-77d3-45ec-9fe8-74f50f4ec0a1", + "start": { + "$date": "2021-02-22T21:47:10.000Z" + }, + "end": { + "$date": "2021-02-22T22:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2051881-74dd-4451-9ac2-0e2bdb3c0b8d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T21:47:06.000Z" + }, + "end": { + "$date": "2021-02-22T22:08:52.000Z" + }, + "events": [ + { + "uuid": "8c09884b-5b1d-4c54-95fa-452c3801480e", + "start": { + "$date": "2021-02-22T21:47:06.000Z" + }, + "end": { + "$date": "2021-02-22T22:08:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8250bdf1-e337-4468-be77-cb9753c1274c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-22T22:11:18.000Z" + }, + "end": { + "$date": "2021-02-22T22:22:58.000Z" + }, + "events": [ + { + "uuid": "fe11f7c7-76d5-43de-b46f-8e95a5d428c9", + "start": { + "$date": "2021-02-22T22:11:18.000Z" + }, + "end": { + "$date": "2021-02-22T22:22:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0c95e02-7bc7-4ac1-adad-201b87d3ee5c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-22T22:11:21.000Z" + }, + "end": { + "$date": "2021-02-22T22:23:10.000Z" + }, + "events": [ + { + "uuid": "f38ae5e8-432f-48b0-82ff-76f463ca4d14", + "start": { + "$date": "2021-02-22T22:11:21.000Z" + }, + "end": { + "$date": "2021-02-22T22:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c3c08688-be5e-4c93-8ea2-f6ec41cb60f7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-22T22:21:00.000Z" + }, + "end": { + "$date": "2021-02-23T00:11:37.000Z" + }, + "events": [ + { + "uuid": "8949a65f-2fbd-4f47-a48a-e8c9b67c0760", + "start": { + "$date": "2021-02-22T22:21:00.000Z" + }, + "end": { + "$date": "2021-02-23T00:11:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "15ce60fb-e30c-477c-842c-8263bb4ae305", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-22T23:58:02.000Z" + }, + "end": { + "$date": "2021-02-23T00:02:02.000Z" + }, + "events": [ + { + "uuid": "ceaff751-96b3-49a6-802e-17c721abb42f", + "start": { + "$date": "2021-02-22T23:58:02.000Z" + }, + "end": { + "$date": "2021-02-23T00:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "85ac1f1b-eb66-409d-9b71-bc7577e567e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-23T00:14:27.000Z" + }, + "end": { + "$date": "2021-02-23T01:37:30.000Z" + }, + "events": [ + { + "uuid": "097395bd-961f-4b3c-9e66-e2023fc21a72", + "start": { + "$date": "2021-02-23T00:14:27.000Z" + }, + "end": { + "$date": "2021-02-23T00:25:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "307dcd8f-1452-457c-ae5e-32c52ea129b3", + "start": { + "$date": "2021-02-23T00:25:27.000Z" + }, + "end": { + "$date": "2021-02-23T00:29:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2301262f-eb97-4794-8a95-a3bc33a9e0e5", + "start": { + "$date": "2021-02-23T00:29:27.000Z" + }, + "end": { + "$date": "2021-02-23T00:40:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2288c6a5-d083-446b-9b9c-49060a4f5188", + "start": { + "$date": "2021-02-23T00:40:27.000Z" + }, + "end": { + "$date": "2021-02-23T01:31:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "003c5e28-f14a-480c-aa0c-8b3bcd90ec6e", + "start": { + "$date": "2021-02-23T01:31:27.000Z" + }, + "end": { + "$date": "2021-02-23T01:37:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1e02de8-02e5-4f65-9765-8b07e1cf2cce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T00:18:23.000Z" + }, + "end": { + "$date": "2021-02-23T01:20:38.000Z" + }, + "events": [ + { + "uuid": "ace13667-081a-417b-9a8a-acdf1474e500", + "start": { + "$date": "2021-02-23T00:18:23.000Z" + }, + "end": { + "$date": "2021-02-23T01:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "942bafbd-a4e9-490d-a23b-3fb8ea9d91b7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T01:33:31.000Z" + }, + "end": { + "$date": "2021-02-23T01:47:37.000Z" + }, + "events": [ + { + "uuid": "e945b334-1440-4998-9177-b9d0dc170e9a", + "start": { + "$date": "2021-02-23T01:33:31.000Z" + }, + "end": { + "$date": "2021-02-23T01:47:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c04e9ea6-c2c6-49c4-8c35-29a4b047cfa8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T01:30:04.000Z" + }, + "end": { + "$date": "2021-02-23T01:31:40.000Z" + }, + "events": [ + { + "uuid": "ebc96cc0-c069-4040-8e54-d452a8880e94", + "start": { + "$date": "2021-02-23T01:30:04.000Z" + }, + "end": { + "$date": "2021-02-23T01:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3278d052-4903-4a13-91e5-a9830797dd33", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T01:33:37.000Z" + }, + "end": { + "$date": "2021-02-23T01:47:45.000Z" + }, + "events": [ + { + "uuid": "49239633-0af7-429a-89e1-87ba243f7cbf", + "start": { + "$date": "2021-02-23T01:33:37.000Z" + }, + "end": { + "$date": "2021-02-23T01:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "1afe0545-975c-497c-abff-66c23d2246e7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-23T01:37:46.000Z" + }, + "end": { + "$date": "2021-02-23T01:59:51.000Z" + }, + "events": [ + { + "uuid": "61eae5b8-c4cb-451f-a69f-b6b76f950e2e", + "start": { + "$date": "2021-02-23T01:37:46.000Z" + }, + "end": { + "$date": "2021-02-23T01:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "49b3a939-4cd7-4592-8c4a-4751548436a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-23T01:42:12.000Z" + }, + "end": { + "$date": "2021-02-23T02:34:23.000Z" + }, + "events": [ + { + "uuid": "2dde20d4-cdff-4590-9c47-e613d46c787e", + "start": { + "$date": "2021-02-23T01:42:12.000Z" + }, + "end": { + "$date": "2021-02-23T02:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbbf7ac5-caff-47a2-9959-39ee1bde3a78", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T01:50:02.000Z" + }, + "end": { + "$date": "2021-02-23T02:08:13.000Z" + }, + "events": [ + { + "uuid": "5ccea6a0-d8d3-4199-b738-95c6a4797995", + "start": { + "$date": "2021-02-23T01:50:02.000Z" + }, + "end": { + "$date": "2021-02-23T02:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b651d0b2-3511-4ca7-afc1-3fe44f4523b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T01:50:08.000Z" + }, + "end": { + "$date": "2021-02-23T02:08:16.000Z" + }, + "events": [ + { + "uuid": "543f834f-f003-4526-86f2-b8d258c635f3", + "start": { + "$date": "2021-02-23T01:50:08.000Z" + }, + "end": { + "$date": "2021-02-23T02:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0e4ca169-d2d4-4915-94ad-6ece35775c86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-23T02:00:12.000Z" + }, + "end": { + "$date": "2021-02-23T04:07:47.000Z" + }, + "events": [ + { + "uuid": "c103f023-f772-4081-ad90-6349e0d47508", + "start": { + "$date": "2021-02-23T02:00:12.000Z" + }, + "end": { + "$date": "2021-02-23T03:09:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0508e483-f804-4762-8605-89d4d9def751", + "start": { + "$date": "2021-02-23T03:09:12.000Z" + }, + "end": { + "$date": "2021-02-23T03:14:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb774e94-fab3-4e40-b801-2b71ea5edc3e", + "start": { + "$date": "2021-02-23T03:14:12.000Z" + }, + "end": { + "$date": "2021-02-23T04:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cd453e6-c974-4572-b583-85ec4a510d51", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T02:12:29.000Z" + }, + "end": { + "$date": "2021-02-23T02:32:29.000Z" + }, + "events": [ + { + "uuid": "c3ef2d6f-649f-4d0c-9887-d104af4d8ad5", + "start": { + "$date": "2021-02-23T02:12:29.000Z" + }, + "end": { + "$date": "2021-02-23T02:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5407c69-b019-481e-801c-8178deaecdbd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T02:11:24.000Z" + }, + "end": { + "$date": "2021-02-23T02:32:41.000Z" + }, + "events": [ + { + "uuid": "e3c1b6da-cf1a-47c2-9f2e-5fad049b1005", + "start": { + "$date": "2021-02-23T02:11:24.000Z" + }, + "end": { + "$date": "2021-02-23T02:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ef8b8b1-fde4-4e14-9fc1-021471098034", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-23T02:11:23.000Z" + }, + "end": { + "$date": "2021-02-23T02:32:27.000Z" + }, + "events": [ + { + "uuid": "d348f377-1518-46c3-a45c-e5cf2f8364c8", + "start": { + "$date": "2021-02-23T02:11:23.000Z" + }, + "end": { + "$date": "2021-02-23T02:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bd28e08-99a9-43f5-b1d9-55be1e03be46", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T02:36:15.000Z" + }, + "end": { + "$date": "2021-02-23T02:54:09.000Z" + }, + "events": [ + { + "uuid": "3bcab195-b1da-4b78-a1fd-461365faaaae", + "start": { + "$date": "2021-02-23T02:36:15.000Z" + }, + "end": { + "$date": "2021-02-23T02:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5ca7a1a-eb9b-4ada-8c2e-007daa4f432f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-23T02:37:18.000Z" + }, + "end": { + "$date": "2021-02-23T02:53:13.000Z" + }, + "events": [ + { + "uuid": "442c0ef9-a656-4489-8fa3-a3235d9b2e65", + "start": { + "$date": "2021-02-23T02:37:18.000Z" + }, + "end": { + "$date": "2021-02-23T02:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99de6da1-12ae-461c-96c3-8f1c44b3a496", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-23T02:36:09.000Z" + }, + "end": { + "$date": "2021-02-23T02:53:13.000Z" + }, + "events": [ + { + "uuid": "40dcfe20-179e-4107-b240-a69a8de42e53", + "start": { + "$date": "2021-02-23T02:36:09.000Z" + }, + "end": { + "$date": "2021-02-23T02:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b7c1804d-fe49-4480-bbe3-a005b712a61b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-23T03:26:24.000Z" + }, + "end": { + "$date": "2021-02-23T04:10:28.000Z" + }, + "events": [ + { + "uuid": "4e34d192-c073-4860-aa7f-c001f46a8a16", + "start": { + "$date": "2021-02-23T03:26:24.000Z" + }, + "end": { + "$date": "2021-02-23T04:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4f5018d-6435-444d-b523-70864f2b3b68", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-23T03:39:42.000Z" + }, + "end": { + "$date": "2021-02-23T04:13:37.000Z" + }, + "events": [ + { + "uuid": "eb6c08aa-a931-41b4-b583-2f054f99ae04", + "start": { + "$date": "2021-02-23T03:39:42.000Z" + }, + "end": { + "$date": "2021-02-23T04:13:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0d368311-eee3-4163-8b0c-f31c78cf9fd8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-23T03:34:47.000Z" + }, + "end": { + "$date": "2021-02-23T07:00:43.000Z" + }, + "events": [ + { + "uuid": "a193c8ea-5db8-4e43-b7c2-bbc26cb50099", + "start": { + "$date": "2021-02-23T03:34:47.000Z" + }, + "end": { + "$date": "2021-02-23T07:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2456d4f6-8154-45ac-b79d-e9989be499d5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-23T04:07:58.000Z" + }, + "end": { + "$date": "2021-02-23T04:09:17.000Z" + }, + "events": [ + { + "uuid": "52009f30-8c19-46f5-a6bb-4f6655b62094", + "start": { + "$date": "2021-02-23T04:07:58.000Z" + }, + "end": { + "$date": "2021-02-23T04:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "de0a2937-3da5-4cdb-8bea-81d64226eeb6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-23T05:57:15.000Z" + }, + "end": { + "$date": "2021-02-23T06:33:35.000Z" + }, + "events": [ + { + "uuid": "26195f1e-1bb6-47d0-97a6-12c7b153b193", + "start": { + "$date": "2021-02-23T05:57:15.000Z" + }, + "end": { + "$date": "2021-02-23T06:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "efe8806e-a058-4e8d-a435-04ed83182bba", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-23T04:10:09.000Z" + }, + "end": { + "$date": "2021-02-23T06:33:43.000Z" + }, + "events": [ + { + "uuid": "653b3e24-f4e9-4deb-af1e-2192500c6ffc", + "start": { + "$date": "2021-02-23T04:10:09.000Z" + }, + "end": { + "$date": "2021-02-23T06:33:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad87f22b-e196-43c9-aa23-8ca45652dd53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T04:13:23.000Z" + }, + "end": { + "$date": "2021-02-23T04:31:19.000Z" + }, + "events": [ + { + "uuid": "5d2254d5-4c09-4825-bf37-4257495990a3", + "start": { + "$date": "2021-02-23T04:13:23.000Z" + }, + "end": { + "$date": "2021-02-23T04:31:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b408f7fb-115e-48eb-9c27-c96a27ec7937", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-23T04:14:23.000Z" + }, + "end": { + "$date": "2021-02-23T04:31:17.000Z" + }, + "events": [ + { + "uuid": "4059f754-f719-4fa8-a69a-9f2ec490f35c", + "start": { + "$date": "2021-02-23T04:14:23.000Z" + }, + "end": { + "$date": "2021-02-23T04:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86e4eba8-fc1e-4418-831a-ac4f833ee587", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-23T04:28:40.000Z" + }, + "end": { + "$date": "2021-02-23T04:55:50.000Z" + }, + "events": [ + { + "uuid": "36f4ad51-5395-4df8-9cc9-9f4adcafb580", + "start": { + "$date": "2021-02-23T04:28:40.000Z" + }, + "end": { + "$date": "2021-02-23T04:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dcd2fcf0-eb18-4617-97c1-56c236e94fc7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-23T04:19:46.000Z" + }, + "end": { + "$date": "2021-02-23T05:25:54.000Z" + }, + "events": [ + { + "uuid": "d754dcaa-dc96-4de4-b384-37302d2e07ff", + "start": { + "$date": "2021-02-23T04:19:46.000Z" + }, + "end": { + "$date": "2021-02-23T05:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8dcae812-835e-440c-af35-f981b8aaab5a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-23T04:23:41.000Z" + }, + "end": { + "$date": "2021-02-23T04:34:48.000Z" + }, + "events": [ + { + "uuid": "a49d535c-d6ca-413e-a38b-f556eda00b6b", + "start": { + "$date": "2021-02-23T04:23:41.000Z" + }, + "end": { + "$date": "2021-02-23T04:34:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72c9ac4e-4559-477c-a6a3-ac46400ba4e6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T04:34:06.000Z" + }, + "end": { + "$date": "2021-02-23T04:53:23.000Z" + }, + "events": [ + { + "uuid": "07acb5e7-9777-4dcd-894e-c84346841f3b", + "start": { + "$date": "2021-02-23T04:34:06.000Z" + }, + "end": { + "$date": "2021-02-23T04:53:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b70a886-46d1-4a2a-b681-4a851b573143", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T04:33:19.000Z" + }, + "end": { + "$date": "2021-02-23T04:53:15.000Z" + }, + "events": [ + { + "uuid": "8dfa1d6a-2350-4ff2-83e5-a6b52bcf415d", + "start": { + "$date": "2021-02-23T04:33:19.000Z" + }, + "end": { + "$date": "2021-02-23T04:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe486123-5060-4673-8551-f2f32335bc5e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-23T04:34:14.000Z" + }, + "end": { + "$date": "2021-02-23T04:53:17.000Z" + }, + "events": [ + { + "uuid": "048e57c6-0e34-4e96-94ac-73fb92dbc9cd", + "start": { + "$date": "2021-02-23T04:34:14.000Z" + }, + "end": { + "$date": "2021-02-23T04:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a8177615-f844-46cc-981e-1d2a60dc1741", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-23T04:33:27.000Z" + }, + "end": { + "$date": "2021-02-23T05:22:49.000Z" + }, + "events": [ + { + "uuid": "852789d6-d8cd-4009-8f2f-c431bf86aa23", + "start": { + "$date": "2021-02-23T04:33:27.000Z" + }, + "end": { + "$date": "2021-02-23T05:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b909a6f-d9c9-4917-8222-fe1903e1f461", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T04:53:41.000Z" + }, + "end": { + "$date": "2021-02-23T04:54:53.000Z" + }, + "events": [ + { + "uuid": "5e8b3488-7b0b-4f1b-b9d7-7869dfbbcd97", + "start": { + "$date": "2021-02-23T04:53:41.000Z" + }, + "end": { + "$date": "2021-02-23T04:54:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c56d24f3-da9c-407c-ace0-11cd867dc521", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-23T05:06:32.000Z" + }, + "end": { + "$date": "2021-02-23T05:39:03.000Z" + }, + "events": [ + { + "uuid": "c8df5770-7a5e-4afc-b4c7-e2127182e0e2", + "start": { + "$date": "2021-02-23T05:06:32.000Z" + }, + "end": { + "$date": "2021-02-23T05:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fd61633-3d63-4ba3-93e1-bfe6d16ef6ec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-23T05:29:10.000Z" + }, + "end": { + "$date": "2021-02-23T05:44:44.000Z" + }, + "events": [ + { + "uuid": "4e506880-b1bf-476f-ac03-ff3636637670", + "start": { + "$date": "2021-02-23T05:29:10.000Z" + }, + "end": { + "$date": "2021-02-23T05:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e0c17166-cc8d-4250-b071-17d9a7994c0b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-23T05:39:45.000Z" + }, + "end": { + "$date": "2021-02-23T07:45:52.000Z" + }, + "events": [ + { + "uuid": "d2320aeb-0681-42dc-a7f1-c5965c82c416", + "start": { + "$date": "2021-02-23T05:39:45.000Z" + }, + "end": { + "$date": "2021-02-23T07:45:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "2b1889ea-a904-42d4-9fe7-a637d7e15134", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-23T06:34:06.000Z" + }, + "end": { + "$date": "2021-02-23T06:57:11.000Z" + }, + "events": [ + { + "uuid": "8c00eea0-1c9f-4127-8a94-f24fc521eb53", + "start": { + "$date": "2021-02-23T06:34:06.000Z" + }, + "end": { + "$date": "2021-02-23T06:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "086fcc61-2ecb-41d6-b64c-90fc8c9a42bd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-23T07:56:08.000Z" + }, + "end": { + "$date": "2021-02-23T08:38:46.000Z" + }, + "events": [ + { + "uuid": "4e996cf5-558c-4379-883b-9dcf6405fe79", + "start": { + "$date": "2021-02-23T07:56:08.000Z" + }, + "end": { + "$date": "2021-02-23T08:38:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e4b0f4d-d2ce-4bfb-8819-1a7845d6f59d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-23T18:25:57.000Z" + }, + "end": { + "$date": "2021-02-23T18:42:16.000Z" + }, + "events": [ + { + "uuid": "e4d4f558-241c-49e7-badc-adca8e02d790", + "start": { + "$date": "2021-02-23T18:25:57.000Z" + }, + "end": { + "$date": "2021-02-23T18:37:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "280d8bfd-5b48-4b31-b130-dc80b8936056", + "start": { + "$date": "2021-02-23T18:37:57.000Z" + }, + "end": { + "$date": "2021-02-23T18:38:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "95ed1e5b-1726-49c1-9620-eec480aa932e", + "start": { + "$date": "2021-02-23T18:38:57.000Z" + }, + "end": { + "$date": "2021-02-23T18:48:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6708117f-79dd-4d65-b3f4-810f6e720f0e", + "start": { + "$date": "2021-02-23T18:48:57.000Z" + }, + "end": { + "$date": "2021-02-23T18:49:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e742d20-da64-4018-b9f2-c8915d2c0ca1", + "start": { + "$date": "2021-02-23T18:49:57.000Z" + }, + "end": { + "$date": "2021-02-23T19:19:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33e1bba3-7bed-4560-ab4e-8cb916fafa83", + "start": { + "$date": "2021-02-23T19:19:57.000Z" + }, + "end": { + "$date": "2021-02-23T19:21:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d58a4fd-66cf-46b4-b98b-724b2bf075bb", + "start": { + "$date": "2021-02-23T19:21:57.000Z" + }, + "end": { + "$date": "2021-02-23T19:41:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81887916-e867-4de9-9a8f-5183acdd2130", + "start": { + "$date": "2021-02-23T19:41:57.000Z" + }, + "end": { + "$date": "2021-02-23T19:42:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "82f1a102-f4d1-4b01-84c6-e61a21e9b146", + "start": { + "$date": "2021-02-23T19:42:57.000Z" + }, + "end": { + "$date": "2021-02-23T18:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed2bfbb5-71db-4d4f-85cb-67c2075ecb41", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T18:49:40.000Z" + }, + "end": { + "$date": "2021-02-23T19:17:49.000Z" + }, + "events": [ + { + "uuid": "0773cba0-6f60-4360-bffb-099a58ab9234", + "start": { + "$date": "2021-02-23T18:49:40.000Z" + }, + "end": { + "$date": "2021-02-23T19:17:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c78f453-5bb7-4e88-8c81-e0cf30a7ea10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-23T18:52:23.000Z" + }, + "end": { + "$date": "2021-02-23T19:05:32.000Z" + }, + "events": [ + { + "uuid": "79dc50c7-9944-4116-adb8-338bf4f43c63", + "start": { + "$date": "2021-02-23T18:52:23.000Z" + }, + "end": { + "$date": "2021-02-23T19:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3e3612f8-027b-434f-9124-521244aab13d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-23T19:13:39.000Z" + }, + "end": { + "$date": "2021-02-23T19:31:39.000Z" + }, + "events": [ + { + "uuid": "3ea75dc5-9e1f-426a-b029-8ff3f75b0a2d", + "start": { + "$date": "2021-02-23T19:13:39.000Z" + }, + "end": { + "$date": "2021-02-23T19:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76cf9a8c-3235-4bd8-b12e-6508f149b0c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T19:25:00.000Z" + }, + "end": { + "$date": "2021-02-23T19:48:41.000Z" + }, + "events": [ + { + "uuid": "649d1218-b7eb-406d-b148-f3888056f7ad", + "start": { + "$date": "2021-02-23T19:25:00.000Z" + }, + "end": { + "$date": "2021-02-23T19:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c42b9d33-6862-46bc-96dc-463ee0162a6f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T19:49:08.000Z" + }, + "end": { + "$date": "2021-02-23T19:52:12.000Z" + }, + "events": [ + { + "uuid": "613093f5-8c0b-49c1-8c59-5be57c6e6661", + "start": { + "$date": "2021-02-23T19:49:08.000Z" + }, + "end": { + "$date": "2021-02-23T19:52:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "81724aa4-926e-492c-a454-22ba9b21346c", + "uuid": "220f87fc-5a89-4770-b1ef-3b2bc9f733d0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T19:54:13.000Z" + }, + "end": { + "$date": "2021-02-23T21:39:12.000Z" + }, + "events": [ + { + "uuid": "6ff41a3a-57da-4a77-b69a-1b0aeb7d3a8b", + "start": { + "$date": "2021-02-23T19:54:13.000Z" + }, + "end": { + "$date": "2021-02-23T21:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c5a84e81-5bbe-4326-a800-28db2f7f1fe5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-23T19:54:46.000Z" + }, + "end": { + "$date": "2021-02-23T20:08:13.000Z" + }, + "events": [ + { + "uuid": "8784f26e-2ed4-4268-b9b7-62ebec67825f", + "start": { + "$date": "2021-02-23T19:54:46.000Z" + }, + "end": { + "$date": "2021-02-23T20:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "18bb9076-c777-42b0-a349-49e100abb2a8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-23T20:36:20.000Z" + }, + "end": { + "$date": "2021-02-23T21:05:12.000Z" + }, + "events": [ + { + "uuid": "3b8323de-f0e3-40b0-a819-747e57786ee9", + "start": { + "$date": "2021-02-23T20:36:20.000Z" + }, + "end": { + "$date": "2021-02-23T21:05:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a2890ddf-42a3-43b8-9d73-4cc5707fe6aa", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-23T21:33:30.000Z" + }, + "end": { + "$date": "2021-02-24T01:13:41.000Z" + }, + "events": [ + { + "uuid": "458f7ad5-51fc-469d-847b-04f44e96fc52", + "start": { + "$date": "2021-02-23T21:33:30.000Z" + }, + "end": { + "$date": "2021-02-23T21:46:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f11dae3-8d96-405d-94aa-df09fbf8de50", + "start": { + "$date": "2021-02-23T21:46:30.000Z" + }, + "end": { + "$date": "2021-02-23T21:51:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0f0bcdf3-afc1-43b5-9448-fba8e9959800", + "start": { + "$date": "2021-02-23T21:51:30.000Z" + }, + "end": { + "$date": "2021-02-23T22:08:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6cadc7da-a5fc-49fd-8dec-84873fa2ec2c", + "start": { + "$date": "2021-02-23T22:08:30.000Z" + }, + "end": { + "$date": "2021-02-23T22:15:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "01ef6dfe-b345-4a29-b3a1-ed9d7c312de2", + "start": { + "$date": "2021-02-23T22:15:30.000Z" + }, + "end": { + "$date": "2021-02-23T23:15:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33ff7b58-b27e-4a44-92a5-3a6e8783328a", + "start": { + "$date": "2021-02-23T23:15:30.000Z" + }, + "end": { + "$date": "2021-02-23T23:17:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7bb96d85-136a-4a19-9593-066364f699ea", + "start": { + "$date": "2021-02-23T23:17:30.000Z" + }, + "end": { + "$date": "2021-02-24T00:52:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f32d185-e01d-4803-8e01-4a4399e31d54", + "start": { + "$date": "2021-02-24T00:52:30.000Z" + }, + "end": { + "$date": "2021-02-24T00:56:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c419c297-0e1d-41dd-a006-7f3208360f7b", + "start": { + "$date": "2021-02-24T00:56:30.000Z" + }, + "end": { + "$date": "2021-02-24T01:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a5f95ac3-327a-48c3-a63a-54add070d754", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-23T21:33:34.000Z" + }, + "end": { + "$date": "2021-02-23T22:38:40.000Z" + }, + "events": [ + { + "uuid": "a87df530-0deb-4e08-82e1-e4a185e903c4", + "start": { + "$date": "2021-02-23T21:33:34.000Z" + }, + "end": { + "$date": "2021-02-23T22:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4af20d03-8ecd-4e3b-a0e6-e65546f43899", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-23T23:27:23.000Z" + }, + "end": { + "$date": "2021-02-24T00:04:38.000Z" + }, + "events": [ + { + "uuid": "a9c90279-4792-4ec0-a9cb-7e876597a539", + "start": { + "$date": "2021-02-23T23:27:23.000Z" + }, + "end": { + "$date": "2021-02-24T00:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ba1e9b56-e90a-4302-9afe-949dc5f196c5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-23T23:17:37.000Z" + }, + "end": { + "$date": "2021-02-23T23:19:22.000Z" + }, + "events": [ + { + "uuid": "764eb81a-c615-4289-898a-b4290553ad66", + "start": { + "$date": "2021-02-23T23:17:37.000Z" + }, + "end": { + "$date": "2021-02-23T23:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9216f4bb-bd2c-4600-9db2-012bf364fbe5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-23T23:29:09.000Z" + }, + "end": { + "$date": "2021-02-24T01:56:31.000Z" + }, + "events": [ + { + "uuid": "e7c0200f-2270-4d37-8ffb-483460129a7b", + "start": { + "$date": "2021-02-23T23:29:09.000Z" + }, + "end": { + "$date": "2021-02-24T01:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "19ddaf06-26cd-4f7d-bfaf-34355b56a13a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-23T23:47:54.000Z" + }, + "end": { + "$date": "2021-02-24T01:59:09.000Z" + }, + "events": [ + { + "uuid": "ce851363-a9ec-46e4-ac25-5b375188d326", + "start": { + "$date": "2021-02-23T23:47:54.000Z" + }, + "end": { + "$date": "2021-02-24T01:59:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "27287df6-43a9-490d-822f-34a143ea1682", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-24T00:03:52.000Z" + }, + "end": { + "$date": "2021-02-24T02:08:40.000Z" + }, + "events": [ + { + "uuid": "2e12fc8c-17bb-46d2-a0e0-8d54da303ad9", + "start": { + "$date": "2021-02-24T00:03:52.000Z" + }, + "end": { + "$date": "2021-02-24T00:27:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70c371d6-62cf-42a7-a666-ad82528e1076", + "start": { + "$date": "2021-02-24T00:27:52.000Z" + }, + "end": { + "$date": "2021-02-24T00:29:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9df09a8-0e47-4b6a-b829-20e2cdba3d91", + "start": { + "$date": "2021-02-24T00:29:52.000Z" + }, + "end": { + "$date": "2021-02-24T02:08:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "38639289-9a4a-4696-8422-f0248e6d6b15", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T02:04:02.000Z" + }, + "end": { + "$date": "2021-02-24T02:44:10.000Z" + }, + "events": [ + { + "uuid": "ca6a4297-2dd9-4043-a71e-0e181fa67953", + "start": { + "$date": "2021-02-24T02:04:02.000Z" + }, + "end": { + "$date": "2021-02-24T02:44:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f2c89e93-8e12-458d-bcd8-f16b789478de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-24T02:13:48.000Z" + }, + "end": { + "$date": "2021-02-24T05:12:59.000Z" + }, + "events": [ + { + "uuid": "2d53bd59-9539-499c-9993-0497501064aa", + "start": { + "$date": "2021-02-24T02:13:48.000Z" + }, + "end": { + "$date": "2021-02-24T05:12:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9499576-5c8c-42c3-85e7-144aee132c64", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T02:24:35.000Z" + }, + "end": { + "$date": "2021-02-24T04:10:02.000Z" + }, + "events": [ + { + "uuid": "af605ac2-237c-4b71-bbce-ab9954da6a27", + "start": { + "$date": "2021-02-24T02:24:35.000Z" + }, + "end": { + "$date": "2021-02-24T03:02:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa3706e3-53f0-438b-96b8-52efa40b8b83", + "start": { + "$date": "2021-02-24T03:02:35.000Z" + }, + "end": { + "$date": "2021-02-24T03:20:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b2a7ef2-4e2e-4eeb-85ef-6051a8e2fa8f", + "start": { + "$date": "2021-02-24T03:20:35.000Z" + }, + "end": { + "$date": "2021-02-24T04:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d410ef44-b885-4486-98a2-998ad43e0e1a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T02:47:00.000Z" + }, + "end": { + "$date": "2021-02-24T03:20:07.000Z" + }, + "events": [ + { + "uuid": "31ba5b9b-1455-49ed-9801-6c75152e1c0d", + "start": { + "$date": "2021-02-24T02:47:00.000Z" + }, + "end": { + "$date": "2021-02-24T03:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6b0c1e5d-a02b-430b-990c-663ecdb067a4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-24T02:57:13.000Z" + }, + "end": { + "$date": "2021-02-24T04:10:29.000Z" + }, + "events": [ + { + "uuid": "842cc28e-4137-4b24-85f2-e977c3a88bbf", + "start": { + "$date": "2021-02-24T02:57:13.000Z" + }, + "end": { + "$date": "2021-02-24T04:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "535a60e5-4493-479c-9bab-b9e5ad9540c8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-24T03:20:08.000Z" + }, + "end": { + "$date": "2021-02-24T03:26:59.000Z" + }, + "events": [ + { + "uuid": "4df08667-76e3-4074-a52f-7039563e7d45", + "start": { + "$date": "2021-02-24T03:20:08.000Z" + }, + "end": { + "$date": "2021-02-24T03:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9d95b0ab-64d7-4b11-bba6-6861cc4c725a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-24T03:26:55.000Z" + }, + "end": { + "$date": "2021-02-24T04:07:26.000Z" + }, + "events": [ + { + "uuid": "07b58dd9-57ae-46dc-9e5d-5e5953922d2d", + "start": { + "$date": "2021-02-24T03:26:55.000Z" + }, + "end": { + "$date": "2021-02-24T03:39:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "073db25c-6b43-4b17-94f7-1f15cfa5c46b", + "start": { + "$date": "2021-02-24T03:39:55.000Z" + }, + "end": { + "$date": "2021-02-24T03:41:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "419fe386-ea77-4d11-a835-71f6718b98a3", + "start": { + "$date": "2021-02-24T03:41:55.000Z" + }, + "end": { + "$date": "2021-02-24T04:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bdda19a4-e1eb-4f8c-aaf3-955f712c1398", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-24T03:27:24.000Z" + }, + "end": { + "$date": "2021-02-24T03:44:00.000Z" + }, + "events": [ + { + "uuid": "0e136d48-59c7-4b56-9f32-fdc845f17162", + "start": { + "$date": "2021-02-24T03:27:24.000Z" + }, + "end": { + "$date": "2021-02-24T03:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "46c49b12-df3a-42db-a0e0-b741a5a4311e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-24T03:45:31.000Z" + }, + "end": { + "$date": "2021-02-24T04:08:31.000Z" + }, + "events": [ + { + "uuid": "37634fc1-c484-46a3-92d4-ee82ee7a8b20", + "start": { + "$date": "2021-02-24T03:45:31.000Z" + }, + "end": { + "$date": "2021-02-24T04:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "abf159c8-4976-4f0e-a1cc-4458f1537bd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-24T04:08:57.000Z" + }, + "end": { + "$date": "2021-02-24T05:09:48.000Z" + }, + "events": [ + { + "uuid": "41d15941-c791-4968-b56f-b9b97f7c2c55", + "start": { + "$date": "2021-02-24T04:08:57.000Z" + }, + "end": { + "$date": "2021-02-24T05:09:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "a256ba82-7e0b-48dd-ad73-71475f585960", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-24T04:09:39.000Z" + }, + "end": { + "$date": "2021-02-24T05:09:53.000Z" + }, + "events": [ + { + "uuid": "700a3970-03fd-4e65-83b6-f08d944e825b", + "start": { + "$date": "2021-02-24T04:09:39.000Z" + }, + "end": { + "$date": "2021-02-24T05:09:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "f7c24e96-0ee0-4aa0-ab15-1e9e7b765bb9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T04:10:17.000Z" + }, + "end": { + "$date": "2021-02-24T05:11:24.000Z" + }, + "events": [ + { + "uuid": "c6823234-494b-4fb2-9e3c-d67ad74b9d7f", + "start": { + "$date": "2021-02-24T04:10:17.000Z" + }, + "end": { + "$date": "2021-02-24T05:11:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "9446e743-77ff-43b6-b7d1-10163b081e2b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-24T04:11:13.000Z" + }, + "end": { + "$date": "2021-02-24T05:10:05.000Z" + }, + "events": [ + { + "uuid": "003f37d8-82b0-4ea1-bd12-8b39a2b5c3db", + "start": { + "$date": "2021-02-24T04:11:13.000Z" + }, + "end": { + "$date": "2021-02-24T05:10:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "3a1aad42-726d-4186-ac66-2cd425543d0d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-24T04:52:04.000Z" + }, + "end": { + "$date": "2021-02-24T06:12:54.000Z" + }, + "events": [ + { + "uuid": "e5475782-6265-439b-bb9e-b4e9d0e7c3a5", + "start": { + "$date": "2021-02-24T04:52:04.000Z" + }, + "end": { + "$date": "2021-02-24T06:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "206b6de1-a455-4520-923b-ddc1a8f9d6ea", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-24T05:13:51.000Z" + }, + "end": { + "$date": "2021-02-24T05:42:05.000Z" + }, + "events": [ + { + "uuid": "b77ae02e-56ed-4508-a523-8ba623e5d297", + "start": { + "$date": "2021-02-24T05:13:51.000Z" + }, + "end": { + "$date": "2021-02-24T05:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "662d4554-a451-451e-8afb-883a101d3bb3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-24T05:13:21.000Z" + }, + "end": { + "$date": "2021-02-24T06:25:36.000Z" + }, + "events": [ + { + "uuid": "0143ccf1-b3d2-4681-ab5a-eca4a85be5b6", + "start": { + "$date": "2021-02-24T05:13:21.000Z" + }, + "end": { + "$date": "2021-02-24T06:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8717cf75-21eb-4241-80ff-de05317f6814", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-24T05:14:10.000Z" + }, + "end": { + "$date": "2021-02-24T05:45:50.000Z" + }, + "events": [ + { + "uuid": "4d62ad4e-4818-4766-a2f3-a682833d9722", + "start": { + "$date": "2021-02-24T05:14:10.000Z" + }, + "end": { + "$date": "2021-02-24T05:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "47c9b57e-f1dc-4da4-b996-8208c2b755cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-24T05:15:19.000Z" + }, + "end": { + "$date": "2021-02-24T06:22:42.000Z" + }, + "events": [ + { + "uuid": "e62ac83a-9382-4ed0-ab39-5197f22e00df", + "start": { + "$date": "2021-02-24T05:15:19.000Z" + }, + "end": { + "$date": "2021-02-24T06:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "523d5281-a1e3-454d-935a-f9bc10c70be9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-24T05:43:07.000Z" + }, + "end": { + "$date": "2021-02-24T05:51:43.000Z" + }, + "events": [ + { + "uuid": "b8fa770c-b698-4324-85d8-55153af56258", + "start": { + "$date": "2021-02-24T05:43:07.000Z" + }, + "end": { + "$date": "2021-02-24T05:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b448db62-7072-40eb-abb2-a4cc3585f32e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-24T05:50:16.000Z" + }, + "end": { + "$date": "2021-02-24T05:54:30.000Z" + }, + "events": [ + { + "uuid": "c9587740-1e96-4cb8-b430-e71f1ecbdb5d", + "start": { + "$date": "2021-02-24T05:50:16.000Z" + }, + "end": { + "$date": "2021-02-24T05:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4f633546-85a9-4ce7-b68d-3c01f371524e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-24T06:28:31.000Z" + }, + "end": { + "$date": "2021-02-24T06:30:06.000Z" + }, + "events": [ + { + "uuid": "955e3fc5-9576-4743-92c2-e6bfddea9ee8", + "start": { + "$date": "2021-02-24T06:28:31.000Z" + }, + "end": { + "$date": "2021-02-24T06:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "b728d4a9-5091-4b5c-888e-d07c36c726ce", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-24T06:38:13.000Z" + }, + "end": { + "$date": "2021-02-24T06:54:00.000Z" + }, + "events": [ + { + "uuid": "20d409d5-abab-4e7f-90f7-5b52d59ff6e6", + "start": { + "$date": "2021-02-24T06:38:13.000Z" + }, + "end": { + "$date": "2021-02-24T06:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "cebfd732-a903-4d9b-9ebe-f2a92fead0da", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-24T15:45:06.000Z" + }, + "end": { + "$date": "2021-02-24T17:32:59.000Z" + }, + "events": [ + { + "uuid": "9aa0a785-7608-4546-ae21-c41bcef5d71a", + "start": { + "$date": "2021-02-24T15:45:06.000Z" + }, + "end": { + "$date": "2021-02-24T17:32:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "825b870a-5ac8-4b75-9957-768fcd9a2486", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T16:10:30.000Z" + }, + "end": { + "$date": "2021-02-24T16:45:47.000Z" + }, + "events": [ + { + "uuid": "7410d129-2ffb-4eb3-bd62-49f39eea4feb", + "start": { + "$date": "2021-02-24T16:10:30.000Z" + }, + "end": { + "$date": "2021-02-24T16:45:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "41b1d566-fb57-4e61-8a9f-fcf1188f2c39", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T16:21:30.000Z" + }, + "end": { + "$date": "2021-02-24T17:24:27.000Z" + }, + "events": [ + { + "uuid": "7d64730f-36e7-4b50-b4b0-1e1a5ac97f8c", + "start": { + "$date": "2021-02-24T16:21:30.000Z" + }, + "end": { + "$date": "2021-02-24T17:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43a79d83-46d2-4521-b80c-ac96c18a77ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T16:48:52.000Z" + }, + "end": { + "$date": "2021-02-24T17:18:09.000Z" + }, + "events": [ + { + "uuid": "f903594b-e64b-4c08-af20-3d19c4fb7fd4", + "start": { + "$date": "2021-02-24T16:48:52.000Z" + }, + "end": { + "$date": "2021-02-24T17:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "55f865a9-7fa0-4de6-8df9-679318fc7d4d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T18:20:31.000Z" + }, + "end": { + "$date": "2021-02-24T18:36:45.000Z" + }, + "events": [ + { + "uuid": "3fb65560-f197-4484-82bb-de754817288f", + "start": { + "$date": "2021-02-24T18:20:31.000Z" + }, + "end": { + "$date": "2021-02-24T18:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "738082dc-bbb7-46ee-bc06-ed7add08d112", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T18:38:06.000Z" + }, + "end": { + "$date": "2021-02-24T18:51:31.000Z" + }, + "events": [ + { + "uuid": "ff97e231-ddaa-4957-b6d5-5ab3a9a38e6b", + "start": { + "$date": "2021-02-24T18:38:06.000Z" + }, + "end": { + "$date": "2021-02-24T18:51:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4a1543bc-4019-47fa-a61d-b2cebae11cfa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T19:22:45.000Z" + }, + "end": { + "$date": "2021-02-24T19:35:55.000Z" + }, + "events": [ + { + "uuid": "9a595d6a-606d-4746-a269-437d1c08cf34", + "start": { + "$date": "2021-02-24T19:22:45.000Z" + }, + "end": { + "$date": "2021-02-24T19:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "10b761fa-58c1-4bd5-b485-d0c52644b328", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-24T20:32:45.000Z" + }, + "end": { + "$date": "2021-02-24T20:40:15.000Z" + }, + "events": [ + { + "uuid": "479d89fd-74aa-430d-b84f-b4fea38d196e", + "start": { + "$date": "2021-02-24T20:32:45.000Z" + }, + "end": { + "$date": "2021-02-24T20:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "faec8a4c-6cf5-4db5-9cda-e13beac262fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-24T20:35:45.000Z" + }, + "end": { + "$date": "2021-02-24T21:30:23.000Z" + }, + "events": [ + { + "uuid": "601bb3a5-7fcc-4717-ac2b-b67603398325", + "start": { + "$date": "2021-02-24T20:35:45.000Z" + }, + "end": { + "$date": "2021-02-24T21:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5de93238-0fa6-4d3a-8ac9-e469003e0c9d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-24T20:45:29.000Z" + }, + "end": { + "$date": "2021-02-24T21:04:29.000Z" + }, + "events": [ + { + "uuid": "09257d9b-168f-414b-995f-1bf395487b34", + "start": { + "$date": "2021-02-24T20:45:29.000Z" + }, + "end": { + "$date": "2021-02-24T21:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "da4678e3-50fd-4523-bb8b-d0e0d8a5ac75", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T21:30:23.000Z" + }, + "end": { + "$date": "2021-02-24T21:36:47.000Z" + }, + "events": [ + { + "uuid": "dd2b83f5-d554-4ea5-be5f-def704c8afce", + "start": { + "$date": "2021-02-24T21:30:23.000Z" + }, + "end": { + "$date": "2021-02-24T21:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "46cf9535-5181-44c8-b1d3-a3820aaf9c7a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T21:38:28.000Z" + }, + "end": { + "$date": "2021-02-24T22:17:38.000Z" + }, + "events": [ + { + "uuid": "fe99a757-8c8f-4ee4-bd31-574c1d02967b", + "start": { + "$date": "2021-02-24T21:38:28.000Z" + }, + "end": { + "$date": "2021-02-24T22:17:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2949ce11-9a06-4bd0-8b24-fdf298cdfc1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T22:30:55.000Z" + }, + "end": { + "$date": "2021-02-24T23:04:36.000Z" + }, + "events": [ + { + "uuid": "bb0e5ca7-823e-4b04-83cd-8e036fab9b24", + "start": { + "$date": "2021-02-24T22:30:55.000Z" + }, + "end": { + "$date": "2021-02-24T23:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d524d853-4b17-42b3-afe2-0a6ba652b59c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-24T22:56:20.000Z" + }, + "end": { + "$date": "2021-02-24T23:27:11.000Z" + }, + "events": [ + { + "uuid": "b585fceb-5364-4bff-86b6-ebddb91a4077", + "start": { + "$date": "2021-02-24T22:56:20.000Z" + }, + "end": { + "$date": "2021-02-24T23:27:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12ae28ca-eae1-4216-a506-85afa998f0a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T23:07:27.000Z" + }, + "end": { + "$date": "2021-02-24T23:36:28.000Z" + }, + "events": [ + { + "uuid": "24a851db-70b1-4a49-936f-2304a4cc2ac8", + "start": { + "$date": "2021-02-24T23:07:27.000Z" + }, + "end": { + "$date": "2021-02-24T23:36:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "90770c28-b009-4b71-ba46-77f6b397137e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T23:12:02.000Z" + }, + "end": { + "$date": "2021-02-24T23:13:47.000Z" + }, + "events": [ + { + "uuid": "3b86412c-8015-444d-bdc2-9f387392cc53", + "start": { + "$date": "2021-02-24T23:12:02.000Z" + }, + "end": { + "$date": "2021-02-24T23:13:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ca7e0b5-7b04-4faf-859d-ab46e0d77b39", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T23:14:12.000Z" + }, + "end": { + "$date": "2021-02-24T23:42:28.000Z" + }, + "events": [ + { + "uuid": "c01a715f-59d6-4c5f-8053-fe42f9e93a1c", + "start": { + "$date": "2021-02-24T23:14:12.000Z" + }, + "end": { + "$date": "2021-02-24T23:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ba72e95-4a09-4863-997b-93bbc3cf5de6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-24T23:40:28.000Z" + }, + "end": { + "$date": "2021-02-25T00:16:20.000Z" + }, + "events": [ + { + "uuid": "a051a088-feda-454a-869d-bdc0f9b75729", + "start": { + "$date": "2021-02-24T23:40:28.000Z" + }, + "end": { + "$date": "2021-02-25T00:16:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "92b3416e-21f1-4b5f-82ef-0c8b03282829", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-24T23:59:27.000Z" + }, + "end": { + "$date": "2021-02-25T03:20:29.000Z" + }, + "events": [ + { + "uuid": "a818ed51-ab22-4814-a910-7fa284bee4af", + "start": { + "$date": "2021-02-24T23:59:27.000Z" + }, + "end": { + "$date": "2021-02-25T00:17:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56eaca44-0087-4ae8-8677-3b78be961851", + "start": { + "$date": "2021-02-25T00:17:27.000Z" + }, + "end": { + "$date": "2021-02-25T01:34:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8be5486-3cd6-4241-8344-38de8883feb6", + "start": { + "$date": "2021-02-25T01:34:27.000Z" + }, + "end": { + "$date": "2021-02-25T02:48:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3590c5c9-89bc-4be5-bf7c-98dcc209cecc", + "start": { + "$date": "2021-02-25T02:48:27.000Z" + }, + "end": { + "$date": "2021-02-25T02:54:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92fa5c90-2540-4380-9c7f-57ede22e59a6", + "start": { + "$date": "2021-02-25T02:54:27.000Z" + }, + "end": { + "$date": "2021-02-25T03:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d9d9addf-c488-4153-b4fd-932d6cc40587", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-25T00:03:30.000Z" + }, + "end": { + "$date": "2021-02-25T00:05:20.000Z" + }, + "events": [ + { + "uuid": "4efdabc1-31a0-4486-b75d-a00394141ea0", + "start": { + "$date": "2021-02-25T00:03:30.000Z" + }, + "end": { + "$date": "2021-02-25T00:05:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "97ad4701-7ee0-4e15-9ef0-c95e12924da4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-25T01:07:42.000Z" + }, + "end": { + "$date": "2021-02-25T01:54:53.000Z" + }, + "events": [ + { + "uuid": "fcd89d65-1dea-4063-abe2-c329514caddd", + "start": { + "$date": "2021-02-25T01:07:42.000Z" + }, + "end": { + "$date": "2021-02-25T01:08:42.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "08ca7726-aea3-43a4-babf-06130b07dbd0", + "start": { + "$date": "2021-02-25T01:08:42.000Z" + }, + "end": { + "$date": "2021-02-25T01:54:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcc01007-3e4c-43f1-90a4-35f1a1347516", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T01:14:28.000Z" + }, + "end": { + "$date": "2021-02-25T01:43:11.000Z" + }, + "events": [ + { + "uuid": "3ec4083b-e1aa-4ca6-bc83-0ee4375a2884", + "start": { + "$date": "2021-02-25T01:14:28.000Z" + }, + "end": { + "$date": "2021-02-25T01:43:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3f459bef-d1e7-4435-bbd5-b6b33df1fb68", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-25T01:31:56.000Z" + }, + "end": { + "$date": "2021-02-25T01:47:31.000Z" + }, + "events": [ + { + "uuid": "0206b2bc-c1c0-401d-8c69-0ae109232a78", + "start": { + "$date": "2021-02-25T01:31:56.000Z" + }, + "end": { + "$date": "2021-02-25T01:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39f372d2-574c-4c3a-9507-449415c7bf26", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T01:44:32.000Z" + }, + "end": { + "$date": "2021-02-25T05:32:06.000Z" + }, + "events": [ + { + "uuid": "e29ba82e-71b1-4427-a874-9081a697bff0", + "start": { + "$date": "2021-02-25T01:44:32.000Z" + }, + "end": { + "$date": "2021-02-25T01:55:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a6d1cdf-7b2b-4432-996b-653fb68e360b", + "start": { + "$date": "2021-02-25T01:55:32.000Z" + }, + "end": { + "$date": "2021-02-25T01:58:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "005a950f-d77c-4c3a-9f2f-1ef423c03a69", + "start": { + "$date": "2021-02-25T01:58:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:00:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0776bac5-c0bf-4429-8af7-2288825ea926", + "start": { + "$date": "2021-02-25T02:00:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:04:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a04891ce-4afa-47ba-a32a-7430bba140e6", + "start": { + "$date": "2021-02-25T02:04:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:06:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67c69b62-b210-4eb8-8755-18af56246d7b", + "start": { + "$date": "2021-02-25T02:06:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:07:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "490947f7-69b9-4dd2-923d-d54c8b3f20dd", + "start": { + "$date": "2021-02-25T02:07:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:09:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "012d0347-d7db-448a-b244-47f4aed38871", + "start": { + "$date": "2021-02-25T02:09:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:10:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e43182f7-3ff5-4585-8c8b-d9baea32829c", + "start": { + "$date": "2021-02-25T02:10:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:21:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4499eeb-d11d-4324-a08c-e494f7ebe16f", + "start": { + "$date": "2021-02-25T02:21:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:40:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9fccee6-c3b3-4a08-8481-7eae3cb935f0", + "start": { + "$date": "2021-02-25T02:40:32.000Z" + }, + "end": { + "$date": "2021-02-25T02:43:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "79536ab1-107a-46cc-91a0-1b2b519acddb", + "start": { + "$date": "2021-02-25T02:43:32.000Z" + }, + "end": { + "$date": "2021-02-25T05:32:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b724ff25-f0f3-4b54-9286-da12d549b34a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-25T03:07:40.000Z" + }, + "end": { + "$date": "2021-02-25T07:17:09.000Z" + }, + "events": [ + { + "uuid": "27605b59-9311-4036-942f-c396065edc9f", + "start": { + "$date": "2021-02-25T03:07:40.000Z" + }, + "end": { + "$date": "2021-02-25T07:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "43683a50-4886-4e9c-bbc9-673a9003a795", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T03:20:45.000Z" + }, + "end": { + "$date": "2021-02-25T03:22:14.000Z" + }, + "events": [ + { + "uuid": "74b0d9db-c7c5-4415-9d7a-cc7d3c84b5ee", + "start": { + "$date": "2021-02-25T03:20:45.000Z" + }, + "end": { + "$date": "2021-02-25T03:22:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "75602a83-f141-4a10-8c02-59a83c8a50ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T03:24:10.000Z" + }, + "end": { + "$date": "2021-02-25T03:28:30.000Z" + }, + "events": [ + { + "uuid": "5c2c77b6-7743-4603-a2b2-497993a28e1b", + "start": { + "$date": "2021-02-25T03:24:10.000Z" + }, + "end": { + "$date": "2021-02-25T03:28:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "957621f2-d9cf-4a06-8617-2eec3a1fdfd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-25T03:26:19.000Z" + }, + "end": { + "$date": "2021-02-25T04:49:24.000Z" + }, + "events": [ + { + "uuid": "2e2c5f43-74da-4d6a-a276-c4d726597e76", + "start": { + "$date": "2021-02-25T03:26:19.000Z" + }, + "end": { + "$date": "2021-02-25T04:49:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9d4bec9c-8f70-48b3-9cb8-99a79d7eb58a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-25T03:46:10.000Z" + }, + "end": { + "$date": "2021-02-25T03:58:17.000Z" + }, + "events": [ + { + "uuid": "06907a61-a36d-4493-b9ee-140133055f11", + "start": { + "$date": "2021-02-25T03:46:10.000Z" + }, + "end": { + "$date": "2021-02-25T03:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9c7c88e6-92ef-4d30-acd4-e8c26be50990", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-25T04:09:11.000Z" + }, + "end": { + "$date": "2021-02-25T04:24:29.000Z" + }, + "events": [ + { + "uuid": "a5ff92e1-4cf0-4b01-b34c-cf0cd24aecd4", + "start": { + "$date": "2021-02-25T04:09:11.000Z" + }, + "end": { + "$date": "2021-02-25T04:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f21d82cd-fe4a-4c28-b3c6-9e3b3f6fda22", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-25T04:18:58.000Z" + }, + "end": { + "$date": "2021-02-25T04:22:24.000Z" + }, + "events": [ + { + "uuid": "a1b50558-ae0f-4f34-9590-9733c15a8875", + "start": { + "$date": "2021-02-25T04:18:58.000Z" + }, + "end": { + "$date": "2021-02-25T04:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47a95b4b-6f7a-4284-a848-9809b7516dd6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-25T04:23:09.000Z" + }, + "end": { + "$date": "2021-02-25T04:28:28.000Z" + }, + "events": [ + { + "uuid": "eea0eaa0-e837-45e5-a2a8-44a24dfca5ba", + "start": { + "$date": "2021-02-25T04:23:09.000Z" + }, + "end": { + "$date": "2021-02-25T04:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7d304caf-4b3b-49d7-b9bf-46a567567efb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-25T04:26:02.000Z" + }, + "end": { + "$date": "2021-02-25T04:56:06.000Z" + }, + "events": [ + { + "uuid": "2844eb30-8039-4921-9a1c-229bff0c0a41", + "start": { + "$date": "2021-02-25T04:26:02.000Z" + }, + "end": { + "$date": "2021-02-25T04:56:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8b0d0730-87a7-4a18-9b4c-859b2032c462", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T04:37:22.000Z" + }, + "end": { + "$date": "2021-02-25T04:39:01.000Z" + }, + "events": [ + { + "uuid": "7b597b05-2c82-4170-8130-82612dbaaa02", + "start": { + "$date": "2021-02-25T04:37:22.000Z" + }, + "end": { + "$date": "2021-02-25T04:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "03bb1661-b48e-465a-9ea4-957815792d88", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T04:39:12.000Z" + }, + "end": { + "$date": "2021-02-25T05:29:54.000Z" + }, + "events": [ + { + "uuid": "c75057c6-5a9f-4614-9100-2a940c6ee06a", + "start": { + "$date": "2021-02-25T04:39:12.000Z" + }, + "end": { + "$date": "2021-02-25T05:29:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "306a5f83-2ac7-4f22-ac1a-0688ec67c41b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-25T04:45:20.000Z" + }, + "end": { + "$date": "2021-02-25T05:25:43.000Z" + }, + "events": [ + { + "uuid": "48b7695b-d774-41a2-9cad-90be4c815fe0", + "start": { + "$date": "2021-02-25T04:45:20.000Z" + }, + "end": { + "$date": "2021-02-25T05:25:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fdeef980-26d5-46c0-8b67-8eb3670eaa69", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-25T04:57:44.000Z" + }, + "end": { + "$date": "2021-02-25T05:58:32.000Z" + }, + "events": [ + { + "uuid": "f471b0af-c967-4f7d-9c38-5764d83b4cc8", + "start": { + "$date": "2021-02-25T04:57:44.000Z" + }, + "end": { + "$date": "2021-02-25T05:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "dad94334-fcbe-4388-b5c6-91fe19a42789", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-25T05:27:07.000Z" + }, + "end": { + "$date": "2021-02-25T06:45:20.000Z" + }, + "events": [ + { + "uuid": "781dbff9-7c8f-4293-a3cf-1f28469a4c94", + "start": { + "$date": "2021-02-25T05:27:07.000Z" + }, + "end": { + "$date": "2021-02-25T06:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "6a375b9d-b880-4255-a301-2b01ff218ece", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T05:31:05.000Z" + }, + "end": { + "$date": "2021-02-25T05:53:20.000Z" + }, + "events": [ + { + "uuid": "8c02ef65-9be4-4056-a416-6dabab083651", + "start": { + "$date": "2021-02-25T05:31:05.000Z" + }, + "end": { + "$date": "2021-02-25T05:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "ff56a8ec-d6b6-4839-b5ab-d4b736b45648", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-25T05:34:50.000Z" + }, + "end": { + "$date": "2021-02-25T05:36:31.000Z" + }, + "events": [ + { + "uuid": "e95f9378-70db-4d0c-8faf-dda8b7803be3", + "start": { + "$date": "2021-02-25T05:34:50.000Z" + }, + "end": { + "$date": "2021-02-25T05:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4040cda4-aeed-4047-a494-b523b3f6ae3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-25T06:03:49.000Z" + }, + "end": { + "$date": "2021-02-25T08:16:35.000Z" + }, + "events": [ + { + "uuid": "2764b3c1-0f83-44be-9443-9e9f6bfaab1f", + "start": { + "$date": "2021-02-25T06:03:49.000Z" + }, + "end": { + "$date": "2021-02-25T08:16:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "94674b2d-a3c3-43a5-a821-1e73289ab162", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-25T06:05:51.000Z" + }, + "end": { + "$date": "2021-02-25T06:25:28.000Z" + }, + "events": [ + { + "uuid": "aa745502-dbc1-4ab8-b263-4da600be2726", + "start": { + "$date": "2021-02-25T06:05:51.000Z" + }, + "end": { + "$date": "2021-02-25T06:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "902e4976-f86c-43ec-b6ba-ff9d1a9f471c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-25T06:33:06.000Z" + }, + "end": { + "$date": "2021-02-25T06:57:17.000Z" + }, + "events": [ + { + "uuid": "e7457880-3416-488b-a83e-726532a48ed7", + "start": { + "$date": "2021-02-25T06:33:06.000Z" + }, + "end": { + "$date": "2021-02-25T06:57:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7c4bc9d9-2b9b-4163-b27b-d48bc93af721", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T06:26:41.000Z" + }, + "end": { + "$date": "2021-02-25T06:28:16.000Z" + }, + "events": [ + { + "uuid": "9b7c6643-e156-4709-bb61-5567c350bc08", + "start": { + "$date": "2021-02-25T06:26:41.000Z" + }, + "end": { + "$date": "2021-02-25T06:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b7cd1ff9-9be9-45bf-b885-49f8e235319a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-25T06:37:37.000Z" + }, + "end": { + "$date": "2021-02-25T07:04:09.000Z" + }, + "events": [ + { + "uuid": "eeebe378-a359-4165-997a-31124c1b4b6d", + "start": { + "$date": "2021-02-25T06:37:37.000Z" + }, + "end": { + "$date": "2021-02-25T07:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d66123cc-c3f0-4005-9223-db01bff6341f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-25T07:05:59.000Z" + }, + "end": { + "$date": "2021-02-25T07:22:19.000Z" + }, + "events": [ + { + "uuid": "d3049067-fc98-4d02-a343-e0f8edc576cc", + "start": { + "$date": "2021-02-25T07:05:59.000Z" + }, + "end": { + "$date": "2021-02-25T07:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "51eb2063-613e-4353-bafb-1cb60ed3ec98", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-25T07:07:48.000Z" + }, + "end": { + "$date": "2021-02-25T07:41:20.000Z" + }, + "events": [ + { + "uuid": "f079ed2a-ce1c-4013-91eb-e0aa88d87ce6", + "start": { + "$date": "2021-02-25T07:07:48.000Z" + }, + "end": { + "$date": "2021-02-25T07:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "db471649-b0c5-45ec-bc9f-6d2fb55690bc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-25T07:09:46.000Z" + }, + "end": { + "$date": "2021-02-25T09:29:13.000Z" + }, + "events": [ + { + "uuid": "a67281c5-8b05-4912-a8a1-7571330bc8bd", + "start": { + "$date": "2021-02-25T07:09:46.000Z" + }, + "end": { + "$date": "2021-02-25T09:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4062bb02-af1b-455e-9806-68f9b5c2b2c5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-25T07:41:19.000Z" + }, + "end": { + "$date": "2021-02-25T09:29:12.000Z" + }, + "events": [ + { + "uuid": "d78a743d-b849-4f9b-8360-76c2e9276194", + "start": { + "$date": "2021-02-25T07:41:19.000Z" + }, + "end": { + "$date": "2021-02-25T09:29:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "456adc4a-463d-46f3-8760-f1bb8206b79d", + "uuid": "0ddf6fa5-bf0b-484b-aa53-c6f5a4b6ad0d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T15:32:19.000Z" + }, + "end": { + "$date": "2021-02-25T15:35:09.000Z" + }, + "events": [ + { + "uuid": "f6b1c83b-72b1-4462-afb0-2707dc18bb6e", + "start": { + "$date": "2021-02-25T15:32:19.000Z" + }, + "end": { + "$date": "2021-02-25T15:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "884d4916-7882-4868-914d-17c3c3857f77", + "uuid": "5eab56f6-8aed-4792-b2e6-913ec49276fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T15:37:50.000Z" + }, + "end": { + "$date": "2021-02-25T18:03:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-25T15:37:50.000Z" + }, + "end": { + "$date": "2021-02-25T18:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d66ad385-827a-464c-82cc-e6e545d2b2b2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-25T17:18:33.000Z" + }, + "end": { + "$date": "2021-02-25T18:00:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-25T17:18:33.000Z" + }, + "end": { + "$date": "2021-02-25T18:00:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c55756-ae07-4771-86d2-bba19006baa0", + "uuid": "5f7a38ea-f3df-470a-99ce-9144cf6dd7ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T18:55:17.000Z" + }, + "end": { + "$date": "2021-02-25T19:01:38.000Z" + }, + "events": [ + { + "uuid": "b466742e-49d0-4f4b-8a82-0e1c7e6a7db7", + "start": { + "$date": "2021-02-25T18:55:17.000Z" + }, + "end": { + "$date": "2021-02-25T19:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "2f5b35d3-3736-424d-9399-e01e4fb1c1bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T19:01:48.000Z" + }, + "end": { + "$date": "2021-02-25T19:08:13.000Z" + }, + "events": [ + { + "uuid": "2cf1f96d-f35f-4b79-9f69-9d2cd7bf294a", + "start": { + "$date": "2021-02-25T19:01:48.000Z" + }, + "end": { + "$date": "2021-02-25T19:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b77fea8e-21e8-477f-84f8-ff57b3846acc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T19:15:20.000Z" + }, + "end": { + "$date": "2021-02-25T19:46:38.000Z" + }, + "events": [ + { + "uuid": "dcf023e7-be3f-4497-90f0-ca956141efa9", + "start": { + "$date": "2021-02-25T19:15:20.000Z" + }, + "end": { + "$date": "2021-02-25T19:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7fbd2435-fda8-4dd4-8d2f-68699131afac", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-25T19:13:20.000Z" + }, + "end": { + "$date": "2021-02-25T23:49:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-25T19:13:20.000Z" + }, + "end": { + "$date": "2021-02-25T23:49:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "168b7f55-dafd-48d5-97b0-9f65a2911352", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-25T19:43:59.000Z" + }, + "end": { + "$date": "2021-02-25T19:50:29.000Z" + }, + "events": [ + { + "uuid": "9fe60c40-883d-4f15-9b61-bfa5163e8969", + "start": { + "$date": "2021-02-25T19:43:59.000Z" + }, + "end": { + "$date": "2021-02-25T19:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "36f5a327-310a-47f8-8962-85478180e717", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-25T20:11:51.000Z" + }, + "end": { + "$date": "2021-02-25T21:02:33.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-25T20:11:51.000Z" + }, + "end": { + "$date": "2021-02-25T21:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7df716f1-df20-40c6-b397-c8fb8cbea97c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-25T20:13:12.000Z" + }, + "end": { + "$date": "2021-02-25T20:49:23.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-25T20:13:12.000Z" + }, + "end": { + "$date": "2021-02-25T20:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "884d4916-7882-4868-914d-17c3c3857f77", + "uuid": "4d357769-8250-43fd-962a-ed85b1e2af27", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T20:21:33.000Z" + }, + "end": { + "$date": "2021-02-25T21:16:38.000Z" + }, + "events": [ + { + "uuid": "121ab206-ffe8-4b0c-961b-6d3a5c1a8d43", + "start": { + "$date": "2021-02-25T20:21:33.000Z" + }, + "end": { + "$date": "2021-02-25T21:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f713ead-72e8-41c7-a9f1-7328aafcd5ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-25T20:53:54.000Z" + }, + "end": { + "$date": "2021-02-25T21:15:44.000Z" + }, + "events": [ + { + "uuid": "7a03507f-5ece-4883-923d-235aec9b62d1", + "start": { + "$date": "2021-02-25T20:53:54.000Z" + }, + "end": { + "$date": "2021-02-25T21:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c750415d-b2ad-4a40-9def-3be1a03d271b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-25T20:58:12.000Z" + }, + "end": { + "$date": "2021-02-25T22:25:06.000Z" + }, + "events": [ + { + "uuid": "2c3cb961-0e11-4141-822e-550e7af057da", + "start": { + "$date": "2021-02-25T20:58:12.000Z" + }, + "end": { + "$date": "2021-02-25T21:22:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e95721d0-49d8-4194-bf32-34e2a5393d39", + "start": { + "$date": "2021-02-25T21:22:12.000Z" + }, + "end": { + "$date": "2021-02-25T21:38:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e4d6fe7-6962-4fca-8f4a-ff1e8419d215", + "start": { + "$date": "2021-02-25T21:38:12.000Z" + }, + "end": { + "$date": "2021-02-25T22:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e31b0521-b01e-429d-9f2c-d9281a7656d1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-25T21:11:54.000Z" + }, + "end": { + "$date": "2021-02-25T21:12:56.000Z" + }, + "events": [ + { + "uuid": "416802c0-c73f-48fb-bd10-87ca2f058bb3", + "start": { + "$date": "2021-02-25T21:11:54.000Z" + }, + "end": { + "$date": "2021-02-25T21:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "456adc4a-463d-46f3-8760-f1bb8206b79d", + "uuid": "3f474d02-c0f6-4868-97ae-a562edfa3df1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-25T21:18:18.000Z" + }, + "end": { + "$date": "2021-02-25T22:54:37.000Z" + }, + "events": [ + { + "uuid": "bb0e2ecb-ea17-44e1-ba17-57bcf6d9548f", + "start": { + "$date": "2021-02-25T21:18:18.000Z" + }, + "end": { + "$date": "2021-02-25T22:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3793ff1c-602e-4877-b5f8-fbe5aa49147d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-25T21:19:49.000Z" + }, + "end": { + "$date": "2021-02-25T22:09:22.000Z" + }, + "events": [ + { + "uuid": "85113b39-7203-48b7-babc-53d4ae520c72", + "start": { + "$date": "2021-02-25T21:19:49.000Z" + }, + "end": { + "$date": "2021-02-25T22:09:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "31d8172d-d7ee-47ef-b6dd-63dd413ee898", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-25T22:01:49.000Z" + }, + "end": { + "$date": "2021-02-25T22:13:14.000Z" + }, + "events": [ + { + "uuid": "e17f3fff-4d0b-4ca8-945b-adacda4a94ba", + "start": { + "$date": "2021-02-25T22:01:49.000Z" + }, + "end": { + "$date": "2021-02-25T22:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5161d723-87be-4ea2-a500-23988bca3629", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-25T22:13:55.000Z" + }, + "end": { + "$date": "2021-02-26T01:03:53.000Z" + }, + "events": [ + { + "uuid": "446c22ce-b552-4af9-883e-6126505d25c4", + "start": { + "$date": "2021-02-25T22:13:55.000Z" + }, + "end": { + "$date": "2021-02-26T01:03:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fe4952c0-4fa5-4ec6-8be1-318a553086d5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T00:07:58.000Z" + }, + "end": { + "$date": "2021-02-26T00:43:18.000Z" + }, + "events": [ + { + "uuid": "08caa45b-fd75-4a95-9ef5-b1742b7b339f", + "start": { + "$date": "2021-02-26T00:07:58.000Z" + }, + "end": { + "$date": "2021-02-26T00:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "0e16bbe8-6881-45eb-8cce-9554492aed6f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T00:19:30.000Z" + }, + "end": { + "$date": "2021-02-26T00:57:50.000Z" + }, + "events": [ + { + "uuid": "7db765f3-098e-4935-9efa-bf75bc50082c", + "start": { + "$date": "2021-02-26T00:19:30.000Z" + }, + "end": { + "$date": "2021-02-26T00:57:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "32cfee3e-f717-40dd-bf85-510ad08413a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-26T00:24:36.000Z" + }, + "end": { + "$date": "2021-02-26T00:39:47.000Z" + }, + "events": [ + { + "uuid": "518b2ad9-687b-4264-97bc-9d7d99d0828b", + "start": { + "$date": "2021-02-26T00:24:36.000Z" + }, + "end": { + "$date": "2021-02-26T00:39:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "2313907c-3c63-45c3-ab60-ffaafc88302c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T00:48:29.000Z" + }, + "end": { + "$date": "2021-02-26T01:36:42.000Z" + }, + "events": [ + { + "uuid": "73bc22fa-07ae-424b-9396-90ef44bd03ad", + "start": { + "$date": "2021-02-26T00:48:29.000Z" + }, + "end": { + "$date": "2021-02-26T01:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "670595e0-2937-4563-b1e8-8c409a0e5e59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-26T01:01:32.000Z" + }, + "end": { + "$date": "2021-02-26T03:42:50.000Z" + }, + "events": [ + { + "uuid": "d5712116-01f2-4975-b575-8bc26893d2a7", + "start": { + "$date": "2021-02-26T01:01:32.000Z" + }, + "end": { + "$date": "2021-02-26T03:42:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "80653de0-af3c-4a27-afb1-dec0b3eff45f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T01:26:16.000Z" + }, + "end": { + "$date": "2021-02-26T02:46:33.000Z" + }, + "events": [ + { + "uuid": "39740f29-863d-40cf-891b-bdf3253a4cf6", + "start": { + "$date": "2021-02-26T01:26:16.000Z" + }, + "end": { + "$date": "2021-02-26T02:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f613cfea-0de0-488a-a3ef-65c486014885", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T01:31:54.000Z" + }, + "end": { + "$date": "2021-02-26T01:33:06.000Z" + }, + "events": [ + { + "uuid": "5e8db612-ab26-4ea7-a832-6ebc9d650a6b", + "start": { + "$date": "2021-02-26T01:31:54.000Z" + }, + "end": { + "$date": "2021-02-26T01:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "86530125-d8d9-4f71-8081-fa7cc9f0350f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-26T01:32:40.000Z" + }, + "end": { + "$date": "2021-02-26T03:35:23.000Z" + }, + "events": [ + { + "uuid": "078946e9-0d87-4715-bb32-47dd921ceeab", + "start": { + "$date": "2021-02-26T01:32:40.000Z" + }, + "end": { + "$date": "2021-02-26T03:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f940f98e-35d8-4881-b0d3-ffe2a2948b91", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T01:35:44.000Z" + }, + "end": { + "$date": "2021-02-26T01:44:21.000Z" + }, + "events": [ + { + "uuid": "1b8b34a4-b3d4-4b81-85cc-877ed9f05228", + "start": { + "$date": "2021-02-26T01:35:44.000Z" + }, + "end": { + "$date": "2021-02-26T01:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "16e3d1e9-778b-4bb3-8a79-3c1b8faaade3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-26T01:35:44.000Z" + }, + "end": { + "$date": "2021-02-26T06:54:20.000Z" + }, + "events": [ + { + "uuid": "1f765472-ad7b-4b50-9acc-631a5a77709e", + "start": { + "$date": "2021-02-26T01:35:44.000Z" + }, + "end": { + "$date": "2021-02-26T06:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "9f704a2a-9d7f-4501-9119-f948a67f1b7e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T01:40:28.000Z" + }, + "end": { + "$date": "2021-02-26T01:47:43.000Z" + }, + "events": [ + { + "uuid": "95fa2815-5532-4ad3-837d-9e1b2cdd8e16", + "start": { + "$date": "2021-02-26T01:40:28.000Z" + }, + "end": { + "$date": "2021-02-26T01:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "5ac69585-c7b9-4eff-ae84-cab951da5419", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T01:49:45.000Z" + }, + "end": { + "$date": "2021-02-26T03:56:47.000Z" + }, + "events": [ + { + "uuid": "3646761b-fbc9-4cd6-b332-f6bab411c65a", + "start": { + "$date": "2021-02-26T01:49:45.000Z" + }, + "end": { + "$date": "2021-02-26T03:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0b732836-7bf2-4ce7-87ca-0da507141383", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T02:04:58.000Z" + }, + "end": { + "$date": "2021-02-26T02:06:53.000Z" + }, + "events": [ + { + "uuid": "0572e161-ac8a-49ca-84a8-e673a7aa9593", + "start": { + "$date": "2021-02-26T02:04:58.000Z" + }, + "end": { + "$date": "2021-02-26T02:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a1bd5664-5a93-4c93-84e6-d583dad3186b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T02:10:28.000Z" + }, + "end": { + "$date": "2021-02-26T02:51:24.000Z" + }, + "events": [ + { + "uuid": "3a45bff8-6650-4940-93ca-f9ed3919af08", + "start": { + "$date": "2021-02-26T02:10:28.000Z" + }, + "end": { + "$date": "2021-02-26T02:51:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1a0088b1-47d5-46d9-81f3-de7b5e8da3ee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-26T02:33:47.000Z" + }, + "end": { + "$date": "2021-02-26T03:01:15.000Z" + }, + "events": [ + { + "uuid": "5ab80606-4416-47fa-9a18-c02c025b042f", + "start": { + "$date": "2021-02-26T02:33:47.000Z" + }, + "end": { + "$date": "2021-02-26T03:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "893a5ea8-1346-4c16-923d-7d7264b31656", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-26T03:01:55.000Z" + }, + "end": { + "$date": "2021-02-26T03:23:38.000Z" + }, + "events": [ + { + "uuid": "1dbd907f-74aa-48d6-b36c-93c404150947", + "start": { + "$date": "2021-02-26T03:01:55.000Z" + }, + "end": { + "$date": "2021-02-26T03:23:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7119653d-42ce-4f5b-ab34-e957caee0230", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-26T02:37:45.000Z" + }, + "end": { + "$date": "2021-02-26T07:09:04.000Z" + }, + "events": [ + { + "uuid": "6cfab852-a006-4319-bfc8-aede506b15ff", + "start": { + "$date": "2021-02-26T02:37:45.000Z" + }, + "end": { + "$date": "2021-02-26T07:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f0ff0d82-40e8-4898-84f8-266e8a2b5453", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-26T03:25:52.000Z" + }, + "end": { + "$date": "2021-02-26T03:56:49.000Z" + }, + "events": [ + { + "uuid": "f2a1b813-4d35-4585-849a-53b06c2bbcb8", + "start": { + "$date": "2021-02-26T03:25:52.000Z" + }, + "end": { + "$date": "2021-02-26T03:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "b6575e27-4ace-4499-a6d7-b946518a5ccb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-26T03:56:58.000Z" + }, + "end": { + "$date": "2021-02-26T04:27:40.000Z" + }, + "events": [ + { + "uuid": "f1ba72e9-64e2-4171-86de-c3e9f9801fc9", + "start": { + "$date": "2021-02-26T03:56:58.000Z" + }, + "end": { + "$date": "2021-02-26T04:27:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd6811af-0c2a-4c3c-87be-50c338d0814f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-26T03:59:22.000Z" + }, + "end": { + "$date": "2021-02-26T04:03:43.000Z" + }, + "events": [ + { + "uuid": "7b603561-549d-4469-bb58-b9bc20e9ed07", + "start": { + "$date": "2021-02-26T03:59:22.000Z" + }, + "end": { + "$date": "2021-02-26T04:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "884d4916-7882-4868-914d-17c3c3857f77", + "uuid": "4d3ca658-a5d2-490a-9f32-ea2f950923ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-26T04:04:26.000Z" + }, + "end": { + "$date": "2021-02-26T04:17:00.000Z" + }, + "events": [ + { + "uuid": "934809db-946e-4e0b-af38-0d2c46647804", + "start": { + "$date": "2021-02-26T04:04:26.000Z" + }, + "end": { + "$date": "2021-02-26T04:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "6e9be6f0-f5ea-4479-a640-f86eb7ad5654", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T04:10:49.000Z" + }, + "end": { + "$date": "2021-02-26T04:19:20.000Z" + }, + "events": [ + { + "uuid": "9eb57321-ba6e-4209-8e1d-5cd5bf42e23e", + "start": { + "$date": "2021-02-26T04:10:49.000Z" + }, + "end": { + "$date": "2021-02-26T04:19:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f48a06da-008a-45d7-a482-59f49c40f5aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T04:15:54.000Z" + }, + "end": { + "$date": "2021-02-26T04:35:14.000Z" + }, + "events": [ + { + "uuid": "daba561a-6bf1-4bcf-b23d-1f5e723cc18f", + "start": { + "$date": "2021-02-26T04:15:54.000Z" + }, + "end": { + "$date": "2021-02-26T04:35:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e78b93ca-516e-451b-8e7f-e55f9ea8fd76", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T04:17:47.000Z" + }, + "end": { + "$date": "2021-02-26T04:19:31.000Z" + }, + "events": [ + { + "uuid": "a62eef32-5753-454a-8033-afc0085ef481", + "start": { + "$date": "2021-02-26T04:17:47.000Z" + }, + "end": { + "$date": "2021-02-26T04:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c3177441-5b25-4fbe-9dbd-819d00a99424", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T04:19:47.000Z" + }, + "end": { + "$date": "2021-02-26T04:35:12.000Z" + }, + "events": [ + { + "uuid": "ef27485a-68a4-4b9a-9517-9523d4312155", + "start": { + "$date": "2021-02-26T04:19:47.000Z" + }, + "end": { + "$date": "2021-02-26T04:35:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cce20b2c-585e-42c6-b2db-4178fcb23e5b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-26T04:26:17.000Z" + }, + "end": { + "$date": "2021-02-26T05:02:32.000Z" + }, + "events": [ + { + "uuid": "ee07495f-008e-4341-b4be-7028984b3a2e", + "start": { + "$date": "2021-02-26T04:26:17.000Z" + }, + "end": { + "$date": "2021-02-26T05:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "da168226-1ab5-43b8-85b0-78ac31ff3899", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-26T04:26:58.000Z" + }, + "end": { + "$date": "2021-02-26T05:04:13.000Z" + }, + "events": [ + { + "uuid": "519a0a74-2c0b-47e5-9210-3f997ab829d8", + "start": { + "$date": "2021-02-26T04:26:58.000Z" + }, + "end": { + "$date": "2021-02-26T05:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d6d1a260-26ca-4eeb-ac91-934ed57ca2fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-26T04:27:53.000Z" + }, + "end": { + "$date": "2021-02-26T07:09:18.000Z" + }, + "events": [ + { + "uuid": "58c83cbf-f500-4b19-bd38-72510a2e6700", + "start": { + "$date": "2021-02-26T04:27:53.000Z" + }, + "end": { + "$date": "2021-02-26T07:09:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9565fddf-5c13-4e35-b165-0ed027ea35fe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-26T04:27:59.000Z" + }, + "end": { + "$date": "2021-02-26T05:04:00.000Z" + }, + "events": [ + { + "uuid": "0812bc3a-bebd-4f29-918b-eeff10e09b54", + "start": { + "$date": "2021-02-26T04:27:59.000Z" + }, + "end": { + "$date": "2021-02-26T05:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b598ead9-8d90-451d-ac75-fb2128781f0c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T04:35:40.000Z" + }, + "end": { + "$date": "2021-02-26T05:06:40.000Z" + }, + "events": [ + { + "uuid": "c285c607-0b8f-4584-b17d-2adc78a6e313", + "start": { + "$date": "2021-02-26T04:35:40.000Z" + }, + "end": { + "$date": "2021-02-26T05:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "995da860-2f76-40d8-ae71-bad4fdd08f9d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T04:35:58.000Z" + }, + "end": { + "$date": "2021-02-26T05:07:28.000Z" + }, + "events": [ + { + "uuid": "801967e7-6940-474b-9c48-a6694b5435e5", + "start": { + "$date": "2021-02-26T04:35:58.000Z" + }, + "end": { + "$date": "2021-02-26T05:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "3f91af3f-dc4e-445f-be40-4c445df92968", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T04:49:45.000Z" + }, + "end": { + "$date": "2021-02-26T04:55:35.000Z" + }, + "events": [ + { + "uuid": "e464c811-560f-460d-b9f5-282961eada49", + "start": { + "$date": "2021-02-26T04:49:45.000Z" + }, + "end": { + "$date": "2021-02-26T04:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f8ceee51-738c-443a-9cd0-39d87e199c66", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T04:52:51.000Z" + }, + "end": { + "$date": "2021-02-26T04:55:40.000Z" + }, + "events": [ + { + "uuid": "6f2c370d-831b-4c4c-bb44-1494e1e7aec5", + "start": { + "$date": "2021-02-26T04:52:51.000Z" + }, + "end": { + "$date": "2021-02-26T04:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ac210739-c881-4496-b6ca-8216d5e0d642", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-26T04:55:45.000Z" + }, + "end": { + "$date": "2021-02-26T06:49:32.000Z" + }, + "events": [ + { + "uuid": "24a28fd1-9e93-4681-85c4-106de907dbc7", + "start": { + "$date": "2021-02-26T04:55:45.000Z" + }, + "end": { + "$date": "2021-02-26T06:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4b09bacc-603c-456e-97d6-2bdfa84c7362", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T04:55:46.000Z" + }, + "end": { + "$date": "2021-02-26T05:04:51.000Z" + }, + "events": [ + { + "uuid": "ca396f90-a35a-455e-8d87-78b1b6326783", + "start": { + "$date": "2021-02-26T04:55:46.000Z" + }, + "end": { + "$date": "2021-02-26T05:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95e2f281-12bc-47d1-b613-21a2c7f4b1f2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-26T04:58:38.000Z" + }, + "end": { + "$date": "2021-02-26T05:15:34.000Z" + }, + "events": [ + { + "uuid": "0f6ca66c-b276-4e27-9e2c-fe0abc6ff3d4", + "start": { + "$date": "2021-02-26T04:58:38.000Z" + }, + "end": { + "$date": "2021-02-26T05:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "287ec196-bb05-4894-9209-05a805a3ff66", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T05:11:43.000Z" + }, + "end": { + "$date": "2021-02-26T05:13:20.000Z" + }, + "events": [ + { + "uuid": "f0079a49-ce1b-4809-908a-09e8872dae1d", + "start": { + "$date": "2021-02-26T05:11:43.000Z" + }, + "end": { + "$date": "2021-02-26T05:13:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "778ea7a5-adbf-4a00-9ba9-edf567407853", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T05:13:49.000Z" + }, + "end": { + "$date": "2021-02-26T05:15:00.000Z" + }, + "events": [ + { + "uuid": "e09f1e89-265e-48d9-ac2c-d53dc0ea5c83", + "start": { + "$date": "2021-02-26T05:13:49.000Z" + }, + "end": { + "$date": "2021-02-26T05:15:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c93035d6-ec7e-4167-aac6-a8e528f760d4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T05:15:29.000Z" + }, + "end": { + "$date": "2021-02-26T07:00:12.000Z" + }, + "events": [ + { + "uuid": "a16bc185-098d-4684-be1f-7dc94ee78c37", + "start": { + "$date": "2021-02-26T05:15:29.000Z" + }, + "end": { + "$date": "2021-02-26T07:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1db8ac39-86b3-4dcf-9827-ac6ad0c22618", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-26T05:17:23.000Z" + }, + "end": { + "$date": "2021-02-26T05:34:28.000Z" + }, + "events": [ + { + "uuid": "550b9e1d-d41f-4957-aac5-5b760e6c787b", + "start": { + "$date": "2021-02-26T05:17:23.000Z" + }, + "end": { + "$date": "2021-02-26T05:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ccf5a79-0de9-43df-aaa8-a5a60e98096e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-26T05:37:24.000Z" + }, + "end": { + "$date": "2021-02-26T05:57:15.000Z" + }, + "events": [ + { + "uuid": "51198b05-33bc-4820-9cfc-bf5b94ac4ba7", + "start": { + "$date": "2021-02-26T05:37:24.000Z" + }, + "end": { + "$date": "2021-02-26T05:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "74235cfb-fd8a-4457-8b9b-a39d4e7c84cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T05:39:36.000Z" + }, + "end": { + "$date": "2021-02-26T06:18:38.000Z" + }, + "events": [ + { + "uuid": "9ba8fc3c-8442-48d8-ac3b-3ae531a39045", + "start": { + "$date": "2021-02-26T05:39:36.000Z" + }, + "end": { + "$date": "2021-02-26T06:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "61777614-79c2-467b-8fbe-a31f72a9fef4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-26T05:54:42.000Z" + }, + "end": { + "$date": "2021-02-26T07:08:32.000Z" + }, + "events": [ + { + "uuid": "7e517374-6403-44bd-97d6-5d5df621e1ec", + "start": { + "$date": "2021-02-26T05:54:42.000Z" + }, + "end": { + "$date": "2021-02-26T07:08:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07c1c757-d21e-4443-9239-7aab5fced3c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-26T06:00:24.000Z" + }, + "end": { + "$date": "2021-02-26T06:24:03.000Z" + }, + "events": [ + { + "uuid": "b05b7d8b-9e6b-454a-b3f7-c953aaf55c3b", + "start": { + "$date": "2021-02-26T06:00:24.000Z" + }, + "end": { + "$date": "2021-02-26T06:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "884d4916-7882-4868-914d-17c3c3857f77", + "uuid": "24ed1d75-eb4e-4ad8-abfc-30c4f22f4e83", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-26T06:08:29.000Z" + }, + "end": { + "$date": "2021-02-26T07:01:35.000Z" + }, + "events": [ + { + "uuid": "9987ff72-b1eb-4f31-8f7c-3fda847b1711", + "start": { + "$date": "2021-02-26T06:08:29.000Z" + }, + "end": { + "$date": "2021-02-26T06:45:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6b045b6f-d3b4-4eda-9fb1-1a597c2f095b", + "start": { + "$date": "2021-02-26T06:45:29.000Z" + }, + "end": { + "$date": "2021-02-26T07:00:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e4d73b1-b676-4104-a077-cad53d825773", + "start": { + "$date": "2021-02-26T07:00:29.000Z" + }, + "end": { + "$date": "2021-02-26T07:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11549239-fad0-422f-b4f9-7fa001b8847f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-26T06:26:30.000Z" + }, + "end": { + "$date": "2021-02-26T06:47:08.000Z" + }, + "events": [ + { + "uuid": "4bb76a8b-0a3c-41cf-809d-34cecc9e9cdf", + "start": { + "$date": "2021-02-26T06:26:30.000Z" + }, + "end": { + "$date": "2021-02-26T06:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e05e8f5-9756-49e1-aaa9-e1f305559a62", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-26T06:52:26.000Z" + }, + "end": { + "$date": "2021-02-26T07:06:27.000Z" + }, + "events": [ + { + "uuid": "defb147f-a3e8-420e-84b7-4b29235d4b29", + "start": { + "$date": "2021-02-26T06:52:26.000Z" + }, + "end": { + "$date": "2021-02-26T07:06:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a6b31a28-2d01-4ac0-9af2-d38d350c314e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T07:05:23.000Z" + }, + "end": { + "$date": "2021-02-26T07:28:01.000Z" + }, + "events": [ + { + "uuid": "e8e92f07-ff3f-4d5f-85c7-be53982c0db5", + "start": { + "$date": "2021-02-26T07:05:23.000Z" + }, + "end": { + "$date": "2021-02-26T07:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "3562f7c1-2872-4cd6-88dd-886915f12405", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-26T07:09:35.000Z" + }, + "end": { + "$date": "2021-02-26T07:52:01.000Z" + }, + "events": [ + { + "uuid": "fee944c7-7262-4216-8c5e-9e535de92010", + "start": { + "$date": "2021-02-26T07:09:35.000Z" + }, + "end": { + "$date": "2021-02-26T07:52:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "952b0434-93cf-4036-a232-00457c41c0f1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-26T07:13:23.000Z" + }, + "end": { + "$date": "2021-02-26T08:02:39.000Z" + }, + "events": [ + { + "uuid": "ad5ace02-62f1-4ec4-99b4-49cb917ede58", + "start": { + "$date": "2021-02-26T07:13:23.000Z" + }, + "end": { + "$date": "2021-02-26T08:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "0ef32849-e78a-4060-bb93-c0d42899bd2a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-26T07:14:15.000Z" + }, + "end": { + "$date": "2021-02-26T08:00:54.000Z" + }, + "events": [ + { + "uuid": "33d2d6b6-be47-446c-8e89-5c29f19ccce5", + "start": { + "$date": "2021-02-26T07:14:15.000Z" + }, + "end": { + "$date": "2021-02-26T08:00:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e0415896-f164-47a9-b9b1-f5a99686aaa2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T07:18:49.000Z" + }, + "end": { + "$date": "2021-02-26T08:01:44.000Z" + }, + "events": [ + { + "uuid": "55d07c76-5fae-4505-b7cb-de9a28f2519b", + "start": { + "$date": "2021-02-26T07:18:49.000Z" + }, + "end": { + "$date": "2021-02-26T08:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c0e18c1d-27d6-4f41-92d4-0035773c0b52", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T08:01:54.000Z" + }, + "end": { + "$date": "2021-02-26T08:02:59.000Z" + }, + "events": [ + { + "uuid": "d7c01b84-e4b1-4187-8cf9-29a1bb9e787b", + "start": { + "$date": "2021-02-26T08:01:54.000Z" + }, + "end": { + "$date": "2021-02-26T08:02:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c0ca3212-de98-46ba-869d-adfbe9ddd928", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-26T08:03:04.000Z" + }, + "end": { + "$date": "2021-02-26T08:31:40.000Z" + }, + "events": [ + { + "uuid": "f1bcaf4f-a571-4afe-96be-fb073f0e35a6", + "start": { + "$date": "2021-02-26T08:03:04.000Z" + }, + "end": { + "$date": "2021-02-26T08:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7c79fd07-0792-4d2c-b087-7f592346855c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T08:07:50.000Z" + }, + "end": { + "$date": "2021-02-26T08:32:30.000Z" + }, + "events": [ + { + "uuid": "90343db9-569c-4430-84bd-b7006f0ffcdf", + "start": { + "$date": "2021-02-26T08:07:50.000Z" + }, + "end": { + "$date": "2021-02-26T08:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fb52fca4-6b90-4022-b116-baaeb9a1e670", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T15:00:21.000Z" + }, + "end": { + "$date": "2021-02-26T15:57:12.000Z" + }, + "events": [ + { + "uuid": "c4307eee-73cd-42c7-a44a-b6252cea06c5", + "start": { + "$date": "2021-02-26T15:00:21.000Z" + }, + "end": { + "$date": "2021-02-26T15:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "13ab029c-c82c-4e79-be41-e71033b8ff37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-26T16:36:22.000Z" + }, + "end": { + "$date": "2021-02-26T16:56:20.000Z" + }, + "events": [ + { + "uuid": "a2238445-0e94-42b0-b093-ee93ed3755d0", + "start": { + "$date": "2021-02-26T16:36:22.000Z" + }, + "end": { + "$date": "2021-02-26T16:56:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7ee42f44-611f-4906-9e84-04d772c19a2a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T16:54:54.000Z" + }, + "end": { + "$date": "2021-02-26T18:50:16.000Z" + }, + "events": [ + { + "uuid": "cf6c04f2-09a8-4d00-a8bc-c1681a114dd9", + "start": { + "$date": "2021-02-26T16:54:54.000Z" + }, + "end": { + "$date": "2021-02-26T18:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "80d6422f-e8af-4a9e-9617-c8439d02c4f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-26T16:57:28.000Z" + }, + "end": { + "$date": "2021-02-26T18:48:48.000Z" + }, + "events": [ + { + "uuid": "92b11c0a-2809-41f3-918e-9455e291b540", + "start": { + "$date": "2021-02-26T16:57:28.000Z" + }, + "end": { + "$date": "2021-02-26T18:48:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ed8e32b-ed57-4703-85d0-acbcbeb6a576", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-26T19:11:40.000Z" + }, + "end": { + "$date": "2021-02-26T19:43:37.000Z" + }, + "events": [ + { + "uuid": "f76a4e82-bb59-47cf-970b-e42c55a126c6", + "start": { + "$date": "2021-02-26T19:11:40.000Z" + }, + "end": { + "$date": "2021-02-26T19:28:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82ab4f1d-9e61-47f5-923c-6723220683dc", + "start": { + "$date": "2021-02-26T19:28:40.000Z" + }, + "end": { + "$date": "2021-02-26T19:45:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "147499a9-d36b-4d72-9903-65732f16433b", + "start": { + "$date": "2021-02-26T19:45:40.000Z" + }, + "end": { + "$date": "2021-02-26T19:47:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d354210d-09b9-464f-994b-7ac1bc95845f", + "start": { + "$date": "2021-02-26T19:47:40.000Z" + }, + "end": { + "$date": "2021-02-26T20:22:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64b90477-dbc8-46e5-8022-b104d4a4fbe1", + "start": { + "$date": "2021-02-26T20:22:40.000Z" + }, + "end": { + "$date": "2021-02-26T19:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "db18ad78-7432-4833-a544-a62ad8cf5b96", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-26T18:36:47.000Z" + }, + "end": { + "$date": "2021-02-26T18:55:09.000Z" + }, + "events": [ + { + "uuid": "e1aa1f71-f385-4cd3-bf6c-0b968f8120f7", + "start": { + "$date": "2021-02-26T18:36:47.000Z" + }, + "end": { + "$date": "2021-02-26T18:52:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e151416-1c73-4004-9b3c-4bf70d5f1ab9", + "start": { + "$date": "2021-02-26T18:52:47.000Z" + }, + "end": { + "$date": "2021-02-26T18:55:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "b1258c1f-4238-4e93-bfbe-73747709b8b1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-26T18:46:19.000Z" + }, + "end": { + "$date": "2021-02-26T22:43:12.000Z" + }, + "events": [ + { + "uuid": "440670ec-4f37-4286-8558-f78dd460d4f4", + "start": { + "$date": "2021-02-26T18:46:19.000Z" + }, + "end": { + "$date": "2021-02-26T22:43:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b2ad34c5-5784-476a-8975-aa3158adda80", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-26T22:10:52.000Z" + }, + "end": { + "$date": "2021-02-27T02:23:00.000Z" + }, + "events": [ + { + "uuid": "870641a6-f775-45fd-8cbb-49118d51e414", + "start": { + "$date": "2021-02-26T22:10:52.000Z" + }, + "end": { + "$date": "2021-02-27T00:37:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bf4710ab-e044-422e-bb31-8de09bd54b81", + "start": { + "$date": "2021-02-27T00:37:52.000Z" + }, + "end": { + "$date": "2021-02-27T00:49:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80f22399-5fd4-4021-85e4-71243a716a11", + "start": { + "$date": "2021-02-27T00:49:52.000Z" + }, + "end": { + "$date": "2021-02-27T03:13:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "debffadb-0136-4bc2-8463-439c1d3bf73c", + "start": { + "$date": "2021-02-27T03:13:52.000Z" + }, + "end": { + "$date": "2021-02-27T03:18:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74b892eb-e5f1-4f18-9d1b-82b1c9fc9b4f", + "start": { + "$date": "2021-02-27T03:18:52.000Z" + }, + "end": { + "$date": "2021-02-27T03:28:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58db043b-8720-44ac-a637-582585d5f351", + "start": { + "$date": "2021-02-27T03:28:52.000Z" + }, + "end": { + "$date": "2021-02-27T05:11:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8cf1ab1-8c05-40d0-a5d0-7d69a85186da", + "start": { + "$date": "2021-02-27T05:11:52.000Z" + }, + "end": { + "$date": "2021-02-27T05:21:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97493363-881f-489e-9ce6-43250fae7ec7", + "start": { + "$date": "2021-02-27T05:21:52.000Z" + }, + "end": { + "$date": "2021-02-27T05:33:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69d7bf0f-40f2-4897-9823-08bef3d92f6a", + "start": { + "$date": "2021-02-27T05:33:52.000Z" + }, + "end": { + "$date": "2021-02-27T02:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e0406882-f7a8-4b42-b9da-8d658ede6d38", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-26T19:44:02.000Z" + }, + "end": { + "$date": "2021-02-26T20:50:11.000Z" + }, + "events": [ + { + "uuid": "d601eafa-0aa2-41a1-9c22-b94e5b51dbe2", + "start": { + "$date": "2021-02-26T19:44:02.000Z" + }, + "end": { + "$date": "2021-02-26T20:50:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0e0aacae-7910-497c-96b2-d6ffe9bb6e7d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T20:46:59.000Z" + }, + "end": { + "$date": "2021-02-26T21:40:45.000Z" + }, + "events": [ + { + "uuid": "5c5971f1-48a7-4ca4-ae74-a03ca7a283d6", + "start": { + "$date": "2021-02-26T20:46:59.000Z" + }, + "end": { + "$date": "2021-02-26T21:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f15b2555-5625-41ee-abfe-d06cd9f509e2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-26T20:46:48.000Z" + }, + "end": { + "$date": "2021-02-26T21:32:03.000Z" + }, + "events": [ + { + "uuid": "8118efbb-d5a8-4073-a907-c1944e907a4d", + "start": { + "$date": "2021-02-26T20:46:48.000Z" + }, + "end": { + "$date": "2021-02-26T21:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c7b0e49-94ba-4cff-a15a-7ebb8ff476ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-26T20:51:20.000Z" + }, + "end": { + "$date": "2021-02-26T21:25:49.000Z" + }, + "events": [ + { + "uuid": "427cf505-0619-46fd-b97a-00f2b59ba216", + "start": { + "$date": "2021-02-26T20:51:20.000Z" + }, + "end": { + "$date": "2021-02-26T21:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "c2fbdee2-ea63-48c0-81e7-3d30626620bf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-26T21:23:23.000Z" + }, + "end": { + "$date": "2021-02-26T22:35:39.000Z" + }, + "events": [ + { + "uuid": "88dc7c20-4091-4042-acc2-fffbc023360a", + "start": { + "$date": "2021-02-26T21:23:23.000Z" + }, + "end": { + "$date": "2021-02-26T21:55:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31118858-842e-4ab9-9004-b1479775ec99", + "start": { + "$date": "2021-02-26T21:55:23.000Z" + }, + "end": { + "$date": "2021-02-26T22:03:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "55b1e3dc-8ae2-4dbc-96e0-e97d7762d84d", + "start": { + "$date": "2021-02-26T22:03:23.000Z" + }, + "end": { + "$date": "2021-02-26T22:35:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9851e8ca-cae9-49cf-b782-a5a54b939e7d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-26T21:41:10.000Z" + }, + "end": { + "$date": "2021-02-27T01:47:20.000Z" + }, + "events": [ + { + "uuid": "0b18c813-b535-4b90-a8a7-77539c2796df", + "start": { + "$date": "2021-02-26T21:41:10.000Z" + }, + "end": { + "$date": "2021-02-27T01:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e4e9487b-fe6e-45d6-82c5-f0587c2f0d0b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-26T21:54:45.000Z" + }, + "end": { + "$date": "2021-02-26T23:49:24.000Z" + }, + "events": [ + { + "uuid": "0109463f-94dd-4342-a2da-19b5eacc5f0a", + "start": { + "$date": "2021-02-26T21:54:45.000Z" + }, + "end": { + "$date": "2021-02-26T23:49:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5545bbcf-6420-49aa-9f85-9fd379a9b2b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-26T22:19:41.000Z" + }, + "end": { + "$date": "2021-02-26T23:15:13.000Z" + }, + "events": [ + { + "uuid": "39394dcd-6b66-4a36-a1b7-8f93a7ec67db", + "start": { + "$date": "2021-02-26T22:19:41.000Z" + }, + "end": { + "$date": "2021-02-26T23:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cd759967-c5d4-4104-afa1-5f80f55f32a2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-02-26T23:16:34.000Z" + }, + "end": { + "$date": "2021-02-26T23:19:07.000Z" + }, + "events": [ + { + "uuid": "1626d8e0-8696-461c-85c1-b22359609f3c", + "start": { + "$date": "2021-02-26T23:16:34.000Z" + }, + "end": { + "$date": "2021-02-26T23:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "293cd892-ba9c-4e9d-890d-3d0fb401be0d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T23:31:37.000Z" + }, + "end": { + "$date": "2021-02-26T23:33:26.000Z" + }, + "events": [ + { + "uuid": "fa27ac16-410a-46cf-acb1-0926dede08d3", + "start": { + "$date": "2021-02-26T23:31:37.000Z" + }, + "end": { + "$date": "2021-02-26T23:33:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "51304059-6b9e-422f-b582-477a9a5cc211", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-26T23:33:52.000Z" + }, + "end": { + "$date": "2021-02-27T00:53:02.000Z" + }, + "events": [ + { + "uuid": "babab17f-7e33-464b-a90a-83929d935d6e", + "start": { + "$date": "2021-02-26T23:33:52.000Z" + }, + "end": { + "$date": "2021-02-27T00:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "3c36f524-5928-4620-92e2-06ed7c1496c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-26T23:58:14.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:35.000Z" + }, + "events": [ + { + "uuid": "8e1c7e30-7d1b-488f-9031-d500d924c471", + "start": { + "$date": "2021-02-26T23:58:14.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "b8870ba9-c189-425c-86d3-1bb5785217de", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T00:12:47.000Z" + }, + "end": { + "$date": "2021-02-27T00:34:00.000Z" + }, + "events": [ + { + "uuid": "fd8b8e02-eb51-4a5b-b4f9-d0cd6b751e82", + "start": { + "$date": "2021-02-27T00:12:47.000Z" + }, + "end": { + "$date": "2021-02-27T00:34:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "fc97d8ee-7022-48e2-8e69-4a548f19dbd9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T00:47:42.000Z" + }, + "end": { + "$date": "2021-02-27T01:49:43.000Z" + }, + "events": [ + { + "uuid": "23d42f23-32e5-4f06-8733-899353a5b44d", + "start": { + "$date": "2021-02-27T00:47:42.000Z" + }, + "end": { + "$date": "2021-02-27T01:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "53ad8fd9-0aa3-4321-adc6-0ff67a3cc796", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-27T00:51:22.000Z" + }, + "end": { + "$date": "2021-02-27T01:29:23.000Z" + }, + "events": [ + { + "uuid": "55f0c739-b314-46a5-8894-da5c56ebf027", + "start": { + "$date": "2021-02-27T00:51:22.000Z" + }, + "end": { + "$date": "2021-02-27T01:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a75a36b-07d4-4b1e-884c-b6b7dbabcccf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T00:59:19.000Z" + }, + "end": { + "$date": "2021-02-27T01:39:18.000Z" + }, + "events": [ + { + "uuid": "017a3600-bb45-4532-9591-51bc2fd2f191", + "start": { + "$date": "2021-02-27T00:59:19.000Z" + }, + "end": { + "$date": "2021-02-27T01:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "16d07fb8-cdeb-430f-a5e2-4e491ede6989", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T00:58:40.000Z" + }, + "end": { + "$date": "2021-02-27T01:00:01.000Z" + }, + "events": [ + { + "uuid": "f88b4f14-260c-44df-9613-184a964e16b5", + "start": { + "$date": "2021-02-27T00:58:40.000Z" + }, + "end": { + "$date": "2021-02-27T01:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ab2f803f-fd86-42fd-813d-9d5a3d219f7b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T01:02:21.000Z" + }, + "end": { + "$date": "2021-02-27T03:26:54.000Z" + }, + "events": [ + { + "uuid": "c23e92b3-a2d1-41b1-9d84-6d2b1040584a", + "start": { + "$date": "2021-02-27T01:02:21.000Z" + }, + "end": { + "$date": "2021-02-27T03:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e80175e-5a94-4bd2-bb2d-2e2db349a6c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T02:15:23.000Z" + }, + "end": { + "$date": "2021-02-27T02:47:42.000Z" + }, + "events": [ + { + "uuid": "b516acd5-cd5d-484c-bd6f-fa768f8c60f1", + "start": { + "$date": "2021-02-27T02:15:23.000Z" + }, + "end": { + "$date": "2021-02-27T02:35:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0831c36b-52b0-42b8-9658-139f8610510b", + "start": { + "$date": "2021-02-27T02:35:23.000Z" + }, + "end": { + "$date": "2021-02-27T02:46:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "465edf2d-50c4-442a-965d-96146c128425", + "start": { + "$date": "2021-02-27T02:46:23.000Z" + }, + "end": { + "$date": "2021-02-27T02:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a259289a-b862-49ff-a691-70fb937b2441", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-27T01:46:24.000Z" + }, + "end": { + "$date": "2021-02-27T06:54:23.000Z" + }, + "events": [ + { + "uuid": "531200a8-9800-4e6d-ab0b-22848515b83d", + "start": { + "$date": "2021-02-27T01:46:24.000Z" + }, + "end": { + "$date": "2021-02-27T06:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "53653f46-4554-46db-b64f-8bcf87d63787", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-27T02:07:49.000Z" + }, + "end": { + "$date": "2021-02-27T09:19:24.000Z" + }, + "events": [ + { + "uuid": "9244d95d-f585-4fcc-9ac1-26eaf0089955", + "start": { + "$date": "2021-02-27T02:07:49.000Z" + }, + "end": { + "$date": "2021-02-27T09:19:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9268ee4f-1f45-41ad-8f4d-20ccec965667", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-27T04:33:22.000Z" + }, + "end": { + "$date": "2021-02-27T04:33:36.000Z" + }, + "events": [ + { + "uuid": "74c63eb7-475f-4ec6-9e81-2ffca5155856", + "start": { + "$date": "2021-02-27T04:33:22.000Z" + }, + "end": { + "$date": "2021-02-27T06:38:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67aa22fa-12b0-4473-bb12-55e0beb0dc62", + "start": { + "$date": "2021-02-27T06:38:22.000Z" + }, + "end": { + "$date": "2021-02-27T06:42:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2918fa2b-bfae-4e9c-90eb-66179768d222", + "start": { + "$date": "2021-02-27T06:42:22.000Z" + }, + "end": { + "$date": "2021-02-27T04:33:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "0cd14be9-f387-4754-811b-5d35a2e54a43", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-27T02:42:52.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:28.000Z" + }, + "events": [ + { + "uuid": "ec99b2cf-2958-4d51-bd6e-ae08739ed3c5", + "start": { + "$date": "2021-02-27T02:42:52.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e230d554-e92a-4a01-a7ea-a241659689eb", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T03:16:10.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:16.000Z" + }, + "events": [ + { + "uuid": "6f8f0e31-7e9e-46eb-942f-a3f4ad24aac9", + "start": { + "$date": "2021-02-27T03:16:10.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "52e68ef1-7b72-4742-ac32-66bbafdec9a6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-27T03:24:28.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:29.000Z" + }, + "events": [ + { + "uuid": "6a5350fc-1bae-49fe-bea6-8581d5009992", + "start": { + "$date": "2021-02-27T03:24:28.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "3370dc60-0ea6-444f-8d47-0d7d9322f80c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T03:36:31.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:09.000Z" + }, + "events": [ + { + "uuid": "917bf1ee-c454-4d8e-8fce-ab5f06852ffe", + "start": { + "$date": "2021-02-27T03:36:31.000Z" + }, + "end": { + "$date": "2021-02-27T04:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5b50fc63-cd40-46db-aaed-51dad0b6db37", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-27T04:25:35.000Z" + }, + "end": { + "$date": "2021-02-27T06:29:48.000Z" + }, + "events": [ + { + "uuid": "b553a1f2-7ce5-49bc-8d87-c6094dd30b7a", + "start": { + "$date": "2021-02-27T04:25:35.000Z" + }, + "end": { + "$date": "2021-02-27T06:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c5268154-9e1f-4157-b796-b94239a1c069", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-27T04:46:17.000Z" + }, + "end": { + "$date": "2021-02-27T07:28:22.000Z" + }, + "events": [ + { + "uuid": "caef1f3b-a2b2-4ed7-9027-b00ea66e473d", + "start": { + "$date": "2021-02-27T04:46:17.000Z" + }, + "end": { + "$date": "2021-02-27T07:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "9dae9c4b-832c-445e-9014-f02e13117e9d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T04:49:19.000Z" + }, + "end": { + "$date": "2021-02-27T05:00:15.000Z" + }, + "events": [ + { + "uuid": "f1a0717b-e15d-40a7-a7e9-f029bf56b32b", + "start": { + "$date": "2021-02-27T04:49:19.000Z" + }, + "end": { + "$date": "2021-02-27T05:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "77829c35-a10e-4d06-b7cb-5f38b3cb94ef", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-27T04:53:00.000Z" + }, + "end": { + "$date": "2021-02-27T07:16:10.000Z" + }, + "events": [ + { + "uuid": "58ea09e1-e896-4aba-900d-0ed28f5576ba", + "start": { + "$date": "2021-02-27T04:53:00.000Z" + }, + "end": { + "$date": "2021-02-27T07:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "196e2713-974a-40d1-a05b-389a83970a8e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-27T04:55:15.000Z" + }, + "end": { + "$date": "2021-02-27T05:05:16.000Z" + }, + "events": [ + { + "uuid": "8db9b2c2-05bd-458f-8b36-dfab861dac50", + "start": { + "$date": "2021-02-27T04:55:15.000Z" + }, + "end": { + "$date": "2021-02-27T05:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c14e3559-8d93-4c0f-acb3-b3d93252265b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T04:57:48.000Z" + }, + "end": { + "$date": "2021-02-27T05:01:43.000Z" + }, + "events": [ + { + "uuid": "ade62825-687c-4e52-9c97-f3ea81791b30", + "start": { + "$date": "2021-02-27T04:57:48.000Z" + }, + "end": { + "$date": "2021-02-27T05:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "8414741f-3b45-438e-b65a-d70a5a883aff", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T05:01:30.000Z" + }, + "end": { + "$date": "2021-02-27T05:49:58.000Z" + }, + "events": [ + { + "uuid": "3b3b3d3f-c617-4be5-abdd-a71e6423ad86", + "start": { + "$date": "2021-02-27T05:01:30.000Z" + }, + "end": { + "$date": "2021-02-27T05:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ac7a2936-d53b-4e6b-81ec-f60c29f95e7f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T05:01:48.000Z" + }, + "end": { + "$date": "2021-02-27T08:06:21.000Z" + }, + "events": [ + { + "uuid": "30c61222-7403-4360-84e1-f38ee7859f06", + "start": { + "$date": "2021-02-27T05:01:48.000Z" + }, + "end": { + "$date": "2021-02-27T08:06:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e4f5f6d-fcb7-4168-a6f8-6b2d02e5d07f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T05:16:22.000Z" + }, + "end": { + "$date": "2021-02-27T05:46:19.000Z" + }, + "events": [ + { + "uuid": "2f679a7a-f3b6-4c2b-a4e1-1864d1158e18", + "start": { + "$date": "2021-02-27T05:16:22.000Z" + }, + "end": { + "$date": "2021-02-27T05:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "51302da2-fd66-4a16-adae-8f312f45983e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-27T05:42:48.000Z" + }, + "end": { + "$date": "2021-02-27T08:05:11.000Z" + }, + "events": [ + { + "uuid": "d011db01-930d-4266-9c27-6b394d5303fb", + "start": { + "$date": "2021-02-27T05:42:48.000Z" + }, + "end": { + "$date": "2021-02-27T08:05:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2e913d8-72b5-4641-a2d2-6fe01d95f320", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T05:48:15.000Z" + }, + "end": { + "$date": "2021-02-27T05:51:11.000Z" + }, + "events": [ + { + "uuid": "b816e75f-a4e3-4962-8fe5-97190914294f", + "start": { + "$date": "2021-02-27T05:48:15.000Z" + }, + "end": { + "$date": "2021-02-27T05:51:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "2cac3bc1-302a-4686-8f76-b478e0f2b928", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T06:43:23.000Z" + }, + "end": { + "$date": "2021-02-27T07:09:04.000Z" + }, + "events": [ + { + "uuid": "0ee8a054-c544-4c90-8f55-563bc5571b0b", + "start": { + "$date": "2021-02-27T06:43:23.000Z" + }, + "end": { + "$date": "2021-02-27T07:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ebc7302e-80b1-4ffb-b3c2-ff50ff540fa2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-27T06:55:42.000Z" + }, + "end": { + "$date": "2021-02-27T09:26:15.000Z" + }, + "events": [ + { + "uuid": "4f2f49a8-0acb-4b3a-b2f4-318f4639a4f3", + "start": { + "$date": "2021-02-27T06:55:42.000Z" + }, + "end": { + "$date": "2021-02-27T09:24:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98421028-d22f-4e10-9610-1b5a75316bf5", + "start": { + "$date": "2021-02-27T09:24:42.000Z" + }, + "end": { + "$date": "2021-02-27T09:26:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9eda3c55-4de8-48d4-a686-8805220b65f0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T07:03:49.000Z" + }, + "end": { + "$date": "2021-02-27T07:31:37.000Z" + }, + "events": [ + { + "uuid": "961a6d63-b0f2-4b54-ac9f-3e5ef7e079b3", + "start": { + "$date": "2021-02-27T07:03:49.000Z" + }, + "end": { + "$date": "2021-02-27T07:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "12a5dc77-c651-4cfb-b4b7-d6bbbc3cc517", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T07:16:24.000Z" + }, + "end": { + "$date": "2021-02-27T07:29:35.000Z" + }, + "events": [ + { + "uuid": "b7f3c629-4a1f-4308-b3f9-cf3815072e30", + "start": { + "$date": "2021-02-27T07:16:24.000Z" + }, + "end": { + "$date": "2021-02-27T07:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1b613265-5933-4010-9a43-67a7bf5f00ff", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-27T07:18:44.000Z" + }, + "end": { + "$date": "2021-02-27T07:50:27.000Z" + }, + "events": [ + { + "uuid": "71e71301-45de-4cc6-a8a2-f81f9834bd23", + "start": { + "$date": "2021-02-27T07:18:44.000Z" + }, + "end": { + "$date": "2021-02-27T07:50:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "614adcee-7e43-4b40-a61c-99cf5c7e9c02", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-27T07:22:47.000Z" + }, + "end": { + "$date": "2021-02-27T08:06:16.000Z" + }, + "events": [ + { + "uuid": "b98e3f8c-5ff3-4927-b8d4-c0983420829d", + "start": { + "$date": "2021-02-27T07:22:47.000Z" + }, + "end": { + "$date": "2021-02-27T08:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "b237676b-d884-4c20-8938-56359c63f1fe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T07:30:09.000Z" + }, + "end": { + "$date": "2021-02-27T07:46:20.000Z" + }, + "events": [ + { + "uuid": "bd9498da-545d-491e-9f88-81fdd25ef663", + "start": { + "$date": "2021-02-27T07:30:09.000Z" + }, + "end": { + "$date": "2021-02-27T07:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0df0028-8fc0-452a-95b4-c3e503e51a41", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T07:40:00.000Z" + }, + "end": { + "$date": "2021-02-27T08:01:23.000Z" + }, + "events": [ + { + "uuid": "07d64af8-35e1-4a86-b5d2-e1fcf9c5a5e4", + "start": { + "$date": "2021-02-27T07:40:00.000Z" + }, + "end": { + "$date": "2021-02-27T08:01:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4b4ccdec-1ab8-4fa7-807b-c375532154d2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T07:47:30.000Z" + }, + "end": { + "$date": "2021-02-27T08:03:32.000Z" + }, + "events": [ + { + "uuid": "a60b86ea-3782-4485-b165-77ff84713495", + "start": { + "$date": "2021-02-27T07:47:30.000Z" + }, + "end": { + "$date": "2021-02-27T08:03:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c8999aed-a591-49e8-922a-5e74f0290c5f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-27T07:50:52.000Z" + }, + "end": { + "$date": "2021-02-27T07:54:37.000Z" + }, + "events": [ + { + "uuid": "16358866-4d9b-440b-ab2e-d17285ed9663", + "start": { + "$date": "2021-02-27T07:50:52.000Z" + }, + "end": { + "$date": "2021-02-27T07:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "33fea0ee-9c49-4dbd-9eb8-6d57949eeb65", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-27T07:54:57.000Z" + }, + "end": { + "$date": "2021-02-27T08:34:04.000Z" + }, + "events": [ + { + "uuid": "1f8fff1a-7f6a-4a51-bcb5-ca13ad9c3bd6", + "start": { + "$date": "2021-02-27T07:54:57.000Z" + }, + "end": { + "$date": "2021-02-27T08:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ab96a703-3add-4c77-9fb4-f0c2f081046f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T08:05:22.000Z" + }, + "end": { + "$date": "2021-02-27T08:38:53.000Z" + }, + "events": [ + { + "uuid": "b42dd016-08fa-4743-bea5-45a2358f1f8c", + "start": { + "$date": "2021-02-27T08:05:22.000Z" + }, + "end": { + "$date": "2021-02-27T08:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f13ca6be-c4de-4cb3-8074-6bd1695bb686", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-27T08:06:11.000Z" + }, + "end": { + "$date": "2021-02-27T08:40:02.000Z" + }, + "events": [ + { + "uuid": "5fc6a25b-d004-404b-a430-0d42eb657917", + "start": { + "$date": "2021-02-27T08:06:11.000Z" + }, + "end": { + "$date": "2021-02-27T08:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "5034da00-a5c5-4b1a-ae9a-84823d920a30", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T08:08:41.000Z" + }, + "end": { + "$date": "2021-02-27T08:16:06.000Z" + }, + "events": [ + { + "uuid": "c6cf18d7-4e21-4cfc-acb6-14be2919cb2d", + "start": { + "$date": "2021-02-27T08:08:41.000Z" + }, + "end": { + "$date": "2021-02-27T08:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76b970d8-e6a2-4a55-b302-474bae0ae485", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T08:12:43.000Z" + }, + "end": { + "$date": "2021-02-27T08:25:20.000Z" + }, + "events": [ + { + "uuid": "bd984dde-163d-4981-b85e-48fbf0311bff", + "start": { + "$date": "2021-02-27T08:12:43.000Z" + }, + "end": { + "$date": "2021-02-27T08:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "946fc106-420d-470d-b21d-deb452bfd8ea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-27T08:09:53.000Z" + }, + "end": { + "$date": "2021-02-27T08:36:11.000Z" + }, + "events": [ + { + "uuid": "c0b956e0-4c92-4168-94cc-6ed1ef92cdb4", + "start": { + "$date": "2021-02-27T08:09:53.000Z" + }, + "end": { + "$date": "2021-02-27T08:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "6b9fcc78-f135-481f-9454-ef0906d7edf2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T08:16:16.000Z" + }, + "end": { + "$date": "2021-02-27T08:26:56.000Z" + }, + "events": [ + { + "uuid": "007bda80-0bdd-47a9-865f-0d61b8291384", + "start": { + "$date": "2021-02-27T08:16:16.000Z" + }, + "end": { + "$date": "2021-02-27T08:26:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef69397b-3230-4161-9cf3-39cbeedd516e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T08:29:13.000Z" + }, + "end": { + "$date": "2021-02-27T08:45:01.000Z" + }, + "events": [ + { + "uuid": "088e7763-6c27-4f46-be81-506c08b64ceb", + "start": { + "$date": "2021-02-27T08:29:13.000Z" + }, + "end": { + "$date": "2021-02-27T08:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ddfa0903-f51b-41a4-ad18-d3a1ea5716a6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-02-27T08:29:02.000Z" + }, + "end": { + "$date": "2021-02-27T08:36:02.000Z" + }, + "events": [ + { + "uuid": "37479b87-b103-4540-bd1b-e0847d159ff9", + "start": { + "$date": "2021-02-27T08:29:02.000Z" + }, + "end": { + "$date": "2021-02-27T08:36:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8efdc939-f8b1-4610-94d9-77d3623b139d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-27T08:38:44.000Z" + }, + "end": { + "$date": "2021-02-27T09:25:07.000Z" + }, + "events": [ + { + "uuid": "56f4c541-c711-435c-b958-eca65a1d4ece", + "start": { + "$date": "2021-02-27T08:38:44.000Z" + }, + "end": { + "$date": "2021-02-27T09:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87b0d5e4-d67f-4723-9b4c-7c1979504fc8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T08:48:54.000Z" + }, + "end": { + "$date": "2021-02-27T09:08:22.000Z" + }, + "events": [ + { + "uuid": "43086777-e589-4872-9a22-5925df9640b2", + "start": { + "$date": "2021-02-27T08:48:54.000Z" + }, + "end": { + "$date": "2021-02-27T09:08:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e401384a-5cec-4ce1-b726-6894c9e92e3e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T09:11:05.000Z" + }, + "end": { + "$date": "2021-02-27T09:25:47.000Z" + }, + "events": [ + { + "uuid": "e1b2db61-da7f-4501-8287-b0b225d29fe8", + "start": { + "$date": "2021-02-27T09:11:05.000Z" + }, + "end": { + "$date": "2021-02-27T09:25:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fe011f7-7c73-4ac4-8954-ab8ad08ccd0c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-27T09:29:15.000Z" + }, + "end": { + "$date": "2021-02-27T09:44:03.000Z" + }, + "events": [ + { + "uuid": "0c86a273-9dcc-4f9b-bc84-52114b086a27", + "start": { + "$date": "2021-02-27T09:29:15.000Z" + }, + "end": { + "$date": "2021-02-27T09:44:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "241106c0-2c17-4dbb-a7ec-9061081020ba", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-27T13:47:21.000Z" + }, + "end": { + "$date": "2021-02-27T14:41:53.000Z" + }, + "events": [ + { + "uuid": "a464a8e7-0d3c-4726-a463-60dcff75faee", + "start": { + "$date": "2021-02-27T13:47:21.000Z" + }, + "end": { + "$date": "2021-02-27T14:41:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "e7d7ac78-86eb-4a0d-929f-f5be9f8c1855", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T14:53:09.000Z" + }, + "end": { + "$date": "2021-02-27T15:13:55.000Z" + }, + "events": [ + { + "uuid": "6e43a4c8-1256-4839-9468-6c78578ceaa4", + "start": { + "$date": "2021-02-27T14:53:09.000Z" + }, + "end": { + "$date": "2021-02-27T15:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "69483501-8f7b-4e52-849d-de0b4509a26a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T15:13:59.000Z" + }, + "end": { + "$date": "2021-02-27T15:35:51.000Z" + }, + "events": [ + { + "uuid": "8cbdf21b-5144-4cfe-990b-e4213a231f1f", + "start": { + "$date": "2021-02-27T15:13:59.000Z" + }, + "end": { + "$date": "2021-02-27T15:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "417b14b2-e51e-4b24-9fd5-122b40ceeea4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T16:43:34.000Z" + }, + "end": { + "$date": "2021-02-27T18:58:17.000Z" + }, + "events": [ + { + "uuid": "fb11779b-dd8c-426d-ad5e-d3329223989e", + "start": { + "$date": "2021-02-27T16:43:34.000Z" + }, + "end": { + "$date": "2021-02-27T18:26:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "652e19f5-79be-411c-bda1-aa8d4a9b414b", + "start": { + "$date": "2021-02-27T18:26:34.000Z" + }, + "end": { + "$date": "2021-02-27T18:31:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b637692d-3f74-4dd7-af8c-123c12db9c92", + "start": { + "$date": "2021-02-27T18:31:34.000Z" + }, + "end": { + "$date": "2021-02-27T18:41:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63221dc0-ddfa-4f54-ade7-9fae44bba29b", + "start": { + "$date": "2021-02-27T18:41:34.000Z" + }, + "end": { + "$date": "2021-02-27T19:43:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15fd4d0c-ba4f-4a55-beaa-3612223e96ef", + "start": { + "$date": "2021-02-27T19:43:34.000Z" + }, + "end": { + "$date": "2021-02-27T18:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "33c087e3-b3f5-4355-b461-e3f87fd80920", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-27T16:51:51.000Z" + }, + "end": { + "$date": "2021-02-27T17:40:59.000Z" + }, + "events": [ + { + "uuid": "1b47cf54-1e07-4d70-9848-695eb5afdd93", + "start": { + "$date": "2021-02-27T16:51:51.000Z" + }, + "end": { + "$date": "2021-02-27T17:02:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6483839b-e68a-47e5-9a5c-4576693166a5", + "start": { + "$date": "2021-02-27T17:02:51.000Z" + }, + "end": { + "$date": "2021-02-27T17:09:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0700e831-7789-402a-a8f4-02ba663be178", + "start": { + "$date": "2021-02-27T17:09:51.000Z" + }, + "end": { + "$date": "2021-02-27T17:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6514619a-c6cb-4089-850a-ecffb1abc455", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-27T17:03:26.000Z" + }, + "end": { + "$date": "2021-02-27T18:59:09.000Z" + }, + "events": [ + { + "uuid": "a4f60d7d-d19b-4c67-b677-22ffee55ea96", + "start": { + "$date": "2021-02-27T17:03:26.000Z" + }, + "end": { + "$date": "2021-02-27T18:59:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8dc6102d-0ba4-4deb-9555-23039224f107", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-27T17:03:41.000Z" + }, + "end": { + "$date": "2021-02-27T17:12:15.000Z" + }, + "events": [ + { + "uuid": "ea89b716-9465-4686-b37e-68022b12dcef", + "start": { + "$date": "2021-02-27T17:03:41.000Z" + }, + "end": { + "$date": "2021-02-27T17:12:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a4fa0285-3fde-45d8-9dbe-4c1ad103f9b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-27T17:12:48.000Z" + }, + "end": { + "$date": "2021-02-27T18:56:16.000Z" + }, + "events": [ + { + "uuid": "24993f6d-8291-4111-9b73-643575740c57", + "start": { + "$date": "2021-02-27T17:12:48.000Z" + }, + "end": { + "$date": "2021-02-27T18:56:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "879943b6-90f4-4bb8-9e8d-435c5943b11a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T18:15:20.000Z" + }, + "end": { + "$date": "2021-02-27T18:37:41.000Z" + }, + "events": [ + { + "uuid": "78b3d994-5819-4c84-b3c4-4659d68925a2", + "start": { + "$date": "2021-02-27T18:15:20.000Z" + }, + "end": { + "$date": "2021-02-27T18:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "19f944bb-304e-47ad-8c6b-8d3d44040ca7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-27T18:13:45.000Z" + }, + "end": { + "$date": "2021-02-27T21:05:35.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-27T18:13:45.000Z" + }, + "end": { + "$date": "2021-02-27T21:05:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0873d8c9-a86f-45d3-af9a-25c1b930ff97", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-02-27T18:14:56.000Z" + }, + "end": { + "$date": "2021-02-27T20:02:46.000Z" + }, + "events": [ + { + "uuid": "d6dedf94-4f7e-42fb-963f-1cea93379be6", + "start": { + "$date": "2021-02-27T18:14:56.000Z" + }, + "end": { + "$date": "2021-02-27T20:02:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8e2dc44-26fd-4436-9a2b-138308b0dca1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T18:43:52.000Z" + }, + "end": { + "$date": "2021-02-27T19:10:53.000Z" + }, + "events": [ + { + "uuid": "04c882c1-1cf3-46c6-a014-f56a2b7d0bb5", + "start": { + "$date": "2021-02-27T18:43:52.000Z" + }, + "end": { + "$date": "2021-02-27T19:10:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "3d4dcee0-9b33-445e-b49e-aa3eb4583d37", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T18:54:13.000Z" + }, + "end": { + "$date": "2021-02-27T19:16:35.000Z" + }, + "events": [ + { + "uuid": "21c6bed2-c0cd-4f76-ba04-d91c21862e71", + "start": { + "$date": "2021-02-27T18:54:13.000Z" + }, + "end": { + "$date": "2021-02-27T19:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "25e97d07-f979-40d8-ad86-51b94be6f9f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T18:58:27.000Z" + }, + "end": { + "$date": "2021-02-27T20:43:39.000Z" + }, + "events": [ + { + "uuid": "5731b269-e9b2-4176-84d0-d347e24cf045", + "start": { + "$date": "2021-02-27T18:58:27.000Z" + }, + "end": { + "$date": "2021-02-27T20:43:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "be30752b-df29-4c7f-af40-bdc13176fa19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-27T18:58:49.000Z" + }, + "end": { + "$date": "2021-02-27T20:24:59.000Z" + }, + "events": [ + { + "uuid": "5845df89-0e14-4c6d-8f1d-93f9057eedd5", + "start": { + "$date": "2021-02-27T18:58:49.000Z" + }, + "end": { + "$date": "2021-02-27T20:24:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09be6013-115b-4629-97fa-cfd461ac50fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T19:15:49.000Z" + }, + "end": { + "$date": "2021-02-27T19:40:55.000Z" + }, + "events": [ + { + "uuid": "c5ca4d96-3b87-4713-a272-b0c05d19c0e7", + "start": { + "$date": "2021-02-27T19:15:49.000Z" + }, + "end": { + "$date": "2021-02-27T19:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "687d1ca0-b5df-4281-ab84-e7832b771a51", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T22:09:37.000Z" + }, + "end": { + "$date": "2021-02-27T22:47:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-27T22:09:37.000Z" + }, + "end": { + "$date": "2021-02-27T22:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "85013177-9319-4864-a55b-e4018907cfd1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-27T19:57:03.000Z" + }, + "end": { + "$date": "2021-02-27T20:57:14.000Z" + }, + "events": [ + { + "uuid": "aa4a73c4-576b-4158-9ab7-358778ffeefa", + "start": { + "$date": "2021-02-27T19:57:03.000Z" + }, + "end": { + "$date": "2021-02-27T20:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "3e5a3207-7fcc-419e-ab5f-85fe83ad9482", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T20:46:04.000Z" + }, + "end": { + "$date": "2021-02-27T21:29:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-02-27T20:46:04.000Z" + }, + "end": { + "$date": "2021-02-27T21:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "a2191b5f-6fd0-4be9-87bb-0fe0dd3f5050", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-27T21:21:30.000Z" + }, + "end": { + "$date": "2021-02-27T22:07:24.000Z" + }, + "events": [ + { + "uuid": "05b8209a-992a-4d9b-b021-d4a5b2a28578", + "start": { + "$date": "2021-02-27T21:21:30.000Z" + }, + "end": { + "$date": "2021-02-27T22:07:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "a67dc103-df05-4f40-8da6-d748707b9ae7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-27T21:22:56.000Z" + }, + "end": { + "$date": "2021-02-27T22:11:38.000Z" + }, + "events": [ + { + "uuid": "bb822b5b-fdd5-4289-a72e-922d912cfd71", + "start": { + "$date": "2021-02-27T21:22:56.000Z" + }, + "end": { + "$date": "2021-02-27T22:11:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b2d4ab47-f4dd-46f7-b8df-4e7bdf570c81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-27T21:28:05.000Z" + }, + "end": { + "$date": "2021-02-27T22:28:01.000Z" + }, + "events": [ + { + "uuid": "12e0c93d-c96a-41f8-a711-eb8fa2f5fb72", + "start": { + "$date": "2021-02-27T21:28:05.000Z" + }, + "end": { + "$date": "2021-02-27T22:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c34906b1-dd4b-4b39-a8c1-84443c8c53f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-27T21:30:51.000Z" + }, + "end": { + "$date": "2021-02-28T02:58:13.000Z" + }, + "events": [ + { + "uuid": "6e2d5cbf-db3f-4218-b5ae-17e7a47e5542", + "start": { + "$date": "2021-02-27T21:30:51.000Z" + }, + "end": { + "$date": "2021-02-28T02:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "64cbd991-45d4-40c6-87f2-d424cd214cd1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-27T21:46:17.000Z" + }, + "end": { + "$date": "2021-02-27T22:14:50.000Z" + }, + "events": [ + { + "uuid": "ee7f7f5f-d4f3-461b-98b4-9519182a1de6", + "start": { + "$date": "2021-02-27T21:46:17.000Z" + }, + "end": { + "$date": "2021-02-27T22:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "901b6e04-19a3-4967-a065-2cc52bb70eb6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-27T21:53:24.000Z" + }, + "end": { + "$date": "2021-02-28T00:06:34.000Z" + }, + "events": [ + { + "uuid": "915e800f-b183-4776-95ca-4dcddcb4965f", + "start": { + "$date": "2021-02-27T21:53:24.000Z" + }, + "end": { + "$date": "2021-02-27T22:04:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0811118-6770-47b1-bf28-297d96f892d2", + "start": { + "$date": "2021-02-27T22:04:24.000Z" + }, + "end": { + "$date": "2021-02-27T23:40:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97f5c2b6-2251-4983-8eef-c1997bff2f7b", + "start": { + "$date": "2021-02-27T23:40:24.000Z" + }, + "end": { + "$date": "2021-02-27T23:50:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "346b0240-f14e-4919-873a-d20ba0a41fb3", + "start": { + "$date": "2021-02-27T23:50:24.000Z" + }, + "end": { + "$date": "2021-02-28T00:06:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5642fe25-d07c-4d15-899c-79c7f8efc269", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-27T21:58:39.000Z" + }, + "end": { + "$date": "2021-02-27T23:49:56.000Z" + }, + "events": [ + { + "uuid": "3424da96-2cc8-4c99-98fd-616fc5db37e7", + "start": { + "$date": "2021-02-27T21:58:39.000Z" + }, + "end": { + "$date": "2021-02-27T23:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6e95ee7-4bb7-47dc-91d1-0fb312a36c20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-27T22:59:20.000Z" + }, + "end": { + "$date": "2021-02-27T23:20:48.000Z" + }, + "events": [ + { + "uuid": "55b5d845-be86-484f-a734-0d095928692f", + "start": { + "$date": "2021-02-27T22:59:20.000Z" + }, + "end": { + "$date": "2021-02-27T23:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd69db6b-88dd-4e55-a5bf-9de247de3fbc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-27T23:22:37.000Z" + }, + "end": { + "$date": "2021-02-27T23:50:09.000Z" + }, + "events": [ + { + "uuid": "d075162e-822c-4061-b00f-f7b0030b352c", + "start": { + "$date": "2021-02-27T23:22:37.000Z" + }, + "end": { + "$date": "2021-02-27T23:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca0f0b16-d683-4ac9-83f2-77226377627a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T00:27:36.000Z" + }, + "end": { + "$date": "2021-02-28T01:00:32.000Z" + }, + "events": [ + { + "uuid": "86aad287-ba04-4a4b-b951-f57bc6d1d8df", + "start": { + "$date": "2021-02-28T00:27:36.000Z" + }, + "end": { + "$date": "2021-02-28T00:38:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f316178f-8a8f-44c4-9384-97f81d3840cb", + "start": { + "$date": "2021-02-28T00:38:36.000Z" + }, + "end": { + "$date": "2021-02-28T00:42:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74a508fc-e246-46eb-adc1-3b1ae5616d97", + "start": { + "$date": "2021-02-28T00:42:36.000Z" + }, + "end": { + "$date": "2021-02-28T00:58:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "758007ed-f3a4-4ff3-9261-f5e0df56b3f2", + "start": { + "$date": "2021-02-28T00:58:36.000Z" + }, + "end": { + "$date": "2021-02-28T00:59:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80baa27f-03e8-4837-be9b-0a6b581b9d59", + "start": { + "$date": "2021-02-28T00:59:36.000Z" + }, + "end": { + "$date": "2021-02-28T01:00:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad9d3533-a957-4ee4-b1b0-2b7110c21d38", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T00:37:05.000Z" + }, + "end": { + "$date": "2021-02-28T01:08:47.000Z" + }, + "events": [ + { + "uuid": "3ad24dcc-013e-4941-a25f-09e42080f25c", + "start": { + "$date": "2021-02-28T00:37:05.000Z" + }, + "end": { + "$date": "2021-02-28T01:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ef0c77e2-53ad-4397-9d0a-fbd633c68317", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T01:00:03.000Z" + }, + "end": { + "$date": "2021-02-28T01:40:15.000Z" + }, + "events": [ + { + "uuid": "5b3489b2-65bb-4365-bb14-0d235aebe71f", + "start": { + "$date": "2021-02-28T01:00:03.000Z" + }, + "end": { + "$date": "2021-02-28T01:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0bf3d387-f18e-427c-900a-728d7ce7ef3c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T01:02:37.000Z" + }, + "end": { + "$date": "2021-02-28T02:06:04.000Z" + }, + "events": [ + { + "uuid": "859b5938-fc1d-4e51-9dda-3c59cdc343b1", + "start": { + "$date": "2021-02-28T01:02:37.000Z" + }, + "end": { + "$date": "2021-02-28T02:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17af2a89-7730-4872-95e1-8d4fe51bd5e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T01:09:16.000Z" + }, + "end": { + "$date": "2021-02-28T03:55:06.000Z" + }, + "events": [ + { + "uuid": "d728ba68-7107-4a07-b0ba-097c3c0b5b78", + "start": { + "$date": "2021-02-28T01:09:16.000Z" + }, + "end": { + "$date": "2021-02-28T01:22:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a382894d-bb76-4d8c-91e4-21c784039e2e", + "start": { + "$date": "2021-02-28T01:22:16.000Z" + }, + "end": { + "$date": "2021-02-28T01:46:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20eec9c7-9eaa-464c-9071-471fbedafa44", + "start": { + "$date": "2021-02-28T01:46:16.000Z" + }, + "end": { + "$date": "2021-02-28T03:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "0d65993d-174d-44a3-bb01-ce556e22a87a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-28T01:15:56.000Z" + }, + "end": { + "$date": "2021-02-28T02:44:51.000Z" + }, + "events": [ + { + "uuid": "adeaa224-7d52-4189-b7b7-a072a0adcdb3", + "start": { + "$date": "2021-02-28T01:15:56.000Z" + }, + "end": { + "$date": "2021-02-28T02:44:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "eb26b989-6ebe-4ae5-8983-e34911842ce1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-28T01:19:46.000Z" + }, + "end": { + "$date": "2021-02-28T02:39:20.000Z" + }, + "events": [ + { + "uuid": "f49d6c0b-a8c9-491d-917b-5e5070cf1d01", + "start": { + "$date": "2021-02-28T01:19:46.000Z" + }, + "end": { + "$date": "2021-02-28T02:39:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5be680ea-5faa-4cc8-a682-225cd00f42b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T02:11:14.000Z" + }, + "end": { + "$date": "2021-02-28T02:50:41.000Z" + }, + "events": [ + { + "uuid": "cff4ac5b-e980-4b7b-94f9-0bcda93f74c1", + "start": { + "$date": "2021-02-28T02:11:14.000Z" + }, + "end": { + "$date": "2021-02-28T02:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9d06f6d-ab3a-4516-96d3-7d63211a6fd3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-28T02:22:30.000Z" + }, + "end": { + "$date": "2021-02-28T03:10:23.000Z" + }, + "events": [ + { + "uuid": "bd856720-5988-4976-99f0-92b5caeb6b07", + "start": { + "$date": "2021-02-28T02:22:30.000Z" + }, + "end": { + "$date": "2021-02-28T03:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c0d2110a-fac6-4300-865f-1e9757d6969e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-28T02:24:35.000Z" + }, + "end": { + "$date": "2021-02-28T02:26:10.000Z" + }, + "events": [ + { + "uuid": "29f4bb30-758b-4175-9b22-43245b6686b9", + "start": { + "$date": "2021-02-28T02:24:35.000Z" + }, + "end": { + "$date": "2021-02-28T02:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5e76d967-f875-42fd-9173-35c66dfa7edb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-28T02:27:15.000Z" + }, + "end": { + "$date": "2021-02-28T03:10:27.000Z" + }, + "events": [ + { + "uuid": "e7d8bd22-3fb9-4e73-8eac-04c6a7211499", + "start": { + "$date": "2021-02-28T02:27:15.000Z" + }, + "end": { + "$date": "2021-02-28T03:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "fb1fd2c7-1636-464e-a03c-79e6da6c1027", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-28T02:42:23.000Z" + }, + "end": { + "$date": "2021-02-28T04:53:46.000Z" + }, + "events": [ + { + "uuid": "732d5988-f67e-4d0a-b61c-39e2598f3b94", + "start": { + "$date": "2021-02-28T02:42:23.000Z" + }, + "end": { + "$date": "2021-02-28T04:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "12eccbe3-be7b-48a9-93bd-36daff6d4f1d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T02:44:00.000Z" + }, + "end": { + "$date": "2021-02-28T02:49:16.000Z" + }, + "events": [ + { + "uuid": "614d57b4-c57f-4726-9e39-650350dda970", + "start": { + "$date": "2021-02-28T02:44:00.000Z" + }, + "end": { + "$date": "2021-02-28T02:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f1865421-4ffc-4e22-a417-46327f4fd8e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-28T02:48:15.000Z" + }, + "end": { + "$date": "2021-02-28T04:47:56.000Z" + }, + "events": [ + { + "uuid": "bc964018-e7ac-4f73-aebb-67d4ae2db60e", + "start": { + "$date": "2021-02-28T02:48:15.000Z" + }, + "end": { + "$date": "2021-02-28T04:47:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "2835dd9a-a2e0-4ee1-bfe7-ae91aa67c91c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T02:51:41.000Z" + }, + "end": { + "$date": "2021-02-28T03:10:02.000Z" + }, + "events": [ + { + "uuid": "8a5c0e29-acf2-491d-a791-1f254fda898e", + "start": { + "$date": "2021-02-28T02:51:41.000Z" + }, + "end": { + "$date": "2021-02-28T03:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d0053f45-9718-4118-a354-20155d054e81", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T02:59:58.000Z" + }, + "end": { + "$date": "2021-02-28T03:26:34.000Z" + }, + "events": [ + { + "uuid": "4bb3a910-2f3c-48ac-b939-f6ecdf0a15af", + "start": { + "$date": "2021-02-28T02:59:58.000Z" + }, + "end": { + "$date": "2021-02-28T03:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e59f399e-41b0-4762-ba97-9416840764c8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T03:03:31.000Z" + }, + "end": { + "$date": "2021-02-28T03:36:58.000Z" + }, + "events": [ + { + "uuid": "71d79cbc-5072-4701-a49f-86dbb166219b", + "start": { + "$date": "2021-02-28T03:03:31.000Z" + }, + "end": { + "$date": "2021-02-28T03:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e3c6386d-099a-4481-8773-430dce8c3703", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-28T03:10:42.000Z" + }, + "end": { + "$date": "2021-02-28T07:26:04.000Z" + }, + "events": [ + { + "uuid": "dbfe62b9-683b-4fbd-84f5-2a04bab66dd1", + "start": { + "$date": "2021-02-28T03:10:42.000Z" + }, + "end": { + "$date": "2021-02-28T07:26:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "9278a4aa-8f72-4977-8d16-9a6817983b25", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-28T03:10:21.000Z" + }, + "end": { + "$date": "2021-02-28T05:00:00.000Z" + }, + "events": [ + { + "uuid": "225db5bc-7088-4f71-a781-dd768d1dfe95", + "start": { + "$date": "2021-02-28T03:10:21.000Z" + }, + "end": { + "$date": "2021-02-28T05:00:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6e8b0da6-9b31-4892-b772-ecb2711028e5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T03:29:41.000Z" + }, + "end": { + "$date": "2021-02-28T06:37:03.000Z" + }, + "events": [ + { + "uuid": "0d99bbfe-edea-4d6e-89de-2cd2f3462f94", + "start": { + "$date": "2021-02-28T03:29:41.000Z" + }, + "end": { + "$date": "2021-02-28T06:37:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7325100a-e891-4a85-9725-5a149e9ccee3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T03:40:50.000Z" + }, + "end": { + "$date": "2021-02-28T04:06:01.000Z" + }, + "events": [ + { + "uuid": "dd831325-bf4c-4dc2-b994-fa18aca2196a", + "start": { + "$date": "2021-02-28T03:40:50.000Z" + }, + "end": { + "$date": "2021-02-28T04:06:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "b99b67a7-2f23-4c81-99d1-811ca72bf77a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T04:06:11.000Z" + }, + "end": { + "$date": "2021-02-28T04:37:07.000Z" + }, + "events": [ + { + "uuid": "231dc602-76cf-4b27-8b73-c3d4be05d091", + "start": { + "$date": "2021-02-28T04:06:11.000Z" + }, + "end": { + "$date": "2021-02-28T04:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "473306f7-21ab-42bd-8fdc-3242f46810d4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-28T04:20:17.000Z" + }, + "end": { + "$date": "2021-02-28T04:49:57.000Z" + }, + "events": [ + { + "uuid": "55eb5ea1-8bfd-4de4-aa98-1a1ab1ffbeba", + "start": { + "$date": "2021-02-28T04:20:17.000Z" + }, + "end": { + "$date": "2021-02-28T04:49:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0a7fa484-cb9f-47e0-8ee4-4b2fa7820a64", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T04:34:34.000Z" + }, + "end": { + "$date": "2021-02-28T04:37:53.000Z" + }, + "events": [ + { + "uuid": "30c33988-7acd-469d-8077-993b2293217e", + "start": { + "$date": "2021-02-28T04:34:34.000Z" + }, + "end": { + "$date": "2021-02-28T04:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dcd2a038-22c1-4cef-8d92-fba0f75ca1ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T04:37:37.000Z" + }, + "end": { + "$date": "2021-02-28T07:35:53.000Z" + }, + "events": [ + { + "uuid": "b311151c-724f-4cf3-809b-0696f5a3d0ba", + "start": { + "$date": "2021-02-28T04:37:37.000Z" + }, + "end": { + "$date": "2021-02-28T06:05:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad1322b0-94cb-40c0-99b3-f408807fbb48", + "start": { + "$date": "2021-02-28T06:05:37.000Z" + }, + "end": { + "$date": "2021-02-28T06:10:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "78b778f6-9282-41c4-a150-995cf80b9847", + "start": { + "$date": "2021-02-28T06:10:37.000Z" + }, + "end": { + "$date": "2021-02-28T06:20:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de26f221-ca1c-4899-a1b6-1b7da6cc970e", + "start": { + "$date": "2021-02-28T06:20:37.000Z" + }, + "end": { + "$date": "2021-02-28T07:16:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2f85634f-7ce5-4ad9-8092-b4126971b061", + "start": { + "$date": "2021-02-28T07:16:37.000Z" + }, + "end": { + "$date": "2021-02-28T07:26:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81146b26-77f2-4cf3-9a12-887340831796", + "start": { + "$date": "2021-02-28T07:26:37.000Z" + }, + "end": { + "$date": "2021-02-28T07:34:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b0f1c94-9fd8-4eed-8c1f-641855ad8825", + "start": { + "$date": "2021-02-28T07:34:37.000Z" + }, + "end": { + "$date": "2021-02-28T07:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "03e25b0d-7d9a-4da0-94ff-605b00a5440f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T04:39:15.000Z" + }, + "end": { + "$date": "2021-02-28T05:55:36.000Z" + }, + "events": [ + { + "uuid": "362231f0-48f2-4b62-85a1-d1af69f0b785", + "start": { + "$date": "2021-02-28T04:39:15.000Z" + }, + "end": { + "$date": "2021-02-28T05:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "52d49808-65e9-4980-a7ce-47cf006ca709", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T04:47:36.000Z" + }, + "end": { + "$date": "2021-02-28T05:23:43.000Z" + }, + "events": [ + { + "uuid": "e3796f8a-0ab0-4ad8-bdf7-ada9e7f91fe6", + "start": { + "$date": "2021-02-28T04:47:36.000Z" + }, + "end": { + "$date": "2021-02-28T05:23:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "401afca8-b259-47c5-94f6-e53debb89970", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-28T04:58:08.000Z" + }, + "end": { + "$date": "2021-02-28T05:25:44.000Z" + }, + "events": [ + { + "uuid": "92b16a6d-d55e-4002-a266-3a8c39061d21", + "start": { + "$date": "2021-02-28T04:58:08.000Z" + }, + "end": { + "$date": "2021-02-28T05:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "08f1da46-540c-4709-8dd1-b16523978a7f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-28T04:59:58.000Z" + }, + "end": { + "$date": "2021-02-28T07:11:03.000Z" + }, + "events": [ + { + "uuid": "5b440579-fea8-4666-9a85-aafedd7ed2d3", + "start": { + "$date": "2021-02-28T04:59:58.000Z" + }, + "end": { + "$date": "2021-02-28T07:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "bcc96674-1c8a-4b37-8122-b4db1a4ba478", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-02-28T05:03:20.000Z" + }, + "end": { + "$date": "2021-02-28T08:57:23.000Z" + }, + "events": [ + { + "uuid": "f9b4be43-d490-4fb7-9b8c-04386603b243", + "start": { + "$date": "2021-02-28T05:03:20.000Z" + }, + "end": { + "$date": "2021-02-28T05:56:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d987f7c-d4e3-4907-9782-58f20d1b44df", + "start": { + "$date": "2021-02-28T05:56:20.000Z" + }, + "end": { + "$date": "2021-02-28T06:05:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2ce7c249-9407-4c45-8900-4d33c6358ffb", + "start": { + "$date": "2021-02-28T06:05:20.000Z" + }, + "end": { + "$date": "2021-02-28T08:57:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecdd9e46-a3ef-4aa6-862a-af16c0820742", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-28T05:34:09.000Z" + }, + "end": { + "$date": "2021-02-28T06:00:45.000Z" + }, + "events": [ + { + "uuid": "228311c8-780e-4850-84f9-35bfffa898d7", + "start": { + "$date": "2021-02-28T05:34:09.000Z" + }, + "end": { + "$date": "2021-02-28T06:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f88294aa-909e-42cb-b21f-c729e568a57c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T06:01:13.000Z" + }, + "end": { + "$date": "2021-02-28T06:28:32.000Z" + }, + "events": [ + { + "uuid": "0eb4a54c-5962-4011-8842-2885c380b8b4", + "start": { + "$date": "2021-02-28T06:01:13.000Z" + }, + "end": { + "$date": "2021-02-28T06:28:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "778f8034-cdda-4c87-9b62-d1cee664c17e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-28T06:15:05.000Z" + }, + "end": { + "$date": "2021-02-28T06:36:51.000Z" + }, + "events": [ + { + "uuid": "2193c257-f226-447c-9ee4-ad75cf2d2bb7", + "start": { + "$date": "2021-02-28T06:15:05.000Z" + }, + "end": { + "$date": "2021-02-28T06:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "05a35509-0339-420b-bcbb-927b5f93e5aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-02-28T06:15:57.000Z" + }, + "end": { + "$date": "2021-02-28T09:01:37.000Z" + }, + "events": [ + { + "uuid": "20ef362e-4d92-42ef-8782-dfb197411709", + "start": { + "$date": "2021-02-28T06:15:57.000Z" + }, + "end": { + "$date": "2021-02-28T09:01:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "33df1662-0c38-4991-858e-4317e3609fac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-28T06:26:47.000Z" + }, + "end": { + "$date": "2021-02-28T08:09:43.000Z" + }, + "events": [ + { + "uuid": "d4aafd03-a024-49ae-b51d-747b0d180949", + "start": { + "$date": "2021-02-28T06:26:47.000Z" + }, + "end": { + "$date": "2021-02-28T08:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b21d2ce9-8c0c-4e2e-a71a-a471d59d04bd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T06:28:45.000Z" + }, + "end": { + "$date": "2021-02-28T07:04:18.000Z" + }, + "events": [ + { + "uuid": "7a083628-47a5-4d8f-9f1d-9b1f0ad98dd7", + "start": { + "$date": "2021-02-28T06:28:45.000Z" + }, + "end": { + "$date": "2021-02-28T07:04:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "210e4e54-36c1-4c64-b98d-c0ee2c29e785", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T06:41:34.000Z" + }, + "end": { + "$date": "2021-02-28T07:17:43.000Z" + }, + "events": [ + { + "uuid": "25501d43-0029-4a4a-ac61-f63c2f9484b1", + "start": { + "$date": "2021-02-28T06:41:34.000Z" + }, + "end": { + "$date": "2021-02-28T07:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf1de0ff-a411-4910-967e-aefba7717341", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-28T06:47:26.000Z" + }, + "end": { + "$date": "2021-02-28T07:29:12.000Z" + }, + "events": [ + { + "uuid": "ac821263-9a59-4a9b-8032-953efa2b0df6", + "start": { + "$date": "2021-02-28T06:47:26.000Z" + }, + "end": { + "$date": "2021-02-28T07:29:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "84686160-ffe6-4a59-b40a-34c17d5cadfe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T07:07:27.000Z" + }, + "end": { + "$date": "2021-02-28T08:17:37.000Z" + }, + "events": [ + { + "uuid": "2ce65d24-8a5d-416b-92bc-e8b7389981c7", + "start": { + "$date": "2021-02-28T07:07:27.000Z" + }, + "end": { + "$date": "2021-02-28T08:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "600771ab-132c-497d-977b-3aee3f69c0d0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T07:07:32.000Z" + }, + "end": { + "$date": "2021-02-28T07:24:09.000Z" + }, + "events": [ + { + "uuid": "a443481c-9b55-4797-b896-f58ca1d7447f", + "start": { + "$date": "2021-02-28T07:07:32.000Z" + }, + "end": { + "$date": "2021-02-28T07:24:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "a5e34dd8-a50b-4fa5-8c38-e0ddc181a3e9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-28T07:11:02.000Z" + }, + "end": { + "$date": "2021-02-28T07:41:36.000Z" + }, + "events": [ + { + "uuid": "1afca17f-0948-4516-bcf4-d74956d5ac38", + "start": { + "$date": "2021-02-28T07:11:02.000Z" + }, + "end": { + "$date": "2021-02-28T07:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ad035c6-0452-45a2-bca1-2767de32090a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-02-28T09:16:00.000Z" + }, + "end": { + "$date": "2021-02-28T09:16:40.000Z" + }, + "events": [ + { + "uuid": "d3c6d607-5750-4277-b0e2-56ff10bd1daf", + "start": { + "$date": "2021-02-28T09:16:00.000Z" + }, + "end": { + "$date": "2021-02-28T09:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "052b62e5-1910-4ad9-b3cc-c0085d988ce6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-28T07:41:51.000Z" + }, + "end": { + "$date": "2021-02-28T09:21:52.000Z" + }, + "events": [ + { + "uuid": "d669ea61-2648-4ac5-a6b7-2b7e8298d083", + "start": { + "$date": "2021-02-28T07:41:51.000Z" + }, + "end": { + "$date": "2021-02-28T09:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9377629a-47ac-4bfb-b665-c77e52b45096", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-28T07:42:24.000Z" + }, + "end": { + "$date": "2021-02-28T09:21:08.000Z" + }, + "events": [ + { + "uuid": "59b4d6d7-9f46-4d48-be80-01fe8d604c05", + "start": { + "$date": "2021-02-28T07:42:24.000Z" + }, + "end": { + "$date": "2021-02-28T09:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c11280c0-4733-4787-960c-938831cafd85", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-02-28T08:36:08.000Z" + }, + "end": { + "$date": "2021-02-28T10:06:31.000Z" + }, + "events": [ + { + "uuid": "d37466ac-4be1-44ce-807d-16c43e44c629", + "start": { + "$date": "2021-02-28T08:36:08.000Z" + }, + "end": { + "$date": "2021-02-28T10:06:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8005aa8d-4c5e-40b4-8982-7cc896aaa5db", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-02-28T09:28:46.000Z" + }, + "end": { + "$date": "2021-02-28T09:51:57.000Z" + }, + "events": [ + { + "uuid": "2a3ec24d-8280-493d-b3c8-f401555a58ea", + "start": { + "$date": "2021-02-28T09:28:46.000Z" + }, + "end": { + "$date": "2021-02-28T09:51:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f4647f31-a921-443d-bfa2-b5c790d663ec", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-28T09:29:32.000Z" + }, + "end": { + "$date": "2021-02-28T09:35:51.000Z" + }, + "events": [ + { + "uuid": "318684de-3234-4b9e-b9d1-8a01e9184e16", + "start": { + "$date": "2021-02-28T09:29:32.000Z" + }, + "end": { + "$date": "2021-02-28T09:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "a5646cb3-43f2-4273-abfc-46eac62d4ca6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T16:03:41.000Z" + }, + "end": { + "$date": "2021-02-28T16:28:56.000Z" + }, + "events": [ + { + "uuid": "0c4efc91-3bb5-4591-a0c0-b10f4ed5b889", + "start": { + "$date": "2021-02-28T16:03:41.000Z" + }, + "end": { + "$date": "2021-02-28T16:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "bd58ae20-f3c5-43be-90f6-b082555656d5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T16:29:11.000Z" + }, + "end": { + "$date": "2021-02-28T16:59:12.000Z" + }, + "events": [ + { + "uuid": "842688b8-f194-4629-a6b8-93ee6d54c40c", + "start": { + "$date": "2021-02-28T16:29:11.000Z" + }, + "end": { + "$date": "2021-02-28T16:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "437bf6fd-3407-4e93-bb6c-f0637554ba96", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T17:19:49.000Z" + }, + "end": { + "$date": "2021-02-28T17:21:39.000Z" + }, + "events": [ + { + "uuid": "dfd12f45-f3b3-4a22-acdf-6ad6c2d0daf2", + "start": { + "$date": "2021-02-28T17:19:49.000Z" + }, + "end": { + "$date": "2021-02-28T17:21:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "56022583-7bf1-4c89-824f-3bc06f270375", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T17:22:09.000Z" + }, + "end": { + "$date": "2021-02-28T17:48:57.000Z" + }, + "events": [ + { + "uuid": "6a718ab8-8f14-4bb4-9560-5334656981e9", + "start": { + "$date": "2021-02-28T17:22:09.000Z" + }, + "end": { + "$date": "2021-02-28T17:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "87943e24-7432-4683-994d-08d2af00e4e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T17:49:10.000Z" + }, + "end": { + "$date": "2021-02-28T18:29:05.000Z" + }, + "events": [ + { + "uuid": "7899f171-5360-423e-8e6a-4f0b0f8cd891", + "start": { + "$date": "2021-02-28T17:49:10.000Z" + }, + "end": { + "$date": "2021-02-28T18:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "415ab0a7-42a3-4e41-befd-96a0d5531822", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T17:50:20.000Z" + }, + "end": { + "$date": "2021-02-28T18:23:11.000Z" + }, + "events": [ + { + "uuid": "6be915dc-c7af-4bbc-b49e-cee044b35369", + "start": { + "$date": "2021-02-28T17:50:20.000Z" + }, + "end": { + "$date": "2021-02-28T18:23:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "608d06df-abbe-44b1-b57f-34c0182c57cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T17:55:56.000Z" + }, + "end": { + "$date": "2021-02-28T18:26:43.000Z" + }, + "events": [ + { + "uuid": "4489290a-1464-4e30-a777-7705f03a9700", + "start": { + "$date": "2021-02-28T17:55:56.000Z" + }, + "end": { + "$date": "2021-02-28T18:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "58342a95-6ed3-4b38-9c10-a811e51dd5d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T18:07:08.000Z" + }, + "end": { + "$date": "2021-02-28T18:17:05.000Z" + }, + "events": [ + { + "uuid": "83a2e8f7-f1dd-4523-bddb-f5023983180f", + "start": { + "$date": "2021-02-28T18:07:08.000Z" + }, + "end": { + "$date": "2021-02-28T18:17:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f47bc862-7865-4997-9393-b6beb9792f0c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T18:24:42.000Z" + }, + "end": { + "$date": "2021-02-28T19:21:01.000Z" + }, + "events": [ + { + "uuid": "5f345bdf-5d84-4806-b48b-d1a2a5fd040f", + "start": { + "$date": "2021-02-28T18:24:42.000Z" + }, + "end": { + "$date": "2021-02-28T19:21:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d58d256b-c04a-4c95-83b9-0024b9917463", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T18:46:23.000Z" + }, + "end": { + "$date": "2021-02-28T18:48:49.000Z" + }, + "events": [ + { + "uuid": "48bc69c6-f7f6-4bd8-96ef-ca65e181dfb0", + "start": { + "$date": "2021-02-28T18:46:23.000Z" + }, + "end": { + "$date": "2021-02-28T18:48:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6d76548-792c-4052-9f1e-58e43853dedc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T18:51:31.000Z" + }, + "end": { + "$date": "2021-02-28T19:27:50.000Z" + }, + "events": [ + { + "uuid": "a5c6ba5f-1f17-4bfe-8138-a67a40e60b75", + "start": { + "$date": "2021-02-28T18:51:31.000Z" + }, + "end": { + "$date": "2021-02-28T19:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d901c40d-cc19-4527-936d-fa3b465b2a48", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T21:15:56.000Z" + }, + "end": { + "$date": "2021-02-28T21:46:23.000Z" + }, + "events": [ + { + "uuid": "c8cf9d36-a71a-41c8-b129-f8c43a07dc2f", + "start": { + "$date": "2021-02-28T21:15:56.000Z" + }, + "end": { + "$date": "2021-02-28T21:33:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a65ab6e7-ab60-46f2-9caf-4d6f0679479c", + "start": { + "$date": "2021-02-28T21:33:56.000Z" + }, + "end": { + "$date": "2021-02-28T21:34:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b8aafe18-d94f-4076-a60c-49f99b8f73d9", + "start": { + "$date": "2021-02-28T21:34:56.000Z" + }, + "end": { + "$date": "2021-02-28T21:53:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6a232d1-8dc5-4d92-8fa1-0e82c0efb132", + "start": { + "$date": "2021-02-28T21:53:56.000Z" + }, + "end": { + "$date": "2021-02-28T21:54:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9de15c2f-7765-4405-a6f7-33caeb3a05b8", + "start": { + "$date": "2021-02-28T21:54:56.000Z" + }, + "end": { + "$date": "2021-02-28T22:04:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e548ac29-2a79-4111-86b6-32ff60a21ed0", + "start": { + "$date": "2021-02-28T22:04:56.000Z" + }, + "end": { + "$date": "2021-02-28T22:45:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4af55014-4e77-47d0-b38d-9a7b5596eae6", + "start": { + "$date": "2021-02-28T22:45:56.000Z" + }, + "end": { + "$date": "2021-02-28T21:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "5aed781d-abba-48fd-b82d-c297333d747a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T19:14:13.000Z" + }, + "end": { + "$date": "2021-02-28T19:27:41.000Z" + }, + "events": [ + { + "uuid": "ab1bd258-eda8-419a-9944-60f81890d421", + "start": { + "$date": "2021-02-28T19:14:13.000Z" + }, + "end": { + "$date": "2021-02-28T19:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "9c27e5aa-9490-4172-9030-482bed2b8a58", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T19:23:31.000Z" + }, + "end": { + "$date": "2021-02-28T21:44:27.000Z" + }, + "events": [ + { + "uuid": "e301e134-c2b0-464f-aab5-008fe54e899b", + "start": { + "$date": "2021-02-28T19:23:31.000Z" + }, + "end": { + "$date": "2021-02-28T20:19:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1354785f-9771-4500-bb4b-fe9eab6174d1", + "start": { + "$date": "2021-02-28T20:19:31.000Z" + }, + "end": { + "$date": "2021-02-28T20:44:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c496b41-8d0a-4f75-8c5e-3b844148bc65", + "start": { + "$date": "2021-02-28T20:44:31.000Z" + }, + "end": { + "$date": "2021-02-28T20:54:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ca858abe-990d-4244-902c-eb7ef5b70142", + "start": { + "$date": "2021-02-28T20:54:31.000Z" + }, + "end": { + "$date": "2021-02-28T21:03:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a26eab09-c633-4150-9543-b65e06cf266f", + "start": { + "$date": "2021-02-28T21:03:31.000Z" + }, + "end": { + "$date": "2021-02-28T21:31:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81c7a3db-80b2-443f-9f7c-eb27474083de", + "start": { + "$date": "2021-02-28T21:31:31.000Z" + }, + "end": { + "$date": "2021-02-28T21:44:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdb8f654-41c9-4e15-b00d-b57a102d2cef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T19:36:40.000Z" + }, + "end": { + "$date": "2021-02-28T20:12:10.000Z" + }, + "events": [ + { + "uuid": "021e3316-701f-45b9-a280-668cd90322ea", + "start": { + "$date": "2021-02-28T19:36:40.000Z" + }, + "end": { + "$date": "2021-02-28T20:12:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5704070d-068a-4132-ae07-148eabbda371", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T21:03:22.000Z" + }, + "end": { + "$date": "2021-02-28T21:27:15.000Z" + }, + "events": [ + { + "uuid": "28fd211d-a56a-42af-94a5-4114fc907149", + "start": { + "$date": "2021-02-28T21:03:22.000Z" + }, + "end": { + "$date": "2021-02-28T21:16:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "382bd859-4676-43ef-9cc3-6c86158d847f", + "start": { + "$date": "2021-02-28T21:16:22.000Z" + }, + "end": { + "$date": "2021-02-28T21:33:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "922cc287-8157-45e7-a0e7-6a232bfe569b", + "start": { + "$date": "2021-02-28T21:33:22.000Z" + }, + "end": { + "$date": "2021-02-28T21:35:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "679dd2ef-09d4-4093-a66b-3fb20538b56e", + "start": { + "$date": "2021-02-28T21:35:22.000Z" + }, + "end": { + "$date": "2021-02-28T21:46:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "110084c6-fb55-41a3-b5a0-0a6e0c711ebd", + "start": { + "$date": "2021-02-28T21:46:22.000Z" + }, + "end": { + "$date": "2021-02-28T21:27:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e3d2e4b-5ff6-434c-9e5a-40bade6e1435", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T21:31:51.000Z" + }, + "end": { + "$date": "2021-02-28T22:00:04.000Z" + }, + "events": [ + { + "uuid": "d49fdc0f-a887-4b10-984e-873335707d02", + "start": { + "$date": "2021-02-28T21:31:51.000Z" + }, + "end": { + "$date": "2021-02-28T22:00:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fa2819ca-6f4f-4106-8b68-a901583e753c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-02-28T21:46:34.000Z" + }, + "end": { + "$date": "2021-02-28T22:18:19.000Z" + }, + "events": [ + { + "uuid": "461aa6fd-2b43-4768-9ae3-74c3e04608eb", + "start": { + "$date": "2021-02-28T21:46:34.000Z" + }, + "end": { + "$date": "2021-02-28T22:18:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63937371-71bc-46c6-aaf7-f5a86caa6b2b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T22:13:14.000Z" + }, + "end": { + "$date": "2021-02-28T22:44:22.000Z" + }, + "events": [ + { + "uuid": "bbb5df74-f863-409f-875c-f2b96454ad80", + "start": { + "$date": "2021-02-28T22:13:14.000Z" + }, + "end": { + "$date": "2021-02-28T22:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a4ddc89f-54ac-45ec-b59a-8de1ddfa350b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-02-28T22:15:34.000Z" + }, + "end": { + "$date": "2021-02-28T23:17:23.000Z" + }, + "events": [ + { + "uuid": "365683f0-28f6-4bc3-8eeb-013cc2ab4be7", + "start": { + "$date": "2021-02-28T22:15:34.000Z" + }, + "end": { + "$date": "2021-02-28T23:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "27ecb6a0-5d51-4f59-8519-3221641c8057", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-02-28T22:16:49.000Z" + }, + "end": { + "$date": "2021-03-01T04:10:38.000Z" + }, + "events": [ + { + "uuid": "0639f68f-0dfc-45c2-819e-b59e17dda39e", + "start": { + "$date": "2021-02-28T22:16:49.000Z" + }, + "end": { + "$date": "2021-03-01T01:06:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "742d3bb5-44ad-4ad2-8cdb-782a405e2269", + "start": { + "$date": "2021-03-01T01:06:49.000Z" + }, + "end": { + "$date": "2021-03-01T01:11:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "748e003b-9701-4b02-a1bc-77232d7518e1", + "start": { + "$date": "2021-03-01T01:11:49.000Z" + }, + "end": { + "$date": "2021-03-01T01:21:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce075d7c-2a92-471d-9a9d-fa80c33fc737", + "start": { + "$date": "2021-03-01T01:21:49.000Z" + }, + "end": { + "$date": "2021-03-01T01:37:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4613dabd-d9b4-4581-ac06-e3d158592702", + "start": { + "$date": "2021-03-01T01:37:49.000Z" + }, + "end": { + "$date": "2021-03-01T04:03:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce7d35a3-7d46-42b3-b6b8-0ad0480e8557", + "start": { + "$date": "2021-03-01T04:03:49.000Z" + }, + "end": { + "$date": "2021-03-01T04:08:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "49de3b20-aeb2-4463-9d05-27abd4fdda92", + "start": { + "$date": "2021-03-01T04:08:49.000Z" + }, + "end": { + "$date": "2021-03-01T04:10:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "f1d68498-0052-4b54-ac21-4838bad02663", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-02-28T22:21:34.000Z" + }, + "end": { + "$date": "2021-03-01T00:08:12.000Z" + }, + "events": [ + { + "uuid": "06369ab9-dcc7-4ffe-ae30-0e29305101d1", + "start": { + "$date": "2021-02-28T22:21:34.000Z" + }, + "end": { + "$date": "2021-03-01T00:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f9fe9c3c-bc81-477c-9b83-e5ba38844bb4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-02-28T22:23:51.000Z" + }, + "end": { + "$date": "2021-03-01T13:53:20.000Z" + }, + "events": [ + { + "uuid": "747722e6-577e-4390-ba2d-9ec3f6704535", + "start": { + "$date": "2021-02-28T22:23:51.000Z" + }, + "end": { + "$date": "2021-03-01T00:16:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85019fdc-1723-42d3-a363-7af8cfcc9b89", + "start": { + "$date": "2021-03-01T00:16:51.000Z" + }, + "end": { + "$date": "2021-03-01T00:51:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f4b9ca16-4387-4934-9a8e-292690e0f860", + "start": { + "$date": "2021-03-01T00:51:51.000Z" + }, + "end": { + "$date": "2021-03-01T01:01:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8b16ea8-a5e4-45c1-b20c-1c08f37555d5", + "start": { + "$date": "2021-03-01T01:01:51.000Z" + }, + "end": { + "$date": "2021-03-01T13:19:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "714a12f6-a410-436b-82ab-988069b304ce", + "start": { + "$date": "2021-03-01T13:19:51.000Z" + }, + "end": { + "$date": "2021-03-01T13:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba081810-248e-4b29-b3fe-81f561b847ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T22:32:54.000Z" + }, + "end": { + "$date": "2021-02-28T22:55:52.000Z" + }, + "events": [ + { + "uuid": "6d704c18-f83a-4c17-a849-8320dea70b41", + "start": { + "$date": "2021-02-28T22:32:54.000Z" + }, + "end": { + "$date": "2021-02-28T22:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10db28f1-a1ee-48af-8874-d548ecd03355", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-02-28T23:09:08.000Z" + }, + "end": { + "$date": "2021-02-28T23:35:15.000Z" + }, + "events": [ + { + "uuid": "f818f675-b05d-4478-80bd-77c6e9c1c136", + "start": { + "$date": "2021-02-28T23:09:08.000Z" + }, + "end": { + "$date": "2021-02-28T23:35:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1870ad14-a0e2-409f-8655-56e5a2c7b83d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-02-28T23:26:29.000Z" + }, + "end": { + "$date": "2021-02-28T23:56:03.000Z" + }, + "events": [ + { + "uuid": "84f0fcf2-ccd1-4c29-82f9-d2bb1a963e0d", + "start": { + "$date": "2021-02-28T23:26:29.000Z" + }, + "end": { + "$date": "2021-02-28T23:56:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d83ac29b-e432-4cc7-90bd-7008a56f32e9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-01T01:33:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:04:25.000Z" + }, + "events": [ + { + "uuid": "bfca216b-132b-4520-bca1-609c653b6e88", + "start": { + "$date": "2021-03-01T01:33:29.000Z" + }, + "end": { + "$date": "2021-03-01T01:44:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f75c09a7-0fe1-44c9-b986-dde30fc2432f", + "start": { + "$date": "2021-03-01T01:44:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:10:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "93e5ecb3-aa1b-43af-9d07-598d9ea4a3d8", + "start": { + "$date": "2021-03-01T02:10:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:32:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2f5744e-6f01-41cd-99bc-a20137f593a0", + "start": { + "$date": "2021-03-01T02:32:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:52:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14ad599f-1210-4fd4-b06f-af8a13fb8948", + "start": { + "$date": "2021-03-01T02:52:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:55:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3305d855-84b5-48e8-9321-b8f7d080b2da", + "start": { + "$date": "2021-03-01T02:55:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:58:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f2adfd0-83b2-43e5-896f-ac2cb1aaaeac", + "start": { + "$date": "2021-03-01T02:58:29.000Z" + }, + "end": { + "$date": "2021-03-01T02:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1cecd285-f126-4b71-ae82-c5a25ececd7d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-01T00:20:50.000Z" + }, + "end": { + "$date": "2021-03-01T02:48:34.000Z" + }, + "events": [ + { + "uuid": "78e74684-965c-4f19-aeb8-569b5b2beda8", + "start": { + "$date": "2021-03-01T00:20:50.000Z" + }, + "end": { + "$date": "2021-03-01T01:31:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29450e80-b3c3-432d-aa37-caf4cfcc2c07", + "start": { + "$date": "2021-03-01T01:31:50.000Z" + }, + "end": { + "$date": "2021-03-01T01:34:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "199c4e7c-8ef8-4a16-83c4-130e4beeaf53", + "start": { + "$date": "2021-03-01T01:34:50.000Z" + }, + "end": { + "$date": "2021-03-01T01:44:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ba49a66-c90a-40f4-b5ee-3ab697347fbb", + "start": { + "$date": "2021-03-01T01:44:50.000Z" + }, + "end": { + "$date": "2021-03-01T01:54:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4ae8466-06b1-4e49-90b1-349e09fd2504", + "start": { + "$date": "2021-03-01T01:54:50.000Z" + }, + "end": { + "$date": "2021-03-01T01:56:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46e22a91-16f6-4456-a1a0-af7b0e8418e0", + "start": { + "$date": "2021-03-01T01:56:50.000Z" + }, + "end": { + "$date": "2021-03-01T02:01:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ac88ef7-f63a-420c-b9d6-05f380eab258", + "start": { + "$date": "2021-03-01T02:01:50.000Z" + }, + "end": { + "$date": "2021-03-01T02:12:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eaf5eae3-8496-423c-bf50-678a7208943f", + "start": { + "$date": "2021-03-01T02:12:50.000Z" + }, + "end": { + "$date": "2021-03-01T02:13:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f9683235-053c-4247-b42f-e8afa739ab31", + "start": { + "$date": "2021-03-01T02:13:50.000Z" + }, + "end": { + "$date": "2021-03-01T02:26:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af7fd6db-5c60-4847-8a8b-789a02ebf410", + "start": { + "$date": "2021-03-01T02:26:50.000Z" + }, + "end": { + "$date": "2021-03-01T02:48:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "659cbafa-4f3c-4c38-a730-f38ee01060fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T01:52:01.000Z" + }, + "end": { + "$date": "2021-03-01T01:52:05.000Z" + }, + "events": [ + { + "uuid": "619ad94d-e8b5-4180-9c06-34a1b1b48639", + "start": { + "$date": "2021-03-01T01:52:01.000Z" + }, + "end": { + "$date": "2021-03-01T01:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b2cfbc31-e246-4b9e-a9ca-ca86b8d21c00", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T00:57:23.000Z" + }, + "end": { + "$date": "2021-03-01T02:31:10.000Z" + }, + "events": [ + { + "uuid": "12cfb63a-2afe-42ee-a8cb-abaf728cb340", + "start": { + "$date": "2021-03-01T00:57:23.000Z" + }, + "end": { + "$date": "2021-03-01T02:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0dc6e434-38e5-4d29-9f52-f59c9bdc5e70", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T01:13:25.000Z" + }, + "end": { + "$date": "2021-03-01T02:14:46.000Z" + }, + "events": [ + { + "uuid": "a4c5d280-735d-4c0a-a0fd-2b7c06fa3364", + "start": { + "$date": "2021-03-01T01:13:25.000Z" + }, + "end": { + "$date": "2021-03-01T02:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ae050a9b-3c9c-4950-8a05-ef58625cf23a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T01:58:36.000Z" + }, + "end": { + "$date": "2021-03-01T01:58:41.000Z" + }, + "events": [ + { + "uuid": "4b471cc8-ac63-4b4d-986c-8bec65988c2c", + "start": { + "$date": "2021-03-01T01:58:36.000Z" + }, + "end": { + "$date": "2021-03-01T01:58:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "3c1d89b4-b4c5-4e13-bc36-b16c9d050f64", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T02:36:33.000Z" + }, + "end": { + "$date": "2021-03-01T02:36:37.000Z" + }, + "events": [ + { + "uuid": "98ea07b1-0fe8-4263-ba56-7fac183bdfb5", + "start": { + "$date": "2021-03-01T02:36:33.000Z" + }, + "end": { + "$date": "2021-03-01T02:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "692c5479-a0d5-4c6a-a12e-840a4be0b728", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-01T02:17:35.000Z" + }, + "end": { + "$date": "2021-03-01T02:53:40.000Z" + }, + "events": [ + { + "uuid": "71e8d777-cef4-4600-8bbc-ea35792399b3", + "start": { + "$date": "2021-03-01T02:17:35.000Z" + }, + "end": { + "$date": "2021-03-01T02:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "26564939-4895-4ee5-9118-9c824de5aa1a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-01T02:27:26.000Z" + }, + "end": { + "$date": "2021-03-01T05:04:51.000Z" + }, + "events": [ + { + "uuid": "45df394f-0ce0-41e5-a925-8fe76ef0bbf0", + "start": { + "$date": "2021-03-01T02:27:26.000Z" + }, + "end": { + "$date": "2021-03-01T03:05:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b53e14d1-c888-49c3-b3bc-ceaf6a79039b", + "start": { + "$date": "2021-03-01T03:05:26.000Z" + }, + "end": { + "$date": "2021-03-01T03:10:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0371e954-f57a-46a3-be12-65c272278521", + "start": { + "$date": "2021-03-01T03:10:26.000Z" + }, + "end": { + "$date": "2021-03-01T03:20:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a273baa-22b7-4ae6-9292-787a1551b15b", + "start": { + "$date": "2021-03-01T03:20:26.000Z" + }, + "end": { + "$date": "2021-03-01T03:29:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1bbc0c37-1988-48aa-ae3d-54189fb24499", + "start": { + "$date": "2021-03-01T03:29:26.000Z" + }, + "end": { + "$date": "2021-03-01T05:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "59e03a09-8939-4c3e-aa1f-71dfe9415390", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T02:32:00.000Z" + }, + "end": { + "$date": "2021-03-01T03:21:48.000Z" + }, + "events": [ + { + "uuid": "e0e181e7-8e40-4b2d-932b-2987bc66a321", + "start": { + "$date": "2021-03-01T02:32:00.000Z" + }, + "end": { + "$date": "2021-03-01T03:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c35eeeb2-e8ef-4ab5-b6c4-d3ce375701a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T02:36:48.000Z" + }, + "end": { + "$date": "2021-03-01T02:39:27.000Z" + }, + "events": [ + { + "uuid": "58c75f64-4a1e-440e-99af-afab98a1a387", + "start": { + "$date": "2021-03-01T02:36:48.000Z" + }, + "end": { + "$date": "2021-03-01T02:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "538021a7-bec7-4a2c-80db-5847dd3c4381", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T02:38:33.000Z" + }, + "end": { + "$date": "2021-03-01T03:25:35.000Z" + }, + "events": [ + { + "uuid": "3bae4d27-e0dd-4cbe-9c29-5221bd4c0640", + "start": { + "$date": "2021-03-01T02:38:33.000Z" + }, + "end": { + "$date": "2021-03-01T03:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "da77181a-4142-460a-94ea-da4ada3c8018", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T02:39:38.000Z" + }, + "end": { + "$date": "2021-03-01T02:42:28.000Z" + }, + "events": [ + { + "uuid": "e6cef558-d921-472d-9c80-fec6a2231f74", + "start": { + "$date": "2021-03-01T02:39:38.000Z" + }, + "end": { + "$date": "2021-03-01T02:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "f71978ff-9af6-4948-8ca9-c707133d2457", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T02:42:38.000Z" + }, + "end": { + "$date": "2021-03-01T02:48:38.000Z" + }, + "events": [ + { + "uuid": "6b787f5f-99d1-482e-93fd-c2271f4ef955", + "start": { + "$date": "2021-03-01T02:42:38.000Z" + }, + "end": { + "$date": "2021-03-01T02:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e89680d0-c353-4924-8acb-15bb751e1f57", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-01T03:45:32.000Z" + }, + "end": { + "$date": "2021-03-01T04:20:01.000Z" + }, + "events": [ + { + "uuid": "5532806a-83f7-4b81-a462-81b7e2f212e4", + "start": { + "$date": "2021-03-01T03:45:32.000Z" + }, + "end": { + "$date": "2021-03-01T03:57:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f21e1677-d97f-4c6b-a8ce-326cd3360196", + "start": { + "$date": "2021-03-01T03:57:32.000Z" + }, + "end": { + "$date": "2021-03-01T04:10:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b046d456-70c3-4eaf-9952-6e2cda28d50d", + "start": { + "$date": "2021-03-01T04:10:32.000Z" + }, + "end": { + "$date": "2021-03-01T04:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0fd63884-55ef-4024-afb6-a56b3aa9ecd4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T03:21:58.000Z" + }, + "end": { + "$date": "2021-03-01T03:51:59.000Z" + }, + "events": [ + { + "uuid": "bf726f25-2b85-4ee6-8279-03c069c2820e", + "start": { + "$date": "2021-03-01T03:21:58.000Z" + }, + "end": { + "$date": "2021-03-01T03:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "824c3c01-5245-456b-89f5-7f1a993f1028", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-01T03:30:23.000Z" + }, + "end": { + "$date": "2021-03-01T05:27:48.000Z" + }, + "events": [ + { + "uuid": "745cadb6-9399-4a78-af77-a6ce8effe16c", + "start": { + "$date": "2021-03-01T03:30:23.000Z" + }, + "end": { + "$date": "2021-03-01T05:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebbd7fde-2a0f-473a-af90-1f0f37c1258a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-01T03:45:31.000Z" + }, + "end": { + "$date": "2021-03-01T04:19:53.000Z" + }, + "events": [ + { + "uuid": "a517cb52-ede7-4675-864a-1a449b6977c3", + "start": { + "$date": "2021-03-01T03:45:31.000Z" + }, + "end": { + "$date": "2021-03-01T04:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7ca77870-42d6-4a0f-95af-db69e39b8b9d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T03:52:14.000Z" + }, + "end": { + "$date": "2021-03-01T07:49:00.000Z" + }, + "events": [ + { + "uuid": "0ae2fdb6-457d-4e42-a878-ad5a3266124e", + "start": { + "$date": "2021-03-01T03:52:14.000Z" + }, + "end": { + "$date": "2021-03-01T07:49:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "525d349d-82b4-4c79-a8e9-39cfcfa1632d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-01T04:26:44.000Z" + }, + "end": { + "$date": "2021-03-01T04:49:46.000Z" + }, + "events": [ + { + "uuid": "f6fb2782-b07f-40b0-9d98-1e00d2944546", + "start": { + "$date": "2021-03-01T04:26:44.000Z" + }, + "end": { + "$date": "2021-03-01T04:49:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17e9d8ae-6492-4c27-87e8-cfc229895db8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-01T04:25:37.000Z" + }, + "end": { + "$date": "2021-03-01T04:49:43.000Z" + }, + "events": [ + { + "uuid": "cbfc88f5-a708-410c-998f-954f9bca3ad9", + "start": { + "$date": "2021-03-01T04:25:37.000Z" + }, + "end": { + "$date": "2021-03-01T04:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "a930dabe-5ec1-406f-a759-78b63d6d2724", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T04:24:34.000Z" + }, + "end": { + "$date": "2021-03-01T06:26:51.000Z" + }, + "events": [ + { + "uuid": "be24adf3-6c5e-4c5a-97b7-5c80c4fa8b3a", + "start": { + "$date": "2021-03-01T04:24:34.000Z" + }, + "end": { + "$date": "2021-03-01T06:26:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e16bf72e-4cd8-41cf-8743-6f256f1cc533", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-01T04:38:17.000Z" + }, + "end": { + "$date": "2021-03-01T05:31:28.000Z" + }, + "events": [ + { + "uuid": "435c1fb0-29fa-4eb9-9ca7-6caafe53791c", + "start": { + "$date": "2021-03-01T04:38:17.000Z" + }, + "end": { + "$date": "2021-03-01T05:31:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2aa48f0-4027-4eca-85f5-27b20e157777", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-01T04:54:00.000Z" + }, + "end": { + "$date": "2021-03-01T05:41:11.000Z" + }, + "events": [ + { + "uuid": "574c1c31-87b3-4afd-bc87-c8dab9d96b67", + "start": { + "$date": "2021-03-01T04:54:00.000Z" + }, + "end": { + "$date": "2021-03-01T05:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "169c66d6-f10e-432e-91d8-69521d9b7b33", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-01T04:54:18.000Z" + }, + "end": { + "$date": "2021-03-01T05:40:59.000Z" + }, + "events": [ + { + "uuid": "6ddc97db-f5c2-44ae-8744-0bef6e6785c7", + "start": { + "$date": "2021-03-01T04:54:18.000Z" + }, + "end": { + "$date": "2021-03-01T05:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6dea02e2-7daf-4411-8731-cc8d48360d24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-01T05:12:49.000Z" + }, + "end": { + "$date": "2021-03-01T06:33:42.000Z" + }, + "events": [ + { + "uuid": "ae881d75-0d5a-4329-8067-98221424e321", + "start": { + "$date": "2021-03-01T05:12:49.000Z" + }, + "end": { + "$date": "2021-03-01T06:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "acab43b4-5df3-469a-b772-4d3038eda99e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-01T05:31:50.000Z" + }, + "end": { + "$date": "2021-03-01T06:14:03.000Z" + }, + "events": [ + { + "uuid": "3183f811-4c47-4da4-958b-864d4a1ea358", + "start": { + "$date": "2021-03-01T05:31:50.000Z" + }, + "end": { + "$date": "2021-03-01T06:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "26d9a180-11ce-4874-9d9f-12e59576e768", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-01T06:34:32.000Z" + }, + "end": { + "$date": "2021-03-01T06:39:48.000Z" + }, + "events": [ + { + "uuid": "06250c4f-3b05-4df7-ab89-be22748cd68b", + "start": { + "$date": "2021-03-01T06:34:32.000Z" + }, + "end": { + "$date": "2021-03-01T06:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "38d9a99d-e02a-402a-99f7-3024c69e7911", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-01T06:40:48.000Z" + }, + "end": { + "$date": "2021-03-01T06:49:43.000Z" + }, + "events": [ + { + "uuid": "873121d1-bc5b-4f1d-98fe-2753eb29c6b6", + "start": { + "$date": "2021-03-01T06:40:48.000Z" + }, + "end": { + "$date": "2021-03-01T06:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e97a0ef4-3dee-4f4c-9a36-ee75d2545d2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T06:45:42.000Z" + }, + "end": { + "$date": "2021-03-01T06:59:04.000Z" + }, + "events": [ + { + "uuid": "7f07dc35-c746-47f6-932e-c3bc47312d39", + "start": { + "$date": "2021-03-01T06:45:42.000Z" + }, + "end": { + "$date": "2021-03-01T06:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7a80d48-fca5-4939-9c36-616533650018", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T14:41:36.000Z" + }, + "end": { + "$date": "2021-03-01T15:11:33.000Z" + }, + "events": [ + { + "uuid": "250f685a-9e7b-42c9-8a59-d08b36fa6b36", + "start": { + "$date": "2021-03-01T14:41:36.000Z" + }, + "end": { + "$date": "2021-03-01T15:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9518dc77-4578-4069-8187-0be5b4dc853e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T15:14:07.000Z" + }, + "end": { + "$date": "2021-03-01T15:44:20.000Z" + }, + "events": [ + { + "uuid": "70b3bbba-0284-4630-b4fb-741a83a952f2", + "start": { + "$date": "2021-03-01T15:14:07.000Z" + }, + "end": { + "$date": "2021-03-01T15:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "29722366-1f77-434f-9575-5a880eb68f34", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T15:20:34.000Z" + }, + "end": { + "$date": "2021-03-01T15:45:50.000Z" + }, + "events": [ + { + "uuid": "940cf906-b8af-4cae-8dd0-264849fc15bd", + "start": { + "$date": "2021-03-01T15:20:34.000Z" + }, + "end": { + "$date": "2021-03-01T15:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1c4a3e24-1479-4445-a2d3-294d2eefa042", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T15:35:10.000Z" + }, + "end": { + "$date": "2021-03-01T15:36:40.000Z" + }, + "events": [ + { + "uuid": "c59d211d-78f5-47bc-92ce-bb25d0f574b9", + "start": { + "$date": "2021-03-01T15:35:10.000Z" + }, + "end": { + "$date": "2021-03-01T15:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b287e0c6-8cba-496a-84ca-d9633627c41c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T15:46:00.000Z" + }, + "end": { + "$date": "2021-03-01T17:19:16.000Z" + }, + "events": [ + { + "uuid": "37c475dd-b14a-4a1b-9183-69fc2fbf16f0", + "start": { + "$date": "2021-03-01T15:46:00.000Z" + }, + "end": { + "$date": "2021-03-01T15:56:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0daf311b-032a-4482-b958-bc443700751b", + "start": { + "$date": "2021-03-01T15:56:00.000Z" + }, + "end": { + "$date": "2021-03-01T16:01:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0bb2e481-29fc-4885-a492-781745bde1de", + "start": { + "$date": "2021-03-01T16:01:00.000Z" + }, + "end": { + "$date": "2021-03-01T16:11:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a45ce0d5-2215-4f87-a273-f249dcd4ac00", + "start": { + "$date": "2021-03-01T16:11:00.000Z" + }, + "end": { + "$date": "2021-03-01T16:13:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5aceb541-df21-4225-b178-ed5516dd149e", + "start": { + "$date": "2021-03-01T16:13:00.000Z" + }, + "end": { + "$date": "2021-03-01T17:18:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a87bd089-e2cb-4fc2-a855-573c42e91a6b", + "start": { + "$date": "2021-03-01T17:18:00.000Z" + }, + "end": { + "$date": "2021-03-01T17:19:16.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1bd39df1-5aba-4568-9a4c-ed36c780f1a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T16:18:41.000Z" + }, + "end": { + "$date": "2021-03-01T16:52:18.000Z" + }, + "events": [ + { + "uuid": "50c3a184-0b8c-44da-8067-d0ddf2ac2da1", + "start": { + "$date": "2021-03-01T16:18:41.000Z" + }, + "end": { + "$date": "2021-03-01T16:52:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ff9866d8-ef67-42c3-8a49-834d4a9c94ce", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T17:02:37.000Z" + }, + "end": { + "$date": "2021-03-01T17:05:07.000Z" + }, + "events": [ + { + "uuid": "13101595-e0e9-45db-9fa0-a335fb2e3363", + "start": { + "$date": "2021-03-01T17:02:37.000Z" + }, + "end": { + "$date": "2021-03-01T17:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dafb462d-2650-4a45-b11b-4a196e2478d1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T17:20:44.000Z" + }, + "end": { + "$date": "2021-03-01T19:06:28.000Z" + }, + "events": [ + { + "uuid": "f280e029-f8cf-4153-a9df-00dc94d8e93f", + "start": { + "$date": "2021-03-01T17:20:44.000Z" + }, + "end": { + "$date": "2021-03-01T19:06:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "864f28bd-12a0-495b-9740-11f3fe4603a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T17:21:11.000Z" + }, + "end": { + "$date": "2021-03-01T19:05:02.000Z" + }, + "events": [ + { + "uuid": "fd37f1b6-72cd-42d1-b63e-2782a3d4079a", + "start": { + "$date": "2021-03-01T17:21:11.000Z" + }, + "end": { + "$date": "2021-03-01T18:44:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fde87305-e3c6-43fd-bb2b-b7308d4697e0", + "start": { + "$date": "2021-03-01T18:44:11.000Z" + }, + "end": { + "$date": "2021-03-01T18:49:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54a32fb0-3419-4a92-89fe-70e67a111b99", + "start": { + "$date": "2021-03-01T18:49:11.000Z" + }, + "end": { + "$date": "2021-03-01T18:59:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d2158928-60fa-4063-b37a-02394897e0ff", + "start": { + "$date": "2021-03-01T18:59:11.000Z" + }, + "end": { + "$date": "2021-03-01T19:05:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46d37259-020c-4e76-aa9e-ed3bf7174c98", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T17:38:41.000Z" + }, + "end": { + "$date": "2021-03-01T18:08:58.000Z" + }, + "events": [ + { + "uuid": "2e68c7e0-7db5-4d31-a93e-442db15c2b9e", + "start": { + "$date": "2021-03-01T17:38:41.000Z" + }, + "end": { + "$date": "2021-03-01T18:08:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e4c1c078-9d06-475e-be47-2e5007f61386", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-01T18:12:46.000Z" + }, + "end": { + "$date": "2021-03-01T22:39:01.000Z" + }, + "events": [ + { + "uuid": "723e1926-d617-41b8-b527-39704da13d30", + "start": { + "$date": "2021-03-01T18:12:46.000Z" + }, + "end": { + "$date": "2021-03-01T22:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "890a1743-3c07-4561-b411-092160806548", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T19:05:57.000Z" + }, + "end": { + "$date": "2021-03-01T20:38:30.000Z" + }, + "events": [ + { + "uuid": "ffe56d18-263d-4c6f-98cb-072c20432876", + "start": { + "$date": "2021-03-01T19:05:57.000Z" + }, + "end": { + "$date": "2021-03-01T20:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "de586030-42fb-4aba-983a-e012cb74f1f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T19:06:53.000Z" + }, + "end": { + "$date": "2021-03-01T21:50:56.000Z" + }, + "events": [ + { + "uuid": "35de5a23-3cc9-4b60-b603-b78bc28ecfe4", + "start": { + "$date": "2021-03-01T19:06:53.000Z" + }, + "end": { + "$date": "2021-03-01T20:45:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a2c856a-a432-4b2e-a775-e4df6f4b6047", + "start": { + "$date": "2021-03-01T20:45:53.000Z" + }, + "end": { + "$date": "2021-03-01T21:22:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f4fc4374-71dc-4314-a38a-31832386ad52", + "start": { + "$date": "2021-03-01T21:22:53.000Z" + }, + "end": { + "$date": "2021-03-01T21:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "593bfa68-18fb-402c-9923-7b8302ce2543", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T19:51:52.000Z" + }, + "end": { + "$date": "2021-03-01T20:18:25.000Z" + }, + "events": [ + { + "uuid": "d3468179-931a-4ba2-8262-add87380593d", + "start": { + "$date": "2021-03-01T19:51:52.000Z" + }, + "end": { + "$date": "2021-03-01T20:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8f0ac9d-4753-4fba-8786-151cee68d0f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T20:21:24.000Z" + }, + "end": { + "$date": "2021-03-01T20:47:56.000Z" + }, + "events": [ + { + "uuid": "429ea651-7373-4ccc-969f-f4462d8c8cda", + "start": { + "$date": "2021-03-01T20:21:24.000Z" + }, + "end": { + "$date": "2021-03-01T20:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "db7beedc-0a8d-4c47-8026-bccfcf42e8ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T21:46:23.000Z" + }, + "end": { + "$date": "2021-03-01T22:02:19.000Z" + }, + "events": [ + { + "uuid": "77f25ccd-3d73-4afa-b677-7c66971bd673", + "start": { + "$date": "2021-03-01T21:46:23.000Z" + }, + "end": { + "$date": "2021-03-01T22:02:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "46bd8ad8-d835-46d0-89e5-88c5429e295d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-01T21:51:56.000Z" + }, + "end": { + "$date": "2021-03-02T02:12:28.000Z" + }, + "events": [ + { + "uuid": "a9ba3682-8dd6-496f-a100-60986068e6da", + "start": { + "$date": "2021-03-01T21:51:56.000Z" + }, + "end": { + "$date": "2021-03-02T02:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7ef4bd48-b5cb-4605-ba35-d4cd9553ae67", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-01T22:02:29.000Z" + }, + "end": { + "$date": "2021-03-02T00:13:44.000Z" + }, + "events": [ + { + "uuid": "9af46966-e06b-40a1-8618-4bd86a52d7e1", + "start": { + "$date": "2021-03-01T22:02:29.000Z" + }, + "end": { + "$date": "2021-03-02T00:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a40e2268-48ad-45bf-a856-785c0675c6d1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-01T22:39:26.000Z" + }, + "end": { + "$date": "2021-03-01T23:34:23.000Z" + }, + "events": [ + { + "uuid": "97f4987e-fa22-4d22-a07c-9cfa123cee36", + "start": { + "$date": "2021-03-01T22:39:26.000Z" + }, + "end": { + "$date": "2021-03-01T23:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6c2f37e2-e084-48e2-b716-02432e63a013", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-01T23:57:42.000Z" + }, + "end": { + "$date": "2021-03-01T23:58:58.000Z" + }, + "events": [ + { + "uuid": "3551eed3-8f98-4e10-90bd-09a986fb862d", + "start": { + "$date": "2021-03-01T23:57:42.000Z" + }, + "end": { + "$date": "2021-03-01T23:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "34a12441-b63c-4f52-998d-8325475c75d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T01:28:11.000Z" + }, + "end": { + "$date": "2021-03-02T01:31:37.000Z" + }, + "events": [ + { + "uuid": "b63bb503-6682-4867-82d4-37a177e142cd", + "start": { + "$date": "2021-03-02T01:28:11.000Z" + }, + "end": { + "$date": "2021-03-02T01:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f036e4aa-2176-4b43-9899-05ee12e4bcb2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-02T00:09:26.000Z" + }, + "end": { + "$date": "2021-03-02T00:39:47.000Z" + }, + "events": [ + { + "uuid": "c243bae8-2190-4332-ac63-39b9face1a5e", + "start": { + "$date": "2021-03-02T00:09:26.000Z" + }, + "end": { + "$date": "2021-03-02T00:39:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "80e0e0d7-adc1-46ad-8074-9949f525525f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-02T00:38:49.000Z" + }, + "end": { + "$date": "2021-03-02T01:12:04.000Z" + }, + "events": [ + { + "uuid": "dca12aa0-db83-429b-8ffb-b4f46f0d3a0e", + "start": { + "$date": "2021-03-02T00:38:49.000Z" + }, + "end": { + "$date": "2021-03-02T01:12:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5aab0779-a769-4ae5-a10e-77f6e2e97f2b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-02T00:42:12.000Z" + }, + "end": { + "$date": "2021-03-02T03:49:59.000Z" + }, + "events": [ + { + "uuid": "c81d66b6-aa1c-4335-b765-ebb225dcc62e", + "start": { + "$date": "2021-03-02T00:42:12.000Z" + }, + "end": { + "$date": "2021-03-02T02:30:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3e1bce5-7e7b-4d71-b191-d01d5f1b3d0a", + "start": { + "$date": "2021-03-02T02:30:12.000Z" + }, + "end": { + "$date": "2021-03-02T02:31:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "585942c4-bb61-4228-8bee-ce85a40058b0", + "start": { + "$date": "2021-03-02T02:31:12.000Z" + }, + "end": { + "$date": "2021-03-02T03:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ef3bd9f6-4ad6-458b-9c51-79827187829e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-02T01:02:15.000Z" + }, + "end": { + "$date": "2021-03-02T02:12:30.000Z" + }, + "events": [ + { + "uuid": "8fb53178-9996-401b-83a7-6e2a2be4b777", + "start": { + "$date": "2021-03-02T01:02:15.000Z" + }, + "end": { + "$date": "2021-03-02T02:12:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4de323af-8b74-42d4-bac4-07f2dbd72606", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-02T01:23:35.000Z" + }, + "end": { + "$date": "2021-03-02T01:33:56.000Z" + }, + "events": [ + { + "uuid": "1a1299b6-eb6d-46e6-9814-0c61b32374ce", + "start": { + "$date": "2021-03-02T01:23:35.000Z" + }, + "end": { + "$date": "2021-03-02T01:33:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "06a7bc6b-f13b-4a23-9d3f-bdfad29de325", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-02T01:39:45.000Z" + }, + "end": { + "$date": "2021-03-02T02:36:31.000Z" + }, + "events": [ + { + "uuid": "c7202d28-87db-4efb-be32-d73545cae963", + "start": { + "$date": "2021-03-02T01:39:45.000Z" + }, + "end": { + "$date": "2021-03-02T02:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d2c6b74c-034e-4316-98c0-19e6c4b2a697", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-02T02:52:00.000Z" + }, + "end": { + "$date": "2021-03-02T04:04:54.000Z" + }, + "events": [ + { + "uuid": "32269843-6055-4305-8f0e-b94dd2e8be1f", + "start": { + "$date": "2021-03-02T02:52:00.000Z" + }, + "end": { + "$date": "2021-03-02T04:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "8a441a2c-4734-4b15-bad4-542a14a93933", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-02T02:54:55.000Z" + }, + "end": { + "$date": "2021-03-02T03:06:00.000Z" + }, + "events": [ + { + "uuid": "f585564d-94c0-4fa7-957f-5a2b8ee4c494", + "start": { + "$date": "2021-03-02T02:54:55.000Z" + }, + "end": { + "$date": "2021-03-02T03:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3e7abcea-7fe2-434e-ad5a-34509f366207", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-02T03:06:10.000Z" + }, + "end": { + "$date": "2021-03-02T04:22:22.000Z" + }, + "events": [ + { + "uuid": "0525df97-f5d2-4b99-8022-412f4afbae2d", + "start": { + "$date": "2021-03-02T03:06:10.000Z" + }, + "end": { + "$date": "2021-03-02T04:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "838419f4-acd5-4cfa-81c0-88eb3a2fb7b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-02T03:20:13.000Z" + }, + "end": { + "$date": "2021-03-02T04:23:50.000Z" + }, + "events": [ + { + "uuid": "d2b1a1c5-fd7e-4402-a8de-dd2726ec66c0", + "start": { + "$date": "2021-03-02T03:20:13.000Z" + }, + "end": { + "$date": "2021-03-02T04:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "34c5157c-a91f-4bf9-a2c7-dd6af564d299", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-02T03:47:53.000Z" + }, + "end": { + "$date": "2021-03-02T04:49:12.000Z" + }, + "events": [ + { + "uuid": "7c3988f7-aa8b-475a-8499-394c8fe35feb", + "start": { + "$date": "2021-03-02T03:47:53.000Z" + }, + "end": { + "$date": "2021-03-02T04:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d6b2e8e4-e176-4760-a484-1b04d9312eb2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T04:21:07.000Z" + }, + "end": { + "$date": "2021-03-02T05:34:24.000Z" + }, + "events": [ + { + "uuid": "8b598c54-9678-4e8d-81e1-7ed3fb2421bd", + "start": { + "$date": "2021-03-02T04:21:07.000Z" + }, + "end": { + "$date": "2021-03-02T05:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1702fbd3-6a7a-4d1e-a565-81d76dbe4249", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-02T04:24:45.000Z" + }, + "end": { + "$date": "2021-03-02T04:32:42.000Z" + }, + "events": [ + { + "uuid": "af59199d-6a04-4c47-bd52-8a0a33af8f22", + "start": { + "$date": "2021-03-02T04:24:45.000Z" + }, + "end": { + "$date": "2021-03-02T04:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6e8fe771-4b46-47ac-8993-84b24ba15560", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-02T04:25:50.000Z" + }, + "end": { + "$date": "2021-03-02T05:36:53.000Z" + }, + "events": [ + { + "uuid": "ce8641c8-2c98-4f8f-a004-d39cf2eae9b3", + "start": { + "$date": "2021-03-02T04:25:50.000Z" + }, + "end": { + "$date": "2021-03-02T05:36:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "126580df-62fd-435f-9a6f-2158ab0903bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-02T04:33:07.000Z" + }, + "end": { + "$date": "2021-03-02T05:04:16.000Z" + }, + "events": [ + { + "uuid": "c63478b3-e47a-4a62-aead-7604dc9e3813", + "start": { + "$date": "2021-03-02T04:33:07.000Z" + }, + "end": { + "$date": "2021-03-02T05:04:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5733e685-9df1-431c-99e5-c7bcd8f475dc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-02T04:39:32.000Z" + }, + "end": { + "$date": "2021-03-02T05:22:19.000Z" + }, + "events": [ + { + "uuid": "788c242c-2fb7-446d-bd3a-fd6fffff7b4f", + "start": { + "$date": "2021-03-02T04:39:32.000Z" + }, + "end": { + "$date": "2021-03-02T05:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e47717c0-3952-454b-b1a0-0323e9c3a1a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-02T06:18:37.000Z" + }, + "end": { + "$date": "2021-03-02T07:05:44.000Z" + }, + "events": [ + { + "uuid": "aff05412-90f4-4f7a-90fa-c3ae1795617f", + "start": { + "$date": "2021-03-02T06:18:37.000Z" + }, + "end": { + "$date": "2021-03-02T07:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fa5a65b7-4e4d-4fb5-98b6-abb3ee2bc3e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-02T05:06:12.000Z" + }, + "end": { + "$date": "2021-03-02T06:02:04.000Z" + }, + "events": [ + { + "uuid": "a1ebef9b-34b2-4bee-81fc-ee5b3c3a7fb2", + "start": { + "$date": "2021-03-02T05:06:12.000Z" + }, + "end": { + "$date": "2021-03-02T06:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "058b7d8f-90ec-4e55-9052-db2700e1d2ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-02T06:00:13.000Z" + }, + "end": { + "$date": "2021-03-02T07:47:47.000Z" + }, + "events": [ + { + "uuid": "0bd62bf9-4c81-4a9b-9d85-1cc3790c8dbf", + "start": { + "$date": "2021-03-02T06:00:13.000Z" + }, + "end": { + "$date": "2021-03-02T07:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "cec1f0f2-8d01-4d27-aeaa-907c2a12bdbf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-02T05:36:49.000Z" + }, + "end": { + "$date": "2021-03-02T05:38:34.000Z" + }, + "events": [ + { + "uuid": "e2eaea44-40b3-4c1a-bcfc-e5a61d79f9e9", + "start": { + "$date": "2021-03-02T05:36:49.000Z" + }, + "end": { + "$date": "2021-03-02T05:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4fdf2586-babe-4e40-b419-eea1357f78a4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-02T06:10:23.000Z" + }, + "end": { + "$date": "2021-03-02T06:18:39.000Z" + }, + "events": [ + { + "uuid": "fbc53885-7588-4aa5-a4bf-cecad926949f", + "start": { + "$date": "2021-03-02T06:10:23.000Z" + }, + "end": { + "$date": "2021-03-02T06:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f07226a1-4cd2-4e25-b7a9-c3494bab0ab8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-02T06:44:18.000Z" + }, + "end": { + "$date": "2021-03-02T07:32:00.000Z" + }, + "events": [ + { + "uuid": "a5798c19-0ddb-4135-bedb-05a78f434361", + "start": { + "$date": "2021-03-02T06:44:18.000Z" + }, + "end": { + "$date": "2021-03-02T07:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45ccb9fb-0bd5-4bc5-98a3-05c098eda5a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T16:38:15.000Z" + }, + "end": { + "$date": "2021-03-02T17:07:42.000Z" + }, + "events": [ + { + "uuid": "3ee2836c-b23d-4c0b-9871-5c9debf21d5a", + "start": { + "$date": "2021-03-02T16:38:15.000Z" + }, + "end": { + "$date": "2021-03-02T17:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dafee7e1-5842-4ab5-91dc-b78dbd0ff240", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T17:16:07.000Z" + }, + "end": { + "$date": "2021-03-02T17:53:30.000Z" + }, + "events": [ + { + "uuid": "b276d0bd-6c25-49e0-a386-d9d8689029cc", + "start": { + "$date": "2021-03-02T17:16:07.000Z" + }, + "end": { + "$date": "2021-03-02T17:53:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "360249da-03c2-4f25-9329-1c3094563659", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-02T17:51:30.000Z" + }, + "end": { + "$date": "2021-03-02T17:54:15.000Z" + }, + "events": [ + { + "uuid": "a1404d1a-98df-49f0-a426-3f9a990e7afb", + "start": { + "$date": "2021-03-02T17:51:30.000Z" + }, + "end": { + "$date": "2021-03-02T17:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1fb24153-b93c-4418-bc28-3cd86fc4f2f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-02T18:24:13.000Z" + }, + "end": { + "$date": "2021-03-02T18:53:56.000Z" + }, + "events": [ + { + "uuid": "f7cff1d1-59a2-4ada-afa1-8c1a92f3d54e", + "start": { + "$date": "2021-03-02T18:24:13.000Z" + }, + "end": { + "$date": "2021-03-02T18:53:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e10f3d6e-5cdc-4679-b5d1-c44e515a11d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T18:25:12.000Z" + }, + "end": { + "$date": "2021-03-02T18:55:53.000Z" + }, + "events": [ + { + "uuid": "75b25150-bad9-4844-ad55-20c294e285e4", + "start": { + "$date": "2021-03-02T18:25:12.000Z" + }, + "end": { + "$date": "2021-03-02T18:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7edd0ee6-46ba-4bc2-8ada-5d45af708119", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-02T19:24:31.000Z" + }, + "end": { + "$date": "2021-03-02T19:24:28.000Z" + }, + "events": [ + { + "uuid": "73f6a162-308f-4324-b511-1726c4f6dc6b", + "start": { + "$date": "2021-03-02T19:24:31.000Z" + }, + "end": { + "$date": "2021-03-02T19:24:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "46b0adcd-b0bc-4cc9-958a-8b17a5f832ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-02T19:24:41.000Z" + }, + "end": { + "$date": "2021-03-02T19:26:29.000Z" + }, + "events": [ + { + "uuid": "ff8dc443-88a6-43fd-91d3-55f01a4570a6", + "start": { + "$date": "2021-03-02T19:24:41.000Z" + }, + "end": { + "$date": "2021-03-02T19:26:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4fc5ad7-c472-4d05-979b-8dba04aa8d7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T20:12:14.000Z" + }, + "end": { + "$date": "2021-03-02T20:43:45.000Z" + }, + "events": [ + { + "uuid": "28a10982-cfb3-4158-9409-16174a743121", + "start": { + "$date": "2021-03-02T20:12:14.000Z" + }, + "end": { + "$date": "2021-03-02T20:43:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80c39dd9-e8ac-4d15-992f-f322b26688f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-02T20:45:41.000Z" + }, + "end": { + "$date": "2021-03-02T21:19:57.000Z" + }, + "events": [ + { + "uuid": "460a8e69-0e16-4098-aa27-986f3c5a0174", + "start": { + "$date": "2021-03-02T20:45:41.000Z" + }, + "end": { + "$date": "2021-03-02T21:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3b841e45-66a9-4cdf-83f0-52c640be583c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-02T21:09:41.000Z" + }, + "end": { + "$date": "2021-03-02T23:09:12.000Z" + }, + "events": [ + { + "uuid": "981e7a2c-eb67-4e19-a5a0-8e59374f0cdf", + "start": { + "$date": "2021-03-02T21:09:41.000Z" + }, + "end": { + "$date": "2021-03-02T23:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f9be094c-07c7-48c4-9077-b4bc05c24fcc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-02T22:14:15.000Z" + }, + "end": { + "$date": "2021-03-02T22:56:58.000Z" + }, + "events": [ + { + "uuid": "00f4f226-6128-4782-950b-64d166522f97", + "start": { + "$date": "2021-03-02T22:14:15.000Z" + }, + "end": { + "$date": "2021-03-02T22:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1526586b-0ec3-45ee-9839-d11968c6c04f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-02T22:51:26.000Z" + }, + "end": { + "$date": "2021-03-03T02:57:01.000Z" + }, + "events": [ + { + "uuid": "29ed7754-2e8f-4752-9023-80e5b52f3d9f", + "start": { + "$date": "2021-03-02T22:51:26.000Z" + }, + "end": { + "$date": "2021-03-03T01:24:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41307cdd-729b-4af9-b7ba-b47e1805961a", + "start": { + "$date": "2021-03-03T01:24:26.000Z" + }, + "end": { + "$date": "2021-03-03T01:29:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3435f5bb-c4f5-4574-8140-4ce51e8f0167", + "start": { + "$date": "2021-03-03T01:29:26.000Z" + }, + "end": { + "$date": "2021-03-03T01:48:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3603b673-a4db-40b2-8bb2-567732cfba3a", + "start": { + "$date": "2021-03-03T01:48:26.000Z" + }, + "end": { + "$date": "2021-03-03T01:49:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f5c48c25-db7b-4dc4-bd6f-f7ed15a6a724", + "start": { + "$date": "2021-03-03T01:49:26.000Z" + }, + "end": { + "$date": "2021-03-03T02:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e5d563dc-ee98-48c5-a250-c38374e36117", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-02T22:57:28.000Z" + }, + "end": { + "$date": "2021-03-03T00:43:20.000Z" + }, + "events": [ + { + "uuid": "92d41f0f-8a0f-49fb-901f-1b48d5ca382a", + "start": { + "$date": "2021-03-02T22:57:28.000Z" + }, + "end": { + "$date": "2021-03-03T00:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d85dfdf8-bf28-4585-b45d-28084fe859e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-03T00:40:06.000Z" + }, + "end": { + "$date": "2021-03-03T01:12:44.000Z" + }, + "events": [ + { + "uuid": "b6fe9636-1f77-4b8f-a4c5-b39dc469429e", + "start": { + "$date": "2021-03-03T00:40:06.000Z" + }, + "end": { + "$date": "2021-03-03T01:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "72498dfa-8ad7-4989-9636-cf3300192e7c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-03T00:58:11.000Z" + }, + "end": { + "$date": "2021-03-03T03:01:40.000Z" + }, + "events": [ + { + "uuid": "356f9c34-ba1d-40cb-9f9d-8b55e1f3fa7f", + "start": { + "$date": "2021-03-03T00:58:11.000Z" + }, + "end": { + "$date": "2021-03-03T03:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bef4ba05-1af3-496b-95d0-b48b8c8c1b27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-03T01:04:42.000Z" + }, + "end": { + "$date": "2021-03-03T02:25:37.000Z" + }, + "events": [ + { + "uuid": "9b338bf8-38e1-41a2-9a6a-941bf1e723dd", + "start": { + "$date": "2021-03-03T01:04:42.000Z" + }, + "end": { + "$date": "2021-03-03T02:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "389bdc94-350f-4ea7-b7f2-84c96eb3df89", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-03T01:37:24.000Z" + }, + "end": { + "$date": "2021-03-03T01:51:35.000Z" + }, + "events": [ + { + "uuid": "0021911a-3583-4ad7-9162-fce8e9080162", + "start": { + "$date": "2021-03-03T01:37:24.000Z" + }, + "end": { + "$date": "2021-03-03T01:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "884d4916-7882-4868-914d-17c3c3857f77", + "uuid": "87904f01-b119-43b7-8f8b-3bae6b89af2e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-03T01:32:34.000Z" + }, + "end": { + "$date": "2021-03-03T03:37:48.000Z" + }, + "events": [ + { + "uuid": "b22ea15f-7923-4d39-8103-4f8f6eda985e", + "start": { + "$date": "2021-03-03T01:32:34.000Z" + }, + "end": { + "$date": "2021-03-03T03:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "8a88db61-08ad-4bb7-869d-915e9d664960", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T01:35:04.000Z" + }, + "end": { + "$date": "2021-03-03T01:37:36.000Z" + }, + "events": [ + { + "uuid": "b4dd9105-70ba-4464-b66b-bf783d98115b", + "start": { + "$date": "2021-03-03T01:35:04.000Z" + }, + "end": { + "$date": "2021-03-03T01:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "b9861bef-a388-4c2e-89d9-ee80b6ae94fe", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T01:38:10.000Z" + }, + "end": { + "$date": "2021-03-03T01:46:37.000Z" + }, + "events": [ + { + "uuid": "c7ab3114-a0f5-4524-9171-40b477f237bf", + "start": { + "$date": "2021-03-03T01:38:10.000Z" + }, + "end": { + "$date": "2021-03-03T01:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "b007dcef-1b29-4e53-a746-e028ed0ed111", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T01:48:11.000Z" + }, + "end": { + "$date": "2021-03-03T01:48:18.000Z" + }, + "events": [ + { + "uuid": "050f9338-a37b-4d44-ac20-77ca620ebd65", + "start": { + "$date": "2021-03-03T01:48:11.000Z" + }, + "end": { + "$date": "2021-03-03T01:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "14bc8e5f-86ea-4c1c-81b7-36cb8ccbe887", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T01:58:44.000Z" + }, + "end": { + "$date": "2021-03-03T02:01:19.000Z" + }, + "events": [ + { + "uuid": "ffb1f82c-43fa-486a-9c64-4569f88c3a73", + "start": { + "$date": "2021-03-03T01:58:44.000Z" + }, + "end": { + "$date": "2021-03-03T02:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a5d15a6f-2fff-43cb-9f49-d6a32b242d19", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-03T01:04:10.000Z" + }, + "end": { + "$date": "2021-03-03T05:02:54.000Z" + }, + "events": [ + { + "uuid": "7448c087-ee18-42ba-a6e5-bdc73455c849", + "start": { + "$date": "2021-03-03T01:04:10.000Z" + }, + "end": { + "$date": "2021-03-03T01:08:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13abab04-b657-4ca0-900b-a2d1db253e0e", + "start": { + "$date": "2021-03-03T01:08:10.000Z" + }, + "end": { + "$date": "2021-03-03T02:18:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5dcf3cc8-aba4-45cc-8d25-bf5822c2456a", + "start": { + "$date": "2021-03-03T02:18:10.000Z" + }, + "end": { + "$date": "2021-03-03T02:23:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c03e9934-c7a7-4497-a3d2-be27a2841e7f", + "start": { + "$date": "2021-03-03T02:23:10.000Z" + }, + "end": { + "$date": "2021-03-03T02:34:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d00523d0-d20b-41dc-94e0-ebe17b262815", + "start": { + "$date": "2021-03-03T02:34:10.000Z" + }, + "end": { + "$date": "2021-03-03T02:39:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a85cdebc-20fe-4f4a-91fa-ae0317217a5b", + "start": { + "$date": "2021-03-03T02:39:10.000Z" + }, + "end": { + "$date": "2021-03-03T02:52:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9dfab4a7-0497-4632-b6a4-54f064a9d736", + "start": { + "$date": "2021-03-03T02:52:10.000Z" + }, + "end": { + "$date": "2021-03-03T02:57:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a750b318-1c17-416a-98e2-bef652b56e6f", + "start": { + "$date": "2021-03-03T02:57:10.000Z" + }, + "end": { + "$date": "2021-03-03T03:18:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "95eb8129-eeaa-4fb8-9c4c-6c4eef61fe1e", + "start": { + "$date": "2021-03-03T03:18:10.000Z" + }, + "end": { + "$date": "2021-03-03T03:21:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ceb61db3-3914-4b78-aa8f-1aaaeb007a34", + "start": { + "$date": "2021-03-03T03:21:10.000Z" + }, + "end": { + "$date": "2021-03-03T03:42:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7a5fb24-71d3-45bc-b8ee-90074ab8a247", + "start": { + "$date": "2021-03-03T03:42:10.000Z" + }, + "end": { + "$date": "2021-03-03T05:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "56eb59f1-5e63-4747-91b1-3856c25310f2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T02:02:59.000Z" + }, + "end": { + "$date": "2021-03-03T02:04:14.000Z" + }, + "events": [ + { + "uuid": "bf777a2f-c44a-49e6-90bb-7b1737db40ed", + "start": { + "$date": "2021-03-03T02:02:59.000Z" + }, + "end": { + "$date": "2021-03-03T02:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "65fb81fc-5a93-487d-8140-45cd18d78be9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T02:09:40.000Z" + }, + "end": { + "$date": "2021-03-03T02:35:53.000Z" + }, + "events": [ + { + "uuid": "abe98432-d0a4-4e85-90c2-78b57bff113d", + "start": { + "$date": "2021-03-03T02:09:40.000Z" + }, + "end": { + "$date": "2021-03-03T02:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "70abd38e-2a2f-4b1b-8fae-aad7f8a2e733", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-03T03:01:47.000Z" + }, + "end": { + "$date": "2021-03-03T03:03:33.000Z" + }, + "events": [ + { + "uuid": "dfb69fae-1da6-40e7-bf59-721cd154e1aa", + "start": { + "$date": "2021-03-03T03:01:47.000Z" + }, + "end": { + "$date": "2021-03-03T03:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "626f364e-1e2a-41fd-be51-da5efa810155", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-03T03:05:47.000Z" + }, + "end": { + "$date": "2021-03-03T04:08:51.000Z" + }, + "events": [ + { + "uuid": "0190eb55-b560-4d48-ba97-312731af5dd9", + "start": { + "$date": "2021-03-03T03:05:47.000Z" + }, + "end": { + "$date": "2021-03-03T04:08:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "04b5d69e-17f8-431c-bca4-47d53e0d04d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-03T03:14:15.000Z" + }, + "end": { + "$date": "2021-03-03T04:15:48.000Z" + }, + "events": [ + { + "uuid": "4389c527-5bff-4673-a2fc-55a468aba848", + "start": { + "$date": "2021-03-03T03:14:15.000Z" + }, + "end": { + "$date": "2021-03-03T04:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "53de5182-36a4-4ff1-9855-eef52d0e60ff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-03T03:20:55.000Z" + }, + "end": { + "$date": "2021-03-03T03:51:52.000Z" + }, + "events": [ + { + "uuid": "87ca5bbf-5a49-4439-82ec-4e158337e4f6", + "start": { + "$date": "2021-03-03T03:20:55.000Z" + }, + "end": { + "$date": "2021-03-03T03:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d9934c31-ade5-4450-af19-d7767caa7c10", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T03:24:52.000Z" + }, + "end": { + "$date": "2021-03-03T03:27:53.000Z" + }, + "events": [ + { + "uuid": "2bdff273-135d-4cd4-aa98-3c8bf1ef70ed", + "start": { + "$date": "2021-03-03T03:24:52.000Z" + }, + "end": { + "$date": "2021-03-03T03:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "066f66ed-c300-4a16-ae1a-0fd3b0580e37", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T04:02:32.000Z" + }, + "end": { + "$date": "2021-03-03T04:02:37.000Z" + }, + "events": [ + { + "uuid": "6baec3c3-24bb-46ff-b178-32000fd070a0", + "start": { + "$date": "2021-03-03T04:02:32.000Z" + }, + "end": { + "$date": "2021-03-03T04:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "63f5bc17-6de1-4442-b6e5-23c3863d4925", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-03T03:52:26.000Z" + }, + "end": { + "$date": "2021-03-03T07:31:24.000Z" + }, + "events": [ + { + "uuid": "d26eec4e-9d5a-45bb-8b2e-61bfefc66d48", + "start": { + "$date": "2021-03-03T03:52:26.000Z" + }, + "end": { + "$date": "2021-03-03T07:31:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "884d4916-7882-4868-914d-17c3c3857f77", + "uuid": "2385e36a-81f3-4515-9b72-5f0a05d99605", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-03T03:54:31.000Z" + }, + "end": { + "$date": "2021-03-03T05:25:20.000Z" + }, + "events": [ + { + "uuid": "d853acfe-7679-4830-99ee-dc215821c4c5", + "start": { + "$date": "2021-03-03T03:54:31.000Z" + }, + "end": { + "$date": "2021-03-03T05:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "12855c35-f014-45d7-8a13-ac158d3b95f8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T04:02:47.000Z" + }, + "end": { + "$date": "2021-03-03T04:11:23.000Z" + }, + "events": [ + { + "uuid": "7c5e7c9f-b977-4553-9c97-511376568c9b", + "start": { + "$date": "2021-03-03T04:02:47.000Z" + }, + "end": { + "$date": "2021-03-03T04:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "65d7075e-aa8c-4bac-9733-43a6c56020d9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T04:12:37.000Z" + }, + "end": { + "$date": "2021-03-03T04:19:18.000Z" + }, + "events": [ + { + "uuid": "8bff14d5-5354-4dce-871f-691bcf3d94b3", + "start": { + "$date": "2021-03-03T04:12:37.000Z" + }, + "end": { + "$date": "2021-03-03T04:19:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "59ec5e54-ef52-434a-b6c1-15132e9420b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-03T04:15:57.000Z" + }, + "end": { + "$date": "2021-03-03T04:18:38.000Z" + }, + "events": [ + { + "uuid": "6525690f-0ac8-4332-8abc-e57238a4884b", + "start": { + "$date": "2021-03-03T04:15:57.000Z" + }, + "end": { + "$date": "2021-03-03T04:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c52748a6-c0e9-43a1-b023-4b346956cd1a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-03T04:18:42.000Z" + }, + "end": { + "$date": "2021-03-03T04:55:14.000Z" + }, + "events": [ + { + "uuid": "1ac18aad-4e42-4248-9aab-de2ba6c8e29d", + "start": { + "$date": "2021-03-03T04:18:42.000Z" + }, + "end": { + "$date": "2021-03-03T04:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ecb1cc0c-94a6-4e78-ad72-a2294588c8a2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T04:26:28.000Z" + }, + "end": { + "$date": "2021-03-03T04:26:33.000Z" + }, + "events": [ + { + "uuid": "03d126b4-5e9d-4ffb-9b27-72d8ce77b125", + "start": { + "$date": "2021-03-03T04:26:28.000Z" + }, + "end": { + "$date": "2021-03-03T04:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "e2bc0a33-6f62-4b0c-8d62-a395a69de808", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-03T04:55:28.000Z" + }, + "end": { + "$date": "2021-03-03T06:04:41.000Z" + }, + "events": [ + { + "uuid": "cbeff271-0039-4de4-b534-7c224b324584", + "start": { + "$date": "2021-03-03T04:55:28.000Z" + }, + "end": { + "$date": "2021-03-03T06:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b85225f1-e895-42f3-b067-e9c1d7219733", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-03T05:17:57.000Z" + }, + "end": { + "$date": "2021-03-03T05:42:32.000Z" + }, + "events": [ + { + "uuid": "d04d38b7-ffe7-4913-b95d-1f18dca8b694", + "start": { + "$date": "2021-03-03T05:17:57.000Z" + }, + "end": { + "$date": "2021-03-03T05:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "18b083a8-843c-497e-8b83-4b8f21c8a61d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-03T05:26:35.000Z" + }, + "end": { + "$date": "2021-03-03T05:28:05.000Z" + }, + "events": [ + { + "uuid": "b85e9718-3554-4126-8f36-db5b069e4552", + "start": { + "$date": "2021-03-03T05:26:35.000Z" + }, + "end": { + "$date": "2021-03-03T05:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ff08a202-0817-41fb-9d87-5afcc0bdcd49", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-03T05:29:32.000Z" + }, + "end": { + "$date": "2021-03-03T06:05:14.000Z" + }, + "events": [ + { + "uuid": "fbac73f6-9b19-4dca-852a-4d85daca134b", + "start": { + "$date": "2021-03-03T05:29:32.000Z" + }, + "end": { + "$date": "2021-03-03T06:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "d7cf877a-4712-451e-b39a-a942a8277b45", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-03T05:31:06.000Z" + }, + "end": { + "$date": "2021-03-03T05:31:16.000Z" + }, + "events": [ + { + "uuid": "6e3326b4-b023-4b05-9658-2d15fcdd580b", + "start": { + "$date": "2021-03-03T05:31:06.000Z" + }, + "end": { + "$date": "2021-03-03T05:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", + "uuid": "de556ffe-cdbb-4a38-9bd2-3d2911d21b6e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-03T05:33:21.000Z" + }, + "end": { + "$date": "2021-03-03T05:43:09.000Z" + }, + "events": [ + { + "uuid": "131ed939-47a4-428e-853f-68f062257c90", + "start": { + "$date": "2021-03-03T05:33:21.000Z" + }, + "end": { + "$date": "2021-03-03T05:43:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "35b144c8-cc8e-47ef-ba1f-6213d7dd856f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-03T06:04:45.000Z" + }, + "end": { + "$date": "2021-03-03T06:04:51.000Z" + }, + "events": [ + { + "uuid": "9ad5e483-67b0-4629-891d-f3c40dbdbb5c", + "start": { + "$date": "2021-03-03T06:04:45.000Z" + }, + "end": { + "$date": "2021-03-03T06:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8d1a61b9-9fbf-491b-8ef1-5ef1a62d4f57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-03T06:05:15.000Z" + }, + "end": { + "$date": "2021-03-03T06:41:56.000Z" + }, + "events": [ + { + "uuid": "6dd3a38a-5cd6-4421-af80-6c25ffd804e2", + "start": { + "$date": "2021-03-03T06:05:15.000Z" + }, + "end": { + "$date": "2021-03-03T06:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "b5d691a9-d249-40e2-886b-83501a086fad", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T04:26:38.000Z" + }, + "end": { + "$date": "2021-03-03T07:31:09.000Z" + }, + "events": [ + { + "uuid": "bc295ff2-58f5-4546-acf1-f5ba64bd9225", + "start": { + "$date": "2021-03-03T04:26:38.000Z" + }, + "end": { + "$date": "2021-03-03T07:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "601d2a9c-da24-4b21-b1b4-47bb410ba375", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-03T17:26:03.000Z" + }, + "end": { + "$date": "2021-03-03T17:43:02.000Z" + }, + "events": [ + { + "uuid": "f0dac2c8-28c6-4cfa-964b-f972e24fb2aa", + "start": { + "$date": "2021-03-03T17:26:03.000Z" + }, + "end": { + "$date": "2021-03-03T17:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ccd8b994-1e97-49f9-b61d-1c28f88a8bf0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-03T19:34:33.000Z" + }, + "end": { + "$date": "2021-03-03T20:45:55.000Z" + }, + "events": [ + { + "uuid": "289b4b9d-a721-485f-90b7-e8f0010cac24", + "start": { + "$date": "2021-03-03T19:34:33.000Z" + }, + "end": { + "$date": "2021-03-03T20:45:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8721a0b5-3c8d-4556-a87a-37f8eaa3162b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-03T21:06:38.000Z" + }, + "end": { + "$date": "2021-03-03T22:25:50.000Z" + }, + "events": [ + { + "uuid": "accda0d7-175e-4f6d-a037-599eea079305", + "start": { + "$date": "2021-03-03T21:06:38.000Z" + }, + "end": { + "$date": "2021-03-03T22:25:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fe7fa89-6195-438f-89ec-da377b59966e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-03T21:42:24.000Z" + }, + "end": { + "$date": "2021-03-03T22:20:11.000Z" + }, + "events": [ + { + "uuid": "5f27c4e9-21ad-497b-bfc5-930c7fb482c9", + "start": { + "$date": "2021-03-03T21:42:24.000Z" + }, + "end": { + "$date": "2021-03-03T22:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "c0da1f87-6e66-46ab-adef-4315dd7167ba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-03T22:06:51.000Z" + }, + "end": { + "$date": "2021-03-03T22:08:02.000Z" + }, + "events": [ + { + "uuid": "8c7c0c24-6304-415d-9b6d-d150929feb4b", + "start": { + "$date": "2021-03-03T22:06:51.000Z" + }, + "end": { + "$date": "2021-03-03T22:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ed4bc5a5-02d8-46d5-99c6-7246e156f23e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-03T22:57:26.000Z" + }, + "end": { + "$date": "2021-03-03T23:57:20.000Z" + }, + "events": [ + { + "uuid": "9c1139d2-deda-4e12-a346-ef700011f349", + "start": { + "$date": "2021-03-03T22:57:26.000Z" + }, + "end": { + "$date": "2021-03-03T23:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", + "uuid": "b06713fe-8027-4cfc-8f6b-07d3f8759523", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-03T23:44:07.000Z" + }, + "end": { + "$date": "2021-03-04T00:01:11.000Z" + }, + "events": [ + { + "uuid": "2fb16530-63bd-48c1-bc7a-cebf73a70181", + "start": { + "$date": "2021-03-03T23:44:07.000Z" + }, + "end": { + "$date": "2021-03-04T00:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "87963b55-6f66-44aa-8992-fdd57a899e51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T00:52:42.000Z" + }, + "end": { + "$date": "2021-03-04T00:58:02.000Z" + }, + "events": [ + { + "uuid": "a216a55c-02d0-46a4-bf1e-2644e05359c7", + "start": { + "$date": "2021-03-04T00:52:42.000Z" + }, + "end": { + "$date": "2021-03-04T00:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "62207c2c-eb76-4530-ae04-68a3e2a332d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-04T00:54:01.000Z" + }, + "end": { + "$date": "2021-03-04T01:28:51.000Z" + }, + "events": [ + { + "uuid": "a98d44ee-fbea-4505-923e-8d1231753ffa", + "start": { + "$date": "2021-03-04T00:54:01.000Z" + }, + "end": { + "$date": "2021-03-04T01:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "091e40ee-348e-4c4e-ac2c-25d872e9b4c5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T00:58:13.000Z" + }, + "end": { + "$date": "2021-03-04T01:00:08.000Z" + }, + "events": [ + { + "uuid": "9c010bef-8cc5-4c0c-9a85-f31d9f013a46", + "start": { + "$date": "2021-03-04T00:58:13.000Z" + }, + "end": { + "$date": "2021-03-04T01:00:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0c08ad35-d12d-468d-ab49-468af0b2958a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T01:00:28.000Z" + }, + "end": { + "$date": "2021-03-04T01:20:53.000Z" + }, + "events": [ + { + "uuid": "e1f381e4-d626-4838-b516-db1a7c274aa0", + "start": { + "$date": "2021-03-04T01:00:28.000Z" + }, + "end": { + "$date": "2021-03-04T01:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e6828906-4e7b-4876-8ee4-11a66e544c9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T01:23:24.000Z" + }, + "end": { + "$date": "2021-03-04T01:28:59.000Z" + }, + "events": [ + { + "uuid": "128dbc63-00bb-4201-9064-b618026c11fb", + "start": { + "$date": "2021-03-04T01:23:24.000Z" + }, + "end": { + "$date": "2021-03-04T01:28:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0c01301e-e0a4-45ab-badf-6fbb9a3499b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T01:29:59.000Z" + }, + "end": { + "$date": "2021-03-04T02:40:40.000Z" + }, + "events": [ + { + "uuid": "b3315692-47f3-46da-bf37-c41ecb51ed5f", + "start": { + "$date": "2021-03-04T01:29:59.000Z" + }, + "end": { + "$date": "2021-03-04T02:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cad432b2-ddd7-499a-9bf9-1b5a562e7b5f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-04T02:47:40.000Z" + }, + "end": { + "$date": "2021-03-04T05:30:49.000Z" + }, + "events": [ + { + "uuid": "a78f2886-77cc-4c35-8af2-defb855977ba", + "start": { + "$date": "2021-03-04T02:47:40.000Z" + }, + "end": { + "$date": "2021-03-04T05:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "46cceefb-52aa-462e-8062-d17cac6333f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-04T02:48:47.000Z" + }, + "end": { + "$date": "2021-03-04T03:24:49.000Z" + }, + "events": [ + { + "uuid": "0d70005c-aac3-4931-b864-94885acb8437", + "start": { + "$date": "2021-03-04T02:48:47.000Z" + }, + "end": { + "$date": "2021-03-04T03:24:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d098d6e-186a-4fb4-a12d-e735afa401f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T03:21:27.000Z" + }, + "end": { + "$date": "2021-03-04T03:54:06.000Z" + }, + "events": [ + { + "uuid": "a074dd00-b3f4-478c-8acd-23aa08cd2ec5", + "start": { + "$date": "2021-03-04T03:21:27.000Z" + }, + "end": { + "$date": "2021-03-04T03:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c52d6e33-0855-4b46-924f-055a15759fd9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-04T03:24:42.000Z" + }, + "end": { + "$date": "2021-03-04T05:40:26.000Z" + }, + "events": [ + { + "uuid": "1a25db8b-ddcf-463b-8316-2bddbfb1a608", + "start": { + "$date": "2021-03-04T03:24:42.000Z" + }, + "end": { + "$date": "2021-03-04T05:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3aa7229c-78a8-41e6-86fb-27c1e467599b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-04T03:35:57.000Z" + }, + "end": { + "$date": "2021-03-04T04:14:32.000Z" + }, + "events": [ + { + "uuid": "bc082356-2a90-4760-bc34-2b438604fd8e", + "start": { + "$date": "2021-03-04T03:35:57.000Z" + }, + "end": { + "$date": "2021-03-04T04:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7e7bc989-30c7-4fbc-a1fe-9aaaa224226f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-04T03:34:51.000Z" + }, + "end": { + "$date": "2021-03-04T05:01:51.000Z" + }, + "events": [ + { + "uuid": "62f314fd-55f6-4e43-a844-a669dd9fe487", + "start": { + "$date": "2021-03-04T03:34:51.000Z" + }, + "end": { + "$date": "2021-03-04T05:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ec2b090-4f34-4f85-b9a7-b49069186662", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-04T03:39:22.000Z" + }, + "end": { + "$date": "2021-03-04T04:44:39.000Z" + }, + "events": [ + { + "uuid": "af32562d-2cf7-47ad-b1f1-9c8087009196", + "start": { + "$date": "2021-03-04T03:39:22.000Z" + }, + "end": { + "$date": "2021-03-04T04:44:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f92c6a80-f1f3-4cd7-80cc-a0baa3b4b46a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T03:59:15.000Z" + }, + "end": { + "$date": "2021-03-04T04:43:51.000Z" + }, + "events": [ + { + "uuid": "b344aee6-f5e2-42bb-9060-87d338aa92f4", + "start": { + "$date": "2021-03-04T03:59:15.000Z" + }, + "end": { + "$date": "2021-03-04T04:43:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4221e103-ce07-4064-8b5b-b1880498d910", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-04T04:40:09.000Z" + }, + "end": { + "$date": "2021-03-04T05:31:41.000Z" + }, + "events": [ + { + "uuid": "c2908ff5-230b-4063-94e3-46e592b06c9c", + "start": { + "$date": "2021-03-04T04:40:09.000Z" + }, + "end": { + "$date": "2021-03-04T05:31:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16df14aa-b4e7-4012-ab49-a220afd9ea9e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-04T04:40:41.000Z" + }, + "end": { + "$date": "2021-03-04T05:31:38.000Z" + }, + "events": [ + { + "uuid": "206ba96a-361a-41ec-affd-c9e15525aaab", + "start": { + "$date": "2021-03-04T04:40:41.000Z" + }, + "end": { + "$date": "2021-03-04T05:31:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "508eb7d9-ce03-4c91-9af5-f4b18db8ea44", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-04T04:46:25.000Z" + }, + "end": { + "$date": "2021-03-04T05:01:52.000Z" + }, + "events": [ + { + "uuid": "27f39d6a-20d5-4321-8228-4a0d0c3b6f03", + "start": { + "$date": "2021-03-04T04:46:25.000Z" + }, + "end": { + "$date": "2021-03-04T05:01:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4206a17c-96d2-4ef8-9e73-b9cba7c63a12", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-04T05:33:46.000Z" + }, + "end": { + "$date": "2021-03-04T06:38:22.000Z" + }, + "events": [ + { + "uuid": "f42b7f01-a205-4344-b43a-86e059114170", + "start": { + "$date": "2021-03-04T05:33:46.000Z" + }, + "end": { + "$date": "2021-03-04T06:38:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "bd098464-fcb9-482d-99ed-9722201ee6dc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-04T05:23:53.000Z" + }, + "end": { + "$date": "2021-03-04T06:56:47.000Z" + }, + "events": [ + { + "uuid": "88cf5aea-ee35-4fab-91f0-878883480ae0", + "start": { + "$date": "2021-03-04T05:23:53.000Z" + }, + "end": { + "$date": "2021-03-04T06:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2d78628-fac2-45c2-b47e-dee387f48974", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-04T05:36:02.000Z" + }, + "end": { + "$date": "2021-03-04T06:00:28.000Z" + }, + "events": [ + { + "uuid": "5f9e2415-fc0f-4e5c-9724-b5fcf46bff8b", + "start": { + "$date": "2021-03-04T05:36:02.000Z" + }, + "end": { + "$date": "2021-03-04T06:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27c6a298-69c0-4833-aca6-dc92837f14a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-04T05:37:02.000Z" + }, + "end": { + "$date": "2021-03-04T06:00:14.000Z" + }, + "events": [ + { + "uuid": "da975b7b-33b4-4a2c-91f9-e144e68a2373", + "start": { + "$date": "2021-03-04T05:37:02.000Z" + }, + "end": { + "$date": "2021-03-04T06:00:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8a4080b-266f-4fcd-a507-b7e4cb01d6a7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-04T06:20:29.000Z" + }, + "end": { + "$date": "2021-03-04T06:54:02.000Z" + }, + "events": [ + { + "uuid": "bdb9b2e6-b709-4f58-aad8-38358a5bebdc", + "start": { + "$date": "2021-03-04T06:20:29.000Z" + }, + "end": { + "$date": "2021-03-04T06:54:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a742870-319a-42c7-9070-cf6064d25194", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-04T17:13:43.000Z" + }, + "end": { + "$date": "2021-03-04T17:46:38.000Z" + }, + "events": [ + { + "uuid": "14dca270-7c2d-4260-8d4c-ed9bf5a13b89", + "start": { + "$date": "2021-03-04T17:13:43.000Z" + }, + "end": { + "$date": "2021-03-04T17:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1dc955b1-5e31-4a0a-b024-cf2eb914a824", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-04T17:51:13.000Z" + }, + "end": { + "$date": "2021-03-04T19:20:22.000Z" + }, + "events": [ + { + "uuid": "07f63449-bbaf-49ee-8b75-61fc33aa289b", + "start": { + "$date": "2021-03-04T17:51:13.000Z" + }, + "end": { + "$date": "2021-03-04T19:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "33fed9de-24ef-454d-ac38-5834129019e6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-04T21:04:17.000Z" + }, + "end": { + "$date": "2021-03-04T22:01:41.000Z" + }, + "events": [ + { + "uuid": "926394ce-5229-4324-b895-1370034cec12", + "start": { + "$date": "2021-03-04T21:04:17.000Z" + }, + "end": { + "$date": "2021-03-04T22:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f7fec73d-637d-4589-b26d-27167d9d730d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-04T22:48:00.000Z" + }, + "end": { + "$date": "2021-03-04T23:20:41.000Z" + }, + "events": [ + { + "uuid": "4f48dc3e-9ca1-488a-911e-b44dbb417259", + "start": { + "$date": "2021-03-04T22:48:00.000Z" + }, + "end": { + "$date": "2021-03-04T23:20:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "bf36b859-13c9-4a94-8970-9b9b0097aaea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-04T23:37:51.000Z" + }, + "end": { + "$date": "2021-03-05T00:42:32.000Z" + }, + "events": [ + { + "uuid": "013a667a-b3d8-4036-9a7e-c1f7fd66a4bb", + "start": { + "$date": "2021-03-04T23:37:51.000Z" + }, + "end": { + "$date": "2021-03-05T00:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "da7c5574-ceb3-4da9-aad0-48a0003b52b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T00:39:30.000Z" + }, + "end": { + "$date": "2021-03-05T00:41:31.000Z" + }, + "events": [ + { + "uuid": "fa412c08-52f0-4da5-8862-571537130f6b", + "start": { + "$date": "2021-03-05T00:39:30.000Z" + }, + "end": { + "$date": "2021-03-05T00:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "d0329bef-e16e-467b-b2cf-a666365a945c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T00:43:10.000Z" + }, + "end": { + "$date": "2021-03-05T00:45:11.000Z" + }, + "events": [ + { + "uuid": "0f814181-25c4-4f22-bbfb-babd5cf1fdfe", + "start": { + "$date": "2021-03-05T00:43:10.000Z" + }, + "end": { + "$date": "2021-03-05T00:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "e79e1e39-db4e-4464-bd85-7993cb38a3ef", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T00:50:36.000Z" + }, + "end": { + "$date": "2021-03-05T01:30:54.000Z" + }, + "events": [ + { + "uuid": "afe211e6-406d-4fff-9769-f85d1c71297f", + "start": { + "$date": "2021-03-05T00:50:36.000Z" + }, + "end": { + "$date": "2021-03-05T01:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4469a15d-03b1-4759-8cb5-b5f5195799b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T01:19:09.000Z" + }, + "end": { + "$date": "2021-03-05T01:42:45.000Z" + }, + "events": [ + { + "uuid": "cf421240-2be1-416e-9535-1f7325544db3", + "start": { + "$date": "2021-03-05T01:19:09.000Z" + }, + "end": { + "$date": "2021-03-05T01:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "99da4d07-4ccb-4978-a2af-153ae7b352a6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T01:35:34.000Z" + }, + "end": { + "$date": "2021-03-05T02:31:16.000Z" + }, + "events": [ + { + "uuid": "a0a1b5bc-3d13-42c0-bb90-94516a30dee6", + "start": { + "$date": "2021-03-05T01:35:34.000Z" + }, + "end": { + "$date": "2021-03-05T02:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1e92b67-5435-4001-8b7c-c1ff46553e62", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T01:44:47.000Z" + }, + "end": { + "$date": "2021-03-05T02:15:19.000Z" + }, + "events": [ + { + "uuid": "5b0a82e6-65dd-41de-af5b-dfb74070903e", + "start": { + "$date": "2021-03-05T01:44:47.000Z" + }, + "end": { + "$date": "2021-03-05T02:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e7f95c2e-f919-45cd-99b2-b1b96387b608", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T01:45:03.000Z" + }, + "end": { + "$date": "2021-03-05T02:16:35.000Z" + }, + "events": [ + { + "uuid": "92f5c1ff-2686-4f5e-abd9-ef0bf062a1cc", + "start": { + "$date": "2021-03-05T01:45:03.000Z" + }, + "end": { + "$date": "2021-03-05T02:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24e98ae1-a081-4d4a-b25d-563f44a49396", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-05T02:12:26.000Z" + }, + "end": { + "$date": "2021-03-05T03:37:29.000Z" + }, + "events": [ + { + "uuid": "d7e41157-dbaa-4805-80a3-db9fd82b66df", + "start": { + "$date": "2021-03-05T02:12:26.000Z" + }, + "end": { + "$date": "2021-03-05T03:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "54877b6c-e91d-4fc4-95ed-4646419d313b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T02:16:55.000Z" + }, + "end": { + "$date": "2021-03-05T03:37:57.000Z" + }, + "events": [ + { + "uuid": "25c272f5-c2c6-4f0b-bea4-9e88f60f0f9a", + "start": { + "$date": "2021-03-05T02:16:55.000Z" + }, + "end": { + "$date": "2021-03-05T03:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cb1c9eaa-a3d3-4c64-938d-ca41485ca595", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-05T02:16:42.000Z" + }, + "end": { + "$date": "2021-03-05T03:37:33.000Z" + }, + "events": [ + { + "uuid": "aa4836bc-6660-4f6f-936e-66f27d9a5831", + "start": { + "$date": "2021-03-05T02:16:42.000Z" + }, + "end": { + "$date": "2021-03-05T03:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "76aa2092-f4b4-45a6-85d2-a27c892171a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-05T02:52:33.000Z" + }, + "end": { + "$date": "2021-03-05T02:54:04.000Z" + }, + "events": [ + { + "uuid": "0495e13f-37c5-4c5b-84c2-c551647a96ff", + "start": { + "$date": "2021-03-05T02:52:33.000Z" + }, + "end": { + "$date": "2021-03-05T02:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "038ac355-074e-481e-8f7e-4098fade1c5f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-05T02:54:16.000Z" + }, + "end": { + "$date": "2021-03-05T02:58:40.000Z" + }, + "events": [ + { + "uuid": "e87d008a-b33c-4ebb-8a2a-198e2fbe0781", + "start": { + "$date": "2021-03-05T02:54:16.000Z" + }, + "end": { + "$date": "2021-03-05T02:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1ca4d468-5f4f-4e30-9fcf-097790e4a48e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-05T05:46:24.000Z" + }, + "end": { + "$date": "2021-03-05T06:29:04.000Z" + }, + "events": [ + { + "uuid": "03f6d51d-3e1b-4098-b1f2-58d9f8d7b379", + "start": { + "$date": "2021-03-05T05:46:24.000Z" + }, + "end": { + "$date": "2021-03-05T06:50:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2a66ca3-816e-472e-ac34-0665a678aa7a", + "start": { + "$date": "2021-03-05T06:50:24.000Z" + }, + "end": { + "$date": "2021-03-05T06:55:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dcdf810c-9196-47c1-bc20-786302fdb687", + "start": { + "$date": "2021-03-05T06:55:24.000Z" + }, + "end": { + "$date": "2021-03-05T06:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3b28ac9d-2e12-4a94-8051-e78c2dd26178", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-05T03:20:24.000Z" + }, + "end": { + "$date": "2021-03-05T04:35:20.000Z" + }, + "events": [ + { + "uuid": "fa5a516c-5982-4544-b7ef-fe991b31d1fd", + "start": { + "$date": "2021-03-05T03:20:24.000Z" + }, + "end": { + "$date": "2021-03-05T04:27:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "02f926c7-997f-40bd-b0ab-ecac07637221", + "start": { + "$date": "2021-03-05T04:27:24.000Z" + }, + "end": { + "$date": "2021-03-05T04:32:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a1b3d4d3-c665-4e63-9cab-3fa047e3ffea", + "start": { + "$date": "2021-03-05T04:32:24.000Z" + }, + "end": { + "$date": "2021-03-05T04:35:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0551019f-f83b-4154-9f00-82109f61d818", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-05T03:27:58.000Z" + }, + "end": { + "$date": "2021-03-05T06:00:42.000Z" + }, + "events": [ + { + "uuid": "9124b6bb-f002-49ac-8dd9-7fbecaa63b50", + "start": { + "$date": "2021-03-05T03:27:58.000Z" + }, + "end": { + "$date": "2021-03-05T03:40:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9cdccf2-f2b0-4ad6-b80d-5e3499e5e3a7", + "start": { + "$date": "2021-03-05T03:40:58.000Z" + }, + "end": { + "$date": "2021-03-05T04:18:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "283d6c2d-cde2-4d11-94aa-08104ce353ed", + "start": { + "$date": "2021-03-05T04:18:58.000Z" + }, + "end": { + "$date": "2021-03-05T04:28:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba8eacc4-9ce0-4d31-ae91-05aef2d3b66c", + "start": { + "$date": "2021-03-05T04:28:58.000Z" + }, + "end": { + "$date": "2021-03-05T04:33:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9abcc169-9d41-4550-ba92-4e6a67f00c95", + "start": { + "$date": "2021-03-05T04:33:58.000Z" + }, + "end": { + "$date": "2021-03-05T04:43:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73b79088-06f4-47f8-ac42-24899f63226d", + "start": { + "$date": "2021-03-05T04:43:58.000Z" + }, + "end": { + "$date": "2021-03-05T04:59:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cfebe522-aae8-4944-bdf3-5fccb9661422", + "start": { + "$date": "2021-03-05T04:59:58.000Z" + }, + "end": { + "$date": "2021-03-05T05:09:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4645f6bf-f410-4ee5-a796-2b2d2170e92f", + "start": { + "$date": "2021-03-05T05:09:58.000Z" + }, + "end": { + "$date": "2021-03-05T05:16:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cdf8b923-6809-47cf-b4c0-3aebbcb145f1", + "start": { + "$date": "2021-03-05T05:16:58.000Z" + }, + "end": { + "$date": "2021-03-05T05:49:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4e0b159f-7bba-449e-aed0-ff6c73300b69", + "start": { + "$date": "2021-03-05T05:49:58.000Z" + }, + "end": { + "$date": "2021-03-05T05:50:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80b918aa-e0fb-454c-9ee9-3e1347f734a1", + "start": { + "$date": "2021-03-05T05:50:58.000Z" + }, + "end": { + "$date": "2021-03-05T05:52:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "afeb00ee-f57f-4426-b13a-249f1b013854", + "start": { + "$date": "2021-03-05T05:52:58.000Z" + }, + "end": { + "$date": "2021-03-05T06:00:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "85d52ab5-9a75-4f6c-874b-39e73a0e3902", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-05T03:37:44.000Z" + }, + "end": { + "$date": "2021-03-05T03:39:18.000Z" + }, + "events": [ + { + "uuid": "21a1008e-4bb8-4c46-b217-56d54dc95ee6", + "start": { + "$date": "2021-03-05T03:37:44.000Z" + }, + "end": { + "$date": "2021-03-05T03:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fcefb608-9c1b-4e84-b0bb-3341938b94f5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-05T03:38:36.000Z" + }, + "end": { + "$date": "2021-03-05T06:40:03.000Z" + }, + "events": [ + { + "uuid": "3b7084dd-90e6-4edd-9b26-f562c4b7edc6", + "start": { + "$date": "2021-03-05T03:38:36.000Z" + }, + "end": { + "$date": "2021-03-05T06:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7a1ef2d3-cdca-4261-a43d-81e04904b8f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T03:39:22.000Z" + }, + "end": { + "$date": "2021-03-05T04:13:28.000Z" + }, + "events": [ + { + "uuid": "7d57bec9-f5aa-4433-b47c-7d3c171b55ae", + "start": { + "$date": "2021-03-05T03:39:22.000Z" + }, + "end": { + "$date": "2021-03-05T04:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5987a19e-35a9-475f-a982-ae7cadfd3beb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-05T04:13:10.000Z" + }, + "end": { + "$date": "2021-03-05T04:47:08.000Z" + }, + "events": [ + { + "uuid": "f5dc319e-5dfa-4a10-8586-4b384f35137f", + "start": { + "$date": "2021-03-05T04:13:10.000Z" + }, + "end": { + "$date": "2021-03-05T04:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "0e263f67-69cb-4c90-bcc7-09c3eb9b088e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T03:58:10.000Z" + }, + "end": { + "$date": "2021-03-05T05:40:24.000Z" + }, + "events": [ + { + "uuid": "62530a47-eae3-41c8-9f4c-d2cd938b104e", + "start": { + "$date": "2021-03-05T03:58:10.000Z" + }, + "end": { + "$date": "2021-03-05T05:40:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e1a2eb98-ff51-4312-999b-79ed8422fb06", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-05T04:05:10.000Z" + }, + "end": { + "$date": "2021-03-05T04:09:30.000Z" + }, + "events": [ + { + "uuid": "58353c9d-93d6-49f1-a057-480999596d99", + "start": { + "$date": "2021-03-05T04:05:10.000Z" + }, + "end": { + "$date": "2021-03-05T04:09:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5df95445-1ab4-491a-ad81-1780639dfdab", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-05T05:08:11.000Z" + }, + "end": { + "$date": "2021-03-05T06:39:19.000Z" + }, + "events": [ + { + "uuid": "a588d746-98c5-4786-a606-9c6acd7bfa1b", + "start": { + "$date": "2021-03-05T05:08:11.000Z" + }, + "end": { + "$date": "2021-03-05T06:39:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f55c7017-35c1-4f45-a127-a2eb50d09425", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-05T05:17:27.000Z" + }, + "end": { + "$date": "2021-03-05T05:51:30.000Z" + }, + "events": [ + { + "uuid": "009989be-9ad0-49a3-b2aa-f49c77237901", + "start": { + "$date": "2021-03-05T05:17:27.000Z" + }, + "end": { + "$date": "2021-03-05T05:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fdaa728d-1bb4-415b-91a5-413e10d6b991", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-05T05:19:50.000Z" + }, + "end": { + "$date": "2021-03-05T05:36:13.000Z" + }, + "events": [ + { + "uuid": "4ce1d2ac-c8f5-4ec3-9178-fddf63fc0c70", + "start": { + "$date": "2021-03-05T05:19:50.000Z" + }, + "end": { + "$date": "2021-03-05T05:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45064957-5a50-49b4-823a-bdd6fbb2621f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-05T05:27:28.000Z" + }, + "end": { + "$date": "2021-03-05T05:58:19.000Z" + }, + "events": [ + { + "uuid": "e1b3fcc9-4752-4f54-bafa-eaa9bbc22f25", + "start": { + "$date": "2021-03-05T05:27:28.000Z" + }, + "end": { + "$date": "2021-03-05T05:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94ea758e-df20-485f-b37d-305c137f5fe4", + "uuid": "0634928e-f30f-4def-b602-1fcc8a5b8169", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-05T05:43:48.000Z" + }, + "end": { + "$date": "2021-03-05T06:17:22.000Z" + }, + "events": [ + { + "uuid": "5cf3d016-f79b-4bd0-8a35-9ed779ddf6fd", + "start": { + "$date": "2021-03-05T05:43:48.000Z" + }, + "end": { + "$date": "2021-03-05T06:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c17d88f5-affd-48b0-ba14-bdd48908b294", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-05T06:07:54.000Z" + }, + "end": { + "$date": "2021-03-05T06:40:41.000Z" + }, + "events": [ + { + "uuid": "ed154773-f245-4831-8942-2a0b517449db", + "start": { + "$date": "2021-03-05T06:07:54.000Z" + }, + "end": { + "$date": "2021-03-05T06:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "27157b90-92ba-4e66-9587-17ef60a96fbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T06:00:07.000Z" + }, + "end": { + "$date": "2021-03-05T06:19:24.000Z" + }, + "events": [ + { + "uuid": "7851030a-c096-4456-afdf-9d121c9b0b06", + "start": { + "$date": "2021-03-05T06:00:07.000Z" + }, + "end": { + "$date": "2021-03-05T06:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a03097b1-9370-4d5d-99d7-39466525cf4a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-05T06:48:06.000Z" + }, + "end": { + "$date": "2021-03-05T07:13:38.000Z" + }, + "events": [ + { + "uuid": "caf99bac-cf2f-44b4-9015-ece5bdc999df", + "start": { + "$date": "2021-03-05T06:48:06.000Z" + }, + "end": { + "$date": "2021-03-05T07:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b30e164-4843-4fd6-b81d-e549782a6bbb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-05T07:19:32.000Z" + }, + "end": { + "$date": "2021-03-05T07:52:28.000Z" + }, + "events": [ + { + "uuid": "c120e80f-cc02-4a87-bb62-c9c6f230460f", + "start": { + "$date": "2021-03-05T07:19:32.000Z" + }, + "end": { + "$date": "2021-03-05T07:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "34b7571b-8c25-473c-a597-4bb133ec8c83", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-05T15:57:43.000Z" + }, + "end": { + "$date": "2021-03-06T07:23:16.000Z" + }, + "events": [ + { + "uuid": "da3effc6-acfd-4a2f-b9fb-b6501d2583f7", + "start": { + "$date": "2021-03-05T15:57:43.000Z" + }, + "end": { + "$date": "2021-03-06T01:10:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "32b6a3ad-cad2-4465-b82d-f94d351249ab", + "start": { + "$date": "2021-03-06T01:10:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:02:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8acebecc-ef19-4d82-957e-87d55f9a61c5", + "start": { + "$date": "2021-03-06T04:02:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:05:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "acb087c1-ecce-4b16-bbb7-079b65e42094", + "start": { + "$date": "2021-03-06T04:05:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:13:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2379afd-79de-44ca-b195-53d0157f3022", + "start": { + "$date": "2021-03-06T04:13:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:16:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bafd0608-778c-42a5-b0e2-bc62eec0da05", + "start": { + "$date": "2021-03-06T04:16:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:29:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b46e45e2-9c16-44e5-9f71-36e0889265ed", + "start": { + "$date": "2021-03-06T04:29:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:33:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6484934-21f6-410d-a876-2d120e369c3e", + "start": { + "$date": "2021-03-06T04:33:43.000Z" + }, + "end": { + "$date": "2021-03-06T04:52:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "811b0c1e-b7c3-488a-b44e-0c30c9d76db1", + "start": { + "$date": "2021-03-06T04:52:43.000Z" + }, + "end": { + "$date": "2021-03-06T07:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42d10299-c153-4dcd-8b0a-f9be705ba7af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T16:23:29.000Z" + }, + "end": { + "$date": "2021-03-05T16:50:40.000Z" + }, + "events": [ + { + "uuid": "6d07f814-779e-4f54-9e05-9b250a38e696", + "start": { + "$date": "2021-03-05T16:23:29.000Z" + }, + "end": { + "$date": "2021-03-05T16:50:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b31da619-9bc4-47ac-80ed-7a60c57e8e03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T16:52:18.000Z" + }, + "end": { + "$date": "2021-03-05T17:24:03.000Z" + }, + "events": [ + { + "uuid": "59fb8e34-1254-428d-84e6-d1f2ea2b9443", + "start": { + "$date": "2021-03-05T16:52:18.000Z" + }, + "end": { + "$date": "2021-03-05T17:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4a652e96-9e52-4dc9-a362-1195925aede2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T17:56:22.000Z" + }, + "end": { + "$date": "2021-03-05T17:57:36.000Z" + }, + "events": [ + { + "uuid": "2c41a962-d25c-42cf-b61f-b4a68a6a759f", + "start": { + "$date": "2021-03-05T17:56:22.000Z" + }, + "end": { + "$date": "2021-03-05T17:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8466afd1-dace-4073-b921-535dba29e516", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T19:04:01.000Z" + }, + "end": { + "$date": "2021-03-05T19:19:21.000Z" + }, + "events": [ + { + "uuid": "72fbad4d-d795-47b6-8c2f-57de84d62eaa", + "start": { + "$date": "2021-03-05T19:04:01.000Z" + }, + "end": { + "$date": "2021-03-05T19:19:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7e301a3a-0ebf-4717-a54a-6ab93300f358", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T19:01:03.000Z" + }, + "end": { + "$date": "2021-03-05T19:03:28.000Z" + }, + "events": [ + { + "uuid": "c4624bfc-08ab-4bd6-bdb1-acd67cf7e613", + "start": { + "$date": "2021-03-05T19:01:03.000Z" + }, + "end": { + "$date": "2021-03-05T19:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f823399f-1dd0-45fa-bad0-cb9088b9b1cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T19:13:00.000Z" + }, + "end": { + "$date": "2021-03-05T19:43:40.000Z" + }, + "events": [ + { + "uuid": "659579ed-ea9b-4e25-94bf-bba2f276795c", + "start": { + "$date": "2021-03-05T19:13:00.000Z" + }, + "end": { + "$date": "2021-03-05T19:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69bbe815-664b-4fb6-9f2d-a0d9b82b8c3f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T19:22:41.000Z" + }, + "end": { + "$date": "2021-03-05T19:57:48.000Z" + }, + "events": [ + { + "uuid": "3b3954dd-e67f-4398-8c26-73647e380697", + "start": { + "$date": "2021-03-05T19:22:41.000Z" + }, + "end": { + "$date": "2021-03-05T19:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "861cde0b-3da3-4433-b8cb-8e2c19988cd0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T19:45:25.000Z" + }, + "end": { + "$date": "2021-03-05T20:22:16.000Z" + }, + "events": [ + { + "uuid": "ce9d6f6d-28ea-40e0-aa2b-7c675b36b0ae", + "start": { + "$date": "2021-03-05T19:45:25.000Z" + }, + "end": { + "$date": "2021-03-05T20:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a382e6d-921d-461b-9e58-47d2e69f822e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T20:01:50.000Z" + }, + "end": { + "$date": "2021-03-05T21:52:04.000Z" + }, + "events": [ + { + "uuid": "dda93b3d-275e-4596-a7d9-227310d9b8bc", + "start": { + "$date": "2021-03-05T20:01:50.000Z" + }, + "end": { + "$date": "2021-03-05T20:12:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9fc340b5-8af3-4ceb-9eb0-b5df707f3c91", + "start": { + "$date": "2021-03-05T20:12:50.000Z" + }, + "end": { + "$date": "2021-03-05T20:34:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bbeb2599-199c-4a26-96eb-6c83ca3c0a82", + "start": { + "$date": "2021-03-05T20:34:50.000Z" + }, + "end": { + "$date": "2021-03-05T21:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff9963c2-2533-4fcd-80f2-9cec3c37976d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T20:26:46.000Z" + }, + "end": { + "$date": "2021-03-05T20:51:02.000Z" + }, + "events": [ + { + "uuid": "78c01c1b-0b00-4e6e-a591-21e3ae83d2b3", + "start": { + "$date": "2021-03-05T20:26:46.000Z" + }, + "end": { + "$date": "2021-03-05T20:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a8074b05-f42f-4b6b-8878-3a34d633b352", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-05T20:26:13.000Z" + }, + "end": { + "$date": "2021-03-05T21:30:11.000Z" + }, + "events": [ + { + "uuid": "ee184afc-4109-4bfd-8d4c-625b9a036ad7", + "start": { + "$date": "2021-03-05T20:26:13.000Z" + }, + "end": { + "$date": "2021-03-05T21:30:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "fa35e05c-2059-4827-bb55-b1859ae0689e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T20:48:18.000Z" + }, + "end": { + "$date": "2021-03-05T20:52:15.000Z" + }, + "events": [ + { + "uuid": "3aa95367-4710-477c-a77d-41898bce895e", + "start": { + "$date": "2021-03-05T20:48:18.000Z" + }, + "end": { + "$date": "2021-03-05T20:52:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "cdcc002d-2411-4779-b10f-8d2d54349509", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-05T21:04:04.000Z" + }, + "end": { + "$date": "2021-03-05T21:10:54.000Z" + }, + "events": [ + { + "uuid": "799ae56f-9276-40cb-809d-e8d351b93447", + "start": { + "$date": "2021-03-05T21:04:04.000Z" + }, + "end": { + "$date": "2021-03-05T21:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "e8fa03bd-2cf9-4424-8ec6-9e395bed8652", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T21:06:28.000Z" + }, + "end": { + "$date": "2021-03-05T21:38:21.000Z" + }, + "events": [ + { + "uuid": "7d04903f-dcf3-4611-964d-ff8a77b0f7ea", + "start": { + "$date": "2021-03-05T21:06:28.000Z" + }, + "end": { + "$date": "2021-03-05T21:38:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "13634661-5302-4e1e-9d1d-ed35f667d985", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T21:06:44.000Z" + }, + "end": { + "$date": "2021-03-05T21:18:53.000Z" + }, + "events": [ + { + "uuid": "5767cd61-2b3b-42b6-be94-7d21ab135b10", + "start": { + "$date": "2021-03-05T21:06:44.000Z" + }, + "end": { + "$date": "2021-03-05T21:18:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d1083e61-ae58-478b-974f-ca5d11f3dad1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-05T21:09:00.000Z" + }, + "end": { + "$date": "2021-03-05T21:48:32.000Z" + }, + "events": [ + { + "uuid": "64eeb0c8-d3b5-4a66-9d7d-c365cb75fe3e", + "start": { + "$date": "2021-03-05T21:09:00.000Z" + }, + "end": { + "$date": "2021-03-05T21:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d4fbeeca-9026-43f6-93c2-b9d681a89f77", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T21:20:39.000Z" + }, + "end": { + "$date": "2021-03-05T21:58:49.000Z" + }, + "events": [ + { + "uuid": "5d38ee68-5f4a-4315-8049-48ab92880fd7", + "start": { + "$date": "2021-03-05T21:20:39.000Z" + }, + "end": { + "$date": "2021-03-05T21:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "320296c2-1bcf-4c2f-8489-7a044650bde5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-05T22:04:45.000Z" + }, + "end": { + "$date": "2021-03-05T22:24:53.000Z" + }, + "events": [ + { + "uuid": "a2d08bb5-e117-4889-8ee7-b0d2e3b48417", + "start": { + "$date": "2021-03-05T22:04:45.000Z" + }, + "end": { + "$date": "2021-03-05T22:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "78df2519-d999-4911-b0b6-de8f33d086a0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-05T22:05:48.000Z" + }, + "end": { + "$date": "2021-03-05T22:13:10.000Z" + }, + "events": [ + { + "uuid": "6c286dec-3436-48f4-8f10-aee1c224e129", + "start": { + "$date": "2021-03-05T22:05:48.000Z" + }, + "end": { + "$date": "2021-03-05T22:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ca1c25fa-dc6c-4759-b337-59e23cf98512", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-05T22:31:26.000Z" + }, + "end": { + "$date": "2021-03-05T22:35:07.000Z" + }, + "events": [ + { + "uuid": "feb1b3bf-295c-484b-8397-a51c8bb184d8", + "start": { + "$date": "2021-03-05T22:31:26.000Z" + }, + "end": { + "$date": "2021-03-05T22:35:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "7716f9a5-412e-42a9-8d05-c4b0c2c832e6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-05T23:02:17.000Z" + }, + "end": { + "$date": "2021-03-05T23:12:56.000Z" + }, + "events": [ + { + "uuid": "6eef8614-f9c4-4a07-a0a7-702a577ff1c9", + "start": { + "$date": "2021-03-05T23:02:17.000Z" + }, + "end": { + "$date": "2021-03-05T23:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c2b553e-458a-495a-b0a3-6b8f6175ce26", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-05T23:16:47.000Z" + }, + "end": { + "$date": "2021-03-05T23:45:31.000Z" + }, + "events": [ + { + "uuid": "6a5d325b-587d-4eda-a835-83a7261ead2d", + "start": { + "$date": "2021-03-05T23:16:47.000Z" + }, + "end": { + "$date": "2021-03-05T23:45:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b0facc1-8b00-4cbc-bfb5-dfc26172053c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T23:31:07.000Z" + }, + "end": { + "$date": "2021-03-05T23:48:52.000Z" + }, + "events": [ + { + "uuid": "6e6f7ff1-694a-4f51-a52f-b74931fc503c", + "start": { + "$date": "2021-03-05T23:31:07.000Z" + }, + "end": { + "$date": "2021-03-05T23:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4cee64d1-f93a-42d2-a2ed-ca6f8e5d8dc7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-05T23:44:18.000Z" + }, + "end": { + "$date": "2021-03-06T00:16:06.000Z" + }, + "events": [ + { + "uuid": "1309dffe-fdf7-4b1b-96f2-3411941863d3", + "start": { + "$date": "2021-03-05T23:44:18.000Z" + }, + "end": { + "$date": "2021-03-06T00:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ed50f74-8106-4122-ad48-b30334fe4027", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-05T23:54:14.000Z" + }, + "end": { + "$date": "2021-03-06T00:14:02.000Z" + }, + "events": [ + { + "uuid": "cdc0775c-8342-4a46-9ce9-75d47a1b500b", + "start": { + "$date": "2021-03-05T23:54:14.000Z" + }, + "end": { + "$date": "2021-03-06T00:14:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "a59004ec-1587-49b3-986d-272d98a7df0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T00:09:53.000Z" + }, + "end": { + "$date": "2021-03-06T00:41:14.000Z" + }, + "events": [ + { + "uuid": "7f413a8a-f909-49f9-ad33-9d4b56c21c05", + "start": { + "$date": "2021-03-06T00:09:53.000Z" + }, + "end": { + "$date": "2021-03-06T00:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "4f5e1727-77e7-4a04-8e7b-48f6f9c3de9d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T00:42:20.000Z" + }, + "end": { + "$date": "2021-03-06T02:21:45.000Z" + }, + "events": [ + { + "uuid": "6c17a80a-3ba1-47d6-a6d9-07ca1530b254", + "start": { + "$date": "2021-03-06T00:42:20.000Z" + }, + "end": { + "$date": "2021-03-06T02:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4ccfbf3-efe2-4426-96f4-9d9371d8f807", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T01:48:47.000Z" + }, + "end": { + "$date": "2021-03-06T02:01:36.000Z" + }, + "events": [ + { + "uuid": "4ed1c005-fffc-4130-aacd-ac1c94d21773", + "start": { + "$date": "2021-03-06T01:48:47.000Z" + }, + "end": { + "$date": "2021-03-06T02:01:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dd6ea253-91c3-4708-8476-a82957b7c14f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T02:02:02.000Z" + }, + "end": { + "$date": "2021-03-06T02:04:46.000Z" + }, + "events": [ + { + "uuid": "c45252ea-2b0b-4499-a7f0-31c13a86a807", + "start": { + "$date": "2021-03-06T02:02:02.000Z" + }, + "end": { + "$date": "2021-03-06T02:04:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "929435e5-9a01-4399-b293-d2ea0b4a38b3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-06T02:02:19.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:10.000Z" + }, + "events": [ + { + "uuid": "cb286d3d-07ab-4be7-843b-9bd13ea8ad8b", + "start": { + "$date": "2021-03-06T02:02:19.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d755ee9c-b22c-48e0-9ad5-6d9b328797dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T02:04:57.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:02.000Z" + }, + "events": [ + { + "uuid": "fd861477-b55b-4fa1-a72a-a40e771eec2f", + "start": { + "$date": "2021-03-06T02:04:57.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf8d4019-d3f5-4cf7-9d6e-9b6b302518a9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T02:10:41.000Z" + }, + "end": { + "$date": "2021-03-06T02:47:33.000Z" + }, + "events": [ + { + "uuid": "547dbf58-8285-4c28-b604-66d642a2c9d0", + "start": { + "$date": "2021-03-06T02:10:41.000Z" + }, + "end": { + "$date": "2021-03-06T02:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6d692244-27e8-4e78-9f70-724ab6ed0c74", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-06T02:35:31.000Z" + }, + "end": { + "$date": "2021-03-06T05:35:52.000Z" + }, + "events": [ + { + "uuid": "e46fefcc-1f91-4a88-8a6d-23442c0b47ac", + "start": { + "$date": "2021-03-06T02:35:31.000Z" + }, + "end": { + "$date": "2021-03-06T05:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0376b29-4ae3-42cc-af4e-113ad5c976e7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T02:52:06.000Z" + }, + "end": { + "$date": "2021-03-06T03:31:14.000Z" + }, + "events": [ + { + "uuid": "c4e4c5b7-2d10-4cdc-8c98-a75be431e707", + "start": { + "$date": "2021-03-06T02:52:06.000Z" + }, + "end": { + "$date": "2021-03-06T03:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14d8ebe9-c85e-4cc2-8a34-9b7c6d678e07", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T03:02:53.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:19.000Z" + }, + "events": [ + { + "uuid": "a7084d99-abfc-461c-bf4f-c7c13d6a49f2", + "start": { + "$date": "2021-03-06T03:02:53.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "d87a7574-24fe-476a-b912-d5ed1fbafed4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T03:08:31.000Z" + }, + "end": { + "$date": "2021-03-06T03:21:20.000Z" + }, + "events": [ + { + "uuid": "e5a7e46d-0160-4502-a9bf-24e934459fe1", + "start": { + "$date": "2021-03-06T03:08:31.000Z" + }, + "end": { + "$date": "2021-03-06T03:21:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a29651da-18d2-40c0-a1aa-9e88f4e84d59", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-06T03:18:31.000Z" + }, + "end": { + "$date": "2021-03-06T03:42:54.000Z" + }, + "events": [ + { + "uuid": "456c7d67-8a93-4ddd-b89b-5bc657931d09", + "start": { + "$date": "2021-03-06T03:18:31.000Z" + }, + "end": { + "$date": "2021-03-06T03:30:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85e85267-f24e-43c4-a347-94e63db1bd37", + "start": { + "$date": "2021-03-06T03:30:31.000Z" + }, + "end": { + "$date": "2021-03-06T03:31:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "072d97aa-46ce-4113-b4ab-f5eed0816374", + "start": { + "$date": "2021-03-06T03:31:31.000Z" + }, + "end": { + "$date": "2021-03-06T03:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "218bc88d-fbdb-438d-a1a1-dba71a1d83c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T04:21:58.000Z" + }, + "end": { + "$date": "2021-03-06T04:22:01.000Z" + }, + "events": [ + { + "uuid": "b5f3637a-af60-49bf-876a-95f35bbe0110", + "start": { + "$date": "2021-03-06T04:21:58.000Z" + }, + "end": { + "$date": "2021-03-06T04:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0cf653f8-b678-4bb6-a098-36de9d0860cb", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-06T03:43:08.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:36.000Z" + }, + "events": [ + { + "uuid": "ef057174-f4fc-442b-af7c-af05847aa8e8", + "start": { + "$date": "2021-03-06T03:43:08.000Z" + }, + "end": { + "$date": "2021-03-06T05:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "d7f9160d-3716-47f4-b4c3-e7548dccff2f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-06T03:58:31.000Z" + }, + "end": { + "$date": "2021-03-06T04:07:48.000Z" + }, + "events": [ + { + "uuid": "3cd9ac6b-9238-482c-82b8-e1ad2bb6c809", + "start": { + "$date": "2021-03-06T03:58:31.000Z" + }, + "end": { + "$date": "2021-03-06T04:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "bd5f65f4-e581-4e53-ad74-aba165115b00", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T04:16:14.000Z" + }, + "end": { + "$date": "2021-03-06T05:39:15.000Z" + }, + "events": [ + { + "uuid": "f8358ef6-afbb-494d-b692-2344142fb9f9", + "start": { + "$date": "2021-03-06T04:16:14.000Z" + }, + "end": { + "$date": "2021-03-06T04:17:14.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "375ab5a4-3fcc-4cf5-a604-68bf92d986e2", + "start": { + "$date": "2021-03-06T04:17:14.000Z" + }, + "end": { + "$date": "2021-03-06T05:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "65701f05-c798-44a5-85c8-913591ab8b54", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T04:22:08.000Z" + }, + "end": { + "$date": "2021-03-06T05:12:38.000Z" + }, + "events": [ + { + "uuid": "bab8efa9-fa56-4828-b044-a3d9196808ce", + "start": { + "$date": "2021-03-06T04:22:08.000Z" + }, + "end": { + "$date": "2021-03-06T05:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1215e262-b771-4ef5-a661-19bfecd0d06a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T05:12:48.000Z" + }, + "end": { + "$date": "2021-03-06T05:33:42.000Z" + }, + "events": [ + { + "uuid": "af63070c-8cdf-4279-8422-2530c638a430", + "start": { + "$date": "2021-03-06T05:12:48.000Z" + }, + "end": { + "$date": "2021-03-06T05:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "5c537127-ccc9-46b5-81fb-32d24472e112", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T05:13:04.000Z" + }, + "end": { + "$date": "2021-03-06T06:02:35.000Z" + }, + "events": [ + { + "uuid": "d329032b-0808-47ae-9670-b73faa338ef3", + "start": { + "$date": "2021-03-06T05:13:04.000Z" + }, + "end": { + "$date": "2021-03-06T05:24:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86c334f0-c253-4dda-b904-b75725caa82d", + "start": { + "$date": "2021-03-06T05:24:04.000Z" + }, + "end": { + "$date": "2021-03-06T05:29:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7564f6bc-55d4-4755-9b76-054cdb576ebf", + "start": { + "$date": "2021-03-06T05:29:04.000Z" + }, + "end": { + "$date": "2021-03-06T06:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b010e03-6db7-4d61-b6fd-2a0b58afa0a1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T05:16:29.000Z" + }, + "end": { + "$date": "2021-03-06T05:40:45.000Z" + }, + "events": [ + { + "uuid": "b9563e32-4593-413f-bcbc-3c3c6e2793ea", + "start": { + "$date": "2021-03-06T05:16:29.000Z" + }, + "end": { + "$date": "2021-03-06T05:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b88954ad-6680-4fc7-9517-9a14d9a11093", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-06T05:16:26.000Z" + }, + "end": { + "$date": "2021-03-06T05:40:52.000Z" + }, + "events": [ + { + "uuid": "bdd64649-7541-4444-a54f-dd0b8cad8d38", + "start": { + "$date": "2021-03-06T05:16:26.000Z" + }, + "end": { + "$date": "2021-03-06T05:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed447945-bcbf-412d-b080-d8667306afa7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T05:16:31.000Z" + }, + "end": { + "$date": "2021-03-06T05:40:52.000Z" + }, + "events": [ + { + "uuid": "1f8993dc-9e9b-49a3-8d5c-0509e92875be", + "start": { + "$date": "2021-03-06T05:16:31.000Z" + }, + "end": { + "$date": "2021-03-06T05:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "07c0ef92-c3b0-4f52-b0ad-079a60a59631", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-06T05:15:10.000Z" + }, + "end": { + "$date": "2021-03-06T05:56:35.000Z" + }, + "events": [ + { + "uuid": "d1e371e5-0b8e-49f6-a99d-0b0375aeb01e", + "start": { + "$date": "2021-03-06T05:15:10.000Z" + }, + "end": { + "$date": "2021-03-06T05:56:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9db6e9f2-8563-42ac-ba2f-08e519f2410a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T05:47:39.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:34.000Z" + }, + "events": [ + { + "uuid": "de3d5f6c-5a06-449c-be80-1c3c2dcd26ff", + "start": { + "$date": "2021-03-06T05:47:39.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c94d817-2eb2-49c2-9f59-c1c5b17618b5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-06T05:47:41.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:37.000Z" + }, + "events": [ + { + "uuid": "e0d55974-64be-47fd-b168-ac99fb39c97f", + "start": { + "$date": "2021-03-06T05:47:41.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87db679f-3cd7-405c-a6a7-4d2b8bdd2cd4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T05:47:40.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:31.000Z" + }, + "events": [ + { + "uuid": "a09e708a-f7a8-4146-8418-692172892d42", + "start": { + "$date": "2021-03-06T05:47:40.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e7dec40-2eb1-4e64-bc50-7b4a23fe147f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T05:47:46.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:31.000Z" + }, + "events": [ + { + "uuid": "9aa9a29c-2da4-4d56-a0cc-44ced675676a", + "start": { + "$date": "2021-03-06T05:47:46.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12ad1535-98ee-48c7-b32c-5b5d3af4febe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T05:47:43.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:33.000Z" + }, + "events": [ + { + "uuid": "3dad332b-cd7e-4966-8c7e-dadd42417b4d", + "start": { + "$date": "2021-03-06T05:47:43.000Z" + }, + "end": { + "$date": "2021-03-06T06:07:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e8bf7545-a11f-4801-a2f9-54f6d56884a6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T06:05:17.000Z" + }, + "end": { + "$date": "2021-03-06T06:06:20.000Z" + }, + "events": [ + { + "uuid": "0d9e18b9-661f-4fcc-bdae-56e73c9caed2", + "start": { + "$date": "2021-03-06T06:05:17.000Z" + }, + "end": { + "$date": "2021-03-06T06:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6803617a-7ca4-4218-aecb-93b3a0eef47c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T06:11:46.000Z" + }, + "end": { + "$date": "2021-03-06T06:35:57.000Z" + }, + "events": [ + { + "uuid": "2ca86272-8988-45f2-b7db-4251568d314e", + "start": { + "$date": "2021-03-06T06:11:46.000Z" + }, + "end": { + "$date": "2021-03-06T06:35:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d3e027f-5581-4c2e-8d44-9005b86d3963", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T06:12:04.000Z" + }, + "end": { + "$date": "2021-03-06T06:35:59.000Z" + }, + "events": [ + { + "uuid": "e1f97c4a-4a04-4843-b14f-45b7256b2062", + "start": { + "$date": "2021-03-06T06:12:04.000Z" + }, + "end": { + "$date": "2021-03-06T06:35:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae6f6544-0f03-4fc2-8033-bab514061d03", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T06:11:46.000Z" + }, + "end": { + "$date": "2021-03-06T06:35:57.000Z" + }, + "events": [ + { + "uuid": "db4323ad-9961-4fb7-93f7-ae6697d08ed6", + "start": { + "$date": "2021-03-06T06:11:46.000Z" + }, + "end": { + "$date": "2021-03-06T06:35:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "059c8e46-2e18-4e78-8cc4-01767db26e14", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-06T06:11:47.000Z" + }, + "end": { + "$date": "2021-03-06T06:36:03.000Z" + }, + "events": [ + { + "uuid": "208f7b79-71b9-499f-8398-b3e993990027", + "start": { + "$date": "2021-03-06T06:11:47.000Z" + }, + "end": { + "$date": "2021-03-06T06:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20700285-e3b3-4986-844e-e10579203094", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T06:11:49.000Z" + }, + "end": { + "$date": "2021-03-06T06:36:00.000Z" + }, + "events": [ + { + "uuid": "3a976add-6e21-424e-8230-d04352ea0775", + "start": { + "$date": "2021-03-06T06:11:49.000Z" + }, + "end": { + "$date": "2021-03-06T06:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "981df861-c45a-4138-83ea-252d014dd10a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-06T06:14:17.000Z" + }, + "end": { + "$date": "2021-03-06T08:59:49.000Z" + }, + "events": [ + { + "uuid": "db4d3efd-21c6-4e67-a249-cdf2563f5da0", + "start": { + "$date": "2021-03-06T06:14:17.000Z" + }, + "end": { + "$date": "2021-03-06T08:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "3afddc7c-ddd3-4a08-ae67-3d27f3999fa4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T06:33:24.000Z" + }, + "end": { + "$date": "2021-03-06T07:00:53.000Z" + }, + "events": [ + { + "uuid": "a660f915-8828-4a71-be97-82ebd396d9ed", + "start": { + "$date": "2021-03-06T06:33:24.000Z" + }, + "end": { + "$date": "2021-03-06T07:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fb0206f-6c48-4415-96a9-a046babd2586", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T06:40:02.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:27.000Z" + }, + "events": [ + { + "uuid": "c8a15c4f-2d41-42eb-8e5a-06525696c73c", + "start": { + "$date": "2021-03-06T06:40:02.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7dc34cc-1b39-4561-b504-2502cf718aa8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T06:40:00.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:31.000Z" + }, + "events": [ + { + "uuid": "378cf7c3-c0e0-470c-b4d1-e2a6b240d323", + "start": { + "$date": "2021-03-06T06:40:00.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0649c854-3557-470e-af54-a6dd6fed6b11", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T06:40:27.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:23.000Z" + }, + "events": [ + { + "uuid": "35cc3895-22c1-4b6c-b388-06a97a621e98", + "start": { + "$date": "2021-03-06T06:40:27.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ef463a7-aca5-48a9-a031-db581fbcfeb7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T06:40:39.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:24.000Z" + }, + "events": [ + { + "uuid": "8ba017f2-85d4-4ee6-a720-45caaf2433c6", + "start": { + "$date": "2021-03-06T06:40:39.000Z" + }, + "end": { + "$date": "2021-03-06T06:58:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d6ba15e-8d35-4a02-85d2-a5dd5ac3c93f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T07:00:57.000Z" + }, + "end": { + "$date": "2021-03-06T07:24:23.000Z" + }, + "events": [ + { + "uuid": "41418b8b-f050-42e7-9f20-2397e16dcf28", + "start": { + "$date": "2021-03-06T07:00:57.000Z" + }, + "end": { + "$date": "2021-03-06T07:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60b3889c-385e-400c-ad2f-9d1568e89666", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T07:01:01.000Z" + }, + "end": { + "$date": "2021-03-06T07:24:27.000Z" + }, + "events": [ + { + "uuid": "07b9db42-1066-4086-a8db-b1889dbaaa7f", + "start": { + "$date": "2021-03-06T07:01:01.000Z" + }, + "end": { + "$date": "2021-03-06T07:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c17aa22-7318-43d9-8352-6fd2f43e6572", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T07:01:02.000Z" + }, + "end": { + "$date": "2021-03-06T07:24:18.000Z" + }, + "events": [ + { + "uuid": "0db19bf7-15a0-4e77-ae1f-2136e0c53993", + "start": { + "$date": "2021-03-06T07:01:02.000Z" + }, + "end": { + "$date": "2021-03-06T07:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd239ec4-76ca-4b99-b70d-8eb0af904dd4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T07:28:13.000Z" + }, + "end": { + "$date": "2021-03-06T07:52:44.000Z" + }, + "events": [ + { + "uuid": "ca90c722-bc82-4a5c-9433-d46a80289d7b", + "start": { + "$date": "2021-03-06T07:28:13.000Z" + }, + "end": { + "$date": "2021-03-06T07:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae6bdd9b-f40c-4c3f-b840-644e1ba08c1a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T07:26:38.000Z" + }, + "end": { + "$date": "2021-03-06T07:52:44.000Z" + }, + "events": [ + { + "uuid": "ee693027-0248-4b78-8e38-7f8e1fc0e81c", + "start": { + "$date": "2021-03-06T07:26:38.000Z" + }, + "end": { + "$date": "2021-03-06T07:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7aca50bb-6521-4733-83e4-2b28101044fc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T07:26:42.000Z" + }, + "end": { + "$date": "2021-03-06T07:52:48.000Z" + }, + "events": [ + { + "uuid": "5c57751b-11a2-4862-87b3-9ecca1506b42", + "start": { + "$date": "2021-03-06T07:26:42.000Z" + }, + "end": { + "$date": "2021-03-06T07:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b9c9f0b-fe64-4523-8ac5-84e4ff347716", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-06T07:30:38.000Z" + }, + "end": { + "$date": "2021-03-06T08:16:00.000Z" + }, + "events": [ + { + "uuid": "88fe3c30-7e94-4fb2-bda0-32476d2b788f", + "start": { + "$date": "2021-03-06T07:30:38.000Z" + }, + "end": { + "$date": "2021-03-06T08:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e676faa4-15ce-4686-9959-9b6dbb70c503", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T07:30:51.000Z" + }, + "end": { + "$date": "2021-03-06T08:33:33.000Z" + }, + "events": [ + { + "uuid": "83360002-4f15-42c1-878d-c850a7bebe27", + "start": { + "$date": "2021-03-06T07:30:51.000Z" + }, + "end": { + "$date": "2021-03-06T08:12:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f61c367-67e5-4cf0-84f7-3a31477f1ea8", + "start": { + "$date": "2021-03-06T08:12:51.000Z" + }, + "end": { + "$date": "2021-03-06T08:17:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3eb55120-b3a2-445e-b1c5-ce134680f602", + "start": { + "$date": "2021-03-06T08:17:51.000Z" + }, + "end": { + "$date": "2021-03-06T08:27:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d72c4c9-d609-45fc-9c79-ea5a79473573", + "start": { + "$date": "2021-03-06T08:27:51.000Z" + }, + "end": { + "$date": "2021-03-06T08:29:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "075f0667-de7e-438c-a98b-d3758a73d3b9", + "start": { + "$date": "2021-03-06T08:29:51.000Z" + }, + "end": { + "$date": "2021-03-06T08:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0e949fd0-e9a8-4e84-ad25-2a053a804aa8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T08:29:07.000Z" + }, + "end": { + "$date": "2021-03-06T08:32:19.000Z" + }, + "events": [ + { + "uuid": "13ec5543-44c9-4b4d-ae7f-5a306b6c06c3", + "start": { + "$date": "2021-03-06T08:29:07.000Z" + }, + "end": { + "$date": "2021-03-06T08:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "3f4bfac1-9693-46a7-b963-e9eb8122d2f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T15:22:37.000Z" + }, + "end": { + "$date": "2021-03-06T16:07:39.000Z" + }, + "events": [ + { + "uuid": "72484e99-e908-4b99-89b1-bc89acbaa91e", + "start": { + "$date": "2021-03-06T15:22:37.000Z" + }, + "end": { + "$date": "2021-03-06T16:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bdd7be7-e660-4ef3-9f06-0f6a6dbc9740", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T16:07:48.000Z" + }, + "end": { + "$date": "2021-03-06T16:26:19.000Z" + }, + "events": [ + { + "uuid": "207c62af-2e7c-4119-a4c6-65f61ae90e28", + "start": { + "$date": "2021-03-06T16:07:48.000Z" + }, + "end": { + "$date": "2021-03-06T16:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8746332f-fd49-4fbb-b26a-67266a1e0392", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T17:35:25.000Z" + }, + "end": { + "$date": "2021-03-06T18:23:30.000Z" + }, + "events": [ + { + "uuid": "af9707c8-3930-474e-b4f0-746633db3273", + "start": { + "$date": "2021-03-06T17:35:25.000Z" + }, + "end": { + "$date": "2021-03-06T18:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f657bb4-b09d-4a2f-89c5-419666050711", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T17:35:26.000Z" + }, + "end": { + "$date": "2021-03-06T18:23:36.000Z" + }, + "events": [ + { + "uuid": "f40b1e33-9570-4621-b5ba-07e5441ed7e8", + "start": { + "$date": "2021-03-06T17:35:26.000Z" + }, + "end": { + "$date": "2021-03-06T18:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ef12561-e978-4fb9-a4c4-ec7c2d72aaf3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T17:42:48.000Z" + }, + "end": { + "$date": "2021-03-06T17:53:32.000Z" + }, + "events": [ + { + "uuid": "405e382a-0703-4976-9d58-9e1b06191bf5", + "start": { + "$date": "2021-03-06T17:42:48.000Z" + }, + "end": { + "$date": "2021-03-06T17:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85d9db36-41e0-444c-8f2f-334cf1a9e739", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T17:56:18.000Z" + }, + "end": { + "$date": "2021-03-06T18:24:47.000Z" + }, + "events": [ + { + "uuid": "b7a2a35f-54d8-4bfd-b39b-6ae4e43f6270", + "start": { + "$date": "2021-03-06T17:56:18.000Z" + }, + "end": { + "$date": "2021-03-06T18:24:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31f9c921-b57d-4edb-81ee-71d569fa163c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T18:26:46.000Z" + }, + "end": { + "$date": "2021-03-06T18:46:11.000Z" + }, + "events": [ + { + "uuid": "c0078007-83dc-48e2-ba07-55a3cf0a6b34", + "start": { + "$date": "2021-03-06T18:26:46.000Z" + }, + "end": { + "$date": "2021-03-06T18:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6bbf122-9130-492b-86c6-eb7c40e6cff0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T18:26:47.000Z" + }, + "end": { + "$date": "2021-03-06T18:46:17.000Z" + }, + "events": [ + { + "uuid": "25459c1d-6ea3-459a-a1b3-08a5f29cac23", + "start": { + "$date": "2021-03-06T18:26:47.000Z" + }, + "end": { + "$date": "2021-03-06T18:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", + "uuid": "05a0c561-e75b-4e83-8bb6-a377556b3118", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-06T19:04:56.000Z" + }, + "end": { + "$date": "2021-03-06T19:49:43.000Z" + }, + "events": [ + { + "uuid": "7e6f2851-bd02-4de5-b9b1-bae959e82be7", + "start": { + "$date": "2021-03-06T19:04:56.000Z" + }, + "end": { + "$date": "2021-03-06T19:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c630564-8982-42dc-8e38-e7ae0efd3318", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T19:22:01.000Z" + }, + "end": { + "$date": "2021-03-06T19:37:07.000Z" + }, + "events": [ + { + "uuid": "8a70a40e-309f-495c-bc59-a0281c7a4329", + "start": { + "$date": "2021-03-06T19:22:01.000Z" + }, + "end": { + "$date": "2021-03-06T19:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "40e93b6b-841b-434b-95a1-4202dd26a74d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T21:05:36.000Z" + }, + "end": { + "$date": "2021-03-06T22:47:26.000Z" + }, + "events": [ + { + "uuid": "81d796de-84d0-404a-81f9-3633deaaaf89", + "start": { + "$date": "2021-03-06T21:05:36.000Z" + }, + "end": { + "$date": "2021-03-06T22:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5b1f8257-729e-4484-b285-185b7addfe18", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-06T21:21:28.000Z" + }, + "end": { + "$date": "2021-03-06T22:11:12.000Z" + }, + "events": [ + { + "uuid": "0cc1b4c4-6695-4d26-88eb-cc992111b4c9", + "start": { + "$date": "2021-03-06T21:21:28.000Z" + }, + "end": { + "$date": "2021-03-06T22:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "d13f5957-3cf8-4737-8503-ebf5533ef08b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T22:03:31.000Z" + }, + "end": { + "$date": "2021-03-06T22:05:56.000Z" + }, + "events": [ + { + "uuid": "b1a7ff99-b040-4e25-a3d9-7d9542ccceee", + "start": { + "$date": "2021-03-06T22:03:31.000Z" + }, + "end": { + "$date": "2021-03-06T22:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "f4c252c6-6f65-4047-86fb-6e1d89e6db66", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T22:12:31.000Z" + }, + "end": { + "$date": "2021-03-06T22:45:23.000Z" + }, + "events": [ + { + "uuid": "ab3b0bd1-0578-46ad-9993-09fea518180b", + "start": { + "$date": "2021-03-06T22:12:31.000Z" + }, + "end": { + "$date": "2021-03-06T22:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2adf5785-7646-49a1-bad5-593d5d9c64f8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-06T22:16:57.000Z" + }, + "end": { + "$date": "2021-03-06T22:58:03.000Z" + }, + "events": [ + { + "uuid": "18a47f3a-f49f-45d1-b0f0-47b5481b0108", + "start": { + "$date": "2021-03-06T22:16:57.000Z" + }, + "end": { + "$date": "2021-03-06T22:58:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aaca2e0-e3fb-4a16-a61c-3357a0bc9f3f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T22:42:29.000Z" + }, + "end": { + "$date": "2021-03-06T22:59:42.000Z" + }, + "events": [ + { + "uuid": "179c6851-3ed5-434b-99c6-8b56e6b425fb", + "start": { + "$date": "2021-03-06T22:42:29.000Z" + }, + "end": { + "$date": "2021-03-06T22:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1aae73cc-47b0-4851-b127-46f5c47d384b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-06T22:45:43.000Z" + }, + "end": { + "$date": "2021-03-07T00:22:16.000Z" + }, + "events": [ + { + "uuid": "6c88cf88-a036-4be8-b440-71b21c6fdf16", + "start": { + "$date": "2021-03-06T22:45:43.000Z" + }, + "end": { + "$date": "2021-03-06T23:51:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9825041d-43d7-4a25-af95-28b2e0c6da35", + "start": { + "$date": "2021-03-06T23:51:43.000Z" + }, + "end": { + "$date": "2021-03-06T23:56:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f97949a4-d6f1-4ab3-b9c9-38483219a728", + "start": { + "$date": "2021-03-06T23:56:43.000Z" + }, + "end": { + "$date": "2021-03-07T00:06:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffa9234b-33b5-4f11-8c0f-d015486fd5f4", + "start": { + "$date": "2021-03-07T00:06:43.000Z" + }, + "end": { + "$date": "2021-03-07T00:18:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de64a747-c73a-42e2-bbde-1b0af833bf30", + "start": { + "$date": "2021-03-07T00:18:43.000Z" + }, + "end": { + "$date": "2021-03-07T00:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2be93e5d-5a69-44a5-8fbb-cd9bbe3712f7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T23:00:22.000Z" + }, + "end": { + "$date": "2021-03-06T23:01:37.000Z" + }, + "events": [ + { + "uuid": "6cf51ba2-84a9-46a7-ac5f-ea905cd26380", + "start": { + "$date": "2021-03-06T23:00:22.000Z" + }, + "end": { + "$date": "2021-03-06T23:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0a3f177e-23b4-40b5-87a7-53194c4c119d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T23:01:39.000Z" + }, + "end": { + "$date": "2021-03-06T23:02:48.000Z" + }, + "events": [ + { + "uuid": "c88ba07c-cfb9-4cfb-abb0-04b5d9b445ed", + "start": { + "$date": "2021-03-06T23:01:39.000Z" + }, + "end": { + "$date": "2021-03-06T23:02:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3c705131-71bc-4eac-9d4d-f44b90db4915", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-06T23:02:13.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:48.000Z" + }, + "events": [ + { + "uuid": "fe238707-912d-4e1d-81a6-a084f415e239", + "start": { + "$date": "2021-03-06T23:02:13.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c1a536fc-4722-4473-bb34-5d3445cc156e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T23:02:54.000Z" + }, + "end": { + "$date": "2021-03-06T23:43:03.000Z" + }, + "events": [ + { + "uuid": "38f2df39-9a78-4557-a28e-72e8ab7a5053", + "start": { + "$date": "2021-03-06T23:02:54.000Z" + }, + "end": { + "$date": "2021-03-06T23:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f579e46c-47f1-4b52-aaa2-86b8d0eec2cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-06T23:33:48.000Z" + }, + "end": { + "$date": "2021-03-06T23:35:23.000Z" + }, + "events": [ + { + "uuid": "dd14722f-3710-4ca2-a0b4-a540b8cd59d2", + "start": { + "$date": "2021-03-06T23:33:48.000Z" + }, + "end": { + "$date": "2021-03-06T23:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "51671ca9-32f8-4a61-954e-666e7dc27ece", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-06T23:35:33.000Z" + }, + "end": { + "$date": "2021-03-06T23:45:59.000Z" + }, + "events": [ + { + "uuid": "0b8928cd-e149-485a-8791-1316e932d71a", + "start": { + "$date": "2021-03-06T23:35:33.000Z" + }, + "end": { + "$date": "2021-03-06T23:45:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dbb63d9e-5d1c-481b-b730-0dfb9dc22532", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-06T23:45:00.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:35.000Z" + }, + "events": [ + { + "uuid": "ab7ae148-758f-4002-8cad-6190e6f56aaa", + "start": { + "$date": "2021-03-06T23:45:00.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2f99d16e-6819-4ca7-a790-d135dd9a5540", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-06T23:46:14.000Z" + }, + "end": { + "$date": "2021-03-07T00:19:36.000Z" + }, + "events": [ + { + "uuid": "ff4ecc98-6e32-4f9b-8725-4ee77456782e", + "start": { + "$date": "2021-03-06T23:46:14.000Z" + }, + "end": { + "$date": "2021-03-07T00:19:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c329bef-6367-47b4-898d-d2f7bec8aea3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-06T23:46:24.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:47.000Z" + }, + "events": [ + { + "uuid": "3ff690a5-6f64-45d9-bd12-ca64c052e3c8", + "start": { + "$date": "2021-03-06T23:46:24.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7d93f355-46ce-4aaa-a978-7c3c9976e9ff", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-06T23:47:27.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:48.000Z" + }, + "events": [ + { + "uuid": "dfb2cc60-89dc-4fe9-87df-7d04b6a34857", + "start": { + "$date": "2021-03-06T23:47:27.000Z" + }, + "end": { + "$date": "2021-03-07T00:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "452887c4-4b65-483a-98f7-d9472dd5b507", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T00:05:10.000Z" + }, + "end": { + "$date": "2021-03-07T00:26:08.000Z" + }, + "events": [ + { + "uuid": "6816f18e-3ee1-45c4-b69f-9d6d03f69fc0", + "start": { + "$date": "2021-03-07T00:05:10.000Z" + }, + "end": { + "$date": "2021-03-07T00:26:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "57713f79-eb7b-461d-9e83-5be93c1993ea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-07T00:04:37.000Z" + }, + "end": { + "$date": "2021-03-07T00:05:42.000Z" + }, + "events": [ + { + "uuid": "d9bed63b-a081-4757-846e-47db228e4139", + "start": { + "$date": "2021-03-07T00:04:37.000Z" + }, + "end": { + "$date": "2021-03-07T00:05:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7ece9758-3f13-4cb0-8da1-e495fee68f1b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-07T00:07:08.000Z" + }, + "end": { + "$date": "2021-03-07T02:39:04.000Z" + }, + "events": [ + { + "uuid": "fbb24847-82e8-48c6-884d-b7b5709a544e", + "start": { + "$date": "2021-03-07T00:07:08.000Z" + }, + "end": { + "$date": "2021-03-07T02:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "4b43c417-1ecd-440d-8e37-c777af98aca4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T00:23:15.000Z" + }, + "end": { + "$date": "2021-03-07T00:29:01.000Z" + }, + "events": [ + { + "uuid": "f0ee5ad8-4998-4cbd-b386-c6b9dc6f708c", + "start": { + "$date": "2021-03-07T00:23:15.000Z" + }, + "end": { + "$date": "2021-03-07T00:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bc424de-9738-41c5-a1dc-b09f4363174f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T00:30:38.000Z" + }, + "end": { + "$date": "2021-03-07T00:47:06.000Z" + }, + "events": [ + { + "uuid": "80eff374-b802-47aa-89ac-1a2c43cc2abe", + "start": { + "$date": "2021-03-07T00:30:38.000Z" + }, + "end": { + "$date": "2021-03-07T00:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad75c58e-7e59-4f25-9c40-d15d1b1c4b67", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T00:30:33.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:58.000Z" + }, + "events": [ + { + "uuid": "26547a70-0153-404c-abc6-55603c652ed4", + "start": { + "$date": "2021-03-07T00:30:33.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98424fbf-effe-4cfb-b696-c15a672113d4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T00:30:32.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:53.000Z" + }, + "events": [ + { + "uuid": "6420b0de-7802-4e57-a1ef-913cc66b6527", + "start": { + "$date": "2021-03-07T00:30:32.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bbf08e7-9cb0-4a59-ba93-fab59151daca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T00:30:31.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:50.000Z" + }, + "events": [ + { + "uuid": "027f9b1f-5c06-4b66-be18-2682ec952d0e", + "start": { + "$date": "2021-03-07T00:30:31.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc063ee9-4497-42c3-8a65-e3df9ef6e3e6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T00:30:34.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:59.000Z" + }, + "events": [ + { + "uuid": "b83d0c52-5c18-4334-8650-04f766e14777", + "start": { + "$date": "2021-03-07T00:30:34.000Z" + }, + "end": { + "$date": "2021-03-07T00:46:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8de48970-134b-421a-94ac-d16a78459a10", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T00:29:11.000Z" + }, + "end": { + "$date": "2021-03-07T02:26:57.000Z" + }, + "events": [ + { + "uuid": "2aeb4463-b2d7-4a5c-a422-e3de0d0c7014", + "start": { + "$date": "2021-03-07T00:29:11.000Z" + }, + "end": { + "$date": "2021-03-07T02:14:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1328498f-aa2e-4209-9dac-6bcf818cfb14", + "start": { + "$date": "2021-03-07T02:14:11.000Z" + }, + "end": { + "$date": "2021-03-07T02:15:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d4663021-29ac-4d90-8e96-ea943a373f4e", + "start": { + "$date": "2021-03-07T02:15:11.000Z" + }, + "end": { + "$date": "2021-03-07T02:26:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d566f2f-b3cc-4680-b202-434cb0952a51", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T00:49:08.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:58.000Z" + }, + "events": [ + { + "uuid": "bf17f228-62bd-4b85-ac14-d9e8260e7071", + "start": { + "$date": "2021-03-07T00:49:08.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "687e485d-0b92-4294-8b8a-342518e5ec2d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T00:49:03.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:43.000Z" + }, + "events": [ + { + "uuid": "0269d7e9-7555-4d12-8057-97a9ddca7f07", + "start": { + "$date": "2021-03-07T00:49:03.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd3965c4-2acd-4da1-8e0b-1cbb00f6ba60", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T00:49:03.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:48.000Z" + }, + "events": [ + { + "uuid": "64421b7d-003c-4ca3-9d61-f2535619c614", + "start": { + "$date": "2021-03-07T00:49:03.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51452ed7-208e-4995-a996-011cca2d4f38", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T00:49:32.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:41.000Z" + }, + "events": [ + { + "uuid": "bf5214d0-6681-4a42-97ac-e82e2e402cf2", + "start": { + "$date": "2021-03-07T00:49:32.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69c54d6e-a232-45c3-b08a-fb45b9710736", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T00:49:04.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:50.000Z" + }, + "events": [ + { + "uuid": "b057f995-77a8-4381-b53e-8ee2055d3c96", + "start": { + "$date": "2021-03-07T00:49:04.000Z" + }, + "end": { + "$date": "2021-03-07T01:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "396a77bf-3d2c-4a8c-a611-46c15d0d62b9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T01:09:29.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:49.000Z" + }, + "events": [ + { + "uuid": "ef98555c-82ca-43fe-96f6-f15233527ab7", + "start": { + "$date": "2021-03-07T01:09:29.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b9a11a9-d514-4748-9618-94cb8e86d2e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T01:09:19.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:44.000Z" + }, + "events": [ + { + "uuid": "f36255fb-dbf3-4408-a2f0-4db57540cf7a", + "start": { + "$date": "2021-03-07T01:09:19.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da062ae8-f577-4dd6-b3ba-99b6d098ae8d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T01:09:23.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:45.000Z" + }, + "events": [ + { + "uuid": "275f68b7-196a-4145-be45-d16a9d1fe969", + "start": { + "$date": "2021-03-07T01:09:23.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15cde371-c7db-4609-97e0-6e29fa49117b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T01:09:26.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:47.000Z" + }, + "events": [ + { + "uuid": "8cfd7c0e-552b-4714-82b3-70219d72c6ca", + "start": { + "$date": "2021-03-07T01:09:26.000Z" + }, + "end": { + "$date": "2021-03-07T01:30:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "149be6c8-0962-4c67-9574-0c842ba9a1e3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T01:31:57.000Z" + }, + "end": { + "$date": "2021-03-07T03:45:14.000Z" + }, + "events": [ + { + "uuid": "249d1e5b-a6d1-467a-a3a9-a3eca789f29e", + "start": { + "$date": "2021-03-07T01:31:57.000Z" + }, + "end": { + "$date": "2021-03-07T03:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "01bec78c-5dda-4730-ae04-6d159813a6d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T01:34:53.000Z" + }, + "end": { + "$date": "2021-03-07T01:39:58.000Z" + }, + "events": [ + { + "uuid": "317bf92f-4b15-4a79-9f50-689b8c708491", + "start": { + "$date": "2021-03-07T01:34:53.000Z" + }, + "end": { + "$date": "2021-03-07T01:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "34c206f7-6a38-49da-acb5-d78d07dd3691", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T01:43:38.000Z" + }, + "end": { + "$date": "2021-03-07T02:45:35.000Z" + }, + "events": [ + { + "uuid": "5bcfbc10-625f-4dba-8823-488e8aa2a706", + "start": { + "$date": "2021-03-07T01:43:38.000Z" + }, + "end": { + "$date": "2021-03-07T02:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6378b694-dcbe-464f-ad78-06db2f602b99", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-07T02:40:25.000Z" + }, + "end": { + "$date": "2021-03-07T03:12:12.000Z" + }, + "events": [ + { + "uuid": "fac91f7d-8c95-4de6-9315-60db0c428297", + "start": { + "$date": "2021-03-07T02:40:25.000Z" + }, + "end": { + "$date": "2021-03-07T03:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b3e03598-45dd-4b75-ab73-afa2a31300fa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T02:27:07.000Z" + }, + "end": { + "$date": "2021-03-07T02:34:57.000Z" + }, + "events": [ + { + "uuid": "3febdad5-5957-4314-aece-64ac1282df2b", + "start": { + "$date": "2021-03-07T02:27:07.000Z" + }, + "end": { + "$date": "2021-03-07T02:34:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1f4541f5-5d7c-4775-b4db-e5afe2fd3d1c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-07T03:10:05.000Z" + }, + "end": { + "$date": "2021-03-07T06:16:28.000Z" + }, + "events": [ + { + "uuid": "59a0396d-57c1-48c3-8451-39ad18cceb23", + "start": { + "$date": "2021-03-07T03:10:05.000Z" + }, + "end": { + "$date": "2021-03-07T06:16:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b93d83ae-165c-4842-8700-71742ca56743", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-07T03:32:16.000Z" + }, + "end": { + "$date": "2021-03-07T04:04:52.000Z" + }, + "events": [ + { + "uuid": "30baa715-02ba-463b-ac1b-50bb45e23f70", + "start": { + "$date": "2021-03-07T03:32:16.000Z" + }, + "end": { + "$date": "2021-03-07T04:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "899a28ba-de37-4337-a5bd-f468a13f2f93", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T03:57:45.000Z" + }, + "end": { + "$date": "2021-03-07T04:23:44.000Z" + }, + "events": [ + { + "uuid": "ab648df5-a000-4179-84c2-939c58b5e1e5", + "start": { + "$date": "2021-03-07T03:57:45.000Z" + }, + "end": { + "$date": "2021-03-07T04:23:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d995ff0-7f18-4676-803d-ab3150716034", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T03:57:55.000Z" + }, + "end": { + "$date": "2021-03-07T04:23:26.000Z" + }, + "events": [ + { + "uuid": "f4e40754-0197-462b-a36d-b8838b496769", + "start": { + "$date": "2021-03-07T03:57:55.000Z" + }, + "end": { + "$date": "2021-03-07T04:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c821ec3-9abd-4474-a51d-46b97642ddfb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-07T04:16:37.000Z" + }, + "end": { + "$date": "2021-03-07T04:55:24.000Z" + }, + "events": [ + { + "uuid": "73e343aa-6d53-4a4f-9e46-425bd19f14b6", + "start": { + "$date": "2021-03-07T04:16:37.000Z" + }, + "end": { + "$date": "2021-03-07T04:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0153ba07-7cac-419e-9072-c98e44fd2a75", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T04:17:32.000Z" + }, + "end": { + "$date": "2021-03-07T04:18:47.000Z" + }, + "events": [ + { + "uuid": "5bf04d2b-dd8f-49f8-aa6a-7d302448f8ec", + "start": { + "$date": "2021-03-07T04:17:32.000Z" + }, + "end": { + "$date": "2021-03-07T04:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "bad89fea-5de2-4a00-b394-08dfc0ed5935", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-07T04:20:08.000Z" + }, + "end": { + "$date": "2021-03-07T04:54:24.000Z" + }, + "events": [ + { + "uuid": "e1e21e1a-7e4e-49f0-b98e-bcd02416d687", + "start": { + "$date": "2021-03-07T04:20:08.000Z" + }, + "end": { + "$date": "2021-03-07T04:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ce22064-6116-4100-a01e-0eeacfcd7632", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T04:26:12.000Z" + }, + "end": { + "$date": "2021-03-07T04:42:53.000Z" + }, + "events": [ + { + "uuid": "803136c0-7369-477f-b900-aa14af70c6f5", + "start": { + "$date": "2021-03-07T04:26:12.000Z" + }, + "end": { + "$date": "2021-03-07T04:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc49ce68-ae89-4423-ae37-6a3b34227b32", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T04:26:46.000Z" + }, + "end": { + "$date": "2021-03-07T04:42:47.000Z" + }, + "events": [ + { + "uuid": "fb57d75b-0e29-4d80-9618-aa6b2540c464", + "start": { + "$date": "2021-03-07T04:26:46.000Z" + }, + "end": { + "$date": "2021-03-07T04:42:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c272742b-c1b0-4922-9e4c-9a9cf1b5e738", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-07T04:40:47.000Z" + }, + "end": { + "$date": "2021-03-07T10:32:32.000Z" + }, + "events": [ + { + "uuid": "3b5cdf06-f78b-4c5c-b1d0-1a9b7a7435bf", + "start": { + "$date": "2021-03-07T04:40:47.000Z" + }, + "end": { + "$date": "2021-03-07T10:32:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b262c2b0-046b-4c45-b7f9-00e5ce2cf342", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T05:38:26.000Z" + }, + "end": { + "$date": "2021-03-07T05:40:44.000Z" + }, + "events": [ + { + "uuid": "99212cbb-2b96-4e26-b744-b4e04b0cb1ea", + "start": { + "$date": "2021-03-07T05:38:26.000Z" + }, + "end": { + "$date": "2021-03-07T05:40:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "833e27c6-18ad-459e-ab47-493b3fc32d11", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T04:45:11.000Z" + }, + "end": { + "$date": "2021-03-07T05:09:43.000Z" + }, + "events": [ + { + "uuid": "142cfe0d-bdb3-4088-a144-1669a0fe7117", + "start": { + "$date": "2021-03-07T04:45:11.000Z" + }, + "end": { + "$date": "2021-03-07T05:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "616e5291-724c-4ae7-b7b3-a04d4cec831b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-07T04:54:54.000Z" + }, + "end": { + "$date": "2021-03-07T05:45:24.000Z" + }, + "events": [ + { + "uuid": "70b8485b-9321-4525-b55f-4d1a71fc4076", + "start": { + "$date": "2021-03-07T04:54:54.000Z" + }, + "end": { + "$date": "2021-03-07T05:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f94202e4-8dff-4f8b-b031-36c10f6c2342", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-07T04:55:56.000Z" + }, + "end": { + "$date": "2021-03-07T04:57:26.000Z" + }, + "events": [ + { + "uuid": "bf3a690e-2069-4c54-885b-897829360d1e", + "start": { + "$date": "2021-03-07T04:55:56.000Z" + }, + "end": { + "$date": "2021-03-07T04:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acbd6f9c-73d2-4f83-aac5-4e1b75c4611a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T05:38:22.000Z" + }, + "end": { + "$date": "2021-03-07T05:39:28.000Z" + }, + "events": [ + { + "uuid": "ae8fda7d-91dc-4687-bc4d-c3f1914b5fec", + "start": { + "$date": "2021-03-07T05:38:22.000Z" + }, + "end": { + "$date": "2021-03-07T05:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b7469e2-04d3-4b0b-9530-8752df45fcd4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T05:22:22.000Z" + }, + "end": { + "$date": "2021-03-07T05:38:17.000Z" + }, + "events": [ + { + "uuid": "5d2ac7fb-84b7-457b-b9e6-ecdc0e736eb6", + "start": { + "$date": "2021-03-07T05:22:22.000Z" + }, + "end": { + "$date": "2021-03-07T05:38:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bdc817c-486e-4760-81ec-5dc5238131b1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T05:22:24.000Z" + }, + "end": { + "$date": "2021-03-07T05:38:20.000Z" + }, + "events": [ + { + "uuid": "3050d9eb-b3ec-41f3-9b87-66e003ac42fe", + "start": { + "$date": "2021-03-07T05:22:24.000Z" + }, + "end": { + "$date": "2021-03-07T05:38:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3d057262-f87f-45b0-aaba-09420a260e19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T05:29:30.000Z" + }, + "end": { + "$date": "2021-03-07T06:13:53.000Z" + }, + "events": [ + { + "uuid": "62dcafba-316d-417d-80b0-71c67b76648b", + "start": { + "$date": "2021-03-07T05:29:30.000Z" + }, + "end": { + "$date": "2021-03-07T06:13:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01058e46-edb8-426a-bbd2-d653119bc458", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-07T05:31:17.000Z" + }, + "end": { + "$date": "2021-03-07T05:38:37.000Z" + }, + "events": [ + { + "uuid": "fd39c7ad-2976-473d-9483-77954fd0515c", + "start": { + "$date": "2021-03-07T05:31:17.000Z" + }, + "end": { + "$date": "2021-03-07T05:38:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "85b0c9fe-0872-46d8-88ed-9a9421b6e6b3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-07T05:38:52.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:04.000Z" + }, + "events": [ + { + "uuid": "c961c893-b2d2-41a4-8558-7c6a19091f30", + "start": { + "$date": "2021-03-07T05:38:52.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "49829689-b410-49ae-8e3f-eca74f113446", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T05:40:27.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:16.000Z" + }, + "events": [ + { + "uuid": "24791547-5bd2-4038-b3f8-474b902a2e45", + "start": { + "$date": "2021-03-07T05:40:27.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "02503ebc-9645-4d76-9780-79dc42575469", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T05:40:37.000Z" + }, + "end": { + "$date": "2021-03-07T06:27:48.000Z" + }, + "events": [ + { + "uuid": "76de275b-cdaf-4d91-92ab-4c3070ebe87a", + "start": { + "$date": "2021-03-07T05:40:37.000Z" + }, + "end": { + "$date": "2021-03-07T06:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4298f0dd-2c8d-4bbd-966e-09550b167ece", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T05:41:29.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:34.000Z" + }, + "events": [ + { + "uuid": "409b05e2-82b8-4ced-b0ce-06f2d7fb108a", + "start": { + "$date": "2021-03-07T05:41:29.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "1a20d6a9-b3e4-44db-b320-43072189f76a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-07T06:09:52.000Z" + }, + "end": { + "$date": "2021-03-07T06:51:17.000Z" + }, + "events": [ + { + "uuid": "5767c537-86cc-45fd-8331-bbd5b1dc13d6", + "start": { + "$date": "2021-03-07T06:09:52.000Z" + }, + "end": { + "$date": "2021-03-07T06:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "60735ec4-c2ee-4659-a757-db5448167d50", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T06:28:55.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:12.000Z" + }, + "events": [ + { + "uuid": "cbd0a180-9895-41da-ad7c-daa0d3da4520", + "start": { + "$date": "2021-03-07T06:28:55.000Z" + }, + "end": { + "$date": "2021-03-07T06:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "5fb550bb-06ce-406e-83c3-3186d273fb2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T06:33:06.000Z" + }, + "end": { + "$date": "2021-03-07T06:58:47.000Z" + }, + "events": [ + { + "uuid": "d4324f7f-4adc-418e-b950-bc7bd483b612", + "start": { + "$date": "2021-03-07T06:33:06.000Z" + }, + "end": { + "$date": "2021-03-07T06:58:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5dcdeb13-c2c6-4715-9037-45d7702840a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T06:51:19.000Z" + }, + "end": { + "$date": "2021-03-07T07:17:58.000Z" + }, + "events": [ + { + "uuid": "c9a7f761-92a9-4af3-bdb1-364a151601ae", + "start": { + "$date": "2021-03-07T06:51:19.000Z" + }, + "end": { + "$date": "2021-03-07T07:17:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c6e914eb-25e6-4c8d-99f8-4a732d4688ed", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-07T06:45:59.000Z" + }, + "end": { + "$date": "2021-03-07T07:13:22.000Z" + }, + "events": [ + { + "uuid": "818f0cc2-94ae-4a4c-9e2d-1c06a2854b1d", + "start": { + "$date": "2021-03-07T06:45:59.000Z" + }, + "end": { + "$date": "2021-03-07T07:13:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1889b6a3-4667-4dc8-b8b3-2a32c865a4dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T08:03:12.000Z" + }, + "end": { + "$date": "2021-03-07T08:04:03.000Z" + }, + "events": [ + { + "uuid": "2dd9722b-e9e2-4166-a171-6ae7acc397ba", + "start": { + "$date": "2021-03-07T08:03:12.000Z" + }, + "end": { + "$date": "2021-03-07T08:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73a24fd8-02a9-4c5b-a270-01c479c9cc44", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T07:02:08.000Z" + }, + "end": { + "$date": "2021-03-07T07:23:01.000Z" + }, + "events": [ + { + "uuid": "7c10af38-0c55-420a-9eed-7e7d44a3181f", + "start": { + "$date": "2021-03-07T07:02:08.000Z" + }, + "end": { + "$date": "2021-03-07T07:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17702039-957c-4da7-b7ca-fd35cdb405c8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T07:02:06.000Z" + }, + "end": { + "$date": "2021-03-07T07:22:51.000Z" + }, + "events": [ + { + "uuid": "ca9c3101-6429-4aa0-b9a4-acd01a055f31", + "start": { + "$date": "2021-03-07T07:02:06.000Z" + }, + "end": { + "$date": "2021-03-07T07:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "856884f8-2291-4726-902d-ad46d0ad0f9b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T07:02:49.000Z" + }, + "end": { + "$date": "2021-03-07T07:22:55.000Z" + }, + "events": [ + { + "uuid": "2f328fb4-a3dd-453c-9e73-1653ac7bbe76", + "start": { + "$date": "2021-03-07T07:02:49.000Z" + }, + "end": { + "$date": "2021-03-07T07:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "31e23c07-d34b-4574-b84e-10096c958ab5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-07T07:08:34.000Z" + }, + "end": { + "$date": "2021-03-07T08:27:51.000Z" + }, + "events": [ + { + "uuid": "6944764c-7c7e-47d7-89d2-60b1891ac1fb", + "start": { + "$date": "2021-03-07T07:08:34.000Z" + }, + "end": { + "$date": "2021-03-07T08:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1211ad9b-08b5-4bd6-94db-a676d2b3ced7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T07:25:04.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:14.000Z" + }, + "events": [ + { + "uuid": "968d38d8-034a-4c46-9a1e-4cf376dd1a2f", + "start": { + "$date": "2021-03-07T07:25:04.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ff4aa65-d3a9-438b-9544-41815fc570c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T07:25:07.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:12.000Z" + }, + "events": [ + { + "uuid": "a2cb6234-acba-45fd-b45a-802efd33f73c", + "start": { + "$date": "2021-03-07T07:25:07.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87bce27c-d850-48f0-b221-26d35e10446f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T07:25:04.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:05.000Z" + }, + "events": [ + { + "uuid": "512871df-c5e8-4d80-acfc-57768b9a0e1e", + "start": { + "$date": "2021-03-07T07:25:04.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0360ddb1-3e90-4012-be3d-70481966ecc0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T07:25:07.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:07.000Z" + }, + "events": [ + { + "uuid": "48535f26-2305-48fd-a6e2-253cb0ec6697", + "start": { + "$date": "2021-03-07T07:25:07.000Z" + }, + "end": { + "$date": "2021-03-07T07:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eb003ed-1f72-4c7f-9b37-8891802bb6ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T07:45:05.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:15.000Z" + }, + "events": [ + { + "uuid": "1deba40a-183b-4746-a389-d6cb90eba371", + "start": { + "$date": "2021-03-07T07:45:05.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37c0766c-d82a-4afe-ad71-b7d1aff79590", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T07:46:22.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:13.000Z" + }, + "events": [ + { + "uuid": "9e6318b7-d0f3-4695-b4f2-eec29e65e427", + "start": { + "$date": "2021-03-07T07:46:22.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "313ab32a-ac73-491f-a7d8-558429eea7df", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T07:45:04.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:11.000Z" + }, + "events": [ + { + "uuid": "b891e336-e189-45dd-abf0-3a3dd79e58e1", + "start": { + "$date": "2021-03-07T07:45:04.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48ebaadf-b7f4-4b99-a412-a9b66f84c85b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T07:45:08.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:14.000Z" + }, + "events": [ + { + "uuid": "57a6dbce-84de-43f6-94ae-047ce9b28f2c", + "start": { + "$date": "2021-03-07T07:45:08.000Z" + }, + "end": { + "$date": "2021-03-07T08:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c41e1f50-9f44-43a8-9010-0cbc35158ee0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T08:04:17.000Z" + }, + "end": { + "$date": "2021-03-07T08:48:24.000Z" + }, + "events": [ + { + "uuid": "886e797b-4524-4daf-adf2-1b8f3b0c9e60", + "start": { + "$date": "2021-03-07T08:04:17.000Z" + }, + "end": { + "$date": "2021-03-07T08:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a17ae462-98d0-4470-8291-2a6015f1b92b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-07T08:09:42.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:11.000Z" + }, + "events": [ + { + "uuid": "da2c1f4a-2fe9-4ec0-be66-1ce9b13963a5", + "start": { + "$date": "2021-03-07T08:09:42.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adb0117b-d888-462e-a9da-4a9a1d943e4a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T08:09:38.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:18.000Z" + }, + "events": [ + { + "uuid": "cf2eebc8-63c2-48b5-a0d0-308e7e8bd34c", + "start": { + "$date": "2021-03-07T08:09:38.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "143dc899-a887-4c4d-9647-b7e463612d84", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T08:09:40.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:11.000Z" + }, + "events": [ + { + "uuid": "b3f70b33-ca9c-49ec-be30-fdee381364cb", + "start": { + "$date": "2021-03-07T08:09:40.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c866e57b-2303-4d8e-923f-17e9da2d72d7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T08:09:40.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:24.000Z" + }, + "events": [ + { + "uuid": "e67ca492-77ca-4568-9377-f25350a31b44", + "start": { + "$date": "2021-03-07T08:09:40.000Z" + }, + "end": { + "$date": "2021-03-07T08:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e06e4289-b833-4cef-8d02-47ded5fda53b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-07T08:23:02.000Z" + }, + "end": { + "$date": "2021-03-07T09:03:42.000Z" + }, + "events": [ + { + "uuid": "5b1c9deb-3e47-4c66-9a91-fe23a06b5d4b", + "start": { + "$date": "2021-03-07T08:23:02.000Z" + }, + "end": { + "$date": "2021-03-07T09:03:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "00fa126e-7e2f-460d-aff9-fe02a6f8afd3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-07T08:28:47.000Z" + }, + "end": { + "$date": "2021-03-07T09:05:07.000Z" + }, + "events": [ + { + "uuid": "180e6f79-94e5-42a4-89a8-23ff8a9d21e2", + "start": { + "$date": "2021-03-07T08:28:47.000Z" + }, + "end": { + "$date": "2021-03-07T09:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fafa178a-cabe-4da9-9e4d-422a9dc1f302", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-07T08:49:57.000Z" + }, + "end": { + "$date": "2021-03-07T09:24:28.000Z" + }, + "events": [ + { + "uuid": "2509ef8b-a0cd-449a-9e99-c93d70b3e899", + "start": { + "$date": "2021-03-07T08:49:57.000Z" + }, + "end": { + "$date": "2021-03-07T09:24:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "23031049-c68b-46ed-b9b5-781f4218f699", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T08:48:28.000Z" + }, + "end": { + "$date": "2021-03-07T09:18:15.000Z" + }, + "events": [ + { + "uuid": "7625b42c-d579-4294-807b-10a06deebe2e", + "start": { + "$date": "2021-03-07T08:48:28.000Z" + }, + "end": { + "$date": "2021-03-07T09:18:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "5a5c4054-7c35-4bfd-b391-c64b34f222cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-07T09:12:26.000Z" + }, + "end": { + "$date": "2021-03-07T09:35:31.000Z" + }, + "events": [ + { + "uuid": "c0bd4018-4e71-4586-a5fd-1cdad545b434", + "start": { + "$date": "2021-03-07T09:12:26.000Z" + }, + "end": { + "$date": "2021-03-07T09:35:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f32a733-e9c3-4060-973c-3c5f6ecd8750", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-07T09:25:24.000Z" + }, + "end": { + "$date": "2021-03-07T09:36:57.000Z" + }, + "events": [ + { + "uuid": "1b932b3c-3b22-4545-826e-66d009bb4f30", + "start": { + "$date": "2021-03-07T09:25:24.000Z" + }, + "end": { + "$date": "2021-03-07T09:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1680159c-f83c-4973-b22c-520ed24722a7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-07T10:32:45.000Z" + }, + "end": { + "$date": "2021-03-07T11:01:31.000Z" + }, + "events": [ + { + "uuid": "4883986b-3372-460d-85c5-99407b771041", + "start": { + "$date": "2021-03-07T10:32:45.000Z" + }, + "end": { + "$date": "2021-03-07T11:01:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ce274901-eea6-49b6-8a34-fbb426635cd2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-07T16:02:05.000Z" + }, + "end": { + "$date": "2021-03-07T17:54:05.000Z" + }, + "events": [ + { + "uuid": "37366b8c-8f5f-40cd-af0e-fda67c9597d6", + "start": { + "$date": "2021-03-07T16:02:05.000Z" + }, + "end": { + "$date": "2021-03-07T17:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7e03449b-d9d2-465c-9eb2-2e772f2ef939", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T16:06:53.000Z" + }, + "end": { + "$date": "2021-03-07T16:08:14.000Z" + }, + "events": [ + { + "uuid": "e804c2f9-f699-44cf-b345-1266d2612ecd", + "start": { + "$date": "2021-03-07T16:06:53.000Z" + }, + "end": { + "$date": "2021-03-07T16:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ffa605cf-a5b1-4106-8d80-e4bf86da37b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T16:15:14.000Z" + }, + "end": { + "$date": "2021-03-07T18:42:13.000Z" + }, + "events": [ + { + "uuid": "383efc82-eeea-4340-b6f1-7cf9737b8e75", + "start": { + "$date": "2021-03-07T16:15:14.000Z" + }, + "end": { + "$date": "2021-03-07T18:42:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45dcd5b1-97a0-4518-82d9-c09b2c78b6e4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-07T17:25:21.000Z" + }, + "end": { + "$date": "2021-03-07T18:15:06.000Z" + }, + "events": [ + { + "uuid": "1b2488e5-fee1-4293-a7a0-734db23ec80c", + "start": { + "$date": "2021-03-07T17:25:21.000Z" + }, + "end": { + "$date": "2021-03-07T18:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9d3945b-9e28-4f18-ab58-76370696a859", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T17:42:38.000Z" + }, + "end": { + "$date": "2021-03-07T18:27:19.000Z" + }, + "events": [ + { + "uuid": "098a9769-f7c7-4b2b-9760-ede4da49bf8c", + "start": { + "$date": "2021-03-07T17:42:38.000Z" + }, + "end": { + "$date": "2021-03-07T18:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "d2ed1e3f-356f-400a-9d8f-d307aec9a904", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T19:18:12.000Z" + }, + "end": { + "$date": "2021-03-07T19:19:48.000Z" + }, + "events": [ + { + "uuid": "7e2949dc-380d-4780-a2c6-9f0686cb2fb5", + "start": { + "$date": "2021-03-07T19:18:12.000Z" + }, + "end": { + "$date": "2021-03-07T19:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "daaee569-129b-44b7-9ec9-d8ced9f53bac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-07T19:20:17.000Z" + }, + "end": { + "$date": "2021-03-07T20:02:05.000Z" + }, + "events": [ + { + "uuid": "ad32d2d1-8b72-4f24-a00c-fc5de4718946", + "start": { + "$date": "2021-03-07T19:20:17.000Z" + }, + "end": { + "$date": "2021-03-07T20:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a17ef93d-de49-4314-82ac-6d829e26feff", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-07T20:08:53.000Z" + }, + "end": { + "$date": "2021-03-07T21:20:24.000Z" + }, + "events": [ + { + "uuid": "9e689d77-cc1d-4936-93c5-3a2e0183cab7", + "start": { + "$date": "2021-03-07T20:08:53.000Z" + }, + "end": { + "$date": "2021-03-07T21:20:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9e164a10-a860-41b0-b9ca-3c357768efba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-07T20:30:52.000Z" + }, + "end": { + "$date": "2021-03-07T21:58:07.000Z" + }, + "events": [ + { + "uuid": "15c15ec2-8328-4bed-9b83-ecc5dcea82c6", + "start": { + "$date": "2021-03-07T20:30:52.000Z" + }, + "end": { + "$date": "2021-03-07T21:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2c8e436e-007b-4085-afa4-cbd78779fea5", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-07T22:52:05.000Z" + }, + "end": { + "$date": "2021-03-07T23:29:18.000Z" + }, + "events": [ + { + "uuid": "2786a159-378c-4884-92fd-be264ff94248", + "start": { + "$date": "2021-03-07T22:52:05.000Z" + }, + "end": { + "$date": "2021-03-07T23:23:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "506a9a2c-1a57-405d-88ca-228a42a547f4", + "start": { + "$date": "2021-03-07T23:23:05.000Z" + }, + "end": { + "$date": "2021-03-07T23:29:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2643fb8d-2218-4cd4-a56d-acaca3b206b8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-07T23:15:48.000Z" + }, + "end": { + "$date": "2021-03-08T02:29:37.000Z" + }, + "events": [ + { + "uuid": "f8cf8e95-fd8c-4c62-b291-b79af8418236", + "start": { + "$date": "2021-03-07T23:15:48.000Z" + }, + "end": { + "$date": "2021-03-08T02:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "455222c5-3616-4eb7-8e6d-3b07ae0a67a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T23:30:18.000Z" + }, + "end": { + "$date": "2021-03-07T23:47:33.000Z" + }, + "events": [ + { + "uuid": "12f978af-ef8b-4b30-bddc-4de3e08ead17", + "start": { + "$date": "2021-03-07T23:30:18.000Z" + }, + "end": { + "$date": "2021-03-07T23:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6df3cb86-cd67-45ad-bfb7-6e09569da175", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-07T23:44:54.000Z" + }, + "end": { + "$date": "2021-03-08T01:03:41.000Z" + }, + "events": [ + { + "uuid": "80cd2da5-086b-4b34-8d46-599eb5a2e21b", + "start": { + "$date": "2021-03-07T23:44:54.000Z" + }, + "end": { + "$date": "2021-03-08T01:03:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b196f699-92f9-45b1-b793-fef364a88717", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-07T23:50:28.000Z" + }, + "end": { + "$date": "2021-03-08T00:06:08.000Z" + }, + "events": [ + { + "uuid": "307816c0-f495-44e2-b8c1-48eaec521255", + "start": { + "$date": "2021-03-07T23:50:28.000Z" + }, + "end": { + "$date": "2021-03-08T00:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bc861ef7-d212-4f2f-84f4-886dcf39aa5b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-08T00:06:44.000Z" + }, + "end": { + "$date": "2021-03-08T00:34:46.000Z" + }, + "events": [ + { + "uuid": "cc16cc7b-e92b-4530-b4d5-9e4fbf12946c", + "start": { + "$date": "2021-03-08T00:06:44.000Z" + }, + "end": { + "$date": "2021-03-08T00:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecf3b242-c328-4550-a065-73b3cef84338", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-08T00:07:48.000Z" + }, + "end": { + "$date": "2021-03-08T00:31:53.000Z" + }, + "events": [ + { + "uuid": "d2c97369-11b8-4d37-8be4-3741d9fc2369", + "start": { + "$date": "2021-03-08T00:07:48.000Z" + }, + "end": { + "$date": "2021-03-08T00:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "737b3786-a954-4c2c-8801-7c3d7854e5de", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-08T02:39:23.000Z" + }, + "end": { + "$date": "2021-03-08T03:47:39.000Z" + }, + "events": [ + { + "uuid": "7591c4b8-9bbc-4751-8524-ce8a5e3dc5f9", + "start": { + "$date": "2021-03-08T02:39:23.000Z" + }, + "end": { + "$date": "2021-03-08T03:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "8ecb5f58-e913-4b2c-9b0e-e812a2dda688", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-08T03:19:09.000Z" + }, + "end": { + "$date": "2021-03-08T06:57:20.000Z" + }, + "events": [ + { + "uuid": "d0896d6b-883b-4e4c-889a-0ab8f05c868a", + "start": { + "$date": "2021-03-08T03:19:09.000Z" + }, + "end": { + "$date": "2021-03-08T06:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bda9c1c5-1240-4336-8182-51410c0f0870", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-08T03:30:02.000Z" + }, + "end": { + "$date": "2021-03-08T04:19:49.000Z" + }, + "events": [ + { + "uuid": "29eeb72f-4734-412c-90bf-84f4394f3dc5", + "start": { + "$date": "2021-03-08T03:30:02.000Z" + }, + "end": { + "$date": "2021-03-08T04:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "fa963f21-792c-42a5-ad7c-e616f2c020bf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-08T03:48:00.000Z" + }, + "end": { + "$date": "2021-03-08T03:52:50.000Z" + }, + "events": [ + { + "uuid": "dfcd8e32-3df9-4d22-8d51-8a0c5c532543", + "start": { + "$date": "2021-03-08T03:48:00.000Z" + }, + "end": { + "$date": "2021-03-08T03:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "239e7584-0b49-46fc-b235-1efa416b59af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-08T03:50:47.000Z" + }, + "end": { + "$date": "2021-03-08T06:17:59.000Z" + }, + "events": [ + { + "uuid": "c8f6559e-ff40-4591-bcda-a7d0f97e91ef", + "start": { + "$date": "2021-03-08T03:50:47.000Z" + }, + "end": { + "$date": "2021-03-08T06:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "2dd0c868-f2c1-44c1-8587-efff2638dd65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-08T03:52:04.000Z" + }, + "end": { + "$date": "2021-03-08T04:19:07.000Z" + }, + "events": [ + { + "uuid": "e6951101-5d0a-4078-a195-5f176a732c08", + "start": { + "$date": "2021-03-08T03:52:04.000Z" + }, + "end": { + "$date": "2021-03-08T04:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4e8bdb19-c516-4669-958a-9f255a1b8823", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-08T03:55:21.000Z" + }, + "end": { + "$date": "2021-03-08T05:24:39.000Z" + }, + "events": [ + { + "uuid": "650c8020-3c9f-4411-bffb-392af6c1a1f7", + "start": { + "$date": "2021-03-08T03:55:21.000Z" + }, + "end": { + "$date": "2021-03-08T05:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1fffbe16-5f9f-4968-9119-eca926733dd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-08T04:51:48.000Z" + }, + "end": { + "$date": "2021-03-08T04:51:55.000Z" + }, + "events": [ + { + "uuid": "12d5f38e-a7ef-420f-b0c4-acd8d31fd044", + "start": { + "$date": "2021-03-08T04:51:48.000Z" + }, + "end": { + "$date": "2021-03-08T04:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "482a04f1-d5d6-4ea3-8482-8f4c1db84c52", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-08T04:51:58.000Z" + }, + "end": { + "$date": "2021-03-08T05:39:11.000Z" + }, + "events": [ + { + "uuid": "04267f9a-5f36-4fa9-bcf9-1395e43d3076", + "start": { + "$date": "2021-03-08T04:51:58.000Z" + }, + "end": { + "$date": "2021-03-08T05:39:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb7b0a61-c808-4083-b042-17d7ca72be8d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-08T05:31:23.000Z" + }, + "end": { + "$date": "2021-03-08T05:53:22.000Z" + }, + "events": [ + { + "uuid": "d809a396-a1b4-4ca7-9834-47c5c6be314a", + "start": { + "$date": "2021-03-08T05:31:23.000Z" + }, + "end": { + "$date": "2021-03-08T05:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8635994-b29b-44e1-bcb3-8b4605f0b256", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-08T06:01:17.000Z" + }, + "end": { + "$date": "2021-03-08T06:01:12.000Z" + }, + "events": [ + { + "uuid": "1ff46ff2-2852-4527-8983-e9616cdf60be", + "start": { + "$date": "2021-03-08T06:01:17.000Z" + }, + "end": { + "$date": "2021-03-08T06:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "24400048-5b02-4936-b721-82f40ed57bdb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-08T05:44:55.000Z" + }, + "end": { + "$date": "2021-03-08T05:50:12.000Z" + }, + "events": [ + { + "uuid": "7fe01429-b233-42cb-9ec4-1bb7585f97aa", + "start": { + "$date": "2021-03-08T05:44:55.000Z" + }, + "end": { + "$date": "2021-03-08T05:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e116981-10c1-4afa-8316-c0149e6ba8be", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-08T05:56:49.000Z" + }, + "end": { + "$date": "2021-03-08T06:13:20.000Z" + }, + "events": [ + { + "uuid": "93859ea6-e6b8-4dc1-940b-9a21e1aa4620", + "start": { + "$date": "2021-03-08T05:56:49.000Z" + }, + "end": { + "$date": "2021-03-08T06:13:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d76ad6ce-0de3-4e8a-b55d-0dcacf380413", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-08T06:21:53.000Z" + }, + "end": { + "$date": "2021-03-08T06:36:38.000Z" + }, + "events": [ + { + "uuid": "f4593bda-9359-44d5-854c-a6181d1184b8", + "start": { + "$date": "2021-03-08T06:21:53.000Z" + }, + "end": { + "$date": "2021-03-08T06:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7306a76-37cc-412f-b465-98f638195dfd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-08T06:15:29.000Z" + }, + "end": { + "$date": "2021-03-08T06:33:50.000Z" + }, + "events": [ + { + "uuid": "007646c7-4818-4011-84da-65f46832a203", + "start": { + "$date": "2021-03-08T06:15:29.000Z" + }, + "end": { + "$date": "2021-03-08T06:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "208a69a2-84b9-4506-85a5-d7b21d7cdebc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-08T06:38:05.000Z" + }, + "end": { + "$date": "2021-03-08T06:57:38.000Z" + }, + "events": [ + { + "uuid": "6eabe910-7ca8-433c-a01e-ee0c739f5fba", + "start": { + "$date": "2021-03-08T06:38:05.000Z" + }, + "end": { + "$date": "2021-03-08T06:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51c00428-54ac-42a0-b60e-e6a4a29fd49a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-08T06:39:54.000Z" + }, + "end": { + "$date": "2021-03-08T07:02:12.000Z" + }, + "events": [ + { + "uuid": "22a619e1-ba16-4b78-a6f3-e67f4aaae095", + "start": { + "$date": "2021-03-08T06:39:54.000Z" + }, + "end": { + "$date": "2021-03-08T07:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f1461e0-1059-422b-81c4-e39e9e908258", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-08T07:00:35.000Z" + }, + "end": { + "$date": "2021-03-08T07:21:57.000Z" + }, + "events": [ + { + "uuid": "a2fa836a-b760-4127-a1a7-3dc8706dc26f", + "start": { + "$date": "2021-03-08T07:00:35.000Z" + }, + "end": { + "$date": "2021-03-08T07:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1ad9ca08-45a0-4afb-b7dc-99c7acb54ffd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-08T13:58:45.000Z" + }, + "end": { + "$date": "2021-03-08T14:01:25.000Z" + }, + "events": [ + { + "uuid": "935a9b09-885b-456f-9c16-5947fa8848ce", + "start": { + "$date": "2021-03-08T13:58:45.000Z" + }, + "end": { + "$date": "2021-03-08T14:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "43013b6c-27bd-47a2-8087-31d069d4d31a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-08T15:20:50.000Z" + }, + "end": { + "$date": "2021-03-08T15:30:06.000Z" + }, + "events": [ + { + "uuid": "18c89b64-a8a3-4872-87c7-6691ed8e59f8", + "start": { + "$date": "2021-03-08T15:20:50.000Z" + }, + "end": { + "$date": "2021-03-08T15:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1b991b9d-41df-4b7c-9961-75ffdb426ec5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-08T16:22:22.000Z" + }, + "end": { + "$date": "2021-03-08T17:08:48.000Z" + }, + "events": [ + { + "uuid": "008b3547-e3fb-4658-91bb-fb76815e3a59", + "start": { + "$date": "2021-03-08T16:22:22.000Z" + }, + "end": { + "$date": "2021-03-08T17:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b44ab697-c99a-413e-a613-9b5dd697a2cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-08T17:08:15.000Z" + }, + "end": { + "$date": "2021-03-08T17:30:08.000Z" + }, + "events": [ + { + "uuid": "19365d3a-4126-4e1c-874a-ee4e28d78528", + "start": { + "$date": "2021-03-08T17:08:15.000Z" + }, + "end": { + "$date": "2021-03-08T17:30:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e30e41c9-68a3-43b7-8e15-d3245af239ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-08T17:34:41.000Z" + }, + "end": { + "$date": "2021-03-08T17:51:34.000Z" + }, + "events": [ + { + "uuid": "3a9a92b0-3f0c-4b35-be26-dfc6721177bb", + "start": { + "$date": "2021-03-08T17:34:41.000Z" + }, + "end": { + "$date": "2021-03-08T17:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "65af2e83-3a2a-4f16-a79f-869f3e8630c1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-08T19:54:05.000Z" + }, + "end": { + "$date": "2021-03-08T20:31:16.000Z" + }, + "events": [ + { + "uuid": "83ed2b88-9d71-4f83-ac4a-3ebb7d2ee7ae", + "start": { + "$date": "2021-03-08T19:54:05.000Z" + }, + "end": { + "$date": "2021-03-08T20:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1f174f20-74dc-4011-92a1-03f9e4760a57", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-08T21:31:13.000Z" + }, + "end": { + "$date": "2021-03-08T21:32:54.000Z" + }, + "events": [ + { + "uuid": "c0e8d4e4-f95a-4493-a4a8-745206cd9e31", + "start": { + "$date": "2021-03-08T21:31:13.000Z" + }, + "end": { + "$date": "2021-03-08T21:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "09a22a0d-a2d3-471b-887b-d684e9e8200e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-08T21:33:43.000Z" + }, + "end": { + "$date": "2021-03-08T21:35:21.000Z" + }, + "events": [ + { + "uuid": "c1b70318-6409-4378-aaf1-a7526c4657db", + "start": { + "$date": "2021-03-08T21:33:43.000Z" + }, + "end": { + "$date": "2021-03-08T21:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a6a8c7b7-7171-4062-b370-25ac4af5b66c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-08T21:37:56.000Z" + }, + "end": { + "$date": "2021-03-08T22:31:00.000Z" + }, + "events": [ + { + "uuid": "fceca2c1-2d86-4644-94ba-fdd89cdb2dc8", + "start": { + "$date": "2021-03-08T21:37:56.000Z" + }, + "end": { + "$date": "2021-03-08T22:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a476f52f-62f8-4543-bd5f-9b867005a6a9", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-08T22:06:01.000Z" + }, + "end": { + "$date": "2021-03-08T22:27:51.000Z" + }, + "events": [ + { + "uuid": "db3c52b2-fe8d-47c7-8092-e377d2de01b8", + "start": { + "$date": "2021-03-08T22:06:01.000Z" + }, + "end": { + "$date": "2021-03-08T22:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b336bd87-8fbe-442e-bdd9-6efebab0a824", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-08T22:20:36.000Z" + }, + "end": { + "$date": "2021-03-08T23:39:48.000Z" + }, + "events": [ + { + "uuid": "df15ecff-8dd8-462e-9b31-1b367f18bfae", + "start": { + "$date": "2021-03-08T22:20:36.000Z" + }, + "end": { + "$date": "2021-03-08T23:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "474d07a6-109c-44ba-b925-851e04175a28", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-08T22:28:00.000Z" + }, + "end": { + "$date": "2021-03-08T23:47:12.000Z" + }, + "events": [ + { + "uuid": "003568e3-12e6-4606-bcbf-d91169823f3b", + "start": { + "$date": "2021-03-08T22:28:00.000Z" + }, + "end": { + "$date": "2021-03-08T23:47:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7c6a9331-532c-4625-b1b9-4e206664fa4b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-08T22:34:43.000Z" + }, + "end": { + "$date": "2021-03-08T23:18:24.000Z" + }, + "events": [ + { + "uuid": "d0876d51-eb01-4ede-ae6b-924e753e67f5", + "start": { + "$date": "2021-03-08T22:34:43.000Z" + }, + "end": { + "$date": "2021-03-08T23:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "4728a57f-395d-49d3-a6b0-d6dc9bbec17e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-08T23:48:45.000Z" + }, + "end": { + "$date": "2021-03-09T00:20:32.000Z" + }, + "events": [ + { + "uuid": "924785da-faa3-4bc8-a7e7-e8a76d9b0d4b", + "start": { + "$date": "2021-03-08T23:48:45.000Z" + }, + "end": { + "$date": "2021-03-09T00:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "4c144712-17e4-474f-8d29-916ae9813aa2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-08T23:51:00.000Z" + }, + "end": { + "$date": "2021-03-09T00:33:23.000Z" + }, + "events": [ + { + "uuid": "b1bbdf8b-fdb8-4053-8920-5f22d9da66d8", + "start": { + "$date": "2021-03-08T23:51:00.000Z" + }, + "end": { + "$date": "2021-03-09T00:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "53ddd5db-6354-42c0-b01c-adcba403587a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T00:50:49.000Z" + }, + "end": { + "$date": "2021-03-09T03:02:22.000Z" + }, + "events": [ + { + "uuid": "dd2962ea-e8e8-4718-ba6c-9549d372bcea", + "start": { + "$date": "2021-03-09T00:50:49.000Z" + }, + "end": { + "$date": "2021-03-09T03:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fecd8651-629a-4519-815f-aa1635859d81", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-09T03:00:41.000Z" + }, + "end": { + "$date": "2021-03-09T04:48:35.000Z" + }, + "events": [ + { + "uuid": "2568632e-6ed4-4592-8789-83f636e249aa", + "start": { + "$date": "2021-03-09T03:00:41.000Z" + }, + "end": { + "$date": "2021-03-09T04:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5ae5dfbf-719a-4d59-a8e9-3a2d934009ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T03:04:01.000Z" + }, + "end": { + "$date": "2021-03-09T04:48:50.000Z" + }, + "events": [ + { + "uuid": "ecf0bf2f-ad41-45b3-8b82-d7852d8677f1", + "start": { + "$date": "2021-03-09T03:04:01.000Z" + }, + "end": { + "$date": "2021-03-09T04:48:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "435e70f8-e8c0-4b90-bd19-4a394e266fe5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-09T03:13:30.000Z" + }, + "end": { + "$date": "2021-03-09T06:28:37.000Z" + }, + "events": [ + { + "uuid": "c3ea1e49-2a7b-4647-8955-21c341bbee9a", + "start": { + "$date": "2021-03-09T03:13:30.000Z" + }, + "end": { + "$date": "2021-03-09T04:27:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "782dcab9-7bea-4644-ae7e-3a6dbbf05f31", + "start": { + "$date": "2021-03-09T04:27:30.000Z" + }, + "end": { + "$date": "2021-03-09T04:31:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d348eaca-e495-4664-bfc8-ca34d375cea0", + "start": { + "$date": "2021-03-09T04:31:30.000Z" + }, + "end": { + "$date": "2021-03-09T06:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f2990efa-60e7-44bb-b639-0cc69ec84b61", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T03:39:40.000Z" + }, + "end": { + "$date": "2021-03-09T04:19:00.000Z" + }, + "events": [ + { + "uuid": "9dd1d321-29cf-453c-bba1-dbbd4c5bbec7", + "start": { + "$date": "2021-03-09T03:39:40.000Z" + }, + "end": { + "$date": "2021-03-09T04:19:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "2b4b77c5-b029-41e9-a0d7-02ab99038276", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-09T03:51:23.000Z" + }, + "end": { + "$date": "2021-03-09T04:26:53.000Z" + }, + "events": [ + { + "uuid": "4f186fde-e8ad-4554-b5ca-b6e120693f7a", + "start": { + "$date": "2021-03-09T03:51:23.000Z" + }, + "end": { + "$date": "2021-03-09T04:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5daa905e-ab7a-4b26-9718-a6d9eac7a1d2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-09T04:20:49.000Z" + }, + "end": { + "$date": "2021-03-09T05:05:30.000Z" + }, + "events": [ + { + "uuid": "b7097db2-111a-4810-940c-9bfd98ad24f7", + "start": { + "$date": "2021-03-09T04:20:49.000Z" + }, + "end": { + "$date": "2021-03-09T05:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4499d1d7-4bd1-49c5-ae6e-66a103197099", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T05:35:13.000Z" + }, + "end": { + "$date": "2021-03-09T05:43:13.000Z" + }, + "events": [ + { + "uuid": "1616ac30-1269-4381-8018-4b1127c92354", + "start": { + "$date": "2021-03-09T05:35:13.000Z" + }, + "end": { + "$date": "2021-03-09T05:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7163b937-f8b7-40f0-98e4-e637d8cc3789", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-09T04:49:01.000Z" + }, + "end": { + "$date": "2021-03-09T04:50:05.000Z" + }, + "events": [ + { + "uuid": "60b26db2-e625-49bd-8b3e-8d0b5df34aee", + "start": { + "$date": "2021-03-09T04:49:01.000Z" + }, + "end": { + "$date": "2021-03-09T04:50:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "23bee3d3-7063-42d6-93bb-604e482aee0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T04:56:34.000Z" + }, + "end": { + "$date": "2021-03-09T04:57:51.000Z" + }, + "events": [ + { + "uuid": "14e42719-c535-412d-b88a-3017b9a11656", + "start": { + "$date": "2021-03-09T04:56:34.000Z" + }, + "end": { + "$date": "2021-03-09T04:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "2caa3e97-c6c5-43ba-957a-84469573fef1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T04:58:14.000Z" + }, + "end": { + "$date": "2021-03-09T05:25:22.000Z" + }, + "events": [ + { + "uuid": "cb540461-fd85-4c06-a152-e5c36b4e42eb", + "start": { + "$date": "2021-03-09T04:58:14.000Z" + }, + "end": { + "$date": "2021-03-09T05:25:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7e61e7c-6c28-4f83-9c38-83ca86d61c17", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-09T05:07:28.000Z" + }, + "end": { + "$date": "2021-03-09T05:39:46.000Z" + }, + "events": [ + { + "uuid": "a89bbfac-8120-4b1c-b390-0b8fa7b507a4", + "start": { + "$date": "2021-03-09T05:07:28.000Z" + }, + "end": { + "$date": "2021-03-09T05:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8063d069-05bb-4171-8f9e-0a6120137560", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T05:25:35.000Z" + }, + "end": { + "$date": "2021-03-09T06:12:24.000Z" + }, + "events": [ + { + "uuid": "fa330d38-62bd-4b6b-bc9f-87c2a8f69694", + "start": { + "$date": "2021-03-09T05:25:35.000Z" + }, + "end": { + "$date": "2021-03-09T06:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d68ab9a0-626b-41c1-b306-15c8b2f73bd3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-09T05:51:44.000Z" + }, + "end": { + "$date": "2021-03-09T06:24:49.000Z" + }, + "events": [ + { + "uuid": "908dfb8f-acc1-4988-8fd6-e2cdf8eb9800", + "start": { + "$date": "2021-03-09T05:51:44.000Z" + }, + "end": { + "$date": "2021-03-09T06:24:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "387ce910-21d6-490e-b41a-e40d4a7424b2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T06:12:33.000Z" + }, + "end": { + "$date": "2021-03-09T06:44:55.000Z" + }, + "events": [ + { + "uuid": "b760611e-9a71-4b59-b651-faf3d55eb04d", + "start": { + "$date": "2021-03-09T06:12:33.000Z" + }, + "end": { + "$date": "2021-03-09T06:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5e7828c2-60ce-4093-a94a-05d0e8419b35", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-09T06:45:03.000Z" + }, + "end": { + "$date": "2021-03-09T07:32:01.000Z" + }, + "events": [ + { + "uuid": "6dae2c81-fcdc-4a7e-9f8d-003f4992b10a", + "start": { + "$date": "2021-03-09T06:45:03.000Z" + }, + "end": { + "$date": "2021-03-09T07:32:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "122fc7fe-6718-43c3-8a0b-9abecf124332", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-09T08:19:53.000Z" + }, + "end": { + "$date": "2021-03-09T08:22:28.000Z" + }, + "events": [ + { + "uuid": "12a99619-135c-4a71-9428-ff0c0e24c2ef", + "start": { + "$date": "2021-03-09T08:19:53.000Z" + }, + "end": { + "$date": "2021-03-09T08:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f129bb4c-152d-4114-9d86-b1a9a7ac3f03", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T15:56:25.000Z" + }, + "end": { + "$date": "2021-03-09T15:57:34.000Z" + }, + "events": [ + { + "uuid": "5e320692-8555-40d6-b46a-9290698a2353", + "start": { + "$date": "2021-03-09T15:56:25.000Z" + }, + "end": { + "$date": "2021-03-09T15:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a17f19b7-dc7d-4ebd-a8c0-858274b52f19", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T15:58:20.000Z" + }, + "end": { + "$date": "2021-03-09T16:32:45.000Z" + }, + "events": [ + { + "uuid": "5aea02e7-e909-4669-add2-35efae68cd8a", + "start": { + "$date": "2021-03-09T15:58:20.000Z" + }, + "end": { + "$date": "2021-03-09T16:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c3781c3e-62b7-4174-bfd4-510c334f564e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T16:16:32.000Z" + }, + "end": { + "$date": "2021-03-09T17:07:10.000Z" + }, + "events": [ + { + "uuid": "40ce9e17-0862-47ac-a262-d05c72f57ab6", + "start": { + "$date": "2021-03-09T16:16:32.000Z" + }, + "end": { + "$date": "2021-03-09T17:07:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "18483aaa-32ac-4967-8393-40fc0b47cd3c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-09T16:32:37.000Z" + }, + "end": { + "$date": "2021-03-09T16:54:09.000Z" + }, + "events": [ + { + "uuid": "c8d977ef-8645-4298-ba63-adb79a36d018", + "start": { + "$date": "2021-03-09T16:32:37.000Z" + }, + "end": { + "$date": "2021-03-09T16:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94c60ae8-ee65-409b-98d5-05dc6122649f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T17:10:04.000Z" + }, + "end": { + "$date": "2021-03-09T17:41:30.000Z" + }, + "events": [ + { + "uuid": "2e430a75-1fe9-4c21-81c8-9cd0b58ff63b", + "start": { + "$date": "2021-03-09T17:10:04.000Z" + }, + "end": { + "$date": "2021-03-09T17:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0a216bbf-ef2a-4ab9-80b2-05e5f902ba3a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T17:09:52.000Z" + }, + "end": { + "$date": "2021-03-09T17:29:32.000Z" + }, + "events": [ + { + "uuid": "a30d5076-045c-4f8d-b11d-f8b45a0c342c", + "start": { + "$date": "2021-03-09T17:09:52.000Z" + }, + "end": { + "$date": "2021-03-09T17:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "c7f5496c-fad9-4a15-b21f-100f45304d79", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-09T17:14:40.000Z" + }, + "end": { + "$date": "2021-03-09T17:16:28.000Z" + }, + "events": [ + { + "uuid": "6b39d84b-a684-459c-be9a-b8d6e6929c5e", + "start": { + "$date": "2021-03-09T17:14:40.000Z" + }, + "end": { + "$date": "2021-03-09T17:16:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e755a057-da24-4c57-bc7d-b13e9e03d6d4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T17:31:03.000Z" + }, + "end": { + "$date": "2021-03-09T19:36:34.000Z" + }, + "events": [ + { + "uuid": "806b75c3-9e84-4fbd-9b2a-25690785cbcc", + "start": { + "$date": "2021-03-09T17:31:03.000Z" + }, + "end": { + "$date": "2021-03-09T19:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "535498df-e2fb-4467-8428-01e8894d3d93", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-09T17:55:25.000Z" + }, + "end": { + "$date": "2021-03-09T17:57:29.000Z" + }, + "events": [ + { + "uuid": "6b7801af-74ea-434c-937e-8c53e667575a", + "start": { + "$date": "2021-03-09T17:55:25.000Z" + }, + "end": { + "$date": "2021-03-09T17:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "442af6cb-f298-48bc-a9ff-fa50fd9adf00", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T19:40:15.000Z" + }, + "end": { + "$date": "2021-03-09T20:57:33.000Z" + }, + "events": [ + { + "uuid": "5d93a0be-5e57-45a4-8723-a8d23ca87d39", + "start": { + "$date": "2021-03-09T19:40:15.000Z" + }, + "end": { + "$date": "2021-03-09T20:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23d22d48-84f0-4f30-9bee-b39507c60d25", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T20:18:39.000Z" + }, + "end": { + "$date": "2021-03-09T20:53:55.000Z" + }, + "events": [ + { + "uuid": "7e62b9a8-a763-462a-aa2c-8d051f6f4327", + "start": { + "$date": "2021-03-09T20:18:39.000Z" + }, + "end": { + "$date": "2021-03-09T20:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5f0a21fb-8f5d-49cb-a497-a30693256368", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-09T21:20:07.000Z" + }, + "end": { + "$date": "2021-03-09T21:56:59.000Z" + }, + "events": [ + { + "uuid": "36bce28f-4072-461c-96ea-f8e450b7671e", + "start": { + "$date": "2021-03-09T21:20:07.000Z" + }, + "end": { + "$date": "2021-03-09T21:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "443b42c8-b663-4dbe-be5c-81de4eced421", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T21:39:31.000Z" + }, + "end": { + "$date": "2021-03-09T21:43:21.000Z" + }, + "events": [ + { + "uuid": "19ce1bd0-e64a-4139-b131-908858850619", + "start": { + "$date": "2021-03-09T21:39:31.000Z" + }, + "end": { + "$date": "2021-03-09T21:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f21271ba-f586-4ee3-80a8-01c66b7cef32", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T21:43:42.000Z" + }, + "end": { + "$date": "2021-03-09T22:15:56.000Z" + }, + "events": [ + { + "uuid": "ef9f55e9-36bb-4d04-b6d7-bd1c15b9a16a", + "start": { + "$date": "2021-03-09T21:43:42.000Z" + }, + "end": { + "$date": "2021-03-09T22:15:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "6db96bd9-eabd-4c76-9910-32637bfa0363", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T22:25:49.000Z" + }, + "end": { + "$date": "2021-03-09T22:53:39.000Z" + }, + "events": [ + { + "uuid": "8f99fde5-83d3-4ded-a36c-5fc1d48d8436", + "start": { + "$date": "2021-03-09T22:25:49.000Z" + }, + "end": { + "$date": "2021-03-09T22:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "da82e118-a2f2-4231-9d32-04b8730194e8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-09T22:28:13.000Z" + }, + "end": { + "$date": "2021-03-10T00:12:00.000Z" + }, + "events": [ + { + "uuid": "f7940a10-a92e-4128-a17f-9abb28991c1a", + "start": { + "$date": "2021-03-09T22:28:13.000Z" + }, + "end": { + "$date": "2021-03-10T00:12:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dd830f93-0626-4ff5-96cb-96896cb1ed2c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-09T22:29:37.000Z" + }, + "end": { + "$date": "2021-03-09T22:51:05.000Z" + }, + "events": [ + { + "uuid": "2a892676-7bdb-4630-b0f9-8743ff964156", + "start": { + "$date": "2021-03-09T22:29:37.000Z" + }, + "end": { + "$date": "2021-03-09T22:51:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d1f1d2f-7888-4d24-8ed7-e08f3acd6038", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-09T22:54:25.000Z" + }, + "end": { + "$date": "2021-03-10T02:50:39.000Z" + }, + "events": [ + { + "uuid": "71933b08-457a-4341-9a72-97797504d68b", + "start": { + "$date": "2021-03-09T22:54:25.000Z" + }, + "end": { + "$date": "2021-03-10T02:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68bcc36a-b18a-440a-a25f-09dab875615a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T23:17:45.000Z" + }, + "end": { + "$date": "2021-03-09T23:30:10.000Z" + }, + "events": [ + { + "uuid": "1bfa793f-e9d4-44cd-976c-f381c21fbdd6", + "start": { + "$date": "2021-03-09T23:17:45.000Z" + }, + "end": { + "$date": "2021-03-09T23:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53636723-2566-4e87-aecd-fcea4e50bb16", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-09T23:38:31.000Z" + }, + "end": { + "$date": "2021-03-10T00:17:20.000Z" + }, + "events": [ + { + "uuid": "8acac580-7523-4d5f-b35a-f8f5ad4de845", + "start": { + "$date": "2021-03-09T23:38:31.000Z" + }, + "end": { + "$date": "2021-03-10T00:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "ce7db747-4884-47fe-b2e6-070240ffa1b2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-09T23:49:59.000Z" + }, + "end": { + "$date": "2021-03-10T02:12:45.000Z" + }, + "events": [ + { + "uuid": "abcf5b88-53b7-44e0-96e2-8d56d79964c6", + "start": { + "$date": "2021-03-09T23:49:59.000Z" + }, + "end": { + "$date": "2021-03-10T02:12:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e6f8830a-fb71-44d3-858e-681cff27fbee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-09T23:58:42.000Z" + }, + "end": { + "$date": "2021-03-10T00:10:42.000Z" + }, + "events": [ + { + "uuid": "d6da9122-27b5-4d7e-8a5a-f52e5dac31e8", + "start": { + "$date": "2021-03-09T23:58:42.000Z" + }, + "end": { + "$date": "2021-03-10T00:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7764223a-2fac-4911-a1fb-afff27f91d56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-10T00:21:51.000Z" + }, + "end": { + "$date": "2021-03-10T00:55:41.000Z" + }, + "events": [ + { + "uuid": "8dd083ce-2e87-41cf-8e07-3a60b7d9269a", + "start": { + "$date": "2021-03-10T00:21:51.000Z" + }, + "end": { + "$date": "2021-03-10T00:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "262509a5-a2cf-46af-9555-49406a11b7ac", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-10T00:51:59.000Z" + }, + "end": { + "$date": "2021-03-10T01:40:07.000Z" + }, + "events": [ + { + "uuid": "8a4aa039-1a3f-4154-8796-66e9c135e087", + "start": { + "$date": "2021-03-10T00:51:59.000Z" + }, + "end": { + "$date": "2021-03-10T01:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "acd0d576-87d0-4e96-8d1b-875618acdc3e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-10T02:13:09.000Z" + }, + "end": { + "$date": "2021-03-10T02:23:17.000Z" + }, + "events": [ + { + "uuid": "83426240-c692-40e3-8888-92789f65896c", + "start": { + "$date": "2021-03-10T02:13:09.000Z" + }, + "end": { + "$date": "2021-03-10T02:23:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b009c7b6-d787-45d8-b9bf-8cb9dd2ab584", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-10T02:21:04.000Z" + }, + "end": { + "$date": "2021-03-10T03:16:15.000Z" + }, + "events": [ + { + "uuid": "369e007d-b7fc-4f42-9fd9-9715a87b2128", + "start": { + "$date": "2021-03-10T02:21:04.000Z" + }, + "end": { + "$date": "2021-03-10T03:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "1335f36e-f981-4bc3-bce2-57858f78af42", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-10T02:24:31.000Z" + }, + "end": { + "$date": "2021-03-10T05:52:18.000Z" + }, + "events": [ + { + "uuid": "96785260-23b6-455e-be56-9964f8e40b16", + "start": { + "$date": "2021-03-10T02:24:31.000Z" + }, + "end": { + "$date": "2021-03-10T05:52:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2651512-fd3a-487b-8721-62c31186da3e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-10T02:41:55.000Z" + }, + "end": { + "$date": "2021-03-10T06:03:05.000Z" + }, + "events": [ + { + "uuid": "b95d4351-31ff-43f2-9809-12bd818752c8", + "start": { + "$date": "2021-03-10T02:41:55.000Z" + }, + "end": { + "$date": "2021-03-10T06:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "a5fe93f4-57ae-41b0-bbeb-cf400fa64180", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-10T02:50:55.000Z" + }, + "end": { + "$date": "2021-03-10T03:05:56.000Z" + }, + "events": [ + { + "uuid": "fa613a85-4668-485f-838c-9611ef21da7a", + "start": { + "$date": "2021-03-10T02:50:55.000Z" + }, + "end": { + "$date": "2021-03-10T03:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "0f1ddf8e-b2b3-4f5b-a4b5-2df5d351bccd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-10T03:06:31.000Z" + }, + "end": { + "$date": "2021-03-10T04:29:29.000Z" + }, + "events": [ + { + "uuid": "96304fe7-5cd7-469a-84e4-e9782df5c227", + "start": { + "$date": "2021-03-10T03:06:31.000Z" + }, + "end": { + "$date": "2021-03-10T04:29:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "782a83ae-de7c-4fb2-904d-45c679cc7e3b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-10T03:47:03.000Z" + }, + "end": { + "$date": "2021-03-10T05:01:28.000Z" + }, + "events": [ + { + "uuid": "135ed4e1-2c35-4915-9532-68f3264d2504", + "start": { + "$date": "2021-03-10T03:47:03.000Z" + }, + "end": { + "$date": "2021-03-10T05:01:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91e7f5aa-8fa0-4229-b54d-f27e64589bca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-10T03:51:28.000Z" + }, + "end": { + "$date": "2021-03-10T05:39:39.000Z" + }, + "events": [ + { + "uuid": "558c975e-1f9d-420a-bf16-2e4cd8af19e2", + "start": { + "$date": "2021-03-10T03:51:28.000Z" + }, + "end": { + "$date": "2021-03-10T05:39:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ab3ad9c9-876c-4694-9f79-36a93c7fdebb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-10T04:04:13.000Z" + }, + "end": { + "$date": "2021-03-10T04:57:35.000Z" + }, + "events": [ + { + "uuid": "336d5f04-09ab-4fad-8353-560e47f14e3e", + "start": { + "$date": "2021-03-10T04:04:13.000Z" + }, + "end": { + "$date": "2021-03-10T04:57:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "195889cf-8abd-4a5b-ac32-866aa00516f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-10T04:15:07.000Z" + }, + "end": { + "$date": "2021-03-10T04:33:06.000Z" + }, + "events": [ + { + "uuid": "e3114c70-07d6-49de-8934-39e9c8828e23", + "start": { + "$date": "2021-03-10T04:15:07.000Z" + }, + "end": { + "$date": "2021-03-10T04:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d48aa17-5f8a-4713-baef-bf49c6a1603d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-10T04:46:21.000Z" + }, + "end": { + "$date": "2021-03-10T05:00:46.000Z" + }, + "events": [ + { + "uuid": "b93dda78-514d-4326-8d6c-3bc2498c7f33", + "start": { + "$date": "2021-03-10T04:46:21.000Z" + }, + "end": { + "$date": "2021-03-10T05:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1bac9e13-6d8b-4dba-9138-39bb3fe22ced", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-10T04:32:26.000Z" + }, + "end": { + "$date": "2021-03-10T06:17:09.000Z" + }, + "events": [ + { + "uuid": "6f22201f-d14b-4ebb-b9e4-4704fbc4c975", + "start": { + "$date": "2021-03-10T04:32:26.000Z" + }, + "end": { + "$date": "2021-03-10T06:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "614ad9c4-6b1d-4d9b-8cfe-03d86b0cb9c0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-10T04:33:45.000Z" + }, + "end": { + "$date": "2021-03-10T06:03:07.000Z" + }, + "events": [ + { + "uuid": "065e1ecc-4e4a-425e-93cd-0342c5d77787", + "start": { + "$date": "2021-03-10T04:33:45.000Z" + }, + "end": { + "$date": "2021-03-10T06:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ccca0dca-0bb5-478d-800f-e91bb11654fc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-10T04:33:47.000Z" + }, + "end": { + "$date": "2021-03-10T06:15:24.000Z" + }, + "events": [ + { + "uuid": "ec03c1e9-fcfd-4cac-a91e-10fe1b2462b6", + "start": { + "$date": "2021-03-10T04:33:47.000Z" + }, + "end": { + "$date": "2021-03-10T06:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7ae339fd-6e6a-493b-ba0d-74e8eb2c0766", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-10T04:58:41.000Z" + }, + "end": { + "$date": "2021-03-10T05:39:41.000Z" + }, + "events": [ + { + "uuid": "b6b96cea-6f5a-49a2-8a15-78907f31ea45", + "start": { + "$date": "2021-03-10T04:58:41.000Z" + }, + "end": { + "$date": "2021-03-10T05:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6542112d-60fb-4ec2-8646-c75b08b9e834", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-10T06:17:32.000Z" + }, + "end": { + "$date": "2021-03-10T07:07:59.000Z" + }, + "events": [ + { + "uuid": "6653bf0f-38fc-42b8-9517-7f833fb8d2b6", + "start": { + "$date": "2021-03-10T06:17:32.000Z" + }, + "end": { + "$date": "2021-03-10T07:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7a4caf3-7743-4b8c-900b-4b66e77358cf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-10T05:06:47.000Z" + }, + "end": { + "$date": "2021-03-10T05:28:20.000Z" + }, + "events": [ + { + "uuid": "d3e3e728-eedb-4535-b74e-e75a2d5b2201", + "start": { + "$date": "2021-03-10T05:06:47.000Z" + }, + "end": { + "$date": "2021-03-10T05:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce7554e9-83ef-4460-9471-68deef985c33", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-10T05:32:13.000Z" + }, + "end": { + "$date": "2021-03-10T06:00:51.000Z" + }, + "events": [ + { + "uuid": "ea11a9a4-1c3d-4dfd-9ccc-ffe838db161e", + "start": { + "$date": "2021-03-10T05:32:13.000Z" + }, + "end": { + "$date": "2021-03-10T06:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b02df16-740a-4dd3-b120-fcbdb94d57b8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-10T06:02:14.000Z" + }, + "end": { + "$date": "2021-03-10T06:05:18.000Z" + }, + "events": [ + { + "uuid": "d7bc3d17-5ff1-4af9-8ac4-ec9dc04ab831", + "start": { + "$date": "2021-03-10T06:02:14.000Z" + }, + "end": { + "$date": "2021-03-10T06:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "c9f38170-ece2-415e-a47f-6b77dc278cfb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-10T06:16:31.000Z" + }, + "end": { + "$date": "2021-03-10T07:18:41.000Z" + }, + "events": [ + { + "uuid": "58fe4546-7926-4874-b7c2-d153ef735ab1", + "start": { + "$date": "2021-03-10T06:16:31.000Z" + }, + "end": { + "$date": "2021-03-10T07:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "245911fb-237b-46b0-a8cb-e7580a04ef2c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-10T06:44:42.000Z" + }, + "end": { + "$date": "2021-03-10T06:54:13.000Z" + }, + "events": [ + { + "uuid": "7d97401e-0ae2-43ac-8d2b-f1b541439d5e", + "start": { + "$date": "2021-03-10T06:44:42.000Z" + }, + "end": { + "$date": "2021-03-10T06:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "88196f86-a182-4ba2-acae-3c2a479ff417", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-10T06:55:42.000Z" + }, + "end": { + "$date": "2021-03-10T06:58:19.000Z" + }, + "events": [ + { + "uuid": "b3a32cb0-3240-4037-9b51-d63fa227a7c7", + "start": { + "$date": "2021-03-10T06:55:42.000Z" + }, + "end": { + "$date": "2021-03-10T06:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5ce17762-f5b9-40a9-9d3c-14ef70632b1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-10T19:19:03.000Z" + }, + "end": { + "$date": "2021-03-10T19:20:37.000Z" + }, + "events": [ + { + "uuid": "abd37850-6a62-4f13-ac0e-60eaee3f52e8", + "start": { + "$date": "2021-03-10T19:19:03.000Z" + }, + "end": { + "$date": "2021-03-10T19:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "286f8419-1d0b-4ba8-8687-6ccfb2eed792", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-10T19:23:03.000Z" + }, + "end": { + "$date": "2021-03-10T19:47:28.000Z" + }, + "events": [ + { + "uuid": "500ad076-5539-4ba3-9721-57139b7cb3c4", + "start": { + "$date": "2021-03-10T19:23:03.000Z" + }, + "end": { + "$date": "2021-03-10T19:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bea84327-3657-48d2-8a61-4e747679596c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-10T20:14:44.000Z" + }, + "end": { + "$date": "2021-03-10T20:41:40.000Z" + }, + "events": [ + { + "uuid": "58c00470-2a2a-4d2a-be15-73561ae7e5d1", + "start": { + "$date": "2021-03-10T20:14:44.000Z" + }, + "end": { + "$date": "2021-03-10T20:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "75dda1ca-cc2d-45e4-a53e-536d96838e8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-10T20:16:31.000Z" + }, + "end": { + "$date": "2021-03-10T21:06:02.000Z" + }, + "events": [ + { + "uuid": "930b6232-68b1-49fe-a8ba-73e693c52c4b", + "start": { + "$date": "2021-03-10T20:16:31.000Z" + }, + "end": { + "$date": "2021-03-10T21:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b54ac42c-7a8b-4cf3-9ebc-00acd1ec2e87", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-10T20:31:12.000Z" + }, + "end": { + "$date": "2021-03-11T01:08:54.000Z" + }, + "events": [ + { + "uuid": "a99a64de-0695-4c2c-aac1-5a3f657b069f", + "start": { + "$date": "2021-03-10T20:31:12.000Z" + }, + "end": { + "$date": "2021-03-10T21:20:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "91ff4d19-be4d-4990-9174-6859ad9d5fe4", + "start": { + "$date": "2021-03-10T21:20:12.000Z" + }, + "end": { + "$date": "2021-03-10T22:49:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cbcd03f2-3641-4b60-a72b-6118d2d2660e", + "start": { + "$date": "2021-03-10T22:49:12.000Z" + }, + "end": { + "$date": "2021-03-11T01:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f8669cce-69c8-4198-ae5b-168c7e744b35", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-10T20:49:17.000Z" + }, + "end": { + "$date": "2021-03-10T23:33:51.000Z" + }, + "events": [ + { + "uuid": "87b4faec-f43a-4dd7-a368-bb0cc0920bc3", + "start": { + "$date": "2021-03-10T20:49:17.000Z" + }, + "end": { + "$date": "2021-03-10T23:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d9def93f-0aaf-499b-b859-d21e6f16c2c9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-10T20:58:01.000Z" + }, + "end": { + "$date": "2021-03-10T21:32:49.000Z" + }, + "events": [ + { + "uuid": "a815adf7-2e08-444b-af7a-fd59b08e7cb4", + "start": { + "$date": "2021-03-10T20:58:01.000Z" + }, + "end": { + "$date": "2021-03-10T21:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9f66b275-7765-41ac-a569-75f5b38e2e28", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-10T22:45:33.000Z" + }, + "end": { + "$date": "2021-03-11T01:11:37.000Z" + }, + "events": [ + { + "uuid": "54dbb2e4-a211-4e14-8e02-2bd809b6f68b", + "start": { + "$date": "2021-03-10T22:45:33.000Z" + }, + "end": { + "$date": "2021-03-11T01:11:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "390e87f9-d67e-416b-b3e1-d46ece096f3c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-10T23:07:14.000Z" + }, + "end": { + "$date": "2021-03-10T23:13:45.000Z" + }, + "events": [ + { + "uuid": "4743ecf6-18df-4f52-8c0b-8deef595fb6e", + "start": { + "$date": "2021-03-10T23:07:14.000Z" + }, + "end": { + "$date": "2021-03-10T23:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7de6090e-129a-4ae6-87c9-f1620f5bbf40", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-10T23:15:21.000Z" + }, + "end": { + "$date": "2021-03-11T01:08:45.000Z" + }, + "events": [ + { + "uuid": "972b560a-4c16-41a4-b1c6-4aa41705999c", + "start": { + "$date": "2021-03-10T23:15:21.000Z" + }, + "end": { + "$date": "2021-03-11T01:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6bbb2f1-a625-42fe-8fb2-311691581239", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-10T23:55:17.000Z" + }, + "end": { + "$date": "2021-03-11T00:30:07.000Z" + }, + "events": [ + { + "uuid": "a5bd3822-b49b-49e6-8d3e-3c1a4bf8a557", + "start": { + "$date": "2021-03-10T23:55:17.000Z" + }, + "end": { + "$date": "2021-03-11T00:30:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "113a340d-3676-48ce-83bf-097a3ec85ee1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-11T00:14:59.000Z" + }, + "end": { + "$date": "2021-03-11T00:53:26.000Z" + }, + "events": [ + { + "uuid": "c4181d6a-b5ad-4862-a1b2-b31c2500cb30", + "start": { + "$date": "2021-03-11T00:14:59.000Z" + }, + "end": { + "$date": "2021-03-11T00:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1f52aaa0-4907-4b51-bf2f-f106e793c704", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-11T00:25:35.000Z" + }, + "end": { + "$date": "2021-03-11T01:44:10.000Z" + }, + "events": [ + { + "uuid": "2676b273-f56c-475b-9f67-9184dbe09724", + "start": { + "$date": "2021-03-11T00:25:35.000Z" + }, + "end": { + "$date": "2021-03-11T01:44:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "90851280-9de0-4614-a3af-46ee33917cf8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-11T00:27:43.000Z" + }, + "end": { + "$date": "2021-03-11T01:44:32.000Z" + }, + "events": [ + { + "uuid": "026e61db-3972-44d5-980b-97bf4ccce47f", + "start": { + "$date": "2021-03-11T00:27:43.000Z" + }, + "end": { + "$date": "2021-03-11T01:44:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "ba9171ab-1a12-4bd2-ac8e-f504586cbf07", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-11T00:47:10.000Z" + }, + "end": { + "$date": "2021-03-11T01:20:54.000Z" + }, + "events": [ + { + "uuid": "5ce50553-1c39-44e3-bf4d-210ec74b7e16", + "start": { + "$date": "2021-03-11T00:47:10.000Z" + }, + "end": { + "$date": "2021-03-11T01:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "50d46d25-b5a2-4d0b-a413-4d4a452b4c53", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-11T00:58:57.000Z" + }, + "end": { + "$date": "2021-03-11T01:02:31.000Z" + }, + "events": [ + { + "uuid": "e036c25a-528d-4983-b62b-b2e5df9bba70", + "start": { + "$date": "2021-03-11T00:58:57.000Z" + }, + "end": { + "$date": "2021-03-11T01:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "47b97605-42c8-4712-9b73-3432cf0e5e4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-11T01:03:46.000Z" + }, + "end": { + "$date": "2021-03-11T01:46:13.000Z" + }, + "events": [ + { + "uuid": "32c7c91a-0437-4164-975d-8357dee44632", + "start": { + "$date": "2021-03-11T01:03:46.000Z" + }, + "end": { + "$date": "2021-03-11T01:46:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "2d29ee5c-737f-4ec8-a09f-8f0c9e50a0f9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-11T01:09:28.000Z" + }, + "end": { + "$date": "2021-03-11T01:36:14.000Z" + }, + "events": [ + { + "uuid": "7b8367b2-82bb-46e0-8338-8b736b6b93a8", + "start": { + "$date": "2021-03-11T01:09:28.000Z" + }, + "end": { + "$date": "2021-03-11T01:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "72dc5330-df50-4216-a1b3-e04ae73139ff", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-11T03:38:51.000Z" + }, + "end": { + "$date": "2021-03-11T03:42:56.000Z" + }, + "events": [ + { + "uuid": "22de9ac1-cb6f-4911-9190-60a44dc09ea4", + "start": { + "$date": "2021-03-11T03:38:51.000Z" + }, + "end": { + "$date": "2021-03-11T03:42:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ae61b4e5-4305-4c8e-b2bc-b212ab5b30c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-11T02:42:53.000Z" + }, + "end": { + "$date": "2021-03-11T03:12:44.000Z" + }, + "events": [ + { + "uuid": "118db210-4303-4b48-bd94-716ac6c5b116", + "start": { + "$date": "2021-03-11T02:42:53.000Z" + }, + "end": { + "$date": "2021-03-11T03:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "ad2191f6-814f-4895-bb4c-8b4a5496b6b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-11T03:08:54.000Z" + }, + "end": { + "$date": "2021-03-11T07:16:40.000Z" + }, + "events": [ + { + "uuid": "ae388c80-e83d-41ce-92a7-c733f3aa79c6", + "start": { + "$date": "2021-03-11T03:08:54.000Z" + }, + "end": { + "$date": "2021-03-11T07:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bbf1cc9b-46e7-4434-b9ab-bd654ee31b80", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-11T04:49:54.000Z" + }, + "end": { + "$date": "2021-03-11T05:26:17.000Z" + }, + "events": [ + { + "uuid": "3f3f12a8-234b-4919-8e50-df3166455c5f", + "start": { + "$date": "2021-03-11T04:49:54.000Z" + }, + "end": { + "$date": "2021-03-11T05:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3c0f27e4-7bfc-4857-a82c-840df033f414", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-11T03:18:14.000Z" + }, + "end": { + "$date": "2021-03-11T05:26:17.000Z" + }, + "events": [ + { + "uuid": "0c1d53b5-1ace-43f3-91d0-f7786a70130f", + "start": { + "$date": "2021-03-11T03:18:14.000Z" + }, + "end": { + "$date": "2021-03-11T05:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "de46ea65-3d39-463a-ae93-c5687eaa27e4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-11T03:24:18.000Z" + }, + "end": { + "$date": "2021-03-11T06:40:32.000Z" + }, + "events": [ + { + "uuid": "dc00b3d4-ea9b-4045-b0dd-075b6e1d7947", + "start": { + "$date": "2021-03-11T03:24:18.000Z" + }, + "end": { + "$date": "2021-03-11T06:40:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0818b407-6b95-453c-93e6-5d09e7dfbcaf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-11T06:02:39.000Z" + }, + "end": { + "$date": "2021-03-11T06:18:53.000Z" + }, + "events": [ + { + "uuid": "7635625e-e29f-42d6-ade4-864485689c13", + "start": { + "$date": "2021-03-11T06:02:39.000Z" + }, + "end": { + "$date": "2021-03-11T06:18:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "769dac7e-b5e7-4786-806d-0f9718589381", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-11T03:48:02.000Z" + }, + "end": { + "$date": "2021-03-11T04:35:59.000Z" + }, + "events": [ + { + "uuid": "b2049ca2-c4d7-4d3a-8214-e9860660395d", + "start": { + "$date": "2021-03-11T03:48:02.000Z" + }, + "end": { + "$date": "2021-03-11T04:03:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6540762f-fcba-4eb5-a3e7-ddc56e4e5f75", + "start": { + "$date": "2021-03-11T04:03:02.000Z" + }, + "end": { + "$date": "2021-03-11T04:04:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "02a2f415-5b39-45ce-9c56-c1d68c6dbe10", + "start": { + "$date": "2021-03-11T04:04:02.000Z" + }, + "end": { + "$date": "2021-03-11T04:06:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5ac1314-ad2d-4f92-9b1e-cd9471c4a792", + "start": { + "$date": "2021-03-11T04:06:02.000Z" + }, + "end": { + "$date": "2021-03-11T04:13:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "132cb8ee-27ba-418a-a063-0b7ec58d0193", + "start": { + "$date": "2021-03-11T04:13:02.000Z" + }, + "end": { + "$date": "2021-03-11T04:35:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "25f2c5a9-35a4-4d60-8675-e4dd756510fc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-11T03:52:16.000Z" + }, + "end": { + "$date": "2021-03-11T04:19:57.000Z" + }, + "events": [ + { + "uuid": "fbbcfe5e-b4cc-4b31-8b9a-b9fc4bdc52c3", + "start": { + "$date": "2021-03-11T03:52:16.000Z" + }, + "end": { + "$date": "2021-03-11T04:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dfd0a450-bdc5-4f88-b7e8-93cb87fa63cf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-11T04:04:10.000Z" + }, + "end": { + "$date": "2021-03-11T06:19:27.000Z" + }, + "events": [ + { + "uuid": "fe2bd69c-f893-4a2b-b3cc-faeeb3fa4e7a", + "start": { + "$date": "2021-03-11T04:04:10.000Z" + }, + "end": { + "$date": "2021-03-11T06:03:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1e79ddb-33be-41a1-9a0d-3e5090b2fcff", + "start": { + "$date": "2021-03-11T06:03:10.000Z" + }, + "end": { + "$date": "2021-03-11T06:17:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "289322c2-7384-4667-b913-2510863aaf65", + "start": { + "$date": "2021-03-11T06:17:10.000Z" + }, + "end": { + "$date": "2021-03-11T06:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "47ab762f-cb72-4cd1-91bb-55a739a26a9d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-11T04:16:45.000Z" + }, + "end": { + "$date": "2021-03-11T05:56:27.000Z" + }, + "events": [ + { + "uuid": "6a95416a-b980-4629-a208-25196974b33f", + "start": { + "$date": "2021-03-11T04:16:45.000Z" + }, + "end": { + "$date": "2021-03-11T05:56:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "256aeb62-b900-4b8d-a25a-a5ced3681f6f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-11T04:36:09.000Z" + }, + "end": { + "$date": "2021-03-11T05:26:06.000Z" + }, + "events": [ + { + "uuid": "d937d5c3-f422-4b72-9370-bb167a9744a2", + "start": { + "$date": "2021-03-11T04:36:09.000Z" + }, + "end": { + "$date": "2021-03-11T05:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d57f114-5e42-4a0c-8d0a-1886eff5df8c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-11T05:26:37.000Z" + }, + "end": { + "$date": "2021-03-11T05:53:46.000Z" + }, + "events": [ + { + "uuid": "28513eba-92b7-42d4-bd73-18d00fdff623", + "start": { + "$date": "2021-03-11T05:26:37.000Z" + }, + "end": { + "$date": "2021-03-11T05:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8c4c97b6-2e2a-41a9-8bf1-9f88b5a80aea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-11T05:31:00.000Z" + }, + "end": { + "$date": "2021-03-11T06:26:29.000Z" + }, + "events": [ + { + "uuid": "0cd78f68-0275-4a91-befe-ce101cb38c5a", + "start": { + "$date": "2021-03-11T05:31:00.000Z" + }, + "end": { + "$date": "2021-03-11T06:26:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9283b00e-35f8-433d-a01a-8677aaf79e8d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-11T06:01:08.000Z" + }, + "end": { + "$date": "2021-03-11T06:26:13.000Z" + }, + "events": [ + { + "uuid": "10dbd42d-a3ce-4661-8539-85982cbfa578", + "start": { + "$date": "2021-03-11T06:01:08.000Z" + }, + "end": { + "$date": "2021-03-11T06:26:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f9a10482-ca2e-4cd0-9e71-a530f6c84709", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-11T06:19:42.000Z" + }, + "end": { + "$date": "2021-03-11T06:40:38.000Z" + }, + "events": [ + { + "uuid": "db309322-01cb-4606-9b6c-6876d6742466", + "start": { + "$date": "2021-03-11T06:19:42.000Z" + }, + "end": { + "$date": "2021-03-11T06:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fd6bd2c8-f8cd-4984-8149-61640329e46c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-11T06:26:37.000Z" + }, + "end": { + "$date": "2021-03-11T06:54:40.000Z" + }, + "events": [ + { + "uuid": "8eab74fe-e01c-4efe-b98f-cbc4b9bf9707", + "start": { + "$date": "2021-03-11T06:26:37.000Z" + }, + "end": { + "$date": "2021-03-11T06:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99beab33-d4a6-4246-81a3-217cebde96df", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-11T06:33:59.000Z" + }, + "end": { + "$date": "2021-03-11T07:14:14.000Z" + }, + "events": [ + { + "uuid": "1c1eeda5-e03b-4f2e-aa47-3cd38b37e14c", + "start": { + "$date": "2021-03-11T06:33:59.000Z" + }, + "end": { + "$date": "2021-03-11T07:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e18c24d-bdf5-43fb-82fd-db49bb42b6e7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-11T07:20:25.000Z" + }, + "end": { + "$date": "2021-03-11T07:46:35.000Z" + }, + "events": [ + { + "uuid": "6258e9ee-92d8-493a-8996-53040b914277", + "start": { + "$date": "2021-03-11T07:20:25.000Z" + }, + "end": { + "$date": "2021-03-11T07:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "625b6b4f-7085-4761-b58f-8fe4579cf942", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-11T18:47:01.000Z" + }, + "end": { + "$date": "2021-03-11T19:10:25.000Z" + }, + "events": [ + { + "uuid": "4ad4c50c-fd1e-43f9-a7a9-bb3740646099", + "start": { + "$date": "2021-03-11T18:47:01.000Z" + }, + "end": { + "$date": "2021-03-11T19:10:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9569b2f5-4dff-42b1-82b2-26371b6da4d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-11T20:31:45.000Z" + }, + "end": { + "$date": "2021-03-11T21:40:21.000Z" + }, + "events": [ + { + "uuid": "d6e236f4-d35d-47ff-a080-a86b62336330", + "start": { + "$date": "2021-03-11T20:31:45.000Z" + }, + "end": { + "$date": "2021-03-11T21:40:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3d3114f0-6676-4bea-83b6-2ed680e02086", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-11T20:49:58.000Z" + }, + "end": { + "$date": "2021-03-11T21:33:02.000Z" + }, + "events": [ + { + "uuid": "653980a7-7a1b-4d2a-8549-45c8bf12c025", + "start": { + "$date": "2021-03-11T20:49:58.000Z" + }, + "end": { + "$date": "2021-03-11T21:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8141f0de-ed30-4e12-b39b-15c4ed67b964", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-11T20:57:26.000Z" + }, + "end": { + "$date": "2021-03-11T21:37:35.000Z" + }, + "events": [ + { + "uuid": "2135508b-c1d3-44c3-9715-2dd2fbc6f749", + "start": { + "$date": "2021-03-11T20:57:26.000Z" + }, + "end": { + "$date": "2021-03-11T21:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "caa564dd-1260-4b42-9cfb-c01c79875f2f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-12T00:16:56.000Z" + }, + "end": { + "$date": "2021-03-12T01:30:55.000Z" + }, + "events": [ + { + "uuid": "441db5eb-1607-4565-b516-82baef7e566f", + "start": { + "$date": "2021-03-12T00:16:56.000Z" + }, + "end": { + "$date": "2021-03-12T01:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ede910f-1b7e-4f62-98dc-8681bc200822", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T00:18:40.000Z" + }, + "end": { + "$date": "2021-03-12T00:21:50.000Z" + }, + "events": [ + { + "uuid": "fc955a95-9333-435e-b912-cc13383fa729", + "start": { + "$date": "2021-03-12T00:18:40.000Z" + }, + "end": { + "$date": "2021-03-12T00:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "59a1b8c2-3975-4779-af90-f47714dfe849", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-12T00:57:25.000Z" + }, + "end": { + "$date": "2021-03-12T01:05:52.000Z" + }, + "events": [ + { + "uuid": "d68f0885-20bb-4e35-9395-64f29ba4a619", + "start": { + "$date": "2021-03-12T00:57:25.000Z" + }, + "end": { + "$date": "2021-03-12T01:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3812994f-1573-438c-8819-0724d5a8957d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T00:57:54.000Z" + }, + "end": { + "$date": "2021-03-12T01:25:22.000Z" + }, + "events": [ + { + "uuid": "026562f1-aa65-4150-8a1c-41fa0aabb528", + "start": { + "$date": "2021-03-12T00:57:54.000Z" + }, + "end": { + "$date": "2021-03-12T01:25:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8fd60d37-1db0-45c5-830d-f3265d1db457", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-12T02:07:12.000Z" + }, + "end": { + "$date": "2021-03-12T04:56:43.000Z" + }, + "events": [ + { + "uuid": "b6c86faa-5708-4e20-9ba8-e62d31121551", + "start": { + "$date": "2021-03-12T02:07:12.000Z" + }, + "end": { + "$date": "2021-03-12T04:56:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e9f455be-36a4-4510-801a-0411c1c2114e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-12T02:15:17.000Z" + }, + "end": { + "$date": "2021-03-12T04:56:34.000Z" + }, + "events": [ + { + "uuid": "f7d45832-ca10-4f19-9560-b64c514ad9a8", + "start": { + "$date": "2021-03-12T02:15:17.000Z" + }, + "end": { + "$date": "2021-03-12T04:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae5a9bde-3423-493a-9ac2-8553e1c0916a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-12T02:16:06.000Z" + }, + "end": { + "$date": "2021-03-12T03:53:17.000Z" + }, + "events": [ + { + "uuid": "267134a5-3731-4299-b184-45e2c3f6b44f", + "start": { + "$date": "2021-03-12T02:16:06.000Z" + }, + "end": { + "$date": "2021-03-12T03:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7e779e88-cc24-4f19-b874-26ab1d9ad2d7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-12T02:21:34.000Z" + }, + "end": { + "$date": "2021-03-12T05:07:00.000Z" + }, + "events": [ + { + "uuid": "833f4df0-58d8-4b35-88d2-80ee71d30a7a", + "start": { + "$date": "2021-03-12T02:21:34.000Z" + }, + "end": { + "$date": "2021-03-12T05:07:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bc32ee9c-511e-46e3-9c8b-17f7132e9b25", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T02:36:07.000Z" + }, + "end": { + "$date": "2021-03-12T02:49:09.000Z" + }, + "events": [ + { + "uuid": "5e38298a-fb8e-4b0d-a2e2-7d8fdf08a9c9", + "start": { + "$date": "2021-03-12T02:36:07.000Z" + }, + "end": { + "$date": "2021-03-12T02:49:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8498ae3e-d476-457e-9c67-576cd9af8dc2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T03:03:16.000Z" + }, + "end": { + "$date": "2021-03-12T03:53:31.000Z" + }, + "events": [ + { + "uuid": "e9ed9303-3f30-4ec6-879a-0d6a3244a8ae", + "start": { + "$date": "2021-03-12T03:03:16.000Z" + }, + "end": { + "$date": "2021-03-12T03:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "21f29e55-e57d-4d5f-b7cf-a49eb3928d4d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-12T03:14:13.000Z" + }, + "end": { + "$date": "2021-03-12T06:47:15.000Z" + }, + "events": [ + { + "uuid": "74024729-0460-4cc8-b1df-d9138dd1bac1", + "start": { + "$date": "2021-03-12T03:14:13.000Z" + }, + "end": { + "$date": "2021-03-12T06:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2904ba6a-e75c-4766-ac14-f19a1e2fef59", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T03:53:51.000Z" + }, + "end": { + "$date": "2021-03-12T05:31:14.000Z" + }, + "events": [ + { + "uuid": "57fa8fa2-3f5c-4d51-b545-7be19a66e9c1", + "start": { + "$date": "2021-03-12T03:53:51.000Z" + }, + "end": { + "$date": "2021-03-12T05:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "708f1ec6-24c2-45ce-a13a-bdca65185856", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-12T05:05:59.000Z" + }, + "end": { + "$date": "2021-03-12T05:32:39.000Z" + }, + "events": [ + { + "uuid": "05bb8c2c-7e93-4708-93f6-6769b66e5d7d", + "start": { + "$date": "2021-03-12T05:05:59.000Z" + }, + "end": { + "$date": "2021-03-12T05:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7374eb88-38c2-43e4-b46a-ea7e481d22aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-12T05:39:37.000Z" + }, + "end": { + "$date": "2021-03-12T05:39:43.000Z" + }, + "events": [ + { + "uuid": "0129d74e-d356-44f1-acc3-1820feff93e1", + "start": { + "$date": "2021-03-12T05:39:37.000Z" + }, + "end": { + "$date": "2021-03-12T05:39:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c6d311a-c7b6-404a-baa4-6bf0f92c49a2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-12T05:41:09.000Z" + }, + "end": { + "$date": "2021-03-12T05:51:15.000Z" + }, + "events": [ + { + "uuid": "2c6face7-128c-4123-9542-dd550919a796", + "start": { + "$date": "2021-03-12T05:41:09.000Z" + }, + "end": { + "$date": "2021-03-12T05:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "22177b90-5869-4d0f-8f11-cd566efe5e07", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T05:34:23.000Z" + }, + "end": { + "$date": "2021-03-12T06:08:24.000Z" + }, + "events": [ + { + "uuid": "f40f2b97-03ad-4932-8851-0c67186e11fd", + "start": { + "$date": "2021-03-12T05:34:23.000Z" + }, + "end": { + "$date": "2021-03-12T06:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a3aaeef3-eae3-403e-8293-a8bdb03f3de1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-12T05:39:47.000Z" + }, + "end": { + "$date": "2021-03-12T07:12:12.000Z" + }, + "events": [ + { + "uuid": "910774b5-b249-4cab-a067-32f30536948f", + "start": { + "$date": "2021-03-12T05:39:47.000Z" + }, + "end": { + "$date": "2021-03-12T07:06:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "522951a2-b15c-41dc-a965-dd85784b40c7", + "start": { + "$date": "2021-03-12T07:06:47.000Z" + }, + "end": { + "$date": "2021-03-12T07:09:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4143a940-d4c0-4ffa-ab54-dfbd6f6a6db7", + "start": { + "$date": "2021-03-12T07:09:47.000Z" + }, + "end": { + "$date": "2021-03-12T07:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68b69f08-6e1f-4c22-9cc5-9cbd7df176ac", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-12T05:58:31.000Z" + }, + "end": { + "$date": "2021-03-12T06:33:44.000Z" + }, + "events": [ + { + "uuid": "177a5e9f-ba16-48a7-8898-f77c43e2aaae", + "start": { + "$date": "2021-03-12T05:58:31.000Z" + }, + "end": { + "$date": "2021-03-12T06:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d95690f9-e7b0-4f3e-af4a-5c35b2a9b1e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-12T07:11:55.000Z" + }, + "end": { + "$date": "2021-03-12T07:50:06.000Z" + }, + "events": [ + { + "uuid": "82b31a4b-eddc-4064-ae34-8a0b36f4de15", + "start": { + "$date": "2021-03-12T07:11:55.000Z" + }, + "end": { + "$date": "2021-03-12T07:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d10b36da-c87d-43b2-9285-fe7e82e25c6d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-12T14:56:39.000Z" + }, + "end": { + "$date": "2021-03-12T15:04:22.000Z" + }, + "events": [ + { + "uuid": "425d92d9-70fe-43fa-a3e3-a949658db5b7", + "start": { + "$date": "2021-03-12T14:56:39.000Z" + }, + "end": { + "$date": "2021-03-12T15:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7d3f627c-74c8-42e7-ab10-189ad4609629", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-12T15:38:13.000Z" + }, + "end": { + "$date": "2021-03-12T19:37:09.000Z" + }, + "events": [ + { + "uuid": "52911f67-fa5f-4d29-a40d-842ad3b610c0", + "start": { + "$date": "2021-03-12T15:38:13.000Z" + }, + "end": { + "$date": "2021-03-12T19:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "49fd3519-7f2e-4717-95a4-7609368dcae3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-12T18:23:14.000Z" + }, + "end": { + "$date": "2021-03-12T19:56:40.000Z" + }, + "events": [ + { + "uuid": "f744219e-9379-4273-bb40-14be2fcfa35f", + "start": { + "$date": "2021-03-12T18:23:14.000Z" + }, + "end": { + "$date": "2021-03-12T19:56:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3b8854b-e5dd-4a24-9c9b-72ea962751a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-12T19:32:32.000Z" + }, + "end": { + "$date": "2021-03-12T19:55:40.000Z" + }, + "events": [ + { + "uuid": "b6a783d3-435a-477f-8134-d6e706104365", + "start": { + "$date": "2021-03-12T19:32:32.000Z" + }, + "end": { + "$date": "2021-03-12T19:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1633d790-6602-456f-96ad-1459b029c715", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-12T20:03:18.000Z" + }, + "end": { + "$date": "2021-03-12T20:39:01.000Z" + }, + "events": [ + { + "uuid": "0d7ea83c-050e-4f7c-9af7-f94d7555523c", + "start": { + "$date": "2021-03-12T20:03:18.000Z" + }, + "end": { + "$date": "2021-03-12T20:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eaf39420-514e-47f8-bec8-0c694b8dcb7d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-12T20:28:20.000Z" + }, + "end": { + "$date": "2021-03-12T22:55:21.000Z" + }, + "events": [ + { + "uuid": "d8eef313-0388-47cb-af09-00564993c313", + "start": { + "$date": "2021-03-12T20:28:20.000Z" + }, + "end": { + "$date": "2021-03-12T22:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d5fb1314-0b87-4e85-b0b1-aa011a8ef1c7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-12T20:30:33.000Z" + }, + "end": { + "$date": "2021-03-12T20:55:46.000Z" + }, + "events": [ + { + "uuid": "e751b447-9a92-4261-b638-85bea6f57e17", + "start": { + "$date": "2021-03-12T20:30:33.000Z" + }, + "end": { + "$date": "2021-03-12T20:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "963d2d82-e92b-4cc4-843d-712404eb53c4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-12T20:34:50.000Z" + }, + "end": { + "$date": "2021-03-12T21:25:48.000Z" + }, + "events": [ + { + "uuid": "2b68ed20-a733-4f7f-a047-b0d879714ef8", + "start": { + "$date": "2021-03-12T20:34:50.000Z" + }, + "end": { + "$date": "2021-03-12T21:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "261a9d5c-b3ad-4cf3-9462-587222c6c1c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-12T21:36:41.000Z" + }, + "end": { + "$date": "2021-03-12T21:39:26.000Z" + }, + "events": [ + { + "uuid": "cfdbc742-89b7-46ad-ab04-33a19cf691b4", + "start": { + "$date": "2021-03-12T21:36:41.000Z" + }, + "end": { + "$date": "2021-03-12T21:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "55b7656a-9401-484a-9d61-7da8a50fc66f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-12T21:38:43.000Z" + }, + "end": { + "$date": "2021-03-12T22:26:06.000Z" + }, + "events": [ + { + "uuid": "00d0aad8-81d0-462d-a57d-94b0014cebe7", + "start": { + "$date": "2021-03-12T21:38:43.000Z" + }, + "end": { + "$date": "2021-03-12T22:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7a79c9bc-7dc0-400f-a8e7-8f6018fb770b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-12T21:52:30.000Z" + }, + "end": { + "$date": "2021-03-13T00:49:56.000Z" + }, + "events": [ + { + "uuid": "af599ad3-87c5-47d6-9fb9-127d3e0f79c3", + "start": { + "$date": "2021-03-12T21:52:30.000Z" + }, + "end": { + "$date": "2021-03-12T23:32:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f913a0d1-d41b-49ed-b298-1e02be86a10e", + "start": { + "$date": "2021-03-12T23:32:30.000Z" + }, + "end": { + "$date": "2021-03-12T23:49:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c7e8cdaa-a20c-4f53-830c-ca279a5b2fae", + "start": { + "$date": "2021-03-12T23:49:30.000Z" + }, + "end": { + "$date": "2021-03-13T00:14:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e8c6271-a922-4566-9187-d5c9a959c3ec", + "start": { + "$date": "2021-03-13T00:14:30.000Z" + }, + "end": { + "$date": "2021-03-13T00:15:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0ac08fb-482e-43d1-99fd-3707d013311d", + "start": { + "$date": "2021-03-13T00:15:30.000Z" + }, + "end": { + "$date": "2021-03-13T00:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d3598c02-d32c-47ad-a65f-0e5bf8f4a7f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-12T22:24:07.000Z" + }, + "end": { + "$date": "2021-03-12T22:40:24.000Z" + }, + "events": [ + { + "uuid": "e844ac13-9f86-4af1-9b56-c21ea41741e5", + "start": { + "$date": "2021-03-12T22:24:07.000Z" + }, + "end": { + "$date": "2021-03-12T22:40:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9e74ddbd-1ca4-4150-a70d-cf85f26ddefe", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-12T22:42:17.000Z" + }, + "end": { + "$date": "2021-03-12T23:28:12.000Z" + }, + "events": [ + { + "uuid": "2a33a5ca-dabe-44e6-a3a6-f8179d6eb447", + "start": { + "$date": "2021-03-12T22:42:17.000Z" + }, + "end": { + "$date": "2021-03-12T23:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9392b033-bc52-48c2-ad38-542f3a119f84", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-12T23:02:41.000Z" + }, + "end": { + "$date": "2021-03-13T00:02:57.000Z" + }, + "events": [ + { + "uuid": "a06de429-aa70-4206-9d94-34afe27539c3", + "start": { + "$date": "2021-03-12T23:02:41.000Z" + }, + "end": { + "$date": "2021-03-13T00:02:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8a01254a-5c5b-4c84-a165-85c362951702", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-12T23:12:58.000Z" + }, + "end": { + "$date": "2021-03-12T23:26:00.000Z" + }, + "events": [ + { + "uuid": "3e00b73f-2b1c-431c-ac6b-df449d1b8a70", + "start": { + "$date": "2021-03-12T23:12:58.000Z" + }, + "end": { + "$date": "2021-03-12T23:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7279d55e-9201-4ac6-bd7b-aecec2d8d0aa", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-12T22:42:17.000Z" + }, + "end": { + "$date": "2021-03-12T23:34:01.000Z" + }, + "events": [ + { + "uuid": "283266f4-a229-4a8b-9b05-91543bd3492d", + "start": { + "$date": "2021-03-12T22:42:17.000Z" + }, + "end": { + "$date": "2021-03-12T23:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "fa748122-ae1c-4146-bcda-4ad3ff3571e9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-12T23:34:25.000Z" + }, + "end": { + "$date": "2021-03-12T23:37:58.000Z" + }, + "events": [ + { + "uuid": "9a3d0c44-87e7-4ac3-b587-c33df2417530", + "start": { + "$date": "2021-03-12T23:34:25.000Z" + }, + "end": { + "$date": "2021-03-12T23:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "101360d9-3be1-4357-b418-e521ec7c4515", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-12T23:34:47.000Z" + }, + "end": { + "$date": "2021-03-12T23:35:56.000Z" + }, + "events": [ + { + "uuid": "924143b4-5844-42b2-ae6b-2859a4267e93", + "start": { + "$date": "2021-03-12T23:34:47.000Z" + }, + "end": { + "$date": "2021-03-12T23:35:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "76119cd4-fbea-444a-a6df-de13e8698f2d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-12T23:36:12.000Z" + }, + "end": { + "$date": "2021-03-13T00:05:14.000Z" + }, + "events": [ + { + "uuid": "7bf40557-9738-4d3c-bd36-1896e62b69ef", + "start": { + "$date": "2021-03-12T23:36:12.000Z" + }, + "end": { + "$date": "2021-03-13T00:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "200d8edf-a5e0-47b4-96cc-6db2929938ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-13T00:56:29.000Z" + }, + "end": { + "$date": "2021-03-13T01:21:12.000Z" + }, + "events": [ + { + "uuid": "07f30be2-de9a-4d53-9013-e60832e9c932", + "start": { + "$date": "2021-03-13T00:56:29.000Z" + }, + "end": { + "$date": "2021-03-13T02:23:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6efed95b-cb39-4bca-b5b6-0eb4db729ea0", + "start": { + "$date": "2021-03-13T02:23:29.000Z" + }, + "end": { + "$date": "2021-03-13T01:21:12.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "613d900b-10b4-4127-a602-bfae249791d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-13T00:01:45.000Z" + }, + "end": { + "$date": "2021-03-13T00:26:58.000Z" + }, + "events": [ + { + "uuid": "e16d9ff3-8f60-41ad-aa7c-e2309db24811", + "start": { + "$date": "2021-03-13T00:01:45.000Z" + }, + "end": { + "$date": "2021-03-13T00:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "72692264-3023-4985-8e3e-ffdf0a180cb4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-13T01:00:24.000Z" + }, + "end": { + "$date": "2021-03-13T04:50:22.000Z" + }, + "events": [ + { + "uuid": "f01eba1a-3fa5-410c-aad6-d69ef038d077", + "start": { + "$date": "2021-03-13T01:00:24.000Z" + }, + "end": { + "$date": "2021-03-13T03:44:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63f945a1-c8d6-4536-a0dc-24d07a958a3d", + "start": { + "$date": "2021-03-13T03:44:24.000Z" + }, + "end": { + "$date": "2021-03-13T03:58:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36f88a0c-2aac-4d16-80ad-a6553a3cd41f", + "start": { + "$date": "2021-03-13T03:58:24.000Z" + }, + "end": { + "$date": "2021-03-13T04:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e20edfd0-c49c-453c-8afd-c7ecdb614162", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-13T01:22:50.000Z" + }, + "end": { + "$date": "2021-03-13T05:59:02.000Z" + }, + "events": [ + { + "uuid": "7d744b50-51bb-42d7-a2c3-25eafcc07c3d", + "start": { + "$date": "2021-03-13T01:22:50.000Z" + }, + "end": { + "$date": "2021-03-13T03:42:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e34e574-e6d2-495a-a664-abffd2e3a35c", + "start": { + "$date": "2021-03-13T03:42:50.000Z" + }, + "end": { + "$date": "2021-03-13T03:43:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "122feb58-e365-4120-ac28-fbc39330fa84", + "start": { + "$date": "2021-03-13T03:43:50.000Z" + }, + "end": { + "$date": "2021-03-13T05:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "af536ec9-d2c4-419b-9a25-37a4448dc5b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T01:25:23.000Z" + }, + "end": { + "$date": "2021-03-13T02:26:17.000Z" + }, + "events": [ + { + "uuid": "41d6b782-ef43-4373-8118-09b46ad78992", + "start": { + "$date": "2021-03-13T01:25:23.000Z" + }, + "end": { + "$date": "2021-03-13T01:52:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c5f25e8a-c08c-440d-b8d8-04c478531f98", + "start": { + "$date": "2021-03-13T01:52:23.000Z" + }, + "end": { + "$date": "2021-03-13T01:56:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ffe88724-6dd2-43cd-b76c-fea85aa93807", + "start": { + "$date": "2021-03-13T01:56:23.000Z" + }, + "end": { + "$date": "2021-03-13T02:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "616ccdb5-6c68-488b-b12c-a3c049eb00ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-13T02:28:22.000Z" + }, + "end": { + "$date": "2021-03-13T03:06:11.000Z" + }, + "events": [ + { + "uuid": "f84687a6-2fe0-4f58-a49d-17b2bd513ee5", + "start": { + "$date": "2021-03-13T02:28:22.000Z" + }, + "end": { + "$date": "2021-03-13T03:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c43e537a-70f0-4745-88f5-fcef7221f4da", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-13T03:01:27.000Z" + }, + "end": { + "$date": "2021-03-13T05:28:02.000Z" + }, + "events": [ + { + "uuid": "f4c74e69-704e-4b57-b1c1-7a548e1b9a3f", + "start": { + "$date": "2021-03-13T03:01:27.000Z" + }, + "end": { + "$date": "2021-03-13T05:28:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "536cbe9a-d198-4c81-b04e-f0cc701c830a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T03:05:09.000Z" + }, + "end": { + "$date": "2021-03-13T04:28:08.000Z" + }, + "events": [ + { + "uuid": "bf73aabc-199e-4591-9484-8509e01c177d", + "start": { + "$date": "2021-03-13T03:05:09.000Z" + }, + "end": { + "$date": "2021-03-13T04:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd734dc4-e97a-49b7-bd34-d5a93bd00276", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-13T03:45:55.000Z" + }, + "end": { + "$date": "2021-03-13T07:43:48.000Z" + }, + "events": [ + { + "uuid": "caba6cc9-dee2-4b62-859c-e62a765ef6d4", + "start": { + "$date": "2021-03-13T03:45:55.000Z" + }, + "end": { + "$date": "2021-03-13T07:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df6a8e49-19b2-4b68-bc9a-44a544f4ed79", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-13T03:47:41.000Z" + }, + "end": { + "$date": "2021-03-13T07:43:46.000Z" + }, + "events": [ + { + "uuid": "794e0364-5a56-4de9-9d78-e3cfce016dff", + "start": { + "$date": "2021-03-13T03:47:41.000Z" + }, + "end": { + "$date": "2021-03-13T07:43:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "83b2ad81-6c62-42c4-b4ea-9eb2b47648a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T04:28:19.000Z" + }, + "end": { + "$date": "2021-03-13T04:36:40.000Z" + }, + "events": [ + { + "uuid": "19ce8729-2d87-4b78-a296-a3550f005765", + "start": { + "$date": "2021-03-13T04:28:19.000Z" + }, + "end": { + "$date": "2021-03-13T04:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "869e37c6-ddbc-4436-b09c-66cd68a6658d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-13T04:31:22.000Z" + }, + "end": { + "$date": "2021-03-13T06:39:30.000Z" + }, + "events": [ + { + "uuid": "d5ff591e-e75e-4af1-9ec7-527e6d50f96f", + "start": { + "$date": "2021-03-13T04:31:22.000Z" + }, + "end": { + "$date": "2021-03-13T06:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "00b9b71e-56f4-4871-8929-567ef8dfd480", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-13T04:32:14.000Z" + }, + "end": { + "$date": "2021-03-13T04:35:47.000Z" + }, + "events": [ + { + "uuid": "c2ac5c95-27c8-43ef-ab8d-62c734d02721", + "start": { + "$date": "2021-03-13T04:32:14.000Z" + }, + "end": { + "$date": "2021-03-13T04:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6afdfcd5-d73c-44f5-b017-52a99f5fe5f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-13T04:33:13.000Z" + }, + "end": { + "$date": "2021-03-13T06:11:35.000Z" + }, + "events": [ + { + "uuid": "94bcb8bd-b3ab-415b-8278-5b81b89429d5", + "start": { + "$date": "2021-03-13T04:33:13.000Z" + }, + "end": { + "$date": "2021-03-13T06:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "50c709fc-32e5-4d29-a489-af7f3a5e9485", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-13T04:36:29.000Z" + }, + "end": { + "$date": "2021-03-13T07:06:04.000Z" + }, + "events": [ + { + "uuid": "aba17600-e854-465e-b914-d921e57d5fcf", + "start": { + "$date": "2021-03-13T04:36:29.000Z" + }, + "end": { + "$date": "2021-03-13T07:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e6793ee-b0fb-464e-acce-4bd70170161e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T04:37:11.000Z" + }, + "end": { + "$date": "2021-03-13T05:30:59.000Z" + }, + "events": [ + { + "uuid": "27f89215-f98b-4051-a5a5-b54bed59c38f", + "start": { + "$date": "2021-03-13T04:37:11.000Z" + }, + "end": { + "$date": "2021-03-13T05:30:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "36001d91-ee98-4e76-bf19-088ac5dbd94f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-13T05:12:50.000Z" + }, + "end": { + "$date": "2021-03-13T05:29:15.000Z" + }, + "events": [ + { + "uuid": "6ee1f6b0-ea87-432a-8f71-1acb6e6593de", + "start": { + "$date": "2021-03-13T05:12:50.000Z" + }, + "end": { + "$date": "2021-03-13T05:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "a0f9d406-f791-4245-9e56-f3adc0457dfd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-13T05:39:57.000Z" + }, + "end": { + "$date": "2021-03-13T09:09:19.000Z" + }, + "events": [ + { + "uuid": "f85cb8a7-942a-45e7-86c5-74fa1ed89146", + "start": { + "$date": "2021-03-13T05:39:57.000Z" + }, + "end": { + "$date": "2021-03-13T09:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4fc282f2-0be1-436a-a18a-426579c5c03b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T05:55:10.000Z" + }, + "end": { + "$date": "2021-03-13T06:20:11.000Z" + }, + "events": [ + { + "uuid": "ee2a639e-0cc9-4319-9d92-0f63b67c510a", + "start": { + "$date": "2021-03-13T05:55:10.000Z" + }, + "end": { + "$date": "2021-03-13T06:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1758b099-f385-4daa-9dfc-b83db3b94317", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-13T06:12:35.000Z" + }, + "end": { + "$date": "2021-03-13T06:37:25.000Z" + }, + "events": [ + { + "uuid": "ae81e6db-4773-47d0-ba15-2c39d2f32baf", + "start": { + "$date": "2021-03-13T06:12:35.000Z" + }, + "end": { + "$date": "2021-03-13T06:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5ac7e4d8-622e-45d0-a7d9-122e1ac0c96d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-13T06:12:03.000Z" + }, + "end": { + "$date": "2021-03-13T08:18:33.000Z" + }, + "events": [ + { + "uuid": "48c6df78-3c55-4d57-a61c-b1e3b8e2541a", + "start": { + "$date": "2021-03-13T06:12:03.000Z" + }, + "end": { + "$date": "2021-03-13T08:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "93bf9623-65c1-4267-b278-ae96a1d28231", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T06:20:32.000Z" + }, + "end": { + "$date": "2021-03-13T06:30:14.000Z" + }, + "events": [ + { + "uuid": "bf768367-facc-4821-bcf7-63437a80b2a2", + "start": { + "$date": "2021-03-13T06:20:32.000Z" + }, + "end": { + "$date": "2021-03-13T06:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "13ff374d-180b-4c27-a84d-f4c7fdfbd4d0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T06:30:35.000Z" + }, + "end": { + "$date": "2021-03-13T07:00:48.000Z" + }, + "events": [ + { + "uuid": "d601584a-0b4a-4eca-acbe-7758c4871999", + "start": { + "$date": "2021-03-13T06:30:35.000Z" + }, + "end": { + "$date": "2021-03-13T07:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "0305c38b-14b7-4caa-98b9-d1731a8a1c9e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-13T06:42:10.000Z" + }, + "end": { + "$date": "2021-03-13T09:21:30.000Z" + }, + "events": [ + { + "uuid": "250e9732-43a5-48bf-ad47-7bb09542d62d", + "start": { + "$date": "2021-03-13T06:42:10.000Z" + }, + "end": { + "$date": "2021-03-13T09:21:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "40b88507-eb63-404f-a834-5c7a54d9ae4c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-13T07:07:07.000Z" + }, + "end": { + "$date": "2021-03-13T07:11:28.000Z" + }, + "events": [ + { + "uuid": "59c8485c-6531-4fcc-a20b-a9559068eed6", + "start": { + "$date": "2021-03-13T07:07:07.000Z" + }, + "end": { + "$date": "2021-03-13T07:11:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1d77013-7a7b-4793-a530-bc689a9af14c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-13T09:36:31.000Z" + }, + "end": { + "$date": "2021-03-13T10:06:23.000Z" + }, + "events": [ + { + "uuid": "704fd721-cb2e-4ed8-a217-f174c17033a8", + "start": { + "$date": "2021-03-13T09:36:31.000Z" + }, + "end": { + "$date": "2021-03-13T10:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "39eea389-7fb2-4294-9ac0-41e5162fd91c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T14:22:10.000Z" + }, + "end": { + "$date": "2021-03-13T14:33:15.000Z" + }, + "events": [ + { + "uuid": "5dbe7884-463d-43bd-8ca9-1d234365c8fb", + "start": { + "$date": "2021-03-13T14:22:10.000Z" + }, + "end": { + "$date": "2021-03-13T14:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "43856642-2630-477e-a370-f6b79c7f97e8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T16:57:12.000Z" + }, + "end": { + "$date": "2021-03-13T16:57:32.000Z" + }, + "events": [ + { + "uuid": "ceb6cb10-769c-4d31-b3f4-b10352093ed4", + "start": { + "$date": "2021-03-13T16:57:12.000Z" + }, + "end": { + "$date": "2021-03-13T18:55:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69c71736-2b69-4044-a939-db390d2814a8", + "start": { + "$date": "2021-03-13T18:55:12.000Z" + }, + "end": { + "$date": "2021-03-13T16:57:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e03aa17e-fb1b-4b68-a8d4-004121985e0e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-13T17:55:24.000Z" + }, + "end": { + "$date": "2021-03-14T01:37:55.000Z" + }, + "events": [ + { + "uuid": "eb24b047-512a-46b9-8dbc-c42c3b2a2789", + "start": { + "$date": "2021-03-13T17:55:24.000Z" + }, + "end": { + "$date": "2021-03-13T18:59:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f9219c2-4f36-465b-8728-101bcd47dd5f", + "start": { + "$date": "2021-03-13T18:59:24.000Z" + }, + "end": { + "$date": "2021-03-13T19:04:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "55580cb6-2584-4623-a88f-a05d7ace929b", + "start": { + "$date": "2021-03-13T19:04:24.000Z" + }, + "end": { + "$date": "2021-03-13T23:37:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6b457206-6656-438b-bc2c-cb9026b79922", + "start": { + "$date": "2021-03-13T23:37:24.000Z" + }, + "end": { + "$date": "2021-03-14T01:37:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "0349bc38-6d91-4058-9caa-cc5f355e7ebd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-13T17:55:54.000Z" + }, + "end": { + "$date": "2021-03-13T18:21:42.000Z" + }, + "events": [ + { + "uuid": "40534783-31a4-4866-a0be-4b333816747b", + "start": { + "$date": "2021-03-13T17:55:54.000Z" + }, + "end": { + "$date": "2021-03-13T18:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbd1a35c-b848-4fc3-9878-42ac65b155e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-13T19:45:13.000Z" + }, + "end": { + "$date": "2021-03-13T19:46:15.000Z" + }, + "events": [ + { + "uuid": "cec5c1dc-f482-4d94-a0ab-2ea596f743e8", + "start": { + "$date": "2021-03-13T19:45:13.000Z" + }, + "end": { + "$date": "2021-03-13T19:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da8bb7d4-1959-488b-9b7e-99514bbe36ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-13T19:49:28.000Z" + }, + "end": { + "$date": "2021-03-13T20:16:08.000Z" + }, + "events": [ + { + "uuid": "59cb7772-a9fc-4dd0-8df1-869e0cb3cc7b", + "start": { + "$date": "2021-03-13T19:49:28.000Z" + }, + "end": { + "$date": "2021-03-13T20:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9949907a-b36c-4305-b141-7bd63435e75a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-13T20:23:54.000Z" + }, + "end": { + "$date": "2021-03-13T20:49:29.000Z" + }, + "events": [ + { + "uuid": "9c0d7ba2-3cfc-4f77-bb10-a50ee0864de2", + "start": { + "$date": "2021-03-13T20:23:54.000Z" + }, + "end": { + "$date": "2021-03-13T20:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "85efda6e-e30f-4c30-8277-e73a87d26da4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T20:26:51.000Z" + }, + "end": { + "$date": "2021-03-13T21:04:14.000Z" + }, + "events": [ + { + "uuid": "641e8020-b761-4aa3-b3af-7a5ae9468d08", + "start": { + "$date": "2021-03-13T20:26:51.000Z" + }, + "end": { + "$date": "2021-03-13T21:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "89a4d3e7-9c3d-44ea-b11a-cc2d1667bc06", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-13T20:59:58.000Z" + }, + "end": { + "$date": "2021-03-13T21:25:51.000Z" + }, + "events": [ + { + "uuid": "51ecfbdf-a798-4bf3-9876-c62462da182c", + "start": { + "$date": "2021-03-13T20:59:58.000Z" + }, + "end": { + "$date": "2021-03-13T21:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "85ffb949-e5f5-4a0c-bca6-9f0594d9e7ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T21:27:27.000Z" + }, + "end": { + "$date": "2021-03-13T21:27:32.000Z" + }, + "events": [ + { + "uuid": "bfed46e4-3255-4252-8071-bd9adf811b52", + "start": { + "$date": "2021-03-13T21:27:27.000Z" + }, + "end": { + "$date": "2021-03-13T21:27:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "05287841-b9d4-4f26-a213-b42353b47056", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T21:27:37.000Z" + }, + "end": { + "$date": "2021-03-13T22:19:09.000Z" + }, + "events": [ + { + "uuid": "9611a3a4-c3b3-48c6-a00b-2f3361fd7002", + "start": { + "$date": "2021-03-13T21:27:37.000Z" + }, + "end": { + "$date": "2021-03-13T22:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d474eebb-c3fb-479b-b1bc-7ec8ba1c0d5f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-13T21:30:06.000Z" + }, + "end": { + "$date": "2021-03-13T22:36:11.000Z" + }, + "events": [ + { + "uuid": "15c77e7f-4cc1-41bd-a19a-d2901c2787b3", + "start": { + "$date": "2021-03-13T21:30:06.000Z" + }, + "end": { + "$date": "2021-03-13T22:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e33e21b8-46b8-4ec0-81ac-40b67a579352", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-13T21:38:20.000Z" + }, + "end": { + "$date": "2021-03-13T22:40:17.000Z" + }, + "events": [ + { + "uuid": "9dd1f898-8baf-412b-9cb9-abd7e28e99b3", + "start": { + "$date": "2021-03-13T21:38:20.000Z" + }, + "end": { + "$date": "2021-03-13T22:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "bdc69e22-6e3c-4d10-a7e0-28b5f8df13a4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-13T22:07:57.000Z" + }, + "end": { + "$date": "2021-03-13T22:38:17.000Z" + }, + "events": [ + { + "uuid": "40532242-cc72-46b9-ab89-2a3852e2023d", + "start": { + "$date": "2021-03-13T22:07:57.000Z" + }, + "end": { + "$date": "2021-03-13T22:09:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "27cdec5f-c50f-4824-8a96-d41bb95f8f0e", + "start": { + "$date": "2021-03-13T22:09:57.000Z" + }, + "end": { + "$date": "2021-03-13T22:10:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "431de0d9-24e8-489a-998e-125f73869cf6", + "start": { + "$date": "2021-03-13T22:10:57.000Z" + }, + "end": { + "$date": "2021-03-13T22:23:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "91fc316c-759d-4ced-bfba-272f85c7f9d9", + "start": { + "$date": "2021-03-13T22:23:57.000Z" + }, + "end": { + "$date": "2021-03-13T22:24:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28e9befd-51bd-42cb-9c0c-f3e4fe6b9f61", + "start": { + "$date": "2021-03-13T22:24:57.000Z" + }, + "end": { + "$date": "2021-03-13T22:38:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "17c073af-1113-4009-ab88-5729b07258fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T22:19:19.000Z" + }, + "end": { + "$date": "2021-03-13T23:05:20.000Z" + }, + "events": [ + { + "uuid": "4c433db9-95cc-46b7-aae7-7561947e9779", + "start": { + "$date": "2021-03-13T22:19:19.000Z" + }, + "end": { + "$date": "2021-03-13T23:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ac131e0a-3da4-4c01-a491-705d39c88f48", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T22:55:40.000Z" + }, + "end": { + "$date": "2021-03-13T23:10:38.000Z" + }, + "events": [ + { + "uuid": "13fe675f-a98b-4f85-af33-1971471dcbd1", + "start": { + "$date": "2021-03-13T22:55:40.000Z" + }, + "end": { + "$date": "2021-03-13T23:10:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", + "uuid": "68cf5e45-8ffb-412d-9efb-8e743d5bac65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-13T23:05:40.000Z" + }, + "end": { + "$date": "2021-03-14T00:24:19.000Z" + }, + "events": [ + { + "uuid": "21c360f6-36a5-4a5e-b049-30eb036b10bc", + "start": { + "$date": "2021-03-13T23:05:40.000Z" + }, + "end": { + "$date": "2021-03-14T00:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", + "uuid": "ad1f6679-c47c-48c0-af1d-b6016fb15f09", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-13T23:10:48.000Z" + }, + "end": { + "$date": "2021-03-14T00:23:07.000Z" + }, + "events": [ + { + "uuid": "1edaac5f-3133-435c-9a19-79284563c103", + "start": { + "$date": "2021-03-13T23:10:48.000Z" + }, + "end": { + "$date": "2021-03-14T00:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14b65849-2d95-4c61-aab1-841725e58f96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-13T23:37:59.000Z" + }, + "end": { + "$date": "2021-03-14T00:08:39.000Z" + }, + "events": [ + { + "uuid": "8195079f-248b-4c06-ac8f-b13c49646ef4", + "start": { + "$date": "2021-03-13T23:37:59.000Z" + }, + "end": { + "$date": "2021-03-14T00:08:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "408bfe62-3ac1-417c-8d81-33c930390a8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T00:22:11.000Z" + }, + "end": { + "$date": "2021-03-14T01:13:11.000Z" + }, + "events": [ + { + "uuid": "17decbc5-7778-4df6-95e7-873d646c21fe", + "start": { + "$date": "2021-03-14T00:22:11.000Z" + }, + "end": { + "$date": "2021-03-14T01:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eef695c0-b7fc-409e-8cbc-58ba36d07e92", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-14T00:23:50.000Z" + }, + "end": { + "$date": "2021-03-14T01:13:04.000Z" + }, + "events": [ + { + "uuid": "625f0fcf-aae8-49b0-8502-919b88b40f84", + "start": { + "$date": "2021-03-14T00:23:50.000Z" + }, + "end": { + "$date": "2021-03-14T01:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "821742f4-00a3-4cee-a0b4-8db27f8489dc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-14T00:24:29.000Z" + }, + "end": { + "$date": "2021-03-14T01:12:57.000Z" + }, + "events": [ + { + "uuid": "9ff51206-1a75-49e8-9d93-d8fa7cf7494a", + "start": { + "$date": "2021-03-14T00:24:29.000Z" + }, + "end": { + "$date": "2021-03-14T01:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c366fe25-2d8f-46ef-bf49-8816e1500d90", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-14T00:26:46.000Z" + }, + "end": { + "$date": "2021-03-14T01:13:15.000Z" + }, + "events": [ + { + "uuid": "6e36837d-d19c-4f06-be59-f151cd859736", + "start": { + "$date": "2021-03-14T00:26:46.000Z" + }, + "end": { + "$date": "2021-03-14T01:13:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "a0b93521-c2de-42a8-86af-ae02608bb74e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T00:26:49.000Z" + }, + "end": { + "$date": "2021-03-14T00:35:19.000Z" + }, + "events": [ + { + "uuid": "82dcff7d-527d-4ea4-9153-10580a18089f", + "start": { + "$date": "2021-03-14T00:26:49.000Z" + }, + "end": { + "$date": "2021-03-14T00:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "98ab968f-7c53-4482-bafa-dd8ec8e85b41", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T00:36:39.000Z" + }, + "end": { + "$date": "2021-03-14T00:38:34.000Z" + }, + "events": [ + { + "uuid": "e21b5339-1499-418e-8213-96b8b60a5b9c", + "start": { + "$date": "2021-03-14T00:36:39.000Z" + }, + "end": { + "$date": "2021-03-14T00:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "9725da38-4283-48f7-97cd-b88d60e64c69", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T00:39:04.000Z" + }, + "end": { + "$date": "2021-03-14T00:40:40.000Z" + }, + "events": [ + { + "uuid": "c3258b4c-0af7-4d5d-a5fb-25ef7ddf0019", + "start": { + "$date": "2021-03-14T00:39:04.000Z" + }, + "end": { + "$date": "2021-03-14T00:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "05f3847c-3055-4f3d-9c4a-6891df8615fe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T00:41:10.000Z" + }, + "end": { + "$date": "2021-03-14T01:04:26.000Z" + }, + "events": [ + { + "uuid": "dc997a56-4d9e-4322-878f-3e33874142b1", + "start": { + "$date": "2021-03-14T00:41:10.000Z" + }, + "end": { + "$date": "2021-03-14T01:04:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6eab5c89-725d-457b-b0c1-6765b44a8d6d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-14T00:51:28.000Z" + }, + "end": { + "$date": "2021-03-14T01:31:34.000Z" + }, + "events": [ + { + "uuid": "8ce1f5e1-c530-4f36-b257-12aec2a1221d", + "start": { + "$date": "2021-03-14T00:51:28.000Z" + }, + "end": { + "$date": "2021-03-14T01:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7cfdfe74-dc92-4598-b5db-167bfad4f63f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T01:05:36.000Z" + }, + "end": { + "$date": "2021-03-14T02:26:34.000Z" + }, + "events": [ + { + "uuid": "69e713a8-7f76-4b2d-945d-4aa9ccb17ef0", + "start": { + "$date": "2021-03-14T01:05:36.000Z" + }, + "end": { + "$date": "2021-03-14T02:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaf56770-cb58-4d2e-8ada-d75d077383ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-14T01:48:01.000Z" + }, + "end": { + "$date": "2021-03-14T02:19:52.000Z" + }, + "events": [ + { + "uuid": "9fd9da8d-b497-401b-a65a-29c8fefa6b3a", + "start": { + "$date": "2021-03-14T01:48:01.000Z" + }, + "end": { + "$date": "2021-03-14T02:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14b8ea8c-59ef-4923-97d9-a0e9b4c29bae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-14T01:50:48.000Z" + }, + "end": { + "$date": "2021-03-14T02:20:01.000Z" + }, + "events": [ + { + "uuid": "42d55f70-26ab-47a7-b793-ad0574d7d622", + "start": { + "$date": "2021-03-14T01:50:48.000Z" + }, + "end": { + "$date": "2021-03-14T02:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1073e52-d505-4c3b-b4f2-dd6c5fc7e0ea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T02:22:15.000Z" + }, + "end": { + "$date": "2021-03-14T02:54:44.000Z" + }, + "events": [ + { + "uuid": "da2df5f1-bb3e-4e78-afc3-cdbd4e9716ee", + "start": { + "$date": "2021-03-14T02:22:15.000Z" + }, + "end": { + "$date": "2021-03-14T02:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19b7cc55-d168-4dbd-98f7-0ec22629f87f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T02:59:05.000Z" + }, + "end": { + "$date": "2021-03-14T02:59:12.000Z" + }, + "events": [ + { + "uuid": "635981fc-7c3d-4219-b69e-ae1fa51ecc5f", + "start": { + "$date": "2021-03-14T02:59:05.000Z" + }, + "end": { + "$date": "2021-03-14T02:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31f76325-a9d8-4aed-a986-64dc7d9b45db", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T03:01:41.000Z" + }, + "end": { + "$date": "2021-03-14T03:21:45.000Z" + }, + "events": [ + { + "uuid": "77380503-5988-40f8-bf2d-a387cca70c7f", + "start": { + "$date": "2021-03-14T03:01:41.000Z" + }, + "end": { + "$date": "2021-03-14T03:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c36cdcbb-85a8-495d-9731-8b78ee8cf01f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-14T03:24:50.000Z" + }, + "end": { + "$date": "2021-03-14T04:00:02.000Z" + }, + "events": [ + { + "uuid": "654bec9b-937a-47a9-85d1-4e7be585e89d", + "start": { + "$date": "2021-03-14T03:24:50.000Z" + }, + "end": { + "$date": "2021-03-14T04:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8947392b-0a7c-41cf-9a8a-39abe86b4942", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-14T03:26:16.000Z" + }, + "end": { + "$date": "2021-03-14T04:00:01.000Z" + }, + "events": [ + { + "uuid": "8ef71275-8e4e-47a7-9910-3668651e8be5", + "start": { + "$date": "2021-03-14T03:26:16.000Z" + }, + "end": { + "$date": "2021-03-14T04:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88458d37-bf72-40c4-882e-65a0ddbf60f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-14T03:24:48.000Z" + }, + "end": { + "$date": "2021-03-14T03:59:57.000Z" + }, + "events": [ + { + "uuid": "7d931e45-33bc-4697-a21d-1cf6c4735b52", + "start": { + "$date": "2021-03-14T03:24:48.000Z" + }, + "end": { + "$date": "2021-03-14T03:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "02d6fa72-a837-4826-a7cd-8219244d87ba", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-14T03:38:09.000Z" + }, + "end": { + "$date": "2021-03-14T07:10:50.000Z" + }, + "events": [ + { + "uuid": "c9b51315-efaa-457e-b091-e107b2b8d0fa", + "start": { + "$date": "2021-03-14T03:38:09.000Z" + }, + "end": { + "$date": "2021-03-14T07:10:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "bb5c5c08-1213-41cc-acb2-a2a2805c9a9f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-14T03:56:51.000Z" + }, + "end": { + "$date": "2021-03-14T05:05:58.000Z" + }, + "events": [ + { + "uuid": "f30f5d6a-aff6-43fa-b79e-53e57ab11bff", + "start": { + "$date": "2021-03-14T03:56:51.000Z" + }, + "end": { + "$date": "2021-03-14T05:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1842bb58-5c3e-401b-8456-a365a47aedc8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-14T04:07:14.000Z" + }, + "end": { + "$date": "2021-03-14T05:55:53.000Z" + }, + "events": [ + { + "uuid": "fcc4fd29-ac01-4b58-93d0-035fd11b90ab", + "start": { + "$date": "2021-03-14T04:07:14.000Z" + }, + "end": { + "$date": "2021-03-14T05:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e31e2369-25fa-43f6-8f6f-5e9aa12057ca", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-14T04:57:43.000Z" + }, + "end": { + "$date": "2021-03-14T05:25:37.000Z" + }, + "events": [ + { + "uuid": "c0e583fa-a11a-44a2-b9b2-380bef48cb57", + "start": { + "$date": "2021-03-14T04:57:43.000Z" + }, + "end": { + "$date": "2021-03-14T05:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c636fa9d-ae13-403e-8a24-55041d356695", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T04:46:41.000Z" + }, + "end": { + "$date": "2021-03-14T07:29:26.000Z" + }, + "events": [ + { + "uuid": "acd75975-26e0-4c2e-be47-1c77145e5903", + "start": { + "$date": "2021-03-14T04:46:41.000Z" + }, + "end": { + "$date": "2021-03-14T07:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c084cb3b-adfb-483d-9322-645bd03c09eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-14T04:56:56.000Z" + }, + "end": { + "$date": "2021-03-14T05:25:36.000Z" + }, + "events": [ + { + "uuid": "b3f3f4a0-2b08-42ad-b93b-236fff2540bf", + "start": { + "$date": "2021-03-14T04:56:56.000Z" + }, + "end": { + "$date": "2021-03-14T05:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "46cd1392-d02e-4546-b708-ec70acd6347b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-14T05:07:18.000Z" + }, + "end": { + "$date": "2021-03-14T06:05:20.000Z" + }, + "events": [ + { + "uuid": "d95b39b4-502d-4343-97f4-fc86d3955087", + "start": { + "$date": "2021-03-14T05:07:18.000Z" + }, + "end": { + "$date": "2021-03-14T06:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2c989a47-b7a9-4869-80b7-dc1477c48b37", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T05:08:05.000Z" + }, + "end": { + "$date": "2021-03-14T06:43:00.000Z" + }, + "events": [ + { + "uuid": "f42086eb-c37b-4610-930b-a844bac2990b", + "start": { + "$date": "2021-03-14T05:08:05.000Z" + }, + "end": { + "$date": "2021-03-14T06:43:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4e7e5245-be4e-4b58-a66e-435b1b0d4fa1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-14T05:13:51.000Z" + }, + "end": { + "$date": "2021-03-14T06:44:01.000Z" + }, + "events": [ + { + "uuid": "77f57df7-2c55-4964-aa06-9d943d55a8d4", + "start": { + "$date": "2021-03-14T05:13:51.000Z" + }, + "end": { + "$date": "2021-03-14T06:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fbcac28c-5b34-422a-93cb-83e6ddf3e954", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-14T06:52:49.000Z" + }, + "end": { + "$date": "2021-03-14T07:31:13.000Z" + }, + "events": [ + { + "uuid": "0fb2209c-ff3f-4a44-aafb-d4c1c7bba205", + "start": { + "$date": "2021-03-14T06:52:49.000Z" + }, + "end": { + "$date": "2021-03-14T07:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14525a48-f3a4-4b68-9397-63f0c8d28e92", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-14T05:45:53.000Z" + }, + "end": { + "$date": "2021-03-14T05:45:54.000Z" + }, + "events": [ + { + "uuid": "e12d844c-bec6-4939-8106-6a427202c980", + "start": { + "$date": "2021-03-14T05:45:53.000Z" + }, + "end": { + "$date": "2021-03-14T05:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a9bd595-6869-4c11-8f59-7544aefe50d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-14T05:44:24.000Z" + }, + "end": { + "$date": "2021-03-14T05:45:58.000Z" + }, + "events": [ + { + "uuid": "77f3c654-755e-4137-88b3-57719b17b725", + "start": { + "$date": "2021-03-14T05:44:24.000Z" + }, + "end": { + "$date": "2021-03-14T05:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "85b63c3c-ef14-488c-bd3e-95600ce67abc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-14T05:46:23.000Z" + }, + "end": { + "$date": "2021-03-14T07:12:49.000Z" + }, + "events": [ + { + "uuid": "26ed1f4c-17a3-4690-be79-fee4c4b0a8bb", + "start": { + "$date": "2021-03-14T05:46:23.000Z" + }, + "end": { + "$date": "2021-03-14T07:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e82a739f-a19b-4272-9a83-382c537f7670", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-14T05:46:25.000Z" + }, + "end": { + "$date": "2021-03-14T06:43:27.000Z" + }, + "events": [ + { + "uuid": "a0f10686-44d6-4873-aaae-eff96bda7520", + "start": { + "$date": "2021-03-14T05:46:25.000Z" + }, + "end": { + "$date": "2021-03-14T06:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a7409352-2097-48db-abe3-6a51474d3719", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-14T06:06:50.000Z" + }, + "end": { + "$date": "2021-03-14T06:23:41.000Z" + }, + "events": [ + { + "uuid": "a598d27b-6a60-4e01-b121-4dc8ee95ea31", + "start": { + "$date": "2021-03-14T06:06:50.000Z" + }, + "end": { + "$date": "2021-03-14T06:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "943e930a-3c83-4438-a240-56cd272a7b4d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-14T06:24:05.000Z" + }, + "end": { + "$date": "2021-03-14T10:20:24.000Z" + }, + "events": [ + { + "uuid": "1e7361b2-9ce9-4e38-91ec-8aa08784a54f", + "start": { + "$date": "2021-03-14T06:24:05.000Z" + }, + "end": { + "$date": "2021-03-14T10:20:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b97f2422-fb2d-44a8-9fcf-5e1de905775c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-14T06:45:46.000Z" + }, + "end": { + "$date": "2021-03-14T07:31:23.000Z" + }, + "events": [ + { + "uuid": "a207338c-4231-4215-9eda-f4271d357efa", + "start": { + "$date": "2021-03-14T06:45:46.000Z" + }, + "end": { + "$date": "2021-03-14T07:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f628e248-f555-4211-bae9-44ac808c29f8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-14T06:51:51.000Z" + }, + "end": { + "$date": "2021-03-14T07:31:17.000Z" + }, + "events": [ + { + "uuid": "90c53c68-400c-492b-b56c-64286ee46ee0", + "start": { + "$date": "2021-03-14T06:51:51.000Z" + }, + "end": { + "$date": "2021-03-14T07:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "15df36d9-60fe-42a3-b06b-d1c5bd30fe86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T07:41:28.000Z" + }, + "end": { + "$date": "2021-03-14T07:57:48.000Z" + }, + "events": [ + { + "uuid": "cbcbfc52-1d2c-4826-854b-0c2a8e297fbf", + "start": { + "$date": "2021-03-14T07:41:28.000Z" + }, + "end": { + "$date": "2021-03-14T07:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "968e2dfb-f045-46cf-bca3-9bfafcacb5f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T07:58:03.000Z" + }, + "end": { + "$date": "2021-03-14T08:22:54.000Z" + }, + "events": [ + { + "uuid": "44b7ea82-461b-42bd-9d1c-bc1e3b2253c5", + "start": { + "$date": "2021-03-14T07:58:03.000Z" + }, + "end": { + "$date": "2021-03-14T08:22:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af5ea7a1-dba8-44f5-96c4-8ccfc6280b58", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-14T08:17:21.000Z" + }, + "end": { + "$date": "2021-03-14T08:28:16.000Z" + }, + "events": [ + { + "uuid": "16775832-f962-41f9-93b7-099502887150", + "start": { + "$date": "2021-03-14T08:17:21.000Z" + }, + "end": { + "$date": "2021-03-14T08:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "970a3ba2-cd8b-48b9-8ec6-d3ad66a8a288", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-14T08:19:18.000Z" + }, + "end": { + "$date": "2021-03-14T08:45:18.000Z" + }, + "events": [ + { + "uuid": "6e780796-c33d-4c6d-90cf-f7eb16937678", + "start": { + "$date": "2021-03-14T08:19:18.000Z" + }, + "end": { + "$date": "2021-03-14T08:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f992cc59-c048-4a84-93d3-3f81bebc0038", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-14T08:54:00.000Z" + }, + "end": { + "$date": "2021-03-14T09:21:28.000Z" + }, + "events": [ + { + "uuid": "f2a0c222-2a99-448b-a50a-578c33e7de58", + "start": { + "$date": "2021-03-14T08:54:00.000Z" + }, + "end": { + "$date": "2021-03-14T09:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4ed0511f-9c64-493d-beb3-863bd02efafb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T16:08:48.000Z" + }, + "end": { + "$date": "2021-03-14T16:45:23.000Z" + }, + "events": [ + { + "uuid": "cb2a6f2e-143b-4eae-842d-8f41e28ab91a", + "start": { + "$date": "2021-03-14T16:08:48.000Z" + }, + "end": { + "$date": "2021-03-14T16:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "047e3236-5bb2-41fa-9a63-6aefa7c614f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T16:46:23.000Z" + }, + "end": { + "$date": "2021-03-14T16:47:58.000Z" + }, + "events": [ + { + "uuid": "6467282f-abd0-4485-be86-a01c4fd0e4a3", + "start": { + "$date": "2021-03-14T16:46:23.000Z" + }, + "end": { + "$date": "2021-03-14T16:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4902c062-ee7a-4bae-8635-5274ab98d56f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-14T17:02:36.000Z" + }, + "end": { + "$date": "2021-03-14T17:10:47.000Z" + }, + "events": [ + { + "uuid": "0df02991-d846-4750-a55c-b62c13dc3816", + "start": { + "$date": "2021-03-14T17:02:36.000Z" + }, + "end": { + "$date": "2021-03-14T17:10:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b18dd8c2-2dcd-44a3-82df-9b8348f6d6c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T18:07:22.000Z" + }, + "end": { + "$date": "2021-03-14T18:07:26.000Z" + }, + "events": [ + { + "uuid": "404ba221-3719-41f5-ba08-43090f728274", + "start": { + "$date": "2021-03-14T18:07:22.000Z" + }, + "end": { + "$date": "2021-03-14T18:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "739c3678-7033-4058-b6b2-3773ed6b2fb4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-14T17:11:01.000Z" + }, + "end": { + "$date": "2021-03-14T19:43:52.000Z" + }, + "events": [ + { + "uuid": "20c86d55-1332-41ad-9516-1bdc5bd89b75", + "start": { + "$date": "2021-03-14T17:11:01.000Z" + }, + "end": { + "$date": "2021-03-14T18:51:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1cd0ec5-a724-4ce0-8f47-8fca80245aeb", + "start": { + "$date": "2021-03-14T18:51:01.000Z" + }, + "end": { + "$date": "2021-03-14T18:55:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64c09305-074b-4a6a-b9f3-09917ffa7cc7", + "start": { + "$date": "2021-03-14T18:55:01.000Z" + }, + "end": { + "$date": "2021-03-14T19:20:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eab02305-466e-40b4-ae9f-8b8c60594b58", + "start": { + "$date": "2021-03-14T19:20:01.000Z" + }, + "end": { + "$date": "2021-03-14T19:42:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "131b4486-63c4-43c0-aaf3-d23594ea8f0c", + "start": { + "$date": "2021-03-14T19:42:01.000Z" + }, + "end": { + "$date": "2021-03-14T19:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "15935ca0-aaa5-4f11-a1fb-5ca2fc07c1a6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T18:07:32.000Z" + }, + "end": { + "$date": "2021-03-14T19:56:54.000Z" + }, + "events": [ + { + "uuid": "6be3d3c6-d088-4cf2-ab75-0c429c34d12e", + "start": { + "$date": "2021-03-14T18:07:32.000Z" + }, + "end": { + "$date": "2021-03-14T18:49:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4330c3bf-7342-48fa-b199-47fb7366da08", + "start": { + "$date": "2021-03-14T18:49:32.000Z" + }, + "end": { + "$date": "2021-03-14T18:53:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e26699a1-cf19-490c-9ce4-1e55cca59212", + "start": { + "$date": "2021-03-14T18:53:32.000Z" + }, + "end": { + "$date": "2021-03-14T19:04:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6bfef61-5631-4783-87d6-29a06a74a02e", + "start": { + "$date": "2021-03-14T19:04:32.000Z" + }, + "end": { + "$date": "2021-03-14T19:33:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "220938cd-3b33-4458-861a-78660018dfe1", + "start": { + "$date": "2021-03-14T19:33:32.000Z" + }, + "end": { + "$date": "2021-03-14T19:44:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d77dd46a-fb19-4282-945f-93673125fa86", + "start": { + "$date": "2021-03-14T19:44:32.000Z" + }, + "end": { + "$date": "2021-03-14T19:56:54.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8b879bd2-75ed-4509-b027-7844d11b7e14", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-14T19:19:48.000Z" + }, + "end": { + "$date": "2021-03-14T20:52:13.000Z" + }, + "events": [ + { + "uuid": "8182eea6-8620-4220-a8af-d35427c44a5a", + "start": { + "$date": "2021-03-14T19:19:48.000Z" + }, + "end": { + "$date": "2021-03-14T20:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6a2a3ab2-384c-4de8-a442-dba23487af9d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-14T19:28:17.000Z" + }, + "end": { + "$date": "2021-03-14T20:50:23.000Z" + }, + "events": [ + { + "uuid": "84147eaa-cba7-44b5-82bd-5d8743cd5a0f", + "start": { + "$date": "2021-03-14T19:28:17.000Z" + }, + "end": { + "$date": "2021-03-14T20:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a685e45-4931-4f27-92e3-f8b140af3403", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-14T19:47:18.000Z" + }, + "end": { + "$date": "2021-03-14T20:02:04.000Z" + }, + "events": [ + { + "uuid": "53e9b26f-163e-4baf-aa16-20ce7140ef53", + "start": { + "$date": "2021-03-14T19:47:18.000Z" + }, + "end": { + "$date": "2021-03-14T20:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d5970e92-651f-405b-ad44-f38db3b8a0d3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-14T19:48:12.000Z" + }, + "end": { + "$date": "2021-03-15T03:01:18.000Z" + }, + "events": [ + { + "uuid": "f7d485f4-0eb5-4f2d-8f97-e0ca31555c8f", + "start": { + "$date": "2021-03-14T19:48:12.000Z" + }, + "end": { + "$date": "2021-03-14T20:11:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fceb9be5-325a-4bfd-9f38-d19597a85e9f", + "start": { + "$date": "2021-03-14T20:11:12.000Z" + }, + "end": { + "$date": "2021-03-14T20:13:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fbd43c3e-48d7-4f1e-9228-fa355c1ded8c", + "start": { + "$date": "2021-03-14T20:13:12.000Z" + }, + "end": { + "$date": "2021-03-14T21:01:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98bf5747-8ed8-48da-9022-c8f578615a5b", + "start": { + "$date": "2021-03-14T21:01:12.000Z" + }, + "end": { + "$date": "2021-03-15T00:38:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2aaa21d-6af2-442f-9c3f-a8ce1efb4d95", + "start": { + "$date": "2021-03-15T00:38:12.000Z" + }, + "end": { + "$date": "2021-03-15T00:48:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "28cd2036-546a-4ea6-af48-257f3dbb05b6", + "start": { + "$date": "2021-03-15T00:48:12.000Z" + }, + "end": { + "$date": "2021-03-15T00:53:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11e6760c-8916-4c4c-89f4-b1beeaa2ac80", + "start": { + "$date": "2021-03-15T00:53:12.000Z" + }, + "end": { + "$date": "2021-03-15T01:03:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "baf5c7a9-fdba-44b4-af78-39f2370ae560", + "start": { + "$date": "2021-03-15T01:03:12.000Z" + }, + "end": { + "$date": "2021-03-15T02:08:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d8b110b-8a09-4671-9089-5326cb24158c", + "start": { + "$date": "2021-03-15T02:08:12.000Z" + }, + "end": { + "$date": "2021-03-15T02:11:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72a4777c-d7af-4950-82a1-cc6e1b10c34f", + "start": { + "$date": "2021-03-15T02:11:12.000Z" + }, + "end": { + "$date": "2021-03-15T03:01:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b7271d87-78ea-4ef7-a525-4dd433142458", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T19:57:19.000Z" + }, + "end": { + "$date": "2021-03-14T20:33:10.000Z" + }, + "events": [ + { + "uuid": "6a22232e-c835-4781-a472-c19dab41d15f", + "start": { + "$date": "2021-03-14T19:57:19.000Z" + }, + "end": { + "$date": "2021-03-14T20:33:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", + "uuid": "6e82137f-0f0e-46ff-b8b5-e59a94bd0a19", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T20:38:11.000Z" + }, + "end": { + "$date": "2021-03-14T22:01:44.000Z" + }, + "events": [ + { + "uuid": "064b2e6b-5a95-4a36-a004-9edcb459ce72", + "start": { + "$date": "2021-03-14T20:38:11.000Z" + }, + "end": { + "$date": "2021-03-14T22:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "df548228-eebf-4aa7-b16d-b12cde98d30d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-14T20:52:54.000Z" + }, + "end": { + "$date": "2021-03-14T20:57:41.000Z" + }, + "events": [ + { + "uuid": "eeec5351-f62f-4149-ae2e-7e0eb1c25893", + "start": { + "$date": "2021-03-14T20:52:54.000Z" + }, + "end": { + "$date": "2021-03-14T20:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "46b356f1-26be-423e-b062-ab2ae8542ce8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T22:17:52.000Z" + }, + "end": { + "$date": "2021-03-14T22:19:48.000Z" + }, + "events": [ + { + "uuid": "6454baf3-894b-46fb-859c-1010f05629d3", + "start": { + "$date": "2021-03-14T22:17:52.000Z" + }, + "end": { + "$date": "2021-03-14T22:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "83030322-7107-4b9e-b6ed-6b8f960568b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-14T22:19:53.000Z" + }, + "end": { + "$date": "2021-03-14T23:57:10.000Z" + }, + "events": [ + { + "uuid": "8184ee9d-1f00-4f93-a7dc-59b7595b96af", + "start": { + "$date": "2021-03-14T22:19:53.000Z" + }, + "end": { + "$date": "2021-03-14T23:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "acc1778c-0e4f-4c78-ab09-748768c9a76f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-14T22:20:35.000Z" + }, + "end": { + "$date": "2021-03-14T23:57:19.000Z" + }, + "events": [ + { + "uuid": "92bf3ed3-9597-407a-8874-07b8e0164a01", + "start": { + "$date": "2021-03-14T22:20:35.000Z" + }, + "end": { + "$date": "2021-03-14T23:57:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "817b410e-32e3-429c-8185-ca369bb0f29d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T22:23:51.000Z" + }, + "end": { + "$date": "2021-03-14T22:36:12.000Z" + }, + "events": [ + { + "uuid": "31dfb732-e1e4-437e-826b-3de96ba50d51", + "start": { + "$date": "2021-03-14T22:23:51.000Z" + }, + "end": { + "$date": "2021-03-14T22:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c9250771-f2ed-4265-a81d-34f065d4af0a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-14T22:24:57.000Z" + }, + "end": { + "$date": "2021-03-14T23:57:18.000Z" + }, + "events": [ + { + "uuid": "26817d51-87be-4c1c-9da1-f052a3854746", + "start": { + "$date": "2021-03-14T22:24:57.000Z" + }, + "end": { + "$date": "2021-03-14T23:57:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0051b00c-2ee3-40c3-9344-2ef835ed0126", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-14T22:37:28.000Z" + }, + "end": { + "$date": "2021-03-15T00:05:59.000Z" + }, + "events": [ + { + "uuid": "b26c746b-fd71-46f3-b73f-f9e30c51fcc1", + "start": { + "$date": "2021-03-14T22:37:28.000Z" + }, + "end": { + "$date": "2021-03-15T00:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "ae61065b-6976-438b-b45f-7002bc4ecc59", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-14T22:55:32.000Z" + }, + "end": { + "$date": "2021-03-15T00:09:12.000Z" + }, + "events": [ + { + "uuid": "1de108eb-3315-4765-a091-2a9a861453c7", + "start": { + "$date": "2021-03-14T22:55:32.000Z" + }, + "end": { + "$date": "2021-03-15T00:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "49323bec-b649-4401-83ab-a3201e7b9c53", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-14T23:35:17.000Z" + }, + "end": { + "$date": "2021-03-14T23:37:37.000Z" + }, + "events": [ + { + "uuid": "d826bab9-a173-49e3-a633-2869e8ed31d5", + "start": { + "$date": "2021-03-14T23:35:17.000Z" + }, + "end": { + "$date": "2021-03-14T23:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "ae2e594f-03d8-4852-a10d-7b0754c51712", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-15T00:04:10.000Z" + }, + "end": { + "$date": "2021-03-15T01:49:28.000Z" + }, + "events": [ + { + "uuid": "01c52e6d-2d72-4791-afdf-77d1135eaa1b", + "start": { + "$date": "2021-03-15T00:04:10.000Z" + }, + "end": { + "$date": "2021-03-15T01:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5e146b80-77ce-4c63-9cf4-6052904bd82f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-15T00:06:15.000Z" + }, + "end": { + "$date": "2021-03-15T00:32:05.000Z" + }, + "events": [ + { + "uuid": "3cbfdab4-7cb6-4476-95a6-7bd68767f781", + "start": { + "$date": "2021-03-15T00:06:15.000Z" + }, + "end": { + "$date": "2021-03-15T00:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2989e2ec-3b83-4591-b623-f71f03ad97cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-15T00:42:42.000Z" + }, + "end": { + "$date": "2021-03-15T01:19:28.000Z" + }, + "events": [ + { + "uuid": "320f1c68-60ad-402a-950d-b81e7486f39e", + "start": { + "$date": "2021-03-15T00:42:42.000Z" + }, + "end": { + "$date": "2021-03-15T01:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6e758075-352a-4b84-9ee6-1b80f2c19719", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-15T00:44:31.000Z" + }, + "end": { + "$date": "2021-03-15T01:19:37.000Z" + }, + "events": [ + { + "uuid": "6da6bb08-0b92-4378-a06e-31330cbdde10", + "start": { + "$date": "2021-03-15T00:44:31.000Z" + }, + "end": { + "$date": "2021-03-15T01:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85d81492-70c5-4e04-af25-311cc7dd869c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-15T01:01:20.000Z" + }, + "end": { + "$date": "2021-03-15T01:23:20.000Z" + }, + "events": [ + { + "uuid": "037f6c16-a8a6-43cf-93e7-8f45a08bcfcc", + "start": { + "$date": "2021-03-15T01:01:20.000Z" + }, + "end": { + "$date": "2021-03-15T01:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "18c0fadc-8477-481c-9ea3-30789d2323e1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-15T01:03:34.000Z" + }, + "end": { + "$date": "2021-03-15T07:34:28.000Z" + }, + "events": [ + { + "uuid": "e84eb3af-fdc2-4f63-bdb2-ee52d85c8fec", + "start": { + "$date": "2021-03-15T01:03:34.000Z" + }, + "end": { + "$date": "2021-03-15T07:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "556658c0-b096-4ca3-b887-72eaff506c0f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-15T01:05:00.000Z" + }, + "end": { + "$date": "2021-03-15T03:38:15.000Z" + }, + "events": [ + { + "uuid": "ea3185ea-aa4d-405c-be8d-45d8fadc64ee", + "start": { + "$date": "2021-03-15T01:05:00.000Z" + }, + "end": { + "$date": "2021-03-15T03:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7b6ce0c6-6458-46b0-8a03-3dea430158ea", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-15T01:15:39.000Z" + }, + "end": { + "$date": "2021-03-15T03:15:00.000Z" + }, + "events": [ + { + "uuid": "4508d4c9-e363-40e9-892c-944ef299ed9f", + "start": { + "$date": "2021-03-15T01:15:39.000Z" + }, + "end": { + "$date": "2021-03-15T03:15:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b2aa7036-674b-4dce-8d29-4ab037476fda", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-15T01:19:39.000Z" + }, + "end": { + "$date": "2021-03-15T01:40:39.000Z" + }, + "events": [ + { + "uuid": "11f31ca9-6e9a-49c9-8b23-ea6554276b16", + "start": { + "$date": "2021-03-15T01:19:39.000Z" + }, + "end": { + "$date": "2021-03-15T01:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2b02a04b-6b50-49c1-b36b-31c3238b70fa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-15T01:19:43.000Z" + }, + "end": { + "$date": "2021-03-15T01:40:53.000Z" + }, + "events": [ + { + "uuid": "d4c3298c-3868-4079-a65e-f85290235442", + "start": { + "$date": "2021-03-15T01:19:43.000Z" + }, + "end": { + "$date": "2021-03-15T01:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "99bb93e0-c3e2-423a-983c-f9dc504972fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-15T01:24:55.000Z" + }, + "end": { + "$date": "2021-03-15T03:14:32.000Z" + }, + "events": [ + { + "uuid": "b3fb1027-7b61-4c11-9284-6e4d64fc4400", + "start": { + "$date": "2021-03-15T01:24:55.000Z" + }, + "end": { + "$date": "2021-03-15T03:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "79941ca5-8852-41c1-97fb-53ec60bbc3a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-15T01:49:26.000Z" + }, + "end": { + "$date": "2021-03-15T04:49:18.000Z" + }, + "events": [ + { + "uuid": "ed9e357d-1e91-4d73-bfdc-d265d7e5a107", + "start": { + "$date": "2021-03-15T01:49:26.000Z" + }, + "end": { + "$date": "2021-03-15T02:34:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e7c27f2-81fd-4255-b151-6b2c24234de6", + "start": { + "$date": "2021-03-15T02:34:26.000Z" + }, + "end": { + "$date": "2021-03-15T02:48:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2598986d-1a53-4004-81c2-488d9daea751", + "start": { + "$date": "2021-03-15T02:48:26.000Z" + }, + "end": { + "$date": "2021-03-15T03:00:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c1f34ee-6d55-430b-97fd-2eaec0cee599", + "start": { + "$date": "2021-03-15T03:00:26.000Z" + }, + "end": { + "$date": "2021-03-15T03:28:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6376ab6-0714-4113-8342-b955fddcdb0f", + "start": { + "$date": "2021-03-15T03:28:26.000Z" + }, + "end": { + "$date": "2021-03-15T03:38:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ff2c1fe-7a9c-447b-8f21-9e93243e8dcd", + "start": { + "$date": "2021-03-15T03:38:26.000Z" + }, + "end": { + "$date": "2021-03-15T04:46:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b0b8eac-4011-4efb-bf3a-df41583144c8", + "start": { + "$date": "2021-03-15T04:46:26.000Z" + }, + "end": { + "$date": "2021-03-15T04:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "49d5eb77-34c4-412e-aca3-432565194e59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-15T01:54:43.000Z" + }, + "end": { + "$date": "2021-03-15T02:05:22.000Z" + }, + "events": [ + { + "uuid": "9056b5f0-dae6-4d98-9ca8-da5bdd880763", + "start": { + "$date": "2021-03-15T01:54:43.000Z" + }, + "end": { + "$date": "2021-03-15T02:05:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "13f8eb17-67f8-4e59-b51c-85806ce758b8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-15T02:22:10.000Z" + }, + "end": { + "$date": "2021-03-15T02:36:36.000Z" + }, + "events": [ + { + "uuid": "c78ef57d-d2a6-4192-9f6e-cbc084f13ec5", + "start": { + "$date": "2021-03-15T02:22:10.000Z" + }, + "end": { + "$date": "2021-03-15T02:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "fcf675f0-51fc-4537-aebd-16afc8e05b42", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-15T02:37:01.000Z" + }, + "end": { + "$date": "2021-03-15T04:48:10.000Z" + }, + "events": [ + { + "uuid": "bf696bfb-6a12-42f0-8026-034441175fec", + "start": { + "$date": "2021-03-15T02:37:01.000Z" + }, + "end": { + "$date": "2021-03-15T04:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dfc97969-4693-4338-9cd7-713afdaf26b9", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-15T02:59:33.000Z" + }, + "end": { + "$date": "2021-03-15T04:32:41.000Z" + }, + "events": [ + { + "uuid": "ce60c9b2-3380-4bd1-a8d8-eda842ced5f7", + "start": { + "$date": "2021-03-15T02:59:33.000Z" + }, + "end": { + "$date": "2021-03-15T04:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c312fae6-f9c9-4db2-a67e-c71adfffc7ee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-15T03:00:54.000Z" + }, + "end": { + "$date": "2021-03-15T04:31:45.000Z" + }, + "events": [ + { + "uuid": "7f33f803-8b89-406c-8246-8eb64f946293", + "start": { + "$date": "2021-03-15T03:00:54.000Z" + }, + "end": { + "$date": "2021-03-15T04:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d941cc01-aaca-4173-9ed2-0661287dc44f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-15T03:07:35.000Z" + }, + "end": { + "$date": "2021-03-15T03:16:36.000Z" + }, + "events": [ + { + "uuid": "3f48fcfb-8af8-4b74-a633-2ea1b784203e", + "start": { + "$date": "2021-03-15T03:07:35.000Z" + }, + "end": { + "$date": "2021-03-15T03:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a91e1455-9da7-4d6b-ad42-8af3f50d377d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-15T03:17:07.000Z" + }, + "end": { + "$date": "2021-03-15T03:45:58.000Z" + }, + "events": [ + { + "uuid": "839c8058-9176-4334-9120-c4a8d4be50f7", + "start": { + "$date": "2021-03-15T03:17:07.000Z" + }, + "end": { + "$date": "2021-03-15T03:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d78605cb-44be-45ad-95c0-37778a48ddfc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-15T03:17:31.000Z" + }, + "end": { + "$date": "2021-03-15T04:32:08.000Z" + }, + "events": [ + { + "uuid": "f6e247b5-8eec-43c8-a1a9-5b852ddab0fa", + "start": { + "$date": "2021-03-15T03:17:31.000Z" + }, + "end": { + "$date": "2021-03-15T04:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4eb69ebc-7466-4d5f-b7b9-5e5cb7bb9338", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-15T05:37:46.000Z" + }, + "end": { + "$date": "2021-03-15T05:38:05.000Z" + }, + "events": [ + { + "uuid": "79ee2838-a180-4a48-9ff9-0ddffce75d6d", + "start": { + "$date": "2021-03-15T05:37:46.000Z" + }, + "end": { + "$date": "2021-03-15T05:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f461e0e-455c-422b-9714-d8543db91f09", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-15T04:00:24.000Z" + }, + "end": { + "$date": "2021-03-15T04:28:50.000Z" + }, + "events": [ + { + "uuid": "5edf4ad2-5e58-4f05-b5f3-ca575229b57e", + "start": { + "$date": "2021-03-15T04:00:24.000Z" + }, + "end": { + "$date": "2021-03-15T04:28:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a01e2f2-7e2f-4c67-bfa3-67e962322b14", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-15T04:00:43.000Z" + }, + "end": { + "$date": "2021-03-15T04:28:57.000Z" + }, + "events": [ + { + "uuid": "65b005a1-b7fe-45bd-8a3c-388976f84725", + "start": { + "$date": "2021-03-15T04:00:43.000Z" + }, + "end": { + "$date": "2021-03-15T04:28:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dc76b1a-60e0-47ba-9461-7824b0950b89", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-15T04:31:20.000Z" + }, + "end": { + "$date": "2021-03-15T04:56:46.000Z" + }, + "events": [ + { + "uuid": "2f9024d0-7ea9-40e9-9795-6d01e8a717a1", + "start": { + "$date": "2021-03-15T04:31:20.000Z" + }, + "end": { + "$date": "2021-03-15T04:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b837fe38-9212-47f4-a6b2-7618aa7c7979", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-15T04:31:49.000Z" + }, + "end": { + "$date": "2021-03-15T04:56:48.000Z" + }, + "events": [ + { + "uuid": "5b7f4a86-8b18-43e4-a1d4-8550ce07b533", + "start": { + "$date": "2021-03-15T04:31:49.000Z" + }, + "end": { + "$date": "2021-03-15T04:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f67368a-0c82-44ba-8458-e75aa09b9c4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-15T04:31:26.000Z" + }, + "end": { + "$date": "2021-03-15T04:56:49.000Z" + }, + "events": [ + { + "uuid": "c2abf818-c5a4-46e3-a9c0-34e8aad1250d", + "start": { + "$date": "2021-03-15T04:31:26.000Z" + }, + "end": { + "$date": "2021-03-15T04:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4d19877d-53e8-4bb0-9ba3-62d5cec386c7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-15T04:55:16.000Z" + }, + "end": { + "$date": "2021-03-15T06:06:06.000Z" + }, + "events": [ + { + "uuid": "af207a3e-243b-4af5-9625-511eedd4ad65", + "start": { + "$date": "2021-03-15T04:55:16.000Z" + }, + "end": { + "$date": "2021-03-15T06:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad19f895-0171-421f-bfe2-6d91c862093f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-15T05:00:55.000Z" + }, + "end": { + "$date": "2021-03-15T05:37:51.000Z" + }, + "events": [ + { + "uuid": "c171034a-abcc-4120-8425-7d8b5952f880", + "start": { + "$date": "2021-03-15T05:00:55.000Z" + }, + "end": { + "$date": "2021-03-15T05:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34bc9826-a300-4879-a495-71cd54b625b3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-15T05:00:56.000Z" + }, + "end": { + "$date": "2021-03-15T05:37:42.000Z" + }, + "events": [ + { + "uuid": "3264b176-e929-4124-970a-93d6261ba033", + "start": { + "$date": "2021-03-15T05:00:56.000Z" + }, + "end": { + "$date": "2021-03-15T05:37:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99c080ad-5960-471c-b076-e8a45eb2ae5c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-15T05:00:57.000Z" + }, + "end": { + "$date": "2021-03-15T05:37:36.000Z" + }, + "events": [ + { + "uuid": "5de27bf3-008b-4b83-8252-1c29683f439f", + "start": { + "$date": "2021-03-15T05:00:57.000Z" + }, + "end": { + "$date": "2021-03-15T05:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d972be11-6b7a-49af-835a-912f08526dc7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-15T05:46:17.000Z" + }, + "end": { + "$date": "2021-03-15T06:10:42.000Z" + }, + "events": [ + { + "uuid": "760f0cb2-a520-477c-8ce5-bd6f27dde668", + "start": { + "$date": "2021-03-15T05:46:17.000Z" + }, + "end": { + "$date": "2021-03-15T06:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f420b38-9836-42e1-9af7-a32a7ba6c6dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-15T05:42:48.000Z" + }, + "end": { + "$date": "2021-03-15T06:10:51.000Z" + }, + "events": [ + { + "uuid": "c42d4260-4294-41c8-9dbf-7d4b84796421", + "start": { + "$date": "2021-03-15T05:42:48.000Z" + }, + "end": { + "$date": "2021-03-15T06:10:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6b7cb41c-328b-4ccb-91fd-2f3dde865eb2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-15T05:53:43.000Z" + }, + "end": { + "$date": "2021-03-15T06:29:11.000Z" + }, + "events": [ + { + "uuid": "00fff403-7982-479a-b828-0210aecbe627", + "start": { + "$date": "2021-03-15T05:53:43.000Z" + }, + "end": { + "$date": "2021-03-15T06:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "03810b74-d189-4f7b-98d9-08f2325111f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-15T06:06:59.000Z" + }, + "end": { + "$date": "2021-03-15T07:17:28.000Z" + }, + "events": [ + { + "uuid": "15b2e1f9-d640-4326-bbbd-31c01f4338ac", + "start": { + "$date": "2021-03-15T06:06:59.000Z" + }, + "end": { + "$date": "2021-03-15T07:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", + "uuid": "53222429-562c-4664-bfc5-1b0a7e086baf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-15T17:06:18.000Z" + }, + "end": { + "$date": "2021-03-15T17:09:40.000Z" + }, + "events": [ + { + "uuid": "b2d810e2-108a-4af5-8c1e-5c56c1c3c1df", + "start": { + "$date": "2021-03-15T17:06:18.000Z" + }, + "end": { + "$date": "2021-03-15T17:09:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d8e4df7b-2244-4a8c-8381-cda5c4bd6d65", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-15T17:06:34.000Z" + }, + "end": { + "$date": "2021-03-15T17:21:56.000Z" + }, + "events": [ + { + "uuid": "710434e8-9871-41db-8369-a1f405b72b53", + "start": { + "$date": "2021-03-15T17:06:34.000Z" + }, + "end": { + "$date": "2021-03-15T17:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5bb5a203-168c-4a99-8db2-759b30401041", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-15T18:59:02.000Z" + }, + "end": { + "$date": "2021-03-15T19:54:29.000Z" + }, + "events": [ + { + "uuid": "c81ba2d8-2536-4763-b377-d3a440acd380", + "start": { + "$date": "2021-03-15T18:59:02.000Z" + }, + "end": { + "$date": "2021-03-15T19:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3e6a694a-ca72-4ddd-8b1d-9ef693dfc850", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-15T20:39:13.000Z" + }, + "end": { + "$date": "2021-03-15T21:07:57.000Z" + }, + "events": [ + { + "uuid": "50a8af38-53db-451c-86ed-8557d322d1fa", + "start": { + "$date": "2021-03-15T20:39:13.000Z" + }, + "end": { + "$date": "2021-03-15T21:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ea7af81e-cacf-4ad0-ac0f-2b987f2bf04e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-15T20:51:40.000Z" + }, + "end": { + "$date": "2021-03-15T21:52:43.000Z" + }, + "events": [ + { + "uuid": "390add92-86a4-4929-82da-7235374a99fc", + "start": { + "$date": "2021-03-15T20:51:40.000Z" + }, + "end": { + "$date": "2021-03-15T21:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6df179f7-2eb8-4740-ba4d-50217e272f05", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-15T21:09:03.000Z" + }, + "end": { + "$date": "2021-03-15T21:38:44.000Z" + }, + "events": [ + { + "uuid": "83846d6c-989d-4dfc-9c78-7bb3b0f8eca1", + "start": { + "$date": "2021-03-15T21:09:03.000Z" + }, + "end": { + "$date": "2021-03-15T21:38:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bec04953-b8ae-4636-b757-e2643467ddb2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-15T21:10:14.000Z" + }, + "end": { + "$date": "2021-03-15T21:59:59.000Z" + }, + "events": [ + { + "uuid": "aaa21998-965d-4aed-b635-901ced5abda2", + "start": { + "$date": "2021-03-15T21:10:14.000Z" + }, + "end": { + "$date": "2021-03-15T21:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bcfffa35-0d35-46ca-a0c3-f1ff427865a1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-15T21:12:08.000Z" + }, + "end": { + "$date": "2021-03-15T22:02:55.000Z" + }, + "events": [ + { + "uuid": "84d307bd-daf0-4dae-846e-2badb00c449a", + "start": { + "$date": "2021-03-15T21:12:08.000Z" + }, + "end": { + "$date": "2021-03-15T22:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "10db6e4b-7763-42c9-ba19-fee5de21c946", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-15T22:07:11.000Z" + }, + "end": { + "$date": "2021-03-15T23:26:14.000Z" + }, + "events": [ + { + "uuid": "28257f3f-5e3d-4b9e-b256-4db861cbabda", + "start": { + "$date": "2021-03-15T22:07:11.000Z" + }, + "end": { + "$date": "2021-03-15T23:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e4a9c8f4-6c75-4831-af36-f3c30cc38a42", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-15T22:22:12.000Z" + }, + "end": { + "$date": "2021-03-15T22:31:11.000Z" + }, + "events": [ + { + "uuid": "785d9603-a542-4269-89d3-0b94ec6ee93b", + "start": { + "$date": "2021-03-15T22:22:12.000Z" + }, + "end": { + "$date": "2021-03-15T22:31:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "46364ebf-b91b-454c-a286-87a9dace1d24", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-15T22:44:33.000Z" + }, + "end": { + "$date": "2021-03-15T22:47:43.000Z" + }, + "events": [ + { + "uuid": "03256162-ccc4-4f65-ad7f-5c49416833da", + "start": { + "$date": "2021-03-15T22:44:33.000Z" + }, + "end": { + "$date": "2021-03-15T22:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4541b23e-10f6-4995-a45a-b6d8bde4a1dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-16T00:57:19.000Z" + }, + "end": { + "$date": "2021-03-16T02:31:21.000Z" + }, + "events": [ + { + "uuid": "2e5cd405-eab7-4bbb-8cea-05c3b9539b22", + "start": { + "$date": "2021-03-16T00:57:19.000Z" + }, + "end": { + "$date": "2021-03-16T02:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "33debc8f-7e78-47bd-ad4b-4f1b074cc834", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-16T01:00:09.000Z" + }, + "end": { + "$date": "2021-03-16T01:14:44.000Z" + }, + "events": [ + { + "uuid": "e8462f1b-19e2-43cd-9e3e-c7582a84186c", + "start": { + "$date": "2021-03-16T01:00:09.000Z" + }, + "end": { + "$date": "2021-03-16T01:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b99da660-a780-4bb1-932c-b5b26d39d4df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-16T01:18:55.000Z" + }, + "end": { + "$date": "2021-03-16T02:14:56.000Z" + }, + "events": [ + { + "uuid": "87cbba37-88cc-4bca-90eb-9fc334452071", + "start": { + "$date": "2021-03-16T01:18:55.000Z" + }, + "end": { + "$date": "2021-03-16T02:14:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bba1111d-fc63-4e88-a595-cb4a4ca80727", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-16T01:48:27.000Z" + }, + "end": { + "$date": "2021-03-16T02:26:43.000Z" + }, + "events": [ + { + "uuid": "d4a1089e-09b4-4ce5-a45c-605b89180d3b", + "start": { + "$date": "2021-03-16T01:48:27.000Z" + }, + "end": { + "$date": "2021-03-16T02:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9e52b3ee-8b3c-4bc5-b20d-3f8077cbe8cb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-16T01:51:35.000Z" + }, + "end": { + "$date": "2021-03-16T02:26:31.000Z" + }, + "events": [ + { + "uuid": "a2bbeecd-d941-4838-a8a8-bee7640ecafa", + "start": { + "$date": "2021-03-16T01:51:35.000Z" + }, + "end": { + "$date": "2021-03-16T02:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ee0f0c2a-06e3-4f8d-b73d-88cfa1b34890", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-16T02:17:22.000Z" + }, + "end": { + "$date": "2021-03-16T02:42:17.000Z" + }, + "events": [ + { + "uuid": "b9483756-0f86-491a-b34f-7328381dad02", + "start": { + "$date": "2021-03-16T02:17:22.000Z" + }, + "end": { + "$date": "2021-03-16T02:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4a14dae9-1250-470b-80e2-26eb5a3bf9f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-16T02:22:12.000Z" + }, + "end": { + "$date": "2021-03-16T02:41:22.000Z" + }, + "events": [ + { + "uuid": "0ccb57d2-cbdb-4330-aed5-189bb0ec213a", + "start": { + "$date": "2021-03-16T02:22:12.000Z" + }, + "end": { + "$date": "2021-03-16T02:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "80bec464-9cfc-41b5-9f38-251dc328a76a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-16T02:58:19.000Z" + }, + "end": { + "$date": "2021-03-16T04:11:56.000Z" + }, + "events": [ + { + "uuid": "1aa9006f-0af0-4433-a647-47dd31f70cad", + "start": { + "$date": "2021-03-16T02:58:19.000Z" + }, + "end": { + "$date": "2021-03-16T04:11:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3b3e9266-7a82-4d69-9b2e-fa7a24a6321b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-16T03:06:30.000Z" + }, + "end": { + "$date": "2021-03-16T04:54:11.000Z" + }, + "events": [ + { + "uuid": "8038bcd8-2e22-4475-863b-c98d249f3312", + "start": { + "$date": "2021-03-16T03:06:30.000Z" + }, + "end": { + "$date": "2021-03-16T04:54:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9a20a1ea-de49-4f62-a2a4-de0f6fedec56", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-16T03:06:37.000Z" + }, + "end": { + "$date": "2021-03-16T04:54:02.000Z" + }, + "events": [ + { + "uuid": "1356ffb9-9aed-47b8-83f6-9ef43d54f14b", + "start": { + "$date": "2021-03-16T03:06:37.000Z" + }, + "end": { + "$date": "2021-03-16T04:54:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6486dcea-0ac5-48aa-9fdd-52d53feffd3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T03:12:22.000Z" + }, + "end": { + "$date": "2021-03-16T03:30:17.000Z" + }, + "events": [ + { + "uuid": "ab99091b-924d-4e21-a639-89b3b094da35", + "start": { + "$date": "2021-03-16T03:12:22.000Z" + }, + "end": { + "$date": "2021-03-16T03:16:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29feb0e0-c3b1-46c0-9f61-efc6f423ba8d", + "start": { + "$date": "2021-03-16T03:16:22.000Z" + }, + "end": { + "$date": "2021-03-16T03:30:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a24ba90-3628-4a06-a484-a31c613bac7f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-16T03:12:17.000Z" + }, + "end": { + "$date": "2021-03-16T03:30:24.000Z" + }, + "events": [ + { + "uuid": "c7b652b1-e0d3-4d4e-8637-b03ac2810b52", + "start": { + "$date": "2021-03-16T03:12:17.000Z" + }, + "end": { + "$date": "2021-03-16T03:30:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2143a743-1750-476b-a7ee-51c52e2d1c46", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-16T03:35:33.000Z" + }, + "end": { + "$date": "2021-03-16T03:59:24.000Z" + }, + "events": [ + { + "uuid": "1cca7c83-0cc2-4522-96ef-f6478c2481cc", + "start": { + "$date": "2021-03-16T03:35:33.000Z" + }, + "end": { + "$date": "2021-03-16T03:59:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8401dfaf-93a7-43a4-83ef-74450555a8d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-16T03:43:56.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:11.000Z" + }, + "events": [ + { + "uuid": "b43a6f2e-41d8-47a7-9981-96da633cd44c", + "start": { + "$date": "2021-03-16T03:43:56.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "37693f48-e748-405a-bf4d-b8b7bf76c823", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-16T03:48:29.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:13.000Z" + }, + "events": [ + { + "uuid": "03c25c4d-b5b8-4328-8e43-f3cded2838ad", + "start": { + "$date": "2021-03-16T03:48:29.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a71b2af0-a2bc-42b0-b21e-a017a16daa34", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-16T03:50:41.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:28.000Z" + }, + "events": [ + { + "uuid": "969a1f5c-b29b-43ce-a377-a63b3db2ca4d", + "start": { + "$date": "2021-03-16T03:50:41.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7a2a45f-513b-403f-9d9b-0b2e89838818", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-16T04:07:09.000Z" + }, + "end": { + "$date": "2021-03-16T04:33:57.000Z" + }, + "events": [ + { + "uuid": "cf7a1fee-2df7-43a8-8026-805f30f350af", + "start": { + "$date": "2021-03-16T04:07:09.000Z" + }, + "end": { + "$date": "2021-03-16T04:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "831700a6-df4b-4d05-9d14-21b12f5a704f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-16T04:15:30.000Z" + }, + "end": { + "$date": "2021-03-16T08:23:05.000Z" + }, + "events": [ + { + "uuid": "f8886014-7810-492d-b6ad-3838e4dd6387", + "start": { + "$date": "2021-03-16T04:15:30.000Z" + }, + "end": { + "$date": "2021-03-16T08:23:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c423930-ec65-4f62-9003-19cee4e52c12", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T04:21:11.000Z" + }, + "end": { + "$date": "2021-03-16T04:26:16.000Z" + }, + "events": [ + { + "uuid": "12221177-2d4a-4802-a9c9-f7765ef02249", + "start": { + "$date": "2021-03-16T04:21:11.000Z" + }, + "end": { + "$date": "2021-03-16T04:26:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4f8c752b-3637-49c4-8291-b498d9ec3ee6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T04:27:19.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:44.000Z" + }, + "events": [ + { + "uuid": "0c934d9f-66f4-4a47-90df-abb020a4a6a7", + "start": { + "$date": "2021-03-16T04:27:19.000Z" + }, + "end": { + "$date": "2021-03-16T05:00:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1ed06819-b669-408d-a3e2-e868f24c5915", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-16T05:00:31.000Z" + }, + "end": { + "$date": "2021-03-16T05:21:48.000Z" + }, + "events": [ + { + "uuid": "d250bbb1-5061-49d6-aad4-5d40ae89fba4", + "start": { + "$date": "2021-03-16T05:00:31.000Z" + }, + "end": { + "$date": "2021-03-16T05:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfbb24e2-c18c-4b06-b38a-398278d89319", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T05:05:16.000Z" + }, + "end": { + "$date": "2021-03-16T05:33:22.000Z" + }, + "events": [ + { + "uuid": "163b4250-b6df-4b75-a6d4-4c544274715a", + "start": { + "$date": "2021-03-16T05:05:16.000Z" + }, + "end": { + "$date": "2021-03-16T05:33:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24b3fd31-0ec2-4047-82df-f9cc554c5814", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-16T11:18:23.000Z" + }, + "end": { + "$date": "2021-03-16T05:23:49.000Z" + }, + "events": [ + { + "uuid": "b277613f-f599-440a-8fa3-dea7a1d21963", + "start": { + "$date": "2021-03-16T11:18:23.000Z" + }, + "end": { + "$date": "2021-03-16T05:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "be58a8a6-e82a-4597-a211-2597080e5647", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-16T05:23:59.000Z" + }, + "end": { + "$date": "2021-03-16T05:54:19.000Z" + }, + "events": [ + { + "uuid": "83bde6d6-1209-4a76-850e-55b45b5c7298", + "start": { + "$date": "2021-03-16T05:23:59.000Z" + }, + "end": { + "$date": "2021-03-16T05:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a123da84-22af-4d01-977d-942d3e455bdf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T05:38:43.000Z" + }, + "end": { + "$date": "2021-03-16T06:08:56.000Z" + }, + "events": [ + { + "uuid": "245d9d1b-df13-46ee-8c8b-c9cc601f16dc", + "start": { + "$date": "2021-03-16T05:38:43.000Z" + }, + "end": { + "$date": "2021-03-16T06:08:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bb292a59-c96d-4791-8c2b-2abcbc45cd96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-16T17:28:52.000Z" + }, + "end": { + "$date": "2021-03-16T18:12:16.000Z" + }, + "events": [ + { + "uuid": "9f89a0c9-53ea-43cd-b0e6-1e9a6372d7d5", + "start": { + "$date": "2021-03-16T17:28:52.000Z" + }, + "end": { + "$date": "2021-03-16T18:12:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4b175b9-e7aa-4798-894c-2cbf274bd2ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T20:16:46.000Z" + }, + "end": { + "$date": "2021-03-16T20:50:20.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-03-16T20:16:46.000Z" + }, + "end": { + "$date": "2021-03-16T20:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f020f6fe-2c1a-44b5-816d-119066e12858", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-16T20:23:59.000Z" + }, + "end": { + "$date": "2021-03-16T21:18:42.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-03-16T20:23:59.000Z" + }, + "end": { + "$date": "2021-03-16T21:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "0d8d55ce-ac5e-4489-9706-677aff78c706", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-16T20:47:29.000Z" + }, + "end": { + "$date": "2021-03-16T22:23:47.000Z" + }, + "events": [ + { + "uuid": "d75f7dae-36a1-4890-8204-18e51b48269b", + "start": { + "$date": "2021-03-16T20:47:29.000Z" + }, + "end": { + "$date": "2021-03-16T22:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44eb4baf-7fb6-461a-9813-4047f7fb939c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T20:53:52.000Z" + }, + "end": { + "$date": "2021-03-16T21:35:53.000Z" + }, + "events": [ + { + "uuid": "2d1d64d7-0f47-48c4-b2ba-4681f47ed784", + "start": { + "$date": "2021-03-16T20:53:52.000Z" + }, + "end": { + "$date": "2021-03-16T21:35:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f729324a-89b7-48f9-a49b-eb0cfc56f26d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-16T20:54:37.000Z" + }, + "end": { + "$date": "2021-03-16T21:36:36.000Z" + }, + "events": [ + { + "uuid": "ccdcddc6-851b-4737-917d-3df7b42e4691", + "start": { + "$date": "2021-03-16T20:54:37.000Z" + }, + "end": { + "$date": "2021-03-16T21:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "870ab1cb-e7c1-4133-a62f-3c237362901d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-16T22:38:58.000Z" + }, + "end": { + "$date": "2021-03-16T23:38:41.000Z" + }, + "events": [ + { + "uuid": "55f17d6a-53b0-4758-b850-457fc0eb7132", + "start": { + "$date": "2021-03-16T22:38:58.000Z" + }, + "end": { + "$date": "2021-03-16T23:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c1eda9a7-0159-4d6f-9f38-b89de556365e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-16T22:51:06.000Z" + }, + "end": { + "$date": "2021-03-16T22:54:30.000Z" + }, + "events": [ + { + "uuid": "dad76750-c10c-49d7-9062-64de6f38b686", + "start": { + "$date": "2021-03-16T22:51:06.000Z" + }, + "end": { + "$date": "2021-03-16T22:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81dc83ad-de72-43ab-8284-7684d41e7009", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T23:02:32.000Z" + }, + "end": { + "$date": "2021-03-16T23:26:12.000Z" + }, + "events": [ + { + "uuid": "e4927db2-4e50-4457-99d7-33c1396299d1", + "start": { + "$date": "2021-03-16T23:02:32.000Z" + }, + "end": { + "$date": "2021-03-16T23:26:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a547809-d816-4924-b616-2cb984a1610e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-16T23:04:35.000Z" + }, + "end": { + "$date": "2021-03-16T23:26:02.000Z" + }, + "events": [ + { + "uuid": "9518452c-73e5-44cb-ae7d-b95179a2d141", + "start": { + "$date": "2021-03-16T23:04:35.000Z" + }, + "end": { + "$date": "2021-03-16T23:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "56debe17-5ccd-4436-9cba-c07df7553437", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-16T23:09:27.000Z" + }, + "end": { + "$date": "2021-03-16T23:21:24.000Z" + }, + "events": [ + { + "uuid": "8606b604-1ff7-414e-a762-d6d0ff12b0c1", + "start": { + "$date": "2021-03-16T23:09:27.000Z" + }, + "end": { + "$date": "2021-03-16T23:21:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cd39b63-72e2-40dc-a792-89d558b9b1e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-16T23:28:54.000Z" + }, + "end": { + "$date": "2021-03-17T00:12:03.000Z" + }, + "events": [ + { + "uuid": "36a4b523-bffc-468b-b460-389e9c6feb23", + "start": { + "$date": "2021-03-16T23:28:54.000Z" + }, + "end": { + "$date": "2021-03-17T00:12:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c95bbd1d-cccc-46f2-b5f5-18e3063c63ed", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-16T23:28:46.000Z" + }, + "end": { + "$date": "2021-03-17T00:11:55.000Z" + }, + "events": [ + { + "uuid": "70d3e506-277d-4d87-ae0e-8477d5555bff", + "start": { + "$date": "2021-03-16T23:28:46.000Z" + }, + "end": { + "$date": "2021-03-17T00:11:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "baca211b-068a-435e-9297-cd5d1bd9101b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-16T23:40:26.000Z" + }, + "end": { + "$date": "2021-03-17T02:48:30.000Z" + }, + "events": [ + { + "uuid": "7a330888-9ef0-4215-be5f-eff4f0115e28", + "start": { + "$date": "2021-03-16T23:40:26.000Z" + }, + "end": { + "$date": "2021-03-17T00:10:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86ee9ff2-25d5-462f-b6ee-a5eda7c53cac", + "start": { + "$date": "2021-03-17T00:10:26.000Z" + }, + "end": { + "$date": "2021-03-17T00:25:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "185abbb2-99dd-453d-91fc-fbbaf27e5239", + "start": { + "$date": "2021-03-17T00:25:26.000Z" + }, + "end": { + "$date": "2021-03-17T01:08:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0c835c52-6b3f-49e6-87c3-a79828c4c670", + "start": { + "$date": "2021-03-17T01:08:26.000Z" + }, + "end": { + "$date": "2021-03-17T01:35:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d4ddace-defe-4b2a-8f22-701d120473e9", + "start": { + "$date": "2021-03-17T01:35:26.000Z" + }, + "end": { + "$date": "2021-03-17T01:52:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a9d699a6-0738-4769-9715-bf5a4d6d552d", + "start": { + "$date": "2021-03-17T01:52:26.000Z" + }, + "end": { + "$date": "2021-03-17T01:55:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45264f90-7a78-4315-8a99-278d3cf9a799", + "start": { + "$date": "2021-03-17T01:55:26.000Z" + }, + "end": { + "$date": "2021-03-17T02:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4e7d1e82-64c1-4480-9369-f9cccc8df3be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-16T23:54:56.000Z" + }, + "end": { + "$date": "2021-03-17T00:16:33.000Z" + }, + "events": [ + { + "uuid": "6bd7c5c2-c589-4379-8a32-ae77e85077db", + "start": { + "$date": "2021-03-16T23:54:56.000Z" + }, + "end": { + "$date": "2021-03-17T00:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24c70141-1b7f-4504-aea0-c073a92091f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T00:42:29.000Z" + }, + "end": { + "$date": "2021-03-17T01:26:56.000Z" + }, + "events": [ + { + "uuid": "807de220-9ab0-49fa-8521-b9b068a9678b", + "start": { + "$date": "2021-03-17T00:42:29.000Z" + }, + "end": { + "$date": "2021-03-17T01:26:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df45b15d-b517-4cca-bd06-2407fcdda1e6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-17T00:42:17.000Z" + }, + "end": { + "$date": "2021-03-17T01:26:47.000Z" + }, + "events": [ + { + "uuid": "08def489-14df-4000-bd3d-6f937a5b22a5", + "start": { + "$date": "2021-03-17T00:42:17.000Z" + }, + "end": { + "$date": "2021-03-17T01:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "62a954ef-4ab7-4ea7-95ae-9634f6c4c899", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-17T01:01:36.000Z" + }, + "end": { + "$date": "2021-03-17T01:43:26.000Z" + }, + "events": [ + { + "uuid": "c6bcc04d-5c88-4b64-a031-5e8108e65688", + "start": { + "$date": "2021-03-17T01:01:36.000Z" + }, + "end": { + "$date": "2021-03-17T01:43:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f58cbcd5-2869-4238-8cda-a511fa7f1e3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T01:31:00.000Z" + }, + "end": { + "$date": "2021-03-17T02:01:44.000Z" + }, + "events": [ + { + "uuid": "2596a7e8-20bf-41b4-8262-21301dad5d6d", + "start": { + "$date": "2021-03-17T01:31:00.000Z" + }, + "end": { + "$date": "2021-03-17T02:01:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da1ee618-a699-4cfb-a26f-aa37879e5315", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-17T01:32:01.000Z" + }, + "end": { + "$date": "2021-03-17T02:01:29.000Z" + }, + "events": [ + { + "uuid": "117f0140-a618-4291-a915-068296635f35", + "start": { + "$date": "2021-03-17T01:32:01.000Z" + }, + "end": { + "$date": "2021-03-17T02:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f02db7ad-c783-4844-81f3-531e7164dba0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-17T01:33:48.000Z" + }, + "end": { + "$date": "2021-03-17T04:05:39.000Z" + }, + "events": [ + { + "uuid": "d823f3f3-c0ed-411e-bd79-cc340a38ba03", + "start": { + "$date": "2021-03-17T01:33:48.000Z" + }, + "end": { + "$date": "2021-03-17T04:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e2dc623a-6570-4d08-bbfa-d993ec75edc4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-17T01:53:08.000Z" + }, + "end": { + "$date": "2021-03-17T03:11:17.000Z" + }, + "events": [ + { + "uuid": "d3e330e4-7f98-4962-a57f-031c82a10c26", + "start": { + "$date": "2021-03-17T01:53:08.000Z" + }, + "end": { + "$date": "2021-03-17T03:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8058ad09-ccda-4f48-8c8a-386dd61cb414", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-17T01:55:55.000Z" + }, + "end": { + "$date": "2021-03-17T04:49:44.000Z" + }, + "events": [ + { + "uuid": "74f64d20-e1f8-4e4a-85a4-9d3440f6a34c", + "start": { + "$date": "2021-03-17T01:55:55.000Z" + }, + "end": { + "$date": "2021-03-17T04:49:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0eb54866-de07-40ed-8719-4ec157789faa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-17T02:28:01.000Z" + }, + "end": { + "$date": "2021-03-17T02:52:35.000Z" + }, + "events": [ + { + "uuid": "30e6b3f1-1f70-43a3-813b-5ad60029950f", + "start": { + "$date": "2021-03-17T02:28:01.000Z" + }, + "end": { + "$date": "2021-03-17T02:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "552ec3be-abf8-4b3e-a55c-a5019a9b9612", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-17T02:47:06.000Z" + }, + "end": { + "$date": "2021-03-17T05:14:29.000Z" + }, + "events": [ + { + "uuid": "0c877219-ae94-4b25-af3b-e1f40a4de18c", + "start": { + "$date": "2021-03-17T02:47:06.000Z" + }, + "end": { + "$date": "2021-03-17T05:14:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cb36e5d0-3da6-4d8d-b020-d546340d7d85", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-17T02:44:41.000Z" + }, + "end": { + "$date": "2021-03-17T04:28:50.000Z" + }, + "events": [ + { + "uuid": "a180eb69-d4a8-4adf-b924-8d1e727805eb", + "start": { + "$date": "2021-03-17T02:44:41.000Z" + }, + "end": { + "$date": "2021-03-17T03:52:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8bcea546-f912-41f8-ba73-323ad034e73e", + "start": { + "$date": "2021-03-17T03:52:41.000Z" + }, + "end": { + "$date": "2021-03-17T03:53:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d0205746-b44b-4613-9620-d0a7afea3aae", + "start": { + "$date": "2021-03-17T03:53:41.000Z" + }, + "end": { + "$date": "2021-03-17T04:28:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "88a90738-27bd-4367-afd1-0d38f0725146", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T02:48:33.000Z" + }, + "end": { + "$date": "2021-03-17T03:54:08.000Z" + }, + "events": [ + { + "uuid": "3dc2d4d4-51b1-49e6-9b02-7c88bcfbd441", + "start": { + "$date": "2021-03-17T02:48:33.000Z" + }, + "end": { + "$date": "2021-03-17T03:54:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d5a1fa9a-d93d-42c6-b2f2-fa9c9f3a772d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-17T09:19:21.000Z" + }, + "end": { + "$date": "2021-03-17T09:40:43.000Z" + }, + "events": [ + { + "uuid": "ad32f6b3-56d8-45a9-a773-e9d310b09cc9", + "start": { + "$date": "2021-03-17T09:19:21.000Z" + }, + "end": { + "$date": "2021-03-17T15:11:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b566fdf-858d-4835-bbe3-e11e38c5aa3a", + "start": { + "$date": "2021-03-17T15:11:21.000Z" + }, + "end": { + "$date": "2021-03-17T15:34:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90091a02-1f83-4300-9325-a0e73f0f9106", + "start": { + "$date": "2021-03-17T15:34:21.000Z" + }, + "end": { + "$date": "2021-03-17T09:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c660e9d4-1361-4d79-9977-d2f995eb7d04", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-17T02:49:49.000Z" + }, + "end": { + "$date": "2021-03-17T02:51:10.000Z" + }, + "events": [ + { + "uuid": "bfd19a2b-d4d1-42de-880e-59b54653847b", + "start": { + "$date": "2021-03-17T02:49:49.000Z" + }, + "end": { + "$date": "2021-03-17T02:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14b75708-dddc-48cb-a843-6e6c7d2179ec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-17T02:51:34.000Z" + }, + "end": { + "$date": "2021-03-17T03:51:48.000Z" + }, + "events": [ + { + "uuid": "f85459b5-3875-42b9-aa41-04a218c64de7", + "start": { + "$date": "2021-03-17T02:51:34.000Z" + }, + "end": { + "$date": "2021-03-17T03:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a4a765d2-1df1-4c8d-adba-1fc6a0853420", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-17T02:52:41.000Z" + }, + "end": { + "$date": "2021-03-17T04:34:32.000Z" + }, + "events": [ + { + "uuid": "58cd3c17-b0e8-401e-91cd-70d584116983", + "start": { + "$date": "2021-03-17T02:52:41.000Z" + }, + "end": { + "$date": "2021-03-17T04:34:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "93c71373-14fd-4647-ad4e-6751292abc73", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-17T02:56:43.000Z" + }, + "end": { + "$date": "2021-03-17T03:03:43.000Z" + }, + "events": [ + { + "uuid": "205f65a6-6faf-45ed-9a13-ae9f1aca85a0", + "start": { + "$date": "2021-03-17T02:56:43.000Z" + }, + "end": { + "$date": "2021-03-17T03:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d2edbd2d-0c35-488f-8226-9360a1130aa6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-17T03:03:31.000Z" + }, + "end": { + "$date": "2021-03-17T04:49:54.000Z" + }, + "events": [ + { + "uuid": "2d321c6d-01ab-4298-994a-bedcb00a763c", + "start": { + "$date": "2021-03-17T03:03:31.000Z" + }, + "end": { + "$date": "2021-03-17T04:49:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "befdcec2-77e2-4b9d-9bdb-53ee1aeffd25", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-17T05:14:30.000Z" + }, + "end": { + "$date": "2021-03-17T06:09:36.000Z" + }, + "events": [ + { + "uuid": "2e525b20-e753-4765-bd53-0547a17bfa75", + "start": { + "$date": "2021-03-17T05:14:30.000Z" + }, + "end": { + "$date": "2021-03-17T06:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "ea104217-a72c-4c71-84c4-e6a820da5129", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-17T03:11:22.000Z" + }, + "end": { + "$date": "2021-03-17T03:30:27.000Z" + }, + "events": [ + { + "uuid": "7190bf30-c22d-4769-b608-5be0ea9929ed", + "start": { + "$date": "2021-03-17T03:11:22.000Z" + }, + "end": { + "$date": "2021-03-17T03:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "134fe121-4310-4009-8215-af207887cf1b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-17T03:27:06.000Z" + }, + "end": { + "$date": "2021-03-17T03:53:34.000Z" + }, + "events": [ + { + "uuid": "68f462bb-aeb4-408c-9ef2-5272e85a9a88", + "start": { + "$date": "2021-03-17T03:27:06.000Z" + }, + "end": { + "$date": "2021-03-17T03:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b199a1a7-aaa5-4586-9db6-bb4f8a08e994", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-17T03:30:37.000Z" + }, + "end": { + "$date": "2021-03-17T04:03:13.000Z" + }, + "events": [ + { + "uuid": "39e16268-7056-4481-8373-b319c9844543", + "start": { + "$date": "2021-03-17T03:30:37.000Z" + }, + "end": { + "$date": "2021-03-17T04:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "620b7a1d-cf86-40b0-8c38-3616f293a234", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-17T04:00:37.000Z" + }, + "end": { + "$date": "2021-03-17T04:33:22.000Z" + }, + "events": [ + { + "uuid": "6b17eed2-c303-4d74-9831-136cf76deb0a", + "start": { + "$date": "2021-03-17T04:00:37.000Z" + }, + "end": { + "$date": "2021-03-17T04:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "e25e1295-1615-452d-b9b1-aac2df3a14fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-17T04:08:49.000Z" + }, + "end": { + "$date": "2021-03-17T04:21:29.000Z" + }, + "events": [ + { + "uuid": "05999fe2-f3dc-4edf-842f-50ea6305d5d9", + "start": { + "$date": "2021-03-17T04:08:49.000Z" + }, + "end": { + "$date": "2021-03-17T04:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f6bf4895-5c72-4e71-a28b-35edf5202efc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-17T02:44:41.000Z" + }, + "end": { + "$date": "2021-03-17T05:14:36.000Z" + }, + "events": [ + { + "uuid": "7ca5435b-6ffd-4203-bb12-a88efedfc287", + "start": { + "$date": "2021-03-17T02:44:41.000Z" + }, + "end": { + "$date": "2021-03-17T05:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99551909-d2f2-4b4d-9649-12843e1309bb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-17T04:36:53.000Z" + }, + "end": { + "$date": "2021-03-17T05:12:11.000Z" + }, + "events": [ + { + "uuid": "2e2bfd55-f58a-4c37-a90d-8d5d4fec8490", + "start": { + "$date": "2021-03-17T04:36:53.000Z" + }, + "end": { + "$date": "2021-03-17T05:12:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9e4d2ab9-5846-4a6e-91ab-8c179a80eb98", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T04:35:15.000Z" + }, + "end": { + "$date": "2021-03-17T05:14:24.000Z" + }, + "events": [ + { + "uuid": "59ce4bd0-f79e-471b-86ab-657758e67353", + "start": { + "$date": "2021-03-17T04:35:15.000Z" + }, + "end": { + "$date": "2021-03-17T05:14:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7483fb07-b40c-49e9-8615-ac30ac03331c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-17T05:15:30.000Z" + }, + "end": { + "$date": "2021-03-17T05:39:46.000Z" + }, + "events": [ + { + "uuid": "d25bf86b-4ebe-4c6e-b55a-546d605656e6", + "start": { + "$date": "2021-03-17T05:15:30.000Z" + }, + "end": { + "$date": "2021-03-17T05:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6285ca6c-a329-4dde-8807-b2f972d56b07", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-17T05:15:24.000Z" + }, + "end": { + "$date": "2021-03-17T06:07:26.000Z" + }, + "events": [ + { + "uuid": "6234dfa8-e35c-489e-afd7-949c28d41576", + "start": { + "$date": "2021-03-17T05:15:24.000Z" + }, + "end": { + "$date": "2021-03-17T06:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "a8d58098-142e-433a-9ee9-ad0e6898e6ab", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-17T15:39:07.000Z" + }, + "end": { + "$date": "2021-03-17T19:49:56.000Z" + }, + "events": [ + { + "uuid": "10247634-5d75-4714-9d96-dc7134bc01e5", + "start": { + "$date": "2021-03-17T15:39:07.000Z" + }, + "end": { + "$date": "2021-03-17T16:45:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa11d61c-36be-44a1-b711-1759586ca7ae", + "start": { + "$date": "2021-03-17T16:45:07.000Z" + }, + "end": { + "$date": "2021-03-17T17:06:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ed8a061-9801-46fb-ad30-a2f24b6feb5c", + "start": { + "$date": "2021-03-17T17:06:07.000Z" + }, + "end": { + "$date": "2021-03-17T17:24:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8fa2ac0d-1925-438a-b300-c2971dfc501b", + "start": { + "$date": "2021-03-17T17:24:07.000Z" + }, + "end": { + "$date": "2021-03-17T19:49:56.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ceda5544-8a23-4a08-bb94-4ee7e9828a81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T17:04:42.000Z" + }, + "end": { + "$date": "2021-03-17T17:40:52.000Z" + }, + "events": [ + { + "uuid": "cee982da-b315-4964-aaed-c54e3a7035e4", + "start": { + "$date": "2021-03-17T17:04:42.000Z" + }, + "end": { + "$date": "2021-03-17T17:40:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "122fa623-4cd4-463c-b60d-909bfe1f0bb3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-17T17:40:13.000Z" + }, + "end": { + "$date": "2021-03-17T18:14:23.000Z" + }, + "events": [ + { + "uuid": "d2a6efc8-cff6-4fc2-afc7-242f24a1b65d", + "start": { + "$date": "2021-03-17T17:40:13.000Z" + }, + "end": { + "$date": "2021-03-17T18:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d1cf5a64-6c9b-46ab-9e7f-027875f2a2e6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-17T17:52:18.000Z" + }, + "end": { + "$date": "2021-03-17T19:08:36.000Z" + }, + "events": [ + { + "uuid": "1361516d-6539-4259-8559-b997a97daacd", + "start": { + "$date": "2021-03-17T17:52:18.000Z" + }, + "end": { + "$date": "2021-03-17T19:08:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a66f548b-4f73-4ff9-9abf-c4eedc88d4c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T20:08:51.000Z" + }, + "end": { + "$date": "2021-03-17T20:53:40.000Z" + }, + "events": [ + { + "uuid": "e51fc85e-47bc-48d8-99b7-aa903db2beff", + "start": { + "$date": "2021-03-17T20:08:51.000Z" + }, + "end": { + "$date": "2021-03-17T20:53:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "98ee557e-73bd-4efe-a085-2a637873bc52", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-17T20:10:02.000Z" + }, + "end": { + "$date": "2021-03-17T20:24:29.000Z" + }, + "events": [ + { + "uuid": "071f7d1f-8e1d-49f7-ac7b-7e18ee25a192", + "start": { + "$date": "2021-03-17T20:10:02.000Z" + }, + "end": { + "$date": "2021-03-17T20:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "82cb50b7-7437-4a3a-bf13-1dcfd4cde8dd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-17T20:28:44.000Z" + }, + "end": { + "$date": "2021-03-17T20:32:40.000Z" + }, + "events": [ + { + "uuid": "37e45f54-ff4b-4246-acad-b2a96c82c4b4", + "start": { + "$date": "2021-03-17T20:28:44.000Z" + }, + "end": { + "$date": "2021-03-17T20:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fd14ef6e-fd08-4231-b3c3-7b5f57b0d1f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-17T20:58:56.000Z" + }, + "end": { + "$date": "2021-03-17T21:22:37.000Z" + }, + "events": [ + { + "uuid": "de35e08b-935d-4110-9cc4-ed2b76c70758", + "start": { + "$date": "2021-03-17T20:58:56.000Z" + }, + "end": { + "$date": "2021-03-17T21:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ebcfa28-4ce4-4cf1-91b8-7fb513d35454", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T21:36:19.000Z" + }, + "end": { + "$date": "2021-03-17T21:40:20.000Z" + }, + "events": [ + { + "uuid": "d3205197-7a7d-4d37-944f-6b8fabb251d9", + "start": { + "$date": "2021-03-17T21:36:19.000Z" + }, + "end": { + "$date": "2021-03-17T21:40:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e51c7572-7bbb-4dfe-ac45-47f94aa6f191", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-17T21:36:57.000Z" + }, + "end": { + "$date": "2021-03-17T22:41:59.000Z" + }, + "events": [ + { + "uuid": "3199b613-aa8b-4ea6-b536-942c25a80087", + "start": { + "$date": "2021-03-17T21:36:57.000Z" + }, + "end": { + "$date": "2021-03-17T22:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9dab22db-781d-442d-9207-df0f4d6534c0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T21:43:00.000Z" + }, + "end": { + "$date": "2021-03-17T22:19:18.000Z" + }, + "events": [ + { + "uuid": "28360db7-c5d5-47bd-9e86-28c9676a2a33", + "start": { + "$date": "2021-03-17T21:43:00.000Z" + }, + "end": { + "$date": "2021-03-17T22:19:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "785177ea-8ce8-48e5-98d1-d3b797904390", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-17T22:41:36.000Z" + }, + "end": { + "$date": "2021-03-18T01:08:19.000Z" + }, + "events": [ + { + "uuid": "e2aa621f-5cb8-4bd3-8bac-4a71a3768d75", + "start": { + "$date": "2021-03-17T22:41:36.000Z" + }, + "end": { + "$date": "2021-03-18T01:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4a6031cb-7365-4656-8d20-9d711b7e5490", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-17T22:42:05.000Z" + }, + "end": { + "$date": "2021-03-18T03:40:30.000Z" + }, + "events": [ + { + "uuid": "59a581ea-0fe5-4417-9e15-61fc426130e7", + "start": { + "$date": "2021-03-17T22:42:05.000Z" + }, + "end": { + "$date": "2021-03-17T23:42:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eacc9c50-a054-4cb2-8d3c-7bcc2154439b", + "start": { + "$date": "2021-03-17T23:42:05.000Z" + }, + "end": { + "$date": "2021-03-17T23:53:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ad1f0206-06a4-4189-ac02-479addb611a1", + "start": { + "$date": "2021-03-17T23:53:05.000Z" + }, + "end": { + "$date": "2021-03-18T02:14:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b9865daf-9a84-4d08-b287-9ae6bb8a3120", + "start": { + "$date": "2021-03-18T02:14:05.000Z" + }, + "end": { + "$date": "2021-03-18T02:17:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7c8741e5-9b49-4043-bdb1-86291ef39cdb", + "start": { + "$date": "2021-03-18T02:17:05.000Z" + }, + "end": { + "$date": "2021-03-18T03:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dc223fcc-78d8-4ce1-8f1f-8f2a4e05cecd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-17T22:54:27.000Z" + }, + "end": { + "$date": "2021-03-17T23:35:28.000Z" + }, + "events": [ + { + "uuid": "c663939a-9033-47cf-b5ae-19a7d79c1ea6", + "start": { + "$date": "2021-03-17T22:54:27.000Z" + }, + "end": { + "$date": "2021-03-17T23:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "95f60d60-bdc9-44b7-8fb8-7bdcc90bf3ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-17T23:05:24.000Z" + }, + "end": { + "$date": "2021-03-17T23:43:24.000Z" + }, + "events": [ + { + "uuid": "486a3ed6-b8b0-480f-a532-56f9618205d4", + "start": { + "$date": "2021-03-17T23:05:24.000Z" + }, + "end": { + "$date": "2021-03-17T23:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "96e2b822-1593-475b-9714-34ae5442fd86", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-17T23:49:46.000Z" + }, + "end": { + "$date": "2021-03-18T00:36:38.000Z" + }, + "events": [ + { + "uuid": "1b67961a-dd62-45c8-a20e-ae3fe61a6975", + "start": { + "$date": "2021-03-17T23:49:46.000Z" + }, + "end": { + "$date": "2021-03-18T00:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4776ccb5-46e0-4c34-b85e-025124a1bc66", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-17T23:59:24.000Z" + }, + "end": { + "$date": "2021-03-18T00:23:08.000Z" + }, + "events": [ + { + "uuid": "45501d09-215f-4176-b0d6-fa9740097405", + "start": { + "$date": "2021-03-17T23:59:24.000Z" + }, + "end": { + "$date": "2021-03-18T00:23:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d763ea79-85f6-4aa5-8bd6-d686e774bdea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-18T01:25:46.000Z" + }, + "end": { + "$date": "2021-03-18T01:41:56.000Z" + }, + "events": [ + { + "uuid": "7da44add-21c4-4002-bf1c-442db3004374", + "start": { + "$date": "2021-03-18T01:25:46.000Z" + }, + "end": { + "$date": "2021-03-18T01:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9ccdbfa1-9761-461e-97d3-971981dc68ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-18T01:41:08.000Z" + }, + "end": { + "$date": "2021-03-18T05:26:10.000Z" + }, + "events": [ + { + "uuid": "b1b2e377-e825-4199-9107-cc0eede5ef82", + "start": { + "$date": "2021-03-18T01:41:08.000Z" + }, + "end": { + "$date": "2021-03-18T05:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d66c80be-45cc-4c9d-b866-f57973043021", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-18T01:46:07.000Z" + }, + "end": { + "$date": "2021-03-18T02:00:32.000Z" + }, + "events": [ + { + "uuid": "d53e90ca-10f7-47c5-a99f-20ba6226c3b7", + "start": { + "$date": "2021-03-18T01:46:07.000Z" + }, + "end": { + "$date": "2021-03-18T02:00:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0302b62a-47fc-49d6-8aa2-895bdae17894", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-18T02:25:59.000Z" + }, + "end": { + "$date": "2021-03-18T05:25:00.000Z" + }, + "events": [ + { + "uuid": "0a2ca815-01c3-4873-94c0-cd38b416b4fb", + "start": { + "$date": "2021-03-18T02:25:59.000Z" + }, + "end": { + "$date": "2021-03-18T05:25:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6693324b-318f-41bc-a1d1-92d8ad9c745b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-18T02:42:26.000Z" + }, + "end": { + "$date": "2021-03-18T05:30:28.000Z" + }, + "events": [ + { + "uuid": "de9f9b34-bd10-4f37-a92c-7ddcda0b5b87", + "start": { + "$date": "2021-03-18T02:42:26.000Z" + }, + "end": { + "$date": "2021-03-18T03:02:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ce4cb3d-c1cd-422b-8594-5325d7847c9a", + "start": { + "$date": "2021-03-18T03:02:26.000Z" + }, + "end": { + "$date": "2021-03-18T03:07:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c814658e-4fe5-41d5-9916-a4342e097727", + "start": { + "$date": "2021-03-18T03:07:26.000Z" + }, + "end": { + "$date": "2021-03-18T03:17:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d66af7d9-09a8-47c9-83d6-6ec84e2e9e33", + "start": { + "$date": "2021-03-18T03:17:26.000Z" + }, + "end": { + "$date": "2021-03-18T03:29:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4553dca9-4ff1-4118-8d90-e2799b3d1e71", + "start": { + "$date": "2021-03-18T03:29:26.000Z" + }, + "end": { + "$date": "2021-03-18T05:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "39a7d226-3639-4ca6-9559-576df5b5dd1a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-18T02:43:37.000Z" + }, + "end": { + "$date": "2021-03-18T04:57:51.000Z" + }, + "events": [ + { + "uuid": "ab106f52-59ca-4434-bf30-5dda16b1dc61", + "start": { + "$date": "2021-03-18T02:43:37.000Z" + }, + "end": { + "$date": "2021-03-18T04:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "27d0a45f-346b-4886-a55f-c8b706f6b51e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-18T03:08:57.000Z" + }, + "end": { + "$date": "2021-03-18T04:58:04.000Z" + }, + "events": [ + { + "uuid": "3b4ae445-b925-46c4-87c6-1f3d2cf27717", + "start": { + "$date": "2021-03-18T03:08:57.000Z" + }, + "end": { + "$date": "2021-03-18T04:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7d9ec0f-db88-47d8-823f-bf4bf743b63c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-18T03:36:09.000Z" + }, + "end": { + "$date": "2021-03-18T04:23:50.000Z" + }, + "events": [ + { + "uuid": "85221e6a-279e-4bc6-9066-b3fdbf0a42f7", + "start": { + "$date": "2021-03-18T03:36:09.000Z" + }, + "end": { + "$date": "2021-03-18T04:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0b68decd-64ef-4938-baf5-35b18e5b4525", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-18T03:36:11.000Z" + }, + "end": { + "$date": "2021-03-18T05:16:30.000Z" + }, + "events": [ + { + "uuid": "9eab8c23-6cfb-4a02-9208-dde0d4f60bda", + "start": { + "$date": "2021-03-18T03:36:11.000Z" + }, + "end": { + "$date": "2021-03-18T05:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd2af5bb-aad0-4773-9a98-bcc798a21492", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-18T03:46:20.000Z" + }, + "end": { + "$date": "2021-03-18T04:38:09.000Z" + }, + "events": [ + { + "uuid": "e078ccae-f2df-488a-bc0e-7d3106817b5c", + "start": { + "$date": "2021-03-18T03:46:20.000Z" + }, + "end": { + "$date": "2021-03-18T04:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "30a8e973-45e3-43d5-a77c-f6816e095de0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-18T03:40:44.000Z" + }, + "end": { + "$date": "2021-03-18T06:12:46.000Z" + }, + "events": [ + { + "uuid": "64373706-f544-4da8-832f-8eca3a657500", + "start": { + "$date": "2021-03-18T03:40:44.000Z" + }, + "end": { + "$date": "2021-03-18T05:53:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e65f567b-4d9a-41de-9ee4-ffbedf2c26ec", + "start": { + "$date": "2021-03-18T05:53:44.000Z" + }, + "end": { + "$date": "2021-03-18T05:58:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa47e0f4-9dc2-4a08-8b4b-5eccf7268da4", + "start": { + "$date": "2021-03-18T05:58:44.000Z" + }, + "end": { + "$date": "2021-03-18T06:12:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fd6e1c8-79b1-4b1b-9dab-78140dedcf82", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-18T03:51:35.000Z" + }, + "end": { + "$date": "2021-03-18T04:16:55.000Z" + }, + "events": [ + { + "uuid": "5a19124b-ceb0-4f75-996c-50650dc38893", + "start": { + "$date": "2021-03-18T03:51:35.000Z" + }, + "end": { + "$date": "2021-03-18T04:16:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d39e1c7-415c-4c85-a503-405584f922dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-18T04:18:48.000Z" + }, + "end": { + "$date": "2021-03-18T04:25:07.000Z" + }, + "events": [ + { + "uuid": "21cdc525-7d5a-4491-935d-da49cc95022a", + "start": { + "$date": "2021-03-18T04:18:48.000Z" + }, + "end": { + "$date": "2021-03-18T04:25:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aabcf78f-0da2-4e54-b98c-515183917ca2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-18T04:25:55.000Z" + }, + "end": { + "$date": "2021-03-18T05:16:26.000Z" + }, + "events": [ + { + "uuid": "bbc0c435-01c0-4fec-8b88-6889bd5adf92", + "start": { + "$date": "2021-03-18T04:25:55.000Z" + }, + "end": { + "$date": "2021-03-18T05:16:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebf7c903-39cb-40f8-bf04-f050f92e3897", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-18T04:46:57.000Z" + }, + "end": { + "$date": "2021-03-18T05:10:58.000Z" + }, + "events": [ + { + "uuid": "54dc118d-a01e-406a-a06f-2072c99c97d0", + "start": { + "$date": "2021-03-18T04:46:57.000Z" + }, + "end": { + "$date": "2021-03-18T05:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b49254bb-f13c-498a-bf52-1f28199c9dd7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-18T05:23:45.000Z" + }, + "end": { + "$date": "2021-03-18T05:42:04.000Z" + }, + "events": [ + { + "uuid": "5bd4ebb7-4764-4c96-b926-6471f9abf448", + "start": { + "$date": "2021-03-18T05:23:45.000Z" + }, + "end": { + "$date": "2021-03-18T05:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "40e9ed6b-efd6-4ee5-bde7-08187df7f6f7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-18T05:25:45.000Z" + }, + "end": { + "$date": "2021-03-18T05:39:19.000Z" + }, + "events": [ + { + "uuid": "540835ba-24db-439f-9a0e-6c24d7b37ce5", + "start": { + "$date": "2021-03-18T05:25:45.000Z" + }, + "end": { + "$date": "2021-03-18T05:39:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8cf48cac-b2ac-445b-86db-ef75d12018f1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-18T06:03:53.000Z" + }, + "end": { + "$date": "2021-03-18T06:16:41.000Z" + }, + "events": [ + { + "uuid": "25023fde-91c0-42b4-a67a-7e8c96f9cf24", + "start": { + "$date": "2021-03-18T06:03:53.000Z" + }, + "end": { + "$date": "2021-03-18T06:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ebf71a72-8143-403f-82d9-beb35dcbcebb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-18T06:13:01.000Z" + }, + "end": { + "$date": "2021-03-18T08:16:16.000Z" + }, + "events": [ + { + "uuid": "74423c51-49f1-40a5-973e-6c0a21551f36", + "start": { + "$date": "2021-03-18T06:13:01.000Z" + }, + "end": { + "$date": "2021-03-18T08:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "70e61ed1-8aee-4004-95b4-4b3f99fcb727", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-18T13:40:14.000Z" + }, + "end": { + "$date": "2021-03-18T13:41:44.000Z" + }, + "events": [ + { + "uuid": "ac6e5d75-5456-442e-84be-2441eee395d3", + "start": { + "$date": "2021-03-18T13:40:14.000Z" + }, + "end": { + "$date": "2021-03-18T13:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a2d5b1d0-f33c-4812-9d45-28ae30a8c329", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-18T14:06:38.000Z" + }, + "end": { + "$date": "2021-03-18T14:23:08.000Z" + }, + "events": [ + { + "uuid": "91f37613-561e-45ed-8fb7-6aea5770d53b", + "start": { + "$date": "2021-03-18T14:06:38.000Z" + }, + "end": { + "$date": "2021-03-18T14:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f3aa6927-60e2-40ca-a25f-ee59e112b2ae", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-18T15:32:51.000Z" + }, + "end": { + "$date": "2021-03-18T16:12:37.000Z" + }, + "events": [ + { + "uuid": "10c1591c-c429-445a-a6f4-0b479e840685", + "start": { + "$date": "2021-03-18T15:32:51.000Z" + }, + "end": { + "$date": "2021-03-18T16:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92855ecc-c586-4e89-a490-c71525a8fc9d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-18T17:30:34.000Z" + }, + "end": { + "$date": "2021-03-18T18:27:37.000Z" + }, + "events": [ + { + "uuid": "4af96af7-e1a1-4636-8a2c-ce3e558f0131", + "start": { + "$date": "2021-03-18T17:30:34.000Z" + }, + "end": { + "$date": "2021-03-18T18:27:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6f09553e-4588-4eb2-87b1-f5220772cc99", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-18T19:46:13.000Z" + }, + "end": { + "$date": "2021-03-18T19:55:57.000Z" + }, + "events": [ + { + "uuid": "cb65b517-1cc3-40fe-9ecd-d02d33037204", + "start": { + "$date": "2021-03-18T19:46:13.000Z" + }, + "end": { + "$date": "2021-03-18T19:55:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b9379fee-26de-4473-b8c2-4c8374c8b828", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-18T20:30:07.000Z" + }, + "end": { + "$date": "2021-03-18T20:46:55.000Z" + }, + "events": [ + { + "uuid": "2cd46a1a-f58e-49c1-9a32-dd86f55d8caf", + "start": { + "$date": "2021-03-18T20:30:07.000Z" + }, + "end": { + "$date": "2021-03-18T20:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8bdb28f-e6a4-4756-8a19-daa1b6549e58", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-18T22:14:09.000Z" + }, + "end": { + "$date": "2021-03-18T22:39:37.000Z" + }, + "events": [ + { + "uuid": "eb28ad87-9e7a-4c8f-96b2-0a3861e9ac65", + "start": { + "$date": "2021-03-18T22:14:09.000Z" + }, + "end": { + "$date": "2021-03-18T22:39:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8d75605b-068f-4beb-8267-76ec8732bc03", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-18T22:28:00.000Z" + }, + "end": { + "$date": "2021-03-19T00:07:28.000Z" + }, + "events": [ + { + "uuid": "7af2b6de-e331-410e-bd2c-72b870abe6dc", + "start": { + "$date": "2021-03-18T22:28:00.000Z" + }, + "end": { + "$date": "2021-03-19T00:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1617fa23-5e35-43d0-8200-ba98a462c1ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-18T23:07:37.000Z" + }, + "end": { + "$date": "2021-03-19T01:15:53.000Z" + }, + "events": [ + { + "uuid": "8223bee4-204d-4ff2-b3cc-36db826f1a5c", + "start": { + "$date": "2021-03-18T23:07:37.000Z" + }, + "end": { + "$date": "2021-03-19T01:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4f926321-7dba-413e-a93f-0c78ffde6c9e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-19T00:09:24.000Z" + }, + "end": { + "$date": "2021-03-19T02:20:13.000Z" + }, + "events": [ + { + "uuid": "4dcef215-59a9-4264-92e6-8305c9c6f34b", + "start": { + "$date": "2021-03-19T00:09:24.000Z" + }, + "end": { + "$date": "2021-03-19T01:59:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ffb94a9-3a12-4754-8c99-e1597cf2e8f2", + "start": { + "$date": "2021-03-19T01:59:24.000Z" + }, + "end": { + "$date": "2021-03-19T02:20:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "172c7b7d-8bd0-4462-9561-aafebcddae73", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-19T00:39:12.000Z" + }, + "end": { + "$date": "2021-03-19T01:02:07.000Z" + }, + "events": [ + { + "uuid": "e576b3de-b6e9-4f0d-8b05-8bfda107b2cd", + "start": { + "$date": "2021-03-19T00:39:12.000Z" + }, + "end": { + "$date": "2021-03-19T01:02:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cdac2f7c-12bf-42c3-beb0-584ad639d78b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-19T01:06:19.000Z" + }, + "end": { + "$date": "2021-03-19T01:43:17.000Z" + }, + "events": [ + { + "uuid": "653e884d-5108-4551-a91d-d524629a2d98", + "start": { + "$date": "2021-03-19T01:06:19.000Z" + }, + "end": { + "$date": "2021-03-19T01:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3d77a3b5-8bb7-4d78-a859-3a39b340bc9c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-19T02:01:10.000Z" + }, + "end": { + "$date": "2021-03-19T04:48:42.000Z" + }, + "events": [ + { + "uuid": "44fc77d5-e7e8-4a21-abc9-b65e3fec43ab", + "start": { + "$date": "2021-03-19T02:01:10.000Z" + }, + "end": { + "$date": "2021-03-19T04:05:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb1db672-888b-4380-aa70-04b06ad141cb", + "start": { + "$date": "2021-03-19T04:05:10.000Z" + }, + "end": { + "$date": "2021-03-19T04:10:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e584d2c-676c-48c2-a07f-8fb05e4dcf2e", + "start": { + "$date": "2021-03-19T04:10:10.000Z" + }, + "end": { + "$date": "2021-03-19T04:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e2e5cd8a-92de-428f-b634-03cb7c0716e9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-19T02:06:11.000Z" + }, + "end": { + "$date": "2021-03-19T02:48:19.000Z" + }, + "events": [ + { + "uuid": "daa9f65c-442b-4a93-bef5-8514b8052142", + "start": { + "$date": "2021-03-19T02:06:11.000Z" + }, + "end": { + "$date": "2021-03-19T02:48:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a2eb5170-2c6c-4db5-87d4-94b934722ed3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-19T02:09:19.000Z" + }, + "end": { + "$date": "2021-03-19T02:48:30.000Z" + }, + "events": [ + { + "uuid": "1ed0067a-0493-4246-9965-d79a09360133", + "start": { + "$date": "2021-03-19T02:09:19.000Z" + }, + "end": { + "$date": "2021-03-19T02:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "46259f05-2abc-4b39-b0dc-066a26573fd7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-19T02:23:22.000Z" + }, + "end": { + "$date": "2021-03-19T02:57:34.000Z" + }, + "events": [ + { + "uuid": "d01ee225-3ba0-4dc1-a22a-a9c0cf6185c4", + "start": { + "$date": "2021-03-19T02:23:22.000Z" + }, + "end": { + "$date": "2021-03-19T02:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c0ab811f-92e0-4523-a17b-3935a1877835", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-19T02:43:49.000Z" + }, + "end": { + "$date": "2021-03-19T05:57:11.000Z" + }, + "events": [ + { + "uuid": "e1d9f5af-2476-45b2-9025-ab4a3cf3ed3c", + "start": { + "$date": "2021-03-19T02:43:49.000Z" + }, + "end": { + "$date": "2021-03-19T03:17:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "640ac567-ced2-47bf-9f60-038d43b4934f", + "start": { + "$date": "2021-03-19T03:17:49.000Z" + }, + "end": { + "$date": "2021-03-19T03:27:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23674532-2d38-4c7e-a7fb-9bbf39b86f00", + "start": { + "$date": "2021-03-19T03:27:49.000Z" + }, + "end": { + "$date": "2021-03-19T05:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a9a9371-b381-41fb-bcf6-cf216c9f0880", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-19T02:51:33.000Z" + }, + "end": { + "$date": "2021-03-19T06:40:12.000Z" + }, + "events": [ + { + "uuid": "1c6aeac0-3f2c-4045-9361-56c84b45375a", + "start": { + "$date": "2021-03-19T02:51:33.000Z" + }, + "end": { + "$date": "2021-03-19T06:40:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "803afc5e-6f57-4d67-ab25-27a3a32e535d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-19T02:52:35.000Z" + }, + "end": { + "$date": "2021-03-19T06:40:22.000Z" + }, + "events": [ + { + "uuid": "995b94fe-67e2-464f-8111-06d6a01dbeed", + "start": { + "$date": "2021-03-19T02:52:35.000Z" + }, + "end": { + "$date": "2021-03-19T03:25:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec9154af-db8d-4c0a-80b7-a37659dca717", + "start": { + "$date": "2021-03-19T03:25:35.000Z" + }, + "end": { + "$date": "2021-03-19T03:30:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53fc6005-63a5-47fd-972d-3fcbeef7c608", + "start": { + "$date": "2021-03-19T03:30:35.000Z" + }, + "end": { + "$date": "2021-03-19T03:32:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06499984-ca2e-4d31-ab0d-3528c120b978", + "start": { + "$date": "2021-03-19T03:32:35.000Z" + }, + "end": { + "$date": "2021-03-19T03:37:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa54b19d-262e-44c8-9e23-7958c4304560", + "start": { + "$date": "2021-03-19T03:37:35.000Z" + }, + "end": { + "$date": "2021-03-19T06:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c3d026f0-0e14-4c19-a56b-19ad5bfeea68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-19T02:57:44.000Z" + }, + "end": { + "$date": "2021-03-19T03:39:25.000Z" + }, + "events": [ + { + "uuid": "61911e5a-e857-434d-9fb8-118335912a7e", + "start": { + "$date": "2021-03-19T02:57:44.000Z" + }, + "end": { + "$date": "2021-03-19T03:39:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b6f035d-bd98-4e0f-ae03-2f1e21302442", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-19T03:08:12.000Z" + }, + "end": { + "$date": "2021-03-19T03:34:44.000Z" + }, + "events": [ + { + "uuid": "c0200d3a-3276-4624-b93a-59ec4fef2d19", + "start": { + "$date": "2021-03-19T03:08:12.000Z" + }, + "end": { + "$date": "2021-03-19T03:34:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8c6b812e-cd97-439d-bda1-c7f271aca66e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-19T03:10:22.000Z" + }, + "end": { + "$date": "2021-03-19T04:30:38.000Z" + }, + "events": [ + { + "uuid": "2d7e8baa-ba5a-46d5-b2e8-1bdfcbe2b0be", + "start": { + "$date": "2021-03-19T03:10:22.000Z" + }, + "end": { + "$date": "2021-03-19T04:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e420984-a5df-4ab7-b15a-24d6e9a573c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-19T03:10:31.000Z" + }, + "end": { + "$date": "2021-03-19T04:30:38.000Z" + }, + "events": [ + { + "uuid": "e181ca51-0e2a-48ba-9a23-cc20044e31b6", + "start": { + "$date": "2021-03-19T03:10:31.000Z" + }, + "end": { + "$date": "2021-03-19T04:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdeab1f6-ca2f-49de-b778-9815f7bdbc17", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-19T03:38:59.000Z" + }, + "end": { + "$date": "2021-03-19T04:17:02.000Z" + }, + "events": [ + { + "uuid": "0a64790b-4786-47f2-8dfc-0185e8a525cd", + "start": { + "$date": "2021-03-19T03:38:59.000Z" + }, + "end": { + "$date": "2021-03-19T04:17:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "7c47da0a-46b3-4c3d-aeeb-0f7e89e28dc1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-19T03:39:29.000Z" + }, + "end": { + "$date": "2021-03-19T03:51:30.000Z" + }, + "events": [ + { + "uuid": "eb743709-dfcc-4d11-a59d-9466e22e8d2e", + "start": { + "$date": "2021-03-19T03:39:29.000Z" + }, + "end": { + "$date": "2021-03-19T03:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "035d95d8-4872-4124-9923-57b0bf458170", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-19T04:10:41.000Z" + }, + "end": { + "$date": "2021-03-19T05:36:33.000Z" + }, + "events": [ + { + "uuid": "29aedc3e-0066-4d36-bf92-614b6e00a073", + "start": { + "$date": "2021-03-19T04:10:41.000Z" + }, + "end": { + "$date": "2021-03-19T05:36:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9dcf94b5-ad47-42f3-8b0e-98096fb3e87e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-19T05:03:09.000Z" + }, + "end": { + "$date": "2021-03-19T05:05:46.000Z" + }, + "events": [ + { + "uuid": "02b2d89c-9b1e-4214-9b51-f17a616b171e", + "start": { + "$date": "2021-03-19T05:03:09.000Z" + }, + "end": { + "$date": "2021-03-19T05:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d9ec12e5-6a72-4eed-96c3-a923b3ccec55", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-19T04:48:52.000Z" + }, + "end": { + "$date": "2021-03-19T08:24:48.000Z" + }, + "events": [ + { + "uuid": "cb73e430-4625-4a81-a0c9-71da8e294b1a", + "start": { + "$date": "2021-03-19T04:48:52.000Z" + }, + "end": { + "$date": "2021-03-19T08:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a19ea92c-cd14-4cd6-9760-95131265fb1b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-19T04:50:25.000Z" + }, + "end": { + "$date": "2021-03-19T05:36:41.000Z" + }, + "events": [ + { + "uuid": "133632fc-c3e5-4588-a2ba-9a2794bed8af", + "start": { + "$date": "2021-03-19T04:50:25.000Z" + }, + "end": { + "$date": "2021-03-19T05:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6ad7b557-e9cc-4e72-803a-5678cef6e985", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-19T13:13:19.000Z" + }, + "end": { + "$date": "2021-03-19T13:15:28.000Z" + }, + "events": [ + { + "uuid": "cab88827-d42e-4288-a84f-35d8daccd095", + "start": { + "$date": "2021-03-19T13:13:19.000Z" + }, + "end": { + "$date": "2021-03-19T13:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "4c49fe54-46fc-492d-981b-529b63e9603a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-19T13:17:34.000Z" + }, + "end": { + "$date": "2021-03-19T13:32:21.000Z" + }, + "events": [ + { + "uuid": "50f66c9d-3072-47bf-acb9-b943e90f0524", + "start": { + "$date": "2021-03-19T13:17:34.000Z" + }, + "end": { + "$date": "2021-03-19T13:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "794e5e39-749d-4012-9465-4332ac299d17", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-19T16:06:09.000Z" + }, + "end": { + "$date": "2021-03-19T17:22:47.000Z" + }, + "events": [ + { + "uuid": "26cb9f9e-15da-4016-9c8e-28419842c0ee", + "start": { + "$date": "2021-03-19T16:06:09.000Z" + }, + "end": { + "$date": "2021-03-19T17:22:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "41337d0c-1447-4648-8144-d3b8a3afe0fc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-19T16:31:54.000Z" + }, + "end": { + "$date": "2021-03-19T20:21:03.000Z" + }, + "events": [ + { + "uuid": "b6c6668d-1b06-4e47-bacc-58bd0e3d17ec", + "start": { + "$date": "2021-03-19T16:31:54.000Z" + }, + "end": { + "$date": "2021-03-19T20:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "30103ed5-5424-4516-8a5a-23d5505da44d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-19T16:40:05.000Z" + }, + "end": { + "$date": "2021-03-19T17:12:17.000Z" + }, + "events": [ + { + "uuid": "e64cc449-1de5-468c-819b-d786869c7139", + "start": { + "$date": "2021-03-19T16:40:05.000Z" + }, + "end": { + "$date": "2021-03-19T17:12:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77c45357-ff7e-43aa-8a11-a5dd6a2d37b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-19T19:27:11.000Z" + }, + "end": { + "$date": "2021-03-19T19:55:43.000Z" + }, + "events": [ + { + "uuid": "60ffdfa3-ff50-4424-ac34-95e35cd6272b", + "start": { + "$date": "2021-03-19T19:27:11.000Z" + }, + "end": { + "$date": "2021-03-19T19:55:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83aa015b-71b3-4623-8875-25331f096d6a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-19T19:59:43.000Z" + }, + "end": { + "$date": "2021-03-19T20:29:04.000Z" + }, + "events": [ + { + "uuid": "9c47457f-a7b5-4389-abbe-4ab8c477ba6b", + "start": { + "$date": "2021-03-19T19:59:43.000Z" + }, + "end": { + "$date": "2021-03-19T20:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "736025e9-ff4b-4b46-bdd6-73701daccbf7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-20T05:03:05.000Z" + }, + "end": { + "$date": "2021-03-20T05:09:01.000Z" + }, + "events": [ + { + "uuid": "f6c62a0c-5a15-4ace-a0ff-63e25d5111f3", + "start": { + "$date": "2021-03-20T05:03:05.000Z" + }, + "end": { + "$date": "2021-03-20T11:12:05.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "76009928-a7de-4a7f-a188-da3a97d44af3", + "start": { + "$date": "2021-03-20T11:12:05.000Z" + }, + "end": { + "$date": "2021-03-20T05:09:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "459eb68c-deaf-40c8-b002-dd48da882446", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T02:05:34.000Z" + }, + "end": { + "$date": "2021-03-20T02:36:34.000Z" + }, + "events": [ + { + "uuid": "20ae1ac4-f0af-4100-8d28-ae61f78476bd", + "start": { + "$date": "2021-03-20T02:05:34.000Z" + }, + "end": { + "$date": "2021-03-20T02:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3447e504-6e2c-413c-8a9a-060422915514", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-20T02:40:09.000Z" + }, + "end": { + "$date": "2021-03-20T04:25:48.000Z" + }, + "events": [ + { + "uuid": "5aacc957-e0d4-42be-91b6-1adaf71e6423", + "start": { + "$date": "2021-03-20T02:40:09.000Z" + }, + "end": { + "$date": "2021-03-20T04:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8b54736c-e73d-4556-8523-823f4936dd4f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T03:35:27.000Z" + }, + "end": { + "$date": "2021-03-20T04:12:39.000Z" + }, + "events": [ + { + "uuid": "6132d7d4-1645-4988-9f31-9c585091599a", + "start": { + "$date": "2021-03-20T03:35:27.000Z" + }, + "end": { + "$date": "2021-03-20T04:53:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa37b1ee-f491-472d-aa2e-25a8d471a072", + "start": { + "$date": "2021-03-20T04:53:27.000Z" + }, + "end": { + "$date": "2021-03-20T04:57:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c6e5629e-6751-4662-9215-63128e0cf06f", + "start": { + "$date": "2021-03-20T04:57:27.000Z" + }, + "end": { + "$date": "2021-03-20T04:12:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e766d90-4cea-4b51-b2a6-52fab41c2be9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-20T02:41:16.000Z" + }, + "end": { + "$date": "2021-03-20T03:47:48.000Z" + }, + "events": [ + { + "uuid": "383b5cfa-3229-4889-96d1-a0bf7d201645", + "start": { + "$date": "2021-03-20T02:41:16.000Z" + }, + "end": { + "$date": "2021-03-20T03:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8f4ca1ce-c56c-49cd-968c-3da06be30cab", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-20T03:04:00.000Z" + }, + "end": { + "$date": "2021-03-20T05:02:56.000Z" + }, + "events": [ + { + "uuid": "611b98a4-63fe-4619-8c61-104660ed3f4d", + "start": { + "$date": "2021-03-20T03:04:00.000Z" + }, + "end": { + "$date": "2021-03-20T05:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3af63f76-d8f6-4749-b439-1b2628cb82b9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-20T02:56:28.000Z" + }, + "end": { + "$date": "2021-03-20T05:03:04.000Z" + }, + "events": [ + { + "uuid": "7d123f25-ef87-419d-8d3c-f6b3e8bcabca", + "start": { + "$date": "2021-03-20T02:56:28.000Z" + }, + "end": { + "$date": "2021-03-20T05:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "69a89719-6ff4-43d0-adc3-18861c22f5a8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-20T02:44:45.000Z" + }, + "end": { + "$date": "2021-03-20T07:17:48.000Z" + }, + "events": [ + { + "uuid": "18f22985-d89e-4960-a439-9eca8a2b2a4f", + "start": { + "$date": "2021-03-20T02:44:45.000Z" + }, + "end": { + "$date": "2021-03-20T07:17:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d92482e7-84e8-44ec-9403-9bf5fa577c5f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T02:45:13.000Z" + }, + "end": { + "$date": "2021-03-20T06:03:25.000Z" + }, + "events": [ + { + "uuid": "163ae6f6-eadc-41b1-a3b9-880ab0f39ede", + "start": { + "$date": "2021-03-20T02:45:13.000Z" + }, + "end": { + "$date": "2021-03-20T06:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "17f6c21b-2193-415d-b0e9-361615878d5c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-20T03:27:17.000Z" + }, + "end": { + "$date": "2021-03-20T05:18:00.000Z" + }, + "events": [ + { + "uuid": "0b75dbfb-c846-432b-8ad2-f5e5ec4a564d", + "start": { + "$date": "2021-03-20T03:27:17.000Z" + }, + "end": { + "$date": "2021-03-20T05:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "05c77522-baea-47c7-a86b-8c07e828c0ee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-20T03:49:38.000Z" + }, + "end": { + "$date": "2021-03-20T07:17:36.000Z" + }, + "events": [ + { + "uuid": "5819d145-f1a7-41f1-ad89-9d14c21efdb4", + "start": { + "$date": "2021-03-20T03:49:38.000Z" + }, + "end": { + "$date": "2021-03-20T07:17:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", + "uuid": "7a871dfa-4602-46e4-88c0-e21d6982c530", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-20T04:18:03.000Z" + }, + "end": { + "$date": "2021-03-20T05:43:37.000Z" + }, + "events": [ + { + "uuid": "ec5ee435-7d69-4687-b0d6-e56a00cf8040", + "start": { + "$date": "2021-03-20T04:18:03.000Z" + }, + "end": { + "$date": "2021-03-20T05:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0156964a-6d77-413a-b6b2-960333e6c392", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T05:40:53.000Z" + }, + "end": { + "$date": "2021-03-20T06:01:22.000Z" + }, + "events": [ + { + "uuid": "01d54b05-ee37-4909-9225-97e8c7798895", + "start": { + "$date": "2021-03-20T05:40:53.000Z" + }, + "end": { + "$date": "2021-03-20T06:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "222f2c53-552b-45e1-b755-537e1a6dd380", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-20T05:02:58.000Z" + }, + "end": { + "$date": "2021-03-20T07:33:26.000Z" + }, + "events": [ + { + "uuid": "6f2da505-e9c5-46a5-bb1a-08073830c2ad", + "start": { + "$date": "2021-03-20T05:02:58.000Z" + }, + "end": { + "$date": "2021-03-20T07:33:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "debe0c83-3114-42b3-bf93-5d1dc8b140bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-20T05:03:30.000Z" + }, + "end": { + "$date": "2021-03-20T07:25:49.000Z" + }, + "events": [ + { + "uuid": "e6d2107a-cc5b-407b-a02f-536a4f1af39d", + "start": { + "$date": "2021-03-20T05:03:30.000Z" + }, + "end": { + "$date": "2021-03-20T07:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "38e20546-be97-4ff6-aec6-064bbc35bc42", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-20T05:12:41.000Z" + }, + "end": { + "$date": "2021-03-20T07:09:44.000Z" + }, + "events": [ + { + "uuid": "9031d1f5-8787-417c-87b8-7bb5324b414a", + "start": { + "$date": "2021-03-20T05:12:41.000Z" + }, + "end": { + "$date": "2021-03-20T07:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "57babe70-9438-40d1-a34d-3f2f363263fc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-20T05:32:47.000Z" + }, + "end": { + "$date": "2021-03-20T05:50:00.000Z" + }, + "events": [ + { + "uuid": "27095309-de14-4dbe-82a4-7d673edc57b4", + "start": { + "$date": "2021-03-20T05:32:47.000Z" + }, + "end": { + "$date": "2021-03-20T05:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", + "uuid": "eb5eb1b1-e515-4a0a-9f2a-1ab7f50ac3fc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-20T05:44:37.000Z" + }, + "end": { + "$date": "2021-03-20T07:30:37.000Z" + }, + "events": [ + { + "uuid": "3898bc87-27c0-4823-a494-736575390a96", + "start": { + "$date": "2021-03-20T05:44:37.000Z" + }, + "end": { + "$date": "2021-03-20T07:30:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1ae0c89e-7ba2-4ca6-b871-b62f9bdb7457", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T06:01:33.000Z" + }, + "end": { + "$date": "2021-03-20T06:07:58.000Z" + }, + "events": [ + { + "uuid": "f3aa4c3d-2a09-4d7b-84ae-1d9e8bea9203", + "start": { + "$date": "2021-03-20T06:01:33.000Z" + }, + "end": { + "$date": "2021-03-20T06:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "0f6fa5f4-8570-4d37-a09d-025ba86eea81", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T06:14:54.000Z" + }, + "end": { + "$date": "2021-03-20T06:31:25.000Z" + }, + "events": [ + { + "uuid": "14d00435-ebd9-4111-be9c-2bb096e5f1ae", + "start": { + "$date": "2021-03-20T06:14:54.000Z" + }, + "end": { + "$date": "2021-03-20T06:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9100380d-62a4-4432-8e4e-9c2a736bd686", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T06:42:27.000Z" + }, + "end": { + "$date": "2021-03-20T07:21:47.000Z" + }, + "events": [ + { + "uuid": "cb6921c0-de2e-416b-8adc-90de6e23e1f1", + "start": { + "$date": "2021-03-20T06:42:27.000Z" + }, + "end": { + "$date": "2021-03-20T07:21:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "08e751d1-d0c5-4c56-b104-5240d8bf1b10", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-20T06:34:27.000Z" + }, + "end": { + "$date": "2021-03-20T08:32:04.000Z" + }, + "events": [ + { + "uuid": "a320de87-4c06-4efd-b88b-273f25bb9a48", + "start": { + "$date": "2021-03-20T06:34:27.000Z" + }, + "end": { + "$date": "2021-03-20T08:32:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98d4a0ad-4e90-48b7-8218-f2ddd7561cdb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-20T06:39:40.000Z" + }, + "end": { + "$date": "2021-03-20T07:06:24.000Z" + }, + "events": [ + { + "uuid": "43ffeda4-b89d-439e-ad96-74af10016472", + "start": { + "$date": "2021-03-20T06:39:40.000Z" + }, + "end": { + "$date": "2021-03-20T07:06:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "476df817-a44d-442b-a7e0-e1aaf9b01776", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-20T07:10:39.000Z" + }, + "end": { + "$date": "2021-03-20T08:35:31.000Z" + }, + "events": [ + { + "uuid": "41c6f4a6-10af-458a-bc61-c7b0cc2f13b0", + "start": { + "$date": "2021-03-20T07:10:39.000Z" + }, + "end": { + "$date": "2021-03-20T08:33:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7fe9fbb9-af5f-45a2-9ac1-425d4c18c068", + "start": { + "$date": "2021-03-20T08:33:39.000Z" + }, + "end": { + "$date": "2021-03-20T08:35:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "cacb6f13-1680-4068-a7a1-6367f865651c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T07:23:43.000Z" + }, + "end": { + "$date": "2021-03-20T07:29:15.000Z" + }, + "events": [ + { + "uuid": "2eb99fb1-c16b-4185-862f-1f51139f33a2", + "start": { + "$date": "2021-03-20T07:23:43.000Z" + }, + "end": { + "$date": "2021-03-20T07:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "41802920-e5f9-4efc-908e-efa6292d31f9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T14:24:29.000Z" + }, + "end": { + "$date": "2021-03-20T16:06:58.000Z" + }, + "events": [ + { + "uuid": "0431ef82-150f-4aa8-bcfa-624223b4f7a4", + "start": { + "$date": "2021-03-20T14:24:29.000Z" + }, + "end": { + "$date": "2021-03-20T16:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b34da525-1acd-4a19-bea8-33dcee806b7e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-20T15:27:16.000Z" + }, + "end": { + "$date": "2021-03-20T15:29:16.000Z" + }, + "events": [ + { + "uuid": "2feb40ba-456f-42a4-ab6c-5106f27698d5", + "start": { + "$date": "2021-03-20T15:27:16.000Z" + }, + "end": { + "$date": "2021-03-20T15:28:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d772da22-2e3b-43d0-80b7-ba6ed0a73784", + "start": { + "$date": "2021-03-20T15:28:16.000Z" + }, + "end": { + "$date": "2021-03-20T15:29:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3565f39d-39f5-4469-b0f9-5491fc9787ca", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-20T15:29:20.000Z" + }, + "end": { + "$date": "2021-03-20T16:16:30.000Z" + }, + "events": [ + { + "uuid": "f989e89d-54bc-4ed4-b01c-21de895d648d", + "start": { + "$date": "2021-03-20T15:29:20.000Z" + }, + "end": { + "$date": "2021-03-20T16:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "10aa1680-5d4b-4309-9962-999590fdd1a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T16:09:45.000Z" + }, + "end": { + "$date": "2021-03-20T16:21:15.000Z" + }, + "events": [ + { + "uuid": "d8bd38e2-65cb-4d96-b0de-c71fe7b0b602", + "start": { + "$date": "2021-03-20T16:09:45.000Z" + }, + "end": { + "$date": "2021-03-20T16:21:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ce46e49b-fc28-47ce-b70e-e06667e21983", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T16:12:04.000Z" + }, + "end": { + "$date": "2021-03-20T16:41:16.000Z" + }, + "events": [ + { + "uuid": "19eb45c2-b926-492f-b714-d0135b904e24", + "start": { + "$date": "2021-03-20T16:12:04.000Z" + }, + "end": { + "$date": "2021-03-20T16:41:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3ca52378-6377-441d-836b-2fb2cc29a9d9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T16:22:37.000Z" + }, + "end": { + "$date": "2021-03-20T17:13:01.000Z" + }, + "events": [ + { + "uuid": "f538e755-0740-406b-8d22-b494b38455d7", + "start": { + "$date": "2021-03-20T16:22:37.000Z" + }, + "end": { + "$date": "2021-03-20T17:13:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aea983ba-261c-4b3c-b537-94fc0664b7a4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T16:41:32.000Z" + }, + "end": { + "$date": "2021-03-20T17:50:52.000Z" + }, + "events": [ + { + "uuid": "deda0cc4-e55a-4291-9f5c-4c8ec9385d8c", + "start": { + "$date": "2021-03-20T16:41:32.000Z" + }, + "end": { + "$date": "2021-03-20T17:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7959e257-41fb-4ff6-ba0f-58f80bdd6bf6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-20T17:02:10.000Z" + }, + "end": { + "$date": "2021-03-20T17:34:52.000Z" + }, + "events": [ + { + "uuid": "7367ab3e-4a73-49cd-b357-3583ee574ff1", + "start": { + "$date": "2021-03-20T17:02:10.000Z" + }, + "end": { + "$date": "2021-03-20T17:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "061782be-04fc-4b3c-ada9-0a6d3546a7c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T17:13:47.000Z" + }, + "end": { + "$date": "2021-03-20T17:17:16.000Z" + }, + "events": [ + { + "uuid": "ed7d12ce-61c9-45ab-8414-995f53067bf7", + "start": { + "$date": "2021-03-20T17:13:47.000Z" + }, + "end": { + "$date": "2021-03-20T17:17:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8376dadc-473a-47a9-8cc1-402c5b156b23", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-20T17:17:28.000Z" + }, + "end": { + "$date": "2021-03-20T17:55:39.000Z" + }, + "events": [ + { + "uuid": "0e003d8d-506e-4a09-ae50-7d4a158f3fb8", + "start": { + "$date": "2021-03-20T17:17:28.000Z" + }, + "end": { + "$date": "2021-03-20T17:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1af4534e-0fb2-4a23-b400-ff46cd394033", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-20T17:35:51.000Z" + }, + "end": { + "$date": "2021-03-20T18:02:58.000Z" + }, + "events": [ + { + "uuid": "b1e34c4d-b75a-4f4f-8e13-594b9191be53", + "start": { + "$date": "2021-03-20T17:35:51.000Z" + }, + "end": { + "$date": "2021-03-20T18:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b955f45b-d57c-4a92-948c-73c3dc1d9fdb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-20T18:08:47.000Z" + }, + "end": { + "$date": "2021-03-20T18:39:09.000Z" + }, + "events": [ + { + "uuid": "7a393510-23eb-424b-9e2d-62e67ede53af", + "start": { + "$date": "2021-03-20T18:08:47.000Z" + }, + "end": { + "$date": "2021-03-20T18:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b8da782f-fae7-43e2-9b4b-0004ec0b6096", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-20T18:22:29.000Z" + }, + "end": { + "$date": "2021-03-20T18:29:30.000Z" + }, + "events": [ + { + "uuid": "bcfd8b37-6a92-44e8-aeca-bb4c681e80ce", + "start": { + "$date": "2021-03-20T18:22:29.000Z" + }, + "end": { + "$date": "2021-03-20T18:29:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e61556d2-c32a-4af0-a289-f606708036a9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-20T18:25:01.000Z" + }, + "end": { + "$date": "2021-03-20T22:11:33.000Z" + }, + "events": [ + { + "uuid": "da58f9fd-c39a-4d98-8b7f-f419e4960b9b", + "start": { + "$date": "2021-03-20T18:25:01.000Z" + }, + "end": { + "$date": "2021-03-20T22:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "408dd901-2ced-4122-8339-6b139342e357", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T19:00:38.000Z" + }, + "end": { + "$date": "2021-03-20T20:17:03.000Z" + }, + "events": [ + { + "uuid": "be7bb7e5-446d-49ec-b12c-eb9c48b7909c", + "start": { + "$date": "2021-03-20T19:00:38.000Z" + }, + "end": { + "$date": "2021-03-20T20:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb98232d-4535-4879-b68d-32e8fd409e96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-20T19:26:46.000Z" + }, + "end": { + "$date": "2021-03-20T19:54:08.000Z" + }, + "events": [ + { + "uuid": "a8628e00-06b6-440a-9e4e-0e8e60aae18e", + "start": { + "$date": "2021-03-20T19:26:46.000Z" + }, + "end": { + "$date": "2021-03-20T19:54:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7691bf72-3ba3-4e23-a959-f40334e87a76", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-20T20:10:58.000Z" + }, + "end": { + "$date": "2021-03-20T20:47:53.000Z" + }, + "events": [ + { + "uuid": "83d1383c-b8d2-4c86-b9a0-2360a757ffbf", + "start": { + "$date": "2021-03-20T20:10:58.000Z" + }, + "end": { + "$date": "2021-03-20T20:47:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6f97e9ce-1509-4678-91e2-5c49cfcc3cf5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T20:38:42.000Z" + }, + "end": { + "$date": "2021-03-20T21:17:29.000Z" + }, + "events": [ + { + "uuid": "bb2b938b-6fae-4b69-af51-d6bc3a0da410", + "start": { + "$date": "2021-03-20T20:38:42.000Z" + }, + "end": { + "$date": "2021-03-20T21:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0433d08-2540-4038-9d56-2a4813772472", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-20T21:17:18.000Z" + }, + "end": { + "$date": "2021-03-20T21:57:20.000Z" + }, + "events": [ + { + "uuid": "1e818260-8a19-4774-86b7-02f4657094e0", + "start": { + "$date": "2021-03-20T21:17:18.000Z" + }, + "end": { + "$date": "2021-03-20T21:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce9c6705-d371-469e-b6d0-45e033bd6282", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-20T21:25:08.000Z" + }, + "end": { + "$date": "2021-03-20T21:59:33.000Z" + }, + "events": [ + { + "uuid": "bb2a8251-834b-438a-9517-e130e0de1a9a", + "start": { + "$date": "2021-03-20T21:25:08.000Z" + }, + "end": { + "$date": "2021-03-20T21:59:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "017281ba-5189-4a16-ae25-b503d5b9e19e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T21:30:21.000Z" + }, + "end": { + "$date": "2021-03-20T21:40:51.000Z" + }, + "events": [ + { + "uuid": "efb35259-896a-46bf-b33b-6543e6b784cd", + "start": { + "$date": "2021-03-20T21:30:21.000Z" + }, + "end": { + "$date": "2021-03-20T21:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b15e4-43dc-4f53-b99e-6fd86914352e", + "uuid": "3f1d6ea0-6ff9-43a0-8f5a-db7503177eb8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-20T22:25:23.000Z" + }, + "end": { + "$date": "2021-03-20T22:44:56.000Z" + }, + "events": [ + { + "uuid": "1dd20658-8999-40ac-8219-da4e449e8d34", + "start": { + "$date": "2021-03-20T22:25:23.000Z" + }, + "end": { + "$date": "2021-03-20T22:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "64122bd3-af29-42b8-82de-1acc27d3d2ba", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T22:29:14.000Z" + }, + "end": { + "$date": "2021-03-20T22:31:49.000Z" + }, + "events": [ + { + "uuid": "2c63b556-d96f-40c7-ac27-5d7afdde485d", + "start": { + "$date": "2021-03-20T22:29:14.000Z" + }, + "end": { + "$date": "2021-03-20T22:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b15e4-43dc-4f53-b99e-6fd86914352e", + "uuid": "4f2240f0-2b6e-41a8-99a3-680062d27633", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-20T22:45:11.000Z" + }, + "end": { + "$date": "2021-03-20T23:09:09.000Z" + }, + "events": [ + { + "uuid": "91a703b6-21a2-40d0-904c-3ca2b1fee59c", + "start": { + "$date": "2021-03-20T22:45:11.000Z" + }, + "end": { + "$date": "2021-03-20T23:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eec72cfd-eb61-4a7e-a905-8e2b1e56a9ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T22:55:38.000Z" + }, + "end": { + "$date": "2021-03-20T22:57:08.000Z" + }, + "events": [ + { + "uuid": "d5fec615-da59-4be3-b30e-4c13adfec614", + "start": { + "$date": "2021-03-20T22:55:38.000Z" + }, + "end": { + "$date": "2021-03-20T22:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b15e4-43dc-4f53-b99e-6fd86914352e", + "uuid": "81081d8e-6f1a-4b6d-a69f-ebaa86181bd2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-20T23:09:39.000Z" + }, + "end": { + "$date": "2021-03-20T23:17:56.000Z" + }, + "events": [ + { + "uuid": "1c181db6-8cc6-435d-a482-181d40864a75", + "start": { + "$date": "2021-03-20T23:09:39.000Z" + }, + "end": { + "$date": "2021-03-20T23:17:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c51fae75-5ed3-4ef9-8ee6-d4227e53d1b8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-20T23:23:33.000Z" + }, + "end": { + "$date": "2021-03-21T00:35:14.000Z" + }, + "events": [ + { + "uuid": "68caef6f-b9fc-4ed3-9f2c-17ccc82cc51d", + "start": { + "$date": "2021-03-20T23:23:33.000Z" + }, + "end": { + "$date": "2021-03-21T00:35:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "68e303e2-1ab0-45d5-add6-2de530f5588f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-20T23:34:55.000Z" + }, + "end": { + "$date": "2021-03-20T23:41:21.000Z" + }, + "events": [ + { + "uuid": "ff8d5f0b-f147-4eee-a5c7-2a7b5c20c5d9", + "start": { + "$date": "2021-03-20T23:34:55.000Z" + }, + "end": { + "$date": "2021-03-20T23:41:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0f95f5d-e6e5-4369-a1b5-e7454b1f0624", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-20T23:51:27.000Z" + }, + "end": { + "$date": "2021-03-21T00:11:32.000Z" + }, + "events": [ + { + "uuid": "04a2cf3d-c09e-4b77-9abd-470ff6f79dd1", + "start": { + "$date": "2021-03-20T23:51:27.000Z" + }, + "end": { + "$date": "2021-03-21T00:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "b8d6fb2a-8f26-4749-828a-c861dc9496c7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-20T23:47:07.000Z" + }, + "end": { + "$date": "2021-03-21T04:42:12.000Z" + }, + "events": [ + { + "uuid": "804e4c7a-4daf-4e5c-a23f-aed3461a8787", + "start": { + "$date": "2021-03-20T23:47:07.000Z" + }, + "end": { + "$date": "2021-03-21T00:27:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cda29381-7325-4794-a4f0-5acfe56ed5ce", + "start": { + "$date": "2021-03-21T00:27:07.000Z" + }, + "end": { + "$date": "2021-03-21T00:41:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e98b3102-1be8-4687-bf85-5f07c1b2952f", + "start": { + "$date": "2021-03-21T00:41:07.000Z" + }, + "end": { + "$date": "2021-03-21T00:56:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c65ce82b-bfb5-417b-bd87-ae415948a5c1", + "start": { + "$date": "2021-03-21T00:56:07.000Z" + }, + "end": { + "$date": "2021-03-21T01:23:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "66f9d8a3-93d7-43d0-8f92-af3364cd24c9", + "start": { + "$date": "2021-03-21T01:23:07.000Z" + }, + "end": { + "$date": "2021-03-21T01:36:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19160a8e-a744-440f-8b89-330b3d0cda10", + "start": { + "$date": "2021-03-21T01:36:07.000Z" + }, + "end": { + "$date": "2021-03-21T01:54:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "12e5b59c-d77c-4f64-be03-835352a8f524", + "start": { + "$date": "2021-03-21T01:54:07.000Z" + }, + "end": { + "$date": "2021-03-21T01:56:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a7fbb4e-9f99-47fb-b674-d4286c2ef9d9", + "start": { + "$date": "2021-03-21T01:56:07.000Z" + }, + "end": { + "$date": "2021-03-21T02:29:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ed53f45-5ef6-4bfb-b171-0532d6a00ad6", + "start": { + "$date": "2021-03-21T02:29:07.000Z" + }, + "end": { + "$date": "2021-03-21T02:31:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc5a0a60-b304-4dac-8e2e-279dfde88d22", + "start": { + "$date": "2021-03-21T02:31:07.000Z" + }, + "end": { + "$date": "2021-03-21T03:23:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a436a22a-ed56-476a-ad15-15b7f688a0c7", + "start": { + "$date": "2021-03-21T03:23:07.000Z" + }, + "end": { + "$date": "2021-03-21T04:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce5900da-91eb-4135-9929-383361ee2a5f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-21T00:06:25.000Z" + }, + "end": { + "$date": "2021-03-21T00:09:06.000Z" + }, + "events": [ + { + "uuid": "3ea7efe4-c7a9-4799-b531-084a91c8ed27", + "start": { + "$date": "2021-03-21T00:06:25.000Z" + }, + "end": { + "$date": "2021-03-21T00:09:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "171d81ab-908a-4a88-a6ac-56984532008b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-21T00:12:14.000Z" + }, + "end": { + "$date": "2021-03-21T06:18:25.000Z" + }, + "events": [ + { + "uuid": "55a2b6ed-7135-4b78-8040-5ce940dc6ba6", + "start": { + "$date": "2021-03-21T00:12:14.000Z" + }, + "end": { + "$date": "2021-03-21T00:42:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce6916c4-7b0c-4499-a767-78e3e4cfe208", + "start": { + "$date": "2021-03-21T00:42:14.000Z" + }, + "end": { + "$date": "2021-03-21T01:56:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ece8bd38-e3a7-4636-80f6-5d86f34f8d2f", + "start": { + "$date": "2021-03-21T01:56:14.000Z" + }, + "end": { + "$date": "2021-03-21T02:07:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a86a4f4e-a93c-4d1e-98cf-4f93496de6dd", + "start": { + "$date": "2021-03-21T02:07:14.000Z" + }, + "end": { + "$date": "2021-03-21T02:33:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9935782-be8b-4cd7-8021-75f5b970f216", + "start": { + "$date": "2021-03-21T02:33:14.000Z" + }, + "end": { + "$date": "2021-03-21T02:47:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2324d7ab-90e8-45a7-8d29-19199de59833", + "start": { + "$date": "2021-03-21T02:47:14.000Z" + }, + "end": { + "$date": "2021-03-21T02:48:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a7f2a740-185a-4a62-8cba-2c717b9b067c", + "start": { + "$date": "2021-03-21T02:48:14.000Z" + }, + "end": { + "$date": "2021-03-21T02:58:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f39c570-31c3-42a8-a611-f6a062881303", + "start": { + "$date": "2021-03-21T02:58:14.000Z" + }, + "end": { + "$date": "2021-03-21T02:59:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff121361-5208-41c0-89c2-2dd308d8e134", + "start": { + "$date": "2021-03-21T02:59:14.000Z" + }, + "end": { + "$date": "2021-03-21T03:15:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "676a9ca8-7c16-483c-b940-3e79284217b4", + "start": { + "$date": "2021-03-21T03:15:14.000Z" + }, + "end": { + "$date": "2021-03-21T03:16:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9ae0c1ea-0d56-493b-b856-355c2bd60879", + "start": { + "$date": "2021-03-21T03:16:14.000Z" + }, + "end": { + "$date": "2021-03-21T06:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "96c81db9-d7e5-4434-9f6d-f8f7fdb45189", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-21T08:39:37.000Z" + }, + "end": { + "$date": "2021-03-21T08:57:54.000Z" + }, + "events": [ + { + "uuid": "7994e8eb-c30f-4dea-bab1-fc62ac9cb0d6", + "start": { + "$date": "2021-03-21T08:39:37.000Z" + }, + "end": { + "$date": "2021-03-21T11:11:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e4cca0c-f13f-422e-b6a6-9d96800d326b", + "start": { + "$date": "2021-03-21T11:11:37.000Z" + }, + "end": { + "$date": "2021-03-21T11:16:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2afaab12-bea7-42c6-bf2b-8e5c4e0af0f0", + "start": { + "$date": "2021-03-21T11:16:37.000Z" + }, + "end": { + "$date": "2021-03-21T11:26:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2be4276-570d-4c20-906b-24c021b2f9f6", + "start": { + "$date": "2021-03-21T11:26:37.000Z" + }, + "end": { + "$date": "2021-03-21T11:31:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4986886b-4f01-4e7f-a68b-751dfd626ff9", + "start": { + "$date": "2021-03-21T11:31:37.000Z" + }, + "end": { + "$date": "2021-03-21T08:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "50ff3e6f-33ef-40ea-bf19-a0112c665f86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T00:36:32.000Z" + }, + "end": { + "$date": "2021-03-21T03:20:09.000Z" + }, + "events": [ + { + "uuid": "f1e56d57-e056-4175-84bd-c920428f994b", + "start": { + "$date": "2021-03-21T00:36:32.000Z" + }, + "end": { + "$date": "2021-03-21T03:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "818f4fa2-841c-43c9-9faa-549b045294bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-21T02:09:34.000Z" + }, + "end": { + "$date": "2021-03-21T02:37:43.000Z" + }, + "events": [ + { + "uuid": "b160927f-9198-4a8c-bbc0-429b3558cd2d", + "start": { + "$date": "2021-03-21T02:09:34.000Z" + }, + "end": { + "$date": "2021-03-21T02:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47b24151-916c-4f13-8800-457f288bc97c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-21T03:02:32.000Z" + }, + "end": { + "$date": "2021-03-21T03:31:40.000Z" + }, + "events": [ + { + "uuid": "f36737d0-4e8b-427a-8eb1-5079239233c1", + "start": { + "$date": "2021-03-21T03:02:32.000Z" + }, + "end": { + "$date": "2021-03-21T03:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5dcdc59-01e4-4862-af0c-395ea00d58ac", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-21T03:51:06.000Z" + }, + "end": { + "$date": "2021-03-21T04:20:20.000Z" + }, + "events": [ + { + "uuid": "bedf6a0a-d6a3-4497-8195-583ae52858f2", + "start": { + "$date": "2021-03-21T03:51:06.000Z" + }, + "end": { + "$date": "2021-03-21T04:20:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c6940b34-3f83-4967-b53d-ce9555f938b6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-21T03:33:01.000Z" + }, + "end": { + "$date": "2021-03-21T04:44:53.000Z" + }, + "events": [ + { + "uuid": "6972491a-ed98-48b0-bcef-2cad57a659ad", + "start": { + "$date": "2021-03-21T03:33:01.000Z" + }, + "end": { + "$date": "2021-03-21T04:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b8da48c6-3a49-4864-a90e-2b46447680bc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-21T08:13:10.000Z" + }, + "end": { + "$date": "2021-03-21T08:53:31.000Z" + }, + "events": [ + { + "uuid": "ed2316ef-723c-4ed9-8e03-68602e21cf61", + "start": { + "$date": "2021-03-21T08:13:10.000Z" + }, + "end": { + "$date": "2021-03-21T08:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "90354e12-771f-4c2d-92e6-6a4acd38fcf7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-21T03:33:25.000Z" + }, + "end": { + "$date": "2021-03-21T05:47:05.000Z" + }, + "events": [ + { + "uuid": "0c298ed9-6ed5-483c-bdcd-45a60fc41882", + "start": { + "$date": "2021-03-21T03:33:25.000Z" + }, + "end": { + "$date": "2021-03-21T05:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "48fd522c-f8ff-4b03-9ae0-9f480c058759", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T04:00:33.000Z" + }, + "end": { + "$date": "2021-03-21T05:30:31.000Z" + }, + "events": [ + { + "uuid": "f0500462-3578-43a8-99a2-7de427fbddbc", + "start": { + "$date": "2021-03-21T04:00:33.000Z" + }, + "end": { + "$date": "2021-03-21T05:30:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "27c3048c-5edb-4789-b431-3a0d95c2a818", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-21T04:07:15.000Z" + }, + "end": { + "$date": "2021-03-21T07:51:02.000Z" + }, + "events": [ + { + "uuid": "a14fa828-846a-42c5-a2d0-b8518dff1f69", + "start": { + "$date": "2021-03-21T04:07:15.000Z" + }, + "end": { + "$date": "2021-03-21T07:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "108a0559-c542-47ab-9bfe-bfe3f84b7295", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T04:11:43.000Z" + }, + "end": { + "$date": "2021-03-21T06:26:30.000Z" + }, + "events": [ + { + "uuid": "6f1ca011-2300-452b-8212-123cb164c82b", + "start": { + "$date": "2021-03-21T04:11:43.000Z" + }, + "end": { + "$date": "2021-03-21T06:26:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a4f1c04d-d3a4-4596-8437-22c91f2a85bb", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-21T04:45:47.000Z" + }, + "end": { + "$date": "2021-03-21T06:59:52.000Z" + }, + "events": [ + { + "uuid": "226dd777-5898-48fc-b019-a61d8b37500a", + "start": { + "$date": "2021-03-21T04:45:47.000Z" + }, + "end": { + "$date": "2021-03-21T06:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2b53a923-2b8c-4c8f-9d55-77687404a4d0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T05:34:56.000Z" + }, + "end": { + "$date": "2021-03-21T07:22:54.000Z" + }, + "events": [ + { + "uuid": "8a2d928a-851c-447f-a5de-0cf5af7c6d6c", + "start": { + "$date": "2021-03-21T05:34:56.000Z" + }, + "end": { + "$date": "2021-03-21T07:22:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3fcd1599-1196-4ef9-be98-bebcbf58b9c5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-21T06:17:26.000Z" + }, + "end": { + "$date": "2021-03-21T07:49:51.000Z" + }, + "events": [ + { + "uuid": "34d92c38-9711-4bf0-8802-e255912c9e84", + "start": { + "$date": "2021-03-21T06:17:26.000Z" + }, + "end": { + "$date": "2021-03-21T07:49:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "af33d64a-8030-4f68-97c8-4686bcea995a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-21T06:38:31.000Z" + }, + "end": { + "$date": "2021-03-21T06:38:35.000Z" + }, + "events": [ + { + "uuid": "948b996c-1e71-4be1-9354-0bb88b03b892", + "start": { + "$date": "2021-03-21T06:38:31.000Z" + }, + "end": { + "$date": "2021-03-21T06:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cd951028-3b63-4460-8fe4-2e445d2fa28f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T06:27:00.000Z" + }, + "end": { + "$date": "2021-03-21T06:33:35.000Z" + }, + "events": [ + { + "uuid": "ea12f551-7703-47ae-bff6-aeb7efaecf6b", + "start": { + "$date": "2021-03-21T06:27:00.000Z" + }, + "end": { + "$date": "2021-03-21T06:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "20fc775c-dcbb-4e1b-8661-7ca3ab6183fa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-21T06:41:31.000Z" + }, + "end": { + "$date": "2021-03-21T07:22:30.000Z" + }, + "events": [ + { + "uuid": "11ac961a-ce50-46b6-810a-20d7b569b6df", + "start": { + "$date": "2021-03-21T06:41:31.000Z" + }, + "end": { + "$date": "2021-03-21T07:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "95bc27ca-99fe-4ffe-9c46-4134d4597925", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-21T07:51:14.000Z" + }, + "end": { + "$date": "2021-03-21T08:06:16.000Z" + }, + "events": [ + { + "uuid": "67767a1e-e248-4266-b7c6-4813bb54f5c5", + "start": { + "$date": "2021-03-21T07:51:14.000Z" + }, + "end": { + "$date": "2021-03-21T08:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8abc1bc9-0f64-4920-be4d-997c5d1153ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-21T08:08:03.000Z" + }, + "end": { + "$date": "2021-03-21T08:53:10.000Z" + }, + "events": [ + { + "uuid": "de02de87-0579-4ce6-b66b-f691f5cdf23f", + "start": { + "$date": "2021-03-21T08:08:03.000Z" + }, + "end": { + "$date": "2021-03-21T08:53:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16c4a915-4686-4f2e-a930-7a90cff855b0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-21T08:21:04.000Z" + }, + "end": { + "$date": "2021-03-21T09:21:22.000Z" + }, + "events": [ + { + "uuid": "bcf22fb9-15f9-4f1c-9d8c-a8c63d86f6e0", + "start": { + "$date": "2021-03-21T08:21:04.000Z" + }, + "end": { + "$date": "2021-03-21T09:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "51fbc3e3-a582-4a4a-900d-61f0bc300bbc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-21T08:56:56.000Z" + }, + "end": { + "$date": "2021-03-21T09:11:21.000Z" + }, + "events": [ + { + "uuid": "6397e205-fe74-4017-bc8a-f822a9613eab", + "start": { + "$date": "2021-03-21T08:56:56.000Z" + }, + "end": { + "$date": "2021-03-21T09:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "43af84b1-6dc0-4cbc-bfad-67dd2af54800", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T13:31:24.000Z" + }, + "end": { + "$date": "2021-03-21T15:02:05.000Z" + }, + "events": [ + { + "uuid": "4ab62246-1034-481a-9db7-a0a1b640da5a", + "start": { + "$date": "2021-03-21T13:31:24.000Z" + }, + "end": { + "$date": "2021-03-21T14:22:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "84d263d1-1c6c-4a70-8180-91e0f28ac69e", + "start": { + "$date": "2021-03-21T14:22:24.000Z" + }, + "end": { + "$date": "2021-03-21T14:25:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c4c8032-4eef-4c51-87a9-5b1f398b8e6b", + "start": { + "$date": "2021-03-21T14:25:24.000Z" + }, + "end": { + "$date": "2021-03-21T15:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "40432145-493f-4ae7-9cba-5c0db18304e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T15:02:15.000Z" + }, + "end": { + "$date": "2021-03-21T15:04:10.000Z" + }, + "events": [ + { + "uuid": "eafb4188-eec6-417f-83fe-cb337eeaa947", + "start": { + "$date": "2021-03-21T15:02:15.000Z" + }, + "end": { + "$date": "2021-03-21T15:04:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6277e574-0225-430f-8812-bd4b7571acb3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T15:06:15.000Z" + }, + "end": { + "$date": "2021-03-21T15:19:06.000Z" + }, + "events": [ + { + "uuid": "db9b5d78-bc31-47e7-a6ee-75d85966f49a", + "start": { + "$date": "2021-03-21T15:06:15.000Z" + }, + "end": { + "$date": "2021-03-21T15:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "069221b4-73cc-47cd-8289-45bc3189ac9b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T15:19:40.000Z" + }, + "end": { + "$date": "2021-03-21T15:24:36.000Z" + }, + "events": [ + { + "uuid": "56f8ca70-989b-4c53-9310-477f464f9d6b", + "start": { + "$date": "2021-03-21T15:19:40.000Z" + }, + "end": { + "$date": "2021-03-21T15:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "c259fd98-b006-4459-8056-2961cd37ca5c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T15:26:16.000Z" + }, + "end": { + "$date": "2021-03-21T15:52:34.000Z" + }, + "events": [ + { + "uuid": "c04374d7-3ea3-4dba-b416-7fbd68f56f8d", + "start": { + "$date": "2021-03-21T15:26:16.000Z" + }, + "end": { + "$date": "2021-03-21T15:37:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ec08fc3-e8ec-4962-9690-102c3a6b63d5", + "start": { + "$date": "2021-03-21T15:37:16.000Z" + }, + "end": { + "$date": "2021-03-21T15:42:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48c4b7e4-1c70-441b-a649-16c97517dcb2", + "start": { + "$date": "2021-03-21T15:42:16.000Z" + }, + "end": { + "$date": "2021-03-21T15:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ffd56ac8-e3ad-4dd9-9aae-a94a2be84f8f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T15:43:15.000Z" + }, + "end": { + "$date": "2021-03-21T16:48:12.000Z" + }, + "events": [ + { + "uuid": "8196519b-c892-4679-9c6a-7a44c7736359", + "start": { + "$date": "2021-03-21T15:43:15.000Z" + }, + "end": { + "$date": "2021-03-21T16:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8c4ee94d-214d-4907-8653-724986255623", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T15:52:39.000Z" + }, + "end": { + "$date": "2021-03-21T16:48:12.000Z" + }, + "events": [ + { + "uuid": "56a4639d-a7eb-457c-9ad1-d840c28e5790", + "start": { + "$date": "2021-03-21T15:52:39.000Z" + }, + "end": { + "$date": "2021-03-21T16:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "00e5b66b-27a3-48f3-902c-46939b9747a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-21T16:59:23.000Z" + }, + "end": { + "$date": "2021-03-21T19:38:07.000Z" + }, + "events": [ + { + "uuid": "c8fd5e4d-d925-4a3b-8fb3-4b86268260ac", + "start": { + "$date": "2021-03-21T16:59:23.000Z" + }, + "end": { + "$date": "2021-03-21T19:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "ee9a7bca-61ea-4511-bba3-4feed72159f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T17:03:39.000Z" + }, + "end": { + "$date": "2021-03-21T20:10:02.000Z" + }, + "events": [ + { + "uuid": "4981c275-fa66-400b-9034-2c2508ee1139", + "start": { + "$date": "2021-03-21T17:03:39.000Z" + }, + "end": { + "$date": "2021-03-21T20:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49558c66-f2c9-41b8-b26a-c49f29fb3dc7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T18:37:30.000Z" + }, + "end": { + "$date": "2021-03-21T19:07:25.000Z" + }, + "events": [ + { + "uuid": "bab1446d-dd9f-4e00-b343-61f588c31b4e", + "start": { + "$date": "2021-03-21T18:37:30.000Z" + }, + "end": { + "$date": "2021-03-21T19:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "236f44f8-f91c-45bf-b42c-53de0959f44c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-21T19:26:04.000Z" + }, + "end": { + "$date": "2021-03-21T20:16:15.000Z" + }, + "events": [ + { + "uuid": "3efd010b-f7cc-4fde-bfab-77a01cb66b58", + "start": { + "$date": "2021-03-21T19:26:04.000Z" + }, + "end": { + "$date": "2021-03-21T20:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "51b003e1-8820-4fa7-aaf1-70eb0660f10a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T19:55:53.000Z" + }, + "end": { + "$date": "2021-03-21T20:00:49.000Z" + }, + "events": [ + { + "uuid": "5e28b7b4-48bd-4227-9b12-65e467e0e207", + "start": { + "$date": "2021-03-21T19:55:53.000Z" + }, + "end": { + "$date": "2021-03-21T20:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8971ecfb-9b00-4583-b8d7-40c60e8a23ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T20:11:13.000Z" + }, + "end": { + "$date": "2021-03-21T20:25:39.000Z" + }, + "events": [ + { + "uuid": "30f9bd0e-c836-46d2-8b5b-9bfcc58cd4cf", + "start": { + "$date": "2021-03-21T20:11:13.000Z" + }, + "end": { + "$date": "2021-03-21T20:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d8f43690-83d7-47f2-94c6-3b74f42acb6c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-21T20:11:17.000Z" + }, + "end": { + "$date": "2021-03-21T20:14:47.000Z" + }, + "events": [ + { + "uuid": "e63ce7ab-3465-4d47-be29-270aa70380c9", + "start": { + "$date": "2021-03-21T20:11:17.000Z" + }, + "end": { + "$date": "2021-03-21T20:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "76646b8d-4103-468b-95a7-027b8d03abf7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-21T20:17:02.000Z" + }, + "end": { + "$date": "2021-03-21T22:05:41.000Z" + }, + "events": [ + { + "uuid": "cbe055ae-abfa-44d7-aa0e-cd36bcd742f2", + "start": { + "$date": "2021-03-21T20:17:02.000Z" + }, + "end": { + "$date": "2021-03-21T22:05:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f58a5377-275d-4a48-a456-c829a5c1b73b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T20:26:05.000Z" + }, + "end": { + "$date": "2021-03-21T22:20:15.000Z" + }, + "events": [ + { + "uuid": "d81f3c97-b750-4a85-ad45-314ce6a39361", + "start": { + "$date": "2021-03-21T20:26:05.000Z" + }, + "end": { + "$date": "2021-03-21T22:20:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c568e7d-767e-4830-ac23-d812c505fe25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-21T20:41:56.000Z" + }, + "end": { + "$date": "2021-03-21T21:10:59.000Z" + }, + "events": [ + { + "uuid": "3ca218f9-385f-4dc5-9d9c-541fb746653a", + "start": { + "$date": "2021-03-21T20:41:56.000Z" + }, + "end": { + "$date": "2021-03-21T21:10:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5b975978-a7d3-467b-ab6c-eda39b24bc19", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-21T21:57:00.000Z" + }, + "end": { + "$date": "2021-03-21T23:44:05.000Z" + }, + "events": [ + { + "uuid": "0cc541b7-6d43-49bc-90fe-6fd3d480728a", + "start": { + "$date": "2021-03-21T21:57:00.000Z" + }, + "end": { + "$date": "2021-03-21T23:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "179e18cd-0e4e-44ab-bd21-0948ac58f11d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T22:21:00.000Z" + }, + "end": { + "$date": "2021-03-21T22:49:16.000Z" + }, + "events": [ + { + "uuid": "91a9cc85-b4f6-410a-98f6-b530d9e45c94", + "start": { + "$date": "2021-03-21T22:21:00.000Z" + }, + "end": { + "$date": "2021-03-21T22:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "6937caee-60cb-4f51-a722-41c96411068e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T22:47:49.000Z" + }, + "end": { + "$date": "2021-03-21T23:08:47.000Z" + }, + "events": [ + { + "uuid": "be6d4288-9146-494c-ac67-6a4bd8c67a1b", + "start": { + "$date": "2021-03-21T22:47:49.000Z" + }, + "end": { + "$date": "2021-03-21T23:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c73efb64-24cd-4a86-b114-b498971045c9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T22:50:07.000Z" + }, + "end": { + "$date": "2021-03-21T23:33:58.000Z" + }, + "events": [ + { + "uuid": "e8b322b3-0c1f-4707-a22e-9bff806c30a3", + "start": { + "$date": "2021-03-21T22:50:07.000Z" + }, + "end": { + "$date": "2021-03-21T23:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "d36d4b9c-c339-4250-bd6a-1746da8f3382", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-21T22:56:51.000Z" + }, + "end": { + "$date": "2021-03-21T22:59:17.000Z" + }, + "events": [ + { + "uuid": "eb725db4-7824-4590-830d-5a5859239850", + "start": { + "$date": "2021-03-21T22:56:51.000Z" + }, + "end": { + "$date": "2021-03-21T22:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "a0811ea5-163e-4d0e-8127-bc20375e79c0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-21T22:59:47.000Z" + }, + "end": { + "$date": "2021-03-21T23:12:00.000Z" + }, + "events": [ + { + "uuid": "1319208c-2256-4e4e-ad84-1d387573fd1f", + "start": { + "$date": "2021-03-21T22:59:47.000Z" + }, + "end": { + "$date": "2021-03-21T23:12:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "db6b6e68-30fb-407f-9cbd-955b34f815d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T23:09:57.000Z" + }, + "end": { + "$date": "2021-03-21T23:16:22.000Z" + }, + "events": [ + { + "uuid": "d29abe0f-2ec8-4b20-ab9b-c91cb95d1aad", + "start": { + "$date": "2021-03-21T23:09:57.000Z" + }, + "end": { + "$date": "2021-03-21T23:16:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "1b3e6d9c-bdcd-4e5b-818a-ce846800ff2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-21T23:13:45.000Z" + }, + "end": { + "$date": "2021-03-21T23:17:06.000Z" + }, + "events": [ + { + "uuid": "15af9279-33aa-45e3-ab78-d3362dc967d7", + "start": { + "$date": "2021-03-21T23:13:45.000Z" + }, + "end": { + "$date": "2021-03-21T23:17:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "0220655e-7baf-4ca3-a637-e0405a790d39", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T23:17:03.000Z" + }, + "end": { + "$date": "2021-03-21T23:51:54.000Z" + }, + "events": [ + { + "uuid": "99909d72-920b-4fde-8c6c-411a2ba9a08a", + "start": { + "$date": "2021-03-21T23:17:03.000Z" + }, + "end": { + "$date": "2021-03-21T23:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "310d91b1-9b1f-4d61-99b7-a247f6dc97f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-21T23:17:45.000Z" + }, + "end": { + "$date": "2021-03-21T23:51:49.000Z" + }, + "events": [ + { + "uuid": "4cb0e2f5-35d0-4d68-8f77-a050b2550d54", + "start": { + "$date": "2021-03-21T23:17:45.000Z" + }, + "end": { + "$date": "2021-03-21T23:51:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "803d1a1c-6e3c-4a71-a3ce-d4031dfd89c3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-21T23:43:00.000Z" + }, + "end": { + "$date": "2021-03-22T04:01:26.000Z" + }, + "events": [ + { + "uuid": "2d5a45e6-f5fe-4854-8235-fc2de670b17f", + "start": { + "$date": "2021-03-21T23:43:00.000Z" + }, + "end": { + "$date": "2021-03-22T04:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfa042f4-328c-43c2-8838-e98e9b5063ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-21T23:54:19.000Z" + }, + "end": { + "$date": "2021-03-22T00:23:18.000Z" + }, + "events": [ + { + "uuid": "e67d59ac-2286-492f-9e23-d27fe5951738", + "start": { + "$date": "2021-03-21T23:54:19.000Z" + }, + "end": { + "$date": "2021-03-22T00:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf7de0fb-9602-43a5-8076-1ddf90d32783", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-22T00:24:54.000Z" + }, + "end": { + "$date": "2021-03-22T00:50:48.000Z" + }, + "events": [ + { + "uuid": "99cf680f-77f0-4006-9012-130b45c0e6ac", + "start": { + "$date": "2021-03-22T00:24:54.000Z" + }, + "end": { + "$date": "2021-03-22T00:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b02f61c-75cb-43ad-9160-6ea47042542e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-22T00:39:40.000Z" + }, + "end": { + "$date": "2021-03-22T01:12:27.000Z" + }, + "events": [ + { + "uuid": "e733a7a1-402e-4f6a-b4ee-37ffd9f284f6", + "start": { + "$date": "2021-03-22T00:39:40.000Z" + }, + "end": { + "$date": "2021-03-22T01:12:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02c161c8-0f87-409c-addd-d3aafb244d15", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-22T01:25:45.000Z" + }, + "end": { + "$date": "2021-03-22T01:53:04.000Z" + }, + "events": [ + { + "uuid": "c1845ef6-fc14-49a4-add4-e4c90f366fda", + "start": { + "$date": "2021-03-22T01:25:45.000Z" + }, + "end": { + "$date": "2021-03-22T01:53:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "517fb027-edac-4888-9f2a-77601c892d94", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T02:22:15.000Z" + }, + "end": { + "$date": "2021-03-22T02:56:54.000Z" + }, + "events": [ + { + "uuid": "bb4e21f6-93f2-41b1-bf01-26070ac478ae", + "start": { + "$date": "2021-03-22T02:22:15.000Z" + }, + "end": { + "$date": "2021-03-22T02:56:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4f8eb507-eb92-47f9-80ed-6277c3eecec1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-22T02:29:41.000Z" + }, + "end": { + "$date": "2021-03-22T02:56:17.000Z" + }, + "events": [ + { + "uuid": "c8b0d660-329d-4202-a5aa-f583cdb15ca3", + "start": { + "$date": "2021-03-22T02:29:41.000Z" + }, + "end": { + "$date": "2021-03-22T02:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bd06f32c-6bc1-43ba-b2db-8af4d8f4716d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T02:57:24.000Z" + }, + "end": { + "$date": "2021-03-22T02:58:34.000Z" + }, + "events": [ + { + "uuid": "b13674ee-04de-4eb2-b756-c2065ef2bed0", + "start": { + "$date": "2021-03-22T02:57:24.000Z" + }, + "end": { + "$date": "2021-03-22T02:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ebe87ad2-cf8b-4778-9af2-5bf49f3fc003", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-22T02:58:02.000Z" + }, + "end": { + "$date": "2021-03-22T05:28:40.000Z" + }, + "events": [ + { + "uuid": "a45e1637-173e-4e60-a40e-dba6cc1571b0", + "start": { + "$date": "2021-03-22T02:58:02.000Z" + }, + "end": { + "$date": "2021-03-22T05:28:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e7b269a8-a78a-45e0-83a6-31a44e915285", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T02:58:39.000Z" + }, + "end": { + "$date": "2021-03-22T05:28:32.000Z" + }, + "events": [ + { + "uuid": "670ab627-7f66-47ce-b461-efad7d1b881b", + "start": { + "$date": "2021-03-22T02:58:39.000Z" + }, + "end": { + "$date": "2021-03-22T05:28:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "80242da8-13ce-4157-b15a-06f6fc835618", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-22T02:59:48.000Z" + }, + "end": { + "$date": "2021-03-22T05:26:52.000Z" + }, + "events": [ + { + "uuid": "cda4c2f9-53e9-486e-967d-b92a8e0b9f1a", + "start": { + "$date": "2021-03-22T02:59:48.000Z" + }, + "end": { + "$date": "2021-03-22T05:26:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b6494f8-05d2-4cda-b690-71425e61c02a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-22T03:27:25.000Z" + }, + "end": { + "$date": "2021-03-22T04:04:57.000Z" + }, + "events": [ + { + "uuid": "56a89837-cda3-4ab6-8383-1e09bf297eaa", + "start": { + "$date": "2021-03-22T03:27:25.000Z" + }, + "end": { + "$date": "2021-03-22T04:04:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3835fbb-e927-4c23-a70c-e94783b56095", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-22T04:10:27.000Z" + }, + "end": { + "$date": "2021-03-22T04:46:20.000Z" + }, + "events": [ + { + "uuid": "8e05e0cd-93e7-4a28-b570-fc6028d93d3a", + "start": { + "$date": "2021-03-22T04:10:27.000Z" + }, + "end": { + "$date": "2021-03-22T04:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82dc958f-9ae0-44e5-84dc-a2be3fe82da5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-22T04:29:31.000Z" + }, + "end": { + "$date": "2021-03-22T05:01:44.000Z" + }, + "events": [ + { + "uuid": "1ebc549e-f0ad-4edc-a6c7-80fc9bf4c628", + "start": { + "$date": "2021-03-22T04:29:31.000Z" + }, + "end": { + "$date": "2021-03-22T05:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9930b7ed-4901-44cc-9af7-5d31a909ff6a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-22T05:12:24.000Z" + }, + "end": { + "$date": "2021-03-22T05:40:30.000Z" + }, + "events": [ + { + "uuid": "6c56fd90-85f5-478c-aa5a-4437a6828447", + "start": { + "$date": "2021-03-22T05:12:24.000Z" + }, + "end": { + "$date": "2021-03-22T05:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c020b36-7a78-4d76-aceb-10756641bdc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-22T05:05:20.000Z" + }, + "end": { + "$date": "2021-03-22T05:34:07.000Z" + }, + "events": [ + { + "uuid": "3c7270df-3ed6-4762-ad13-3099d1748334", + "start": { + "$date": "2021-03-22T05:05:20.000Z" + }, + "end": { + "$date": "2021-03-22T05:34:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d0656a9d-26e3-413f-bf1d-4e0d9b0c6b3f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-22T05:27:59.000Z" + }, + "end": { + "$date": "2021-03-22T05:31:54.000Z" + }, + "events": [ + { + "uuid": "c5f084f5-74fd-4608-bf15-0e67c51c00c9", + "start": { + "$date": "2021-03-22T05:27:59.000Z" + }, + "end": { + "$date": "2021-03-22T05:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7058eaaf-3d2b-441e-90b5-30ece74181d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-22T15:13:25.000Z" + }, + "end": { + "$date": "2021-03-22T15:44:58.000Z" + }, + "events": [ + { + "uuid": "a9d6a04d-ba2b-42e7-9890-b0ab2f9cd536", + "start": { + "$date": "2021-03-22T15:13:25.000Z" + }, + "end": { + "$date": "2021-03-22T15:44:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b71459b-7f5b-4711-a512-11d586a1da9a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-22T15:48:49.000Z" + }, + "end": { + "$date": "2021-03-22T16:27:58.000Z" + }, + "events": [ + { + "uuid": "3910b2ee-af18-457f-8356-86360149a9f7", + "start": { + "$date": "2021-03-22T15:48:49.000Z" + }, + "end": { + "$date": "2021-03-22T16:27:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bc7f8350-0fcd-47f6-a4cd-de56e2dc7511", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T16:14:16.000Z" + }, + "end": { + "$date": "2021-03-22T16:14:53.000Z" + }, + "events": [ + { + "uuid": "3d82002c-484f-44ce-ad8f-c258c1810056", + "start": { + "$date": "2021-03-22T16:14:16.000Z" + }, + "end": { + "$date": "2021-03-22T16:14:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "05ec3702-238a-4c08-a506-24e72d87c78b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T16:15:02.000Z" + }, + "end": { + "$date": "2021-03-22T17:47:42.000Z" + }, + "events": [ + { + "uuid": "1a37a31e-1c96-4202-8065-0fd8a103a2cd", + "start": { + "$date": "2021-03-22T16:15:02.000Z" + }, + "end": { + "$date": "2021-03-22T17:06:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09dac46b-9317-4532-8966-ba562a77a54b", + "start": { + "$date": "2021-03-22T17:06:02.000Z" + }, + "end": { + "$date": "2021-03-22T17:07:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6a1854c1-697b-4810-bc19-76f17e13099d", + "start": { + "$date": "2021-03-22T17:07:02.000Z" + }, + "end": { + "$date": "2021-03-22T17:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9f514f35-993d-4714-9911-c98b6bdb24e3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-22T20:00:53.000Z" + }, + "end": { + "$date": "2021-03-22T20:08:04.000Z" + }, + "events": [ + { + "uuid": "c0215874-bf0b-4503-9001-05215c4eaa84", + "start": { + "$date": "2021-03-22T20:00:53.000Z" + }, + "end": { + "$date": "2021-03-22T20:40:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64721b67-0760-4b3c-96e2-bff38c119c89", + "start": { + "$date": "2021-03-22T20:40:53.000Z" + }, + "end": { + "$date": "2021-03-22T20:54:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bfa2bca9-ad87-4c6c-9118-1ede989a1539", + "start": { + "$date": "2021-03-22T20:54:53.000Z" + }, + "end": { + "$date": "2021-03-22T20:58:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab5845a1-bc72-4ee9-93c0-1649cf6164f5", + "start": { + "$date": "2021-03-22T20:58:53.000Z" + }, + "end": { + "$date": "2021-03-22T21:15:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7458bad6-885a-4711-bba8-9d3233c6841c", + "start": { + "$date": "2021-03-22T21:15:53.000Z" + }, + "end": { + "$date": "2021-03-22T21:33:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "393c5fd3-33d6-44f4-af4d-e91769efea0f", + "start": { + "$date": "2021-03-22T21:33:53.000Z" + }, + "end": { + "$date": "2021-03-22T22:01:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a6dfd874-ec5e-481d-a2db-ef2d850dafdb", + "start": { + "$date": "2021-03-22T22:01:53.000Z" + }, + "end": { + "$date": "2021-03-22T20:08:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3bc0817-2a02-4b82-aeaf-0439ac24a194", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-22T18:08:49.000Z" + }, + "end": { + "$date": "2021-03-22T18:42:31.000Z" + }, + "events": [ + { + "uuid": "4ea3e2f9-a222-4398-9d77-d746af635ee3", + "start": { + "$date": "2021-03-22T18:08:49.000Z" + }, + "end": { + "$date": "2021-03-22T18:42:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "815a963e-bb14-4fd7-a008-628f50e68692", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-22T18:30:03.000Z" + }, + "end": { + "$date": "2021-03-22T20:03:06.000Z" + }, + "events": [ + { + "uuid": "5ec12a76-f71e-4e73-bc5f-4994e84da66e", + "start": { + "$date": "2021-03-22T18:30:03.000Z" + }, + "end": { + "$date": "2021-03-22T20:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "224e488d-151e-4a86-872d-867be01b177c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-22T18:31:47.000Z" + }, + "end": { + "$date": "2021-03-22T18:59:58.000Z" + }, + "events": [ + { + "uuid": "39c6baab-14f1-443d-85e9-6154526b5b8b", + "start": { + "$date": "2021-03-22T18:31:47.000Z" + }, + "end": { + "$date": "2021-03-22T18:59:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb3021fb-4d56-47ef-b3b9-693cdc3d05da", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-22T18:58:48.000Z" + }, + "end": { + "$date": "2021-03-22T19:27:35.000Z" + }, + "events": [ + { + "uuid": "515fdf41-781c-472d-b413-210604cdf387", + "start": { + "$date": "2021-03-22T18:58:48.000Z" + }, + "end": { + "$date": "2021-03-22T19:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3b37846f-37b7-4523-a699-7c3371c73bc5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-22T19:01:59.000Z" + }, + "end": { + "$date": "2021-03-22T19:05:33.000Z" + }, + "events": [ + { + "uuid": "4524e87c-5135-4eef-b676-36bbd49a7255", + "start": { + "$date": "2021-03-22T19:01:59.000Z" + }, + "end": { + "$date": "2021-03-22T19:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ce3850d4-184b-4333-8758-7eb396390925", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T19:04:29.000Z" + }, + "end": { + "$date": "2021-03-22T19:22:34.000Z" + }, + "events": [ + { + "uuid": "b803c843-796b-423d-bc86-50ba8ff57a66", + "start": { + "$date": "2021-03-22T19:04:29.000Z" + }, + "end": { + "$date": "2021-03-22T19:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dd87ba02-905c-4041-a2da-7e83300a85f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-22T19:06:19.000Z" + }, + "end": { + "$date": "2021-03-22T19:59:23.000Z" + }, + "events": [ + { + "uuid": "b8bc4ed5-e802-4993-9278-f50186475935", + "start": { + "$date": "2021-03-22T19:06:19.000Z" + }, + "end": { + "$date": "2021-03-22T19:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9352754a-3492-4bf4-8c2f-75ac49f97016", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-22T19:34:53.000Z" + }, + "end": { + "$date": "2021-03-22T19:53:27.000Z" + }, + "events": [ + { + "uuid": "ebb62538-6214-4c65-83eb-683a357249ca", + "start": { + "$date": "2021-03-22T19:34:53.000Z" + }, + "end": { + "$date": "2021-03-22T19:53:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f23d52b-cddb-4259-8f4f-6588e81a2c77", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-22T20:09:27.000Z" + }, + "end": { + "$date": "2021-03-23T00:07:08.000Z" + }, + "events": [ + { + "uuid": "e580a1b2-998b-4bdc-867a-7e5893359d8e", + "start": { + "$date": "2021-03-22T20:09:27.000Z" + }, + "end": { + "$date": "2021-03-22T22:50:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "48c0041f-5db0-4774-b06f-ec9ac8aa4ed0", + "start": { + "$date": "2021-03-22T22:50:27.000Z" + }, + "end": { + "$date": "2021-03-22T23:28:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b80976a5-1838-49db-93ed-427a409d3bf5", + "start": { + "$date": "2021-03-22T23:28:27.000Z" + }, + "end": { + "$date": "2021-03-22T23:41:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8e21a04e-fe7d-474f-9301-a9d75308508b", + "start": { + "$date": "2021-03-22T23:41:27.000Z" + }, + "end": { + "$date": "2021-03-22T23:46:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b207dd3-1944-49d1-ac13-88564e3f87d6", + "start": { + "$date": "2021-03-22T23:46:27.000Z" + }, + "end": { + "$date": "2021-03-22T23:57:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dceee20f-7d0f-4f6b-ae7e-3c43cea965ed", + "start": { + "$date": "2021-03-22T23:57:27.000Z" + }, + "end": { + "$date": "2021-03-22T23:58:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b8f02e49-e120-4022-9eef-12c74145db52", + "start": { + "$date": "2021-03-22T23:58:27.000Z" + }, + "end": { + "$date": "2021-03-23T00:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "2417b4bf-4cd8-4469-8e9a-ee958652bcf0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-22T20:50:13.000Z" + }, + "end": { + "$date": "2021-03-22T21:08:29.000Z" + }, + "events": [ + { + "uuid": "8b49fc96-bd4e-4be5-a7d5-121ff4ae067f", + "start": { + "$date": "2021-03-22T20:50:13.000Z" + }, + "end": { + "$date": "2021-03-22T21:08:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "59f76a75-91a3-4f03-a97e-df9510e0b68e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-22T21:12:59.000Z" + }, + "end": { + "$date": "2021-03-22T22:52:11.000Z" + }, + "events": [ + { + "uuid": "20e06eeb-242f-4d03-a277-80f69f8af0c9", + "start": { + "$date": "2021-03-22T21:12:59.000Z" + }, + "end": { + "$date": "2021-03-22T22:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3904bc49-8e79-48db-a678-9383b9fc5960", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T21:59:37.000Z" + }, + "end": { + "$date": "2021-03-22T22:56:27.000Z" + }, + "events": [ + { + "uuid": "ccbe909b-d96c-4785-ad5b-50a2f790f31f", + "start": { + "$date": "2021-03-22T21:59:37.000Z" + }, + "end": { + "$date": "2021-03-22T22:56:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "52c5bfa5-d3e3-4048-ae0c-16d8939e2244", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-22T22:52:21.000Z" + }, + "end": { + "$date": "2021-03-22T22:54:46.000Z" + }, + "events": [ + { + "uuid": "f4d5da8e-2e33-493b-b8c2-72380727d3df", + "start": { + "$date": "2021-03-22T22:52:21.000Z" + }, + "end": { + "$date": "2021-03-22T22:54:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff24ab29-7971-41ea-9e0c-63da8857095a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-22T23:40:28.000Z" + }, + "end": { + "$date": "2021-03-22T23:43:03.000Z" + }, + "events": [ + { + "uuid": "9bd1d857-ca7c-401d-9977-127b54627674", + "start": { + "$date": "2021-03-22T23:40:28.000Z" + }, + "end": { + "$date": "2021-03-22T23:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "67df4b72-702c-4e8b-9f8f-34e95b540c67", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-23T00:21:00.000Z" + }, + "end": { + "$date": "2021-03-23T00:45:15.000Z" + }, + "events": [ + { + "uuid": "59ac2e2a-fa4d-4f20-abe2-ac611373cd18", + "start": { + "$date": "2021-03-23T00:21:00.000Z" + }, + "end": { + "$date": "2021-03-23T00:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", + "uuid": "873ecf95-a171-47f9-9d2a-92fe6c8072f5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-23T00:33:26.000Z" + }, + "end": { + "$date": "2021-03-23T00:37:39.000Z" + }, + "events": [ + { + "uuid": "d6b029ac-5229-4de6-94fa-b5081b0aa45e", + "start": { + "$date": "2021-03-23T00:33:26.000Z" + }, + "end": { + "$date": "2021-03-23T00:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "83ccb4f4-cec0-4c5e-ae75-059db5f039b0", + "uuid": "3ad94346-14dd-469f-917c-1dda54bd6220", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-23T00:38:06.000Z" + }, + "end": { + "$date": "2021-03-23T00:57:42.000Z" + }, + "events": [ + { + "uuid": "afff8f52-5fd6-4f65-be65-0a3774fe48cd", + "start": { + "$date": "2021-03-23T00:38:06.000Z" + }, + "end": { + "$date": "2021-03-23T00:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "32238787-81ba-47a4-89cf-5d8b0e2552c3", + "uuid": "09ec739e-c4f6-4bf8-84f8-d030f451b91c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-23T00:47:27.000Z" + }, + "end": { + "$date": "2021-03-23T01:04:24.000Z" + }, + "events": [ + { + "uuid": "11fad67e-8f10-4ab3-a3c7-ce56899bc8cb", + "start": { + "$date": "2021-03-23T00:47:27.000Z" + }, + "end": { + "$date": "2021-03-23T01:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7dc3af2-0d5e-422b-b46c-03ffc4d0ed1a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T00:52:07.000Z" + }, + "end": { + "$date": "2021-03-23T01:22:44.000Z" + }, + "events": [ + { + "uuid": "519f946f-0394-4fba-a7a8-2913c35c1191", + "start": { + "$date": "2021-03-23T00:52:07.000Z" + }, + "end": { + "$date": "2021-03-23T01:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4b2dedd7-4981-464b-b14b-e18a7b8ce88a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-23T01:04:33.000Z" + }, + "end": { + "$date": "2021-03-23T02:43:34.000Z" + }, + "events": [ + { + "uuid": "d3c12ca2-5150-4a5e-92c0-9a4cca034cf4", + "start": { + "$date": "2021-03-23T01:04:33.000Z" + }, + "end": { + "$date": "2021-03-23T02:43:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e2f98b4a-9fe2-43e1-9a75-2c47f0cc45f2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-23T01:08:41.000Z" + }, + "end": { + "$date": "2021-03-23T01:21:28.000Z" + }, + "events": [ + { + "uuid": "9babd1cc-1833-4442-8cda-e583aac99739", + "start": { + "$date": "2021-03-23T01:08:41.000Z" + }, + "end": { + "$date": "2021-03-23T01:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55fd44c9-a0e2-40df-a813-b8244124ef0d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T01:23:34.000Z" + }, + "end": { + "$date": "2021-03-23T01:57:06.000Z" + }, + "events": [ + { + "uuid": "bba27df1-2cb7-4edd-98d4-739f1f876664", + "start": { + "$date": "2021-03-23T01:23:34.000Z" + }, + "end": { + "$date": "2021-03-23T01:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "44c6e4bd-8544-4538-b4a9-265996634a09", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-23T01:27:35.000Z" + }, + "end": { + "$date": "2021-03-23T01:47:20.000Z" + }, + "events": [ + { + "uuid": "e551a92f-ad7c-459c-b9e8-09e1416b13b2", + "start": { + "$date": "2021-03-23T01:27:35.000Z" + }, + "end": { + "$date": "2021-03-23T01:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", + "uuid": "b751a359-1bce-445b-9190-5deb32fd0837", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-23T01:47:42.000Z" + }, + "end": { + "$date": "2021-03-23T05:30:24.000Z" + }, + "events": [ + { + "uuid": "8edb37da-5d5c-4af5-a152-e643d4189e6f", + "start": { + "$date": "2021-03-23T01:47:42.000Z" + }, + "end": { + "$date": "2021-03-23T05:30:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "70a89e6e-4910-4310-a216-05030a1099fa", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-23T02:10:23.000Z" + }, + "end": { + "$date": "2021-03-23T05:05:51.000Z" + }, + "events": [ + { + "uuid": "eadd3d32-fb40-4c11-af5e-4905c8677299", + "start": { + "$date": "2021-03-23T02:10:23.000Z" + }, + "end": { + "$date": "2021-03-23T05:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "56f4522e-b756-474f-b26d-268d3a8f5571", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-23T02:10:39.000Z" + }, + "end": { + "$date": "2021-03-23T05:05:01.000Z" + }, + "events": [ + { + "uuid": "21711cae-0233-4c72-a5f3-4dc115c43fdd", + "start": { + "$date": "2021-03-23T02:10:39.000Z" + }, + "end": { + "$date": "2021-03-23T05:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "de9e885a-0756-4d16-b98f-734ed1e72c94", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-23T02:34:12.000Z" + }, + "end": { + "$date": "2021-03-23T04:43:29.000Z" + }, + "events": [ + { + "uuid": "6bde88f0-bb57-4fc4-825c-a0aac4732c66", + "start": { + "$date": "2021-03-23T02:34:12.000Z" + }, + "end": { + "$date": "2021-03-23T04:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "be63d681-ef6d-4533-8786-c48ba28c09d2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-23T02:38:26.000Z" + }, + "end": { + "$date": "2021-03-23T05:36:47.000Z" + }, + "events": [ + { + "uuid": "b6ea4b9a-16d2-4cd5-a54b-ad0dc1b04251", + "start": { + "$date": "2021-03-23T02:38:26.000Z" + }, + "end": { + "$date": "2021-03-23T05:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "1bd4aaf8-e817-4823-ac5b-c8fe12a7c5e1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-23T02:44:48.000Z" + }, + "end": { + "$date": "2021-03-23T04:43:18.000Z" + }, + "events": [ + { + "uuid": "5725e1a6-73c5-4458-a7af-484df0ae440a", + "start": { + "$date": "2021-03-23T02:44:48.000Z" + }, + "end": { + "$date": "2021-03-23T04:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c80d86c7-2603-41ae-a056-b3a1d7753e90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T03:17:34.000Z" + }, + "end": { + "$date": "2021-03-23T03:57:16.000Z" + }, + "events": [ + { + "uuid": "1d51acad-886d-40ea-883a-0262ef358c95", + "start": { + "$date": "2021-03-23T03:17:34.000Z" + }, + "end": { + "$date": "2021-03-23T03:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae79fdb6-df43-4759-ae94-638209d34b82", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-23T04:10:11.000Z" + }, + "end": { + "$date": "2021-03-23T04:46:29.000Z" + }, + "events": [ + { + "uuid": "5040d1d1-a388-49b2-a7ef-fea250b4b518", + "start": { + "$date": "2021-03-23T04:10:11.000Z" + }, + "end": { + "$date": "2021-03-23T04:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "17be2d7f-2036-437f-8d3a-63a7c4d1c103", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-23T05:12:11.000Z" + }, + "end": { + "$date": "2021-03-23T06:40:30.000Z" + }, + "events": [ + { + "uuid": "ac42256b-320c-479c-947e-dd991b13b4b7", + "start": { + "$date": "2021-03-23T05:12:11.000Z" + }, + "end": { + "$date": "2021-03-23T06:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "ef4d8550-0b24-4308-861a-25aafa0e40cc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-23T15:02:33.000Z" + }, + "end": { + "$date": "2021-03-23T15:03:38.000Z" + }, + "events": [ + { + "uuid": "b05762ae-db0b-401d-b112-a3eb7663d81e", + "start": { + "$date": "2021-03-23T15:02:33.000Z" + }, + "end": { + "$date": "2021-03-23T15:03:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "33d6c06f-4ecd-4549-9f8c-3f6af98f6d31", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-23T15:04:08.000Z" + }, + "end": { + "$date": "2021-03-23T17:47:56.000Z" + }, + "events": [ + { + "uuid": "81e430b1-c02e-4ad6-ba0c-c924f3ccf366", + "start": { + "$date": "2021-03-23T15:04:08.000Z" + }, + "end": { + "$date": "2021-03-23T17:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c98ed8bf-1e90-4028-a23e-920ec63b3f59", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T15:29:05.000Z" + }, + "end": { + "$date": "2021-03-23T16:01:12.000Z" + }, + "events": [ + { + "uuid": "eee3b69b-b7b2-43d5-9012-ece725861c6d", + "start": { + "$date": "2021-03-23T15:29:05.000Z" + }, + "end": { + "$date": "2021-03-23T16:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d75311b-7f2f-488d-ba95-e8bd7e827676", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T17:13:26.000Z" + }, + "end": { + "$date": "2021-03-23T17:46:08.000Z" + }, + "events": [ + { + "uuid": "172c3f23-26ce-494f-b50f-88c8581340d8", + "start": { + "$date": "2021-03-23T17:13:26.000Z" + }, + "end": { + "$date": "2021-03-23T18:12:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f86dc7e9-131b-44bd-827e-ee7d4036e1f2", + "start": { + "$date": "2021-03-23T18:12:26.000Z" + }, + "end": { + "$date": "2021-03-23T18:15:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "01ef90c5-cd66-4963-b47a-522a33957583", + "start": { + "$date": "2021-03-23T18:15:26.000Z" + }, + "end": { + "$date": "2021-03-23T17:46:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "578f5680-8aff-40fa-b8ed-1a536d4e5517", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T17:47:49.000Z" + }, + "end": { + "$date": "2021-03-23T18:59:09.000Z" + }, + "events": [ + { + "uuid": "a3aa7778-89b2-45fe-8e9f-73ed58bb9e5a", + "start": { + "$date": "2021-03-23T17:47:49.000Z" + }, + "end": { + "$date": "2021-03-23T18:52:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d1e7f49a-9112-43d2-bbf3-871b1ba464c9", + "start": { + "$date": "2021-03-23T18:52:49.000Z" + }, + "end": { + "$date": "2021-03-23T18:59:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70c624de-91e2-4405-9edb-a354b0990be7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T20:45:21.000Z" + }, + "end": { + "$date": "2021-03-23T21:20:47.000Z" + }, + "events": [ + { + "uuid": "a281c666-89b6-4126-a2b8-ef505406df6c", + "start": { + "$date": "2021-03-23T20:45:21.000Z" + }, + "end": { + "$date": "2021-03-23T21:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7b52a5e3-d5b2-4c95-96fb-6d70f0459528", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-23T21:54:03.000Z" + }, + "end": { + "$date": "2021-03-23T22:14:20.000Z" + }, + "events": [ + { + "uuid": "d8d21fe7-5558-44d3-bc24-65ff4a499d84", + "start": { + "$date": "2021-03-23T21:54:03.000Z" + }, + "end": { + "$date": "2021-03-23T22:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4820957-f013-46f6-b1f0-05792d18cdd1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T22:15:34.000Z" + }, + "end": { + "$date": "2021-03-23T22:51:16.000Z" + }, + "events": [ + { + "uuid": "6e671e21-cc6a-4b74-b70c-d08db54ad44d", + "start": { + "$date": "2021-03-23T22:15:34.000Z" + }, + "end": { + "$date": "2021-03-23T22:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4beaa686-ba34-4a19-a747-6f06104c32e7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T22:54:56.000Z" + }, + "end": { + "$date": "2021-03-23T23:24:38.000Z" + }, + "events": [ + { + "uuid": "0e2d7381-c96c-47a8-bc94-56d5f4dee274", + "start": { + "$date": "2021-03-23T22:54:56.000Z" + }, + "end": { + "$date": "2021-03-23T23:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f4f6be77-24b8-4184-b559-e23f538b90bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-23T23:12:32.000Z" + }, + "end": { + "$date": "2021-03-24T01:09:55.000Z" + }, + "events": [ + { + "uuid": "094298ad-7e3d-43e7-8796-dd19d2ea1649", + "start": { + "$date": "2021-03-23T23:12:32.000Z" + }, + "end": { + "$date": "2021-03-24T01:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dfd17a1-df4c-44f9-9ae6-b29d07bfc6a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-23T23:31:19.000Z" + }, + "end": { + "$date": "2021-03-24T00:02:56.000Z" + }, + "events": [ + { + "uuid": "9d7b4017-073e-4a2d-8125-4a990d4f8541", + "start": { + "$date": "2021-03-23T23:31:19.000Z" + }, + "end": { + "$date": "2021-03-24T00:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a62faddb-1714-4e79-8a5e-820b2ae6dfa4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-23T23:37:19.000Z" + }, + "end": { + "$date": "2021-03-23T23:45:05.000Z" + }, + "events": [ + { + "uuid": "4f965927-0067-4c1c-9de7-9ea1e7ec29e0", + "start": { + "$date": "2021-03-23T23:37:19.000Z" + }, + "end": { + "$date": "2021-03-23T23:45:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "23f75767-2e54-415a-ad7f-98814264f5ad", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-24T04:24:32.000Z" + }, + "end": { + "$date": "2021-03-24T04:25:13.000Z" + }, + "events": [ + { + "uuid": "6d132a84-82e6-488f-a404-240a4b71a032", + "start": { + "$date": "2021-03-24T04:24:32.000Z" + }, + "end": { + "$date": "2021-03-24T04:27:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3d83664-4614-489f-abde-bb729c2336b5", + "start": { + "$date": "2021-03-24T04:27:32.000Z" + }, + "end": { + "$date": "2021-03-24T04:52:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8253af6f-6359-4bb0-b1e8-275d1b443384", + "start": { + "$date": "2021-03-24T04:52:32.000Z" + }, + "end": { + "$date": "2021-03-24T05:11:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "607de37a-4ff1-4d68-b865-993b49717375", + "start": { + "$date": "2021-03-24T05:11:32.000Z" + }, + "end": { + "$date": "2021-03-24T05:12:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c3434d2f-feb0-4a48-aab1-5c5b44779a84", + "start": { + "$date": "2021-03-24T05:12:32.000Z" + }, + "end": { + "$date": "2021-03-24T04:25:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a86bd01d-6ffa-4c29-95e2-b1ff0ebb58fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T02:06:55.000Z" + }, + "end": { + "$date": "2021-03-24T02:35:41.000Z" + }, + "events": [ + { + "uuid": "449a84ec-41fc-4e27-aa12-6d228db8a4f5", + "start": { + "$date": "2021-03-24T02:06:55.000Z" + }, + "end": { + "$date": "2021-03-24T02:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "03b4d91a-0c2d-4912-b8c9-4fe60b39268d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-24T02:09:19.000Z" + }, + "end": { + "$date": "2021-03-24T02:48:03.000Z" + }, + "events": [ + { + "uuid": "779e87dd-a2bd-4640-9811-83bc83921a6a", + "start": { + "$date": "2021-03-24T02:09:19.000Z" + }, + "end": { + "$date": "2021-03-24T02:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "47083a03-80ec-48ae-a292-ffa24bba2eb9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-24T02:19:11.000Z" + }, + "end": { + "$date": "2021-03-24T06:32:51.000Z" + }, + "events": [ + { + "uuid": "3c1298fd-6f1b-4f44-93c6-48056e943822", + "start": { + "$date": "2021-03-24T02:19:11.000Z" + }, + "end": { + "$date": "2021-03-24T06:32:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "74341c1c-cdaf-4261-9697-6d6369d486f6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-24T02:34:52.000Z" + }, + "end": { + "$date": "2021-03-24T04:35:30.000Z" + }, + "events": [ + { + "uuid": "555634f2-472c-4c13-a0f7-19d1784f2a97", + "start": { + "$date": "2021-03-24T02:34:52.000Z" + }, + "end": { + "$date": "2021-03-24T04:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebf88cfe-defa-46e2-81c7-b9e4ac4a3e1b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T02:37:41.000Z" + }, + "end": { + "$date": "2021-03-24T03:00:16.000Z" + }, + "events": [ + { + "uuid": "b1c4cf25-15b5-44b4-84e0-6dc483212276", + "start": { + "$date": "2021-03-24T02:37:41.000Z" + }, + "end": { + "$date": "2021-03-24T03:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cc63d051-7643-42e0-871c-5cbc0195bd52", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-24T02:48:23.000Z" + }, + "end": { + "$date": "2021-03-24T03:34:22.000Z" + }, + "events": [ + { + "uuid": "51844c1a-40a9-4521-b7e9-e454fd561829", + "start": { + "$date": "2021-03-24T02:48:23.000Z" + }, + "end": { + "$date": "2021-03-24T03:34:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "533c8234-a233-4247-acc0-c0317abadda2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-24T02:54:08.000Z" + }, + "end": { + "$date": "2021-03-24T05:23:52.000Z" + }, + "events": [ + { + "uuid": "084494ac-06a2-40e1-96f8-d2d5d1087064", + "start": { + "$date": "2021-03-24T02:54:08.000Z" + }, + "end": { + "$date": "2021-03-24T05:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bab4ad03-8a1e-418f-ab35-7d739b9f1115", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-24T03:03:46.000Z" + }, + "end": { + "$date": "2021-03-24T03:57:57.000Z" + }, + "events": [ + { + "uuid": "2e15079d-d503-4f2f-83b0-1125436cb422", + "start": { + "$date": "2021-03-24T03:03:46.000Z" + }, + "end": { + "$date": "2021-03-24T03:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "614a7e98-d37e-4325-8692-ae7b865f0f65", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T03:07:56.000Z" + }, + "end": { + "$date": "2021-03-24T04:14:08.000Z" + }, + "events": [ + { + "uuid": "b5acdfe9-26be-4503-9c3c-e47bbc4b46bb", + "start": { + "$date": "2021-03-24T03:07:56.000Z" + }, + "end": { + "$date": "2021-03-24T04:14:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9f49d327-a99b-4f24-b217-1eb741056a31", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-24T03:14:14.000Z" + }, + "end": { + "$date": "2021-03-24T04:14:25.000Z" + }, + "events": [ + { + "uuid": "58ec7505-4c5c-4f5b-a9cd-a0fd2a2648fe", + "start": { + "$date": "2021-03-24T03:14:14.000Z" + }, + "end": { + "$date": "2021-03-24T04:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "693c19b0-2fbb-4e14-9510-1b307fa8ee31", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-24T03:35:21.000Z" + }, + "end": { + "$date": "2021-03-24T05:01:43.000Z" + }, + "events": [ + { + "uuid": "0ca124e4-16de-49e1-b02a-a8927b5db078", + "start": { + "$date": "2021-03-24T03:35:21.000Z" + }, + "end": { + "$date": "2021-03-24T05:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "902c1a7e-5782-4607-80c9-2c383292be0e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-24T03:35:48.000Z" + }, + "end": { + "$date": "2021-03-24T05:01:28.000Z" + }, + "events": [ + { + "uuid": "3aa41b09-c060-431c-aca3-5dfbfbaeb80d", + "start": { + "$date": "2021-03-24T03:35:48.000Z" + }, + "end": { + "$date": "2021-03-24T05:01:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "316079d3-c626-420d-bce4-2784b9bf2c48", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-24T04:08:48.000Z" + }, + "end": { + "$date": "2021-03-24T04:27:33.000Z" + }, + "events": [ + { + "uuid": "7ab6654f-a12f-47b5-ac01-4a4378e832b5", + "start": { + "$date": "2021-03-24T04:08:48.000Z" + }, + "end": { + "$date": "2021-03-24T04:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0f07e10e-0316-490c-95b3-57dc1be8995b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-24T14:20:19.000Z" + }, + "end": { + "$date": "2021-03-24T15:05:55.000Z" + }, + "events": [ + { + "uuid": "0f2a7b79-492d-426b-beb9-b68e5c37df5f", + "start": { + "$date": "2021-03-24T14:20:19.000Z" + }, + "end": { + "$date": "2021-03-24T15:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d7200db-c6df-449a-bbd1-91409d7b9b30", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T16:07:21.000Z" + }, + "end": { + "$date": "2021-03-24T16:41:03.000Z" + }, + "events": [ + { + "uuid": "e5a3be79-56d9-449a-9313-8372e05559a9", + "start": { + "$date": "2021-03-24T16:07:21.000Z" + }, + "end": { + "$date": "2021-03-24T16:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7dcfe911-ed2e-4cee-b7d9-9ce6e6e24d7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T16:44:08.000Z" + }, + "end": { + "$date": "2021-03-24T17:06:05.000Z" + }, + "events": [ + { + "uuid": "913a5ac3-6932-4f08-8764-a3801e30a50b", + "start": { + "$date": "2021-03-24T16:44:08.000Z" + }, + "end": { + "$date": "2021-03-24T17:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31b0bf86-8fb5-42c3-9ba2-042cdec7c5d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T17:10:40.000Z" + }, + "end": { + "$date": "2021-03-24T17:43:43.000Z" + }, + "events": [ + { + "uuid": "0e97263b-60ab-400c-bd6c-5e1dda8ceb08", + "start": { + "$date": "2021-03-24T17:10:40.000Z" + }, + "end": { + "$date": "2021-03-24T17:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fdd9934-f131-4f2d-abb4-bbff1971586e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-24T23:16:06.000Z" + }, + "end": { + "$date": "2021-03-25T00:05:27.000Z" + }, + "events": [ + { + "uuid": "a5d4e645-d2fa-4f48-88db-f132fcbfb3ca", + "start": { + "$date": "2021-03-24T23:16:06.000Z" + }, + "end": { + "$date": "2021-03-25T00:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c7460371-14af-49ed-9f50-f9b3794ede52", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-25T00:01:16.000Z" + }, + "end": { + "$date": "2021-03-25T02:48:34.000Z" + }, + "events": [ + { + "uuid": "21b6399c-9bc9-4c39-a3e9-19826ec5ba10", + "start": { + "$date": "2021-03-25T00:01:16.000Z" + }, + "end": { + "$date": "2021-03-25T02:48:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da968de2-47ed-479d-8d50-5b18ac185b70", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T01:36:13.000Z" + }, + "end": { + "$date": "2021-03-25T02:11:29.000Z" + }, + "events": [ + { + "uuid": "3d06bef0-2f43-4aab-92c3-f6c7434eec00", + "start": { + "$date": "2021-03-25T01:36:13.000Z" + }, + "end": { + "$date": "2021-03-25T02:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "81f0a748-a619-48f5-bace-d420f7549b14", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-25T02:08:22.000Z" + }, + "end": { + "$date": "2021-03-25T02:18:32.000Z" + }, + "events": [ + { + "uuid": "3f3d515f-53b4-4b3d-ba6b-21915f5ff99e", + "start": { + "$date": "2021-03-25T02:08:22.000Z" + }, + "end": { + "$date": "2021-03-25T02:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4aa6c285-e03c-45f5-9b36-4e1f1be5e0ec", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-25T02:16:41.000Z" + }, + "end": { + "$date": "2021-03-25T03:45:09.000Z" + }, + "events": [ + { + "uuid": "3e5dd539-0f57-41d5-9849-5928a335558d", + "start": { + "$date": "2021-03-25T02:16:41.000Z" + }, + "end": { + "$date": "2021-03-25T03:45:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3bcead2f-7023-47d5-ad6d-75311873731b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-25T02:18:48.000Z" + }, + "end": { + "$date": "2021-03-25T04:08:30.000Z" + }, + "events": [ + { + "uuid": "98bbd22c-de15-4938-9427-0b0d39a77c21", + "start": { + "$date": "2021-03-25T02:18:48.000Z" + }, + "end": { + "$date": "2021-03-25T04:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2becd822-ac20-4ce8-ab57-f16922c771d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T02:42:47.000Z" + }, + "end": { + "$date": "2021-03-25T03:20:44.000Z" + }, + "events": [ + { + "uuid": "b04f0a85-d18d-48de-9342-81b585fda85a", + "start": { + "$date": "2021-03-25T02:42:47.000Z" + }, + "end": { + "$date": "2021-03-25T03:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "74b85688-4195-4266-9c98-1cb280da8c55", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-25T02:49:07.000Z" + }, + "end": { + "$date": "2021-03-25T05:50:00.000Z" + }, + "events": [ + { + "uuid": "51c3e7f1-6874-4ad2-aeb4-43b0f1fdcf01", + "start": { + "$date": "2021-03-25T02:49:07.000Z" + }, + "end": { + "$date": "2021-03-25T05:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8ce32ecf-8e45-4499-acc0-ab6ccee49a88", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-25T03:10:06.000Z" + }, + "end": { + "$date": "2021-03-25T04:14:07.000Z" + }, + "events": [ + { + "uuid": "baa95e71-55eb-4b64-b1cc-04d575a32ece", + "start": { + "$date": "2021-03-25T03:10:06.000Z" + }, + "end": { + "$date": "2021-03-25T04:14:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bba1270-4c69-4c4f-bff9-7b578e1201cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T03:21:44.000Z" + }, + "end": { + "$date": "2021-03-25T03:51:15.000Z" + }, + "events": [ + { + "uuid": "10e17f49-e4be-43b3-a665-def4a904151a", + "start": { + "$date": "2021-03-25T03:21:44.000Z" + }, + "end": { + "$date": "2021-03-25T03:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1e265439-d26e-4707-8cc5-ab0be8f4d3f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-25T03:55:21.000Z" + }, + "end": { + "$date": "2021-03-25T04:07:42.000Z" + }, + "events": [ + { + "uuid": "c218b0b3-4295-422d-a6f5-6a4ff1416fe3", + "start": { + "$date": "2021-03-25T03:55:21.000Z" + }, + "end": { + "$date": "2021-03-25T04:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "66d9e29d-7469-4b13-b437-359e81d14f6b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-25T04:00:00.000Z" + }, + "end": { + "$date": "2021-03-25T04:27:08.000Z" + }, + "events": [ + { + "uuid": "2ec6e85f-7300-477d-835f-624f0405a752", + "start": { + "$date": "2021-03-25T04:00:00.000Z" + }, + "end": { + "$date": "2021-03-25T04:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed8c7b2e-0780-4aa1-a99e-9d6691bc70bf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-25T04:08:30.000Z" + }, + "end": { + "$date": "2021-03-25T04:36:09.000Z" + }, + "events": [ + { + "uuid": "92009682-c113-4a13-9af6-62b2e5313106", + "start": { + "$date": "2021-03-25T04:08:30.000Z" + }, + "end": { + "$date": "2021-03-25T04:36:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ac7ce64-2bab-435b-afac-d5c07d402b3e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-25T04:06:30.000Z" + }, + "end": { + "$date": "2021-03-25T05:08:24.000Z" + }, + "events": [ + { + "uuid": "2e6493ff-0374-427b-80ef-c8ce7387389f", + "start": { + "$date": "2021-03-25T04:06:30.000Z" + }, + "end": { + "$date": "2021-03-25T05:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "6919e58d-3a39-4ef5-8f48-a64eb28b6a2f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-25T04:08:41.000Z" + }, + "end": { + "$date": "2021-03-25T05:14:56.000Z" + }, + "events": [ + { + "uuid": "319b02ee-80bc-49b1-8812-c471b8d08e2e", + "start": { + "$date": "2021-03-25T04:08:41.000Z" + }, + "end": { + "$date": "2021-03-25T05:14:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "1de002a8-e605-4f73-b446-33465f789445", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-25T04:08:52.000Z" + }, + "end": { + "$date": "2021-03-25T05:14:45.000Z" + }, + "events": [ + { + "uuid": "96520d83-ae2a-47f3-b44d-1ea66dd9cadc", + "start": { + "$date": "2021-03-25T04:08:52.000Z" + }, + "end": { + "$date": "2021-03-25T05:14:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5c1abf02-05d6-4f30-8dde-3134a61afb38", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-25T04:18:39.000Z" + }, + "end": { + "$date": "2021-03-25T04:21:09.000Z" + }, + "events": [ + { + "uuid": "f881b42a-092f-440b-802e-8c4a2bb006a2", + "start": { + "$date": "2021-03-25T04:18:39.000Z" + }, + "end": { + "$date": "2021-03-25T04:21:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80d5f417-7a68-4183-8a93-ae91d469279d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-25T04:46:51.000Z" + }, + "end": { + "$date": "2021-03-25T05:21:41.000Z" + }, + "events": [ + { + "uuid": "47851d41-63f2-42a0-b6c3-6e1bcefa71e8", + "start": { + "$date": "2021-03-25T04:46:51.000Z" + }, + "end": { + "$date": "2021-03-25T05:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86df489f-6a7f-4ae7-a243-280d2c1b9bc3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T15:25:59.000Z" + }, + "end": { + "$date": "2021-03-25T15:59:31.000Z" + }, + "events": [ + { + "uuid": "1e5c16f2-d3a2-4aeb-8523-eac4fda7ff7c", + "start": { + "$date": "2021-03-25T15:25:59.000Z" + }, + "end": { + "$date": "2021-03-25T15:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee5f3d73-5c6a-4b80-aa69-a7a6a1184911", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T17:51:32.000Z" + }, + "end": { + "$date": "2021-03-25T18:15:22.000Z" + }, + "events": [ + { + "uuid": "9644626d-1361-4070-b4be-27ef266cd7c6", + "start": { + "$date": "2021-03-25T17:51:32.000Z" + }, + "end": { + "$date": "2021-03-25T18:15:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b2b36ee-4234-405d-ab5f-0da496b03d73", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T20:04:48.000Z" + }, + "end": { + "$date": "2021-03-25T20:38:19.000Z" + }, + "events": [ + { + "uuid": "7ce3df9c-abd1-460f-80a1-5b0e28090bf8", + "start": { + "$date": "2021-03-25T20:04:48.000Z" + }, + "end": { + "$date": "2021-03-25T20:38:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "75a89fd9-515b-41c7-9887-71f7fa28f765", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-25T20:11:47.000Z" + }, + "end": { + "$date": "2021-03-25T21:23:03.000Z" + }, + "events": [ + { + "uuid": "3b7a64f2-7283-44db-a5ea-c8c3a6babc57", + "start": { + "$date": "2021-03-25T20:11:47.000Z" + }, + "end": { + "$date": "2021-03-25T21:23:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a391153b-bb51-4c1a-b0c3-a556459af91a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T21:58:52.000Z" + }, + "end": { + "$date": "2021-03-25T22:02:16.000Z" + }, + "events": [ + { + "uuid": "ae8896e8-11cc-4b53-b230-c5bf27f3f876", + "start": { + "$date": "2021-03-25T21:58:52.000Z" + }, + "end": { + "$date": "2021-03-25T22:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fbed8fa1-5a07-49f1-affa-ef83d822baf1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-25T22:03:52.000Z" + }, + "end": { + "$date": "2021-03-25T23:07:04.000Z" + }, + "events": [ + { + "uuid": "0e8fc342-d739-4444-9bf3-2eb3274c4657", + "start": { + "$date": "2021-03-25T22:03:52.000Z" + }, + "end": { + "$date": "2021-03-25T23:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "c28c60a9-2e99-4844-8425-542d01aaf5e0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-25T00:21:33.000Z" + }, + "end": { + "$date": "2021-03-26T00:09:58.000Z" + }, + "events": [ + { + "uuid": "1c86cd19-4eb5-4513-8454-b1279ad528ad", + "start": { + "$date": "2021-03-25T00:21:33.000Z" + }, + "end": { + "$date": "2021-03-26T00:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "36120a00-0e29-4074-acfb-20f6564ca497", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-25T23:48:10.000Z" + }, + "end": { + "$date": "2021-03-25T23:54:31.000Z" + }, + "events": [ + { + "uuid": "0af701a6-b392-487c-9e70-3b5a3f7d5721", + "start": { + "$date": "2021-03-25T23:48:10.000Z" + }, + "end": { + "$date": "2021-03-25T23:54:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "85b0c299-699f-452c-801e-12649fb1778b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-26T00:10:02.000Z" + }, + "end": { + "$date": "2021-03-26T03:06:16.000Z" + }, + "events": [ + { + "uuid": "8330e3c5-f720-44d6-9b01-cf0492c1cc38", + "start": { + "$date": "2021-03-26T00:10:02.000Z" + }, + "end": { + "$date": "2021-03-26T01:25:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb2c48d1-f6d1-4eea-861d-7998b5528dfa", + "start": { + "$date": "2021-03-26T01:25:02.000Z" + }, + "end": { + "$date": "2021-03-26T01:30:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04245cf7-ebb5-4271-8ee2-9bee595e9209", + "start": { + "$date": "2021-03-26T01:30:02.000Z" + }, + "end": { + "$date": "2021-03-26T01:46:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60de6b43-353a-4be5-aeee-05f8f405d29b", + "start": { + "$date": "2021-03-26T01:46:02.000Z" + }, + "end": { + "$date": "2021-03-26T01:59:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6ab573c4-1b4b-430d-99ff-937509bf46f2", + "start": { + "$date": "2021-03-26T01:59:02.000Z" + }, + "end": { + "$date": "2021-03-26T02:41:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "115890ee-d5c6-431b-bcdf-1170ec4c5ac3", + "start": { + "$date": "2021-03-26T02:41:02.000Z" + }, + "end": { + "$date": "2021-03-26T02:59:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2054592-6f16-45e0-9c7e-88b8518c6e24", + "start": { + "$date": "2021-03-26T02:59:02.000Z" + }, + "end": { + "$date": "2021-03-26T03:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c55756-ae07-4771-86d2-bba19006baa0", + "uuid": "0c42345b-8b6f-4871-ae48-526b93afdf57", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T00:19:42.000Z" + }, + "end": { + "$date": "2021-03-26T00:27:49.000Z" + }, + "events": [ + { + "uuid": "051c8338-e6bf-4913-ac6e-918bac490eaf", + "start": { + "$date": "2021-03-26T00:19:42.000Z" + }, + "end": { + "$date": "2021-03-26T00:27:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "430da0f4-5fe3-41bf-a741-50c3c0226075", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T00:27:58.000Z" + }, + "end": { + "$date": "2021-03-26T00:30:24.000Z" + }, + "events": [ + { + "uuid": "9adf04f8-cf9b-4a6a-836f-8fc3731f534c", + "start": { + "$date": "2021-03-26T00:27:58.000Z" + }, + "end": { + "$date": "2021-03-26T00:30:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d3de5868-7f0e-4c89-bc6e-426485e44e22", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T00:30:38.000Z" + }, + "end": { + "$date": "2021-03-26T02:03:19.000Z" + }, + "events": [ + { + "uuid": "d190fa62-c5ac-4f22-bfa4-19a0a2b4b8ea", + "start": { + "$date": "2021-03-26T00:30:38.000Z" + }, + "end": { + "$date": "2021-03-26T02:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a62e253c-f1d0-41b9-887e-6dd01bddf3b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-26T02:46:47.000Z" + }, + "end": { + "$date": "2021-03-26T04:17:08.000Z" + }, + "events": [ + { + "uuid": "aea392d2-b862-4353-b426-6329b696c6f6", + "start": { + "$date": "2021-03-26T02:46:47.000Z" + }, + "end": { + "$date": "2021-03-26T04:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7a67de66-d73e-4ee4-885a-92ab32944d26", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-26T02:47:05.000Z" + }, + "end": { + "$date": "2021-03-26T04:06:17.000Z" + }, + "events": [ + { + "uuid": "440c36bb-8018-48df-a401-6d3b5d055dc7", + "start": { + "$date": "2021-03-26T02:47:05.000Z" + }, + "end": { + "$date": "2021-03-26T04:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "45eb0a86-37b2-4156-84f2-1bd1e43ae444", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-26T03:00:36.000Z" + }, + "end": { + "$date": "2021-03-26T03:01:51.000Z" + }, + "events": [ + { + "uuid": "3d63e1c3-f269-4159-8e9b-23c6a8710836", + "start": { + "$date": "2021-03-26T03:00:36.000Z" + }, + "end": { + "$date": "2021-03-26T03:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f85632b6-12af-4181-833d-ad6f40990279", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-26T03:10:13.000Z" + }, + "end": { + "$date": "2021-03-26T06:14:24.000Z" + }, + "events": [ + { + "uuid": "14afa01f-c854-4ddf-acb9-6c3c3b6702a6", + "start": { + "$date": "2021-03-26T03:10:13.000Z" + }, + "end": { + "$date": "2021-03-26T06:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "25209206-9ffe-4389-b672-506bdb1eb356", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-26T03:10:44.000Z" + }, + "end": { + "$date": "2021-03-26T05:08:43.000Z" + }, + "events": [ + { + "uuid": "155e767e-28bb-48f7-9937-754d6e840d7e", + "start": { + "$date": "2021-03-26T03:10:44.000Z" + }, + "end": { + "$date": "2021-03-26T05:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1481ae84-83b9-4ea0-9274-96a5be4b8ea4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-26T03:12:42.000Z" + }, + "end": { + "$date": "2021-03-26T04:17:11.000Z" + }, + "events": [ + { + "uuid": "6d2f68cf-19ab-493a-8e39-fcccb7c4c62e", + "start": { + "$date": "2021-03-26T03:12:42.000Z" + }, + "end": { + "$date": "2021-03-26T04:06:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "38310c79-f671-4fea-920e-f15c9b484fb3", + "start": { + "$date": "2021-03-26T04:06:42.000Z" + }, + "end": { + "$date": "2021-03-26T04:13:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e554bb1-571a-4cc2-a768-2e9f66211708", + "start": { + "$date": "2021-03-26T04:13:42.000Z" + }, + "end": { + "$date": "2021-03-26T04:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "edd9488f-18f2-4dd1-a48f-80ee90507509", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T03:34:09.000Z" + }, + "end": { + "$date": "2021-03-26T06:06:21.000Z" + }, + "events": [ + { + "uuid": "1b9e2547-e6ef-4d84-a6e4-bfc6c98645b0", + "start": { + "$date": "2021-03-26T03:34:09.000Z" + }, + "end": { + "$date": "2021-03-26T06:06:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "26836d32-a1a0-4e73-b997-40509cd68d71", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-26T03:49:23.000Z" + }, + "end": { + "$date": "2021-03-26T04:34:34.000Z" + }, + "events": [ + { + "uuid": "e57f01c5-9162-4868-b267-4634f09444ff", + "start": { + "$date": "2021-03-26T03:49:23.000Z" + }, + "end": { + "$date": "2021-03-26T04:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c3bea16-5862-4a4f-bd08-9a248b2b5b66", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-26T04:06:20.000Z" + }, + "end": { + "$date": "2021-03-26T04:28:42.000Z" + }, + "events": [ + { + "uuid": "fb5b6735-ef01-45fd-8bc1-e8ea52116e36", + "start": { + "$date": "2021-03-26T04:06:20.000Z" + }, + "end": { + "$date": "2021-03-26T04:28:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5766c40c-9846-4424-9069-a2f1f015dd7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-26T04:08:08.000Z" + }, + "end": { + "$date": "2021-03-26T04:51:53.000Z" + }, + "events": [ + { + "uuid": "c30ce2c7-8d48-42d1-b17f-b3e4a0511165", + "start": { + "$date": "2021-03-26T04:08:08.000Z" + }, + "end": { + "$date": "2021-03-26T04:51:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a107fa4b-9f2b-4c67-93e1-3cf573ae3f69", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-26T04:34:26.000Z" + }, + "end": { + "$date": "2021-03-26T05:09:36.000Z" + }, + "events": [ + { + "uuid": "a40ddf7a-568a-42db-8daf-c9a3aad1c7fa", + "start": { + "$date": "2021-03-26T04:34:26.000Z" + }, + "end": { + "$date": "2021-03-26T05:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "957f4179-8396-4313-8651-e422e761a326", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-26T04:35:39.000Z" + }, + "end": { + "$date": "2021-03-26T05:08:41.000Z" + }, + "events": [ + { + "uuid": "ca3dd50c-cae2-47d9-a875-ec104f30f7e2", + "start": { + "$date": "2021-03-26T04:35:39.000Z" + }, + "end": { + "$date": "2021-03-26T05:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2f1e9315-bd4a-439c-b51f-d6024c72e022", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-26T04:45:00.000Z" + }, + "end": { + "$date": "2021-03-26T06:02:16.000Z" + }, + "events": [ + { + "uuid": "3ebef7ec-6a71-491d-a8a6-3a166af97825", + "start": { + "$date": "2021-03-26T04:45:00.000Z" + }, + "end": { + "$date": "2021-03-26T06:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c11c2afb-83ad-4c33-8ab8-d9522a047b71", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-26T15:12:59.000Z" + }, + "end": { + "$date": "2021-03-26T17:07:28.000Z" + }, + "events": [ + { + "uuid": "3a05d4c4-3b9f-4855-acb3-9d4a1a74849c", + "start": { + "$date": "2021-03-26T15:12:59.000Z" + }, + "end": { + "$date": "2021-03-26T17:07:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1b47f10d-083e-4c2f-983f-f6bdc3ea49e2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-26T15:34:46.000Z" + }, + "end": { + "$date": "2021-03-26T15:37:11.000Z" + }, + "events": [ + { + "uuid": "5ea0d6e1-01c6-46ce-9e57-df613dd8eac9", + "start": { + "$date": "2021-03-26T15:34:46.000Z" + }, + "end": { + "$date": "2021-03-26T15:37:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad679e5d-37a7-4269-b675-66830e50a866", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T16:16:01.000Z" + }, + "end": { + "$date": "2021-03-26T17:08:04.000Z" + }, + "events": [ + { + "uuid": "b15d0d99-73e4-4aca-b8e1-39e6949ed9a5", + "start": { + "$date": "2021-03-26T16:16:01.000Z" + }, + "end": { + "$date": "2021-03-26T17:08:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0556fec1-675e-4671-9209-5f51b1cc8776", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T18:13:38.000Z" + }, + "end": { + "$date": "2021-03-26T21:35:42.000Z" + }, + "events": [ + { + "uuid": "393186b9-1c65-4c51-a4dc-7fbcdad05222", + "start": { + "$date": "2021-03-26T18:13:38.000Z" + }, + "end": { + "$date": "2021-03-26T21:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2356cce6-8ba1-4f62-9a7a-2c6535066671", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-26T20:04:01.000Z" + }, + "end": { + "$date": "2021-03-26T20:50:08.000Z" + }, + "events": [ + { + "uuid": "a1ed612b-4463-454e-a66d-e3e8f684e17f", + "start": { + "$date": "2021-03-26T20:04:01.000Z" + }, + "end": { + "$date": "2021-03-26T20:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e7318b4b-28d5-4e87-9c7b-069d817ab95b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-26T20:29:37.000Z" + }, + "end": { + "$date": "2021-03-26T22:21:38.000Z" + }, + "events": [ + { + "uuid": "86853882-1c71-494c-8a3d-4cde52b07d0a", + "start": { + "$date": "2021-03-26T20:29:37.000Z" + }, + "end": { + "$date": "2021-03-26T21:31:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "887b3104-1f8e-41da-91de-ec3021b7e09e", + "start": { + "$date": "2021-03-26T21:31:37.000Z" + }, + "end": { + "$date": "2021-03-26T21:33:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5f03d5d-05bd-4492-a8be-b5cc11446762", + "start": { + "$date": "2021-03-26T21:33:37.000Z" + }, + "end": { + "$date": "2021-03-26T22:21:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6fe54cdd-cfdc-4619-bddd-3491900ffcf3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-26T21:47:31.000Z" + }, + "end": { + "$date": "2021-03-26T21:47:35.000Z" + }, + "events": [ + { + "uuid": "058d949d-8bc9-4c88-8833-a8f3efa1380b", + "start": { + "$date": "2021-03-26T21:47:31.000Z" + }, + "end": { + "$date": "2021-03-26T21:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "96004c41-4479-41fe-923a-24e7eff478d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-26T22:08:32.000Z" + }, + "end": { + "$date": "2021-03-26T22:11:01.000Z" + }, + "events": [ + { + "uuid": "749fc38e-9b77-4622-8878-08f23ca930ec", + "start": { + "$date": "2021-03-26T22:08:32.000Z" + }, + "end": { + "$date": "2021-03-26T22:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cf089e64-87b4-45e0-b167-edec4e49371a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-26T22:59:18.000Z" + }, + "end": { + "$date": "2021-03-27T00:41:18.000Z" + }, + "events": [ + { + "uuid": "cd021fca-0ec1-4538-b2a2-a3689e3dfdeb", + "start": { + "$date": "2021-03-26T22:59:18.000Z" + }, + "end": { + "$date": "2021-03-27T00:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "700f68ad-8147-44cc-9056-44a7715911fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-26T22:43:55.000Z" + }, + "end": { + "$date": "2021-03-27T00:02:38.000Z" + }, + "events": [ + { + "uuid": "8ae327c3-34f3-4ccf-86ed-e440d872a9b7", + "start": { + "$date": "2021-03-26T22:43:55.000Z" + }, + "end": { + "$date": "2021-03-27T00:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "d913c7ec-6c83-4d2a-a61c-eb114fc0af68", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-26T22:49:22.000Z" + }, + "end": { + "$date": "2021-03-26T22:53:22.000Z" + }, + "events": [ + { + "uuid": "7ca63b45-ea75-4a9d-9c2e-6ed21b28ca1a", + "start": { + "$date": "2021-03-26T22:49:22.000Z" + }, + "end": { + "$date": "2021-03-26T22:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "b0027e16-43f7-4f0e-945e-aef33df417ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-26T22:53:37.000Z" + }, + "end": { + "$date": "2021-03-26T22:55:02.000Z" + }, + "events": [ + { + "uuid": "61312f57-e740-4ec9-ba2e-5726917950c5", + "start": { + "$date": "2021-03-26T22:53:37.000Z" + }, + "end": { + "$date": "2021-03-26T22:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "51ef4c3a-c74a-4821-88a1-c4c4d4c69746", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-26T22:55:23.000Z" + }, + "end": { + "$date": "2021-03-26T23:27:02.000Z" + }, + "events": [ + { + "uuid": "17ccf064-bb71-415d-809d-6fc59024591f", + "start": { + "$date": "2021-03-26T22:55:23.000Z" + }, + "end": { + "$date": "2021-03-26T23:27:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "91d3aec0-f674-439e-828d-4688cb4a18c7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-26T22:56:38.000Z" + }, + "end": { + "$date": "2021-03-27T02:06:17.000Z" + }, + "events": [ + { + "uuid": "4a38c71b-1822-48c4-8f0d-23edb5881eec", + "start": { + "$date": "2021-03-26T22:56:38.000Z" + }, + "end": { + "$date": "2021-03-27T02:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2184f04b-3037-4f42-9f6f-34ddfc4419ba", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-26T23:23:41.000Z" + }, + "end": { + "$date": "2021-03-27T00:14:13.000Z" + }, + "events": [ + { + "uuid": "8b978bac-b1c0-4f0c-91e8-888ba9b78511", + "start": { + "$date": "2021-03-26T23:23:41.000Z" + }, + "end": { + "$date": "2021-03-27T00:14:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "08042711-d46f-445a-aa11-9a4560e1a02a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T00:41:33.000Z" + }, + "end": { + "$date": "2021-03-27T02:01:25.000Z" + }, + "events": [ + { + "uuid": "5a21320d-cfd5-45c9-ac3b-418fcf18cdb9", + "start": { + "$date": "2021-03-27T00:41:33.000Z" + }, + "end": { + "$date": "2021-03-27T02:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "748680d0-c40e-4d3f-84ad-311d00d88b70", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-27T00:53:37.000Z" + }, + "end": { + "$date": "2021-03-27T00:58:42.000Z" + }, + "events": [ + { + "uuid": "2536135d-303d-4d93-a2f0-3d36c80cd8e2", + "start": { + "$date": "2021-03-27T00:53:37.000Z" + }, + "end": { + "$date": "2021-03-27T00:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4d89ca65-005c-42b9-a27d-8ea9c9840639", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T00:53:39.000Z" + }, + "end": { + "$date": "2021-03-27T00:58:19.000Z" + }, + "events": [ + { + "uuid": "5c449c31-087c-4709-8377-54418fb93d92", + "start": { + "$date": "2021-03-27T00:53:39.000Z" + }, + "end": { + "$date": "2021-03-27T00:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "47626b58-58fc-4af3-be22-1dee6ab01af8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-27T01:09:50.000Z" + }, + "end": { + "$date": "2021-03-27T02:16:41.000Z" + }, + "events": [ + { + "uuid": "01931efe-a479-482d-b3d0-958a7a8618a4", + "start": { + "$date": "2021-03-27T01:09:50.000Z" + }, + "end": { + "$date": "2021-03-27T02:16:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2d1b1604-c07e-42d8-a96f-156012c97e3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T01:43:25.000Z" + }, + "end": { + "$date": "2021-03-27T01:45:29.000Z" + }, + "events": [ + { + "uuid": "4e292c7f-14a2-4f27-9c32-41a57724c97f", + "start": { + "$date": "2021-03-27T01:43:25.000Z" + }, + "end": { + "$date": "2021-03-27T01:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7ff0396a-6989-4d7f-bdf8-da32723dd2ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T01:46:00.000Z" + }, + "end": { + "$date": "2021-03-27T02:05:47.000Z" + }, + "events": [ + { + "uuid": "5586cb9f-e40f-420f-b759-3b74d4ef107b", + "start": { + "$date": "2021-03-27T01:46:00.000Z" + }, + "end": { + "$date": "2021-03-27T02:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "e5ff2204-20c9-47e1-b952-d7aededaa0c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-27T01:48:16.000Z" + }, + "end": { + "$date": "2021-03-27T02:14:55.000Z" + }, + "events": [ + { + "uuid": "3b56c225-5fa1-4410-bac0-e7e34128cae3", + "start": { + "$date": "2021-03-27T01:48:16.000Z" + }, + "end": { + "$date": "2021-03-27T02:14:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78fb7f7b-5e26-4dc5-b0f0-aad60d42b6bb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T02:08:20.000Z" + }, + "end": { + "$date": "2021-03-27T02:11:56.000Z" + }, + "events": [ + { + "uuid": "ec47c06c-cb91-4a34-bb7c-d0209a5a3840", + "start": { + "$date": "2021-03-27T02:08:20.000Z" + }, + "end": { + "$date": "2021-03-27T02:11:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ad1521aa-033b-4248-b8a8-9ed29f3a15b1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T02:08:38.000Z" + }, + "end": { + "$date": "2021-03-27T02:10:07.000Z" + }, + "events": [ + { + "uuid": "9f760c1f-1340-435e-82a1-75fc0f522abc", + "start": { + "$date": "2021-03-27T02:08:38.000Z" + }, + "end": { + "$date": "2021-03-27T02:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2abef862-80d7-4682-995a-418273d0c79f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T02:10:33.000Z" + }, + "end": { + "$date": "2021-03-27T03:04:19.000Z" + }, + "events": [ + { + "uuid": "3d506d99-98d0-4338-af16-85a2d2823bd8", + "start": { + "$date": "2021-03-27T02:10:33.000Z" + }, + "end": { + "$date": "2021-03-27T03:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1af39f6a-30a2-40c1-be5a-3cf59dcacb53", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-27T02:11:29.000Z" + }, + "end": { + "$date": "2021-03-27T04:22:34.000Z" + }, + "events": [ + { + "uuid": "9d5ec515-b3c5-41a4-bbd2-5f1dffb8a855", + "start": { + "$date": "2021-03-27T02:11:29.000Z" + }, + "end": { + "$date": "2021-03-27T04:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e7836119-c4a3-4566-a08d-613b2079b0a8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-27T02:14:07.000Z" + }, + "end": { + "$date": "2021-03-27T04:22:31.000Z" + }, + "events": [ + { + "uuid": "9f63fe0b-7723-47dd-98cd-93ea8b422ea0", + "start": { + "$date": "2021-03-27T02:14:07.000Z" + }, + "end": { + "$date": "2021-03-27T04:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "efafb484-cc38-4bbe-9447-294ad36c3425", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-27T02:15:21.000Z" + }, + "end": { + "$date": "2021-03-27T02:20:39.000Z" + }, + "events": [ + { + "uuid": "ab0562d1-e3d8-41c8-aab4-5c257bb5486f", + "start": { + "$date": "2021-03-27T02:15:21.000Z" + }, + "end": { + "$date": "2021-03-27T02:20:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "418f9377-fb11-44bf-9133-a1afe5b4af60", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T02:18:31.000Z" + }, + "end": { + "$date": "2021-03-27T02:44:41.000Z" + }, + "events": [ + { + "uuid": "708300c1-c3e3-486a-a715-c6a7f5fba00e", + "start": { + "$date": "2021-03-27T02:18:31.000Z" + }, + "end": { + "$date": "2021-03-27T02:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b7247bb4-0c16-4365-b32e-e755c20d0772", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-27T02:21:00.000Z" + }, + "end": { + "$date": "2021-03-27T08:26:35.000Z" + }, + "events": [ + { + "uuid": "81c1025b-4bf6-4527-903e-593673706002", + "start": { + "$date": "2021-03-27T02:21:00.000Z" + }, + "end": { + "$date": "2021-03-27T08:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7303d891-c0a9-44db-8897-c923a0c800e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T02:24:32.000Z" + }, + "end": { + "$date": "2021-03-27T03:20:00.000Z" + }, + "events": [ + { + "uuid": "caf82665-aed1-474c-9e8a-c0f0bdcf6196", + "start": { + "$date": "2021-03-27T02:24:32.000Z" + }, + "end": { + "$date": "2021-03-27T02:40:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "18bf4f5d-a840-4d07-8481-de616a123535", + "start": { + "$date": "2021-03-27T02:40:32.000Z" + }, + "end": { + "$date": "2021-03-27T02:45:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b75e29ec-de05-4d36-b570-40338fadf95b", + "start": { + "$date": "2021-03-27T02:45:32.000Z" + }, + "end": { + "$date": "2021-03-27T03:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "199d0627-6ada-4937-bfd7-6907a51c2d16", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T02:48:01.000Z" + }, + "end": { + "$date": "2021-03-27T04:02:49.000Z" + }, + "events": [ + { + "uuid": "844b6c62-d99c-494e-a2f8-ed9b6d6ae2dc", + "start": { + "$date": "2021-03-27T02:48:01.000Z" + }, + "end": { + "$date": "2021-03-27T04:02:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f6d119fa-da22-4a28-8db5-2ba9b2010661", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-27T02:50:04.000Z" + }, + "end": { + "$date": "2021-03-27T04:27:08.000Z" + }, + "events": [ + { + "uuid": "3905e411-705e-473d-ad87-ad072823b1da", + "start": { + "$date": "2021-03-27T02:50:04.000Z" + }, + "end": { + "$date": "2021-03-27T04:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "daa3e5a7-e6a7-4a3d-a9dc-8270cf5dcacf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-27T03:02:00.000Z" + }, + "end": { + "$date": "2021-03-27T03:47:48.000Z" + }, + "events": [ + { + "uuid": "e89231dd-88a5-43ca-b281-c961d8c5eda9", + "start": { + "$date": "2021-03-27T03:02:00.000Z" + }, + "end": { + "$date": "2021-03-27T03:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5f86fc91-a519-43a9-aca5-22ad3680b5d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T03:04:40.000Z" + }, + "end": { + "$date": "2021-03-27T04:22:22.000Z" + }, + "events": [ + { + "uuid": "c9a77755-b85c-4291-9225-25149a473fe1", + "start": { + "$date": "2021-03-27T03:04:40.000Z" + }, + "end": { + "$date": "2021-03-27T04:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6aa07bbb-4f1e-4cfb-b74c-ab9daadb5158", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-27T03:16:16.000Z" + }, + "end": { + "$date": "2021-03-27T06:20:04.000Z" + }, + "events": [ + { + "uuid": "be18b751-0ce8-49f4-b23d-cca9886f7977", + "start": { + "$date": "2021-03-27T03:16:16.000Z" + }, + "end": { + "$date": "2021-03-27T05:38:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff28321f-3602-4eae-87d3-d15a6b3d3c71", + "start": { + "$date": "2021-03-27T05:38:16.000Z" + }, + "end": { + "$date": "2021-03-27T05:43:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ac1ad26b-06f1-4263-9da9-9269bcb80523", + "start": { + "$date": "2021-03-27T05:43:16.000Z" + }, + "end": { + "$date": "2021-03-27T05:53:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0774210-8bfc-4920-ad30-f2f5347c273d", + "start": { + "$date": "2021-03-27T05:53:16.000Z" + }, + "end": { + "$date": "2021-03-27T05:58:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7e88b102-611d-42d8-a1cd-08d52d3f4673", + "start": { + "$date": "2021-03-27T05:58:16.000Z" + }, + "end": { + "$date": "2021-03-27T06:20:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "13d7a036-8b5a-46b2-8a3d-623613d22eb5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T03:20:45.000Z" + }, + "end": { + "$date": "2021-03-27T04:23:01.000Z" + }, + "events": [ + { + "uuid": "de83d561-d5ba-4701-8554-f990754646ae", + "start": { + "$date": "2021-03-27T03:20:45.000Z" + }, + "end": { + "$date": "2021-03-27T04:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9f2c1d75-933e-40ed-ad7b-fbc3789fd211", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-27T03:53:54.000Z" + }, + "end": { + "$date": "2021-03-27T04:36:10.000Z" + }, + "events": [ + { + "uuid": "d651b28d-7355-4f43-9c0d-c8b25dfb1824", + "start": { + "$date": "2021-03-27T03:53:54.000Z" + }, + "end": { + "$date": "2021-03-27T04:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "81221cf0-9b26-46e2-8f02-c058d8f29196", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T04:03:09.000Z" + }, + "end": { + "$date": "2021-03-27T06:24:10.000Z" + }, + "events": [ + { + "uuid": "e539b46c-fd44-4d47-a1b0-2cbc1e7610f2", + "start": { + "$date": "2021-03-27T04:03:09.000Z" + }, + "end": { + "$date": "2021-03-27T06:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d59791a5-552c-4fcc-9f4d-d030a6f72705", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T04:23:41.000Z" + }, + "end": { + "$date": "2021-03-27T04:56:43.000Z" + }, + "events": [ + { + "uuid": "bd81a4cf-2406-4098-a3cb-c1712ddf0364", + "start": { + "$date": "2021-03-27T04:23:41.000Z" + }, + "end": { + "$date": "2021-03-27T04:56:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4a1ed4f9-186f-4f7b-aa6d-0657c5b88ba7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-27T04:27:34.000Z" + }, + "end": { + "$date": "2021-03-27T05:16:24.000Z" + }, + "events": [ + { + "uuid": "f92a2500-fd42-4178-a747-8c441e7f9752", + "start": { + "$date": "2021-03-27T04:27:34.000Z" + }, + "end": { + "$date": "2021-03-27T05:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "97b4b254-d7cf-404a-b310-4655bb53f55b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-27T04:36:46.000Z" + }, + "end": { + "$date": "2021-03-27T05:51:53.000Z" + }, + "events": [ + { + "uuid": "8a769266-ad6c-466b-a8b5-dc51e7d2e57c", + "start": { + "$date": "2021-03-27T04:36:46.000Z" + }, + "end": { + "$date": "2021-03-27T05:51:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ed6968c-89a8-4666-81ee-44998cbdbf6c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-27T03:53:54.000Z" + }, + "end": { + "$date": "2021-03-27T08:37:20.000Z" + }, + "events": [ + { + "uuid": "94a47ca2-f63e-447a-ac90-6a1baceb3706", + "start": { + "$date": "2021-03-27T03:53:54.000Z" + }, + "end": { + "$date": "2021-03-27T08:37:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b5683d2-f4fd-49bc-a4d1-7bb0e4245036", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-27T04:46:01.000Z" + }, + "end": { + "$date": "2021-03-27T05:12:53.000Z" + }, + "events": [ + { + "uuid": "9b8b74a0-6b63-469d-8cfc-79203eea3902", + "start": { + "$date": "2021-03-27T04:46:01.000Z" + }, + "end": { + "$date": "2021-03-27T05:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "ebff721b-8ea4-4a5e-8e55-49d00b4f2d7f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-27T05:12:13.000Z" + }, + "end": { + "$date": "2021-03-27T06:00:40.000Z" + }, + "events": [ + { + "uuid": "853e17cd-7a6b-43bd-b4ce-29f194b59624", + "start": { + "$date": "2021-03-27T05:12:13.000Z" + }, + "end": { + "$date": "2021-03-27T06:00:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9aaabd52-4a5a-4093-a8aa-0a82c6060873", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-27T05:24:13.000Z" + }, + "end": { + "$date": "2021-03-27T05:53:34.000Z" + }, + "events": [ + { + "uuid": "7344e5d4-e6d1-4cb3-95e8-c1d7d88c93d0", + "start": { + "$date": "2021-03-27T05:24:13.000Z" + }, + "end": { + "$date": "2021-03-27T05:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "a0659b0e-848d-496e-9d08-66925deaa400", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T05:25:50.000Z" + }, + "end": { + "$date": "2021-03-27T05:27:36.000Z" + }, + "events": [ + { + "uuid": "67d53f44-d98f-4350-80d0-af42e06ebc2d", + "start": { + "$date": "2021-03-27T05:25:50.000Z" + }, + "end": { + "$date": "2021-03-27T05:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d3007fe9-257c-4607-9dbc-0aefedc86158", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T05:47:12.000Z" + }, + "end": { + "$date": "2021-03-27T06:29:07.000Z" + }, + "events": [ + { + "uuid": "6e99152c-8418-4b73-84fe-316e8474e87d", + "start": { + "$date": "2021-03-27T05:47:12.000Z" + }, + "end": { + "$date": "2021-03-27T06:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb40a4de-bb8f-4b73-8a7d-fa6fc520bb66", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-27T05:58:08.000Z" + }, + "end": { + "$date": "2021-03-27T06:30:34.000Z" + }, + "events": [ + { + "uuid": "460fb530-6835-48fd-ac2f-21fd5da62c1f", + "start": { + "$date": "2021-03-27T05:58:08.000Z" + }, + "end": { + "$date": "2021-03-27T06:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f5bff59-249e-4f0f-9aa5-1409f6a5fcc6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-27T06:35:54.000Z" + }, + "end": { + "$date": "2021-03-27T06:57:20.000Z" + }, + "events": [ + { + "uuid": "4779a366-0af2-4fc5-95e2-7f511b6c2438", + "start": { + "$date": "2021-03-27T06:35:54.000Z" + }, + "end": { + "$date": "2021-03-27T06:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "62d1e8ec-567b-4efb-bb8e-101326905cc7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-27T06:49:30.000Z" + }, + "end": { + "$date": "2021-03-27T09:09:54.000Z" + }, + "events": [ + { + "uuid": "e6588f4d-0740-45d6-90c4-2971040ca4e8", + "start": { + "$date": "2021-03-27T06:49:30.000Z" + }, + "end": { + "$date": "2021-03-27T09:09:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abd29fff-d084-428b-bda3-bd2eb3d4276c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-27T07:08:40.000Z" + }, + "end": { + "$date": "2021-03-27T07:37:36.000Z" + }, + "events": [ + { + "uuid": "76c864e3-116c-40be-a75a-1b5b7a52e580", + "start": { + "$date": "2021-03-27T07:08:40.000Z" + }, + "end": { + "$date": "2021-03-27T07:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c3fe01f-c90a-49fa-a49d-7a089b6187ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T14:54:25.000Z" + }, + "end": { + "$date": "2021-03-27T15:29:26.000Z" + }, + "events": [ + { + "uuid": "2871c47f-8ada-466c-a35b-c866a759888b", + "start": { + "$date": "2021-03-27T14:54:25.000Z" + }, + "end": { + "$date": "2021-03-27T15:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aac7d94c-31dc-4031-b884-53fa5de10d88", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T15:33:11.000Z" + }, + "end": { + "$date": "2021-03-27T15:34:16.000Z" + }, + "events": [ + { + "uuid": "d1fb387e-9af1-4e9e-93dc-f0e15b802352", + "start": { + "$date": "2021-03-27T15:33:11.000Z" + }, + "end": { + "$date": "2021-03-27T15:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "e04ed3b1-0b0c-4c93-871c-bccc27e060f8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T15:58:33.000Z" + }, + "end": { + "$date": "2021-03-27T16:32:53.000Z" + }, + "events": [ + { + "uuid": "4d2e7c81-3ea7-477c-a023-0c7f65ab1845", + "start": { + "$date": "2021-03-27T15:58:33.000Z" + }, + "end": { + "$date": "2021-03-27T16:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "edc9c98f-7a0d-4701-866f-be091bd24e3a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-27T16:03:00.000Z" + }, + "end": { + "$date": "2021-03-27T16:55:47.000Z" + }, + "events": [ + { + "uuid": "eeb45f99-0717-46e2-a0f2-400589df3fd7", + "start": { + "$date": "2021-03-27T16:03:00.000Z" + }, + "end": { + "$date": "2021-03-27T16:55:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a49c01b-f38c-4371-8074-aa5736b31ee9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T16:42:36.000Z" + }, + "end": { + "$date": "2021-03-27T17:13:36.000Z" + }, + "events": [ + { + "uuid": "b0d573a6-b148-447b-bee0-691cd22dbda0", + "start": { + "$date": "2021-03-27T16:42:36.000Z" + }, + "end": { + "$date": "2021-03-27T17:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "757cddf8-0295-458d-9ec3-da48e6be3563", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T17:21:21.000Z" + }, + "end": { + "$date": "2021-03-27T17:22:36.000Z" + }, + "events": [ + { + "uuid": "1effbd3b-6da9-4e07-b695-db563629f94f", + "start": { + "$date": "2021-03-27T17:21:21.000Z" + }, + "end": { + "$date": "2021-03-27T17:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "61209e09-50d3-4346-8405-628d1e81bd77", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-27T17:23:26.000Z" + }, + "end": { + "$date": "2021-03-27T18:42:16.000Z" + }, + "events": [ + { + "uuid": "c4c99c75-94ba-46fb-903f-3d2b118be547", + "start": { + "$date": "2021-03-27T17:23:26.000Z" + }, + "end": { + "$date": "2021-03-27T18:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62189411-0e3a-46e1-a07d-45a8f7262755", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T18:34:44.000Z" + }, + "end": { + "$date": "2021-03-27T19:01:59.000Z" + }, + "events": [ + { + "uuid": "5561722e-e000-4123-925a-7ba91affd8c2", + "start": { + "$date": "2021-03-27T18:34:44.000Z" + }, + "end": { + "$date": "2021-03-27T19:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "4e4f603f-9dc5-4891-9575-3cdd42f12476", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T18:14:48.000Z" + }, + "end": { + "$date": "2021-03-27T22:35:29.000Z" + }, + "events": [ + { + "uuid": "10dcb6d7-4c0b-4f8f-be8d-09aead7eed08", + "start": { + "$date": "2021-03-27T18:14:48.000Z" + }, + "end": { + "$date": "2021-03-27T22:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "a18003f7-19c0-4b4b-bbb6-6aa6d4da91f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-27T18:39:42.000Z" + }, + "end": { + "$date": "2021-03-27T19:29:29.000Z" + }, + "events": [ + { + "uuid": "131e80ce-f50c-420b-938d-898d8a2a9768", + "start": { + "$date": "2021-03-27T18:39:42.000Z" + }, + "end": { + "$date": "2021-03-27T19:29:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "22143de8-6db3-44a1-8e3f-69a0546e4f68", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-27T19:25:04.000Z" + }, + "end": { + "$date": "2021-03-27T21:19:07.000Z" + }, + "events": [ + { + "uuid": "afc795e3-93bf-4244-b38d-0dfdff23e268", + "start": { + "$date": "2021-03-27T19:25:04.000Z" + }, + "end": { + "$date": "2021-03-27T21:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9cfe1418-b9e0-482e-a214-5d612e765733", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-27T19:29:34.000Z" + }, + "end": { + "$date": "2021-03-28T01:01:08.000Z" + }, + "events": [ + { + "uuid": "dc36aee2-9075-4747-becb-688dd3a9a8f2", + "start": { + "$date": "2021-03-27T19:29:34.000Z" + }, + "end": { + "$date": "2021-03-27T22:45:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b18f0c75-8b12-440f-88d9-80ec0a364048", + "start": { + "$date": "2021-03-27T22:45:34.000Z" + }, + "end": { + "$date": "2021-03-27T23:28:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92046ebb-01d4-4e58-8d82-843f94699b18", + "start": { + "$date": "2021-03-27T23:28:34.000Z" + }, + "end": { + "$date": "2021-03-27T23:50:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a61b507-7221-40bf-9949-f865816e7289", + "start": { + "$date": "2021-03-27T23:50:34.000Z" + }, + "end": { + "$date": "2021-03-27T23:53:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3ea0076a-cafa-4a7b-8989-2d92fb1896dc", + "start": { + "$date": "2021-03-27T23:53:34.000Z" + }, + "end": { + "$date": "2021-03-28T00:05:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2b316d7e-72f4-42f7-a26a-7f637a3a4295", + "start": { + "$date": "2021-03-28T00:05:34.000Z" + }, + "end": { + "$date": "2021-03-28T00:10:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59cc19c5-bb0c-4be4-910f-370a1db47ae5", + "start": { + "$date": "2021-03-28T00:10:34.000Z" + }, + "end": { + "$date": "2021-03-28T00:20:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df7a60d3-6e42-4427-9fce-d1b3c4297888", + "start": { + "$date": "2021-03-28T00:20:34.000Z" + }, + "end": { + "$date": "2021-03-28T00:24:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2eecfea8-7488-4c1d-8ac6-fd2e6dd47df3", + "start": { + "$date": "2021-03-28T00:24:34.000Z" + }, + "end": { + "$date": "2021-03-28T01:01:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9851285a-5edd-4029-9572-a84e32990839", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-27T20:32:35.000Z" + }, + "end": { + "$date": "2021-03-27T21:58:28.000Z" + }, + "events": [ + { + "uuid": "81f10b24-609c-422a-b08c-9a9fe1a5256f", + "start": { + "$date": "2021-03-27T20:32:35.000Z" + }, + "end": { + "$date": "2021-03-27T21:58:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e490c321-6eaf-4c6a-b509-f305acb59bdc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-27T20:34:16.000Z" + }, + "end": { + "$date": "2021-03-27T21:56:49.000Z" + }, + "events": [ + { + "uuid": "84a5ac3b-8ad9-42ba-bf18-2c5ce2a07350", + "start": { + "$date": "2021-03-27T20:34:16.000Z" + }, + "end": { + "$date": "2021-03-27T21:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "2f53d456-c6c9-4fbc-a110-5457dafbd0c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T20:47:16.000Z" + }, + "end": { + "$date": "2021-03-27T21:00:25.000Z" + }, + "events": [ + { + "uuid": "c761895c-9dfe-4bbc-9c74-16010ce4c5d1", + "start": { + "$date": "2021-03-27T20:47:16.000Z" + }, + "end": { + "$date": "2021-03-27T21:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2de724f7-3eea-45b5-a21a-0759d8d79287", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-27T20:57:13.000Z" + }, + "end": { + "$date": "2021-03-27T21:18:59.000Z" + }, + "events": [ + { + "uuid": "1a611559-dcb8-4527-b96c-03c091244d22", + "start": { + "$date": "2021-03-27T20:57:13.000Z" + }, + "end": { + "$date": "2021-03-27T21:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df3d8aad-d148-4ac7-985f-6bd41bce45ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T21:03:07.000Z" + }, + "end": { + "$date": "2021-03-27T21:40:53.000Z" + }, + "events": [ + { + "uuid": "3e53a60d-ca85-4f82-ad03-8d188d02cbf1", + "start": { + "$date": "2021-03-27T21:03:07.000Z" + }, + "end": { + "$date": "2021-03-27T21:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d7126a24-c9ca-4b13-bc19-602ae8fe0197", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-27T21:24:21.000Z" + }, + "end": { + "$date": "2021-03-28T00:23:47.000Z" + }, + "events": [ + { + "uuid": "4f3ddaa4-a601-4868-b6fd-2e7ffa59a812", + "start": { + "$date": "2021-03-27T21:24:21.000Z" + }, + "end": { + "$date": "2021-03-28T00:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dafbc213-5ff8-4b76-8279-6c4d046170d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-27T21:42:14.000Z" + }, + "end": { + "$date": "2021-03-27T22:20:31.000Z" + }, + "events": [ + { + "uuid": "45ca9d0b-a695-458d-93b6-fc22c9502e37", + "start": { + "$date": "2021-03-27T21:42:14.000Z" + }, + "end": { + "$date": "2021-03-27T22:20:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "7efb7cef-f3c6-4618-b23a-d3981bf7a8a8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-27T22:42:52.000Z" + }, + "end": { + "$date": "2021-03-28T03:44:36.000Z" + }, + "events": [ + { + "uuid": "09cc0a79-89da-4a0b-afa2-dfad0acdd4d1", + "start": { + "$date": "2021-03-27T22:42:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:03:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1fb6c67e-6824-4535-93f3-a7005991b1d3", + "start": { + "$date": "2021-03-28T01:03:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:46:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ae7b7a8-4394-4858-aaae-0938a9eb800a", + "start": { + "$date": "2021-03-28T01:46:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:49:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "34b76c62-1b28-49e8-bd1a-8c93527486d3", + "start": { + "$date": "2021-03-28T01:49:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:51:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74e554ca-4661-4dac-abf8-672738fdd942", + "start": { + "$date": "2021-03-28T01:51:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:54:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bfca906b-2458-414f-89d7-bce03bb84390", + "start": { + "$date": "2021-03-28T01:54:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:56:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "17aaa94e-943f-448a-bf19-e14dd604d095", + "start": { + "$date": "2021-03-28T01:56:52.000Z" + }, + "end": { + "$date": "2021-03-28T01:58:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1807b82e-a76a-4e0e-a9bf-c6f1a2f6cad2", + "start": { + "$date": "2021-03-28T01:58:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:03:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8dc4997c-4e3c-40b0-b4f4-079930febac0", + "start": { + "$date": "2021-03-28T02:03:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:10:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d626c1b6-a0dd-4124-b426-19d0a2179b81", + "start": { + "$date": "2021-03-28T02:10:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:13:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b09e2d5d-bab0-4eab-8084-70bbb7a686f8", + "start": { + "$date": "2021-03-28T02:13:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:31:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0840533c-e88a-4b74-905b-88a4b28346d4", + "start": { + "$date": "2021-03-28T02:31:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:53:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "116aaeab-77bf-4cf3-b945-a2256678c1db", + "start": { + "$date": "2021-03-28T02:53:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:55:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a73ce8e4-b2b9-4ee4-bc8a-a99fb2707add", + "start": { + "$date": "2021-03-28T02:55:52.000Z" + }, + "end": { + "$date": "2021-03-28T02:59:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7071f332-69cd-4855-8fcd-2d33db770023", + "start": { + "$date": "2021-03-28T02:59:52.000Z" + }, + "end": { + "$date": "2021-03-28T03:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b314b0be-0ad4-4ce2-8ff2-7643c8fbd3c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T22:52:11.000Z" + }, + "end": { + "$date": "2021-03-27T23:31:58.000Z" + }, + "events": [ + { + "uuid": "951383a6-2f7b-437a-a1ee-6acdefdcfbb7", + "start": { + "$date": "2021-03-27T22:52:11.000Z" + }, + "end": { + "$date": "2021-03-27T23:04:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe70dda8-817a-4661-99f3-85ed456c3d38", + "start": { + "$date": "2021-03-27T23:04:11.000Z" + }, + "end": { + "$date": "2021-03-27T23:09:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff3dc6f8-5845-47a0-aae1-8768dc58652f", + "start": { + "$date": "2021-03-27T23:09:11.000Z" + }, + "end": { + "$date": "2021-03-27T23:19:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2fd40b4c-4bf0-4921-a08b-eba8d5260d54", + "start": { + "$date": "2021-03-27T23:19:11.000Z" + }, + "end": { + "$date": "2021-03-27T23:21:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c07d6ecf-a479-492c-acd0-e3bd49aa2bcd", + "start": { + "$date": "2021-03-27T23:21:11.000Z" + }, + "end": { + "$date": "2021-03-27T23:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3fcbc2ab-61db-472c-a357-014bb9bdbff4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-27T23:23:44.000Z" + }, + "end": { + "$date": "2021-03-27T23:31:09.000Z" + }, + "events": [ + { + "uuid": "fe2e4554-06d2-4dd8-8d7f-a7ce39e762cf", + "start": { + "$date": "2021-03-27T23:23:44.000Z" + }, + "end": { + "$date": "2021-03-27T23:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5dd84d94-4456-4e9a-aaef-0ffea0edcba9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-27T23:33:48.000Z" + }, + "end": { + "$date": "2021-03-28T00:16:44.000Z" + }, + "events": [ + { + "uuid": "2f949537-eb9c-4b1c-9cbe-b6e311d40f58", + "start": { + "$date": "2021-03-27T23:33:48.000Z" + }, + "end": { + "$date": "2021-03-28T00:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f43b2b80-23f0-4123-aafb-ed1776d55689", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-28T00:16:54.000Z" + }, + "end": { + "$date": "2021-03-28T01:00:39.000Z" + }, + "events": [ + { + "uuid": "72f5b2b2-c8de-49a9-bd6c-a55ea45cbafc", + "start": { + "$date": "2021-03-28T00:16:54.000Z" + }, + "end": { + "$date": "2021-03-28T01:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "80eef330-9652-41fc-9bac-578303ed7ec8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-28T00:24:09.000Z" + }, + "end": { + "$date": "2021-03-28T00:28:00.000Z" + }, + "events": [ + { + "uuid": "1801319b-1fb0-4141-9956-5ce9a91f474f", + "start": { + "$date": "2021-03-28T00:24:09.000Z" + }, + "end": { + "$date": "2021-03-28T00:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "073a48a6-5d6e-49d1-9ad5-9042472028f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-28T00:28:01.000Z" + }, + "end": { + "$date": "2021-03-28T01:05:58.000Z" + }, + "events": [ + { + "uuid": "94739996-3a70-482b-a4f3-9bb6ccf4788f", + "start": { + "$date": "2021-03-28T00:28:01.000Z" + }, + "end": { + "$date": "2021-03-28T01:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "fd205512-039b-48d4-912a-5a04070aac18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-28T01:01:05.000Z" + }, + "end": { + "$date": "2021-03-28T01:29:25.000Z" + }, + "events": [ + { + "uuid": "c657e897-d7e3-4b7b-af05-3f5b3fc9fd9a", + "start": { + "$date": "2021-03-28T01:01:05.000Z" + }, + "end": { + "$date": "2021-03-28T01:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "82b7844e-89d9-4382-a7e6-15579e0fc26d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T01:01:38.000Z" + }, + "end": { + "$date": "2021-03-28T01:28:50.000Z" + }, + "events": [ + { + "uuid": "ce29eba9-b46a-4ff4-a159-e5162f6db6d2", + "start": { + "$date": "2021-03-28T01:01:38.000Z" + }, + "end": { + "$date": "2021-03-28T01:28:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "9efe1b1a-d41a-45f3-81b6-275660018a7d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-28T01:02:48.000Z" + }, + "end": { + "$date": "2021-03-28T01:31:28.000Z" + }, + "events": [ + { + "uuid": "3a7bda7c-a665-4170-a507-494ed40c5d38", + "start": { + "$date": "2021-03-28T01:02:48.000Z" + }, + "end": { + "$date": "2021-03-28T01:31:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2c249b6-5b9f-4104-9f6a-8eca14e69e8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-28T01:16:14.000Z" + }, + "end": { + "$date": "2021-03-28T01:44:53.000Z" + }, + "events": [ + { + "uuid": "e66f2572-0e52-4a54-a0ae-c49f353e2757", + "start": { + "$date": "2021-03-28T01:16:14.000Z" + }, + "end": { + "$date": "2021-03-28T01:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "54291401-9dfc-448e-9c3a-3739e1b16ca5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T01:31:25.000Z" + }, + "end": { + "$date": "2021-03-28T02:00:21.000Z" + }, + "events": [ + { + "uuid": "360b841f-65dc-47ea-975d-c65ef7cc5a9a", + "start": { + "$date": "2021-03-28T01:31:25.000Z" + }, + "end": { + "$date": "2021-03-28T02:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "0c9e895f-78c3-4551-a76c-bce95926b95d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-28T01:31:46.000Z" + }, + "end": { + "$date": "2021-03-28T02:00:16.000Z" + }, + "events": [ + { + "uuid": "c7cd6e58-1445-4e7e-a74f-c49dbb378c49", + "start": { + "$date": "2021-03-28T01:31:46.000Z" + }, + "end": { + "$date": "2021-03-28T02:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", + "uuid": "cb121e9f-d70c-481b-ae12-968adc7733a5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-28T01:32:43.000Z" + }, + "end": { + "$date": "2021-03-28T01:37:23.000Z" + }, + "events": [ + { + "uuid": "7f4fe546-8d45-420d-b665-bb17ed472de8", + "start": { + "$date": "2021-03-28T01:32:43.000Z" + }, + "end": { + "$date": "2021-03-28T01:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e686a4ba-1a91-4f60-9615-9e596bca0d7d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-28T01:47:14.000Z" + }, + "end": { + "$date": "2021-03-28T06:35:34.000Z" + }, + "events": [ + { + "uuid": "d8c22354-c2b3-43c9-a863-781ac6334a9c", + "start": { + "$date": "2021-03-28T01:47:14.000Z" + }, + "end": { + "$date": "2021-03-28T05:21:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db3d254b-31b3-46dc-a835-07a6a47c3be1", + "start": { + "$date": "2021-03-28T05:21:14.000Z" + }, + "end": { + "$date": "2021-03-28T05:25:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96a6dfb0-adc3-4fe2-8e1b-779b133817c5", + "start": { + "$date": "2021-03-28T05:25:14.000Z" + }, + "end": { + "$date": "2021-03-28T06:35:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ddedf4ec-c4bb-464d-a657-eaba4133bde5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T02:08:17.000Z" + }, + "end": { + "$date": "2021-03-28T02:23:29.000Z" + }, + "events": [ + { + "uuid": "5133de2e-6696-472f-b18a-e6ae91d03fc9", + "start": { + "$date": "2021-03-28T02:08:17.000Z" + }, + "end": { + "$date": "2021-03-28T02:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f91ad064-8795-4012-94c1-6de721c0e1a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T02:24:24.000Z" + }, + "end": { + "$date": "2021-03-28T04:47:04.000Z" + }, + "events": [ + { + "uuid": "3ba09d19-ab4e-4666-9c4d-c00dc1b7d572", + "start": { + "$date": "2021-03-28T02:24:24.000Z" + }, + "end": { + "$date": "2021-03-28T04:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3eb046a5-9f0f-4ec6-9299-53d6aabcb090", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-28T02:49:01.000Z" + }, + "end": { + "$date": "2021-03-28T02:53:58.000Z" + }, + "events": [ + { + "uuid": "fdc020e7-cef7-4049-8848-23d17abbc881", + "start": { + "$date": "2021-03-28T02:49:01.000Z" + }, + "end": { + "$date": "2021-03-28T02:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24de06c9-11c8-4365-a9b5-02187fbce16c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-28T02:55:07.000Z" + }, + "end": { + "$date": "2021-03-28T06:22:40.000Z" + }, + "events": [ + { + "uuid": "de907c85-2d0b-48a3-9246-f3315d03a2b6", + "start": { + "$date": "2021-03-28T02:55:07.000Z" + }, + "end": { + "$date": "2021-03-28T06:22:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e7e69d32-a53b-4c15-8646-ec89349380c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-28T02:59:39.000Z" + }, + "end": { + "$date": "2021-03-28T06:22:49.000Z" + }, + "events": [ + { + "uuid": "3c2cd037-db6e-4b45-a4e4-e4c9b8797bde", + "start": { + "$date": "2021-03-28T02:59:39.000Z" + }, + "end": { + "$date": "2021-03-28T06:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "75609139-8e4c-443a-9b37-c8b9e9a6d39f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-28T03:22:17.000Z" + }, + "end": { + "$date": "2021-03-28T06:16:18.000Z" + }, + "events": [ + { + "uuid": "1c9630b5-4ef3-4955-96c5-000d67c9b45f", + "start": { + "$date": "2021-03-28T03:22:17.000Z" + }, + "end": { + "$date": "2021-03-28T06:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91ab7eca-cd62-453e-a633-c15e294c1bcb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-28T04:13:54.000Z" + }, + "end": { + "$date": "2021-03-28T04:28:19.000Z" + }, + "events": [ + { + "uuid": "149c0edd-e375-4e29-885a-d78f02785d79", + "start": { + "$date": "2021-03-28T04:13:54.000Z" + }, + "end": { + "$date": "2021-03-28T04:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "322fe3d5-ef3e-47f8-97c5-39875ef1e0f2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T03:44:41.000Z" + }, + "end": { + "$date": "2021-03-28T04:33:44.000Z" + }, + "events": [ + { + "uuid": "bf497a96-14c2-4684-a30d-f2d71f32fd53", + "start": { + "$date": "2021-03-28T03:44:41.000Z" + }, + "end": { + "$date": "2021-03-28T04:21:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b7e2a7f-6bd5-48f9-9cb1-12cafbda8c6f", + "start": { + "$date": "2021-03-28T04:21:41.000Z" + }, + "end": { + "$date": "2021-03-28T04:23:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2312caa2-b71d-43ef-ae8e-29ce5c451e7c", + "start": { + "$date": "2021-03-28T04:23:41.000Z" + }, + "end": { + "$date": "2021-03-28T04:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b483c4a0-46db-4214-8058-54d5a5598e66", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-28T03:54:05.000Z" + }, + "end": { + "$date": "2021-03-28T05:42:29.000Z" + }, + "events": [ + { + "uuid": "d78d6ef0-0e20-40c7-a9ee-2c3eb465f5fc", + "start": { + "$date": "2021-03-28T03:54:05.000Z" + }, + "end": { + "$date": "2021-03-28T04:22:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff174b23-a9fb-4410-ae4b-3b358ef8ab1f", + "start": { + "$date": "2021-03-28T04:22:05.000Z" + }, + "end": { + "$date": "2021-03-28T04:28:05.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "8a410337-807c-4484-bd23-6351a7e13de9", + "start": { + "$date": "2021-03-28T04:28:05.000Z" + }, + "end": { + "$date": "2021-03-28T05:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3dfc0441-8cbc-491f-ac55-96054c8a1ed9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-28T04:29:04.000Z" + }, + "end": { + "$date": "2021-03-28T05:35:51.000Z" + }, + "events": [ + { + "uuid": "b3544cd9-f690-46e3-9846-9fe2e3ae8145", + "start": { + "$date": "2021-03-28T04:29:04.000Z" + }, + "end": { + "$date": "2021-03-28T05:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "92b4c0cd-45da-4bd1-a638-cf81a58f6c63", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T04:59:12.000Z" + }, + "end": { + "$date": "2021-03-28T06:22:34.000Z" + }, + "events": [ + { + "uuid": "8b00d4c2-89e9-4291-b3cc-4896f8469aaa", + "start": { + "$date": "2021-03-28T04:59:12.000Z" + }, + "end": { + "$date": "2021-03-28T06:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b0c757c-90b8-4d94-b39d-16af6e529c5b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T04:46:57.000Z" + }, + "end": { + "$date": "2021-03-28T05:03:36.000Z" + }, + "events": [ + { + "uuid": "bf2a38c6-37af-4af3-84d0-f4c5258069d9", + "start": { + "$date": "2021-03-28T04:46:57.000Z" + }, + "end": { + "$date": "2021-03-28T05:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "18a37860-22b3-4f78-8765-f99abc667e61", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T04:54:35.000Z" + }, + "end": { + "$date": "2021-03-28T05:21:36.000Z" + }, + "events": [ + { + "uuid": "512494ae-312d-44fb-8fa3-b543ba8348c4", + "start": { + "$date": "2021-03-28T04:54:35.000Z" + }, + "end": { + "$date": "2021-03-28T05:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbca0b94-dac8-45a8-a18d-b29deaa74278", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T05:06:07.000Z" + }, + "end": { + "$date": "2021-03-28T05:21:29.000Z" + }, + "events": [ + { + "uuid": "0d5ac478-c50b-4674-a214-894daf3437c2", + "start": { + "$date": "2021-03-28T05:06:07.000Z" + }, + "end": { + "$date": "2021-03-28T05:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aec825db-53f4-40cc-b185-154b0b83e246", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T05:23:22.000Z" + }, + "end": { + "$date": "2021-03-28T05:39:24.000Z" + }, + "events": [ + { + "uuid": "0a576fac-08bc-4b9e-baec-e57c3bd17ca6", + "start": { + "$date": "2021-03-28T05:23:22.000Z" + }, + "end": { + "$date": "2021-03-28T05:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "4222d6c7-fc47-466e-916f-e55fac763c81", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T05:22:31.000Z" + }, + "end": { + "$date": "2021-03-28T06:13:03.000Z" + }, + "events": [ + { + "uuid": "65dd9e48-2d4a-4014-93bd-0732934847d4", + "start": { + "$date": "2021-03-28T05:22:31.000Z" + }, + "end": { + "$date": "2021-03-28T06:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2068eb28-f0df-4356-8166-d790c0fe7879", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T05:42:33.000Z" + }, + "end": { + "$date": "2021-03-28T05:55:44.000Z" + }, + "events": [ + { + "uuid": "8841cd23-706a-46ae-974c-357a943b4a47", + "start": { + "$date": "2021-03-28T05:42:33.000Z" + }, + "end": { + "$date": "2021-03-28T05:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1db5ba8b-0214-43a8-97aa-c2222b8331a7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-28T05:42:59.000Z" + }, + "end": { + "$date": "2021-03-28T07:47:57.000Z" + }, + "events": [ + { + "uuid": "a20fc92f-3417-444f-acad-5b3b512b122b", + "start": { + "$date": "2021-03-28T05:42:59.000Z" + }, + "end": { + "$date": "2021-03-28T07:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c10592f-602d-4698-9883-b10711a1a72b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T05:58:03.000Z" + }, + "end": { + "$date": "2021-03-28T06:14:10.000Z" + }, + "events": [ + { + "uuid": "ff211958-9400-464e-8f93-c99ed74efa4a", + "start": { + "$date": "2021-03-28T05:58:03.000Z" + }, + "end": { + "$date": "2021-03-28T06:14:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "614b614c-bf29-48fb-8c55-b5becceb9614", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T06:18:43.000Z" + }, + "end": { + "$date": "2021-03-28T06:38:35.000Z" + }, + "events": [ + { + "uuid": "f8848b49-ec80-4077-b83d-9b5a747fa4af", + "start": { + "$date": "2021-03-28T06:18:43.000Z" + }, + "end": { + "$date": "2021-03-28T06:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "59173b9d-2f65-4415-8515-be092c861984", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:46:56.000Z" + }, + "events": [ + { + "uuid": "1e29c47c-f8cf-427e-a1d3-5043dc7a8621", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a1c2b72f-13d4-4106-8b60-66c52e2d696e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-28T06:23:19.000Z" + }, + "end": { + "$date": "2021-03-28T06:34:24.000Z" + }, + "events": [ + { + "uuid": "8d2a3046-637b-477f-b08c-2c78666f9ab8", + "start": { + "$date": "2021-03-28T06:23:19.000Z" + }, + "end": { + "$date": "2021-03-28T06:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ad0aa912-2b95-4eef-94d8-32097aef25a0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-28T06:24:19.000Z" + }, + "end": { + "$date": "2021-03-28T09:27:23.000Z" + }, + "events": [ + { + "uuid": "6c9bec29-4f2d-433f-b985-05e7b007d6d5", + "start": { + "$date": "2021-03-28T06:24:19.000Z" + }, + "end": { + "$date": "2021-03-28T09:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ceee0786-f6e1-4df1-ab26-f3b88a924559", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T06:41:14.000Z" + }, + "end": { + "$date": "2021-03-28T06:59:06.000Z" + }, + "events": [ + { + "uuid": "3d328ba9-2057-4e33-83bf-ebace40fbed9", + "start": { + "$date": "2021-03-28T06:41:14.000Z" + }, + "end": { + "$date": "2021-03-28T06:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "dca73360-d5a3-49c6-b89a-4408dc285173", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:49:49.000Z" + }, + "events": [ + { + "uuid": "28568fe8-47e6-48de-99a8-bd006b82530a", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:49:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "db412a0f-9003-4493-af77-cb9fb822185a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:54:47.000Z" + }, + "events": [ + { + "uuid": "9851ac50-043c-43d1-bb66-48b38f5a37f0", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:54:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a308be80-a753-4ece-9a65-a8e979ea1910", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:59:06.000Z" + }, + "events": [ + { + "uuid": "3d26b60a-103e-4ac2-aa99-85ffe552fa55", + "start": { + "$date": "2021-03-28T06:22:44.000Z" + }, + "end": { + "$date": "2021-03-28T06:59:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "0a02959e-f018-48c3-a4be-3d6df8d50c10", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T23:21:38.000Z" + }, + "end": { + "$date": "2021-03-28T23:29:16.000Z" + }, + "events": [ + { + "uuid": "43c03335-8aca-4ece-9658-cf52604a2504", + "start": { + "$date": "2021-03-28T23:21:38.000Z" + }, + "end": { + "$date": "2021-03-29T00:02:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "075f076e-3e4c-4ffd-868e-14d6c998831b", + "start": { + "$date": "2021-03-29T00:02:38.000Z" + }, + "end": { + "$date": "2021-03-29T00:23:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8bda45cf-35f3-42c1-a19f-45f1636bcfbe", + "start": { + "$date": "2021-03-29T00:23:38.000Z" + }, + "end": { + "$date": "2021-03-29T14:37:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ad3b956-30b0-4e79-813a-20752e562337", + "start": { + "$date": "2021-03-29T14:37:38.000Z" + }, + "end": { + "$date": "2021-03-29T14:38:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d089b6e-4d08-45a4-bfc7-113ead0fe758", + "start": { + "$date": "2021-03-29T14:38:38.000Z" + }, + "end": { + "$date": "2021-03-29T14:41:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5edb9b0-fc36-46b3-ac2c-6273a42cb380", + "start": { + "$date": "2021-03-29T14:41:38.000Z" + }, + "end": { + "$date": "2021-03-29T15:05:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7293bb45-37f5-4be0-8897-b3ac230fb649", + "start": { + "$date": "2021-03-29T15:05:38.000Z" + }, + "end": { + "$date": "2021-03-29T15:42:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "572da7df-5bc8-413e-aafe-24cfff2f1b13", + "start": { + "$date": "2021-03-29T15:42:38.000Z" + }, + "end": { + "$date": "2021-03-28T23:29:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d237b2da-3104-42ca-ae57-c95c0db7a1c1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-28T07:24:55.000Z" + }, + "end": { + "$date": "2021-03-28T07:25:41.000Z" + }, + "events": [ + { + "uuid": "97de24b7-ac9f-476c-aa1f-9f052171b098", + "start": { + "$date": "2021-03-28T07:24:55.000Z" + }, + "end": { + "$date": "2021-03-28T07:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "82cf8877-9c45-421a-9abf-eaa47bdfa6cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-28T07:15:18.000Z" + }, + "end": { + "$date": "2021-03-28T08:08:34.000Z" + }, + "events": [ + { + "uuid": "b997fbb7-db0b-4c72-ba29-65b0aebc2c36", + "start": { + "$date": "2021-03-28T07:15:18.000Z" + }, + "end": { + "$date": "2021-03-28T08:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "eaf61128-26ca-428b-9da6-7c3df6861987", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-28T14:51:26.000Z" + }, + "end": { + "$date": "2021-03-28T14:54:35.000Z" + }, + "events": [ + { + "uuid": "923472e8-a43e-4773-ab12-93641f5683e6", + "start": { + "$date": "2021-03-28T14:51:26.000Z" + }, + "end": { + "$date": "2021-03-28T14:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "ac730a1d-ba9d-49c4-898a-4e207a6f5313", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-28T14:59:41.000Z" + }, + "end": { + "$date": "2021-03-28T15:32:21.000Z" + }, + "events": [ + { + "uuid": "653f94f8-aebf-4efc-b106-a4b03a1fe2a5", + "start": { + "$date": "2021-03-28T14:59:41.000Z" + }, + "end": { + "$date": "2021-03-28T15:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c845b7b-b831-445f-a2c2-48456e181bd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-28T15:40:28.000Z" + }, + "end": { + "$date": "2021-03-28T17:02:12.000Z" + }, + "events": [ + { + "uuid": "50789bad-114f-4611-9992-25cc9325715c", + "start": { + "$date": "2021-03-28T15:40:28.000Z" + }, + "end": { + "$date": "2021-03-28T17:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "36dde60f-53f0-42b9-8f36-18ae4d954150", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T17:10:29.000Z" + }, + "end": { + "$date": "2021-03-28T17:16:04.000Z" + }, + "events": [ + { + "uuid": "b621e7fa-5fb9-4fd3-974d-cae743bf1be3", + "start": { + "$date": "2021-03-28T17:10:29.000Z" + }, + "end": { + "$date": "2021-03-28T17:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9f42bcfb-ee4a-4e1a-aaa4-82bdc12067b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-28T17:16:55.000Z" + }, + "end": { + "$date": "2021-03-28T17:19:24.000Z" + }, + "events": [ + { + "uuid": "0e7fcebd-6dc3-410a-9293-9f283ced7d81", + "start": { + "$date": "2021-03-28T17:16:55.000Z" + }, + "end": { + "$date": "2021-03-28T17:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "0473a522-fd6e-437f-92ec-a7ba24dce50e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-28T17:17:24.000Z" + }, + "end": { + "$date": "2021-03-28T17:34:28.000Z" + }, + "events": [ + { + "uuid": "d536d394-b72e-41dd-bb6c-a34b1d75dfbc", + "start": { + "$date": "2021-03-28T17:17:24.000Z" + }, + "end": { + "$date": "2021-03-28T17:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "669c43e7-500e-460c-87f5-ef64436673fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-28T17:19:55.000Z" + }, + "end": { + "$date": "2021-03-28T21:01:47.000Z" + }, + "events": [ + { + "uuid": "36a0c7b5-761d-471e-be6a-ebb865a42278", + "start": { + "$date": "2021-03-28T17:19:55.000Z" + }, + "end": { + "$date": "2021-03-28T19:24:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "707fa592-9322-41ad-9345-42a9d128a051", + "start": { + "$date": "2021-03-28T19:24:55.000Z" + }, + "end": { + "$date": "2021-03-28T19:30:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "396527e4-d8b6-4639-aee4-79d3792dd8a7", + "start": { + "$date": "2021-03-28T19:30:55.000Z" + }, + "end": { + "$date": "2021-03-28T21:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "257c50ed-dac3-416b-88db-32cba18c6470", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-28T17:31:33.000Z" + }, + "end": { + "$date": "2021-03-28T18:47:26.000Z" + }, + "events": [ + { + "uuid": "e5a240e2-13cd-4aa1-b14c-7ae4f95120a7", + "start": { + "$date": "2021-03-28T17:31:33.000Z" + }, + "end": { + "$date": "2021-03-28T18:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d1235299-28e7-4782-8aa1-7b9b8b9b21fc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-28T17:42:24.000Z" + }, + "end": { + "$date": "2021-03-28T20:08:19.000Z" + }, + "events": [ + { + "uuid": "ff2a9a40-2614-49f1-b83d-50aa91707dee", + "start": { + "$date": "2021-03-28T17:42:24.000Z" + }, + "end": { + "$date": "2021-03-28T20:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "eab4ea05-08b4-429f-9699-1971db37599c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-28T18:47:41.000Z" + }, + "end": { + "$date": "2021-03-28T22:10:28.000Z" + }, + "events": [ + { + "uuid": "a57c3d9c-54a0-435c-a16c-e6631f8d7c03", + "start": { + "$date": "2021-03-28T18:47:41.000Z" + }, + "end": { + "$date": "2021-03-28T22:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d760efff-b626-4f8f-b287-7045c7e6ac34", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-28T18:50:44.000Z" + }, + "end": { + "$date": "2021-03-28T23:12:36.000Z" + }, + "events": [ + { + "uuid": "bd272cc9-fcb0-4596-a7d0-96b37ff826b8", + "start": { + "$date": "2021-03-28T18:50:44.000Z" + }, + "end": { + "$date": "2021-03-28T23:12:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2164e613-da03-4ca3-bd5a-5bb108bd57d9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-28T18:54:02.000Z" + }, + "end": { + "$date": "2021-03-28T19:26:11.000Z" + }, + "events": [ + { + "uuid": "9f62dc2a-f97a-43e7-9eed-f96022a074e8", + "start": { + "$date": "2021-03-28T18:54:02.000Z" + }, + "end": { + "$date": "2021-03-28T19:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "29c64396-15b2-45b5-89b2-ae9298354b50", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-28T19:00:21.000Z" + }, + "end": { + "$date": "2021-03-28T19:09:17.000Z" + }, + "events": [ + { + "uuid": "c8fe42e7-dff8-4709-8573-bf44f651dcac", + "start": { + "$date": "2021-03-28T19:00:21.000Z" + }, + "end": { + "$date": "2021-03-28T19:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", + "uuid": "60549e3c-eadb-48af-b92a-b289b25a2645", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-03-28T19:24:49.000Z" + }, + "end": { + "$date": "2021-03-28T23:07:02.000Z" + }, + "events": [ + { + "uuid": "e6599818-fec3-4675-b111-0a7504e97855", + "start": { + "$date": "2021-03-28T19:24:49.000Z" + }, + "end": { + "$date": "2021-03-28T23:07:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d1f098f-c648-453c-b8d2-cef0207c4f84", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-28T19:28:31.000Z" + }, + "end": { + "$date": "2021-03-28T19:46:19.000Z" + }, + "events": [ + { + "uuid": "324a0765-0a52-48b5-9f64-2a660f6ed4ea", + "start": { + "$date": "2021-03-28T19:28:31.000Z" + }, + "end": { + "$date": "2021-03-28T19:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b12e29d-e125-4e4c-b4bc-8768efb1726f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-28T20:14:57.000Z" + }, + "end": { + "$date": "2021-03-28T23:12:18.000Z" + }, + "events": [ + { + "uuid": "84030ff6-a3cc-4ba8-bfe3-86b89e1d54e4", + "start": { + "$date": "2021-03-28T20:14:57.000Z" + }, + "end": { + "$date": "2021-03-28T23:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9d3f5015-514e-4aa2-813a-5ce3a26e64e5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-28T22:12:50.000Z" + }, + "end": { + "$date": "2021-03-28T22:25:48.000Z" + }, + "events": [ + { + "uuid": "c1c0156f-3300-4613-9295-986d7a2c302f", + "start": { + "$date": "2021-03-28T22:12:50.000Z" + }, + "end": { + "$date": "2021-03-28T22:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "25a516a5-f48a-4e7d-b518-fe04434da4a5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-28T20:45:00.000Z" + }, + "end": { + "$date": "2021-03-28T22:01:42.000Z" + }, + "events": [ + { + "uuid": "a70aeffd-bec2-41be-88a9-74b1caae4274", + "start": { + "$date": "2021-03-28T20:45:00.000Z" + }, + "end": { + "$date": "2021-03-28T22:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a50f4cf8-732a-4322-a7af-62c12098bb4d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-28T22:02:26.000Z" + }, + "end": { + "$date": "2021-03-28T23:03:38.000Z" + }, + "events": [ + { + "uuid": "70b20579-b690-4319-aafd-14136621b317", + "start": { + "$date": "2021-03-28T22:02:26.000Z" + }, + "end": { + "$date": "2021-03-28T23:03:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "edc6e78b-05d5-4584-b649-621d835b90c0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-28T23:29:21.000Z" + }, + "end": { + "$date": "2021-03-29T07:23:42.000Z" + }, + "events": [ + { + "uuid": "234c4f68-af64-44e0-a3d0-e4aade60081e", + "start": { + "$date": "2021-03-28T23:29:21.000Z" + }, + "end": { + "$date": "2021-03-29T01:11:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58b7e827-f38b-4efc-b9c3-38bc3b457cae", + "start": { + "$date": "2021-03-29T01:11:21.000Z" + }, + "end": { + "$date": "2021-03-29T01:22:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74501949-d955-48e7-99cc-3ccbe838e3ff", + "start": { + "$date": "2021-03-29T01:22:21.000Z" + }, + "end": { + "$date": "2021-03-29T01:24:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f0a75f6-5c03-4f2c-9d23-2bd7db1dfe84", + "start": { + "$date": "2021-03-29T01:24:21.000Z" + }, + "end": { + "$date": "2021-03-29T01:35:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a7a22e85-6068-489e-a60d-bd8875fbf620", + "start": { + "$date": "2021-03-29T01:35:21.000Z" + }, + "end": { + "$date": "2021-03-29T01:36:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58321467-7905-4149-998b-6f9573b4e5ee", + "start": { + "$date": "2021-03-29T01:36:21.000Z" + }, + "end": { + "$date": "2021-03-29T02:07:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "853cdcae-90bc-4ee6-a554-456b7dca2d70", + "start": { + "$date": "2021-03-29T02:07:21.000Z" + }, + "end": { + "$date": "2021-03-29T03:21:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49c684dd-cd3a-430e-873d-f0fd764e8912", + "start": { + "$date": "2021-03-29T03:21:21.000Z" + }, + "end": { + "$date": "2021-03-29T03:28:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "640dd6d3-3585-4d8f-a953-a875427c7a94", + "start": { + "$date": "2021-03-29T03:28:21.000Z" + }, + "end": { + "$date": "2021-03-29T03:31:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ccd55b02-b2f6-47a4-bcd1-1881db83cee2", + "start": { + "$date": "2021-03-29T03:31:21.000Z" + }, + "end": { + "$date": "2021-03-29T04:22:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a91e3779-fbfd-4671-8371-be75fadacba3", + "start": { + "$date": "2021-03-29T04:22:21.000Z" + }, + "end": { + "$date": "2021-03-29T05:23:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbd97a78-9965-487c-8005-f066d384cc65", + "start": { + "$date": "2021-03-29T05:23:21.000Z" + }, + "end": { + "$date": "2021-03-29T05:24:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54911830-e3f5-4a5e-8141-6579cd72c1e4", + "start": { + "$date": "2021-03-29T05:24:21.000Z" + }, + "end": { + "$date": "2021-03-29T06:54:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8011198-6b7f-47e3-980e-e76635181af4", + "start": { + "$date": "2021-03-29T06:54:21.000Z" + }, + "end": { + "$date": "2021-03-29T06:56:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "024c97f5-8df2-4828-a968-875616ef36d3", + "start": { + "$date": "2021-03-29T06:56:21.000Z" + }, + "end": { + "$date": "2021-03-29T07:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "fe4ccc61-fb06-4ed1-bbff-39ad719baedf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-29T00:06:14.000Z" + }, + "end": { + "$date": "2021-03-29T01:47:32.000Z" + }, + "events": [ + { + "uuid": "f0f31fca-d128-43f5-8c49-37d91084594b", + "start": { + "$date": "2021-03-29T00:06:14.000Z" + }, + "end": { + "$date": "2021-03-29T01:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "34ed3135-7747-4369-b195-eb7a4377499c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T00:06:58.000Z" + }, + "end": { + "$date": "2021-03-29T01:13:12.000Z" + }, + "events": [ + { + "uuid": "e1d872bd-051e-4f00-b348-0eaf303c5128", + "start": { + "$date": "2021-03-29T00:06:58.000Z" + }, + "end": { + "$date": "2021-03-29T01:13:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8e915917-7ff3-4053-8ca8-a0e4da8c21db", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-29T00:06:59.000Z" + }, + "end": { + "$date": "2021-03-29T01:04:45.000Z" + }, + "events": [ + { + "uuid": "6f8c2a48-fa22-466f-ae61-54e3d960b179", + "start": { + "$date": "2021-03-29T00:06:59.000Z" + }, + "end": { + "$date": "2021-03-29T01:04:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8f364231-2e98-40db-815b-974a15dc5e25", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-29T00:50:25.000Z" + }, + "end": { + "$date": "2021-03-29T01:35:44.000Z" + }, + "events": [ + { + "uuid": "097f23b1-7236-4b2e-81bf-f443670976bd", + "start": { + "$date": "2021-03-29T00:50:25.000Z" + }, + "end": { + "$date": "2021-03-29T01:35:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "57052d79-76c1-452e-914a-c914c8eeff44", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T00:54:22.000Z" + }, + "end": { + "$date": "2021-03-29T00:55:52.000Z" + }, + "events": [ + { + "uuid": "71d5e0fe-53ac-4d6a-9afc-b0c96f208f7c", + "start": { + "$date": "2021-03-29T00:54:22.000Z" + }, + "end": { + "$date": "2021-03-29T00:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6458a01b-ef7e-4504-9ef3-826be76c1a91", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-29T00:54:38.000Z" + }, + "end": { + "$date": "2021-03-29T02:49:40.000Z" + }, + "events": [ + { + "uuid": "c38a263e-c184-445e-b06d-0fdea05ac178", + "start": { + "$date": "2021-03-29T00:54:38.000Z" + }, + "end": { + "$date": "2021-03-29T02:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "70ba0ee5-be1a-48d4-bba5-5003358a2f56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T01:02:07.000Z" + }, + "end": { + "$date": "2021-03-29T01:24:01.000Z" + }, + "events": [ + { + "uuid": "8cef70f2-073a-4c23-9d78-8cf271f3dbb8", + "start": { + "$date": "2021-03-29T01:02:07.000Z" + }, + "end": { + "$date": "2021-03-29T01:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "502c9c3c-63a9-4230-a8bc-b6bc5003e215", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-29T02:03:29.000Z" + }, + "end": { + "$date": "2021-03-29T03:31:31.000Z" + }, + "events": [ + { + "uuid": "9b8489e7-6a99-4140-9a58-d6606715506e", + "start": { + "$date": "2021-03-29T02:03:29.000Z" + }, + "end": { + "$date": "2021-03-29T03:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e103a07e-1752-4795-98be-cb8ef53e2a1b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-29T02:32:59.000Z" + }, + "end": { + "$date": "2021-03-29T03:41:39.000Z" + }, + "events": [ + { + "uuid": "7de04f9d-0405-495f-80fc-92f6e156d86b", + "start": { + "$date": "2021-03-29T02:32:59.000Z" + }, + "end": { + "$date": "2021-03-29T03:41:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3302122e-07cb-493a-b9dc-88fb323bf011", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T02:27:56.000Z" + }, + "end": { + "$date": "2021-03-29T03:44:33.000Z" + }, + "events": [ + { + "uuid": "70f8b355-e781-4663-8503-0390a9597761", + "start": { + "$date": "2021-03-29T02:27:56.000Z" + }, + "end": { + "$date": "2021-03-29T03:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "14bc64cb-c79b-4a12-b991-6b5bf61e7d24", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-29T02:31:54.000Z" + }, + "end": { + "$date": "2021-03-29T05:57:32.000Z" + }, + "events": [ + { + "uuid": "84a4d4be-97d8-40a4-af96-94ff83267f41", + "start": { + "$date": "2021-03-29T02:31:54.000Z" + }, + "end": { + "$date": "2021-03-29T05:57:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1f2fa2d1-0ee8-4b47-884b-c2356c023dd7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T02:54:44.000Z" + }, + "end": { + "$date": "2021-03-29T03:30:30.000Z" + }, + "events": [ + { + "uuid": "29139b85-0f76-4162-9b51-0b64dc292087", + "start": { + "$date": "2021-03-29T02:54:44.000Z" + }, + "end": { + "$date": "2021-03-29T03:30:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "eddb8971-9b6d-46b9-a7a2-12987bcc16c2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-29T02:59:24.000Z" + }, + "end": { + "$date": "2021-03-29T05:53:23.000Z" + }, + "events": [ + { + "uuid": "2a295210-70c7-417e-92a1-dfa52a4a2b70", + "start": { + "$date": "2021-03-29T02:59:24.000Z" + }, + "end": { + "$date": "2021-03-29T05:53:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "de497972-937b-4d79-b813-ab2416b06aa2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-29T03:38:59.000Z" + }, + "end": { + "$date": "2021-03-29T06:37:10.000Z" + }, + "events": [ + { + "uuid": "67fbb358-30fa-49ca-b618-33182d0c544a", + "start": { + "$date": "2021-03-29T03:38:59.000Z" + }, + "end": { + "$date": "2021-03-29T06:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "625b0dec-30f7-496c-945d-3dcea9c1c4c6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-29T03:45:01.000Z" + }, + "end": { + "$date": "2021-03-29T06:37:23.000Z" + }, + "events": [ + { + "uuid": "01939520-9e76-46f9-a7b9-bb4ba1759575", + "start": { + "$date": "2021-03-29T03:45:01.000Z" + }, + "end": { + "$date": "2021-03-29T06:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68ae1b71-dbc5-406a-82a1-123b578c7107", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-29T04:20:10.000Z" + }, + "end": { + "$date": "2021-03-29T04:46:54.000Z" + }, + "events": [ + { + "uuid": "e17743d5-ea21-438b-9ea2-3cb649be70e6", + "start": { + "$date": "2021-03-29T04:20:10.000Z" + }, + "end": { + "$date": "2021-03-29T04:46:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "cd0864ea-a601-4c1d-a59b-2ebef0710d07", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-29T05:09:53.000Z" + }, + "end": { + "$date": "2021-03-29T05:14:38.000Z" + }, + "events": [ + { + "uuid": "5add0f7f-1f6c-44e3-ac0c-dfed8265a1b4", + "start": { + "$date": "2021-03-29T05:09:53.000Z" + }, + "end": { + "$date": "2021-03-29T05:14:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "9dda1358-7fba-4e59-87e6-e3d87e0a0489", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-29T07:23:48.000Z" + }, + "end": { + "$date": "2021-03-29T23:55:28.000Z" + }, + "events": [ + { + "uuid": "7e21fa43-1edc-42c1-923b-ccc5d6c7d7d6", + "start": { + "$date": "2021-03-29T07:23:48.000Z" + }, + "end": { + "$date": "2021-03-29T07:51:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a33d4540-2264-48ba-bddf-ea7fed120f4d", + "start": { + "$date": "2021-03-29T07:51:48.000Z" + }, + "end": { + "$date": "2021-03-29T19:06:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "06315005-ac67-4859-9cb9-962b140c71fd", + "start": { + "$date": "2021-03-29T19:06:48.000Z" + }, + "end": { + "$date": "2021-03-29T19:16:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b25bdae-a49d-45e3-8326-9748dc6fe9d1", + "start": { + "$date": "2021-03-29T19:16:48.000Z" + }, + "end": { + "$date": "2021-03-29T19:24:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "335a1116-78fd-4803-adf4-b11f752af6c2", + "start": { + "$date": "2021-03-29T19:24:48.000Z" + }, + "end": { + "$date": "2021-03-29T19:25:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a82d046-2a33-4607-94dd-52f85eaf88f8", + "start": { + "$date": "2021-03-29T19:25:48.000Z" + }, + "end": { + "$date": "2021-03-29T20:26:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "014d527c-cead-4896-9b15-b688f50ef9be", + "start": { + "$date": "2021-03-29T20:26:48.000Z" + }, + "end": { + "$date": "2021-03-29T20:48:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7f3e25c-8877-4046-ad41-64680f2cb479", + "start": { + "$date": "2021-03-29T20:48:48.000Z" + }, + "end": { + "$date": "2021-03-29T20:56:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e399f3e4-b570-4313-9fdf-44559bb45fea", + "start": { + "$date": "2021-03-29T20:56:48.000Z" + }, + "end": { + "$date": "2021-03-29T21:14:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "781bcad4-9918-4254-9e1a-e55f2e26e6fc", + "start": { + "$date": "2021-03-29T21:14:48.000Z" + }, + "end": { + "$date": "2021-03-29T21:17:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1055a8bc-dd5c-434b-8b2f-d052acb53ab9", + "start": { + "$date": "2021-03-29T21:17:48.000Z" + }, + "end": { + "$date": "2021-03-29T21:18:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc2d7225-63a6-4872-9e8b-22b5f5543ac1", + "start": { + "$date": "2021-03-29T21:18:48.000Z" + }, + "end": { + "$date": "2021-03-29T21:42:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "08336814-25f7-4e63-83d3-6856f04e4604", + "start": { + "$date": "2021-03-29T21:42:48.000Z" + }, + "end": { + "$date": "2021-03-29T21:43:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0fca564b-8246-400c-9f8d-bc845f246b17", + "start": { + "$date": "2021-03-29T21:43:48.000Z" + }, + "end": { + "$date": "2021-03-29T22:34:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b9cae78c-3963-4882-bb05-55f3eb5618b1", + "start": { + "$date": "2021-03-29T22:34:48.000Z" + }, + "end": { + "$date": "2021-03-29T23:48:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8239ecc7-4239-4604-8e27-51fb471da8fa", + "start": { + "$date": "2021-03-29T23:48:48.000Z" + }, + "end": { + "$date": "2021-03-29T23:53:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f12f952d-d2bc-4c88-82a8-c42f2fad9462", + "start": { + "$date": "2021-03-29T23:53:48.000Z" + }, + "end": { + "$date": "2021-03-29T23:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f9281279-783b-4ab5-bba7-915ee44ef413", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T14:00:54.000Z" + }, + "end": { + "$date": "2021-03-29T14:25:35.000Z" + }, + "events": [ + { + "uuid": "5c0b9096-6946-4400-b02b-32cd9583744e", + "start": { + "$date": "2021-03-29T14:00:54.000Z" + }, + "end": { + "$date": "2021-03-29T14:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ba192f86-8e12-4b80-a267-3cb0a4464e11", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-29T15:02:27.000Z" + }, + "end": { + "$date": "2021-03-29T16:09:10.000Z" + }, + "events": [ + { + "uuid": "14d5f599-fab0-4a57-9ab5-2c04945dabc0", + "start": { + "$date": "2021-03-29T15:02:27.000Z" + }, + "end": { + "$date": "2021-03-29T16:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "eb3fc4d6-47b2-4a9c-8eb7-a2dc36973530", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T15:33:53.000Z" + }, + "end": { + "$date": "2021-03-29T15:59:22.000Z" + }, + "events": [ + { + "uuid": "f9868ec9-f9e5-4e2c-b104-ae2987bbf8ae", + "start": { + "$date": "2021-03-29T15:33:53.000Z" + }, + "end": { + "$date": "2021-03-29T15:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0f421aa3-e047-40fe-bc7e-c329ab49ca1e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T16:09:01.000Z" + }, + "end": { + "$date": "2021-03-29T16:16:17.000Z" + }, + "events": [ + { + "uuid": "1d212ed0-5ca5-419e-bb8e-09fe149d0b29", + "start": { + "$date": "2021-03-29T16:09:01.000Z" + }, + "end": { + "$date": "2021-03-29T16:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "4363bfcb-52cf-4839-808b-124361dac847", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T16:23:28.000Z" + }, + "end": { + "$date": "2021-03-29T17:02:15.000Z" + }, + "events": [ + { + "uuid": "5de27eb4-7068-4ef9-a5e9-489c2160cccc", + "start": { + "$date": "2021-03-29T16:23:28.000Z" + }, + "end": { + "$date": "2021-03-29T17:02:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fd4735e9-1e3d-4907-b47f-6b7a6cb25737", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-29T16:44:14.000Z" + }, + "end": { + "$date": "2021-03-29T16:45:24.000Z" + }, + "events": [ + { + "uuid": "cf17ef00-2fb7-4a15-a1c9-7643fae360d9", + "start": { + "$date": "2021-03-29T16:44:14.000Z" + }, + "end": { + "$date": "2021-03-29T16:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4bcfcbfc-db8a-4a5d-86be-1f1ce701865e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-29T16:46:30.000Z" + }, + "end": { + "$date": "2021-03-29T17:58:30.000Z" + }, + "events": [ + { + "uuid": "eadb2072-088f-45f5-87ff-b850c08c6a22", + "start": { + "$date": "2021-03-29T16:46:30.000Z" + }, + "end": { + "$date": "2021-03-29T17:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "30253fe9-6779-4142-83ff-34544d19305f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T17:32:27.000Z" + }, + "end": { + "$date": "2021-03-29T18:33:21.000Z" + }, + "events": [ + { + "uuid": "750e2a5f-806e-4f7f-be1f-cdf8378c527a", + "start": { + "$date": "2021-03-29T17:32:27.000Z" + }, + "end": { + "$date": "2021-03-29T18:33:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0a49a064-c464-49cc-b7bf-4f8217ba5d10", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T17:40:22.000Z" + }, + "end": { + "$date": "2021-03-29T19:47:43.000Z" + }, + "events": [ + { + "uuid": "7da09f81-981f-4e1b-b382-9c0093b12fdd", + "start": { + "$date": "2021-03-29T17:40:22.000Z" + }, + "end": { + "$date": "2021-03-29T18:13:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe272912-3dbf-4d2e-bda5-bb0af1c48ba5", + "start": { + "$date": "2021-03-29T18:13:22.000Z" + }, + "end": { + "$date": "2021-03-29T18:22:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5368d2ce-2751-450c-9715-1aa39d98009c", + "start": { + "$date": "2021-03-29T18:22:22.000Z" + }, + "end": { + "$date": "2021-03-29T19:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8a5b9344-0564-4660-b0e0-f9a1e17f18f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-29T19:08:19.000Z" + }, + "end": { + "$date": "2021-03-29T20:59:24.000Z" + }, + "events": [ + { + "uuid": "077a80fd-670e-4cf6-8395-3b471cb47d22", + "start": { + "$date": "2021-03-29T19:08:19.000Z" + }, + "end": { + "$date": "2021-03-29T19:16:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b895a51-8701-4ad5-b26f-ed2f6d3629fe", + "start": { + "$date": "2021-03-29T19:16:19.000Z" + }, + "end": { + "$date": "2021-03-29T20:59:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5139f9d8-f2a3-4020-9499-d696c2c69abb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-29T19:11:15.000Z" + }, + "end": { + "$date": "2021-03-29T20:09:12.000Z" + }, + "events": [ + { + "uuid": "6a495cea-1f93-4dea-aa3e-73ec322c15a4", + "start": { + "$date": "2021-03-29T19:11:15.000Z" + }, + "end": { + "$date": "2021-03-29T20:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "227709f2-6584-4ed3-aa0e-a31edd02ff16", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T20:16:59.000Z" + }, + "end": { + "$date": "2021-03-29T20:41:05.000Z" + }, + "events": [ + { + "uuid": "c3513bf3-4f60-44fc-9420-37df20dc87a6", + "start": { + "$date": "2021-03-29T20:16:59.000Z" + }, + "end": { + "$date": "2021-03-29T20:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "53602e54-c9b5-4693-9d46-10adca1ca83d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-29T20:17:10.000Z" + }, + "end": { + "$date": "2021-03-29T20:34:40.000Z" + }, + "events": [ + { + "uuid": "cb2ffc23-3952-48ae-a325-83cd27a13986", + "start": { + "$date": "2021-03-29T20:17:10.000Z" + }, + "end": { + "$date": "2021-03-29T20:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "31247b74-d952-4d1a-a3b4-108fb7934a75", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-29T21:24:41.000Z" + }, + "end": { + "$date": "2021-03-29T21:31:58.000Z" + }, + "events": [ + { + "uuid": "c5dc3b59-e8f7-4085-914c-3b09099fcc42", + "start": { + "$date": "2021-03-29T21:24:41.000Z" + }, + "end": { + "$date": "2021-03-29T21:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "821cdf5f-88e9-4d88-badd-26542403a5e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-29T21:28:39.000Z" + }, + "end": { + "$date": "2021-03-29T22:05:16.000Z" + }, + "events": [ + { + "uuid": "dfb7c55e-1e8a-4d10-8833-34a6940b229f", + "start": { + "$date": "2021-03-29T21:28:39.000Z" + }, + "end": { + "$date": "2021-03-29T22:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "959c8da5-3b70-4126-b235-0f2f59fa625d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-29T21:37:45.000Z" + }, + "end": { + "$date": "2021-03-29T23:04:38.000Z" + }, + "events": [ + { + "uuid": "469a1b28-99e6-483b-b75b-194987bd933a", + "start": { + "$date": "2021-03-29T21:37:45.000Z" + }, + "end": { + "$date": "2021-03-29T23:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9798f215-7dcb-4922-b084-e38da4f96ad0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T21:42:59.000Z" + }, + "end": { + "$date": "2021-03-29T22:08:57.000Z" + }, + "events": [ + { + "uuid": "4d18ef36-25bc-4f6d-b409-f4c213daa730", + "start": { + "$date": "2021-03-29T21:42:59.000Z" + }, + "end": { + "$date": "2021-03-29T22:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "734dd2ae-af36-4691-9335-3a1a0c6021b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-29T22:09:22.000Z" + }, + "end": { + "$date": "2021-03-30T00:26:48.000Z" + }, + "events": [ + { + "uuid": "926511ca-4234-4da2-8236-dc53e9fed499", + "start": { + "$date": "2021-03-29T22:09:22.000Z" + }, + "end": { + "$date": "2021-03-30T00:26:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "7d2d81a9-0cdd-4e14-bd93-e80f25c62426", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-29T22:09:57.000Z" + }, + "end": { + "$date": "2021-03-29T23:56:45.000Z" + }, + "events": [ + { + "uuid": "c51269d9-c48c-4469-a49d-8b16950fb67a", + "start": { + "$date": "2021-03-29T22:09:57.000Z" + }, + "end": { + "$date": "2021-03-29T23:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6016d3cc-978a-4c84-b481-4690b19e8407", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-29T22:25:09.000Z" + }, + "end": { + "$date": "2021-03-29T22:28:39.000Z" + }, + "events": [ + { + "uuid": "f52d379f-55da-4ea8-bd07-0f9259a8a797", + "start": { + "$date": "2021-03-29T22:25:09.000Z" + }, + "end": { + "$date": "2021-03-29T22:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "8dd3143b-522f-4811-98f9-80666180e56c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-29T23:33:40.000Z" + }, + "end": { + "$date": "2021-03-30T00:47:26.000Z" + }, + "events": [ + { + "uuid": "5a656bf3-ad31-49a2-a212-ef3f1615aefd", + "start": { + "$date": "2021-03-29T23:33:40.000Z" + }, + "end": { + "$date": "2021-03-30T00:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e2553362-35bf-405d-ad99-df49c24b731f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-29T23:33:45.000Z" + }, + "end": { + "$date": "2021-03-30T00:29:44.000Z" + }, + "events": [ + { + "uuid": "bda63111-2186-4d17-bbc9-80ebf443ddcd", + "start": { + "$date": "2021-03-29T23:33:45.000Z" + }, + "end": { + "$date": "2021-03-29T23:44:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13f221c4-3efb-48c1-8b46-097c8002f4e1", + "start": { + "$date": "2021-03-29T23:44:45.000Z" + }, + "end": { + "$date": "2021-03-29T23:50:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "06f5dcf6-1fd9-42f2-8704-988ecedefeba", + "start": { + "$date": "2021-03-29T23:50:45.000Z" + }, + "end": { + "$date": "2021-03-30T00:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "847b6385-814e-4ffa-baf4-a1c61978aab1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-30T01:05:15.000Z" + }, + "end": { + "$date": "2021-03-30T02:12:54.000Z" + }, + "events": [ + { + "uuid": "0069b2c2-f542-4aff-844b-122264cc69a6", + "start": { + "$date": "2021-03-30T01:05:15.000Z" + }, + "end": { + "$date": "2021-03-30T02:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "60118b89-11e1-40f2-86e0-9e0ee6028f26", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-30T01:36:24.000Z" + }, + "end": { + "$date": "2021-03-30T04:02:26.000Z" + }, + "events": [ + { + "uuid": "7c87760b-8908-48e6-8041-440fc710f2d2", + "start": { + "$date": "2021-03-30T01:36:24.000Z" + }, + "end": { + "$date": "2021-03-30T04:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "801332ba-ab6a-4f62-9777-30b7842a6380", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-30T01:50:45.000Z" + }, + "end": { + "$date": "2021-03-30T05:37:44.000Z" + }, + "events": [ + { + "uuid": "197cdb44-9228-40b2-b649-f7499a647373", + "start": { + "$date": "2021-03-30T01:50:45.000Z" + }, + "end": { + "$date": "2021-03-30T05:37:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "76982b3d-d30c-45f1-b68f-48eb91be2f13", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-30T01:53:35.000Z" + }, + "end": { + "$date": "2021-03-30T02:54:31.000Z" + }, + "events": [ + { + "uuid": "3a6bb000-409a-4c21-b31c-8864347ec4d6", + "start": { + "$date": "2021-03-30T01:53:35.000Z" + }, + "end": { + "$date": "2021-03-30T02:54:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "40147ff9-1368-47e3-ad4e-041a10bd1cae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-30T02:11:16.000Z" + }, + "end": { + "$date": "2021-03-30T02:54:43.000Z" + }, + "events": [ + { + "uuid": "146f4c6b-12d2-4763-b1b2-fb081086f733", + "start": { + "$date": "2021-03-30T02:11:16.000Z" + }, + "end": { + "$date": "2021-03-30T02:54:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0acb8960-3320-47d8-9d45-8a4837f197fd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-30T02:43:14.000Z" + }, + "end": { + "$date": "2021-03-30T04:56:33.000Z" + }, + "events": [ + { + "uuid": "c2662243-8024-48ac-b55b-fd1008ccd993", + "start": { + "$date": "2021-03-30T02:43:14.000Z" + }, + "end": { + "$date": "2021-03-30T04:56:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c0ed44e9-7759-4282-84d2-8c67ce90c2fd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-30T03:41:57.000Z" + }, + "end": { + "$date": "2021-03-30T04:08:11.000Z" + }, + "events": [ + { + "uuid": "7bf453be-a9ea-4aec-bc48-cb7a282082d9", + "start": { + "$date": "2021-03-30T03:41:57.000Z" + }, + "end": { + "$date": "2021-03-30T04:08:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a2e2dea-d90e-4aed-b938-9799ea8f1df8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-30T04:08:32.000Z" + }, + "end": { + "$date": "2021-03-30T04:38:59.000Z" + }, + "events": [ + { + "uuid": "6d69c762-0885-4f47-b1ca-3ad04efa7f24", + "start": { + "$date": "2021-03-30T04:08:32.000Z" + }, + "end": { + "$date": "2021-03-30T04:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "ee99af0e-149f-44b8-8a31-d73b7ee3d696", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-30T04:13:10.000Z" + }, + "end": { + "$date": "2021-03-30T08:05:00.000Z" + }, + "events": [ + { + "uuid": "0878e919-06c2-4b38-bffb-ab23f85e0e28", + "start": { + "$date": "2021-03-30T04:13:10.000Z" + }, + "end": { + "$date": "2021-03-30T06:04:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aeee6995-4e76-4b0c-b249-3d2b8036bf6a", + "start": { + "$date": "2021-03-30T06:04:10.000Z" + }, + "end": { + "$date": "2021-03-30T06:23:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6bcff17-7069-4225-bcc6-fa9dc577bc8e", + "start": { + "$date": "2021-03-30T06:23:10.000Z" + }, + "end": { + "$date": "2021-03-30T06:24:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "16eab1cc-ff65-41e2-993e-2f163babe09d", + "start": { + "$date": "2021-03-30T06:24:10.000Z" + }, + "end": { + "$date": "2021-03-30T08:01:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aeecfa47-e40e-40ec-81ae-34f7d2a41ec2", + "start": { + "$date": "2021-03-30T08:01:10.000Z" + }, + "end": { + "$date": "2021-03-30T08:05:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7d13fcbe-c732-4604-bb91-fb84a161ecc5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-30T04:22:04.000Z" + }, + "end": { + "$date": "2021-03-30T06:12:43.000Z" + }, + "events": [ + { + "uuid": "cfe99d28-eb7e-4bdc-9166-6f98385406ce", + "start": { + "$date": "2021-03-30T04:22:04.000Z" + }, + "end": { + "$date": "2021-03-30T06:12:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fbb2933-bbe4-43d9-920e-8421d5d5fd50", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-30T04:36:57.000Z" + }, + "end": { + "$date": "2021-03-30T05:21:09.000Z" + }, + "events": [ + { + "uuid": "f091205a-0cc0-4c48-9953-f8a38541fbe0", + "start": { + "$date": "2021-03-30T04:36:57.000Z" + }, + "end": { + "$date": "2021-03-30T05:21:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6301c999-4a2b-43ea-8f47-ea55eb837113", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-30T05:14:13.000Z" + }, + "end": { + "$date": "2021-03-30T05:37:56.000Z" + }, + "events": [ + { + "uuid": "2f5355e7-561a-41ba-abd9-b81869acba31", + "start": { + "$date": "2021-03-30T05:14:13.000Z" + }, + "end": { + "$date": "2021-03-30T05:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cd5a167-2ba2-4513-9f0e-d7ae28d40844", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-30T05:33:39.000Z" + }, + "end": { + "$date": "2021-03-30T05:37:35.000Z" + }, + "events": [ + { + "uuid": "1813be8a-0507-4f68-989e-af7c5d75bb66", + "start": { + "$date": "2021-03-30T05:33:39.000Z" + }, + "end": { + "$date": "2021-03-30T05:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c05a31b-fc65-4197-bb58-e10d614d1f08", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-30T05:46:40.000Z" + }, + "end": { + "$date": "2021-03-30T06:13:16.000Z" + }, + "events": [ + { + "uuid": "f8b23e3d-cce7-4522-b31d-4d756d346727", + "start": { + "$date": "2021-03-30T05:46:40.000Z" + }, + "end": { + "$date": "2021-03-30T06:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "3a938d9a-755b-4736-95b7-aa0ab0b94503", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-03-30T04:13:10.000Z" + }, + "end": { + "$date": "2021-03-31T00:36:17.000Z" + }, + "events": [ + { + "uuid": "b7cc12e9-c6cc-4c7a-a4af-27e6f83a7f03", + "start": { + "$date": "2021-03-30T04:13:10.000Z" + }, + "end": { + "$date": "2021-03-30T04:23:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7e3a2d3-19a9-46ab-998b-f856b0777e21", + "start": { + "$date": "2021-03-30T04:23:10.000Z" + }, + "end": { + "$date": "2021-03-30T04:42:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "902dc769-3161-4011-b418-a66dbfeba180", + "start": { + "$date": "2021-03-30T04:42:10.000Z" + }, + "end": { + "$date": "2021-03-30T04:53:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8ff7f93d-f238-4846-bdd8-58c2a1c1088e", + "start": { + "$date": "2021-03-30T04:53:10.000Z" + }, + "end": { + "$date": "2021-03-30T05:28:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0f5433f2-27bb-42e5-9f64-a26480896567", + "start": { + "$date": "2021-03-30T05:28:10.000Z" + }, + "end": { + "$date": "2021-03-30T05:30:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "453fd69d-ec27-4ff6-a8e9-aff36b6c0e81", + "start": { + "$date": "2021-03-30T05:30:10.000Z" + }, + "end": { + "$date": "2021-03-30T13:02:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a2d0bb7-7268-44ec-b427-888f7e5cf362", + "start": { + "$date": "2021-03-30T13:02:10.000Z" + }, + "end": { + "$date": "2021-03-30T13:08:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09d70c6a-4ac0-46d3-891b-1257ce538165", + "start": { + "$date": "2021-03-30T13:08:10.000Z" + }, + "end": { + "$date": "2021-03-30T13:10:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e43e560-7f7a-4fe8-b8ad-c3bd61087084", + "start": { + "$date": "2021-03-30T13:10:10.000Z" + }, + "end": { + "$date": "2021-03-30T13:22:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3caa4748-ad70-4971-b5d8-8e2f85d8fbba", + "start": { + "$date": "2021-03-30T13:22:10.000Z" + }, + "end": { + "$date": "2021-03-30T19:16:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a609d275-f6a2-4f4a-875f-3447e0d6059c", + "start": { + "$date": "2021-03-30T19:16:10.000Z" + }, + "end": { + "$date": "2021-03-30T19:20:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4fb2d9e3-a59a-4f1f-b4f8-869ff33d570c", + "start": { + "$date": "2021-03-30T19:20:10.000Z" + }, + "end": { + "$date": "2021-03-30T20:40:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e98c151e-a380-4ad9-9937-ee0496adda7a", + "start": { + "$date": "2021-03-30T20:40:10.000Z" + }, + "end": { + "$date": "2021-03-31T00:36:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "1885a286-539e-41c5-873e-bd9f95359f1a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-03-30T15:58:57.000Z" + }, + "end": { + "$date": "2021-03-31T00:09:32.000Z" + }, + "events": [ + { + "uuid": "ca0ef5b6-1eb6-499e-917e-76487b118a65", + "start": { + "$date": "2021-03-30T15:58:57.000Z" + }, + "end": { + "$date": "2021-03-30T18:06:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a137d3e-5e44-4273-b0dd-d513f57c5460", + "start": { + "$date": "2021-03-30T18:06:57.000Z" + }, + "end": { + "$date": "2021-03-30T18:32:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ab0231ae-d41f-4c57-95f5-a1264b84b145", + "start": { + "$date": "2021-03-30T18:32:57.000Z" + }, + "end": { + "$date": "2021-03-31T00:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f762538f-5512-4b21-ab02-da385a1f2525", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-30T16:43:59.000Z" + }, + "end": { + "$date": "2021-03-30T17:36:41.000Z" + }, + "events": [ + { + "uuid": "92044f7d-2209-4c9e-90ff-2577ed1c7a0e", + "start": { + "$date": "2021-03-30T16:43:59.000Z" + }, + "end": { + "$date": "2021-03-30T17:36:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d6134e6-0ccb-4025-a3d2-343d31191806", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-30T17:58:20.000Z" + }, + "end": { + "$date": "2021-03-30T18:33:35.000Z" + }, + "events": [ + { + "uuid": "aed1de1e-ad81-4278-a9f7-ed68d4a17a40", + "start": { + "$date": "2021-03-30T17:58:20.000Z" + }, + "end": { + "$date": "2021-03-30T18:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b486eb39-277f-4436-9686-b42200c8545f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-30T19:16:23.000Z" + }, + "end": { + "$date": "2021-03-30T19:39:49.000Z" + }, + "events": [ + { + "uuid": "0d31eb8f-af2f-4287-8d9b-bad22549c486", + "start": { + "$date": "2021-03-30T19:16:23.000Z" + }, + "end": { + "$date": "2021-03-30T19:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fb8d4e4c-3be3-4ee6-8026-4bd9b144f695", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-30T19:27:37.000Z" + }, + "end": { + "$date": "2021-03-30T20:34:21.000Z" + }, + "events": [ + { + "uuid": "8519ca9b-921d-41d3-8dbe-6dd119a5bd2a", + "start": { + "$date": "2021-03-30T19:27:37.000Z" + }, + "end": { + "$date": "2021-03-30T20:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30d22fc6-db09-4fac-8010-0da7cd51e25b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-30T19:45:35.000Z" + }, + "end": { + "$date": "2021-03-30T20:15:57.000Z" + }, + "events": [ + { + "uuid": "86af9e12-49f7-408a-b45d-4bc4eb283932", + "start": { + "$date": "2021-03-30T19:45:35.000Z" + }, + "end": { + "$date": "2021-03-30T20:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b8ab2331-06b7-4f88-91ab-a381da1e71e5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-30T20:24:54.000Z" + }, + "end": { + "$date": "2021-03-30T22:20:57.000Z" + }, + "events": [ + { + "uuid": "8c277e4c-dce2-4ca1-8695-b27d093ce328", + "start": { + "$date": "2021-03-30T20:24:54.000Z" + }, + "end": { + "$date": "2021-03-30T21:01:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1de77af0-fd96-4de9-8c58-da4787c9d68c", + "start": { + "$date": "2021-03-30T21:01:54.000Z" + }, + "end": { + "$date": "2021-03-30T21:02:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f0ca2e58-b103-4f91-b71a-c389e8f9c1a3", + "start": { + "$date": "2021-03-30T21:02:54.000Z" + }, + "end": { + "$date": "2021-03-30T21:29:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a322a1e0-7b9b-4cd9-9742-b13ea7a3cab2", + "start": { + "$date": "2021-03-30T21:29:54.000Z" + }, + "end": { + "$date": "2021-03-30T21:39:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d29977ea-a682-4d0f-8990-b764e215b32d", + "start": { + "$date": "2021-03-30T21:39:54.000Z" + }, + "end": { + "$date": "2021-03-30T22:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "a77b6329-434a-45d7-9ddb-30875f105f92", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-30T20:52:54.000Z" + }, + "end": { + "$date": "2021-03-30T22:44:48.000Z" + }, + "events": [ + { + "uuid": "36656695-d010-4e6b-81ea-c341e94690b0", + "start": { + "$date": "2021-03-30T20:52:54.000Z" + }, + "end": { + "$date": "2021-03-30T22:44:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f40d8589-3996-4777-835e-a6236d2b83d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-30T20:54:44.000Z" + }, + "end": { + "$date": "2021-03-30T22:06:44.000Z" + }, + "events": [ + { + "uuid": "e8c9ce9b-b9e0-4e08-b29a-3b179cb3d900", + "start": { + "$date": "2021-03-30T20:54:44.000Z" + }, + "end": { + "$date": "2021-03-30T22:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f8aa5850-d7a0-42dc-981d-8479140b1ad7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-30T21:30:37.000Z" + }, + "end": { + "$date": "2021-03-30T22:35:09.000Z" + }, + "events": [ + { + "uuid": "b073bb00-0a23-4983-9b81-66f7d9f12e1d", + "start": { + "$date": "2021-03-30T21:30:37.000Z" + }, + "end": { + "$date": "2021-03-30T22:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f423ed69-01f1-4eeb-a201-8e63733dad54", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-30T22:22:18.000Z" + }, + "end": { + "$date": "2021-03-30T23:21:28.000Z" + }, + "events": [ + { + "uuid": "bba89939-8008-42de-805d-6f0e55e1e476", + "start": { + "$date": "2021-03-30T22:22:18.000Z" + }, + "end": { + "$date": "2021-03-30T23:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9ad300cd-4d8c-4c36-a5ea-5482905fea7a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-30T22:37:41.000Z" + }, + "end": { + "$date": "2021-03-31T00:49:54.000Z" + }, + "events": [ + { + "uuid": "0906e066-4372-4154-8648-7a5db2c4e25e", + "start": { + "$date": "2021-03-30T22:37:41.000Z" + }, + "end": { + "$date": "2021-03-31T00:49:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "3f5987e8-c4a1-4bd6-ae03-861171f85686", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-30T22:50:50.000Z" + }, + "end": { + "$date": "2021-03-30T23:12:24.000Z" + }, + "events": [ + { + "uuid": "db1658ac-6b58-4bf6-8fd3-976a3409e88d", + "start": { + "$date": "2021-03-30T22:50:50.000Z" + }, + "end": { + "$date": "2021-03-30T23:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "489b407b-eb1c-4cea-9f1a-bc0275030381", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-30T23:12:50.000Z" + }, + "end": { + "$date": "2021-03-30T23:51:58.000Z" + }, + "events": [ + { + "uuid": "25deccc2-1f62-4038-b4e5-f737606c06a4", + "start": { + "$date": "2021-03-30T23:12:50.000Z" + }, + "end": { + "$date": "2021-03-30T23:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8355fcd9-1fda-44f8-a9b7-71b14eefcd9e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-30T23:39:59.000Z" + }, + "end": { + "$date": "2021-03-31T00:08:31.000Z" + }, + "events": [ + { + "uuid": "f800c910-aa28-4020-b6c9-43da08cf7967", + "start": { + "$date": "2021-03-30T23:39:59.000Z" + }, + "end": { + "$date": "2021-03-31T00:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "daad2751-6b52-42b2-b870-9f50446067b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-31T00:45:31.000Z" + }, + "end": { + "$date": "2021-03-31T00:48:00.000Z" + }, + "events": [ + { + "uuid": "98fcbdc3-2b78-48ae-81aa-6631f6bc7b5f", + "start": { + "$date": "2021-03-31T00:45:31.000Z" + }, + "end": { + "$date": "2021-03-31T00:48:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f5b90d3-7462-43ea-b7a7-c9112f79a331", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-31T00:11:00.000Z" + }, + "end": { + "$date": "2021-03-31T00:24:46.000Z" + }, + "events": [ + { + "uuid": "2c058ef1-285f-48f5-9bb1-3467ff82d19b", + "start": { + "$date": "2021-03-31T00:11:00.000Z" + }, + "end": { + "$date": "2021-03-31T00:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "f6efb065-cfd4-4f67-9d00-f10e6313d528", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-31T01:11:07.000Z" + }, + "end": { + "$date": "2021-03-31T05:01:20.000Z" + }, + "events": [ + { + "uuid": "8cb43232-d3f2-4202-b9dd-1cd704ee6d85", + "start": { + "$date": "2021-03-31T01:11:07.000Z" + }, + "end": { + "$date": "2021-03-31T02:23:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d72054f0-d152-4981-b6d6-0154b200ca36", + "start": { + "$date": "2021-03-31T02:23:07.000Z" + }, + "end": { + "$date": "2021-03-31T02:27:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "128878a8-7c27-4db1-bd43-23fec6a8d5e6", + "start": { + "$date": "2021-03-31T02:27:07.000Z" + }, + "end": { + "$date": "2021-03-31T02:37:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "836ae804-7159-430d-b803-cf143fee416b", + "start": { + "$date": "2021-03-31T02:37:07.000Z" + }, + "end": { + "$date": "2021-03-31T02:38:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c55e0cd-5278-4f09-8ee4-77eb9ff02139", + "start": { + "$date": "2021-03-31T02:38:07.000Z" + }, + "end": { + "$date": "2021-03-31T05:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "990f8d42-31c8-4459-b674-aa7f8cb016dd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-03-31T01:11:02.000Z" + }, + "end": { + "$date": "2021-03-31T01:28:07.000Z" + }, + "events": [ + { + "uuid": "d42dbead-4183-4ad8-a31a-30bb4e556aba", + "start": { + "$date": "2021-03-31T01:11:02.000Z" + }, + "end": { + "$date": "2021-03-31T01:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "dab50c21-f5f9-426d-ac00-358cfbc7a617", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-31T01:17:29.000Z" + }, + "end": { + "$date": "2021-03-31T06:29:32.000Z" + }, + "events": [ + { + "uuid": "a0c4a489-6d35-4192-a8bf-dbff8527d038", + "start": { + "$date": "2021-03-31T01:17:29.000Z" + }, + "end": { + "$date": "2021-03-31T06:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2c03aefb-0d1c-4250-a759-a370e75d8a68", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-31T01:42:07.000Z" + }, + "end": { + "$date": "2021-03-31T04:01:56.000Z" + }, + "events": [ + { + "uuid": "767bbb95-4751-4b24-a26b-75156176dc52", + "start": { + "$date": "2021-03-31T01:42:07.000Z" + }, + "end": { + "$date": "2021-03-31T04:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "90e842b7-f793-4827-966c-949592328914", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-31T02:00:00.000Z" + }, + "end": { + "$date": "2021-03-31T04:31:19.000Z" + }, + "events": [ + { + "uuid": "b7b85f4a-e76a-4b52-91c2-3fba5a36dad2", + "start": { + "$date": "2021-03-31T02:00:00.000Z" + }, + "end": { + "$date": "2021-03-31T04:31:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7359cc17-dbff-4a26-84c8-12045c9b439c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-31T02:00:04.000Z" + }, + "end": { + "$date": "2021-03-31T05:18:13.000Z" + }, + "events": [ + { + "uuid": "bfbccef7-80b3-4ed4-8035-e2d44669914e", + "start": { + "$date": "2021-03-31T02:00:04.000Z" + }, + "end": { + "$date": "2021-03-31T05:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "5906c2fb-8006-4213-9f9b-ac045cb7a880", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-31T02:15:38.000Z" + }, + "end": { + "$date": "2021-03-31T04:16:14.000Z" + }, + "events": [ + { + "uuid": "d8578dbd-5126-49df-a52d-f2055413e3be", + "start": { + "$date": "2021-03-31T02:15:38.000Z" + }, + "end": { + "$date": "2021-03-31T04:16:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67a5591c-ac6a-439e-a924-f37bb258f203", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-31T02:16:51.000Z" + }, + "end": { + "$date": "2021-03-31T04:17:02.000Z" + }, + "events": [ + { + "uuid": "3bac33c7-6012-4c52-9056-05912eb56141", + "start": { + "$date": "2021-03-31T02:16:51.000Z" + }, + "end": { + "$date": "2021-03-31T04:17:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2b420176-5583-4bbb-a750-b50f84de20a1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-31T03:34:32.000Z" + }, + "end": { + "$date": "2021-03-31T05:46:48.000Z" + }, + "events": [ + { + "uuid": "91f73bbd-5433-47be-8446-2db92442e4ca", + "start": { + "$date": "2021-03-31T03:34:32.000Z" + }, + "end": { + "$date": "2021-03-31T03:47:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b9b2b28-cbfc-4f9e-8919-e33912371271", + "start": { + "$date": "2021-03-31T03:47:32.000Z" + }, + "end": { + "$date": "2021-03-31T03:49:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0eb77760-0ba8-4712-a322-b747d48d182a", + "start": { + "$date": "2021-03-31T03:49:32.000Z" + }, + "end": { + "$date": "2021-03-31T05:46:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "2cb71c5c-8c8d-483f-ad7e-a97cda81e550", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-03-31T04:02:29.000Z" + }, + "end": { + "$date": "2021-03-31T05:01:01.000Z" + }, + "events": [ + { + "uuid": "3754d5b9-85c4-420c-a61c-7fdf673481b0", + "start": { + "$date": "2021-03-31T04:02:29.000Z" + }, + "end": { + "$date": "2021-03-31T05:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "93e71e62-ab2c-4c29-8053-1a0903bf7dff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-31T04:22:26.000Z" + }, + "end": { + "$date": "2021-03-31T04:34:57.000Z" + }, + "events": [ + { + "uuid": "01d4165e-22f9-412a-a9ac-d0fac2f4a86f", + "start": { + "$date": "2021-03-31T04:22:26.000Z" + }, + "end": { + "$date": "2021-03-31T04:34:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "78e30471-c0e6-489b-a76a-c44c782fe541", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-31T04:32:18.000Z" + }, + "end": { + "$date": "2021-03-31T05:01:06.000Z" + }, + "events": [ + { + "uuid": "301c9964-e6f1-42ee-8feb-8e5da01b01a1", + "start": { + "$date": "2021-03-31T04:32:18.000Z" + }, + "end": { + "$date": "2021-03-31T05:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ccb7e30-9da5-4b70-b3c0-658cffcb28d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-03-31T05:02:50.000Z" + }, + "end": { + "$date": "2021-03-31T05:12:01.000Z" + }, + "events": [ + { + "uuid": "d4e0775f-c49e-4fac-a123-69aa3613e0fe", + "start": { + "$date": "2021-03-31T05:02:50.000Z" + }, + "end": { + "$date": "2021-03-31T05:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "166fbdcc-1b9a-4731-8983-3fd04d3f30fe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-03-31T05:23:43.000Z" + }, + "end": { + "$date": "2021-03-31T05:50:19.000Z" + }, + "events": [ + { + "uuid": "011d941e-1887-45e0-b09b-33a748640437", + "start": { + "$date": "2021-03-31T05:23:43.000Z" + }, + "end": { + "$date": "2021-03-31T05:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "f620d3a6-39d6-4ae5-b913-89001bab4bf9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-03-31T05:42:49.000Z" + }, + "end": { + "$date": "2021-03-31T06:26:21.000Z" + }, + "events": [ + { + "uuid": "09caa00f-6f8d-4ca1-8178-d141f85fffaa", + "start": { + "$date": "2021-03-31T05:42:49.000Z" + }, + "end": { + "$date": "2021-03-31T06:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fb7d5507-4644-460f-984e-4ff765f45777", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-31T06:22:57.000Z" + }, + "end": { + "$date": "2021-03-31T06:30:09.000Z" + }, + "events": [ + { + "uuid": "dc518a9f-85f0-4923-9a61-73bf33916c53", + "start": { + "$date": "2021-03-31T06:22:57.000Z" + }, + "end": { + "$date": "2021-03-31T06:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "90f955a8-99b8-4500-8b3c-eb97f3617fc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-31T06:41:20.000Z" + }, + "end": { + "$date": "2021-03-31T06:56:30.000Z" + }, + "events": [ + { + "uuid": "292cb65a-46db-48e5-aa88-ff186f50cd7f", + "start": { + "$date": "2021-03-31T06:41:20.000Z" + }, + "end": { + "$date": "2021-03-31T06:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "84b6be07-68e3-4820-ac69-740d75242bb3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-31T14:44:22.000Z" + }, + "end": { + "$date": "2021-03-31T16:39:10.000Z" + }, + "events": [ + { + "uuid": "d327055f-8d49-44bf-93e7-b43ac44f567f", + "start": { + "$date": "2021-03-31T14:44:22.000Z" + }, + "end": { + "$date": "2021-03-31T14:47:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e5c9a25-a48a-4071-8f38-5717e41af7d4", + "start": { + "$date": "2021-03-31T14:47:22.000Z" + }, + "end": { + "$date": "2021-03-31T16:39:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c660a456-5656-45e4-90d9-0324c134ce28", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-31T16:50:26.000Z" + }, + "end": { + "$date": "2021-03-31T17:23:53.000Z" + }, + "events": [ + { + "uuid": "4f984db7-3150-4cde-a2b4-1dcf882d774c", + "start": { + "$date": "2021-03-31T16:50:26.000Z" + }, + "end": { + "$date": "2021-03-31T17:23:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7b670b16-2cf3-42d0-846f-8f1c512bfa5d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-03-31T19:24:51.000Z" + }, + "end": { + "$date": "2021-04-01T00:14:11.000Z" + }, + "events": [ + { + "uuid": "7a78d119-82b0-4210-a473-ad8be35b4f5e", + "start": { + "$date": "2021-03-31T19:24:51.000Z" + }, + "end": { + "$date": "2021-04-01T00:14:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ca71e390-101b-442d-8de5-d1b69a3d7cd8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-31T19:27:52.000Z" + }, + "end": { + "$date": "2021-03-31T20:08:55.000Z" + }, + "events": [ + { + "uuid": "3629726b-9f70-490a-9617-f520bab37d3a", + "start": { + "$date": "2021-03-31T19:27:52.000Z" + }, + "end": { + "$date": "2021-03-31T20:08:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f0e90299-43f4-41e9-9216-ef40234f369d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-31T20:10:37.000Z" + }, + "end": { + "$date": "2021-03-31T20:56:54.000Z" + }, + "events": [ + { + "uuid": "90664fa1-50a5-417d-89b7-d37e41aa8ace", + "start": { + "$date": "2021-03-31T20:10:37.000Z" + }, + "end": { + "$date": "2021-03-31T20:35:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d0ea282-1618-4e53-9a8f-d6512acd89d2", + "start": { + "$date": "2021-03-31T20:35:37.000Z" + }, + "end": { + "$date": "2021-03-31T20:46:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b0d20e5-84fb-453a-bd72-32563fb4657a", + "start": { + "$date": "2021-03-31T20:46:37.000Z" + }, + "end": { + "$date": "2021-03-31T20:56:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "acc35eba-32ed-44e9-8bd2-fc22d95d4908", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-31T20:57:41.000Z" + }, + "end": { + "$date": "2021-03-31T22:55:02.000Z" + }, + "events": [ + { + "uuid": "17c16614-bea1-4e4e-b491-712750cc25d3", + "start": { + "$date": "2021-03-31T20:57:41.000Z" + }, + "end": { + "$date": "2021-03-31T22:53:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30f8ed56-7ff2-420d-8ad0-21684d26295a", + "start": { + "$date": "2021-03-31T22:53:41.000Z" + }, + "end": { + "$date": "2021-03-31T22:55:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ca92b921-669a-45dd-91ef-b2724c27075c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-03-31T21:08:58.000Z" + }, + "end": { + "$date": "2021-03-31T21:11:39.000Z" + }, + "events": [ + { + "uuid": "ef095c2a-715e-4329-afb2-8c37c18327a8", + "start": { + "$date": "2021-03-31T21:08:58.000Z" + }, + "end": { + "$date": "2021-03-31T21:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "86598f72-59be-4bf8-97be-1bb863344baf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-01T01:59:04.000Z" + }, + "end": { + "$date": "2021-04-01T02:59:51.000Z" + }, + "events": [ + { + "uuid": "72e96346-9405-4aba-adcb-fa926ccefc3e", + "start": { + "$date": "2021-04-01T01:59:04.000Z" + }, + "end": { + "$date": "2021-04-01T03:49:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "47a52014-490a-4873-9e2f-cc600c0badd5", + "start": { + "$date": "2021-04-01T03:49:04.000Z" + }, + "end": { + "$date": "2021-04-01T04:03:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "163b28ec-b819-49e6-8a4b-83df235aefd9", + "start": { + "$date": "2021-04-01T04:03:04.000Z" + }, + "end": { + "$date": "2021-04-01T02:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c6244006-926c-4e5e-8d74-6c325d2deb65", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-31T21:41:51.000Z" + }, + "end": { + "$date": "2021-03-31T22:52:10.000Z" + }, + "events": [ + { + "uuid": "aaf6d71a-b047-419a-9151-a7b4f8262352", + "start": { + "$date": "2021-03-31T21:41:51.000Z" + }, + "end": { + "$date": "2021-03-31T22:52:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5c77ab37-c1b1-4400-b613-89077b5b5a6b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-03-31T22:19:29.000Z" + }, + "end": { + "$date": "2021-03-31T23:21:25.000Z" + }, + "events": [ + { + "uuid": "8a2d5c50-2532-4778-bb46-e237451a2514", + "start": { + "$date": "2021-03-31T22:19:29.000Z" + }, + "end": { + "$date": "2021-03-31T23:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9d742946-250d-4f37-a7e7-9b4c3d2c81cf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-03-31T22:55:48.000Z" + }, + "end": { + "$date": "2021-04-01T00:53:10.000Z" + }, + "events": [ + { + "uuid": "b03dff48-f92b-4a8f-82a6-9bed834b237e", + "start": { + "$date": "2021-03-31T22:55:48.000Z" + }, + "end": { + "$date": "2021-04-01T00:53:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "f83675b1-37ed-4c9a-b1ea-726f0de19b24", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-31T23:07:43.000Z" + }, + "end": { + "$date": "2021-03-31T23:24:25.000Z" + }, + "events": [ + { + "uuid": "e2b3a77c-b9b0-4a9f-b907-42988761538f", + "start": { + "$date": "2021-03-31T23:07:43.000Z" + }, + "end": { + "$date": "2021-03-31T23:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e134cdad-41ca-463c-b27a-b0adc98d9ed3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-03-31T23:24:48.000Z" + }, + "end": { + "$date": "2021-04-01T00:16:26.000Z" + }, + "events": [ + { + "uuid": "0236b340-dc80-4187-9065-f74fad561ab2", + "start": { + "$date": "2021-03-31T23:24:48.000Z" + }, + "end": { + "$date": "2021-04-01T00:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "a512b473-89c4-48ee-ab59-b2447c4e9923", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-03-31T23:25:15.000Z" + }, + "end": { + "$date": "2021-03-31T23:56:09.000Z" + }, + "events": [ + { + "uuid": "234d6be8-0d38-4b72-842f-84129ae64b83", + "start": { + "$date": "2021-03-31T23:25:15.000Z" + }, + "end": { + "$date": "2021-03-31T23:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "22c914fc-016b-4733-b0d5-ded2febf0a89", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-03-31T23:27:08.000Z" + }, + "end": { + "$date": "2021-03-31T23:43:49.000Z" + }, + "events": [ + { + "uuid": "0e07b986-bee6-447a-9e60-75720d116247", + "start": { + "$date": "2021-03-31T23:27:08.000Z" + }, + "end": { + "$date": "2021-03-31T23:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5f0822c9-bdb4-4299-9645-6521051b9da4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-01T01:45:29.000Z" + }, + "end": { + "$date": "2021-04-01T03:09:49.000Z" + }, + "events": [ + { + "uuid": "120401b0-c914-4345-8a7a-48f51c30b7f0", + "start": { + "$date": "2021-04-01T01:45:29.000Z" + }, + "end": { + "$date": "2021-04-01T01:55:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1543be52-bb16-4980-bc52-e746167c537a", + "start": { + "$date": "2021-04-01T01:55:29.000Z" + }, + "end": { + "$date": "2021-04-01T01:59:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d058f5a5-2c9c-44e5-82ec-8270c2300c70", + "start": { + "$date": "2021-04-01T01:59:29.000Z" + }, + "end": { + "$date": "2021-04-01T03:09:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b58f8eac-ab06-4da2-9f13-015763dd25f6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-01T02:08:08.000Z" + }, + "end": { + "$date": "2021-04-01T02:18:23.000Z" + }, + "events": [ + { + "uuid": "52765894-e1e4-4ffc-9b27-cc45e41f7687", + "start": { + "$date": "2021-04-01T02:08:08.000Z" + }, + "end": { + "$date": "2021-04-01T02:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9a5fc1ef-45a2-415f-a5dc-6b4407de4ffa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-01T02:10:20.000Z" + }, + "end": { + "$date": "2021-04-01T11:46:03.000Z" + }, + "events": [ + { + "uuid": "1780930e-9faa-4415-987b-4cb8b30a873a", + "start": { + "$date": "2021-04-01T02:10:20.000Z" + }, + "end": { + "$date": "2021-04-01T04:22:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "082f101e-a497-4d80-a0ae-5796b068cf20", + "start": { + "$date": "2021-04-01T04:22:20.000Z" + }, + "end": { + "$date": "2021-04-01T04:31:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b60d3368-8216-442f-9872-42801ba60915", + "start": { + "$date": "2021-04-01T04:31:20.000Z" + }, + "end": { + "$date": "2021-04-01T05:46:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5aa8650c-4440-4d82-8032-4ac2a76d8f9f", + "start": { + "$date": "2021-04-01T05:46:20.000Z" + }, + "end": { + "$date": "2021-04-01T05:51:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7a5b24f1-9925-4805-b2aa-5bf170b64a5c", + "start": { + "$date": "2021-04-01T05:51:20.000Z" + }, + "end": { + "$date": "2021-04-01T07:06:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c08f4f94-7c35-4a12-915d-e56823972400", + "start": { + "$date": "2021-04-01T07:06:20.000Z" + }, + "end": { + "$date": "2021-04-01T07:08:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74e7beae-e474-4a4d-b256-552df539b4df", + "start": { + "$date": "2021-04-01T07:08:20.000Z" + }, + "end": { + "$date": "2021-04-01T07:29:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22e954f0-f4fe-4c00-be09-0c1acdaf8f7b", + "start": { + "$date": "2021-04-01T07:29:20.000Z" + }, + "end": { + "$date": "2021-04-01T07:30:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2fa86d1e-f6cd-40f3-9212-75c76102c1df", + "start": { + "$date": "2021-04-01T07:30:20.000Z" + }, + "end": { + "$date": "2021-04-01T11:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c09526c7-f6d4-4cd5-8488-384184392c26", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-01T02:19:21.000Z" + }, + "end": { + "$date": "2021-04-01T05:01:38.000Z" + }, + "events": [ + { + "uuid": "17d4e584-e91d-48f9-aadf-1b6ec33cb89e", + "start": { + "$date": "2021-04-01T02:19:21.000Z" + }, + "end": { + "$date": "2021-04-01T05:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2a441a88-76ac-4793-9a6b-c6ed3863415a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-01T02:20:28.000Z" + }, + "end": { + "$date": "2021-04-01T05:06:48.000Z" + }, + "events": [ + { + "uuid": "33f5c585-c025-49ab-9027-cb4b568dd46c", + "start": { + "$date": "2021-04-01T02:20:28.000Z" + }, + "end": { + "$date": "2021-04-01T05:05:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad697880-9ea6-4a65-89e3-4194f2783ee1", + "start": { + "$date": "2021-04-01T05:05:28.000Z" + }, + "end": { + "$date": "2021-04-01T05:06:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b7052549-ec87-47b2-a8f3-8b336ce3e2ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T02:46:31.000Z" + }, + "end": { + "$date": "2021-04-01T03:05:42.000Z" + }, + "events": [ + { + "uuid": "5cb7b2de-f793-4e54-b54a-28fee45422e6", + "start": { + "$date": "2021-04-01T02:46:31.000Z" + }, + "end": { + "$date": "2021-04-01T03:05:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c8f9b252-3172-4ff2-aefb-f2347cc256e7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-01T02:50:56.000Z" + }, + "end": { + "$date": "2021-04-01T05:01:29.000Z" + }, + "events": [ + { + "uuid": "e91bc247-8d3a-4051-b2bb-13b3433870a8", + "start": { + "$date": "2021-04-01T02:50:56.000Z" + }, + "end": { + "$date": "2021-04-01T05:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "325e6d90-8111-425b-bb77-97b6e2992db9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-01T03:01:36.000Z" + }, + "end": { + "$date": "2021-04-01T05:20:05.000Z" + }, + "events": [ + { + "uuid": "43f1c103-736c-4f98-8054-946709a8357e", + "start": { + "$date": "2021-04-01T03:01:36.000Z" + }, + "end": { + "$date": "2021-04-01T05:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d3526c64-0884-4199-94f3-b9ec22ecffca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T03:05:57.000Z" + }, + "end": { + "$date": "2021-04-01T03:54:59.000Z" + }, + "events": [ + { + "uuid": "46774d12-9b99-4e6a-9a44-d16266f6f0c0", + "start": { + "$date": "2021-04-01T03:05:57.000Z" + }, + "end": { + "$date": "2021-04-01T03:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "1a22f130-716c-4981-8405-4af7e8cb0f59", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-01T03:10:44.000Z" + }, + "end": { + "$date": "2021-04-01T03:12:24.000Z" + }, + "events": [ + { + "uuid": "3b52ee38-d750-4094-a373-83f6f9f51591", + "start": { + "$date": "2021-04-01T03:10:44.000Z" + }, + "end": { + "$date": "2021-04-01T03:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "7a1ad8fa-7e4e-4c02-8073-0f3df6499c1f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T03:35:37.000Z" + }, + "end": { + "$date": "2021-04-01T03:37:33.000Z" + }, + "events": [ + { + "uuid": "ea6be7dd-8a43-45ce-8685-8906363a7dc5", + "start": { + "$date": "2021-04-01T03:35:37.000Z" + }, + "end": { + "$date": "2021-04-01T03:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "2ae4ec7a-6d22-4fa2-8604-8d9cf3df145f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T03:41:36.000Z" + }, + "end": { + "$date": "2021-04-01T03:43:37.000Z" + }, + "events": [ + { + "uuid": "49d4e419-b53e-4550-b041-06d3075687dc", + "start": { + "$date": "2021-04-01T03:41:36.000Z" + }, + "end": { + "$date": "2021-04-01T03:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "d7e9a5ee-4845-4e08-a876-8c44f3cc68b1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T03:46:34.000Z" + }, + "end": { + "$date": "2021-04-01T03:47:58.000Z" + }, + "events": [ + { + "uuid": "499c5394-d615-49f2-ad88-31302ad7f7f2", + "start": { + "$date": "2021-04-01T03:46:34.000Z" + }, + "end": { + "$date": "2021-04-01T03:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "f114c4ad-97fa-4516-a3cf-e8c984b331eb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T03:49:59.000Z" + }, + "end": { + "$date": "2021-04-01T03:51:59.000Z" + }, + "events": [ + { + "uuid": "b1e82909-8647-4c5d-9399-2c6d8e5757ec", + "start": { + "$date": "2021-04-01T03:49:59.000Z" + }, + "end": { + "$date": "2021-04-01T03:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "624043f9-3ada-4877-b13b-6235fc7ec914", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T03:52:34.000Z" + }, + "end": { + "$date": "2021-04-01T04:54:01.000Z" + }, + "events": [ + { + "uuid": "63e7fe74-ea72-4082-8b1e-94326cce042f", + "start": { + "$date": "2021-04-01T03:52:34.000Z" + }, + "end": { + "$date": "2021-04-01T04:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88d3036a-d6f6-47cb-bace-1a8cbe696d45", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-01T04:24:39.000Z" + }, + "end": { + "$date": "2021-04-01T04:53:33.000Z" + }, + "events": [ + { + "uuid": "65c427dc-c9cb-413b-83d7-d76dff85000a", + "start": { + "$date": "2021-04-01T04:24:39.000Z" + }, + "end": { + "$date": "2021-04-01T04:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f719cbfd-b1fb-45ea-bf95-26899b64b22f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-01T04:44:59.000Z" + }, + "end": { + "$date": "2021-04-01T06:40:29.000Z" + }, + "events": [ + { + "uuid": "16e0b3a1-feee-49ed-856f-3d59a5876994", + "start": { + "$date": "2021-04-01T04:44:59.000Z" + }, + "end": { + "$date": "2021-04-01T06:05:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9f776ac9-cc6f-4ab4-ab2b-a011ce69faad", + "start": { + "$date": "2021-04-01T06:05:59.000Z" + }, + "end": { + "$date": "2021-04-01T06:19:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8d593b9-6dde-4698-a8d6-a7aabf468821", + "start": { + "$date": "2021-04-01T06:19:59.000Z" + }, + "end": { + "$date": "2021-04-01T06:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "025fc082-f61a-427f-93a2-da781e4c71c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T04:54:25.000Z" + }, + "end": { + "$date": "2021-04-01T05:19:03.000Z" + }, + "events": [ + { + "uuid": "12dff59f-6f25-4ef3-a024-3dec86baeb25", + "start": { + "$date": "2021-04-01T04:54:25.000Z" + }, + "end": { + "$date": "2021-04-01T05:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73621620-c419-46ac-a7af-090e87f74607", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-01T04:54:42.000Z" + }, + "end": { + "$date": "2021-04-01T04:56:12.000Z" + }, + "events": [ + { + "uuid": "0d815f61-1e32-4d69-b661-8e10e65fcd57", + "start": { + "$date": "2021-04-01T04:54:42.000Z" + }, + "end": { + "$date": "2021-04-01T04:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50e389e4-c886-41b1-b70d-d13ab02b0b8b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-01T04:59:00.000Z" + }, + "end": { + "$date": "2021-04-01T05:21:56.000Z" + }, + "events": [ + { + "uuid": "656abdbf-4442-473e-8b25-1640d71f5941", + "start": { + "$date": "2021-04-01T04:59:00.000Z" + }, + "end": { + "$date": "2021-04-01T05:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c5d766f7-5659-4c3e-af8f-998c35df7631", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-01T05:08:41.000Z" + }, + "end": { + "$date": "2021-04-01T05:10:57.000Z" + }, + "events": [ + { + "uuid": "9765f3f8-e172-4b0d-a76a-7a9429c2db29", + "start": { + "$date": "2021-04-01T05:08:41.000Z" + }, + "end": { + "$date": "2021-04-01T05:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cdc2da5-2623-457e-83e0-c0df3f8cbd2e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-01T05:25:41.000Z" + }, + "end": { + "$date": "2021-04-01T05:59:39.000Z" + }, + "events": [ + { + "uuid": "78a8ecde-e3ef-432d-adb2-b0ded12e9f86", + "start": { + "$date": "2021-04-01T05:25:41.000Z" + }, + "end": { + "$date": "2021-04-01T05:59:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "8da9101a-a865-429a-b15d-0dd83a6a8cc9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-01T05:25:14.000Z" + }, + "end": { + "$date": "2021-04-01T06:08:58.000Z" + }, + "events": [ + { + "uuid": "35b7b038-5d97-4b00-8f49-0dfe479ef361", + "start": { + "$date": "2021-04-01T05:25:14.000Z" + }, + "end": { + "$date": "2021-04-01T05:48:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3f4e55b-9942-4a3a-81c9-03c679154996", + "start": { + "$date": "2021-04-01T05:48:14.000Z" + }, + "end": { + "$date": "2021-04-01T05:53:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7d250bc4-9809-45e0-9819-4b0b575c98ea", + "start": { + "$date": "2021-04-01T05:53:14.000Z" + }, + "end": { + "$date": "2021-04-01T06:08:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dc48a82d-c2d4-41a4-a814-b3f8e3297d02", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-01T13:18:38.000Z" + }, + "end": { + "$date": "2021-04-01T13:28:44.000Z" + }, + "events": [ + { + "uuid": "7edaf8cb-bd1e-4fe6-989e-6ec706f4e646", + "start": { + "$date": "2021-04-01T13:18:38.000Z" + }, + "end": { + "$date": "2021-04-01T13:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba19b964-1585-40b9-8c2a-26c5c55b9066", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-01T13:31:20.000Z" + }, + "end": { + "$date": "2021-04-01T14:15:26.000Z" + }, + "events": [ + { + "uuid": "64a1a888-2629-449d-84a7-82896a9e9404", + "start": { + "$date": "2021-04-01T13:31:20.000Z" + }, + "end": { + "$date": "2021-04-01T14:15:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73131007-4e45-41bd-a51a-070d37424df5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T15:16:13.000Z" + }, + "end": { + "$date": "2021-04-01T16:18:29.000Z" + }, + "events": [ + { + "uuid": "99c0dda0-ad47-4031-8519-9b854e01a74e", + "start": { + "$date": "2021-04-01T15:16:13.000Z" + }, + "end": { + "$date": "2021-04-01T15:27:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4205dbe6-66df-4c0b-93d5-9c590b943f93", + "start": { + "$date": "2021-04-01T15:27:13.000Z" + }, + "end": { + "$date": "2021-04-01T15:39:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4fd03e45-4ac7-4fc9-9698-1a66712d1489", + "start": { + "$date": "2021-04-01T15:39:13.000Z" + }, + "end": { + "$date": "2021-04-01T16:18:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2ecede79-e469-4e96-9c87-cf979db7adc1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-01T16:46:54.000Z" + }, + "end": { + "$date": "2021-04-01T17:03:25.000Z" + }, + "events": [ + { + "uuid": "af9df157-4256-4915-b891-2dd22a29514f", + "start": { + "$date": "2021-04-01T16:46:54.000Z" + }, + "end": { + "$date": "2021-04-01T17:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3eea0478-8e31-453c-a135-22ee531cfde6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T17:21:19.000Z" + }, + "end": { + "$date": "2021-04-01T17:47:00.000Z" + }, + "events": [ + { + "uuid": "7b10d4dc-c810-4f2e-960e-e2eb7c746cf0", + "start": { + "$date": "2021-04-01T17:21:19.000Z" + }, + "end": { + "$date": "2021-04-01T17:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8d318f6-bd53-4f64-9a70-6225347651eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T17:49:35.000Z" + }, + "end": { + "$date": "2021-04-01T18:24:44.000Z" + }, + "events": [ + { + "uuid": "45ea6c32-7abb-4806-acc3-d1716c244435", + "start": { + "$date": "2021-04-01T17:49:35.000Z" + }, + "end": { + "$date": "2021-04-01T18:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d6321981-86d7-48bb-b7fa-0d95cdd45100", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-01T02:20:28.000Z" + }, + "end": { + "$date": "2021-04-01T18:01:28.000Z" + }, + "events": [ + { + "uuid": "224322be-292f-4b35-bd56-a5ad50e125f4", + "start": { + "$date": "2021-04-01T02:20:28.000Z" + }, + "end": { + "$date": "2021-04-01T02:21:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed3ecfc1-9fb3-45bb-957e-8d7fdaebcc5c", + "start": { + "$date": "2021-04-01T02:21:28.000Z" + }, + "end": { + "$date": "2021-04-01T18:01:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0b915689-71d5-4ed5-8002-446fae10c9f2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-01T18:50:03.000Z" + }, + "end": { + "$date": "2021-04-01T20:03:03.000Z" + }, + "events": [ + { + "uuid": "3c50157e-f3e0-418a-b45e-e74dac17b270", + "start": { + "$date": "2021-04-01T18:50:03.000Z" + }, + "end": { + "$date": "2021-04-01T20:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c153efcc-cea5-4ba0-b16e-a5cdf20bfb81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T18:56:25.000Z" + }, + "end": { + "$date": "2021-04-01T20:36:10.000Z" + }, + "events": [ + { + "uuid": "9897297e-cb38-4c3f-8951-c4f38aa07796", + "start": { + "$date": "2021-04-01T18:56:25.000Z" + }, + "end": { + "$date": "2021-04-01T20:26:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd0dbce0-da13-4d63-97ec-1f773c14c55f", + "start": { + "$date": "2021-04-01T20:26:25.000Z" + }, + "end": { + "$date": "2021-04-01T20:32:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ecd7304-0773-4cc2-a8ca-5217196e8d61", + "start": { + "$date": "2021-04-01T20:32:25.000Z" + }, + "end": { + "$date": "2021-04-01T20:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "e3110471-fcfe-4c10-93e4-384fe42ca7a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-01T19:10:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:48:29.000Z" + }, + "events": [ + { + "uuid": "164162cb-df24-4d7c-bd5b-015b32813594", + "start": { + "$date": "2021-04-01T19:10:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:16:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed801922-b7a0-41b5-8d2e-ee2c755e4223", + "start": { + "$date": "2021-04-01T22:16:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:24:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff35a895-794b-4c1c-b2d5-9454021ef9ab", + "start": { + "$date": "2021-04-01T22:24:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:27:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbc86bfb-4cf5-4ac5-89d7-4853153ba513", + "start": { + "$date": "2021-04-01T22:27:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:29:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df222954-79f9-4feb-ac42-d2422394d16c", + "start": { + "$date": "2021-04-01T22:29:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:31:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a4e5dcf-11e4-4f8d-8bf5-7120de18f051", + "start": { + "$date": "2021-04-01T22:31:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:37:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39940687-2a11-45a7-9679-107ae2764248", + "start": { + "$date": "2021-04-01T22:37:15.000Z" + }, + "end": { + "$date": "2021-04-01T22:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "06eda63a-1322-4afb-919f-5c9354646104", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-01T19:45:49.000Z" + }, + "end": { + "$date": "2021-04-01T20:19:43.000Z" + }, + "events": [ + { + "uuid": "aa19cbba-41cd-44e3-9e6b-308916d5ab8d", + "start": { + "$date": "2021-04-01T19:45:49.000Z" + }, + "end": { + "$date": "2021-04-01T20:19:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5b19519f-c1d7-4594-86e2-d31c487ec2fe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-01T20:21:03.000Z" + }, + "end": { + "$date": "2021-04-01T21:54:51.000Z" + }, + "events": [ + { + "uuid": "515e43c3-6e0a-4e25-8c19-19e6d87f6c98", + "start": { + "$date": "2021-04-01T20:21:03.000Z" + }, + "end": { + "$date": "2021-04-01T21:54:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6277eaf2-0ee6-46ee-85d3-f718d08e1e0a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T20:36:45.000Z" + }, + "end": { + "$date": "2021-04-01T21:02:15.000Z" + }, + "events": [ + { + "uuid": "d3dee8fa-8c10-4a8e-a7ce-e2e4220f349d", + "start": { + "$date": "2021-04-01T20:36:45.000Z" + }, + "end": { + "$date": "2021-04-01T21:02:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2b1c1137-b955-40cf-a2f3-d3ec6e13ca48", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-01T21:39:44.000Z" + }, + "end": { + "$date": "2021-04-01T23:07:09.000Z" + }, + "events": [ + { + "uuid": "d2031872-4469-4c41-a7b3-000b610bacb8", + "start": { + "$date": "2021-04-01T21:39:44.000Z" + }, + "end": { + "$date": "2021-04-01T23:07:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "caa8c590-98bf-4b02-bbbf-d6038596f4a9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-01T21:57:36.000Z" + }, + "end": { + "$date": "2021-04-01T23:35:00.000Z" + }, + "events": [ + { + "uuid": "e84280d1-7f0a-435a-b903-a88a2b7f2a75", + "start": { + "$date": "2021-04-01T21:57:36.000Z" + }, + "end": { + "$date": "2021-04-01T23:35:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0d46da65-0b1a-4617-beb8-831bcbd0db7c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T22:00:12.000Z" + }, + "end": { + "$date": "2021-04-01T22:29:42.000Z" + }, + "events": [ + { + "uuid": "74c8dd0d-fcb9-4aeb-83a3-6138e9d534f8", + "start": { + "$date": "2021-04-01T22:00:12.000Z" + }, + "end": { + "$date": "2021-04-01T22:29:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e1e6f976-bc97-484a-bf37-fa4ba19d91b1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-01T22:32:43.000Z" + }, + "end": { + "$date": "2021-04-01T23:39:49.000Z" + }, + "events": [ + { + "uuid": "3aea58f5-acf2-4821-bf6c-29435cd67126", + "start": { + "$date": "2021-04-01T22:32:43.000Z" + }, + "end": { + "$date": "2021-04-01T23:17:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b54cc373-977d-494f-acf1-7107d89bc64c", + "start": { + "$date": "2021-04-01T23:17:43.000Z" + }, + "end": { + "$date": "2021-04-01T23:21:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0246196f-617d-44e9-b90c-dd81691b553f", + "start": { + "$date": "2021-04-01T23:21:43.000Z" + }, + "end": { + "$date": "2021-04-01T23:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "47b3d636-2911-479d-8f74-a0585105ca5a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-01T23:07:59.000Z" + }, + "end": { + "$date": "2021-04-02T01:12:41.000Z" + }, + "events": [ + { + "uuid": "cc12ca53-5cd5-435e-9f6e-851487859a0e", + "start": { + "$date": "2021-04-01T23:07:59.000Z" + }, + "end": { + "$date": "2021-04-01T23:19:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "254d4d74-6e08-44c2-a872-2dff6b2922a4", + "start": { + "$date": "2021-04-01T23:19:59.000Z" + }, + "end": { + "$date": "2021-04-01T23:24:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f1f1dfc-d8a1-448f-ab8a-f0ed03671dc0", + "start": { + "$date": "2021-04-01T23:24:59.000Z" + }, + "end": { + "$date": "2021-04-01T23:30:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "10b02696-2404-459e-99c8-e775c290ddbb", + "start": { + "$date": "2021-04-01T23:30:59.000Z" + }, + "end": { + "$date": "2021-04-01T23:44:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b21063fc-9836-4d8a-aa6c-e46b67b2e3e9", + "start": { + "$date": "2021-04-01T23:44:59.000Z" + }, + "end": { + "$date": "2021-04-02T01:12:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "62bc3330-4cdf-4064-9fdf-d4bde4c6144c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-01T23:16:00.000Z" + }, + "end": { + "$date": "2021-04-02T00:05:14.000Z" + }, + "events": [ + { + "uuid": "47432f13-f5b6-422e-acc6-6b9aff502f40", + "start": { + "$date": "2021-04-01T23:16:00.000Z" + }, + "end": { + "$date": "2021-04-02T00:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5a12bcb8-5eff-4c26-ab95-ce43f0193e8c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T23:29:47.000Z" + }, + "end": { + "$date": "2021-04-01T23:50:10.000Z" + }, + "events": [ + { + "uuid": "53ec7de8-a8ee-4a93-b5fe-c89c565244a4", + "start": { + "$date": "2021-04-01T23:29:47.000Z" + }, + "end": { + "$date": "2021-04-01T23:50:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "db7e3ccb-f287-4977-bba5-4e15baa65ab5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-01T23:51:10.000Z" + }, + "end": { + "$date": "2021-04-02T00:46:26.000Z" + }, + "events": [ + { + "uuid": "c8df35b9-7ea0-4214-bebe-3aefa14038a1", + "start": { + "$date": "2021-04-01T23:51:10.000Z" + }, + "end": { + "$date": "2021-04-02T00:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c39d0115-532b-4f8f-ab7c-f588466d0946", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-02T00:48:54.000Z" + }, + "end": { + "$date": "2021-04-02T01:27:42.000Z" + }, + "events": [ + { + "uuid": "10c58d32-aa91-4486-ae2e-569bd81f7e20", + "start": { + "$date": "2021-04-02T00:48:54.000Z" + }, + "end": { + "$date": "2021-04-02T01:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5c06c5c3-d8cd-4bbf-8063-fa3439a53366", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-02T01:03:39.000Z" + }, + "end": { + "$date": "2021-04-02T01:30:30.000Z" + }, + "events": [ + { + "uuid": "2a8d9638-0ab2-494b-87e4-b6beb6045ac4", + "start": { + "$date": "2021-04-02T01:03:39.000Z" + }, + "end": { + "$date": "2021-04-02T01:30:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2ef8a6fd-b188-4abc-b797-69acb393ced7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-02T01:07:06.000Z" + }, + "end": { + "$date": "2021-04-02T01:32:26.000Z" + }, + "events": [ + { + "uuid": "47459640-19a6-4316-8f62-588309a6a844", + "start": { + "$date": "2021-04-02T01:07:06.000Z" + }, + "end": { + "$date": "2021-04-02T01:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0e8798d1-f8f0-4465-a370-2c8a04b58438", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-02T01:08:27.000Z" + }, + "end": { + "$date": "2021-04-02T01:39:18.000Z" + }, + "events": [ + { + "uuid": "c6a87956-61dd-4c1f-9579-aaf04143a0a5", + "start": { + "$date": "2021-04-02T01:08:27.000Z" + }, + "end": { + "$date": "2021-04-02T01:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "84c92452-f200-4972-b78d-d585c7ee49fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-02T01:08:54.000Z" + }, + "end": { + "$date": "2021-04-02T01:36:31.000Z" + }, + "events": [ + { + "uuid": "b4a4b1c0-311b-4749-8ee5-5801bc8ddadc", + "start": { + "$date": "2021-04-02T01:08:54.000Z" + }, + "end": { + "$date": "2021-04-02T01:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "521b7622-a766-458c-85a4-315894ccbbd3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-02T01:30:06.000Z" + }, + "end": { + "$date": "2021-04-02T05:50:08.000Z" + }, + "events": [ + { + "uuid": "1ca06aed-074f-4e32-8863-4ca02a1a7921", + "start": { + "$date": "2021-04-02T01:30:06.000Z" + }, + "end": { + "$date": "2021-04-02T05:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0c506aa-4702-4eb0-8b59-78c3ad2d2032", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-02T01:35:11.000Z" + }, + "end": { + "$date": "2021-04-02T06:45:16.000Z" + }, + "events": [ + { + "uuid": "e713bbc5-fa5d-4b3e-a28e-10a839510043", + "start": { + "$date": "2021-04-02T01:35:11.000Z" + }, + "end": { + "$date": "2021-04-02T06:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "863430f4-7f97-4e8c-bfd2-8e480c56524f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-02T01:38:07.000Z" + }, + "end": { + "$date": "2021-04-02T03:16:40.000Z" + }, + "events": [ + { + "uuid": "aa3cefac-c4b9-4765-91f4-493d2f0b2558", + "start": { + "$date": "2021-04-02T01:38:07.000Z" + }, + "end": { + "$date": "2021-04-02T03:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6188933c-73ce-4c48-a908-f6014cd0e819", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-02T01:42:49.000Z" + }, + "end": { + "$date": "2021-04-02T02:52:42.000Z" + }, + "events": [ + { + "uuid": "ce4f6632-5e58-4ca4-904d-748899f85a4d", + "start": { + "$date": "2021-04-02T01:42:49.000Z" + }, + "end": { + "$date": "2021-04-02T02:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fe13b75a-0416-4383-8e1d-718ac3fece89", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-02T01:50:58.000Z" + }, + "end": { + "$date": "2021-04-02T07:12:13.000Z" + }, + "events": [ + { + "uuid": "e3036be7-8879-497a-bd1f-ac3d6566f88f", + "start": { + "$date": "2021-04-02T01:50:58.000Z" + }, + "end": { + "$date": "2021-04-02T07:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "0c68007f-440f-46a8-bc26-e2d7ce0427dd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-02T02:13:34.000Z" + }, + "end": { + "$date": "2021-04-02T04:50:58.000Z" + }, + "events": [ + { + "uuid": "61266573-0926-485a-bb6f-fb9dda7da740", + "start": { + "$date": "2021-04-02T02:13:34.000Z" + }, + "end": { + "$date": "2021-04-02T04:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "eeea04ca-47af-4abb-84e9-c310c07e8de0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-02T02:28:30.000Z" + }, + "end": { + "$date": "2021-04-02T04:50:41.000Z" + }, + "events": [ + { + "uuid": "2448ff94-b871-46a0-9e8c-8c5b9fd418c7", + "start": { + "$date": "2021-04-02T02:28:30.000Z" + }, + "end": { + "$date": "2021-04-02T04:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2272e8c1-e85d-44fa-a4c5-9cb92af54ed4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-02T02:31:00.000Z" + }, + "end": { + "$date": "2021-04-02T02:42:47.000Z" + }, + "events": [ + { + "uuid": "430dc256-a870-4dd5-a117-8685af18382e", + "start": { + "$date": "2021-04-02T02:31:00.000Z" + }, + "end": { + "$date": "2021-04-02T02:42:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bf1f5641-bdb4-49f1-9c85-4073c5be9496", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-02T02:34:21.000Z" + }, + "end": { + "$date": "2021-04-02T05:52:53.000Z" + }, + "events": [ + { + "uuid": "029a5370-0ed5-44f5-af57-4909bc1e0f4d", + "start": { + "$date": "2021-04-02T02:34:21.000Z" + }, + "end": { + "$date": "2021-04-02T05:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "06d421d0-d7d8-4229-ac84-78dd8a7b6340", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-02T02:53:07.000Z" + }, + "end": { + "$date": "2021-04-02T04:50:27.000Z" + }, + "events": [ + { + "uuid": "eda5a5b2-75cc-4cbf-b60a-6d2dfa26bf19", + "start": { + "$date": "2021-04-02T02:53:07.000Z" + }, + "end": { + "$date": "2021-04-02T04:50:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e06e18f7-3129-4722-a910-f13b285ede93", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-02T03:00:22.000Z" + }, + "end": { + "$date": "2021-04-02T07:14:36.000Z" + }, + "events": [ + { + "uuid": "1dfcd314-62ce-42fd-98a1-46e6d33712cc", + "start": { + "$date": "2021-04-02T03:00:22.000Z" + }, + "end": { + "$date": "2021-04-02T06:30:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cff66e5d-85c0-422a-89d8-4ddd6ca65356", + "start": { + "$date": "2021-04-02T06:30:22.000Z" + }, + "end": { + "$date": "2021-04-02T06:34:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "367cbb91-686f-4a03-85cc-fdb9baca1e3d", + "start": { + "$date": "2021-04-02T06:34:22.000Z" + }, + "end": { + "$date": "2021-04-02T07:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "7a9a803d-7888-4c8c-96b6-348facbf9855", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-02T04:11:22.000Z" + }, + "end": { + "$date": "2021-04-02T05:35:54.000Z" + }, + "events": [ + { + "uuid": "298dc51e-1871-4051-a263-64f6a551972f", + "start": { + "$date": "2021-04-02T04:11:22.000Z" + }, + "end": { + "$date": "2021-04-02T05:35:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9bd67fb0-2dfa-4dec-9c97-fdee747fc719", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-02T04:42:33.000Z" + }, + "end": { + "$date": "2021-04-02T05:49:31.000Z" + }, + "events": [ + { + "uuid": "4cc0b857-91dd-40a2-a86f-03686eafeaec", + "start": { + "$date": "2021-04-02T04:42:33.000Z" + }, + "end": { + "$date": "2021-04-02T05:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4b7b56f9-3a67-46f1-adeb-e89aceb8073d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-02T04:50:57.000Z" + }, + "end": { + "$date": "2021-04-02T05:40:29.000Z" + }, + "events": [ + { + "uuid": "26003689-4caa-4f98-adfc-27b9d74e158c", + "start": { + "$date": "2021-04-02T04:50:57.000Z" + }, + "end": { + "$date": "2021-04-02T05:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "04496114-b091-4347-9c50-b79f56da5683", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-02T04:51:27.000Z" + }, + "end": { + "$date": "2021-04-02T06:10:15.000Z" + }, + "events": [ + { + "uuid": "f809b198-b564-4d29-9bda-753c577c8073", + "start": { + "$date": "2021-04-02T04:51:27.000Z" + }, + "end": { + "$date": "2021-04-02T06:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "f71112dd-5fc3-4f4c-9856-50424dfa1ecf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-02T05:27:43.000Z" + }, + "end": { + "$date": "2021-04-02T05:29:57.000Z" + }, + "events": [ + { + "uuid": "e5019ed0-ce74-4b22-bf03-1247db9fac94", + "start": { + "$date": "2021-04-02T05:27:43.000Z" + }, + "end": { + "$date": "2021-04-02T05:29:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ae9e8cc0-e968-4ed9-8cd3-63a1e8bb3de8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-02T05:33:06.000Z" + }, + "end": { + "$date": "2021-04-02T06:41:43.000Z" + }, + "events": [ + { + "uuid": "43f9b3dc-9372-4a8e-b131-ccd41e5d8235", + "start": { + "$date": "2021-04-02T05:33:06.000Z" + }, + "end": { + "$date": "2021-04-02T06:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbd047dd-1424-4fff-af23-cc66719ae08b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-02T07:13:07.000Z" + }, + "end": { + "$date": "2021-04-02T07:42:59.000Z" + }, + "events": [ + { + "uuid": "4074bcd1-702d-44e7-bb5c-8394d0e4c3df", + "start": { + "$date": "2021-04-02T07:13:07.000Z" + }, + "end": { + "$date": "2021-04-02T07:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbbaaab8-35d0-43af-b854-8f4db0b0c995", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-02T07:44:18.000Z" + }, + "end": { + "$date": "2021-04-02T07:47:58.000Z" + }, + "events": [ + { + "uuid": "0ba40534-9135-4da5-92c9-c86754624342", + "start": { + "$date": "2021-04-02T07:44:18.000Z" + }, + "end": { + "$date": "2021-04-02T07:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6af25995-e575-411f-b08c-c3d0a53c7823", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-02T15:00:05.000Z" + }, + "end": { + "$date": "2021-04-02T16:07:13.000Z" + }, + "events": [ + { + "uuid": "609b750f-f1bf-42ce-8cb1-77bd1df22a49", + "start": { + "$date": "2021-04-02T15:00:05.000Z" + }, + "end": { + "$date": "2021-04-02T16:05:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5bcb3e9a-18b4-499d-8bfd-2603f082e719", + "start": { + "$date": "2021-04-02T16:05:05.000Z" + }, + "end": { + "$date": "2021-04-02T16:07:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "23cb5b4d-7b91-4927-8edf-17931ac0e479", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-02T17:00:28.000Z" + }, + "end": { + "$date": "2021-04-02T17:40:26.000Z" + }, + "events": [ + { + "uuid": "fc00ec96-d4bd-4062-b63d-00eff4f97e6c", + "start": { + "$date": "2021-04-02T17:00:28.000Z" + }, + "end": { + "$date": "2021-04-02T17:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3a01208a-fe58-46f6-a963-c14dae0671b3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-02T17:41:22.000Z" + }, + "end": { + "$date": "2021-04-02T20:25:03.000Z" + }, + "events": [ + { + "uuid": "f6bd0ce2-606e-4af1-91ef-14de1bc9a130", + "start": { + "$date": "2021-04-02T17:41:22.000Z" + }, + "end": { + "$date": "2021-04-02T20:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "07bcb4dd-fd51-4aa8-9c06-83619e446fd7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-02T19:47:38.000Z" + }, + "end": { + "$date": "2021-04-02T22:38:02.000Z" + }, + "events": [ + { + "uuid": "edfcf9c4-8636-4871-a6af-b652e3ef05bd", + "start": { + "$date": "2021-04-02T19:47:38.000Z" + }, + "end": { + "$date": "2021-04-02T22:38:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "43e39b0b-78d9-4249-8f09-1d1cf2e9c5f2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-02T19:58:17.000Z" + }, + "end": { + "$date": "2021-04-02T20:36:39.000Z" + }, + "events": [ + { + "uuid": "f1c40855-5709-4ac6-9463-78994c3dade3", + "start": { + "$date": "2021-04-02T19:58:17.000Z" + }, + "end": { + "$date": "2021-04-02T20:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e2d68129-582b-44b3-834c-b17d23a5517f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-02T20:25:34.000Z" + }, + "end": { + "$date": "2021-04-02T20:54:56.000Z" + }, + "events": [ + { + "uuid": "eca0e0b4-72f4-454a-a2c3-ce548dbbcf2c", + "start": { + "$date": "2021-04-02T20:25:34.000Z" + }, + "end": { + "$date": "2021-04-02T20:54:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0dd5bc90-9f08-41ae-845f-8aeb22038077", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-02T20:38:10.000Z" + }, + "end": { + "$date": "2021-04-03T00:20:29.000Z" + }, + "events": [ + { + "uuid": "c22dc3b2-8007-48e9-8cb4-f72e565a3a6d", + "start": { + "$date": "2021-04-02T20:38:10.000Z" + }, + "end": { + "$date": "2021-04-03T00:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "82488ae3-1745-4a0e-bf04-684881a35ede", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-02T20:55:22.000Z" + }, + "end": { + "$date": "2021-04-02T21:47:56.000Z" + }, + "events": [ + { + "uuid": "eaa72e9f-8bc1-41ed-a0bf-450e1faa337e", + "start": { + "$date": "2021-04-02T20:55:22.000Z" + }, + "end": { + "$date": "2021-04-02T21:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "745fb60a-05d2-4802-8822-c8d9f3639b1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-02T21:00:34.000Z" + }, + "end": { + "$date": "2021-04-02T21:23:09.000Z" + }, + "events": [ + { + "uuid": "1ed6beef-0d8c-48e3-a6a6-c66424cb8537", + "start": { + "$date": "2021-04-02T21:00:34.000Z" + }, + "end": { + "$date": "2021-04-02T21:23:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "27db4254-5f21-4492-9d87-6b908426be0b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-02T21:27:41.000Z" + }, + "end": { + "$date": "2021-04-02T22:49:43.000Z" + }, + "events": [ + { + "uuid": "cc030941-b9fb-4f5a-a032-7e5bb152794e", + "start": { + "$date": "2021-04-02T21:27:41.000Z" + }, + "end": { + "$date": "2021-04-02T22:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71dd54d2-1b64-4a22-8f06-02c5560d571b", + "uuid": "e64c1a2f-1d7b-4863-9d53-51bd7aa0611b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-02T22:03:04.000Z" + }, + "end": { + "$date": "2021-04-02T22:42:29.000Z" + }, + "events": [ + { + "uuid": "32fc0a02-6ea8-4db7-b8b4-8eed7c8bbca4", + "start": { + "$date": "2021-04-02T22:03:04.000Z" + }, + "end": { + "$date": "2021-04-02T22:24:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6a2b04a-2f03-428b-88df-dc4505ac8e5c", + "start": { + "$date": "2021-04-02T22:24:04.000Z" + }, + "end": { + "$date": "2021-04-02T22:25:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15321ea5-5baa-4922-8f73-3965b67608fb", + "start": { + "$date": "2021-04-02T22:25:04.000Z" + }, + "end": { + "$date": "2021-04-02T22:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "278cb8c7-20b0-4076-a1c8-284e744fa93b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-02T22:04:41.000Z" + }, + "end": { + "$date": "2021-04-03T00:31:28.000Z" + }, + "events": [ + { + "uuid": "f7c562b0-2094-48a6-b977-78e74f9c523c", + "start": { + "$date": "2021-04-02T22:04:41.000Z" + }, + "end": { + "$date": "2021-04-03T00:29:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e30d974f-c4ff-42e8-be3d-b8828f8a638e", + "start": { + "$date": "2021-04-03T00:29:41.000Z" + }, + "end": { + "$date": "2021-04-03T00:31:28.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "005e4bea-b5eb-4aac-8eb5-73ca29f1d1a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-02T22:39:51.000Z" + }, + "end": { + "$date": "2021-04-02T23:17:21.000Z" + }, + "events": [ + { + "uuid": "075fc854-ac84-47f9-93cf-2cd1ca1b5094", + "start": { + "$date": "2021-04-02T22:39:51.000Z" + }, + "end": { + "$date": "2021-04-02T23:17:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ec73297a-0e6a-4e2b-9f32-f056a5a1f129", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-02T22:43:49.000Z" + }, + "end": { + "$date": "2021-04-02T23:58:35.000Z" + }, + "events": [ + { + "uuid": "f91da94b-fd6d-45fe-82ae-b37275ee6e8a", + "start": { + "$date": "2021-04-02T22:43:49.000Z" + }, + "end": { + "$date": "2021-04-02T23:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "1987ebde-0e23-4359-9976-e108d06d85e4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T01:06:30.000Z" + }, + "end": { + "$date": "2021-04-03T02:04:07.000Z" + }, + "events": [ + { + "uuid": "60249078-9f22-4f3d-85eb-d5b79e4f4758", + "start": { + "$date": "2021-04-03T01:06:30.000Z" + }, + "end": { + "$date": "2021-04-03T02:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a169e811-e624-4e54-b583-7f655c3ae8d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-03T01:10:55.000Z" + }, + "end": { + "$date": "2021-04-03T04:07:35.000Z" + }, + "events": [ + { + "uuid": "59e4295f-2916-4783-82a2-6e521d2afca0", + "start": { + "$date": "2021-04-03T01:10:55.000Z" + }, + "end": { + "$date": "2021-04-03T04:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "07d40c71-bba5-4acb-815b-136f2bb9c016", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-03T01:12:49.000Z" + }, + "end": { + "$date": "2021-04-03T04:09:51.000Z" + }, + "events": [ + { + "uuid": "697e49c9-248d-4da4-acd0-b495dd45bf17", + "start": { + "$date": "2021-04-03T01:12:49.000Z" + }, + "end": { + "$date": "2021-04-03T04:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "31dae10a-466c-4cb3-8ffb-365261ed1a86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T01:33:13.000Z" + }, + "end": { + "$date": "2021-04-03T01:52:20.000Z" + }, + "events": [ + { + "uuid": "115d6f82-9e84-417f-a7c4-d71d88693310", + "start": { + "$date": "2021-04-03T01:33:13.000Z" + }, + "end": { + "$date": "2021-04-03T01:44:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa694e94-7bfc-4526-8391-a1313b120c09", + "start": { + "$date": "2021-04-03T01:44:13.000Z" + }, + "end": { + "$date": "2021-04-03T01:48:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a004d4b-b6f4-4c93-ae92-380c0ffd0ed6", + "start": { + "$date": "2021-04-03T01:48:13.000Z" + }, + "end": { + "$date": "2021-04-03T01:52:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "5c7327aa-ae6d-417a-8a1c-d6e9991819d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T01:52:55.000Z" + }, + "end": { + "$date": "2021-04-03T02:38:16.000Z" + }, + "events": [ + { + "uuid": "2568c9c8-8554-45d1-bb30-53c091cc4b19", + "start": { + "$date": "2021-04-03T01:52:55.000Z" + }, + "end": { + "$date": "2021-04-03T02:38:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "9d70e1be-b463-49e6-a577-19da8c0f00ca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T02:04:37.000Z" + }, + "end": { + "$date": "2021-04-03T02:37:58.000Z" + }, + "events": [ + { + "uuid": "1af0e5ac-f67e-4514-9482-04c83a9369c8", + "start": { + "$date": "2021-04-03T02:04:37.000Z" + }, + "end": { + "$date": "2021-04-03T02:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c932078c-bda2-4655-ac4b-cd17479e4be9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T02:39:53.000Z" + }, + "end": { + "$date": "2021-04-03T03:24:29.000Z" + }, + "events": [ + { + "uuid": "0730ffa6-7dd6-4d95-9334-3d0195725bff", + "start": { + "$date": "2021-04-03T02:39:53.000Z" + }, + "end": { + "$date": "2021-04-03T03:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "28edf7e8-e12a-4575-93f9-29883d50d8c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T02:40:51.000Z" + }, + "end": { + "$date": "2021-04-03T03:24:28.000Z" + }, + "events": [ + { + "uuid": "799c1fe7-d4ca-4436-9926-84d8fa5e5175", + "start": { + "$date": "2021-04-03T02:40:51.000Z" + }, + "end": { + "$date": "2021-04-03T03:24:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9e5daa56-3d85-4780-b440-052380997475", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T02:53:06.000Z" + }, + "end": { + "$date": "2021-04-03T08:11:11.000Z" + }, + "events": [ + { + "uuid": "db4a6548-a162-4eae-b626-67b327fd9c8f", + "start": { + "$date": "2021-04-03T02:53:06.000Z" + }, + "end": { + "$date": "2021-04-03T08:11:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "3dde6f2c-1e43-476a-b57e-a455f7ac4dd4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T03:28:20.000Z" + }, + "end": { + "$date": "2021-04-03T04:30:42.000Z" + }, + "events": [ + { + "uuid": "6c710a9a-e865-4945-b2d9-0d8b478cb37f", + "start": { + "$date": "2021-04-03T03:28:20.000Z" + }, + "end": { + "$date": "2021-04-03T04:30:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "59d2e5e9-f474-4566-a460-40370b546d86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T03:31:33.000Z" + }, + "end": { + "$date": "2021-04-03T04:30:35.000Z" + }, + "events": [ + { + "uuid": "d8a327e3-2029-4353-8584-ca52dbb4624e", + "start": { + "$date": "2021-04-03T03:31:33.000Z" + }, + "end": { + "$date": "2021-04-03T04:30:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "504aa712-6da0-4fe0-9ca7-9679dcefd830", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T04:00:11.000Z" + }, + "end": { + "$date": "2021-04-03T04:48:22.000Z" + }, + "events": [ + { + "uuid": "5a5ef454-b9fa-4c5c-815e-5455de0d4d7d", + "start": { + "$date": "2021-04-03T04:00:11.000Z" + }, + "end": { + "$date": "2021-04-03T04:48:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "7a4a3273-5b3e-46cf-ac9c-1edd7d32636a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-03T04:07:40.000Z" + }, + "end": { + "$date": "2021-04-03T06:28:07.000Z" + }, + "events": [ + { + "uuid": "1cac47c6-43da-468b-b08a-a0aff53a902d", + "start": { + "$date": "2021-04-03T04:07:40.000Z" + }, + "end": { + "$date": "2021-04-03T06:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b9c32539-1095-4186-bdda-017f9e9cb836", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-03T06:27:23.000Z" + }, + "end": { + "$date": "2021-04-03T07:52:04.000Z" + }, + "events": [ + { + "uuid": "fc009072-8ced-48cd-87b5-e4de016d3366", + "start": { + "$date": "2021-04-03T06:27:23.000Z" + }, + "end": { + "$date": "2021-04-03T07:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "dcdc47e0-55d5-4bdd-880b-88d431462d65", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-03T06:27:55.000Z" + }, + "end": { + "$date": "2021-04-03T10:58:07.000Z" + }, + "events": [ + { + "uuid": "e08e3e1b-f7bb-4e4d-b0b3-19bb0f6514bc", + "start": { + "$date": "2021-04-03T06:27:55.000Z" + }, + "end": { + "$date": "2021-04-03T10:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "82efc43d-c1e8-4459-9567-992af2bd742c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T04:31:04.000Z" + }, + "end": { + "$date": "2021-04-03T04:36:35.000Z" + }, + "events": [ + { + "uuid": "5b2fc286-0abf-4923-a636-75427ea631c4", + "start": { + "$date": "2021-04-03T04:31:04.000Z" + }, + "end": { + "$date": "2021-04-03T04:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "cdae4fd3-cf41-470a-86e5-f1d4e1ce947f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-03T04:42:06.000Z" + }, + "end": { + "$date": "2021-04-03T05:37:39.000Z" + }, + "events": [ + { + "uuid": "aaf1117f-e48c-41d0-a56c-91c5b8386978", + "start": { + "$date": "2021-04-03T04:42:06.000Z" + }, + "end": { + "$date": "2021-04-03T05:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3715b773-8dbb-4058-881a-d17af1ef6cca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T05:35:51.000Z" + }, + "end": { + "$date": "2021-04-03T08:00:59.000Z" + }, + "events": [ + { + "uuid": "b0f24078-d74f-4737-a4f3-c7fb1b93962a", + "start": { + "$date": "2021-04-03T05:35:51.000Z" + }, + "end": { + "$date": "2021-04-03T08:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "9b796795-08ae-4abb-83f2-d49cde32a56a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T05:10:51.000Z" + }, + "end": { + "$date": "2021-04-03T07:08:09.000Z" + }, + "events": [ + { + "uuid": "731fe359-40e0-46fc-8e23-ccf16d9b1cb2", + "start": { + "$date": "2021-04-03T05:10:51.000Z" + }, + "end": { + "$date": "2021-04-03T07:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76f3cd1e-96f9-476f-a060-df422f547983", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-03T05:36:33.000Z" + }, + "end": { + "$date": "2021-04-03T05:57:05.000Z" + }, + "events": [ + { + "uuid": "bbc2c628-0848-4919-8d72-edba1351b6a2", + "start": { + "$date": "2021-04-03T05:36:33.000Z" + }, + "end": { + "$date": "2021-04-03T05:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ed80af1-bae9-41a7-af29-327951a4b2f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-03T06:01:38.000Z" + }, + "end": { + "$date": "2021-04-03T06:32:54.000Z" + }, + "events": [ + { + "uuid": "9a3c85e6-fceb-4d9b-a3d7-eb5b6a7a34bd", + "start": { + "$date": "2021-04-03T06:01:38.000Z" + }, + "end": { + "$date": "2021-04-03T06:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a641e31-64a4-4f40-ab54-e7dd93e8b04c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-03T06:39:34.000Z" + }, + "end": { + "$date": "2021-04-03T07:02:52.000Z" + }, + "events": [ + { + "uuid": "f079b062-c355-4b16-a05b-a7f796067df1", + "start": { + "$date": "2021-04-03T06:39:34.000Z" + }, + "end": { + "$date": "2021-04-03T07:02:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32493a4d-7b84-42b6-8ae5-2477f2f1584a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-03T07:12:35.000Z" + }, + "end": { + "$date": "2021-04-03T07:34:51.000Z" + }, + "events": [ + { + "uuid": "a6960944-34d8-4ce7-b3c8-bf67f6596810", + "start": { + "$date": "2021-04-03T07:12:35.000Z" + }, + "end": { + "$date": "2021-04-03T07:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0abe9059-86a1-4d82-b63e-cbd378525198", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-03T07:48:06.000Z" + }, + "end": { + "$date": "2021-04-03T08:04:12.000Z" + }, + "events": [ + { + "uuid": "76cedaae-0a6b-4437-bc4d-24703142c608", + "start": { + "$date": "2021-04-03T07:48:06.000Z" + }, + "end": { + "$date": "2021-04-03T08:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89258913-6349-4fbc-9a87-82bc5e4a1cfd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-03T08:19:02.000Z" + }, + "end": { + "$date": "2021-04-03T08:38:28.000Z" + }, + "events": [ + { + "uuid": "c3c159b2-cc96-4210-a732-a42586a44415", + "start": { + "$date": "2021-04-03T08:19:02.000Z" + }, + "end": { + "$date": "2021-04-03T08:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "df0682b5-a55e-4c74-b620-0203ec4d5262", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T08:11:57.000Z" + }, + "end": { + "$date": "2021-04-03T08:21:58.000Z" + }, + "events": [ + { + "uuid": "d1558f5c-9607-4673-a4ed-7cbcba9db81e", + "start": { + "$date": "2021-04-03T08:11:57.000Z" + }, + "end": { + "$date": "2021-04-03T08:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "bfd21265-754a-4566-a003-59a58e47080e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T14:03:38.000Z" + }, + "end": { + "$date": "2021-04-03T14:28:12.000Z" + }, + "events": [ + { + "uuid": "da0c40e6-0bce-4001-83f3-86f0732f7230", + "start": { + "$date": "2021-04-03T14:03:38.000Z" + }, + "end": { + "$date": "2021-04-03T14:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "adc81f59-2f7e-48ec-aae8-6608039960c1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T15:02:21.000Z" + }, + "end": { + "$date": "2021-04-03T15:36:07.000Z" + }, + "events": [ + { + "uuid": "dc6d9de4-250e-4130-9bf7-0d990f6add00", + "start": { + "$date": "2021-04-03T15:02:21.000Z" + }, + "end": { + "$date": "2021-04-03T15:36:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "9414c719-5e68-4d96-a0a1-a8cb3d1d412d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T15:04:57.000Z" + }, + "end": { + "$date": "2021-04-03T15:38:20.000Z" + }, + "events": [ + { + "uuid": "4e467f47-2668-44d1-96c9-5db50cfa5eaa", + "start": { + "$date": "2021-04-03T15:04:57.000Z" + }, + "end": { + "$date": "2021-04-03T15:38:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "368f1a6f-8b6e-4898-bf5a-59fcbbd1f6d0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T15:38:34.000Z" + }, + "end": { + "$date": "2021-04-03T18:36:03.000Z" + }, + "events": [ + { + "uuid": "69ceff37-955a-4bd2-a8a5-4c431ed87d66", + "start": { + "$date": "2021-04-03T15:38:34.000Z" + }, + "end": { + "$date": "2021-04-03T18:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6392307-d78d-4d32-aacd-d52ba7e71d27", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T16:23:32.000Z" + }, + "end": { + "$date": "2021-04-03T16:54:16.000Z" + }, + "events": [ + { + "uuid": "dbc28c88-7c0d-4dab-b06d-647dca8ebd78", + "start": { + "$date": "2021-04-03T16:23:32.000Z" + }, + "end": { + "$date": "2021-04-03T16:46:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d832e7d3-e79b-46b8-ab5a-dc0296abba59", + "start": { + "$date": "2021-04-03T16:46:32.000Z" + }, + "end": { + "$date": "2021-04-03T16:51:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b9dff3c-5355-41f6-9c4b-80339e691275", + "start": { + "$date": "2021-04-03T16:51:32.000Z" + }, + "end": { + "$date": "2021-04-03T16:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cf200e75-47eb-47d6-8108-bc0d1e35ddad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T16:40:51.000Z" + }, + "end": { + "$date": "2021-04-03T16:44:41.000Z" + }, + "events": [ + { + "uuid": "6fbe0a4f-d6bd-44e9-9b28-c769a06bab5a", + "start": { + "$date": "2021-04-03T16:40:51.000Z" + }, + "end": { + "$date": "2021-04-03T16:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f3da6f59-9837-4ced-b10c-45c4213251b7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T16:44:57.000Z" + }, + "end": { + "$date": "2021-04-03T17:53:02.000Z" + }, + "events": [ + { + "uuid": "496b5679-72ef-438d-af31-d00521a10e5a", + "start": { + "$date": "2021-04-03T16:44:57.000Z" + }, + "end": { + "$date": "2021-04-03T17:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b222f46e-f4ba-4787-858b-47d19171f679", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T17:19:56.000Z" + }, + "end": { + "$date": "2021-04-03T17:27:06.000Z" + }, + "events": [ + { + "uuid": "ab9cad1e-1eae-4b79-b257-95b052930782", + "start": { + "$date": "2021-04-03T17:19:56.000Z" + }, + "end": { + "$date": "2021-04-03T17:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2acfe23b-a4cc-4079-abe9-938aa2a9024d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T17:29:47.000Z" + }, + "end": { + "$date": "2021-04-03T17:37:57.000Z" + }, + "events": [ + { + "uuid": "cc4b6f72-a94c-49e6-ad1d-0360304c2c5a", + "start": { + "$date": "2021-04-03T17:29:47.000Z" + }, + "end": { + "$date": "2021-04-03T17:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a512ed56-3cb1-4a2e-b82c-192a624b8c51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T18:17:35.000Z" + }, + "end": { + "$date": "2021-04-03T18:46:51.000Z" + }, + "events": [ + { + "uuid": "dc8539d0-eec7-4d57-854d-f971f6fff967", + "start": { + "$date": "2021-04-03T18:17:35.000Z" + }, + "end": { + "$date": "2021-04-03T18:46:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "5c378527-c8b4-40b0-a398-fddb2a8cc38a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T18:47:28.000Z" + }, + "end": { + "$date": "2021-04-03T20:40:27.000Z" + }, + "events": [ + { + "uuid": "d661ad4f-7d48-4d23-b0ab-b4b69e214640", + "start": { + "$date": "2021-04-03T18:47:28.000Z" + }, + "end": { + "$date": "2021-04-03T20:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c87b769c-d31c-41bb-9f5d-829d6ee2e562", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T18:47:55.000Z" + }, + "end": { + "$date": "2021-04-03T18:51:17.000Z" + }, + "events": [ + { + "uuid": "7cc707c9-a59c-4c9c-b9d2-f0fe66149e20", + "start": { + "$date": "2021-04-03T18:47:55.000Z" + }, + "end": { + "$date": "2021-04-03T18:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63c3e3d9-0527-4ae4-8882-318da903408f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T19:26:21.000Z" + }, + "end": { + "$date": "2021-04-03T20:02:12.000Z" + }, + "events": [ + { + "uuid": "1d780275-3e91-4c2e-8cb1-83570d6493d6", + "start": { + "$date": "2021-04-03T19:26:21.000Z" + }, + "end": { + "$date": "2021-04-03T20:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "73de3d83-e41c-461d-a271-66f65e4fd7ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T19:40:16.000Z" + }, + "end": { + "$date": "2021-04-03T20:04:41.000Z" + }, + "events": [ + { + "uuid": "2147d1cd-72a0-4ff6-b2fa-71f0e48118e4", + "start": { + "$date": "2021-04-03T19:40:16.000Z" + }, + "end": { + "$date": "2021-04-03T20:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71dd54d2-1b64-4a22-8f06-02c5560d571b", + "uuid": "e1de9b9c-4c71-45e1-a25c-c754f30c213f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-03T19:44:42.000Z" + }, + "end": { + "$date": "2021-04-03T20:27:51.000Z" + }, + "events": [ + { + "uuid": "9fe6a096-52f0-476c-a5fd-32278a7059be", + "start": { + "$date": "2021-04-03T19:44:42.000Z" + }, + "end": { + "$date": "2021-04-03T20:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c228ce7b-db63-493f-900b-107827b88434", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-03T19:46:35.000Z" + }, + "end": { + "$date": "2021-04-03T19:47:46.000Z" + }, + "events": [ + { + "uuid": "390be1fe-497c-4aa7-b470-741d1ed95129", + "start": { + "$date": "2021-04-03T19:46:35.000Z" + }, + "end": { + "$date": "2021-04-03T19:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "3e351a0b-63fc-4b54-b8cb-b5fe43f93f85", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T20:01:18.000Z" + }, + "end": { + "$date": "2021-04-03T20:40:16.000Z" + }, + "events": [ + { + "uuid": "58ddfdf3-69e2-401f-a5f1-94fcff5e67bf", + "start": { + "$date": "2021-04-03T20:01:18.000Z" + }, + "end": { + "$date": "2021-04-03T20:40:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1ecb294e-4be4-4185-a5bb-0fb12b0f3efe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T23:15:28.000Z" + }, + "end": { + "$date": "2021-04-03T23:25:10.000Z" + }, + "events": [ + { + "uuid": "b1453fa2-2c5d-403b-85df-b19e3bf5ff34", + "start": { + "$date": "2021-04-03T23:15:28.000Z" + }, + "end": { + "$date": "2021-04-04T01:30:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd9e015d-1177-4153-860b-61b0e179549a", + "start": { + "$date": "2021-04-04T01:30:28.000Z" + }, + "end": { + "$date": "2021-04-03T23:25:10.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5e8cfa8c-7066-4dd6-a8ce-6105ef58dc36", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T20:41:15.000Z" + }, + "end": { + "$date": "2021-04-03T21:53:40.000Z" + }, + "events": [ + { + "uuid": "93968003-bb43-44f0-8082-79ffc0ed9ccd", + "start": { + "$date": "2021-04-03T20:41:15.000Z" + }, + "end": { + "$date": "2021-04-03T21:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "717194dc-2a33-4f2a-8860-f6cebb0b8093", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-03T20:51:46.000Z" + }, + "end": { + "$date": "2021-04-04T00:06:34.000Z" + }, + "events": [ + { + "uuid": "d624a056-5045-4df6-88da-a1b645d24b50", + "start": { + "$date": "2021-04-03T20:51:46.000Z" + }, + "end": { + "$date": "2021-04-04T00:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "33567907-756e-40f6-bbb0-1b83f74d396c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-03T21:32:02.000Z" + }, + "end": { + "$date": "2021-04-04T00:06:06.000Z" + }, + "events": [ + { + "uuid": "8c764b48-f70e-4370-9751-2dae1b95bedd", + "start": { + "$date": "2021-04-03T21:32:02.000Z" + }, + "end": { + "$date": "2021-04-04T00:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "03d15b03-1a21-456c-9a5b-4b36a848118b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T22:19:02.000Z" + }, + "end": { + "$date": "2021-04-03T23:08:54.000Z" + }, + "events": [ + { + "uuid": "ec1769d5-dd73-43a7-af53-41a0efa350cb", + "start": { + "$date": "2021-04-03T22:19:02.000Z" + }, + "end": { + "$date": "2021-04-03T23:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b36bafe8-a63a-4c9e-9c64-2131d7535b5e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T23:17:15.000Z" + }, + "end": { + "$date": "2021-04-03T23:45:28.000Z" + }, + "events": [ + { + "uuid": "f1ca7db6-8d69-47df-bfbc-6c7759fddadd", + "start": { + "$date": "2021-04-03T23:17:15.000Z" + }, + "end": { + "$date": "2021-04-03T23:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "203e41cc-bb30-4977-8f80-53957587e3f4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-03T23:22:11.000Z" + }, + "end": { + "$date": "2021-04-04T02:09:25.000Z" + }, + "events": [ + { + "uuid": "6f8651f7-e631-4051-b126-b5dfe18997f8", + "start": { + "$date": "2021-04-03T23:22:11.000Z" + }, + "end": { + "$date": "2021-04-04T00:23:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a9b03ca-3271-46f7-9abb-0ef051dff625", + "start": { + "$date": "2021-04-04T00:23:11.000Z" + }, + "end": { + "$date": "2021-04-04T00:28:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "67739899-5654-42f0-a9af-fbc978f9d6c2", + "start": { + "$date": "2021-04-04T00:28:11.000Z" + }, + "end": { + "$date": "2021-04-04T00:53:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0b77d4f1-1e50-426c-b60a-a9507623d309", + "start": { + "$date": "2021-04-04T00:53:11.000Z" + }, + "end": { + "$date": "2021-04-04T01:26:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8edfd94-2166-4468-b320-7d06fdc095cd", + "start": { + "$date": "2021-04-04T01:26:11.000Z" + }, + "end": { + "$date": "2021-04-04T02:01:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "17799f45-cd57-47c3-8c92-80e7b08e9b17", + "start": { + "$date": "2021-04-04T02:01:11.000Z" + }, + "end": { + "$date": "2021-04-04T02:02:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "81b2eda9-d911-410e-97ca-ace3b9e7efda", + "start": { + "$date": "2021-04-04T02:02:11.000Z" + }, + "end": { + "$date": "2021-04-04T02:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "67d5bb3c-d1f4-4b16-ba7d-271bc2a1316c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-03T23:28:22.000Z" + }, + "end": { + "$date": "2021-04-04T00:02:33.000Z" + }, + "events": [ + { + "uuid": "8c9a0593-1431-49fe-bc5d-957212b6eb8d", + "start": { + "$date": "2021-04-03T23:28:22.000Z" + }, + "end": { + "$date": "2021-04-04T00:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "438563b2-cc76-4ed8-b9a9-11fe25ce869a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-03T23:44:56.000Z" + }, + "end": { + "$date": "2021-04-04T00:12:49.000Z" + }, + "events": [ + { + "uuid": "48bbad2c-ad02-4a4f-9c80-077baeae433b", + "start": { + "$date": "2021-04-03T23:44:56.000Z" + }, + "end": { + "$date": "2021-04-04T00:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "6c58c8b4-0869-407e-923a-d9d5c5edd4d0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-03T23:47:42.000Z" + }, + "end": { + "$date": "2021-04-03T23:58:59.000Z" + }, + "events": [ + { + "uuid": "322b3445-b4b6-4dc0-a9c9-bc22a4fdb1e3", + "start": { + "$date": "2021-04-03T23:47:42.000Z" + }, + "end": { + "$date": "2021-04-03T23:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "50927170-5f79-4f58-b716-69e06a0be527", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T00:14:48.000Z" + }, + "end": { + "$date": "2021-04-04T02:23:32.000Z" + }, + "events": [ + { + "uuid": "81cc2c18-0af7-424b-b32d-11f62b263ab6", + "start": { + "$date": "2021-04-04T00:14:48.000Z" + }, + "end": { + "$date": "2021-04-04T02:23:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "47a27651-4218-41f4-9412-c40112afe26f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T00:14:55.000Z" + }, + "end": { + "$date": "2021-04-04T01:51:02.000Z" + }, + "events": [ + { + "uuid": "23946750-adb3-408c-9f1d-8216c5df4393", + "start": { + "$date": "2021-04-04T00:14:55.000Z" + }, + "end": { + "$date": "2021-04-04T00:39:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13e6d424-2032-4f3a-a2a6-ab250ca97d18", + "start": { + "$date": "2021-04-04T00:39:55.000Z" + }, + "end": { + "$date": "2021-04-04T00:44:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "323d3b0c-265f-4a57-94e4-c8cbfdda5815", + "start": { + "$date": "2021-04-04T00:44:55.000Z" + }, + "end": { + "$date": "2021-04-04T00:54:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc42314f-1601-445e-b1a9-1bba7681ef01", + "start": { + "$date": "2021-04-04T00:54:55.000Z" + }, + "end": { + "$date": "2021-04-04T01:17:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "243dc297-3194-4793-b84e-f2075e04617a", + "start": { + "$date": "2021-04-04T01:17:55.000Z" + }, + "end": { + "$date": "2021-04-04T01:27:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09b6ac4c-a3b8-42f0-b8e9-6a7b15b9b9ce", + "start": { + "$date": "2021-04-04T01:27:55.000Z" + }, + "end": { + "$date": "2021-04-04T01:51:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6f61e54c-2a16-458a-86ac-740346c4f8fd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-04T00:54:51.000Z" + }, + "end": { + "$date": "2021-04-04T01:25:16.000Z" + }, + "events": [ + { + "uuid": "50adce5b-f3b0-436a-80ae-411b19706b35", + "start": { + "$date": "2021-04-04T00:54:51.000Z" + }, + "end": { + "$date": "2021-04-04T01:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "d363ab48-94ab-4ba4-8924-7149ee6275dd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-04T01:04:40.000Z" + }, + "end": { + "$date": "2021-04-04T01:15:51.000Z" + }, + "events": [ + { + "uuid": "9b328d2c-eeb8-4b67-a9af-53feb00ff64d", + "start": { + "$date": "2021-04-04T01:04:40.000Z" + }, + "end": { + "$date": "2021-04-04T01:15:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1456c9ce-a423-43f7-92ce-73bc3885511c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-04T01:10:46.000Z" + }, + "end": { + "$date": "2021-04-04T01:49:52.000Z" + }, + "events": [ + { + "uuid": "e77e6c34-9c8d-4f0a-9f54-21c2bb2cd25a", + "start": { + "$date": "2021-04-04T01:10:46.000Z" + }, + "end": { + "$date": "2021-04-04T01:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cfbf0394-44f8-4aee-820c-08f24878dd00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-04T01:33:38.000Z" + }, + "end": { + "$date": "2021-04-04T04:36:49.000Z" + }, + "events": [ + { + "uuid": "1ddd3c8f-b429-4354-91da-e4e67fd98773", + "start": { + "$date": "2021-04-04T01:33:38.000Z" + }, + "end": { + "$date": "2021-04-04T04:36:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "fbad687f-56fb-4e59-b0ae-1625ff38399a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-04T01:42:53.000Z" + }, + "end": { + "$date": "2021-04-04T02:23:31.000Z" + }, + "events": [ + { + "uuid": "572bbddc-dc53-45f5-a24d-53497f9874f9", + "start": { + "$date": "2021-04-04T01:42:53.000Z" + }, + "end": { + "$date": "2021-04-04T02:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f587b66b-4a15-4448-bfec-aa96a9c0343d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-04T02:03:07.000Z" + }, + "end": { + "$date": "2021-04-04T02:34:41.000Z" + }, + "events": [ + { + "uuid": "be9f4628-825a-4d3e-8c84-0af0d24fb37c", + "start": { + "$date": "2021-04-04T02:03:07.000Z" + }, + "end": { + "$date": "2021-04-04T02:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "56376b74-f715-4cab-9835-7c544ee215d0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-04T02:09:14.000Z" + }, + "end": { + "$date": "2021-04-04T05:49:02.000Z" + }, + "events": [ + { + "uuid": "c82b03f4-76b5-4e93-a1db-c7ac4a73c9d1", + "start": { + "$date": "2021-04-04T02:09:14.000Z" + }, + "end": { + "$date": "2021-04-04T05:49:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ec71d001-10b6-40d4-beac-f34bbaa89ecb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-04T02:24:31.000Z" + }, + "end": { + "$date": "2021-04-04T03:14:47.000Z" + }, + "events": [ + { + "uuid": "d7da18dd-d02c-4c9a-9637-9cb658396fb0", + "start": { + "$date": "2021-04-04T02:24:31.000Z" + }, + "end": { + "$date": "2021-04-04T03:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d4d19f09-8a1d-4f23-b162-91efd2dc2c0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T02:25:31.000Z" + }, + "end": { + "$date": "2021-04-04T03:14:43.000Z" + }, + "events": [ + { + "uuid": "70277cac-9e5d-4c33-bc4b-cd710d8e8796", + "start": { + "$date": "2021-04-04T02:25:31.000Z" + }, + "end": { + "$date": "2021-04-04T03:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4086f3c-0cbc-48d6-b662-fe2b06c61660", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-04T03:03:04.000Z" + }, + "end": { + "$date": "2021-04-04T03:37:58.000Z" + }, + "events": [ + { + "uuid": "99fc788f-66fd-4137-8163-3ca7cbffa3fb", + "start": { + "$date": "2021-04-04T03:03:04.000Z" + }, + "end": { + "$date": "2021-04-04T03:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d9afa684-0522-4b08-b2c8-d252d8140f4f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-04T02:39:44.000Z" + }, + "end": { + "$date": "2021-04-04T02:54:06.000Z" + }, + "events": [ + { + "uuid": "1636fea3-0a42-4364-b76b-f7c8b8cad738", + "start": { + "$date": "2021-04-04T02:39:44.000Z" + }, + "end": { + "$date": "2021-04-04T02:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c3bf9515-dfe0-47a8-a286-f4d2373c777f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-04T02:53:52.000Z" + }, + "end": { + "$date": "2021-04-04T05:49:12.000Z" + }, + "events": [ + { + "uuid": "d95f3427-d7f9-4380-a67f-f4e1b85ed5a3", + "start": { + "$date": "2021-04-04T02:53:52.000Z" + }, + "end": { + "$date": "2021-04-04T05:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "786ff645-3197-48d6-b7d0-fe888041a91d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T03:17:57.000Z" + }, + "end": { + "$date": "2021-04-04T03:53:41.000Z" + }, + "events": [ + { + "uuid": "e9a464f0-58ab-420b-b7de-1e8251fd3950", + "start": { + "$date": "2021-04-04T03:17:57.000Z" + }, + "end": { + "$date": "2021-04-04T03:53:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d87169f-5d99-4f17-8f1d-e545ab977dab", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-04T03:52:05.000Z" + }, + "end": { + "$date": "2021-04-04T04:25:08.000Z" + }, + "events": [ + { + "uuid": "02f6b16a-41fa-45f5-8a04-17008f0b8815", + "start": { + "$date": "2021-04-04T03:52:05.000Z" + }, + "end": { + "$date": "2021-04-04T04:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "efa155be-fc7e-4e10-8f11-90efe8adcc9a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-04T03:40:36.000Z" + }, + "end": { + "$date": "2021-04-04T05:10:02.000Z" + }, + "events": [ + { + "uuid": "4d454889-492b-4980-9541-749d262b7b7f", + "start": { + "$date": "2021-04-04T03:40:36.000Z" + }, + "end": { + "$date": "2021-04-04T05:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "226f8630-9348-405d-8e68-e26e9b2c1ea9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T04:09:36.000Z" + }, + "end": { + "$date": "2021-04-04T06:38:28.000Z" + }, + "events": [ + { + "uuid": "c96b3c39-a7d1-4b6c-b040-be7a792f6965", + "start": { + "$date": "2021-04-04T04:09:36.000Z" + }, + "end": { + "$date": "2021-04-04T06:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "80e7b2df-5936-4426-984b-8fd84781c89d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T04:46:29.000Z" + }, + "end": { + "$date": "2021-04-04T04:59:27.000Z" + }, + "events": [ + { + "uuid": "6284ec98-486c-4dcb-bf3d-4e95868a2b39", + "start": { + "$date": "2021-04-04T04:46:29.000Z" + }, + "end": { + "$date": "2021-04-04T04:59:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "54ae9a3f-ee92-4835-8aa1-bc3d2d128db1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-04T04:56:11.000Z" + }, + "end": { + "$date": "2021-04-04T05:29:56.000Z" + }, + "events": [ + { + "uuid": "bfbcf81c-6810-4527-95e8-63f1dcf008cc", + "start": { + "$date": "2021-04-04T04:56:11.000Z" + }, + "end": { + "$date": "2021-04-04T05:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a827d4ed-cdf9-4062-b9f5-b20dada1c6b4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T05:53:59.000Z" + }, + "end": { + "$date": "2021-04-04T06:58:53.000Z" + }, + "events": [ + { + "uuid": "ac2dbfd8-6c57-41e9-a793-c124794256ce", + "start": { + "$date": "2021-04-04T05:53:59.000Z" + }, + "end": { + "$date": "2021-04-04T06:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "09e82dcb-5abd-44f4-b8bb-d21b4f191fce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-04T05:10:24.000Z" + }, + "end": { + "$date": "2021-04-04T06:46:12.000Z" + }, + "events": [ + { + "uuid": "1fee2e6b-4758-4f81-9e72-351a531da816", + "start": { + "$date": "2021-04-04T05:10:24.000Z" + }, + "end": { + "$date": "2021-04-04T06:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "399ffe82-6a15-4d85-ba8f-1bd961ffe5de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T06:42:57.000Z" + }, + "end": { + "$date": "2021-04-04T07:04:03.000Z" + }, + "events": [ + { + "uuid": "d331bfb2-a247-4c41-aa79-6a7ec294b245", + "start": { + "$date": "2021-04-04T06:42:57.000Z" + }, + "end": { + "$date": "2021-04-04T07:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "102abb9a-be99-45c7-87f0-7eac83f5c628", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T16:09:19.000Z" + }, + "end": { + "$date": "2021-04-04T16:09:26.000Z" + }, + "events": [ + { + "uuid": "5aeec74a-76e4-4731-b0e1-74b74fafb0bf", + "start": { + "$date": "2021-04-04T16:09:19.000Z" + }, + "end": { + "$date": "2021-04-04T16:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "026001f7-1c14-4cc5-a890-5db67d5705e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T16:20:15.000Z" + }, + "end": { + "$date": "2021-04-04T17:28:58.000Z" + }, + "events": [ + { + "uuid": "8a1e5faa-431c-41ca-9d2e-ea57ec367b57", + "start": { + "$date": "2021-04-04T16:20:15.000Z" + }, + "end": { + "$date": "2021-04-04T17:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcad3f66-a13f-4e77-9bd5-f39dbd3c9084", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-04T16:44:59.000Z" + }, + "end": { + "$date": "2021-04-04T17:17:05.000Z" + }, + "events": [ + { + "uuid": "ec5b218d-de84-4340-b471-f94d73c8c96d", + "start": { + "$date": "2021-04-04T16:44:59.000Z" + }, + "end": { + "$date": "2021-04-04T17:17:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc7acea9-bf13-4dcd-852c-22a4b130dce4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T16:56:26.000Z" + }, + "end": { + "$date": "2021-04-04T19:04:31.000Z" + }, + "events": [ + { + "uuid": "03d2327d-b943-4f30-8b93-8946abfeec24", + "start": { + "$date": "2021-04-04T16:56:26.000Z" + }, + "end": { + "$date": "2021-04-04T19:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b615ad7d-0f7d-4446-9886-fadb9578b17b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-04T17:21:21.000Z" + }, + "end": { + "$date": "2021-04-04T17:50:12.000Z" + }, + "events": [ + { + "uuid": "9647c62a-8ce8-4a3b-9d3f-9b9f731c2cf4", + "start": { + "$date": "2021-04-04T17:21:21.000Z" + }, + "end": { + "$date": "2021-04-04T17:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9fc70aa-9fbc-434c-a3d1-ab4bffd09c5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T17:29:11.000Z" + }, + "end": { + "$date": "2021-04-04T19:06:20.000Z" + }, + "events": [ + { + "uuid": "27915f08-6abd-4c6e-9f54-3c9c4d2754ba", + "start": { + "$date": "2021-04-04T17:29:11.000Z" + }, + "end": { + "$date": "2021-04-04T19:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a9b80e2d-6bd9-4e0a-8432-e2482ee64e41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-04T20:27:06.000Z" + }, + "end": { + "$date": "2021-04-04T23:44:09.000Z" + }, + "events": [ + { + "uuid": "407dd350-a5a6-4978-abc0-4d389f3791f5", + "start": { + "$date": "2021-04-04T20:27:06.000Z" + }, + "end": { + "$date": "2021-04-04T23:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "18950e86-1f5d-47fb-93b0-55262d6f206f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-04T19:05:09.000Z" + }, + "end": { + "$date": "2021-04-04T20:10:48.000Z" + }, + "events": [ + { + "uuid": "09529251-e6d6-4b10-af6a-761bb4f8ef5a", + "start": { + "$date": "2021-04-04T19:05:09.000Z" + }, + "end": { + "$date": "2021-04-04T20:10:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bcf1e9c6-b7c7-416e-b032-a552e41ed764", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T19:06:23.000Z" + }, + "end": { + "$date": "2021-04-04T21:48:58.000Z" + }, + "events": [ + { + "uuid": "27689c59-af60-4801-87b1-b64659b6f219", + "start": { + "$date": "2021-04-04T19:06:23.000Z" + }, + "end": { + "$date": "2021-04-04T20:02:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd93e7d4-444a-4d0e-ae89-ab5cb33dbbd9", + "start": { + "$date": "2021-04-04T20:02:23.000Z" + }, + "end": { + "$date": "2021-04-04T20:07:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6be77d4a-aff0-4ab8-bfaa-caf120828f1b", + "start": { + "$date": "2021-04-04T20:07:23.000Z" + }, + "end": { + "$date": "2021-04-04T20:17:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3ecfb2f9-08da-4770-91fb-ee39225dd612", + "start": { + "$date": "2021-04-04T20:17:23.000Z" + }, + "end": { + "$date": "2021-04-04T20:41:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3815e416-4c80-4f43-8dad-f07b3db0124f", + "start": { + "$date": "2021-04-04T20:41:23.000Z" + }, + "end": { + "$date": "2021-04-04T20:51:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12bbaa26-cf37-499c-a026-e0c592261bb8", + "start": { + "$date": "2021-04-04T20:51:23.000Z" + }, + "end": { + "$date": "2021-04-04T21:30:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de7a8feb-f05a-4b89-b7b6-66975b0a99e0", + "start": { + "$date": "2021-04-04T21:30:23.000Z" + }, + "end": { + "$date": "2021-04-04T21:33:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f14aa1c-d969-469f-bbb5-dcdb2c3c4f5f", + "start": { + "$date": "2021-04-04T21:33:23.000Z" + }, + "end": { + "$date": "2021-04-04T21:47:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f06ad09a-19aa-45ba-a8f8-ad22b91726c6", + "start": { + "$date": "2021-04-04T21:47:23.000Z" + }, + "end": { + "$date": "2021-04-04T21:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "6f85d71a-5360-490f-a8d4-0abff6d6278e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T19:48:52.000Z" + }, + "end": { + "$date": "2021-04-04T19:55:42.000Z" + }, + "events": [ + { + "uuid": "a7d81259-3ee5-4092-a0ce-d6b6b4b83332", + "start": { + "$date": "2021-04-04T19:48:52.000Z" + }, + "end": { + "$date": "2021-04-04T19:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "553ad28b-25aa-4c44-a231-4f059a22d151", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-04T19:54:54.000Z" + }, + "end": { + "$date": "2021-04-04T22:48:01.000Z" + }, + "events": [ + { + "uuid": "2f06829f-def7-4ba6-8499-aafd472baaa9", + "start": { + "$date": "2021-04-04T19:54:54.000Z" + }, + "end": { + "$date": "2021-04-04T22:48:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "8fc53ac3-dd5e-4176-aa9b-d8d5bf605735", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T19:55:57.000Z" + }, + "end": { + "$date": "2021-04-04T22:45:37.000Z" + }, + "events": [ + { + "uuid": "65202f77-2570-4fb6-8879-c09f82b5ebae", + "start": { + "$date": "2021-04-04T19:55:57.000Z" + }, + "end": { + "$date": "2021-04-04T22:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5208512d-428c-44d8-a61f-e9c1ac72b20a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-04T19:59:55.000Z" + }, + "end": { + "$date": "2021-04-04T22:13:55.000Z" + }, + "events": [ + { + "uuid": "9294eac0-dd64-4349-913d-bb6c9bb80c8f", + "start": { + "$date": "2021-04-04T19:59:55.000Z" + }, + "end": { + "$date": "2021-04-04T22:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "880467e4-4300-4638-868a-b2dbff4f6f7a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T21:50:43.000Z" + }, + "end": { + "$date": "2021-04-04T22:51:51.000Z" + }, + "events": [ + { + "uuid": "e1eca8d1-56d9-46e4-9f20-8a539f3cf378", + "start": { + "$date": "2021-04-04T21:50:43.000Z" + }, + "end": { + "$date": "2021-04-04T22:51:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ee572763-8dc2-499d-8cf9-03b683413a06", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-04T22:22:39.000Z" + }, + "end": { + "$date": "2021-04-04T22:48:42.000Z" + }, + "events": [ + { + "uuid": "65cfe9bb-5bcc-43be-a7c5-061bed83a4fd", + "start": { + "$date": "2021-04-04T22:22:39.000Z" + }, + "end": { + "$date": "2021-04-04T22:33:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff4f7366-634c-4125-a6f0-dbac7dacdd17", + "start": { + "$date": "2021-04-04T22:33:39.000Z" + }, + "end": { + "$date": "2021-04-04T22:38:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "063ffe91-4ba5-4128-bc81-fe4d8da4d4ee", + "start": { + "$date": "2021-04-04T22:38:39.000Z" + }, + "end": { + "$date": "2021-04-04T22:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "99f2c543-3038-4c1d-9c8c-a20b0b97e183", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-04T22:40:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:08:53.000Z" + }, + "events": [ + { + "uuid": "65decc01-b6d3-46ba-a3a0-882f29b771f6", + "start": { + "$date": "2021-04-04T22:40:06.000Z" + }, + "end": { + "$date": "2021-04-04T23:54:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a58997f-eaae-41f3-aabb-b935e7d8f190", + "start": { + "$date": "2021-04-04T23:54:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:00:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c11483a8-fa83-45c4-b1fd-7af61821bbbc", + "start": { + "$date": "2021-04-05T00:00:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:02:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d308c25-9827-470b-8658-2b4962bfe2ed", + "start": { + "$date": "2021-04-05T00:02:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:03:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a7839dbe-0b22-43ac-960f-8f95f891f28b", + "start": { + "$date": "2021-04-05T00:03:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:05:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "050734cb-263e-43ed-a733-87e11f01916a", + "start": { + "$date": "2021-04-05T00:05:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:07:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4baf32fa-5f3e-477d-b0f8-c67b41402761", + "start": { + "$date": "2021-04-05T00:07:06.000Z" + }, + "end": { + "$date": "2021-04-05T00:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f671445b-801e-495b-b6d6-aec4d719c169", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-04T22:49:37.000Z" + }, + "end": { + "$date": "2021-04-04T23:39:35.000Z" + }, + "events": [ + { + "uuid": "33539876-5f1d-48b3-a7e9-abea21aa576d", + "start": { + "$date": "2021-04-04T22:49:37.000Z" + }, + "end": { + "$date": "2021-04-04T23:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2eacebb4-7102-42a7-8ebe-80df719ae76b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T22:52:06.000Z" + }, + "end": { + "$date": "2021-04-04T23:25:22.000Z" + }, + "events": [ + { + "uuid": "5ea36902-05ba-4f62-bd8e-63b9c5e6c618", + "start": { + "$date": "2021-04-04T22:52:06.000Z" + }, + "end": { + "$date": "2021-04-04T23:25:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c582b37f-8a4a-4cc1-8569-c8aa4096e5e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T23:29:57.000Z" + }, + "end": { + "$date": "2021-04-04T23:43:43.000Z" + }, + "events": [ + { + "uuid": "0f120e24-58e6-4995-a80e-ae29bfce67aa", + "start": { + "$date": "2021-04-04T23:29:57.000Z" + }, + "end": { + "$date": "2021-04-04T23:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fb9ee1c0-3588-4349-8cbd-94aa81a51980", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-04T23:45:20.000Z" + }, + "end": { + "$date": "2021-04-05T00:16:27.000Z" + }, + "events": [ + { + "uuid": "20c75c4f-9ef2-477b-909c-9f67a508450f", + "start": { + "$date": "2021-04-04T23:45:20.000Z" + }, + "end": { + "$date": "2021-04-05T00:16:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "eec328d1-34ae-439a-a611-826ec76942fd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-04T23:47:28.000Z" + }, + "end": { + "$date": "2021-04-04T23:52:26.000Z" + }, + "events": [ + { + "uuid": "4dda7ad8-2ab9-4d4a-851f-569b9f5b0f89", + "start": { + "$date": "2021-04-04T23:47:28.000Z" + }, + "end": { + "$date": "2021-04-04T23:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "333ed557-7e8d-45fd-85e2-c410c88282d7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T23:47:28.000Z" + }, + "end": { + "$date": "2021-04-04T23:48:43.000Z" + }, + "events": [ + { + "uuid": "6d414b33-3bc8-4599-b7a9-6d4fd2663515", + "start": { + "$date": "2021-04-04T23:47:28.000Z" + }, + "end": { + "$date": "2021-04-04T23:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b8a6e8c3-7453-4f10-ab8c-2b0bf0408e27", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-04T23:48:53.000Z" + }, + "end": { + "$date": "2021-04-05T00:34:04.000Z" + }, + "events": [ + { + "uuid": "4dd13826-84c3-405a-b54e-8c730421ec1e", + "start": { + "$date": "2021-04-04T23:48:53.000Z" + }, + "end": { + "$date": "2021-04-05T00:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "766a1ec8-cda1-48b0-871d-6c19d97abd0d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-04T23:59:02.000Z" + }, + "end": { + "$date": "2021-04-05T00:35:28.000Z" + }, + "events": [ + { + "uuid": "1b3e3624-c8dc-4667-aada-9b14037649ed", + "start": { + "$date": "2021-04-04T23:59:02.000Z" + }, + "end": { + "$date": "2021-04-05T00:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "2018c571-c7e5-4ee4-ae2a-7dda5d8f1e56", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-05T00:08:09.000Z" + }, + "end": { + "$date": "2021-04-05T00:34:24.000Z" + }, + "events": [ + { + "uuid": "a61ddc2d-69f6-4c3e-962b-c4ba0e2c634b", + "start": { + "$date": "2021-04-05T00:08:09.000Z" + }, + "end": { + "$date": "2021-04-05T00:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "895a1071-d144-42d6-81bc-1ed260c17256", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-05T00:20:53.000Z" + }, + "end": { + "$date": "2021-04-05T00:28:19.000Z" + }, + "events": [ + { + "uuid": "7cac575d-6ea6-423d-8c0c-ead60770c9b0", + "start": { + "$date": "2021-04-05T00:20:53.000Z" + }, + "end": { + "$date": "2021-04-05T00:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d5677bfd-92e9-4422-8b99-441240625608", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T00:35:10.000Z" + }, + "end": { + "$date": "2021-04-05T01:48:38.000Z" + }, + "events": [ + { + "uuid": "df03f1cf-a6fa-45be-bd7c-7360a12ec4f3", + "start": { + "$date": "2021-04-05T00:35:10.000Z" + }, + "end": { + "$date": "2021-04-05T00:51:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62aab3d6-069f-4b0f-8fb9-41a05706e3e0", + "start": { + "$date": "2021-04-05T00:51:10.000Z" + }, + "end": { + "$date": "2021-04-05T00:55:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9eb61f5f-53a4-47d9-902d-f60778fb5b9f", + "start": { + "$date": "2021-04-05T00:55:10.000Z" + }, + "end": { + "$date": "2021-04-05T01:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "2c672375-8931-4db4-81f5-04286aad718c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-05T01:06:20.000Z" + }, + "end": { + "$date": "2021-04-05T03:22:30.000Z" + }, + "events": [ + { + "uuid": "7ec8c417-962a-44dc-90e7-755777bb01ef", + "start": { + "$date": "2021-04-05T01:06:20.000Z" + }, + "end": { + "$date": "2021-04-05T02:49:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a6e9131-8f0b-4d60-90dc-35d6a5d46839", + "start": { + "$date": "2021-04-05T02:49:20.000Z" + }, + "end": { + "$date": "2021-04-05T02:51:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "896eb1ba-3801-4faa-ba06-407a17c4ba84", + "start": { + "$date": "2021-04-05T02:51:20.000Z" + }, + "end": { + "$date": "2021-04-05T03:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d202a01-9fd5-4994-af98-b0e85217b01c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-05T01:30:32.000Z" + }, + "end": { + "$date": "2021-04-05T01:38:58.000Z" + }, + "events": [ + { + "uuid": "282d6d8c-3563-45b4-a985-cd0bde6bf02f", + "start": { + "$date": "2021-04-05T01:30:32.000Z" + }, + "end": { + "$date": "2021-04-05T01:38:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "uuid": "a736fac3-72fc-4651-b9ae-cd9a1c13a239", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T01:50:53.000Z" + }, + "end": { + "$date": "2021-04-05T02:02:33.000Z" + }, + "events": [ + { + "uuid": "420ba50b-1ace-4cc0-a897-3eaa93cb07f8", + "start": { + "$date": "2021-04-05T01:50:53.000Z" + }, + "end": { + "$date": "2021-04-05T02:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", + "uuid": "3859f743-b64f-4e54-ad55-1a1b6da6153c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-05T02:17:11.000Z" + }, + "end": { + "$date": "2021-04-05T03:11:58.000Z" + }, + "events": [ + { + "uuid": "9753df03-058b-49c2-9aa8-cd49b4bd6fcf", + "start": { + "$date": "2021-04-05T02:17:11.000Z" + }, + "end": { + "$date": "2021-04-05T03:11:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", + "uuid": "6ca72fbc-a462-4021-949f-ff84a5fd4873", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-05T02:20:47.000Z" + }, + "end": { + "$date": "2021-04-05T03:11:53.000Z" + }, + "events": [ + { + "uuid": "9cef1f05-0be9-4f81-88d9-beaa477ad422", + "start": { + "$date": "2021-04-05T02:20:47.000Z" + }, + "end": { + "$date": "2021-04-05T03:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", + "uuid": "2efc0616-77b3-4f29-a18b-78f225f3a702", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T02:20:59.000Z" + }, + "end": { + "$date": "2021-04-05T03:12:05.000Z" + }, + "events": [ + { + "uuid": "e7ea1e29-52e0-4c3d-9b81-3643d4011002", + "start": { + "$date": "2021-04-05T02:20:59.000Z" + }, + "end": { + "$date": "2021-04-05T03:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7405b7f4-be4d-4f8e-9544-4560d6f17861", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T02:23:06.000Z" + }, + "end": { + "$date": "2021-04-05T03:05:32.000Z" + }, + "events": [ + { + "uuid": "72ecf4c7-0604-4c0f-90eb-3f9af82ba132", + "start": { + "$date": "2021-04-05T02:23:06.000Z" + }, + "end": { + "$date": "2021-04-05T03:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", + "uuid": "add63f70-af2f-4621-9dd9-d508186efcbd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-05T02:25:34.000Z" + }, + "end": { + "$date": "2021-04-05T03:10:51.000Z" + }, + "events": [ + { + "uuid": "6315ee8f-00d3-4b41-8524-86a1d8273020", + "start": { + "$date": "2021-04-05T02:25:34.000Z" + }, + "end": { + "$date": "2021-04-05T03:10:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "855f8ad7-3264-4e94-a561-8732c8bd288b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T03:06:12.000Z" + }, + "end": { + "$date": "2021-04-05T03:28:29.000Z" + }, + "events": [ + { + "uuid": "2ecda632-5f59-49b6-8af0-a0e266642539", + "start": { + "$date": "2021-04-05T03:06:12.000Z" + }, + "end": { + "$date": "2021-04-05T03:28:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4f1cc127-81bd-4d7a-b824-1bf2a6ab3cee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-05T03:11:26.000Z" + }, + "end": { + "$date": "2021-04-05T04:54:16.000Z" + }, + "events": [ + { + "uuid": "c1539953-daff-4ba1-bd38-968ade9bf421", + "start": { + "$date": "2021-04-05T03:11:26.000Z" + }, + "end": { + "$date": "2021-04-05T04:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "04fc1df1-a977-48ac-a381-e65c8d991a01", + "uuid": "88b06e33-1ba0-4949-b7a4-c4171083c116", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-05T03:13:38.000Z" + }, + "end": { + "$date": "2021-04-05T03:14:58.000Z" + }, + "events": [ + { + "uuid": "31946201-2635-4878-8231-8d545487a2fd", + "start": { + "$date": "2021-04-05T03:13:38.000Z" + }, + "end": { + "$date": "2021-04-05T03:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "566deadb-358f-4f54-b392-27a59e86797f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T03:40:08.000Z" + }, + "end": { + "$date": "2021-04-05T04:16:12.000Z" + }, + "events": [ + { + "uuid": "d164a7a7-e076-4c63-84ac-1af072887e59", + "start": { + "$date": "2021-04-05T03:40:08.000Z" + }, + "end": { + "$date": "2021-04-05T04:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb89e830-6144-4c83-9c10-4301d5f3c0b5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-05T04:35:43.000Z" + }, + "end": { + "$date": "2021-04-05T05:06:53.000Z" + }, + "events": [ + { + "uuid": "8550a782-33fd-4c2e-b520-f4ff117d2985", + "start": { + "$date": "2021-04-05T04:35:43.000Z" + }, + "end": { + "$date": "2021-04-05T05:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "96f2cab8-1a90-4bce-b7c2-0b66002c440d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T04:57:03.000Z" + }, + "end": { + "$date": "2021-04-05T04:58:58.000Z" + }, + "events": [ + { + "uuid": "fe918089-0ddd-4671-8e8b-bba64f62edc3", + "start": { + "$date": "2021-04-05T04:57:03.000Z" + }, + "end": { + "$date": "2021-04-05T04:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "85699a90-b929-4067-ac3d-7efae33366f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-05T04:57:14.000Z" + }, + "end": { + "$date": "2021-04-05T04:58:44.000Z" + }, + "events": [ + { + "uuid": "7e198993-7075-4e70-b14e-6ae065f2d655", + "start": { + "$date": "2021-04-05T04:57:14.000Z" + }, + "end": { + "$date": "2021-04-05T04:58:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da330bf2-595f-4d1c-be05-0cae96bd7fad", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-05T05:11:03.000Z" + }, + "end": { + "$date": "2021-04-05T05:42:05.000Z" + }, + "events": [ + { + "uuid": "ce92eb1b-e9d4-4c78-858f-1ffdf02771cd", + "start": { + "$date": "2021-04-05T05:11:03.000Z" + }, + "end": { + "$date": "2021-04-05T05:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1be438ea-7360-4895-8dfa-65445836b300", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-05T05:26:51.000Z" + }, + "end": { + "$date": "2021-04-05T07:59:51.000Z" + }, + "events": [ + { + "uuid": "167a796a-dbf5-4143-9910-d32ff0ba6f30", + "start": { + "$date": "2021-04-05T05:26:51.000Z" + }, + "end": { + "$date": "2021-04-05T07:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14502628-5f65-450b-b364-951a2ce630ae", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-05T06:06:17.000Z" + }, + "end": { + "$date": "2021-04-05T06:34:37.000Z" + }, + "events": [ + { + "uuid": "1e04f8fc-5e1e-40d8-92cb-881049365ae1", + "start": { + "$date": "2021-04-05T06:06:17.000Z" + }, + "end": { + "$date": "2021-04-05T06:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33a9ecaf-505b-476e-b044-705edbd26de8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T16:31:51.000Z" + }, + "end": { + "$date": "2021-04-05T16:59:03.000Z" + }, + "events": [ + { + "uuid": "6c1370f7-de42-4447-8687-1ee23935d959", + "start": { + "$date": "2021-04-05T16:31:51.000Z" + }, + "end": { + "$date": "2021-04-05T17:07:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c352179-4bdd-489e-944e-fb95bffb9486", + "start": { + "$date": "2021-04-05T17:07:51.000Z" + }, + "end": { + "$date": "2021-04-05T17:12:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c65b1d6-338a-4a50-8bc4-252bc615c06f", + "start": { + "$date": "2021-04-05T17:12:51.000Z" + }, + "end": { + "$date": "2021-04-05T16:59:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "fdaf9633-eb27-489c-8949-e2306c00a203", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T14:28:41.000Z" + }, + "end": { + "$date": "2021-04-05T15:35:38.000Z" + }, + "events": [ + { + "uuid": "1c5514c0-ba3f-41a8-a940-0258738eff28", + "start": { + "$date": "2021-04-05T14:28:41.000Z" + }, + "end": { + "$date": "2021-04-05T15:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1e71e5a1-5b42-4855-85a1-80129271d67f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T16:04:28.000Z" + }, + "end": { + "$date": "2021-04-05T17:00:42.000Z" + }, + "events": [ + { + "uuid": "c85e08e9-9037-4ea2-b9e6-9308001cb6fc", + "start": { + "$date": "2021-04-05T16:04:28.000Z" + }, + "end": { + "$date": "2021-04-05T16:15:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de4030ef-df11-4dbb-8253-0bf1e601bbc4", + "start": { + "$date": "2021-04-05T16:15:28.000Z" + }, + "end": { + "$date": "2021-04-05T16:46:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8de0ff24-0e9a-4e80-810b-8bb11d6ed8ae", + "start": { + "$date": "2021-04-05T16:46:28.000Z" + }, + "end": { + "$date": "2021-04-05T17:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8ca577f-2ad1-44ef-b039-d7ebcf52b10c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T16:59:24.000Z" + }, + "end": { + "$date": "2021-04-05T17:04:14.000Z" + }, + "events": [ + { + "uuid": "f0d628d9-ddb0-45bc-a309-ae7513c3f4e8", + "start": { + "$date": "2021-04-05T16:59:24.000Z" + }, + "end": { + "$date": "2021-04-05T17:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "aa808ff4-a64c-429c-8e15-4cc2acb37200", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T17:03:43.000Z" + }, + "end": { + "$date": "2021-04-05T17:23:50.000Z" + }, + "events": [ + { + "uuid": "eae3707e-410d-40a1-8699-c8e02eb8a9f9", + "start": { + "$date": "2021-04-05T17:03:43.000Z" + }, + "end": { + "$date": "2021-04-05T17:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "801315fa-d102-4dee-abaa-760c0f103150", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T17:25:21.000Z" + }, + "end": { + "$date": "2021-04-05T17:28:56.000Z" + }, + "events": [ + { + "uuid": "dd51d650-d09c-4872-998c-8897043f8c19", + "start": { + "$date": "2021-04-05T17:25:21.000Z" + }, + "end": { + "$date": "2021-04-05T17:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7736cb25-a1e8-4857-b7a0-c84dcdc4f6eb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T17:29:06.000Z" + }, + "end": { + "$date": "2021-04-05T19:15:07.000Z" + }, + "events": [ + { + "uuid": "3c0798e6-0d84-49fb-bf59-9d96444ef124", + "start": { + "$date": "2021-04-05T17:29:06.000Z" + }, + "end": { + "$date": "2021-04-05T19:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e607df2a-0ec7-49cb-b7f4-080134ae8ff9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-05T17:30:08.000Z" + }, + "end": { + "$date": "2021-04-05T21:12:40.000Z" + }, + "events": [ + { + "uuid": "c3e7da69-25b2-4bed-85e4-2c7c320aca15", + "start": { + "$date": "2021-04-05T17:30:08.000Z" + }, + "end": { + "$date": "2021-04-05T21:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8a1c0c1f-aacb-42af-b431-f1e448ac0144", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T17:47:41.000Z" + }, + "end": { + "$date": "2021-04-05T18:00:57.000Z" + }, + "events": [ + { + "uuid": "cd3e35ca-5c8a-4497-a033-762bb02e2d8e", + "start": { + "$date": "2021-04-05T17:47:41.000Z" + }, + "end": { + "$date": "2021-04-05T18:00:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "990ff4e4-a53d-4a3e-9b7a-aba4280494a4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-05T18:41:21.000Z" + }, + "end": { + "$date": "2021-04-05T19:25:37.000Z" + }, + "events": [ + { + "uuid": "ac2d88ef-bd11-4252-abe5-89abe4817d48", + "start": { + "$date": "2021-04-05T18:41:21.000Z" + }, + "end": { + "$date": "2021-04-05T19:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5bae96da-ffa5-4a0d-a68d-470fdb81262d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-05T19:25:20.000Z" + }, + "end": { + "$date": "2021-04-05T20:18:41.000Z" + }, + "events": [ + { + "uuid": "af69666e-99b7-4502-8d43-3b029bd31c70", + "start": { + "$date": "2021-04-05T19:25:20.000Z" + }, + "end": { + "$date": "2021-04-05T20:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cd7c60b3-2cc0-4476-b958-3e236a3e3eac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-05T19:43:06.000Z" + }, + "end": { + "$date": "2021-04-05T20:17:10.000Z" + }, + "events": [ + { + "uuid": "d9ab6feb-c1df-47e2-aad1-43fe2e0b6010", + "start": { + "$date": "2021-04-05T19:43:06.000Z" + }, + "end": { + "$date": "2021-04-05T20:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "787351e6-2451-43ad-a4b9-f3cba5698378", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-05T19:51:24.000Z" + }, + "end": { + "$date": "2021-04-05T20:28:45.000Z" + }, + "events": [ + { + "uuid": "c1036bfa-bf1c-4a99-8676-e89d2a6e3582", + "start": { + "$date": "2021-04-05T19:51:24.000Z" + }, + "end": { + "$date": "2021-04-05T20:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ab609955-d760-4fb5-a37f-33fbb64151c3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-05T19:54:08.000Z" + }, + "end": { + "$date": "2021-04-05T20:04:02.000Z" + }, + "events": [ + { + "uuid": "b3ada46f-dcd0-4a34-8d06-aa1cf5eb1dca", + "start": { + "$date": "2021-04-05T19:54:08.000Z" + }, + "end": { + "$date": "2021-04-05T20:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "caede395-ac14-4362-92b6-f6861d8faead", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-05T21:04:28.000Z" + }, + "end": { + "$date": "2021-04-05T21:44:57.000Z" + }, + "events": [ + { + "uuid": "4524eb60-e1ca-46f0-bf7b-5eeccd695f5e", + "start": { + "$date": "2021-04-05T21:04:28.000Z" + }, + "end": { + "$date": "2021-04-05T21:44:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "c118fa5d-a621-4d8f-b22e-c89b2742d6c6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-05T21:20:52.000Z" + }, + "end": { + "$date": "2021-04-05T23:26:26.000Z" + }, + "events": [ + { + "uuid": "5bd3d6cd-d3fe-4e89-a17f-1494c5ca9d29", + "start": { + "$date": "2021-04-05T21:20:52.000Z" + }, + "end": { + "$date": "2021-04-05T23:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2ac29ff6-803e-4c4a-9c1c-28419dbebb05", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-05T21:46:14.000Z" + }, + "end": { + "$date": "2021-04-06T00:00:02.000Z" + }, + "events": [ + { + "uuid": "f89825dd-ce3e-4d19-889a-3183a658bb71", + "start": { + "$date": "2021-04-05T21:46:14.000Z" + }, + "end": { + "$date": "2021-04-06T00:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3ca45230-940e-4383-8b88-ada18757ebcd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-05T22:17:15.000Z" + }, + "end": { + "$date": "2021-04-06T01:13:42.000Z" + }, + "events": [ + { + "uuid": "4629cec5-a8e4-42ed-9eb6-adad720b0817", + "start": { + "$date": "2021-04-05T22:17:15.000Z" + }, + "end": { + "$date": "2021-04-06T01:13:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9a3f90a5-d10c-4ec6-ba09-68d38ef9b97d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T00:44:46.000Z" + }, + "end": { + "$date": "2021-04-06T01:12:05.000Z" + }, + "events": [ + { + "uuid": "be2baf6a-afda-4b0f-9539-b1fbab6474a9", + "start": { + "$date": "2021-04-06T00:44:46.000Z" + }, + "end": { + "$date": "2021-04-06T01:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bdc90080-853f-4fd0-b577-cfd41a35f0c7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-06T00:45:04.000Z" + }, + "end": { + "$date": "2021-04-06T03:08:15.000Z" + }, + "events": [ + { + "uuid": "e7d1e43a-a4ae-4693-aa4b-6b92cc4f39e9", + "start": { + "$date": "2021-04-06T00:45:04.000Z" + }, + "end": { + "$date": "2021-04-06T01:27:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5164e35c-7b1d-4978-b106-d48e038b9ace", + "start": { + "$date": "2021-04-06T01:27:04.000Z" + }, + "end": { + "$date": "2021-04-06T01:37:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b0d2716-4456-470b-b51a-80b6b9e71dff", + "start": { + "$date": "2021-04-06T01:37:04.000Z" + }, + "end": { + "$date": "2021-04-06T03:08:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "53de5d45-4ce4-4510-932f-7bb630484459", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T01:15:46.000Z" + }, + "end": { + "$date": "2021-04-06T01:17:20.000Z" + }, + "events": [ + { + "uuid": "2dac0e59-d9fe-4df9-9150-7a4f7478d23a", + "start": { + "$date": "2021-04-06T01:15:46.000Z" + }, + "end": { + "$date": "2021-04-06T01:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "61bed3bf-daf1-4edb-8207-30df6dcae8f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T01:20:17.000Z" + }, + "end": { + "$date": "2021-04-06T01:55:47.000Z" + }, + "events": [ + { + "uuid": "4be97b7d-4557-43f9-997b-0a538795a842", + "start": { + "$date": "2021-04-06T01:20:17.000Z" + }, + "end": { + "$date": "2021-04-06T01:55:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c48dae7f-7b7c-4348-890d-c8187318dd0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-06T01:35:50.000Z" + }, + "end": { + "$date": "2021-04-06T03:15:21.000Z" + }, + "events": [ + { + "uuid": "f36cf6ce-f787-4280-86e7-2cb3fdcc6329", + "start": { + "$date": "2021-04-06T01:35:50.000Z" + }, + "end": { + "$date": "2021-04-06T03:15:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cc6d5133-3e00-4bfe-aafb-093b21baf631", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T01:56:28.000Z" + }, + "end": { + "$date": "2021-04-06T02:55:31.000Z" + }, + "events": [ + { + "uuid": "fd36fbf6-c346-49c1-b4bb-161aab881b8d", + "start": { + "$date": "2021-04-06T01:56:28.000Z" + }, + "end": { + "$date": "2021-04-06T02:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "5886ce1b-9d3b-4cf9-a6cf-bc2881fae52a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T01:59:17.000Z" + }, + "end": { + "$date": "2021-04-06T02:27:59.000Z" + }, + "events": [ + { + "uuid": "ba1ab574-1c21-4c01-b4db-2e9970e48950", + "start": { + "$date": "2021-04-06T01:59:17.000Z" + }, + "end": { + "$date": "2021-04-06T02:27:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2380b73d-b4b1-4f40-b285-06cf51103e85", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-06T02:00:38.000Z" + }, + "end": { + "$date": "2021-04-06T04:44:24.000Z" + }, + "events": [ + { + "uuid": "874e1e15-40a6-4cf7-95fa-af17045d4d6e", + "start": { + "$date": "2021-04-06T02:00:38.000Z" + }, + "end": { + "$date": "2021-04-06T03:46:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4627b704-af27-4596-b5d6-e3d5c52b4f92", + "start": { + "$date": "2021-04-06T03:46:38.000Z" + }, + "end": { + "$date": "2021-04-06T03:51:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "01f6de70-b7d9-43f9-a9ff-3815e6385543", + "start": { + "$date": "2021-04-06T03:51:38.000Z" + }, + "end": { + "$date": "2021-04-06T04:01:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73f72f3b-a546-4a0d-8e33-595eb3903ba0", + "start": { + "$date": "2021-04-06T04:01:38.000Z" + }, + "end": { + "$date": "2021-04-06T04:08:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9f04d13-ba74-4d25-b460-82a1e1bf71fd", + "start": { + "$date": "2021-04-06T04:08:38.000Z" + }, + "end": { + "$date": "2021-04-06T04:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bbd3bd7-6cd3-4083-b2d4-c3be7cb69be4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T02:28:59.000Z" + }, + "end": { + "$date": "2021-04-06T03:03:05.000Z" + }, + "events": [ + { + "uuid": "ca1f80b8-54bd-4108-90a5-a1628d834659", + "start": { + "$date": "2021-04-06T02:28:59.000Z" + }, + "end": { + "$date": "2021-04-06T03:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "072da1ea-d2b5-46b8-8d3a-91967565855b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T03:03:16.000Z" + }, + "end": { + "$date": "2021-04-06T03:17:31.000Z" + }, + "events": [ + { + "uuid": "42d51ecd-8734-47b4-b8ad-b0a727ac2884", + "start": { + "$date": "2021-04-06T03:03:16.000Z" + }, + "end": { + "$date": "2021-04-06T03:17:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5070660f-a192-427d-bfb3-4e1ec7f3618e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T03:29:48.000Z" + }, + "end": { + "$date": "2021-04-06T04:30:25.000Z" + }, + "events": [ + { + "uuid": "e8fbe882-4efc-431f-b1f6-d709db4bdd31", + "start": { + "$date": "2021-04-06T03:29:48.000Z" + }, + "end": { + "$date": "2021-04-06T04:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3c6c0795-b6f4-445b-9099-8e1d158eba3d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-06T03:31:03.000Z" + }, + "end": { + "$date": "2021-04-06T04:30:25.000Z" + }, + "events": [ + { + "uuid": "0e77e379-9304-4a88-8149-9feebba81cb8", + "start": { + "$date": "2021-04-06T03:31:03.000Z" + }, + "end": { + "$date": "2021-04-06T04:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96f40ff4-d33a-430e-a3ce-91855ed08eba", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-06T04:36:21.000Z" + }, + "end": { + "$date": "2021-04-06T04:59:14.000Z" + }, + "events": [ + { + "uuid": "6c5e7715-4973-407e-b550-1c5b2d674187", + "start": { + "$date": "2021-04-06T04:36:21.000Z" + }, + "end": { + "$date": "2021-04-06T04:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7182093-4bb9-4702-bc6a-82086efb743b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T04:17:59.000Z" + }, + "end": { + "$date": "2021-04-06T04:42:25.000Z" + }, + "events": [ + { + "uuid": "99dec259-4ba3-4cea-8b4f-4282542cc975", + "start": { + "$date": "2021-04-06T04:17:59.000Z" + }, + "end": { + "$date": "2021-04-06T04:42:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "d8a1c176-fe04-4b37-8d76-e660f6be768e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T04:38:06.000Z" + }, + "end": { + "$date": "2021-04-06T04:43:16.000Z" + }, + "events": [ + { + "uuid": "67a87902-1869-440f-848d-2c555c4477fe", + "start": { + "$date": "2021-04-06T04:38:06.000Z" + }, + "end": { + "$date": "2021-04-06T04:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07de0f62-a172-464a-b716-0c713756d98f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T04:45:30.000Z" + }, + "end": { + "$date": "2021-04-06T05:14:06.000Z" + }, + "events": [ + { + "uuid": "17aa06e1-7a36-4588-a345-b01f89da7fc3", + "start": { + "$date": "2021-04-06T04:45:30.000Z" + }, + "end": { + "$date": "2021-04-06T05:14:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b6acde02-2bc7-42c3-8154-ecc170923198", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-06T04:45:15.000Z" + }, + "end": { + "$date": "2021-04-06T05:01:42.000Z" + }, + "events": [ + { + "uuid": "ab89cd2f-dd9e-4df5-aea5-c674fad7de58", + "start": { + "$date": "2021-04-06T04:45:15.000Z" + }, + "end": { + "$date": "2021-04-06T05:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b99b4cd4-c463-4947-93b3-14753f51b4e8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-06T05:02:41.000Z" + }, + "end": { + "$date": "2021-04-06T05:14:37.000Z" + }, + "events": [ + { + "uuid": "cedb342d-07be-43a9-a8b9-4a64269f5046", + "start": { + "$date": "2021-04-06T05:02:41.000Z" + }, + "end": { + "$date": "2021-04-06T05:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d78fbbe3-fc8f-4291-a9da-8ae2fce016b8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-06T05:19:11.000Z" + }, + "end": { + "$date": "2021-04-06T05:32:22.000Z" + }, + "events": [ + { + "uuid": "14c38f50-0466-4782-bccd-de77ad036605", + "start": { + "$date": "2021-04-06T05:19:11.000Z" + }, + "end": { + "$date": "2021-04-06T05:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8e3c760-c0e9-41cc-9ac4-8ef963425677", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-06T05:34:52.000Z" + }, + "end": { + "$date": "2021-04-06T05:53:35.000Z" + }, + "events": [ + { + "uuid": "9fedb800-11e8-455e-b2eb-5c6753c393fe", + "start": { + "$date": "2021-04-06T05:34:52.000Z" + }, + "end": { + "$date": "2021-04-06T05:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "81808eab-83c8-4628-9b13-c2ea0c5290d0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T14:06:49.000Z" + }, + "end": { + "$date": "2021-04-06T15:14:20.000Z" + }, + "events": [ + { + "uuid": "00174795-00b2-47ba-9028-f65b5b2843c5", + "start": { + "$date": "2021-04-06T14:06:49.000Z" + }, + "end": { + "$date": "2021-04-06T15:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "23a2c7dd-e0b0-43b3-ae13-512db0c2a69c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T15:15:01.000Z" + }, + "end": { + "$date": "2021-04-06T15:54:56.000Z" + }, + "events": [ + { + "uuid": "2fa43b08-ba0d-4e8f-ae2e-2b95eeb84ba9", + "start": { + "$date": "2021-04-06T15:15:01.000Z" + }, + "end": { + "$date": "2021-04-06T15:54:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "5548d896-7b71-4bd6-be52-312bcf95ac0d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T15:55:43.000Z" + }, + "end": { + "$date": "2021-04-06T16:36:07.000Z" + }, + "events": [ + { + "uuid": "45fcf183-decf-4f4c-b7f4-6fa737d5114f", + "start": { + "$date": "2021-04-06T15:55:43.000Z" + }, + "end": { + "$date": "2021-04-06T16:36:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "723c6308-184d-4810-9d49-f2cbb83892f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T16:32:47.000Z" + }, + "end": { + "$date": "2021-04-06T17:02:42.000Z" + }, + "events": [ + { + "uuid": "9afba09f-83a5-4c45-aedd-2be944d962e1", + "start": { + "$date": "2021-04-06T16:32:47.000Z" + }, + "end": { + "$date": "2021-04-06T17:02:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "5e32fbbe-920b-46a1-a65e-e147af8b0d3a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T17:06:30.000Z" + }, + "end": { + "$date": "2021-04-06T17:26:11.000Z" + }, + "events": [ + { + "uuid": "13206db1-1375-48be-a362-85db0da30a7c", + "start": { + "$date": "2021-04-06T17:06:30.000Z" + }, + "end": { + "$date": "2021-04-06T17:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "5cc39502-dd0b-46e8-baa4-54a2fd92e18e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T17:26:31.000Z" + }, + "end": { + "$date": "2021-04-06T18:04:32.000Z" + }, + "events": [ + { + "uuid": "f86985a1-ce2e-409d-aa3f-b17c5e5e8aa3", + "start": { + "$date": "2021-04-06T17:26:31.000Z" + }, + "end": { + "$date": "2021-04-06T18:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4dd64711-99d7-4539-b09f-df15a51b9dc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-06T18:14:22.000Z" + }, + "end": { + "$date": "2021-04-06T20:13:27.000Z" + }, + "events": [ + { + "uuid": "a1e9b39c-228c-48ab-9dfe-21dd856ba013", + "start": { + "$date": "2021-04-06T18:14:22.000Z" + }, + "end": { + "$date": "2021-04-06T19:18:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2562e2e0-8a92-4768-9686-db17b37efa2d", + "start": { + "$date": "2021-04-06T19:18:22.000Z" + }, + "end": { + "$date": "2021-04-06T19:20:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "569613d1-03db-491d-b7d3-2cdca844533c", + "start": { + "$date": "2021-04-06T19:20:22.000Z" + }, + "end": { + "$date": "2021-04-06T19:30:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09df4ceb-c0ce-484b-a72c-5d807f261d9b", + "start": { + "$date": "2021-04-06T19:30:22.000Z" + }, + "end": { + "$date": "2021-04-06T19:35:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aec96bee-ee40-456d-ae64-b6f52f9c2422", + "start": { + "$date": "2021-04-06T19:35:22.000Z" + }, + "end": { + "$date": "2021-04-06T20:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "46044683-720d-48e6-b419-d9789e922dfd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-06T18:33:20.000Z" + }, + "end": { + "$date": "2021-04-06T19:19:29.000Z" + }, + "events": [ + { + "uuid": "0d94a88d-1f56-482c-985e-4300909f8e01", + "start": { + "$date": "2021-04-06T18:33:20.000Z" + }, + "end": { + "$date": "2021-04-06T19:19:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5da9831-57d5-4b6a-b3b9-8be1f907a9bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T18:36:16.000Z" + }, + "end": { + "$date": "2021-04-06T19:02:55.000Z" + }, + "events": [ + { + "uuid": "27c7bf4a-744c-4742-8ea7-3d29c94c47e4", + "start": { + "$date": "2021-04-06T18:36:16.000Z" + }, + "end": { + "$date": "2021-04-06T19:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf9491c7-4efd-430a-8d05-ca985ae0289b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T19:12:22.000Z" + }, + "end": { + "$date": "2021-04-06T19:48:14.000Z" + }, + "events": [ + { + "uuid": "81c9bca4-bb86-4d5e-9598-c4421146c848", + "start": { + "$date": "2021-04-06T19:12:22.000Z" + }, + "end": { + "$date": "2021-04-06T19:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e27d0474-351e-4efe-83a5-e9ff1c536852", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-06T19:21:48.000Z" + }, + "end": { + "$date": "2021-04-06T20:39:28.000Z" + }, + "events": [ + { + "uuid": "0c0a4e63-4ff7-4156-afa6-3e7c3d5dbb19", + "start": { + "$date": "2021-04-06T19:21:48.000Z" + }, + "end": { + "$date": "2021-04-06T19:45:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6fd07f9-6f83-491b-afd6-446ee481e3c1", + "start": { + "$date": "2021-04-06T19:45:48.000Z" + }, + "end": { + "$date": "2021-04-06T19:57:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f5e5042-9007-4fa4-8e1c-c112958c2129", + "start": { + "$date": "2021-04-06T19:57:48.000Z" + }, + "end": { + "$date": "2021-04-06T20:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a7ea6435-958d-4143-8c4d-543888f6d4ed", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-06T20:58:17.000Z" + }, + "end": { + "$date": "2021-04-06T22:59:59.000Z" + }, + "events": [ + { + "uuid": "c2a0007a-8adc-4957-862d-ab5d2b9235c5", + "start": { + "$date": "2021-04-06T20:58:17.000Z" + }, + "end": { + "$date": "2021-04-06T22:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2c506de3-5bc7-4932-a585-1133e13e074c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-06T21:42:23.000Z" + }, + "end": { + "$date": "2021-04-07T00:01:55.000Z" + }, + "events": [ + { + "uuid": "1022b39b-eca1-467f-9044-e9802a3783cc", + "start": { + "$date": "2021-04-06T21:42:23.000Z" + }, + "end": { + "$date": "2021-04-06T22:03:23.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "6aca0669-ce8a-424f-bcc9-f28450dfe063", + "start": { + "$date": "2021-04-06T22:03:23.000Z" + }, + "end": { + "$date": "2021-04-07T00:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25004c2c-b3ec-424e-92a1-d47649e523bd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-06T23:59:22.000Z" + }, + "end": { + "$date": "2021-04-07T00:23:34.000Z" + }, + "events": [ + { + "uuid": "74d5dc0d-f081-4875-9364-8cab2de2bf32", + "start": { + "$date": "2021-04-06T23:59:22.000Z" + }, + "end": { + "$date": "2021-04-07T00:23:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3477c706-eda6-485d-8552-1cc7356f5e98", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-07T00:02:16.000Z" + }, + "end": { + "$date": "2021-04-07T01:11:49.000Z" + }, + "events": [ + { + "uuid": "c2604186-d0df-41db-a380-7212184c6ad9", + "start": { + "$date": "2021-04-07T00:02:16.000Z" + }, + "end": { + "$date": "2021-04-07T01:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "902201c3-2cbb-4f37-962b-78a9d1e646fe", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-07T01:24:23.000Z" + }, + "end": { + "$date": "2021-04-07T01:50:02.000Z" + }, + "events": [ + { + "uuid": "1826b414-feb9-4b77-ae85-a72e7f21ba14", + "start": { + "$date": "2021-04-07T01:24:23.000Z" + }, + "end": { + "$date": "2021-04-07T01:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ef053a77-0fb9-4b06-95de-3fb0a9bd6655", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-07T01:44:37.000Z" + }, + "end": { + "$date": "2021-04-07T05:04:32.000Z" + }, + "events": [ + { + "uuid": "50f6f60f-8d29-457f-8c34-592a4b1f4024", + "start": { + "$date": "2021-04-07T01:44:37.000Z" + }, + "end": { + "$date": "2021-04-07T03:35:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8233982-a066-4dd6-8d95-04a4cdd57ae3", + "start": { + "$date": "2021-04-07T03:35:37.000Z" + }, + "end": { + "$date": "2021-04-07T03:39:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "93bd7af2-0e9d-494c-89c4-81dfcc8ea48c", + "start": { + "$date": "2021-04-07T03:39:37.000Z" + }, + "end": { + "$date": "2021-04-07T05:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "211c5be3-fe27-49b7-8e88-55e6889e7145", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-07T02:32:28.000Z" + }, + "end": { + "$date": "2021-04-07T03:02:31.000Z" + }, + "events": [ + { + "uuid": "bda396d7-40c6-481d-a388-3762d6348485", + "start": { + "$date": "2021-04-07T02:32:28.000Z" + }, + "end": { + "$date": "2021-04-07T02:46:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab731d3d-fdc4-49c6-baeb-fd3c602e3dd1", + "start": { + "$date": "2021-04-07T02:46:28.000Z" + }, + "end": { + "$date": "2021-04-07T02:48:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "72b86f49-17b6-4c42-b038-8d0ee58b6d21", + "start": { + "$date": "2021-04-07T02:48:28.000Z" + }, + "end": { + "$date": "2021-04-07T03:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e7a7fdb2-9844-4588-975f-5ad324a5d7d5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-07T02:33:02.000Z" + }, + "end": { + "$date": "2021-04-07T04:24:37.000Z" + }, + "events": [ + { + "uuid": "51989230-8314-41c9-8414-175833086dde", + "start": { + "$date": "2021-04-07T02:33:02.000Z" + }, + "end": { + "$date": "2021-04-07T04:24:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "31d8f4a7-deae-4f1d-9f3b-eb342aa3b40a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-07T03:27:23.000Z" + }, + "end": { + "$date": "2021-04-07T03:31:44.000Z" + }, + "events": [ + { + "uuid": "ff6c73f0-fd12-4db8-97fc-c51af39d8fbb", + "start": { + "$date": "2021-04-07T03:27:23.000Z" + }, + "end": { + "$date": "2021-04-07T03:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b1e36e5-6c6e-49d0-95c0-12b548ee7d36", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-07T04:55:07.000Z" + }, + "end": { + "$date": "2021-04-07T04:56:42.000Z" + }, + "events": [ + { + "uuid": "276c2c51-cf24-4a84-8a09-25b7b9df437c", + "start": { + "$date": "2021-04-07T04:55:07.000Z" + }, + "end": { + "$date": "2021-04-07T04:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63c1c68e-25cb-4219-a984-76b8ca94b282", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-07T04:24:53.000Z" + }, + "end": { + "$date": "2021-04-07T05:29:40.000Z" + }, + "events": [ + { + "uuid": "3c2ade6a-b8db-453b-a515-1a9d0087983c", + "start": { + "$date": "2021-04-07T04:24:53.000Z" + }, + "end": { + "$date": "2021-04-07T05:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7eac49f8-9c22-40a6-9611-70cb15a9f585", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-07T04:25:43.000Z" + }, + "end": { + "$date": "2021-04-07T04:50:13.000Z" + }, + "events": [ + { + "uuid": "380138c7-8140-46ee-8c30-f0844e165c57", + "start": { + "$date": "2021-04-07T04:25:43.000Z" + }, + "end": { + "$date": "2021-04-07T04:50:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "6e14441b-389c-4356-89a7-506243e75254", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-07T04:42:01.000Z" + }, + "end": { + "$date": "2021-04-07T06:32:31.000Z" + }, + "events": [ + { + "uuid": "545542e9-f119-41e0-99f7-4c01ce8e534a", + "start": { + "$date": "2021-04-07T04:42:01.000Z" + }, + "end": { + "$date": "2021-04-07T06:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "a674ed81-2c5f-43c2-a597-e12d25f3ca72", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-07T14:19:53.000Z" + }, + "end": { + "$date": "2021-04-07T14:41:50.000Z" + }, + "events": [ + { + "uuid": "3575a184-9c68-4931-afd2-a2852edd0921", + "start": { + "$date": "2021-04-07T14:19:53.000Z" + }, + "end": { + "$date": "2021-04-07T14:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15be835c-0941-4e3c-b33f-08a334368100", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-07T17:42:38.000Z" + }, + "end": { + "$date": "2021-04-07T18:01:27.000Z" + }, + "events": [ + { + "uuid": "c9af88be-d24c-4ede-a384-9f3fa9de0df0", + "start": { + "$date": "2021-04-07T17:42:38.000Z" + }, + "end": { + "$date": "2021-04-07T18:01:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0487c9ae-5fa9-4cda-b361-3c273eb07335", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-07T18:31:31.000Z" + }, + "end": { + "$date": "2021-04-07T18:49:25.000Z" + }, + "events": [ + { + "uuid": "ef817bd2-06bd-4a9a-b898-85a07941d773", + "start": { + "$date": "2021-04-07T18:31:31.000Z" + }, + "end": { + "$date": "2021-04-07T18:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5abfd9fa-5758-4edc-b6fb-c5d01fa10068", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-07T19:34:26.000Z" + }, + "end": { + "$date": "2021-04-07T19:36:41.000Z" + }, + "events": [ + { + "uuid": "2d9546f2-e631-4b8a-a675-acefed07e922", + "start": { + "$date": "2021-04-07T19:34:26.000Z" + }, + "end": { + "$date": "2021-04-07T19:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "090a7424-40b9-441f-892f-aded42131887", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-07T19:36:01.000Z" + }, + "end": { + "$date": "2021-04-07T20:58:08.000Z" + }, + "events": [ + { + "uuid": "e8de3f71-74ee-4184-a998-5b568abd40ef", + "start": { + "$date": "2021-04-07T19:36:01.000Z" + }, + "end": { + "$date": "2021-04-07T20:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d0047aa3-6a1b-4dc2-852d-7a7a9295b7db", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-07T19:40:17.000Z" + }, + "end": { + "$date": "2021-04-07T19:52:49.000Z" + }, + "events": [ + { + "uuid": "791bc08a-7bcf-46a1-9bdf-c5e20b2e2e5b", + "start": { + "$date": "2021-04-07T19:40:17.000Z" + }, + "end": { + "$date": "2021-04-07T19:52:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "04dce7ed-d8de-40be-993d-999a39f43fa8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-07T19:40:43.000Z" + }, + "end": { + "$date": "2021-04-07T19:55:38.000Z" + }, + "events": [ + { + "uuid": "ae7d5cab-15a8-4ff0-8706-50ddfa1c6c21", + "start": { + "$date": "2021-04-07T19:40:43.000Z" + }, + "end": { + "$date": "2021-04-07T19:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f2a4f581-e775-4a59-b2a0-e1f389bc3353", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-07T19:56:50.000Z" + }, + "end": { + "$date": "2021-04-07T21:23:17.000Z" + }, + "events": [ + { + "uuid": "5412afd7-5104-4586-89d0-140a25ee9624", + "start": { + "$date": "2021-04-07T19:56:50.000Z" + }, + "end": { + "$date": "2021-04-07T21:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "eb264150-b1b0-4e00-bc75-1ad0e3af03d5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-07T21:01:23.000Z" + }, + "end": { + "$date": "2021-04-08T00:35:37.000Z" + }, + "events": [ + { + "uuid": "2c97631d-1da0-4aa4-a6ac-77d58e6c6c42", + "start": { + "$date": "2021-04-07T21:01:23.000Z" + }, + "end": { + "$date": "2021-04-08T00:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cc285abf-6a0e-47cf-a7bd-409788d2ee6c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-07T21:28:15.000Z" + }, + "end": { + "$date": "2021-04-07T21:48:04.000Z" + }, + "events": [ + { + "uuid": "cecdf5a2-a403-4dc8-b0e8-90fa0f04d337", + "start": { + "$date": "2021-04-07T21:28:15.000Z" + }, + "end": { + "$date": "2021-04-07T21:48:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2b230b49-2dba-4d92-b532-a88e270c1715", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-07T23:26:22.000Z" + }, + "end": { + "$date": "2021-04-08T01:48:20.000Z" + }, + "events": [ + { + "uuid": "a3100b89-7884-4ba2-9d99-04d94a0f4c4a", + "start": { + "$date": "2021-04-07T23:26:22.000Z" + }, + "end": { + "$date": "2021-04-08T01:15:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5a4761a-d214-4357-8e92-de0beb602ef8", + "start": { + "$date": "2021-04-08T01:15:22.000Z" + }, + "end": { + "$date": "2021-04-08T01:17:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23b9fd6c-6b54-46d5-99a7-23cc650b2e30", + "start": { + "$date": "2021-04-08T01:17:22.000Z" + }, + "end": { + "$date": "2021-04-08T01:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6e6518fb-96fe-4bd7-b2e3-09460d4af361", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-07T23:49:10.000Z" + }, + "end": { + "$date": "2021-04-08T00:39:12.000Z" + }, + "events": [ + { + "uuid": "adb9e5fa-36a5-4f2b-bca0-3882ca3412a8", + "start": { + "$date": "2021-04-07T23:49:10.000Z" + }, + "end": { + "$date": "2021-04-08T00:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2173706c-ba8a-4f41-a859-3078bda0e4f2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-08T00:51:35.000Z" + }, + "end": { + "$date": "2021-04-08T02:40:38.000Z" + }, + "events": [ + { + "uuid": "3d734cfa-3451-4ec7-807b-7b8298b23a7e", + "start": { + "$date": "2021-04-08T00:51:35.000Z" + }, + "end": { + "$date": "2021-04-08T02:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "afa67212-4f18-4397-bccc-f889f2917e3f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-08T00:53:41.000Z" + }, + "end": { + "$date": "2021-04-08T02:40:42.000Z" + }, + "events": [ + { + "uuid": "e8a15768-172a-492c-a4d7-da19f657292a", + "start": { + "$date": "2021-04-08T00:53:41.000Z" + }, + "end": { + "$date": "2021-04-08T02:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "abf3d14d-e36a-4c1a-a39e-b025b1446346", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-08T01:02:20.000Z" + }, + "end": { + "$date": "2021-04-08T02:40:31.000Z" + }, + "events": [ + { + "uuid": "f4b0f858-d40e-47a7-be22-47af2eab0847", + "start": { + "$date": "2021-04-08T01:02:20.000Z" + }, + "end": { + "$date": "2021-04-08T02:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "091a8e57-6873-453b-b0b0-f43b6ece0423", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-08T01:16:36.000Z" + }, + "end": { + "$date": "2021-04-08T01:23:42.000Z" + }, + "events": [ + { + "uuid": "8603a3d8-067f-4889-ae4d-f4620bffc9d7", + "start": { + "$date": "2021-04-08T01:16:36.000Z" + }, + "end": { + "$date": "2021-04-08T01:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8d997016-59c5-49e2-8ae0-40f50bd0190c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-08T01:30:07.000Z" + }, + "end": { + "$date": "2021-04-08T03:27:32.000Z" + }, + "events": [ + { + "uuid": "6704fec7-19cb-4e4b-89ce-fa4c9b3f00ba", + "start": { + "$date": "2021-04-08T01:30:07.000Z" + }, + "end": { + "$date": "2021-04-08T03:27:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "807c93e9-ed82-477c-9ca1-15093b051f4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T01:46:04.000Z" + }, + "end": { + "$date": "2021-04-08T02:32:07.000Z" + }, + "events": [ + { + "uuid": "5e7c1802-79c6-41aa-ab6d-a01474eaa720", + "start": { + "$date": "2021-04-08T01:46:04.000Z" + }, + "end": { + "$date": "2021-04-08T02:32:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eb71a1fc-acde-43d4-8fda-3af5c85490ee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T01:50:41.000Z" + }, + "end": { + "$date": "2021-04-08T02:14:52.000Z" + }, + "events": [ + { + "uuid": "336dae4d-8c24-41ae-b79f-666489a911b5", + "start": { + "$date": "2021-04-08T01:50:41.000Z" + }, + "end": { + "$date": "2021-04-08T02:14:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d92e61cb-6882-48ad-8a73-0d9bd9fe42ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T02:39:31.000Z" + }, + "end": { + "$date": "2021-04-08T03:41:08.000Z" + }, + "events": [ + { + "uuid": "aa2cce69-c60f-4d2b-a3bb-3cf24f64162c", + "start": { + "$date": "2021-04-08T02:39:31.000Z" + }, + "end": { + "$date": "2021-04-08T03:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "488c8b0a-ebb8-4830-b13e-5f937bbb3d2f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T02:32:17.000Z" + }, + "end": { + "$date": "2021-04-08T03:04:08.000Z" + }, + "events": [ + { + "uuid": "717ce5ef-c219-4572-9fff-982676f77994", + "start": { + "$date": "2021-04-08T02:32:17.000Z" + }, + "end": { + "$date": "2021-04-08T03:04:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "29ab8a61-b5d9-448f-ae19-49a4abceef49", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-08T02:46:20.000Z" + }, + "end": { + "$date": "2021-04-08T03:26:06.000Z" + }, + "events": [ + { + "uuid": "ac582a6b-a5bf-43eb-a408-3123cec4cbb7", + "start": { + "$date": "2021-04-08T02:46:20.000Z" + }, + "end": { + "$date": "2021-04-08T03:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a1168c0a-8b5c-4be8-aecf-6de38b445f82", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T03:04:17.000Z" + }, + "end": { + "$date": "2021-04-08T03:41:18.000Z" + }, + "events": [ + { + "uuid": "8091fa1e-163b-44a8-8993-09363b4cda86", + "start": { + "$date": "2021-04-08T03:04:17.000Z" + }, + "end": { + "$date": "2021-04-08T03:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d522433-ab0e-4d49-9adb-ce8ca9ae8012", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-08T03:25:16.000Z" + }, + "end": { + "$date": "2021-04-08T04:05:32.000Z" + }, + "events": [ + { + "uuid": "48b3af4a-b8fa-4ec6-b5df-7873a08e2d3f", + "start": { + "$date": "2021-04-08T03:25:16.000Z" + }, + "end": { + "$date": "2021-04-08T04:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "373e36dc-73d3-4add-9570-3ca87754ea3c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-08T03:35:17.000Z" + }, + "end": { + "$date": "2021-04-08T03:41:38.000Z" + }, + "events": [ + { + "uuid": "f1f4feeb-1c67-4000-ad1b-01e36bd72c32", + "start": { + "$date": "2021-04-08T03:35:17.000Z" + }, + "end": { + "$date": "2021-04-08T03:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "12d870cf-725c-4e86-8796-f4e6e754574e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T03:41:23.000Z" + }, + "end": { + "$date": "2021-04-08T04:38:29.000Z" + }, + "events": [ + { + "uuid": "d1e714e8-bd31-4d17-ba31-848c6f135e8d", + "start": { + "$date": "2021-04-08T03:41:23.000Z" + }, + "end": { + "$date": "2021-04-08T04:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "3fbc8fa7-f129-425f-b82c-884d28a2feb6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T03:42:24.000Z" + }, + "end": { + "$date": "2021-04-08T04:09:10.000Z" + }, + "events": [ + { + "uuid": "5fcfbb58-7f17-4359-9f3a-c5cb13b13c80", + "start": { + "$date": "2021-04-08T03:42:24.000Z" + }, + "end": { + "$date": "2021-04-08T04:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "c2956087-fc1c-4861-bca9-01d455f9ad18", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-08T03:43:13.000Z" + }, + "end": { + "$date": "2021-04-08T04:38:04.000Z" + }, + "events": [ + { + "uuid": "71eca99c-e96f-4463-b076-bd988148db43", + "start": { + "$date": "2021-04-08T03:43:13.000Z" + }, + "end": { + "$date": "2021-04-08T04:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9019290-acd4-4aca-8c1c-e84fcf6a6de6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-08T04:11:02.000Z" + }, + "end": { + "$date": "2021-04-08T04:40:54.000Z" + }, + "events": [ + { + "uuid": "61209577-8f00-41c9-97a4-8a53b8c5d6cb", + "start": { + "$date": "2021-04-08T04:11:02.000Z" + }, + "end": { + "$date": "2021-04-08T04:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "d7a77889-888b-41b9-92ff-4a73b97701ef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-08T04:15:09.000Z" + }, + "end": { + "$date": "2021-04-08T04:16:19.000Z" + }, + "events": [ + { + "uuid": "79c597d6-8ad8-4895-b838-8be2da4cb5f9", + "start": { + "$date": "2021-04-08T04:15:09.000Z" + }, + "end": { + "$date": "2021-04-08T04:16:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "e6f095ed-a4bd-4121-a31f-5448e067169a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-08T04:25:31.000Z" + }, + "end": { + "$date": "2021-04-08T04:38:03.000Z" + }, + "events": [ + { + "uuid": "2d94c537-0e10-4ad1-8591-013b1884e295", + "start": { + "$date": "2021-04-08T04:25:31.000Z" + }, + "end": { + "$date": "2021-04-08T04:38:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "561041bd-fce3-4cff-a704-928eef096be9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-08T04:34:42.000Z" + }, + "end": { + "$date": "2021-04-08T05:44:59.000Z" + }, + "events": [ + { + "uuid": "c67f41ff-7d76-4f92-8966-6cf3a506cf6a", + "start": { + "$date": "2021-04-08T04:34:42.000Z" + }, + "end": { + "$date": "2021-04-08T05:44:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "567963b6-5b26-4e4d-a999-b697b9addaf0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T04:39:14.000Z" + }, + "end": { + "$date": "2021-04-08T05:38:06.000Z" + }, + "events": [ + { + "uuid": "9a65b124-33c0-4972-b5a5-ba8dbc1483e1", + "start": { + "$date": "2021-04-08T04:39:14.000Z" + }, + "end": { + "$date": "2021-04-08T05:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abbcc787-03ae-4388-a99f-d310c27f399a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-08T05:05:27.000Z" + }, + "end": { + "$date": "2021-04-08T05:40:18.000Z" + }, + "events": [ + { + "uuid": "a2a9759f-4abe-4434-9773-5cf2c38c7cc2", + "start": { + "$date": "2021-04-08T05:05:27.000Z" + }, + "end": { + "$date": "2021-04-08T05:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "be622355-6e52-458b-b888-adc96503ad08", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T05:38:16.000Z" + }, + "end": { + "$date": "2021-04-08T06:25:08.000Z" + }, + "events": [ + { + "uuid": "e277a4ab-c18b-48cb-bb09-0d4e6d9d1135", + "start": { + "$date": "2021-04-08T05:38:16.000Z" + }, + "end": { + "$date": "2021-04-08T06:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d8876cf2-501b-4660-b5f3-13c56e905d18", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T05:45:31.000Z" + }, + "end": { + "$date": "2021-04-08T15:03:26.000Z" + }, + "events": [ + { + "uuid": "d057a90e-c0ab-4ad8-8959-a47b6af953ab", + "start": { + "$date": "2021-04-08T05:45:31.000Z" + }, + "end": { + "$date": "2021-04-08T08:57:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed73a22b-a2fb-4c31-a675-b43c5be2c405", + "start": { + "$date": "2021-04-08T08:57:31.000Z" + }, + "end": { + "$date": "2021-04-08T09:02:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b8830829-971c-4d3d-b5db-c77b0993e7f8", + "start": { + "$date": "2021-04-08T09:02:31.000Z" + }, + "end": { + "$date": "2021-04-08T09:12:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dad23c6a-dc50-4762-8fc6-93b8959b2b16", + "start": { + "$date": "2021-04-08T09:12:31.000Z" + }, + "end": { + "$date": "2021-04-08T09:51:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a7281704-5a5a-458f-92aa-f39ae5612ebb", + "start": { + "$date": "2021-04-08T09:51:31.000Z" + }, + "end": { + "$date": "2021-04-08T10:02:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3a4fe082-4222-4a6a-9eac-179392495d20", + "start": { + "$date": "2021-04-08T10:02:31.000Z" + }, + "end": { + "$date": "2021-04-08T14:50:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "467acc25-99ab-4fe9-955f-f9134940d764", + "start": { + "$date": "2021-04-08T14:50:31.000Z" + }, + "end": { + "$date": "2021-04-08T14:52:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "083d3269-ac5a-4bfb-ad4d-3f539f1eaa3d", + "start": { + "$date": "2021-04-08T14:52:31.000Z" + }, + "end": { + "$date": "2021-04-08T15:03:26.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "72420a67-5dc8-4e88-98b2-05a846554949", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T14:40:28.000Z" + }, + "end": { + "$date": "2021-04-08T14:42:53.000Z" + }, + "events": [ + { + "uuid": "bcee7933-f611-4c91-9371-c0f443d0725f", + "start": { + "$date": "2021-04-08T14:40:28.000Z" + }, + "end": { + "$date": "2021-04-08T14:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "9a06f629-cc54-4812-b32e-357b93a925ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T14:43:13.000Z" + }, + "end": { + "$date": "2021-04-08T15:40:54.000Z" + }, + "events": [ + { + "uuid": "e18534bb-79a8-4224-93fe-d8f7c980a5fe", + "start": { + "$date": "2021-04-08T14:43:13.000Z" + }, + "end": { + "$date": "2021-04-08T15:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5392d947-6731-4832-8100-ad6298484a39", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-08T14:43:53.000Z" + }, + "end": { + "$date": "2021-04-08T16:55:30.000Z" + }, + "events": [ + { + "uuid": "a11eec16-4e9a-4be4-a9f3-a23141703bb4", + "start": { + "$date": "2021-04-08T14:43:53.000Z" + }, + "end": { + "$date": "2021-04-08T16:55:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "35dd05d3-d424-4bba-b1a7-a603c6958f3b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T15:05:02.000Z" + }, + "end": { + "$date": "2021-04-08T18:33:36.000Z" + }, + "events": [ + { + "uuid": "6a6d6eb0-642a-4e26-9580-27abd1934d84", + "start": { + "$date": "2021-04-08T15:05:02.000Z" + }, + "end": { + "$date": "2021-04-08T18:18:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9fbb684b-cf60-40bb-accf-b29d8bea49f6", + "start": { + "$date": "2021-04-08T18:18:02.000Z" + }, + "end": { + "$date": "2021-04-08T18:23:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d56fb295-f2cf-40e5-beac-6e4c8e038b8e", + "start": { + "$date": "2021-04-08T18:23:02.000Z" + }, + "end": { + "$date": "2021-04-08T18:33:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7f1f338-afc9-45f6-be9a-38c754f4af2a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-08T16:10:33.000Z" + }, + "end": { + "$date": "2021-04-08T16:46:19.000Z" + }, + "events": [ + { + "uuid": "9b581c20-cd25-4e14-9f26-ea2958b9e967", + "start": { + "$date": "2021-04-08T16:10:33.000Z" + }, + "end": { + "$date": "2021-04-08T16:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "759a2dab-3b75-40c2-a7e3-ae3e9b9a2929", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-08T17:13:01.000Z" + }, + "end": { + "$date": "2021-04-08T17:33:48.000Z" + }, + "events": [ + { + "uuid": "92f7cbc7-e7ec-4dfe-ae52-347c91f63b78", + "start": { + "$date": "2021-04-08T17:13:01.000Z" + }, + "end": { + "$date": "2021-04-08T17:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fc55fa89-734f-4310-81ce-1ba99c1ed210", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-08T18:37:49.000Z" + }, + "end": { + "$date": "2021-04-08T20:02:35.000Z" + }, + "events": [ + { + "uuid": "3790ee17-a80b-4496-b61c-fc946abd298e", + "start": { + "$date": "2021-04-08T18:37:49.000Z" + }, + "end": { + "$date": "2021-04-08T20:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4321541e-dfe5-4b25-9fb8-5ca9b1c44e7c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-08T19:13:59.000Z" + }, + "end": { + "$date": "2021-04-08T19:50:56.000Z" + }, + "events": [ + { + "uuid": "90adb968-51e2-44f3-899b-f22baebca442", + "start": { + "$date": "2021-04-08T19:13:59.000Z" + }, + "end": { + "$date": "2021-04-08T19:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b8d59a58-5cb7-4fb7-bc9c-f9fde177e850", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-08T19:30:37.000Z" + }, + "end": { + "$date": "2021-04-08T20:43:28.000Z" + }, + "events": [ + { + "uuid": "93fe7350-f785-4b88-9ff8-fa1ca15ec3f1", + "start": { + "$date": "2021-04-08T19:30:37.000Z" + }, + "end": { + "$date": "2021-04-08T20:43:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8e942083-3d16-4d01-a951-ad540c0cc669", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T19:37:07.000Z" + }, + "end": { + "$date": "2021-04-08T19:48:27.000Z" + }, + "events": [ + { + "uuid": "25d10310-a641-4aab-8be0-03cc1d71d9a0", + "start": { + "$date": "2021-04-08T19:37:07.000Z" + }, + "end": { + "$date": "2021-04-08T19:38:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c37cb94d-1cc4-453f-b3dc-ae0e92223a20", + "start": { + "$date": "2021-04-08T19:38:07.000Z" + }, + "end": { + "$date": "2021-04-08T19:48:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2e0b21f3-a648-4b68-ba2b-3977ef1cfc7e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-08T21:26:23.000Z" + }, + "end": { + "$date": "2021-04-09T00:35:10.000Z" + }, + "events": [ + { + "uuid": "c4f419bd-7328-4cb9-8fd5-4be8f7cccfff", + "start": { + "$date": "2021-04-08T21:26:23.000Z" + }, + "end": { + "$date": "2021-04-09T00:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fa5d4411-596e-4390-b65b-893ec09085f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-08T22:12:58.000Z" + }, + "end": { + "$date": "2021-04-09T00:18:33.000Z" + }, + "events": [ + { + "uuid": "48623775-a44b-4618-87f0-ae1f77bacb8c", + "start": { + "$date": "2021-04-08T22:12:58.000Z" + }, + "end": { + "$date": "2021-04-09T00:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0bb86c5-eef5-462a-baaa-5873e9fdadf0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-08T23:27:50.000Z" + }, + "end": { + "$date": "2021-04-08T23:47:47.000Z" + }, + "events": [ + { + "uuid": "40aac598-7c21-4c08-9578-90a82c370f4e", + "start": { + "$date": "2021-04-08T23:27:50.000Z" + }, + "end": { + "$date": "2021-04-08T23:47:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "270161d9-3f01-46db-a79a-aaa557079ae1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-08T23:29:55.000Z" + }, + "end": { + "$date": "2021-04-08T23:47:48.000Z" + }, + "events": [ + { + "uuid": "c9f27896-ee8c-481d-b876-858890d1225e", + "start": { + "$date": "2021-04-08T23:29:55.000Z" + }, + "end": { + "$date": "2021-04-08T23:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "15ea34e7-420f-499a-9b6d-1ea23afa78d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-08T23:39:39.000Z" + }, + "end": { + "$date": "2021-04-09T05:36:53.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-08T23:39:39.000Z" + }, + "end": { + "$date": "2021-04-09T05:36:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f66e6b07-9672-4861-8e13-e41510829b26", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-08T23:41:37.000Z" + }, + "end": { + "$date": "2021-04-08T23:47:18.000Z" + }, + "events": [ + { + "uuid": "96169fe9-8dd6-4062-bcb1-434eb1a80b74", + "start": { + "$date": "2021-04-08T23:41:37.000Z" + }, + "end": { + "$date": "2021-04-08T23:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "044d5465-fa13-4410-aadd-33f0c48ca482", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-08T23:51:31.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:04.000Z" + }, + "events": [ + { + "uuid": "348e3722-83a7-4598-a02a-e47b9f59975b", + "start": { + "$date": "2021-04-08T23:51:31.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe716c72-0588-4296-922f-0aa8cacfa866", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-08T23:51:36.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:01.000Z" + }, + "events": [ + { + "uuid": "caee37a5-17c0-4db2-8dc1-2686f286139e", + "start": { + "$date": "2021-04-08T23:51:36.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d9f8cf0-3274-47c7-937b-6e16c2176808", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-08T23:51:26.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:04.000Z" + }, + "events": [ + { + "uuid": "de4b9eca-b3e2-4edb-bcbb-34fb1d34c274", + "start": { + "$date": "2021-04-08T23:51:26.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bbcf3a1-24fc-4e48-a8b0-7c269a7c5213", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-08T23:51:56.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:00.000Z" + }, + "events": [ + { + "uuid": "a01a5450-1a65-498a-9118-d3807b6528f5", + "start": { + "$date": "2021-04-08T23:51:56.000Z" + }, + "end": { + "$date": "2021-04-09T00:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5db46715-c944-4e34-98b3-3fa1405dbe7e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-09T00:23:57.000Z" + }, + "end": { + "$date": "2021-04-09T00:40:34.000Z" + }, + "events": [ + { + "uuid": "38a3c1ec-54db-4a0f-a9f9-20c0d6f17b46", + "start": { + "$date": "2021-04-09T00:23:57.000Z" + }, + "end": { + "$date": "2021-04-09T00:40:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "099ca11f-b424-4cf8-98a7-3f2ed3dff5db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-09T00:24:36.000Z" + }, + "end": { + "$date": "2021-04-09T00:40:35.000Z" + }, + "events": [ + { + "uuid": "b8f27b0d-32fa-4747-b9a3-da3411327a97", + "start": { + "$date": "2021-04-09T00:24:36.000Z" + }, + "end": { + "$date": "2021-04-09T00:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3daed6a-918b-40fd-aff5-a432ef24feee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-09T00:24:36.000Z" + }, + "end": { + "$date": "2021-04-09T00:40:38.000Z" + }, + "events": [ + { + "uuid": "ea47eb44-7320-49eb-9211-6fa3bae41804", + "start": { + "$date": "2021-04-09T00:24:36.000Z" + }, + "end": { + "$date": "2021-04-09T00:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "825f8198-d6a5-4c4e-bf4b-aac823e2e498", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-09T01:11:56.000Z" + }, + "end": { + "$date": "2021-04-09T02:34:52.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-09T01:11:56.000Z" + }, + "end": { + "$date": "2021-04-09T02:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "021504a7-d805-422d-bb9f-bcad7db058bd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-09T01:57:49.000Z" + }, + "end": { + "$date": "2021-04-09T03:11:19.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-09T01:57:49.000Z" + }, + "end": { + "$date": "2021-04-09T03:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d572917d-2484-4f67-b16c-030f550853a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T01:57:55.000Z" + }, + "end": { + "$date": "2021-04-09T03:10:23.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-09T01:57:55.000Z" + }, + "end": { + "$date": "2021-04-09T03:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9c378c5-abba-423a-a683-baf654d0d53b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-09T02:56:40.000Z" + }, + "end": { + "$date": "2021-04-09T04:19:18.000Z" + }, + "events": [ + { + "uuid": "f5954269-09fd-4215-aa91-f81a395c607d", + "start": { + "$date": "2021-04-09T02:56:40.000Z" + }, + "end": { + "$date": "2021-04-09T04:19:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "277a6080-fdc7-4437-b588-f7bed01e18e5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-09T03:08:38.000Z" + }, + "end": { + "$date": "2021-04-09T04:19:33.000Z" + }, + "events": [ + { + "uuid": "d303e404-8e92-4a8b-b1e8-bcccf93078e8", + "start": { + "$date": "2021-04-09T03:08:38.000Z" + }, + "end": { + "$date": "2021-04-09T04:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "98ea134f-6a0c-436b-a27c-7e1c51fcb7a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-09T03:10:39.000Z" + }, + "end": { + "$date": "2021-04-09T04:19:10.000Z" + }, + "events": [ + { + "uuid": "ec918fda-1286-4dd1-8caa-ac82d3013146", + "start": { + "$date": "2021-04-09T03:10:39.000Z" + }, + "end": { + "$date": "2021-04-09T04:19:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "9f8393d5-f5c6-42b8-afbb-fcc69f472b17", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T03:10:58.000Z" + }, + "end": { + "$date": "2021-04-09T03:47:04.000Z" + }, + "events": [ + { + "uuid": "212f32b8-ad60-4a88-a43e-28045b3ac1b1", + "start": { + "$date": "2021-04-09T03:10:58.000Z" + }, + "end": { + "$date": "2021-04-09T03:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1312132b-1189-4a86-a5af-342686976cbd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-09T03:57:55.000Z" + }, + "end": { + "$date": "2021-04-09T05:38:04.000Z" + }, + "events": [ + { + "uuid": "9bbe882b-8433-424b-b0b9-af8be68619aa", + "start": { + "$date": "2021-04-09T03:57:55.000Z" + }, + "end": { + "$date": "2021-04-09T05:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ffb01047-cc8e-4e42-8f0d-b893078d99e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T04:07:21.000Z" + }, + "end": { + "$date": "2021-04-09T04:59:02.000Z" + }, + "events": [ + { + "uuid": "f5fa5eef-c948-4fe3-8e1a-111a2577bbb5", + "start": { + "$date": "2021-04-09T04:07:21.000Z" + }, + "end": { + "$date": "2021-04-09T04:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f5812700-fe66-48ee-9acf-59fafdf16c85", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-09T04:09:30.000Z" + }, + "end": { + "$date": "2021-04-09T04:55:55.000Z" + }, + "events": [ + { + "uuid": "41774644-9f30-4cc1-990c-9a68a694678b", + "start": { + "$date": "2021-04-09T04:09:30.000Z" + }, + "end": { + "$date": "2021-04-09T04:55:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "196f0fc7-caac-414b-b580-ffc67533e614", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-09T04:15:48.000Z" + }, + "end": { + "$date": "2021-04-09T04:40:08.000Z" + }, + "events": [ + { + "uuid": "a126702c-d528-46f5-8bce-c4cd253b1d3e", + "start": { + "$date": "2021-04-09T04:15:48.000Z" + }, + "end": { + "$date": "2021-04-09T04:40:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "417ef05c-0174-4485-a740-a194ae6a442e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-09T04:22:37.000Z" + }, + "end": { + "$date": "2021-04-09T06:52:50.000Z" + }, + "events": [ + { + "uuid": "5f35d363-1d27-4804-b472-92743fb44f83", + "start": { + "$date": "2021-04-09T04:22:37.000Z" + }, + "end": { + "$date": "2021-04-09T06:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6525224b-45f2-4b59-aee8-1345cdb96108", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T04:59:42.000Z" + }, + "end": { + "$date": "2021-04-09T05:03:57.000Z" + }, + "events": [ + { + "uuid": "eb398ec6-1a95-4df8-a905-13cb22289112", + "start": { + "$date": "2021-04-09T04:59:42.000Z" + }, + "end": { + "$date": "2021-04-09T05:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3790ab13-8005-42c7-a110-1077d29f2d59", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-09T05:04:26.000Z" + }, + "end": { + "$date": "2021-04-09T05:24:56.000Z" + }, + "events": [ + { + "uuid": "a09f551a-8541-4bbf-982e-0c20f752e51d", + "start": { + "$date": "2021-04-09T05:04:26.000Z" + }, + "end": { + "$date": "2021-04-09T05:24:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3072188f-478f-4f45-84e6-68bcdced4cf7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-09T05:18:42.000Z" + }, + "end": { + "$date": "2021-04-09T05:44:17.000Z" + }, + "events": [ + { + "uuid": "a37fcba6-1bed-4142-a5d0-8b0b2aa0418f", + "start": { + "$date": "2021-04-09T05:18:42.000Z" + }, + "end": { + "$date": "2021-04-09T05:44:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c6561b8-d834-43b6-9de7-2d7d9e868a0f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-09T05:29:31.000Z" + }, + "end": { + "$date": "2021-04-09T05:47:56.000Z" + }, + "events": [ + { + "uuid": "b9c84aa9-0bee-49a2-ab69-8abf44d1e347", + "start": { + "$date": "2021-04-09T05:29:31.000Z" + }, + "end": { + "$date": "2021-04-09T05:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "36bd4a97-f420-45b5-8f56-b6d3825b4cdd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-09T14:16:53.000Z" + }, + "end": { + "$date": "2021-04-09T14:18:48.000Z" + }, + "events": [ + { + "uuid": "51ba1526-4326-463c-a29c-189fdac9161d", + "start": { + "$date": "2021-04-09T14:16:53.000Z" + }, + "end": { + "$date": "2021-04-09T14:18:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f60ce6a6-abb4-4b9a-be58-88e1d38e6615", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-09T14:19:08.000Z" + }, + "end": { + "$date": "2021-04-09T16:14:01.000Z" + }, + "events": [ + { + "uuid": "eaddb8db-a9b8-4fdc-8f84-56c0250623bb", + "start": { + "$date": "2021-04-09T14:19:08.000Z" + }, + "end": { + "$date": "2021-04-09T16:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "91a9b439-3c60-4bcb-afd9-bb2cd2c34ade", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T14:25:35.000Z" + }, + "end": { + "$date": "2021-04-09T14:49:58.000Z" + }, + "events": [ + { + "uuid": "a35d59f6-f834-40a7-b9f0-33d6bad5c042", + "start": { + "$date": "2021-04-09T14:25:35.000Z" + }, + "end": { + "$date": "2021-04-09T14:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "6bb8f808-166e-4f6f-9bb2-8f8b3703d1d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T14:50:28.000Z" + }, + "end": { + "$date": "2021-04-09T15:27:27.000Z" + }, + "events": [ + { + "uuid": "be6a4828-8b47-477e-b235-714c18d04a18", + "start": { + "$date": "2021-04-09T14:50:28.000Z" + }, + "end": { + "$date": "2021-04-09T15:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c965e2b-bfb1-49b3-bbda-46c6fec8564d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-09T15:23:24.000Z" + }, + "end": { + "$date": "2021-04-09T15:44:28.000Z" + }, + "events": [ + { + "uuid": "97409478-f735-4d1b-a027-cf7d9e06b2e6", + "start": { + "$date": "2021-04-09T15:23:24.000Z" + }, + "end": { + "$date": "2021-04-09T15:44:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b5eb7c23-c24a-46be-b1aa-18d73e4363c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-09T15:28:02.000Z" + }, + "end": { + "$date": "2021-04-09T16:00:11.000Z" + }, + "events": [ + { + "uuid": "2320e721-7c69-4cb2-9e54-87cc8b925156", + "start": { + "$date": "2021-04-09T15:28:02.000Z" + }, + "end": { + "$date": "2021-04-09T16:00:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "bbf196f2-5ebb-4106-b2b5-9cc15e5e6d5e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-09T16:23:08.000Z" + }, + "end": { + "$date": "2021-04-09T16:45:16.000Z" + }, + "events": [ + { + "uuid": "d254dbd1-1c05-4d5d-9509-d83bbfcc4062", + "start": { + "$date": "2021-04-09T16:23:08.000Z" + }, + "end": { + "$date": "2021-04-09T16:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e302195e-a7c4-4a14-b43c-f1f5a58bba4e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-09T17:41:36.000Z" + }, + "end": { + "$date": "2021-04-09T19:26:35.000Z" + }, + "events": [ + { + "uuid": "f9557dc1-d893-46f2-9ebc-59bf91b317d6", + "start": { + "$date": "2021-04-09T17:41:36.000Z" + }, + "end": { + "$date": "2021-04-09T19:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4a3d0f8f-a7ac-48e4-999c-5c92c714b547", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-09T17:47:34.000Z" + }, + "end": { + "$date": "2021-04-09T19:08:59.000Z" + }, + "events": [ + { + "uuid": "763eea0c-63a6-41ff-a7a9-8ca37d5f60a8", + "start": { + "$date": "2021-04-09T17:47:34.000Z" + }, + "end": { + "$date": "2021-04-09T19:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ff51da67-7764-46f0-a3c4-396b8d8a79a7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-09T19:48:32.000Z" + }, + "end": { + "$date": "2021-04-09T19:49:03.000Z" + }, + "events": [ + { + "uuid": "067d747c-07e8-4ab9-a459-608bed1afe77", + "start": { + "$date": "2021-04-09T19:48:32.000Z" + }, + "end": { + "$date": "2021-04-09T19:49:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9acdb532-d155-4cbf-95eb-d1a1e9071137", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-09T19:47:30.000Z" + }, + "end": { + "$date": "2021-04-09T19:50:22.000Z" + }, + "events": [ + { + "uuid": "aa6faea9-efbe-4c34-9deb-ae1e3bb5bf9f", + "start": { + "$date": "2021-04-09T19:47:30.000Z" + }, + "end": { + "$date": "2021-04-09T19:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fe5b5ea-f3ec-4fb2-a643-b56aedac6c1f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-09T19:54:56.000Z" + }, + "end": { + "$date": "2021-04-09T20:23:00.000Z" + }, + "events": [ + { + "uuid": "575ef969-39dc-49ba-aa9a-c3ce6d3d94ac", + "start": { + "$date": "2021-04-09T19:54:56.000Z" + }, + "end": { + "$date": "2021-04-09T20:23:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "61468dfc-7068-4e9a-ab94-2b1a0311133b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-09T19:54:43.000Z" + }, + "end": { + "$date": "2021-04-10T00:42:02.000Z" + }, + "events": [ + { + "uuid": "705acda0-6182-44a9-b8e3-d3fa4d1b132c", + "start": { + "$date": "2021-04-09T19:54:43.000Z" + }, + "end": { + "$date": "2021-04-10T00:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a4e42f97-07a0-44de-96d8-0a54caf6075f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-09T19:48:32.000Z" + }, + "end": { + "$date": "2021-04-09T23:42:41.000Z" + }, + "events": [ + { + "uuid": "f5c27eee-4823-47f4-8c49-78d927ff8924", + "start": { + "$date": "2021-04-09T19:48:32.000Z" + }, + "end": { + "$date": "2021-04-09T23:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ef2b320-48ca-4910-92db-23b1e3956cfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-09T20:32:38.000Z" + }, + "end": { + "$date": "2021-04-09T20:50:17.000Z" + }, + "events": [ + { + "uuid": "b4fafbd1-c3d7-4016-8390-5ff71b4fac43", + "start": { + "$date": "2021-04-09T20:32:38.000Z" + }, + "end": { + "$date": "2021-04-09T20:50:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "37b88cfb-330a-455f-9cae-9e1737ab14e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-09T21:51:26.000Z" + }, + "end": { + "$date": "2021-04-09T23:27:40.000Z" + }, + "events": [ + { + "uuid": "5a24aa48-141f-4bf5-ac8e-4e71dd25c396", + "start": { + "$date": "2021-04-09T21:51:26.000Z" + }, + "end": { + "$date": "2021-04-09T23:27:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "62ccbcea-bf79-4088-8ec0-7474b25af580", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-09T23:48:17.000Z" + }, + "end": { + "$date": "2021-04-10T00:22:11.000Z" + }, + "events": [ + { + "uuid": "b7175b4e-94e6-4d73-b6af-5fd5f9f5ea9c", + "start": { + "$date": "2021-04-09T23:48:17.000Z" + }, + "end": { + "$date": "2021-04-10T00:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "dcccd9d2-6a38-4faa-b1e0-01f96e8d11f5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-10T00:00:16.000Z" + }, + "end": { + "$date": "2021-04-10T00:01:34.000Z" + }, + "events": [ + { + "uuid": "85f9c286-d7cc-4b3b-845d-92a64f02f06f", + "start": { + "$date": "2021-04-10T00:00:16.000Z" + }, + "end": { + "$date": "2021-04-10T00:01:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0b4acba5-601b-4472-9f6c-f7a703ae15e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-10T00:02:13.000Z" + }, + "end": { + "$date": "2021-04-10T03:42:17.000Z" + }, + "events": [ + { + "uuid": "22823ade-ff8d-478a-b704-3c0ea02eabdc", + "start": { + "$date": "2021-04-10T00:02:13.000Z" + }, + "end": { + "$date": "2021-04-10T03:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "75018c0f-ffb4-459c-a83e-1de5bf791555", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-10T00:31:18.000Z" + }, + "end": { + "$date": "2021-04-10T00:32:58.000Z" + }, + "events": [ + { + "uuid": "6fb9704f-6216-4f90-b899-c0534ba75893", + "start": { + "$date": "2021-04-10T00:31:18.000Z" + }, + "end": { + "$date": "2021-04-10T00:32:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "492989bb-7498-46ed-945f-afc750b94b55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-10T00:43:58.000Z" + }, + "end": { + "$date": "2021-04-10T01:23:00.000Z" + }, + "events": [ + { + "uuid": "635b8659-f9e6-4e49-a2be-a13d34ccbcf4", + "start": { + "$date": "2021-04-10T00:43:58.000Z" + }, + "end": { + "$date": "2021-04-10T01:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71dd54d2-1b64-4a22-8f06-02c5560d571b", + "uuid": "0fe638ae-a932-4391-86e6-f320825df6f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-10T01:04:12.000Z" + }, + "end": { + "$date": "2021-04-10T01:47:18.000Z" + }, + "events": [ + { + "uuid": "13800ef7-645e-467e-a3b9-70952dfab2e9", + "start": { + "$date": "2021-04-10T01:04:12.000Z" + }, + "end": { + "$date": "2021-04-10T01:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0b779db7-a7be-45e5-bfd8-ee4877e1f279", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-10T01:24:05.000Z" + }, + "end": { + "$date": "2021-04-10T02:25:45.000Z" + }, + "events": [ + { + "uuid": "5208e1e9-92de-4673-b84c-502c9c396e33", + "start": { + "$date": "2021-04-10T01:24:05.000Z" + }, + "end": { + "$date": "2021-04-10T02:25:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1b85f49f-7b22-4be6-ad67-9ef18920ef6b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-10T01:40:44.000Z" + }, + "end": { + "$date": "2021-04-10T10:44:42.000Z" + }, + "events": [ + { + "uuid": "de2e0a3f-2c2e-413b-aeef-765c9d54c1a0", + "start": { + "$date": "2021-04-10T01:40:44.000Z" + }, + "end": { + "$date": "2021-04-10T10:44:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d67c8f75-8f19-4c5b-bdba-363ba85765c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T02:26:02.000Z" + }, + "end": { + "$date": "2021-04-10T02:28:12.000Z" + }, + "events": [ + { + "uuid": "6dbaae92-f228-4f5d-a1bd-c86f6454f5e5", + "start": { + "$date": "2021-04-10T02:26:02.000Z" + }, + "end": { + "$date": "2021-04-10T02:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "90336e62-f938-4757-a2f9-af18f553b496", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-10T02:26:05.000Z" + }, + "end": { + "$date": "2021-04-10T05:33:38.000Z" + }, + "events": [ + { + "uuid": "5f923292-0c8c-481e-b03f-2c41aa811662", + "start": { + "$date": "2021-04-10T02:26:05.000Z" + }, + "end": { + "$date": "2021-04-10T05:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9f2f0185-b0c5-4986-810e-06bd61f306c8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-10T02:28:30.000Z" + }, + "end": { + "$date": "2021-04-10T04:05:20.000Z" + }, + "events": [ + { + "uuid": "0501b3b7-ead8-4f91-b1e0-90995ff18f54", + "start": { + "$date": "2021-04-10T02:28:30.000Z" + }, + "end": { + "$date": "2021-04-10T04:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "da4cd20f-39b0-4852-8c37-65c801f44299", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-10T08:55:21.000Z" + }, + "end": { + "$date": "2021-04-10T08:58:12.000Z" + }, + "events": [ + { + "uuid": "8442f681-0a7a-4f57-b488-a05807e20223", + "start": { + "$date": "2021-04-10T08:55:21.000Z" + }, + "end": { + "$date": "2021-04-10T08:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9a76833a-7476-4fc7-bbcd-f7d7cef8e248", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T02:29:37.000Z" + }, + "end": { + "$date": "2021-04-10T04:05:29.000Z" + }, + "events": [ + { + "uuid": "1eba9c57-7e5a-4284-8f09-9d36ca083973", + "start": { + "$date": "2021-04-10T02:29:37.000Z" + }, + "end": { + "$date": "2021-04-10T04:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "87ef6a61-9983-4b99-ac76-f7749f8aa522", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-10T02:46:23.000Z" + }, + "end": { + "$date": "2021-04-10T05:01:38.000Z" + }, + "events": [ + { + "uuid": "b2ae8ae1-ff30-4c93-b833-bcd8d2f3823e", + "start": { + "$date": "2021-04-10T02:46:23.000Z" + }, + "end": { + "$date": "2021-04-10T05:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "e7d76e09-faad-4548-99f6-abf9c47a7c56", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-10T03:35:50.000Z" + }, + "end": { + "$date": "2021-04-10T04:59:08.000Z" + }, + "events": [ + { + "uuid": "0d82bd53-2a31-4682-a080-145348cada3e", + "start": { + "$date": "2021-04-10T03:35:50.000Z" + }, + "end": { + "$date": "2021-04-10T04:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "06a53e7f-cb40-4511-8089-5c717b7ace48", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T04:09:14.000Z" + }, + "end": { + "$date": "2021-04-10T04:56:15.000Z" + }, + "events": [ + { + "uuid": "74319750-2ba8-44c9-8ceb-cde96b29b453", + "start": { + "$date": "2021-04-10T04:09:14.000Z" + }, + "end": { + "$date": "2021-04-10T04:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "e26dd1be-cecf-4466-b459-0595e134677c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-10T04:18:07.000Z" + }, + "end": { + "$date": "2021-04-10T04:59:05.000Z" + }, + "events": [ + { + "uuid": "9a9b7f3a-fd92-4bb5-b4c9-7a2497ed56d8", + "start": { + "$date": "2021-04-10T04:18:07.000Z" + }, + "end": { + "$date": "2021-04-10T04:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fc2dc709-b11c-457a-80d7-7271f30ad758", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-10T04:33:09.000Z" + }, + "end": { + "$date": "2021-04-10T05:22:44.000Z" + }, + "events": [ + { + "uuid": "0e99fd10-fc88-4ec0-a2de-588e766e445d", + "start": { + "$date": "2021-04-10T04:33:09.000Z" + }, + "end": { + "$date": "2021-04-10T05:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "d4d2c2a7-d539-4b7c-9dc6-e3b4afe9f92a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T05:05:36.000Z" + }, + "end": { + "$date": "2021-04-10T05:09:11.000Z" + }, + "events": [ + { + "uuid": "c9c9a6ca-0a1b-43d5-a1fc-1015907a4ba7", + "start": { + "$date": "2021-04-10T05:05:36.000Z" + }, + "end": { + "$date": "2021-04-10T05:09:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "ce19fbc4-e691-419f-959c-1333114bdf2f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-10T05:06:42.000Z" + }, + "end": { + "$date": "2021-04-10T05:08:23.000Z" + }, + "events": [ + { + "uuid": "13003f27-e868-4c6a-9ea0-df649c81d5d1", + "start": { + "$date": "2021-04-10T05:06:42.000Z" + }, + "end": { + "$date": "2021-04-10T05:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "39883c04-fd2c-4082-878b-81640ece7397", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-10T05:08:28.000Z" + }, + "end": { + "$date": "2021-04-10T06:27:06.000Z" + }, + "events": [ + { + "uuid": "b5d4dbe9-3e3d-4c8a-8664-1e24ed827ebc", + "start": { + "$date": "2021-04-10T05:08:28.000Z" + }, + "end": { + "$date": "2021-04-10T06:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "c5a145e7-b4e6-4930-a811-ef62ae231234", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T05:09:16.000Z" + }, + "end": { + "$date": "2021-04-10T06:26:55.000Z" + }, + "events": [ + { + "uuid": "7c02c5e2-9d69-44c4-8cda-7797c81d3ce7", + "start": { + "$date": "2021-04-10T05:09:16.000Z" + }, + "end": { + "$date": "2021-04-10T06:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e7759a23-b840-4f1a-b879-06a99c0eacbb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-10T05:24:36.000Z" + }, + "end": { + "$date": "2021-04-10T08:16:56.000Z" + }, + "events": [ + { + "uuid": "e32c93fa-2e27-4989-9be1-f189966647ee", + "start": { + "$date": "2021-04-10T05:24:36.000Z" + }, + "end": { + "$date": "2021-04-10T08:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b3cd99b-d09e-47a0-a7d8-196dc159bd75", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-10T05:54:17.000Z" + }, + "end": { + "$date": "2021-04-10T06:31:37.000Z" + }, + "events": [ + { + "uuid": "40ea3aaf-e611-46e3-b3a3-4c7861b6a650", + "start": { + "$date": "2021-04-10T05:54:17.000Z" + }, + "end": { + "$date": "2021-04-10T06:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec1f4589-ee01-4657-8047-cf8f3c369078", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-10T06:34:50.000Z" + }, + "end": { + "$date": "2021-04-10T06:37:32.000Z" + }, + "events": [ + { + "uuid": "28d1ca06-e2a2-44c0-adb2-d87f8bafb466", + "start": { + "$date": "2021-04-10T06:34:50.000Z" + }, + "end": { + "$date": "2021-04-10T06:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68960519-3386-4bdd-b92a-49d1a008ef91", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-10T06:48:04.000Z" + }, + "end": { + "$date": "2021-04-10T07:10:41.000Z" + }, + "events": [ + { + "uuid": "1a2a3b9d-c432-46aa-bf16-e6bf11da7611", + "start": { + "$date": "2021-04-10T06:48:04.000Z" + }, + "end": { + "$date": "2021-04-10T07:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d38de8c-9088-47c3-bf1d-62e9bc67790c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-10T06:47:15.000Z" + }, + "end": { + "$date": "2021-04-10T07:10:45.000Z" + }, + "events": [ + { + "uuid": "8f1b932b-8aeb-441d-919b-80cefa4563f9", + "start": { + "$date": "2021-04-10T06:47:15.000Z" + }, + "end": { + "$date": "2021-04-10T07:10:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d3b7b4d-32b5-4dd7-b054-5258f769be72", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-10T07:15:00.000Z" + }, + "end": { + "$date": "2021-04-10T07:33:20.000Z" + }, + "events": [ + { + "uuid": "c9746d87-4cd1-4191-90ea-5f551a72ad37", + "start": { + "$date": "2021-04-10T07:15:00.000Z" + }, + "end": { + "$date": "2021-04-10T07:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d10e6fe-c27e-4f36-a7a3-a06c5553b08e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-10T07:15:01.000Z" + }, + "end": { + "$date": "2021-04-10T07:33:22.000Z" + }, + "events": [ + { + "uuid": "60b1853d-a9f0-4706-835b-4f8104b529ea", + "start": { + "$date": "2021-04-10T07:15:01.000Z" + }, + "end": { + "$date": "2021-04-10T07:33:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36462425-076b-484a-b8e9-a860046b63e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-10T08:12:28.000Z" + }, + "end": { + "$date": "2021-04-10T08:42:43.000Z" + }, + "events": [ + { + "uuid": "ceaabefb-5c33-494d-8c04-40be57843114", + "start": { + "$date": "2021-04-10T08:12:28.000Z" + }, + "end": { + "$date": "2021-04-10T08:42:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0227887b-9452-4a68-96b7-3def4d29bb2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T16:31:31.000Z" + }, + "end": { + "$date": "2021-04-10T17:09:32.000Z" + }, + "events": [ + { + "uuid": "1c17c5ff-641c-42ba-882e-107ec2cd8ee4", + "start": { + "$date": "2021-04-10T16:31:31.000Z" + }, + "end": { + "$date": "2021-04-10T17:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "06b1be9f-b768-4bfa-b9e5-eb8e3828f4e4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T17:09:42.000Z" + }, + "end": { + "$date": "2021-04-10T18:21:38.000Z" + }, + "events": [ + { + "uuid": "06a98c18-862d-4cf4-bc08-91da8d2b9b04", + "start": { + "$date": "2021-04-10T17:09:42.000Z" + }, + "end": { + "$date": "2021-04-10T18:21:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ef6b459b-18c3-4fe0-ad68-e4af1705ffed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-10T17:23:58.000Z" + }, + "end": { + "$date": "2021-04-10T18:56:31.000Z" + }, + "events": [ + { + "uuid": "c972c19c-f1fb-4e36-9143-cea194b78dc0", + "start": { + "$date": "2021-04-10T17:23:58.000Z" + }, + "end": { + "$date": "2021-04-10T17:57:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "07435ff6-ee1a-4811-9bb4-f787f874eb63", + "start": { + "$date": "2021-04-10T17:57:58.000Z" + }, + "end": { + "$date": "2021-04-10T17:58:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff2b8c0d-dbee-4e84-a8db-35f221b813d6", + "start": { + "$date": "2021-04-10T17:58:58.000Z" + }, + "end": { + "$date": "2021-04-10T18:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "30c71921-3b8c-4849-987d-0fa331ec654a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-10T19:16:41.000Z" + }, + "end": { + "$date": "2021-04-10T19:57:10.000Z" + }, + "events": [ + { + "uuid": "814afc29-73d4-4a00-9b38-66b31fb3244b", + "start": { + "$date": "2021-04-10T19:16:41.000Z" + }, + "end": { + "$date": "2021-04-10T19:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a7682fcd-7fdf-4c3f-a696-205187b1d93a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-10T20:00:55.000Z" + }, + "end": { + "$date": "2021-04-10T21:54:28.000Z" + }, + "events": [ + { + "uuid": "b267042d-ec8c-4bf4-98bb-9057a26e55e1", + "start": { + "$date": "2021-04-10T20:00:55.000Z" + }, + "end": { + "$date": "2021-04-10T21:54:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "80aa5e0e-b4a6-4a12-88fb-1ab749a60047", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-10T20:06:10.000Z" + }, + "end": { + "$date": "2021-04-10T20:24:44.000Z" + }, + "events": [ + { + "uuid": "97d6aa5a-4bd5-4727-9b20-8d82f828c3d6", + "start": { + "$date": "2021-04-10T20:06:10.000Z" + }, + "end": { + "$date": "2021-04-10T20:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "29c32836-f853-4f67-8314-72b278fdb40e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-10T20:29:34.000Z" + }, + "end": { + "$date": "2021-04-11T00:01:29.000Z" + }, + "events": [ + { + "uuid": "7c78951b-bae6-4a2e-b593-3c41d6c5373e", + "start": { + "$date": "2021-04-10T20:29:34.000Z" + }, + "end": { + "$date": "2021-04-11T00:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "227aad5a-356d-4eb4-a241-2461a75beaa7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-10T23:34:42.000Z" + }, + "end": { + "$date": "2021-04-11T00:07:21.000Z" + }, + "events": [ + { + "uuid": "3eccff2b-1dc9-4067-aaf5-99a01fb66916", + "start": { + "$date": "2021-04-10T23:34:42.000Z" + }, + "end": { + "$date": "2021-04-11T00:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "23bfe6b3-0cb0-4966-b394-95f5d9cbe88b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-10T20:52:55.000Z" + }, + "end": { + "$date": "2021-04-10T21:23:55.000Z" + }, + "events": [ + { + "uuid": "e7661457-0be0-4a9c-931c-b019a6a2508a", + "start": { + "$date": "2021-04-10T20:52:55.000Z" + }, + "end": { + "$date": "2021-04-10T21:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "74bdc8e5-2dbd-4015-944f-c5d3fc2d26d0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-10T20:55:21.000Z" + }, + "end": { + "$date": "2021-04-11T01:03:28.000Z" + }, + "events": [ + { + "uuid": "bda06019-c687-464f-9e63-4828f708ac8b", + "start": { + "$date": "2021-04-10T20:55:21.000Z" + }, + "end": { + "$date": "2021-04-11T00:54:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a671b560-9378-49b6-be57-c968adaa93be", + "start": { + "$date": "2021-04-11T00:54:21.000Z" + }, + "end": { + "$date": "2021-04-11T01:03:28.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1882661c-710a-4be9-be64-a64c33f50afc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-10T21:24:06.000Z" + }, + "end": { + "$date": "2021-04-10T22:39:03.000Z" + }, + "events": [ + { + "uuid": "5201cd9c-66b0-4a62-a9ee-539156c22679", + "start": { + "$date": "2021-04-10T21:24:06.000Z" + }, + "end": { + "$date": "2021-04-10T22:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0878bac7-5728-4168-8635-843cf974d356", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-10T21:55:14.000Z" + }, + "end": { + "$date": "2021-04-10T22:31:58.000Z" + }, + "events": [ + { + "uuid": "7a1a72c8-0c28-4dbe-b7a0-29646836ee49", + "start": { + "$date": "2021-04-10T21:55:14.000Z" + }, + "end": { + "$date": "2021-04-10T22:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fb3d1c43-da8d-4416-87d0-277d56c4e7b7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-10T21:59:28.000Z" + }, + "end": { + "$date": "2021-04-10T22:44:35.000Z" + }, + "events": [ + { + "uuid": "0685152e-e4d6-40dd-86b9-add2b7a4487b", + "start": { + "$date": "2021-04-10T21:59:28.000Z" + }, + "end": { + "$date": "2021-04-10T22:44:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9eccf02d-5308-4104-a3ae-c8f7b138913b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T22:17:42.000Z" + }, + "end": { + "$date": "2021-04-10T22:44:22.000Z" + }, + "events": [ + { + "uuid": "4e1adfbb-fe53-4669-9356-08f41025cec3", + "start": { + "$date": "2021-04-10T22:17:42.000Z" + }, + "end": { + "$date": "2021-04-10T22:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "12e41f7e-1fd6-4969-9b07-430ab1707721", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-10T22:47:06.000Z" + }, + "end": { + "$date": "2021-04-10T22:53:01.000Z" + }, + "events": [ + { + "uuid": "0df47471-eed9-44d4-8def-a86e3796fd24", + "start": { + "$date": "2021-04-10T22:47:06.000Z" + }, + "end": { + "$date": "2021-04-10T22:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5864e4cd-41a6-4e35-9f48-e231b437d947", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-10T22:48:07.000Z" + }, + "end": { + "$date": "2021-04-11T02:35:53.000Z" + }, + "events": [ + { + "uuid": "d4eb1e89-e6f0-4324-8a06-d2447bbdd78d", + "start": { + "$date": "2021-04-10T22:48:07.000Z" + }, + "end": { + "$date": "2021-04-11T02:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "106d0418-527b-4c7e-b005-2a252dc700d0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T01:09:16.000Z" + }, + "end": { + "$date": "2021-04-11T01:37:27.000Z" + }, + "events": [ + { + "uuid": "b8d74f82-5131-49b9-8c85-98528edd79f5", + "start": { + "$date": "2021-04-11T01:09:16.000Z" + }, + "end": { + "$date": "2021-04-11T01:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0e7ab52d-0ed4-475c-a089-222b905cff28", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-11T01:12:30.000Z" + }, + "end": { + "$date": "2021-04-11T01:24:46.000Z" + }, + "events": [ + { + "uuid": "e35862ce-fc1a-4a5b-ad1d-ea255030f6a3", + "start": { + "$date": "2021-04-11T01:12:30.000Z" + }, + "end": { + "$date": "2021-04-11T01:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2d8738e-032f-47ea-87b0-9bc2a3f693f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-11T01:42:04.000Z" + }, + "end": { + "$date": "2021-04-11T06:09:05.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-11T01:42:04.000Z" + }, + "end": { + "$date": "2021-04-11T06:09:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "968d9131-3925-47f2-83fb-5671dfcb9e96", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-11T01:46:38.000Z" + }, + "end": { + "$date": "2021-04-11T01:57:05.000Z" + }, + "events": [ + { + "uuid": "55b8bac1-a698-4585-8d9a-796a06ba8160", + "start": { + "$date": "2021-04-11T01:46:38.000Z" + }, + "end": { + "$date": "2021-04-11T01:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9532a148-3b44-4801-a0a8-95d2067facfc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T02:41:30.000Z" + }, + "end": { + "$date": "2021-04-11T03:08:57.000Z" + }, + "events": [ + { + "uuid": "3ec360bf-e45f-4c36-bf12-131e2c5f337e", + "start": { + "$date": "2021-04-11T02:41:30.000Z" + }, + "end": { + "$date": "2021-04-11T02:52:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "732d1499-41bd-419a-b8db-4488868da5eb", + "start": { + "$date": "2021-04-11T02:52:30.000Z" + }, + "end": { + "$date": "2021-04-11T03:08:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bfd5df68-078f-445d-bb30-8858b4e8a311", + "start": { + "$date": "2021-04-11T03:08:30.000Z" + }, + "end": { + "$date": "2021-04-11T03:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d1fa52f6-3d3f-4cd9-a59b-8777b74c5046", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-11T02:10:40.000Z" + }, + "end": { + "$date": "2021-04-11T04:05:26.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-11T02:10:40.000Z" + }, + "end": { + "$date": "2021-04-11T04:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ce94de30-d743-43ee-a116-a46951e0d293", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-11T02:23:18.000Z" + }, + "end": { + "$date": "2021-04-11T06:47:57.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-11T02:23:18.000Z" + }, + "end": { + "$date": "2021-04-11T06:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "26d40c04-f540-49df-9455-76465764e196", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-11T02:36:04.000Z" + }, + "end": { + "$date": "2021-04-11T05:36:36.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-11T02:36:04.000Z" + }, + "end": { + "$date": "2021-04-11T05:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6b7efedb-cd23-40dd-bab2-f53965e508f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T03:17:18.000Z" + }, + "end": { + "$date": "2021-04-11T05:10:48.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-11T03:17:18.000Z" + }, + "end": { + "$date": "2021-04-11T05:10:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c905b043-ec8d-407d-8858-d8d3191a59de", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-11T03:44:08.000Z" + }, + "end": { + "$date": "2021-04-11T06:45:41.000Z" + }, + "events": [ + { + "uuid": "0c8da962-63c0-4a78-8a1a-3e8022697192", + "start": { + "$date": "2021-04-11T03:44:08.000Z" + }, + "end": { + "$date": "2021-04-11T06:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fae4bdf2-3c97-48d1-85d1-58d62d92ac5d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-11T04:06:04.000Z" + }, + "end": { + "$date": "2021-04-11T04:32:18.000Z" + }, + "events": [ + { + "uuid": "73132943-25ba-4d91-9371-ad50d254fa95", + "start": { + "$date": "2021-04-11T04:06:04.000Z" + }, + "end": { + "$date": "2021-04-11T04:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "a9186ac9-fdae-4c12-90a0-dbd494494018", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-11T04:59:30.000Z" + }, + "end": { + "$date": "2021-04-11T06:32:25.000Z" + }, + "events": [ + { + "uuid": "3006b464-9f37-40bd-acf2-60d2c023128e", + "start": { + "$date": "2021-04-11T04:59:30.000Z" + }, + "end": { + "$date": "2021-04-11T06:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a20898fd-e29c-4619-9e24-a830068c7d3d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-11T05:31:01.000Z" + }, + "end": { + "$date": "2021-04-11T06:42:32.000Z" + }, + "events": [ + { + "uuid": "88bd105c-dbc1-432f-afc0-83e032a33aea", + "start": { + "$date": "2021-04-11T05:31:01.000Z" + }, + "end": { + "$date": "2021-04-11T06:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "654a4878-204e-41b6-8777-ec1f50f0852d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-11T05:36:46.000Z" + }, + "end": { + "$date": "2021-04-11T06:10:47.000Z" + }, + "events": [ + { + "uuid": "91c77e41-c5ba-4a22-af39-819456ffba14", + "start": { + "$date": "2021-04-11T05:36:46.000Z" + }, + "end": { + "$date": "2021-04-11T06:10:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4356b47-012e-49ce-9544-042240253eca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-11T08:03:34.000Z" + }, + "end": { + "$date": "2021-04-11T08:03:29.000Z" + }, + "events": [ + { + "uuid": "cf309d32-1aa4-41d9-981f-5609454cfd9a", + "start": { + "$date": "2021-04-11T08:03:34.000Z" + }, + "end": { + "$date": "2021-04-11T08:03:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9aa2a54f-38d9-47e8-8d20-ba2167051f44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-11T15:01:05.000Z" + }, + "end": { + "$date": "2021-04-11T15:53:32.000Z" + }, + "events": [ + { + "uuid": "f5dff155-27ca-4518-8fde-7a22c00b2322", + "start": { + "$date": "2021-04-11T15:01:05.000Z" + }, + "end": { + "$date": "2021-04-11T15:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "85817640-2a61-472a-8c1e-93fed9801e2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T16:06:38.000Z" + }, + "end": { + "$date": "2021-04-11T16:56:59.000Z" + }, + "events": [ + { + "uuid": "aa5a3a22-4d38-4225-8828-77f87919f726", + "start": { + "$date": "2021-04-11T16:06:38.000Z" + }, + "end": { + "$date": "2021-04-11T16:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2ad79211-61b9-4acc-a8c5-85822de32119", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-11T16:44:48.000Z" + }, + "end": { + "$date": "2021-04-11T17:59:28.000Z" + }, + "events": [ + { + "uuid": "67ab6d71-34a6-4498-be72-e48736af3013", + "start": { + "$date": "2021-04-11T16:44:48.000Z" + }, + "end": { + "$date": "2021-04-11T17:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e10146c5-e7f9-4ebb-a5ed-17e547f0eef1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-11T16:44:54.000Z" + }, + "end": { + "$date": "2021-04-11T19:04:00.000Z" + }, + "events": [ + { + "uuid": "580fe103-0a34-4624-9932-a95975c1a132", + "start": { + "$date": "2021-04-11T16:44:54.000Z" + }, + "end": { + "$date": "2021-04-11T19:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76a5a39d-5db9-41cc-b1f0-7f7c084dc7a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T17:02:45.000Z" + }, + "end": { + "$date": "2021-04-11T17:31:06.000Z" + }, + "events": [ + { + "uuid": "691252e0-55dd-49c7-a588-5a8a819e1ef1", + "start": { + "$date": "2021-04-11T17:02:45.000Z" + }, + "end": { + "$date": "2021-04-11T17:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2be7725f-be99-4ab1-9734-6962293bf81b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T17:32:16.000Z" + }, + "end": { + "$date": "2021-04-11T19:35:33.000Z" + }, + "events": [ + { + "uuid": "dfdc2a17-d648-4eae-8826-a85ead70f595", + "start": { + "$date": "2021-04-11T17:32:16.000Z" + }, + "end": { + "$date": "2021-04-11T19:35:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ae0b020e-e562-430d-9de2-ccc2eca4cea1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-11T18:32:47.000Z" + }, + "end": { + "$date": "2021-04-11T19:23:12.000Z" + }, + "events": [ + { + "uuid": "71923a6b-0bf9-4e5a-bc80-47ce3f955c25", + "start": { + "$date": "2021-04-11T18:32:47.000Z" + }, + "end": { + "$date": "2021-04-11T19:23:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6234a514-254f-4ced-9d56-682374551ee8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-11T19:14:30.000Z" + }, + "end": { + "$date": "2021-04-11T22:03:36.000Z" + }, + "events": [ + { + "uuid": "7dc4feae-3855-48e3-8734-7f34b208acfe", + "start": { + "$date": "2021-04-11T19:14:30.000Z" + }, + "end": { + "$date": "2021-04-11T22:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c42a71b8-ae11-4b53-9d2e-58d28d85cf56", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-11T19:39:24.000Z" + }, + "end": { + "$date": "2021-04-11T20:26:45.000Z" + }, + "events": [ + { + "uuid": "0f062464-65e9-4387-b1bf-c92dfc4e1450", + "start": { + "$date": "2021-04-11T19:39:24.000Z" + }, + "end": { + "$date": "2021-04-11T20:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fac9f486-f61d-4cae-b75c-223c405e294e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-11T20:06:24.000Z" + }, + "end": { + "$date": "2021-04-11T21:34:17.000Z" + }, + "events": [ + { + "uuid": "ed56f5b5-e6d6-4b81-a1c4-716eaf68fe9c", + "start": { + "$date": "2021-04-11T20:06:24.000Z" + }, + "end": { + "$date": "2021-04-11T21:34:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "4fcf0bcc-39fa-416a-b67d-4f41508ee137", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-11T21:12:44.000Z" + }, + "end": { + "$date": "2021-04-11T21:24:54.000Z" + }, + "events": [ + { + "uuid": "223e5f5b-8fdf-405b-83f0-b8be115a3500", + "start": { + "$date": "2021-04-11T21:12:44.000Z" + }, + "end": { + "$date": "2021-04-11T21:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dd6983d3-065e-4295-9793-9f4cca52c4b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-11T21:16:02.000Z" + }, + "end": { + "$date": "2021-04-11T21:18:27.000Z" + }, + "events": [ + { + "uuid": "68698280-f162-4395-b8e2-ebf797a9ae2f", + "start": { + "$date": "2021-04-11T21:16:02.000Z" + }, + "end": { + "$date": "2021-04-11T21:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "9dc4abd7-46c5-4e89-bb1b-4c0ccb980c56", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-11T22:21:30.000Z" + }, + "end": { + "$date": "2021-04-11T22:37:15.000Z" + }, + "events": [ + { + "uuid": "ceefc193-e640-409f-b262-25a08f8d6e3b", + "start": { + "$date": "2021-04-11T22:21:30.000Z" + }, + "end": { + "$date": "2021-04-11T22:37:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "286ed534-855d-4f37-967e-c415ecdffa31", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-11T22:25:41.000Z" + }, + "end": { + "$date": "2021-04-11T23:11:25.000Z" + }, + "events": [ + { + "uuid": "59ebb0cb-09e0-4eea-ad3d-d44307ccb198", + "start": { + "$date": "2021-04-11T22:25:41.000Z" + }, + "end": { + "$date": "2021-04-11T23:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "242b61a0-cedf-49cc-ad2a-09bb310f8103", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-11T22:26:57.000Z" + }, + "end": { + "$date": "2021-04-11T22:55:44.000Z" + }, + "events": [ + { + "uuid": "743bc01f-6e3e-44f9-8c9e-56e642352106", + "start": { + "$date": "2021-04-11T22:26:57.000Z" + }, + "end": { + "$date": "2021-04-11T22:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "46d41abf-f24f-4820-ae9d-cc1be72e4cd6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-11T23:01:07.000Z" + }, + "end": { + "$date": "2021-04-12T01:27:39.000Z" + }, + "events": [ + { + "uuid": "86aebe21-4ad2-4d30-9b0f-730c568fef72", + "start": { + "$date": "2021-04-11T23:01:07.000Z" + }, + "end": { + "$date": "2021-04-12T01:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "32d42c9a-d74a-4412-8f0c-d3bdfc485d5e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-11T23:04:28.000Z" + }, + "end": { + "$date": "2021-04-11T23:28:27.000Z" + }, + "events": [ + { + "uuid": "74ef9c1e-927c-4dec-a3ab-260a44f25860", + "start": { + "$date": "2021-04-11T23:04:28.000Z" + }, + "end": { + "$date": "2021-04-11T23:28:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "da41b05f-8366-477e-8803-5b47d3f7530e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-11T23:07:49.000Z" + }, + "end": { + "$date": "2021-04-11T23:10:29.000Z" + }, + "events": [ + { + "uuid": "d3928102-724f-4e00-8485-e169a8e887c6", + "start": { + "$date": "2021-04-11T23:07:49.000Z" + }, + "end": { + "$date": "2021-04-11T23:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6ffda8d2-d298-44ae-935e-4cae58970ce6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-11T23:10:44.000Z" + }, + "end": { + "$date": "2021-04-12T00:25:44.000Z" + }, + "events": [ + { + "uuid": "3a5eaac3-a92f-408e-8c1b-157966af85a7", + "start": { + "$date": "2021-04-11T23:10:44.000Z" + }, + "end": { + "$date": "2021-04-12T00:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d00a049a-73f3-462b-a92d-aa75c80c45f4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-12T01:46:44.000Z" + }, + "end": { + "$date": "2021-04-12T02:10:39.000Z" + }, + "events": [ + { + "uuid": "d6942d28-426b-42c9-a3a8-96045eba7ff5", + "start": { + "$date": "2021-04-12T01:46:44.000Z" + }, + "end": { + "$date": "2021-04-12T02:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9e9c9cec-89c6-4683-8f39-9ae6269bac70", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-12T01:47:04.000Z" + }, + "end": { + "$date": "2021-04-12T02:10:05.000Z" + }, + "events": [ + { + "uuid": "5235acc2-a65a-4054-ae0d-9f87ca570ab1", + "start": { + "$date": "2021-04-12T01:47:04.000Z" + }, + "end": { + "$date": "2021-04-12T02:10:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8d72aa94-ff34-4782-b522-71ec0c965c19", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-12T02:02:00.000Z" + }, + "end": { + "$date": "2021-04-12T04:35:50.000Z" + }, + "events": [ + { + "uuid": "7483313d-6209-4c21-ad14-46e56bbe74bf", + "start": { + "$date": "2021-04-12T02:02:00.000Z" + }, + "end": { + "$date": "2021-04-12T04:35:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5eeb8281-1cdf-438e-9c51-e57227ebcd40", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-12T02:18:15.000Z" + }, + "end": { + "$date": "2021-04-12T04:47:33.000Z" + }, + "events": [ + { + "uuid": "da059219-c4e8-4709-a3a1-a30475919025", + "start": { + "$date": "2021-04-12T02:18:15.000Z" + }, + "end": { + "$date": "2021-04-12T04:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "eee37538-89cf-4aba-a615-7d9ce013eb68", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-12T02:45:49.000Z" + }, + "end": { + "$date": "2021-04-12T05:28:24.000Z" + }, + "events": [ + { + "uuid": "89a7dbe3-588a-436c-b159-ea724489fc84", + "start": { + "$date": "2021-04-12T02:45:49.000Z" + }, + "end": { + "$date": "2021-04-12T05:28:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e80cae8f-be9f-42c8-b685-8d5ef891cf70", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-12T03:44:12.000Z" + }, + "end": { + "$date": "2021-04-12T04:10:27.000Z" + }, + "events": [ + { + "uuid": "990e74e1-41b1-4f77-accd-e12f8b0cebab", + "start": { + "$date": "2021-04-12T03:44:12.000Z" + }, + "end": { + "$date": "2021-04-12T04:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4a1a744e-5976-4d5d-bfd6-216b5c9bea27", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-12T03:36:55.000Z" + }, + "end": { + "$date": "2021-04-12T04:48:12.000Z" + }, + "events": [ + { + "uuid": "e133bf22-9129-4662-8e66-174ec10e0a56", + "start": { + "$date": "2021-04-12T03:36:55.000Z" + }, + "end": { + "$date": "2021-04-12T04:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98c6b359-6b72-438c-8688-7ef7354f7e20", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-12T04:15:43.000Z" + }, + "end": { + "$date": "2021-04-12T04:39:32.000Z" + }, + "events": [ + { + "uuid": "2977d47a-7233-43f8-b69e-643f78e62b61", + "start": { + "$date": "2021-04-12T04:15:43.000Z" + }, + "end": { + "$date": "2021-04-12T04:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7fc1d71-ef67-45a9-8bb3-b01bafce85cb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-12T04:45:09.000Z" + }, + "end": { + "$date": "2021-04-12T05:04:04.000Z" + }, + "events": [ + { + "uuid": "9620ffa0-2696-4dce-a308-4ce5766265f6", + "start": { + "$date": "2021-04-12T04:45:09.000Z" + }, + "end": { + "$date": "2021-04-12T05:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "57a93e06-8459-4250-8b3f-d5dfffe46c55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-12T04:51:31.000Z" + }, + "end": { + "$date": "2021-04-12T05:30:52.000Z" + }, + "events": [ + { + "uuid": "c44b3262-b382-4bad-883e-30d2cc5fbd62", + "start": { + "$date": "2021-04-12T04:51:31.000Z" + }, + "end": { + "$date": "2021-04-12T05:30:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b83e0757-06a3-4bd3-98f1-31aab27ae810", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-12T05:09:34.000Z" + }, + "end": { + "$date": "2021-04-12T05:30:32.000Z" + }, + "events": [ + { + "uuid": "0a582fac-0559-485b-ab43-728474243786", + "start": { + "$date": "2021-04-12T05:09:34.000Z" + }, + "end": { + "$date": "2021-04-12T05:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c1dbad35-d853-490a-9537-7dc0c535b034", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-12T05:32:18.000Z" + }, + "end": { + "$date": "2021-04-12T05:53:02.000Z" + }, + "events": [ + { + "uuid": "b64c8350-2070-4b05-9d67-6eee282e9da7", + "start": { + "$date": "2021-04-12T05:32:18.000Z" + }, + "end": { + "$date": "2021-04-12T05:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "97d32b3e-8230-4fa6-9dde-2d49d1d0e8c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-12T05:32:37.000Z" + }, + "end": { + "$date": "2021-04-12T05:36:42.000Z" + }, + "events": [ + { + "uuid": "52b2743d-0267-47a6-905c-1de847f7d715", + "start": { + "$date": "2021-04-12T05:32:37.000Z" + }, + "end": { + "$date": "2021-04-12T05:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a501ba5e-712c-411c-a578-8215328f6d70", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-12T05:38:57.000Z" + }, + "end": { + "$date": "2021-04-12T05:53:04.000Z" + }, + "events": [ + { + "uuid": "edd0917e-372e-4807-a455-e7fa1056143b", + "start": { + "$date": "2021-04-12T05:38:57.000Z" + }, + "end": { + "$date": "2021-04-12T05:53:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "98ee3f89-5627-4672-8d4f-d7d0edbc21f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-12T15:36:47.000Z" + }, + "end": { + "$date": "2021-04-12T16:12:12.000Z" + }, + "events": [ + { + "uuid": "0e553050-217a-4fe4-9adf-a975109e6d2c", + "start": { + "$date": "2021-04-12T15:36:47.000Z" + }, + "end": { + "$date": "2021-04-12T16:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ca1c4093-2d5d-42a1-aca6-6a496b936431", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-12T15:38:17.000Z" + }, + "end": { + "$date": "2021-04-12T16:04:31.000Z" + }, + "events": [ + { + "uuid": "7386470c-c3b1-46e0-b05e-2ec87974c684", + "start": { + "$date": "2021-04-12T15:38:17.000Z" + }, + "end": { + "$date": "2021-04-12T16:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "54e7f347-f7cf-45a8-bb41-4cc34b7301bb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-12T16:14:33.000Z" + }, + "end": { + "$date": "2021-04-12T16:42:06.000Z" + }, + "events": [ + { + "uuid": "cdc23dc7-8219-4061-9230-d2688c1e52a0", + "start": { + "$date": "2021-04-12T16:14:33.000Z" + }, + "end": { + "$date": "2021-04-12T16:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d2dc2c64-7cfe-47eb-afc2-f1a052efd687", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-12T16:14:37.000Z" + }, + "end": { + "$date": "2021-04-12T16:55:36.000Z" + }, + "events": [ + { + "uuid": "4d31bc3f-8c20-4128-84df-93b59f2351cb", + "start": { + "$date": "2021-04-12T16:14:37.000Z" + }, + "end": { + "$date": "2021-04-12T16:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcee6cd8-4257-4c75-8fd4-12d26943761e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-12T18:00:26.000Z" + }, + "end": { + "$date": "2021-04-12T18:35:27.000Z" + }, + "events": [ + { + "uuid": "c0e9f2a6-b621-4df7-8519-a1788530d523", + "start": { + "$date": "2021-04-12T18:00:26.000Z" + }, + "end": { + "$date": "2021-04-12T18:35:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3edc2415-f3f2-4f83-a232-3e228fdaca85", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-12T19:27:56.000Z" + }, + "end": { + "$date": "2021-04-12T20:05:53.000Z" + }, + "events": [ + { + "uuid": "2e308937-cc9c-4760-9420-fe52a88ce95c", + "start": { + "$date": "2021-04-12T19:27:56.000Z" + }, + "end": { + "$date": "2021-04-12T20:05:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a40aaeec-afc6-468f-a790-13fb9fc55134", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-12T19:47:14.000Z" + }, + "end": { + "$date": "2021-04-12T20:06:57.000Z" + }, + "events": [ + { + "uuid": "b8c899a6-d573-43d6-a3a8-1bbfd36e775a", + "start": { + "$date": "2021-04-12T19:47:14.000Z" + }, + "end": { + "$date": "2021-04-12T20:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6ed69818-c60b-4ae9-b69e-12e440f8bc3c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-12T20:53:51.000Z" + }, + "end": { + "$date": "2021-04-13T01:08:02.000Z" + }, + "events": [ + { + "uuid": "9a1c67ad-4c5f-470d-9e84-cd536cb554c8", + "start": { + "$date": "2021-04-12T20:53:51.000Z" + }, + "end": { + "$date": "2021-04-13T01:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "2a1c81ee-d54b-4bdc-9dfb-a9d5abb83e8b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-12T23:40:53.000Z" + }, + "end": { + "$date": "2021-04-13T00:40:16.000Z" + }, + "events": [ + { + "uuid": "c821d020-5a4b-44b0-956a-c2f8e0eef24b", + "start": { + "$date": "2021-04-12T23:40:53.000Z" + }, + "end": { + "$date": "2021-04-13T00:40:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "622fd127-9290-4524-873c-e7305b69a451", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-13T00:22:37.000Z" + }, + "end": { + "$date": "2021-04-13T00:29:57.000Z" + }, + "events": [ + { + "uuid": "ac9b9cab-f43f-417a-9103-fede29c18498", + "start": { + "$date": "2021-04-13T00:22:37.000Z" + }, + "end": { + "$date": "2021-04-13T00:29:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "3b73cfa6-0b3f-4682-bc05-259972cb08bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T00:36:16.000Z" + }, + "end": { + "$date": "2021-04-13T01:41:38.000Z" + }, + "events": [ + { + "uuid": "6bf98c2d-2221-4ace-b38c-32ad92e145e9", + "start": { + "$date": "2021-04-13T00:36:16.000Z" + }, + "end": { + "$date": "2021-04-13T01:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "43f9cbc9-4360-438f-a17e-a4b9f2d80e3c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-13T01:30:55.000Z" + }, + "end": { + "$date": "2021-04-13T01:58:20.000Z" + }, + "events": [ + { + "uuid": "26e310be-0641-4cf8-83a0-2158b18507f0", + "start": { + "$date": "2021-04-13T01:30:55.000Z" + }, + "end": { + "$date": "2021-04-13T01:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d77eb1db-ec29-402f-8056-9afadfd873a3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-13T01:41:01.000Z" + }, + "end": { + "$date": "2021-04-13T04:02:23.000Z" + }, + "events": [ + { + "uuid": "4982d5d5-f8cb-476f-b677-b1aed57e96f8", + "start": { + "$date": "2021-04-13T01:41:01.000Z" + }, + "end": { + "$date": "2021-04-13T02:53:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb63260a-7d74-40bc-8e13-7f426beee750", + "start": { + "$date": "2021-04-13T02:53:01.000Z" + }, + "end": { + "$date": "2021-04-13T02:58:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74694020-1839-4d23-8f07-123ef1b1c1c2", + "start": { + "$date": "2021-04-13T02:58:01.000Z" + }, + "end": { + "$date": "2021-04-13T04:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6cc7e4ad-0f85-49bc-ad8e-16a1c75f5c77", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T01:59:05.000Z" + }, + "end": { + "$date": "2021-04-13T03:16:36.000Z" + }, + "events": [ + { + "uuid": "da0fe075-2fa6-4aa3-afce-c643ad546717", + "start": { + "$date": "2021-04-13T01:59:05.000Z" + }, + "end": { + "$date": "2021-04-13T03:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "28a3698f-5da2-4f42-b09e-4b006a9fc2f1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-13T01:55:06.000Z" + }, + "end": { + "$date": "2021-04-13T04:45:48.000Z" + }, + "events": [ + { + "uuid": "717eb24d-7aa9-4ddb-92c5-9781848cc471", + "start": { + "$date": "2021-04-13T01:55:06.000Z" + }, + "end": { + "$date": "2021-04-13T04:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3a3366ee-cae7-43c0-b795-0d1580a16bf3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-13T01:56:40.000Z" + }, + "end": { + "$date": "2021-04-13T01:59:20.000Z" + }, + "events": [ + { + "uuid": "d7e34b2c-6665-4b14-baff-731b4ece5ab7", + "start": { + "$date": "2021-04-13T01:56:40.000Z" + }, + "end": { + "$date": "2021-04-13T01:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a36efd31-7941-4c0c-88ea-14e764d67014", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-13T01:58:55.000Z" + }, + "end": { + "$date": "2021-04-13T04:46:16.000Z" + }, + "events": [ + { + "uuid": "41409407-5b73-4d5e-8a2e-768422ab6d56", + "start": { + "$date": "2021-04-13T01:58:55.000Z" + }, + "end": { + "$date": "2021-04-13T04:46:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49f72fe6-0390-4e17-8b79-69f3978b1e6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T03:22:16.000Z" + }, + "end": { + "$date": "2021-04-13T03:45:44.000Z" + }, + "events": [ + { + "uuid": "0ef98201-c7ba-4e67-a9b4-88de370377ff", + "start": { + "$date": "2021-04-13T03:22:16.000Z" + }, + "end": { + "$date": "2021-04-13T03:45:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ccbd4d20-d103-4478-a361-a9ef58f7c346", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-13T03:51:31.000Z" + }, + "end": { + "$date": "2021-04-13T04:07:57.000Z" + }, + "events": [ + { + "uuid": "a32e29b6-4e36-441d-83ab-55a79a6579a8", + "start": { + "$date": "2021-04-13T03:51:31.000Z" + }, + "end": { + "$date": "2021-04-13T04:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bae95c18-923b-4f15-9831-5100b77191ba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-13T03:35:51.000Z" + }, + "end": { + "$date": "2021-04-13T03:46:17.000Z" + }, + "events": [ + { + "uuid": "934388e5-ce89-48a1-aab0-0431b33b23eb", + "start": { + "$date": "2021-04-13T03:35:51.000Z" + }, + "end": { + "$date": "2021-04-13T03:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "be4493d7-06f2-42e5-8a1e-a7bd295b52ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-13T03:41:04.000Z" + }, + "end": { + "$date": "2021-04-13T04:51:16.000Z" + }, + "events": [ + { + "uuid": "0bda6bb0-cc45-4a14-8ccc-2b56c1e8842b", + "start": { + "$date": "2021-04-13T03:41:04.000Z" + }, + "end": { + "$date": "2021-04-13T04:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c7785101-4b31-43b3-8ef4-a65c35c5f75f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-13T03:42:51.000Z" + }, + "end": { + "$date": "2021-04-13T05:05:27.000Z" + }, + "events": [ + { + "uuid": "74d5eb63-447b-4504-91ea-8df027288ebd", + "start": { + "$date": "2021-04-13T03:42:51.000Z" + }, + "end": { + "$date": "2021-04-13T05:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5bf2b95-d626-4687-b824-3001e9b43d9b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T03:50:08.000Z" + }, + "end": { + "$date": "2021-04-13T04:08:10.000Z" + }, + "events": [ + { + "uuid": "6c63dece-8c77-4ae8-b108-7ab4ae087046", + "start": { + "$date": "2021-04-13T03:50:08.000Z" + }, + "end": { + "$date": "2021-04-13T04:08:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e329a5e3-a6c5-435c-8754-bb361b85dc52", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-13T03:50:03.000Z" + }, + "end": { + "$date": "2021-04-13T04:08:08.000Z" + }, + "events": [ + { + "uuid": "6931444b-e619-47cb-9139-7555b798bd9f", + "start": { + "$date": "2021-04-13T03:50:03.000Z" + }, + "end": { + "$date": "2021-04-13T04:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2bd8d33d-0053-4b4c-804b-4440ad31511c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T04:05:48.000Z" + }, + "end": { + "$date": "2021-04-13T04:39:23.000Z" + }, + "events": [ + { + "uuid": "20a118dd-aa37-4580-b90c-ad8dc85eec26", + "start": { + "$date": "2021-04-13T04:05:48.000Z" + }, + "end": { + "$date": "2021-04-13T04:39:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "134c1c5f-fecb-416d-87de-d740e9bfcd56", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-13T04:13:27.000Z" + }, + "end": { + "$date": "2021-04-13T04:32:17.000Z" + }, + "events": [ + { + "uuid": "62ff3156-4d83-427d-a937-5f14d1acebb4", + "start": { + "$date": "2021-04-13T04:13:27.000Z" + }, + "end": { + "$date": "2021-04-13T04:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "762056e9-2043-460b-8d60-eb552107b72d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-13T04:12:04.000Z" + }, + "end": { + "$date": "2021-04-13T04:32:25.000Z" + }, + "events": [ + { + "uuid": "e9041003-1a01-4c85-8fad-ea4488b3c8f3", + "start": { + "$date": "2021-04-13T04:12:04.000Z" + }, + "end": { + "$date": "2021-04-13T04:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c1a7d7a8-9870-42d5-96d7-b7a79062b505", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-13T04:18:08.000Z" + }, + "end": { + "$date": "2021-04-13T05:01:53.000Z" + }, + "events": [ + { + "uuid": "15be637c-94c8-42ed-8e20-c202d94e9705", + "start": { + "$date": "2021-04-13T04:18:08.000Z" + }, + "end": { + "$date": "2021-04-13T04:30:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "580a4cb9-085f-4510-be3b-74cebeab699c", + "start": { + "$date": "2021-04-13T04:30:08.000Z" + }, + "end": { + "$date": "2021-04-13T04:36:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba7cb8cc-6797-4469-8856-96f718fa882b", + "start": { + "$date": "2021-04-13T04:36:08.000Z" + }, + "end": { + "$date": "2021-04-13T05:01:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eaee64aa-cc69-43c5-b35c-2749b903c4bc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-13T04:45:05.000Z" + }, + "end": { + "$date": "2021-04-13T05:10:10.000Z" + }, + "events": [ + { + "uuid": "5ccf3928-d03b-4604-a718-d1af76a5f418", + "start": { + "$date": "2021-04-13T04:45:05.000Z" + }, + "end": { + "$date": "2021-04-13T05:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39c642bb-336d-4e62-8399-b3ccc0b91e21", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-13T04:53:11.000Z" + }, + "end": { + "$date": "2021-04-13T05:28:18.000Z" + }, + "events": [ + { + "uuid": "8e8e98e1-eadc-4e4c-8c6b-c13b429fe21f", + "start": { + "$date": "2021-04-13T04:53:11.000Z" + }, + "end": { + "$date": "2021-04-13T05:28:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "73bc812b-8a99-46ae-80e5-7683342efb16", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-13T04:52:22.000Z" + }, + "end": { + "$date": "2021-04-13T06:10:24.000Z" + }, + "events": [ + { + "uuid": "e04d88d7-793a-4c65-a1c2-04b272bacc2e", + "start": { + "$date": "2021-04-13T04:52:22.000Z" + }, + "end": { + "$date": "2021-04-13T06:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef7e4629-9ac2-47f4-9352-a0d5fa73d5ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T05:28:35.000Z" + }, + "end": { + "$date": "2021-04-13T05:52:42.000Z" + }, + "events": [ + { + "uuid": "c92e4698-1847-4ef5-ae76-6a9d5a9cdd0e", + "start": { + "$date": "2021-04-13T05:28:35.000Z" + }, + "end": { + "$date": "2021-04-13T05:52:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1996ff1f-cac0-4778-ab33-e13abe85fe91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T06:32:43.000Z" + }, + "end": { + "$date": "2021-04-13T06:32:38.000Z" + }, + "events": [ + { + "uuid": "d27af9b6-962b-42cb-9ec0-b2760a0112b2", + "start": { + "$date": "2021-04-13T06:32:43.000Z" + }, + "end": { + "$date": "2021-04-13T06:32:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d770ffb4-9b4c-401e-a9e7-c2296de818b0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-13T06:11:05.000Z" + }, + "end": { + "$date": "2021-04-13T06:22:19.000Z" + }, + "events": [ + { + "uuid": "7d7e9d3f-79c0-4339-803c-2cf7f031b728", + "start": { + "$date": "2021-04-13T06:11:05.000Z" + }, + "end": { + "$date": "2021-04-13T06:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "95fec1a6-a1d6-459d-a5ea-8945b53ed94c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-13T06:27:18.000Z" + }, + "end": { + "$date": "2021-04-13T07:33:14.000Z" + }, + "events": [ + { + "uuid": "d3abdd49-0551-45b9-b860-6209abde6cb2", + "start": { + "$date": "2021-04-13T06:27:18.000Z" + }, + "end": { + "$date": "2021-04-13T07:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "600875bf-534a-4468-a1b9-5305e9b25bcc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T06:42:36.000Z" + }, + "end": { + "$date": "2021-04-13T07:00:41.000Z" + }, + "events": [ + { + "uuid": "b6951ab9-c4ef-48e5-a8a4-9708e56653b3", + "start": { + "$date": "2021-04-13T06:42:36.000Z" + }, + "end": { + "$date": "2021-04-13T07:00:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6b46053-7559-403c-9ac7-dd7926c2512d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T17:03:06.000Z" + }, + "end": { + "$date": "2021-04-13T17:28:52.000Z" + }, + "events": [ + { + "uuid": "8ce88481-9970-4dfb-9e0d-4ee9883de711", + "start": { + "$date": "2021-04-13T17:03:06.000Z" + }, + "end": { + "$date": "2021-04-13T17:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6276662a-ff98-4d9b-90ef-204eacd79c55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T18:33:35.000Z" + }, + "end": { + "$date": "2021-04-13T18:55:45.000Z" + }, + "events": [ + { + "uuid": "e8f59903-e39b-4a60-834a-818dc7f80a24", + "start": { + "$date": "2021-04-13T18:33:35.000Z" + }, + "end": { + "$date": "2021-04-13T18:55:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a601623a-7b86-49bc-9272-9dcb90e55b64", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T18:58:38.000Z" + }, + "end": { + "$date": "2021-04-13T19:12:12.000Z" + }, + "events": [ + { + "uuid": "2d5df6f3-da99-4589-a343-fdf2e9e7ccf6", + "start": { + "$date": "2021-04-13T18:58:38.000Z" + }, + "end": { + "$date": "2021-04-13T19:12:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "104ca6e0-aed4-4f53-aaf9-e1c169511d22", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T19:15:59.000Z" + }, + "end": { + "$date": "2021-04-13T19:40:18.000Z" + }, + "events": [ + { + "uuid": "4213c1ed-76d6-4457-abd5-a5afdc727c10", + "start": { + "$date": "2021-04-13T19:15:59.000Z" + }, + "end": { + "$date": "2021-04-13T19:40:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c943a4d2-4b71-48ab-894f-412a0c7eebbc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-13T19:23:29.000Z" + }, + "end": { + "$date": "2021-04-13T19:50:24.000Z" + }, + "events": [ + { + "uuid": "de6ac7fa-76dc-435b-965c-61a66ee6f8c1", + "start": { + "$date": "2021-04-13T19:23:29.000Z" + }, + "end": { + "$date": "2021-04-13T19:50:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1c72bf00-b8db-4db7-b278-970a33c7ed83", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T19:40:06.000Z" + }, + "end": { + "$date": "2021-04-13T20:15:41.000Z" + }, + "events": [ + { + "uuid": "88257c2b-36bc-4dd6-9f6b-b459d906791b", + "start": { + "$date": "2021-04-13T19:40:06.000Z" + }, + "end": { + "$date": "2021-04-13T20:15:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2df91d17-90ff-45d1-b8da-6345e41fc9a1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-13T20:03:40.000Z" + }, + "end": { + "$date": "2021-04-13T22:37:56.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-13T20:03:40.000Z" + }, + "end": { + "$date": "2021-04-13T22:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "190c88e4-1b64-48cd-8e82-c30439de9469", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-13T20:57:08.000Z" + }, + "end": { + "$date": "2021-04-14T00:51:02.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-13T20:57:08.000Z" + }, + "end": { + "$date": "2021-04-14T00:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e0180a24-eece-4450-981b-3a0c9b290abb", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-13T21:43:10.000Z" + }, + "end": { + "$date": "2021-04-13T22:57:40.000Z" + }, + "events": [ + { + "uuid": "aa9a71eb-bab3-4ce3-8694-e561ad8c7cc8", + "start": { + "$date": "2021-04-13T21:43:10.000Z" + }, + "end": { + "$date": "2021-04-13T22:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc430c9a-3c38-4cc0-8883-3e2379c3c738", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T22:36:18.000Z" + }, + "end": { + "$date": "2021-04-13T22:56:05.000Z" + }, + "events": [ + { + "uuid": "d1b6d972-aeda-4652-80bb-db27cfe2a290", + "start": { + "$date": "2021-04-13T22:36:18.000Z" + }, + "end": { + "$date": "2021-04-13T22:56:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef1c6db3-6699-4357-99bd-81e641091175", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T22:38:45.000Z" + }, + "end": { + "$date": "2021-04-13T23:18:13.000Z" + }, + "events": [ + { + "uuid": "1323fcff-be41-4117-88ee-34dc6e4aab4c", + "start": { + "$date": "2021-04-13T22:38:45.000Z" + }, + "end": { + "$date": "2021-04-13T23:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "317f48ee-3469-42e1-95a7-2d6a84c9a085", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T23:22:38.000Z" + }, + "end": { + "$date": "2021-04-13T23:45:40.000Z" + }, + "events": [ + { + "uuid": "184afcce-7496-4045-813a-4c648c730b50", + "start": { + "$date": "2021-04-13T23:22:38.000Z" + }, + "end": { + "$date": "2021-04-13T23:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85e90af2-9bbd-439b-b4eb-6cd84980d715", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-13T23:37:48.000Z" + }, + "end": { + "$date": "2021-04-13T23:53:36.000Z" + }, + "events": [ + { + "uuid": "b160ce26-26c8-499a-b08b-dccc7e3125b4", + "start": { + "$date": "2021-04-13T23:37:48.000Z" + }, + "end": { + "$date": "2021-04-13T23:53:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "4fe80104-39d5-4ac4-997f-1a6393a8ad61", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-13T23:52:10.000Z" + }, + "end": { + "$date": "2021-04-14T00:25:32.000Z" + }, + "events": [ + { + "uuid": "154a1748-5386-4ba9-810a-b86e3882e61c", + "start": { + "$date": "2021-04-13T23:52:10.000Z" + }, + "end": { + "$date": "2021-04-14T00:25:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "81e8d577-dd4c-4235-83e5-341a73873d3b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-14T00:15:03.000Z" + }, + "end": { + "$date": "2021-04-14T00:29:45.000Z" + }, + "events": [ + { + "uuid": "95803ef4-e932-4a84-a525-3a364facdabf", + "start": { + "$date": "2021-04-14T00:15:03.000Z" + }, + "end": { + "$date": "2021-04-14T00:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7f894cf4-c531-48f4-8a12-89a8496459a2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-14T00:25:32.000Z" + }, + "end": { + "$date": "2021-04-14T01:24:14.000Z" + }, + "events": [ + { + "uuid": "6c4a12f4-754c-42f4-bb1e-fffa462f43ea", + "start": { + "$date": "2021-04-14T00:25:32.000Z" + }, + "end": { + "$date": "2021-04-14T01:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "20897f87-bb55-4506-9b95-83af90e82aeb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-14T00:43:17.000Z" + }, + "end": { + "$date": "2021-04-14T00:52:34.000Z" + }, + "events": [ + { + "uuid": "75e4c0c1-d625-47cd-b187-fa1743e0e105", + "start": { + "$date": "2021-04-14T00:43:17.000Z" + }, + "end": { + "$date": "2021-04-14T00:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d178fc56-2e8f-404e-b360-f67b58a0b701", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-14T02:12:57.000Z" + }, + "end": { + "$date": "2021-04-14T03:46:40.000Z" + }, + "events": [ + { + "uuid": "cf4afba6-ecc1-4b7d-9469-d0be3450f0ea", + "start": { + "$date": "2021-04-14T02:12:57.000Z" + }, + "end": { + "$date": "2021-04-14T03:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a15e10f7-8560-4ff1-95da-3a9d06a7ece5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-14T02:13:00.000Z" + }, + "end": { + "$date": "2021-04-14T05:00:13.000Z" + }, + "events": [ + { + "uuid": "f61863ed-746c-45d6-b61d-1ba564b0b59b", + "start": { + "$date": "2021-04-14T02:13:00.000Z" + }, + "end": { + "$date": "2021-04-14T05:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "a9244a98-2761-414a-9f57-0cc2fafdea9a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-14T02:19:23.000Z" + }, + "end": { + "$date": "2021-04-14T04:28:47.000Z" + }, + "events": [ + { + "uuid": "f5940bbd-fa34-4844-88ea-da3f80e826ac", + "start": { + "$date": "2021-04-14T02:19:23.000Z" + }, + "end": { + "$date": "2021-04-14T04:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "09bd8418-3af0-4226-97f4-acf91bfcc217", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-14T02:21:28.000Z" + }, + "end": { + "$date": "2021-04-14T03:34:01.000Z" + }, + "events": [ + { + "uuid": "3ec50cb6-4bed-4b15-b3f2-c4a6f55b580c", + "start": { + "$date": "2021-04-14T02:21:28.000Z" + }, + "end": { + "$date": "2021-04-14T03:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb5b4277-3074-4e60-afe9-3fc8897edb94", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-14T02:34:00.000Z" + }, + "end": { + "$date": "2021-04-14T03:15:03.000Z" + }, + "events": [ + { + "uuid": "55bd5c60-363a-4fdf-a245-99fc2df7af0c", + "start": { + "$date": "2021-04-14T02:34:00.000Z" + }, + "end": { + "$date": "2021-04-14T03:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7750c667-9873-4db3-8a85-dbd5e5f96f97", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-14T03:22:01.000Z" + }, + "end": { + "$date": "2021-04-14T03:48:27.000Z" + }, + "events": [ + { + "uuid": "d22f5ce9-1458-44dc-9731-61177e606e49", + "start": { + "$date": "2021-04-14T03:22:01.000Z" + }, + "end": { + "$date": "2021-04-14T03:48:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "35624bcf-0377-4bec-9a4c-f75820dbb45b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-14T03:32:03.000Z" + }, + "end": { + "$date": "2021-04-14T04:35:57.000Z" + }, + "events": [ + { + "uuid": "3f875715-1e1a-49ed-935d-747c153cc5e4", + "start": { + "$date": "2021-04-14T03:32:03.000Z" + }, + "end": { + "$date": "2021-04-14T04:35:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b48c1c51-df3b-45c5-bac5-823e0bbbb436", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-14T03:47:49.000Z" + }, + "end": { + "$date": "2021-04-14T03:52:28.000Z" + }, + "events": [ + { + "uuid": "8d27f1dd-9bcb-446c-b97a-6457e7cfdb3c", + "start": { + "$date": "2021-04-14T03:47:49.000Z" + }, + "end": { + "$date": "2021-04-14T03:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0f54d09-2970-49f5-a445-36c7cc4685e7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-14T03:53:47.000Z" + }, + "end": { + "$date": "2021-04-14T04:30:32.000Z" + }, + "events": [ + { + "uuid": "4f4193bc-5225-4bac-9892-a53bd4f5f93a", + "start": { + "$date": "2021-04-14T03:53:47.000Z" + }, + "end": { + "$date": "2021-04-14T04:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c0f02f2e-ee25-496c-aeb8-25bb81a74497", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-14T07:22:30.000Z" + }, + "end": { + "$date": "2021-04-14T07:29:36.000Z" + }, + "events": [ + { + "uuid": "fd44b4d5-721f-40f3-a730-1b5fd2e09b35", + "start": { + "$date": "2021-04-14T07:22:30.000Z" + }, + "end": { + "$date": "2021-04-14T07:29:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9b1acaf-00fc-4d8a-9000-1473c9725566", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-14T04:23:15.000Z" + }, + "end": { + "$date": "2021-04-14T07:38:35.000Z" + }, + "events": [ + { + "uuid": "29bea9e4-c283-4a1f-a2b9-e4d14f4c6ad5", + "start": { + "$date": "2021-04-14T04:23:15.000Z" + }, + "end": { + "$date": "2021-04-14T07:37:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19c05424-ac7f-44b0-915d-66d977c112e2", + "start": { + "$date": "2021-04-14T07:37:15.000Z" + }, + "end": { + "$date": "2021-04-14T07:38:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dd2e45ae-dfd7-402a-80bc-3496b97fa6d2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-14T04:30:32.000Z" + }, + "end": { + "$date": "2021-04-14T05:11:48.000Z" + }, + "events": [ + { + "uuid": "8e76a39c-1df7-4fb7-a092-4faefc2cb125", + "start": { + "$date": "2021-04-14T04:30:32.000Z" + }, + "end": { + "$date": "2021-04-14T05:11:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d384736-5af2-49d7-acb8-fcfb6dab1bec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-14T04:35:51.000Z" + }, + "end": { + "$date": "2021-04-14T05:29:40.000Z" + }, + "events": [ + { + "uuid": "a23849c5-4b86-4db7-b3c7-38cac0ac9e6a", + "start": { + "$date": "2021-04-14T04:35:51.000Z" + }, + "end": { + "$date": "2021-04-14T05:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "6695d540-6403-4e77-a828-9325e6e0a632", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-14T04:37:51.000Z" + }, + "end": { + "$date": "2021-04-14T05:54:38.000Z" + }, + "events": [ + { + "uuid": "cde108cc-e351-4c2b-89b0-61ecabaa972e", + "start": { + "$date": "2021-04-14T04:37:51.000Z" + }, + "end": { + "$date": "2021-04-14T05:54:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9257a709-ab1e-40d6-99a3-4e7bc668115e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-14T05:26:24.000Z" + }, + "end": { + "$date": "2021-04-14T06:15:45.000Z" + }, + "events": [ + { + "uuid": "bfde16d9-21d0-4f42-925f-bf42c8064142", + "start": { + "$date": "2021-04-14T05:26:24.000Z" + }, + "end": { + "$date": "2021-04-14T06:15:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "bcbc5d70-a4b9-4666-9422-8850b4ce895d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-14T13:55:13.000Z" + }, + "end": { + "$date": "2021-04-14T15:37:57.000Z" + }, + "events": [ + { + "uuid": "1b3323c9-13fa-45b8-9d75-c79fbef3b7d1", + "start": { + "$date": "2021-04-14T13:55:13.000Z" + }, + "end": { + "$date": "2021-04-14T15:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4844e37c-f515-4b90-9914-ed1d6065f20c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-14T16:05:54.000Z" + }, + "end": { + "$date": "2021-04-14T16:50:54.000Z" + }, + "events": [ + { + "uuid": "06d745d6-ec92-4d89-83c2-085a9a91436f", + "start": { + "$date": "2021-04-14T16:05:54.000Z" + }, + "end": { + "$date": "2021-04-14T16:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e84eb74f-ab2a-44e8-a679-cb2f90decddb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-14T16:38:19.000Z" + }, + "end": { + "$date": "2021-04-14T18:12:56.000Z" + }, + "events": [ + { + "uuid": "0654776a-5322-4984-884c-c3d4ac5a11a2", + "start": { + "$date": "2021-04-14T16:38:19.000Z" + }, + "end": { + "$date": "2021-04-14T17:38:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "840ea2d6-5810-4772-a95d-4b681e5c7744", + "start": { + "$date": "2021-04-14T17:38:19.000Z" + }, + "end": { + "$date": "2021-04-14T18:06:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "89cf452c-4a8e-426f-80a8-62f510cdc04e", + "start": { + "$date": "2021-04-14T18:06:19.000Z" + }, + "end": { + "$date": "2021-04-14T18:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "36b0097b-c627-46ee-b6c9-0e1c5f18edde", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-14T17:42:38.000Z" + }, + "end": { + "$date": "2021-04-14T17:51:49.000Z" + }, + "events": [ + { + "uuid": "7649d2a5-20c8-4efc-9cf0-4d00f98fba9f", + "start": { + "$date": "2021-04-14T17:42:38.000Z" + }, + "end": { + "$date": "2021-04-14T17:51:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bdc8f8ea-f144-4c6e-95b3-ed5895ba28d2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-14T17:51:54.000Z" + }, + "end": { + "$date": "2021-04-14T18:44:07.000Z" + }, + "events": [ + { + "uuid": "e5024e37-d830-4e16-854d-9ea35505d24c", + "start": { + "$date": "2021-04-14T17:51:54.000Z" + }, + "end": { + "$date": "2021-04-14T18:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7beef507-f287-45f8-9985-d093ab0f90cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-14T18:13:37.000Z" + }, + "end": { + "$date": "2021-04-14T19:31:01.000Z" + }, + "events": [ + { + "uuid": "8baa5464-f466-45ab-905b-ea91f04baede", + "start": { + "$date": "2021-04-14T18:13:37.000Z" + }, + "end": { + "$date": "2021-04-14T18:57:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67a8bcec-3738-48bf-b045-5a82efec9e9f", + "start": { + "$date": "2021-04-14T18:57:37.000Z" + }, + "end": { + "$date": "2021-04-14T18:58:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b9a9192-d7e5-40ac-a31a-61e97300dcc5", + "start": { + "$date": "2021-04-14T18:58:37.000Z" + }, + "end": { + "$date": "2021-04-14T19:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "28a410af-5012-4588-ad5d-a6078a0f4b37", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-14T19:25:54.000Z" + }, + "end": { + "$date": "2021-04-14T19:41:18.000Z" + }, + "events": [ + { + "uuid": "4e7a5881-ffe4-4551-893b-6cd6df59508a", + "start": { + "$date": "2021-04-14T19:25:54.000Z" + }, + "end": { + "$date": "2021-04-14T19:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "306d2179-3a9c-4bac-907e-134804c2081e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-14T19:45:38.000Z" + }, + "end": { + "$date": "2021-04-14T21:25:34.000Z" + }, + "events": [ + { + "uuid": "09ce13f5-be10-4b8b-9e6f-dcf5aa7130e6", + "start": { + "$date": "2021-04-14T19:45:38.000Z" + }, + "end": { + "$date": "2021-04-14T21:25:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "55e6f84d-c854-4984-b548-952e86a75a6b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-14T20:04:49.000Z" + }, + "end": { + "$date": "2021-04-14T20:57:03.000Z" + }, + "events": [ + { + "uuid": "18ed1eeb-404e-4444-bc2a-a4c9326d577d", + "start": { + "$date": "2021-04-14T20:04:49.000Z" + }, + "end": { + "$date": "2021-04-14T20:57:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "29636401-41b0-4e15-98e3-af02bacad515", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-14T20:27:46.000Z" + }, + "end": { + "$date": "2021-04-14T21:40:15.000Z" + }, + "events": [ + { + "uuid": "cefef79d-cb4b-42e6-8c95-28cca3f92add", + "start": { + "$date": "2021-04-14T20:27:46.000Z" + }, + "end": { + "$date": "2021-04-14T21:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9dd3f25f-ba57-41cc-acfb-d85ab5d0e560", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-14T21:09:45.000Z" + }, + "end": { + "$date": "2021-04-15T00:34:32.000Z" + }, + "events": [ + { + "uuid": "714c2ab2-1f4a-44cc-88f3-69fc4783eb59", + "start": { + "$date": "2021-04-14T21:09:45.000Z" + }, + "end": { + "$date": "2021-04-15T00:34:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f6487159-b61c-4b16-b1bd-7bf2d9556d88", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-14T23:24:08.000Z" + }, + "end": { + "$date": "2021-04-14T23:24:18.000Z" + }, + "events": [ + { + "uuid": "5e643dab-2809-45be-bbf4-344882dac8c8", + "start": { + "$date": "2021-04-14T23:24:08.000Z" + }, + "end": { + "$date": "2021-04-14T23:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "af90854c-1dbd-4014-a506-48bea7aee00a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-14T23:49:31.000Z" + }, + "end": { + "$date": "2021-04-15T00:20:32.000Z" + }, + "events": [ + { + "uuid": "c40532a7-d558-4fc0-a1d6-fef9d6c859e6", + "start": { + "$date": "2021-04-14T23:49:31.000Z" + }, + "end": { + "$date": "2021-04-15T00:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "9e705ebd-1839-476c-884a-75146512976a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T00:22:33.000Z" + }, + "end": { + "$date": "2021-04-15T01:17:39.000Z" + }, + "events": [ + { + "uuid": "64da6649-b23f-4010-b493-bc446a825793", + "start": { + "$date": "2021-04-15T00:22:33.000Z" + }, + "end": { + "$date": "2021-04-15T01:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aee826a8-e541-4913-9c5f-6611e0aed349", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-15T00:24:47.000Z" + }, + "end": { + "$date": "2021-04-15T02:11:05.000Z" + }, + "events": [ + { + "uuid": "aa90e5a2-f34c-4991-b538-d774a5bb8145", + "start": { + "$date": "2021-04-15T00:24:47.000Z" + }, + "end": { + "$date": "2021-04-15T02:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3d1599ca-f2bc-48cd-9fbb-3e5e9a8a1fd6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-15T01:04:15.000Z" + }, + "end": { + "$date": "2021-04-15T02:47:18.000Z" + }, + "events": [ + { + "uuid": "e312dd59-deb5-4d78-9faa-3fedfd322578", + "start": { + "$date": "2021-04-15T01:04:15.000Z" + }, + "end": { + "$date": "2021-04-15T02:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b10846bb-024d-460e-9eb9-735de12315fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T01:43:16.000Z" + }, + "end": { + "$date": "2021-04-15T03:09:24.000Z" + }, + "events": [ + { + "uuid": "e9e785a3-a54e-4798-9b16-ca16b26d234d", + "start": { + "$date": "2021-04-15T01:43:16.000Z" + }, + "end": { + "$date": "2021-04-15T03:09:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "06c969f6-b083-403e-958c-e3664a208d9e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T02:05:21.000Z" + }, + "end": { + "$date": "2021-04-15T02:37:56.000Z" + }, + "events": [ + { + "uuid": "0ea8ef9d-ec55-46d5-a4a2-7ca2071ada07", + "start": { + "$date": "2021-04-15T02:05:21.000Z" + }, + "end": { + "$date": "2021-04-15T02:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bfb15251-a186-4236-897c-ac7bc5857607", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-15T02:12:23.000Z" + }, + "end": { + "$date": "2021-04-15T04:58:59.000Z" + }, + "events": [ + { + "uuid": "2617d086-4613-43b1-87f4-4e36710d24c5", + "start": { + "$date": "2021-04-15T02:12:23.000Z" + }, + "end": { + "$date": "2021-04-15T04:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d795c04e-a14a-4bff-bd2a-2d5266b5fb70", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-15T02:30:19.000Z" + }, + "end": { + "$date": "2021-04-15T03:12:21.000Z" + }, + "events": [ + { + "uuid": "d255a125-642e-4f05-b781-b6403e4b89c5", + "start": { + "$date": "2021-04-15T02:30:19.000Z" + }, + "end": { + "$date": "2021-04-15T03:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "64bb516e-fa74-4e4e-9bd3-aed4e7a91844", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T02:38:07.000Z" + }, + "end": { + "$date": "2021-04-15T04:22:01.000Z" + }, + "events": [ + { + "uuid": "862e0ad6-2dad-4f67-8678-05790ed43261", + "start": { + "$date": "2021-04-15T02:38:07.000Z" + }, + "end": { + "$date": "2021-04-15T04:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d18d67bd-3c60-46ee-8e50-7ab124eba2ba", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-15T02:48:46.000Z" + }, + "end": { + "$date": "2021-04-15T06:35:58.000Z" + }, + "events": [ + { + "uuid": "04811f23-9f45-42ba-b11c-a98c81d384af", + "start": { + "$date": "2021-04-15T02:48:46.000Z" + }, + "end": { + "$date": "2021-04-15T06:35:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "778ca817-cd90-47fc-8e64-038e1e8798bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-15T02:50:58.000Z" + }, + "end": { + "$date": "2021-04-15T03:59:37.000Z" + }, + "events": [ + { + "uuid": "08c7f78a-eba6-4333-9207-7cb094265c98", + "start": { + "$date": "2021-04-15T02:50:58.000Z" + }, + "end": { + "$date": "2021-04-15T03:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1eb90930-f4cc-4700-b1ed-68709aca9e1e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T02:58:26.000Z" + }, + "end": { + "$date": "2021-04-15T03:07:14.000Z" + }, + "events": [ + { + "uuid": "47943b6f-54de-4d91-aeef-a3c9553b0f65", + "start": { + "$date": "2021-04-15T02:58:26.000Z" + }, + "end": { + "$date": "2021-04-15T03:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "fbcfc47c-5fcb-4c6f-b6de-08b0ffd86c9d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T03:14:38.000Z" + }, + "end": { + "$date": "2021-04-15T03:19:34.000Z" + }, + "events": [ + { + "uuid": "23ad447e-59fe-4285-8320-f2513d03af91", + "start": { + "$date": "2021-04-15T03:14:38.000Z" + }, + "end": { + "$date": "2021-04-15T03:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "076f2a98-ca4a-4f19-a71c-95435061f412", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T03:11:10.000Z" + }, + "end": { + "$date": "2021-04-15T03:54:01.000Z" + }, + "events": [ + { + "uuid": "8c32191f-d296-4c4a-8cad-88258bdeb3ff", + "start": { + "$date": "2021-04-15T03:11:10.000Z" + }, + "end": { + "$date": "2021-04-15T03:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "46aacf98-0191-44ce-b85c-54b9492ec131", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-15T03:13:36.000Z" + }, + "end": { + "$date": "2021-04-15T04:32:28.000Z" + }, + "events": [ + { + "uuid": "d22255a9-1c90-49e1-923c-20f4a6e6eab5", + "start": { + "$date": "2021-04-15T03:13:36.000Z" + }, + "end": { + "$date": "2021-04-15T04:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "5ce7e4c5-4f84-430b-ad40-306f7a797a00", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T03:18:48.000Z" + }, + "end": { + "$date": "2021-04-15T03:53:09.000Z" + }, + "events": [ + { + "uuid": "98e402b0-8bf3-4fd3-9b14-3b46aa8464d3", + "start": { + "$date": "2021-04-15T03:18:48.000Z" + }, + "end": { + "$date": "2021-04-15T03:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5ec4abd-6037-40e0-9544-dda09a8f36f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-15T03:46:55.000Z" + }, + "end": { + "$date": "2021-04-15T04:00:30.000Z" + }, + "events": [ + { + "uuid": "0230b9bf-ace2-4e2d-b27b-84f981744958", + "start": { + "$date": "2021-04-15T03:46:55.000Z" + }, + "end": { + "$date": "2021-04-15T04:00:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6d906854-2777-44dc-896d-3108267b6d3d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T03:52:53.000Z" + }, + "end": { + "$date": "2021-04-15T04:58:22.000Z" + }, + "events": [ + { + "uuid": "15a6493b-662e-498c-90be-ea17bab9f90b", + "start": { + "$date": "2021-04-15T03:52:53.000Z" + }, + "end": { + "$date": "2021-04-15T04:58:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5dfab55c-84fd-40c7-a22a-b63bc10f07be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T03:59:27.000Z" + }, + "end": { + "$date": "2021-04-15T04:57:48.000Z" + }, + "events": [ + { + "uuid": "6d980c38-34cd-4363-992c-7ddebf9cb0d1", + "start": { + "$date": "2021-04-15T03:59:27.000Z" + }, + "end": { + "$date": "2021-04-15T04:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d6929cbc-d2d3-4888-81eb-24204681a395", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-15T03:59:57.000Z" + }, + "end": { + "$date": "2021-04-15T04:58:16.000Z" + }, + "events": [ + { + "uuid": "59178a3a-69b5-49e1-b8ef-4402c23697bf", + "start": { + "$date": "2021-04-15T03:59:57.000Z" + }, + "end": { + "$date": "2021-04-15T04:58:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f9a7960-9c56-4ea4-a2a5-2638ed1ca1d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-15T04:05:41.000Z" + }, + "end": { + "$date": "2021-04-15T04:25:29.000Z" + }, + "events": [ + { + "uuid": "fe41b9d8-8036-451e-ade4-35a47410df15", + "start": { + "$date": "2021-04-15T04:05:41.000Z" + }, + "end": { + "$date": "2021-04-15T04:25:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05c247ca-832d-4e83-bd38-bdd7cc81fba6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-15T04:02:22.000Z" + }, + "end": { + "$date": "2021-04-15T05:10:22.000Z" + }, + "events": [ + { + "uuid": "1ef706e2-72c1-40ee-af80-39ef0a302b0b", + "start": { + "$date": "2021-04-15T04:02:22.000Z" + }, + "end": { + "$date": "2021-04-15T05:10:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02eb40e1-30c3-4bb8-9dff-d03388f39b8e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T04:22:31.000Z" + }, + "end": { + "$date": "2021-04-15T04:35:43.000Z" + }, + "events": [ + { + "uuid": "c79bfe06-9328-46e7-8073-09c1261254b1", + "start": { + "$date": "2021-04-15T04:22:31.000Z" + }, + "end": { + "$date": "2021-04-15T04:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "208f02d1-9b8f-4078-8e37-defd1f6e296b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-15T04:29:34.000Z" + }, + "end": { + "$date": "2021-04-15T04:45:32.000Z" + }, + "events": [ + { + "uuid": "88e54381-cbd6-4838-9c45-7037d77bfaa8", + "start": { + "$date": "2021-04-15T04:29:34.000Z" + }, + "end": { + "$date": "2021-04-15T04:45:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4fa9686-ba42-4caa-8334-d4f45f99c1a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-15T04:29:45.000Z" + }, + "end": { + "$date": "2021-04-15T04:45:20.000Z" + }, + "events": [ + { + "uuid": "bd05e7e6-3e1e-452f-9afe-3a687828d737", + "start": { + "$date": "2021-04-15T04:29:45.000Z" + }, + "end": { + "$date": "2021-04-15T04:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ee6036c1-7ef7-4dc1-aaf3-47cb35a3f322", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-15T04:33:01.000Z" + }, + "end": { + "$date": "2021-04-15T05:37:46.000Z" + }, + "events": [ + { + "uuid": "b813799b-a4bd-42a3-9cc3-d1159b948108", + "start": { + "$date": "2021-04-15T04:33:01.000Z" + }, + "end": { + "$date": "2021-04-15T05:37:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "80bd8f94-130d-456d-9110-4f917439c896", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T04:36:33.000Z" + }, + "end": { + "$date": "2021-04-15T05:08:36.000Z" + }, + "events": [ + { + "uuid": "dcb9a96a-fe49-488b-9fb0-4c65d0a2296e", + "start": { + "$date": "2021-04-15T04:36:33.000Z" + }, + "end": { + "$date": "2021-04-15T05:08:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2cd37c53-4755-4d29-850d-af7a5dc5f4df", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-15T04:36:54.000Z" + }, + "end": { + "$date": "2021-04-15T04:57:07.000Z" + }, + "events": [ + { + "uuid": "c7cd97aa-ac8d-4797-87fe-ebe0f311a66b", + "start": { + "$date": "2021-04-15T04:36:54.000Z" + }, + "end": { + "$date": "2021-04-15T04:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a028246b-cbe9-42af-ac00-4135873b86e3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-15T04:48:40.000Z" + }, + "end": { + "$date": "2021-04-15T05:07:43.000Z" + }, + "events": [ + { + "uuid": "c1b37539-fe7a-4c25-a7a8-3f50a4b97a51", + "start": { + "$date": "2021-04-15T04:48:40.000Z" + }, + "end": { + "$date": "2021-04-15T05:07:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49703290-32d2-48ba-afb1-3f47d746de47", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-15T04:49:31.000Z" + }, + "end": { + "$date": "2021-04-15T05:07:39.000Z" + }, + "events": [ + { + "uuid": "fa314bed-402a-4a67-a832-83abb41a377c", + "start": { + "$date": "2021-04-15T04:49:31.000Z" + }, + "end": { + "$date": "2021-04-15T05:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bd7d0535-35a1-4b3c-8936-ba512b2db237", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T05:08:51.000Z" + }, + "end": { + "$date": "2021-04-15T06:40:54.000Z" + }, + "events": [ + { + "uuid": "a434625e-df16-4e9b-8e2e-3e880af5010e", + "start": { + "$date": "2021-04-15T05:08:51.000Z" + }, + "end": { + "$date": "2021-04-15T06:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f3fe64a-63ff-449c-9841-b3c171d70b3c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-15T05:20:23.000Z" + }, + "end": { + "$date": "2021-04-15T05:51:40.000Z" + }, + "events": [ + { + "uuid": "33406088-2c2c-4d4d-bec9-50ee585efd3d", + "start": { + "$date": "2021-04-15T05:20:23.000Z" + }, + "end": { + "$date": "2021-04-15T05:51:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c328a5fe-3d56-4d9d-9988-1bb049f97dc7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-15T05:44:53.000Z" + }, + "end": { + "$date": "2021-04-15T07:11:53.000Z" + }, + "events": [ + { + "uuid": "d915ea8e-e18f-4b09-9a89-da0ed7b58615", + "start": { + "$date": "2021-04-15T05:44:53.000Z" + }, + "end": { + "$date": "2021-04-15T07:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "58bb0cd0-f94c-4b94-af1f-504042ef4c4d", + "uuid": "10bb6fe0-dba8-43dc-829b-f24d0b95541f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-15T13:26:56.000Z" + }, + "end": { + "$date": "2021-04-15T13:33:20.000Z" + }, + "events": [ + { + "uuid": "1e3c91dd-e446-4ad4-84f1-0249a30054dc", + "start": { + "$date": "2021-04-15T13:26:56.000Z" + }, + "end": { + "$date": "2021-04-15T13:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "58bb0cd0-f94c-4b94-af1f-504042ef4c4d", + "uuid": "a0f956f7-7a7f-4e1d-a986-5da8e243880d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-15T13:33:42.000Z" + }, + "end": { + "$date": "2021-04-15T15:24:05.000Z" + }, + "events": [ + { + "uuid": "0ca486ce-ff05-4019-9de1-2691b483ad6c", + "start": { + "$date": "2021-04-15T13:33:42.000Z" + }, + "end": { + "$date": "2021-04-15T15:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "280c21ec-4caa-4fdf-8ce8-89cab2609f62", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-15T14:26:57.000Z" + }, + "end": { + "$date": "2021-04-15T14:28:52.000Z" + }, + "events": [ + { + "uuid": "c5a53a68-6f9e-488d-baaa-99b2feb4dadb", + "start": { + "$date": "2021-04-15T14:26:57.000Z" + }, + "end": { + "$date": "2021-04-15T14:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "41b20444-4242-4141-a66b-7423b71b22c3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-15T14:33:57.000Z" + }, + "end": { + "$date": "2021-04-15T14:35:52.000Z" + }, + "events": [ + { + "uuid": "cfb76145-846d-4692-b739-a7e6fc748090", + "start": { + "$date": "2021-04-15T14:33:57.000Z" + }, + "end": { + "$date": "2021-04-15T14:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5bdde397-5506-4c9d-8a4a-7e7747848cc9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-15T14:37:22.000Z" + }, + "end": { + "$date": "2021-04-15T14:39:13.000Z" + }, + "events": [ + { + "uuid": "3926e5d7-6ac7-4427-a9f3-1b945936db2f", + "start": { + "$date": "2021-04-15T14:37:22.000Z" + }, + "end": { + "$date": "2021-04-15T14:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1484f02b-a6e9-4605-b654-e38c89a1ad78", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T15:32:31.000Z" + }, + "end": { + "$date": "2021-04-15T15:45:40.000Z" + }, + "events": [ + { + "uuid": "c7070785-c6ee-4f17-9072-0df50d848ee4", + "start": { + "$date": "2021-04-15T15:32:31.000Z" + }, + "end": { + "$date": "2021-04-15T15:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "776d3c32-6809-4f93-9c18-c131b9fbcd93", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-15T16:13:28.000Z" + }, + "end": { + "$date": "2021-04-15T16:27:23.000Z" + }, + "events": [ + { + "uuid": "94885c2b-a70c-4744-a963-f5ec30215e0f", + "start": { + "$date": "2021-04-15T16:13:28.000Z" + }, + "end": { + "$date": "2021-04-15T16:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "35214492-0732-4552-a01c-b537dc6cb098", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-15T16:39:57.000Z" + }, + "end": { + "$date": "2021-04-15T17:12:19.000Z" + }, + "events": [ + { + "uuid": "41761e0b-1614-447e-bb15-b4e9f2434554", + "start": { + "$date": "2021-04-15T16:39:57.000Z" + }, + "end": { + "$date": "2021-04-15T17:12:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1b9cf0f4-75a3-4386-a179-baf1d42c00c9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-15T18:49:37.000Z" + }, + "end": { + "$date": "2021-04-15T18:52:34.000Z" + }, + "events": [ + { + "uuid": "954d8cce-e01a-45f7-9e43-0433d700e08e", + "start": { + "$date": "2021-04-15T18:49:37.000Z" + }, + "end": { + "$date": "2021-04-15T18:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "1b0709df-f80a-49f4-82a2-9d57ba13503b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T18:54:13.000Z" + }, + "end": { + "$date": "2021-04-15T18:59:13.000Z" + }, + "events": [ + { + "uuid": "e4927bbf-763b-44c5-bb91-444ab46cbcb8", + "start": { + "$date": "2021-04-15T18:54:13.000Z" + }, + "end": { + "$date": "2021-04-15T18:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "73a19db5-09f4-4ba8-a5a0-a4b920417f41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-15T18:59:59.000Z" + }, + "end": { + "$date": "2021-04-15T19:50:02.000Z" + }, + "events": [ + { + "uuid": "cde72044-d680-4efd-93d5-f3b2d880a671", + "start": { + "$date": "2021-04-15T18:59:59.000Z" + }, + "end": { + "$date": "2021-04-15T19:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "ece5a5c4-5770-49f9-845e-d668efcf79d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T19:07:39.000Z" + }, + "end": { + "$date": "2021-04-15T19:44:05.000Z" + }, + "events": [ + { + "uuid": "74cd14e2-290f-4507-ab15-2a36cadd53fe", + "start": { + "$date": "2021-04-15T19:07:39.000Z" + }, + "end": { + "$date": "2021-04-15T19:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "89dfa6a5-0c7c-4d3d-aec1-8159ee414a7d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T19:29:34.000Z" + }, + "end": { + "$date": "2021-04-15T19:53:46.000Z" + }, + "events": [ + { + "uuid": "6c272f23-3cae-4e83-bbaf-6bc8620343ad", + "start": { + "$date": "2021-04-15T19:29:34.000Z" + }, + "end": { + "$date": "2021-04-15T19:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ee4af108-a6ac-4380-a772-854c9ab7eea3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T19:50:19.000Z" + }, + "end": { + "$date": "2021-04-15T20:15:55.000Z" + }, + "events": [ + { + "uuid": "3be84694-6c78-431d-8431-08a768033196", + "start": { + "$date": "2021-04-15T19:50:19.000Z" + }, + "end": { + "$date": "2021-04-15T20:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2dba5302-9a29-4c31-b3b0-677f5b4213eb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T20:23:07.000Z" + }, + "end": { + "$date": "2021-04-15T20:48:35.000Z" + }, + "events": [ + { + "uuid": "99b32716-d35b-4928-a6b2-6e51abc60c83", + "start": { + "$date": "2021-04-15T20:23:07.000Z" + }, + "end": { + "$date": "2021-04-15T20:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f73ea22a-57af-489c-a961-b433d22f17ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-15T20:25:17.000Z" + }, + "end": { + "$date": "2021-04-16T00:02:26.000Z" + }, + "events": [ + { + "uuid": "dcc5318b-2e05-4076-bde8-18dccecdadcc", + "start": { + "$date": "2021-04-15T20:25:17.000Z" + }, + "end": { + "$date": "2021-04-15T22:16:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e766e3c7-5957-4e97-8d2c-e5ffad300179", + "start": { + "$date": "2021-04-15T22:16:17.000Z" + }, + "end": { + "$date": "2021-04-15T22:18:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e1b4689-0fc4-487a-9421-0d49d3bc2f54", + "start": { + "$date": "2021-04-15T22:18:17.000Z" + }, + "end": { + "$date": "2021-04-15T23:45:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6cc35314-30b1-4992-ae92-d366fae37818", + "start": { + "$date": "2021-04-15T23:45:17.000Z" + }, + "end": { + "$date": "2021-04-15T23:50:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "878ca95c-dfa2-4856-9650-a921293e5762", + "start": { + "$date": "2021-04-15T23:50:17.000Z" + }, + "end": { + "$date": "2021-04-16T00:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "dc72c368-a34e-4f8e-9d35-faac9d164a56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T20:38:55.000Z" + }, + "end": { + "$date": "2021-04-15T21:00:05.000Z" + }, + "events": [ + { + "uuid": "dfd5ef34-019c-4b2f-84af-3c7289f7ef1a", + "start": { + "$date": "2021-04-15T20:38:55.000Z" + }, + "end": { + "$date": "2021-04-15T21:00:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "c50a2009-9d1a-4c98-afe5-d088c7af9b86", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-15T21:05:54.000Z" + }, + "end": { + "$date": "2021-04-15T21:39:17.000Z" + }, + "events": [ + { + "uuid": "b806c4b5-2c5f-4529-9b22-4a9580078872", + "start": { + "$date": "2021-04-15T21:05:54.000Z" + }, + "end": { + "$date": "2021-04-15T21:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "180bc466-80db-44a1-af82-c08b3f5cbf11", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-15T21:17:14.000Z" + }, + "end": { + "$date": "2021-04-16T00:26:04.000Z" + }, + "events": [ + { + "uuid": "0f1bc84a-f151-430e-b761-6e151d259f4a", + "start": { + "$date": "2021-04-15T21:17:14.000Z" + }, + "end": { + "$date": "2021-04-16T00:26:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b2469d7d-2466-4ac7-981a-6a4d4e80f660", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-15T22:34:50.000Z" + }, + "end": { + "$date": "2021-04-16T02:35:26.000Z" + }, + "events": [ + { + "uuid": "911417a7-e55f-4151-b3f0-ff91abe52803", + "start": { + "$date": "2021-04-15T22:34:50.000Z" + }, + "end": { + "$date": "2021-04-16T02:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d59ad7c4-96a7-4dfa-a642-7290311d6c35", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-15T22:39:22.000Z" + }, + "end": { + "$date": "2021-04-15T23:39:29.000Z" + }, + "events": [ + { + "uuid": "ca3a617c-3690-44df-9ca9-0f038e7e841f", + "start": { + "$date": "2021-04-15T22:39:22.000Z" + }, + "end": { + "$date": "2021-04-15T23:39:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23a9929a-d24d-4815-ba2f-56555d2bcc13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-15T22:57:09.000Z" + }, + "end": { + "$date": "2021-04-15T23:13:53.000Z" + }, + "events": [ + { + "uuid": "71131517-6ad9-46bf-8bed-3d39233cf0e7", + "start": { + "$date": "2021-04-15T22:57:09.000Z" + }, + "end": { + "$date": "2021-04-15T23:13:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24317c8f-bff7-4b2e-994c-76be95c694a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-15T23:14:47.000Z" + }, + "end": { + "$date": "2021-04-15T23:36:25.000Z" + }, + "events": [ + { + "uuid": "8326ef8d-2925-4f0b-a386-972a6ad501a9", + "start": { + "$date": "2021-04-15T23:14:47.000Z" + }, + "end": { + "$date": "2021-04-15T23:36:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b150cfe-a90f-4e26-8c7c-1de00404eaa9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T00:36:14.000Z" + }, + "end": { + "$date": "2021-04-16T00:46:56.000Z" + }, + "events": [ + { + "uuid": "bf88fae4-4c56-441f-8c95-57cd9915dbf2", + "start": { + "$date": "2021-04-16T00:36:14.000Z" + }, + "end": { + "$date": "2021-04-16T00:46:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d29c670-be7e-42ae-85f1-8a6780b4cd8c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T00:53:01.000Z" + }, + "end": { + "$date": "2021-04-16T01:14:51.000Z" + }, + "events": [ + { + "uuid": "73cb6468-2aa4-4bfe-a8c6-a2e26a460818", + "start": { + "$date": "2021-04-16T00:53:01.000Z" + }, + "end": { + "$date": "2021-04-16T01:14:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "aedd6aa7-7fd4-4196-9d92-5915be09c66e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-16T01:06:52.000Z" + }, + "end": { + "$date": "2021-04-16T01:08:45.000Z" + }, + "events": [ + { + "uuid": "9300e8aa-2a28-4d38-8748-779b6f29edca", + "start": { + "$date": "2021-04-16T01:06:52.000Z" + }, + "end": { + "$date": "2021-04-16T01:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5cd75c86-9524-4f81-9330-048952086f47", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T01:08:44.000Z" + }, + "end": { + "$date": "2021-04-16T02:36:02.000Z" + }, + "events": [ + { + "uuid": "32c0a58e-df81-414b-b7d2-01366543cac3", + "start": { + "$date": "2021-04-16T01:08:44.000Z" + }, + "end": { + "$date": "2021-04-16T02:36:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "7af3c309-3411-4bd9-8e3d-41aaf2ef92ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-16T01:09:35.000Z" + }, + "end": { + "$date": "2021-04-16T01:25:50.000Z" + }, + "events": [ + { + "uuid": "3703240b-1442-4064-9bf0-ef135ad6a9a2", + "start": { + "$date": "2021-04-16T01:09:35.000Z" + }, + "end": { + "$date": "2021-04-16T01:25:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6274b538-66b0-462c-a841-9824f94ee538", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T01:20:57.000Z" + }, + "end": { + "$date": "2021-04-16T01:44:15.000Z" + }, + "events": [ + { + "uuid": "f6bb5ca7-7871-4715-a221-9a05f52219d0", + "start": { + "$date": "2021-04-16T01:20:57.000Z" + }, + "end": { + "$date": "2021-04-16T01:44:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5a177b1-f015-4b2b-ab28-d7759228d53a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-16T01:20:48.000Z" + }, + "end": { + "$date": "2021-04-16T01:44:08.000Z" + }, + "events": [ + { + "uuid": "1de213b5-5500-41dc-bdc7-b84b04c33b75", + "start": { + "$date": "2021-04-16T01:20:48.000Z" + }, + "end": { + "$date": "2021-04-16T01:44:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bad67ae1-93b8-4427-9567-716afd26c375", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-16T01:25:58.000Z" + }, + "end": { + "$date": "2021-04-16T01:52:59.000Z" + }, + "events": [ + { + "uuid": "52a8c055-9619-46c6-a51a-33eac6a6ab0d", + "start": { + "$date": "2021-04-16T01:25:58.000Z" + }, + "end": { + "$date": "2021-04-16T01:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e98d365a-53f3-4424-80b3-3186447a15ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T01:47:54.000Z" + }, + "end": { + "$date": "2021-04-16T02:09:40.000Z" + }, + "events": [ + { + "uuid": "dce18049-227f-486c-8cce-6aff5e9a1088", + "start": { + "$date": "2021-04-16T01:47:54.000Z" + }, + "end": { + "$date": "2021-04-16T02:09:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d0be2d0-a1fe-46ce-a5ec-85ddf4895272", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-16T01:47:45.000Z" + }, + "end": { + "$date": "2021-04-16T02:09:36.000Z" + }, + "events": [ + { + "uuid": "78b65b14-5133-46f9-90d8-c90c00b86567", + "start": { + "$date": "2021-04-16T01:47:45.000Z" + }, + "end": { + "$date": "2021-04-16T02:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "d34bdab7-18ca-488a-b1cb-db9c429042ef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-16T04:05:28.000Z" + }, + "end": { + "$date": "2021-04-16T04:43:25.000Z" + }, + "events": [ + { + "uuid": "ff399917-4185-4851-b8e7-ed66b57da271", + "start": { + "$date": "2021-04-16T04:05:28.000Z" + }, + "end": { + "$date": "2021-04-16T04:43:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "ff2903c3-1bf8-4502-8831-6d949c409c13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T02:38:38.000Z" + }, + "end": { + "$date": "2021-04-16T02:45:13.000Z" + }, + "events": [ + { + "uuid": "35b09404-532a-4902-9cff-a3232fc7a45a", + "start": { + "$date": "2021-04-16T02:38:38.000Z" + }, + "end": { + "$date": "2021-04-16T02:45:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "0c049445-c61a-4ef6-ab6a-fd6c9e87133b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-16T02:50:16.000Z" + }, + "end": { + "$date": "2021-04-16T03:23:47.000Z" + }, + "events": [ + { + "uuid": "65fd10d0-eba5-42f0-a38b-745511d7188b", + "start": { + "$date": "2021-04-16T02:50:16.000Z" + }, + "end": { + "$date": "2021-04-16T03:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "bfa086dc-6756-420c-9973-a7f89aeb9c58", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T03:25:56.000Z" + }, + "end": { + "$date": "2021-04-16T03:45:18.000Z" + }, + "events": [ + { + "uuid": "8a3d17b2-b59a-491e-a54f-b350dcf50615", + "start": { + "$date": "2021-04-16T03:25:56.000Z" + }, + "end": { + "$date": "2021-04-16T03:39:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d227e45e-8711-49eb-a1f2-e94ed6e7af5e", + "start": { + "$date": "2021-04-16T03:39:56.000Z" + }, + "end": { + "$date": "2021-04-16T03:45:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "15745048-5990-426b-a406-3f2a33db6167", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-16T03:26:00.000Z" + }, + "end": { + "$date": "2021-04-16T03:34:26.000Z" + }, + "events": [ + { + "uuid": "ed357208-a47c-4343-9afd-e63f1f330c6b", + "start": { + "$date": "2021-04-16T03:26:00.000Z" + }, + "end": { + "$date": "2021-04-16T03:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2dc88ee0-7870-4b3c-ae92-ab675b933055", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T04:13:35.000Z" + }, + "end": { + "$date": "2021-04-16T05:04:43.000Z" + }, + "events": [ + { + "uuid": "dc080a1e-93fc-40be-8e83-ad006d57f1c1", + "start": { + "$date": "2021-04-16T04:13:35.000Z" + }, + "end": { + "$date": "2021-04-16T05:04:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ec76d8c-38dc-4282-82a0-8ae46e21d6a5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-16T04:02:59.000Z" + }, + "end": { + "$date": "2021-04-16T04:32:10.000Z" + }, + "events": [ + { + "uuid": "5eedf96b-2ee2-4dfc-bf19-380eb1ba432d", + "start": { + "$date": "2021-04-16T04:02:59.000Z" + }, + "end": { + "$date": "2021-04-16T04:32:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "16c64365-8831-43d7-b3bf-d33caeecdc58", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-16T04:00:52.000Z" + }, + "end": { + "$date": "2021-04-16T05:04:41.000Z" + }, + "events": [ + { + "uuid": "7511c7fa-4a3d-4c15-8ad7-be1e802e2aaf", + "start": { + "$date": "2021-04-16T04:00:52.000Z" + }, + "end": { + "$date": "2021-04-16T05:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "2317f6b9-9ac9-4d3d-920c-69ae14eb43db", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-16T04:11:32.000Z" + }, + "end": { + "$date": "2021-04-16T04:38:10.000Z" + }, + "events": [ + { + "uuid": "b162162e-def2-4e44-b525-833cc2b83cb7", + "start": { + "$date": "2021-04-16T04:11:32.000Z" + }, + "end": { + "$date": "2021-04-16T04:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c122cbce-8b6a-43a6-8e8e-60c840dbdbc9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-16T04:39:30.000Z" + }, + "end": { + "$date": "2021-04-16T04:47:57.000Z" + }, + "events": [ + { + "uuid": "dcc553e6-baa5-461c-9142-3dc72674fa85", + "start": { + "$date": "2021-04-16T04:39:30.000Z" + }, + "end": { + "$date": "2021-04-16T04:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "49fbeef4-c32b-45b8-81e7-ca19fa901b84", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-16T04:42:05.000Z" + }, + "end": { + "$date": "2021-04-16T06:37:17.000Z" + }, + "events": [ + { + "uuid": "e10fc9fa-9289-4baa-96ad-121665810425", + "start": { + "$date": "2021-04-16T04:42:05.000Z" + }, + "end": { + "$date": "2021-04-16T06:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "31af274a-3135-4499-95f1-d82160c81a7b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-16T04:49:20.000Z" + }, + "end": { + "$date": "2021-04-16T07:19:43.000Z" + }, + "events": [ + { + "uuid": "d5ee3676-9b0d-41f1-a402-e2a4fa469d5f", + "start": { + "$date": "2021-04-16T04:49:20.000Z" + }, + "end": { + "$date": "2021-04-16T07:19:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a3052f6-11f0-4f10-ad39-fdbd4c50d2c7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T05:04:10.000Z" + }, + "end": { + "$date": "2021-04-16T05:15:07.000Z" + }, + "events": [ + { + "uuid": "db9a1ccf-cd19-42ff-8382-e761232d7d7c", + "start": { + "$date": "2021-04-16T05:04:10.000Z" + }, + "end": { + "$date": "2021-04-16T05:15:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "deb1bac0-bd03-4e38-a7c7-ff6258ccb086", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T05:15:22.000Z" + }, + "end": { + "$date": "2021-04-16T05:29:22.000Z" + }, + "events": [ + { + "uuid": "c6a0cb3b-ed87-496e-afbe-2dcf7805ee61", + "start": { + "$date": "2021-04-16T05:15:22.000Z" + }, + "end": { + "$date": "2021-04-16T05:29:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "704a07bb-d796-4bb0-b10f-6cfb4d309084", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-16T05:25:59.000Z" + }, + "end": { + "$date": "2021-04-16T05:43:02.000Z" + }, + "events": [ + { + "uuid": "3ffbb314-51ca-4247-8d07-753262f75118", + "start": { + "$date": "2021-04-16T05:25:59.000Z" + }, + "end": { + "$date": "2021-04-16T05:26:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7a64f72-a449-4d11-812f-65048f5aca1c", + "start": { + "$date": "2021-04-16T05:26:59.000Z" + }, + "end": { + "$date": "2021-04-16T05:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffe9001a-6381-4207-b993-07ae1df7c8db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T05:32:21.000Z" + }, + "end": { + "$date": "2021-04-16T05:53:17.000Z" + }, + "events": [ + { + "uuid": "9d5a2ddd-09df-408b-b545-9032bda5f30d", + "start": { + "$date": "2021-04-16T05:32:21.000Z" + }, + "end": { + "$date": "2021-04-16T05:53:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2497c6f-b5ba-4f10-87ba-99e95ac77ae5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-16T05:33:08.000Z" + }, + "end": { + "$date": "2021-04-16T06:30:16.000Z" + }, + "events": [ + { + "uuid": "a20b81ed-09c2-4750-a266-831ad60cf577", + "start": { + "$date": "2021-04-16T05:33:08.000Z" + }, + "end": { + "$date": "2021-04-16T06:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "632b34a7-c959-46e1-88a7-3e92357528e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T05:57:07.000Z" + }, + "end": { + "$date": "2021-04-16T06:11:49.000Z" + }, + "events": [ + { + "uuid": "fcb58ec5-9451-4512-9350-0b6ccfa5f96e", + "start": { + "$date": "2021-04-16T05:57:07.000Z" + }, + "end": { + "$date": "2021-04-16T06:11:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "260dd621-7b46-486a-8c86-1ab3eab48c14", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T06:04:25.000Z" + }, + "end": { + "$date": "2021-04-16T06:22:51.000Z" + }, + "events": [ + { + "uuid": "67393788-dd3f-4910-af11-206e57945b70", + "start": { + "$date": "2021-04-16T06:04:25.000Z" + }, + "end": { + "$date": "2021-04-16T06:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a58b44e-8bce-428d-8828-6cc181ccec74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T06:14:48.000Z" + }, + "end": { + "$date": "2021-04-16T06:31:18.000Z" + }, + "events": [ + { + "uuid": "43fa8a26-f1f5-481f-ba69-64482a7c5535", + "start": { + "$date": "2021-04-16T06:14:48.000Z" + }, + "end": { + "$date": "2021-04-16T06:31:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "65d5a307-7937-40e0-a6bb-9a80cae8a1cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-16T06:30:24.000Z" + }, + "end": { + "$date": "2021-04-16T07:20:22.000Z" + }, + "events": [ + { + "uuid": "0a0b00b4-3dc6-4807-b8e4-1fab10db5b0a", + "start": { + "$date": "2021-04-16T06:30:24.000Z" + }, + "end": { + "$date": "2021-04-16T07:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f3538a11-aaaf-47a2-8499-2d8d06b53088", + "uuid": "e6992db0-acd3-492e-864e-4ecf55fad793", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T13:23:34.000Z" + }, + "end": { + "$date": "2021-04-16T13:25:55.000Z" + }, + "events": [ + { + "uuid": "8030cf74-4246-4b92-81f6-00791bd5b071", + "start": { + "$date": "2021-04-16T13:23:34.000Z" + }, + "end": { + "$date": "2021-04-16T13:25:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e4db422d-f8ec-4182-99f0-d0b50ca6dbd2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T13:28:10.000Z" + }, + "end": { + "$date": "2021-04-16T13:29:50.000Z" + }, + "events": [ + { + "uuid": "796e5bad-2afa-4969-aac6-73c3b7ee7724", + "start": { + "$date": "2021-04-16T13:28:10.000Z" + }, + "end": { + "$date": "2021-04-16T13:29:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "f1c70b98-914f-4686-a807-8d06d4b378fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T13:29:55.000Z" + }, + "end": { + "$date": "2021-04-16T13:31:00.000Z" + }, + "events": [ + { + "uuid": "523e02ee-0622-4c29-93ed-453fd7364d4d", + "start": { + "$date": "2021-04-16T13:29:55.000Z" + }, + "end": { + "$date": "2021-04-16T13:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "12e8df4d-c1a9-415c-8fb2-34cdaf025062", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T13:31:41.000Z" + }, + "end": { + "$date": "2021-04-16T14:20:57.000Z" + }, + "events": [ + { + "uuid": "bfb7269e-5fe1-430d-9813-58c0ebc63739", + "start": { + "$date": "2021-04-16T13:31:41.000Z" + }, + "end": { + "$date": "2021-04-16T14:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd360e02-0148-4971-86fb-3f1ecba5ed51", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T15:45:20.000Z" + }, + "end": { + "$date": "2021-04-16T16:16:58.000Z" + }, + "events": [ + { + "uuid": "76e53914-6a0e-459e-bb99-1116f9be0d12", + "start": { + "$date": "2021-04-16T15:45:20.000Z" + }, + "end": { + "$date": "2021-04-16T16:16:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "61951298-6482-48a4-91b3-a94b2b8a6aa1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-16T15:50:40.000Z" + }, + "end": { + "$date": "2021-04-16T16:29:35.000Z" + }, + "events": [ + { + "uuid": "629369d5-4f1e-4cd0-9033-6cca3d13fb09", + "start": { + "$date": "2021-04-16T15:50:40.000Z" + }, + "end": { + "$date": "2021-04-16T16:29:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f05fa148-f056-41d1-a291-5dc217c524db", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T16:18:08.000Z" + }, + "end": { + "$date": "2021-04-16T16:19:23.000Z" + }, + "events": [ + { + "uuid": "26b2ea14-603d-41d6-a8d9-12bf509a652b", + "start": { + "$date": "2021-04-16T16:18:08.000Z" + }, + "end": { + "$date": "2021-04-16T16:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30b595b8-4322-4fad-9937-f082e8e43af9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T16:22:26.000Z" + }, + "end": { + "$date": "2021-04-16T17:04:01.000Z" + }, + "events": [ + { + "uuid": "0bc8233f-e222-45ce-ab2b-0c2aaf373082", + "start": { + "$date": "2021-04-16T16:22:26.000Z" + }, + "end": { + "$date": "2021-04-16T17:04:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7b1fb294-4fb0-4c4c-ae9b-91be615e1998", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T20:22:27.000Z" + }, + "end": { + "$date": "2021-04-16T20:27:17.000Z" + }, + "events": [ + { + "uuid": "a8f7e678-e539-4f38-9ee6-e77d4e155567", + "start": { + "$date": "2021-04-16T20:22:27.000Z" + }, + "end": { + "$date": "2021-04-16T22:41:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "650de57b-8cff-4fbf-9a11-9a773fb67495", + "start": { + "$date": "2021-04-16T22:41:27.000Z" + }, + "end": { + "$date": "2021-04-16T22:53:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f2298be0-534e-440d-ade1-08f993fe1589", + "start": { + "$date": "2021-04-16T22:53:27.000Z" + }, + "end": { + "$date": "2021-04-16T22:55:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0ed7b5f-f0df-41ef-a557-f16fe6bfe1aa", + "start": { + "$date": "2021-04-16T22:55:27.000Z" + }, + "end": { + "$date": "2021-04-16T23:06:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "672b406e-5fa3-40a5-b032-69e2e954dbd4", + "start": { + "$date": "2021-04-16T23:06:27.000Z" + }, + "end": { + "$date": "2021-04-16T23:08:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50e09e58-0671-4c03-9168-6c8ef146e23f", + "start": { + "$date": "2021-04-16T23:08:27.000Z" + }, + "end": { + "$date": "2021-04-16T23:11:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f27c605c-3140-430e-805e-f4a8a10854be", + "start": { + "$date": "2021-04-16T23:11:27.000Z" + }, + "end": { + "$date": "2021-04-16T23:13:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c6cdfb1-0a67-498a-9d78-e6cdbf72a243", + "start": { + "$date": "2021-04-16T23:13:27.000Z" + }, + "end": { + "$date": "2021-04-16T23:48:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ccffa24-cf3a-4b4c-a77c-a3bd5dca8081", + "start": { + "$date": "2021-04-16T23:48:27.000Z" + }, + "end": { + "$date": "2021-04-17T00:19:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e6c3d80-e6c4-4275-8277-6b6961240511", + "start": { + "$date": "2021-04-17T00:19:27.000Z" + }, + "end": { + "$date": "2021-04-17T00:23:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f5c603d1-69c9-4716-8a23-ee166484e79b", + "start": { + "$date": "2021-04-17T00:23:27.000Z" + }, + "end": { + "$date": "2021-04-16T20:27:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "924c7d8b-dd6d-4367-8806-c88e8b8b5ffc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-16T17:07:33.000Z" + }, + "end": { + "$date": "2021-04-16T17:30:14.000Z" + }, + "events": [ + { + "uuid": "82db07a3-0fec-4eaa-aed6-84cfdf153efb", + "start": { + "$date": "2021-04-16T17:07:33.000Z" + }, + "end": { + "$date": "2021-04-16T17:30:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "dacfa757-ff6b-42ae-8892-31aa6ba94088", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T17:22:00.000Z" + }, + "end": { + "$date": "2021-04-16T17:22:10.000Z" + }, + "events": [ + { + "uuid": "cc3b0858-76a7-4396-bf03-d5c9d2a8c946", + "start": { + "$date": "2021-04-16T17:22:00.000Z" + }, + "end": { + "$date": "2021-04-16T17:22:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a705d28f-24e3-41ea-b446-f8d60c12f14a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T17:27:30.000Z" + }, + "end": { + "$date": "2021-04-16T17:56:26.000Z" + }, + "events": [ + { + "uuid": "f07aeca4-e258-4efa-923d-c91bda673cab", + "start": { + "$date": "2021-04-16T17:27:30.000Z" + }, + "end": { + "$date": "2021-04-16T17:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58258e1f-f018-4e26-8212-52e37ce48d33", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-16T17:36:52.000Z" + }, + "end": { + "$date": "2021-04-16T17:37:57.000Z" + }, + "events": [ + { + "uuid": "d55ed4eb-c131-434d-a82f-ce711dea35d5", + "start": { + "$date": "2021-04-16T17:36:52.000Z" + }, + "end": { + "$date": "2021-04-16T17:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "43173273-cbd4-4d6b-a1b7-2e51e4438be5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-16T17:59:53.000Z" + }, + "end": { + "$date": "2021-04-16T18:42:29.000Z" + }, + "events": [ + { + "uuid": "479cfb23-8e2c-4dfe-8a4e-2e42455b9a7f", + "start": { + "$date": "2021-04-16T17:59:53.000Z" + }, + "end": { + "$date": "2021-04-16T18:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "7ac50bce-1b9a-4f66-a67c-fe1a5840038f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T19:12:13.000Z" + }, + "end": { + "$date": "2021-04-16T22:23:59.000Z" + }, + "events": [ + { + "uuid": "203ed193-697f-4dc3-b067-1a4a80b8bae4", + "start": { + "$date": "2021-04-16T19:12:13.000Z" + }, + "end": { + "$date": "2021-04-16T19:37:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8a1488c-1c1b-4031-8001-a2365804c6fa", + "start": { + "$date": "2021-04-16T19:37:13.000Z" + }, + "end": { + "$date": "2021-04-16T19:43:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de769819-f8ad-4b2b-a37b-6d911087e91b", + "start": { + "$date": "2021-04-16T19:43:13.000Z" + }, + "end": { + "$date": "2021-04-16T22:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4823617f-d321-4162-9531-45a50fe4e0d1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-16T19:10:59.000Z" + }, + "end": { + "$date": "2021-04-16T21:46:41.000Z" + }, + "events": [ + { + "uuid": "e33302fd-a855-4cee-acd1-b9d1ebaa4480", + "start": { + "$date": "2021-04-16T19:10:59.000Z" + }, + "end": { + "$date": "2021-04-16T21:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "aaf05252-d228-4a5f-829a-275d240b0a42", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-16T19:23:08.000Z" + }, + "end": { + "$date": "2021-04-16T20:21:41.000Z" + }, + "events": [ + { + "uuid": "74432d2e-4ebe-4297-b633-97d9605753af", + "start": { + "$date": "2021-04-16T19:23:08.000Z" + }, + "end": { + "$date": "2021-04-16T20:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8be4c1ac-1493-4504-9e98-2ca9566d0f28", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-16T19:33:35.000Z" + }, + "end": { + "$date": "2021-04-16T19:54:25.000Z" + }, + "events": [ + { + "uuid": "c2b749a9-d411-444d-8708-b17fe4d3e1bc", + "start": { + "$date": "2021-04-16T19:33:35.000Z" + }, + "end": { + "$date": "2021-04-16T19:45:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25acf4ab-0014-4fe4-8ad5-15b1ff371108", + "start": { + "$date": "2021-04-16T19:45:35.000Z" + }, + "end": { + "$date": "2021-04-16T19:54:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ab6ca7ef-03a3-4303-bd39-d6706628edac", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-16T20:05:27.000Z" + }, + "end": { + "$date": "2021-04-16T20:31:14.000Z" + }, + "events": [ + { + "uuid": "d6586656-6939-4b68-91b2-e6ceba8f4641", + "start": { + "$date": "2021-04-16T20:05:27.000Z" + }, + "end": { + "$date": "2021-04-16T20:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dda70802-6f3e-49ec-bc24-47ecddb937ef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T21:05:24.000Z" + }, + "end": { + "$date": "2021-04-16T21:24:03.000Z" + }, + "events": [ + { + "uuid": "6826c36a-d3e4-4355-abd4-47de1e3be48c", + "start": { + "$date": "2021-04-16T21:05:24.000Z" + }, + "end": { + "$date": "2021-04-16T21:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "ba3c7a31-b2ec-432e-9aa1-2de281fed5cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T21:32:10.000Z" + }, + "end": { + "$date": "2021-04-16T21:54:55.000Z" + }, + "events": [ + { + "uuid": "1f5f9e32-9933-4b50-87c7-853575bd4bde", + "start": { + "$date": "2021-04-16T21:32:10.000Z" + }, + "end": { + "$date": "2021-04-16T21:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b4cd17d3-32d7-4e3e-a0bd-cd94ea13035e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T21:56:00.000Z" + }, + "end": { + "$date": "2021-04-16T22:27:06.000Z" + }, + "events": [ + { + "uuid": "b34c29e2-2f91-4844-8ece-5be5dc20e7c8", + "start": { + "$date": "2021-04-16T21:56:00.000Z" + }, + "end": { + "$date": "2021-04-16T22:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f03c3e72-c5e2-452c-b947-70ae596d2403", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T22:24:04.000Z" + }, + "end": { + "$date": "2021-04-16T22:31:39.000Z" + }, + "events": [ + { + "uuid": "229132a3-1d97-4336-a80b-98be64d71e4f", + "start": { + "$date": "2021-04-16T22:24:04.000Z" + }, + "end": { + "$date": "2021-04-16T22:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ebfeda06-1404-4b27-bd15-c36cc382c54f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T22:34:30.000Z" + }, + "end": { + "$date": "2021-04-16T22:45:50.000Z" + }, + "events": [ + { + "uuid": "7c892a71-458a-4555-afdb-13b46d4193b6", + "start": { + "$date": "2021-04-16T22:34:30.000Z" + }, + "end": { + "$date": "2021-04-16T22:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "d37b2604-50ef-44fd-9d2c-fae0750e9211", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T22:45:55.000Z" + }, + "end": { + "$date": "2021-04-16T22:48:30.000Z" + }, + "events": [ + { + "uuid": "21b1d763-f586-4618-af8e-2949e106fc9f", + "start": { + "$date": "2021-04-16T22:45:55.000Z" + }, + "end": { + "$date": "2021-04-16T22:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8e5e09ae-5eb3-4efb-9307-315447297ad7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T22:49:25.000Z" + }, + "end": { + "$date": "2021-04-16T23:09:01.000Z" + }, + "events": [ + { + "uuid": "17e01ba0-66fa-44e1-97fc-f372c5933485", + "start": { + "$date": "2021-04-16T22:49:25.000Z" + }, + "end": { + "$date": "2021-04-16T23:09:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "57ed9878-4f97-46fa-9f05-3057221a8641", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T23:09:06.000Z" + }, + "end": { + "$date": "2021-04-16T23:32:37.000Z" + }, + "events": [ + { + "uuid": "ef41ea37-bdd9-459f-8e4d-e4f4c02aecea", + "start": { + "$date": "2021-04-16T23:09:06.000Z" + }, + "end": { + "$date": "2021-04-16T23:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "002b820b-16af-4973-a344-f387f19e5d9b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T23:32:42.000Z" + }, + "end": { + "$date": "2021-04-16T23:55:36.000Z" + }, + "events": [ + { + "uuid": "32b30271-5f84-46aa-bd24-883b6310aa69", + "start": { + "$date": "2021-04-16T23:32:42.000Z" + }, + "end": { + "$date": "2021-04-16T23:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "fa7d127e-ff9f-4533-97c2-3c552f80bb8f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-16T23:48:03.000Z" + }, + "end": { + "$date": "2021-04-16T23:57:29.000Z" + }, + "events": [ + { + "uuid": "f23ed144-001b-499f-bd6e-748604e8ebee", + "start": { + "$date": "2021-04-16T23:48:03.000Z" + }, + "end": { + "$date": "2021-04-16T23:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f5112699-4351-446f-a7a1-fb90a2401bc6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-16T23:49:54.000Z" + }, + "end": { + "$date": "2021-04-17T00:28:34.000Z" + }, + "events": [ + { + "uuid": "377ce0db-8721-4a4e-9222-316694c76deb", + "start": { + "$date": "2021-04-16T23:49:54.000Z" + }, + "end": { + "$date": "2021-04-17T00:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f767d7a3-657c-4c4b-8593-10a46e4fa549", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-16T23:51:23.000Z" + }, + "end": { + "$date": "2021-04-17T00:29:18.000Z" + }, + "events": [ + { + "uuid": "bb5dc026-b680-4475-8653-1f03ae653302", + "start": { + "$date": "2021-04-16T23:51:23.000Z" + }, + "end": { + "$date": "2021-04-17T00:29:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "58b92fa2-9f51-4f92-8c1b-0b24acd54253", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-17T02:12:16.000Z" + }, + "end": { + "$date": "2021-04-17T02:22:47.000Z" + }, + "events": [ + { + "uuid": "9824677d-5e01-4834-909a-1263e760ad88", + "start": { + "$date": "2021-04-17T02:12:16.000Z" + }, + "end": { + "$date": "2021-04-17T02:22:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "d3a00736-1cd7-4ba3-9618-a94163aaf5c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-16T23:58:13.000Z" + }, + "end": { + "$date": "2021-04-17T00:08:58.000Z" + }, + "events": [ + { + "uuid": "acb06d9e-972e-4335-8511-bec1044d4343", + "start": { + "$date": "2021-04-16T23:58:13.000Z" + }, + "end": { + "$date": "2021-04-17T00:08:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c0c75769-8df5-43dc-b5dd-e71a26f802d6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T00:09:03.000Z" + }, + "end": { + "$date": "2021-04-17T00:21:43.000Z" + }, + "events": [ + { + "uuid": "fcb4cb51-a457-49aa-8a4c-c6dde44a2130", + "start": { + "$date": "2021-04-17T00:09:03.000Z" + }, + "end": { + "$date": "2021-04-17T00:21:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "bb880a6d-c01c-420d-8221-c722ceaa6289", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T00:21:48.000Z" + }, + "end": { + "$date": "2021-04-17T01:01:20.000Z" + }, + "events": [ + { + "uuid": "6db2c0bd-9197-4733-8d6c-4f397a6ca8e9", + "start": { + "$date": "2021-04-17T00:21:48.000Z" + }, + "end": { + "$date": "2021-04-17T01:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "6cf2d533-4677-458c-8cd9-48314101e544", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-17T00:40:12.000Z" + }, + "end": { + "$date": "2021-04-17T00:55:08.000Z" + }, + "events": [ + { + "uuid": "c1a10fbe-faf8-4d57-bb9b-d7e79f0c42e0", + "start": { + "$date": "2021-04-17T00:40:12.000Z" + }, + "end": { + "$date": "2021-04-17T00:55:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e4293f45-e307-4560-a805-2a11a8686025", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T01:01:25.000Z" + }, + "end": { + "$date": "2021-04-17T01:30:01.000Z" + }, + "events": [ + { + "uuid": "a7a864cb-50a6-445a-aad5-1ebd8d04bd40", + "start": { + "$date": "2021-04-17T01:01:25.000Z" + }, + "end": { + "$date": "2021-04-17T01:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "46b1a047-6708-42d9-b4dc-981e6a4402e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-17T01:10:16.000Z" + }, + "end": { + "$date": "2021-04-17T03:45:34.000Z" + }, + "events": [ + { + "uuid": "bf8497cd-ae18-4595-a7fa-582053e5197c", + "start": { + "$date": "2021-04-17T01:10:16.000Z" + }, + "end": { + "$date": "2021-04-17T03:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "11a3662c-0194-43b4-83d4-872ab6d3a4e1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T01:30:21.000Z" + }, + "end": { + "$date": "2021-04-17T01:34:01.000Z" + }, + "events": [ + { + "uuid": "e5bf51f8-3daa-4fdc-9b9f-512008df5878", + "start": { + "$date": "2021-04-17T01:30:21.000Z" + }, + "end": { + "$date": "2021-04-17T01:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "10c7e67d-c20b-4970-974b-caaf4436ad64", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T01:34:06.000Z" + }, + "end": { + "$date": "2021-04-17T02:08:42.000Z" + }, + "events": [ + { + "uuid": "fcb8e5df-913e-425a-89d5-f29f5a83d6a2", + "start": { + "$date": "2021-04-17T01:34:06.000Z" + }, + "end": { + "$date": "2021-04-17T02:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "af1c80fc-a18c-4073-9931-f47a140e5f38", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-17T01:53:43.000Z" + }, + "end": { + "$date": "2021-04-17T04:18:58.000Z" + }, + "events": [ + { + "uuid": "84b4e4a7-3aee-442a-ac65-90056d1d0296", + "start": { + "$date": "2021-04-17T01:53:43.000Z" + }, + "end": { + "$date": "2021-04-17T04:18:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "57e7bc49-1194-444f-85b4-bef0ec98a025", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-17T04:34:26.000Z" + }, + "end": { + "$date": "2021-04-17T10:58:12.000Z" + }, + "events": [ + { + "uuid": "910a0175-4e0d-41bf-b1fa-3265dc09e6a9", + "start": { + "$date": "2021-04-17T04:34:26.000Z" + }, + "end": { + "$date": "2021-04-17T10:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f078ad77-ff16-4ac2-8958-81726214dd53", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T02:08:47.000Z" + }, + "end": { + "$date": "2021-04-17T02:34:18.000Z" + }, + "events": [ + { + "uuid": "2a8f97ba-eca1-406b-9687-79405461855f", + "start": { + "$date": "2021-04-17T02:08:47.000Z" + }, + "end": { + "$date": "2021-04-17T02:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a19e8301-523f-4ee1-ab92-91ec611a0111", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-17T03:56:01.000Z" + }, + "end": { + "$date": "2021-04-17T04:18:07.000Z" + }, + "events": [ + { + "uuid": "d0385cfc-0c81-42e4-a939-1f0cf0c4b4e3", + "start": { + "$date": "2021-04-17T03:56:01.000Z" + }, + "end": { + "$date": "2021-04-17T04:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a6893160-d2d5-497f-afc5-856805ccfdac", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-17T04:28:42.000Z" + }, + "end": { + "$date": "2021-04-17T06:12:48.000Z" + }, + "events": [ + { + "uuid": "937e8ff0-9dc2-44c4-bb2d-fce47f22e8fa", + "start": { + "$date": "2021-04-17T04:28:42.000Z" + }, + "end": { + "$date": "2021-04-17T06:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "a7ba1fcd-53b4-44b4-8642-55277d773635", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T02:34:23.000Z" + }, + "end": { + "$date": "2021-04-17T03:02:14.000Z" + }, + "events": [ + { + "uuid": "76d66d2c-6221-412c-aba8-1f572908c0d7", + "start": { + "$date": "2021-04-17T02:34:23.000Z" + }, + "end": { + "$date": "2021-04-17T03:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "0bdf2303-5e65-4d3f-b01d-208dba4be87f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-17T02:37:25.000Z" + }, + "end": { + "$date": "2021-04-17T08:40:12.000Z" + }, + "events": [ + { + "uuid": "4f485d49-e3ce-4547-b0e4-a2faeeaa90a6", + "start": { + "$date": "2021-04-17T02:37:25.000Z" + }, + "end": { + "$date": "2021-04-17T06:16:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01db8afa-5e49-4f8f-a01d-4e5911012108", + "start": { + "$date": "2021-04-17T06:16:25.000Z" + }, + "end": { + "$date": "2021-04-17T06:18:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6cf70634-3ca0-492b-b02d-23f737646ddb", + "start": { + "$date": "2021-04-17T06:18:25.000Z" + }, + "end": { + "$date": "2021-04-17T08:40:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "627db0ac-0432-43f0-98dc-86995ba3f9a2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-17T02:50:14.000Z" + }, + "end": { + "$date": "2021-04-17T03:23:18.000Z" + }, + "events": [ + { + "uuid": "eb79252d-16d0-45d0-801a-bbeb1a2771b4", + "start": { + "$date": "2021-04-17T02:50:14.000Z" + }, + "end": { + "$date": "2021-04-17T03:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "8ea43820-f83e-4804-83c9-ac005fdb0c7a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T03:02:59.000Z" + }, + "end": { + "$date": "2021-04-17T03:04:19.000Z" + }, + "events": [ + { + "uuid": "4210e859-653b-4443-ba54-23ce31b86206", + "start": { + "$date": "2021-04-17T03:02:59.000Z" + }, + "end": { + "$date": "2021-04-17T03:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c28cb099-a5d0-4d63-924d-000f442a092f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T03:06:49.000Z" + }, + "end": { + "$date": "2021-04-17T03:21:20.000Z" + }, + "events": [ + { + "uuid": "02153780-7b3d-408c-aafb-96880aedd9ec", + "start": { + "$date": "2021-04-17T03:06:49.000Z" + }, + "end": { + "$date": "2021-04-17T03:21:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "01aa6a3a-c16e-43d5-8b86-e3664670ab0a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T03:21:40.000Z" + }, + "end": { + "$date": "2021-04-17T03:22:35.000Z" + }, + "events": [ + { + "uuid": "7692c1c4-b394-4d12-98ef-fb5bba0239fb", + "start": { + "$date": "2021-04-17T03:21:40.000Z" + }, + "end": { + "$date": "2021-04-17T03:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "87f60cf2-8d8d-4e07-a501-e11cb1b8650b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T03:22:50.000Z" + }, + "end": { + "$date": "2021-04-17T04:03:26.000Z" + }, + "events": [ + { + "uuid": "400813a5-8804-49eb-8d63-3bdfc84a736d", + "start": { + "$date": "2021-04-17T03:22:50.000Z" + }, + "end": { + "$date": "2021-04-17T04:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "638599c1-8332-4ea8-ac95-95d3b168ac5f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-17T03:38:21.000Z" + }, + "end": { + "$date": "2021-04-17T06:13:46.000Z" + }, + "events": [ + { + "uuid": "33ca7158-e495-4d27-bc95-1ab890d58367", + "start": { + "$date": "2021-04-17T03:38:21.000Z" + }, + "end": { + "$date": "2021-04-17T06:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "98b297cb-ffb1-4bb2-b528-3e01a1456fa9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-17T03:45:44.000Z" + }, + "end": { + "$date": "2021-04-17T04:21:05.000Z" + }, + "events": [ + { + "uuid": "979354f9-538b-42cf-a920-aea0992e627c", + "start": { + "$date": "2021-04-17T03:45:44.000Z" + }, + "end": { + "$date": "2021-04-17T04:21:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e1e70a46-2e53-40b9-97f1-ef8673e93573", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-17T04:07:59.000Z" + }, + "end": { + "$date": "2021-04-17T04:14:46.000Z" + }, + "events": [ + { + "uuid": "ea4577b9-4f1b-4edd-a772-96b454b1bd1c", + "start": { + "$date": "2021-04-17T04:07:59.000Z" + }, + "end": { + "$date": "2021-04-17T04:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "d1509883-8c8b-4e2f-ad44-51130cf1668c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-17T04:34:57.000Z" + }, + "end": { + "$date": "2021-04-17T08:41:49.000Z" + }, + "events": [ + { + "uuid": "b2ec38e2-dcbe-4ed3-ac56-d98befc7643e", + "start": { + "$date": "2021-04-17T04:34:57.000Z" + }, + "end": { + "$date": "2021-04-17T08:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "702053d0-7840-49fc-a217-c61721cd580e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-17T04:19:33.000Z" + }, + "end": { + "$date": "2021-04-17T05:11:11.000Z" + }, + "events": [ + { + "uuid": "3b927f65-22c4-4f23-9bd0-cf50a5c12047", + "start": { + "$date": "2021-04-17T04:19:33.000Z" + }, + "end": { + "$date": "2021-04-17T05:11:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a8787bdc-fd00-436e-82db-a7626a124fdc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-17T05:49:27.000Z" + }, + "end": { + "$date": "2021-04-17T06:55:39.000Z" + }, + "events": [ + { + "uuid": "da23d413-bd4c-45f8-ae8f-80021b8069af", + "start": { + "$date": "2021-04-17T05:49:27.000Z" + }, + "end": { + "$date": "2021-04-17T06:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2a0b0c6b-926f-4202-b94a-67bc93a65bdc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-17T08:40:46.000Z" + }, + "end": { + "$date": "2021-04-17T09:44:33.000Z" + }, + "events": [ + { + "uuid": "99781997-94d6-4f02-8d4c-da1ca4db521b", + "start": { + "$date": "2021-04-17T08:40:46.000Z" + }, + "end": { + "$date": "2021-04-17T09:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "537c5ebf-2b58-48b7-891f-572f98647001", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-17T14:53:27.000Z" + }, + "end": { + "$date": "2021-04-17T15:01:02.000Z" + }, + "events": [ + { + "uuid": "f05227d9-e8fb-483a-bf2a-ec0042cd9980", + "start": { + "$date": "2021-04-17T14:53:27.000Z" + }, + "end": { + "$date": "2021-04-17T15:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "704c251d-ab8f-4270-a7d1-7431e20c3696", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T15:53:40.000Z" + }, + "end": { + "$date": "2021-04-17T20:17:57.000Z" + }, + "events": [ + { + "uuid": "988486ae-6dc3-4abc-9aaf-86000d567396", + "start": { + "$date": "2021-04-17T15:53:40.000Z" + }, + "end": { + "$date": "2021-04-17T20:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4242a316-fd66-43bc-9e13-e5fa2fb91fcd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-17T15:55:20.000Z" + }, + "end": { + "$date": "2021-04-17T16:44:30.000Z" + }, + "events": [ + { + "uuid": "20a58473-cc7c-4b96-a1f3-4dae8a155a0b", + "start": { + "$date": "2021-04-17T15:55:20.000Z" + }, + "end": { + "$date": "2021-04-17T16:44:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "22c0926b-8f79-4395-9cfd-c4186fe8673c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-17T15:59:08.000Z" + }, + "end": { + "$date": "2021-04-17T16:00:28.000Z" + }, + "events": [ + { + "uuid": "c2c8fbfb-4565-4f0e-810a-844b4939a0d5", + "start": { + "$date": "2021-04-17T15:59:08.000Z" + }, + "end": { + "$date": "2021-04-17T16:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02e918d6-8ce7-4180-ada6-4c7f14b9c570", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-17T17:17:18.000Z" + }, + "end": { + "$date": "2021-04-17T18:45:32.000Z" + }, + "events": [ + { + "uuid": "09173cac-b8ea-4cd7-8940-4d39fd5afead", + "start": { + "$date": "2021-04-17T17:17:18.000Z" + }, + "end": { + "$date": "2021-04-17T18:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4aaae09e-43e3-468b-8689-cfb9eedfa67b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-17T18:02:38.000Z" + }, + "end": { + "$date": "2021-04-17T23:07:36.000Z" + }, + "events": [ + { + "uuid": "038733fc-f9e0-4e6d-b7a2-f7a8446a173d", + "start": { + "$date": "2021-04-17T18:02:38.000Z" + }, + "end": { + "$date": "2021-04-17T20:09:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f845a2f0-411e-499c-8f02-c8bd0d0212fb", + "start": { + "$date": "2021-04-17T20:09:38.000Z" + }, + "end": { + "$date": "2021-04-17T20:12:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "08c682ef-3101-460e-a94e-71fa4b6f72e3", + "start": { + "$date": "2021-04-17T20:12:38.000Z" + }, + "end": { + "$date": "2021-04-17T21:00:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eafd4d12-4d53-4985-aa65-d2a26e13c524", + "start": { + "$date": "2021-04-17T21:00:38.000Z" + }, + "end": { + "$date": "2021-04-17T22:04:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a3a087c-8b54-4626-a9a3-c61ae6f1ef0e", + "start": { + "$date": "2021-04-17T22:04:38.000Z" + }, + "end": { + "$date": "2021-04-17T23:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f4c66ec0-66d4-4563-8534-5cdf28c4eb81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-17T19:25:27.000Z" + }, + "end": { + "$date": "2021-04-17T21:17:20.000Z" + }, + "events": [ + { + "uuid": "dc48dc53-90d4-4ad0-a1f8-6280fddcd224", + "start": { + "$date": "2021-04-17T19:25:27.000Z" + }, + "end": { + "$date": "2021-04-17T21:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "61e9df68-ae21-41ce-8f30-c17ddd8b8f57", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T20:24:37.000Z" + }, + "end": { + "$date": "2021-04-17T20:34:03.000Z" + }, + "events": [ + { + "uuid": "d31a7884-25cd-46c3-b9fc-117515645a70", + "start": { + "$date": "2021-04-17T20:24:37.000Z" + }, + "end": { + "$date": "2021-04-17T20:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3248fd53-0d17-4427-8c20-10075a57e75c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-17T20:27:39.000Z" + }, + "end": { + "$date": "2021-04-17T22:10:30.000Z" + }, + "events": [ + { + "uuid": "bd2ab509-43fa-4113-83ed-7d6cef9cbd31", + "start": { + "$date": "2021-04-17T20:27:39.000Z" + }, + "end": { + "$date": "2021-04-17T22:10:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "5eb3d207-41dd-4a68-a88a-82f00f1dbdac", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-17T20:36:25.000Z" + }, + "end": { + "$date": "2021-04-17T20:37:55.000Z" + }, + "events": [ + { + "uuid": "2f7baee3-08e6-4cd4-b692-ae14f667c8b6", + "start": { + "$date": "2021-04-17T20:36:25.000Z" + }, + "end": { + "$date": "2021-04-17T20:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e80db68a-6a79-4e38-8171-369cc5033fc2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-17T22:15:56.000Z" + }, + "end": { + "$date": "2021-04-18T00:14:12.000Z" + }, + "events": [ + { + "uuid": "3a74c342-dc52-46ec-8e3e-6428d5cdddc1", + "start": { + "$date": "2021-04-17T22:15:56.000Z" + }, + "end": { + "$date": "2021-04-18T00:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "70671cd2-cb00-4dd1-b154-d66cfe0ac930", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-17T20:39:58.000Z" + }, + "end": { + "$date": "2021-04-18T06:01:01.000Z" + }, + "events": [ + { + "uuid": "3ab2fd3e-d42c-4bf0-9265-f99d0d51a617", + "start": { + "$date": "2021-04-17T20:39:58.000Z" + }, + "end": { + "$date": "2021-04-18T06:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e45a4ee-0489-49ef-8f81-19ab2a8ff4b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-17T21:02:58.000Z" + }, + "end": { + "$date": "2021-04-17T21:23:10.000Z" + }, + "events": [ + { + "uuid": "738b45ab-20db-41ac-bea2-798b69635045", + "start": { + "$date": "2021-04-17T21:02:58.000Z" + }, + "end": { + "$date": "2021-04-17T21:23:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b1a7481-1dca-40be-8637-e5866537618d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-17T23:17:38.000Z" + }, + "end": { + "$date": "2021-04-17T23:52:06.000Z" + }, + "events": [ + { + "uuid": "45a6bd49-e10b-4923-910a-29d02c326f69", + "start": { + "$date": "2021-04-17T23:17:38.000Z" + }, + "end": { + "$date": "2021-04-17T23:52:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "da0eab17-f9bf-453a-a707-4d8f2393e67c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-17T22:05:32.000Z" + }, + "end": { + "$date": "2021-04-17T23:35:24.000Z" + }, + "events": [ + { + "uuid": "85b1eeee-1973-4a72-918d-4c61ee1d954c", + "start": { + "$date": "2021-04-17T22:05:32.000Z" + }, + "end": { + "$date": "2021-04-17T23:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4a5c801a-fe52-4d97-9b2e-763f5e64249c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-17T22:09:49.000Z" + }, + "end": { + "$date": "2021-04-17T22:13:31.000Z" + }, + "events": [ + { + "uuid": "3b212250-d881-402a-8aaa-bbabb42db553", + "start": { + "$date": "2021-04-17T22:09:49.000Z" + }, + "end": { + "$date": "2021-04-17T22:13:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d52cf5e7-7720-4bf1-ba6b-d157844a3dfe", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-17T22:12:44.000Z" + }, + "end": { + "$date": "2021-04-18T00:14:20.000Z" + }, + "events": [ + { + "uuid": "f2b1b8df-41a3-48ee-9270-ba73f6f22ca2", + "start": { + "$date": "2021-04-17T22:12:44.000Z" + }, + "end": { + "$date": "2021-04-18T00:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb0606f2-0973-4307-9fe7-cc52d0547431", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-17T23:57:07.000Z" + }, + "end": { + "$date": "2021-04-18T00:16:10.000Z" + }, + "events": [ + { + "uuid": "591b2cb0-7587-4dd9-a23e-7b77a93ac313", + "start": { + "$date": "2021-04-17T23:57:07.000Z" + }, + "end": { + "$date": "2021-04-18T00:16:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "32580231-c608-4ca4-bcac-a1d66d89e48b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T00:14:55.000Z" + }, + "end": { + "$date": "2021-04-18T00:43:03.000Z" + }, + "events": [ + { + "uuid": "ac6c29a3-9b69-4fe6-9ce4-8e8e3db29c77", + "start": { + "$date": "2021-04-18T00:14:55.000Z" + }, + "end": { + "$date": "2021-04-18T00:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43e765ca-c974-4dba-a3d6-df44ceff2139", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T00:20:03.000Z" + }, + "end": { + "$date": "2021-04-18T00:39:33.000Z" + }, + "events": [ + { + "uuid": "ff8d106d-07e9-43c0-b332-778d5ced63dd", + "start": { + "$date": "2021-04-18T00:20:03.000Z" + }, + "end": { + "$date": "2021-04-18T00:39:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b48617cf-a34b-4e81-8ce9-c035b8ef16ae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-18T00:31:16.000Z" + }, + "end": { + "$date": "2021-04-18T03:01:15.000Z" + }, + "events": [ + { + "uuid": "24fa26f3-6ec3-441c-b4c6-5022fe5786df", + "start": { + "$date": "2021-04-18T00:31:16.000Z" + }, + "end": { + "$date": "2021-04-18T03:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0fb7b30f-9105-4f98-90f3-c64afb33bda5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T00:43:44.000Z" + }, + "end": { + "$date": "2021-04-18T01:22:59.000Z" + }, + "events": [ + { + "uuid": "73e415db-b80b-475d-af67-aa8cac30d7f3", + "start": { + "$date": "2021-04-18T00:43:44.000Z" + }, + "end": { + "$date": "2021-04-18T01:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "144f8504-32a7-4f2a-aac4-3eb345aa9dda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T02:15:56.000Z" + }, + "end": { + "$date": "2021-04-18T02:30:17.000Z" + }, + "events": [ + { + "uuid": "9884f41c-58b0-4964-a3c3-775eaa73bbe7", + "start": { + "$date": "2021-04-18T02:15:56.000Z" + }, + "end": { + "$date": "2021-04-18T02:30:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c1659246-d3cd-456f-815c-6c352b1abc0f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-18T02:27:41.000Z" + }, + "end": { + "$date": "2021-04-18T07:22:03.000Z" + }, + "events": [ + { + "uuid": "f413e5e1-3b38-4933-8de0-a567f07a93c2", + "start": { + "$date": "2021-04-18T02:27:41.000Z" + }, + "end": { + "$date": "2021-04-18T07:22:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "321888a3-f59f-48dd-b6b9-dc584c59f650", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-18T02:28:39.000Z" + }, + "end": { + "$date": "2021-04-18T05:54:33.000Z" + }, + "events": [ + { + "uuid": "2554cff8-ce08-47e1-b218-5847ff0d2ed7", + "start": { + "$date": "2021-04-18T02:28:39.000Z" + }, + "end": { + "$date": "2021-04-18T05:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a652b18-b701-4825-8cbb-d1096c75824d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T03:05:19.000Z" + }, + "end": { + "$date": "2021-04-18T03:05:29.000Z" + }, + "events": [ + { + "uuid": "dffebf35-b41c-4263-ba63-f9c228743c8c", + "start": { + "$date": "2021-04-18T03:05:19.000Z" + }, + "end": { + "$date": "2021-04-18T03:05:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "35e3dc9c-0a18-4755-b7d7-3483a7865b10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T02:41:21.000Z" + }, + "end": { + "$date": "2021-04-18T04:31:44.000Z" + }, + "events": [ + { + "uuid": "960dca8f-764b-4a97-a475-3692f62df6c8", + "start": { + "$date": "2021-04-18T02:41:21.000Z" + }, + "end": { + "$date": "2021-04-18T04:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2b72dd2-b5f3-4d17-a70b-d0759fa9b4af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T03:14:05.000Z" + }, + "end": { + "$date": "2021-04-18T03:31:07.000Z" + }, + "events": [ + { + "uuid": "01b72d37-b1a0-40ed-bc3d-a71bd36ecd18", + "start": { + "$date": "2021-04-18T03:14:05.000Z" + }, + "end": { + "$date": "2021-04-18T03:31:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "4e2712ec-f4c9-468c-869f-e660a0660c08", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-18T03:12:17.000Z" + }, + "end": { + "$date": "2021-04-18T09:13:10.000Z" + }, + "events": [ + { + "uuid": "c0b3a0c4-6e11-4871-88e7-7adfebfe8eeb", + "start": { + "$date": "2021-04-18T03:12:17.000Z" + }, + "end": { + "$date": "2021-04-18T05:20:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f3387626-883d-42e9-b6bd-d7c35ad1caf8", + "start": { + "$date": "2021-04-18T05:20:17.000Z" + }, + "end": { + "$date": "2021-04-18T05:26:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0eabdfb-4772-4e74-9697-c2a2ae0a125f", + "start": { + "$date": "2021-04-18T05:26:17.000Z" + }, + "end": { + "$date": "2021-04-18T09:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2b94fc45-a895-407b-84ed-44319cea200e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-18T03:21:55.000Z" + }, + "end": { + "$date": "2021-04-18T06:43:43.000Z" + }, + "events": [ + { + "uuid": "f4005b67-cae8-41b6-a95f-62fc654bbfcd", + "start": { + "$date": "2021-04-18T03:21:55.000Z" + }, + "end": { + "$date": "2021-04-18T06:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "1480e31c-2ce0-4c45-9420-d5699fb643c7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-18T03:32:41.000Z" + }, + "end": { + "$date": "2021-04-18T06:49:25.000Z" + }, + "events": [ + { + "uuid": "042adf3e-b23f-4f9a-9910-a82f238d387b", + "start": { + "$date": "2021-04-18T03:32:41.000Z" + }, + "end": { + "$date": "2021-04-18T06:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "adba79df-2751-4fbd-b9e3-35aeba4ba5a3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-18T05:55:18.000Z" + }, + "end": { + "$date": "2021-04-18T06:42:56.000Z" + }, + "events": [ + { + "uuid": "5e89382f-56a6-4181-b97b-6ff83faac9c1", + "start": { + "$date": "2021-04-18T05:55:18.000Z" + }, + "end": { + "$date": "2021-04-18T06:42:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "33893bbe-849d-4e53-9fe7-f3c9fe0c73cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-18T06:53:51.000Z" + }, + "end": { + "$date": "2021-04-18T08:17:14.000Z" + }, + "events": [ + { + "uuid": "06933cd2-16b7-4422-87d6-37d6659d62dc", + "start": { + "$date": "2021-04-18T06:53:51.000Z" + }, + "end": { + "$date": "2021-04-18T08:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce52e037-c255-428e-9deb-e8328e8736cb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-18T06:59:22.000Z" + }, + "end": { + "$date": "2021-04-18T10:39:09.000Z" + }, + "events": [ + { + "uuid": "02268f2e-727d-4257-ac32-913ff2ac8daa", + "start": { + "$date": "2021-04-18T06:59:22.000Z" + }, + "end": { + "$date": "2021-04-18T10:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3229d500-b77d-4f75-bbb8-730e0ba62c4c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-18T07:11:22.000Z" + }, + "end": { + "$date": "2021-04-18T07:23:17.000Z" + }, + "events": [ + { + "uuid": "00b50dfa-71ec-49bc-ae1d-20b414fc04a1", + "start": { + "$date": "2021-04-18T07:11:22.000Z" + }, + "end": { + "$date": "2021-04-18T07:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "563dd815-50ec-4c79-bef7-67435c6fd886", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-18T07:44:28.000Z" + }, + "end": { + "$date": "2021-04-18T10:39:26.000Z" + }, + "events": [ + { + "uuid": "cd79c324-fede-4a48-bf33-bc2c1849fb0e", + "start": { + "$date": "2021-04-18T07:44:28.000Z" + }, + "end": { + "$date": "2021-04-18T10:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ace9abe8-8ce4-4a15-96f2-b91be0c9259f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-18T08:42:22.000Z" + }, + "end": { + "$date": "2021-04-18T08:51:42.000Z" + }, + "events": [ + { + "uuid": "8d7ef02c-45e2-45ca-86d7-3efdbdcb65fb", + "start": { + "$date": "2021-04-18T08:42:22.000Z" + }, + "end": { + "$date": "2021-04-18T08:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "98773499-16ea-4b02-b960-3a0c0e13090f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-18T15:57:49.000Z" + }, + "end": { + "$date": "2021-04-18T15:57:52.000Z" + }, + "events": [ + { + "uuid": "d147f538-e276-4fb3-8c08-51837b833908", + "start": { + "$date": "2021-04-18T15:57:49.000Z" + }, + "end": { + "$date": "2021-04-18T15:57:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "02f1b9a9-66ce-4fae-93e7-1a7875d80a7a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T15:28:52.000Z" + }, + "end": { + "$date": "2021-04-18T18:32:34.000Z" + }, + "events": [ + { + "uuid": "f8ee8e15-0c23-4636-97be-4acb932631a9", + "start": { + "$date": "2021-04-18T15:28:52.000Z" + }, + "end": { + "$date": "2021-04-18T18:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ee244a55-dbfc-4123-bee1-3136be18b4b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-18T16:14:36.000Z" + }, + "end": { + "$date": "2021-04-18T16:35:08.000Z" + }, + "events": [ + { + "uuid": "6f8523e0-1b00-44a5-ae97-98b00d8ef484", + "start": { + "$date": "2021-04-18T16:14:36.000Z" + }, + "end": { + "$date": "2021-04-18T16:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "6862c821-cffc-4fba-afbd-db1c597cb1d7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-18T16:15:45.000Z" + }, + "end": { + "$date": "2021-04-18T19:10:28.000Z" + }, + "events": [ + { + "uuid": "c1f452d7-45ca-4969-a760-45201c5b5af7", + "start": { + "$date": "2021-04-18T16:15:45.000Z" + }, + "end": { + "$date": "2021-04-18T19:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5d8d0354-6dcb-43d7-811a-0150c799691b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T16:21:49.000Z" + }, + "end": { + "$date": "2021-04-18T18:28:31.000Z" + }, + "events": [ + { + "uuid": "e9c6aed9-6b77-4b93-b249-5db10ddf2bd1", + "start": { + "$date": "2021-04-18T16:21:49.000Z" + }, + "end": { + "$date": "2021-04-18T18:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1fd72da7-793f-4a38-9a22-333664f4eb08", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-18T18:39:49.000Z" + }, + "end": { + "$date": "2021-04-18T20:18:03.000Z" + }, + "events": [ + { + "uuid": "ae4cac03-fb81-42e1-8183-49646a9a88ff", + "start": { + "$date": "2021-04-18T18:39:49.000Z" + }, + "end": { + "$date": "2021-04-18T20:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "eb679cb4-eb49-4ce6-8edc-229871350ed6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T18:51:06.000Z" + }, + "end": { + "$date": "2021-04-18T19:23:47.000Z" + }, + "events": [ + { + "uuid": "f4e4cb58-1303-4ec0-9379-dc4a6ae04c61", + "start": { + "$date": "2021-04-18T18:51:06.000Z" + }, + "end": { + "$date": "2021-04-18T19:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "673f2786-8e53-41bc-b98d-52e6e041be2d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-18T19:32:28.000Z" + }, + "end": { + "$date": "2021-04-18T20:30:06.000Z" + }, + "events": [ + { + "uuid": "9c352990-7660-4dd3-8b33-5814894fa8f8", + "start": { + "$date": "2021-04-18T19:32:28.000Z" + }, + "end": { + "$date": "2021-04-18T20:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "61966bf3-beb4-41a7-b962-d2e8d4341bcc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T20:21:09.000Z" + }, + "end": { + "$date": "2021-04-18T22:48:06.000Z" + }, + "events": [ + { + "uuid": "9285ba8b-dcfa-4d98-b91f-a1a0603933cc", + "start": { + "$date": "2021-04-18T20:21:09.000Z" + }, + "end": { + "$date": "2021-04-18T22:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3feb7c40-3c69-4790-b788-4490fe720a01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-18T20:24:29.000Z" + }, + "end": { + "$date": "2021-04-18T20:25:59.000Z" + }, + "events": [ + { + "uuid": "86ac6603-9f1e-4599-8a54-eb2beade80e6", + "start": { + "$date": "2021-04-18T20:24:29.000Z" + }, + "end": { + "$date": "2021-04-18T20:25:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "72d71602-3845-4f1a-bcef-9b675c39923a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T21:14:21.000Z" + }, + "end": { + "$date": "2021-04-18T22:11:58.000Z" + }, + "events": [ + { + "uuid": "9ba06690-6da9-4ce3-9046-e9a9fbe4da45", + "start": { + "$date": "2021-04-18T21:14:21.000Z" + }, + "end": { + "$date": "2021-04-18T22:11:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d3418344-6999-4a94-9f22-a55295c4e40c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-18T21:25:46.000Z" + }, + "end": { + "$date": "2021-04-18T22:46:19.000Z" + }, + "events": [ + { + "uuid": "6696ef76-6f31-46e0-bf0b-c3e3ea3cc308", + "start": { + "$date": "2021-04-18T21:25:46.000Z" + }, + "end": { + "$date": "2021-04-18T22:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d727841-1a11-428c-8db3-8f9673d31ce5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T22:12:01.000Z" + }, + "end": { + "$date": "2021-04-18T22:36:12.000Z" + }, + "events": [ + { + "uuid": "03b68ca4-3adc-4310-b660-479f4bb705e8", + "start": { + "$date": "2021-04-18T22:12:01.000Z" + }, + "end": { + "$date": "2021-04-18T22:36:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e54ed928-f340-41c1-ba43-bc1ce895d0bf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-18T22:12:43.000Z" + }, + "end": { + "$date": "2021-04-18T23:21:57.000Z" + }, + "events": [ + { + "uuid": "34df1eb6-edd9-4d6b-8bae-ba58b4de9c2f", + "start": { + "$date": "2021-04-18T22:12:43.000Z" + }, + "end": { + "$date": "2021-04-18T23:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40bff525-8408-4969-bece-8cd7399c62ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T23:26:35.000Z" + }, + "end": { + "$date": "2021-04-18T23:39:46.000Z" + }, + "events": [ + { + "uuid": "9ff3d942-5b74-44fc-9cce-bf112ef1a1c5", + "start": { + "$date": "2021-04-18T23:26:35.000Z" + }, + "end": { + "$date": "2021-04-18T23:39:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "e214f2c7-c58f-44f5-a2cc-16919632b2ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T22:38:46.000Z" + }, + "end": { + "$date": "2021-04-18T22:38:56.000Z" + }, + "events": [ + { + "uuid": "e212b699-5595-4250-b08b-42404064c321", + "start": { + "$date": "2021-04-18T22:38:46.000Z" + }, + "end": { + "$date": "2021-04-18T22:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5276bd33-3f83-424e-90a7-f17e533200bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T22:39:11.000Z" + }, + "end": { + "$date": "2021-04-18T23:21:58.000Z" + }, + "events": [ + { + "uuid": "27214437-dcf4-4b97-85be-6fd6e4cea24e", + "start": { + "$date": "2021-04-18T22:39:11.000Z" + }, + "end": { + "$date": "2021-04-18T23:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "00acd64f-40f0-4d18-a179-95581f6628d8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T22:48:26.000Z" + }, + "end": { + "$date": "2021-04-18T22:55:01.000Z" + }, + "events": [ + { + "uuid": "452a1c1a-12e1-4e7d-97fa-704ddeee2c9a", + "start": { + "$date": "2021-04-18T22:48:26.000Z" + }, + "end": { + "$date": "2021-04-18T22:55:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "32f60daa-c856-4782-8e27-d58d663228ef", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T22:55:56.000Z" + }, + "end": { + "$date": "2021-04-18T23:03:58.000Z" + }, + "events": [ + { + "uuid": "9f63f5d0-81e4-426d-8054-64afc979a315", + "start": { + "$date": "2021-04-18T22:55:56.000Z" + }, + "end": { + "$date": "2021-04-18T23:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b515623c-a555-4674-bc64-bc08829f4722", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T23:04:23.000Z" + }, + "end": { + "$date": "2021-04-18T23:17:58.000Z" + }, + "events": [ + { + "uuid": "8d48ae3a-2b60-45f6-8b1f-3ccca31167d4", + "start": { + "$date": "2021-04-18T23:04:23.000Z" + }, + "end": { + "$date": "2021-04-18T23:17:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d5992b1d-7122-4b79-99af-e8aaba41b486", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T23:19:04.000Z" + }, + "end": { + "$date": "2021-04-18T23:21:34.000Z" + }, + "events": [ + { + "uuid": "39585539-c386-4db4-8ce1-256ac51fe277", + "start": { + "$date": "2021-04-18T23:19:04.000Z" + }, + "end": { + "$date": "2021-04-18T23:21:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88b9ca05-ec75-492f-8da7-f579e535a260", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T23:27:09.000Z" + }, + "end": { + "$date": "2021-04-18T23:39:39.000Z" + }, + "events": [ + { + "uuid": "8dc26ae9-52fb-4fa4-9aa7-dc335a9ab5c7", + "start": { + "$date": "2021-04-18T23:27:09.000Z" + }, + "end": { + "$date": "2021-04-18T23:39:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "684afe22-99ec-42ef-b372-0f6b1a9f9c20", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-18T23:24:53.000Z" + }, + "end": { + "$date": "2021-04-18T23:43:58.000Z" + }, + "events": [ + { + "uuid": "3026f9de-db7b-48f2-b0c7-66b34f2dcdf9", + "start": { + "$date": "2021-04-18T23:24:53.000Z" + }, + "end": { + "$date": "2021-04-18T23:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2689554-d809-49cf-860c-64c3dbaa87ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-18T23:42:51.000Z" + }, + "end": { + "$date": "2021-04-18T23:58:37.000Z" + }, + "events": [ + { + "uuid": "2d8939d2-8802-45f2-b043-45a36f2a1b7f", + "start": { + "$date": "2021-04-18T23:42:51.000Z" + }, + "end": { + "$date": "2021-04-18T23:58:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fe16730-4b32-4d73-9ae5-aa1ed9a89ecf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-18T23:43:20.000Z" + }, + "end": { + "$date": "2021-04-18T23:58:30.000Z" + }, + "events": [ + { + "uuid": "5e27b226-b387-4add-9830-de2d58f38162", + "start": { + "$date": "2021-04-18T23:43:20.000Z" + }, + "end": { + "$date": "2021-04-18T23:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "addcb02b-f8e6-4f68-8467-d0da8d6c0b30", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T00:04:47.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:40.000Z" + }, + "events": [ + { + "uuid": "97f9b2c0-6f80-4f7c-ae49-1b136ad1d64b", + "start": { + "$date": "2021-04-19T00:04:47.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "032f2b90-9045-4329-8960-a395996430b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-19T00:04:42.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:28.000Z" + }, + "events": [ + { + "uuid": "dbf64cca-d3b2-427b-a012-5151bc2786a0", + "start": { + "$date": "2021-04-19T00:04:42.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43ea68ed-454a-4651-bd58-eddf5d6b7a53", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T00:05:14.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:25.000Z" + }, + "events": [ + { + "uuid": "dfc29787-5d5a-47da-a5c3-5a312c0f4641", + "start": { + "$date": "2021-04-19T00:05:14.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "857dfd4a-4b4a-4e0b-8ced-9796788cd268", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-19T00:05:30.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:31.000Z" + }, + "events": [ + { + "uuid": "6261475a-e37b-4735-8873-4ab80024b573", + "start": { + "$date": "2021-04-19T00:05:30.000Z" + }, + "end": { + "$date": "2021-04-19T00:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12e5835c-6651-4f6f-ba3f-14340700acb5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T00:36:08.000Z" + }, + "end": { + "$date": "2021-04-19T00:52:25.000Z" + }, + "events": [ + { + "uuid": "37803ce3-f4eb-4cfb-b00f-2778814891a8", + "start": { + "$date": "2021-04-19T00:36:08.000Z" + }, + "end": { + "$date": "2021-04-19T00:52:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5d066479-766b-4105-a89d-6a018103adb5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T00:32:50.000Z" + }, + "end": { + "$date": "2021-04-19T00:34:25.000Z" + }, + "events": [ + { + "uuid": "5b3a9ba7-9d91-4d32-98e5-e9e8d93eb446", + "start": { + "$date": "2021-04-19T00:32:50.000Z" + }, + "end": { + "$date": "2021-04-19T00:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7477210-5f4a-464e-a674-72310eaf7247", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-19T00:35:59.000Z" + }, + "end": { + "$date": "2021-04-19T00:52:25.000Z" + }, + "events": [ + { + "uuid": "7e819baf-f9ff-4931-9fad-4d31cb7c4fd5", + "start": { + "$date": "2021-04-19T00:35:59.000Z" + }, + "end": { + "$date": "2021-04-19T00:52:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9430cf3a-b8df-40a5-90ac-a75a2be7bce7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-19T00:36:41.000Z" + }, + "end": { + "$date": "2021-04-19T00:52:21.000Z" + }, + "events": [ + { + "uuid": "79a89552-462d-46bc-a5d8-9a6ea188e8ca", + "start": { + "$date": "2021-04-19T00:36:41.000Z" + }, + "end": { + "$date": "2021-04-19T00:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "981ffbc5-b9c7-42bb-92a2-f1eedb8a0d97", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T00:35:00.000Z" + }, + "end": { + "$date": "2021-04-19T00:38:25.000Z" + }, + "events": [ + { + "uuid": "c4508dc7-c873-4615-96cf-c5ff102b2419", + "start": { + "$date": "2021-04-19T00:35:00.000Z" + }, + "end": { + "$date": "2021-04-19T00:38:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "61752e1d-4539-4244-af07-be10189c11b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T00:38:55.000Z" + }, + "end": { + "$date": "2021-04-19T00:48:51.000Z" + }, + "events": [ + { + "uuid": "fb850d5c-dff3-4274-8a0f-53983b204373", + "start": { + "$date": "2021-04-19T00:38:55.000Z" + }, + "end": { + "$date": "2021-04-19T00:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "37038a2b-a5c8-4020-99e5-8d4a5cebbb06", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-19T00:41:49.000Z" + }, + "end": { + "$date": "2021-04-19T00:43:08.000Z" + }, + "events": [ + { + "uuid": "610be389-0f6e-4966-9e0a-92174543f134", + "start": { + "$date": "2021-04-19T00:41:49.000Z" + }, + "end": { + "$date": "2021-04-19T00:43:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a73e7b4e-0d6c-4129-89cf-953fb1a7cbaf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-19T00:43:39.000Z" + }, + "end": { + "$date": "2021-04-19T02:12:54.000Z" + }, + "events": [ + { + "uuid": "ed3a4df4-b850-4a79-84f9-fb92276fa4b2", + "start": { + "$date": "2021-04-19T00:43:39.000Z" + }, + "end": { + "$date": "2021-04-19T02:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c076c63-7c7c-4624-a891-8f49c8041269", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T00:56:15.000Z" + }, + "end": { + "$date": "2021-04-19T01:18:04.000Z" + }, + "events": [ + { + "uuid": "056803d5-15f6-41c3-94a0-791559205e09", + "start": { + "$date": "2021-04-19T00:56:15.000Z" + }, + "end": { + "$date": "2021-04-19T01:18:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4ce65a7a-2f5f-48bf-a22b-bdf7b8712f31", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T00:54:07.000Z" + }, + "end": { + "$date": "2021-04-19T01:24:53.000Z" + }, + "events": [ + { + "uuid": "c24e4fd0-c2cd-4811-98c1-43eec9e62c27", + "start": { + "$date": "2021-04-19T00:54:07.000Z" + }, + "end": { + "$date": "2021-04-19T01:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e946aaa-874a-487a-8aa8-17e11cafbd13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T01:21:21.000Z" + }, + "end": { + "$date": "2021-04-19T01:44:53.000Z" + }, + "events": [ + { + "uuid": "3fc581c1-eeb5-44bb-8e96-c61d6fc1ad9e", + "start": { + "$date": "2021-04-19T01:21:21.000Z" + }, + "end": { + "$date": "2021-04-19T01:44:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22b55149-bad6-4c2c-a1b1-a8f6e95d95aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T01:48:08.000Z" + }, + "end": { + "$date": "2021-04-19T02:10:44.000Z" + }, + "events": [ + { + "uuid": "f4783511-6f25-4a9b-8d24-db780a4cc368", + "start": { + "$date": "2021-04-19T01:48:08.000Z" + }, + "end": { + "$date": "2021-04-19T02:10:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "1da94c9c-aaa7-4e87-a213-40279fbb2d0b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T02:09:56.000Z" + }, + "end": { + "$date": "2021-04-19T02:33:22.000Z" + }, + "events": [ + { + "uuid": "8fba4bcd-ff8a-426a-a947-7b36f0f165b4", + "start": { + "$date": "2021-04-19T02:09:56.000Z" + }, + "end": { + "$date": "2021-04-19T02:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1aff8dc8-abe1-4f42-b120-3ee07f10d8eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T02:14:35.000Z" + }, + "end": { + "$date": "2021-04-19T02:29:06.000Z" + }, + "events": [ + { + "uuid": "f67d9113-8d17-4804-a0f0-78eada9d0428", + "start": { + "$date": "2021-04-19T02:14:35.000Z" + }, + "end": { + "$date": "2021-04-19T02:29:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "62a9aa8a-b1cf-48dc-ae90-2c9aee80f3b5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-19T02:15:24.000Z" + }, + "end": { + "$date": "2021-04-19T02:55:41.000Z" + }, + "events": [ + { + "uuid": "7d9dd1ea-ffcd-42ae-8e85-3230779f46aa", + "start": { + "$date": "2021-04-19T02:15:24.000Z" + }, + "end": { + "$date": "2021-04-19T02:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2fdef7c-11d9-46a0-99b7-33d6f373651b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-19T02:21:34.000Z" + }, + "end": { + "$date": "2021-04-19T02:41:12.000Z" + }, + "events": [ + { + "uuid": "8b7500e9-a503-4599-bbab-d741ce88623a", + "start": { + "$date": "2021-04-19T02:21:34.000Z" + }, + "end": { + "$date": "2021-04-19T02:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3ec91045-1a12-4ccd-916f-92476f060c42", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T02:34:32.000Z" + }, + "end": { + "$date": "2021-04-19T02:36:58.000Z" + }, + "events": [ + { + "uuid": "846111b3-2145-4b17-976b-8c5a2447513c", + "start": { + "$date": "2021-04-19T02:34:32.000Z" + }, + "end": { + "$date": "2021-04-19T02:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "69d3ec91-0eba-4dec-bd21-6de5d0bc6ca7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T03:42:06.000Z" + }, + "end": { + "$date": "2021-04-19T04:23:21.000Z" + }, + "events": [ + { + "uuid": "2df19b7e-6b86-4f6b-81a2-0b295432163c", + "start": { + "$date": "2021-04-19T03:42:06.000Z" + }, + "end": { + "$date": "2021-04-19T04:23:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "85f97e3d-d8f9-4757-95b5-f015dd794937", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-19T03:20:11.000Z" + }, + "end": { + "$date": "2021-04-19T04:59:18.000Z" + }, + "events": [ + { + "uuid": "1a17603f-416f-485e-82de-8242e6a555e2", + "start": { + "$date": "2021-04-19T03:20:11.000Z" + }, + "end": { + "$date": "2021-04-19T04:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "98806841-a1e4-4a20-b4f5-5d638a2d5768", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-19T03:20:23.000Z" + }, + "end": { + "$date": "2021-04-19T04:59:20.000Z" + }, + "events": [ + { + "uuid": "06a38f94-4bd4-4763-849c-32d235649f6f", + "start": { + "$date": "2021-04-19T03:20:23.000Z" + }, + "end": { + "$date": "2021-04-19T04:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "abec5153-bfb5-4dc6-9fa3-5248fa964fe7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-19T04:19:39.000Z" + }, + "end": { + "$date": "2021-04-19T06:49:42.000Z" + }, + "events": [ + { + "uuid": "32dfa039-41df-44f1-9641-a92f2259dd11", + "start": { + "$date": "2021-04-19T04:19:39.000Z" + }, + "end": { + "$date": "2021-04-19T06:49:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "d9b3580b-6fa2-410d-bf13-0059c4fac9fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T04:34:57.000Z" + }, + "end": { + "$date": "2021-04-19T04:46:33.000Z" + }, + "events": [ + { + "uuid": "168284ab-e643-474d-8296-36ab9c92b6ba", + "start": { + "$date": "2021-04-19T04:34:57.000Z" + }, + "end": { + "$date": "2021-04-19T04:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7459ed26-fa6a-4ffc-8197-ce2a58d2fa31", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T05:00:08.000Z" + }, + "end": { + "$date": "2021-04-19T05:04:10.000Z" + }, + "events": [ + { + "uuid": "401f9887-e512-45bd-a4fb-4c06cd351e4c", + "start": { + "$date": "2021-04-19T05:00:08.000Z" + }, + "end": { + "$date": "2021-04-19T05:04:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "412df875-fa6a-4182-ada7-7ba13d4bcc9e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T05:18:27.000Z" + }, + "end": { + "$date": "2021-04-19T05:53:40.000Z" + }, + "events": [ + { + "uuid": "9c238776-bd57-4630-b6c7-b0a59852e597", + "start": { + "$date": "2021-04-19T05:18:27.000Z" + }, + "end": { + "$date": "2021-04-19T05:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "462ce924-7b5c-4aa3-b945-ddfce51d6acf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-19T12:13:04.000Z" + }, + "end": { + "$date": "2021-04-19T12:40:54.000Z" + }, + "events": [ + { + "uuid": "a5cf7cc0-3640-4706-9020-b15f2bdd7818", + "start": { + "$date": "2021-04-19T12:13:04.000Z" + }, + "end": { + "$date": "2021-04-19T12:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2358ca1d-05bd-44a3-8bc6-64d1a54da919", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T13:43:26.000Z" + }, + "end": { + "$date": "2021-04-19T14:49:29.000Z" + }, + "events": [ + { + "uuid": "6a569e85-0a82-4c34-bb4c-5c657a415116", + "start": { + "$date": "2021-04-19T13:43:26.000Z" + }, + "end": { + "$date": "2021-04-19T14:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3251cfed-7f60-4cad-8deb-29d559e4d7df", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-19T14:15:56.000Z" + }, + "end": { + "$date": "2021-04-19T14:45:11.000Z" + }, + "events": [ + { + "uuid": "2e39b093-84a2-493d-83ad-bb5ddf4b0049", + "start": { + "$date": "2021-04-19T14:15:56.000Z" + }, + "end": { + "$date": "2021-04-19T14:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b2727b39-71fd-4924-a06b-dfb965b72773", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-19T15:06:21.000Z" + }, + "end": { + "$date": "2021-04-19T15:28:56.000Z" + }, + "events": [ + { + "uuid": "3ee896d5-e1e1-4b7e-a0c2-979ccd6ffaad", + "start": { + "$date": "2021-04-19T15:06:21.000Z" + }, + "end": { + "$date": "2021-04-19T15:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4211a8bf-25c0-44a5-9256-3d24ee00ef43", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T15:45:02.000Z" + }, + "end": { + "$date": "2021-04-19T16:07:34.000Z" + }, + "events": [ + { + "uuid": "8aae2417-b264-4486-b921-ea463edeaef6", + "start": { + "$date": "2021-04-19T15:45:02.000Z" + }, + "end": { + "$date": "2021-04-19T16:07:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a3d9d1d-da2f-469b-a514-ec295ec3da42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T16:11:19.000Z" + }, + "end": { + "$date": "2021-04-19T16:34:54.000Z" + }, + "events": [ + { + "uuid": "f5528e46-c1d9-4f2d-80b4-a752da0fa011", + "start": { + "$date": "2021-04-19T16:11:19.000Z" + }, + "end": { + "$date": "2021-04-19T16:34:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d7272638-15c1-44dd-bf93-080233e9b714", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-19T16:20:32.000Z" + }, + "end": { + "$date": "2021-04-19T18:43:13.000Z" + }, + "events": [ + { + "uuid": "694cd0bc-8fa4-4af5-bd2d-507a3d4dae47", + "start": { + "$date": "2021-04-19T16:20:32.000Z" + }, + "end": { + "$date": "2021-04-19T18:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb19335d-7fa9-4282-b95d-630586c6b2c7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T17:27:29.000Z" + }, + "end": { + "$date": "2021-04-19T18:01:29.000Z" + }, + "events": [ + { + "uuid": "fc0e61a0-6a1f-4cdd-9892-cf303694a040", + "start": { + "$date": "2021-04-19T17:27:29.000Z" + }, + "end": { + "$date": "2021-04-19T18:01:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "176a6a24-dae7-45fd-97c8-793653d3910f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T17:23:39.000Z" + }, + "end": { + "$date": "2021-04-19T19:58:01.000Z" + }, + "events": [ + { + "uuid": "be9c1a92-b90f-45f6-97f9-a1f801e984c8", + "start": { + "$date": "2021-04-19T17:23:39.000Z" + }, + "end": { + "$date": "2021-04-19T19:58:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fe14b26-556c-47df-a39c-06d61044aa49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T18:07:55.000Z" + }, + "end": { + "$date": "2021-04-19T18:22:05.000Z" + }, + "events": [ + { + "uuid": "6cf68d2b-01f4-49b6-ad20-2f8e0a5c1e00", + "start": { + "$date": "2021-04-19T18:07:55.000Z" + }, + "end": { + "$date": "2021-04-19T18:22:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfd3d792-6ded-4bae-970e-bbc77907baa4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T18:25:56.000Z" + }, + "end": { + "$date": "2021-04-19T18:58:03.000Z" + }, + "events": [ + { + "uuid": "16ff22ea-48c4-4807-8ba2-0bb6fe091e57", + "start": { + "$date": "2021-04-19T18:25:56.000Z" + }, + "end": { + "$date": "2021-04-19T18:58:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b5e74c35-415d-43cd-8a4f-fb465abdb3f4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-19T19:16:02.000Z" + }, + "end": { + "$date": "2021-04-19T20:04:04.000Z" + }, + "events": [ + { + "uuid": "03f1b38b-61fc-4903-90c8-28c2cae7c45b", + "start": { + "$date": "2021-04-19T19:16:02.000Z" + }, + "end": { + "$date": "2021-04-19T20:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa6ca615-1e61-4782-b567-1b1b04e3dbfc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T19:55:44.000Z" + }, + "end": { + "$date": "2021-04-19T20:28:41.000Z" + }, + "events": [ + { + "uuid": "e6b0000f-d3bc-4ca7-a0ce-4ce218894051", + "start": { + "$date": "2021-04-19T19:55:44.000Z" + }, + "end": { + "$date": "2021-04-19T20:28:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "cf39b0e4-0841-4d3e-a285-8be37c07c55b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-19T20:06:09.000Z" + }, + "end": { + "$date": "2021-04-19T20:10:39.000Z" + }, + "events": [ + { + "uuid": "9e041ef4-93b5-4540-87d9-ed1d302567ac", + "start": { + "$date": "2021-04-19T20:06:09.000Z" + }, + "end": { + "$date": "2021-04-19T20:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c13ef5a8-245a-4c6c-84d1-422991abfd25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T20:36:23.000Z" + }, + "end": { + "$date": "2021-04-19T21:12:42.000Z" + }, + "events": [ + { + "uuid": "b3bba473-149f-460d-b329-3411c9e9a4a9", + "start": { + "$date": "2021-04-19T20:36:23.000Z" + }, + "end": { + "$date": "2021-04-19T21:12:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b548af7a-d700-43dc-852b-7a12059cecbe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-19T20:47:33.000Z" + }, + "end": { + "$date": "2021-04-19T21:51:10.000Z" + }, + "events": [ + { + "uuid": "9e35b2ff-ebc4-4312-ad7b-f82514ee7241", + "start": { + "$date": "2021-04-19T20:47:33.000Z" + }, + "end": { + "$date": "2021-04-19T21:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "a5349a8f-0f67-4b90-959a-81e290f754de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T20:48:18.000Z" + }, + "end": { + "$date": "2021-04-19T21:01:39.000Z" + }, + "events": [ + { + "uuid": "19e32eba-6398-4dff-a066-7ccf1b115cc5", + "start": { + "$date": "2021-04-19T20:48:18.000Z" + }, + "end": { + "$date": "2021-04-19T21:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "77147966-9e3a-4e61-b6ad-aa146886e179", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-19T21:06:39.000Z" + }, + "end": { + "$date": "2021-04-19T23:40:45.000Z" + }, + "events": [ + { + "uuid": "66bcb795-d4a3-4c89-bc7b-71685ba5c9ce", + "start": { + "$date": "2021-04-19T21:06:39.000Z" + }, + "end": { + "$date": "2021-04-19T23:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd183681-ec1c-43b5-b7fd-f33fe25180d6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-19T21:28:50.000Z" + }, + "end": { + "$date": "2021-04-19T21:50:02.000Z" + }, + "events": [ + { + "uuid": "aaf530d2-7507-4271-a842-66cb0f5c70d7", + "start": { + "$date": "2021-04-19T21:28:50.000Z" + }, + "end": { + "$date": "2021-04-19T21:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2ec270ca-64c7-4ae1-9c99-1e5c5c6664b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T21:18:29.000Z" + }, + "end": { + "$date": "2021-04-19T21:19:29.000Z" + }, + "events": [ + { + "uuid": "70207247-aae5-4359-bc5f-00cdc79d442c", + "start": { + "$date": "2021-04-19T21:18:29.000Z" + }, + "end": { + "$date": "2021-04-19T21:19:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9098ef5-be65-4350-aec1-8236a7b39c98", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T21:28:52.000Z" + }, + "end": { + "$date": "2021-04-19T21:50:07.000Z" + }, + "events": [ + { + "uuid": "44ab6370-6465-4bbd-864d-db75b9448f80", + "start": { + "$date": "2021-04-19T21:28:52.000Z" + }, + "end": { + "$date": "2021-04-19T21:50:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "84cc5572-92c9-475d-b018-81d42d351d91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T21:26:04.000Z" + }, + "end": { + "$date": "2021-04-19T22:14:35.000Z" + }, + "events": [ + { + "uuid": "f5d31879-b19a-41e2-a1c1-a182ba80c41e", + "start": { + "$date": "2021-04-19T21:26:04.000Z" + }, + "end": { + "$date": "2021-04-19T22:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "16c0e96d-2ef7-407b-9eb1-b10f328e36c1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-19T21:31:00.000Z" + }, + "end": { + "$date": "2021-04-20T00:14:55.000Z" + }, + "events": [ + { + "uuid": "2d73e8b2-fafd-4cb1-94bf-3f4ddd6f1c59", + "start": { + "$date": "2021-04-19T21:31:00.000Z" + }, + "end": { + "$date": "2021-04-20T00:14:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e5a6f6d-eca3-489c-950a-658c57f6b376", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-19T21:55:52.000Z" + }, + "end": { + "$date": "2021-04-19T22:19:58.000Z" + }, + "events": [ + { + "uuid": "66f31137-0451-461d-b2b8-c1793cfc4471", + "start": { + "$date": "2021-04-19T21:55:52.000Z" + }, + "end": { + "$date": "2021-04-19T22:19:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50a282a5-b8d1-4740-abed-67d8da854ffd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T21:55:48.000Z" + }, + "end": { + "$date": "2021-04-19T22:20:05.000Z" + }, + "events": [ + { + "uuid": "29e05f5d-5afe-4d90-aad7-37cf54900f8b", + "start": { + "$date": "2021-04-19T21:55:48.000Z" + }, + "end": { + "$date": "2021-04-19T22:20:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e5007e7d-48b9-43c3-8e5b-0f674dec979a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-19T22:19:13.000Z" + }, + "end": { + "$date": "2021-04-19T23:40:36.000Z" + }, + "events": [ + { + "uuid": "95dc536b-84ad-4278-88bb-6208fc731422", + "start": { + "$date": "2021-04-19T22:19:13.000Z" + }, + "end": { + "$date": "2021-04-19T23:40:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13528b19-18d0-49ca-9cc3-8464d59ca2cf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-19T22:19:58.000Z" + }, + "end": { + "$date": "2021-04-19T22:21:11.000Z" + }, + "events": [ + { + "uuid": "7aa7622a-3866-41aa-95a6-9ef215d15b75", + "start": { + "$date": "2021-04-19T22:19:58.000Z" + }, + "end": { + "$date": "2021-04-19T22:21:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d19a09dc-3f2a-41de-9300-a4fc2599b9c0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T22:26:36.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:59.000Z" + }, + "events": [ + { + "uuid": "34826d1c-f551-4f97-95c1-13551d38dbc2", + "start": { + "$date": "2021-04-19T22:26:36.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86d46a94-abfe-485d-8f28-bb22be723fc1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-19T22:28:45.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:50.000Z" + }, + "events": [ + { + "uuid": "f628377e-ac20-49f4-90e8-07d017892183", + "start": { + "$date": "2021-04-19T22:28:45.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1b2f13a-87c0-4d01-8c8b-a380835a345e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-19T22:28:19.000Z" + }, + "end": { + "$date": "2021-04-19T22:53:02.000Z" + }, + "events": [ + { + "uuid": "6c8cd06f-bd7f-4d47-b1b6-c59c9870da85", + "start": { + "$date": "2021-04-19T22:28:19.000Z" + }, + "end": { + "$date": "2021-04-19T22:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2631da7d-f94d-4108-8e7a-5d3c9c8f1f24", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-19T22:26:38.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:59.000Z" + }, + "events": [ + { + "uuid": "075bd638-c48b-4542-9270-1c16b3661e0c", + "start": { + "$date": "2021-04-19T22:26:38.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "572a0fce-70d6-4907-a56e-d55877309021", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T22:27:41.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:51.000Z" + }, + "events": [ + { + "uuid": "0539ab30-161d-433c-8279-18490442a4fa", + "start": { + "$date": "2021-04-19T22:27:41.000Z" + }, + "end": { + "$date": "2021-04-19T22:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c4a7d36-00df-42f3-9628-92dc225d123b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T22:56:07.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:50.000Z" + }, + "events": [ + { + "uuid": "00e73faf-1e03-48f7-bae3-ff0c762748bf", + "start": { + "$date": "2021-04-19T22:56:07.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89c65a0f-f917-4882-80ac-817cc8b28b13", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-19T22:56:06.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:46.000Z" + }, + "events": [ + { + "uuid": "eec1de64-8a75-48cb-90ab-248703b3a3f1", + "start": { + "$date": "2021-04-19T22:56:06.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8d9ac86-4915-4311-a28a-c3aeb01b4cca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T22:56:26.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:42.000Z" + }, + "events": [ + { + "uuid": "5cf2a11a-5e02-44ef-9118-7190c1ca16df", + "start": { + "$date": "2021-04-19T22:56:26.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaae3484-4f81-4c1d-b83b-614e472a61a7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-19T22:56:05.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:58.000Z" + }, + "events": [ + { + "uuid": "3072bea9-e9b5-45fb-8fc0-2c05b258db82", + "start": { + "$date": "2021-04-19T22:56:05.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82a2abc6-e133-4b2d-952d-274aa64f10a4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-19T22:56:16.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:48.000Z" + }, + "events": [ + { + "uuid": "c9b99f6d-e724-4402-8c43-ba9a66c79b53", + "start": { + "$date": "2021-04-19T22:56:16.000Z" + }, + "end": { + "$date": "2021-04-19T23:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c45182e5-aeb0-4062-a806-699faa90f41e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-19T23:15:10.000Z" + }, + "end": { + "$date": "2021-04-20T00:09:31.000Z" + }, + "events": [ + { + "uuid": "342bc574-c06e-4d69-a817-5d41e6a09b0c", + "start": { + "$date": "2021-04-19T23:15:10.000Z" + }, + "end": { + "$date": "2021-04-20T00:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc45cf85-746c-495d-8c71-c070cc1d065d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-19T23:30:13.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:22.000Z" + }, + "events": [ + { + "uuid": "7d49bc60-28e4-439c-82e7-39881d738046", + "start": { + "$date": "2021-04-19T23:30:13.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51bf6b78-7772-4bc3-b042-d3ae2e60ed49", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-19T23:30:07.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:12.000Z" + }, + "events": [ + { + "uuid": "85dc21d1-4d5c-41b3-beb3-ee6447be848b", + "start": { + "$date": "2021-04-19T23:30:07.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f8ba8bc-4b95-43b1-ae43-7f2228ab8771", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-19T23:30:12.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:12.000Z" + }, + "events": [ + { + "uuid": "2b81a4ce-5b67-4b04-abf9-36638c90f181", + "start": { + "$date": "2021-04-19T23:30:12.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ae89606-bef5-4768-9b0c-f5da1b3cbe36", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-19T23:30:11.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:17.000Z" + }, + "events": [ + { + "uuid": "82bd58e5-b928-451d-acee-2e5235c25e13", + "start": { + "$date": "2021-04-19T23:30:11.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41bafe8c-126b-46c5-9cec-5bce029b0614", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-19T23:30:43.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:16.000Z" + }, + "events": [ + { + "uuid": "07e1af75-e415-4aa6-ac08-70f839ac7d4a", + "start": { + "$date": "2021-04-19T23:30:43.000Z" + }, + "end": { + "$date": "2021-04-19T23:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "3219fff2-fd87-4ac9-9ce2-a6da9319c9d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-19T23:50:12.000Z" + }, + "end": { + "$date": "2021-04-20T00:04:09.000Z" + }, + "events": [ + { + "uuid": "87776907-baef-4888-8564-7a13efb33841", + "start": { + "$date": "2021-04-19T23:50:12.000Z" + }, + "end": { + "$date": "2021-04-20T00:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "f7a1afc4-8574-4d82-8dee-23416cdd0fd3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-20T03:05:27.000Z" + }, + "end": { + "$date": "2021-04-20T03:47:54.000Z" + }, + "events": [ + { + "uuid": "4729f8a3-e192-48eb-a88f-023311b9abf0", + "start": { + "$date": "2021-04-20T03:05:27.000Z" + }, + "end": { + "$date": "2021-04-20T05:57:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99ae5899-ace7-42fa-8aff-02fde5130348", + "start": { + "$date": "2021-04-20T05:57:27.000Z" + }, + "end": { + "$date": "2021-04-20T06:02:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "059bc09a-6bc9-461a-8de6-e05a93f4fca4", + "start": { + "$date": "2021-04-20T06:02:27.000Z" + }, + "end": { + "$date": "2021-04-20T03:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "ea9c6329-9933-4f50-8057-7d3b0a7bce96", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-20T00:15:54.000Z" + }, + "end": { + "$date": "2021-04-20T01:28:37.000Z" + }, + "events": [ + { + "uuid": "c2958907-27a1-436d-954a-895672a25caf", + "start": { + "$date": "2021-04-20T00:15:54.000Z" + }, + "end": { + "$date": "2021-04-20T01:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c58c3373-47cd-44db-bb2f-a214cfa0f383", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-20T00:15:26.000Z" + }, + "end": { + "$date": "2021-04-20T00:37:06.000Z" + }, + "events": [ + { + "uuid": "a80f0dda-32d5-4e4b-8b80-436f8017ddb8", + "start": { + "$date": "2021-04-20T00:15:26.000Z" + }, + "end": { + "$date": "2021-04-20T00:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "ac5eb0a8-4e79-4126-bb55-b8da76c488b1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-20T00:55:17.000Z" + }, + "end": { + "$date": "2021-04-20T05:09:46.000Z" + }, + "events": [ + { + "uuid": "b81f69ad-d012-4f82-bbae-f294821747fa", + "start": { + "$date": "2021-04-20T00:55:17.000Z" + }, + "end": { + "$date": "2021-04-20T02:47:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d37ac2f-5ea6-44e8-8335-d6a2ac84d095", + "start": { + "$date": "2021-04-20T02:47:17.000Z" + }, + "end": { + "$date": "2021-04-20T02:52:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "249c2274-e75b-4724-951f-d15b0357db79", + "start": { + "$date": "2021-04-20T02:52:17.000Z" + }, + "end": { + "$date": "2021-04-20T03:02:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7bf45e9-f1be-400c-8a37-502bb3513db4", + "start": { + "$date": "2021-04-20T03:02:17.000Z" + }, + "end": { + "$date": "2021-04-20T03:22:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "797f3724-7b7c-4e8f-97ec-62d25d1012fd", + "start": { + "$date": "2021-04-20T03:22:17.000Z" + }, + "end": { + "$date": "2021-04-20T05:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9e7489df-ef23-47aa-a304-c6819158c15f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T01:25:31.000Z" + }, + "end": { + "$date": "2021-04-20T04:18:06.000Z" + }, + "events": [ + { + "uuid": "c59b5426-b168-4a3c-af2e-30dfa5015590", + "start": { + "$date": "2021-04-20T01:25:31.000Z" + }, + "end": { + "$date": "2021-04-20T04:18:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1cad509e-8f9a-4629-aea4-7ecaa3faadbb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-20T03:11:03.000Z" + }, + "end": { + "$date": "2021-04-20T03:48:14.000Z" + }, + "events": [ + { + "uuid": "8f25bfa8-6e1d-4ebd-b470-96d2d7c364c8", + "start": { + "$date": "2021-04-20T03:11:03.000Z" + }, + "end": { + "$date": "2021-04-20T04:28:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "002d6c67-3d11-4cbb-878e-3d27f3164412", + "start": { + "$date": "2021-04-20T04:28:03.000Z" + }, + "end": { + "$date": "2021-04-20T04:31:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8deff97c-6a1b-4a83-8698-80d936fb2b32", + "start": { + "$date": "2021-04-20T04:31:03.000Z" + }, + "end": { + "$date": "2021-04-20T04:46:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "307b1f4f-df1c-411d-b0cd-3a4ebe4ae592", + "start": { + "$date": "2021-04-20T04:46:03.000Z" + }, + "end": { + "$date": "2021-04-20T04:52:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7fcc112-6050-4f14-bed7-d48be326788f", + "start": { + "$date": "2021-04-20T04:52:03.000Z" + }, + "end": { + "$date": "2021-04-20T03:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8e5bb24c-da5c-47bb-a641-64e2970bc11a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-20T02:11:53.000Z" + }, + "end": { + "$date": "2021-04-20T04:01:21.000Z" + }, + "events": [ + { + "uuid": "09cd6284-ca29-44de-9d69-3472c76a1296", + "start": { + "$date": "2021-04-20T02:11:53.000Z" + }, + "end": { + "$date": "2021-04-20T04:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c0f4c5c-3c3d-4ab0-b8d0-a6b869b2b552", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-20T03:14:51.000Z" + }, + "end": { + "$date": "2021-04-20T03:31:31.000Z" + }, + "events": [ + { + "uuid": "fe9e0fcc-3583-41c6-b681-77ef20ff8c81", + "start": { + "$date": "2021-04-20T03:14:51.000Z" + }, + "end": { + "$date": "2021-04-20T03:31:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d6458d90-3c92-473e-a5d1-908516f8291f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-20T03:14:46.000Z" + }, + "end": { + "$date": "2021-04-20T06:08:07.000Z" + }, + "events": [ + { + "uuid": "2271b621-1424-4e6c-86f4-5bb69feab871", + "start": { + "$date": "2021-04-20T03:14:46.000Z" + }, + "end": { + "$date": "2021-04-20T06:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "d0ee5e65-1ed4-4042-bfbe-836ee7b3aaa0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-20T03:16:04.000Z" + }, + "end": { + "$date": "2021-04-20T03:17:20.000Z" + }, + "events": [ + { + "uuid": "75dda870-d8fa-46f0-a5fa-f0b55792dd2a", + "start": { + "$date": "2021-04-20T03:16:04.000Z" + }, + "end": { + "$date": "2021-04-20T03:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9480c747-7b88-41c8-831b-f9c4118dfcf2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-20T03:18:48.000Z" + }, + "end": { + "$date": "2021-04-20T06:08:12.000Z" + }, + "events": [ + { + "uuid": "eb58e5b5-e941-4d4e-bf39-b0f8c6ca04c7", + "start": { + "$date": "2021-04-20T03:18:48.000Z" + }, + "end": { + "$date": "2021-04-20T06:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f003c606-5821-4fb3-9ba3-7e7ba3bf6060", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-20T04:03:02.000Z" + }, + "end": { + "$date": "2021-04-20T05:38:26.000Z" + }, + "events": [ + { + "uuid": "d8b5759c-fe41-44b3-9e13-7c69800ca43e", + "start": { + "$date": "2021-04-20T04:03:02.000Z" + }, + "end": { + "$date": "2021-04-20T05:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "61b01565-3a34-4068-aef7-8fc25e066fea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-20T04:35:20.000Z" + }, + "end": { + "$date": "2021-04-20T04:48:15.000Z" + }, + "events": [ + { + "uuid": "d92552f1-6da9-4e3c-9199-582594751809", + "start": { + "$date": "2021-04-20T04:35:20.000Z" + }, + "end": { + "$date": "2021-04-20T04:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "ff636011-4a03-4925-a3b7-004e75f5f761", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-20T04:43:24.000Z" + }, + "end": { + "$date": "2021-04-20T04:50:04.000Z" + }, + "events": [ + { + "uuid": "6f55e577-dabf-4874-9e92-c7cd3156d34c", + "start": { + "$date": "2021-04-20T04:43:24.000Z" + }, + "end": { + "$date": "2021-04-20T04:50:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "7d5b4768-7309-4879-8a65-80e24e5cdaad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-20T05:20:22.000Z" + }, + "end": { + "$date": "2021-04-20T05:45:34.000Z" + }, + "events": [ + { + "uuid": "37b8ebd6-1fc9-458c-b30c-d33fdecb3fdc", + "start": { + "$date": "2021-04-20T05:20:22.000Z" + }, + "end": { + "$date": "2021-04-20T05:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "987c82cd-bc76-4c44-8b41-00d077610466", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-20T05:49:48.000Z" + }, + "end": { + "$date": "2021-04-20T06:15:48.000Z" + }, + "events": [ + { + "uuid": "c389df36-1676-4416-a402-4d172436d489", + "start": { + "$date": "2021-04-20T05:49:48.000Z" + }, + "end": { + "$date": "2021-04-20T06:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c987c798-2ef2-4d19-bc22-26a43d943555", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-20T06:07:27.000Z" + }, + "end": { + "$date": "2021-04-20T06:10:22.000Z" + }, + "events": [ + { + "uuid": "ee8bbe70-7536-44db-99e3-ef7f4d70c07a", + "start": { + "$date": "2021-04-20T06:07:27.000Z" + }, + "end": { + "$date": "2021-04-20T06:10:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f7b094ec-20ae-4d6b-bc65-7c3d876ada7e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-20T06:16:34.000Z" + }, + "end": { + "$date": "2021-04-20T06:34:34.000Z" + }, + "events": [ + { + "uuid": "d77ba4a0-f4f9-4ab0-a1ca-31de10b421ef", + "start": { + "$date": "2021-04-20T06:16:34.000Z" + }, + "end": { + "$date": "2021-04-20T06:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c3e3fe5b-8894-492b-b9bf-9183e0ffcba7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-20T14:25:30.000Z" + }, + "end": { + "$date": "2021-04-20T14:30:43.000Z" + }, + "events": [ + { + "uuid": "7a428d99-a8f9-48c1-84ef-0bda7bbc51ae", + "start": { + "$date": "2021-04-20T14:25:30.000Z" + }, + "end": { + "$date": "2021-04-20T14:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2a4df815-4178-483b-91e7-320c2784489e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-20T15:30:51.000Z" + }, + "end": { + "$date": "2021-04-20T15:36:04.000Z" + }, + "events": [ + { + "uuid": "0bfb7544-a771-45b4-8e98-ffa927be5f48", + "start": { + "$date": "2021-04-20T15:30:51.000Z" + }, + "end": { + "$date": "2021-04-20T15:36:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1db8864a-30db-4967-ba06-ee3a12e0ad83", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-20T16:29:16.000Z" + }, + "end": { + "$date": "2021-04-20T17:03:36.000Z" + }, + "events": [ + { + "uuid": "fab7dce1-098d-4b2f-895c-b407d8d55372", + "start": { + "$date": "2021-04-20T16:29:16.000Z" + }, + "end": { + "$date": "2021-04-20T17:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9cddd24-ca23-4278-8690-57eeaaed49b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-20T17:22:59.000Z" + }, + "end": { + "$date": "2021-04-20T17:58:48.000Z" + }, + "events": [ + { + "uuid": "a257fa84-3f4d-44c3-b5cf-6c8b14de6162", + "start": { + "$date": "2021-04-20T17:22:59.000Z" + }, + "end": { + "$date": "2021-04-20T17:58:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ce7d1563-1e50-4871-b0c4-8ad09242d3ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T18:43:57.000Z" + }, + "end": { + "$date": "2021-04-20T18:46:02.000Z" + }, + "events": [ + { + "uuid": "38a11dbe-d4ea-4161-8d4c-2fce307a2efa", + "start": { + "$date": "2021-04-20T18:43:57.000Z" + }, + "end": { + "$date": "2021-04-20T18:46:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ba9610d9-b3cf-4a66-b2e9-e06054ac740a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T18:46:12.000Z" + }, + "end": { + "$date": "2021-04-20T18:58:47.000Z" + }, + "events": [ + { + "uuid": "b9bd9f35-1c5f-4a72-883f-bcc876ec460e", + "start": { + "$date": "2021-04-20T18:46:12.000Z" + }, + "end": { + "$date": "2021-04-20T18:58:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "75b00033-0f33-49d3-bab2-f71e55948497", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T19:14:53.000Z" + }, + "end": { + "$date": "2021-04-20T19:44:58.000Z" + }, + "events": [ + { + "uuid": "93790b4d-2c36-47c8-ab7d-5e792edfa854", + "start": { + "$date": "2021-04-20T19:14:53.000Z" + }, + "end": { + "$date": "2021-04-20T19:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5166d32f-dc87-4abe-a203-4c9833dc80ba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-20T19:24:06.000Z" + }, + "end": { + "$date": "2021-04-20T20:28:33.000Z" + }, + "events": [ + { + "uuid": "02aac14e-3f26-4f56-9f15-d00f44e3ea7d", + "start": { + "$date": "2021-04-20T19:24:06.000Z" + }, + "end": { + "$date": "2021-04-20T19:56:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29d6e187-a555-43b9-890e-84ea97606dcb", + "start": { + "$date": "2021-04-20T19:56:06.000Z" + }, + "end": { + "$date": "2021-04-20T20:07:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef3a69d0-59b8-4776-b65e-325f1b80e273", + "start": { + "$date": "2021-04-20T20:07:06.000Z" + }, + "end": { + "$date": "2021-04-20T20:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "785e52f5-cccc-4484-b0d7-19ea71fb2d62", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-20T19:59:41.000Z" + }, + "end": { + "$date": "2021-04-20T20:43:42.000Z" + }, + "events": [ + { + "uuid": "eb24fc3e-b4ff-4feb-8c41-259c6149dc50", + "start": { + "$date": "2021-04-20T19:59:41.000Z" + }, + "end": { + "$date": "2021-04-20T20:43:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "6cd37e63-e0d4-43ef-915b-b6c888c1a2cd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-20T20:10:45.000Z" + }, + "end": { + "$date": "2021-04-21T06:38:48.000Z" + }, + "events": [ + { + "uuid": "9e92bde0-f41d-4bab-a0c3-4b1c31837a78", + "start": { + "$date": "2021-04-20T20:10:45.000Z" + }, + "end": { + "$date": "2021-04-20T23:45:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a087c04-f29f-4ee8-acdc-e4756893c315", + "start": { + "$date": "2021-04-20T23:45:45.000Z" + }, + "end": { + "$date": "2021-04-20T23:49:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c0559dd-9b59-4778-924e-9cd35fbda28d", + "start": { + "$date": "2021-04-20T23:49:45.000Z" + }, + "end": { + "$date": "2021-04-21T00:38:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bce41aad-ba18-4318-b667-13509a5e3ea7", + "start": { + "$date": "2021-04-21T00:38:45.000Z" + }, + "end": { + "$date": "2021-04-21T00:41:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5d7bce36-5974-4a6e-aa68-c5d084968beb", + "start": { + "$date": "2021-04-21T00:41:45.000Z" + }, + "end": { + "$date": "2021-04-21T01:23:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0d5025d-dbd6-43d1-acf8-baca5af37d02", + "start": { + "$date": "2021-04-21T01:23:45.000Z" + }, + "end": { + "$date": "2021-04-21T03:44:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96612701-e479-4c26-a434-7021b3bc6c15", + "start": { + "$date": "2021-04-21T03:44:45.000Z" + }, + "end": { + "$date": "2021-04-21T04:59:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "07d17955-d15b-4a40-b4de-1e2e8a726676", + "start": { + "$date": "2021-04-21T04:59:45.000Z" + }, + "end": { + "$date": "2021-04-21T05:00:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3c796bd4-1e91-4be0-87ec-544421bb99be", + "start": { + "$date": "2021-04-21T05:00:45.000Z" + }, + "end": { + "$date": "2021-04-21T06:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9d9709a9-196d-4a03-a7d6-1292d1884c3c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T20:11:15.000Z" + }, + "end": { + "$date": "2021-04-20T20:49:02.000Z" + }, + "events": [ + { + "uuid": "c330f744-22c9-43fb-ac46-68c8fc53d206", + "start": { + "$date": "2021-04-20T20:11:15.000Z" + }, + "end": { + "$date": "2021-04-20T20:49:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "be40fe12-98c9-4e36-9b30-80f0d229a3d2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-20T21:30:00.000Z" + }, + "end": { + "$date": "2021-04-20T23:24:57.000Z" + }, + "events": [ + { + "uuid": "4b1bc98f-3c8f-443d-afc6-3baa10f407ff", + "start": { + "$date": "2021-04-20T21:30:00.000Z" + }, + "end": { + "$date": "2021-04-20T23:24:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96c66081-1bab-489b-8a83-5b20a6b3fc58", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T21:55:41.000Z" + }, + "end": { + "$date": "2021-04-20T23:07:18.000Z" + }, + "events": [ + { + "uuid": "fa3c49b2-1196-4754-acf3-d9fea8450e65", + "start": { + "$date": "2021-04-20T21:55:41.000Z" + }, + "end": { + "$date": "2021-04-20T23:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0979be63-1fd4-430f-b7f9-9e23c667fb5f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-20T22:04:50.000Z" + }, + "end": { + "$date": "2021-04-20T22:51:28.000Z" + }, + "events": [ + { + "uuid": "eacf2c17-73cf-4e94-9681-d0f9eb2db8d8", + "start": { + "$date": "2021-04-20T22:04:50.000Z" + }, + "end": { + "$date": "2021-04-20T22:51:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43bd2412-50e3-45b5-9b7b-d861afeefb68", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-20T22:20:41.000Z" + }, + "end": { + "$date": "2021-04-20T22:57:49.000Z" + }, + "events": [ + { + "uuid": "bbfbe8f8-8e5a-48b6-b52d-a837ee141e1b", + "start": { + "$date": "2021-04-20T22:20:41.000Z" + }, + "end": { + "$date": "2021-04-20T22:57:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25d55168-003b-4b01-8190-054f8d59b06f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-20T22:31:18.000Z" + }, + "end": { + "$date": "2021-04-20T22:37:50.000Z" + }, + "events": [ + { + "uuid": "f53113a8-afcc-4ef1-926f-de4e6edb930d", + "start": { + "$date": "2021-04-20T22:31:18.000Z" + }, + "end": { + "$date": "2021-04-20T22:37:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6c9f6c44-d320-41fc-a4e2-7f874afa94ac", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-20T22:38:54.000Z" + }, + "end": { + "$date": "2021-04-20T23:35:54.000Z" + }, + "events": [ + { + "uuid": "83e76baf-b83d-4fdb-8750-26d4deb99459", + "start": { + "$date": "2021-04-20T22:38:54.000Z" + }, + "end": { + "$date": "2021-04-20T23:35:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7b23079d-af41-437c-ace2-c5614f7f47df", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-20T22:51:01.000Z" + }, + "end": { + "$date": "2021-04-20T23:10:09.000Z" + }, + "events": [ + { + "uuid": "87cdfca3-4f3e-4aef-9d5d-608a77de34eb", + "start": { + "$date": "2021-04-20T22:51:01.000Z" + }, + "end": { + "$date": "2021-04-20T23:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cafc1a4f-875a-43fa-ab3f-3be9071311e2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-20T23:25:35.000Z" + }, + "end": { + "$date": "2021-04-20T23:49:39.000Z" + }, + "events": [ + { + "uuid": "7bb49266-7d07-4498-b703-60675fa96b65", + "start": { + "$date": "2021-04-20T23:25:35.000Z" + }, + "end": { + "$date": "2021-04-20T23:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "251238e3-a9d9-457d-a6c8-1d26c594766a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-20T23:45:14.000Z" + }, + "end": { + "$date": "2021-04-21T00:30:30.000Z" + }, + "events": [ + { + "uuid": "ae29f04c-24ed-4e9b-84de-37334a921467", + "start": { + "$date": "2021-04-20T23:45:14.000Z" + }, + "end": { + "$date": "2021-04-21T00:30:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0f1d227f-2cf5-41db-81fe-6c6df5279a8d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-20T23:25:35.000Z" + }, + "end": { + "$date": "2021-04-21T00:01:50.000Z" + }, + "events": [ + { + "uuid": "d7906551-16ce-4ff6-a00b-ffdeb23b4d72", + "start": { + "$date": "2021-04-20T23:25:35.000Z" + }, + "end": { + "$date": "2021-04-21T00:01:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "58485b05-4d83-4d63-a2ba-7b66ad0fae26", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T00:31:15.000Z" + }, + "end": { + "$date": "2021-04-21T01:30:30.000Z" + }, + "events": [ + { + "uuid": "a73c3954-6799-4972-bf92-f36cfa822855", + "start": { + "$date": "2021-04-21T00:31:15.000Z" + }, + "end": { + "$date": "2021-04-21T01:30:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b8d57fd4-3c9f-40f1-b782-1077b201c6ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-21T00:50:28.000Z" + }, + "end": { + "$date": "2021-04-21T03:02:08.000Z" + }, + "events": [ + { + "uuid": "34012fc0-c320-4ed2-b509-594d3a2e40eb", + "start": { + "$date": "2021-04-21T00:50:28.000Z" + }, + "end": { + "$date": "2021-04-21T03:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c3691b7-3ca0-4a6b-823f-1243364a2b87", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-21T00:51:08.000Z" + }, + "end": { + "$date": "2021-04-21T02:07:48.000Z" + }, + "events": [ + { + "uuid": "2fe516d3-a63c-47ad-bd06-a8b18b7155b1", + "start": { + "$date": "2021-04-21T00:51:08.000Z" + }, + "end": { + "$date": "2021-04-21T02:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "91359370-2855-400c-852e-5159249276f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T01:51:06.000Z" + }, + "end": { + "$date": "2021-04-21T03:46:43.000Z" + }, + "events": [ + { + "uuid": "52ac4072-758e-40bc-99e8-7c71a7054ac3", + "start": { + "$date": "2021-04-21T01:51:06.000Z" + }, + "end": { + "$date": "2021-04-21T03:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "07b63c1b-853b-4951-ad4f-a62c36bb352b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-21T01:55:31.000Z" + }, + "end": { + "$date": "2021-04-21T04:53:11.000Z" + }, + "events": [ + { + "uuid": "3713d35c-8b4f-4e98-803d-ebb4c3b96b07", + "start": { + "$date": "2021-04-21T01:55:31.000Z" + }, + "end": { + "$date": "2021-04-21T04:53:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "55c50e74-5dea-4d4d-b7de-9516eab8fbe5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-21T01:56:26.000Z" + }, + "end": { + "$date": "2021-04-21T04:52:53.000Z" + }, + "events": [ + { + "uuid": "00fd609a-1bf1-4b02-a13f-1c02c4662767", + "start": { + "$date": "2021-04-21T01:56:26.000Z" + }, + "end": { + "$date": "2021-04-21T04:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "50bb43f3-1701-4394-8c9c-8efd8184cc57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-21T01:58:34.000Z" + }, + "end": { + "$date": "2021-04-21T02:44:33.000Z" + }, + "events": [ + { + "uuid": "584185db-fa8c-4ef2-bb67-a59681f3ada1", + "start": { + "$date": "2021-04-21T01:58:34.000Z" + }, + "end": { + "$date": "2021-04-21T02:17:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe44ff7f-654d-4caf-a30c-1f7c72d5df8c", + "start": { + "$date": "2021-04-21T02:17:34.000Z" + }, + "end": { + "$date": "2021-04-21T02:34:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2bbef4a9-2a85-4be4-9e67-8688f6e150db", + "start": { + "$date": "2021-04-21T02:34:34.000Z" + }, + "end": { + "$date": "2021-04-21T02:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9322ff91-a090-42c9-9a49-30c56ed8de8d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-21T02:10:21.000Z" + }, + "end": { + "$date": "2021-04-21T02:46:31.000Z" + }, + "events": [ + { + "uuid": "e8bc13db-be80-44fa-99ce-a509a93648a2", + "start": { + "$date": "2021-04-21T02:10:21.000Z" + }, + "end": { + "$date": "2021-04-21T02:46:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "f8a02af0-24bf-48b3-8b46-2b28cf33a431", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-21T02:06:43.000Z" + }, + "end": { + "$date": "2021-04-21T05:18:37.000Z" + }, + "events": [ + { + "uuid": "c96e816b-bcfa-47bc-85e9-9a6596553f2f", + "start": { + "$date": "2021-04-21T02:06:43.000Z" + }, + "end": { + "$date": "2021-04-21T05:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93bf1c22-4256-413a-89e2-4d40fc516538", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-21T02:11:54.000Z" + }, + "end": { + "$date": "2021-04-21T02:46:35.000Z" + }, + "events": [ + { + "uuid": "b8ae331c-6804-4db8-84e7-85f61909e8db", + "start": { + "$date": "2021-04-21T02:11:54.000Z" + }, + "end": { + "$date": "2021-04-21T02:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07c05044-2eb9-4e26-8bf2-d04e9c1a9d03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-21T02:46:52.000Z" + }, + "end": { + "$date": "2021-04-21T02:48:30.000Z" + }, + "events": [ + { + "uuid": "6161efa4-102f-49e1-a03d-4c700caa49df", + "start": { + "$date": "2021-04-21T02:46:52.000Z" + }, + "end": { + "$date": "2021-04-21T02:48:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "3238a56b-bf04-4402-a191-a465b83bd026", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-21T03:20:45.000Z" + }, + "end": { + "$date": "2021-04-21T03:29:46.000Z" + }, + "events": [ + { + "uuid": "1fc36d75-52e0-45e5-933e-d42b1c326e22", + "start": { + "$date": "2021-04-21T03:20:45.000Z" + }, + "end": { + "$date": "2021-04-21T03:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c6fe770b-990a-43ac-a166-75857887f221", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-21T03:30:01.000Z" + }, + "end": { + "$date": "2021-04-21T04:18:27.000Z" + }, + "events": [ + { + "uuid": "61c66be5-5522-4c02-8af3-79626cdf838e", + "start": { + "$date": "2021-04-21T03:30:01.000Z" + }, + "end": { + "$date": "2021-04-21T04:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a13df71c-d3c8-4a7c-9638-f73e17a1b765", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-21T03:47:37.000Z" + }, + "end": { + "$date": "2021-04-21T13:43:56.000Z" + }, + "events": [ + { + "uuid": "c9767192-c644-4701-a893-c244709b9974", + "start": { + "$date": "2021-04-21T03:47:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:00:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b72db2dc-381a-41fb-9a50-4a506799b143", + "start": { + "$date": "2021-04-21T04:00:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:05:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "57a2c951-148d-428a-b2e1-832fd71382bb", + "start": { + "$date": "2021-04-21T04:05:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:15:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77995bd2-f554-4cc1-93df-747fcb2694d1", + "start": { + "$date": "2021-04-21T04:15:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:20:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee5235b3-4dc0-4755-b329-7a12a70cc6b5", + "start": { + "$date": "2021-04-21T04:20:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:30:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13e515a4-23d9-48ae-8d08-b50128319456", + "start": { + "$date": "2021-04-21T04:30:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:35:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e607c912-1dc2-4839-8bbc-013a0865f394", + "start": { + "$date": "2021-04-21T04:35:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:45:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "52f5376c-8ca5-40df-81fa-33ef22f2fe5d", + "start": { + "$date": "2021-04-21T04:45:37.000Z" + }, + "end": { + "$date": "2021-04-21T04:51:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "88adf402-bf26-4902-975d-8c71a8a4f776", + "start": { + "$date": "2021-04-21T04:51:37.000Z" + }, + "end": { + "$date": "2021-04-21T05:12:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d65e4355-d3e1-4439-ba4c-ea93705f5d8b", + "start": { + "$date": "2021-04-21T05:12:37.000Z" + }, + "end": { + "$date": "2021-04-21T13:43:56.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "14928c0f-b70d-48e9-9b3d-3d3961e73169", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-21T04:40:25.000Z" + }, + "end": { + "$date": "2021-04-21T05:12:45.000Z" + }, + "events": [ + { + "uuid": "d6f7c20c-2051-4d84-a3d7-43277b95bfe7", + "start": { + "$date": "2021-04-21T04:40:25.000Z" + }, + "end": { + "$date": "2021-04-21T05:12:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "46947013-8ad8-4ad0-8e7e-1f5ac1e9e0e2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-21T05:29:27.000Z" + }, + "end": { + "$date": "2021-04-21T05:31:52.000Z" + }, + "events": [ + { + "uuid": "3981a7ed-78d8-48c4-88b7-827887a97e2e", + "start": { + "$date": "2021-04-21T05:29:27.000Z" + }, + "end": { + "$date": "2021-04-21T05:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2c90379d-a64c-46b5-8546-41890456eac2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T13:51:05.000Z" + }, + "end": { + "$date": "2021-04-21T14:02:27.000Z" + }, + "events": [ + { + "uuid": "d5881834-f95f-4901-996e-f9492045694f", + "start": { + "$date": "2021-04-21T13:51:05.000Z" + }, + "end": { + "$date": "2021-04-21T14:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "fbdb4071-3134-4d77-9d5c-3c63c8271f29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T14:17:57.000Z" + }, + "end": { + "$date": "2021-04-21T14:47:29.000Z" + }, + "events": [ + { + "uuid": "ae860404-0f07-45c5-b35e-50179879f199", + "start": { + "$date": "2021-04-21T14:17:57.000Z" + }, + "end": { + "$date": "2021-04-21T14:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abc8f3dc-7456-42bd-9260-fa664fa98860", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-21T14:32:31.000Z" + }, + "end": { + "$date": "2021-04-21T15:04:53.000Z" + }, + "events": [ + { + "uuid": "5ad3a926-a9d9-4f40-b406-11c6705622fe", + "start": { + "$date": "2021-04-21T14:32:31.000Z" + }, + "end": { + "$date": "2021-04-21T15:04:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ee812c4d-fdfe-4852-bb9a-4e7507b0c190", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-21T15:08:31.000Z" + }, + "end": { + "$date": "2021-04-21T15:40:03.000Z" + }, + "events": [ + { + "uuid": "f509542d-28a6-4e3e-8fbd-9c85bf3fc422", + "start": { + "$date": "2021-04-21T15:08:31.000Z" + }, + "end": { + "$date": "2021-04-21T15:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "27b5f9c6-8ee7-4bc4-ad9f-a5bfb5f99468", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T17:31:09.000Z" + }, + "end": { + "$date": "2021-04-21T18:03:37.000Z" + }, + "events": [ + { + "uuid": "845af4c7-7237-45c7-95ca-b169c4c16e5c", + "start": { + "$date": "2021-04-21T17:31:09.000Z" + }, + "end": { + "$date": "2021-04-21T18:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "76ae8314-8b56-40f0-a70d-0d2e03e56ce0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-21T19:21:36.000Z" + }, + "end": { + "$date": "2021-04-21T20:55:23.000Z" + }, + "events": [ + { + "uuid": "51c5e251-2be9-4421-8a53-cb76a02e4d74", + "start": { + "$date": "2021-04-21T19:21:36.000Z" + }, + "end": { + "$date": "2021-04-21T20:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "da188514-4c45-4a34-8f3f-7bd4ca5e5c87", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-21T19:22:48.000Z" + }, + "end": { + "$date": "2021-04-21T19:23:48.000Z" + }, + "events": [ + { + "uuid": "124356b0-a8cb-4f44-97ac-1708e96b3fc8", + "start": { + "$date": "2021-04-21T19:22:48.000Z" + }, + "end": { + "$date": "2021-04-21T19:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3f2fa996-d02d-49de-9ec3-b0b46f6521a4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-21T19:24:14.000Z" + }, + "end": { + "$date": "2021-04-21T21:16:44.000Z" + }, + "events": [ + { + "uuid": "c63fc941-da2e-4e17-9c8f-fb902a86a859", + "start": { + "$date": "2021-04-21T19:24:14.000Z" + }, + "end": { + "$date": "2021-04-21T21:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "842ea0d3-9a44-4408-93b7-a41f339e39ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-21T20:07:47.000Z" + }, + "end": { + "$date": "2021-04-21T20:46:56.000Z" + }, + "events": [ + { + "uuid": "cd28c58e-8b6f-4b2a-a55c-1636b9eb7eeb", + "start": { + "$date": "2021-04-21T20:07:47.000Z" + }, + "end": { + "$date": "2021-04-21T20:46:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "78b17db7-3bb6-4d1e-a3b4-f62a983c66d6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-21T20:56:20.000Z" + }, + "end": { + "$date": "2021-04-21T21:17:26.000Z" + }, + "events": [ + { + "uuid": "6bc6a9dd-e361-413f-96da-32480925f55e", + "start": { + "$date": "2021-04-21T20:56:20.000Z" + }, + "end": { + "$date": "2021-04-21T21:17:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c642412-cd27-4d13-b353-52f74582865c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-21T21:05:17.000Z" + }, + "end": { + "$date": "2021-04-21T21:29:40.000Z" + }, + "events": [ + { + "uuid": "76b96841-3c1f-491b-b706-ae1adc8cc7b1", + "start": { + "$date": "2021-04-21T21:05:17.000Z" + }, + "end": { + "$date": "2021-04-21T21:29:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "71816612-7b90-47ed-bce7-bff6532fc58a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-21T21:18:28.000Z" + }, + "end": { + "$date": "2021-04-21T22:07:11.000Z" + }, + "events": [ + { + "uuid": "a581e6e6-8a67-41d5-800d-65518ab60a3e", + "start": { + "$date": "2021-04-21T21:18:28.000Z" + }, + "end": { + "$date": "2021-04-21T22:07:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fb9dddda-ee89-4d3e-8c80-17c340996ae0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-21T21:19:50.000Z" + }, + "end": { + "$date": "2021-04-21T23:15:57.000Z" + }, + "events": [ + { + "uuid": "9b9edc92-1a37-4bcd-8bdb-d9f77ebc3a79", + "start": { + "$date": "2021-04-21T21:19:50.000Z" + }, + "end": { + "$date": "2021-04-21T23:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3b3658ef-730b-4060-b946-7dd2b71fbfd3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T21:35:46.000Z" + }, + "end": { + "$date": "2021-04-21T22:34:55.000Z" + }, + "events": [ + { + "uuid": "c03af2f4-12d8-434e-8591-85f6a3d7c2ed", + "start": { + "$date": "2021-04-21T21:35:46.000Z" + }, + "end": { + "$date": "2021-04-21T22:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3de1303f-5860-4cc0-9db4-ebadab8d9e56", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-21T21:41:48.000Z" + }, + "end": { + "$date": "2021-04-21T21:50:39.000Z" + }, + "events": [ + { + "uuid": "ef5c2e02-e40b-4ddb-9629-c1616f88d85c", + "start": { + "$date": "2021-04-21T21:41:48.000Z" + }, + "end": { + "$date": "2021-04-21T21:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "35fd229a-de0d-4fe9-b373-5db762fd682b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-21T21:53:50.000Z" + }, + "end": { + "$date": "2021-04-21T22:05:06.000Z" + }, + "events": [ + { + "uuid": "6710378b-b5d7-482c-8ffd-1156ec445dc7", + "start": { + "$date": "2021-04-21T21:53:50.000Z" + }, + "end": { + "$date": "2021-04-21T22:05:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "44020ad8-cac4-4183-a59a-1ddd7c9a2032", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-21T22:05:35.000Z" + }, + "end": { + "$date": "2021-04-21T22:37:28.000Z" + }, + "events": [ + { + "uuid": "33852352-e49b-4a2e-b8f4-aeb40f1e24f8", + "start": { + "$date": "2021-04-21T22:05:35.000Z" + }, + "end": { + "$date": "2021-04-21T22:37:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7d9f5b34-6414-4254-8727-b0d1847bdd51", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-21T22:12:47.000Z" + }, + "end": { + "$date": "2021-04-21T22:30:15.000Z" + }, + "events": [ + { + "uuid": "d8f5db12-d311-4aa8-bd39-e1ff1551a211", + "start": { + "$date": "2021-04-21T22:12:47.000Z" + }, + "end": { + "$date": "2021-04-21T22:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "62f7a9cb-d521-45ee-a1ba-a2c594ec67f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-21T22:40:54.000Z" + }, + "end": { + "$date": "2021-04-22T00:02:23.000Z" + }, + "events": [ + { + "uuid": "295e046e-1170-4a7a-830c-0d7f085e2468", + "start": { + "$date": "2021-04-21T22:40:54.000Z" + }, + "end": { + "$date": "2021-04-22T00:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1edb2e92-f33a-4bd1-9356-ae4430ff6fea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-21T23:18:02.000Z" + }, + "end": { + "$date": "2021-04-21T23:34:23.000Z" + }, + "events": [ + { + "uuid": "b34a0228-808c-4071-8fa6-19fefe4709da", + "start": { + "$date": "2021-04-21T23:18:02.000Z" + }, + "end": { + "$date": "2021-04-21T23:34:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5f903dad-8c59-4bbf-a190-4f7549c1b14d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-21T23:31:47.000Z" + }, + "end": { + "$date": "2021-04-21T23:54:48.000Z" + }, + "events": [ + { + "uuid": "c49b91ba-bfed-45b0-8fe5-b7744cfd73b8", + "start": { + "$date": "2021-04-21T23:31:47.000Z" + }, + "end": { + "$date": "2021-04-21T23:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "93239539-7b4f-4602-b6cc-fc36ae7cccad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-21T23:52:16.000Z" + }, + "end": { + "$date": "2021-04-22T00:12:38.000Z" + }, + "events": [ + { + "uuid": "b7d1b2ed-6f94-4639-9bcc-d277049d1c63", + "start": { + "$date": "2021-04-21T23:52:16.000Z" + }, + "end": { + "$date": "2021-04-22T00:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d5401d57-b829-4790-a485-47a99243fc90", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-22T00:42:30.000Z" + }, + "end": { + "$date": "2021-04-22T01:08:03.000Z" + }, + "events": [ + { + "uuid": "f3f9e5a3-c9ea-4f7a-8436-121b74f91773", + "start": { + "$date": "2021-04-22T00:42:30.000Z" + }, + "end": { + "$date": "2021-04-22T01:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c788d521-2697-4ff2-8a74-7ac21e1f14a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-22T01:29:12.000Z" + }, + "end": { + "$date": "2021-04-22T04:11:35.000Z" + }, + "events": [ + { + "uuid": "c32c59d8-0557-40dc-bd78-e54a8a7b8e65", + "start": { + "$date": "2021-04-22T01:29:12.000Z" + }, + "end": { + "$date": "2021-04-22T04:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c26d3fea-9804-4010-aa55-d0547bf2b12c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-22T01:29:29.000Z" + }, + "end": { + "$date": "2021-04-22T03:17:42.000Z" + }, + "events": [ + { + "uuid": "ec4bb5fb-0f74-4286-ac9f-3131fb609b69", + "start": { + "$date": "2021-04-22T01:29:29.000Z" + }, + "end": { + "$date": "2021-04-22T03:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1875facb-54c9-4285-95a7-61a81820baf9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-22T01:32:21.000Z" + }, + "end": { + "$date": "2021-04-22T02:14:12.000Z" + }, + "events": [ + { + "uuid": "2ff88afb-d7be-4ab7-9f59-054800c54d4c", + "start": { + "$date": "2021-04-22T01:32:21.000Z" + }, + "end": { + "$date": "2021-04-22T02:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9425945-b8e6-46c4-8c10-d2fd7a76d0ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-22T01:37:54.000Z" + }, + "end": { + "$date": "2021-04-22T02:02:18.000Z" + }, + "events": [ + { + "uuid": "db978867-695c-406a-8927-84d24724a183", + "start": { + "$date": "2021-04-22T01:37:54.000Z" + }, + "end": { + "$date": "2021-04-22T02:02:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7edb04c-f38b-4785-be3d-2f31ad0dfb1f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-22T01:38:00.000Z" + }, + "end": { + "$date": "2021-04-22T02:02:11.000Z" + }, + "events": [ + { + "uuid": "e7179bf9-c75e-4191-ac9d-8a842d9be5f4", + "start": { + "$date": "2021-04-22T01:38:00.000Z" + }, + "end": { + "$date": "2021-04-22T02:02:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "642d56a2-996c-4721-bde2-dce93a7175ec", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-22T01:40:24.000Z" + }, + "end": { + "$date": "2021-04-22T01:42:58.000Z" + }, + "events": [ + { + "uuid": "aa3aadc3-60a5-43b0-a155-4660278c4d0b", + "start": { + "$date": "2021-04-22T01:40:24.000Z" + }, + "end": { + "$date": "2021-04-22T01:42:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aff56dd3-cce4-4bd4-9290-45d3f194f926", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-22T01:41:41.000Z" + }, + "end": { + "$date": "2021-04-22T02:37:03.000Z" + }, + "events": [ + { + "uuid": "080ddfdb-e71c-453b-b673-15834b07a6bf", + "start": { + "$date": "2021-04-22T01:41:41.000Z" + }, + "end": { + "$date": "2021-04-22T02:37:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "a6c00ced-1a1b-4d5f-bb8a-3ba3ec970a48", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-22T01:47:15.000Z" + }, + "end": { + "$date": "2021-04-22T05:19:03.000Z" + }, + "events": [ + { + "uuid": "a9e4f995-d194-4887-b0ed-3304019c1a77", + "start": { + "$date": "2021-04-22T01:47:15.000Z" + }, + "end": { + "$date": "2021-04-22T02:05:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7d4fa7f-f278-4e35-99f0-a8f49568c79f", + "start": { + "$date": "2021-04-22T02:05:15.000Z" + }, + "end": { + "$date": "2021-04-22T02:07:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aec3ea5a-3622-4422-89b4-b51a8896312c", + "start": { + "$date": "2021-04-22T02:07:15.000Z" + }, + "end": { + "$date": "2021-04-22T05:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "a47e88bc-3ede-4a07-8e28-61ccbab48968", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-22T01:56:51.000Z" + }, + "end": { + "$date": "2021-04-22T08:43:01.000Z" + }, + "events": [ + { + "uuid": "c037ce3f-017b-4925-abcc-400c9a94b4a9", + "start": { + "$date": "2021-04-22T01:56:51.000Z" + }, + "end": { + "$date": "2021-04-22T01:57:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c860aab6-114f-4c96-a5b6-7a673d48e2c5", + "start": { + "$date": "2021-04-22T01:57:51.000Z" + }, + "end": { + "$date": "2021-04-22T01:58:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43f74965-0ec6-4567-8f80-63a80ed23690", + "start": { + "$date": "2021-04-22T01:58:51.000Z" + }, + "end": { + "$date": "2021-04-22T02:00:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bbd9c9d6-7859-42aa-b8bb-0e76aae10ad7", + "start": { + "$date": "2021-04-22T02:00:51.000Z" + }, + "end": { + "$date": "2021-04-22T02:47:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c6e0b374-976c-4ba4-a70e-e0d760845951", + "start": { + "$date": "2021-04-22T02:47:51.000Z" + }, + "end": { + "$date": "2021-04-22T02:59:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebdfecf2-5c38-4ec6-9764-50dedf09abd3", + "start": { + "$date": "2021-04-22T02:59:51.000Z" + }, + "end": { + "$date": "2021-04-22T03:10:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d5b574e-b72d-47cd-b1a3-04db28dcc37e", + "start": { + "$date": "2021-04-22T03:10:51.000Z" + }, + "end": { + "$date": "2021-04-22T05:11:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9263fe5c-69ab-4b7d-a5a5-6309ea5b5b2e", + "start": { + "$date": "2021-04-22T05:11:51.000Z" + }, + "end": { + "$date": "2021-04-22T05:19:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0ee253fb-dafa-4c01-8ff0-53b469184788", + "start": { + "$date": "2021-04-22T05:19:51.000Z" + }, + "end": { + "$date": "2021-04-22T06:08:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa4b7a81-25ba-4d1b-b6b1-87d0b88078eb", + "start": { + "$date": "2021-04-22T06:08:51.000Z" + }, + "end": { + "$date": "2021-04-22T06:10:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1749fd4a-1bb1-49be-b795-80b32581399a", + "start": { + "$date": "2021-04-22T06:10:51.000Z" + }, + "end": { + "$date": "2021-04-22T06:49:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c91280db-5769-4b52-9a4f-d133dd8a3387", + "start": { + "$date": "2021-04-22T06:49:51.000Z" + }, + "end": { + "$date": "2021-04-22T06:50:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b958c43-97c4-4a2b-bc06-c8e4cc8e05b6", + "start": { + "$date": "2021-04-22T06:50:51.000Z" + }, + "end": { + "$date": "2021-04-22T08:43:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e4e299e-5b34-4c12-bf52-7589d6b2e3a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-22T02:05:30.000Z" + }, + "end": { + "$date": "2021-04-22T02:36:49.000Z" + }, + "events": [ + { + "uuid": "42f9c11a-f5c7-473b-865a-35038d40f35b", + "start": { + "$date": "2021-04-22T02:05:30.000Z" + }, + "end": { + "$date": "2021-04-22T02:36:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4c619dc-31e5-4529-946d-c60ead131ad5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-22T02:05:31.000Z" + }, + "end": { + "$date": "2021-04-22T02:36:47.000Z" + }, + "events": [ + { + "uuid": "3ad204b7-76fd-4f8b-8380-01f0ff3f7a78", + "start": { + "$date": "2021-04-22T02:05:31.000Z" + }, + "end": { + "$date": "2021-04-22T02:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ffafc7d1-32a1-4860-917c-d84a5eed17cd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-22T02:29:47.000Z" + }, + "end": { + "$date": "2021-04-22T02:36:18.000Z" + }, + "events": [ + { + "uuid": "c031a45a-e091-4f86-a446-440fc533c293", + "start": { + "$date": "2021-04-22T02:29:47.000Z" + }, + "end": { + "$date": "2021-04-22T02:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "30f76194-b5f3-40b7-bf33-0ee9a6ed61fb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-22T02:31:02.000Z" + }, + "end": { + "$date": "2021-04-22T04:51:38.000Z" + }, + "events": [ + { + "uuid": "992517c5-d819-44e2-8b56-5e7ed4bf10af", + "start": { + "$date": "2021-04-22T02:31:02.000Z" + }, + "end": { + "$date": "2021-04-22T03:33:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "773edd12-5fc5-4eb7-93a8-fe88e1e6ff30", + "start": { + "$date": "2021-04-22T03:33:02.000Z" + }, + "end": { + "$date": "2021-04-22T03:46:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c5dac9a-a1a6-4f77-b836-bdc6fa6ac1ff", + "start": { + "$date": "2021-04-22T03:46:02.000Z" + }, + "end": { + "$date": "2021-04-22T04:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eecfaec-8c80-4413-aecf-9dff7ea3ac66", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-22T02:45:32.000Z" + }, + "end": { + "$date": "2021-04-22T03:01:08.000Z" + }, + "events": [ + { + "uuid": "68c12185-b901-4a7b-915b-e79d7d23c0a6", + "start": { + "$date": "2021-04-22T02:45:32.000Z" + }, + "end": { + "$date": "2021-04-22T03:01:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71222a43-9b42-4779-ab64-d2a2757b0ed0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-22T02:47:13.000Z" + }, + "end": { + "$date": "2021-04-22T03:01:09.000Z" + }, + "events": [ + { + "uuid": "c4ebe45f-188f-4938-bf48-b46f143d615d", + "start": { + "$date": "2021-04-22T02:47:13.000Z" + }, + "end": { + "$date": "2021-04-22T03:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b5659ed1-415e-465b-9638-16f89eba2d74", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-22T03:18:17.000Z" + }, + "end": { + "$date": "2021-04-22T03:19:38.000Z" + }, + "events": [ + { + "uuid": "1923fd38-79cb-4ad7-8cde-54d8b8cdbbae", + "start": { + "$date": "2021-04-22T03:18:17.000Z" + }, + "end": { + "$date": "2021-04-22T03:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "898267c8-b17b-47a6-975a-077453f8b40b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-22T03:19:47.000Z" + }, + "end": { + "$date": "2021-04-22T06:00:36.000Z" + }, + "events": [ + { + "uuid": "c50abdfc-f203-4c41-82e4-74fd5085a83e", + "start": { + "$date": "2021-04-22T03:19:47.000Z" + }, + "end": { + "$date": "2021-04-22T06:00:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "231f95ce-4092-4788-a6de-15e30bbd5876", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-22T03:43:33.000Z" + }, + "end": { + "$date": "2021-04-22T04:31:21.000Z" + }, + "events": [ + { + "uuid": "19714227-4ab7-4d67-b00f-7ee9fd56769c", + "start": { + "$date": "2021-04-22T03:43:33.000Z" + }, + "end": { + "$date": "2021-04-22T04:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e5b35881-8620-4cd5-8f52-dc5293a66aa3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-22T03:45:08.000Z" + }, + "end": { + "$date": "2021-04-22T06:32:54.000Z" + }, + "events": [ + { + "uuid": "2b5ac727-6a0f-4810-857b-bb54aacdd50d", + "start": { + "$date": "2021-04-22T03:45:08.000Z" + }, + "end": { + "$date": "2021-04-22T06:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d11c3f12-410f-48ea-8a91-d587e4cf4959", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-22T04:30:46.000Z" + }, + "end": { + "$date": "2021-04-22T06:32:56.000Z" + }, + "events": [ + { + "uuid": "30057172-82da-4db8-a805-2436bdcf3bb7", + "start": { + "$date": "2021-04-22T04:30:46.000Z" + }, + "end": { + "$date": "2021-04-22T06:32:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "4d1fe6fa-8411-478d-bf51-7d5e0f44bb1d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-22T04:54:59.000Z" + }, + "end": { + "$date": "2021-04-22T05:40:29.000Z" + }, + "events": [ + { + "uuid": "291db785-9a02-4c56-85be-e215a72d91fe", + "start": { + "$date": "2021-04-22T04:54:59.000Z" + }, + "end": { + "$date": "2021-04-22T05:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9b877055-c017-49bc-9e08-dddb2f87e09b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-22T14:16:42.000Z" + }, + "end": { + "$date": "2021-04-22T14:48:05.000Z" + }, + "events": [ + { + "uuid": "a3b2e050-f7e8-46d1-adc1-331480241f85", + "start": { + "$date": "2021-04-22T14:16:42.000Z" + }, + "end": { + "$date": "2021-04-22T14:48:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a2a9d4e8-d4e1-4bd2-9532-1c1ac4c0de6c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-22T17:29:14.000Z" + }, + "end": { + "$date": "2021-04-22T17:30:14.000Z" + }, + "events": [ + { + "uuid": "48fca917-2011-4f96-9e25-aef6b5738faa", + "start": { + "$date": "2021-04-22T17:29:14.000Z" + }, + "end": { + "$date": "2021-04-22T17:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "462b30d9-1ac1-4b24-ab2f-4df6f3f3939c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-22T17:30:44.000Z" + }, + "end": { + "$date": "2021-04-22T18:12:56.000Z" + }, + "events": [ + { + "uuid": "7c23f566-2236-433f-adfd-e33eda4d7dba", + "start": { + "$date": "2021-04-22T17:30:44.000Z" + }, + "end": { + "$date": "2021-04-22T18:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cfecfe6b-19e0-46b9-a75d-0af9aa5c33ea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-22T18:15:26.000Z" + }, + "end": { + "$date": "2021-04-22T18:50:07.000Z" + }, + "events": [ + { + "uuid": "0ac5812f-57c1-4944-adfd-9d51bf284eff", + "start": { + "$date": "2021-04-22T18:15:26.000Z" + }, + "end": { + "$date": "2021-04-22T18:50:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bc0ab71e-70d4-4ee0-bcd0-53c69a675255", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-22T18:21:04.000Z" + }, + "end": { + "$date": "2021-04-22T19:04:29.000Z" + }, + "events": [ + { + "uuid": "c2d32460-048b-4b9d-8358-3d7b44019206", + "start": { + "$date": "2021-04-22T18:21:04.000Z" + }, + "end": { + "$date": "2021-04-22T19:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0bbbde02-5774-4ec9-9d76-45c4c708a258", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-22T19:16:10.000Z" + }, + "end": { + "$date": "2021-04-22T21:03:39.000Z" + }, + "events": [ + { + "uuid": "00696d38-d34e-496a-be1b-2fb253e994cf", + "start": { + "$date": "2021-04-22T19:16:10.000Z" + }, + "end": { + "$date": "2021-04-22T21:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "19f75512-cd08-4169-8338-01d642b42cd0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-22T20:39:08.000Z" + }, + "end": { + "$date": "2021-04-22T21:08:46.000Z" + }, + "events": [ + { + "uuid": "78c4e52e-ecd8-4022-bfa5-487b7d56cb2a", + "start": { + "$date": "2021-04-22T20:39:08.000Z" + }, + "end": { + "$date": "2021-04-22T21:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "c9f48012-5822-453b-af14-3a62252707e9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-22T21:44:41.000Z" + }, + "end": { + "$date": "2021-04-23T04:08:24.000Z" + }, + "events": [ + { + "uuid": "c0c76b06-66e8-4f33-89a2-78d632c6590d", + "start": { + "$date": "2021-04-22T21:44:41.000Z" + }, + "end": { + "$date": "2021-04-23T00:15:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d350144-1675-45bc-af6b-f253991f31d8", + "start": { + "$date": "2021-04-23T00:15:41.000Z" + }, + "end": { + "$date": "2021-04-23T00:57:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "57fdb6f9-e8bc-4205-8e4f-3936f2214100", + "start": { + "$date": "2021-04-23T00:57:41.000Z" + }, + "end": { + "$date": "2021-04-23T00:59:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "92a514f6-68c2-4010-8289-261eda983c80", + "start": { + "$date": "2021-04-23T00:59:41.000Z" + }, + "end": { + "$date": "2021-04-23T01:20:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "199418ef-2b8b-432e-9d90-70194db84d9b", + "start": { + "$date": "2021-04-23T01:20:41.000Z" + }, + "end": { + "$date": "2021-04-23T01:52:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe1d0431-be8a-428d-9726-cf875079dbc7", + "start": { + "$date": "2021-04-23T01:52:41.000Z" + }, + "end": { + "$date": "2021-04-23T02:12:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "93b71a73-138a-4d30-9da7-796896432121", + "start": { + "$date": "2021-04-23T02:12:41.000Z" + }, + "end": { + "$date": "2021-04-23T02:15:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c0e9ce6-4092-44c9-bed3-8e716facd7d8", + "start": { + "$date": "2021-04-23T02:15:41.000Z" + }, + "end": { + "$date": "2021-04-23T02:16:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e65c223b-8a1c-47d8-aae3-48e18b784f69", + "start": { + "$date": "2021-04-23T02:16:41.000Z" + }, + "end": { + "$date": "2021-04-23T02:18:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb1b44ef-390c-4362-a5ad-e76cb3bc0bba", + "start": { + "$date": "2021-04-23T02:18:41.000Z" + }, + "end": { + "$date": "2021-04-23T02:31:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "140cbd21-4aef-4a68-8d45-4eadd5f62a13", + "start": { + "$date": "2021-04-23T02:31:41.000Z" + }, + "end": { + "$date": "2021-04-23T04:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cb245618-5968-494a-9114-174917db326f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-22T23:21:27.000Z" + }, + "end": { + "$date": "2021-04-23T00:16:14.000Z" + }, + "events": [ + { + "uuid": "ec8fd5af-966e-485a-bd65-a19779e06ef8", + "start": { + "$date": "2021-04-22T23:21:27.000Z" + }, + "end": { + "$date": "2021-04-23T00:16:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "7970df0f-9742-48b7-b673-ca8f491c420f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-23T00:55:42.000Z" + }, + "end": { + "$date": "2021-04-23T03:52:50.000Z" + }, + "events": [ + { + "uuid": "bdcc4ac5-36b8-47f4-8980-a074b14c8de8", + "start": { + "$date": "2021-04-23T00:55:42.000Z" + }, + "end": { + "$date": "2021-04-23T03:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fb8dbe05-94b5-4f7a-b9ba-00be58266e3d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-23T01:53:04.000Z" + }, + "end": { + "$date": "2021-04-23T02:55:29.000Z" + }, + "events": [ + { + "uuid": "11a55ee3-2951-4191-8ced-5dd0d62dd1e6", + "start": { + "$date": "2021-04-23T01:53:04.000Z" + }, + "end": { + "$date": "2021-04-23T02:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "97517ead-9a68-4601-88a3-5f12eed28602", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T02:42:45.000Z" + }, + "end": { + "$date": "2021-04-23T02:52:19.000Z" + }, + "events": [ + { + "uuid": "c49da245-18f7-44de-b310-096bdc95145d", + "start": { + "$date": "2021-04-23T02:42:45.000Z" + }, + "end": { + "$date": "2021-04-23T02:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "227ad6a7-5aa4-487c-9066-be2a3bf3c20f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-23T02:55:48.000Z" + }, + "end": { + "$date": "2021-04-23T03:26:40.000Z" + }, + "events": [ + { + "uuid": "276396d0-14a8-4f44-8c32-af58773c7f0a", + "start": { + "$date": "2021-04-23T02:55:48.000Z" + }, + "end": { + "$date": "2021-04-23T03:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3288b77d-53cf-4fd8-ab54-90428bf40e55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-23T05:15:15.000Z" + }, + "end": { + "$date": "2021-04-23T05:15:20.000Z" + }, + "events": [ + { + "uuid": "8db1f982-224b-4f2c-b581-caf0529c8a77", + "start": { + "$date": "2021-04-23T05:15:15.000Z" + }, + "end": { + "$date": "2021-04-23T05:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "44a4bf37-76f8-4ed0-96db-771e18533184", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-23T03:57:40.000Z" + }, + "end": { + "$date": "2021-04-23T06:48:26.000Z" + }, + "events": [ + { + "uuid": "9afb704f-81d1-420e-9be3-3ac6d8d3e41e", + "start": { + "$date": "2021-04-23T03:57:40.000Z" + }, + "end": { + "$date": "2021-04-23T06:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "98f15dff-c572-4069-8948-1a4f25c5dcd3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-23T04:10:01.000Z" + }, + "end": { + "$date": "2021-04-23T05:37:33.000Z" + }, + "events": [ + { + "uuid": "1ebcd841-e19d-4f6e-ae7b-ef20d53f0437", + "start": { + "$date": "2021-04-23T04:10:01.000Z" + }, + "end": { + "$date": "2021-04-23T05:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "18390aa0-0c03-4291-b241-5027d9684987", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-23T04:33:36.000Z" + }, + "end": { + "$date": "2021-04-23T04:46:11.000Z" + }, + "events": [ + { + "uuid": "5834e0c1-640d-418b-839c-0a59db34f166", + "start": { + "$date": "2021-04-23T04:33:36.000Z" + }, + "end": { + "$date": "2021-04-23T04:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f6236a9e-09bf-4410-9445-b73faa9bc709", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-23T05:15:30.000Z" + }, + "end": { + "$date": "2021-04-23T06:13:36.000Z" + }, + "events": [ + { + "uuid": "45cecc24-dc33-411b-a9cf-e39b1770461c", + "start": { + "$date": "2021-04-23T05:15:30.000Z" + }, + "end": { + "$date": "2021-04-23T06:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c290815e-9c5a-4cdf-8f5b-8590ea722808", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T05:24:55.000Z" + }, + "end": { + "$date": "2021-04-23T06:12:46.000Z" + }, + "events": [ + { + "uuid": "a5359935-10c8-4106-812d-6630120bf66a", + "start": { + "$date": "2021-04-23T05:24:55.000Z" + }, + "end": { + "$date": "2021-04-23T06:12:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cece6b58-e496-4364-a714-90a4f3e0162c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-23T06:29:33.000Z" + }, + "end": { + "$date": "2021-04-23T07:44:32.000Z" + }, + "events": [ + { + "uuid": "14cef091-6f7b-4fc8-8a77-d6b7cf17043e", + "start": { + "$date": "2021-04-23T06:29:33.000Z" + }, + "end": { + "$date": "2021-04-23T07:00:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "301e9816-ac33-43c9-b936-09e47f5d7fbd", + "start": { + "$date": "2021-04-23T07:00:33.000Z" + }, + "end": { + "$date": "2021-04-23T07:05:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c8039c1-4c3f-43d6-bb7e-bd319656beb7", + "start": { + "$date": "2021-04-23T07:05:33.000Z" + }, + "end": { + "$date": "2021-04-23T07:44:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2eb6f2cd-66d4-47c2-9e98-5658650a5389", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-23T15:24:19.000Z" + }, + "end": { + "$date": "2021-04-23T16:44:05.000Z" + }, + "events": [ + { + "uuid": "b74a2b57-efda-40fd-8ca8-24cb8811bd4b", + "start": { + "$date": "2021-04-23T15:24:19.000Z" + }, + "end": { + "$date": "2021-04-23T16:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "509cade5-4643-4509-94a3-5f33a4129eef", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-23T16:31:12.000Z" + }, + "end": { + "$date": "2021-04-23T16:47:32.000Z" + }, + "events": [ + { + "uuid": "a0918f47-f886-4053-aebd-389aecb5d33c", + "start": { + "$date": "2021-04-23T16:31:12.000Z" + }, + "end": { + "$date": "2021-04-23T16:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3db5331a-3386-485e-b69e-65e8724d8109", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-23T16:31:42.000Z" + }, + "end": { + "$date": "2021-04-23T16:47:44.000Z" + }, + "events": [ + { + "uuid": "f36f10c2-4826-4d4e-b5e4-fa9a597970d4", + "start": { + "$date": "2021-04-23T16:31:42.000Z" + }, + "end": { + "$date": "2021-04-23T16:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "174ce048-96bb-4149-9ff1-b8485470375f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T16:33:28.000Z" + }, + "end": { + "$date": "2021-04-23T17:34:16.000Z" + }, + "events": [ + { + "uuid": "98418cb2-fb4b-4758-a0f2-bb996c51f180", + "start": { + "$date": "2021-04-23T16:33:28.000Z" + }, + "end": { + "$date": "2021-04-23T17:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "660f97ff-cfa1-468a-8c33-08aa77e40445", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-23T16:50:48.000Z" + }, + "end": { + "$date": "2021-04-23T17:16:45.000Z" + }, + "events": [ + { + "uuid": "5a857c3f-82ae-4621-bdfb-9b58a4b3cd3c", + "start": { + "$date": "2021-04-23T16:50:48.000Z" + }, + "end": { + "$date": "2021-04-23T17:16:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03d4dc69-97ad-4b2f-8019-328e4648a061", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-23T16:50:43.000Z" + }, + "end": { + "$date": "2021-04-23T17:16:36.000Z" + }, + "events": [ + { + "uuid": "ed52f39c-5d13-4c79-ad6d-88bca4d744d8", + "start": { + "$date": "2021-04-23T16:50:43.000Z" + }, + "end": { + "$date": "2021-04-23T17:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "aa1fd658-1b2a-4f8e-9cd9-f792b65fdaec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T17:41:58.000Z" + }, + "end": { + "$date": "2021-04-23T18:36:35.000Z" + }, + "events": [ + { + "uuid": "ef3b9149-6eb7-4ce0-a2b7-ed1d58b8ca5f", + "start": { + "$date": "2021-04-23T17:41:58.000Z" + }, + "end": { + "$date": "2021-04-23T18:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "19451e46-4f35-4cb9-8568-c2ba38ef7209", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-23T19:26:22.000Z" + }, + "end": { + "$date": "2021-04-23T20:03:35.000Z" + }, + "events": [ + { + "uuid": "df442109-efa6-4957-9169-e086ebcfa482", + "start": { + "$date": "2021-04-23T19:26:22.000Z" + }, + "end": { + "$date": "2021-04-23T20:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5df0485a-b278-49c6-b88d-f0b07be98faf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-23T19:29:20.000Z" + }, + "end": { + "$date": "2021-04-23T20:08:02.000Z" + }, + "events": [ + { + "uuid": "aabff9ab-495d-47b1-a0df-2c246f85c4a5", + "start": { + "$date": "2021-04-23T19:29:20.000Z" + }, + "end": { + "$date": "2021-04-23T20:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1cf35d9f-566e-494d-ba98-717c207d8dbf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-23T20:12:02.000Z" + }, + "end": { + "$date": "2021-04-23T21:33:40.000Z" + }, + "events": [ + { + "uuid": "9d7b9e75-48b5-43fc-999c-cb649bad76b0", + "start": { + "$date": "2021-04-23T20:12:02.000Z" + }, + "end": { + "$date": "2021-04-23T21:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e8fce44f-b14e-4ee5-89a8-4fe9698df608", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-23T20:35:52.000Z" + }, + "end": { + "$date": "2021-04-23T21:32:50.000Z" + }, + "events": [ + { + "uuid": "61166ccb-7f32-4394-95f0-5f83004c96c3", + "start": { + "$date": "2021-04-23T20:35:52.000Z" + }, + "end": { + "$date": "2021-04-23T21:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "abd11085-755e-4a2f-9e76-10ed9db6cb13", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T21:00:56.000Z" + }, + "end": { + "$date": "2021-04-23T21:03:10.000Z" + }, + "events": [ + { + "uuid": "bbd72603-ac02-48ba-a591-925e6e06f2bd", + "start": { + "$date": "2021-04-23T21:00:56.000Z" + }, + "end": { + "$date": "2021-04-23T21:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "1107cff4-b674-4ef4-ae16-b434d288d42e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T21:03:26.000Z" + }, + "end": { + "$date": "2021-04-23T21:43:01.000Z" + }, + "events": [ + { + "uuid": "f0f911e2-bd0b-47ac-a463-5c6b45cfd1f6", + "start": { + "$date": "2021-04-23T21:03:26.000Z" + }, + "end": { + "$date": "2021-04-23T21:43:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a70e9202-57e0-4599-bb34-ff818dbc9139", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-23T21:27:12.000Z" + }, + "end": { + "$date": "2021-04-23T21:41:11.000Z" + }, + "events": [ + { + "uuid": "c151dd2b-d82f-4de7-8c6b-ae8d1b9ebe12", + "start": { + "$date": "2021-04-23T21:27:12.000Z" + }, + "end": { + "$date": "2021-04-23T21:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f617b8b8-ff1e-4a7c-b6af-b6fbe07ca939", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-23T21:43:30.000Z" + }, + "end": { + "$date": "2021-04-23T22:15:06.000Z" + }, + "events": [ + { + "uuid": "2ad752fe-7079-4626-9a79-263d7132b3e6", + "start": { + "$date": "2021-04-23T21:43:30.000Z" + }, + "end": { + "$date": "2021-04-23T22:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b1e1ab6-7d00-472f-925f-8023c984c0d3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-23T22:25:21.000Z" + }, + "end": { + "$date": "2021-04-23T22:41:06.000Z" + }, + "events": [ + { + "uuid": "dc930fe3-3dc0-43b1-acfb-329799892f8d", + "start": { + "$date": "2021-04-23T22:25:21.000Z" + }, + "end": { + "$date": "2021-04-23T22:41:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "b26a7209-f576-42be-9c6d-041eecad92ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T22:31:39.000Z" + }, + "end": { + "$date": "2021-04-23T22:59:14.000Z" + }, + "events": [ + { + "uuid": "2e50e265-b1a4-4003-ae83-00398c4f64c6", + "start": { + "$date": "2021-04-23T22:31:39.000Z" + }, + "end": { + "$date": "2021-04-23T22:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5e24bfca-abd1-47ba-930e-ffcb9db74477", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-23T23:25:08.000Z" + }, + "end": { + "$date": "2021-04-24T01:00:00.000Z" + }, + "events": [ + { + "uuid": "0252a243-27ae-4f8f-b307-9c78b7cd249f", + "start": { + "$date": "2021-04-23T23:25:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:07:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f01c6599-85d0-41fe-8567-e2b5de0cb536", + "start": { + "$date": "2021-04-24T00:07:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:12:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11402384-3c3f-473f-97bd-cb2839f6ae5e", + "start": { + "$date": "2021-04-24T00:12:08.000Z" + }, + "end": { + "$date": "2021-04-24T01:00:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "c03983d6-0ec0-42d3-a218-575c13b6f464", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-23T23:49:08.000Z" + }, + "end": { + "$date": "2021-04-24T02:20:09.000Z" + }, + "events": [ + { + "uuid": "a0293868-6d25-4688-8f43-28808f436c0e", + "start": { + "$date": "2021-04-23T23:49:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:20:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae7bc1b8-24bd-4beb-bea9-8dc37a4da4c1", + "start": { + "$date": "2021-04-24T00:20:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:24:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6d547d6-e384-49d6-af3f-aec1befc11e4", + "start": { + "$date": "2021-04-24T00:24:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:39:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c1154dc-16f3-496b-aaf8-4d98a2b8fb9a", + "start": { + "$date": "2021-04-24T00:39:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:44:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c230fdce-0401-4f76-9800-662aa1a2f3ae", + "start": { + "$date": "2021-04-24T00:44:08.000Z" + }, + "end": { + "$date": "2021-04-24T00:54:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83a254d4-ce9c-4a05-97e9-9613eab5377b", + "start": { + "$date": "2021-04-24T00:54:08.000Z" + }, + "end": { + "$date": "2021-04-24T01:23:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "720a7868-84b3-416d-ad38-257d294be26f", + "start": { + "$date": "2021-04-24T01:23:08.000Z" + }, + "end": { + "$date": "2021-04-24T02:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33d347be-ba23-4a37-8fe4-58e2a6542ce6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T01:39:03.000Z" + }, + "end": { + "$date": "2021-04-24T02:07:30.000Z" + }, + "events": [ + { + "uuid": "7f0dcfcb-6c68-4cf9-a902-9b26fbc1a2b7", + "start": { + "$date": "2021-04-24T01:39:03.000Z" + }, + "end": { + "$date": "2021-04-24T02:07:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc056a3b-1c51-4a01-b283-acc75a623ce1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T02:12:12.000Z" + }, + "end": { + "$date": "2021-04-24T02:38:55.000Z" + }, + "events": [ + { + "uuid": "a41c29d7-963d-4b32-840a-004dcb5dc30c", + "start": { + "$date": "2021-04-24T02:12:12.000Z" + }, + "end": { + "$date": "2021-04-24T02:38:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7a38edea-7b08-4567-9c53-6203fac1f64c", + "uuid": "ac1af032-fdde-475c-9f5a-765a24e54027", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-24T02:09:37.000Z" + }, + "end": { + "$date": "2021-04-24T02:10:45.000Z" + }, + "events": [ + { + "uuid": "379448d0-8d1a-41d9-a542-c5ea98e5f5c0", + "start": { + "$date": "2021-04-24T02:09:37.000Z" + }, + "end": { + "$date": "2021-04-24T02:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "7191b80e-8918-471f-9e94-b4f722ae1639", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T02:21:11.000Z" + }, + "end": { + "$date": "2021-04-24T06:19:25.000Z" + }, + "events": [ + { + "uuid": "9454d0b6-1aea-4391-ab42-36df662548ac", + "start": { + "$date": "2021-04-24T02:21:11.000Z" + }, + "end": { + "$date": "2021-04-24T04:11:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "afb83cc5-1d8a-4957-a488-0ecdf93f7c76", + "start": { + "$date": "2021-04-24T04:11:11.000Z" + }, + "end": { + "$date": "2021-04-24T04:14:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2227587f-dd0c-445a-86e3-51c5585f37c3", + "start": { + "$date": "2021-04-24T04:14:11.000Z" + }, + "end": { + "$date": "2021-04-24T04:24:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73d33f28-5fa9-495c-80cf-5c8c3c5f6316", + "start": { + "$date": "2021-04-24T04:24:11.000Z" + }, + "end": { + "$date": "2021-04-24T04:37:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c93d2c96-27be-436a-bcd7-ac0df9188cc4", + "start": { + "$date": "2021-04-24T04:37:11.000Z" + }, + "end": { + "$date": "2021-04-24T06:19:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0830e8a-c61d-49f0-80a7-f55f0fe8ead2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T03:01:22.000Z" + }, + "end": { + "$date": "2021-04-24T03:01:22.000Z" + }, + "events": [ + { + "uuid": "6f819a6d-a8d5-46d9-8ef1-e44ba9ee609e", + "start": { + "$date": "2021-04-24T03:01:22.000Z" + }, + "end": { + "$date": "2021-04-24T03:01:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a774914e-15cc-41ff-b475-f0e4bbb8d081", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T03:04:25.000Z" + }, + "end": { + "$date": "2021-04-24T03:23:16.000Z" + }, + "events": [ + { + "uuid": "1590b441-8bfb-4c56-a03c-c9c8fd8aa933", + "start": { + "$date": "2021-04-24T03:04:25.000Z" + }, + "end": { + "$date": "2021-04-24T03:23:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "111b257c-b36f-48e6-95b5-137c71f27e25", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-24T03:24:14.000Z" + }, + "end": { + "$date": "2021-04-24T03:30:59.000Z" + }, + "events": [ + { + "uuid": "152e7d58-5caa-467e-9f25-355cd4647c0c", + "start": { + "$date": "2021-04-24T03:24:14.000Z" + }, + "end": { + "$date": "2021-04-24T03:30:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "32c4cd66-0d13-40e1-b6d2-ee87276f6e46", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-24T03:31:34.000Z" + }, + "end": { + "$date": "2021-04-24T05:46:49.000Z" + }, + "events": [ + { + "uuid": "79ca0d38-1f84-4b9a-9148-21986170e52c", + "start": { + "$date": "2021-04-24T03:31:34.000Z" + }, + "end": { + "$date": "2021-04-24T05:46:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a82688e3-63b9-49f5-bd46-1aa66edb0ff8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T04:16:50.000Z" + }, + "end": { + "$date": "2021-04-24T04:20:37.000Z" + }, + "events": [ + { + "uuid": "fd9394ec-874c-46c6-bc02-afef1ae23049", + "start": { + "$date": "2021-04-24T04:16:50.000Z" + }, + "end": { + "$date": "2021-04-24T04:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0ede3ff-bca2-48d6-aa04-cf8c15a66bab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-24T04:49:06.000Z" + }, + "end": { + "$date": "2021-04-24T05:58:52.000Z" + }, + "events": [ + { + "uuid": "24b74e8e-6c8d-4aac-941f-b1683cade173", + "start": { + "$date": "2021-04-24T04:49:06.000Z" + }, + "end": { + "$date": "2021-04-24T05:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "28fa6d8e-ea9d-420c-928c-72fed340c9c1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T04:16:50.000Z" + }, + "end": { + "$date": "2021-04-24T04:32:31.000Z" + }, + "events": [ + { + "uuid": "c8f2ad4e-37fb-480f-9a84-3a313355beca", + "start": { + "$date": "2021-04-24T04:16:50.000Z" + }, + "end": { + "$date": "2021-04-24T04:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1acd87e7-2740-4d68-8d10-6b1b7f599326", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-24T04:23:12.000Z" + }, + "end": { + "$date": "2021-04-24T05:58:57.000Z" + }, + "events": [ + { + "uuid": "f910994f-49d1-4b45-b36a-d6e4dfd638b3", + "start": { + "$date": "2021-04-24T04:23:12.000Z" + }, + "end": { + "$date": "2021-04-24T05:58:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f5154d65-946d-4947-b7b9-abf8c0660e4d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T04:32:41.000Z" + }, + "end": { + "$date": "2021-04-24T06:00:41.000Z" + }, + "events": [ + { + "uuid": "a3d31431-d380-4dfa-bbf9-ff97ef64f861", + "start": { + "$date": "2021-04-24T04:32:41.000Z" + }, + "end": { + "$date": "2021-04-24T06:00:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7e1e19e-faa7-400c-8a0f-ada394860efe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-24T04:40:24.000Z" + }, + "end": { + "$date": "2021-04-24T08:57:29.000Z" + }, + "events": [ + { + "uuid": "8db296cb-a6e4-40e5-ab66-ac0870ec48bb", + "start": { + "$date": "2021-04-24T04:40:24.000Z" + }, + "end": { + "$date": "2021-04-24T08:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff94c6c8-ea53-45b3-aebe-84357da85dfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T05:10:27.000Z" + }, + "end": { + "$date": "2021-04-24T05:30:48.000Z" + }, + "events": [ + { + "uuid": "93456c30-894a-42dd-b1df-6661e20d3e91", + "start": { + "$date": "2021-04-24T05:10:27.000Z" + }, + "end": { + "$date": "2021-04-24T05:30:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fff882d-924e-4ba4-80c9-61eb849af62f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T05:33:44.000Z" + }, + "end": { + "$date": "2021-04-24T05:55:19.000Z" + }, + "events": [ + { + "uuid": "99c90e84-e3a1-4a89-ada1-5288658faccd", + "start": { + "$date": "2021-04-24T05:33:44.000Z" + }, + "end": { + "$date": "2021-04-24T05:55:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3fe81306-1d36-448d-b8b9-e457a15a0319", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-24T05:38:00.000Z" + }, + "end": { + "$date": "2021-04-24T07:06:12.000Z" + }, + "events": [ + { + "uuid": "16fd3984-d3ae-47a1-a32c-99c92db01eab", + "start": { + "$date": "2021-04-24T05:38:00.000Z" + }, + "end": { + "$date": "2021-04-24T07:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "de15927c-3be9-4ffe-9b5b-eed886327d70", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-24T05:48:19.000Z" + }, + "end": { + "$date": "2021-04-24T06:55:47.000Z" + }, + "events": [ + { + "uuid": "708864fc-f9a6-472a-83ce-17391dba3523", + "start": { + "$date": "2021-04-24T05:48:19.000Z" + }, + "end": { + "$date": "2021-04-24T06:55:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1c9fd15-76a7-4863-a1b5-637f4b774791", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T06:00:35.000Z" + }, + "end": { + "$date": "2021-04-24T06:32:32.000Z" + }, + "events": [ + { + "uuid": "755d01de-b99e-46c6-8c3e-047c63babbca", + "start": { + "$date": "2021-04-24T06:00:35.000Z" + }, + "end": { + "$date": "2021-04-24T06:32:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a5ceff98-d104-441e-ac46-399dbdbcc6f7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T06:00:45.000Z" + }, + "end": { + "$date": "2021-04-24T06:11:35.000Z" + }, + "events": [ + { + "uuid": "bc7907e2-d1c0-455d-9431-cd316a7feccc", + "start": { + "$date": "2021-04-24T06:00:45.000Z" + }, + "end": { + "$date": "2021-04-24T06:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7d1f9791-c185-4322-89e0-6eb64b381a0f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T06:17:50.000Z" + }, + "end": { + "$date": "2021-04-24T07:02:51.000Z" + }, + "events": [ + { + "uuid": "44d84e9b-b662-48c8-ba17-e2ae638a5b59", + "start": { + "$date": "2021-04-24T06:17:50.000Z" + }, + "end": { + "$date": "2021-04-24T07:02:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6635db7c-8d41-40bc-8452-11bca2a8e399", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T06:36:29.000Z" + }, + "end": { + "$date": "2021-04-24T06:37:45.000Z" + }, + "events": [ + { + "uuid": "326e310a-e9db-48e0-9fbe-d5fa6e54cf61", + "start": { + "$date": "2021-04-24T06:36:29.000Z" + }, + "end": { + "$date": "2021-04-24T06:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "131807fd-f11c-4c33-b441-c529b76c2141", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T06:38:28.000Z" + }, + "end": { + "$date": "2021-04-24T07:40:03.000Z" + }, + "events": [ + { + "uuid": "00db8f81-4f9a-4e81-89da-3b42b46eef75", + "start": { + "$date": "2021-04-24T06:38:28.000Z" + }, + "end": { + "$date": "2021-04-24T07:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b59aad01-0c46-4a0e-86db-666f4514c669", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T08:05:23.000Z" + }, + "end": { + "$date": "2021-04-24T08:09:28.000Z" + }, + "events": [ + { + "uuid": "8169bfb4-91b3-4005-9bbc-f76653adf8f3", + "start": { + "$date": "2021-04-24T08:05:23.000Z" + }, + "end": { + "$date": "2021-04-24T08:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "dd58145c-c641-49a1-8136-6dd8923cd840", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T08:21:09.000Z" + }, + "end": { + "$date": "2021-04-24T08:29:14.000Z" + }, + "events": [ + { + "uuid": "7a87a3ff-5454-4257-9316-fa57aed0b352", + "start": { + "$date": "2021-04-24T08:21:09.000Z" + }, + "end": { + "$date": "2021-04-24T08:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "676ae71e-edfe-4605-8d5b-58808da1e694", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-24T08:25:05.000Z" + }, + "end": { + "$date": "2021-04-24T08:37:21.000Z" + }, + "events": [ + { + "uuid": "504f102b-9543-4ba8-823f-bdd0c1fa0a54", + "start": { + "$date": "2021-04-24T08:25:05.000Z" + }, + "end": { + "$date": "2021-04-24T08:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "e02ef453-798e-479a-b0ff-82cbda637560", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T08:31:02.000Z" + }, + "end": { + "$date": "2021-04-24T10:00:24.000Z" + }, + "events": [ + { + "uuid": "2ea61147-1f69-492c-bf1e-6c375cacf972", + "start": { + "$date": "2021-04-24T08:31:02.000Z" + }, + "end": { + "$date": "2021-04-24T10:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ab96d9ce-3f2f-4053-b1f3-6a7ef760f391", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-24T15:11:44.000Z" + }, + "end": { + "$date": "2021-04-24T15:25:15.000Z" + }, + "events": [ + { + "uuid": "71a35059-40aa-48df-aa6a-a76b8f8703b5", + "start": { + "$date": "2021-04-24T15:11:44.000Z" + }, + "end": { + "$date": "2021-04-24T15:25:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "d90b9ef5-4ec7-40f7-a9c3-ffdbf4e126a3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-24T16:34:33.000Z" + }, + "end": { + "$date": "2021-04-24T18:52:55.000Z" + }, + "events": [ + { + "uuid": "eb910444-2cd1-4d16-a72d-4d0eab2c069e", + "start": { + "$date": "2021-04-24T16:34:33.000Z" + }, + "end": { + "$date": "2021-04-24T18:30:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "443dee4f-1e69-4edb-be1b-1798d6f4b6bf", + "start": { + "$date": "2021-04-24T18:30:33.000Z" + }, + "end": { + "$date": "2021-04-24T18:37:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c78139e3-ef3a-47f9-94a3-6648316b4312", + "start": { + "$date": "2021-04-24T18:37:33.000Z" + }, + "end": { + "$date": "2021-04-24T18:52:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "707e10df-7098-4720-a7a2-442351a4fd53", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-24T16:37:17.000Z" + }, + "end": { + "$date": "2021-04-24T18:01:39.000Z" + }, + "events": [ + { + "uuid": "3ebebcd0-c5ff-4242-b1ce-92598f588015", + "start": { + "$date": "2021-04-24T16:37:17.000Z" + }, + "end": { + "$date": "2021-04-24T18:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ee2e666b-e827-4af5-bba4-2a3dbb3a032c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-24T19:10:59.000Z" + }, + "end": { + "$date": "2021-04-24T19:50:54.000Z" + }, + "events": [ + { + "uuid": "fa9b6d7b-105b-4787-93b8-9e33381722f7", + "start": { + "$date": "2021-04-24T19:10:59.000Z" + }, + "end": { + "$date": "2021-04-24T19:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "faea2fe2-7020-4d3b-97ee-8cfff400542e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-24T20:32:34.000Z" + }, + "end": { + "$date": "2021-04-24T21:01:32.000Z" + }, + "events": [ + { + "uuid": "25499a7d-22e0-4a54-a454-c795a0259a57", + "start": { + "$date": "2021-04-24T20:32:34.000Z" + }, + "end": { + "$date": "2021-04-24T21:01:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2c0b591e-9aaf-47eb-b2ad-abc8c7fff1ea", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T20:43:13.000Z" + }, + "end": { + "$date": "2021-04-24T21:19:57.000Z" + }, + "events": [ + { + "uuid": "5c2b8591-a64c-4bcb-8187-1c55efc19095", + "start": { + "$date": "2021-04-24T20:43:13.000Z" + }, + "end": { + "$date": "2021-04-24T21:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "fc7e68ad-9427-4b9b-9335-1dd9e3cc86a7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-24T21:01:37.000Z" + }, + "end": { + "$date": "2021-04-25T04:54:30.000Z" + }, + "events": [ + { + "uuid": "a2098d44-24ee-4227-94f4-957f33e72640", + "start": { + "$date": "2021-04-24T21:01:37.000Z" + }, + "end": { + "$date": "2021-04-25T04:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "81b8c6d8-d114-46b7-bb2a-b194ef3d5358", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-24T21:06:23.000Z" + }, + "end": { + "$date": "2021-04-25T00:56:56.000Z" + }, + "events": [ + { + "uuid": "5e3ec393-6992-4c06-b4c5-08582e9df952", + "start": { + "$date": "2021-04-24T21:06:23.000Z" + }, + "end": { + "$date": "2021-04-25T00:24:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41178f4b-3634-4328-a393-d30961bca134", + "start": { + "$date": "2021-04-25T00:24:23.000Z" + }, + "end": { + "$date": "2021-04-25T00:29:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94ac267e-195d-4874-b95a-acf4150506db", + "start": { + "$date": "2021-04-25T00:29:23.000Z" + }, + "end": { + "$date": "2021-04-25T00:39:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14e2b335-05a2-45c7-b5f6-3edb618da747", + "start": { + "$date": "2021-04-25T00:39:23.000Z" + }, + "end": { + "$date": "2021-04-25T00:56:56.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91ff5fb5-6973-4e7d-b75d-d0f359c61398", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T22:38:54.000Z" + }, + "end": { + "$date": "2021-04-24T23:00:28.000Z" + }, + "events": [ + { + "uuid": "ec5b448e-cc7f-4a61-9c79-67960f7eb55e", + "start": { + "$date": "2021-04-24T22:38:54.000Z" + }, + "end": { + "$date": "2021-04-24T23:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cb5d05b6-6e67-4a21-9ac2-dab6f61c7e84", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-24T23:06:47.000Z" + }, + "end": { + "$date": "2021-04-24T23:56:39.000Z" + }, + "events": [ + { + "uuid": "cb2dd811-5b60-4581-97c7-71eaf6aa6c6a", + "start": { + "$date": "2021-04-24T23:06:47.000Z" + }, + "end": { + "$date": "2021-04-24T23:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6df10bf4-c225-48b9-b0c0-dfcfd7dc6459", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T23:08:02.000Z" + }, + "end": { + "$date": "2021-04-24T23:11:44.000Z" + }, + "events": [ + { + "uuid": "5df20cdf-862d-4f29-86e6-39aaa14c5dc9", + "start": { + "$date": "2021-04-24T23:08:02.000Z" + }, + "end": { + "$date": "2021-04-24T23:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1e5e1604-05fc-4e39-a5c3-37b8001eb808", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-24T23:11:58.000Z" + }, + "end": { + "$date": "2021-04-24T23:56:47.000Z" + }, + "events": [ + { + "uuid": "6ace37ec-1767-4f75-a1d4-d854bf91a1ef", + "start": { + "$date": "2021-04-24T23:11:58.000Z" + }, + "end": { + "$date": "2021-04-24T23:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c7914e0-fe2a-48f0-b6e7-f6799996868c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-24T23:44:55.000Z" + }, + "end": { + "$date": "2021-04-24T23:58:37.000Z" + }, + "events": [ + { + "uuid": "a9c4df9c-613a-43d2-bc93-99e550a00377", + "start": { + "$date": "2021-04-24T23:44:55.000Z" + }, + "end": { + "$date": "2021-04-24T23:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ead2c25-94f1-44bd-aaad-dff4e463596f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-24T23:41:49.000Z" + }, + "end": { + "$date": "2021-04-24T23:58:44.000Z" + }, + "events": [ + { + "uuid": "4f17c8cc-109c-4efb-a284-388865fe063e", + "start": { + "$date": "2021-04-24T23:41:49.000Z" + }, + "end": { + "$date": "2021-04-24T23:58:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "8222304d-d6a9-4e2f-9651-4669c35edb88", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T00:00:20.000Z" + }, + "end": { + "$date": "2021-04-25T00:57:18.000Z" + }, + "events": [ + { + "uuid": "a4022fdf-b01f-49aa-a3ce-09fa359d931e", + "start": { + "$date": "2021-04-25T00:00:20.000Z" + }, + "end": { + "$date": "2021-04-25T00:57:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb13f84d-0d6a-4e0e-bd06-fc6c16ac0341", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T00:08:55.000Z" + }, + "end": { + "$date": "2021-04-25T00:34:59.000Z" + }, + "events": [ + { + "uuid": "929e7f87-a022-49c9-8082-f5e29061585c", + "start": { + "$date": "2021-04-25T00:08:55.000Z" + }, + "end": { + "$date": "2021-04-25T00:34:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7102b4ae-68e9-4758-876f-f5892e00ad4e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T00:09:18.000Z" + }, + "end": { + "$date": "2021-04-25T00:35:53.000Z" + }, + "events": [ + { + "uuid": "adf96bdb-0464-4304-a044-508cbc7d89d2", + "start": { + "$date": "2021-04-25T00:09:18.000Z" + }, + "end": { + "$date": "2021-04-25T00:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d04ba5c4-a912-43c7-8ed5-57d5de795de4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T00:41:56.000Z" + }, + "end": { + "$date": "2021-04-25T01:10:15.000Z" + }, + "events": [ + { + "uuid": "4e017b2e-3580-42a3-865c-377b943464a4", + "start": { + "$date": "2021-04-25T00:41:56.000Z" + }, + "end": { + "$date": "2021-04-25T01:10:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bff6537c-dc7a-44a3-88d0-be2e7f79c61b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-25T00:42:35.000Z" + }, + "end": { + "$date": "2021-04-25T01:10:06.000Z" + }, + "events": [ + { + "uuid": "587f4038-8d55-4383-8f75-a3a879eba635", + "start": { + "$date": "2021-04-25T00:42:35.000Z" + }, + "end": { + "$date": "2021-04-25T01:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8635d59b-e9a6-4b53-835f-81d8cb6204a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T00:42:27.000Z" + }, + "end": { + "$date": "2021-04-25T01:10:17.000Z" + }, + "events": [ + { + "uuid": "b30b8844-5498-4cab-925b-964b8d452238", + "start": { + "$date": "2021-04-25T00:42:27.000Z" + }, + "end": { + "$date": "2021-04-25T01:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a34a0a0-9a5d-48ec-a569-a81b821c6a37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T01:18:52.000Z" + }, + "end": { + "$date": "2021-04-25T01:31:20.000Z" + }, + "events": [ + { + "uuid": "73a558cf-7f6d-4896-a817-5eca01dbf9cc", + "start": { + "$date": "2021-04-25T01:18:52.000Z" + }, + "end": { + "$date": "2021-04-25T01:31:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99e88c45-d447-4150-a06a-66780c564f5e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-25T01:10:40.000Z" + }, + "end": { + "$date": "2021-04-25T01:15:39.000Z" + }, + "events": [ + { + "uuid": "10e9eb1e-617f-45db-8bcd-752890952998", + "start": { + "$date": "2021-04-25T01:10:40.000Z" + }, + "end": { + "$date": "2021-04-25T01:15:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cba419d-15c5-46b5-96e2-8368446f1513", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T01:10:41.000Z" + }, + "end": { + "$date": "2021-04-25T01:15:40.000Z" + }, + "events": [ + { + "uuid": "3a833aa9-7d7b-4f68-acb4-097c122ba555", + "start": { + "$date": "2021-04-25T01:10:41.000Z" + }, + "end": { + "$date": "2021-04-25T01:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c2f94d3-7ddf-4713-9710-641daa6a0b15", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-25T01:18:46.000Z" + }, + "end": { + "$date": "2021-04-25T01:31:07.000Z" + }, + "events": [ + { + "uuid": "0cd79ca8-92b1-4fa5-aa71-f204cb4034ad", + "start": { + "$date": "2021-04-25T01:18:46.000Z" + }, + "end": { + "$date": "2021-04-25T01:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4ada884-ef7d-41f5-842b-5c1b224cb325", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T01:18:46.000Z" + }, + "end": { + "$date": "2021-04-25T01:31:07.000Z" + }, + "events": [ + { + "uuid": "2f7eac6c-29ec-47a5-b8c6-2fdb562d50b6", + "start": { + "$date": "2021-04-25T01:18:46.000Z" + }, + "end": { + "$date": "2021-04-25T01:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8540339-5945-43b0-af05-bcc015af06a0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T02:08:50.000Z" + }, + "end": { + "$date": "2021-04-25T04:42:31.000Z" + }, + "events": [ + { + "uuid": "4d3065a4-5447-4633-a1bc-e77ed1effe3b", + "start": { + "$date": "2021-04-25T02:08:50.000Z" + }, + "end": { + "$date": "2021-04-25T04:40:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae90125c-2ca7-4247-912e-ca4ed46902f5", + "start": { + "$date": "2021-04-25T04:40:50.000Z" + }, + "end": { + "$date": "2021-04-25T04:42:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5f5e8798-616f-42bb-843b-2b8100df572a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T02:10:42.000Z" + }, + "end": { + "$date": "2021-04-25T06:06:35.000Z" + }, + "events": [ + { + "uuid": "455a1462-e356-441d-ad63-dacdd8f5561d", + "start": { + "$date": "2021-04-25T02:10:42.000Z" + }, + "end": { + "$date": "2021-04-25T06:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "937c6f11-1392-40ff-8731-94e8aab3996c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T03:12:31.000Z" + }, + "end": { + "$date": "2021-04-25T03:12:55.000Z" + }, + "events": [ + { + "uuid": "2f8d1076-10ab-40a3-8caf-ff2f2051c7b9", + "start": { + "$date": "2021-04-25T03:12:31.000Z" + }, + "end": { + "$date": "2021-04-25T03:12:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3ad935d9-a3a0-49af-aebf-f658ea4fd4a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T03:20:02.000Z" + }, + "end": { + "$date": "2021-04-25T03:28:16.000Z" + }, + "events": [ + { + "uuid": "6a4d3ada-b579-4aca-965f-e914ccd011b9", + "start": { + "$date": "2021-04-25T03:20:02.000Z" + }, + "end": { + "$date": "2021-04-25T03:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3d274fc2-ed26-405a-8a09-360bab517fad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-25T03:32:57.000Z" + }, + "end": { + "$date": "2021-04-25T06:21:52.000Z" + }, + "events": [ + { + "uuid": "24bfc2f5-9ab8-4651-8be7-55f22b2d40df", + "start": { + "$date": "2021-04-25T03:32:57.000Z" + }, + "end": { + "$date": "2021-04-25T06:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "edd5df4b-3ef5-401f-8412-e74d736727d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-25T03:52:52.000Z" + }, + "end": { + "$date": "2021-04-25T07:03:38.000Z" + }, + "events": [ + { + "uuid": "9cc50fe9-2fee-4ba6-8f8b-59a23b7ceee5", + "start": { + "$date": "2021-04-25T03:52:52.000Z" + }, + "end": { + "$date": "2021-04-25T07:03:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8e5e1ae5-b192-41c7-b835-8e4746c2b24f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T03:56:22.000Z" + }, + "end": { + "$date": "2021-04-25T05:11:30.000Z" + }, + "events": [ + { + "uuid": "52b997a1-c0a9-449c-bf63-5b7734877038", + "start": { + "$date": "2021-04-25T03:56:22.000Z" + }, + "end": { + "$date": "2021-04-25T05:11:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f566aaf1-f31a-4c87-9213-a9a4acc20e5f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-25T04:13:51.000Z" + }, + "end": { + "$date": "2021-04-25T05:16:18.000Z" + }, + "events": [ + { + "uuid": "f6128a55-0533-45bc-88fe-1040f43185b5", + "start": { + "$date": "2021-04-25T04:13:51.000Z" + }, + "end": { + "$date": "2021-04-25T05:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7b770922-2c13-40c9-a9c6-0b27b6889f5a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T05:09:30.000Z" + }, + "end": { + "$date": "2021-04-25T05:10:54.000Z" + }, + "events": [ + { + "uuid": "a29a7019-b1a2-4ba2-b9ad-be4de89a7e8b", + "start": { + "$date": "2021-04-25T05:09:30.000Z" + }, + "end": { + "$date": "2021-04-25T05:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "d9868b28-d47f-45e4-ab73-e6320212c16d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T05:11:15.000Z" + }, + "end": { + "$date": "2021-04-25T05:26:45.000Z" + }, + "events": [ + { + "uuid": "f95e4adc-fac4-4b78-ab07-c9d37e7f011e", + "start": { + "$date": "2021-04-25T05:11:15.000Z" + }, + "end": { + "$date": "2021-04-25T05:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f1617452-2a03-4961-8944-0f09db313a53", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-25T05:16:33.000Z" + }, + "end": { + "$date": "2021-04-25T06:21:50.000Z" + }, + "events": [ + { + "uuid": "75201417-98c9-4916-9650-64ed4697eab6", + "start": { + "$date": "2021-04-25T05:16:33.000Z" + }, + "end": { + "$date": "2021-04-25T06:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8c35b1b6-a04f-43ab-90ea-61717d1c33fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T02:08:50.000Z" + }, + "end": { + "$date": "2021-04-25T05:26:32.000Z" + }, + "events": [ + { + "uuid": "66630920-600c-4667-b190-e92763464616", + "start": { + "$date": "2021-04-25T02:08:50.000Z" + }, + "end": { + "$date": "2021-04-25T05:26:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba1411d8-ae2b-4cf0-84e7-1cbcc08d8297", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T05:26:51.000Z" + }, + "end": { + "$date": "2021-04-25T06:23:52.000Z" + }, + "events": [ + { + "uuid": "ec2dc8e6-6d6a-4b70-bba9-639e8c9509c8", + "start": { + "$date": "2021-04-25T05:26:51.000Z" + }, + "end": { + "$date": "2021-04-25T06:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9744590a-1aec-4188-8c52-b39d9ad86785", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T05:30:56.000Z" + }, + "end": { + "$date": "2021-04-25T05:47:27.000Z" + }, + "events": [ + { + "uuid": "adc47cee-13e2-46d1-8781-c990b6786432", + "start": { + "$date": "2021-04-25T05:30:56.000Z" + }, + "end": { + "$date": "2021-04-25T05:47:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8e1a76d-4a01-441d-ba57-7d589f8eb183", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T05:31:18.000Z" + }, + "end": { + "$date": "2021-04-25T05:47:29.000Z" + }, + "events": [ + { + "uuid": "364c5378-793f-4d95-9498-e4e49632949d", + "start": { + "$date": "2021-04-25T05:31:18.000Z" + }, + "end": { + "$date": "2021-04-25T05:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29869766-a549-44ac-9051-334d8cad4bf1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T05:53:18.000Z" + }, + "end": { + "$date": "2021-04-25T06:17:03.000Z" + }, + "events": [ + { + "uuid": "cf5e6842-4362-4dd3-a646-ead64817f2b7", + "start": { + "$date": "2021-04-25T05:53:18.000Z" + }, + "end": { + "$date": "2021-04-25T06:17:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c36039b4-81c4-4d98-9151-f424df48fc7e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T05:54:45.000Z" + }, + "end": { + "$date": "2021-04-25T06:16:54.000Z" + }, + "events": [ + { + "uuid": "fdbe55a0-1344-4b24-ab0e-511c2f0b5671", + "start": { + "$date": "2021-04-25T05:54:45.000Z" + }, + "end": { + "$date": "2021-04-25T06:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de91b4c1-21e0-4200-9283-b9b0e8464ebd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T05:53:14.000Z" + }, + "end": { + "$date": "2021-04-25T06:16:58.000Z" + }, + "events": [ + { + "uuid": "98442034-e1a7-4694-b7a1-2d48a82c6a71", + "start": { + "$date": "2021-04-25T05:53:14.000Z" + }, + "end": { + "$date": "2021-04-25T06:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "867d7136-e732-43f7-adb4-652fc6f93d09", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T06:08:19.000Z" + }, + "end": { + "$date": "2021-04-25T06:17:27.000Z" + }, + "events": [ + { + "uuid": "7e492206-9f71-4702-ab52-4bf8482cf726", + "start": { + "$date": "2021-04-25T06:08:19.000Z" + }, + "end": { + "$date": "2021-04-25T06:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3ad3b4b-b901-4391-a9c2-fc313ae05fbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T06:20:44.000Z" + }, + "end": { + "$date": "2021-04-25T06:46:29.000Z" + }, + "events": [ + { + "uuid": "551ca74e-77aa-4110-9556-8d1e7c16d3c2", + "start": { + "$date": "2021-04-25T06:20:44.000Z" + }, + "end": { + "$date": "2021-04-25T06:46:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "140fcce5-22a5-4cee-946d-0f0b1c6a7ca2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T06:21:25.000Z" + }, + "end": { + "$date": "2021-04-25T06:46:25.000Z" + }, + "events": [ + { + "uuid": "80f3e18f-2c58-4bed-88b7-5e9cf98cd5e2", + "start": { + "$date": "2021-04-25T06:21:25.000Z" + }, + "end": { + "$date": "2021-04-25T06:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "427ea902-4366-49fc-bc23-6777a66aaf93", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T06:20:44.000Z" + }, + "end": { + "$date": "2021-04-25T06:46:37.000Z" + }, + "events": [ + { + "uuid": "991585ec-c211-4fcc-8f78-fd7c46fdb2b4", + "start": { + "$date": "2021-04-25T06:20:44.000Z" + }, + "end": { + "$date": "2021-04-25T06:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "cc7b420a-0adb-4ff9-a73d-e67f4e0dfa43", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-25T06:24:07.000Z" + }, + "end": { + "$date": "2021-04-25T07:23:35.000Z" + }, + "events": [ + { + "uuid": "64840acf-5b61-41d2-b535-259ed0f977e3", + "start": { + "$date": "2021-04-25T06:24:07.000Z" + }, + "end": { + "$date": "2021-04-25T07:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "953ef71d-3dfd-4297-987d-8db7d28daf51", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-25T08:45:22.000Z" + }, + "end": { + "$date": "2021-04-25T09:12:33.000Z" + }, + "events": [ + { + "uuid": "cac6ba5d-b6c4-4a5f-b684-982cbd4f5182", + "start": { + "$date": "2021-04-25T08:45:22.000Z" + }, + "end": { + "$date": "2021-04-25T09:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9697b8c-c31b-4889-a4d6-7422ab147074", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T06:50:15.000Z" + }, + "end": { + "$date": "2021-04-25T07:09:42.000Z" + }, + "events": [ + { + "uuid": "32e0106f-f3ad-462f-b51f-2dae4781b335", + "start": { + "$date": "2021-04-25T06:50:15.000Z" + }, + "end": { + "$date": "2021-04-25T07:09:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9993af65-a1db-4356-82cb-5a3e51a222bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T06:47:06.000Z" + }, + "end": { + "$date": "2021-04-25T06:49:40.000Z" + }, + "events": [ + { + "uuid": "4c94d820-8388-42e6-b2bf-57759014bcbb", + "start": { + "$date": "2021-04-25T06:47:06.000Z" + }, + "end": { + "$date": "2021-04-25T06:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20a0f401-1e65-4a18-9286-f8c3e24cd820", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T06:50:32.000Z" + }, + "end": { + "$date": "2021-04-25T07:10:07.000Z" + }, + "events": [ + { + "uuid": "83b03314-d94e-4077-8428-6aad78f8454f", + "start": { + "$date": "2021-04-25T06:50:32.000Z" + }, + "end": { + "$date": "2021-04-25T07:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7cc93d60-d824-4a01-9098-4471919fa0d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-25T06:51:50.000Z" + }, + "end": { + "$date": "2021-04-25T08:05:56.000Z" + }, + "events": [ + { + "uuid": "be44a8f8-9e4a-44ed-a56d-05f404c48302", + "start": { + "$date": "2021-04-25T06:51:50.000Z" + }, + "end": { + "$date": "2021-04-25T08:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f5446e5e-d357-4bdd-83f2-1cc712e7dcfd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T06:52:12.000Z" + }, + "end": { + "$date": "2021-04-25T07:41:07.000Z" + }, + "events": [ + { + "uuid": "7d7123b3-ad35-4d76-aa24-2f3546c3da51", + "start": { + "$date": "2021-04-25T06:52:12.000Z" + }, + "end": { + "$date": "2021-04-25T07:41:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb2f19c0-82c9-467a-a5fb-e55e08b426d9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T07:12:10.000Z" + }, + "end": { + "$date": "2021-04-25T07:27:02.000Z" + }, + "events": [ + { + "uuid": "4bf560d0-2774-4e81-bd27-f4ca3c99238c", + "start": { + "$date": "2021-04-25T07:12:10.000Z" + }, + "end": { + "$date": "2021-04-25T07:27:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98267f17-b351-4dfa-92dd-1f20547793be", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T07:12:13.000Z" + }, + "end": { + "$date": "2021-04-25T07:26:58.000Z" + }, + "events": [ + { + "uuid": "5d9b4dc5-8679-4193-8f34-16c36d6a928a", + "start": { + "$date": "2021-04-25T07:12:13.000Z" + }, + "end": { + "$date": "2021-04-25T07:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2d7125bb-a0f1-4f6c-af4e-e4ec5d25871c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-25T07:18:57.000Z" + }, + "end": { + "$date": "2021-04-25T09:45:26.000Z" + }, + "events": [ + { + "uuid": "6bb4e1b6-ee77-43bd-8746-a4c008f15226", + "start": { + "$date": "2021-04-25T07:18:57.000Z" + }, + "end": { + "$date": "2021-04-25T07:53:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad1a5aa7-dcae-49aa-bbfb-0e2b2679a662", + "start": { + "$date": "2021-04-25T07:53:57.000Z" + }, + "end": { + "$date": "2021-04-25T08:08:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f245f88d-48de-400d-a28e-416dcd75304b", + "start": { + "$date": "2021-04-25T08:08:57.000Z" + }, + "end": { + "$date": "2021-04-25T09:45:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c951892b-8059-400b-958e-c35ae9700951", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T07:30:26.000Z" + }, + "end": { + "$date": "2021-04-25T08:01:23.000Z" + }, + "events": [ + { + "uuid": "59c45abb-94f1-4504-a125-f5ff459ff161", + "start": { + "$date": "2021-04-25T07:30:26.000Z" + }, + "end": { + "$date": "2021-04-25T08:01:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f94cad52-16d2-4a2a-8381-2b77e10a496b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T07:30:26.000Z" + }, + "end": { + "$date": "2021-04-25T08:01:22.000Z" + }, + "events": [ + { + "uuid": "e11cdff6-6635-498f-a6ef-3afbeb1677a6", + "start": { + "$date": "2021-04-25T07:30:26.000Z" + }, + "end": { + "$date": "2021-04-25T08:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3bae3eef-d887-4540-a3b9-e4831b9f5e66", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T07:35:55.000Z" + }, + "end": { + "$date": "2021-04-25T11:21:26.000Z" + }, + "events": [ + { + "uuid": "fb7060e2-15d7-4d2a-b965-5f22a5900076", + "start": { + "$date": "2021-04-25T07:35:55.000Z" + }, + "end": { + "$date": "2021-04-25T11:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "460d653a-c992-4383-8b31-cc55d04b9057", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T08:06:38.000Z" + }, + "end": { + "$date": "2021-04-25T08:36:56.000Z" + }, + "events": [ + { + "uuid": "b8537238-a5b9-4630-bd71-4ca5319aeec0", + "start": { + "$date": "2021-04-25T08:06:38.000Z" + }, + "end": { + "$date": "2021-04-25T08:36:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "310c9547-fcd5-4086-a4f4-c1c987cbfe77", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T08:07:03.000Z" + }, + "end": { + "$date": "2021-04-25T08:37:55.000Z" + }, + "events": [ + { + "uuid": "615ae233-9534-4076-9e05-6149a07910c9", + "start": { + "$date": "2021-04-25T08:07:03.000Z" + }, + "end": { + "$date": "2021-04-25T08:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b491f9f6-9b53-4731-82c2-1f5bf448d184", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T08:45:05.000Z" + }, + "end": { + "$date": "2021-04-25T09:12:35.000Z" + }, + "events": [ + { + "uuid": "b01fdac9-f96e-4bae-80fa-e13bfdae9289", + "start": { + "$date": "2021-04-25T08:45:05.000Z" + }, + "end": { + "$date": "2021-04-25T09:12:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6f993bf-96fe-4592-bc34-644e3bdb2d83", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T08:40:11.000Z" + }, + "end": { + "$date": "2021-04-25T08:40:27.000Z" + }, + "events": [ + { + "uuid": "414a8c7f-0ffe-4f07-94f9-7d77ba2a0a2c", + "start": { + "$date": "2021-04-25T08:40:11.000Z" + }, + "end": { + "$date": "2021-04-25T08:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcc43480-52a9-4707-bb64-d3fb1ac26823", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T08:45:02.000Z" + }, + "end": { + "$date": "2021-04-25T09:12:36.000Z" + }, + "events": [ + { + "uuid": "a951f933-5dd7-48e7-a94d-3a9ac1dc1f1e", + "start": { + "$date": "2021-04-25T08:45:02.000Z" + }, + "end": { + "$date": "2021-04-25T09:12:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b2c0871-b89d-4d05-9086-6cb2e35ef695", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-25T14:25:42.000Z" + }, + "end": { + "$date": "2021-04-25T16:10:40.000Z" + }, + "events": [ + { + "uuid": "e4aeed79-235f-427a-8132-eec430b0d108", + "start": { + "$date": "2021-04-25T14:25:42.000Z" + }, + "end": { + "$date": "2021-04-25T16:10:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "983b6937-f298-42ba-a176-3fcacdc19499", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T14:37:12.000Z" + }, + "end": { + "$date": "2021-04-25T14:41:06.000Z" + }, + "events": [ + { + "uuid": "030a7d27-538e-4d6a-9a68-26fbd7a66990", + "start": { + "$date": "2021-04-25T14:37:12.000Z" + }, + "end": { + "$date": "2021-04-25T14:41:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a4672658-006e-4070-8c27-87b0b8f89054", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T15:11:15.000Z" + }, + "end": { + "$date": "2021-04-25T16:20:53.000Z" + }, + "events": [ + { + "uuid": "7e8e020e-fbb3-4b06-9ae4-1b1615b7730b", + "start": { + "$date": "2021-04-25T15:11:15.000Z" + }, + "end": { + "$date": "2021-04-25T16:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", + "uuid": "22e83694-9c0b-4ab9-ab49-5889cf57a7e9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-25T15:19:57.000Z" + }, + "end": { + "$date": "2021-04-25T15:32:06.000Z" + }, + "events": [ + { + "uuid": "ba28c9c4-55e7-48d6-967c-083d0a2d5b47", + "start": { + "$date": "2021-04-25T15:19:57.000Z" + }, + "end": { + "$date": "2021-04-25T15:32:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "131b0480-7619-4be5-873b-d234e4439871", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T17:08:06.000Z" + }, + "end": { + "$date": "2021-04-25T17:24:11.000Z" + }, + "events": [ + { + "uuid": "d8c3b7b5-788e-457a-b46a-75dac030768d", + "start": { + "$date": "2021-04-25T17:08:06.000Z" + }, + "end": { + "$date": "2021-04-25T17:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "50965c0a-6cc0-4c0d-901b-b3ffdb78c60c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T16:33:30.000Z" + }, + "end": { + "$date": "2021-04-25T17:05:00.000Z" + }, + "events": [ + { + "uuid": "76bded15-d4cb-4aa5-b7d8-c5ca010cc7bf", + "start": { + "$date": "2021-04-25T16:33:30.000Z" + }, + "end": { + "$date": "2021-04-25T17:05:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "117aa98c-a577-4bc6-a731-c56f4d42f680", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-25T16:41:10.000Z" + }, + "end": { + "$date": "2021-04-25T18:45:24.000Z" + }, + "events": [ + { + "uuid": "be8920f1-5e12-4545-b311-842866af5c3e", + "start": { + "$date": "2021-04-25T16:41:10.000Z" + }, + "end": { + "$date": "2021-04-25T18:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7ae9f087-df46-4086-996a-cb8741daba2f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T17:00:29.000Z" + }, + "end": { + "$date": "2021-04-25T17:25:25.000Z" + }, + "events": [ + { + "uuid": "ede6a3c4-16a2-4c44-add4-a4134569eccd", + "start": { + "$date": "2021-04-25T17:00:29.000Z" + }, + "end": { + "$date": "2021-04-25T17:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "215961cb-870c-454c-af36-3fff2bfd61f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T17:38:40.000Z" + }, + "end": { + "$date": "2021-04-25T17:54:00.000Z" + }, + "events": [ + { + "uuid": "6b80283c-7742-475a-b0f2-aeae5d1abc3c", + "start": { + "$date": "2021-04-25T17:38:40.000Z" + }, + "end": { + "$date": "2021-04-25T17:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb0b2656-8ac2-4952-94b8-a13621204081", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-25T17:54:06.000Z" + }, + "end": { + "$date": "2021-04-25T20:58:20.000Z" + }, + "events": [ + { + "uuid": "29d46a39-7777-46fa-b1a6-5fa862efaafb", + "start": { + "$date": "2021-04-25T17:54:06.000Z" + }, + "end": { + "$date": "2021-04-25T20:54:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe04b367-fdee-4a35-9418-481f56d1eafa", + "start": { + "$date": "2021-04-25T20:54:06.000Z" + }, + "end": { + "$date": "2021-04-25T20:56:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "caebe5bb-40c8-453f-9cde-88f2a148fa1b", + "start": { + "$date": "2021-04-25T20:56:06.000Z" + }, + "end": { + "$date": "2021-04-25T20:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d9bf1dbc-50b1-450f-a130-5c8a0735058d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-25T18:42:14.000Z" + }, + "end": { + "$date": "2021-04-25T18:46:25.000Z" + }, + "events": [ + { + "uuid": "0f57cfe2-8b2e-4e98-878c-1a443374b1d2", + "start": { + "$date": "2021-04-25T18:42:14.000Z" + }, + "end": { + "$date": "2021-04-25T18:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f7fb323-b3c2-4331-ab5d-3571bb6ef701", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T19:13:14.000Z" + }, + "end": { + "$date": "2021-04-25T19:18:41.000Z" + }, + "events": [ + { + "uuid": "c28cb301-aab1-42c2-92e3-33f35830a87b", + "start": { + "$date": "2021-04-25T19:13:14.000Z" + }, + "end": { + "$date": "2021-04-25T19:18:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "77cad82e-6bd8-45a4-9f38-5c688535fd96", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T19:18:58.000Z" + }, + "end": { + "$date": "2021-04-25T20:33:17.000Z" + }, + "events": [ + { + "uuid": "a733226f-b06f-46a5-a411-92165de72ee5", + "start": { + "$date": "2021-04-25T19:18:58.000Z" + }, + "end": { + "$date": "2021-04-25T20:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9491e69f-d2de-47a6-b6f5-a9ae85f07a6e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T19:31:12.000Z" + }, + "end": { + "$date": "2021-04-25T20:48:45.000Z" + }, + "events": [ + { + "uuid": "a34a55cd-dc46-4999-ab83-eed711275241", + "start": { + "$date": "2021-04-25T19:31:12.000Z" + }, + "end": { + "$date": "2021-04-25T20:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "010dfdd8-21a1-472f-a823-b8bfa6807ccd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-25T20:21:58.000Z" + }, + "end": { + "$date": "2021-04-25T20:32:09.000Z" + }, + "events": [ + { + "uuid": "ea974553-9126-412d-98a6-a8cbf44e3b55", + "start": { + "$date": "2021-04-25T20:21:58.000Z" + }, + "end": { + "$date": "2021-04-25T20:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39026743-e940-4c60-bc07-b5749fe0e6dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T20:49:59.000Z" + }, + "end": { + "$date": "2021-04-25T21:24:23.000Z" + }, + "events": [ + { + "uuid": "c0842831-494d-4825-a03b-ab1f36decb62", + "start": { + "$date": "2021-04-25T20:49:59.000Z" + }, + "end": { + "$date": "2021-04-25T21:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cb853d4-06ad-4c5d-b108-9f3e2d2c6b15", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T21:30:16.000Z" + }, + "end": { + "$date": "2021-04-25T22:01:59.000Z" + }, + "events": [ + { + "uuid": "f491ebde-0dfe-4543-bfda-094243903fde", + "start": { + "$date": "2021-04-25T21:30:16.000Z" + }, + "end": { + "$date": "2021-04-25T22:01:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d20e3db-7ff6-4c0e-a950-2243be42a826", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T21:30:16.000Z" + }, + "end": { + "$date": "2021-04-25T22:02:23.000Z" + }, + "events": [ + { + "uuid": "9f5cb431-8fab-494b-a73e-0bb75624c34c", + "start": { + "$date": "2021-04-25T21:30:16.000Z" + }, + "end": { + "$date": "2021-04-25T22:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "321c503f-5b25-4111-9d53-b4cb4c675292", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T21:29:15.000Z" + }, + "end": { + "$date": "2021-04-25T22:01:21.000Z" + }, + "events": [ + { + "uuid": "6d1b78d2-8352-437b-8ab8-f230aff53386", + "start": { + "$date": "2021-04-25T21:29:15.000Z" + }, + "end": { + "$date": "2021-04-25T22:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bd208d98-728c-4d6e-9eed-43477891788c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T21:35:12.000Z" + }, + "end": { + "$date": "2021-04-25T21:49:26.000Z" + }, + "events": [ + { + "uuid": "9e92b095-9c56-4fdb-802d-cb504c2e52f2", + "start": { + "$date": "2021-04-25T21:35:12.000Z" + }, + "end": { + "$date": "2021-04-25T21:49:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b05e5499-c23b-4e2f-9b66-4c06f6306f5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-25T22:26:34.000Z" + }, + "end": { + "$date": "2021-04-25T22:48:53.000Z" + }, + "events": [ + { + "uuid": "0b5e4d26-c002-4823-bb9d-a4a041213b00", + "start": { + "$date": "2021-04-25T22:26:34.000Z" + }, + "end": { + "$date": "2021-04-25T22:48:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e207113c-5901-4779-8dbe-ea408546c43e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-25T22:08:28.000Z" + }, + "end": { + "$date": "2021-04-26T00:15:46.000Z" + }, + "events": [ + { + "uuid": "a5723e43-2b8d-4241-ab8f-00961f30608a", + "start": { + "$date": "2021-04-25T22:08:28.000Z" + }, + "end": { + "$date": "2021-04-26T00:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "19a78d90-871c-450e-9c18-52eb1123847f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T22:09:47.000Z" + }, + "end": { + "$date": "2021-04-25T22:10:52.000Z" + }, + "events": [ + { + "uuid": "35220c26-3564-4772-bcca-a3acd8080c9f", + "start": { + "$date": "2021-04-25T22:09:47.000Z" + }, + "end": { + "$date": "2021-04-25T22:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "925ae1ac-6798-4f06-a9ed-de8e60778771", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T22:09:55.000Z" + }, + "end": { + "$date": "2021-04-25T22:14:43.000Z" + }, + "events": [ + { + "uuid": "4e6e0eb4-aa4b-4698-b12d-086b0c30d0f7", + "start": { + "$date": "2021-04-25T22:09:55.000Z" + }, + "end": { + "$date": "2021-04-25T22:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "61c0ffa0-adbe-4240-9775-872bb43214f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-25T22:11:07.000Z" + }, + "end": { + "$date": "2021-04-26T00:14:58.000Z" + }, + "events": [ + { + "uuid": "762c2365-8676-4623-b387-a01742c6b739", + "start": { + "$date": "2021-04-25T22:11:07.000Z" + }, + "end": { + "$date": "2021-04-26T00:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "684fcdea-3af1-4a4b-8e4c-c6e9a33bb1cc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T22:19:32.000Z" + }, + "end": { + "$date": "2021-04-25T22:22:10.000Z" + }, + "events": [ + { + "uuid": "4da6780e-60f9-4372-9e24-0e9b7a1562b3", + "start": { + "$date": "2021-04-25T22:19:32.000Z" + }, + "end": { + "$date": "2021-04-25T22:22:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8dec0bf-0134-4a7c-a703-aa539717da0f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-25T22:26:35.000Z" + }, + "end": { + "$date": "2021-04-25T22:49:04.000Z" + }, + "events": [ + { + "uuid": "395e267b-4151-4724-b3c4-58ad70902160", + "start": { + "$date": "2021-04-25T22:26:35.000Z" + }, + "end": { + "$date": "2021-04-25T22:49:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5aff2db0-4258-4df1-b729-666136adeb99", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T22:22:27.000Z" + }, + "end": { + "$date": "2021-04-25T22:25:18.000Z" + }, + "events": [ + { + "uuid": "cc3aa356-01b5-49a0-b024-014107c58da3", + "start": { + "$date": "2021-04-25T22:22:27.000Z" + }, + "end": { + "$date": "2021-04-25T22:25:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c20eb8e2-14d9-43ea-9d30-5dbaeb2e4cb1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-25T22:25:28.000Z" + }, + "end": { + "$date": "2021-04-26T00:15:34.000Z" + }, + "events": [ + { + "uuid": "7422737d-0868-498d-953f-3e580012932e", + "start": { + "$date": "2021-04-25T22:25:28.000Z" + }, + "end": { + "$date": "2021-04-26T00:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e968fa17-2813-407f-bd06-d1371612bd0b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-25T23:20:12.000Z" + }, + "end": { + "$date": "2021-04-26T00:17:04.000Z" + }, + "events": [ + { + "uuid": "efb01d33-129c-4e14-aa82-a4960c756797", + "start": { + "$date": "2021-04-25T23:20:12.000Z" + }, + "end": { + "$date": "2021-04-26T00:04:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "676d4c86-395e-4859-babe-abbe93010678", + "start": { + "$date": "2021-04-26T00:04:12.000Z" + }, + "end": { + "$date": "2021-04-26T00:17:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2f922cca-79b5-4d86-8265-c27e3ea73436", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-26T03:07:26.000Z" + }, + "end": { + "$date": "2021-04-26T03:11:45.000Z" + }, + "events": [ + { + "uuid": "772e6180-3bd2-4119-8ed5-866af98c5cf6", + "start": { + "$date": "2021-04-26T03:07:26.000Z" + }, + "end": { + "$date": "2021-04-26T03:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61dadf42-2f55-4aa5-85f6-86ec072ed5b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-26T02:22:13.000Z" + }, + "end": { + "$date": "2021-04-26T03:08:22.000Z" + }, + "events": [ + { + "uuid": "61167103-e140-4ce5-b955-5bf1763ec0ee", + "start": { + "$date": "2021-04-26T02:22:13.000Z" + }, + "end": { + "$date": "2021-04-26T03:08:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee83a211-c9e4-41a2-a3fe-345a5148d83b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-26T02:25:10.000Z" + }, + "end": { + "$date": "2021-04-26T04:27:25.000Z" + }, + "events": [ + { + "uuid": "055b9bda-b91a-494c-b57f-7af31a483433", + "start": { + "$date": "2021-04-26T02:25:10.000Z" + }, + "end": { + "$date": "2021-04-26T03:13:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "32de458a-e9dc-47a5-8b0e-780b5195c568", + "start": { + "$date": "2021-04-26T03:13:10.000Z" + }, + "end": { + "$date": "2021-04-26T03:15:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80d7f094-a30f-4cf1-ac4e-2ec7d338ef0a", + "start": { + "$date": "2021-04-26T03:15:10.000Z" + }, + "end": { + "$date": "2021-04-26T03:26:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bba07c4a-74fe-43ad-85ca-4b44f8786c5f", + "start": { + "$date": "2021-04-26T03:26:10.000Z" + }, + "end": { + "$date": "2021-04-26T03:29:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f921550e-1f4e-4471-baf4-3736a5bc9868", + "start": { + "$date": "2021-04-26T03:29:10.000Z" + }, + "end": { + "$date": "2021-04-26T04:27:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18ee19bf-c90a-4927-82ee-8ea5b8eebb37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-26T03:15:41.000Z" + }, + "end": { + "$date": "2021-04-26T03:52:50.000Z" + }, + "events": [ + { + "uuid": "17d0f505-7a9c-433f-aa4b-5a698deec198", + "start": { + "$date": "2021-04-26T03:15:41.000Z" + }, + "end": { + "$date": "2021-04-26T03:52:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7d665aa-c329-464d-884e-47390ee4e29b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-26T03:15:53.000Z" + }, + "end": { + "$date": "2021-04-26T03:52:47.000Z" + }, + "events": [ + { + "uuid": "3a1af0a3-3d31-440d-956b-082be488ddf9", + "start": { + "$date": "2021-04-26T03:15:53.000Z" + }, + "end": { + "$date": "2021-04-26T03:52:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6ca8fb6b-c732-4ad7-adeb-c529a96f0d83", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-26T03:12:01.000Z" + }, + "end": { + "$date": "2021-04-26T04:26:09.000Z" + }, + "events": [ + { + "uuid": "303111b6-95f0-4f4d-a43e-92bae676ccd7", + "start": { + "$date": "2021-04-26T03:12:01.000Z" + }, + "end": { + "$date": "2021-04-26T04:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "2f48254e-2807-40ac-9e45-fa3947c86107", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-26T03:21:10.000Z" + }, + "end": { + "$date": "2021-04-26T04:30:36.000Z" + }, + "events": [ + { + "uuid": "120d0987-df37-4187-b845-d7a2b2480e54", + "start": { + "$date": "2021-04-26T03:21:10.000Z" + }, + "end": { + "$date": "2021-04-26T04:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d811940-3c7a-4e05-a4ed-1118b45acab7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-26T04:02:38.000Z" + }, + "end": { + "$date": "2021-04-26T04:26:00.000Z" + }, + "events": [ + { + "uuid": "73b002a4-8b10-4de9-bef2-23b3b2e98d60", + "start": { + "$date": "2021-04-26T04:02:38.000Z" + }, + "end": { + "$date": "2021-04-26T04:26:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaa0f521-fb57-43f8-b898-f70b29a6bf8d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-26T03:55:59.000Z" + }, + "end": { + "$date": "2021-04-26T04:01:01.000Z" + }, + "events": [ + { + "uuid": "0b62b90d-d57a-4569-a467-aa9de6ece978", + "start": { + "$date": "2021-04-26T03:55:59.000Z" + }, + "end": { + "$date": "2021-04-26T04:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5ffb0a5c-3ca3-43a5-b6b6-16297baea2ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-26T03:58:36.000Z" + }, + "end": { + "$date": "2021-04-26T06:15:05.000Z" + }, + "events": [ + { + "uuid": "77073809-dd8b-4201-b671-5bbf546c0943", + "start": { + "$date": "2021-04-26T03:58:36.000Z" + }, + "end": { + "$date": "2021-04-26T05:07:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70740179-8dde-43ce-bc67-f15b0cd1fac4", + "start": { + "$date": "2021-04-26T05:07:36.000Z" + }, + "end": { + "$date": "2021-04-26T05:17:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5690f38-66f8-490c-9d6d-e9fbde487c93", + "start": { + "$date": "2021-04-26T05:17:36.000Z" + }, + "end": { + "$date": "2021-04-26T06:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c18ff015-6467-41a9-93c3-cb2d932bc946", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-26T04:10:15.000Z" + }, + "end": { + "$date": "2021-04-26T04:25:59.000Z" + }, + "events": [ + { + "uuid": "86fc6a23-cf2c-4b7b-b2d0-efe9e063cc6e", + "start": { + "$date": "2021-04-26T04:10:15.000Z" + }, + "end": { + "$date": "2021-04-26T04:25:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2607ad83-fbfe-4644-979c-b500099c5fd0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-26T04:21:49.000Z" + }, + "end": { + "$date": "2021-04-26T05:42:59.000Z" + }, + "events": [ + { + "uuid": "d020c545-2a71-4b9c-b27c-e084e44c3107", + "start": { + "$date": "2021-04-26T04:21:49.000Z" + }, + "end": { + "$date": "2021-04-26T05:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ff007919-1b05-4541-9641-6bcb4a446fa8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-26T04:35:12.000Z" + }, + "end": { + "$date": "2021-04-26T06:00:02.000Z" + }, + "events": [ + { + "uuid": "c37fc281-32a1-42bf-b88c-3a8530bb517b", + "start": { + "$date": "2021-04-26T04:35:12.000Z" + }, + "end": { + "$date": "2021-04-26T06:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6b8d0cda-d57d-4d73-988f-7c0d3e088787", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-26T15:05:39.000Z" + }, + "end": { + "$date": "2021-04-26T16:15:14.000Z" + }, + "events": [ + { + "uuid": "d141badc-a53b-4265-aa20-e139af56a6f1", + "start": { + "$date": "2021-04-26T15:05:39.000Z" + }, + "end": { + "$date": "2021-04-26T16:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c051ebf-858a-4952-b151-5b6123424928", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-26T16:57:28.000Z" + }, + "end": { + "$date": "2021-04-26T17:24:57.000Z" + }, + "events": [ + { + "uuid": "f58179b2-8842-4c43-9a8f-377987a9b7bd", + "start": { + "$date": "2021-04-26T16:57:28.000Z" + }, + "end": { + "$date": "2021-04-26T17:24:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "35ed4060-2a6c-4464-a3a5-029aed7258bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-26T17:20:04.000Z" + }, + "end": { + "$date": "2021-04-26T18:35:13.000Z" + }, + "events": [ + { + "uuid": "b36fb4b6-d52c-4a42-b3b3-7619facba618", + "start": { + "$date": "2021-04-26T17:20:04.000Z" + }, + "end": { + "$date": "2021-04-26T18:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a31848ad-1bd2-4a1c-aa75-2b9f3a60b41f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-26T18:36:19.000Z" + }, + "end": { + "$date": "2021-04-26T19:03:10.000Z" + }, + "events": [ + { + "uuid": "8d4d73a3-1cb2-43f4-8d97-f1b415869cb3", + "start": { + "$date": "2021-04-26T18:36:19.000Z" + }, + "end": { + "$date": "2021-04-26T19:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4cdcc7b1-2e6b-4d89-b136-be0de00be76d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-26T19:04:51.000Z" + }, + "end": { + "$date": "2021-04-26T20:24:22.000Z" + }, + "events": [ + { + "uuid": "bada93dc-3944-46f5-8803-eeef780f115e", + "start": { + "$date": "2021-04-26T19:04:51.000Z" + }, + "end": { + "$date": "2021-04-26T19:50:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14f88052-be28-4d6f-a724-5de69dd43f33", + "start": { + "$date": "2021-04-26T19:50:51.000Z" + }, + "end": { + "$date": "2021-04-26T19:53:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7cc3dc7-a59d-44ba-a436-2edf6e4782e3", + "start": { + "$date": "2021-04-26T19:53:51.000Z" + }, + "end": { + "$date": "2021-04-26T20:24:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "22abf682-6fde-4065-a84b-05b0dbc1da6c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-26T19:18:11.000Z" + }, + "end": { + "$date": "2021-04-26T22:04:21.000Z" + }, + "events": [ + { + "uuid": "6e17eafd-017d-47ca-b31e-fbf2c71448e3", + "start": { + "$date": "2021-04-26T19:18:11.000Z" + }, + "end": { + "$date": "2021-04-26T22:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "43b737b9-32b9-4881-af7e-592c4d714c16", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-26T20:38:23.000Z" + }, + "end": { + "$date": "2021-04-26T20:42:06.000Z" + }, + "events": [ + { + "uuid": "6a81e876-4e31-40de-912a-83bbd8ef6ba7", + "start": { + "$date": "2021-04-26T20:38:23.000Z" + }, + "end": { + "$date": "2021-04-26T20:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7b288552-c222-437f-bcc1-58ef0f228148", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-26T20:46:09.000Z" + }, + "end": { + "$date": "2021-04-26T21:41:02.000Z" + }, + "events": [ + { + "uuid": "7116c47c-2346-4c46-b717-d3c641982250", + "start": { + "$date": "2021-04-26T20:46:09.000Z" + }, + "end": { + "$date": "2021-04-26T21:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d702f961-c27c-42ad-80a5-e6f06a82131f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-26T22:04:31.000Z" + }, + "end": { + "$date": "2021-04-26T22:43:34.000Z" + }, + "events": [ + { + "uuid": "6348099c-6c51-46e8-81dc-df8cb479cca4", + "start": { + "$date": "2021-04-26T22:04:31.000Z" + }, + "end": { + "$date": "2021-04-26T22:43:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "ce31f330-6999-417e-9245-ffdbe5d477ff", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-26T22:05:14.000Z" + }, + "end": { + "$date": "2021-04-26T22:07:20.000Z" + }, + "events": [ + { + "uuid": "1124934b-ea22-431b-8712-449ea6868598", + "start": { + "$date": "2021-04-26T22:05:14.000Z" + }, + "end": { + "$date": "2021-04-26T22:07:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "bfcf182d-3031-4aa3-b718-a0547726967d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-27T00:20:02.000Z" + }, + "end": { + "$date": "2021-04-27T00:50:47.000Z" + }, + "events": [ + { + "uuid": "14da12c8-6c50-4a05-8abd-7b6c619921e5", + "start": { + "$date": "2021-04-27T00:20:02.000Z" + }, + "end": { + "$date": "2021-04-27T00:50:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75a439db-d610-40f6-9995-08b14ee599ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T00:37:17.000Z" + }, + "end": { + "$date": "2021-04-27T01:10:06.000Z" + }, + "events": [ + { + "uuid": "ac37a9f4-25ed-402b-8f74-cb08772bbcb3", + "start": { + "$date": "2021-04-27T00:37:17.000Z" + }, + "end": { + "$date": "2021-04-27T01:10:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "9ead516b-6f90-4063-a4c2-c0cff71531d6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-27T00:25:53.000Z" + }, + "end": { + "$date": "2021-04-27T02:04:36.000Z" + }, + "events": [ + { + "uuid": "c9f9ca0e-d2aa-4091-98a4-b6f2e6f040e5", + "start": { + "$date": "2021-04-27T00:25:53.000Z" + }, + "end": { + "$date": "2021-04-27T02:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35999f77-2f7e-4bc9-aa13-cd285fec2f35", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T00:37:15.000Z" + }, + "end": { + "$date": "2021-04-27T01:10:05.000Z" + }, + "events": [ + { + "uuid": "886a6349-ab59-4b5f-80cf-454c4ae68c0f", + "start": { + "$date": "2021-04-27T00:37:15.000Z" + }, + "end": { + "$date": "2021-04-27T01:10:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "68ea7742-713f-4cc0-ac7c-0666d0b3924d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-27T00:43:28.000Z" + }, + "end": { + "$date": "2021-04-27T02:04:07.000Z" + }, + "events": [ + { + "uuid": "ee35d81a-d3e0-4a48-840b-4976d3f8b265", + "start": { + "$date": "2021-04-27T00:43:28.000Z" + }, + "end": { + "$date": "2021-04-27T02:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "07e70928-9d36-4a3b-864b-581653f84dd4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-27T00:54:44.000Z" + }, + "end": { + "$date": "2021-04-27T01:40:51.000Z" + }, + "events": [ + { + "uuid": "c38b2572-9d86-4269-b3cd-46070be411b6", + "start": { + "$date": "2021-04-27T00:54:44.000Z" + }, + "end": { + "$date": "2021-04-27T01:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "42b70e43-92e9-47c6-8908-5027dad406ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-27T01:06:23.000Z" + }, + "end": { + "$date": "2021-04-27T03:27:14.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T01:06:23.000Z" + }, + "end": { + "$date": "2021-04-27T03:27:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d97c810b-b8ab-40ea-85ef-7b3920ba0064", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-27T01:06:23.000Z" + }, + "end": { + "$date": "2021-04-27T03:27:28.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T01:06:23.000Z" + }, + "end": { + "$date": "2021-04-27T03:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e372a06d-9337-45b2-82ea-4ab1fa5842e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T01:27:42.000Z" + }, + "end": { + "$date": "2021-04-27T02:02:42.000Z" + }, + "events": [ + { + "uuid": "f80d5702-7ddc-46d5-82df-76caa1fc38e0", + "start": { + "$date": "2021-04-27T01:27:42.000Z" + }, + "end": { + "$date": "2021-04-27T02:02:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8fd0900-2108-4cf9-9ee7-440e243c2d1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T01:29:19.000Z" + }, + "end": { + "$date": "2021-04-27T02:02:36.000Z" + }, + "events": [ + { + "uuid": "f04ca26b-c827-4d18-bc42-2c5527c31801", + "start": { + "$date": "2021-04-27T01:29:19.000Z" + }, + "end": { + "$date": "2021-04-27T02:02:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5952680b-548b-4a84-b5ab-e5b414209c1f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-27T01:23:11.000Z" + }, + "end": { + "$date": "2021-04-27T01:24:36.000Z" + }, + "events": [ + { + "uuid": "8141ff64-6da6-4630-bb6d-c86d99923ded", + "start": { + "$date": "2021-04-27T01:23:11.000Z" + }, + "end": { + "$date": "2021-04-27T01:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "716dc7cd-ea93-4a77-a0a8-1e059fb14fcb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-27T01:24:47.000Z" + }, + "end": { + "$date": "2021-04-27T01:48:47.000Z" + }, + "events": [ + { + "uuid": "ac960256-d49e-4aec-ad84-08bac3df8524", + "start": { + "$date": "2021-04-27T01:24:47.000Z" + }, + "end": { + "$date": "2021-04-27T01:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0bccf696-7bb6-4a2a-85e3-6bb938656d80", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-27T01:54:28.000Z" + }, + "end": { + "$date": "2021-04-27T05:04:09.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T01:54:28.000Z" + }, + "end": { + "$date": "2021-04-27T05:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81064c2d-d879-4bf5-8ca7-592ab230ef4d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T02:09:09.000Z" + }, + "end": { + "$date": "2021-04-27T02:38:13.000Z" + }, + "events": [ + { + "uuid": "11bbecc8-1734-4589-a97e-80501d08a153", + "start": { + "$date": "2021-04-27T02:09:09.000Z" + }, + "end": { + "$date": "2021-04-27T02:38:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eb0cff60-8376-4384-b5a9-6b57dda26f9a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-27T02:03:30.000Z" + }, + "end": { + "$date": "2021-04-27T03:30:00.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T02:03:30.000Z" + }, + "end": { + "$date": "2021-04-27T03:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35a30134-4e86-40c4-8114-261d41568667", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T02:10:06.000Z" + }, + "end": { + "$date": "2021-04-27T02:38:12.000Z" + }, + "events": [ + { + "uuid": "8f26933e-828d-4c23-a17e-ecfd40e136d3", + "start": { + "$date": "2021-04-27T02:10:06.000Z" + }, + "end": { + "$date": "2021-04-27T02:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb3a2dd7-380e-4b27-8382-539d725adf6f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-27T02:05:54.000Z" + }, + "end": { + "$date": "2021-04-27T02:07:19.000Z" + }, + "events": [ + { + "uuid": "97631e69-6a46-42b4-8440-b9a5a2a8ac29", + "start": { + "$date": "2021-04-27T02:05:54.000Z" + }, + "end": { + "$date": "2021-04-27T02:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eec10587-9350-4af8-9ba9-d986afbf08bf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-27T02:07:39.000Z" + }, + "end": { + "$date": "2021-04-27T02:48:37.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T02:07:39.000Z" + }, + "end": { + "$date": "2021-04-27T02:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", + "uuid": "6aced8c1-78ba-48e9-adbe-164b450ae122", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-27T02:08:40.000Z" + }, + "end": { + "$date": "2021-04-27T04:01:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T02:08:40.000Z" + }, + "end": { + "$date": "2021-04-27T04:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57041070-addb-4d13-ad3e-3b45d19ff893", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T02:45:27.000Z" + }, + "end": { + "$date": "2021-04-27T03:08:48.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T02:45:27.000Z" + }, + "end": { + "$date": "2021-04-27T03:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ce440f6-37da-4d73-92a0-a3de5106e7e5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T02:45:23.000Z" + }, + "end": { + "$date": "2021-04-27T03:08:48.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-04-27T02:45:23.000Z" + }, + "end": { + "$date": "2021-04-27T03:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6dcabe2-e283-401e-9d39-f2d17a595b9c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T03:15:53.000Z" + }, + "end": { + "$date": "2021-04-27T03:40:41.000Z" + }, + "events": [ + { + "uuid": "94c058d5-6db4-4853-ac61-461af4284d88", + "start": { + "$date": "2021-04-27T03:15:53.000Z" + }, + "end": { + "$date": "2021-04-27T03:40:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd3b1248-4171-4922-8be0-51c5aaff00b7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T03:15:49.000Z" + }, + "end": { + "$date": "2021-04-27T03:40:43.000Z" + }, + "events": [ + { + "uuid": "703a903f-a5c0-49ae-b6a3-7a4abdb58a34", + "start": { + "$date": "2021-04-27T03:15:49.000Z" + }, + "end": { + "$date": "2021-04-27T03:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5bc75ada-25fb-4639-b811-4340a6ef933d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-27T03:24:03.000Z" + }, + "end": { + "$date": "2021-04-27T03:35:19.000Z" + }, + "events": [ + { + "uuid": "82621acb-43e0-4bce-87c0-d42d1f6a9017", + "start": { + "$date": "2021-04-27T03:24:03.000Z" + }, + "end": { + "$date": "2021-04-27T03:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "829e8758-111b-407b-b53b-90ae8962eb90", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T03:45:15.000Z" + }, + "end": { + "$date": "2021-04-27T04:04:11.000Z" + }, + "events": [ + { + "uuid": "6b002514-f226-47c9-9b55-edf58204ee6e", + "start": { + "$date": "2021-04-27T03:45:15.000Z" + }, + "end": { + "$date": "2021-04-27T04:04:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fe1e7fe-2135-4c49-ab1b-006a2585cb35", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T03:45:11.000Z" + }, + "end": { + "$date": "2021-04-27T04:04:12.000Z" + }, + "events": [ + { + "uuid": "1ef1a7dd-4ed1-4e96-9f17-02acfa70b01c", + "start": { + "$date": "2021-04-27T03:45:11.000Z" + }, + "end": { + "$date": "2021-04-27T04:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a6fef1a3-20ba-4a9e-b081-ed0bbb8d0ee0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-27T04:11:43.000Z" + }, + "end": { + "$date": "2021-04-27T05:02:44.000Z" + }, + "events": [ + { + "uuid": "1bb04989-62fc-4b3a-b47e-c3321c52be7e", + "start": { + "$date": "2021-04-27T04:11:43.000Z" + }, + "end": { + "$date": "2021-04-27T05:02:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbb6be18-cf6a-4507-9b08-69b2f71b93c7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-27T04:36:48.000Z" + }, + "end": { + "$date": "2021-04-27T05:10:18.000Z" + }, + "events": [ + { + "uuid": "5db7e93d-b457-4e93-b237-59f6a50313e5", + "start": { + "$date": "2021-04-27T04:36:48.000Z" + }, + "end": { + "$date": "2021-04-27T05:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cf47a55f-c0c4-4369-980f-3b56a415c7ba", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-27T05:03:04.000Z" + }, + "end": { + "$date": "2021-04-27T05:22:05.000Z" + }, + "events": [ + { + "uuid": "d5a86f51-4c99-48f2-8f2a-5306cbea483c", + "start": { + "$date": "2021-04-27T05:03:04.000Z" + }, + "end": { + "$date": "2021-04-27T05:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "38f65cbf-2c0e-4db3-823c-7e0b65460bbf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-27T05:22:41.000Z" + }, + "end": { + "$date": "2021-04-27T05:56:29.000Z" + }, + "events": [ + { + "uuid": "c4a0a7e9-7afd-445f-a469-49e49f985d58", + "start": { + "$date": "2021-04-27T05:22:41.000Z" + }, + "end": { + "$date": "2021-04-27T05:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d170cbdb-1e87-4220-830e-022143a37689", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-27T05:27:46.000Z" + }, + "end": { + "$date": "2021-04-27T05:44:07.000Z" + }, + "events": [ + { + "uuid": "c8597afb-d57f-41ce-8e5d-c27606543819", + "start": { + "$date": "2021-04-27T05:27:46.000Z" + }, + "end": { + "$date": "2021-04-27T05:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7429c90b-2f85-44a0-88f2-e630b76ac4c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T05:34:42.000Z" + }, + "end": { + "$date": "2021-04-27T06:06:42.000Z" + }, + "events": [ + { + "uuid": "7b4e2118-ba76-4aae-b5fb-178847169259", + "start": { + "$date": "2021-04-27T05:34:42.000Z" + }, + "end": { + "$date": "2021-04-27T06:06:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4eb23b1b-d35b-4287-9321-8c8462fa4921", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T06:13:07.000Z" + }, + "end": { + "$date": "2021-04-27T06:51:09.000Z" + }, + "events": [ + { + "uuid": "8c7bbdf6-72e2-49b4-92c8-5efe5c676023", + "start": { + "$date": "2021-04-27T06:13:07.000Z" + }, + "end": { + "$date": "2021-04-27T06:51:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c38b8f78-a97e-4f02-b200-3df95ee6ab4e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-27T06:26:49.000Z" + }, + "end": { + "$date": "2021-04-27T07:02:20.000Z" + }, + "events": [ + { + "uuid": "320aadf8-2a30-4395-9c79-d2b9605ee2af", + "start": { + "$date": "2021-04-27T06:26:49.000Z" + }, + "end": { + "$date": "2021-04-27T07:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "96334fe8-b278-4bbb-a5d6-cfe57c6171ba", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-27T15:32:33.000Z" + }, + "end": { + "$date": "2021-04-27T19:17:02.000Z" + }, + "events": [ + { + "uuid": "00537ffd-62a1-452e-bbce-0974cdb9f667", + "start": { + "$date": "2021-04-27T15:32:33.000Z" + }, + "end": { + "$date": "2021-04-27T19:17:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4edd5bce-c97a-49d6-bc33-50d91ea07b4f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T18:54:34.000Z" + }, + "end": { + "$date": "2021-04-27T18:56:08.000Z" + }, + "events": [ + { + "uuid": "33c1d26c-7cba-4551-8fc9-3952407a2ca1", + "start": { + "$date": "2021-04-27T18:54:34.000Z" + }, + "end": { + "$date": "2021-04-27T18:56:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "866eb4b0-0aec-42c3-b03e-100162b540ea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-27T19:13:21.000Z" + }, + "end": { + "$date": "2021-04-27T19:15:17.000Z" + }, + "events": [ + { + "uuid": "620d42f8-3527-46c1-9729-5c207f9304ee", + "start": { + "$date": "2021-04-27T19:13:21.000Z" + }, + "end": { + "$date": "2021-04-27T19:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0eb9884f-aaa3-40c2-9a89-8eb2b8229e89", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-27T19:42:41.000Z" + }, + "end": { + "$date": "2021-04-27T19:47:07.000Z" + }, + "events": [ + { + "uuid": "9159a7fc-d597-4ec4-a430-3ff4833425f9", + "start": { + "$date": "2021-04-27T19:42:41.000Z" + }, + "end": { + "$date": "2021-04-27T19:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ee6f8586-659c-482b-8ee8-27978bef7124", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-27T20:14:27.000Z" + }, + "end": { + "$date": "2021-04-27T20:51:16.000Z" + }, + "events": [ + { + "uuid": "13b05b24-3a21-4a10-acf8-b5dd97c24ac1", + "start": { + "$date": "2021-04-27T20:14:27.000Z" + }, + "end": { + "$date": "2021-04-27T20:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7f705bd7-53b9-4383-a9a7-19265cfbece6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-27T21:17:19.000Z" + }, + "end": { + "$date": "2021-04-27T21:42:23.000Z" + }, + "events": [ + { + "uuid": "762123b4-877f-420d-9e65-b7da9612524d", + "start": { + "$date": "2021-04-27T21:17:19.000Z" + }, + "end": { + "$date": "2021-04-27T21:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ab87de6-1266-42b9-afa7-9ab08e1993d3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-27T21:35:54.000Z" + }, + "end": { + "$date": "2021-04-28T00:12:27.000Z" + }, + "events": [ + { + "uuid": "06dbba46-52b7-4e59-8f5f-e362f3428d42", + "start": { + "$date": "2021-04-27T21:35:54.000Z" + }, + "end": { + "$date": "2021-04-28T00:12:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", + "uuid": "1c767090-67f6-4e33-9224-d2f28f0aea07", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-27T21:43:26.000Z" + }, + "end": { + "$date": "2021-04-27T22:21:42.000Z" + }, + "events": [ + { + "uuid": "719a7269-1d3f-4adc-ab7c-f56189f380f4", + "start": { + "$date": "2021-04-27T21:43:26.000Z" + }, + "end": { + "$date": "2021-04-27T22:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "742c9a02-8d93-43e1-8cb4-afdd9c217922", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-27T22:44:40.000Z" + }, + "end": { + "$date": "2021-04-27T22:48:44.000Z" + }, + "events": [ + { + "uuid": "ae5a0bad-62cb-4a31-b121-8844bc6e6816", + "start": { + "$date": "2021-04-27T22:44:40.000Z" + }, + "end": { + "$date": "2021-04-27T22:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "736f76d4-606e-4027-829f-d77954bed951", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-27T22:47:23.000Z" + }, + "end": { + "$date": "2021-04-27T22:50:03.000Z" + }, + "events": [ + { + "uuid": "c6b86644-7574-454a-b4df-045e4f40d9cf", + "start": { + "$date": "2021-04-27T22:47:23.000Z" + }, + "end": { + "$date": "2021-04-27T22:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28569f20-1b06-4eb1-a152-e860fe1f9572", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T22:53:20.000Z" + }, + "end": { + "$date": "2021-04-27T23:25:16.000Z" + }, + "events": [ + { + "uuid": "8012058b-1084-4bcb-9ff1-a483c231a8a7", + "start": { + "$date": "2021-04-27T22:53:20.000Z" + }, + "end": { + "$date": "2021-04-27T23:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e442edcf-c0cf-4845-a61a-eb2e71af6bc6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-27T23:25:12.000Z" + }, + "end": { + "$date": "2021-04-27T23:27:34.000Z" + }, + "events": [ + { + "uuid": "ac30e725-e183-4ad0-a15e-beaa385ebd90", + "start": { + "$date": "2021-04-27T23:25:12.000Z" + }, + "end": { + "$date": "2021-04-27T23:27:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e13845e-466c-4999-9b30-3971362b392e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T23:29:15.000Z" + }, + "end": { + "$date": "2021-04-27T23:55:12.000Z" + }, + "events": [ + { + "uuid": "779da91e-5f3a-45fb-bf2f-17af64f7d291", + "start": { + "$date": "2021-04-27T23:29:15.000Z" + }, + "end": { + "$date": "2021-04-27T23:55:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ba406e6-9d41-4c74-aff2-c7c13cfaa568", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-27T23:55:10.000Z" + }, + "end": { + "$date": "2021-04-27T23:55:31.000Z" + }, + "events": [ + { + "uuid": "9e1542f2-6554-4de6-9764-bb37c7b0197e", + "start": { + "$date": "2021-04-27T23:55:10.000Z" + }, + "end": { + "$date": "2021-04-27T23:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09ac3775-e45d-49fc-b959-7cdb54caaae5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-27T23:56:10.000Z" + }, + "end": { + "$date": "2021-04-27T23:58:29.000Z" + }, + "events": [ + { + "uuid": "fd7fece3-cdf2-47c2-8900-4b4d94e55b54", + "start": { + "$date": "2021-04-27T23:56:10.000Z" + }, + "end": { + "$date": "2021-04-27T23:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6aa2136a-f5d2-4ec1-8442-ae60cd41760e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-28T00:00:08.000Z" + }, + "end": { + "$date": "2021-04-28T00:19:11.000Z" + }, + "events": [ + { + "uuid": "ed104f38-6bd8-42dd-8c0d-c16d6377420b", + "start": { + "$date": "2021-04-28T00:00:08.000Z" + }, + "end": { + "$date": "2021-04-28T00:19:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eabaad1b-cc88-45d5-8405-8afa1da8deb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T00:00:17.000Z" + }, + "end": { + "$date": "2021-04-28T00:19:14.000Z" + }, + "events": [ + { + "uuid": "44c3a2a2-022b-4177-9983-7f21893ce89d", + "start": { + "$date": "2021-04-28T00:00:17.000Z" + }, + "end": { + "$date": "2021-04-28T00:19:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1faf7628-78d9-4206-b55b-54918e451dca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-28T00:00:33.000Z" + }, + "end": { + "$date": "2021-04-28T00:33:34.000Z" + }, + "events": [ + { + "uuid": "ca539300-e225-432d-9147-f9d5e1d9cf8b", + "start": { + "$date": "2021-04-28T00:00:33.000Z" + }, + "end": { + "$date": "2021-04-28T00:33:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b34b9f1b-73fe-477e-bfaf-080d6eefb4ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T00:24:10.000Z" + }, + "end": { + "$date": "2021-04-28T00:40:01.000Z" + }, + "events": [ + { + "uuid": "0e039562-b976-481e-9ed6-a30682df1490", + "start": { + "$date": "2021-04-28T00:24:10.000Z" + }, + "end": { + "$date": "2021-04-28T00:40:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20039d8f-d263-462d-849b-46537ddc539d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-28T00:20:57.000Z" + }, + "end": { + "$date": "2021-04-28T00:21:12.000Z" + }, + "events": [ + { + "uuid": "8de3a2f3-184c-40ee-b38c-18f6c3223870", + "start": { + "$date": "2021-04-28T00:20:57.000Z" + }, + "end": { + "$date": "2021-04-28T00:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "885f6b5f-25b0-44de-8e28-6cacf1ba7908", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T00:20:55.000Z" + }, + "end": { + "$date": "2021-04-28T00:21:13.000Z" + }, + "events": [ + { + "uuid": "81f1f291-f337-48e0-8eb2-2898fc347634", + "start": { + "$date": "2021-04-28T00:20:55.000Z" + }, + "end": { + "$date": "2021-04-28T00:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44f6ea7a-a910-4e75-b8f3-edeca91b61e2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T00:24:05.000Z" + }, + "end": { + "$date": "2021-04-28T00:39:53.000Z" + }, + "events": [ + { + "uuid": "5f2b0a8c-6654-4222-b51c-7fe7950dab6c", + "start": { + "$date": "2021-04-28T00:24:05.000Z" + }, + "end": { + "$date": "2021-04-28T00:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6311353e-7bcb-4d69-8ba7-9fcb3048ba20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-28T00:24:44.000Z" + }, + "end": { + "$date": "2021-04-28T00:40:00.000Z" + }, + "events": [ + { + "uuid": "19d1c18e-3ee7-4128-ab32-54019d0a24c8", + "start": { + "$date": "2021-04-28T00:24:44.000Z" + }, + "end": { + "$date": "2021-04-28T00:40:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "834898be-450d-45b7-aedd-91baf59b2047", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T00:43:19.000Z" + }, + "end": { + "$date": "2021-04-28T01:03:08.000Z" + }, + "events": [ + { + "uuid": "fd32b93d-b714-411f-a420-12cd7519a49c", + "start": { + "$date": "2021-04-28T00:43:19.000Z" + }, + "end": { + "$date": "2021-04-28T01:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed205767-5d6e-482d-8805-2c4e11912276", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-28T00:43:55.000Z" + }, + "end": { + "$date": "2021-04-28T01:03:01.000Z" + }, + "events": [ + { + "uuid": "428a07ac-b770-40c3-b28f-1194d6bcc651", + "start": { + "$date": "2021-04-28T00:43:55.000Z" + }, + "end": { + "$date": "2021-04-28T01:03:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72265cd8-6af9-40ed-8fca-5714542aaae9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T00:44:21.000Z" + }, + "end": { + "$date": "2021-04-28T01:03:00.000Z" + }, + "events": [ + { + "uuid": "d59fc418-2831-4794-a0aa-52624646f263", + "start": { + "$date": "2021-04-28T00:44:21.000Z" + }, + "end": { + "$date": "2021-04-28T01:03:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7ae4d69f-19dc-47e3-8d22-b1fa0f24df0a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-28T01:15:37.000Z" + }, + "end": { + "$date": "2021-04-28T01:31:16.000Z" + }, + "events": [ + { + "uuid": "7092cd3b-4cac-42f5-abc8-cbed7f7eb72d", + "start": { + "$date": "2021-04-28T01:15:37.000Z" + }, + "end": { + "$date": "2021-04-28T01:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "0e638f70-de4d-4679-923b-96ce6a142750", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-04-28T01:16:50.000Z" + }, + "end": { + "$date": "2021-04-28T02:59:59.000Z" + }, + "events": [ + { + "uuid": "35fd7e51-c3a1-48fb-9573-452ce23de16d", + "start": { + "$date": "2021-04-28T01:16:50.000Z" + }, + "end": { + "$date": "2021-04-28T02:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "98a18312-f05b-42b6-b904-00ed61700890", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-28T01:37:57.000Z" + }, + "end": { + "$date": "2021-04-28T04:39:37.000Z" + }, + "events": [ + { + "uuid": "97bab2f8-7942-41f3-8be0-05fca919a194", + "start": { + "$date": "2021-04-28T01:37:57.000Z" + }, + "end": { + "$date": "2021-04-28T04:39:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6853250c-ea8d-49d6-bf68-5ba77ea3a01a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-28T01:38:37.000Z" + }, + "end": { + "$date": "2021-04-28T04:39:08.000Z" + }, + "events": [ + { + "uuid": "9b4f31a1-ad9b-44c9-b848-e514da573350", + "start": { + "$date": "2021-04-28T01:38:37.000Z" + }, + "end": { + "$date": "2021-04-28T04:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "11ec11c0-f6a0-4a73-8582-34a277a39bdb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-28T04:45:28.000Z" + }, + "end": { + "$date": "2021-04-28T07:26:03.000Z" + }, + "events": [ + { + "uuid": "f45da7c5-6b1c-4d45-a733-8d109822ea5c", + "start": { + "$date": "2021-04-28T04:45:28.000Z" + }, + "end": { + "$date": "2021-04-28T07:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dfb88f68-349f-4b9a-85fd-c1b90403b298", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T01:43:15.000Z" + }, + "end": { + "$date": "2021-04-28T01:54:29.000Z" + }, + "events": [ + { + "uuid": "21c44122-516d-4f88-82fc-2d16fba4c45b", + "start": { + "$date": "2021-04-28T01:43:15.000Z" + }, + "end": { + "$date": "2021-04-28T01:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a17f74d4-baa1-4a85-b7a7-609aa2dc9baf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-28T01:46:55.000Z" + }, + "end": { + "$date": "2021-04-28T02:04:27.000Z" + }, + "events": [ + { + "uuid": "e0cbb43c-91d5-4eca-80c3-a41989faba95", + "start": { + "$date": "2021-04-28T01:46:55.000Z" + }, + "end": { + "$date": "2021-04-28T02:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "1b4a3a17-75b7-49cd-847c-54c95de5386c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-28T02:05:27.000Z" + }, + "end": { + "$date": "2021-04-28T02:06:47.000Z" + }, + "events": [ + { + "uuid": "c87599df-b44a-4cff-9691-e359b969fb72", + "start": { + "$date": "2021-04-28T02:05:27.000Z" + }, + "end": { + "$date": "2021-04-28T02:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "d3047a40-1bef-4f4d-8c1d-b183dfe9f3d8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-28T02:06:58.000Z" + }, + "end": { + "$date": "2021-04-28T02:36:05.000Z" + }, + "events": [ + { + "uuid": "07016d2e-5253-4902-81a6-e26191871b56", + "start": { + "$date": "2021-04-28T02:06:58.000Z" + }, + "end": { + "$date": "2021-04-28T02:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "a3103a1a-d4bb-452a-8044-eeabce9a0489", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-28T02:36:25.000Z" + }, + "end": { + "$date": "2021-04-28T02:44:00.000Z" + }, + "events": [ + { + "uuid": "204aca6a-b18c-4e50-98a7-290d929f544f", + "start": { + "$date": "2021-04-28T02:36:25.000Z" + }, + "end": { + "$date": "2021-04-28T02:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "2a6c8721-073a-4e40-a4f5-202e327f7841", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-28T02:40:08.000Z" + }, + "end": { + "$date": "2021-04-28T05:37:40.000Z" + }, + "events": [ + { + "uuid": "ee489f29-f969-4d1c-b74a-ee41693bf56a", + "start": { + "$date": "2021-04-28T02:40:08.000Z" + }, + "end": { + "$date": "2021-04-28T03:19:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d50fe6bd-180d-4885-bbc4-cb7d0024a88d", + "start": { + "$date": "2021-04-28T03:19:08.000Z" + }, + "end": { + "$date": "2021-04-28T03:24:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5dbbe544-c884-4148-a1cf-47ffe53176c4", + "start": { + "$date": "2021-04-28T03:24:08.000Z" + }, + "end": { + "$date": "2021-04-28T03:34:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "733513c0-3d01-44c8-ab61-f53e23cb02de", + "start": { + "$date": "2021-04-28T03:34:08.000Z" + }, + "end": { + "$date": "2021-04-28T03:50:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "175d7c39-6edf-4b17-9b63-feae4c29198f", + "start": { + "$date": "2021-04-28T03:50:08.000Z" + }, + "end": { + "$date": "2021-04-28T04:00:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "656c3ad1-3ca7-41c6-b545-dd37c8f5b1d9", + "start": { + "$date": "2021-04-28T04:00:08.000Z" + }, + "end": { + "$date": "2021-04-28T04:20:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f2edc751-6db5-4060-87c9-1a25cac9da14", + "start": { + "$date": "2021-04-28T04:20:08.000Z" + }, + "end": { + "$date": "2021-04-28T04:53:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c179d6fe-33b7-4017-a6e3-3eb102a8c4b1", + "start": { + "$date": "2021-04-28T04:53:08.000Z" + }, + "end": { + "$date": "2021-04-28T05:11:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bbe5b743-2789-4ad4-b9b5-61ba597d1ea3", + "start": { + "$date": "2021-04-28T05:11:08.000Z" + }, + "end": { + "$date": "2021-04-28T05:37:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c9f66a0-6e3b-4c0b-b395-c846ce89d592", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-28T03:33:38.000Z" + }, + "end": { + "$date": "2021-04-28T03:47:10.000Z" + }, + "events": [ + { + "uuid": "76e7d4d8-bd5d-4ebd-9a53-a17932216e41", + "start": { + "$date": "2021-04-28T03:33:38.000Z" + }, + "end": { + "$date": "2021-04-28T04:01:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f9c5138-bb21-43f8-bf81-6cbd22c58838", + "start": { + "$date": "2021-04-28T04:01:38.000Z" + }, + "end": { + "$date": "2021-04-28T04:06:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6222eacb-c061-4771-a7d4-31294846dbb7", + "start": { + "$date": "2021-04-28T04:06:38.000Z" + }, + "end": { + "$date": "2021-04-28T04:16:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64e5a3c4-4595-4765-a1b7-4a91a8f1d862", + "start": { + "$date": "2021-04-28T04:16:38.000Z" + }, + "end": { + "$date": "2021-04-28T03:47:10.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5a83142-bb82-4756-b804-be904862769a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-28T03:52:16.000Z" + }, + "end": { + "$date": "2021-04-28T04:09:52.000Z" + }, + "events": [ + { + "uuid": "ae86d53a-20bc-4d12-8671-fe0e4396017f", + "start": { + "$date": "2021-04-28T03:52:16.000Z" + }, + "end": { + "$date": "2021-04-28T04:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4aab2b95-59ec-4e98-a1fc-c45138562d3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-28T03:47:15.000Z" + }, + "end": { + "$date": "2021-04-28T06:02:24.000Z" + }, + "events": [ + { + "uuid": "7c874d8c-b42d-408e-a2ce-8e75daf2c21e", + "start": { + "$date": "2021-04-28T03:47:15.000Z" + }, + "end": { + "$date": "2021-04-28T06:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b2df783-74b0-4ef1-9a7b-9e05db3bece2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-28T04:12:56.000Z" + }, + "end": { + "$date": "2021-04-28T04:32:39.000Z" + }, + "events": [ + { + "uuid": "2a81af39-2577-4405-9c5f-b8c73347eaf8", + "start": { + "$date": "2021-04-28T04:12:56.000Z" + }, + "end": { + "$date": "2021-04-28T04:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a99be53-eea2-4bee-abfe-ab73cc8e79e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-28T04:36:47.000Z" + }, + "end": { + "$date": "2021-04-28T04:54:23.000Z" + }, + "events": [ + { + "uuid": "6f4d4236-da94-4a4c-92b4-e1b4a9e5b202", + "start": { + "$date": "2021-04-28T04:36:47.000Z" + }, + "end": { + "$date": "2021-04-28T04:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1055798-ca88-454a-adbe-695ff8dc33f2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-28T04:55:44.000Z" + }, + "end": { + "$date": "2021-04-28T04:59:01.000Z" + }, + "events": [ + { + "uuid": "a622ac85-6a3c-4b79-aabe-9588b9a75b86", + "start": { + "$date": "2021-04-28T04:55:44.000Z" + }, + "end": { + "$date": "2021-04-28T04:59:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a48934c1-982f-4543-a42e-c5c2e73b8356", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-28T05:02:48.000Z" + }, + "end": { + "$date": "2021-04-28T05:40:04.000Z" + }, + "events": [ + { + "uuid": "2a987b96-86d9-46df-ba73-5d195be90f76", + "start": { + "$date": "2021-04-28T05:02:48.000Z" + }, + "end": { + "$date": "2021-04-28T05:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "46498231-5684-4b05-8896-709a92f508d7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-04-28T05:02:39.000Z" + }, + "end": { + "$date": "2021-04-28T05:03:45.000Z" + }, + "events": [ + { + "uuid": "a648a3b2-8e4b-472f-a968-46a445427521", + "start": { + "$date": "2021-04-28T05:02:39.000Z" + }, + "end": { + "$date": "2021-04-28T05:03:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "62da7a94-69f0-48f0-99b5-92b84b0120a7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-28T05:28:37.000Z" + }, + "end": { + "$date": "2021-04-28T08:27:37.000Z" + }, + "events": [ + { + "uuid": "a0651b23-c117-4d31-8e17-d8c68ffd3ab1", + "start": { + "$date": "2021-04-28T05:28:37.000Z" + }, + "end": { + "$date": "2021-04-28T08:27:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "3b686485-85dc-45d1-8ccb-94a9869e0e4b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-28T15:50:03.000Z" + }, + "end": { + "$date": "2021-04-28T20:42:10.000Z" + }, + "events": [ + { + "uuid": "e0db9e1b-a956-4c6d-95ad-ae10691b2605", + "start": { + "$date": "2021-04-28T15:50:03.000Z" + }, + "end": { + "$date": "2021-04-28T20:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbc87161-8340-4807-9f26-813c8ccc8c5e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T16:12:07.000Z" + }, + "end": { + "$date": "2021-04-28T16:39:19.000Z" + }, + "events": [ + { + "uuid": "169955c3-6e64-48d7-977b-954634c961ae", + "start": { + "$date": "2021-04-28T16:12:07.000Z" + }, + "end": { + "$date": "2021-04-28T16:39:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4e6375b4-7b45-4a36-bfb1-3b2e3cf6e9d6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-28T16:22:48.000Z" + }, + "end": { + "$date": "2021-04-28T17:04:56.000Z" + }, + "events": [ + { + "uuid": "fae2b5a2-a57f-4787-8dbb-74841c3c1d8e", + "start": { + "$date": "2021-04-28T16:22:48.000Z" + }, + "end": { + "$date": "2021-04-28T17:04:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e82ed354-0a9b-4537-b715-74a0bb596471", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T16:44:21.000Z" + }, + "end": { + "$date": "2021-04-28T17:14:43.000Z" + }, + "events": [ + { + "uuid": "f24536cd-ad79-47db-832d-c15ecbaa1a65", + "start": { + "$date": "2021-04-28T16:44:21.000Z" + }, + "end": { + "$date": "2021-04-28T17:14:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6c5a7382-9346-40e1-b11d-f977db003256", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-28T18:45:27.000Z" + }, + "end": { + "$date": "2021-04-28T21:38:41.000Z" + }, + "events": [ + { + "uuid": "cc6a8086-8687-4f5c-ae8c-7a6bd397eed5", + "start": { + "$date": "2021-04-28T18:45:27.000Z" + }, + "end": { + "$date": "2021-04-28T18:56:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9020226-eee4-4e27-ba27-b6c1341b67dc", + "start": { + "$date": "2021-04-28T18:56:27.000Z" + }, + "end": { + "$date": "2021-04-28T19:04:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e195af8-118b-42ea-a4bd-772d5d97cfdf", + "start": { + "$date": "2021-04-28T19:04:27.000Z" + }, + "end": { + "$date": "2021-04-28T21:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68664197-2367-4adc-86c4-8caa4076e8a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T20:03:43.000Z" + }, + "end": { + "$date": "2021-04-28T20:32:06.000Z" + }, + "events": [ + { + "uuid": "92dddeeb-dc7b-46fa-9afb-fc4c0f840f63", + "start": { + "$date": "2021-04-28T20:03:43.000Z" + }, + "end": { + "$date": "2021-04-28T20:32:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "912d2b00-bcd8-40ad-b517-058723f64bf6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-28T20:12:47.000Z" + }, + "end": { + "$date": "2021-04-28T22:47:47.000Z" + }, + "events": [ + { + "uuid": "992307df-6825-4ef2-97bb-319efe2d765c", + "start": { + "$date": "2021-04-28T20:12:47.000Z" + }, + "end": { + "$date": "2021-04-28T22:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "33a96c12-6dd0-4626-9563-ab3d6bc09d72", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-28T20:42:21.000Z" + }, + "end": { + "$date": "2021-04-28T22:37:05.000Z" + }, + "events": [ + { + "uuid": "a508c390-fca1-4a8a-9829-51c98d1c4164", + "start": { + "$date": "2021-04-28T20:42:21.000Z" + }, + "end": { + "$date": "2021-04-28T22:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ea18f95c-255d-421d-8234-0dc6c3f72c51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-28T21:08:11.000Z" + }, + "end": { + "$date": "2021-04-28T21:52:21.000Z" + }, + "events": [ + { + "uuid": "c2aacace-5421-4d11-9cde-4c70fe451f83", + "start": { + "$date": "2021-04-28T21:08:11.000Z" + }, + "end": { + "$date": "2021-04-28T21:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "eb08603f-eac4-463c-b6fb-ed20aeac4d74", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-28T21:56:03.000Z" + }, + "end": { + "$date": "2021-04-28T22:15:03.000Z" + }, + "events": [ + { + "uuid": "c74b7576-cb6a-482b-b86e-5a360a47c2a3", + "start": { + "$date": "2021-04-28T21:56:03.000Z" + }, + "end": { + "$date": "2021-04-28T22:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ae167e1-51b1-4b3f-a88a-ebce6a9721f0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T22:23:39.000Z" + }, + "end": { + "$date": "2021-04-28T22:41:37.000Z" + }, + "events": [ + { + "uuid": "202b4fef-144b-4ca2-b508-f1a6b6921561", + "start": { + "$date": "2021-04-28T22:23:39.000Z" + }, + "end": { + "$date": "2021-04-28T22:41:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2a7a7ad8-dd57-4829-b438-1118213fa94d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-28T22:33:43.000Z" + }, + "end": { + "$date": "2021-04-28T22:54:55.000Z" + }, + "events": [ + { + "uuid": "40bcb2df-f1aa-418d-8aeb-eb9ac78c524d", + "start": { + "$date": "2021-04-28T22:33:43.000Z" + }, + "end": { + "$date": "2021-04-28T22:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8efe1315-6993-4554-ab94-959aa99c784d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T22:44:12.000Z" + }, + "end": { + "$date": "2021-04-28T22:54:23.000Z" + }, + "events": [ + { + "uuid": "5e332dfe-770e-4078-aef5-3fd08b7fc21e", + "start": { + "$date": "2021-04-28T22:44:12.000Z" + }, + "end": { + "$date": "2021-04-28T22:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc5bd6b6-95cf-492d-96a6-c0232a9ef9e3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T22:58:03.000Z" + }, + "end": { + "$date": "2021-04-28T23:15:44.000Z" + }, + "events": [ + { + "uuid": "9f5ab71d-b3f3-4e26-99d6-9aaf9f22d23c", + "start": { + "$date": "2021-04-28T22:58:03.000Z" + }, + "end": { + "$date": "2021-04-28T23:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49e65e8d-bd3c-4064-a1a0-abcf9adab05e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T23:22:08.000Z" + }, + "end": { + "$date": "2021-04-28T23:35:47.000Z" + }, + "events": [ + { + "uuid": "5d480030-3cb0-408a-9db8-eefa60e14dd8", + "start": { + "$date": "2021-04-28T23:22:08.000Z" + }, + "end": { + "$date": "2021-04-28T23:35:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "001ba045-1edb-4564-9ec3-aacd34e4ef4a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T23:21:59.000Z" + }, + "end": { + "$date": "2021-04-28T23:35:36.000Z" + }, + "events": [ + { + "uuid": "6c1d2c48-3d65-4505-83e5-c01c695dd198", + "start": { + "$date": "2021-04-28T23:21:59.000Z" + }, + "end": { + "$date": "2021-04-28T23:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "771bb3a7-2ba8-4179-a00c-0f904615e13e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-28T23:27:44.000Z" + }, + "end": { + "$date": "2021-04-28T23:43:20.000Z" + }, + "events": [ + { + "uuid": "c1e88b9e-505f-432c-8535-b2ff088f2bc2", + "start": { + "$date": "2021-04-28T23:27:44.000Z" + }, + "end": { + "$date": "2021-04-28T23:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a7a8858-6b95-47d1-abc8-819a9d1b87b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-28T23:41:45.000Z" + }, + "end": { + "$date": "2021-04-28T23:56:31.000Z" + }, + "events": [ + { + "uuid": "7664ff77-388c-4027-8f9a-072fbab50b73", + "start": { + "$date": "2021-04-28T23:41:45.000Z" + }, + "end": { + "$date": "2021-04-28T23:56:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bee8aa71-29e0-4fa6-a914-3122a139f357", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-28T23:39:36.000Z" + }, + "end": { + "$date": "2021-04-28T23:56:22.000Z" + }, + "events": [ + { + "uuid": "2792079d-6a04-46f1-8867-ebe8000118fc", + "start": { + "$date": "2021-04-28T23:39:36.000Z" + }, + "end": { + "$date": "2021-04-28T23:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c625c776-1600-4184-a4ce-919a66aa4bfd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T00:55:11.000Z" + }, + "end": { + "$date": "2021-04-29T01:14:41.000Z" + }, + "events": [ + { + "uuid": "a9fe12e0-ce84-47f6-aca6-0ebb2af7a853", + "start": { + "$date": "2021-04-29T00:55:11.000Z" + }, + "end": { + "$date": "2021-04-29T01:20:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa4671be-0832-4f17-b050-b93575002f00", + "start": { + "$date": "2021-04-29T01:20:11.000Z" + }, + "end": { + "$date": "2021-04-29T02:04:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74e4b3ed-72c6-4eff-910f-822ac0d5ae52", + "start": { + "$date": "2021-04-29T02:04:11.000Z" + }, + "end": { + "$date": "2021-04-29T01:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80f0f3ca-8632-4123-bf2b-f951eedb0bde", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T00:00:01.000Z" + }, + "end": { + "$date": "2021-04-29T00:19:03.000Z" + }, + "events": [ + { + "uuid": "ad1356a9-d300-4312-a0bf-aedc836dce43", + "start": { + "$date": "2021-04-29T00:00:01.000Z" + }, + "end": { + "$date": "2021-04-29T00:19:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a8b553d-0e0a-4bda-b15d-617dcde94cc2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T00:01:12.000Z" + }, + "end": { + "$date": "2021-04-29T00:18:59.000Z" + }, + "events": [ + { + "uuid": "cd7f6471-a23c-4c51-96dc-5b9d190e02e0", + "start": { + "$date": "2021-04-29T00:01:12.000Z" + }, + "end": { + "$date": "2021-04-29T00:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b339522-dc7b-4b78-bc40-31d661ccd17a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T00:37:07.000Z" + }, + "end": { + "$date": "2021-04-29T01:06:40.000Z" + }, + "events": [ + { + "uuid": "4ff9294f-78be-4962-887d-50b50254eef4", + "start": { + "$date": "2021-04-29T00:37:07.000Z" + }, + "end": { + "$date": "2021-04-29T01:06:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99590ab8-ffbe-4be7-9f8c-0dd11c749d2e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T00:38:07.000Z" + }, + "end": { + "$date": "2021-04-29T01:06:38.000Z" + }, + "events": [ + { + "uuid": "94ec2902-a7bf-4565-9f7e-ca4aaab6a5bc", + "start": { + "$date": "2021-04-29T00:38:07.000Z" + }, + "end": { + "$date": "2021-04-29T01:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24e7ecf2-a860-4b5e-bf35-a9e9e356eb54", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T00:49:30.000Z" + }, + "end": { + "$date": "2021-04-29T01:06:32.000Z" + }, + "events": [ + { + "uuid": "05451643-da34-44f1-a388-0a8467a4ead2", + "start": { + "$date": "2021-04-29T00:49:30.000Z" + }, + "end": { + "$date": "2021-04-29T01:06:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cb9795d-fefc-4a74-a978-91a71e4c9c66", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T01:45:14.000Z" + }, + "end": { + "$date": "2021-04-29T02:26:57.000Z" + }, + "events": [ + { + "uuid": "c4a437cd-5543-4a1f-9a72-5f6c57d6d2b5", + "start": { + "$date": "2021-04-29T01:45:14.000Z" + }, + "end": { + "$date": "2021-04-29T02:26:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd54a42b-77de-4150-ae41-4214f65de81c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T01:23:12.000Z" + }, + "end": { + "$date": "2021-04-29T01:37:23.000Z" + }, + "events": [ + { + "uuid": "a1987778-79d0-43f9-94b4-4733fdb197ec", + "start": { + "$date": "2021-04-29T01:23:12.000Z" + }, + "end": { + "$date": "2021-04-29T01:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "676d84d3-ed13-4e4c-a3e1-70ea058461f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T01:39:55.000Z" + }, + "end": { + "$date": "2021-04-29T01:50:25.000Z" + }, + "events": [ + { + "uuid": "8443cc87-3087-4e7b-912d-cc714a4113e5", + "start": { + "$date": "2021-04-29T01:39:55.000Z" + }, + "end": { + "$date": "2021-04-29T01:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4792046-2973-43ef-99a1-cadd0b0f13c0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T01:23:12.000Z" + }, + "end": { + "$date": "2021-04-29T01:40:19.000Z" + }, + "events": [ + { + "uuid": "5ab44226-389a-4441-8117-3a50d1331af9", + "start": { + "$date": "2021-04-29T01:23:12.000Z" + }, + "end": { + "$date": "2021-04-29T01:40:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35da22d6-f03b-4a2e-b834-7268e0c21b2d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T01:40:54.000Z" + }, + "end": { + "$date": "2021-04-29T02:38:23.000Z" + }, + "events": [ + { + "uuid": "91be95c1-418b-484b-870b-6233564d8993", + "start": { + "$date": "2021-04-29T01:40:54.000Z" + }, + "end": { + "$date": "2021-04-29T02:38:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51d58bb0-6528-427f-918d-54afde5c1743", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T01:51:21.000Z" + }, + "end": { + "$date": "2021-04-29T02:10:56.000Z" + }, + "events": [ + { + "uuid": "74f08989-aa01-4a36-ae5d-c01d6810239d", + "start": { + "$date": "2021-04-29T01:51:21.000Z" + }, + "end": { + "$date": "2021-04-29T02:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6e4c357-41ee-4684-ab9d-43b7c6acbe61", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T02:13:57.000Z" + }, + "end": { + "$date": "2021-04-29T02:27:47.000Z" + }, + "events": [ + { + "uuid": "ad065f29-1060-405f-9771-fe86eeba278b", + "start": { + "$date": "2021-04-29T02:13:57.000Z" + }, + "end": { + "$date": "2021-04-29T02:27:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "b77abd78-78ce-41ca-b1f4-63b13579758c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T02:26:33.000Z" + }, + "end": { + "$date": "2021-04-29T02:29:39.000Z" + }, + "events": [ + { + "uuid": "b2f1c3bb-0607-45aa-9a07-c5f4886658a2", + "start": { + "$date": "2021-04-29T02:26:33.000Z" + }, + "end": { + "$date": "2021-04-29T02:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01c1fa71-478b-4aaa-ab51-001856127062", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T02:50:00.000Z" + }, + "end": { + "$date": "2021-04-29T03:16:37.000Z" + }, + "events": [ + { + "uuid": "560e5755-8b9c-468d-94e9-2f2679ed2c4e", + "start": { + "$date": "2021-04-29T02:50:00.000Z" + }, + "end": { + "$date": "2021-04-29T03:16:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54b27209-f2fa-4432-9936-9b13eba40346", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T02:29:53.000Z" + }, + "end": { + "$date": "2021-04-29T02:45:43.000Z" + }, + "events": [ + { + "uuid": "5c69ea8b-4a42-4f82-b8ac-f58fd5b74e03", + "start": { + "$date": "2021-04-29T02:29:53.000Z" + }, + "end": { + "$date": "2021-04-29T02:45:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "ad5a9e4f-f7d3-47a7-ac63-eb1ec4b2328a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-29T02:33:29.000Z" + }, + "end": { + "$date": "2021-04-29T03:23:49.000Z" + }, + "events": [ + { + "uuid": "4126cf55-c9d0-4f1e-8c90-8eb80829d4ad", + "start": { + "$date": "2021-04-29T02:33:29.000Z" + }, + "end": { + "$date": "2021-04-29T03:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "150af93c-b27e-4be1-b489-e1591f53f814", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-29T02:38:12.000Z" + }, + "end": { + "$date": "2021-04-29T03:33:56.000Z" + }, + "events": [ + { + "uuid": "23a46352-fa94-4c09-950f-4c8b46598349", + "start": { + "$date": "2021-04-29T02:38:12.000Z" + }, + "end": { + "$date": "2021-04-29T03:33:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f1acb42-9e99-477f-be82-11e54ec94875", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T02:49:46.000Z" + }, + "end": { + "$date": "2021-04-29T03:16:38.000Z" + }, + "events": [ + { + "uuid": "17bd52d6-08cf-46be-bd50-6b46e28cb7af", + "start": { + "$date": "2021-04-29T02:49:46.000Z" + }, + "end": { + "$date": "2021-04-29T03:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6000bf8-d9df-4ee5-8fd2-443abd0dd116", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T02:51:21.000Z" + }, + "end": { + "$date": "2021-04-29T03:16:33.000Z" + }, + "events": [ + { + "uuid": "4ba239e9-f258-4bfd-b36b-55d8673e9c7b", + "start": { + "$date": "2021-04-29T02:51:21.000Z" + }, + "end": { + "$date": "2021-04-29T03:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f9a4f28-64e9-4e02-b783-bbd7a8515018", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T02:49:39.000Z" + }, + "end": { + "$date": "2021-04-29T03:05:55.000Z" + }, + "events": [ + { + "uuid": "b32e06de-569d-49f4-9f78-43f31362a598", + "start": { + "$date": "2021-04-29T02:49:39.000Z" + }, + "end": { + "$date": "2021-04-29T03:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd8eb877-7db5-439c-9cb7-24ef27361e50", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T03:10:31.000Z" + }, + "end": { + "$date": "2021-04-29T03:24:46.000Z" + }, + "events": [ + { + "uuid": "8757c815-e6c3-48b0-8833-c092fa8035ba", + "start": { + "$date": "2021-04-29T03:10:31.000Z" + }, + "end": { + "$date": "2021-04-29T03:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a40d722-b127-43a7-afe2-aedfda8b729c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-29T03:13:38.000Z" + }, + "end": { + "$date": "2021-04-29T04:14:00.000Z" + }, + "events": [ + { + "uuid": "112f70d5-12c2-413e-a19f-ff6bd2b045b0", + "start": { + "$date": "2021-04-29T03:13:38.000Z" + }, + "end": { + "$date": "2021-04-29T04:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb331484-3e43-42ec-98c5-20366d07ebf3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T03:19:51.000Z" + }, + "end": { + "$date": "2021-04-29T03:43:38.000Z" + }, + "events": [ + { + "uuid": "947453e5-0cad-45fa-b96f-ebb5cf54b4ec", + "start": { + "$date": "2021-04-29T03:19:51.000Z" + }, + "end": { + "$date": "2021-04-29T03:43:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92254762-7b7d-4cee-a34b-927aeea6454f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T03:19:43.000Z" + }, + "end": { + "$date": "2021-04-29T03:43:25.000Z" + }, + "events": [ + { + "uuid": "40ccce63-de39-4ba3-8692-c106c9bfc6b9", + "start": { + "$date": "2021-04-29T03:19:43.000Z" + }, + "end": { + "$date": "2021-04-29T03:43:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5aa5b40-9164-4893-a17d-127785d6e932", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T03:19:41.000Z" + }, + "end": { + "$date": "2021-04-29T03:43:36.000Z" + }, + "events": [ + { + "uuid": "6e94c497-67e2-4c60-86e6-cb1715db4b38", + "start": { + "$date": "2021-04-29T03:19:41.000Z" + }, + "end": { + "$date": "2021-04-29T03:43:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e51e7d08-6b60-4f00-93b8-12547f890ac8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-29T03:24:20.000Z" + }, + "end": { + "$date": "2021-04-29T04:29:20.000Z" + }, + "events": [ + { + "uuid": "199fe14c-8942-4071-8cd4-04529674267f", + "start": { + "$date": "2021-04-29T03:24:20.000Z" + }, + "end": { + "$date": "2021-04-29T04:29:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5ad21779-d8de-4537-8259-8bb7c7c9c5f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T03:32:58.000Z" + }, + "end": { + "$date": "2021-04-29T03:52:08.000Z" + }, + "events": [ + { + "uuid": "eedbec26-ce55-4de9-8a65-06304e978263", + "start": { + "$date": "2021-04-29T03:32:58.000Z" + }, + "end": { + "$date": "2021-04-29T03:52:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "045a7517-5081-4f91-8492-ccd858d75ac2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-29T03:34:51.000Z" + }, + "end": { + "$date": "2021-04-29T07:39:59.000Z" + }, + "events": [ + { + "uuid": "9eb29482-5aac-4c8c-aa74-c29c5c0481d6", + "start": { + "$date": "2021-04-29T03:34:51.000Z" + }, + "end": { + "$date": "2021-04-29T07:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0749ef3e-f5ad-4a7f-bfc8-656530b49255", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T04:07:09.000Z" + }, + "end": { + "$date": "2021-04-29T04:31:25.000Z" + }, + "events": [ + { + "uuid": "498fd64a-25c1-473d-9bbc-406ea34806d4", + "start": { + "$date": "2021-04-29T04:07:09.000Z" + }, + "end": { + "$date": "2021-04-29T04:31:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8cab0769-d30f-4d04-95d6-f738f6e81886", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T03:52:19.000Z" + }, + "end": { + "$date": "2021-04-29T04:37:45.000Z" + }, + "events": [ + { + "uuid": "c0b7bcef-3ce9-4704-a652-bad5bb981152", + "start": { + "$date": "2021-04-29T03:52:19.000Z" + }, + "end": { + "$date": "2021-04-29T04:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "70513ad3-6fed-4ae1-8ce0-d724cea47d56", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-29T03:56:39.000Z" + }, + "end": { + "$date": "2021-04-29T04:34:25.000Z" + }, + "events": [ + { + "uuid": "e3a88db3-044e-4a0c-94fc-9f8eca220d73", + "start": { + "$date": "2021-04-29T03:56:39.000Z" + }, + "end": { + "$date": "2021-04-29T04:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1aa91337-d9c9-4ceb-812d-67431cbd2d16", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-29T04:08:06.000Z" + }, + "end": { + "$date": "2021-04-29T04:31:16.000Z" + }, + "events": [ + { + "uuid": "30bf098f-c3d4-477e-a0e2-6d792e8292d2", + "start": { + "$date": "2021-04-29T04:08:06.000Z" + }, + "end": { + "$date": "2021-04-29T04:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d208924d-d82c-4b91-b25b-053f951c5507", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T04:06:58.000Z" + }, + "end": { + "$date": "2021-04-29T04:31:21.000Z" + }, + "events": [ + { + "uuid": "604f1fb7-0ea3-49f1-ac31-7fd12199ac34", + "start": { + "$date": "2021-04-29T04:06:58.000Z" + }, + "end": { + "$date": "2021-04-29T04:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57e95b6b-22ee-48c5-9d93-1e8ce71617b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T04:38:17.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:23.000Z" + }, + "events": [ + { + "uuid": "26e448db-5458-4736-8950-4fbcbb5dbc90", + "start": { + "$date": "2021-04-29T04:38:17.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62970f84-8e88-4919-a32b-8a77de8b6eea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-29T04:33:07.000Z" + }, + "end": { + "$date": "2021-04-29T05:28:23.000Z" + }, + "events": [ + { + "uuid": "be5b3ce5-c3df-4a7a-b254-e9695542ba1f", + "start": { + "$date": "2021-04-29T04:33:07.000Z" + }, + "end": { + "$date": "2021-04-29T05:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f044edce-6f96-46f3-99bd-d81ccdfd085b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T04:56:30.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:12.000Z" + }, + "events": [ + { + "uuid": "048ec2fa-e1d2-435d-be3c-5dae60dc1fbc", + "start": { + "$date": "2021-04-29T04:56:30.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3bed332-8c47-4c85-884f-f21e64a3d1ec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-29T05:18:12.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:51.000Z" + }, + "events": [ + { + "uuid": "81edb2a4-aa02-4398-b999-9f1a70784a62", + "start": { + "$date": "2021-04-29T05:18:12.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcdd56e2-52de-4555-b068-d4ee3f3750fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T04:39:01.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:20.000Z" + }, + "events": [ + { + "uuid": "c4b4ab9a-a6fe-4fb0-ac1d-26307e7fa884", + "start": { + "$date": "2021-04-29T04:39:01.000Z" + }, + "end": { + "$date": "2021-04-29T05:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1cd422bf-c4ee-4727-88f1-e0a1242a9fb4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-29T04:37:17.000Z" + }, + "end": { + "$date": "2021-04-29T06:14:17.000Z" + }, + "events": [ + { + "uuid": "906c6f64-bf27-4100-82c9-32a574b86c9b", + "start": { + "$date": "2021-04-29T04:37:17.000Z" + }, + "end": { + "$date": "2021-04-29T06:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "279e93d9-8009-4639-93b4-2e83b6534797", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T04:40:21.000Z" + }, + "end": { + "$date": "2021-04-29T05:01:37.000Z" + }, + "events": [ + { + "uuid": "7ceea319-a746-4597-a06a-1619eedd7a1e", + "start": { + "$date": "2021-04-29T04:40:21.000Z" + }, + "end": { + "$date": "2021-04-29T05:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10f0d0bd-8162-4201-a9fc-c89a4191a8eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T05:21:29.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:18.000Z" + }, + "events": [ + { + "uuid": "9c19c414-f918-4ca3-bbfd-3afa15d11de7", + "start": { + "$date": "2021-04-29T05:21:29.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52e53625-5a0a-428e-8300-5edaf2c0a8b9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-29T05:21:28.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:18.000Z" + }, + "events": [ + { + "uuid": "b38a32fc-9eef-4336-bf34-a739c1c5dc8f", + "start": { + "$date": "2021-04-29T05:21:28.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d304b40-0911-4d1d-9e39-154ee091450f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T05:21:36.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:23.000Z" + }, + "events": [ + { + "uuid": "31162e6e-c010-46f6-a80f-976917b2e38f", + "start": { + "$date": "2021-04-29T05:21:36.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7005afc3-d136-4bd4-b84a-ca21a8fdf3a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T05:21:16.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:25.000Z" + }, + "events": [ + { + "uuid": "63798be1-35b6-4aff-8208-3a65734586a4", + "start": { + "$date": "2021-04-29T05:21:16.000Z" + }, + "end": { + "$date": "2021-04-29T05:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7807b49c-c0ec-4656-9353-c57bd5a6b7bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T05:37:35.000Z" + }, + "end": { + "$date": "2021-04-29T05:50:11.000Z" + }, + "events": [ + { + "uuid": "8f56d936-4b90-4e12-87cf-c2fb19383812", + "start": { + "$date": "2021-04-29T05:37:35.000Z" + }, + "end": { + "$date": "2021-04-29T05:50:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2343d9b-e7ca-4bbf-b891-b01566975add", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-29T05:37:23.000Z" + }, + "end": { + "$date": "2021-04-29T05:50:03.000Z" + }, + "events": [ + { + "uuid": "c65351ed-5df9-470b-8d8f-74765625c758", + "start": { + "$date": "2021-04-29T05:37:23.000Z" + }, + "end": { + "$date": "2021-04-29T05:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67761c07-7cc5-4438-a35f-3a50e43c18ce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T05:37:52.000Z" + }, + "end": { + "$date": "2021-04-29T05:50:11.000Z" + }, + "events": [ + { + "uuid": "46182b07-d6e5-4cb4-9036-7caa86b0154b", + "start": { + "$date": "2021-04-29T05:37:52.000Z" + }, + "end": { + "$date": "2021-04-29T05:50:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0b13142-b8f2-4069-88d0-ebc4d4982de6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T05:37:37.000Z" + }, + "end": { + "$date": "2021-04-29T05:49:59.000Z" + }, + "events": [ + { + "uuid": "4fd70f65-0970-4123-91b0-972edcc70579", + "start": { + "$date": "2021-04-29T05:37:37.000Z" + }, + "end": { + "$date": "2021-04-29T05:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "43e6370f-8312-4046-8aaf-280bfa0d6b65", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-29T05:36:52.000Z" + }, + "end": { + "$date": "2021-04-29T08:22:52.000Z" + }, + "events": [ + { + "uuid": "56961102-3dd9-4337-bc49-5265556c545f", + "start": { + "$date": "2021-04-29T05:36:52.000Z" + }, + "end": { + "$date": "2021-04-29T08:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2eacfef3-94fa-49cf-9a45-76d82183de04", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T05:52:36.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:17.000Z" + }, + "events": [ + { + "uuid": "21234526-6478-40b1-bdf4-de490cf01cb4", + "start": { + "$date": "2021-04-29T05:52:36.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f179d984-e369-4418-9605-dfaea4d8d6b0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-29T05:52:28.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:09.000Z" + }, + "events": [ + { + "uuid": "c57d8322-bbea-4021-8c57-4c7f6ef240b2", + "start": { + "$date": "2021-04-29T05:52:28.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9753aad-a19f-4043-bc4e-010b4daa9608", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T05:52:43.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:10.000Z" + }, + "events": [ + { + "uuid": "21862607-aa96-4ac4-963f-a50bad022765", + "start": { + "$date": "2021-04-29T05:52:43.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56f8dd6f-db1e-49ca-8f71-8c1e835b2989", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-29T05:52:23.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:21.000Z" + }, + "events": [ + { + "uuid": "315a35ca-c27d-4bc9-b7cb-cb4cce4afd90", + "start": { + "$date": "2021-04-29T05:52:23.000Z" + }, + "end": { + "$date": "2021-04-29T06:16:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fe01a6a0-7b70-4f8d-8c6f-ef03b9354686", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-29T06:26:58.000Z" + }, + "end": { + "$date": "2021-04-29T07:15:25.000Z" + }, + "events": [ + { + "uuid": "bbd8dd99-ccb7-4799-88f5-88b7c7584dd8", + "start": { + "$date": "2021-04-29T06:26:58.000Z" + }, + "end": { + "$date": "2021-04-29T07:15:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e79790cf-ab83-44c5-b682-5d3e65e296ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T15:31:30.000Z" + }, + "end": { + "$date": "2021-04-29T16:22:02.000Z" + }, + "events": [ + { + "uuid": "07193a1f-bcff-4934-9852-929eb3ff2efb", + "start": { + "$date": "2021-04-29T15:31:30.000Z" + }, + "end": { + "$date": "2021-04-29T16:22:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5f75f73-fb6b-455c-903f-796be60de96b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T16:18:23.000Z" + }, + "end": { + "$date": "2021-04-29T16:37:33.000Z" + }, + "events": [ + { + "uuid": "f8c0fbde-4b6c-43c5-9c50-5b5954fe5543", + "start": { + "$date": "2021-04-29T16:18:23.000Z" + }, + "end": { + "$date": "2021-04-29T16:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "29fc9f1b-a091-4707-aab4-bc53a6afb621", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-29T16:35:38.000Z" + }, + "end": { + "$date": "2021-04-29T17:57:06.000Z" + }, + "events": [ + { + "uuid": "d70bd9ce-2c21-48c2-8c16-73df5e2dedef", + "start": { + "$date": "2021-04-29T16:35:38.000Z" + }, + "end": { + "$date": "2021-04-29T16:53:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7eaef545-e5c0-49fa-b1a9-83f7a37c2cc2", + "start": { + "$date": "2021-04-29T16:53:38.000Z" + }, + "end": { + "$date": "2021-04-29T17:21:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bdee5f2d-583f-48b3-ada7-93c76d46bf1d", + "start": { + "$date": "2021-04-29T17:21:38.000Z" + }, + "end": { + "$date": "2021-04-29T17:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9af7cdd3-661e-41db-b7a0-667d618c4c45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T16:38:44.000Z" + }, + "end": { + "$date": "2021-04-29T16:53:00.000Z" + }, + "events": [ + { + "uuid": "1489bf87-13ce-4f72-94a7-f26f87cc9be1", + "start": { + "$date": "2021-04-29T16:38:44.000Z" + }, + "end": { + "$date": "2021-04-29T16:53:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9f7f845-0ae3-4c19-8342-56487fc07c47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T16:53:07.000Z" + }, + "end": { + "$date": "2021-04-29T17:59:19.000Z" + }, + "events": [ + { + "uuid": "26307dcc-9bf6-4557-9ea3-0d9b21f48294", + "start": { + "$date": "2021-04-29T16:53:07.000Z" + }, + "end": { + "$date": "2021-04-29T17:59:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0df6adb4-560a-4d96-a40a-5b33a410810c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-29T18:00:22.000Z" + }, + "end": { + "$date": "2021-04-29T18:44:59.000Z" + }, + "events": [ + { + "uuid": "9bb7ea5a-ec28-409b-8815-3ab615177395", + "start": { + "$date": "2021-04-29T18:00:22.000Z" + }, + "end": { + "$date": "2021-04-29T18:44:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce1158d0-acb7-4449-a380-b90162766ce6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T19:26:08.000Z" + }, + "end": { + "$date": "2021-04-29T19:45:38.000Z" + }, + "events": [ + { + "uuid": "235451f8-fd0e-43c9-bbd2-bb5e03ce32fd", + "start": { + "$date": "2021-04-29T19:26:08.000Z" + }, + "end": { + "$date": "2021-04-29T19:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9ec75179-4f38-4802-aac6-0618494b03c2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-29T19:34:07.000Z" + }, + "end": { + "$date": "2021-04-29T19:42:20.000Z" + }, + "events": [ + { + "uuid": "4e30f8e0-1641-4c59-a7f2-28f99cbbea7e", + "start": { + "$date": "2021-04-29T19:34:07.000Z" + }, + "end": { + "$date": "2021-04-29T19:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c851749a-5b72-4c9c-afd7-6bbf5d2a6945", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T19:48:40.000Z" + }, + "end": { + "$date": "2021-04-29T20:07:56.000Z" + }, + "events": [ + { + "uuid": "49d757ef-0cd5-4ace-903d-7dcc4593d1d2", + "start": { + "$date": "2021-04-29T19:48:40.000Z" + }, + "end": { + "$date": "2021-04-29T20:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a08f5ab8-214a-4508-9655-0fb98540c3d0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-29T21:10:47.000Z" + }, + "end": { + "$date": "2021-04-29T23:38:34.000Z" + }, + "events": [ + { + "uuid": "a969d9c1-5b0c-473f-a525-bd9aac79f038", + "start": { + "$date": "2021-04-29T21:10:47.000Z" + }, + "end": { + "$date": "2021-04-29T22:54:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70eaef1d-767e-4dcf-9d72-b14c74192b8e", + "start": { + "$date": "2021-04-29T22:54:47.000Z" + }, + "end": { + "$date": "2021-04-29T22:55:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db9e0b8e-4e06-4e48-ac98-c35a3b38cb81", + "start": { + "$date": "2021-04-29T22:55:47.000Z" + }, + "end": { + "$date": "2021-04-29T22:58:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc5327ae-2976-44a1-b422-aa6cc0f66746", + "start": { + "$date": "2021-04-29T22:58:47.000Z" + }, + "end": { + "$date": "2021-04-29T23:18:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f996908-7e31-4067-ba2a-d1d5c35a0d58", + "start": { + "$date": "2021-04-29T23:18:47.000Z" + }, + "end": { + "$date": "2021-04-29T23:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b73dbd4-f4c2-4833-a4d6-56d457a87036", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T20:11:17.000Z" + }, + "end": { + "$date": "2021-04-29T20:25:42.000Z" + }, + "events": [ + { + "uuid": "2cdde40e-6c73-47b8-ba06-21fbac70cdf0", + "start": { + "$date": "2021-04-29T20:11:17.000Z" + }, + "end": { + "$date": "2021-04-29T20:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a91a3813-70b4-4674-8d7e-3db20bc5908d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-29T20:09:33.000Z" + }, + "end": { + "$date": "2021-04-29T21:46:25.000Z" + }, + "events": [ + { + "uuid": "bfbee054-375a-43e2-bb0b-bee30a972855", + "start": { + "$date": "2021-04-29T20:09:33.000Z" + }, + "end": { + "$date": "2021-04-29T20:28:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c1d18c5-4707-4b6f-9db1-579d38b2a2ee", + "start": { + "$date": "2021-04-29T20:28:33.000Z" + }, + "end": { + "$date": "2021-04-29T20:37:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ccb787c7-a49e-4dfa-9ebe-b28f38e27593", + "start": { + "$date": "2021-04-29T20:37:33.000Z" + }, + "end": { + "$date": "2021-04-29T21:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c26913c-acc3-4985-a592-161db4d62440", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T20:29:14.000Z" + }, + "end": { + "$date": "2021-04-29T20:46:04.000Z" + }, + "events": [ + { + "uuid": "2a859c8f-b29b-4035-ae3f-745fed3520cd", + "start": { + "$date": "2021-04-29T20:29:14.000Z" + }, + "end": { + "$date": "2021-04-29T20:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "470d8383-3b8d-4ddc-9f49-6156abbd055f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-29T21:46:31.000Z" + }, + "end": { + "$date": "2021-04-30T00:13:56.000Z" + }, + "events": [ + { + "uuid": "c6ddc230-18e7-4092-91cb-0b9a48123e9c", + "start": { + "$date": "2021-04-29T21:46:31.000Z" + }, + "end": { + "$date": "2021-04-30T00:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73c17035-fcc3-4b91-aeae-72522a67d393", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-29T21:56:03.000Z" + }, + "end": { + "$date": "2021-04-29T22:41:40.000Z" + }, + "events": [ + { + "uuid": "94de3886-38eb-485f-848a-edf7e19b0344", + "start": { + "$date": "2021-04-29T21:56:03.000Z" + }, + "end": { + "$date": "2021-04-29T22:41:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc966244-10eb-44e3-a859-e396921f0edc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T22:58:24.000Z" + }, + "end": { + "$date": "2021-04-29T23:10:54.000Z" + }, + "events": [ + { + "uuid": "134d9601-0ee4-47ff-8f44-8c373959b713", + "start": { + "$date": "2021-04-29T22:58:24.000Z" + }, + "end": { + "$date": "2021-04-29T23:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "949013dc-8dd1-4705-bc71-22f50dd4fc1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T23:25:41.000Z" + }, + "end": { + "$date": "2021-04-29T23:25:45.000Z" + }, + "events": [ + { + "uuid": "1eec2994-dd62-4dae-a097-767028ce815e", + "start": { + "$date": "2021-04-29T23:25:41.000Z" + }, + "end": { + "$date": "2021-04-29T23:25:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cfc0153-b410-4d6c-8c4a-83664a9a0b9f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-29T23:32:21.000Z" + }, + "end": { + "$date": "2021-04-29T23:53:01.000Z" + }, + "events": [ + { + "uuid": "6ff47a28-5c23-4cf9-81cd-278bda97fc59", + "start": { + "$date": "2021-04-29T23:32:21.000Z" + }, + "end": { + "$date": "2021-04-29T23:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b9428b72-eab3-412a-acfc-dccc9e55ea5a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-29T23:28:06.000Z" + }, + "end": { + "$date": "2021-04-30T00:11:42.000Z" + }, + "events": [ + { + "uuid": "0604e2eb-6360-4cea-a574-67f3511f7ecc", + "start": { + "$date": "2021-04-29T23:28:06.000Z" + }, + "end": { + "$date": "2021-04-30T00:11:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "15609cc6-f522-40a0-976e-ffda6924e76a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-04-29T23:55:52.000Z" + }, + "end": { + "$date": "2021-04-30T00:09:06.000Z" + }, + "events": [ + { + "uuid": "a0b65258-19d9-4f5c-8936-d480531e4054", + "start": { + "$date": "2021-04-29T23:55:52.000Z" + }, + "end": { + "$date": "2021-04-30T00:09:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "44b8afcd-0edc-4580-95de-a2688a904239", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-29T23:59:29.000Z" + }, + "end": { + "$date": "2021-04-30T00:04:39.000Z" + }, + "events": [ + { + "uuid": "3636dad4-b448-41cf-b71c-bb8bd9cfab4f", + "start": { + "$date": "2021-04-29T23:59:29.000Z" + }, + "end": { + "$date": "2021-04-30T00:04:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "17ae5885-31b2-4ada-96df-53f84ed5d798", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T01:03:38.000Z" + }, + "end": { + "$date": "2021-04-30T02:08:28.000Z" + }, + "events": [ + { + "uuid": "1392de9c-e56b-4b28-849e-1ec5c0c55bb5", + "start": { + "$date": "2021-04-30T01:03:38.000Z" + }, + "end": { + "$date": "2021-04-30T02:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "feb816e8-61b7-431c-b020-2a09cfbafcbf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-30T01:17:38.000Z" + }, + "end": { + "$date": "2021-04-30T01:20:51.000Z" + }, + "events": [ + { + "uuid": "af31883b-88e2-48a8-9cc5-72a39fbebd2c", + "start": { + "$date": "2021-04-30T01:17:38.000Z" + }, + "end": { + "$date": "2021-04-30T01:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c36783b0-8533-44bb-af6e-031a5b87c9c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-30T03:38:50.000Z" + }, + "end": { + "$date": "2021-04-30T04:20:58.000Z" + }, + "events": [ + { + "uuid": "6f301f62-ccf9-4dd3-821e-7e47bcd13cc6", + "start": { + "$date": "2021-04-30T03:38:50.000Z" + }, + "end": { + "$date": "2021-04-30T04:20:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "011bb076-d216-4339-a1f8-0156ecc3e2d7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-30T01:21:09.000Z" + }, + "end": { + "$date": "2021-04-30T01:55:20.000Z" + }, + "events": [ + { + "uuid": "233c79d3-ce9b-4b1f-ab2b-cb7148f657ee", + "start": { + "$date": "2021-04-30T01:21:09.000Z" + }, + "end": { + "$date": "2021-04-30T01:55:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "88c740f5-f1b2-486a-ba7b-be9bc43bf322", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T01:26:38.000Z" + }, + "end": { + "$date": "2021-04-30T01:30:23.000Z" + }, + "events": [ + { + "uuid": "3514a2bd-c94a-4a18-ab9d-7c67a7e9b589", + "start": { + "$date": "2021-04-30T01:26:38.000Z" + }, + "end": { + "$date": "2021-04-30T01:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "d67040c4-6e26-463c-8442-08a27c3a7edb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-30T01:31:01.000Z" + }, + "end": { + "$date": "2021-04-30T01:33:33.000Z" + }, + "events": [ + { + "uuid": "86e15598-228d-49c3-ac47-fd2527c04c96", + "start": { + "$date": "2021-04-30T01:31:01.000Z" + }, + "end": { + "$date": "2021-04-30T01:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "31a2e123-b58e-4e8b-887c-6f1cc6a7f2b8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T01:31:09.000Z" + }, + "end": { + "$date": "2021-04-30T03:07:53.000Z" + }, + "events": [ + { + "uuid": "37d9f241-dcc2-421a-8ddf-0e02298fe72f", + "start": { + "$date": "2021-04-30T01:31:09.000Z" + }, + "end": { + "$date": "2021-04-30T03:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "f76233f1-c013-43da-9f93-ac959e578b3b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-30T01:35:22.000Z" + }, + "end": { + "$date": "2021-04-30T01:55:17.000Z" + }, + "events": [ + { + "uuid": "0d0d989d-4c9d-4050-b36a-1b47e6073570", + "start": { + "$date": "2021-04-30T01:35:22.000Z" + }, + "end": { + "$date": "2021-04-30T01:55:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f91bbffb-6510-4075-94b7-fe8d5945b0d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-30T01:47:25.000Z" + }, + "end": { + "$date": "2021-04-30T01:48:44.000Z" + }, + "events": [ + { + "uuid": "690adf0e-0e64-4507-bddd-609ae02a695d", + "start": { + "$date": "2021-04-30T01:47:25.000Z" + }, + "end": { + "$date": "2021-04-30T01:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c4bb496f-42d4-4cee-8414-88d60f0010ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-30T01:49:00.000Z" + }, + "end": { + "$date": "2021-04-30T02:00:05.000Z" + }, + "events": [ + { + "uuid": "3200f459-e6cf-48b4-83e8-3e965c345dbb", + "start": { + "$date": "2021-04-30T01:49:00.000Z" + }, + "end": { + "$date": "2021-04-30T02:00:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d0559701-5a6c-4f1d-b9e8-d01298c64ff8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-30T01:56:14.000Z" + }, + "end": { + "$date": "2021-04-30T01:58:48.000Z" + }, + "events": [ + { + "uuid": "5e3e5037-0dc2-4c9a-8148-142eb0db3d43", + "start": { + "$date": "2021-04-30T01:56:14.000Z" + }, + "end": { + "$date": "2021-04-30T01:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3bd69d1b-6b99-4d97-bba1-69ec98d51266", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-30T01:59:04.000Z" + }, + "end": { + "$date": "2021-04-30T06:11:17.000Z" + }, + "events": [ + { + "uuid": "bacacd29-c976-4314-a62d-a0d0b0f72286", + "start": { + "$date": "2021-04-30T01:59:04.000Z" + }, + "end": { + "$date": "2021-04-30T06:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "7511c4be-63dd-45b5-a624-40e0fa6e04a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-30T01:59:56.000Z" + }, + "end": { + "$date": "2021-04-30T02:13:29.000Z" + }, + "events": [ + { + "uuid": "01c7b95a-553e-438f-86c8-ae03f698b269", + "start": { + "$date": "2021-04-30T01:59:56.000Z" + }, + "end": { + "$date": "2021-04-30T02:13:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "96f75594-5651-4272-b90e-acd81d88c8f3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-30T02:16:28.000Z" + }, + "end": { + "$date": "2021-04-30T02:55:22.000Z" + }, + "events": [ + { + "uuid": "b7cbe440-d5c7-4de2-bb4a-74e6bffc49a9", + "start": { + "$date": "2021-04-30T02:16:28.000Z" + }, + "end": { + "$date": "2021-04-30T02:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "445b9277-3c25-4f7a-a97f-ac7affc03142", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T02:28:12.000Z" + }, + "end": { + "$date": "2021-04-30T02:45:22.000Z" + }, + "events": [ + { + "uuid": "1108a5bb-4677-4a5b-b62d-dc36fd7f8327", + "start": { + "$date": "2021-04-30T02:28:12.000Z" + }, + "end": { + "$date": "2021-04-30T02:45:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbd7892b-c8eb-4317-bdff-da04f2810d2b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-30T02:36:59.000Z" + }, + "end": { + "$date": "2021-04-30T03:01:40.000Z" + }, + "events": [ + { + "uuid": "42589aac-85f5-4274-b9c9-eb53154f944d", + "start": { + "$date": "2021-04-30T02:36:59.000Z" + }, + "end": { + "$date": "2021-04-30T03:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "07dd6e4c-d6d9-4261-9fab-a0d894765b7d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T02:45:48.000Z" + }, + "end": { + "$date": "2021-04-30T14:18:07.000Z" + }, + "events": [ + { + "uuid": "a749e2c8-50ad-4210-baf9-06a01e5c01c1", + "start": { + "$date": "2021-04-30T02:45:48.000Z" + }, + "end": { + "$date": "2021-04-30T04:32:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0d64d1a-9cb8-41e6-bcf9-7995c1dbd0eb", + "start": { + "$date": "2021-04-30T04:32:48.000Z" + }, + "end": { + "$date": "2021-04-30T13:47:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5581b042-d948-4ea5-b5be-eb576291eece", + "start": { + "$date": "2021-04-30T13:47:48.000Z" + }, + "end": { + "$date": "2021-04-30T13:51:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "657c8932-cc7f-4c0c-a1e0-34b592873a7e", + "start": { + "$date": "2021-04-30T13:51:48.000Z" + }, + "end": { + "$date": "2021-04-30T13:58:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "acdc397c-9275-49f2-a206-c9cdaf9b7282", + "start": { + "$date": "2021-04-30T13:58:48.000Z" + }, + "end": { + "$date": "2021-04-30T14:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62286353-b751-49a5-9cf1-30170500c14e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-30T03:17:32.000Z" + }, + "end": { + "$date": "2021-04-30T03:43:14.000Z" + }, + "events": [ + { + "uuid": "456911a4-8733-4bc9-bf15-0bd510755273", + "start": { + "$date": "2021-04-30T03:17:32.000Z" + }, + "end": { + "$date": "2021-04-30T03:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "78ee1036-1002-47d5-8118-a5a8c6f94f7f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T03:41:51.000Z" + }, + "end": { + "$date": "2021-04-30T03:58:37.000Z" + }, + "events": [ + { + "uuid": "a159b136-c763-4899-8996-fc31729168f7", + "start": { + "$date": "2021-04-30T03:41:51.000Z" + }, + "end": { + "$date": "2021-04-30T03:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30373f9e-2d4b-4e52-806e-7b66b625086d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-30T04:02:49.000Z" + }, + "end": { + "$date": "2021-04-30T04:21:19.000Z" + }, + "events": [ + { + "uuid": "3f80ce87-222a-4d06-8e21-cdc2ab7a806e", + "start": { + "$date": "2021-04-30T04:02:49.000Z" + }, + "end": { + "$date": "2021-04-30T04:21:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9af56a6-b260-4d65-874c-d483de96d1b2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-30T04:03:33.000Z" + }, + "end": { + "$date": "2021-04-30T04:41:20.000Z" + }, + "events": [ + { + "uuid": "5edbdd04-413b-4c46-b561-97cf7909ebfd", + "start": { + "$date": "2021-04-30T04:03:33.000Z" + }, + "end": { + "$date": "2021-04-30T04:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "9b4191fe-1e53-4fc6-b58e-9e67932e5116", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T03:59:12.000Z" + }, + "end": { + "$date": "2021-04-30T04:06:32.000Z" + }, + "events": [ + { + "uuid": "e8abc530-8f4c-4675-b6ce-3c36ba309f9f", + "start": { + "$date": "2021-04-30T03:59:12.000Z" + }, + "end": { + "$date": "2021-04-30T04:06:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "65558efb-b3df-4f62-8d57-7aa04c8afb61", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T04:10:37.000Z" + }, + "end": { + "$date": "2021-04-30T04:28:39.000Z" + }, + "events": [ + { + "uuid": "27378803-9062-48c7-ae37-beef399653dc", + "start": { + "$date": "2021-04-30T04:10:37.000Z" + }, + "end": { + "$date": "2021-04-30T04:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7147b360-dfc1-494b-9590-b2bd73528463", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-04-30T04:11:03.000Z" + }, + "end": { + "$date": "2021-04-30T07:20:23.000Z" + }, + "events": [ + { + "uuid": "12ca6d75-be5b-4ef1-8588-3141db555148", + "start": { + "$date": "2021-04-30T04:11:03.000Z" + }, + "end": { + "$date": "2021-04-30T07:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "74b5ea8d-6a05-4138-b58f-d62d3575c8d3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-04-30T04:28:10.000Z" + }, + "end": { + "$date": "2021-04-30T05:54:56.000Z" + }, + "events": [ + { + "uuid": "dff7a2d3-af36-4976-bd0b-6b12a2ddaa4e", + "start": { + "$date": "2021-04-30T04:28:10.000Z" + }, + "end": { + "$date": "2021-04-30T05:54:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a0cb273d-fd21-4521-922b-c8fb20578b6e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-30T05:06:27.000Z" + }, + "end": { + "$date": "2021-04-30T05:15:58.000Z" + }, + "events": [ + { + "uuid": "87937f30-8436-467e-922d-700d738d2eed", + "start": { + "$date": "2021-04-30T05:06:27.000Z" + }, + "end": { + "$date": "2021-04-30T05:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80483f65-843e-4d84-953b-3301e50eabf9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-04-30T05:23:03.000Z" + }, + "end": { + "$date": "2021-04-30T05:59:01.000Z" + }, + "events": [ + { + "uuid": "a1bae4c0-174e-49a5-bfd1-4b50ab41b4e2", + "start": { + "$date": "2021-04-30T05:23:03.000Z" + }, + "end": { + "$date": "2021-04-30T05:59:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0322cb63-93e4-47b3-b42f-215559e683e6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-30T05:46:36.000Z" + }, + "end": { + "$date": "2021-04-30T06:10:38.000Z" + }, + "events": [ + { + "uuid": "d80c48ec-d24f-4005-af1e-9b3eb108e42c", + "start": { + "$date": "2021-04-30T05:46:36.000Z" + }, + "end": { + "$date": "2021-04-30T06:10:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "612d74cc-9fd7-48d5-b695-f44757ed51fa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T05:50:05.000Z" + }, + "end": { + "$date": "2021-04-30T06:19:45.000Z" + }, + "events": [ + { + "uuid": "f4ca52f7-1e9b-4d49-940c-dfc593dfbe34", + "start": { + "$date": "2021-04-30T05:50:05.000Z" + }, + "end": { + "$date": "2021-04-30T06:19:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "f3a1f45e-3ed4-4212-9960-737119bff796", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T06:23:30.000Z" + }, + "end": { + "$date": "2021-04-30T06:27:16.000Z" + }, + "events": [ + { + "uuid": "992d8444-6848-42e5-a886-5254b884331c", + "start": { + "$date": "2021-04-30T06:23:30.000Z" + }, + "end": { + "$date": "2021-04-30T06:27:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "de20329a-3f49-45a5-9f86-6f8a4560410e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-04-30T06:24:41.000Z" + }, + "end": { + "$date": "2021-04-30T06:40:01.000Z" + }, + "events": [ + { + "uuid": "9f8764fa-7fe3-4182-84ac-ea79e474ff38", + "start": { + "$date": "2021-04-30T06:24:41.000Z" + }, + "end": { + "$date": "2021-04-30T06:40:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "79daa32d-251c-409f-b120-59c51c76bdad", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-30T14:25:03.000Z" + }, + "end": { + "$date": "2021-04-30T14:32:52.000Z" + }, + "events": [ + { + "uuid": "68a97dbb-cbe4-44fc-a4de-d637adb796f8", + "start": { + "$date": "2021-04-30T14:25:03.000Z" + }, + "end": { + "$date": "2021-04-30T14:32:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "91a22031-3903-4200-89de-a714929b27e0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-30T14:34:01.000Z" + }, + "end": { + "$date": "2021-04-30T14:42:09.000Z" + }, + "events": [ + { + "uuid": "ca77264e-586a-4cb1-9ff7-f282de3029e5", + "start": { + "$date": "2021-04-30T14:34:01.000Z" + }, + "end": { + "$date": "2021-04-30T14:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "a52d64d8-945e-4d41-bbd9-3c5c2b5e30bd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-30T14:49:45.000Z" + }, + "end": { + "$date": "2021-04-30T14:49:56.000Z" + }, + "events": [ + { + "uuid": "7133802d-4fd4-4e26-9484-f3550b10fff5", + "start": { + "$date": "2021-04-30T14:49:45.000Z" + }, + "end": { + "$date": "2021-04-30T14:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "dccd23d0-b5b0-4a63-b9d7-66a25870c064", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-30T15:01:34.000Z" + }, + "end": { + "$date": "2021-04-30T15:01:45.000Z" + }, + "events": [ + { + "uuid": "989cfc94-76cf-4b7b-88fe-7a2ec0cc5592", + "start": { + "$date": "2021-04-30T15:01:34.000Z" + }, + "end": { + "$date": "2021-04-30T15:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "13db4abf-b534-4edf-87f3-8fdb75246f21", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-30T15:06:25.000Z" + }, + "end": { + "$date": "2021-04-30T19:51:54.000Z" + }, + "events": [ + { + "uuid": "ea8bfcf4-0560-447d-8cd6-80cd0700068d", + "start": { + "$date": "2021-04-30T15:06:25.000Z" + }, + "end": { + "$date": "2021-04-30T19:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "97fc78da-6111-49f9-b1ef-d92fa6be5b6b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T15:56:44.000Z" + }, + "end": { + "$date": "2021-04-30T15:58:54.000Z" + }, + "events": [ + { + "uuid": "4fd28630-cf26-4278-a6bd-001dd3b61b8f", + "start": { + "$date": "2021-04-30T15:56:44.000Z" + }, + "end": { + "$date": "2021-04-30T15:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "e21d9674-1d91-424b-bb9b-deeff40a7aab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T15:59:14.000Z" + }, + "end": { + "$date": "2021-04-30T16:00:33.000Z" + }, + "events": [ + { + "uuid": "74a4e810-72da-495c-b083-11dfa618e38b", + "start": { + "$date": "2021-04-30T15:59:14.000Z" + }, + "end": { + "$date": "2021-04-30T16:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "b1129c26-d73c-43e9-a86b-34b7ee0eb94c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T16:00:46.000Z" + }, + "end": { + "$date": "2021-04-30T16:02:46.000Z" + }, + "events": [ + { + "uuid": "adddcb5d-cdfc-41d5-9c4e-5985106c225e", + "start": { + "$date": "2021-04-30T16:00:46.000Z" + }, + "end": { + "$date": "2021-04-30T16:02:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "22a2e85f-4593-481e-983f-2ec84c1f3526", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T16:21:45.000Z" + }, + "end": { + "$date": "2021-04-30T18:09:43.000Z" + }, + "events": [ + { + "uuid": "e185c442-add6-4703-82c2-90682d62c803", + "start": { + "$date": "2021-04-30T16:21:45.000Z" + }, + "end": { + "$date": "2021-04-30T17:50:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "479fdc91-b0bb-46c7-a8de-c72233cf4729", + "start": { + "$date": "2021-04-30T17:50:45.000Z" + }, + "end": { + "$date": "2021-04-30T18:09:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f0ef39c-9777-432b-a5d3-aa9057f1a9f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T18:06:10.000Z" + }, + "end": { + "$date": "2021-04-30T18:26:16.000Z" + }, + "events": [ + { + "uuid": "349c7899-1f69-48fe-a460-00112dc3c314", + "start": { + "$date": "2021-04-30T18:06:10.000Z" + }, + "end": { + "$date": "2021-04-30T18:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2ff00f46-78e8-4976-a4b3-982b498bb73a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T18:09:49.000Z" + }, + "end": { + "$date": "2021-04-30T19:24:31.000Z" + }, + "events": [ + { + "uuid": "05edb7de-daba-4d90-8a0c-5430ba512dc9", + "start": { + "$date": "2021-04-30T18:09:49.000Z" + }, + "end": { + "$date": "2021-04-30T19:24:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fab325b-c91f-45a9-931f-d91151712640", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T18:30:42.000Z" + }, + "end": { + "$date": "2021-04-30T18:47:29.000Z" + }, + "events": [ + { + "uuid": "8a9be23b-711e-42d6-bb5d-ab4605e31f67", + "start": { + "$date": "2021-04-30T18:30:42.000Z" + }, + "end": { + "$date": "2021-04-30T18:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87021ed3-b69a-4078-8ae6-5e3e8e20929c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T19:01:22.000Z" + }, + "end": { + "$date": "2021-04-30T19:16:58.000Z" + }, + "events": [ + { + "uuid": "70eb3d90-05ed-4e2c-8f86-ab949e534bc5", + "start": { + "$date": "2021-04-30T19:01:22.000Z" + }, + "end": { + "$date": "2021-04-30T19:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91a09707-9aef-48dc-aaf0-c0c886de4259", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T19:21:14.000Z" + }, + "end": { + "$date": "2021-04-30T19:39:45.000Z" + }, + "events": [ + { + "uuid": "2f4ad218-98cb-4e2f-bb1c-987ed4bda00d", + "start": { + "$date": "2021-04-30T19:21:14.000Z" + }, + "end": { + "$date": "2021-04-30T19:39:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "169ad38f-b344-44e3-9cc0-97dac1645c0a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-30T19:41:31.000Z" + }, + "end": { + "$date": "2021-04-30T20:28:11.000Z" + }, + "events": [ + { + "uuid": "ef31953b-65d8-4884-98cf-5042d51bfd7d", + "start": { + "$date": "2021-04-30T19:41:31.000Z" + }, + "end": { + "$date": "2021-04-30T20:28:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4d53baa2-dae2-4cf5-a5cf-05e7680badb6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-04-30T19:33:52.000Z" + }, + "end": { + "$date": "2021-05-01T03:35:13.000Z" + }, + "events": [ + { + "uuid": "5c8a0276-7ec8-40e9-9d38-fc4c441d5ff5", + "start": { + "$date": "2021-04-30T19:33:52.000Z" + }, + "end": { + "$date": "2021-05-01T03:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a3c0884c-d104-422b-a384-8c537bf48294", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-04-30T21:13:25.000Z" + }, + "end": { + "$date": "2021-04-30T21:27:27.000Z" + }, + "events": [ + { + "uuid": "609b8684-e846-4067-ab56-0d7a78c34c03", + "start": { + "$date": "2021-04-30T21:13:25.000Z" + }, + "end": { + "$date": "2021-04-30T22:21:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff57c78f-abd8-422d-a1d9-7915989d6ac3", + "start": { + "$date": "2021-04-30T22:21:25.000Z" + }, + "end": { + "$date": "2021-04-30T22:27:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2ff9192-d807-45ef-bf7f-76ba81240f0f", + "start": { + "$date": "2021-04-30T22:27:25.000Z" + }, + "end": { + "$date": "2021-04-30T21:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "04cfb0e8-8081-40f8-b6cc-728f421e6704", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-04-30T19:59:59.000Z" + }, + "end": { + "$date": "2021-04-30T20:32:40.000Z" + }, + "events": [ + { + "uuid": "e5b6489e-7156-4bc1-905a-b8530036355c", + "start": { + "$date": "2021-04-30T19:59:59.000Z" + }, + "end": { + "$date": "2021-04-30T20:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c4af49e-88ee-486f-a530-5489cef09dcb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-30T20:40:35.000Z" + }, + "end": { + "$date": "2021-04-30T21:07:11.000Z" + }, + "events": [ + { + "uuid": "0da1266a-cc8e-4541-97b3-14efdf8e8436", + "start": { + "$date": "2021-04-30T20:40:35.000Z" + }, + "end": { + "$date": "2021-04-30T21:07:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a07b943-fe4f-48d1-989b-03c76541e04b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-30T20:31:56.000Z" + }, + "end": { + "$date": "2021-04-30T20:34:24.000Z" + }, + "events": [ + { + "uuid": "840f2817-ff91-4970-b401-93bb923b6562", + "start": { + "$date": "2021-04-30T20:31:56.000Z" + }, + "end": { + "$date": "2021-04-30T20:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2f6dbbf-1fca-4883-92cf-f48d69633101", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-04-30T22:06:34.000Z" + }, + "end": { + "$date": "2021-04-30T22:07:44.000Z" + }, + "events": [ + { + "uuid": "d4156e8b-ba59-46e8-95ba-1d89f2863daa", + "start": { + "$date": "2021-04-30T22:06:34.000Z" + }, + "end": { + "$date": "2021-04-30T22:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "e4d6485a-03bf-49c3-8f3a-d7af45f25e4e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-04-30T22:03:35.000Z" + }, + "end": { + "$date": "2021-05-01T04:00:16.000Z" + }, + "events": [ + { + "uuid": "72f9fc0f-05ae-4d2e-9fda-59fb8a80d13d", + "start": { + "$date": "2021-04-30T22:03:35.000Z" + }, + "end": { + "$date": "2021-05-01T04:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "aad316d1-59d2-4c97-bedf-41d84cfd856c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T20:52:57.000Z" + }, + "end": { + "$date": "2021-04-30T21:20:13.000Z" + }, + "events": [ + { + "uuid": "ed37fc72-5021-403a-a124-9187259f4881", + "start": { + "$date": "2021-04-30T20:52:57.000Z" + }, + "end": { + "$date": "2021-04-30T21:20:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "684a5311-2f4e-423c-83ff-d424e771b458", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-30T21:13:40.000Z" + }, + "end": { + "$date": "2021-04-30T21:34:10.000Z" + }, + "events": [ + { + "uuid": "1dfe83ef-d08d-4bf5-afd1-4eaeda44f0e9", + "start": { + "$date": "2021-04-30T21:13:40.000Z" + }, + "end": { + "$date": "2021-04-30T21:34:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e07f701e-8a2b-41ce-a0a5-07effb7a79fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T21:24:59.000Z" + }, + "end": { + "$date": "2021-04-30T21:40:49.000Z" + }, + "events": [ + { + "uuid": "1904095f-a263-4843-82bf-495783d19c1c", + "start": { + "$date": "2021-04-30T21:24:59.000Z" + }, + "end": { + "$date": "2021-04-30T21:40:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebf21e44-5fd3-4d0a-8a18-fcd46c88509e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-04-30T21:39:47.000Z" + }, + "end": { + "$date": "2021-04-30T22:06:45.000Z" + }, + "events": [ + { + "uuid": "bf760521-7270-4977-b5c2-39993f42ea8a", + "start": { + "$date": "2021-04-30T21:39:47.000Z" + }, + "end": { + "$date": "2021-04-30T22:06:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "398a804f-43f5-4ca0-93ac-c31139065488", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T22:46:18.000Z" + }, + "end": { + "$date": "2021-04-30T23:50:49.000Z" + }, + "events": [ + { + "uuid": "a94afd52-50fa-4972-bf91-0249eb12d5fa", + "start": { + "$date": "2021-04-30T22:46:18.000Z" + }, + "end": { + "$date": "2021-04-30T23:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a79ad178-290a-4d93-a8aa-abaa6e1ab473", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T21:42:05.000Z" + }, + "end": { + "$date": "2021-04-30T21:55:45.000Z" + }, + "events": [ + { + "uuid": "72da0dec-488e-4796-af96-ea0b99c74030", + "start": { + "$date": "2021-04-30T21:42:05.000Z" + }, + "end": { + "$date": "2021-04-30T21:55:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e547d3ac-52da-45c8-a629-6a66735485fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T22:01:47.000Z" + }, + "end": { + "$date": "2021-04-30T22:18:50.000Z" + }, + "events": [ + { + "uuid": "49142864-f8a5-46d0-88f6-d0dcd89b9085", + "start": { + "$date": "2021-04-30T22:01:47.000Z" + }, + "end": { + "$date": "2021-04-30T22:18:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "620c61f5-73f6-47b5-9bb4-82a20df81950", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T22:22:18.000Z" + }, + "end": { + "$date": "2021-04-30T22:43:49.000Z" + }, + "events": [ + { + "uuid": "f8cc3dbb-4069-4836-858c-a5ed2be1661e", + "start": { + "$date": "2021-04-30T22:22:18.000Z" + }, + "end": { + "$date": "2021-04-30T22:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f768b0f1-c9eb-4b6d-a2c4-52d558fd4bea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-04-30T22:49:45.000Z" + }, + "end": { + "$date": "2021-04-30T23:09:51.000Z" + }, + "events": [ + { + "uuid": "4526995c-2258-4af4-ba82-fab1999fa6a8", + "start": { + "$date": "2021-04-30T22:49:45.000Z" + }, + "end": { + "$date": "2021-04-30T23:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1b479603-2c86-46f5-96cf-2d922de31e80", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-04-30T23:52:04.000Z" + }, + "end": { + "$date": "2021-05-01T00:12:00.000Z" + }, + "events": [ + { + "uuid": "455cfa4d-f724-4237-88d7-3a7de77410ca", + "start": { + "$date": "2021-04-30T23:52:04.000Z" + }, + "end": { + "$date": "2021-05-01T00:12:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6c5a97ce-5bc4-45a9-b46f-085177f923f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T01:19:48.000Z" + }, + "end": { + "$date": "2021-05-01T01:24:43.000Z" + }, + "events": [ + { + "uuid": "6edd51d9-aa2d-4d13-813c-65f24ddeb9bc", + "start": { + "$date": "2021-05-01T01:19:48.000Z" + }, + "end": { + "$date": "2021-05-01T02:00:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "970d8def-499e-4c3c-af9f-c9bae04f15aa", + "start": { + "$date": "2021-05-01T02:00:48.000Z" + }, + "end": { + "$date": "2021-05-01T02:05:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0cad39a2-6de3-40a5-bda6-ed6ed49366e4", + "start": { + "$date": "2021-05-01T02:05:48.000Z" + }, + "end": { + "$date": "2021-05-01T02:15:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c990374-1d02-420a-8a4b-6c636edd3209", + "start": { + "$date": "2021-05-01T02:15:48.000Z" + }, + "end": { + "$date": "2021-05-01T02:19:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b5079307-5be7-40d9-abab-7dd6879299c2", + "start": { + "$date": "2021-05-01T02:19:48.000Z" + }, + "end": { + "$date": "2021-05-01T01:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "482c66d7-d2df-4f1f-893b-b66b1560116d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T00:30:55.000Z" + }, + "end": { + "$date": "2021-05-01T00:44:11.000Z" + }, + "events": [ + { + "uuid": "15ec1d33-3af6-49df-9ea3-94dddda6e931", + "start": { + "$date": "2021-05-01T00:30:55.000Z" + }, + "end": { + "$date": "2021-05-01T00:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e59c583-9173-48a8-8c0d-52d1dec3b4a2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T00:59:41.000Z" + }, + "end": { + "$date": "2021-05-01T01:17:37.000Z" + }, + "events": [ + { + "uuid": "c8eb98f1-d637-498e-a010-da52710e83ea", + "start": { + "$date": "2021-05-01T00:59:41.000Z" + }, + "end": { + "$date": "2021-05-01T01:10:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8d1fe39-7193-4acb-9bf5-48656926cd46", + "start": { + "$date": "2021-05-01T01:10:41.000Z" + }, + "end": { + "$date": "2021-05-01T01:14:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91361302-2f7f-42e7-9193-dfb0aa5173d9", + "start": { + "$date": "2021-05-01T01:14:41.000Z" + }, + "end": { + "$date": "2021-05-01T01:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "dee22ca6-9e19-4ad6-93a5-238fec807e32", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T01:41:47.000Z" + }, + "end": { + "$date": "2021-05-01T01:51:42.000Z" + }, + "events": [ + { + "uuid": "4ee3dd70-b51d-435d-bc0b-3afca494ce6f", + "start": { + "$date": "2021-05-01T01:41:47.000Z" + }, + "end": { + "$date": "2021-05-01T01:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "effba8fb-6fac-475b-a23d-8d276b49baee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T01:51:54.000Z" + }, + "end": { + "$date": "2021-05-01T01:53:21.000Z" + }, + "events": [ + { + "uuid": "345adf1a-2f51-4f89-a725-f5786c51ee3b", + "start": { + "$date": "2021-05-01T01:51:54.000Z" + }, + "end": { + "$date": "2021-05-01T01:53:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "dcc87753-5991-40e1-860c-677da0f054d5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T01:53:37.000Z" + }, + "end": { + "$date": "2021-05-01T02:12:47.000Z" + }, + "events": [ + { + "uuid": "5da194f4-8f36-4a9d-a24d-e0c0e19b3140", + "start": { + "$date": "2021-05-01T01:53:37.000Z" + }, + "end": { + "$date": "2021-05-01T02:12:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01f965db-02ee-455f-947b-6146415ec412", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T01:57:30.000Z" + }, + "end": { + "$date": "2021-05-01T01:59:19.000Z" + }, + "events": [ + { + "uuid": "d760f2b9-bb33-40ad-911b-fda60515a289", + "start": { + "$date": "2021-05-01T01:57:30.000Z" + }, + "end": { + "$date": "2021-05-01T01:59:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dec59530-7663-4e04-a12d-f609b51345c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T02:13:02.000Z" + }, + "end": { + "$date": "2021-05-01T02:14:22.000Z" + }, + "events": [ + { + "uuid": "194e17d4-a049-4ea2-944a-8ab875992be8", + "start": { + "$date": "2021-05-01T02:13:02.000Z" + }, + "end": { + "$date": "2021-05-01T02:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1565b313-c856-40ca-83b7-cd9f2a856351", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T02:17:03.000Z" + }, + "end": { + "$date": "2021-05-01T03:14:10.000Z" + }, + "events": [ + { + "uuid": "e987a3b5-d45f-43bb-963b-1da00ae32c79", + "start": { + "$date": "2021-05-01T02:17:03.000Z" + }, + "end": { + "$date": "2021-05-01T03:01:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40d4c069-7e8c-460b-a242-7a28933f5557", + "start": { + "$date": "2021-05-01T03:01:03.000Z" + }, + "end": { + "$date": "2021-05-01T03:06:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "351c3a12-75b2-4d96-a9bc-8d193d8f0632", + "start": { + "$date": "2021-05-01T03:06:03.000Z" + }, + "end": { + "$date": "2021-05-01T03:14:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "d82a5700-a9d6-49e9-b11d-f55e683ed873", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-01T02:47:55.000Z" + }, + "end": { + "$date": "2021-05-01T03:26:16.000Z" + }, + "events": [ + { + "uuid": "dfb341fe-8fa1-48fd-b8fe-85003e569529", + "start": { + "$date": "2021-05-01T02:47:55.000Z" + }, + "end": { + "$date": "2021-05-01T03:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "753abb42-0716-464d-be0c-11b089ccea8a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T02:49:16.000Z" + }, + "end": { + "$date": "2021-05-01T03:33:27.000Z" + }, + "events": [ + { + "uuid": "b05d54a6-2ce8-4880-bc1f-f5c74df772e3", + "start": { + "$date": "2021-05-01T02:49:16.000Z" + }, + "end": { + "$date": "2021-05-01T03:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "6e68a1ba-a4d7-4375-b0ed-a5ff110b2b8a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T03:14:50.000Z" + }, + "end": { + "$date": "2021-05-01T03:46:51.000Z" + }, + "events": [ + { + "uuid": "b072bc8a-595d-4ceb-a291-b7c8911c1653", + "start": { + "$date": "2021-05-01T03:14:50.000Z" + }, + "end": { + "$date": "2021-05-01T03:46:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bae770a-896e-4b9b-a3b0-067e598fe9b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T03:36:49.000Z" + }, + "end": { + "$date": "2021-05-01T04:05:26.000Z" + }, + "events": [ + { + "uuid": "afb9ad56-de5e-488a-b242-2bc3754450fa", + "start": { + "$date": "2021-05-01T03:36:49.000Z" + }, + "end": { + "$date": "2021-05-01T04:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "090ea119-d685-4526-a48b-073de705b80e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-01T03:32:32.000Z" + }, + "end": { + "$date": "2021-05-01T04:47:06.000Z" + }, + "events": [ + { + "uuid": "3c504d8c-aeaf-4f6a-8acc-a83c25f055e0", + "start": { + "$date": "2021-05-01T03:32:32.000Z" + }, + "end": { + "$date": "2021-05-01T04:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "e0f71461-d801-4b12-bae6-8d955c8761b2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-01T03:35:58.000Z" + }, + "end": { + "$date": "2021-05-01T05:02:54.000Z" + }, + "events": [ + { + "uuid": "c89bef64-42f6-471b-abd9-77a598a5901d", + "start": { + "$date": "2021-05-01T03:35:58.000Z" + }, + "end": { + "$date": "2021-05-01T05:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6b19448b-991c-40d9-8992-46209bc56ff3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T03:46:20.000Z" + }, + "end": { + "$date": "2021-05-01T04:09:42.000Z" + }, + "events": [ + { + "uuid": "22cb2f37-5c31-4cce-b556-146240e40369", + "start": { + "$date": "2021-05-01T03:46:20.000Z" + }, + "end": { + "$date": "2021-05-01T04:09:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "cf276188-494b-45ef-81ff-1fe312db0c0c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-01T03:57:43.000Z" + }, + "end": { + "$date": "2021-05-01T05:02:58.000Z" + }, + "events": [ + { + "uuid": "7fb8cdab-b95a-4965-bfc6-0d87797d2008", + "start": { + "$date": "2021-05-01T03:57:43.000Z" + }, + "end": { + "$date": "2021-05-01T05:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33245baa-130f-4410-852d-80e49e2134ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T04:10:40.000Z" + }, + "end": { + "$date": "2021-05-01T04:45:01.000Z" + }, + "events": [ + { + "uuid": "44592bf7-0b16-4206-82a2-6e843a6c3318", + "start": { + "$date": "2021-05-01T04:10:40.000Z" + }, + "end": { + "$date": "2021-05-01T04:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0758a5fb-5347-4d82-962a-666b992506fd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T04:10:28.000Z" + }, + "end": { + "$date": "2021-05-01T05:26:11.000Z" + }, + "events": [ + { + "uuid": "3236a87d-9ec3-4ae9-a01e-40d35bc880df", + "start": { + "$date": "2021-05-01T04:10:28.000Z" + }, + "end": { + "$date": "2021-05-01T05:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f90da21-5686-4f05-b975-9a1cca2c9b86", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-01T04:25:28.000Z" + }, + "end": { + "$date": "2021-05-01T04:56:32.000Z" + }, + "events": [ + { + "uuid": "8f369e5f-ba28-4e5c-9c5b-ecda358c3944", + "start": { + "$date": "2021-05-01T04:25:28.000Z" + }, + "end": { + "$date": "2021-05-01T04:56:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e8d49443-e72c-42cc-899e-92b4daffab55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T04:31:08.000Z" + }, + "end": { + "$date": "2021-05-01T04:32:07.000Z" + }, + "events": [ + { + "uuid": "511ab716-a0ee-47d1-a671-a8b02a3048e2", + "start": { + "$date": "2021-05-01T04:31:08.000Z" + }, + "end": { + "$date": "2021-05-01T04:32:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "feeb7f83-1c50-428a-977f-fc4902550216", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T04:32:33.000Z" + }, + "end": { + "$date": "2021-05-01T05:09:14.000Z" + }, + "events": [ + { + "uuid": "85c9b87f-f84e-4e67-a205-67f1f14cc8ac", + "start": { + "$date": "2021-05-01T04:32:33.000Z" + }, + "end": { + "$date": "2021-05-01T04:42:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd97c672-a0c2-492c-8093-25f883a17682", + "start": { + "$date": "2021-05-01T04:42:33.000Z" + }, + "end": { + "$date": "2021-05-01T04:47:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa8bf3e3-f2c6-4c84-a52c-697c677776bf", + "start": { + "$date": "2021-05-01T04:47:33.000Z" + }, + "end": { + "$date": "2021-05-01T04:57:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c4ac6ad-4267-49a5-8390-2e89fd14f87e", + "start": { + "$date": "2021-05-01T04:57:33.000Z" + }, + "end": { + "$date": "2021-05-01T05:01:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "95c1720d-7ec7-420b-a35e-5b89f1d2174d", + "start": { + "$date": "2021-05-01T05:01:33.000Z" + }, + "end": { + "$date": "2021-05-01T05:09:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce6ab61d-822a-442d-af62-91d8730f2df5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T05:02:33.000Z" + }, + "end": { + "$date": "2021-05-01T05:28:25.000Z" + }, + "events": [ + { + "uuid": "f0ff3ea4-f50a-44d7-a37d-78650331f71d", + "start": { + "$date": "2021-05-01T05:02:33.000Z" + }, + "end": { + "$date": "2021-05-01T05:28:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4821897-e643-4f55-8303-5ff00c0ebe60", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-01T05:01:29.000Z" + }, + "end": { + "$date": "2021-05-01T05:28:27.000Z" + }, + "events": [ + { + "uuid": "ab4d891d-d639-4339-b7af-f135c7c4112c", + "start": { + "$date": "2021-05-01T05:01:29.000Z" + }, + "end": { + "$date": "2021-05-01T05:28:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d43f6083-e7da-4f2f-99df-09e38dc1cb01", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T05:28:45.000Z" + }, + "end": { + "$date": "2021-05-01T05:38:51.000Z" + }, + "events": [ + { + "uuid": "4ab7fc52-300e-4d40-8946-81cc13e586ff", + "start": { + "$date": "2021-05-01T05:28:45.000Z" + }, + "end": { + "$date": "2021-05-01T05:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bd56d14c-5a05-4e75-a7c2-f3e30c2193d9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-01T05:34:37.000Z" + }, + "end": { + "$date": "2021-05-01T06:45:14.000Z" + }, + "events": [ + { + "uuid": "f49ee45f-5567-421a-ac02-3027ef88a405", + "start": { + "$date": "2021-05-01T05:34:37.000Z" + }, + "end": { + "$date": "2021-05-01T06:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "6cd5fbd0-b107-467c-b558-fa6ab189897f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T07:54:40.000Z" + }, + "end": { + "$date": "2021-05-01T09:27:59.000Z" + }, + "events": [ + { + "uuid": "b74fb10e-79ac-41ae-bb69-20f1fcde0e5f", + "start": { + "$date": "2021-05-01T07:54:40.000Z" + }, + "end": { + "$date": "2021-05-01T09:27:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "694481ee-8105-45df-9ba2-83cb75fadcf1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-01T05:55:35.000Z" + }, + "end": { + "$date": "2021-05-01T07:42:34.000Z" + }, + "events": [ + { + "uuid": "1d3fe5e3-c020-4a4b-a57a-6ffa4f67e7a0", + "start": { + "$date": "2021-05-01T05:55:35.000Z" + }, + "end": { + "$date": "2021-05-01T07:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "cbfd105b-5ba6-4402-8952-4a6d73f6a1de", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-01T06:50:34.000Z" + }, + "end": { + "$date": "2021-05-01T07:16:42.000Z" + }, + "events": [ + { + "uuid": "79394d8b-4f9b-46be-aa68-21bcd462ea94", + "start": { + "$date": "2021-05-01T06:50:34.000Z" + }, + "end": { + "$date": "2021-05-01T07:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6c12aff1-dc7a-4daf-b7a3-e506da97265a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-01T06:50:37.000Z" + }, + "end": { + "$date": "2021-05-01T06:58:13.000Z" + }, + "events": [ + { + "uuid": "7fcf1d89-e466-4c6c-a62e-e9d534081425", + "start": { + "$date": "2021-05-01T06:50:37.000Z" + }, + "end": { + "$date": "2021-05-01T06:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "59debf6a-5de5-403b-8e84-d8a9519c589b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-01T06:52:06.000Z" + }, + "end": { + "$date": "2021-05-01T06:55:31.000Z" + }, + "events": [ + { + "uuid": "6a769d8c-0ab5-4fce-8e50-a4ef4e35118a", + "start": { + "$date": "2021-05-01T06:52:06.000Z" + }, + "end": { + "$date": "2021-05-01T06:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4db807f8-e95c-460d-b75e-7e5729900a16", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T09:36:11.000Z" + }, + "end": { + "$date": "2021-05-01T09:59:12.000Z" + }, + "events": [ + { + "uuid": "9e58e2a8-4afb-4fc9-ba26-00418eb96026", + "start": { + "$date": "2021-05-01T09:36:11.000Z" + }, + "end": { + "$date": "2021-05-01T09:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "79db1795-5944-4b5e-999e-c1ffe5f8a530", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-01T12:59:57.000Z" + }, + "end": { + "$date": "2021-05-01T13:05:25.000Z" + }, + "events": [ + { + "uuid": "4af29631-da43-46fb-9d1d-0480065b0df7", + "start": { + "$date": "2021-05-01T12:59:57.000Z" + }, + "end": { + "$date": "2021-05-01T13:05:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "c0c5a2e0-0673-4bc4-88e8-7b02c6aac886", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-01T16:48:26.000Z" + }, + "end": { + "$date": "2021-05-01T16:48:33.000Z" + }, + "events": [ + { + "uuid": "5509ea74-b77b-4f2f-b71e-2bd7bbc9e1a5", + "start": { + "$date": "2021-05-01T16:48:26.000Z" + }, + "end": { + "$date": "2021-05-01T16:48:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f8ef1cd9-c7aa-4b07-bddb-a643fa55fa6e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T14:19:49.000Z" + }, + "end": { + "$date": "2021-05-01T14:39:16.000Z" + }, + "events": [ + { + "uuid": "316af4fb-4c84-4c19-a699-9c5c0ecb7443", + "start": { + "$date": "2021-05-01T14:19:49.000Z" + }, + "end": { + "$date": "2021-05-01T14:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8ced300c-99bc-4c37-98ee-d4771afd18ab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T14:41:37.000Z" + }, + "end": { + "$date": "2021-05-01T15:31:11.000Z" + }, + "events": [ + { + "uuid": "24d998fd-fb39-405c-8e78-89767152d663", + "start": { + "$date": "2021-05-01T14:41:37.000Z" + }, + "end": { + "$date": "2021-05-01T15:31:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "91858b35-6fe5-4ed4-b4a6-55453ef25fb5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T15:31:37.000Z" + }, + "end": { + "$date": "2021-05-01T16:02:39.000Z" + }, + "events": [ + { + "uuid": "88f11d0c-c12b-4420-81e6-87b1ac4d8cbe", + "start": { + "$date": "2021-05-01T15:31:37.000Z" + }, + "end": { + "$date": "2021-05-01T16:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6c6e262e-1002-4c29-9c94-d831d0c36ca1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T16:03:49.000Z" + }, + "end": { + "$date": "2021-05-01T16:09:00.000Z" + }, + "events": [ + { + "uuid": "f6e2f2d1-ddf0-46e2-a0b1-895f5bf81a13", + "start": { + "$date": "2021-05-01T16:03:49.000Z" + }, + "end": { + "$date": "2021-05-01T16:09:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1540e572-d26f-43f1-800c-8c9ee62d2575", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T16:09:25.000Z" + }, + "end": { + "$date": "2021-05-01T16:24:46.000Z" + }, + "events": [ + { + "uuid": "2fbd7010-99a9-490d-9124-11e8acb0e00c", + "start": { + "$date": "2021-05-01T16:09:25.000Z" + }, + "end": { + "$date": "2021-05-01T16:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad0b3b36-37a7-42ab-851d-eb5926cb1510", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T16:25:01.000Z" + }, + "end": { + "$date": "2021-05-01T17:12:10.000Z" + }, + "events": [ + { + "uuid": "078be67a-8081-4051-8b23-301473bc645a", + "start": { + "$date": "2021-05-01T16:25:01.000Z" + }, + "end": { + "$date": "2021-05-01T17:12:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a425acb7-3d82-4299-8562-89c9c790e067", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-01T16:36:35.000Z" + }, + "end": { + "$date": "2021-05-01T17:11:59.000Z" + }, + "events": [ + { + "uuid": "ab78d1ae-dfb9-4b8e-bfee-062990b275b8", + "start": { + "$date": "2021-05-01T16:36:35.000Z" + }, + "end": { + "$date": "2021-05-01T17:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "0a42a9ca-ed2f-4375-a21b-7f3c955d5720", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T17:20:36.000Z" + }, + "end": { + "$date": "2021-05-01T17:38:06.000Z" + }, + "events": [ + { + "uuid": "1bc0f46e-a6b3-4ea6-8511-18e3874add76", + "start": { + "$date": "2021-05-01T17:20:36.000Z" + }, + "end": { + "$date": "2021-05-01T17:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "44a9fed6-14bb-475b-9a65-8a814beb161b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T17:38:46.000Z" + }, + "end": { + "$date": "2021-05-01T17:41:46.000Z" + }, + "events": [ + { + "uuid": "83d6c4cc-50e0-4695-b76e-b91a458f019f", + "start": { + "$date": "2021-05-01T17:38:46.000Z" + }, + "end": { + "$date": "2021-05-01T17:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "752fb626-a991-4e4b-81de-3ae4e73e0020", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T17:42:01.000Z" + }, + "end": { + "$date": "2021-05-01T23:40:41.000Z" + }, + "events": [ + { + "uuid": "2412fd60-78c6-466d-9550-1ffd5d14e0ec", + "start": { + "$date": "2021-05-01T17:42:01.000Z" + }, + "end": { + "$date": "2021-05-01T20:17:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "654df55a-b9d2-450f-9973-a6146579a77f", + "start": { + "$date": "2021-05-01T20:17:01.000Z" + }, + "end": { + "$date": "2021-05-01T21:58:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0983b6b4-e8dc-4e5a-afa5-1d74c104899e", + "start": { + "$date": "2021-05-01T21:58:01.000Z" + }, + "end": { + "$date": "2021-05-01T22:18:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0af5a00f-4db1-4e86-9760-e3962634595b", + "start": { + "$date": "2021-05-01T22:18:01.000Z" + }, + "end": { + "$date": "2021-05-01T22:23:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5be3519c-0378-4a2b-9bb6-9075c3afca35", + "start": { + "$date": "2021-05-01T22:23:01.000Z" + }, + "end": { + "$date": "2021-05-01T22:43:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c0920216-924e-483f-be69-b5a9a00d1b2f", + "start": { + "$date": "2021-05-01T22:43:01.000Z" + }, + "end": { + "$date": "2021-05-01T23:12:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "63dbb72e-789b-46e8-ba62-ca06d8ec791f", + "start": { + "$date": "2021-05-01T23:12:01.000Z" + }, + "end": { + "$date": "2021-05-01T23:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a44764ad-e713-497c-8b24-c448044bad73", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T18:06:18.000Z" + }, + "end": { + "$date": "2021-05-01T18:25:33.000Z" + }, + "events": [ + { + "uuid": "44d41235-7644-4f20-a864-48929f5631ba", + "start": { + "$date": "2021-05-01T18:06:18.000Z" + }, + "end": { + "$date": "2021-05-01T18:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "0a798484-1c0b-4f97-a8f0-291d61de304a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-01T18:21:54.000Z" + }, + "end": { + "$date": "2021-05-01T18:23:05.000Z" + }, + "events": [ + { + "uuid": "a6d4290d-2f05-4500-8277-c4088c6a40b7", + "start": { + "$date": "2021-05-01T18:21:54.000Z" + }, + "end": { + "$date": "2021-05-01T18:23:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce1c0361-4b78-4762-9fa8-ef6fbbb41e46", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T18:29:44.000Z" + }, + "end": { + "$date": "2021-05-01T18:42:14.000Z" + }, + "events": [ + { + "uuid": "cf07de93-18c1-4073-9877-ea361936899e", + "start": { + "$date": "2021-05-01T18:29:44.000Z" + }, + "end": { + "$date": "2021-05-01T18:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7803f155-5a62-4ac2-b4d1-c74fafafb781", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T18:44:25.000Z" + }, + "end": { + "$date": "2021-05-01T19:04:56.000Z" + }, + "events": [ + { + "uuid": "199635ff-3f5a-490b-adcf-35561871d5f4", + "start": { + "$date": "2021-05-01T18:44:25.000Z" + }, + "end": { + "$date": "2021-05-01T19:04:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3d30dca-56f4-4ece-8e84-e91cccc51055", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T18:55:38.000Z" + }, + "end": { + "$date": "2021-05-01T19:25:16.000Z" + }, + "events": [ + { + "uuid": "fc68d1ad-7fbd-4b47-a956-b026427478cc", + "start": { + "$date": "2021-05-01T18:55:38.000Z" + }, + "end": { + "$date": "2021-05-01T19:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3315f0fc-f730-4305-98b2-1e2a56be262a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-01T20:37:58.000Z" + }, + "end": { + "$date": "2021-05-01T20:51:55.000Z" + }, + "events": [ + { + "uuid": "3a595c57-b722-424f-a4f6-ae757e61c3e4", + "start": { + "$date": "2021-05-01T20:37:58.000Z" + }, + "end": { + "$date": "2021-05-01T20:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fbd559a-6a20-438a-a673-66b53162a485", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T21:09:40.000Z" + }, + "end": { + "$date": "2021-05-01T21:36:10.000Z" + }, + "events": [ + { + "uuid": "7cada639-4fe2-4da8-b3b5-6dde624cc4e4", + "start": { + "$date": "2021-05-01T21:09:40.000Z" + }, + "end": { + "$date": "2021-05-01T21:41:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7ef3e1f-3fcf-4541-8842-592f58015ab7", + "start": { + "$date": "2021-05-01T21:41:40.000Z" + }, + "end": { + "$date": "2021-05-01T21:42:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97ee60c3-dc2a-4570-894b-855e669da092", + "start": { + "$date": "2021-05-01T21:42:40.000Z" + }, + "end": { + "$date": "2021-05-01T21:58:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "effd2e41-2da3-41fa-a33f-6e7cc213cb82", + "start": { + "$date": "2021-05-01T21:58:40.000Z" + }, + "end": { + "$date": "2021-05-01T22:00:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4114b57-2947-4923-a1e1-13a1650c8c1c", + "start": { + "$date": "2021-05-01T22:00:40.000Z" + }, + "end": { + "$date": "2021-05-01T21:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9126be98-23cc-4d75-b018-75c17958ee70", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T19:30:38.000Z" + }, + "end": { + "$date": "2021-05-01T19:34:28.000Z" + }, + "events": [ + { + "uuid": "37298def-0471-41fb-a4b8-0fb205745dde", + "start": { + "$date": "2021-05-01T19:30:38.000Z" + }, + "end": { + "$date": "2021-05-01T19:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8c559e21-380b-4883-b5a7-89539c0e2818", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-01T19:55:31.000Z" + }, + "end": { + "$date": "2021-05-01T20:11:58.000Z" + }, + "events": [ + { + "uuid": "37216cd3-44a6-46fb-a8fd-8fd57370e698", + "start": { + "$date": "2021-05-01T19:55:31.000Z" + }, + "end": { + "$date": "2021-05-01T20:11:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "fbca90c8-7b7b-45b3-a7f3-ebfe2fc903ee", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-01T20:13:53.000Z" + }, + "end": { + "$date": "2021-05-01T22:04:12.000Z" + }, + "events": [ + { + "uuid": "b6079f3e-6cce-4f63-bb6b-ef4bdf959d71", + "start": { + "$date": "2021-05-01T20:13:53.000Z" + }, + "end": { + "$date": "2021-05-01T22:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f59843c3-a6ef-4d97-9fa7-91f698cd8973", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-01T21:36:22.000Z" + }, + "end": { + "$date": "2021-05-01T22:47:43.000Z" + }, + "events": [ + { + "uuid": "707c09c8-55cb-4262-90db-5d90f812f0b9", + "start": { + "$date": "2021-05-01T21:36:22.000Z" + }, + "end": { + "$date": "2021-05-01T22:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2a379df-c1eb-4895-88c7-bf06aacfca19", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T21:37:11.000Z" + }, + "end": { + "$date": "2021-05-01T22:50:38.000Z" + }, + "events": [ + { + "uuid": "0a4ce4d4-f0b0-4cba-81cb-76c24d7c3cc9", + "start": { + "$date": "2021-05-01T21:37:11.000Z" + }, + "end": { + "$date": "2021-05-01T21:57:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d8d904b1-593e-4c56-84c8-ece9bef323dd", + "start": { + "$date": "2021-05-01T21:57:11.000Z" + }, + "end": { + "$date": "2021-05-01T22:49:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee92de75-a9c8-4945-850e-bedf7df72a8a", + "start": { + "$date": "2021-05-01T22:49:11.000Z" + }, + "end": { + "$date": "2021-05-01T22:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99504383-f7c0-4bd8-8f25-b3e2d8315029", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-01T22:53:28.000Z" + }, + "end": { + "$date": "2021-05-01T23:56:04.000Z" + }, + "events": [ + { + "uuid": "2fcf7a43-c8a4-4148-87e0-179412a45cba", + "start": { + "$date": "2021-05-01T22:53:28.000Z" + }, + "end": { + "$date": "2021-05-01T23:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab306ca9-44cf-407a-9601-0b86d9709121", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-01T23:16:36.000Z" + }, + "end": { + "$date": "2021-05-01T23:49:26.000Z" + }, + "events": [ + { + "uuid": "5c343215-edc6-4ee7-967b-c36ddaad9613", + "start": { + "$date": "2021-05-01T23:16:36.000Z" + }, + "end": { + "$date": "2021-05-01T23:49:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa6df1d8-b3e5-4cae-81f2-86378d2c4ae0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-01T23:16:41.000Z" + }, + "end": { + "$date": "2021-05-01T23:49:21.000Z" + }, + "events": [ + { + "uuid": "89d89778-8be6-4241-b70a-dca1d2a931bf", + "start": { + "$date": "2021-05-01T23:16:41.000Z" + }, + "end": { + "$date": "2021-05-01T23:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "4cfa0bb7-ecd4-48c4-aef4-0d92b4049a61", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-01T23:41:51.000Z" + }, + "end": { + "$date": "2021-05-02T00:09:33.000Z" + }, + "events": [ + { + "uuid": "c9272d83-db59-471a-a05e-e3e0bb8c437e", + "start": { + "$date": "2021-05-01T23:41:51.000Z" + }, + "end": { + "$date": "2021-05-02T00:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8589038c-2e64-4339-a083-8b4710bebf81", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T02:35:47.000Z" + }, + "end": { + "$date": "2021-05-02T03:00:09.000Z" + }, + "events": [ + { + "uuid": "fe9593a9-8d29-406c-a88d-35d7b520ad12", + "start": { + "$date": "2021-05-02T02:35:47.000Z" + }, + "end": { + "$date": "2021-05-02T02:49:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31e56efb-e767-454f-b52b-b1675cee3121", + "start": { + "$date": "2021-05-02T02:49:47.000Z" + }, + "end": { + "$date": "2021-05-02T02:50:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be04443a-c497-4d42-b1ff-c20f6792aa64", + "start": { + "$date": "2021-05-02T02:50:47.000Z" + }, + "end": { + "$date": "2021-05-02T02:51:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc429454-5ea8-41f2-a740-6d5f408aec19", + "start": { + "$date": "2021-05-02T02:51:47.000Z" + }, + "end": { + "$date": "2021-05-02T02:56:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "707bae92-856f-4956-ba91-a44d2a8a759b", + "start": { + "$date": "2021-05-02T02:56:47.000Z" + }, + "end": { + "$date": "2021-05-02T03:13:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ac840daa-e02b-4567-a399-9f88edf4c93f", + "start": { + "$date": "2021-05-02T03:13:47.000Z" + }, + "end": { + "$date": "2021-05-02T03:51:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7cabb2d4-52a4-4104-a830-2a02a7d3b853", + "start": { + "$date": "2021-05-02T03:51:47.000Z" + }, + "end": { + "$date": "2021-05-02T04:01:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3442dece-15b8-46b2-8415-f9b4eaf108e5", + "start": { + "$date": "2021-05-02T04:01:47.000Z" + }, + "end": { + "$date": "2021-05-02T04:41:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "205e5187-24c3-4621-b037-153be0115fa3", + "start": { + "$date": "2021-05-02T04:41:47.000Z" + }, + "end": { + "$date": "2021-05-02T04:55:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "18159922-062e-4846-b86f-20e45a1fd00c", + "start": { + "$date": "2021-05-02T04:55:47.000Z" + }, + "end": { + "$date": "2021-05-02T04:56:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef916d99-eba3-4c38-95e5-84b79301915f", + "start": { + "$date": "2021-05-02T04:56:47.000Z" + }, + "end": { + "$date": "2021-05-02T04:58:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70925448-42ba-436a-b6e2-68258335df53", + "start": { + "$date": "2021-05-02T04:58:47.000Z" + }, + "end": { + "$date": "2021-05-02T05:01:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7d6e44b9-66ef-4151-b615-3cc43abaf025", + "start": { + "$date": "2021-05-02T05:01:47.000Z" + }, + "end": { + "$date": "2021-05-02T05:03:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a2edd42-c995-407f-a8d5-c92586152551", + "start": { + "$date": "2021-05-02T05:03:47.000Z" + }, + "end": { + "$date": "2021-05-02T05:06:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6311938e-044a-4d52-bcce-e56299162f2f", + "start": { + "$date": "2021-05-02T05:06:47.000Z" + }, + "end": { + "$date": "2021-05-02T03:00:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f426a41c-8be0-4cd4-a407-a413beadcf12", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-01T23:52:32.000Z" + }, + "end": { + "$date": "2021-05-01T23:55:21.000Z" + }, + "events": [ + { + "uuid": "f1050c3d-06ea-46ff-b632-2e6660ff11a5", + "start": { + "$date": "2021-05-01T23:52:32.000Z" + }, + "end": { + "$date": "2021-05-01T23:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67b9ae4e-8cb0-43f2-a294-96b564084f0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-02T00:10:14.000Z" + }, + "end": { + "$date": "2021-05-02T00:10:23.000Z" + }, + "events": [ + { + "uuid": "20f426fa-1509-4264-a608-e47e8be9b744", + "start": { + "$date": "2021-05-02T00:10:14.000Z" + }, + "end": { + "$date": "2021-05-02T00:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e8ba9163-0710-43c7-83d1-a9f1ffcb258c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T00:09:03.000Z" + }, + "end": { + "$date": "2021-05-02T00:35:43.000Z" + }, + "events": [ + { + "uuid": "31b5c6e4-ccff-4826-98be-bfcfab040469", + "start": { + "$date": "2021-05-02T00:09:03.000Z" + }, + "end": { + "$date": "2021-05-02T00:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5cb68fdb-1849-4618-ba09-7e847433979b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-02T00:10:59.000Z" + }, + "end": { + "$date": "2021-05-02T01:46:03.000Z" + }, + "events": [ + { + "uuid": "64803be0-2038-472b-a6c2-6e0828fc90f2", + "start": { + "$date": "2021-05-02T00:10:59.000Z" + }, + "end": { + "$date": "2021-05-02T01:35:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad55daa8-eb8a-4f11-bc17-93d45a439d45", + "start": { + "$date": "2021-05-02T01:35:59.000Z" + }, + "end": { + "$date": "2021-05-02T01:43:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d364c69-48e2-4544-aff2-9f2c8e6541d9", + "start": { + "$date": "2021-05-02T01:43:59.000Z" + }, + "end": { + "$date": "2021-05-02T01:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "72f7557f-9a0d-45f0-ada4-79040bb0543f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-02T01:53:12.000Z" + }, + "end": { + "$date": "2021-05-02T01:53:23.000Z" + }, + "events": [ + { + "uuid": "9ae0cbd6-aaaa-43fd-81b9-c5a68701c6ba", + "start": { + "$date": "2021-05-02T01:53:12.000Z" + }, + "end": { + "$date": "2021-05-02T01:53:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "25b201d5-8fde-4e9a-8e82-bdfdccb15336", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T01:23:11.000Z" + }, + "end": { + "$date": "2021-05-02T02:25:03.000Z" + }, + "events": [ + { + "uuid": "27202455-05e0-4683-82a8-66e96ce2c4ee", + "start": { + "$date": "2021-05-02T01:23:11.000Z" + }, + "end": { + "$date": "2021-05-02T02:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d74a21d1-818b-4bbc-b14d-e01ff83ca921", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-02T02:02:11.000Z" + }, + "end": { + "$date": "2021-05-02T02:15:27.000Z" + }, + "events": [ + { + "uuid": "8cd1d055-8c99-4e49-a956-f9c0072877c2", + "start": { + "$date": "2021-05-02T02:02:11.000Z" + }, + "end": { + "$date": "2021-05-02T02:15:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a92ea44d-a90a-4c35-afff-baa6f9d32349", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-02T04:28:41.000Z" + }, + "end": { + "$date": "2021-05-02T04:38:23.000Z" + }, + "events": [ + { + "uuid": "27d6af5c-0dfd-4915-856d-1050e8c65f13", + "start": { + "$date": "2021-05-02T04:28:41.000Z" + }, + "end": { + "$date": "2021-05-02T05:36:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24be6777-3cce-4b48-a134-998846c69f0f", + "start": { + "$date": "2021-05-02T05:36:41.000Z" + }, + "end": { + "$date": "2021-05-02T05:50:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cdc0f41e-21e4-4a50-8176-f037726c620d", + "start": { + "$date": "2021-05-02T05:50:41.000Z" + }, + "end": { + "$date": "2021-05-02T04:38:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0a87a4eb-760c-460c-a408-ea9d0ac4abcd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T02:25:11.000Z" + }, + "end": { + "$date": "2021-05-02T03:39:34.000Z" + }, + "events": [ + { + "uuid": "4ffabab0-7752-4f15-8f0c-0b27a7524d5e", + "start": { + "$date": "2021-05-02T02:25:11.000Z" + }, + "end": { + "$date": "2021-05-02T03:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4a1d1381-2a2f-47ae-87df-01b2c3b193bb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-02T02:41:29.000Z" + }, + "end": { + "$date": "2021-05-02T02:49:50.000Z" + }, + "events": [ + { + "uuid": "f31902ed-7dc0-4b4b-8393-a21705d45a23", + "start": { + "$date": "2021-05-02T02:41:29.000Z" + }, + "end": { + "$date": "2021-05-02T02:49:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "56a4e0dc-2b3f-4d69-bd2e-e7992ea7d1fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-02T03:31:28.000Z" + }, + "end": { + "$date": "2021-05-02T04:51:21.000Z" + }, + "events": [ + { + "uuid": "9277637d-cbfe-4a8a-b503-8e8a5fea5c2c", + "start": { + "$date": "2021-05-02T03:31:28.000Z" + }, + "end": { + "$date": "2021-05-02T04:51:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "01c6278c-ea5c-4aab-991e-d8d14d5f6788", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T02:45:05.000Z" + }, + "end": { + "$date": "2021-05-02T02:53:45.000Z" + }, + "events": [ + { + "uuid": "d04a6a96-e7c2-4f6b-bc21-aa46e15de87e", + "start": { + "$date": "2021-05-02T02:45:05.000Z" + }, + "end": { + "$date": "2021-05-02T02:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ec0992e9-6c19-44a6-99b0-10916f8cc252", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-02T02:47:50.000Z" + }, + "end": { + "$date": "2021-05-02T04:03:11.000Z" + }, + "events": [ + { + "uuid": "0559d45b-48b8-474d-8d59-6997c0d9e617", + "start": { + "$date": "2021-05-02T02:47:50.000Z" + }, + "end": { + "$date": "2021-05-02T04:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ffbf87fc-1331-4bc7-8d72-d81083f64ba1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-02T02:50:20.000Z" + }, + "end": { + "$date": "2021-05-02T03:14:27.000Z" + }, + "events": [ + { + "uuid": "fd967f65-782b-4385-b260-713bf6a90dcf", + "start": { + "$date": "2021-05-02T02:50:20.000Z" + }, + "end": { + "$date": "2021-05-02T03:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9925c83b-4374-43be-b27c-9cb645dbc903", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T02:58:20.000Z" + }, + "end": { + "$date": "2021-05-02T04:03:14.000Z" + }, + "events": [ + { + "uuid": "c7fbca5f-b7dd-4ed8-bc69-a5078bc7d700", + "start": { + "$date": "2021-05-02T02:58:20.000Z" + }, + "end": { + "$date": "2021-05-02T04:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae6119c8-22bd-41fd-bac7-f7658596df44", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T03:56:37.000Z" + }, + "end": { + "$date": "2021-05-02T04:29:10.000Z" + }, + "events": [ + { + "uuid": "91ac117f-89bb-4d71-8b2a-53a1f31a0ed7", + "start": { + "$date": "2021-05-02T03:56:37.000Z" + }, + "end": { + "$date": "2021-05-02T04:11:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19f638ac-b876-4844-8360-71b40178b782", + "start": { + "$date": "2021-05-02T04:11:37.000Z" + }, + "end": { + "$date": "2021-05-02T04:37:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a076c910-a6fb-4cdc-a281-0eaae1790ba4", + "start": { + "$date": "2021-05-02T04:37:37.000Z" + }, + "end": { + "$date": "2021-05-02T04:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "98491702-18f0-4797-a640-5afa55362f8a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T03:39:39.000Z" + }, + "end": { + "$date": "2021-05-02T04:29:06.000Z" + }, + "events": [ + { + "uuid": "5bf57097-f7fa-475f-a0cf-2187a16d6703", + "start": { + "$date": "2021-05-02T03:39:39.000Z" + }, + "end": { + "$date": "2021-05-02T04:29:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d2eda0e7-9744-400a-bfee-eb9cee950658", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T05:36:54.000Z" + }, + "end": { + "$date": "2021-05-02T05:44:59.000Z" + }, + "events": [ + { + "uuid": "5bfa778c-5431-485b-8fff-8394067c38d6", + "start": { + "$date": "2021-05-02T05:36:54.000Z" + }, + "end": { + "$date": "2021-05-02T05:44:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fb03692-93f8-470b-9109-1e4d09ef335b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T04:29:32.000Z" + }, + "end": { + "$date": "2021-05-02T05:06:47.000Z" + }, + "events": [ + { + "uuid": "8923b353-a4cd-4e4c-a089-926177f00e98", + "start": { + "$date": "2021-05-02T04:29:32.000Z" + }, + "end": { + "$date": "2021-05-02T04:49:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "404493e6-8455-4467-bf94-9ade7a28efee", + "start": { + "$date": "2021-05-02T04:49:32.000Z" + }, + "end": { + "$date": "2021-05-02T04:52:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f467b83f-a667-4880-ae2a-21c1f2cde6a6", + "start": { + "$date": "2021-05-02T04:52:32.000Z" + }, + "end": { + "$date": "2021-05-02T05:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f94ba90e-7bc0-4b77-ae71-be72867a3fcd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-02T04:31:38.000Z" + }, + "end": { + "$date": "2021-05-02T07:26:53.000Z" + }, + "events": [ + { + "uuid": "19b097ef-b497-428f-bf51-5c2080e400d4", + "start": { + "$date": "2021-05-02T04:31:38.000Z" + }, + "end": { + "$date": "2021-05-02T07:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e1416ed9-366e-4c98-9fae-1dd237a0206a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T05:45:09.000Z" + }, + "end": { + "$date": "2021-05-02T06:21:41.000Z" + }, + "events": [ + { + "uuid": "01c8bdde-b325-45fd-b96b-15a86696337b", + "start": { + "$date": "2021-05-02T05:45:09.000Z" + }, + "end": { + "$date": "2021-05-02T06:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "fe2abf3c-d68e-4550-9a0c-1a9b533b815b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T06:22:11.000Z" + }, + "end": { + "$date": "2021-05-02T06:43:31.000Z" + }, + "events": [ + { + "uuid": "81108db4-0e9e-496c-8d0b-895d501357f9", + "start": { + "$date": "2021-05-02T06:22:11.000Z" + }, + "end": { + "$date": "2021-05-02T06:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", + "uuid": "b09b00c3-23a0-4292-8d9c-0f5f0a8a1dad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T07:20:08.000Z" + }, + "end": { + "$date": "2021-05-02T07:25:13.000Z" + }, + "events": [ + { + "uuid": "dfa98ad7-50ab-4885-9114-e5a6f30aa4b3", + "start": { + "$date": "2021-05-02T07:20:08.000Z" + }, + "end": { + "$date": "2021-05-02T07:25:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "4876e647-fdd5-41e0-ade2-d086d923aba9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-02T07:29:59.000Z" + }, + "end": { + "$date": "2021-05-02T08:10:56.000Z" + }, + "events": [ + { + "uuid": "3dcf091d-94a7-4dd7-ab85-093e237d5260", + "start": { + "$date": "2021-05-02T07:29:59.000Z" + }, + "end": { + "$date": "2021-05-02T08:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "e7abb366-1e82-420a-8b47-db33daf07ccf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T07:51:53.000Z" + }, + "end": { + "$date": "2021-05-02T08:46:05.000Z" + }, + "events": [ + { + "uuid": "54e084b0-8257-424a-b2c1-cf8e866fe10b", + "start": { + "$date": "2021-05-02T07:51:53.000Z" + }, + "end": { + "$date": "2021-05-02T08:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "260d577b-f961-4b28-a4fd-7ccb07935108", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-02T08:30:18.000Z" + }, + "end": { + "$date": "2021-05-02T09:25:10.000Z" + }, + "events": [ + { + "uuid": "f92cfcd4-6c4c-42a6-b94d-f8a24cbe240a", + "start": { + "$date": "2021-05-02T08:30:18.000Z" + }, + "end": { + "$date": "2021-05-02T09:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "57808cf5-d4f4-4f0a-af88-53e8469c1eb0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T08:47:50.000Z" + }, + "end": { + "$date": "2021-05-02T09:39:08.000Z" + }, + "events": [ + { + "uuid": "a396281b-a41a-42d6-a9ae-0da8fa344fbb", + "start": { + "$date": "2021-05-02T08:47:50.000Z" + }, + "end": { + "$date": "2021-05-02T09:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e92f80b6-a5f7-4493-a0fe-8f3f35fb4654", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T09:39:19.000Z" + }, + "end": { + "$date": "2021-05-02T09:49:35.000Z" + }, + "events": [ + { + "uuid": "f4ee9a68-e6da-4456-b0c0-94ee9449c2b1", + "start": { + "$date": "2021-05-02T09:39:19.000Z" + }, + "end": { + "$date": "2021-05-02T09:49:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4754ef44-8efa-46de-945a-b8c53cd31066", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T09:49:45.000Z" + }, + "end": { + "$date": "2021-05-02T10:10:04.000Z" + }, + "events": [ + { + "uuid": "13370a0e-f0c4-44d7-adcc-6a44784b6107", + "start": { + "$date": "2021-05-02T09:49:45.000Z" + }, + "end": { + "$date": "2021-05-02T10:10:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "4cb405fb-7537-4e5a-9843-e6a18477d975", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-02T13:30:02.000Z" + }, + "end": { + "$date": "2021-05-02T13:30:08.000Z" + }, + "events": [ + { + "uuid": "3e87cbfc-5334-4228-87c5-8b4548aa640a", + "start": { + "$date": "2021-05-02T13:30:02.000Z" + }, + "end": { + "$date": "2021-05-02T13:30:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1353764b-c34f-475b-9cf1-89892fa18aaa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T13:12:11.000Z" + }, + "end": { + "$date": "2021-05-02T13:45:05.000Z" + }, + "events": [ + { + "uuid": "41fbfe74-a474-4dc9-bea3-8a2229b0664a", + "start": { + "$date": "2021-05-02T13:12:11.000Z" + }, + "end": { + "$date": "2021-05-02T13:45:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e8f32dc-688c-493c-96c0-23f4fc45dbfd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T13:52:57.000Z" + }, + "end": { + "$date": "2021-05-02T14:19:44.000Z" + }, + "events": [ + { + "uuid": "892f5e92-6ef3-42a9-a64c-42566a9d34d5", + "start": { + "$date": "2021-05-02T13:52:57.000Z" + }, + "end": { + "$date": "2021-05-02T14:19:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "1ec99ec1-c64d-4c72-b884-36b75aee9f31", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T14:15:42.000Z" + }, + "end": { + "$date": "2021-05-02T14:45:11.000Z" + }, + "events": [ + { + "uuid": "e9ff26e0-9ca1-4d1c-a010-f4f79f099e2f", + "start": { + "$date": "2021-05-02T14:15:42.000Z" + }, + "end": { + "$date": "2021-05-02T14:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "886297c0-52d7-4cb5-97a8-5df3d163ec35", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T14:25:56.000Z" + }, + "end": { + "$date": "2021-05-02T15:01:40.000Z" + }, + "events": [ + { + "uuid": "1d4062ba-dac1-4a5f-8fb7-13fa708b86f2", + "start": { + "$date": "2021-05-02T14:25:56.000Z" + }, + "end": { + "$date": "2021-05-02T15:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9d10a6a-a16e-42c5-966e-bc90de755dcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T14:45:51.000Z" + }, + "end": { + "$date": "2021-05-02T15:40:54.000Z" + }, + "events": [ + { + "uuid": "bd61e6ee-e1aa-43f4-a4b2-faa993b96145", + "start": { + "$date": "2021-05-02T14:45:51.000Z" + }, + "end": { + "$date": "2021-05-02T15:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc5ad0ac-fcf8-472b-91c4-d0c6fc3601e5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T15:06:40.000Z" + }, + "end": { + "$date": "2021-05-02T15:34:43.000Z" + }, + "events": [ + { + "uuid": "8af61b04-3bc2-4b62-95c7-94c10a7c3332", + "start": { + "$date": "2021-05-02T15:06:40.000Z" + }, + "end": { + "$date": "2021-05-02T15:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a7b8fdeb-3686-4d20-b991-fbb4a41e5145", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-02T23:20:41.000Z" + }, + "end": { + "$date": "2021-05-02T23:53:31.000Z" + }, + "events": [ + { + "uuid": "8e8f448e-cbc2-4756-beaa-00655d38dc1e", + "start": { + "$date": "2021-05-02T23:20:41.000Z" + }, + "end": { + "$date": "2021-05-02T23:57:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e7bede7-d549-4528-861d-faa37a900c1b", + "start": { + "$date": "2021-05-02T23:57:41.000Z" + }, + "end": { + "$date": "2021-05-02T23:59:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32f77ff9-6088-4ef6-916d-43a114f2555c", + "start": { + "$date": "2021-05-02T23:59:41.000Z" + }, + "end": { + "$date": "2021-05-03T04:16:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d0e3bce-b0b9-4e3f-8cfd-6b273d2494c0", + "start": { + "$date": "2021-05-03T04:16:41.000Z" + }, + "end": { + "$date": "2021-05-03T04:43:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e85a1f68-ccf4-4bfa-b60e-2d1caa6eed35", + "start": { + "$date": "2021-05-03T04:43:41.000Z" + }, + "end": { + "$date": "2021-05-03T06:12:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1793b2da-2138-4685-9acb-140b388c0018", + "start": { + "$date": "2021-05-03T06:12:41.000Z" + }, + "end": { + "$date": "2021-05-03T06:40:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9ddab46b-4f13-48c8-8a9e-8e0dbba4e457", + "start": { + "$date": "2021-05-03T06:40:41.000Z" + }, + "end": { + "$date": "2021-05-02T23:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91380eda-929e-4d16-93f0-454b7219e3e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T16:10:48.000Z" + }, + "end": { + "$date": "2021-05-02T16:24:30.000Z" + }, + "events": [ + { + "uuid": "53090871-5744-4a25-abae-38b6904015af", + "start": { + "$date": "2021-05-02T16:10:48.000Z" + }, + "end": { + "$date": "2021-05-02T16:25:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a96de37-d9fe-42cf-b3ba-7905c8e62f4d", + "start": { + "$date": "2021-05-02T16:25:48.000Z" + }, + "end": { + "$date": "2021-05-02T16:32:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15cff21b-9e07-4dec-92e3-83d9f4676d08", + "start": { + "$date": "2021-05-02T16:32:48.000Z" + }, + "end": { + "$date": "2021-05-02T16:24:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "31a8cf15-9fd7-4fd4-9deb-ee06fc6470ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T15:41:04.000Z" + }, + "end": { + "$date": "2021-05-02T16:29:49.000Z" + }, + "events": [ + { + "uuid": "c961c595-977c-4a3e-89a7-fedee7b5c1f4", + "start": { + "$date": "2021-05-02T15:41:04.000Z" + }, + "end": { + "$date": "2021-05-02T16:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "002ce6d8-088c-415b-8466-373f9c5e9144", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T16:29:20.000Z" + }, + "end": { + "$date": "2021-05-02T17:06:29.000Z" + }, + "events": [ + { + "uuid": "e3fb0670-e8b5-42ec-9971-48ae7faee1dd", + "start": { + "$date": "2021-05-02T16:29:20.000Z" + }, + "end": { + "$date": "2021-05-02T17:06:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "14765424-b817-42d4-83a1-8af1d1aad2f0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T16:39:00.000Z" + }, + "end": { + "$date": "2021-05-02T16:47:21.000Z" + }, + "events": [ + { + "uuid": "b777f898-3df8-4488-a97b-5c6c8f15ed3c", + "start": { + "$date": "2021-05-02T16:39:00.000Z" + }, + "end": { + "$date": "2021-05-02T16:47:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4b8105ca-5582-4f3a-bbef-90427b87fae5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T16:47:31.000Z" + }, + "end": { + "$date": "2021-05-02T17:38:42.000Z" + }, + "events": [ + { + "uuid": "e988e381-9282-42ea-a40f-243c4571a129", + "start": { + "$date": "2021-05-02T16:47:31.000Z" + }, + "end": { + "$date": "2021-05-02T17:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41ec599d-8fe0-4f39-abca-e5cf0b2e999f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T17:10:50.000Z" + }, + "end": { + "$date": "2021-05-02T17:23:36.000Z" + }, + "events": [ + { + "uuid": "74ef5590-1bf2-4787-acca-b72659f4e678", + "start": { + "$date": "2021-05-02T17:10:50.000Z" + }, + "end": { + "$date": "2021-05-02T17:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "719842ad-a15f-40a9-b9b0-1ba734ccf6b0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T17:28:43.000Z" + }, + "end": { + "$date": "2021-05-02T17:57:11.000Z" + }, + "events": [ + { + "uuid": "c0fb6316-027f-4b30-8af7-34337e263d4d", + "start": { + "$date": "2021-05-02T17:28:43.000Z" + }, + "end": { + "$date": "2021-05-02T17:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "916f585d-6e81-44dc-ad80-0559595481f5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-02T17:46:54.000Z" + }, + "end": { + "$date": "2021-05-02T18:02:21.000Z" + }, + "events": [ + { + "uuid": "5e5ede3b-ee04-4384-8d40-a4ea5c3d9576", + "start": { + "$date": "2021-05-02T17:46:54.000Z" + }, + "end": { + "$date": "2021-05-02T18:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5a56ff2d-abe9-4ec2-9503-a77eac00a953", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-03T00:04:20.000Z" + }, + "end": { + "$date": "2021-05-03T00:32:08.000Z" + }, + "events": [ + { + "uuid": "f270ace5-3920-46cf-8818-6649aa95fe31", + "start": { + "$date": "2021-05-03T00:04:20.000Z" + }, + "end": { + "$date": "2021-05-03T02:50:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d9b869e-2dfb-4bae-b02b-92de8b663039", + "start": { + "$date": "2021-05-03T02:50:20.000Z" + }, + "end": { + "$date": "2021-05-03T02:55:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af3e51dd-6943-4d26-94c1-ffee33d57a3f", + "start": { + "$date": "2021-05-03T02:55:20.000Z" + }, + "end": { + "$date": "2021-05-03T04:36:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46ea55f0-5326-484b-9462-cafcd4bbbc7a", + "start": { + "$date": "2021-05-03T04:36:20.000Z" + }, + "end": { + "$date": "2021-05-03T04:42:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6662b40-af72-4210-b174-deb1fbc02963", + "start": { + "$date": "2021-05-03T04:42:20.000Z" + }, + "end": { + "$date": "2021-05-03T04:44:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b269f92-739c-451b-a86c-6c9b2a01c488", + "start": { + "$date": "2021-05-03T04:44:20.000Z" + }, + "end": { + "$date": "2021-05-03T05:26:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3dec1d47-1b40-44c7-8f12-e35511ee9ab8", + "start": { + "$date": "2021-05-03T05:26:20.000Z" + }, + "end": { + "$date": "2021-05-03T06:22:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa136b31-222a-4ede-9948-14a124a5f20d", + "start": { + "$date": "2021-05-03T06:22:20.000Z" + }, + "end": { + "$date": "2021-05-03T00:32:08.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69e3b2e8-09d5-4eb8-8532-2b4e38143516", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T19:31:11.000Z" + }, + "end": { + "$date": "2021-05-02T20:03:54.000Z" + }, + "events": [ + { + "uuid": "134df324-9240-4bc5-ab35-1f5af9bbf05d", + "start": { + "$date": "2021-05-02T19:31:11.000Z" + }, + "end": { + "$date": "2021-05-02T20:03:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0721553a-1cd6-46d1-bb7a-c6da356a3db2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T19:45:09.000Z" + }, + "end": { + "$date": "2021-05-02T22:13:27.000Z" + }, + "events": [ + { + "uuid": "6f0d6e26-fd87-4921-be83-60a7560b1210", + "start": { + "$date": "2021-05-02T19:45:09.000Z" + }, + "end": { + "$date": "2021-05-02T21:13:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2db033fb-6aec-4644-9bd0-f7c861cc5845", + "start": { + "$date": "2021-05-02T21:13:09.000Z" + }, + "end": { + "$date": "2021-05-02T21:16:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8859687c-7509-4f6d-8fb8-d50db8e5910f", + "start": { + "$date": "2021-05-02T21:16:09.000Z" + }, + "end": { + "$date": "2021-05-02T21:26:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40d8ad3f-7533-4dc9-b19b-15134abf82f1", + "start": { + "$date": "2021-05-02T21:26:09.000Z" + }, + "end": { + "$date": "2021-05-02T21:27:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "75c68e06-56bb-400b-808d-7c99224afd14", + "start": { + "$date": "2021-05-02T21:27:09.000Z" + }, + "end": { + "$date": "2021-05-02T22:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61d5ae9c-6842-4d89-b2c1-55986a597719", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-02T20:09:05.000Z" + }, + "end": { + "$date": "2021-05-02T20:44:09.000Z" + }, + "events": [ + { + "uuid": "f6c52b10-0c85-4215-9261-3cce62f3a6ac", + "start": { + "$date": "2021-05-02T20:09:05.000Z" + }, + "end": { + "$date": "2021-05-02T20:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecdb1c90-9735-4769-9b49-2a468a5deaf9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-02T20:28:07.000Z" + }, + "end": { + "$date": "2021-05-02T20:50:02.000Z" + }, + "events": [ + { + "uuid": "d49e7633-045a-48e4-8efd-9e4a3cc28347", + "start": { + "$date": "2021-05-02T20:28:07.000Z" + }, + "end": { + "$date": "2021-05-02T20:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d4331b85-d056-4dfd-91f5-e511e577f735", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-02T20:34:40.000Z" + }, + "end": { + "$date": "2021-05-02T22:44:11.000Z" + }, + "events": [ + { + "uuid": "cffde5fb-b75a-4080-979e-437825e083ee", + "start": { + "$date": "2021-05-02T20:34:40.000Z" + }, + "end": { + "$date": "2021-05-02T21:14:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e28665c-6e05-49e7-bc81-2adc22feac69", + "start": { + "$date": "2021-05-02T21:14:40.000Z" + }, + "end": { + "$date": "2021-05-02T21:19:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e4747579-4551-472f-b61c-ae9a37bbea9e", + "start": { + "$date": "2021-05-02T21:19:40.000Z" + }, + "end": { + "$date": "2021-05-02T21:34:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a11c630-fe65-4536-b222-2043a6fa9522", + "start": { + "$date": "2021-05-02T21:34:40.000Z" + }, + "end": { + "$date": "2021-05-02T22:34:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8cda0b4d-e0e4-459f-b628-bd451f458e8a", + "start": { + "$date": "2021-05-02T22:34:40.000Z" + }, + "end": { + "$date": "2021-05-02T22:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64167b2a-5d52-4f78-a16b-6407cf093b98", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-03T01:25:55.000Z" + }, + "end": { + "$date": "2021-05-03T01:57:33.000Z" + }, + "events": [ + { + "uuid": "0f2f501c-ea6b-4c86-aa6e-f282bd251695", + "start": { + "$date": "2021-05-03T01:25:55.000Z" + }, + "end": { + "$date": "2021-05-03T02:14:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7383af35-cfdc-4687-9daa-fcdec51c4c1e", + "start": { + "$date": "2021-05-03T02:14:55.000Z" + }, + "end": { + "$date": "2021-05-03T04:37:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c7f1eeca-433f-4d64-adbd-486d0323add9", + "start": { + "$date": "2021-05-03T04:37:55.000Z" + }, + "end": { + "$date": "2021-05-03T04:47:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "90a43f56-dc7e-4bb1-96cd-08808ca32a0b", + "start": { + "$date": "2021-05-03T04:47:55.000Z" + }, + "end": { + "$date": "2021-05-03T05:52:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "807f68d0-e529-4466-ba4e-5e56f3c9bf3c", + "start": { + "$date": "2021-05-03T05:52:55.000Z" + }, + "end": { + "$date": "2021-05-03T01:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d9392522-1c58-4c2e-a131-c5eaa9b8f0cf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T22:45:07.000Z" + }, + "end": { + "$date": "2021-05-02T22:52:32.000Z" + }, + "events": [ + { + "uuid": "b1440ffb-8416-40fd-b676-fd70b4e3857d", + "start": { + "$date": "2021-05-02T22:45:07.000Z" + }, + "end": { + "$date": "2021-05-02T22:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3415c55a-1b5b-402b-987b-518ea377629a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-02T22:52:44.000Z" + }, + "end": { + "$date": "2021-05-02T23:53:29.000Z" + }, + "events": [ + { + "uuid": "b5f71a72-6730-4e66-9dec-4d24812277c7", + "start": { + "$date": "2021-05-02T22:52:44.000Z" + }, + "end": { + "$date": "2021-05-02T23:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9934a7e6-56ef-465c-b36e-ca220a7478c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-02T23:14:03.000Z" + }, + "end": { + "$date": "2021-05-02T23:52:31.000Z" + }, + "events": [ + { + "uuid": "de0c10ab-8099-4355-a412-b97d9625de5b", + "start": { + "$date": "2021-05-02T23:14:03.000Z" + }, + "end": { + "$date": "2021-05-02T23:52:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "27b1eccd-2810-4752-9a76-65ab687bbeb2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-03T00:03:22.000Z" + }, + "end": { + "$date": "2021-05-03T00:15:17.000Z" + }, + "events": [ + { + "uuid": "2ff22738-7a12-4b20-97e6-150b287f8b31", + "start": { + "$date": "2021-05-03T00:03:22.000Z" + }, + "end": { + "$date": "2021-05-03T00:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3d1b2250-a3aa-4f92-bbc9-6df8e96081be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-03T00:07:14.000Z" + }, + "end": { + "$date": "2021-05-03T02:43:24.000Z" + }, + "events": [ + { + "uuid": "cf74f16a-f927-4217-bc5c-9b1eccb7d9b9", + "start": { + "$date": "2021-05-03T00:07:14.000Z" + }, + "end": { + "$date": "2021-05-03T01:18:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "344a7337-518b-471a-8f4d-3947b6b6e914", + "start": { + "$date": "2021-05-03T01:18:14.000Z" + }, + "end": { + "$date": "2021-05-03T01:52:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97814357-2c73-49c2-a1a4-cbc5b7d41069", + "start": { + "$date": "2021-05-03T01:52:14.000Z" + }, + "end": { + "$date": "2021-05-03T02:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6ae7449f-f82c-4844-8221-926155e0f09b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-03T01:30:23.000Z" + }, + "end": { + "$date": "2021-05-03T01:39:28.000Z" + }, + "events": [ + { + "uuid": "83744e55-bdfc-4983-8e66-b040c3a0961b", + "start": { + "$date": "2021-05-03T01:30:23.000Z" + }, + "end": { + "$date": "2021-05-03T01:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e970d29e-f4ed-407d-9acf-5afd7aad44a3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-03T05:13:03.000Z" + }, + "end": { + "$date": "2021-05-03T05:45:06.000Z" + }, + "events": [ + { + "uuid": "7e1f8ec0-7b6f-4769-aafe-6e3b834d6c53", + "start": { + "$date": "2021-05-03T05:13:03.000Z" + }, + "end": { + "$date": "2021-05-03T05:54:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5e64338-435f-4054-89a6-1b59cd19fe31", + "start": { + "$date": "2021-05-03T05:54:03.000Z" + }, + "end": { + "$date": "2021-05-03T06:09:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64211b9a-707b-413a-9e2e-379600929408", + "start": { + "$date": "2021-05-03T06:09:03.000Z" + }, + "end": { + "$date": "2021-05-03T06:34:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d3ee810-99f3-4ffa-a3e8-caaff888c7ac", + "start": { + "$date": "2021-05-03T06:34:03.000Z" + }, + "end": { + "$date": "2021-05-03T07:27:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb3428e8-c354-43b4-849c-964749e4ade0", + "start": { + "$date": "2021-05-03T07:27:03.000Z" + }, + "end": { + "$date": "2021-05-03T07:41:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "96889608-c36f-4cef-9712-4c414ffbee54", + "start": { + "$date": "2021-05-03T07:41:03.000Z" + }, + "end": { + "$date": "2021-05-03T08:08:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91ee1b13-2ff6-49e5-b4c5-749ab57c14fd", + "start": { + "$date": "2021-05-03T08:08:03.000Z" + }, + "end": { + "$date": "2021-05-03T05:45:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "70785909-2d82-4f33-89b8-36bca6a989df", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-03T01:59:18.000Z" + }, + "end": { + "$date": "2021-05-03T02:52:41.000Z" + }, + "events": [ + { + "uuid": "d9c9ecb2-b6ce-429d-a635-6cbb24512398", + "start": { + "$date": "2021-05-03T01:59:18.000Z" + }, + "end": { + "$date": "2021-05-03T02:52:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f00dd9de-5392-4e28-af35-09676da3b9f9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-03T02:26:47.000Z" + }, + "end": { + "$date": "2021-05-03T03:49:07.000Z" + }, + "events": [ + { + "uuid": "5600d6a1-6194-4f76-9f6e-82e68af5d69b", + "start": { + "$date": "2021-05-03T02:26:47.000Z" + }, + "end": { + "$date": "2021-05-03T03:49:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "86a20111-d6eb-4b5a-9e56-8af390c41bbf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-03T04:47:34.000Z" + }, + "end": { + "$date": "2021-05-03T04:47:53.000Z" + }, + "events": [ + { + "uuid": "4f5f1ea4-1c79-47bf-a1cf-eba68f943209", + "start": { + "$date": "2021-05-03T04:47:34.000Z" + }, + "end": { + "$date": "2021-05-03T04:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8bb9c5f4-4d4d-4e97-9992-d31d013f69d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T04:05:50.000Z" + }, + "end": { + "$date": "2021-05-04T04:40:51.000Z" + }, + "events": [ + { + "uuid": "4697e964-70fd-4699-9585-9dbf84b20f2d", + "start": { + "$date": "2021-05-04T04:05:50.000Z" + }, + "end": { + "$date": "2021-05-04T04:51:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3c79169-6e92-4ad2-b85b-8367bcf2bc73", + "start": { + "$date": "2021-05-04T04:51:50.000Z" + }, + "end": { + "$date": "2021-05-04T05:29:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af54dd6e-e866-453a-96cd-885288bbdbdf", + "start": { + "$date": "2021-05-04T05:29:50.000Z" + }, + "end": { + "$date": "2021-05-04T05:32:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "96bb42ef-2f09-4cc1-9203-1c0b8c6450c9", + "start": { + "$date": "2021-05-04T05:32:50.000Z" + }, + "end": { + "$date": "2021-05-04T05:36:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c18c9d9-3b13-4f05-985a-8843b5f6578a", + "start": { + "$date": "2021-05-04T05:36:50.000Z" + }, + "end": { + "$date": "2021-05-04T05:39:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4f72db57-cc53-478e-b3e5-3d615dd29007", + "start": { + "$date": "2021-05-04T05:39:50.000Z" + }, + "end": { + "$date": "2021-05-04T05:40:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70150122-2d5c-429e-a641-da93566a8277", + "start": { + "$date": "2021-05-04T05:40:50.000Z" + }, + "end": { + "$date": "2021-05-04T05:42:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ee6d625-f643-48e0-a918-77acad807230", + "start": { + "$date": "2021-05-04T05:42:50.000Z" + }, + "end": { + "$date": "2021-05-04T14:37:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2cd76506-358d-4b75-ae9e-793b7fd33f24", + "start": { + "$date": "2021-05-04T14:37:50.000Z" + }, + "end": { + "$date": "2021-05-04T14:43:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f7e14cf-4f8f-46a5-80a3-59d413c2c139", + "start": { + "$date": "2021-05-04T14:43:50.000Z" + }, + "end": { + "$date": "2021-05-04T14:55:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0c038ec-50dd-4537-9e87-507d1835cbbe", + "start": { + "$date": "2021-05-04T14:55:50.000Z" + }, + "end": { + "$date": "2021-05-04T16:11:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "87e66757-a231-48f4-b5e0-9657bfb9bbd0", + "start": { + "$date": "2021-05-04T16:11:50.000Z" + }, + "end": { + "$date": "2021-05-04T16:16:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "17667352-ff69-4897-b8d6-3cc59a5f8291", + "start": { + "$date": "2021-05-04T16:16:50.000Z" + }, + "end": { + "$date": "2021-05-04T16:41:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9ef8cf3-aa0f-4ba6-afc5-2a66c0efcef3", + "start": { + "$date": "2021-05-04T16:41:50.000Z" + }, + "end": { + "$date": "2021-05-04T16:44:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f75586ca-c0b4-4593-9a2e-0b3a2cac06b3", + "start": { + "$date": "2021-05-04T16:44:50.000Z" + }, + "end": { + "$date": "2021-05-04T21:24:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7f6b548-3adf-43c3-afcd-c68840dc1d5f", + "start": { + "$date": "2021-05-04T21:24:50.000Z" + }, + "end": { + "$date": "2021-05-04T21:50:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "194cec2f-0f94-423e-90dd-1cbeb0cc2d94", + "start": { + "$date": "2021-05-04T21:50:50.000Z" + }, + "end": { + "$date": "2021-05-05T00:07:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "332ebad4-d527-4748-a980-8f2202a73cb5", + "start": { + "$date": "2021-05-05T00:07:50.000Z" + }, + "end": { + "$date": "2021-05-05T00:48:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03deba7a-ec5f-4155-80ce-0c73b68553eb", + "start": { + "$date": "2021-05-05T00:48:50.000Z" + }, + "end": { + "$date": "2021-05-05T01:02:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c3822879-2f34-44db-a9ac-ac14123766f6", + "start": { + "$date": "2021-05-05T01:02:50.000Z" + }, + "end": { + "$date": "2021-05-05T01:27:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a5063eb-9d90-41e1-89b4-07014fdfa349", + "start": { + "$date": "2021-05-05T01:27:50.000Z" + }, + "end": { + "$date": "2021-05-05T03:13:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea43f9fe-1d2d-430f-a802-2c2d58a63fa6", + "start": { + "$date": "2021-05-05T03:13:50.000Z" + }, + "end": { + "$date": "2021-05-05T03:18:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "655e0587-4e0d-4dd2-9b4a-8fd3b7c0eb26", + "start": { + "$date": "2021-05-05T03:18:50.000Z" + }, + "end": { + "$date": "2021-05-04T04:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d95516bc-1853-4c19-bdbc-05810ee9497b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-03T02:48:54.000Z" + }, + "end": { + "$date": "2021-05-03T06:10:04.000Z" + }, + "events": [ + { + "uuid": "5e6f7c20-7ee6-4a67-9621-31576ff1d47d", + "start": { + "$date": "2021-05-03T02:48:54.000Z" + }, + "end": { + "$date": "2021-05-03T03:06:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f64acdc-0f35-418c-a7ee-ab7fd73ee79e", + "start": { + "$date": "2021-05-03T03:06:54.000Z" + }, + "end": { + "$date": "2021-05-03T03:11:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "200e145e-3e8b-49f3-9312-e4e10206a710", + "start": { + "$date": "2021-05-03T03:11:54.000Z" + }, + "end": { + "$date": "2021-05-03T06:10:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf3ff97c-3a88-4565-9af4-0e502499b72b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-03T03:03:30.000Z" + }, + "end": { + "$date": "2021-05-03T03:37:50.000Z" + }, + "events": [ + { + "uuid": "6828437a-a05d-4caa-984f-23f84b520ade", + "start": { + "$date": "2021-05-03T03:03:30.000Z" + }, + "end": { + "$date": "2021-05-03T03:37:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "7c00f423-194b-4dc9-a619-aeeef968da82", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-03T03:01:23.000Z" + }, + "end": { + "$date": "2021-05-03T04:54:58.000Z" + }, + "events": [ + { + "uuid": "3cfc4406-1adb-465b-888c-cce1de27449a", + "start": { + "$date": "2021-05-03T03:01:23.000Z" + }, + "end": { + "$date": "2021-05-03T04:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "047ef04c-5624-457a-8b48-e5a7c1ccdc3e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-03T03:58:54.000Z" + }, + "end": { + "$date": "2021-05-03T04:30:56.000Z" + }, + "events": [ + { + "uuid": "9d72c1f1-d770-4b6b-a62c-acf53a452ea1", + "start": { + "$date": "2021-05-03T03:58:54.000Z" + }, + "end": { + "$date": "2021-05-03T04:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "47b06dcb-92b7-4e1a-ba8f-dc2e8e6eae56", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-03T04:22:35.000Z" + }, + "end": { + "$date": "2021-05-03T04:44:36.000Z" + }, + "events": [ + { + "uuid": "39b77174-b714-4a02-a4b6-f981a38837de", + "start": { + "$date": "2021-05-03T04:22:35.000Z" + }, + "end": { + "$date": "2021-05-03T04:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "134e96b2-8fea-4773-abcc-c080b869821d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-03T04:25:00.000Z" + }, + "end": { + "$date": "2021-05-03T04:31:05.000Z" + }, + "events": [ + { + "uuid": "8f4f62e3-c546-4ca1-95bc-86536329e5a5", + "start": { + "$date": "2021-05-03T04:25:00.000Z" + }, + "end": { + "$date": "2021-05-03T04:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69147d54-bb81-4fa1-ad60-7c91ccdc70b3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-03T04:37:45.000Z" + }, + "end": { + "$date": "2021-05-03T05:00:39.000Z" + }, + "events": [ + { + "uuid": "f4e6c60d-9fb6-4559-9026-c629a117c8da", + "start": { + "$date": "2021-05-03T04:37:45.000Z" + }, + "end": { + "$date": "2021-05-03T05:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3b8ee375-1003-4994-9fa4-8eb1366c4cdf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-03T07:33:09.000Z" + }, + "end": { + "$date": "2021-05-03T08:17:57.000Z" + }, + "events": [ + { + "uuid": "e937a9d6-5725-476e-a06a-d8daa84a6afa", + "start": { + "$date": "2021-05-03T07:33:09.000Z" + }, + "end": { + "$date": "2021-05-03T07:45:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35a1cd36-7d80-4031-93d7-5398ff2cf106", + "start": { + "$date": "2021-05-03T07:45:09.000Z" + }, + "end": { + "$date": "2021-05-03T07:58:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "55991516-8f2e-42fe-8c48-f425508bf4c8", + "start": { + "$date": "2021-05-03T07:58:09.000Z" + }, + "end": { + "$date": "2021-05-03T08:01:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c554903-d29f-4231-ad91-d056fa861d72", + "start": { + "$date": "2021-05-03T08:01:09.000Z" + }, + "end": { + "$date": "2021-05-03T09:21:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "107e29d5-b676-4650-a9ed-a47855c1d3c1", + "start": { + "$date": "2021-05-03T09:21:09.000Z" + }, + "end": { + "$date": "2021-05-03T09:25:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22cf1060-38e8-4ba0-a06b-aae333ff6a9e", + "start": { + "$date": "2021-05-03T09:25:09.000Z" + }, + "end": { + "$date": "2021-05-03T09:37:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7dd98f55-9f9b-4a77-b6b3-7e5618a8c4cc", + "start": { + "$date": "2021-05-03T09:37:09.000Z" + }, + "end": { + "$date": "2021-05-03T08:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a2f1721b-9173-43a7-8cd8-f2a4a230008f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-03T04:57:30.000Z" + }, + "end": { + "$date": "2021-05-03T08:14:37.000Z" + }, + "events": [ + { + "uuid": "1c7cd157-9d69-4c52-9578-4bce573593fa", + "start": { + "$date": "2021-05-03T04:57:30.000Z" + }, + "end": { + "$date": "2021-05-03T08:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24b84476-a30e-46eb-a545-1490cab686d8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-03T05:45:19.000Z" + }, + "end": { + "$date": "2021-05-03T13:34:01.000Z" + }, + "events": [ + { + "uuid": "69b15a0b-02e3-4838-929e-3aa7eeb6fccb", + "start": { + "$date": "2021-05-03T05:45:19.000Z" + }, + "end": { + "$date": "2021-05-03T06:03:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "756320aa-5fb6-49c1-9e2a-6ff335919f0d", + "start": { + "$date": "2021-05-03T06:03:19.000Z" + }, + "end": { + "$date": "2021-05-03T06:06:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dcc257b5-2cbc-4872-98c6-4f44ba0e9195", + "start": { + "$date": "2021-05-03T06:06:19.000Z" + }, + "end": { + "$date": "2021-05-03T06:30:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d76a41a0-8956-4d3a-8a25-bd975e0da988", + "start": { + "$date": "2021-05-03T06:30:19.000Z" + }, + "end": { + "$date": "2021-05-03T13:04:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9845a6eb-ed22-439c-a7fa-6694046dcd6e", + "start": { + "$date": "2021-05-03T13:04:19.000Z" + }, + "end": { + "$date": "2021-05-03T13:05:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08ab34f7-b3f6-486a-b798-6b3d86d6cc8c", + "start": { + "$date": "2021-05-03T13:05:19.000Z" + }, + "end": { + "$date": "2021-05-03T13:25:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb7816ba-85a1-4df6-a1f4-cf0a75500f30", + "start": { + "$date": "2021-05-03T13:25:19.000Z" + }, + "end": { + "$date": "2021-05-03T13:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "afeef365-7750-44e0-9fc3-d2dfbfc632cf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-03T07:48:47.000Z" + }, + "end": { + "$date": "2021-05-03T08:19:29.000Z" + }, + "events": [ + { + "uuid": "c8e0250e-9b67-48d0-b3db-21cfc017f4c1", + "start": { + "$date": "2021-05-03T07:48:47.000Z" + }, + "end": { + "$date": "2021-05-03T08:19:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e0e5af8c-e33c-4c63-8f61-ed095a8f273e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-03T15:35:19.000Z" + }, + "end": { + "$date": "2021-05-03T16:02:09.000Z" + }, + "events": [ + { + "uuid": "3a0b3eae-945f-4666-9730-cda0af6e0ceb", + "start": { + "$date": "2021-05-03T15:35:19.000Z" + }, + "end": { + "$date": "2021-05-03T16:02:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f186abf-11a8-4c73-9e40-57b6f93f200b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-03T21:04:28.000Z" + }, + "end": { + "$date": "2021-05-03T21:04:53.000Z" + }, + "events": [ + { + "uuid": "d59a88c6-6f94-4da7-88f9-d6f474f71abc", + "start": { + "$date": "2021-05-03T21:04:28.000Z" + }, + "end": { + "$date": "2021-05-03T21:45:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e90e4af7-93db-4d1c-ac2f-478c73d9c6dd", + "start": { + "$date": "2021-05-03T21:45:28.000Z" + }, + "end": { + "$date": "2021-05-03T21:47:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "590fb4e9-c0a7-4698-837a-6f29958971a7", + "start": { + "$date": "2021-05-03T21:47:28.000Z" + }, + "end": { + "$date": "2021-05-03T22:33:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dec6bad2-809e-402e-92d5-7d9b45102a3b", + "start": { + "$date": "2021-05-03T22:33:28.000Z" + }, + "end": { + "$date": "2021-05-03T22:38:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b17c1a97-132c-4d6b-957b-6fd0f491fea7", + "start": { + "$date": "2021-05-03T22:38:28.000Z" + }, + "end": { + "$date": "2021-05-03T22:48:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9df43bac-3e29-436b-8a90-93789b35eb48", + "start": { + "$date": "2021-05-03T22:48:28.000Z" + }, + "end": { + "$date": "2021-05-03T23:11:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9fcd602b-1783-478e-ad51-76cbfab3c4f5", + "start": { + "$date": "2021-05-03T23:11:28.000Z" + }, + "end": { + "$date": "2021-05-04T00:19:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "316237e3-6e68-439a-81dc-3a8c80c19a04", + "start": { + "$date": "2021-05-04T00:19:28.000Z" + }, + "end": { + "$date": "2021-05-04T00:28:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a745e631-ce4c-4ce9-a7f8-54b9b1b64272", + "start": { + "$date": "2021-05-04T00:28:28.000Z" + }, + "end": { + "$date": "2021-05-04T00:45:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e754815f-2306-4e24-99a9-15c3d99b0376", + "start": { + "$date": "2021-05-04T00:45:28.000Z" + }, + "end": { + "$date": "2021-05-04T00:52:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2f65940-bf33-4070-bf05-1082fa6d3bbc", + "start": { + "$date": "2021-05-04T00:52:28.000Z" + }, + "end": { + "$date": "2021-05-04T01:08:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8aec26e-3361-4889-9afa-8d17523465d6", + "start": { + "$date": "2021-05-04T01:08:28.000Z" + }, + "end": { + "$date": "2021-05-04T01:42:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df8295f7-416e-4975-ac4a-eaee152f5439", + "start": { + "$date": "2021-05-04T01:42:28.000Z" + }, + "end": { + "$date": "2021-05-03T21:04:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "81de9605-285a-4878-82c6-db6a0005fd69", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-03T21:34:07.000Z" + }, + "end": { + "$date": "2021-05-03T21:35:18.000Z" + }, + "events": [ + { + "uuid": "38fd9096-fd1d-40d3-9f8a-ad015618a0e6", + "start": { + "$date": "2021-05-03T21:34:07.000Z" + }, + "end": { + "$date": "2021-05-03T21:47:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9321fadc-0580-4db4-9dcc-1b4ebdc0c840", + "start": { + "$date": "2021-05-03T21:47:07.000Z" + }, + "end": { + "$date": "2021-05-03T22:05:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f5d5bf50-99a9-4bd2-927e-79a00c75115a", + "start": { + "$date": "2021-05-03T22:05:07.000Z" + }, + "end": { + "$date": "2021-05-03T22:09:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "220f36f5-be1f-49b6-bb99-84d747ef3b3b", + "start": { + "$date": "2021-05-03T22:09:07.000Z" + }, + "end": { + "$date": "2021-05-03T22:11:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61086000-9ab5-48c0-b626-5b406efc4a87", + "start": { + "$date": "2021-05-03T22:11:07.000Z" + }, + "end": { + "$date": "2021-05-03T22:14:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6c0cdb0-6782-48f7-adcb-b3871c125105", + "start": { + "$date": "2021-05-03T22:14:07.000Z" + }, + "end": { + "$date": "2021-05-03T22:18:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b5ff5de-d486-45db-829f-19c0e738531a", + "start": { + "$date": "2021-05-03T22:18:07.000Z" + }, + "end": { + "$date": "2021-05-03T22:21:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4922ad7d-16b9-41af-9734-9b8d66b71fed", + "start": { + "$date": "2021-05-03T22:21:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:02:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "981cd4cd-7761-47bf-b08f-41f599aa992d", + "start": { + "$date": "2021-05-03T23:02:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:06:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3fd30e84-c889-4c79-8e5a-70bbb4a2d772", + "start": { + "$date": "2021-05-03T23:06:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:08:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "57900a83-ac60-4804-a745-793e58243a59", + "start": { + "$date": "2021-05-03T23:08:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:10:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3876399f-d514-444e-90a5-125a88ea9b64", + "start": { + "$date": "2021-05-03T23:10:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:17:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b6d2900-6a41-42e2-9076-59e7bf7ce9f7", + "start": { + "$date": "2021-05-03T23:17:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:22:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60ecec38-5621-4d6d-88f1-5cbd4a6f20c1", + "start": { + "$date": "2021-05-03T23:22:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:45:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cda92885-59af-4dcc-b061-d5f054ab4ab5", + "start": { + "$date": "2021-05-03T23:45:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:47:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db338061-21a0-46c8-a3d6-a99882a97913", + "start": { + "$date": "2021-05-03T23:47:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:48:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db767c87-1a98-469c-9443-739cb73c5ef2", + "start": { + "$date": "2021-05-03T23:48:07.000Z" + }, + "end": { + "$date": "2021-05-03T23:51:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7728156-6fe0-4bab-b1ce-42e5a5bda7d5", + "start": { + "$date": "2021-05-03T23:51:07.000Z" + }, + "end": { + "$date": "2021-05-04T00:35:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd0b2741-3f9b-4d79-847a-67152288d3ba", + "start": { + "$date": "2021-05-04T00:35:07.000Z" + }, + "end": { + "$date": "2021-05-04T00:37:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aae63471-54c4-472f-8ba0-10f92bffe5b6", + "start": { + "$date": "2021-05-04T00:37:07.000Z" + }, + "end": { + "$date": "2021-05-04T00:50:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1bfd07d3-e2d1-41b4-9b9e-37c88a3a071b", + "start": { + "$date": "2021-05-04T00:50:07.000Z" + }, + "end": { + "$date": "2021-05-04T00:52:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "902603b6-8d01-4c31-b554-fb99edb9ddb2", + "start": { + "$date": "2021-05-04T00:52:07.000Z" + }, + "end": { + "$date": "2021-05-04T01:00:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f630ff85-2b9a-47a7-bf50-e7947b0751f6", + "start": { + "$date": "2021-05-04T01:00:07.000Z" + }, + "end": { + "$date": "2021-05-03T21:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "2ad3ebcb-836a-43a0-b31d-90f9acd944ee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-03T20:37:47.000Z" + }, + "end": { + "$date": "2021-05-03T21:43:14.000Z" + }, + "events": [ + { + "uuid": "a150ffbd-9eb7-442e-806f-71c67b87e386", + "start": { + "$date": "2021-05-03T20:37:47.000Z" + }, + "end": { + "$date": "2021-05-03T21:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "773facb5-1ec9-4acd-9f8f-94887b3b90ca", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-03T20:55:54.000Z" + }, + "end": { + "$date": "2021-05-03T22:41:13.000Z" + }, + "events": [ + { + "uuid": "1b955961-46ae-4fab-81a7-62bbfc90aefa", + "start": { + "$date": "2021-05-03T20:55:54.000Z" + }, + "end": { + "$date": "2021-05-03T22:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4227eff5-fdd1-45f9-b498-04c721acd539", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-03T21:35:25.000Z" + }, + "end": { + "$date": "2021-05-03T21:46:28.000Z" + }, + "events": [ + { + "uuid": "4d0aed59-bc9b-4675-a3da-97fadac3d931", + "start": { + "$date": "2021-05-03T21:35:25.000Z" + }, + "end": { + "$date": "2021-05-03T21:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "2f306aeb-8cea-4d1e-af64-f0be45ea64e1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-03T21:42:03.000Z" + }, + "end": { + "$date": "2021-05-03T22:17:11.000Z" + }, + "events": [ + { + "uuid": "326bb973-c515-4c81-8d53-18cc9d03af3a", + "start": { + "$date": "2021-05-03T21:42:03.000Z" + }, + "end": { + "$date": "2021-05-03T22:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d4be8826-ff69-47da-9b5d-a9940657ba81", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-03T21:55:17.000Z" + }, + "end": { + "$date": "2021-05-03T22:13:40.000Z" + }, + "events": [ + { + "uuid": "e9cef1e7-f8d9-4c20-a923-ed1a8ef55095", + "start": { + "$date": "2021-05-03T21:55:17.000Z" + }, + "end": { + "$date": "2021-05-03T22:06:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d54d6c95-f77a-45ff-a9d1-4a7a4fd6e096", + "start": { + "$date": "2021-05-03T22:06:17.000Z" + }, + "end": { + "$date": "2021-05-03T22:11:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b009311d-0af1-4870-bc1b-1a69da50a7f2", + "start": { + "$date": "2021-05-03T22:11:17.000Z" + }, + "end": { + "$date": "2021-05-03T22:13:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e4a736c2-a97e-4e1e-8f12-1091e7cedf44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-04T02:06:10.000Z" + }, + "end": { + "$date": "2021-05-04T02:38:10.000Z" + }, + "events": [ + { + "uuid": "58eb76d6-1c39-47e1-9b69-da625269efd3", + "start": { + "$date": "2021-05-04T02:06:10.000Z" + }, + "end": { + "$date": "2021-05-04T03:13:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08a3abd2-80fc-4763-9a01-7baa64e3ea10", + "start": { + "$date": "2021-05-04T03:13:10.000Z" + }, + "end": { + "$date": "2021-05-04T03:14:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2804c66b-48ba-48b9-9287-e32bacdf7707", + "start": { + "$date": "2021-05-04T03:14:10.000Z" + }, + "end": { + "$date": "2021-05-04T04:12:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4353b655-5cc2-4305-9ccc-6ea9108d4bf1", + "start": { + "$date": "2021-05-04T04:12:10.000Z" + }, + "end": { + "$date": "2021-05-04T04:44:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70a1f7c1-ccaf-41b1-a66d-08d95a7050ea", + "start": { + "$date": "2021-05-04T04:44:10.000Z" + }, + "end": { + "$date": "2021-05-04T04:54:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dae2e593-e806-433d-8d76-7a334109337e", + "start": { + "$date": "2021-05-04T04:54:10.000Z" + }, + "end": { + "$date": "2021-05-04T05:07:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4ef03454-574c-47a2-9b63-d7fab2f9ee9a", + "start": { + "$date": "2021-05-04T05:07:10.000Z" + }, + "end": { + "$date": "2021-05-04T05:16:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb1211e8-4bc2-483c-b309-421352cbe80f", + "start": { + "$date": "2021-05-04T05:16:10.000Z" + }, + "end": { + "$date": "2021-05-04T05:22:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e583a9ea-f499-4d6c-b942-d076cc52cbf6", + "start": { + "$date": "2021-05-04T05:22:10.000Z" + }, + "end": { + "$date": "2021-05-04T05:24:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd959db5-54f8-49c7-8e1a-1eb2140200ee", + "start": { + "$date": "2021-05-04T05:24:10.000Z" + }, + "end": { + "$date": "2021-05-04T05:27:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb2442b5-22fc-417d-a46b-5f43a32dea14", + "start": { + "$date": "2021-05-04T05:27:10.000Z" + }, + "end": { + "$date": "2021-05-04T05:30:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0ad0373-cbe9-4ac1-8a73-ebdcbf0326db", + "start": { + "$date": "2021-05-04T05:30:10.000Z" + }, + "end": { + "$date": "2021-05-04T06:05:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6144aca5-a75f-4df0-9395-892b3fe32c83", + "start": { + "$date": "2021-05-04T06:05:10.000Z" + }, + "end": { + "$date": "2021-05-04T02:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f1b5dddc-2a23-41c7-a70c-9ad25ae83812", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-03T22:17:11.000Z" + }, + "end": { + "$date": "2021-05-04T00:08:46.000Z" + }, + "events": [ + { + "uuid": "3223e474-3ffc-42e2-9fe8-9a09b0b64c54", + "start": { + "$date": "2021-05-03T22:17:11.000Z" + }, + "end": { + "$date": "2021-05-04T00:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d3cade70-802a-4c67-9c80-9db2be6e34d2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-03T22:28:16.000Z" + }, + "end": { + "$date": "2021-05-03T22:42:08.000Z" + }, + "events": [ + { + "uuid": "dcfae146-4781-4722-b587-a099a06bcd01", + "start": { + "$date": "2021-05-03T22:28:16.000Z" + }, + "end": { + "$date": "2021-05-03T22:42:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", + "uuid": "bb7b91c8-75dd-4402-a2ae-5803e5918002", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-04T01:00:34.000Z" + }, + "end": { + "$date": "2021-05-04T02:29:36.000Z" + }, + "events": [ + { + "uuid": "57f5416f-6c0a-4051-9a7e-c10ce9b7fd5a", + "start": { + "$date": "2021-05-04T01:00:34.000Z" + }, + "end": { + "$date": "2021-05-04T02:29:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59b37048-b65f-438d-8b08-a8150905e3ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-04T01:49:51.000Z" + }, + "end": { + "$date": "2021-05-04T02:11:28.000Z" + }, + "events": [ + { + "uuid": "1e4e350d-c464-4155-9985-2c8a0626a535", + "start": { + "$date": "2021-05-04T01:49:51.000Z" + }, + "end": { + "$date": "2021-05-04T02:02:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24b0d6b4-0b0a-4e93-9da5-c1c6140ab879", + "start": { + "$date": "2021-05-04T02:02:51.000Z" + }, + "end": { + "$date": "2021-05-04T02:03:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec7bf75e-34c5-4084-9c5d-d569f5f67e7d", + "start": { + "$date": "2021-05-04T02:03:51.000Z" + }, + "end": { + "$date": "2021-05-04T02:11:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1e9dcdc7-ccc5-4367-9ab1-b1144d192836", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-04T02:10:40.000Z" + }, + "end": { + "$date": "2021-05-04T05:31:18.000Z" + }, + "events": [ + { + "uuid": "fba06e6b-10bd-4ddd-9910-86ca4a79b9de", + "start": { + "$date": "2021-05-04T02:10:40.000Z" + }, + "end": { + "$date": "2021-05-04T05:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "295a455f-18b0-4a61-9b94-fe5ecb29acf0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-04T02:19:44.000Z" + }, + "end": { + "$date": "2021-05-04T02:43:59.000Z" + }, + "events": [ + { + "uuid": "0d86bb08-0ba2-4ccb-a589-3153b08b4364", + "start": { + "$date": "2021-05-04T02:19:44.000Z" + }, + "end": { + "$date": "2021-05-04T02:43:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "847245e3-ed40-456e-a28f-a30ac7bfb095", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T02:35:07.000Z" + }, + "end": { + "$date": "2021-05-04T03:08:30.000Z" + }, + "events": [ + { + "uuid": "14694bc4-e7f1-4144-ae82-52e12f3255ee", + "start": { + "$date": "2021-05-04T02:35:07.000Z" + }, + "end": { + "$date": "2021-05-04T03:08:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ff8a1d4-ac76-4bfd-9e1f-8269ec0425f5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-04T02:53:20.000Z" + }, + "end": { + "$date": "2021-05-04T03:16:10.000Z" + }, + "events": [ + { + "uuid": "2a32ffa9-1f24-4078-811c-8ebdd3bee64e", + "start": { + "$date": "2021-05-04T02:53:20.000Z" + }, + "end": { + "$date": "2021-05-04T03:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c991f6e6-5905-4cd9-a2f9-a8f767d1e152", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-04T04:01:46.000Z" + }, + "end": { + "$date": "2021-05-04T05:31:16.000Z" + }, + "events": [ + { + "uuid": "78ed6d45-dbf3-4de8-be7e-baa410402c7d", + "start": { + "$date": "2021-05-04T04:01:46.000Z" + }, + "end": { + "$date": "2021-05-04T05:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8faee560-bdb6-47cf-9835-b93fc57a44bd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-04T02:54:21.000Z" + }, + "end": { + "$date": "2021-05-04T05:47:31.000Z" + }, + "events": [ + { + "uuid": "ba4b26db-ef30-4024-9985-5dae63195c7d", + "start": { + "$date": "2021-05-04T02:54:21.000Z" + }, + "end": { + "$date": "2021-05-04T05:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "05006079-81cb-4b23-ab0a-c4975aaf23e9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-04T03:07:27.000Z" + }, + "end": { + "$date": "2021-05-04T03:09:59.000Z" + }, + "events": [ + { + "uuid": "ca0bdaa2-6a6b-4f8c-91f3-b354978f89d5", + "start": { + "$date": "2021-05-04T03:07:27.000Z" + }, + "end": { + "$date": "2021-05-04T03:09:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "8a17da26-f0c2-46ec-a4eb-d8627107b81b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-04T03:08:44.000Z" + }, + "end": { + "$date": "2021-05-04T03:21:34.000Z" + }, + "events": [ + { + "uuid": "29b831fa-81f3-4981-aa66-649d54a9ad8b", + "start": { + "$date": "2021-05-04T03:08:44.000Z" + }, + "end": { + "$date": "2021-05-04T03:21:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59335161-12eb-4f5a-b352-4e4988150920", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T03:09:42.000Z" + }, + "end": { + "$date": "2021-05-04T03:42:39.000Z" + }, + "events": [ + { + "uuid": "96abed64-221e-4f2b-9d7d-ab352af20487", + "start": { + "$date": "2021-05-04T03:09:42.000Z" + }, + "end": { + "$date": "2021-05-04T03:42:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f43c119d-847a-457a-ad56-001d3038f4ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-04T03:10:18.000Z" + }, + "end": { + "$date": "2021-05-04T03:40:05.000Z" + }, + "events": [ + { + "uuid": "ebfa6e13-f405-4f94-9f3e-d7d61ce6fe4b", + "start": { + "$date": "2021-05-04T03:10:18.000Z" + }, + "end": { + "$date": "2021-05-04T03:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1dedb1b-0318-4180-89f6-0c0b119dfa1d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-04T03:24:00.000Z" + }, + "end": { + "$date": "2021-05-04T03:47:41.000Z" + }, + "events": [ + { + "uuid": "7b9341c7-dc38-44dc-99f9-11246ff2c061", + "start": { + "$date": "2021-05-04T03:24:00.000Z" + }, + "end": { + "$date": "2021-05-04T03:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "276a87e7-5716-42a2-a3d0-4811090a8e75", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-04T03:32:47.000Z" + }, + "end": { + "$date": "2021-05-04T03:46:41.000Z" + }, + "events": [ + { + "uuid": "7e8cf225-fb89-41e5-8f4e-7e37d27543db", + "start": { + "$date": "2021-05-04T03:32:47.000Z" + }, + "end": { + "$date": "2021-05-04T03:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b95d0def-ef01-49a2-9b15-14d888e5f1e6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-04T03:40:20.000Z" + }, + "end": { + "$date": "2021-05-04T05:54:46.000Z" + }, + "events": [ + { + "uuid": "2b009557-4ae3-4069-9108-fddab0e02a7a", + "start": { + "$date": "2021-05-04T03:40:20.000Z" + }, + "end": { + "$date": "2021-05-04T05:54:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "578267e1-3e55-435b-ae15-36e78b465e04", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-04T03:53:11.000Z" + }, + "end": { + "$date": "2021-05-04T04:29:00.000Z" + }, + "events": [ + { + "uuid": "4cf4793a-c25e-4534-bdf1-5765febb5e97", + "start": { + "$date": "2021-05-04T03:53:11.000Z" + }, + "end": { + "$date": "2021-05-04T04:29:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aea2bbc7-ef2a-4857-b374-1b5c3bfecc11", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-04T03:53:18.000Z" + }, + "end": { + "$date": "2021-05-04T04:12:34.000Z" + }, + "events": [ + { + "uuid": "e921210e-d173-4f6e-98ba-21a103ddfc75", + "start": { + "$date": "2021-05-04T03:53:18.000Z" + }, + "end": { + "$date": "2021-05-04T04:12:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3d950d21-8daf-47c5-8e29-c36467bd9f68", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-04T04:00:03.000Z" + }, + "end": { + "$date": "2021-05-04T05:37:08.000Z" + }, + "events": [ + { + "uuid": "48f5d285-ad79-4cd7-905e-83158d3b12c8", + "start": { + "$date": "2021-05-04T04:00:03.000Z" + }, + "end": { + "$date": "2021-05-04T05:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1c99ecc5-5d99-4058-9f1c-bf9e856a5649", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-04T04:07:15.000Z" + }, + "end": { + "$date": "2021-05-04T05:32:35.000Z" + }, + "events": [ + { + "uuid": "49c91368-1d8e-467c-a282-48e04fb3a4a6", + "start": { + "$date": "2021-05-04T04:07:15.000Z" + }, + "end": { + "$date": "2021-05-04T05:32:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68e895d0-106b-4a63-8829-c8f93e19f858", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T04:34:40.000Z" + }, + "end": { + "$date": "2021-05-04T05:34:58.000Z" + }, + "events": [ + { + "uuid": "eba6e714-4053-48f2-a00a-716c9e86ac12", + "start": { + "$date": "2021-05-04T04:34:40.000Z" + }, + "end": { + "$date": "2021-05-04T05:34:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53de1747-6496-470a-981c-56395a1af9f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-04T04:34:32.000Z" + }, + "end": { + "$date": "2021-05-04T05:34:48.000Z" + }, + "events": [ + { + "uuid": "b4e3997e-4476-40c6-9e6f-9b079fe8057c", + "start": { + "$date": "2021-05-04T04:34:32.000Z" + }, + "end": { + "$date": "2021-05-04T05:34:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07dfd76a-2a81-4872-84dc-13f82db44020", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-04T05:00:08.000Z" + }, + "end": { + "$date": "2021-05-04T05:30:00.000Z" + }, + "events": [ + { + "uuid": "a4ed35be-a47c-474f-bf83-263ab91b3b05", + "start": { + "$date": "2021-05-04T05:00:08.000Z" + }, + "end": { + "$date": "2021-05-04T05:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02173623-645e-4f53-8c7b-d35b2ee3ea78", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T14:38:23.000Z" + }, + "end": { + "$date": "2021-05-04T15:14:33.000Z" + }, + "events": [ + { + "uuid": "6f3da28d-041c-4175-8895-d4f24846eb7d", + "start": { + "$date": "2021-05-04T14:38:23.000Z" + }, + "end": { + "$date": "2021-05-04T15:14:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f3d5239b-7ecd-4e2a-ba66-6c21ae2edd8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T15:12:28.000Z" + }, + "end": { + "$date": "2021-05-04T16:11:34.000Z" + }, + "events": [ + { + "uuid": "0d6b2d87-8585-43ca-80cb-c7bb8157984f", + "start": { + "$date": "2021-05-04T15:12:28.000Z" + }, + "end": { + "$date": "2021-05-04T15:38:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c89d3c90-1051-422a-ae14-5d7bf131f3ce", + "start": { + "$date": "2021-05-04T15:38:28.000Z" + }, + "end": { + "$date": "2021-05-04T15:54:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b1867d9a-a385-44bc-8ff0-e96fb38f9bda", + "start": { + "$date": "2021-05-04T15:54:28.000Z" + }, + "end": { + "$date": "2021-05-04T16:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdd18dd3-0b49-4db6-a9d5-e0d1a8e1640f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T15:18:48.000Z" + }, + "end": { + "$date": "2021-05-04T15:33:29.000Z" + }, + "events": [ + { + "uuid": "b09b12a7-134a-44d4-a097-90c5e275fef2", + "start": { + "$date": "2021-05-04T15:18:48.000Z" + }, + "end": { + "$date": "2021-05-04T15:33:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00513dcb-cc26-411a-97e8-09d7bb406a71", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T15:41:28.000Z" + }, + "end": { + "$date": "2021-05-04T16:09:10.000Z" + }, + "events": [ + { + "uuid": "812c4a71-930c-4dfd-bd03-dc792338116b", + "start": { + "$date": "2021-05-04T15:41:28.000Z" + }, + "end": { + "$date": "2021-05-04T16:09:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b731ac53-497f-44fa-987b-f99dddb8b804", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T16:10:21.000Z" + }, + "end": { + "$date": "2021-05-04T16:45:06.000Z" + }, + "events": [ + { + "uuid": "bedc57ac-cf76-4d43-ad12-e507a12bd755", + "start": { + "$date": "2021-05-04T16:10:21.000Z" + }, + "end": { + "$date": "2021-05-04T16:45:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c014e8d6-170f-4344-a922-6836c67d07c8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T16:39:43.000Z" + }, + "end": { + "$date": "2021-05-04T16:44:41.000Z" + }, + "events": [ + { + "uuid": "683011cb-96ea-4dcb-b7b3-7dad65378cdd", + "start": { + "$date": "2021-05-04T16:39:43.000Z" + }, + "end": { + "$date": "2021-05-04T16:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62dbeaa0-ce5a-4bb5-913a-2eb43dbe9dd2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-04T16:51:22.000Z" + }, + "end": { + "$date": "2021-05-04T17:09:59.000Z" + }, + "events": [ + { + "uuid": "019308ca-6670-4d4d-9ad3-c80331c838ca", + "start": { + "$date": "2021-05-04T16:51:22.000Z" + }, + "end": { + "$date": "2021-05-04T17:09:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d068d8c9-89bf-49e9-b0e1-7f180b1bec4c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T16:49:44.000Z" + }, + "end": { + "$date": "2021-05-04T17:11:00.000Z" + }, + "events": [ + { + "uuid": "71b49318-818d-4510-bc65-58b79b5de4bb", + "start": { + "$date": "2021-05-04T16:49:44.000Z" + }, + "end": { + "$date": "2021-05-04T17:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "016eaeb9-54e9-4144-bd2f-bb5e4031cfb1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T17:28:55.000Z" + }, + "end": { + "$date": "2021-05-04T18:03:22.000Z" + }, + "events": [ + { + "uuid": "4a6d8208-5905-4c11-92e6-10a7af71a4bb", + "start": { + "$date": "2021-05-04T17:28:55.000Z" + }, + "end": { + "$date": "2021-05-04T18:03:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "465e0e91-1fe5-46a8-adf6-79cde6101626", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T18:07:59.000Z" + }, + "end": { + "$date": "2021-05-04T18:42:07.000Z" + }, + "events": [ + { + "uuid": "adc348ba-2935-4743-86f3-f141a1b9b64f", + "start": { + "$date": "2021-05-04T18:07:59.000Z" + }, + "end": { + "$date": "2021-05-04T18:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "dcc8bc83-92c3-4652-afe8-eecc9da512a3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-05T05:46:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:35:02.000Z" + }, + "events": [ + { + "uuid": "7124e5f2-26dd-43f7-945b-d4ca93fa62b6", + "start": { + "$date": "2021-05-05T05:46:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:10:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fade1c16-a421-459f-be4f-5f4c22626d63", + "start": { + "$date": "2021-05-05T06:10:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:20:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3644a27e-c217-4084-b210-e72acd9cd3fd", + "start": { + "$date": "2021-05-05T06:20:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:29:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af0579b1-8724-4c90-acd3-5ac743104a9d", + "start": { + "$date": "2021-05-05T06:29:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:45:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8dbf54a-b09f-4bfe-bc9d-bba07187b102", + "start": { + "$date": "2021-05-05T06:45:46.000Z" + }, + "end": { + "$date": "2021-05-05T08:13:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "53e32c02-0d9b-4de2-9ed2-a466a21ea369", + "start": { + "$date": "2021-05-05T08:13:46.000Z" + }, + "end": { + "$date": "2021-05-05T08:16:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc05236a-35aa-4d50-9712-945a747fb07d", + "start": { + "$date": "2021-05-05T08:16:46.000Z" + }, + "end": { + "$date": "2021-05-05T08:17:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2940de1-f5e9-425e-9354-42715ea2eb8a", + "start": { + "$date": "2021-05-05T08:17:46.000Z" + }, + "end": { + "$date": "2021-05-05T09:07:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96b6a19a-d8ce-4641-8acd-bff683b5691a", + "start": { + "$date": "2021-05-05T09:07:46.000Z" + }, + "end": { + "$date": "2021-05-05T09:09:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3e6fc660-0bdf-4040-8d9c-d3c88196d009", + "start": { + "$date": "2021-05-05T09:09:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:11:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf747715-40c6-4edc-99f4-3b7824254139", + "start": { + "$date": "2021-05-05T10:11:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:14:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "23219cb1-43d9-4f75-8fc9-6921590eab5b", + "start": { + "$date": "2021-05-05T10:14:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:20:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "95b93012-2688-4273-9dc7-f9bde4efd9d3", + "start": { + "$date": "2021-05-05T10:20:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:23:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "260363e0-fe1f-47d7-884f-eac38261e48c", + "start": { + "$date": "2021-05-05T10:23:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:32:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "da7fb411-2818-442e-8524-02baa5665232", + "start": { + "$date": "2021-05-05T10:32:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:34:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f8b71626-5af4-43bd-975a-43c2063f2a03", + "start": { + "$date": "2021-05-05T10:34:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:50:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a74272c2-079d-48ee-8a8e-61912e4afaf1", + "start": { + "$date": "2021-05-05T10:50:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:53:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7030c651-d10c-477f-afe0-c6628d4f1981", + "start": { + "$date": "2021-05-05T10:53:46.000Z" + }, + "end": { + "$date": "2021-05-05T10:56:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7eca9ad-9ab5-48f8-a906-335fc3d025bc", + "start": { + "$date": "2021-05-05T10:56:46.000Z" + }, + "end": { + "$date": "2021-05-05T11:32:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "386b62a0-4a90-4c1b-b266-6ff494210921", + "start": { + "$date": "2021-05-05T11:32:46.000Z" + }, + "end": { + "$date": "2021-05-05T11:36:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "defe0729-671a-469b-bb4e-c8685f567e09", + "start": { + "$date": "2021-05-05T11:36:46.000Z" + }, + "end": { + "$date": "2021-05-05T11:37:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e11d037-9603-4b1e-91ad-e44d8d7ec383", + "start": { + "$date": "2021-05-05T11:37:46.000Z" + }, + "end": { + "$date": "2021-05-05T11:41:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a70e208a-f433-40d2-bb93-0ed0a732f88b", + "start": { + "$date": "2021-05-05T11:41:46.000Z" + }, + "end": { + "$date": "2021-05-05T11:43:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b1433fe-6050-4a3f-bc00-bf1edcd1b722", + "start": { + "$date": "2021-05-05T11:43:46.000Z" + }, + "end": { + "$date": "2021-05-05T12:10:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96b376dd-dd47-453f-89b1-7fa4280ba088", + "start": { + "$date": "2021-05-05T12:10:46.000Z" + }, + "end": { + "$date": "2021-05-05T13:30:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29e0950b-0769-45cc-8a19-99164750d3eb", + "start": { + "$date": "2021-05-05T13:30:46.000Z" + }, + "end": { + "$date": "2021-05-05T13:32:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a207b6c-8ba9-4590-9c68-e4bbf642ceab", + "start": { + "$date": "2021-05-05T13:32:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d3e0f5b5-ee7d-41d9-920e-74f6678a17d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T18:42:28.000Z" + }, + "end": { + "$date": "2021-05-04T19:48:19.000Z" + }, + "events": [ + { + "uuid": "a79a42f6-adc4-462f-bd93-ca37bfc539f7", + "start": { + "$date": "2021-05-04T18:42:28.000Z" + }, + "end": { + "$date": "2021-05-04T18:53:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb445c6d-1878-4293-90ed-7e06dcdb9c63", + "start": { + "$date": "2021-05-04T18:53:28.000Z" + }, + "end": { + "$date": "2021-05-04T19:00:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96e06d10-011b-4ea3-94cf-b8fb08233576", + "start": { + "$date": "2021-05-04T19:00:28.000Z" + }, + "end": { + "$date": "2021-05-04T19:48:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7c78c068-bec7-46bf-b241-ab09071f95b2", + "uuid": "4fdfb183-9330-47b0-919f-a280507aaa68", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-04T19:31:50.000Z" + }, + "end": { + "$date": "2021-05-04T20:06:18.000Z" + }, + "events": [ + { + "uuid": "7cfb5c6b-41aa-4c2f-9f35-5977e50409cb", + "start": { + "$date": "2021-05-04T19:31:50.000Z" + }, + "end": { + "$date": "2021-05-04T20:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e006cd2-dd05-4df4-80fa-df601d59273a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T19:49:15.000Z" + }, + "end": { + "$date": "2021-05-04T20:16:07.000Z" + }, + "events": [ + { + "uuid": "fbbbc8a8-a32e-468c-aaa6-fc30b18cb5f1", + "start": { + "$date": "2021-05-04T19:49:15.000Z" + }, + "end": { + "$date": "2021-05-04T20:16:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96d5fa96-debc-4a70-819e-438946b7af6f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-04T20:37:04.000Z" + }, + "end": { + "$date": "2021-05-04T20:56:04.000Z" + }, + "events": [ + { + "uuid": "47b82567-55a5-49ad-af8b-308db33d57fc", + "start": { + "$date": "2021-05-04T20:37:04.000Z" + }, + "end": { + "$date": "2021-05-04T20:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c56528a0-04d3-4ab3-8844-3f8f123b029c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T00:38:28.000Z" + }, + "end": { + "$date": "2021-05-05T02:28:44.000Z" + }, + "events": [ + { + "uuid": "f8da7c27-8168-448a-81bd-7d20a8337263", + "start": { + "$date": "2021-05-05T00:38:28.000Z" + }, + "end": { + "$date": "2021-05-05T01:03:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f93e3ccb-9241-4d98-98ce-3b9cd8602c64", + "start": { + "$date": "2021-05-05T01:03:28.000Z" + }, + "end": { + "$date": "2021-05-05T01:33:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6138f8ec-4f71-4a22-a4fd-b180134d400e", + "start": { + "$date": "2021-05-05T01:33:28.000Z" + }, + "end": { + "$date": "2021-05-05T03:06:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01a6666f-5836-4d95-b336-4cfc0ba76b4c", + "start": { + "$date": "2021-05-05T03:06:28.000Z" + }, + "end": { + "$date": "2021-05-05T03:33:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4fbd1e9e-1f17-42ba-a9d6-396b1496ddab", + "start": { + "$date": "2021-05-05T03:33:28.000Z" + }, + "end": { + "$date": "2021-05-05T02:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7beb8bb7-05c4-4e04-b71c-53b420cbf113", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-04T21:17:45.000Z" + }, + "end": { + "$date": "2021-05-04T21:19:49.000Z" + }, + "events": [ + { + "uuid": "44b1c9fd-a380-4639-8fb4-e92b73365ef4", + "start": { + "$date": "2021-05-04T21:17:45.000Z" + }, + "end": { + "$date": "2021-05-04T21:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b8ad24d9-80a4-4c07-9dc8-bfd9799177cd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-04T21:17:57.000Z" + }, + "end": { + "$date": "2021-05-04T21:45:18.000Z" + }, + "events": [ + { + "uuid": "a88f9c4a-fab3-4e7b-8caa-fe0c95217af6", + "start": { + "$date": "2021-05-04T21:17:57.000Z" + }, + "end": { + "$date": "2021-05-04T21:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b739de7b-4b36-4be3-a116-ec24d521b6cb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-04T22:22:15.000Z" + }, + "end": { + "$date": "2021-05-04T22:45:35.000Z" + }, + "events": [ + { + "uuid": "d67ce76e-1ccd-43df-bf64-56306ff0c8c1", + "start": { + "$date": "2021-05-04T22:22:15.000Z" + }, + "end": { + "$date": "2021-05-04T22:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "88c9e234-71d7-4a24-96ce-a7604958efae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-04T23:03:23.000Z" + }, + "end": { + "$date": "2021-05-04T23:27:54.000Z" + }, + "events": [ + { + "uuid": "066092ef-6552-4f17-98e1-f53dd28fb2ee", + "start": { + "$date": "2021-05-04T23:03:23.000Z" + }, + "end": { + "$date": "2021-05-04T23:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e238306-289f-42ae-9e8e-635477b7d863", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T00:00:22.000Z" + }, + "end": { + "$date": "2021-05-05T00:26:58.000Z" + }, + "events": [ + { + "uuid": "b273814b-60aa-46d8-a637-e48d09354b77", + "start": { + "$date": "2021-05-05T00:00:22.000Z" + }, + "end": { + "$date": "2021-05-05T00:26:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "43fc0d91-783b-4a0b-8fc9-3a76797dfe41", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-05T00:26:22.000Z" + }, + "end": { + "$date": "2021-05-05T00:37:07.000Z" + }, + "events": [ + { + "uuid": "738b8de1-aecb-40bc-9ea7-008ffc9c38ea", + "start": { + "$date": "2021-05-05T00:26:22.000Z" + }, + "end": { + "$date": "2021-05-05T00:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45aae78e-4c2f-44cc-a51d-3af5912dd566", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T00:32:19.000Z" + }, + "end": { + "$date": "2021-05-05T00:52:33.000Z" + }, + "events": [ + { + "uuid": "316b3ac8-3d71-416d-b07a-36d500af2a07", + "start": { + "$date": "2021-05-05T00:32:19.000Z" + }, + "end": { + "$date": "2021-05-05T00:52:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1653b98a-989d-4245-a2ce-8b9abdaf41c7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T00:53:29.000Z" + }, + "end": { + "$date": "2021-05-05T01:21:12.000Z" + }, + "events": [ + { + "uuid": "b9bd7d8f-7e5a-4204-809a-583ed79547a7", + "start": { + "$date": "2021-05-05T00:53:29.000Z" + }, + "end": { + "$date": "2021-05-05T01:21:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "46d18d3c-b8ba-4c13-9570-6a8eee3b98d9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-05T00:52:59.000Z" + }, + "end": { + "$date": "2021-05-05T04:07:24.000Z" + }, + "events": [ + { + "uuid": "49ce6dc7-516a-4f32-a1e7-8eff64ee4ece", + "start": { + "$date": "2021-05-05T00:52:59.000Z" + }, + "end": { + "$date": "2021-05-05T04:07:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c0e9c5b-d845-44a7-b05f-9ec5603f9bcb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T01:26:56.000Z" + }, + "end": { + "$date": "2021-05-05T01:52:37.000Z" + }, + "events": [ + { + "uuid": "d09d2687-6095-4aa6-8842-26e7d513e42a", + "start": { + "$date": "2021-05-05T01:26:56.000Z" + }, + "end": { + "$date": "2021-05-05T01:52:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c86ad08-7710-4b3f-99a7-0bc8f4605699", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T01:35:20.000Z" + }, + "end": { + "$date": "2021-05-05T01:40:15.000Z" + }, + "events": [ + { + "uuid": "2b78d58a-cfb3-4afd-a87b-f8a78b0532c7", + "start": { + "$date": "2021-05-05T01:35:20.000Z" + }, + "end": { + "$date": "2021-05-05T01:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5db29724-57a2-4af1-900f-126e15748fa9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T01:55:11.000Z" + }, + "end": { + "$date": "2021-05-05T02:16:21.000Z" + }, + "events": [ + { + "uuid": "e9e72203-baf2-4a2c-9d27-08beac81d849", + "start": { + "$date": "2021-05-05T01:55:11.000Z" + }, + "end": { + "$date": "2021-05-05T02:16:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13629c8a-44a9-4565-90fc-ed18a910d3be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T01:59:27.000Z" + }, + "end": { + "$date": "2021-05-05T02:33:18.000Z" + }, + "events": [ + { + "uuid": "b4c60740-b19a-4110-aa90-9fc367c957cc", + "start": { + "$date": "2021-05-05T01:59:27.000Z" + }, + "end": { + "$date": "2021-05-05T02:33:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e2a95b8-7b03-4f58-8f23-dee1ed4d1b03", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T02:39:14.000Z" + }, + "end": { + "$date": "2021-05-05T03:19:15.000Z" + }, + "events": [ + { + "uuid": "87a79d9a-4124-49a6-8eaa-84d162a5e105", + "start": { + "$date": "2021-05-05T02:39:14.000Z" + }, + "end": { + "$date": "2021-05-05T03:19:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d831da56-9363-4bd0-93ed-446642145474", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T02:31:20.000Z" + }, + "end": { + "$date": "2021-05-05T03:08:27.000Z" + }, + "events": [ + { + "uuid": "64cfe60d-08d7-4424-a10b-04cd86354dd4", + "start": { + "$date": "2021-05-05T02:31:20.000Z" + }, + "end": { + "$date": "2021-05-05T03:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08acac8d-dec6-4fc3-b658-8629d760558a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T02:38:42.000Z" + }, + "end": { + "$date": "2021-05-05T03:19:16.000Z" + }, + "events": [ + { + "uuid": "fcd0cdcf-f4ed-4b91-96d0-2e6e6c72848f", + "start": { + "$date": "2021-05-05T02:38:42.000Z" + }, + "end": { + "$date": "2021-05-05T03:19:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fbf27c24-cc3c-4891-927d-7aff185c09db", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T03:08:58.000Z" + }, + "end": { + "$date": "2021-05-05T03:21:53.000Z" + }, + "events": [ + { + "uuid": "54c96e5f-87dd-4a64-b29e-49e8e3fbf47e", + "start": { + "$date": "2021-05-05T03:08:58.000Z" + }, + "end": { + "$date": "2021-05-05T03:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "be604c08-e909-44b3-8f34-4090cb3035aa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-05T03:16:06.000Z" + }, + "end": { + "$date": "2021-05-05T06:04:23.000Z" + }, + "events": [ + { + "uuid": "48df7a1e-dcb7-4cdc-a44a-e75d919cd6ef", + "start": { + "$date": "2021-05-05T03:16:06.000Z" + }, + "end": { + "$date": "2021-05-05T06:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5bfbdaa-0571-43db-9e1a-8f3ee54390a7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T03:24:35.000Z" + }, + "end": { + "$date": "2021-05-05T03:50:46.000Z" + }, + "events": [ + { + "uuid": "875888d5-d819-47b6-bbf0-0e1f95c5d4d4", + "start": { + "$date": "2021-05-05T03:24:35.000Z" + }, + "end": { + "$date": "2021-05-05T03:50:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74fff108-4af7-45d7-a322-dfc7060e4983", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T03:23:59.000Z" + }, + "end": { + "$date": "2021-05-05T03:50:54.000Z" + }, + "events": [ + { + "uuid": "1b513cc6-501f-45f7-81c7-11f04770c1d4", + "start": { + "$date": "2021-05-05T03:23:59.000Z" + }, + "end": { + "$date": "2021-05-05T03:50:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "acf0ec58-a964-4760-a46e-12518bae4e12", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-05T03:22:19.000Z" + }, + "end": { + "$date": "2021-05-05T06:04:19.000Z" + }, + "events": [ + { + "uuid": "8e1b6124-72df-4981-a1da-d22cd3ddf373", + "start": { + "$date": "2021-05-05T03:22:19.000Z" + }, + "end": { + "$date": "2021-05-05T06:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c71a7d82-c1c5-477d-a08f-8785d155c3e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T03:33:47.000Z" + }, + "end": { + "$date": "2021-05-05T04:09:59.000Z" + }, + "events": [ + { + "uuid": "116ad11a-cd13-4df4-97b5-6d30cd5e9917", + "start": { + "$date": "2021-05-05T03:33:47.000Z" + }, + "end": { + "$date": "2021-05-05T04:09:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f918efb-fcf7-4723-977d-fcd16bfbb787", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T04:01:56.000Z" + }, + "end": { + "$date": "2021-05-05T04:45:33.000Z" + }, + "events": [ + { + "uuid": "39ebdee7-12d2-4b67-be37-1e8caf99c289", + "start": { + "$date": "2021-05-05T04:01:56.000Z" + }, + "end": { + "$date": "2021-05-05T04:45:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74159029-1864-4a2e-9bf4-6d01b354f1ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T04:01:47.000Z" + }, + "end": { + "$date": "2021-05-05T04:45:28.000Z" + }, + "events": [ + { + "uuid": "665009f0-3df2-4ca0-bb92-076bf2858561", + "start": { + "$date": "2021-05-05T04:01:47.000Z" + }, + "end": { + "$date": "2021-05-05T04:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "65b649fa-398f-4e2b-a93a-ef70cb65abd4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T04:16:16.000Z" + }, + "end": { + "$date": "2021-05-05T04:46:14.000Z" + }, + "events": [ + { + "uuid": "07031090-ab20-4033-8780-5a2e6d23e5c2", + "start": { + "$date": "2021-05-05T04:16:16.000Z" + }, + "end": { + "$date": "2021-05-05T04:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fd58fb65-bff7-4253-8030-ae9b8c108004", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-05T04:26:20.000Z" + }, + "end": { + "$date": "2021-05-05T05:56:53.000Z" + }, + "events": [ + { + "uuid": "e1bf6ea9-dbb6-4c65-878f-d7c1fa5ac004", + "start": { + "$date": "2021-05-05T04:26:20.000Z" + }, + "end": { + "$date": "2021-05-05T05:56:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b8f975b2-b64a-459d-af35-0bea8e45c942", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T22:01:52.000Z" + }, + "end": { + "$date": "2021-05-05T22:05:52.000Z" + }, + "events": [ + { + "uuid": "a4dbeb24-d7b3-4106-aa11-5a344bf4fcc7", + "start": { + "$date": "2021-05-05T22:01:52.000Z" + }, + "end": { + "$date": "2021-05-05T22:12:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "454e4a82-8e7e-452e-87c1-3a4ebf4ea2b6", + "start": { + "$date": "2021-05-05T22:12:52.000Z" + }, + "end": { + "$date": "2021-05-05T22:19:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20f4ccbe-bc12-4a8a-b539-f393840303f2", + "start": { + "$date": "2021-05-05T22:19:52.000Z" + }, + "end": { + "$date": "2021-05-05T22:21:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "afcb438c-f65e-49bf-b0e9-758c6f72b9af", + "start": { + "$date": "2021-05-05T22:21:52.000Z" + }, + "end": { + "$date": "2021-05-06T08:37:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "813b4042-4833-4eb9-b8ec-00862129bb5f", + "start": { + "$date": "2021-05-06T08:37:52.000Z" + }, + "end": { + "$date": "2021-05-06T08:41:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "649acf97-2679-4f0c-b8a8-cf66f5a7c4c3", + "start": { + "$date": "2021-05-06T08:41:52.000Z" + }, + "end": { + "$date": "2021-05-06T08:59:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f67c934e-ac81-407d-8beb-360ff8497a93", + "start": { + "$date": "2021-05-06T08:59:52.000Z" + }, + "end": { + "$date": "2021-05-06T09:23:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "333335f7-2a56-4c3c-8257-9f52cd0eb00a", + "start": { + "$date": "2021-05-06T09:23:52.000Z" + }, + "end": { + "$date": "2021-05-06T09:27:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "24085c68-6ef4-4465-a74d-1c2a012a0ded", + "start": { + "$date": "2021-05-06T09:27:52.000Z" + }, + "end": { + "$date": "2021-05-06T10:09:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e956cdb2-5a25-45cf-8d4a-2049faf6db10", + "start": { + "$date": "2021-05-06T10:09:52.000Z" + }, + "end": { + "$date": "2021-05-06T10:26:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18f01cc9-4fc8-4fd2-9c36-e527b96ed5b9", + "start": { + "$date": "2021-05-06T10:26:52.000Z" + }, + "end": { + "$date": "2021-05-06T10:36:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f3cf213-8303-438c-a81f-83f58e86e93c", + "start": { + "$date": "2021-05-06T10:36:52.000Z" + }, + "end": { + "$date": "2021-05-06T10:37:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e3188bc-a2cb-49cd-b348-a1a9ef7a8b0a", + "start": { + "$date": "2021-05-06T10:37:52.000Z" + }, + "end": { + "$date": "2021-05-06T13:17:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97fee802-0213-407f-be79-e731a56af933", + "start": { + "$date": "2021-05-06T13:17:52.000Z" + }, + "end": { + "$date": "2021-05-06T14:34:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "892197c8-dc96-49d3-ac1b-7299d3a6b3a5", + "start": { + "$date": "2021-05-06T14:34:52.000Z" + }, + "end": { + "$date": "2021-05-05T22:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ffc93c13-7440-482d-a324-24c067a0a743", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-05T04:48:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:28:20.000Z" + }, + "events": [ + { + "uuid": "c5170aa6-9c8a-484d-88a8-f573633758a6", + "start": { + "$date": "2021-05-05T04:48:46.000Z" + }, + "end": { + "$date": "2021-05-05T06:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1a801ba-22f3-4340-8f3a-da3632a06e6b", + "uuid": "4e1f98db-9630-473b-8f74-6bf3ca956f12", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-05T05:02:16.000Z" + }, + "end": { + "$date": "2021-05-05T05:15:02.000Z" + }, + "events": [ + { + "uuid": "16fbd790-1253-4790-99fd-c010ff677a4a", + "start": { + "$date": "2021-05-05T05:02:16.000Z" + }, + "end": { + "$date": "2021-05-05T05:15:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4bb5a31e-1be5-43b9-bb37-da52fc48a07f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-05T05:07:43.000Z" + }, + "end": { + "$date": "2021-05-05T05:12:10.000Z" + }, + "events": [ + { + "uuid": "23933e25-4dee-4ae1-98dc-a2330e690f6b", + "start": { + "$date": "2021-05-05T05:07:43.000Z" + }, + "end": { + "$date": "2021-05-05T05:12:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b84899c-b2a8-4cdf-8e77-63e8d63f57f9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-05T05:21:33.000Z" + }, + "end": { + "$date": "2021-05-05T05:54:24.000Z" + }, + "events": [ + { + "uuid": "cd0b073e-cad4-4fdb-a791-6c55b4ad26e0", + "start": { + "$date": "2021-05-05T05:21:33.000Z" + }, + "end": { + "$date": "2021-05-05T05:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16ae7080-cbdb-4d8b-9a42-c0b0650c68d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T05:41:32.000Z" + }, + "end": { + "$date": "2021-05-05T06:20:06.000Z" + }, + "events": [ + { + "uuid": "c2f17c4a-37c4-4aab-b766-1f803699a78c", + "start": { + "$date": "2021-05-05T05:41:32.000Z" + }, + "end": { + "$date": "2021-05-05T06:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e77e14f6-ec52-44c4-9742-0da4d80601bb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T06:27:16.000Z" + }, + "end": { + "$date": "2021-05-05T06:50:03.000Z" + }, + "events": [ + { + "uuid": "0dd1cceb-4612-4bd6-b81b-6cd76682396a", + "start": { + "$date": "2021-05-05T06:27:16.000Z" + }, + "end": { + "$date": "2021-05-05T06:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8da6cf46-ef5f-4ea1-bcaf-ea4a95fd090b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T07:44:28.000Z" + }, + "end": { + "$date": "2021-05-05T08:08:54.000Z" + }, + "events": [ + { + "uuid": "36b57e32-c4f0-478e-87e9-2574bac28bf5", + "start": { + "$date": "2021-05-05T07:44:28.000Z" + }, + "end": { + "$date": "2021-05-05T08:08:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f023264-7e7d-49d9-aada-aecf548b2042", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T08:13:51.000Z" + }, + "end": { + "$date": "2021-05-05T08:43:32.000Z" + }, + "events": [ + { + "uuid": "13da5f8c-a492-463a-bf75-2d9a19415f7f", + "start": { + "$date": "2021-05-05T08:13:51.000Z" + }, + "end": { + "$date": "2021-05-05T08:43:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86649c7c-7d5c-4b5e-8420-b847e8ba3f1b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T08:48:34.000Z" + }, + "end": { + "$date": "2021-05-05T09:21:37.000Z" + }, + "events": [ + { + "uuid": "1e3071d4-ac94-4b0e-a843-22b22302fd32", + "start": { + "$date": "2021-05-05T08:48:34.000Z" + }, + "end": { + "$date": "2021-05-05T09:21:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bee70228-bc46-43e8-9ff5-c3051f399185", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T11:00:41.000Z" + }, + "end": { + "$date": "2021-05-05T11:48:05.000Z" + }, + "events": [ + { + "uuid": "11167d9c-1e98-474a-b67f-b20fb0e22538", + "start": { + "$date": "2021-05-05T11:00:41.000Z" + }, + "end": { + "$date": "2021-05-05T11:48:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "04c581a7-abd9-4a60-a918-4e33d6ec59f9", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-05T20:02:57.000Z" + }, + "end": { + "$date": "2021-05-06T02:10:20.000Z" + }, + "events": [ + { + "uuid": "56be7b43-b704-48a3-9dd4-ca2ede504a35", + "start": { + "$date": "2021-05-05T20:02:57.000Z" + }, + "end": { + "$date": "2021-05-06T02:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "671b57c9-6966-498f-9851-06d1313ebba1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-05T20:17:43.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:47.000Z" + }, + "events": [ + { + "uuid": "09b5def6-bd9b-42be-b382-5c3d282c1353", + "start": { + "$date": "2021-05-05T20:17:43.000Z" + }, + "end": { + "$date": "2021-05-05T20:26:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95a9fb1d-7200-4f29-9b4a-8813c933aa73", + "start": { + "$date": "2021-05-05T20:26:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:18:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97284a38-7797-483d-9655-51d308423c85", + "start": { + "$date": "2021-05-05T21:18:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:25:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c43f18be-1da1-4e30-8f8e-86220072dfd4", + "start": { + "$date": "2021-05-05T21:25:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:32:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f7ddf5f-7b9e-4226-82d5-3dfcfdcfc102", + "start": { + "$date": "2021-05-05T21:32:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:36:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f75cb27-26f2-40bb-8250-b3229f969102", + "start": { + "$date": "2021-05-05T21:36:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:37:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b38078d-0934-4c86-95c8-2b93a502913e", + "start": { + "$date": "2021-05-05T21:37:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:39:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "776683e4-a474-4211-9465-782a86153996", + "start": { + "$date": "2021-05-05T21:39:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:53:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61857853-5bd7-4fba-99a0-5906fd04cd66", + "start": { + "$date": "2021-05-05T21:53:43.000Z" + }, + "end": { + "$date": "2021-05-05T21:55:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b886d0fd-a3ab-43a3-993f-0ee725c8b7bd", + "start": { + "$date": "2021-05-05T21:55:43.000Z" + }, + "end": { + "$date": "2021-05-05T22:00:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9528b9f7-de55-427e-9e68-3873ab5a9537", + "start": { + "$date": "2021-05-05T22:00:43.000Z" + }, + "end": { + "$date": "2021-05-05T22:02:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "433328a6-ea78-4911-9023-df5b152dc8f0", + "start": { + "$date": "2021-05-05T22:02:43.000Z" + }, + "end": { + "$date": "2021-05-05T22:05:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41aec64c-454b-4aee-adf8-35bfc803a2ba", + "start": { + "$date": "2021-05-05T22:05:43.000Z" + }, + "end": { + "$date": "2021-05-05T23:21:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "956efcad-ef8a-49c2-9226-ec08f03979be", + "start": { + "$date": "2021-05-05T23:21:43.000Z" + }, + "end": { + "$date": "2021-05-05T23:29:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c65812c3-34ef-492d-b8d1-b67ae6394d02", + "start": { + "$date": "2021-05-05T23:29:43.000Z" + }, + "end": { + "$date": "2021-05-05T23:33:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74fb2ea8-fef8-4630-9283-c963cc821577", + "start": { + "$date": "2021-05-05T23:33:43.000Z" + }, + "end": { + "$date": "2021-05-05T23:55:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7cb78fc1-96b2-4d95-9733-df2b64676e29", + "start": { + "$date": "2021-05-05T23:55:43.000Z" + }, + "end": { + "$date": "2021-05-06T00:00:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6672639-aa28-423a-9b53-f309c15f3085", + "start": { + "$date": "2021-05-06T00:00:43.000Z" + }, + "end": { + "$date": "2021-05-06T00:40:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6601b5b0-c138-496b-bb6d-79912109f432", + "start": { + "$date": "2021-05-06T00:40:43.000Z" + }, + "end": { + "$date": "2021-05-06T00:42:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c014845e-7b85-4781-b156-486d18a5a9d2", + "start": { + "$date": "2021-05-06T00:42:43.000Z" + }, + "end": { + "$date": "2021-05-06T00:43:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5719be4e-4977-4ad3-8e5b-3a2f5d2549fc", + "start": { + "$date": "2021-05-06T00:43:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:04:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "600391f6-326a-4eba-bfe7-72e162ee3690", + "start": { + "$date": "2021-05-06T01:04:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:11:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "77364340-36b6-443e-b74d-61a6f5d07abd", + "start": { + "$date": "2021-05-06T01:11:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:13:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f9a43e5-9e0e-42d4-8269-b53a96081fa2", + "start": { + "$date": "2021-05-06T01:13:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:34:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eec6c9f6-e77d-4e7f-b22c-10636292043b", + "start": { + "$date": "2021-05-06T01:34:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:36:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a62b772-920b-41ca-af3e-877af79e6f7a", + "start": { + "$date": "2021-05-06T01:36:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:12:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "485a837d-5efc-4fcf-8c6b-47a427f5cb75", + "start": { + "$date": "2021-05-06T02:12:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:14:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dbab4e01-61fc-411b-a2e6-4181658c2442", + "start": { + "$date": "2021-05-06T02:14:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:20:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c1ad624-1b82-4c5a-8c37-6016bdd82099", + "start": { + "$date": "2021-05-06T02:20:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:22:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4fbe4b2a-391a-47bd-b28a-2959806c9b23", + "start": { + "$date": "2021-05-06T02:22:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:40:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b1565e1a-7446-448d-a6d1-a8d82ad52883", + "start": { + "$date": "2021-05-06T02:40:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:42:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d14a88f0-4181-4b08-9751-fdd715dc2fe5", + "start": { + "$date": "2021-05-06T02:42:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:56:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8bdbd0ea-ee24-48e2-99fa-808a17ea1939", + "start": { + "$date": "2021-05-06T02:56:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:58:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "192562db-b395-40b8-80ef-e6d0da017eb0", + "start": { + "$date": "2021-05-06T02:58:43.000Z" + }, + "end": { + "$date": "2021-05-06T02:59:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9d150639-be4d-4d30-8b43-1e1440bcbf78", + "start": { + "$date": "2021-05-06T02:59:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:02:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dbb91383-83b8-4d8d-8080-055b96f4d5fa", + "start": { + "$date": "2021-05-06T03:02:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:19:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5e1a6a1-73ce-46ab-9309-275bf958ec15", + "start": { + "$date": "2021-05-06T03:19:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:21:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "564ea372-8c59-49f6-bcd4-c685a9239b1f", + "start": { + "$date": "2021-05-06T03:21:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:22:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f824bca7-0888-4e26-a47c-679a9cb4aee4", + "start": { + "$date": "2021-05-06T03:22:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:24:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "326498bf-6c3a-4020-be0c-960643d0a5bd", + "start": { + "$date": "2021-05-06T03:24:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:25:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e6de23d0-abc3-49bf-907b-c253b17c5ca6", + "start": { + "$date": "2021-05-06T03:25:43.000Z" + }, + "end": { + "$date": "2021-05-06T03:27:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b864a129-2736-4743-a036-43ed815efb94", + "start": { + "$date": "2021-05-06T03:27:43.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1fd8e918-0f4f-41ee-8924-58843c0453cb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-05T18:41:37.000Z" + }, + "end": { + "$date": "2021-05-05T19:54:54.000Z" + }, + "events": [ + { + "uuid": "640b7103-799e-44f2-99c7-c4fa79ddb54e", + "start": { + "$date": "2021-05-05T18:41:37.000Z" + }, + "end": { + "$date": "2021-05-05T19:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3b7a227a-05ec-4b21-b0d1-e0b1f97cb606", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-05T21:01:22.000Z" + }, + "end": { + "$date": "2021-05-05T22:01:57.000Z" + }, + "events": [ + { + "uuid": "5c406caf-1721-41db-851d-e1d040ff9931", + "start": { + "$date": "2021-05-05T21:01:22.000Z" + }, + "end": { + "$date": "2021-05-05T22:01:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cb6f7ba-23c7-4562-8b69-731ebddc5dec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T21:47:42.000Z" + }, + "end": { + "$date": "2021-05-05T22:26:23.000Z" + }, + "events": [ + { + "uuid": "e454bd4d-8056-4eab-9668-f28a59aee683", + "start": { + "$date": "2021-05-05T21:47:42.000Z" + }, + "end": { + "$date": "2021-05-05T22:26:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d0a6150-2ffc-4d56-91a8-936ada4f4227", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T22:07:58.000Z" + }, + "end": { + "$date": "2021-05-05T22:37:44.000Z" + }, + "events": [ + { + "uuid": "805e91ed-c81d-410d-92ee-5c3196f97d55", + "start": { + "$date": "2021-05-05T22:07:58.000Z" + }, + "end": { + "$date": "2021-05-05T22:37:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27a8a051-b98f-4119-a143-0d6ed96d413f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T22:28:00.000Z" + }, + "end": { + "$date": "2021-05-05T22:30:53.000Z" + }, + "events": [ + { + "uuid": "651f395d-5ec8-49ce-9a99-e4f6471e8ea5", + "start": { + "$date": "2021-05-05T22:28:00.000Z" + }, + "end": { + "$date": "2021-05-05T22:30:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70213199-7dd7-4ec5-a0cd-9f4683b741d8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-05T22:44:01.000Z" + }, + "end": { + "$date": "2021-05-05T23:02:29.000Z" + }, + "events": [ + { + "uuid": "b264107c-810b-4f74-9067-0ee8aa43a206", + "start": { + "$date": "2021-05-05T22:44:01.000Z" + }, + "end": { + "$date": "2021-05-05T23:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "829ed4f0-42f0-40e8-9085-3b8d7b0b17f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T22:33:34.000Z" + }, + "end": { + "$date": "2021-05-05T22:36:12.000Z" + }, + "events": [ + { + "uuid": "1418bf27-cd52-481d-b2e6-bdf59ecd3c25", + "start": { + "$date": "2021-05-05T22:33:34.000Z" + }, + "end": { + "$date": "2021-05-05T22:36:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec254487-bc4e-48ac-ab24-717f6d90fd97", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T22:33:33.000Z" + }, + "end": { + "$date": "2021-05-05T22:36:16.000Z" + }, + "events": [ + { + "uuid": "327e646b-3aae-4561-b7e8-477c039dda22", + "start": { + "$date": "2021-05-05T22:33:33.000Z" + }, + "end": { + "$date": "2021-05-05T22:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a43be9a9-4b21-4bf3-a43e-1be63e21445c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T22:36:19.000Z" + }, + "end": { + "$date": "2021-05-05T22:40:23.000Z" + }, + "events": [ + { + "uuid": "5da8c607-447c-4898-af05-01acb5761409", + "start": { + "$date": "2021-05-05T22:36:19.000Z" + }, + "end": { + "$date": "2021-05-05T22:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "058cdc8d-2b9c-44a3-9047-0184a3ef3b3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T22:36:19.000Z" + }, + "end": { + "$date": "2021-05-05T22:40:22.000Z" + }, + "events": [ + { + "uuid": "329d6f46-25df-4878-b24c-9ecb0289aee5", + "start": { + "$date": "2021-05-05T22:36:19.000Z" + }, + "end": { + "$date": "2021-05-05T22:40:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1d4cb58e-066a-4725-aaa2-415ec2b2d0bd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-05T22:38:50.000Z" + }, + "end": { + "$date": "2021-05-06T00:42:03.000Z" + }, + "events": [ + { + "uuid": "56ce0788-9d25-4024-88bf-bb33405ebac3", + "start": { + "$date": "2021-05-05T22:38:50.000Z" + }, + "end": { + "$date": "2021-05-06T00:04:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "540f1335-b716-4f26-a127-99ad17814fb2", + "start": { + "$date": "2021-05-06T00:04:50.000Z" + }, + "end": { + "$date": "2021-05-06T00:39:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "405d2f39-3dbd-4c31-88fb-4015c264ab96", + "start": { + "$date": "2021-05-06T00:39:50.000Z" + }, + "end": { + "$date": "2021-05-06T00:42:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1bfd82e-2406-4a98-9f78-9b47e3e80c5a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T22:43:57.000Z" + }, + "end": { + "$date": "2021-05-05T23:02:27.000Z" + }, + "events": [ + { + "uuid": "a1982cba-04fe-40fa-ae36-8acdc443be18", + "start": { + "$date": "2021-05-05T22:43:57.000Z" + }, + "end": { + "$date": "2021-05-05T23:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d5886ff-a7df-4e42-a601-8289e85d67cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T22:44:01.000Z" + }, + "end": { + "$date": "2021-05-05T23:02:32.000Z" + }, + "events": [ + { + "uuid": "ab5ea1b9-764e-4ce8-990d-efa529a0bfce", + "start": { + "$date": "2021-05-05T22:44:01.000Z" + }, + "end": { + "$date": "2021-05-05T23:02:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0f0a56a-7ab4-43cd-83bd-1b85ca2e023b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-05T23:05:52.000Z" + }, + "end": { + "$date": "2021-05-05T23:37:10.000Z" + }, + "events": [ + { + "uuid": "1cb2fc17-1d19-4f82-bc77-f076b39f04ad", + "start": { + "$date": "2021-05-05T23:05:52.000Z" + }, + "end": { + "$date": "2021-05-05T23:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "379267f4-ab02-4529-9e75-6099de24d752", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T23:06:28.000Z" + }, + "end": { + "$date": "2021-05-05T23:37:09.000Z" + }, + "events": [ + { + "uuid": "8a23342a-7617-4dfe-a6aa-4416d51bc7c0", + "start": { + "$date": "2021-05-05T23:06:28.000Z" + }, + "end": { + "$date": "2021-05-05T23:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78cdf176-e905-42cc-9957-d0138c1d5357", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T23:05:53.000Z" + }, + "end": { + "$date": "2021-05-05T23:37:20.000Z" + }, + "events": [ + { + "uuid": "df9b4d41-7c47-4d63-8454-291cb5ce8850", + "start": { + "$date": "2021-05-05T23:05:53.000Z" + }, + "end": { + "$date": "2021-05-05T23:37:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ad4d7f73-55e2-4e53-952b-f8214b3f69dc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-05-05T23:19:56.000Z" + }, + "end": { + "$date": "2021-05-05T23:56:42.000Z" + }, + "events": [ + { + "uuid": "55e7ed81-8945-4d47-8dfc-74182879fc6f", + "start": { + "$date": "2021-05-05T23:19:56.000Z" + }, + "end": { + "$date": "2021-05-05T23:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cd87db9-fb17-4d60-b085-2c957a965aaf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-05T23:39:22.000Z" + }, + "end": { + "$date": "2021-05-05T23:58:10.000Z" + }, + "events": [ + { + "uuid": "86cd0be2-a57f-4445-9fff-81bde69fb0a2", + "start": { + "$date": "2021-05-05T23:39:22.000Z" + }, + "end": { + "$date": "2021-05-05T23:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed8330f3-f3cc-4e53-93ea-c9e5efb10d9f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-05T23:41:50.000Z" + }, + "end": { + "$date": "2021-05-05T23:58:15.000Z" + }, + "events": [ + { + "uuid": "33efb0a0-2fa0-4ef6-8122-bc85676b3037", + "start": { + "$date": "2021-05-05T23:41:50.000Z" + }, + "end": { + "$date": "2021-05-05T23:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "735856cf-9ddb-431c-94c3-78c77ccb0bca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-05T23:39:19.000Z" + }, + "end": { + "$date": "2021-05-05T23:58:19.000Z" + }, + "events": [ + { + "uuid": "ec5bfde2-a071-49c8-9be1-6e1b46d0e9c9", + "start": { + "$date": "2021-05-05T23:39:19.000Z" + }, + "end": { + "$date": "2021-05-05T23:58:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ed718def-868f-40fb-9c12-c0addb3a3dd6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-05-05T23:57:41.000Z" + }, + "end": { + "$date": "2021-05-06T00:15:34.000Z" + }, + "events": [ + { + "uuid": "b6ef554f-92e7-4b31-8498-6521acc8f1f4", + "start": { + "$date": "2021-05-05T23:57:41.000Z" + }, + "end": { + "$date": "2021-05-06T00:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4a09f20-1ae9-4a23-8144-da05c2de73c6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T00:00:58.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:21.000Z" + }, + "events": [ + { + "uuid": "235f2549-ce48-4aaf-a6a7-705f23b22b3c", + "start": { + "$date": "2021-05-06T00:00:58.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8ef7199-bf41-4d10-b2ab-8aaacc77d6b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T00:00:40.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:30.000Z" + }, + "events": [ + { + "uuid": "0dc6ec99-a7c3-471f-8344-98737fffdc18", + "start": { + "$date": "2021-05-06T00:00:40.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab566003-3f34-4c48-b552-1932f60fc637", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T00:03:01.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:24.000Z" + }, + "events": [ + { + "uuid": "521f2f50-25be-44cb-9e9c-8ce4517fc14f", + "start": { + "$date": "2021-05-06T00:03:01.000Z" + }, + "end": { + "$date": "2021-05-06T00:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f52d02a-7eae-4d3b-8c1e-a8f8836f7260", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T00:43:59.000Z" + }, + "end": { + "$date": "2021-05-06T01:18:21.000Z" + }, + "events": [ + { + "uuid": "5023326f-2bd0-478d-b511-8b92060d9b2c", + "start": { + "$date": "2021-05-06T00:43:59.000Z" + }, + "end": { + "$date": "2021-05-06T01:18:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8e2045fc-6921-4134-949c-94018984fe8a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-06T01:01:33.000Z" + }, + "end": { + "$date": "2021-05-06T03:08:01.000Z" + }, + "events": [ + { + "uuid": "597a3e33-bd15-4e74-bf14-e8dd352a09d2", + "start": { + "$date": "2021-05-06T01:01:33.000Z" + }, + "end": { + "$date": "2021-05-06T03:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9c490979-d496-488b-84e2-1b5196a42df8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-05T20:17:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:03:06.000Z" + }, + "events": [ + { + "uuid": "cc59cd1c-fc12-46db-a1aa-435a1516b461", + "start": { + "$date": "2021-05-05T20:17:43.000Z" + }, + "end": { + "$date": "2021-05-06T01:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1aca2ad7-5c12-47ea-95df-8a79ab7c7c15", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-06T01:04:11.000Z" + }, + "end": { + "$date": "2021-05-06T01:11:47.000Z" + }, + "events": [ + { + "uuid": "733633ea-bfea-467a-af40-983c81e78cef", + "start": { + "$date": "2021-05-06T01:04:11.000Z" + }, + "end": { + "$date": "2021-05-06T01:11:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "52352a9d-03a5-439b-979c-9f924dada9fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-06T01:15:47.000Z" + }, + "end": { + "$date": "2021-05-06T03:07:55.000Z" + }, + "events": [ + { + "uuid": "603f5de4-6408-432d-a0c6-d9ed9fa46ad0", + "start": { + "$date": "2021-05-06T01:15:47.000Z" + }, + "end": { + "$date": "2021-05-06T03:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5af7f620-3490-4103-aff6-b0e4cf7c5dbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T01:23:41.000Z" + }, + "end": { + "$date": "2021-05-06T01:52:00.000Z" + }, + "events": [ + { + "uuid": "bad0bce4-1640-4577-a12d-e2d2072796de", + "start": { + "$date": "2021-05-06T01:23:41.000Z" + }, + "end": { + "$date": "2021-05-06T01:52:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b62d3209-7991-4425-8e8f-f5ac01e39682", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T01:23:36.000Z" + }, + "end": { + "$date": "2021-05-06T01:51:52.000Z" + }, + "events": [ + { + "uuid": "ed98e2c2-2336-4066-9efc-6c9c70c322f5", + "start": { + "$date": "2021-05-06T01:23:36.000Z" + }, + "end": { + "$date": "2021-05-06T01:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "42815e8d-a991-4b1f-ae7e-15adb808b94f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T01:19:37.000Z" + }, + "end": { + "$date": "2021-05-06T02:44:12.000Z" + }, + "events": [ + { + "uuid": "fa4bb9a8-9f86-4935-a5dd-34576b39c413", + "start": { + "$date": "2021-05-06T01:19:37.000Z" + }, + "end": { + "$date": "2021-05-06T02:44:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2998befe-6419-4694-895a-f9c728299bf0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T02:02:59.000Z" + }, + "end": { + "$date": "2021-05-06T02:31:15.000Z" + }, + "events": [ + { + "uuid": "de497d12-42f2-4753-a634-9c0d30fe7752", + "start": { + "$date": "2021-05-06T02:02:59.000Z" + }, + "end": { + "$date": "2021-05-06T02:31:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3eb59ed5-2fce-4cde-b592-410c78c66c7a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T02:04:04.000Z" + }, + "end": { + "$date": "2021-05-06T02:31:09.000Z" + }, + "events": [ + { + "uuid": "1d2551ae-53b0-4ce7-8b25-294248282cc2", + "start": { + "$date": "2021-05-06T02:04:04.000Z" + }, + "end": { + "$date": "2021-05-06T02:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c88d4f7d-a775-45ea-95db-2327c36e38ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T02:35:36.000Z" + }, + "end": { + "$date": "2021-05-06T03:04:43.000Z" + }, + "events": [ + { + "uuid": "ddae37f5-eedc-4744-9156-3aee8f29f906", + "start": { + "$date": "2021-05-06T02:35:36.000Z" + }, + "end": { + "$date": "2021-05-06T03:04:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "766114e2-785b-4054-bf01-abd378cd2962", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T02:35:30.000Z" + }, + "end": { + "$date": "2021-05-06T03:04:36.000Z" + }, + "events": [ + { + "uuid": "fe262384-feb8-4b91-a30f-86a41080c694", + "start": { + "$date": "2021-05-06T02:35:30.000Z" + }, + "end": { + "$date": "2021-05-06T03:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c2c324b3-e4e1-4965-93b8-8587e8d011e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T03:08:00.000Z" + }, + "end": { + "$date": "2021-05-06T03:17:50.000Z" + }, + "events": [ + { + "uuid": "a1773f26-9d30-43c5-8397-bb6ad742ff00", + "start": { + "$date": "2021-05-06T03:08:00.000Z" + }, + "end": { + "$date": "2021-05-06T03:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "547ff5c6-4de4-470b-90dc-dd204ebb50f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T03:13:53.000Z" + }, + "end": { + "$date": "2021-05-06T03:50:40.000Z" + }, + "events": [ + { + "uuid": "89a771f7-7468-42bd-b939-bacea683b698", + "start": { + "$date": "2021-05-06T03:13:53.000Z" + }, + "end": { + "$date": "2021-05-06T03:50:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e41eea38-058e-4312-9703-a6d06f7d627d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T03:13:48.000Z" + }, + "end": { + "$date": "2021-05-06T03:50:29.000Z" + }, + "events": [ + { + "uuid": "ca68ea71-62d4-4825-b1e6-40ec33e34ef4", + "start": { + "$date": "2021-05-06T03:13:48.000Z" + }, + "end": { + "$date": "2021-05-06T03:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", + "uuid": "95d50c96-286f-4c81-89a2-51705bc7248c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T03:22:17.000Z" + }, + "end": { + "$date": "2021-05-06T03:32:03.000Z" + }, + "events": [ + { + "uuid": "578ac915-b929-4f30-861a-6d13760a50cf", + "start": { + "$date": "2021-05-06T03:22:17.000Z" + }, + "end": { + "$date": "2021-05-06T03:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4ff33332-a144-4fff-88d4-b46e1b60802d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-06T03:29:45.000Z" + }, + "end": { + "$date": "2021-05-06T07:32:37.000Z" + }, + "events": [ + { + "uuid": "4eabeb83-1876-45d6-9300-57f63eb54c03", + "start": { + "$date": "2021-05-06T03:29:45.000Z" + }, + "end": { + "$date": "2021-05-06T03:49:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c81c7ad5-0306-48e8-b331-a57d6e7fcbd8", + "start": { + "$date": "2021-05-06T03:49:45.000Z" + }, + "end": { + "$date": "2021-05-06T03:50:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7fc3168a-7704-4a3f-9e61-0fd279129ed6", + "start": { + "$date": "2021-05-06T03:50:45.000Z" + }, + "end": { + "$date": "2021-05-06T03:56:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd3b8332-5af0-4d02-9cf8-975fc287ff97", + "start": { + "$date": "2021-05-06T03:56:45.000Z" + }, + "end": { + "$date": "2021-05-06T04:09:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59e2b688-89c7-49a3-bffe-dc0c9e877a84", + "start": { + "$date": "2021-05-06T04:09:45.000Z" + }, + "end": { + "$date": "2021-05-06T04:14:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddccdaaa-04df-43c4-a4a6-89df2f24b0eb", + "start": { + "$date": "2021-05-06T04:14:45.000Z" + }, + "end": { + "$date": "2021-05-06T04:31:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "494eaead-8a0d-44d3-90e0-e672e264ed0d", + "start": { + "$date": "2021-05-06T04:31:45.000Z" + }, + "end": { + "$date": "2021-05-06T04:33:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6514d9c2-5654-448e-a499-e47a1c1da9ac", + "start": { + "$date": "2021-05-06T04:33:45.000Z" + }, + "end": { + "$date": "2021-05-06T04:45:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4ce22c96-9238-4ec5-97ca-449a1f7375ac", + "start": { + "$date": "2021-05-06T04:45:45.000Z" + }, + "end": { + "$date": "2021-05-06T04:47:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12cba9f1-ae98-4b5b-9d84-fcabef34da3b", + "start": { + "$date": "2021-05-06T04:47:45.000Z" + }, + "end": { + "$date": "2021-05-06T05:28:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edfab408-817e-4fa8-9964-2b0c10fc840f", + "start": { + "$date": "2021-05-06T05:28:45.000Z" + }, + "end": { + "$date": "2021-05-06T05:30:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6968df35-2fc1-439d-af73-089cecc4a8ff", + "start": { + "$date": "2021-05-06T05:30:45.000Z" + }, + "end": { + "$date": "2021-05-06T06:14:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b9735f7f-e37e-4953-9410-379b876c73fb", + "start": { + "$date": "2021-05-06T06:14:45.000Z" + }, + "end": { + "$date": "2021-05-06T06:16:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ce6edfd-a4b4-4497-ad68-d6eec606e8ba", + "start": { + "$date": "2021-05-06T06:16:45.000Z" + }, + "end": { + "$date": "2021-05-06T06:20:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8aa1a48-d9d7-4d54-8f7a-5a3ffb7a35f9", + "start": { + "$date": "2021-05-06T06:20:45.000Z" + }, + "end": { + "$date": "2021-05-06T06:22:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "617d584c-17b9-40ff-95d3-6642a860e3fb", + "start": { + "$date": "2021-05-06T06:22:45.000Z" + }, + "end": { + "$date": "2021-05-06T06:30:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0be705f0-8cbb-40fb-8494-2d1e112d64ad", + "start": { + "$date": "2021-05-06T06:30:45.000Z" + }, + "end": { + "$date": "2021-05-06T06:32:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a0ca91c-32cb-40f9-bed9-47400ae536f7", + "start": { + "$date": "2021-05-06T06:32:45.000Z" + }, + "end": { + "$date": "2021-05-06T07:32:37.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "5a31cc37-bbcf-4a79-9e28-7e1e5fcc35ad", + "uuid": "592e186a-bf0e-4272-b4c8-c3430e544899", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T03:32:23.000Z" + }, + "end": { + "$date": "2021-05-06T03:36:08.000Z" + }, + "events": [ + { + "uuid": "586cf7de-fade-4acb-af69-076f427de860", + "start": { + "$date": "2021-05-06T03:32:23.000Z" + }, + "end": { + "$date": "2021-05-06T03:36:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63c2021-12b2-42d6-8294-c042018280b3", + "uuid": "12b717ed-ffb9-41da-b56b-15bba9225e3b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T03:36:43.000Z" + }, + "end": { + "$date": "2021-05-06T04:08:20.000Z" + }, + "events": [ + { + "uuid": "92c29d73-d2ae-4079-af0d-c7baa2b4a56d", + "start": { + "$date": "2021-05-06T03:36:43.000Z" + }, + "end": { + "$date": "2021-05-06T04:08:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a23e6817-7403-46a6-945a-61248c13bf56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T04:03:12.000Z" + }, + "end": { + "$date": "2021-05-06T04:43:41.000Z" + }, + "events": [ + { + "uuid": "0bdeee70-3a12-4315-aa7b-d59914b1f325", + "start": { + "$date": "2021-05-06T04:03:12.000Z" + }, + "end": { + "$date": "2021-05-06T04:43:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "468a7151-0b38-479a-9378-d93d375159ba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T03:53:21.000Z" + }, + "end": { + "$date": "2021-05-06T03:55:58.000Z" + }, + "events": [ + { + "uuid": "94045778-a468-4693-a414-dd31550fdd70", + "start": { + "$date": "2021-05-06T03:53:21.000Z" + }, + "end": { + "$date": "2021-05-06T03:55:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "e18219de-bae4-40a0-bde4-ce5a156ea259", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T03:56:06.000Z" + }, + "end": { + "$date": "2021-05-06T03:58:29.000Z" + }, + "events": [ + { + "uuid": "b686da38-d71e-44bb-a3fb-1b84ae066fff", + "start": { + "$date": "2021-05-06T03:56:06.000Z" + }, + "end": { + "$date": "2021-05-06T03:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e90503c-4ba4-4a61-86d9-7dbae6f60e15", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T04:03:15.000Z" + }, + "end": { + "$date": "2021-05-06T04:43:31.000Z" + }, + "events": [ + { + "uuid": "8155606d-a8f1-456d-a620-350a724ee878", + "start": { + "$date": "2021-05-06T04:03:15.000Z" + }, + "end": { + "$date": "2021-05-06T04:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "423e01da-bc09-408b-b40a-fc8ca1bfaac2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T03:58:43.000Z" + }, + "end": { + "$date": "2021-05-06T04:20:57.000Z" + }, + "events": [ + { + "uuid": "070796e8-7679-46b6-b3ed-ed4bdb6c03ea", + "start": { + "$date": "2021-05-06T03:58:43.000Z" + }, + "end": { + "$date": "2021-05-06T04:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "22104ebf-2dde-462d-94c8-d564dbe1628d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T04:11:25.000Z" + }, + "end": { + "$date": "2021-05-06T05:20:32.000Z" + }, + "events": [ + { + "uuid": "e8bdaed1-1ea0-40cb-97a7-d8186db8c0fb", + "start": { + "$date": "2021-05-06T04:11:25.000Z" + }, + "end": { + "$date": "2021-05-06T05:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "80dcd84b-03d5-4e2c-8168-9ab1df0ddcf0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-06T04:14:37.000Z" + }, + "end": { + "$date": "2021-05-06T06:07:02.000Z" + }, + "events": [ + { + "uuid": "4a8d2041-553e-442c-8c6f-2e990650004d", + "start": { + "$date": "2021-05-06T04:14:37.000Z" + }, + "end": { + "$date": "2021-05-06T04:55:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f341e651-0fdb-4cdc-87a4-56f2a2ba88a9", + "start": { + "$date": "2021-05-06T04:55:37.000Z" + }, + "end": { + "$date": "2021-05-06T05:01:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a8cb093-d074-406f-b8d7-88932a0257eb", + "start": { + "$date": "2021-05-06T05:01:37.000Z" + }, + "end": { + "$date": "2021-05-06T06:07:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a294579-27b1-4acc-821e-d6947a6676e7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T04:22:43.000Z" + }, + "end": { + "$date": "2021-05-06T04:52:34.000Z" + }, + "events": [ + { + "uuid": "4e979121-d40a-4b41-ac49-3e56a45e7a30", + "start": { + "$date": "2021-05-06T04:22:43.000Z" + }, + "end": { + "$date": "2021-05-06T04:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8d98c76-e07a-4802-acba-8fcffc5621f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T04:50:46.000Z" + }, + "end": { + "$date": "2021-05-06T05:29:42.000Z" + }, + "events": [ + { + "uuid": "e842e652-726c-42d3-8af2-664a64b93f2b", + "start": { + "$date": "2021-05-06T04:50:46.000Z" + }, + "end": { + "$date": "2021-05-06T05:29:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6de5855-53e5-480e-a3e8-16aef78af337", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T05:29:38.000Z" + }, + "end": { + "$date": "2021-05-06T05:33:31.000Z" + }, + "events": [ + { + "uuid": "3000f8bf-17f2-4282-b676-333d05c629f5", + "start": { + "$date": "2021-05-06T05:29:38.000Z" + }, + "end": { + "$date": "2021-05-06T05:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "38f1cbae-0b85-4df3-bf8e-5874b58280bb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T04:54:11.000Z" + }, + "end": { + "$date": "2021-05-06T04:56:39.000Z" + }, + "events": [ + { + "uuid": "17bc8cce-73b4-4fba-bff5-13650cb8a7cc", + "start": { + "$date": "2021-05-06T04:54:11.000Z" + }, + "end": { + "$date": "2021-05-06T04:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "13f7010a-aa97-4a3e-a852-2e035d4ae172", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T04:56:46.000Z" + }, + "end": { + "$date": "2021-05-06T04:59:59.000Z" + }, + "events": [ + { + "uuid": "d34fdabf-e0c8-43d2-a171-9bb04e6eb4eb", + "start": { + "$date": "2021-05-06T04:56:46.000Z" + }, + "end": { + "$date": "2021-05-06T04:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1d7999a8-4c3f-4580-b848-5fdddf710a6d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T05:46:49.000Z" + }, + "end": { + "$date": "2021-05-06T05:51:15.000Z" + }, + "events": [ + { + "uuid": "5e880bc3-952a-407c-95ac-a25624f293d1", + "start": { + "$date": "2021-05-06T05:46:49.000Z" + }, + "end": { + "$date": "2021-05-06T05:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d576974e-5831-4652-b834-cd354abd14e7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-06T05:59:12.000Z" + }, + "end": { + "$date": "2021-05-06T06:30:40.000Z" + }, + "events": [ + { + "uuid": "3b8cf638-47de-454d-ac15-fc85e9d2feb6", + "start": { + "$date": "2021-05-06T05:59:12.000Z" + }, + "end": { + "$date": "2021-05-06T06:30:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "109e2c91-4efc-4aed-b2c4-341f84a655d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T06:17:10.000Z" + }, + "end": { + "$date": "2021-05-06T06:20:20.000Z" + }, + "events": [ + { + "uuid": "9904b8d6-f124-4196-b804-7ec4aead86e5", + "start": { + "$date": "2021-05-06T06:17:10.000Z" + }, + "end": { + "$date": "2021-05-06T06:20:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "c4bcfcad-c1d6-411e-9fce-d537ff5887b0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T06:20:55.000Z" + }, + "end": { + "$date": "2021-05-06T06:22:46.000Z" + }, + "events": [ + { + "uuid": "c5b51bd5-79ad-49b2-a0c3-8cafc95e530a", + "start": { + "$date": "2021-05-06T06:20:55.000Z" + }, + "end": { + "$date": "2021-05-06T06:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "9532661a-21f8-4893-ac3c-d5b285ddf3ff", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T06:51:14.000Z" + }, + "end": { + "$date": "2021-05-06T07:30:42.000Z" + }, + "events": [ + { + "uuid": "30aef88d-508e-4c81-bf79-bf0e4491c41b", + "start": { + "$date": "2021-05-06T06:51:14.000Z" + }, + "end": { + "$date": "2021-05-06T07:30:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52ce5d12-361b-4745-9f60-3912065afd2e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T07:19:13.000Z" + }, + "end": { + "$date": "2021-05-06T07:50:27.000Z" + }, + "events": [ + { + "uuid": "6b76357f-8534-4857-b36c-ed97ead19c66", + "start": { + "$date": "2021-05-06T07:19:13.000Z" + }, + "end": { + "$date": "2021-05-06T07:50:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2afdb029-ac01-4b73-a702-51c771f56b29", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T08:00:51.000Z" + }, + "end": { + "$date": "2021-05-06T08:29:48.000Z" + }, + "events": [ + { + "uuid": "cd7cbd56-1480-4f10-a969-8885c6abae2c", + "start": { + "$date": "2021-05-06T08:00:51.000Z" + }, + "end": { + "$date": "2021-05-06T08:29:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3551d2ab-e8b0-4a66-9852-c960c1fc6996", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T08:42:48.000Z" + }, + "end": { + "$date": "2021-05-06T09:14:55.000Z" + }, + "events": [ + { + "uuid": "9ea44d8f-56f4-4d81-8493-616a07476e7e", + "start": { + "$date": "2021-05-06T08:42:48.000Z" + }, + "end": { + "$date": "2021-05-06T09:14:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3cdc3774-c5e8-403c-9cdc-491e511339c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-06T14:12:14.000Z" + }, + "end": { + "$date": "2021-05-06T15:23:09.000Z" + }, + "events": [ + { + "uuid": "dbd0ffe1-3403-42f6-8fc5-882824053304", + "start": { + "$date": "2021-05-06T14:12:14.000Z" + }, + "end": { + "$date": "2021-05-06T15:23:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7d685a81-b1dd-4658-aae8-95932d2cfdc3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T14:42:05.000Z" + }, + "end": { + "$date": "2021-05-06T15:50:03.000Z" + }, + "events": [ + { + "uuid": "600fece8-16df-4f98-a3f4-a63feb27dc54", + "start": { + "$date": "2021-05-06T14:42:05.000Z" + }, + "end": { + "$date": "2021-05-06T15:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "828c8496-4b2c-4896-bc17-d55abd70828e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T15:03:00.000Z" + }, + "end": { + "$date": "2021-05-06T17:17:50.000Z" + }, + "events": [ + { + "uuid": "eadf8091-4d85-4e49-b65b-b96c45f0a395", + "start": { + "$date": "2021-05-06T15:03:00.000Z" + }, + "end": { + "$date": "2021-05-06T17:11:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c0eeb86-adba-40ee-8692-b502d8a876cc", + "start": { + "$date": "2021-05-06T17:11:00.000Z" + }, + "end": { + "$date": "2021-05-06T17:17:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7923df3c-ecf5-4a00-8c12-6ab99e45f938", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-06T21:45:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:05:02.000Z" + }, + "events": [ + { + "uuid": "2dcaf835-5310-4782-a229-f0566cd56041", + "start": { + "$date": "2021-05-06T21:45:30.000Z" + }, + "end": { + "$date": "2021-05-06T21:47:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7011a49c-7f9c-485a-9a32-90f3d87260c1", + "start": { + "$date": "2021-05-06T21:47:30.000Z" + }, + "end": { + "$date": "2021-05-06T21:49:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "954a753c-d81d-4aee-b6b0-25a414e17a9c", + "start": { + "$date": "2021-05-06T21:49:30.000Z" + }, + "end": { + "$date": "2021-05-06T21:54:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fed9e24a-1d6d-4d4b-940d-483f2f13f67f", + "start": { + "$date": "2021-05-06T21:54:30.000Z" + }, + "end": { + "$date": "2021-05-06T21:58:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4df670c-e4aa-4536-9470-23a08946fa5d", + "start": { + "$date": "2021-05-06T21:58:30.000Z" + }, + "end": { + "$date": "2021-05-06T22:00:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff07e834-bff0-413a-8e86-b3911f707ac9", + "start": { + "$date": "2021-05-06T22:00:30.000Z" + }, + "end": { + "$date": "2021-05-06T22:30:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4ee3e836-176c-4728-9541-2e4cc124b285", + "start": { + "$date": "2021-05-06T22:30:30.000Z" + }, + "end": { + "$date": "2021-05-06T22:32:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2f9da36-5c5a-401c-8aeb-cfdb2add7525", + "start": { + "$date": "2021-05-06T22:32:30.000Z" + }, + "end": { + "$date": "2021-05-06T23:30:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eaa6797c-4360-4ea0-8ccc-9da220dcc170", + "start": { + "$date": "2021-05-06T23:30:30.000Z" + }, + "end": { + "$date": "2021-05-06T23:34:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0dc2a7dc-bddc-43b0-b6dd-0704b11ed86f", + "start": { + "$date": "2021-05-06T23:34:30.000Z" + }, + "end": { + "$date": "2021-05-06T23:41:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64759048-8724-4590-834c-3828f928debc", + "start": { + "$date": "2021-05-06T23:41:30.000Z" + }, + "end": { + "$date": "2021-05-06T23:46:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24988f5e-ee3a-4582-8584-79330de21030", + "start": { + "$date": "2021-05-06T23:46:30.000Z" + }, + "end": { + "$date": "2021-05-06T23:55:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a89d7e35-ba27-4dee-9521-5de7af7dc71d", + "start": { + "$date": "2021-05-06T23:55:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:01:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "150ea9d3-f843-4816-b6f7-815631a38525", + "start": { + "$date": "2021-05-07T00:01:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:28:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7b8a8514-e10e-4b0d-9022-d5451f99d6b1", + "start": { + "$date": "2021-05-07T00:28:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:39:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6aca8f9-9401-470c-b353-42d224cfc521", + "start": { + "$date": "2021-05-07T00:39:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:47:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a1a1ada7-3128-48e0-b4ef-73737866e74d", + "start": { + "$date": "2021-05-07T00:47:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:49:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f309e5a6-f779-4ef8-ac8b-9e636a42bb69", + "start": { + "$date": "2021-05-07T00:49:30.000Z" + }, + "end": { + "$date": "2021-05-07T01:05:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ef60c48-f5e2-4ee3-bb41-e1a006a11264", + "start": { + "$date": "2021-05-07T01:05:30.000Z" + }, + "end": { + "$date": "2021-05-07T01:07:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e93315d5-0982-41dc-8fa8-4888fd457a1e", + "start": { + "$date": "2021-05-07T01:07:30.000Z" + }, + "end": { + "$date": "2021-05-07T01:48:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0218708e-5461-449d-85e7-2c98721515b6", + "start": { + "$date": "2021-05-07T01:48:30.000Z" + }, + "end": { + "$date": "2021-05-07T03:11:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45e36297-7b14-4757-90af-ecac4f35467d", + "start": { + "$date": "2021-05-07T03:11:30.000Z" + }, + "end": { + "$date": "2021-05-07T03:57:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "22829b92-b0bc-4eda-970e-96b2754354d7", + "start": { + "$date": "2021-05-07T03:57:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:03:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "607ac472-e9fb-4c48-8fad-312f7569e34d", + "start": { + "$date": "2021-05-07T04:03:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:15:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "05121592-96e7-4b03-8576-75daf259a5bc", + "start": { + "$date": "2021-05-07T04:15:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:25:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80f4c73b-7a1c-4354-8287-16234a152805", + "start": { + "$date": "2021-05-07T04:25:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:26:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "245ed0af-dcb7-4f15-b4a2-95f1b0b9e794", + "start": { + "$date": "2021-05-07T04:26:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:28:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c3659546-8503-4409-982c-340311badb28", + "start": { + "$date": "2021-05-07T04:28:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:38:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f70ad868-1ba0-496b-b287-fac9f4444288", + "start": { + "$date": "2021-05-07T04:38:30.000Z" + }, + "end": { + "$date": "2021-05-07T04:40:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6b8e643d-d6e2-42a0-bb6a-cda272fad9f8", + "start": { + "$date": "2021-05-07T04:40:30.000Z" + }, + "end": { + "$date": "2021-05-07T05:15:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43d5c5fa-85db-4132-969c-8c8efc5c441a", + "start": { + "$date": "2021-05-07T05:15:30.000Z" + }, + "end": { + "$date": "2021-05-07T05:17:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f973138-f095-4577-9d85-43a091bf7e09", + "start": { + "$date": "2021-05-07T05:17:30.000Z" + }, + "end": { + "$date": "2021-05-07T05:21:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be9a8551-8afd-4fb6-b11e-a9228765671d", + "start": { + "$date": "2021-05-07T05:21:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4f908c1-7e42-49cd-90cd-f179db1992c8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T17:21:55.000Z" + }, + "end": { + "$date": "2021-05-06T17:59:12.000Z" + }, + "events": [ + { + "uuid": "ac2d9479-268d-4661-9477-0278afd9ada3", + "start": { + "$date": "2021-05-06T17:21:55.000Z" + }, + "end": { + "$date": "2021-05-06T17:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "807ffe0d-2680-49b8-8c6a-89469b1602e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T18:08:36.000Z" + }, + "end": { + "$date": "2021-05-06T18:34:52.000Z" + }, + "events": [ + { + "uuid": "52e65ca3-8b49-458a-ad96-7fb449a09cea", + "start": { + "$date": "2021-05-06T18:08:36.000Z" + }, + "end": { + "$date": "2021-05-06T18:34:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8ae96e5-becb-49c9-a496-6843da1c6b2b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-06T18:23:47.000Z" + }, + "end": { + "$date": "2021-05-06T18:44:31.000Z" + }, + "events": [ + { + "uuid": "d3445999-8fd4-413a-be5e-b61a61c77bc3", + "start": { + "$date": "2021-05-06T18:23:47.000Z" + }, + "end": { + "$date": "2021-05-06T18:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b84bf10c-7d2f-4963-813f-b280af6806fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T18:40:05.000Z" + }, + "end": { + "$date": "2021-05-06T19:06:02.000Z" + }, + "events": [ + { + "uuid": "596d5f2d-cf79-47c3-8a52-b0a1032cba9c", + "start": { + "$date": "2021-05-06T18:40:05.000Z" + }, + "end": { + "$date": "2021-05-06T19:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8b7b287-bf90-417e-b69d-7aa1d4ed88d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T19:08:47.000Z" + }, + "end": { + "$date": "2021-05-06T19:40:14.000Z" + }, + "events": [ + { + "uuid": "043594c0-d216-4958-820e-6337b04f3f8d", + "start": { + "$date": "2021-05-06T19:08:47.000Z" + }, + "end": { + "$date": "2021-05-06T19:40:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "455dabe6-f834-4de6-bb31-86b09217f71d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T19:18:15.000Z" + }, + "end": { + "$date": "2021-05-06T19:51:05.000Z" + }, + "events": [ + { + "uuid": "0dbd2faf-ca47-43cb-ab5f-5eb91f52269c", + "start": { + "$date": "2021-05-06T19:18:15.000Z" + }, + "end": { + "$date": "2021-05-06T19:51:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "146d0993-2dd9-4923-8c83-c2cce83086d7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T19:18:18.000Z" + }, + "end": { + "$date": "2021-05-06T19:53:12.000Z" + }, + "events": [ + { + "uuid": "158f0f77-01ec-4107-a87d-8a635cd733d5", + "start": { + "$date": "2021-05-06T19:18:18.000Z" + }, + "end": { + "$date": "2021-05-06T19:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9672e6c1-96b7-4f22-816f-bc2b84b916dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T19:57:31.000Z" + }, + "end": { + "$date": "2021-05-06T20:25:40.000Z" + }, + "events": [ + { + "uuid": "56bddaec-03bc-4ef1-a1c7-696220f4a9c6", + "start": { + "$date": "2021-05-06T19:57:31.000Z" + }, + "end": { + "$date": "2021-05-06T20:25:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0210bac9-7609-473c-af77-399c159b04d5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T19:57:22.000Z" + }, + "end": { + "$date": "2021-05-06T20:25:33.000Z" + }, + "events": [ + { + "uuid": "f4e08d9b-4bb4-4ee8-91ce-d03dca51a6d1", + "start": { + "$date": "2021-05-06T19:57:22.000Z" + }, + "end": { + "$date": "2021-05-06T20:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c4d3e14-41ed-446a-b1cf-cce9f224f09c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T21:37:43.000Z" + }, + "end": { + "$date": "2021-05-06T22:17:35.000Z" + }, + "events": [ + { + "uuid": "1885dbe2-edf4-4671-a29c-c810d932b3ad", + "start": { + "$date": "2021-05-06T21:37:43.000Z" + }, + "end": { + "$date": "2021-05-06T22:17:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b27e1a3a-bbfc-43b2-95ce-9c605f4a02eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T20:52:27.000Z" + }, + "end": { + "$date": "2021-05-06T20:55:42.000Z" + }, + "events": [ + { + "uuid": "7411fc06-1da3-426c-91e0-6dfe46ee9b0d", + "start": { + "$date": "2021-05-06T20:52:27.000Z" + }, + "end": { + "$date": "2021-05-06T20:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c05ff927-4b17-4846-91b5-1223fc016dee", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T20:56:31.000Z" + }, + "end": { + "$date": "2021-05-06T21:15:33.000Z" + }, + "events": [ + { + "uuid": "95dd5a7f-5925-4ef7-be22-f7fe4457baed", + "start": { + "$date": "2021-05-06T20:56:31.000Z" + }, + "end": { + "$date": "2021-05-06T21:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "36224475-73c1-4b0c-a3a5-232b3045514c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T21:07:03.000Z" + }, + "end": { + "$date": "2021-05-06T21:28:26.000Z" + }, + "events": [ + { + "uuid": "231946db-dc51-449c-a401-0afd424f837c", + "start": { + "$date": "2021-05-06T21:07:03.000Z" + }, + "end": { + "$date": "2021-05-06T21:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f31a1be1-98d0-4d1e-9649-4d0c0ffbcb76", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T20:25:33.000Z" + }, + "end": { + "$date": "2021-05-06T21:15:43.000Z" + }, + "events": [ + { + "uuid": "75698421-53ea-490a-be49-7754266ec42c", + "start": { + "$date": "2021-05-06T20:25:33.000Z" + }, + "end": { + "$date": "2021-05-06T21:15:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5184ee62-f6c5-4b40-a214-374b16c467fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T21:27:36.000Z" + }, + "end": { + "$date": "2021-05-06T21:53:45.000Z" + }, + "events": [ + { + "uuid": "00f62a39-b50c-4dbd-8b45-3bb009fd7b9e", + "start": { + "$date": "2021-05-06T21:27:36.000Z" + }, + "end": { + "$date": "2021-05-06T21:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83e9cd2c-dd31-4c77-8ed0-a40436e04557", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T21:31:15.000Z" + }, + "end": { + "$date": "2021-05-06T21:53:12.000Z" + }, + "events": [ + { + "uuid": "81e30276-cb55-4a2d-b738-37a27d7ad832", + "start": { + "$date": "2021-05-06T21:31:15.000Z" + }, + "end": { + "$date": "2021-05-06T21:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17a159a8-aaf3-4daa-a5cb-8ddf85491dcb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T21:30:36.000Z" + }, + "end": { + "$date": "2021-05-06T21:52:23.000Z" + }, + "events": [ + { + "uuid": "e5a6e302-a82e-4a34-8e5f-0210a7a567da", + "start": { + "$date": "2021-05-06T21:30:36.000Z" + }, + "end": { + "$date": "2021-05-06T21:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9906bb85-1f0a-4984-9afe-374785c4f830", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T21:54:42.000Z" + }, + "end": { + "$date": "2021-05-06T22:34:25.000Z" + }, + "events": [ + { + "uuid": "d8eab6a4-7a72-4f6a-b3d4-417e6d7c29ff", + "start": { + "$date": "2021-05-06T21:54:42.000Z" + }, + "end": { + "$date": "2021-05-06T22:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2215bbcf-57f3-4dc3-a286-54173b984311", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T21:54:39.000Z" + }, + "end": { + "$date": "2021-05-06T22:34:33.000Z" + }, + "events": [ + { + "uuid": "e36a2390-3d7c-4fae-b2fb-3cd118afb01c", + "start": { + "$date": "2021-05-06T21:54:39.000Z" + }, + "end": { + "$date": "2021-05-06T22:34:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "188c2102-1fe1-43ba-a1d8-f6f5431abdfe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T21:55:13.000Z" + }, + "end": { + "$date": "2021-05-06T22:34:26.000Z" + }, + "events": [ + { + "uuid": "e3224206-3b55-4ead-97cd-3906056a664e", + "start": { + "$date": "2021-05-06T21:55:13.000Z" + }, + "end": { + "$date": "2021-05-06T22:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a848d105-df3f-4d0a-8749-147964335a9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-06T22:34:41.000Z" + }, + "end": { + "$date": "2021-05-07T00:57:40.000Z" + }, + "events": [ + { + "uuid": "83900f64-48bb-4151-8971-8f54025d9959", + "start": { + "$date": "2021-05-06T22:34:41.000Z" + }, + "end": { + "$date": "2021-05-06T22:50:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "488afe6d-d4c2-4e45-8743-70125d15035e", + "start": { + "$date": "2021-05-06T22:50:41.000Z" + }, + "end": { + "$date": "2021-05-06T23:27:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca303007-824a-420c-9762-b23495a9fa8b", + "start": { + "$date": "2021-05-06T23:27:41.000Z" + }, + "end": { + "$date": "2021-05-07T00:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a5e9553-3acc-4afc-8721-acf83ee27981", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T22:37:15.000Z" + }, + "end": { + "$date": "2021-05-06T22:58:26.000Z" + }, + "events": [ + { + "uuid": "33f6ff1c-ffe3-4c3d-8939-9934dd958d7c", + "start": { + "$date": "2021-05-06T22:37:15.000Z" + }, + "end": { + "$date": "2021-05-06T22:58:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9320b06-246f-4d63-85dd-93f007a64e77", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T22:36:43.000Z" + }, + "end": { + "$date": "2021-05-06T22:58:25.000Z" + }, + "events": [ + { + "uuid": "03115531-b6f4-4bd9-8914-cf4633121388", + "start": { + "$date": "2021-05-06T22:36:43.000Z" + }, + "end": { + "$date": "2021-05-06T22:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ad59f44-1a0f-46cf-a0ab-61833548abf2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-06T22:36:52.000Z" + }, + "end": { + "$date": "2021-05-06T22:58:37.000Z" + }, + "events": [ + { + "uuid": "f41d9d25-856f-4863-bfe1-d374b2b96037", + "start": { + "$date": "2021-05-06T22:36:52.000Z" + }, + "end": { + "$date": "2021-05-06T22:58:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "602df2bd-b158-4dd1-afdb-be1e1c7cd908", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-06T22:39:50.000Z" + }, + "end": { + "$date": "2021-05-06T23:02:41.000Z" + }, + "events": [ + { + "uuid": "c1ea84df-a823-4274-9c45-a63445c7a898", + "start": { + "$date": "2021-05-06T22:39:50.000Z" + }, + "end": { + "$date": "2021-05-06T23:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72b6f53d-6ff6-427e-a030-ded147e15c04", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T23:04:31.000Z" + }, + "end": { + "$date": "2021-05-06T23:31:32.000Z" + }, + "events": [ + { + "uuid": "97040dca-f386-414f-8c1d-833bfe21549d", + "start": { + "$date": "2021-05-06T23:04:31.000Z" + }, + "end": { + "$date": "2021-05-06T23:31:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "243d8cb6-0f16-4d7f-81e7-2d82cc038870", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T23:05:05.000Z" + }, + "end": { + "$date": "2021-05-06T23:31:39.000Z" + }, + "events": [ + { + "uuid": "975d4880-ad01-4007-9eab-af1c26b11914", + "start": { + "$date": "2021-05-06T23:05:05.000Z" + }, + "end": { + "$date": "2021-05-06T23:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "70fd3b78-85e0-41ad-8bb3-f8ef065a6747", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-06T23:30:46.000Z" + }, + "end": { + "$date": "2021-05-07T00:02:05.000Z" + }, + "events": [ + { + "uuid": "634d720e-8aac-4695-81ce-09cfe2899533", + "start": { + "$date": "2021-05-06T23:30:46.000Z" + }, + "end": { + "$date": "2021-05-07T00:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de6fa36d-6c25-42c1-880d-02dd115510df", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-06T23:33:27.000Z" + }, + "end": { + "$date": "2021-05-06T23:51:03.000Z" + }, + "events": [ + { + "uuid": "a93e1622-fb35-4c88-8337-5bf6674c5d7d", + "start": { + "$date": "2021-05-06T23:33:27.000Z" + }, + "end": { + "$date": "2021-05-06T23:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02bc1626-7150-4c67-b45e-92c11b321a12", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-06T23:32:51.000Z" + }, + "end": { + "$date": "2021-05-06T23:50:58.000Z" + }, + "events": [ + { + "uuid": "e8f374a9-1c41-4c09-b153-48515e5bceca", + "start": { + "$date": "2021-05-06T23:32:51.000Z" + }, + "end": { + "$date": "2021-05-06T23:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "e5c95f1b-40f1-459a-9f55-15b0a6d94656", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-07T00:38:25.000Z" + }, + "end": { + "$date": "2021-05-07T00:40:22.000Z" + }, + "events": [ + { + "uuid": "8c770e6f-980d-4106-9169-dbf8c807fd91", + "start": { + "$date": "2021-05-07T00:38:25.000Z" + }, + "end": { + "$date": "2021-05-07T00:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ea8f4d76-659a-469c-9c31-8494b18b91e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-06T21:45:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:42:23.000Z" + }, + "events": [ + { + "uuid": "46746714-7159-4172-aedc-122e9c907231", + "start": { + "$date": "2021-05-06T21:45:30.000Z" + }, + "end": { + "$date": "2021-05-07T00:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4d155950-2edc-488e-9d07-60c00eb94dd9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-07T00:43:17.000Z" + }, + "end": { + "$date": "2021-05-07T01:42:52.000Z" + }, + "events": [ + { + "uuid": "fec31885-b70f-49ef-a45e-ff350dbed4c0", + "start": { + "$date": "2021-05-07T00:43:17.000Z" + }, + "end": { + "$date": "2021-05-07T01:14:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4015000-4467-49b4-ae7f-e913f26fca51", + "start": { + "$date": "2021-05-07T01:14:17.000Z" + }, + "end": { + "$date": "2021-05-07T01:42:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c41b4b01-8407-441f-9699-18a547cdaa43", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T00:50:26.000Z" + }, + "end": { + "$date": "2021-05-07T01:21:01.000Z" + }, + "events": [ + { + "uuid": "4034f468-94b4-47b9-8222-c788767a32f7", + "start": { + "$date": "2021-05-07T00:50:26.000Z" + }, + "end": { + "$date": "2021-05-07T01:21:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "2b004710-9edd-4600-bea4-84bbba9a836a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-07T00:46:21.000Z" + }, + "end": { + "$date": "2021-05-07T01:56:42.000Z" + }, + "events": [ + { + "uuid": "d9d0fecc-d71d-4fbb-9d73-2985a5988f59", + "start": { + "$date": "2021-05-07T00:46:21.000Z" + }, + "end": { + "$date": "2021-05-07T01:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "de73559b-8b51-488d-acdd-518b856f5469", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T00:57:48.000Z" + }, + "end": { + "$date": "2021-05-07T03:47:14.000Z" + }, + "events": [ + { + "uuid": "8f5fe9e2-a55b-45aa-9f15-840c9d1cd63c", + "start": { + "$date": "2021-05-07T00:57:48.000Z" + }, + "end": { + "$date": "2021-05-07T03:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1d956de-dcd9-4b0e-96ef-5fc8b766f93a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T01:28:17.000Z" + }, + "end": { + "$date": "2021-05-07T01:55:07.000Z" + }, + "events": [ + { + "uuid": "8a78e3cd-2936-491d-adf4-ab45d5475b76", + "start": { + "$date": "2021-05-07T01:28:17.000Z" + }, + "end": { + "$date": "2021-05-07T01:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fd252e0b-6733-4e4b-a44f-ae84ce13376b", + "uuid": "7b2b4f08-760b-4736-a6b8-f2e86752d8a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T01:26:52.000Z" + }, + "end": { + "$date": "2021-05-07T04:30:58.000Z" + }, + "events": [ + { + "uuid": "e0e59bcb-65cd-4f15-8b43-d23a6b274aa6", + "start": { + "$date": "2021-05-07T01:26:52.000Z" + }, + "end": { + "$date": "2021-05-07T01:49:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b84d5397-38b9-4c3b-89d8-e63bf6690cfd", + "start": { + "$date": "2021-05-07T01:49:52.000Z" + }, + "end": { + "$date": "2021-05-07T02:00:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2bfe683f-c7ce-4983-adef-de1f9cbbef54", + "start": { + "$date": "2021-05-07T02:00:52.000Z" + }, + "end": { + "$date": "2021-05-07T02:10:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2f0a564-03a0-4fdf-9500-bc964e37a874", + "start": { + "$date": "2021-05-07T02:10:52.000Z" + }, + "end": { + "$date": "2021-05-07T02:14:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b2f5606f-c427-4829-bcf9-189e7c3cc9fe", + "start": { + "$date": "2021-05-07T02:14:52.000Z" + }, + "end": { + "$date": "2021-05-07T02:24:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04b7980c-f89b-4bb6-b7fd-542d5bc4a7a8", + "start": { + "$date": "2021-05-07T02:24:52.000Z" + }, + "end": { + "$date": "2021-05-07T04:30:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2884de2f-2775-49f0-a3a2-d19fc40cdf59", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-07T01:29:42.000Z" + }, + "end": { + "$date": "2021-05-07T01:31:37.000Z" + }, + "events": [ + { + "uuid": "898bdc4d-c324-47a9-b859-3e4d90a179aa", + "start": { + "$date": "2021-05-07T01:29:42.000Z" + }, + "end": { + "$date": "2021-05-07T01:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a33ee3da-fa6f-46f6-8a06-917cd6a1bec8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-07T01:36:38.000Z" + }, + "end": { + "$date": "2021-05-07T01:38:09.000Z" + }, + "events": [ + { + "uuid": "943425cc-0d90-4c84-a45d-cad4fac0de5a", + "start": { + "$date": "2021-05-07T01:36:38.000Z" + }, + "end": { + "$date": "2021-05-07T01:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "018ca49f-e3a3-47ad-94d5-0ccee1e5e388", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-07T01:43:00.000Z" + }, + "end": { + "$date": "2021-05-07T04:50:37.000Z" + }, + "events": [ + { + "uuid": "36df0e29-80b1-4e97-a6f0-86acc9963675", + "start": { + "$date": "2021-05-07T01:43:00.000Z" + }, + "end": { + "$date": "2021-05-07T03:33:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ebe2c78-053c-4a5f-afe3-bfa61314107b", + "start": { + "$date": "2021-05-07T03:33:00.000Z" + }, + "end": { + "$date": "2021-05-07T03:42:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3acc10fe-9af6-4cef-ae1d-0a63c500e4e9", + "start": { + "$date": "2021-05-07T03:42:00.000Z" + }, + "end": { + "$date": "2021-05-07T03:49:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6b854919-7449-485d-bc88-ec1c41eff4b8", + "start": { + "$date": "2021-05-07T03:49:00.000Z" + }, + "end": { + "$date": "2021-05-07T04:35:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "25e9d7a2-b595-4f98-a766-49524b2723a8", + "start": { + "$date": "2021-05-07T04:35:00.000Z" + }, + "end": { + "$date": "2021-05-07T04:40:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c1e81a0-e674-4c06-b7f0-3aa3d6db9745", + "start": { + "$date": "2021-05-07T04:40:00.000Z" + }, + "end": { + "$date": "2021-05-07T04:47:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba00f403-0f72-4307-bfce-c097b2f93156", + "start": { + "$date": "2021-05-07T04:47:00.000Z" + }, + "end": { + "$date": "2021-05-07T04:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "110ee6a5-2d95-4b20-90fb-2061f2aaa3d2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T02:00:28.000Z" + }, + "end": { + "$date": "2021-05-07T02:32:38.000Z" + }, + "events": [ + { + "uuid": "5c53a160-4e81-4d0a-a48a-15d6ae63c144", + "start": { + "$date": "2021-05-07T02:00:28.000Z" + }, + "end": { + "$date": "2021-05-07T02:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fb890dfd-68b4-48f6-ab39-447cd5007c09", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-07T02:08:23.000Z" + }, + "end": { + "$date": "2021-05-07T02:21:02.000Z" + }, + "events": [ + { + "uuid": "62dfb5fc-4b95-4017-a2f5-cb473d44b21e", + "start": { + "$date": "2021-05-07T02:08:23.000Z" + }, + "end": { + "$date": "2021-05-07T02:21:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "f6a22f26-f310-49ea-bfaa-61f9f10db4ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-07T02:21:46.000Z" + }, + "end": { + "$date": "2021-05-07T06:04:02.000Z" + }, + "events": [ + { + "uuid": "376dde04-2f70-42a4-8adf-e1addb6cc690", + "start": { + "$date": "2021-05-07T02:21:46.000Z" + }, + "end": { + "$date": "2021-05-07T06:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7286afca-7895-4eb5-925d-fde329ec8d93", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T02:46:55.000Z" + }, + "end": { + "$date": "2021-05-07T03:12:11.000Z" + }, + "events": [ + { + "uuid": "7c82506a-fd0e-4165-966a-2cfba3f54309", + "start": { + "$date": "2021-05-07T02:46:55.000Z" + }, + "end": { + "$date": "2021-05-07T03:12:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42c237cd-dad7-4d7c-90e6-bb79cf90ddbb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T02:46:54.000Z" + }, + "end": { + "$date": "2021-05-07T03:12:20.000Z" + }, + "events": [ + { + "uuid": "84b056c0-f6f4-48b0-ba3a-52788c7b4bf8", + "start": { + "$date": "2021-05-07T02:46:54.000Z" + }, + "end": { + "$date": "2021-05-07T03:12:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eade0ed2-e5cb-4c56-b23a-f0180e79be2c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T03:17:26.000Z" + }, + "end": { + "$date": "2021-05-07T03:52:42.000Z" + }, + "events": [ + { + "uuid": "b4cfa426-73b8-44d6-b7b6-1af2818e947c", + "start": { + "$date": "2021-05-07T03:17:26.000Z" + }, + "end": { + "$date": "2021-05-07T03:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "383f91c1-9e8f-41b9-9bed-835a00c9c326", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T03:17:31.000Z" + }, + "end": { + "$date": "2021-05-07T03:52:52.000Z" + }, + "events": [ + { + "uuid": "405889a0-76b3-4405-891e-09bc1e093205", + "start": { + "$date": "2021-05-07T03:17:31.000Z" + }, + "end": { + "$date": "2021-05-07T03:52:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "81994b7d-4745-4879-8a29-3fe6bc27db54", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-07T03:47:08.000Z" + }, + "end": { + "$date": "2021-05-07T03:48:34.000Z" + }, + "events": [ + { + "uuid": "2e82883b-65c8-438a-8fa6-03ce955a5d59", + "start": { + "$date": "2021-05-07T03:47:08.000Z" + }, + "end": { + "$date": "2021-05-07T03:48:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "80cff85d-7488-48e8-8224-cb37f0307d12", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T03:47:34.000Z" + }, + "end": { + "$date": "2021-05-07T04:46:11.000Z" + }, + "events": [ + { + "uuid": "eee8bd34-c055-48e0-a30a-c4bfbc65aaff", + "start": { + "$date": "2021-05-07T03:47:34.000Z" + }, + "end": { + "$date": "2021-05-07T04:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e118dd22-9ad6-4170-b5ec-bed3bfdfa8e4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-07T03:48:43.000Z" + }, + "end": { + "$date": "2021-05-07T06:39:42.000Z" + }, + "events": [ + { + "uuid": "0d5a356d-9f49-41d5-a057-cd5fc2ebc5de", + "start": { + "$date": "2021-05-07T03:48:43.000Z" + }, + "end": { + "$date": "2021-05-07T06:39:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e91db99d-743a-424a-90f5-130f2e39b1fa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T05:56:55.000Z" + }, + "end": { + "$date": "2021-05-07T06:17:46.000Z" + }, + "events": [ + { + "uuid": "beb66142-5464-4349-80ff-b19c25067ebd", + "start": { + "$date": "2021-05-07T05:56:55.000Z" + }, + "end": { + "$date": "2021-05-07T06:17:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ac24ab39-89e3-4834-95e2-cfbac3dab816", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-07T04:16:41.000Z" + }, + "end": { + "$date": "2021-05-07T06:19:41.000Z" + }, + "events": [ + { + "uuid": "5f2e765e-909e-4650-9c8f-f6455ee51bdb", + "start": { + "$date": "2021-05-07T04:16:41.000Z" + }, + "end": { + "$date": "2021-05-07T06:19:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "78970295-c3f8-484f-a24d-49b19b8b86c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-07T04:51:06.000Z" + }, + "end": { + "$date": "2021-05-07T06:39:53.000Z" + }, + "events": [ + { + "uuid": "87017e3a-7905-4bb0-bb2c-7d74aa84375e", + "start": { + "$date": "2021-05-07T04:51:06.000Z" + }, + "end": { + "$date": "2021-05-07T06:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17e5b0bd-8ef7-4f9a-99ff-24e7bd36d471", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T07:43:11.000Z" + }, + "end": { + "$date": "2021-05-07T08:15:53.000Z" + }, + "events": [ + { + "uuid": "28adc1f7-8b96-4b89-9557-820d125a083e", + "start": { + "$date": "2021-05-07T07:43:11.000Z" + }, + "end": { + "$date": "2021-05-07T07:54:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "862426dc-2fb4-441a-9eed-6bfd0cfa252a", + "start": { + "$date": "2021-05-07T07:54:11.000Z" + }, + "end": { + "$date": "2021-05-07T09:04:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e536d964-0a80-4532-8cbc-faae232291de", + "start": { + "$date": "2021-05-07T09:04:11.000Z" + }, + "end": { + "$date": "2021-05-07T08:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36568433-0fcd-43df-94db-397654448b8e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T08:32:48.000Z" + }, + "end": { + "$date": "2021-05-07T08:43:58.000Z" + }, + "events": [ + { + "uuid": "7a655c5e-1a10-4637-9974-76b0fa6f3839", + "start": { + "$date": "2021-05-07T08:32:48.000Z" + }, + "end": { + "$date": "2021-05-07T08:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4368e665-691b-4eda-9c40-05b1d2e23f5f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T08:44:13.000Z" + }, + "end": { + "$date": "2021-05-07T14:39:09.000Z" + }, + "events": [ + { + "uuid": "c0ff3a20-096a-43ec-b0f5-7cc53fe72950", + "start": { + "$date": "2021-05-07T08:44:13.000Z" + }, + "end": { + "$date": "2021-05-07T08:55:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2e91ce9-c6d5-4161-ba33-b8bd5295fd06", + "start": { + "$date": "2021-05-07T08:55:13.000Z" + }, + "end": { + "$date": "2021-05-07T14:21:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "743dd0b6-b4da-425f-85b6-dc477df87067", + "start": { + "$date": "2021-05-07T14:21:13.000Z" + }, + "end": { + "$date": "2021-05-07T14:31:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7fe5a225-7c63-432a-8a29-6feffdad020c", + "start": { + "$date": "2021-05-07T14:31:13.000Z" + }, + "end": { + "$date": "2021-05-07T14:39:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "fd252e0b-6733-4e4b-a44f-ae84ce13376b", + "uuid": "10bbd323-c29e-4efb-857e-b8041ee2ee38", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T13:51:28.000Z" + }, + "end": { + "$date": "2021-05-07T14:23:31.000Z" + }, + "events": [ + { + "uuid": "116632e7-8ef5-4260-b2cb-2418bd7a2ad1", + "start": { + "$date": "2021-05-07T13:51:28.000Z" + }, + "end": { + "$date": "2021-05-07T14:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6143afa9-3f12-4c5c-b471-16166b7d8c1c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-07T14:01:16.000Z" + }, + "end": { + "$date": "2021-05-07T14:33:32.000Z" + }, + "events": [ + { + "uuid": "9079445b-cd9c-4ec1-be8e-6d70607a8154", + "start": { + "$date": "2021-05-07T14:01:16.000Z" + }, + "end": { + "$date": "2021-05-07T14:33:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43d703f5-6ad9-41e2-8187-33026e48608f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-07T14:34:53.000Z" + }, + "end": { + "$date": "2021-05-07T14:52:23.000Z" + }, + "events": [ + { + "uuid": "0034545e-c23a-4cbb-9e7b-05e63bc1da9d", + "start": { + "$date": "2021-05-07T14:34:53.000Z" + }, + "end": { + "$date": "2021-05-07T14:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "a6961abe-bf71-4e9c-bf99-f092b18b3149", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T14:38:21.000Z" + }, + "end": { + "$date": "2021-05-07T14:41:31.000Z" + }, + "events": [ + { + "uuid": "eeeafa96-bb42-483f-8ab9-9bdbb584c8e1", + "start": { + "$date": "2021-05-07T14:38:21.000Z" + }, + "end": { + "$date": "2021-05-07T14:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dded3e94-fd66-4797-aa51-d227e6f66415", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-07T14:53:24.000Z" + }, + "end": { + "$date": "2021-05-07T15:12:34.000Z" + }, + "events": [ + { + "uuid": "5169df62-41ad-4df2-aa25-9a535751e43a", + "start": { + "$date": "2021-05-07T14:53:24.000Z" + }, + "end": { + "$date": "2021-05-07T15:12:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1ad552d8-ac94-48c7-a905-28cca7f54cf4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T15:29:45.000Z" + }, + "end": { + "$date": "2021-05-07T16:28:24.000Z" + }, + "events": [ + { + "uuid": "be0c6422-2653-4377-b7d7-2dd059d6b25a", + "start": { + "$date": "2021-05-07T15:29:45.000Z" + }, + "end": { + "$date": "2021-05-07T16:26:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c0775b9c-0188-47de-875a-a0d772297496", + "start": { + "$date": "2021-05-07T16:26:45.000Z" + }, + "end": { + "$date": "2021-05-07T16:28:24.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "36d1e43e-a009-4a26-915d-002143998a63", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T15:56:35.000Z" + }, + "end": { + "$date": "2021-05-07T16:55:32.000Z" + }, + "events": [ + { + "uuid": "bff06a46-6f84-40c0-ada3-e83441288856", + "start": { + "$date": "2021-05-07T15:56:35.000Z" + }, + "end": { + "$date": "2021-05-07T16:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c74b87bf-a7e0-452e-b1d9-c2899ea0ef05", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T16:31:14.000Z" + }, + "end": { + "$date": "2021-05-07T17:01:02.000Z" + }, + "events": [ + { + "uuid": "d67d0d44-3324-4e7b-86da-5a0e62dbc6a5", + "start": { + "$date": "2021-05-07T16:31:14.000Z" + }, + "end": { + "$date": "2021-05-07T17:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86a2bdb3-957d-4e79-be71-c2db5f1b06f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T16:57:37.000Z" + }, + "end": { + "$date": "2021-05-07T17:53:59.000Z" + }, + "events": [ + { + "uuid": "2c00a326-0af2-44cd-b1e1-4f9c2e718547", + "start": { + "$date": "2021-05-07T16:57:37.000Z" + }, + "end": { + "$date": "2021-05-07T17:53:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "179d07e5-722d-45f7-8a5a-34b7d2961760", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T17:01:17.000Z" + }, + "end": { + "$date": "2021-05-07T17:54:18.000Z" + }, + "events": [ + { + "uuid": "1094570d-87fc-4f11-a41a-1016905cc67f", + "start": { + "$date": "2021-05-07T17:01:17.000Z" + }, + "end": { + "$date": "2021-05-07T17:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "673a95c0-2313-4664-aae4-1bf77b53c492", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-07T17:47:14.000Z" + }, + "end": { + "$date": "2021-05-07T19:17:57.000Z" + }, + "events": [ + { + "uuid": "2c4fb485-dbaa-4590-bd7d-8ee6e99e2bfe", + "start": { + "$date": "2021-05-07T17:47:14.000Z" + }, + "end": { + "$date": "2021-05-07T17:54:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c92ba9fb-115f-4ffc-92ba-c9ad33452ec6", + "start": { + "$date": "2021-05-07T17:54:14.000Z" + }, + "end": { + "$date": "2021-05-07T18:20:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "125888d1-dbd5-42c4-9289-46e81d6cf3b0", + "start": { + "$date": "2021-05-07T18:20:14.000Z" + }, + "end": { + "$date": "2021-05-07T18:22:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e9f26a8-baed-4bd1-993b-bd5dd8f932a0", + "start": { + "$date": "2021-05-07T18:22:14.000Z" + }, + "end": { + "$date": "2021-05-07T18:26:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20d42b7f-7636-461a-8879-61283bbb95e0", + "start": { + "$date": "2021-05-07T18:26:14.000Z" + }, + "end": { + "$date": "2021-05-07T18:28:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2843af2-543c-4701-a422-2db1797ef162", + "start": { + "$date": "2021-05-07T18:28:14.000Z" + }, + "end": { + "$date": "2021-05-07T19:17:57.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fb0b264-68ab-45c1-99ff-bd929417e9c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T18:01:19.000Z" + }, + "end": { + "$date": "2021-05-07T18:21:52.000Z" + }, + "events": [ + { + "uuid": "27b431e8-fd2b-47eb-973d-84e14d509d9b", + "start": { + "$date": "2021-05-07T18:01:19.000Z" + }, + "end": { + "$date": "2021-05-07T18:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9484c7ab-810f-4521-a6cc-b6219e23d660", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T18:04:15.000Z" + }, + "end": { + "$date": "2021-05-07T18:23:46.000Z" + }, + "events": [ + { + "uuid": "8e8d0c43-30d9-495b-94be-821a342579de", + "start": { + "$date": "2021-05-07T18:04:15.000Z" + }, + "end": { + "$date": "2021-05-07T18:23:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "af609c02-95e2-4650-917c-63e75c75c6bc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-07T18:05:17.000Z" + }, + "end": { + "$date": "2021-05-07T18:10:57.000Z" + }, + "events": [ + { + "uuid": "929fec26-9e2e-492a-97cd-b70cce286453", + "start": { + "$date": "2021-05-07T18:05:17.000Z" + }, + "end": { + "$date": "2021-05-07T18:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c2c1e97-93aa-45ac-810b-56ebfdb1d82b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T18:27:43.000Z" + }, + "end": { + "$date": "2021-05-07T18:39:54.000Z" + }, + "events": [ + { + "uuid": "2c903489-8b86-413b-9ca0-9ff1865625b0", + "start": { + "$date": "2021-05-07T18:27:43.000Z" + }, + "end": { + "$date": "2021-05-07T18:39:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7beebc22-55f1-419c-9d02-d5c3be076960", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T18:44:25.000Z" + }, + "end": { + "$date": "2021-05-07T19:04:48.000Z" + }, + "events": [ + { + "uuid": "7fb15215-1c40-4e3d-9812-4d48843ad66c", + "start": { + "$date": "2021-05-07T18:44:25.000Z" + }, + "end": { + "$date": "2021-05-07T19:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "979c344f-6c64-43c3-bd8b-508f0f43e586", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T18:52:16.000Z" + }, + "end": { + "$date": "2021-05-07T18:54:47.000Z" + }, + "events": [ + { + "uuid": "9184411c-5dd4-426d-99d1-c7181d44d227", + "start": { + "$date": "2021-05-07T18:52:16.000Z" + }, + "end": { + "$date": "2021-05-07T18:54:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "53a61251-3616-402d-8496-1b5ab4b4378d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-07T18:53:54.000Z" + }, + "end": { + "$date": "2021-05-07T21:22:56.000Z" + }, + "events": [ + { + "uuid": "c5f5dbf4-f5e8-4381-b25c-8d0f49ddb6d0", + "start": { + "$date": "2021-05-07T18:53:54.000Z" + }, + "end": { + "$date": "2021-05-07T21:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0f4f1048-00bb-427d-92f7-994f124e536b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T18:55:02.000Z" + }, + "end": { + "$date": "2021-05-07T19:29:35.000Z" + }, + "events": [ + { + "uuid": "8982e2e2-12a8-48c9-94bd-f24cc3c08c9a", + "start": { + "$date": "2021-05-07T18:55:02.000Z" + }, + "end": { + "$date": "2021-05-07T19:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "38e6c9b4-3140-4ce2-86d4-21653bc1c5f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T19:08:18.000Z" + }, + "end": { + "$date": "2021-05-07T22:18:04.000Z" + }, + "events": [ + { + "uuid": "96448c46-c32c-408f-9ee0-bfeed7b4126a", + "start": { + "$date": "2021-05-07T19:08:18.000Z" + }, + "end": { + "$date": "2021-05-07T19:43:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63741310-c227-4f2b-a4e0-2ca4fc840e81", + "start": { + "$date": "2021-05-07T19:43:18.000Z" + }, + "end": { + "$date": "2021-05-07T19:46:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8a8b530-fd7a-469e-bebc-42fdc9d17cdc", + "start": { + "$date": "2021-05-07T19:46:18.000Z" + }, + "end": { + "$date": "2021-05-07T21:59:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8d471c3-6adf-4f5d-a436-9bcd6776e587", + "start": { + "$date": "2021-05-07T21:59:18.000Z" + }, + "end": { + "$date": "2021-05-07T22:16:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8899cca-2efe-437c-acc1-fc623fcb3612", + "start": { + "$date": "2021-05-07T22:16:18.000Z" + }, + "end": { + "$date": "2021-05-07T22:18:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a385a289-fa0e-43f2-b63c-a0df6fffa3b8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-07T19:14:29.000Z" + }, + "end": { + "$date": "2021-05-07T19:15:46.000Z" + }, + "events": [ + { + "uuid": "f20acef0-8603-4d53-9273-7d9be45cf19d", + "start": { + "$date": "2021-05-07T19:14:29.000Z" + }, + "end": { + "$date": "2021-05-07T19:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3aa66f26-bc12-46ed-aa9d-a60ac8dd3ece", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-07T19:16:25.000Z" + }, + "end": { + "$date": "2021-05-07T20:20:41.000Z" + }, + "events": [ + { + "uuid": "9c06ffe4-97d9-484c-b411-063fb969fc86", + "start": { + "$date": "2021-05-07T19:16:25.000Z" + }, + "end": { + "$date": "2021-05-07T20:20:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "78507fb3-0871-4d6d-ab07-8e2f4eba0fa7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-07T19:18:47.000Z" + }, + "end": { + "$date": "2021-05-07T23:36:22.000Z" + }, + "events": [ + { + "uuid": "b9c7a3e2-1a0d-4209-85bd-c459656a51bf", + "start": { + "$date": "2021-05-07T19:18:47.000Z" + }, + "end": { + "$date": "2021-05-07T19:20:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bd5bdfc-cb8a-4542-ab0d-fdbaa71a5cc7", + "start": { + "$date": "2021-05-07T19:20:47.000Z" + }, + "end": { + "$date": "2021-05-07T20:09:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "abe76183-7b21-4452-a623-768a3f0ed3e5", + "start": { + "$date": "2021-05-07T20:09:47.000Z" + }, + "end": { + "$date": "2021-05-07T20:11:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6775d704-4d33-45fc-a9f0-1d05d27b7c79", + "start": { + "$date": "2021-05-07T20:11:47.000Z" + }, + "end": { + "$date": "2021-05-07T20:59:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3eef4a81-6a9e-4cf3-ac6b-ae2c257d7c2b", + "start": { + "$date": "2021-05-07T20:59:47.000Z" + }, + "end": { + "$date": "2021-05-07T21:00:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4067856e-91b6-46f1-b503-d2b9c4e79ab9", + "start": { + "$date": "2021-05-07T21:00:47.000Z" + }, + "end": { + "$date": "2021-05-07T21:36:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d316a25-52d0-47fb-b757-d29e7f36d7ad", + "start": { + "$date": "2021-05-07T21:36:47.000Z" + }, + "end": { + "$date": "2021-05-07T21:38:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d4b4f9e0-4d59-45d9-addf-b03f510671fe", + "start": { + "$date": "2021-05-07T21:38:47.000Z" + }, + "end": { + "$date": "2021-05-07T21:45:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03dce4e0-6258-4db9-837c-01b1519d34fa", + "start": { + "$date": "2021-05-07T21:45:47.000Z" + }, + "end": { + "$date": "2021-05-07T21:48:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b92a5716-8668-4e41-bdd2-fd08b6301466", + "start": { + "$date": "2021-05-07T21:48:47.000Z" + }, + "end": { + "$date": "2021-05-07T22:07:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "807d223c-4afc-40c8-8d34-da06c30eb532", + "start": { + "$date": "2021-05-07T22:07:47.000Z" + }, + "end": { + "$date": "2021-05-07T22:13:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0acf13c-5501-4320-b6eb-98897cdfb992", + "start": { + "$date": "2021-05-07T22:13:47.000Z" + }, + "end": { + "$date": "2021-05-07T22:14:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d58d2b4-fd27-4744-b2ae-4f9b36e3a26b", + "start": { + "$date": "2021-05-07T22:14:47.000Z" + }, + "end": { + "$date": "2021-05-07T22:16:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55b4dbeb-3969-4aa6-bfd4-9e850d18bca9", + "start": { + "$date": "2021-05-07T22:16:47.000Z" + }, + "end": { + "$date": "2021-05-07T23:29:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90f04a3f-0e7f-4355-a76f-3c9836b33f83", + "start": { + "$date": "2021-05-07T23:29:47.000Z" + }, + "end": { + "$date": "2021-05-07T23:36:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68c9abf8-d0f6-42ee-90c6-579db231cffc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T20:26:30.000Z" + }, + "end": { + "$date": "2021-05-07T20:57:31.000Z" + }, + "events": [ + { + "uuid": "a151514a-97b5-4c9a-bfc1-617eb6045e77", + "start": { + "$date": "2021-05-07T20:26:30.000Z" + }, + "end": { + "$date": "2021-05-07T20:57:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10bb4d41-252f-4415-ab36-57a9dc171ab8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T20:26:22.000Z" + }, + "end": { + "$date": "2021-05-07T20:57:34.000Z" + }, + "events": [ + { + "uuid": "8e94d7d7-7eae-4280-8890-c14872764937", + "start": { + "$date": "2021-05-07T20:26:22.000Z" + }, + "end": { + "$date": "2021-05-07T20:57:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "020800c8-d674-47a6-8245-75e344293bf2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-07T21:22:24.000Z" + }, + "end": { + "$date": "2021-05-07T21:51:15.000Z" + }, + "events": [ + { + "uuid": "747de192-dc45-4708-b14c-4722daffeedb", + "start": { + "$date": "2021-05-07T21:22:24.000Z" + }, + "end": { + "$date": "2021-05-07T21:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4d6c4f78-4c8f-431d-a7b3-dc164707f28e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-07T20:59:16.000Z" + }, + "end": { + "$date": "2021-05-08T00:51:33.000Z" + }, + "events": [ + { + "uuid": "182756ef-abf4-418a-93ef-eab53b2447a9", + "start": { + "$date": "2021-05-07T20:59:16.000Z" + }, + "end": { + "$date": "2021-05-08T00:51:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f22cdcd7-ff49-45da-b0b2-61919f682183", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T20:59:49.000Z" + }, + "end": { + "$date": "2021-05-07T21:04:59.000Z" + }, + "events": [ + { + "uuid": "18b973f1-5535-4e57-b1ef-c7afe4bc1466", + "start": { + "$date": "2021-05-07T20:59:49.000Z" + }, + "end": { + "$date": "2021-05-07T21:04:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01dc728b-8cc9-4b31-89f2-986177476071", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T21:20:26.000Z" + }, + "end": { + "$date": "2021-05-07T21:51:20.000Z" + }, + "events": [ + { + "uuid": "f2145a8b-bcec-4be0-a97f-525c4b5d2c6b", + "start": { + "$date": "2021-05-07T21:20:26.000Z" + }, + "end": { + "$date": "2021-05-07T21:51:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "029a4f62-ce75-40d9-8d82-1fff552ca2e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-07T21:27:40.000Z" + }, + "end": { + "$date": "2021-05-07T22:51:16.000Z" + }, + "events": [ + { + "uuid": "bfbc5b00-c88f-4140-8f80-873d53fddc79", + "start": { + "$date": "2021-05-07T21:27:40.000Z" + }, + "end": { + "$date": "2021-05-07T22:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4baab1d2-7fb3-49e9-aab9-56af9a23a06f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T00:41:59.000Z" + }, + "end": { + "$date": "2021-05-08T00:42:36.000Z" + }, + "events": [ + { + "uuid": "40ab75fd-756e-4c59-bdfc-05ca5fb8f22d", + "start": { + "$date": "2021-05-08T00:41:59.000Z" + }, + "end": { + "$date": "2021-05-08T00:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5917b4a-14f7-44cd-8717-371990af88c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T22:23:24.000Z" + }, + "end": { + "$date": "2021-05-07T22:56:28.000Z" + }, + "events": [ + { + "uuid": "d89a1078-6b63-49d1-89bf-665ad05b7783", + "start": { + "$date": "2021-05-07T22:23:24.000Z" + }, + "end": { + "$date": "2021-05-07T22:56:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6638d2a2-f7dc-4fde-9d6e-c61ea767bd46", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T22:23:25.000Z" + }, + "end": { + "$date": "2021-05-07T22:51:54.000Z" + }, + "events": [ + { + "uuid": "65fe088e-10a7-4b51-ba81-3fba1d62b056", + "start": { + "$date": "2021-05-07T22:23:25.000Z" + }, + "end": { + "$date": "2021-05-07T22:51:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0b6cf149-23c1-4e91-9672-859004070a45", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-07T22:51:25.000Z" + }, + "end": { + "$date": "2021-05-07T23:05:46.000Z" + }, + "events": [ + { + "uuid": "7a01eab5-3fad-483b-b684-004109b583a0", + "start": { + "$date": "2021-05-07T22:51:25.000Z" + }, + "end": { + "$date": "2021-05-07T23:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bd5594a-d127-4b38-b859-494484916c5e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-07T22:57:00.000Z" + }, + "end": { + "$date": "2021-05-07T23:19:32.000Z" + }, + "events": [ + { + "uuid": "3bc1bff1-1582-4d05-8131-9317533166ae", + "start": { + "$date": "2021-05-07T22:57:00.000Z" + }, + "end": { + "$date": "2021-05-07T23:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6865f4cc-b462-48b5-8c6d-67b2289a3336", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-07T22:59:58.000Z" + }, + "end": { + "$date": "2021-05-07T23:15:24.000Z" + }, + "events": [ + { + "uuid": "f79fc2f7-5159-48f8-8e7c-6bc7238cb62c", + "start": { + "$date": "2021-05-07T22:59:58.000Z" + }, + "end": { + "$date": "2021-05-07T23:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7d1eb70-0985-4b88-86d8-393dcb68a173", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T22:57:06.000Z" + }, + "end": { + "$date": "2021-05-07T23:19:06.000Z" + }, + "events": [ + { + "uuid": "ab4529e2-4b5c-4c1d-8c7b-12ab83e335e3", + "start": { + "$date": "2021-05-07T22:57:06.000Z" + }, + "end": { + "$date": "2021-05-07T23:19:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "9d361fa5-1b93-4d94-a841-815e223792a0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-07T23:01:16.000Z" + }, + "end": { + "$date": "2021-05-07T23:55:15.000Z" + }, + "events": [ + { + "uuid": "696f4f7c-3789-40ea-a00b-e8193bcc3cef", + "start": { + "$date": "2021-05-07T23:01:16.000Z" + }, + "end": { + "$date": "2021-05-07T23:55:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4819542d-f0bf-460a-aa5e-a9e21cbe59dc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-07T23:06:05.000Z" + }, + "end": { + "$date": "2021-05-08T01:34:03.000Z" + }, + "events": [ + { + "uuid": "8e4a67b5-042a-4fe8-ac72-7f0b61864039", + "start": { + "$date": "2021-05-07T23:06:05.000Z" + }, + "end": { + "$date": "2021-05-08T00:43:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea803656-a34b-4f4f-8608-2f9642322f0d", + "start": { + "$date": "2021-05-08T00:43:05.000Z" + }, + "end": { + "$date": "2021-05-08T01:34:03.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d00e7719-c5d1-401b-83d2-0b6367bdb197", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-07T23:07:50.000Z" + }, + "end": { + "$date": "2021-05-07T23:33:31.000Z" + }, + "events": [ + { + "uuid": "6ffc8e90-865c-4e41-b95c-cda368e7689f", + "start": { + "$date": "2021-05-07T23:07:50.000Z" + }, + "end": { + "$date": "2021-05-07T23:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0e724d49-6d76-46cb-9832-0d7931e4a611", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T05:04:16.000Z" + }, + "end": { + "$date": "2021-05-08T05:46:49.000Z" + }, + "events": [ + { + "uuid": "aa45a8b1-1f59-4e27-921b-1eea5866cb0f", + "start": { + "$date": "2021-05-08T05:04:16.000Z" + }, + "end": { + "$date": "2021-05-08T08:21:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9aff444d-04af-4d03-85e8-53963c5861bd", + "start": { + "$date": "2021-05-08T08:21:16.000Z" + }, + "end": { + "$date": "2021-05-08T08:37:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ff585a6-cde1-4c99-bf88-9717e57f0b1c", + "start": { + "$date": "2021-05-08T08:37:16.000Z" + }, + "end": { + "$date": "2021-05-08T05:46:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bb67ab2-afd6-4db2-a5fe-3df5a562fb12", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-07T23:21:21.000Z" + }, + "end": { + "$date": "2021-05-08T00:00:14.000Z" + }, + "events": [ + { + "uuid": "be7e060f-c518-4518-85b3-56aba83107c2", + "start": { + "$date": "2021-05-07T23:21:21.000Z" + }, + "end": { + "$date": "2021-05-08T00:00:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3f0d916-193c-4034-8615-334863c0cc36", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-07T23:21:10.000Z" + }, + "end": { + "$date": "2021-05-07T23:50:12.000Z" + }, + "events": [ + { + "uuid": "19ba8da8-14fc-4fb1-b930-caeaf139cd76", + "start": { + "$date": "2021-05-07T23:21:10.000Z" + }, + "end": { + "$date": "2021-05-07T23:50:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e891b62-898c-4f26-994b-3e763cd9ac77", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-07T23:34:55.000Z" + }, + "end": { + "$date": "2021-05-08T00:08:48.000Z" + }, + "events": [ + { + "uuid": "7f87bc42-b55d-42f3-b57b-a45146097107", + "start": { + "$date": "2021-05-07T23:34:55.000Z" + }, + "end": { + "$date": "2021-05-08T00:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6b2c4508-0101-4c72-ac99-f8a1be864c58", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-07T23:52:12.000Z" + }, + "end": { + "$date": "2021-05-08T00:49:33.000Z" + }, + "events": [ + { + "uuid": "46162d40-8cc2-4465-840f-a92b746233d9", + "start": { + "$date": "2021-05-07T23:52:12.000Z" + }, + "end": { + "$date": "2021-05-08T00:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcd4e746-240a-426f-9a13-7b5f37620d96", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-08T00:04:25.000Z" + }, + "end": { + "$date": "2021-05-08T00:23:46.000Z" + }, + "events": [ + { + "uuid": "da25bbfb-5581-4318-87e3-dcdc39655ba3", + "start": { + "$date": "2021-05-08T00:04:25.000Z" + }, + "end": { + "$date": "2021-05-08T00:23:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1cff63a-3519-489e-a695-cd444e1023b9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-08T00:04:29.000Z" + }, + "end": { + "$date": "2021-05-08T00:23:52.000Z" + }, + "events": [ + { + "uuid": "462b1478-8595-41b6-b817-a614bb6c97f8", + "start": { + "$date": "2021-05-08T00:04:29.000Z" + }, + "end": { + "$date": "2021-05-08T00:23:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91032fd1-c337-4f04-bee4-59d7146377cf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-08T00:26:31.000Z" + }, + "end": { + "$date": "2021-05-08T00:41:56.000Z" + }, + "events": [ + { + "uuid": "ed7f9faa-7d6d-4e06-8e89-c2fa874cfed3", + "start": { + "$date": "2021-05-08T00:26:31.000Z" + }, + "end": { + "$date": "2021-05-08T00:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f0b6272b-9113-4c6e-a4b8-039f2a129262", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T01:05:45.000Z" + }, + "end": { + "$date": "2021-05-08T01:56:30.000Z" + }, + "events": [ + { + "uuid": "2892867d-adf4-458b-83d9-7ae9dd7d5c85", + "start": { + "$date": "2021-05-08T01:05:45.000Z" + }, + "end": { + "$date": "2021-05-08T01:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d68556c3-b8ab-4ac5-b642-18171f2d8efd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T05:00:16.000Z" + }, + "end": { + "$date": "2021-05-08T07:56:45.000Z" + }, + "events": [ + { + "uuid": "7fbbe987-818b-4ca5-ab46-98cff037c099", + "start": { + "$date": "2021-05-08T05:00:16.000Z" + }, + "end": { + "$date": "2021-05-08T05:02:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24f5715a-b4d5-4244-8f43-c8ab8cbfa6be", + "start": { + "$date": "2021-05-08T05:02:16.000Z" + }, + "end": { + "$date": "2021-05-08T06:31:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1207d0e9-3084-4134-bba2-bdca6b1714ea", + "start": { + "$date": "2021-05-08T06:31:16.000Z" + }, + "end": { + "$date": "2021-05-08T06:33:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80d2e721-6a30-46e1-8409-4edb268e1b61", + "start": { + "$date": "2021-05-08T06:33:16.000Z" + }, + "end": { + "$date": "2021-05-08T06:39:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c90452f-f577-49ab-8f60-4c0a31b89ec5", + "start": { + "$date": "2021-05-08T06:39:16.000Z" + }, + "end": { + "$date": "2021-05-08T06:41:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f3a6880d-1dab-4a2c-8bbe-5833d0e04040", + "start": { + "$date": "2021-05-08T06:41:16.000Z" + }, + "end": { + "$date": "2021-05-08T06:43:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "397582d2-abd5-4c95-8f7c-eeed448ec277", + "start": { + "$date": "2021-05-08T06:43:16.000Z" + }, + "end": { + "$date": "2021-05-08T06:47:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f054b827-2a04-479f-871d-584dc7540e0f", + "start": { + "$date": "2021-05-08T06:47:16.000Z" + }, + "end": { + "$date": "2021-05-08T07:20:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6c5244b-1f1f-49e3-9b2d-1bccecacc262", + "start": { + "$date": "2021-05-08T07:20:16.000Z" + }, + "end": { + "$date": "2021-05-08T07:23:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1cb585d6-57fa-4657-961d-2f3ae9850378", + "start": { + "$date": "2021-05-08T07:23:16.000Z" + }, + "end": { + "$date": "2021-05-08T07:32:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b1245444-5825-4f57-9231-99b34b379bd7", + "start": { + "$date": "2021-05-08T07:32:16.000Z" + }, + "end": { + "$date": "2021-05-08T07:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "459903b7-6f72-429d-b7c0-083fcc56e5cf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-08T02:04:15.000Z" + }, + "end": { + "$date": "2021-05-08T02:54:53.000Z" + }, + "events": [ + { + "uuid": "1e660e39-8b74-4e94-add3-b4b5f5485616", + "start": { + "$date": "2021-05-08T02:04:15.000Z" + }, + "end": { + "$date": "2021-05-08T02:18:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51cee512-1e31-4bff-b8d6-83c40e986831", + "start": { + "$date": "2021-05-08T02:18:15.000Z" + }, + "end": { + "$date": "2021-05-08T02:19:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "33cacc85-80a2-4cd3-bff0-f46f69d7d425", + "start": { + "$date": "2021-05-08T02:19:15.000Z" + }, + "end": { + "$date": "2021-05-08T02:29:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5f184fa-339f-45ba-8098-95dd8150f811", + "start": { + "$date": "2021-05-08T02:29:15.000Z" + }, + "end": { + "$date": "2021-05-08T02:33:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "079e6695-baef-4669-b6bc-5561481ae936", + "start": { + "$date": "2021-05-08T02:33:15.000Z" + }, + "end": { + "$date": "2021-05-08T02:54:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f5e87cf4-ecde-4c73-a11b-25bc2255b4a2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T02:27:22.000Z" + }, + "end": { + "$date": "2021-05-08T04:28:21.000Z" + }, + "events": [ + { + "uuid": "114f05da-ef69-49eb-8364-cf77d2b754d4", + "start": { + "$date": "2021-05-08T02:27:22.000Z" + }, + "end": { + "$date": "2021-05-08T04:28:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "ddac09ae-0df8-4fcf-bffd-9287900e0dd8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-08T02:28:37.000Z" + }, + "end": { + "$date": "2021-05-08T02:38:10.000Z" + }, + "events": [ + { + "uuid": "a6ccdb05-129d-406b-8c5b-71e2f4bc9c5f", + "start": { + "$date": "2021-05-08T02:28:37.000Z" + }, + "end": { + "$date": "2021-05-08T02:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d43e563-ccbc-4e60-8f15-283f403cc3be", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-08T04:41:51.000Z" + }, + "end": { + "$date": "2021-05-08T04:57:29.000Z" + }, + "events": [ + { + "uuid": "b3069852-f5b9-4648-936f-fbec1c100702", + "start": { + "$date": "2021-05-08T04:41:51.000Z" + }, + "end": { + "$date": "2021-05-08T04:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3caaeb38-a7c9-4c75-a686-c8adaca3194b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-08T03:26:41.000Z" + }, + "end": { + "$date": "2021-05-08T07:11:30.000Z" + }, + "events": [ + { + "uuid": "d01f020a-2416-4a8e-8ee7-48108bfd2b23", + "start": { + "$date": "2021-05-08T03:26:41.000Z" + }, + "end": { + "$date": "2021-05-08T07:11:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "389ec2c4-49a5-4ede-919a-9a236d71d2eb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-08T04:26:50.000Z" + }, + "end": { + "$date": "2021-05-08T08:03:07.000Z" + }, + "events": [ + { + "uuid": "774083a9-dbd2-40b2-8940-2fea3b0ce3fd", + "start": { + "$date": "2021-05-08T04:26:50.000Z" + }, + "end": { + "$date": "2021-05-08T08:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c12fa1c3-06e8-433e-b9aa-49093445e7db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T00:41:59.000Z" + }, + "end": { + "$date": "2021-05-08T04:54:09.000Z" + }, + "events": [ + { + "uuid": "ddb0fb16-3bde-4fb1-b865-b9dc6ed436a2", + "start": { + "$date": "2021-05-08T00:41:59.000Z" + }, + "end": { + "$date": "2021-05-08T04:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "45fb4fbe-37dd-4f26-a47f-983054f6a41d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T04:38:42.000Z" + }, + "end": { + "$date": "2021-05-08T07:19:03.000Z" + }, + "events": [ + { + "uuid": "af931a54-92e6-4ef1-a675-b76a3da0562b", + "start": { + "$date": "2021-05-08T04:38:42.000Z" + }, + "end": { + "$date": "2021-05-08T07:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c96b8de4-833b-4224-93b1-1c117d1f0ba8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T04:39:57.000Z" + }, + "end": { + "$date": "2021-05-08T07:06:59.000Z" + }, + "events": [ + { + "uuid": "5355ef81-bd42-45c7-ac94-d16d8a7a5d1f", + "start": { + "$date": "2021-05-08T04:39:57.000Z" + }, + "end": { + "$date": "2021-05-08T07:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f67b7b8c-af34-43dc-aca2-7ccc900efd64", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T04:54:24.000Z" + }, + "end": { + "$date": "2021-05-08T06:29:25.000Z" + }, + "events": [ + { + "uuid": "77794b90-7ae7-4710-9a49-0f0dfa4d3e01", + "start": { + "$date": "2021-05-08T04:54:24.000Z" + }, + "end": { + "$date": "2021-05-08T06:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "05f06ca3-a7a5-40f8-af29-9fc76092aed4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T05:49:04.000Z" + }, + "end": { + "$date": "2021-05-08T06:38:26.000Z" + }, + "events": [ + { + "uuid": "938264a6-85c2-4a21-85d8-e16705384b1d", + "start": { + "$date": "2021-05-08T05:49:04.000Z" + }, + "end": { + "$date": "2021-05-08T06:38:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "adc271a8-edba-4a0b-a617-fb219c278619", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-08T06:15:02.000Z" + }, + "end": { + "$date": "2021-05-08T06:57:01.000Z" + }, + "events": [ + { + "uuid": "4b722b8a-72f5-4b67-9b6f-9ede77c8a313", + "start": { + "$date": "2021-05-08T06:15:02.000Z" + }, + "end": { + "$date": "2021-05-08T06:57:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "d559c0f8-06ef-4366-b372-c1dbb7a955be", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T06:30:03.000Z" + }, + "end": { + "$date": "2021-05-08T06:37:18.000Z" + }, + "events": [ + { + "uuid": "05c6f089-232e-4901-93c0-d693e04fcb89", + "start": { + "$date": "2021-05-08T06:30:03.000Z" + }, + "end": { + "$date": "2021-05-08T06:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", + "uuid": "b40db6a1-5ce0-4b43-91c1-5360e5a21c38", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T06:37:28.000Z" + }, + "end": { + "$date": "2021-05-08T07:52:58.000Z" + }, + "events": [ + { + "uuid": "6473078c-c3f7-483c-809b-8238a57d2241", + "start": { + "$date": "2021-05-08T06:37:28.000Z" + }, + "end": { + "$date": "2021-05-08T07:46:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "571abf99-11f3-4f85-9f7d-cae9a4813522", + "start": { + "$date": "2021-05-08T07:46:28.000Z" + }, + "end": { + "$date": "2021-05-08T07:47:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cf7f21cb-5ebd-490f-bee5-b2ae1744b946", + "start": { + "$date": "2021-05-08T07:47:28.000Z" + }, + "end": { + "$date": "2021-05-08T07:49:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d48f4634-212c-44d0-b96e-985c2f8086c9", + "start": { + "$date": "2021-05-08T07:49:28.000Z" + }, + "end": { + "$date": "2021-05-08T07:52:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3809c2f7-cc27-4132-9968-37373a20673e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T07:22:04.000Z" + }, + "end": { + "$date": "2021-05-08T07:24:34.000Z" + }, + "events": [ + { + "uuid": "1b5d492f-c083-41ff-994b-13cffc6e2916", + "start": { + "$date": "2021-05-08T07:22:04.000Z" + }, + "end": { + "$date": "2021-05-08T07:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "208e2aab-15ed-4684-88d5-84921674eab2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T07:27:35.000Z" + }, + "end": { + "$date": "2021-05-08T07:59:37.000Z" + }, + "events": [ + { + "uuid": "e2188925-fa31-4397-8441-bc8bbf602b91", + "start": { + "$date": "2021-05-08T07:27:35.000Z" + }, + "end": { + "$date": "2021-05-08T07:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3ce44c28-1587-46e6-ae75-55a13c6007d9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-08T07:37:38.000Z" + }, + "end": { + "$date": "2021-05-08T07:58:24.000Z" + }, + "events": [ + { + "uuid": "83e1763f-b76d-49bb-b7ff-c7eb2c7eff24", + "start": { + "$date": "2021-05-08T07:37:38.000Z" + }, + "end": { + "$date": "2021-05-08T07:58:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b5b48f02-c45c-497c-91e3-37b8ceb1da46", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T08:23:22.000Z" + }, + "end": { + "$date": "2021-05-08T09:07:14.000Z" + }, + "events": [ + { + "uuid": "f84bb0eb-fdac-4741-9d57-10023bd6f99e", + "start": { + "$date": "2021-05-08T08:23:22.000Z" + }, + "end": { + "$date": "2021-05-08T09:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9059ceda-4fee-4745-a406-e1fb2d0b4680", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-08T08:43:37.000Z" + }, + "end": { + "$date": "2021-05-08T09:18:40.000Z" + }, + "events": [ + { + "uuid": "7cc11009-1eaf-4253-927a-565e782ef55e", + "start": { + "$date": "2021-05-08T08:43:37.000Z" + }, + "end": { + "$date": "2021-05-08T09:18:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "938de2df-a717-42a2-8d83-0d7a8880e0c9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T09:12:53.000Z" + }, + "end": { + "$date": "2021-05-08T09:24:14.000Z" + }, + "events": [ + { + "uuid": "bb3fa541-6d15-47a4-8737-995103e2656d", + "start": { + "$date": "2021-05-08T09:12:53.000Z" + }, + "end": { + "$date": "2021-05-08T09:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85e57152-3f22-4dd9-908e-d19516bb9804", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-08T09:19:05.000Z" + }, + "end": { + "$date": "2021-05-08T09:54:39.000Z" + }, + "events": [ + { + "uuid": "5df4c866-8e79-4edf-b3fb-9e8d9e0f3db3", + "start": { + "$date": "2021-05-08T09:19:05.000Z" + }, + "end": { + "$date": "2021-05-08T09:54:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8c858096-5883-4aaa-a6b8-f7da621f3e23", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T09:44:11.000Z" + }, + "end": { + "$date": "2021-05-08T09:50:42.000Z" + }, + "events": [ + { + "uuid": "b2cb825e-6db0-46bf-a042-5cb3e84f855a", + "start": { + "$date": "2021-05-08T09:44:11.000Z" + }, + "end": { + "$date": "2021-05-08T09:50:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a72f2bfd-6ddf-4bce-97e6-6607262015bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-08T09:56:23.000Z" + }, + "end": { + "$date": "2021-05-08T10:25:41.000Z" + }, + "events": [ + { + "uuid": "9888619c-fc22-469a-a3b4-ae8d4b66cae1", + "start": { + "$date": "2021-05-08T09:56:23.000Z" + }, + "end": { + "$date": "2021-05-08T10:25:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eddc9d52-b9ce-454a-9e83-d41cd29d8498", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T12:50:33.000Z" + }, + "end": { + "$date": "2021-05-08T13:41:13.000Z" + }, + "events": [ + { + "uuid": "8f9ef489-8a46-4443-89b6-b3ea964929db", + "start": { + "$date": "2021-05-08T12:50:33.000Z" + }, + "end": { + "$date": "2021-05-08T13:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "25ba473c-e697-4d84-8908-e646e05a3815", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T14:14:52.000Z" + }, + "end": { + "$date": "2021-05-08T15:45:01.000Z" + }, + "events": [ + { + "uuid": "b1f5e87d-871a-4273-91a6-07a152bc352c", + "start": { + "$date": "2021-05-08T14:14:52.000Z" + }, + "end": { + "$date": "2021-05-08T15:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "86b09019-f47d-461c-b204-0db790cacc74", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T15:58:45.000Z" + }, + "end": { + "$date": "2021-05-08T16:19:25.000Z" + }, + "events": [ + { + "uuid": "88a8551d-d8c6-4ef4-aa9d-956155d39951", + "start": { + "$date": "2021-05-08T15:58:45.000Z" + }, + "end": { + "$date": "2021-05-08T16:19:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "ac17628f-3521-48bb-b0a1-9f071507a421", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T16:19:56.000Z" + }, + "end": { + "$date": "2021-05-08T16:36:46.000Z" + }, + "events": [ + { + "uuid": "52ef03f8-f353-44e8-9a91-d4c6379e9fe3", + "start": { + "$date": "2021-05-08T16:19:56.000Z" + }, + "end": { + "$date": "2021-05-08T16:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "922bf0f5-930e-41e0-b921-61df0be2599b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T16:38:02.000Z" + }, + "end": { + "$date": "2021-05-08T16:42:07.000Z" + }, + "events": [ + { + "uuid": "825f18a1-0d54-4b77-bc74-5eebb640eb67", + "start": { + "$date": "2021-05-08T16:38:02.000Z" + }, + "end": { + "$date": "2021-05-08T16:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "78be1eb2-3b3f-4481-bca2-53a061aa4190", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T16:42:37.000Z" + }, + "end": { + "$date": "2021-05-08T16:45:42.000Z" + }, + "events": [ + { + "uuid": "be25eb3b-2f63-4d42-ab52-851d0923be41", + "start": { + "$date": "2021-05-08T16:42:37.000Z" + }, + "end": { + "$date": "2021-05-08T16:45:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b52df0d1-344a-45d0-b4da-24bcb97c7a14", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T16:46:02.000Z" + }, + "end": { + "$date": "2021-05-08T17:46:34.000Z" + }, + "events": [ + { + "uuid": "708a7d6a-b7fa-410f-af54-e99693fb6bff", + "start": { + "$date": "2021-05-08T16:46:02.000Z" + }, + "end": { + "$date": "2021-05-08T17:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7a1b5584-b15b-4bfe-89ca-fe7f97314452", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T19:49:17.000Z" + }, + "end": { + "$date": "2021-05-08T19:50:37.000Z" + }, + "events": [ + { + "uuid": "16290b69-1aa0-41b2-922e-e7420cec868d", + "start": { + "$date": "2021-05-08T19:49:17.000Z" + }, + "end": { + "$date": "2021-05-08T20:09:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2598de7d-ff8d-46f1-b3e8-3f5a8887bded", + "start": { + "$date": "2021-05-08T20:09:17.000Z" + }, + "end": { + "$date": "2021-05-08T20:13:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c26a1cc-7cf5-492e-abfe-6b1c6e95633f", + "start": { + "$date": "2021-05-08T20:13:17.000Z" + }, + "end": { + "$date": "2021-05-08T20:36:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e640557-d1bb-4b0c-b3a0-6767363554c7", + "start": { + "$date": "2021-05-08T20:36:17.000Z" + }, + "end": { + "$date": "2021-05-08T20:46:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8a07bd1-c85d-4e63-8d50-5cd1aa092108", + "start": { + "$date": "2021-05-08T20:46:17.000Z" + }, + "end": { + "$date": "2021-05-08T21:48:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4f0f9b78-1589-44b8-93f2-038386d71bce", + "start": { + "$date": "2021-05-08T21:48:17.000Z" + }, + "end": { + "$date": "2021-05-08T21:50:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6b78515-2397-4963-be0f-26c98c12e5c6", + "start": { + "$date": "2021-05-08T21:50:17.000Z" + }, + "end": { + "$date": "2021-05-08T21:53:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d2254db-a00c-49a3-9f9d-40ec8fdbab84", + "start": { + "$date": "2021-05-08T21:53:17.000Z" + }, + "end": { + "$date": "2021-05-08T22:03:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d21dc059-1e42-4dc6-b0ed-d915e2c98c8a", + "start": { + "$date": "2021-05-08T22:03:17.000Z" + }, + "end": { + "$date": "2021-05-08T19:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0faffaf6-18e7-4da4-b05e-d4ad964f349a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T17:53:15.000Z" + }, + "end": { + "$date": "2021-05-08T19:11:21.000Z" + }, + "events": [ + { + "uuid": "d3597b04-bdd1-40a2-b8ca-e82ec71cedef", + "start": { + "$date": "2021-05-08T17:53:15.000Z" + }, + "end": { + "$date": "2021-05-08T19:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2762fccf-0ba3-4a4d-a00c-cf5865910d02", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T20:16:59.000Z" + }, + "end": { + "$date": "2021-05-08T20:17:04.000Z" + }, + "events": [ + { + "uuid": "afb76023-e240-4513-b8f6-269795d56e6e", + "start": { + "$date": "2021-05-08T20:16:59.000Z" + }, + "end": { + "$date": "2021-05-08T20:17:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "806a1e2b-cd9a-4146-bf8f-fde22b8d364c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T19:15:56.000Z" + }, + "end": { + "$date": "2021-05-08T19:36:48.000Z" + }, + "events": [ + { + "uuid": "e12f3090-1418-4054-aa7c-a93d22509048", + "start": { + "$date": "2021-05-08T19:15:56.000Z" + }, + "end": { + "$date": "2021-05-08T19:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c3c8d446-a318-4848-a147-49c1bd41a0e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T19:16:12.000Z" + }, + "end": { + "$date": "2021-05-08T20:06:55.000Z" + }, + "events": [ + { + "uuid": "4e6e146b-f509-4638-bb3b-71dfdb91a5ef", + "start": { + "$date": "2021-05-08T19:16:12.000Z" + }, + "end": { + "$date": "2021-05-08T19:45:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6711654-d6d2-4019-a30a-d215c6876266", + "start": { + "$date": "2021-05-08T19:45:12.000Z" + }, + "end": { + "$date": "2021-05-08T19:54:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6415464-fb3c-44b9-abb8-09effc9dd722", + "start": { + "$date": "2021-05-08T19:54:12.000Z" + }, + "end": { + "$date": "2021-05-08T20:04:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c92e04f5-0b52-4e13-9024-5760cd14b1a0", + "start": { + "$date": "2021-05-08T20:04:12.000Z" + }, + "end": { + "$date": "2021-05-08T20:06:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d0776661-9ab0-4be0-abe4-57a1d7f099cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T19:51:52.000Z" + }, + "end": { + "$date": "2021-05-08T19:53:38.000Z" + }, + "events": [ + { + "uuid": "58ecddfd-fc1e-4780-8210-81dc362b608d", + "start": { + "$date": "2021-05-08T19:51:52.000Z" + }, + "end": { + "$date": "2021-05-08T19:53:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4531216e-9fa4-459d-b609-47d199fb2490", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T19:55:37.000Z" + }, + "end": { + "$date": "2021-05-08T20:03:58.000Z" + }, + "events": [ + { + "uuid": "351797bb-f7aa-47b3-b84c-d4035415210f", + "start": { + "$date": "2021-05-08T19:55:37.000Z" + }, + "end": { + "$date": "2021-05-08T20:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "622c4471-97e6-4607-8f93-2203b9e0ffae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T19:57:39.000Z" + }, + "end": { + "$date": "2021-05-08T20:16:56.000Z" + }, + "events": [ + { + "uuid": "07bcb1af-2e53-49e5-a598-8415b316d8ec", + "start": { + "$date": "2021-05-08T19:57:39.000Z" + }, + "end": { + "$date": "2021-05-08T20:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1b224a53-54cd-4c35-b72e-c88a9941ecfd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T20:04:33.000Z" + }, + "end": { + "$date": "2021-05-08T20:05:38.000Z" + }, + "events": [ + { + "uuid": "0ac9a823-81fd-49c0-bd27-45019ffb36d6", + "start": { + "$date": "2021-05-08T20:04:33.000Z" + }, + "end": { + "$date": "2021-05-08T20:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ede3ebfb-efae-41ea-afe1-bb1eaf3f190c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T20:06:08.000Z" + }, + "end": { + "$date": "2021-05-08T21:34:40.000Z" + }, + "events": [ + { + "uuid": "ff9f7c0d-7a63-436a-8db1-398671f8488b", + "start": { + "$date": "2021-05-08T20:06:08.000Z" + }, + "end": { + "$date": "2021-05-08T21:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0fb30a94-22dc-48f7-82a2-ca8af959b94b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-08T20:09:25.000Z" + }, + "end": { + "$date": "2021-05-08T22:05:53.000Z" + }, + "events": [ + { + "uuid": "07d5f57f-1226-4692-8bdb-f2a40121d878", + "start": { + "$date": "2021-05-08T20:09:25.000Z" + }, + "end": { + "$date": "2021-05-08T22:05:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ca3c583-486d-4e0e-98e5-34365011675c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T20:34:00.000Z" + }, + "end": { + "$date": "2021-05-08T21:11:01.000Z" + }, + "events": [ + { + "uuid": "d2bb5431-79f7-4a0b-a35f-823917c10c1e", + "start": { + "$date": "2021-05-08T20:34:00.000Z" + }, + "end": { + "$date": "2021-05-08T21:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "512cecdc-f159-47cd-ad82-1693aef3ae48", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T21:44:31.000Z" + }, + "end": { + "$date": "2021-05-08T22:18:17.000Z" + }, + "events": [ + { + "uuid": "11c2a11e-d674-404a-a6c0-8cfa02197c5b", + "start": { + "$date": "2021-05-08T21:44:31.000Z" + }, + "end": { + "$date": "2021-05-08T21:55:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d2ce5314-2fec-4882-89da-542fe35ebf20", + "start": { + "$date": "2021-05-08T21:55:31.000Z" + }, + "end": { + "$date": "2021-05-08T22:10:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "693f4c35-6d9d-4b04-b0b5-7ba7e9a2145b", + "start": { + "$date": "2021-05-08T22:10:31.000Z" + }, + "end": { + "$date": "2021-05-08T22:18:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "caa329db-6c33-415d-b94d-deae25be24f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-08T21:18:22.000Z" + }, + "end": { + "$date": "2021-05-08T22:28:15.000Z" + }, + "events": [ + { + "uuid": "a1438ac8-bf7c-4e78-8086-f05850e44678", + "start": { + "$date": "2021-05-08T21:18:22.000Z" + }, + "end": { + "$date": "2021-05-08T22:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8293961b-fd57-42e3-a80d-a6ecf0ba5640", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-08T21:32:31.000Z" + }, + "end": { + "$date": "2021-05-08T22:18:51.000Z" + }, + "events": [ + { + "uuid": "8a027b2c-47a2-4c08-8d81-3497419b10c0", + "start": { + "$date": "2021-05-08T21:32:31.000Z" + }, + "end": { + "$date": "2021-05-08T22:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0d8e834e-91af-4d95-b857-a47b84cda6fe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T21:37:47.000Z" + }, + "end": { + "$date": "2021-05-08T22:01:10.000Z" + }, + "events": [ + { + "uuid": "10793aae-7333-482d-96d8-329a2cbc9d59", + "start": { + "$date": "2021-05-08T21:37:47.000Z" + }, + "end": { + "$date": "2021-05-08T22:01:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "dbb3aff1-2247-49e1-bb80-04a611b04a15", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T22:04:26.000Z" + }, + "end": { + "$date": "2021-05-08T22:46:19.000Z" + }, + "events": [ + { + "uuid": "64b2aa6a-319c-42fb-b204-4bf121ad550b", + "start": { + "$date": "2021-05-08T22:04:26.000Z" + }, + "end": { + "$date": "2021-05-08T22:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4c99e801-7602-4704-9ef9-e9084b2e6ed2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-08T22:16:26.000Z" + }, + "end": { + "$date": "2021-05-09T02:19:37.000Z" + }, + "events": [ + { + "uuid": "8a7de7a4-bdcc-409c-98a0-4c7ff96c6b9f", + "start": { + "$date": "2021-05-08T22:16:26.000Z" + }, + "end": { + "$date": "2021-05-08T23:44:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "961dd5fd-c3f5-4554-a51e-996f1646a8e4", + "start": { + "$date": "2021-05-08T23:44:26.000Z" + }, + "end": { + "$date": "2021-05-08T23:54:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "51aad3b7-99b6-4c1d-ae12-cfea8f78636b", + "start": { + "$date": "2021-05-08T23:54:26.000Z" + }, + "end": { + "$date": "2021-05-09T02:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb0bc380-e9dc-48c9-91d9-82d49fcfee95", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T22:19:14.000Z" + }, + "end": { + "$date": "2021-05-08T22:21:32.000Z" + }, + "events": [ + { + "uuid": "34667404-93db-4283-b01a-b6cc1cc321af", + "start": { + "$date": "2021-05-08T22:19:14.000Z" + }, + "end": { + "$date": "2021-05-08T22:21:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e7ea940-0de2-4d41-9c71-62ea8f63fe25", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-08T22:22:48.000Z" + }, + "end": { + "$date": "2021-05-08T22:43:18.000Z" + }, + "events": [ + { + "uuid": "917654f8-1594-4281-95b4-04204783957c", + "start": { + "$date": "2021-05-08T22:22:48.000Z" + }, + "end": { + "$date": "2021-05-08T22:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58cb5a6d-793b-429f-b13f-fe721bb37df8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T22:24:17.000Z" + }, + "end": { + "$date": "2021-05-08T22:43:14.000Z" + }, + "events": [ + { + "uuid": "18ce5afd-6f71-4dc3-9a6d-ff98437bf410", + "start": { + "$date": "2021-05-08T22:24:17.000Z" + }, + "end": { + "$date": "2021-05-08T22:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4286c302-a681-4332-9357-ec94928c055f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-08T23:01:10.000Z" + }, + "end": { + "$date": "2021-05-08T23:22:31.000Z" + }, + "events": [ + { + "uuid": "36f73fb9-2f3f-436b-9328-09d353b0974a", + "start": { + "$date": "2021-05-08T23:01:10.000Z" + }, + "end": { + "$date": "2021-05-08T23:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c22f6b74-4277-4a5f-9a56-fac3eb7b69c5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T22:44:44.000Z" + }, + "end": { + "$date": "2021-05-08T23:00:41.000Z" + }, + "events": [ + { + "uuid": "872225cc-c5c1-4f61-a203-cf1474dcc6d4", + "start": { + "$date": "2021-05-08T22:44:44.000Z" + }, + "end": { + "$date": "2021-05-08T23:00:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "90083a01-470c-48b0-8d43-a3556df1d2d1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T22:46:25.000Z" + }, + "end": { + "$date": "2021-05-08T23:00:12.000Z" + }, + "events": [ + { + "uuid": "39618c39-5d7e-48ac-8578-665c7d0febdf", + "start": { + "$date": "2021-05-08T22:46:25.000Z" + }, + "end": { + "$date": "2021-05-08T23:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17095993-5b4f-4ae0-9356-26dc2d79cdc2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-08T23:01:34.000Z" + }, + "end": { + "$date": "2021-05-08T23:18:11.000Z" + }, + "events": [ + { + "uuid": "d89bbef2-f59c-4400-bb2a-59d897227b00", + "start": { + "$date": "2021-05-08T23:01:34.000Z" + }, + "end": { + "$date": "2021-05-08T23:18:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3349a313-1467-4a4a-b4b1-30bfe101c9dd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T23:16:34.000Z" + }, + "end": { + "$date": "2021-05-08T23:16:38.000Z" + }, + "events": [ + { + "uuid": "e990dc47-b117-4e2b-978b-5adc4e774294", + "start": { + "$date": "2021-05-08T23:16:34.000Z" + }, + "end": { + "$date": "2021-05-08T23:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "641249e7-15e6-438e-94ab-247f4bf2131b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-08T23:01:36.000Z" + }, + "end": { + "$date": "2021-05-08T23:22:23.000Z" + }, + "events": [ + { + "uuid": "6db5d092-a104-40cf-b7b3-59d3691714c7", + "start": { + "$date": "2021-05-08T23:01:36.000Z" + }, + "end": { + "$date": "2021-05-08T23:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "24528977-1f55-4cbe-840e-e6c2c938fd24", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-08T23:17:51.000Z" + }, + "end": { + "$date": "2021-05-08T23:58:42.000Z" + }, + "events": [ + { + "uuid": "7d59a2da-affe-41c0-9374-bd74b00311d5", + "start": { + "$date": "2021-05-08T23:17:51.000Z" + }, + "end": { + "$date": "2021-05-08T23:18:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4167d18c-faf5-4f68-a205-689e04798e9d", + "start": { + "$date": "2021-05-08T23:18:51.000Z" + }, + "end": { + "$date": "2021-05-08T23:58:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c2550e46-b9d8-4ea7-9d8e-2698311a265a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-09T00:46:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:36:39.000Z" + }, + "events": [ + { + "uuid": "28c5b5db-6745-4526-bdda-f2eb42451f48", + "start": { + "$date": "2021-05-09T00:46:14.000Z" + }, + "end": { + "$date": "2021-05-09T00:48:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6062df95-34a9-4b43-ba7a-85affe1e36d0", + "start": { + "$date": "2021-05-09T00:48:14.000Z" + }, + "end": { + "$date": "2021-05-09T01:16:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7a6f72f-6678-4126-b336-6d939463f27c", + "start": { + "$date": "2021-05-09T01:16:14.000Z" + }, + "end": { + "$date": "2021-05-09T01:18:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b9f0cc66-2783-495c-ab57-df831fa375cc", + "start": { + "$date": "2021-05-09T01:18:14.000Z" + }, + "end": { + "$date": "2021-05-09T01:59:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "601da60f-3ca7-4ab5-b335-07a81de3f43f", + "start": { + "$date": "2021-05-09T01:59:14.000Z" + }, + "end": { + "$date": "2021-05-09T02:03:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ac6d657c-2b8f-4b3a-951e-f27917f087c6", + "start": { + "$date": "2021-05-09T02:03:14.000Z" + }, + "end": { + "$date": "2021-05-09T02:27:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e19e460-2b3b-47ec-9565-774efd53febc", + "start": { + "$date": "2021-05-09T02:27:14.000Z" + }, + "end": { + "$date": "2021-05-09T02:29:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93ad34f8-74d8-435c-8430-1e1098ec3f98", + "start": { + "$date": "2021-05-09T02:29:14.000Z" + }, + "end": { + "$date": "2021-05-09T02:36:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6a8111b-7666-44c8-9566-7f493f26f3c3", + "start": { + "$date": "2021-05-09T02:36:14.000Z" + }, + "end": { + "$date": "2021-05-09T02:38:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6c32ecc-8568-4aff-856a-892f2b2d524a", + "start": { + "$date": "2021-05-09T02:38:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:07:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0b464b41-1321-4e82-8bd5-0d7a53ca0055", + "start": { + "$date": "2021-05-09T03:07:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:12:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e11f8fa-4878-48f4-a5e0-d7ceaf10fbb2", + "start": { + "$date": "2021-05-09T03:12:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:18:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "401ec827-2a9a-4b86-9e38-a88a0eaba664", + "start": { + "$date": "2021-05-09T03:18:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:20:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06b9a33b-7b85-4be2-b7cf-24486868ea1c", + "start": { + "$date": "2021-05-09T03:20:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:25:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9d36b923-9cb6-42e2-825d-85b5b38355c2", + "start": { + "$date": "2021-05-09T03:25:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:28:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4b38d6b-4a92-4726-896b-2fd1e2720276", + "start": { + "$date": "2021-05-09T03:28:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:31:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b3d1a42-22eb-4834-ad1a-b2e59c8c917f", + "start": { + "$date": "2021-05-09T03:31:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:33:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db1425a9-5b9c-4203-98b2-f76d85b10054", + "start": { + "$date": "2021-05-09T03:33:14.000Z" + }, + "end": { + "$date": "2021-05-09T03:48:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d622d288-5de1-420f-b038-a0366638124d", + "start": { + "$date": "2021-05-09T03:48:14.000Z" + }, + "end": { + "$date": "2021-05-09T04:00:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62881dd4-f072-4ce6-8479-cb850ff89bd4", + "start": { + "$date": "2021-05-09T04:00:14.000Z" + }, + "end": { + "$date": "2021-05-09T04:52:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fe9422d2-1f7c-4b91-8a0a-304410ac4f85", + "start": { + "$date": "2021-05-09T04:52:14.000Z" + }, + "end": { + "$date": "2021-05-09T04:54:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "904372aa-8ad5-448d-9f43-43f4325e883f", + "start": { + "$date": "2021-05-09T04:54:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:01:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf73a91f-81ab-462b-99c3-cbf23135ae3f", + "start": { + "$date": "2021-05-09T05:01:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:03:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cba23122-0757-4cc1-93da-3980ca89f2e6", + "start": { + "$date": "2021-05-09T05:03:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:07:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ead17a0a-11a3-4f82-a813-5c1aea2a1b97", + "start": { + "$date": "2021-05-09T05:07:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:09:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5dd4c7c-a7e3-42d2-94ee-83fe57f75c73", + "start": { + "$date": "2021-05-09T05:09:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:17:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4c74c165-5881-418b-8a6e-87e6000626cf", + "start": { + "$date": "2021-05-09T05:17:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:20:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51906d88-dfaf-42c9-9137-51e1ad3c6f6b", + "start": { + "$date": "2021-05-09T05:20:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:23:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97b56681-1ffc-4af7-b7a4-f1f99c63abfc", + "start": { + "$date": "2021-05-09T05:23:14.000Z" + }, + "end": { + "$date": "2021-05-09T05:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a82fd760-1c15-4503-8fb7-520e7748a226", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-09T01:55:37.000Z" + }, + "end": { + "$date": "2021-05-09T02:24:18.000Z" + }, + "events": [ + { + "uuid": "d6d1915c-c6c8-494c-bce2-5a618cdc5424", + "start": { + "$date": "2021-05-09T01:55:37.000Z" + }, + "end": { + "$date": "2021-05-09T02:25:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db0bfe45-81d0-49d4-80c2-f2dea7635788", + "start": { + "$date": "2021-05-09T02:25:37.000Z" + }, + "end": { + "$date": "2021-05-09T02:35:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04a4571e-484f-4d9b-b560-ea19133a1f33", + "start": { + "$date": "2021-05-09T02:35:37.000Z" + }, + "end": { + "$date": "2021-05-09T02:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6f7508ca-2b30-4d4a-bcd8-e208f298c9b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-09T01:19:30.000Z" + }, + "end": { + "$date": "2021-05-09T02:17:11.000Z" + }, + "events": [ + { + "uuid": "0d3ba010-2d15-4159-9624-a2e8f0e484fe", + "start": { + "$date": "2021-05-09T01:19:30.000Z" + }, + "end": { + "$date": "2021-05-09T02:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "75b3da15-39c3-4c48-9d75-13519c891603", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T01:19:28.000Z" + }, + "end": { + "$date": "2021-05-09T01:45:38.000Z" + }, + "events": [ + { + "uuid": "76c30c2e-8548-49df-99f1-2daa520e3174", + "start": { + "$date": "2021-05-09T01:19:28.000Z" + }, + "end": { + "$date": "2021-05-09T01:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8e390a25-8599-4165-abd0-3e7088fdfa7a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T01:19:28.000Z" + }, + "end": { + "$date": "2021-05-09T02:01:22.000Z" + }, + "events": [ + { + "uuid": "57fad1a5-e19c-4970-9210-6e866e03a63b", + "start": { + "$date": "2021-05-09T01:19:28.000Z" + }, + "end": { + "$date": "2021-05-09T02:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b4616ef-d080-429c-8fc6-d3e358f3dd07", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-09T02:31:48.000Z" + }, + "end": { + "$date": "2021-05-09T02:57:48.000Z" + }, + "events": [ + { + "uuid": "e41ebde1-38b2-4cb3-83b3-6933475036a7", + "start": { + "$date": "2021-05-09T02:31:48.000Z" + }, + "end": { + "$date": "2021-05-09T02:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b0b41b4a-cc58-4ca1-8e6e-abd737faf4ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-09T02:28:58.000Z" + }, + "end": { + "$date": "2021-05-09T02:56:04.000Z" + }, + "events": [ + { + "uuid": "97dc7341-00a5-4323-b1e7-944f2dc3732f", + "start": { + "$date": "2021-05-09T02:28:58.000Z" + }, + "end": { + "$date": "2021-05-09T02:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "28b1c49e-f5d2-44a9-a387-52f20157a6b7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-09T02:52:25.000Z" + }, + "end": { + "$date": "2021-05-09T07:35:26.000Z" + }, + "events": [ + { + "uuid": "f25f4425-2c5d-4851-8b27-e3ff56d3db67", + "start": { + "$date": "2021-05-09T02:52:25.000Z" + }, + "end": { + "$date": "2021-05-09T07:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f9655dad-0293-44c9-b77a-92072fc20744", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-09T03:40:49.000Z" + }, + "end": { + "$date": "2021-05-09T06:20:08.000Z" + }, + "events": [ + { + "uuid": "f6ed33d0-1209-439f-8ef5-ff22474c33c1", + "start": { + "$date": "2021-05-09T03:40:49.000Z" + }, + "end": { + "$date": "2021-05-09T06:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "c0ad5ba9-9ecc-4152-af85-fe9da5f1aabc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-09T04:17:53.000Z" + }, + "end": { + "$date": "2021-05-09T05:35:17.000Z" + }, + "events": [ + { + "uuid": "6c7492ce-3c7e-4840-b991-ca4abfda0488", + "start": { + "$date": "2021-05-09T04:17:53.000Z" + }, + "end": { + "$date": "2021-05-09T05:35:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6f19a6c2-67f2-4da4-94c4-396888e16dc8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-09T04:27:16.000Z" + }, + "end": { + "$date": "2021-05-09T07:35:25.000Z" + }, + "events": [ + { + "uuid": "da458c27-75bd-4ce7-942f-ebc21ec74580", + "start": { + "$date": "2021-05-09T04:27:16.000Z" + }, + "end": { + "$date": "2021-05-09T07:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1cececdf-69ce-4bc7-b01a-3107c1f956ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T04:36:33.000Z" + }, + "end": { + "$date": "2021-05-09T06:21:50.000Z" + }, + "events": [ + { + "uuid": "262d70de-9a94-428c-8d3a-314a51b44789", + "start": { + "$date": "2021-05-09T04:36:33.000Z" + }, + "end": { + "$date": "2021-05-09T06:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ac0b2d66-a610-484e-ba08-b7bd4987e721", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-09T04:46:35.000Z" + }, + "end": { + "$date": "2021-05-09T05:18:18.000Z" + }, + "events": [ + { + "uuid": "4737e45f-a786-48ae-87bc-c282017c2339", + "start": { + "$date": "2021-05-09T04:46:35.000Z" + }, + "end": { + "$date": "2021-05-09T05:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "36ee5120-9261-49f9-a240-84eb788914b4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T05:16:40.000Z" + }, + "end": { + "$date": "2021-05-09T05:34:14.000Z" + }, + "events": [ + { + "uuid": "45cdf4e8-95f1-4df0-a3b3-a9bdff7c2f35", + "start": { + "$date": "2021-05-09T05:16:40.000Z" + }, + "end": { + "$date": "2021-05-09T05:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "103bc253-f5b2-4eb2-8cbe-624e975bb133", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-09T05:18:48.000Z" + }, + "end": { + "$date": "2021-05-09T05:28:41.000Z" + }, + "events": [ + { + "uuid": "ede913ed-1df4-41be-9123-cca883dc2e91", + "start": { + "$date": "2021-05-09T05:18:48.000Z" + }, + "end": { + "$date": "2021-05-09T05:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3d036a5-ee03-4dff-aaf9-a84a6b52405e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T05:24:46.000Z" + }, + "end": { + "$date": "2021-05-09T05:56:41.000Z" + }, + "events": [ + { + "uuid": "7e3dc0f8-6f22-4b0f-b265-233d446de6b7", + "start": { + "$date": "2021-05-09T05:24:46.000Z" + }, + "end": { + "$date": "2021-05-09T05:56:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "5af59d27-bb3a-4d89-816d-6844c3794a6b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-09T05:28:26.000Z" + }, + "end": { + "$date": "2021-05-09T07:56:00.000Z" + }, + "events": [ + { + "uuid": "beffed5f-6acd-4576-a0f7-1e1544fb0c7d", + "start": { + "$date": "2021-05-09T05:28:26.000Z" + }, + "end": { + "$date": "2021-05-09T07:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "17a09459-0e1c-452b-a8c4-8b1826c745cb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T05:37:46.000Z" + }, + "end": { + "$date": "2021-05-09T07:56:43.000Z" + }, + "events": [ + { + "uuid": "6732cc08-1a2c-4344-b859-54ec2dbc437a", + "start": { + "$date": "2021-05-09T05:37:46.000Z" + }, + "end": { + "$date": "2021-05-09T07:12:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2f654ac-1124-4bf9-81c0-b95b1c578225", + "start": { + "$date": "2021-05-09T07:12:46.000Z" + }, + "end": { + "$date": "2021-05-09T07:56:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "66916c85-f25a-4dd8-a06f-8292c82af92f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-09T06:23:44.000Z" + }, + "end": { + "$date": "2021-05-09T06:33:49.000Z" + }, + "events": [ + { + "uuid": "801fc84b-f2da-4311-b14a-99053d015d56", + "start": { + "$date": "2021-05-09T06:23:44.000Z" + }, + "end": { + "$date": "2021-05-09T06:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "1648d62d-7621-4229-b6cf-0dc933cc07d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T06:30:41.000Z" + }, + "end": { + "$date": "2021-05-09T06:35:51.000Z" + }, + "events": [ + { + "uuid": "b6022ecb-4b6a-4dc0-af7d-9c51a156a578", + "start": { + "$date": "2021-05-09T06:30:41.000Z" + }, + "end": { + "$date": "2021-05-09T06:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "647a77cd-737d-4137-bd46-cbbe83fd1711", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-09T06:35:00.000Z" + }, + "end": { + "$date": "2021-05-09T08:26:45.000Z" + }, + "events": [ + { + "uuid": "a237dbf9-6afc-44fc-85a0-07ce54b93c69", + "start": { + "$date": "2021-05-09T06:35:00.000Z" + }, + "end": { + "$date": "2021-05-09T08:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cf19fc4d-931d-4595-849d-6c9daeca8f8b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-09T07:58:52.000Z" + }, + "end": { + "$date": "2021-05-09T08:03:08.000Z" + }, + "events": [ + { + "uuid": "da67eba4-5aef-4364-b6f7-f7c2af519371", + "start": { + "$date": "2021-05-09T07:58:52.000Z" + }, + "end": { + "$date": "2021-05-09T08:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f1242bf-577c-42c9-8110-1e7d91c7b225", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T08:13:45.000Z" + }, + "end": { + "$date": "2021-05-09T08:43:47.000Z" + }, + "events": [ + { + "uuid": "07b5cb8a-6a47-42e9-b1f5-de0eeb45f064", + "start": { + "$date": "2021-05-09T08:13:45.000Z" + }, + "end": { + "$date": "2021-05-09T08:43:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0319e8a8-e4bc-43c1-8460-d894292b7f20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T08:45:19.000Z" + }, + "end": { + "$date": "2021-05-09T09:18:53.000Z" + }, + "events": [ + { + "uuid": "15fd7a92-98ca-4635-bd34-cb4645e81840", + "start": { + "$date": "2021-05-09T08:45:19.000Z" + }, + "end": { + "$date": "2021-05-09T09:18:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "58004ad0-a2ac-404f-878b-65700a13d285", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T14:10:16.000Z" + }, + "end": { + "$date": "2021-05-09T14:41:17.000Z" + }, + "events": [ + { + "uuid": "cff32a94-1202-4c9f-8fb5-aadc4222a727", + "start": { + "$date": "2021-05-09T14:10:16.000Z" + }, + "end": { + "$date": "2021-05-09T14:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "091696eb-ee79-447b-a6dd-5a4a05cbebcf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T14:55:45.000Z" + }, + "end": { + "$date": "2021-05-09T15:04:16.000Z" + }, + "events": [ + { + "uuid": "f13241cf-02a6-4a91-a628-365902085b3f", + "start": { + "$date": "2021-05-09T14:55:45.000Z" + }, + "end": { + "$date": "2021-05-09T15:04:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "1d5a6de5-5594-4669-b211-3cf1e4ac7236", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T15:05:01.000Z" + }, + "end": { + "$date": "2021-05-09T15:18:01.000Z" + }, + "events": [ + { + "uuid": "90e878a7-aa4c-4efa-a96c-0b75e404c59e", + "start": { + "$date": "2021-05-09T15:05:01.000Z" + }, + "end": { + "$date": "2021-05-09T15:18:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5ab8693b-123c-41c9-93ef-e9a76117d0b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T15:20:17.000Z" + }, + "end": { + "$date": "2021-05-09T15:50:43.000Z" + }, + "events": [ + { + "uuid": "68fd881b-ab06-40fd-a073-691ac406f266", + "start": { + "$date": "2021-05-09T15:20:17.000Z" + }, + "end": { + "$date": "2021-05-09T15:50:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3cd28999-f7c9-482a-807a-d1c243d88e27", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T18:10:04.000Z" + }, + "end": { + "$date": "2021-05-09T18:10:14.000Z" + }, + "events": [ + { + "uuid": "c802e221-78d8-44cb-beba-a34ef234c470", + "start": { + "$date": "2021-05-09T18:10:04.000Z" + }, + "end": { + "$date": "2021-05-09T18:35:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5059bc75-6490-4e63-a618-61825de3c61b", + "start": { + "$date": "2021-05-09T18:35:04.000Z" + }, + "end": { + "$date": "2021-05-09T18:45:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db7fd1ad-8327-42c6-9c6e-c9fcc3526e1c", + "start": { + "$date": "2021-05-09T18:45:04.000Z" + }, + "end": { + "$date": "2021-05-09T18:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "34a3d69d-b09f-43e0-b137-08ddffc3274a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T15:51:09.000Z" + }, + "end": { + "$date": "2021-05-09T15:54:49.000Z" + }, + "events": [ + { + "uuid": "1473ed70-3bac-4757-a125-0475b1d58bca", + "start": { + "$date": "2021-05-09T15:51:09.000Z" + }, + "end": { + "$date": "2021-05-09T15:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3e604da5-96c4-4c08-8ae7-ffcfc3d46c1a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T15:54:45.000Z" + }, + "end": { + "$date": "2021-05-09T16:43:52.000Z" + }, + "events": [ + { + "uuid": "a1a1df70-d0b2-4a13-afdb-0dcc3572ddb1", + "start": { + "$date": "2021-05-09T15:54:45.000Z" + }, + "end": { + "$date": "2021-05-09T16:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", + "uuid": "1c10d13c-4f84-4184-a5de-b1fa939e733b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T15:56:24.000Z" + }, + "end": { + "$date": "2021-05-09T16:30:00.000Z" + }, + "events": [ + { + "uuid": "7887a454-b53f-4185-9ffe-e562cdf651fe", + "start": { + "$date": "2021-05-09T15:56:24.000Z" + }, + "end": { + "$date": "2021-05-09T16:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d63ab244-d7be-40b6-be33-4d04d1c9e969", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-09T18:53:46.000Z" + }, + "end": { + "$date": "2021-05-09T21:17:04.000Z" + }, + "events": [ + { + "uuid": "f894356f-03a8-4279-be3b-7349f31f5cfe", + "start": { + "$date": "2021-05-09T18:53:46.000Z" + }, + "end": { + "$date": "2021-05-09T19:24:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f503d23-8571-4653-b6b3-ebba74161905", + "start": { + "$date": "2021-05-09T19:24:46.000Z" + }, + "end": { + "$date": "2021-05-09T20:17:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b2c30db0-63d7-4358-bfe0-26e282487407", + "start": { + "$date": "2021-05-09T20:17:46.000Z" + }, + "end": { + "$date": "2021-05-09T23:22:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7da46c24-fecc-4568-bd05-ea4a5a5d4166", + "start": { + "$date": "2021-05-09T23:22:46.000Z" + }, + "end": { + "$date": "2021-05-09T23:53:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "207f6301-d2f3-4b17-b08f-238e89f4ec45", + "start": { + "$date": "2021-05-09T23:53:46.000Z" + }, + "end": { + "$date": "2021-05-09T21:17:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfab06dc-92b6-484c-95c3-e11831ad5889", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T16:44:50.000Z" + }, + "end": { + "$date": "2021-05-09T17:02:14.000Z" + }, + "events": [ + { + "uuid": "ed31006c-90a5-4e44-93a7-39346a2258a1", + "start": { + "$date": "2021-05-09T16:44:50.000Z" + }, + "end": { + "$date": "2021-05-09T17:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fcdd4026-8d7e-4e38-836d-b98f8cc69402", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T17:05:48.000Z" + }, + "end": { + "$date": "2021-05-09T17:15:33.000Z" + }, + "events": [ + { + "uuid": "b92668b5-a075-49f2-8ace-8d9accc2ba22", + "start": { + "$date": "2021-05-09T17:05:48.000Z" + }, + "end": { + "$date": "2021-05-09T17:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1c9542a3-9e7b-42a7-963f-857019ee8a38", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T17:15:48.000Z" + }, + "end": { + "$date": "2021-05-09T17:41:20.000Z" + }, + "events": [ + { + "uuid": "618d7f44-56ad-4f46-9dbf-2844d08b0fe7", + "start": { + "$date": "2021-05-09T17:15:48.000Z" + }, + "end": { + "$date": "2021-05-09T17:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "775af28c-5856-49bc-a493-c06bb57d80bb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T18:00:24.000Z" + }, + "end": { + "$date": "2021-05-09T18:59:07.000Z" + }, + "events": [ + { + "uuid": "aea6f490-7f28-48bc-a116-426cec4cf8b1", + "start": { + "$date": "2021-05-09T18:00:24.000Z" + }, + "end": { + "$date": "2021-05-09T18:59:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "648203a6-9871-4449-86c7-a0d8808ab19d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T18:14:05.000Z" + }, + "end": { + "$date": "2021-05-09T19:05:09.000Z" + }, + "events": [ + { + "uuid": "e0c8b355-0d00-4729-aff6-e2dc35a13516", + "start": { + "$date": "2021-05-09T18:14:05.000Z" + }, + "end": { + "$date": "2021-05-09T19:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b1ed78b-ea20-49ee-aee1-5beafd3c397e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T19:06:49.000Z" + }, + "end": { + "$date": "2021-05-09T19:22:50.000Z" + }, + "events": [ + { + "uuid": "3a213617-5faa-4181-a7c7-13e36a5ffc14", + "start": { + "$date": "2021-05-09T19:06:49.000Z" + }, + "end": { + "$date": "2021-05-09T19:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3d8877a8-93c8-49b4-b865-c4517ae75696", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T19:19:19.000Z" + }, + "end": { + "$date": "2021-05-09T19:27:19.000Z" + }, + "events": [ + { + "uuid": "b9571395-a5f5-422c-84fa-6845cad573e6", + "start": { + "$date": "2021-05-09T19:19:19.000Z" + }, + "end": { + "$date": "2021-05-09T19:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a62ff79d-0577-4521-9a53-6c8412c7570b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-09T19:21:01.000Z" + }, + "end": { + "$date": "2021-05-09T20:20:47.000Z" + }, + "events": [ + { + "uuid": "8664ce6c-635c-498d-b27b-880c9ddb85a8", + "start": { + "$date": "2021-05-09T19:21:01.000Z" + }, + "end": { + "$date": "2021-05-09T20:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06ea041f-2fec-4ed2-9bff-f9b386792468", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T19:24:40.000Z" + }, + "end": { + "$date": "2021-05-09T19:42:51.000Z" + }, + "events": [ + { + "uuid": "93d56c84-9d43-4100-8b69-744d9cf3c205", + "start": { + "$date": "2021-05-09T19:24:40.000Z" + }, + "end": { + "$date": "2021-05-09T19:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "040388a1-128a-4418-9fa2-68984c4422bf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T19:27:40.000Z" + }, + "end": { + "$date": "2021-05-09T20:17:22.000Z" + }, + "events": [ + { + "uuid": "eae0cd1e-f484-4872-863e-0fd4d16d1cbf", + "start": { + "$date": "2021-05-09T19:27:40.000Z" + }, + "end": { + "$date": "2021-05-09T19:59:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa372038-ff47-4e56-89a6-ea07d27af3a6", + "start": { + "$date": "2021-05-09T19:59:40.000Z" + }, + "end": { + "$date": "2021-05-09T20:03:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f738f5a3-4b3e-4e27-9196-d0bb833308b6", + "start": { + "$date": "2021-05-09T20:03:40.000Z" + }, + "end": { + "$date": "2021-05-09T20:14:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d0848f4-41d4-48bf-b99e-b254a19cd385", + "start": { + "$date": "2021-05-09T20:14:40.000Z" + }, + "end": { + "$date": "2021-05-09T20:17:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a7c4e9a-ae22-4e77-8d30-5a1cb3119f3a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T19:45:06.000Z" + }, + "end": { + "$date": "2021-05-09T20:04:02.000Z" + }, + "events": [ + { + "uuid": "5717fc9c-1f88-426f-ac79-e0d01cbc30b2", + "start": { + "$date": "2021-05-09T19:45:06.000Z" + }, + "end": { + "$date": "2021-05-09T20:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9c4f3843-a5c5-43e5-8d16-ffb61bdf1b05", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-09T19:47:07.000Z" + }, + "end": { + "$date": "2021-05-09T20:52:15.000Z" + }, + "events": [ + { + "uuid": "b092b59a-aca6-43b2-abef-92dcca269104", + "start": { + "$date": "2021-05-09T19:47:07.000Z" + }, + "end": { + "$date": "2021-05-09T20:52:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d5858fa3-a156-4511-ae9d-6e6751b1cd51", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-09T20:08:37.000Z" + }, + "end": { + "$date": "2021-05-09T20:24:34.000Z" + }, + "events": [ + { + "uuid": "6900af22-d8ee-48de-998a-4424f3cc6bcf", + "start": { + "$date": "2021-05-09T20:08:37.000Z" + }, + "end": { + "$date": "2021-05-09T20:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", + "uuid": "99dfac6d-ace3-4ecc-bd8e-088a3925fdbd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-09T20:18:02.000Z" + }, + "end": { + "$date": "2021-05-10T02:25:19.000Z" + }, + "events": [ + { + "uuid": "d58d1cb6-f012-415c-b034-2787d8aade03", + "start": { + "$date": "2021-05-09T20:18:02.000Z" + }, + "end": { + "$date": "2021-05-09T23:19:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cebfb1e9-acb6-40d1-bd4a-a14b93bbda98", + "start": { + "$date": "2021-05-09T23:19:02.000Z" + }, + "end": { + "$date": "2021-05-10T00:43:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61c0fbb3-6348-4f6c-93ea-f69149119c1f", + "start": { + "$date": "2021-05-10T00:43:02.000Z" + }, + "end": { + "$date": "2021-05-10T02:23:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9770016a-b974-40b1-93b2-a8d6b3b59b90", + "start": { + "$date": "2021-05-10T02:23:02.000Z" + }, + "end": { + "$date": "2021-05-10T02:24:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e3b6a37-6d61-46cc-a998-d6d110d2745a", + "start": { + "$date": "2021-05-10T02:24:02.000Z" + }, + "end": { + "$date": "2021-05-10T02:25:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "75330d63-62c6-45e5-a774-ae0b3f267e87", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-09T20:45:57.000Z" + }, + "end": { + "$date": "2021-05-10T00:40:06.000Z" + }, + "events": [ + { + "uuid": "fe00aeb6-20c4-4526-86ae-b5e5aa820a53", + "start": { + "$date": "2021-05-09T20:45:57.000Z" + }, + "end": { + "$date": "2021-05-09T21:50:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6c5cf06-4dd4-4d69-a1ef-6a14ac8e4f05", + "start": { + "$date": "2021-05-09T21:50:57.000Z" + }, + "end": { + "$date": "2021-05-09T22:33:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6926fac-af6c-4cc1-a3be-672405b69fd3", + "start": { + "$date": "2021-05-09T22:33:57.000Z" + }, + "end": { + "$date": "2021-05-09T23:16:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "320ff9cf-da23-48de-8b65-0a322fd36b51", + "start": { + "$date": "2021-05-09T23:16:57.000Z" + }, + "end": { + "$date": "2021-05-09T23:17:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ab12945b-aafa-4a6b-a330-79a5122e2864", + "start": { + "$date": "2021-05-09T23:17:57.000Z" + }, + "end": { + "$date": "2021-05-09T23:20:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f2593eb-4396-4839-a272-11bafb799e4a", + "start": { + "$date": "2021-05-09T23:20:57.000Z" + }, + "end": { + "$date": "2021-05-09T23:37:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc8b316b-86ca-47ee-8e30-13b2ca14a281", + "start": { + "$date": "2021-05-09T23:37:57.000Z" + }, + "end": { + "$date": "2021-05-09T23:38:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f89ab55-5691-4b08-937a-f0ff540e3149", + "start": { + "$date": "2021-05-09T23:38:57.000Z" + }, + "end": { + "$date": "2021-05-10T00:31:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1d9395e4-32b3-4be1-b03d-a5e56cbed991", + "start": { + "$date": "2021-05-10T00:31:57.000Z" + }, + "end": { + "$date": "2021-05-10T00:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56faecd4-a828-456f-8a1c-cdb0e9c13a62", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T20:53:57.000Z" + }, + "end": { + "$date": "2021-05-09T21:19:03.000Z" + }, + "events": [ + { + "uuid": "cc0d268f-2e46-43d9-98fa-1db37a5d484d", + "start": { + "$date": "2021-05-09T20:53:57.000Z" + }, + "end": { + "$date": "2021-05-09T21:19:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fccad133-0774-46bf-ba53-39867cf15972", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T21:01:34.000Z" + }, + "end": { + "$date": "2021-05-09T21:10:24.000Z" + }, + "events": [ + { + "uuid": "b1f8baa4-4c75-4ad9-94c6-014b44ab769e", + "start": { + "$date": "2021-05-09T21:01:34.000Z" + }, + "end": { + "$date": "2021-05-09T21:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dff60b3b-ea2b-43ac-aa66-e824d3b4e62c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T21:10:30.000Z" + }, + "end": { + "$date": "2021-05-09T21:41:57.000Z" + }, + "events": [ + { + "uuid": "0cb98ab5-551b-4cb7-97f8-db086938d460", + "start": { + "$date": "2021-05-09T21:10:30.000Z" + }, + "end": { + "$date": "2021-05-09T21:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdd23823-70d9-448f-8563-9de5fc51a340", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T03:07:47.000Z" + }, + "end": { + "$date": "2021-05-10T05:26:58.000Z" + }, + "events": [ + { + "uuid": "78fdb6ee-3031-400a-adf6-17c97c19fa2b", + "start": { + "$date": "2021-05-10T03:07:47.000Z" + }, + "end": { + "$date": "2021-05-10T05:16:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e05077d-4adb-4d32-b52f-61672fdc2f0d", + "start": { + "$date": "2021-05-10T05:16:47.000Z" + }, + "end": { + "$date": "2021-05-10T05:50:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f67f2b94-06ba-462c-9dd0-804547127a88", + "start": { + "$date": "2021-05-10T05:50:47.000Z" + }, + "end": { + "$date": "2021-05-10T05:54:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64f7ced5-eb4c-4d19-80e9-135048885db0", + "start": { + "$date": "2021-05-10T05:54:47.000Z" + }, + "end": { + "$date": "2021-05-10T06:28:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb4013ce-40ec-4caf-912d-d8363f52dbc2", + "start": { + "$date": "2021-05-10T06:28:47.000Z" + }, + "end": { + "$date": "2021-05-10T06:39:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e778b91d-8be4-477e-bc2f-4beb1f00a4bd", + "start": { + "$date": "2021-05-10T06:39:47.000Z" + }, + "end": { + "$date": "2021-05-10T07:05:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11f71731-48eb-425a-9087-1568c63c0a88", + "start": { + "$date": "2021-05-10T07:05:47.000Z" + }, + "end": { + "$date": "2021-05-10T08:34:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8d2673b-57de-4419-ac27-59972930b313", + "start": { + "$date": "2021-05-10T08:34:47.000Z" + }, + "end": { + "$date": "2021-05-10T08:41:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f8e16ee-29c9-4c75-8c14-d86b6e79635a", + "start": { + "$date": "2021-05-10T08:41:47.000Z" + }, + "end": { + "$date": "2021-05-10T05:26:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "733ab998-69b8-440f-8b46-2eddca7a00c7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T21:24:39.000Z" + }, + "end": { + "$date": "2021-05-09T22:01:28.000Z" + }, + "events": [ + { + "uuid": "3fecd94a-73f6-4791-845b-54c417ef9c62", + "start": { + "$date": "2021-05-09T21:24:39.000Z" + }, + "end": { + "$date": "2021-05-09T22:01:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", + "uuid": "cab01bed-31f2-4f44-9363-4c819f4f03f0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-09T21:42:17.000Z" + }, + "end": { + "$date": "2021-05-09T23:12:42.000Z" + }, + "events": [ + { + "uuid": "295f2620-1808-49ab-af74-bf02c6d2ce7c", + "start": { + "$date": "2021-05-09T21:42:17.000Z" + }, + "end": { + "$date": "2021-05-09T23:12:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efdd4ce5-f332-4934-bbcf-c4c67cf6324a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T22:12:03.000Z" + }, + "end": { + "$date": "2021-05-09T22:29:55.000Z" + }, + "events": [ + { + "uuid": "d14c36ee-1f73-4078-b48e-033612965dad", + "start": { + "$date": "2021-05-09T22:12:03.000Z" + }, + "end": { + "$date": "2021-05-09T22:29:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87e268c5-f128-4d21-a59e-de08e19e91bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T22:35:41.000Z" + }, + "end": { + "$date": "2021-05-09T23:06:37.000Z" + }, + "events": [ + { + "uuid": "a53a729e-527e-4d79-81d3-303225752f19", + "start": { + "$date": "2021-05-09T22:35:41.000Z" + }, + "end": { + "$date": "2021-05-09T23:06:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c11a5523-ab82-4b99-9da1-ef1dbb971119", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T23:11:58.000Z" + }, + "end": { + "$date": "2021-05-09T23:41:22.000Z" + }, + "events": [ + { + "uuid": "a9932992-7e0c-4c4a-a55b-162b54c0d96b", + "start": { + "$date": "2021-05-09T23:11:58.000Z" + }, + "end": { + "$date": "2021-05-09T23:41:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91bf7de2-5340-43af-baed-3a5727389dfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-09T23:47:17.000Z" + }, + "end": { + "$date": "2021-05-10T00:13:39.000Z" + }, + "events": [ + { + "uuid": "aede9ab4-828d-4a5b-a9f5-25959f274a11", + "start": { + "$date": "2021-05-09T23:47:17.000Z" + }, + "end": { + "$date": "2021-05-10T00:13:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9deffd3b-fbf6-460b-9f99-19dfa91233fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-10T01:15:55.000Z" + }, + "end": { + "$date": "2021-05-10T01:48:59.000Z" + }, + "events": [ + { + "uuid": "fdcac9da-3f0d-4b28-8832-f2d4537a8c33", + "start": { + "$date": "2021-05-10T01:15:55.000Z" + }, + "end": { + "$date": "2021-05-10T01:48:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "01975009-8466-4b1d-8107-9269517c22be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T01:17:30.000Z" + }, + "end": { + "$date": "2021-05-10T01:18:30.000Z" + }, + "events": [ + { + "uuid": "61c3b10f-ca3a-4be1-8428-2ed344fba53b", + "start": { + "$date": "2021-05-10T01:17:30.000Z" + }, + "end": { + "$date": "2021-05-10T01:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "60aecef2-9c12-4a93-a97c-baf4bef0eb6c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-10T01:18:52.000Z" + }, + "end": { + "$date": "2021-05-10T02:00:58.000Z" + }, + "events": [ + { + "uuid": "8da31637-cfa4-4feb-9533-f2dfb8637a8d", + "start": { + "$date": "2021-05-10T01:18:52.000Z" + }, + "end": { + "$date": "2021-05-10T02:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "f9d58836-dabb-4014-91d6-494aa95122b1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T01:19:25.000Z" + }, + "end": { + "$date": "2021-05-10T01:22:55.000Z" + }, + "events": [ + { + "uuid": "fc6ef440-4eca-4dce-af0e-e9ce6ad32d6f", + "start": { + "$date": "2021-05-10T01:19:25.000Z" + }, + "end": { + "$date": "2021-05-10T01:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3a331883-6f8c-415a-87ad-a2f97acbbfaa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-10T01:23:10.000Z" + }, + "end": { + "$date": "2021-05-10T03:40:29.000Z" + }, + "events": [ + { + "uuid": "ba6c450a-fcd9-4095-a019-a09084855dff", + "start": { + "$date": "2021-05-10T01:23:10.000Z" + }, + "end": { + "$date": "2021-05-10T03:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "fdff8b84-bd44-49e0-87c2-5764453b2e88", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T01:23:12.000Z" + }, + "end": { + "$date": "2021-05-10T01:24:27.000Z" + }, + "events": [ + { + "uuid": "2c602633-6f79-4c47-8a3c-82ad6ee55ee8", + "start": { + "$date": "2021-05-10T01:23:12.000Z" + }, + "end": { + "$date": "2021-05-10T01:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2740ffb1-1515-4dd7-95a8-e2e98e388776", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T01:24:46.000Z" + }, + "end": { + "$date": "2021-05-10T01:56:19.000Z" + }, + "events": [ + { + "uuid": "f0749f04-9070-4aae-b2db-801c1068ddc6", + "start": { + "$date": "2021-05-10T01:24:46.000Z" + }, + "end": { + "$date": "2021-05-10T01:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6f0c439a-a5a0-48c5-9370-59acff7cb45e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-10T01:37:33.000Z" + }, + "end": { + "$date": "2021-05-10T01:44:13.000Z" + }, + "events": [ + { + "uuid": "c1ea1706-2657-4422-93cc-bba666096234", + "start": { + "$date": "2021-05-10T01:37:33.000Z" + }, + "end": { + "$date": "2021-05-10T01:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c24b6637-2ee6-4374-8baf-338e577bcaf1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-10T01:47:13.000Z" + }, + "end": { + "$date": "2021-05-10T02:05:55.000Z" + }, + "events": [ + { + "uuid": "9c87b673-ff9d-4558-ab20-348f42a04a60", + "start": { + "$date": "2021-05-10T01:47:13.000Z" + }, + "end": { + "$date": "2021-05-10T02:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b5a8b819-f3fd-4449-96b4-897421cf004e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T01:56:39.000Z" + }, + "end": { + "$date": "2021-05-10T03:40:25.000Z" + }, + "events": [ + { + "uuid": "e27a6f0a-54eb-42ed-ba1f-ccee0aa9225f", + "start": { + "$date": "2021-05-10T01:56:39.000Z" + }, + "end": { + "$date": "2021-05-10T03:40:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2f8754a1-0c02-4bc7-bee3-8dab692bfd81", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-10T02:05:15.000Z" + }, + "end": { + "$date": "2021-05-10T05:12:27.000Z" + }, + "events": [ + { + "uuid": "f3e12a03-516a-4963-90a1-11704984696a", + "start": { + "$date": "2021-05-10T02:05:15.000Z" + }, + "end": { + "$date": "2021-05-10T05:12:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c2dde297-6143-49cb-a7d7-3aced4515944", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-10T02:12:06.000Z" + }, + "end": { + "$date": "2021-05-10T03:40:08.000Z" + }, + "events": [ + { + "uuid": "6e37b974-8f52-47fe-b7db-3ea262480306", + "start": { + "$date": "2021-05-10T02:12:06.000Z" + }, + "end": { + "$date": "2021-05-10T03:40:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "313aea1e-b625-4b39-a77d-392116baf680", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-10T02:15:34.000Z" + }, + "end": { + "$date": "2021-05-10T05:27:23.000Z" + }, + "events": [ + { + "uuid": "be9aa826-aed3-46a3-946a-da2a695fc731", + "start": { + "$date": "2021-05-10T02:15:34.000Z" + }, + "end": { + "$date": "2021-05-10T05:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "e24e0e0b-041a-4324-ad2d-bcf5420a9a78", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-10T03:23:34.000Z" + }, + "end": { + "$date": "2021-05-10T03:45:11.000Z" + }, + "events": [ + { + "uuid": "19e6cecf-fb04-447c-8804-01b89e9ed4ad", + "start": { + "$date": "2021-05-10T03:23:34.000Z" + }, + "end": { + "$date": "2021-05-10T03:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "12ef1a48-8e95-4b7c-8859-2b60ea9da53e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-10T03:40:13.000Z" + }, + "end": { + "$date": "2021-05-10T04:24:24.000Z" + }, + "events": [ + { + "uuid": "a7893908-1d81-4851-b539-a4c31e01af21", + "start": { + "$date": "2021-05-10T03:40:13.000Z" + }, + "end": { + "$date": "2021-05-10T04:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c79f740b-2b9b-4686-9603-b8dc8bffe4b1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T03:40:55.000Z" + }, + "end": { + "$date": "2021-05-10T03:59:01.000Z" + }, + "events": [ + { + "uuid": "6d329b6e-397b-4021-bffd-1d07f5585554", + "start": { + "$date": "2021-05-10T03:40:55.000Z" + }, + "end": { + "$date": "2021-05-10T03:59:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "0addcf39-cdb9-4fcc-91e2-bfeb03bfa080", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-10T03:45:22.000Z" + }, + "end": { + "$date": "2021-05-10T06:05:27.000Z" + }, + "events": [ + { + "uuid": "c1ceeecb-f016-45c4-bbc4-c31f6ef98376", + "start": { + "$date": "2021-05-10T03:45:22.000Z" + }, + "end": { + "$date": "2021-05-10T06:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "9b58bde1-2dab-4e9e-874c-3a3fe09f6099", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T04:04:47.000Z" + }, + "end": { + "$date": "2021-05-10T04:21:52.000Z" + }, + "events": [ + { + "uuid": "421002ed-ab8d-4f43-8e86-7343a3914da9", + "start": { + "$date": "2021-05-10T04:04:47.000Z" + }, + "end": { + "$date": "2021-05-10T04:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fb01096d-c203-464e-9ae1-9e2dac9949fc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-10T04:07:32.000Z" + }, + "end": { + "$date": "2021-05-10T04:47:14.000Z" + }, + "events": [ + { + "uuid": "205041b9-2ac0-4336-ac6e-33bd712c303d", + "start": { + "$date": "2021-05-10T04:07:32.000Z" + }, + "end": { + "$date": "2021-05-10T04:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a6e74dc8-6a13-4aa8-a28e-520f4f8b81b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T04:24:33.000Z" + }, + "end": { + "$date": "2021-05-10T04:48:26.000Z" + }, + "events": [ + { + "uuid": "592e2234-0a40-48f3-92f6-e9b99f0e0d6f", + "start": { + "$date": "2021-05-10T04:24:33.000Z" + }, + "end": { + "$date": "2021-05-10T04:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c30dcee-6979-4e5f-af4e-fea75928ac49", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-10T04:50:43.000Z" + }, + "end": { + "$date": "2021-05-10T05:30:02.000Z" + }, + "events": [ + { + "uuid": "fddce7d5-810f-43d8-8312-af68902e4961", + "start": { + "$date": "2021-05-10T04:50:43.000Z" + }, + "end": { + "$date": "2021-05-10T05:30:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d3eed64c-18fc-425a-9067-e746c9b93d7e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-10T04:48:51.000Z" + }, + "end": { + "$date": "2021-05-10T04:55:06.000Z" + }, + "events": [ + { + "uuid": "f32c1196-3c2b-4b3a-ac51-81cfd59ff93e", + "start": { + "$date": "2021-05-10T04:48:51.000Z" + }, + "end": { + "$date": "2021-05-10T04:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "080f74e2-b9bb-405a-9cdb-5fded920de4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T04:49:15.000Z" + }, + "end": { + "$date": "2021-05-10T04:51:41.000Z" + }, + "events": [ + { + "uuid": "5a321b06-0550-4aae-8900-b39a6dcdbd32", + "start": { + "$date": "2021-05-10T04:49:15.000Z" + }, + "end": { + "$date": "2021-05-10T04:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d87ceebb-bf06-4e60-afca-ede738a73a63", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T04:51:51.000Z" + }, + "end": { + "$date": "2021-05-10T04:55:02.000Z" + }, + "events": [ + { + "uuid": "4f4d51ec-e1cc-485e-9301-0e1660de4d38", + "start": { + "$date": "2021-05-10T04:51:51.000Z" + }, + "end": { + "$date": "2021-05-10T04:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3a64a3c0-590f-49fb-84ec-d55981e29361", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-10T05:14:08.000Z" + }, + "end": { + "$date": "2021-05-10T05:27:13.000Z" + }, + "events": [ + { + "uuid": "b4fed750-cef2-4e5d-a58d-b8a3266bd018", + "start": { + "$date": "2021-05-10T05:14:08.000Z" + }, + "end": { + "$date": "2021-05-10T05:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2cc74b18-b14a-4e64-a13f-d2c9e625432b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-10T05:15:08.000Z" + }, + "end": { + "$date": "2021-05-10T05:43:24.000Z" + }, + "events": [ + { + "uuid": "04f12a8a-6d5e-451e-a66d-e88354b8878d", + "start": { + "$date": "2021-05-10T05:15:08.000Z" + }, + "end": { + "$date": "2021-05-10T05:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "70d949bd-4d7c-42ff-9122-6a7f6145b12c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-10T14:39:48.000Z" + }, + "end": { + "$date": "2021-05-10T17:47:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-05-10T14:39:48.000Z" + }, + "end": { + "$date": "2021-05-10T17:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7fdff42c-ac09-4e14-9917-d12d7804c449", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T15:11:05.000Z" + }, + "end": { + "$date": "2021-05-10T15:54:11.000Z" + }, + "events": [ + { + "uuid": "65603c33-f5ea-40c3-bdbf-8ca5a339145d", + "start": { + "$date": "2021-05-10T15:11:05.000Z" + }, + "end": { + "$date": "2021-05-10T15:54:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "475853fe-f257-4cc2-909f-e8809ef07b73", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-10T15:34:02.000Z" + }, + "end": { + "$date": "2021-05-10T16:22:44.000Z" + }, + "events": [ + { + "uuid": "13a6c763-3c82-42b5-9fd0-2932ccac4462", + "start": { + "$date": "2021-05-10T15:34:02.000Z" + }, + "end": { + "$date": "2021-05-10T16:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "110dc580-243d-4202-a750-ada27f17ece0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T16:43:48.000Z" + }, + "end": { + "$date": "2021-05-10T17:20:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-05-10T16:43:48.000Z" + }, + "end": { + "$date": "2021-05-10T17:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6ca1a813-d7bc-4c27-a441-24ca3d3ca258", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-10T18:18:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:20:35.000Z" + }, + "events": [ + { + "uuid": "1d925d74-3eb2-406b-911f-c98b5ef73460", + "start": { + "$date": "2021-05-10T18:18:15.000Z" + }, + "end": { + "$date": "2021-05-10T18:30:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc492def-bf9d-416a-ae89-2c133b38fd98", + "start": { + "$date": "2021-05-10T18:30:15.000Z" + }, + "end": { + "$date": "2021-05-10T18:31:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e387edf-cf6d-48f7-b158-ba656724eb77", + "start": { + "$date": "2021-05-10T18:31:15.000Z" + }, + "end": { + "$date": "2021-05-10T18:34:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad2a4013-961d-4864-b48e-025172e03fcd", + "start": { + "$date": "2021-05-10T18:34:15.000Z" + }, + "end": { + "$date": "2021-05-10T18:43:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a60facaa-3aa4-4f4c-8689-f69445fade7e", + "start": { + "$date": "2021-05-10T18:43:15.000Z" + }, + "end": { + "$date": "2021-05-10T18:47:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ffd2773-346d-48ab-830c-4c9dedc7d5ea", + "start": { + "$date": "2021-05-10T18:47:15.000Z" + }, + "end": { + "$date": "2021-05-10T19:03:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b59c095-e2b0-4b89-a45c-ec91851f49bc", + "start": { + "$date": "2021-05-10T19:03:15.000Z" + }, + "end": { + "$date": "2021-05-10T19:05:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0675138-a55f-402a-94fb-404857b75ddf", + "start": { + "$date": "2021-05-10T19:05:15.000Z" + }, + "end": { + "$date": "2021-05-10T19:12:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6f9b2e2d-7d1b-4da4-bdd2-a76e30e487b0", + "start": { + "$date": "2021-05-10T19:12:15.000Z" + }, + "end": { + "$date": "2021-05-10T19:14:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb8f2f1a-e32a-432f-bfed-927d3a4083ce", + "start": { + "$date": "2021-05-10T19:14:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:30:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32b6c0ec-ba1a-44e0-b192-d29fc698ae0c", + "start": { + "$date": "2021-05-10T21:30:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:36:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08f3db92-a811-4e94-826c-ddafd78a274f", + "start": { + "$date": "2021-05-10T21:36:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:38:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c7c22c7-294a-4c06-bdde-38103fa1267e", + "start": { + "$date": "2021-05-10T21:38:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:40:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f924286d-2459-4b62-a7d6-aee689a01155", + "start": { + "$date": "2021-05-10T21:40:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:52:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b19f507-52e6-44b9-8a2b-c9c7dcf94e39", + "start": { + "$date": "2021-05-10T21:52:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:55:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "34d5e2d7-368e-4fbd-9a89-5a9c7cc8f212", + "start": { + "$date": "2021-05-10T21:55:15.000Z" + }, + "end": { + "$date": "2021-05-10T21:57:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "51588271-3c06-492b-b844-e795525ef623", + "start": { + "$date": "2021-05-10T21:57:15.000Z" + }, + "end": { + "$date": "2021-05-10T22:05:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2b1ff958-75d7-43de-a7ba-160b8dbf0f75", + "start": { + "$date": "2021-05-10T22:05:15.000Z" + }, + "end": { + "$date": "2021-05-10T22:51:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "560536a3-29a9-4175-9b46-9d4b9c1cc9ad", + "start": { + "$date": "2021-05-10T22:51:15.000Z" + }, + "end": { + "$date": "2021-05-10T22:54:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6696dce-7275-4b76-99b4-ffc174ea9434", + "start": { + "$date": "2021-05-10T22:54:15.000Z" + }, + "end": { + "$date": "2021-05-10T23:14:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bbb90d32-905c-4b9b-9c5a-3d0b66394bff", + "start": { + "$date": "2021-05-10T23:14:15.000Z" + }, + "end": { + "$date": "2021-05-10T23:17:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f85093e7-76e6-4f99-9713-92d650a811c4", + "start": { + "$date": "2021-05-10T23:17:15.000Z" + }, + "end": { + "$date": "2021-05-10T23:38:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0cec778-362c-4cb4-8ab2-ac1f0555cd03", + "start": { + "$date": "2021-05-10T23:38:15.000Z" + }, + "end": { + "$date": "2021-05-10T23:42:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "198755ba-18b7-4ca1-b687-671e5a347bc8", + "start": { + "$date": "2021-05-10T23:42:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:00:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b8aefed-baee-437b-b3bc-cf1e5b339776", + "start": { + "$date": "2021-05-11T00:00:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:08:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5817a822-2675-481f-b5a6-67562913ee44", + "start": { + "$date": "2021-05-11T00:08:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:09:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0f6116aa-2c9c-4b1b-b8e3-1ce01ee6ddbf", + "start": { + "$date": "2021-05-11T00:09:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:11:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73892211-3f2c-431e-9d35-aade12ab2211", + "start": { + "$date": "2021-05-11T00:11:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:12:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1796a167-01c5-499b-8590-4295007e9350", + "start": { + "$date": "2021-05-11T00:12:15.000Z" + }, + "end": { + "$date": "2021-05-11T00:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4389c19-12f7-4c4e-a751-05854df7424d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T18:21:54.000Z" + }, + "end": { + "$date": "2021-05-10T19:01:57.000Z" + }, + "events": [ + { + "uuid": "6bcf2bbf-11a6-4731-849d-11ffb79ca5fb", + "start": { + "$date": "2021-05-10T18:21:54.000Z" + }, + "end": { + "$date": "2021-05-10T19:01:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "16ad43be-73f7-4a97-bc31-dd2f42c1a9c1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-10T18:28:58.000Z" + }, + "end": { + "$date": "2021-05-10T18:31:08.000Z" + }, + "events": [ + { + "uuid": "4ebec844-e9a1-4b5e-aec4-109628551e7f", + "start": { + "$date": "2021-05-10T18:28:58.000Z" + }, + "end": { + "$date": "2021-05-10T18:31:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b78687d2-5be7-4564-ba37-333a998a9e04", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-10T19:27:19.000Z" + }, + "end": { + "$date": "2021-05-10T19:53:45.000Z" + }, + "events": [ + { + "uuid": "b55cb95f-5b37-4e27-a853-baffd5232f92", + "start": { + "$date": "2021-05-10T19:27:19.000Z" + }, + "end": { + "$date": "2021-05-10T19:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1991a4bd-1c9c-4117-b4f2-d463af28fef3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-10T21:14:35.000Z" + }, + "end": { + "$date": "2021-05-10T21:56:30.000Z" + }, + "events": [ + { + "uuid": "bab20de8-346a-4572-9436-aa19af314b14", + "start": { + "$date": "2021-05-10T21:14:35.000Z" + }, + "end": { + "$date": "2021-05-10T21:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "51bdd793-a239-4661-8243-856b522a2def", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T21:31:16.000Z" + }, + "end": { + "$date": "2021-05-10T21:46:13.000Z" + }, + "events": [ + { + "uuid": "8250c037-be0e-4a7b-b98d-4077e2795bbf", + "start": { + "$date": "2021-05-10T21:31:16.000Z" + }, + "end": { + "$date": "2021-05-10T21:46:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "368b99d8-49a0-4748-a17a-373c71269913", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T21:48:54.000Z" + }, + "end": { + "$date": "2021-05-10T22:16:47.000Z" + }, + "events": [ + { + "uuid": "c21e8518-5b9f-44dd-b23f-81ee5b300a46", + "start": { + "$date": "2021-05-10T21:48:54.000Z" + }, + "end": { + "$date": "2021-05-10T22:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "84ba4c6d-cdc7-4fa1-adee-19ea978bc380", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-10T21:48:22.000Z" + }, + "end": { + "$date": "2021-05-10T23:37:39.000Z" + }, + "events": [ + { + "uuid": "f45d7b2a-0260-4459-94f9-27e40feeaefd", + "start": { + "$date": "2021-05-10T21:48:22.000Z" + }, + "end": { + "$date": "2021-05-10T23:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "db722b65-b190-4082-a09c-1d690e86a6f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T21:50:49.000Z" + }, + "end": { + "$date": "2021-05-10T21:53:40.000Z" + }, + "events": [ + { + "uuid": "9de21b08-1b5b-46bb-b9d7-9cbc0443884d", + "start": { + "$date": "2021-05-10T21:50:49.000Z" + }, + "end": { + "$date": "2021-05-10T21:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "12add4f5-356d-4059-810a-84c4ae9d107b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T21:54:04.000Z" + }, + "end": { + "$date": "2021-05-10T23:16:53.000Z" + }, + "events": [ + { + "uuid": "1e78b5df-07d5-4841-9547-9dc015477447", + "start": { + "$date": "2021-05-10T21:54:04.000Z" + }, + "end": { + "$date": "2021-05-10T23:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c3cc322-1b86-4b3c-bde2-9551232402cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T22:35:43.000Z" + }, + "end": { + "$date": "2021-05-10T22:47:49.000Z" + }, + "events": [ + { + "uuid": "1bb88055-0542-4d65-96e0-e55ecf027c09", + "start": { + "$date": "2021-05-10T22:35:43.000Z" + }, + "end": { + "$date": "2021-05-10T22:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a34e1c36-3f3e-4c7e-8bf3-4e9d5164f765", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-10T22:52:14.000Z" + }, + "end": { + "$date": "2021-05-10T23:06:05.000Z" + }, + "events": [ + { + "uuid": "3350c421-2d21-4fb2-ae71-b11d2e1d89f5", + "start": { + "$date": "2021-05-10T22:52:14.000Z" + }, + "end": { + "$date": "2021-05-10T23:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "edf168ec-bf6f-48f5-ab3b-08623e616139", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-10T23:36:31.000Z" + }, + "end": { + "$date": "2021-05-10T23:44:22.000Z" + }, + "events": [ + { + "uuid": "7248bc28-9461-4123-848e-36d45f4a20a8", + "start": { + "$date": "2021-05-10T23:36:31.000Z" + }, + "end": { + "$date": "2021-05-10T23:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "956b8a19-0c54-4dc0-b807-35a0751574e7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-11T00:26:30.000Z" + }, + "end": { + "$date": "2021-05-11T01:15:53.000Z" + }, + "events": [ + { + "uuid": "85aecdf7-31d6-49a2-9b06-1b74427551cb", + "start": { + "$date": "2021-05-11T00:26:30.000Z" + }, + "end": { + "$date": "2021-05-11T01:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "152b73c4-7c46-4dab-b372-1b2f397596ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T01:29:33.000Z" + }, + "end": { + "$date": "2021-05-11T01:46:04.000Z" + }, + "events": [ + { + "uuid": "bb7536e8-6356-443d-85b3-c9274feeef2a", + "start": { + "$date": "2021-05-11T01:29:33.000Z" + }, + "end": { + "$date": "2021-05-11T01:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "4d7089ef-682e-4ed9-af3a-088f06d808c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-11T01:31:31.000Z" + }, + "end": { + "$date": "2021-05-11T01:42:57.000Z" + }, + "events": [ + { + "uuid": "abcaa87b-fabd-4892-b732-9c55bfc0b484", + "start": { + "$date": "2021-05-11T01:31:31.000Z" + }, + "end": { + "$date": "2021-05-11T01:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "05d16ac2-b538-476a-9083-5faefa3d10af", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-11T01:43:07.000Z" + }, + "end": { + "$date": "2021-05-11T02:08:25.000Z" + }, + "events": [ + { + "uuid": "5ab50e14-2593-4a9d-bd1e-e932ee26ddad", + "start": { + "$date": "2021-05-11T01:43:07.000Z" + }, + "end": { + "$date": "2021-05-11T02:08:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e4096d6-297a-483f-892e-fcc71fbe2f7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T01:47:54.000Z" + }, + "end": { + "$date": "2021-05-11T02:16:47.000Z" + }, + "events": [ + { + "uuid": "0475efd3-4fb0-4f5d-8902-2563b8ad6ef8", + "start": { + "$date": "2021-05-11T01:47:54.000Z" + }, + "end": { + "$date": "2021-05-11T02:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c932e176-77d3-43cb-89a5-6ee218b6da5c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-11T02:15:56.000Z" + }, + "end": { + "$date": "2021-05-11T02:45:34.000Z" + }, + "events": [ + { + "uuid": "62e5642b-7e04-45e5-925d-49df2f678f24", + "start": { + "$date": "2021-05-11T02:15:56.000Z" + }, + "end": { + "$date": "2021-05-11T02:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bb31d591-8ab0-4bfb-9230-591370ffce81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T02:18:26.000Z" + }, + "end": { + "$date": "2021-05-11T04:16:26.000Z" + }, + "events": [ + { + "uuid": "bbe668f0-8ee8-4615-b32f-639f0d1fcfe9", + "start": { + "$date": "2021-05-11T02:18:26.000Z" + }, + "end": { + "$date": "2021-05-11T04:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fa756686-ddb6-49eb-9e2e-c2ea5f476cdd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-11T02:36:47.000Z" + }, + "end": { + "$date": "2021-05-11T03:10:29.000Z" + }, + "events": [ + { + "uuid": "80b9387e-a6f0-4b29-b9d4-6f912bf0d576", + "start": { + "$date": "2021-05-11T02:36:47.000Z" + }, + "end": { + "$date": "2021-05-11T03:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "eb83161b-98ed-4700-87c4-2f7dd3455196", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-11T02:37:10.000Z" + }, + "end": { + "$date": "2021-05-11T02:41:55.000Z" + }, + "events": [ + { + "uuid": "dc57cc5f-eae4-4001-b2c8-388f0b374aad", + "start": { + "$date": "2021-05-11T02:37:10.000Z" + }, + "end": { + "$date": "2021-05-11T02:40:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04882ad9-316d-4c93-8366-a1c11abbcb3a", + "start": { + "$date": "2021-05-11T02:40:10.000Z" + }, + "end": { + "$date": "2021-05-11T02:41:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8c547cdf-73dc-469b-9c49-2d158912ed44", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-11T02:44:16.000Z" + }, + "end": { + "$date": "2021-05-11T03:10:32.000Z" + }, + "events": [ + { + "uuid": "0c9e431f-3f82-40f3-b89a-3411c7fc1264", + "start": { + "$date": "2021-05-11T02:44:16.000Z" + }, + "end": { + "$date": "2021-05-11T03:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfedcac7-ef97-4c9e-8894-aa7d1ce15393", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-11T02:59:58.000Z" + }, + "end": { + "$date": "2021-05-11T03:37:07.000Z" + }, + "events": [ + { + "uuid": "79d5f34d-2047-445c-8317-4a914d0760cc", + "start": { + "$date": "2021-05-11T02:59:58.000Z" + }, + "end": { + "$date": "2021-05-11T03:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c3c76c0f-575f-4609-938a-95e3304dd841", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-11T03:01:03.000Z" + }, + "end": { + "$date": "2021-05-11T05:52:51.000Z" + }, + "events": [ + { + "uuid": "7022f4a6-a4ea-4cae-b983-a106118008fd", + "start": { + "$date": "2021-05-11T03:01:03.000Z" + }, + "end": { + "$date": "2021-05-11T05:52:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "bcfd8693-fcbf-4249-8f53-cb97d8a06bd0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-11T03:11:18.000Z" + }, + "end": { + "$date": "2021-05-11T03:55:46.000Z" + }, + "events": [ + { + "uuid": "e8720d86-426c-44cc-85d4-297fd38c2cd4", + "start": { + "$date": "2021-05-11T03:11:18.000Z" + }, + "end": { + "$date": "2021-05-11T03:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "923da681-369a-4812-bdb7-361c4c10739e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-11T03:11:57.000Z" + }, + "end": { + "$date": "2021-05-11T08:37:14.000Z" + }, + "events": [ + { + "uuid": "81ae531d-3b16-4e63-91b5-e4777b5d83c0", + "start": { + "$date": "2021-05-11T03:11:57.000Z" + }, + "end": { + "$date": "2021-05-11T03:13:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06b1e2b5-1b59-491d-9e06-d00499c77e28", + "start": { + "$date": "2021-05-11T03:13:57.000Z" + }, + "end": { + "$date": "2021-05-11T03:16:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f060495-4caf-48dd-a6a4-d877bbf0cb9c", + "start": { + "$date": "2021-05-11T03:16:57.000Z" + }, + "end": { + "$date": "2021-05-11T03:18:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1794f40-642a-4b20-9753-c2ea5704b010", + "start": { + "$date": "2021-05-11T03:18:57.000Z" + }, + "end": { + "$date": "2021-05-11T03:39:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0968312f-b668-4bdb-83d8-71df6f9bda53", + "start": { + "$date": "2021-05-11T03:39:57.000Z" + }, + "end": { + "$date": "2021-05-11T03:41:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4b3c63e-638f-4053-a143-2ec7116af39c", + "start": { + "$date": "2021-05-11T03:41:57.000Z" + }, + "end": { + "$date": "2021-05-11T04:13:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ddfc8b05-375f-468a-86d8-4ecaf3114798", + "start": { + "$date": "2021-05-11T04:13:57.000Z" + }, + "end": { + "$date": "2021-05-11T04:17:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86c4406f-41c5-41f7-99b6-397b0ce62c2d", + "start": { + "$date": "2021-05-11T04:17:57.000Z" + }, + "end": { + "$date": "2021-05-11T04:39:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0428aa6f-a39e-41a1-9423-783cc2e7bfaf", + "start": { + "$date": "2021-05-11T04:39:57.000Z" + }, + "end": { + "$date": "2021-05-11T04:41:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03bd9970-60a3-40f4-9acd-9c2847e6c695", + "start": { + "$date": "2021-05-11T04:41:57.000Z" + }, + "end": { + "$date": "2021-05-11T04:43:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9f4248e2-4215-4f6e-bb87-2a5458434431", + "start": { + "$date": "2021-05-11T04:43:57.000Z" + }, + "end": { + "$date": "2021-05-11T04:45:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7cd23285-553f-4ec6-a8c4-174d6c102a71", + "start": { + "$date": "2021-05-11T04:45:57.000Z" + }, + "end": { + "$date": "2021-05-11T05:49:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6e78dcc-e81d-493f-a08e-4a362759f25b", + "start": { + "$date": "2021-05-11T05:49:57.000Z" + }, + "end": { + "$date": "2021-05-11T05:51:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d70b1e70-dc2f-49c2-a9f6-523e696e7d0c", + "start": { + "$date": "2021-05-11T05:51:57.000Z" + }, + "end": { + "$date": "2021-05-11T05:54:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b9c4986c-c17f-43df-8c48-546a7cdabe06", + "start": { + "$date": "2021-05-11T05:54:57.000Z" + }, + "end": { + "$date": "2021-05-11T05:59:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d73d03d2-f500-4859-9344-fb2c9204a2c3", + "start": { + "$date": "2021-05-11T05:59:57.000Z" + }, + "end": { + "$date": "2021-05-11T08:37:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "361460ba-3281-419e-892e-125420899055", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-11T03:13:20.000Z" + }, + "end": { + "$date": "2021-05-11T04:10:52.000Z" + }, + "events": [ + { + "uuid": "e4e6a69c-ce44-4e2a-babe-c91969244b98", + "start": { + "$date": "2021-05-11T03:13:20.000Z" + }, + "end": { + "$date": "2021-05-11T04:02:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "66840e12-c521-491f-81f3-d034ca352127", + "start": { + "$date": "2021-05-11T04:02:20.000Z" + }, + "end": { + "$date": "2021-05-11T04:10:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "f3ba104a-761d-447d-9a58-5ff424c18ac3", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-05-11T03:17:26.000Z" + }, + "end": { + "$date": "2021-05-11T03:41:29.000Z" + }, + "events": [ + { + "uuid": "920c3a01-cb33-4e09-a20d-2891c882e5a1", + "start": { + "$date": "2021-05-11T03:17:26.000Z" + }, + "end": { + "$date": "2021-05-11T03:41:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d31d9fe-95e4-4712-b573-8631a8cfb333", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-11T04:02:11.000Z" + }, + "end": { + "$date": "2021-05-11T04:41:26.000Z" + }, + "events": [ + { + "uuid": "0a4df03f-7bdf-49c3-ad0a-b2f4567d743f", + "start": { + "$date": "2021-05-11T04:02:11.000Z" + }, + "end": { + "$date": "2021-05-11T04:15:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f4ac5cc-a64e-439a-ae86-acceafeafac1", + "start": { + "$date": "2021-05-11T04:15:11.000Z" + }, + "end": { + "$date": "2021-05-11T04:21:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d5bdf753-4a5b-48e8-9b1c-bbc07230e9f8", + "start": { + "$date": "2021-05-11T04:21:11.000Z" + }, + "end": { + "$date": "2021-05-11T04:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "cfc06183-1af0-408a-80e3-1b3e11da8789", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-05-11T03:41:29.000Z" + }, + "end": { + "$date": "2021-05-11T05:31:24.000Z" + }, + "events": [ + { + "uuid": "2253c5ca-d644-49df-b3f8-464bc8d679a4", + "start": { + "$date": "2021-05-11T03:41:29.000Z" + }, + "end": { + "$date": "2021-05-11T05:31:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "8f966b22-ffa4-4396-b499-28990ab96336", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-11T04:00:32.000Z" + }, + "end": { + "$date": "2021-05-11T04:04:22.000Z" + }, + "events": [ + { + "uuid": "c9e1aa8e-7f50-479f-96de-a613682ad7f1", + "start": { + "$date": "2021-05-11T04:00:32.000Z" + }, + "end": { + "$date": "2021-05-11T04:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3332ebb1-d169-4c87-b8c9-ee0695d46f6a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T04:17:56.000Z" + }, + "end": { + "$date": "2021-05-11T04:35:02.000Z" + }, + "events": [ + { + "uuid": "46a6d3dc-4f14-4656-8c1a-a3eae3fe01ae", + "start": { + "$date": "2021-05-11T04:17:56.000Z" + }, + "end": { + "$date": "2021-05-11T04:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e3b33cb4-1ec7-4437-8604-b283c466eb9b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-11T04:30:12.000Z" + }, + "end": { + "$date": "2021-05-11T05:57:01.000Z" + }, + "events": [ + { + "uuid": "f7baa5e1-c6f6-4c6e-bd03-a5dfff3e2ec1", + "start": { + "$date": "2021-05-11T04:30:12.000Z" + }, + "end": { + "$date": "2021-05-11T05:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f0f2eea9-a0f4-4708-98f2-a4160a0ba03a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T04:35:07.000Z" + }, + "end": { + "$date": "2021-05-11T17:19:23.000Z" + }, + "events": [ + { + "uuid": "4aa41b2b-d982-420f-baf0-6eff2befc47a", + "start": { + "$date": "2021-05-11T04:35:07.000Z" + }, + "end": { + "$date": "2021-05-11T05:07:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2452f291-f40a-4f4b-8e34-1f5067f74bd3", + "start": { + "$date": "2021-05-11T05:07:07.000Z" + }, + "end": { + "$date": "2021-05-11T14:40:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8fe44e9-9142-4c78-a2c0-496b4eec0ae5", + "start": { + "$date": "2021-05-11T14:40:07.000Z" + }, + "end": { + "$date": "2021-05-11T14:42:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c6320ba-dd0e-4f1b-bdc5-4b5143bd9eac", + "start": { + "$date": "2021-05-11T14:42:07.000Z" + }, + "end": { + "$date": "2021-05-11T14:56:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6a37ad9f-a45f-4a64-9a4f-979f4153812a", + "start": { + "$date": "2021-05-11T14:56:07.000Z" + }, + "end": { + "$date": "2021-05-11T17:01:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74c5d7e2-755c-413e-95ef-c5d8ac861001", + "start": { + "$date": "2021-05-11T17:01:07.000Z" + }, + "end": { + "$date": "2021-05-11T17:03:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e10739ee-c49d-4b2c-b770-419e8ddc3734", + "start": { + "$date": "2021-05-11T17:03:07.000Z" + }, + "end": { + "$date": "2021-05-11T17:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a458ed7f-5568-4a84-87b4-77d1449ce8d9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-11T04:46:46.000Z" + }, + "end": { + "$date": "2021-05-11T05:19:35.000Z" + }, + "events": [ + { + "uuid": "97314f65-9908-4002-abe9-45b0369685b8", + "start": { + "$date": "2021-05-11T04:46:46.000Z" + }, + "end": { + "$date": "2021-05-11T05:19:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4bd32adc-37bc-44cb-b46d-f4a454b2c565", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-11T04:46:39.000Z" + }, + "end": { + "$date": "2021-05-11T05:07:45.000Z" + }, + "events": [ + { + "uuid": "98a89baa-b233-4247-8862-e07b939a7866", + "start": { + "$date": "2021-05-11T04:46:39.000Z" + }, + "end": { + "$date": "2021-05-11T05:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6def7cfa-2f7d-4a7e-8bc5-73f285b1bee5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-11T05:11:04.000Z" + }, + "end": { + "$date": "2021-05-11T05:35:15.000Z" + }, + "events": [ + { + "uuid": "b48e2d72-5d68-4e38-bf8d-61e4a46c9e40", + "start": { + "$date": "2021-05-11T05:11:04.000Z" + }, + "end": { + "$date": "2021-05-11T05:35:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c3ac2503-6729-4db2-89ea-d16c4a76c381", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-11T05:31:35.000Z" + }, + "end": { + "$date": "2021-05-11T06:03:27.000Z" + }, + "events": [ + { + "uuid": "b43b3fe8-6981-4d43-8203-5094ce1dfa4a", + "start": { + "$date": "2021-05-11T05:31:35.000Z" + }, + "end": { + "$date": "2021-05-11T06:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3389ce1b-df71-4d8b-b953-f79a01ed49b8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-11T05:50:16.000Z" + }, + "end": { + "$date": "2021-05-11T06:24:03.000Z" + }, + "events": [ + { + "uuid": "48799777-36e5-4f6d-8152-48e7011721e9", + "start": { + "$date": "2021-05-11T05:50:16.000Z" + }, + "end": { + "$date": "2021-05-11T06:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "9959184b-ce57-4720-bac8-01e8b400ca68", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-11T05:46:26.000Z" + }, + "end": { + "$date": "2021-05-11T07:25:09.000Z" + }, + "events": [ + { + "uuid": "7ea4caf9-4b3b-484d-9094-1e55ab408f42", + "start": { + "$date": "2021-05-11T05:46:26.000Z" + }, + "end": { + "$date": "2021-05-11T07:25:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fcdec553-9b6a-4811-b0f5-aacf7965dbd2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-11T05:57:40.000Z" + }, + "end": { + "$date": "2021-05-11T06:57:21.000Z" + }, + "events": [ + { + "uuid": "009db257-7263-407b-a58b-9f1884e89fa6", + "start": { + "$date": "2021-05-11T05:57:40.000Z" + }, + "end": { + "$date": "2021-05-11T06:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "5dff6ce7-51f0-4116-8f28-b9c950131491", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-11T18:11:36.000Z" + }, + "end": { + "$date": "2021-05-11T18:20:10.000Z" + }, + "events": [ + { + "uuid": "5ea48485-64d5-4a50-8d44-0e9f8f6546e3", + "start": { + "$date": "2021-05-11T18:11:36.000Z" + }, + "end": { + "$date": "2021-05-11T18:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1142e513-11f4-4349-96f6-c4c2857f8924", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T18:30:04.000Z" + }, + "end": { + "$date": "2021-05-11T18:55:47.000Z" + }, + "events": [ + { + "uuid": "7f531d9a-2223-4568-8d10-310dd5d1d615", + "start": { + "$date": "2021-05-11T18:30:04.000Z" + }, + "end": { + "$date": "2021-05-11T19:02:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "91795adb-808b-4831-920a-9067182b1139", + "start": { + "$date": "2021-05-11T19:02:04.000Z" + }, + "end": { + "$date": "2021-05-11T19:22:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "246d6c76-6770-4208-9134-6e676d2c33e8", + "start": { + "$date": "2021-05-11T19:22:04.000Z" + }, + "end": { + "$date": "2021-05-11T18:55:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "db7804d5-eef1-4958-b76b-acaa74e624dd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-11T17:29:46.000Z" + }, + "end": { + "$date": "2021-05-11T17:30:24.000Z" + }, + "events": [ + { + "uuid": "55db1668-d0f6-4d38-bc2b-5323ba5a6cac", + "start": { + "$date": "2021-05-11T17:29:46.000Z" + }, + "end": { + "$date": "2021-05-11T17:30:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee5b634d-1b80-4110-b92a-01e413d7bc84", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-11T17:23:10.000Z" + }, + "end": { + "$date": "2021-05-11T19:06:23.000Z" + }, + "events": [ + { + "uuid": "8f7aca3e-04e6-4e47-ac9f-ce4b02ade0d4", + "start": { + "$date": "2021-05-11T17:23:10.000Z" + }, + "end": { + "$date": "2021-05-11T19:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "793357cc-d2cf-43b1-8928-d88e389160d8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-11T19:07:49.000Z" + }, + "end": { + "$date": "2021-05-11T19:11:23.000Z" + }, + "events": [ + { + "uuid": "69c57784-a928-4269-af06-b361c3ef91cc", + "start": { + "$date": "2021-05-11T19:07:49.000Z" + }, + "end": { + "$date": "2021-05-11T19:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ad2f83fa-5956-4439-95a3-e5ef77890f9e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-11T19:39:58.000Z" + }, + "end": { + "$date": "2021-05-11T20:06:36.000Z" + }, + "events": [ + { + "uuid": "d443ef65-988e-4f44-b632-eeea391c0f43", + "start": { + "$date": "2021-05-11T19:39:58.000Z" + }, + "end": { + "$date": "2021-05-11T20:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "b1c84b12-f413-44a3-8626-b4a395fba3f2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-11T19:58:11.000Z" + }, + "end": { + "$date": "2021-05-12T12:50:47.000Z" + }, + "events": [ + { + "uuid": "73faadea-56d1-4295-a818-d41febe8ff92", + "start": { + "$date": "2021-05-11T19:58:11.000Z" + }, + "end": { + "$date": "2021-05-11T20:37:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "861752f1-5c90-439c-bc13-b281bd3d531c", + "start": { + "$date": "2021-05-11T20:37:11.000Z" + }, + "end": { + "$date": "2021-05-11T20:39:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "705bf3f8-29a3-4cd0-9721-869f55089fea", + "start": { + "$date": "2021-05-11T20:39:11.000Z" + }, + "end": { + "$date": "2021-05-11T23:01:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ccd4ebe-3d69-47c0-9f4c-28281fbf08c5", + "start": { + "$date": "2021-05-11T23:01:11.000Z" + }, + "end": { + "$date": "2021-05-12T00:04:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef6a57da-4b2f-4aa7-8f06-f72730ffa136", + "start": { + "$date": "2021-05-12T00:04:11.000Z" + }, + "end": { + "$date": "2021-05-12T00:14:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6543fde2-88f1-4136-aae8-111424bc56f2", + "start": { + "$date": "2021-05-12T00:14:11.000Z" + }, + "end": { + "$date": "2021-05-12T01:47:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cf3d91b8-aebd-4a4e-b99c-fcfa5fdbf8cc", + "start": { + "$date": "2021-05-12T01:47:11.000Z" + }, + "end": { + "$date": "2021-05-12T01:50:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7aca1865-7a51-4865-ac90-34f9ed2b259e", + "start": { + "$date": "2021-05-12T01:50:11.000Z" + }, + "end": { + "$date": "2021-05-12T02:15:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d620bd3-37f6-48e1-b0ec-c5bd85ebfaf5", + "start": { + "$date": "2021-05-12T02:15:11.000Z" + }, + "end": { + "$date": "2021-05-12T02:20:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7ec8287-a9e7-452a-9342-2eb6c7936aaa", + "start": { + "$date": "2021-05-12T02:20:11.000Z" + }, + "end": { + "$date": "2021-05-12T02:32:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f26d3862-ce67-4164-954e-4d2a5c2a5918", + "start": { + "$date": "2021-05-12T02:32:11.000Z" + }, + "end": { + "$date": "2021-05-12T04:27:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6dc750f9-5819-4182-a106-bd712ba350ec", + "start": { + "$date": "2021-05-12T04:27:11.000Z" + }, + "end": { + "$date": "2021-05-12T04:28:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3781b132-2153-4d59-be76-d0258d1b98b3", + "start": { + "$date": "2021-05-12T04:28:11.000Z" + }, + "end": { + "$date": "2021-05-12T04:38:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70dff0dd-810c-48a9-9d39-ecd247235e2d", + "start": { + "$date": "2021-05-12T04:38:11.000Z" + }, + "end": { + "$date": "2021-05-12T04:40:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6f830f78-e27e-4619-8f81-39efaeaea186", + "start": { + "$date": "2021-05-12T04:40:11.000Z" + }, + "end": { + "$date": "2021-05-12T07:47:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "373af060-d623-4128-b5ad-72b08a7e3f5b", + "start": { + "$date": "2021-05-12T07:47:11.000Z" + }, + "end": { + "$date": "2021-05-12T12:50:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06a1e22c-c0f7-4441-874e-bce5e3e43027", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-11T19:59:38.000Z" + }, + "end": { + "$date": "2021-05-11T22:06:15.000Z" + }, + "events": [ + { + "uuid": "be5105e7-cbd8-4ecf-879b-4ec8bcd975bd", + "start": { + "$date": "2021-05-11T19:59:38.000Z" + }, + "end": { + "$date": "2021-05-11T20:36:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f47b090-2cb4-4bdf-af29-490ea6149f5f", + "start": { + "$date": "2021-05-11T20:36:38.000Z" + }, + "end": { + "$date": "2021-05-11T21:02:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e3d1c8a-b1a6-4bc2-8c06-1ba8e3b396e1", + "start": { + "$date": "2021-05-11T21:02:38.000Z" + }, + "end": { + "$date": "2021-05-11T22:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "a5adfe51-4f00-4fe1-ac7b-7c6fc64fe7ff", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-11T20:26:46.000Z" + }, + "end": { + "$date": "2021-05-12T06:45:45.000Z" + }, + "events": [ + { + "uuid": "1310df3a-93ac-470c-9554-4c9a4d42a736", + "start": { + "$date": "2021-05-11T20:26:46.000Z" + }, + "end": { + "$date": "2021-05-11T23:34:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8dfc6806-7d3e-4f65-8f3e-9111a4a33b46", + "start": { + "$date": "2021-05-11T23:34:46.000Z" + }, + "end": { + "$date": "2021-05-12T00:12:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a8ee1e5-5a8b-4c73-abcf-074a298c2e92", + "start": { + "$date": "2021-05-12T00:12:46.000Z" + }, + "end": { + "$date": "2021-05-12T06:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f88ecbd4-49c1-41dc-807c-de189b6cf3de", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-11T20:50:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:41:45.000Z" + }, + "events": [ + { + "uuid": "875f6637-bd55-4b8f-ab27-4bf8e549d229", + "start": { + "$date": "2021-05-11T20:50:49.000Z" + }, + "end": { + "$date": "2021-05-11T21:50:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6fb2982-b938-4c12-a065-9cfbd10e0aa4", + "start": { + "$date": "2021-05-11T21:50:49.000Z" + }, + "end": { + "$date": "2021-05-11T22:07:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a992a1cc-c311-4e13-8cd6-a0a895d916c0", + "start": { + "$date": "2021-05-11T22:07:49.000Z" + }, + "end": { + "$date": "2021-05-11T22:10:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8689bb66-41e4-49cb-90c1-326ce1097471", + "start": { + "$date": "2021-05-11T22:10:49.000Z" + }, + "end": { + "$date": "2021-05-11T22:12:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47a9d202-d81e-456b-8c3b-1b15dfe2d4d8", + "start": { + "$date": "2021-05-11T22:12:49.000Z" + }, + "end": { + "$date": "2021-05-11T22:24:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3f155a1-407d-4a57-a44a-d3d9986d9c02", + "start": { + "$date": "2021-05-11T22:24:49.000Z" + }, + "end": { + "$date": "2021-05-11T22:41:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd19bd70-e70b-4647-8ee9-1b82df5f84ea", + "start": { + "$date": "2021-05-11T22:41:49.000Z" + }, + "end": { + "$date": "2021-05-11T22:43:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5a031d8-1490-4e22-a643-77947b191143", + "start": { + "$date": "2021-05-11T22:43:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:07:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f05e731a-1e79-42d8-beab-8121e03fb051", + "start": { + "$date": "2021-05-12T00:07:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:18:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f80df1c-767c-47ea-b73d-a7db749d9051", + "start": { + "$date": "2021-05-12T00:18:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:30:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "56e33bbd-afc1-4500-9383-500a614be41d", + "start": { + "$date": "2021-05-12T00:30:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:32:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "531208a3-7299-401d-8e6d-d0916b65c165", + "start": { + "$date": "2021-05-12T00:32:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:34:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8ea841e-37be-4bf7-ae8c-5dbd264ae81c", + "start": { + "$date": "2021-05-12T00:34:49.000Z" + }, + "end": { + "$date": "2021-05-12T00:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9e607727-c7ea-45e4-a74e-4041552416e5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-11T21:22:16.000Z" + }, + "end": { + "$date": "2021-05-11T23:23:59.000Z" + }, + "events": [ + { + "uuid": "f8cdcc1d-0d8f-44c4-802f-d07a6e238d0f", + "start": { + "$date": "2021-05-11T21:22:16.000Z" + }, + "end": { + "$date": "2021-05-11T23:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "e37817f0-84c4-40e5-a94d-5f889bb98828", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-11T22:28:10.000Z" + }, + "end": { + "$date": "2021-05-12T00:07:34.000Z" + }, + "events": [ + { + "uuid": "c0bc4843-b37d-4d3f-a9ae-129594e0e51c", + "start": { + "$date": "2021-05-11T22:28:10.000Z" + }, + "end": { + "$date": "2021-05-11T23:36:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "23031cc2-653d-4fc1-822e-4329db2c6a86", + "start": { + "$date": "2021-05-11T23:36:10.000Z" + }, + "end": { + "$date": "2021-05-12T00:45:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ea5a0c7-8f80-4cc9-9b05-b365b6f32f8b", + "start": { + "$date": "2021-05-12T00:45:10.000Z" + }, + "end": { + "$date": "2021-05-12T00:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ab24fdb1-83f6-4f5a-a3f5-1660993aaec9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T01:40:48.000Z" + }, + "end": { + "$date": "2021-05-12T02:22:13.000Z" + }, + "events": [ + { + "uuid": "c4175e6d-ede9-488e-acd4-8c37a5efc0fb", + "start": { + "$date": "2021-05-12T01:40:48.000Z" + }, + "end": { + "$date": "2021-05-12T03:17:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "448d07b4-d266-4f3c-9e07-e113ca4f6932", + "start": { + "$date": "2021-05-12T03:17:48.000Z" + }, + "end": { + "$date": "2021-05-12T03:21:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7df670cc-64a6-4951-9117-c9c66bbf8147", + "start": { + "$date": "2021-05-12T03:21:48.000Z" + }, + "end": { + "$date": "2021-05-12T05:00:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "939ee63e-0df7-445d-ae4b-ffeeb023b37b", + "start": { + "$date": "2021-05-12T05:00:48.000Z" + }, + "end": { + "$date": "2021-05-12T05:11:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04598dce-f2bf-4cb8-91ab-37256a752b3e", + "start": { + "$date": "2021-05-12T05:11:48.000Z" + }, + "end": { + "$date": "2021-05-12T02:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a0444601-49f7-404d-af30-f2af72a7741e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-11T23:02:26.000Z" + }, + "end": { + "$date": "2021-05-11T23:14:48.000Z" + }, + "events": [ + { + "uuid": "cae034b7-2cf3-4972-9247-505a4d82858d", + "start": { + "$date": "2021-05-11T23:02:26.000Z" + }, + "end": { + "$date": "2021-05-11T23:14:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b36fe278-2922-4f35-a293-6e45e917573b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-11T23:28:30.000Z" + }, + "end": { + "$date": "2021-05-11T23:43:50.000Z" + }, + "events": [ + { + "uuid": "5f45edc8-b165-41f3-aaab-e53b37cdf80d", + "start": { + "$date": "2021-05-11T23:28:30.000Z" + }, + "end": { + "$date": "2021-05-11T23:43:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3070e56-68a7-4c21-b6ba-fe8c7aab1eb6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-11T23:44:51.000Z" + }, + "end": { + "$date": "2021-05-12T00:01:51.000Z" + }, + "events": [ + { + "uuid": "9bbb6e1d-1be7-4dbe-a17f-0e7b9cb5a897", + "start": { + "$date": "2021-05-11T23:44:51.000Z" + }, + "end": { + "$date": "2021-05-12T00:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3321c243-8b56-4359-a844-44b78c40f3b8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-12T00:03:42.000Z" + }, + "end": { + "$date": "2021-05-12T00:22:22.000Z" + }, + "events": [ + { + "uuid": "afacbd0f-86b3-4c9d-affc-d600879d552e", + "start": { + "$date": "2021-05-12T00:03:42.000Z" + }, + "end": { + "$date": "2021-05-12T00:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "07509ea7-31e9-4b6f-9bb2-048b0c976f7c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-12T00:41:54.000Z" + }, + "end": { + "$date": "2021-05-12T02:20:26.000Z" + }, + "events": [ + { + "uuid": "60d189ef-821a-4da9-b3a1-a40ab81f27d3", + "start": { + "$date": "2021-05-12T00:41:54.000Z" + }, + "end": { + "$date": "2021-05-12T00:43:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "887bdd52-efe5-40f2-82d2-8d805e6da2d8", + "start": { + "$date": "2021-05-12T00:43:54.000Z" + }, + "end": { + "$date": "2021-05-12T00:44:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "716ea638-4600-4641-ba55-ef9d8fc43d62", + "start": { + "$date": "2021-05-12T00:44:54.000Z" + }, + "end": { + "$date": "2021-05-12T00:46:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6271335-4d01-46f5-af72-ac0d7b1d879e", + "start": { + "$date": "2021-05-12T00:46:54.000Z" + }, + "end": { + "$date": "2021-05-12T00:49:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7f977ec-9904-4903-ba59-7af849b29f13", + "start": { + "$date": "2021-05-12T00:49:54.000Z" + }, + "end": { + "$date": "2021-05-12T00:52:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c5904b2-974b-4f57-9a8d-20ab47dfbfb3", + "start": { + "$date": "2021-05-12T00:52:54.000Z" + }, + "end": { + "$date": "2021-05-12T01:37:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7c861b47-a5e3-4166-ba8a-1d938df5777a", + "start": { + "$date": "2021-05-12T01:37:54.000Z" + }, + "end": { + "$date": "2021-05-12T01:40:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffe72c84-42b3-4c3f-9729-74095ec144ca", + "start": { + "$date": "2021-05-12T01:40:54.000Z" + }, + "end": { + "$date": "2021-05-12T01:42:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e464e83-394e-400e-a14e-caf493026ec0", + "start": { + "$date": "2021-05-12T01:42:54.000Z" + }, + "end": { + "$date": "2021-05-12T01:46:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "07f752c9-7ee7-4e3f-916f-eeb62ce1de79", + "start": { + "$date": "2021-05-12T01:46:54.000Z" + }, + "end": { + "$date": "2021-05-12T01:53:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "78149784-82c3-49cb-99ae-3a129552d130", + "start": { + "$date": "2021-05-12T01:53:54.000Z" + }, + "end": { + "$date": "2021-05-12T02:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd115589-0081-44c8-b7e4-d0abbe14732a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T01:18:34.000Z" + }, + "end": { + "$date": "2021-05-12T01:54:42.000Z" + }, + "events": [ + { + "uuid": "5d5cf0c0-0c3b-47bb-80d3-5acde00dd665", + "start": { + "$date": "2021-05-12T01:18:34.000Z" + }, + "end": { + "$date": "2021-05-12T01:54:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0d5f13a-c1bd-44b6-906e-9d4ec31b5a58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T02:28:31.000Z" + }, + "end": { + "$date": "2021-05-12T03:10:01.000Z" + }, + "events": [ + { + "uuid": "c99420d0-ec43-45a2-9ecc-c884adf47e6d", + "start": { + "$date": "2021-05-12T02:28:31.000Z" + }, + "end": { + "$date": "2021-05-12T03:10:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "91a77fde-32cc-468f-956d-1b37b30c0cbb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-12T02:06:36.000Z" + }, + "end": { + "$date": "2021-05-12T05:26:44.000Z" + }, + "events": [ + { + "uuid": "5f4e115f-76a6-4a34-9a9d-0696da7f91f8", + "start": { + "$date": "2021-05-12T02:06:36.000Z" + }, + "end": { + "$date": "2021-05-12T05:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c4278228-a88b-4047-9a31-6655fb6ba77a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-12T02:36:55.000Z" + }, + "end": { + "$date": "2021-05-12T02:44:57.000Z" + }, + "events": [ + { + "uuid": "8e00a51a-273d-41d1-bb0c-40bd5bd81334", + "start": { + "$date": "2021-05-12T02:36:55.000Z" + }, + "end": { + "$date": "2021-05-12T02:44:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a938d320-d6dd-44c2-9a9e-302e2d85930d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-12T02:45:57.000Z" + }, + "end": { + "$date": "2021-05-12T06:25:30.000Z" + }, + "events": [ + { + "uuid": "7f910c10-33cc-4fe8-9140-da6b4fcdd401", + "start": { + "$date": "2021-05-12T02:45:57.000Z" + }, + "end": { + "$date": "2021-05-12T05:33:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a80ebef-c013-4dfb-8e63-4f831d467766", + "start": { + "$date": "2021-05-12T05:33:57.000Z" + }, + "end": { + "$date": "2021-05-12T05:34:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "66e7b5f4-2221-447d-86c7-e1c53fbcb545", + "start": { + "$date": "2021-05-12T05:34:57.000Z" + }, + "end": { + "$date": "2021-05-12T06:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ace770d5-216f-4aa0-8697-2c8f65c98416", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T02:52:34.000Z" + }, + "end": { + "$date": "2021-05-12T03:17:09.000Z" + }, + "events": [ + { + "uuid": "624ded19-5f1b-45fb-afd2-b6e919bc918e", + "start": { + "$date": "2021-05-12T02:52:34.000Z" + }, + "end": { + "$date": "2021-05-12T03:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2a50c8a7-1a8c-4275-b70c-de5e753d30c9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-12T02:57:07.000Z" + }, + "end": { + "$date": "2021-05-12T03:30:56.000Z" + }, + "events": [ + { + "uuid": "0ccd70c8-f26e-4a8d-9bd6-aec56dd45004", + "start": { + "$date": "2021-05-12T02:57:07.000Z" + }, + "end": { + "$date": "2021-05-12T03:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "605e014b-b796-4950-ba39-bf6a0d171e56", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-12T03:07:08.000Z" + }, + "end": { + "$date": "2021-05-12T05:41:34.000Z" + }, + "events": [ + { + "uuid": "b61f677a-39a8-4bb3-acac-56371d4f9160", + "start": { + "$date": "2021-05-12T03:07:08.000Z" + }, + "end": { + "$date": "2021-05-12T05:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e10d9350-0b7d-4d74-ac73-e2e80164f978", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T03:18:06.000Z" + }, + "end": { + "$date": "2021-05-12T03:41:23.000Z" + }, + "events": [ + { + "uuid": "bdd2c906-9a6b-417d-882c-9a82609242eb", + "start": { + "$date": "2021-05-12T03:18:06.000Z" + }, + "end": { + "$date": "2021-05-12T03:41:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d630ad0e-402a-420c-b06f-0d756609dec1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T03:17:14.000Z" + }, + "end": { + "$date": "2021-05-12T03:22:40.000Z" + }, + "events": [ + { + "uuid": "9679894f-6435-4b90-a757-ed065c9b4fa5", + "start": { + "$date": "2021-05-12T03:17:14.000Z" + }, + "end": { + "$date": "2021-05-12T03:22:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ccdf8b5d-3b53-4df7-9598-460d727ac9f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T03:31:11.000Z" + }, + "end": { + "$date": "2021-05-12T03:36:12.000Z" + }, + "events": [ + { + "uuid": "396d7cf3-d700-4047-b5cc-df5280d8ab33", + "start": { + "$date": "2021-05-12T03:31:11.000Z" + }, + "end": { + "$date": "2021-05-12T03:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ea826ab3-d0a7-49fc-918e-51e9345933d0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-12T03:35:02.000Z" + }, + "end": { + "$date": "2021-05-12T07:28:58.000Z" + }, + "events": [ + { + "uuid": "2c6a9e7f-4898-4f87-abf0-71432095694e", + "start": { + "$date": "2021-05-12T03:35:02.000Z" + }, + "end": { + "$date": "2021-05-12T07:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "21768cb8-e383-434c-9dc3-ec0357d227d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T03:36:22.000Z" + }, + "end": { + "$date": "2021-05-12T03:37:28.000Z" + }, + "events": [ + { + "uuid": "85727a37-969e-4d8d-81d0-17ef44204e6b", + "start": { + "$date": "2021-05-12T03:36:22.000Z" + }, + "end": { + "$date": "2021-05-12T03:37:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8e08226f-50b5-4570-8a83-98cbdbed1e49", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T03:37:47.000Z" + }, + "end": { + "$date": "2021-05-12T04:31:41.000Z" + }, + "events": [ + { + "uuid": "be383a27-446b-48d6-bcc6-c29a9f16c988", + "start": { + "$date": "2021-05-12T03:37:47.000Z" + }, + "end": { + "$date": "2021-05-12T04:31:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d4c90a2-5104-4f9e-af92-62922c451fb7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-12T03:46:23.000Z" + }, + "end": { + "$date": "2021-05-12T04:15:25.000Z" + }, + "events": [ + { + "uuid": "ada761eb-f34a-4bf1-a17f-fe66bce54efd", + "start": { + "$date": "2021-05-12T03:46:23.000Z" + }, + "end": { + "$date": "2021-05-12T04:15:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b88303da-c483-4898-8416-06df58e18874", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T03:46:13.000Z" + }, + "end": { + "$date": "2021-05-12T04:15:14.000Z" + }, + "events": [ + { + "uuid": "a42fdc18-5435-45de-ac77-b44967c9fd49", + "start": { + "$date": "2021-05-12T03:46:13.000Z" + }, + "end": { + "$date": "2021-05-12T04:15:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "947dbb6f-e5f4-4655-ae63-49dc790e83de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-12T04:19:56.000Z" + }, + "end": { + "$date": "2021-05-12T04:46:12.000Z" + }, + "events": [ + { + "uuid": "89c3468a-82db-42c1-8259-2da976399c39", + "start": { + "$date": "2021-05-12T04:19:56.000Z" + }, + "end": { + "$date": "2021-05-12T04:46:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7821727-0cb2-46e7-a2bf-effe18f300c7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T04:19:49.000Z" + }, + "end": { + "$date": "2021-05-12T04:46:15.000Z" + }, + "events": [ + { + "uuid": "d8e58497-57ca-4ccb-a3cd-3da8c495b417", + "start": { + "$date": "2021-05-12T04:19:49.000Z" + }, + "end": { + "$date": "2021-05-12T04:46:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eafdd5cd-75c6-4a4c-99f0-f0c46d9845c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T04:35:06.000Z" + }, + "end": { + "$date": "2021-05-12T04:47:27.000Z" + }, + "events": [ + { + "uuid": "375f7a15-9b50-49e7-a3dd-99145e68bbaf", + "start": { + "$date": "2021-05-12T04:35:06.000Z" + }, + "end": { + "$date": "2021-05-12T04:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3286d734-d095-4e38-b881-d289cf74f3ac", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-12T04:42:13.000Z" + }, + "end": { + "$date": "2021-05-12T07:29:00.000Z" + }, + "events": [ + { + "uuid": "f4feb2ed-503f-4211-9a9d-ccaee245a37e", + "start": { + "$date": "2021-05-12T04:42:13.000Z" + }, + "end": { + "$date": "2021-05-12T07:29:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75751660-ae07-4afc-8f47-2532d72b24be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-12T04:55:50.000Z" + }, + "end": { + "$date": "2021-05-12T05:17:28.000Z" + }, + "events": [ + { + "uuid": "8362d2c0-7a57-49e3-ad2e-0505e2bf8192", + "start": { + "$date": "2021-05-12T04:55:50.000Z" + }, + "end": { + "$date": "2021-05-12T05:17:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa1c7243-9998-4ca5-88ae-d043b7542903", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T05:03:43.000Z" + }, + "end": { + "$date": "2021-05-12T17:12:25.000Z" + }, + "events": [ + { + "uuid": "044f1546-000c-432c-89d2-2a42934361b3", + "start": { + "$date": "2021-05-12T05:03:43.000Z" + }, + "end": { + "$date": "2021-05-12T05:32:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "260debda-953a-4db3-a6bf-f63ed9bc497f", + "start": { + "$date": "2021-05-12T05:32:43.000Z" + }, + "end": { + "$date": "2021-05-12T05:50:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b52d8c97-f690-4593-bc15-4b6e35ddafae", + "start": { + "$date": "2021-05-12T05:50:43.000Z" + }, + "end": { + "$date": "2021-05-12T05:52:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49d37079-9dbd-4780-b99a-971af40175b3", + "start": { + "$date": "2021-05-12T05:52:43.000Z" + }, + "end": { + "$date": "2021-05-12T05:58:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a02ae1bd-b4d5-429f-a465-1f3ade9d6ab5", + "start": { + "$date": "2021-05-12T05:58:43.000Z" + }, + "end": { + "$date": "2021-05-12T06:00:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc697763-917f-476b-ab42-3a965c541680", + "start": { + "$date": "2021-05-12T06:00:43.000Z" + }, + "end": { + "$date": "2021-05-12T15:54:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "419360b3-9e01-4323-bafc-2f73969cfab1", + "start": { + "$date": "2021-05-12T15:54:43.000Z" + }, + "end": { + "$date": "2021-05-12T15:58:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6163df17-b4cd-423f-a35e-82a4dbc6d69b", + "start": { + "$date": "2021-05-12T15:58:43.000Z" + }, + "end": { + "$date": "2021-05-12T16:04:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9fd5e5b4-afc3-48be-872f-420026f2b0d5", + "start": { + "$date": "2021-05-12T16:04:43.000Z" + }, + "end": { + "$date": "2021-05-12T16:06:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "65548d70-909f-45b4-82de-fee3817b84aa", + "start": { + "$date": "2021-05-12T16:06:43.000Z" + }, + "end": { + "$date": "2021-05-12T16:12:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7e1fc092-132d-401f-a458-fb38de9d10d7", + "start": { + "$date": "2021-05-12T16:12:43.000Z" + }, + "end": { + "$date": "2021-05-12T16:14:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ecad2a15-f692-4419-8b3b-d6f50af25250", + "start": { + "$date": "2021-05-12T16:14:43.000Z" + }, + "end": { + "$date": "2021-05-12T16:36:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df9b130d-8088-4553-a683-c10c4acebb04", + "start": { + "$date": "2021-05-12T16:36:43.000Z" + }, + "end": { + "$date": "2021-05-12T17:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55a8bb71-345e-4cc8-92d0-5173e44507c8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T04:50:27.000Z" + }, + "end": { + "$date": "2021-05-12T04:50:42.000Z" + }, + "events": [ + { + "uuid": "b3919f7f-f0c2-417c-8422-18363dfb34ec", + "start": { + "$date": "2021-05-12T04:50:27.000Z" + }, + "end": { + "$date": "2021-05-12T04:50:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1eab980b-d2a8-4bfb-8adf-18e2809dbb3a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T05:17:17.000Z" + }, + "end": { + "$date": "2021-05-12T05:20:27.000Z" + }, + "events": [ + { + "uuid": "8b1e5f5b-42f1-45fb-9cf1-a4ca0804f271", + "start": { + "$date": "2021-05-12T05:17:17.000Z" + }, + "end": { + "$date": "2021-05-12T05:20:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "233bc245-616f-4a7d-8676-2672810f858f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-12T05:29:34.000Z" + }, + "end": { + "$date": "2021-05-12T05:29:49.000Z" + }, + "events": [ + { + "uuid": "ea632cc2-7bbb-4ebf-8542-c28fffc7d3e2", + "start": { + "$date": "2021-05-12T05:29:34.000Z" + }, + "end": { + "$date": "2021-05-12T05:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc42f1df-ccb2-4696-94b5-eda92b024a83", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-12T05:33:00.000Z" + }, + "end": { + "$date": "2021-05-12T06:10:35.000Z" + }, + "events": [ + { + "uuid": "91f867b4-542e-4629-af7c-a98f0cf1c58b", + "start": { + "$date": "2021-05-12T05:33:00.000Z" + }, + "end": { + "$date": "2021-05-12T06:10:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd2c598f-d26d-4921-81ee-d5adee1bad71", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-12T05:34:50.000Z" + }, + "end": { + "$date": "2021-05-12T06:10:21.000Z" + }, + "events": [ + { + "uuid": "4b5215d6-bb61-45a0-9ee0-db5e850f3ebe", + "start": { + "$date": "2021-05-12T05:34:50.000Z" + }, + "end": { + "$date": "2021-05-12T06:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ffc9ff6-75ff-4512-a9b9-eae6e1265665", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T05:33:34.000Z" + }, + "end": { + "$date": "2021-05-12T06:10:25.000Z" + }, + "events": [ + { + "uuid": "39a7743d-ce88-4532-a9aa-eaaaa86f1656", + "start": { + "$date": "2021-05-12T05:33:34.000Z" + }, + "end": { + "$date": "2021-05-12T06:10:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50a742b9-8b47-4092-9083-0bd17374cafa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-12T06:53:53.000Z" + }, + "end": { + "$date": "2021-05-12T07:25:53.000Z" + }, + "events": [ + { + "uuid": "f5246744-c48d-4478-b8a7-977db001b561", + "start": { + "$date": "2021-05-12T06:53:53.000Z" + }, + "end": { + "$date": "2021-05-12T07:25:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "f36a7674-6181-4bb3-b438-814932993c77", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-12T12:56:12.000Z" + }, + "end": { + "$date": "2021-05-12T12:56:16.000Z" + }, + "events": [ + { + "uuid": "e2f051cf-e4f8-452a-a02e-d93d87d228f2", + "start": { + "$date": "2021-05-12T12:56:12.000Z" + }, + "end": { + "$date": "2021-05-12T12:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "21eff3bd-f256-4984-b212-52cfe8f4dde2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-12T12:58:18.000Z" + }, + "end": { + "$date": "2021-05-12T12:58:26.000Z" + }, + "events": [ + { + "uuid": "2aa933fa-7830-47cf-8f62-34daa08cfbde", + "start": { + "$date": "2021-05-12T12:58:18.000Z" + }, + "end": { + "$date": "2021-05-12T12:58:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "3280f47c-36d2-4946-96c7-47de23f52f99", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-12T12:59:38.000Z" + }, + "end": { + "$date": "2021-05-12T13:01:47.000Z" + }, + "events": [ + { + "uuid": "5267d539-3fcd-47c8-9ca5-4e9055aca590", + "start": { + "$date": "2021-05-12T12:59:38.000Z" + }, + "end": { + "$date": "2021-05-12T13:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "883180d0-a6c9-4446-b652-1075ec8bbb7e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-12T13:05:09.000Z" + }, + "end": { + "$date": "2021-05-12T13:05:12.000Z" + }, + "events": [ + { + "uuid": "6fc4c6d0-fdde-4b2b-a4b1-ff41678e37c5", + "start": { + "$date": "2021-05-12T13:05:09.000Z" + }, + "end": { + "$date": "2021-05-12T13:05:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "1129202a-34af-4b97-ae04-dbacf33c25e8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-12T21:19:46.000Z" + }, + "end": { + "$date": "2021-05-13T00:12:09.000Z" + }, + "events": [ + { + "uuid": "4458409a-9ff4-45c4-b3da-e43a8054c0d8", + "start": { + "$date": "2021-05-12T21:19:46.000Z" + }, + "end": { + "$date": "2021-05-13T01:25:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4999554d-7e2f-40f4-91b3-515d0483bb88", + "start": { + "$date": "2021-05-13T01:25:46.000Z" + }, + "end": { + "$date": "2021-05-13T01:39:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ecbb907-8c42-4240-b7de-e40c735488fd", + "start": { + "$date": "2021-05-13T01:39:46.000Z" + }, + "end": { + "$date": "2021-05-13T00:12:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3f95a80d-f7dc-4dbf-bc48-1e5cde1247c2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-12T14:07:46.000Z" + }, + "end": { + "$date": "2021-05-12T15:42:54.000Z" + }, + "events": [ + { + "uuid": "5f583d5e-dc79-489a-85b4-4ba8559d70e1", + "start": { + "$date": "2021-05-12T14:07:46.000Z" + }, + "end": { + "$date": "2021-05-12T15:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "502baebe-752a-45f2-96f3-23c308c1d4fc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-05-12T15:12:45.000Z" + }, + "end": { + "$date": "2021-05-12T18:57:56.000Z" + }, + "events": [ + { + "uuid": "d6a7f2d9-65e3-4b19-84db-bed4e43fc1db", + "start": { + "$date": "2021-05-12T15:12:45.000Z" + }, + "end": { + "$date": "2021-05-12T18:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "92031d2b-61b6-41aa-a394-a840b8f1d6b6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-12T16:19:02.000Z" + }, + "end": { + "$date": "2021-05-12T16:56:08.000Z" + }, + "events": [ + { + "uuid": "fb10d4bb-8f72-4841-a795-f8461a3e98ca", + "start": { + "$date": "2021-05-12T16:19:02.000Z" + }, + "end": { + "$date": "2021-05-12T16:56:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a73bce63-1694-4e2c-8481-3360017d3470", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-12T18:35:26.000Z" + }, + "end": { + "$date": "2021-05-12T19:44:06.000Z" + }, + "events": [ + { + "uuid": "72d33a59-b634-4947-bd0c-e73af21f1dad", + "start": { + "$date": "2021-05-12T18:35:26.000Z" + }, + "end": { + "$date": "2021-05-12T20:18:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab0c9f03-09ad-4805-8a4a-94e8f6e897f5", + "start": { + "$date": "2021-05-12T20:18:26.000Z" + }, + "end": { + "$date": "2021-05-12T20:23:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dc37d6f0-3740-47b7-8cc4-8d4943f27ff9", + "start": { + "$date": "2021-05-12T20:23:26.000Z" + }, + "end": { + "$date": "2021-05-12T20:33:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c94b3091-d46c-490d-82f1-6b6428ea6847", + "start": { + "$date": "2021-05-12T20:33:26.000Z" + }, + "end": { + "$date": "2021-05-12T20:34:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc4cce56-cb3b-4097-b563-8ef7d78921ff", + "start": { + "$date": "2021-05-12T20:34:26.000Z" + }, + "end": { + "$date": "2021-05-12T20:36:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d937fd4-7f4c-4efa-9188-0b81523379b1", + "start": { + "$date": "2021-05-12T20:36:26.000Z" + }, + "end": { + "$date": "2021-05-12T19:44:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fae02c2c-6751-48c9-87e1-a6e7620156ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T17:27:35.000Z" + }, + "end": { + "$date": "2021-05-12T18:09:13.000Z" + }, + "events": [ + { + "uuid": "d2bdb3fe-6295-46fb-b032-74d5ac9ac301", + "start": { + "$date": "2021-05-12T17:27:35.000Z" + }, + "end": { + "$date": "2021-05-12T18:09:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54dcddef-6ff4-4d11-9262-fb6ac707b1a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T18:11:03.000Z" + }, + "end": { + "$date": "2021-05-12T18:43:01.000Z" + }, + "events": [ + { + "uuid": "3e691df4-e48f-4a7a-ace1-20c6bcc99634", + "start": { + "$date": "2021-05-12T18:11:03.000Z" + }, + "end": { + "$date": "2021-05-12T18:43:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "76c7f48d-1b66-48ad-b22b-f97ec35db3f9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-12T18:38:56.000Z" + }, + "end": { + "$date": "2021-05-12T19:18:29.000Z" + }, + "events": [ + { + "uuid": "d2e5485f-59ed-4d2f-86e6-9b4530c53c05", + "start": { + "$date": "2021-05-12T18:38:56.000Z" + }, + "end": { + "$date": "2021-05-12T18:43:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d7d435c-daa8-477a-9fd4-4ceb892e557b", + "start": { + "$date": "2021-05-12T18:43:56.000Z" + }, + "end": { + "$date": "2021-05-12T19:18:29.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1955a421-6173-45f6-9c41-40f28f3bb227", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T18:47:25.000Z" + }, + "end": { + "$date": "2021-05-12T18:54:17.000Z" + }, + "events": [ + { + "uuid": "1663bbb9-9455-4d97-a619-193a97b9a6c5", + "start": { + "$date": "2021-05-12T18:47:25.000Z" + }, + "end": { + "$date": "2021-05-12T18:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0db2efe-2da2-48b2-a5bb-b10a43fd764d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T19:36:55.000Z" + }, + "end": { + "$date": "2021-05-12T19:48:27.000Z" + }, + "events": [ + { + "uuid": "c3299bd2-eee8-4015-a249-f08b26f302c4", + "start": { + "$date": "2021-05-12T19:36:55.000Z" + }, + "end": { + "$date": "2021-05-12T19:48:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "21feb2d5-1296-4e5d-992f-cd95d767b67a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-12T19:16:06.000Z" + }, + "end": { + "$date": "2021-05-12T20:13:07.000Z" + }, + "events": [ + { + "uuid": "f13ecdc4-2887-402a-9c6b-d425b60e166c", + "start": { + "$date": "2021-05-12T19:16:06.000Z" + }, + "end": { + "$date": "2021-05-12T20:13:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ae13fb00-104b-4d45-b139-2d8bad21784a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-13T06:26:21.000Z" + }, + "end": { + "$date": "2021-05-13T06:26:45.000Z" + }, + "events": [ + { + "uuid": "574cb83c-c776-4e2e-a2c7-b9a9f96043a1", + "start": { + "$date": "2021-05-13T06:26:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:11:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12bfebc4-599e-4151-a719-2087a071b6d5", + "start": { + "$date": "2021-05-13T07:11:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:32:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8c67547-3ce9-4da8-922e-2b7f15279745", + "start": { + "$date": "2021-05-13T07:32:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:34:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b67d7749-323a-4e7c-a726-b176fd75a0ce", + "start": { + "$date": "2021-05-13T07:34:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:40:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "915c57a0-541e-4fa6-a7ee-65466e5cfb2d", + "start": { + "$date": "2021-05-13T07:40:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:42:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83036596-541a-4083-aff5-885c68ba288e", + "start": { + "$date": "2021-05-13T07:42:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:55:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8b7538f-95a8-46fe-8051-4132bb6dd48e", + "start": { + "$date": "2021-05-13T07:55:21.000Z" + }, + "end": { + "$date": "2021-05-13T07:57:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "802c7e44-87ac-48f4-9960-cbea57c9da1e", + "start": { + "$date": "2021-05-13T07:57:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:02:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "265f8afa-cf80-4744-8239-ad04f3a81f09", + "start": { + "$date": "2021-05-13T08:02:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:10:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d832e6f4-6bbe-4a1a-805f-635f5a6f0ef2", + "start": { + "$date": "2021-05-13T08:10:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:14:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "66f99f73-93c5-450d-8d42-fde33660b24f", + "start": { + "$date": "2021-05-13T08:14:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:17:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78b1ac40-ef0c-4ca0-93dc-b9808c1b4661", + "start": { + "$date": "2021-05-13T08:17:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:18:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b843f464-1597-47fd-b620-f83ed24b973b", + "start": { + "$date": "2021-05-13T08:18:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:20:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01bb9dfa-2466-47c2-9cf2-1e5fcbf11c63", + "start": { + "$date": "2021-05-13T08:20:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:27:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "05c59395-efd0-4bbe-80f0-c54fd32e5d41", + "start": { + "$date": "2021-05-13T08:27:21.000Z" + }, + "end": { + "$date": "2021-05-13T08:29:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b88e5eeb-bfaf-40d0-96d0-185e0f1f0126", + "start": { + "$date": "2021-05-13T08:29:21.000Z" + }, + "end": { + "$date": "2021-05-13T09:03:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32716cfc-6d1a-4875-bd15-6f057fc2dd07", + "start": { + "$date": "2021-05-13T09:03:21.000Z" + }, + "end": { + "$date": "2021-05-13T09:08:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd29b46f-817f-48b9-a0fe-86f5eecf61b9", + "start": { + "$date": "2021-05-13T09:08:21.000Z" + }, + "end": { + "$date": "2021-05-13T09:09:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73215928-154c-41ff-9e9d-85a48b414660", + "start": { + "$date": "2021-05-13T09:09:21.000Z" + }, + "end": { + "$date": "2021-05-13T09:11:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "865fb6ff-d700-44ad-9adb-4cc71ac03826", + "start": { + "$date": "2021-05-13T09:11:21.000Z" + }, + "end": { + "$date": "2021-05-13T10:28:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5c7de46-92bc-46a2-b7a0-3009b70b200c", + "start": { + "$date": "2021-05-13T10:28:21.000Z" + }, + "end": { + "$date": "2021-05-13T10:33:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffa08fca-893f-45b3-8d9f-ca3558eb9a25", + "start": { + "$date": "2021-05-13T10:33:21.000Z" + }, + "end": { + "$date": "2021-05-13T11:08:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58ab232e-2dd5-487e-823e-da83ece2736e", + "start": { + "$date": "2021-05-13T11:08:21.000Z" + }, + "end": { + "$date": "2021-05-13T11:10:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a229f130-1fe3-4d2c-9ed5-f0796eba3f6c", + "start": { + "$date": "2021-05-13T11:10:21.000Z" + }, + "end": { + "$date": "2021-05-13T11:55:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4bdd37ac-e9df-497a-ba6d-0f9fa0852009", + "start": { + "$date": "2021-05-13T11:55:21.000Z" + }, + "end": { + "$date": "2021-05-13T12:04:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f2ca164-885b-462f-9003-280d582c640b", + "start": { + "$date": "2021-05-13T12:04:21.000Z" + }, + "end": { + "$date": "2021-05-13T12:05:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ac70b647-ec0c-446e-8810-e4a2baf7b017", + "start": { + "$date": "2021-05-13T12:05:21.000Z" + }, + "end": { + "$date": "2021-05-13T12:07:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73ea2ed7-84ad-4099-b128-ea382a30abae", + "start": { + "$date": "2021-05-13T12:07:21.000Z" + }, + "end": { + "$date": "2021-05-13T12:56:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1656ad86-4293-4199-9378-e0f239b82a90", + "start": { + "$date": "2021-05-13T12:56:21.000Z" + }, + "end": { + "$date": "2021-05-13T12:58:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb163e32-6136-484f-9f1d-175c8191910b", + "start": { + "$date": "2021-05-13T12:58:21.000Z" + }, + "end": { + "$date": "2021-05-13T13:02:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7216b330-bf9b-4898-907a-5bb94312687d", + "start": { + "$date": "2021-05-13T13:02:21.000Z" + }, + "end": { + "$date": "2021-05-13T06:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "b0af5808-3dc7-49fd-a66d-43ef3483b25f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-12T19:53:52.000Z" + }, + "end": { + "$date": "2021-05-12T21:09:25.000Z" + }, + "events": [ + { + "uuid": "b335e7de-e41b-4def-a548-77abfac5bc26", + "start": { + "$date": "2021-05-12T19:53:52.000Z" + }, + "end": { + "$date": "2021-05-12T21:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cdb2c3ae-3bed-4401-becc-df17e47f947c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T20:26:25.000Z" + }, + "end": { + "$date": "2021-05-12T23:36:28.000Z" + }, + "events": [ + { + "uuid": "caa87554-a704-4d79-b080-87bf14c988a0", + "start": { + "$date": "2021-05-12T20:26:25.000Z" + }, + "end": { + "$date": "2021-05-12T20:44:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7792f4da-cf28-4be8-8d2a-b10f1c926655", + "start": { + "$date": "2021-05-12T20:44:25.000Z" + }, + "end": { + "$date": "2021-05-12T20:45:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7da78538-80f0-49ef-af59-adeb4dfb5fc1", + "start": { + "$date": "2021-05-12T20:45:25.000Z" + }, + "end": { + "$date": "2021-05-12T23:36:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "551b7f9c-bf61-4f5e-a887-5889c92470a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-12T21:09:45.000Z" + }, + "end": { + "$date": "2021-05-12T22:39:09.000Z" + }, + "events": [ + { + "uuid": "49165788-dee7-41ad-a4d8-ab0fdf55da83", + "start": { + "$date": "2021-05-12T21:09:45.000Z" + }, + "end": { + "$date": "2021-05-12T22:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b4aa563-b48b-4f13-8578-ee750652855c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-12T22:23:40.000Z" + }, + "end": { + "$date": "2021-05-12T23:13:11.000Z" + }, + "events": [ + { + "uuid": "ae67a48d-a567-4c93-a873-fc06cc13f4fa", + "start": { + "$date": "2021-05-12T22:23:40.000Z" + }, + "end": { + "$date": "2021-05-12T23:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4bae2db7-8ce9-4e8d-9a83-913cdbdbf70d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-13T00:37:13.000Z" + }, + "end": { + "$date": "2021-05-13T01:14:22.000Z" + }, + "events": [ + { + "uuid": "70f1363b-5394-48ee-9d46-cf45608dc656", + "start": { + "$date": "2021-05-13T00:37:13.000Z" + }, + "end": { + "$date": "2021-05-13T01:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fd118fcf-9154-4df2-b86b-c3f740fb29b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-12T23:56:00.000Z" + }, + "end": { + "$date": "2021-05-13T00:37:10.000Z" + }, + "events": [ + { + "uuid": "c95e4651-31be-4b54-a405-9daf0b0e6955", + "start": { + "$date": "2021-05-12T23:56:00.000Z" + }, + "end": { + "$date": "2021-05-13T00:11:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd4ce8f1-325e-4bab-afbc-006e869e66d1", + "start": { + "$date": "2021-05-13T00:11:00.000Z" + }, + "end": { + "$date": "2021-05-13T00:35:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23849bfb-b973-4118-9bbe-99146f45cdb3", + "start": { + "$date": "2021-05-13T00:35:00.000Z" + }, + "end": { + "$date": "2021-05-13T00:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72472782-0d07-4ae6-a0af-4daabdf89f44", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T00:38:27.000Z" + }, + "end": { + "$date": "2021-05-13T02:00:43.000Z" + }, + "events": [ + { + "uuid": "b951bf99-1e4a-4dfb-b895-37ccf3eb6d15", + "start": { + "$date": "2021-05-13T00:38:27.000Z" + }, + "end": { + "$date": "2021-05-13T01:40:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "28a6c336-a74a-4d53-8be2-12e05e414b72", + "start": { + "$date": "2021-05-13T01:40:27.000Z" + }, + "end": { + "$date": "2021-05-13T01:51:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "185eec40-c88e-4e8b-b9ef-a6b34b837a65", + "start": { + "$date": "2021-05-13T01:51:27.000Z" + }, + "end": { + "$date": "2021-05-13T02:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9bde6d27-d4ad-4a1a-a09d-689f42df7a21", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-13T01:04:22.000Z" + }, + "end": { + "$date": "2021-05-13T02:18:37.000Z" + }, + "events": [ + { + "uuid": "75036fdc-a9f5-4821-a387-fd2d07fa0d5b", + "start": { + "$date": "2021-05-13T01:04:22.000Z" + }, + "end": { + "$date": "2021-05-13T02:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "46028a60-6046-4b1a-8179-ff2038486f9b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T02:01:41.000Z" + }, + "end": { + "$date": "2021-05-13T05:17:10.000Z" + }, + "events": [ + { + "uuid": "3c6d0c39-804e-453c-bbb0-d53c116a2568", + "start": { + "$date": "2021-05-13T02:01:41.000Z" + }, + "end": { + "$date": "2021-05-13T05:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "459d5f71-d7b9-4ccc-9838-9937861b328a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-13T02:07:04.000Z" + }, + "end": { + "$date": "2021-05-13T06:26:08.000Z" + }, + "events": [ + { + "uuid": "b747a046-f267-4b36-a5f1-b2943dcfffd5", + "start": { + "$date": "2021-05-13T02:07:04.000Z" + }, + "end": { + "$date": "2021-05-13T06:26:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "566dc512-5791-4ff6-9bc3-ac06726aeb41", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-13T02:08:03.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:49.000Z" + }, + "events": [ + { + "uuid": "9dedf9c7-8342-43c7-9f4c-113c4ef23600", + "start": { + "$date": "2021-05-13T02:08:03.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a17aa50b-3d2a-439a-93fa-00a99a5f0268", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-13T02:08:31.000Z" + }, + "end": { + "$date": "2021-05-13T02:13:41.000Z" + }, + "events": [ + { + "uuid": "e5f35efa-76ca-440a-b42d-bef7885ca05f", + "start": { + "$date": "2021-05-13T02:08:31.000Z" + }, + "end": { + "$date": "2021-05-13T02:13:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d08fa93-78e6-4432-9634-0db6106a1d70", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-13T02:14:15.000Z" + }, + "end": { + "$date": "2021-05-13T02:46:06.000Z" + }, + "events": [ + { + "uuid": "ba0a0820-cf2e-48b7-8317-11fb0ddeb900", + "start": { + "$date": "2021-05-13T02:14:15.000Z" + }, + "end": { + "$date": "2021-05-13T02:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55f58722-b12a-4104-8aa0-6a62a7826f2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-13T02:14:22.000Z" + }, + "end": { + "$date": "2021-05-13T02:46:19.000Z" + }, + "events": [ + { + "uuid": "6f0896a5-547f-4ff6-bb46-e7bdcb124782", + "start": { + "$date": "2021-05-13T02:14:22.000Z" + }, + "end": { + "$date": "2021-05-13T02:46:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "f2e7f443-0c84-43a3-aba3-7f9b24d41ed8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-13T02:13:45.000Z" + }, + "end": { + "$date": "2021-05-13T03:01:21.000Z" + }, + "events": [ + { + "uuid": "3d561c3b-04bd-48f4-ab12-8ff07d56f408", + "start": { + "$date": "2021-05-13T02:13:45.000Z" + }, + "end": { + "$date": "2021-05-13T02:41:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "adf703b7-9163-44f7-8e34-4b6dfc505bc7", + "start": { + "$date": "2021-05-13T02:41:45.000Z" + }, + "end": { + "$date": "2021-05-13T02:46:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "539778f4-8f81-412d-ba45-3e933f452c69", + "start": { + "$date": "2021-05-13T02:46:45.000Z" + }, + "end": { + "$date": "2021-05-13T02:56:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f9ea8cd7-ea99-4667-9c79-26049b21d060", + "start": { + "$date": "2021-05-13T02:56:45.000Z" + }, + "end": { + "$date": "2021-05-13T03:01:21.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7090a417-38c7-4fc7-9b65-ad289a5af120", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-13T02:37:45.000Z" + }, + "end": { + "$date": "2021-05-13T02:41:31.000Z" + }, + "events": [ + { + "uuid": "0e0f87a2-1407-4cc0-a6d4-fa906aa543d6", + "start": { + "$date": "2021-05-13T02:37:45.000Z" + }, + "end": { + "$date": "2021-05-13T02:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "0d2585e5-705d-4ae9-a43c-6b472110cd14", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-13T02:46:22.000Z" + }, + "end": { + "$date": "2021-05-13T03:51:08.000Z" + }, + "events": [ + { + "uuid": "d844a393-899b-4852-85b8-385ddf4019ff", + "start": { + "$date": "2021-05-13T02:46:22.000Z" + }, + "end": { + "$date": "2021-05-13T03:51:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9954926f-4c1a-4131-b07f-5b01795d1dae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-13T03:45:42.000Z" + }, + "end": { + "$date": "2021-05-13T04:10:01.000Z" + }, + "events": [ + { + "uuid": "10bef4ca-aad3-4aa1-875d-33bb76a11449", + "start": { + "$date": "2021-05-13T03:45:42.000Z" + }, + "end": { + "$date": "2021-05-13T04:28:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e47d2a5-b1a9-42d8-ad96-b04606b7a710", + "start": { + "$date": "2021-05-13T04:28:42.000Z" + }, + "end": { + "$date": "2021-05-13T04:31:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "892aa5d1-a9e3-4226-9997-7ac989a4d583", + "start": { + "$date": "2021-05-13T04:31:42.000Z" + }, + "end": { + "$date": "2021-05-13T04:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5919b78a-f439-4bac-9cc3-b2a5356165eb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-13T03:27:48.000Z" + }, + "end": { + "$date": "2021-05-13T03:56:57.000Z" + }, + "events": [ + { + "uuid": "fc8d3d03-7ac2-4ccd-8590-158572929369", + "start": { + "$date": "2021-05-13T03:27:48.000Z" + }, + "end": { + "$date": "2021-05-13T03:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2933d7b2-d2de-45e5-ac16-84bed5f94df8", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-13T03:29:19.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:51.000Z" + }, + "events": [ + { + "uuid": "a9529256-27f9-4ce9-8b33-5869f5e5f67d", + "start": { + "$date": "2021-05-13T03:29:19.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c42b0aa-f50f-4892-814b-4df66766e04a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-13T03:45:14.000Z" + }, + "end": { + "$date": "2021-05-13T04:10:06.000Z" + }, + "events": [ + { + "uuid": "28a1e05a-ba51-4a97-ae1c-817e4f8c3f8e", + "start": { + "$date": "2021-05-13T03:45:14.000Z" + }, + "end": { + "$date": "2021-05-13T04:10:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4667319-1d4f-443e-80b8-4f4ab0c02912", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-13T04:16:03.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:34.000Z" + }, + "events": [ + { + "uuid": "8796fbcf-bf66-46d5-ae8b-8afbc11e9c8f", + "start": { + "$date": "2021-05-13T04:16:03.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdbfc13a-21d4-458e-9b1e-8ea0b30cf530", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-13T04:16:12.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:42.000Z" + }, + "events": [ + { + "uuid": "b3b5880e-b334-4d7f-a239-ac7198a25e07", + "start": { + "$date": "2021-05-13T04:16:12.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc9040eb-0410-474f-99f1-604d8486303f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-13T04:23:20.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:31.000Z" + }, + "events": [ + { + "uuid": "b3a4c071-8d78-4751-9bd4-00063e22ca29", + "start": { + "$date": "2021-05-13T04:23:20.000Z" + }, + "end": { + "$date": "2021-05-13T04:50:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a38d38ee-ee2b-493b-86d2-fb3f362946ef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-13T04:21:36.000Z" + }, + "end": { + "$date": "2021-05-13T04:43:44.000Z" + }, + "events": [ + { + "uuid": "9654b84a-bdab-4091-9fd7-04fb0d4dc1de", + "start": { + "$date": "2021-05-13T04:21:36.000Z" + }, + "end": { + "$date": "2021-05-13T04:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c6bdaa7c-4e12-498a-9e06-e75ac920e1f1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-13T04:35:59.000Z" + }, + "end": { + "$date": "2021-05-13T05:55:42.000Z" + }, + "events": [ + { + "uuid": "1d160bb5-8454-4673-b498-4f671b19d72a", + "start": { + "$date": "2021-05-13T04:35:59.000Z" + }, + "end": { + "$date": "2021-05-13T05:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "27bbc34a-82f8-41fb-a061-8819f358022d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-13T04:38:48.000Z" + }, + "end": { + "$date": "2021-05-13T06:28:52.000Z" + }, + "events": [ + { + "uuid": "b291650c-a50d-4cdc-a34f-8117518e7f08", + "start": { + "$date": "2021-05-13T04:38:48.000Z" + }, + "end": { + "$date": "2021-05-13T06:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a18af6b4-431f-4c79-ace9-07daf4cf2161", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-13T04:55:39.000Z" + }, + "end": { + "$date": "2021-05-13T05:34:45.000Z" + }, + "events": [ + { + "uuid": "34972fcc-1b85-4300-a1b4-e2367a492740", + "start": { + "$date": "2021-05-13T04:55:39.000Z" + }, + "end": { + "$date": "2021-05-13T05:34:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdd3c2b1-c18b-48c9-97ff-8a002883b9bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-13T04:55:51.000Z" + }, + "end": { + "$date": "2021-05-13T05:34:50.000Z" + }, + "events": [ + { + "uuid": "1f6eab1a-b840-411b-8394-c0de0bc4966a", + "start": { + "$date": "2021-05-13T04:55:51.000Z" + }, + "end": { + "$date": "2021-05-13T05:34:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f356be91-6615-4983-97c6-345ef193770d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-13T04:56:10.000Z" + }, + "end": { + "$date": "2021-05-13T05:34:41.000Z" + }, + "events": [ + { + "uuid": "c02b1122-4acd-4e39-9476-530ca23d5084", + "start": { + "$date": "2021-05-13T04:56:10.000Z" + }, + "end": { + "$date": "2021-05-13T05:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b676c7cf-4197-4b65-8182-3548fec927a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T05:19:35.000Z" + }, + "end": { + "$date": "2021-05-13T16:31:15.000Z" + }, + "events": [ + { + "uuid": "977bd932-a176-40cd-aa55-4f74bb49167b", + "start": { + "$date": "2021-05-13T05:19:35.000Z" + }, + "end": { + "$date": "2021-05-13T05:32:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "afc44b53-5742-4bd7-9eb7-c6e6fd0b9ed3", + "start": { + "$date": "2021-05-13T05:32:35.000Z" + }, + "end": { + "$date": "2021-05-13T05:56:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "699ed496-094f-431d-948d-94b06578c37e", + "start": { + "$date": "2021-05-13T05:56:35.000Z" + }, + "end": { + "$date": "2021-05-13T05:59:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e94d205d-1b16-4ffc-8af8-6a70b00218b6", + "start": { + "$date": "2021-05-13T05:59:35.000Z" + }, + "end": { + "$date": "2021-05-13T06:00:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f29af2a1-9140-4513-9bd5-a4828b5906ec", + "start": { + "$date": "2021-05-13T06:00:35.000Z" + }, + "end": { + "$date": "2021-05-13T06:07:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f1cfca6-6e00-4e05-9252-ef2d32b8dd00", + "start": { + "$date": "2021-05-13T06:07:35.000Z" + }, + "end": { + "$date": "2021-05-13T06:08:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "951c340d-b62e-4d5c-8cd1-46559ef54d48", + "start": { + "$date": "2021-05-13T06:08:35.000Z" + }, + "end": { + "$date": "2021-05-13T06:10:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0603fef-6934-49b9-bef4-c11f2a2b85f4", + "start": { + "$date": "2021-05-13T06:10:35.000Z" + }, + "end": { + "$date": "2021-05-13T15:36:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca8d0fc4-9e23-42a6-8fd9-4928e211c02d", + "start": { + "$date": "2021-05-13T15:36:35.000Z" + }, + "end": { + "$date": "2021-05-13T15:42:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9faa9056-908f-4960-a84a-78288ac35e76", + "start": { + "$date": "2021-05-13T15:42:35.000Z" + }, + "end": { + "$date": "2021-05-13T16:21:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7adba1c-d6d7-4bac-956d-683844706f5b", + "start": { + "$date": "2021-05-13T16:21:35.000Z" + }, + "end": { + "$date": "2021-05-13T16:31:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad724df3-f522-4ae8-a1e9-ab2f796e1dd7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-13T05:42:01.000Z" + }, + "end": { + "$date": "2021-05-13T06:07:47.000Z" + }, + "events": [ + { + "uuid": "3a692f4a-a619-4be1-9733-d601af50b6ac", + "start": { + "$date": "2021-05-13T05:42:01.000Z" + }, + "end": { + "$date": "2021-05-13T06:07:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37dbccbd-e1e6-455d-95d1-854397f908f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-13T06:10:18.000Z" + }, + "end": { + "$date": "2021-05-13T06:43:08.000Z" + }, + "events": [ + { + "uuid": "53a9b72c-7eef-4077-a083-8af58f0ff4ce", + "start": { + "$date": "2021-05-13T06:10:18.000Z" + }, + "end": { + "$date": "2021-05-13T06:43:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "bba28e81-2101-4660-b427-a2e3efa6bb1b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-13T14:13:57.000Z" + }, + "end": { + "$date": "2021-05-13T14:14:01.000Z" + }, + "events": [ + { + "uuid": "b31bc870-323c-4686-bcf9-8ee10bb6cd92", + "start": { + "$date": "2021-05-13T14:13:57.000Z" + }, + "end": { + "$date": "2021-05-13T14:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "ea1ee00d-0274-4fd4-b123-21e29b6cfd93", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-13T16:37:37.000Z" + }, + "end": { + "$date": "2021-05-13T16:37:41.000Z" + }, + "events": [ + { + "uuid": "af94d04e-05ef-40f1-a1aa-13043697b22f", + "start": { + "$date": "2021-05-13T16:37:37.000Z" + }, + "end": { + "$date": "2021-05-13T16:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "840af257-0bc8-49de-9003-121e3157c628", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-13T15:08:50.000Z" + }, + "end": { + "$date": "2021-05-13T17:04:00.000Z" + }, + "events": [ + { + "uuid": "72fb2d87-5633-46a4-8693-5314ab0ee080", + "start": { + "$date": "2021-05-13T15:08:50.000Z" + }, + "end": { + "$date": "2021-05-13T17:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b724521-932a-4b05-9c95-22ad509c218e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T16:31:28.000Z" + }, + "end": { + "$date": "2021-05-13T16:46:26.000Z" + }, + "events": [ + { + "uuid": "bb83219a-8880-43a9-a133-567d5eb83dd5", + "start": { + "$date": "2021-05-13T16:31:28.000Z" + }, + "end": { + "$date": "2021-05-13T16:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "dce91815-52a9-47a4-9766-b4c7fbf17846", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T16:46:27.000Z" + }, + "end": { + "$date": "2021-05-13T17:25:10.000Z" + }, + "events": [ + { + "uuid": "957e1d4f-575d-44ea-94b2-9c4be0c54644", + "start": { + "$date": "2021-05-13T16:46:27.000Z" + }, + "end": { + "$date": "2021-05-13T17:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5924eae5-eb12-4adf-805b-e1723d0be3d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T17:26:40.000Z" + }, + "end": { + "$date": "2021-05-13T17:47:47.000Z" + }, + "events": [ + { + "uuid": "fa05e2c7-c1f7-4cea-90e1-6e7cc72ac118", + "start": { + "$date": "2021-05-13T17:26:40.000Z" + }, + "end": { + "$date": "2021-05-13T17:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cb4382a5-2ee2-411f-ab68-1a9493f967c8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-13T17:31:17.000Z" + }, + "end": { + "$date": "2021-05-13T19:02:41.000Z" + }, + "events": [ + { + "uuid": "cdfc8028-968a-4f6d-9201-b7f50eae7642", + "start": { + "$date": "2021-05-13T17:31:17.000Z" + }, + "end": { + "$date": "2021-05-13T17:37:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c05200ab-2792-4f91-93d3-03efefb7b040", + "start": { + "$date": "2021-05-13T17:37:17.000Z" + }, + "end": { + "$date": "2021-05-13T18:19:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8471f639-2c39-461c-9732-74a22d9d2a22", + "start": { + "$date": "2021-05-13T18:19:17.000Z" + }, + "end": { + "$date": "2021-05-13T18:30:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "28709146-1af8-49aa-be1f-7a616675543b", + "start": { + "$date": "2021-05-13T18:30:17.000Z" + }, + "end": { + "$date": "2021-05-13T18:38:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6425220-4872-4101-a39d-149ba9ed0747", + "start": { + "$date": "2021-05-13T18:38:17.000Z" + }, + "end": { + "$date": "2021-05-13T18:40:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3508aa1b-b0d5-46ce-841f-6d47ea811163", + "start": { + "$date": "2021-05-13T18:40:17.000Z" + }, + "end": { + "$date": "2021-05-13T19:02:41.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fe8e3e7d-cc1d-4c1f-934a-3cce3e41e85c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-13T17:47:51.000Z" + }, + "end": { + "$date": "2021-05-13T18:39:40.000Z" + }, + "events": [ + { + "uuid": "26a89c7a-f74a-4e13-8cbc-92181fcfeb5d", + "start": { + "$date": "2021-05-13T17:47:51.000Z" + }, + "end": { + "$date": "2021-05-13T18:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c1f4528-4cfa-4fff-84ca-c80a62897c8c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T18:07:02.000Z" + }, + "end": { + "$date": "2021-05-13T18:11:43.000Z" + }, + "events": [ + { + "uuid": "8f0b075a-70ba-45d4-b5f0-ac9564628e90", + "start": { + "$date": "2021-05-13T18:07:02.000Z" + }, + "end": { + "$date": "2021-05-13T18:11:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "14fbbc21-13bb-447b-b5e0-08597a098ebc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T18:11:52.000Z" + }, + "end": { + "$date": "2021-05-13T19:02:28.000Z" + }, + "events": [ + { + "uuid": "dc221e8e-c8b3-4a86-a196-c2601225b34f", + "start": { + "$date": "2021-05-13T18:11:52.000Z" + }, + "end": { + "$date": "2021-05-13T19:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "d74c40ca-af02-455a-9979-768c3d14b667", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-13T21:49:54.000Z" + }, + "end": { + "$date": "2021-05-13T23:22:08.000Z" + }, + "events": [ + { + "uuid": "6489164c-cdd2-4244-8fdc-3ce891098ea1", + "start": { + "$date": "2021-05-13T21:49:54.000Z" + }, + "end": { + "$date": "2021-05-13T22:58:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "858416b5-7aa0-4837-8150-f064432ac9ab", + "start": { + "$date": "2021-05-13T22:58:54.000Z" + }, + "end": { + "$date": "2021-05-13T23:39:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1bd0cb4-bb97-4e68-a3d9-385ab048d2cc", + "start": { + "$date": "2021-05-13T23:39:54.000Z" + }, + "end": { + "$date": "2021-05-13T23:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6fe8aabe-7145-4ade-b0e1-3a589fa108d5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-13T20:05:35.000Z" + }, + "end": { + "$date": "2021-05-13T20:54:29.000Z" + }, + "events": [ + { + "uuid": "e69a8fbe-d7b5-407a-aca8-c3f174506586", + "start": { + "$date": "2021-05-13T20:05:35.000Z" + }, + "end": { + "$date": "2021-05-13T20:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "54d3a497-fd2d-4160-9709-e32a3e5f973c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-13T20:24:30.000Z" + }, + "end": { + "$date": "2021-05-13T21:05:55.000Z" + }, + "events": [ + { + "uuid": "eb2cec9a-b087-41eb-9935-7ffb1b20e350", + "start": { + "$date": "2021-05-13T20:24:30.000Z" + }, + "end": { + "$date": "2021-05-13T21:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4e64f6e3-193b-4431-b0d5-0daffca229b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-13T22:50:34.000Z" + }, + "end": { + "$date": "2021-05-14T00:30:47.000Z" + }, + "events": [ + { + "uuid": "4139731b-2c72-4f25-8ab7-1a09aaf48d2d", + "start": { + "$date": "2021-05-13T22:50:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:00:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4643208-ffff-426e-ab99-e5e629590ebc", + "start": { + "$date": "2021-05-13T23:00:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:04:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "490ea52c-cc2f-4df7-ad85-937cb57f1764", + "start": { + "$date": "2021-05-13T23:04:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:06:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd6bec1d-6b15-4bdf-934e-217c0ba8122d", + "start": { + "$date": "2021-05-13T23:06:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:22:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2727e047-dac0-40b2-bd4a-a338244c2523", + "start": { + "$date": "2021-05-13T23:22:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:24:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f42b7251-ed2b-41bc-8dce-9d31c55ab9a8", + "start": { + "$date": "2021-05-13T23:24:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:29:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec61263a-577e-4765-b0f4-00c53e3d7913", + "start": { + "$date": "2021-05-13T23:29:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:31:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3474160-a17f-46b2-8feb-3ed15415f799", + "start": { + "$date": "2021-05-13T23:31:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:32:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "faacbb7d-7013-430a-82f6-06faed49b5e6", + "start": { + "$date": "2021-05-13T23:32:34.000Z" + }, + "end": { + "$date": "2021-05-13T23:34:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6feb84f2-c3eb-4d0e-84ae-bf4c0d8c429f", + "start": { + "$date": "2021-05-13T23:34:34.000Z" + }, + "end": { + "$date": "2021-05-14T00:00:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "24b4b4ff-d76d-4da0-84ab-39b6eb91c058", + "start": { + "$date": "2021-05-14T00:00:34.000Z" + }, + "end": { + "$date": "2021-05-14T00:05:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b7ab8ee-5834-4b67-bebb-1599e733767a", + "start": { + "$date": "2021-05-14T00:05:34.000Z" + }, + "end": { + "$date": "2021-05-14T00:27:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6cea9c3-9adb-450a-bd7e-85d211508b24", + "start": { + "$date": "2021-05-14T00:27:34.000Z" + }, + "end": { + "$date": "2021-05-14T00:30:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b178adde-0c3f-45e7-bd17-620b3e19863f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-13T23:20:24.000Z" + }, + "end": { + "$date": "2021-05-14T00:45:36.000Z" + }, + "events": [ + { + "uuid": "6cafeaa0-0cb8-40bb-a8ca-e79e90cacb4c", + "start": { + "$date": "2021-05-13T23:20:24.000Z" + }, + "end": { + "$date": "2021-05-14T00:45:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a799a5d9-711a-4f79-9d54-6c71a3d3110a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-13T23:26:31.000Z" + }, + "end": { + "$date": "2021-05-13T23:37:07.000Z" + }, + "events": [ + { + "uuid": "f30c9885-dd60-4c16-a33e-71a052126c02", + "start": { + "$date": "2021-05-13T23:26:31.000Z" + }, + "end": { + "$date": "2021-05-13T23:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00272149-32a2-4871-8bf0-9e0e3f2d9d41", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-13T23:34:29.000Z" + }, + "end": { + "$date": "2021-05-14T00:04:32.000Z" + }, + "events": [ + { + "uuid": "c7be0d25-a294-4707-a233-b794184409a2", + "start": { + "$date": "2021-05-13T23:34:29.000Z" + }, + "end": { + "$date": "2021-05-14T00:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6d2f4ac-627b-41c8-841a-d23602f29d36", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-14T00:23:36.000Z" + }, + "end": { + "$date": "2021-05-14T00:49:43.000Z" + }, + "events": [ + { + "uuid": "d2884186-c3d0-4c92-82d3-cb33cc9244b2", + "start": { + "$date": "2021-05-14T00:23:36.000Z" + }, + "end": { + "$date": "2021-05-14T00:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "256dedcb-8b2a-44c6-afa4-5fb6a4fbb4cb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-14T00:35:15.000Z" + }, + "end": { + "$date": "2021-05-14T01:15:28.000Z" + }, + "events": [ + { + "uuid": "25e3caa0-3b5a-4353-92ab-32190de17355", + "start": { + "$date": "2021-05-14T00:35:15.000Z" + }, + "end": { + "$date": "2021-05-14T01:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3ce4698e-983c-4929-b4c0-f1c782dece40", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-14T00:49:20.000Z" + }, + "end": { + "$date": "2021-05-14T00:55:34.000Z" + }, + "events": [ + { + "uuid": "819f6585-8272-43fe-98bd-b9b75bf15f2c", + "start": { + "$date": "2021-05-14T00:49:20.000Z" + }, + "end": { + "$date": "2021-05-14T00:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8df8e394-413e-4d1e-a066-e1a272739380", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-14T01:35:53.000Z" + }, + "end": { + "$date": "2021-05-14T02:07:49.000Z" + }, + "events": [ + { + "uuid": "b4d0f3f1-413b-4b4b-a21f-8276c1ebc163", + "start": { + "$date": "2021-05-14T01:35:53.000Z" + }, + "end": { + "$date": "2021-05-14T02:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9a319cea-89c7-45ba-9c13-24ef076b528c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-14T01:07:19.000Z" + }, + "end": { + "$date": "2021-05-14T01:48:04.000Z" + }, + "events": [ + { + "uuid": "b2b8b631-2ac4-4875-ab89-2fb1b9450d0a", + "start": { + "$date": "2021-05-14T01:07:19.000Z" + }, + "end": { + "$date": "2021-05-14T01:48:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dd60ce6f-c219-4cc0-b79c-3db1df566a9c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-14T01:15:53.000Z" + }, + "end": { + "$date": "2021-05-14T01:25:04.000Z" + }, + "events": [ + { + "uuid": "56a8c046-af8b-4879-a2d3-ba7097485599", + "start": { + "$date": "2021-05-14T01:15:53.000Z" + }, + "end": { + "$date": "2021-05-14T01:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "514fd25c-ca0f-4497-8252-f70fa7f4ec37", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-14T01:28:24.000Z" + }, + "end": { + "$date": "2021-05-14T01:34:19.000Z" + }, + "events": [ + { + "uuid": "df42abf6-2b56-450c-a72d-b2d0524ffc6d", + "start": { + "$date": "2021-05-14T01:28:24.000Z" + }, + "end": { + "$date": "2021-05-14T01:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f0e59eec-3256-47d0-ac8c-929e2f897196", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T01:29:26.000Z" + }, + "end": { + "$date": "2021-05-14T01:48:46.000Z" + }, + "events": [ + { + "uuid": "202c6025-45dd-4276-85e0-9c2a13d0c63e", + "start": { + "$date": "2021-05-14T01:29:26.000Z" + }, + "end": { + "$date": "2021-05-14T01:48:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7137255-cdbc-483c-a5d7-c37e0ebefd53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-14T01:35:57.000Z" + }, + "end": { + "$date": "2021-05-14T02:07:49.000Z" + }, + "events": [ + { + "uuid": "418486f6-582a-47a7-9a38-952654f35472", + "start": { + "$date": "2021-05-14T01:35:57.000Z" + }, + "end": { + "$date": "2021-05-14T02:07:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f19b3f2a-fd95-431a-aab9-84537dd20529", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-14T02:04:58.000Z" + }, + "end": { + "$date": "2021-05-14T03:33:10.000Z" + }, + "events": [ + { + "uuid": "225acaa5-998a-4664-8324-c4c04666a71b", + "start": { + "$date": "2021-05-14T02:04:58.000Z" + }, + "end": { + "$date": "2021-05-14T03:33:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab88d2be-4261-4011-854a-4419899810f2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-14T01:48:30.000Z" + }, + "end": { + "$date": "2021-05-14T04:33:48.000Z" + }, + "events": [ + { + "uuid": "f3d170c9-5596-45ae-b15d-7010246c7389", + "start": { + "$date": "2021-05-14T01:48:30.000Z" + }, + "end": { + "$date": "2021-05-14T04:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "34a8e568-3cd1-4ee8-b08d-7f75f67574b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T01:49:26.000Z" + }, + "end": { + "$date": "2021-05-14T03:58:05.000Z" + }, + "events": [ + { + "uuid": "209485eb-9606-4c77-ae74-39e969de35eb", + "start": { + "$date": "2021-05-14T01:49:26.000Z" + }, + "end": { + "$date": "2021-05-14T03:58:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "195fe78b-086f-4eb3-b038-983f683193c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-14T01:52:20.000Z" + }, + "end": { + "$date": "2021-05-14T02:00:34.000Z" + }, + "events": [ + { + "uuid": "73e32cf3-e7cb-4137-9f63-b181933feb3d", + "start": { + "$date": "2021-05-14T01:52:20.000Z" + }, + "end": { + "$date": "2021-05-14T02:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "822987c1-60b7-4c0b-b993-e398c8d584ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-14T02:14:20.000Z" + }, + "end": { + "$date": "2021-05-14T02:40:55.000Z" + }, + "events": [ + { + "uuid": "580ad2e7-5fd0-4210-a5f6-e9782358ac43", + "start": { + "$date": "2021-05-14T02:14:20.000Z" + }, + "end": { + "$date": "2021-05-14T02:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f107210-fc56-4977-99a3-50484de2adac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-14T02:14:24.000Z" + }, + "end": { + "$date": "2021-05-14T02:41:11.000Z" + }, + "events": [ + { + "uuid": "1766fe0e-5309-4bf2-8395-f37a8512e16e", + "start": { + "$date": "2021-05-14T02:14:24.000Z" + }, + "end": { + "$date": "2021-05-14T02:41:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "690f8513-4d29-4ce7-90cf-34e890eb7985", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-14T02:17:26.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:30.000Z" + }, + "events": [ + { + "uuid": "14097be3-7abc-4364-8ca5-627c876e773c", + "start": { + "$date": "2021-05-14T02:17:26.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8e9e1504-4d87-4f3a-b76d-17129cb762bf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-14T02:29:59.000Z" + }, + "end": { + "$date": "2021-05-14T03:21:40.000Z" + }, + "events": [ + { + "uuid": "d8a14119-8d01-4a9f-ac1e-de165a591322", + "start": { + "$date": "2021-05-14T02:29:59.000Z" + }, + "end": { + "$date": "2021-05-14T03:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a20cce46-cf37-485f-a697-669524584a3f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-14T02:33:41.000Z" + }, + "end": { + "$date": "2021-05-14T04:33:58.000Z" + }, + "events": [ + { + "uuid": "00ec63fc-1005-431c-8f15-866f6da67280", + "start": { + "$date": "2021-05-14T02:33:41.000Z" + }, + "end": { + "$date": "2021-05-14T04:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ac01f43-fc31-4436-87cb-3d91a390d537", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-14T02:45:35.000Z" + }, + "end": { + "$date": "2021-05-14T03:23:31.000Z" + }, + "events": [ + { + "uuid": "70d86240-103d-434a-8630-1afc84662705", + "start": { + "$date": "2021-05-14T02:45:35.000Z" + }, + "end": { + "$date": "2021-05-14T03:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0faa8a9b-bd7f-4a10-b909-6001ebd867d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-14T02:45:38.000Z" + }, + "end": { + "$date": "2021-05-14T03:23:45.000Z" + }, + "events": [ + { + "uuid": "92b8a88f-6c9b-4310-9848-b0d12ff452ea", + "start": { + "$date": "2021-05-14T02:45:38.000Z" + }, + "end": { + "$date": "2021-05-14T03:23:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9814eb97-a592-4a85-bd1a-7804cb12241d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T03:11:05.000Z" + }, + "end": { + "$date": "2021-05-14T03:15:43.000Z" + }, + "events": [ + { + "uuid": "18d10164-dde1-4e85-850b-9b4dba908661", + "start": { + "$date": "2021-05-14T03:11:05.000Z" + }, + "end": { + "$date": "2021-05-14T03:15:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e4232c9b-9b5c-45fa-a793-8b72dbf49be6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T03:16:12.000Z" + }, + "end": { + "$date": "2021-05-14T03:25:55.000Z" + }, + "events": [ + { + "uuid": "a4320827-101e-4dc6-b2ef-d4dde0eba44d", + "start": { + "$date": "2021-05-14T03:16:12.000Z" + }, + "end": { + "$date": "2021-05-14T03:25:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae6be065-d5f1-4dbb-abfb-f6fa2e594314", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-14T03:47:07.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:22.000Z" + }, + "events": [ + { + "uuid": "c31026bd-1659-4f98-b6b2-9e9c590cf393", + "start": { + "$date": "2021-05-14T03:47:07.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49174f50-b0fe-4b47-a2a7-871c73fed8f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-14T03:25:02.000Z" + }, + "end": { + "$date": "2021-05-14T03:28:08.000Z" + }, + "events": [ + { + "uuid": "13dc7832-c2d3-4ecc-b00d-807dc2267b8d", + "start": { + "$date": "2021-05-14T03:25:02.000Z" + }, + "end": { + "$date": "2021-05-14T03:28:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9a0e9918-ca04-415c-9fd8-b27e5c92fa0c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T03:28:47.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:24.000Z" + }, + "events": [ + { + "uuid": "fb863169-59ab-4142-b497-9d0ec38647d7", + "start": { + "$date": "2021-05-14T03:28:47.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "9218f651-a6c6-49e3-a500-b2581250002f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-14T03:34:50.000Z" + }, + "end": { + "$date": "2021-05-14T04:37:52.000Z" + }, + "events": [ + { + "uuid": "cc8995e6-25e1-41a9-a54d-9271eaef4cb6", + "start": { + "$date": "2021-05-14T03:34:50.000Z" + }, + "end": { + "$date": "2021-05-14T04:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e0e30e0-262a-4fdf-a79a-baa5cd7652a5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-14T03:46:19.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:31.000Z" + }, + "events": [ + { + "uuid": "1f6745dd-4a7c-474f-97de-d11e65213618", + "start": { + "$date": "2021-05-14T03:46:19.000Z" + }, + "end": { + "$date": "2021-05-14T04:17:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "cdf2d10c-ff37-45ac-82c9-cb67cc2f6e84", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-14T03:40:57.000Z" + }, + "end": { + "$date": "2021-05-14T04:36:14.000Z" + }, + "events": [ + { + "uuid": "a5ec4ffc-657a-48a4-a9d1-9dfed0112d0d", + "start": { + "$date": "2021-05-14T03:40:57.000Z" + }, + "end": { + "$date": "2021-05-14T04:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "770da195-cd4b-44f9-a93c-24b19712cc96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T04:00:34.000Z" + }, + "end": { + "$date": "2021-05-14T04:21:11.000Z" + }, + "events": [ + { + "uuid": "73712476-60f9-4ce4-95d4-acb8d9ee8418", + "start": { + "$date": "2021-05-14T04:00:34.000Z" + }, + "end": { + "$date": "2021-05-14T04:21:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "047bf8a0-d71d-47f1-b7f0-d8b3d9ba593f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-14T04:18:50.000Z" + }, + "end": { + "$date": "2021-05-14T04:36:59.000Z" + }, + "events": [ + { + "uuid": "f8e16919-87db-422b-8375-88aa999129da", + "start": { + "$date": "2021-05-14T04:18:50.000Z" + }, + "end": { + "$date": "2021-05-14T04:36:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "812311ea-0aac-47e5-95bb-d013348b1703", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-14T04:18:47.000Z" + }, + "end": { + "$date": "2021-05-14T04:37:00.000Z" + }, + "events": [ + { + "uuid": "73852248-754f-4dad-a10e-6490388aae12", + "start": { + "$date": "2021-05-14T04:18:47.000Z" + }, + "end": { + "$date": "2021-05-14T04:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "720e379f-3312-4a78-83b0-5647f3f01dcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T04:19:15.000Z" + }, + "end": { + "$date": "2021-05-14T04:36:50.000Z" + }, + "events": [ + { + "uuid": "fc4318cc-2e93-47cd-883b-5348aa1ab06d", + "start": { + "$date": "2021-05-14T04:19:15.000Z" + }, + "end": { + "$date": "2021-05-14T04:36:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b047abca-93eb-486e-b43a-f56cb9477dee", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-14T04:47:11.000Z" + }, + "end": { + "$date": "2021-05-14T05:27:42.000Z" + }, + "events": [ + { + "uuid": "b32e3eea-dee8-4b81-bcae-5f92612069b0", + "start": { + "$date": "2021-05-14T04:47:11.000Z" + }, + "end": { + "$date": "2021-05-14T05:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "53886989-ff42-4c8a-992d-e6df35398501", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T04:46:27.000Z" + }, + "end": { + "$date": "2021-05-14T05:32:49.000Z" + }, + "events": [ + { + "uuid": "8b8339a6-fe1a-44ef-969a-33bced299d91", + "start": { + "$date": "2021-05-14T04:46:27.000Z" + }, + "end": { + "$date": "2021-05-14T05:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "abb2c7f4-5f2c-4159-9495-d1cdf34af24e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-14T04:47:34.000Z" + }, + "end": { + "$date": "2021-05-14T05:06:13.000Z" + }, + "events": [ + { + "uuid": "cbe8acc3-99c0-4cc0-90e8-32cd0b631ccf", + "start": { + "$date": "2021-05-14T04:47:34.000Z" + }, + "end": { + "$date": "2021-05-14T05:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "b0952254-a70e-4838-9017-88e854c6cbc5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-14T05:08:01.000Z" + }, + "end": { + "$date": "2021-05-14T09:45:23.000Z" + }, + "events": [ + { + "uuid": "7b80ca87-3343-4228-ae77-5c1be0d4778e", + "start": { + "$date": "2021-05-14T05:08:01.000Z" + }, + "end": { + "$date": "2021-05-14T09:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5da85cde-6aa5-451d-9be7-8323caa58b6e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-14T05:33:47.000Z" + }, + "end": { + "$date": "2021-05-14T05:55:43.000Z" + }, + "events": [ + { + "uuid": "dceda54a-8cfc-44f8-aec9-e3e66c6f7b1f", + "start": { + "$date": "2021-05-14T05:33:47.000Z" + }, + "end": { + "$date": "2021-05-14T05:55:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "2b6f2efd-29b8-41e8-9b15-90dd659c5803", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T05:34:49.000Z" + }, + "end": { + "$date": "2021-05-14T05:44:19.000Z" + }, + "events": [ + { + "uuid": "a74dc69b-7839-4462-9358-412060f6d7f4", + "start": { + "$date": "2021-05-14T05:34:49.000Z" + }, + "end": { + "$date": "2021-05-14T05:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "29eb58d5-2ac4-4bbe-8917-b7dc4542772f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-14T14:21:01.000Z" + }, + "end": { + "$date": "2021-05-14T15:44:47.000Z" + }, + "events": [ + { + "uuid": "978e0f6b-c86c-4c28-98fc-2f20619406bb", + "start": { + "$date": "2021-05-14T14:21:01.000Z" + }, + "end": { + "$date": "2021-05-14T15:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c40d0312-f47f-4e8b-b38e-8d043fbbb321", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T15:00:49.000Z" + }, + "end": { + "$date": "2021-05-14T21:03:06.000Z" + }, + "events": [ + { + "uuid": "9b47ee31-63ff-4d47-90f1-9bfe79a18591", + "start": { + "$date": "2021-05-14T15:00:49.000Z" + }, + "end": { + "$date": "2021-05-14T15:13:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "94fac3c5-2da1-46bd-b47b-eb173bf76bf5", + "start": { + "$date": "2021-05-14T15:13:49.000Z" + }, + "end": { + "$date": "2021-05-14T15:25:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64378a1c-c9c6-437a-ba3d-3a68eaa632ff", + "start": { + "$date": "2021-05-14T15:25:49.000Z" + }, + "end": { + "$date": "2021-05-14T17:55:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8a80266-b99f-4369-afd4-d63c80817349", + "start": { + "$date": "2021-05-14T17:55:49.000Z" + }, + "end": { + "$date": "2021-05-14T18:07:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca52b366-f61a-4397-9f24-730ccc31a460", + "start": { + "$date": "2021-05-14T18:07:49.000Z" + }, + "end": { + "$date": "2021-05-14T18:09:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a68d803-d631-462b-901b-9dc9d6aba20f", + "start": { + "$date": "2021-05-14T18:09:49.000Z" + }, + "end": { + "$date": "2021-05-14T19:15:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b89bb804-866c-4961-9dfe-fc094614f664", + "start": { + "$date": "2021-05-14T19:15:49.000Z" + }, + "end": { + "$date": "2021-05-14T19:25:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f050eafd-f177-4c4b-ae56-e9b90b5b035c", + "start": { + "$date": "2021-05-14T19:25:49.000Z" + }, + "end": { + "$date": "2021-05-14T19:28:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45eaefd7-f6a1-4207-b728-1548fa8262d8", + "start": { + "$date": "2021-05-14T19:28:49.000Z" + }, + "end": { + "$date": "2021-05-14T21:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3fa4846b-a19a-4d07-8b7b-c5c88d8b8c3d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-14T16:10:36.000Z" + }, + "end": { + "$date": "2021-05-14T16:57:01.000Z" + }, + "events": [ + { + "uuid": "7b387e47-28e9-4ede-b7ef-b54a4defaf15", + "start": { + "$date": "2021-05-14T16:10:36.000Z" + }, + "end": { + "$date": "2021-05-14T16:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "65f2f068-cc1f-45de-a6d4-e9b47ea859bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-14T18:04:54.000Z" + }, + "end": { + "$date": "2021-05-14T23:54:53.000Z" + }, + "events": [ + { + "uuid": "1c601bf9-b2c5-47ad-8f53-8ddb4c4ca8bb", + "start": { + "$date": "2021-05-14T18:04:54.000Z" + }, + "end": { + "$date": "2021-05-14T18:11:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62f0757f-61b8-4c52-9090-8e48fddeb412", + "start": { + "$date": "2021-05-14T18:11:54.000Z" + }, + "end": { + "$date": "2021-05-14T18:12:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2713744-7a97-4214-aaa5-3ea57ea93c1b", + "start": { + "$date": "2021-05-14T18:12:54.000Z" + }, + "end": { + "$date": "2021-05-14T18:14:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2b0982cf-a0b2-4bbe-809b-84ce0a1cb2f0", + "start": { + "$date": "2021-05-14T18:14:54.000Z" + }, + "end": { + "$date": "2021-05-14T18:18:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e10e837-1542-46cf-85f4-2f54da5b47d4", + "start": { + "$date": "2021-05-14T18:18:54.000Z" + }, + "end": { + "$date": "2021-05-14T18:26:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4f98ddfc-f189-4afb-b55a-b793616d5ed4", + "start": { + "$date": "2021-05-14T18:26:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:00:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a802c94-2f01-476a-aad0-178a1cb9925d", + "start": { + "$date": "2021-05-14T19:00:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:02:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78fe56ff-06e9-4b64-8f6b-8cf5554022dd", + "start": { + "$date": "2021-05-14T19:02:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:04:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d964059b-e210-47d8-aa81-11ec174bae09", + "start": { + "$date": "2021-05-14T19:04:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:06:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d158b9e-bf04-4e55-bf21-44c280227d43", + "start": { + "$date": "2021-05-14T19:06:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:07:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f875f40c-15fe-41a5-95af-a72e0367274b", + "start": { + "$date": "2021-05-14T19:07:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:10:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0c0ceec5-59d1-4537-a716-ddf88c68b58a", + "start": { + "$date": "2021-05-14T19:10:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:14:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b1f83a71-9fb8-48d1-ba73-5f10f68c4055", + "start": { + "$date": "2021-05-14T19:14:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:53:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19491551-4864-416f-9229-05b24567a971", + "start": { + "$date": "2021-05-14T19:53:54.000Z" + }, + "end": { + "$date": "2021-05-14T19:57:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec7e317b-b17b-49f2-9406-392f56a6a80c", + "start": { + "$date": "2021-05-14T19:57:54.000Z" + }, + "end": { + "$date": "2021-05-14T20:06:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1014f775-5ba9-458c-9888-65be8f94b2a2", + "start": { + "$date": "2021-05-14T20:06:54.000Z" + }, + "end": { + "$date": "2021-05-14T20:42:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b59ec879-9734-48f5-a414-6102824e9ed4", + "start": { + "$date": "2021-05-14T20:42:54.000Z" + }, + "end": { + "$date": "2021-05-14T20:44:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7153cc8c-88ff-4557-957a-b689aad5f04c", + "start": { + "$date": "2021-05-14T20:44:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:14:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "46c6831e-5a24-4a5d-a3b4-e26441e969fd", + "start": { + "$date": "2021-05-14T21:14:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:17:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7bb7c9ab-64f2-4dc5-9870-ace21e5c5953", + "start": { + "$date": "2021-05-14T21:17:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:18:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7bf5872-741e-4d4e-93a1-f6eadfadb96b", + "start": { + "$date": "2021-05-14T21:18:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:20:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9172139-39c5-480d-b64a-9c015930c41c", + "start": { + "$date": "2021-05-14T21:20:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:33:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f0337cb-3ff7-4ed0-abc1-56b3efb5fc3d", + "start": { + "$date": "2021-05-14T21:33:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:36:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2b93bcf5-47a3-4c4d-8b43-03f988c21102", + "start": { + "$date": "2021-05-14T21:36:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:54:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "794d6155-113a-48a3-929a-b886ea23d994", + "start": { + "$date": "2021-05-14T21:54:54.000Z" + }, + "end": { + "$date": "2021-05-14T21:56:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4c0e979-3721-4b32-9847-99c1c5e35d42", + "start": { + "$date": "2021-05-14T21:56:54.000Z" + }, + "end": { + "$date": "2021-05-14T22:50:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03594f1d-f5fe-4b03-bdbb-2bcd0b09ecbd", + "start": { + "$date": "2021-05-14T22:50:54.000Z" + }, + "end": { + "$date": "2021-05-14T22:52:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26859040-a369-4d9d-a648-ab40e7f5c7b0", + "start": { + "$date": "2021-05-14T22:52:54.000Z" + }, + "end": { + "$date": "2021-05-14T23:06:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48e8b261-3e79-428b-bf6d-e322eaad9162", + "start": { + "$date": "2021-05-14T23:06:54.000Z" + }, + "end": { + "$date": "2021-05-14T23:08:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a250d4cb-8993-4b17-8fc8-7923de09f174", + "start": { + "$date": "2021-05-14T23:08:54.000Z" + }, + "end": { + "$date": "2021-05-14T23:52:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7d6f23e1-eef1-49ee-b0ff-b6303e01fff0", + "start": { + "$date": "2021-05-14T23:52:54.000Z" + }, + "end": { + "$date": "2021-05-14T23:54:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bc3268b6-0520-4cc2-9eb8-430e798b779a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-14T19:03:27.000Z" + }, + "end": { + "$date": "2021-05-14T20:45:09.000Z" + }, + "events": [ + { + "uuid": "b42d8e28-dc8c-42e2-9ec0-e81ec0423e97", + "start": { + "$date": "2021-05-14T19:03:27.000Z" + }, + "end": { + "$date": "2021-05-14T20:45:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d115fb2d-ed61-4418-acb2-89a9d030b74d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T21:06:01.000Z" + }, + "end": { + "$date": "2021-05-14T21:21:42.000Z" + }, + "events": [ + { + "uuid": "f590ea81-318f-430f-9051-1789e3d76bba", + "start": { + "$date": "2021-05-14T21:06:01.000Z" + }, + "end": { + "$date": "2021-05-14T21:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6df8a849-07ff-4ec3-96c8-faecfe62e984", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T21:25:07.000Z" + }, + "end": { + "$date": "2021-05-14T21:45:43.000Z" + }, + "events": [ + { + "uuid": "ad9f8b06-b28e-477d-a912-5c8eaa6f8f19", + "start": { + "$date": "2021-05-14T21:25:07.000Z" + }, + "end": { + "$date": "2021-05-14T21:45:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d8b376e3-bd33-452e-a14b-0e6ad60bdce5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T21:45:52.000Z" + }, + "end": { + "$date": "2021-05-14T23:06:52.000Z" + }, + "events": [ + { + "uuid": "ad1ec503-4a64-4116-99c9-c63d665380c5", + "start": { + "$date": "2021-05-14T21:45:52.000Z" + }, + "end": { + "$date": "2021-05-14T23:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "2f121627-7c46-4ae1-9896-9594ee21cf88", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-14T22:49:32.000Z" + }, + "end": { + "$date": "2021-05-15T01:15:52.000Z" + }, + "events": [ + { + "uuid": "0462de18-5c69-4d48-8a6d-cf82115ffa66", + "start": { + "$date": "2021-05-14T22:49:32.000Z" + }, + "end": { + "$date": "2021-05-15T01:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "46ec3058-aa0b-4250-85c6-461bf5ca41c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-14T23:08:06.000Z" + }, + "end": { + "$date": "2021-05-14T23:32:14.000Z" + }, + "events": [ + { + "uuid": "eebde38d-5cdf-48e0-8d05-18b55e738ab0", + "start": { + "$date": "2021-05-14T23:08:06.000Z" + }, + "end": { + "$date": "2021-05-14T23:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "42a20528-6bda-4beb-9cf6-787252856409", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T23:15:26.000Z" + }, + "end": { + "$date": "2021-05-14T23:16:46.000Z" + }, + "events": [ + { + "uuid": "f843214d-ed4f-4dbf-b316-6413f4b7a6da", + "start": { + "$date": "2021-05-14T23:15:26.000Z" + }, + "end": { + "$date": "2021-05-14T23:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d7bea410-d7cd-41a6-82de-3ed54a9d66d4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-14T23:18:03.000Z" + }, + "end": { + "$date": "2021-05-15T00:43:17.000Z" + }, + "events": [ + { + "uuid": "02836fe4-3277-4eb4-a7c0-99b6c72293a0", + "start": { + "$date": "2021-05-14T23:18:03.000Z" + }, + "end": { + "$date": "2021-05-15T00:09:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6525573f-d1ef-4404-9daf-355009a0e35e", + "start": { + "$date": "2021-05-15T00:09:03.000Z" + }, + "end": { + "$date": "2021-05-15T00:11:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b5d80365-a45d-4b68-a4f2-8e3edd801db9", + "start": { + "$date": "2021-05-15T00:11:03.000Z" + }, + "end": { + "$date": "2021-05-15T00:13:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0dc7f33f-a729-403e-8c9b-c93a291f20d9", + "start": { + "$date": "2021-05-15T00:13:03.000Z" + }, + "end": { + "$date": "2021-05-15T00:23:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "428eee9e-b5bc-48c3-9b6e-98e9c778fc61", + "start": { + "$date": "2021-05-15T00:23:03.000Z" + }, + "end": { + "$date": "2021-05-15T00:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "86c49199-ef98-41d3-845a-8268c51ea6be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T23:19:07.000Z" + }, + "end": { + "$date": "2021-05-14T23:52:02.000Z" + }, + "events": [ + { + "uuid": "001697e2-4d3a-43d1-9b12-d3570f68a549", + "start": { + "$date": "2021-05-14T23:19:07.000Z" + }, + "end": { + "$date": "2021-05-14T23:52:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "fc16cb2c-c337-4af7-8ccb-fd9e4aa2e7c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-14T23:54:28.000Z" + }, + "end": { + "$date": "2021-05-15T00:04:23.000Z" + }, + "events": [ + { + "uuid": "a9c22476-8555-40f4-b0a9-beee80e9b523", + "start": { + "$date": "2021-05-14T23:54:28.000Z" + }, + "end": { + "$date": "2021-05-15T00:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c84e97b-e5e9-46ab-861d-262e7addcb0e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-15T01:06:41.000Z" + }, + "end": { + "$date": "2021-05-15T01:35:47.000Z" + }, + "events": [ + { + "uuid": "c5f39bad-f43b-427c-868a-bc03ac7ff0c4", + "start": { + "$date": "2021-05-15T01:06:41.000Z" + }, + "end": { + "$date": "2021-05-15T01:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "74f3eb2b-ee9e-4ff5-9f96-61ca74508a72", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-15T01:15:09.000Z" + }, + "end": { + "$date": "2021-05-15T07:21:29.000Z" + }, + "events": [ + { + "uuid": "1a020202-bbf9-4988-ad8f-69eb669a750f", + "start": { + "$date": "2021-05-15T01:15:09.000Z" + }, + "end": { + "$date": "2021-05-15T07:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6892cfb7-4003-44ea-9c99-e4304db34d4f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-15T01:39:12.000Z" + }, + "end": { + "$date": "2021-05-15T02:27:35.000Z" + }, + "events": [ + { + "uuid": "4d627b1c-174f-4a7a-8ed4-780dd10d0ee8", + "start": { + "$date": "2021-05-15T01:39:12.000Z" + }, + "end": { + "$date": "2021-05-15T02:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "73e6f2c9-f24a-4f53-9f51-ffdd80ddbf3e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T01:51:53.000Z" + }, + "end": { + "$date": "2021-05-15T04:09:17.000Z" + }, + "events": [ + { + "uuid": "54c06624-10b0-42c0-ac9e-a82bb235f75c", + "start": { + "$date": "2021-05-15T01:51:53.000Z" + }, + "end": { + "$date": "2021-05-15T04:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "57c722fa-0f07-4c4c-86e9-b37b97f78bc9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-15T02:40:41.000Z" + }, + "end": { + "$date": "2021-05-15T03:11:19.000Z" + }, + "events": [ + { + "uuid": "7f07fc38-b20e-444a-aebc-5f08b8ad3d6c", + "start": { + "$date": "2021-05-15T02:40:41.000Z" + }, + "end": { + "$date": "2021-05-15T03:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8000ae04-2181-480a-ac57-13ab2cf5706d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-15T03:11:03.000Z" + }, + "end": { + "$date": "2021-05-15T05:17:41.000Z" + }, + "events": [ + { + "uuid": "63694f68-00af-4ba6-bc0c-155a5ef9b9a4", + "start": { + "$date": "2021-05-15T03:11:03.000Z" + }, + "end": { + "$date": "2021-05-15T05:45:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "916358a9-c6b1-467e-bfbf-22d6ef331f33", + "start": { + "$date": "2021-05-15T05:45:03.000Z" + }, + "end": { + "$date": "2021-05-15T05:17:41.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6ff475e7-5837-40d3-b8fa-13ce06e1c921", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-15T02:46:38.000Z" + }, + "end": { + "$date": "2021-05-15T02:47:43.000Z" + }, + "events": [ + { + "uuid": "e946d64f-5e6d-43a0-9260-c4cc49b3ff93", + "start": { + "$date": "2021-05-15T02:46:38.000Z" + }, + "end": { + "$date": "2021-05-15T02:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e194551e-304b-4372-ae05-686e5889a5f8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-15T02:47:58.000Z" + }, + "end": { + "$date": "2021-05-15T03:04:34.000Z" + }, + "events": [ + { + "uuid": "0539146a-07f2-4579-b111-262c88a16451", + "start": { + "$date": "2021-05-15T02:47:58.000Z" + }, + "end": { + "$date": "2021-05-15T03:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "27c29f52-23f8-406c-bef7-8ed9b41c6859", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-15T03:09:15.000Z" + }, + "end": { + "$date": "2021-05-15T05:21:31.000Z" + }, + "events": [ + { + "uuid": "6df810fd-59a3-405e-8eb3-4bac7baa6363", + "start": { + "$date": "2021-05-15T03:09:15.000Z" + }, + "end": { + "$date": "2021-05-15T05:21:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a71d2f1-e7b2-47b6-aa1f-6e68d219ae45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-15T21:30:43.000Z" + }, + "end": { + "$date": "2021-05-15T21:53:50.000Z" + }, + "events": [ + { + "uuid": "9ac6949f-d85e-49a5-a08b-cdf6538e5f2e", + "start": { + "$date": "2021-05-15T21:30:43.000Z" + }, + "end": { + "$date": "2021-05-15T23:59:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3e9411f-caee-45f2-844a-b77d6e396cf0", + "start": { + "$date": "2021-05-15T23:59:43.000Z" + }, + "end": { + "$date": "2021-05-16T03:29:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df2baca2-f50a-4145-a471-f3882f71d5c8", + "start": { + "$date": "2021-05-16T03:29:43.000Z" + }, + "end": { + "$date": "2021-05-16T03:39:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d50f1ad7-fde5-44fe-a96f-f36536564bc0", + "start": { + "$date": "2021-05-16T03:39:43.000Z" + }, + "end": { + "$date": "2021-05-16T09:34:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "51505530-51d4-43c2-9b30-d539b8ce84ce", + "start": { + "$date": "2021-05-16T09:34:43.000Z" + }, + "end": { + "$date": "2021-05-16T09:38:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "facf7535-ed3d-4f6c-9fa4-df0634c6fe84", + "start": { + "$date": "2021-05-16T09:38:43.000Z" + }, + "end": { + "$date": "2021-05-16T09:54:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d185cc4b-4d4f-4b93-a3e8-e23212adb869", + "start": { + "$date": "2021-05-16T09:54:43.000Z" + }, + "end": { + "$date": "2021-05-16T11:19:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f183c3c9-9b7b-405e-99df-dd4ee3f96b4f", + "start": { + "$date": "2021-05-16T11:19:43.000Z" + }, + "end": { + "$date": "2021-05-16T11:25:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43c5b617-3fbc-4485-878d-de1cdd0176d9", + "start": { + "$date": "2021-05-16T11:25:43.000Z" + }, + "end": { + "$date": "2021-05-16T15:11:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e8ea168-5719-4de9-bbd5-7c206f0f703d", + "start": { + "$date": "2021-05-16T15:11:43.000Z" + }, + "end": { + "$date": "2021-05-16T15:31:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a612b242-458b-4191-b813-136b5a92b475", + "start": { + "$date": "2021-05-16T15:31:43.000Z" + }, + "end": { + "$date": "2021-05-15T21:53:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8191037f-13fd-4f07-bbc8-f93803561ba4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T03:35:14.000Z" + }, + "end": { + "$date": "2021-05-15T03:37:38.000Z" + }, + "events": [ + { + "uuid": "8488c0d5-5bd6-417f-b203-753f787802ac", + "start": { + "$date": "2021-05-15T03:35:14.000Z" + }, + "end": { + "$date": "2021-05-15T03:37:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "72e32328-e10b-415f-a488-39d16ef68bfe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T03:44:24.000Z" + }, + "end": { + "$date": "2021-05-15T03:49:14.000Z" + }, + "events": [ + { + "uuid": "0b0d3728-db0d-4679-b7c5-08f4a35e5f60", + "start": { + "$date": "2021-05-15T03:44:24.000Z" + }, + "end": { + "$date": "2021-05-15T03:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba3b5a58-beca-4e4c-b95a-01b6f83b3b62", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T03:51:50.000Z" + }, + "end": { + "$date": "2021-05-15T04:44:40.000Z" + }, + "events": [ + { + "uuid": "5853eb8a-0932-4b8d-bc3a-db1e97f91ac4", + "start": { + "$date": "2021-05-15T03:51:50.000Z" + }, + "end": { + "$date": "2021-05-15T04:44:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "ff2d6634-e5f5-41ac-8698-367664ec551f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-15T04:06:16.000Z" + }, + "end": { + "$date": "2021-05-15T09:01:53.000Z" + }, + "events": [ + { + "uuid": "9c4b53c1-e551-4808-8456-19f692378625", + "start": { + "$date": "2021-05-15T04:06:16.000Z" + }, + "end": { + "$date": "2021-05-15T04:08:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78bfb06d-229f-4fbf-95ca-af79c67644e1", + "start": { + "$date": "2021-05-15T04:08:16.000Z" + }, + "end": { + "$date": "2021-05-15T04:09:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "501e8351-eb20-4332-aae5-4d41adff3a21", + "start": { + "$date": "2021-05-15T04:09:16.000Z" + }, + "end": { + "$date": "2021-05-15T09:01:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "faaaf133-f90e-4de4-8123-8422817cb246", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T04:24:49.000Z" + }, + "end": { + "$date": "2021-05-15T04:33:50.000Z" + }, + "events": [ + { + "uuid": "ad3bab39-5479-4e6d-9f9a-aa0079b5d1c5", + "start": { + "$date": "2021-05-15T04:24:49.000Z" + }, + "end": { + "$date": "2021-05-15T04:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7213d631-f8da-46e1-9635-5c03bac35650", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T04:45:01.000Z" + }, + "end": { + "$date": "2021-05-15T05:51:38.000Z" + }, + "events": [ + { + "uuid": "6c217f72-c54c-4a3a-a438-9b41126f3f0e", + "start": { + "$date": "2021-05-15T04:45:01.000Z" + }, + "end": { + "$date": "2021-05-15T05:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5c45e01c-db00-45ff-9d64-16a3209ce4da", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T04:45:17.000Z" + }, + "end": { + "$date": "2021-05-15T05:51:37.000Z" + }, + "events": [ + { + "uuid": "f1f930c5-71b9-4e89-8430-0cf2d8434614", + "start": { + "$date": "2021-05-15T04:45:17.000Z" + }, + "end": { + "$date": "2021-05-15T05:51:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f1945ee5-a163-4a26-bfbb-ac079bc7b61a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-15T05:35:33.000Z" + }, + "end": { + "$date": "2021-05-15T05:36:53.000Z" + }, + "events": [ + { + "uuid": "941b03d3-92fe-43da-886f-146a49aaaa3b", + "start": { + "$date": "2021-05-15T05:35:33.000Z" + }, + "end": { + "$date": "2021-05-15T05:36:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a3d86a3d-9980-4d11-b13d-776d2834efe8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T05:54:04.000Z" + }, + "end": { + "$date": "2021-05-15T06:00:29.000Z" + }, + "events": [ + { + "uuid": "da3fb734-561c-4e62-9d0c-8378e76b47c5", + "start": { + "$date": "2021-05-15T05:54:04.000Z" + }, + "end": { + "$date": "2021-05-15T06:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a220aca5-4f17-4429-9c87-0e40821e5b12", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T06:07:00.000Z" + }, + "end": { + "$date": "2021-05-15T06:07:05.000Z" + }, + "events": [ + { + "uuid": "add90177-9e45-4de2-bf7b-a06f60bcd0ee", + "start": { + "$date": "2021-05-15T06:07:00.000Z" + }, + "end": { + "$date": "2021-05-15T06:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "240ae3a7-4c01-4808-9880-db9e1680518e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T06:02:29.000Z" + }, + "end": { + "$date": "2021-05-15T06:05:33.000Z" + }, + "events": [ + { + "uuid": "6eb86e88-c4eb-4245-a5ec-aa5b3ebee57d", + "start": { + "$date": "2021-05-15T06:02:29.000Z" + }, + "end": { + "$date": "2021-05-15T06:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8058e61a-f967-40c1-ad5c-19e3f3a8f127", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T06:07:49.000Z" + }, + "end": { + "$date": "2021-05-15T06:09:43.000Z" + }, + "events": [ + { + "uuid": "78660e94-89b8-447b-96af-2c986365b871", + "start": { + "$date": "2021-05-15T06:07:49.000Z" + }, + "end": { + "$date": "2021-05-15T06:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53259882-8731-45de-8cd0-bbafb454ca63", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-15T06:23:23.000Z" + }, + "end": { + "$date": "2021-05-15T06:56:09.000Z" + }, + "events": [ + { + "uuid": "c77e98ae-7b61-41d9-a0d8-2c1b425d3ef1", + "start": { + "$date": "2021-05-15T06:23:23.000Z" + }, + "end": { + "$date": "2021-05-15T06:56:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "918c55e4-5082-417f-a8b9-676063cca5c8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T06:39:43.000Z" + }, + "end": { + "$date": "2021-05-15T06:42:34.000Z" + }, + "events": [ + { + "uuid": "e471be0f-6243-4fde-9839-b40908100933", + "start": { + "$date": "2021-05-15T06:39:43.000Z" + }, + "end": { + "$date": "2021-05-15T06:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "affe8253-b3ab-42b6-a3b1-953f37ea6300", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-15T07:02:07.000Z" + }, + "end": { + "$date": "2021-05-15T07:41:18.000Z" + }, + "events": [ + { + "uuid": "d7fd6daf-1caf-45a8-9124-fc97c9f19583", + "start": { + "$date": "2021-05-15T07:02:07.000Z" + }, + "end": { + "$date": "2021-05-15T07:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0330ca17-5fee-4d09-b4c2-5623db79874f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-15T07:01:09.000Z" + }, + "end": { + "$date": "2021-05-15T07:41:27.000Z" + }, + "events": [ + { + "uuid": "083cf6f2-4d2b-44a0-b14f-c22bb52cc004", + "start": { + "$date": "2021-05-15T07:01:09.000Z" + }, + "end": { + "$date": "2021-05-15T07:41:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7380a31-a4e0-4f00-a348-af29944104f7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-15T18:48:01.000Z" + }, + "end": { + "$date": "2021-05-15T19:13:39.000Z" + }, + "events": [ + { + "uuid": "c167eb3a-5fde-49f9-aaad-e7317fb3c58d", + "start": { + "$date": "2021-05-15T18:48:01.000Z" + }, + "end": { + "$date": "2021-05-15T19:17:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6170f67-4a00-4faa-9e80-8eb3e6de9760", + "start": { + "$date": "2021-05-15T19:17:01.000Z" + }, + "end": { + "$date": "2021-05-15T23:37:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd4963b2-faef-4ca6-a897-706639bede49", + "start": { + "$date": "2021-05-15T23:37:01.000Z" + }, + "end": { + "$date": "2021-05-15T23:48:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "746a5fdd-3f0f-405c-ae0f-1d6e6e397ba6", + "start": { + "$date": "2021-05-15T23:48:01.000Z" + }, + "end": { + "$date": "2021-05-16T03:32:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "755e14fc-2247-4d5c-8fbd-f00e9115288f", + "start": { + "$date": "2021-05-16T03:32:01.000Z" + }, + "end": { + "$date": "2021-05-16T03:34:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd4ef32e-c00b-41c7-acfa-6360d6503c89", + "start": { + "$date": "2021-05-16T03:34:01.000Z" + }, + "end": { + "$date": "2021-05-16T03:39:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47dbb343-fb55-4f0b-a3ab-b1b5204373bf", + "start": { + "$date": "2021-05-16T03:39:01.000Z" + }, + "end": { + "$date": "2021-05-16T03:41:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69bee504-f971-4951-8b53-5787d467c8b2", + "start": { + "$date": "2021-05-16T03:41:01.000Z" + }, + "end": { + "$date": "2021-05-16T03:46:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "935ad458-7c5b-41dd-a4dc-3fe1e4d02bd0", + "start": { + "$date": "2021-05-16T03:46:01.000Z" + }, + "end": { + "$date": "2021-05-16T04:16:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e148342-ad10-4ffc-9c8f-b416ee2a1cf7", + "start": { + "$date": "2021-05-16T04:16:01.000Z" + }, + "end": { + "$date": "2021-05-16T04:20:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "554ba91c-55e4-4669-9f14-626a66a4fbb1", + "start": { + "$date": "2021-05-16T04:20:01.000Z" + }, + "end": { + "$date": "2021-05-16T04:52:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "32dd36b2-ca3b-4e27-a40d-143e0d874eed", + "start": { + "$date": "2021-05-16T04:52:01.000Z" + }, + "end": { + "$date": "2021-05-16T04:55:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "063c7f69-0068-492f-aa93-190c3b10d457", + "start": { + "$date": "2021-05-16T04:55:01.000Z" + }, + "end": { + "$date": "2021-05-16T05:43:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c452ea18-cdb6-4ec1-b25c-c6d3c1586093", + "start": { + "$date": "2021-05-16T05:43:01.000Z" + }, + "end": { + "$date": "2021-05-16T05:44:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4f54b259-825a-48c6-952c-dedb042ea4c6", + "start": { + "$date": "2021-05-16T05:44:01.000Z" + }, + "end": { + "$date": "2021-05-15T19:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63f218ef-b7fe-4fdc-ab5d-8e2a895b23c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-15T08:34:35.000Z" + }, + "end": { + "$date": "2021-05-15T09:06:28.000Z" + }, + "events": [ + { + "uuid": "646c9c04-d911-4786-852b-cffe684907b3", + "start": { + "$date": "2021-05-15T08:34:35.000Z" + }, + "end": { + "$date": "2021-05-15T09:06:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "37be6a2d-efab-4f5a-9778-f510e7e2105d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T13:16:34.000Z" + }, + "end": { + "$date": "2021-05-15T13:41:44.000Z" + }, + "events": [ + { + "uuid": "9e027af3-03aa-4e29-817c-94b540037794", + "start": { + "$date": "2021-05-15T13:16:34.000Z" + }, + "end": { + "$date": "2021-05-15T13:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f81309e9-5566-4355-9311-26f68afead99", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T13:45:55.000Z" + }, + "end": { + "$date": "2021-05-15T15:50:34.000Z" + }, + "events": [ + { + "uuid": "d6da9036-0d2c-4801-9dc8-195312b65eb8", + "start": { + "$date": "2021-05-15T13:45:55.000Z" + }, + "end": { + "$date": "2021-05-15T15:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "72746bca-656c-4074-84a6-19f7732a39fd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-15T14:00:50.000Z" + }, + "end": { + "$date": "2021-05-15T14:02:05.000Z" + }, + "events": [ + { + "uuid": "897e91b0-5621-466c-bdcd-62ba10c5005a", + "start": { + "$date": "2021-05-15T14:00:50.000Z" + }, + "end": { + "$date": "2021-05-15T14:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bddb3c48-11a0-47b0-b251-cfea68bdb93d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-15T14:02:10.000Z" + }, + "end": { + "$date": "2021-05-15T17:10:24.000Z" + }, + "events": [ + { + "uuid": "3b62e3e1-c145-48c5-ab28-0a234a497cf1", + "start": { + "$date": "2021-05-15T14:02:10.000Z" + }, + "end": { + "$date": "2021-05-15T17:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0c513dc8-b8c4-4055-b194-8978b02eb18c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T16:01:30.000Z" + }, + "end": { + "$date": "2021-05-15T16:04:40.000Z" + }, + "events": [ + { + "uuid": "d41c048e-ab96-4b66-8315-47d07e2af6de", + "start": { + "$date": "2021-05-15T16:01:30.000Z" + }, + "end": { + "$date": "2021-05-15T16:04:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f2e426b-1483-451d-85db-11ac2ad6b308", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T16:04:50.000Z" + }, + "end": { + "$date": "2021-05-15T16:49:31.000Z" + }, + "events": [ + { + "uuid": "e2ed167e-ba68-4715-8526-93e5178cd668", + "start": { + "$date": "2021-05-15T16:04:50.000Z" + }, + "end": { + "$date": "2021-05-15T16:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "22c5061f-aaac-4cfd-b8e7-68a20cfe96e2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-15T16:49:37.000Z" + }, + "end": { + "$date": "2021-05-15T17:07:03.000Z" + }, + "events": [ + { + "uuid": "83ae329a-cbca-4046-b59e-b101c1c500b7", + "start": { + "$date": "2021-05-15T16:49:37.000Z" + }, + "end": { + "$date": "2021-05-15T17:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5d26f7d7-3641-4ff4-99a3-76c4fb58130d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T16:49:41.000Z" + }, + "end": { + "$date": "2021-05-15T17:01:21.000Z" + }, + "events": [ + { + "uuid": "557556c7-18bf-40fb-984c-753cc059aa67", + "start": { + "$date": "2021-05-15T16:49:41.000Z" + }, + "end": { + "$date": "2021-05-15T17:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "04dae6bb-40fc-4f04-a5df-00292b124c31", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-15T17:07:28.000Z" + }, + "end": { + "$date": "2021-05-15T18:28:45.000Z" + }, + "events": [ + { + "uuid": "8b2a322f-70ba-45e7-9f67-5f95db655edd", + "start": { + "$date": "2021-05-15T17:07:28.000Z" + }, + "end": { + "$date": "2021-05-15T18:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0f284020-15b2-4ee5-b92c-0d9efe30caf8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T17:47:27.000Z" + }, + "end": { + "$date": "2021-05-15T17:56:22.000Z" + }, + "events": [ + { + "uuid": "6f54e5ce-242c-48cb-86c8-946f6ce9d212", + "start": { + "$date": "2021-05-15T17:47:27.000Z" + }, + "end": { + "$date": "2021-05-15T17:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d99e76ec-0676-44c2-a3fc-3d9639ead197", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T17:56:57.000Z" + }, + "end": { + "$date": "2021-05-15T18:01:27.000Z" + }, + "events": [ + { + "uuid": "ad544877-1efc-4846-b6dd-0b292ccbc893", + "start": { + "$date": "2021-05-15T17:56:57.000Z" + }, + "end": { + "$date": "2021-05-15T18:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "12e0c4ed-ef87-4c1e-ae9f-01ebd29250c5", + "uuid": "76a229fd-8401-4460-81ea-45b02279a680", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T18:02:03.000Z" + }, + "end": { + "$date": "2021-05-15T19:01:23.000Z" + }, + "events": [ + { + "uuid": "3a9fafe6-8b01-49fe-a266-7a851590acd5", + "start": { + "$date": "2021-05-15T18:02:03.000Z" + }, + "end": { + "$date": "2021-05-15T19:01:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "972580e7-d645-4a9d-83ee-3bdea7e9a0d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T18:29:13.000Z" + }, + "end": { + "$date": "2021-05-15T19:55:00.000Z" + }, + "events": [ + { + "uuid": "6b5357bd-1e45-4bb2-9ffe-11b5a997d24d", + "start": { + "$date": "2021-05-15T18:29:13.000Z" + }, + "end": { + "$date": "2021-05-15T19:55:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "e3790f0e-42a7-4791-874a-882e72063ecb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-16T00:11:28.000Z" + }, + "end": { + "$date": "2021-05-16T00:13:45.000Z" + }, + "events": [ + { + "uuid": "1975556c-22d4-4abc-8435-7671abe91c78", + "start": { + "$date": "2021-05-16T00:11:28.000Z" + }, + "end": { + "$date": "2021-05-16T01:13:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03059192-87db-46a1-a28a-e7661f91e3b1", + "start": { + "$date": "2021-05-16T01:13:28.000Z" + }, + "end": { + "$date": "2021-05-16T01:41:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d59b6c9e-825c-4e99-a7a8-fad6dcb0276a", + "start": { + "$date": "2021-05-16T01:41:28.000Z" + }, + "end": { + "$date": "2021-05-16T01:43:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8702c1cd-74c0-4442-a3cb-293ec535d93b", + "start": { + "$date": "2021-05-16T01:43:28.000Z" + }, + "end": { + "$date": "2021-05-16T01:49:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a111b882-6a4c-439f-9dfa-4066e12a996e", + "start": { + "$date": "2021-05-16T01:49:28.000Z" + }, + "end": { + "$date": "2021-05-16T01:51:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "813cd140-80e4-4c8a-8f48-776286d32a22", + "start": { + "$date": "2021-05-16T01:51:28.000Z" + }, + "end": { + "$date": "2021-05-16T02:34:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d45e9d9-8ae1-4096-ad62-f9b1fe8b43df", + "start": { + "$date": "2021-05-16T02:34:28.000Z" + }, + "end": { + "$date": "2021-05-16T02:36:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dd7b9948-5477-4a66-96d1-739e19aac50d", + "start": { + "$date": "2021-05-16T02:36:28.000Z" + }, + "end": { + "$date": "2021-05-16T03:02:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7ea80011-5e06-4f60-84f5-c13a232ab8dd", + "start": { + "$date": "2021-05-16T03:02:28.000Z" + }, + "end": { + "$date": "2021-05-16T03:04:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d60a1e2c-6bbc-4850-8310-d890413f1e7e", + "start": { + "$date": "2021-05-16T03:04:28.000Z" + }, + "end": { + "$date": "2021-05-16T03:05:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f0a80846-1a08-49a6-bb7c-610b8b5ab1d8", + "start": { + "$date": "2021-05-16T03:05:28.000Z" + }, + "end": { + "$date": "2021-05-16T03:07:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "54caa158-4e69-47dd-8747-47255ce4eb87", + "start": { + "$date": "2021-05-16T03:07:28.000Z" + }, + "end": { + "$date": "2021-05-16T04:26:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "71fe494d-ac91-45ed-9f64-ae50d3432008", + "start": { + "$date": "2021-05-16T04:26:28.000Z" + }, + "end": { + "$date": "2021-05-16T00:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a198202b-a5af-4e6b-b391-38bd01ce4560", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-15T21:48:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:10:33.000Z" + }, + "events": [ + { + "uuid": "35b44038-fc08-47e1-a10e-4c714851ea9c", + "start": { + "$date": "2021-05-15T21:48:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:15:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "16752f79-6c8a-4718-aa06-a7ee988516d7", + "start": { + "$date": "2021-05-15T22:15:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:16:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a993aa87-b39e-4ea5-b029-a349967a68b3", + "start": { + "$date": "2021-05-15T22:16:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:26:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9835a61-8fe8-4fa9-9a83-c20eb6baf402", + "start": { + "$date": "2021-05-15T22:26:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:37:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4bc5c440-f90d-4a99-9cc0-798bd7d64574", + "start": { + "$date": "2021-05-15T22:37:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:38:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9550d2b0-1e2b-4476-8b13-77f3cb3037a4", + "start": { + "$date": "2021-05-15T22:38:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:42:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44aa49cc-7ff4-4dc2-99e8-9b34e047e612", + "start": { + "$date": "2021-05-15T22:42:56.000Z" + }, + "end": { + "$date": "2021-05-15T22:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", + "uuid": "49101b94-4e6e-4873-90d6-a18402b462dd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T19:34:16.000Z" + }, + "end": { + "$date": "2021-05-15T19:43:42.000Z" + }, + "events": [ + { + "uuid": "cfe11d08-c552-4799-b093-6a3197b664fd", + "start": { + "$date": "2021-05-15T19:34:16.000Z" + }, + "end": { + "$date": "2021-05-15T19:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8c461bb4-4e40-4de5-aa72-b658c28ade5e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-15T19:35:22.000Z" + }, + "end": { + "$date": "2021-05-15T20:36:37.000Z" + }, + "events": [ + { + "uuid": "48ebef8b-58d2-4727-b114-85d5baeb2eec", + "start": { + "$date": "2021-05-15T19:35:22.000Z" + }, + "end": { + "$date": "2021-05-15T20:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e0da8968-762e-4ae2-8cc2-27ffce7d73de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T19:54:38.000Z" + }, + "end": { + "$date": "2021-05-15T21:40:20.000Z" + }, + "events": [ + { + "uuid": "6c0b0779-6e3a-4b30-9a3b-fe66e7dc9cce", + "start": { + "$date": "2021-05-15T19:54:38.000Z" + }, + "end": { + "$date": "2021-05-15T21:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cf8f234b-aeca-4421-84ff-fbf393f1906b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T19:55:21.000Z" + }, + "end": { + "$date": "2021-05-15T21:38:42.000Z" + }, + "events": [ + { + "uuid": "2cd8f257-e1e7-48f4-b34b-a5caeb253b7f", + "start": { + "$date": "2021-05-15T19:55:21.000Z" + }, + "end": { + "$date": "2021-05-15T21:06:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a6e8867-7958-464e-a713-e641738e59a7", + "start": { + "$date": "2021-05-15T21:06:21.000Z" + }, + "end": { + "$date": "2021-05-15T21:07:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4bbf2156-8a0f-4d86-9f79-1dbe194fe51b", + "start": { + "$date": "2021-05-15T21:07:21.000Z" + }, + "end": { + "$date": "2021-05-15T21:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "5c138c84-7f93-43af-ad1c-f8d660b809d5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-15T20:37:07.000Z" + }, + "end": { + "$date": "2021-05-15T21:51:21.000Z" + }, + "events": [ + { + "uuid": "9e4bef6f-e9f6-47a6-b5a7-1e2b2c3f9d37", + "start": { + "$date": "2021-05-15T20:37:07.000Z" + }, + "end": { + "$date": "2021-05-15T21:51:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d8c16a12-b857-4bda-a908-d45420a0047e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-15T21:23:32.000Z" + }, + "end": { + "$date": "2021-05-15T21:33:28.000Z" + }, + "events": [ + { + "uuid": "6d1b5190-2e25-4938-8a84-fc92b6c2b032", + "start": { + "$date": "2021-05-15T21:23:32.000Z" + }, + "end": { + "$date": "2021-05-15T21:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "413d2eaa-d05b-4398-aae8-3cbfb7cb4bbd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-15T21:39:04.000Z" + }, + "end": { + "$date": "2021-05-15T23:47:38.000Z" + }, + "events": [ + { + "uuid": "a1ddf17d-5bef-4846-b7a0-53b9f78f8906", + "start": { + "$date": "2021-05-15T21:39:04.000Z" + }, + "end": { + "$date": "2021-05-15T23:47:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e07d3454-17c1-47d7-95d8-afa44b7c3231", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T22:19:12.000Z" + }, + "end": { + "$date": "2021-05-15T22:19:16.000Z" + }, + "events": [ + { + "uuid": "7deda58c-9f4f-4adb-b60b-b7455687395d", + "start": { + "$date": "2021-05-15T22:19:12.000Z" + }, + "end": { + "$date": "2021-05-15T22:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e37baec9-9320-40d7-bd10-10089b5008a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T23:01:19.000Z" + }, + "end": { + "$date": "2021-05-15T23:53:40.000Z" + }, + "events": [ + { + "uuid": "a4c6ad28-ec2f-4cdf-8ea7-2f2db9d0038c", + "start": { + "$date": "2021-05-15T23:01:19.000Z" + }, + "end": { + "$date": "2021-05-15T23:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "236a6672-7861-4d0d-b8f2-bc4d339d1215", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-15T22:55:10.000Z" + }, + "end": { + "$date": "2021-05-15T23:15:00.000Z" + }, + "events": [ + { + "uuid": "da381e41-f652-41d1-8a59-d3570300605e", + "start": { + "$date": "2021-05-15T22:55:10.000Z" + }, + "end": { + "$date": "2021-05-15T23:15:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1f30986e-52ba-4613-912a-80c38fcf0a2a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-15T23:17:00.000Z" + }, + "end": { + "$date": "2021-05-16T00:11:33.000Z" + }, + "events": [ + { + "uuid": "068ddf88-6d82-44f7-bc8f-da44467fa837", + "start": { + "$date": "2021-05-15T23:17:00.000Z" + }, + "end": { + "$date": "2021-05-16T00:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b58c5ac9-33d1-456e-b66a-976172909600", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-15T23:52:39.000Z" + }, + "end": { + "$date": "2021-05-15T23:59:35.000Z" + }, + "events": [ + { + "uuid": "787f4a4a-070d-461e-b583-be5748cf6df0", + "start": { + "$date": "2021-05-15T23:52:39.000Z" + }, + "end": { + "$date": "2021-05-15T23:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "0ac3a65b-4c19-4ed6-aeae-c229c78617f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-15T23:54:45.000Z" + }, + "end": { + "$date": "2021-05-16T00:52:26.000Z" + }, + "events": [ + { + "uuid": "6b4b44fd-e8ab-46b5-affc-3552163009fd", + "start": { + "$date": "2021-05-15T23:54:45.000Z" + }, + "end": { + "$date": "2021-05-16T00:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "aec27d28-1413-41b5-afa8-d1891c182cb7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-15T23:59:45.000Z" + }, + "end": { + "$date": "2021-05-16T00:14:27.000Z" + }, + "events": [ + { + "uuid": "37f0c4cb-1c06-46d0-b19a-35b3f19e1262", + "start": { + "$date": "2021-05-15T23:59:45.000Z" + }, + "end": { + "$date": "2021-05-16T00:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a9c8261f-73de-4097-9fb8-ae4aa4146853", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T00:17:21.000Z" + }, + "end": { + "$date": "2021-05-16T03:31:58.000Z" + }, + "events": [ + { + "uuid": "513ac562-8e3b-452b-ac4d-4a57e91aa859", + "start": { + "$date": "2021-05-16T00:17:21.000Z" + }, + "end": { + "$date": "2021-05-16T03:10:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5443d23d-e728-4352-b9ac-964635f7e119", + "start": { + "$date": "2021-05-16T03:10:21.000Z" + }, + "end": { + "$date": "2021-05-16T03:20:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e888710b-ed00-4942-a3f4-d030f8494cdb", + "start": { + "$date": "2021-05-16T03:20:21.000Z" + }, + "end": { + "$date": "2021-05-16T03:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8cf37626-e26c-447b-adcd-fb2b7f46a5fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T00:52:52.000Z" + }, + "end": { + "$date": "2021-05-16T01:50:29.000Z" + }, + "events": [ + { + "uuid": "7fbdac77-d86f-45f7-aec3-c42796d57c0d", + "start": { + "$date": "2021-05-16T00:52:52.000Z" + }, + "end": { + "$date": "2021-05-16T01:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "171f7450-cd0f-49d3-9797-9148e035b890", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-16T01:46:42.000Z" + }, + "end": { + "$date": "2021-05-16T02:31:54.000Z" + }, + "events": [ + { + "uuid": "4cb8d423-3b6e-4936-8da5-3f42307a502c", + "start": { + "$date": "2021-05-16T01:46:42.000Z" + }, + "end": { + "$date": "2021-05-16T02:31:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04a12e9b-9b7e-41a9-b139-02e0a734b6fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T01:47:12.000Z" + }, + "end": { + "$date": "2021-05-16T02:31:54.000Z" + }, + "events": [ + { + "uuid": "3c46598f-cc5a-4f05-913b-52abdc04b610", + "start": { + "$date": "2021-05-16T01:47:12.000Z" + }, + "end": { + "$date": "2021-05-16T02:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "8bdc9991-7702-4905-83fa-ebdbfa0b3f1f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T01:46:16.000Z" + }, + "end": { + "$date": "2021-05-16T02:56:24.000Z" + }, + "events": [ + { + "uuid": "9669fb2e-1447-4805-a256-40ee1eb751b8", + "start": { + "$date": "2021-05-16T01:46:16.000Z" + }, + "end": { + "$date": "2021-05-16T02:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "73f65b07-bd22-4ee0-bf69-13bb098c81c1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-16T02:15:12.000Z" + }, + "end": { + "$date": "2021-05-16T03:45:31.000Z" + }, + "events": [ + { + "uuid": "229f2371-cc69-40cf-ad37-4fad1c7b41f9", + "start": { + "$date": "2021-05-16T02:15:12.000Z" + }, + "end": { + "$date": "2021-05-16T02:54:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c7b2e58-97b0-4d63-afd3-59d9f2fe4df8", + "start": { + "$date": "2021-05-16T02:54:12.000Z" + }, + "end": { + "$date": "2021-05-16T02:56:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4489c80b-e137-454a-a0cb-5e576febdf62", + "start": { + "$date": "2021-05-16T02:56:12.000Z" + }, + "end": { + "$date": "2021-05-16T03:45:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f5a67046-1d36-4dc2-89af-135e6f5d453d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T02:56:49.000Z" + }, + "end": { + "$date": "2021-05-16T04:37:13.000Z" + }, + "events": [ + { + "uuid": "25b8838c-c090-448e-98af-17e7ba771586", + "start": { + "$date": "2021-05-16T02:56:49.000Z" + }, + "end": { + "$date": "2021-05-16T04:37:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2c3ed80a-5fe6-4271-ad77-82ce9c783d05", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T03:31:53.000Z" + }, + "end": { + "$date": "2021-05-16T04:23:29.000Z" + }, + "events": [ + { + "uuid": "d858a08f-3d25-48dd-bd52-ca9c855cded1", + "start": { + "$date": "2021-05-16T03:31:53.000Z" + }, + "end": { + "$date": "2021-05-16T04:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "888355a2-9317-4d64-a4dc-f960d8038ec9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T03:32:12.000Z" + }, + "end": { + "$date": "2021-05-16T04:10:13.000Z" + }, + "events": [ + { + "uuid": "e7362ed5-2e89-4164-a08c-c78816959998", + "start": { + "$date": "2021-05-16T03:32:12.000Z" + }, + "end": { + "$date": "2021-05-16T04:10:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "963cc64a-5951-48cd-a19a-28c16d5f0644", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-16T03:33:00.000Z" + }, + "end": { + "$date": "2021-05-16T04:38:27.000Z" + }, + "events": [ + { + "uuid": "a04864c1-f3e9-4696-82e3-e01d8fc9d109", + "start": { + "$date": "2021-05-16T03:33:00.000Z" + }, + "end": { + "$date": "2021-05-16T04:38:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "99398c4f-6ba2-468f-a94b-968f0a528e56", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-16T03:45:42.000Z" + }, + "end": { + "$date": "2021-05-16T04:30:33.000Z" + }, + "events": [ + { + "uuid": "c4c4b480-32ea-402d-8988-764880857096", + "start": { + "$date": "2021-05-16T03:45:42.000Z" + }, + "end": { + "$date": "2021-05-16T04:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b5d6e313-0d08-4036-91ae-1a5dc4cb383f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-16T04:04:37.000Z" + }, + "end": { + "$date": "2021-05-16T05:31:58.000Z" + }, + "events": [ + { + "uuid": "1ffbee81-16bc-415b-8030-f71a58d76f50", + "start": { + "$date": "2021-05-16T04:04:37.000Z" + }, + "end": { + "$date": "2021-05-16T05:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf798057-a1ab-43c8-bbb6-8cff6863eb29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T04:10:27.000Z" + }, + "end": { + "$date": "2021-05-16T05:31:45.000Z" + }, + "events": [ + { + "uuid": "98960cc8-7d8c-49b5-aa25-f0306ee04255", + "start": { + "$date": "2021-05-16T04:10:27.000Z" + }, + "end": { + "$date": "2021-05-16T05:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d01650a3-35a8-4771-8b12-941866a2b366", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-16T04:22:53.000Z" + }, + "end": { + "$date": "2021-05-16T06:59:52.000Z" + }, + "events": [ + { + "uuid": "11b95e55-8702-4cd7-b2b4-860aa8ca54b7", + "start": { + "$date": "2021-05-16T04:22:53.000Z" + }, + "end": { + "$date": "2021-05-16T06:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff4abafe-d409-447c-a696-27c30375eaf5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-16T04:27:16.000Z" + }, + "end": { + "$date": "2021-05-16T07:00:25.000Z" + }, + "events": [ + { + "uuid": "d9a2dff8-22d2-4976-8379-4988fbc94e77", + "start": { + "$date": "2021-05-16T04:27:16.000Z" + }, + "end": { + "$date": "2021-05-16T07:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8e0720b2-71ed-4eea-919b-d5a6165b9d2b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-16T04:30:49.000Z" + }, + "end": { + "$date": "2021-05-16T07:46:27.000Z" + }, + "events": [ + { + "uuid": "8019d3e2-244c-43ad-96de-6c4837dcb567", + "start": { + "$date": "2021-05-16T04:30:49.000Z" + }, + "end": { + "$date": "2021-05-16T05:23:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d42ed115-6609-4e98-9826-2156b74a3936", + "start": { + "$date": "2021-05-16T05:23:49.000Z" + }, + "end": { + "$date": "2021-05-16T05:40:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5edd97e-203d-4a1c-a4d8-76202856a209", + "start": { + "$date": "2021-05-16T05:40:49.000Z" + }, + "end": { + "$date": "2021-05-16T07:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82d2184b-637c-4eb0-b29a-f821bd44061d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-16T04:47:56.000Z" + }, + "end": { + "$date": "2021-05-16T05:16:36.000Z" + }, + "events": [ + { + "uuid": "7f6b732e-bfdb-4c16-a7c5-dd25146b3876", + "start": { + "$date": "2021-05-16T04:47:56.000Z" + }, + "end": { + "$date": "2021-05-16T05:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fbcdb51f-648e-49c3-a8a4-5c1eda4a0f10", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T05:11:19.000Z" + }, + "end": { + "$date": "2021-05-16T05:25:59.000Z" + }, + "events": [ + { + "uuid": "100c4932-cbca-4f8d-823a-3b000958f984", + "start": { + "$date": "2021-05-16T05:11:19.000Z" + }, + "end": { + "$date": "2021-05-16T05:25:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e22268f-0e33-4b6e-9d22-1bea46a7d7b2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-16T05:19:51.000Z" + }, + "end": { + "$date": "2021-05-16T05:38:17.000Z" + }, + "events": [ + { + "uuid": "d4323b49-d19b-4981-b0c7-9c62605f24d0", + "start": { + "$date": "2021-05-16T05:19:51.000Z" + }, + "end": { + "$date": "2021-05-16T05:38:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "25ef6342-41ca-4d79-8c81-96a16aa74c7c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-16T05:32:43.000Z" + }, + "end": { + "$date": "2021-05-16T06:27:14.000Z" + }, + "events": [ + { + "uuid": "b4c945b5-e673-4450-806d-cd62c2557d73", + "start": { + "$date": "2021-05-16T05:32:43.000Z" + }, + "end": { + "$date": "2021-05-16T06:27:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5c0e6a14-4615-4e25-8e6a-92c7d880c3ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T05:58:39.000Z" + }, + "end": { + "$date": "2021-05-16T15:37:00.000Z" + }, + "events": [ + { + "uuid": "cda51c18-2066-4804-b5aa-352454888894", + "start": { + "$date": "2021-05-16T05:58:39.000Z" + }, + "end": { + "$date": "2021-05-16T06:11:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a4dc7dc-6aef-4a97-a2cc-ee5c367065bf", + "start": { + "$date": "2021-05-16T06:11:39.000Z" + }, + "end": { + "$date": "2021-05-16T15:03:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20bf92c5-d9c9-4da6-9697-062627c81f77", + "start": { + "$date": "2021-05-16T15:03:39.000Z" + }, + "end": { + "$date": "2021-05-16T15:06:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2210983-040c-429f-b954-fb89d1490af2", + "start": { + "$date": "2021-05-16T15:06:39.000Z" + }, + "end": { + "$date": "2021-05-16T15:17:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f2c1b2f-a260-4bc6-a4b4-784942d12e05", + "start": { + "$date": "2021-05-16T15:17:39.000Z" + }, + "end": { + "$date": "2021-05-16T15:29:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e23e0a45-c27a-4718-b2d8-1d7a7f913310", + "start": { + "$date": "2021-05-16T15:29:39.000Z" + }, + "end": { + "$date": "2021-05-16T15:37:00.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "331085f3-33e7-4a2b-aa08-3942e7d07db7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-16T06:31:45.000Z" + }, + "end": { + "$date": "2021-05-16T06:36:31.000Z" + }, + "events": [ + { + "uuid": "e2da65be-3f63-452b-921d-1a11a014ebed", + "start": { + "$date": "2021-05-16T06:31:45.000Z" + }, + "end": { + "$date": "2021-05-16T06:32:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6fb65f58-f977-4aaa-93cf-e7ca347ce409", + "start": { + "$date": "2021-05-16T06:32:45.000Z" + }, + "end": { + "$date": "2021-05-16T06:36:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "4f72e78a-4d87-4b92-87cd-d3c58d0b55fe", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-16T06:48:33.000Z" + }, + "end": { + "$date": "2021-05-16T09:21:56.000Z" + }, + "events": [ + { + "uuid": "bf1320b6-744f-4605-9f19-0f9d35a6171a", + "start": { + "$date": "2021-05-16T06:48:33.000Z" + }, + "end": { + "$date": "2021-05-16T09:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "db0178b0-6e1d-4ff1-b218-f1ea5c16bcfa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-16T06:52:33.000Z" + }, + "end": { + "$date": "2021-05-16T07:03:40.000Z" + }, + "events": [ + { + "uuid": "8fbc8aca-1951-4182-b793-02a57d3d17ec", + "start": { + "$date": "2021-05-16T06:52:33.000Z" + }, + "end": { + "$date": "2021-05-16T07:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecb80068-b940-4093-a0bc-3f8795afa06f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-16T08:31:33.000Z" + }, + "end": { + "$date": "2021-05-16T08:57:36.000Z" + }, + "events": [ + { + "uuid": "a5d35a65-3aa9-43f4-a45d-f6423045f1c1", + "start": { + "$date": "2021-05-16T08:31:33.000Z" + }, + "end": { + "$date": "2021-05-16T08:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3332f357-0f79-4666-a66c-25a1611cfbe3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-16T09:03:59.000Z" + }, + "end": { + "$date": "2021-05-16T09:26:14.000Z" + }, + "events": [ + { + "uuid": "1a36ce78-4c2b-4305-829c-6467a43e0a79", + "start": { + "$date": "2021-05-16T09:03:59.000Z" + }, + "end": { + "$date": "2021-05-16T09:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "175aca88-239e-4c0a-ba33-7a010e2aa10e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T13:45:46.000Z" + }, + "end": { + "$date": "2021-05-16T13:50:52.000Z" + }, + "events": [ + { + "uuid": "8ab4ba37-bf7d-410b-b95f-1bf32e36c872", + "start": { + "$date": "2021-05-16T13:45:46.000Z" + }, + "end": { + "$date": "2021-05-16T13:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "701b7903-5ecd-4a45-a819-6909cc7bf2e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T14:09:49.000Z" + }, + "end": { + "$date": "2021-05-16T16:01:36.000Z" + }, + "events": [ + { + "uuid": "24d54f3d-b7b2-484a-87f8-8994831cd77d", + "start": { + "$date": "2021-05-16T14:09:49.000Z" + }, + "end": { + "$date": "2021-05-16T16:01:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dfe99d0d-8a35-4d61-921f-3ccaf85bec5a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T16:01:26.000Z" + }, + "end": { + "$date": "2021-05-16T16:25:21.000Z" + }, + "events": [ + { + "uuid": "2cc2a9f6-3c15-4cd5-98b2-cc939909bb9c", + "start": { + "$date": "2021-05-16T16:01:26.000Z" + }, + "end": { + "$date": "2021-05-16T16:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7459725-c689-478b-9f3e-56b1bcbbe78d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T15:45:48.000Z" + }, + "end": { + "$date": "2021-05-16T16:13:00.000Z" + }, + "events": [ + { + "uuid": "a66b6be0-8708-4d43-9ad0-315d52170129", + "start": { + "$date": "2021-05-16T15:45:48.000Z" + }, + "end": { + "$date": "2021-05-16T16:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "10012192-bd54-4856-827a-3c3388cca3de", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T16:01:56.000Z" + }, + "end": { + "$date": "2021-05-16T16:13:12.000Z" + }, + "events": [ + { + "uuid": "e55eed55-635f-477e-aa73-5ccb1854c1ad", + "start": { + "$date": "2021-05-16T16:01:56.000Z" + }, + "end": { + "$date": "2021-05-16T16:13:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fc399c4f-5d6e-4fd8-97fe-0e6ffcce9921", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T16:21:10.000Z" + }, + "end": { + "$date": "2021-05-16T17:03:55.000Z" + }, + "events": [ + { + "uuid": "ff67c96b-4236-48e6-a238-5f3d2325b4ff", + "start": { + "$date": "2021-05-16T16:21:10.000Z" + }, + "end": { + "$date": "2021-05-16T17:03:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26efb9c5-d4dc-4614-a65f-1c80cfb83b69", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T16:20:33.000Z" + }, + "end": { + "$date": "2021-05-16T16:50:06.000Z" + }, + "events": [ + { + "uuid": "adcb7299-5ed5-4e8a-82b1-02719a08824f", + "start": { + "$date": "2021-05-16T16:20:33.000Z" + }, + "end": { + "$date": "2021-05-16T16:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9a5df43d-3c9e-4535-b1c7-d4fbf1a09a0c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-16T16:32:37.000Z" + }, + "end": { + "$date": "2021-05-16T19:07:25.000Z" + }, + "events": [ + { + "uuid": "22016113-8b43-489d-86c7-c59b13734958", + "start": { + "$date": "2021-05-16T16:32:37.000Z" + }, + "end": { + "$date": "2021-05-16T19:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d40dbe14-e122-41ed-9fb9-5bdaa57b832b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T16:57:13.000Z" + }, + "end": { + "$date": "2021-05-16T17:32:22.000Z" + }, + "events": [ + { + "uuid": "291aad67-5cc3-4ec5-8a90-9e7ee80f9826", + "start": { + "$date": "2021-05-16T16:57:13.000Z" + }, + "end": { + "$date": "2021-05-16T17:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a9fd6c62-657f-4a16-8c5f-ba8c76a612e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T16:58:09.000Z" + }, + "end": { + "$date": "2021-05-16T17:01:04.000Z" + }, + "events": [ + { + "uuid": "5731fca7-2eb3-4b33-8fb7-234765454a82", + "start": { + "$date": "2021-05-16T16:58:09.000Z" + }, + "end": { + "$date": "2021-05-16T17:01:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a92e39da-d497-48b2-8ff6-bb252940e197", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T17:11:51.000Z" + }, + "end": { + "$date": "2021-05-16T18:03:33.000Z" + }, + "events": [ + { + "uuid": "a124d3c0-53cc-4256-ac22-9da38460f624", + "start": { + "$date": "2021-05-16T17:11:51.000Z" + }, + "end": { + "$date": "2021-05-16T18:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "4296d2f5-508a-4e97-be61-15e66afb0b3a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T17:15:01.000Z" + }, + "end": { + "$date": "2021-05-16T17:22:17.000Z" + }, + "events": [ + { + "uuid": "6861faf0-b6ea-4a78-9bbf-b2c7be1afc2a", + "start": { + "$date": "2021-05-16T17:15:01.000Z" + }, + "end": { + "$date": "2021-05-16T17:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "9f46038c-8499-4ad6-a959-94ef4323c428", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T17:27:48.000Z" + }, + "end": { + "$date": "2021-05-16T18:00:28.000Z" + }, + "events": [ + { + "uuid": "ef0ad185-bba6-435b-a234-07b071dcf851", + "start": { + "$date": "2021-05-16T17:27:48.000Z" + }, + "end": { + "$date": "2021-05-16T18:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "204f48b0-2c30-4198-a3b9-4bb0a119d8c8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T18:01:48.000Z" + }, + "end": { + "$date": "2021-05-16T18:19:19.000Z" + }, + "events": [ + { + "uuid": "4765de41-b6da-4264-bf8f-fda3554bae7a", + "start": { + "$date": "2021-05-16T18:01:48.000Z" + }, + "end": { + "$date": "2021-05-16T18:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba3f23b1-0894-451c-b890-d4c7adf0287e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T18:05:04.000Z" + }, + "end": { + "$date": "2021-05-16T18:28:44.000Z" + }, + "events": [ + { + "uuid": "714e9000-bdfd-4fc1-9e98-07a3e2ab1d85", + "start": { + "$date": "2021-05-16T18:05:04.000Z" + }, + "end": { + "$date": "2021-05-16T18:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "91d007f7-5adb-4594-ad15-7fd00d04cd06", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T18:19:08.000Z" + }, + "end": { + "$date": "2021-05-16T18:36:11.000Z" + }, + "events": [ + { + "uuid": "1227f585-a136-49a8-a83f-7caf89ff6aa4", + "start": { + "$date": "2021-05-16T18:19:08.000Z" + }, + "end": { + "$date": "2021-05-16T18:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7bf6b098-d981-412a-b4c9-f8c9b2accbb8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-16T18:27:42.000Z" + }, + "end": { + "$date": "2021-05-16T18:47:23.000Z" + }, + "events": [ + { + "uuid": "9a81b598-2f0e-4044-866c-44e321646df3", + "start": { + "$date": "2021-05-16T18:27:42.000Z" + }, + "end": { + "$date": "2021-05-16T18:47:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f1992da3-8758-4f6c-a103-7b52d91b213b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T18:55:53.000Z" + }, + "end": { + "$date": "2021-05-16T19:07:39.000Z" + }, + "events": [ + { + "uuid": "b5b0f97b-9d60-45a1-900e-c8af0486fed5", + "start": { + "$date": "2021-05-16T18:55:53.000Z" + }, + "end": { + "$date": "2021-05-16T19:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ff8be7e5-ca54-4e1c-8c7c-671d0f3568a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-16T18:31:41.000Z" + }, + "end": { + "$date": "2021-05-16T19:55:29.000Z" + }, + "events": [ + { + "uuid": "fc142b5f-4f8b-4bc6-9bfd-52c3138ad668", + "start": { + "$date": "2021-05-16T18:31:41.000Z" + }, + "end": { + "$date": "2021-05-16T18:58:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7cb7aac5-377b-469a-bbbf-f1a47b18ebef", + "start": { + "$date": "2021-05-16T18:58:41.000Z" + }, + "end": { + "$date": "2021-05-16T19:00:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0a49336f-97e2-41f5-85af-231b3253969d", + "start": { + "$date": "2021-05-16T19:00:41.000Z" + }, + "end": { + "$date": "2021-05-16T19:19:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb3b94f0-18a9-42b3-bdbc-78c8f6f9091b", + "start": { + "$date": "2021-05-16T19:19:41.000Z" + }, + "end": { + "$date": "2021-05-16T19:24:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa807fdb-964e-482c-a13f-ee5c66191766", + "start": { + "$date": "2021-05-16T19:24:41.000Z" + }, + "end": { + "$date": "2021-05-16T19:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "49f610b5-ea41-4b08-ae51-0e3e74ff224b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T18:49:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:52:56.000Z" + }, + "events": [ + { + "uuid": "d097b0e5-5fd5-49b7-843c-df4675b08efa", + "start": { + "$date": "2021-05-16T18:49:39.000Z" + }, + "end": { + "$date": "2021-05-16T19:47:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4bae44fe-3750-4727-a786-c21ac71b91bb", + "start": { + "$date": "2021-05-16T19:47:39.000Z" + }, + "end": { + "$date": "2021-05-16T19:53:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "380085b3-b6c7-4199-a12b-fc8c9e19aedb", + "start": { + "$date": "2021-05-16T19:53:39.000Z" + }, + "end": { + "$date": "2021-05-16T19:55:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7ea4698-1082-478a-a40f-1a79f18c3ed1", + "start": { + "$date": "2021-05-16T19:55:39.000Z" + }, + "end": { + "$date": "2021-05-16T19:59:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6ed0b532-c631-4cd3-b6b0-0e5c15f64d89", + "start": { + "$date": "2021-05-16T19:59:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:01:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e8b6f6b-54fb-425a-a970-0755c80f6a48", + "start": { + "$date": "2021-05-16T20:01:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:23:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de1c5941-d50e-4870-9cb4-dcdb21573c7c", + "start": { + "$date": "2021-05-16T20:23:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:25:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97827cd7-d5f2-494f-8dd8-db86dc337a58", + "start": { + "$date": "2021-05-16T20:25:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:40:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a7ec8b8-2118-4dce-bb55-1be5934305a2", + "start": { + "$date": "2021-05-16T20:40:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "955db964-ea9b-4a97-9511-7626b0eaa32e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T19:07:34.000Z" + }, + "end": { + "$date": "2021-05-16T19:25:58.000Z" + }, + "events": [ + { + "uuid": "083668f3-5a2e-47ed-bf0c-a5ea6d061203", + "start": { + "$date": "2021-05-16T19:07:34.000Z" + }, + "end": { + "$date": "2021-05-16T19:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "369bf7ce-e506-4de7-9ff8-0527124c421a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T19:10:31.000Z" + }, + "end": { + "$date": "2021-05-16T19:11:33.000Z" + }, + "events": [ + { + "uuid": "89bce0ae-6609-4461-8dca-9c245c397843", + "start": { + "$date": "2021-05-16T19:10:31.000Z" + }, + "end": { + "$date": "2021-05-16T19:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "629d39e8-3066-4fc5-a81a-d3bbd5ebbe22", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T19:11:35.000Z" + }, + "end": { + "$date": "2021-05-16T19:25:36.000Z" + }, + "events": [ + { + "uuid": "aa83d426-13ba-4c8d-9f38-d166ea154c57", + "start": { + "$date": "2021-05-16T19:11:35.000Z" + }, + "end": { + "$date": "2021-05-16T19:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "68c91905-771d-42c8-9475-7dd6cc808d86", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-16T19:18:33.000Z" + }, + "end": { + "$date": "2021-05-16T19:30:20.000Z" + }, + "events": [ + { + "uuid": "a72e3e97-2c16-46c5-bf99-d70720daaf29", + "start": { + "$date": "2021-05-16T19:18:33.000Z" + }, + "end": { + "$date": "2021-05-16T19:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5809bccd-3c80-407c-afb6-19baff713f84", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-16T19:19:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:43:58.000Z" + }, + "events": [ + { + "uuid": "7a535589-bda2-403e-8f34-d02f42cc8c14", + "start": { + "$date": "2021-05-16T19:19:39.000Z" + }, + "end": { + "$date": "2021-05-16T20:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2f800156-29f4-4585-a241-2b1751e5f02c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T19:25:47.000Z" + }, + "end": { + "$date": "2021-05-16T20:07:18.000Z" + }, + "events": [ + { + "uuid": "9d13ec22-5f0b-48c5-bb41-cb6077c616c6", + "start": { + "$date": "2021-05-16T19:25:47.000Z" + }, + "end": { + "$date": "2021-05-16T20:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "242db072-89a7-46f6-96cd-9d924e94b1af", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T19:42:50.000Z" + }, + "end": { + "$date": "2021-05-16T20:20:35.000Z" + }, + "events": [ + { + "uuid": "a247aea2-df04-462d-aa43-481c3a646bae", + "start": { + "$date": "2021-05-16T19:42:50.000Z" + }, + "end": { + "$date": "2021-05-16T20:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "74b13687-79f7-48bf-a2eb-a98c6b6a357a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-16T19:40:19.000Z" + }, + "end": { + "$date": "2021-05-16T20:52:39.000Z" + }, + "events": [ + { + "uuid": "02dcce08-752c-4ecb-89e5-8527033e2508", + "start": { + "$date": "2021-05-16T19:40:19.000Z" + }, + "end": { + "$date": "2021-05-16T20:52:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1fa5036-d0ae-4e28-afed-a60cfd73e5df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T21:03:22.000Z" + }, + "end": { + "$date": "2021-05-16T21:32:36.000Z" + }, + "events": [ + { + "uuid": "b414b9b9-f514-4779-b902-efb363b26b22", + "start": { + "$date": "2021-05-16T21:03:22.000Z" + }, + "end": { + "$date": "2021-05-16T21:14:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "34732337-0ac7-4648-9f85-f1f02300440e", + "start": { + "$date": "2021-05-16T21:14:22.000Z" + }, + "end": { + "$date": "2021-05-16T21:28:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52446ca0-5de7-416a-b775-3062620692cb", + "start": { + "$date": "2021-05-16T21:28:22.000Z" + }, + "end": { + "$date": "2021-05-16T21:30:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1154b731-59a1-4a7f-a79e-ece74c6d540b", + "start": { + "$date": "2021-05-16T21:30:22.000Z" + }, + "end": { + "$date": "2021-05-16T21:37:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8315473a-d9e0-4fcc-a87c-7b944731d57f", + "start": { + "$date": "2021-05-16T21:37:22.000Z" + }, + "end": { + "$date": "2021-05-16T21:32:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c9534e7b-49d7-4ddc-827b-6b9c23f70d73", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-16T20:22:57.000Z" + }, + "end": { + "$date": "2021-05-16T20:27:43.000Z" + }, + "events": [ + { + "uuid": "af7b9ad7-dfa1-4d04-a332-6c14c4c5f2bd", + "start": { + "$date": "2021-05-16T20:22:57.000Z" + }, + "end": { + "$date": "2021-05-16T20:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a6306e56-6a4e-453f-ade1-dd3134e26cc7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-16T20:36:33.000Z" + }, + "end": { + "$date": "2021-05-16T20:49:14.000Z" + }, + "events": [ + { + "uuid": "0f57c0a5-1422-4282-a9af-e085aaed9d55", + "start": { + "$date": "2021-05-16T20:36:33.000Z" + }, + "end": { + "$date": "2021-05-16T20:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bc584291-e265-43d9-8561-8ea637010f50", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-16T22:20:47.000Z" + }, + "end": { + "$date": "2021-05-17T00:30:12.000Z" + }, + "events": [ + { + "uuid": "a0d507e6-3c74-462c-ae24-4262744e0a54", + "start": { + "$date": "2021-05-16T22:20:47.000Z" + }, + "end": { + "$date": "2021-05-17T00:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "de1c2bce-209b-4256-af87-f88515946942", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-16T20:49:30.000Z" + }, + "end": { + "$date": "2021-05-17T00:24:24.000Z" + }, + "events": [ + { + "uuid": "62dbdbdd-120d-46ee-9b2e-1a5f58397d25", + "start": { + "$date": "2021-05-16T20:49:30.000Z" + }, + "end": { + "$date": "2021-05-17T00:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5b924a15-9362-45b6-a159-37c1ca902559", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-16T23:33:12.000Z" + }, + "end": { + "$date": "2021-05-17T00:30:10.000Z" + }, + "events": [ + { + "uuid": "9a576081-f19a-4a68-b065-b00f2faa85a9", + "start": { + "$date": "2021-05-16T23:33:12.000Z" + }, + "end": { + "$date": "2021-05-17T00:29:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8f3bed1-3f3b-40f5-9c8f-77cf0bae9612", + "start": { + "$date": "2021-05-17T00:29:12.000Z" + }, + "end": { + "$date": "2021-05-17T00:35:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e553e7d-a21f-4d05-b4d7-c7879abec291", + "start": { + "$date": "2021-05-17T00:35:12.000Z" + }, + "end": { + "$date": "2021-05-17T00:37:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a79e07a-b50f-4955-be93-0ce3bd28b29a", + "start": { + "$date": "2021-05-17T00:37:12.000Z" + }, + "end": { + "$date": "2021-05-17T00:57:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f891c115-7fa1-45e8-b403-01fe3cf638c8", + "start": { + "$date": "2021-05-17T00:57:12.000Z" + }, + "end": { + "$date": "2021-05-17T00:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55499acf-d1ee-4c9d-b359-83aef3789342", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T22:00:40.000Z" + }, + "end": { + "$date": "2021-05-16T22:34:57.000Z" + }, + "events": [ + { + "uuid": "6baa4119-c4fe-4930-8b3c-98c69513cb9f", + "start": { + "$date": "2021-05-16T22:00:40.000Z" + }, + "end": { + "$date": "2021-05-16T22:34:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f2f00b92-3d06-407f-91d2-98ad3893e0c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-16T22:13:41.000Z" + }, + "end": { + "$date": "2021-05-16T23:40:31.000Z" + }, + "events": [ + { + "uuid": "eba73675-c0a2-4423-b27a-68d1a8e5792f", + "start": { + "$date": "2021-05-16T22:13:41.000Z" + }, + "end": { + "$date": "2021-05-16T23:40:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76147cb4-2c6e-44cb-b6b4-c3cb1b2c7180", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-16T22:17:57.000Z" + }, + "end": { + "$date": "2021-05-17T00:29:03.000Z" + }, + "events": [ + { + "uuid": "859864a4-bbed-4708-a437-a016df268720", + "start": { + "$date": "2021-05-16T22:17:57.000Z" + }, + "end": { + "$date": "2021-05-17T00:29:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "18596ae0-e311-417e-839f-b559a9d48363", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-16T22:45:24.000Z" + }, + "end": { + "$date": "2021-05-16T23:39:30.000Z" + }, + "events": [ + { + "uuid": "eac08ec6-962c-4f85-a6dc-47a44af3bc1e", + "start": { + "$date": "2021-05-16T22:45:24.000Z" + }, + "end": { + "$date": "2021-05-16T23:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5da37ff6-1f39-4a9e-9180-37823391e399", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-16T23:07:55.000Z" + }, + "end": { + "$date": "2021-05-17T00:52:00.000Z" + }, + "events": [ + { + "uuid": "c695b3c2-492f-4d5f-8522-8ebd6d3b558c", + "start": { + "$date": "2021-05-16T23:07:55.000Z" + }, + "end": { + "$date": "2021-05-16T23:28:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95070eef-6c63-42e0-b206-ebf97e3e8838", + "start": { + "$date": "2021-05-16T23:28:55.000Z" + }, + "end": { + "$date": "2021-05-16T23:31:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bdf738e2-4577-4088-8b70-e4496ffc0ad1", + "start": { + "$date": "2021-05-16T23:31:55.000Z" + }, + "end": { + "$date": "2021-05-17T00:42:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "220e23d0-d312-40e1-a30f-83eedb6177b3", + "start": { + "$date": "2021-05-17T00:42:55.000Z" + }, + "end": { + "$date": "2021-05-17T00:45:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e075215b-26b9-4288-8a9e-b08f03f31136", + "start": { + "$date": "2021-05-17T00:45:55.000Z" + }, + "end": { + "$date": "2021-05-17T00:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "eff93bd9-9e47-44f7-9def-601b935febeb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-17T00:24:45.000Z" + }, + "end": { + "$date": "2021-05-17T00:34:26.000Z" + }, + "events": [ + { + "uuid": "ce9fc1ed-4ac2-452b-abd2-ff42b2ff5d83", + "start": { + "$date": "2021-05-17T00:24:45.000Z" + }, + "end": { + "$date": "2021-05-17T00:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "84658ebf-a042-4ea3-87a9-e2c07115066a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-17T03:19:23.000Z" + }, + "end": { + "$date": "2021-05-17T04:38:43.000Z" + }, + "events": [ + { + "uuid": "94213bf2-052e-4ca0-a941-88aec9527c1f", + "start": { + "$date": "2021-05-17T03:19:23.000Z" + }, + "end": { + "$date": "2021-05-17T06:18:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6863e1e0-9aa2-4ccb-bf7d-cacc4515fed9", + "start": { + "$date": "2021-05-17T06:18:23.000Z" + }, + "end": { + "$date": "2021-05-17T06:43:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "059ee0bc-05d3-4c02-9a22-ee7ab934528f", + "start": { + "$date": "2021-05-17T06:43:23.000Z" + }, + "end": { + "$date": "2021-05-17T04:38:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e41b6045-7f62-4016-bc33-6361acd3d8e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-17T01:21:16.000Z" + }, + "end": { + "$date": "2021-05-17T07:20:18.000Z" + }, + "events": [ + { + "uuid": "2f757316-7701-4869-9a98-72d68952c0e1", + "start": { + "$date": "2021-05-17T01:21:16.000Z" + }, + "end": { + "$date": "2021-05-17T07:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c6e13263-dfbc-4c6c-92d6-852f0a20fd97", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-17T01:24:25.000Z" + }, + "end": { + "$date": "2021-05-17T09:01:33.000Z" + }, + "events": [ + { + "uuid": "2ea5da17-9565-44b0-9022-9026407b9c15", + "start": { + "$date": "2021-05-17T01:24:25.000Z" + }, + "end": { + "$date": "2021-05-17T02:35:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc1c01d2-e3a3-4288-a2ca-e047b0d410f0", + "start": { + "$date": "2021-05-17T02:35:25.000Z" + }, + "end": { + "$date": "2021-05-17T02:47:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1453ee94-42b8-4edd-8e48-c2bf057b5058", + "start": { + "$date": "2021-05-17T02:47:25.000Z" + }, + "end": { + "$date": "2021-05-17T02:49:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a1ed7b2-0c4e-4f85-bb1d-2d2349c7e958", + "start": { + "$date": "2021-05-17T02:49:25.000Z" + }, + "end": { + "$date": "2021-05-17T03:30:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c773f138-b399-4709-b007-49f7581ff9b2", + "start": { + "$date": "2021-05-17T03:30:25.000Z" + }, + "end": { + "$date": "2021-05-17T03:32:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce3d53fd-49b0-4ce8-8d0e-e0696159b9c0", + "start": { + "$date": "2021-05-17T03:32:25.000Z" + }, + "end": { + "$date": "2021-05-17T03:59:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dcd03f7d-effb-4fe3-b74d-c0e341c14c3a", + "start": { + "$date": "2021-05-17T03:59:25.000Z" + }, + "end": { + "$date": "2021-05-17T04:01:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85df7585-7a4b-4219-b74e-fa5a831e23e4", + "start": { + "$date": "2021-05-17T04:01:25.000Z" + }, + "end": { + "$date": "2021-05-17T04:07:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d66c2fde-2b2f-4456-86dd-44e8890630d6", + "start": { + "$date": "2021-05-17T04:07:25.000Z" + }, + "end": { + "$date": "2021-05-17T04:09:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5e31616-5519-4248-a140-713d173693ce", + "start": { + "$date": "2021-05-17T04:09:25.000Z" + }, + "end": { + "$date": "2021-05-17T04:25:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2371f929-e4de-40cc-86da-e77f49c2e74c", + "start": { + "$date": "2021-05-17T04:25:25.000Z" + }, + "end": { + "$date": "2021-05-17T04:36:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95584c3f-b320-4ce0-862b-b98db8d10803", + "start": { + "$date": "2021-05-17T04:36:25.000Z" + }, + "end": { + "$date": "2021-05-17T05:42:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1d102ba0-29a6-42e0-ac5d-1fc12c32023d", + "start": { + "$date": "2021-05-17T05:42:25.000Z" + }, + "end": { + "$date": "2021-05-17T05:44:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5c0d0d5-77a7-4411-87bf-60755ea236a8", + "start": { + "$date": "2021-05-17T05:44:25.000Z" + }, + "end": { + "$date": "2021-05-17T05:45:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9e2daeb1-9a83-4045-92de-e3e513b374dd", + "start": { + "$date": "2021-05-17T05:45:25.000Z" + }, + "end": { + "$date": "2021-05-17T05:47:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "11b653f4-ee21-4c6a-8f78-117d41fc8abb", + "start": { + "$date": "2021-05-17T05:47:25.000Z" + }, + "end": { + "$date": "2021-05-17T06:09:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7593f7f2-3ad5-403b-a6fe-9edc7cc1a8df", + "start": { + "$date": "2021-05-17T06:09:25.000Z" + }, + "end": { + "$date": "2021-05-17T06:54:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d0dd66f-92da-440d-97e8-3532003b1743", + "start": { + "$date": "2021-05-17T06:54:25.000Z" + }, + "end": { + "$date": "2021-05-17T06:56:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53098042-4057-429f-b71c-ee28e8dfed9d", + "start": { + "$date": "2021-05-17T06:56:25.000Z" + }, + "end": { + "$date": "2021-05-17T06:58:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b77d3690-d08d-4984-ad7e-0964477e36f5", + "start": { + "$date": "2021-05-17T06:58:25.000Z" + }, + "end": { + "$date": "2021-05-17T08:33:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7943467-9912-4f78-95a9-38af3edb4b5d", + "start": { + "$date": "2021-05-17T08:33:25.000Z" + }, + "end": { + "$date": "2021-05-17T08:42:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "221d7141-6fe6-4278-b962-9f22f5423d3f", + "start": { + "$date": "2021-05-17T08:42:25.000Z" + }, + "end": { + "$date": "2021-05-17T08:50:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d84c7304-aa77-45b0-8517-8c09a874c4bf", + "start": { + "$date": "2021-05-17T08:50:25.000Z" + }, + "end": { + "$date": "2021-05-17T08:58:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f0f04f0d-8101-4f4a-8e27-ad73806c8f89", + "start": { + "$date": "2021-05-17T08:58:25.000Z" + }, + "end": { + "$date": "2021-05-17T08:59:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8167750f-5bef-49ac-9628-462a6f8c59d8", + "start": { + "$date": "2021-05-17T08:59:25.000Z" + }, + "end": { + "$date": "2021-05-17T09:01:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2f399d92-0bbd-4f55-b372-752d91cafc78", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T01:27:47.000Z" + }, + "end": { + "$date": "2021-05-17T02:21:10.000Z" + }, + "events": [ + { + "uuid": "58f1ab4e-d0d7-4ca3-9096-f4e2cf197ec2", + "start": { + "$date": "2021-05-17T01:27:47.000Z" + }, + "end": { + "$date": "2021-05-17T02:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "aa640bbf-4f4b-46c4-83be-089cd57a6865", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-17T01:56:42.000Z" + }, + "end": { + "$date": "2021-05-17T02:45:38.000Z" + }, + "events": [ + { + "uuid": "83386d4d-6eb2-492f-bba4-de415e081b55", + "start": { + "$date": "2021-05-17T01:56:42.000Z" + }, + "end": { + "$date": "2021-05-17T02:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "df23f129-426d-4880-b2bb-912b0afe865f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-17T02:07:12.000Z" + }, + "end": { + "$date": "2021-05-17T02:34:55.000Z" + }, + "events": [ + { + "uuid": "5ed82b34-aa2b-4f09-b365-130363b80d75", + "start": { + "$date": "2021-05-17T02:07:12.000Z" + }, + "end": { + "$date": "2021-05-17T02:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "be8f4d37-da12-4d3a-b826-d85aa94bcb5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-17T02:19:01.000Z" + }, + "end": { + "$date": "2021-05-17T05:01:45.000Z" + }, + "events": [ + { + "uuid": "4032ca10-eed4-4659-9b51-f643d4415625", + "start": { + "$date": "2021-05-17T02:19:01.000Z" + }, + "end": { + "$date": "2021-05-17T05:01:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f010e3f9-a77f-480d-9695-000aace53291", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T02:21:21.000Z" + }, + "end": { + "$date": "2021-05-17T05:01:26.000Z" + }, + "events": [ + { + "uuid": "2d666361-6a05-451f-96dd-f13e25db3118", + "start": { + "$date": "2021-05-17T02:21:21.000Z" + }, + "end": { + "$date": "2021-05-17T05:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "953d4d85-4861-4b3f-9042-d67bb2799f0d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-17T02:46:28.000Z" + }, + "end": { + "$date": "2021-05-17T04:38:27.000Z" + }, + "events": [ + { + "uuid": "d5fceb50-5e3a-4d38-9c60-3cc74a3a8f24", + "start": { + "$date": "2021-05-17T02:46:28.000Z" + }, + "end": { + "$date": "2021-05-17T04:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92304090-d880-4b76-bb6c-5be7479145ef", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-17T03:34:32.000Z" + }, + "end": { + "$date": "2021-05-17T04:06:40.000Z" + }, + "events": [ + { + "uuid": "190c3d1e-9a07-4138-a4e5-143a33ab9d3d", + "start": { + "$date": "2021-05-17T03:34:32.000Z" + }, + "end": { + "$date": "2021-05-17T04:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "04d2cead-5b32-495e-a6c7-28ec65830629", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T03:48:37.000Z" + }, + "end": { + "$date": "2021-05-17T04:50:35.000Z" + }, + "events": [ + { + "uuid": "930ad4e3-64cc-47ce-a8a3-439734507bd8", + "start": { + "$date": "2021-05-17T03:48:37.000Z" + }, + "end": { + "$date": "2021-05-17T04:18:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ba66ed3-4f44-4d93-91f3-a45f7bf8910e", + "start": { + "$date": "2021-05-17T04:18:37.000Z" + }, + "end": { + "$date": "2021-05-17T04:19:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "19a33ea7-ce3f-41ed-b38c-d055de220080", + "start": { + "$date": "2021-05-17T04:19:37.000Z" + }, + "end": { + "$date": "2021-05-17T04:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48a13566-208d-4957-a83b-621d2252e6cd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-17T04:12:15.000Z" + }, + "end": { + "$date": "2021-05-17T04:45:03.000Z" + }, + "events": [ + { + "uuid": "d8e40173-a1b0-465d-9a6b-7951d7466531", + "start": { + "$date": "2021-05-17T04:12:15.000Z" + }, + "end": { + "$date": "2021-05-17T04:45:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "804cac7e-dea9-4b0f-8bad-98c5e0dafa0e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-17T04:45:18.000Z" + }, + "end": { + "$date": "2021-05-17T04:59:33.000Z" + }, + "events": [ + { + "uuid": "c32ea316-a672-42a8-a65b-dc72dec01ebf", + "start": { + "$date": "2021-05-17T04:45:18.000Z" + }, + "end": { + "$date": "2021-05-17T04:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4224fdb9-fb5a-4ff2-8807-92207a6e9adb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-17T04:55:29.000Z" + }, + "end": { + "$date": "2021-05-17T05:12:01.000Z" + }, + "events": [ + { + "uuid": "df116cb8-e2ac-43be-8081-35710f5c88e6", + "start": { + "$date": "2021-05-17T04:55:29.000Z" + }, + "end": { + "$date": "2021-05-17T05:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "45053aad-fe18-496c-8a07-0429d9ca33d8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T05:02:37.000Z" + }, + "end": { + "$date": "2021-05-17T16:12:45.000Z" + }, + "events": [ + { + "uuid": "90bcbc7b-0c70-46fa-8a5b-8e5981bf31f1", + "start": { + "$date": "2021-05-17T05:02:37.000Z" + }, + "end": { + "$date": "2021-05-17T05:14:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c6c8dca-c6e2-4fd4-9bfc-38df462f45ca", + "start": { + "$date": "2021-05-17T05:14:37.000Z" + }, + "end": { + "$date": "2021-05-17T15:05:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "039f7f03-bff3-4d88-b345-f81f222590f3", + "start": { + "$date": "2021-05-17T15:05:37.000Z" + }, + "end": { + "$date": "2021-05-17T15:10:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2201a307-4b14-46c0-ace8-324d6dff2793", + "start": { + "$date": "2021-05-17T15:10:37.000Z" + }, + "end": { + "$date": "2021-05-17T15:21:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "067747fc-16f8-4a71-addd-e3149af0a5b3", + "start": { + "$date": "2021-05-17T15:21:37.000Z" + }, + "end": { + "$date": "2021-05-17T15:31:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7fe73cf3-3658-4243-89f1-f97d6fd365b2", + "start": { + "$date": "2021-05-17T15:31:37.000Z" + }, + "end": { + "$date": "2021-05-17T15:34:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5fd94f71-2781-4482-85d7-772057fe8653", + "start": { + "$date": "2021-05-17T15:34:37.000Z" + }, + "end": { + "$date": "2021-05-17T16:04:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3090b33d-4967-4a2d-bafe-003b202c42b4", + "start": { + "$date": "2021-05-17T16:04:37.000Z" + }, + "end": { + "$date": "2021-05-17T16:05:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "60ef5b26-7e6f-4337-9f62-85c0e8224664", + "start": { + "$date": "2021-05-17T16:05:37.000Z" + }, + "end": { + "$date": "2021-05-17T16:12:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3726462c-ff06-406b-8103-f182cd1cb72c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-17T05:14:32.000Z" + }, + "end": { + "$date": "2021-05-17T05:37:36.000Z" + }, + "events": [ + { + "uuid": "925a836c-6035-4274-a1f5-86a28828282b", + "start": { + "$date": "2021-05-17T05:14:32.000Z" + }, + "end": { + "$date": "2021-05-17T05:37:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dce5b414-c6eb-4262-a8af-f1c0590b8aea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-17T05:14:30.000Z" + }, + "end": { + "$date": "2021-05-17T05:37:26.000Z" + }, + "events": [ + { + "uuid": "260a1799-1b34-4383-8652-6f63ac9b8bee", + "start": { + "$date": "2021-05-17T05:14:30.000Z" + }, + "end": { + "$date": "2021-05-17T05:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c81a212-33ba-40f4-85ca-9f03fb653cc2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-17T05:17:12.000Z" + }, + "end": { + "$date": "2021-05-17T05:46:30.000Z" + }, + "events": [ + { + "uuid": "294402d3-c64d-45c9-a39f-5e79c536ebd9", + "start": { + "$date": "2021-05-17T05:17:12.000Z" + }, + "end": { + "$date": "2021-05-17T05:46:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de3e974c-6eb5-468b-b531-7bd7e95aa61f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-17T05:42:34.000Z" + }, + "end": { + "$date": "2021-05-17T06:03:35.000Z" + }, + "events": [ + { + "uuid": "533d66e6-7c65-4931-afc8-2e4a89dd8247", + "start": { + "$date": "2021-05-17T05:42:34.000Z" + }, + "end": { + "$date": "2021-05-17T06:03:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bfc8aac-63dd-4b0e-90b0-61674fe519d2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-17T05:42:32.000Z" + }, + "end": { + "$date": "2021-05-17T06:03:27.000Z" + }, + "events": [ + { + "uuid": "2272f68a-c950-447e-a833-96ce4f043fdb", + "start": { + "$date": "2021-05-17T05:42:32.000Z" + }, + "end": { + "$date": "2021-05-17T06:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdb4995d-2e6b-402d-a893-52bd7631ba15", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-17T05:52:51.000Z" + }, + "end": { + "$date": "2021-05-17T06:17:23.000Z" + }, + "events": [ + { + "uuid": "aa68cfe9-2c78-4e1a-bad1-bb3a076e1aef", + "start": { + "$date": "2021-05-17T05:52:51.000Z" + }, + "end": { + "$date": "2021-05-17T06:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7faf2ff-463a-4367-9ad5-82af7e3e6317", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-17T06:30:36.000Z" + }, + "end": { + "$date": "2021-05-17T07:05:04.000Z" + }, + "events": [ + { + "uuid": "d9fbf86c-91a0-4a79-9210-01960fd394d9", + "start": { + "$date": "2021-05-17T06:30:36.000Z" + }, + "end": { + "$date": "2021-05-17T07:05:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9a80e9ad-5ec8-4398-96b1-b67e5fb6e761", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-17T13:47:20.000Z" + }, + "end": { + "$date": "2021-05-17T14:26:38.000Z" + }, + "events": [ + { + "uuid": "fdcabcc1-a1cf-43e3-a038-cec198fac7dc", + "start": { + "$date": "2021-05-17T13:47:20.000Z" + }, + "end": { + "$date": "2021-05-17T14:26:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "b0bb51e7-ed2d-4ec5-b3ad-88e3c48767cd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-17T14:26:55.000Z" + }, + "end": { + "$date": "2021-05-17T16:30:20.000Z" + }, + "events": [ + { + "uuid": "ca8664b1-8ef5-4371-bbf9-ecd752eb5d88", + "start": { + "$date": "2021-05-17T14:26:55.000Z" + }, + "end": { + "$date": "2021-05-17T16:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "41165e6a-7782-4cb2-9bb6-736b8ece6e1d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-17T14:39:19.000Z" + }, + "end": { + "$date": "2021-05-17T15:18:13.000Z" + }, + "events": [ + { + "uuid": "48eb3316-431f-4ae9-8d08-360f2a353948", + "start": { + "$date": "2021-05-17T14:39:19.000Z" + }, + "end": { + "$date": "2021-05-17T15:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f1da3a14-772a-41d6-acb3-21d80707ef66", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-17T15:22:14.000Z" + }, + "end": { + "$date": "2021-05-17T15:37:29.000Z" + }, + "events": [ + { + "uuid": "897555e1-a3bd-45a1-afdf-4465ae2b4951", + "start": { + "$date": "2021-05-17T15:22:14.000Z" + }, + "end": { + "$date": "2021-05-17T15:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2e5869ad-c98d-47bb-8ecf-252880fb5664", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-17T15:27:57.000Z" + }, + "end": { + "$date": "2021-05-17T15:36:00.000Z" + }, + "events": [ + { + "uuid": "493b7484-8392-431c-b90b-38b2155315d6", + "start": { + "$date": "2021-05-17T15:27:57.000Z" + }, + "end": { + "$date": "2021-05-17T15:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38962999-ece6-4418-8101-caa9482d3e66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T16:13:31.000Z" + }, + "end": { + "$date": "2021-05-17T16:45:13.000Z" + }, + "events": [ + { + "uuid": "636c581d-2748-4a30-bf55-948220907839", + "start": { + "$date": "2021-05-17T16:13:31.000Z" + }, + "end": { + "$date": "2021-05-17T16:45:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7dbf0b59-34fc-4795-8820-b6932c945778", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T17:22:53.000Z" + }, + "end": { + "$date": "2021-05-17T17:41:48.000Z" + }, + "events": [ + { + "uuid": "f5325134-8171-46c7-8086-050c0dcb09d5", + "start": { + "$date": "2021-05-17T17:22:53.000Z" + }, + "end": { + "$date": "2021-05-17T17:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f17f04b5-cfd2-4e29-93c1-07a7554f413f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-17T16:47:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:57:59.000Z" + }, + "events": [ + { + "uuid": "6e1f0822-a534-4319-84bb-7fa0d48a45cf", + "start": { + "$date": "2021-05-17T16:47:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:23:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50ada64f-b3d6-4941-9ae4-cccd052b2c94", + "start": { + "$date": "2021-05-17T17:23:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:24:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f2dc6e64-0b11-4d0f-852e-909f11c47b3d", + "start": { + "$date": "2021-05-17T17:24:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:27:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "304e1a9b-e29d-4788-99a7-56d2da168d6d", + "start": { + "$date": "2021-05-17T17:27:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:30:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39f3bbf7-446a-4850-9a67-edcb95f23c47", + "start": { + "$date": "2021-05-17T17:30:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:32:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb4777b4-0c6a-40c8-b9cc-80e0eeeed45e", + "start": { + "$date": "2021-05-17T17:32:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:53:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7c93834c-c0b8-41db-a254-5f0a3b89cffa", + "start": { + "$date": "2021-05-17T17:53:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:55:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3ee5d9bc-2a6c-413f-b67e-897dae47fda2", + "start": { + "$date": "2021-05-17T17:55:18.000Z" + }, + "end": { + "$date": "2021-05-17T17:58:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7dedc003-fbce-4856-8b12-df9ee22dd905", + "start": { + "$date": "2021-05-17T17:58:18.000Z" + }, + "end": { + "$date": "2021-05-17T18:01:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "657c4334-45e7-4f7c-add2-365e387cb943", + "start": { + "$date": "2021-05-17T18:01:18.000Z" + }, + "end": { + "$date": "2021-05-17T18:27:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6fd8aa3a-8d8d-4918-a064-3a069b26c69a", + "start": { + "$date": "2021-05-17T18:27:18.000Z" + }, + "end": { + "$date": "2021-05-17T18:34:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7515529f-db74-4e4c-9636-a0e898010e00", + "start": { + "$date": "2021-05-17T18:34:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:04:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f242672-4b06-4352-b5ec-12aeb938eb33", + "start": { + "$date": "2021-05-17T19:04:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:06:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb7a9d6e-fddb-4607-95ba-d92c36e710c3", + "start": { + "$date": "2021-05-17T19:06:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:28:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d946123b-df29-41a3-8a40-e32bfcefb417", + "start": { + "$date": "2021-05-17T19:28:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:31:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c50fd4d1-b491-4675-bd71-bedddcbf4815", + "start": { + "$date": "2021-05-17T19:31:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:56:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3073ad2a-d227-422f-94f3-3d27db10a6e3", + "start": { + "$date": "2021-05-17T19:56:18.000Z" + }, + "end": { + "$date": "2021-05-17T19:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6ed07ef5-2496-40f9-8fb7-631dcb7ff55d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T19:58:21.000Z" + }, + "end": { + "$date": "2021-05-17T20:18:13.000Z" + }, + "events": [ + { + "uuid": "f5be48df-fbe2-45ec-adcd-c5bb40db3d82", + "start": { + "$date": "2021-05-17T19:58:21.000Z" + }, + "end": { + "$date": "2021-05-17T20:28:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a7e62bb-1a65-442f-9934-0d6810985013", + "start": { + "$date": "2021-05-17T20:28:21.000Z" + }, + "end": { + "$date": "2021-05-17T20:31:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "191483c3-8398-4587-b71a-ca077227c9d7", + "start": { + "$date": "2021-05-17T20:31:21.000Z" + }, + "end": { + "$date": "2021-05-17T20:44:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c3eb2fd-9572-412b-b355-6a853089f778", + "start": { + "$date": "2021-05-17T20:44:21.000Z" + }, + "end": { + "$date": "2021-05-17T21:02:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b9685f2-a5ed-41b4-ba7a-936ae917505d", + "start": { + "$date": "2021-05-17T21:02:21.000Z" + }, + "end": { + "$date": "2021-05-17T21:04:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45c3558a-9b7f-47e6-8c3a-a76fbf38fe05", + "start": { + "$date": "2021-05-17T21:04:21.000Z" + }, + "end": { + "$date": "2021-05-17T21:06:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d156035-056a-44a2-9150-a7ab18ab97a6", + "start": { + "$date": "2021-05-17T21:06:21.000Z" + }, + "end": { + "$date": "2021-05-17T21:08:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7164705-5a59-4b82-b89c-dbdc932b7bce", + "start": { + "$date": "2021-05-17T21:08:21.000Z" + }, + "end": { + "$date": "2021-05-17T21:26:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "72b67982-a901-4448-ad59-1d60b038552c", + "start": { + "$date": "2021-05-17T21:26:21.000Z" + }, + "end": { + "$date": "2021-05-17T20:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bdff7ac1-633e-44a7-afc5-deb26009bab9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-17T20:11:07.000Z" + }, + "end": { + "$date": "2021-05-18T01:49:11.000Z" + }, + "events": [ + { + "uuid": "b5f6091e-ffd3-4883-a71f-e52b96d62412", + "start": { + "$date": "2021-05-17T20:11:07.000Z" + }, + "end": { + "$date": "2021-05-17T20:18:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f8f70303-8953-49d4-bffe-c118e890b520", + "start": { + "$date": "2021-05-17T20:18:07.000Z" + }, + "end": { + "$date": "2021-05-17T20:25:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa234a6d-6ee7-4e37-9ac6-8eda5c5c4c10", + "start": { + "$date": "2021-05-17T20:25:07.000Z" + }, + "end": { + "$date": "2021-05-17T20:30:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77396016-424b-44bc-b067-618537ce6a71", + "start": { + "$date": "2021-05-17T20:30:07.000Z" + }, + "end": { + "$date": "2021-05-17T21:04:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91ab22d9-fa79-4b4a-aa76-6aad5c261b5b", + "start": { + "$date": "2021-05-17T21:04:07.000Z" + }, + "end": { + "$date": "2021-05-17T21:06:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cef756b5-2016-4033-8e97-0fdeb763439c", + "start": { + "$date": "2021-05-17T21:06:07.000Z" + }, + "end": { + "$date": "2021-05-17T21:07:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7b0119b-1a0e-4a09-813c-dcd4fdfa82a8", + "start": { + "$date": "2021-05-17T21:07:07.000Z" + }, + "end": { + "$date": "2021-05-17T21:09:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f126b2b4-90a2-419c-98cd-ee50f41b82c0", + "start": { + "$date": "2021-05-17T21:09:07.000Z" + }, + "end": { + "$date": "2021-05-17T21:59:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94d5b02c-359d-4bf8-b2c4-9c0631552d60", + "start": { + "$date": "2021-05-17T21:59:07.000Z" + }, + "end": { + "$date": "2021-05-17T22:02:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ad23419-5b9c-45f2-9000-6408e4ab91d5", + "start": { + "$date": "2021-05-17T22:02:07.000Z" + }, + "end": { + "$date": "2021-05-17T22:36:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed20684d-18ef-4cb0-9d05-e55d46a60046", + "start": { + "$date": "2021-05-17T22:36:07.000Z" + }, + "end": { + "$date": "2021-05-17T22:38:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a78412d-73c3-46f3-a404-cb747e4067c7", + "start": { + "$date": "2021-05-17T22:38:07.000Z" + }, + "end": { + "$date": "2021-05-17T23:31:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ad7f20fe-e3f9-486b-ba99-6ce27340cf62", + "start": { + "$date": "2021-05-17T23:31:07.000Z" + }, + "end": { + "$date": "2021-05-17T23:33:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6843f359-19f8-48e3-b596-37613fc95487", + "start": { + "$date": "2021-05-17T23:33:07.000Z" + }, + "end": { + "$date": "2021-05-18T00:23:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c1d2981b-0864-4279-9504-886fee5d09a7", + "start": { + "$date": "2021-05-18T00:23:07.000Z" + }, + "end": { + "$date": "2021-05-18T00:25:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "657106f8-d7ed-4ee7-9213-23c390d51819", + "start": { + "$date": "2021-05-18T00:25:07.000Z" + }, + "end": { + "$date": "2021-05-18T00:46:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7bba038-350d-431b-a3d2-9e9c3f18e35c", + "start": { + "$date": "2021-05-18T00:46:07.000Z" + }, + "end": { + "$date": "2021-05-18T00:48:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5a6d5fb-219d-472d-8286-e3a5e3cfb748", + "start": { + "$date": "2021-05-18T00:48:07.000Z" + }, + "end": { + "$date": "2021-05-18T00:56:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4080b383-06ae-4bf5-9b6a-ca92c3a7eec1", + "start": { + "$date": "2021-05-18T00:56:07.000Z" + }, + "end": { + "$date": "2021-05-18T01:28:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "833a3ff5-490b-45bd-b016-2955ce323109", + "start": { + "$date": "2021-05-18T01:28:07.000Z" + }, + "end": { + "$date": "2021-05-18T01:39:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b22ec732-652f-419d-a1b2-1f5f76c1d27d", + "start": { + "$date": "2021-05-18T01:39:07.000Z" + }, + "end": { + "$date": "2021-05-18T01:41:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d77232b-9f5f-4449-bc5d-c20bc222ab97", + "start": { + "$date": "2021-05-18T01:41:07.000Z" + }, + "end": { + "$date": "2021-05-18T01:44:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a73054c4-03c3-4c8c-9809-6cee868bb9f2", + "start": { + "$date": "2021-05-18T01:44:07.000Z" + }, + "end": { + "$date": "2021-05-18T01:49:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7045826a-c20f-4edb-b0e5-7b0bbd52e230", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T20:19:05.000Z" + }, + "end": { + "$date": "2021-05-17T20:48:56.000Z" + }, + "events": [ + { + "uuid": "11935ba0-7e48-4102-8fa0-90e0fdb4fea9", + "start": { + "$date": "2021-05-17T20:19:05.000Z" + }, + "end": { + "$date": "2021-05-17T20:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "942831f7-d5d3-4124-bd53-56b0caf5eeab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-17T20:23:09.000Z" + }, + "end": { + "$date": "2021-05-17T22:50:15.000Z" + }, + "events": [ + { + "uuid": "e7b8f425-037a-4f14-8a1d-7670cd638aa1", + "start": { + "$date": "2021-05-17T20:23:09.000Z" + }, + "end": { + "$date": "2021-05-17T22:10:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73eefdbf-1861-47f6-b45a-f9854b92ad67", + "start": { + "$date": "2021-05-17T22:10:09.000Z" + }, + "end": { + "$date": "2021-05-17T22:15:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14177e54-3e3d-45e2-a971-8095c81d8f2b", + "start": { + "$date": "2021-05-17T22:15:09.000Z" + }, + "end": { + "$date": "2021-05-17T22:50:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "809a4fc3-40f0-4d77-9b7b-052bd30e0937", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-17T20:42:54.000Z" + }, + "end": { + "$date": "2021-05-17T20:47:09.000Z" + }, + "events": [ + { + "uuid": "da79218f-ee59-4a02-a9ab-82bff870358d", + "start": { + "$date": "2021-05-17T20:42:54.000Z" + }, + "end": { + "$date": "2021-05-17T20:47:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "850f7dcb-3e0a-43f5-820e-2ee21f7a8e38", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-17T21:01:49.000Z" + }, + "end": { + "$date": "2021-05-17T22:53:24.000Z" + }, + "events": [ + { + "uuid": "e812f619-ed70-4173-b6f9-4664fa310606", + "start": { + "$date": "2021-05-17T21:01:49.000Z" + }, + "end": { + "$date": "2021-05-17T22:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "7ae95acc-ed9e-4288-bcf2-478177f63f18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T21:19:01.000Z" + }, + "end": { + "$date": "2021-05-17T21:21:00.000Z" + }, + "events": [ + { + "uuid": "b68219be-f080-49b9-a998-0180661334c7", + "start": { + "$date": "2021-05-17T21:19:01.000Z" + }, + "end": { + "$date": "2021-05-17T21:21:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "cbe65ab8-448e-4a21-be8f-2eee4233ab73", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T21:21:46.000Z" + }, + "end": { + "$date": "2021-05-17T21:38:56.000Z" + }, + "events": [ + { + "uuid": "3d6fae55-66be-4109-80d1-6a9bc349dfb3", + "start": { + "$date": "2021-05-17T21:21:46.000Z" + }, + "end": { + "$date": "2021-05-17T21:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "4e7c3db3-eb36-4e18-9231-b16f7060703f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T21:41:22.000Z" + }, + "end": { + "$date": "2021-05-17T22:00:12.000Z" + }, + "events": [ + { + "uuid": "2f091f32-7148-45f5-9c09-8de557f88639", + "start": { + "$date": "2021-05-17T21:41:22.000Z" + }, + "end": { + "$date": "2021-05-17T22:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8051753f-9dfd-4e76-b155-0350101bb6f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T22:03:33.000Z" + }, + "end": { + "$date": "2021-05-17T22:30:33.000Z" + }, + "events": [ + { + "uuid": "afc12227-2060-4b08-aeab-4b41f1cbd5f8", + "start": { + "$date": "2021-05-17T22:03:33.000Z" + }, + "end": { + "$date": "2021-05-17T22:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "3114f4d1-853e-428a-ac77-55b864b55254", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T22:35:08.000Z" + }, + "end": { + "$date": "2021-05-17T23:05:44.000Z" + }, + "events": [ + { + "uuid": "131e9229-6dfd-420e-a778-c220f488e804", + "start": { + "$date": "2021-05-17T22:35:08.000Z" + }, + "end": { + "$date": "2021-05-17T23:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22c840af-3710-49ac-9fa4-bbef5a7a96f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T22:44:26.000Z" + }, + "end": { + "$date": "2021-05-17T23:12:03.000Z" + }, + "events": [ + { + "uuid": "82009f8d-15c1-4634-b91b-3e7113d81e29", + "start": { + "$date": "2021-05-17T22:44:26.000Z" + }, + "end": { + "$date": "2021-05-17T23:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "9a01d679-d4de-4181-b9d8-a6da81598916", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-17T22:53:56.000Z" + }, + "end": { + "$date": "2021-05-18T00:51:42.000Z" + }, + "events": [ + { + "uuid": "ac00daa6-61be-4d2c-b807-7503b4970ac7", + "start": { + "$date": "2021-05-17T22:53:56.000Z" + }, + "end": { + "$date": "2021-05-18T00:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1905c974-1c94-4b99-97c4-32960a925c3e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-17T23:12:14.000Z" + }, + "end": { + "$date": "2021-05-17T23:59:31.000Z" + }, + "events": [ + { + "uuid": "52bbfb6f-fdaf-458f-974c-ba1dfd354865", + "start": { + "$date": "2021-05-17T23:12:14.000Z" + }, + "end": { + "$date": "2021-05-17T23:26:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5c41f00-fc81-4308-9e5a-3422818c9915", + "start": { + "$date": "2021-05-17T23:26:14.000Z" + }, + "end": { + "$date": "2021-05-17T23:58:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e8de237-9ca3-456e-8eaa-8bcfb7dc9d2e", + "start": { + "$date": "2021-05-17T23:58:14.000Z" + }, + "end": { + "$date": "2021-05-17T23:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4cfc5d6-3f37-44d1-a5c9-dad55ecf0c23", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-17T23:37:38.000Z" + }, + "end": { + "$date": "2021-05-18T00:02:49.000Z" + }, + "events": [ + { + "uuid": "094e495c-38ed-4cfe-88ec-4da7c2f85341", + "start": { + "$date": "2021-05-17T23:37:38.000Z" + }, + "end": { + "$date": "2021-05-18T00:02:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0fba3e01-fc00-4beb-adc8-e124218569f9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-17T23:34:03.000Z" + }, + "end": { + "$date": "2021-05-17T23:39:09.000Z" + }, + "events": [ + { + "uuid": "7a2f1fc9-943d-4e7d-b622-ba3a85e44f94", + "start": { + "$date": "2021-05-17T23:34:03.000Z" + }, + "end": { + "$date": "2021-05-17T23:39:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f318c985-3d6c-4c2e-9c80-5bf90803b555", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-17T23:46:04.000Z" + }, + "end": { + "$date": "2021-05-18T00:16:15.000Z" + }, + "events": [ + { + "uuid": "25d6246c-fbcd-4bd8-80a7-a0c7410d16b4", + "start": { + "$date": "2021-05-17T23:46:04.000Z" + }, + "end": { + "$date": "2021-05-18T00:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "96b3c9aa-38a8-433e-8637-d7f4355f279a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T00:00:12.000Z" + }, + "end": { + "$date": "2021-05-18T01:29:58.000Z" + }, + "events": [ + { + "uuid": "c0d11e6a-5c1e-404c-a080-76d1b92429ec", + "start": { + "$date": "2021-05-18T00:00:12.000Z" + }, + "end": { + "$date": "2021-05-18T01:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0417d7f-7fa9-41b1-9f74-953db3d91f9a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-18T01:12:42.000Z" + }, + "end": { + "$date": "2021-05-18T01:37:38.000Z" + }, + "events": [ + { + "uuid": "1c8e322e-cd45-44f8-b777-038d2e5122db", + "start": { + "$date": "2021-05-18T01:12:42.000Z" + }, + "end": { + "$date": "2021-05-18T01:29:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "59d4e021-af63-4d64-bb9c-11729713e701", + "start": { + "$date": "2021-05-18T01:29:42.000Z" + }, + "end": { + "$date": "2021-05-18T01:37:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "24fd6506-1a4f-45c1-ad02-9f4d49d6a78f", + "start": { + "$date": "2021-05-18T01:37:42.000Z" + }, + "end": { + "$date": "2021-05-18T01:37:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "26e99ea9-52aa-413e-b7c0-9e2affc59519", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-18T00:16:03.000Z" + }, + "end": { + "$date": "2021-05-18T03:52:17.000Z" + }, + "events": [ + { + "uuid": "38ae59db-d582-40da-b470-e0d0476fa208", + "start": { + "$date": "2021-05-18T00:16:03.000Z" + }, + "end": { + "$date": "2021-05-18T03:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "2b80f935-23a9-4cda-af5f-f32170da5d03", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-18T00:19:35.000Z" + }, + "end": { + "$date": "2021-05-18T01:34:21.000Z" + }, + "events": [ + { + "uuid": "1c94a554-566b-42c3-a5c8-a0fa56ba4215", + "start": { + "$date": "2021-05-18T00:19:35.000Z" + }, + "end": { + "$date": "2021-05-18T01:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1e522a92-76b8-4673-a10e-cd5bbc47882f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-18T00:54:35.000Z" + }, + "end": { + "$date": "2021-05-18T01:06:51.000Z" + }, + "events": [ + { + "uuid": "e4c7072e-2586-493c-aaa0-b7a94e4486a4", + "start": { + "$date": "2021-05-18T00:54:35.000Z" + }, + "end": { + "$date": "2021-05-18T01:06:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f8f15685-bbf7-4ab7-a808-217ce95466b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-18T01:02:16.000Z" + }, + "end": { + "$date": "2021-05-18T01:27:07.000Z" + }, + "events": [ + { + "uuid": "f8d0f65d-f6ff-42dc-8e12-fcc0ff06a6de", + "start": { + "$date": "2021-05-18T01:02:16.000Z" + }, + "end": { + "$date": "2021-05-18T01:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df1719bf-5846-4466-8e31-06300fa14eea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-18T01:12:46.000Z" + }, + "end": { + "$date": "2021-05-18T01:37:46.000Z" + }, + "events": [ + { + "uuid": "2651d509-94ec-4c5f-b7e9-bd4edc3ba394", + "start": { + "$date": "2021-05-18T01:12:46.000Z" + }, + "end": { + "$date": "2021-05-18T01:37:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d3dee037-4ec6-4368-a9db-0d99337a84f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-18T01:28:47.000Z" + }, + "end": { + "$date": "2021-05-18T01:39:12.000Z" + }, + "events": [ + { + "uuid": "e0971ee7-8082-4997-9d0a-31948a59d667", + "start": { + "$date": "2021-05-18T01:28:47.000Z" + }, + "end": { + "$date": "2021-05-18T01:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "af21d4d7-363d-4126-8d4f-05e9613e1604", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-18T01:32:19.000Z" + }, + "end": { + "$date": "2021-05-18T01:40:09.000Z" + }, + "events": [ + { + "uuid": "647905ff-288b-486e-9d30-02be4dd33f62", + "start": { + "$date": "2021-05-18T01:32:19.000Z" + }, + "end": { + "$date": "2021-05-18T01:40:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a4b9a471-8152-4799-b9db-24900f0784d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T01:35:49.000Z" + }, + "end": { + "$date": "2021-05-18T03:53:19.000Z" + }, + "events": [ + { + "uuid": "5ac49237-5549-4c39-9113-bca22cd9a0b9", + "start": { + "$date": "2021-05-18T01:35:49.000Z" + }, + "end": { + "$date": "2021-05-18T03:53:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8f958bdd-ac6d-40e0-9431-6018829576ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-18T01:39:32.000Z" + }, + "end": { + "$date": "2021-05-18T03:53:47.000Z" + }, + "events": [ + { + "uuid": "1721a18f-72e3-4913-958c-a1d152637e4e", + "start": { + "$date": "2021-05-18T01:39:32.000Z" + }, + "end": { + "$date": "2021-05-18T03:53:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "12819625-2722-437e-a865-e337366d6129", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-18T01:39:47.000Z" + }, + "end": { + "$date": "2021-05-18T02:41:26.000Z" + }, + "events": [ + { + "uuid": "2ce5f6b5-a1de-4780-8091-f8b3aec9efcc", + "start": { + "$date": "2021-05-18T01:39:47.000Z" + }, + "end": { + "$date": "2021-05-18T02:29:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0dab615-7783-466b-a500-c13a1e94d4d0", + "start": { + "$date": "2021-05-18T02:29:47.000Z" + }, + "end": { + "$date": "2021-05-18T02:39:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bda3f953-98bf-4ab2-98a4-bd9dea997251", + "start": { + "$date": "2021-05-18T02:39:47.000Z" + }, + "end": { + "$date": "2021-05-18T02:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "035d4f5f-3443-4868-a717-0ef6103a76a9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-18T01:39:48.000Z" + }, + "end": { + "$date": "2021-05-18T03:53:16.000Z" + }, + "events": [ + { + "uuid": "8d1bddd1-7d00-4448-a6cb-619625b9905a", + "start": { + "$date": "2021-05-18T01:39:48.000Z" + }, + "end": { + "$date": "2021-05-18T03:53:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dd6bdbf4-33f7-49b2-8810-d21deeca5d8a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-18T01:40:14.000Z" + }, + "end": { + "$date": "2021-05-18T02:20:30.000Z" + }, + "events": [ + { + "uuid": "ca70d568-70d1-4ee1-b133-a212425b9988", + "start": { + "$date": "2021-05-18T01:40:14.000Z" + }, + "end": { + "$date": "2021-05-18T02:20:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26d34977-fd54-453c-83ec-832dd6a99bf3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-18T01:49:26.000Z" + }, + "end": { + "$date": "2021-05-18T01:51:23.000Z" + }, + "events": [ + { + "uuid": "3b3fdf1a-e274-458e-bf07-0f2df2ec85d6", + "start": { + "$date": "2021-05-18T01:49:26.000Z" + }, + "end": { + "$date": "2021-05-18T01:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c95e1c21-fad3-42b5-a1f1-024cc35ecdd8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-18T01:49:57.000Z" + }, + "end": { + "$date": "2021-05-18T09:28:47.000Z" + }, + "events": [ + { + "uuid": "04d72011-5cb5-4452-bb7a-084475ce9a57", + "start": { + "$date": "2021-05-18T01:49:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:04:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6547a25-48a2-474e-8ffc-2524cf72f5b9", + "start": { + "$date": "2021-05-18T04:04:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:06:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3dbb2cec-1348-45ea-8b40-b89159229a9f", + "start": { + "$date": "2021-05-18T04:06:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:08:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6b2b91e4-abc8-4fdb-bdb1-7e02822ff0bd", + "start": { + "$date": "2021-05-18T04:08:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:19:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e9153f2-7f60-44c1-86a5-67974c3819eb", + "start": { + "$date": "2021-05-18T04:19:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:21:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4bede89-067b-487e-8948-cc8d6365764f", + "start": { + "$date": "2021-05-18T04:21:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:25:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "02ec96da-9ea4-4b02-ab6e-781c485b0029", + "start": { + "$date": "2021-05-18T04:25:57.000Z" + }, + "end": { + "$date": "2021-05-18T04:27:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35dc5b91-784e-4375-8537-0bdab070324f", + "start": { + "$date": "2021-05-18T04:27:57.000Z" + }, + "end": { + "$date": "2021-05-18T05:21:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8b38f07f-b974-4ea6-a7f1-d3a837958e8e", + "start": { + "$date": "2021-05-18T05:21:57.000Z" + }, + "end": { + "$date": "2021-05-18T05:23:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25d05fc7-c477-41de-b190-4f0fb394638b", + "start": { + "$date": "2021-05-18T05:23:57.000Z" + }, + "end": { + "$date": "2021-05-18T05:53:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b020dc77-5562-4961-81fd-0863417b3ba8", + "start": { + "$date": "2021-05-18T05:53:57.000Z" + }, + "end": { + "$date": "2021-05-18T05:56:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51e7efc1-6888-471b-8f1a-8bdf948a7ec5", + "start": { + "$date": "2021-05-18T05:56:57.000Z" + }, + "end": { + "$date": "2021-05-18T05:58:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d264ea4-3109-4eab-8d38-200e3cde7b38", + "start": { + "$date": "2021-05-18T05:58:57.000Z" + }, + "end": { + "$date": "2021-05-18T06:02:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60b5a871-4c41-4127-a86d-a940d659ef39", + "start": { + "$date": "2021-05-18T06:02:57.000Z" + }, + "end": { + "$date": "2021-05-18T06:29:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8850fb6-f690-40d2-b7b9-8b9f9cef7756", + "start": { + "$date": "2021-05-18T06:29:57.000Z" + }, + "end": { + "$date": "2021-05-18T06:32:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df3abbf2-1566-454c-82e4-67374bf5e6e0", + "start": { + "$date": "2021-05-18T06:32:57.000Z" + }, + "end": { + "$date": "2021-05-18T09:16:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "01a03626-fd5c-47a2-a3c1-e8cde5ea5f15", + "start": { + "$date": "2021-05-18T09:16:57.000Z" + }, + "end": { + "$date": "2021-05-18T09:19:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77e679cf-a572-4233-a927-6df45687637c", + "start": { + "$date": "2021-05-18T09:19:57.000Z" + }, + "end": { + "$date": "2021-05-18T09:26:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5a57c94-f112-471e-8447-5c2923d385f3", + "start": { + "$date": "2021-05-18T09:26:57.000Z" + }, + "end": { + "$date": "2021-05-18T09:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "4c3cd37c-0424-4d06-97e9-9d703dc2d4e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-18T01:55:25.000Z" + }, + "end": { + "$date": "2021-05-18T02:39:52.000Z" + }, + "events": [ + { + "uuid": "67eaac16-98b1-4ba8-a488-be83d9a710b4", + "start": { + "$date": "2021-05-18T01:55:25.000Z" + }, + "end": { + "$date": "2021-05-18T02:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e53bdd5d-a450-4725-88da-fac84262c627", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-18T02:20:40.000Z" + }, + "end": { + "$date": "2021-05-18T02:35:10.000Z" + }, + "events": [ + { + "uuid": "25062230-7530-4d6e-9e3b-527b02bc88d2", + "start": { + "$date": "2021-05-18T02:20:40.000Z" + }, + "end": { + "$date": "2021-05-18T02:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bb481080-26f9-4a15-a513-3b3ad6dcaa0c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-18T02:35:20.000Z" + }, + "end": { + "$date": "2021-05-18T03:58:12.000Z" + }, + "events": [ + { + "uuid": "c1b3c0ae-3c70-493e-8583-00208b512d63", + "start": { + "$date": "2021-05-18T02:35:20.000Z" + }, + "end": { + "$date": "2021-05-18T03:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dbdd79d0-ca02-476f-a443-49e848a63749", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-18T02:41:56.000Z" + }, + "end": { + "$date": "2021-05-18T03:40:30.000Z" + }, + "events": [ + { + "uuid": "8364bbd7-0cf0-459d-ab01-3192baebddda", + "start": { + "$date": "2021-05-18T02:41:56.000Z" + }, + "end": { + "$date": "2021-05-18T03:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4b89d106-b886-44c8-b2f5-e18f0bac090c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-18T02:46:13.000Z" + }, + "end": { + "$date": "2021-05-18T02:51:18.000Z" + }, + "events": [ + { + "uuid": "6980fd84-7d9c-4057-942e-8b24955b52e0", + "start": { + "$date": "2021-05-18T02:46:13.000Z" + }, + "end": { + "$date": "2021-05-18T02:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4551894a-36f9-4f8d-b15f-5c8e2ff514d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-18T03:52:37.000Z" + }, + "end": { + "$date": "2021-05-18T06:13:36.000Z" + }, + "events": [ + { + "uuid": "19d0d93b-1499-4073-977d-722aff2eedcf", + "start": { + "$date": "2021-05-18T03:52:37.000Z" + }, + "end": { + "$date": "2021-05-18T06:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a917cf89-9d40-48e6-9333-6e971b91401a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-18T04:07:09.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:39.000Z" + }, + "events": [ + { + "uuid": "981fff7d-bc50-4407-b993-c3b951dd9ba6", + "start": { + "$date": "2021-05-18T04:07:09.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63468a4e-88e3-483d-a7d1-93675795057e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T04:07:26.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:40.000Z" + }, + "events": [ + { + "uuid": "201853d6-dd39-422c-b687-a206bff80e14", + "start": { + "$date": "2021-05-18T04:07:26.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26322e82-81f3-4a48-be00-b4d92433c985", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-18T04:07:08.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:39.000Z" + }, + "events": [ + { + "uuid": "7409afb0-f7e1-42ee-bc46-64c61ebf5053", + "start": { + "$date": "2021-05-18T04:07:08.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "392aada8-a0ef-4420-9406-9029ef34a1af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-18T04:07:04.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:45.000Z" + }, + "events": [ + { + "uuid": "2b5294d1-05ff-4691-abd0-7ae687cb080c", + "start": { + "$date": "2021-05-18T04:07:04.000Z" + }, + "end": { + "$date": "2021-05-18T04:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d34f3e07-7dfc-4cb6-b868-81223d93e0ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-18T04:26:40.000Z" + }, + "end": { + "$date": "2021-05-18T04:59:56.000Z" + }, + "events": [ + { + "uuid": "1c6837b2-369a-426b-a7a0-35765490498c", + "start": { + "$date": "2021-05-18T04:26:40.000Z" + }, + "end": { + "$date": "2021-05-18T04:59:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a56b135d-9a07-462e-8a45-7218f8dedc94", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-18T04:26:39.000Z" + }, + "end": { + "$date": "2021-05-18T04:59:51.000Z" + }, + "events": [ + { + "uuid": "0c25a72e-1521-4f5e-916f-5bee8166c967", + "start": { + "$date": "2021-05-18T04:26:39.000Z" + }, + "end": { + "$date": "2021-05-18T04:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1738357a-75ab-4a2d-a643-d65f0ae7b1b1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-18T04:26:45.000Z" + }, + "end": { + "$date": "2021-05-18T04:59:46.000Z" + }, + "events": [ + { + "uuid": "62a4dbaa-8c14-4c44-aef4-2128f98a7269", + "start": { + "$date": "2021-05-18T04:26:45.000Z" + }, + "end": { + "$date": "2021-05-18T04:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "55def058-c918-4be6-aaf3-5abb8c71e3a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T04:24:51.000Z" + }, + "end": { + "$date": "2021-05-18T17:15:07.000Z" + }, + "events": [ + { + "uuid": "e2c09a66-26ba-4aa2-b081-8d7ce462bdc2", + "start": { + "$date": "2021-05-18T04:24:51.000Z" + }, + "end": { + "$date": "2021-05-18T04:37:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d226395-3ad7-4079-b942-b440efebd43e", + "start": { + "$date": "2021-05-18T04:37:51.000Z" + }, + "end": { + "$date": "2021-05-18T05:14:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8912182-e0e3-4be6-a54a-e16f02ba9b18", + "start": { + "$date": "2021-05-18T05:14:51.000Z" + }, + "end": { + "$date": "2021-05-18T05:16:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "213ff77b-c5af-472f-a628-07b5f3f3738e", + "start": { + "$date": "2021-05-18T05:16:51.000Z" + }, + "end": { + "$date": "2021-05-18T15:37:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce02f397-08fd-423c-84d2-526cb6e3fea1", + "start": { + "$date": "2021-05-18T15:37:51.000Z" + }, + "end": { + "$date": "2021-05-18T15:40:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46a2959b-0871-423d-b34a-9580489cf14b", + "start": { + "$date": "2021-05-18T15:40:51.000Z" + }, + "end": { + "$date": "2021-05-18T15:49:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a33a3a78-087c-4715-abfd-b62ba12ffb08", + "start": { + "$date": "2021-05-18T15:49:51.000Z" + }, + "end": { + "$date": "2021-05-18T17:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "3fb48ad6-2153-4792-a38a-1d2fa938dbd3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-18T04:26:15.000Z" + }, + "end": { + "$date": "2021-05-18T05:40:30.000Z" + }, + "events": [ + { + "uuid": "1f57596f-2032-4515-9ad8-f31eb11319b7", + "start": { + "$date": "2021-05-18T04:26:15.000Z" + }, + "end": { + "$date": "2021-05-18T05:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d3517b4-420f-45ed-8b95-192ecb460bcc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-18T05:05:56.000Z" + }, + "end": { + "$date": "2021-05-18T05:39:17.000Z" + }, + "events": [ + { + "uuid": "5f0b4d11-55ce-4b65-b7b8-b73d701dd7ff", + "start": { + "$date": "2021-05-18T05:05:56.000Z" + }, + "end": { + "$date": "2021-05-18T05:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0563a9b8-0d38-4cf3-a45a-9a6e41f8ce5f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-18T14:39:44.000Z" + }, + "end": { + "$date": "2021-05-18T15:45:28.000Z" + }, + "events": [ + { + "uuid": "372abdf6-7896-4f88-b758-345fec77bfed", + "start": { + "$date": "2021-05-18T14:39:44.000Z" + }, + "end": { + "$date": "2021-05-18T15:03:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "38c9a449-234f-4b7f-a165-1fbf9fd5ec08", + "start": { + "$date": "2021-05-18T15:03:44.000Z" + }, + "end": { + "$date": "2021-05-18T15:19:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8bec8b7b-4cb2-4801-a6fe-020683409a46", + "start": { + "$date": "2021-05-18T15:19:44.000Z" + }, + "end": { + "$date": "2021-05-18T15:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "740ea8e2-f320-4fc2-b829-63ad4e61a0b7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-18T15:45:43.000Z" + }, + "end": { + "$date": "2021-05-18T16:48:35.000Z" + }, + "events": [ + { + "uuid": "b19df70d-4c63-4039-9205-0273e3e784ae", + "start": { + "$date": "2021-05-18T15:45:43.000Z" + }, + "end": { + "$date": "2021-05-18T16:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "548444f8-9101-4659-a6ed-4518cd222346", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-18T16:47:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:15:26.000Z" + }, + "events": [ + { + "uuid": "72bb877b-9f12-426a-bb77-25d6f9c719bb", + "start": { + "$date": "2021-05-18T16:47:50.000Z" + }, + "end": { + "$date": "2021-05-18T16:53:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b2b2045-494a-40be-bd20-0d867b4f7f4a", + "start": { + "$date": "2021-05-18T16:53:50.000Z" + }, + "end": { + "$date": "2021-05-18T17:44:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "994462ad-61c3-419d-8044-dae90921b7c0", + "start": { + "$date": "2021-05-18T17:44:50.000Z" + }, + "end": { + "$date": "2021-05-18T17:48:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "53e071e8-dedc-43cd-b8e1-ca7ded7c4705", + "start": { + "$date": "2021-05-18T17:48:50.000Z" + }, + "end": { + "$date": "2021-05-18T17:56:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "869ef43c-d778-43cb-a2fc-f945ce6b7e84", + "start": { + "$date": "2021-05-18T17:56:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:00:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b70c1c06-570d-4f56-95ac-2dc41550382f", + "start": { + "$date": "2021-05-18T18:00:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:02:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "444e319e-2854-42fa-9d8c-80db5a1f4c6c", + "start": { + "$date": "2021-05-18T18:02:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:04:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2def88e7-1738-4fc9-9911-e86ab040bd1e", + "start": { + "$date": "2021-05-18T18:04:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:16:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9122d2ce-4f80-45fc-b66b-354a9537365a", + "start": { + "$date": "2021-05-18T18:16:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:18:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "91a8d233-414f-4571-b689-ed3fb335e348", + "start": { + "$date": "2021-05-18T18:18:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:32:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ccdf491f-8b59-4346-8011-952bf6f9057a", + "start": { + "$date": "2021-05-18T18:32:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:34:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58c45718-fe69-4fed-9ce5-49ca801231c7", + "start": { + "$date": "2021-05-18T18:34:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:46:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "605cf4cb-dc8e-4684-bf3d-f856d2d39e86", + "start": { + "$date": "2021-05-18T18:46:50.000Z" + }, + "end": { + "$date": "2021-05-18T18:49:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3db52c3b-5875-48d9-be43-c639a97c9c28", + "start": { + "$date": "2021-05-18T18:49:50.000Z" + }, + "end": { + "$date": "2021-05-18T19:23:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f415171c-4bfe-410b-b141-ca4491902f8f", + "start": { + "$date": "2021-05-18T19:23:50.000Z" + }, + "end": { + "$date": "2021-05-18T19:25:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8bdbec0f-5509-4f39-bd5e-3ee70525b9ab", + "start": { + "$date": "2021-05-18T19:25:50.000Z" + }, + "end": { + "$date": "2021-05-18T19:30:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6fa0325-3117-4b17-9d12-10c43c444b01", + "start": { + "$date": "2021-05-18T19:30:50.000Z" + }, + "end": { + "$date": "2021-05-18T19:32:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc04e75b-14be-4fd2-a749-2b7a06ceb8a9", + "start": { + "$date": "2021-05-18T19:32:50.000Z" + }, + "end": { + "$date": "2021-05-18T19:47:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc702a3a-f79b-4abc-8156-a24e46d5316c", + "start": { + "$date": "2021-05-18T19:47:50.000Z" + }, + "end": { + "$date": "2021-05-18T19:49:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b5ed020-6fef-4986-9c1c-27a18662c1ee", + "start": { + "$date": "2021-05-18T19:49:50.000Z" + }, + "end": { + "$date": "2021-05-18T20:39:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d357c662-c506-4aca-8ef2-11947962f555", + "start": { + "$date": "2021-05-18T20:39:50.000Z" + }, + "end": { + "$date": "2021-05-18T20:41:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1c06a11-6940-4147-a70f-2bcb3da1c957", + "start": { + "$date": "2021-05-18T20:41:50.000Z" + }, + "end": { + "$date": "2021-05-18T20:44:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cf4ef482-f4db-43bf-8248-8368184b5144", + "start": { + "$date": "2021-05-18T20:44:50.000Z" + }, + "end": { + "$date": "2021-05-18T20:46:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d71d33f1-d952-4a43-a692-e81ccd5bf4f5", + "start": { + "$date": "2021-05-18T20:46:50.000Z" + }, + "end": { + "$date": "2021-05-18T21:11:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "66aa0478-8b76-45cc-a706-29529b45f90e", + "start": { + "$date": "2021-05-18T21:11:50.000Z" + }, + "end": { + "$date": "2021-05-18T21:15:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "726259c4-6157-4ff4-aec9-f3a42fcbd999", + "start": { + "$date": "2021-05-18T21:15:50.000Z" + }, + "end": { + "$date": "2021-05-18T22:38:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a808b754-03b7-45b7-a524-834ecc5dc699", + "start": { + "$date": "2021-05-18T22:38:50.000Z" + }, + "end": { + "$date": "2021-05-18T22:41:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72d44b55-daa9-40dd-a924-7e1b04928d82", + "start": { + "$date": "2021-05-18T22:41:50.000Z" + }, + "end": { + "$date": "2021-05-18T22:52:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d92d9dd1-e064-4cf1-9cfb-de805d8e1f53", + "start": { + "$date": "2021-05-18T22:52:50.000Z" + }, + "end": { + "$date": "2021-05-18T22:57:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89463e6c-1995-4df7-8f74-df21d27501db", + "start": { + "$date": "2021-05-18T22:57:50.000Z" + }, + "end": { + "$date": "2021-05-18T22:58:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb7a7393-af55-4ed6-ada1-5446f5514861", + "start": { + "$date": "2021-05-18T22:58:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:00:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4e76dd7-299b-4488-bd6a-582fc7b8885b", + "start": { + "$date": "2021-05-18T23:00:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:08:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4902e28f-35da-493e-b2c3-31b8c5771109", + "start": { + "$date": "2021-05-18T23:08:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:10:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2b492a43-82ef-45e3-96a5-bd0474bdfe29", + "start": { + "$date": "2021-05-18T23:10:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:24:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e833d7ef-ea40-4814-bfca-8c47fb13b2d1", + "start": { + "$date": "2021-05-18T23:24:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:26:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c81d81ce-0d5b-4bba-bd07-f1487a44776b", + "start": { + "$date": "2021-05-18T23:26:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:48:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b568462f-2a9e-4c8e-8403-64af193005de", + "start": { + "$date": "2021-05-18T23:48:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:50:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1221ddb-cb80-4e43-b9bb-a58dfabccf7b", + "start": { + "$date": "2021-05-18T23:50:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:51:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9d9405f-3fb0-4948-b4e2-5269b3047366", + "start": { + "$date": "2021-05-18T23:51:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:53:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "15469d3c-b91a-48d9-86a3-43df6212768e", + "start": { + "$date": "2021-05-18T23:53:50.000Z" + }, + "end": { + "$date": "2021-05-18T23:59:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "60c02236-021c-4a20-ae95-b831bf313a9d", + "start": { + "$date": "2021-05-18T23:59:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:03:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c938ee12-22a2-4199-8851-71e56f7d5ba2", + "start": { + "$date": "2021-05-19T00:03:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:07:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7590bbb2-575c-4e24-bab8-c4f1bfe2c185", + "start": { + "$date": "2021-05-19T00:07:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:10:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6077f92-3a85-4e18-9745-ac3c6e7d57d6", + "start": { + "$date": "2021-05-19T00:10:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:11:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d3119f95-9e29-4c1f-9948-66b38b441edc", + "start": { + "$date": "2021-05-19T00:11:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:13:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bfd01b62-cad8-4788-a26a-1fba81b9d32a", + "start": { + "$date": "2021-05-19T00:13:50.000Z" + }, + "end": { + "$date": "2021-05-19T00:15:26.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "338589a8-990c-4222-b212-4b8b1708e584", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T17:48:08.000Z" + }, + "end": { + "$date": "2021-05-18T18:30:45.000Z" + }, + "events": [ + { + "uuid": "051de4fb-d579-40c2-88c6-2d011b324982", + "start": { + "$date": "2021-05-18T17:48:08.000Z" + }, + "end": { + "$date": "2021-05-18T18:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ada85362-36cd-40e1-8d9e-fb8bc316ded7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-18T18:33:23.000Z" + }, + "end": { + "$date": "2021-05-18T19:20:35.000Z" + }, + "events": [ + { + "uuid": "a6b90e50-c097-4ea9-81f2-352d37cb94fc", + "start": { + "$date": "2021-05-18T18:33:23.000Z" + }, + "end": { + "$date": "2021-05-18T19:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0ca3f658-903f-408d-816b-d5b0bdb96a84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T18:39:32.000Z" + }, + "end": { + "$date": "2021-05-18T18:55:02.000Z" + }, + "events": [ + { + "uuid": "59f5ff4d-ba0c-4a1c-8b6c-fd9ee21cf4c3", + "start": { + "$date": "2021-05-18T18:39:32.000Z" + }, + "end": { + "$date": "2021-05-18T18:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "84ee31aa-869d-4ab4-8b67-47e04677938b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T20:04:45.000Z" + }, + "end": { + "$date": "2021-05-18T20:56:01.000Z" + }, + "events": [ + { + "uuid": "0c6f52c2-1fb4-430c-a4b9-2a82267c9ccd", + "start": { + "$date": "2021-05-18T20:04:45.000Z" + }, + "end": { + "$date": "2021-05-18T20:56:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "96bdadde-928e-4f5b-a382-3c7945e15f60", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-18T21:08:15.000Z" + }, + "end": { + "$date": "2021-05-18T21:08:16.000Z" + }, + "events": [ + { + "uuid": "3fa9cd17-19b8-4c59-961a-49aee76393c6", + "start": { + "$date": "2021-05-18T21:08:15.000Z" + }, + "end": { + "$date": "2021-05-18T21:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "1ab4b33f-41be-4224-9c47-8520c3b0cf3c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-18T22:45:09.000Z" + }, + "end": { + "$date": "2021-05-19T03:52:05.000Z" + }, + "events": [ + { + "uuid": "f1061d90-b32d-443e-87df-7890a93f49ed", + "start": { + "$date": "2021-05-18T22:45:09.000Z" + }, + "end": { + "$date": "2021-05-19T01:21:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f69c6ce6-76a8-415c-b522-abc8857211e0", + "start": { + "$date": "2021-05-19T01:21:09.000Z" + }, + "end": { + "$date": "2021-05-19T03:52:05.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "50e3e7e5-fd59-4673-ad1d-6e067bf00d87", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T21:44:48.000Z" + }, + "end": { + "$date": "2021-05-18T22:25:25.000Z" + }, + "events": [ + { + "uuid": "7c6539a4-52bb-4c7d-ac27-e6753b5d9976", + "start": { + "$date": "2021-05-18T21:44:48.000Z" + }, + "end": { + "$date": "2021-05-18T22:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "4e4ccab8-b5b6-4b03-b827-3183acc39781", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-18T21:58:03.000Z" + }, + "end": { + "$date": "2021-05-18T23:26:40.000Z" + }, + "events": [ + { + "uuid": "7515f676-cd26-470c-95fc-8e612308e868", + "start": { + "$date": "2021-05-18T21:58:03.000Z" + }, + "end": { + "$date": "2021-05-18T23:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "df0a45f8-ab34-48de-a870-784c486966a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-18T23:03:08.000Z" + }, + "end": { + "$date": "2021-05-19T00:06:05.000Z" + }, + "events": [ + { + "uuid": "013ecf77-db36-424e-9a1a-e1d27417b515", + "start": { + "$date": "2021-05-18T23:03:08.000Z" + }, + "end": { + "$date": "2021-05-19T00:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3665eb1e-bdcb-48f6-928c-f10a220df923", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-18T23:27:06.000Z" + }, + "end": { + "$date": "2021-05-19T00:06:23.000Z" + }, + "events": [ + { + "uuid": "caef4f44-22ae-4ae2-bc28-efae742fd1fe", + "start": { + "$date": "2021-05-18T23:27:06.000Z" + }, + "end": { + "$date": "2021-05-19T00:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "08b66ceb-b0cb-4ec7-97b7-84ec6476fd00", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-18T23:28:00.000Z" + }, + "end": { + "$date": "2021-05-19T07:01:17.000Z" + }, + "events": [ + { + "uuid": "1cde5085-8e16-4cbe-b634-0b2bb45c1ed1", + "start": { + "$date": "2021-05-18T23:28:00.000Z" + }, + "end": { + "$date": "2021-05-19T00:21:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fce99cf2-b275-41a9-8a0d-5635de52b7ef", + "start": { + "$date": "2021-05-19T00:21:00.000Z" + }, + "end": { + "$date": "2021-05-19T00:26:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b5624f10-a068-440d-ae59-525581d27d9e", + "start": { + "$date": "2021-05-19T00:26:00.000Z" + }, + "end": { + "$date": "2021-05-19T00:39:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58665383-ccf6-4257-ba88-8e1abe4bd974", + "start": { + "$date": "2021-05-19T00:39:00.000Z" + }, + "end": { + "$date": "2021-05-19T00:51:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de8aedbe-fb69-4a05-9ba1-21469274d046", + "start": { + "$date": "2021-05-19T00:51:00.000Z" + }, + "end": { + "$date": "2021-05-19T02:00:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0fd4171a-96c6-4c35-88b2-5c7bb5d0f75f", + "start": { + "$date": "2021-05-19T02:00:00.000Z" + }, + "end": { + "$date": "2021-05-19T02:04:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8ea0035-2583-488d-9f5c-4219728ffd55", + "start": { + "$date": "2021-05-19T02:04:00.000Z" + }, + "end": { + "$date": "2021-05-19T07:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "08faf276-cafd-4360-aa5e-8c749f8ad62a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-18T23:38:20.000Z" + }, + "end": { + "$date": "2021-05-19T00:06:12.000Z" + }, + "events": [ + { + "uuid": "273bb5a0-90bf-4a70-ac09-be47bb6f21f9", + "start": { + "$date": "2021-05-18T23:38:20.000Z" + }, + "end": { + "$date": "2021-05-19T00:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "a81e9ad9-4a2d-49e9-8731-4968e138cf78", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-19T00:06:34.000Z" + }, + "end": { + "$date": "2021-05-19T00:49:23.000Z" + }, + "events": [ + { + "uuid": "1e2c70ca-92de-4c51-8939-f706c8b51ee5", + "start": { + "$date": "2021-05-19T00:06:34.000Z" + }, + "end": { + "$date": "2021-05-19T00:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28b3b43e-2556-48e7-8f08-f8a9bc813c44", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-19T00:44:15.000Z" + }, + "end": { + "$date": "2021-05-19T00:47:42.000Z" + }, + "events": [ + { + "uuid": "4544a14f-d619-4f7e-bbff-bc31cf67c1e6", + "start": { + "$date": "2021-05-19T00:44:15.000Z" + }, + "end": { + "$date": "2021-05-19T00:47:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b570b58c-d701-4626-b94a-b3342bb1978c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T00:51:24.000Z" + }, + "end": { + "$date": "2021-05-19T02:01:09.000Z" + }, + "events": [ + { + "uuid": "fa41e8d2-7ae0-4fda-a3ea-083f57ce17ec", + "start": { + "$date": "2021-05-19T00:51:24.000Z" + }, + "end": { + "$date": "2021-05-19T02:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ed2db7f3-40ec-4869-ad59-f3dcdc6bb78d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-19T00:51:24.000Z" + }, + "end": { + "$date": "2021-05-19T01:36:52.000Z" + }, + "events": [ + { + "uuid": "aa0f6a25-a3d7-417a-b041-7a1f1b373a5d", + "start": { + "$date": "2021-05-19T00:51:24.000Z" + }, + "end": { + "$date": "2021-05-19T01:36:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40e39592-3752-4a24-b885-b82923603214", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-19T01:35:17.000Z" + }, + "end": { + "$date": "2021-05-19T02:06:54.000Z" + }, + "events": [ + { + "uuid": "09be1fba-7a46-4b80-a4a2-8703f314f206", + "start": { + "$date": "2021-05-19T01:35:17.000Z" + }, + "end": { + "$date": "2021-05-19T02:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "364621a0-1980-48f0-9aab-d33912bad2d7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T02:05:01.000Z" + }, + "end": { + "$date": "2021-05-19T02:49:43.000Z" + }, + "events": [ + { + "uuid": "419fda24-0f41-4996-8617-052fcd437f44", + "start": { + "$date": "2021-05-19T02:05:01.000Z" + }, + "end": { + "$date": "2021-05-19T02:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9a13c661-6bb1-47a6-bfcc-eae6f61509bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-19T02:08:02.000Z" + }, + "end": { + "$date": "2021-05-19T02:57:44.000Z" + }, + "events": [ + { + "uuid": "47c21d4c-12fc-4463-9485-2c4b643d8d31", + "start": { + "$date": "2021-05-19T02:08:02.000Z" + }, + "end": { + "$date": "2021-05-19T02:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e5b35ae-6054-47c6-b487-750d98975343", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-19T02:35:17.000Z" + }, + "end": { + "$date": "2021-05-19T03:37:04.000Z" + }, + "events": [ + { + "uuid": "e1ae5709-f367-4ab9-bd57-fce775cf32e7", + "start": { + "$date": "2021-05-19T02:35:17.000Z" + }, + "end": { + "$date": "2021-05-19T03:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "066c440c-5f07-4469-8cae-4efffed1fd0d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-19T02:36:13.000Z" + }, + "end": { + "$date": "2021-05-19T02:37:23.000Z" + }, + "events": [ + { + "uuid": "7a503990-8d8a-4c63-83a5-95ca4fd0568a", + "start": { + "$date": "2021-05-19T02:36:13.000Z" + }, + "end": { + "$date": "2021-05-19T02:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9031dc7-92e0-49fd-b3e7-1741a1889fef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-19T03:22:10.000Z" + }, + "end": { + "$date": "2021-05-19T03:48:26.000Z" + }, + "events": [ + { + "uuid": "d48d7b5b-9162-4880-b899-3a3071b19ff9", + "start": { + "$date": "2021-05-19T03:22:10.000Z" + }, + "end": { + "$date": "2021-05-19T03:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "28440cfe-9a74-4565-af16-6a725a3b8528", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-19T02:56:39.000Z" + }, + "end": { + "$date": "2021-05-19T05:04:41.000Z" + }, + "events": [ + { + "uuid": "429d64c1-f378-4bfd-a08e-ed741a452c33", + "start": { + "$date": "2021-05-19T02:56:39.000Z" + }, + "end": { + "$date": "2021-05-19T05:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b50f3c95-2aed-43d7-baeb-8e7f129cefaa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T02:58:10.000Z" + }, + "end": { + "$date": "2021-05-19T04:29:24.000Z" + }, + "events": [ + { + "uuid": "b853490e-f983-4395-856b-23da652768c4", + "start": { + "$date": "2021-05-19T02:58:10.000Z" + }, + "end": { + "$date": "2021-05-19T04:29:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "746a331a-f902-4df0-a188-b612b0d2196a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-19T02:58:15.000Z" + }, + "end": { + "$date": "2021-05-19T05:04:50.000Z" + }, + "events": [ + { + "uuid": "ea51f49b-70b1-45a5-beb2-7af583b6e091", + "start": { + "$date": "2021-05-19T02:58:15.000Z" + }, + "end": { + "$date": "2021-05-19T05:04:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d65b952-a12a-4d3d-ac66-778a04d66343", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-19T04:12:15.000Z" + }, + "end": { + "$date": "2021-05-19T04:40:41.000Z" + }, + "events": [ + { + "uuid": "c6e9e064-1987-4c3c-b37d-a382f646cf0a", + "start": { + "$date": "2021-05-19T04:12:15.000Z" + }, + "end": { + "$date": "2021-05-19T04:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "149708df-521f-4adc-bb77-497eb85e520f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-19T04:34:29.000Z" + }, + "end": { + "$date": "2021-05-19T05:16:10.000Z" + }, + "events": [ + { + "uuid": "e91d9901-20da-4ad2-ae8a-cc2e6862fc34", + "start": { + "$date": "2021-05-19T04:34:29.000Z" + }, + "end": { + "$date": "2021-05-19T05:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d175d34c-2368-4ee4-b19f-534f8ea01904", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-19T04:42:49.000Z" + }, + "end": { + "$date": "2021-05-19T05:13:35.000Z" + }, + "events": [ + { + "uuid": "1123620c-da05-44e3-ae7a-977ea10a78cd", + "start": { + "$date": "2021-05-19T04:42:49.000Z" + }, + "end": { + "$date": "2021-05-19T05:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "296a1fbc-55d6-4074-ba9c-271ee84bbd29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T04:56:03.000Z" + }, + "end": { + "$date": "2021-05-19T06:08:38.000Z" + }, + "events": [ + { + "uuid": "48d913e5-808d-4210-a577-0943f4c605e7", + "start": { + "$date": "2021-05-19T04:56:03.000Z" + }, + "end": { + "$date": "2021-05-19T05:26:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "23567bf4-3d6b-4f7c-ac20-6792d1d577d2", + "start": { + "$date": "2021-05-19T05:26:03.000Z" + }, + "end": { + "$date": "2021-05-19T05:50:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5c16aa4f-63eb-4a51-833f-955185badc70", + "start": { + "$date": "2021-05-19T05:50:03.000Z" + }, + "end": { + "$date": "2021-05-19T05:52:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "281dbbc2-d7ed-4584-a218-cb34c918e150", + "start": { + "$date": "2021-05-19T05:52:03.000Z" + }, + "end": { + "$date": "2021-05-19T06:08:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c9e028ae-f6fe-4a44-9701-445ce4700384", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-19T05:05:02.000Z" + }, + "end": { + "$date": "2021-05-19T05:11:49.000Z" + }, + "events": [ + { + "uuid": "9ef76369-9d6a-4846-a9d0-c0fa9bb1914c", + "start": { + "$date": "2021-05-19T05:05:02.000Z" + }, + "end": { + "$date": "2021-05-19T05:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f7347423-8a63-45e8-9fe6-6af30e333693", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-19T05:09:18.000Z" + }, + "end": { + "$date": "2021-05-19T05:19:20.000Z" + }, + "events": [ + { + "uuid": "3adce72c-7d15-4217-bac4-3537c43c4880", + "start": { + "$date": "2021-05-19T05:09:18.000Z" + }, + "end": { + "$date": "2021-05-19T05:19:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "29013eb4-2251-4145-b32f-5aa50175d2e7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-19T05:21:53.000Z" + }, + "end": { + "$date": "2021-05-19T06:11:14.000Z" + }, + "events": [ + { + "uuid": "5c189ec8-d3fc-47aa-a6ab-93122281a301", + "start": { + "$date": "2021-05-19T05:21:53.000Z" + }, + "end": { + "$date": "2021-05-19T06:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5369097e-c79c-4b0c-b031-b38907bf0923", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-19T05:30:05.000Z" + }, + "end": { + "$date": "2021-05-19T06:06:53.000Z" + }, + "events": [ + { + "uuid": "81f53cb3-ece4-4c06-a2bd-ee3a548fbbd1", + "start": { + "$date": "2021-05-19T05:30:05.000Z" + }, + "end": { + "$date": "2021-05-19T06:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5786bb1b-d18f-459c-8b8f-8437e38ce35b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-19T06:08:43.000Z" + }, + "end": { + "$date": "2021-05-19T06:16:39.000Z" + }, + "events": [ + { + "uuid": "712815ce-5831-4652-84c2-7ed608176bd2", + "start": { + "$date": "2021-05-19T06:08:43.000Z" + }, + "end": { + "$date": "2021-05-19T06:16:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2cb798f9-5d38-44bd-9816-13acd870f1ef", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-19T14:37:00.000Z" + }, + "end": { + "$date": "2021-05-19T15:47:33.000Z" + }, + "events": [ + { + "uuid": "c3bce3dc-a455-4fe7-9dc9-042db455c293", + "start": { + "$date": "2021-05-19T14:37:00.000Z" + }, + "end": { + "$date": "2021-05-19T15:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8a4a62c0-b104-4ece-b814-77b7d63fa954", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T15:33:14.000Z" + }, + "end": { + "$date": "2021-05-19T17:13:47.000Z" + }, + "events": [ + { + "uuid": "1dbdb38e-1181-4209-aa5c-dcc1e5139e00", + "start": { + "$date": "2021-05-19T15:33:14.000Z" + }, + "end": { + "$date": "2021-05-19T16:49:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81897dfa-c7f1-4289-bd32-9b0731632ea1", + "start": { + "$date": "2021-05-19T16:49:14.000Z" + }, + "end": { + "$date": "2021-05-19T16:56:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a243b697-068b-43a1-9ee3-f19d293c2cfa", + "start": { + "$date": "2021-05-19T16:56:14.000Z" + }, + "end": { + "$date": "2021-05-19T17:13:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "fd1bb115-9b0d-4eff-8aae-1178d12c3b39", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-19T15:47:50.000Z" + }, + "end": { + "$date": "2021-05-19T16:19:37.000Z" + }, + "events": [ + { + "uuid": "7cca086d-510c-4cdb-a405-713def41950b", + "start": { + "$date": "2021-05-19T15:47:50.000Z" + }, + "end": { + "$date": "2021-05-19T16:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad99d6a6-0f45-4d66-89b6-f9507730cd5d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T17:25:48.000Z" + }, + "end": { + "$date": "2021-05-19T17:43:34.000Z" + }, + "events": [ + { + "uuid": "f7049b74-57d3-4128-bf64-b5298abfa9aa", + "start": { + "$date": "2021-05-19T17:25:48.000Z" + }, + "end": { + "$date": "2021-05-19T17:43:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e991346-8b1c-4d06-a5e8-86c1125b82f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T17:48:45.000Z" + }, + "end": { + "$date": "2021-05-19T18:05:16.000Z" + }, + "events": [ + { + "uuid": "0cad3257-3b18-4214-8215-4240f8d40de9", + "start": { + "$date": "2021-05-19T17:48:45.000Z" + }, + "end": { + "$date": "2021-05-19T18:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86a88178-b4cb-4c13-a4c1-d459f7b401c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T18:11:12.000Z" + }, + "end": { + "$date": "2021-05-19T18:25:23.000Z" + }, + "events": [ + { + "uuid": "603f0d15-308f-4b0f-a133-9f9611e4a729", + "start": { + "$date": "2021-05-19T18:11:12.000Z" + }, + "end": { + "$date": "2021-05-19T18:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a579a646-8453-4d88-b6fe-789386c45fee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-19T22:40:41.000Z" + }, + "end": { + "$date": "2021-05-19T23:29:29.000Z" + }, + "events": [ + { + "uuid": "6d6e3b6a-7e74-4d16-a29c-3fbdd442d2d3", + "start": { + "$date": "2021-05-19T22:40:41.000Z" + }, + "end": { + "$date": "2021-05-20T00:11:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c72a4f3-4774-4e98-adeb-0e77fe18997f", + "start": { + "$date": "2021-05-20T00:11:41.000Z" + }, + "end": { + "$date": "2021-05-20T00:12:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e3f348d0-a165-4da2-b747-ad4bd4b289a6", + "start": { + "$date": "2021-05-20T00:12:41.000Z" + }, + "end": { + "$date": "2021-05-20T01:02:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d1cbe7e2-bc9a-4251-ba6e-7876fc67eb59", + "start": { + "$date": "2021-05-20T01:02:41.000Z" + }, + "end": { + "$date": "2021-05-20T01:25:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e9b1a9d-116a-44c6-a153-00822d637cbb", + "start": { + "$date": "2021-05-20T01:25:41.000Z" + }, + "end": { + "$date": "2021-05-20T03:08:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2cc81d20-2d37-4bdb-94bf-8956a493054d", + "start": { + "$date": "2021-05-20T03:08:41.000Z" + }, + "end": { + "$date": "2021-05-20T03:37:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6b2e6fe-4765-4d72-b016-ba19865d402b", + "start": { + "$date": "2021-05-20T03:37:41.000Z" + }, + "end": { + "$date": "2021-05-19T23:29:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b82893f8-ea18-466d-a6e7-32a3aac478a0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-19T18:36:03.000Z" + }, + "end": { + "$date": "2021-05-19T20:09:34.000Z" + }, + "events": [ + { + "uuid": "83dfd25a-0b2d-4f85-b992-cc3d46643312", + "start": { + "$date": "2021-05-19T18:36:03.000Z" + }, + "end": { + "$date": "2021-05-19T18:51:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7707001b-771d-4f13-bf9f-b97c60268df8", + "start": { + "$date": "2021-05-19T18:51:03.000Z" + }, + "end": { + "$date": "2021-05-19T18:53:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9426bd45-c913-495d-bbbc-34345eff69ed", + "start": { + "$date": "2021-05-19T18:53:03.000Z" + }, + "end": { + "$date": "2021-05-19T18:55:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "87774a09-1955-4b1a-a3ef-8ad65e1b3d2b", + "start": { + "$date": "2021-05-19T18:55:03.000Z" + }, + "end": { + "$date": "2021-05-19T19:48:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "531f179a-c403-4904-ae29-254bccff2e5d", + "start": { + "$date": "2021-05-19T19:48:03.000Z" + }, + "end": { + "$date": "2021-05-19T19:50:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d4bfdce-7833-4293-a8fa-6953a14e7d5b", + "start": { + "$date": "2021-05-19T19:50:03.000Z" + }, + "end": { + "$date": "2021-05-19T20:07:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "039c72b4-a84a-4456-bb65-af4e9b19a0ee", + "start": { + "$date": "2021-05-19T20:07:03.000Z" + }, + "end": { + "$date": "2021-05-19T20:09:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0b332cd9-2b0b-481b-870a-557c6ed1e261", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-19T19:47:12.000Z" + }, + "end": { + "$date": "2021-05-19T19:53:29.000Z" + }, + "events": [ + { + "uuid": "caf5cbfe-12ef-4308-b5e9-cb434eb3e412", + "start": { + "$date": "2021-05-19T19:47:12.000Z" + }, + "end": { + "$date": "2021-05-19T19:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d9ac9646-df78-4cbf-b443-0298673d869a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-19T20:31:40.000Z" + }, + "end": { + "$date": "2021-05-20T01:13:38.000Z" + }, + "events": [ + { + "uuid": "8f79e0dc-a51d-4972-8f57-0c1885987610", + "start": { + "$date": "2021-05-19T20:31:40.000Z" + }, + "end": { + "$date": "2021-05-19T21:30:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4a9534c-78cd-4c26-9e79-54c77452325f", + "start": { + "$date": "2021-05-19T21:30:40.000Z" + }, + "end": { + "$date": "2021-05-19T22:19:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed075996-41ce-4f1a-9799-cd65455d470e", + "start": { + "$date": "2021-05-19T22:19:40.000Z" + }, + "end": { + "$date": "2021-05-19T22:22:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7cab43c0-dd40-4bee-81f2-c5e56f0efc4b", + "start": { + "$date": "2021-05-19T22:22:40.000Z" + }, + "end": { + "$date": "2021-05-19T22:41:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d9a99afa-4662-4095-aa53-f70fcb06aa96", + "start": { + "$date": "2021-05-19T22:41:40.000Z" + }, + "end": { + "$date": "2021-05-19T22:47:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "59f2578d-e9dc-4305-b93d-82f5070a9946", + "start": { + "$date": "2021-05-19T22:47:40.000Z" + }, + "end": { + "$date": "2021-05-19T22:52:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7500ee9d-98fe-462d-92dd-8c4a721d491a", + "start": { + "$date": "2021-05-19T22:52:40.000Z" + }, + "end": { + "$date": "2021-05-19T23:03:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3237d24-d09f-42c4-9633-f63a13e22524", + "start": { + "$date": "2021-05-19T23:03:40.000Z" + }, + "end": { + "$date": "2021-05-19T23:04:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b4b5d4e-b111-4f10-b531-edd2de1d3f9f", + "start": { + "$date": "2021-05-19T23:04:40.000Z" + }, + "end": { + "$date": "2021-05-19T23:11:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01d37da4-ab75-4cca-8ae8-dfd98a05e87b", + "start": { + "$date": "2021-05-19T23:11:40.000Z" + }, + "end": { + "$date": "2021-05-20T00:36:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1518e819-7699-41ef-bdb6-33d904584738", + "start": { + "$date": "2021-05-20T00:36:40.000Z" + }, + "end": { + "$date": "2021-05-20T00:39:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae2c1749-b2f7-4c3c-bf5c-0a1a1a79a007", + "start": { + "$date": "2021-05-20T00:39:40.000Z" + }, + "end": { + "$date": "2021-05-20T00:43:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98b2bc00-4c26-4471-8b58-b366ea587d05", + "start": { + "$date": "2021-05-20T00:43:40.000Z" + }, + "end": { + "$date": "2021-05-20T00:45:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c78b1a31-f070-42d4-9b24-9d4ac103a525", + "start": { + "$date": "2021-05-20T00:45:40.000Z" + }, + "end": { + "$date": "2021-05-20T01:07:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dd5b4533-cd43-48d0-b2d6-419dd41cdf94", + "start": { + "$date": "2021-05-20T01:07:40.000Z" + }, + "end": { + "$date": "2021-05-20T01:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f0f16fbd-3a98-48d6-bccf-949074f79588", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-19T20:32:54.000Z" + }, + "end": { + "$date": "2021-05-20T06:37:32.000Z" + }, + "events": [ + { + "uuid": "5c5acfc4-82b2-4ffa-80ca-37ac32e1d647", + "start": { + "$date": "2021-05-19T20:32:54.000Z" + }, + "end": { + "$date": "2021-05-20T00:19:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "154f3af6-bd8c-4c27-aae0-162193a1b036", + "start": { + "$date": "2021-05-20T00:19:54.000Z" + }, + "end": { + "$date": "2021-05-20T00:24:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e474dd6f-e141-42de-aeb6-260e84f9b22a", + "start": { + "$date": "2021-05-20T00:24:54.000Z" + }, + "end": { + "$date": "2021-05-20T03:50:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db2c8254-b311-453e-ba2f-da4e0866db07", + "start": { + "$date": "2021-05-20T03:50:54.000Z" + }, + "end": { + "$date": "2021-05-20T03:56:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d39ec6aa-e59a-4449-907b-32064c51447d", + "start": { + "$date": "2021-05-20T03:56:54.000Z" + }, + "end": { + "$date": "2021-05-20T06:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "60389d80-85b4-4ba3-9bb5-2e67d58f34c0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-19T21:14:33.000Z" + }, + "end": { + "$date": "2021-05-19T22:40:47.000Z" + }, + "events": [ + { + "uuid": "f25e992c-6103-4af7-a91a-bbf3a04cc1b8", + "start": { + "$date": "2021-05-19T21:14:33.000Z" + }, + "end": { + "$date": "2021-05-19T22:40:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "c63d92cd-e5a9-4177-bcab-d73225a2c22a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-19T22:42:09.000Z" + }, + "end": { + "$date": "2021-05-20T00:57:36.000Z" + }, + "events": [ + { + "uuid": "99e2b03f-17b9-45ed-b0e1-d96044d366e9", + "start": { + "$date": "2021-05-19T22:42:09.000Z" + }, + "end": { + "$date": "2021-05-20T00:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "729b435e-c5a6-46d0-8db4-967a073aabb1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T00:15:15.000Z" + }, + "end": { + "$date": "2021-05-20T02:47:31.000Z" + }, + "events": [ + { + "uuid": "f3a4841d-42e7-43e1-8ab6-5bd9073d9b6e", + "start": { + "$date": "2021-05-20T00:15:15.000Z" + }, + "end": { + "$date": "2021-05-20T00:44:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "beaf6c4c-ebfa-4eca-961f-35bf510af39c", + "start": { + "$date": "2021-05-20T00:44:15.000Z" + }, + "end": { + "$date": "2021-05-20T00:56:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90af2588-457f-4152-837f-e2f2f87c2da6", + "start": { + "$date": "2021-05-20T00:56:15.000Z" + }, + "end": { + "$date": "2021-05-20T02:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b64da253-4abe-4889-a5fc-a5e5ec4e229f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-20T01:18:41.000Z" + }, + "end": { + "$date": "2021-05-20T01:54:23.000Z" + }, + "events": [ + { + "uuid": "7b0d8d3e-e453-4043-a3ff-c1a16da88dca", + "start": { + "$date": "2021-05-20T01:18:41.000Z" + }, + "end": { + "$date": "2021-05-20T01:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7c0d2466-63a7-4f31-8373-fb5a27283268", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-20T01:26:41.000Z" + }, + "end": { + "$date": "2021-05-20T02:47:35.000Z" + }, + "events": [ + { + "uuid": "274378d7-4ac3-46b4-9937-dc0447acaf1f", + "start": { + "$date": "2021-05-20T01:26:41.000Z" + }, + "end": { + "$date": "2021-05-20T01:55:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "42457012-be3f-4136-a1eb-31ccdf2e1536", + "start": { + "$date": "2021-05-20T01:55:41.000Z" + }, + "end": { + "$date": "2021-05-20T02:12:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03edc0d9-9955-4667-a206-d445041d1767", + "start": { + "$date": "2021-05-20T02:12:41.000Z" + }, + "end": { + "$date": "2021-05-20T02:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47cce4ae-77ff-433e-bdc5-7c3e87e3dd42", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-20T02:58:42.000Z" + }, + "end": { + "$date": "2021-05-20T03:25:03.000Z" + }, + "events": [ + { + "uuid": "36d55e70-faba-4663-97fa-54ad6746dae8", + "start": { + "$date": "2021-05-20T02:58:42.000Z" + }, + "end": { + "$date": "2021-05-20T03:09:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0cb1676b-c772-47d0-bdec-d7b14d9e1551", + "start": { + "$date": "2021-05-20T03:09:42.000Z" + }, + "end": { + "$date": "2021-05-20T03:10:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97da63e9-6868-4a14-a155-7376a2ebf9d8", + "start": { + "$date": "2021-05-20T03:10:42.000Z" + }, + "end": { + "$date": "2021-05-20T03:12:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bd6ac08-cf8c-47c0-99ec-5f5d362465d6", + "start": { + "$date": "2021-05-20T03:12:42.000Z" + }, + "end": { + "$date": "2021-05-20T03:18:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98c181ab-6e90-485e-b43e-e8105790d955", + "start": { + "$date": "2021-05-20T03:18:42.000Z" + }, + "end": { + "$date": "2021-05-20T03:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "8666e2f1-5990-4b27-a598-ee0c996d3c13", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-20T02:22:18.000Z" + }, + "end": { + "$date": "2021-05-20T04:14:17.000Z" + }, + "events": [ + { + "uuid": "0dca4a81-7d9f-4005-945e-55d2381393a8", + "start": { + "$date": "2021-05-20T02:22:18.000Z" + }, + "end": { + "$date": "2021-05-20T04:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "535a3617-4b20-4f08-9c7e-57512f01b297", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-20T02:47:10.000Z" + }, + "end": { + "$date": "2021-05-20T04:22:53.000Z" + }, + "events": [ + { + "uuid": "0041603e-ec4d-4f52-9c59-fff5001d0645", + "start": { + "$date": "2021-05-20T02:47:10.000Z" + }, + "end": { + "$date": "2021-05-20T04:22:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1fc92a16-004f-4898-a897-3684353b7069", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T02:47:46.000Z" + }, + "end": { + "$date": "2021-05-20T04:22:20.000Z" + }, + "events": [ + { + "uuid": "902b203a-4643-4954-a9f9-549f16d95b7c", + "start": { + "$date": "2021-05-20T02:47:46.000Z" + }, + "end": { + "$date": "2021-05-20T04:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cab8bd3c-3e93-49a9-909b-3dc3bcb8e0bd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-20T02:48:14.000Z" + }, + "end": { + "$date": "2021-05-20T02:49:23.000Z" + }, + "events": [ + { + "uuid": "4990e8c9-aa0d-460e-b1cd-6d09575ddc18", + "start": { + "$date": "2021-05-20T02:48:14.000Z" + }, + "end": { + "$date": "2021-05-20T02:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c27b5d41-9639-49ff-a7ca-79505a35893f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-20T02:58:41.000Z" + }, + "end": { + "$date": "2021-05-20T03:25:14.000Z" + }, + "events": [ + { + "uuid": "3ab15d30-7ddf-455d-a82b-6d4abf57e8f5", + "start": { + "$date": "2021-05-20T02:58:41.000Z" + }, + "end": { + "$date": "2021-05-20T03:25:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b51d48a7-7b24-4b0a-92e3-906ee4ce2521", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-20T02:49:20.000Z" + }, + "end": { + "$date": "2021-05-20T04:22:49.000Z" + }, + "events": [ + { + "uuid": "23f23c17-aca6-4a54-a56f-667503e4c975", + "start": { + "$date": "2021-05-20T02:49:20.000Z" + }, + "end": { + "$date": "2021-05-20T04:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e31745db-14f4-476d-8d2f-3fd7c59a4117", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-20T02:58:43.000Z" + }, + "end": { + "$date": "2021-05-20T03:25:11.000Z" + }, + "events": [ + { + "uuid": "feabe3d2-3636-4332-847a-ee0ec6923e82", + "start": { + "$date": "2021-05-20T02:58:43.000Z" + }, + "end": { + "$date": "2021-05-20T03:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "0570494a-5d5d-40a1-8abb-2dbcfa6e1bcb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-20T03:06:18.000Z" + }, + "end": { + "$date": "2021-05-20T03:29:03.000Z" + }, + "events": [ + { + "uuid": "223f9030-1b6f-4fe4-8734-e8aaaf458313", + "start": { + "$date": "2021-05-20T03:06:18.000Z" + }, + "end": { + "$date": "2021-05-20T03:29:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f5c51151-fd43-47d2-a4c5-5f5892171234", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-20T03:22:45.000Z" + }, + "end": { + "$date": "2021-05-20T04:35:24.000Z" + }, + "events": [ + { + "uuid": "c24a887b-398b-447d-b474-4779bbe454a7", + "start": { + "$date": "2021-05-20T03:22:45.000Z" + }, + "end": { + "$date": "2021-05-20T04:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7294b3ae-7fef-4de6-b29b-691096b55b5f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-20T03:28:32.000Z" + }, + "end": { + "$date": "2021-05-20T03:53:12.000Z" + }, + "events": [ + { + "uuid": "0d2e05fe-fe12-4d32-81a4-5d1e9e43481e", + "start": { + "$date": "2021-05-20T03:28:32.000Z" + }, + "end": { + "$date": "2021-05-20T03:53:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "698575a2-4b4d-428d-b6b5-60bb87bb18dc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-20T03:29:04.000Z" + }, + "end": { + "$date": "2021-05-20T03:52:50.000Z" + }, + "events": [ + { + "uuid": "709fd066-b93f-429d-b72f-57142bc855b7", + "start": { + "$date": "2021-05-20T03:29:04.000Z" + }, + "end": { + "$date": "2021-05-20T03:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1c26112-a93f-412a-a4b7-0e4f33183d28", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-20T03:28:29.000Z" + }, + "end": { + "$date": "2021-05-20T03:52:50.000Z" + }, + "events": [ + { + "uuid": "6fe944f3-8183-4009-8906-a67b6e736f04", + "start": { + "$date": "2021-05-20T03:28:29.000Z" + }, + "end": { + "$date": "2021-05-20T03:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc3cd09e-2344-42a9-b77b-f1df76591b8e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-20T03:29:14.000Z" + }, + "end": { + "$date": "2021-05-20T04:35:00.000Z" + }, + "events": [ + { + "uuid": "d414bca0-34e1-4ad3-9a3f-0fe8e6135de2", + "start": { + "$date": "2021-05-20T03:29:14.000Z" + }, + "end": { + "$date": "2021-05-20T04:35:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a62afd26-65d7-4750-a3fd-c41495534fa8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-20T03:56:44.000Z" + }, + "end": { + "$date": "2021-05-20T04:30:14.000Z" + }, + "events": [ + { + "uuid": "07a6b368-d1cb-417c-ba37-19e0b4fab32d", + "start": { + "$date": "2021-05-20T03:56:44.000Z" + }, + "end": { + "$date": "2021-05-20T04:30:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f051fbe6-0fbc-400b-8c5f-942fdfff49fa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-20T03:56:50.000Z" + }, + "end": { + "$date": "2021-05-20T04:30:14.000Z" + }, + "events": [ + { + "uuid": "723c4038-118f-40f2-9718-3af7ae178752", + "start": { + "$date": "2021-05-20T03:56:50.000Z" + }, + "end": { + "$date": "2021-05-20T04:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fac8fe93-119f-478d-b122-6a7e41ddbb20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-20T03:58:26.000Z" + }, + "end": { + "$date": "2021-05-20T04:30:12.000Z" + }, + "events": [ + { + "uuid": "c95e7a7a-85cb-40ea-983c-8c3d44534e01", + "start": { + "$date": "2021-05-20T03:58:26.000Z" + }, + "end": { + "$date": "2021-05-20T04:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "b5599ac2-57ee-4f61-899f-c349a568f6e8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-20T03:54:51.000Z" + }, + "end": { + "$date": "2021-05-20T03:56:07.000Z" + }, + "events": [ + { + "uuid": "e12b4514-e7b4-4ae9-9a1e-0880944f6742", + "start": { + "$date": "2021-05-20T03:54:51.000Z" + }, + "end": { + "$date": "2021-05-20T03:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "891a3ad3-a004-4951-b7b9-0ed9690a4aa3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T04:23:00.000Z" + }, + "end": { + "$date": "2021-05-20T16:41:23.000Z" + }, + "events": [ + { + "uuid": "597121a4-7487-411c-9009-12cf6b57782c", + "start": { + "$date": "2021-05-20T04:23:00.000Z" + }, + "end": { + "$date": "2021-05-20T04:47:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f3657bc6-9ff6-4474-9f94-98496ec72afe", + "start": { + "$date": "2021-05-20T04:47:00.000Z" + }, + "end": { + "$date": "2021-05-20T05:24:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4a483eda-4e86-4eb4-bbea-baadf9f32268", + "start": { + "$date": "2021-05-20T05:24:00.000Z" + }, + "end": { + "$date": "2021-05-20T05:26:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a4f00a9-ba08-4a4e-b0d7-390194f1273b", + "start": { + "$date": "2021-05-20T05:26:00.000Z" + }, + "end": { + "$date": "2021-05-20T14:57:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84a1a0e2-1a8b-46e5-b3d7-60936e8a2504", + "start": { + "$date": "2021-05-20T14:57:00.000Z" + }, + "end": { + "$date": "2021-05-20T14:59:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "422ee6d2-f912-4398-b0a2-09cf1bc3353b", + "start": { + "$date": "2021-05-20T14:59:00.000Z" + }, + "end": { + "$date": "2021-05-20T15:00:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f05b554-d99a-499f-9bc4-47e27bdb4719", + "start": { + "$date": "2021-05-20T15:00:00.000Z" + }, + "end": { + "$date": "2021-05-20T15:04:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "415743b0-e9c3-47d2-bd28-ca4b9ca2543f", + "start": { + "$date": "2021-05-20T15:04:00.000Z" + }, + "end": { + "$date": "2021-05-20T15:17:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "679b2ef0-7ef1-4583-8122-50205ed1e1d4", + "start": { + "$date": "2021-05-20T15:17:00.000Z" + }, + "end": { + "$date": "2021-05-20T15:27:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99891cc4-17b7-46d4-bff7-da850f35c1bb", + "start": { + "$date": "2021-05-20T15:27:00.000Z" + }, + "end": { + "$date": "2021-05-20T15:29:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb8c602b-4c49-4222-9f9d-a137f63e56d2", + "start": { + "$date": "2021-05-20T15:29:00.000Z" + }, + "end": { + "$date": "2021-05-20T16:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "108c2c7d-d6fc-4ad3-ba1a-e2a2d8af3674", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-20T04:26:14.000Z" + }, + "end": { + "$date": "2021-05-20T05:36:02.000Z" + }, + "events": [ + { + "uuid": "c4bb7d96-5633-45cd-995f-7c386cd93913", + "start": { + "$date": "2021-05-20T04:26:14.000Z" + }, + "end": { + "$date": "2021-05-20T04:39:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2efbc34-ef0c-4f53-b8bb-82b7d26b32db", + "start": { + "$date": "2021-05-20T04:39:14.000Z" + }, + "end": { + "$date": "2021-05-20T05:06:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2568518-89d3-4225-a7ca-5a455fb3eb8a", + "start": { + "$date": "2021-05-20T05:06:14.000Z" + }, + "end": { + "$date": "2021-05-20T05:36:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6500cb11-419e-4424-9b2b-b3e5ab680fb3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-20T04:30:18.000Z" + }, + "end": { + "$date": "2021-05-20T05:20:53.000Z" + }, + "events": [ + { + "uuid": "7579fdb7-5b26-4d16-ad59-9380f4675afb", + "start": { + "$date": "2021-05-20T04:30:18.000Z" + }, + "end": { + "$date": "2021-05-20T05:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3134f071-1815-4c01-99d6-ef222891312a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-20T05:38:57.000Z" + }, + "end": { + "$date": "2021-05-20T05:47:57.000Z" + }, + "events": [ + { + "uuid": "9d4e2a96-90bb-4b76-a1e5-bbf1c3d8edd5", + "start": { + "$date": "2021-05-20T05:38:57.000Z" + }, + "end": { + "$date": "2021-05-20T05:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdf58d38-a10c-4e3c-ac48-e8671930369e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-20T05:37:49.000Z" + }, + "end": { + "$date": "2021-05-20T06:06:21.000Z" + }, + "events": [ + { + "uuid": "06e03dfc-76ee-4185-95aa-971d073ee86d", + "start": { + "$date": "2021-05-20T05:37:49.000Z" + }, + "end": { + "$date": "2021-05-20T06:06:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d756eafe-29bc-41da-965d-b6aa8297264e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-20T06:11:12.000Z" + }, + "end": { + "$date": "2021-05-20T06:39:27.000Z" + }, + "events": [ + { + "uuid": "b348d6ea-f89d-4b88-add3-9b901220f540", + "start": { + "$date": "2021-05-20T06:11:12.000Z" + }, + "end": { + "$date": "2021-05-20T06:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bcc200c7-b7b9-478f-b199-cd79b8e19d90", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-20T06:37:48.000Z" + }, + "end": { + "$date": "2021-05-20T07:04:22.000Z" + }, + "events": [ + { + "uuid": "d87af15a-d0a4-4913-abaa-f67cc411b28c", + "start": { + "$date": "2021-05-20T06:37:48.000Z" + }, + "end": { + "$date": "2021-05-20T07:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7ee93662-8007-4fd1-8434-e555927e3b87", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-20T13:57:17.000Z" + }, + "end": { + "$date": "2021-05-20T14:27:06.000Z" + }, + "events": [ + { + "uuid": "559de04c-2c56-4c67-9010-e74ad37afa67", + "start": { + "$date": "2021-05-20T13:57:17.000Z" + }, + "end": { + "$date": "2021-05-20T14:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "4a34ba93-7ce0-402f-ae53-db919ac5cb93", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-20T14:28:36.000Z" + }, + "end": { + "$date": "2021-05-20T16:04:42.000Z" + }, + "events": [ + { + "uuid": "674cdfc6-00e9-488f-84bb-2fb20ca4b403", + "start": { + "$date": "2021-05-20T14:28:36.000Z" + }, + "end": { + "$date": "2021-05-20T16:04:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0e0bab2c-37ca-4930-9a37-4e8f10afc5a8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T17:16:05.000Z" + }, + "end": { + "$date": "2021-05-20T18:19:54.000Z" + }, + "events": [ + { + "uuid": "ca7b1c6d-01ce-49cf-953c-e86c6d47afbf", + "start": { + "$date": "2021-05-20T17:16:05.000Z" + }, + "end": { + "$date": "2021-05-20T18:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4c8ec19d-4868-4f7a-b1cd-1377f14e956e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-20T17:55:56.000Z" + }, + "end": { + "$date": "2021-05-20T19:47:19.000Z" + }, + "events": [ + { + "uuid": "ead0e067-1721-40c1-9b34-ff87885fbf80", + "start": { + "$date": "2021-05-20T17:55:56.000Z" + }, + "end": { + "$date": "2021-05-20T19:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5bdcf36c-f84b-4863-acc9-3357883837d3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-20T18:11:01.000Z" + }, + "end": { + "$date": "2021-05-20T19:40:08.000Z" + }, + "events": [ + { + "uuid": "f917d382-ff3b-4c4b-bae9-9e2c5681bd50", + "start": { + "$date": "2021-05-20T18:11:01.000Z" + }, + "end": { + "$date": "2021-05-20T19:40:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ac9ab468-15ec-44ce-a8c8-f130b7d88bab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T19:02:42.000Z" + }, + "end": { + "$date": "2021-05-20T19:03:42.000Z" + }, + "events": [ + { + "uuid": "ea738c61-6649-4cc0-b8be-c9e2f86ab27b", + "start": { + "$date": "2021-05-20T19:02:42.000Z" + }, + "end": { + "$date": "2021-05-20T19:03:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fceac8f0-fdbb-4fa7-936d-2a3c0d67aa48", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T19:03:57.000Z" + }, + "end": { + "$date": "2021-05-20T19:04:57.000Z" + }, + "events": [ + { + "uuid": "13950104-21db-4596-a845-a957e5792251", + "start": { + "$date": "2021-05-20T19:03:57.000Z" + }, + "end": { + "$date": "2021-05-20T19:04:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "832d8bb7-28e2-4024-a0cd-76983f39ffa0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T19:05:17.000Z" + }, + "end": { + "$date": "2021-05-20T19:15:44.000Z" + }, + "events": [ + { + "uuid": "e9f6a48d-9153-419b-80e8-532fe8f845cd", + "start": { + "$date": "2021-05-20T19:05:17.000Z" + }, + "end": { + "$date": "2021-05-20T19:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "14bbff65-a348-420e-a6e1-2fe9b7bed83c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T19:18:29.000Z" + }, + "end": { + "$date": "2021-05-20T20:08:12.000Z" + }, + "events": [ + { + "uuid": "5162ea76-4cc2-4720-bc9b-d537a2500bdb", + "start": { + "$date": "2021-05-20T19:18:29.000Z" + }, + "end": { + "$date": "2021-05-20T20:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6f023296-3dbb-4352-81b3-fd65f2dee3fb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-20T19:41:34.000Z" + }, + "end": { + "$date": "2021-05-20T21:59:36.000Z" + }, + "events": [ + { + "uuid": "6baeb8a8-b146-4160-ac9f-a5ed6bba3a8a", + "start": { + "$date": "2021-05-20T19:41:34.000Z" + }, + "end": { + "$date": "2021-05-20T21:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b9168eac-bd1c-4f3c-bb9b-96a0565412bf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-20T19:47:18.000Z" + }, + "end": { + "$date": "2021-05-20T21:24:46.000Z" + }, + "events": [ + { + "uuid": "4e717211-3259-459e-be06-eb4c53b088a4", + "start": { + "$date": "2021-05-20T19:47:18.000Z" + }, + "end": { + "$date": "2021-05-20T21:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6fc1253-bf3c-4c35-8d34-5d3a05abb035", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T21:43:51.000Z" + }, + "end": { + "$date": "2021-05-20T22:06:48.000Z" + }, + "events": [ + { + "uuid": "ddacdf52-d4d2-40e6-a084-ce89cb2e5eb1", + "start": { + "$date": "2021-05-20T21:43:51.000Z" + }, + "end": { + "$date": "2021-05-20T22:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8feb1787-9bcc-46c1-83f7-46f25eb244fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T22:07:53.000Z" + }, + "end": { + "$date": "2021-05-20T22:31:10.000Z" + }, + "events": [ + { + "uuid": "ba425949-35bd-4a1a-8db0-7ed6e64a325f", + "start": { + "$date": "2021-05-20T22:07:53.000Z" + }, + "end": { + "$date": "2021-05-20T22:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50591fcc-2428-42c5-88ed-ff8576a01ed6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T23:28:18.000Z" + }, + "end": { + "$date": "2021-05-20T23:41:45.000Z" + }, + "events": [ + { + "uuid": "6a4ab62f-1f16-47e4-be81-9f9c2d0ce710", + "start": { + "$date": "2021-05-20T23:28:18.000Z" + }, + "end": { + "$date": "2021-05-20T23:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "57f3ce39-9879-4b80-80f7-1ea2ce931f51", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-20T23:26:44.000Z" + }, + "end": { + "$date": "2021-05-21T00:57:24.000Z" + }, + "events": [ + { + "uuid": "56d062bf-6076-42c5-a420-190d9d6acde2", + "start": { + "$date": "2021-05-20T23:26:44.000Z" + }, + "end": { + "$date": "2021-05-21T00:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "961a5eaa-768c-4cd2-b033-c23c9207ece9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-20T23:44:25.000Z" + }, + "end": { + "$date": "2021-05-21T00:03:56.000Z" + }, + "events": [ + { + "uuid": "4f36018a-1377-4752-a284-3a4baeb1d102", + "start": { + "$date": "2021-05-20T23:44:25.000Z" + }, + "end": { + "$date": "2021-05-21T00:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4789946c-0baf-415b-b850-fcdba98d86e5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-21T00:48:06.000Z" + }, + "end": { + "$date": "2021-05-21T07:13:08.000Z" + }, + "events": [ + { + "uuid": "6e97b536-ecaa-45b3-8f72-edcebedb609d", + "start": { + "$date": "2021-05-21T00:48:06.000Z" + }, + "end": { + "$date": "2021-05-21T02:00:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37627375-27a4-4e45-8344-5f59c4a8fdec", + "start": { + "$date": "2021-05-21T02:00:06.000Z" + }, + "end": { + "$date": "2021-05-21T02:05:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "243ca1b7-aca8-436a-8eb7-8cbe2787d705", + "start": { + "$date": "2021-05-21T02:05:06.000Z" + }, + "end": { + "$date": "2021-05-21T07:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5138db70-423c-4cf7-ae9e-d8028f19bf5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-21T01:08:37.000Z" + }, + "end": { + "$date": "2021-05-21T01:09:46.000Z" + }, + "events": [ + { + "uuid": "c95949ca-fe94-462e-8444-93bda4c5a17b", + "start": { + "$date": "2021-05-21T01:08:37.000Z" + }, + "end": { + "$date": "2021-05-21T01:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2642a7c4-3b48-48d5-8c94-35e7f1b171e5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-21T01:11:02.000Z" + }, + "end": { + "$date": "2021-05-21T02:12:31.000Z" + }, + "events": [ + { + "uuid": "6ba093f6-ad56-44b1-9c4b-225626dd6f46", + "start": { + "$date": "2021-05-21T01:11:02.000Z" + }, + "end": { + "$date": "2021-05-21T02:12:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fbb3b06a-26dd-4a2d-a7d0-e7d15460ca9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-21T03:50:12.000Z" + }, + "end": { + "$date": "2021-05-21T04:56:26.000Z" + }, + "events": [ + { + "uuid": "1db6411f-1de0-4eab-9b49-5366da4f78a4", + "start": { + "$date": "2021-05-21T03:50:12.000Z" + }, + "end": { + "$date": "2021-05-21T04:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "7dde8bba-7a76-4b03-b55e-bb2d8181c418", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-21T02:44:50.000Z" + }, + "end": { + "$date": "2021-05-21T13:33:57.000Z" + }, + "events": [ + { + "uuid": "34ea42e1-e18b-4e28-a60d-df7434057ba7", + "start": { + "$date": "2021-05-21T02:44:50.000Z" + }, + "end": { + "$date": "2021-05-21T03:57:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2652c4c6-88e6-433e-a295-0c6f2edd1681", + "start": { + "$date": "2021-05-21T03:57:50.000Z" + }, + "end": { + "$date": "2021-05-21T04:00:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec2841be-b551-4bb2-8db2-2fbbc4276245", + "start": { + "$date": "2021-05-21T04:00:50.000Z" + }, + "end": { + "$date": "2021-05-21T04:02:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "162160a2-ec1a-42f9-994c-bed4be93d782", + "start": { + "$date": "2021-05-21T04:02:50.000Z" + }, + "end": { + "$date": "2021-05-21T12:53:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f22e798f-dcd8-4cfd-9f30-ab0c1d3a63b6", + "start": { + "$date": "2021-05-21T12:53:50.000Z" + }, + "end": { + "$date": "2021-05-21T12:56:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e27ff67b-3cf2-44b8-bcda-cf01164859ac", + "start": { + "$date": "2021-05-21T12:56:50.000Z" + }, + "end": { + "$date": "2021-05-21T13:52:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e380b6e0-9d7e-429f-9ba6-4a925726d558", + "start": { + "$date": "2021-05-21T13:52:50.000Z" + }, + "end": { + "$date": "2021-05-21T13:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4e621e71-038c-44b0-9147-fa589df49efe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-21T02:14:44.000Z" + }, + "end": { + "$date": "2021-05-21T02:14:49.000Z" + }, + "events": [ + { + "uuid": "58795ecb-f1fd-43ca-bc82-947a9bec6bee", + "start": { + "$date": "2021-05-21T02:14:44.000Z" + }, + "end": { + "$date": "2021-05-21T02:14:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "234dab75-e818-4cc6-835d-f3176c209e1c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-21T02:12:56.000Z" + }, + "end": { + "$date": "2021-05-21T05:00:50.000Z" + }, + "events": [ + { + "uuid": "a0b19eac-6242-4c9e-a9a4-e0ccb26de31f", + "start": { + "$date": "2021-05-21T02:12:56.000Z" + }, + "end": { + "$date": "2021-05-21T05:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "baebd8f2-818e-4f62-b056-c05476c3b612", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-21T02:16:14.000Z" + }, + "end": { + "$date": "2021-05-21T03:53:45.000Z" + }, + "events": [ + { + "uuid": "2896f3d4-a1c5-42ce-84ad-7d0ee751d475", + "start": { + "$date": "2021-05-21T02:16:14.000Z" + }, + "end": { + "$date": "2021-05-21T03:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "55fb536f-c2b0-4caa-9979-8133635eca02", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-21T02:28:15.000Z" + }, + "end": { + "$date": "2021-05-21T04:24:20.000Z" + }, + "events": [ + { + "uuid": "c047d87d-e4ba-45dc-bb41-539afb5bbf61", + "start": { + "$date": "2021-05-21T02:28:15.000Z" + }, + "end": { + "$date": "2021-05-21T04:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "efac376c-0793-44af-82e6-d272840489cf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-21T02:29:13.000Z" + }, + "end": { + "$date": "2021-05-21T04:56:46.000Z" + }, + "events": [ + { + "uuid": "81579074-948d-4032-86e0-6a68cb5cd3e6", + "start": { + "$date": "2021-05-21T02:29:13.000Z" + }, + "end": { + "$date": "2021-05-21T04:56:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7c2f71e8-e6e7-412c-b0fc-c2ef0b249212", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-21T02:34:26.000Z" + }, + "end": { + "$date": "2021-05-21T05:00:12.000Z" + }, + "events": [ + { + "uuid": "4a61b465-25e6-4c74-80a5-2b1c30127b6b", + "start": { + "$date": "2021-05-21T02:34:26.000Z" + }, + "end": { + "$date": "2021-05-21T05:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c962a9ed-5307-4634-9ee5-41e928e86355", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-21T03:54:25.000Z" + }, + "end": { + "$date": "2021-05-21T04:17:53.000Z" + }, + "events": [ + { + "uuid": "459fc59f-044d-4094-8a63-07031b589ee2", + "start": { + "$date": "2021-05-21T03:54:25.000Z" + }, + "end": { + "$date": "2021-05-21T04:17:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "74aa1299-25cd-49e2-94cf-4b1fe1367985", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-21T04:13:04.000Z" + }, + "end": { + "$date": "2021-05-21T04:56:38.000Z" + }, + "events": [ + { + "uuid": "c0a06f77-fac6-44d9-89da-921d4a9ea741", + "start": { + "$date": "2021-05-21T04:13:04.000Z" + }, + "end": { + "$date": "2021-05-21T04:56:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "15402577-6ad2-406c-ae76-6ae1b919420d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-21T04:26:51.000Z" + }, + "end": { + "$date": "2021-05-21T05:18:07.000Z" + }, + "events": [ + { + "uuid": "04908e35-0d8e-48d1-9633-00adef7204fa", + "start": { + "$date": "2021-05-21T04:26:51.000Z" + }, + "end": { + "$date": "2021-05-21T05:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1070ac64-c848-4f7e-ae29-de5e88b52015", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-21T04:34:33.000Z" + }, + "end": { + "$date": "2021-05-21T05:01:36.000Z" + }, + "events": [ + { + "uuid": "0faae78b-5519-439b-981d-95c63b4e0fb5", + "start": { + "$date": "2021-05-21T04:34:33.000Z" + }, + "end": { + "$date": "2021-05-21T05:01:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fcb1b471-cee3-4176-a39f-17855a70c97b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-21T04:57:31.000Z" + }, + "end": { + "$date": "2021-05-21T16:37:54.000Z" + }, + "events": [ + { + "uuid": "396a65e8-810a-4453-b14a-72bbe76bfeff", + "start": { + "$date": "2021-05-21T04:57:31.000Z" + }, + "end": { + "$date": "2021-05-21T05:09:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b9a7ccfe-b4ee-43e9-bb3f-eb0428bc5a86", + "start": { + "$date": "2021-05-21T05:09:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:14:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec681800-8814-475b-aba8-6229b7bd649b", + "start": { + "$date": "2021-05-21T14:14:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:16:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c565c38-5075-4123-953e-7b0316565e08", + "start": { + "$date": "2021-05-21T14:16:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:25:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2083c102-442f-4f5c-a149-558aa12b6ff9", + "start": { + "$date": "2021-05-21T14:25:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:27:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f1daf13-f138-41fc-92b0-a03049032ec2", + "start": { + "$date": "2021-05-21T14:27:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:37:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "911aa48b-e64f-4ac7-9089-409ad262bb13", + "start": { + "$date": "2021-05-21T14:37:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:54:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "576bb971-a53e-4992-bab8-3faed4c22640", + "start": { + "$date": "2021-05-21T14:54:31.000Z" + }, + "end": { + "$date": "2021-05-21T14:58:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20f6fa66-fdb1-4262-8aa6-84c6a244eceb", + "start": { + "$date": "2021-05-21T14:58:31.000Z" + }, + "end": { + "$date": "2021-05-21T16:37:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b24279f0-792d-4410-9031-952bbe3b1107", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-21T05:04:42.000Z" + }, + "end": { + "$date": "2021-05-21T05:38:34.000Z" + }, + "events": [ + { + "uuid": "fb62bc7c-354d-46a9-a031-83e58a5cb5c8", + "start": { + "$date": "2021-05-21T05:04:42.000Z" + }, + "end": { + "$date": "2021-05-21T05:38:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a01d2cb-66ef-40d2-a849-80994e17497b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-21T05:04:40.000Z" + }, + "end": { + "$date": "2021-05-21T05:38:20.000Z" + }, + "events": [ + { + "uuid": "a16b57c7-1f6f-4b89-a506-e7dfb5b8ad5e", + "start": { + "$date": "2021-05-21T05:04:40.000Z" + }, + "end": { + "$date": "2021-05-21T05:38:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "28bb753e-0430-4e3e-acf1-eef24e2fc15d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-21T05:01:45.000Z" + }, + "end": { + "$date": "2021-05-21T08:01:43.000Z" + }, + "events": [ + { + "uuid": "212f6ef0-807e-46d6-99d2-9a63a239b2b4", + "start": { + "$date": "2021-05-21T05:01:45.000Z" + }, + "end": { + "$date": "2021-05-21T08:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e648385a-c621-4992-a55d-c2795211f62a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-21T05:08:03.000Z" + }, + "end": { + "$date": "2021-05-21T05:40:23.000Z" + }, + "events": [ + { + "uuid": "3875a4c0-1446-4369-b13d-5bb1a1d6d605", + "start": { + "$date": "2021-05-21T05:08:03.000Z" + }, + "end": { + "$date": "2021-05-21T05:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35c4b1f1-6caa-4d7d-80e1-2e361223b6a4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-21T05:49:43.000Z" + }, + "end": { + "$date": "2021-05-21T06:20:06.000Z" + }, + "events": [ + { + "uuid": "99f1dc26-48c3-4d60-a9bd-d7d58bcd010c", + "start": { + "$date": "2021-05-21T05:49:43.000Z" + }, + "end": { + "$date": "2021-05-21T06:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5eea2586-3623-4382-a7ab-a69d5030bbad", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-21T14:21:54.000Z" + }, + "end": { + "$date": "2021-05-21T14:59:48.000Z" + }, + "events": [ + { + "uuid": "91f593ed-f292-4616-b986-692379ee0978", + "start": { + "$date": "2021-05-21T14:21:54.000Z" + }, + "end": { + "$date": "2021-05-21T14:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "0f1ae010-9048-4d34-84f2-4a715a260d75", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-21T15:00:04.000Z" + }, + "end": { + "$date": "2021-05-21T16:39:47.000Z" + }, + "events": [ + { + "uuid": "dc68c546-e54e-48ad-b7ab-f7a1f1e72fa7", + "start": { + "$date": "2021-05-21T15:00:04.000Z" + }, + "end": { + "$date": "2021-05-21T16:39:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b4e5b593-6d90-4404-9374-65144e7419f9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-21T17:58:05.000Z" + }, + "end": { + "$date": "2021-05-21T20:47:00.000Z" + }, + "events": [ + { + "uuid": "9c47feff-5b8c-4e2e-bc88-9e470855ae9a", + "start": { + "$date": "2021-05-21T17:58:05.000Z" + }, + "end": { + "$date": "2021-05-21T20:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5c760f7d-058d-4f4b-bcf4-0ef17d520118", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-21T19:14:39.000Z" + }, + "end": { + "$date": "2021-05-21T19:33:24.000Z" + }, + "events": [ + { + "uuid": "2d9e6b30-de8e-410b-8012-65cd88731465", + "start": { + "$date": "2021-05-21T19:14:39.000Z" + }, + "end": { + "$date": "2021-05-21T19:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "0178adac-970a-453d-8aee-ee5f60bfb6e6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-21T21:13:05.000Z" + }, + "end": { + "$date": "2021-05-21T21:16:47.000Z" + }, + "events": [ + { + "uuid": "af583c90-a437-4c37-af63-468c6055f870", + "start": { + "$date": "2021-05-21T21:13:05.000Z" + }, + "end": { + "$date": "2021-05-21T21:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ea4dec32-16c5-43d8-882d-eee67917c11c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-21T20:13:08.000Z" + }, + "end": { + "$date": "2021-05-21T20:41:31.000Z" + }, + "events": [ + { + "uuid": "2a4b44c8-8d10-4b32-8540-f0ce548d5b4d", + "start": { + "$date": "2021-05-21T20:13:08.000Z" + }, + "end": { + "$date": "2021-05-21T20:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "78a24c94-e32b-44a7-8fca-50459cc382d1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-21T20:24:41.000Z" + }, + "end": { + "$date": "2021-05-22T09:04:05.000Z" + }, + "events": [ + { + "uuid": "18221384-ba82-4006-bc91-9bbbaea1ffd7", + "start": { + "$date": "2021-05-21T20:24:41.000Z" + }, + "end": { + "$date": "2021-05-21T21:58:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "17df48ec-ca0f-46c0-a2d8-54fd069238a7", + "start": { + "$date": "2021-05-21T21:58:41.000Z" + }, + "end": { + "$date": "2021-05-21T22:17:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "214de191-e74a-4d98-8488-aa8ded6e2761", + "start": { + "$date": "2021-05-21T22:17:41.000Z" + }, + "end": { + "$date": "2021-05-22T02:34:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c300f5b7-8e8d-4313-82cf-022424a08018", + "start": { + "$date": "2021-05-22T02:34:41.000Z" + }, + "end": { + "$date": "2021-05-22T02:49:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "447fc009-2732-4e23-ab4b-ee6bb930ef09", + "start": { + "$date": "2021-05-22T02:49:41.000Z" + }, + "end": { + "$date": "2021-05-22T09:04:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5e4b45a0-8f94-442d-a433-0b1c4ed57837", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-21T20:42:56.000Z" + }, + "end": { + "$date": "2021-05-21T21:22:18.000Z" + }, + "events": [ + { + "uuid": "750684dd-2e14-4de2-a616-e25a41861007", + "start": { + "$date": "2021-05-21T20:42:56.000Z" + }, + "end": { + "$date": "2021-05-21T21:22:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "0ee4cef6-7d5f-483d-87bf-622024d66f45", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-21T21:14:48.000Z" + }, + "end": { + "$date": "2021-05-21T22:14:29.000Z" + }, + "events": [ + { + "uuid": "044e0f55-a03c-476e-858b-60abd3d1b3ee", + "start": { + "$date": "2021-05-21T21:14:48.000Z" + }, + "end": { + "$date": "2021-05-21T22:14:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dcc2f3f0-0572-4339-92f4-e770d5a619f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-21T21:23:18.000Z" + }, + "end": { + "$date": "2021-05-21T21:24:19.000Z" + }, + "events": [ + { + "uuid": "56cd658d-f3ad-4a29-b9ae-a162a0854953", + "start": { + "$date": "2021-05-21T21:23:18.000Z" + }, + "end": { + "$date": "2021-05-21T21:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "88e6ae73-dd1a-4550-98ba-961954d920b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-21T21:24:33.000Z" + }, + "end": { + "$date": "2021-05-21T21:41:10.000Z" + }, + "events": [ + { + "uuid": "003bf3c4-a3db-4f97-95ae-2bd781f11f66", + "start": { + "$date": "2021-05-21T21:24:33.000Z" + }, + "end": { + "$date": "2021-05-21T21:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "c4ab2ccf-aadc-4e53-924a-eee3c5714e1d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-21T21:40:01.000Z" + }, + "end": { + "$date": "2021-05-21T23:06:02.000Z" + }, + "events": [ + { + "uuid": "3cd245e2-4656-4244-ac61-aacf6fa21e74", + "start": { + "$date": "2021-05-21T21:40:01.000Z" + }, + "end": { + "$date": "2021-05-21T23:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca89aab3-6077-4b32-b6af-883094d2ffac", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-21T21:56:49.000Z" + }, + "end": { + "$date": "2021-05-21T22:26:07.000Z" + }, + "events": [ + { + "uuid": "40ecc5d6-7e6e-47ea-8fbf-c6f80454bf2c", + "start": { + "$date": "2021-05-21T21:56:49.000Z" + }, + "end": { + "$date": "2021-05-21T22:26:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "195edb3e-b186-40bc-979b-1fd080619137", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-21T22:18:54.000Z" + }, + "end": { + "$date": "2021-05-21T22:59:30.000Z" + }, + "events": [ + { + "uuid": "5d919b29-531f-4f24-a270-144aa2e59c2a", + "start": { + "$date": "2021-05-21T22:18:54.000Z" + }, + "end": { + "$date": "2021-05-21T22:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "74aca192-b718-4dcd-a538-e1569bb1f881", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-21T23:01:00.000Z" + }, + "end": { + "$date": "2021-05-22T00:05:26.000Z" + }, + "events": [ + { + "uuid": "60863a68-9290-4fb5-a7d5-7f140fbd6363", + "start": { + "$date": "2021-05-21T23:01:00.000Z" + }, + "end": { + "$date": "2021-05-22T00:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8263e9ca-b611-4aff-8a2f-776faad77fb7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T00:33:05.000Z" + }, + "end": { + "$date": "2021-05-22T01:46:41.000Z" + }, + "events": [ + { + "uuid": "65e3449c-4c5b-432d-a499-b2cd1bc4fd15", + "start": { + "$date": "2021-05-22T00:33:05.000Z" + }, + "end": { + "$date": "2021-05-22T01:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f833f646-d15c-4a27-a21a-098ee5058b91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T01:24:11.000Z" + }, + "end": { + "$date": "2021-05-22T01:24:31.000Z" + }, + "events": [ + { + "uuid": "289b57b6-a5ba-444d-b0a0-da5d445c710a", + "start": { + "$date": "2021-05-22T01:24:11.000Z" + }, + "end": { + "$date": "2021-05-22T01:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5a2c0a4-5533-4e20-9ff2-8ca058d8144d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-22T00:56:13.000Z" + }, + "end": { + "$date": "2021-05-22T01:34:05.000Z" + }, + "events": [ + { + "uuid": "07d4b6c6-d7ea-44e2-a900-8c68d8dde9f8", + "start": { + "$date": "2021-05-22T00:56:13.000Z" + }, + "end": { + "$date": "2021-05-22T01:34:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3be3446d-6dbb-4449-aa31-342c358676f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T01:24:41.000Z" + }, + "end": { + "$date": "2021-05-22T02:00:28.000Z" + }, + "events": [ + { + "uuid": "01ec379f-0c8a-4592-855c-5f233b61009d", + "start": { + "$date": "2021-05-22T01:24:41.000Z" + }, + "end": { + "$date": "2021-05-22T02:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5179ead1-64c0-48ad-a3d5-f0c9cb0b10f0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-22T01:33:01.000Z" + }, + "end": { + "$date": "2021-05-22T02:57:24.000Z" + }, + "events": [ + { + "uuid": "9a0aa2a8-c3cd-4720-94d8-89fba41ddb1b", + "start": { + "$date": "2021-05-22T01:33:01.000Z" + }, + "end": { + "$date": "2021-05-22T02:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c4eddcef-4134-4566-99ec-e31c6cc2bbb1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-22T01:42:45.000Z" + }, + "end": { + "$date": "2021-05-22T01:53:24.000Z" + }, + "events": [ + { + "uuid": "eaee4b10-d568-4fc7-a839-ae84d1d796b7", + "start": { + "$date": "2021-05-22T01:42:45.000Z" + }, + "end": { + "$date": "2021-05-22T01:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7a48099d-a620-469c-be02-db2a6217ddfb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T01:46:51.000Z" + }, + "end": { + "$date": "2021-05-22T04:25:13.000Z" + }, + "events": [ + { + "uuid": "26322ca1-bc75-4606-bddf-dc1fdb236e3a", + "start": { + "$date": "2021-05-22T01:46:51.000Z" + }, + "end": { + "$date": "2021-05-22T04:25:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "73d3abd7-bc66-4524-8f55-eed69598f728", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-22T01:55:50.000Z" + }, + "end": { + "$date": "2021-05-22T03:09:31.000Z" + }, + "events": [ + { + "uuid": "ba9e37fa-0621-4357-8c79-bd7a255b2a39", + "start": { + "$date": "2021-05-22T01:55:50.000Z" + }, + "end": { + "$date": "2021-05-22T03:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "69a36c71-313e-4ac1-b3d7-3bfbe0ab4e48", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T02:06:34.000Z" + }, + "end": { + "$date": "2021-05-22T02:46:42.000Z" + }, + "events": [ + { + "uuid": "926dccbe-9c3e-4a76-8fdd-c6ea137ebd79", + "start": { + "$date": "2021-05-22T02:06:34.000Z" + }, + "end": { + "$date": "2021-05-22T02:46:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7c3a00cb-3146-4a70-8dc6-e6c63166c5fd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-22T02:50:11.000Z" + }, + "end": { + "$date": "2021-05-22T05:07:59.000Z" + }, + "events": [ + { + "uuid": "8d4bfc19-8101-488d-bffa-dadcaa47929f", + "start": { + "$date": "2021-05-22T02:50:11.000Z" + }, + "end": { + "$date": "2021-05-22T05:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4dffdb29-6705-45af-a381-bdcba4119a88", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T02:50:48.000Z" + }, + "end": { + "$date": "2021-05-22T04:26:53.000Z" + }, + "events": [ + { + "uuid": "82c24b65-9281-49f3-a9fe-6d6c45142a33", + "start": { + "$date": "2021-05-22T02:50:48.000Z" + }, + "end": { + "$date": "2021-05-22T04:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e1e7115d-b370-4eaa-a6b9-44fd1785f592", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-22T02:58:16.000Z" + }, + "end": { + "$date": "2021-05-22T05:12:56.000Z" + }, + "events": [ + { + "uuid": "0bad539b-d9e5-4adf-aaa0-be2b699de110", + "start": { + "$date": "2021-05-22T02:58:16.000Z" + }, + "end": { + "$date": "2021-05-22T05:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "698c0404-9f88-4d52-8545-a4041cb9e59d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-22T03:10:13.000Z" + }, + "end": { + "$date": "2021-05-22T04:46:38.000Z" + }, + "events": [ + { + "uuid": "a29d2be0-e184-4ba8-a56b-4a6e442d9c65", + "start": { + "$date": "2021-05-22T03:10:13.000Z" + }, + "end": { + "$date": "2021-05-22T04:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fbff63f1-d265-47f1-b06d-44b8f3a0830e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-22T04:27:30.000Z" + }, + "end": { + "$date": "2021-05-22T05:24:54.000Z" + }, + "events": [ + { + "uuid": "2aff7307-8202-44ef-af55-eeaeebc5cf3b", + "start": { + "$date": "2021-05-22T04:27:30.000Z" + }, + "end": { + "$date": "2021-05-22T05:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a6226455-14fe-4646-9309-9e5fa07344a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-22T05:13:53.000Z" + }, + "end": { + "$date": "2021-05-22T06:37:39.000Z" + }, + "events": [ + { + "uuid": "8365f108-8535-4b51-8699-de5b39c9a144", + "start": { + "$date": "2021-05-22T05:13:53.000Z" + }, + "end": { + "$date": "2021-05-22T06:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64e3b19f-21f0-4480-bcc5-cf44cca76bc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-22T05:36:31.000Z" + }, + "end": { + "$date": "2021-05-22T06:02:03.000Z" + }, + "events": [ + { + "uuid": "eb7099e2-6227-4059-ac80-2adcb473f237", + "start": { + "$date": "2021-05-22T05:36:31.000Z" + }, + "end": { + "$date": "2021-05-22T06:02:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af2c6ee2-fb28-4aab-a2f8-1286806a6041", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-22T05:37:45.000Z" + }, + "end": { + "$date": "2021-05-22T06:01:56.000Z" + }, + "events": [ + { + "uuid": "8f33fca0-3a48-47f3-a531-d3d299d80e95", + "start": { + "$date": "2021-05-22T05:37:45.000Z" + }, + "end": { + "$date": "2021-05-22T06:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bd1303be-659c-453f-a0b0-61e32a46439a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-22T05:48:25.000Z" + }, + "end": { + "$date": "2021-05-22T05:58:59.000Z" + }, + "events": [ + { + "uuid": "aeb03220-05e6-4d83-9c0e-338c83c7f183", + "start": { + "$date": "2021-05-22T05:48:25.000Z" + }, + "end": { + "$date": "2021-05-22T05:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "09cde5c2-38ca-4304-8aa0-17edc076a937", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T05:36:27.000Z" + }, + "end": { + "$date": "2021-05-22T08:20:45.000Z" + }, + "events": [ + { + "uuid": "ce566568-6afc-4bb1-a325-3dc202b3bfd7", + "start": { + "$date": "2021-05-22T05:36:27.000Z" + }, + "end": { + "$date": "2021-05-22T08:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38921f79-fe81-4746-835a-607ebe2ed273", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-22T06:06:37.000Z" + }, + "end": { + "$date": "2021-05-22T06:33:35.000Z" + }, + "events": [ + { + "uuid": "05021559-593e-4387-8942-5dc8ff2e1c5f", + "start": { + "$date": "2021-05-22T06:06:37.000Z" + }, + "end": { + "$date": "2021-05-22T06:33:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83ceeb4c-abe8-411d-af01-8032e25199ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-22T06:06:36.000Z" + }, + "end": { + "$date": "2021-05-22T06:33:22.000Z" + }, + "events": [ + { + "uuid": "ce16fd2e-3530-437f-ab8e-b2517b4e575d", + "start": { + "$date": "2021-05-22T06:06:36.000Z" + }, + "end": { + "$date": "2021-05-22T06:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cc82645e-df18-4081-8f18-2ea948c2605d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-22T06:43:25.000Z" + }, + "end": { + "$date": "2021-05-22T07:02:17.000Z" + }, + "events": [ + { + "uuid": "ec38c869-410c-4e7e-847e-66a74c510de4", + "start": { + "$date": "2021-05-22T06:43:25.000Z" + }, + "end": { + "$date": "2021-05-22T07:02:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4076b113-c2b3-498d-be32-c9abb71644c9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-22T07:21:59.000Z" + }, + "end": { + "$date": "2021-05-22T07:52:27.000Z" + }, + "events": [ + { + "uuid": "d3cce843-d8d9-4391-8787-5657c54a5ad7", + "start": { + "$date": "2021-05-22T07:21:59.000Z" + }, + "end": { + "$date": "2021-05-22T07:52:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c4ea7cd-57fc-48f3-b588-11ca49d073a2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-22T07:58:15.000Z" + }, + "end": { + "$date": "2021-05-22T08:25:06.000Z" + }, + "events": [ + { + "uuid": "9bc3fa2e-12ca-4264-8401-70a579785a97", + "start": { + "$date": "2021-05-22T07:58:15.000Z" + }, + "end": { + "$date": "2021-05-22T08:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c087ccb3-d3da-4dd2-8d63-96a041453272", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-22T11:02:45.000Z" + }, + "end": { + "$date": "2021-05-22T20:52:00.000Z" + }, + "events": [ + { + "uuid": "5957e17c-1f60-44e0-8711-65b203e009b0", + "start": { + "$date": "2021-05-22T11:02:45.000Z" + }, + "end": { + "$date": "2021-05-22T20:52:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "24985ae7-b115-460c-a932-fa15a093f260", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T11:04:43.000Z" + }, + "end": { + "$date": "2021-05-22T11:55:31.000Z" + }, + "events": [ + { + "uuid": "86c7c63c-f62f-4956-897a-60dfd4e3a984", + "start": { + "$date": "2021-05-22T11:04:43.000Z" + }, + "end": { + "$date": "2021-05-22T11:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "2363bb90-2978-4546-9f81-8db584365caa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T13:36:53.000Z" + }, + "end": { + "$date": "2021-05-22T14:42:40.000Z" + }, + "events": [ + { + "uuid": "bb4a1581-3972-4db1-ab76-dd5283ec8eea", + "start": { + "$date": "2021-05-22T13:36:53.000Z" + }, + "end": { + "$date": "2021-05-22T14:42:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1c9a38d8-2330-4e0c-8010-8166ea55972d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T14:55:57.000Z" + }, + "end": { + "$date": "2021-05-22T15:13:18.000Z" + }, + "events": [ + { + "uuid": "ea691149-ff36-48f8-89b0-fdc285a6b3d1", + "start": { + "$date": "2021-05-22T14:55:57.000Z" + }, + "end": { + "$date": "2021-05-22T15:13:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "fd9e2e15-68e9-46b4-a773-443513188956", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T15:14:23.000Z" + }, + "end": { + "$date": "2021-05-22T15:52:43.000Z" + }, + "events": [ + { + "uuid": "efd8b20a-1114-42d5-8b0a-64f3945de184", + "start": { + "$date": "2021-05-22T15:14:23.000Z" + }, + "end": { + "$date": "2021-05-22T15:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a5bc1de9-015a-4cfd-8efc-8692cc67df78", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T16:01:34.000Z" + }, + "end": { + "$date": "2021-05-22T17:15:26.000Z" + }, + "events": [ + { + "uuid": "13f90f2c-1c61-40d9-92f9-ee44f0b29e2d", + "start": { + "$date": "2021-05-22T16:01:34.000Z" + }, + "end": { + "$date": "2021-05-22T17:15:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cc6a46d-dd68-466c-9749-aea801502606", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-22T16:53:51.000Z" + }, + "end": { + "$date": "2021-05-22T17:26:47.000Z" + }, + "events": [ + { + "uuid": "45f913ea-cd84-473d-b283-3d347bb4c3cc", + "start": { + "$date": "2021-05-22T16:53:51.000Z" + }, + "end": { + "$date": "2021-05-22T17:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6740941e-74f3-4818-9532-7e95a9754021", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T16:52:02.000Z" + }, + "end": { + "$date": "2021-05-22T19:04:42.000Z" + }, + "events": [ + { + "uuid": "43d56ccc-9730-4951-87c5-70dace6094d6", + "start": { + "$date": "2021-05-22T16:52:02.000Z" + }, + "end": { + "$date": "2021-05-22T17:08:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ae25606-3ae6-482e-b0fe-c26aaeef714a", + "start": { + "$date": "2021-05-22T17:08:02.000Z" + }, + "end": { + "$date": "2021-05-22T17:34:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fede7f07-1861-44e4-8819-29c77b94050c", + "start": { + "$date": "2021-05-22T17:34:02.000Z" + }, + "end": { + "$date": "2021-05-22T18:02:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3c29a213-2092-4f2d-b63f-a1efc6222736", + "start": { + "$date": "2021-05-22T18:02:02.000Z" + }, + "end": { + "$date": "2021-05-22T18:08:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb91301a-906f-46d9-8707-783b3d8d4527", + "start": { + "$date": "2021-05-22T18:08:02.000Z" + }, + "end": { + "$date": "2021-05-22T18:19:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c79d908f-3210-40c6-ad08-30db1293c620", + "start": { + "$date": "2021-05-22T18:19:02.000Z" + }, + "end": { + "$date": "2021-05-22T18:20:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c274e144-589c-4670-8fc0-67437acff58a", + "start": { + "$date": "2021-05-22T18:20:02.000Z" + }, + "end": { + "$date": "2021-05-22T19:04:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "4c48159c-994f-43f8-bffe-d77ec9ba7fe1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T17:24:27.000Z" + }, + "end": { + "$date": "2021-05-22T17:30:32.000Z" + }, + "events": [ + { + "uuid": "57ddf602-3499-4d65-83a7-1cbd8a3a20c2", + "start": { + "$date": "2021-05-22T17:24:27.000Z" + }, + "end": { + "$date": "2021-05-22T17:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "784579c1-c735-46ea-adf3-67f886c04b78", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-22T17:27:06.000Z" + }, + "end": { + "$date": "2021-05-22T18:32:45.000Z" + }, + "events": [ + { + "uuid": "dc68cddc-71a2-42c7-a480-e6e247cbd953", + "start": { + "$date": "2021-05-22T17:27:06.000Z" + }, + "end": { + "$date": "2021-05-22T17:52:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "02a949ad-5e93-49c0-ae01-7bbdd7367d25", + "start": { + "$date": "2021-05-22T17:52:06.000Z" + }, + "end": { + "$date": "2021-05-22T17:56:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c3860fee-0709-4eeb-bbfa-487037891940", + "start": { + "$date": "2021-05-22T17:56:06.000Z" + }, + "end": { + "$date": "2021-05-22T18:13:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0cb20434-a889-4ac5-95d8-a27a67f1d7fb", + "start": { + "$date": "2021-05-22T18:13:06.000Z" + }, + "end": { + "$date": "2021-05-22T18:17:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7cb76bd5-b9cf-47ef-8ffa-6e93a5e7fffb", + "start": { + "$date": "2021-05-22T18:17:06.000Z" + }, + "end": { + "$date": "2021-05-22T18:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "91c97cc1-af32-495d-ab59-627f9fff567b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T18:07:27.000Z" + }, + "end": { + "$date": "2021-05-22T19:31:34.000Z" + }, + "events": [ + { + "uuid": "260ed352-6942-4174-ba3f-b0c67b669ae2", + "start": { + "$date": "2021-05-22T18:07:27.000Z" + }, + "end": { + "$date": "2021-05-22T19:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0b9855a1-9e31-4ce6-9de6-642ad026a347", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-22T18:58:35.000Z" + }, + "end": { + "$date": "2021-05-22T21:12:15.000Z" + }, + "events": [ + { + "uuid": "60ab87a4-3334-4efc-98fe-ac593466bdd9", + "start": { + "$date": "2021-05-22T18:58:35.000Z" + }, + "end": { + "$date": "2021-05-22T21:12:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5f9769a-7dfc-4dd5-99a3-e7877a64f95d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T19:05:22.000Z" + }, + "end": { + "$date": "2021-05-22T19:37:59.000Z" + }, + "events": [ + { + "uuid": "c78d6eee-14c3-4ad3-b855-0456fa569058", + "start": { + "$date": "2021-05-22T19:05:22.000Z" + }, + "end": { + "$date": "2021-05-22T19:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3f7e1928-e670-479e-bc2c-be4ff4317a51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T19:38:04.000Z" + }, + "end": { + "$date": "2021-05-22T19:57:28.000Z" + }, + "events": [ + { + "uuid": "4bc79714-dd2c-47b1-931d-a0b9f099ae4d", + "start": { + "$date": "2021-05-22T19:38:04.000Z" + }, + "end": { + "$date": "2021-05-22T19:49:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "02000959-2aad-478f-aecf-961e3cd4d643", + "start": { + "$date": "2021-05-22T19:49:04.000Z" + }, + "end": { + "$date": "2021-05-22T19:55:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8482cdd-540e-4025-9e7e-5d768458d5b3", + "start": { + "$date": "2021-05-22T19:55:04.000Z" + }, + "end": { + "$date": "2021-05-22T19:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3fd6f84-4a1a-422b-bb68-9f8a883d00a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T20:08:23.000Z" + }, + "end": { + "$date": "2021-05-22T20:08:28.000Z" + }, + "events": [ + { + "uuid": "af1f0121-e8da-465a-852f-473134ad3022", + "start": { + "$date": "2021-05-22T20:08:23.000Z" + }, + "end": { + "$date": "2021-05-22T20:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5a45854-d089-440c-a615-24c9b503c2f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T20:08:48.000Z" + }, + "end": { + "$date": "2021-05-22T20:30:13.000Z" + }, + "events": [ + { + "uuid": "c83b144b-3ca6-4ded-bb54-6ae4ff263f08", + "start": { + "$date": "2021-05-22T20:08:48.000Z" + }, + "end": { + "$date": "2021-05-22T20:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6772b5e-eadd-4f7d-83d3-5f3af2ce61e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T20:57:59.000Z" + }, + "end": { + "$date": "2021-05-22T21:41:27.000Z" + }, + "events": [ + { + "uuid": "502d3b72-a46d-405a-9f5a-cfaff3fc3d73", + "start": { + "$date": "2021-05-22T20:57:59.000Z" + }, + "end": { + "$date": "2021-05-22T21:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f6a8b25f-0979-408c-81f0-cba4b255a7af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-22T20:37:25.000Z" + }, + "end": { + "$date": "2021-05-22T21:26:55.000Z" + }, + "events": [ + { + "uuid": "4360b6a4-b130-492e-babd-080b2abf61da", + "start": { + "$date": "2021-05-22T20:37:25.000Z" + }, + "end": { + "$date": "2021-05-22T21:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "756bfa93-dfdc-4498-a652-9b6c0f45cf21", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T20:37:48.000Z" + }, + "end": { + "$date": "2021-05-22T21:42:31.000Z" + }, + "events": [ + { + "uuid": "d485a517-0715-4b6f-af0c-932e4d9ff2ec", + "start": { + "$date": "2021-05-22T20:37:48.000Z" + }, + "end": { + "$date": "2021-05-22T21:42:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9a634053-9c99-441b-959f-970c19e0ec78", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-22T21:42:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:13:52.000Z" + }, + "events": [ + { + "uuid": "1305da42-043b-4b2e-9980-1a9107a2396d", + "start": { + "$date": "2021-05-22T21:42:27.000Z" + }, + "end": { + "$date": "2021-05-22T22:14:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5645629c-1a4f-41a3-a488-cb54900b7497", + "start": { + "$date": "2021-05-22T22:14:27.000Z" + }, + "end": { + "$date": "2021-05-22T22:33:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2a02f2da-a248-4fa0-9679-e2feece180c9", + "start": { + "$date": "2021-05-22T22:33:27.000Z" + }, + "end": { + "$date": "2021-05-22T22:46:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f8c0699-997a-4892-84e6-0b6626f9bbba", + "start": { + "$date": "2021-05-22T22:46:27.000Z" + }, + "end": { + "$date": "2021-05-22T22:58:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "320caa12-dfa6-4f97-8566-411d3961d753", + "start": { + "$date": "2021-05-22T22:58:27.000Z" + }, + "end": { + "$date": "2021-05-22T23:40:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d69fb3e-4022-4817-9fbc-4442f7ded748", + "start": { + "$date": "2021-05-22T23:40:27.000Z" + }, + "end": { + "$date": "2021-05-23T00:08:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ea9e22f-a15a-4977-80c7-9cfca439d5fc", + "start": { + "$date": "2021-05-23T00:08:27.000Z" + }, + "end": { + "$date": "2021-05-23T00:32:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b481ea73-8bcc-42e3-b568-e490eb177f14", + "start": { + "$date": "2021-05-23T00:32:27.000Z" + }, + "end": { + "$date": "2021-05-23T00:56:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97db83e6-bbf9-4a5d-b647-fa52a0b0caf7", + "start": { + "$date": "2021-05-23T00:56:27.000Z" + }, + "end": { + "$date": "2021-05-23T00:59:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a732c41-9bbc-4fdb-b4dd-bcb46b3a8a11", + "start": { + "$date": "2021-05-23T00:59:27.000Z" + }, + "end": { + "$date": "2021-05-23T02:00:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43cbd782-3c72-4f31-965e-7bc3f061e0e7", + "start": { + "$date": "2021-05-23T02:00:27.000Z" + }, + "end": { + "$date": "2021-05-23T02:02:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d294b5a-deb7-4dd5-86a7-1f9c6c391a07", + "start": { + "$date": "2021-05-23T02:02:27.000Z" + }, + "end": { + "$date": "2021-05-23T02:54:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff50eddb-7ee4-4e9d-93fe-b2358126557f", + "start": { + "$date": "2021-05-23T02:54:27.000Z" + }, + "end": { + "$date": "2021-05-23T02:59:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbfcbbb0-0238-405c-99c8-3506193950e7", + "start": { + "$date": "2021-05-23T02:59:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:04:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4fa32f0-c508-4105-b04f-061ca46f1203", + "start": { + "$date": "2021-05-23T03:04:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:06:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d1bc0dad-7e39-453f-b6cb-b3c25e075412", + "start": { + "$date": "2021-05-23T03:06:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:11:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41f1f7fa-927f-4655-bb74-bafe10831587", + "start": { + "$date": "2021-05-23T03:11:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "df7567cb-0c95-43ba-ac13-753d195426b3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-22T21:46:42.000Z" + }, + "end": { + "$date": "2021-05-22T22:07:43.000Z" + }, + "events": [ + { + "uuid": "d27d83fd-c6ca-486f-8ec0-70c6e9aa13f9", + "start": { + "$date": "2021-05-22T21:46:42.000Z" + }, + "end": { + "$date": "2021-05-22T22:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "bd123af1-932e-4775-b684-77aa26dbbf15", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-22T21:49:38.000Z" + }, + "end": { + "$date": "2021-05-23T00:12:31.000Z" + }, + "events": [ + { + "uuid": "9d8093e2-5008-405b-9bac-01fdd30071a8", + "start": { + "$date": "2021-05-22T21:49:38.000Z" + }, + "end": { + "$date": "2021-05-23T00:12:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b6557a15-0b77-4568-a799-434e9ace928e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-22T22:38:42.000Z" + }, + "end": { + "$date": "2021-05-23T08:08:54.000Z" + }, + "events": [ + { + "uuid": "0d2a75fc-59b6-4f2b-8e65-40f95dd57596", + "start": { + "$date": "2021-05-22T22:38:42.000Z" + }, + "end": { + "$date": "2021-05-23T04:10:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd57c385-ecc4-4603-9d58-3bf612c40992", + "start": { + "$date": "2021-05-23T04:10:42.000Z" + }, + "end": { + "$date": "2021-05-23T04:15:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3430f990-16e0-4e73-a1ad-99396d874a4d", + "start": { + "$date": "2021-05-23T04:15:42.000Z" + }, + "end": { + "$date": "2021-05-23T04:25:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b0559f3-de4b-4191-96bd-f2f32ab4ae47", + "start": { + "$date": "2021-05-23T04:25:42.000Z" + }, + "end": { + "$date": "2021-05-23T04:26:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8fd8484e-9699-4d44-bf05-d215bc4c6780", + "start": { + "$date": "2021-05-23T04:26:42.000Z" + }, + "end": { + "$date": "2021-05-23T08:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "1af324bc-50b8-4124-bb00-ee5075413358", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-22T23:04:55.000Z" + }, + "end": { + "$date": "2021-05-23T00:29:31.000Z" + }, + "events": [ + { + "uuid": "0ffde33c-6e49-44f5-8186-5a77dd15433d", + "start": { + "$date": "2021-05-22T23:04:55.000Z" + }, + "end": { + "$date": "2021-05-23T00:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c42760c-0127-4bbe-868f-fbc30ee2c4de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-23T01:27:01.000Z" + }, + "end": { + "$date": "2021-05-23T02:02:18.000Z" + }, + "events": [ + { + "uuid": "0343340a-a1bc-4308-9d2d-0cf1076171d5", + "start": { + "$date": "2021-05-23T01:27:01.000Z" + }, + "end": { + "$date": "2021-05-23T02:00:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22b6d961-fb82-4344-997b-0251a7daf879", + "start": { + "$date": "2021-05-23T02:00:01.000Z" + }, + "end": { + "$date": "2021-05-23T02:02:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b4181d7-12e1-458f-8c94-cce79210f4ae", + "start": { + "$date": "2021-05-23T02:02:01.000Z" + }, + "end": { + "$date": "2021-05-23T02:02:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3ffef743-a11a-465e-94b8-eb26f549a568", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-23T00:53:18.000Z" + }, + "end": { + "$date": "2021-05-23T01:11:39.000Z" + }, + "events": [ + { + "uuid": "d203950d-713e-4d4d-a05c-d73478c7ee8c", + "start": { + "$date": "2021-05-23T00:53:18.000Z" + }, + "end": { + "$date": "2021-05-23T01:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "96aee078-a048-4ac3-b2d6-a48ce944d80c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-23T01:13:53.000Z" + }, + "end": { + "$date": "2021-05-23T01:20:59.000Z" + }, + "events": [ + { + "uuid": "23c19eb2-8997-47e6-b83b-dacad4f84739", + "start": { + "$date": "2021-05-23T01:13:53.000Z" + }, + "end": { + "$date": "2021-05-23T01:20:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2820e99-ada1-49f5-9860-a300e507fc4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-23T01:21:04.000Z" + }, + "end": { + "$date": "2021-05-23T03:26:23.000Z" + }, + "events": [ + { + "uuid": "4bad9532-db6c-4118-9ac7-1a9fbaf439dc", + "start": { + "$date": "2021-05-23T01:21:04.000Z" + }, + "end": { + "$date": "2021-05-23T03:26:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6b9e2ef9-4783-4de2-ac8a-01b61a71803d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-23T01:43:02.000Z" + }, + "end": { + "$date": "2021-05-23T03:33:44.000Z" + }, + "events": [ + { + "uuid": "1a4812db-707b-4b98-96ca-4257509ee4ea", + "start": { + "$date": "2021-05-23T01:43:02.000Z" + }, + "end": { + "$date": "2021-05-23T03:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "642904d9-3f7b-48bd-bf74-15b585387fac", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T01:57:46.000Z" + }, + "end": { + "$date": "2021-05-23T04:22:33.000Z" + }, + "events": [ + { + "uuid": "c6d2f585-e0c4-4ecd-9a7d-f3727a0124cb", + "start": { + "$date": "2021-05-23T01:57:46.000Z" + }, + "end": { + "$date": "2021-05-23T04:22:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "680b1fa8-55f0-462b-a29a-c9cc5a2cf227", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-23T03:15:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:51:15.000Z" + }, + "events": [ + { + "uuid": "86372e2c-683a-49c1-8518-a60400be7613", + "start": { + "$date": "2021-05-23T03:15:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:36:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86c4da79-a05c-4848-bef3-43625fd05c24", + "start": { + "$date": "2021-05-23T03:36:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:37:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "628e1821-3b8f-4376-b1cb-4887a6e54c1d", + "start": { + "$date": "2021-05-23T03:37:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:47:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bcfffc9e-168c-4093-9d64-e65056670179", + "start": { + "$date": "2021-05-23T03:47:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:50:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1d053350-c671-4abe-a9df-cb9be216672e", + "start": { + "$date": "2021-05-23T03:50:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:53:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a69f6a13-d3d0-40cb-be9e-26ef732f0cd7", + "start": { + "$date": "2021-05-23T03:53:30.000Z" + }, + "end": { + "$date": "2021-05-23T04:09:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80cf71c7-bc9d-4f6a-8e8e-c8382ad753f7", + "start": { + "$date": "2021-05-23T04:09:30.000Z" + }, + "end": { + "$date": "2021-05-23T04:11:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9889bfa3-0474-4761-942a-127a892ecdba", + "start": { + "$date": "2021-05-23T04:11:30.000Z" + }, + "end": { + "$date": "2021-05-23T04:14:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7da0e15-4cae-4884-b79b-9e65891e8f01", + "start": { + "$date": "2021-05-23T04:14:30.000Z" + }, + "end": { + "$date": "2021-05-23T03:51:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df82f11c-5811-47bd-a914-7fccf4ef9f94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T03:15:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:51:09.000Z" + }, + "events": [ + { + "uuid": "a9d3dd6c-44a8-46bb-8734-bbb9a736b876", + "start": { + "$date": "2021-05-23T03:15:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "733bd563-3331-4ed9-a4be-38984a459e73", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-23T03:26:33.000Z" + }, + "end": { + "$date": "2021-05-23T04:19:56.000Z" + }, + "events": [ + { + "uuid": "a1894b92-274b-44c0-a15e-f83e332135f9", + "start": { + "$date": "2021-05-23T03:26:33.000Z" + }, + "end": { + "$date": "2021-05-23T04:19:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b23c6b05-6b35-461f-ac01-6a84fa9e99db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-23T03:51:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:53:20.000Z" + }, + "events": [ + { + "uuid": "70af5fde-8760-4343-bcfa-050ff2c3c7b5", + "start": { + "$date": "2021-05-23T03:51:27.000Z" + }, + "end": { + "$date": "2021-05-23T03:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4b1ce6f2-9cb5-43f9-aae9-8cfb2529f555", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T03:54:08.000Z" + }, + "end": { + "$date": "2021-05-23T16:49:14.000Z" + }, + "events": [ + { + "uuid": "98fe6ac6-b272-4b50-b9a3-f8ded0b04baa", + "start": { + "$date": "2021-05-23T03:54:08.000Z" + }, + "end": { + "$date": "2021-05-23T04:05:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9b2b052-fd11-4b1d-9960-3ed49a5a0072", + "start": { + "$date": "2021-05-23T04:05:08.000Z" + }, + "end": { + "$date": "2021-05-23T15:18:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39d3da21-473f-4495-b2ce-decc24b5fb76", + "start": { + "$date": "2021-05-23T15:18:08.000Z" + }, + "end": { + "$date": "2021-05-23T15:20:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80e240ff-c956-469d-8802-1d6645315658", + "start": { + "$date": "2021-05-23T15:20:08.000Z" + }, + "end": { + "$date": "2021-05-23T15:29:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0098b060-c4f0-46e4-bbf5-82d43cae9db7", + "start": { + "$date": "2021-05-23T15:29:08.000Z" + }, + "end": { + "$date": "2021-05-23T16:15:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9717f0b-6fd7-4173-b6f9-cf179d40c83f", + "start": { + "$date": "2021-05-23T16:15:08.000Z" + }, + "end": { + "$date": "2021-05-23T16:42:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4a5c1a69-2921-461e-8b7b-26a55a2008b2", + "start": { + "$date": "2021-05-23T16:42:08.000Z" + }, + "end": { + "$date": "2021-05-23T16:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c65c1b75-3e21-4e05-a35c-93694d66a32f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-23T04:20:21.000Z" + }, + "end": { + "$date": "2021-05-23T04:34:26.000Z" + }, + "events": [ + { + "uuid": "0f390e99-3904-4f17-b461-4ff5c19e4b39", + "start": { + "$date": "2021-05-23T04:20:21.000Z" + }, + "end": { + "$date": "2021-05-23T04:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "fb41fe1a-9dfb-4783-aaa4-b052a7f947cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-23T04:26:08.000Z" + }, + "end": { + "$date": "2021-05-23T05:37:03.000Z" + }, + "events": [ + { + "uuid": "2fe0bec9-1c60-4af0-9377-8c999209fcd5", + "start": { + "$date": "2021-05-23T04:26:08.000Z" + }, + "end": { + "$date": "2021-05-23T05:37:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "dbe89e51-79af-43af-8daa-9074cb9c6a4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-23T04:40:37.000Z" + }, + "end": { + "$date": "2021-05-23T05:07:52.000Z" + }, + "events": [ + { + "uuid": "fbbe4487-61aa-4350-9ebb-2de154162191", + "start": { + "$date": "2021-05-23T04:40:37.000Z" + }, + "end": { + "$date": "2021-05-23T05:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2235c2aa-89ed-4751-a5c1-e1ae211b8b2a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T05:11:23.000Z" + }, + "end": { + "$date": "2021-05-23T05:13:18.000Z" + }, + "events": [ + { + "uuid": "054d34de-d1c0-47be-9fd6-da545f8d89ec", + "start": { + "$date": "2021-05-23T05:11:23.000Z" + }, + "end": { + "$date": "2021-05-23T05:13:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1a801ba-22f3-4340-8f3a-da3632a06e6b", + "uuid": "b987f5dd-f259-4e49-8e5b-d7de48197492", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T05:13:53.000Z" + }, + "end": { + "$date": "2021-05-23T05:24:48.000Z" + }, + "events": [ + { + "uuid": "9bcd9488-24df-481a-9256-bab96a3c5341", + "start": { + "$date": "2021-05-23T05:13:53.000Z" + }, + "end": { + "$date": "2021-05-23T05:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "69d99181-883b-4629-96f8-d6f94073b56c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T05:25:29.000Z" + }, + "end": { + "$date": "2021-05-23T06:56:26.000Z" + }, + "events": [ + { + "uuid": "1587b252-f8de-4a6c-9230-6b80f7685dd9", + "start": { + "$date": "2021-05-23T05:25:29.000Z" + }, + "end": { + "$date": "2021-05-23T06:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bbed2c5-dc32-4399-9089-7213f1d1324a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-23T08:16:47.000Z" + }, + "end": { + "$date": "2021-05-23T08:50:54.000Z" + }, + "events": [ + { + "uuid": "945433c0-15a7-4cae-b411-7a7ea318c3f9", + "start": { + "$date": "2021-05-23T08:16:47.000Z" + }, + "end": { + "$date": "2021-05-23T08:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0be622cf-0c6c-4afd-bb5b-f56e0c80c84e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-23T09:01:11.000Z" + }, + "end": { + "$date": "2021-05-23T09:36:56.000Z" + }, + "events": [ + { + "uuid": "a81ac3d1-fd4d-45e9-8192-cabdf4dd96ee", + "start": { + "$date": "2021-05-23T09:01:11.000Z" + }, + "end": { + "$date": "2021-05-23T09:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "f867b744-24b4-4d0b-824c-3281fe1745a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T15:31:16.000Z" + }, + "end": { + "$date": "2021-05-23T15:49:31.000Z" + }, + "events": [ + { + "uuid": "0494a78c-bbea-4599-b01a-90329996f54b", + "start": { + "$date": "2021-05-23T15:31:16.000Z" + }, + "end": { + "$date": "2021-05-23T15:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6fda2c3-1b10-4003-bcdd-7b1b7c2bd588", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-23T15:46:01.000Z" + }, + "end": { + "$date": "2021-05-23T16:18:35.000Z" + }, + "events": [ + { + "uuid": "4d2131ee-2e3e-4646-9b47-086974f00a6c", + "start": { + "$date": "2021-05-23T15:46:01.000Z" + }, + "end": { + "$date": "2021-05-23T16:18:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63db3741-1688-48e0-b791-3be1188ddeb1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T16:02:44.000Z" + }, + "end": { + "$date": "2021-05-23T16:57:14.000Z" + }, + "events": [ + { + "uuid": "ecac4c1a-c851-4093-bb76-723705f23016", + "start": { + "$date": "2021-05-23T16:02:44.000Z" + }, + "end": { + "$date": "2021-05-23T16:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5338f8c3-749e-4c06-a56a-02e1ff4ac0d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T16:50:39.000Z" + }, + "end": { + "$date": "2021-05-23T17:16:56.000Z" + }, + "events": [ + { + "uuid": "b39da88c-0954-4bb1-b8d3-086f0046c697", + "start": { + "$date": "2021-05-23T16:50:39.000Z" + }, + "end": { + "$date": "2021-05-23T17:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "745139e3-f992-417a-bb43-f0b793cd117b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T17:50:27.000Z" + }, + "end": { + "$date": "2021-05-23T19:15:39.000Z" + }, + "events": [ + { + "uuid": "213ec47c-6cb7-4551-9f2b-b4705dd4cbf1", + "start": { + "$date": "2021-05-23T17:50:27.000Z" + }, + "end": { + "$date": "2021-05-23T19:15:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d490194b-34eb-4082-81f9-a5c81eb7c86d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-23T17:31:14.000Z" + }, + "end": { + "$date": "2021-05-23T17:38:24.000Z" + }, + "events": [ + { + "uuid": "b030b007-7984-4676-8866-22ca536221b3", + "start": { + "$date": "2021-05-23T17:31:14.000Z" + }, + "end": { + "$date": "2021-05-23T17:38:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1ae64de-410a-4680-95bf-bb095322aa29", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-23T19:37:13.000Z" + }, + "end": { + "$date": "2021-05-23T20:07:53.000Z" + }, + "events": [ + { + "uuid": "3b911f15-a989-4b6d-818a-d2c7d3bf37f5", + "start": { + "$date": "2021-05-23T19:37:13.000Z" + }, + "end": { + "$date": "2021-05-23T20:07:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ba86047-8a41-4916-bd0f-df87735953be", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T20:04:36.000Z" + }, + "end": { + "$date": "2021-05-23T20:15:27.000Z" + }, + "events": [ + { + "uuid": "4ea477b1-d6af-485c-a01e-cee1d5621c75", + "start": { + "$date": "2021-05-23T20:04:36.000Z" + }, + "end": { + "$date": "2021-05-23T20:15:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18dafdd3-8e94-4959-949e-88b5c1aa2673", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T20:49:02.000Z" + }, + "end": { + "$date": "2021-05-23T21:00:57.000Z" + }, + "events": [ + { + "uuid": "1fbb183a-cf9c-43d9-8f0f-ecccbdcb4a7c", + "start": { + "$date": "2021-05-23T20:49:02.000Z" + }, + "end": { + "$date": "2021-05-23T21:00:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c1e9c90c-c78a-4369-935f-f845396d7e81", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T20:47:13.000Z" + }, + "end": { + "$date": "2021-05-23T23:10:59.000Z" + }, + "events": [ + { + "uuid": "67dea810-2e49-472a-961e-929536071eb9", + "start": { + "$date": "2021-05-23T20:47:13.000Z" + }, + "end": { + "$date": "2021-05-23T23:10:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "529a611b-f707-4c0a-a60d-6678e1a156b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T21:03:47.000Z" + }, + "end": { + "$date": "2021-05-23T21:27:33.000Z" + }, + "events": [ + { + "uuid": "6b018dd3-03ec-4b56-898b-3002cfdebd8e", + "start": { + "$date": "2021-05-23T21:03:47.000Z" + }, + "end": { + "$date": "2021-05-23T21:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4b1b35ad-db23-45cf-ab0a-adecfa3c4d0d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-23T21:02:32.000Z" + }, + "end": { + "$date": "2021-05-23T21:49:28.000Z" + }, + "events": [ + { + "uuid": "2122165f-ab7e-463e-9d67-012c200a878d", + "start": { + "$date": "2021-05-23T21:02:32.000Z" + }, + "end": { + "$date": "2021-05-23T21:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21f553c9-3f87-433a-9b28-32a048ee6217", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-23T22:27:47.000Z" + }, + "end": { + "$date": "2021-05-23T22:54:23.000Z" + }, + "events": [ + { + "uuid": "47e61b56-53aa-44ce-86ba-e7869bf51dfb", + "start": { + "$date": "2021-05-23T22:27:47.000Z" + }, + "end": { + "$date": "2021-05-23T22:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad3aea45-a70d-4b0d-bef7-b8e470de5822", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-23T23:05:15.000Z" + }, + "end": { + "$date": "2021-05-23T23:42:19.000Z" + }, + "events": [ + { + "uuid": "93244407-3add-4dad-a301-dafacc50990f", + "start": { + "$date": "2021-05-23T23:05:15.000Z" + }, + "end": { + "$date": "2021-05-23T23:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbc8cdef-c37e-4ee7-9699-e8a2a535d244", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T23:05:12.000Z" + }, + "end": { + "$date": "2021-05-23T23:42:09.000Z" + }, + "events": [ + { + "uuid": "b375a588-3833-4d48-822b-711705db1118", + "start": { + "$date": "2021-05-23T23:05:12.000Z" + }, + "end": { + "$date": "2021-05-23T23:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8af4bba2-5042-4690-83a5-24931a63e25e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-23T23:11:10.000Z" + }, + "end": { + "$date": "2021-05-24T00:14:16.000Z" + }, + "events": [ + { + "uuid": "b49f2af9-1c20-4ea5-b97d-9728a2c6b126", + "start": { + "$date": "2021-05-23T23:11:10.000Z" + }, + "end": { + "$date": "2021-05-24T00:14:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbfd2485-5f9a-40f2-9b98-bfd355732dd3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-23T23:44:15.000Z" + }, + "end": { + "$date": "2021-05-24T00:10:24.000Z" + }, + "events": [ + { + "uuid": "187306e9-761c-4a7a-8f92-816b5422431b", + "start": { + "$date": "2021-05-23T23:44:15.000Z" + }, + "end": { + "$date": "2021-05-24T00:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7ef1df6-11b1-4a8b-aa5f-39b04c7b29c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-23T23:44:09.000Z" + }, + "end": { + "$date": "2021-05-24T00:07:36.000Z" + }, + "events": [ + { + "uuid": "19cbcf71-afdf-4ccc-a9a8-90b0281da027", + "start": { + "$date": "2021-05-23T23:44:09.000Z" + }, + "end": { + "$date": "2021-05-24T00:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8639a5af-2cf6-4a5b-9433-262af4d57b83", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-24T00:44:16.000Z" + }, + "end": { + "$date": "2021-05-24T07:00:48.000Z" + }, + "events": [ + { + "uuid": "572a0719-119d-40df-8e9f-a78de179c744", + "start": { + "$date": "2021-05-24T00:44:16.000Z" + }, + "end": { + "$date": "2021-05-24T07:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06b145fa-f371-48aa-b761-3d40f9b7ff45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T00:10:40.000Z" + }, + "end": { + "$date": "2021-05-24T00:18:31.000Z" + }, + "events": [ + { + "uuid": "297a294b-8355-4f43-a1b3-fd217e2d317b", + "start": { + "$date": "2021-05-24T00:10:40.000Z" + }, + "end": { + "$date": "2021-05-24T00:18:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aa4be865-c8af-48d9-a875-2bddc1ae742a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-24T00:15:37.000Z" + }, + "end": { + "$date": "2021-05-24T02:04:06.000Z" + }, + "events": [ + { + "uuid": "5643e893-708b-4a40-adbb-1a01609efbb0", + "start": { + "$date": "2021-05-24T00:15:37.000Z" + }, + "end": { + "$date": "2021-05-24T02:04:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e882144-26e1-4f1a-be89-96c3a9e6baaf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T00:23:41.000Z" + }, + "end": { + "$date": "2021-05-24T01:06:17.000Z" + }, + "events": [ + { + "uuid": "fd2dfbb1-d1fd-436f-8323-8eb78a2c46d4", + "start": { + "$date": "2021-05-24T00:23:41.000Z" + }, + "end": { + "$date": "2021-05-24T01:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "581feba1-871d-45fa-8732-af612702c648", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T00:18:31.000Z" + }, + "end": { + "$date": "2021-05-24T03:17:15.000Z" + }, + "events": [ + { + "uuid": "0b0a5e9b-8276-422d-889b-bde9cd3104de", + "start": { + "$date": "2021-05-24T00:18:31.000Z" + }, + "end": { + "$date": "2021-05-24T01:41:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b75bcfac-65d1-4b58-97b2-55ca56f1c9ef", + "start": { + "$date": "2021-05-24T01:41:31.000Z" + }, + "end": { + "$date": "2021-05-24T01:59:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ca65c23-23b9-4b8a-9d38-1a13b1eb2701", + "start": { + "$date": "2021-05-24T01:59:31.000Z" + }, + "end": { + "$date": "2021-05-24T03:17:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22fb029d-8cb5-4c97-b975-0c62a44740c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T00:24:47.000Z" + }, + "end": { + "$date": "2021-05-24T01:06:08.000Z" + }, + "events": [ + { + "uuid": "b5b9a2ac-8ace-41f3-95c3-7289e251040f", + "start": { + "$date": "2021-05-24T00:24:47.000Z" + }, + "end": { + "$date": "2021-05-24T01:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8c1d3f13-1d1b-4b6c-b47f-6b852bfa745f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-24T02:06:57.000Z" + }, + "end": { + "$date": "2021-05-24T02:07:02.000Z" + }, + "events": [ + { + "uuid": "33358de5-9f39-4033-9503-f353d415e72a", + "start": { + "$date": "2021-05-24T02:06:57.000Z" + }, + "end": { + "$date": "2021-05-24T03:09:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "568f697f-28ff-43a3-a788-60bbc8d5cb15", + "start": { + "$date": "2021-05-24T03:09:57.000Z" + }, + "end": { + "$date": "2021-05-24T03:11:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be6fcb3c-ab4b-4581-b05b-50724d72fc19", + "start": { + "$date": "2021-05-24T03:11:57.000Z" + }, + "end": { + "$date": "2021-05-24T02:07:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "944bee5c-7337-4974-9ff2-8f85f648aaaf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T01:25:21.000Z" + }, + "end": { + "$date": "2021-05-24T01:46:45.000Z" + }, + "events": [ + { + "uuid": "077645c2-caaf-4cce-9214-fc382c28cc2a", + "start": { + "$date": "2021-05-24T01:25:21.000Z" + }, + "end": { + "$date": "2021-05-24T01:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a61ae54-74d9-40f7-991a-5a1dc3957189", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T01:25:12.000Z" + }, + "end": { + "$date": "2021-05-24T01:46:30.000Z" + }, + "events": [ + { + "uuid": "15d63608-7efa-431a-905d-9fd53deb3d59", + "start": { + "$date": "2021-05-24T01:25:12.000Z" + }, + "end": { + "$date": "2021-05-24T01:46:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21655578-49f4-4953-9beb-071d27bc2af1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T01:51:24.000Z" + }, + "end": { + "$date": "2021-05-24T02:26:51.000Z" + }, + "events": [ + { + "uuid": "7d54c156-1ace-496a-9fc6-22e73302529c", + "start": { + "$date": "2021-05-24T01:51:24.000Z" + }, + "end": { + "$date": "2021-05-24T02:26:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "f9b51c0a-6cec-4a86-b6e4-789e5a9009cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-24T02:10:37.000Z" + }, + "end": { + "$date": "2021-05-24T02:14:42.000Z" + }, + "events": [ + { + "uuid": "f7374469-d12d-45d3-8d78-afac37e4b097", + "start": { + "$date": "2021-05-24T02:10:37.000Z" + }, + "end": { + "$date": "2021-05-24T02:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7a652fb4-a2ab-4202-bdcb-e3e4feb431cf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T03:13:30.000Z" + }, + "end": { + "$date": "2021-05-24T05:18:21.000Z" + }, + "events": [ + { + "uuid": "40fc9ece-41d4-4629-8fb4-f0db4258fa30", + "start": { + "$date": "2021-05-24T03:13:30.000Z" + }, + "end": { + "$date": "2021-05-24T05:18:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2362ff82-d2c5-49a3-bc23-650223276265", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T03:17:55.000Z" + }, + "end": { + "$date": "2021-05-24T03:23:16.000Z" + }, + "events": [ + { + "uuid": "b97231ed-2d4b-402c-9ce2-6b0d75a95cb9", + "start": { + "$date": "2021-05-24T03:17:55.000Z" + }, + "end": { + "$date": "2021-05-24T03:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f1a960ef-16e5-4923-92ee-fa946b146026", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T03:23:35.000Z" + }, + "end": { + "$date": "2021-05-24T05:17:50.000Z" + }, + "events": [ + { + "uuid": "29d9a37e-76ab-429b-a3b6-eac4a4f7a774", + "start": { + "$date": "2021-05-24T03:23:35.000Z" + }, + "end": { + "$date": "2021-05-24T05:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1a023d00-6702-4fa5-ae11-8100a856bc54", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-24T03:34:43.000Z" + }, + "end": { + "$date": "2021-05-24T03:43:48.000Z" + }, + "events": [ + { + "uuid": "e639d83b-033d-4e9e-bffd-dea6f5d18079", + "start": { + "$date": "2021-05-24T03:34:43.000Z" + }, + "end": { + "$date": "2021-05-24T03:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ef6fa0ba-dc85-4660-a7c2-f59ab5cb4f1c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-24T03:46:14.000Z" + }, + "end": { + "$date": "2021-05-24T06:10:15.000Z" + }, + "events": [ + { + "uuid": "acde932f-5700-496b-a5ef-0040ae9a352a", + "start": { + "$date": "2021-05-24T03:46:14.000Z" + }, + "end": { + "$date": "2021-05-24T06:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d1b1f1db-22d1-4db1-850b-420b544d837d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T04:19:09.000Z" + }, + "end": { + "$date": "2021-05-24T04:27:02.000Z" + }, + "events": [ + { + "uuid": "27ac51de-4a80-4af0-8b88-e833c6469e3b", + "start": { + "$date": "2021-05-24T04:19:09.000Z" + }, + "end": { + "$date": "2021-05-24T04:27:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9f383964-e63d-453f-87d1-1f8c0701959a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T04:27:17.000Z" + }, + "end": { + "$date": "2021-05-24T05:18:25.000Z" + }, + "events": [ + { + "uuid": "fe522c50-3497-48b2-bb73-c662581e37e4", + "start": { + "$date": "2021-05-24T04:27:17.000Z" + }, + "end": { + "$date": "2021-05-24T05:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "96f06d56-6324-48cd-b739-1cb112115573", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-24T04:49:15.000Z" + }, + "end": { + "$date": "2021-05-24T06:10:23.000Z" + }, + "events": [ + { + "uuid": "71ddc13d-139e-4937-88d7-27a5d1adcb01", + "start": { + "$date": "2021-05-24T04:49:15.000Z" + }, + "end": { + "$date": "2021-05-24T06:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cfe5c2f8-6e5d-4dc2-bf44-0ec53232af76", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T05:18:24.000Z" + }, + "end": { + "$date": "2021-05-24T19:40:17.000Z" + }, + "events": [ + { + "uuid": "bc5d4d81-a317-42c1-87bd-06d0e1f0c29f", + "start": { + "$date": "2021-05-24T05:18:24.000Z" + }, + "end": { + "$date": "2021-05-24T05:30:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "334a39a4-cee1-4045-9577-b41f5aa68340", + "start": { + "$date": "2021-05-24T05:30:24.000Z" + }, + "end": { + "$date": "2021-05-24T15:23:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b5b64f8-6310-4ebe-9146-02a18c1375ce", + "start": { + "$date": "2021-05-24T15:23:24.000Z" + }, + "end": { + "$date": "2021-05-24T15:25:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f1e40c8-8955-41b8-a664-e275d0def480", + "start": { + "$date": "2021-05-24T15:25:24.000Z" + }, + "end": { + "$date": "2021-05-24T15:40:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "87722afe-8184-4a35-ba8d-57873c41eb83", + "start": { + "$date": "2021-05-24T15:40:24.000Z" + }, + "end": { + "$date": "2021-05-24T16:39:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "322145b9-fbb9-4461-a9f4-5bdf87ac2df8", + "start": { + "$date": "2021-05-24T16:39:24.000Z" + }, + "end": { + "$date": "2021-05-24T16:42:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e3fd13a-0ca4-4462-853f-0c99fea3bdb5", + "start": { + "$date": "2021-05-24T16:42:24.000Z" + }, + "end": { + "$date": "2021-05-24T17:57:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e330e2ab-9232-4e12-a9bd-02219e407b3e", + "start": { + "$date": "2021-05-24T17:57:24.000Z" + }, + "end": { + "$date": "2021-05-24T18:00:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f1bde42-c5b1-49a3-b4a5-e087dfa38441", + "start": { + "$date": "2021-05-24T18:00:24.000Z" + }, + "end": { + "$date": "2021-05-24T18:02:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7499dbc1-7233-412c-b5a9-2e8eb16a815f", + "start": { + "$date": "2021-05-24T18:02:24.000Z" + }, + "end": { + "$date": "2021-05-24T18:11:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "054ca32e-eeb1-4d69-81cd-7b187f1273c7", + "start": { + "$date": "2021-05-24T18:11:24.000Z" + }, + "end": { + "$date": "2021-05-24T18:13:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc8ee947-fbd8-4c74-90bf-0d9c46af34ca", + "start": { + "$date": "2021-05-24T18:13:24.000Z" + }, + "end": { + "$date": "2021-05-24T18:26:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18dc33e9-1376-4e4b-be30-5a0147f0e21f", + "start": { + "$date": "2021-05-24T18:26:24.000Z" + }, + "end": { + "$date": "2021-05-24T18:31:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c62fbeef-cd1b-4781-b562-da1e41807c21", + "start": { + "$date": "2021-05-24T18:31:24.000Z" + }, + "end": { + "$date": "2021-05-24T19:40:17.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69937d5d-ed84-409c-b560-c7f8fc7a33cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T05:27:58.000Z" + }, + "end": { + "$date": "2021-05-24T05:35:30.000Z" + }, + "events": [ + { + "uuid": "f1a539e1-b6a8-43f1-b2c6-7501b640e099", + "start": { + "$date": "2021-05-24T05:27:58.000Z" + }, + "end": { + "$date": "2021-05-24T05:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9909398d-4a19-4915-be3a-2e4b272893f6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T05:27:57.000Z" + }, + "end": { + "$date": "2021-05-24T05:35:20.000Z" + }, + "events": [ + { + "uuid": "94add120-8d7b-4230-8cdd-08722ebb7dbb", + "start": { + "$date": "2021-05-24T05:27:57.000Z" + }, + "end": { + "$date": "2021-05-24T05:35:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6d4a0cd-dd13-4bdd-83db-bae4fd4e4885", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T05:40:25.000Z" + }, + "end": { + "$date": "2021-05-24T06:26:05.000Z" + }, + "events": [ + { + "uuid": "27099ffb-80ce-46c4-896a-75515040290f", + "start": { + "$date": "2021-05-24T05:40:25.000Z" + }, + "end": { + "$date": "2021-05-24T06:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a28284c0-15e3-4dac-859b-743fe34163ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T05:40:23.000Z" + }, + "end": { + "$date": "2021-05-24T06:26:46.000Z" + }, + "events": [ + { + "uuid": "bae1265f-1f54-4fa7-bfb9-0ce026c04b12", + "start": { + "$date": "2021-05-24T05:40:23.000Z" + }, + "end": { + "$date": "2021-05-24T06:26:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f2d63a8-1cd4-4ea3-939b-c348aeb9ff1a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-24T06:37:00.000Z" + }, + "end": { + "$date": "2021-05-24T07:03:40.000Z" + }, + "events": [ + { + "uuid": "2780d299-4c48-46ce-a832-86601b1527fb", + "start": { + "$date": "2021-05-24T06:37:00.000Z" + }, + "end": { + "$date": "2021-05-24T07:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9f51b814-ed08-47a9-95b3-6cdfffd443d7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-24T14:43:35.000Z" + }, + "end": { + "$date": "2021-05-24T15:50:52.000Z" + }, + "events": [ + { + "uuid": "19fedb01-c92d-4a27-9a1a-add62cb41be8", + "start": { + "$date": "2021-05-24T14:43:35.000Z" + }, + "end": { + "$date": "2021-05-24T15:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a82eebf9-c16a-4a68-b9e6-f870e4e95013", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T15:24:24.000Z" + }, + "end": { + "$date": "2021-05-24T15:25:54.000Z" + }, + "events": [ + { + "uuid": "9a1acff5-3e36-4d1a-aa70-1ed7dbb8332c", + "start": { + "$date": "2021-05-24T15:24:24.000Z" + }, + "end": { + "$date": "2021-05-24T15:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f76c66a-8df1-42d8-b0df-73ca8d60104f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T16:03:25.000Z" + }, + "end": { + "$date": "2021-05-24T16:26:37.000Z" + }, + "events": [ + { + "uuid": "58a7cef0-8d78-4116-9dc5-d0f26b97fa61", + "start": { + "$date": "2021-05-24T16:03:25.000Z" + }, + "end": { + "$date": "2021-05-24T16:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "bc15a542-95c2-459b-a94e-647c1faea75c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-24T18:27:36.000Z" + }, + "end": { + "$date": "2021-05-24T18:27:41.000Z" + }, + "events": [ + { + "uuid": "605dddeb-3c51-45f4-a8b8-5fdbda3f0778", + "start": { + "$date": "2021-05-24T18:27:36.000Z" + }, + "end": { + "$date": "2021-05-24T18:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "52d6b293-90a1-4fbe-80d4-c8f56b4017fb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-24T16:13:48.000Z" + }, + "end": { + "$date": "2021-05-24T17:03:49.000Z" + }, + "events": [ + { + "uuid": "8346935e-1f57-4753-8ee9-06ad4e6e6b9d", + "start": { + "$date": "2021-05-24T16:13:48.000Z" + }, + "end": { + "$date": "2021-05-24T17:03:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c16c5930-64dc-4c8f-b648-a46d88292267", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T16:31:29.000Z" + }, + "end": { + "$date": "2021-05-24T17:03:23.000Z" + }, + "events": [ + { + "uuid": "1e4f8f31-1d53-497b-8b76-e5e43741f6db", + "start": { + "$date": "2021-05-24T16:31:29.000Z" + }, + "end": { + "$date": "2021-05-24T17:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b6236fe-8ea0-4c49-babb-c1f55f13bb48", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T17:13:06.000Z" + }, + "end": { + "$date": "2021-05-24T17:43:21.000Z" + }, + "events": [ + { + "uuid": "27aca905-c41f-4b36-ae8b-af970a7fb45b", + "start": { + "$date": "2021-05-24T17:13:06.000Z" + }, + "end": { + "$date": "2021-05-24T17:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b50cba0-0962-42a6-8c4d-64e55abf26ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T17:13:02.000Z" + }, + "end": { + "$date": "2021-05-24T17:43:18.000Z" + }, + "events": [ + { + "uuid": "c326fdfe-f61e-4809-bd86-ff2538e06c06", + "start": { + "$date": "2021-05-24T17:13:02.000Z" + }, + "end": { + "$date": "2021-05-24T17:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cfb18e6-8b44-4d67-aa6d-3601cc7e6d5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T18:29:39.000Z" + }, + "end": { + "$date": "2021-05-24T18:29:37.000Z" + }, + "events": [ + { + "uuid": "a0115f53-552d-4bcb-914b-ebf3413b86b6", + "start": { + "$date": "2021-05-24T18:29:39.000Z" + }, + "end": { + "$date": "2021-05-24T18:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4b9d96af-49e3-4833-9206-42c441265aa7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T19:57:04.000Z" + }, + "end": { + "$date": "2021-05-24T21:01:34.000Z" + }, + "events": [ + { + "uuid": "9f89d8a5-7d9b-4c1f-a384-0bc77bba6734", + "start": { + "$date": "2021-05-24T19:57:04.000Z" + }, + "end": { + "$date": "2021-05-24T21:01:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "efed8007-7e54-4042-9a17-a79b2d008f96", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-24T20:17:37.000Z" + }, + "end": { + "$date": "2021-05-24T21:21:56.000Z" + }, + "events": [ + { + "uuid": "7cec2d3b-e1e5-4d33-823c-1cd4e3317f64", + "start": { + "$date": "2021-05-24T20:17:37.000Z" + }, + "end": { + "$date": "2021-05-24T21:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69c82692-8176-4d82-9dd9-d0191fc8734a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T21:04:46.000Z" + }, + "end": { + "$date": "2021-05-24T21:33:23.000Z" + }, + "events": [ + { + "uuid": "19ffd45b-2fcd-419e-8dbf-b3fd2e0da5cc", + "start": { + "$date": "2021-05-24T21:04:46.000Z" + }, + "end": { + "$date": "2021-05-24T21:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8412c6b-9b60-45ee-a0d4-e1b2a82ac85e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T21:05:09.000Z" + }, + "end": { + "$date": "2021-05-24T21:30:32.000Z" + }, + "events": [ + { + "uuid": "8dbf1e15-db15-4c42-af5f-9249115595ee", + "start": { + "$date": "2021-05-24T21:05:09.000Z" + }, + "end": { + "$date": "2021-05-24T21:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "408e6449-f116-4266-b6a7-bf56eaf4451d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-24T21:17:20.000Z" + }, + "end": { + "$date": "2021-05-24T21:30:05.000Z" + }, + "events": [ + { + "uuid": "3c9094d7-49e4-4c84-969f-02d5ab38d3ef", + "start": { + "$date": "2021-05-24T21:17:20.000Z" + }, + "end": { + "$date": "2021-05-24T21:30:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b54deeca-df51-462e-9c62-9d6f4614dc98", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-24T21:21:40.000Z" + }, + "end": { + "$date": "2021-05-24T21:42:07.000Z" + }, + "events": [ + { + "uuid": "e09ddb76-de46-4d1f-90db-600eae8759e2", + "start": { + "$date": "2021-05-24T21:21:40.000Z" + }, + "end": { + "$date": "2021-05-24T21:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2b36018f-6ef5-4b4e-8be2-baf291e4c34d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-24T21:22:01.000Z" + }, + "end": { + "$date": "2021-05-25T04:41:15.000Z" + }, + "events": [ + { + "uuid": "9212c17e-e2e8-41f2-9a71-13736e71938f", + "start": { + "$date": "2021-05-24T21:22:01.000Z" + }, + "end": { + "$date": "2021-05-25T03:35:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f8e430ab-68e6-4974-9a56-a3d25613d580", + "start": { + "$date": "2021-05-25T03:35:01.000Z" + }, + "end": { + "$date": "2021-05-25T03:49:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c1cb761c-7702-4a21-87e1-d0dbb33683c1", + "start": { + "$date": "2021-05-25T03:49:01.000Z" + }, + "end": { + "$date": "2021-05-25T04:41:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fa84874-ab7a-4c31-ba3f-1fc1869261ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T22:01:44.000Z" + }, + "end": { + "$date": "2021-05-24T22:01:41.000Z" + }, + "events": [ + { + "uuid": "1664c422-cfbd-46dd-9420-31a1f1e5e309", + "start": { + "$date": "2021-05-24T22:01:44.000Z" + }, + "end": { + "$date": "2021-05-24T22:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c58dd88c-19e9-43f1-a1a3-f35870c832fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-24T21:35:32.000Z" + }, + "end": { + "$date": "2021-05-24T22:07:23.000Z" + }, + "events": [ + { + "uuid": "a6f5bf70-c037-4591-ae3a-6b03215aab04", + "start": { + "$date": "2021-05-24T21:35:32.000Z" + }, + "end": { + "$date": "2021-05-24T22:07:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2b193f4-8f6c-43f5-87c6-58c35b15bcb6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-24T21:40:27.000Z" + }, + "end": { + "$date": "2021-05-25T00:42:52.000Z" + }, + "events": [ + { + "uuid": "84b4a2d0-756b-4269-884e-09b4b5590c38", + "start": { + "$date": "2021-05-24T21:40:27.000Z" + }, + "end": { + "$date": "2021-05-25T00:42:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "d1c239f9-4d1b-47ba-8587-e696ac34aabb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-24T21:42:29.000Z" + }, + "end": { + "$date": "2021-05-24T22:22:52.000Z" + }, + "events": [ + { + "uuid": "22e3bc22-d30b-414a-9215-0280b3b8af2b", + "start": { + "$date": "2021-05-24T21:42:29.000Z" + }, + "end": { + "$date": "2021-05-24T22:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86e15367-7393-4f87-ba6e-6532c02f0011", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T22:06:24.000Z" + }, + "end": { + "$date": "2021-05-24T22:34:20.000Z" + }, + "events": [ + { + "uuid": "bc9ff3bd-efb9-43de-9fa7-4548cdb7414a", + "start": { + "$date": "2021-05-24T22:06:24.000Z" + }, + "end": { + "$date": "2021-05-24T22:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01a7ee95-5dee-44b4-81d1-32713b382da4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T22:06:19.000Z" + }, + "end": { + "$date": "2021-05-24T22:34:10.000Z" + }, + "events": [ + { + "uuid": "8b2e9200-bdbb-447f-a19a-2fdfbf9738dc", + "start": { + "$date": "2021-05-24T22:06:19.000Z" + }, + "end": { + "$date": "2021-05-24T22:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "20702873-cd06-4158-8bc9-348c31313178", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-24T22:06:41.000Z" + }, + "end": { + "$date": "2021-05-24T22:57:16.000Z" + }, + "events": [ + { + "uuid": "487b922c-80b5-4ac5-b3e4-e49931ea8925", + "start": { + "$date": "2021-05-24T22:06:41.000Z" + }, + "end": { + "$date": "2021-05-24T22:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a0196185-b255-44ba-8dbe-1167916c11c4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-24T22:26:43.000Z" + }, + "end": { + "$date": "2021-05-25T01:14:32.000Z" + }, + "events": [ + { + "uuid": "70749d4c-baa2-48f4-999b-06455085f0bf", + "start": { + "$date": "2021-05-24T22:26:43.000Z" + }, + "end": { + "$date": "2021-05-25T00:05:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "301900c3-99b4-4328-b7d2-9764f9903151", + "start": { + "$date": "2021-05-25T00:05:43.000Z" + }, + "end": { + "$date": "2021-05-25T00:15:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70f62ef8-0cf1-4b96-bb54-39213164a4be", + "start": { + "$date": "2021-05-25T00:15:43.000Z" + }, + "end": { + "$date": "2021-05-25T01:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "449bc78e-2604-4ac9-8aa2-6e81fb8485a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T22:40:31.000Z" + }, + "end": { + "$date": "2021-05-24T23:06:51.000Z" + }, + "events": [ + { + "uuid": "87ec9b08-7282-4dde-aff4-a2fd2f8c59fa", + "start": { + "$date": "2021-05-24T22:40:31.000Z" + }, + "end": { + "$date": "2021-05-24T23:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "056afa2a-f95f-4fb2-b41d-a46b40c88c20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T22:40:26.000Z" + }, + "end": { + "$date": "2021-05-24T23:06:37.000Z" + }, + "events": [ + { + "uuid": "c64b9213-ee10-4493-860b-1230622e5b34", + "start": { + "$date": "2021-05-24T22:40:26.000Z" + }, + "end": { + "$date": "2021-05-24T23:06:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff2dd895-d8eb-4516-9c6f-f752fd27e588", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T23:14:27.000Z" + }, + "end": { + "$date": "2021-05-24T23:36:32.000Z" + }, + "events": [ + { + "uuid": "6bf4b0ca-bd40-4ab5-b9e2-5c050d20c48c", + "start": { + "$date": "2021-05-24T23:14:27.000Z" + }, + "end": { + "$date": "2021-05-24T23:36:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ac28541-f6d3-41db-83c2-1b41fec37b4c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T23:14:19.000Z" + }, + "end": { + "$date": "2021-05-24T23:36:25.000Z" + }, + "events": [ + { + "uuid": "da2971f4-2b82-4fba-baa9-577eddd09e50", + "start": { + "$date": "2021-05-24T23:14:19.000Z" + }, + "end": { + "$date": "2021-05-24T23:36:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92717330-2b93-4bc1-a833-c9ad991d3b65", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-24T23:19:09.000Z" + }, + "end": { + "$date": "2021-05-25T01:03:30.000Z" + }, + "events": [ + { + "uuid": "35223f74-1b90-4707-b213-90e1cc924a1a", + "start": { + "$date": "2021-05-24T23:19:09.000Z" + }, + "end": { + "$date": "2021-05-24T23:20:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "353df7c3-18d7-4d81-a2d4-2f27af7f963f", + "start": { + "$date": "2021-05-24T23:20:09.000Z" + }, + "end": { + "$date": "2021-05-25T01:03:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "dc46d22c-d43c-4074-a7a1-63b5ec08b79d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-24T23:25:01.000Z" + }, + "end": { + "$date": "2021-05-25T00:22:37.000Z" + }, + "events": [ + { + "uuid": "8bdc196e-674e-4911-89fa-3608b7165471", + "start": { + "$date": "2021-05-24T23:25:01.000Z" + }, + "end": { + "$date": "2021-05-25T00:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d289fedd-4b9b-4203-af93-0a4354b5b191", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-24T23:47:11.000Z" + }, + "end": { + "$date": "2021-05-25T00:13:46.000Z" + }, + "events": [ + { + "uuid": "3769f79d-1dbb-4df8-97d7-23f4803d2275", + "start": { + "$date": "2021-05-24T23:47:11.000Z" + }, + "end": { + "$date": "2021-05-25T00:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2082876-d855-49a1-91a5-c7dc965b3a6d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-24T23:47:06.000Z" + }, + "end": { + "$date": "2021-05-25T00:13:41.000Z" + }, + "events": [ + { + "uuid": "5a75f12c-3e17-4c52-b691-27df98fe2aa3", + "start": { + "$date": "2021-05-24T23:47:06.000Z" + }, + "end": { + "$date": "2021-05-25T00:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c501ea17-09b1-4de6-b38e-d8f6883f9e06", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-25T03:38:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:06:00.000Z" + }, + "events": [ + { + "uuid": "421b407a-acc8-42f0-b161-4d3918f7758c", + "start": { + "$date": "2021-05-25T03:38:49.000Z" + }, + "end": { + "$date": "2021-05-25T03:49:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b4435aa-e67c-428a-8efc-4be67f1f005c", + "start": { + "$date": "2021-05-25T03:49:49.000Z" + }, + "end": { + "$date": "2021-05-25T03:52:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "536fe468-e32a-4050-96a7-92d16838c743", + "start": { + "$date": "2021-05-25T03:52:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:02:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46c0ba13-8b8f-40af-81cc-f0338fd90db6", + "start": { + "$date": "2021-05-25T04:02:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:03:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dda9f3cc-96ff-4ad3-b7dc-1445f1d22506", + "start": { + "$date": "2021-05-25T04:03:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:14:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "016f9e4c-265e-4ae3-a3b4-8fe90106ea2b", + "start": { + "$date": "2021-05-25T04:14:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:17:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7454505-2dde-4c4b-b2ba-80ab2d55c8c9", + "start": { + "$date": "2021-05-25T04:17:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:33:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a725735-f2db-47d5-b999-3d88cb5cef2b", + "start": { + "$date": "2021-05-25T04:33:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:41:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9c2160c-337e-4049-9f30-bb114b6ab428", + "start": { + "$date": "2021-05-25T04:41:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:52:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c45fdfd0-74af-4c50-8165-e2b4b31b18d5", + "start": { + "$date": "2021-05-25T04:52:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:53:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb859436-1df7-4b51-9575-591471153e35", + "start": { + "$date": "2021-05-25T04:53:49.000Z" + }, + "end": { + "$date": "2021-05-25T06:30:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d944134f-b392-4549-9427-8a360ea57087", + "start": { + "$date": "2021-05-25T06:30:49.000Z" + }, + "end": { + "$date": "2021-05-25T06:47:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b421dc16-ffc3-4138-b8dc-f6494aa25bba", + "start": { + "$date": "2021-05-25T06:47:49.000Z" + }, + "end": { + "$date": "2021-05-25T06:49:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f58f16d-d25d-445d-a9ea-1d929b09d3e6", + "start": { + "$date": "2021-05-25T06:49:49.000Z" + }, + "end": { + "$date": "2021-05-25T06:57:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2dfa6fa8-1875-4b77-8f06-6f96b0882b72", + "start": { + "$date": "2021-05-25T06:57:49.000Z" + }, + "end": { + "$date": "2021-05-25T04:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ec502667-9b89-44a3-a21d-f7cca9cc9db8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T00:14:19.000Z" + }, + "end": { + "$date": "2021-05-25T02:07:01.000Z" + }, + "events": [ + { + "uuid": "b4bdd14b-f4e0-4ad5-81cf-fb460f28fb4e", + "start": { + "$date": "2021-05-25T00:14:19.000Z" + }, + "end": { + "$date": "2021-05-25T01:34:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dfa6b949-bb4e-4563-aacb-4bcb25a2aeb9", + "start": { + "$date": "2021-05-25T01:34:19.000Z" + }, + "end": { + "$date": "2021-05-25T01:43:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0070ab6e-c8a0-4798-aa6c-faf8d1aca2fb", + "start": { + "$date": "2021-05-25T01:43:19.000Z" + }, + "end": { + "$date": "2021-05-25T02:07:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "abcc46ed-dc80-4363-853e-3052545d568f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-25T00:20:12.000Z" + }, + "end": { + "$date": "2021-05-25T01:00:52.000Z" + }, + "events": [ + { + "uuid": "c21891b5-008c-42d6-af5d-a43cb8d52a09", + "start": { + "$date": "2021-05-25T00:20:12.000Z" + }, + "end": { + "$date": "2021-05-25T01:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7385963f-893c-4bc0-b245-d8f3cff376a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T00:47:10.000Z" + }, + "end": { + "$date": "2021-05-25T01:17:14.000Z" + }, + "events": [ + { + "uuid": "5c13adca-3831-4f2c-9349-342fe4d1dde6", + "start": { + "$date": "2021-05-25T00:47:10.000Z" + }, + "end": { + "$date": "2021-05-25T01:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c90f791-416c-4331-b67d-34b482f70f18", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-25T01:12:37.000Z" + }, + "end": { + "$date": "2021-05-25T04:43:43.000Z" + }, + "events": [ + { + "uuid": "1c20a3fa-d498-4af7-97ed-17c969cb00e9", + "start": { + "$date": "2021-05-25T01:12:37.000Z" + }, + "end": { + "$date": "2021-05-25T04:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "20b3da18-9d9a-41d7-ae68-c4f7543cfa3f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-25T01:17:42.000Z" + }, + "end": { + "$date": "2021-05-25T04:44:15.000Z" + }, + "events": [ + { + "uuid": "c439ce3e-ece6-4adf-9fb5-47313e6ad966", + "start": { + "$date": "2021-05-25T01:17:42.000Z" + }, + "end": { + "$date": "2021-05-25T04:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "289eedce-94a8-47d5-b0c0-334c616f5c21", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-25T01:36:36.000Z" + }, + "end": { + "$date": "2021-05-25T03:14:32.000Z" + }, + "events": [ + { + "uuid": "0cb10787-5eb1-4e95-be88-da0d3a58e8df", + "start": { + "$date": "2021-05-25T01:36:36.000Z" + }, + "end": { + "$date": "2021-05-25T03:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "965f7adf-cbad-4b9e-b77c-e0441680b7c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-25T01:36:44.000Z" + }, + "end": { + "$date": "2021-05-25T03:14:44.000Z" + }, + "events": [ + { + "uuid": "3d2c06ce-4874-443c-a889-a680814158c2", + "start": { + "$date": "2021-05-25T01:36:44.000Z" + }, + "end": { + "$date": "2021-05-25T03:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c792c8f3-a804-48b1-b5d9-4ba92739c0d6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-25T01:47:07.000Z" + }, + "end": { + "$date": "2021-05-25T01:50:47.000Z" + }, + "events": [ + { + "uuid": "b73c9938-ed81-4304-b23d-84f76594a6cc", + "start": { + "$date": "2021-05-25T01:47:07.000Z" + }, + "end": { + "$date": "2021-05-25T01:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "10a6295d-0fac-436a-ba43-262a4f479f72", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T02:08:16.000Z" + }, + "end": { + "$date": "2021-05-25T04:43:44.000Z" + }, + "events": [ + { + "uuid": "8723d971-43d2-4e20-a311-595871ec6f78", + "start": { + "$date": "2021-05-25T02:08:16.000Z" + }, + "end": { + "$date": "2021-05-25T04:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "49a9a107-f9d8-45b4-a8a7-94abd9e8017a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-25T03:41:49.000Z" + }, + "end": { + "$date": "2021-05-25T05:44:41.000Z" + }, + "events": [ + { + "uuid": "d5e79097-7b26-4555-8864-5c809d9dc9e8", + "start": { + "$date": "2021-05-25T03:41:49.000Z" + }, + "end": { + "$date": "2021-05-25T05:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2265c186-f642-46b9-84f4-79a78340e24e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-25T04:15:00.000Z" + }, + "end": { + "$date": "2021-05-25T04:18:13.000Z" + }, + "events": [ + { + "uuid": "aa279313-45f2-43ed-b629-a9a71756ec2d", + "start": { + "$date": "2021-05-25T04:15:00.000Z" + }, + "end": { + "$date": "2021-05-25T04:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b663b3e-16e9-4d49-be46-9b202dba0102", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T04:15:01.000Z" + }, + "end": { + "$date": "2021-05-25T04:16:51.000Z" + }, + "events": [ + { + "uuid": "743db5e0-b6ba-4d6b-94f5-f8b2c787db47", + "start": { + "$date": "2021-05-25T04:15:01.000Z" + }, + "end": { + "$date": "2021-05-25T04:16:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e058b0f4-a373-46de-a203-1a481d578312", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-25T06:29:40.000Z" + }, + "end": { + "$date": "2021-05-25T06:32:12.000Z" + }, + "events": [ + { + "uuid": "1f2be8fc-6c61-4a5f-9729-3f7cc097b70e", + "start": { + "$date": "2021-05-25T06:29:40.000Z" + }, + "end": { + "$date": "2021-05-25T06:32:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fb9b5e2-3897-42d0-983f-8679da3040cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T04:59:35.000Z" + }, + "end": { + "$date": "2021-05-25T04:59:35.000Z" + }, + "events": [ + { + "uuid": "3fe7a549-3249-4a28-8e1f-98f98fec0b02", + "start": { + "$date": "2021-05-25T04:59:35.000Z" + }, + "end": { + "$date": "2021-05-25T04:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "41630a7b-7c9e-4e66-8e53-494f1073a3df", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-25T04:18:58.000Z" + }, + "end": { + "$date": "2021-05-25T05:44:25.000Z" + }, + "events": [ + { + "uuid": "058bb70b-9844-4f06-bb5c-885382432dfe", + "start": { + "$date": "2021-05-25T04:18:58.000Z" + }, + "end": { + "$date": "2021-05-25T05:44:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3744dc33-c134-46ae-996d-4657cf3e7b45", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-25T04:41:30.000Z" + }, + "end": { + "$date": "2021-05-25T07:27:23.000Z" + }, + "events": [ + { + "uuid": "3cf9edfd-6717-4b18-9640-c63944455e5c", + "start": { + "$date": "2021-05-25T04:41:30.000Z" + }, + "end": { + "$date": "2021-05-25T07:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "59627001-b654-42b1-b070-1e6f8e4fb6ad", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-25T04:43:43.000Z" + }, + "end": { + "$date": "2021-05-25T04:54:20.000Z" + }, + "events": [ + { + "uuid": "9c684bd4-6631-451a-b245-c10a87e30397", + "start": { + "$date": "2021-05-25T04:43:43.000Z" + }, + "end": { + "$date": "2021-05-25T04:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "585dfb3b-6c45-4ca5-b11d-381a2a70e816", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T05:05:47.000Z" + }, + "end": { + "$date": "2021-05-25T05:44:12.000Z" + }, + "events": [ + { + "uuid": "d04ffb30-8e9f-49cb-acea-6ef386136927", + "start": { + "$date": "2021-05-25T05:05:47.000Z" + }, + "end": { + "$date": "2021-05-25T05:44:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "693811e4-6482-41d5-9f60-5499e9fe7aea", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-25T05:12:45.000Z" + }, + "end": { + "$date": "2021-05-25T05:36:13.000Z" + }, + "events": [ + { + "uuid": "9b7eb09b-b1dc-43bc-86ff-6e8380f171db", + "start": { + "$date": "2021-05-25T05:12:45.000Z" + }, + "end": { + "$date": "2021-05-25T05:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4660144-1844-4441-8711-78c0199a4f1f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T05:50:14.000Z" + }, + "end": { + "$date": "2021-05-25T06:30:43.000Z" + }, + "events": [ + { + "uuid": "a4e89e94-f47a-435e-af2c-eceb71ef4468", + "start": { + "$date": "2021-05-25T05:50:14.000Z" + }, + "end": { + "$date": "2021-05-25T06:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5246a565-2bf6-4099-8f59-49b7c6e4bcf9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T06:04:46.000Z" + }, + "end": { + "$date": "2021-05-25T16:26:52.000Z" + }, + "events": [ + { + "uuid": "9c5a21be-ea23-4140-9bd0-618edf05ba5b", + "start": { + "$date": "2021-05-25T06:04:46.000Z" + }, + "end": { + "$date": "2021-05-25T06:16:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d438571c-fd89-407e-965a-be89deb52db4", + "start": { + "$date": "2021-05-25T06:16:46.000Z" + }, + "end": { + "$date": "2021-05-25T15:16:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d580435-cce5-47bc-aa33-de533184f416", + "start": { + "$date": "2021-05-25T15:16:46.000Z" + }, + "end": { + "$date": "2021-05-25T15:18:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63ce21c9-4da5-4f0d-8bd8-c34bf2ce5477", + "start": { + "$date": "2021-05-25T15:18:46.000Z" + }, + "end": { + "$date": "2021-05-25T15:33:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a064ef4f-7012-4c6f-b8a7-6b81f0cdfc6c", + "start": { + "$date": "2021-05-25T15:33:46.000Z" + }, + "end": { + "$date": "2021-05-25T15:35:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9faf804-d8ef-48b5-b040-22089565e37d", + "start": { + "$date": "2021-05-25T15:35:46.000Z" + }, + "end": { + "$date": "2021-05-25T15:43:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e1cf9629-871c-45c7-97ca-d827b4728dd6", + "start": { + "$date": "2021-05-25T15:43:46.000Z" + }, + "end": { + "$date": "2021-05-25T15:53:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b14c27a-743d-47ed-925f-1b4f0bda9f55", + "start": { + "$date": "2021-05-25T15:53:46.000Z" + }, + "end": { + "$date": "2021-05-25T16:02:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f407fbdf-6a50-4010-a33d-bd2063b55922", + "start": { + "$date": "2021-05-25T16:02:46.000Z" + }, + "end": { + "$date": "2021-05-25T16:26:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "607b90fe-70a6-46c3-948c-0078bb9bd8a0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-25T12:07:10.000Z" + }, + "end": { + "$date": "2021-05-25T13:09:36.000Z" + }, + "events": [ + { + "uuid": "33d19f36-2adf-4520-987a-a82ac51cf7ce", + "start": { + "$date": "2021-05-25T12:07:10.000Z" + }, + "end": { + "$date": "2021-05-25T13:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "d3ba17fd-badb-43b6-89d6-facdd161d879", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-25T14:12:30.000Z" + }, + "end": { + "$date": "2021-05-25T15:49:45.000Z" + }, + "events": [ + { + "uuid": "5ff2fef8-199e-416d-99fd-2cfb6750d4ea", + "start": { + "$date": "2021-05-25T14:12:30.000Z" + }, + "end": { + "$date": "2021-05-25T15:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "896dd646-08e9-49a2-a61c-680a174bb604", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-05-25T21:25:31.000Z" + }, + "end": { + "$date": "2021-05-25T21:25:36.000Z" + }, + "events": [ + { + "uuid": "3c1ac7d6-1dba-43b2-879f-7225ead4bde2", + "start": { + "$date": "2021-05-25T21:25:31.000Z" + }, + "end": { + "$date": "2021-05-26T01:03:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed939810-bc6e-4a44-a72a-0ade9b279575", + "start": { + "$date": "2021-05-26T01:03:31.000Z" + }, + "end": { + "$date": "2021-05-26T01:05:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f39c1be4-85d7-4631-849b-846ce42172e2", + "start": { + "$date": "2021-05-26T01:05:31.000Z" + }, + "end": { + "$date": "2021-05-26T01:15:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b0ee3bc-6c10-4d90-9eac-fe7f40839f87", + "start": { + "$date": "2021-05-26T01:15:31.000Z" + }, + "end": { + "$date": "2021-05-26T01:46:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f5bb4d53-b472-4eab-affc-071d6807ad75", + "start": { + "$date": "2021-05-26T01:46:31.000Z" + }, + "end": { + "$date": "2021-05-25T21:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "763d35c1-5053-453a-8e42-67fb382eb6c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-25T16:10:46.000Z" + }, + "end": { + "$date": "2021-05-25T16:13:08.000Z" + }, + "events": [ + { + "uuid": "d5fe7a17-9dfd-42a6-9c16-5d48604db99d", + "start": { + "$date": "2021-05-25T16:10:46.000Z" + }, + "end": { + "$date": "2021-05-25T16:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "42c02ba7-6a5d-4be8-8c48-beed6c91cac7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T16:27:05.000Z" + }, + "end": { + "$date": "2021-05-25T17:50:19.000Z" + }, + "events": [ + { + "uuid": "132503d5-9aab-4199-b8e0-8bd6d9ba9ae2", + "start": { + "$date": "2021-05-25T16:27:05.000Z" + }, + "end": { + "$date": "2021-05-25T17:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2c30312-59ec-4526-bcfb-26645fbe8d22", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T17:59:04.000Z" + }, + "end": { + "$date": "2021-05-25T18:34:43.000Z" + }, + "events": [ + { + "uuid": "a119a1a4-7da4-4142-a5db-2034fad84cf1", + "start": { + "$date": "2021-05-25T17:59:04.000Z" + }, + "end": { + "$date": "2021-05-25T18:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "38fece4e-2b8c-406a-a061-0b6e6d1d13e7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-25T17:53:51.000Z" + }, + "end": { + "$date": "2021-05-25T20:48:41.000Z" + }, + "events": [ + { + "uuid": "fdd1104c-81cd-4081-8852-850b6b5db3e7", + "start": { + "$date": "2021-05-25T17:53:51.000Z" + }, + "end": { + "$date": "2021-05-25T17:57:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5e7b199-fd68-4bee-b648-94f07e6cef19", + "start": { + "$date": "2021-05-25T17:57:51.000Z" + }, + "end": { + "$date": "2021-05-25T18:06:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b4c709d-2111-42e1-9197-ffc6db3ac88c", + "start": { + "$date": "2021-05-25T18:06:51.000Z" + }, + "end": { + "$date": "2021-05-25T18:09:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45fd60b3-719f-4bef-acfb-84ed14b64fba", + "start": { + "$date": "2021-05-25T18:09:51.000Z" + }, + "end": { + "$date": "2021-05-25T18:21:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1efd53f0-1b85-4793-a964-bcfef3d56859", + "start": { + "$date": "2021-05-25T18:21:51.000Z" + }, + "end": { + "$date": "2021-05-25T18:23:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aaa63ea3-c9f9-4c8d-9408-57e2311df45d", + "start": { + "$date": "2021-05-25T18:23:51.000Z" + }, + "end": { + "$date": "2021-05-25T18:46:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96aae52d-1220-458b-bdaa-7565216d9ae1", + "start": { + "$date": "2021-05-25T18:46:51.000Z" + }, + "end": { + "$date": "2021-05-25T18:49:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d048ffc9-e5fc-4e98-a2c7-ebb1e60f4acb", + "start": { + "$date": "2021-05-25T18:49:51.000Z" + }, + "end": { + "$date": "2021-05-25T19:28:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2731acf7-03e1-4669-a90a-5c86f7f6f34d", + "start": { + "$date": "2021-05-25T19:28:51.000Z" + }, + "end": { + "$date": "2021-05-25T19:43:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc744718-d4da-4db1-9b3d-b35a8b833d29", + "start": { + "$date": "2021-05-25T19:43:51.000Z" + }, + "end": { + "$date": "2021-05-25T19:48:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d177d62f-7614-40ea-ae17-2b309cc5fc2d", + "start": { + "$date": "2021-05-25T19:48:51.000Z" + }, + "end": { + "$date": "2021-05-25T19:52:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de17a631-7066-41ec-b1d8-802fb79fec16", + "start": { + "$date": "2021-05-25T19:52:51.000Z" + }, + "end": { + "$date": "2021-05-25T20:48:41.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92323d62-f203-479b-9795-0547be3778f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T18:34:26.000Z" + }, + "end": { + "$date": "2021-05-25T18:39:06.000Z" + }, + "events": [ + { + "uuid": "2c544ac7-b469-4ded-bbcb-0c3d84f50ced", + "start": { + "$date": "2021-05-25T18:34:26.000Z" + }, + "end": { + "$date": "2021-05-25T18:39:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "331b763f-c62a-4391-9f48-4938240f9086", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-25T18:47:56.000Z" + }, + "end": { + "$date": "2021-05-25T19:30:17.000Z" + }, + "events": [ + { + "uuid": "a7473969-56cf-4f60-ba4a-7352d9305330", + "start": { + "$date": "2021-05-25T18:47:56.000Z" + }, + "end": { + "$date": "2021-05-25T19:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7efba39-c3e8-4102-9e59-89978aab1f09", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T18:44:54.000Z" + }, + "end": { + "$date": "2021-05-25T19:30:18.000Z" + }, + "events": [ + { + "uuid": "f9afe7ad-76c1-4729-bd17-9daa0c8bbf86", + "start": { + "$date": "2021-05-25T18:44:54.000Z" + }, + "end": { + "$date": "2021-05-25T19:30:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75106d95-cb56-41b0-a598-6bcc72af3065", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T19:36:51.000Z" + }, + "end": { + "$date": "2021-05-25T19:39:22.000Z" + }, + "events": [ + { + "uuid": "e704163f-3690-45fe-aeef-5e6a0d36ac50", + "start": { + "$date": "2021-05-25T19:36:51.000Z" + }, + "end": { + "$date": "2021-05-25T19:39:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a080b7b5-d695-4307-80d8-dc9fa457266e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-25T19:05:09.000Z" + }, + "end": { + "$date": "2021-05-25T20:38:56.000Z" + }, + "events": [ + { + "uuid": "64848209-6270-48d6-a1a8-99660b3174c6", + "start": { + "$date": "2021-05-25T19:05:09.000Z" + }, + "end": { + "$date": "2021-05-25T20:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47aa4c53-909f-4326-8e66-e2ec591d95bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T19:35:26.000Z" + }, + "end": { + "$date": "2021-05-25T20:09:44.000Z" + }, + "events": [ + { + "uuid": "66cc26aa-2ee2-402c-9fde-6aac595b952d", + "start": { + "$date": "2021-05-25T19:35:26.000Z" + }, + "end": { + "$date": "2021-05-25T20:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "33e8f434-a15c-45b7-bc74-7c60048bc084", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-25T19:46:47.000Z" + }, + "end": { + "$date": "2021-05-25T21:30:01.000Z" + }, + "events": [ + { + "uuid": "0806d728-2f87-4e2e-9fc1-f4de605a58cc", + "start": { + "$date": "2021-05-25T19:46:47.000Z" + }, + "end": { + "$date": "2021-05-25T21:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6959d1f-c15b-4e88-ad3c-75191d51981a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T20:16:53.000Z" + }, + "end": { + "$date": "2021-05-25T20:26:53.000Z" + }, + "events": [ + { + "uuid": "1a3b2cbe-9883-4235-851a-85d03c49e63c", + "start": { + "$date": "2021-05-25T20:16:53.000Z" + }, + "end": { + "$date": "2021-05-25T20:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e244590f-6327-4152-b604-d38c941958b1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T20:28:29.000Z" + }, + "end": { + "$date": "2021-05-25T21:04:07.000Z" + }, + "events": [ + { + "uuid": "f01e3246-06f3-4d9d-bbdd-1b107cf642f0", + "start": { + "$date": "2021-05-25T20:28:29.000Z" + }, + "end": { + "$date": "2021-05-25T21:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0c41960-4530-4791-9596-e8fd941acdc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T20:52:27.000Z" + }, + "end": { + "$date": "2021-05-25T20:52:24.000Z" + }, + "events": [ + { + "uuid": "5e8c7c54-d74a-4da9-bb96-028a73217dfc", + "start": { + "$date": "2021-05-25T20:52:27.000Z" + }, + "end": { + "$date": "2021-05-25T20:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a79be2d2-cf69-41fe-8a31-f19fbd9c9d49", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-25T20:51:12.000Z" + }, + "end": { + "$date": "2021-05-26T00:05:16.000Z" + }, + "events": [ + { + "uuid": "9533b653-ffd3-4c67-ac10-9df04a57015c", + "start": { + "$date": "2021-05-25T20:51:12.000Z" + }, + "end": { + "$date": "2021-05-25T20:53:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a896127-df37-4cc9-8948-a10e65c01983", + "start": { + "$date": "2021-05-25T20:53:12.000Z" + }, + "end": { + "$date": "2021-05-25T21:21:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b3ffc2be-60e7-4113-97d4-202f5fe6a4e7", + "start": { + "$date": "2021-05-25T21:21:12.000Z" + }, + "end": { + "$date": "2021-05-25T21:23:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "11cae076-5275-4760-a8de-0e0303416c67", + "start": { + "$date": "2021-05-25T21:23:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:05:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf203b68-c883-4a39-8741-7c01e47e4519", + "start": { + "$date": "2021-05-25T22:05:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:08:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56b1c627-fa0b-4e76-b103-1e40af03c669", + "start": { + "$date": "2021-05-25T22:08:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:12:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e56d8bf4-a984-4f23-bc30-bf800e30dacc", + "start": { + "$date": "2021-05-25T22:12:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:16:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8026c6d8-4703-49f7-9084-9390a4c4feed", + "start": { + "$date": "2021-05-25T22:16:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:17:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eddd50b1-db51-4043-a144-bf381edde453", + "start": { + "$date": "2021-05-25T22:17:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:18:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fdfb9de6-678a-4cfa-8ea6-7d8920487dfa", + "start": { + "$date": "2021-05-25T22:18:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:29:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6a5e460-2ef5-4431-b28e-bc0d86e1516f", + "start": { + "$date": "2021-05-25T22:29:12.000Z" + }, + "end": { + "$date": "2021-05-25T22:32:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b67a6be-2168-4b36-9789-c0785b882f05", + "start": { + "$date": "2021-05-25T22:32:12.000Z" + }, + "end": { + "$date": "2021-05-25T23:15:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ac11f534-6782-4c97-a485-064874101914", + "start": { + "$date": "2021-05-25T23:15:12.000Z" + }, + "end": { + "$date": "2021-05-25T23:17:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "173b7e6c-5acd-40ff-add4-9f1e3fa93c76", + "start": { + "$date": "2021-05-25T23:17:12.000Z" + }, + "end": { + "$date": "2021-05-25T23:24:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79897f31-1214-4843-bc89-5a00f203c509", + "start": { + "$date": "2021-05-25T23:24:12.000Z" + }, + "end": { + "$date": "2021-05-25T23:26:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc79864a-1e83-49ce-a136-885bf9c9a0d5", + "start": { + "$date": "2021-05-25T23:26:12.000Z" + }, + "end": { + "$date": "2021-05-25T23:50:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b16ff933-c391-41a8-84a3-ada9ce82ab34", + "start": { + "$date": "2021-05-25T23:50:12.000Z" + }, + "end": { + "$date": "2021-05-25T23:52:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "65740ecf-fcde-4b2b-84a8-797e4b0da98e", + "start": { + "$date": "2021-05-25T23:52:12.000Z" + }, + "end": { + "$date": "2021-05-26T00:05:16.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "37d33bd6-2b7f-49c1-96a7-876b5bfbdcb0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-25T21:36:00.000Z" + }, + "end": { + "$date": "2021-05-26T00:18:10.000Z" + }, + "events": [ + { + "uuid": "b9e406d5-4368-4bb9-8da0-1c3f920eeb49", + "start": { + "$date": "2021-05-25T21:36:00.000Z" + }, + "end": { + "$date": "2021-05-26T00:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f5a46833-866e-465d-9720-8c86688044e7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-25T21:48:10.000Z" + }, + "end": { + "$date": "2021-05-26T07:42:48.000Z" + }, + "events": [ + { + "uuid": "8563f7ca-3844-4c57-99e9-ed18aa27bd78", + "start": { + "$date": "2021-05-25T21:48:10.000Z" + }, + "end": { + "$date": "2021-05-26T01:35:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "153cb96d-30f7-4dc8-a114-f6e5c2a29b59", + "start": { + "$date": "2021-05-26T01:35:10.000Z" + }, + "end": { + "$date": "2021-05-26T01:40:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed2c7177-7728-440d-95c6-ab8111380983", + "start": { + "$date": "2021-05-26T01:40:10.000Z" + }, + "end": { + "$date": "2021-05-26T01:50:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64f99826-46c4-4ef0-81c4-d30ee63d75a1", + "start": { + "$date": "2021-05-26T01:50:10.000Z" + }, + "end": { + "$date": "2021-05-26T02:01:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf3ce096-3ec1-4edd-8c32-9809f70160f9", + "start": { + "$date": "2021-05-26T02:01:10.000Z" + }, + "end": { + "$date": "2021-05-26T07:42:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "56811b48-17e6-46df-be0c-ba6f9824d484", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-25T21:57:22.000Z" + }, + "end": { + "$date": "2021-05-25T23:27:47.000Z" + }, + "events": [ + { + "uuid": "f59f4b2a-394b-4295-9204-ffb8ca1665d2", + "start": { + "$date": "2021-05-25T21:57:22.000Z" + }, + "end": { + "$date": "2021-05-25T23:27:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54d30937-018c-4d26-84df-47ad47e64bcc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T22:44:39.000Z" + }, + "end": { + "$date": "2021-05-25T22:44:36.000Z" + }, + "events": [ + { + "uuid": "c0667675-b59f-4d64-ac1f-eda633177441", + "start": { + "$date": "2021-05-25T22:44:39.000Z" + }, + "end": { + "$date": "2021-05-25T22:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1b9484d-d75e-4e46-88d9-25e4552fe6bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T22:47:04.000Z" + }, + "end": { + "$date": "2021-05-25T23:11:50.000Z" + }, + "events": [ + { + "uuid": "8cf69551-64e7-45cc-8b30-d30646653eb9", + "start": { + "$date": "2021-05-25T22:47:04.000Z" + }, + "end": { + "$date": "2021-05-25T23:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51b9a272-e916-45eb-b0dc-8f767648f2f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-25T23:20:16.000Z" + }, + "end": { + "$date": "2021-05-25T23:48:32.000Z" + }, + "events": [ + { + "uuid": "3d321649-f023-4cb9-9a37-3e91be98897b", + "start": { + "$date": "2021-05-25T23:20:16.000Z" + }, + "end": { + "$date": "2021-05-25T23:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cb40cd1-d0dc-4f24-9120-5ce566d24c0d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T23:18:30.000Z" + }, + "end": { + "$date": "2021-05-25T23:48:34.000Z" + }, + "events": [ + { + "uuid": "566fb188-6a16-483c-b31c-cbf6250b1080", + "start": { + "$date": "2021-05-25T23:18:30.000Z" + }, + "end": { + "$date": "2021-05-25T23:48:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5546f62d-e2e7-4919-afa4-aac190adc7a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-25T23:26:45.000Z" + }, + "end": { + "$date": "2021-05-26T00:49:12.000Z" + }, + "events": [ + { + "uuid": "d7184417-7631-45f1-8847-921346ac0a9f", + "start": { + "$date": "2021-05-25T23:26:45.000Z" + }, + "end": { + "$date": "2021-05-25T23:37:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "21805233-117c-4ed1-a3a1-c57b9efbc343", + "start": { + "$date": "2021-05-25T23:37:45.000Z" + }, + "end": { + "$date": "2021-05-26T00:49:12.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a254e88-93c2-4681-ac03-6694dd47a6fc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-25T23:54:37.000Z" + }, + "end": { + "$date": "2021-05-26T00:20:42.000Z" + }, + "events": [ + { + "uuid": "a1c3a6f3-fabc-4d75-a8ad-2ebed2e42217", + "start": { + "$date": "2021-05-25T23:54:37.000Z" + }, + "end": { + "$date": "2021-05-26T00:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7eb9b2ca-97c4-4f8a-8274-17df70668d02", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-25T23:54:17.000Z" + }, + "end": { + "$date": "2021-05-26T00:20:53.000Z" + }, + "events": [ + { + "uuid": "75d05917-0e81-46ed-a255-a347df94f7f2", + "start": { + "$date": "2021-05-25T23:54:17.000Z" + }, + "end": { + "$date": "2021-05-26T00:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f90c2559-f5aa-45b7-95c1-ade6a62000b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-26T00:26:38.000Z" + }, + "end": { + "$date": "2021-05-26T01:02:19.000Z" + }, + "events": [ + { + "uuid": "c3c8411a-1688-4bc7-a996-8463da2e587c", + "start": { + "$date": "2021-05-26T00:26:38.000Z" + }, + "end": { + "$date": "2021-05-26T01:02:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "091d9a04-a3d3-4100-a157-d838c60eb565", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T00:26:45.000Z" + }, + "end": { + "$date": "2021-05-26T01:02:26.000Z" + }, + "events": [ + { + "uuid": "a8978b51-00dc-436e-937e-02f4ce4d20c3", + "start": { + "$date": "2021-05-26T00:26:45.000Z" + }, + "end": { + "$date": "2021-05-26T01:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8db29cdc-2aba-4606-9d5b-35ce755a5e5d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-26T01:00:40.000Z" + }, + "end": { + "$date": "2021-05-26T01:11:21.000Z" + }, + "events": [ + { + "uuid": "5a669dfe-9380-4367-afc0-3aaebdf0e959", + "start": { + "$date": "2021-05-26T01:00:40.000Z" + }, + "end": { + "$date": "2021-05-26T01:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0589acaa-37f9-4a88-92d6-007a28e70706", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-05-26T01:11:39.000Z" + }, + "end": { + "$date": "2021-05-26T01:42:15.000Z" + }, + "events": [ + { + "uuid": "36e36940-88af-4027-bf5b-09cc366c31b8", + "start": { + "$date": "2021-05-26T01:11:39.000Z" + }, + "end": { + "$date": "2021-05-26T01:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "581372ab-1397-4a73-9c51-bc8816b944e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T01:11:14.000Z" + }, + "end": { + "$date": "2021-05-26T01:42:21.000Z" + }, + "events": [ + { + "uuid": "1f7d46da-9fb9-4064-b171-85e6d500d708", + "start": { + "$date": "2021-05-26T01:11:14.000Z" + }, + "end": { + "$date": "2021-05-26T01:42:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7dfc2456-71c3-403b-ada2-8b381919137c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T01:17:08.000Z" + }, + "end": { + "$date": "2021-05-26T01:19:53.000Z" + }, + "events": [ + { + "uuid": "7053a6e5-fb26-4dae-be3f-8cd5f0c766aa", + "start": { + "$date": "2021-05-26T01:17:08.000Z" + }, + "end": { + "$date": "2021-05-26T01:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d0567f35-d95a-4abc-b959-e48ddbf929db", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-26T05:15:48.000Z" + }, + "end": { + "$date": "2021-05-26T16:08:17.000Z" + }, + "events": [ + { + "uuid": "ddcf037a-fc81-47be-9555-c6e38977b2fc", + "start": { + "$date": "2021-05-26T05:15:48.000Z" + }, + "end": { + "$date": "2021-05-26T06:18:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86648490-3e3c-4e26-a2c3-853194eeee98", + "start": { + "$date": "2021-05-26T06:18:48.000Z" + }, + "end": { + "$date": "2021-05-26T06:24:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4c111ac3-a3f6-4e2b-b565-079da6575822", + "start": { + "$date": "2021-05-26T06:24:48.000Z" + }, + "end": { + "$date": "2021-05-26T09:44:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d3ebc45-f70d-4abe-ab6c-7526d961ee1b", + "start": { + "$date": "2021-05-26T09:44:48.000Z" + }, + "end": { + "$date": "2021-05-26T09:57:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4dafad14-9680-4766-812c-808bce291dd8", + "start": { + "$date": "2021-05-26T09:57:48.000Z" + }, + "end": { + "$date": "2021-05-26T10:16:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba588910-f8c7-4bf7-929d-d82bd552b17b", + "start": { + "$date": "2021-05-26T10:16:48.000Z" + }, + "end": { + "$date": "2021-05-26T10:17:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5902819a-99eb-446d-8597-55dac4a8d51c", + "start": { + "$date": "2021-05-26T10:17:48.000Z" + }, + "end": { + "$date": "2021-05-26T10:27:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd5426e5-c104-4d75-81b4-1f26b11083b0", + "start": { + "$date": "2021-05-26T10:27:48.000Z" + }, + "end": { + "$date": "2021-05-26T19:05:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79a08c22-5d32-4a1e-a852-85b6252919cf", + "start": { + "$date": "2021-05-26T19:05:48.000Z" + }, + "end": { + "$date": "2021-05-26T19:09:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "613e1c4d-fdc1-4140-b92e-e429e0b2d52a", + "start": { + "$date": "2021-05-26T19:09:48.000Z" + }, + "end": { + "$date": "2021-05-26T19:15:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "24ad60fe-ca4e-4e37-baed-8fc673697df8", + "start": { + "$date": "2021-05-26T19:15:48.000Z" + }, + "end": { + "$date": "2021-05-26T19:18:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6708b91a-218d-4aa6-9561-e6a51f503a31", + "start": { + "$date": "2021-05-26T19:18:48.000Z" + }, + "end": { + "$date": "2021-05-26T19:51:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ede170dd-5985-4a70-8994-fff383db1019", + "start": { + "$date": "2021-05-26T19:51:48.000Z" + }, + "end": { + "$date": "2021-05-26T16:08:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b9f4b403-c4b4-4c22-bbae-05899cfab600", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T01:20:38.000Z" + }, + "end": { + "$date": "2021-05-26T03:36:38.000Z" + }, + "events": [ + { + "uuid": "32dab34e-c7b5-4cc8-8013-26c9d33296d1", + "start": { + "$date": "2021-05-26T01:20:38.000Z" + }, + "end": { + "$date": "2021-05-26T03:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "98cb7d2c-e2e3-4965-9c9c-52e3d696a9c7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-26T01:54:11.000Z" + }, + "end": { + "$date": "2021-05-26T02:26:31.000Z" + }, + "events": [ + { + "uuid": "37fb770b-5898-4f10-bcac-af0b47cc579a", + "start": { + "$date": "2021-05-26T01:54:11.000Z" + }, + "end": { + "$date": "2021-05-26T02:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "beeb8aa0-cefa-456b-9042-7420c8b6bb87", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-26T02:06:09.000Z" + }, + "end": { + "$date": "2021-05-26T03:20:41.000Z" + }, + "events": [ + { + "uuid": "8a2526b3-dd7b-42af-a915-f706bf5bed2e", + "start": { + "$date": "2021-05-26T02:06:09.000Z" + }, + "end": { + "$date": "2021-05-26T03:20:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "855c4e40-24e6-4f9b-9cce-2e679d3b2382", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-26T03:33:21.000Z" + }, + "end": { + "$date": "2021-05-26T05:33:54.000Z" + }, + "events": [ + { + "uuid": "42c6aeb3-fceb-451b-8bbb-12aae7f7dd1f", + "start": { + "$date": "2021-05-26T03:33:21.000Z" + }, + "end": { + "$date": "2021-05-26T05:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79b3d549-dfb5-40aa-8a31-1a32e8b962df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T03:39:48.000Z" + }, + "end": { + "$date": "2021-05-26T04:07:55.000Z" + }, + "events": [ + { + "uuid": "0a55ba87-c5b7-4717-8324-230e73847025", + "start": { + "$date": "2021-05-26T03:39:48.000Z" + }, + "end": { + "$date": "2021-05-26T04:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "78a0f67d-dd02-4c82-9eac-84329dcca822", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T03:38:46.000Z" + }, + "end": { + "$date": "2021-05-26T05:34:09.000Z" + }, + "events": [ + { + "uuid": "22937df3-0445-4fdf-b95d-cd89ad07e299", + "start": { + "$date": "2021-05-26T03:38:46.000Z" + }, + "end": { + "$date": "2021-05-26T05:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7531d245-66fe-414a-80cd-0583943ec031", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-26T03:45:25.000Z" + }, + "end": { + "$date": "2021-05-26T04:04:51.000Z" + }, + "events": [ + { + "uuid": "eb5ec32e-58ec-4eb9-8c00-bea7f5c9a451", + "start": { + "$date": "2021-05-26T03:45:25.000Z" + }, + "end": { + "$date": "2021-05-26T04:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2a68ee97-7eeb-479c-9522-ad9d7dae3a25", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-26T03:45:58.000Z" + }, + "end": { + "$date": "2021-05-26T04:04:23.000Z" + }, + "events": [ + { + "uuid": "7ba39cde-6e9e-4f88-9c01-a638b37e3c85", + "start": { + "$date": "2021-05-26T03:45:58.000Z" + }, + "end": { + "$date": "2021-05-26T04:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0337470-ad42-41d8-baa4-80259c9345c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T04:14:25.000Z" + }, + "end": { + "$date": "2021-05-26T04:44:00.000Z" + }, + "events": [ + { + "uuid": "874d69af-c7d2-425a-a44d-5e2f2fcc6871", + "start": { + "$date": "2021-05-26T04:14:25.000Z" + }, + "end": { + "$date": "2021-05-26T04:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c46af244-5303-4173-ac77-1b67f49defc2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-26T04:09:47.000Z" + }, + "end": { + "$date": "2021-05-26T04:58:23.000Z" + }, + "events": [ + { + "uuid": "d5f54eb9-fa4f-496f-94f8-5f795496c851", + "start": { + "$date": "2021-05-26T04:09:47.000Z" + }, + "end": { + "$date": "2021-05-26T04:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "297c702a-e913-429a-a3a3-2447b6473b4b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-26T04:22:48.000Z" + }, + "end": { + "$date": "2021-05-26T04:55:43.000Z" + }, + "events": [ + { + "uuid": "f75bce70-6f59-46f8-8319-2c7f2c48c0f1", + "start": { + "$date": "2021-05-26T04:22:48.000Z" + }, + "end": { + "$date": "2021-05-26T04:55:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4955ad0-bdab-4044-b719-9a30edb27f38", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T04:50:21.000Z" + }, + "end": { + "$date": "2021-05-26T05:14:21.000Z" + }, + "events": [ + { + "uuid": "2989f5b4-cd9a-4d6e-94f5-10578da9508c", + "start": { + "$date": "2021-05-26T04:50:21.000Z" + }, + "end": { + "$date": "2021-05-26T05:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91ccf43f-199f-4f4b-9eb2-55e8ce372013", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-26T04:59:47.000Z" + }, + "end": { + "$date": "2021-05-26T05:31:48.000Z" + }, + "events": [ + { + "uuid": "052154fb-5f1b-42c8-89b5-6276a672ca7c", + "start": { + "$date": "2021-05-26T04:59:47.000Z" + }, + "end": { + "$date": "2021-05-26T05:31:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "c89b0e67-5baa-46af-95c5-796c59748634", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-26T04:58:33.000Z" + }, + "end": { + "$date": "2021-05-26T06:10:40.000Z" + }, + "events": [ + { + "uuid": "51c0d314-398c-456f-81b2-7af8c4ab81a0", + "start": { + "$date": "2021-05-26T04:58:33.000Z" + }, + "end": { + "$date": "2021-05-26T06:10:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d39fb38-10db-4740-a68b-e25437fbe22f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T05:19:28.000Z" + }, + "end": { + "$date": "2021-05-26T05:52:42.000Z" + }, + "events": [ + { + "uuid": "77d00111-39ab-47f0-b300-6e0a62b020c6", + "start": { + "$date": "2021-05-26T05:19:28.000Z" + }, + "end": { + "$date": "2021-05-26T05:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64be62d5-c5c1-4695-be07-4c546627484a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-05-26T05:44:52.000Z" + }, + "end": { + "$date": "2021-05-26T06:09:39.000Z" + }, + "events": [ + { + "uuid": "042f1e53-c124-427d-8f7f-dd6517acf469", + "start": { + "$date": "2021-05-26T05:44:52.000Z" + }, + "end": { + "$date": "2021-05-26T06:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2732fbeb-97da-41f2-9396-81ad80a60c86", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-26T05:48:14.000Z" + }, + "end": { + "$date": "2021-05-26T06:02:54.000Z" + }, + "events": [ + { + "uuid": "407a9b89-a30a-4b0c-b36b-d4262d29b795", + "start": { + "$date": "2021-05-26T05:48:14.000Z" + }, + "end": { + "$date": "2021-05-26T06:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "74e147ab-adb7-402c-b3d4-290e325b321d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-26T06:11:26.000Z" + }, + "end": { + "$date": "2021-05-26T06:31:31.000Z" + }, + "events": [ + { + "uuid": "4c97ed41-c19a-4bbc-a940-5a480be1d176", + "start": { + "$date": "2021-05-26T06:11:26.000Z" + }, + "end": { + "$date": "2021-05-26T06:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "91e7e110-addb-4e01-9135-8ae263355afb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-26T06:43:33.000Z" + }, + "end": { + "$date": "2021-05-26T07:39:27.000Z" + }, + "events": [ + { + "uuid": "c9fcb615-7cbe-46fb-9b33-1936568f1500", + "start": { + "$date": "2021-05-26T06:43:33.000Z" + }, + "end": { + "$date": "2021-05-26T07:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3b6ea51a-bc04-4c7c-9d67-f329d8668b33", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-26T15:01:19.000Z" + }, + "end": { + "$date": "2021-05-26T16:05:42.000Z" + }, + "events": [ + { + "uuid": "36343416-2eb1-4c06-83b8-7d2fb6c7dab5", + "start": { + "$date": "2021-05-26T15:01:19.000Z" + }, + "end": { + "$date": "2021-05-26T16:05:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "5fedc47d-f790-4a74-8a3a-7951d03d8316", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-26T16:06:31.000Z" + }, + "end": { + "$date": "2021-05-26T16:09:53.000Z" + }, + "events": [ + { + "uuid": "20df4141-a960-43e4-a88e-7f677f90ae72", + "start": { + "$date": "2021-05-26T16:06:31.000Z" + }, + "end": { + "$date": "2021-05-26T16:09:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bd09fa2b-da86-48c0-bc42-5fb025308f57", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-26T16:08:28.000Z" + }, + "end": { + "$date": "2021-05-26T16:13:19.000Z" + }, + "events": [ + { + "uuid": "c6c87490-0117-46a5-ad6b-8ded3036c895", + "start": { + "$date": "2021-05-26T16:08:28.000Z" + }, + "end": { + "$date": "2021-05-26T16:13:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "77eeba88-88f0-4a12-b56e-3f1637e39167", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-26T16:13:24.000Z" + }, + "end": { + "$date": "2021-05-26T16:29:58.000Z" + }, + "events": [ + { + "uuid": "089daa24-a994-4775-bdff-eabb8a588e14", + "start": { + "$date": "2021-05-26T16:13:24.000Z" + }, + "end": { + "$date": "2021-05-26T16:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5129dcf-3a75-4c3f-83f4-1c093f2f7a73", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-26T16:33:08.000Z" + }, + "end": { + "$date": "2021-05-26T17:07:42.000Z" + }, + "events": [ + { + "uuid": "c395ef01-eaf5-412f-a251-ccd4189cd897", + "start": { + "$date": "2021-05-26T16:33:08.000Z" + }, + "end": { + "$date": "2021-05-26T17:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6d519d09-99f3-4e5e-b394-e3f24b04224a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T18:21:01.000Z" + }, + "end": { + "$date": "2021-05-26T18:23:27.000Z" + }, + "events": [ + { + "uuid": "c72863e3-0dc1-4913-9aed-6cd51e67eb88", + "start": { + "$date": "2021-05-26T18:21:01.000Z" + }, + "end": { + "$date": "2021-05-26T18:23:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7a19d11d-533d-4aad-b7d7-577023b33df7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T18:24:16.000Z" + }, + "end": { + "$date": "2021-05-26T20:00:35.000Z" + }, + "events": [ + { + "uuid": "c3243834-51e0-4275-a724-90fcd7ece83f", + "start": { + "$date": "2021-05-26T18:24:16.000Z" + }, + "end": { + "$date": "2021-05-26T18:38:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b96c1e5-1220-4ec8-ba02-6ce03e417bce", + "start": { + "$date": "2021-05-26T18:38:16.000Z" + }, + "end": { + "$date": "2021-05-26T18:49:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "770de985-5bec-41b4-91e0-f141f3440465", + "start": { + "$date": "2021-05-26T18:49:16.000Z" + }, + "end": { + "$date": "2021-05-26T18:51:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "134ef105-3d55-417f-bcd2-c181f2f6fa71", + "start": { + "$date": "2021-05-26T18:51:16.000Z" + }, + "end": { + "$date": "2021-05-26T18:56:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6bbb9a1a-6913-4fe1-bfbc-7e64bfd27bb0", + "start": { + "$date": "2021-05-26T18:56:16.000Z" + }, + "end": { + "$date": "2021-05-26T18:59:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5594f7ca-50dd-4185-bb69-9ea60536d714", + "start": { + "$date": "2021-05-26T18:59:16.000Z" + }, + "end": { + "$date": "2021-05-26T19:14:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54a42ba1-98d4-47d7-a198-e1669b5e7105", + "start": { + "$date": "2021-05-26T19:14:16.000Z" + }, + "end": { + "$date": "2021-05-26T19:16:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9fb35002-419d-49c4-b223-773e19f31280", + "start": { + "$date": "2021-05-26T19:16:16.000Z" + }, + "end": { + "$date": "2021-05-26T19:49:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1d48b06f-d2ce-4b1c-a9a4-50d5b4c75879", + "start": { + "$date": "2021-05-26T19:49:16.000Z" + }, + "end": { + "$date": "2021-05-26T19:56:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7cb290e3-67a2-4a24-8391-76168d563fec", + "start": { + "$date": "2021-05-26T19:56:16.000Z" + }, + "end": { + "$date": "2021-05-26T19:57:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e501f1ad-d586-419d-8367-e9f8c5fd7d21", + "start": { + "$date": "2021-05-26T19:57:16.000Z" + }, + "end": { + "$date": "2021-05-26T20:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "927d8b1e-6254-43c9-81ce-35436be22258", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-26T19:17:17.000Z" + }, + "end": { + "$date": "2021-05-26T19:50:56.000Z" + }, + "events": [ + { + "uuid": "e440aa6c-c46e-48d2-b26e-345fee5d30c6", + "start": { + "$date": "2021-05-26T19:17:17.000Z" + }, + "end": { + "$date": "2021-05-26T19:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbb9c3c8-3cf5-415c-a658-055714c54888", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T19:16:35.000Z" + }, + "end": { + "$date": "2021-05-26T19:50:59.000Z" + }, + "events": [ + { + "uuid": "94a74004-f354-416e-8464-e036c4d90d9e", + "start": { + "$date": "2021-05-26T19:16:35.000Z" + }, + "end": { + "$date": "2021-05-26T19:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd6ab583-a39b-40b1-b543-04c95129962f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-26T20:00:35.000Z" + }, + "end": { + "$date": "2021-05-26T20:29:04.000Z" + }, + "events": [ + { + "uuid": "44914128-a81c-45af-b6b5-7c3a3046c65a", + "start": { + "$date": "2021-05-26T20:00:35.000Z" + }, + "end": { + "$date": "2021-05-26T20:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ff4b5ac-7fb7-4dbf-ae79-955260392469", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T19:59:28.000Z" + }, + "end": { + "$date": "2021-05-26T20:29:13.000Z" + }, + "events": [ + { + "uuid": "951dd7d0-2161-4855-82c3-78138fff62e8", + "start": { + "$date": "2021-05-26T19:59:28.000Z" + }, + "end": { + "$date": "2021-05-26T20:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7d4b6995-8bfe-447e-a367-811b3d0568e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-26T20:01:14.000Z" + }, + "end": { + "$date": "2021-05-26T20:48:06.000Z" + }, + "events": [ + { + "uuid": "1cb66330-97d6-4b63-974c-fec4c69ed089", + "start": { + "$date": "2021-05-26T20:01:14.000Z" + }, + "end": { + "$date": "2021-05-26T20:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "31398703-e9f3-4a00-bed7-3bb05a21172e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T20:03:50.000Z" + }, + "end": { + "$date": "2021-05-26T20:47:22.000Z" + }, + "events": [ + { + "uuid": "9ee763ae-5f2c-4f14-8aba-ef88127f3c31", + "start": { + "$date": "2021-05-26T20:03:50.000Z" + }, + "end": { + "$date": "2021-05-26T20:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5fd06842-4973-46a4-b269-f5cf1ba6eb9c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-26T20:10:15.000Z" + }, + "end": { + "$date": "2021-05-27T07:27:00.000Z" + }, + "events": [ + { + "uuid": "a37a0833-1599-4d8a-857d-50b42fde0d91", + "start": { + "$date": "2021-05-26T20:10:15.000Z" + }, + "end": { + "$date": "2021-05-26T21:25:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "474d5cd1-dfeb-470d-9497-b833ba005562", + "start": { + "$date": "2021-05-26T21:25:15.000Z" + }, + "end": { + "$date": "2021-05-26T22:38:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "536dc6a0-17de-449b-ace0-51e6d9e0de63", + "start": { + "$date": "2021-05-26T22:38:15.000Z" + }, + "end": { + "$date": "2021-05-27T00:26:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d9a0998-2e39-4185-a4dc-2c09800cc55a", + "start": { + "$date": "2021-05-27T00:26:15.000Z" + }, + "end": { + "$date": "2021-05-27T00:30:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6eceb57d-3ef3-4324-8d44-59f922b852bb", + "start": { + "$date": "2021-05-27T00:30:15.000Z" + }, + "end": { + "$date": "2021-05-27T03:24:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8650bd9-15c1-4dfb-b6f6-70767d559e3b", + "start": { + "$date": "2021-05-27T03:24:15.000Z" + }, + "end": { + "$date": "2021-05-27T03:29:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c272cef7-1d54-4c34-9259-6d5fb8f5afe3", + "start": { + "$date": "2021-05-27T03:29:15.000Z" + }, + "end": { + "$date": "2021-05-27T03:39:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da7944b5-67d2-40be-8d25-0814b3155b29", + "start": { + "$date": "2021-05-27T03:39:15.000Z" + }, + "end": { + "$date": "2021-05-27T03:40:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e30bd09-4879-4c54-af40-47e81e198f31", + "start": { + "$date": "2021-05-27T03:40:15.000Z" + }, + "end": { + "$date": "2021-05-27T07:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cafe66a6-8dbb-4e21-80c1-ea441b67525a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-26T20:44:18.000Z" + }, + "end": { + "$date": "2021-05-26T21:02:56.000Z" + }, + "events": [ + { + "uuid": "624beddf-1cc5-495b-a397-fbeb618ad8d7", + "start": { + "$date": "2021-05-26T20:44:18.000Z" + }, + "end": { + "$date": "2021-05-26T21:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ca68f444-9845-483e-834f-2e9e0ee884c3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-26T20:29:57.000Z" + }, + "end": { + "$date": "2021-05-26T20:38:17.000Z" + }, + "events": [ + { + "uuid": "a9004981-ad04-48d3-8245-62d1993caf8e", + "start": { + "$date": "2021-05-26T20:29:57.000Z" + }, + "end": { + "$date": "2021-05-26T20:38:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d5051e3-f05f-41ce-a921-c72a4e81d721", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T20:44:27.000Z" + }, + "end": { + "$date": "2021-05-26T21:02:55.000Z" + }, + "events": [ + { + "uuid": "625c16e7-089e-40c5-87f4-b85fded02e3a", + "start": { + "$date": "2021-05-26T20:44:27.000Z" + }, + "end": { + "$date": "2021-05-26T21:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0d268d64-4211-4d45-897b-f0a7c226c82c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-26T20:51:02.000Z" + }, + "end": { + "$date": "2021-05-27T02:18:39.000Z" + }, + "events": [ + { + "uuid": "ad835934-a94b-479e-b96c-437f3f5dfa77", + "start": { + "$date": "2021-05-26T20:51:02.000Z" + }, + "end": { + "$date": "2021-05-26T21:50:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a8d31b3c-218b-4037-8093-a2fffcd151ef", + "start": { + "$date": "2021-05-26T21:50:02.000Z" + }, + "end": { + "$date": "2021-05-26T22:11:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc4b0697-e3ad-4eb6-aafa-914787eec3e4", + "start": { + "$date": "2021-05-26T22:11:02.000Z" + }, + "end": { + "$date": "2021-05-26T22:13:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "abeb9a33-71e4-48f5-b42b-7277a1e21f22", + "start": { + "$date": "2021-05-26T22:13:02.000Z" + }, + "end": { + "$date": "2021-05-26T22:16:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20e5bb11-fd22-427d-8121-68cb4d443819", + "start": { + "$date": "2021-05-26T22:16:02.000Z" + }, + "end": { + "$date": "2021-05-26T22:27:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b782b331-a9d8-4106-9173-d67b3b630b6a", + "start": { + "$date": "2021-05-26T22:27:02.000Z" + }, + "end": { + "$date": "2021-05-26T23:02:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59ac5737-a064-4a30-837f-8959b03f80e5", + "start": { + "$date": "2021-05-26T23:02:02.000Z" + }, + "end": { + "$date": "2021-05-26T23:04:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9efaca7-89f0-4f85-8314-1a97765d35d4", + "start": { + "$date": "2021-05-26T23:04:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:01:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a09e463b-7e04-453b-87b1-dc3ccc968e95", + "start": { + "$date": "2021-05-27T00:01:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:04:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82a591c6-fec1-487b-832d-8d72507b7fec", + "start": { + "$date": "2021-05-27T00:04:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:09:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98e924ae-f650-48f2-9ce1-f96ecbd63e82", + "start": { + "$date": "2021-05-27T00:09:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:11:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aae80f35-4d45-4d3a-bb5c-44ae67e2da30", + "start": { + "$date": "2021-05-27T00:11:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:15:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e33a50a-a0cc-4bc5-a31a-831ab873a5dc", + "start": { + "$date": "2021-05-27T00:15:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:17:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4d9f542-a960-4b29-a6ef-0272811e531e", + "start": { + "$date": "2021-05-27T00:17:02.000Z" + }, + "end": { + "$date": "2021-05-27T00:44:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c6daddcd-8b74-4134-8350-70c91c8ba38b", + "start": { + "$date": "2021-05-27T00:44:02.000Z" + }, + "end": { + "$date": "2021-05-27T01:03:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de04cd6d-573b-4cfd-bfe8-f3a7b6980546", + "start": { + "$date": "2021-05-27T01:03:02.000Z" + }, + "end": { + "$date": "2021-05-27T01:22:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3384e0b0-88dd-4add-97ae-016bd778198b", + "start": { + "$date": "2021-05-27T01:22:02.000Z" + }, + "end": { + "$date": "2021-05-27T01:24:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e33a2ab8-de98-4238-bd9c-071e2013f56b", + "start": { + "$date": "2021-05-27T01:24:02.000Z" + }, + "end": { + "$date": "2021-05-27T02:14:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2b15d6d-51c2-4fb6-9529-502564e6da36", + "start": { + "$date": "2021-05-27T02:14:02.000Z" + }, + "end": { + "$date": "2021-05-27T02:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c4d32f0-de2b-4646-bbff-579deea62482", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T21:23:01.000Z" + }, + "end": { + "$date": "2021-05-26T21:52:26.000Z" + }, + "events": [ + { + "uuid": "84e3e5b8-c24c-4523-ac14-e44556c2ebfe", + "start": { + "$date": "2021-05-26T21:23:01.000Z" + }, + "end": { + "$date": "2021-05-26T21:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7f6996e-93e0-459b-9d6c-3f1825461a5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T21:58:02.000Z" + }, + "end": { + "$date": "2021-05-26T22:32:05.000Z" + }, + "events": [ + { + "uuid": "758ad315-bd0e-4c9a-bbc5-305b8c89c2df", + "start": { + "$date": "2021-05-26T21:58:02.000Z" + }, + "end": { + "$date": "2021-05-26T22:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d618bf7-0a2a-49bb-8140-cdf47830a9ba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-26T22:43:35.000Z" + }, + "end": { + "$date": "2021-05-26T23:05:58.000Z" + }, + "events": [ + { + "uuid": "87fb6325-6154-46bf-8c1a-c18ee732cc91", + "start": { + "$date": "2021-05-26T22:43:35.000Z" + }, + "end": { + "$date": "2021-05-26T23:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c42080d-6247-4cb3-8057-0788ee4b5c74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T22:43:42.000Z" + }, + "end": { + "$date": "2021-05-26T23:06:09.000Z" + }, + "events": [ + { + "uuid": "c63d00df-a711-4c0f-b1a4-537ee0eacd21", + "start": { + "$date": "2021-05-26T22:43:42.000Z" + }, + "end": { + "$date": "2021-05-26T23:06:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8fe4a747-4751-4675-9c62-fda3d85b1a74", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-26T22:48:38.000Z" + }, + "end": { + "$date": "2021-05-26T23:39:03.000Z" + }, + "events": [ + { + "uuid": "d3d4150d-c35a-4b3e-b745-11be5f58367d", + "start": { + "$date": "2021-05-26T22:48:38.000Z" + }, + "end": { + "$date": "2021-05-26T23:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1b1007b-283f-416c-8648-b0247095412e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-26T23:13:07.000Z" + }, + "end": { + "$date": "2021-05-26T23:42:14.000Z" + }, + "events": [ + { + "uuid": "4bce98c6-76c8-43b4-a244-457df69a664a", + "start": { + "$date": "2021-05-26T23:13:07.000Z" + }, + "end": { + "$date": "2021-05-26T23:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7e24450-5da9-4ce9-b5f8-cdbb413ebd53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T23:13:11.000Z" + }, + "end": { + "$date": "2021-05-26T23:42:18.000Z" + }, + "events": [ + { + "uuid": "f198daa4-987b-4d13-b39a-59f104d9754b", + "start": { + "$date": "2021-05-26T23:13:11.000Z" + }, + "end": { + "$date": "2021-05-26T23:42:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90578ffa-a5fb-46a4-ab7d-87c3a451051c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-26T23:48:54.000Z" + }, + "end": { + "$date": "2021-05-27T00:16:58.000Z" + }, + "events": [ + { + "uuid": "df606e90-4627-479a-9139-5b7d6f4c95e8", + "start": { + "$date": "2021-05-26T23:48:54.000Z" + }, + "end": { + "$date": "2021-05-27T00:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bea2f67-459c-4a7f-8fef-1718379b9be3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-26T23:47:23.000Z" + }, + "end": { + "$date": "2021-05-27T00:16:47.000Z" + }, + "events": [ + { + "uuid": "a0974a02-dfcf-45fe-a80b-244b25f3e4f4", + "start": { + "$date": "2021-05-26T23:47:23.000Z" + }, + "end": { + "$date": "2021-05-27T00:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "144b3f79-57f8-4025-9449-15280a5c6714", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T01:24:43.000Z" + }, + "end": { + "$date": "2021-05-27T01:44:26.000Z" + }, + "events": [ + { + "uuid": "b45284e1-11c1-4fd6-84ef-cbdcfc97f964", + "start": { + "$date": "2021-05-27T01:24:43.000Z" + }, + "end": { + "$date": "2021-05-27T01:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1b2503ad-cecd-4669-9d24-d131c8f0092f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-27T01:41:57.000Z" + }, + "end": { + "$date": "2021-05-27T02:58:56.000Z" + }, + "events": [ + { + "uuid": "41a0fbd7-87ea-4bee-86a9-be52a747132a", + "start": { + "$date": "2021-05-27T01:41:57.000Z" + }, + "end": { + "$date": "2021-05-27T02:42:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af382251-34ac-41dc-a34a-1fd74b7b13cb", + "start": { + "$date": "2021-05-27T02:42:57.000Z" + }, + "end": { + "$date": "2021-05-27T02:58:56.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d18efffc-b0cd-4eb0-8e94-7d2f0ae23a60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T01:44:49.000Z" + }, + "end": { + "$date": "2021-05-27T02:01:03.000Z" + }, + "events": [ + { + "uuid": "34dd0c51-10f0-49fb-9033-b929e92ab051", + "start": { + "$date": "2021-05-27T01:44:49.000Z" + }, + "end": { + "$date": "2021-05-27T02:01:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0dac749d-0da0-4cca-a40c-2252626c05bc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-27T02:19:28.000Z" + }, + "end": { + "$date": "2021-05-27T03:26:02.000Z" + }, + "events": [ + { + "uuid": "581076be-9fdb-4921-b8de-ff871ed3fd0b", + "start": { + "$date": "2021-05-27T02:19:28.000Z" + }, + "end": { + "$date": "2021-05-27T03:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b7df1643-48de-4fed-94ef-d0ec0b2eb935", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T02:43:00.000Z" + }, + "end": { + "$date": "2021-05-27T03:20:05.000Z" + }, + "events": [ + { + "uuid": "ccafb13d-d5d4-4fb3-ba06-2aa397cfe1da", + "start": { + "$date": "2021-05-27T02:43:00.000Z" + }, + "end": { + "$date": "2021-05-27T03:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "efc6dbdb-8b81-41c5-a408-93ffb7a53932", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-27T04:45:33.000Z" + }, + "end": { + "$date": "2021-05-27T05:31:21.000Z" + }, + "events": [ + { + "uuid": "d7292f77-b69e-4f99-8c04-080f901a0eb6", + "start": { + "$date": "2021-05-27T04:45:33.000Z" + }, + "end": { + "$date": "2021-05-27T05:39:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e75f436-bcaf-43bf-9a1f-188b161780fa", + "start": { + "$date": "2021-05-27T05:39:33.000Z" + }, + "end": { + "$date": "2021-05-27T05:53:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa4fa3ec-6a5b-48c3-925b-e58f93b8fa13", + "start": { + "$date": "2021-05-27T05:53:33.000Z" + }, + "end": { + "$date": "2021-05-27T06:12:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "291a3606-10ac-4341-ba39-83535b44fa3e", + "start": { + "$date": "2021-05-27T06:12:33.000Z" + }, + "end": { + "$date": "2021-05-27T06:22:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aeac2543-44c0-4926-a3ba-f130242fe0f6", + "start": { + "$date": "2021-05-27T06:22:33.000Z" + }, + "end": { + "$date": "2021-05-27T06:51:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "959b3618-6c59-4e2f-9914-ba8e57c60ed6", + "start": { + "$date": "2021-05-27T06:51:33.000Z" + }, + "end": { + "$date": "2021-05-27T07:07:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "72d97f0a-3fe3-4229-b4f0-53db54ff5b63", + "start": { + "$date": "2021-05-27T07:07:33.000Z" + }, + "end": { + "$date": "2021-05-27T05:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", + "uuid": "b27c4ddf-7fca-4b13-b75f-f8c3179e9dba", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-27T02:56:14.000Z" + }, + "end": { + "$date": "2021-05-27T03:08:44.000Z" + }, + "events": [ + { + "uuid": "8358dee5-f5e2-491c-bfb9-ab1525249126", + "start": { + "$date": "2021-05-27T02:56:14.000Z" + }, + "end": { + "$date": "2021-05-27T03:08:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eba569a6-174c-48ae-beca-b2b895854300", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T03:11:41.000Z" + }, + "end": { + "$date": "2021-05-27T03:37:59.000Z" + }, + "events": [ + { + "uuid": "d68d9d95-7bf8-4f62-92f0-bbd425bce123", + "start": { + "$date": "2021-05-27T03:11:41.000Z" + }, + "end": { + "$date": "2021-05-27T03:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "603065f5-0ca8-4820-b983-5e65d0b70a18", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-27T03:20:11.000Z" + }, + "end": { + "$date": "2021-05-27T04:38:44.000Z" + }, + "events": [ + { + "uuid": "b04ecf3b-fa6b-45b5-bf57-d9e3695e7d99", + "start": { + "$date": "2021-05-27T03:20:11.000Z" + }, + "end": { + "$date": "2021-05-27T04:38:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3f59f708-1930-441d-80c4-f56ad46b023b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T03:24:10.000Z" + }, + "end": { + "$date": "2021-05-27T04:36:51.000Z" + }, + "events": [ + { + "uuid": "ff0c5881-f13f-4d88-b357-1f474895b1a8", + "start": { + "$date": "2021-05-27T03:24:10.000Z" + }, + "end": { + "$date": "2021-05-27T04:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fba4d993-d3c3-4607-860f-ae54f19b5741", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-27T03:26:46.000Z" + }, + "end": { + "$date": "2021-05-27T04:38:42.000Z" + }, + "events": [ + { + "uuid": "45f1bce2-7965-45d5-bcc8-30f10a819960", + "start": { + "$date": "2021-05-27T03:26:46.000Z" + }, + "end": { + "$date": "2021-05-27T04:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "uuid": "472cab98-8dcc-4ec5-8789-743fba1ecffd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-27T03:36:16.000Z" + }, + "end": { + "$date": "2021-05-27T03:38:10.000Z" + }, + "events": [ + { + "uuid": "c153f561-28db-4deb-8eba-d0d849c03491", + "start": { + "$date": "2021-05-27T03:36:16.000Z" + }, + "end": { + "$date": "2021-05-27T03:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "debeeec5-f693-4403-b215-f7ce291750aa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-27T03:45:16.000Z" + }, + "end": { + "$date": "2021-05-27T04:23:56.000Z" + }, + "events": [ + { + "uuid": "73dcac67-88d9-4e4e-bf6d-c92fc84e2d2f", + "start": { + "$date": "2021-05-27T03:45:16.000Z" + }, + "end": { + "$date": "2021-05-27T04:23:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b32410d7-55c8-4e20-a713-2e16c99a9cef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T03:43:36.000Z" + }, + "end": { + "$date": "2021-05-27T04:24:04.000Z" + }, + "events": [ + { + "uuid": "b0556836-9d90-4ff8-a653-19d1e73164cf", + "start": { + "$date": "2021-05-27T03:43:36.000Z" + }, + "end": { + "$date": "2021-05-27T04:24:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e468de62-8de5-4dac-b2d1-66f5b4eb6564", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-27T03:56:55.000Z" + }, + "end": { + "$date": "2021-05-27T04:08:19.000Z" + }, + "events": [ + { + "uuid": "361f58ef-3a90-414f-91cf-af56cc46b6a8", + "start": { + "$date": "2021-05-27T03:56:55.000Z" + }, + "end": { + "$date": "2021-05-27T04:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6ae8afb-60dc-4c3d-b580-850ec35f4364", + "uuid": "f90db5f8-6875-4c01-9076-f89fd35eca1c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-27T04:13:09.000Z" + }, + "end": { + "$date": "2021-05-27T04:16:39.000Z" + }, + "events": [ + { + "uuid": "b0d6ab93-3e68-4335-983e-c8a6e826d84e", + "start": { + "$date": "2021-05-27T04:13:09.000Z" + }, + "end": { + "$date": "2021-05-27T04:16:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29087a92-a63d-4efb-8420-dfeca1a5082e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-27T04:29:19.000Z" + }, + "end": { + "$date": "2021-05-27T04:52:17.000Z" + }, + "events": [ + { + "uuid": "88303c8b-130b-4d45-8547-fd99ed36bd9b", + "start": { + "$date": "2021-05-27T04:29:19.000Z" + }, + "end": { + "$date": "2021-05-27T04:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac6924c1-e005-44ca-8b89-59d3d7f2f620", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T04:28:49.000Z" + }, + "end": { + "$date": "2021-05-27T04:52:14.000Z" + }, + "events": [ + { + "uuid": "585e8630-c4de-49d3-aa47-c924de6594ec", + "start": { + "$date": "2021-05-27T04:28:49.000Z" + }, + "end": { + "$date": "2021-05-27T04:52:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5efcf183-c6a2-4535-8a76-f3c813f206cc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T04:38:46.000Z" + }, + "end": { + "$date": "2021-05-27T12:02:44.000Z" + }, + "events": [ + { + "uuid": "15afd5f9-b079-4858-b4ed-1c69a098eb10", + "start": { + "$date": "2021-05-27T04:38:46.000Z" + }, + "end": { + "$date": "2021-05-27T04:50:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c6ca1a43-9d51-40c6-af05-1a0519221fec", + "start": { + "$date": "2021-05-27T04:50:46.000Z" + }, + "end": { + "$date": "2021-05-27T04:57:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f5acad95-350a-4d2d-ac7c-d80418450a70", + "start": { + "$date": "2021-05-27T04:57:46.000Z" + }, + "end": { + "$date": "2021-05-27T04:59:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9088a31-11e8-4ac0-98a5-68ad4b6b83d8", + "start": { + "$date": "2021-05-27T04:59:46.000Z" + }, + "end": { + "$date": "2021-05-27T05:04:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f8f39a3f-a7b9-4514-92c8-5af00b172b12", + "start": { + "$date": "2021-05-27T05:04:46.000Z" + }, + "end": { + "$date": "2021-05-27T05:06:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "32917aef-1839-41f4-9501-852bbc888223", + "start": { + "$date": "2021-05-27T05:06:46.000Z" + }, + "end": { + "$date": "2021-05-27T05:07:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6003d895-09a0-4e72-8421-938468981e9d", + "start": { + "$date": "2021-05-27T05:07:46.000Z" + }, + "end": { + "$date": "2021-05-27T05:09:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb9b1fe0-a852-4ca1-8b91-1a5a32b7a725", + "start": { + "$date": "2021-05-27T05:09:46.000Z" + }, + "end": { + "$date": "2021-05-27T12:02:44.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3228829b-93ee-4f72-9eeb-e6dba4fc4d7e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-27T04:38:53.000Z" + }, + "end": { + "$date": "2021-05-27T04:44:15.000Z" + }, + "events": [ + { + "uuid": "41edf61e-f1ae-4e8e-885f-fe60c26e8fc6", + "start": { + "$date": "2021-05-27T04:38:53.000Z" + }, + "end": { + "$date": "2021-05-27T04:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "056c2d24-d9c1-4649-881c-b588849addc0", + "uuid": "239ad872-b3a2-4c3a-9e98-f5cf1f56b215", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-27T04:40:22.000Z" + }, + "end": { + "$date": "2021-05-27T05:08:01.000Z" + }, + "events": [ + { + "uuid": "52ce2d00-70c6-4869-ab33-5f1334ea08fe", + "start": { + "$date": "2021-05-27T04:40:22.000Z" + }, + "end": { + "$date": "2021-05-27T05:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "dc94e7bd-eaf9-4f47-a08b-85b333d7fe6f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-27T04:43:50.000Z" + }, + "end": { + "$date": "2021-05-27T06:06:59.000Z" + }, + "events": [ + { + "uuid": "8fbb1d4c-8d49-4b27-98ed-3dfe38fe608b", + "start": { + "$date": "2021-05-27T04:43:50.000Z" + }, + "end": { + "$date": "2021-05-27T05:27:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2c0cbf7-054a-4b0c-8a9c-bea223060236", + "start": { + "$date": "2021-05-27T05:27:50.000Z" + }, + "end": { + "$date": "2021-05-27T05:35:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef0b5c79-85e9-4e20-b89d-8829982e6dac", + "start": { + "$date": "2021-05-27T05:35:50.000Z" + }, + "end": { + "$date": "2021-05-27T06:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51d57c43-ed1c-45f7-875c-e2ee2b8dbece", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T04:57:06.000Z" + }, + "end": { + "$date": "2021-05-27T04:58:12.000Z" + }, + "events": [ + { + "uuid": "7e5327f5-5d9d-422b-9e76-49a53b41bed5", + "start": { + "$date": "2021-05-27T04:57:06.000Z" + }, + "end": { + "$date": "2021-05-27T04:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d197df8-4364-4404-bcf4-29b45ff361d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T04:58:36.000Z" + }, + "end": { + "$date": "2021-05-27T05:22:50.000Z" + }, + "events": [ + { + "uuid": "b493e959-3230-4e0c-9853-f6186d59fea8", + "start": { + "$date": "2021-05-27T04:58:36.000Z" + }, + "end": { + "$date": "2021-05-27T05:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdf7c1c2-d0ef-4ccc-8952-b42c4ce16adc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T05:26:50.000Z" + }, + "end": { + "$date": "2021-05-27T06:00:28.000Z" + }, + "events": [ + { + "uuid": "a5d608b0-bafa-436b-89e2-d23a8e459d12", + "start": { + "$date": "2021-05-27T05:26:50.000Z" + }, + "end": { + "$date": "2021-05-27T06:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ef00f10-9571-4512-8d01-a5c32c3f16ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-27T05:35:13.000Z" + }, + "end": { + "$date": "2021-05-27T05:36:57.000Z" + }, + "events": [ + { + "uuid": "f65ce473-3c8e-43a5-8d58-ac2b474d1ef7", + "start": { + "$date": "2021-05-27T05:35:13.000Z" + }, + "end": { + "$date": "2021-05-27T05:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "09288dc8-ca3e-49a8-a08f-40214c17b4c5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-27T15:05:22.000Z" + }, + "end": { + "$date": "2021-05-27T16:48:43.000Z" + }, + "events": [ + { + "uuid": "751303f3-6d32-4988-bb60-5f0cd7744591", + "start": { + "$date": "2021-05-27T15:05:22.000Z" + }, + "end": { + "$date": "2021-05-27T16:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bac75415-f296-4904-9550-bf3f847466d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T15:22:25.000Z" + }, + "end": { + "$date": "2021-05-27T15:49:52.000Z" + }, + "events": [ + { + "uuid": "5da4fd0e-2761-48d3-b775-a3784d17dd45", + "start": { + "$date": "2021-05-27T15:22:25.000Z" + }, + "end": { + "$date": "2021-05-27T15:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "72839ca4-1c5f-4d70-8ba4-84464b44bd8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T15:41:44.000Z" + }, + "end": { + "$date": "2021-05-27T16:48:42.000Z" + }, + "events": [ + { + "uuid": "dda1eec6-ea61-447d-9e40-1a0dd62caab3", + "start": { + "$date": "2021-05-27T15:41:44.000Z" + }, + "end": { + "$date": "2021-05-27T16:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e66de49d-6cb7-49fb-a1b6-e1fe72538031", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T15:51:04.000Z" + }, + "end": { + "$date": "2021-05-27T16:33:12.000Z" + }, + "events": [ + { + "uuid": "c90570bf-8935-4634-8f4f-6784d6ad0fae", + "start": { + "$date": "2021-05-27T15:51:04.000Z" + }, + "end": { + "$date": "2021-05-27T16:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "24634183-f349-46fa-b100-f05d83cb22dc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-27T16:24:11.000Z" + }, + "end": { + "$date": "2021-05-27T17:13:26.000Z" + }, + "events": [ + { + "uuid": "ab45fdf0-467b-43bf-951b-24de80ed1477", + "start": { + "$date": "2021-05-27T16:24:11.000Z" + }, + "end": { + "$date": "2021-05-27T17:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01ce492b-61de-47e4-b988-807b9122d4de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T17:03:53.000Z" + }, + "end": { + "$date": "2021-05-27T17:52:05.000Z" + }, + "events": [ + { + "uuid": "6f94dcdd-c234-4a47-b17c-9449f38f0ffc", + "start": { + "$date": "2021-05-27T17:03:53.000Z" + }, + "end": { + "$date": "2021-05-27T17:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5322c4fe-b944-4f94-882a-46138f4edbf7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T18:00:21.000Z" + }, + "end": { + "$date": "2021-05-27T18:39:38.000Z" + }, + "events": [ + { + "uuid": "65064c28-31be-4557-add1-00199246cc69", + "start": { + "$date": "2021-05-27T18:00:21.000Z" + }, + "end": { + "$date": "2021-05-27T18:39:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a197b675-4fcd-422f-be71-a2a0d351274b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T18:25:43.000Z" + }, + "end": { + "$date": "2021-05-27T18:27:04.000Z" + }, + "events": [ + { + "uuid": "d4384fa1-d38d-4870-a886-4fc27048a3d7", + "start": { + "$date": "2021-05-27T18:25:43.000Z" + }, + "end": { + "$date": "2021-05-27T18:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d45548e5-d4e2-4541-b4f5-d870473f9e1a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-27T18:28:04.000Z" + }, + "end": { + "$date": "2021-05-28T00:50:15.000Z" + }, + "events": [ + { + "uuid": "4defae3b-1526-4404-b9b8-9b21fd9cee78", + "start": { + "$date": "2021-05-27T18:28:04.000Z" + }, + "end": { + "$date": "2021-05-27T18:40:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cdcedcd1-c1b8-4948-933f-0bc4520d63fb", + "start": { + "$date": "2021-05-27T18:40:04.000Z" + }, + "end": { + "$date": "2021-05-27T18:51:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "75b001ae-c7b8-442e-b6ed-b2fda0edeb2c", + "start": { + "$date": "2021-05-27T18:51:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:21:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e75572ec-2707-4dea-93e6-0876b79a02dd", + "start": { + "$date": "2021-05-27T20:21:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:25:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3bcac19f-1edc-412c-ac60-f21a7a0cd0a0", + "start": { + "$date": "2021-05-27T20:25:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:28:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62aa0344-37b5-4dfd-af9e-abff975e3e09", + "start": { + "$date": "2021-05-27T20:28:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:43:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c1fe4db9-5fab-49bf-b0b3-903c9ce41c90", + "start": { + "$date": "2021-05-27T20:43:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:47:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3838d52e-95b4-4b20-8e09-c333380864db", + "start": { + "$date": "2021-05-27T20:47:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:52:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dffaf0a8-1038-4e15-b6d5-f0bb7aec3b0a", + "start": { + "$date": "2021-05-27T20:52:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:54:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7a3830b-fb64-43ec-83b2-074e0f7fb825", + "start": { + "$date": "2021-05-27T20:54:04.000Z" + }, + "end": { + "$date": "2021-05-27T20:55:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba448309-6e0c-4967-9e15-0deece20338b", + "start": { + "$date": "2021-05-27T20:55:04.000Z" + }, + "end": { + "$date": "2021-05-27T21:05:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74455b75-9de1-414f-b256-7bab8f6a9a90", + "start": { + "$date": "2021-05-27T21:05:04.000Z" + }, + "end": { + "$date": "2021-05-27T21:42:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0306adb-262f-4d88-ae55-802162d34e2c", + "start": { + "$date": "2021-05-27T21:42:04.000Z" + }, + "end": { + "$date": "2021-05-27T21:45:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "353bca97-8d3f-4c94-9a04-62a508b44aae", + "start": { + "$date": "2021-05-27T21:45:04.000Z" + }, + "end": { + "$date": "2021-05-27T21:50:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cdb76f1e-7b87-4b94-8ea5-a9df786094b6", + "start": { + "$date": "2021-05-27T21:50:04.000Z" + }, + "end": { + "$date": "2021-05-27T21:52:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "395bade1-a062-4cdf-b9f3-f10228a1a812", + "start": { + "$date": "2021-05-27T21:52:04.000Z" + }, + "end": { + "$date": "2021-05-27T22:22:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0a1daffd-92db-4d0d-a062-36da333cc7a7", + "start": { + "$date": "2021-05-27T22:22:04.000Z" + }, + "end": { + "$date": "2021-05-27T22:33:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "572367a6-0e3a-4f65-8a17-cb2734b3f13e", + "start": { + "$date": "2021-05-27T22:33:04.000Z" + }, + "end": { + "$date": "2021-05-28T00:33:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e18c5984-8463-4797-9486-590ec3515c51", + "start": { + "$date": "2021-05-28T00:33:04.000Z" + }, + "end": { + "$date": "2021-05-28T00:50:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bb315113-589f-46b4-ab54-6a98f127bfc1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-27T18:35:08.000Z" + }, + "end": { + "$date": "2021-05-27T19:09:32.000Z" + }, + "events": [ + { + "uuid": "d496d74a-3594-4fb0-ad6b-bc88c1fdcd97", + "start": { + "$date": "2021-05-27T18:35:08.000Z" + }, + "end": { + "$date": "2021-05-27T18:51:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2585706f-88a9-4049-be46-4338cbd7bbfc", + "start": { + "$date": "2021-05-27T18:51:08.000Z" + }, + "end": { + "$date": "2021-05-27T19:08:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "466eb3eb-1965-40fc-a16b-2d9ea07190b3", + "start": { + "$date": "2021-05-27T19:08:08.000Z" + }, + "end": { + "$date": "2021-05-27T19:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "43d95a14-0c45-4f22-88ce-031dbc1f43cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-27T23:56:20.000Z" + }, + "end": { + "$date": "2021-05-27T23:57:55.000Z" + }, + "events": [ + { + "uuid": "c44a6994-e4fa-4804-925a-42506be25a46", + "start": { + "$date": "2021-05-27T23:56:20.000Z" + }, + "end": { + "$date": "2021-05-28T01:34:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ac58f1bf-ae0b-4564-9350-16dbab6036c7", + "start": { + "$date": "2021-05-28T01:34:20.000Z" + }, + "end": { + "$date": "2021-05-28T01:40:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fcb5dd12-ded2-4b29-8a67-bf5975cb02aa", + "start": { + "$date": "2021-05-28T01:40:20.000Z" + }, + "end": { + "$date": "2021-05-28T01:42:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd37c606-14ec-462a-b962-56cbfd9ad2de", + "start": { + "$date": "2021-05-28T01:42:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:03:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a4d57ec-f2af-4a7a-9f90-dc8eb3e72bd2", + "start": { + "$date": "2021-05-28T02:03:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:06:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "526ce380-38d7-40d9-8b0b-ec22c59648b0", + "start": { + "$date": "2021-05-28T02:06:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:10:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1714924d-766f-4375-99d5-329f4868274c", + "start": { + "$date": "2021-05-28T02:10:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:13:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd6d8fda-947a-4660-a69b-170c756db992", + "start": { + "$date": "2021-05-28T02:13:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:20:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "85f33178-0e5c-41eb-9890-2e06ead39ad7", + "start": { + "$date": "2021-05-28T02:20:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:35:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "990adefb-d869-4f09-aff7-ca57c309b1d7", + "start": { + "$date": "2021-05-28T02:35:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:40:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "308fd496-b7ee-4039-aea2-14942dd5a555", + "start": { + "$date": "2021-05-28T02:40:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:43:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f636be3-edd4-4372-aa5f-7db6a3532fd4", + "start": { + "$date": "2021-05-28T02:43:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:46:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "38a7f41b-ba06-400a-a89d-076b228a0319", + "start": { + "$date": "2021-05-28T02:46:20.000Z" + }, + "end": { + "$date": "2021-05-28T02:57:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "985315a6-0f39-403b-bb4e-21d6c5684bce", + "start": { + "$date": "2021-05-28T02:57:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:03:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "739df23c-6f10-4295-9aaa-f9af2303d785", + "start": { + "$date": "2021-05-28T03:03:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:12:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9195a6ae-eb59-4d40-a05e-68fc2ba060d9", + "start": { + "$date": "2021-05-28T03:12:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:24:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7fc1dcaf-c824-4a26-bf32-9842c5da4264", + "start": { + "$date": "2021-05-28T03:24:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:28:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6ae0ec4-ead8-49d2-bb43-b793d78e9680", + "start": { + "$date": "2021-05-28T03:28:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:48:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "406a1b34-3cad-43de-a2f7-b671034f87ad", + "start": { + "$date": "2021-05-28T03:48:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:50:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f8db2c4-c7b6-47ba-8693-4b0727f41f6c", + "start": { + "$date": "2021-05-28T03:50:20.000Z" + }, + "end": { + "$date": "2021-05-28T04:00:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "17f1fe2a-facc-483e-bf36-c958d223d5d3", + "start": { + "$date": "2021-05-28T04:00:20.000Z" + }, + "end": { + "$date": "2021-05-27T23:57:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f249ff80-51bb-4be3-8839-df194992562f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-27T19:26:32.000Z" + }, + "end": { + "$date": "2021-05-27T20:49:00.000Z" + }, + "events": [ + { + "uuid": "8197677d-21c0-4dcd-9aca-4af4442a7e34", + "start": { + "$date": "2021-05-27T19:26:32.000Z" + }, + "end": { + "$date": "2021-05-27T20:49:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea289897-01f6-441b-894b-67c1da06754b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T19:37:57.000Z" + }, + "end": { + "$date": "2021-05-27T20:16:25.000Z" + }, + "events": [ + { + "uuid": "c7b7d3be-ddeb-4b69-91c3-22fb209ed2d9", + "start": { + "$date": "2021-05-27T19:37:57.000Z" + }, + "end": { + "$date": "2021-05-27T20:16:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22246371-cda2-44fb-bc8a-abbe7f653931", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T20:23:19.000Z" + }, + "end": { + "$date": "2021-05-27T20:56:30.000Z" + }, + "events": [ + { + "uuid": "2f41022d-75a5-49c5-b5c9-9a68eb91370e", + "start": { + "$date": "2021-05-27T20:23:19.000Z" + }, + "end": { + "$date": "2021-05-27T20:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "11ebe06b-1b86-4c93-b92d-42400d57f8b7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-27T20:53:34.000Z" + }, + "end": { + "$date": "2021-05-28T01:01:45.000Z" + }, + "events": [ + { + "uuid": "78f4338c-c735-4c2a-b673-60fad3876329", + "start": { + "$date": "2021-05-27T20:53:34.000Z" + }, + "end": { + "$date": "2021-05-28T01:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08241a97-ddc1-45be-8d4a-736efdb98b20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-27T21:02:40.000Z" + }, + "end": { + "$date": "2021-05-27T21:35:13.000Z" + }, + "events": [ + { + "uuid": "c172718f-ea92-415e-8ddb-bc0889e1624e", + "start": { + "$date": "2021-05-27T21:02:40.000Z" + }, + "end": { + "$date": "2021-05-27T21:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "32313341-56fb-4fb3-a6e9-69b53563fd29", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-27T21:04:29.000Z" + }, + "end": { + "$date": "2021-05-27T21:06:04.000Z" + }, + "events": [ + { + "uuid": "94c943bc-b71b-4cbb-8515-a4aa14a68576", + "start": { + "$date": "2021-05-27T21:04:29.000Z" + }, + "end": { + "$date": "2021-05-27T21:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6d73eec7-e7cd-402b-984d-d15b45d6ad05", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-27T21:06:44.000Z" + }, + "end": { + "$date": "2021-05-28T00:34:41.000Z" + }, + "events": [ + { + "uuid": "029c8de9-be96-465d-a3de-a300b27f5e83", + "start": { + "$date": "2021-05-27T21:06:44.000Z" + }, + "end": { + "$date": "2021-05-27T22:39:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "529ace20-04f7-432d-929d-adc50146f81c", + "start": { + "$date": "2021-05-27T22:39:44.000Z" + }, + "end": { + "$date": "2021-05-27T22:40:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b5806f3-8bd1-4b9b-ae55-e1f183ba7a2a", + "start": { + "$date": "2021-05-27T22:40:44.000Z" + }, + "end": { + "$date": "2021-05-28T00:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75457164-96cd-4ee6-a8c6-ab045dbc50f6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T00:10:29.000Z" + }, + "end": { + "$date": "2021-05-28T00:22:20.000Z" + }, + "events": [ + { + "uuid": "58755814-c3bb-45be-b2c0-87058510dd1f", + "start": { + "$date": "2021-05-28T00:10:29.000Z" + }, + "end": { + "$date": "2021-05-28T00:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a611f3c-d4b2-4cd9-bc89-ef804ddcaedc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T00:25:37.000Z" + }, + "end": { + "$date": "2021-05-28T00:42:06.000Z" + }, + "events": [ + { + "uuid": "519d7a39-192b-4002-b983-0ec928c61c31", + "start": { + "$date": "2021-05-28T00:25:37.000Z" + }, + "end": { + "$date": "2021-05-28T00:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7a8afd9-d52e-4a03-9fd2-f7f79b8f08b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T00:44:19.000Z" + }, + "end": { + "$date": "2021-05-28T01:00:11.000Z" + }, + "events": [ + { + "uuid": "735ff254-296e-4bd1-9dd7-51e374564963", + "start": { + "$date": "2021-05-28T00:44:19.000Z" + }, + "end": { + "$date": "2021-05-28T01:00:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfdddb15-102b-4d1e-ade0-78cd27938645", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T00:50:14.000Z" + }, + "end": { + "$date": "2021-05-28T01:10:03.000Z" + }, + "events": [ + { + "uuid": "4d0c0ed4-a4be-4e18-b866-52126cd743fa", + "start": { + "$date": "2021-05-28T00:50:14.000Z" + }, + "end": { + "$date": "2021-05-28T01:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "00abc642-4b98-469e-b6f3-ae3b21d7e624", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T00:53:10.000Z" + }, + "end": { + "$date": "2021-05-28T01:27:19.000Z" + }, + "events": [ + { + "uuid": "3dac247c-c6fe-4bf3-9748-18dab826298c", + "start": { + "$date": "2021-05-28T00:53:10.000Z" + }, + "end": { + "$date": "2021-05-28T01:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c599744d-9055-41fa-8e71-7194ff3f740d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T01:14:19.000Z" + }, + "end": { + "$date": "2021-05-28T01:26:54.000Z" + }, + "events": [ + { + "uuid": "01a03350-25ec-446c-9b4a-65fb58b41d5b", + "start": { + "$date": "2021-05-28T01:14:19.000Z" + }, + "end": { + "$date": "2021-05-28T01:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cf12bbf-679d-4595-8f0d-f1431ea5c602", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T01:13:35.000Z" + }, + "end": { + "$date": "2021-05-28T01:27:02.000Z" + }, + "events": [ + { + "uuid": "567ffaf6-cf8e-47eb-81bd-da062bc080fb", + "start": { + "$date": "2021-05-28T01:13:35.000Z" + }, + "end": { + "$date": "2021-05-28T01:27:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f42801a8-2d7d-4332-983d-637142e9e4c8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T01:31:20.000Z" + }, + "end": { + "$date": "2021-05-28T01:51:00.000Z" + }, + "events": [ + { + "uuid": "389e909c-e95d-4834-8dee-206c8ceca75c", + "start": { + "$date": "2021-05-28T01:31:20.000Z" + }, + "end": { + "$date": "2021-05-28T01:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e376491c-5f9b-417f-b7b8-b2da2bad4a38", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T01:30:12.000Z" + }, + "end": { + "$date": "2021-05-28T01:51:11.000Z" + }, + "events": [ + { + "uuid": "5e10a584-25c5-47e4-91d4-97a364f6aab7", + "start": { + "$date": "2021-05-28T01:30:12.000Z" + }, + "end": { + "$date": "2021-05-28T01:51:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26b30d39-a924-4d4d-beb5-7bcb167eba70", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T01:31:15.000Z" + }, + "end": { + "$date": "2021-05-28T01:51:05.000Z" + }, + "events": [ + { + "uuid": "63be1252-68dd-46a2-8eff-4d85afeeaf69", + "start": { + "$date": "2021-05-28T01:31:15.000Z" + }, + "end": { + "$date": "2021-05-28T01:51:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0307b8fd-17a3-4781-b2ae-0702adfe7820", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T01:38:52.000Z" + }, + "end": { + "$date": "2021-05-28T02:56:32.000Z" + }, + "events": [ + { + "uuid": "e5b67f61-a9af-4770-a711-0cba8fd99c5b", + "start": { + "$date": "2021-05-28T01:38:52.000Z" + }, + "end": { + "$date": "2021-05-28T02:29:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed38d5c0-7ba6-4502-af6a-6a137d05abf6", + "start": { + "$date": "2021-05-28T02:29:52.000Z" + }, + "end": { + "$date": "2021-05-28T02:34:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "822c6d78-5288-4d7e-a141-dad82d5ae7c6", + "start": { + "$date": "2021-05-28T02:34:52.000Z" + }, + "end": { + "$date": "2021-05-28T02:45:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4ae1d1e-6ffa-4238-bc9f-365b9c4e7e66", + "start": { + "$date": "2021-05-28T02:45:52.000Z" + }, + "end": { + "$date": "2021-05-28T02:49:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c7983d2a-0216-4fb2-8550-bee5937e10b4", + "start": { + "$date": "2021-05-28T02:49:52.000Z" + }, + "end": { + "$date": "2021-05-28T02:56:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "eeee718b-d07c-46c7-8e7c-fd43f46a6b2f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-28T01:47:24.000Z" + }, + "end": { + "$date": "2021-05-28T07:35:36.000Z" + }, + "events": [ + { + "uuid": "5f21025d-10e5-48df-8983-e86626ddb092", + "start": { + "$date": "2021-05-28T01:47:24.000Z" + }, + "end": { + "$date": "2021-05-28T07:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bef5904-c3dc-4f9b-bfde-370df2eb5cc4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T01:55:51.000Z" + }, + "end": { + "$date": "2021-05-28T02:12:57.000Z" + }, + "events": [ + { + "uuid": "ca59dcbf-7819-44e3-962f-e5729530f4db", + "start": { + "$date": "2021-05-28T01:55:51.000Z" + }, + "end": { + "$date": "2021-05-28T02:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e60bc94e-f56b-4dc4-bef9-b625110c44b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T01:56:00.000Z" + }, + "end": { + "$date": "2021-05-28T02:12:40.000Z" + }, + "events": [ + { + "uuid": "8d8fd119-5d89-4326-9791-1c22a0ed4792", + "start": { + "$date": "2021-05-28T01:56:00.000Z" + }, + "end": { + "$date": "2021-05-28T02:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "035b9ad8-4e54-4dbb-8afb-01a34b8a75f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T01:54:38.000Z" + }, + "end": { + "$date": "2021-05-28T02:12:51.000Z" + }, + "events": [ + { + "uuid": "90849184-8666-4e81-8454-530f59a7d680", + "start": { + "$date": "2021-05-28T01:54:38.000Z" + }, + "end": { + "$date": "2021-05-28T02:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ca0518b5-f8a8-44d2-b437-22bf49c30ea8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-28T02:01:14.000Z" + }, + "end": { + "$date": "2021-05-28T06:13:33.000Z" + }, + "events": [ + { + "uuid": "dce94a08-f18a-4f30-8ee9-a655797e2534", + "start": { + "$date": "2021-05-28T02:01:14.000Z" + }, + "end": { + "$date": "2021-05-28T03:52:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24949fc4-e497-4ba5-9891-7a7317b728ab", + "start": { + "$date": "2021-05-28T03:52:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:07:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "121ce478-2003-421e-afc3-7bffe4aa4171", + "start": { + "$date": "2021-05-28T04:07:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:09:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f5ff102-d038-4e36-b140-7c836f68664b", + "start": { + "$date": "2021-05-28T04:09:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:15:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c24e2b12-c05f-48e0-8666-6e4f71ab3e7e", + "start": { + "$date": "2021-05-28T04:15:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:17:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7fbc73d0-dee9-4664-ba28-b868027c02b7", + "start": { + "$date": "2021-05-28T04:17:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:33:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5345c5c7-4c99-44b1-a0d4-86b898179aa1", + "start": { + "$date": "2021-05-28T04:33:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:35:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9bf12edc-29be-4a00-a175-77b8581b786d", + "start": { + "$date": "2021-05-28T04:35:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:50:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8fa9c47-e7ac-4f49-a5ca-561853bf9089", + "start": { + "$date": "2021-05-28T04:50:14.000Z" + }, + "end": { + "$date": "2021-05-28T04:52:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6c1e0138-b709-403a-b31f-a1a6c93e139c", + "start": { + "$date": "2021-05-28T04:52:14.000Z" + }, + "end": { + "$date": "2021-05-28T06:10:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f30e6fd7-4d55-43c9-81eb-092753db0c1d", + "start": { + "$date": "2021-05-28T06:10:14.000Z" + }, + "end": { + "$date": "2021-05-28T06:12:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5cb88e2-35db-4c1c-9b64-4227be0b5db7", + "start": { + "$date": "2021-05-28T06:12:14.000Z" + }, + "end": { + "$date": "2021-05-28T06:13:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a5f7a72-71ee-4fd4-a72b-9a8383404fb3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T02:18:07.000Z" + }, + "end": { + "$date": "2021-05-28T02:37:43.000Z" + }, + "events": [ + { + "uuid": "62688711-2f8c-47e4-ba59-6326e5abf55e", + "start": { + "$date": "2021-05-28T02:18:07.000Z" + }, + "end": { + "$date": "2021-05-28T02:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "869b4e88-15a1-4b91-ac86-c4a209d315b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T02:16:14.000Z" + }, + "end": { + "$date": "2021-05-28T02:37:49.000Z" + }, + "events": [ + { + "uuid": "c68efc1d-f431-4f50-85f8-9c7452880ef3", + "start": { + "$date": "2021-05-28T02:16:14.000Z" + }, + "end": { + "$date": "2021-05-28T02:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7320b66f-8dbb-40a2-836c-f2c5eeca381f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T02:37:36.000Z" + }, + "end": { + "$date": "2021-05-28T02:37:51.000Z" + }, + "events": [ + { + "uuid": "ad9386bc-fe83-46d3-9f61-4cba91b7bfde", + "start": { + "$date": "2021-05-28T02:37:36.000Z" + }, + "end": { + "$date": "2021-05-28T02:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6ae8afb-60dc-4c3d-b580-850ec35f4364", + "uuid": "1b9446ba-51b3-4c94-b57c-9e6a03059598", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-05-28T02:26:40.000Z" + }, + "end": { + "$date": "2021-05-28T02:29:25.000Z" + }, + "events": [ + { + "uuid": "aad9c0ce-af22-413a-8f54-5826ec56e643", + "start": { + "$date": "2021-05-28T02:26:40.000Z" + }, + "end": { + "$date": "2021-05-28T02:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "c8fe3f12-444f-4b72-9630-a6907f4cbf68", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-28T02:37:31.000Z" + }, + "end": { + "$date": "2021-05-28T03:01:19.000Z" + }, + "events": [ + { + "uuid": "38263fd5-4b15-43cc-944a-ee2a5e2f618f", + "start": { + "$date": "2021-05-28T02:37:31.000Z" + }, + "end": { + "$date": "2021-05-28T03:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c9e4569-781f-44b7-9fe2-9bf0ab5883d6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T02:40:38.000Z" + }, + "end": { + "$date": "2021-05-28T02:58:18.000Z" + }, + "events": [ + { + "uuid": "1bad5720-62f1-40f5-859b-bbf307c2775d", + "start": { + "$date": "2021-05-28T02:40:38.000Z" + }, + "end": { + "$date": "2021-05-28T02:58:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95b2b064-c6bb-4431-9eeb-dedad80eab77", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T02:40:46.000Z" + }, + "end": { + "$date": "2021-05-28T02:58:20.000Z" + }, + "events": [ + { + "uuid": "09677aa6-56e9-489f-b0aa-bef0399b4a58", + "start": { + "$date": "2021-05-28T02:40:46.000Z" + }, + "end": { + "$date": "2021-05-28T02:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de8b1792-b433-4f91-80aa-ec9b749d227c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T02:58:11.000Z" + }, + "end": { + "$date": "2021-05-28T02:58:36.000Z" + }, + "events": [ + { + "uuid": "63e4b26a-da4f-44b6-a1f1-d17e14d5d23e", + "start": { + "$date": "2021-05-28T02:58:11.000Z" + }, + "end": { + "$date": "2021-05-28T02:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ceb4dfae-5cbd-40a9-bb4e-2bfbf873eca7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T02:56:59.000Z" + }, + "end": { + "$date": "2021-05-28T03:09:39.000Z" + }, + "events": [ + { + "uuid": "8a4cec7a-13ff-4753-bff7-296de5049e63", + "start": { + "$date": "2021-05-28T02:56:59.000Z" + }, + "end": { + "$date": "2021-05-28T03:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11d0e94c-4058-4cca-aa0e-063b48713a3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T03:02:12.000Z" + }, + "end": { + "$date": "2021-05-28T03:12:24.000Z" + }, + "events": [ + { + "uuid": "d0cc1c36-cc6e-4b87-9f8e-cc68fd647fd2", + "start": { + "$date": "2021-05-28T03:02:12.000Z" + }, + "end": { + "$date": "2021-05-28T03:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6b924732-463e-4331-bf6e-90d6ed2305d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T02:59:01.000Z" + }, + "end": { + "$date": "2021-05-28T03:23:23.000Z" + }, + "events": [ + { + "uuid": "c9c44887-0648-4b1c-b5e3-0ecbec42622c", + "start": { + "$date": "2021-05-28T02:59:01.000Z" + }, + "end": { + "$date": "2021-05-28T03:10:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff9f5ea2-b0ec-430a-8296-ca1345d1fe5c", + "start": { + "$date": "2021-05-28T03:10:01.000Z" + }, + "end": { + "$date": "2021-05-28T03:19:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b46a4e70-da47-45f8-aa62-e02bfaa88d3f", + "start": { + "$date": "2021-05-28T03:19:01.000Z" + }, + "end": { + "$date": "2021-05-28T03:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "56fb6aa8-f5c1-43a1-8fd0-a4652d76548e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-28T02:58:59.000Z" + }, + "end": { + "$date": "2021-05-28T03:51:22.000Z" + }, + "events": [ + { + "uuid": "dedc36e3-5cc6-4c3b-b12f-8191f822cae2", + "start": { + "$date": "2021-05-28T02:58:59.000Z" + }, + "end": { + "$date": "2021-05-28T03:51:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ea6e9598-e2c2-469d-a7fc-b06a80fffcf3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T03:11:00.000Z" + }, + "end": { + "$date": "2021-05-28T03:50:51.000Z" + }, + "events": [ + { + "uuid": "b8bb6e52-6aef-48db-9eff-8adba0e812ea", + "start": { + "$date": "2021-05-28T03:11:00.000Z" + }, + "end": { + "$date": "2021-05-28T03:50:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9607b017-f662-47cc-a2a8-fca503d2aadc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T03:16:08.000Z" + }, + "end": { + "$date": "2021-05-28T03:33:27.000Z" + }, + "events": [ + { + "uuid": "156592dc-1d33-4bbe-8e3f-9378245639b8", + "start": { + "$date": "2021-05-28T03:16:08.000Z" + }, + "end": { + "$date": "2021-05-28T03:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c75ca769-4a5c-436a-9e53-ba39f6ce590d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-28T03:18:31.000Z" + }, + "end": { + "$date": "2021-05-28T03:21:50.000Z" + }, + "events": [ + { + "uuid": "1e5c7347-70e0-47cf-b9a3-b50ae21fea20", + "start": { + "$date": "2021-05-28T03:18:31.000Z" + }, + "end": { + "$date": "2021-05-28T03:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c92a6b31-1e86-4765-952e-7e9bcbb9d4aa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-28T03:24:42.000Z" + }, + "end": { + "$date": "2021-05-28T04:10:35.000Z" + }, + "events": [ + { + "uuid": "30313acb-6302-4322-83c8-77119711f02e", + "start": { + "$date": "2021-05-28T03:24:42.000Z" + }, + "end": { + "$date": "2021-05-28T04:10:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a077307-7226-402e-8900-54905454d873", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T03:37:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:57:33.000Z" + }, + "events": [ + { + "uuid": "8ccb3e85-c300-4d64-acc6-7d5d2adfb369", + "start": { + "$date": "2021-05-28T03:37:20.000Z" + }, + "end": { + "$date": "2021-05-28T03:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "0ce2fc85-36e9-4d19-b51d-125280f8a940", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T03:51:17.000Z" + }, + "end": { + "$date": "2021-05-28T04:20:21.000Z" + }, + "events": [ + { + "uuid": "5abf38db-6f82-4bde-8ee3-a4bc03a34c24", + "start": { + "$date": "2021-05-28T03:51:17.000Z" + }, + "end": { + "$date": "2021-05-28T04:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f872ff4-73e7-498b-b54f-22302e01e63d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T04:02:56.000Z" + }, + "end": { + "$date": "2021-05-28T04:22:22.000Z" + }, + "events": [ + { + "uuid": "ee9f7837-c571-422a-8f1d-d6cb47b8ae24", + "start": { + "$date": "2021-05-28T04:02:56.000Z" + }, + "end": { + "$date": "2021-05-28T04:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "347aaaaf-e1c5-443a-9762-68eb65607af1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T04:25:37.000Z" + }, + "end": { + "$date": "2021-05-28T04:41:17.000Z" + }, + "events": [ + { + "uuid": "a12e8123-99c0-422b-a5d4-355d9920e5d0", + "start": { + "$date": "2021-05-28T04:25:37.000Z" + }, + "end": { + "$date": "2021-05-28T04:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8059c1b5-07d5-411b-8e22-a8d5bda9367e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T05:12:41.000Z" + }, + "end": { + "$date": "2021-05-28T05:33:41.000Z" + }, + "events": [ + { + "uuid": "6b2e5a4b-3acb-47f4-b6e3-ad7ecd08ca45", + "start": { + "$date": "2021-05-28T05:12:41.000Z" + }, + "end": { + "$date": "2021-05-28T05:33:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "08c91104-cfe1-4a60-9bd5-3e31f3773572", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T04:32:30.000Z" + }, + "end": { + "$date": "2021-05-28T15:02:55.000Z" + }, + "events": [ + { + "uuid": "921a0861-25ef-4310-b593-a845d335aeb6", + "start": { + "$date": "2021-05-28T04:32:30.000Z" + }, + "end": { + "$date": "2021-05-28T05:50:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "47a77a8e-548e-428d-ba6f-e7624c807e1f", + "start": { + "$date": "2021-05-28T05:50:30.000Z" + }, + "end": { + "$date": "2021-05-28T06:37:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4507b784-2d6b-4a37-b8d3-bb536bc98a3b", + "start": { + "$date": "2021-05-28T06:37:30.000Z" + }, + "end": { + "$date": "2021-05-28T06:47:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e86c964-2fcd-4fda-8d57-bce7b3472df5", + "start": { + "$date": "2021-05-28T06:47:30.000Z" + }, + "end": { + "$date": "2021-05-28T14:34:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f513c187-a232-48ab-a776-c0c489a51b1b", + "start": { + "$date": "2021-05-28T14:34:30.000Z" + }, + "end": { + "$date": "2021-05-28T14:36:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2bc83a1-e7e9-4699-b9b5-c3f1cf7cd715", + "start": { + "$date": "2021-05-28T14:36:30.000Z" + }, + "end": { + "$date": "2021-05-28T14:46:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb1d75dd-46b2-4d07-8a5e-146118c3bb42", + "start": { + "$date": "2021-05-28T14:46:30.000Z" + }, + "end": { + "$date": "2021-05-28T14:51:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "238e141b-97a2-4f17-9b09-664a5f586bad", + "start": { + "$date": "2021-05-28T14:51:30.000Z" + }, + "end": { + "$date": "2021-05-28T15:02:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebaded36-8226-46c2-920c-799cf9c39d8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T04:43:53.000Z" + }, + "end": { + "$date": "2021-05-28T05:02:58.000Z" + }, + "events": [ + { + "uuid": "7eaf0b74-aab5-46ec-b94a-aa6f8d5af539", + "start": { + "$date": "2021-05-28T04:43:53.000Z" + }, + "end": { + "$date": "2021-05-28T05:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5191f0c0-3c0a-4dad-87e1-e724a2a44e50", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T05:07:30.000Z" + }, + "end": { + "$date": "2021-05-28T05:22:35.000Z" + }, + "events": [ + { + "uuid": "81fcb707-5742-4044-a90d-c42a1e927994", + "start": { + "$date": "2021-05-28T05:07:30.000Z" + }, + "end": { + "$date": "2021-05-28T05:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a915e8bf-5ac3-4cd9-95dd-7b6dcbf07ecc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T05:58:11.000Z" + }, + "end": { + "$date": "2021-05-28T06:14:03.000Z" + }, + "events": [ + { + "uuid": "98f421b8-15ec-4596-8d60-4cb692029e1f", + "start": { + "$date": "2021-05-28T05:58:11.000Z" + }, + "end": { + "$date": "2021-05-28T06:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "719acb63-15ff-4125-a637-cb1ff0f51ad5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T05:34:07.000Z" + }, + "end": { + "$date": "2021-05-28T07:04:40.000Z" + }, + "events": [ + { + "uuid": "ce2a1a34-f916-4040-a70d-3052c1feb9c4", + "start": { + "$date": "2021-05-28T05:34:07.000Z" + }, + "end": { + "$date": "2021-05-28T07:04:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96e89ac2-1d56-4c1e-bc81-bfcf977fc994", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T06:17:18.000Z" + }, + "end": { + "$date": "2021-05-28T06:31:23.000Z" + }, + "events": [ + { + "uuid": "ccb0462a-5868-466f-89b9-e720719bd163", + "start": { + "$date": "2021-05-28T06:17:18.000Z" + }, + "end": { + "$date": "2021-05-28T06:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "feea7eaf-47a5-4f95-8f37-823d109e1b6a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T07:05:07.000Z" + }, + "end": { + "$date": "2021-05-28T07:06:40.000Z" + }, + "events": [ + { + "uuid": "49dc6040-0053-45b3-b704-6a14e4e197e0", + "start": { + "$date": "2021-05-28T07:05:07.000Z" + }, + "end": { + "$date": "2021-05-28T07:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1f37be20-829b-4347-bbbe-e47e798890b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T07:18:38.000Z" + }, + "end": { + "$date": "2021-05-28T07:31:03.000Z" + }, + "events": [ + { + "uuid": "91f83fbf-054f-4ec2-bd16-f1c1c1176666", + "start": { + "$date": "2021-05-28T07:18:38.000Z" + }, + "end": { + "$date": "2021-05-28T07:31:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fd563ea5-f22c-4ce6-907b-2b48010c3e36", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-28T14:09:22.000Z" + }, + "end": { + "$date": "2021-05-28T15:09:19.000Z" + }, + "events": [ + { + "uuid": "4a08e727-0969-4f92-aef3-8bd5728707aa", + "start": { + "$date": "2021-05-28T14:09:22.000Z" + }, + "end": { + "$date": "2021-05-28T15:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "98f908a7-f617-479a-b8e2-00fd1424ffde", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T15:04:06.000Z" + }, + "end": { + "$date": "2021-05-28T15:10:01.000Z" + }, + "events": [ + { + "uuid": "c0f7bf14-1db6-4d69-b43c-80ee16f5b3a5", + "start": { + "$date": "2021-05-28T15:04:06.000Z" + }, + "end": { + "$date": "2021-05-28T15:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b9e48e04-d28e-4cd4-8b72-86b3d0992d30", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T15:47:44.000Z" + }, + "end": { + "$date": "2021-05-28T16:21:30.000Z" + }, + "events": [ + { + "uuid": "cf72142e-12b7-4e4b-8658-fd0c401de2ed", + "start": { + "$date": "2021-05-28T15:47:44.000Z" + }, + "end": { + "$date": "2021-05-28T16:21:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6f697225-1da9-45fa-9aff-18d7335be2bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T16:22:02.000Z" + }, + "end": { + "$date": "2021-05-28T16:25:04.000Z" + }, + "events": [ + { + "uuid": "5591ff55-ec4a-4cce-b0f8-9d745c316324", + "start": { + "$date": "2021-05-28T16:22:02.000Z" + }, + "end": { + "$date": "2021-05-28T16:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9807fbcb-bd24-44fc-85c0-6554e5cef9fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T16:30:27.000Z" + }, + "end": { + "$date": "2021-05-28T16:42:07.000Z" + }, + "events": [ + { + "uuid": "86f836b4-ccaa-406a-9f6f-431d1d1e1747", + "start": { + "$date": "2021-05-28T16:30:27.000Z" + }, + "end": { + "$date": "2021-05-28T16:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2d97632-41f2-40de-b7ff-c6143db3a30e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T16:46:04.000Z" + }, + "end": { + "$date": "2021-05-28T17:07:56.000Z" + }, + "events": [ + { + "uuid": "773e4c7c-b96e-4cee-9bff-faa241b6e45c", + "start": { + "$date": "2021-05-28T16:46:04.000Z" + }, + "end": { + "$date": "2021-05-28T17:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c4c625c6-c684-4f62-a65f-e9bebc0bb411", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-28T02:01:14.000Z" + }, + "end": { + "$date": "2021-05-28T17:53:34.000Z" + }, + "events": [ + { + "uuid": "8aeca5bd-bb4c-4912-8014-0cedffcd2251", + "start": { + "$date": "2021-05-28T02:01:14.000Z" + }, + "end": { + "$date": "2021-05-28T17:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f4fdcf61-175e-4c2c-82d6-eb5242e0c0b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-28T19:35:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:00:49.000Z" + }, + "events": [ + { + "uuid": "e90fbf1d-1a24-4630-9da2-79ede97fbea0", + "start": { + "$date": "2021-05-28T19:35:45.000Z" + }, + "end": { + "$date": "2021-05-28T21:45:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d635eec-a2d8-47fb-8d9f-651bf9714117", + "start": { + "$date": "2021-05-28T21:45:45.000Z" + }, + "end": { + "$date": "2021-05-28T21:59:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b428e6d-45c1-47c9-a731-ce6fdd5f6ed0", + "start": { + "$date": "2021-05-28T21:59:45.000Z" + }, + "end": { + "$date": "2021-05-28T22:01:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8e220c3e-4937-415c-8419-6f0d5dddee9d", + "start": { + "$date": "2021-05-28T22:01:45.000Z" + }, + "end": { + "$date": "2021-05-28T22:53:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "290263e2-b788-449d-88ce-caa9c5a52400", + "start": { + "$date": "2021-05-28T22:53:45.000Z" + }, + "end": { + "$date": "2021-05-28T22:57:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "422840ea-03e9-4f85-a6c9-d63e55786fe6", + "start": { + "$date": "2021-05-28T22:57:45.000Z" + }, + "end": { + "$date": "2021-05-28T23:58:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8f70204-ea0b-458b-9f82-d093ce804eae", + "start": { + "$date": "2021-05-28T23:58:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:00:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25fa4947-440c-4567-9c1b-ed98990e8cc0", + "start": { + "$date": "2021-05-29T00:00:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:03:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91ef86b0-6013-467a-855e-82db34bf70ee", + "start": { + "$date": "2021-05-29T00:03:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:06:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e58aabff-7a49-4bad-bc73-b233ae7244b8", + "start": { + "$date": "2021-05-29T00:06:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:07:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7926644f-c016-4742-9db6-4a07b7211838", + "start": { + "$date": "2021-05-29T00:07:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:09:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "398af264-4920-4d7e-9eca-1c5af1decac6", + "start": { + "$date": "2021-05-29T00:09:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:10:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4418bd34-80a7-4e4d-b505-e5324f06709a", + "start": { + "$date": "2021-05-29T00:10:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:20:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9cb291da-9484-4fa5-82a8-69f1dca57254", + "start": { + "$date": "2021-05-29T00:20:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:27:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e3bb7726-2f5b-4bfb-8df6-dd180a971cdc", + "start": { + "$date": "2021-05-29T00:27:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:29:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3af9e0c0-63e6-4d1a-8f16-e83747c4a114", + "start": { + "$date": "2021-05-29T00:29:45.000Z" + }, + "end": { + "$date": "2021-05-29T01:26:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "31437c31-52c0-4377-8cb7-64cfffeef3b9", + "start": { + "$date": "2021-05-29T01:26:45.000Z" + }, + "end": { + "$date": "2021-05-29T00:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a13f3fb-d2b6-49db-a908-f6bf3bf49305", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T18:17:03.000Z" + }, + "end": { + "$date": "2021-05-28T18:43:40.000Z" + }, + "events": [ + { + "uuid": "66b9ffcd-75d9-4f7a-8dc0-dcffc5b13a3b", + "start": { + "$date": "2021-05-28T18:17:03.000Z" + }, + "end": { + "$date": "2021-05-28T18:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6526f07d-6233-4207-a4af-1ba2cb5ca8ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T18:46:20.000Z" + }, + "end": { + "$date": "2021-05-28T19:22:02.000Z" + }, + "events": [ + { + "uuid": "332d0325-2ed3-43b4-8791-15a48aa278b6", + "start": { + "$date": "2021-05-28T18:46:20.000Z" + }, + "end": { + "$date": "2021-05-28T19:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "85855eed-b10f-467e-ad88-bc292e6e8993", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-28T18:48:53.000Z" + }, + "end": { + "$date": "2021-05-28T20:09:10.000Z" + }, + "events": [ + { + "uuid": "3e29a9e3-1ced-4be9-a024-1dcfaf5ff957", + "start": { + "$date": "2021-05-28T18:48:53.000Z" + }, + "end": { + "$date": "2021-05-28T20:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d46eb350-0f03-43f6-8472-9b038a666408", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-05-28T19:46:32.000Z" + }, + "end": { + "$date": "2021-05-28T20:47:44.000Z" + }, + "events": [ + { + "uuid": "a4aabe11-91a8-408f-8e64-4d28b8411c14", + "start": { + "$date": "2021-05-28T19:46:32.000Z" + }, + "end": { + "$date": "2021-05-28T20:06:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1796f3a-886f-4160-b658-8dc4ae3a6735", + "start": { + "$date": "2021-05-28T20:06:32.000Z" + }, + "end": { + "$date": "2021-05-28T20:16:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7d0d48e-862c-4850-b8a7-2644e1517866", + "start": { + "$date": "2021-05-28T20:16:32.000Z" + }, + "end": { + "$date": "2021-05-28T20:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d13b491b-db8d-4752-a02d-ded867d62b7a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-28T20:09:36.000Z" + }, + "end": { + "$date": "2021-05-28T22:38:19.000Z" + }, + "events": [ + { + "uuid": "0e78cb56-3c49-4bf8-b495-48790b61cccc", + "start": { + "$date": "2021-05-28T20:09:36.000Z" + }, + "end": { + "$date": "2021-05-28T22:38:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ac2d91f-43a4-4490-89cf-5af5df482509", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T20:49:21.000Z" + }, + "end": { + "$date": "2021-05-28T21:09:05.000Z" + }, + "events": [ + { + "uuid": "090000f2-fc1e-47ab-ab33-08c93eff15fc", + "start": { + "$date": "2021-05-28T20:49:21.000Z" + }, + "end": { + "$date": "2021-05-28T21:09:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcd36f82-8795-40e3-b3a7-8057f60155dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-28T21:13:10.000Z" + }, + "end": { + "$date": "2021-05-28T21:27:15.000Z" + }, + "events": [ + { + "uuid": "498fecbb-67c0-434e-a26b-0bac11fa2f5f", + "start": { + "$date": "2021-05-28T21:13:10.000Z" + }, + "end": { + "$date": "2021-05-28T21:27:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5fb56259-2e4f-433e-8626-6a8ac43c61f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T21:14:30.000Z" + }, + "end": { + "$date": "2021-05-28T21:37:37.000Z" + }, + "events": [ + { + "uuid": "c0ef3ac2-7920-4269-ae84-99b0fb477531", + "start": { + "$date": "2021-05-28T21:14:30.000Z" + }, + "end": { + "$date": "2021-05-28T21:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "28730240-f66f-4301-83e2-4461d997af67", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T21:28:28.000Z" + }, + "end": { + "$date": "2021-05-28T21:37:17.000Z" + }, + "events": [ + { + "uuid": "874aba85-dcf1-4ad9-926f-a279e1d7a86c", + "start": { + "$date": "2021-05-28T21:28:28.000Z" + }, + "end": { + "$date": "2021-05-28T21:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a525f873-716b-44f2-a476-046a54ced7e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-28T21:38:13.000Z" + }, + "end": { + "$date": "2021-05-29T00:54:21.000Z" + }, + "events": [ + { + "uuid": "4a6fa41a-ebac-484e-8d64-a35103958325", + "start": { + "$date": "2021-05-28T21:38:13.000Z" + }, + "end": { + "$date": "2021-05-29T00:15:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b7163bf-32bd-4873-b4eb-f7c0f42e146c", + "start": { + "$date": "2021-05-29T00:15:13.000Z" + }, + "end": { + "$date": "2021-05-29T00:47:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73c4fb55-3cd1-41c2-9c4c-3639f9a60141", + "start": { + "$date": "2021-05-29T00:47:13.000Z" + }, + "end": { + "$date": "2021-05-29T00:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a20d4d48-ead3-47a7-a0f1-713d711988dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T21:47:33.000Z" + }, + "end": { + "$date": "2021-05-28T22:11:53.000Z" + }, + "events": [ + { + "uuid": "8e5da831-a422-47b4-ae7f-6087215255fb", + "start": { + "$date": "2021-05-28T21:47:33.000Z" + }, + "end": { + "$date": "2021-05-28T22:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7ee4462f-fdb9-486a-a5c1-7f8510305585", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-28T22:48:00.000Z" + }, + "end": { + "$date": "2021-05-28T22:48:39.000Z" + }, + "events": [ + { + "uuid": "1d92a40a-797c-4d1f-b085-b2115b12d38a", + "start": { + "$date": "2021-05-28T22:48:00.000Z" + }, + "end": { + "$date": "2021-05-28T22:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "23fde991-9231-49c7-abbc-b510d58fcbe3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-28T22:52:40.000Z" + }, + "end": { + "$date": "2021-05-29T00:04:34.000Z" + }, + "events": [ + { + "uuid": "4a9b93af-703f-4c0a-9c97-21a71943b421", + "start": { + "$date": "2021-05-28T22:52:40.000Z" + }, + "end": { + "$date": "2021-05-29T00:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9af524e6-e323-4d54-9a35-c1ea18bb222f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-28T23:11:55.000Z" + }, + "end": { + "$date": "2021-05-28T23:36:06.000Z" + }, + "events": [ + { + "uuid": "0ac0bbe4-aeeb-41c7-99cb-8121f43f9a5a", + "start": { + "$date": "2021-05-28T23:11:55.000Z" + }, + "end": { + "$date": "2021-05-28T23:36:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ba847962-8127-49b8-b865-3e8588b81333", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T00:03:59.000Z" + }, + "end": { + "$date": "2021-05-29T02:28:24.000Z" + }, + "events": [ + { + "uuid": "8bfcf2b4-2766-456c-81a3-b54bad2cf5e1", + "start": { + "$date": "2021-05-29T00:03:59.000Z" + }, + "end": { + "$date": "2021-05-29T00:32:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c0a2b234-9ec5-4e36-82ac-cace2e72ba82", + "start": { + "$date": "2021-05-29T00:32:59.000Z" + }, + "end": { + "$date": "2021-05-29T00:56:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c99096f-4f1b-4174-8bb4-5bc1ecc4b215", + "start": { + "$date": "2021-05-29T00:56:59.000Z" + }, + "end": { + "$date": "2021-05-29T00:59:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25b3905b-7644-48e5-afe8-d38687b9f242", + "start": { + "$date": "2021-05-29T00:59:59.000Z" + }, + "end": { + "$date": "2021-05-29T01:54:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2a2cc7d0-98bd-44c1-889f-eef11313edc7", + "start": { + "$date": "2021-05-29T01:54:59.000Z" + }, + "end": { + "$date": "2021-05-29T02:28:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f670e87c-fc92-4b62-8f17-241cbaabf433", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T00:29:46.000Z" + }, + "end": { + "$date": "2021-05-29T02:54:45.000Z" + }, + "events": [ + { + "uuid": "ce11c284-00ff-45b4-be34-8cb3486342db", + "start": { + "$date": "2021-05-29T00:29:46.000Z" + }, + "end": { + "$date": "2021-05-29T02:38:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "643962f7-75d0-4d07-9a01-026c67ce5b98", + "start": { + "$date": "2021-05-29T02:38:46.000Z" + }, + "end": { + "$date": "2021-05-29T02:46:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0366958c-5b33-43c8-8d56-2c39b87a5b52", + "start": { + "$date": "2021-05-29T02:46:46.000Z" + }, + "end": { + "$date": "2021-05-29T02:48:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "79fbb652-510d-4bdd-bc92-4bb1e01aeaab", + "start": { + "$date": "2021-05-29T02:48:46.000Z" + }, + "end": { + "$date": "2021-05-29T02:54:45.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2dfceb47-3bab-40b7-af35-43d17afb1fc0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-29T01:53:03.000Z" + }, + "end": { + "$date": "2021-05-29T02:05:20.000Z" + }, + "events": [ + { + "uuid": "92cbec90-946a-4708-9dfe-ee65641a0b83", + "start": { + "$date": "2021-05-29T01:53:03.000Z" + }, + "end": { + "$date": "2021-05-29T02:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1caf5c32-9489-42ac-82d0-007f2d40521c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T02:16:41.000Z" + }, + "end": { + "$date": "2021-05-29T02:20:49.000Z" + }, + "events": [ + { + "uuid": "49e39a75-5928-4043-96ee-902b4ffec89c", + "start": { + "$date": "2021-05-29T02:16:41.000Z" + }, + "end": { + "$date": "2021-05-29T02:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f937bdc-0f0b-48ec-b46e-bb220b9d06b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T02:29:35.000Z" + }, + "end": { + "$date": "2021-05-29T02:37:04.000Z" + }, + "events": [ + { + "uuid": "9ab47314-d745-40df-8193-82c5230cb8c2", + "start": { + "$date": "2021-05-29T02:29:35.000Z" + }, + "end": { + "$date": "2021-05-29T02:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a3fa3486-36b4-454f-8e9b-84631d1c0ab4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T02:28:29.000Z" + }, + "end": { + "$date": "2021-05-29T03:56:16.000Z" + }, + "events": [ + { + "uuid": "6258e7f9-2b3d-4dca-8a50-2c9289884fae", + "start": { + "$date": "2021-05-29T02:28:29.000Z" + }, + "end": { + "$date": "2021-05-29T03:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "28b6d3e2-dd4a-4d2e-9c5e-d00656dc1451", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-29T02:35:12.000Z" + }, + "end": { + "$date": "2021-05-29T12:47:13.000Z" + }, + "events": [ + { + "uuid": "51dd9e1d-d952-4a8b-b2e6-adeaf5e2a66a", + "start": { + "$date": "2021-05-29T02:35:12.000Z" + }, + "end": { + "$date": "2021-05-29T04:13:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "382b571d-9045-4a4f-a73d-0f9ca7ca6af1", + "start": { + "$date": "2021-05-29T04:13:12.000Z" + }, + "end": { + "$date": "2021-05-29T04:18:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9b2f803-8967-4f58-b9e0-5e603609fdac", + "start": { + "$date": "2021-05-29T04:18:12.000Z" + }, + "end": { + "$date": "2021-05-29T04:28:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a34a007-2128-40e8-866b-5ae6eb9ad9de", + "start": { + "$date": "2021-05-29T04:28:12.000Z" + }, + "end": { + "$date": "2021-05-29T09:28:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11b9fa6f-d9e4-4c0c-b7cb-232539cca7b6", + "start": { + "$date": "2021-05-29T09:28:12.000Z" + }, + "end": { + "$date": "2021-05-29T09:38:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "adf4288d-3e35-4fba-a964-18d3e1df93b9", + "start": { + "$date": "2021-05-29T09:38:12.000Z" + }, + "end": { + "$date": "2021-05-29T12:47:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0927fef2-cdd4-4616-8b3d-cbb8914e3c06", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T02:42:12.000Z" + }, + "end": { + "$date": "2021-05-29T02:47:08.000Z" + }, + "events": [ + { + "uuid": "afb38994-55c4-43e8-a714-6d1dd3aa94d2", + "start": { + "$date": "2021-05-29T02:42:12.000Z" + }, + "end": { + "$date": "2021-05-29T02:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b769f126-e71b-42a8-8537-7b5768f11e1f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T02:55:03.000Z" + }, + "end": { + "$date": "2021-05-29T03:16:10.000Z" + }, + "events": [ + { + "uuid": "8ef32603-4345-4fc5-a640-f09fb2208c56", + "start": { + "$date": "2021-05-29T02:55:03.000Z" + }, + "end": { + "$date": "2021-05-29T03:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fb9d42f5-58fe-480e-ac00-4fd8af133b8c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T02:55:30.000Z" + }, + "end": { + "$date": "2021-05-29T03:09:37.000Z" + }, + "events": [ + { + "uuid": "955c2662-1abf-40f4-9c1a-892e653a6dbc", + "start": { + "$date": "2021-05-29T02:55:30.000Z" + }, + "end": { + "$date": "2021-05-29T03:09:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b7b7437c-f45d-426f-aea2-b93647265720", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T03:10:22.000Z" + }, + "end": { + "$date": "2021-05-29T05:45:50.000Z" + }, + "events": [ + { + "uuid": "0ec3e154-9c17-47fa-ae37-c4359b1a3cf5", + "start": { + "$date": "2021-05-29T03:10:22.000Z" + }, + "end": { + "$date": "2021-05-29T05:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d8d5ae9-22da-4666-b071-34605581ea5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T03:20:14.000Z" + }, + "end": { + "$date": "2021-05-29T03:44:54.000Z" + }, + "events": [ + { + "uuid": "d1323a63-27a7-4292-bc40-55f0e352f49f", + "start": { + "$date": "2021-05-29T03:20:14.000Z" + }, + "end": { + "$date": "2021-05-29T03:44:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "a5902231-b3f9-480a-baa6-d9afafbddfdd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-29T03:31:38.000Z" + }, + "end": { + "$date": "2021-05-29T07:49:37.000Z" + }, + "events": [ + { + "uuid": "901a948d-4d1b-4ca5-bd90-be3814759dc6", + "start": { + "$date": "2021-05-29T03:31:38.000Z" + }, + "end": { + "$date": "2021-05-29T07:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "03d15165-b60d-487d-ad74-30c0ba05efb5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T04:00:59.000Z" + }, + "end": { + "$date": "2021-05-29T05:14:42.000Z" + }, + "events": [ + { + "uuid": "2f1eaea6-d157-467e-baf0-aac54ee7b119", + "start": { + "$date": "2021-05-29T04:00:59.000Z" + }, + "end": { + "$date": "2021-05-29T05:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3282ad81-d061-4787-9c46-d07daed7a6e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T03:53:36.000Z" + }, + "end": { + "$date": "2021-05-29T04:22:46.000Z" + }, + "events": [ + { + "uuid": "4d2be84f-bd1c-4820-b8d2-6ef0a2a56d56", + "start": { + "$date": "2021-05-29T03:53:36.000Z" + }, + "end": { + "$date": "2021-05-29T04:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19431fa4-aad1-4056-b839-6a7d9ca779a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T03:58:26.000Z" + }, + "end": { + "$date": "2021-05-29T04:28:44.000Z" + }, + "events": [ + { + "uuid": "c97c0723-4eac-44b8-a2f5-1ed866d57eaa", + "start": { + "$date": "2021-05-29T03:58:26.000Z" + }, + "end": { + "$date": "2021-05-29T04:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba852475-884e-42c6-be20-be9ae035b120", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T04:29:13.000Z" + }, + "end": { + "$date": "2021-05-29T05:10:21.000Z" + }, + "events": [ + { + "uuid": "8837f15f-5416-4cce-85d3-644b92094efd", + "start": { + "$date": "2021-05-29T04:29:13.000Z" + }, + "end": { + "$date": "2021-05-29T05:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "999aacb7-114c-4e8d-ac0f-577b4762f9e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T04:28:49.000Z" + }, + "end": { + "$date": "2021-05-29T15:14:23.000Z" + }, + "events": [ + { + "uuid": "5c85931c-fc15-4c89-8459-10ce819068bf", + "start": { + "$date": "2021-05-29T04:28:49.000Z" + }, + "end": { + "$date": "2021-05-29T04:53:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "900efe1c-9260-4488-a5bc-65812e628d04", + "start": { + "$date": "2021-05-29T04:53:49.000Z" + }, + "end": { + "$date": "2021-05-29T14:33:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09493df2-94cb-4c89-9cf5-a2d7e6828362", + "start": { + "$date": "2021-05-29T14:33:49.000Z" + }, + "end": { + "$date": "2021-05-29T14:35:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fda3318b-de28-4561-a159-2687e475bb9c", + "start": { + "$date": "2021-05-29T14:35:49.000Z" + }, + "end": { + "$date": "2021-05-29T14:36:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3546ec40-cfe5-4804-8da9-168a705c7f45", + "start": { + "$date": "2021-05-29T14:36:49.000Z" + }, + "end": { + "$date": "2021-05-29T14:38:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2543780-e51e-4a9b-b1f3-07cdeaef0d00", + "start": { + "$date": "2021-05-29T14:38:49.000Z" + }, + "end": { + "$date": "2021-05-29T14:49:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a7b08b8-c3fa-4962-95c1-b2c4e37082be", + "start": { + "$date": "2021-05-29T14:49:49.000Z" + }, + "end": { + "$date": "2021-05-29T14:59:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d727032d-eec6-4672-8b14-d15be5f2e123", + "start": { + "$date": "2021-05-29T14:59:49.000Z" + }, + "end": { + "$date": "2021-05-29T15:04:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5a676c28-688e-47d0-a39a-2114268cb299", + "start": { + "$date": "2021-05-29T15:04:49.000Z" + }, + "end": { + "$date": "2021-05-29T15:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed258e74-3095-4f63-8fb5-05e78027d588", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T05:16:32.000Z" + }, + "end": { + "$date": "2021-05-29T06:01:40.000Z" + }, + "events": [ + { + "uuid": "d6c61a77-0c18-4cda-a2e5-854640553a68", + "start": { + "$date": "2021-05-29T05:16:32.000Z" + }, + "end": { + "$date": "2021-05-29T06:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7c992ec8-9928-43ee-84d9-84d70a1f8cde", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T05:40:46.000Z" + }, + "end": { + "$date": "2021-05-29T06:55:39.000Z" + }, + "events": [ + { + "uuid": "9cf9e5b2-68f9-49c3-9f31-bef8db1fa378", + "start": { + "$date": "2021-05-29T05:40:46.000Z" + }, + "end": { + "$date": "2021-05-29T06:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3300ef65-44c2-49fa-8a27-d424cfdbe1b7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T06:33:43.000Z" + }, + "end": { + "$date": "2021-05-29T07:23:32.000Z" + }, + "events": [ + { + "uuid": "258ae34b-7c89-4bf5-a171-0c7bcd0c5d8a", + "start": { + "$date": "2021-05-29T06:33:43.000Z" + }, + "end": { + "$date": "2021-05-29T07:23:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a86e6dfb-525b-4cbf-aa8b-50bb5a650047", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T06:38:34.000Z" + }, + "end": { + "$date": "2021-05-29T07:23:18.000Z" + }, + "events": [ + { + "uuid": "c75d2051-6544-4c29-80c9-da446d70b53a", + "start": { + "$date": "2021-05-29T06:38:34.000Z" + }, + "end": { + "$date": "2021-05-29T07:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e3ca8160-dc22-41eb-8f5a-d29af3e915af", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T06:56:54.000Z" + }, + "end": { + "$date": "2021-05-29T07:22:01.000Z" + }, + "events": [ + { + "uuid": "4946e08f-e989-4d14-a8e2-1e4c40e1af76", + "start": { + "$date": "2021-05-29T06:56:54.000Z" + }, + "end": { + "$date": "2021-05-29T07:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "52ec99e7-81bc-4e58-bf2f-19a7fd8f3cf9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T07:24:52.000Z" + }, + "end": { + "$date": "2021-05-29T08:15:44.000Z" + }, + "events": [ + { + "uuid": "34a3606e-ad70-4c93-8b0e-e45aef3b2a74", + "start": { + "$date": "2021-05-29T07:24:52.000Z" + }, + "end": { + "$date": "2021-05-29T08:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1148b430-ca23-4dee-9cef-2fe57ddd8795", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-29T13:11:04.000Z" + }, + "end": { + "$date": "2021-05-29T13:38:41.000Z" + }, + "events": [ + { + "uuid": "acd7e917-0bc6-401d-86bd-092d7dfdc85d", + "start": { + "$date": "2021-05-29T13:11:04.000Z" + }, + "end": { + "$date": "2021-05-29T13:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b70c66fe-ff53-4613-86d8-92a35cc43227", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T13:59:45.000Z" + }, + "end": { + "$date": "2021-05-29T15:06:30.000Z" + }, + "events": [ + { + "uuid": "00e9c9a7-8a2d-4182-ba48-57c32f36cb6e", + "start": { + "$date": "2021-05-29T13:59:45.000Z" + }, + "end": { + "$date": "2021-05-29T14:25:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b20787b-d1de-4f83-b208-606ee5616cbd", + "start": { + "$date": "2021-05-29T14:25:45.000Z" + }, + "end": { + "$date": "2021-05-29T14:28:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d498d9b7-c3ec-4631-b1f6-20064c9abfa2", + "start": { + "$date": "2021-05-29T14:28:45.000Z" + }, + "end": { + "$date": "2021-05-29T15:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ccd456fc-a777-48ac-98f1-e8a0aaad5264", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T15:19:04.000Z" + }, + "end": { + "$date": "2021-05-29T16:05:00.000Z" + }, + "events": [ + { + "uuid": "0b36c88b-a99a-4fe0-b65f-e21e998d5bc0", + "start": { + "$date": "2021-05-29T15:19:04.000Z" + }, + "end": { + "$date": "2021-05-29T16:05:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "a3d9e7f2-f0df-4f08-a730-eb71cde231fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T15:20:33.000Z" + }, + "end": { + "$date": "2021-05-29T16:31:44.000Z" + }, + "events": [ + { + "uuid": "f9ea6077-fd00-4540-ad57-b10e3d734d87", + "start": { + "$date": "2021-05-29T15:20:33.000Z" + }, + "end": { + "$date": "2021-05-29T16:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8ec73818-7f81-49a2-a06c-02f7b2e70836", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T16:01:58.000Z" + }, + "end": { + "$date": "2021-05-29T18:00:39.000Z" + }, + "events": [ + { + "uuid": "aaec5bac-f2f3-471f-ae1e-9e3a5a11a4d0", + "start": { + "$date": "2021-05-29T16:01:58.000Z" + }, + "end": { + "$date": "2021-05-29T18:00:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "230b6bd6-b6b9-4a41-a726-8c3aba3501b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T16:05:15.000Z" + }, + "end": { + "$date": "2021-05-29T17:34:31.000Z" + }, + "events": [ + { + "uuid": "fa694f8b-4f76-455f-8a69-34414291fb23", + "start": { + "$date": "2021-05-29T16:05:15.000Z" + }, + "end": { + "$date": "2021-05-29T17:34:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7e284a50-0f71-4ea8-86a1-647510358569", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-29T16:10:42.000Z" + }, + "end": { + "$date": "2021-05-30T04:58:37.000Z" + }, + "events": [ + { + "uuid": "ed3f12fe-6495-429f-b014-a186bbb97f86", + "start": { + "$date": "2021-05-29T16:10:42.000Z" + }, + "end": { + "$date": "2021-05-29T16:40:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f032e482-fe41-47eb-b5bd-7bd88c450603", + "start": { + "$date": "2021-05-29T16:40:42.000Z" + }, + "end": { + "$date": "2021-05-29T16:45:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58d61a1d-7be4-4e6b-8394-8a4df80add02", + "start": { + "$date": "2021-05-29T16:45:42.000Z" + }, + "end": { + "$date": "2021-05-29T20:19:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d3412fc-d356-4e5f-aae1-6edf9a532872", + "start": { + "$date": "2021-05-29T20:19:42.000Z" + }, + "end": { + "$date": "2021-05-29T20:24:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dda6fc08-d62e-4908-97fd-9355d616cc4e", + "start": { + "$date": "2021-05-29T20:24:42.000Z" + }, + "end": { + "$date": "2021-05-30T02:13:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b10d78d-9a9f-42f2-8ce3-19b0f6c349f7", + "start": { + "$date": "2021-05-30T02:13:42.000Z" + }, + "end": { + "$date": "2021-05-30T02:39:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ab998ebb-4dc3-45b6-9cfc-e4bc3ee4a145", + "start": { + "$date": "2021-05-30T02:39:42.000Z" + }, + "end": { + "$date": "2021-05-30T04:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "0c9e8f39-c1e5-485d-a04e-9dc6b170bf01", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T16:31:55.000Z" + }, + "end": { + "$date": "2021-05-29T18:24:43.000Z" + }, + "events": [ + { + "uuid": "28244eeb-dea1-4ed6-a276-51dee8948412", + "start": { + "$date": "2021-05-29T16:31:55.000Z" + }, + "end": { + "$date": "2021-05-29T18:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "963e7b82-def8-4aa9-a047-f49c979d1816", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T17:17:50.000Z" + }, + "end": { + "$date": "2021-05-29T17:33:44.000Z" + }, + "events": [ + { + "uuid": "f4f02c30-689d-4d5d-96f1-faac56b593d2", + "start": { + "$date": "2021-05-29T17:17:50.000Z" + }, + "end": { + "$date": "2021-05-29T17:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a2b8380-82e5-43b2-a8c9-c231da752ac5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T17:51:46.000Z" + }, + "end": { + "$date": "2021-05-29T17:59:10.000Z" + }, + "events": [ + { + "uuid": "b9bd4f75-a87d-43e2-a391-597416785db1", + "start": { + "$date": "2021-05-29T17:51:46.000Z" + }, + "end": { + "$date": "2021-05-29T17:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08c19529-1c98-42af-ac0c-2aae322b7891", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T18:00:53.000Z" + }, + "end": { + "$date": "2021-05-29T18:02:17.000Z" + }, + "events": [ + { + "uuid": "9f976a15-048c-461a-8717-bd5a5f9faad1", + "start": { + "$date": "2021-05-29T18:00:53.000Z" + }, + "end": { + "$date": "2021-05-29T18:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "480b9034-00df-454b-92f8-73deb8e93249", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T19:12:49.000Z" + }, + "end": { + "$date": "2021-05-29T20:29:08.000Z" + }, + "events": [ + { + "uuid": "85c145d4-5223-4bc3-bb81-779adc3f429d", + "start": { + "$date": "2021-05-29T19:12:49.000Z" + }, + "end": { + "$date": "2021-05-29T20:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "910b939b-6139-4f49-b1f8-130bcdbf7e09", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T18:02:43.000Z" + }, + "end": { + "$date": "2021-05-29T19:07:08.000Z" + }, + "events": [ + { + "uuid": "07109da1-5435-42f2-ae32-b79027c2eba8", + "start": { + "$date": "2021-05-29T18:02:43.000Z" + }, + "end": { + "$date": "2021-05-29T19:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "be1cb68b-c0d7-424a-9d06-3b0066834716", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T18:13:21.000Z" + }, + "end": { + "$date": "2021-05-29T18:13:36.000Z" + }, + "events": [ + { + "uuid": "263108d8-05f1-44fb-bac3-c6cbbd879007", + "start": { + "$date": "2021-05-29T18:13:21.000Z" + }, + "end": { + "$date": "2021-05-29T18:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f950a199-6cb9-4c1b-8070-046c576a02a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T18:14:06.000Z" + }, + "end": { + "$date": "2021-05-29T18:22:21.000Z" + }, + "events": [ + { + "uuid": "1dc16ad0-7463-4313-bab3-d41155a6dd53", + "start": { + "$date": "2021-05-29T18:14:06.000Z" + }, + "end": { + "$date": "2021-05-29T18:22:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f87494a1-d7f9-4038-a1f0-edfb7b0efcf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T18:22:46.000Z" + }, + "end": { + "$date": "2021-05-29T19:08:32.000Z" + }, + "events": [ + { + "uuid": "75f3cab8-473a-4d07-8a6c-677dac333642", + "start": { + "$date": "2021-05-29T18:22:46.000Z" + }, + "end": { + "$date": "2021-05-29T19:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5f2aef72-f6df-4aa3-943c-46cfc775a765", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T18:24:58.000Z" + }, + "end": { + "$date": "2021-05-29T19:14:49.000Z" + }, + "events": [ + { + "uuid": "ff238101-8aac-4446-acfe-44e30567f3c3", + "start": { + "$date": "2021-05-29T18:24:58.000Z" + }, + "end": { + "$date": "2021-05-29T19:14:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5251e23c-821b-490d-afdf-34a970753c0d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T19:40:41.000Z" + }, + "end": { + "$date": "2021-05-29T20:07:23.000Z" + }, + "events": [ + { + "uuid": "a5f7403c-7aa1-4689-aaab-8d6601c49baa", + "start": { + "$date": "2021-05-29T19:40:41.000Z" + }, + "end": { + "$date": "2021-05-29T20:07:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e498c99f-4464-417a-ab92-7bfd7d5bdd29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T20:08:14.000Z" + }, + "end": { + "$date": "2021-05-29T20:39:40.000Z" + }, + "events": [ + { + "uuid": "3e319f8e-fbc2-410d-90e0-894453307b44", + "start": { + "$date": "2021-05-29T20:08:14.000Z" + }, + "end": { + "$date": "2021-05-29T20:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df106288-4b73-49d6-a12e-83bdd678fa28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T20:17:22.000Z" + }, + "end": { + "$date": "2021-05-29T20:49:43.000Z" + }, + "events": [ + { + "uuid": "a690c53d-0e48-4bd0-8954-9ea9522f3a32", + "start": { + "$date": "2021-05-29T20:17:22.000Z" + }, + "end": { + "$date": "2021-05-29T20:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "8cd9a022-d6d1-4a67-84c3-aff66a047e5a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T20:20:33.000Z" + }, + "end": { + "$date": "2021-05-29T20:25:38.000Z" + }, + "events": [ + { + "uuid": "c1049938-54c2-40b7-a137-e7930d146501", + "start": { + "$date": "2021-05-29T20:20:33.000Z" + }, + "end": { + "$date": "2021-05-29T20:25:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "b36639c6-7ae0-4388-965c-eec2f4a97a80", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-29T20:36:15.000Z" + }, + "end": { + "$date": "2021-05-29T22:06:01.000Z" + }, + "events": [ + { + "uuid": "778950ed-467f-4f31-bcc0-2759fcc54d4f", + "start": { + "$date": "2021-05-29T20:36:15.000Z" + }, + "end": { + "$date": "2021-05-29T22:06:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5602b4e7-2430-46c1-a645-9ea0bfbde7ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T20:42:30.000Z" + }, + "end": { + "$date": "2021-05-29T21:05:26.000Z" + }, + "events": [ + { + "uuid": "02e23a94-bb45-4f88-b645-d88b4239ce49", + "start": { + "$date": "2021-05-29T20:42:30.000Z" + }, + "end": { + "$date": "2021-05-29T21:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04c67789-ed49-4f36-93ba-eb84bcffc324", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T20:58:29.000Z" + }, + "end": { + "$date": "2021-05-29T21:14:37.000Z" + }, + "events": [ + { + "uuid": "2caf6c7b-c5db-4a7e-a293-20ec1589a797", + "start": { + "$date": "2021-05-29T20:58:29.000Z" + }, + "end": { + "$date": "2021-05-29T21:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b56adb4-bb8e-4d33-9be6-bbc5e01b9898", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T21:32:41.000Z" + }, + "end": { + "$date": "2021-05-29T21:56:39.000Z" + }, + "events": [ + { + "uuid": "62a43216-872c-43f3-8cea-ea5df73d58fc", + "start": { + "$date": "2021-05-29T21:32:41.000Z" + }, + "end": { + "$date": "2021-05-29T21:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b4b27407-b532-413c-a04c-a3f29d63daf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-29T21:40:03.000Z" + }, + "end": { + "$date": "2021-05-30T03:38:15.000Z" + }, + "events": [ + { + "uuid": "1fd78398-ea43-4847-ad67-9ba1e68106aa", + "start": { + "$date": "2021-05-29T21:40:03.000Z" + }, + "end": { + "$date": "2021-05-29T21:51:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e87ef9c6-4166-461c-89b0-dd50add5f87f", + "start": { + "$date": "2021-05-29T21:51:03.000Z" + }, + "end": { + "$date": "2021-05-29T22:01:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce69327d-88b1-4c62-a581-9941b19d0e50", + "start": { + "$date": "2021-05-29T22:01:03.000Z" + }, + "end": { + "$date": "2021-05-29T22:11:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3572ca0b-db4f-408f-8a2a-91becae23650", + "start": { + "$date": "2021-05-29T22:11:03.000Z" + }, + "end": { + "$date": "2021-05-29T22:12:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73f92794-5282-475e-9658-212641c21730", + "start": { + "$date": "2021-05-29T22:12:03.000Z" + }, + "end": { + "$date": "2021-05-29T23:56:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "548a22b0-4f36-4602-ba85-fcd57b118c93", + "start": { + "$date": "2021-05-29T23:56:03.000Z" + }, + "end": { + "$date": "2021-05-30T00:09:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "448a92ff-4fca-4706-95a6-97fecdefa5f2", + "start": { + "$date": "2021-05-30T00:09:03.000Z" + }, + "end": { + "$date": "2021-05-30T03:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1767b16-ed5f-440f-97f9-f611007a2b84", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T22:45:08.000Z" + }, + "end": { + "$date": "2021-05-29T23:12:29.000Z" + }, + "events": [ + { + "uuid": "7c01e4e7-272f-4892-bc86-b43a16755bab", + "start": { + "$date": "2021-05-29T22:45:08.000Z" + }, + "end": { + "$date": "2021-05-29T23:12:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4d46316-d810-4114-8e86-507f942bd617", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-29T23:13:36.000Z" + }, + "end": { + "$date": "2021-05-29T23:52:20.000Z" + }, + "events": [ + { + "uuid": "d38e6990-27d1-4b52-9d71-418ba6723a77", + "start": { + "$date": "2021-05-29T23:13:36.000Z" + }, + "end": { + "$date": "2021-05-29T23:52:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4348306-c4f5-49a7-94be-8ecf174c330d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-29T23:13:25.000Z" + }, + "end": { + "$date": "2021-05-29T23:52:17.000Z" + }, + "events": [ + { + "uuid": "2f5f1c0f-90c1-4a92-99c9-0e9da75b196e", + "start": { + "$date": "2021-05-29T23:13:25.000Z" + }, + "end": { + "$date": "2021-05-29T23:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "60699c54-9803-4ca2-a1b8-02358a171f16", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-29T23:37:57.000Z" + }, + "end": { + "$date": "2021-05-30T00:27:28.000Z" + }, + "events": [ + { + "uuid": "b2218ec4-c959-405c-b41a-bc61df274d61", + "start": { + "$date": "2021-05-29T23:37:57.000Z" + }, + "end": { + "$date": "2021-05-30T00:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b735d88-efa9-4a4e-9a36-21f3b6dbd35e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T00:05:05.000Z" + }, + "end": { + "$date": "2021-05-30T00:36:10.000Z" + }, + "events": [ + { + "uuid": "07bac127-2ed5-47c9-a15b-dd87f3c9c264", + "start": { + "$date": "2021-05-30T00:05:05.000Z" + }, + "end": { + "$date": "2021-05-30T00:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96f0dd26-bec8-42df-b5c0-5136bcebaa5f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-30T00:55:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:24:08.000Z" + }, + "events": [ + { + "uuid": "d0ff2988-5ea7-4921-a4c7-63e1ba64ce5b", + "start": { + "$date": "2021-05-30T00:55:02.000Z" + }, + "end": { + "$date": "2021-05-30T02:29:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "886d1321-ac2b-4f84-b0a0-61d2a3ba3c97", + "start": { + "$date": "2021-05-30T02:29:02.000Z" + }, + "end": { + "$date": "2021-05-30T02:57:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3bd9d6a4-b848-4cb5-b426-0ac4a9f7ff36", + "start": { + "$date": "2021-05-30T02:57:02.000Z" + }, + "end": { + "$date": "2021-05-30T03:07:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e99efece-6f30-420c-89c6-1574011ac74c", + "start": { + "$date": "2021-05-30T03:07:02.000Z" + }, + "end": { + "$date": "2021-05-30T03:10:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e107b674-47ab-4365-aeba-11a3e1e87836", + "start": { + "$date": "2021-05-30T03:10:02.000Z" + }, + "end": { + "$date": "2021-05-30T04:30:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6318926a-c1cc-48a9-b55a-1f7cf23fcf4c", + "start": { + "$date": "2021-05-30T04:30:02.000Z" + }, + "end": { + "$date": "2021-05-30T04:33:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6585c0e2-2a78-45ab-9907-83633ec87b77", + "start": { + "$date": "2021-05-30T04:33:02.000Z" + }, + "end": { + "$date": "2021-05-30T05:22:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "153c2021-e100-4bad-9d2d-bede932fcf67", + "start": { + "$date": "2021-05-30T05:22:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:00:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5628c477-bf66-402f-9642-7d308c5925f2", + "start": { + "$date": "2021-05-30T15:00:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:02:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a21f59c2-7616-4f7c-a375-526df272e996", + "start": { + "$date": "2021-05-30T15:02:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:23:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec6bd20f-b23e-4136-9072-747f484c9935", + "start": { + "$date": "2021-05-30T15:23:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:39:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f860dbfb-b6ae-4dd9-bd9c-ecf69545d112", + "start": { + "$date": "2021-05-30T15:39:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:48:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2675a102-880f-4803-88eb-46c747ff2a2f", + "start": { + "$date": "2021-05-30T15:48:02.000Z" + }, + "end": { + "$date": "2021-05-30T15:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90aa4cd9-4ffa-4816-a7db-6baff96a6dc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T01:13:32.000Z" + }, + "end": { + "$date": "2021-05-30T01:35:06.000Z" + }, + "events": [ + { + "uuid": "721577e8-5529-4b2b-98b3-f7856238c9a8", + "start": { + "$date": "2021-05-30T01:13:32.000Z" + }, + "end": { + "$date": "2021-05-30T01:35:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ef92e99b-2c74-43ac-a483-e16964459207", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-30T01:28:03.000Z" + }, + "end": { + "$date": "2021-05-30T06:08:03.000Z" + }, + "events": [ + { + "uuid": "19d09cb5-a2a4-495f-84af-4d0c11048e7f", + "start": { + "$date": "2021-05-30T01:28:03.000Z" + }, + "end": { + "$date": "2021-05-30T04:08:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7d4f404d-2782-45ea-ab20-2de53521d224", + "start": { + "$date": "2021-05-30T04:08:03.000Z" + }, + "end": { + "$date": "2021-05-30T04:10:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "88888f05-da2f-4141-9aba-186aa3c55ab5", + "start": { + "$date": "2021-05-30T04:10:03.000Z" + }, + "end": { + "$date": "2021-05-30T04:33:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8dfcd007-d390-46d6-a34f-688a417375c2", + "start": { + "$date": "2021-05-30T04:33:03.000Z" + }, + "end": { + "$date": "2021-05-30T04:35:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "148e92b4-862f-441f-af13-dc320903435a", + "start": { + "$date": "2021-05-30T04:35:03.000Z" + }, + "end": { + "$date": "2021-05-30T04:48:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "27562f6b-b800-430b-b05a-c6b3f613ec6f", + "start": { + "$date": "2021-05-30T04:48:03.000Z" + }, + "end": { + "$date": "2021-05-30T05:17:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "55b312d9-14d6-4fa6-b20c-334b5d50b461", + "start": { + "$date": "2021-05-30T05:17:03.000Z" + }, + "end": { + "$date": "2021-05-30T05:19:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a1621eb-1263-4003-9180-7588e6aa3231", + "start": { + "$date": "2021-05-30T05:19:03.000Z" + }, + "end": { + "$date": "2021-05-30T05:51:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "553184a4-2fe4-4b48-8810-270126b13a44", + "start": { + "$date": "2021-05-30T05:51:03.000Z" + }, + "end": { + "$date": "2021-05-30T05:55:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5a617ed-6713-4f28-8cb1-f44537f73f8c", + "start": { + "$date": "2021-05-30T05:55:03.000Z" + }, + "end": { + "$date": "2021-05-30T06:02:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2f84321c-173f-4a1f-bcc0-3457e4f0a78d", + "start": { + "$date": "2021-05-30T06:02:03.000Z" + }, + "end": { + "$date": "2021-05-30T06:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e056c239-87ae-4655-b73e-db8911020383", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T01:39:04.000Z" + }, + "end": { + "$date": "2021-05-30T02:15:29.000Z" + }, + "events": [ + { + "uuid": "925f93aa-584e-4e69-bade-c174f24dcd27", + "start": { + "$date": "2021-05-30T01:39:04.000Z" + }, + "end": { + "$date": "2021-05-30T02:15:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06150e33-7c2d-442a-9543-8e07acb0c416", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T02:18:03.000Z" + }, + "end": { + "$date": "2021-05-30T02:21:32.000Z" + }, + "events": [ + { + "uuid": "7f51f5f8-62e0-438e-9c77-b722d445f619", + "start": { + "$date": "2021-05-30T02:18:03.000Z" + }, + "end": { + "$date": "2021-05-30T02:21:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "220e77e1-d5e0-4578-b979-c7c1b0a6c909", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T02:29:02.000Z" + }, + "end": { + "$date": "2021-05-30T02:49:47.000Z" + }, + "events": [ + { + "uuid": "411d3701-aa40-4810-bbd1-6da3a84520bc", + "start": { + "$date": "2021-05-30T02:29:02.000Z" + }, + "end": { + "$date": "2021-05-30T02:49:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef329896-1efd-4fa5-a700-213162c5e8b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T03:19:19.000Z" + }, + "end": { + "$date": "2021-05-30T03:32:37.000Z" + }, + "events": [ + { + "uuid": "60510e26-98fe-420d-a080-ac7a2bcb6a2c", + "start": { + "$date": "2021-05-30T03:19:19.000Z" + }, + "end": { + "$date": "2021-05-30T03:31:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12800ee0-ddfd-4736-bd86-d2d4a4b2ee04", + "start": { + "$date": "2021-05-30T03:31:19.000Z" + }, + "end": { + "$date": "2021-05-30T03:33:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "799293d5-6922-4543-a945-0734349dd4b2", + "start": { + "$date": "2021-05-30T03:33:19.000Z" + }, + "end": { + "$date": "2021-05-30T03:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2492f381-2fd8-4b37-808d-2c79914597ff", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-30T03:04:04.000Z" + }, + "end": { + "$date": "2021-05-30T03:10:17.000Z" + }, + "events": [ + { + "uuid": "feb4f9dc-a7f9-4802-b64d-731574b2026d", + "start": { + "$date": "2021-05-30T03:04:04.000Z" + }, + "end": { + "$date": "2021-05-30T03:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "972157bf-9bc1-425e-b197-4ff76a6efe28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T03:11:54.000Z" + }, + "end": { + "$date": "2021-05-30T03:13:14.000Z" + }, + "events": [ + { + "uuid": "dfa73c08-7e4e-4066-969e-0e2d02b8fe9c", + "start": { + "$date": "2021-05-30T03:11:54.000Z" + }, + "end": { + "$date": "2021-05-30T03:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "adbd9563-706f-45b3-b2b0-8ff2664ed242", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T03:14:54.000Z" + }, + "end": { + "$date": "2021-05-30T03:39:30.000Z" + }, + "events": [ + { + "uuid": "39a65492-74a7-482f-9f7e-345252da3041", + "start": { + "$date": "2021-05-30T03:14:54.000Z" + }, + "end": { + "$date": "2021-05-30T03:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bada37a5-ff41-49cb-86e8-fa111d9cb057", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-30T03:19:20.000Z" + }, + "end": { + "$date": "2021-05-30T03:32:34.000Z" + }, + "events": [ + { + "uuid": "5e4890af-60f0-44f4-88d5-a847d9e5d45c", + "start": { + "$date": "2021-05-30T03:19:20.000Z" + }, + "end": { + "$date": "2021-05-30T03:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5d0a869-5f08-45e6-a3e4-9d897a99c69f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T03:38:06.000Z" + }, + "end": { + "$date": "2021-05-30T03:58:14.000Z" + }, + "events": [ + { + "uuid": "8d00177a-22f4-4a38-b3cb-f839765065ff", + "start": { + "$date": "2021-05-30T03:38:06.000Z" + }, + "end": { + "$date": "2021-05-30T03:58:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1277cde-f2dd-4418-bd95-253117930d18", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-30T03:38:57.000Z" + }, + "end": { + "$date": "2021-05-30T03:58:03.000Z" + }, + "events": [ + { + "uuid": "63fb3755-b11b-4650-82a2-25c2990db280", + "start": { + "$date": "2021-05-30T03:38:57.000Z" + }, + "end": { + "$date": "2021-05-30T03:58:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7413853-6a7d-4975-b6a4-239127068c97", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T04:01:58.000Z" + }, + "end": { + "$date": "2021-05-30T04:18:32.000Z" + }, + "events": [ + { + "uuid": "f50f9acf-2a98-4054-9d44-dd44d00b814d", + "start": { + "$date": "2021-05-30T04:01:58.000Z" + }, + "end": { + "$date": "2021-05-30T04:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29639f7c-91fd-4137-9fd4-4bbbc04f8543", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-05-30T04:03:38.000Z" + }, + "end": { + "$date": "2021-05-30T04:18:25.000Z" + }, + "events": [ + { + "uuid": "8adf8e82-ed52-4c0f-a82d-801cdd45af3c", + "start": { + "$date": "2021-05-30T04:03:38.000Z" + }, + "end": { + "$date": "2021-05-30T04:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", + "uuid": "05f1ccea-a1f2-4e24-a4c3-b952526c708c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-05-30T03:59:54.000Z" + }, + "end": { + "$date": "2021-05-30T07:38:30.000Z" + }, + "events": [ + { + "uuid": "04493901-ad77-400a-b114-1c12d4452e6b", + "start": { + "$date": "2021-05-30T03:59:54.000Z" + }, + "end": { + "$date": "2021-05-30T07:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "5b78ebd9-8883-4a10-b284-c816edd20bab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T04:17:36.000Z" + }, + "end": { + "$date": "2021-05-30T04:33:41.000Z" + }, + "events": [ + { + "uuid": "c55eac24-458a-4505-bb86-fca79889509b", + "start": { + "$date": "2021-05-30T04:17:36.000Z" + }, + "end": { + "$date": "2021-05-30T04:33:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91fb3f40-1a2a-4683-a97c-765d3479560d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T04:23:15.000Z" + }, + "end": { + "$date": "2021-05-30T04:52:02.000Z" + }, + "events": [ + { + "uuid": "0211c2fa-d6c0-4fe5-9c58-110d0016a26a", + "start": { + "$date": "2021-05-30T04:23:15.000Z" + }, + "end": { + "$date": "2021-05-30T04:52:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "818470ff-d784-4fde-9f14-cc6e74da5eb5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T04:58:47.000Z" + }, + "end": { + "$date": "2021-05-30T05:36:12.000Z" + }, + "events": [ + { + "uuid": "ca1ebad4-9dd8-4ee8-b261-e82aa7ca296c", + "start": { + "$date": "2021-05-30T04:58:47.000Z" + }, + "end": { + "$date": "2021-05-30T05:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "4aea9271-8b70-4bf3-808c-b11fbd9c4ee0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T04:58:25.000Z" + }, + "end": { + "$date": "2021-05-30T05:44:37.000Z" + }, + "events": [ + { + "uuid": "f699421b-c037-40cc-bb51-c13cb96b6437", + "start": { + "$date": "2021-05-30T04:58:25.000Z" + }, + "end": { + "$date": "2021-05-30T05:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8bc3214a-f7cf-4d88-8f62-ba8835a79f41", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-30T04:58:46.000Z" + }, + "end": { + "$date": "2021-05-30T06:32:24.000Z" + }, + "events": [ + { + "uuid": "64f84f65-6ee1-4b17-b1b0-05b2db5a6f3a", + "start": { + "$date": "2021-05-30T04:58:46.000Z" + }, + "end": { + "$date": "2021-05-30T06:32:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "704fb9ff-2111-4f66-8aec-2d02b00f8265", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T05:44:44.000Z" + }, + "end": { + "$date": "2021-05-30T06:11:45.000Z" + }, + "events": [ + { + "uuid": "2766d402-f2eb-4345-8cc3-7cb9d6cc278f", + "start": { + "$date": "2021-05-30T05:44:44.000Z" + }, + "end": { + "$date": "2021-05-30T06:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "591cb129-67da-42f0-bb4c-69e8e406e053", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-30T06:32:59.000Z" + }, + "end": { + "$date": "2021-05-30T07:49:30.000Z" + }, + "events": [ + { + "uuid": "73bffa88-ced5-4ca5-8c94-06aa946b1eef", + "start": { + "$date": "2021-05-30T06:32:59.000Z" + }, + "end": { + "$date": "2021-05-30T07:49:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e7ee6f76-eab7-4592-bf6f-885c9e38285b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T13:53:12.000Z" + }, + "end": { + "$date": "2021-05-30T14:53:33.000Z" + }, + "events": [ + { + "uuid": "98b89243-3660-458c-b813-11b2306f3653", + "start": { + "$date": "2021-05-30T13:53:12.000Z" + }, + "end": { + "$date": "2021-05-30T14:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f8ce278a-e830-4ac5-b303-f3f4cf907d42", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T14:16:49.000Z" + }, + "end": { + "$date": "2021-05-30T15:02:55.000Z" + }, + "events": [ + { + "uuid": "812ac0ba-52de-41df-a9b1-1f70b9d2720c", + "start": { + "$date": "2021-05-30T14:16:49.000Z" + }, + "end": { + "$date": "2021-05-30T15:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "3786e696-9640-439f-babb-25c79b075fb1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T14:53:38.000Z" + }, + "end": { + "$date": "2021-05-30T17:28:43.000Z" + }, + "events": [ + { + "uuid": "bc778a69-cdc5-4caa-90fd-6245609432ac", + "start": { + "$date": "2021-05-30T14:53:38.000Z" + }, + "end": { + "$date": "2021-05-30T17:28:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "76fd8fe5-28b7-4c23-9e3f-4ada98bce40a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T15:03:06.000Z" + }, + "end": { + "$date": "2021-05-30T17:28:45.000Z" + }, + "events": [ + { + "uuid": "031ab364-517a-4de4-8803-a6f1af32c3aa", + "start": { + "$date": "2021-05-30T15:03:06.000Z" + }, + "end": { + "$date": "2021-05-30T17:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "559f8b2c-87c1-402d-8553-18a0e13f0b13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-30T17:28:51.000Z" + }, + "end": { + "$date": "2021-05-30T18:43:48.000Z" + }, + "events": [ + { + "uuid": "37dc9466-1add-4bd8-913a-6d0a370a0629", + "start": { + "$date": "2021-05-30T17:28:51.000Z" + }, + "end": { + "$date": "2021-05-30T18:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8b67bb11-caf0-4e45-90ce-9fe39e673253", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T17:29:53.000Z" + }, + "end": { + "$date": "2021-05-30T18:24:32.000Z" + }, + "events": [ + { + "uuid": "6b5c878d-fbd2-4d63-b1e6-680e38689c92", + "start": { + "$date": "2021-05-30T17:29:53.000Z" + }, + "end": { + "$date": "2021-05-30T18:24:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91b143d7-636a-4687-8834-7dce3a5ad730", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T17:56:24.000Z" + }, + "end": { + "$date": "2021-05-30T18:28:53.000Z" + }, + "events": [ + { + "uuid": "1f0a3589-c699-415f-bdc7-228cf9475642", + "start": { + "$date": "2021-05-30T17:56:24.000Z" + }, + "end": { + "$date": "2021-05-30T18:28:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6efa3f20-e04c-48be-9e62-a9ea8280addc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T18:34:47.000Z" + }, + "end": { + "$date": "2021-05-30T19:09:27.000Z" + }, + "events": [ + { + "uuid": "7ea66d26-ca01-4365-b6fd-5cf9c0c49372", + "start": { + "$date": "2021-05-30T18:34:47.000Z" + }, + "end": { + "$date": "2021-05-30T19:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45da35e1-5e25-4689-a851-51ec30e8e872", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-30T18:35:38.000Z" + }, + "end": { + "$date": "2021-05-30T19:09:30.000Z" + }, + "events": [ + { + "uuid": "32c812d7-b0b7-4127-9870-d585947fe3fe", + "start": { + "$date": "2021-05-30T18:35:38.000Z" + }, + "end": { + "$date": "2021-05-30T19:09:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5cb0d84c-c4cd-48cb-acbb-61264c46e6bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T18:49:02.000Z" + }, + "end": { + "$date": "2021-05-30T19:12:48.000Z" + }, + "events": [ + { + "uuid": "3fbe9165-eda8-4061-a016-ebd09752b79a", + "start": { + "$date": "2021-05-30T18:49:02.000Z" + }, + "end": { + "$date": "2021-05-30T19:04:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "031f5a5a-cbcc-4c8f-9ff1-9f78feead9c8", + "start": { + "$date": "2021-05-30T19:04:02.000Z" + }, + "end": { + "$date": "2021-05-30T19:09:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d03cf0d1-d6c2-4fef-84dd-5ab114e91980", + "start": { + "$date": "2021-05-30T19:09:02.000Z" + }, + "end": { + "$date": "2021-05-30T19:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "19de3c02-1f5a-4f79-9165-f4be4044d4ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T19:11:48.000Z" + }, + "end": { + "$date": "2021-05-30T21:04:54.000Z" + }, + "events": [ + { + "uuid": "8712a246-bb9f-4014-8524-5acd9ffea4a5", + "start": { + "$date": "2021-05-30T19:11:48.000Z" + }, + "end": { + "$date": "2021-05-30T20:06:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d05caaa2-b129-4808-99cc-12178cb63648", + "start": { + "$date": "2021-05-30T20:06:48.000Z" + }, + "end": { + "$date": "2021-05-30T20:20:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c0b1aa8-7356-4817-b8b4-d2e020383535", + "start": { + "$date": "2021-05-30T20:20:48.000Z" + }, + "end": { + "$date": "2021-05-30T21:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "372796fe-f645-47b6-9c11-dd07ad007786", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-30T19:12:14.000Z" + }, + "end": { + "$date": "2021-05-30T19:51:05.000Z" + }, + "events": [ + { + "uuid": "b099022d-dc94-4837-89d7-427e5e47f5ee", + "start": { + "$date": "2021-05-30T19:12:14.000Z" + }, + "end": { + "$date": "2021-05-30T19:51:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "24f13b13-63a5-4e58-b741-111125016b17", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-30T19:17:36.000Z" + }, + "end": { + "$date": "2021-05-30T19:51:35.000Z" + }, + "events": [ + { + "uuid": "66fc576f-b63f-4332-aa7a-f39248b71d62", + "start": { + "$date": "2021-05-30T19:17:36.000Z" + }, + "end": { + "$date": "2021-05-30T19:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "63b1ad75-409c-4628-9362-d0d622af6354", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-30T19:19:09.000Z" + }, + "end": { + "$date": "2021-05-31T00:25:55.000Z" + }, + "events": [ + { + "uuid": "dc899ee2-7ccb-4c58-8a86-b05881d43887", + "start": { + "$date": "2021-05-30T19:19:09.000Z" + }, + "end": { + "$date": "2021-05-30T22:03:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6b059ce6-fdbd-4990-a93c-180e7ab64e0b", + "start": { + "$date": "2021-05-30T22:03:09.000Z" + }, + "end": { + "$date": "2021-05-30T22:08:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0b5280f0-aad4-4bbf-8015-1f028fa6d3f6", + "start": { + "$date": "2021-05-30T22:08:09.000Z" + }, + "end": { + "$date": "2021-05-30T22:18:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19dc315c-efe3-4600-9d8d-b15b54935903", + "start": { + "$date": "2021-05-30T22:18:09.000Z" + }, + "end": { + "$date": "2021-05-30T22:33:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "76eefe57-e325-4794-98b4-76a347ce0548", + "start": { + "$date": "2021-05-30T22:33:09.000Z" + }, + "end": { + "$date": "2021-05-30T22:59:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a69d7216-eabb-4f63-94ce-df336603d9d4", + "start": { + "$date": "2021-05-30T22:59:09.000Z" + }, + "end": { + "$date": "2021-05-30T23:02:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dfcc24c3-9b56-4e51-9d8a-d9437da7aa9d", + "start": { + "$date": "2021-05-30T23:02:09.000Z" + }, + "end": { + "$date": "2021-05-31T00:25:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "dd76691f-faf1-441c-ab30-cd655b51ff53", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T20:16:36.000Z" + }, + "end": { + "$date": "2021-05-30T20:18:11.000Z" + }, + "events": [ + { + "uuid": "9af5d388-6562-43e2-8cab-b8360ee09b2c", + "start": { + "$date": "2021-05-30T20:16:36.000Z" + }, + "end": { + "$date": "2021-05-30T20:18:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "59492c4d-1577-4a45-9239-47e97ac4a399", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T20:18:21.000Z" + }, + "end": { + "$date": "2021-05-30T20:42:41.000Z" + }, + "events": [ + { + "uuid": "870ed959-9040-4abc-80b8-774b4b92fab4", + "start": { + "$date": "2021-05-30T20:18:21.000Z" + }, + "end": { + "$date": "2021-05-30T20:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "589a49e3-00cf-41ac-81ca-62f4773279ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-30T20:24:56.000Z" + }, + "end": { + "$date": "2021-05-30T21:04:46.000Z" + }, + "events": [ + { + "uuid": "2d591199-9694-4206-b99d-0085a1c15a1d", + "start": { + "$date": "2021-05-30T20:24:56.000Z" + }, + "end": { + "$date": "2021-05-30T21:04:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0c4a4652-7df4-4f4b-b96b-709b13022624", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-30T20:26:50.000Z" + }, + "end": { + "$date": "2021-05-30T21:04:44.000Z" + }, + "events": [ + { + "uuid": "1f15e251-4612-4daa-9199-951c21f57a86", + "start": { + "$date": "2021-05-30T20:26:50.000Z" + }, + "end": { + "$date": "2021-05-30T21:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "63c69825-1a44-41e9-a0b5-db866deb8d2d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-30T21:05:23.000Z" + }, + "end": { + "$date": "2021-05-30T21:06:49.000Z" + }, + "events": [ + { + "uuid": "32d895d3-5c54-4f94-a2d3-023796924b74", + "start": { + "$date": "2021-05-30T21:05:23.000Z" + }, + "end": { + "$date": "2021-05-30T21:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d1a8f88-d76c-4078-bde1-37cd2f77ab3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T21:11:17.000Z" + }, + "end": { + "$date": "2021-05-30T21:33:25.000Z" + }, + "events": [ + { + "uuid": "622d5cf0-b946-4aaa-b764-58b6c5c70a68", + "start": { + "$date": "2021-05-30T21:11:17.000Z" + }, + "end": { + "$date": "2021-05-30T21:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c23996e9-0334-42de-93f8-982c7987437b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-30T21:07:58.000Z" + }, + "end": { + "$date": "2021-05-30T21:35:04.000Z" + }, + "events": [ + { + "uuid": "663daafa-da4f-4370-abad-30468fcf4103", + "start": { + "$date": "2021-05-30T21:07:58.000Z" + }, + "end": { + "$date": "2021-05-30T21:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "fb8e4dca-8826-455c-8ec7-8140850889bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T21:17:53.000Z" + }, + "end": { + "$date": "2021-05-30T21:19:34.000Z" + }, + "events": [ + { + "uuid": "fd22e6cb-e694-4459-a39d-06f0be24db7a", + "start": { + "$date": "2021-05-30T21:17:53.000Z" + }, + "end": { + "$date": "2021-05-30T21:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "0c43b788-f078-4cc6-8cc1-73632c4cb1b9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T21:20:29.000Z" + }, + "end": { + "$date": "2021-05-30T21:21:59.000Z" + }, + "events": [ + { + "uuid": "7bd55ff3-2a00-451b-a2e9-66ea06eabcaf", + "start": { + "$date": "2021-05-30T21:20:29.000Z" + }, + "end": { + "$date": "2021-05-30T21:21:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aad54e6d-96b6-4f94-824c-6ca22a486937", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-30T21:35:18.000Z" + }, + "end": { + "$date": "2021-05-30T23:55:47.000Z" + }, + "events": [ + { + "uuid": "7f2b22f2-0a05-452a-a6be-fac790aafb49", + "start": { + "$date": "2021-05-30T21:35:18.000Z" + }, + "end": { + "$date": "2021-05-30T23:55:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fb643a1f-6b32-4465-ae3d-f9c1b239e027", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-30T21:35:33.000Z" + }, + "end": { + "$date": "2021-05-31T00:29:44.000Z" + }, + "events": [ + { + "uuid": "9983afe6-ff5c-47e6-901f-7748accfbd03", + "start": { + "$date": "2021-05-30T21:35:33.000Z" + }, + "end": { + "$date": "2021-05-31T00:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "621f4e6c-17e0-47ba-a43e-8c9ef7d5f195", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-30T23:59:32.000Z" + }, + "end": { + "$date": "2021-05-31T02:08:09.000Z" + }, + "events": [ + { + "uuid": "163e3245-67d4-4ad7-8c36-376376ba3b5e", + "start": { + "$date": "2021-05-30T23:59:32.000Z" + }, + "end": { + "$date": "2021-05-31T04:06:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8329465b-430a-4035-9b1c-04ca549bf11a", + "start": { + "$date": "2021-05-31T04:06:32.000Z" + }, + "end": { + "$date": "2021-05-31T04:15:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "37e403e3-5b41-422a-897a-2bdd06bd2a51", + "start": { + "$date": "2021-05-31T04:15:32.000Z" + }, + "end": { + "$date": "2021-05-31T02:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "8340186b-e714-4525-99e0-5278f284d4ec", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T21:46:10.000Z" + }, + "end": { + "$date": "2021-05-30T21:47:20.000Z" + }, + "events": [ + { + "uuid": "b364f119-e44d-4b4c-9eef-c04577ff0c5a", + "start": { + "$date": "2021-05-30T21:46:10.000Z" + }, + "end": { + "$date": "2021-05-30T21:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "76b8b3cf-29ff-44d3-808b-72daf7932904", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T21:54:31.000Z" + }, + "end": { + "$date": "2021-05-30T21:55:51.000Z" + }, + "events": [ + { + "uuid": "88ea838a-ff3d-40e3-a041-d6a51cfe166f", + "start": { + "$date": "2021-05-30T21:54:31.000Z" + }, + "end": { + "$date": "2021-05-30T21:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "be4212a9-6fc1-4328-85b6-8584fba12356", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T21:59:07.000Z" + }, + "end": { + "$date": "2021-05-30T22:05:02.000Z" + }, + "events": [ + { + "uuid": "917204e1-3969-483e-9cfe-b21677ee6077", + "start": { + "$date": "2021-05-30T21:59:07.000Z" + }, + "end": { + "$date": "2021-05-30T22:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "57a4c9fb-4a11-468e-8b93-88ae6df208c1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-30T22:09:33.000Z" + }, + "end": { + "$date": "2021-05-30T23:45:18.000Z" + }, + "events": [ + { + "uuid": "b47a8eb4-f1fd-48d6-8a87-92a5bbba9e57", + "start": { + "$date": "2021-05-30T22:09:33.000Z" + }, + "end": { + "$date": "2021-05-30T23:18:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09d4e90c-f7ee-4f77-b4b5-9a1cbd51d35a", + "start": { + "$date": "2021-05-30T23:18:33.000Z" + }, + "end": { + "$date": "2021-05-30T23:23:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8b84949-0c07-4912-9300-b29c921d4815", + "start": { + "$date": "2021-05-30T23:23:33.000Z" + }, + "end": { + "$date": "2021-05-30T23:33:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "485604d1-9bd9-457e-af24-9e67a53a9b4e", + "start": { + "$date": "2021-05-30T23:33:33.000Z" + }, + "end": { + "$date": "2021-05-30T23:42:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "27292c4d-e320-4f0c-9685-3344fec22da5", + "start": { + "$date": "2021-05-30T23:42:33.000Z" + }, + "end": { + "$date": "2021-05-30T23:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69ce5173-d8d2-4e2c-8f9e-11ef9efb8e40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T00:01:56.000Z" + }, + "end": { + "$date": "2021-05-31T00:18:12.000Z" + }, + "events": [ + { + "uuid": "093755cc-b2df-4bcd-bc6b-9a7962456684", + "start": { + "$date": "2021-05-31T00:01:56.000Z" + }, + "end": { + "$date": "2021-05-31T00:18:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a1f984e-095f-44ec-acc7-edeca0d092b9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-31T00:07:53.000Z" + }, + "end": { + "$date": "2021-05-31T01:44:00.000Z" + }, + "events": [ + { + "uuid": "1eb27a1c-aece-46bc-a85d-18946c5e8037", + "start": { + "$date": "2021-05-31T00:07:53.000Z" + }, + "end": { + "$date": "2021-05-31T01:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "581ec648-f483-4b19-9006-69d2ca72cb88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T00:29:05.000Z" + }, + "end": { + "$date": "2021-05-31T00:44:09.000Z" + }, + "events": [ + { + "uuid": "f4156598-2a67-4cce-be02-5e7adf9ae535", + "start": { + "$date": "2021-05-31T00:29:05.000Z" + }, + "end": { + "$date": "2021-05-31T00:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5e1f6603-03f5-446b-93e3-c0c77301d2b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T00:26:05.000Z" + }, + "end": { + "$date": "2021-05-31T01:44:53.000Z" + }, + "events": [ + { + "uuid": "bc472e67-f6ac-41b3-8652-3bc11d219a26", + "start": { + "$date": "2021-05-31T00:26:05.000Z" + }, + "end": { + "$date": "2021-05-31T01:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "dead093e-0807-4481-a2c5-add4442641ec", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-31T00:30:43.000Z" + }, + "end": { + "$date": "2021-05-31T01:19:53.000Z" + }, + "events": [ + { + "uuid": "7a206792-fcc1-44fd-8864-2df36fa7b254", + "start": { + "$date": "2021-05-31T00:30:43.000Z" + }, + "end": { + "$date": "2021-05-31T01:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36353096-36a2-4cd3-b213-f730d9d437e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T02:14:14.000Z" + }, + "end": { + "$date": "2021-05-31T02:54:48.000Z" + }, + "events": [ + { + "uuid": "5b2a4ab2-b66c-4ef8-8ba4-acd99e3dda0e", + "start": { + "$date": "2021-05-31T02:14:14.000Z" + }, + "end": { + "$date": "2021-05-31T02:30:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4f6890e-6a5c-4455-a866-ed93d6d35aa7", + "start": { + "$date": "2021-05-31T02:30:14.000Z" + }, + "end": { + "$date": "2021-05-31T03:12:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2ce0a48-2d5b-4d65-a138-cf3f9ce7b2ea", + "start": { + "$date": "2021-05-31T03:12:14.000Z" + }, + "end": { + "$date": "2021-05-31T02:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e73404b7-e2a6-4866-b1c8-ef66569dea35", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T01:45:03.000Z" + }, + "end": { + "$date": "2021-05-31T03:14:19.000Z" + }, + "events": [ + { + "uuid": "543d540e-5895-4277-b7f5-3bcd2a412337", + "start": { + "$date": "2021-05-31T01:45:03.000Z" + }, + "end": { + "$date": "2021-05-31T03:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f3a160a0-d327-4763-a638-92e068e84173", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-31T02:09:23.000Z" + }, + "end": { + "$date": "2021-05-31T03:47:21.000Z" + }, + "events": [ + { + "uuid": "96ac2eec-5f65-4e0e-a41b-3b3ea24a5081", + "start": { + "$date": "2021-05-31T02:09:23.000Z" + }, + "end": { + "$date": "2021-05-31T03:47:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a9fda58-a7c8-47a7-a1b3-48bd08bd250f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-31T02:15:35.000Z" + }, + "end": { + "$date": "2021-05-31T02:54:40.000Z" + }, + "events": [ + { + "uuid": "17a5fa4e-ce47-4c63-af42-ffc169ceb777", + "start": { + "$date": "2021-05-31T02:15:35.000Z" + }, + "end": { + "$date": "2021-05-31T02:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "f058f717-2229-4f15-a374-23e3b82afe6c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-31T02:19:17.000Z" + }, + "end": { + "$date": "2021-05-31T04:13:41.000Z" + }, + "events": [ + { + "uuid": "9da5af88-6c18-46a2-a3f7-35f7d225683e", + "start": { + "$date": "2021-05-31T02:19:17.000Z" + }, + "end": { + "$date": "2021-05-31T02:30:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c15ad1e-4c25-4056-82c2-5e7a2026887d", + "start": { + "$date": "2021-05-31T02:30:17.000Z" + }, + "end": { + "$date": "2021-05-31T02:35:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cff3105b-1376-4370-8684-d02d9542d882", + "start": { + "$date": "2021-05-31T02:35:17.000Z" + }, + "end": { + "$date": "2021-05-31T02:46:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4899afd-38ba-4741-bf11-3e298568c7c4", + "start": { + "$date": "2021-05-31T02:46:17.000Z" + }, + "end": { + "$date": "2021-05-31T04:09:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7acae78-e0d4-464e-bfeb-1b7ecbcc037a", + "start": { + "$date": "2021-05-31T04:09:17.000Z" + }, + "end": { + "$date": "2021-05-31T04:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5a851954-ac74-4eb0-8fb9-9ec109811644", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-31T03:59:28.000Z" + }, + "end": { + "$date": "2021-05-31T04:01:02.000Z" + }, + "events": [ + { + "uuid": "23e7d4a4-4b86-47e6-8687-df88ef0b1c76", + "start": { + "$date": "2021-05-31T03:59:28.000Z" + }, + "end": { + "$date": "2021-05-31T04:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4bac111-ce46-467d-9ccd-157f386e2b4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T03:07:34.000Z" + }, + "end": { + "$date": "2021-05-31T03:39:51.000Z" + }, + "events": [ + { + "uuid": "4f8a2893-8f92-4c5b-b195-ab43f9c95d39", + "start": { + "$date": "2021-05-31T03:07:34.000Z" + }, + "end": { + "$date": "2021-05-31T03:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "70914884-0b76-48e3-baf3-bb4142451719", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T03:47:53.000Z" + }, + "end": { + "$date": "2021-05-31T03:51:58.000Z" + }, + "events": [ + { + "uuid": "2ef4b57b-bece-416b-a875-32efb0437c6b", + "start": { + "$date": "2021-05-31T03:47:53.000Z" + }, + "end": { + "$date": "2021-05-31T03:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3162593-3340-47ee-8d74-df2a52585566", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T04:00:13.000Z" + }, + "end": { + "$date": "2021-05-31T04:30:12.000Z" + }, + "events": [ + { + "uuid": "e960208c-000a-46c8-8010-1aed2bb4929c", + "start": { + "$date": "2021-05-31T04:00:13.000Z" + }, + "end": { + "$date": "2021-05-31T04:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e8b100b-e36f-46fa-9669-a88bcc18aa5c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-31T04:03:33.000Z" + }, + "end": { + "$date": "2021-05-31T04:40:19.000Z" + }, + "events": [ + { + "uuid": "04d4890b-6cae-432c-8e3e-ed69b59f7b1a", + "start": { + "$date": "2021-05-31T04:03:33.000Z" + }, + "end": { + "$date": "2021-05-31T04:40:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c53b1f6f-5f41-41fb-bf00-f3ecb99db339", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T04:02:06.000Z" + }, + "end": { + "$date": "2021-05-31T04:06:03.000Z" + }, + "events": [ + { + "uuid": "7550dc65-ca95-4cdc-bf28-cec896505c76", + "start": { + "$date": "2021-05-31T04:02:06.000Z" + }, + "end": { + "$date": "2021-05-31T04:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c444b525-b95e-4315-bee4-86559d362c22", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T04:17:17.000Z" + }, + "end": { + "$date": "2021-05-31T04:26:52.000Z" + }, + "events": [ + { + "uuid": "70aaa221-dd67-46bf-a334-119fbc6bed06", + "start": { + "$date": "2021-05-31T04:17:17.000Z" + }, + "end": { + "$date": "2021-05-31T04:26:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d57c9ddc-c561-4b2f-92b7-c2eab7671b1a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-31T04:19:52.000Z" + }, + "end": { + "$date": "2021-05-31T05:23:19.000Z" + }, + "events": [ + { + "uuid": "287232b4-9496-4a74-b3f4-413fb21a9bfe", + "start": { + "$date": "2021-05-31T04:19:52.000Z" + }, + "end": { + "$date": "2021-05-31T05:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "30ac7cb7-9fba-43b9-8dba-253323bef7dd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T04:27:42.000Z" + }, + "end": { + "$date": "2021-05-31T04:40:52.000Z" + }, + "events": [ + { + "uuid": "9983a6b1-2528-4d8b-ac14-c99cae8272bc", + "start": { + "$date": "2021-05-31T04:27:42.000Z" + }, + "end": { + "$date": "2021-05-31T04:37:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30ebe0c4-034e-4042-abf8-cc7dd544ef38", + "start": { + "$date": "2021-05-31T04:37:42.000Z" + }, + "end": { + "$date": "2021-05-31T04:40:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "429679f6-2b1a-4d25-90bd-bdb848f993fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T04:36:00.000Z" + }, + "end": { + "$date": "2021-05-31T05:05:05.000Z" + }, + "events": [ + { + "uuid": "c372a97a-061b-4a81-9074-96b4239b348d", + "start": { + "$date": "2021-05-31T04:36:00.000Z" + }, + "end": { + "$date": "2021-05-31T05:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cc38ef81-7796-4d1c-a1e4-e962f28d0b8a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-05-31T15:43:40.000Z" + }, + "end": { + "$date": "2021-05-31T16:06:13.000Z" + }, + "events": [ + { + "uuid": "1b233a56-7c53-490a-861c-cf6c7e746945", + "start": { + "$date": "2021-05-31T15:43:40.000Z" + }, + "end": { + "$date": "2021-05-31T15:59:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eed931fc-92d3-42e1-90b4-b8aef01cd414", + "start": { + "$date": "2021-05-31T15:59:40.000Z" + }, + "end": { + "$date": "2021-05-31T16:05:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b50da0bc-3af8-4e4c-971f-0561a66a249c", + "start": { + "$date": "2021-05-31T16:05:40.000Z" + }, + "end": { + "$date": "2021-05-31T16:07:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b5442a4-3abb-48fb-8cac-0ab315c6de9c", + "start": { + "$date": "2021-05-31T16:07:40.000Z" + }, + "end": { + "$date": "2021-06-01T01:53:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d4b11a3-60d7-414d-aece-93260a32f059", + "start": { + "$date": "2021-06-01T01:53:40.000Z" + }, + "end": { + "$date": "2021-06-01T01:55:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "405a348b-ff08-4cdf-9b10-8f70c8eb3dfa", + "start": { + "$date": "2021-06-01T01:55:40.000Z" + }, + "end": { + "$date": "2021-06-01T02:46:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf0f5676-8e15-4be6-b139-b934b6fae05b", + "start": { + "$date": "2021-06-01T02:46:40.000Z" + }, + "end": { + "$date": "2021-05-31T16:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "66fc9fa4-04f3-427f-b4fa-5652ea798a13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T04:50:33.000Z" + }, + "end": { + "$date": "2021-05-31T05:22:15.000Z" + }, + "events": [ + { + "uuid": "88705f2d-bbdd-4f7c-9758-5ec020abf976", + "start": { + "$date": "2021-05-31T04:50:33.000Z" + }, + "end": { + "$date": "2021-05-31T05:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb77c466-ef32-4fe4-8a09-2d7f591c55ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T05:10:21.000Z" + }, + "end": { + "$date": "2021-05-31T05:42:31.000Z" + }, + "events": [ + { + "uuid": "9dd515ca-6291-4574-983e-0faf552b5794", + "start": { + "$date": "2021-05-31T05:10:21.000Z" + }, + "end": { + "$date": "2021-05-31T05:42:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "04df419f-29bf-4428-86af-900ba1e1c63e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T05:10:31.000Z" + }, + "end": { + "$date": "2021-05-31T05:20:06.000Z" + }, + "events": [ + { + "uuid": "a859fef8-8982-4de2-bfe3-288638b86cc4", + "start": { + "$date": "2021-05-31T05:10:31.000Z" + }, + "end": { + "$date": "2021-05-31T05:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f9ab014-ed83-4116-b03d-998a9775ff73", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T05:44:05.000Z" + }, + "end": { + "$date": "2021-05-31T05:50:30.000Z" + }, + "events": [ + { + "uuid": "d38672a6-a7ac-4dcb-bf1f-f6b32b4fda2c", + "start": { + "$date": "2021-05-31T05:44:05.000Z" + }, + "end": { + "$date": "2021-05-31T05:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "25af5566-64ef-4443-897c-cca90b41a673", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T06:02:58.000Z" + }, + "end": { + "$date": "2021-05-31T06:17:26.000Z" + }, + "events": [ + { + "uuid": "df86ec86-8a65-4895-b5b1-3f13a5a25301", + "start": { + "$date": "2021-05-31T06:02:58.000Z" + }, + "end": { + "$date": "2021-05-31T06:17:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "37430782-cfc1-4a4e-baec-52dd7c07d50e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-31T12:54:25.000Z" + }, + "end": { + "$date": "2021-05-31T14:00:09.000Z" + }, + "events": [ + { + "uuid": "9a5cbde4-b6e2-4d1f-ab80-3a364b42ebd9", + "start": { + "$date": "2021-05-31T12:54:25.000Z" + }, + "end": { + "$date": "2021-05-31T14:00:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "cb875987-6aef-4172-bbb2-5554f09a2328", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-31T14:05:41.000Z" + }, + "end": { + "$date": "2021-05-31T14:09:16.000Z" + }, + "events": [ + { + "uuid": "87a115a6-4e8a-4b16-8615-c469bcc7fbd4", + "start": { + "$date": "2021-05-31T14:05:41.000Z" + }, + "end": { + "$date": "2021-05-31T14:09:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8bdca13d-fc24-49e1-bb9c-abe18ed998c7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T14:37:44.000Z" + }, + "end": { + "$date": "2021-05-31T15:57:18.000Z" + }, + "events": [ + { + "uuid": "f42c0d56-7f18-4b37-a772-23ce5ab7885f", + "start": { + "$date": "2021-05-31T14:37:44.000Z" + }, + "end": { + "$date": "2021-05-31T15:57:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b5edf715-96a6-409a-8d86-72441169cf92", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T15:57:50.000Z" + }, + "end": { + "$date": "2021-05-31T16:18:16.000Z" + }, + "events": [ + { + "uuid": "38e77faf-c827-4ad1-9524-382ce14b1218", + "start": { + "$date": "2021-05-31T15:57:50.000Z" + }, + "end": { + "$date": "2021-05-31T16:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "365aaa72-1c3c-469a-8abc-45695175e548", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T16:18:53.000Z" + }, + "end": { + "$date": "2021-05-31T18:28:31.000Z" + }, + "events": [ + { + "uuid": "19e89cdb-5616-46c2-b179-091f3ba85734", + "start": { + "$date": "2021-05-31T16:18:53.000Z" + }, + "end": { + "$date": "2021-05-31T18:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d52f1807-736a-4727-a262-f8f833024a75", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-31T16:59:57.000Z" + }, + "end": { + "$date": "2021-05-31T21:58:53.000Z" + }, + "events": [ + { + "uuid": "95d0169d-3322-48fd-b163-1dd14007940e", + "start": { + "$date": "2021-05-31T16:59:57.000Z" + }, + "end": { + "$date": "2021-05-31T21:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5161525d-8bf6-49e7-87d6-d21b66555f2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T17:52:53.000Z" + }, + "end": { + "$date": "2021-05-31T18:28:41.000Z" + }, + "events": [ + { + "uuid": "99f5c252-6044-4ae8-a4bd-8f31b0aa2e37", + "start": { + "$date": "2021-05-31T17:52:53.000Z" + }, + "end": { + "$date": "2021-05-31T18:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2bbde574-f7e2-48b7-94c8-330fe195dd1e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-31T18:26:34.000Z" + }, + "end": { + "$date": "2021-05-31T19:12:51.000Z" + }, + "events": [ + { + "uuid": "24bcdb05-f163-43cc-8d55-66e7a7b39bdf", + "start": { + "$date": "2021-05-31T18:26:34.000Z" + }, + "end": { + "$date": "2021-05-31T19:02:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed67ddd7-ed92-43b3-90b3-0176213ec20f", + "start": { + "$date": "2021-05-31T19:02:34.000Z" + }, + "end": { + "$date": "2021-05-31T19:12:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bcd0be3-16db-4d0a-8340-299f431fdd1b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T19:33:18.000Z" + }, + "end": { + "$date": "2021-05-31T20:01:12.000Z" + }, + "events": [ + { + "uuid": "6fc22b44-8e13-45f6-9f3e-234a43f1f8b5", + "start": { + "$date": "2021-05-31T19:33:18.000Z" + }, + "end": { + "$date": "2021-05-31T19:49:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e50ca63-8fd6-4750-91e5-7e2ac716a35c", + "start": { + "$date": "2021-05-31T19:49:18.000Z" + }, + "end": { + "$date": "2021-05-31T20:33:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52839793-8520-44a3-9dc6-a8417e37a017", + "start": { + "$date": "2021-05-31T20:33:18.000Z" + }, + "end": { + "$date": "2021-05-31T20:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "ad4bc99d-20a4-49db-886e-f639d414b318", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T18:31:48.000Z" + }, + "end": { + "$date": "2021-05-31T19:16:00.000Z" + }, + "events": [ + { + "uuid": "e81cfa09-b2c4-4b09-a7ea-dc727be3b547", + "start": { + "$date": "2021-05-31T18:31:48.000Z" + }, + "end": { + "$date": "2021-05-31T19:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "758ea086-e0cb-463a-a32e-830af523bc20", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T19:12:52.000Z" + }, + "end": { + "$date": "2021-05-31T19:25:08.000Z" + }, + "events": [ + { + "uuid": "404be1a2-37d5-4e3e-a820-4fd1a9b96993", + "start": { + "$date": "2021-05-31T19:12:52.000Z" + }, + "end": { + "$date": "2021-05-31T19:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "63a1f8b3-8b1a-43ab-acdd-abd4293412c0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T19:16:52.000Z" + }, + "end": { + "$date": "2021-05-31T20:40:27.000Z" + }, + "events": [ + { + "uuid": "df018668-6a6e-4d7a-a32d-b29a7978a099", + "start": { + "$date": "2021-05-31T19:16:52.000Z" + }, + "end": { + "$date": "2021-05-31T20:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8095bdb3-5ac7-4ab6-9dae-c7e22599343e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T19:43:13.000Z" + }, + "end": { + "$date": "2021-05-31T19:46:06.000Z" + }, + "events": [ + { + "uuid": "121d1cfa-3978-46ec-aea7-aa6e66e1161b", + "start": { + "$date": "2021-05-31T19:43:13.000Z" + }, + "end": { + "$date": "2021-05-31T19:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5757abbf-ec31-40cf-83ec-cd140dcdeb0a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T19:49:05.000Z" + }, + "end": { + "$date": "2021-05-31T20:03:31.000Z" + }, + "events": [ + { + "uuid": "42aedec0-eb5d-4eb2-8c6e-9dd1704a6b3a", + "start": { + "$date": "2021-05-31T19:49:05.000Z" + }, + "end": { + "$date": "2021-05-31T20:03:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34d99541-0da4-4fea-9b32-40ae71bfe7bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T20:48:16.000Z" + }, + "end": { + "$date": "2021-05-31T21:21:45.000Z" + }, + "events": [ + { + "uuid": "ae3791f9-bae6-4e8e-a9cf-f32d3aeca05f", + "start": { + "$date": "2021-05-31T20:48:16.000Z" + }, + "end": { + "$date": "2021-05-31T21:07:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddb7da8e-0cd0-4100-a533-06cd67240b27", + "start": { + "$date": "2021-05-31T21:07:16.000Z" + }, + "end": { + "$date": "2021-05-31T21:27:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "50cc1e75-45a0-4a35-8f6f-451998d5dac7", + "start": { + "$date": "2021-05-31T21:27:16.000Z" + }, + "end": { + "$date": "2021-05-31T21:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a48f1335-7967-40c1-b7a0-d5983d3a4ca7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-05-31T20:42:09.000Z" + }, + "end": { + "$date": "2021-05-31T21:13:02.000Z" + }, + "events": [ + { + "uuid": "9cfbd6b6-46ae-431b-a540-06606fb9e5b5", + "start": { + "$date": "2021-05-31T20:42:09.000Z" + }, + "end": { + "$date": "2021-05-31T21:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97998e64-f6f7-417a-b368-a4b93f53906d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T21:26:56.000Z" + }, + "end": { + "$date": "2021-05-31T21:43:11.000Z" + }, + "events": [ + { + "uuid": "153034d0-367c-4103-b7c0-4445c4c2acf7", + "start": { + "$date": "2021-05-31T21:26:56.000Z" + }, + "end": { + "$date": "2021-05-31T21:43:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbbfa971-0609-46f8-a027-67b78272f145", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T21:50:00.000Z" + }, + "end": { + "$date": "2021-05-31T22:17:37.000Z" + }, + "events": [ + { + "uuid": "f5fc9de9-74bd-492b-88ef-892d02dd7514", + "start": { + "$date": "2021-05-31T21:50:00.000Z" + }, + "end": { + "$date": "2021-05-31T22:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b41657ce-3a6f-4b3e-ac1c-51b17ed31122", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-31T16:59:57.000Z" + }, + "end": { + "$date": "2021-05-31T23:22:48.000Z" + }, + "events": [ + { + "uuid": "e6ea2fde-b3fa-4b3f-a604-f50bd674f194", + "start": { + "$date": "2021-05-31T16:59:57.000Z" + }, + "end": { + "$date": "2021-05-31T23:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e3aaddb-b820-436f-98b9-47ceb567caeb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-05-31T22:23:30.000Z" + }, + "end": { + "$date": "2021-05-31T22:57:38.000Z" + }, + "events": [ + { + "uuid": "12cde324-7c46-4677-af0d-c2b7f25941ba", + "start": { + "$date": "2021-05-31T22:23:30.000Z" + }, + "end": { + "$date": "2021-05-31T22:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dd89bc48-6970-4475-887d-b5ce08144265", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-05-31T22:49:48.000Z" + }, + "end": { + "$date": "2021-05-31T23:23:59.000Z" + }, + "events": [ + { + "uuid": "e2e37fed-974a-4e30-8f91-24c470b45f56", + "start": { + "$date": "2021-05-31T22:49:48.000Z" + }, + "end": { + "$date": "2021-05-31T23:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "a7ca496e-d4d9-42fd-a86c-e2c869f67ebf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-05-31T23:13:05.000Z" + }, + "end": { + "$date": "2021-06-01T02:04:25.000Z" + }, + "events": [ + { + "uuid": "e1423556-6ab4-4a6e-baec-943053800a4a", + "start": { + "$date": "2021-05-31T23:13:05.000Z" + }, + "end": { + "$date": "2021-06-01T00:13:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "288bc74e-79ea-4775-9f2e-24a52fc38248", + "start": { + "$date": "2021-06-01T00:13:05.000Z" + }, + "end": { + "$date": "2021-06-01T00:38:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6dd4c83a-1a45-4460-915b-dfc92cbd8dc9", + "start": { + "$date": "2021-06-01T00:38:05.000Z" + }, + "end": { + "$date": "2021-06-01T02:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "785c5332-cf76-4bbe-9a21-26e4887f2975", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-05-31T23:20:42.000Z" + }, + "end": { + "$date": "2021-06-01T01:23:35.000Z" + }, + "events": [ + { + "uuid": "583e921d-03b9-4710-bbe4-0b15d4f6bebc", + "start": { + "$date": "2021-05-31T23:20:42.000Z" + }, + "end": { + "$date": "2021-06-01T01:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2d045ffd-6501-4fd8-ab6e-17143c7fa899", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-05-31T23:28:17.000Z" + }, + "end": { + "$date": "2021-05-31T23:55:44.000Z" + }, + "events": [ + { + "uuid": "b5bad213-b631-41d6-b486-61eddf304dbe", + "start": { + "$date": "2021-05-31T23:28:17.000Z" + }, + "end": { + "$date": "2021-05-31T23:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d33fb41-321f-47ca-86c4-f6dfd5feab91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T00:21:49.000Z" + }, + "end": { + "$date": "2021-06-01T00:40:27.000Z" + }, + "events": [ + { + "uuid": "725e6916-a34c-4a74-8415-0f8cdf100292", + "start": { + "$date": "2021-06-01T00:21:49.000Z" + }, + "end": { + "$date": "2021-06-01T00:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "77c73879-4cee-473e-a161-e5c097ca4f3e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-01T01:24:38.000Z" + }, + "end": { + "$date": "2021-06-01T01:25:37.000Z" + }, + "events": [ + { + "uuid": "9eae3d84-0c5c-4a29-91f1-f1c3661c004e", + "start": { + "$date": "2021-06-01T01:24:38.000Z" + }, + "end": { + "$date": "2021-06-01T01:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "166e2538-766a-40d6-9eed-0875c0cac942", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-01T00:34:20.000Z" + }, + "end": { + "$date": "2021-06-01T04:21:31.000Z" + }, + "events": [ + { + "uuid": "58b052d7-af23-462e-aea5-13837bdc04e9", + "start": { + "$date": "2021-06-01T00:34:20.000Z" + }, + "end": { + "$date": "2021-06-01T04:21:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76852bd8-1d0f-467f-895f-d7de65fc33c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T00:46:19.000Z" + }, + "end": { + "$date": "2021-06-01T00:57:45.000Z" + }, + "events": [ + { + "uuid": "8a387539-ee0a-4f02-842c-334369592fcb", + "start": { + "$date": "2021-06-01T00:46:19.000Z" + }, + "end": { + "$date": "2021-06-01T00:57:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1b23bce-0851-4731-bf0e-537f3a7cbe54", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T01:09:08.000Z" + }, + "end": { + "$date": "2021-06-01T01:33:39.000Z" + }, + "events": [ + { + "uuid": "8f73ce15-74d0-47ca-8f34-912f46145dc9", + "start": { + "$date": "2021-06-01T01:09:08.000Z" + }, + "end": { + "$date": "2021-06-01T01:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bdd25d55-2c40-41ba-982f-06dac8594792", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-01T03:38:53.000Z" + }, + "end": { + "$date": "2021-06-01T15:23:29.000Z" + }, + "events": [ + { + "uuid": "5f6b694d-2d40-4001-b550-1bda15d0de9f", + "start": { + "$date": "2021-06-01T03:38:53.000Z" + }, + "end": { + "$date": "2021-06-01T06:52:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7791bedd-0751-429d-8b3e-495a2254e398", + "start": { + "$date": "2021-06-01T06:52:53.000Z" + }, + "end": { + "$date": "2021-06-01T07:01:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54f7a90e-44bb-4df3-ad7c-e6adb18147f7", + "start": { + "$date": "2021-06-01T07:01:53.000Z" + }, + "end": { + "$date": "2021-06-01T07:14:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6de1266-374d-4493-8cb6-f771ddbc58ee", + "start": { + "$date": "2021-06-01T07:14:53.000Z" + }, + "end": { + "$date": "2021-06-01T16:54:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "104d14a1-a641-42d1-96b2-fd08606e5ac5", + "start": { + "$date": "2021-06-01T16:54:53.000Z" + }, + "end": { + "$date": "2021-06-01T17:05:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e94cf14-f921-4b6e-b175-0abba9cd56c7", + "start": { + "$date": "2021-06-01T17:05:53.000Z" + }, + "end": { + "$date": "2021-06-01T17:12:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44cee003-6363-4f7b-b751-d303cc165029", + "start": { + "$date": "2021-06-01T17:12:53.000Z" + }, + "end": { + "$date": "2021-06-01T15:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bbb7cbf-7ce0-4f21-94d0-bae60ba5598b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T01:38:20.000Z" + }, + "end": { + "$date": "2021-06-01T02:14:07.000Z" + }, + "events": [ + { + "uuid": "be7521dd-3402-4a15-8f21-d4f33835559f", + "start": { + "$date": "2021-06-01T01:38:20.000Z" + }, + "end": { + "$date": "2021-06-01T02:14:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "580ba51b-e224-4ee0-a54e-d7d5984933c3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-01T02:25:48.000Z" + }, + "end": { + "$date": "2021-06-01T02:45:23.000Z" + }, + "events": [ + { + "uuid": "72fae381-f83c-40f3-a317-cdfe48f3345b", + "start": { + "$date": "2021-06-01T02:25:48.000Z" + }, + "end": { + "$date": "2021-06-01T02:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "25470bdd-1d07-498c-a537-44d685813914", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-01T02:29:46.000Z" + }, + "end": { + "$date": "2021-06-01T07:57:21.000Z" + }, + "events": [ + { + "uuid": "a340b0ae-9b5b-4f8f-a911-706380f8069a", + "start": { + "$date": "2021-06-01T02:29:46.000Z" + }, + "end": { + "$date": "2021-06-01T03:38:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e1bb1ef-2b72-4fe0-97ee-951d608c4f11", + "start": { + "$date": "2021-06-01T03:38:46.000Z" + }, + "end": { + "$date": "2021-06-01T03:42:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9328b3c2-62c5-4b3a-b33b-9ccc9d0839df", + "start": { + "$date": "2021-06-01T03:42:46.000Z" + }, + "end": { + "$date": "2021-06-01T03:44:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "57bc5fb5-05e1-465d-a8fd-9c210f632843", + "start": { + "$date": "2021-06-01T03:44:46.000Z" + }, + "end": { + "$date": "2021-06-01T04:12:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0a0c9a60-a6f6-42da-a3ec-96954e4f81bb", + "start": { + "$date": "2021-06-01T04:12:46.000Z" + }, + "end": { + "$date": "2021-06-01T04:15:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0da8191f-c615-4bf7-be55-1a3dfb5e27c8", + "start": { + "$date": "2021-06-01T04:15:46.000Z" + }, + "end": { + "$date": "2021-06-01T05:04:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1d3552af-d0e3-44fa-a50b-253a3f827d8d", + "start": { + "$date": "2021-06-01T05:04:46.000Z" + }, + "end": { + "$date": "2021-06-01T05:06:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd7d4588-feb1-48ea-96ae-b2c633d6b3b0", + "start": { + "$date": "2021-06-01T05:06:46.000Z" + }, + "end": { + "$date": "2021-06-01T05:46:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "efcf31da-5485-4f65-b8cd-a350ad2ad896", + "start": { + "$date": "2021-06-01T05:46:46.000Z" + }, + "end": { + "$date": "2021-06-01T05:48:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "547a41cc-0ec8-4920-84c0-ea37e3944c91", + "start": { + "$date": "2021-06-01T05:48:46.000Z" + }, + "end": { + "$date": "2021-06-01T06:02:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c685747-b28f-4a3b-972f-15a214629b54", + "start": { + "$date": "2021-06-01T06:02:46.000Z" + }, + "end": { + "$date": "2021-06-01T06:14:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ff92c6b-3eec-42c4-8975-592f7b302724", + "start": { + "$date": "2021-06-01T06:14:46.000Z" + }, + "end": { + "$date": "2021-06-01T06:35:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e936783-9008-4bbc-a070-d59f633113e8", + "start": { + "$date": "2021-06-01T06:35:46.000Z" + }, + "end": { + "$date": "2021-06-01T06:37:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d469277a-398f-4c04-b757-6432306c470e", + "start": { + "$date": "2021-06-01T06:37:46.000Z" + }, + "end": { + "$date": "2021-06-01T06:55:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e3d21b5-fda6-4ec6-9ed5-27da6e05b5c8", + "start": { + "$date": "2021-06-01T06:55:46.000Z" + }, + "end": { + "$date": "2021-06-01T06:57:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6b3978a-6529-4ab7-a226-05cf989acd6e", + "start": { + "$date": "2021-06-01T06:57:46.000Z" + }, + "end": { + "$date": "2021-06-01T07:57:21.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "20246309-6fe1-4b3a-9726-053b4922afde", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-01T02:45:54.000Z" + }, + "end": { + "$date": "2021-06-01T03:56:18.000Z" + }, + "events": [ + { + "uuid": "41b238a6-e314-489a-bd44-2f24ccdc1083", + "start": { + "$date": "2021-06-01T02:45:54.000Z" + }, + "end": { + "$date": "2021-06-01T03:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0f36cc4d-0588-4ba2-8bee-21cd31534955", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-01T03:47:38.000Z" + }, + "end": { + "$date": "2021-06-01T04:23:32.000Z" + }, + "events": [ + { + "uuid": "3e7696b8-6df4-48ba-a3d8-c84efeefd60a", + "start": { + "$date": "2021-06-01T03:47:38.000Z" + }, + "end": { + "$date": "2021-06-01T04:23:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "356852d7-c108-4ccc-bb52-7344f3f024df", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-01T04:22:57.000Z" + }, + "end": { + "$date": "2021-06-01T05:07:47.000Z" + }, + "events": [ + { + "uuid": "f22022cc-a208-4da1-a904-c44f35ea626d", + "start": { + "$date": "2021-06-01T04:22:57.000Z" + }, + "end": { + "$date": "2021-06-01T05:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec9cf0d2-5f54-4170-91ae-53055f7565ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T04:51:10.000Z" + }, + "end": { + "$date": "2021-06-01T05:14:08.000Z" + }, + "events": [ + { + "uuid": "00e24424-4a18-4a31-8a98-2a9138a20cce", + "start": { + "$date": "2021-06-01T04:51:10.000Z" + }, + "end": { + "$date": "2021-06-01T05:14:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "58dcf6a7-116d-46fc-9f3c-07bdb11cc147", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-01T13:00:46.000Z" + }, + "end": { + "$date": "2021-06-02T02:00:22.000Z" + }, + "events": [ + { + "uuid": "acc5527a-870f-42f0-98a9-d65c5f9dc4a2", + "start": { + "$date": "2021-06-01T13:00:46.000Z" + }, + "end": { + "$date": "2021-06-01T13:48:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e8e770d-711b-45a3-a97b-ca192a835ca9", + "start": { + "$date": "2021-06-01T13:48:46.000Z" + }, + "end": { + "$date": "2021-06-01T13:53:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c27959b9-365e-4014-aa7e-884e9c3dd2be", + "start": { + "$date": "2021-06-01T13:53:46.000Z" + }, + "end": { + "$date": "2021-06-01T14:03:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb7e323d-f091-4dc0-9d76-e58d5fd93deb", + "start": { + "$date": "2021-06-01T14:03:46.000Z" + }, + "end": { + "$date": "2021-06-01T19:03:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73f54937-bfe0-44ab-807e-6fc9862dca2f", + "start": { + "$date": "2021-06-01T19:03:46.000Z" + }, + "end": { + "$date": "2021-06-01T19:13:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72e2860e-373e-46bf-ba1e-2944b64b0883", + "start": { + "$date": "2021-06-01T19:13:46.000Z" + }, + "end": { + "$date": "2021-06-02T02:00:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "10107393-e6e7-4289-8877-15b045d501f9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-01T15:19:20.000Z" + }, + "end": { + "$date": "2021-06-01T16:18:19.000Z" + }, + "events": [ + { + "uuid": "8d5a4a8a-17d4-4377-a10e-6459eadac8f1", + "start": { + "$date": "2021-06-01T15:19:20.000Z" + }, + "end": { + "$date": "2021-06-01T16:18:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "14cd7a52-36de-4dc1-a5df-f886e176a940", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-01T16:24:49.000Z" + }, + "end": { + "$date": "2021-06-01T16:57:45.000Z" + }, + "events": [ + { + "uuid": "f839f1ff-b269-46a7-bb34-03dcc5e982c8", + "start": { + "$date": "2021-06-01T16:24:49.000Z" + }, + "end": { + "$date": "2021-06-01T16:57:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3522aae3-db68-4471-ac93-cc37e6855a24", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-01T17:07:51.000Z" + }, + "end": { + "$date": "2021-06-01T17:38:10.000Z" + }, + "events": [ + { + "uuid": "d36db342-31ca-4486-a3c6-50fa9504c4c0", + "start": { + "$date": "2021-06-01T17:07:51.000Z" + }, + "end": { + "$date": "2021-06-01T17:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1fec3123-255a-4de4-927e-71063a20ada9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-01T18:03:25.000Z" + }, + "end": { + "$date": "2021-06-01T18:47:16.000Z" + }, + "events": [ + { + "uuid": "e8b4d180-0a91-42cd-94d0-cae3a6019fcc", + "start": { + "$date": "2021-06-01T18:03:25.000Z" + }, + "end": { + "$date": "2021-06-01T18:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2431a6e1-08ec-43e7-878d-9701a073a527", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T20:46:35.000Z" + }, + "end": { + "$date": "2021-06-01T21:21:04.000Z" + }, + "events": [ + { + "uuid": "992b1a86-e259-4411-8bac-828bdc4f792d", + "start": { + "$date": "2021-06-01T20:46:35.000Z" + }, + "end": { + "$date": "2021-06-01T21:02:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e7de52b-677e-412f-9f17-8c97c319f3fc", + "start": { + "$date": "2021-06-01T21:02:35.000Z" + }, + "end": { + "$date": "2021-06-01T21:46:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e0461854-13fe-4ba3-9824-d33a1ea37d56", + "start": { + "$date": "2021-06-01T21:46:35.000Z" + }, + "end": { + "$date": "2021-06-01T21:21:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af2c60d6-e671-41bf-a913-12ae9ab39ce1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-01T20:46:53.000Z" + }, + "end": { + "$date": "2021-06-01T21:18:28.000Z" + }, + "events": [ + { + "uuid": "bb35f163-12f7-4053-ad42-9a14fdf6e411", + "start": { + "$date": "2021-06-01T20:46:53.000Z" + }, + "end": { + "$date": "2021-06-01T21:18:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "d4ab3969-6e1c-49a2-b802-d16ae21f7207", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-01T21:17:43.000Z" + }, + "end": { + "$date": "2021-06-01T22:42:09.000Z" + }, + "events": [ + { + "uuid": "bd32f6c4-2651-4b96-89ea-7394ed28bd32", + "start": { + "$date": "2021-06-01T21:17:43.000Z" + }, + "end": { + "$date": "2021-06-01T22:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d2ed805d-3b75-4eb2-96ae-54e1a8a41d24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-01T21:22:10.000Z" + }, + "end": { + "$date": "2021-06-01T21:24:59.000Z" + }, + "events": [ + { + "uuid": "5069c58d-08fc-4279-9d1a-48627caca01c", + "start": { + "$date": "2021-06-01T21:22:10.000Z" + }, + "end": { + "$date": "2021-06-01T21:24:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "de0adc96-8857-45ef-8d29-2a7817016ed8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-01T21:37:29.000Z" + }, + "end": { + "$date": "2021-06-02T00:05:52.000Z" + }, + "events": [ + { + "uuid": "857a7b18-f250-4920-b6d5-ce2b88ed5ce6", + "start": { + "$date": "2021-06-01T21:37:29.000Z" + }, + "end": { + "$date": "2021-06-02T00:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b7a546ea-ae7f-4792-91ac-738275ebf6a9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-01T21:54:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:58:50.000Z" + }, + "events": [ + { + "uuid": "180f337c-5270-4d9e-a35a-7a1c0c2727f0", + "start": { + "$date": "2021-06-01T21:54:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:29:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6194e071-910e-4c00-92d9-906ca1fd7986", + "start": { + "$date": "2021-06-02T02:29:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:39:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d03bde38-5c3d-4801-80ae-7f7d019af5fe", + "start": { + "$date": "2021-06-02T02:39:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:41:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8331e4cf-6b89-4065-8df5-4e9628e08d1a", + "start": { + "$date": "2021-06-02T02:41:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:42:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0441a9d0-c0a0-4a81-ade6-58542de0257a", + "start": { + "$date": "2021-06-02T02:42:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:54:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d35b65f6-a687-4b44-a3fd-c2e0a6b26334", + "start": { + "$date": "2021-06-02T02:54:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:57:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "25fab950-5310-45c1-97d3-400b4d8385d6", + "start": { + "$date": "2021-06-02T02:57:44.000Z" + }, + "end": { + "$date": "2021-06-02T02:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a3d50324-c99b-4745-b589-e0f6b66ec2dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-01T22:47:42.000Z" + }, + "end": { + "$date": "2021-06-01T23:36:16.000Z" + }, + "events": [ + { + "uuid": "fcf759b4-f04d-4a21-90d5-deb13c2a3e9b", + "start": { + "$date": "2021-06-01T22:47:42.000Z" + }, + "end": { + "$date": "2021-06-01T23:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e50ea786-2e10-4866-a3c3-98d26bb08c95", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-01T23:37:18.000Z" + }, + "end": { + "$date": "2021-06-02T00:56:36.000Z" + }, + "events": [ + { + "uuid": "8b8bf5be-da3c-409b-b76b-53a35a5ca655", + "start": { + "$date": "2021-06-01T23:37:18.000Z" + }, + "end": { + "$date": "2021-06-02T00:56:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8696439-1112-4740-b029-6ad06fe66f2c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-01T23:57:16.000Z" + }, + "end": { + "$date": "2021-06-02T00:27:48.000Z" + }, + "events": [ + { + "uuid": "9a766dde-b411-4334-bfe4-9c164cf0a3c8", + "start": { + "$date": "2021-06-01T23:57:16.000Z" + }, + "end": { + "$date": "2021-06-02T00:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e079000-3d46-445c-9faa-8af5634a3eda", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T00:43:19.000Z" + }, + "end": { + "$date": "2021-06-02T00:43:38.000Z" + }, + "events": [ + { + "uuid": "56668402-10e2-423c-9ec3-ef02b66158de", + "start": { + "$date": "2021-06-02T00:43:19.000Z" + }, + "end": { + "$date": "2021-06-02T00:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbf06e44-5098-45b2-a481-e29ce07474b9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T00:33:18.000Z" + }, + "end": { + "$date": "2021-06-02T01:18:16.000Z" + }, + "events": [ + { + "uuid": "fd1e565f-3244-4abf-8a43-d50653623b9d", + "start": { + "$date": "2021-06-02T00:33:18.000Z" + }, + "end": { + "$date": "2021-06-02T01:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ffd60c0-bcaf-4590-9920-ca6df9aa37c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-02T00:37:42.000Z" + }, + "end": { + "$date": "2021-06-02T01:18:03.000Z" + }, + "events": [ + { + "uuid": "1addbf20-9a82-4b24-a162-0325ed4bea8a", + "start": { + "$date": "2021-06-02T00:37:42.000Z" + }, + "end": { + "$date": "2021-06-02T01:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b67adb76-2b94-4400-996b-a7e8b464d6ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T00:57:26.000Z" + }, + "end": { + "$date": "2021-06-02T01:23:29.000Z" + }, + "events": [ + { + "uuid": "6c23fb9b-8720-4bd6-a786-558e71de1821", + "start": { + "$date": "2021-06-02T00:57:26.000Z" + }, + "end": { + "$date": "2021-06-02T01:11:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36589e37-db51-48a9-ace9-5b97da17ae44", + "start": { + "$date": "2021-06-02T01:11:26.000Z" + }, + "end": { + "$date": "2021-06-02T01:23:29.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "cde208d5-ef5b-4c0d-976f-41a68106dfb1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T01:07:49.000Z" + }, + "end": { + "$date": "2021-06-02T01:16:27.000Z" + }, + "events": [ + { + "uuid": "c129914b-235c-4ab4-99aa-348ecedc1344", + "start": { + "$date": "2021-06-02T01:07:49.000Z" + }, + "end": { + "$date": "2021-06-02T01:16:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "41a7c51b-8975-4c94-abef-4f2bda77a329", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T01:27:30.000Z" + }, + "end": { + "$date": "2021-06-02T01:37:51.000Z" + }, + "events": [ + { + "uuid": "13678e70-a4fd-4d5f-8c07-4e3fd65b1959", + "start": { + "$date": "2021-06-02T01:27:30.000Z" + }, + "end": { + "$date": "2021-06-02T01:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a1c15333-f311-4a2e-a61e-ad0259ad6467", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-02T01:28:29.000Z" + }, + "end": { + "$date": "2021-06-02T01:36:10.000Z" + }, + "events": [ + { + "uuid": "2f35acd3-48f7-48d4-b7d4-a4949621b4c0", + "start": { + "$date": "2021-06-02T01:28:29.000Z" + }, + "end": { + "$date": "2021-06-02T01:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "537f557c-60d7-43df-a3e6-12e3895ca858", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T01:28:56.000Z" + }, + "end": { + "$date": "2021-06-02T01:33:15.000Z" + }, + "events": [ + { + "uuid": "7986ea16-9cf6-45e5-b872-d519ad760f1b", + "start": { + "$date": "2021-06-02T01:28:56.000Z" + }, + "end": { + "$date": "2021-06-02T01:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f3fbbabd-3926-4baa-beab-f2137eea0fc5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T01:33:27.000Z" + }, + "end": { + "$date": "2021-06-02T02:32:41.000Z" + }, + "events": [ + { + "uuid": "4e61db1b-9110-47b0-95d3-fd05ab525c71", + "start": { + "$date": "2021-06-02T01:33:27.000Z" + }, + "end": { + "$date": "2021-06-02T02:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "026291cf-5281-412e-ba1e-b02659feda2c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-02T01:36:25.000Z" + }, + "end": { + "$date": "2021-06-02T01:40:10.000Z" + }, + "events": [ + { + "uuid": "9adbb263-b745-4de7-9e3a-d8e1875cc826", + "start": { + "$date": "2021-06-02T01:36:25.000Z" + }, + "end": { + "$date": "2021-06-02T01:40:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "d777ac24-75da-4004-888a-1f3a5c7db677", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-02T01:36:49.000Z" + }, + "end": { + "$date": "2021-06-02T01:38:29.000Z" + }, + "events": [ + { + "uuid": "11827a02-2a34-457f-8666-59997288f767", + "start": { + "$date": "2021-06-02T01:36:49.000Z" + }, + "end": { + "$date": "2021-06-02T01:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "315b432c-b524-4e13-a002-c08208c0819c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T02:09:47.000Z" + }, + "end": { + "$date": "2021-06-02T02:32:08.000Z" + }, + "events": [ + { + "uuid": "cb0e9134-1fad-4ba5-8527-6f59ee452023", + "start": { + "$date": "2021-06-02T02:09:47.000Z" + }, + "end": { + "$date": "2021-06-02T02:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5237797-317c-471c-93fd-7be94c3b7bae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T02:10:16.000Z" + }, + "end": { + "$date": "2021-06-02T02:31:51.000Z" + }, + "events": [ + { + "uuid": "19a68365-f412-4347-93c2-2f4356c302fe", + "start": { + "$date": "2021-06-02T02:10:16.000Z" + }, + "end": { + "$date": "2021-06-02T02:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "571222aa-7edb-4dbc-84c4-63dcd7f4d47a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T03:23:33.000Z" + }, + "end": { + "$date": "2021-06-02T04:45:22.000Z" + }, + "events": [ + { + "uuid": "dd3bac73-1147-4fee-9fb1-b9275d73e659", + "start": { + "$date": "2021-06-02T03:23:33.000Z" + }, + "end": { + "$date": "2021-06-02T04:45:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ace4ad1-f0bf-43a4-8b55-84cb7893a9a4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-02T02:41:24.000Z" + }, + "end": { + "$date": "2021-06-02T05:24:59.000Z" + }, + "events": [ + { + "uuid": "e3598859-f7a8-40f3-b6d6-bd7277db19fe", + "start": { + "$date": "2021-06-02T02:41:24.000Z" + }, + "end": { + "$date": "2021-06-02T05:24:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9eb210af-fe75-4d0d-bb6f-d0104b3e5459", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T03:04:20.000Z" + }, + "end": { + "$date": "2021-06-02T04:08:35.000Z" + }, + "events": [ + { + "uuid": "d02654fd-da82-4601-b55d-bd5387787fc9", + "start": { + "$date": "2021-06-02T03:04:20.000Z" + }, + "end": { + "$date": "2021-06-02T04:08:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ef8c4d0f-4220-4917-b8bd-e1c95ec45db9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-02T03:31:14.000Z" + }, + "end": { + "$date": "2021-06-02T06:48:59.000Z" + }, + "events": [ + { + "uuid": "e9867731-1e77-4bbc-a46d-ec5ec73edd2b", + "start": { + "$date": "2021-06-02T03:31:14.000Z" + }, + "end": { + "$date": "2021-06-02T06:48:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2d9ca538-68d3-4dd3-bca4-e0833b89690f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-02T04:12:40.000Z" + }, + "end": { + "$date": "2021-06-02T14:40:38.000Z" + }, + "events": [ + { + "uuid": "dcb28410-4a51-4442-b0a5-eb6b08f52395", + "start": { + "$date": "2021-06-02T04:12:40.000Z" + }, + "end": { + "$date": "2021-06-02T05:08:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26ba3da9-00ed-4989-a468-dee06d95f4b2", + "start": { + "$date": "2021-06-02T05:08:40.000Z" + }, + "end": { + "$date": "2021-06-02T05:15:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ac53e26-7a68-4e83-a9de-8f02c60f876d", + "start": { + "$date": "2021-06-02T05:15:40.000Z" + }, + "end": { + "$date": "2021-06-02T05:33:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "190334e3-c430-4809-baf1-97cd264e94aa", + "start": { + "$date": "2021-06-02T05:33:40.000Z" + }, + "end": { + "$date": "2021-06-02T06:24:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f2c19198-46a3-4971-a459-a20a9045f675", + "start": { + "$date": "2021-06-02T06:24:40.000Z" + }, + "end": { + "$date": "2021-06-02T06:34:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e42d526-26de-4e17-977b-9e79fb34d87b", + "start": { + "$date": "2021-06-02T06:34:40.000Z" + }, + "end": { + "$date": "2021-06-02T14:49:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cfd9d662-ee56-4ffd-9e16-84a5dbe4b7d9", + "start": { + "$date": "2021-06-02T14:49:40.000Z" + }, + "end": { + "$date": "2021-06-02T14:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ffe1c194-a89b-4fb4-8bda-1dff940d4f34", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T03:46:14.000Z" + }, + "end": { + "$date": "2021-06-02T05:00:16.000Z" + }, + "events": [ + { + "uuid": "227bcda3-5127-45ed-a978-25c297ec0c9f", + "start": { + "$date": "2021-06-02T03:46:14.000Z" + }, + "end": { + "$date": "2021-06-02T05:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bcf70007-9d79-4f4e-b9b0-d51995080526", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-02T03:48:07.000Z" + }, + "end": { + "$date": "2021-06-02T04:53:47.000Z" + }, + "events": [ + { + "uuid": "d1d0c05f-9c4f-4c79-b4e6-f0ced3d13e03", + "start": { + "$date": "2021-06-02T03:48:07.000Z" + }, + "end": { + "$date": "2021-06-02T04:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f071df1-d9b2-4e6d-8be0-b18e13671f19", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-02T03:50:42.000Z" + }, + "end": { + "$date": "2021-06-02T05:09:33.000Z" + }, + "events": [ + { + "uuid": "a79f28a2-8828-480a-9ac1-b37249c7cc88", + "start": { + "$date": "2021-06-02T03:50:42.000Z" + }, + "end": { + "$date": "2021-06-02T04:02:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e29054ac-2b08-4c6f-9050-374d9aaf49b2", + "start": { + "$date": "2021-06-02T04:02:42.000Z" + }, + "end": { + "$date": "2021-06-02T04:04:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b104464-f8e4-46cd-9a9e-cefc2ea124eb", + "start": { + "$date": "2021-06-02T04:04:42.000Z" + }, + "end": { + "$date": "2021-06-02T04:24:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce71ae6f-5ea6-4d9b-ba06-c0d682962547", + "start": { + "$date": "2021-06-02T04:24:42.000Z" + }, + "end": { + "$date": "2021-06-02T05:02:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "482b6dc0-8a9e-47db-9733-0e47cb6abf70", + "start": { + "$date": "2021-06-02T05:02:42.000Z" + }, + "end": { + "$date": "2021-06-02T05:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77d52e93-fda1-454d-b5d5-28dcb45ab7d7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-02T03:58:15.000Z" + }, + "end": { + "$date": "2021-06-02T04:21:33.000Z" + }, + "events": [ + { + "uuid": "a45649bb-1177-481f-add0-e713e7dfde27", + "start": { + "$date": "2021-06-02T03:58:15.000Z" + }, + "end": { + "$date": "2021-06-02T04:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4c475b8-3d14-4812-ac6e-187b495d9eff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T04:15:47.000Z" + }, + "end": { + "$date": "2021-06-02T04:44:28.000Z" + }, + "events": [ + { + "uuid": "60cba8b0-7b0a-4b31-a40a-a8cc2bb3c5a2", + "start": { + "$date": "2021-06-02T04:15:47.000Z" + }, + "end": { + "$date": "2021-06-02T04:44:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdb0cf76-8085-47ff-83d7-ae41374ef52f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-02T04:29:20.000Z" + }, + "end": { + "$date": "2021-06-02T05:03:35.000Z" + }, + "events": [ + { + "uuid": "cc9460c4-52fc-426b-9669-7e40e7fcf961", + "start": { + "$date": "2021-06-02T04:29:20.000Z" + }, + "end": { + "$date": "2021-06-02T05:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b09bc41d-23ae-4ef6-bd94-1af4954249b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T04:51:11.000Z" + }, + "end": { + "$date": "2021-06-02T05:30:31.000Z" + }, + "events": [ + { + "uuid": "ea133b9d-4625-406b-9daf-0cd97dbf6d2d", + "start": { + "$date": "2021-06-02T04:51:11.000Z" + }, + "end": { + "$date": "2021-06-02T05:30:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6a872176-5796-4c6e-9184-3a3c537ef6b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T16:07:19.000Z" + }, + "end": { + "$date": "2021-06-02T16:14:30.000Z" + }, + "events": [ + { + "uuid": "7b7f2ae4-0921-4084-8942-01fc5e2a2223", + "start": { + "$date": "2021-06-02T16:07:19.000Z" + }, + "end": { + "$date": "2021-06-02T16:23:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "445ba047-d153-4668-af3c-b675c8fa6786", + "start": { + "$date": "2021-06-02T16:23:19.000Z" + }, + "end": { + "$date": "2021-06-02T16:36:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "041506e1-ad10-488b-84cc-dcbd922a2c45", + "start": { + "$date": "2021-06-02T16:36:19.000Z" + }, + "end": { + "$date": "2021-06-02T16:38:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a674cc61-4111-4002-a900-3410d47f4cfe", + "start": { + "$date": "2021-06-02T16:38:19.000Z" + }, + "end": { + "$date": "2021-06-03T01:38:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "08595e5d-c0f7-4556-836c-f8aad8fe91d4", + "start": { + "$date": "2021-06-03T01:38:19.000Z" + }, + "end": { + "$date": "2021-06-03T01:40:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49b5a62c-cfaf-4bb3-9002-4267bdfffd1b", + "start": { + "$date": "2021-06-03T01:40:19.000Z" + }, + "end": { + "$date": "2021-06-03T01:50:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d627265d-60c2-4c1d-b48d-e91c45acdc56", + "start": { + "$date": "2021-06-03T01:50:19.000Z" + }, + "end": { + "$date": "2021-06-03T02:00:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50c45689-821e-4a7d-b97f-8c5aef44d5fd", + "start": { + "$date": "2021-06-03T02:00:19.000Z" + }, + "end": { + "$date": "2021-06-03T02:19:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11a4d98c-245f-430d-a4d0-853afcb96fd6", + "start": { + "$date": "2021-06-03T02:19:19.000Z" + }, + "end": { + "$date": "2021-06-02T16:14:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "7da30105-5659-4c6c-97a0-e36ad5bb6ce2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T05:16:05.000Z" + }, + "end": { + "$date": "2021-06-02T05:17:59.000Z" + }, + "events": [ + { + "uuid": "936ba4c2-e43e-48e4-a5cd-550da6639531", + "start": { + "$date": "2021-06-02T05:16:05.000Z" + }, + "end": { + "$date": "2021-06-02T05:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "92fd9a15-e233-4901-a700-1f48b2cc46b8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T05:18:05.000Z" + }, + "end": { + "$date": "2021-06-02T06:06:34.000Z" + }, + "events": [ + { + "uuid": "3abcb5f0-b0ac-489c-90cc-10e766d0c675", + "start": { + "$date": "2021-06-02T05:18:05.000Z" + }, + "end": { + "$date": "2021-06-02T06:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2337c9e8-8c29-4b12-9e12-4d11f91bd8e0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-02T05:30:19.000Z" + }, + "end": { + "$date": "2021-06-02T05:36:13.000Z" + }, + "events": [ + { + "uuid": "608dd495-a2ae-4254-a719-41518446033d", + "start": { + "$date": "2021-06-02T05:30:19.000Z" + }, + "end": { + "$date": "2021-06-02T05:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b255224b-fe85-407e-9165-72018d28bd67", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-02T13:05:14.000Z" + }, + "end": { + "$date": "2021-06-02T13:28:41.000Z" + }, + "events": [ + { + "uuid": "36e248f8-64f9-4381-8897-8befc6d024d3", + "start": { + "$date": "2021-06-02T13:05:14.000Z" + }, + "end": { + "$date": "2021-06-02T13:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7ff85101-ba6f-49b4-9fa7-ce564c7ee9d5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-02T14:28:47.000Z" + }, + "end": { + "$date": "2021-06-02T17:09:06.000Z" + }, + "events": [ + { + "uuid": "e46e236e-966b-44ca-8ac2-db79000b41d7", + "start": { + "$date": "2021-06-02T14:28:47.000Z" + }, + "end": { + "$date": "2021-06-02T17:09:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "6c2ac8c6-7ae2-4eff-8ea1-38dea9999a80", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-02T14:40:43.000Z" + }, + "end": { + "$date": "2021-06-03T01:07:18.000Z" + }, + "events": [ + { + "uuid": "7ec16c64-5834-4b72-ae03-0467e1a0c6c6", + "start": { + "$date": "2021-06-02T14:40:43.000Z" + }, + "end": { + "$date": "2021-06-02T15:25:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a9812bb-1164-483e-bd1e-9ea3c4f53aac", + "start": { + "$date": "2021-06-02T15:25:43.000Z" + }, + "end": { + "$date": "2021-06-02T15:55:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f319433f-47e9-440e-8301-63e7d012a355", + "start": { + "$date": "2021-06-02T15:55:43.000Z" + }, + "end": { + "$date": "2021-06-02T16:11:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b92efe5a-e89b-43cf-88e3-7b550db0f305", + "start": { + "$date": "2021-06-02T16:11:43.000Z" + }, + "end": { + "$date": "2021-06-02T16:12:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98f5a001-4353-4a0c-b221-793faa0e505a", + "start": { + "$date": "2021-06-02T16:12:43.000Z" + }, + "end": { + "$date": "2021-06-02T16:50:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "826c5170-8fad-42bf-aa5a-4573d6bd3fef", + "start": { + "$date": "2021-06-02T16:50:43.000Z" + }, + "end": { + "$date": "2021-06-02T17:00:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e5bd8fc-7a4b-472e-a81b-e6805fad36e7", + "start": { + "$date": "2021-06-02T17:00:43.000Z" + }, + "end": { + "$date": "2021-06-02T17:12:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dff8b623-1d86-4585-9b2b-6b09d3857108", + "start": { + "$date": "2021-06-02T17:12:43.000Z" + }, + "end": { + "$date": "2021-06-02T17:13:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa21661f-da26-4678-8ef2-d0d9298af69b", + "start": { + "$date": "2021-06-02T17:13:43.000Z" + }, + "end": { + "$date": "2021-06-02T17:23:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89ec004a-931a-4372-8099-0de59fe79b14", + "start": { + "$date": "2021-06-02T17:23:43.000Z" + }, + "end": { + "$date": "2021-06-02T17:44:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0e76523-fda9-476e-87e6-acb7aeee4edd", + "start": { + "$date": "2021-06-02T17:44:43.000Z" + }, + "end": { + "$date": "2021-06-02T17:56:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a22db563-6b85-4595-957c-d89b2b45f832", + "start": { + "$date": "2021-06-02T17:56:43.000Z" + }, + "end": { + "$date": "2021-06-02T19:01:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7cb2f026-438d-44d4-8736-db33b84883c3", + "start": { + "$date": "2021-06-02T19:01:43.000Z" + }, + "end": { + "$date": "2021-06-02T19:11:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b3d0a3f5-8c0a-454a-94a7-4d70b691bd0c", + "start": { + "$date": "2021-06-02T19:11:43.000Z" + }, + "end": { + "$date": "2021-06-03T01:07:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3919102f-c3d5-44d5-97c0-009259f4641b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-02T15:47:04.000Z" + }, + "end": { + "$date": "2021-06-02T16:49:10.000Z" + }, + "events": [ + { + "uuid": "2e9f7285-a82c-4096-8b9b-51acfc76b14f", + "start": { + "$date": "2021-06-02T15:47:04.000Z" + }, + "end": { + "$date": "2021-06-02T16:49:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83c4951f-60df-4166-8243-8bc38c0a1cf0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T16:16:25.000Z" + }, + "end": { + "$date": "2021-06-02T16:52:17.000Z" + }, + "events": [ + { + "uuid": "d1e2c9ff-ac22-4bbd-8467-8846d83884de", + "start": { + "$date": "2021-06-02T16:16:25.000Z" + }, + "end": { + "$date": "2021-06-02T16:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2705cfff-b623-4dac-993f-2aeb90c7b338", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T16:58:19.000Z" + }, + "end": { + "$date": "2021-06-02T17:35:46.000Z" + }, + "events": [ + { + "uuid": "d38c2d75-b85a-408d-a8e5-e8752e77f7a8", + "start": { + "$date": "2021-06-02T16:58:19.000Z" + }, + "end": { + "$date": "2021-06-02T17:35:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e64f775d-1aa4-4cf6-ae24-5d3e4fafab7c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T18:19:07.000Z" + }, + "end": { + "$date": "2021-06-02T19:07:14.000Z" + }, + "events": [ + { + "uuid": "32bf0af9-e03a-439b-94ab-16b9a9414043", + "start": { + "$date": "2021-06-02T18:19:07.000Z" + }, + "end": { + "$date": "2021-06-02T19:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7123f677-c8bf-4bcc-ad10-615fcd245c92", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T19:24:45.000Z" + }, + "end": { + "$date": "2021-06-02T19:52:46.000Z" + }, + "events": [ + { + "uuid": "b5dcd07d-aecd-4e2c-b9df-a948580dcf00", + "start": { + "$date": "2021-06-02T19:24:45.000Z" + }, + "end": { + "$date": "2021-06-02T19:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbed7916-2455-4758-b1ba-b59d1298c886", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T19:26:51.000Z" + }, + "end": { + "$date": "2021-06-02T19:52:36.000Z" + }, + "events": [ + { + "uuid": "c5a38b6f-c1f8-4bc5-8d47-d3292649b43f", + "start": { + "$date": "2021-06-02T19:26:51.000Z" + }, + "end": { + "$date": "2021-06-02T19:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26d5e577-1013-42fb-aadc-7b39f2f91585", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T20:02:51.000Z" + }, + "end": { + "$date": "2021-06-02T20:28:51.000Z" + }, + "events": [ + { + "uuid": "e44a94eb-dc27-4b29-beab-cc4198e4e111", + "start": { + "$date": "2021-06-02T20:02:51.000Z" + }, + "end": { + "$date": "2021-06-02T20:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6f9e8e9-ad48-40fe-8359-775b688a719e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T20:02:42.000Z" + }, + "end": { + "$date": "2021-06-02T20:28:48.000Z" + }, + "events": [ + { + "uuid": "29bcc268-3277-43ff-b830-54c3274a12bd", + "start": { + "$date": "2021-06-02T20:02:42.000Z" + }, + "end": { + "$date": "2021-06-02T20:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8513c1e-ec20-45e7-b077-1ebe31fde3dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T20:34:20.000Z" + }, + "end": { + "$date": "2021-06-02T21:07:38.000Z" + }, + "events": [ + { + "uuid": "c86a9dc1-a544-47f1-9e80-cc38bed172f5", + "start": { + "$date": "2021-06-02T20:34:20.000Z" + }, + "end": { + "$date": "2021-06-02T21:07:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c24891a-786d-41ec-85d4-af56ff19e4de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T20:37:03.000Z" + }, + "end": { + "$date": "2021-06-02T21:07:36.000Z" + }, + "events": [ + { + "uuid": "15638317-c7f6-40f9-94eb-3de24628c037", + "start": { + "$date": "2021-06-02T20:37:03.000Z" + }, + "end": { + "$date": "2021-06-02T21:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "764ba11d-9976-441b-8f28-68a7cc4962e7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-02T21:01:33.000Z" + }, + "end": { + "$date": "2021-06-02T23:47:47.000Z" + }, + "events": [ + { + "uuid": "f46fc519-241e-4697-83f5-938c7b38c7fd", + "start": { + "$date": "2021-06-02T21:01:33.000Z" + }, + "end": { + "$date": "2021-06-02T23:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24020ce1-3671-4ec4-a472-4a4612ff651c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-02T21:02:15.000Z" + }, + "end": { + "$date": "2021-06-02T23:48:24.000Z" + }, + "events": [ + { + "uuid": "cdd0b7ef-ff50-45e7-a182-6d59c0d6e386", + "start": { + "$date": "2021-06-02T21:02:15.000Z" + }, + "end": { + "$date": "2021-06-02T23:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd4cfc9b-7f5f-450f-a126-effeff8ecf56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T21:11:09.000Z" + }, + "end": { + "$date": "2021-06-02T22:58:08.000Z" + }, + "events": [ + { + "uuid": "7d1b28de-8a9a-4f12-a530-136aca6a4030", + "start": { + "$date": "2021-06-02T21:11:09.000Z" + }, + "end": { + "$date": "2021-06-02T22:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96ceb7f1-5c56-4cfd-8bd1-a1237c004c3a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-02T21:14:03.000Z" + }, + "end": { + "$date": "2021-06-02T22:15:28.000Z" + }, + "events": [ + { + "uuid": "5df799f9-5feb-48f2-b3ce-c29aa765f91b", + "start": { + "$date": "2021-06-02T21:14:03.000Z" + }, + "end": { + "$date": "2021-06-02T22:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "563c5181-f5c7-48e3-bef2-7c96ee701b57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T21:16:18.000Z" + }, + "end": { + "$date": "2021-06-02T22:21:14.000Z" + }, + "events": [ + { + "uuid": "8d7fc91b-ca02-4ad0-bfb2-b10fa3351c50", + "start": { + "$date": "2021-06-02T21:16:18.000Z" + }, + "end": { + "$date": "2021-06-02T22:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ee7da934-71e0-4ba8-b191-cf0225bc6ec6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-02T21:20:14.000Z" + }, + "end": { + "$date": "2021-06-03T00:01:05.000Z" + }, + "events": [ + { + "uuid": "06d8f014-c284-4864-a90f-bcb86f939d6b", + "start": { + "$date": "2021-06-02T21:20:14.000Z" + }, + "end": { + "$date": "2021-06-03T00:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2eb53754-d8bb-46f8-b286-6af5cb2b25cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T22:22:31.000Z" + }, + "end": { + "$date": "2021-06-02T23:00:15.000Z" + }, + "events": [ + { + "uuid": "68f15ca9-527d-4f86-a347-b1bc0554e0bd", + "start": { + "$date": "2021-06-02T22:22:31.000Z" + }, + "end": { + "$date": "2021-06-02T23:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "c584262e-2d8f-40af-8118-f2c8e376a026", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T23:07:02.000Z" + }, + "end": { + "$date": "2021-06-02T23:26:56.000Z" + }, + "events": [ + { + "uuid": "0d53e6ae-a9a7-4079-b0a6-969e0e0f4915", + "start": { + "$date": "2021-06-02T23:07:02.000Z" + }, + "end": { + "$date": "2021-06-02T23:26:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e5254e43-6baf-406c-9588-1b583058ce5e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-02T23:20:02.000Z" + }, + "end": { + "$date": "2021-06-03T05:24:20.000Z" + }, + "events": [ + { + "uuid": "ec07a530-45ca-4095-8aec-8bc7adb75463", + "start": { + "$date": "2021-06-02T23:20:02.000Z" + }, + "end": { + "$date": "2021-06-03T00:00:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fdaaaf1f-8a7d-4dd3-b614-cd2388b38d7d", + "start": { + "$date": "2021-06-03T00:00:02.000Z" + }, + "end": { + "$date": "2021-06-03T00:03:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7d2222af-28e5-45cf-ad17-ab80777c3cdc", + "start": { + "$date": "2021-06-03T00:03:02.000Z" + }, + "end": { + "$date": "2021-06-03T03:54:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c43c4eef-02cf-4aff-ad91-49d30f20ff11", + "start": { + "$date": "2021-06-03T03:54:02.000Z" + }, + "end": { + "$date": "2021-06-03T03:59:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb3e8cf7-a029-4924-8ec6-408a0893e4af", + "start": { + "$date": "2021-06-03T03:59:02.000Z" + }, + "end": { + "$date": "2021-06-03T05:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5ed46682-c035-4e47-bbae-f730225cfa84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-02T23:24:47.000Z" + }, + "end": { + "$date": "2021-06-02T23:36:13.000Z" + }, + "events": [ + { + "uuid": "54667fbe-7c60-4d5d-9484-e0ba470d7def", + "start": { + "$date": "2021-06-02T23:24:47.000Z" + }, + "end": { + "$date": "2021-06-02T23:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b1bdcbe1-7cc6-4ced-880a-a9c3ddc41256", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-02T23:34:49.000Z" + }, + "end": { + "$date": "2021-06-02T23:37:37.000Z" + }, + "events": [ + { + "uuid": "03122741-195c-45ea-b395-b14f903d0ce4", + "start": { + "$date": "2021-06-02T23:34:49.000Z" + }, + "end": { + "$date": "2021-06-02T23:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ca8638ad-a17e-42b0-b010-3be0b50e65b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T00:09:49.000Z" + }, + "end": { + "$date": "2021-06-03T01:04:38.000Z" + }, + "events": [ + { + "uuid": "52dbc23f-b038-468a-be78-4ade29cf6df9", + "start": { + "$date": "2021-06-03T00:09:49.000Z" + }, + "end": { + "$date": "2021-06-03T01:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a529cd5-c5da-4ba3-a9a2-96e97e1374e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-03T01:14:37.000Z" + }, + "end": { + "$date": "2021-06-03T01:43:04.000Z" + }, + "events": [ + { + "uuid": "e76ecc23-c56e-4adf-862b-bb584d80488c", + "start": { + "$date": "2021-06-03T01:14:37.000Z" + }, + "end": { + "$date": "2021-06-03T01:43:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02313c38-b5ca-4506-996b-2ae1ea9dd1d6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-03T01:14:34.000Z" + }, + "end": { + "$date": "2021-06-03T01:42:55.000Z" + }, + "events": [ + { + "uuid": "cb13a914-9287-436a-8470-10c4cfd2bcb1", + "start": { + "$date": "2021-06-03T01:14:34.000Z" + }, + "end": { + "$date": "2021-06-03T01:42:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0026db94-6464-44a1-9c01-62156dae12b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-03T01:52:55.000Z" + }, + "end": { + "$date": "2021-06-03T02:52:25.000Z" + }, + "events": [ + { + "uuid": "97960c4c-f124-4627-974e-13dfbf685298", + "start": { + "$date": "2021-06-03T01:52:55.000Z" + }, + "end": { + "$date": "2021-06-03T02:52:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83348197-8195-48a2-a430-a57640c30b2b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-03T01:43:29.000Z" + }, + "end": { + "$date": "2021-06-03T01:44:40.000Z" + }, + "events": [ + { + "uuid": "0004f738-df84-49e6-8722-f6c9b192fd0e", + "start": { + "$date": "2021-06-03T01:43:29.000Z" + }, + "end": { + "$date": "2021-06-03T01:44:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96ba2259-a065-41bf-8e02-6849079125db", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T01:45:40.000Z" + }, + "end": { + "$date": "2021-06-03T01:47:11.000Z" + }, + "events": [ + { + "uuid": "5b1db76e-ce8f-446f-8283-74d666124662", + "start": { + "$date": "2021-06-03T01:45:40.000Z" + }, + "end": { + "$date": "2021-06-03T01:47:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51ca362b-38f5-4aef-b169-eeebe4ee0055", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-03T01:45:39.000Z" + }, + "end": { + "$date": "2021-06-03T01:47:10.000Z" + }, + "events": [ + { + "uuid": "73955404-8573-4a9a-9e99-ceedacafa422", + "start": { + "$date": "2021-06-03T01:45:39.000Z" + }, + "end": { + "$date": "2021-06-03T01:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7aea8be-d1b2-4734-8132-38358ef9aea8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-03T01:56:21.000Z" + }, + "end": { + "$date": "2021-06-03T02:52:12.000Z" + }, + "events": [ + { + "uuid": "bc814c1a-63d0-48af-a2fb-6b5c86f4cc8c", + "start": { + "$date": "2021-06-03T01:56:21.000Z" + }, + "end": { + "$date": "2021-06-03T02:52:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "8f1bb77b-d511-4a9f-8ea8-8b49bc901e51", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T03:06:10.000Z" + }, + "end": { + "$date": "2021-06-03T04:45:26.000Z" + }, + "events": [ + { + "uuid": "2daec2ef-77ee-4bb5-89e0-0c6406a05b69", + "start": { + "$date": "2021-06-03T03:06:10.000Z" + }, + "end": { + "$date": "2021-06-03T03:37:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a6b84fdb-2c84-4080-8666-1ad90b9f5a03", + "start": { + "$date": "2021-06-03T03:37:10.000Z" + }, + "end": { + "$date": "2021-06-03T03:39:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e797822-6ceb-453a-8e46-457f01222e2d", + "start": { + "$date": "2021-06-03T03:39:10.000Z" + }, + "end": { + "$date": "2021-06-03T04:45:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bb9c7567-bea6-4f7e-974f-dc3398cb27ad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-03T02:18:57.000Z" + }, + "end": { + "$date": "2021-06-03T04:03:19.000Z" + }, + "events": [ + { + "uuid": "79b1d46d-c860-4f27-b297-7317090ffb68", + "start": { + "$date": "2021-06-03T02:18:57.000Z" + }, + "end": { + "$date": "2021-06-03T04:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9908151-7586-40b0-9177-e5da13743662", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-03T02:58:55.000Z" + }, + "end": { + "$date": "2021-06-03T03:29:07.000Z" + }, + "events": [ + { + "uuid": "8018e3ed-d98a-4cee-b372-39e00b3ad163", + "start": { + "$date": "2021-06-03T02:58:55.000Z" + }, + "end": { + "$date": "2021-06-03T03:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c70ad434-fb2c-4080-9ce8-f5c1acee669d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-03T04:01:20.000Z" + }, + "end": { + "$date": "2021-06-03T04:43:31.000Z" + }, + "events": [ + { + "uuid": "75c4eadb-24d5-4942-8dbf-35c8dddf5b32", + "start": { + "$date": "2021-06-03T04:01:20.000Z" + }, + "end": { + "$date": "2021-06-03T04:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4d381aa9-6a31-4200-a118-8a2ffe1ef97b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T14:53:01.000Z" + }, + "end": { + "$date": "2021-06-03T20:31:54.000Z" + }, + "events": [ + { + "uuid": "5fc6e9e3-aa3e-476c-b15a-17682bac2412", + "start": { + "$date": "2021-06-03T14:53:01.000Z" + }, + "end": { + "$date": "2021-06-03T15:22:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c04e3017-e6b3-4bf7-87b8-563c68ebeef7", + "start": { + "$date": "2021-06-03T15:22:01.000Z" + }, + "end": { + "$date": "2021-06-03T21:01:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a6605a2-c68c-4215-ba5b-0535dfefbad4", + "start": { + "$date": "2021-06-03T21:01:01.000Z" + }, + "end": { + "$date": "2021-06-03T21:03:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89cff933-ce58-4108-ab63-0f00b005d323", + "start": { + "$date": "2021-06-03T21:03:01.000Z" + }, + "end": { + "$date": "2021-06-03T21:18:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84b5a399-73a1-47e8-9933-eef06306ffbd", + "start": { + "$date": "2021-06-03T21:18:01.000Z" + }, + "end": { + "$date": "2021-06-03T21:51:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0d09b1f-f6b8-4774-9fe0-4cf593f7de60", + "start": { + "$date": "2021-06-03T21:51:01.000Z" + }, + "end": { + "$date": "2021-06-03T22:10:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3525e540-595a-48d1-aebf-8b6f365400ec", + "start": { + "$date": "2021-06-03T22:10:01.000Z" + }, + "end": { + "$date": "2021-06-03T22:12:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ca048102-413f-4d29-8040-73f30269857f", + "start": { + "$date": "2021-06-03T22:12:01.000Z" + }, + "end": { + "$date": "2021-06-03T22:22:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c459a22a-250f-472d-96d6-a90876a0b9e0", + "start": { + "$date": "2021-06-03T22:22:01.000Z" + }, + "end": { + "$date": "2021-06-04T00:01:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "edcb5f26-17a1-4b08-bf65-316764b5ad89", + "start": { + "$date": "2021-06-04T00:01:01.000Z" + }, + "end": { + "$date": "2021-06-04T00:03:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14634a90-6e92-4595-8a33-b5825cfc563e", + "start": { + "$date": "2021-06-04T00:03:01.000Z" + }, + "end": { + "$date": "2021-06-04T01:09:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7dceeda-5920-4ca5-b9d4-b9a30db2ac73", + "start": { + "$date": "2021-06-04T01:09:01.000Z" + }, + "end": { + "$date": "2021-06-04T01:10:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b24cd564-357c-43ca-8698-7007e5463caf", + "start": { + "$date": "2021-06-04T01:10:01.000Z" + }, + "end": { + "$date": "2021-06-04T01:48:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4cbaa9b6-3dee-44a1-a194-a806a2d77222", + "start": { + "$date": "2021-06-04T01:48:01.000Z" + }, + "end": { + "$date": "2021-06-04T02:12:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42ec6912-82b0-4f8f-9955-5bb60e04bde0", + "start": { + "$date": "2021-06-04T02:12:01.000Z" + }, + "end": { + "$date": "2021-06-04T02:14:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44d98554-b17b-4498-a687-2f01506886b8", + "start": { + "$date": "2021-06-04T02:14:01.000Z" + }, + "end": { + "$date": "2021-06-04T04:15:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "589becd9-bddd-4718-99f4-b08144084165", + "start": { + "$date": "2021-06-04T04:15:01.000Z" + }, + "end": { + "$date": "2021-06-04T04:17:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3531fc7d-5fba-4b0b-b941-4d4695cf71d5", + "start": { + "$date": "2021-06-04T04:17:01.000Z" + }, + "end": { + "$date": "2021-06-03T20:31:54.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "98a05154-eb4e-401f-819e-addf03f6e7e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T05:02:53.000Z" + }, + "end": { + "$date": "2021-06-03T06:09:31.000Z" + }, + "events": [ + { + "uuid": "90b6f577-16cb-4d87-ad65-3635712447af", + "start": { + "$date": "2021-06-03T05:02:53.000Z" + }, + "end": { + "$date": "2021-06-03T06:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a3b5da7-6787-449a-8a33-b5236740029d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-03T05:21:41.000Z" + }, + "end": { + "$date": "2021-06-03T05:49:56.000Z" + }, + "events": [ + { + "uuid": "d782d632-29ff-4766-90e9-ff01ac63db0a", + "start": { + "$date": "2021-06-03T05:21:41.000Z" + }, + "end": { + "$date": "2021-06-03T05:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "2711df2d-222f-4bcd-bebd-1528b4736ef5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-03T05:26:50.000Z" + }, + "end": { + "$date": "2021-06-03T05:30:05.000Z" + }, + "events": [ + { + "uuid": "ab9f2300-04cb-4247-8c87-0ce422248b32", + "start": { + "$date": "2021-06-03T05:26:50.000Z" + }, + "end": { + "$date": "2021-06-03T05:30:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1275c9a7-0fa9-4ba5-8652-402678d49e9b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-03T05:31:31.000Z" + }, + "end": { + "$date": "2021-06-03T05:50:12.000Z" + }, + "events": [ + { + "uuid": "1f6f0cc9-3932-4be0-88a8-d843c921acbe", + "start": { + "$date": "2021-06-03T05:31:31.000Z" + }, + "end": { + "$date": "2021-06-03T05:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0529d3ff-7466-4168-baa3-983bc9c3730a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-03T05:50:38.000Z" + }, + "end": { + "$date": "2021-06-03T05:53:02.000Z" + }, + "events": [ + { + "uuid": "7c678812-db24-4d68-9bd7-09094c71018c", + "start": { + "$date": "2021-06-03T05:50:38.000Z" + }, + "end": { + "$date": "2021-06-03T05:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdd54133-10de-4291-bc62-0718e4713636", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-03T05:56:35.000Z" + }, + "end": { + "$date": "2021-06-03T06:38:01.000Z" + }, + "events": [ + { + "uuid": "5fd65034-c3af-4c85-a92d-2a9c1f03ed9e", + "start": { + "$date": "2021-06-03T05:56:35.000Z" + }, + "end": { + "$date": "2021-06-03T06:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "86c3a893-94c8-4d96-a23b-ac9db203eaf6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-03T06:07:43.000Z" + }, + "end": { + "$date": "2021-06-03T06:22:11.000Z" + }, + "events": [ + { + "uuid": "15d80462-d3d6-4931-90cb-75f84fa29667", + "start": { + "$date": "2021-06-03T06:07:43.000Z" + }, + "end": { + "$date": "2021-06-03T06:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e00661bc-bad5-406e-a89d-b3833986c909", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-03T12:30:46.000Z" + }, + "end": { + "$date": "2021-06-03T13:16:14.000Z" + }, + "events": [ + { + "uuid": "e4fc6dc7-7452-42ee-b92f-36dbc49d7f27", + "start": { + "$date": "2021-06-03T12:30:46.000Z" + }, + "end": { + "$date": "2021-06-03T13:16:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d0deff96-2403-4245-ae95-4fad9d0310b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-03T13:19:50.000Z" + }, + "end": { + "$date": "2021-06-03T13:37:09.000Z" + }, + "events": [ + { + "uuid": "91f1d9fa-d308-43c4-82ee-fb48376612ab", + "start": { + "$date": "2021-06-03T13:19:50.000Z" + }, + "end": { + "$date": "2021-06-03T13:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "902e0bb1-0d70-4d13-9137-b490bee579c3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T14:02:13.000Z" + }, + "end": { + "$date": "2021-06-03T15:07:38.000Z" + }, + "events": [ + { + "uuid": "ec05a9f3-98ca-45aa-a10b-2fc334118d33", + "start": { + "$date": "2021-06-03T14:02:13.000Z" + }, + "end": { + "$date": "2021-06-03T15:01:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8fba17f0-26ab-4786-a508-98dc4b41d5f6", + "start": { + "$date": "2021-06-03T15:01:13.000Z" + }, + "end": { + "$date": "2021-06-03T15:06:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e3bf8a8-181f-4946-8097-bff350c9a4d0", + "start": { + "$date": "2021-06-03T15:06:13.000Z" + }, + "end": { + "$date": "2021-06-03T15:07:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9fb14c8d-e5d4-4945-b740-cddefca61fff", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-03T14:10:14.000Z" + }, + "end": { + "$date": "2021-06-03T14:58:32.000Z" + }, + "events": [ + { + "uuid": "e9934e08-e951-4764-ade8-2f7fb67ef5fa", + "start": { + "$date": "2021-06-03T14:10:14.000Z" + }, + "end": { + "$date": "2021-06-03T14:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "23f5acbb-c50f-4608-82b6-37e2e17e1735", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T15:08:13.000Z" + }, + "end": { + "$date": "2021-06-03T15:42:14.000Z" + }, + "events": [ + { + "uuid": "380c60ca-fec3-45dd-a340-9d8ed67ca400", + "start": { + "$date": "2021-06-03T15:08:13.000Z" + }, + "end": { + "$date": "2021-06-03T15:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "01090a49-9f10-48f8-9aa9-3ebbb4216c30", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T15:43:48.000Z" + }, + "end": { + "$date": "2021-06-03T15:45:48.000Z" + }, + "events": [ + { + "uuid": "1875d864-85ad-40d6-8b99-6bd9a1bd808d", + "start": { + "$date": "2021-06-03T15:43:48.000Z" + }, + "end": { + "$date": "2021-06-03T15:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cd48a434-a4d8-45a3-af0a-97931b14f5f7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-03T19:07:55.000Z" + }, + "end": { + "$date": "2021-06-04T08:10:55.000Z" + }, + "events": [ + { + "uuid": "ccc630ec-d3db-4621-9874-8dd6d19fd678", + "start": { + "$date": "2021-06-03T19:07:55.000Z" + }, + "end": { + "$date": "2021-06-03T19:56:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1df85538-ba33-49ed-87c1-23f616ed396e", + "start": { + "$date": "2021-06-03T19:56:55.000Z" + }, + "end": { + "$date": "2021-06-03T20:27:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ccb757e0-f0d0-449a-82a6-75797f3b4194", + "start": { + "$date": "2021-06-03T20:27:55.000Z" + }, + "end": { + "$date": "2021-06-03T21:33:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "00a1370a-a0b4-4e62-8a2e-77988a6d6708", + "start": { + "$date": "2021-06-03T21:33:55.000Z" + }, + "end": { + "$date": "2021-06-03T21:35:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e84cf66e-4a4f-4e9b-b3e2-c691fd824662", + "start": { + "$date": "2021-06-03T21:35:55.000Z" + }, + "end": { + "$date": "2021-06-04T02:18:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ddaaeb2-eaec-40f4-af1a-f94841ae6f96", + "start": { + "$date": "2021-06-04T02:18:55.000Z" + }, + "end": { + "$date": "2021-06-04T02:34:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74cf583a-0beb-4de4-9f92-4c31ca064cb1", + "start": { + "$date": "2021-06-04T02:34:55.000Z" + }, + "end": { + "$date": "2021-06-04T08:10:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97fd42b9-5823-4525-ba6f-24d5c19a5c1a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-03T20:20:00.000Z" + }, + "end": { + "$date": "2021-06-03T20:55:22.000Z" + }, + "events": [ + { + "uuid": "88bece4a-f696-4c4e-8b18-4fb8c302d612", + "start": { + "$date": "2021-06-03T20:20:00.000Z" + }, + "end": { + "$date": "2021-06-03T20:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "57114aec-bb5a-448c-a477-545bfa14c6b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T21:07:25.000Z" + }, + "end": { + "$date": "2021-06-03T22:03:04.000Z" + }, + "events": [ + { + "uuid": "bebe0ef5-5c12-4c33-9dd3-439cbd1dc7c7", + "start": { + "$date": "2021-06-03T21:07:25.000Z" + }, + "end": { + "$date": "2021-06-03T22:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "654227cd-63bf-46a4-a881-359ed18278c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T21:14:44.000Z" + }, + "end": { + "$date": "2021-06-03T21:16:24.000Z" + }, + "events": [ + { + "uuid": "45f4f8fa-ace7-40e6-a7ae-4b4c121c3a87", + "start": { + "$date": "2021-06-03T21:14:44.000Z" + }, + "end": { + "$date": "2021-06-03T21:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "29c1e5fe-ecdf-404f-8a78-1ef235e5c816", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T21:16:35.000Z" + }, + "end": { + "$date": "2021-06-03T21:55:46.000Z" + }, + "events": [ + { + "uuid": "8a1d11ff-4bd1-4b82-bd7b-a5917443544d", + "start": { + "$date": "2021-06-03T21:16:35.000Z" + }, + "end": { + "$date": "2021-06-03T21:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a9a3819e-e67a-4cd4-9460-683371091114", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-03T21:27:39.000Z" + }, + "end": { + "$date": "2021-06-03T21:50:31.000Z" + }, + "events": [ + { + "uuid": "50ac8c0c-7c33-4e00-b36e-8714636dfa5b", + "start": { + "$date": "2021-06-03T21:27:39.000Z" + }, + "end": { + "$date": "2021-06-03T21:50:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a0aad2f-75e9-4409-b7d7-7c5adb2e4d34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-03T22:04:21.000Z" + }, + "end": { + "$date": "2021-06-03T22:29:10.000Z" + }, + "events": [ + { + "uuid": "b3b64764-9e51-443e-9352-2f8a53e4595c", + "start": { + "$date": "2021-06-03T22:04:21.000Z" + }, + "end": { + "$date": "2021-06-03T22:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "bd64baef-33ef-4c4a-b219-63241037da08", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T22:03:31.000Z" + }, + "end": { + "$date": "2021-06-03T22:32:56.000Z" + }, + "events": [ + { + "uuid": "873574ef-f891-46b2-9816-ace916086b82", + "start": { + "$date": "2021-06-03T22:03:31.000Z" + }, + "end": { + "$date": "2021-06-03T22:32:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f0c2f52f-2d97-4178-821f-c2f2a708946a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T22:19:15.000Z" + }, + "end": { + "$date": "2021-06-03T22:58:50.000Z" + }, + "events": [ + { + "uuid": "d73d7523-c569-4f12-836f-d7d75f7b3ee2", + "start": { + "$date": "2021-06-03T22:19:15.000Z" + }, + "end": { + "$date": "2021-06-03T22:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "a0cb3317-a667-404e-b440-2460cb33ba2f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T22:35:56.000Z" + }, + "end": { + "$date": "2021-06-03T22:39:39.000Z" + }, + "events": [ + { + "uuid": "625494d6-8f37-4446-8797-744c1d782f4c", + "start": { + "$date": "2021-06-03T22:35:56.000Z" + }, + "end": { + "$date": "2021-06-03T22:39:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "6d5ddc6f-0fbd-4dfa-9d59-ec579c5fe651", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-03T22:40:27.000Z" + }, + "end": { + "$date": "2021-06-03T23:59:48.000Z" + }, + "events": [ + { + "uuid": "85efa904-a7c0-411f-ad58-498c37900ef5", + "start": { + "$date": "2021-06-03T22:40:27.000Z" + }, + "end": { + "$date": "2021-06-03T23:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "697363ee-7e32-4525-b5a4-80762344a7d3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-03T22:41:58.000Z" + }, + "end": { + "$date": "2021-06-04T00:04:29.000Z" + }, + "events": [ + { + "uuid": "6d59711e-8199-417e-b5c9-092ccb2ba581", + "start": { + "$date": "2021-06-03T22:41:58.000Z" + }, + "end": { + "$date": "2021-06-04T00:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "940b07e6-49b3-4035-8629-e21b7cf164f0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-03T22:48:46.000Z" + }, + "end": { + "$date": "2021-06-03T22:50:16.000Z" + }, + "events": [ + { + "uuid": "73721ca2-5de3-498c-ab04-dea65a1deb97", + "start": { + "$date": "2021-06-03T22:48:46.000Z" + }, + "end": { + "$date": "2021-06-03T22:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "42cb115a-84c3-4bc9-97e4-7bcdc2c76618", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-03T23:03:27.000Z" + }, + "end": { + "$date": "2021-06-04T00:04:24.000Z" + }, + "events": [ + { + "uuid": "fbb47111-4bd0-4358-a0d8-ec0714580022", + "start": { + "$date": "2021-06-03T23:03:27.000Z" + }, + "end": { + "$date": "2021-06-04T00:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "52beba45-1cdb-4bb5-8b43-46563ca95772", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-03T23:19:56.000Z" + }, + "end": { + "$date": "2021-06-03T23:43:32.000Z" + }, + "events": [ + { + "uuid": "11a35a10-d665-4241-a5ad-887589725473", + "start": { + "$date": "2021-06-03T23:19:56.000Z" + }, + "end": { + "$date": "2021-06-03T23:43:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b6f8fd49-0c41-4845-b608-32a9718872d0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T00:17:55.000Z" + }, + "end": { + "$date": "2021-06-04T01:00:03.000Z" + }, + "events": [ + { + "uuid": "162623a7-5716-4465-9f3a-735d48ca0e25", + "start": { + "$date": "2021-06-04T00:17:55.000Z" + }, + "end": { + "$date": "2021-06-04T01:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", + "uuid": "aa052af8-8f7c-4ad5-86b3-e686e8591109", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-06-04T00:23:31.000Z" + }, + "end": { + "$date": "2021-06-04T01:59:10.000Z" + }, + "events": [ + { + "uuid": "2c0b22ee-8bf0-4f1b-9bf6-a5c77739b50b", + "start": { + "$date": "2021-06-04T00:23:31.000Z" + }, + "end": { + "$date": "2021-06-04T01:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "629e93cd-29a3-41c5-9e91-cda2d43115d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T01:02:09.000Z" + }, + "end": { + "$date": "2021-06-04T01:04:18.000Z" + }, + "events": [ + { + "uuid": "7225291d-91c6-4a6d-adb7-2e8d2251dafc", + "start": { + "$date": "2021-06-04T01:02:09.000Z" + }, + "end": { + "$date": "2021-06-04T01:04:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19fd764a-5a65-4c87-a5c5-022a16de9f36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T01:41:12.000Z" + }, + "end": { + "$date": "2021-06-04T02:31:56.000Z" + }, + "events": [ + { + "uuid": "706e2c84-5493-42fc-846e-6a49914e508b", + "start": { + "$date": "2021-06-04T01:41:12.000Z" + }, + "end": { + "$date": "2021-06-04T02:31:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "88d0d122-465c-451c-923e-67fc1dbb1da9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-04T03:28:13.000Z" + }, + "end": { + "$date": "2021-06-04T05:36:56.000Z" + }, + "events": [ + { + "uuid": "f60a6a51-15c1-495d-b75c-1e190e95ef2c", + "start": { + "$date": "2021-06-04T03:28:13.000Z" + }, + "end": { + "$date": "2021-06-04T05:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "9f4e9b67-b5b9-4504-ad08-8c7c31a60cf7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T01:44:47.000Z" + }, + "end": { + "$date": "2021-06-04T01:46:26.000Z" + }, + "events": [ + { + "uuid": "1dbd0b33-f16c-4b95-858e-8835724ca7ed", + "start": { + "$date": "2021-06-04T01:44:47.000Z" + }, + "end": { + "$date": "2021-06-04T01:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f555739a-886c-4b7f-96fc-4886686f9a7e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-04T02:37:13.000Z" + }, + "end": { + "$date": "2021-06-04T02:37:28.000Z" + }, + "events": [ + { + "uuid": "d840860c-bc6b-4932-aca2-a386ed41f159", + "start": { + "$date": "2021-06-04T02:37:13.000Z" + }, + "end": { + "$date": "2021-06-04T02:37:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5720ed4b-9506-4acf-ba6d-eb8292ad0d7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T04:56:16.000Z" + }, + "end": { + "$date": "2021-06-04T16:15:09.000Z" + }, + "events": [ + { + "uuid": "2def2868-b2af-418b-b665-3fff20fa0dd3", + "start": { + "$date": "2021-06-04T04:56:16.000Z" + }, + "end": { + "$date": "2021-06-04T05:17:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb9c5f5f-761a-4877-8dea-a4e2e444011b", + "start": { + "$date": "2021-06-04T05:17:16.000Z" + }, + "end": { + "$date": "2021-06-04T05:44:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cdca9fa9-6f42-48b0-90db-ce66a36e3158", + "start": { + "$date": "2021-06-04T05:44:16.000Z" + }, + "end": { + "$date": "2021-06-04T07:32:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88fc0998-216a-4559-86f1-4627e42b3d97", + "start": { + "$date": "2021-06-04T07:32:16.000Z" + }, + "end": { + "$date": "2021-06-04T17:29:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d5c6607-5b9d-4821-9459-d7fe11195d81", + "start": { + "$date": "2021-06-04T17:29:16.000Z" + }, + "end": { + "$date": "2021-06-04T17:31:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69ba1b49-8f9a-4c11-9fe6-cb28fc64c525", + "start": { + "$date": "2021-06-04T17:31:16.000Z" + }, + "end": { + "$date": "2021-06-04T17:40:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2eea647c-9a0c-408a-8006-0a6be32e8133", + "start": { + "$date": "2021-06-04T17:40:16.000Z" + }, + "end": { + "$date": "2021-06-04T17:50:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "efed15a0-6822-4a70-8397-03463b542869", + "start": { + "$date": "2021-06-04T17:50:16.000Z" + }, + "end": { + "$date": "2021-06-04T18:04:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4415d415-feb0-4697-b1e8-ec29b735905f", + "start": { + "$date": "2021-06-04T18:04:16.000Z" + }, + "end": { + "$date": "2021-06-04T16:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "d1210cf6-7f52-4799-affd-7d30826b2e5f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-04T02:37:44.000Z" + }, + "end": { + "$date": "2021-06-04T03:31:16.000Z" + }, + "events": [ + { + "uuid": "1f756589-b9d7-4cab-8938-6018a72755cb", + "start": { + "$date": "2021-06-04T02:37:44.000Z" + }, + "end": { + "$date": "2021-06-04T03:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b1194154-ece5-46b7-9a22-32a2ecc6a4c5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-04T03:27:07.000Z" + }, + "end": { + "$date": "2021-06-04T03:31:00.000Z" + }, + "events": [ + { + "uuid": "efc522aa-6f8f-49b8-855c-e594d43d4205", + "start": { + "$date": "2021-06-04T03:27:07.000Z" + }, + "end": { + "$date": "2021-06-04T03:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "11e5694f-895d-472f-a896-89632add0615", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-04T03:31:13.000Z" + }, + "end": { + "$date": "2021-06-04T05:36:57.000Z" + }, + "events": [ + { + "uuid": "6232a972-a6a2-4ae6-ab69-44d7fa079f97", + "start": { + "$date": "2021-06-04T03:31:13.000Z" + }, + "end": { + "$date": "2021-06-04T05:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2d398209-bbb3-4c3d-991f-36a79ca269da", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-04T03:32:27.000Z" + }, + "end": { + "$date": "2021-06-04T03:49:59.000Z" + }, + "events": [ + { + "uuid": "62c60d81-1238-47e4-aa6f-afd49aa2e3ef", + "start": { + "$date": "2021-06-04T03:32:27.000Z" + }, + "end": { + "$date": "2021-06-04T03:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "c2660e30-c594-444a-86bf-0744f176db98", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T04:05:38.000Z" + }, + "end": { + "$date": "2021-06-04T04:25:47.000Z" + }, + "events": [ + { + "uuid": "25dbf32b-3c7b-40aa-840a-62aba4c8f642", + "start": { + "$date": "2021-06-04T04:05:38.000Z" + }, + "end": { + "$date": "2021-06-04T04:25:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "126449b0-727a-4fcb-b1a7-9485213be848", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-04T04:11:51.000Z" + }, + "end": { + "$date": "2021-06-04T04:41:29.000Z" + }, + "events": [ + { + "uuid": "8ac6d6d1-8cf8-44fe-bfb8-46092ee0e583", + "start": { + "$date": "2021-06-04T04:11:51.000Z" + }, + "end": { + "$date": "2021-06-04T04:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "e4485183-b599-43fe-aff2-f72138cf2564", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-04T04:11:17.000Z" + }, + "end": { + "$date": "2021-06-04T04:27:08.000Z" + }, + "events": [ + { + "uuid": "be92b01e-ab57-4f3e-9066-e833f1371196", + "start": { + "$date": "2021-06-04T04:11:17.000Z" + }, + "end": { + "$date": "2021-06-04T04:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "02df9ecc-c09b-4e53-9e2f-8696cfb985b4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-04T04:11:40.000Z" + }, + "end": { + "$date": "2021-06-04T04:25:51.000Z" + }, + "events": [ + { + "uuid": "d658f4fd-c59b-4e38-8757-9de2be2a9f96", + "start": { + "$date": "2021-06-04T04:11:40.000Z" + }, + "end": { + "$date": "2021-06-04T04:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "88ce4f6b-215f-4cd9-8012-37b2144b3ce9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-04T04:26:13.000Z" + }, + "end": { + "$date": "2021-06-04T05:07:00.000Z" + }, + "events": [ + { + "uuid": "b0739f09-d360-47d9-aeac-4adb8cd61918", + "start": { + "$date": "2021-06-04T04:26:13.000Z" + }, + "end": { + "$date": "2021-06-04T05:07:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "14581a44-a6f2-4c85-8fc8-bac120a2d91b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T04:26:54.000Z" + }, + "end": { + "$date": "2021-06-04T05:06:58.000Z" + }, + "events": [ + { + "uuid": "02f6a524-188e-426a-a8d7-18df2a0ce9bf", + "start": { + "$date": "2021-06-04T04:26:54.000Z" + }, + "end": { + "$date": "2021-06-04T05:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfc1f90c-ff80-407f-8c4e-fbab4e712fb8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-04T04:43:39.000Z" + }, + "end": { + "$date": "2021-06-04T04:45:46.000Z" + }, + "events": [ + { + "uuid": "47834b27-05fe-4161-b49d-3b018af0d670", + "start": { + "$date": "2021-06-04T04:43:39.000Z" + }, + "end": { + "$date": "2021-06-04T04:45:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "e7aa85cd-aec5-4436-b048-77f81f67a5f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T05:07:53.000Z" + }, + "end": { + "$date": "2021-06-04T05:21:23.000Z" + }, + "events": [ + { + "uuid": "999c57d2-5ae1-4de7-bee9-ad41987b0fe6", + "start": { + "$date": "2021-06-04T05:07:53.000Z" + }, + "end": { + "$date": "2021-06-04T05:21:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "9b76dbf4-3d9d-43b6-8f89-5e7fc55ae558", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T05:24:43.000Z" + }, + "end": { + "$date": "2021-06-04T06:16:16.000Z" + }, + "events": [ + { + "uuid": "8e21857e-6114-406b-ad65-f108b5a15a75", + "start": { + "$date": "2021-06-04T05:24:43.000Z" + }, + "end": { + "$date": "2021-06-04T06:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "563dc61f-311f-4fd4-b222-1fecd1a99a15", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-04T05:46:40.000Z" + }, + "end": { + "$date": "2021-06-04T06:25:36.000Z" + }, + "events": [ + { + "uuid": "506c58b4-b6bc-4284-90df-e307eb388ee0", + "start": { + "$date": "2021-06-04T05:46:40.000Z" + }, + "end": { + "$date": "2021-06-04T06:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "c5fe547c-067c-46ef-8d4e-eccd9633ec07", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T06:30:54.000Z" + }, + "end": { + "$date": "2021-06-04T06:56:09.000Z" + }, + "events": [ + { + "uuid": "70c690b9-7a48-4d25-bf5e-2289440d0215", + "start": { + "$date": "2021-06-04T06:30:54.000Z" + }, + "end": { + "$date": "2021-06-04T06:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "01ad2063-abba-476a-8282-ccd7f6982efb", + "uuid": "19ba77c8-d740-4114-bff1-267c0fc0cbef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T06:56:55.000Z" + }, + "end": { + "$date": "2021-06-04T06:58:50.000Z" + }, + "events": [ + { + "uuid": "0fca9f76-08c6-489a-9a91-342c97c03bc7", + "start": { + "$date": "2021-06-04T06:56:55.000Z" + }, + "end": { + "$date": "2021-06-04T06:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "493495ce-1efd-4225-b5e5-bfcf3d5dac6f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-04T11:55:07.000Z" + }, + "end": { + "$date": "2021-06-04T12:31:17.000Z" + }, + "events": [ + { + "uuid": "01b66b3a-bc6f-4b9c-b186-69a98b7b6923", + "start": { + "$date": "2021-06-04T11:55:07.000Z" + }, + "end": { + "$date": "2021-06-04T12:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "59596264-3c14-4d08-9249-f1f404580b8d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-04T12:41:10.000Z" + }, + "end": { + "$date": "2021-06-04T12:43:49.000Z" + }, + "events": [ + { + "uuid": "1db17594-3c6c-412f-b174-000b4cdb1272", + "start": { + "$date": "2021-06-04T12:41:10.000Z" + }, + "end": { + "$date": "2021-06-04T12:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "212c9278-0038-4972-b2a3-c26ec9f65345", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T14:42:52.000Z" + }, + "end": { + "$date": "2021-06-04T14:50:52.000Z" + }, + "events": [ + { + "uuid": "476d49c3-c2cb-4e08-8891-de7b6455b01f", + "start": { + "$date": "2021-06-04T14:42:52.000Z" + }, + "end": { + "$date": "2021-06-04T14:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0b4274df-c20a-4d9a-b62c-d7ba2e1f886a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T14:59:33.000Z" + }, + "end": { + "$date": "2021-06-04T15:15:56.000Z" + }, + "events": [ + { + "uuid": "16199b19-0009-44cc-9d9a-e841bb273411", + "start": { + "$date": "2021-06-04T14:59:33.000Z" + }, + "end": { + "$date": "2021-06-04T15:15:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "da815056-8c95-4d75-908c-6c974952b00e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T15:16:16.000Z" + }, + "end": { + "$date": "2021-06-04T15:24:02.000Z" + }, + "events": [ + { + "uuid": "6b634cee-d12b-4c43-9ef6-1d392df31a0d", + "start": { + "$date": "2021-06-04T15:16:16.000Z" + }, + "end": { + "$date": "2021-06-04T15:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dc331488-bd74-404c-a0f9-84c8b996a8e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T15:24:27.000Z" + }, + "end": { + "$date": "2021-06-04T15:52:43.000Z" + }, + "events": [ + { + "uuid": "a713fc6b-bbf7-46e0-ab62-c63230cb0308", + "start": { + "$date": "2021-06-04T15:24:27.000Z" + }, + "end": { + "$date": "2021-06-04T15:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "849ea1f8-0055-4ea8-abc3-a0694d898ef0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-04T15:45:13.000Z" + }, + "end": { + "$date": "2021-06-04T16:19:40.000Z" + }, + "events": [ + { + "uuid": "969cc1ed-c228-4214-ac44-be080878b126", + "start": { + "$date": "2021-06-04T15:45:13.000Z" + }, + "end": { + "$date": "2021-06-04T16:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7b725bf7-46a9-43ca-94de-261ac82f7e41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T16:16:55.000Z" + }, + "end": { + "$date": "2021-06-04T17:48:29.000Z" + }, + "events": [ + { + "uuid": "5aa31b17-cfb1-4fa6-8fee-eafad5a314dd", + "start": { + "$date": "2021-06-04T16:16:55.000Z" + }, + "end": { + "$date": "2021-06-04T17:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "7f1240be-2b8e-4799-8275-8cb6242403e6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-04T16:20:46.000Z" + }, + "end": { + "$date": "2021-06-04T16:50:21.000Z" + }, + "events": [ + { + "uuid": "035649b0-bbe3-430b-a0f9-a23feebf4782", + "start": { + "$date": "2021-06-04T16:20:46.000Z" + }, + "end": { + "$date": "2021-06-04T16:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad701293-d469-4ac7-adee-2385cc737d28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T17:03:44.000Z" + }, + "end": { + "$date": "2021-06-04T17:59:52.000Z" + }, + "events": [ + { + "uuid": "24100d82-99ed-4571-a1e8-06df4cd6c811", + "start": { + "$date": "2021-06-04T17:03:44.000Z" + }, + "end": { + "$date": "2021-06-04T17:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ae6d649a-5d35-4a7b-b7e3-301337200708", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T18:00:27.000Z" + }, + "end": { + "$date": "2021-06-04T18:10:07.000Z" + }, + "events": [ + { + "uuid": "2e727cd8-4908-48f8-b2fe-44c79a881362", + "start": { + "$date": "2021-06-04T18:00:27.000Z" + }, + "end": { + "$date": "2021-06-04T18:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "161b75d3-a9c6-4dfa-b7ca-fe3b49fc2882", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T18:40:53.000Z" + }, + "end": { + "$date": "2021-06-04T19:19:49.000Z" + }, + "events": [ + { + "uuid": "e8231ce8-5f90-4294-b850-ed1d5a6d5a12", + "start": { + "$date": "2021-06-04T18:40:53.000Z" + }, + "end": { + "$date": "2021-06-04T19:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "df90974a-0a95-41ef-ab80-e99aa668ba0b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-04T18:49:28.000Z" + }, + "end": { + "$date": "2021-06-05T01:32:08.000Z" + }, + "events": [ + { + "uuid": "718b14aa-02e2-4b5d-ad67-0fffc7661638", + "start": { + "$date": "2021-06-04T18:49:28.000Z" + }, + "end": { + "$date": "2021-06-04T19:16:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b279b0ff-b2dc-41f7-aa5d-fbcd0a2cca6e", + "start": { + "$date": "2021-06-04T19:16:28.000Z" + }, + "end": { + "$date": "2021-06-04T19:21:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6855cdd8-afd4-4166-8e60-af2a276c105a", + "start": { + "$date": "2021-06-04T19:21:28.000Z" + }, + "end": { + "$date": "2021-06-04T19:31:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "524c8015-2317-4317-a8ab-66e7b0eb69d4", + "start": { + "$date": "2021-06-04T19:31:28.000Z" + }, + "end": { + "$date": "2021-06-04T19:35:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5a8f8829-c1c7-4f3c-b7c0-fa53faac42b2", + "start": { + "$date": "2021-06-04T19:35:28.000Z" + }, + "end": { + "$date": "2021-06-05T00:45:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "faa5b9d5-ace8-474c-bf78-a550ff297efe", + "start": { + "$date": "2021-06-05T00:45:28.000Z" + }, + "end": { + "$date": "2021-06-05T00:49:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dd84fe1b-1a1b-429b-ad45-a97d0d74564c", + "start": { + "$date": "2021-06-05T00:49:28.000Z" + }, + "end": { + "$date": "2021-06-05T00:51:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b51ce7fe-051b-41cc-8568-4ff01f49d84f", + "start": { + "$date": "2021-06-05T00:51:28.000Z" + }, + "end": { + "$date": "2021-06-05T00:55:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af8bb12e-9a04-44b3-98d5-a9c0bd323d0c", + "start": { + "$date": "2021-06-05T00:55:28.000Z" + }, + "end": { + "$date": "2021-06-05T01:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "844d1771-bbd0-4a4d-ab71-4b3f2ecdec41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T19:30:37.000Z" + }, + "end": { + "$date": "2021-06-04T20:04:38.000Z" + }, + "events": [ + { + "uuid": "9bf8264a-63e9-41ee-98c7-87120f888dd6", + "start": { + "$date": "2021-06-04T19:30:37.000Z" + }, + "end": { + "$date": "2021-06-04T20:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f057fae7-11c5-40af-8dff-9b9452499423", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T20:23:06.000Z" + }, + "end": { + "$date": "2021-06-04T20:58:42.000Z" + }, + "events": [ + { + "uuid": "72a7c8b1-cacd-4c9c-a6b7-5cc82272ff68", + "start": { + "$date": "2021-06-04T20:23:06.000Z" + }, + "end": { + "$date": "2021-06-04T20:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "97fa4b2b-29fc-4870-941b-4fa2186d6bf5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-04T21:00:29.000Z" + }, + "end": { + "$date": "2021-06-04T22:08:32.000Z" + }, + "events": [ + { + "uuid": "1c041e32-27cb-4391-abe8-e219ea8bf412", + "start": { + "$date": "2021-06-04T21:00:29.000Z" + }, + "end": { + "$date": "2021-06-04T22:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82f53553-7d4f-4229-afbc-93856bd07210", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T22:01:14.000Z" + }, + "end": { + "$date": "2021-06-04T22:34:46.000Z" + }, + "events": [ + { + "uuid": "370a6506-2cad-442e-874d-42c1dd549fcd", + "start": { + "$date": "2021-06-04T22:01:14.000Z" + }, + "end": { + "$date": "2021-06-04T22:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2207882b-0eab-42a3-b733-c31c0f2ebe66", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T02:46:57.000Z" + }, + "end": { + "$date": "2021-06-05T04:36:34.000Z" + }, + "events": [ + { + "uuid": "48ad782d-7a04-439c-ad7d-32c6e71d36d5", + "start": { + "$date": "2021-06-05T02:46:57.000Z" + }, + "end": { + "$date": "2021-06-05T04:39:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d18e88f-12bc-4655-b975-f4c40b4b2c04", + "start": { + "$date": "2021-06-05T04:39:57.000Z" + }, + "end": { + "$date": "2021-06-05T05:02:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2cedb067-71ad-4865-93f3-5678e7d331ae", + "start": { + "$date": "2021-06-05T05:02:57.000Z" + }, + "end": { + "$date": "2021-06-05T05:06:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1165e6a1-e2a0-497e-8a2c-b7698191464d", + "start": { + "$date": "2021-06-05T05:06:57.000Z" + }, + "end": { + "$date": "2021-06-05T05:46:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9a15534-c8ae-452e-8750-2b1d45e277ff", + "start": { + "$date": "2021-06-05T05:46:57.000Z" + }, + "end": { + "$date": "2021-06-05T06:17:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe23e255-35df-4d25-9596-995ded2fb0ad", + "start": { + "$date": "2021-06-05T06:17:57.000Z" + }, + "end": { + "$date": "2021-06-05T06:22:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a4af7ad-13b0-4b7a-a8ed-aecb60a1f662", + "start": { + "$date": "2021-06-05T06:22:57.000Z" + }, + "end": { + "$date": "2021-06-05T06:32:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8c9e7bb-8552-4e29-882e-8ddd11359546", + "start": { + "$date": "2021-06-05T06:32:57.000Z" + }, + "end": { + "$date": "2021-06-05T06:34:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11fe6227-2864-4bd6-851f-322bd608510d", + "start": { + "$date": "2021-06-05T06:34:57.000Z" + }, + "end": { + "$date": "2021-06-05T06:58:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ce374aa-07cb-452a-a081-62244cb51630", + "start": { + "$date": "2021-06-05T06:58:57.000Z" + }, + "end": { + "$date": "2021-06-05T07:00:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "10b5266a-23ee-450e-97b1-b13af5551d5f", + "start": { + "$date": "2021-06-05T07:00:57.000Z" + }, + "end": { + "$date": "2021-06-05T04:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab2d9c78-993a-4b0a-b580-168e94351744", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-04T23:36:41.000Z" + }, + "end": { + "$date": "2021-06-05T00:16:21.000Z" + }, + "events": [ + { + "uuid": "11b85c83-4d79-48e9-aeb2-034f7d23d9b8", + "start": { + "$date": "2021-06-04T23:36:41.000Z" + }, + "end": { + "$date": "2021-06-05T00:16:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "31be1fda-03c0-43ff-8c53-f6d814a4c5c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T00:16:52.000Z" + }, + "end": { + "$date": "2021-06-05T02:34:40.000Z" + }, + "events": [ + { + "uuid": "c2ae9ff8-9b0c-4f3a-a251-d6031145c73a", + "start": { + "$date": "2021-06-05T00:16:52.000Z" + }, + "end": { + "$date": "2021-06-05T01:51:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "05656428-7783-4087-b572-4bc01ec74597", + "start": { + "$date": "2021-06-05T01:51:52.000Z" + }, + "end": { + "$date": "2021-06-05T01:55:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c7f3ba1-5c92-4577-bf07-fd7de0869cd4", + "start": { + "$date": "2021-06-05T01:55:52.000Z" + }, + "end": { + "$date": "2021-06-05T02:24:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33d18bcb-613a-46b3-a7ba-6794a0f70c27", + "start": { + "$date": "2021-06-05T02:24:52.000Z" + }, + "end": { + "$date": "2021-06-05T02:26:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9dde9552-5092-4768-8037-e98d567763e6", + "start": { + "$date": "2021-06-05T02:26:52.000Z" + }, + "end": { + "$date": "2021-06-05T02:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "23314cfd-4982-49ee-8ff0-6c5d49d193a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-05T01:32:23.000Z" + }, + "end": { + "$date": "2021-06-05T09:49:23.000Z" + }, + "events": [ + { + "uuid": "adfcccf8-faa2-45c2-8f31-ff938364b545", + "start": { + "$date": "2021-06-05T01:32:23.000Z" + }, + "end": { + "$date": "2021-06-05T09:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2d80a3e6-fddd-4567-b150-ac9e9abe7907", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-05T01:59:21.000Z" + }, + "end": { + "$date": "2021-06-05T03:11:59.000Z" + }, + "events": [ + { + "uuid": "ed85603c-c720-4fdd-acfd-b2e410a09d30", + "start": { + "$date": "2021-06-05T01:59:21.000Z" + }, + "end": { + "$date": "2021-06-05T02:14:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2c819afd-cdb2-4944-8dd7-6113d9316570", + "start": { + "$date": "2021-06-05T02:14:21.000Z" + }, + "end": { + "$date": "2021-06-05T02:34:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7b25d049-9aa0-4893-a038-d18bc401f9d6", + "start": { + "$date": "2021-06-05T02:34:21.000Z" + }, + "end": { + "$date": "2021-06-05T03:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "47d7f5d2-8a5d-43f6-851d-d52d6b9e09fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-05T02:01:42.000Z" + }, + "end": { + "$date": "2021-06-05T03:27:22.000Z" + }, + "events": [ + { + "uuid": "3f402f52-436e-454a-8f5a-68f9c3f5a239", + "start": { + "$date": "2021-06-05T02:01:42.000Z" + }, + "end": { + "$date": "2021-06-05T03:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1be818f8-b562-43c1-8667-5e4c81e4b058", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-05T02:27:36.000Z" + }, + "end": { + "$date": "2021-06-05T02:59:52.000Z" + }, + "events": [ + { + "uuid": "88709858-0316-4017-a86c-4c8454adc6aa", + "start": { + "$date": "2021-06-05T02:27:36.000Z" + }, + "end": { + "$date": "2021-06-05T02:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b5b987e-fb94-4bdd-a4d1-7366c7f51a5f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-05T02:32:42.000Z" + }, + "end": { + "$date": "2021-06-05T02:34:04.000Z" + }, + "events": [ + { + "uuid": "478ff42e-7e70-48da-a2a1-f1e8afe4f90e", + "start": { + "$date": "2021-06-05T02:32:42.000Z" + }, + "end": { + "$date": "2021-06-05T02:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "309a2771-e36b-4248-b52f-91e4ccf5ce28", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T02:35:14.000Z" + }, + "end": { + "$date": "2021-06-05T03:02:06.000Z" + }, + "events": [ + { + "uuid": "90dd0092-c432-42e7-af07-542d6ba9483a", + "start": { + "$date": "2021-06-05T02:35:14.000Z" + }, + "end": { + "$date": "2021-06-05T03:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "acbd5aa7-827b-469b-823e-7e4926696204", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-05T02:44:32.000Z" + }, + "end": { + "$date": "2021-06-05T04:36:05.000Z" + }, + "events": [ + { + "uuid": "30ba182b-f202-432b-b2ac-6d4c22a6ff99", + "start": { + "$date": "2021-06-05T02:44:32.000Z" + }, + "end": { + "$date": "2021-06-05T04:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a09413ad-6dbc-42e0-972f-62803be60d5c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-05T03:05:20.000Z" + }, + "end": { + "$date": "2021-06-05T03:49:23.000Z" + }, + "events": [ + { + "uuid": "1b3f6566-3c4c-4d66-9698-f29e1699b07f", + "start": { + "$date": "2021-06-05T03:05:20.000Z" + }, + "end": { + "$date": "2021-06-05T03:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "73b98f3c-cbac-4861-8302-0503197a8d04", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T03:03:19.000Z" + }, + "end": { + "$date": "2021-06-05T03:03:28.000Z" + }, + "events": [ + { + "uuid": "bd178770-0029-42cd-a2c2-8de09c584abc", + "start": { + "$date": "2021-06-05T03:03:19.000Z" + }, + "end": { + "$date": "2021-06-05T03:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58763ee2-e283-4757-845a-fd7253e187b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T03:05:14.000Z" + }, + "end": { + "$date": "2021-06-05T03:40:16.000Z" + }, + "events": [ + { + "uuid": "0875b569-592e-405b-9966-b140bf1ea3ac", + "start": { + "$date": "2021-06-05T03:05:14.000Z" + }, + "end": { + "$date": "2021-06-05T03:40:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf33d580-663a-444c-9b12-a9b1edfc2fb6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T03:42:37.000Z" + }, + "end": { + "$date": "2021-06-05T04:20:29.000Z" + }, + "events": [ + { + "uuid": "6f09e019-5237-4f33-9c5e-fa4ca88733f7", + "start": { + "$date": "2021-06-05T03:42:37.000Z" + }, + "end": { + "$date": "2021-06-05T04:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "019636ed-7aa9-4a3a-acb5-997e058e8e12", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T05:11:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:23:44.000Z" + }, + "events": [ + { + "uuid": "794f9b81-5275-416f-a605-4515854e47fd", + "start": { + "$date": "2021-06-05T05:11:02.000Z" + }, + "end": { + "$date": "2021-06-05T06:13:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e10ffe9-3020-404d-bc9d-7f7e8699b73e", + "start": { + "$date": "2021-06-05T06:13:02.000Z" + }, + "end": { + "$date": "2021-06-05T08:01:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c551fb1b-556a-4679-9c17-f858626fdeed", + "start": { + "$date": "2021-06-05T08:01:02.000Z" + }, + "end": { + "$date": "2021-06-05T08:03:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "827cff45-adba-42ae-9f47-1285c0b95077", + "start": { + "$date": "2021-06-05T08:03:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:18:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a0aef51-0ba4-4a31-a71e-3da0897d18d3", + "start": { + "$date": "2021-06-05T17:18:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:21:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c901dbf4-d39a-4416-a653-0a403b2b666c", + "start": { + "$date": "2021-06-05T17:21:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:31:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98abffa5-d60d-4ef7-ba3a-99988ba3cce4", + "start": { + "$date": "2021-06-05T17:31:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:41:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95269d31-a28c-47e8-a1e6-e0f496549550", + "start": { + "$date": "2021-06-05T17:41:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:55:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f30c98d-8b59-4bf4-9efa-38350d9565d0", + "start": { + "$date": "2021-06-05T17:55:02.000Z" + }, + "end": { + "$date": "2021-06-05T17:23:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e73b6a33-3210-47c8-94f6-511f1f4f8cde", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-05T04:28:40.000Z" + }, + "end": { + "$date": "2021-06-05T05:11:21.000Z" + }, + "events": [ + { + "uuid": "be682b2d-415f-404c-89f0-6d4b8adfe293", + "start": { + "$date": "2021-06-05T04:28:40.000Z" + }, + "end": { + "$date": "2021-06-05T05:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "c4cfeed9-f905-4f45-8ec7-70b266c61760", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T04:36:52.000Z" + }, + "end": { + "$date": "2021-06-05T05:01:01.000Z" + }, + "events": [ + { + "uuid": "19633f77-06f9-4de6-bf88-69730685f8f4", + "start": { + "$date": "2021-06-05T04:36:52.000Z" + }, + "end": { + "$date": "2021-06-05T05:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "a6f2c2d1-e7c8-4554-9386-946282d87e84", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-05T04:37:13.000Z" + }, + "end": { + "$date": "2021-06-05T05:01:03.000Z" + }, + "events": [ + { + "uuid": "b9622d63-3fc1-454b-b91e-89a2ff215c88", + "start": { + "$date": "2021-06-05T04:37:13.000Z" + }, + "end": { + "$date": "2021-06-05T05:01:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83bd80a6-5096-4e1a-871d-116918900f84", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-05T05:46:58.000Z" + }, + "end": { + "$date": "2021-06-05T06:15:54.000Z" + }, + "events": [ + { + "uuid": "f020aa17-50b2-4bf2-a97f-e3aa62067036", + "start": { + "$date": "2021-06-05T05:46:58.000Z" + }, + "end": { + "$date": "2021-06-05T06:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39624743-2736-49ff-81fa-efcc3f547252", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-05T06:28:00.000Z" + }, + "end": { + "$date": "2021-06-05T06:58:38.000Z" + }, + "events": [ + { + "uuid": "9adf6b67-440f-4e20-8fcf-b2df1aa42e45", + "start": { + "$date": "2021-06-05T06:28:00.000Z" + }, + "end": { + "$date": "2021-06-05T06:58:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c082949f-1545-4e82-be4c-d908723d4e7b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-05T12:32:12.000Z" + }, + "end": { + "$date": "2021-06-05T12:41:03.000Z" + }, + "events": [ + { + "uuid": "c08fe50f-ad1a-4742-aee0-2575c7511d44", + "start": { + "$date": "2021-06-05T12:32:12.000Z" + }, + "end": { + "$date": "2021-06-05T12:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "00162138-a533-4b46-9d78-421a54fcac96", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-05T12:42:03.000Z" + }, + "end": { + "$date": "2021-06-05T12:47:53.000Z" + }, + "events": [ + { + "uuid": "1061488b-fef8-4aa5-bc13-f5c747177f72", + "start": { + "$date": "2021-06-05T12:42:03.000Z" + }, + "end": { + "$date": "2021-06-05T12:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "90e912cf-8e90-453c-a7e6-9d80951c9747", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T14:12:00.000Z" + }, + "end": { + "$date": "2021-06-05T14:40:13.000Z" + }, + "events": [ + { + "uuid": "36a15aa7-1290-46d2-9031-8005f6cab5cb", + "start": { + "$date": "2021-06-05T14:12:00.000Z" + }, + "end": { + "$date": "2021-06-05T14:24:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c4d7268b-d662-42e3-9715-b987c32ae16d", + "start": { + "$date": "2021-06-05T14:24:00.000Z" + }, + "end": { + "$date": "2021-06-05T14:26:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b91de83-ad47-4b9b-9b8f-84a93594e453", + "start": { + "$date": "2021-06-05T14:26:00.000Z" + }, + "end": { + "$date": "2021-06-05T14:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a650adeb-e6de-453c-b0d8-dd0f20e9f040", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T15:05:32.000Z" + }, + "end": { + "$date": "2021-06-05T15:10:13.000Z" + }, + "events": [ + { + "uuid": "bfbcf63a-c6e4-4dd6-9a6b-0d14ecbf9d25", + "start": { + "$date": "2021-06-05T15:05:32.000Z" + }, + "end": { + "$date": "2021-06-05T15:10:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", + "uuid": "2752b725-62b3-40ca-838d-08612a26ed69", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T16:36:03.000Z" + }, + "end": { + "$date": "2021-06-05T16:47:54.000Z" + }, + "events": [ + { + "uuid": "7abbf510-9c05-4437-897e-ece95123c63f", + "start": { + "$date": "2021-06-05T16:36:03.000Z" + }, + "end": { + "$date": "2021-06-05T16:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8b8f304a-9944-444d-b3b4-202fbbe7c880", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T17:12:27.000Z" + }, + "end": { + "$date": "2021-06-05T18:14:29.000Z" + }, + "events": [ + { + "uuid": "d228041a-aa5c-487c-9605-2d7e54e5ca22", + "start": { + "$date": "2021-06-05T17:12:27.000Z" + }, + "end": { + "$date": "2021-06-05T18:14:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a78a864a-50ab-4be6-81b9-50c020ada680", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T17:29:25.000Z" + }, + "end": { + "$date": "2021-06-05T18:33:51.000Z" + }, + "events": [ + { + "uuid": "54348c38-f987-40c0-8283-7aac0d7a7b1f", + "start": { + "$date": "2021-06-05T17:29:25.000Z" + }, + "end": { + "$date": "2021-06-05T18:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "45fdbb14-720e-4567-bf92-0d0360e080a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T18:15:24.000Z" + }, + "end": { + "$date": "2021-06-05T18:20:25.000Z" + }, + "events": [ + { + "uuid": "afccac9e-47e8-4e07-b983-39be79b85ea7", + "start": { + "$date": "2021-06-05T18:15:24.000Z" + }, + "end": { + "$date": "2021-06-05T18:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b90f174e-a894-4fe0-97c1-61308be9dedc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T18:24:10.000Z" + }, + "end": { + "$date": "2021-06-05T19:01:02.000Z" + }, + "events": [ + { + "uuid": "7d7cd016-b211-4167-8aed-08e623a8f89b", + "start": { + "$date": "2021-06-05T18:24:10.000Z" + }, + "end": { + "$date": "2021-06-05T19:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a26bb28-98ff-4f90-838b-b1d7474ca7c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T18:35:32.000Z" + }, + "end": { + "$date": "2021-06-05T19:05:23.000Z" + }, + "events": [ + { + "uuid": "b22e700f-97dc-4f85-b834-6aff6a565f46", + "start": { + "$date": "2021-06-05T18:35:32.000Z" + }, + "end": { + "$date": "2021-06-05T19:05:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bf4cb686-be23-4dc2-af83-d40740d1bb04", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T19:02:22.000Z" + }, + "end": { + "$date": "2021-06-05T19:41:29.000Z" + }, + "events": [ + { + "uuid": "a55b1446-bd2b-4c14-b4b2-c3d4ff43560d", + "start": { + "$date": "2021-06-05T19:02:22.000Z" + }, + "end": { + "$date": "2021-06-05T19:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e31614e5-089c-43e0-9285-ce54e7ad33d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T19:52:56.000Z" + }, + "end": { + "$date": "2021-06-05T20:08:21.000Z" + }, + "events": [ + { + "uuid": "7e631470-61ab-496a-9663-71fdaffbb125", + "start": { + "$date": "2021-06-05T19:52:56.000Z" + }, + "end": { + "$date": "2021-06-05T20:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "71b79e43-28ce-4f88-91cb-c0b87ea92fad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T19:54:36.000Z" + }, + "end": { + "$date": "2021-06-05T20:04:47.000Z" + }, + "events": [ + { + "uuid": "8d58f354-4bb3-4ef3-afd3-adf9333ee796", + "start": { + "$date": "2021-06-05T19:54:36.000Z" + }, + "end": { + "$date": "2021-06-05T20:04:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "02d5c472-5d09-400a-b7aa-8160c27d60ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-05T19:59:17.000Z" + }, + "end": { + "$date": "2021-06-05T21:10:06.000Z" + }, + "events": [ + { + "uuid": "263b200c-dd02-4fe3-8658-d7fe4bea7d1d", + "start": { + "$date": "2021-06-05T19:59:17.000Z" + }, + "end": { + "$date": "2021-06-05T20:34:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "772208e8-4403-4983-bf89-d89edb00497f", + "start": { + "$date": "2021-06-05T20:34:17.000Z" + }, + "end": { + "$date": "2021-06-05T20:39:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f59bcb87-4c34-4797-a1de-09d8e94fa771", + "start": { + "$date": "2021-06-05T20:39:17.000Z" + }, + "end": { + "$date": "2021-06-05T20:57:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c529bb3d-edb2-480c-aa10-a690e80fc7a3", + "start": { + "$date": "2021-06-05T20:57:17.000Z" + }, + "end": { + "$date": "2021-06-05T21:10:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "11a99275-f180-4151-af0e-d4930a33753c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-05T20:07:08.000Z" + }, + "end": { + "$date": "2021-06-05T21:17:33.000Z" + }, + "events": [ + { + "uuid": "02714df2-4b8b-4fac-9d93-e85f52d8f7e8", + "start": { + "$date": "2021-06-05T20:07:08.000Z" + }, + "end": { + "$date": "2021-06-05T20:49:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41a16e16-6187-46d2-b83a-1c773c77f438", + "start": { + "$date": "2021-06-05T20:49:08.000Z" + }, + "end": { + "$date": "2021-06-05T20:56:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "31b89a22-ee65-4270-8fc9-adec862b1680", + "start": { + "$date": "2021-06-05T20:56:08.000Z" + }, + "end": { + "$date": "2021-06-05T21:06:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25521e63-2ca5-411a-999d-f775dfdf605e", + "start": { + "$date": "2021-06-05T21:06:08.000Z" + }, + "end": { + "$date": "2021-06-05T21:11:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79d91b8c-f157-4e02-a38b-469e4eed26d2", + "start": { + "$date": "2021-06-05T21:11:08.000Z" + }, + "end": { + "$date": "2021-06-05T21:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff5ff509-9fbf-4a45-bdae-46e85859a527", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-05T20:34:54.000Z" + }, + "end": { + "$date": "2021-06-05T23:40:39.000Z" + }, + "events": [ + { + "uuid": "336c17b6-9ce1-4f9f-afaa-0590d0b6d92f", + "start": { + "$date": "2021-06-05T20:34:54.000Z" + }, + "end": { + "$date": "2021-06-05T23:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6292a65b-0417-4e57-865f-5c7b5db0c3ff", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-06T01:05:18.000Z" + }, + "end": { + "$date": "2021-06-06T01:07:06.000Z" + }, + "events": [ + { + "uuid": "499fd9f5-fea2-47a6-a220-fe63eb93368a", + "start": { + "$date": "2021-06-06T01:05:18.000Z" + }, + "end": { + "$date": "2021-06-06T04:28:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "711a81bc-6a24-434a-a974-bf40ac49c2cc", + "start": { + "$date": "2021-06-06T04:28:18.000Z" + }, + "end": { + "$date": "2021-06-06T04:32:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e66206f8-cdc8-4800-95e5-90cd95c44bb6", + "start": { + "$date": "2021-06-06T04:32:18.000Z" + }, + "end": { + "$date": "2021-06-06T04:42:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "237a092c-1c27-4b92-a025-8979b4806337", + "start": { + "$date": "2021-06-06T04:42:18.000Z" + }, + "end": { + "$date": "2021-06-06T04:52:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "40aef5e3-370e-4f37-91d8-0597c967a41f", + "start": { + "$date": "2021-06-06T04:52:18.000Z" + }, + "end": { + "$date": "2021-06-06T05:34:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20fdaf94-6b0b-4a7b-b378-ca43853bf6f6", + "start": { + "$date": "2021-06-06T05:34:18.000Z" + }, + "end": { + "$date": "2021-06-06T01:07:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a03ba21-3f92-43bf-b217-4b5f0234667f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T20:41:07.000Z" + }, + "end": { + "$date": "2021-06-05T23:41:38.000Z" + }, + "events": [ + { + "uuid": "5e93cd61-5cd4-4cad-9711-6570814a62ad", + "start": { + "$date": "2021-06-05T20:41:07.000Z" + }, + "end": { + "$date": "2021-06-05T23:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0be76f87-8e3c-417a-bfac-e610d7694ba6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-05T21:42:13.000Z" + }, + "end": { + "$date": "2021-06-06T10:49:56.000Z" + }, + "events": [ + { + "uuid": "7d5d8874-f803-4f4a-96c0-f20cfd3d580f", + "start": { + "$date": "2021-06-05T21:42:13.000Z" + }, + "end": { + "$date": "2021-06-06T01:38:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "68d1ff3f-bce6-455d-b6c1-572ccbfd89f4", + "start": { + "$date": "2021-06-06T01:38:13.000Z" + }, + "end": { + "$date": "2021-06-06T01:54:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94795db3-70f2-4349-bff5-f1aeeaa2e6d0", + "start": { + "$date": "2021-06-06T01:54:13.000Z" + }, + "end": { + "$date": "2021-06-06T02:08:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec075c99-704e-4c39-aad3-cef69a850567", + "start": { + "$date": "2021-06-06T02:08:13.000Z" + }, + "end": { + "$date": "2021-06-06T02:12:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e20d3452-f4c4-4bd4-98a7-cf85a0d85663", + "start": { + "$date": "2021-06-06T02:12:13.000Z" + }, + "end": { + "$date": "2021-06-06T02:16:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "459e69c2-d5ae-4018-9253-54bebb84158e", + "start": { + "$date": "2021-06-06T02:16:13.000Z" + }, + "end": { + "$date": "2021-06-06T02:29:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f3ee6faa-d9de-44ac-83cf-4741c8e94b6f", + "start": { + "$date": "2021-06-06T02:29:13.000Z" + }, + "end": { + "$date": "2021-06-06T02:41:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ccaccbf-7d24-498f-bfeb-2fa2839c9c0d", + "start": { + "$date": "2021-06-06T02:41:13.000Z" + }, + "end": { + "$date": "2021-06-06T02:51:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e352187-bdb0-4eb2-9777-995b6a96c5ba", + "start": { + "$date": "2021-06-06T02:51:13.000Z" + }, + "end": { + "$date": "2021-06-06T08:20:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2e4fd34-e96c-461e-89b7-2d0ade6cc5dd", + "start": { + "$date": "2021-06-06T08:20:13.000Z" + }, + "end": { + "$date": "2021-06-06T08:40:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eaf0e9ff-d1fe-4a28-b348-1e6563c260c6", + "start": { + "$date": "2021-06-06T08:40:13.000Z" + }, + "end": { + "$date": "2021-06-06T10:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ce09c5d1-6ef6-4d5a-a073-edefe9efb3d3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-05T20:22:41.000Z" + }, + "end": { + "$date": "2021-06-05T22:28:35.000Z" + }, + "events": [ + { + "uuid": "99a6b65f-de9c-42d8-880f-6f201ee76e47", + "start": { + "$date": "2021-06-05T20:22:41.000Z" + }, + "end": { + "$date": "2021-06-05T22:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "47629b1d-c46a-41fb-ad49-95843ba457a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-05T23:47:09.000Z" + }, + "end": { + "$date": "2021-06-06T02:39:41.000Z" + }, + "events": [ + { + "uuid": "ad837c4c-14bf-4839-9cb2-35d1f5661c37", + "start": { + "$date": "2021-06-05T23:47:09.000Z" + }, + "end": { + "$date": "2021-06-06T00:00:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "05c05672-d725-4f0b-bfa8-5ac41aa62293", + "start": { + "$date": "2021-06-06T00:00:09.000Z" + }, + "end": { + "$date": "2021-06-06T00:04:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "02dfa9a0-23e9-4413-9eb8-5e316826bd43", + "start": { + "$date": "2021-06-06T00:04:09.000Z" + }, + "end": { + "$date": "2021-06-06T00:06:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88530f34-40c4-4f6a-a392-ac64884f02db", + "start": { + "$date": "2021-06-06T00:06:09.000Z" + }, + "end": { + "$date": "2021-06-06T00:23:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c016665e-4c92-4565-94d7-cb2745a92592", + "start": { + "$date": "2021-06-06T00:23:09.000Z" + }, + "end": { + "$date": "2021-06-06T02:15:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ee8c03e-6d6e-42f4-b314-a4d66d0fe4cb", + "start": { + "$date": "2021-06-06T02:15:09.000Z" + }, + "end": { + "$date": "2021-06-06T02:37:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "78c33be8-6b61-48ce-b892-b14d64a24edb", + "start": { + "$date": "2021-06-06T02:37:09.000Z" + }, + "end": { + "$date": "2021-06-06T02:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6ef0aae7-f5ee-4a52-892d-07ba383fed01", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-06T03:24:01.000Z" + }, + "end": { + "$date": "2021-06-06T03:24:50.000Z" + }, + "events": [ + { + "uuid": "a733d54e-d996-4618-91ef-d8d9474a823b", + "start": { + "$date": "2021-06-06T03:24:01.000Z" + }, + "end": { + "$date": "2021-06-06T03:27:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23ebb498-58f0-4724-992e-6124744f1cc0", + "start": { + "$date": "2021-06-06T03:27:01.000Z" + }, + "end": { + "$date": "2021-06-06T03:24:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c2ff482a-cc72-4a57-8da8-cb88ea3c9283", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-06T01:47:25.000Z" + }, + "end": { + "$date": "2021-06-06T01:50:39.000Z" + }, + "events": [ + { + "uuid": "eacd28a1-fc79-4930-aaea-694a26c13c94", + "start": { + "$date": "2021-06-06T01:47:25.000Z" + }, + "end": { + "$date": "2021-06-06T01:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7fd53897-d912-444d-8f28-2db0369bb14d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T02:04:05.000Z" + }, + "end": { + "$date": "2021-06-06T02:11:31.000Z" + }, + "events": [ + { + "uuid": "fe25b440-7983-4d59-90c8-f7583f477a51", + "start": { + "$date": "2021-06-06T02:04:05.000Z" + }, + "end": { + "$date": "2021-06-06T02:11:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ce19f862-ac77-4114-9496-ae8cea771003", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T02:21:28.000Z" + }, + "end": { + "$date": "2021-06-06T04:02:23.000Z" + }, + "events": [ + { + "uuid": "8206461c-8ea0-4901-8c4c-10273345e83f", + "start": { + "$date": "2021-06-06T02:21:28.000Z" + }, + "end": { + "$date": "2021-06-06T02:51:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b8a7e31f-c1ee-4d60-96c1-41911ce1568d", + "start": { + "$date": "2021-06-06T02:51:28.000Z" + }, + "end": { + "$date": "2021-06-06T02:56:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d413bea4-523e-4b3c-9a36-dd04d82b2faf", + "start": { + "$date": "2021-06-06T02:56:28.000Z" + }, + "end": { + "$date": "2021-06-06T03:16:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1530b730-2ce2-4edc-8d01-9a5810df9780", + "start": { + "$date": "2021-06-06T03:16:28.000Z" + }, + "end": { + "$date": "2021-06-06T03:32:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e31661e4-c3d9-458e-8dfe-2bb30aae2e7e", + "start": { + "$date": "2021-06-06T03:32:28.000Z" + }, + "end": { + "$date": "2021-06-06T04:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee8e8964-0a31-4a4e-af67-5e312c0d47b4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-06T02:38:00.000Z" + }, + "end": { + "$date": "2021-06-06T03:15:32.000Z" + }, + "events": [ + { + "uuid": "01876319-c66b-4994-a7b3-a6fb7b7e4791", + "start": { + "$date": "2021-06-06T02:38:00.000Z" + }, + "end": { + "$date": "2021-06-06T03:15:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "846bed71-af8e-4e06-adc1-3ba09de8faf5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-06T02:40:47.000Z" + }, + "end": { + "$date": "2021-06-06T03:19:54.000Z" + }, + "events": [ + { + "uuid": "1cc37f99-12b7-492a-bb38-90c1d8a8d26b", + "start": { + "$date": "2021-06-06T02:40:47.000Z" + }, + "end": { + "$date": "2021-06-06T03:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0e20f81b-9efd-4db0-9260-1cb40d311465", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-06T03:07:53.000Z" + }, + "end": { + "$date": "2021-06-06T09:01:15.000Z" + }, + "events": [ + { + "uuid": "8ced6b18-a445-4554-8f1c-e78910f10260", + "start": { + "$date": "2021-06-06T03:07:53.000Z" + }, + "end": { + "$date": "2021-06-06T09:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "89a2357d-5417-4df3-9745-995f76c436fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-06T03:43:26.000Z" + }, + "end": { + "$date": "2021-06-06T05:30:36.000Z" + }, + "events": [ + { + "uuid": "031d1472-b271-419a-bf1e-7f13ee7c2992", + "start": { + "$date": "2021-06-06T03:43:26.000Z" + }, + "end": { + "$date": "2021-06-06T05:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6fed053b-01b9-4434-bfd3-765a77dd0517", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-06T03:25:21.000Z" + }, + "end": { + "$date": "2021-06-06T09:02:20.000Z" + }, + "events": [ + { + "uuid": "300cf733-f062-4454-ac1d-5b5b8b914b10", + "start": { + "$date": "2021-06-06T03:25:21.000Z" + }, + "end": { + "$date": "2021-06-06T09:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c7484304-a1d3-436f-b0b7-891a0e207074", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-06T03:25:54.000Z" + }, + "end": { + "$date": "2021-06-06T03:35:35.000Z" + }, + "events": [ + { + "uuid": "8eec437e-b572-494d-be7f-3fe67f25ce29", + "start": { + "$date": "2021-06-06T03:25:54.000Z" + }, + "end": { + "$date": "2021-06-06T03:35:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5e3e3cbc-d6ec-405f-b3d9-e231f119746a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-06T03:35:50.000Z" + }, + "end": { + "$date": "2021-06-06T04:19:39.000Z" + }, + "events": [ + { + "uuid": "2f03cea4-78ad-4336-ac38-61bf85effd35", + "start": { + "$date": "2021-06-06T03:35:50.000Z" + }, + "end": { + "$date": "2021-06-06T04:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f9cfaf2c-644e-4330-9ced-389915ff5639", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-06T03:37:33.000Z" + }, + "end": { + "$date": "2021-06-06T04:19:44.000Z" + }, + "events": [ + { + "uuid": "23b3ba67-b24c-464e-8616-e1e28ce8848d", + "start": { + "$date": "2021-06-06T03:37:33.000Z" + }, + "end": { + "$date": "2021-06-06T04:19:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "893e9c9f-c7c1-43db-bc7c-bd5997869acf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-06T03:51:19.000Z" + }, + "end": { + "$date": "2021-06-06T06:01:45.000Z" + }, + "events": [ + { + "uuid": "258bb7b3-cb3a-47f4-899e-c2178bba0321", + "start": { + "$date": "2021-06-06T03:51:19.000Z" + }, + "end": { + "$date": "2021-06-06T06:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e0dee5ab-adad-4394-babc-1530e9b11e59", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T04:10:02.000Z" + }, + "end": { + "$date": "2021-06-06T04:45:28.000Z" + }, + "events": [ + { + "uuid": "491a3e3b-5efb-4c73-af33-9242c7fb53c5", + "start": { + "$date": "2021-06-06T04:10:02.000Z" + }, + "end": { + "$date": "2021-06-06T04:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "67107643-c60b-4b17-8929-e214668458c4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-06T05:50:12.000Z" + }, + "end": { + "$date": "2021-06-06T06:43:03.000Z" + }, + "events": [ + { + "uuid": "0094686c-c6a3-4666-b4e1-30af594602ee", + "start": { + "$date": "2021-06-06T05:50:12.000Z" + }, + "end": { + "$date": "2021-06-06T06:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f83dc38c-24aa-4ba0-8c6c-d2c3abeeb897", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-06T06:17:43.000Z" + }, + "end": { + "$date": "2021-06-06T16:57:51.000Z" + }, + "events": [ + { + "uuid": "9417cf22-2677-482d-a326-fcb14958f156", + "start": { + "$date": "2021-06-06T06:17:43.000Z" + }, + "end": { + "$date": "2021-06-06T06:43:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4dd3cc45-3fda-41a0-8f51-08615e8c2768", + "start": { + "$date": "2021-06-06T06:43:43.000Z" + }, + "end": { + "$date": "2021-06-06T15:07:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2ab44bb6-539d-4267-b271-f0869fed9af6", + "start": { + "$date": "2021-06-06T15:07:43.000Z" + }, + "end": { + "$date": "2021-06-06T15:09:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8535d6d5-f5f8-48ea-b857-912ee02e7d45", + "start": { + "$date": "2021-06-06T15:09:43.000Z" + }, + "end": { + "$date": "2021-06-06T15:34:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e091b02a-d538-4ac1-a4b7-a5bf0ea875f7", + "start": { + "$date": "2021-06-06T15:34:43.000Z" + }, + "end": { + "$date": "2021-06-06T16:46:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3644049e-1a4f-43f4-81a1-5e79d871e891", + "start": { + "$date": "2021-06-06T16:46:43.000Z" + }, + "end": { + "$date": "2021-06-06T16:49:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c265dde-451c-4ac2-9b15-bceb32c35933", + "start": { + "$date": "2021-06-06T16:49:43.000Z" + }, + "end": { + "$date": "2021-06-06T16:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2afb434-73af-4a04-8b02-63c9c9b43ad0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-06T09:14:29.000Z" + }, + "end": { + "$date": "2021-06-06T09:14:34.000Z" + }, + "events": [ + { + "uuid": "cca57914-1ce6-4db0-a7e4-7ef956f22680", + "start": { + "$date": "2021-06-06T09:14:29.000Z" + }, + "end": { + "$date": "2021-06-06T09:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "518175af-86c3-48da-a7d1-aa219ca80932", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-06T14:10:33.000Z" + }, + "end": { + "$date": "2021-06-06T15:16:54.000Z" + }, + "events": [ + { + "uuid": "e2d4b5b0-53b0-45cc-981b-ce370335973e", + "start": { + "$date": "2021-06-06T14:10:33.000Z" + }, + "end": { + "$date": "2021-06-06T15:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "da9d4777-bcfb-4a91-b8c4-9f014bea29f6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T15:41:43.000Z" + }, + "end": { + "$date": "2021-06-06T17:00:20.000Z" + }, + "events": [ + { + "uuid": "2870e04c-64c3-4c06-95c3-4044afb9f1b2", + "start": { + "$date": "2021-06-06T15:41:43.000Z" + }, + "end": { + "$date": "2021-06-06T17:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b2d0f84d-19c8-4358-b24f-ad67a730ad1b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-06T18:17:37.000Z" + }, + "end": { + "$date": "2021-06-06T18:17:42.000Z" + }, + "events": [ + { + "uuid": "21f9bb03-b86e-4073-a959-ea2cc2828e3a", + "start": { + "$date": "2021-06-06T18:17:37.000Z" + }, + "end": { + "$date": "2021-06-06T18:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b52a77d2-a556-408d-8f9d-a3adb99efae6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T17:00:25.000Z" + }, + "end": { + "$date": "2021-06-06T17:26:44.000Z" + }, + "events": [ + { + "uuid": "40dab1fb-cab8-4a41-b30c-c138235dda45", + "start": { + "$date": "2021-06-06T17:00:25.000Z" + }, + "end": { + "$date": "2021-06-06T17:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "365487b2-409e-4534-9f6a-93cdcec82f29", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T17:27:14.000Z" + }, + "end": { + "$date": "2021-06-06T19:00:29.000Z" + }, + "events": [ + { + "uuid": "3ee05759-66f1-4019-8af1-cc429cf8388d", + "start": { + "$date": "2021-06-06T17:27:14.000Z" + }, + "end": { + "$date": "2021-06-06T19:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a99d289b-1622-40e6-91fc-fdca60ac0d32", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-06T18:18:12.000Z" + }, + "end": { + "$date": "2021-06-06T21:02:13.000Z" + }, + "events": [ + { + "uuid": "c11aa80a-b7cb-4285-b476-8c1295f41874", + "start": { + "$date": "2021-06-06T18:18:12.000Z" + }, + "end": { + "$date": "2021-06-06T19:21:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40826ea8-5d81-44ec-9c38-c606fde7c038", + "start": { + "$date": "2021-06-06T19:21:12.000Z" + }, + "end": { + "$date": "2021-06-06T19:46:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8afc9bf2-f02e-49e1-ab2d-9ed899926625", + "start": { + "$date": "2021-06-06T19:46:12.000Z" + }, + "end": { + "$date": "2021-06-06T20:02:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41ebc5be-7ac8-4934-af96-9da481239995", + "start": { + "$date": "2021-06-06T20:02:12.000Z" + }, + "end": { + "$date": "2021-06-06T20:34:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e17c322d-c528-4e08-9d26-4087b6f66c5c", + "start": { + "$date": "2021-06-06T20:34:12.000Z" + }, + "end": { + "$date": "2021-06-06T21:02:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0948233f-5445-498d-a75e-287100a3094e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-06T18:18:17.000Z" + }, + "end": { + "$date": "2021-06-06T20:37:16.000Z" + }, + "events": [ + { + "uuid": "9b04d285-91a3-458b-a1c9-4e78ed309250", + "start": { + "$date": "2021-06-06T18:18:17.000Z" + }, + "end": { + "$date": "2021-06-06T20:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "21e975c7-6ffc-4860-99b4-8d920d797dcf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T19:26:23.000Z" + }, + "end": { + "$date": "2021-06-06T19:50:20.000Z" + }, + "events": [ + { + "uuid": "8896bf81-c0f7-47eb-928d-acbe873787d0", + "start": { + "$date": "2021-06-06T19:26:23.000Z" + }, + "end": { + "$date": "2021-06-06T19:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f35a2c6-d5c0-4092-86c0-8c2ad80330aa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-06T19:46:25.000Z" + }, + "end": { + "$date": "2021-06-07T09:24:15.000Z" + }, + "events": [ + { + "uuid": "e9f8b4e0-cfc0-4a28-bc4a-4594fdb84525", + "start": { + "$date": "2021-06-06T19:46:25.000Z" + }, + "end": { + "$date": "2021-06-06T20:08:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb695d2b-6f06-4b3f-9b7d-d3a28eab2e1e", + "start": { + "$date": "2021-06-06T20:08:25.000Z" + }, + "end": { + "$date": "2021-06-06T20:16:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c86534ed-ee86-48ae-86a6-6ef2e6c3c5f1", + "start": { + "$date": "2021-06-06T20:16:25.000Z" + }, + "end": { + "$date": "2021-06-07T05:01:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a7d49b5-8cb3-4c8b-9e71-b177a7accdaa", + "start": { + "$date": "2021-06-07T05:01:25.000Z" + }, + "end": { + "$date": "2021-06-07T05:11:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7261c715-8df6-409a-bcaa-09d54fb37f9d", + "start": { + "$date": "2021-06-07T05:11:25.000Z" + }, + "end": { + "$date": "2021-06-07T09:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "fa4a7651-1281-4148-adaf-d5672c985418", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T20:05:01.000Z" + }, + "end": { + "$date": "2021-06-06T20:36:19.000Z" + }, + "events": [ + { + "uuid": "dfff17e5-a3a3-4aeb-b9aa-e460e8a73e3c", + "start": { + "$date": "2021-06-06T20:05:01.000Z" + }, + "end": { + "$date": "2021-06-06T20:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "a7507d01-4f80-4cfb-b75a-d79bd30975b0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T20:36:32.000Z" + }, + "end": { + "$date": "2021-06-06T20:44:55.000Z" + }, + "events": [ + { + "uuid": "ab46a4b5-289d-4387-b7f1-b2c42d90e694", + "start": { + "$date": "2021-06-06T20:36:32.000Z" + }, + "end": { + "$date": "2021-06-06T20:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f377b4e4-eb55-4fe7-9267-be4b53d76db6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T20:45:08.000Z" + }, + "end": { + "$date": "2021-06-06T21:12:29.000Z" + }, + "events": [ + { + "uuid": "662074fa-8623-416e-a049-0687ddcd99fa", + "start": { + "$date": "2021-06-06T20:45:08.000Z" + }, + "end": { + "$date": "2021-06-06T21:12:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fa244b7e-4aa8-477a-a27c-2b1993dd5703", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-06T21:02:19.000Z" + }, + "end": { + "$date": "2021-06-07T00:01:14.000Z" + }, + "events": [ + { + "uuid": "2dfa1f0a-99ab-4897-9cac-3c9f69e170a4", + "start": { + "$date": "2021-06-06T21:02:19.000Z" + }, + "end": { + "$date": "2021-06-07T00:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ed3aaa15-f7da-4bd8-bb98-a32a8a507fb4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-06T21:02:24.000Z" + }, + "end": { + "$date": "2021-06-06T23:59:10.000Z" + }, + "events": [ + { + "uuid": "6a7f5b26-94fa-4bca-a8f2-1ae73d074671", + "start": { + "$date": "2021-06-06T21:02:24.000Z" + }, + "end": { + "$date": "2021-06-06T23:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6b85423c-508d-4955-bee0-7f86edefb138", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-06T21:05:26.000Z" + }, + "end": { + "$date": "2021-06-06T23:59:25.000Z" + }, + "events": [ + { + "uuid": "0e19363b-0910-4bef-ac84-41668fd08892", + "start": { + "$date": "2021-06-06T21:05:26.000Z" + }, + "end": { + "$date": "2021-06-06T23:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "42de15de-c62d-4a6d-8392-5678d7bbcbf4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-06T21:15:08.000Z" + }, + "end": { + "$date": "2021-06-07T02:38:15.000Z" + }, + "events": [ + { + "uuid": "ee0c2dad-c68c-4774-bd76-2e9a5fc2a0ba", + "start": { + "$date": "2021-06-06T21:15:08.000Z" + }, + "end": { + "$date": "2021-06-07T02:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "0ce5074c-e5d3-4ce6-86ef-c7f3620294aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-07T05:23:33.000Z" + }, + "end": { + "$date": "2021-06-07T13:49:17.000Z" + }, + "events": [ + { + "uuid": "81d7bfc9-143f-450f-a1fa-3177622eee53", + "start": { + "$date": "2021-06-07T05:23:33.000Z" + }, + "end": { + "$date": "2021-06-07T08:11:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d1828932-bd2e-40bf-a06b-01ea12bd1341", + "start": { + "$date": "2021-06-07T08:11:33.000Z" + }, + "end": { + "$date": "2021-06-07T08:29:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5678cf51-0142-4a23-a863-965b55dd89d0", + "start": { + "$date": "2021-06-07T08:29:33.000Z" + }, + "end": { + "$date": "2021-06-07T08:39:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77ea28e2-f6cc-4be1-892d-22de0aad9a98", + "start": { + "$date": "2021-06-07T08:39:33.000Z" + }, + "end": { + "$date": "2021-06-07T09:30:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3118c471-4f43-46a9-8aaa-78ef5e46d7d9", + "start": { + "$date": "2021-06-07T09:30:33.000Z" + }, + "end": { + "$date": "2021-06-07T09:40:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6627738f-67e8-4b3b-ae3c-bf6853be7385", + "start": { + "$date": "2021-06-07T09:40:33.000Z" + }, + "end": { + "$date": "2021-06-07T09:50:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5bb663d6-d8c9-43c3-b3fd-3fe4a62c226e", + "start": { + "$date": "2021-06-07T09:50:33.000Z" + }, + "end": { + "$date": "2021-06-07T11:11:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbb1e4ee-b4ec-43ba-9839-b99dc71e1bef", + "start": { + "$date": "2021-06-07T11:11:33.000Z" + }, + "end": { + "$date": "2021-06-07T11:16:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9441e243-e983-407e-aee1-5df41f15e434", + "start": { + "$date": "2021-06-07T11:16:33.000Z" + }, + "end": { + "$date": "2021-06-07T11:34:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04f2e27f-7b96-4ebd-be48-c53225ae9f36", + "start": { + "$date": "2021-06-07T11:34:33.000Z" + }, + "end": { + "$date": "2021-06-07T12:12:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3372fee1-eb36-4c22-ba1f-8a630efac211", + "start": { + "$date": "2021-06-07T12:12:33.000Z" + }, + "end": { + "$date": "2021-06-07T12:22:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "11cef502-7881-48ce-8730-63d093d035ef", + "start": { + "$date": "2021-06-07T12:22:33.000Z" + }, + "end": { + "$date": "2021-06-07T12:36:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "282eb306-e1a2-4c95-ac4d-c5992a4dbdc6", + "start": { + "$date": "2021-06-07T12:36:33.000Z" + }, + "end": { + "$date": "2021-06-07T12:46:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06153a53-0767-41a1-a2dd-8ca8f481b74a", + "start": { + "$date": "2021-06-07T12:46:33.000Z" + }, + "end": { + "$date": "2021-06-07T17:46:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea92c289-e161-4dff-a15b-6e408823f681", + "start": { + "$date": "2021-06-07T17:46:33.000Z" + }, + "end": { + "$date": "2021-06-07T17:56:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8ea096a0-78c0-435e-8db2-6ddf2d5e3ec1", + "start": { + "$date": "2021-06-07T17:56:33.000Z" + }, + "end": { + "$date": "2021-06-07T19:21:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2dfe9316-3906-4590-b925-c1ac84bd4970", + "start": { + "$date": "2021-06-07T19:21:33.000Z" + }, + "end": { + "$date": "2021-06-07T13:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9e3b01f7-4aae-4d8b-8680-9f7736e221da", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-07T00:13:32.000Z" + }, + "end": { + "$date": "2021-06-07T00:54:29.000Z" + }, + "events": [ + { + "uuid": "62637326-1511-4b77-ac94-ac0945918bec", + "start": { + "$date": "2021-06-07T00:13:32.000Z" + }, + "end": { + "$date": "2021-06-07T00:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "888cfae9-732f-4453-af5f-76cb5e3d74a2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T02:06:03.000Z" + }, + "end": { + "$date": "2021-06-07T04:28:00.000Z" + }, + "events": [ + { + "uuid": "575ff2f6-b64a-46a3-89e8-b4d272da15e2", + "start": { + "$date": "2021-06-07T02:06:03.000Z" + }, + "end": { + "$date": "2021-06-07T02:39:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ff86662-ea1f-46a7-88e5-febf8f16b871", + "start": { + "$date": "2021-06-07T02:39:03.000Z" + }, + "end": { + "$date": "2021-06-07T03:18:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4898f07b-2fc9-4e59-962a-ce5ee6a61919", + "start": { + "$date": "2021-06-07T03:18:03.000Z" + }, + "end": { + "$date": "2021-06-07T04:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0dc2c51d-4b9a-4660-807e-0c99490bf08b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-07T02:13:59.000Z" + }, + "end": { + "$date": "2021-06-07T03:02:06.000Z" + }, + "events": [ + { + "uuid": "719764c1-ac6b-4c3f-a333-a002e5326873", + "start": { + "$date": "2021-06-07T02:13:59.000Z" + }, + "end": { + "$date": "2021-06-07T03:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5a4bb50f-2f1d-4248-bfbb-def495f9876d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-07T02:36:57.000Z" + }, + "end": { + "$date": "2021-06-07T02:53:24.000Z" + }, + "events": [ + { + "uuid": "cd8c2e46-d78b-4828-9206-13a93996c653", + "start": { + "$date": "2021-06-07T02:36:57.000Z" + }, + "end": { + "$date": "2021-06-07T02:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bfa722d5-2db2-4816-a806-956bcc10f619", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-07T02:54:53.000Z" + }, + "end": { + "$date": "2021-06-07T06:20:53.000Z" + }, + "events": [ + { + "uuid": "1249c143-44de-46a7-ad63-47822e428340", + "start": { + "$date": "2021-06-07T02:54:53.000Z" + }, + "end": { + "$date": "2021-06-07T06:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d12aadd0-9b03-4b69-a175-93ccd98a1299", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-07T03:02:27.000Z" + }, + "end": { + "$date": "2021-06-07T06:56:15.000Z" + }, + "events": [ + { + "uuid": "77a4e128-fc8b-4d33-bc40-939f880b153b", + "start": { + "$date": "2021-06-07T03:02:27.000Z" + }, + "end": { + "$date": "2021-06-07T06:54:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a024f2bd-0968-4c3d-bed5-3516add7bc39", + "start": { + "$date": "2021-06-07T06:54:27.000Z" + }, + "end": { + "$date": "2021-06-07T06:56:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8b40a64-c25c-4600-9dce-4df1c09025a2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-07T03:50:42.000Z" + }, + "end": { + "$date": "2021-06-07T03:55:28.000Z" + }, + "events": [ + { + "uuid": "8210cb28-65bc-4f87-a10f-3a559c8386a2", + "start": { + "$date": "2021-06-07T03:50:42.000Z" + }, + "end": { + "$date": "2021-06-07T03:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da02a03e-a4c4-46af-a833-ea3c7eb605fe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-07T04:00:48.000Z" + }, + "end": { + "$date": "2021-06-07T04:22:19.000Z" + }, + "events": [ + { + "uuid": "1fd97d5b-3bc7-4e74-9032-d61244d20c85", + "start": { + "$date": "2021-06-07T04:00:48.000Z" + }, + "end": { + "$date": "2021-06-07T04:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "371517dd-1fb8-4a0f-9427-006a7fedc6f9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-07T04:27:29.000Z" + }, + "end": { + "$date": "2021-06-07T04:56:50.000Z" + }, + "events": [ + { + "uuid": "b30e28a1-ec59-4ca6-b499-32387f641706", + "start": { + "$date": "2021-06-07T04:27:29.000Z" + }, + "end": { + "$date": "2021-06-07T04:56:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "52ed08b4-f8b9-40cc-84f9-bf41636e64fe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T04:28:10.000Z" + }, + "end": { + "$date": "2021-06-07T05:38:52.000Z" + }, + "events": [ + { + "uuid": "7d8da86d-acec-4e16-a1bf-12dd239031f6", + "start": { + "$date": "2021-06-07T04:28:10.000Z" + }, + "end": { + "$date": "2021-06-07T05:38:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eea0a566-9b4f-45dd-b816-db8158884377", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-07T04:32:56.000Z" + }, + "end": { + "$date": "2021-06-07T05:36:49.000Z" + }, + "events": [ + { + "uuid": "1766fc9c-09bc-452a-b537-2e71a69dda54", + "start": { + "$date": "2021-06-07T04:32:56.000Z" + }, + "end": { + "$date": "2021-06-07T05:36:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fe784ab-2e5a-4b52-9fba-6eaf3d5a523a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-07T04:57:06.000Z" + }, + "end": { + "$date": "2021-06-07T05:02:43.000Z" + }, + "events": [ + { + "uuid": "f98fe5d3-ba74-45e9-a35b-6117351980b8", + "start": { + "$date": "2021-06-07T04:57:06.000Z" + }, + "end": { + "$date": "2021-06-07T05:02:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "74ba0876-7a3c-4ebb-bfd4-aada80db5d38", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-07T05:37:42.000Z" + }, + "end": { + "$date": "2021-06-07T05:55:11.000Z" + }, + "events": [ + { + "uuid": "024b176a-e8a5-42a0-bf99-ec2dbb74121a", + "start": { + "$date": "2021-06-07T05:37:42.000Z" + }, + "end": { + "$date": "2021-06-07T05:55:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "43891d25-82e8-44a2-acb1-c632938df091", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T17:12:26.000Z" + }, + "end": { + "$date": "2021-06-07T18:13:13.000Z" + }, + "events": [ + { + "uuid": "21426441-4404-48a6-a3f3-c89dbdfc9333", + "start": { + "$date": "2021-06-07T17:12:26.000Z" + }, + "end": { + "$date": "2021-06-07T17:25:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d33a9158-9ab3-476b-9d89-6e7422f61f90", + "start": { + "$date": "2021-06-07T17:25:26.000Z" + }, + "end": { + "$date": "2021-06-08T03:04:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "19f930c1-a218-4078-8273-0b8f34f593e5", + "start": { + "$date": "2021-06-08T03:04:26.000Z" + }, + "end": { + "$date": "2021-06-08T03:08:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63fe5a1b-29c4-40d6-a1e9-2e77b51cb663", + "start": { + "$date": "2021-06-08T03:08:26.000Z" + }, + "end": { + "$date": "2021-06-08T03:24:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c61b9a7e-f49c-468b-bd5c-2ff68ddd1242", + "start": { + "$date": "2021-06-08T03:24:26.000Z" + }, + "end": { + "$date": "2021-06-08T04:37:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46b2e266-1daa-44ca-afc0-42728074bb3c", + "start": { + "$date": "2021-06-08T04:37:26.000Z" + }, + "end": { + "$date": "2021-06-08T04:41:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2dcff3b1-07f3-42c1-a5a0-d67a4dca1c3c", + "start": { + "$date": "2021-06-08T04:41:26.000Z" + }, + "end": { + "$date": "2021-06-07T18:13:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba1c254e-9ea5-4666-b813-992f9e0ebce9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-07T13:05:15.000Z" + }, + "end": { + "$date": "2021-06-07T13:27:27.000Z" + }, + "events": [ + { + "uuid": "0bb444b6-cdc7-4f3c-8140-d72317a2d779", + "start": { + "$date": "2021-06-07T13:05:15.000Z" + }, + "end": { + "$date": "2021-06-07T13:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "3319244b-38dd-4ca1-bfcf-93ba7bc2710b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-07T13:37:13.000Z" + }, + "end": { + "$date": "2021-06-07T13:51:54.000Z" + }, + "events": [ + { + "uuid": "da7c4d82-d8a0-4d1f-898d-d634b068509c", + "start": { + "$date": "2021-06-07T13:37:13.000Z" + }, + "end": { + "$date": "2021-06-07T13:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "be9deca5-169b-4be1-9717-dab3a78de3d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T19:09:31.000Z" + }, + "end": { + "$date": "2021-06-07T19:40:12.000Z" + }, + "events": [ + { + "uuid": "9fe0fcbe-c359-42c8-a43e-b96a3e11b3a8", + "start": { + "$date": "2021-06-07T19:09:31.000Z" + }, + "end": { + "$date": "2021-06-07T19:21:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "28fbd69a-61e4-4a0a-ab01-8ff9477678a6", + "start": { + "$date": "2021-06-07T19:21:31.000Z" + }, + "end": { + "$date": "2021-06-07T19:40:12.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e51ef0f9-2292-4a16-9374-11446a786818", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-07T19:16:51.000Z" + }, + "end": { + "$date": "2021-06-07T19:46:33.000Z" + }, + "events": [ + { + "uuid": "e25f941a-2e4d-4c99-abdc-5b48eda2735b", + "start": { + "$date": "2021-06-07T19:16:51.000Z" + }, + "end": { + "$date": "2021-06-07T19:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7898977e-bf4a-408f-aa43-a4049b244229", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T19:43:22.000Z" + }, + "end": { + "$date": "2021-06-07T19:53:43.000Z" + }, + "events": [ + { + "uuid": "fa46351f-fe0e-4765-9877-222d489e1c99", + "start": { + "$date": "2021-06-07T19:43:22.000Z" + }, + "end": { + "$date": "2021-06-07T19:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abc7a10e-32b8-4c40-a408-782745c16096", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-07T19:46:37.000Z" + }, + "end": { + "$date": "2021-06-07T19:49:06.000Z" + }, + "events": [ + { + "uuid": "6dc8734a-7079-46d8-ac69-a8eb14f6b4f4", + "start": { + "$date": "2021-06-07T19:46:37.000Z" + }, + "end": { + "$date": "2021-06-07T19:49:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb055c7c-366f-4378-a0c6-5015c713ac72", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T20:33:37.000Z" + }, + "end": { + "$date": "2021-06-07T20:35:17.000Z" + }, + "events": [ + { + "uuid": "5d402239-22d9-4a5f-a775-af8dc900dd26", + "start": { + "$date": "2021-06-07T20:33:37.000Z" + }, + "end": { + "$date": "2021-06-07T20:35:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1065b003-0768-46b3-80b0-f2fb568c6fa8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-07T20:02:25.000Z" + }, + "end": { + "$date": "2021-06-07T20:39:38.000Z" + }, + "events": [ + { + "uuid": "0f7465a1-4c1e-4583-af35-921386b829ec", + "start": { + "$date": "2021-06-07T20:02:25.000Z" + }, + "end": { + "$date": "2021-06-07T20:39:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a2f96f0a-e1d6-4762-92ba-a91a2b874946", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T20:35:22.000Z" + }, + "end": { + "$date": "2021-06-07T21:09:01.000Z" + }, + "events": [ + { + "uuid": "ad407bd3-973d-439c-af9a-3751cd07d5a6", + "start": { + "$date": "2021-06-07T20:35:22.000Z" + }, + "end": { + "$date": "2021-06-07T21:09:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59c3a672-18b1-4bb4-8679-4db360ca6d9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T21:10:27.000Z" + }, + "end": { + "$date": "2021-06-07T21:42:20.000Z" + }, + "events": [ + { + "uuid": "f19ed0f6-4c06-4cee-8bc6-5cc00ff6176c", + "start": { + "$date": "2021-06-07T21:10:27.000Z" + }, + "end": { + "$date": "2021-06-07T21:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "04b8be20-8d2a-4fc9-872c-6261a6d1aadb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-07T21:19:42.000Z" + }, + "end": { + "$date": "2021-06-07T21:44:20.000Z" + }, + "events": [ + { + "uuid": "4c47132a-f984-4c7e-b982-6cfdd2ccfe3e", + "start": { + "$date": "2021-06-07T21:19:42.000Z" + }, + "end": { + "$date": "2021-06-07T21:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "380342c6-ccff-4e06-a041-53c1a825e719", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-07T21:40:59.000Z" + }, + "end": { + "$date": "2021-06-07T21:55:19.000Z" + }, + "events": [ + { + "uuid": "facd3e0f-27e5-4c19-9574-3f8b3f18597e", + "start": { + "$date": "2021-06-07T21:40:59.000Z" + }, + "end": { + "$date": "2021-06-07T21:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "25dc9d93-5ba2-478b-a8b9-e09eed0638f2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-07T21:53:05.000Z" + }, + "end": { + "$date": "2021-06-07T22:53:57.000Z" + }, + "events": [ + { + "uuid": "22f8057b-1f4f-4227-852c-3073f17cbd09", + "start": { + "$date": "2021-06-07T21:53:05.000Z" + }, + "end": { + "$date": "2021-06-07T22:53:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3f250fde-6f91-4398-8060-7ca9edb65a8d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-07T21:57:50.000Z" + }, + "end": { + "$date": "2021-06-07T22:15:40.000Z" + }, + "events": [ + { + "uuid": "7ea54c0f-23df-4353-9189-bacf465f05ce", + "start": { + "$date": "2021-06-07T21:57:50.000Z" + }, + "end": { + "$date": "2021-06-07T22:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "332d8692-9c0e-4e87-abc7-8b1223e2d721", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T22:05:55.000Z" + }, + "end": { + "$date": "2021-06-07T22:34:43.000Z" + }, + "events": [ + { + "uuid": "46716b5b-c6c8-427c-ae6d-bc88fc433111", + "start": { + "$date": "2021-06-07T22:05:55.000Z" + }, + "end": { + "$date": "2021-06-07T22:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "a55561e1-3ba1-4f47-8248-05fddd74a51a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-07T22:16:06.000Z" + }, + "end": { + "$date": "2021-06-08T02:00:42.000Z" + }, + "events": [ + { + "uuid": "9c4a2241-1634-4f4e-8aa9-9df98debad37", + "start": { + "$date": "2021-06-07T22:16:06.000Z" + }, + "end": { + "$date": "2021-06-07T22:55:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0efd9bf-c58f-4861-acc9-ffdfd2858ba0", + "start": { + "$date": "2021-06-07T22:55:06.000Z" + }, + "end": { + "$date": "2021-06-07T23:42:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6879cf3-37a2-48e6-9060-f21e72189f84", + "start": { + "$date": "2021-06-07T23:42:06.000Z" + }, + "end": { + "$date": "2021-06-07T23:52:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd295708-bffa-45fe-be50-79b571b95021", + "start": { + "$date": "2021-06-07T23:52:06.000Z" + }, + "end": { + "$date": "2021-06-08T01:42:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0064a11a-b478-424c-951d-8bf1e8c3ca33", + "start": { + "$date": "2021-06-08T01:42:06.000Z" + }, + "end": { + "$date": "2021-06-08T02:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fcded7e-b68a-4042-8e8f-795b2a52d804", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-07T22:36:28.000Z" + }, + "end": { + "$date": "2021-06-07T23:12:11.000Z" + }, + "events": [ + { + "uuid": "b636d805-445d-4728-b24b-50cc7f07b2d5", + "start": { + "$date": "2021-06-07T22:36:28.000Z" + }, + "end": { + "$date": "2021-06-07T23:12:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "11acde94-0128-4b94-8b0f-e46c2e537fed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-07T23:04:17.000Z" + }, + "end": { + "$date": "2021-06-08T01:18:44.000Z" + }, + "events": [ + { + "uuid": "28524e53-3f2a-4ec7-8289-e3b0b4e6d894", + "start": { + "$date": "2021-06-07T23:04:17.000Z" + }, + "end": { + "$date": "2021-06-08T00:36:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c7e36d0-1883-4485-8997-910de3cd1dee", + "start": { + "$date": "2021-06-08T00:36:17.000Z" + }, + "end": { + "$date": "2021-06-08T00:56:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43866a86-0e7a-4f26-9265-1a9bf148f93e", + "start": { + "$date": "2021-06-08T00:56:17.000Z" + }, + "end": { + "$date": "2021-06-08T01:18:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "983367b1-74d2-4af4-be61-5a5642aaaee0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-07T23:22:00.000Z" + }, + "end": { + "$date": "2021-06-08T00:31:04.000Z" + }, + "events": [ + { + "uuid": "fab02994-6c51-425f-b52d-15e0f828855d", + "start": { + "$date": "2021-06-07T23:22:00.000Z" + }, + "end": { + "$date": "2021-06-08T00:31:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c277b363-56aa-413b-a8c9-c051a4aa6d8a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T00:42:28.000Z" + }, + "end": { + "$date": "2021-06-08T01:16:31.000Z" + }, + "events": [ + { + "uuid": "1f41ce9f-6303-457f-b74e-9d09b0d3bafb", + "start": { + "$date": "2021-06-08T00:42:28.000Z" + }, + "end": { + "$date": "2021-06-08T01:16:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b6db366-4265-4859-91e4-23755fbcf245", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T00:56:24.000Z" + }, + "end": { + "$date": "2021-06-08T01:20:49.000Z" + }, + "events": [ + { + "uuid": "93164b9d-29e5-4938-8e6e-98f5c5efc6da", + "start": { + "$date": "2021-06-08T00:56:24.000Z" + }, + "end": { + "$date": "2021-06-08T01:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6986c43c-96d7-4113-8d9b-97de9152b155", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-08T00:57:32.000Z" + }, + "end": { + "$date": "2021-06-08T00:58:37.000Z" + }, + "events": [ + { + "uuid": "ad5e98ed-a89a-4653-a84b-0077dff7321c", + "start": { + "$date": "2021-06-08T00:57:32.000Z" + }, + "end": { + "$date": "2021-06-08T00:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab033b02-4784-43b1-9b84-21c6e837a4ae", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-08T01:17:29.000Z" + }, + "end": { + "$date": "2021-06-08T05:58:28.000Z" + }, + "events": [ + { + "uuid": "956fd3c8-3d5f-4eeb-93f4-9581511fb956", + "start": { + "$date": "2021-06-08T01:17:29.000Z" + }, + "end": { + "$date": "2021-06-08T05:58:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5b197ee8-89ec-4e17-8fc8-6438a30c07e5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T01:18:55.000Z" + }, + "end": { + "$date": "2021-06-08T01:28:46.000Z" + }, + "events": [ + { + "uuid": "34e01a59-d718-41d2-afd9-3bd8e1f448ad", + "start": { + "$date": "2021-06-08T01:18:55.000Z" + }, + "end": { + "$date": "2021-06-08T01:28:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8907423f-ac16-4183-bdac-607f6557468f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T01:21:45.000Z" + }, + "end": { + "$date": "2021-06-08T02:02:25.000Z" + }, + "events": [ + { + "uuid": "40e52802-543f-4ce6-851e-4596d5888d97", + "start": { + "$date": "2021-06-08T01:21:45.000Z" + }, + "end": { + "$date": "2021-06-08T02:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "389c565f-02b7-49bd-9090-e47ea5f80c4c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T01:32:00.000Z" + }, + "end": { + "$date": "2021-06-08T01:50:06.000Z" + }, + "events": [ + { + "uuid": "4ccb36db-9fe0-43c7-81b0-cecb904f889c", + "start": { + "$date": "2021-06-08T01:32:00.000Z" + }, + "end": { + "$date": "2021-06-08T01:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "88de8d81-29cd-4a5e-8280-97d902d83e4c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-07T03:02:27.000Z" + }, + "end": { + "$date": "2021-06-08T01:37:09.000Z" + }, + "events": [ + { + "uuid": "51059eb9-7170-4f07-a486-8d376bb826c8", + "start": { + "$date": "2021-06-07T03:02:27.000Z" + }, + "end": { + "$date": "2021-06-08T01:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62d01766-e353-4903-9491-17d59269f754", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-08T01:35:02.000Z" + }, + "end": { + "$date": "2021-06-08T03:26:51.000Z" + }, + "events": [ + { + "uuid": "b6c7e76e-48d0-4f56-b845-0eb1063854ba", + "start": { + "$date": "2021-06-08T01:35:02.000Z" + }, + "end": { + "$date": "2021-06-08T03:26:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "10a7857a-97fe-4716-bfc8-bfcb9b9cd4e5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-08T01:38:01.000Z" + }, + "end": { + "$date": "2021-06-08T02:25:18.000Z" + }, + "events": [ + { + "uuid": "893b8ab3-4230-4049-aa6a-8162ef11ad73", + "start": { + "$date": "2021-06-08T01:38:01.000Z" + }, + "end": { + "$date": "2021-06-08T02:25:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ee4ad82a-1352-46eb-917b-8546dd2f5e15", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T01:52:51.000Z" + }, + "end": { + "$date": "2021-06-08T02:48:12.000Z" + }, + "events": [ + { + "uuid": "346fed15-def7-48c0-9792-eff1e060b8e3", + "start": { + "$date": "2021-06-08T01:52:51.000Z" + }, + "end": { + "$date": "2021-06-08T02:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0f0b46ba-8d0d-4910-94b3-a4f78956b69f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-08T02:00:53.000Z" + }, + "end": { + "$date": "2021-06-08T03:26:35.000Z" + }, + "events": [ + { + "uuid": "f836f220-fffe-4a2f-aad9-59d1cfd24674", + "start": { + "$date": "2021-06-08T02:00:53.000Z" + }, + "end": { + "$date": "2021-06-08T03:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9baa50d4-ba81-4547-8c08-2c8fdcee7de0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T02:02:27.000Z" + }, + "end": { + "$date": "2021-06-08T02:03:36.000Z" + }, + "events": [ + { + "uuid": "0415a260-b0a1-412c-83d4-20346d1aea13", + "start": { + "$date": "2021-06-08T02:02:27.000Z" + }, + "end": { + "$date": "2021-06-08T02:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b24a70dc-ea9a-40df-b8fc-0c4c0c73ba0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T02:43:29.000Z" + }, + "end": { + "$date": "2021-06-08T02:48:50.000Z" + }, + "events": [ + { + "uuid": "aad38dda-f167-4dda-9c10-106ea7d2297a", + "start": { + "$date": "2021-06-08T02:43:29.000Z" + }, + "end": { + "$date": "2021-06-08T02:48:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "20e37526-115b-42ce-aa07-f684098bc46e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-08T02:26:10.000Z" + }, + "end": { + "$date": "2021-06-08T02:37:15.000Z" + }, + "events": [ + { + "uuid": "b4ff398d-ddfe-47fd-a936-bbf2935154ee", + "start": { + "$date": "2021-06-08T02:26:10.000Z" + }, + "end": { + "$date": "2021-06-08T02:37:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4078075a-017d-4857-a7bf-9c51d817a173", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-08T02:38:01.000Z" + }, + "end": { + "$date": "2021-06-08T02:51:28.000Z" + }, + "events": [ + { + "uuid": "f7113271-7a56-4939-aca4-7c8d6d222f48", + "start": { + "$date": "2021-06-08T02:38:01.000Z" + }, + "end": { + "$date": "2021-06-08T02:51:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7e8fa028-e808-4385-bd23-b534a220ef6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T02:48:39.000Z" + }, + "end": { + "$date": "2021-06-08T03:04:33.000Z" + }, + "events": [ + { + "uuid": "d4952cc1-70e7-4972-b64f-a10fa9d33cef", + "start": { + "$date": "2021-06-08T02:48:39.000Z" + }, + "end": { + "$date": "2021-06-08T03:04:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f3d850a0-8004-465f-a666-e582f8912e36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T02:51:45.000Z" + }, + "end": { + "$date": "2021-06-08T05:57:25.000Z" + }, + "events": [ + { + "uuid": "e3337950-f99b-426e-9afe-82679609940b", + "start": { + "$date": "2021-06-08T02:51:45.000Z" + }, + "end": { + "$date": "2021-06-08T05:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "041c18bf-5be9-4716-93f6-2d0794e84749", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-08T02:52:39.000Z" + }, + "end": { + "$date": "2021-06-08T05:58:24.000Z" + }, + "events": [ + { + "uuid": "a745736e-4abd-4b24-a632-b55211b35dcc", + "start": { + "$date": "2021-06-08T02:52:39.000Z" + }, + "end": { + "$date": "2021-06-08T05:58:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cfef4b17-e172-40cd-8050-ac234713bca5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T03:04:36.000Z" + }, + "end": { + "$date": "2021-06-08T09:44:44.000Z" + }, + "events": [ + { + "uuid": "2ff7831d-b8ca-49b2-b0ba-7a0b892474eb", + "start": { + "$date": "2021-06-08T03:04:36.000Z" + }, + "end": { + "$date": "2021-06-08T09:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dec5016d-8209-4117-8952-d05d8cbd3679", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T03:14:41.000Z" + }, + "end": { + "$date": "2021-06-08T03:39:48.000Z" + }, + "events": [ + { + "uuid": "5bfa6887-4ced-4766-b3c0-b1c8fff28fa8", + "start": { + "$date": "2021-06-08T03:14:41.000Z" + }, + "end": { + "$date": "2021-06-08T03:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "360d471a-8c5d-4add-90b5-3fcd8f17fe7e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-08T03:28:35.000Z" + }, + "end": { + "$date": "2021-06-08T04:09:38.000Z" + }, + "events": [ + { + "uuid": "39c24741-676e-4cac-bcf1-364c191f98c2", + "start": { + "$date": "2021-06-08T03:28:35.000Z" + }, + "end": { + "$date": "2021-06-08T04:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "6540b627-a099-4259-b341-7ea13ac0f365", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-08T04:09:53.000Z" + }, + "end": { + "$date": "2021-06-08T04:56:12.000Z" + }, + "events": [ + { + "uuid": "ce4c15e5-400f-432d-9622-7d0b2ecae321", + "start": { + "$date": "2021-06-08T04:09:53.000Z" + }, + "end": { + "$date": "2021-06-08T04:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1db13a4c-0dee-4eef-8772-d86f302cd3f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T04:14:48.000Z" + }, + "end": { + "$date": "2021-06-08T05:57:44.000Z" + }, + "events": [ + { + "uuid": "1840ab89-cf10-427b-9165-aea03be5f2c8", + "start": { + "$date": "2021-06-08T04:14:48.000Z" + }, + "end": { + "$date": "2021-06-08T05:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3dc68fb0-5463-43e0-a646-2e3d0d904c6d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-08T04:59:16.000Z" + }, + "end": { + "$date": "2021-06-08T05:08:01.000Z" + }, + "events": [ + { + "uuid": "41d50eb2-2e7f-4109-907d-c408385afdb5", + "start": { + "$date": "2021-06-08T04:59:16.000Z" + }, + "end": { + "$date": "2021-06-08T05:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "47317f5d-0c21-4161-bfff-7ec7b0fe0635", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-08T05:30:31.000Z" + }, + "end": { + "$date": "2021-06-08T05:53:07.000Z" + }, + "events": [ + { + "uuid": "06056de6-1c25-4280-aa4c-d38b3c9790e2", + "start": { + "$date": "2021-06-08T05:30:31.000Z" + }, + "end": { + "$date": "2021-06-08T05:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "4d25b89f-1347-4b2f-9e4c-64b213c82018", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T06:15:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:33:22.000Z" + }, + "events": [ + { + "uuid": "0d2f9e30-2ab4-42fc-9d1f-653416b5651c", + "start": { + "$date": "2021-06-08T06:15:28.000Z" + }, + "end": { + "$date": "2021-06-08T06:27:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5cfe6a3f-98fb-4764-8156-5235de5c6986", + "start": { + "$date": "2021-06-08T06:27:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:04:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f259aa18-00bd-49a1-a7d8-d305696d2ab8", + "start": { + "$date": "2021-06-08T15:04:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:08:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41a5d76e-fbfb-4219-916f-84ea31e37936", + "start": { + "$date": "2021-06-08T15:08:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:16:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90aa78ef-5243-46e4-bd72-add34a1415d8", + "start": { + "$date": "2021-06-08T15:16:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:26:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26370008-f264-4256-8df2-8ea272121ec8", + "start": { + "$date": "2021-06-08T15:26:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:31:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e26a9d8-da12-475a-b8a6-e0d7ad71c9e8", + "start": { + "$date": "2021-06-08T15:31:28.000Z" + }, + "end": { + "$date": "2021-06-08T15:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0bc3aaf1-2d53-4baa-9232-eed6f8321f67", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-08T13:48:37.000Z" + }, + "end": { + "$date": "2021-06-08T15:05:02.000Z" + }, + "events": [ + { + "uuid": "1a4781e4-33e6-4a95-81e7-7a78c1d032d4", + "start": { + "$date": "2021-06-08T13:48:37.000Z" + }, + "end": { + "$date": "2021-06-08T15:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "68588845-9283-4fb2-9db2-2de81414012e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-08T15:05:42.000Z" + }, + "end": { + "$date": "2021-06-08T15:53:48.000Z" + }, + "events": [ + { + "uuid": "48fbc3fd-bec0-4e47-9a0e-f02589ba0f9e", + "start": { + "$date": "2021-06-08T15:05:42.000Z" + }, + "end": { + "$date": "2021-06-08T15:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61760994-6152-4040-b2ec-cfabfd5a8cc8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T15:35:27.000Z" + }, + "end": { + "$date": "2021-06-08T16:18:35.000Z" + }, + "events": [ + { + "uuid": "8da03cbe-539f-4479-a2f6-af3a4f389588", + "start": { + "$date": "2021-06-08T15:35:27.000Z" + }, + "end": { + "$date": "2021-06-08T16:18:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "baa01249-d642-44d2-802f-3bef53e7ad93", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T16:19:15.000Z" + }, + "end": { + "$date": "2021-06-08T16:49:42.000Z" + }, + "events": [ + { + "uuid": "4cf1a76d-cf2d-4dd4-be6a-d9a9cb478eb2", + "start": { + "$date": "2021-06-08T16:19:15.000Z" + }, + "end": { + "$date": "2021-06-08T16:49:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60f4c316-7260-4d1f-9507-dd0058e48fd2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T16:31:58.000Z" + }, + "end": { + "$date": "2021-06-08T17:03:14.000Z" + }, + "events": [ + { + "uuid": "f4a213bf-06a1-42f3-9b4f-b978d7e1218a", + "start": { + "$date": "2021-06-08T16:31:58.000Z" + }, + "end": { + "$date": "2021-06-08T17:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c65c8cb2-f1e2-4ed7-ab14-65dc098839c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T17:05:20.000Z" + }, + "end": { + "$date": "2021-06-08T17:45:10.000Z" + }, + "events": [ + { + "uuid": "81ce566b-6564-4c7c-851d-0cf23e66fb0d", + "start": { + "$date": "2021-06-08T17:05:20.000Z" + }, + "end": { + "$date": "2021-06-08T17:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05e58487-2f44-4e21-bfc4-1de3412a8a35", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T18:01:15.000Z" + }, + "end": { + "$date": "2021-06-08T18:40:19.000Z" + }, + "events": [ + { + "uuid": "7f346d80-c558-4a5a-99f0-3efe5e1b06fe", + "start": { + "$date": "2021-06-08T18:01:15.000Z" + }, + "end": { + "$date": "2021-06-08T18:40:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ce86af7d-cad8-4cc2-9cf1-111904192224", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T18:42:19.000Z" + }, + "end": { + "$date": "2021-06-08T18:57:27.000Z" + }, + "events": [ + { + "uuid": "2b5710ad-197b-4d44-8c45-510dc11db1bf", + "start": { + "$date": "2021-06-08T18:42:19.000Z" + }, + "end": { + "$date": "2021-06-08T18:57:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "433b8c70-3c5c-41ca-a28c-34c936f4f814", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T19:00:17.000Z" + }, + "end": { + "$date": "2021-06-08T19:38:55.000Z" + }, + "events": [ + { + "uuid": "34d1b2f7-20c4-4e00-84b3-b9cc09f9770a", + "start": { + "$date": "2021-06-08T19:00:17.000Z" + }, + "end": { + "$date": "2021-06-08T19:38:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00d32289-6882-4dd6-a045-021f6b4cbea7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T19:00:26.000Z" + }, + "end": { + "$date": "2021-06-08T19:32:19.000Z" + }, + "events": [ + { + "uuid": "1e143967-7c7d-40f1-b164-705fd2eb8f87", + "start": { + "$date": "2021-06-08T19:00:26.000Z" + }, + "end": { + "$date": "2021-06-08T19:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c1656112-a159-43e6-90ae-eb348721c8b7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-08T19:27:26.000Z" + }, + "end": { + "$date": "2021-06-08T20:33:53.000Z" + }, + "events": [ + { + "uuid": "eb8aad1a-dfe9-4b1d-a38b-708dc7862466", + "start": { + "$date": "2021-06-08T19:27:26.000Z" + }, + "end": { + "$date": "2021-06-08T20:03:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "52ba5016-d3b1-47cf-89be-6a8b61f950fd", + "start": { + "$date": "2021-06-08T20:03:26.000Z" + }, + "end": { + "$date": "2021-06-08T20:10:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d2aef43-d4eb-424a-b59b-983f671c74b5", + "start": { + "$date": "2021-06-08T20:10:26.000Z" + }, + "end": { + "$date": "2021-06-08T20:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0360e4ef-21fe-4930-aeca-90f41a642f8f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T19:41:16.000Z" + }, + "end": { + "$date": "2021-06-08T19:55:31.000Z" + }, + "events": [ + { + "uuid": "29dfe7ec-9759-4a88-8afd-c2394a5e491d", + "start": { + "$date": "2021-06-08T19:41:16.000Z" + }, + "end": { + "$date": "2021-06-08T19:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4177d950-8ac2-44de-867b-31c9ba9d365e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-08T20:01:35.000Z" + }, + "end": { + "$date": "2021-06-08T20:34:33.000Z" + }, + "events": [ + { + "uuid": "421523c9-229a-46de-ad8b-905515a24dbe", + "start": { + "$date": "2021-06-08T20:01:35.000Z" + }, + "end": { + "$date": "2021-06-08T20:34:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9fe314ae-3b7c-4f90-8361-741b72cf4c77", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-08T20:31:37.000Z" + }, + "end": { + "$date": "2021-06-08T21:17:14.000Z" + }, + "events": [ + { + "uuid": "bf9d3b1d-7d5c-4556-954e-3d5d3fa6a8ab", + "start": { + "$date": "2021-06-08T20:31:37.000Z" + }, + "end": { + "$date": "2021-06-08T21:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1ba93105-5e2a-47b4-ae00-00eb91783935", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-08T20:35:53.000Z" + }, + "end": { + "$date": "2021-06-08T20:55:57.000Z" + }, + "events": [ + { + "uuid": "e7923ec9-9b2f-433d-904a-24e05e1b8135", + "start": { + "$date": "2021-06-08T20:35:53.000Z" + }, + "end": { + "$date": "2021-06-08T20:55:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ff8fbbb2-4f4a-4624-a01e-e35b984cb499", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-08T21:03:04.000Z" + }, + "end": { + "$date": "2021-06-08T21:06:49.000Z" + }, + "events": [ + { + "uuid": "573b00f4-1121-42c5-9030-04c8cd9d14e5", + "start": { + "$date": "2021-06-08T21:03:04.000Z" + }, + "end": { + "$date": "2021-06-08T21:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "13b2888d-fdab-4efd-ba1c-44d52f3f2698", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-08T21:08:00.000Z" + }, + "end": { + "$date": "2021-06-08T22:27:03.000Z" + }, + "events": [ + { + "uuid": "95bf3c87-e7cd-4fea-9345-187fc335402d", + "start": { + "$date": "2021-06-08T21:08:00.000Z" + }, + "end": { + "$date": "2021-06-08T22:27:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a9227efb-71e1-49b7-b2b6-73748d43ba79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T21:36:22.000Z" + }, + "end": { + "$date": "2021-06-08T23:03:28.000Z" + }, + "events": [ + { + "uuid": "98cc84d2-4ce5-4422-9f94-69565a0cf2b5", + "start": { + "$date": "2021-06-08T21:36:22.000Z" + }, + "end": { + "$date": "2021-06-08T23:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "6b1aa4df-ef7b-479a-b387-22aacfce2527", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-08T22:57:23.000Z" + }, + "end": { + "$date": "2021-06-09T00:46:23.000Z" + }, + "events": [ + { + "uuid": "40b0d6ca-ef08-49d4-bfa4-86b4de62b45d", + "start": { + "$date": "2021-06-08T22:57:23.000Z" + }, + "end": { + "$date": "2021-06-09T00:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3692a125-bcb9-467e-abdc-da6c3f308fd3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-08T23:02:46.000Z" + }, + "end": { + "$date": "2021-06-08T23:04:18.000Z" + }, + "events": [ + { + "uuid": "81efaaf1-3f34-4efa-bca6-144fa398bfa8", + "start": { + "$date": "2021-06-08T23:02:46.000Z" + }, + "end": { + "$date": "2021-06-08T23:04:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4ac76319-f396-4a0f-89c9-1d2ba349dd7e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T23:03:42.000Z" + }, + "end": { + "$date": "2021-06-08T23:43:58.000Z" + }, + "events": [ + { + "uuid": "443b99e0-83db-4129-bb5c-599adc65e3bc", + "start": { + "$date": "2021-06-08T23:03:42.000Z" + }, + "end": { + "$date": "2021-06-08T23:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "487e0d72-bfd4-426f-ac8c-c7a2e07e549e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-08T23:36:47.000Z" + }, + "end": { + "$date": "2021-06-08T23:45:44.000Z" + }, + "events": [ + { + "uuid": "0d3303f7-4289-4215-a4b4-2879dd3bd49d", + "start": { + "$date": "2021-06-08T23:36:47.000Z" + }, + "end": { + "$date": "2021-06-08T23:45:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f5f9914a-004b-4f72-8501-ebbc33f3d3ea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-08T23:45:03.000Z" + }, + "end": { + "$date": "2021-06-08T23:47:17.000Z" + }, + "events": [ + { + "uuid": "d6fc8820-68fc-499b-8ddb-c16182720226", + "start": { + "$date": "2021-06-08T23:45:03.000Z" + }, + "end": { + "$date": "2021-06-08T23:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c412d09-02ee-4216-b49d-46a2e99c3a1c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-08T23:50:54.000Z" + }, + "end": { + "$date": "2021-06-09T00:10:40.000Z" + }, + "events": [ + { + "uuid": "5dc5d0d3-0f6a-47d6-adca-209e1501c1f7", + "start": { + "$date": "2021-06-08T23:50:54.000Z" + }, + "end": { + "$date": "2021-06-09T00:10:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "b1849baa-3593-4d36-b082-212c4957cbe6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T00:16:47.000Z" + }, + "end": { + "$date": "2021-06-09T00:17:03.000Z" + }, + "events": [ + { + "uuid": "eb80da6b-bd8c-4c13-9e69-2dad10827e77", + "start": { + "$date": "2021-06-09T00:16:47.000Z" + }, + "end": { + "$date": "2021-06-09T00:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a941fe75-897e-4c92-a455-099d2123c3ff", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T00:28:17.000Z" + }, + "end": { + "$date": "2021-06-09T00:55:02.000Z" + }, + "events": [ + { + "uuid": "7deb8e16-476b-4c10-8076-e50105cb5f8b", + "start": { + "$date": "2021-06-09T00:28:17.000Z" + }, + "end": { + "$date": "2021-06-09T00:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "2d95887e-7a86-4105-a481-c26520e48fac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T00:46:44.000Z" + }, + "end": { + "$date": "2021-06-09T02:33:01.000Z" + }, + "events": [ + { + "uuid": "2d62ff0c-c662-438e-a516-788f5ad8f326", + "start": { + "$date": "2021-06-09T00:46:44.000Z" + }, + "end": { + "$date": "2021-06-09T02:33:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5342f541-d505-4d1e-a990-e76d6f42d65c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T00:49:08.000Z" + }, + "end": { + "$date": "2021-06-09T01:24:15.000Z" + }, + "events": [ + { + "uuid": "3cc5309c-5f61-4991-b5e2-2f97c879a7e9", + "start": { + "$date": "2021-06-09T00:49:08.000Z" + }, + "end": { + "$date": "2021-06-09T01:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0c200028-6813-4487-95c9-7683cebb0343", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-09T00:48:52.000Z" + }, + "end": { + "$date": "2021-06-09T07:13:39.000Z" + }, + "events": [ + { + "uuid": "18cfa6a7-2937-4186-aff3-fdbfdcbfbe9b", + "start": { + "$date": "2021-06-09T00:48:52.000Z" + }, + "end": { + "$date": "2021-06-09T07:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "40fdce10-4f61-41f1-8409-c17016a039bc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-09T00:51:56.000Z" + }, + "end": { + "$date": "2021-06-09T01:33:14.000Z" + }, + "events": [ + { + "uuid": "ac8c3a4a-c647-4ff5-a15c-9406adefd101", + "start": { + "$date": "2021-06-09T00:51:56.000Z" + }, + "end": { + "$date": "2021-06-09T01:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1fc28675-9cd5-4a61-8ee0-7771e7bd363a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T01:03:52.000Z" + }, + "end": { + "$date": "2021-06-09T01:12:23.000Z" + }, + "events": [ + { + "uuid": "deb69c81-da59-4dd6-a8dc-80abdb47923b", + "start": { + "$date": "2021-06-09T01:03:52.000Z" + }, + "end": { + "$date": "2021-06-09T01:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "81bb8c2e-46b3-4bb8-b985-1b25ac096ac4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T01:08:17.000Z" + }, + "end": { + "$date": "2021-06-09T01:30:06.000Z" + }, + "events": [ + { + "uuid": "db7714b0-c929-47a1-89ce-a8d871b894be", + "start": { + "$date": "2021-06-09T01:08:17.000Z" + }, + "end": { + "$date": "2021-06-09T01:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7f8f6f54-71d5-4053-8dd5-602b059d44c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-09T01:18:09.000Z" + }, + "end": { + "$date": "2021-06-09T01:23:40.000Z" + }, + "events": [ + { + "uuid": "335fbc7c-2a3a-45ab-b9de-4bc20e89fcd8", + "start": { + "$date": "2021-06-09T01:18:09.000Z" + }, + "end": { + "$date": "2021-06-09T01:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "03841995-6a4b-4288-95a9-94e478906925", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T01:32:15.000Z" + }, + "end": { + "$date": "2021-06-09T01:46:25.000Z" + }, + "events": [ + { + "uuid": "2deb8c3d-9d75-43d0-8435-7179b330dc81", + "start": { + "$date": "2021-06-09T01:32:15.000Z" + }, + "end": { + "$date": "2021-06-09T01:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef667598-bfb0-4d54-b094-56469aa88f26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T01:36:42.000Z" + }, + "end": { + "$date": "2021-06-09T02:03:47.000Z" + }, + "events": [ + { + "uuid": "6240ca39-87fa-440b-905c-ba06103dc720", + "start": { + "$date": "2021-06-09T01:36:42.000Z" + }, + "end": { + "$date": "2021-06-09T02:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", + "uuid": "7dd406b4-3d86-4d77-bfd6-2ce3fb0a3244", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T01:49:45.000Z" + }, + "end": { + "$date": "2021-06-09T01:51:56.000Z" + }, + "events": [ + { + "uuid": "40695d57-8a65-44f9-bf2b-9f3265f99b17", + "start": { + "$date": "2021-06-09T01:49:45.000Z" + }, + "end": { + "$date": "2021-06-09T01:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "50ec84f1-b026-408d-93dd-ac5f18213fc7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T01:52:41.000Z" + }, + "end": { + "$date": "2021-06-09T03:42:12.000Z" + }, + "events": [ + { + "uuid": "4f428483-d5a9-4d67-9395-b127d98d4265", + "start": { + "$date": "2021-06-09T01:52:41.000Z" + }, + "end": { + "$date": "2021-06-09T03:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "35606d36-5543-4d55-bcdb-bb14a8a0bfc9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T01:53:49.000Z" + }, + "end": { + "$date": "2021-06-09T01:54:59.000Z" + }, + "events": [ + { + "uuid": "383af7e3-ddbd-4d20-956d-e1ba4d3286d0", + "start": { + "$date": "2021-06-09T01:53:49.000Z" + }, + "end": { + "$date": "2021-06-09T01:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5286fd64-599b-46b4-b3aa-b4aa0ed949a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T01:55:09.000Z" + }, + "end": { + "$date": "2021-06-09T01:56:09.000Z" + }, + "events": [ + { + "uuid": "06c0088f-b6df-4ce9-88dd-ebd63f8b4d79", + "start": { + "$date": "2021-06-09T01:55:09.000Z" + }, + "end": { + "$date": "2021-06-09T01:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "53985836-a3bc-4227-bd0f-56b9de20702a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-09T01:56:22.000Z" + }, + "end": { + "$date": "2021-06-09T07:20:04.000Z" + }, + "events": [ + { + "uuid": "d1cd5f58-b0c9-4b79-a210-f1391c365310", + "start": { + "$date": "2021-06-09T01:56:22.000Z" + }, + "end": { + "$date": "2021-06-09T07:20:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1301f530-a5aa-436f-b006-7936471c556a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T01:57:20.000Z" + }, + "end": { + "$date": "2021-06-09T02:00:16.000Z" + }, + "events": [ + { + "uuid": "05149a1a-d65c-43c8-bc9e-0f01444e3538", + "start": { + "$date": "2021-06-09T01:57:20.000Z" + }, + "end": { + "$date": "2021-06-09T02:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dc0947f3-bb56-4c0b-9515-694ab1762440", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T02:00:31.000Z" + }, + "end": { + "$date": "2021-06-09T03:41:13.000Z" + }, + "events": [ + { + "uuid": "1de4fd7a-0a72-4bd6-9f47-faf787716b78", + "start": { + "$date": "2021-06-09T02:00:31.000Z" + }, + "end": { + "$date": "2021-06-09T03:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e440007-9c5c-4be8-96cf-6e3f28d412a0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T02:04:40.000Z" + }, + "end": { + "$date": "2021-06-09T02:38:37.000Z" + }, + "events": [ + { + "uuid": "1672e963-6476-4ef9-8dd7-3e8a1397e1ac", + "start": { + "$date": "2021-06-09T02:04:40.000Z" + }, + "end": { + "$date": "2021-06-09T02:38:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9eface14-574b-4740-b6c2-9712ba24eee9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-09T02:19:47.000Z" + }, + "end": { + "$date": "2021-06-09T03:18:14.000Z" + }, + "events": [ + { + "uuid": "bc817165-5148-4aa6-bdae-bb28f0099e14", + "start": { + "$date": "2021-06-09T02:19:47.000Z" + }, + "end": { + "$date": "2021-06-09T03:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "25b67717-656a-4415-81ea-c0543eb80946", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-09T02:22:09.000Z" + }, + "end": { + "$date": "2021-06-09T04:01:02.000Z" + }, + "events": [ + { + "uuid": "855f73ce-8ac7-4227-84c6-7409a1cbb421", + "start": { + "$date": "2021-06-09T02:22:09.000Z" + }, + "end": { + "$date": "2021-06-09T04:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "855d50cc-6bd2-4e8f-b633-1d808d87050a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T02:43:16.000Z" + }, + "end": { + "$date": "2021-06-09T03:07:53.000Z" + }, + "events": [ + { + "uuid": "f894098d-4cc6-40da-9e59-150197e039ef", + "start": { + "$date": "2021-06-09T02:43:16.000Z" + }, + "end": { + "$date": "2021-06-09T03:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", + "uuid": "a32c0332-935f-476e-a8f2-c4d3809658ad", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-06-09T02:50:20.000Z" + }, + "end": { + "$date": "2021-06-10T06:14:34.000Z" + }, + "events": [ + { + "uuid": "212b2a78-d818-4ae7-923f-04106c7f53de", + "start": { + "$date": "2021-06-09T02:50:20.000Z" + }, + "end": { + "$date": "2021-06-09T02:51:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36de94db-1e13-489e-a379-d4e950f282bb", + "start": { + "$date": "2021-06-09T02:51:20.000Z" + }, + "end": { + "$date": "2021-06-09T03:04:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85408684-bb00-4fbf-966d-31309b60cee4", + "start": { + "$date": "2021-06-09T03:04:20.000Z" + }, + "end": { + "$date": "2021-06-09T10:56:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8dcdb525-4ef6-4ffb-92bb-cba69355d257", + "start": { + "$date": "2021-06-09T10:56:20.000Z" + }, + "end": { + "$date": "2021-06-09T12:31:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dd20d47a-aa65-4547-a546-89706c6db1a7", + "start": { + "$date": "2021-06-09T12:31:20.000Z" + }, + "end": { + "$date": "2021-06-09T16:54:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db9dbf52-c6ba-4d93-9544-04e52f0949dc", + "start": { + "$date": "2021-06-09T16:54:20.000Z" + }, + "end": { + "$date": "2021-06-09T16:56:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "52d0a832-b19b-443d-a1fd-bd1f504bc9c2", + "start": { + "$date": "2021-06-09T16:56:20.000Z" + }, + "end": { + "$date": "2021-06-09T17:05:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae7f1bfc-b610-4565-b8f5-146eb81b6974", + "start": { + "$date": "2021-06-09T17:05:20.000Z" + }, + "end": { + "$date": "2021-06-09T17:07:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b591dc28-9569-494a-bc8b-9862c8ca6881", + "start": { + "$date": "2021-06-09T17:07:20.000Z" + }, + "end": { + "$date": "2021-06-09T17:53:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c24ba9f-2279-4d0d-a8bb-6d3a570407ce", + "start": { + "$date": "2021-06-09T17:53:20.000Z" + }, + "end": { + "$date": "2021-06-09T18:45:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c1e682f-d85a-43c3-8b69-2ab4e2797d67", + "start": { + "$date": "2021-06-09T18:45:20.000Z" + }, + "end": { + "$date": "2021-06-09T18:48:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb7ce334-6565-47f3-b052-24f5dedc3309", + "start": { + "$date": "2021-06-09T18:48:20.000Z" + }, + "end": { + "$date": "2021-06-09T18:59:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5751657d-ff73-4d10-bf58-95edd6443829", + "start": { + "$date": "2021-06-09T18:59:20.000Z" + }, + "end": { + "$date": "2021-06-09T19:00:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec729e2e-ce05-404f-8960-47a7bd5c13ee", + "start": { + "$date": "2021-06-09T19:00:20.000Z" + }, + "end": { + "$date": "2021-06-09T19:10:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "42ce1b25-48af-4a0d-a76d-e847cc54f606", + "start": { + "$date": "2021-06-09T19:10:20.000Z" + }, + "end": { + "$date": "2021-06-09T21:38:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "adc0a1ea-8a43-4561-9d3a-d7bc7429bde7", + "start": { + "$date": "2021-06-09T21:38:20.000Z" + }, + "end": { + "$date": "2021-06-09T21:42:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5426885b-178e-4237-b69f-e6bc69ddee4a", + "start": { + "$date": "2021-06-09T21:42:20.000Z" + }, + "end": { + "$date": "2021-06-10T02:36:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f9d6ae4f-1899-4c79-9966-98a0f106f7c4", + "start": { + "$date": "2021-06-10T02:36:20.000Z" + }, + "end": { + "$date": "2021-06-10T02:38:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "023a15b8-61d2-45fc-927f-cc07d7a89547", + "start": { + "$date": "2021-06-10T02:38:20.000Z" + }, + "end": { + "$date": "2021-06-10T04:25:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af9240de-e215-4daa-851f-cba82117253d", + "start": { + "$date": "2021-06-10T04:25:20.000Z" + }, + "end": { + "$date": "2021-06-10T04:36:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98a2f1a8-3164-444d-b2f6-e36f23586013", + "start": { + "$date": "2021-06-10T04:36:20.000Z" + }, + "end": { + "$date": "2021-06-10T06:01:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "467a09fa-67ea-442c-a7d3-b501862bf78d", + "start": { + "$date": "2021-06-10T06:01:20.000Z" + }, + "end": { + "$date": "2021-06-10T06:12:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddc6a7ff-51ff-4290-a8df-0b76cdda7903", + "start": { + "$date": "2021-06-10T06:12:20.000Z" + }, + "end": { + "$date": "2021-06-10T06:14:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "653f1177-5c3d-4ae6-84e4-cf8a983f2dc1", + "start": { + "$date": "2021-06-10T06:14:20.000Z" + }, + "end": { + "$date": "2021-06-10T06:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff538deb-0b2d-442c-b141-281f7abfc922", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T03:09:02.000Z" + }, + "end": { + "$date": "2021-06-09T03:36:46.000Z" + }, + "events": [ + { + "uuid": "701f707e-f049-4108-a37b-0a42bd6a35a9", + "start": { + "$date": "2021-06-09T03:09:02.000Z" + }, + "end": { + "$date": "2021-06-09T03:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "eb60b520-0900-4aa2-a2b5-37856f90780b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-09T03:23:19.000Z" + }, + "end": { + "$date": "2021-06-09T03:50:16.000Z" + }, + "events": [ + { + "uuid": "29874842-5988-4419-8b8c-842c8decb252", + "start": { + "$date": "2021-06-09T03:23:19.000Z" + }, + "end": { + "$date": "2021-06-09T03:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f502ee54-99b7-4be1-9771-2283bad521e5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T03:30:21.000Z" + }, + "end": { + "$date": "2021-06-09T03:47:08.000Z" + }, + "events": [ + { + "uuid": "9c3b9c6b-e0df-44f0-bfcd-4db1f7803698", + "start": { + "$date": "2021-06-09T03:30:21.000Z" + }, + "end": { + "$date": "2021-06-09T03:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c3de2d5-ed27-4856-91da-51c8491be0d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T03:51:24.000Z" + }, + "end": { + "$date": "2021-06-09T04:03:25.000Z" + }, + "events": [ + { + "uuid": "6970154b-5b0f-4023-b579-562504216a0c", + "start": { + "$date": "2021-06-09T03:51:24.000Z" + }, + "end": { + "$date": "2021-06-09T04:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ecf7da8b-518c-409d-a453-e8cb92e237f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T03:42:49.000Z" + }, + "end": { + "$date": "2021-06-09T03:44:19.000Z" + }, + "events": [ + { + "uuid": "cfd2d5ec-de55-4262-b216-4fa291d2401d", + "start": { + "$date": "2021-06-09T03:42:49.000Z" + }, + "end": { + "$date": "2021-06-09T03:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d61d8a0e-b487-48c7-84f6-9f36bba29c71", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T03:44:26.000Z" + }, + "end": { + "$date": "2021-06-09T08:03:41.000Z" + }, + "events": [ + { + "uuid": "29508d25-867e-4be5-bd3e-6ef7ec44b548", + "start": { + "$date": "2021-06-09T03:44:26.000Z" + }, + "end": { + "$date": "2021-06-09T08:03:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "773f30bc-1326-4fc8-ad09-11c160f6d5e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T03:51:25.000Z" + }, + "end": { + "$date": "2021-06-09T04:03:14.000Z" + }, + "events": [ + { + "uuid": "f5631726-b049-4de4-a326-4850e25cdf51", + "start": { + "$date": "2021-06-09T03:51:25.000Z" + }, + "end": { + "$date": "2021-06-09T04:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5db57dc8-a1eb-407b-a85e-f2111ac33d0a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T03:51:07.000Z" + }, + "end": { + "$date": "2021-06-09T04:03:28.000Z" + }, + "events": [ + { + "uuid": "7f74ee38-4b07-48f4-a63d-72db48a2427f", + "start": { + "$date": "2021-06-09T03:51:07.000Z" + }, + "end": { + "$date": "2021-06-09T04:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "beadf1d7-4329-4168-93bd-65c228c04395", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-09T03:50:42.000Z" + }, + "end": { + "$date": "2021-06-09T04:08:53.000Z" + }, + "events": [ + { + "uuid": "1aecdab2-9dc3-4da3-82e0-71923ad4b1b2", + "start": { + "$date": "2021-06-09T03:50:42.000Z" + }, + "end": { + "$date": "2021-06-09T04:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d08abc38-c01d-43fc-b64a-4371e2ddc694", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T04:08:15.000Z" + }, + "end": { + "$date": "2021-06-09T04:24:39.000Z" + }, + "events": [ + { + "uuid": "71b088c5-f485-4b9f-8ba7-e0f431140b65", + "start": { + "$date": "2021-06-09T04:08:15.000Z" + }, + "end": { + "$date": "2021-06-09T04:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "903d9599-c63d-4988-815b-f1e93c6ae02e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T04:04:02.000Z" + }, + "end": { + "$date": "2021-06-09T04:05:07.000Z" + }, + "events": [ + { + "uuid": "39b31fe3-3a1a-41d3-bb28-7167d84f2ac1", + "start": { + "$date": "2021-06-09T04:04:02.000Z" + }, + "end": { + "$date": "2021-06-09T04:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4df48430-4cc0-4fb2-9fa7-6b8954d3364d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T04:04:00.000Z" + }, + "end": { + "$date": "2021-06-09T04:05:08.000Z" + }, + "events": [ + { + "uuid": "4dbe8cf2-2e7d-4a75-8efd-1fb2343f3893", + "start": { + "$date": "2021-06-09T04:04:00.000Z" + }, + "end": { + "$date": "2021-06-09T04:05:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e402ad1e-8f3b-42e4-b6ff-9d5acd6487f9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T04:08:33.000Z" + }, + "end": { + "$date": "2021-06-09T04:24:32.000Z" + }, + "events": [ + { + "uuid": "c1ddfa21-5a87-4234-bbd1-d9a07c4c4844", + "start": { + "$date": "2021-06-09T04:08:33.000Z" + }, + "end": { + "$date": "2021-06-09T04:24:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d24b8d63-417b-4743-915d-5251e308798b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T04:08:11.000Z" + }, + "end": { + "$date": "2021-06-09T04:24:25.000Z" + }, + "events": [ + { + "uuid": "e1f75264-73eb-4636-9078-ea0356b836b6", + "start": { + "$date": "2021-06-09T04:08:11.000Z" + }, + "end": { + "$date": "2021-06-09T04:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "6953e118-1f80-4e5d-9f93-345704624f05", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-09T04:10:53.000Z" + }, + "end": { + "$date": "2021-06-09T04:26:34.000Z" + }, + "events": [ + { + "uuid": "319d6a26-d417-4e4a-8c71-45a351228bc7", + "start": { + "$date": "2021-06-09T04:10:53.000Z" + }, + "end": { + "$date": "2021-06-09T04:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8399fe9f-f6d9-4080-a861-99f7f6cebd44", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T04:27:52.000Z" + }, + "end": { + "$date": "2021-06-09T04:49:18.000Z" + }, + "events": [ + { + "uuid": "14e6cc71-3337-49a9-9515-92a948e7b7ca", + "start": { + "$date": "2021-06-09T04:27:52.000Z" + }, + "end": { + "$date": "2021-06-09T04:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c81b6111-0be4-40b2-8852-746237c1d046", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T04:29:47.000Z" + }, + "end": { + "$date": "2021-06-09T04:49:06.000Z" + }, + "events": [ + { + "uuid": "c407990f-d566-438c-8241-99189dedb14b", + "start": { + "$date": "2021-06-09T04:29:47.000Z" + }, + "end": { + "$date": "2021-06-09T04:49:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41fc2cc4-bbe3-470e-b574-7fe7f076aa13", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T04:27:49.000Z" + }, + "end": { + "$date": "2021-06-09T04:49:22.000Z" + }, + "events": [ + { + "uuid": "47a901cf-82bd-40b8-bd0c-29d8e9e266a6", + "start": { + "$date": "2021-06-09T04:27:49.000Z" + }, + "end": { + "$date": "2021-06-09T04:49:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "466b001d-769d-4265-b5d0-e23c0a2615d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-09T04:33:05.000Z" + }, + "end": { + "$date": "2021-06-09T04:38:21.000Z" + }, + "events": [ + { + "uuid": "349e0875-6e7a-4eaa-8741-d2f7169b1c73", + "start": { + "$date": "2021-06-09T04:33:05.000Z" + }, + "end": { + "$date": "2021-06-09T04:38:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "2533b031-f28c-4528-b682-8337179d0a8c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-09T04:41:12.000Z" + }, + "end": { + "$date": "2021-06-09T04:59:36.000Z" + }, + "events": [ + { + "uuid": "500534b1-cffa-43a1-8904-1a2a25d50576", + "start": { + "$date": "2021-06-09T04:41:12.000Z" + }, + "end": { + "$date": "2021-06-09T04:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "e9f54d8a-a6cd-43b8-a2b2-5baefd4d81a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T05:34:20.000Z" + }, + "end": { + "$date": "2021-06-09T06:46:17.000Z" + }, + "events": [ + { + "uuid": "2433ca83-f58e-47d1-a423-9eeb0494a2de", + "start": { + "$date": "2021-06-09T05:34:20.000Z" + }, + "end": { + "$date": "2021-06-09T06:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8eba5099-97cb-4355-8344-22f26ca9586d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T04:50:27.000Z" + }, + "end": { + "$date": "2021-06-09T15:40:42.000Z" + }, + "events": [ + { + "uuid": "ec3c6c1f-ac44-4654-822e-ed3698e4ea7b", + "start": { + "$date": "2021-06-09T04:50:27.000Z" + }, + "end": { + "$date": "2021-06-09T05:01:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2c9c1910-16fd-4397-ae89-0d0d86acc262", + "start": { + "$date": "2021-06-09T05:01:27.000Z" + }, + "end": { + "$date": "2021-06-09T14:28:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc672a0d-fa6d-4b42-927e-c479b438d776", + "start": { + "$date": "2021-06-09T14:28:27.000Z" + }, + "end": { + "$date": "2021-06-09T14:31:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d3c42af-a50c-4944-b077-688fe3d8ff4f", + "start": { + "$date": "2021-06-09T14:31:27.000Z" + }, + "end": { + "$date": "2021-06-09T14:50:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "724a5790-76de-4fa3-9e76-96f2d74c6551", + "start": { + "$date": "2021-06-09T14:50:27.000Z" + }, + "end": { + "$date": "2021-06-09T15:02:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "933ea09e-c5ba-4431-953f-da9f88329b82", + "start": { + "$date": "2021-06-09T15:02:27.000Z" + }, + "end": { + "$date": "2021-06-09T15:05:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "37166f5e-ad11-4e70-943d-fdfe8e7095d1", + "start": { + "$date": "2021-06-09T15:05:27.000Z" + }, + "end": { + "$date": "2021-06-09T15:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "03dcc77f-7174-4f2d-b5a2-1cfd81d93428", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-09T04:53:16.000Z" + }, + "end": { + "$date": "2021-06-09T06:14:48.000Z" + }, + "events": [ + { + "uuid": "e43857c0-c18a-469d-b04f-abbd35ca770d", + "start": { + "$date": "2021-06-09T04:53:16.000Z" + }, + "end": { + "$date": "2021-06-09T06:14:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "a1febf69-998e-4dbd-b0d3-8704f578f4fc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-09T05:00:11.000Z" + }, + "end": { + "$date": "2021-06-09T05:48:26.000Z" + }, + "events": [ + { + "uuid": "cd65ae49-28ec-406d-bfbb-305aa1201248", + "start": { + "$date": "2021-06-09T05:00:11.000Z" + }, + "end": { + "$date": "2021-06-09T05:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3ffbd306-a764-496b-a3d4-0210cb53e156", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T05:13:17.000Z" + }, + "end": { + "$date": "2021-06-09T06:42:42.000Z" + }, + "events": [ + { + "uuid": "1e2bd3cb-0543-4b06-b447-9ca4f2418f46", + "start": { + "$date": "2021-06-09T05:13:17.000Z" + }, + "end": { + "$date": "2021-06-09T06:42:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5aab3c63-f95e-4e45-8ddb-ad8e7b779f73", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-09T07:26:55.000Z" + }, + "end": { + "$date": "2021-06-09T08:03:52.000Z" + }, + "events": [ + { + "uuid": "a62cb54c-65b4-493e-bf5e-e86de894692d", + "start": { + "$date": "2021-06-09T07:26:55.000Z" + }, + "end": { + "$date": "2021-06-09T08:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", + "uuid": "ae7dfcdf-c8b2-4c47-9f35-ea38e6169e8b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T08:13:12.000Z" + }, + "end": { + "$date": "2021-06-09T08:14:18.000Z" + }, + "events": [ + { + "uuid": "c8721faf-3227-4706-b174-f742502713ce", + "start": { + "$date": "2021-06-09T08:13:12.000Z" + }, + "end": { + "$date": "2021-06-09T08:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "3a09d20d-fcac-4602-ab66-987b2a63d048", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-09T14:58:38.000Z" + }, + "end": { + "$date": "2021-06-09T15:00:21.000Z" + }, + "events": [ + { + "uuid": "04c05c55-de67-43a1-82cc-a8fce25dcc9b", + "start": { + "$date": "2021-06-09T14:58:38.000Z" + }, + "end": { + "$date": "2021-06-09T15:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a25fbe5-0ff8-473f-a852-92ba9c21e914", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T16:52:45.000Z" + }, + "end": { + "$date": "2021-06-09T17:17:24.000Z" + }, + "events": [ + { + "uuid": "d7fc6c91-752f-406c-bc22-367de56803a5", + "start": { + "$date": "2021-06-09T16:52:45.000Z" + }, + "end": { + "$date": "2021-06-09T17:17:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20e38d2c-80ff-4b44-936a-3e97ea625860", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T18:45:19.000Z" + }, + "end": { + "$date": "2021-06-09T18:54:43.000Z" + }, + "events": [ + { + "uuid": "49ada9bf-6da3-470f-856b-0e2ca4c980be", + "start": { + "$date": "2021-06-09T18:45:19.000Z" + }, + "end": { + "$date": "2021-06-09T18:54:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50858f52-0114-4f38-8d29-eb4a2d490d60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-09T18:59:20.000Z" + }, + "end": { + "$date": "2021-06-09T19:18:49.000Z" + }, + "events": [ + { + "uuid": "8a744264-be26-4523-aaec-e69722bf160f", + "start": { + "$date": "2021-06-09T18:59:20.000Z" + }, + "end": { + "$date": "2021-06-09T19:18:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "796796c3-1659-4cbe-a3e0-771e0703108e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T19:30:20.000Z" + }, + "end": { + "$date": "2021-06-09T19:34:48.000Z" + }, + "events": [ + { + "uuid": "32220a40-a504-4503-865e-9cbf7f50d99b", + "start": { + "$date": "2021-06-09T19:30:20.000Z" + }, + "end": { + "$date": "2021-06-09T19:34:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0cc07b09-66ca-4727-b3a9-f31a3b4c538d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-09T21:10:38.000Z" + }, + "end": { + "$date": "2021-06-10T00:24:31.000Z" + }, + "events": [ + { + "uuid": "bd751249-d432-46c2-a09a-a2729ed76511", + "start": { + "$date": "2021-06-09T21:10:38.000Z" + }, + "end": { + "$date": "2021-06-10T00:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b065494c-9abe-47af-84ed-462f4728ff03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-09T20:38:10.000Z" + }, + "end": { + "$date": "2021-06-09T21:16:21.000Z" + }, + "events": [ + { + "uuid": "19a845c4-57fc-4b5e-85c8-700ff8ca2375", + "start": { + "$date": "2021-06-09T20:38:10.000Z" + }, + "end": { + "$date": "2021-06-09T21:16:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e0b30622-c954-4f82-913a-a30da80c6a7e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-09T20:58:01.000Z" + }, + "end": { + "$date": "2021-06-09T23:57:43.000Z" + }, + "events": [ + { + "uuid": "e1db73c8-9525-48f7-8b09-db91f0378c17", + "start": { + "$date": "2021-06-09T20:58:01.000Z" + }, + "end": { + "$date": "2021-06-09T23:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "58258ff5-1d69-4e27-9358-b837454f6c0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-09T21:31:41.000Z" + }, + "end": { + "$date": "2021-06-10T05:12:53.000Z" + }, + "events": [ + { + "uuid": "0eb1b643-0498-4187-8913-364f6c99f9f3", + "start": { + "$date": "2021-06-09T21:31:41.000Z" + }, + "end": { + "$date": "2021-06-10T00:43:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08b42a7b-1028-499c-8b58-b3d67887d620", + "start": { + "$date": "2021-06-10T00:43:41.000Z" + }, + "end": { + "$date": "2021-06-10T00:50:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f3ae0b6-c6fc-409e-9d89-2a53a5d02e0e", + "start": { + "$date": "2021-06-10T00:50:41.000Z" + }, + "end": { + "$date": "2021-06-10T01:25:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3670b6a0-2172-4bd2-8649-4663b29e629f", + "start": { + "$date": "2021-06-10T01:25:41.000Z" + }, + "end": { + "$date": "2021-06-10T01:30:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "526e2785-6cea-480d-a244-b0235c925984", + "start": { + "$date": "2021-06-10T01:30:41.000Z" + }, + "end": { + "$date": "2021-06-10T05:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b7893bda-ca9d-490c-9c68-5b424a262efa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T22:07:45.000Z" + }, + "end": { + "$date": "2021-06-09T22:32:56.000Z" + }, + "events": [ + { + "uuid": "69d9192d-08af-486d-8361-b472adc9cbb8", + "start": { + "$date": "2021-06-09T22:07:45.000Z" + }, + "end": { + "$date": "2021-06-09T22:32:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "a2c0009d-4f0c-4db2-9703-1cd25426b05d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T22:36:37.000Z" + }, + "end": { + "$date": "2021-06-09T22:54:23.000Z" + }, + "events": [ + { + "uuid": "14387887-517a-435a-ae65-c6ab8eef8b23", + "start": { + "$date": "2021-06-09T22:36:37.000Z" + }, + "end": { + "$date": "2021-06-09T22:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a6767e18-bd9d-4c64-8ec7-a12b4d118267", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T22:55:04.000Z" + }, + "end": { + "$date": "2021-06-09T23:07:19.000Z" + }, + "events": [ + { + "uuid": "7c6e9495-5894-4b9f-8bb5-0d44072c3987", + "start": { + "$date": "2021-06-09T22:55:04.000Z" + }, + "end": { + "$date": "2021-06-09T23:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "b984c78b-bc6a-4ce4-82ec-42fb1e7d8626", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T23:12:30.000Z" + }, + "end": { + "$date": "2021-06-09T23:56:05.000Z" + }, + "events": [ + { + "uuid": "5629f80c-881f-4b4f-8033-cdb9fa27adb3", + "start": { + "$date": "2021-06-09T23:12:30.000Z" + }, + "end": { + "$date": "2021-06-09T23:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "378eb1cc-90c3-4f20-92a3-f04d4c753693", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-09T23:59:36.000Z" + }, + "end": { + "$date": "2021-06-10T00:15:36.000Z" + }, + "events": [ + { + "uuid": "7d594252-5945-4ad8-b6cf-a475f5de1743", + "start": { + "$date": "2021-06-09T23:59:36.000Z" + }, + "end": { + "$date": "2021-06-10T00:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd596502-7984-4237-bde7-aa15d1a4615c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T00:43:41.000Z" + }, + "end": { + "$date": "2021-06-10T00:56:15.000Z" + }, + "events": [ + { + "uuid": "fa8f413d-f678-4124-8676-461490551f2b", + "start": { + "$date": "2021-06-10T00:43:41.000Z" + }, + "end": { + "$date": "2021-06-10T00:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "9f8d3ddc-c659-48b3-93e0-a3c7f40361e6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T00:24:33.000Z" + }, + "end": { + "$date": "2021-06-10T00:42:24.000Z" + }, + "events": [ + { + "uuid": "8f7cc2bf-a724-42b7-bea8-e08bea764e6f", + "start": { + "$date": "2021-06-10T00:24:33.000Z" + }, + "end": { + "$date": "2021-06-10T00:42:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da8adb3c-565c-442d-b0a0-49b224c8e3b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T00:43:57.000Z" + }, + "end": { + "$date": "2021-06-10T00:56:12.000Z" + }, + "events": [ + { + "uuid": "7b52429e-c2d0-48bd-83d5-f0c5a6204e00", + "start": { + "$date": "2021-06-10T00:43:57.000Z" + }, + "end": { + "$date": "2021-06-10T00:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f91906b0-465f-48a3-934c-895a0bc2c5f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T00:42:44.000Z" + }, + "end": { + "$date": "2021-06-10T00:54:45.000Z" + }, + "events": [ + { + "uuid": "3c0d46d8-92cd-4138-b182-79e5e4b6c72a", + "start": { + "$date": "2021-06-10T00:42:44.000Z" + }, + "end": { + "$date": "2021-06-10T00:54:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7aa33806-1b9c-442e-936d-9c29c86950e0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T01:02:12.000Z" + }, + "end": { + "$date": "2021-06-10T01:18:22.000Z" + }, + "events": [ + { + "uuid": "004870a4-9941-44a6-bc59-4d8ec1a98e01", + "start": { + "$date": "2021-06-10T01:02:12.000Z" + }, + "end": { + "$date": "2021-06-10T01:18:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "a06e2920-741c-4ee7-9659-be5bf7a25377", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T00:56:46.000Z" + }, + "end": { + "$date": "2021-06-10T01:37:02.000Z" + }, + "events": [ + { + "uuid": "3024a9b8-1748-4f9d-b975-c523246f318e", + "start": { + "$date": "2021-06-10T00:56:46.000Z" + }, + "end": { + "$date": "2021-06-10T01:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2dbb1a4-fa03-4029-b610-9ba218f11751", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T01:02:48.000Z" + }, + "end": { + "$date": "2021-06-10T01:18:08.000Z" + }, + "events": [ + { + "uuid": "1ff03dcc-7627-4865-ba86-381e34b3ad83", + "start": { + "$date": "2021-06-10T01:02:48.000Z" + }, + "end": { + "$date": "2021-06-10T01:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a82d1c83-307f-4c20-86ef-18236a258f93", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-10T01:14:33.000Z" + }, + "end": { + "$date": "2021-06-10T01:51:35.000Z" + }, + "events": [ + { + "uuid": "4d00d22d-fb67-4710-852f-0b9939d2c9e5", + "start": { + "$date": "2021-06-10T01:14:33.000Z" + }, + "end": { + "$date": "2021-06-10T01:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "091bb7ef-38b8-4801-88df-f6c5730ad673", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T01:19:28.000Z" + }, + "end": { + "$date": "2021-06-10T01:22:46.000Z" + }, + "events": [ + { + "uuid": "11c76b40-fc43-420b-89c7-5c480430dd3e", + "start": { + "$date": "2021-06-10T01:19:28.000Z" + }, + "end": { + "$date": "2021-06-10T01:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", + "uuid": "a5b23e03-06a9-4bca-8642-aae872fc308e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T01:23:03.000Z" + }, + "end": { + "$date": "2021-06-10T02:11:09.000Z" + }, + "events": [ + { + "uuid": "f0bf8182-60dc-4884-8fc0-f034bbf064e8", + "start": { + "$date": "2021-06-10T01:23:03.000Z" + }, + "end": { + "$date": "2021-06-10T02:11:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9e48e629-daf6-4260-bcbd-fd88c3996701", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-10T01:36:50.000Z" + }, + "end": { + "$date": "2021-06-10T03:52:05.000Z" + }, + "events": [ + { + "uuid": "9f4a7dc5-6c68-4de9-94e8-c5887a907ec9", + "start": { + "$date": "2021-06-10T01:36:50.000Z" + }, + "end": { + "$date": "2021-06-10T03:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "12573884-088a-4e72-8148-5ef69f2563f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T01:37:07.000Z" + }, + "end": { + "$date": "2021-06-10T03:52:05.000Z" + }, + "events": [ + { + "uuid": "325507f5-b27f-46e6-acee-5db7bc97c7ef", + "start": { + "$date": "2021-06-10T01:37:07.000Z" + }, + "end": { + "$date": "2021-06-10T02:30:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "403a10ec-95bb-4751-9fd8-fea5c2be94fc", + "start": { + "$date": "2021-06-10T02:30:07.000Z" + }, + "end": { + "$date": "2021-06-10T02:35:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb128b3d-3db9-4f26-9afc-6bfb4df4ae16", + "start": { + "$date": "2021-06-10T02:35:07.000Z" + }, + "end": { + "$date": "2021-06-10T02:45:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19ddee20-4364-4324-9d33-c502796a081c", + "start": { + "$date": "2021-06-10T02:45:07.000Z" + }, + "end": { + "$date": "2021-06-10T02:50:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3c3d98dd-7e9d-4df1-a63d-36b21a43f5b3", + "start": { + "$date": "2021-06-10T02:50:07.000Z" + }, + "end": { + "$date": "2021-06-10T03:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "2e70d442-9cde-4bc7-8487-212e16b68741", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T02:14:26.000Z" + }, + "end": { + "$date": "2021-06-10T02:18:00.000Z" + }, + "events": [ + { + "uuid": "f78cfc1a-9891-4575-97b5-d9402bae57bd", + "start": { + "$date": "2021-06-10T02:14:26.000Z" + }, + "end": { + "$date": "2021-06-10T02:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1fc4b4de-bf81-40be-be54-107f0048bec7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T02:18:14.000Z" + }, + "end": { + "$date": "2021-06-10T03:41:47.000Z" + }, + "events": [ + { + "uuid": "3e2e2844-07f0-4489-96e6-00bba283b5dd", + "start": { + "$date": "2021-06-10T02:18:14.000Z" + }, + "end": { + "$date": "2021-06-10T03:41:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", + "uuid": "322fd02b-f1a8-4482-9d0d-71d37feeef44", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T02:20:12.000Z" + }, + "end": { + "$date": "2021-06-10T02:43:59.000Z" + }, + "events": [ + { + "uuid": "fdb5982a-ddd5-4165-9ed6-6d0531355b47", + "start": { + "$date": "2021-06-10T02:20:12.000Z" + }, + "end": { + "$date": "2021-06-10T02:43:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", + "uuid": "6b1c486a-abdc-4e08-a510-3eebfff3b972", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-10T02:37:56.000Z" + }, + "end": { + "$date": "2021-06-10T02:49:48.000Z" + }, + "events": [ + { + "uuid": "0d3c958e-89cd-4594-a3c6-e43fdc75f68c", + "start": { + "$date": "2021-06-10T02:37:56.000Z" + }, + "end": { + "$date": "2021-06-10T02:49:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36987121-8695-4861-8e24-562c81371f29", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T02:41:46.000Z" + }, + "end": { + "$date": "2021-06-10T02:45:06.000Z" + }, + "events": [ + { + "uuid": "8584f298-ed90-4eda-bcbd-1e9e10c3b0eb", + "start": { + "$date": "2021-06-10T02:41:46.000Z" + }, + "end": { + "$date": "2021-06-10T02:45:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "397b560d-3f9b-4491-ad87-a986663857a1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T02:55:01.000Z" + }, + "end": { + "$date": "2021-06-10T03:14:50.000Z" + }, + "events": [ + { + "uuid": "17314cb2-2cb8-4fc3-b23e-871ce7c2e2d6", + "start": { + "$date": "2021-06-10T02:55:01.000Z" + }, + "end": { + "$date": "2021-06-10T03:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", + "uuid": "d8cf20ef-e031-41f9-a92d-316c67ca1c9a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-10T02:50:28.000Z" + }, + "end": { + "$date": "2021-06-10T03:08:35.000Z" + }, + "events": [ + { + "uuid": "7b3bf428-f532-4bad-aca5-a55e5da1ec00", + "start": { + "$date": "2021-06-10T02:50:28.000Z" + }, + "end": { + "$date": "2021-06-10T03:08:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9317f81e-429a-4b50-8b5b-5cf41edf1826", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T02:54:38.000Z" + }, + "end": { + "$date": "2021-06-10T03:14:59.000Z" + }, + "events": [ + { + "uuid": "d2eb71f9-f8a1-45f9-a0f6-4f6f4fd82894", + "start": { + "$date": "2021-06-10T02:54:38.000Z" + }, + "end": { + "$date": "2021-06-10T03:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", + "uuid": "437288a7-fb9f-4c1c-bc92-77c945875cc7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-10T03:08:50.000Z" + }, + "end": { + "$date": "2021-06-10T04:29:53.000Z" + }, + "events": [ + { + "uuid": "9ff54ae2-b587-4481-a976-78e4376e64cf", + "start": { + "$date": "2021-06-10T03:08:50.000Z" + }, + "end": { + "$date": "2021-06-10T04:29:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "050c8be8-6d65-422a-ac23-a593c5287961", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T03:20:27.000Z" + }, + "end": { + "$date": "2021-06-10T03:39:52.000Z" + }, + "events": [ + { + "uuid": "abd272a4-674e-43ae-b87b-4757bde64bc9", + "start": { + "$date": "2021-06-10T03:20:27.000Z" + }, + "end": { + "$date": "2021-06-10T03:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb867744-f8f5-4e28-87ad-6ce7392a5a26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T03:19:49.000Z" + }, + "end": { + "$date": "2021-06-10T03:39:49.000Z" + }, + "events": [ + { + "uuid": "a9d707fb-9869-4896-b638-34f0d331720b", + "start": { + "$date": "2021-06-10T03:19:49.000Z" + }, + "end": { + "$date": "2021-06-10T03:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0df2bd1-b4a3-4ac4-8f83-79220b8fd635", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-10T03:34:29.000Z" + }, + "end": { + "$date": "2021-06-10T04:16:28.000Z" + }, + "events": [ + { + "uuid": "c1b008b4-3306-4386-934d-349af51e6861", + "start": { + "$date": "2021-06-10T03:34:29.000Z" + }, + "end": { + "$date": "2021-06-10T04:16:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e856045-1d49-4192-9fb2-5d18eb55d44a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T03:50:29.000Z" + }, + "end": { + "$date": "2021-06-10T04:05:34.000Z" + }, + "events": [ + { + "uuid": "53c822d7-d061-4f44-94ee-65ef41a27e34", + "start": { + "$date": "2021-06-10T03:50:29.000Z" + }, + "end": { + "$date": "2021-06-10T04:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6563a221-f187-4dfc-b603-37559d7b37b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T04:05:22.000Z" + }, + "end": { + "$date": "2021-06-10T04:06:17.000Z" + }, + "events": [ + { + "uuid": "fba1a5b5-7338-4239-9f13-6e8899630913", + "start": { + "$date": "2021-06-10T04:05:22.000Z" + }, + "end": { + "$date": "2021-06-10T04:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f45af10c-6936-4da0-9690-a68ca6ee91d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T03:50:36.000Z" + }, + "end": { + "$date": "2021-06-10T04:05:38.000Z" + }, + "events": [ + { + "uuid": "29cadedb-40ef-4117-a3bb-b5ffb305d468", + "start": { + "$date": "2021-06-10T03:50:36.000Z" + }, + "end": { + "$date": "2021-06-10T04:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "2b7aa19f-d044-4140-9c2d-07e0be6bd554", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T03:53:01.000Z" + }, + "end": { + "$date": "2021-06-10T06:21:48.000Z" + }, + "events": [ + { + "uuid": "27f19659-ccaa-4bc6-bb35-70a46106ed9b", + "start": { + "$date": "2021-06-10T03:53:01.000Z" + }, + "end": { + "$date": "2021-06-10T06:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6761ea11-5458-488c-bff5-6d84400f1621", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T04:09:41.000Z" + }, + "end": { + "$date": "2021-06-10T04:27:50.000Z" + }, + "events": [ + { + "uuid": "0c42b508-718a-4e06-8fcb-49d5e99f89f3", + "start": { + "$date": "2021-06-10T04:09:41.000Z" + }, + "end": { + "$date": "2021-06-10T04:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "649cd702-0087-4be7-8b7e-a97e0ff9f431", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T04:09:48.000Z" + }, + "end": { + "$date": "2021-06-10T04:27:53.000Z" + }, + "events": [ + { + "uuid": "b8d9c145-3b14-4a82-b893-dfb963e1e72a", + "start": { + "$date": "2021-06-10T04:09:48.000Z" + }, + "end": { + "$date": "2021-06-10T04:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80c35e63-c909-410a-81f9-4120a228df98", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T04:09:27.000Z" + }, + "end": { + "$date": "2021-06-10T04:28:04.000Z" + }, + "events": [ + { + "uuid": "27644ef6-155f-4b67-a3f9-884c58802099", + "start": { + "$date": "2021-06-10T04:09:27.000Z" + }, + "end": { + "$date": "2021-06-10T04:28:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", + "uuid": "5c4401e8-c79f-4bed-9645-c24ff518e09c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-10T04:18:42.000Z" + }, + "end": { + "$date": "2021-06-10T04:29:38.000Z" + }, + "events": [ + { + "uuid": "6a054904-dd2a-4dcd-880f-24e584e4d842", + "start": { + "$date": "2021-06-10T04:18:42.000Z" + }, + "end": { + "$date": "2021-06-10T04:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b03b658d-e0fe-4ae6-9b96-3e52acace2c1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T04:32:12.000Z" + }, + "end": { + "$date": "2021-06-10T04:48:36.000Z" + }, + "events": [ + { + "uuid": "e17315b4-17fe-4f38-b4d0-d19f0248f3d4", + "start": { + "$date": "2021-06-10T04:32:12.000Z" + }, + "end": { + "$date": "2021-06-10T04:48:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92abff3a-9ede-4aa7-95a6-4aeb200266c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T04:32:13.000Z" + }, + "end": { + "$date": "2021-06-10T04:48:23.000Z" + }, + "events": [ + { + "uuid": "521e3adf-e09c-4749-b599-e5922e6d71c9", + "start": { + "$date": "2021-06-10T04:32:13.000Z" + }, + "end": { + "$date": "2021-06-10T04:48:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "960ee3ae-1575-4f75-aa1f-1f074a45da2c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T04:31:55.000Z" + }, + "end": { + "$date": "2021-06-10T04:48:34.000Z" + }, + "events": [ + { + "uuid": "4962ea21-2146-4d38-8ec9-bcc4809b666f", + "start": { + "$date": "2021-06-10T04:31:55.000Z" + }, + "end": { + "$date": "2021-06-10T04:48:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "226711b4-edc6-4c38-bab4-1be010e701e2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-10T05:09:20.000Z" + }, + "end": { + "$date": "2021-06-10T05:10:07.000Z" + }, + "events": [ + { + "uuid": "ebae749a-cffa-4ffe-b07e-f8c03609be7f", + "start": { + "$date": "2021-06-10T05:09:20.000Z" + }, + "end": { + "$date": "2021-06-10T05:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b0f46871-7511-411e-a341-e2eb690e7182", + "uuid": "4b47b26d-15b3-48e1-9c91-6e76093e86aa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-10T04:30:07.000Z" + }, + "end": { + "$date": "2021-06-10T05:13:18.000Z" + }, + "events": [ + { + "uuid": "f93920d5-31f8-4171-a651-2833abb86c4a", + "start": { + "$date": "2021-06-10T04:30:07.000Z" + }, + "end": { + "$date": "2021-06-10T05:13:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5460a844-aca3-4a48-aa93-7a4cd0508a93", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T04:52:23.000Z" + }, + "end": { + "$date": "2021-06-10T05:09:13.000Z" + }, + "events": [ + { + "uuid": "5c75e95e-36f4-4113-8868-cec850c57635", + "start": { + "$date": "2021-06-10T04:52:23.000Z" + }, + "end": { + "$date": "2021-06-10T05:09:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e93bf637-03d1-4828-85b7-fd4a70d08f81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T04:52:30.000Z" + }, + "end": { + "$date": "2021-06-10T05:09:26.000Z" + }, + "events": [ + { + "uuid": "d4730339-568c-4833-a45b-002b2bb9b58b", + "start": { + "$date": "2021-06-10T04:52:30.000Z" + }, + "end": { + "$date": "2021-06-10T05:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39654c46-c7d5-4400-9638-b9705e9e1120", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-10T04:52:38.000Z" + }, + "end": { + "$date": "2021-06-10T05:09:17.000Z" + }, + "events": [ + { + "uuid": "576ee08c-e59b-4a7e-8471-b4f4a7860d2e", + "start": { + "$date": "2021-06-10T04:52:38.000Z" + }, + "end": { + "$date": "2021-06-10T05:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c168130f-593a-4315-99ea-bba25a548cca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T05:10:21.000Z" + }, + "end": { + "$date": "2021-06-10T05:55:40.000Z" + }, + "events": [ + { + "uuid": "013b5e6a-f062-4f5f-bcde-d6e98b7c200d", + "start": { + "$date": "2021-06-10T05:10:21.000Z" + }, + "end": { + "$date": "2021-06-10T05:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f466d0bf-ffe9-4833-9eb3-479d8728dc46", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-10T05:10:50.000Z" + }, + "end": { + "$date": "2021-06-10T05:23:01.000Z" + }, + "events": [ + { + "uuid": "65a6bc57-950a-4d2d-b8d5-e785ca316611", + "start": { + "$date": "2021-06-10T05:10:50.000Z" + }, + "end": { + "$date": "2021-06-10T05:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8de9a021-28f8-4e12-b2b0-9733f54a7e29", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-10T05:13:10.000Z" + }, + "end": { + "$date": "2021-06-10T05:15:15.000Z" + }, + "events": [ + { + "uuid": "a5f62204-2240-42aa-8eee-a0b58d209e63", + "start": { + "$date": "2021-06-10T05:13:10.000Z" + }, + "end": { + "$date": "2021-06-10T05:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "872bac10-a178-4c3c-8e37-311ce62587ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-10T05:13:59.000Z" + }, + "end": { + "$date": "2021-06-10T07:08:03.000Z" + }, + "events": [ + { + "uuid": "b7bf3097-bb36-468f-8ce2-efa020193afb", + "start": { + "$date": "2021-06-10T05:13:59.000Z" + }, + "end": { + "$date": "2021-06-10T07:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "37e19695-df01-4ea1-a186-20f2c7eb3f23", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-10T05:14:07.000Z" + }, + "end": { + "$date": "2021-06-10T05:23:03.000Z" + }, + "events": [ + { + "uuid": "acf25683-0f0a-452d-88b0-7ae68138e96d", + "start": { + "$date": "2021-06-10T05:14:07.000Z" + }, + "end": { + "$date": "2021-06-10T05:23:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8c90fc3-5d18-4328-bd8c-60b2101a8f48", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-10T05:19:36.000Z" + }, + "end": { + "$date": "2021-06-10T05:56:11.000Z" + }, + "events": [ + { + "uuid": "33e3e0f7-e20a-4c87-bd4a-5a1911a8c143", + "start": { + "$date": "2021-06-10T05:19:36.000Z" + }, + "end": { + "$date": "2021-06-10T05:56:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "39243a62-d0ce-4a38-bc02-bb985a126e2f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-10T05:23:22.000Z" + }, + "end": { + "$date": "2021-06-10T08:19:35.000Z" + }, + "events": [ + { + "uuid": "3b1346cf-145f-4a76-8669-3df88d8719b8", + "start": { + "$date": "2021-06-10T05:23:22.000Z" + }, + "end": { + "$date": "2021-06-10T08:18:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4670eddf-b673-4bfd-9bce-69d136705ed6", + "start": { + "$date": "2021-06-10T08:18:22.000Z" + }, + "end": { + "$date": "2021-06-10T08:19:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8ea3d1c-87cb-4fd3-aed9-b968b1715733", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-10T05:23:23.000Z" + }, + "end": { + "$date": "2021-06-10T19:57:17.000Z" + }, + "events": [ + { + "uuid": "cbae2e05-ca2f-42aa-8519-5962f2c87534", + "start": { + "$date": "2021-06-10T05:23:23.000Z" + }, + "end": { + "$date": "2021-06-10T08:35:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56840b20-1148-41c1-bc6b-39a9d35d2c45", + "start": { + "$date": "2021-06-10T08:35:23.000Z" + }, + "end": { + "$date": "2021-06-10T10:00:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0be69560-d918-4c4f-953f-f8a091c41050", + "start": { + "$date": "2021-06-10T10:00:23.000Z" + }, + "end": { + "$date": "2021-06-10T10:10:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e89009aa-1dfa-4b60-95d7-5ea7c04d494b", + "start": { + "$date": "2021-06-10T10:10:23.000Z" + }, + "end": { + "$date": "2021-06-10T17:00:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4079ec1e-db14-4163-acae-af9eb9922fda", + "start": { + "$date": "2021-06-10T17:00:23.000Z" + }, + "end": { + "$date": "2021-06-10T17:04:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a651985-6ac8-4d59-b427-29d9ff27c0f5", + "start": { + "$date": "2021-06-10T17:04:23.000Z" + }, + "end": { + "$date": "2021-06-10T18:58:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7a3e022-1394-4b36-a45b-adba252e7349", + "start": { + "$date": "2021-06-10T18:58:23.000Z" + }, + "end": { + "$date": "2021-06-10T19:01:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d632cce1-d95f-4378-8bd3-7a7893fab99a", + "start": { + "$date": "2021-06-10T19:01:23.000Z" + }, + "end": { + "$date": "2021-06-10T19:04:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8af1b75d-ba7d-4793-b26f-136df5425029", + "start": { + "$date": "2021-06-10T19:04:23.000Z" + }, + "end": { + "$date": "2021-06-10T19:57:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4f460a9d-47e6-440d-b7e4-c5f5f068841a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-10T14:41:40.000Z" + }, + "end": { + "$date": "2021-06-10T15:33:28.000Z" + }, + "events": [ + { + "uuid": "a0c0fe02-50be-42dc-b4b5-285f36f89ff5", + "start": { + "$date": "2021-06-10T14:41:40.000Z" + }, + "end": { + "$date": "2021-06-10T15:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "56587e6f-5dc5-4c2d-b824-f40f41de00b9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-10T15:56:07.000Z" + }, + "end": { + "$date": "2021-06-10T16:11:49.000Z" + }, + "events": [ + { + "uuid": "fd8d0c57-1bb7-4264-b517-209532b34758", + "start": { + "$date": "2021-06-10T15:56:07.000Z" + }, + "end": { + "$date": "2021-06-10T16:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fc5af23-059b-4c5f-a88b-3ac9625242a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T16:01:55.000Z" + }, + "end": { + "$date": "2021-06-10T16:36:32.000Z" + }, + "events": [ + { + "uuid": "939346bc-1447-49e5-b0ac-7f58b8d19c69", + "start": { + "$date": "2021-06-10T16:01:55.000Z" + }, + "end": { + "$date": "2021-06-10T16:36:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58015e95-d5b6-4a02-98e5-ba0bdc4198ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T16:46:08.000Z" + }, + "end": { + "$date": "2021-06-10T17:16:40.000Z" + }, + "events": [ + { + "uuid": "01867abe-28b3-4b1b-9a49-59c276277a29", + "start": { + "$date": "2021-06-10T16:46:08.000Z" + }, + "end": { + "$date": "2021-06-10T17:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "e6990de8-5e66-41b2-8334-05dff5581458", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T17:18:00.000Z" + }, + "end": { + "$date": "2021-06-10T18:22:11.000Z" + }, + "events": [ + { + "uuid": "fb8b5ac0-a7f4-413a-9ee8-4998d5b0eb47", + "start": { + "$date": "2021-06-10T17:18:00.000Z" + }, + "end": { + "$date": "2021-06-10T18:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7eaa9a16-8e7b-478b-a789-8b9b5420134a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T19:01:07.000Z" + }, + "end": { + "$date": "2021-06-10T19:19:31.000Z" + }, + "events": [ + { + "uuid": "4a6f311f-10a7-4a96-b77b-3c9e238b955c", + "start": { + "$date": "2021-06-10T19:01:07.000Z" + }, + "end": { + "$date": "2021-06-10T19:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba9be85b-4d52-4808-9262-65089d1a0834", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T19:10:23.000Z" + }, + "end": { + "$date": "2021-06-10T19:12:28.000Z" + }, + "events": [ + { + "uuid": "871d9127-7079-487a-8c90-ae89dd8c5973", + "start": { + "$date": "2021-06-10T19:10:23.000Z" + }, + "end": { + "$date": "2021-06-10T19:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6cd676a7-f304-4d75-bb74-bea875bdbcb5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T19:12:58.000Z" + }, + "end": { + "$date": "2021-06-10T19:14:08.000Z" + }, + "events": [ + { + "uuid": "bf59f4b2-c01c-472a-befe-e2206ed46e9d", + "start": { + "$date": "2021-06-10T19:12:58.000Z" + }, + "end": { + "$date": "2021-06-10T19:14:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8c35d36c-f01a-4954-8061-4de012dafa35", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T19:14:38.000Z" + }, + "end": { + "$date": "2021-06-10T19:17:08.000Z" + }, + "events": [ + { + "uuid": "d9079516-fc31-4dd7-8e1c-d4879665f2e2", + "start": { + "$date": "2021-06-10T19:14:38.000Z" + }, + "end": { + "$date": "2021-06-10T19:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "767eb8a5-3547-4944-8d1f-cd4e8b17cd3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T19:25:48.000Z" + }, + "end": { + "$date": "2021-06-10T19:56:12.000Z" + }, + "events": [ + { + "uuid": "39c34e50-f1fa-4e25-972c-f7d5abe2f13b", + "start": { + "$date": "2021-06-10T19:25:48.000Z" + }, + "end": { + "$date": "2021-06-10T19:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbef9a15-7578-4d24-b533-f1ce1f1f6db7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T19:26:39.000Z" + }, + "end": { + "$date": "2021-06-10T19:56:04.000Z" + }, + "events": [ + { + "uuid": "32756d97-3f14-44e1-ad1d-8deffb348ac3", + "start": { + "$date": "2021-06-10T19:26:39.000Z" + }, + "end": { + "$date": "2021-06-10T19:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22cc2132-f788-473e-b1f8-ba7e267e26df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T20:01:55.000Z" + }, + "end": { + "$date": "2021-06-10T20:56:14.000Z" + }, + "events": [ + { + "uuid": "94010e20-7fdd-4045-96f9-f5cb2047b4eb", + "start": { + "$date": "2021-06-10T20:01:55.000Z" + }, + "end": { + "$date": "2021-06-10T20:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3561bdb-3e9b-487d-b770-d686b1b7d51f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T20:02:25.000Z" + }, + "end": { + "$date": "2021-06-10T20:56:05.000Z" + }, + "events": [ + { + "uuid": "b0c220b1-794f-45ff-9d94-ad0a3205b63e", + "start": { + "$date": "2021-06-10T20:02:25.000Z" + }, + "end": { + "$date": "2021-06-10T20:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "65a47f5c-56f2-4355-8b39-8fe2b7f087c5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-10T20:52:01.000Z" + }, + "end": { + "$date": "2021-06-11T01:21:24.000Z" + }, + "events": [ + { + "uuid": "8ae0784c-1bfc-4da1-b729-66c646273095", + "start": { + "$date": "2021-06-10T20:52:01.000Z" + }, + "end": { + "$date": "2021-06-10T21:55:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e08fbb90-6c3a-40b0-82f4-eb4548526404", + "start": { + "$date": "2021-06-10T21:55:01.000Z" + }, + "end": { + "$date": "2021-06-10T22:00:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "807699ce-a773-4561-bd15-c9ab579169e2", + "start": { + "$date": "2021-06-10T22:00:01.000Z" + }, + "end": { + "$date": "2021-06-11T01:21:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "659539cb-a459-43c0-b317-d7a862c4eab7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T21:22:05.000Z" + }, + "end": { + "$date": "2021-06-10T21:46:43.000Z" + }, + "events": [ + { + "uuid": "b8667345-aa29-46fd-b4a2-fa79fcd5bf89", + "start": { + "$date": "2021-06-10T21:22:05.000Z" + }, + "end": { + "$date": "2021-06-10T21:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1a7cfa82-290a-461c-9255-a85eedf0aef6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-10T21:43:54.000Z" + }, + "end": { + "$date": "2021-06-10T22:08:06.000Z" + }, + "events": [ + { + "uuid": "0466b3cd-7636-4076-a213-85152c120b5d", + "start": { + "$date": "2021-06-10T21:43:54.000Z" + }, + "end": { + "$date": "2021-06-10T22:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b74265ff-222c-42e6-9df6-faaf023a2e77", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T21:49:51.000Z" + }, + "end": { + "$date": "2021-06-10T22:06:50.000Z" + }, + "events": [ + { + "uuid": "fd0bc22c-d79b-4738-bea7-00bfe4cbc1db", + "start": { + "$date": "2021-06-10T21:49:51.000Z" + }, + "end": { + "$date": "2021-06-10T22:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "3797a651-5514-4bc1-a345-8ee9fde8f202", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-10T21:55:18.000Z" + }, + "end": { + "$date": "2021-06-10T22:33:14.000Z" + }, + "events": [ + { + "uuid": "e0c6109d-f047-426d-a7c3-e4676c327b11", + "start": { + "$date": "2021-06-10T21:55:18.000Z" + }, + "end": { + "$date": "2021-06-10T22:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "320f013b-b870-4cd6-9b03-eee0bbc83608", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-10T22:10:27.000Z" + }, + "end": { + "$date": "2021-06-10T22:30:54.000Z" + }, + "events": [ + { + "uuid": "daeca096-ac3f-42c6-a510-5dec92bbdd0e", + "start": { + "$date": "2021-06-10T22:10:27.000Z" + }, + "end": { + "$date": "2021-06-10T22:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "260e3605-215b-4f82-8df7-7a82d48b4219", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T22:18:03.000Z" + }, + "end": { + "$date": "2021-06-10T22:21:14.000Z" + }, + "events": [ + { + "uuid": "54599727-0564-4a63-a659-6c8e54a39ee9", + "start": { + "$date": "2021-06-10T22:18:03.000Z" + }, + "end": { + "$date": "2021-06-10T22:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "f7b2feec-f62b-45da-9502-4e66fe5577fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T22:21:19.000Z" + }, + "end": { + "$date": "2021-06-10T22:27:30.000Z" + }, + "events": [ + { + "uuid": "1e914d9e-b48a-4ce9-b741-81c7725fbe19", + "start": { + "$date": "2021-06-10T22:21:19.000Z" + }, + "end": { + "$date": "2021-06-10T22:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d3187ec1-7bb3-453f-ae42-5432c8e5df80", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-10T22:27:47.000Z" + }, + "end": { + "$date": "2021-06-10T23:47:54.000Z" + }, + "events": [ + { + "uuid": "f8899edd-8c11-4b47-95b4-3165b4a740d8", + "start": { + "$date": "2021-06-10T22:27:47.000Z" + }, + "end": { + "$date": "2021-06-10T23:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "759a2afc-ab5a-4d07-bdb1-6e163f48969d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T22:28:50.000Z" + }, + "end": { + "$date": "2021-06-10T23:47:53.000Z" + }, + "events": [ + { + "uuid": "3de2ff4b-2c0a-4b02-abc5-e21442509a9a", + "start": { + "$date": "2021-06-10T22:28:50.000Z" + }, + "end": { + "$date": "2021-06-10T23:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "5ad4fffb-3ea1-40d8-ae54-6b791906373c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-10T23:48:33.000Z" + }, + "end": { + "$date": "2021-06-11T05:07:19.000Z" + }, + "events": [ + { + "uuid": "4b9df144-6eaa-420b-85d7-204077adc431", + "start": { + "$date": "2021-06-10T23:48:33.000Z" + }, + "end": { + "$date": "2021-06-11T00:10:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a88208d-9a7c-4a9b-ae7b-a214878bd3ef", + "start": { + "$date": "2021-06-11T00:10:33.000Z" + }, + "end": { + "$date": "2021-06-11T00:15:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e4df610-06a9-49d6-8dc4-fb320653675d", + "start": { + "$date": "2021-06-11T00:15:33.000Z" + }, + "end": { + "$date": "2021-06-11T00:25:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8dc23101-8a9d-4035-b016-08161474e9f6", + "start": { + "$date": "2021-06-11T00:25:33.000Z" + }, + "end": { + "$date": "2021-06-11T01:44:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "183b8cdf-0f49-4514-b023-0a95e568457a", + "start": { + "$date": "2021-06-11T01:44:33.000Z" + }, + "end": { + "$date": "2021-06-11T05:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc178ccd-555c-4fa1-94b4-cfdb14460712", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T00:19:03.000Z" + }, + "end": { + "$date": "2021-06-11T01:03:12.000Z" + }, + "events": [ + { + "uuid": "ec738537-57e7-44b8-af7b-70b99845fb93", + "start": { + "$date": "2021-06-11T00:19:03.000Z" + }, + "end": { + "$date": "2021-06-11T01:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f6aa1ca-8a8e-420a-ad6e-dd8abd21d7c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T01:11:26.000Z" + }, + "end": { + "$date": "2021-06-11T01:28:10.000Z" + }, + "events": [ + { + "uuid": "50eae54e-30e0-4449-9631-73bb6b3b9e13", + "start": { + "$date": "2021-06-11T01:11:26.000Z" + }, + "end": { + "$date": "2021-06-11T01:28:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "999d2a0d-1977-4a25-af4a-660deb54b5d7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T01:12:26.000Z" + }, + "end": { + "$date": "2021-06-11T01:27:56.000Z" + }, + "events": [ + { + "uuid": "7c8c2787-c9ed-4741-85f7-d9b05acd8315", + "start": { + "$date": "2021-06-11T01:12:26.000Z" + }, + "end": { + "$date": "2021-06-11T01:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6b86f2bf-08c4-4cc0-8b92-41c455599655", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-11T01:21:30.000Z" + }, + "end": { + "$date": "2021-06-11T01:37:47.000Z" + }, + "events": [ + { + "uuid": "28dcb752-8aae-4057-84f8-bbcd76504721", + "start": { + "$date": "2021-06-11T01:21:30.000Z" + }, + "end": { + "$date": "2021-06-11T01:37:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "115aae18-d125-49f9-b875-8e3e334b53c9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T01:35:14.000Z" + }, + "end": { + "$date": "2021-06-11T01:55:33.000Z" + }, + "events": [ + { + "uuid": "fb54e3f4-52ab-42ae-b068-885cd640a15e", + "start": { + "$date": "2021-06-11T01:35:14.000Z" + }, + "end": { + "$date": "2021-06-11T01:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0aa19a7e-5eb0-41e5-8df6-9ce79bfed34e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T01:35:11.000Z" + }, + "end": { + "$date": "2021-06-11T01:55:26.000Z" + }, + "events": [ + { + "uuid": "c8904ab1-124f-4b76-aa7c-3b2ab8794315", + "start": { + "$date": "2021-06-11T01:35:11.000Z" + }, + "end": { + "$date": "2021-06-11T01:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcb8cab7-b740-40b4-a290-c1b7e477c818", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T01:35:42.000Z" + }, + "end": { + "$date": "2021-06-11T01:55:22.000Z" + }, + "events": [ + { + "uuid": "cd6ab339-5a85-40c7-a354-05ec6df6b7fd", + "start": { + "$date": "2021-06-11T01:35:42.000Z" + }, + "end": { + "$date": "2021-06-11T01:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cda6d9d3-c057-44ab-93db-7aae019ae1ed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-11T01:45:19.000Z" + }, + "end": { + "$date": "2021-06-11T07:38:25.000Z" + }, + "events": [ + { + "uuid": "bee75ff1-09cb-4cdf-92e3-73e6725f929c", + "start": { + "$date": "2021-06-11T01:45:19.000Z" + }, + "end": { + "$date": "2021-06-11T02:19:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c896eff5-6f08-420c-8ef0-367d9e1416e8", + "start": { + "$date": "2021-06-11T02:19:19.000Z" + }, + "end": { + "$date": "2021-06-11T02:20:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7ba9cba-6801-47b4-a1ff-581f50439699", + "start": { + "$date": "2021-06-11T02:20:19.000Z" + }, + "end": { + "$date": "2021-06-11T02:34:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "82a48c17-f5c4-4d4f-9b51-403c42713d70", + "start": { + "$date": "2021-06-11T02:34:19.000Z" + }, + "end": { + "$date": "2021-06-11T02:39:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41ac6169-6a50-4f95-ab7c-33f644c60662", + "start": { + "$date": "2021-06-11T02:39:19.000Z" + }, + "end": { + "$date": "2021-06-11T07:38:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8a5b0a8-18f4-4602-902f-24e2de105e9a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T01:59:30.000Z" + }, + "end": { + "$date": "2021-06-11T02:16:31.000Z" + }, + "events": [ + { + "uuid": "099e4d51-999c-47db-9040-fa8e8bc0c839", + "start": { + "$date": "2021-06-11T01:59:30.000Z" + }, + "end": { + "$date": "2021-06-11T02:16:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "558660ac-9f2a-4cf1-921f-b74007477098", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T02:01:57.000Z" + }, + "end": { + "$date": "2021-06-11T02:16:27.000Z" + }, + "events": [ + { + "uuid": "e002d822-56fb-4ecf-93cf-a2cee80e425c", + "start": { + "$date": "2021-06-11T02:01:57.000Z" + }, + "end": { + "$date": "2021-06-11T02:16:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb0ef14f-d34e-422b-bd59-b88851eeea65", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T02:00:27.000Z" + }, + "end": { + "$date": "2021-06-11T02:16:22.000Z" + }, + "events": [ + { + "uuid": "ab63823c-5a3b-494d-89be-0a215d2765e8", + "start": { + "$date": "2021-06-11T02:00:27.000Z" + }, + "end": { + "$date": "2021-06-11T02:16:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbfe313a-a3cb-4af9-92cb-432692644415", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T02:29:18.000Z" + }, + "end": { + "$date": "2021-06-11T02:49:45.000Z" + }, + "events": [ + { + "uuid": "ed188bc0-ecd9-4fc5-9c2f-cb5463ce9300", + "start": { + "$date": "2021-06-11T02:29:18.000Z" + }, + "end": { + "$date": "2021-06-11T02:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae9825c5-206e-43f5-bda4-6df634ca6f22", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T02:17:31.000Z" + }, + "end": { + "$date": "2021-06-11T02:20:31.000Z" + }, + "events": [ + { + "uuid": "1d707475-ef62-43d6-a05a-2a40de4c5fec", + "start": { + "$date": "2021-06-11T02:17:31.000Z" + }, + "end": { + "$date": "2021-06-11T02:20:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc89fe34-a122-4bf5-ab5b-813f2f51bab9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T02:17:31.000Z" + }, + "end": { + "$date": "2021-06-11T02:20:32.000Z" + }, + "events": [ + { + "uuid": "84402c89-2784-4a7f-b13d-ce443493dfc4", + "start": { + "$date": "2021-06-11T02:17:31.000Z" + }, + "end": { + "$date": "2021-06-11T02:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc355e3b-3a33-43e1-8fa5-556b305359c1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T02:30:24.000Z" + }, + "end": { + "$date": "2021-06-11T02:49:34.000Z" + }, + "events": [ + { + "uuid": "df3a91c8-8607-4b9a-ad1a-0e2aa5e7fb58", + "start": { + "$date": "2021-06-11T02:30:24.000Z" + }, + "end": { + "$date": "2021-06-11T02:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2538d4d0-db1c-471d-ab73-d36405854a2f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T02:29:14.000Z" + }, + "end": { + "$date": "2021-06-11T02:49:40.000Z" + }, + "events": [ + { + "uuid": "bd456270-9acc-40ca-9d8a-7467067165be", + "start": { + "$date": "2021-06-11T02:29:14.000Z" + }, + "end": { + "$date": "2021-06-11T02:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60e8cefb-40dd-4910-8349-91f1d36d448d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T02:55:00.000Z" + }, + "end": { + "$date": "2021-06-11T03:15:15.000Z" + }, + "events": [ + { + "uuid": "413560bb-f54d-4d96-bd5c-630272626b20", + "start": { + "$date": "2021-06-11T02:55:00.000Z" + }, + "end": { + "$date": "2021-06-11T03:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99badda8-a967-433c-be1b-71dc5536b0c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T02:55:55.000Z" + }, + "end": { + "$date": "2021-06-11T03:15:05.000Z" + }, + "events": [ + { + "uuid": "af9ef9cf-3f7a-408e-ae54-d0bb8bc124a8", + "start": { + "$date": "2021-06-11T02:55:55.000Z" + }, + "end": { + "$date": "2021-06-11T03:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b4b742b-198c-44d5-a953-939f24f0ef97", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T02:54:56.000Z" + }, + "end": { + "$date": "2021-06-11T03:15:07.000Z" + }, + "events": [ + { + "uuid": "933d5619-d33e-4071-8623-4b4fcf5c86f2", + "start": { + "$date": "2021-06-11T02:54:56.000Z" + }, + "end": { + "$date": "2021-06-11T03:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3a54cbc-3d3d-4601-946a-19a6e7ab000a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T03:19:46.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:49.000Z" + }, + "events": [ + { + "uuid": "07d04b84-7e11-4217-b8d2-864d98cde02c", + "start": { + "$date": "2021-06-11T03:19:46.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e7b9c41-9201-4fa5-b90f-ecd005b85834", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T03:19:42.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:48.000Z" + }, + "events": [ + { + "uuid": "554fa533-f419-41cd-a1dd-d28fa5f780e0", + "start": { + "$date": "2021-06-11T03:19:42.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97e374a9-d742-4e76-9745-0fb36489f5c4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-11T03:21:06.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:40.000Z" + }, + "events": [ + { + "uuid": "b0bf2aaa-0278-406b-9ced-b787dcea4b05", + "start": { + "$date": "2021-06-11T03:21:06.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f28354b-eb91-4e92-927c-78dae3ceba0e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T03:21:16.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:41.000Z" + }, + "events": [ + { + "uuid": "8af4fa7a-f93e-4f51-baf2-9bb03964fa3e", + "start": { + "$date": "2021-06-11T03:21:16.000Z" + }, + "end": { + "$date": "2021-06-11T03:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "270f340d-e34d-4dd1-8ea8-1441a635529c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T03:45:52.000Z" + }, + "end": { + "$date": "2021-06-11T04:06:02.000Z" + }, + "events": [ + { + "uuid": "bf28f052-347e-4ba1-8d0e-c3511b72ba84", + "start": { + "$date": "2021-06-11T03:45:52.000Z" + }, + "end": { + "$date": "2021-06-11T04:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b461e8e-97f4-4932-8ce9-7fce11ebbdfb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-11T03:46:12.000Z" + }, + "end": { + "$date": "2021-06-11T04:05:51.000Z" + }, + "events": [ + { + "uuid": "93157d5e-271d-419a-81ef-93912914e574", + "start": { + "$date": "2021-06-11T03:46:12.000Z" + }, + "end": { + "$date": "2021-06-11T04:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b561b4a3-9991-4dd2-a680-a1b437f8875c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T03:45:44.000Z" + }, + "end": { + "$date": "2021-06-11T04:05:54.000Z" + }, + "events": [ + { + "uuid": "da62248e-81b0-4bcc-8357-07fd86f80b3c", + "start": { + "$date": "2021-06-11T03:45:44.000Z" + }, + "end": { + "$date": "2021-06-11T04:05:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd380b33-98c0-4a29-8af6-cbf8da521286", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T03:45:41.000Z" + }, + "end": { + "$date": "2021-06-11T04:05:52.000Z" + }, + "events": [ + { + "uuid": "3f786047-b590-4a9a-b09a-4cba6975ae30", + "start": { + "$date": "2021-06-11T03:45:41.000Z" + }, + "end": { + "$date": "2021-06-11T04:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "74ec0e74-fbee-411c-9e9a-2a1842ae235f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-11T03:58:10.000Z" + }, + "end": { + "$date": "2021-06-11T06:15:57.000Z" + }, + "events": [ + { + "uuid": "90458d13-3f38-4ecd-850c-cd1bf7098c2e", + "start": { + "$date": "2021-06-11T03:58:10.000Z" + }, + "end": { + "$date": "2021-06-11T06:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d9abe7e-d6dd-4991-a9b7-4dd50b5cd720", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T04:10:53.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:42.000Z" + }, + "events": [ + { + "uuid": "f66f6fd1-22eb-4785-a6c4-6dcf73a0bd5e", + "start": { + "$date": "2021-06-11T04:10:53.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d736d180-4cd7-4710-b94b-60ae8bde33d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T04:10:42.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:32.000Z" + }, + "events": [ + { + "uuid": "2390475d-cc93-4536-8186-1955ce9b9b78", + "start": { + "$date": "2021-06-11T04:10:42.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67272f7f-9756-444c-8c59-c647e762614b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-11T04:11:39.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:43.000Z" + }, + "events": [ + { + "uuid": "a4b7339d-4f83-4537-9d59-6bc3cac24fde", + "start": { + "$date": "2021-06-11T04:11:39.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4957e4de-fc87-4fd7-8566-28c0c2c83868", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T04:10:45.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:35.000Z" + }, + "events": [ + { + "uuid": "19e30733-68e5-4535-8656-55bf3e42e3cf", + "start": { + "$date": "2021-06-11T04:10:45.000Z" + }, + "end": { + "$date": "2021-06-11T04:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e655abb5-5380-457d-917e-e5d80534cc4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-11T04:31:10.000Z" + }, + "end": { + "$date": "2021-06-11T04:43:44.000Z" + }, + "events": [ + { + "uuid": "2af3c402-4ea6-4048-b866-54dc80a86986", + "start": { + "$date": "2021-06-11T04:31:10.000Z" + }, + "end": { + "$date": "2021-06-11T04:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d88bf57-31da-4f90-8e5b-b38ce10fdffa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T04:32:31.000Z" + }, + "end": { + "$date": "2021-06-11T04:43:36.000Z" + }, + "events": [ + { + "uuid": "102a4f6f-3641-44f7-9a2f-7da0115e6d0a", + "start": { + "$date": "2021-06-11T04:32:31.000Z" + }, + "end": { + "$date": "2021-06-11T04:43:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5fffa8a7-03a1-4756-8532-3107f4f87b4b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-11T04:31:55.000Z" + }, + "end": { + "$date": "2021-06-11T04:43:44.000Z" + }, + "events": [ + { + "uuid": "8fbc1d6d-3339-4891-81b7-54de60948464", + "start": { + "$date": "2021-06-11T04:31:55.000Z" + }, + "end": { + "$date": "2021-06-11T04:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b44ed2e8-a06e-4cfe-bfae-8e732e9fc927", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-11T04:53:32.000Z" + }, + "end": { + "$date": "2021-06-11T07:58:19.000Z" + }, + "events": [ + { + "uuid": "21f3d0b7-e8d8-4923-9bfe-c291bc22bcc8", + "start": { + "$date": "2021-06-11T04:53:32.000Z" + }, + "end": { + "$date": "2021-06-11T07:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cc417b6b-1bca-4a5b-9663-e45e3b4de1fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-11T05:07:35.000Z" + }, + "end": { + "$date": "2021-06-11T06:16:03.000Z" + }, + "events": [ + { + "uuid": "e8c3b3a6-430b-400c-a5d4-11f254afbc21", + "start": { + "$date": "2021-06-11T05:07:35.000Z" + }, + "end": { + "$date": "2021-06-11T06:16:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdba0320-0261-4656-857b-0facc225514a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-11T05:35:21.000Z" + }, + "end": { + "$date": "2021-06-11T05:52:37.000Z" + }, + "events": [ + { + "uuid": "93be6302-b785-4955-9a8d-75506adfd52e", + "start": { + "$date": "2021-06-11T05:35:21.000Z" + }, + "end": { + "$date": "2021-06-11T05:52:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84bca8c2-e3b3-459b-a149-68a437b02405", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-11T05:53:13.000Z" + }, + "end": { + "$date": "2021-06-11T05:54:40.000Z" + }, + "events": [ + { + "uuid": "80f6a2db-022e-4d17-9666-c89eda0c6441", + "start": { + "$date": "2021-06-11T05:53:13.000Z" + }, + "end": { + "$date": "2021-06-11T05:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ad18385-4db3-4d69-8de2-ca75567499f0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-11T05:54:42.000Z" + }, + "end": { + "$date": "2021-06-11T07:58:26.000Z" + }, + "events": [ + { + "uuid": "f25d6ed5-514d-4807-bd4d-d492831b8f93", + "start": { + "$date": "2021-06-11T05:54:42.000Z" + }, + "end": { + "$date": "2021-06-11T07:58:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9a458d8-902f-4ca6-8f47-ce0c9e08d56e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-11T06:01:02.000Z" + }, + "end": { + "$date": "2021-06-11T06:34:53.000Z" + }, + "events": [ + { + "uuid": "e8f37883-3255-4a6f-bbfa-842c9d47054a", + "start": { + "$date": "2021-06-11T06:01:02.000Z" + }, + "end": { + "$date": "2021-06-11T06:34:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12590e43-eb6d-4415-9e32-c9b34fe1919b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-11T06:40:08.000Z" + }, + "end": { + "$date": "2021-06-11T06:59:32.000Z" + }, + "events": [ + { + "uuid": "4bb650cf-ce27-4e87-8612-fc04cf271dd3", + "start": { + "$date": "2021-06-11T06:40:08.000Z" + }, + "end": { + "$date": "2021-06-11T06:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "854091d7-ab58-43ee-b2a3-a3a3c648f3d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-11T07:38:32.000Z" + }, + "end": { + "$date": "2021-06-11T10:45:00.000Z" + }, + "events": [ + { + "uuid": "ce30a5bb-5b97-4955-a4d0-7b9b17fe689f", + "start": { + "$date": "2021-06-11T07:38:32.000Z" + }, + "end": { + "$date": "2021-06-11T10:45:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "57557699-fc50-46ff-86d2-519d13bd6944", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-11T13:47:14.000Z" + }, + "end": { + "$date": "2021-06-11T14:53:20.000Z" + }, + "events": [ + { + "uuid": "caff4471-b090-47f0-8ee7-98a9c728816b", + "start": { + "$date": "2021-06-11T13:47:14.000Z" + }, + "end": { + "$date": "2021-06-11T14:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c633d11c-9328-44c2-803f-f1bc55df7018", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-11T14:12:57.000Z" + }, + "end": { + "$date": "2021-06-11T14:46:33.000Z" + }, + "events": [ + { + "uuid": "a1cb8b00-470e-497a-ab41-f81f93af9bcd", + "start": { + "$date": "2021-06-11T14:12:57.000Z" + }, + "end": { + "$date": "2021-06-11T14:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "f8a3115e-ef11-4060-a3e1-cd9c7c68a350", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-11T14:13:24.000Z" + }, + "end": { + "$date": "2021-06-11T14:14:26.000Z" + }, + "events": [ + { + "uuid": "21d5d2d9-1fca-4ca3-b211-f6c6c8cdc5a2", + "start": { + "$date": "2021-06-11T14:13:24.000Z" + }, + "end": { + "$date": "2021-06-11T14:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "eb475001-48f8-4f5d-b663-d3120fb76691", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-11T14:47:23.000Z" + }, + "end": { + "$date": "2021-06-11T15:07:34.000Z" + }, + "events": [ + { + "uuid": "41e218c3-495e-49e9-9794-6f7e378c7d6a", + "start": { + "$date": "2021-06-11T14:47:23.000Z" + }, + "end": { + "$date": "2021-06-11T15:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ca4b5d4a-aab4-4788-87ca-256cb3178c43", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T15:56:41.000Z" + }, + "end": { + "$date": "2021-06-11T16:35:26.000Z" + }, + "events": [ + { + "uuid": "7fcb67ae-ed26-4c0c-be5a-06cf93e59648", + "start": { + "$date": "2021-06-11T15:56:41.000Z" + }, + "end": { + "$date": "2021-06-11T16:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f0fe4deb-ff7a-4052-be64-e76fea8d2c79", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-11T16:42:35.000Z" + }, + "end": { + "$date": "2021-06-11T17:16:11.000Z" + }, + "events": [ + { + "uuid": "f1a20c15-81b4-4c87-8b8b-8af918970e00", + "start": { + "$date": "2021-06-11T16:42:35.000Z" + }, + "end": { + "$date": "2021-06-11T17:16:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "28842c97-cb3e-4501-97f0-77e5eb15a246", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T16:48:23.000Z" + }, + "end": { + "$date": "2021-06-11T17:50:07.000Z" + }, + "events": [ + { + "uuid": "488dbb97-22ec-4bb3-8d76-1eb5282b16c4", + "start": { + "$date": "2021-06-11T16:48:23.000Z" + }, + "end": { + "$date": "2021-06-11T17:50:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "59e48727-975c-4ed8-bc96-17d809ad0174", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-11T18:00:33.000Z" + }, + "end": { + "$date": "2021-06-11T19:17:14.000Z" + }, + "events": [ + { + "uuid": "484eb404-afa0-4b1b-b5ca-c5a78f953a2e", + "start": { + "$date": "2021-06-11T18:00:33.000Z" + }, + "end": { + "$date": "2021-06-11T19:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "87d588ff-adfe-4d65-87db-91953e3e0fb1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-11T19:06:42.000Z" + }, + "end": { + "$date": "2021-06-11T19:20:46.000Z" + }, + "events": [ + { + "uuid": "812c192e-1c64-491c-9bb8-726d4e0ec580", + "start": { + "$date": "2021-06-11T19:06:42.000Z" + }, + "end": { + "$date": "2021-06-11T19:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "25576d76-ccc7-41eb-b67c-dd993ad61e8a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-11T19:33:08.000Z" + }, + "end": { + "$date": "2021-06-11T20:36:36.000Z" + }, + "events": [ + { + "uuid": "9725519a-9e2f-45a9-952e-2b3ab7f2bcf9", + "start": { + "$date": "2021-06-11T19:33:08.000Z" + }, + "end": { + "$date": "2021-06-11T20:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a46c4cc8-3642-47df-9ff1-933a9f318749", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-11T19:54:09.000Z" + }, + "end": { + "$date": "2021-06-12T05:54:59.000Z" + }, + "events": [ + { + "uuid": "5068dff2-49fd-4f79-881a-653a04dbcdd8", + "start": { + "$date": "2021-06-11T19:54:09.000Z" + }, + "end": { + "$date": "2021-06-11T23:24:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ce6c8c7-6fb2-4d92-be3a-a1418b9a4399", + "start": { + "$date": "2021-06-11T23:24:09.000Z" + }, + "end": { + "$date": "2021-06-11T23:29:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d835ee81-42f2-4fb5-b6f6-406610acd5cc", + "start": { + "$date": "2021-06-11T23:29:09.000Z" + }, + "end": { + "$date": "2021-06-11T23:39:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "204ec569-4451-4989-aeff-e93f0602b867", + "start": { + "$date": "2021-06-11T23:39:09.000Z" + }, + "end": { + "$date": "2021-06-11T23:48:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69d22a1f-70df-49ff-a1f9-aa7852a4ce83", + "start": { + "$date": "2021-06-11T23:48:09.000Z" + }, + "end": { + "$date": "2021-06-12T00:30:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22abaef9-712a-4331-9968-9cea563118c6", + "start": { + "$date": "2021-06-12T00:30:09.000Z" + }, + "end": { + "$date": "2021-06-12T00:35:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "390ff19f-0ef9-4014-80a0-492aa0572a60", + "start": { + "$date": "2021-06-12T00:35:09.000Z" + }, + "end": { + "$date": "2021-06-12T00:45:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "761e39ca-bbd8-47c2-b2e4-da06049ef085", + "start": { + "$date": "2021-06-12T00:45:09.000Z" + }, + "end": { + "$date": "2021-06-12T00:46:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "671205bb-29e2-4ee5-b94d-b78069e0438d", + "start": { + "$date": "2021-06-12T00:46:09.000Z" + }, + "end": { + "$date": "2021-06-12T05:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "585c5705-085d-4c10-a9a7-b883b3f0c357", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-11T20:47:33.000Z" + }, + "end": { + "$date": "2021-06-11T20:50:22.000Z" + }, + "events": [ + { + "uuid": "74a0e53f-6ed6-4e7b-80d8-657e2db6a458", + "start": { + "$date": "2021-06-11T20:47:33.000Z" + }, + "end": { + "$date": "2021-06-11T20:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "dbf55d55-2dff-40ea-a50d-16e45c24974f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-11T20:51:13.000Z" + }, + "end": { + "$date": "2021-06-11T21:02:03.000Z" + }, + "events": [ + { + "uuid": "30248f0b-863e-4544-a09f-d3700c6082aa", + "start": { + "$date": "2021-06-11T20:51:13.000Z" + }, + "end": { + "$date": "2021-06-11T21:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "393af2fa-a38f-4b36-8d1f-9fe1d5ea4d96", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-11T22:13:45.000Z" + }, + "end": { + "$date": "2021-06-12T00:01:38.000Z" + }, + "events": [ + { + "uuid": "543a89f9-09f4-49b9-a6e3-4ce05f95e5b5", + "start": { + "$date": "2021-06-11T22:13:45.000Z" + }, + "end": { + "$date": "2021-06-11T22:24:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed94d5fa-f5b8-4702-9d4c-64c18ed023f3", + "start": { + "$date": "2021-06-11T22:24:45.000Z" + }, + "end": { + "$date": "2021-06-11T22:25:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "952925d6-fb69-4328-a146-eb3ec9f6f28f", + "start": { + "$date": "2021-06-11T22:25:45.000Z" + }, + "end": { + "$date": "2021-06-12T00:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "711dc856-6c6c-4ed9-b1a0-fe393238fbdd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-11T23:32:01.000Z" + }, + "end": { + "$date": "2021-06-12T01:26:31.000Z" + }, + "events": [ + { + "uuid": "2a2b0a5f-62f7-4bcc-b09b-f4294f0b5e19", + "start": { + "$date": "2021-06-11T23:32:01.000Z" + }, + "end": { + "$date": "2021-06-12T01:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "67c9a4d0-1bca-422f-bf2a-40f556927213", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-12T00:02:28.000Z" + }, + "end": { + "$date": "2021-06-12T00:58:51.000Z" + }, + "events": [ + { + "uuid": "e7bba99a-eabf-4cc0-a79b-ec1c7c2a67e6", + "start": { + "$date": "2021-06-12T00:02:28.000Z" + }, + "end": { + "$date": "2021-06-12T00:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e749cf44-f943-4246-b055-3aa980bdb056", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T00:24:21.000Z" + }, + "end": { + "$date": "2021-06-12T01:01:27.000Z" + }, + "events": [ + { + "uuid": "24970c30-66fe-4cea-b99b-93a2c8eba006", + "start": { + "$date": "2021-06-12T00:24:21.000Z" + }, + "end": { + "$date": "2021-06-12T01:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "677cabdd-9f60-4cb6-b2dd-9b7beb4ac0e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T00:49:29.000Z" + }, + "end": { + "$date": "2021-06-12T01:04:15.000Z" + }, + "events": [ + { + "uuid": "c3598547-4a20-4a43-8258-7b16a2ee48e0", + "start": { + "$date": "2021-06-12T00:49:29.000Z" + }, + "end": { + "$date": "2021-06-12T01:04:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ef071ef5-927c-40ac-b138-3ac41c31d05c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-12T00:46:42.000Z" + }, + "end": { + "$date": "2021-06-12T03:17:59.000Z" + }, + "events": [ + { + "uuid": "d4983787-1242-4afa-b901-80e57b0801e6", + "start": { + "$date": "2021-06-12T00:46:42.000Z" + }, + "end": { + "$date": "2021-06-12T01:19:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "520780ae-1127-4ebe-a22d-c2729cde3157", + "start": { + "$date": "2021-06-12T01:19:42.000Z" + }, + "end": { + "$date": "2021-06-12T01:45:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9fdd797e-ed84-4138-8fcc-7d54ad346e66", + "start": { + "$date": "2021-06-12T01:45:42.000Z" + }, + "end": { + "$date": "2021-06-12T02:04:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e580e20b-d95e-4d54-8277-740f33242f97", + "start": { + "$date": "2021-06-12T02:04:42.000Z" + }, + "end": { + "$date": "2021-06-12T02:05:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dd7d070a-d353-4308-a9bd-3f926dcf7728", + "start": { + "$date": "2021-06-12T02:05:42.000Z" + }, + "end": { + "$date": "2021-06-12T02:22:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d9782e0-dca6-464d-94b4-28fa8b13ddc3", + "start": { + "$date": "2021-06-12T02:22:42.000Z" + }, + "end": { + "$date": "2021-06-12T02:39:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "35311254-fc8e-449d-b6a2-6538934e6b6b", + "start": { + "$date": "2021-06-12T02:39:42.000Z" + }, + "end": { + "$date": "2021-06-12T02:53:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0215ca8c-ac94-4fff-acc7-52e4f76c1ae7", + "start": { + "$date": "2021-06-12T02:53:42.000Z" + }, + "end": { + "$date": "2021-06-12T03:13:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "acbd7f21-8429-4961-b49c-3347b9ecd3cf", + "start": { + "$date": "2021-06-12T03:13:42.000Z" + }, + "end": { + "$date": "2021-06-12T03:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "65dfe80e-f418-4a26-af47-bbde3bf09280", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-12T00:59:07.000Z" + }, + "end": { + "$date": "2021-06-12T01:18:47.000Z" + }, + "events": [ + { + "uuid": "5ac11205-e6aa-4faa-8c56-53bf18e42d5c", + "start": { + "$date": "2021-06-12T00:59:07.000Z" + }, + "end": { + "$date": "2021-06-12T01:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "38bfa758-17f1-436c-b3b2-1204c3e45c70", + "uuid": "905066d1-cb1f-4bda-9294-6c61567bc840", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T01:05:50.000Z" + }, + "end": { + "$date": "2021-06-12T02:05:26.000Z" + }, + "events": [ + { + "uuid": "02eb4014-30b8-4efb-917d-74d4f4940879", + "start": { + "$date": "2021-06-12T01:05:50.000Z" + }, + "end": { + "$date": "2021-06-12T02:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82d94203-8657-4587-9040-1ebc4cfe112b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T01:36:22.000Z" + }, + "end": { + "$date": "2021-06-12T02:09:20.000Z" + }, + "events": [ + { + "uuid": "e447ab8b-1fd1-4613-84a4-dc73d0c06d55", + "start": { + "$date": "2021-06-12T01:36:22.000Z" + }, + "end": { + "$date": "2021-06-12T02:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c056897-b024-40cc-824d-53fc5ac555da", + "uuid": "c117e149-764f-4e59-8979-b7c2451a55af", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-12T01:53:29.000Z" + }, + "end": { + "$date": "2021-06-12T03:06:22.000Z" + }, + "events": [ + { + "uuid": "7d14f03a-bb23-4e7d-9aec-e2cb4b7afe9e", + "start": { + "$date": "2021-06-12T01:53:29.000Z" + }, + "end": { + "$date": "2021-06-12T03:02:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b89984f-65b3-4682-b5c2-1bb55e27255b", + "start": { + "$date": "2021-06-12T03:02:29.000Z" + }, + "end": { + "$date": "2021-06-12T03:06:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9b432690-4407-4f27-a0fc-5594342401b6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-12T02:13:34.000Z" + }, + "end": { + "$date": "2021-06-12T06:25:55.000Z" + }, + "events": [ + { + "uuid": "720ac93f-2b41-449b-b4bb-7e5f65d62d7b", + "start": { + "$date": "2021-06-12T02:13:34.000Z" + }, + "end": { + "$date": "2021-06-12T06:25:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e6ebeef6-0606-4e29-b748-c0dcbc04da99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T02:23:45.000Z" + }, + "end": { + "$date": "2021-06-12T02:44:35.000Z" + }, + "events": [ + { + "uuid": "63c710dc-1615-438b-a39d-7894758601d5", + "start": { + "$date": "2021-06-12T02:23:45.000Z" + }, + "end": { + "$date": "2021-06-12T02:44:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1c15784b-2d92-48d4-a53f-68b7761016ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-12T02:33:05.000Z" + }, + "end": { + "$date": "2021-06-12T06:23:21.000Z" + }, + "events": [ + { + "uuid": "b78748cd-d28e-496d-91d5-6a1d4f0cda2a", + "start": { + "$date": "2021-06-12T02:33:05.000Z" + }, + "end": { + "$date": "2021-06-12T06:23:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "442f54ff-0430-4a68-81ec-17d158d00496", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T02:45:05.000Z" + }, + "end": { + "$date": "2021-06-12T04:18:13.000Z" + }, + "events": [ + { + "uuid": "131bf8d4-d372-4521-ae2d-b9173276640c", + "start": { + "$date": "2021-06-12T02:45:05.000Z" + }, + "end": { + "$date": "2021-06-12T04:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86fd7419-870c-4f47-a38a-0a0a239d7cfc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-12T03:06:42.000Z" + }, + "end": { + "$date": "2021-06-12T04:57:09.000Z" + }, + "events": [ + { + "uuid": "5c856d99-45cd-45c4-8018-45ec4c8de73b", + "start": { + "$date": "2021-06-12T03:06:42.000Z" + }, + "end": { + "$date": "2021-06-12T04:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2eddd98-0971-4cbb-9bb7-85e31a30b6fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-12T03:10:37.000Z" + }, + "end": { + "$date": "2021-06-12T04:57:09.000Z" + }, + "events": [ + { + "uuid": "2a056c82-326b-40eb-8343-97ad2e160a59", + "start": { + "$date": "2021-06-12T03:10:37.000Z" + }, + "end": { + "$date": "2021-06-12T04:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78ae3d0f-6698-455a-9e1c-e3ff663576b9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T03:50:51.000Z" + }, + "end": { + "$date": "2021-06-12T04:10:33.000Z" + }, + "events": [ + { + "uuid": "e3b0375c-3c3a-49a9-91de-64b58ee1bfdf", + "start": { + "$date": "2021-06-12T03:50:51.000Z" + }, + "end": { + "$date": "2021-06-12T04:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48e98964-3ea5-4456-a644-9f1b65002879", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T04:15:17.000Z" + }, + "end": { + "$date": "2021-06-12T04:27:51.000Z" + }, + "events": [ + { + "uuid": "c88a297a-bc81-4c43-92da-0fde48b8c839", + "start": { + "$date": "2021-06-12T04:15:17.000Z" + }, + "end": { + "$date": "2021-06-12T04:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ccee748-dd4c-4256-80ff-6566ac71c482", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T04:15:49.000Z" + }, + "end": { + "$date": "2021-06-12T04:27:52.000Z" + }, + "events": [ + { + "uuid": "97577619-fb86-4735-aa0f-9a45ab885316", + "start": { + "$date": "2021-06-12T04:15:49.000Z" + }, + "end": { + "$date": "2021-06-12T04:27:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c72133e-50ea-45ec-b126-5d1f6d74b633", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T04:33:38.000Z" + }, + "end": { + "$date": "2021-06-12T05:00:34.000Z" + }, + "events": [ + { + "uuid": "ae71cdd6-104c-4a82-9428-b08fdb1aac95", + "start": { + "$date": "2021-06-12T04:33:38.000Z" + }, + "end": { + "$date": "2021-06-12T05:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bac23e6-c309-4cfa-85b3-eb22509def82", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T04:33:40.000Z" + }, + "end": { + "$date": "2021-06-12T05:00:26.000Z" + }, + "events": [ + { + "uuid": "f4032569-a375-47fc-b789-cc0e2a5a8d91", + "start": { + "$date": "2021-06-12T04:33:40.000Z" + }, + "end": { + "$date": "2021-06-12T05:00:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "20c13f85-1fab-41da-9173-c0134da6b87e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-12T04:57:34.000Z" + }, + "end": { + "$date": "2021-06-12T05:21:46.000Z" + }, + "events": [ + { + "uuid": "a264ea0d-2000-40a3-b75b-8b357272edcf", + "start": { + "$date": "2021-06-12T04:57:34.000Z" + }, + "end": { + "$date": "2021-06-12T05:21:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "845d86c6-4aa2-4d4d-8689-958ca0af3950", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T05:04:45.000Z" + }, + "end": { + "$date": "2021-06-12T05:32:36.000Z" + }, + "events": [ + { + "uuid": "407c43a5-d7ec-4d03-b7f5-7c5e5800fc74", + "start": { + "$date": "2021-06-12T05:04:45.000Z" + }, + "end": { + "$date": "2021-06-12T05:32:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b669be37-20c0-45d1-a5a3-2b86ad98f0e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T05:04:51.000Z" + }, + "end": { + "$date": "2021-06-12T05:32:30.000Z" + }, + "events": [ + { + "uuid": "256e29cc-245d-4ac9-a920-2e825dcbd2e8", + "start": { + "$date": "2021-06-12T05:04:51.000Z" + }, + "end": { + "$date": "2021-06-12T05:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "38b8aa9b-32b4-4cfa-b2ef-c8ca4afb1051", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-12T05:29:12.000Z" + }, + "end": { + "$date": "2021-06-12T07:59:26.000Z" + }, + "events": [ + { + "uuid": "c43e4a87-c564-40ba-b100-b91e3d9b661a", + "start": { + "$date": "2021-06-12T05:29:12.000Z" + }, + "end": { + "$date": "2021-06-12T07:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a835430e-bb1b-446e-ac91-06e98a272341", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T05:37:11.000Z" + }, + "end": { + "$date": "2021-06-12T06:21:53.000Z" + }, + "events": [ + { + "uuid": "79ffedf0-fa93-4917-8ef8-cfc837cdb473", + "start": { + "$date": "2021-06-12T05:37:11.000Z" + }, + "end": { + "$date": "2021-06-12T06:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8638adc2-e888-4e02-953b-c5fb3e111873", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T05:37:46.000Z" + }, + "end": { + "$date": "2021-06-12T06:21:52.000Z" + }, + "events": [ + { + "uuid": "dc071e3d-0519-4d95-8cd9-7ff9993dd650", + "start": { + "$date": "2021-06-12T05:37:46.000Z" + }, + "end": { + "$date": "2021-06-12T06:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d2527458-7a6d-41be-a4e9-3666c3979e11", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-12T05:55:14.000Z" + }, + "end": { + "$date": "2021-06-12T08:31:53.000Z" + }, + "events": [ + { + "uuid": "a98f1084-1904-4c78-93b6-03b3bbdfda5d", + "start": { + "$date": "2021-06-12T05:55:14.000Z" + }, + "end": { + "$date": "2021-06-12T08:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8efe7097-6a15-485a-8f85-909c9e3fbcd1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T06:26:14.000Z" + }, + "end": { + "$date": "2021-06-12T06:44:52.000Z" + }, + "events": [ + { + "uuid": "addae983-d1f0-45ab-9c10-8860f08e528f", + "start": { + "$date": "2021-06-12T06:26:14.000Z" + }, + "end": { + "$date": "2021-06-12T06:44:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11e13a36-590d-40a3-918a-162165d4da3d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T06:26:17.000Z" + }, + "end": { + "$date": "2021-06-12T06:44:33.000Z" + }, + "events": [ + { + "uuid": "6c15656d-7f18-4a59-a39c-61641d7a35c1", + "start": { + "$date": "2021-06-12T06:26:17.000Z" + }, + "end": { + "$date": "2021-06-12T06:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5377eeee-f3a2-4949-81e3-ccb034a50cdb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-12T06:28:45.000Z" + }, + "end": { + "$date": "2021-06-12T06:59:21.000Z" + }, + "events": [ + { + "uuid": "c8c9a1a7-4fdf-4efb-b88c-d80c74c78ea9", + "start": { + "$date": "2021-06-12T06:28:45.000Z" + }, + "end": { + "$date": "2021-06-12T06:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "558f4c6d-99ef-4461-a80f-f1b89114ee5e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-12T06:59:35.000Z" + }, + "end": { + "$date": "2021-06-12T09:18:35.000Z" + }, + "events": [ + { + "uuid": "ad6ff7a0-53af-4bec-8eef-1a2998a73199", + "start": { + "$date": "2021-06-12T06:59:35.000Z" + }, + "end": { + "$date": "2021-06-12T09:18:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d4f71148-8c7f-46ef-9f21-e9f58c6f3b67", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-12T07:00:48.000Z" + }, + "end": { + "$date": "2021-06-12T09:19:05.000Z" + }, + "events": [ + { + "uuid": "fab68404-a543-45e4-991a-faf06e6dcaf8", + "start": { + "$date": "2021-06-12T07:00:48.000Z" + }, + "end": { + "$date": "2021-06-12T09:19:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "462abd89-1b4c-4ed2-8e8e-ddc0886be136", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T08:02:49.000Z" + }, + "end": { + "$date": "2021-06-12T08:33:50.000Z" + }, + "events": [ + { + "uuid": "4680bdd4-6ccc-4587-b818-143d2be43a8d", + "start": { + "$date": "2021-06-12T08:02:49.000Z" + }, + "end": { + "$date": "2021-06-12T08:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18f06f4b-b503-4303-99a1-8da1ea1c9050", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-12T08:46:26.000Z" + }, + "end": { + "$date": "2021-06-12T09:19:22.000Z" + }, + "events": [ + { + "uuid": "fbbfb0a2-472c-4c59-9b87-33030f0f4c56", + "start": { + "$date": "2021-06-12T08:46:26.000Z" + }, + "end": { + "$date": "2021-06-12T09:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "529b5225-0746-4f42-89cf-41d6924b70c9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-12T15:47:49.000Z" + }, + "end": { + "$date": "2021-06-12T16:26:14.000Z" + }, + "events": [ + { + "uuid": "c99c2deb-4583-42cf-b8af-59935cbf64b0", + "start": { + "$date": "2021-06-12T15:47:49.000Z" + }, + "end": { + "$date": "2021-06-12T16:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32930816-567b-4ecd-bf52-7aa66b8fa4ad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T15:53:37.000Z" + }, + "end": { + "$date": "2021-06-12T16:23:54.000Z" + }, + "events": [ + { + "uuid": "fa77c295-e95a-460d-ab9c-37dc35da48f2", + "start": { + "$date": "2021-06-12T15:53:37.000Z" + }, + "end": { + "$date": "2021-06-12T16:23:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "a78e8636-36a0-4529-ae64-2dfffbdbd073", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T17:00:39.000Z" + }, + "end": { + "$date": "2021-06-12T18:04:25.000Z" + }, + "events": [ + { + "uuid": "472aba4d-2140-4c23-b1df-987ff595ae55", + "start": { + "$date": "2021-06-12T17:00:39.000Z" + }, + "end": { + "$date": "2021-06-12T18:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "67eeea12-cc3f-4b77-b899-01cd16a227c0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-12T17:49:34.000Z" + }, + "end": { + "$date": "2021-06-12T21:53:29.000Z" + }, + "events": [ + { + "uuid": "31675bfa-75e7-419d-aa46-4594f8e6a474", + "start": { + "$date": "2021-06-12T17:49:34.000Z" + }, + "end": { + "$date": "2021-06-12T21:49:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8db18ea-ce40-4287-90f7-5c754a5ff8f8", + "start": { + "$date": "2021-06-12T21:49:34.000Z" + }, + "end": { + "$date": "2021-06-12T21:50:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "376e2137-79a6-434f-96d2-ef5d20e7d92b", + "start": { + "$date": "2021-06-12T21:50:34.000Z" + }, + "end": { + "$date": "2021-06-12T21:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "9f5d72fc-3b8f-4ec2-baab-f78500fe0882", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T18:05:30.000Z" + }, + "end": { + "$date": "2021-06-12T21:10:35.000Z" + }, + "events": [ + { + "uuid": "b952db97-c244-417b-be86-7e6e9f740d0d", + "start": { + "$date": "2021-06-12T18:05:30.000Z" + }, + "end": { + "$date": "2021-06-12T19:46:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddf93f44-963e-415c-a501-f9dadffbef05", + "start": { + "$date": "2021-06-12T19:46:30.000Z" + }, + "end": { + "$date": "2021-06-12T20:07:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c28af6c0-f84b-4e8a-957d-a53104c7d698", + "start": { + "$date": "2021-06-12T20:07:30.000Z" + }, + "end": { + "$date": "2021-06-12T21:10:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fc828ea-9d08-4944-8d16-cff676a4db03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T23:15:01.000Z" + }, + "end": { + "$date": "2021-06-12T23:15:08.000Z" + }, + "events": [ + { + "uuid": "b361801e-05f1-4821-8bf9-9b76144b3ed0", + "start": { + "$date": "2021-06-12T23:15:01.000Z" + }, + "end": { + "$date": "2021-06-12T23:33:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19e5254b-5844-4cb3-8db4-a7212f63bc40", + "start": { + "$date": "2021-06-12T23:33:01.000Z" + }, + "end": { + "$date": "2021-06-12T23:35:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4c7e7c98-655a-4686-bd6c-b930ce3ad5c9", + "start": { + "$date": "2021-06-12T23:35:01.000Z" + }, + "end": { + "$date": "2021-06-12T23:51:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6d0cb96-288d-445f-b837-40f1ad9147cc", + "start": { + "$date": "2021-06-12T23:51:01.000Z" + }, + "end": { + "$date": "2021-06-12T23:52:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e34bd60-caa3-4b4b-8552-fab1b5c594ab", + "start": { + "$date": "2021-06-12T23:52:01.000Z" + }, + "end": { + "$date": "2021-06-13T00:11:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d24da2ab-3312-457f-8025-146c358dd38e", + "start": { + "$date": "2021-06-13T00:11:01.000Z" + }, + "end": { + "$date": "2021-06-13T01:00:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5f86603-8f88-4081-baf9-de33ff337aba", + "start": { + "$date": "2021-06-13T01:00:01.000Z" + }, + "end": { + "$date": "2021-06-13T01:02:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "430d136d-844b-4312-9447-941631683f06", + "start": { + "$date": "2021-06-13T01:02:01.000Z" + }, + "end": { + "$date": "2021-06-13T01:46:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41751fb9-e47d-4182-b318-5794ce72b50d", + "start": { + "$date": "2021-06-13T01:46:01.000Z" + }, + "end": { + "$date": "2021-06-13T02:08:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "229babfa-9097-4a00-a8c0-111169d0e127", + "start": { + "$date": "2021-06-13T02:08:01.000Z" + }, + "end": { + "$date": "2021-06-13T02:12:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7088e7b8-b8c4-4f97-8e30-62eca12915b3", + "start": { + "$date": "2021-06-13T02:12:01.000Z" + }, + "end": { + "$date": "2021-06-13T02:16:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1cda65d0-b62b-4527-8fae-bc63caa421d2", + "start": { + "$date": "2021-06-13T02:16:01.000Z" + }, + "end": { + "$date": "2021-06-13T02:38:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "520e5bd4-89a2-4833-a796-a1266d12773b", + "start": { + "$date": "2021-06-13T02:38:01.000Z" + }, + "end": { + "$date": "2021-06-13T02:42:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4817ae3e-76fc-40c8-8e6b-f3d612ef7ecf", + "start": { + "$date": "2021-06-13T02:42:01.000Z" + }, + "end": { + "$date": "2021-06-13T03:29:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd4d4f28-6075-4709-8c79-f9a859cc8bb3", + "start": { + "$date": "2021-06-13T03:29:01.000Z" + }, + "end": { + "$date": "2021-06-12T23:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "18aedfb3-7353-4079-be37-3bd595d305d8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-12T19:20:06.000Z" + }, + "end": { + "$date": "2021-06-12T19:21:17.000Z" + }, + "events": [ + { + "uuid": "f60c8815-f1c8-4c1b-9f05-341c789140c9", + "start": { + "$date": "2021-06-12T19:20:06.000Z" + }, + "end": { + "$date": "2021-06-12T19:21:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "c99ae86a-0cf8-4998-b732-78c0c9f86109", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-12T19:21:26.000Z" + }, + "end": { + "$date": "2021-06-12T19:23:37.000Z" + }, + "events": [ + { + "uuid": "9bdccd16-e9b9-4e1a-a5c7-a7ba50ea3687", + "start": { + "$date": "2021-06-12T19:21:26.000Z" + }, + "end": { + "$date": "2021-06-12T19:23:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "c47b4199-5248-4c31-9763-75b552f27610", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-12T19:24:01.000Z" + }, + "end": { + "$date": "2021-06-12T20:50:07.000Z" + }, + "events": [ + { + "uuid": "1b138e33-010e-4938-a98b-e812b81c0022", + "start": { + "$date": "2021-06-12T19:24:01.000Z" + }, + "end": { + "$date": "2021-06-12T20:50:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f67a1b3-c222-4c36-b5d7-507df70e8730", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-12T21:01:17.000Z" + }, + "end": { + "$date": "2021-06-12T21:21:53.000Z" + }, + "events": [ + { + "uuid": "2995e5fc-dbac-4963-9583-6d9b94ce9767", + "start": { + "$date": "2021-06-12T21:01:17.000Z" + }, + "end": { + "$date": "2021-06-12T21:21:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "38cd6c4d-74a5-4d19-a6d2-eb478fd8cf8c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-12T20:55:16.000Z" + }, + "end": { + "$date": "2021-06-13T01:57:30.000Z" + }, + "events": [ + { + "uuid": "12bbe6af-f3f1-459c-9890-ac9421ca908e", + "start": { + "$date": "2021-06-12T20:55:16.000Z" + }, + "end": { + "$date": "2021-06-12T21:25:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e63968b1-effe-4587-896d-61d441bde4b1", + "start": { + "$date": "2021-06-12T21:25:16.000Z" + }, + "end": { + "$date": "2021-06-12T22:04:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fb431119-b2b9-4ca8-86f2-a76eb4798875", + "start": { + "$date": "2021-06-12T22:04:16.000Z" + }, + "end": { + "$date": "2021-06-13T01:57:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "30653e4f-bc7e-40b0-a974-9c2b98b71262", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-12T21:11:15.000Z" + }, + "end": { + "$date": "2021-06-12T22:39:51.000Z" + }, + "events": [ + { + "uuid": "b66c9f61-0d8c-464d-8003-1461ac62adde", + "start": { + "$date": "2021-06-12T21:11:15.000Z" + }, + "end": { + "$date": "2021-06-12T22:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "646a5bd9-ee09-4835-b5e6-bce7fa3c5774", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-12T21:59:04.000Z" + }, + "end": { + "$date": "2021-06-12T21:59:16.000Z" + }, + "events": [ + { + "uuid": "3da62713-3ed6-4c06-a561-d66af04a5e9b", + "start": { + "$date": "2021-06-12T21:59:04.000Z" + }, + "end": { + "$date": "2021-06-12T21:59:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "cfd05b95-b360-439f-821f-0b6282c7b79f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-12T22:05:38.000Z" + }, + "end": { + "$date": "2021-06-12T22:36:20.000Z" + }, + "events": [ + { + "uuid": "0c677f35-d89b-4449-acd0-aa5ca8a68b6f", + "start": { + "$date": "2021-06-12T22:05:38.000Z" + }, + "end": { + "$date": "2021-06-12T22:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a25abd1e-d5fd-4eaa-b752-54fb00947eb7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-12T22:36:50.000Z" + }, + "end": { + "$date": "2021-06-12T22:41:56.000Z" + }, + "events": [ + { + "uuid": "ea840c7b-2ca0-4a48-bac9-4aa1ee665689", + "start": { + "$date": "2021-06-12T22:36:50.000Z" + }, + "end": { + "$date": "2021-06-12T22:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49ffcdef-8586-4419-b9b8-d491e877700f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-12T23:19:48.000Z" + }, + "end": { + "$date": "2021-06-12T23:36:16.000Z" + }, + "events": [ + { + "uuid": "8272c35c-38c8-4eb1-b7f2-cfb811c045e7", + "start": { + "$date": "2021-06-12T23:19:48.000Z" + }, + "end": { + "$date": "2021-06-12T23:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74f5e4ff-9944-4af2-9483-f2d9388eaeb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-13T00:35:15.000Z" + }, + "end": { + "$date": "2021-06-13T01:14:58.000Z" + }, + "events": [ + { + "uuid": "03975195-a544-43b9-ac47-744e84e6039f", + "start": { + "$date": "2021-06-13T00:35:15.000Z" + }, + "end": { + "$date": "2021-06-13T00:58:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46475912-2018-4090-a523-7581f762c8be", + "start": { + "$date": "2021-06-13T00:58:15.000Z" + }, + "end": { + "$date": "2021-06-13T01:31:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "231b2ebb-aa1d-481c-b7d7-5f2069aa470b", + "start": { + "$date": "2021-06-13T01:31:15.000Z" + }, + "end": { + "$date": "2021-06-13T01:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d7cbafae-f9b6-489d-855e-ea49562925b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-12T23:38:50.000Z" + }, + "end": { + "$date": "2021-06-13T00:19:54.000Z" + }, + "events": [ + { + "uuid": "6b27ec2a-52da-4703-ad28-503863835cec", + "start": { + "$date": "2021-06-12T23:38:50.000Z" + }, + "end": { + "$date": "2021-06-13T00:14:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb30ad18-58a4-4970-9291-49dafaca1e87", + "start": { + "$date": "2021-06-13T00:14:50.000Z" + }, + "end": { + "$date": "2021-06-13T00:18:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0214c95b-a7cc-4e71-851d-1cc5ac494795", + "start": { + "$date": "2021-06-13T00:18:50.000Z" + }, + "end": { + "$date": "2021-06-13T00:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "4490c3bb-4328-4ec1-801e-70cfa7894e66", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T00:19:59.000Z" + }, + "end": { + "$date": "2021-06-13T01:10:02.000Z" + }, + "events": [ + { + "uuid": "16fc2e94-9d8d-4b23-8c78-d1fa1f6bd5ba", + "start": { + "$date": "2021-06-13T00:19:59.000Z" + }, + "end": { + "$date": "2021-06-13T01:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c392c6a-a5ae-4cf5-bab1-5a60d8e2bc83", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T00:44:40.000Z" + }, + "end": { + "$date": "2021-06-13T01:03:23.000Z" + }, + "events": [ + { + "uuid": "4ae71b68-05ef-4cac-ba2d-aa016b0d0646", + "start": { + "$date": "2021-06-13T00:44:40.000Z" + }, + "end": { + "$date": "2021-06-13T01:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "23b13edd-1b7f-413b-9f86-f1ea7c73698e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-13T00:48:59.000Z" + }, + "end": { + "$date": "2021-06-13T02:28:42.000Z" + }, + "events": [ + { + "uuid": "afe30c7f-7a7b-4206-be40-c93748e73603", + "start": { + "$date": "2021-06-13T00:48:59.000Z" + }, + "end": { + "$date": "2021-06-13T02:28:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f076a6b2-b733-4bc4-b296-ea443a50da82", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-13T01:07:07.000Z" + }, + "end": { + "$date": "2021-06-13T01:44:29.000Z" + }, + "events": [ + { + "uuid": "ff4b27a1-a119-4a4b-81d9-980dc37911c3", + "start": { + "$date": "2021-06-13T01:07:07.000Z" + }, + "end": { + "$date": "2021-06-13T01:44:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "673a95e8-643f-41fd-9e4a-079931e32efd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T01:05:29.000Z" + }, + "end": { + "$date": "2021-06-13T01:06:44.000Z" + }, + "events": [ + { + "uuid": "38a91eaf-c2d0-48e6-999d-c8d2aeca6a71", + "start": { + "$date": "2021-06-13T01:05:29.000Z" + }, + "end": { + "$date": "2021-06-13T01:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58e477c8-e5d1-47a1-b15a-b7fd95f20d02", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-13T01:19:06.000Z" + }, + "end": { + "$date": "2021-06-13T01:51:20.000Z" + }, + "events": [ + { + "uuid": "22d946a4-6f02-464a-97a4-84cb6d95adae", + "start": { + "$date": "2021-06-13T01:19:06.000Z" + }, + "end": { + "$date": "2021-06-13T01:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0dd5446-f2c0-4953-a4d3-3e77e98644be", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-13T02:28:04.000Z" + }, + "end": { + "$date": "2021-06-13T02:29:15.000Z" + }, + "events": [ + { + "uuid": "b5e49276-c9dc-4511-b667-39cdd469ac62", + "start": { + "$date": "2021-06-13T02:28:04.000Z" + }, + "end": { + "$date": "2021-06-13T02:29:04.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "e9e451a5-ebd9-4a8f-92cd-66dd66eb2d70", + "start": { + "$date": "2021-06-13T02:29:04.000Z" + }, + "end": { + "$date": "2021-06-13T02:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd64c601-9b34-4fd3-abae-63e05314bb3b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T01:48:58.000Z" + }, + "end": { + "$date": "2021-06-13T04:42:21.000Z" + }, + "events": [ + { + "uuid": "10000d26-4ab7-428c-a2e4-b20dae8f508f", + "start": { + "$date": "2021-06-13T01:48:58.000Z" + }, + "end": { + "$date": "2021-06-13T04:42:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b4263f7-686d-4430-8cb0-34b2814b44b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-13T01:58:15.000Z" + }, + "end": { + "$date": "2021-06-13T02:28:08.000Z" + }, + "events": [ + { + "uuid": "287f7f03-386b-4220-9275-6b1431d19db6", + "start": { + "$date": "2021-06-13T01:58:15.000Z" + }, + "end": { + "$date": "2021-06-13T02:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "455b0c09-6eb0-4ed1-88d6-bcc0e069e5d0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-13T01:58:14.000Z" + }, + "end": { + "$date": "2021-06-13T02:28:00.000Z" + }, + "events": [ + { + "uuid": "0910329c-bee7-49f5-b747-83aeaf4ae713", + "start": { + "$date": "2021-06-13T01:58:14.000Z" + }, + "end": { + "$date": "2021-06-13T02:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "34b4e31b-c26d-4689-92a8-2c4fa40b60b9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-13T02:01:40.000Z" + }, + "end": { + "$date": "2021-06-13T06:38:38.000Z" + }, + "events": [ + { + "uuid": "53cac17d-f00a-422c-b036-c75a3bf72975", + "start": { + "$date": "2021-06-13T02:01:40.000Z" + }, + "end": { + "$date": "2021-06-13T06:38:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "09193f07-1ea0-44d1-a26e-dc3f28ab2bba", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-13T02:59:56.000Z" + }, + "end": { + "$date": "2021-06-13T04:31:17.000Z" + }, + "events": [ + { + "uuid": "538b9985-88bb-43ad-987f-ef7ac97e1eca", + "start": { + "$date": "2021-06-13T02:59:56.000Z" + }, + "end": { + "$date": "2021-06-13T04:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "747f4fdb-055a-40d9-95d3-54a646567c9b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-13T03:34:01.000Z" + }, + "end": { + "$date": "2021-06-13T04:47:41.000Z" + }, + "events": [ + { + "uuid": "eb2fecad-e9eb-40f8-85a5-f77173a9fa7e", + "start": { + "$date": "2021-06-13T03:34:01.000Z" + }, + "end": { + "$date": "2021-06-13T04:26:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64f186ed-4f78-4b39-a27b-04dd21bcb424", + "start": { + "$date": "2021-06-13T04:26:01.000Z" + }, + "end": { + "$date": "2021-06-13T04:32:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8aa6720-adee-4f51-aa12-5a70c402cb27", + "start": { + "$date": "2021-06-13T04:32:01.000Z" + }, + "end": { + "$date": "2021-06-13T04:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "6c61e37e-595a-4a79-aef2-580068e41b68", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-13T04:39:08.000Z" + }, + "end": { + "$date": "2021-06-13T07:03:16.000Z" + }, + "events": [ + { + "uuid": "054df110-f907-4589-96c9-b878dcc724b7", + "start": { + "$date": "2021-06-13T04:39:08.000Z" + }, + "end": { + "$date": "2021-06-13T07:03:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "3def4bdd-839c-4d04-9454-dc9fae4e392c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-13T04:39:47.000Z" + }, + "end": { + "$date": "2021-06-13T04:49:08.000Z" + }, + "events": [ + { + "uuid": "2afe2557-12c2-40f5-bb1d-f83ce006c489", + "start": { + "$date": "2021-06-13T04:39:47.000Z" + }, + "end": { + "$date": "2021-06-13T04:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "d7bd3214-c6cd-4efa-8ed6-4c27241a8313", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T04:43:11.000Z" + }, + "end": { + "$date": "2021-06-13T04:52:01.000Z" + }, + "events": [ + { + "uuid": "ca421e79-8c57-4c45-ac62-a76439792f40", + "start": { + "$date": "2021-06-13T04:43:11.000Z" + }, + "end": { + "$date": "2021-06-13T04:52:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "5587585a-6b91-4493-8338-4fb8c5f502e0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-13T04:49:43.000Z" + }, + "end": { + "$date": "2021-06-13T07:03:08.000Z" + }, + "events": [ + { + "uuid": "c0611851-05e4-48f1-8aae-e355e900099e", + "start": { + "$date": "2021-06-13T04:49:43.000Z" + }, + "end": { + "$date": "2021-06-13T07:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6baa55c1-8e5d-4b46-b267-a8a78d1df640", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T04:54:01.000Z" + }, + "end": { + "$date": "2021-06-13T05:28:45.000Z" + }, + "events": [ + { + "uuid": "e044e86f-6742-4a0f-a2a3-565a587ef5be", + "start": { + "$date": "2021-06-13T04:54:01.000Z" + }, + "end": { + "$date": "2021-06-13T05:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a43c9884-9338-4218-8db8-e88e37bea15e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-13T05:09:44.000Z" + }, + "end": { + "$date": "2021-06-13T05:54:29.000Z" + }, + "events": [ + { + "uuid": "50bcb860-d21d-4ada-a13e-0ddaf18ba42c", + "start": { + "$date": "2021-06-13T05:09:44.000Z" + }, + "end": { + "$date": "2021-06-13T05:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d1a45a21-f248-4e17-bba1-94752e91dc72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T05:49:13.000Z" + }, + "end": { + "$date": "2021-06-13T08:18:56.000Z" + }, + "events": [ + { + "uuid": "8c92c21d-b650-4337-9b45-5ba5128d50e0", + "start": { + "$date": "2021-06-13T05:49:13.000Z" + }, + "end": { + "$date": "2021-06-13T08:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9808dc33-fc05-45c4-b12d-13f753427677", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-13T06:00:26.000Z" + }, + "end": { + "$date": "2021-06-13T06:34:58.000Z" + }, + "events": [ + { + "uuid": "1d0861ae-144a-4173-a209-d8bf7f213532", + "start": { + "$date": "2021-06-13T06:00:26.000Z" + }, + "end": { + "$date": "2021-06-13T06:34:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ef5de58-223b-4f24-8aad-2dd69ef19811", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-13T06:00:15.000Z" + }, + "end": { + "$date": "2021-06-13T06:34:56.000Z" + }, + "events": [ + { + "uuid": "dc1d9ffb-364d-439a-a61b-c1db0fc40842", + "start": { + "$date": "2021-06-13T06:00:15.000Z" + }, + "end": { + "$date": "2021-06-13T06:34:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7ec19a4c-7d99-40e5-95ec-fe7d56747912", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-13T06:39:28.000Z" + }, + "end": { + "$date": "2021-06-13T09:27:43.000Z" + }, + "events": [ + { + "uuid": "1bea46a7-27b5-479f-b0bc-c0bf761eae97", + "start": { + "$date": "2021-06-13T06:39:28.000Z" + }, + "end": { + "$date": "2021-06-13T09:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8d1d2bd4-9101-4a37-9589-9a0d5533c96c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T07:00:25.000Z" + }, + "end": { + "$date": "2021-06-13T07:56:53.000Z" + }, + "events": [ + { + "uuid": "4450a348-1e1e-4798-b151-059b24224f68", + "start": { + "$date": "2021-06-13T07:00:25.000Z" + }, + "end": { + "$date": "2021-06-13T07:56:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "168e2b28-8519-4ac0-9a8b-7a1982a9611a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-13T07:34:23.000Z" + }, + "end": { + "$date": "2021-06-13T07:59:43.000Z" + }, + "events": [ + { + "uuid": "e69839be-9353-434e-ac5d-59ee481e1dea", + "start": { + "$date": "2021-06-13T07:34:23.000Z" + }, + "end": { + "$date": "2021-06-13T07:59:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ee350e1-acbb-4a95-b329-4613c35f21e4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-13T08:04:33.000Z" + }, + "end": { + "$date": "2021-06-13T08:25:08.000Z" + }, + "events": [ + { + "uuid": "346bf945-3803-4dda-8919-c1470b58f3aa", + "start": { + "$date": "2021-06-13T08:04:33.000Z" + }, + "end": { + "$date": "2021-06-13T08:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "cf9b552e-9add-493e-9e8f-9af12097ca49", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T08:12:50.000Z" + }, + "end": { + "$date": "2021-06-13T15:08:48.000Z" + }, + "events": [ + { + "uuid": "a5d7d272-fd3e-42e5-bfaf-be9b53cd980c", + "start": { + "$date": "2021-06-13T08:12:50.000Z" + }, + "end": { + "$date": "2021-06-13T09:10:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae7eb79c-5fc8-4b77-9236-64078a92c73a", + "start": { + "$date": "2021-06-13T09:10:50.000Z" + }, + "end": { + "$date": "2021-06-13T12:07:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36101b54-d0cf-4c11-9c7b-65cb4f9d1fb4", + "start": { + "$date": "2021-06-13T12:07:50.000Z" + }, + "end": { + "$date": "2021-06-13T12:21:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bab8b554-f4dc-45a2-9a8c-369b8571307c", + "start": { + "$date": "2021-06-13T12:21:50.000Z" + }, + "end": { + "$date": "2021-06-13T14:54:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d4530d09-31ea-41d6-bd66-15fe0b35e546", + "start": { + "$date": "2021-06-13T14:54:50.000Z" + }, + "end": { + "$date": "2021-06-13T15:04:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85fa4cad-e528-4bd3-8e5a-2a8ec19026e7", + "start": { + "$date": "2021-06-13T15:04:50.000Z" + }, + "end": { + "$date": "2021-06-13T15:08:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "230fc88a-b6d4-45c9-81c4-4e2dbdbe8b8b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-13T08:31:09.000Z" + }, + "end": { + "$date": "2021-06-13T08:58:30.000Z" + }, + "events": [ + { + "uuid": "e655333c-d00d-48de-9d2f-4449e7161a86", + "start": { + "$date": "2021-06-13T08:31:09.000Z" + }, + "end": { + "$date": "2021-06-13T08:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a641a3a1-a407-45c1-94fd-c0c5dc3d1d97", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-13T15:17:14.000Z" + }, + "end": { + "$date": "2021-06-13T15:38:22.000Z" + }, + "events": [ + { + "uuid": "3e9d8a49-ebaf-4e8e-8e95-efc34da18d4c", + "start": { + "$date": "2021-06-13T15:17:14.000Z" + }, + "end": { + "$date": "2021-06-13T15:38:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fdf63de9-fcd1-4f4a-8ab1-cce71282a902", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T15:25:06.000Z" + }, + "end": { + "$date": "2021-06-13T16:59:54.000Z" + }, + "events": [ + { + "uuid": "c60c4f37-3ab8-4377-bb6e-83b6a1b87f9c", + "start": { + "$date": "2021-06-13T15:25:06.000Z" + }, + "end": { + "$date": "2021-06-13T16:59:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "1064a096-1367-4552-9e1a-7e61fdfe3f45", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-13T15:34:37.000Z" + }, + "end": { + "$date": "2021-06-13T16:09:21.000Z" + }, + "events": [ + { + "uuid": "c57813af-7009-4c27-a195-e5df31f8cc9d", + "start": { + "$date": "2021-06-13T15:34:37.000Z" + }, + "end": { + "$date": "2021-06-13T16:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7ab8ef84-ce44-4c73-a24e-bfc0cb5f9faf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-13T15:41:29.000Z" + }, + "end": { + "$date": "2021-06-13T17:28:09.000Z" + }, + "events": [ + { + "uuid": "861e87ac-6d0d-4932-963c-f1f117766bf1", + "start": { + "$date": "2021-06-13T15:41:29.000Z" + }, + "end": { + "$date": "2021-06-13T17:28:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8bdfae5b-7c1d-4133-9258-fbeb9984b3dc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-13T16:12:11.000Z" + }, + "end": { + "$date": "2021-06-13T16:58:32.000Z" + }, + "events": [ + { + "uuid": "fa1b9931-6dda-4960-9891-7a0c18fd7871", + "start": { + "$date": "2021-06-13T16:12:11.000Z" + }, + "end": { + "$date": "2021-06-13T16:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b25aec96-bc01-4dce-93a9-da900a7981d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-13T17:01:05.000Z" + }, + "end": { + "$date": "2021-06-13T17:01:05.000Z" + }, + "events": [ + { + "uuid": "5cd5f885-e798-4d67-9177-983b2aae4a84", + "start": { + "$date": "2021-06-13T17:01:05.000Z" + }, + "end": { + "$date": "2021-06-13T17:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "4aa14286-41de-4bbf-95dc-b26c5813dbda", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-13T17:01:10.000Z" + }, + "end": { + "$date": "2021-06-13T18:06:52.000Z" + }, + "events": [ + { + "uuid": "2899b671-726a-4575-9553-94686c977a79", + "start": { + "$date": "2021-06-13T17:01:10.000Z" + }, + "end": { + "$date": "2021-06-13T18:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "fa2dc5b4-59e8-417e-8591-067fca031ca3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-13T17:01:41.000Z" + }, + "end": { + "$date": "2021-06-13T17:03:52.000Z" + }, + "events": [ + { + "uuid": "4e40cc35-4516-430e-bbe5-4700eee74aa2", + "start": { + "$date": "2021-06-13T17:01:41.000Z" + }, + "end": { + "$date": "2021-06-13T17:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "bfc1fa21-2018-4bd5-9aa8-73124def1257", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-13T17:06:21.000Z" + }, + "end": { + "$date": "2021-06-13T17:07:25.000Z" + }, + "events": [ + { + "uuid": "7d9c673b-e997-4bc2-a729-17e521eefbd5", + "start": { + "$date": "2021-06-13T17:06:21.000Z" + }, + "end": { + "$date": "2021-06-13T17:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "139a04c1-7e4b-4ee2-9a92-207af862335b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-13T17:11:39.000Z" + }, + "end": { + "$date": "2021-06-13T17:27:27.000Z" + }, + "events": [ + { + "uuid": "75e2a875-aa2b-40e8-b121-bea855ba5e41", + "start": { + "$date": "2021-06-13T17:11:39.000Z" + }, + "end": { + "$date": "2021-06-13T17:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "55f46901-5249-4121-95b2-ab59eb5df95a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-13T17:29:52.000Z" + }, + "end": { + "$date": "2021-06-13T18:11:17.000Z" + }, + "events": [ + { + "uuid": "65ed828b-f7d3-4b6b-9f75-7c98406f80d5", + "start": { + "$date": "2021-06-13T17:29:52.000Z" + }, + "end": { + "$date": "2021-06-13T18:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "98317a9f-0a25-49ea-9502-8288caaa315f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T18:11:08.000Z" + }, + "end": { + "$date": "2021-06-13T18:40:40.000Z" + }, + "events": [ + { + "uuid": "441128e2-dc6c-4c9a-ab5b-1cb961c8139f", + "start": { + "$date": "2021-06-13T18:11:08.000Z" + }, + "end": { + "$date": "2021-06-13T18:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "a6690ae6-8859-4768-92df-d9d787b3496a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T18:41:50.000Z" + }, + "end": { + "$date": "2021-06-13T18:58:07.000Z" + }, + "events": [ + { + "uuid": "497206e4-45f0-4505-817c-c7df1482c2ce", + "start": { + "$date": "2021-06-13T18:41:50.000Z" + }, + "end": { + "$date": "2021-06-13T18:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "3a4f6f40-6a9f-4451-86ac-045c20c7b48f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-13T18:52:41.000Z" + }, + "end": { + "$date": "2021-06-13T18:58:01.000Z" + }, + "events": [ + { + "uuid": "fec77bb2-a3f5-4f0d-9689-04833d1a4682", + "start": { + "$date": "2021-06-13T18:52:41.000Z" + }, + "end": { + "$date": "2021-06-13T18:58:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "86e85b39-7e96-4334-82bf-ae8507e0b045", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T18:58:28.000Z" + }, + "end": { + "$date": "2021-06-13T21:38:58.000Z" + }, + "events": [ + { + "uuid": "49961500-d916-411c-9874-c35998ac88a9", + "start": { + "$date": "2021-06-13T18:58:28.000Z" + }, + "end": { + "$date": "2021-06-13T21:38:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "2778d75d-dd8a-44bc-b917-6f0f49287154", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-13T19:02:37.000Z" + }, + "end": { + "$date": "2021-06-13T19:36:47.000Z" + }, + "events": [ + { + "uuid": "6b5c168f-c8c5-4495-89ee-c1f2c68fdd79", + "start": { + "$date": "2021-06-13T19:02:37.000Z" + }, + "end": { + "$date": "2021-06-13T19:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "3f9ffd71-de48-47d9-b1d8-2fb75bc41d59", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-13T19:09:12.000Z" + }, + "end": { + "$date": "2021-06-13T20:38:18.000Z" + }, + "events": [ + { + "uuid": "16dd8560-a491-47d1-80e7-ff71845f1102", + "start": { + "$date": "2021-06-13T19:09:12.000Z" + }, + "end": { + "$date": "2021-06-13T20:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "3380150c-6347-4d72-9414-299487e7e3d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-13T20:09:18.000Z" + }, + "end": { + "$date": "2021-06-13T22:07:32.000Z" + }, + "events": [ + { + "uuid": "877097ae-514c-4b47-9fcc-03d9414de655", + "start": { + "$date": "2021-06-13T20:09:18.000Z" + }, + "end": { + "$date": "2021-06-13T22:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7d91a31f-306e-477b-a9ae-bb4f2c3a193d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-13T20:56:04.000Z" + }, + "end": { + "$date": "2021-06-13T22:36:08.000Z" + }, + "events": [ + { + "uuid": "5bcc7e75-c577-4317-93f1-2aa4443a4c00", + "start": { + "$date": "2021-06-13T20:56:04.000Z" + }, + "end": { + "$date": "2021-06-13T21:10:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "07bad434-822f-4ea1-9bc2-6fa4af741f98", + "start": { + "$date": "2021-06-13T21:10:04.000Z" + }, + "end": { + "$date": "2021-06-13T21:35:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70ac28a6-5457-4186-818f-d9b6ccfb0e35", + "start": { + "$date": "2021-06-13T21:35:04.000Z" + }, + "end": { + "$date": "2021-06-13T21:45:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70fe3438-b9f0-4e06-b1b0-665c6703ae56", + "start": { + "$date": "2021-06-13T21:45:04.000Z" + }, + "end": { + "$date": "2021-06-13T21:55:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9c9758e-e88e-4b0f-afba-363d775dc5d6", + "start": { + "$date": "2021-06-13T21:55:04.000Z" + }, + "end": { + "$date": "2021-06-13T22:36:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "5c122033-fb4e-47b8-b588-cfa4ebffcefb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-13T21:39:13.000Z" + }, + "end": { + "$date": "2021-06-14T00:43:50.000Z" + }, + "events": [ + { + "uuid": "5005e51b-9e69-48e2-b6ad-9d7ad85e4924", + "start": { + "$date": "2021-06-13T21:39:13.000Z" + }, + "end": { + "$date": "2021-06-13T22:17:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "165815a2-6c42-4dd4-87fc-c551e66b3472", + "start": { + "$date": "2021-06-13T22:17:13.000Z" + }, + "end": { + "$date": "2021-06-13T22:26:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73ff7eb9-6929-4c92-8bd2-49c04e2be3ef", + "start": { + "$date": "2021-06-13T22:26:13.000Z" + }, + "end": { + "$date": "2021-06-14T00:43:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "38bfa758-17f1-436c-b3b2-1204c3e45c70", + "uuid": "f2dc4c41-28cd-4b47-9fed-b7540285989a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-13T21:53:59.000Z" + }, + "end": { + "$date": "2021-06-13T23:33:29.000Z" + }, + "events": [ + { + "uuid": "ec3521be-6fb9-4d42-91ee-3e7ece114445", + "start": { + "$date": "2021-06-13T21:53:59.000Z" + }, + "end": { + "$date": "2021-06-13T23:33:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4cf0cc9e-08c7-4811-9488-3921d94de38f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-13T22:11:26.000Z" + }, + "end": { + "$date": "2021-06-13T22:17:23.000Z" + }, + "events": [ + { + "uuid": "db2992c8-6be4-48ca-9096-e4ed322cdf33", + "start": { + "$date": "2021-06-13T22:11:26.000Z" + }, + "end": { + "$date": "2021-06-13T22:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aac543be-da33-4eba-a6ea-8d7c75d84cf4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-13T22:17:48.000Z" + }, + "end": { + "$date": "2021-06-13T23:45:25.000Z" + }, + "events": [ + { + "uuid": "4075b335-b40e-4440-acd5-31cbf95b4058", + "start": { + "$date": "2021-06-13T22:17:48.000Z" + }, + "end": { + "$date": "2021-06-13T23:45:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3d7b0144-e600-4a6e-8510-7f5c06614c39", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-13T22:52:11.000Z" + }, + "end": { + "$date": "2021-06-14T05:02:52.000Z" + }, + "events": [ + { + "uuid": "fb193a0f-8b21-45cf-9542-019ad76fc029", + "start": { + "$date": "2021-06-13T22:52:11.000Z" + }, + "end": { + "$date": "2021-06-14T04:10:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d86d6e65-1551-485e-8ccf-8d21b1e42cfe", + "start": { + "$date": "2021-06-14T04:10:11.000Z" + }, + "end": { + "$date": "2021-06-14T04:13:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54140ed6-6c77-46f3-98f9-b775690d8932", + "start": { + "$date": "2021-06-14T04:13:11.000Z" + }, + "end": { + "$date": "2021-06-14T05:02:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "33c8a1d4-83a6-4c3b-8c83-50eabf020d83", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-14T00:44:05.000Z" + }, + "end": { + "$date": "2021-06-14T01:37:29.000Z" + }, + "events": [ + { + "uuid": "163944d1-77b1-48f8-8664-5642003b375f", + "start": { + "$date": "2021-06-14T00:44:05.000Z" + }, + "end": { + "$date": "2021-06-14T01:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "faa9c82f-ea6b-4b2f-9ac5-c66637517b61", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T01:16:54.000Z" + }, + "end": { + "$date": "2021-06-14T02:16:55.000Z" + }, + "events": [ + { + "uuid": "f2b49576-ac43-4a5f-825a-e5ce6c664cba", + "start": { + "$date": "2021-06-14T01:16:54.000Z" + }, + "end": { + "$date": "2021-06-14T02:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c21f3a53-15dc-431c-b98e-44b5541ad052", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-14T01:34:36.000Z" + }, + "end": { + "$date": "2021-06-14T01:54:12.000Z" + }, + "events": [ + { + "uuid": "be490ad7-70ee-4ac5-86d1-758477e03ad3", + "start": { + "$date": "2021-06-14T01:34:36.000Z" + }, + "end": { + "$date": "2021-06-14T01:54:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a13fa051-f527-4aa8-a2a1-0a79929e7a81", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-14T01:35:54.000Z" + }, + "end": { + "$date": "2021-06-14T01:54:14.000Z" + }, + "events": [ + { + "uuid": "07f3a763-d18b-4bd1-a991-c6da94b67d1d", + "start": { + "$date": "2021-06-14T01:35:54.000Z" + }, + "end": { + "$date": "2021-06-14T01:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "5b242fbb-844c-4992-a95a-c816ee275dae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-14T01:54:27.000Z" + }, + "end": { + "$date": "2021-06-14T02:31:30.000Z" + }, + "events": [ + { + "uuid": "c4fea048-d33a-416c-a7e0-5f87b456b4a5", + "start": { + "$date": "2021-06-14T01:54:27.000Z" + }, + "end": { + "$date": "2021-06-14T02:31:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "87133379-d17e-429e-bccb-90d7673359e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-14T01:55:15.000Z" + }, + "end": { + "$date": "2021-06-14T02:31:55.000Z" + }, + "events": [ + { + "uuid": "7a970f32-df2b-4c2a-b886-6df05e15fb82", + "start": { + "$date": "2021-06-14T01:55:15.000Z" + }, + "end": { + "$date": "2021-06-14T02:31:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "ea3d587c-1436-4886-868f-1628fed53629", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-14T01:55:22.000Z" + }, + "end": { + "$date": "2021-06-14T01:58:07.000Z" + }, + "events": [ + { + "uuid": "60fbb455-6636-4e1c-981d-3181d511623f", + "start": { + "$date": "2021-06-14T01:55:22.000Z" + }, + "end": { + "$date": "2021-06-14T01:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "d9c73195-0fb3-45fc-9146-50a9acf4fe63", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-14T01:58:17.000Z" + }, + "end": { + "$date": "2021-06-14T02:31:43.000Z" + }, + "events": [ + { + "uuid": "b33f41b4-09d2-4dbe-83f0-34b365f307b8", + "start": { + "$date": "2021-06-14T01:58:17.000Z" + }, + "end": { + "$date": "2021-06-14T02:31:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "2802dbd9-3b76-41e5-a7cd-b540ea100cb2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-14T02:33:21.000Z" + }, + "end": { + "$date": "2021-06-14T05:27:04.000Z" + }, + "events": [ + { + "uuid": "718e9ddd-cdaf-471e-a8dc-c57f34166ac9", + "start": { + "$date": "2021-06-14T02:33:21.000Z" + }, + "end": { + "$date": "2021-06-14T05:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "d3441960-589a-4909-8d2c-7ebfe0e9fef9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-14T02:34:06.000Z" + }, + "end": { + "$date": "2021-06-14T03:01:08.000Z" + }, + "events": [ + { + "uuid": "477567f3-59f1-4651-849c-38d66a79a2d5", + "start": { + "$date": "2021-06-14T02:34:06.000Z" + }, + "end": { + "$date": "2021-06-14T03:00:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5896f861-83fc-44e9-8b10-9474b2cc9b79", + "start": { + "$date": "2021-06-14T03:00:06.000Z" + }, + "end": { + "$date": "2021-06-14T03:01:08.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "ce5ca63b-6ab5-41e1-9ef5-d7129450f5d0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-14T02:34:14.000Z" + }, + "end": { + "$date": "2021-06-14T05:02:26.000Z" + }, + "events": [ + { + "uuid": "bebaca05-7083-4318-bdac-89b0630ac85c", + "start": { + "$date": "2021-06-14T02:34:14.000Z" + }, + "end": { + "$date": "2021-06-14T05:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "75ddc07c-2f09-4022-a097-57511f8babab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-14T03:13:50.000Z" + }, + "end": { + "$date": "2021-06-14T04:25:17.000Z" + }, + "events": [ + { + "uuid": "ba93218d-1876-4ce0-9c7a-9860ab008349", + "start": { + "$date": "2021-06-14T03:13:50.000Z" + }, + "end": { + "$date": "2021-06-14T04:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "21010d5c-b13b-4481-b4b9-aae21809d9e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T04:50:14.000Z" + }, + "end": { + "$date": "2021-06-14T05:25:39.000Z" + }, + "events": [ + { + "uuid": "e3964a6a-5eec-402b-9c28-8cf18c065b0c", + "start": { + "$date": "2021-06-14T04:50:14.000Z" + }, + "end": { + "$date": "2021-06-14T05:25:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "e6d10311-811b-4704-8dde-1f7950e43a6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-14T05:03:03.000Z" + }, + "end": { + "$date": "2021-06-14T06:30:37.000Z" + }, + "events": [ + { + "uuid": "e7908dfb-c95b-4b33-b0a7-e0f4dd7b6a6c", + "start": { + "$date": "2021-06-14T05:03:03.000Z" + }, + "end": { + "$date": "2021-06-14T06:30:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49dfc9cf-9ea1-435d-ba05-b6f4c7a823ac", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-14T05:53:13.000Z" + }, + "end": { + "$date": "2021-06-14T06:33:30.000Z" + }, + "events": [ + { + "uuid": "b4e3e051-ae2f-452b-9c56-430a8eae33b8", + "start": { + "$date": "2021-06-14T05:53:13.000Z" + }, + "end": { + "$date": "2021-06-14T06:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "102acf98-5da9-49c2-933d-d2777bf6489d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-14T06:06:30.000Z" + }, + "end": { + "$date": "2021-06-14T07:19:03.000Z" + }, + "events": [ + { + "uuid": "307a710b-2bf0-48d6-9a45-ed3a5c1a9982", + "start": { + "$date": "2021-06-14T06:06:30.000Z" + }, + "end": { + "$date": "2021-06-14T07:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6ced29e6-76e8-4689-b2b6-a13c345465d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-14T06:35:43.000Z" + }, + "end": { + "$date": "2021-06-14T06:45:38.000Z" + }, + "events": [ + { + "uuid": "00b7622d-0bc2-4dd1-8278-f8714abe2a13", + "start": { + "$date": "2021-06-14T06:35:43.000Z" + }, + "end": { + "$date": "2021-06-14T06:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "26318eb8-e6ff-4d6c-8531-d0c4208f326c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-14T06:45:45.000Z" + }, + "end": { + "$date": "2021-06-14T06:56:22.000Z" + }, + "events": [ + { + "uuid": "ba61a93b-d67b-4e0d-86db-34bd3be1c5d1", + "start": { + "$date": "2021-06-14T06:45:45.000Z" + }, + "end": { + "$date": "2021-06-14T06:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "43f72bff-3bbf-415e-b989-fc94ad33c028", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-14T06:56:33.000Z" + }, + "end": { + "$date": "2021-06-14T09:34:56.000Z" + }, + "events": [ + { + "uuid": "5212d655-7db8-4489-996c-dc63fdeacb40", + "start": { + "$date": "2021-06-14T06:56:33.000Z" + }, + "end": { + "$date": "2021-06-14T09:34:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5898b464-b2e8-483d-9152-719f5566c6c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T16:39:52.000Z" + }, + "end": { + "$date": "2021-06-14T17:25:26.000Z" + }, + "events": [ + { + "uuid": "1050cea2-494c-49a9-8047-a6dda4ca8259", + "start": { + "$date": "2021-06-14T16:39:52.000Z" + }, + "end": { + "$date": "2021-06-14T17:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "b77d733f-db5f-4beb-97fa-e2acd0e3a790", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-14T16:47:43.000Z" + }, + "end": { + "$date": "2021-06-14T17:30:54.000Z" + }, + "events": [ + { + "uuid": "5332245b-4d30-4767-9a47-e9ccf7c50109", + "start": { + "$date": "2021-06-14T16:47:43.000Z" + }, + "end": { + "$date": "2021-06-14T17:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "02c642e5-9c63-420c-a8d3-a269225452fc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-06-14T19:58:04.000Z" + }, + "end": { + "$date": "2021-06-14T20:56:48.000Z" + }, + "events": [ + { + "uuid": "5786df99-7f18-471e-a902-c0910e5a0e86", + "start": { + "$date": "2021-06-14T19:58:04.000Z" + }, + "end": { + "$date": "2021-06-14T20:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "49d69a99-c62d-45dd-886c-8cfad1df172e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T20:08:47.000Z" + }, + "end": { + "$date": "2021-06-14T20:24:13.000Z" + }, + "events": [ + { + "uuid": "cbdc98e9-9d53-496f-8325-ce946b5294ff", + "start": { + "$date": "2021-06-14T20:08:47.000Z" + }, + "end": { + "$date": "2021-06-14T20:24:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "831f7a73-d8ef-4777-aaba-8001f35182dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T20:42:51.000Z" + }, + "end": { + "$date": "2021-06-14T20:58:56.000Z" + }, + "events": [ + { + "uuid": "4abe170a-4f29-4d3b-af2b-a5c4ee9f6250", + "start": { + "$date": "2021-06-14T20:42:51.000Z" + }, + "end": { + "$date": "2021-06-14T20:58:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "48674d74-1a14-4e9e-ab2a-9e847f5098ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-14T20:36:34.000Z" + }, + "end": { + "$date": "2021-06-15T01:08:42.000Z" + }, + "events": [ + { + "uuid": "ff5232a4-b169-4e02-aa3e-b50bce7d2eaf", + "start": { + "$date": "2021-06-14T20:36:34.000Z" + }, + "end": { + "$date": "2021-06-15T01:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "17aee072-55b6-4198-9f5a-4f43861ad18b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T23:35:47.000Z" + }, + "end": { + "$date": "2021-06-14T23:35:52.000Z" + }, + "events": [ + { + "uuid": "eb0dd86d-094f-4930-a708-4ce36edaa59d", + "start": { + "$date": "2021-06-14T23:35:47.000Z" + }, + "end": { + "$date": "2021-06-15T01:58:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cdd5fa7f-72a4-44bb-bfad-d04c4e64b959", + "start": { + "$date": "2021-06-15T01:58:47.000Z" + }, + "end": { + "$date": "2021-06-15T02:00:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4314fc34-fea2-4a75-8e1b-b8a6c7ccd73b", + "start": { + "$date": "2021-06-15T02:00:47.000Z" + }, + "end": { + "$date": "2021-06-14T23:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bfcf8d85-c72c-46c4-83f7-48f90e35f6c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-14T22:54:02.000Z" + }, + "end": { + "$date": "2021-06-14T23:00:30.000Z" + }, + "events": [ + { + "uuid": "935685ab-efb2-424e-913a-7aaed05a955d", + "start": { + "$date": "2021-06-14T22:54:02.000Z" + }, + "end": { + "$date": "2021-06-14T23:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2bbd9794-4183-45c3-afc6-77c2ee48dd42", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-14T22:57:37.000Z" + }, + "end": { + "$date": "2021-06-14T23:16:38.000Z" + }, + "events": [ + { + "uuid": "376abf1f-0be1-43f3-a133-1672ece87a82", + "start": { + "$date": "2021-06-14T22:57:37.000Z" + }, + "end": { + "$date": "2021-06-14T23:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "096029a3-6ea5-4ca9-921d-6e34f2f27d8a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-14T23:00:47.000Z" + }, + "end": { + "$date": "2021-06-15T01:58:46.000Z" + }, + "events": [ + { + "uuid": "cb28816e-b671-4161-9958-4ec2f7454b9a", + "start": { + "$date": "2021-06-14T23:00:47.000Z" + }, + "end": { + "$date": "2021-06-15T01:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5c433aba-e7e6-4ce6-b312-fcc74d3cef1b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-14T23:25:21.000Z" + }, + "end": { + "$date": "2021-06-14T23:34:01.000Z" + }, + "events": [ + { + "uuid": "decb0986-ef5a-40c7-a7d7-fd7a0c256517", + "start": { + "$date": "2021-06-14T23:25:21.000Z" + }, + "end": { + "$date": "2021-06-14T23:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1efa463e-ea46-469e-97fe-d5838dc8f80d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-14T23:29:54.000Z" + }, + "end": { + "$date": "2021-06-15T00:00:10.000Z" + }, + "events": [ + { + "uuid": "6e59d6a6-d541-447e-a8b1-484987f1a0ed", + "start": { + "$date": "2021-06-14T23:29:54.000Z" + }, + "end": { + "$date": "2021-06-15T00:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9461bc2e-4f08-4fcb-b0c0-584f09c52901", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-14T23:36:03.000Z" + }, + "end": { + "$date": "2021-06-14T23:58:33.000Z" + }, + "events": [ + { + "uuid": "0fd97157-38c4-48c2-b653-5b15e1365ebf", + "start": { + "$date": "2021-06-14T23:36:03.000Z" + }, + "end": { + "$date": "2021-06-14T23:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f640d83-a65b-4b30-ac59-e92133368325", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T00:04:19.000Z" + }, + "end": { + "$date": "2021-06-15T00:23:28.000Z" + }, + "events": [ + { + "uuid": "0385f8c7-4070-4f97-b135-1d2efb89dc6a", + "start": { + "$date": "2021-06-15T00:04:19.000Z" + }, + "end": { + "$date": "2021-06-15T00:23:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c56a354-fb56-4382-8c73-808f45269b9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T00:39:11.000Z" + }, + "end": { + "$date": "2021-06-15T00:58:30.000Z" + }, + "events": [ + { + "uuid": "55888a3b-0f24-4835-a880-0b4f315edad6", + "start": { + "$date": "2021-06-15T00:39:11.000Z" + }, + "end": { + "$date": "2021-06-15T00:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d57c0744-d54b-4ff8-bfc2-9e21949d4df7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T01:10:47.000Z" + }, + "end": { + "$date": "2021-06-15T01:22:31.000Z" + }, + "events": [ + { + "uuid": "00f27e44-54b6-4064-9dd0-c3eb7dcc9ee3", + "start": { + "$date": "2021-06-15T01:10:47.000Z" + }, + "end": { + "$date": "2021-06-15T01:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "6f5c05b4-71e7-4adf-a689-5dd4f2a61620", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-15T01:00:38.000Z" + }, + "end": { + "$date": "2021-06-15T01:59:30.000Z" + }, + "events": [ + { + "uuid": "8e49360e-6f3d-4628-8227-1b9ad9a9ab23", + "start": { + "$date": "2021-06-15T01:00:38.000Z" + }, + "end": { + "$date": "2021-06-15T01:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56281b5d-0386-4818-b364-4982eb46716d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T01:47:40.000Z" + }, + "end": { + "$date": "2021-06-15T01:57:09.000Z" + }, + "events": [ + { + "uuid": "bffa14c2-6c1e-4094-897d-50d85913f55c", + "start": { + "$date": "2021-06-15T01:47:40.000Z" + }, + "end": { + "$date": "2021-06-15T01:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "f954ddff-233b-4708-8a39-4712c2c85c4f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-15T01:33:57.000Z" + }, + "end": { + "$date": "2021-06-15T05:51:10.000Z" + }, + "events": [ + { + "uuid": "77806b71-3984-4928-bb41-f7823cbb1cc3", + "start": { + "$date": "2021-06-15T01:33:57.000Z" + }, + "end": { + "$date": "2021-06-15T05:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "63fa4ba0-3d32-4c16-822a-3b1df63e6f84", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-15T04:14:23.000Z" + }, + "end": { + "$date": "2021-06-15T04:14:33.000Z" + }, + "events": [ + { + "uuid": "9ea9ae61-2f1a-4588-99b1-a9c262b33e20", + "start": { + "$date": "2021-06-15T04:14:23.000Z" + }, + "end": { + "$date": "2021-06-15T04:14:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eac14828-d46d-4c6e-93f2-568c46395603", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T02:30:28.000Z" + }, + "end": { + "$date": "2021-06-15T02:42:08.000Z" + }, + "events": [ + { + "uuid": "b3c0a6e9-6179-4726-90f4-35ea302d15bb", + "start": { + "$date": "2021-06-15T02:30:28.000Z" + }, + "end": { + "$date": "2021-06-15T02:42:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "559b4374-786d-4dab-bba5-d7bccb5eb355", + "start": { + "$date": "2021-06-15T02:42:28.000Z" + }, + "end": { + "$date": "2021-06-15T02:43:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "403e7727-fbbd-482a-b9b8-01745e3f9e48", + "start": { + "$date": "2021-06-15T02:43:28.000Z" + }, + "end": { + "$date": "2021-06-15T02:42:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3068099f-dfa3-42d8-9641-fba2a8f62ce9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-15T02:12:44.000Z" + }, + "end": { + "$date": "2021-06-15T02:28:58.000Z" + }, + "events": [ + { + "uuid": "27411db8-d39c-47d9-880d-e424bd5a7673", + "start": { + "$date": "2021-06-15T02:12:44.000Z" + }, + "end": { + "$date": "2021-06-15T02:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "321912f4-15df-4247-bdfb-5929dabc2425", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-15T02:23:00.000Z" + }, + "end": { + "$date": "2021-06-15T02:42:17.000Z" + }, + "events": [ + { + "uuid": "25db58f4-5074-47d2-b313-513edf7bb794", + "start": { + "$date": "2021-06-15T02:23:00.000Z" + }, + "end": { + "$date": "2021-06-15T02:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "646c1a43-fcec-4dba-9865-7b7b0e5e94b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T02:51:24.000Z" + }, + "end": { + "$date": "2021-06-15T03:06:59.000Z" + }, + "events": [ + { + "uuid": "4d925e48-697e-44da-8dd3-f041e0f51bf4", + "start": { + "$date": "2021-06-15T02:51:24.000Z" + }, + "end": { + "$date": "2021-06-15T03:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e44a1c56-83bb-4551-80c2-aa15e2bae651", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-15T02:50:17.000Z" + }, + "end": { + "$date": "2021-06-15T03:07:03.000Z" + }, + "events": [ + { + "uuid": "85458fa7-9166-45f1-97ab-f7bc081feb94", + "start": { + "$date": "2021-06-15T02:50:17.000Z" + }, + "end": { + "$date": "2021-06-15T03:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd7ae8f0-0a97-4a8f-8546-480b4177e405", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T03:14:45.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:24.000Z" + }, + "events": [ + { + "uuid": "548b2c8a-867e-4048-9688-8760f13a8ecb", + "start": { + "$date": "2021-06-15T03:14:45.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c6a842d-a21a-4363-9cc2-1c2d9328ed49", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-15T03:14:43.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:29.000Z" + }, + "events": [ + { + "uuid": "91665ef6-c531-4ef3-9ad7-d3aba6346120", + "start": { + "$date": "2021-06-15T03:14:43.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38de1186-4859-4cbf-b663-11b837ea6d35", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-15T03:14:57.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:31.000Z" + }, + "events": [ + { + "uuid": "c166fbb9-8b37-4430-be98-99bf37c802c8", + "start": { + "$date": "2021-06-15T03:14:57.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62b8b57e-9e4a-475d-be48-7953c7cb23fa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T03:14:49.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:34.000Z" + }, + "events": [ + { + "uuid": "ec32ea8b-ad71-4db5-a0fa-8585ae0271d8", + "start": { + "$date": "2021-06-15T03:14:49.000Z" + }, + "end": { + "$date": "2021-06-15T03:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a2d312d-70c9-4d74-8439-10709485fd5f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T03:33:11.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:25.000Z" + }, + "events": [ + { + "uuid": "0dbb7a5f-85ff-41a8-8d91-fc37aa561d05", + "start": { + "$date": "2021-06-15T03:33:11.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74e04fe1-b3bd-43b0-953f-9bee9c3543db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-15T03:32:48.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:23.000Z" + }, + "events": [ + { + "uuid": "d1107816-8720-4f16-b6b7-7d2487d7d298", + "start": { + "$date": "2021-06-15T03:32:48.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b963809-210d-4c50-94f8-b4a6356cdbc5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T03:32:20.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:35.000Z" + }, + "events": [ + { + "uuid": "bee054d1-5e41-43d6-86e1-5da0c5c4a2fe", + "start": { + "$date": "2021-06-15T03:32:20.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c24eab55-67c0-48e2-964b-a993f3b0b25f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-15T03:32:20.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:25.000Z" + }, + "events": [ + { + "uuid": "79bcb84f-1f5d-4a5b-84a8-f60f49b9d95f", + "start": { + "$date": "2021-06-15T03:32:20.000Z" + }, + "end": { + "$date": "2021-06-15T03:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fe1ff5f-ad73-4271-ae76-5810d7f6f1b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T03:51:31.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:00.000Z" + }, + "events": [ + { + "uuid": "9c0cf1b1-6925-4b77-a0d6-a657a95678fa", + "start": { + "$date": "2021-06-15T03:51:31.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ecbbe22-cec7-4cd2-8fb0-0819897d147f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-15T03:50:35.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:01.000Z" + }, + "events": [ + { + "uuid": "5824e672-7fda-495c-931b-be3349808e99", + "start": { + "$date": "2021-06-15T03:50:35.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89deba33-2334-463d-bdd0-69bb433600c8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-15T03:51:04.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:09.000Z" + }, + "events": [ + { + "uuid": "f520929f-706e-4dfb-8014-95e2106b86f1", + "start": { + "$date": "2021-06-15T03:51:04.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99dbe47f-fa58-467b-a6c1-ad5685ee7488", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T03:50:37.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:11.000Z" + }, + "events": [ + { + "uuid": "b8d6f10e-bec8-4a12-8427-75624ed07464", + "start": { + "$date": "2021-06-15T03:50:37.000Z" + }, + "end": { + "$date": "2021-06-15T04:08:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11183bd7-25bf-4508-b9b3-219ef41896af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T04:12:37.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:16.000Z" + }, + "events": [ + { + "uuid": "1663693c-740a-4eb5-a2ea-581ca97200b6", + "start": { + "$date": "2021-06-15T04:12:37.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94ea945a-1c33-40c9-baa1-c8f16c4c030b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T04:11:28.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:21.000Z" + }, + "events": [ + { + "uuid": "052b67eb-a479-4313-82b8-c338dbb49ea7", + "start": { + "$date": "2021-06-15T04:11:28.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72c6c726-8354-461d-8f03-eac2e6b9286d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-15T04:12:15.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:10.000Z" + }, + "events": [ + { + "uuid": "5f0c626b-1cff-4afa-8c9c-ab338483ea15", + "start": { + "$date": "2021-06-15T04:12:15.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b69a2d0a-79b6-4075-b4e7-62a52174c227", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-15T04:11:26.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:12.000Z" + }, + "events": [ + { + "uuid": "ee44412b-ca9c-4ee0-b68e-8d8e0e0fcbc2", + "start": { + "$date": "2021-06-15T04:11:26.000Z" + }, + "end": { + "$date": "2021-06-15T04:32:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6a03eff1-3889-4996-a234-43206242b567", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-15T04:12:59.000Z" + }, + "end": { + "$date": "2021-06-15T04:45:58.000Z" + }, + "events": [ + { + "uuid": "10e05b52-48a8-444d-8e1a-66fa6001f3f2", + "start": { + "$date": "2021-06-15T04:12:59.000Z" + }, + "end": { + "$date": "2021-06-15T04:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "d6e280cd-2227-4b62-b26f-057f0104d56d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-15T04:14:38.000Z" + }, + "end": { + "$date": "2021-06-15T05:51:17.000Z" + }, + "events": [ + { + "uuid": "50fca099-1a2c-463a-86ba-ea1125487a9b", + "start": { + "$date": "2021-06-15T04:14:38.000Z" + }, + "end": { + "$date": "2021-06-15T05:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cf5785cd-976e-4b8d-8d31-5a3fd42b10d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T04:35:24.000Z" + }, + "end": { + "$date": "2021-06-15T06:32:00.000Z" + }, + "events": [ + { + "uuid": "8ae0de06-df20-46c7-9a88-bcd36c267a05", + "start": { + "$date": "2021-06-15T04:35:24.000Z" + }, + "end": { + "$date": "2021-06-15T06:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51aad6dd-1836-42d5-97a2-0b33e75994bd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-15T04:44:36.000Z" + }, + "end": { + "$date": "2021-06-15T05:07:26.000Z" + }, + "events": [ + { + "uuid": "bf6c37c2-caa7-4af1-b38d-f73a651511e5", + "start": { + "$date": "2021-06-15T04:44:36.000Z" + }, + "end": { + "$date": "2021-06-15T05:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d79b0369-4fc2-4df4-846d-ed6f4bba6ae0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-15T05:13:22.000Z" + }, + "end": { + "$date": "2021-06-15T05:50:26.000Z" + }, + "events": [ + { + "uuid": "62bab04a-b2ab-490f-8835-1cf3dd2736ee", + "start": { + "$date": "2021-06-15T05:13:22.000Z" + }, + "end": { + "$date": "2021-06-15T05:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "65006055-9da9-4ddd-90c0-373cfe5ec74f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-15T05:55:46.000Z" + }, + "end": { + "$date": "2021-06-15T09:28:20.000Z" + }, + "events": [ + { + "uuid": "82cbba73-5422-4ca1-be89-8f85fb656fd8", + "start": { + "$date": "2021-06-15T05:55:46.000Z" + }, + "end": { + "$date": "2021-06-15T09:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "468223bc-ba21-492d-8acd-936dd9f385a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T15:50:40.000Z" + }, + "end": { + "$date": "2021-06-15T16:00:50.000Z" + }, + "events": [ + { + "uuid": "370074fe-227f-4413-b646-ea77103e3b8e", + "start": { + "$date": "2021-06-15T15:50:40.000Z" + }, + "end": { + "$date": "2021-06-15T16:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ab4850b-43b9-40f0-9511-b49c2df32be4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T16:06:06.000Z" + }, + "end": { + "$date": "2021-06-15T16:25:25.000Z" + }, + "events": [ + { + "uuid": "81f98d94-0341-46fe-b7d4-0ab00ea39c25", + "start": { + "$date": "2021-06-15T16:06:06.000Z" + }, + "end": { + "$date": "2021-06-15T16:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "266aff13-4a64-4973-8b49-17c0c0b1a4f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T17:36:28.000Z" + }, + "end": { + "$date": "2021-06-15T18:47:14.000Z" + }, + "events": [ + { + "uuid": "4740453a-0b40-465c-a567-3317c1ea896f", + "start": { + "$date": "2021-06-15T17:36:28.000Z" + }, + "end": { + "$date": "2021-06-15T18:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "c8e56a97-c1ae-44a1-ab70-b0922673b97f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T17:52:24.000Z" + }, + "end": { + "$date": "2021-06-15T19:02:31.000Z" + }, + "events": [ + { + "uuid": "72ff73bb-5fe7-4f3f-90d5-cf036cab0ab8", + "start": { + "$date": "2021-06-15T17:52:24.000Z" + }, + "end": { + "$date": "2021-06-15T19:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "35edd3ce-6e23-43ba-859f-728b6814a0be", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-15T19:27:51.000Z" + }, + "end": { + "$date": "2021-06-16T01:42:32.000Z" + }, + "events": [ + { + "uuid": "c9f1e6dc-be0c-4d80-9644-5505318cb64b", + "start": { + "$date": "2021-06-15T19:27:51.000Z" + }, + "end": { + "$date": "2021-06-16T01:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3ae97077-22bf-4aae-8a28-5e4984b7f188", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-15T19:36:49.000Z" + }, + "end": { + "$date": "2021-06-16T00:24:12.000Z" + }, + "events": [ + { + "uuid": "41e19c58-ef76-41a5-87be-08c3bf5a33cd", + "start": { + "$date": "2021-06-15T19:36:49.000Z" + }, + "end": { + "$date": "2021-06-16T00:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ed6adb99-60ab-4904-bcb6-0c2c46d10cd8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T20:35:04.000Z" + }, + "end": { + "$date": "2021-06-15T23:46:20.000Z" + }, + "events": [ + { + "uuid": "3dbb84bf-6fbe-4108-baca-925f7e6caa3e", + "start": { + "$date": "2021-06-15T20:35:04.000Z" + }, + "end": { + "$date": "2021-06-15T21:02:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d0847e4-cba6-4456-848d-8a4ad3489698", + "start": { + "$date": "2021-06-15T21:02:04.000Z" + }, + "end": { + "$date": "2021-06-15T21:10:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8592fcd6-20d2-48c4-b200-fe0fe1266d3b", + "start": { + "$date": "2021-06-15T21:10:04.000Z" + }, + "end": { + "$date": "2021-06-15T21:49:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6454f97f-8945-409c-9760-c7f138e58726", + "start": { + "$date": "2021-06-15T21:49:04.000Z" + }, + "end": { + "$date": "2021-06-15T21:52:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c524bc58-9ec8-4e3c-a3a3-978a8b9bbe29", + "start": { + "$date": "2021-06-15T21:52:04.000Z" + }, + "end": { + "$date": "2021-06-15T23:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "371454b1-3597-4585-b3b0-35a05aa87cd5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-15T21:56:52.000Z" + }, + "end": { + "$date": "2021-06-15T22:38:31.000Z" + }, + "events": [ + { + "uuid": "ff95b56e-24fa-4117-a874-a1221627abf3", + "start": { + "$date": "2021-06-15T21:56:52.000Z" + }, + "end": { + "$date": "2021-06-15T22:38:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "901cc764-5949-4d35-96da-200a0d92bef5", + "uuid": "62c47c19-8eb3-4771-b3d5-2e2732a90c1b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-15T22:15:39.000Z" + }, + "end": { + "$date": "2021-06-15T22:17:29.000Z" + }, + "events": [ + { + "uuid": "b47df54e-02c0-4a31-ba19-792d81f8a0aa", + "start": { + "$date": "2021-06-15T22:15:39.000Z" + }, + "end": { + "$date": "2021-06-15T22:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "88aa0928-eab8-4146-9250-31bad25ca180", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-15T22:21:29.000Z" + }, + "end": { + "$date": "2021-06-15T23:33:00.000Z" + }, + "events": [ + { + "uuid": "5c0a09cc-60da-4417-8ac0-cf319bc3daff", + "start": { + "$date": "2021-06-15T22:21:29.000Z" + }, + "end": { + "$date": "2021-06-15T23:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "378dddef-63ef-42f3-ac95-8825d1327043", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-15T23:36:12.000Z" + }, + "end": { + "$date": "2021-06-16T00:04:52.000Z" + }, + "events": [ + { + "uuid": "2f71e541-fe09-4e41-99f8-05de9c818e69", + "start": { + "$date": "2021-06-15T23:36:12.000Z" + }, + "end": { + "$date": "2021-06-16T00:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "255ba564-f7a0-4fe2-bda8-a8c092eb0b68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-15T23:35:41.000Z" + }, + "end": { + "$date": "2021-06-15T23:47:27.000Z" + }, + "events": [ + { + "uuid": "4cc287b1-7ed5-4260-a4f9-0e9437bc91cd", + "start": { + "$date": "2021-06-15T23:35:41.000Z" + }, + "end": { + "$date": "2021-06-15T23:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0502713-555c-4595-abe1-00508e18e185", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-15T23:47:36.000Z" + }, + "end": { + "$date": "2021-06-16T00:06:26.000Z" + }, + "events": [ + { + "uuid": "15a80d64-07a8-4ed9-b8c2-cf7fe7afc231", + "start": { + "$date": "2021-06-15T23:47:36.000Z" + }, + "end": { + "$date": "2021-06-16T00:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "1c193842-744a-47e8-8c29-e45de040e41a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-15T23:53:08.000Z" + }, + "end": { + "$date": "2021-06-16T00:43:29.000Z" + }, + "events": [ + { + "uuid": "cd944116-4f56-4036-a1bb-2ce2ffa97015", + "start": { + "$date": "2021-06-15T23:53:08.000Z" + }, + "end": { + "$date": "2021-06-16T00:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "048b9d77-2788-494d-9d3a-cafaf625a4a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-16T00:06:37.000Z" + }, + "end": { + "$date": "2021-06-16T01:37:55.000Z" + }, + "events": [ + { + "uuid": "0e2654e3-9674-4b9a-884b-7aed6ee1aa92", + "start": { + "$date": "2021-06-16T00:06:37.000Z" + }, + "end": { + "$date": "2021-06-16T00:50:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f1eb93f-c6b2-4ddd-bdd9-0537e6dfa6ff", + "start": { + "$date": "2021-06-16T00:50:37.000Z" + }, + "end": { + "$date": "2021-06-16T01:00:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2ba1d88-c24e-4182-86c0-15225a56e286", + "start": { + "$date": "2021-06-16T01:00:37.000Z" + }, + "end": { + "$date": "2021-06-16T01:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f4e88e7d-197b-486b-bc9c-49242935949b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-16T00:43:54.000Z" + }, + "end": { + "$date": "2021-06-16T00:56:34.000Z" + }, + "events": [ + { + "uuid": "6636abe0-1ec8-4c86-a0dc-3655048d0de0", + "start": { + "$date": "2021-06-16T00:43:54.000Z" + }, + "end": { + "$date": "2021-06-16T00:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "75dcb704-e727-4a5a-8ebb-c1a1a610748c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-16T01:26:38.000Z" + }, + "end": { + "$date": "2021-06-16T04:00:49.000Z" + }, + "events": [ + { + "uuid": "6dcec823-ddf6-4dbc-8639-0249e91355c0", + "start": { + "$date": "2021-06-16T01:26:38.000Z" + }, + "end": { + "$date": "2021-06-16T03:32:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ffcfe64-9f76-488e-bac9-de363f244110", + "start": { + "$date": "2021-06-16T03:32:38.000Z" + }, + "end": { + "$date": "2021-06-16T04:00:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63bd25d9-5689-41a8-b94e-734cfec470d9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-16T01:32:09.000Z" + }, + "end": { + "$date": "2021-06-16T02:24:05.000Z" + }, + "events": [ + { + "uuid": "503a8c3c-df37-46ae-8587-364411688899", + "start": { + "$date": "2021-06-16T01:32:09.000Z" + }, + "end": { + "$date": "2021-06-16T02:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "61ed7cc1-b1fb-42df-be04-5ecbd979ac65", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-16T01:46:11.000Z" + }, + "end": { + "$date": "2021-06-16T04:13:34.000Z" + }, + "events": [ + { + "uuid": "962550f9-e6da-4912-b149-c7f231f3f26f", + "start": { + "$date": "2021-06-16T01:46:11.000Z" + }, + "end": { + "$date": "2021-06-16T04:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a2ca3d4-6f9e-4e4d-b925-06af21cc5cc2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-16T03:34:38.000Z" + }, + "end": { + "$date": "2021-06-16T03:43:43.000Z" + }, + "events": [ + { + "uuid": "f19a3167-afcb-447f-a707-81a1880d4227", + "start": { + "$date": "2021-06-16T03:34:38.000Z" + }, + "end": { + "$date": "2021-06-16T03:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdc11292-76d1-4571-9ffc-a343395ea79e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-16T03:35:01.000Z" + }, + "end": { + "$date": "2021-06-16T03:43:41.000Z" + }, + "events": [ + { + "uuid": "4573eb6e-2f77-4c07-9ed8-a547ba0a425a", + "start": { + "$date": "2021-06-16T03:35:01.000Z" + }, + "end": { + "$date": "2021-06-16T03:43:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaafe92e-94ad-42e0-aefb-622843e27fa5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T03:34:38.000Z" + }, + "end": { + "$date": "2021-06-16T03:43:52.000Z" + }, + "events": [ + { + "uuid": "a0c38d85-6376-44b2-849b-764a2ce7ae90", + "start": { + "$date": "2021-06-16T03:34:38.000Z" + }, + "end": { + "$date": "2021-06-16T03:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f18e899-552e-4348-9184-77fa509a975a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-16T03:47:49.000Z" + }, + "end": { + "$date": "2021-06-16T04:07:04.000Z" + }, + "events": [ + { + "uuid": "997d0196-9e7b-4521-9ebc-c0bf63e9468a", + "start": { + "$date": "2021-06-16T03:47:49.000Z" + }, + "end": { + "$date": "2021-06-16T04:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d40d084d-38db-4cac-b161-3b7f4b03b786", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T03:47:19.000Z" + }, + "end": { + "$date": "2021-06-16T04:07:13.000Z" + }, + "events": [ + { + "uuid": "e5b0527b-6559-4be9-a18b-be80b10b4a9c", + "start": { + "$date": "2021-06-16T03:47:19.000Z" + }, + "end": { + "$date": "2021-06-16T04:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2223a88b-b4a1-4135-b698-43655de1f8ef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-16T03:48:06.000Z" + }, + "end": { + "$date": "2021-06-16T04:07:02.000Z" + }, + "events": [ + { + "uuid": "26551761-76e7-4b25-bb7b-e93a142a2b87", + "start": { + "$date": "2021-06-16T03:48:06.000Z" + }, + "end": { + "$date": "2021-06-16T04:07:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3149d08e-0777-420f-ac29-9ce3ff326bfb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-16T04:00:59.000Z" + }, + "end": { + "$date": "2021-06-16T12:48:35.000Z" + }, + "events": [ + { + "uuid": "4004daf6-8483-4c8c-bc6c-7d11353f4ae4", + "start": { + "$date": "2021-06-16T04:00:59.000Z" + }, + "end": { + "$date": "2021-06-16T04:10:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae007dd7-7e4d-487d-8901-96bba7fd5bb6", + "start": { + "$date": "2021-06-16T04:10:59.000Z" + }, + "end": { + "$date": "2021-06-16T04:33:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a9d01a4-6a7e-45d0-aeb9-560089d4ed29", + "start": { + "$date": "2021-06-16T04:33:59.000Z" + }, + "end": { + "$date": "2021-06-16T04:35:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8f5df73-a9c9-41af-9319-28fbdd131b40", + "start": { + "$date": "2021-06-16T04:35:59.000Z" + }, + "end": { + "$date": "2021-06-16T12:48:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2107e407-9e35-4a0a-926b-de2246dce2c7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-16T04:11:09.000Z" + }, + "end": { + "$date": "2021-06-16T04:23:59.000Z" + }, + "events": [ + { + "uuid": "d4841308-226d-44b7-87dc-af8ddb6b61eb", + "start": { + "$date": "2021-06-16T04:11:09.000Z" + }, + "end": { + "$date": "2021-06-16T04:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6974ef2b-f958-4bc2-b464-62c31590b999", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-16T04:11:27.000Z" + }, + "end": { + "$date": "2021-06-16T04:24:02.000Z" + }, + "events": [ + { + "uuid": "cb060071-7a57-49a1-a6a2-4ea5eee026ae", + "start": { + "$date": "2021-06-16T04:11:27.000Z" + }, + "end": { + "$date": "2021-06-16T04:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3d3729f-102c-45e1-923a-628b3b43e283", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T04:10:50.000Z" + }, + "end": { + "$date": "2021-06-16T04:24:12.000Z" + }, + "events": [ + { + "uuid": "b3ffaa7a-544f-48f7-8f76-3970f100530b", + "start": { + "$date": "2021-06-16T04:10:50.000Z" + }, + "end": { + "$date": "2021-06-16T04:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9384e545-e622-446c-8a97-f074729aeafb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-16T04:27:40.000Z" + }, + "end": { + "$date": "2021-06-16T04:47:10.000Z" + }, + "events": [ + { + "uuid": "e5e11131-5e9b-49a0-8427-3423a9c3bcb2", + "start": { + "$date": "2021-06-16T04:27:40.000Z" + }, + "end": { + "$date": "2021-06-16T04:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9037b507-6a4d-4566-acb1-620d9203ee3c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-16T04:27:12.000Z" + }, + "end": { + "$date": "2021-06-16T04:47:13.000Z" + }, + "events": [ + { + "uuid": "4fd49998-ca1b-4bac-971d-3af4110eba73", + "start": { + "$date": "2021-06-16T04:27:12.000Z" + }, + "end": { + "$date": "2021-06-16T04:47:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28e5871f-645f-4f99-a335-f58564824de2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T04:27:16.000Z" + }, + "end": { + "$date": "2021-06-16T04:47:19.000Z" + }, + "events": [ + { + "uuid": "948dd5b0-f40b-4985-afcd-038350b1537c", + "start": { + "$date": "2021-06-16T04:27:16.000Z" + }, + "end": { + "$date": "2021-06-16T04:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "652c770d-855b-4e27-94bb-d54c0648854a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-16T04:31:29.000Z" + }, + "end": { + "$date": "2021-06-16T04:59:41.000Z" + }, + "events": [ + { + "uuid": "66b39b7c-0c6d-403b-8838-caf255af4fa5", + "start": { + "$date": "2021-06-16T04:31:29.000Z" + }, + "end": { + "$date": "2021-06-16T04:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "6e86f8c0-9118-40ac-9771-c587052d5c12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-16T04:32:20.000Z" + }, + "end": { + "$date": "2021-06-16T05:10:22.000Z" + }, + "events": [ + { + "uuid": "8bc3facb-80ab-414d-a226-57566b188514", + "start": { + "$date": "2021-06-16T04:32:20.000Z" + }, + "end": { + "$date": "2021-06-16T05:10:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c3d0d42b-3ec2-4204-8eba-054d4dc6e2f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-16T05:03:24.000Z" + }, + "end": { + "$date": "2021-06-16T06:43:48.000Z" + }, + "events": [ + { + "uuid": "6c6904c4-c64d-4cab-be91-82333efdb842", + "start": { + "$date": "2021-06-16T05:03:24.000Z" + }, + "end": { + "$date": "2021-06-16T06:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c155e4b-117b-410e-b1ab-f6be01b53da2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-16T05:09:53.000Z" + }, + "end": { + "$date": "2021-06-16T05:41:12.000Z" + }, + "events": [ + { + "uuid": "7c4e3370-488b-4750-a059-6f53c3ec9959", + "start": { + "$date": "2021-06-16T05:09:53.000Z" + }, + "end": { + "$date": "2021-06-16T05:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ca57d259-1bc4-4f05-ad73-09d761427a95", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T05:08:06.000Z" + }, + "end": { + "$date": "2021-06-16T05:10:25.000Z" + }, + "events": [ + { + "uuid": "6bd87c14-90ff-4e80-91e3-e9585764c390", + "start": { + "$date": "2021-06-16T05:08:06.000Z" + }, + "end": { + "$date": "2021-06-16T05:10:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d985bf3f-4554-42ce-8469-128b80a64e90", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T05:08:06.000Z" + }, + "end": { + "$date": "2021-06-16T05:14:01.000Z" + }, + "events": [ + { + "uuid": "c55ce496-133e-4a77-858c-e33bd37ea7cb", + "start": { + "$date": "2021-06-16T05:08:06.000Z" + }, + "end": { + "$date": "2021-06-16T05:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bc512162-d64a-4568-a3e9-74505423469f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T05:17:34.000Z" + }, + "end": { + "$date": "2021-06-16T06:21:38.000Z" + }, + "events": [ + { + "uuid": "c1686db7-db63-4474-89ef-c8851c4b86dd", + "start": { + "$date": "2021-06-16T05:17:34.000Z" + }, + "end": { + "$date": "2021-06-16T06:21:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c50def7-f7a4-4a42-8e46-294d50d9b6d1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-16T05:47:59.000Z" + }, + "end": { + "$date": "2021-06-16T06:14:39.000Z" + }, + "events": [ + { + "uuid": "6a80acd6-4ace-4e08-b029-07c5e98cabe9", + "start": { + "$date": "2021-06-16T05:47:59.000Z" + }, + "end": { + "$date": "2021-06-16T06:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "08a3d90b-e87e-4d5a-9700-23e77f1a2f04", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T05:51:02.000Z" + }, + "end": { + "$date": "2021-06-16T06:12:48.000Z" + }, + "events": [ + { + "uuid": "f290ecfe-6678-4bfc-9fe3-47e4b9ea41e5", + "start": { + "$date": "2021-06-16T05:51:02.000Z" + }, + "end": { + "$date": "2021-06-16T06:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "aea18e27-dfd8-4e13-bdd1-202d9ecfd83b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T06:17:13.000Z" + }, + "end": { + "$date": "2021-06-16T06:19:13.000Z" + }, + "events": [ + { + "uuid": "6adedcb5-2754-4398-8491-8e707343e8c1", + "start": { + "$date": "2021-06-16T06:17:13.000Z" + }, + "end": { + "$date": "2021-06-16T06:19:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "84e71dc0-9dd5-45ea-8445-a9f50299f811", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T06:26:12.000Z" + }, + "end": { + "$date": "2021-06-16T06:27:39.000Z" + }, + "events": [ + { + "uuid": "d814e33f-9636-4f4a-a80e-3e714cff4f8b", + "start": { + "$date": "2021-06-16T06:26:12.000Z" + }, + "end": { + "$date": "2021-06-16T06:27:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e89d9d61-0ebc-45dd-98db-e98e83651ff0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T06:28:19.000Z" + }, + "end": { + "$date": "2021-06-16T06:30:39.000Z" + }, + "events": [ + { + "uuid": "f2d223ab-1bd2-4935-8e9e-32e9ec17c2e7", + "start": { + "$date": "2021-06-16T06:28:19.000Z" + }, + "end": { + "$date": "2021-06-16T06:30:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5a5862d6-378f-4cec-919c-2f0441b4f454", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T06:30:46.000Z" + }, + "end": { + "$date": "2021-06-16T06:32:07.000Z" + }, + "events": [ + { + "uuid": "acf4162d-bd7a-458e-a4e7-f298f8b4f1c9", + "start": { + "$date": "2021-06-16T06:30:46.000Z" + }, + "end": { + "$date": "2021-06-16T06:32:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "124131a0-4c35-476e-8dc8-2430beee3328", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T06:32:09.000Z" + }, + "end": { + "$date": "2021-06-16T06:35:42.000Z" + }, + "events": [ + { + "uuid": "a8e8245c-37eb-4232-9d10-b268bca3402f", + "start": { + "$date": "2021-06-16T06:32:09.000Z" + }, + "end": { + "$date": "2021-06-16T06:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "049d9c4a-495c-4e97-a9c8-faf5ba6e0169", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T06:58:26.000Z" + }, + "end": { + "$date": "2021-06-16T10:22:27.000Z" + }, + "events": [ + { + "uuid": "93a5548a-da1e-41dd-93f2-c55c46bd741e", + "start": { + "$date": "2021-06-16T06:58:26.000Z" + }, + "end": { + "$date": "2021-06-16T10:22:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "8d8d7db2-3880-4cfb-81bb-fcf88d3c92e3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-16T09:14:46.000Z" + }, + "end": { + "$date": "2021-06-16T10:07:50.000Z" + }, + "events": [ + { + "uuid": "f3a239ce-bb92-4886-90b0-2f83b71e7d36", + "start": { + "$date": "2021-06-16T09:14:46.000Z" + }, + "end": { + "$date": "2021-06-16T10:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ca75fba6-d232-4052-a476-d88ef1e51142", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-16T12:48:55.000Z" + }, + "end": { + "$date": "2021-06-16T13:19:07.000Z" + }, + "events": [ + { + "uuid": "4963baee-2fb9-485d-98b7-0e08cc7790ea", + "start": { + "$date": "2021-06-16T12:48:55.000Z" + }, + "end": { + "$date": "2021-06-16T13:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "e181992c-6945-41bc-bf2f-f9b0a8b51044", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-16T15:20:36.000Z" + }, + "end": { + "$date": "2021-06-16T18:18:18.000Z" + }, + "events": [ + { + "uuid": "6d850e0e-99aa-4b78-aa71-a9d3469a5622", + "start": { + "$date": "2021-06-16T15:20:36.000Z" + }, + "end": { + "$date": "2021-06-16T18:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f5884e38-2487-4338-94e9-f37d1110417b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T16:06:45.000Z" + }, + "end": { + "$date": "2021-06-16T16:26:22.000Z" + }, + "events": [ + { + "uuid": "33cb1385-6948-4e38-b58b-d787319a82a4", + "start": { + "$date": "2021-06-16T16:06:45.000Z" + }, + "end": { + "$date": "2021-06-16T16:26:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "339aae84-f689-4eff-b7d4-75ccf48b72ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T16:30:34.000Z" + }, + "end": { + "$date": "2021-06-16T16:51:56.000Z" + }, + "events": [ + { + "uuid": "32e61aca-c03a-413a-b201-6a111ca5ae9c", + "start": { + "$date": "2021-06-16T16:30:34.000Z" + }, + "end": { + "$date": "2021-06-16T16:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c458be2b-d49c-4910-b4ed-8075023a7cb3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T16:57:36.000Z" + }, + "end": { + "$date": "2021-06-16T17:14:06.000Z" + }, + "events": [ + { + "uuid": "c2c4af07-e188-4270-954e-ad4f921b0e71", + "start": { + "$date": "2021-06-16T16:57:36.000Z" + }, + "end": { + "$date": "2021-06-16T17:14:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "24946a43-e8c8-4517-b2b0-28c592e429a6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T17:15:58.000Z" + }, + "end": { + "$date": "2021-06-16T18:59:00.000Z" + }, + "events": [ + { + "uuid": "92c3ada7-23e0-4d32-86d3-a39a011ba57e", + "start": { + "$date": "2021-06-16T17:15:58.000Z" + }, + "end": { + "$date": "2021-06-16T18:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1fd91a8e-ea8b-47d9-ba17-6c88e0686729", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-16T18:35:01.000Z" + }, + "end": { + "$date": "2021-06-16T19:41:23.000Z" + }, + "events": [ + { + "uuid": "be18f2f8-5bf8-4344-a162-b276a7c30214", + "start": { + "$date": "2021-06-16T18:35:01.000Z" + }, + "end": { + "$date": "2021-06-16T19:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "452ae3ca-cdb4-4a3a-99ba-2cae3560bcb5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-16T19:51:46.000Z" + }, + "end": { + "$date": "2021-06-16T21:08:12.000Z" + }, + "events": [ + { + "uuid": "1498b3be-c44d-499d-afd9-b088b2a1bab0", + "start": { + "$date": "2021-06-16T19:51:46.000Z" + }, + "end": { + "$date": "2021-06-16T21:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "9b22579c-8f75-4586-bb69-448deb6cc1da", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-16T19:56:35.000Z" + }, + "end": { + "$date": "2021-06-16T20:32:57.000Z" + }, + "events": [ + { + "uuid": "c6630136-1081-42c5-9096-b090430a04b5", + "start": { + "$date": "2021-06-16T19:56:35.000Z" + }, + "end": { + "$date": "2021-06-16T20:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9ae410aa-f584-44e6-8318-d4a22987f297", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-16T20:26:52.000Z" + }, + "end": { + "$date": "2021-06-16T21:46:01.000Z" + }, + "events": [ + { + "uuid": "086b6d90-e6ce-4834-a7cb-26a45de1ac13", + "start": { + "$date": "2021-06-16T20:26:52.000Z" + }, + "end": { + "$date": "2021-06-16T21:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b7c6403a-2b0d-456b-bcc5-293cc4743f0e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-16T21:04:19.000Z" + }, + "end": { + "$date": "2021-06-17T06:10:18.000Z" + }, + "events": [ + { + "uuid": "e312bcf7-5485-4dbc-ab23-de49432376fc", + "start": { + "$date": "2021-06-16T21:04:19.000Z" + }, + "end": { + "$date": "2021-06-16T22:16:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab82b8a1-bb75-4ed4-a80e-83e779abd05e", + "start": { + "$date": "2021-06-16T22:16:19.000Z" + }, + "end": { + "$date": "2021-06-16T22:31:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "718c3edf-fc48-4a10-8418-56f96665b078", + "start": { + "$date": "2021-06-16T22:31:19.000Z" + }, + "end": { + "$date": "2021-06-17T03:53:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a14b68b-f2cf-4cd6-ad23-56fa500111a3", + "start": { + "$date": "2021-06-17T03:53:19.000Z" + }, + "end": { + "$date": "2021-06-17T03:58:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "25c30315-de91-4ea1-abf7-8391e76644b9", + "start": { + "$date": "2021-06-17T03:58:19.000Z" + }, + "end": { + "$date": "2021-06-17T04:08:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c56a16b2-622b-41fc-903a-57169ea992c0", + "start": { + "$date": "2021-06-17T04:08:19.000Z" + }, + "end": { + "$date": "2021-06-17T04:13:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e9e0c8a-1319-409b-a595-b65e6543b7cc", + "start": { + "$date": "2021-06-17T04:13:19.000Z" + }, + "end": { + "$date": "2021-06-17T06:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ce19c72e-39d1-4623-b03c-fcf9ab8cc143", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-16T21:11:43.000Z" + }, + "end": { + "$date": "2021-06-16T23:48:27.000Z" + }, + "events": [ + { + "uuid": "57179945-719d-4913-bf53-6f26d0cf331d", + "start": { + "$date": "2021-06-16T21:11:43.000Z" + }, + "end": { + "$date": "2021-06-16T23:48:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "461a56f0-a522-45bd-b22c-d21825e6465c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-16T21:12:47.000Z" + }, + "end": { + "$date": "2021-06-16T22:10:06.000Z" + }, + "events": [ + { + "uuid": "6df111bf-3ab7-4f3b-98ba-a0f1b658f270", + "start": { + "$date": "2021-06-16T21:12:47.000Z" + }, + "end": { + "$date": "2021-06-16T22:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "72c183cb-532c-4627-8c4d-fdfb70b10c28", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-16T21:47:17.000Z" + }, + "end": { + "$date": "2021-06-16T22:02:29.000Z" + }, + "events": [ + { + "uuid": "bb8af639-3308-44c6-a0e4-c4725938c6e1", + "start": { + "$date": "2021-06-16T21:47:17.000Z" + }, + "end": { + "$date": "2021-06-16T22:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "66f809b5-960c-4c6f-8916-e18106e2080f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-16T21:54:12.000Z" + }, + "end": { + "$date": "2021-06-16T22:06:35.000Z" + }, + "events": [ + { + "uuid": "cbdb4084-f496-4f9a-84c8-fe64d71ee160", + "start": { + "$date": "2021-06-16T21:54:12.000Z" + }, + "end": { + "$date": "2021-06-16T22:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0bd3d8d1-3f41-4e39-bad9-1d43d0a3de10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-16T22:10:15.000Z" + }, + "end": { + "$date": "2021-06-16T22:48:16.000Z" + }, + "events": [ + { + "uuid": "67594336-a6c9-453d-bb48-2c85e5edf09a", + "start": { + "$date": "2021-06-16T22:10:15.000Z" + }, + "end": { + "$date": "2021-06-16T22:48:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0690c3d1-7bf2-4446-9350-184a36d8c08e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-16T22:17:43.000Z" + }, + "end": { + "$date": "2021-06-16T23:26:15.000Z" + }, + "events": [ + { + "uuid": "6c19ebb6-73c1-4b18-89a9-fa325ade91f1", + "start": { + "$date": "2021-06-16T22:17:43.000Z" + }, + "end": { + "$date": "2021-06-16T23:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2a640d7d-ca52-4326-b288-33af01a41ffc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-16T22:52:29.000Z" + }, + "end": { + "$date": "2021-06-16T22:53:34.000Z" + }, + "events": [ + { + "uuid": "7d7669d8-3786-408b-b1f7-47eec8e7485b", + "start": { + "$date": "2021-06-16T22:52:29.000Z" + }, + "end": { + "$date": "2021-06-16T22:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "029b3662-5b02-410c-9071-44e22fa7cd07", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-16T22:53:44.000Z" + }, + "end": { + "$date": "2021-06-16T22:55:55.000Z" + }, + "events": [ + { + "uuid": "e9d52755-0e7b-4fb2-b5dc-b75097138bdf", + "start": { + "$date": "2021-06-16T22:53:44.000Z" + }, + "end": { + "$date": "2021-06-16T22:55:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "06ba5cb3-1d9b-405d-8616-6eb3f153ca73", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-16T22:56:00.000Z" + }, + "end": { + "$date": "2021-06-16T23:54:20.000Z" + }, + "events": [ + { + "uuid": "1cd738af-226c-4c9b-9724-8bdb43d8777a", + "start": { + "$date": "2021-06-16T22:56:00.000Z" + }, + "end": { + "$date": "2021-06-16T23:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "507b5951-a773-4647-895e-ab50e6bd3103", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-16T23:44:42.000Z" + }, + "end": { + "$date": "2021-06-17T10:11:02.000Z" + }, + "events": [ + { + "uuid": "2bfca79f-45f2-4269-998a-9d11c328830b", + "start": { + "$date": "2021-06-16T23:44:42.000Z" + }, + "end": { + "$date": "2021-06-17T00:23:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea14c422-ccd1-45f8-ad7b-8e0c55fd81fd", + "start": { + "$date": "2021-06-17T00:23:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:13:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48d22dd0-266d-4a64-b73c-924fb3bb5009", + "start": { + "$date": "2021-06-17T01:13:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:23:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3dd2e5f8-5e89-437a-937f-c9cfda5f6100", + "start": { + "$date": "2021-06-17T01:23:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:26:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18010a7e-09e5-4227-80e1-930ebc9fc913", + "start": { + "$date": "2021-06-17T01:26:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:29:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "663f0ec0-b408-4191-9de4-9a5719aec9cb", + "start": { + "$date": "2021-06-17T01:29:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:49:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb2ea0e9-e50e-495d-a27b-4b959f741da4", + "start": { + "$date": "2021-06-17T01:49:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:51:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de0baa54-8cac-41f6-ab60-795968cb3cca", + "start": { + "$date": "2021-06-17T01:51:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:54:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "857422c8-5976-42b7-a70f-d759517d853d", + "start": { + "$date": "2021-06-17T01:54:42.000Z" + }, + "end": { + "$date": "2021-06-17T01:56:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31292956-7c00-4ad6-94d8-0889f549bea4", + "start": { + "$date": "2021-06-17T01:56:42.000Z" + }, + "end": { + "$date": "2021-06-17T03:02:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "acd7dc72-51bc-43a0-85a6-92f9bece4912", + "start": { + "$date": "2021-06-17T03:02:42.000Z" + }, + "end": { + "$date": "2021-06-17T03:04:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c24930c1-5eb2-4625-977f-c51c4e04b853", + "start": { + "$date": "2021-06-17T03:04:42.000Z" + }, + "end": { + "$date": "2021-06-17T03:12:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba36d2ac-60f6-4665-b4b2-ff798cc57334", + "start": { + "$date": "2021-06-17T03:12:42.000Z" + }, + "end": { + "$date": "2021-06-17T03:16:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5fe6e7a-06dc-489b-a136-bd0575145bfc", + "start": { + "$date": "2021-06-17T03:16:42.000Z" + }, + "end": { + "$date": "2021-06-17T03:23:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6245db9a-637b-4185-a61c-9dcf1b9dd094", + "start": { + "$date": "2021-06-17T03:23:42.000Z" + }, + "end": { + "$date": "2021-06-17T03:33:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13294023-e46c-4d6a-bfdf-31932d6cdae6", + "start": { + "$date": "2021-06-17T03:33:42.000Z" + }, + "end": { + "$date": "2021-06-17T04:02:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "daa2e142-8b13-401c-8464-cf21755e5737", + "start": { + "$date": "2021-06-17T04:02:42.000Z" + }, + "end": { + "$date": "2021-06-17T04:04:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "820b8ebd-9a35-4e40-bd42-f4cee35163e0", + "start": { + "$date": "2021-06-17T04:04:42.000Z" + }, + "end": { + "$date": "2021-06-17T04:33:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "26f5b1ce-3b18-427d-b2a5-faad48cb1695", + "start": { + "$date": "2021-06-17T04:33:42.000Z" + }, + "end": { + "$date": "2021-06-17T04:36:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2adf7577-6dce-420a-8b8a-cbbcdd2ebee2", + "start": { + "$date": "2021-06-17T04:36:42.000Z" + }, + "end": { + "$date": "2021-06-17T05:08:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a06ce9c6-a8c9-482f-b0b7-86de3fed926e", + "start": { + "$date": "2021-06-17T05:08:42.000Z" + }, + "end": { + "$date": "2021-06-17T05:10:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "354bb650-5465-4014-8ac9-6b5703651659", + "start": { + "$date": "2021-06-17T05:10:42.000Z" + }, + "end": { + "$date": "2021-06-17T07:15:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0adca180-76c8-4ff2-8ea1-b95d6863de96", + "start": { + "$date": "2021-06-17T07:15:42.000Z" + }, + "end": { + "$date": "2021-06-17T07:25:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c663697-4dfb-480c-aa1a-7c38f46aa00c", + "start": { + "$date": "2021-06-17T07:25:42.000Z" + }, + "end": { + "$date": "2021-06-17T08:23:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aab34f4a-65b7-4095-9793-a266449c2a24", + "start": { + "$date": "2021-06-17T08:23:42.000Z" + }, + "end": { + "$date": "2021-06-17T08:33:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "646e0a1d-3829-46f8-b557-edc33f2d22f0", + "start": { + "$date": "2021-06-17T08:33:42.000Z" + }, + "end": { + "$date": "2021-06-17T10:09:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ecdd629c-f374-4959-8203-53693f87821f", + "start": { + "$date": "2021-06-17T10:09:42.000Z" + }, + "end": { + "$date": "2021-06-17T10:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c0c4d95-927e-4b6c-9eea-cc3bb322f144", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-17T00:16:47.000Z" + }, + "end": { + "$date": "2021-06-17T02:07:34.000Z" + }, + "events": [ + { + "uuid": "499f22cf-136a-4041-8ba5-505a5ef727e8", + "start": { + "$date": "2021-06-17T00:16:47.000Z" + }, + "end": { + "$date": "2021-06-17T01:07:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af480239-8270-4deb-ae95-57870fd8045a", + "start": { + "$date": "2021-06-17T01:07:47.000Z" + }, + "end": { + "$date": "2021-06-17T01:18:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a47f4d74-d0de-4282-be1b-59f4246b2201", + "start": { + "$date": "2021-06-17T01:18:47.000Z" + }, + "end": { + "$date": "2021-06-17T01:32:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "355fb667-68f5-4162-9f90-0fde5c993efa", + "start": { + "$date": "2021-06-17T01:32:47.000Z" + }, + "end": { + "$date": "2021-06-17T02:07:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "11d1a066-8e0d-49bb-899c-f2e1f0236de2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-17T00:36:25.000Z" + }, + "end": { + "$date": "2021-06-17T03:40:45.000Z" + }, + "events": [ + { + "uuid": "0d63aa44-f9f9-429d-9775-8f58eceed98f", + "start": { + "$date": "2021-06-17T00:36:25.000Z" + }, + "end": { + "$date": "2021-06-17T03:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "898a6a21-0648-494f-8663-affd60fce6c1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-17T00:44:08.000Z" + }, + "end": { + "$date": "2021-06-17T00:59:40.000Z" + }, + "events": [ + { + "uuid": "98017fcc-af75-4915-86e9-dff6d0ba79ec", + "start": { + "$date": "2021-06-17T00:44:08.000Z" + }, + "end": { + "$date": "2021-06-17T00:59:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ec9b6b2e-466c-4f06-b72b-3116fa59ecbf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T01:01:35.000Z" + }, + "end": { + "$date": "2021-06-17T01:03:40.000Z" + }, + "events": [ + { + "uuid": "1f998db2-37b0-4a8d-b702-11894834b080", + "start": { + "$date": "2021-06-17T01:01:35.000Z" + }, + "end": { + "$date": "2021-06-17T01:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08355822-da59-4ccb-ba3a-9d5a9fae8cac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T01:04:15.000Z" + }, + "end": { + "$date": "2021-06-17T01:21:45.000Z" + }, + "events": [ + { + "uuid": "ce86e1b5-60ec-48e6-8705-fdcbef920a63", + "start": { + "$date": "2021-06-17T01:04:15.000Z" + }, + "end": { + "$date": "2021-06-17T01:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "127058b5-5dd1-4a67-8b7a-417faaad419a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-17T01:16:02.000Z" + }, + "end": { + "$date": "2021-06-17T03:50:28.000Z" + }, + "events": [ + { + "uuid": "9d834ec7-da01-4d58-bf74-aa43b58138a9", + "start": { + "$date": "2021-06-17T01:16:02.000Z" + }, + "end": { + "$date": "2021-06-17T02:23:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa8f2e7c-7770-4d74-9568-9d606f2dd8eb", + "start": { + "$date": "2021-06-17T02:23:02.000Z" + }, + "end": { + "$date": "2021-06-17T02:31:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a41a4f3-5b01-4134-ae46-067220571532", + "start": { + "$date": "2021-06-17T02:31:02.000Z" + }, + "end": { + "$date": "2021-06-17T03:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "5e342591-3f6b-4e2c-b0ce-6c63da854a58", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T01:23:36.000Z" + }, + "end": { + "$date": "2021-06-17T03:46:11.000Z" + }, + "events": [ + { + "uuid": "0549c525-1415-4519-b6df-96f5f722b512", + "start": { + "$date": "2021-06-17T01:23:36.000Z" + }, + "end": { + "$date": "2021-06-17T03:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "014f044a-c0b4-4e61-a377-2a9d1ff41f62", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-17T01:27:23.000Z" + }, + "end": { + "$date": "2021-06-17T04:56:07.000Z" + }, + "events": [ + { + "uuid": "fa14980e-7d6c-4240-879a-c2ef0ab77574", + "start": { + "$date": "2021-06-17T01:27:23.000Z" + }, + "end": { + "$date": "2021-06-17T04:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e319bf05-5b0d-47a3-bdd0-3919087ce790", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-17T02:27:43.000Z" + }, + "end": { + "$date": "2021-06-17T03:59:59.000Z" + }, + "events": [ + { + "uuid": "b2ddf45c-a907-4bfd-bcc6-bf6f4a9fe355", + "start": { + "$date": "2021-06-17T02:27:43.000Z" + }, + "end": { + "$date": "2021-06-17T03:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "35761dbd-53e3-4f21-a1f4-defc5299e6da", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-17T02:37:19.000Z" + }, + "end": { + "$date": "2021-06-17T03:21:00.000Z" + }, + "events": [ + { + "uuid": "5b97e90e-9bb6-47e6-b994-f33dd6dc7a2a", + "start": { + "$date": "2021-06-17T02:37:19.000Z" + }, + "end": { + "$date": "2021-06-17T03:21:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "20323a68-ae7c-43a1-afd9-7c38210e86ae", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-17T03:21:24.000Z" + }, + "end": { + "$date": "2021-06-17T07:02:22.000Z" + }, + "events": [ + { + "uuid": "56e4abb0-b1ba-464b-ae94-c92ae7fbf19a", + "start": { + "$date": "2021-06-17T03:21:24.000Z" + }, + "end": { + "$date": "2021-06-17T07:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bbdf7098-5d9f-4810-a88c-7b0ec8becfa4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T03:48:36.000Z" + }, + "end": { + "$date": "2021-06-17T05:01:25.000Z" + }, + "events": [ + { + "uuid": "858b1cda-3bec-471f-9aa4-af66c3ef797b", + "start": { + "$date": "2021-06-17T03:48:36.000Z" + }, + "end": { + "$date": "2021-06-17T05:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87f73a5a-28da-4efd-a0d2-9bf93c65a8cd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-17T03:51:23.000Z" + }, + "end": { + "$date": "2021-06-17T05:31:32.000Z" + }, + "events": [ + { + "uuid": "cf3299a3-914a-4e1e-85a1-924d1fd4865e", + "start": { + "$date": "2021-06-17T03:51:23.000Z" + }, + "end": { + "$date": "2021-06-17T05:31:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "bb9e5438-841d-4abc-b488-b3a74611ab01", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-17T04:00:59.000Z" + }, + "end": { + "$date": "2021-06-17T04:30:39.000Z" + }, + "events": [ + { + "uuid": "b9105f6c-6e99-47a2-9936-7b4f049ced37", + "start": { + "$date": "2021-06-17T04:00:59.000Z" + }, + "end": { + "$date": "2021-06-17T04:30:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "399f52a3-6759-4971-b351-e46146ffa06b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-17T04:31:51.000Z" + }, + "end": { + "$date": "2021-06-17T05:31:57.000Z" + }, + "events": [ + { + "uuid": "b83fd080-938c-4d48-b81c-6211ce65705b", + "start": { + "$date": "2021-06-17T04:31:51.000Z" + }, + "end": { + "$date": "2021-06-17T05:31:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c6899ebc-aa98-41a6-b9a8-7939fc1e3636", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T05:01:59.000Z" + }, + "end": { + "$date": "2021-06-17T07:02:20.000Z" + }, + "events": [ + { + "uuid": "379223f6-65a1-44e3-a187-bbc335fb8279", + "start": { + "$date": "2021-06-17T05:01:59.000Z" + }, + "end": { + "$date": "2021-06-17T07:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "995470e1-a6d5-4347-a6ec-fa18f94754b5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-17T05:34:29.000Z" + }, + "end": { + "$date": "2021-06-17T06:14:00.000Z" + }, + "events": [ + { + "uuid": "8068d35c-8c00-4785-ae8a-e4082c9fb853", + "start": { + "$date": "2021-06-17T05:34:29.000Z" + }, + "end": { + "$date": "2021-06-17T06:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6bdc634e-e84a-4c9f-b4e2-9eb8725af9a0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-17T05:44:51.000Z" + }, + "end": { + "$date": "2021-06-17T07:03:44.000Z" + }, + "events": [ + { + "uuid": "5ac6e2e4-7072-42b1-8c3d-f04669fe6d5c", + "start": { + "$date": "2021-06-17T05:44:51.000Z" + }, + "end": { + "$date": "2021-06-17T07:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "57d76257-8a56-4e3e-8fa5-4d6b7ecdf207", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-17T05:45:53.000Z" + }, + "end": { + "$date": "2021-06-17T07:59:48.000Z" + }, + "events": [ + { + "uuid": "25c1f868-71f4-4b03-8f5d-397f2324b693", + "start": { + "$date": "2021-06-17T05:45:53.000Z" + }, + "end": { + "$date": "2021-06-17T07:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "82a8830a-f151-474a-af99-a7b7a90142ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-17T06:10:38.000Z" + }, + "end": { + "$date": "2021-06-17T09:49:18.000Z" + }, + "events": [ + { + "uuid": "cdcf3f47-e40a-4bcf-aac8-75ec94e0b221", + "start": { + "$date": "2021-06-17T06:10:38.000Z" + }, + "end": { + "$date": "2021-06-17T09:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edfe21fa-636e-43c2-b3f2-4b70869d4483", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-17T06:25:21.000Z" + }, + "end": { + "$date": "2021-06-17T06:54:01.000Z" + }, + "events": [ + { + "uuid": "d49db8ea-4f6d-4e07-b345-88ebf7e762f5", + "start": { + "$date": "2021-06-17T06:25:21.000Z" + }, + "end": { + "$date": "2021-06-17T06:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "79b81ee5-1a2b-4faa-9768-925322d55b78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-17T10:05:29.000Z" + }, + "end": { + "$date": "2021-06-17T10:37:50.000Z" + }, + "events": [ + { + "uuid": "1c2aa4de-a9a2-4b0a-86ca-fcd3bec4acb5", + "start": { + "$date": "2021-06-17T10:05:29.000Z" + }, + "end": { + "$date": "2021-06-17T10:37:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ad6949d-75f2-407b-9554-e5d75819f283", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-17T12:52:42.000Z" + }, + "end": { + "$date": "2021-06-17T13:00:59.000Z" + }, + "events": [ + { + "uuid": "bca5e18f-ccb6-4eb5-81d2-15afaa279cfe", + "start": { + "$date": "2021-06-17T12:52:42.000Z" + }, + "end": { + "$date": "2021-06-17T13:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "9e4167d8-d8fc-40cd-9f70-699c12b9cab1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-17T13:07:15.000Z" + }, + "end": { + "$date": "2021-06-17T13:19:31.000Z" + }, + "events": [ + { + "uuid": "7de15d82-5b00-4ca9-94c4-10559522f9c9", + "start": { + "$date": "2021-06-17T13:07:15.000Z" + }, + "end": { + "$date": "2021-06-17T13:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "46183c41-399d-4547-a1a2-93284e741809", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-17T13:57:24.000Z" + }, + "end": { + "$date": "2021-06-17T19:50:13.000Z" + }, + "events": [ + { + "uuid": "621e38d0-814c-4ec1-a855-d71b2673d9e5", + "start": { + "$date": "2021-06-17T13:57:24.000Z" + }, + "end": { + "$date": "2021-06-17T15:18:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9666f178-bc02-4ad4-b333-27fa1d5e8388", + "start": { + "$date": "2021-06-17T15:18:24.000Z" + }, + "end": { + "$date": "2021-06-17T15:30:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ccfc38df-41b5-4bcc-b90c-ed2e8517b5c4", + "start": { + "$date": "2021-06-17T15:30:24.000Z" + }, + "end": { + "$date": "2021-06-17T18:56:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d14a0514-412b-4b99-bf69-7d3e2bccec5d", + "start": { + "$date": "2021-06-17T18:56:24.000Z" + }, + "end": { + "$date": "2021-06-17T19:07:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a5a50b0b-b474-4bec-a339-a5d57fbdb7b1", + "start": { + "$date": "2021-06-17T19:07:24.000Z" + }, + "end": { + "$date": "2021-06-17T19:13:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a359e66b-40f4-4210-9ad6-8d5918111254", + "start": { + "$date": "2021-06-17T19:13:24.000Z" + }, + "end": { + "$date": "2021-06-17T19:50:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "253e36d1-9ee7-4d8b-82de-846eed8f2e9d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-17T15:47:19.000Z" + }, + "end": { + "$date": "2021-06-17T16:08:18.000Z" + }, + "events": [ + { + "uuid": "938d9531-c74a-4c98-954d-b391d754d4a6", + "start": { + "$date": "2021-06-17T15:47:19.000Z" + }, + "end": { + "$date": "2021-06-17T16:08:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2f0dc15a-ec6e-4bd0-88b7-1eb9ceb218f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-17T16:09:19.000Z" + }, + "end": { + "$date": "2021-06-17T16:55:34.000Z" + }, + "events": [ + { + "uuid": "3e145a77-2e59-4e21-8744-de484fe08791", + "start": { + "$date": "2021-06-17T16:09:19.000Z" + }, + "end": { + "$date": "2021-06-17T16:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab0932c5-a13c-402a-bb9c-3b87839065c4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-17T17:28:04.000Z" + }, + "end": { + "$date": "2021-06-17T18:02:54.000Z" + }, + "events": [ + { + "uuid": "251b7f0a-29ec-4a7a-b278-4f8d44551bb3", + "start": { + "$date": "2021-06-17T17:28:04.000Z" + }, + "end": { + "$date": "2021-06-17T18:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ed569033-5077-499a-afb6-5332bc778024", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-17T18:04:36.000Z" + }, + "end": { + "$date": "2021-06-17T20:56:02.000Z" + }, + "events": [ + { + "uuid": "ae9a5b0d-c659-4d46-940b-8ecbdab609c0", + "start": { + "$date": "2021-06-17T18:04:36.000Z" + }, + "end": { + "$date": "2021-06-17T19:00:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "43869027-890a-4984-b884-e6efa0d34f5c", + "start": { + "$date": "2021-06-17T19:00:36.000Z" + }, + "end": { + "$date": "2021-06-17T20:13:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5c5df61-cd06-4d39-9043-edfc4f260077", + "start": { + "$date": "2021-06-17T20:13:36.000Z" + }, + "end": { + "$date": "2021-06-17T20:15:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "750e59d8-8661-414f-932d-5d1e9eaf3a9a", + "start": { + "$date": "2021-06-17T20:15:36.000Z" + }, + "end": { + "$date": "2021-06-17T20:53:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f4874c9-dcda-4d0f-954f-02425e6e882c", + "start": { + "$date": "2021-06-17T20:53:36.000Z" + }, + "end": { + "$date": "2021-06-17T20:56:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f231ecd1-462c-4938-9192-b4baca75773f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T19:02:26.000Z" + }, + "end": { + "$date": "2021-06-17T20:55:52.000Z" + }, + "events": [ + { + "uuid": "03e652c7-e80e-4861-bc66-8c4937c9d81a", + "start": { + "$date": "2021-06-17T19:02:26.000Z" + }, + "end": { + "$date": "2021-06-17T20:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fd950cf9-060b-400e-a344-85502ad44e91", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-17T20:36:08.000Z" + }, + "end": { + "$date": "2021-06-17T21:35:41.000Z" + }, + "events": [ + { + "uuid": "590fb3e0-5145-496d-8c4d-4a7c9eec2973", + "start": { + "$date": "2021-06-17T20:36:08.000Z" + }, + "end": { + "$date": "2021-06-17T21:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a3cbfb1d-9ac3-459d-80ce-169b85c1a07f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-17T20:56:55.000Z" + }, + "end": { + "$date": "2021-06-18T04:57:48.000Z" + }, + "events": [ + { + "uuid": "fb79c019-e9c1-4da7-ab02-5d0ffe7dcf79", + "start": { + "$date": "2021-06-17T20:56:55.000Z" + }, + "end": { + "$date": "2021-06-17T23:30:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e260a84-d2b0-4858-b6c7-231c67f6a022", + "start": { + "$date": "2021-06-17T23:30:55.000Z" + }, + "end": { + "$date": "2021-06-18T00:20:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bffa16dd-7088-4326-bef9-2e9e42dbe699", + "start": { + "$date": "2021-06-18T00:20:55.000Z" + }, + "end": { + "$date": "2021-06-18T00:26:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "548cec07-4287-4945-9fe0-c92a80695d7e", + "start": { + "$date": "2021-06-18T00:26:55.000Z" + }, + "end": { + "$date": "2021-06-18T01:06:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90b89370-922d-46b0-98e0-0c4f79569c63", + "start": { + "$date": "2021-06-18T01:06:55.000Z" + }, + "end": { + "$date": "2021-06-18T01:09:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "298d6b3c-3146-4307-9358-7b7f944f78a2", + "start": { + "$date": "2021-06-18T01:09:55.000Z" + }, + "end": { + "$date": "2021-06-18T01:13:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f36fbe88-3439-4dfc-a215-fb2cef7c8eb9", + "start": { + "$date": "2021-06-18T01:13:55.000Z" + }, + "end": { + "$date": "2021-06-18T01:30:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de53f8d1-2bcd-459a-845a-e7a3e2d88d64", + "start": { + "$date": "2021-06-18T01:30:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:04:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5df9a1ea-ff51-4c74-bd0a-c1035e586b38", + "start": { + "$date": "2021-06-18T02:04:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:23:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5cff3121-b0cf-45db-a5d9-98a45ef8efcf", + "start": { + "$date": "2021-06-18T02:23:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:25:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7d0009a5-14cb-4f25-bb18-71a0c50b6bf8", + "start": { + "$date": "2021-06-18T02:25:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:27:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12256027-ba4c-4e8d-835f-5df60d446ada", + "start": { + "$date": "2021-06-18T02:27:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:28:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9efaa4fb-4bd7-4987-a0d1-35a6f8812179", + "start": { + "$date": "2021-06-18T02:28:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:31:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20a709d0-75d0-402a-95f7-554179199c03", + "start": { + "$date": "2021-06-18T02:31:55.000Z" + }, + "end": { + "$date": "2021-06-18T02:41:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e42b2157-c7e1-41a0-8316-85e7a36c6a64", + "start": { + "$date": "2021-06-18T02:41:55.000Z" + }, + "end": { + "$date": "2021-06-18T04:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f70cba6d-a420-457c-b881-c43a5c0df30c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-17T22:05:30.000Z" + }, + "end": { + "$date": "2021-06-17T23:54:29.000Z" + }, + "events": [ + { + "uuid": "7183d8da-6c49-4b2b-82d7-0c54825de604", + "start": { + "$date": "2021-06-17T22:05:30.000Z" + }, + "end": { + "$date": "2021-06-17T23:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "67a7594b-f534-4add-89c1-391bb7171cde", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-17T22:35:19.000Z" + }, + "end": { + "$date": "2021-06-18T09:07:51.000Z" + }, + "events": [ + { + "uuid": "3efe5084-ed8c-4d4c-a401-5f84fa83294a", + "start": { + "$date": "2021-06-17T22:35:19.000Z" + }, + "end": { + "$date": "2021-06-18T02:12:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8237fe0e-5137-4f10-82d7-02550f9183cd", + "start": { + "$date": "2021-06-18T02:12:19.000Z" + }, + "end": { + "$date": "2021-06-18T02:17:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "742c6ca4-893b-4ff2-9432-4733935c0baf", + "start": { + "$date": "2021-06-18T02:17:19.000Z" + }, + "end": { + "$date": "2021-06-18T09:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a3acad38-111a-41b9-9e4d-b3783801757d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-17T22:40:44.000Z" + }, + "end": { + "$date": "2021-06-17T23:54:36.000Z" + }, + "events": [ + { + "uuid": "b3846f3f-29cb-402b-8100-4d3587f8052a", + "start": { + "$date": "2021-06-17T22:40:44.000Z" + }, + "end": { + "$date": "2021-06-17T23:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1462ea10-661b-4302-b871-a1f693e55dcf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T23:10:28.000Z" + }, + "end": { + "$date": "2021-06-17T23:39:18.000Z" + }, + "events": [ + { + "uuid": "d807b99f-d5c1-4a15-9ce7-244f609f5544", + "start": { + "$date": "2021-06-17T23:10:28.000Z" + }, + "end": { + "$date": "2021-06-17T23:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9cc83d69-3371-4166-ac54-61c2ac0833e7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-17T23:39:59.000Z" + }, + "end": { + "$date": "2021-06-18T00:32:17.000Z" + }, + "events": [ + { + "uuid": "9a60d47e-a84b-43c4-816f-5f0013cdead8", + "start": { + "$date": "2021-06-17T23:39:59.000Z" + }, + "end": { + "$date": "2021-06-18T00:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "748ac801-2bcb-432e-9bd1-c36ffff1881e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-17T23:49:48.000Z" + }, + "end": { + "$date": "2021-06-18T00:34:04.000Z" + }, + "events": [ + { + "uuid": "f6d2e1ed-8214-4088-a6d6-60c36b0ae7fe", + "start": { + "$date": "2021-06-17T23:49:48.000Z" + }, + "end": { + "$date": "2021-06-18T00:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ed47e956-c6eb-4cae-a056-755f5fcff735", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-18T00:23:40.000Z" + }, + "end": { + "$date": "2021-06-18T01:04:18.000Z" + }, + "events": [ + { + "uuid": "98f0b923-fdad-484e-8c72-2227b29b2e94", + "start": { + "$date": "2021-06-18T00:23:40.000Z" + }, + "end": { + "$date": "2021-06-18T01:04:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cf4a1af9-fb0e-4ea2-b7fa-c3df48540d4e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-18T00:52:56.000Z" + }, + "end": { + "$date": "2021-06-18T01:17:34.000Z" + }, + "events": [ + { + "uuid": "bd0c045c-3ad9-4292-be34-0c9595285dd8", + "start": { + "$date": "2021-06-18T00:52:56.000Z" + }, + "end": { + "$date": "2021-06-18T01:17:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ee27ca3f-3a6e-4357-81f8-1f2bf34dab14", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-18T01:18:26.000Z" + }, + "end": { + "$date": "2021-06-18T01:19:48.000Z" + }, + "events": [ + { + "uuid": "eb44bf76-cbe5-487c-b617-ceebb01a0e01", + "start": { + "$date": "2021-06-18T01:18:26.000Z" + }, + "end": { + "$date": "2021-06-18T01:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "94e4eddd-42ca-498a-8839-95c41d72f5a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-18T01:22:09.000Z" + }, + "end": { + "$date": "2021-06-18T03:19:54.000Z" + }, + "events": [ + { + "uuid": "560bd018-9cda-40e1-b31b-330c18422a76", + "start": { + "$date": "2021-06-18T01:22:09.000Z" + }, + "end": { + "$date": "2021-06-18T02:29:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a548f923-44ef-4165-95e2-09c4486c557b", + "start": { + "$date": "2021-06-18T02:29:09.000Z" + }, + "end": { + "$date": "2021-06-18T03:00:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0304bbda-159b-47eb-ac8e-1510c14f8bb0", + "start": { + "$date": "2021-06-18T03:00:09.000Z" + }, + "end": { + "$date": "2021-06-18T03:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "7f82f30f-850c-458f-bb3d-5344958ee14e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-18T01:22:58.000Z" + }, + "end": { + "$date": "2021-06-18T07:05:52.000Z" + }, + "events": [ + { + "uuid": "27b10017-5670-4a30-aef5-c60cab727377", + "start": { + "$date": "2021-06-18T01:22:58.000Z" + }, + "end": { + "$date": "2021-06-18T07:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "83bb18d1-0bf1-456f-8e2e-884ffcbdc37c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-18T01:23:10.000Z" + }, + "end": { + "$date": "2021-06-18T07:05:21.000Z" + }, + "events": [ + { + "uuid": "6e670048-1f78-422a-8e63-f08e4de2215c", + "start": { + "$date": "2021-06-18T01:23:10.000Z" + }, + "end": { + "$date": "2021-06-18T07:05:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "996ed388-e8fa-48e4-9157-71fc0e1ef446", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-18T01:33:16.000Z" + }, + "end": { + "$date": "2021-06-18T05:31:17.000Z" + }, + "events": [ + { + "uuid": "fd574362-017e-4d7f-9c86-8afb12c42c38", + "start": { + "$date": "2021-06-18T01:33:16.000Z" + }, + "end": { + "$date": "2021-06-18T05:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4a72495e-de0d-43ab-9756-01b4d6828729", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-18T02:41:10.000Z" + }, + "end": { + "$date": "2021-06-18T02:42:56.000Z" + }, + "events": [ + { + "uuid": "022ec733-889b-41bc-94f1-5c9b80b05a8a", + "start": { + "$date": "2021-06-18T02:41:10.000Z" + }, + "end": { + "$date": "2021-06-18T02:42:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ed024fe8-6ac3-491a-90ad-3a5459720457", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-18T02:43:11.000Z" + }, + "end": { + "$date": "2021-06-18T03:18:49.000Z" + }, + "events": [ + { + "uuid": "6d955d8e-b8d6-4290-80a2-b61e59fb7bb6", + "start": { + "$date": "2021-06-18T02:43:11.000Z" + }, + "end": { + "$date": "2021-06-18T03:18:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", + "uuid": "60b38020-ad5e-40cc-9c23-8bdbef3c5c25", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-18T03:22:14.000Z" + }, + "end": { + "$date": "2021-06-18T05:02:35.000Z" + }, + "events": [ + { + "uuid": "ae02f69c-2ecf-4289-8d76-aa159f6041ab", + "start": { + "$date": "2021-06-18T03:22:14.000Z" + }, + "end": { + "$date": "2021-06-18T05:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "455a76f5-0607-43f4-b7c6-93576fe7418a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-18T03:34:42.000Z" + }, + "end": { + "$date": "2021-06-18T04:12:38.000Z" + }, + "events": [ + { + "uuid": "da818237-23b7-4b52-9d55-04a432190284", + "start": { + "$date": "2021-06-18T03:34:42.000Z" + }, + "end": { + "$date": "2021-06-18T04:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0233f59-f285-4046-94fa-bac5d2c7a609", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-18T04:26:55.000Z" + }, + "end": { + "$date": "2021-06-18T04:47:09.000Z" + }, + "events": [ + { + "uuid": "a8b2b0e6-21bc-47aa-b738-bd2af7c523ae", + "start": { + "$date": "2021-06-18T04:26:55.000Z" + }, + "end": { + "$date": "2021-06-18T04:47:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50d2be04-3e28-4129-a3a2-0ec2d3174c13", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-18T04:55:36.000Z" + }, + "end": { + "$date": "2021-06-18T05:11:36.000Z" + }, + "events": [ + { + "uuid": "759f9f83-7fe7-4b96-8f24-3cf1bada147d", + "start": { + "$date": "2021-06-18T04:55:36.000Z" + }, + "end": { + "$date": "2021-06-18T05:11:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f24ab850-9860-44b2-95e9-c6825bdc06b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-18T05:33:05.000Z" + }, + "end": { + "$date": "2021-06-18T05:33:40.000Z" + }, + "events": [ + { + "uuid": "069b3cf4-37df-4b3f-994b-45da1447cbb9", + "start": { + "$date": "2021-06-18T05:33:05.000Z" + }, + "end": { + "$date": "2021-06-18T05:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "56acb0a9-536b-4694-b3ca-feff73412761", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T05:16:09.000Z" + }, + "end": { + "$date": "2021-06-18T05:20:30.000Z" + }, + "events": [ + { + "uuid": "64e4644f-fb41-4a8f-9c1d-9a78d5467711", + "start": { + "$date": "2021-06-18T05:16:09.000Z" + }, + "end": { + "$date": "2021-06-18T05:20:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30d6ce05-9de1-410e-9721-178fb45dfc79", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T05:36:20.000Z" + }, + "end": { + "$date": "2021-06-18T06:09:27.000Z" + }, + "events": [ + { + "uuid": "779349ec-8b1c-47ab-a931-88be88e3fd43", + "start": { + "$date": "2021-06-18T05:36:20.000Z" + }, + "end": { + "$date": "2021-06-18T06:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54cfc8ec-5613-4daf-ad6d-02648b3ff35b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-18T05:36:26.000Z" + }, + "end": { + "$date": "2021-06-18T06:09:21.000Z" + }, + "events": [ + { + "uuid": "948589f8-2dee-4ab6-8a6e-0a7274ceb698", + "start": { + "$date": "2021-06-18T05:36:26.000Z" + }, + "end": { + "$date": "2021-06-18T06:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "057661bf-b404-4ccf-b9a7-a1607684bb42", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-18T06:12:45.000Z" + }, + "end": { + "$date": "2021-06-18T07:34:12.000Z" + }, + "events": [ + { + "uuid": "59bb6e72-4371-4ca7-9d74-ff842eb652e7", + "start": { + "$date": "2021-06-18T06:12:45.000Z" + }, + "end": { + "$date": "2021-06-18T07:34:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d5ea81f-eac0-4403-8d4b-15af846f5d7b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-18T06:13:38.000Z" + }, + "end": { + "$date": "2021-06-18T06:15:07.000Z" + }, + "events": [ + { + "uuid": "c8e44db8-1446-4380-8490-bf754e2041a8", + "start": { + "$date": "2021-06-18T06:13:38.000Z" + }, + "end": { + "$date": "2021-06-18T06:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "69e80187-f42a-4949-8017-54ffe6258066", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-18T17:39:59.000Z" + }, + "end": { + "$date": "2021-06-18T19:03:31.000Z" + }, + "events": [ + { + "uuid": "b88db8a1-878f-45f3-b4c8-75561d8a6da8", + "start": { + "$date": "2021-06-18T17:39:59.000Z" + }, + "end": { + "$date": "2021-06-18T19:03:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "352f8c0a-4352-4bd3-81cd-60a7d208cec6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T17:51:53.000Z" + }, + "end": { + "$date": "2021-06-18T18:24:02.000Z" + }, + "events": [ + { + "uuid": "9910a443-654c-482d-a37d-c61d7e6df352", + "start": { + "$date": "2021-06-18T17:51:53.000Z" + }, + "end": { + "$date": "2021-06-18T18:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f0e82354-1ca3-4df5-aad0-de6bce03af25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-18T17:56:23.000Z" + }, + "end": { + "$date": "2021-06-19T05:01:54.000Z" + }, + "events": [ + { + "uuid": "9d2ae677-ad84-431e-a516-351a91a95da5", + "start": { + "$date": "2021-06-18T17:56:23.000Z" + }, + "end": { + "$date": "2021-06-18T20:04:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b2191f0-b35a-4127-8fba-e3238b1f53f0", + "start": { + "$date": "2021-06-18T20:04:23.000Z" + }, + "end": { + "$date": "2021-06-18T20:22:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c1a05f95-5529-4d5e-ac3d-a31541e41d2f", + "start": { + "$date": "2021-06-18T20:22:23.000Z" + }, + "end": { + "$date": "2021-06-18T20:30:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c5945ce1-69a0-4f54-8f58-1b3a68667bee", + "start": { + "$date": "2021-06-18T20:30:23.000Z" + }, + "end": { + "$date": "2021-06-18T21:16:23.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "ecf279fc-d620-4e89-921f-400fe9d8dba6", + "start": { + "$date": "2021-06-18T21:16:23.000Z" + }, + "end": { + "$date": "2021-06-18T22:04:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba5b5f46-667d-4a4d-b6e4-1f54b2981a91", + "start": { + "$date": "2021-06-18T22:04:23.000Z" + }, + "end": { + "$date": "2021-06-19T01:43:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "acb6a11c-a797-4572-89df-e09eef8678b7", + "start": { + "$date": "2021-06-19T01:43:23.000Z" + }, + "end": { + "$date": "2021-06-19T03:59:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4431dab0-847c-4751-a38b-a7bd658f9cc8", + "start": { + "$date": "2021-06-19T03:59:23.000Z" + }, + "end": { + "$date": "2021-06-19T04:00:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d56a07d4-4f3d-427a-bf12-0b79e4b7ab28", + "start": { + "$date": "2021-06-19T04:00:23.000Z" + }, + "end": { + "$date": "2021-06-19T04:02:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7ebe9f6-2ff4-4022-a66b-b83e4d3f1478", + "start": { + "$date": "2021-06-19T04:02:23.000Z" + }, + "end": { + "$date": "2021-06-19T05:00:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b76fe1c-f6e2-458d-8370-c1f70e888e9f", + "start": { + "$date": "2021-06-19T05:00:23.000Z" + }, + "end": { + "$date": "2021-06-19T05:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "51d7007b-0183-4d55-a948-b251500e494f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T18:27:43.000Z" + }, + "end": { + "$date": "2021-06-18T18:46:56.000Z" + }, + "events": [ + { + "uuid": "f28dddd8-9d98-4a47-add9-08fa7cde2591", + "start": { + "$date": "2021-06-18T18:27:43.000Z" + }, + "end": { + "$date": "2021-06-18T18:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "6b8db695-7249-4526-8a04-c816530d06a8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T18:47:06.000Z" + }, + "end": { + "$date": "2021-06-18T20:31:11.000Z" + }, + "events": [ + { + "uuid": "e6e298a5-9993-4bdc-a76a-099f44f2ead7", + "start": { + "$date": "2021-06-18T18:47:06.000Z" + }, + "end": { + "$date": "2021-06-18T20:31:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "91c5eb0c-5e78-40b2-aa89-e0400a298378", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-18T19:05:47.000Z" + }, + "end": { + "$date": "2021-06-18T19:31:47.000Z" + }, + "events": [ + { + "uuid": "1ebf590d-0b37-4440-9ac1-7eaca09d10c4", + "start": { + "$date": "2021-06-18T19:05:47.000Z" + }, + "end": { + "$date": "2021-06-18T19:31:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c96729c3-28de-4aba-838e-7b8a62fb82f9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-18T19:41:59.000Z" + }, + "end": { + "$date": "2021-06-18T22:30:58.000Z" + }, + "events": [ + { + "uuid": "35b70209-3f7a-4a5b-8fc6-0234a95123b2", + "start": { + "$date": "2021-06-18T19:41:59.000Z" + }, + "end": { + "$date": "2021-06-18T22:30:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36bb1c18-cf69-4872-8629-308cc71978bb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-18T19:55:44.000Z" + }, + "end": { + "$date": "2021-06-18T22:36:45.000Z" + }, + "events": [ + { + "uuid": "295aec20-d873-4ffe-a6d7-0548635d14d1", + "start": { + "$date": "2021-06-18T19:55:44.000Z" + }, + "end": { + "$date": "2021-06-18T22:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2224895d-c832-4433-a640-efbdf787db77", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T20:31:16.000Z" + }, + "end": { + "$date": "2021-06-18T21:25:17.000Z" + }, + "events": [ + { + "uuid": "291871e0-4453-4bea-9467-fc63bd5d63d7", + "start": { + "$date": "2021-06-18T20:31:16.000Z" + }, + "end": { + "$date": "2021-06-18T20:50:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "05b41def-419c-4041-8180-36467c2bcb8f", + "start": { + "$date": "2021-06-18T20:50:16.000Z" + }, + "end": { + "$date": "2021-06-18T20:54:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a514bd3-6ff9-4815-bce5-77b413124f84", + "start": { + "$date": "2021-06-18T20:54:16.000Z" + }, + "end": { + "$date": "2021-06-18T21:06:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ad92e18f-49bb-4959-8db8-c1df462ef784", + "start": { + "$date": "2021-06-18T21:06:16.000Z" + }, + "end": { + "$date": "2021-06-18T21:08:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff083914-f76a-4cff-9016-c94d64a70b4e", + "start": { + "$date": "2021-06-18T21:08:16.000Z" + }, + "end": { + "$date": "2021-06-18T21:21:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "79bfcb0c-5e96-4387-97cf-42819206c8e3", + "start": { + "$date": "2021-06-18T21:21:16.000Z" + }, + "end": { + "$date": "2021-06-18T21:25:17.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff4365b9-293e-438d-b3c4-3b667f9b1510", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-18T20:53:06.000Z" + }, + "end": { + "$date": "2021-06-18T21:10:58.000Z" + }, + "events": [ + { + "uuid": "28b35d5b-029c-4e72-80b9-b6e25a3ae038", + "start": { + "$date": "2021-06-18T20:53:06.000Z" + }, + "end": { + "$date": "2021-06-18T21:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6e75fb1d-dcb6-4d78-8c9b-b8b381abc21f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-18T21:11:08.000Z" + }, + "end": { + "$date": "2021-06-18T22:30:35.000Z" + }, + "events": [ + { + "uuid": "c3b0f38b-58be-45ae-994a-da22a301aab4", + "start": { + "$date": "2021-06-18T21:11:08.000Z" + }, + "end": { + "$date": "2021-06-18T22:30:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3c1ed31f-183f-4b27-9b49-550dcd7e397b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-18T21:24:35.000Z" + }, + "end": { + "$date": "2021-06-19T00:50:46.000Z" + }, + "events": [ + { + "uuid": "556149cd-e51c-4cb4-88b1-04d2a630de26", + "start": { + "$date": "2021-06-18T21:24:35.000Z" + }, + "end": { + "$date": "2021-06-19T00:50:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6d1bd18-0b98-4389-bec6-742c70a43188", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T22:19:48.000Z" + }, + "end": { + "$date": "2021-06-18T22:53:50.000Z" + }, + "events": [ + { + "uuid": "feb28211-b795-4ff4-8450-d2ec18c46e43", + "start": { + "$date": "2021-06-18T22:19:48.000Z" + }, + "end": { + "$date": "2021-06-18T22:53:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c731e573-8a66-4aa8-a3f8-be2c85be0360", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-18T22:25:14.000Z" + }, + "end": { + "$date": "2021-06-19T00:48:12.000Z" + }, + "events": [ + { + "uuid": "ec23e4c8-3d82-4695-bd73-f90f909eb28c", + "start": { + "$date": "2021-06-18T22:25:14.000Z" + }, + "end": { + "$date": "2021-06-19T00:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "8e8beee1-531d-421a-b453-73d851ccb555", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-18T22:30:36.000Z" + }, + "end": { + "$date": "2021-06-19T01:13:19.000Z" + }, + "events": [ + { + "uuid": "b27584ac-c4e4-4a14-9df0-8a2000c0341f", + "start": { + "$date": "2021-06-18T22:30:36.000Z" + }, + "end": { + "$date": "2021-06-19T01:13:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e63826a5-74ed-415f-8dc3-07744fe0bc4e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-18T22:55:05.000Z" + }, + "end": { + "$date": "2021-06-18T23:28:28.000Z" + }, + "events": [ + { + "uuid": "5b56f353-f53c-4522-bcf9-9a46b90379b3", + "start": { + "$date": "2021-06-18T22:55:05.000Z" + }, + "end": { + "$date": "2021-06-18T23:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "01aed660-6a30-49ed-bb12-58d6a03ea5e6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T00:48:38.000Z" + }, + "end": { + "$date": "2021-06-19T03:03:14.000Z" + }, + "events": [ + { + "uuid": "05589ae7-1d89-4290-9173-74aea5ef8505", + "start": { + "$date": "2021-06-19T00:48:38.000Z" + }, + "end": { + "$date": "2021-06-19T03:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b7435bae-0377-4e05-8e07-91c231522b97", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-19T00:52:08.000Z" + }, + "end": { + "$date": "2021-06-19T01:12:54.000Z" + }, + "events": [ + { + "uuid": "32f15b81-1bef-4c67-b652-0e2a33cc5fcf", + "start": { + "$date": "2021-06-19T00:52:08.000Z" + }, + "end": { + "$date": "2021-06-19T01:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6ffaa9e0-6b80-4a57-8932-9fb56e8e7600", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-19T01:00:30.000Z" + }, + "end": { + "$date": "2021-06-19T03:19:30.000Z" + }, + "events": [ + { + "uuid": "b3524d58-f319-4dbb-b673-78ea3c10ac96", + "start": { + "$date": "2021-06-19T01:00:30.000Z" + }, + "end": { + "$date": "2021-06-19T03:19:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d93d3ed4-71fb-4110-9172-038dcc2d8f72", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T01:42:50.000Z" + }, + "end": { + "$date": "2021-06-19T03:19:17.000Z" + }, + "events": [ + { + "uuid": "7ba30151-50e1-426e-9cc4-a4fda35ec904", + "start": { + "$date": "2021-06-19T01:42:50.000Z" + }, + "end": { + "$date": "2021-06-19T03:19:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "46c55ffa-53be-4c98-8d98-80cb6f1b3eb2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-19T02:04:09.000Z" + }, + "end": { + "$date": "2021-06-19T02:53:46.000Z" + }, + "events": [ + { + "uuid": "b2aadbee-6773-4922-9333-e36a5baa3c4b", + "start": { + "$date": "2021-06-19T02:04:09.000Z" + }, + "end": { + "$date": "2021-06-19T02:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa85c716-833f-41f4-9149-ca9187dc6a11", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T02:10:22.000Z" + }, + "end": { + "$date": "2021-06-19T02:42:25.000Z" + }, + "events": [ + { + "uuid": "2dbbb5de-ec90-4497-824e-ba6fd8d30979", + "start": { + "$date": "2021-06-19T02:10:22.000Z" + }, + "end": { + "$date": "2021-06-19T02:42:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "fa512d40-9621-4a55-9236-cf9869458918", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-19T02:13:00.000Z" + }, + "end": { + "$date": "2021-06-19T02:21:36.000Z" + }, + "events": [ + { + "uuid": "81154b7b-4e53-415e-afce-4ea68a60c686", + "start": { + "$date": "2021-06-19T02:13:00.000Z" + }, + "end": { + "$date": "2021-06-19T02:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fed3bb19-4a37-4184-a924-5c15b7cde0df", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-19T02:27:51.000Z" + }, + "end": { + "$date": "2021-06-19T07:11:35.000Z" + }, + "events": [ + { + "uuid": "8fe47d59-0805-4992-8ab6-2ebab8fe85fe", + "start": { + "$date": "2021-06-19T02:27:51.000Z" + }, + "end": { + "$date": "2021-06-19T07:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "dac84218-d0bf-4ec0-80cc-45abb8769833", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-19T02:43:35.000Z" + }, + "end": { + "$date": "2021-06-19T05:41:36.000Z" + }, + "events": [ + { + "uuid": "22596d8e-c008-40e2-bf1b-9f2d188e9b85", + "start": { + "$date": "2021-06-19T02:43:35.000Z" + }, + "end": { + "$date": "2021-06-19T05:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "472bc44e-e777-419f-ab61-296c6064a5c7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T02:48:28.000Z" + }, + "end": { + "$date": "2021-06-19T03:18:33.000Z" + }, + "events": [ + { + "uuid": "7b7effd6-9588-44ae-a362-339826f53046", + "start": { + "$date": "2021-06-19T02:48:28.000Z" + }, + "end": { + "$date": "2021-06-19T03:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "29e6c836-8299-4a94-8da8-c4363bb92854", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T03:10:35.000Z" + }, + "end": { + "$date": "2021-06-19T03:16:50.000Z" + }, + "events": [ + { + "uuid": "a0761f07-6ed2-4c69-bead-6fe1417eb214", + "start": { + "$date": "2021-06-19T03:10:35.000Z" + }, + "end": { + "$date": "2021-06-19T03:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "56237843-ed15-47a7-b0e7-2b4f2701b8a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T04:39:47.000Z" + }, + "end": { + "$date": "2021-06-19T05:16:42.000Z" + }, + "events": [ + { + "uuid": "830c752f-ca5f-4368-a173-e233c9d435fb", + "start": { + "$date": "2021-06-19T04:39:47.000Z" + }, + "end": { + "$date": "2021-06-19T05:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1639c7bc-7c1c-4d60-b913-e7531736bb26", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T03:32:55.000Z" + }, + "end": { + "$date": "2021-06-19T03:59:20.000Z" + }, + "events": [ + { + "uuid": "bd5128b3-0dba-4748-8891-ab6772d86f37", + "start": { + "$date": "2021-06-19T03:32:55.000Z" + }, + "end": { + "$date": "2021-06-19T03:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01c1849c-3719-4c32-a95a-c284bae98145", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T03:20:03.000Z" + }, + "end": { + "$date": "2021-06-19T05:11:45.000Z" + }, + "events": [ + { + "uuid": "e7fb1a86-e336-46ad-97e3-3e3c1bfcef4a", + "start": { + "$date": "2021-06-19T03:20:03.000Z" + }, + "end": { + "$date": "2021-06-19T05:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8293d135-fe37-4f03-8b7f-4e484ff3963a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-19T03:28:18.000Z" + }, + "end": { + "$date": "2021-06-19T05:12:26.000Z" + }, + "events": [ + { + "uuid": "51d66a28-e229-4525-8ab6-962698f096d0", + "start": { + "$date": "2021-06-19T03:28:18.000Z" + }, + "end": { + "$date": "2021-06-19T05:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "89d4abcb-4e1d-4534-9e8a-d65b2b02548d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-19T03:42:09.000Z" + }, + "end": { + "$date": "2021-06-19T07:03:54.000Z" + }, + "events": [ + { + "uuid": "0a0d0dbb-c1e4-4d56-82b7-1066e8368907", + "start": { + "$date": "2021-06-19T03:42:09.000Z" + }, + "end": { + "$date": "2021-06-19T07:03:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71d75724-a381-4071-ade6-0b942cac3198", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T04:04:06.000Z" + }, + "end": { + "$date": "2021-06-19T04:30:45.000Z" + }, + "events": [ + { + "uuid": "02831fba-bee4-4a9f-ab5b-e42c71651a36", + "start": { + "$date": "2021-06-19T04:04:06.000Z" + }, + "end": { + "$date": "2021-06-19T04:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "10e49861-eeab-49c9-8ba5-e1e774fc4f61", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-19T04:30:07.000Z" + }, + "end": { + "$date": "2021-06-19T04:39:27.000Z" + }, + "events": [ + { + "uuid": "11d7dd5b-14c8-456a-b66f-d7d70a8815f2", + "start": { + "$date": "2021-06-19T04:30:07.000Z" + }, + "end": { + "$date": "2021-06-19T04:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "a9f81ece-d120-40e4-b7d0-68736a2f3bdd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-19T04:40:37.000Z" + }, + "end": { + "$date": "2021-06-19T05:17:48.000Z" + }, + "events": [ + { + "uuid": "9b66d388-086c-465f-a8f9-0dc0c7adb582", + "start": { + "$date": "2021-06-19T04:40:37.000Z" + }, + "end": { + "$date": "2021-06-19T05:17:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbcc2fa6-7947-4749-a87c-379c06179d01", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T04:47:24.000Z" + }, + "end": { + "$date": "2021-06-19T05:22:00.000Z" + }, + "events": [ + { + "uuid": "1d76f3ad-4a1d-4cf2-9281-309b98e54012", + "start": { + "$date": "2021-06-19T04:47:24.000Z" + }, + "end": { + "$date": "2021-06-19T05:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3c8ad0f5-e12c-4720-bb03-200c31450a25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-19T05:03:58.000Z" + }, + "end": { + "$date": "2021-06-19T05:22:08.000Z" + }, + "events": [ + { + "uuid": "78b8083c-5ca4-4ade-afac-e9e76fe9f30a", + "start": { + "$date": "2021-06-19T05:03:58.000Z" + }, + "end": { + "$date": "2021-06-19T05:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "b391ce2b-c817-40ad-be70-03eb4d7fc547", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T05:17:28.000Z" + }, + "end": { + "$date": "2021-06-19T07:49:14.000Z" + }, + "events": [ + { + "uuid": "7e5e56a8-a997-45ec-9eed-246460c5a36a", + "start": { + "$date": "2021-06-19T05:17:28.000Z" + }, + "end": { + "$date": "2021-06-19T07:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "a112a46b-4d1c-4a5e-8f7b-fb32e5b1ad01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-19T05:19:13.000Z" + }, + "end": { + "$date": "2021-06-19T07:49:16.000Z" + }, + "events": [ + { + "uuid": "026ce9ee-5439-413f-99f4-dcef38bcfb99", + "start": { + "$date": "2021-06-19T05:19:13.000Z" + }, + "end": { + "$date": "2021-06-19T07:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "754b6b14-d654-4504-aae7-2fbdabc7ec19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-19T05:47:24.000Z" + }, + "end": { + "$date": "2021-06-19T05:47:41.000Z" + }, + "events": [ + { + "uuid": "67d0c93a-9307-424b-afdc-e7ad14851472", + "start": { + "$date": "2021-06-19T05:47:24.000Z" + }, + "end": { + "$date": "2021-06-19T05:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce8c518c-cf94-4e15-b1d8-f77c6619db7a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T05:27:05.000Z" + }, + "end": { + "$date": "2021-06-19T05:47:11.000Z" + }, + "events": [ + { + "uuid": "c1925e82-087f-479b-8983-4300eeac99e8", + "start": { + "$date": "2021-06-19T05:27:05.000Z" + }, + "end": { + "$date": "2021-06-19T05:47:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d310d656-de0f-423a-89cd-4503928fc7d7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-19T05:37:09.000Z" + }, + "end": { + "$date": "2021-06-19T07:04:41.000Z" + }, + "events": [ + { + "uuid": "b43259d0-2078-4d4b-ba24-89b622afb76c", + "start": { + "$date": "2021-06-19T05:37:09.000Z" + }, + "end": { + "$date": "2021-06-19T07:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c9147af-8daa-46ca-955f-e761749bb56c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-19T05:40:58.000Z" + }, + "end": { + "$date": "2021-06-19T06:22:15.000Z" + }, + "events": [ + { + "uuid": "cc26a644-a340-4134-aa85-c6b16301a5a5", + "start": { + "$date": "2021-06-19T05:40:58.000Z" + }, + "end": { + "$date": "2021-06-19T06:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a3a777e-231a-4fda-afd8-fa2a25c37a0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-19T06:08:22.000Z" + }, + "end": { + "$date": "2021-06-19T06:08:28.000Z" + }, + "events": [ + { + "uuid": "860706d8-9ec8-49c4-8504-c656339341cb", + "start": { + "$date": "2021-06-19T06:08:22.000Z" + }, + "end": { + "$date": "2021-06-19T06:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d45b5c20-9384-45ef-b61d-3792e53e4a8c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-19T05:52:41.000Z" + }, + "end": { + "$date": "2021-06-19T06:08:01.000Z" + }, + "events": [ + { + "uuid": "c4c740a9-0877-4af7-adcd-784bc37e6faf", + "start": { + "$date": "2021-06-19T05:52:41.000Z" + }, + "end": { + "$date": "2021-06-19T06:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4f19b7c-6924-497d-8f48-e8d30457dd89", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-19T06:44:45.000Z" + }, + "end": { + "$date": "2021-06-20T00:16:51.000Z" + }, + "events": [ + { + "uuid": "469d54e7-768f-408f-99d8-53647892dc9c", + "start": { + "$date": "2021-06-19T06:44:45.000Z" + }, + "end": { + "$date": "2021-06-19T08:06:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c5eb9bb3-00e2-4930-b637-1a09e0b3bbcb", + "start": { + "$date": "2021-06-19T08:06:45.000Z" + }, + "end": { + "$date": "2021-06-19T13:06:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9afd7ec9-e08b-46e8-ba1c-740ce8b046e3", + "start": { + "$date": "2021-06-19T13:06:45.000Z" + }, + "end": { + "$date": "2021-06-19T13:16:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e69f0343-185f-4667-bd18-b2fad289df7b", + "start": { + "$date": "2021-06-19T13:16:45.000Z" + }, + "end": { + "$date": "2021-06-19T17:25:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23a71172-2eb7-4a47-b84a-a598124d3db7", + "start": { + "$date": "2021-06-19T17:25:45.000Z" + }, + "end": { + "$date": "2021-06-19T17:27:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d95a99bc-65d0-4299-ac9f-02db1b5d9002", + "start": { + "$date": "2021-06-19T17:27:45.000Z" + }, + "end": { + "$date": "2021-06-19T17:40:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45bbbb8e-6264-4bbf-8abf-f5de3b5ad2b7", + "start": { + "$date": "2021-06-19T17:40:45.000Z" + }, + "end": { + "$date": "2021-06-19T17:44:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4874d7ba-0837-4268-8c71-c89c35ec2416", + "start": { + "$date": "2021-06-19T17:44:45.000Z" + }, + "end": { + "$date": "2021-06-19T18:21:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2d1de02-31d2-4041-921b-a211d2b5869e", + "start": { + "$date": "2021-06-19T18:21:45.000Z" + }, + "end": { + "$date": "2021-06-19T18:23:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7199e5a8-d2bb-4a60-a7ec-6658e082bd22", + "start": { + "$date": "2021-06-19T18:23:45.000Z" + }, + "end": { + "$date": "2021-06-19T20:32:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4629cc28-c653-4a61-9d52-07e1fb9b6299", + "start": { + "$date": "2021-06-19T20:32:45.000Z" + }, + "end": { + "$date": "2021-06-19T20:35:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8795d831-243c-439f-a30f-63b11b94376e", + "start": { + "$date": "2021-06-19T20:35:45.000Z" + }, + "end": { + "$date": "2021-06-19T20:39:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b51123b3-f06e-49a9-9d22-8987d96c6391", + "start": { + "$date": "2021-06-19T20:39:45.000Z" + }, + "end": { + "$date": "2021-06-19T20:41:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c4bc5614-942c-438f-a8a9-9a45ed23f86c", + "start": { + "$date": "2021-06-19T20:41:45.000Z" + }, + "end": { + "$date": "2021-06-19T22:22:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d622e64d-442b-4dd5-8b4a-6631374efb3a", + "start": { + "$date": "2021-06-19T22:22:45.000Z" + }, + "end": { + "$date": "2021-06-19T23:28:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35d70994-1cf8-41e5-a265-d8f10a0bb4f6", + "start": { + "$date": "2021-06-19T23:28:45.000Z" + }, + "end": { + "$date": "2021-06-19T23:34:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0aec3d33-7540-4a16-ada0-9d378a9b0d07", + "start": { + "$date": "2021-06-19T23:34:45.000Z" + }, + "end": { + "$date": "2021-06-20T00:00:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba764bf0-4c2d-4385-ae8c-c815599be3c9", + "start": { + "$date": "2021-06-20T00:00:45.000Z" + }, + "end": { + "$date": "2021-06-20T00:47:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c197dad4-3f89-4e4f-95e5-283134ff5b9b", + "start": { + "$date": "2021-06-20T00:47:45.000Z" + }, + "end": { + "$date": "2021-06-20T00:16:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "64aea0fe-b1af-4ef7-af2e-645a11c59e1f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-19T07:12:36.000Z" + }, + "end": { + "$date": "2021-06-19T08:55:41.000Z" + }, + "events": [ + { + "uuid": "59bc1c15-db76-413c-95a4-3b7999df3775", + "start": { + "$date": "2021-06-19T07:12:36.000Z" + }, + "end": { + "$date": "2021-06-19T08:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e3569702-fb46-4a5c-9ffe-51a3a945d123", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-19T08:56:13.000Z" + }, + "end": { + "$date": "2021-06-19T09:39:24.000Z" + }, + "events": [ + { + "uuid": "e0e0625b-508b-45fd-93ea-f4cfbfb1bd4e", + "start": { + "$date": "2021-06-19T08:56:13.000Z" + }, + "end": { + "$date": "2021-06-19T09:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "de682ed3-3cc0-45e2-b278-90dc8b0d5af7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-19T14:01:25.000Z" + }, + "end": { + "$date": "2021-06-19T16:10:26.000Z" + }, + "events": [ + { + "uuid": "29a43289-50b6-4dbd-b0c4-2d0d7defd749", + "start": { + "$date": "2021-06-19T14:01:25.000Z" + }, + "end": { + "$date": "2021-06-19T16:10:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "693f6e55-0970-4dfc-a0b5-ee2c2ee2d1c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T15:52:43.000Z" + }, + "end": { + "$date": "2021-06-19T16:16:17.000Z" + }, + "events": [ + { + "uuid": "8a51386d-c074-40ca-871d-8eaef31a6135", + "start": { + "$date": "2021-06-19T15:52:43.000Z" + }, + "end": { + "$date": "2021-06-19T16:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "d917d11b-ba7a-46af-abc2-ac9e4454cbe4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-19T16:12:51.000Z" + }, + "end": { + "$date": "2021-06-19T17:15:52.000Z" + }, + "events": [ + { + "uuid": "ce896e96-743d-4c7a-9a61-7ed37dd4a842", + "start": { + "$date": "2021-06-19T16:12:51.000Z" + }, + "end": { + "$date": "2021-06-19T17:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", + "uuid": "13eb22c6-587c-4f9c-9574-e6ab3608ff4f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T16:20:28.000Z" + }, + "end": { + "$date": "2021-06-19T16:34:03.000Z" + }, + "events": [ + { + "uuid": "7a577dcd-a2c0-409f-aba7-d48c33c2ae31", + "start": { + "$date": "2021-06-19T16:20:28.000Z" + }, + "end": { + "$date": "2021-06-19T16:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f777a66c-c81e-4568-97db-f8575f70eed9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T16:46:07.000Z" + }, + "end": { + "$date": "2021-06-19T17:41:52.000Z" + }, + "events": [ + { + "uuid": "ff713a96-1924-46c6-8b51-5af13e55b659", + "start": { + "$date": "2021-06-19T16:46:07.000Z" + }, + "end": { + "$date": "2021-06-19T17:41:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebb7bd2c-ae71-4659-a786-86ab959ee33d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T16:55:31.000Z" + }, + "end": { + "$date": "2021-06-19T17:05:05.000Z" + }, + "events": [ + { + "uuid": "956b41c6-262f-4381-bbf1-44d5795925f7", + "start": { + "$date": "2021-06-19T16:55:31.000Z" + }, + "end": { + "$date": "2021-06-19T17:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92cb30ed-2cdf-4cd0-a64e-f6d94897dbf2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T17:06:10.000Z" + }, + "end": { + "$date": "2021-06-19T17:44:17.000Z" + }, + "events": [ + { + "uuid": "7b1bd4d2-ff5e-4aba-a39b-4be0e53d2ea3", + "start": { + "$date": "2021-06-19T17:06:10.000Z" + }, + "end": { + "$date": "2021-06-19T17:44:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "5fe0544a-6058-4ba7-b3ae-167b4ebb49a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T18:08:29.000Z" + }, + "end": { + "$date": "2021-06-19T18:30:10.000Z" + }, + "events": [ + { + "uuid": "db021209-9f92-4357-90df-1f06d38ef97d", + "start": { + "$date": "2021-06-19T18:08:29.000Z" + }, + "end": { + "$date": "2021-06-19T18:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3b5c5dfc-daa2-461b-af76-84fa9ca5fc0a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-19T18:18:32.000Z" + }, + "end": { + "$date": "2021-06-19T23:18:32.000Z" + }, + "events": [ + { + "uuid": "901e4ddb-6383-4301-8241-5ad19255e260", + "start": { + "$date": "2021-06-19T18:18:32.000Z" + }, + "end": { + "$date": "2021-06-19T19:57:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bbd7ad5c-1393-44c0-b051-39ebd80c609b", + "start": { + "$date": "2021-06-19T19:57:32.000Z" + }, + "end": { + "$date": "2021-06-19T20:03:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ad4abdcd-50f4-411e-992b-59104c5cebed", + "start": { + "$date": "2021-06-19T20:03:32.000Z" + }, + "end": { + "$date": "2021-06-19T23:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "dae1e94a-91c4-4bd6-9169-c319354703af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-19T19:11:52.000Z" + }, + "end": { + "$date": "2021-06-19T19:57:23.000Z" + }, + "events": [ + { + "uuid": "c935b9af-d6b0-4ae3-a1c5-cc2bd3225ce3", + "start": { + "$date": "2021-06-19T19:11:52.000Z" + }, + "end": { + "$date": "2021-06-19T19:57:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "39786a63-6f98-4266-b32b-86b7a7f485ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-19T19:38:16.000Z" + }, + "end": { + "$date": "2021-06-19T20:21:54.000Z" + }, + "events": [ + { + "uuid": "9a987438-9002-4975-aed9-ceb8ff799c79", + "start": { + "$date": "2021-06-19T19:38:16.000Z" + }, + "end": { + "$date": "2021-06-19T20:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb8f10b1-35e8-4997-9df7-6ebaa64abf63", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T20:05:51.000Z" + }, + "end": { + "$date": "2021-06-19T20:22:35.000Z" + }, + "events": [ + { + "uuid": "8e9acc2b-336f-4032-a84d-05f3b1075d19", + "start": { + "$date": "2021-06-19T20:05:51.000Z" + }, + "end": { + "$date": "2021-06-19T20:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "8d633c5b-ab77-4485-b532-65499a7e0a74", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T20:23:01.000Z" + }, + "end": { + "$date": "2021-06-19T20:55:35.000Z" + }, + "events": [ + { + "uuid": "1ab0dbf5-e017-42b2-b532-f58931f834b7", + "start": { + "$date": "2021-06-19T20:23:01.000Z" + }, + "end": { + "$date": "2021-06-19T20:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "18243d51-a176-44e6-9cec-bc606b830cca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-19T20:46:42.000Z" + }, + "end": { + "$date": "2021-06-19T21:00:43.000Z" + }, + "events": [ + { + "uuid": "78c21ec8-7682-4243-b593-fef96e7e3948", + "start": { + "$date": "2021-06-19T20:46:42.000Z" + }, + "end": { + "$date": "2021-06-19T21:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "7316e1b0-69bc-4d67-bfeb-bf0ca0b2d29c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-19T20:59:28.000Z" + }, + "end": { + "$date": "2021-06-19T21:31:38.000Z" + }, + "events": [ + { + "uuid": "44f88ebc-775e-4d10-ae42-b7122dc63c17", + "start": { + "$date": "2021-06-19T20:59:28.000Z" + }, + "end": { + "$date": "2021-06-19T21:31:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "bc4e10dc-d386-4c11-94e7-8dd0cafa945a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T21:48:32.000Z" + }, + "end": { + "$date": "2021-06-19T21:57:37.000Z" + }, + "events": [ + { + "uuid": "ec874aee-9950-4ded-b97a-f4292b850f7a", + "start": { + "$date": "2021-06-19T21:48:32.000Z" + }, + "end": { + "$date": "2021-06-19T21:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3ac4d3c1-1825-4f1e-b67a-c5e7ffee4211", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-19T21:56:38.000Z" + }, + "end": { + "$date": "2021-06-19T23:03:05.000Z" + }, + "events": [ + { + "uuid": "e655f8c4-3566-411f-8988-597cf92e0437", + "start": { + "$date": "2021-06-19T21:56:38.000Z" + }, + "end": { + "$date": "2021-06-19T23:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3cbdfee2-1132-4be7-b9d8-8dd128a5544b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T21:59:12.000Z" + }, + "end": { + "$date": "2021-06-19T22:00:43.000Z" + }, + "events": [ + { + "uuid": "c8b53d44-6be7-4954-8c91-3a7003d2591d", + "start": { + "$date": "2021-06-19T21:59:12.000Z" + }, + "end": { + "$date": "2021-06-19T22:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b001714d-0f9d-4deb-8d4b-2decb0d4faf9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T22:00:48.000Z" + }, + "end": { + "$date": "2021-06-19T22:07:28.000Z" + }, + "events": [ + { + "uuid": "948b08af-f136-4f90-8386-d1acda2b14b1", + "start": { + "$date": "2021-06-19T22:00:48.000Z" + }, + "end": { + "$date": "2021-06-19T22:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "221ab74c-9d94-40ab-8d1a-f8b1f48cc7ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-19T22:17:38.000Z" + }, + "end": { + "$date": "2021-06-20T00:13:09.000Z" + }, + "events": [ + { + "uuid": "52f73b6c-bc23-48d7-90cb-8df9b236749b", + "start": { + "$date": "2021-06-19T22:17:38.000Z" + }, + "end": { + "$date": "2021-06-20T00:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ddf2979-7c78-4ab3-9eb0-be4db6d3e739", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-19T22:24:35.000Z" + }, + "end": { + "$date": "2021-06-19T22:59:25.000Z" + }, + "events": [ + { + "uuid": "b0c677d2-7291-46f5-acb9-4b246fc9234e", + "start": { + "$date": "2021-06-19T22:24:35.000Z" + }, + "end": { + "$date": "2021-06-19T22:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "dc4e144f-15e8-4d17-83f7-154b8b5893bf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-19T22:20:47.000Z" + }, + "end": { + "$date": "2021-06-20T00:12:37.000Z" + }, + "events": [ + { + "uuid": "8dc72aa4-900d-4938-8d14-ca61028bad21", + "start": { + "$date": "2021-06-19T22:20:47.000Z" + }, + "end": { + "$date": "2021-06-20T00:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0df9fccb-267a-4992-84b7-993fc4d981a8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-19T22:42:36.000Z" + }, + "end": { + "$date": "2021-06-20T00:43:07.000Z" + }, + "events": [ + { + "uuid": "1795018c-d786-4b8e-8db8-9cad2c7234fc", + "start": { + "$date": "2021-06-19T22:42:36.000Z" + }, + "end": { + "$date": "2021-06-19T23:17:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "47c50cf6-764d-4e77-8a5d-10c0367faa75", + "start": { + "$date": "2021-06-19T23:17:36.000Z" + }, + "end": { + "$date": "2021-06-20T00:35:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d26a624-be49-4259-87ee-9c127911b739", + "start": { + "$date": "2021-06-20T00:35:36.000Z" + }, + "end": { + "$date": "2021-06-20T00:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5970c28c-4c1d-457d-8e2c-311d221e2810", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T00:11:51.000Z" + }, + "end": { + "$date": "2021-06-20T00:30:12.000Z" + }, + "events": [ + { + "uuid": "065c9945-f956-4383-9287-0073183300d1", + "start": { + "$date": "2021-06-20T00:11:51.000Z" + }, + "end": { + "$date": "2021-06-20T00:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8dbfc99-155a-43d7-91a6-8db019d76a55", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T00:49:18.000Z" + }, + "end": { + "$date": "2021-06-20T00:49:37.000Z" + }, + "events": [ + { + "uuid": "6bf6e46a-4e07-456d-bc3a-cd1431a82d42", + "start": { + "$date": "2021-06-20T00:49:18.000Z" + }, + "end": { + "$date": "2021-06-20T00:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ec258e4-8b20-4e95-91ab-6c7fcd68609f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T00:51:47.000Z" + }, + "end": { + "$date": "2021-06-20T00:51:48.000Z" + }, + "events": [ + { + "uuid": "32f3d0b1-f1bf-43fd-916e-6e6aadf4a85a", + "start": { + "$date": "2021-06-20T00:51:47.000Z" + }, + "end": { + "$date": "2021-06-20T00:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7aa7463c-d64b-4ccd-99e2-1bde9881d88e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T00:30:04.000Z" + }, + "end": { + "$date": "2021-06-20T00:46:00.000Z" + }, + "events": [ + { + "uuid": "122fa5fb-9d01-4e86-9c2b-76d1455212a3", + "start": { + "$date": "2021-06-20T00:30:04.000Z" + }, + "end": { + "$date": "2021-06-20T00:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "d0773ec5-239c-44e0-8d12-d89384210461", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T00:44:17.000Z" + }, + "end": { + "$date": "2021-06-20T01:30:31.000Z" + }, + "events": [ + { + "uuid": "fae69ddf-fe8f-4119-bde2-590c86c913c3", + "start": { + "$date": "2021-06-20T00:44:17.000Z" + }, + "end": { + "$date": "2021-06-20T01:30:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e372aea-d1ab-45ce-b40b-6259ea1d012a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T00:54:28.000Z" + }, + "end": { + "$date": "2021-06-20T01:28:42.000Z" + }, + "events": [ + { + "uuid": "9a6e3d3e-43cf-4944-920e-9559143ff244", + "start": { + "$date": "2021-06-20T00:54:28.000Z" + }, + "end": { + "$date": "2021-06-20T01:28:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a39d9f28-5213-404c-9287-27e8ecd7f307", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T00:54:23.000Z" + }, + "end": { + "$date": "2021-06-20T01:28:41.000Z" + }, + "events": [ + { + "uuid": "206b5a8b-2085-4d7b-98ad-e805541cef44", + "start": { + "$date": "2021-06-20T00:54:23.000Z" + }, + "end": { + "$date": "2021-06-20T01:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e123be1c-0a19-4d9e-9d5b-62fb6273280c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T01:13:00.000Z" + }, + "end": { + "$date": "2021-06-20T01:25:50.000Z" + }, + "events": [ + { + "uuid": "9c0452c9-7161-407b-acf5-5847c8c84b72", + "start": { + "$date": "2021-06-20T01:13:00.000Z" + }, + "end": { + "$date": "2021-06-20T01:25:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d1dd1ef-5d66-4d5b-aa47-ec269a0daf6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T02:05:25.000Z" + }, + "end": { + "$date": "2021-06-20T02:10:46.000Z" + }, + "events": [ + { + "uuid": "932ae682-3bd6-451e-bd23-bd2a045247a6", + "start": { + "$date": "2021-06-20T02:05:25.000Z" + }, + "end": { + "$date": "2021-06-20T02:10:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1afdd02-4bd4-4d18-b233-94cef0dd44a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T01:31:46.000Z" + }, + "end": { + "$date": "2021-06-20T02:07:59.000Z" + }, + "events": [ + { + "uuid": "c6c9820b-95a3-4fe2-8baf-b8fb00586891", + "start": { + "$date": "2021-06-20T01:31:46.000Z" + }, + "end": { + "$date": "2021-06-20T02:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1d203c5-034d-46a9-9d4a-8e1bafe376cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T01:43:47.000Z" + }, + "end": { + "$date": "2021-06-20T02:07:49.000Z" + }, + "events": [ + { + "uuid": "117843f9-0e1c-4bc8-b503-d9f2d71afa8f", + "start": { + "$date": "2021-06-20T01:43:47.000Z" + }, + "end": { + "$date": "2021-06-20T02:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0f1a01bb-ea6a-4193-acf5-afaf9aee2571", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T01:30:46.000Z" + }, + "end": { + "$date": "2021-06-20T02:13:10.000Z" + }, + "events": [ + { + "uuid": "a2ee3ee4-b715-4142-88c4-88526f6850fb", + "start": { + "$date": "2021-06-20T01:30:46.000Z" + }, + "end": { + "$date": "2021-06-20T02:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6099fe5d-c78f-4404-b020-004e1bda197c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T01:39:34.000Z" + }, + "end": { + "$date": "2021-06-20T01:57:49.000Z" + }, + "events": [ + { + "uuid": "a2465d0a-2caa-4a17-9476-0b98a36de257", + "start": { + "$date": "2021-06-20T01:39:34.000Z" + }, + "end": { + "$date": "2021-06-20T01:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "302d34a2-2d58-4228-a102-0f28fcd109a0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T01:57:34.000Z" + }, + "end": { + "$date": "2021-06-20T04:28:00.000Z" + }, + "events": [ + { + "uuid": "27ad1f72-42e0-48ee-b302-bf4e301dfa1d", + "start": { + "$date": "2021-06-20T01:57:34.000Z" + }, + "end": { + "$date": "2021-06-20T04:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "458d9210-acb7-490d-9bf9-f5b64f6f9a02", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T02:08:13.000Z" + }, + "end": { + "$date": "2021-06-20T02:09:44.000Z" + }, + "events": [ + { + "uuid": "313c8fe6-e95d-42bf-b770-ef9fa7153814", + "start": { + "$date": "2021-06-20T02:08:13.000Z" + }, + "end": { + "$date": "2021-06-20T02:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65d55593-e649-4fa3-8ba1-5f20db8c32a9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T02:37:18.000Z" + }, + "end": { + "$date": "2021-06-20T02:37:20.000Z" + }, + "events": [ + { + "uuid": "8c421815-a23c-45fb-9bb9-9eabfd6b94f8", + "start": { + "$date": "2021-06-20T02:37:18.000Z" + }, + "end": { + "$date": "2021-06-20T02:37:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93e755e7-6c2a-44e2-b220-9af74a3bebea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T02:13:19.000Z" + }, + "end": { + "$date": "2021-06-20T02:49:16.000Z" + }, + "events": [ + { + "uuid": "840d1c9c-da33-462c-ae92-d9e4ce7693c6", + "start": { + "$date": "2021-06-20T02:13:19.000Z" + }, + "end": { + "$date": "2021-06-20T02:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7daba283-b3e1-4580-a9a1-f18f5d79c3a3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T02:13:05.000Z" + }, + "end": { + "$date": "2021-06-20T02:49:23.000Z" + }, + "events": [ + { + "uuid": "34b51a3a-a463-42bb-8d15-a441f2072238", + "start": { + "$date": "2021-06-20T02:13:05.000Z" + }, + "end": { + "$date": "2021-06-20T02:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed1d47d5-3cad-4d92-a9d0-d3e798e853fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T02:50:25.000Z" + }, + "end": { + "$date": "2021-06-20T03:25:10.000Z" + }, + "events": [ + { + "uuid": "43a8932b-19f4-489f-b118-d8c6536d18e6", + "start": { + "$date": "2021-06-20T02:50:25.000Z" + }, + "end": { + "$date": "2021-06-20T03:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "38afc0cb-df5b-4072-b43b-03257ef431a6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T02:37:59.000Z" + }, + "end": { + "$date": "2021-06-20T07:11:26.000Z" + }, + "events": [ + { + "uuid": "45faef56-8d4f-4b06-9f81-423e9adb154e", + "start": { + "$date": "2021-06-20T02:37:59.000Z" + }, + "end": { + "$date": "2021-06-20T07:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3422adb0-82cb-44be-9c23-b8ffd0cc7d5b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T02:42:53.000Z" + }, + "end": { + "$date": "2021-06-20T02:47:09.000Z" + }, + "events": [ + { + "uuid": "0c35d882-6cae-4e2b-8c48-4c458f45ead5", + "start": { + "$date": "2021-06-20T02:42:53.000Z" + }, + "end": { + "$date": "2021-06-20T02:47:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "29978e9f-8dbf-43ba-a1fb-0c2d2091a3ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T02:47:29.000Z" + }, + "end": { + "$date": "2021-06-20T02:58:17.000Z" + }, + "events": [ + { + "uuid": "4a19fc5d-58e8-413a-b581-c859ce4e9431", + "start": { + "$date": "2021-06-20T02:47:29.000Z" + }, + "end": { + "$date": "2021-06-20T02:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf72d848-844e-4d22-8ddb-df92675c3dd7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T02:50:31.000Z" + }, + "end": { + "$date": "2021-06-20T03:28:09.000Z" + }, + "events": [ + { + "uuid": "a332f116-1f98-450e-b9f4-b9ac0a1a8632", + "start": { + "$date": "2021-06-20T02:50:31.000Z" + }, + "end": { + "$date": "2021-06-20T03:28:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee750723-b9a1-40f5-a68c-3bb3cf341523", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T02:50:53.000Z" + }, + "end": { + "$date": "2021-06-20T03:28:21.000Z" + }, + "events": [ + { + "uuid": "a18d5880-7dd7-45e5-a931-73b88cd0d5a6", + "start": { + "$date": "2021-06-20T02:50:53.000Z" + }, + "end": { + "$date": "2021-06-20T03:28:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "c5a6f2ec-d01f-4392-9ea5-e5f4dc4c1599", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-20T03:15:09.000Z" + }, + "end": { + "$date": "2021-06-20T05:06:46.000Z" + }, + "events": [ + { + "uuid": "d7f016da-e030-4fb4-a388-eb5e4cee57ca", + "start": { + "$date": "2021-06-20T03:15:09.000Z" + }, + "end": { + "$date": "2021-06-20T05:06:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "a8f079f1-a27a-4e05-a0fd-d62ad5d7e662", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-20T05:05:13.000Z" + }, + "end": { + "$date": "2021-06-20T05:05:18.000Z" + }, + "events": [ + { + "uuid": "0ee50710-fddd-4542-9a9d-83e550855db8", + "start": { + "$date": "2021-06-20T05:05:13.000Z" + }, + "end": { + "$date": "2021-06-20T05:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "bc48c95f-7409-413e-af5d-61b8770a7e29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T04:42:24.000Z" + }, + "end": { + "$date": "2021-06-20T05:41:13.000Z" + }, + "events": [ + { + "uuid": "810d9c08-ad24-4ec5-9954-942473f81972", + "start": { + "$date": "2021-06-20T04:42:24.000Z" + }, + "end": { + "$date": "2021-06-20T04:55:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99673a47-5d2a-469b-9588-1230b3fdaaa0", + "start": { + "$date": "2021-06-20T04:55:24.000Z" + }, + "end": { + "$date": "2021-06-20T04:58:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8defcde7-6e16-4392-9b7f-3ce31ccdce6a", + "start": { + "$date": "2021-06-20T04:58:24.000Z" + }, + "end": { + "$date": "2021-06-20T05:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "098c3005-d977-4ad0-bf4b-0d910cc6d304", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T04:20:01.000Z" + }, + "end": { + "$date": "2021-06-20T04:51:46.000Z" + }, + "events": [ + { + "uuid": "18a903fe-234f-490d-92a5-d0039f7a5a90", + "start": { + "$date": "2021-06-20T04:20:01.000Z" + }, + "end": { + "$date": "2021-06-20T04:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "56f5939d-d67f-4eb7-88eb-9f98432daf0b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T04:23:45.000Z" + }, + "end": { + "$date": "2021-06-20T04:26:40.000Z" + }, + "events": [ + { + "uuid": "ba37c06c-a5ce-4a0d-b428-10617ac199b0", + "start": { + "$date": "2021-06-20T04:23:45.000Z" + }, + "end": { + "$date": "2021-06-20T04:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "586ce051-2850-4070-aa27-edd39141ed5c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T04:26:59.000Z" + }, + "end": { + "$date": "2021-06-20T04:32:53.000Z" + }, + "events": [ + { + "uuid": "b34ab6cc-d5bd-486f-a40d-5f3a1f11cd29", + "start": { + "$date": "2021-06-20T04:26:59.000Z" + }, + "end": { + "$date": "2021-06-20T04:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "f01858da-08cc-41b7-8c69-ca8519e6d9f1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T04:28:06.000Z" + }, + "end": { + "$date": "2021-06-20T06:36:01.000Z" + }, + "events": [ + { + "uuid": "d53bedc3-eb63-4dab-b487-c06390ffafb3", + "start": { + "$date": "2021-06-20T04:28:06.000Z" + }, + "end": { + "$date": "2021-06-20T06:36:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "248d6521-9760-4a8a-b8fa-873754a5f102", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T04:33:26.000Z" + }, + "end": { + "$date": "2021-06-20T05:50:20.000Z" + }, + "events": [ + { + "uuid": "8608c603-95af-45f3-ade2-26a1b5f7f317", + "start": { + "$date": "2021-06-20T04:33:26.000Z" + }, + "end": { + "$date": "2021-06-20T05:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "802b78db-9cee-45f3-a4ca-113006dd2517", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T04:33:36.000Z" + }, + "end": { + "$date": "2021-06-20T06:05:44.000Z" + }, + "events": [ + { + "uuid": "26954266-2d7a-4d91-8b7b-cb97b6de6f3c", + "start": { + "$date": "2021-06-20T04:33:36.000Z" + }, + "end": { + "$date": "2021-06-20T06:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "60f0b1e9-3800-48c9-93fa-1835421b9658", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T04:52:00.000Z" + }, + "end": { + "$date": "2021-06-20T05:39:27.000Z" + }, + "events": [ + { + "uuid": "04bd0b47-5992-47b0-8526-bc1e336f87f8", + "start": { + "$date": "2021-06-20T04:52:00.000Z" + }, + "end": { + "$date": "2021-06-20T05:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "f12b8705-f377-49e4-802d-8aa2cc54ee4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-20T04:57:53.000Z" + }, + "end": { + "$date": "2021-06-20T06:04:51.000Z" + }, + "events": [ + { + "uuid": "32ecbc7e-c81b-4ced-aa7a-69dac4a6eaef", + "start": { + "$date": "2021-06-20T04:57:53.000Z" + }, + "end": { + "$date": "2021-06-20T05:43:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7c7bc25-c1b2-447a-bc3b-d06ba26e1ec9", + "start": { + "$date": "2021-06-20T05:43:53.000Z" + }, + "end": { + "$date": "2021-06-20T05:55:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42b34663-9e6b-42f3-b430-d6fc86e3dfdf", + "start": { + "$date": "2021-06-20T05:55:53.000Z" + }, + "end": { + "$date": "2021-06-20T06:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "7e9b0d2d-b30e-496a-9777-2f41b925a151", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-20T05:05:28.000Z" + }, + "end": { + "$date": "2021-06-20T08:21:44.000Z" + }, + "events": [ + { + "uuid": "3093f7b7-e675-4ae0-aace-9fa97d9ac345", + "start": { + "$date": "2021-06-20T05:05:28.000Z" + }, + "end": { + "$date": "2021-06-20T08:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "cce0de6b-fd64-4a18-a39f-94f096a37463", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-20T05:06:51.000Z" + }, + "end": { + "$date": "2021-06-20T08:21:41.000Z" + }, + "events": [ + { + "uuid": "06007fb1-e266-42f7-85c1-ace1b1c6a174", + "start": { + "$date": "2021-06-20T05:06:51.000Z" + }, + "end": { + "$date": "2021-06-20T08:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "28bc5277-1c47-4132-9d4f-d6fe9335dfa5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T05:41:43.000Z" + }, + "end": { + "$date": "2021-06-20T06:02:06.000Z" + }, + "events": [ + { + "uuid": "7d5a8b96-dace-4e27-82a8-a20136e03bdb", + "start": { + "$date": "2021-06-20T05:41:43.000Z" + }, + "end": { + "$date": "2021-06-20T06:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "142c2c67-037c-4b65-89d5-db1fed88a9c0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T05:57:47.000Z" + }, + "end": { + "$date": "2021-06-20T06:37:02.000Z" + }, + "events": [ + { + "uuid": "00e061cf-15a4-447d-8e24-d9b5bdd0b9e0", + "start": { + "$date": "2021-06-20T05:57:47.000Z" + }, + "end": { + "$date": "2021-06-20T06:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a9cc843-4d2f-48c5-999b-2260571de789", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T05:56:48.000Z" + }, + "end": { + "$date": "2021-06-20T06:28:51.000Z" + }, + "events": [ + { + "uuid": "1870934b-5672-4f0d-8499-9fa4dc76d81f", + "start": { + "$date": "2021-06-20T05:56:48.000Z" + }, + "end": { + "$date": "2021-06-20T06:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ba5cee0-bdfd-4b4d-9ad6-6080430d47b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T06:36:26.000Z" + }, + "end": { + "$date": "2021-06-20T07:06:51.000Z" + }, + "events": [ + { + "uuid": "a6519f22-d79f-463a-970f-c08bd65f7d10", + "start": { + "$date": "2021-06-20T06:36:26.000Z" + }, + "end": { + "$date": "2021-06-20T07:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aad2f27f-b197-4745-8462-8ff83b0f2eb7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-20T06:38:03.000Z" + }, + "end": { + "$date": "2021-06-20T11:29:58.000Z" + }, + "events": [ + { + "uuid": "472cb727-9806-4cfc-8e13-afaf8c76a48a", + "start": { + "$date": "2021-06-20T06:38:03.000Z" + }, + "end": { + "$date": "2021-06-20T07:02:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "095593df-f3b7-464c-95cd-eff8cd6f9e26", + "start": { + "$date": "2021-06-20T07:02:03.000Z" + }, + "end": { + "$date": "2021-06-20T07:13:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "015cef09-63c5-4aaf-a41e-742b688b47f9", + "start": { + "$date": "2021-06-20T07:13:03.000Z" + }, + "end": { + "$date": "2021-06-20T07:18:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01e315b7-343c-49f5-a43d-061b741e8245", + "start": { + "$date": "2021-06-20T07:18:03.000Z" + }, + "end": { + "$date": "2021-06-20T11:29:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d48a563c-70f2-4aa1-876a-e84e4cf00b27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-20T06:38:18.000Z" + }, + "end": { + "$date": "2021-06-21T04:04:21.000Z" + }, + "events": [ + { + "uuid": "21096cfd-ca57-4d4c-8def-c7f6b6c08eb9", + "start": { + "$date": "2021-06-20T06:38:18.000Z" + }, + "end": { + "$date": "2021-06-20T07:20:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbcf8293-26e3-4b23-9b77-a14a014492bf", + "start": { + "$date": "2021-06-20T07:20:18.000Z" + }, + "end": { + "$date": "2021-06-20T17:10:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b2fb359-f2b6-47ce-a478-b506f762652d", + "start": { + "$date": "2021-06-20T17:10:18.000Z" + }, + "end": { + "$date": "2021-06-20T17:57:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "16f9a93d-c635-4b2e-aa7e-974bc39c2a6a", + "start": { + "$date": "2021-06-20T17:57:18.000Z" + }, + "end": { + "$date": "2021-06-20T18:41:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0ca0eba-dc8e-4ee4-8d3d-a2e7dd8238a4", + "start": { + "$date": "2021-06-20T18:41:18.000Z" + }, + "end": { + "$date": "2021-06-20T18:43:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8cd474ee-8c8a-48ea-88b8-e220c285023c", + "start": { + "$date": "2021-06-20T18:43:18.000Z" + }, + "end": { + "$date": "2021-06-20T19:46:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "156476c6-89ec-42ef-a3be-f9fb8277cecf", + "start": { + "$date": "2021-06-20T19:46:18.000Z" + }, + "end": { + "$date": "2021-06-20T19:49:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b6bae25-84d3-4154-a34b-11dd6f8c1f07", + "start": { + "$date": "2021-06-20T19:49:18.000Z" + }, + "end": { + "$date": "2021-06-20T21:10:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e3721e84-ca20-402c-b31e-a70e9bf686b0", + "start": { + "$date": "2021-06-20T21:10:18.000Z" + }, + "end": { + "$date": "2021-06-20T22:54:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0591259e-0e2a-495d-8a8a-4d40a0531549", + "start": { + "$date": "2021-06-20T22:54:18.000Z" + }, + "end": { + "$date": "2021-06-21T02:47:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9651f883-dd9d-49b2-8e3f-6a56ccbdf0cc", + "start": { + "$date": "2021-06-21T02:47:18.000Z" + }, + "end": { + "$date": "2021-06-21T04:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "310d1f37-1469-4200-8657-b75d5d3c86d8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-20T07:36:48.000Z" + }, + "end": { + "$date": "2021-06-20T08:07:21.000Z" + }, + "events": [ + { + "uuid": "3d7a942d-0af6-4a0f-98dd-b7d508f36f87", + "start": { + "$date": "2021-06-20T07:36:48.000Z" + }, + "end": { + "$date": "2021-06-20T08:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "97ceca3f-029a-4dee-8c84-a1dc10090e9d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T08:00:06.000Z" + }, + "end": { + "$date": "2021-06-20T10:04:32.000Z" + }, + "events": [ + { + "uuid": "178149c0-e53d-4d73-86b9-c393d651766e", + "start": { + "$date": "2021-06-20T08:00:06.000Z" + }, + "end": { + "$date": "2021-06-20T10:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83cc862a-22c2-4177-b831-121e4ea97aa8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-20T08:11:51.000Z" + }, + "end": { + "$date": "2021-06-20T08:36:14.000Z" + }, + "events": [ + { + "uuid": "cba5d5f5-4dc2-4bf2-ae45-a6d8b2adee5b", + "start": { + "$date": "2021-06-20T08:11:51.000Z" + }, + "end": { + "$date": "2021-06-20T08:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ec567890-1c69-4270-9f5e-92878d36596a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T10:04:57.000Z" + }, + "end": { + "$date": "2021-06-20T10:31:54.000Z" + }, + "events": [ + { + "uuid": "4e552bf9-389b-4104-81c9-86274c42afe8", + "start": { + "$date": "2021-06-20T10:04:57.000Z" + }, + "end": { + "$date": "2021-06-20T10:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b223ff8c-1cc7-4b8d-b8f6-b00b92f19f2b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T11:24:09.000Z" + }, + "end": { + "$date": "2021-06-20T11:47:48.000Z" + }, + "events": [ + { + "uuid": "6c75083c-d861-4cb2-aad8-1cc3392246fa", + "start": { + "$date": "2021-06-20T11:24:09.000Z" + }, + "end": { + "$date": "2021-06-20T11:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "05f1065c-16dc-4915-a3a9-e75d689d8ebd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T11:48:06.000Z" + }, + "end": { + "$date": "2021-06-20T14:55:27.000Z" + }, + "events": [ + { + "uuid": "b9703565-2769-43ea-8df5-1a2442a569f6", + "start": { + "$date": "2021-06-20T11:48:06.000Z" + }, + "end": { + "$date": "2021-06-20T13:52:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03a863be-62dd-4c80-86ab-9c6b644be115", + "start": { + "$date": "2021-06-20T13:52:06.000Z" + }, + "end": { + "$date": "2021-06-20T14:50:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5218e5d-ad74-4153-86a7-e4a604a10a35", + "start": { + "$date": "2021-06-20T14:50:06.000Z" + }, + "end": { + "$date": "2021-06-20T14:55:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cd6ce31b-c1c2-43db-90c6-18a85e874944", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T14:08:53.000Z" + }, + "end": { + "$date": "2021-06-20T16:32:14.000Z" + }, + "events": [ + { + "uuid": "773734dc-fe12-4361-b662-9cde61de9f8e", + "start": { + "$date": "2021-06-20T14:08:53.000Z" + }, + "end": { + "$date": "2021-06-20T16:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "e7398bcc-0723-4fae-80ad-32930f2ae57f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-20T15:03:59.000Z" + }, + "end": { + "$date": "2021-06-20T15:22:49.000Z" + }, + "events": [ + { + "uuid": "f0fbaa0d-7d86-44d5-91f2-a9c2a3d80dcd", + "start": { + "$date": "2021-06-20T15:03:59.000Z" + }, + "end": { + "$date": "2021-06-20T15:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fea36b83-3d88-44b8-874d-bcd2e8497b7d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-20T15:17:09.000Z" + }, + "end": { + "$date": "2021-06-20T22:34:51.000Z" + }, + "events": [ + { + "uuid": "c01d1126-2b35-4f0a-b38c-e92dd010bfc4", + "start": { + "$date": "2021-06-20T15:17:09.000Z" + }, + "end": { + "$date": "2021-06-20T19:52:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "368c5ba9-d3ae-4fa9-b6b9-8c1e619cec57", + "start": { + "$date": "2021-06-20T19:52:09.000Z" + }, + "end": { + "$date": "2021-06-20T19:57:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99f97b4c-4e9d-47f4-b1e6-ad90ee2c8922", + "start": { + "$date": "2021-06-20T19:57:09.000Z" + }, + "end": { + "$date": "2021-06-20T20:07:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c476af4-edd4-4d5b-91f4-b3501e0a78a2", + "start": { + "$date": "2021-06-20T20:07:09.000Z" + }, + "end": { + "$date": "2021-06-20T21:18:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3871fe99-eee3-4f4a-9a70-dc1b71cbe97c", + "start": { + "$date": "2021-06-20T21:18:09.000Z" + }, + "end": { + "$date": "2021-06-20T21:20:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "52fa1897-326b-44e8-a2a8-338e494cc76f", + "start": { + "$date": "2021-06-20T21:20:09.000Z" + }, + "end": { + "$date": "2021-06-20T21:49:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5051f5ef-66ca-480d-b8a0-2c718d64d119", + "start": { + "$date": "2021-06-20T21:49:09.000Z" + }, + "end": { + "$date": "2021-06-20T21:54:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d99fb2fe-5eb3-4118-a0f5-72932af77054", + "start": { + "$date": "2021-06-20T21:54:09.000Z" + }, + "end": { + "$date": "2021-06-20T22:34:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "69854ce2-93cd-4ac8-87f4-158d2c5af449", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-20T15:23:26.000Z" + }, + "end": { + "$date": "2021-06-20T16:32:05.000Z" + }, + "events": [ + { + "uuid": "e924f9ac-dcd5-4fa0-a236-06ded78fd56c", + "start": { + "$date": "2021-06-20T15:23:26.000Z" + }, + "end": { + "$date": "2021-06-20T15:50:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "517905d1-c34b-4549-813f-3d2e32788407", + "start": { + "$date": "2021-06-20T15:50:26.000Z" + }, + "end": { + "$date": "2021-06-20T15:51:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b994f87d-117b-4045-b310-c604a68dc8d7", + "start": { + "$date": "2021-06-20T15:51:26.000Z" + }, + "end": { + "$date": "2021-06-20T16:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", + "uuid": "34c23071-8dae-4e9c-94a1-4233d7864642", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-20T15:23:56.000Z" + }, + "end": { + "$date": "2021-06-20T15:56:13.000Z" + }, + "events": [ + { + "uuid": "f29cff1d-e5cd-4d17-9619-714d0f224cfd", + "start": { + "$date": "2021-06-20T15:23:56.000Z" + }, + "end": { + "$date": "2021-06-20T15:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "60d2e579-8cf8-4dc5-9f30-63c3f183c0d2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-20T16:21:19.000Z" + }, + "end": { + "$date": "2021-06-20T16:28:59.000Z" + }, + "events": [ + { + "uuid": "1625457f-d128-46c4-b555-bbae6ab12974", + "start": { + "$date": "2021-06-20T16:21:19.000Z" + }, + "end": { + "$date": "2021-06-20T16:28:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "bf156ff1-f580-41eb-a7db-4889de55b6e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-20T16:29:15.000Z" + }, + "end": { + "$date": "2021-06-20T16:52:21.000Z" + }, + "events": [ + { + "uuid": "e3d7ee7c-f8c4-4215-8552-016ed6b430ab", + "start": { + "$date": "2021-06-20T16:29:15.000Z" + }, + "end": { + "$date": "2021-06-20T16:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a2d1eaa6-46e1-4ea6-9ba2-cc2295c0e513", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-21T04:10:10.000Z" + }, + "end": { + "$date": "2021-06-21T05:56:15.000Z" + }, + "events": [ + { + "uuid": "7ab1c873-a34d-4c40-b0a0-5a141ba18b4e", + "start": { + "$date": "2021-06-21T04:10:10.000Z" + }, + "end": { + "$date": "2021-06-21T04:46:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "abb1a95b-9d90-4908-8c92-dea8f47444a3", + "start": { + "$date": "2021-06-21T04:46:10.000Z" + }, + "end": { + "$date": "2021-06-21T05:16:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af65b0e8-3cda-4680-836e-10a137da12f1", + "start": { + "$date": "2021-06-21T05:16:10.000Z" + }, + "end": { + "$date": "2021-06-21T05:26:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5e89bde8-b99f-4fed-9962-972f8507f872", + "start": { + "$date": "2021-06-21T05:26:10.000Z" + }, + "end": { + "$date": "2021-06-21T06:15:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b537606-02d5-417a-bbd9-12551249e007", + "start": { + "$date": "2021-06-21T06:15:10.000Z" + }, + "end": { + "$date": "2021-06-21T07:40:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef6d9152-42e3-4e60-815e-bea0e72a32b9", + "start": { + "$date": "2021-06-21T07:40:10.000Z" + }, + "end": { + "$date": "2021-06-21T07:43:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7a4ce2ce-c665-45a9-9937-35879a8e7bee", + "start": { + "$date": "2021-06-21T07:43:10.000Z" + }, + "end": { + "$date": "2021-06-21T10:17:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50e1c2dd-6e90-4806-9f95-47ba4742f88e", + "start": { + "$date": "2021-06-21T10:17:10.000Z" + }, + "end": { + "$date": "2021-06-21T12:12:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edc6975b-fcf9-4038-a83b-18d5e23b9e74", + "start": { + "$date": "2021-06-21T12:12:10.000Z" + }, + "end": { + "$date": "2021-06-21T12:22:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26f8f471-5116-4234-8ff9-b9edc3e6b33b", + "start": { + "$date": "2021-06-21T12:22:10.000Z" + }, + "end": { + "$date": "2021-06-21T12:44:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0071359-955e-4d72-8acc-282a5211060e", + "start": { + "$date": "2021-06-21T12:44:10.000Z" + }, + "end": { + "$date": "2021-06-21T14:02:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8af80c81-8672-4046-80bf-6f75495a9d0b", + "start": { + "$date": "2021-06-21T14:02:10.000Z" + }, + "end": { + "$date": "2021-06-21T14:03:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4950cc11-a403-4000-b30c-d6f2862c4485", + "start": { + "$date": "2021-06-21T14:03:10.000Z" + }, + "end": { + "$date": "2021-06-21T14:05:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df6d0df1-e22f-4e3e-be6f-e1d29ccb4a42", + "start": { + "$date": "2021-06-21T14:05:10.000Z" + }, + "end": { + "$date": "2021-06-21T15:25:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f4daa67-3775-4579-8980-83a90e29f810", + "start": { + "$date": "2021-06-21T15:25:10.000Z" + }, + "end": { + "$date": "2021-06-21T15:27:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3d18fcb9-10ae-4461-ab2b-95e10c36ca3e", + "start": { + "$date": "2021-06-21T15:27:10.000Z" + }, + "end": { + "$date": "2021-06-21T15:36:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "22a11376-2d38-4bdf-a448-04580bb5f3f2", + "start": { + "$date": "2021-06-21T15:36:10.000Z" + }, + "end": { + "$date": "2021-06-21T05:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "d2d1e728-b5ca-4d7d-ac76-02e99ae37114", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T18:20:20.000Z" + }, + "end": { + "$date": "2021-06-20T18:25:11.000Z" + }, + "events": [ + { + "uuid": "17e9610f-243a-4231-b240-863dfb3097a0", + "start": { + "$date": "2021-06-20T18:20:20.000Z" + }, + "end": { + "$date": "2021-06-20T18:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4c98b7a6-6d44-4217-b8be-1941d003ff2a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T18:28:06.000Z" + }, + "end": { + "$date": "2021-06-20T18:33:02.000Z" + }, + "events": [ + { + "uuid": "2c81becc-c0bc-4aa3-9258-d3bcaf74b9c8", + "start": { + "$date": "2021-06-20T18:28:06.000Z" + }, + "end": { + "$date": "2021-06-20T18:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7ef41887-d55b-42e7-84c2-793ecf57feb8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-20T18:33:27.000Z" + }, + "end": { + "$date": "2021-06-20T18:36:37.000Z" + }, + "events": [ + { + "uuid": "21be285c-1bf4-4a84-9a16-0430c48576aa", + "start": { + "$date": "2021-06-20T18:33:27.000Z" + }, + "end": { + "$date": "2021-06-20T18:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3cc5af60-876e-40a7-a3c3-341ef75cebc8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-20T18:55:46.000Z" + }, + "end": { + "$date": "2021-06-20T19:25:16.000Z" + }, + "events": [ + { + "uuid": "481314dc-4cff-4ad7-bffb-9ee74158048a", + "start": { + "$date": "2021-06-20T18:55:46.000Z" + }, + "end": { + "$date": "2021-06-20T19:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1b730280-da54-438c-9844-41ea63ce3293", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T19:13:15.000Z" + }, + "end": { + "$date": "2021-06-20T19:20:25.000Z" + }, + "events": [ + { + "uuid": "997c1f24-e865-424b-8940-75a17325bb84", + "start": { + "$date": "2021-06-20T19:13:15.000Z" + }, + "end": { + "$date": "2021-06-20T19:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b512c5e5-09de-4d65-b06e-c1f032473602", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-20T19:19:20.000Z" + }, + "end": { + "$date": "2021-06-20T22:29:01.000Z" + }, + "events": [ + { + "uuid": "fcc5f656-6c48-40c3-987d-1afdd6c7bad0", + "start": { + "$date": "2021-06-20T19:19:20.000Z" + }, + "end": { + "$date": "2021-06-20T22:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ac9995f9-19a3-40f3-9ed9-64c193ba3bff", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-20T19:26:27.000Z" + }, + "end": { + "$date": "2021-06-20T22:29:07.000Z" + }, + "events": [ + { + "uuid": "7ec6c97f-3a10-4092-89f7-c72765eb5869", + "start": { + "$date": "2021-06-20T19:26:27.000Z" + }, + "end": { + "$date": "2021-06-20T22:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a1f84475-adda-4a10-921c-40a7d8b8e656", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T20:22:59.000Z" + }, + "end": { + "$date": "2021-06-20T20:25:10.000Z" + }, + "events": [ + { + "uuid": "5d6446a0-26a6-453b-b863-1ec4cdca2876", + "start": { + "$date": "2021-06-20T20:22:59.000Z" + }, + "end": { + "$date": "2021-06-20T20:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8a6d542e-380d-48f3-9626-17b0c0a5f5a2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-20T22:30:15.000Z" + }, + "end": { + "$date": "2021-06-20T23:12:24.000Z" + }, + "events": [ + { + "uuid": "eb0607e4-de97-449e-8331-bc153727af4e", + "start": { + "$date": "2021-06-20T22:30:15.000Z" + }, + "end": { + "$date": "2021-06-20T23:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a72dee84-5bcb-4fb1-997a-3f96a674b615", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-20T22:51:24.000Z" + }, + "end": { + "$date": "2021-06-20T23:08:57.000Z" + }, + "events": [ + { + "uuid": "aa53c34f-e441-4534-ad49-5aba3519de92", + "start": { + "$date": "2021-06-20T22:51:24.000Z" + }, + "end": { + "$date": "2021-06-20T23:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "931902ae-9976-43d8-a7d9-33b955acba39", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-20T23:19:10.000Z" + }, + "end": { + "$date": "2021-06-20T23:56:51.000Z" + }, + "events": [ + { + "uuid": "4dbd9400-edec-4a25-b2d9-09103e909ba6", + "start": { + "$date": "2021-06-20T23:19:10.000Z" + }, + "end": { + "$date": "2021-06-20T23:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "92bcd36f-be23-4ee6-bc29-6bdc37d0fb0a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-21T02:46:56.000Z" + }, + "end": { + "$date": "2021-06-21T06:31:33.000Z" + }, + "events": [ + { + "uuid": "cf0a9f80-5934-49a5-a3c4-fc52011080b4", + "start": { + "$date": "2021-06-21T02:46:56.000Z" + }, + "end": { + "$date": "2021-06-21T06:31:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "05197dd7-8253-435c-9b7f-9c92beda8b1e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-21T02:47:32.000Z" + }, + "end": { + "$date": "2021-06-21T06:31:58.000Z" + }, + "events": [ + { + "uuid": "b9137867-abf9-4bf3-9297-8caab93765ed", + "start": { + "$date": "2021-06-21T02:47:32.000Z" + }, + "end": { + "$date": "2021-06-21T06:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e366b0b8-292a-47b4-9fb5-c4d8d0e2bce3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-21T02:50:31.000Z" + }, + "end": { + "$date": "2021-06-21T08:35:46.000Z" + }, + "events": [ + { + "uuid": "1b1d7a47-8911-4208-a55d-812d4dbd76e6", + "start": { + "$date": "2021-06-21T02:50:31.000Z" + }, + "end": { + "$date": "2021-06-21T08:35:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c01d8765-2779-4a33-9165-805837ba9154", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-21T03:01:30.000Z" + }, + "end": { + "$date": "2021-06-21T03:30:54.000Z" + }, + "events": [ + { + "uuid": "180c2d0c-ad2b-43db-b794-5f96cd426298", + "start": { + "$date": "2021-06-21T03:01:30.000Z" + }, + "end": { + "$date": "2021-06-21T03:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cd87e798-611b-4847-aa06-882354c5f9b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-21T03:11:41.000Z" + }, + "end": { + "$date": "2021-06-21T04:02:48.000Z" + }, + "events": [ + { + "uuid": "08005bd1-7e18-476b-9a8d-f572e89d72c8", + "start": { + "$date": "2021-06-21T03:11:41.000Z" + }, + "end": { + "$date": "2021-06-21T04:02:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "96add697-cbb7-42f3-89b5-de37dcd29512", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-21T03:54:39.000Z" + }, + "end": { + "$date": "2021-06-21T04:42:48.000Z" + }, + "events": [ + { + "uuid": "1c860b79-2b15-4248-9213-a0ecf661079c", + "start": { + "$date": "2021-06-21T03:54:39.000Z" + }, + "end": { + "$date": "2021-06-21T04:42:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b777fa1-41f9-4904-a34a-58c316e626e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-21T04:05:15.000Z" + }, + "end": { + "$date": "2021-06-21T04:06:46.000Z" + }, + "events": [ + { + "uuid": "ae36334f-9ac4-4c95-a0fb-a4c51872b6f1", + "start": { + "$date": "2021-06-21T04:05:15.000Z" + }, + "end": { + "$date": "2021-06-21T04:06:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fec61691-db64-4cfd-a398-0e44d4411b50", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-21T04:06:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:56:58.000Z" + }, + "events": [ + { + "uuid": "8b14cb87-91c6-4c6b-a062-33fafa70c4e9", + "start": { + "$date": "2021-06-21T04:06:57.000Z" + }, + "end": { + "$date": "2021-06-21T05:30:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7327fa0e-3915-4d3a-87f6-e7722d88352f", + "start": { + "$date": "2021-06-21T05:30:57.000Z" + }, + "end": { + "$date": "2021-06-21T06:59:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53d00f79-cfeb-44ed-884e-43effe93a8ba", + "start": { + "$date": "2021-06-21T06:59:57.000Z" + }, + "end": { + "$date": "2021-06-21T07:40:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "217dfbc4-d03b-4580-bc62-82c82821f1dd", + "start": { + "$date": "2021-06-21T07:40:57.000Z" + }, + "end": { + "$date": "2021-06-21T15:01:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee80538e-1c8f-4905-a5f6-d1fc8193a88a", + "start": { + "$date": "2021-06-21T15:01:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:31:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4444f210-2d9e-45e2-8d57-72866cc85b80", + "start": { + "$date": "2021-06-21T16:31:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:39:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9976af69-6ea1-46dd-ad4b-67abe1bb3071", + "start": { + "$date": "2021-06-21T16:39:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:42:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "43a643b2-2cfa-4da3-9a7d-879072c7507f", + "start": { + "$date": "2021-06-21T16:42:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:47:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "781677ed-396c-446a-bba8-33fa70e91d26", + "start": { + "$date": "2021-06-21T16:47:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:51:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a21918d6-fe98-4a5d-a435-a3cdc2202db9", + "start": { + "$date": "2021-06-21T16:51:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:53:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "78da37f3-a0bd-4afe-90a1-97ecd749947d", + "start": { + "$date": "2021-06-21T16:53:57.000Z" + }, + "end": { + "$date": "2021-06-21T16:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4d6a0256-f92a-47e1-9147-084580005fd4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-21T04:10:26.000Z" + }, + "end": { + "$date": "2021-06-21T06:31:30.000Z" + }, + "events": [ + { + "uuid": "c82b7548-3ac5-4627-ad46-216fc505acbe", + "start": { + "$date": "2021-06-21T04:10:26.000Z" + }, + "end": { + "$date": "2021-06-21T06:31:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "712eacac-b622-4507-8b2e-eed8f8338cb1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-21T04:31:44.000Z" + }, + "end": { + "$date": "2021-06-21T04:51:43.000Z" + }, + "events": [ + { + "uuid": "06e4eaba-6ab6-4f13-b6ab-5f9ba5c1bc26", + "start": { + "$date": "2021-06-21T04:31:44.000Z" + }, + "end": { + "$date": "2021-06-21T04:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a304cd7-f3a2-45cc-8a2e-5c2c49dff70a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-21T05:03:29.000Z" + }, + "end": { + "$date": "2021-06-21T05:36:48.000Z" + }, + "events": [ + { + "uuid": "7916a3a5-a87e-4ac4-ada4-f7c16a98f175", + "start": { + "$date": "2021-06-21T05:03:29.000Z" + }, + "end": { + "$date": "2021-06-21T05:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "ffd513de-9d24-4f3f-a424-d3bb3d6d7ae4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-21T06:44:53.000Z" + }, + "end": { + "$date": "2021-06-21T06:46:04.000Z" + }, + "events": [ + { + "uuid": "12d38a90-1eec-44a0-b1fe-615ade70f27d", + "start": { + "$date": "2021-06-21T06:44:53.000Z" + }, + "end": { + "$date": "2021-06-21T06:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "414ae502-d0f5-4809-87a0-c53162085d91", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-21T06:34:08.000Z" + }, + "end": { + "$date": "2021-06-21T09:50:04.000Z" + }, + "events": [ + { + "uuid": "4733afd0-64ed-472f-98dd-eeb9d1af2f86", + "start": { + "$date": "2021-06-21T06:34:08.000Z" + }, + "end": { + "$date": "2021-06-21T09:50:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "b4973613-ad41-4b66-a9d3-29b4e1baceaf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-21T06:46:14.000Z" + }, + "end": { + "$date": "2021-06-21T06:54:54.000Z" + }, + "events": [ + { + "uuid": "a0e37a77-3ed8-4f7c-9e2e-55920da127cf", + "start": { + "$date": "2021-06-21T06:46:14.000Z" + }, + "end": { + "$date": "2021-06-21T06:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "5e7aa612-8235-49ab-9a41-199d672c8854", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-21T06:55:39.000Z" + }, + "end": { + "$date": "2021-06-21T09:48:16.000Z" + }, + "events": [ + { + "uuid": "a67b45d8-106f-4717-8304-3e4cb83d6fbb", + "start": { + "$date": "2021-06-21T06:55:39.000Z" + }, + "end": { + "$date": "2021-06-21T09:48:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "d5e59054-0936-437a-9f89-5fb82541e91d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-21T16:21:48.000Z" + }, + "end": { + "$date": "2021-06-21T17:01:25.000Z" + }, + "events": [ + { + "uuid": "7fb36920-e0f2-405b-9c8f-4f06e80f02a5", + "start": { + "$date": "2021-06-21T16:21:48.000Z" + }, + "end": { + "$date": "2021-06-21T17:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3af65031-37a3-41c6-b986-36c959b849b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-21T18:31:33.000Z" + }, + "end": { + "$date": "2021-06-21T18:31:44.000Z" + }, + "events": [ + { + "uuid": "105eeed7-504a-4aed-a053-47e1c1cd6d63", + "start": { + "$date": "2021-06-21T18:31:33.000Z" + }, + "end": { + "$date": "2021-06-21T18:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "f25e2b98-29a7-4b9c-988a-3091a400e094", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-21T17:01:52.000Z" + }, + "end": { + "$date": "2021-06-21T18:29:00.000Z" + }, + "events": [ + { + "uuid": "346ba5a2-692a-42f3-b674-ea0ecbbbfd0d", + "start": { + "$date": "2021-06-21T17:01:52.000Z" + }, + "end": { + "$date": "2021-06-21T18:29:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "6684c0a7-5f57-462c-abe0-d17c5cddb393", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-21T17:06:11.000Z" + }, + "end": { + "$date": "2021-06-21T17:07:47.000Z" + }, + "events": [ + { + "uuid": "8aa81271-c3ce-4dbf-9451-14d06a696eac", + "start": { + "$date": "2021-06-21T17:06:11.000Z" + }, + "end": { + "$date": "2021-06-21T17:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "3750f913-502e-4a18-9321-47dfb0a0e17e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-21T17:08:36.000Z" + }, + "end": { + "$date": "2021-06-21T17:13:23.000Z" + }, + "events": [ + { + "uuid": "2e90e3ac-8968-4382-b44f-e33c1422e4c6", + "start": { + "$date": "2021-06-21T17:08:36.000Z" + }, + "end": { + "$date": "2021-06-21T17:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "cdd0f8e0-74ec-49a9-aa3b-089eea34a867", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-21T17:14:22.000Z" + }, + "end": { + "$date": "2021-06-21T17:17:18.000Z" + }, + "events": [ + { + "uuid": "30522c3c-f2ae-4130-b116-817b5c09e5e6", + "start": { + "$date": "2021-06-21T17:14:22.000Z" + }, + "end": { + "$date": "2021-06-21T17:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "6ed26c2e-a2fa-4e52-8e16-e778cf5b3e6e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-21T17:20:03.000Z" + }, + "end": { + "$date": "2021-06-21T17:27:59.000Z" + }, + "events": [ + { + "uuid": "d0018bd2-9805-4732-a61c-45a1e301fd6a", + "start": { + "$date": "2021-06-21T17:20:03.000Z" + }, + "end": { + "$date": "2021-06-21T17:27:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "176c992e-548c-4fe4-a6b4-1b988929fd3e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-21T18:33:01.000Z" + }, + "end": { + "$date": "2021-06-21T22:11:23.000Z" + }, + "events": [ + { + "uuid": "43a60968-1e38-4f02-89b9-cd369c84a9f6", + "start": { + "$date": "2021-06-21T18:33:01.000Z" + }, + "end": { + "$date": "2021-06-21T19:25:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "075e4ead-6c1f-4958-a781-88be10dc8345", + "start": { + "$date": "2021-06-21T19:25:01.000Z" + }, + "end": { + "$date": "2021-06-21T20:35:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58c4daf6-7773-4f93-b3de-503450a2392a", + "start": { + "$date": "2021-06-21T20:35:01.000Z" + }, + "end": { + "$date": "2021-06-21T20:58:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "780d79cd-b781-4188-93d3-7bc4ad3056f5", + "start": { + "$date": "2021-06-21T20:58:01.000Z" + }, + "end": { + "$date": "2021-06-21T21:47:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "06716ca0-1ead-4214-a801-62f403bc9b2f", + "start": { + "$date": "2021-06-21T21:47:01.000Z" + }, + "end": { + "$date": "2021-06-21T21:57:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "376f8fe0-0542-49fd-a7e5-619ebbfabbfe", + "start": { + "$date": "2021-06-21T21:57:01.000Z" + }, + "end": { + "$date": "2021-06-21T22:09:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc074b57-88e6-48ea-a3de-174f4226f62d", + "start": { + "$date": "2021-06-21T22:09:01.000Z" + }, + "end": { + "$date": "2021-06-21T22:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbb4654e-a2b0-499a-ae6f-33d31f4c1a49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-21T19:44:37.000Z" + }, + "end": { + "$date": "2021-06-21T19:46:41.000Z" + }, + "events": [ + { + "uuid": "949ece8f-1c3a-41e2-be69-bdb9df947b65", + "start": { + "$date": "2021-06-21T19:44:37.000Z" + }, + "end": { + "$date": "2021-06-21T19:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "a6308262-df04-4efe-ad16-75552a9ddfcd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-21T21:23:45.000Z" + }, + "end": { + "$date": "2021-06-21T22:01:40.000Z" + }, + "events": [ + { + "uuid": "0328ed5f-6f08-4bed-9971-ed08fa1813f1", + "start": { + "$date": "2021-06-21T21:23:45.000Z" + }, + "end": { + "$date": "2021-06-21T21:34:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "580476cc-4700-48ab-a9c0-140234e29547", + "start": { + "$date": "2021-06-21T21:34:45.000Z" + }, + "end": { + "$date": "2021-06-21T22:26:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de35bb00-d7e6-4fb8-882d-223900ad18aa", + "start": { + "$date": "2021-06-21T22:26:45.000Z" + }, + "end": { + "$date": "2021-06-21T22:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b9db77f9-7753-41c3-bada-852c593962f4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-21T22:26:54.000Z" + }, + "end": { + "$date": "2021-06-21T22:32:29.000Z" + }, + "events": [ + { + "uuid": "a1376f0a-0ab1-47c8-be5d-b1ff759cd3f8", + "start": { + "$date": "2021-06-21T22:26:54.000Z" + }, + "end": { + "$date": "2021-06-21T22:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "caa4eb67-8210-4007-bf03-1d1cc3e682d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-21T22:32:49.000Z" + }, + "end": { + "$date": "2021-06-22T01:31:01.000Z" + }, + "events": [ + { + "uuid": "cdcbe1b1-3067-4d84-afea-030f1adc628d", + "start": { + "$date": "2021-06-21T22:32:49.000Z" + }, + "end": { + "$date": "2021-06-22T00:30:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f714804b-3e86-42ec-b0e3-3ba76fcce12f", + "start": { + "$date": "2021-06-22T00:30:49.000Z" + }, + "end": { + "$date": "2021-06-22T00:35:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc204055-6582-4e94-bb8b-763a9618d267", + "start": { + "$date": "2021-06-22T00:35:49.000Z" + }, + "end": { + "$date": "2021-06-22T00:45:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d74ce1e1-1256-4ab6-a3d8-1020435def63", + "start": { + "$date": "2021-06-22T00:45:49.000Z" + }, + "end": { + "$date": "2021-06-22T00:52:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f61b679-5d46-49ff-9d06-1cefd6968fec", + "start": { + "$date": "2021-06-22T00:52:49.000Z" + }, + "end": { + "$date": "2021-06-22T01:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6812d472-fca1-4719-a339-2d2992cf0a86", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-21T22:39:02.000Z" + }, + "end": { + "$date": "2021-06-22T00:24:27.000Z" + }, + "events": [ + { + "uuid": "8065ed98-a410-4260-844d-15a143e78be9", + "start": { + "$date": "2021-06-21T22:39:02.000Z" + }, + "end": { + "$date": "2021-06-22T00:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "971e240d-4fa0-4356-a142-ae4084d3620b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-21T22:51:54.000Z" + }, + "end": { + "$date": "2021-06-22T03:03:24.000Z" + }, + "events": [ + { + "uuid": "6f0cdf64-f3dd-49c1-95cb-34c25d33d3f6", + "start": { + "$date": "2021-06-21T22:51:54.000Z" + }, + "end": { + "$date": "2021-06-22T02:14:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c818487a-b280-45bd-b958-218649fd35ab", + "start": { + "$date": "2021-06-22T02:14:54.000Z" + }, + "end": { + "$date": "2021-06-22T03:03:24.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "ff566590-e109-4280-acd3-57e9b40382ef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-21T23:24:22.000Z" + }, + "end": { + "$date": "2021-06-22T00:59:18.000Z" + }, + "events": [ + { + "uuid": "a4b4bf3c-440b-4716-beb7-48853427706b", + "start": { + "$date": "2021-06-21T23:24:22.000Z" + }, + "end": { + "$date": "2021-06-22T00:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "0ef59424-ae0a-4c5c-a7bd-590cc0472039", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-21T23:57:07.000Z" + }, + "end": { + "$date": "2021-06-22T00:22:57.000Z" + }, + "events": [ + { + "uuid": "5d4e3b97-422a-4a6d-89b6-e51a0655f21c", + "start": { + "$date": "2021-06-21T23:57:07.000Z" + }, + "end": { + "$date": "2021-06-22T00:22:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87c9d0b3-0e15-4ec7-8ac4-2c4a0e6e8b1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-21T20:59:02.000Z" + }, + "end": { + "$date": "2021-06-22T01:58:47.000Z" + }, + "events": [ + { + "uuid": "891097d1-a8e5-47fb-98b2-abb0318adc4a", + "start": { + "$date": "2021-06-21T20:59:02.000Z" + }, + "end": { + "$date": "2021-06-22T01:58:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f48c8120-0578-4d01-88db-f6a537fd774d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-22T01:31:46.000Z" + }, + "end": { + "$date": "2021-06-22T05:26:05.000Z" + }, + "events": [ + { + "uuid": "2dfdcd09-1d7f-4a00-be84-811a6a201a9e", + "start": { + "$date": "2021-06-22T01:31:46.000Z" + }, + "end": { + "$date": "2021-06-22T05:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f882381f-2d8f-411d-8b00-9ecdc1341252", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-22T02:04:18.000Z" + }, + "end": { + "$date": "2021-06-22T04:38:01.000Z" + }, + "events": [ + { + "uuid": "a29cf67d-7b94-4a2b-8e33-32870cafac84", + "start": { + "$date": "2021-06-22T02:04:18.000Z" + }, + "end": { + "$date": "2021-06-22T04:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d0d90b4-e2be-4443-b932-5a1b190c6566", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-22T02:04:51.000Z" + }, + "end": { + "$date": "2021-06-22T02:23:12.000Z" + }, + "events": [ + { + "uuid": "802bd0ad-a9da-4598-a478-ea8a1a081bcc", + "start": { + "$date": "2021-06-22T02:04:51.000Z" + }, + "end": { + "$date": "2021-06-22T02:23:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "4ad242bd-24dc-42da-afc5-98d46279cf06", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T02:20:42.000Z" + }, + "end": { + "$date": "2021-06-22T03:58:53.000Z" + }, + "events": [ + { + "uuid": "4579503c-42eb-4628-90bd-1dec0557a276", + "start": { + "$date": "2021-06-22T02:20:42.000Z" + }, + "end": { + "$date": "2021-06-22T03:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", + "uuid": "5b28a21a-3787-49a2-b2f7-97bfaffe0af2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-22T02:23:12.000Z" + }, + "end": { + "$date": "2021-06-22T03:58:54.000Z" + }, + "events": [ + { + "uuid": "da54a6d8-671f-40de-963e-7e5366bd978e", + "start": { + "$date": "2021-06-22T02:23:12.000Z" + }, + "end": { + "$date": "2021-06-22T03:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1fe27b5-ac83-416c-8096-31e1ad3cd2d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-22T03:49:56.000Z" + }, + "end": { + "$date": "2021-06-22T03:50:04.000Z" + }, + "events": [ + { + "uuid": "82cb09d5-3bb9-4c40-98d0-ef0a120d4f84", + "start": { + "$date": "2021-06-22T03:49:56.000Z" + }, + "end": { + "$date": "2021-06-22T03:50:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6b3bc8c-284b-430e-b383-68dfd20a18fe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T03:49:43.000Z" + }, + "end": { + "$date": "2021-06-22T03:51:21.000Z" + }, + "events": [ + { + "uuid": "f2cec299-4a8b-47e6-ae9d-c26c8ebef269", + "start": { + "$date": "2021-06-22T03:49:43.000Z" + }, + "end": { + "$date": "2021-06-22T03:51:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d9c8c7c-f0bc-4d86-8b48-b62d8baaaed6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-22T04:02:35.000Z" + }, + "end": { + "$date": "2021-06-22T04:03:18.000Z" + }, + "events": [ + { + "uuid": "96c68b1b-fb66-498f-9025-1f4d0b8f9527", + "start": { + "$date": "2021-06-22T04:02:35.000Z" + }, + "end": { + "$date": "2021-06-22T04:03:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88e78a3a-5b32-443e-890c-9b179f24b3a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-22T04:48:05.000Z" + }, + "end": { + "$date": "2021-06-22T04:48:15.000Z" + }, + "events": [ + { + "uuid": "fb6f0729-b671-459a-9219-c26588a581c6", + "start": { + "$date": "2021-06-22T04:48:05.000Z" + }, + "end": { + "$date": "2021-06-22T04:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "c779fd40-c1bc-45b5-9845-ded8594c1fdc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-22T03:58:59.000Z" + }, + "end": { + "$date": "2021-06-22T05:58:51.000Z" + }, + "events": [ + { + "uuid": "bad1baa4-2442-496c-9ded-8ba7c1cc5a14", + "start": { + "$date": "2021-06-22T03:58:59.000Z" + }, + "end": { + "$date": "2021-06-22T05:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "e1459320-a05a-475f-b171-77ca4c9fed54", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T03:59:18.000Z" + }, + "end": { + "$date": "2021-06-22T05:59:06.000Z" + }, + "events": [ + { + "uuid": "91f0798b-c611-4b33-960c-4027e3f4a58f", + "start": { + "$date": "2021-06-22T03:59:18.000Z" + }, + "end": { + "$date": "2021-06-22T05:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1dcc173c-a0b2-42b2-8c6c-748d27435f17", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-06-22T04:10:50.000Z" + }, + "end": { + "$date": "2021-06-22T04:47:56.000Z" + }, + "events": [ + { + "uuid": "2d3ab472-da39-455a-8a75-1c550a09a9d4", + "start": { + "$date": "2021-06-22T04:10:50.000Z" + }, + "end": { + "$date": "2021-06-22T04:47:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "415c0246-0bb6-4221-85cd-925de2ee1d36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T04:11:35.000Z" + }, + "end": { + "$date": "2021-06-22T04:47:50.000Z" + }, + "events": [ + { + "uuid": "76c7d5ae-bc2f-4445-a0cf-f2acfa0dbf23", + "start": { + "$date": "2021-06-22T04:11:35.000Z" + }, + "end": { + "$date": "2021-06-22T04:47:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9440c6b4-1a8b-4c30-8af1-7af4e4d37443", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-22T04:24:20.000Z" + }, + "end": { + "$date": "2021-06-22T05:06:20.000Z" + }, + "events": [ + { + "uuid": "1033fd69-a958-49fd-9e04-f8078ebe4753", + "start": { + "$date": "2021-06-22T04:24:20.000Z" + }, + "end": { + "$date": "2021-06-22T05:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "1f374999-1160-4beb-a665-15f84f0591ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-22T04:48:54.000Z" + }, + "end": { + "$date": "2021-06-22T05:48:03.000Z" + }, + "events": [ + { + "uuid": "e30c8f72-b0c4-4ab6-a946-d05c6a891759", + "start": { + "$date": "2021-06-22T04:48:54.000Z" + }, + "end": { + "$date": "2021-06-22T05:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7209efe5-8ee1-4d6c-974b-beb496aeb21f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-22T06:05:56.000Z" + }, + "end": { + "$date": "2021-06-22T07:40:51.000Z" + }, + "events": [ + { + "uuid": "21d762d3-c70d-4c40-9582-f221d04927d4", + "start": { + "$date": "2021-06-22T06:05:56.000Z" + }, + "end": { + "$date": "2021-06-22T07:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1d178fd3-d165-4e49-94db-5c59989780b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T06:17:07.000Z" + }, + "end": { + "$date": "2021-06-22T09:18:19.000Z" + }, + "events": [ + { + "uuid": "d7d29161-4b26-4880-b741-5f6eb05d1de8", + "start": { + "$date": "2021-06-22T06:17:07.000Z" + }, + "end": { + "$date": "2021-06-22T07:15:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe81c002-6f50-418f-b35d-7f0d9fc66263", + "start": { + "$date": "2021-06-22T07:15:07.000Z" + }, + "end": { + "$date": "2021-06-22T07:21:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a33f2f6d-9f2c-4652-aece-69943ad968b7", + "start": { + "$date": "2021-06-22T07:21:07.000Z" + }, + "end": { + "$date": "2021-06-22T09:18:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "72de5e87-5ee0-40d4-99a8-20c6b5675377", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-22T13:54:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:54:30.000Z" + }, + "events": [ + { + "uuid": "6ff9d032-1d09-456d-852a-6cdd73e899d2", + "start": { + "$date": "2021-06-22T13:54:51.000Z" + }, + "end": { + "$date": "2021-06-22T15:14:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d44087b5-9402-4f2b-92c4-6f24c7eeac17", + "start": { + "$date": "2021-06-22T15:14:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:15:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "63050449-24cb-4cfd-8e12-c744a4184d4f", + "start": { + "$date": "2021-06-22T16:15:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:18:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39fc3a4b-04da-486d-81dd-9f239cc5f8b2", + "start": { + "$date": "2021-06-22T16:18:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:28:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e63d1754-adb0-4d23-91c8-f331a2b8c694", + "start": { + "$date": "2021-06-22T16:28:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:31:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8017778-7358-4f3e-af83-75878d3c4b08", + "start": { + "$date": "2021-06-22T16:31:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:44:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "becf0509-cd02-48f7-b966-c784c3868587", + "start": { + "$date": "2021-06-22T16:44:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:49:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "790cd0b1-f558-43cd-8d86-7233c32208ac", + "start": { + "$date": "2021-06-22T16:49:51.000Z" + }, + "end": { + "$date": "2021-06-22T16:54:30.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3def299a-5743-47a2-bc5c-829af08f385d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T17:42:19.000Z" + }, + "end": { + "$date": "2021-06-22T17:47:44.000Z" + }, + "events": [ + { + "uuid": "d64941ba-f1ab-46b4-834f-f74e7898346c", + "start": { + "$date": "2021-06-22T17:42:19.000Z" + }, + "end": { + "$date": "2021-06-22T17:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3a57d14d-3b44-4e24-8bae-4db3f67ce751", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T17:50:00.000Z" + }, + "end": { + "$date": "2021-06-22T18:36:41.000Z" + }, + "events": [ + { + "uuid": "8741bd9a-8acb-4819-ac28-a165c39c8ace", + "start": { + "$date": "2021-06-22T17:50:00.000Z" + }, + "end": { + "$date": "2021-06-22T18:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "704490a4-3bd1-410a-a034-d22d8c45b337", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-22T18:31:29.000Z" + }, + "end": { + "$date": "2021-06-22T18:41:18.000Z" + }, + "events": [ + { + "uuid": "4d03ea45-81b7-4e05-9a02-209b315df96c", + "start": { + "$date": "2021-06-22T18:31:29.000Z" + }, + "end": { + "$date": "2021-06-22T18:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "51c68bac-b137-4a40-a4fa-ab8084add168", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T18:54:14.000Z" + }, + "end": { + "$date": "2021-06-22T20:24:54.000Z" + }, + "events": [ + { + "uuid": "56089e73-c751-4e2a-a574-fad6a260bffd", + "start": { + "$date": "2021-06-22T18:54:14.000Z" + }, + "end": { + "$date": "2021-06-22T20:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba773125-fa74-4c48-b6b5-91ab010cdb59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-22T20:03:54.000Z" + }, + "end": { + "$date": "2021-06-22T20:46:22.000Z" + }, + "events": [ + { + "uuid": "f5a12560-7761-4817-94c3-ee83963a6a9d", + "start": { + "$date": "2021-06-22T20:03:54.000Z" + }, + "end": { + "$date": "2021-06-22T20:46:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d89edb33-205c-4674-a02b-dd15f86fa9d4", + "start": { + "$date": "2021-06-22T20:46:54.000Z" + }, + "end": { + "$date": "2021-06-22T20:46:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "6ba6d40e-8a72-460f-b626-9c362c955141", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T20:09:53.000Z" + }, + "end": { + "$date": "2021-06-22T20:14:19.000Z" + }, + "events": [ + { + "uuid": "d9d79983-65af-4459-9164-4b47d906e206", + "start": { + "$date": "2021-06-22T20:09:53.000Z" + }, + "end": { + "$date": "2021-06-22T20:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7a01a6ef-be83-4bf1-b3cc-c2d34fabae72", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T20:24:55.000Z" + }, + "end": { + "$date": "2021-06-22T20:45:02.000Z" + }, + "events": [ + { + "uuid": "0335dd9d-ed74-46ed-9381-e94a739aa7ce", + "start": { + "$date": "2021-06-22T20:24:55.000Z" + }, + "end": { + "$date": "2021-06-22T20:45:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2aa962f9-6f21-44f6-a294-d462f9d7b221", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T20:25:31.000Z" + }, + "end": { + "$date": "2021-06-22T20:27:19.000Z" + }, + "events": [ + { + "uuid": "56fe7129-ad56-4cd5-bb5a-57cf65e25439", + "start": { + "$date": "2021-06-22T20:25:31.000Z" + }, + "end": { + "$date": "2021-06-22T20:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d7b5c22-80e5-48ba-a6b3-0a5b235057ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T21:01:34.000Z" + }, + "end": { + "$date": "2021-06-22T21:29:24.000Z" + }, + "events": [ + { + "uuid": "f86b919e-c544-4cfc-8ef3-d078c0924e24", + "start": { + "$date": "2021-06-22T21:01:34.000Z" + }, + "end": { + "$date": "2021-06-22T21:29:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fa35b004-545c-4194-bbc5-9cda33e4005f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T21:01:50.000Z" + }, + "end": { + "$date": "2021-06-22T21:38:51.000Z" + }, + "events": [ + { + "uuid": "30924064-6e5d-41a9-a467-9b170b1b7029", + "start": { + "$date": "2021-06-22T21:01:50.000Z" + }, + "end": { + "$date": "2021-06-22T21:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3464f024-c0b4-4e48-83aa-790f1bf5fdde", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-22T21:33:04.000Z" + }, + "end": { + "$date": "2021-06-22T21:45:14.000Z" + }, + "events": [ + { + "uuid": "079c20aa-b216-4f7f-8f13-965eeecfffcd", + "start": { + "$date": "2021-06-22T21:33:04.000Z" + }, + "end": { + "$date": "2021-06-22T21:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "aefd9882-d549-4fe6-a53f-9f4c63758672", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-22T21:56:57.000Z" + }, + "end": { + "$date": "2021-06-22T22:42:01.000Z" + }, + "events": [ + { + "uuid": "e0a2e8c2-3ef2-44cf-9f58-361ff5edc46d", + "start": { + "$date": "2021-06-22T21:56:57.000Z" + }, + "end": { + "$date": "2021-06-22T22:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "89a30c61-534c-45bc-9d77-d6849f04bc62", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-22T22:30:27.000Z" + }, + "end": { + "$date": "2021-06-23T01:50:06.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-22T22:30:27.000Z" + }, + "end": { + "$date": "2021-06-23T01:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c999f517-df77-4108-af65-dda416a8b3e6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-22T23:16:21.000Z" + }, + "end": { + "$date": "2021-06-22T23:51:43.000Z" + }, + "events": [ + { + "uuid": "50c4b6cb-c5e5-4a56-b4ae-5fc91591bd65", + "start": { + "$date": "2021-06-22T23:16:21.000Z" + }, + "end": { + "$date": "2021-06-22T23:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "93d3532a-c398-41ab-b627-248019dc0e41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-22T23:24:34.000Z" + }, + "end": { + "$date": "2021-06-23T00:12:31.000Z" + }, + "events": [ + { + "uuid": "96a439bb-5a0c-482c-9e26-2c0ee499597b", + "start": { + "$date": "2021-06-22T23:24:34.000Z" + }, + "end": { + "$date": "2021-06-23T00:12:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "c6d9bd63-0f7d-46a9-8252-23ef3e6832be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-23T00:02:39.000Z" + }, + "end": { + "$date": "2021-06-23T04:22:23.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-23T00:02:39.000Z" + }, + "end": { + "$date": "2021-06-23T04:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "44ed9d81-ae0b-42e6-86c2-4ce6ffa0d4ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-23T00:12:42.000Z" + }, + "end": { + "$date": "2021-06-23T00:18:39.000Z" + }, + "events": [ + { + "uuid": "1adf2d3b-747f-4911-bb73-1f78b679a37d", + "start": { + "$date": "2021-06-23T00:12:42.000Z" + }, + "end": { + "$date": "2021-06-23T00:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "46b0ba9c-5b55-475c-9508-aa2ecf3bfa53", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T00:25:11.000Z" + }, + "end": { + "$date": "2021-06-23T01:38:11.000Z" + }, + "events": [ + { + "uuid": "1e89d348-14c7-4e5f-b9df-0e4fd3e2d51e", + "start": { + "$date": "2021-06-23T00:25:11.000Z" + }, + "end": { + "$date": "2021-06-23T01:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8739b393-7316-40f5-9d7f-01838ee013e9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-23T06:11:39.000Z" + }, + "end": { + "$date": "2021-06-23T07:16:18.000Z" + }, + "events": [ + { + "uuid": "b2cd07ea-9f88-419d-9ebb-fa568e564564", + "start": { + "$date": "2021-06-23T06:11:39.000Z" + }, + "end": { + "$date": "2021-06-23T07:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dc97c121-5f35-433a-89c3-0add2aba0a3e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-23T01:49:31.000Z" + }, + "end": { + "$date": "2021-06-23T06:11:50.000Z" + }, + "events": [ + { + "uuid": "b87c6816-9730-4257-b6c0-cff4dfc8fe6c", + "start": { + "$date": "2021-06-23T01:49:31.000Z" + }, + "end": { + "$date": "2021-06-23T06:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "cf0a4d2c-58c7-4da7-b83b-a815f290d2b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-23T01:54:57.000Z" + }, + "end": { + "$date": "2021-06-23T04:22:05.000Z" + }, + "events": [ + { + "uuid": "17f1eedb-839c-45d7-aee5-c6192679dbc2", + "start": { + "$date": "2021-06-23T01:54:57.000Z" + }, + "end": { + "$date": "2021-06-23T04:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6bc875c5-92f3-4575-a288-614771f2d6dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T02:05:24.000Z" + }, + "end": { + "$date": "2021-06-23T05:16:49.000Z" + }, + "events": [ + { + "uuid": "79d6a049-8710-4623-996b-8cd79754c685", + "start": { + "$date": "2021-06-23T02:05:24.000Z" + }, + "end": { + "$date": "2021-06-23T05:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cb433f9f-a012-4d09-b9db-1a02379f2439", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-23T02:21:30.000Z" + }, + "end": { + "$date": "2021-06-23T03:38:11.000Z" + }, + "events": [ + { + "uuid": "081248c5-c8e3-4ad4-89ee-70fa0cdde713", + "start": { + "$date": "2021-06-23T02:21:30.000Z" + }, + "end": { + "$date": "2021-06-23T03:11:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cdb7e978-8718-4cb3-8ac5-bfa5707b173e", + "start": { + "$date": "2021-06-23T03:11:30.000Z" + }, + "end": { + "$date": "2021-06-23T03:12:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32355061-18dc-412e-8594-36ed5f68bd0c", + "start": { + "$date": "2021-06-23T03:12:30.000Z" + }, + "end": { + "$date": "2021-06-23T03:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eec2b323-0953-4eb5-9f26-3bc338e0a20f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-23T03:12:31.000Z" + }, + "end": { + "$date": "2021-06-23T03:45:10.000Z" + }, + "events": [ + { + "uuid": "abac61c0-5b36-43d0-b470-180e6434bc55", + "start": { + "$date": "2021-06-23T03:12:31.000Z" + }, + "end": { + "$date": "2021-06-23T03:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "ed005577-bad1-414b-aadb-97e51694721d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-23T03:20:06.000Z" + }, + "end": { + "$date": "2021-06-23T05:38:34.000Z" + }, + "events": [ + { + "uuid": "fffb9daa-2945-4e12-8993-de1ffbfe2714", + "start": { + "$date": "2021-06-23T03:20:06.000Z" + }, + "end": { + "$date": "2021-06-23T05:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "6d820e7a-424c-4a53-b0a8-c0c0e625bccc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T03:24:12.000Z" + }, + "end": { + "$date": "2021-06-23T03:26:09.000Z" + }, + "events": [ + { + "uuid": "b7ce224a-3cae-4253-b6be-c74d24cb457e", + "start": { + "$date": "2021-06-23T03:24:12.000Z" + }, + "end": { + "$date": "2021-06-23T03:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "7b0a05ad-2106-4588-aafe-43ed7885f26b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T03:26:47.000Z" + }, + "end": { + "$date": "2021-06-23T03:31:15.000Z" + }, + "events": [ + { + "uuid": "2cffb0d6-d50a-4821-968f-6f533dcb9af5", + "start": { + "$date": "2021-06-23T03:26:47.000Z" + }, + "end": { + "$date": "2021-06-23T03:31:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "855991ad-a197-4338-af7a-d0873e785063", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T03:34:40.000Z" + }, + "end": { + "$date": "2021-06-23T03:35:57.000Z" + }, + "events": [ + { + "uuid": "6fa66820-c751-4584-b03f-8356e3831b8d", + "start": { + "$date": "2021-06-23T03:34:40.000Z" + }, + "end": { + "$date": "2021-06-23T03:35:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "b925b9c5-c3ba-4af2-8b7f-97df769f5662", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T03:38:45.000Z" + }, + "end": { + "$date": "2021-06-23T03:40:42.000Z" + }, + "events": [ + { + "uuid": "47fdc21b-da6b-45eb-9171-8e71f56dd63f", + "start": { + "$date": "2021-06-23T03:38:45.000Z" + }, + "end": { + "$date": "2021-06-23T03:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0e1ecfc9-5218-457a-b857-a42b83a8118f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-23T03:39:29.000Z" + }, + "end": { + "$date": "2021-06-23T03:49:50.000Z" + }, + "events": [ + { + "uuid": "86e78161-f8b8-4678-8407-fcbf077040ca", + "start": { + "$date": "2021-06-23T03:39:29.000Z" + }, + "end": { + "$date": "2021-06-23T03:49:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d0a0e95-c1d9-4f14-a89c-ba80b03ef0b9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-23T03:51:46.000Z" + }, + "end": { + "$date": "2021-06-23T04:24:09.000Z" + }, + "events": [ + { + "uuid": "4624df13-1d22-43e9-ad90-5329671f7957", + "start": { + "$date": "2021-06-23T03:51:46.000Z" + }, + "end": { + "$date": "2021-06-23T04:24:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "4eac8f1a-2511-4c0b-bae9-0eec7e4229a1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T03:47:10.000Z" + }, + "end": { + "$date": "2021-06-23T03:48:25.000Z" + }, + "events": [ + { + "uuid": "29747060-0a61-4998-b6aa-e79dffeb7b6f", + "start": { + "$date": "2021-06-23T03:47:10.000Z" + }, + "end": { + "$date": "2021-06-23T03:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "49e89ffc-fa30-43a1-a714-b953db19fab5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-23T03:49:59.000Z" + }, + "end": { + "$date": "2021-06-23T06:11:28.000Z" + }, + "events": [ + { + "uuid": "1ef6bb85-951f-4204-ab74-7c6b8bdf4811", + "start": { + "$date": "2021-06-23T03:49:59.000Z" + }, + "end": { + "$date": "2021-06-23T06:11:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "33604062-c30c-42fd-ab57-1de946a2aebc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T03:59:53.000Z" + }, + "end": { + "$date": "2021-06-23T04:00:50.000Z" + }, + "events": [ + { + "uuid": "ee95e8ca-172b-4526-9281-871038818c14", + "start": { + "$date": "2021-06-23T03:59:53.000Z" + }, + "end": { + "$date": "2021-06-23T04:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "817659c1-1c75-4310-92ca-61401c6539a8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T04:01:38.000Z" + }, + "end": { + "$date": "2021-06-23T04:03:17.000Z" + }, + "events": [ + { + "uuid": "5af8b6ab-aa14-4ca3-9a98-3794b3518488", + "start": { + "$date": "2021-06-23T04:01:38.000Z" + }, + "end": { + "$date": "2021-06-23T04:03:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3d51d2b9-4c80-44c4-9818-f2ba4bca4d29", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T04:03:55.000Z" + }, + "end": { + "$date": "2021-06-23T04:06:22.000Z" + }, + "events": [ + { + "uuid": "49f7aa75-d6ef-4f70-81be-217451e3ac92", + "start": { + "$date": "2021-06-23T04:03:55.000Z" + }, + "end": { + "$date": "2021-06-23T04:06:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "7d643295-6002-4d0f-813e-e228a7dcf40b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T04:06:40.000Z" + }, + "end": { + "$date": "2021-06-23T04:25:44.000Z" + }, + "events": [ + { + "uuid": "b8e232eb-8f6b-4cd4-bf43-047278e0daac", + "start": { + "$date": "2021-06-23T04:06:40.000Z" + }, + "end": { + "$date": "2021-06-23T04:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30132c54-6254-4734-a3a0-4f7c8fe90b5f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-23T05:00:12.000Z" + }, + "end": { + "$date": "2021-06-23T05:17:14.000Z" + }, + "events": [ + { + "uuid": "95a6eb5e-2435-4599-929c-6d01c2b1cbf2", + "start": { + "$date": "2021-06-23T05:00:12.000Z" + }, + "end": { + "$date": "2021-06-23T05:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "0f8d0148-a6e6-47b4-bb84-af5e23b287fa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T04:26:12.000Z" + }, + "end": { + "$date": "2021-06-23T04:27:24.000Z" + }, + "events": [ + { + "uuid": "0d29c158-384d-48fd-84a9-6fd730bc081a", + "start": { + "$date": "2021-06-23T04:26:12.000Z" + }, + "end": { + "$date": "2021-06-23T04:27:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "345a8520-711a-433c-9e02-3835402d2df8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T04:27:42.000Z" + }, + "end": { + "$date": "2021-06-23T04:35:26.000Z" + }, + "events": [ + { + "uuid": "e83ff816-dc3e-45c0-a9bd-4f9a00f1686f", + "start": { + "$date": "2021-06-23T04:27:42.000Z" + }, + "end": { + "$date": "2021-06-23T04:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "2078236e-4cf0-4406-b39e-56b80a887d7f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-23T05:12:04.000Z" + }, + "end": { + "$date": "2021-06-23T05:17:44.000Z" + }, + "events": [ + { + "uuid": "b45c3f7c-befd-414a-bd7c-aa7caa5809bf", + "start": { + "$date": "2021-06-23T05:12:04.000Z" + }, + "end": { + "$date": "2021-06-23T05:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5443b98d-5284-4a8d-9578-3faf5693f837", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-23T05:22:46.000Z" + }, + "end": { + "$date": "2021-06-23T06:11:59.000Z" + }, + "events": [ + { + "uuid": "e029322d-390f-44a3-8957-a5d0d959f916", + "start": { + "$date": "2021-06-23T05:22:46.000Z" + }, + "end": { + "$date": "2021-06-23T06:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8d336044-962f-4196-8640-e54e2a38089e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-23T05:41:20.000Z" + }, + "end": { + "$date": "2021-06-23T06:29:33.000Z" + }, + "events": [ + { + "uuid": "2395f1fe-336b-4cc2-8bcb-f7c38875af34", + "start": { + "$date": "2021-06-23T05:41:20.000Z" + }, + "end": { + "$date": "2021-06-23T06:29:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "fc9ae493-d218-4713-8850-0155d80374be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-23T06:12:40.000Z" + }, + "end": { + "$date": "2021-06-23T08:05:09.000Z" + }, + "events": [ + { + "uuid": "d6df8d0a-9e32-4a92-8f77-39ffce8c5479", + "start": { + "$date": "2021-06-23T06:12:40.000Z" + }, + "end": { + "$date": "2021-06-23T08:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "87daed7c-1f34-4e15-b19b-740f28d57dbb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-23T06:16:41.000Z" + }, + "end": { + "$date": "2021-06-23T07:12:26.000Z" + }, + "events": [ + { + "uuid": "5b1d86bf-b0c5-4539-8f13-74f9e6731595", + "start": { + "$date": "2021-06-23T06:16:41.000Z" + }, + "end": { + "$date": "2021-06-23T07:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "956227c2-817e-4b56-94b8-d75f7a7dafb7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-23T11:10:58.000Z" + }, + "end": { + "$date": "2021-06-23T12:41:44.000Z" + }, + "events": [ + { + "uuid": "ff4b90bf-720d-4e72-8e66-1c3e5ff07044", + "start": { + "$date": "2021-06-23T11:10:58.000Z" + }, + "end": { + "$date": "2021-06-23T12:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f15946fb-f6c4-40d8-85ce-ef9b1566ad2f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-23T16:47:07.000Z" + }, + "end": { + "$date": "2021-06-24T06:05:52.000Z" + }, + "events": [ + { + "uuid": "525582dc-c669-4a69-9f1e-afad74618cf8", + "start": { + "$date": "2021-06-23T16:47:07.000Z" + }, + "end": { + "$date": "2021-06-23T17:14:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63fe45b9-039b-469a-afb1-99c9da6baeee", + "start": { + "$date": "2021-06-23T17:14:07.000Z" + }, + "end": { + "$date": "2021-06-23T17:27:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5831a6fd-6ef8-481b-90a2-30f8bf8a2db5", + "start": { + "$date": "2021-06-23T17:27:07.000Z" + }, + "end": { + "$date": "2021-06-23T17:37:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22d848f6-1482-43f8-a328-afb84bf500bf", + "start": { + "$date": "2021-06-23T17:37:07.000Z" + }, + "end": { + "$date": "2021-06-24T00:27:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae863d1f-708f-4445-a510-e342334a3abb", + "start": { + "$date": "2021-06-24T00:27:07.000Z" + }, + "end": { + "$date": "2021-06-24T02:59:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "34c2f631-3251-4c8e-9a01-776cf69bc2cf", + "start": { + "$date": "2021-06-24T02:59:07.000Z" + }, + "end": { + "$date": "2021-06-24T03:04:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c9b5cb9-97ef-4537-bced-d8ad9bb742bf", + "start": { + "$date": "2021-06-24T03:04:07.000Z" + }, + "end": { + "$date": "2021-06-24T04:15:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "705298b9-a28d-40eb-a30f-fef370804c23", + "start": { + "$date": "2021-06-24T04:15:07.000Z" + }, + "end": { + "$date": "2021-06-24T04:20:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e02b2d1f-53cc-4c18-9f64-9885f773b58e", + "start": { + "$date": "2021-06-24T04:20:07.000Z" + }, + "end": { + "$date": "2021-06-24T06:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "cadb076b-0117-4471-95e5-0c81366d0b82", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-23T17:05:32.000Z" + }, + "end": { + "$date": "2021-06-23T18:17:15.000Z" + }, + "events": [ + { + "uuid": "9585910e-b661-4cb0-b7f6-752cbe03ff09", + "start": { + "$date": "2021-06-23T17:05:32.000Z" + }, + "end": { + "$date": "2021-06-23T18:17:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "452fe337-90d9-4e25-bf3b-cd91b9201cdf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T17:13:56.000Z" + }, + "end": { + "$date": "2021-06-23T17:24:07.000Z" + }, + "events": [ + { + "uuid": "5ba17de6-9061-44e1-844e-5aad5bfb1a98", + "start": { + "$date": "2021-06-23T17:13:56.000Z" + }, + "end": { + "$date": "2021-06-23T17:24:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f6e6b01e-58ff-42a3-91a0-f0aaf4f59bcc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T17:36:57.000Z" + }, + "end": { + "$date": "2021-06-23T17:38:02.000Z" + }, + "events": [ + { + "uuid": "3b083715-2ff0-4df1-9d8e-1b8dab52beb7", + "start": { + "$date": "2021-06-23T17:36:57.000Z" + }, + "end": { + "$date": "2021-06-23T17:38:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a0a9ce90-dfbe-4914-ae77-5925749aaa34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T17:38:12.000Z" + }, + "end": { + "$date": "2021-06-23T17:48:33.000Z" + }, + "events": [ + { + "uuid": "11bd1213-1320-48f1-98d2-9c6788ef20fa", + "start": { + "$date": "2021-06-23T17:38:12.000Z" + }, + "end": { + "$date": "2021-06-23T17:48:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "eed6a1b0-4adb-49bd-b07a-0255b1ff29a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T19:08:24.000Z" + }, + "end": { + "$date": "2021-06-23T19:23:05.000Z" + }, + "events": [ + { + "uuid": "ed378dc8-2b16-40f7-aa8f-09403cef23ee", + "start": { + "$date": "2021-06-23T19:08:24.000Z" + }, + "end": { + "$date": "2021-06-23T19:23:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "cbcb9954-c112-40ba-8a51-afa607d3d450", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-23T20:53:32.000Z" + }, + "end": { + "$date": "2021-06-23T21:07:03.000Z" + }, + "events": [ + { + "uuid": "b151741d-b315-49a9-af94-623f0d747c4b", + "start": { + "$date": "2021-06-23T20:53:32.000Z" + }, + "end": { + "$date": "2021-06-23T21:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "e63519d2-6861-4ff9-8f1a-791c8cd159ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-23T21:32:39.000Z" + }, + "end": { + "$date": "2021-06-23T21:54:54.000Z" + }, + "events": [ + { + "uuid": "446081d1-0b57-49fa-8cae-e1e6b8e3164e", + "start": { + "$date": "2021-06-23T21:32:39.000Z" + }, + "end": { + "$date": "2021-06-23T21:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "37b90ce9-7f65-4b4f-bfea-40a684666160", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-23T21:52:27.000Z" + }, + "end": { + "$date": "2021-06-23T22:18:39.000Z" + }, + "events": [ + { + "uuid": "e55c8614-5db0-4c56-beba-700d088ecfbd", + "start": { + "$date": "2021-06-23T21:52:27.000Z" + }, + "end": { + "$date": "2021-06-23T22:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c0cd488e-5f39-4962-a5eb-f7522dc55ddd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-23T22:31:17.000Z" + }, + "end": { + "$date": "2021-06-24T00:14:59.000Z" + }, + "events": [ + { + "uuid": "0c7afaba-4706-452c-bc48-0b6306ad2f91", + "start": { + "$date": "2021-06-23T22:31:17.000Z" + }, + "end": { + "$date": "2021-06-23T23:23:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "149db74f-79c4-480c-a011-ebda7bee5563", + "start": { + "$date": "2021-06-23T23:23:17.000Z" + }, + "end": { + "$date": "2021-06-23T23:37:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e42327f-33c1-4077-bacf-9119f763fdc5", + "start": { + "$date": "2021-06-23T23:37:17.000Z" + }, + "end": { + "$date": "2021-06-24T00:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "df9702c6-fef6-4a96-bb7e-5801819c6e68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-23T22:59:19.000Z" + }, + "end": { + "$date": "2021-06-23T23:01:39.000Z" + }, + "events": [ + { + "uuid": "8efeec4b-e6dc-4718-9a85-edfa936301ff", + "start": { + "$date": "2021-06-23T22:59:19.000Z" + }, + "end": { + "$date": "2021-06-23T23:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "941ba242-8742-4dbb-a0c2-212c42b4fe34", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T23:06:53.000Z" + }, + "end": { + "$date": "2021-06-23T23:22:03.000Z" + }, + "events": [ + { + "uuid": "73e89b70-b5bb-47bb-bbc5-71a6f000514a", + "start": { + "$date": "2021-06-23T23:06:53.000Z" + }, + "end": { + "$date": "2021-06-23T23:22:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "6f1d183b-cb78-4691-9dbf-ce2a9c13f039", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T23:27:55.000Z" + }, + "end": { + "$date": "2021-06-23T23:30:54.000Z" + }, + "events": [ + { + "uuid": "a19b7f90-09ee-4ba6-b2de-ee1cc196f7ca", + "start": { + "$date": "2021-06-23T23:27:55.000Z" + }, + "end": { + "$date": "2021-06-23T23:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "9285e78e-968e-408f-a4bf-d0fda8f1b232", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T23:31:11.000Z" + }, + "end": { + "$date": "2021-06-23T23:34:44.000Z" + }, + "events": [ + { + "uuid": "0a79667c-25fd-419b-a37c-740b48f49954", + "start": { + "$date": "2021-06-23T23:31:11.000Z" + }, + "end": { + "$date": "2021-06-23T23:34:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "8f49a075-0a3b-4d49-bbff-522d08591bc3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-23T23:37:55.000Z" + }, + "end": { + "$date": "2021-06-23T23:39:57.000Z" + }, + "events": [ + { + "uuid": "8aadd160-254c-4f5a-a0a5-d28ab413549e", + "start": { + "$date": "2021-06-23T23:37:55.000Z" + }, + "end": { + "$date": "2021-06-23T23:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "75494ab4-b3cb-4106-b0a7-2af27da00b50", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-24T00:27:05.000Z" + }, + "end": { + "$date": "2021-06-24T00:28:15.000Z" + }, + "events": [ + { + "uuid": "14ddbb80-6fe9-45d7-80f5-435e72cf0d2b", + "start": { + "$date": "2021-06-24T00:27:05.000Z" + }, + "end": { + "$date": "2021-06-24T00:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "06cd8ffa-deb5-4215-84af-b92c6a85c242", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-24T00:37:50.000Z" + }, + "end": { + "$date": "2021-06-24T01:18:28.000Z" + }, + "events": [ + { + "uuid": "7f75ea4d-f307-4bfa-b84f-8405d00f4207", + "start": { + "$date": "2021-06-24T00:37:50.000Z" + }, + "end": { + "$date": "2021-06-24T01:18:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "35bc4688-79f3-4a9e-bc53-8fa186331184", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-24T04:39:12.000Z" + }, + "end": { + "$date": "2021-06-24T04:39:22.000Z" + }, + "events": [ + { + "uuid": "966b3ecc-d3bc-46a9-b99e-131789e3b682", + "start": { + "$date": "2021-06-24T04:39:12.000Z" + }, + "end": { + "$date": "2021-06-24T04:59:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "59ba989f-e159-42fd-b4ee-1a9140eec72f", + "start": { + "$date": "2021-06-24T04:59:12.000Z" + }, + "end": { + "$date": "2021-06-24T05:25:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "26c3409b-98ef-4f74-91c8-511c43a485f0", + "start": { + "$date": "2021-06-24T05:25:12.000Z" + }, + "end": { + "$date": "2021-06-24T04:39:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4d5cf158-5f4f-4f31-9f43-ccf5c37bd46b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-24T01:47:23.000Z" + }, + "end": { + "$date": "2021-06-24T02:37:02.000Z" + }, + "events": [ + { + "uuid": "fc9ef10b-787c-4300-b20e-97cb43d628e2", + "start": { + "$date": "2021-06-24T01:47:23.000Z" + }, + "end": { + "$date": "2021-06-24T02:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6853e253-7e91-46ca-aefb-768e7c087ef9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-24T01:50:23.000Z" + }, + "end": { + "$date": "2021-06-24T02:04:05.000Z" + }, + "events": [ + { + "uuid": "7dcb8926-621c-45c4-9dad-49e902755f90", + "start": { + "$date": "2021-06-24T01:50:23.000Z" + }, + "end": { + "$date": "2021-06-24T02:04:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "57e8ca02-03c2-4cf6-812a-e3585772e216", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-24T02:02:39.000Z" + }, + "end": { + "$date": "2021-06-24T03:34:40.000Z" + }, + "events": [ + { + "uuid": "12117c9a-0120-403b-bec0-e67b751e13f1", + "start": { + "$date": "2021-06-24T02:02:39.000Z" + }, + "end": { + "$date": "2021-06-24T03:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bea78ad-45b3-4799-be2c-fcb43e38f819", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T02:14:10.000Z" + }, + "end": { + "$date": "2021-06-24T02:46:40.000Z" + }, + "events": [ + { + "uuid": "0632c02e-6c32-4758-aa19-e0f72aa60169", + "start": { + "$date": "2021-06-24T02:14:10.000Z" + }, + "end": { + "$date": "2021-06-24T02:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f1a9ada-fa84-4a9c-9cec-b42be04eadeb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T02:48:31.000Z" + }, + "end": { + "$date": "2021-06-24T03:16:15.000Z" + }, + "events": [ + { + "uuid": "f7c678d2-8c16-4877-be64-dda9508cb15b", + "start": { + "$date": "2021-06-24T02:48:31.000Z" + }, + "end": { + "$date": "2021-06-24T03:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d237d430-2f95-491f-986f-3be2cf3dcbc2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-24T02:52:06.000Z" + }, + "end": { + "$date": "2021-06-24T04:12:29.000Z" + }, + "events": [ + { + "uuid": "61eb1ba0-a293-4e14-819e-232f99a8f0a9", + "start": { + "$date": "2021-06-24T02:52:06.000Z" + }, + "end": { + "$date": "2021-06-24T04:12:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af130259-e326-4921-a6b9-98f7508c6bfd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T03:17:09.000Z" + }, + "end": { + "$date": "2021-06-24T03:40:07.000Z" + }, + "events": [ + { + "uuid": "3030feea-f067-4e60-8fdc-45945dcf9816", + "start": { + "$date": "2021-06-24T03:17:09.000Z" + }, + "end": { + "$date": "2021-06-24T03:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "983be989-cbe1-49d3-bb00-679db620e291", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-24T03:33:11.000Z" + }, + "end": { + "$date": "2021-06-24T04:39:18.000Z" + }, + "events": [ + { + "uuid": "53f3d366-a721-4da5-bf5b-9b4ebbf2c34c", + "start": { + "$date": "2021-06-24T03:33:11.000Z" + }, + "end": { + "$date": "2021-06-24T04:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1c1a59eb-8bb4-48d3-bce5-9d75f0bd13a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-24T03:35:40.000Z" + }, + "end": { + "$date": "2021-06-24T06:44:58.000Z" + }, + "events": [ + { + "uuid": "01743a47-bf30-4345-a88c-f15683ff6471", + "start": { + "$date": "2021-06-24T03:35:40.000Z" + }, + "end": { + "$date": "2021-06-24T06:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f4023c3-770d-4144-ba50-666be116340a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-24T04:01:57.000Z" + }, + "end": { + "$date": "2021-06-24T04:40:38.000Z" + }, + "events": [ + { + "uuid": "044be351-aa38-411f-9f71-8ab3e5c4813f", + "start": { + "$date": "2021-06-24T04:01:57.000Z" + }, + "end": { + "$date": "2021-06-24T04:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1bc9ae44-97e0-4be2-b803-764b05dde888", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-24T04:41:04.000Z" + }, + "end": { + "$date": "2021-06-24T05:11:55.000Z" + }, + "events": [ + { + "uuid": "06c10e8b-1a11-41f3-863c-90ff86d50215", + "start": { + "$date": "2021-06-24T04:41:04.000Z" + }, + "end": { + "$date": "2021-06-24T05:11:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ee3ae55-0941-4d8a-9bf8-941e6c86a142", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-24T04:55:24.000Z" + }, + "end": { + "$date": "2021-06-24T05:09:22.000Z" + }, + "events": [ + { + "uuid": "1c643d88-efa0-4859-ae7b-0de4caaa876d", + "start": { + "$date": "2021-06-24T04:55:24.000Z" + }, + "end": { + "$date": "2021-06-24T05:09:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "459d5233-46f0-4bb8-a709-24c5084bc056", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-24T05:12:03.000Z" + }, + "end": { + "$date": "2021-06-24T06:44:47.000Z" + }, + "events": [ + { + "uuid": "af0a1188-fd1b-4721-88d8-06b2ebe8ba77", + "start": { + "$date": "2021-06-24T05:12:03.000Z" + }, + "end": { + "$date": "2021-06-24T06:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f3afd5de-6c53-4b57-a8a3-1b6ed18e575c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-24T05:29:00.000Z" + }, + "end": { + "$date": "2021-06-24T06:44:41.000Z" + }, + "events": [ + { + "uuid": "3a9a2da9-a876-4456-b93a-fdfbff7b3730", + "start": { + "$date": "2021-06-24T05:29:00.000Z" + }, + "end": { + "$date": "2021-06-24T06:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c1a5c9d-5810-43af-8ff4-ee84f8a99366", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T06:19:09.000Z" + }, + "end": { + "$date": "2021-06-24T06:52:39.000Z" + }, + "events": [ + { + "uuid": "b5071dff-3bae-4daa-8c81-1778c7507ebf", + "start": { + "$date": "2021-06-24T06:19:09.000Z" + }, + "end": { + "$date": "2021-06-24T06:52:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "01bc06f4-a412-4f55-9ed0-8fcf4a542ef0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-24T06:45:05.000Z" + }, + "end": { + "$date": "2021-06-24T07:12:39.000Z" + }, + "events": [ + { + "uuid": "598e81b7-a490-464d-976e-89534b60e306", + "start": { + "$date": "2021-06-24T06:45:05.000Z" + }, + "end": { + "$date": "2021-06-24T07:12:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "06c101d6-9336-4bf1-90fa-ca3b042d3705", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-25T04:08:09.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:31.000Z" + }, + "events": [ + { + "uuid": "8033d55e-eef3-4a7c-9a49-4cafdc7f92af", + "start": { + "$date": "2021-06-25T04:08:09.000Z" + }, + "end": { + "$date": "2021-06-25T04:26:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c67cecd5-c74c-462c-bf81-dff858f159c7", + "start": { + "$date": "2021-06-25T04:26:09.000Z" + }, + "end": { + "$date": "2021-06-25T04:32:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4a317bca-3b49-4cdb-b61f-1d12f89a1b06", + "start": { + "$date": "2021-06-25T04:32:09.000Z" + }, + "end": { + "$date": "2021-06-25T04:42:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "add292df-7d4d-4f98-909e-1140e2982368", + "start": { + "$date": "2021-06-25T04:42:09.000Z" + }, + "end": { + "$date": "2021-06-25T05:03:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0a18161-8232-49ab-911d-411d34c52f98", + "start": { + "$date": "2021-06-25T05:03:09.000Z" + }, + "end": { + "$date": "2021-06-25T07:33:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e790a96-a989-433b-b3c6-5a98af9b01b2", + "start": { + "$date": "2021-06-25T07:33:09.000Z" + }, + "end": { + "$date": "2021-06-25T07:43:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "714c05c8-7fba-4bdb-985d-90a3c939e0cb", + "start": { + "$date": "2021-06-25T07:43:09.000Z" + }, + "end": { + "$date": "2021-06-25T09:52:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a5c6caa-4141-4753-8d61-1c00cac92326", + "start": { + "$date": "2021-06-25T09:52:09.000Z" + }, + "end": { + "$date": "2021-06-25T09:58:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a764cfd0-014b-49f4-832e-9634a976914a", + "start": { + "$date": "2021-06-25T09:58:09.000Z" + }, + "end": { + "$date": "2021-06-25T10:28:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0613f3e-9789-4eba-84ce-8a1d5ef3af40", + "start": { + "$date": "2021-06-25T10:28:09.000Z" + }, + "end": { + "$date": "2021-06-25T10:58:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "361b2f38-09f9-4ed5-9e76-a969e63b4de6", + "start": { + "$date": "2021-06-25T10:58:09.000Z" + }, + "end": { + "$date": "2021-06-25T12:54:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fca71713-b377-456b-8aae-f652fa567e3f", + "start": { + "$date": "2021-06-25T12:54:09.000Z" + }, + "end": { + "$date": "2021-06-25T14:12:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be81f14e-3d0c-4ca9-8720-b8a77d6ad440", + "start": { + "$date": "2021-06-25T14:12:09.000Z" + }, + "end": { + "$date": "2021-06-25T14:24:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f337432-e29d-43af-b741-12545d795138", + "start": { + "$date": "2021-06-25T14:24:09.000Z" + }, + "end": { + "$date": "2021-06-25T14:33:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "816b34f7-29c7-419c-8d6a-f2c999cb565f", + "start": { + "$date": "2021-06-25T14:33:09.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0bf71c53-f23b-4ba1-9ab3-12dcfcfb2b94", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-24T17:00:43.000Z" + }, + "end": { + "$date": "2021-06-24T18:29:42.000Z" + }, + "events": [ + { + "uuid": "e11e799b-8a2e-4f12-a92d-bb33e2a76cf8", + "start": { + "$date": "2021-06-24T17:00:43.000Z" + }, + "end": { + "$date": "2021-06-24T18:00:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51965bc5-5419-4eca-ad55-54dd11d71317", + "start": { + "$date": "2021-06-24T18:00:43.000Z" + }, + "end": { + "$date": "2021-06-24T18:14:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8861b85-78bb-4a0b-9383-afe17a8112e8", + "start": { + "$date": "2021-06-24T18:14:43.000Z" + }, + "end": { + "$date": "2021-06-24T18:24:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98f8d6cf-d5b9-4b3c-a00c-ec7ca778db9f", + "start": { + "$date": "2021-06-24T18:24:43.000Z" + }, + "end": { + "$date": "2021-06-24T18:29:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2032af8d-587b-47b0-b538-02aa9ff5d0e6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-24T15:59:09.000Z" + }, + "end": { + "$date": "2021-06-24T16:25:41.000Z" + }, + "events": [ + { + "uuid": "05beefc1-5fb2-48be-8404-5096725c17a0", + "start": { + "$date": "2021-06-24T15:59:09.000Z" + }, + "end": { + "$date": "2021-06-24T16:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "941d6d58-d4c2-445f-b606-db590af133ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T17:12:58.000Z" + }, + "end": { + "$date": "2021-06-24T17:52:44.000Z" + }, + "events": [ + { + "uuid": "916058c9-21c4-4107-9dcd-ba9e60f842ae", + "start": { + "$date": "2021-06-24T17:12:58.000Z" + }, + "end": { + "$date": "2021-06-24T17:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "601c227b-1644-49c6-a4e7-abd74475457a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-24T17:40:31.000Z" + }, + "end": { + "$date": "2021-06-24T17:41:40.000Z" + }, + "events": [ + { + "uuid": "51a10590-4600-4c7a-a2e0-7e55baede4de", + "start": { + "$date": "2021-06-24T17:40:31.000Z" + }, + "end": { + "$date": "2021-06-24T17:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "90f1232c-dfdb-4913-a473-b8b042c4a087", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-24T17:42:06.000Z" + }, + "end": { + "$date": "2021-06-24T18:26:36.000Z" + }, + "events": [ + { + "uuid": "82446ec6-134f-4c7c-a039-9cebc72876ae", + "start": { + "$date": "2021-06-24T17:42:06.000Z" + }, + "end": { + "$date": "2021-06-24T18:26:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5670f6a8-12b8-4998-8f3a-6296b6279324", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-24T19:02:40.000Z" + }, + "end": { + "$date": "2021-06-24T21:44:27.000Z" + }, + "events": [ + { + "uuid": "4d2a3260-3bda-48df-9f7e-c351e944e955", + "start": { + "$date": "2021-06-24T19:02:40.000Z" + }, + "end": { + "$date": "2021-06-24T21:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "24d80195-2e18-4474-95a5-bce64d0dea48", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-24T19:41:29.000Z" + }, + "end": { + "$date": "2021-06-24T20:13:12.000Z" + }, + "events": [ + { + "uuid": "ce9f9908-65dd-4d52-9504-f48b21a548dd", + "start": { + "$date": "2021-06-24T19:41:29.000Z" + }, + "end": { + "$date": "2021-06-24T20:13:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "971a90a1-decc-4ded-9f05-54c9c75820df", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-24T20:15:55.000Z" + }, + "end": { + "$date": "2021-06-24T20:23:43.000Z" + }, + "events": [ + { + "uuid": "972b4ded-1efd-4915-bddd-d5f6e51deca2", + "start": { + "$date": "2021-06-24T20:15:55.000Z" + }, + "end": { + "$date": "2021-06-24T20:23:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2b6a461-c25b-470c-af09-f989f1602e35", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T20:19:46.000Z" + }, + "end": { + "$date": "2021-06-24T20:48:20.000Z" + }, + "events": [ + { + "uuid": "63e95951-8c55-4185-9075-61ebd1f76d64", + "start": { + "$date": "2021-06-24T20:19:46.000Z" + }, + "end": { + "$date": "2021-06-24T20:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "069b4927-3ae3-4e14-bca7-3f97043c0386", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-24T20:53:03.000Z" + }, + "end": { + "$date": "2021-06-24T21:14:05.000Z" + }, + "events": [ + { + "uuid": "e2561f82-b058-4bb1-b964-c48f53b30a49", + "start": { + "$date": "2021-06-24T20:53:03.000Z" + }, + "end": { + "$date": "2021-06-24T21:14:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1262ae13-6dba-42ca-89eb-940bf74bfca9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-24T20:56:33.000Z" + }, + "end": { + "$date": "2021-06-24T21:07:42.000Z" + }, + "events": [ + { + "uuid": "f71b6033-9207-4f08-8b49-f8ed4f174885", + "start": { + "$date": "2021-06-24T20:56:33.000Z" + }, + "end": { + "$date": "2021-06-24T21:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "33d24fca-1e9a-4c3d-9d4b-2e053df3dea2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-24T20:56:48.000Z" + }, + "end": { + "$date": "2021-06-24T21:01:39.000Z" + }, + "events": [ + { + "uuid": "1fc9238b-5756-47c3-aa1e-888bcb0b1ce6", + "start": { + "$date": "2021-06-24T20:56:48.000Z" + }, + "end": { + "$date": "2021-06-24T21:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "3f56d709-5704-4c1b-afb4-9f5bdee38c2d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-24T21:03:25.000Z" + }, + "end": { + "$date": "2021-06-24T21:14:12.000Z" + }, + "events": [ + { + "uuid": "05a3b523-65e2-46a5-8a5d-833dfab10530", + "start": { + "$date": "2021-06-24T21:03:25.000Z" + }, + "end": { + "$date": "2021-06-24T21:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "78773899-a66c-4e11-ad3a-cbd441f676e9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-24T21:14:18.000Z" + }, + "end": { + "$date": "2021-06-24T22:08:38.000Z" + }, + "events": [ + { + "uuid": "1934ef36-95e6-4cbe-9918-3c02e97d555a", + "start": { + "$date": "2021-06-24T21:14:18.000Z" + }, + "end": { + "$date": "2021-06-24T22:08:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "90e267f1-ce66-41a0-98e3-7dbfbcb633d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-24T21:36:07.000Z" + }, + "end": { + "$date": "2021-06-25T06:11:04.000Z" + }, + "events": [ + { + "uuid": "7d8f98ff-ce2a-4ca8-9e90-fc0a1b2e4f92", + "start": { + "$date": "2021-06-24T21:36:07.000Z" + }, + "end": { + "$date": "2021-06-24T22:11:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d8d74a1-435b-4783-912e-d4d0c1b1ebd8", + "start": { + "$date": "2021-06-24T22:11:07.000Z" + }, + "end": { + "$date": "2021-06-24T22:14:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61308153-12c8-498e-bd02-292baa37dbf5", + "start": { + "$date": "2021-06-24T22:14:07.000Z" + }, + "end": { + "$date": "2021-06-25T04:12:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d65953b-b61a-4f69-97b4-b2bf20d64eb0", + "start": { + "$date": "2021-06-25T04:12:07.000Z" + }, + "end": { + "$date": "2021-06-25T04:15:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "21ff56b7-4c7c-4fab-820a-f94432c49d05", + "start": { + "$date": "2021-06-25T04:15:07.000Z" + }, + "end": { + "$date": "2021-06-25T06:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "02e1b8d2-60d9-44a7-a7f7-62672fc4be0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-24T22:39:58.000Z" + }, + "end": { + "$date": "2021-06-24T22:43:06.000Z" + }, + "events": [ + { + "uuid": "ea700658-2896-409b-b8fd-56fc354802ef", + "start": { + "$date": "2021-06-24T22:39:58.000Z" + }, + "end": { + "$date": "2021-06-24T22:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "cb681126-ced9-4d3d-b1f5-213474db5513", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-24T22:57:11.000Z" + }, + "end": { + "$date": "2021-06-24T23:13:34.000Z" + }, + "events": [ + { + "uuid": "c6f92105-020b-497c-ae55-f7c04fea51c2", + "start": { + "$date": "2021-06-24T22:57:11.000Z" + }, + "end": { + "$date": "2021-06-24T23:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ee531fa-0713-432d-baac-1a2b532b28af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-24T23:19:41.000Z" + }, + "end": { + "$date": "2021-06-24T23:51:09.000Z" + }, + "events": [ + { + "uuid": "45cd2de5-0b09-433c-b0ed-678fbda6a6eb", + "start": { + "$date": "2021-06-24T23:19:41.000Z" + }, + "end": { + "$date": "2021-06-24T23:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "c8ba5aba-3ce7-4d6e-a319-283012706b90", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T00:13:03.000Z" + }, + "end": { + "$date": "2021-06-25T00:19:48.000Z" + }, + "events": [ + { + "uuid": "ebbf00aa-cfa7-4be0-b1b9-66e9d443b867", + "start": { + "$date": "2021-06-25T00:13:03.000Z" + }, + "end": { + "$date": "2021-06-25T00:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "d1f2c147-36b5-4720-b90a-ce92cdb61c36", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T00:20:10.000Z" + }, + "end": { + "$date": "2021-06-25T00:42:17.000Z" + }, + "events": [ + { + "uuid": "1f2836b5-4202-465e-a989-28b56c38fe24", + "start": { + "$date": "2021-06-25T00:20:10.000Z" + }, + "end": { + "$date": "2021-06-25T00:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "5ea8b244-1fa4-4271-a6ee-1258250e1d31", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-25T01:18:03.000Z" + }, + "end": { + "$date": "2021-06-25T01:56:59.000Z" + }, + "events": [ + { + "uuid": "395dfdca-8da1-480d-b839-08977fe21ce9", + "start": { + "$date": "2021-06-25T01:18:03.000Z" + }, + "end": { + "$date": "2021-06-25T01:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "1b273d35-b188-4254-b09b-4c56a2fc0d60", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T01:25:43.000Z" + }, + "end": { + "$date": "2021-06-25T01:29:48.000Z" + }, + "events": [ + { + "uuid": "681045fa-6c79-4ee1-bd6f-ef16e2e75c8e", + "start": { + "$date": "2021-06-25T01:25:43.000Z" + }, + "end": { + "$date": "2021-06-25T01:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "e821b5e5-c671-4596-bfb6-5cea219b4c6a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T01:30:33.000Z" + }, + "end": { + "$date": "2021-06-25T01:31:42.000Z" + }, + "events": [ + { + "uuid": "de61e41f-0d2c-42fa-808c-4592b04a080e", + "start": { + "$date": "2021-06-25T01:30:33.000Z" + }, + "end": { + "$date": "2021-06-25T01:31:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "3329a742-bcf8-44e6-9fb2-6aec62e4eb59", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T01:35:40.000Z" + }, + "end": { + "$date": "2021-06-25T01:39:34.000Z" + }, + "events": [ + { + "uuid": "d4d9890d-bdee-4eee-ab5d-d804b1609de9", + "start": { + "$date": "2021-06-25T01:35:40.000Z" + }, + "end": { + "$date": "2021-06-25T01:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3ff0b1e-9d87-4037-83bf-b37cee35c696", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-25T01:55:45.000Z" + }, + "end": { + "$date": "2021-06-25T02:21:25.000Z" + }, + "events": [ + { + "uuid": "afa38461-16c7-46bf-b221-c4ade922e91e", + "start": { + "$date": "2021-06-25T01:55:45.000Z" + }, + "end": { + "$date": "2021-06-25T02:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9d036b1-509f-44b5-bc2c-a27276367faf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-25T02:02:07.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:48.000Z" + }, + "events": [ + { + "uuid": "0f08ae6b-52d9-4289-adc8-7cd1c71d8e59", + "start": { + "$date": "2021-06-25T02:02:07.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "775c1781-b0df-41b0-8213-72f2d6ca898b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-25T02:03:05.000Z" + }, + "end": { + "$date": "2021-06-25T02:08:26.000Z" + }, + "events": [ + { + "uuid": "9a14adfc-ccaf-4cd0-b8a2-d723fe33b1c0", + "start": { + "$date": "2021-06-25T02:03:05.000Z" + }, + "end": { + "$date": "2021-06-25T02:08:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5f1d0418-97ae-4376-9332-b42e908dc1ba", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-25T02:03:06.000Z" + }, + "end": { + "$date": "2021-06-25T02:13:27.000Z" + }, + "events": [ + { + "uuid": "ce9b122c-d4ae-4d4b-ba7d-50781f4f5ca1", + "start": { + "$date": "2021-06-25T02:03:06.000Z" + }, + "end": { + "$date": "2021-06-25T02:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "af83fb98-7688-4045-87f1-6b12c4310636", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-25T02:11:11.000Z" + }, + "end": { + "$date": "2021-06-25T02:13:43.000Z" + }, + "events": [ + { + "uuid": "e745a006-1416-4c98-9eab-63479902b9e1", + "start": { + "$date": "2021-06-25T02:11:11.000Z" + }, + "end": { + "$date": "2021-06-25T02:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eb48d1e8-8809-45a0-ae52-9d73a2f553f4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-25T02:13:50.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:11.000Z" + }, + "events": [ + { + "uuid": "3bc8034d-a5f3-453f-bd4b-d488866cb033", + "start": { + "$date": "2021-06-25T02:13:50.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "373873cf-6317-4a5c-99a0-3b59cb587e2c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-25T02:16:12.000Z" + }, + "end": { + "$date": "2021-06-25T02:17:32.000Z" + }, + "events": [ + { + "uuid": "4b501153-2085-4224-83b7-799acfd6f8ea", + "start": { + "$date": "2021-06-25T02:16:12.000Z" + }, + "end": { + "$date": "2021-06-25T02:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a706cbd9-d53c-463b-9a07-a40ce3d01c67", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-25T02:17:42.000Z" + }, + "end": { + "$date": "2021-06-25T04:45:05.000Z" + }, + "events": [ + { + "uuid": "02347630-8d08-4183-b913-f613b50b2238", + "start": { + "$date": "2021-06-25T02:17:42.000Z" + }, + "end": { + "$date": "2021-06-25T04:20:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7e7caec-bf81-4aea-b24a-b6d1bf5abaaf", + "start": { + "$date": "2021-06-25T04:20:42.000Z" + }, + "end": { + "$date": "2021-06-25T04:29:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "694a0785-575a-40a4-8bfb-0d39063bb39e", + "start": { + "$date": "2021-06-25T04:29:42.000Z" + }, + "end": { + "$date": "2021-06-25T04:39:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7b2a5fe-9f19-48ba-b28f-c61128175e1a", + "start": { + "$date": "2021-06-25T04:39:42.000Z" + }, + "end": { + "$date": "2021-06-25T04:43:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "608e6b81-53c2-4cee-a57d-e2b637967a55", + "start": { + "$date": "2021-06-25T04:43:42.000Z" + }, + "end": { + "$date": "2021-06-25T04:45:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87f9adbe-235e-4a1c-8769-37b077346b36", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-25T02:23:50.000Z" + }, + "end": { + "$date": "2021-06-25T02:45:20.000Z" + }, + "events": [ + { + "uuid": "995c472f-801c-465b-b0bb-a165bffc14c9", + "start": { + "$date": "2021-06-25T02:23:50.000Z" + }, + "end": { + "$date": "2021-06-25T02:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "ff15ab27-e86f-4083-93a0-3ab24af4af3c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T02:22:13.000Z" + }, + "end": { + "$date": "2021-06-25T02:26:41.000Z" + }, + "events": [ + { + "uuid": "b141bc8e-67c1-4e13-8b7f-f10424d20414", + "start": { + "$date": "2021-06-25T02:22:13.000Z" + }, + "end": { + "$date": "2021-06-25T02:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7e7d2042-e76f-4bed-9dfc-648e8cfa0dd3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T02:25:46.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:38.000Z" + }, + "events": [ + { + "uuid": "e04ecebb-5043-4d06-be0f-64fc1bb56234", + "start": { + "$date": "2021-06-25T02:25:46.000Z" + }, + "end": { + "$date": "2021-06-25T04:08:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a39ab516-552a-4fee-a33b-29cbe6549437", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T02:37:44.000Z" + }, + "end": { + "$date": "2021-06-25T04:47:01.000Z" + }, + "events": [ + { + "uuid": "e910be42-42c6-4423-abde-13c3d0189b15", + "start": { + "$date": "2021-06-25T02:37:44.000Z" + }, + "end": { + "$date": "2021-06-25T04:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "2a0ba109-8ac6-4c9f-92d3-96682e515d69", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-25T02:38:57.000Z" + }, + "end": { + "$date": "2021-06-25T05:41:23.000Z" + }, + "events": [ + { + "uuid": "c621cb98-8b1a-4488-b217-718871d98d6a", + "start": { + "$date": "2021-06-25T02:38:57.000Z" + }, + "end": { + "$date": "2021-06-25T05:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2838116e-fa52-4be6-bd26-202ed1eecaaf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-25T02:57:33.000Z" + }, + "end": { + "$date": "2021-06-25T03:26:41.000Z" + }, + "events": [ + { + "uuid": "acc97511-6922-4090-bde1-1b8e9b4881c9", + "start": { + "$date": "2021-06-25T02:57:33.000Z" + }, + "end": { + "$date": "2021-06-25T03:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "31b43afc-1c10-4cc3-bd81-d7f69e6a314c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T04:09:41.000Z" + }, + "end": { + "$date": "2021-06-25T07:40:08.000Z" + }, + "events": [ + { + "uuid": "00dc0045-256d-4bd1-9992-6e8630a9b2cd", + "start": { + "$date": "2021-06-25T04:09:41.000Z" + }, + "end": { + "$date": "2021-06-25T07:40:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "6f337637-8bd5-46de-9b60-6bde7a8f6e10", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-25T04:45:24.000Z" + }, + "end": { + "$date": "2021-06-25T04:49:15.000Z" + }, + "events": [ + { + "uuid": "b91fdc39-2994-4bd7-bc55-ae2ee83602d5", + "start": { + "$date": "2021-06-25T04:45:24.000Z" + }, + "end": { + "$date": "2021-06-25T04:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "04396e3a-cc5d-4c2a-abda-03258c5b92a9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-25T04:50:10.000Z" + }, + "end": { + "$date": "2021-06-25T07:40:39.000Z" + }, + "events": [ + { + "uuid": "ccd1001e-2893-457a-a80f-92be62d347ae", + "start": { + "$date": "2021-06-25T04:50:10.000Z" + }, + "end": { + "$date": "2021-06-25T07:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "227932ec-e1ee-42ed-8b68-b2e8f35ad934", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-25T04:52:31.000Z" + }, + "end": { + "$date": "2021-06-25T06:38:41.000Z" + }, + "events": [ + { + "uuid": "a282a887-03a3-4e11-b949-837f41e1d1d6", + "start": { + "$date": "2021-06-25T04:52:31.000Z" + }, + "end": { + "$date": "2021-06-25T06:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "867b12f4-b66a-47a1-b913-826c5a0edbfd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T05:44:39.000Z" + }, + "end": { + "$date": "2021-06-25T06:49:48.000Z" + }, + "events": [ + { + "uuid": "8d56f081-18d3-49e0-a236-7973b77f058f", + "start": { + "$date": "2021-06-25T05:44:39.000Z" + }, + "end": { + "$date": "2021-06-25T06:49:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "51dfae43-e404-4fa1-83cd-26063a4d1528", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-25T05:47:08.000Z" + }, + "end": { + "$date": "2021-06-25T05:48:48.000Z" + }, + "events": [ + { + "uuid": "7b9a2e66-276f-47ce-a161-4c4add454eca", + "start": { + "$date": "2021-06-25T05:47:08.000Z" + }, + "end": { + "$date": "2021-06-25T05:48:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ab121764-f316-403d-8ff0-fd05ea856870", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-25T05:49:59.000Z" + }, + "end": { + "$date": "2021-06-25T06:50:00.000Z" + }, + "events": [ + { + "uuid": "cb0f0770-8af0-4e8d-9087-962d7ba68db0", + "start": { + "$date": "2021-06-25T05:49:59.000Z" + }, + "end": { + "$date": "2021-06-25T06:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ae838f12-83d6-4609-b038-adea6d2e0170", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-25T12:12:13.000Z" + }, + "end": { + "$date": "2021-06-25T13:32:15.000Z" + }, + "events": [ + { + "uuid": "7272716c-d474-4c4c-b4aa-f7a94e22eb86", + "start": { + "$date": "2021-06-25T12:12:13.000Z" + }, + "end": { + "$date": "2021-06-25T13:32:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "ca4e0e85-3439-4b05-a358-8e352d4906f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T03:59:12.000Z" + }, + "end": { + "$date": "2021-06-26T05:48:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-26T03:59:12.000Z" + }, + "end": { + "$date": "2021-06-26T05:48:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3a4e404d-d498-40d2-8798-b6f551ef2468", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T15:18:14.000Z" + }, + "end": { + "$date": "2021-06-25T15:22:55.000Z" + }, + "events": [ + { + "uuid": "ead736ad-af3f-4796-8a0d-fdea075a4fd7", + "start": { + "$date": "2021-06-25T15:18:14.000Z" + }, + "end": { + "$date": "2021-06-25T15:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ee91fcfb-5e2a-438a-b2ec-2bfb3780b401", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-25T15:23:10.000Z" + }, + "end": { + "$date": "2021-06-25T15:38:57.000Z" + }, + "events": [ + { + "uuid": "ad63eedf-0422-4e94-b4d9-b65227eb91f4", + "start": { + "$date": "2021-06-25T15:23:10.000Z" + }, + "end": { + "$date": "2021-06-25T15:33:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31d5db62-1ea3-4eee-a260-3d1e95cf6d89", + "start": { + "$date": "2021-06-25T15:33:10.000Z" + }, + "end": { + "$date": "2021-06-25T15:36:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2701cf2f-085d-400d-96aa-eb102b8fd78e", + "start": { + "$date": "2021-06-25T15:36:10.000Z" + }, + "end": { + "$date": "2021-06-25T15:38:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c04688af-c407-4d2b-851a-a4bbbb05674d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-25T15:28:47.000Z" + }, + "end": { + "$date": "2021-06-25T16:20:34.000Z" + }, + "events": [ + { + "uuid": "b7f45d8f-3a45-49df-9994-a77b47b0eacc", + "start": { + "$date": "2021-06-25T15:28:47.000Z" + }, + "end": { + "$date": "2021-06-25T16:20:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "6f99c786-4b1b-4225-94ec-50feb2aa2759", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-25T15:49:24.000Z" + }, + "end": { + "$date": "2021-06-25T16:32:12.000Z" + }, + "events": [ + { + "uuid": "274adfb7-15bc-4b1d-92af-cfdeb1915686", + "start": { + "$date": "2021-06-25T15:49:24.000Z" + }, + "end": { + "$date": "2021-06-25T16:32:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "5d7e78b5-8c3e-4e6c-9164-9a404e847097", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T15:54:06.000Z" + }, + "end": { + "$date": "2021-06-25T16:41:05.000Z" + }, + "events": [ + { + "uuid": "eda11b41-f16b-4af6-b900-3773bd5455d5", + "start": { + "$date": "2021-06-25T15:54:06.000Z" + }, + "end": { + "$date": "2021-06-25T16:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa6360b3-2eda-4f90-af99-801fe71a8292", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T17:14:57.000Z" + }, + "end": { + "$date": "2021-06-25T17:53:01.000Z" + }, + "events": [ + { + "uuid": "ad85878f-2e5e-4a60-b5b8-ff46d8e2a508", + "start": { + "$date": "2021-06-25T17:14:57.000Z" + }, + "end": { + "$date": "2021-06-25T17:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c51edfa9-aa05-4f16-983f-39fc4733f92a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T17:55:23.000Z" + }, + "end": { + "$date": "2021-06-25T18:30:25.000Z" + }, + "events": [ + { + "uuid": "de243c5b-e8fd-4187-b2ca-e0a686613146", + "start": { + "$date": "2021-06-25T17:55:23.000Z" + }, + "end": { + "$date": "2021-06-25T18:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5df02aa7-7bce-42c9-a999-d4b9798b9f45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T18:32:52.000Z" + }, + "end": { + "$date": "2021-06-25T19:41:30.000Z" + }, + "events": [ + { + "uuid": "c8244289-e927-4691-b858-ae073e85543d", + "start": { + "$date": "2021-06-25T18:32:52.000Z" + }, + "end": { + "$date": "2021-06-25T18:52:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7d43cb9e-fe2b-4e92-8178-5cf71512f02f", + "start": { + "$date": "2021-06-25T18:52:52.000Z" + }, + "end": { + "$date": "2021-06-25T19:41:30.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "d318d833-be9e-4ef0-bd98-65b84be3b380", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T19:42:34.000Z" + }, + "end": { + "$date": "2021-06-25T20:07:55.000Z" + }, + "events": [ + { + "uuid": "ec2ac26e-2eb3-4371-a371-9ad0808eb710", + "start": { + "$date": "2021-06-25T19:42:34.000Z" + }, + "end": { + "$date": "2021-06-25T20:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5c57de3f-3a72-4a97-b397-9c692eddd50c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-25T19:58:55.000Z" + }, + "end": { + "$date": "2021-06-25T20:43:00.000Z" + }, + "events": [ + { + "uuid": "8caaebc6-64d2-4ed8-bce4-13cceb05f2bd", + "start": { + "$date": "2021-06-25T19:58:55.000Z" + }, + "end": { + "$date": "2021-06-25T20:43:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6b020df-c9c2-4190-9bef-a841b0157695", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T20:11:08.000Z" + }, + "end": { + "$date": "2021-06-25T20:48:35.000Z" + }, + "events": [ + { + "uuid": "14499c2c-93d3-4a17-a8f1-acffea8c9465", + "start": { + "$date": "2021-06-25T20:11:08.000Z" + }, + "end": { + "$date": "2021-06-25T20:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cabbbc4-a2c5-40c0-8713-336a57e98187", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T21:19:30.000Z" + }, + "end": { + "$date": "2021-06-25T21:43:37.000Z" + }, + "events": [ + { + "uuid": "262c1868-d0cb-4517-b88c-ad151170a52d", + "start": { + "$date": "2021-06-25T21:19:30.000Z" + }, + "end": { + "$date": "2021-06-25T21:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7db54b8b-3c24-4248-8fe8-a8c3470f974f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-25T21:46:06.000Z" + }, + "end": { + "$date": "2021-06-25T22:21:18.000Z" + }, + "events": [ + { + "uuid": "60d9b5a6-9615-48c5-988d-1ee077e32a97", + "start": { + "$date": "2021-06-25T21:46:06.000Z" + }, + "end": { + "$date": "2021-06-25T22:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d607ad91-1a41-4e22-b19f-5978ca17de6c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-25T21:50:02.000Z" + }, + "end": { + "$date": "2021-06-25T22:56:32.000Z" + }, + "events": [ + { + "uuid": "b52dc7ac-db7b-4d7d-93ca-cd8d304bd1df", + "start": { + "$date": "2021-06-25T21:50:02.000Z" + }, + "end": { + "$date": "2021-06-25T22:56:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "b9d505fd-0bda-4c46-91a9-eeecc4517dff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-25T22:19:21.000Z" + }, + "end": { + "$date": "2021-06-25T22:44:50.000Z" + }, + "events": [ + { + "uuid": "443420a6-872c-42a4-8881-c7366254083d", + "start": { + "$date": "2021-06-25T22:19:21.000Z" + }, + "end": { + "$date": "2021-06-25T22:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ae4d616b-cef0-4012-b3cc-4b3618d0eb72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-25T23:53:31.000Z" + }, + "end": { + "$date": "2021-06-26T00:36:52.000Z" + }, + "events": [ + { + "uuid": "a99db92f-ecc6-4fdf-ac53-87cd07dfcbd3", + "start": { + "$date": "2021-06-25T23:53:31.000Z" + }, + "end": { + "$date": "2021-06-26T00:36:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cba99064-4cde-4ca6-9dc4-d794c6bf0503", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-26T01:41:42.000Z" + }, + "end": { + "$date": "2021-06-26T01:50:52.000Z" + }, + "events": [ + { + "uuid": "2b625c42-2b04-48c0-970c-1bfb9abf4f91", + "start": { + "$date": "2021-06-26T01:41:42.000Z" + }, + "end": { + "$date": "2021-06-26T01:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", + "uuid": "8f507be1-e36a-4ee0-af93-282efb364bf1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T02:06:54.000Z" + }, + "end": { + "$date": "2021-06-26T04:31:21.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-26T02:06:54.000Z" + }, + "end": { + "$date": "2021-06-26T04:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4f5fbf2b-f99a-439d-89aa-813090cd8eea", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-06-26T02:09:59.000Z" + }, + "end": { + "$date": "2021-06-26T03:13:36.000Z" + }, + "events": [ + { + "uuid": "8b0b65cb-05db-4e2e-8542-942b5ade22e3", + "start": { + "$date": "2021-06-26T02:09:59.000Z" + }, + "end": { + "$date": "2021-06-26T03:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "29f8bd60-a232-425a-890d-62547894b63b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-26T02:57:17.000Z" + }, + "end": { + "$date": "2021-06-26T03:38:41.000Z" + }, + "events": [ + { + "uuid": "e05a2a8a-fa95-4f06-bbe6-e816110e7664", + "start": { + "$date": "2021-06-26T02:57:17.000Z" + }, + "end": { + "$date": "2021-06-26T03:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "feb4cb5f-6c4a-4bb6-aafe-0b6d8c216157", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-26T03:19:57.000Z" + }, + "end": { + "$date": "2021-06-26T04:26:59.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-26T03:19:57.000Z" + }, + "end": { + "$date": "2021-06-26T04:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "361740b0-e5fe-4bab-a465-8886f6481300", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T03:44:41.000Z" + }, + "end": { + "$date": "2021-06-26T04:13:58.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-26T03:44:41.000Z" + }, + "end": { + "$date": "2021-06-26T04:13:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "56fe7fae-cf2f-4585-b047-a742aa608bf5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-26T03:42:22.000Z" + }, + "end": { + "$date": "2021-06-26T06:59:22.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-26T03:42:22.000Z" + }, + "end": { + "$date": "2021-06-26T06:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d12b2551-7b47-43e8-9fb1-cf669621658c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-26T03:54:04.000Z" + }, + "end": { + "$date": "2021-06-26T03:56:24.000Z" + }, + "events": [ + { + "uuid": "edfec3b7-8c2b-41b7-bf50-c049e0d0d4dc", + "start": { + "$date": "2021-06-26T03:54:04.000Z" + }, + "end": { + "$date": "2021-06-26T03:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5c7a3e1b-65d0-4332-adc8-79e5934ece29", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-26T03:57:07.000Z" + }, + "end": { + "$date": "2021-06-26T06:37:45.000Z" + }, + "events": [ + { + "uuid": "ff837011-2808-4618-9b1d-3ac41c2f84f8", + "start": { + "$date": "2021-06-26T03:57:07.000Z" + }, + "end": { + "$date": "2021-06-26T06:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "012ba40b-ec67-4098-9f0a-c2fc872a68a4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-26T03:57:24.000Z" + }, + "end": { + "$date": "2021-06-26T06:38:19.000Z" + }, + "events": [ + { + "uuid": "dcd6a63d-dce0-440f-aca2-3b95863ed9fb", + "start": { + "$date": "2021-06-26T03:57:24.000Z" + }, + "end": { + "$date": "2021-06-26T06:38:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cda03ab-0548-4630-bdf3-4a5d2aca6357", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T04:19:25.000Z" + }, + "end": { + "$date": "2021-06-26T04:55:54.000Z" + }, + "events": [ + { + "uuid": "0f04e948-5d43-4c73-81cc-6703d2a1a52c", + "start": { + "$date": "2021-06-26T04:19:25.000Z" + }, + "end": { + "$date": "2021-06-26T04:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ad3aa476-a7d5-4d51-a548-5415df967654", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-26T04:17:14.000Z" + }, + "end": { + "$date": "2021-06-26T06:37:00.000Z" + }, + "events": [ + { + "uuid": "55b775c8-74dd-4fdf-b7e1-3f922629a32f", + "start": { + "$date": "2021-06-26T04:17:14.000Z" + }, + "end": { + "$date": "2021-06-26T04:18:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2705fc5b-a550-4cd6-956a-4d69f7b47421", + "start": { + "$date": "2021-06-26T04:18:14.000Z" + }, + "end": { + "$date": "2021-06-26T04:30:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "51cb9120-5d2c-4bff-8736-4f0e98f741b2", + "start": { + "$date": "2021-06-26T04:30:14.000Z" + }, + "end": { + "$date": "2021-06-26T06:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "81114c3b-9b1c-44ae-a04c-49c44b8ccbb0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-26T04:27:14.000Z" + }, + "end": { + "$date": "2021-06-26T19:46:06.000Z" + }, + "events": [ + { + "uuid": "1f86c657-8abd-47fd-ae95-ac3865b4c48f", + "start": { + "$date": "2021-06-26T04:27:14.000Z" + }, + "end": { + "$date": "2021-06-26T07:11:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8775a7fc-e5eb-4d70-8694-1cf1408ad8af", + "start": { + "$date": "2021-06-26T07:11:14.000Z" + }, + "end": { + "$date": "2021-06-26T15:37:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74154b04-910d-45e4-affa-6c28db5c8ebf", + "start": { + "$date": "2021-06-26T15:37:14.000Z" + }, + "end": { + "$date": "2021-06-26T15:47:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74b1cf44-9888-41e5-9aff-f4a05c1aa504", + "start": { + "$date": "2021-06-26T15:47:14.000Z" + }, + "end": { + "$date": "2021-06-26T19:46:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "23dc97e1-e745-4979-8436-bf0b71373ce6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-26T04:28:53.000Z" + }, + "end": { + "$date": "2021-06-26T04:42:23.000Z" + }, + "events": [ + { + "uuid": "f3dbac03-26bf-4d46-89e8-80abcf0da430", + "start": { + "$date": "2021-06-26T04:28:53.000Z" + }, + "end": { + "$date": "2021-06-26T04:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92ca6856-c02f-4b88-a60d-e3a568ef23fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-26T04:46:03.000Z" + }, + "end": { + "$date": "2021-06-26T05:53:59.000Z" + }, + "events": [ + { + "uuid": "79462bff-a378-48c6-aa33-e9268886a56b", + "start": { + "$date": "2021-06-26T04:46:03.000Z" + }, + "end": { + "$date": "2021-06-26T05:53:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28eeb495-dff2-4799-a402-b8db09a7bad2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T05:04:35.000Z" + }, + "end": { + "$date": "2021-06-26T05:34:05.000Z" + }, + "events": [ + { + "uuid": "b42d3c3c-a240-42d2-b53b-eec87736ee65", + "start": { + "$date": "2021-06-26T05:04:35.000Z" + }, + "end": { + "$date": "2021-06-26T05:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5ef54e5-5297-4e4e-913e-8ee2b38e809f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T05:01:23.000Z" + }, + "end": { + "$date": "2021-06-26T05:49:57.000Z" + }, + "events": [ + { + "uuid": "126d425f-92b5-485a-8861-461aefc46776", + "start": { + "$date": "2021-06-26T05:01:23.000Z" + }, + "end": { + "$date": "2021-06-26T05:49:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b6362ae-2ce5-41b6-840a-dfd7b535e752", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T05:46:00.000Z" + }, + "end": { + "$date": "2021-06-26T06:22:43.000Z" + }, + "events": [ + { + "uuid": "906709bc-fb68-465c-9379-042e3eae2664", + "start": { + "$date": "2021-06-26T05:46:00.000Z" + }, + "end": { + "$date": "2021-06-26T06:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d244a9ef-472b-4b0b-bea3-78c6a640e094", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T06:22:50.000Z" + }, + "end": { + "$date": "2021-06-26T06:46:56.000Z" + }, + "events": [ + { + "uuid": "e7b04ce3-0d33-4d37-b415-a5bd13f83f4e", + "start": { + "$date": "2021-06-26T06:22:50.000Z" + }, + "end": { + "$date": "2021-06-26T06:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "298eb9e4-f49d-4a5a-b666-c4a88a212b79", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T06:52:17.000Z" + }, + "end": { + "$date": "2021-06-26T07:21:10.000Z" + }, + "events": [ + { + "uuid": "0e6aded6-a1ff-4ad6-ab7a-b98c328361eb", + "start": { + "$date": "2021-06-26T06:52:17.000Z" + }, + "end": { + "$date": "2021-06-26T07:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1260c21-4149-4275-bc0e-7926d384b727", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T06:47:48.000Z" + }, + "end": { + "$date": "2021-06-26T07:28:38.000Z" + }, + "events": [ + { + "uuid": "a060b4d3-898c-42de-891d-5da8843976bc", + "start": { + "$date": "2021-06-26T06:47:48.000Z" + }, + "end": { + "$date": "2021-06-26T07:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "8af37e2a-2348-41f8-820f-430dc64a52c8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-26T07:00:34.000Z" + }, + "end": { + "$date": "2021-06-26T10:04:11.000Z" + }, + "events": [ + { + "uuid": "23d61fcf-1154-4100-8a9f-aef8decd0904", + "start": { + "$date": "2021-06-26T07:00:34.000Z" + }, + "end": { + "$date": "2021-06-26T08:44:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d1fea6a-3336-4da3-b2c7-e52bc06e9a95", + "start": { + "$date": "2021-06-26T08:44:34.000Z" + }, + "end": { + "$date": "2021-06-26T08:49:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f3d61db7-59e9-4661-91e7-a07e46442a3b", + "start": { + "$date": "2021-06-26T08:49:34.000Z" + }, + "end": { + "$date": "2021-06-26T09:20:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4da756a0-6d4d-4b2f-877d-8d601ff6cf26", + "start": { + "$date": "2021-06-26T09:20:34.000Z" + }, + "end": { + "$date": "2021-06-26T09:25:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd7effd2-e4c9-40c1-8e2a-a1a25ab2d9de", + "start": { + "$date": "2021-06-26T09:25:34.000Z" + }, + "end": { + "$date": "2021-06-26T10:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "158d5881-6c78-4172-9ffb-6817e215f794", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T07:22:59.000Z" + }, + "end": { + "$date": "2021-06-26T08:00:33.000Z" + }, + "events": [ + { + "uuid": "3f7dc4d2-8f62-4545-8522-c06acecca8bb", + "start": { + "$date": "2021-06-26T07:22:59.000Z" + }, + "end": { + "$date": "2021-06-26T08:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08bfa5e2-2c6d-4f9b-b9da-cb832ae4cad8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T08:03:07.000Z" + }, + "end": { + "$date": "2021-06-26T08:39:31.000Z" + }, + "events": [ + { + "uuid": "03af3c24-c8c9-4fca-bb5d-129419a6c0ed", + "start": { + "$date": "2021-06-26T08:03:07.000Z" + }, + "end": { + "$date": "2021-06-26T08:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89860c8d-9907-4cc8-b363-62f0296572e6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-26T08:41:20.000Z" + }, + "end": { + "$date": "2021-06-26T09:16:08.000Z" + }, + "events": [ + { + "uuid": "a292c62e-77a3-48f8-aac9-6d49f648e929", + "start": { + "$date": "2021-06-26T08:41:20.000Z" + }, + "end": { + "$date": "2021-06-26T09:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9770cdef-f2ba-45ac-beb9-623a074b67fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-26T10:04:39.000Z" + }, + "end": { + "$date": "2021-06-26T11:08:20.000Z" + }, + "events": [ + { + "uuid": "b5a72247-5e46-4e1a-9375-523e77abe63a", + "start": { + "$date": "2021-06-26T10:04:39.000Z" + }, + "end": { + "$date": "2021-06-26T11:08:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "462f313a-2693-4e08-ab8b-6a269600b060", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T17:30:56.000Z" + }, + "end": { + "$date": "2021-06-26T18:03:17.000Z" + }, + "events": [ + { + "uuid": "56947572-d2be-45d8-8f44-af419fced790", + "start": { + "$date": "2021-06-26T17:30:56.000Z" + }, + "end": { + "$date": "2021-06-26T18:03:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1eaee746-a156-4b53-a6cc-1bbae4adc363", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T18:03:52.000Z" + }, + "end": { + "$date": "2021-06-26T19:36:32.000Z" + }, + "events": [ + { + "uuid": "c0dc776f-0aa6-4351-ac8f-db8277ada4af", + "start": { + "$date": "2021-06-26T18:03:52.000Z" + }, + "end": { + "$date": "2021-06-26T19:36:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "6f624f7e-35dc-46b6-973f-27a5a24d7ce4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T18:08:11.000Z" + }, + "end": { + "$date": "2021-06-26T18:14:39.000Z" + }, + "events": [ + { + "uuid": "c735d0c2-860e-4b4c-b103-6e443017ab25", + "start": { + "$date": "2021-06-26T18:08:11.000Z" + }, + "end": { + "$date": "2021-06-26T18:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "d5146a67-c50f-4c47-93e6-0579469cd211", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T18:17:32.000Z" + }, + "end": { + "$date": "2021-06-26T18:24:19.000Z" + }, + "events": [ + { + "uuid": "16ef7835-a6b9-4a72-b861-2866d25055a0", + "start": { + "$date": "2021-06-26T18:17:32.000Z" + }, + "end": { + "$date": "2021-06-26T18:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "4b159bdc-45d2-4a0b-b21c-26cb971bc487", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T18:27:39.000Z" + }, + "end": { + "$date": "2021-06-26T18:43:39.000Z" + }, + "events": [ + { + "uuid": "5ab88489-a7a9-478e-b270-1d34b8d93314", + "start": { + "$date": "2021-06-26T18:27:39.000Z" + }, + "end": { + "$date": "2021-06-26T18:43:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "8b03062a-96ab-4e77-9f5c-0f73e9006382", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T19:02:50.000Z" + }, + "end": { + "$date": "2021-06-26T19:06:11.000Z" + }, + "events": [ + { + "uuid": "21ce361d-ef1b-4658-a027-3cc4bab192cc", + "start": { + "$date": "2021-06-26T19:02:50.000Z" + }, + "end": { + "$date": "2021-06-26T19:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "44518864-a1c0-4b81-a7f8-7bb38c530578", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-26T19:46:11.000Z" + }, + "end": { + "$date": "2021-06-26T20:21:04.000Z" + }, + "events": [ + { + "uuid": "46e347b5-7134-478c-9d7a-c82544434f31", + "start": { + "$date": "2021-06-26T19:46:11.000Z" + }, + "end": { + "$date": "2021-06-26T20:21:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "1bfc8fc6-70be-4668-ae89-867a87ba32d1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-26T21:27:03.000Z" + }, + "end": { + "$date": "2021-06-26T21:28:08.000Z" + }, + "events": [ + { + "uuid": "bf0ec40e-e8e7-46d1-bf8e-0c055bc716e5", + "start": { + "$date": "2021-06-26T21:27:03.000Z" + }, + "end": { + "$date": "2021-06-26T21:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "affda1d3-bde2-430f-a9ab-ffd3bc70f0e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T21:47:36.000Z" + }, + "end": { + "$date": "2021-06-26T22:22:10.000Z" + }, + "events": [ + { + "uuid": "64d3e63e-317d-452e-88a1-2c60e09c2fd6", + "start": { + "$date": "2021-06-26T21:47:36.000Z" + }, + "end": { + "$date": "2021-06-26T22:22:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23550d97-3500-49fd-b247-57313f18d432", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T21:54:33.000Z" + }, + "end": { + "$date": "2021-06-26T22:21:59.000Z" + }, + "events": [ + { + "uuid": "770e3ef0-0ae2-477c-976d-49b78da4ab52", + "start": { + "$date": "2021-06-26T21:54:33.000Z" + }, + "end": { + "$date": "2021-06-26T22:21:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "815522a0-8605-4ad8-9635-c75b2e73ace9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-26T22:07:41.000Z" + }, + "end": { + "$date": "2021-06-27T01:18:26.000Z" + }, + "events": [ + { + "uuid": "a09445d1-eda2-4a12-8799-896f30d561e1", + "start": { + "$date": "2021-06-26T22:07:41.000Z" + }, + "end": { + "$date": "2021-06-27T01:18:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "01dd409a-ae7b-40b9-9ecf-6fba0647ca64", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T22:44:48.000Z" + }, + "end": { + "$date": "2021-06-26T22:48:43.000Z" + }, + "events": [ + { + "uuid": "8619a76c-36d5-4080-9ff3-d117e3f06c50", + "start": { + "$date": "2021-06-26T22:44:48.000Z" + }, + "end": { + "$date": "2021-06-26T22:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "46478888-5379-4b38-8d4b-252d9debe62b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T22:29:40.000Z" + }, + "end": { + "$date": "2021-06-26T22:54:15.000Z" + }, + "events": [ + { + "uuid": "9236c4ff-4b3b-45d3-917b-4fab77fc6f05", + "start": { + "$date": "2021-06-26T22:29:40.000Z" + }, + "end": { + "$date": "2021-06-26T22:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "4a0e3dad-9309-4876-be29-c2e042c8f54c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-26T23:12:02.000Z" + }, + "end": { + "$date": "2021-06-26T23:18:40.000Z" + }, + "events": [ + { + "uuid": "1feddbfb-f255-42c1-825e-5bef69a9c471", + "start": { + "$date": "2021-06-26T23:12:02.000Z" + }, + "end": { + "$date": "2021-06-26T23:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "91b01f1c-5686-4abe-b43f-8dbbdf1a171a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T22:54:46.000Z" + }, + "end": { + "$date": "2021-06-26T23:10:32.000Z" + }, + "events": [ + { + "uuid": "a68465e1-d09b-464b-8e8d-72a1e584694e", + "start": { + "$date": "2021-06-26T22:54:46.000Z" + }, + "end": { + "$date": "2021-06-26T23:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "73fd0ab0-efcc-4240-b284-ac6373df5ecf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-27T02:12:34.000Z" + }, + "end": { + "$date": "2021-06-27T04:52:04.000Z" + }, + "events": [ + { + "uuid": "9c1435b8-4d0c-490d-bd1b-3fe66d4c53dd", + "start": { + "$date": "2021-06-27T02:12:34.000Z" + }, + "end": { + "$date": "2021-06-27T03:54:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb04217f-337c-4aee-ab69-5c42250b96d6", + "start": { + "$date": "2021-06-27T03:54:34.000Z" + }, + "end": { + "$date": "2021-06-27T04:00:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "056b9486-e034-48e7-936a-3b6648ec36a8", + "start": { + "$date": "2021-06-27T04:00:34.000Z" + }, + "end": { + "$date": "2021-06-27T05:14:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c2124366-ac96-4171-8433-404ff2bc72ed", + "start": { + "$date": "2021-06-27T05:14:34.000Z" + }, + "end": { + "$date": "2021-06-27T05:15:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "05c4c7a6-6b8f-4c34-b40e-590a559652d7", + "start": { + "$date": "2021-06-27T05:15:34.000Z" + }, + "end": { + "$date": "2021-06-27T05:18:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3296ced3-b998-4c6a-a692-2b41f7ebf8fa", + "start": { + "$date": "2021-06-27T05:18:34.000Z" + }, + "end": { + "$date": "2021-06-27T06:17:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "736a6c2f-93af-4896-9f53-bcd33d5591fc", + "start": { + "$date": "2021-06-27T06:17:34.000Z" + }, + "end": { + "$date": "2021-06-27T06:20:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d5fdfe0-d45c-4127-a7c8-24b04d8b0755", + "start": { + "$date": "2021-06-27T06:20:34.000Z" + }, + "end": { + "$date": "2021-06-27T06:52:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5acdbc7-8557-46cc-8c03-8d55b191b202", + "start": { + "$date": "2021-06-27T06:52:34.000Z" + }, + "end": { + "$date": "2021-06-27T07:09:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "264bffc7-5873-4179-b70c-4593bcfab541", + "start": { + "$date": "2021-06-27T07:09:34.000Z" + }, + "end": { + "$date": "2021-06-27T07:35:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc893fc4-0c2b-4b4b-adcc-e13541cbab78", + "start": { + "$date": "2021-06-27T07:35:34.000Z" + }, + "end": { + "$date": "2021-06-27T04:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "68f151e1-e133-4582-8928-46768d40588f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T23:47:46.000Z" + }, + "end": { + "$date": "2021-06-26T23:53:31.000Z" + }, + "events": [ + { + "uuid": "6fc65b40-b523-40b1-b080-cfc88e11e019", + "start": { + "$date": "2021-06-26T23:47:46.000Z" + }, + "end": { + "$date": "2021-06-26T23:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "67aeefd0-d120-4a0a-aff3-87a9c7abc54e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-26T23:53:46.000Z" + }, + "end": { + "$date": "2021-06-27T01:09:13.000Z" + }, + "events": [ + { + "uuid": "cf32f186-24bc-4cd0-a1f1-2c604c06d99d", + "start": { + "$date": "2021-06-26T23:53:46.000Z" + }, + "end": { + "$date": "2021-06-27T01:09:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1296b879-6b9d-4f59-a4ce-007af63e08be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-27T00:01:06.000Z" + }, + "end": { + "$date": "2021-06-27T01:02:17.000Z" + }, + "events": [ + { + "uuid": "d7f980d2-3fbe-4133-8d4a-1562d6e6ae29", + "start": { + "$date": "2021-06-27T00:01:06.000Z" + }, + "end": { + "$date": "2021-06-27T01:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bf39418a-e2a0-469d-ae25-2f346bc4ef44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T00:13:04.000Z" + }, + "end": { + "$date": "2021-06-27T00:18:46.000Z" + }, + "events": [ + { + "uuid": "250d0a9b-a22e-48d6-a8eb-ae4f28177add", + "start": { + "$date": "2021-06-27T00:13:04.000Z" + }, + "end": { + "$date": "2021-06-27T00:18:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6d35ad86-c890-4d7d-b31c-baef93e6c4fb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T00:20:04.000Z" + }, + "end": { + "$date": "2021-06-27T00:45:23.000Z" + }, + "events": [ + { + "uuid": "c782c607-cc98-4311-afa7-7a62218b2896", + "start": { + "$date": "2021-06-27T00:20:04.000Z" + }, + "end": { + "$date": "2021-06-27T00:45:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "541d8738-2ef6-45ae-aa96-290d3bb484b7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-27T00:53:53.000Z" + }, + "end": { + "$date": "2021-06-27T03:35:35.000Z" + }, + "events": [ + { + "uuid": "e6cca25a-bde3-40b0-baaf-cfa1983fe845", + "start": { + "$date": "2021-06-27T00:53:53.000Z" + }, + "end": { + "$date": "2021-06-27T02:26:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff064b2b-ef2d-4529-9595-db76ff0fb066", + "start": { + "$date": "2021-06-27T02:26:53.000Z" + }, + "end": { + "$date": "2021-06-27T02:41:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e607790-da7c-42f7-b631-c70de0746cf5", + "start": { + "$date": "2021-06-27T02:41:53.000Z" + }, + "end": { + "$date": "2021-06-27T03:20:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "76778e8f-4d1d-4a28-8230-e0dea56e44d6", + "start": { + "$date": "2021-06-27T03:20:53.000Z" + }, + "end": { + "$date": "2021-06-27T03:35:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f62b487a-a340-4c62-8e9e-96abcdef529f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-27T01:29:35.000Z" + }, + "end": { + "$date": "2021-06-27T03:57:42.000Z" + }, + "events": [ + { + "uuid": "bbb9e0fe-0ca4-4ba1-86f8-fb4bbd5e39fc", + "start": { + "$date": "2021-06-27T01:29:35.000Z" + }, + "end": { + "$date": "2021-06-27T03:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0e85457f-e61c-4bbb-9451-6d399fc2e1da", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-27T02:12:53.000Z" + }, + "end": { + "$date": "2021-06-27T02:16:19.000Z" + }, + "events": [ + { + "uuid": "51da5234-ad0c-43ef-9d19-f77cad9162e8", + "start": { + "$date": "2021-06-27T02:12:53.000Z" + }, + "end": { + "$date": "2021-06-27T02:16:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ab34a8b1-08ff-463e-b69a-f502418a7e01", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T02:43:53.000Z" + }, + "end": { + "$date": "2021-06-27T03:53:58.000Z" + }, + "events": [ + { + "uuid": "fc40da97-2814-4945-889c-6d1cede64086", + "start": { + "$date": "2021-06-27T02:43:53.000Z" + }, + "end": { + "$date": "2021-06-27T03:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1007c3dc-1b2f-4277-8027-9258ca424a32", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-27T02:58:43.000Z" + }, + "end": { + "$date": "2021-06-27T03:26:43.000Z" + }, + "events": [ + { + "uuid": "d99755ac-b607-4b78-b75b-b5d14c75a166", + "start": { + "$date": "2021-06-27T02:58:43.000Z" + }, + "end": { + "$date": "2021-06-27T03:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d94b125d-3c54-4356-9e87-560f8eb263d1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-27T03:27:43.000Z" + }, + "end": { + "$date": "2021-06-27T03:58:31.000Z" + }, + "events": [ + { + "uuid": "1dea47de-231f-4e33-a0bb-ea616fa1ed3c", + "start": { + "$date": "2021-06-27T03:27:43.000Z" + }, + "end": { + "$date": "2021-06-27T03:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e10b6794-d7d0-471b-99d3-825c68ebd5a3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-27T03:33:14.000Z" + }, + "end": { + "$date": "2021-06-27T03:49:52.000Z" + }, + "events": [ + { + "uuid": "45f90095-5a90-4d2a-9726-e566a1be25fe", + "start": { + "$date": "2021-06-27T03:33:14.000Z" + }, + "end": { + "$date": "2021-06-27T03:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "145e9500-8220-4a27-8d8e-d4e468c7dd11", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-27T03:58:52.000Z" + }, + "end": { + "$date": "2021-06-27T04:04:42.000Z" + }, + "events": [ + { + "uuid": "e338a9b9-92ff-438e-b973-9e9ab3db91b6", + "start": { + "$date": "2021-06-27T03:58:52.000Z" + }, + "end": { + "$date": "2021-06-27T04:04:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d2c6a1b-069b-4e4c-ba8e-f05db8813836", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-27T05:15:45.000Z" + }, + "end": { + "$date": "2021-06-27T05:16:38.000Z" + }, + "events": [ + { + "uuid": "fefe1b2e-09c6-480d-9106-62e0e1994134", + "start": { + "$date": "2021-06-27T05:15:45.000Z" + }, + "end": { + "$date": "2021-06-27T05:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2cfb2b3d-6fd4-4a0f-8f11-5d11c15cc608", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-27T03:59:56.000Z" + }, + "end": { + "$date": "2021-06-27T04:45:28.000Z" + }, + "events": [ + { + "uuid": "4b3438b0-9984-4e9f-be84-adc0c921df4a", + "start": { + "$date": "2021-06-27T03:59:56.000Z" + }, + "end": { + "$date": "2021-06-27T04:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "78713e5e-dc71-424f-8aca-2df31192c2a1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-27T04:05:22.000Z" + }, + "end": { + "$date": "2021-06-27T04:45:51.000Z" + }, + "events": [ + { + "uuid": "0ae5f375-c725-4d0b-b975-54673e4e3511", + "start": { + "$date": "2021-06-27T04:05:22.000Z" + }, + "end": { + "$date": "2021-06-27T04:45:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "922b64f6-dab8-488e-8052-7c38cc5ceb7a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-27T04:25:40.000Z" + }, + "end": { + "$date": "2021-06-27T05:53:40.000Z" + }, + "events": [ + { + "uuid": "5761c8cd-4911-444e-b062-b6ebca55e935", + "start": { + "$date": "2021-06-27T04:25:40.000Z" + }, + "end": { + "$date": "2021-06-27T05:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a3f052e2-5f78-4534-8002-a88296b82e67", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-27T04:40:47.000Z" + }, + "end": { + "$date": "2021-06-27T07:08:47.000Z" + }, + "events": [ + { + "uuid": "45e7c157-4f04-4380-bf71-46cc60f6fda0", + "start": { + "$date": "2021-06-27T04:40:47.000Z" + }, + "end": { + "$date": "2021-06-27T07:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5c25e698-9ba7-47c5-b5cc-9380b0370e1a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-27T04:46:32.000Z" + }, + "end": { + "$date": "2021-06-27T05:54:21.000Z" + }, + "events": [ + { + "uuid": "9849ece8-1882-4321-a535-07a258394e0e", + "start": { + "$date": "2021-06-27T04:46:32.000Z" + }, + "end": { + "$date": "2021-06-27T05:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1d0eb1b9-7daf-4f0a-9ac6-bf743821bbc4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-27T04:48:36.000Z" + }, + "end": { + "$date": "2021-06-27T05:29:25.000Z" + }, + "events": [ + { + "uuid": "6597980e-8a79-4a16-8dbd-c889866ac08d", + "start": { + "$date": "2021-06-27T04:48:36.000Z" + }, + "end": { + "$date": "2021-06-27T05:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5abe7a26-b1f4-4856-b607-48a08f279fe1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-27T04:48:56.000Z" + }, + "end": { + "$date": "2021-06-27T04:51:37.000Z" + }, + "events": [ + { + "uuid": "94866aa0-cb33-40dd-84ea-af6d29137b10", + "start": { + "$date": "2021-06-27T04:48:56.000Z" + }, + "end": { + "$date": "2021-06-27T04:51:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3230d8b5-02f3-437f-b026-534c1132e298", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-27T04:51:52.000Z" + }, + "end": { + "$date": "2021-06-27T05:51:50.000Z" + }, + "events": [ + { + "uuid": "aef66140-6e32-4ab7-bd43-3d380c818b50", + "start": { + "$date": "2021-06-27T04:51:52.000Z" + }, + "end": { + "$date": "2021-06-27T05:51:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "267a0452-fd56-472a-b7a8-3ce05212186b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-27T04:52:31.000Z" + }, + "end": { + "$date": "2021-06-27T05:53:46.000Z" + }, + "events": [ + { + "uuid": "db50a22e-3090-46ca-a48a-ee5813f4b0b1", + "start": { + "$date": "2021-06-27T04:52:31.000Z" + }, + "end": { + "$date": "2021-06-27T05:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7403b8b3-c56c-4b64-8493-ae68b61437b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-27T04:52:40.000Z" + }, + "end": { + "$date": "2021-06-27T05:53:20.000Z" + }, + "events": [ + { + "uuid": "8cca8c46-018d-4858-a931-7820edff8b82", + "start": { + "$date": "2021-06-27T04:52:40.000Z" + }, + "end": { + "$date": "2021-06-27T05:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "7f2b1129-fc38-4894-892b-8b5d8c329386", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-27T08:01:02.000Z" + }, + "end": { + "$date": "2021-06-27T08:01:48.000Z" + }, + "events": [ + { + "uuid": "92a05a47-bd66-47a2-af6d-926efa4f5248", + "start": { + "$date": "2021-06-27T08:01:02.000Z" + }, + "end": { + "$date": "2021-06-27T08:01:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "e679d376-c911-4f90-999f-983f6d5291b4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-27T06:27:12.000Z" + }, + "end": { + "$date": "2021-06-27T08:17:42.000Z" + }, + "events": [ + { + "uuid": "c383573e-8651-4156-9feb-b8bc896351ae", + "start": { + "$date": "2021-06-27T06:27:12.000Z" + }, + "end": { + "$date": "2021-06-27T08:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b13183a2-dafd-4309-b6a2-4334d33c85a9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-27T07:12:07.000Z" + }, + "end": { + "$date": "2021-06-27T10:13:48.000Z" + }, + "events": [ + { + "uuid": "33cec02d-e78e-4870-b135-b0388f334803", + "start": { + "$date": "2021-06-27T07:12:07.000Z" + }, + "end": { + "$date": "2021-06-27T10:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23267d52-f6c3-430a-a16f-742bd6ff55a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-27T07:28:39.000Z" + }, + "end": { + "$date": "2021-06-27T08:22:22.000Z" + }, + "events": [ + { + "uuid": "d6f14259-c799-4b05-b481-b004440db424", + "start": { + "$date": "2021-06-27T07:28:39.000Z" + }, + "end": { + "$date": "2021-06-27T08:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2953cbbf-22db-47ea-8c46-92428fa4778f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-27T08:23:32.000Z" + }, + "end": { + "$date": "2021-06-27T08:56:38.000Z" + }, + "events": [ + { + "uuid": "44f9c282-cb3f-4efd-b59c-02d63717099d", + "start": { + "$date": "2021-06-27T08:23:32.000Z" + }, + "end": { + "$date": "2021-06-27T08:56:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7281f7fb-5782-4bfc-bfd2-1943a40d2505", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-27T08:57:40.000Z" + }, + "end": { + "$date": "2021-06-27T09:32:53.000Z" + }, + "events": [ + { + "uuid": "832ffd57-749e-44b6-a872-82564947a796", + "start": { + "$date": "2021-06-27T08:57:40.000Z" + }, + "end": { + "$date": "2021-06-27T09:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "254c3860-c0bb-4c04-a99c-549221d63a01", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-27T10:14:02.000Z" + }, + "end": { + "$date": "2021-06-27T10:16:27.000Z" + }, + "events": [ + { + "uuid": "0018d123-311e-44d2-923c-f834a494ac17", + "start": { + "$date": "2021-06-27T10:14:02.000Z" + }, + "end": { + "$date": "2021-06-27T10:16:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "40d5f8e6-9ef3-41e9-80ad-31861ffaabcd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-27T10:16:42.000Z" + }, + "end": { + "$date": "2021-06-27T10:26:12.000Z" + }, + "events": [ + { + "uuid": "bc19c3a1-fa20-46b5-998d-94243160c71f", + "start": { + "$date": "2021-06-27T10:16:42.000Z" + }, + "end": { + "$date": "2021-06-27T10:26:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2482f8df-f09a-4467-a8b9-91fa84b6f6e8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-27T12:39:52.000Z" + }, + "end": { + "$date": "2021-06-27T13:29:21.000Z" + }, + "events": [ + { + "uuid": "23e90647-0b58-4a43-9fc1-f1f12fb9a1ed", + "start": { + "$date": "2021-06-27T12:39:52.000Z" + }, + "end": { + "$date": "2021-06-27T13:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ba8cbfb9-3777-437f-becb-88afef9f55f5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-27T13:54:37.000Z" + }, + "end": { + "$date": "2021-06-27T14:02:08.000Z" + }, + "events": [ + { + "uuid": "4f539de8-1b50-43c3-9ae5-4d01bcdf768d", + "start": { + "$date": "2021-06-27T13:54:37.000Z" + }, + "end": { + "$date": "2021-06-27T14:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6867837e-8854-4713-a62a-7e184aa1554a", + "uuid": "99d81c82-5739-4fe4-8136-25b2814e1f04", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-27T14:10:37.000Z" + }, + "end": { + "$date": "2021-06-27T14:31:53.000Z" + }, + "events": [ + { + "uuid": "067b8086-6f32-467e-b4c5-9688882faf4d", + "start": { + "$date": "2021-06-27T14:10:37.000Z" + }, + "end": { + "$date": "2021-06-27T14:22:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a6de499-4d1c-47da-a003-cc8a5ec0c154", + "start": { + "$date": "2021-06-27T14:22:37.000Z" + }, + "end": { + "$date": "2021-06-27T14:23:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d59b94c3-3857-4e53-9266-7f1d9eb9711c", + "start": { + "$date": "2021-06-27T14:23:37.000Z" + }, + "end": { + "$date": "2021-06-27T14:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9d3ff7d4-5ac6-4b2b-83c2-b350c4e9f608", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T15:14:42.000Z" + }, + "end": { + "$date": "2021-06-27T15:16:12.000Z" + }, + "events": [ + { + "uuid": "d0db2306-0e55-48cb-86dc-11b8500b294f", + "start": { + "$date": "2021-06-27T15:14:42.000Z" + }, + "end": { + "$date": "2021-06-27T15:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fa8bb6ee-8fed-4b34-9c5f-f3c6f7b5f5cf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T15:23:23.000Z" + }, + "end": { + "$date": "2021-06-27T15:53:47.000Z" + }, + "events": [ + { + "uuid": "d9d1c8eb-26f9-4ded-ad8b-894db583c3d3", + "start": { + "$date": "2021-06-27T15:23:23.000Z" + }, + "end": { + "$date": "2021-06-27T15:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b2632484-b630-4cb6-8ed1-346c8022efa3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-27T16:17:16.000Z" + }, + "end": { + "$date": "2021-06-27T17:19:44.000Z" + }, + "events": [ + { + "uuid": "099bd834-db30-4622-9ccc-e4f7162a2ac1", + "start": { + "$date": "2021-06-27T16:17:16.000Z" + }, + "end": { + "$date": "2021-06-27T17:19:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "704b9131-57dd-4501-8e18-65ee0339530d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-27T16:52:27.000Z" + }, + "end": { + "$date": "2021-06-27T16:52:32.000Z" + }, + "events": [ + { + "uuid": "ea1698bd-f764-49a1-935b-0f60afc8f3a4", + "start": { + "$date": "2021-06-27T16:52:27.000Z" + }, + "end": { + "$date": "2021-06-27T16:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "901978fc-07b4-44e6-a9fb-60c76e84a347", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-27T16:56:37.000Z" + }, + "end": { + "$date": "2021-06-27T19:58:21.000Z" + }, + "events": [ + { + "uuid": "17b9799f-11ff-49f7-bb9a-b9923b739b21", + "start": { + "$date": "2021-06-27T16:56:37.000Z" + }, + "end": { + "$date": "2021-06-27T19:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "4c1e628f-8b0e-4330-be65-b490fef08e59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-27T20:53:07.000Z" + }, + "end": { + "$date": "2021-06-27T20:53:29.000Z" + }, + "events": [ + { + "uuid": "76183e9a-2daa-4530-8bc9-41c1d2c7a56e", + "start": { + "$date": "2021-06-27T20:53:07.000Z" + }, + "end": { + "$date": "2021-06-27T20:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fef4cec1-35fe-4ef1-b5d1-9f2497e910e0", + "uuid": "9e68216a-473c-4124-b2e3-13c5d42086ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-27T20:37:36.000Z" + }, + "end": { + "$date": "2021-06-27T21:11:16.000Z" + }, + "events": [ + { + "uuid": "aa4ec71d-2dd4-4c82-91bf-b0eba59da5d2", + "start": { + "$date": "2021-06-27T20:37:36.000Z" + }, + "end": { + "$date": "2021-06-27T21:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1f141c83-d242-4fe5-9e81-34322fd5d1e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-27T20:48:38.000Z" + }, + "end": { + "$date": "2021-06-28T00:26:37.000Z" + }, + "events": [ + { + "uuid": "b8fc6b3e-7c9b-4860-ac33-e39cd89c024e", + "start": { + "$date": "2021-06-27T20:48:38.000Z" + }, + "end": { + "$date": "2021-06-28T00:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3e8eb985-88de-40d9-b802-696f665d4af4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-27T20:51:59.000Z" + }, + "end": { + "$date": "2021-06-27T22:27:56.000Z" + }, + "events": [ + { + "uuid": "c0506304-0f57-4bea-8b7e-8f90e0b7765a", + "start": { + "$date": "2021-06-27T20:51:59.000Z" + }, + "end": { + "$date": "2021-06-27T22:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3a3e26b5-4e1c-4651-b8cf-e67410925295", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-27T20:53:23.000Z" + }, + "end": { + "$date": "2021-06-27T22:25:56.000Z" + }, + "events": [ + { + "uuid": "0e91d292-97de-4632-a359-da4bbb120f69", + "start": { + "$date": "2021-06-27T20:53:23.000Z" + }, + "end": { + "$date": "2021-06-27T22:25:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "9a96c37a-b443-47e0-89ef-3690938c20b0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-27T21:02:15.000Z" + }, + "end": { + "$date": "2021-06-27T21:55:18.000Z" + }, + "events": [ + { + "uuid": "9e2de52d-5fe1-4925-8039-f48a2d0fa4ff", + "start": { + "$date": "2021-06-27T21:02:15.000Z" + }, + "end": { + "$date": "2021-06-27T21:55:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cb93d696-56ae-4555-9ccc-cd7bd598f3b1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-27T21:17:08.000Z" + }, + "end": { + "$date": "2021-06-27T21:21:37.000Z" + }, + "events": [ + { + "uuid": "c9836c07-47c4-487d-ad7c-6c81e761e021", + "start": { + "$date": "2021-06-27T21:17:08.000Z" + }, + "end": { + "$date": "2021-06-27T21:21:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "80e0d5a2-30d2-4f2f-b047-c44c308d0f7d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T21:33:57.000Z" + }, + "end": { + "$date": "2021-06-27T23:08:53.000Z" + }, + "events": [ + { + "uuid": "1375c2f4-d74a-4240-83ab-2bc63a993dd5", + "start": { + "$date": "2021-06-27T21:33:57.000Z" + }, + "end": { + "$date": "2021-06-27T23:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b8ba871b-20e2-4925-9f7b-0816fd44aec0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-27T21:34:09.000Z" + }, + "end": { + "$date": "2021-06-27T22:40:51.000Z" + }, + "events": [ + { + "uuid": "8cf1140a-6d3c-4b9c-b41e-b8f33a074e5c", + "start": { + "$date": "2021-06-27T21:34:09.000Z" + }, + "end": { + "$date": "2021-06-27T22:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "90a9bacf-1c1b-44fb-88ac-fa825e196550", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-27T22:50:23.000Z" + }, + "end": { + "$date": "2021-06-28T00:51:20.000Z" + }, + "events": [ + { + "uuid": "22b02ed8-1200-42c2-9d5f-bba3d4a1bb59", + "start": { + "$date": "2021-06-27T22:50:23.000Z" + }, + "end": { + "$date": "2021-06-28T00:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f7d4b2af-8b2e-4e09-97ec-647332623067", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-27T22:53:03.000Z" + }, + "end": { + "$date": "2021-06-27T23:32:44.000Z" + }, + "events": [ + { + "uuid": "2e29e600-c258-4db1-a353-9682000646cb", + "start": { + "$date": "2021-06-27T22:53:03.000Z" + }, + "end": { + "$date": "2021-06-27T23:32:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e357e3f2-1bfd-4b31-a13f-5a8a217a768b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-27T23:49:39.000Z" + }, + "end": { + "$date": "2021-06-28T13:25:33.000Z" + }, + "events": [ + { + "uuid": "d5a4fbde-f2b8-411f-8aa8-03c968e3f5f5", + "start": { + "$date": "2021-06-27T23:49:39.000Z" + }, + "end": { + "$date": "2021-06-28T03:14:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c62950e4-a13b-4f0f-b7c2-0d4e1284cc8f", + "start": { + "$date": "2021-06-28T03:14:39.000Z" + }, + "end": { + "$date": "2021-06-28T03:19:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59370b85-b2d1-4d8c-a2b4-c0ccb2d2919f", + "start": { + "$date": "2021-06-28T03:19:39.000Z" + }, + "end": { + "$date": "2021-06-28T03:29:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69ebc624-f5ef-4c31-a43c-93ec4b253579", + "start": { + "$date": "2021-06-28T03:29:39.000Z" + }, + "end": { + "$date": "2021-06-28T08:29:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8cb2653d-d07f-42a1-b6c3-b1b830ea73cc", + "start": { + "$date": "2021-06-28T08:29:39.000Z" + }, + "end": { + "$date": "2021-06-28T08:39:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c2f9d234-222a-474e-b23d-c1dcb53696b1", + "start": { + "$date": "2021-06-28T08:39:39.000Z" + }, + "end": { + "$date": "2021-06-28T13:25:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "272e82be-68f6-484b-9bb8-06e77ec0836d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-28T00:51:35.000Z" + }, + "end": { + "$date": "2021-06-28T01:33:45.000Z" + }, + "events": [ + { + "uuid": "29ec9a52-65d3-4a9e-bbde-1fce97f4712e", + "start": { + "$date": "2021-06-28T00:51:35.000Z" + }, + "end": { + "$date": "2021-06-28T01:33:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fd71887d-3206-4747-b9ec-db3f18d9425e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-28T01:56:36.000Z" + }, + "end": { + "$date": "2021-06-28T02:32:37.000Z" + }, + "events": [ + { + "uuid": "cf9d88ae-f361-4637-abeb-74d1cfd7c86a", + "start": { + "$date": "2021-06-28T01:56:36.000Z" + }, + "end": { + "$date": "2021-06-28T02:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84c95629-7b5b-4260-af2c-377e4b3d3a3f", + "uuid": "a996b959-2fe7-45f8-9a5b-1971acee3fbf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-28T02:14:19.000Z" + }, + "end": { + "$date": "2021-06-28T02:19:24.000Z" + }, + "events": [ + { + "uuid": "47a7c1d9-2d70-49c6-bab6-c0bba6cf514b", + "start": { + "$date": "2021-06-28T02:14:19.000Z" + }, + "end": { + "$date": "2021-06-28T02:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "063fb6ae-fe73-4d72-9328-f70215400d00", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-28T02:21:10.000Z" + }, + "end": { + "$date": "2021-06-28T02:29:45.000Z" + }, + "events": [ + { + "uuid": "99d5a23b-45c0-408a-ac26-753f7f566e7d", + "start": { + "$date": "2021-06-28T02:21:10.000Z" + }, + "end": { + "$date": "2021-06-28T02:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "38973a67-5856-40c4-9995-7b54bad7d3b7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-28T02:27:35.000Z" + }, + "end": { + "$date": "2021-06-28T05:12:13.000Z" + }, + "events": [ + { + "uuid": "380d4c85-0844-4415-b63d-fd771fecd646", + "start": { + "$date": "2021-06-28T02:27:35.000Z" + }, + "end": { + "$date": "2021-06-28T05:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "4cdfc033-42f0-40ca-a890-423a9cd66dc1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-28T02:39:06.000Z" + }, + "end": { + "$date": "2021-06-28T02:41:41.000Z" + }, + "events": [ + { + "uuid": "42bda85d-ccf9-4f74-855e-95e31b3f9dc5", + "start": { + "$date": "2021-06-28T02:39:06.000Z" + }, + "end": { + "$date": "2021-06-28T02:41:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "fbf4c624-9bdc-4c98-9f56-08a90192374a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-28T02:41:46.000Z" + }, + "end": { + "$date": "2021-06-28T03:15:56.000Z" + }, + "events": [ + { + "uuid": "41f7bdc6-a52d-486d-94bf-52e15e8c3637", + "start": { + "$date": "2021-06-28T02:41:46.000Z" + }, + "end": { + "$date": "2021-06-28T03:15:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "0621b11d-9796-4069-9837-5ce1e9e5a925", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-28T03:04:16.000Z" + }, + "end": { + "$date": "2021-06-28T04:14:32.000Z" + }, + "events": [ + { + "uuid": "f3de0a27-dc4d-4f76-bda7-bf577b666492", + "start": { + "$date": "2021-06-28T03:04:16.000Z" + }, + "end": { + "$date": "2021-06-28T04:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0af9597-899a-49b3-af3d-7a3c4038307e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-28T03:27:24.000Z" + }, + "end": { + "$date": "2021-06-28T03:41:14.000Z" + }, + "events": [ + { + "uuid": "d24e0979-6a01-4b42-9e80-4a719ee13e8a", + "start": { + "$date": "2021-06-28T03:27:24.000Z" + }, + "end": { + "$date": "2021-06-28T03:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d481099-d761-4ecd-a52a-20831c483bb3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-28T03:42:45.000Z" + }, + "end": { + "$date": "2021-06-28T03:59:55.000Z" + }, + "events": [ + { + "uuid": "1f92bc64-6972-44a8-9c83-3a44a83266b2", + "start": { + "$date": "2021-06-28T03:42:45.000Z" + }, + "end": { + "$date": "2021-06-28T03:59:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f33fb0d4-24c0-4f04-b692-8892993313bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-28T04:03:26.000Z" + }, + "end": { + "$date": "2021-06-28T04:07:57.000Z" + }, + "events": [ + { + "uuid": "20b2deb9-d90e-4f7d-8d8a-15e6e6eb00a5", + "start": { + "$date": "2021-06-28T04:03:26.000Z" + }, + "end": { + "$date": "2021-06-28T04:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa703b6a-9947-4322-895e-4b1cc2bfe7d0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-28T04:31:19.000Z" + }, + "end": { + "$date": "2021-06-28T04:57:05.000Z" + }, + "events": [ + { + "uuid": "82605472-798f-460e-a725-ba8eaa644a30", + "start": { + "$date": "2021-06-28T04:31:19.000Z" + }, + "end": { + "$date": "2021-06-28T04:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b5313be-bc02-40b1-a218-d31332f75e01", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-28T05:10:46.000Z" + }, + "end": { + "$date": "2021-06-28T05:45:37.000Z" + }, + "events": [ + { + "uuid": "852303eb-dbf3-4698-a1bb-79857737c23c", + "start": { + "$date": "2021-06-28T05:10:46.000Z" + }, + "end": { + "$date": "2021-06-28T05:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ffec5c6b-3ad5-41a4-a3a4-992243fa0abc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T04:58:38.000Z" + }, + "end": { + "$date": "2021-06-28T07:28:52.000Z" + }, + "events": [ + { + "uuid": "cf740191-b04c-4f1a-9653-db4e003711de", + "start": { + "$date": "2021-06-28T04:58:38.000Z" + }, + "end": { + "$date": "2021-06-28T07:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4498cfb8-4e68-4789-b3e3-a755c38bd29f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-28T05:15:16.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:53.000Z" + }, + "events": [ + { + "uuid": "960574b0-177c-493b-8608-9f8035a79f00", + "start": { + "$date": "2021-06-28T05:15:16.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7a8e8691-eb24-4d01-b382-b4cbfb58a41a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-28T05:18:22.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:14.000Z" + }, + "events": [ + { + "uuid": "0e844c8a-a308-4bf6-b2ae-3e3d18fbe69f", + "start": { + "$date": "2021-06-28T05:18:22.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b251cc0b-70b2-4dc4-bf12-125bc2b9f9ec", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-28T05:20:06.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:57.000Z" + }, + "events": [ + { + "uuid": "1452a885-c169-4106-a7a6-e3b5235b5f2a", + "start": { + "$date": "2021-06-28T05:20:06.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9636eb37-fd2a-4e20-88b8-45b050448c4e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-28T05:42:21.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:56.000Z" + }, + "events": [ + { + "uuid": "ad79c9d3-586c-417d-b956-7a9856705628", + "start": { + "$date": "2021-06-28T05:42:21.000Z" + }, + "end": { + "$date": "2021-06-28T05:53:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29aba4f8-6836-400a-acba-c7cafc2c94f8", + "start": { + "$date": "2021-06-28T05:53:21.000Z" + }, + "end": { + "$date": "2021-06-28T05:55:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18f2d998-ffc1-43b4-aeed-09880127f4a3", + "start": { + "$date": "2021-06-28T05:55:21.000Z" + }, + "end": { + "$date": "2021-06-28T06:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "cf97fc7c-317d-4618-a1df-5083058022ef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T07:33:08.000Z" + }, + "end": { + "$date": "2021-06-28T08:23:00.000Z" + }, + "events": [ + { + "uuid": "424fee4f-2ecd-42ca-83db-ba011ebc0e78", + "start": { + "$date": "2021-06-28T07:33:08.000Z" + }, + "end": { + "$date": "2021-06-28T08:02:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cea391c6-408a-487e-a93c-1aab685bff64", + "start": { + "$date": "2021-06-28T08:02:08.000Z" + }, + "end": { + "$date": "2021-06-28T08:07:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "19c25f1e-14a0-4696-99e9-ac10d2ff9004", + "start": { + "$date": "2021-06-28T08:07:08.000Z" + }, + "end": { + "$date": "2021-06-28T08:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "ea6e8ee3-60ae-492b-a9d2-8c1fdf87b4a3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T08:45:14.000Z" + }, + "end": { + "$date": "2021-06-28T11:20:37.000Z" + }, + "events": [ + { + "uuid": "6ce86cd4-04e8-4bb1-825e-2e5b246808da", + "start": { + "$date": "2021-06-28T08:45:14.000Z" + }, + "end": { + "$date": "2021-06-28T11:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1e4f5b88-beff-47c0-8b1a-b72e67266907", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T11:21:15.000Z" + }, + "end": { + "$date": "2021-06-28T11:28:19.000Z" + }, + "events": [ + { + "uuid": "deea8e63-7b79-404e-a4f6-8697033448a4", + "start": { + "$date": "2021-06-28T11:21:15.000Z" + }, + "end": { + "$date": "2021-06-28T11:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b19ae3fc-8d61-4db2-9026-727809248c8c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T11:58:13.000Z" + }, + "end": { + "$date": "2021-06-28T12:52:44.000Z" + }, + "events": [ + { + "uuid": "63e92ba1-0328-4743-b3d4-6d6685516648", + "start": { + "$date": "2021-06-28T11:58:13.000Z" + }, + "end": { + "$date": "2021-06-28T12:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "3617f2c8-357d-4bd0-acb8-4218ca15dae8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-28T12:53:58.000Z" + }, + "end": { + "$date": "2021-06-28T13:58:10.000Z" + }, + "events": [ + { + "uuid": "9b04193d-2e3b-4a1d-8a4d-4f9ae7bbcccd", + "start": { + "$date": "2021-06-28T12:53:58.000Z" + }, + "end": { + "$date": "2021-06-28T13:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8f67c4a4-c81c-4ef5-9934-a1229e21805b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T15:31:45.000Z" + }, + "end": { + "$date": "2021-06-28T15:34:55.000Z" + }, + "events": [ + { + "uuid": "be6c4916-d0b2-4690-93c7-48ac58e018e3", + "start": { + "$date": "2021-06-28T15:31:45.000Z" + }, + "end": { + "$date": "2021-06-28T15:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a1e8f522-d232-44be-a5e5-6779f21399d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T15:36:30.000Z" + }, + "end": { + "$date": "2021-06-28T15:38:35.000Z" + }, + "events": [ + { + "uuid": "179f7af5-1e01-4484-82c9-1e4277efc89d", + "start": { + "$date": "2021-06-28T15:36:30.000Z" + }, + "end": { + "$date": "2021-06-28T15:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "341db9d3-6b0c-4b9b-9a83-67767d2f5862", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T16:08:43.000Z" + }, + "end": { + "$date": "2021-06-28T16:18:59.000Z" + }, + "events": [ + { + "uuid": "188c7d84-2db2-4275-b603-c333626333c7", + "start": { + "$date": "2021-06-28T16:08:43.000Z" + }, + "end": { + "$date": "2021-06-28T16:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0a0fdd4a-53b1-4927-aa20-099704536080", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T16:19:19.000Z" + }, + "end": { + "$date": "2021-06-28T16:21:44.000Z" + }, + "events": [ + { + "uuid": "b8beff64-8208-49b4-8aaa-813167dd3fc7", + "start": { + "$date": "2021-06-28T16:19:19.000Z" + }, + "end": { + "$date": "2021-06-28T16:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "164107a9-c37a-4792-baa1-7b3a800798ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T16:26:55.000Z" + }, + "end": { + "$date": "2021-06-28T16:28:14.000Z" + }, + "events": [ + { + "uuid": "085ab3a3-f159-43ee-aa4e-b21bbc87bf8c", + "start": { + "$date": "2021-06-28T16:26:55.000Z" + }, + "end": { + "$date": "2021-06-28T16:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "066737f1-8c8d-402b-aa35-517b171b3664", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T17:30:32.000Z" + }, + "end": { + "$date": "2021-06-28T17:47:49.000Z" + }, + "events": [ + { + "uuid": "d1d52c3c-a996-46c7-a4d4-efb5b42d6247", + "start": { + "$date": "2021-06-28T17:30:32.000Z" + }, + "end": { + "$date": "2021-06-28T17:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "678a5357-cea0-45a2-9f57-aa58705f0070", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T17:48:45.000Z" + }, + "end": { + "$date": "2021-06-28T17:55:20.000Z" + }, + "events": [ + { + "uuid": "1a0621e4-0361-43b3-bd04-f2b3f8211b67", + "start": { + "$date": "2021-06-28T17:48:45.000Z" + }, + "end": { + "$date": "2021-06-28T17:55:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "90689ecd-97d0-4a22-83d7-8f20e25a6083", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T17:55:36.000Z" + }, + "end": { + "$date": "2021-06-28T18:09:51.000Z" + }, + "events": [ + { + "uuid": "712c0086-0a9a-47d2-ac6c-3f802acb9a5b", + "start": { + "$date": "2021-06-28T17:55:36.000Z" + }, + "end": { + "$date": "2021-06-28T18:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "59689b83-1927-41c2-8f8e-930ea279f741", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T18:10:07.000Z" + }, + "end": { + "$date": "2021-06-28T18:11:41.000Z" + }, + "events": [ + { + "uuid": "b7810833-4668-495c-afbd-7c2b2576ec16", + "start": { + "$date": "2021-06-28T18:10:07.000Z" + }, + "end": { + "$date": "2021-06-28T18:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "89363e10-aca0-4232-9b2c-f3a372838d25", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T18:11:52.000Z" + }, + "end": { + "$date": "2021-06-28T18:13:52.000Z" + }, + "events": [ + { + "uuid": "a7d453ea-a1a1-4e06-ad47-32e080b64987", + "start": { + "$date": "2021-06-28T18:11:52.000Z" + }, + "end": { + "$date": "2021-06-28T18:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b6bb53fd-edcf-4819-bf74-48f3ac6913b2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T18:15:16.000Z" + }, + "end": { + "$date": "2021-06-28T19:07:35.000Z" + }, + "events": [ + { + "uuid": "9117ecf8-b570-44b6-a524-4922b7f7a4c2", + "start": { + "$date": "2021-06-28T18:15:16.000Z" + }, + "end": { + "$date": "2021-06-28T19:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7d5ef160-3e02-4965-b8b1-c2cba5060f54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-28T18:23:25.000Z" + }, + "end": { + "$date": "2021-06-28T18:41:11.000Z" + }, + "events": [ + { + "uuid": "080fbc38-e4e3-42ad-9207-4653853983e0", + "start": { + "$date": "2021-06-28T18:23:25.000Z" + }, + "end": { + "$date": "2021-06-28T18:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "18c58c11-49b3-4abb-a3b3-e77f4dd64817", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-28T18:56:34.000Z" + }, + "end": { + "$date": "2021-06-28T20:43:15.000Z" + }, + "events": [ + { + "uuid": "161bf8b2-64b9-493c-80d0-cb9eebf66715", + "start": { + "$date": "2021-06-28T18:56:34.000Z" + }, + "end": { + "$date": "2021-06-28T20:38:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85a84401-76cc-4265-8b02-398fde23db45", + "start": { + "$date": "2021-06-28T20:38:34.000Z" + }, + "end": { + "$date": "2021-06-28T20:40:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a32ba5ab-9ae2-4263-b903-f4ab21f2d932", + "start": { + "$date": "2021-06-28T20:40:34.000Z" + }, + "end": { + "$date": "2021-06-28T20:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a3bce861-0352-4bcc-a220-d6d40dbd92e9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T19:35:45.000Z" + }, + "end": { + "$date": "2021-06-28T19:43:45.000Z" + }, + "events": [ + { + "uuid": "355f75d0-2f16-4959-a416-1591e9f6aefc", + "start": { + "$date": "2021-06-28T19:35:45.000Z" + }, + "end": { + "$date": "2021-06-28T19:43:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "00805b13-8541-4a8a-93cb-08bd41171d7c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-28T20:12:39.000Z" + }, + "end": { + "$date": "2021-06-28T20:24:03.000Z" + }, + "events": [ + { + "uuid": "2ec3089f-7694-43d6-a1d2-9bf6ec00477c", + "start": { + "$date": "2021-06-28T20:12:39.000Z" + }, + "end": { + "$date": "2021-06-28T20:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "db1d471b-e010-40a3-94bc-2606da7982e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-28T20:44:00.000Z" + }, + "end": { + "$date": "2021-06-28T20:59:13.000Z" + }, + "events": [ + { + "uuid": "f1d90ed7-e4d4-45c4-bff8-d60b3d452c55", + "start": { + "$date": "2021-06-28T20:44:00.000Z" + }, + "end": { + "$date": "2021-06-28T20:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "7e4acb2e-4d8b-4fbc-b57a-ab4b97b7f242", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-28T21:00:08.000Z" + }, + "end": { + "$date": "2021-06-28T21:35:20.000Z" + }, + "events": [ + { + "uuid": "649e8387-c12e-4852-845a-f02069c9140b", + "start": { + "$date": "2021-06-28T21:00:08.000Z" + }, + "end": { + "$date": "2021-06-28T21:35:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb514df2-5696-426a-842a-4924e28b802b", + "uuid": "20beb9c0-99ff-4280-a2ad-4344ccb18413", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-28T21:11:51.000Z" + }, + "end": { + "$date": "2021-06-28T21:19:50.000Z" + }, + "events": [ + { + "uuid": "d9f86a67-a26f-40f5-8316-c096df96e94f", + "start": { + "$date": "2021-06-28T21:11:51.000Z" + }, + "end": { + "$date": "2021-06-28T21:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "6586d103-bb89-44d8-bc9f-d4f98f080bfc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-28T22:19:29.000Z" + }, + "end": { + "$date": "2021-06-28T23:07:06.000Z" + }, + "events": [ + { + "uuid": "518707cf-395d-409e-8f59-f94b06a3721c", + "start": { + "$date": "2021-06-28T22:19:29.000Z" + }, + "end": { + "$date": "2021-06-28T23:07:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8697effb-22a5-4c33-8f12-d89e6eae4df1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-29T00:05:54.000Z" + }, + "end": { + "$date": "2021-06-29T01:38:45.000Z" + }, + "events": [ + { + "uuid": "d9d88d48-989f-4a77-bbd3-e20c71fc6c8c", + "start": { + "$date": "2021-06-29T00:05:54.000Z" + }, + "end": { + "$date": "2021-06-29T01:15:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "112bfbd2-f2b1-4c20-8a1a-5e8784b7f95f", + "start": { + "$date": "2021-06-29T01:15:54.000Z" + }, + "end": { + "$date": "2021-06-29T01:16:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7860697-4bd6-4af5-b71a-6c86dc4fb682", + "start": { + "$date": "2021-06-29T01:16:54.000Z" + }, + "end": { + "$date": "2021-06-29T01:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f789071c-a829-43a6-aedd-f67f1be02104", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-29T00:16:58.000Z" + }, + "end": { + "$date": "2021-06-29T00:26:03.000Z" + }, + "events": [ + { + "uuid": "06e45314-768f-450d-94d2-4fd04a4cad32", + "start": { + "$date": "2021-06-29T00:16:58.000Z" + }, + "end": { + "$date": "2021-06-29T00:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d8eb5934-7c2d-4d7d-b7e1-4bc78e4602f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T00:48:05.000Z" + }, + "end": { + "$date": "2021-06-29T00:51:04.000Z" + }, + "events": [ + { + "uuid": "a0828c79-78bf-4d59-93bf-1a4ffcde02b5", + "start": { + "$date": "2021-06-29T00:48:05.000Z" + }, + "end": { + "$date": "2021-06-29T00:51:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cd73bfe7-6bf8-4503-8d94-88096af7913f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-29T00:53:13.000Z" + }, + "end": { + "$date": "2021-06-29T01:17:37.000Z" + }, + "events": [ + { + "uuid": "ad24ce20-7c2d-4547-bc62-d32ab9651ec9", + "start": { + "$date": "2021-06-29T00:53:13.000Z" + }, + "end": { + "$date": "2021-06-29T01:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "3667d40b-e2b6-43df-809d-fcf16301b124", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T01:03:10.000Z" + }, + "end": { + "$date": "2021-06-29T01:06:35.000Z" + }, + "events": [ + { + "uuid": "21c9aa00-a14a-4a3b-a3f6-31d85517a53a", + "start": { + "$date": "2021-06-29T01:03:10.000Z" + }, + "end": { + "$date": "2021-06-29T01:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fdc483dd-ce48-4bba-af04-860e6f68702d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-29T01:58:15.000Z" + }, + "end": { + "$date": "2021-06-29T03:27:08.000Z" + }, + "events": [ + { + "uuid": "dc3b63d1-e972-4d6b-8192-3fc5cca733d2", + "start": { + "$date": "2021-06-29T01:58:15.000Z" + }, + "end": { + "$date": "2021-06-29T03:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fb11f03b-fb6b-4b5d-b794-d91aefcf1eab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T02:25:10.000Z" + }, + "end": { + "$date": "2021-06-29T04:08:34.000Z" + }, + "events": [ + { + "uuid": "623566e4-44f1-4797-a4f8-febb915cad73", + "start": { + "$date": "2021-06-29T02:25:10.000Z" + }, + "end": { + "$date": "2021-06-29T03:02:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ee4f669-760e-44e3-9536-5cf8e901604c", + "start": { + "$date": "2021-06-29T03:02:10.000Z" + }, + "end": { + "$date": "2021-06-29T03:07:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6a7515c4-5f39-46f0-9e43-c5ad916e473c", + "start": { + "$date": "2021-06-29T03:07:10.000Z" + }, + "end": { + "$date": "2021-06-29T03:54:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4f7e71f3-18ec-4eb8-8bd3-97ba67b66af0", + "start": { + "$date": "2021-06-29T03:54:10.000Z" + }, + "end": { + "$date": "2021-06-29T03:55:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b779510a-deba-4c9b-abb1-9b301a1902cb", + "start": { + "$date": "2021-06-29T03:55:10.000Z" + }, + "end": { + "$date": "2021-06-29T04:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94330410-830c-48da-982c-802f2c682400", + "uuid": "f441c535-ec91-4523-8fef-04ac6b138a10", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-29T03:32:17.000Z" + }, + "end": { + "$date": "2021-06-29T04:55:13.000Z" + }, + "events": [ + { + "uuid": "699345a1-6e15-4502-b51f-144cac017002", + "start": { + "$date": "2021-06-29T03:32:17.000Z" + }, + "end": { + "$date": "2021-06-29T04:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94330410-830c-48da-982c-802f2c682400", + "uuid": "4edeaf54-2b95-43f7-8c7f-c8d40147e35a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-29T03:36:08.000Z" + }, + "end": { + "$date": "2021-06-29T04:36:18.000Z" + }, + "events": [ + { + "uuid": "f7bb7b61-7e9d-4891-abc2-47966855b10e", + "start": { + "$date": "2021-06-29T03:36:08.000Z" + }, + "end": { + "$date": "2021-06-29T04:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "8c9d6019-935e-405c-a1cd-e4e98e2974c7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-06-29T03:48:11.000Z" + }, + "end": { + "$date": "2021-06-29T06:44:28.000Z" + }, + "events": [ + { + "uuid": "1e1ae85f-dba0-43b0-b3fb-05568d70c808", + "start": { + "$date": "2021-06-29T03:48:11.000Z" + }, + "end": { + "$date": "2021-06-29T06:44:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "7a42785a-caac-4df0-b495-06424ce463a3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T04:12:14.000Z" + }, + "end": { + "$date": "2021-06-29T06:01:55.000Z" + }, + "events": [ + { + "uuid": "a90306cf-105f-4c6c-8ba6-3a9acb67b1c6", + "start": { + "$date": "2021-06-29T04:12:14.000Z" + }, + "end": { + "$date": "2021-06-29T06:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54893b93-1a5b-4a04-96e1-3f1e796be001", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-29T04:26:50.000Z" + }, + "end": { + "$date": "2021-06-29T04:38:45.000Z" + }, + "events": [ + { + "uuid": "7a4d5d9c-2160-4f34-b4d5-7a2338ce1a1a", + "start": { + "$date": "2021-06-29T04:26:50.000Z" + }, + "end": { + "$date": "2021-06-29T04:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d47f478d-f792-4d4e-900b-45ece79ecb40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-29T04:30:43.000Z" + }, + "end": { + "$date": "2021-06-29T04:32:48.000Z" + }, + "events": [ + { + "uuid": "c1cb5fa3-dbf3-4a18-947c-6fc29ef7205b", + "start": { + "$date": "2021-06-29T04:30:43.000Z" + }, + "end": { + "$date": "2021-06-29T04:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "bdd4f072-bd2e-4d87-b4b4-4d4a0c82ffb9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-29T04:32:14.000Z" + }, + "end": { + "$date": "2021-06-29T06:31:30.000Z" + }, + "events": [ + { + "uuid": "26a7dd2d-d869-49a1-8cfa-acedf004202e", + "start": { + "$date": "2021-06-29T04:32:14.000Z" + }, + "end": { + "$date": "2021-06-29T06:31:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "821a06ac-7b87-41ae-9789-eea3e53af678", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-29T05:00:49.000Z" + }, + "end": { + "$date": "2021-06-29T06:31:31.000Z" + }, + "events": [ + { + "uuid": "52d9b9ce-2378-4a5b-a7c7-b8bc13f81e0d", + "start": { + "$date": "2021-06-29T05:00:49.000Z" + }, + "end": { + "$date": "2021-06-29T06:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3aba3aa-134a-4c36-ae27-8c2cbd526d35", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-29T04:44:06.000Z" + }, + "end": { + "$date": "2021-06-29T05:10:11.000Z" + }, + "events": [ + { + "uuid": "33e75719-256a-48f3-a50a-32d63aefef01", + "start": { + "$date": "2021-06-29T04:44:06.000Z" + }, + "end": { + "$date": "2021-06-29T05:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1b71ec61-68c8-40f0-b605-0e59a2ee11ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-29T04:49:01.000Z" + }, + "end": { + "$date": "2021-06-29T04:52:11.000Z" + }, + "events": [ + { + "uuid": "10f4b018-1bd0-46d1-8ba4-2ffa81cdf788", + "start": { + "$date": "2021-06-29T04:49:01.000Z" + }, + "end": { + "$date": "2021-06-29T04:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "165a5003-f62e-4197-8099-8ff392758168", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-29T05:02:28.000Z" + }, + "end": { + "$date": "2021-06-29T05:37:26.000Z" + }, + "events": [ + { + "uuid": "46baab0c-23e9-4fa9-bf82-68a5f84b89c6", + "start": { + "$date": "2021-06-29T05:02:28.000Z" + }, + "end": { + "$date": "2021-06-29T05:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e015de50-67c3-454d-87ee-5fafd1529543", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-29T05:15:16.000Z" + }, + "end": { + "$date": "2021-06-29T05:37:24.000Z" + }, + "events": [ + { + "uuid": "404362e2-ef36-4d0c-8fe5-9c1ba5df7075", + "start": { + "$date": "2021-06-29T05:15:16.000Z" + }, + "end": { + "$date": "2021-06-29T05:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b12cc44c-3150-437e-a19f-b0bf5dc3daed", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-29T05:42:17.000Z" + }, + "end": { + "$date": "2021-06-29T06:16:07.000Z" + }, + "events": [ + { + "uuid": "c3a7572c-e3d0-4ece-8dda-57933b33572f", + "start": { + "$date": "2021-06-29T05:42:17.000Z" + }, + "end": { + "$date": "2021-06-29T06:16:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "7f1fbd8c-a86f-43d5-ae81-2c8b916ca321", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-29T06:55:00.000Z" + }, + "end": { + "$date": "2021-06-29T08:14:21.000Z" + }, + "events": [ + { + "uuid": "59d85893-7fd0-46f9-835c-e9c019f623c0", + "start": { + "$date": "2021-06-29T06:55:00.000Z" + }, + "end": { + "$date": "2021-06-29T08:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c8e99d73-fc8b-4582-b3bc-a6c4898ca983", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-29T16:24:43.000Z" + }, + "end": { + "$date": "2021-06-29T16:34:43.000Z" + }, + "events": [ + { + "uuid": "0110946a-cdf9-422b-b446-481adad1ad24", + "start": { + "$date": "2021-06-29T16:24:43.000Z" + }, + "end": { + "$date": "2021-06-29T16:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "7acc2e0e-571b-4121-bd58-549c419b7666", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-29T18:45:41.000Z" + }, + "end": { + "$date": "2021-06-29T18:46:05.000Z" + }, + "events": [ + { + "uuid": "b0f6191f-cf1b-4e56-9098-a9321ed0f57a", + "start": { + "$date": "2021-06-29T18:45:41.000Z" + }, + "end": { + "$date": "2021-06-29T18:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c272891e-e336-4175-a3ea-d909201db439", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-29T16:55:40.000Z" + }, + "end": { + "$date": "2021-06-29T17:41:25.000Z" + }, + "events": [ + { + "uuid": "5f6b3d7f-1866-41fb-ac87-b63393e59ce1", + "start": { + "$date": "2021-06-29T16:55:40.000Z" + }, + "end": { + "$date": "2021-06-29T17:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "515390eb-9115-4439-a1ab-62eed39850cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-29T17:07:12.000Z" + }, + "end": { + "$date": "2021-06-29T19:12:35.000Z" + }, + "events": [ + { + "uuid": "60ae0955-2fd7-4b34-8d07-7ed40ecb94ea", + "start": { + "$date": "2021-06-29T17:07:12.000Z" + }, + "end": { + "$date": "2021-06-29T19:12:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ebbbff35-cdbb-4be7-844b-24390183238f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-29T18:13:17.000Z" + }, + "end": { + "$date": "2021-06-29T19:16:11.000Z" + }, + "events": [ + { + "uuid": "db9d527e-d593-4050-87c6-8f3425bf5d3c", + "start": { + "$date": "2021-06-29T18:13:17.000Z" + }, + "end": { + "$date": "2021-06-29T19:16:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cbdd20bf-49fa-4a5e-b1e0-72c69ae31434", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-29T18:20:49.000Z" + }, + "end": { + "$date": "2021-06-29T19:03:05.000Z" + }, + "events": [ + { + "uuid": "0154a8b7-aaeb-4e7b-99cf-d31fbe0ec3cc", + "start": { + "$date": "2021-06-29T18:20:49.000Z" + }, + "end": { + "$date": "2021-06-29T19:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "44f5a996-973f-433e-8eb7-6f364242cae4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-29T19:45:52.000Z" + }, + "end": { + "$date": "2021-06-29T20:36:15.000Z" + }, + "events": [ + { + "uuid": "b5bf5f53-8328-4591-95b3-81ed82776e6b", + "start": { + "$date": "2021-06-29T19:45:52.000Z" + }, + "end": { + "$date": "2021-06-29T20:36:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8a0822b0-a4f4-4e57-b6bf-efdda5c8530c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-29T19:53:15.000Z" + }, + "end": { + "$date": "2021-06-29T19:56:15.000Z" + }, + "events": [ + { + "uuid": "4748aba5-a5df-4eb4-aa9b-2a946c696376", + "start": { + "$date": "2021-06-29T19:53:15.000Z" + }, + "end": { + "$date": "2021-06-29T19:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2af56a70-0d59-456b-97a0-617011ae25e2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-06-29T19:56:46.000Z" + }, + "end": { + "$date": "2021-06-29T20:24:15.000Z" + }, + "events": [ + { + "uuid": "643bff93-21df-4e17-87e2-333bd02046e3", + "start": { + "$date": "2021-06-29T19:56:46.000Z" + }, + "end": { + "$date": "2021-06-29T20:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24e48245-d31b-4bff-8099-71fbc4c71ab2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-29T20:00:12.000Z" + }, + "end": { + "$date": "2021-06-29T20:37:18.000Z" + }, + "events": [ + { + "uuid": "1bf6b997-298c-4f29-8773-cc1b9b0bab14", + "start": { + "$date": "2021-06-29T20:00:12.000Z" + }, + "end": { + "$date": "2021-06-29T20:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "67db10e7-bd48-41d0-b986-a0d15784ecf0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-29T20:01:09.000Z" + }, + "end": { + "$date": "2021-06-29T20:03:38.000Z" + }, + "events": [ + { + "uuid": "733333b6-c76a-457e-a4b4-63c8cc1ff2a8", + "start": { + "$date": "2021-06-29T20:01:09.000Z" + }, + "end": { + "$date": "2021-06-29T20:03:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae69f2df-e937-41b5-bf87-66be2e5293c7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-29T20:03:59.000Z" + }, + "end": { + "$date": "2021-06-29T20:39:00.000Z" + }, + "events": [ + { + "uuid": "5c24d153-c7fb-4c84-b1db-e6be8508f5ea", + "start": { + "$date": "2021-06-29T20:03:59.000Z" + }, + "end": { + "$date": "2021-06-29T20:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9c638286-a6cf-4542-8783-617ce37f6a9a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T20:37:10.000Z" + }, + "end": { + "$date": "2021-06-29T20:48:30.000Z" + }, + "events": [ + { + "uuid": "aaf56ae8-e787-4d89-a0c3-59db7e53bfeb", + "start": { + "$date": "2021-06-29T20:37:10.000Z" + }, + "end": { + "$date": "2021-06-29T20:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e8c46e02-03b3-4c64-a8c1-bcb730bcbafa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-29T20:41:29.000Z" + }, + "end": { + "$date": "2021-06-29T20:51:09.000Z" + }, + "events": [ + { + "uuid": "f3bdad85-42a0-419b-96d2-9380f7eca7de", + "start": { + "$date": "2021-06-29T20:41:29.000Z" + }, + "end": { + "$date": "2021-06-29T20:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "3f923013-d4cb-4a6c-b45f-a74727bfcb01", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T20:54:13.000Z" + }, + "end": { + "$date": "2021-06-29T23:40:13.000Z" + }, + "events": [ + { + "uuid": "7498a358-2c64-4148-b109-7c9eb7462abf", + "start": { + "$date": "2021-06-29T20:54:13.000Z" + }, + "end": { + "$date": "2021-06-29T23:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fdde2584-e78d-4c0c-be47-e3a16ea9a653", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-29T22:31:41.000Z" + }, + "end": { + "$date": "2021-06-29T22:33:42.000Z" + }, + "events": [ + { + "uuid": "7fb22c66-5c0b-4ad4-b848-4587dd42ed2f", + "start": { + "$date": "2021-06-29T22:31:41.000Z" + }, + "end": { + "$date": "2021-06-29T22:33:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "4d68c2d5-afdb-43b4-90ec-0b9a20c651ab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-29T22:54:59.000Z" + }, + "end": { + "$date": "2021-06-30T01:47:46.000Z" + }, + "events": [ + { + "uuid": "56f1a3bb-6d79-45dd-8742-7e3241584b58", + "start": { + "$date": "2021-06-29T22:54:59.000Z" + }, + "end": { + "$date": "2021-06-30T01:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "8ce01159-12ec-411c-b222-87186d1e8416", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-29T22:34:57.000Z" + }, + "end": { + "$date": "2021-06-29T22:53:27.000Z" + }, + "events": [ + { + "uuid": "d35bc660-a605-4d93-aee3-731a80f85b2c", + "start": { + "$date": "2021-06-29T22:34:57.000Z" + }, + "end": { + "$date": "2021-06-29T22:53:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "96074d34-73df-441c-bdba-2d9d936c701c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-06-29T22:42:57.000Z" + }, + "end": { + "$date": "2021-06-30T01:24:54.000Z" + }, + "events": [ + { + "uuid": "82523091-9088-4277-959b-680be1a2eef4", + "start": { + "$date": "2021-06-29T22:42:57.000Z" + }, + "end": { + "$date": "2021-06-30T01:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "077042e3-8540-40ad-80ab-5e87a6310577", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-29T23:41:05.000Z" + }, + "end": { + "$date": "2021-06-29T23:42:21.000Z" + }, + "events": [ + { + "uuid": "4f3eb5b4-a331-4a08-ab74-d51a2d2ab1d5", + "start": { + "$date": "2021-06-29T23:41:05.000Z" + }, + "end": { + "$date": "2021-06-29T23:42:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5f1dc05e-c56e-4d7e-b119-b418f28559c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T00:08:43.000Z" + }, + "end": { + "$date": "2021-06-30T00:24:44.000Z" + }, + "events": [ + { + "uuid": "0f7d72cf-c66a-43ea-a50c-a8a45ff8ad85", + "start": { + "$date": "2021-06-30T00:08:43.000Z" + }, + "end": { + "$date": "2021-06-30T00:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c0e0992b-6fc2-4da4-a636-6ce0c341d64f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T00:37:01.000Z" + }, + "end": { + "$date": "2021-06-30T01:17:12.000Z" + }, + "events": [ + { + "uuid": "e758354f-2bd3-4dfb-a6cd-393f1dff59c7", + "start": { + "$date": "2021-06-30T00:37:01.000Z" + }, + "end": { + "$date": "2021-06-30T01:17:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "372727c2-1f30-4426-b81e-c7a5ddee6334", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-30T01:49:59.000Z" + }, + "end": { + "$date": "2021-06-30T03:18:51.000Z" + }, + "events": [ + { + "uuid": "dce14845-ac14-4e4d-8ce7-0237218fc8cb", + "start": { + "$date": "2021-06-30T01:49:59.000Z" + }, + "end": { + "$date": "2021-06-30T03:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "bb579e05-a80b-4139-bc5e-38139f1a91af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-06-30T02:03:01.000Z" + }, + "end": { + "$date": "2021-06-30T03:11:55.000Z" + }, + "events": [ + { + "uuid": "0bb4b8ef-c681-45f8-9283-8cc395004009", + "start": { + "$date": "2021-06-30T02:03:01.000Z" + }, + "end": { + "$date": "2021-06-30T03:11:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "fdc3e929-ba61-401f-91ca-3e4602a585d1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-30T02:02:37.000Z" + }, + "end": { + "$date": "2021-06-30T03:58:52.000Z" + }, + "events": [ + { + "uuid": "075b3a17-b502-4d53-a283-8f8eab5b66b7", + "start": { + "$date": "2021-06-30T02:02:37.000Z" + }, + "end": { + "$date": "2021-06-30T02:15:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e41c3522-b791-45a2-803d-3305e18b880c", + "start": { + "$date": "2021-06-30T02:15:37.000Z" + }, + "end": { + "$date": "2021-06-30T03:00:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04d7f89c-c3b4-4939-8410-610ea45c3f35", + "start": { + "$date": "2021-06-30T03:00:37.000Z" + }, + "end": { + "$date": "2021-06-30T03:07:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3dd0c10c-0114-4709-bed7-860d3e15c8dc", + "start": { + "$date": "2021-06-30T03:07:37.000Z" + }, + "end": { + "$date": "2021-06-30T03:28:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73f132b5-7f5e-42cc-bd8e-e721b253e4c7", + "start": { + "$date": "2021-06-30T03:28:37.000Z" + }, + "end": { + "$date": "2021-06-30T03:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "39e62d71-6b7e-4107-9d0e-387c6abd383a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-06-30T02:11:58.000Z" + }, + "end": { + "$date": "2021-06-30T05:40:17.000Z" + }, + "events": [ + { + "uuid": "d7d55895-a63e-40f0-9df9-bab7ab301e43", + "start": { + "$date": "2021-06-30T02:11:58.000Z" + }, + "end": { + "$date": "2021-06-30T05:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "bcc780c3-0f12-44aa-b65f-6465cdd20a39", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-30T02:13:00.000Z" + }, + "end": { + "$date": "2021-06-30T05:40:13.000Z" + }, + "events": [ + { + "uuid": "1f59ebdb-d0ce-4351-8a95-4428a44a97b4", + "start": { + "$date": "2021-06-30T02:13:00.000Z" + }, + "end": { + "$date": "2021-06-30T05:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bebc0e3b-8dda-4845-b977-1300e5d13145", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-30T02:25:26.000Z" + }, + "end": { + "$date": "2021-06-30T02:47:07.000Z" + }, + "events": [ + { + "uuid": "f7a395b4-14e7-4cdb-b540-5c9f5295d080", + "start": { + "$date": "2021-06-30T02:25:26.000Z" + }, + "end": { + "$date": "2021-06-30T02:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "666875ec-60ce-45dd-aec6-269031dbfcf2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-30T02:54:43.000Z" + }, + "end": { + "$date": "2021-06-30T03:41:34.000Z" + }, + "events": [ + { + "uuid": "76e1eef0-b2b1-4cb5-a86c-5407aae5762e", + "start": { + "$date": "2021-06-30T02:54:43.000Z" + }, + "end": { + "$date": "2021-06-30T03:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "2f2f4cc1-fb81-4558-bc43-b447bd7804b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T02:59:52.000Z" + }, + "end": { + "$date": "2021-06-30T06:09:04.000Z" + }, + "events": [ + { + "uuid": "715e40ba-b398-4f96-bbfc-b561b274e487", + "start": { + "$date": "2021-06-30T02:59:52.000Z" + }, + "end": { + "$date": "2021-06-30T06:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "375280f5-1ab3-4693-a1a0-09f0ae4e87ce", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-30T03:55:41.000Z" + }, + "end": { + "$date": "2021-06-30T04:15:55.000Z" + }, + "events": [ + { + "uuid": "0d7c87af-7a2c-4916-96f4-614c972b9fd2", + "start": { + "$date": "2021-06-30T03:55:41.000Z" + }, + "end": { + "$date": "2021-06-30T04:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "3c5f8b9f-3d37-4fe0-bd10-154564d54cd0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-06-30T04:00:47.000Z" + }, + "end": { + "$date": "2021-06-30T05:54:09.000Z" + }, + "events": [ + { + "uuid": "3099a2ec-7dd5-4c07-a12d-a73a22c87f65", + "start": { + "$date": "2021-06-30T04:00:47.000Z" + }, + "end": { + "$date": "2021-06-30T05:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "560ed1b3-28b9-43ee-8c18-701dde9e8ada", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-30T05:02:00.000Z" + }, + "end": { + "$date": "2021-06-30T05:22:41.000Z" + }, + "events": [ + { + "uuid": "6b7a73a1-9ac0-4567-937d-ac1b2a55842b", + "start": { + "$date": "2021-06-30T05:02:00.000Z" + }, + "end": { + "$date": "2021-06-30T05:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9979e186-d4a4-429f-8ae2-6d078e5eaa7a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-30T05:39:36.000Z" + }, + "end": { + "$date": "2021-06-30T06:02:11.000Z" + }, + "events": [ + { + "uuid": "829ea219-d358-4c5b-9c04-63892f43c59b", + "start": { + "$date": "2021-06-30T05:39:36.000Z" + }, + "end": { + "$date": "2021-06-30T06:02:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5b37977-9040-4552-87fb-c417721a78bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-06-30T06:05:36.000Z" + }, + "end": { + "$date": "2021-06-30T06:33:17.000Z" + }, + "events": [ + { + "uuid": "fd9a8270-6700-4347-81ba-e29517b873de", + "start": { + "$date": "2021-06-30T06:05:36.000Z" + }, + "end": { + "$date": "2021-06-30T06:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7d761301-c431-41a4-a0ed-145641e3a570", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T06:13:13.000Z" + }, + "end": { + "$date": "2021-06-30T06:27:13.000Z" + }, + "events": [ + { + "uuid": "1ec4353a-ae13-47ab-aea4-5051d879b617", + "start": { + "$date": "2021-06-30T06:13:13.000Z" + }, + "end": { + "$date": "2021-06-30T06:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "41ccc47f-54b1-4e79-a649-c20057844186", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T06:37:48.000Z" + }, + "end": { + "$date": "2021-06-30T08:10:43.000Z" + }, + "events": [ + { + "uuid": "751269b7-3155-4205-85e0-4d689b166666", + "start": { + "$date": "2021-06-30T06:37:48.000Z" + }, + "end": { + "$date": "2021-06-30T08:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2b9c895a-ca53-4fc6-b2a1-3999f7488eb0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-30T16:35:47.000Z" + }, + "end": { + "$date": "2021-06-30T17:17:38.000Z" + }, + "events": [ + { + "uuid": "bf023eac-d535-43eb-ab29-beebebdc230a", + "start": { + "$date": "2021-06-30T16:35:47.000Z" + }, + "end": { + "$date": "2021-06-30T17:17:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c29572a1-66cd-4915-9327-7f3b7e0c9732", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-30T16:36:31.000Z" + }, + "end": { + "$date": "2021-06-30T17:57:11.000Z" + }, + "events": [ + { + "uuid": "2a75b13c-6c85-471d-b65e-36e4121fc2f3", + "start": { + "$date": "2021-06-30T16:36:31.000Z" + }, + "end": { + "$date": "2021-06-30T17:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "119ccca6-0fc1-46dd-a7f5-d709364ba8ff", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-06-30T17:34:07.000Z" + }, + "end": { + "$date": "2021-06-30T18:04:01.000Z" + }, + "events": [ + { + "uuid": "3f556386-b120-420d-ad82-970a417aa665", + "start": { + "$date": "2021-06-30T17:34:07.000Z" + }, + "end": { + "$date": "2021-06-30T18:04:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4d109a19-b677-486b-926e-8677553505cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T19:25:12.000Z" + }, + "end": { + "$date": "2021-06-30T20:27:11.000Z" + }, + "events": [ + { + "uuid": "72ce05e6-8927-4943-9caf-b855d922705b", + "start": { + "$date": "2021-06-30T19:25:12.000Z" + }, + "end": { + "$date": "2021-06-30T20:01:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46e77ba1-a53a-4b30-964a-532cc26753cf", + "start": { + "$date": "2021-06-30T20:01:12.000Z" + }, + "end": { + "$date": "2021-06-30T20:11:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a79f57da-74e3-484a-9d12-04bbf62b0be6", + "start": { + "$date": "2021-06-30T20:11:12.000Z" + }, + "end": { + "$date": "2021-06-30T20:27:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b3ba79a7-2378-4fdb-acc5-7d051d20dc91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-30T20:20:32.000Z" + }, + "end": { + "$date": "2021-06-30T20:28:57.000Z" + }, + "events": [ + { + "uuid": "1874d619-7189-4b8c-b5d4-2e0213bdcd17", + "start": { + "$date": "2021-06-30T20:20:32.000Z" + }, + "end": { + "$date": "2021-06-30T20:28:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "acb4cc07-566c-41ba-bbe6-88da1632b339", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T20:27:31.000Z" + }, + "end": { + "$date": "2021-06-30T20:37:22.000Z" + }, + "events": [ + { + "uuid": "22d9a332-1c76-4f33-9b6c-6537e3db1124", + "start": { + "$date": "2021-06-30T20:27:31.000Z" + }, + "end": { + "$date": "2021-06-30T20:37:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7cf39725-3dd0-4a9f-8f8e-c2a9cc6e9c79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-06-30T20:42:44.000Z" + }, + "end": { + "$date": "2021-07-01T02:17:59.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-30T20:42:44.000Z" + }, + "end": { + "$date": "2021-07-01T02:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cad80689-f88c-426a-bb81-ff59fc70350a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-06-30T21:58:18.000Z" + }, + "end": { + "$date": "2021-07-01T03:28:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-30T21:58:18.000Z" + }, + "end": { + "$date": "2021-07-01T03:28:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f6611a21-36ad-4369-aa44-e8c55309ecca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-30T22:09:08.000Z" + }, + "end": { + "$date": "2021-06-30T23:08:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-06-30T22:09:08.000Z" + }, + "end": { + "$date": "2021-06-30T23:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "35a40488-390a-4209-8768-e77a90fcba46", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-06-30T23:09:11.000Z" + }, + "end": { + "$date": "2021-07-01T00:05:27.000Z" + }, + "events": [ + { + "uuid": "65cdb563-0f44-4ef5-8831-198efc0a0acf", + "start": { + "$date": "2021-06-30T23:09:11.000Z" + }, + "end": { + "$date": "2021-06-30T23:37:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f3a90c8-bda3-42fc-8d40-dfe2f6b801e0", + "start": { + "$date": "2021-06-30T23:37:11.000Z" + }, + "end": { + "$date": "2021-07-01T00:05:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "73afe8b5-6929-4a13-a401-7d8c35a9ab53", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-30T23:11:38.000Z" + }, + "end": { + "$date": "2021-06-30T23:28:10.000Z" + }, + "events": [ + { + "uuid": "56a66a7a-13ae-493c-9e47-7e40b5885cfe", + "start": { + "$date": "2021-06-30T23:11:38.000Z" + }, + "end": { + "$date": "2021-06-30T23:28:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "553389fb-8472-4dfc-a503-874696a98eb1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-06-30T23:45:56.000Z" + }, + "end": { + "$date": "2021-07-01T02:05:27.000Z" + }, + "events": [ + { + "uuid": "c8d4e6c7-88de-459a-8761-bcce6eb56f71", + "start": { + "$date": "2021-06-30T23:45:56.000Z" + }, + "end": { + "$date": "2021-07-01T02:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e770151c-855e-4125-9995-64e6dad08204", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-01T02:18:49.000Z" + }, + "end": { + "$date": "2021-07-01T07:48:32.000Z" + }, + "events": [ + { + "uuid": "8f472466-64ab-440e-9452-e6bec0883db2", + "start": { + "$date": "2021-07-01T02:18:49.000Z" + }, + "end": { + "$date": "2021-07-01T04:07:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41430ce8-f8c3-401e-8f96-d292faf18bfe", + "start": { + "$date": "2021-07-01T04:07:49.000Z" + }, + "end": { + "$date": "2021-07-01T04:15:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3446ca2f-a1c9-42ac-835f-63b2c5f8feee", + "start": { + "$date": "2021-07-01T04:15:49.000Z" + }, + "end": { + "$date": "2021-07-01T07:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "3e6ac81d-2045-48a6-b606-e37a88a4db81", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-01T04:24:45.000Z" + }, + "end": { + "$date": "2021-07-01T06:00:17.000Z" + }, + "events": [ + { + "uuid": "64f65899-6e80-42ca-8298-c27545d6b2e1", + "start": { + "$date": "2021-07-01T04:24:45.000Z" + }, + "end": { + "$date": "2021-07-01T06:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "a91c14dd-b93c-425d-872d-f507e5325312", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-01T04:24:50.000Z" + }, + "end": { + "$date": "2021-07-01T06:00:08.000Z" + }, + "events": [ + { + "uuid": "6ef219c6-7770-4ce0-b7f6-f2e87b3803e1", + "start": { + "$date": "2021-07-01T04:24:50.000Z" + }, + "end": { + "$date": "2021-07-01T06:00:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "abeddda7-c389-418d-8abc-03dd5478480a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-01T05:10:58.000Z" + }, + "end": { + "$date": "2021-07-01T06:21:15.000Z" + }, + "events": [ + { + "uuid": "1b9adecf-9093-41e5-b263-865f198528e6", + "start": { + "$date": "2021-07-01T05:10:58.000Z" + }, + "end": { + "$date": "2021-07-01T06:21:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a6c716ba-28db-487d-8dc0-157ccf5f7f8a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-01T12:39:37.000Z" + }, + "end": { + "$date": "2021-07-01T13:58:33.000Z" + }, + "events": [ + { + "uuid": "7b4cfb4e-f9d9-4a0e-bf5c-7ef6a05dbdeb", + "start": { + "$date": "2021-07-01T12:39:37.000Z" + }, + "end": { + "$date": "2021-07-01T13:25:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f636b63a-249f-463c-a05b-8bf0fd50eb20", + "start": { + "$date": "2021-07-01T13:25:37.000Z" + }, + "end": { + "$date": "2021-07-01T13:37:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0576bd41-3911-4389-b2f5-027ca7b8fd6d", + "start": { + "$date": "2021-07-01T13:37:37.000Z" + }, + "end": { + "$date": "2021-07-01T13:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fa5bc735-bc0a-4493-a2bf-5a33cdb11956", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-01T15:19:17.000Z" + }, + "end": { + "$date": "2021-07-01T15:54:19.000Z" + }, + "events": [ + { + "uuid": "6c2d137e-39d2-4ef7-80d6-607d781a1ade", + "start": { + "$date": "2021-07-01T15:19:17.000Z" + }, + "end": { + "$date": "2021-07-01T15:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1b17824c-034c-48ad-bd3a-03229f460450", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-01T15:54:59.000Z" + }, + "end": { + "$date": "2021-07-01T23:22:07.000Z" + }, + "events": [ + { + "uuid": "6ff0f685-7065-4ef9-949b-0269964ba91e", + "start": { + "$date": "2021-07-01T15:54:59.000Z" + }, + "end": { + "$date": "2021-07-01T16:05:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d716c4c2-1334-45f9-bcf1-77a91d45a112", + "start": { + "$date": "2021-07-01T16:05:59.000Z" + }, + "end": { + "$date": "2021-07-01T16:29:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7329a1e6-05b1-40c0-8853-787b7ee5e6cf", + "start": { + "$date": "2021-07-01T16:29:59.000Z" + }, + "end": { + "$date": "2021-07-01T22:05:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dca840ac-f32c-43d8-b41f-57c0caac1f2b", + "start": { + "$date": "2021-07-01T22:05:59.000Z" + }, + "end": { + "$date": "2021-07-01T22:29:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea6c8311-954c-480d-b206-3f47f275699e", + "start": { + "$date": "2021-07-01T22:29:59.000Z" + }, + "end": { + "$date": "2021-07-01T22:41:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9f4202d4-6527-4596-ad4e-086073b3288c", + "start": { + "$date": "2021-07-01T22:41:59.000Z" + }, + "end": { + "$date": "2021-07-01T23:22:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "9689b235-c769-4229-a3e8-51b364b98a27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-01T17:15:44.000Z" + }, + "end": { + "$date": "2021-07-01T17:43:25.000Z" + }, + "events": [ + { + "uuid": "0480a44a-8b84-423a-942a-d4ab98ba69fc", + "start": { + "$date": "2021-07-01T17:15:44.000Z" + }, + "end": { + "$date": "2021-07-01T17:43:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9c15fe8-776b-4ac0-b167-3cba13c976be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-01T17:40:18.000Z" + }, + "end": { + "$date": "2021-07-01T19:29:39.000Z" + }, + "events": [ + { + "uuid": "df029a00-e105-4334-9732-2b96dc32adb2", + "start": { + "$date": "2021-07-01T17:40:18.000Z" + }, + "end": { + "$date": "2021-07-01T19:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9fe41454-f646-4cb2-a8e5-3e03bec151ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-01T17:41:16.000Z" + }, + "end": { + "$date": "2021-07-01T17:42:42.000Z" + }, + "events": [ + { + "uuid": "fb5cf111-6a29-4174-bf92-af0546353407", + "start": { + "$date": "2021-07-01T17:41:16.000Z" + }, + "end": { + "$date": "2021-07-01T17:42:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b7119c95-a4ad-439c-9944-8b274931b082", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-01T17:43:02.000Z" + }, + "end": { + "$date": "2021-07-01T17:45:33.000Z" + }, + "events": [ + { + "uuid": "575e3776-e402-4eb4-8fc0-7d2d48a596e5", + "start": { + "$date": "2021-07-01T17:43:02.000Z" + }, + "end": { + "$date": "2021-07-01T17:45:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "aead911a-6888-433f-ad7c-d401c291a933", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-01T17:46:13.000Z" + }, + "end": { + "$date": "2021-07-01T18:40:23.000Z" + }, + "events": [ + { + "uuid": "d003be57-1cbe-48a6-bae2-7e0560feb9a9", + "start": { + "$date": "2021-07-01T17:46:13.000Z" + }, + "end": { + "$date": "2021-07-01T18:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8384b740-d69a-473e-813b-1ea3b92e2b3d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-01T17:47:10.000Z" + }, + "end": { + "$date": "2021-07-01T18:57:50.000Z" + }, + "events": [ + { + "uuid": "4dd5917c-e903-40de-9c77-2a65fb0fe119", + "start": { + "$date": "2021-07-01T17:47:10.000Z" + }, + "end": { + "$date": "2021-07-01T18:57:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e822a465-95cd-416e-b509-cc30315e5a48", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-01T17:48:05.000Z" + }, + "end": { + "$date": "2021-07-01T18:49:12.000Z" + }, + "events": [ + { + "uuid": "edf66737-a538-451b-aa18-7c655e16ebf9", + "start": { + "$date": "2021-07-01T17:48:05.000Z" + }, + "end": { + "$date": "2021-07-01T18:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "92547117-1bd0-42d1-bea5-89956ba26665", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-01T18:40:24.000Z" + }, + "end": { + "$date": "2021-07-01T19:39:53.000Z" + }, + "events": [ + { + "uuid": "e3fa0b10-0005-411c-9229-3d0c18f61142", + "start": { + "$date": "2021-07-01T18:40:24.000Z" + }, + "end": { + "$date": "2021-07-01T19:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "c040ef9e-20d2-4427-a9fb-ecfaafb27748", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-01T21:17:07.000Z" + }, + "end": { + "$date": "2021-07-01T21:17:32.000Z" + }, + "events": [ + { + "uuid": "c3486dbe-3a4e-4e97-8501-b1188ae12cff", + "start": { + "$date": "2021-07-01T21:17:07.000Z" + }, + "end": { + "$date": "2021-07-01T21:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "904a5776-37a6-4729-8d6c-a11caa8ffacd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-02T01:38:55.000Z" + }, + "end": { + "$date": "2021-07-02T01:38:59.000Z" + }, + "events": [ + { + "uuid": "1cb73f5f-767e-444c-b12b-e8745dff258a", + "start": { + "$date": "2021-07-02T01:38:55.000Z" + }, + "end": { + "$date": "2021-07-02T01:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3f147270-80dd-4d5d-a393-529d75721012", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-01T22:48:34.000Z" + }, + "end": { + "$date": "2021-07-02T02:23:42.000Z" + }, + "events": [ + { + "uuid": "d5fb7bd0-d340-43b1-a09b-7cb31b45c41b", + "start": { + "$date": "2021-07-01T22:48:34.000Z" + }, + "end": { + "$date": "2021-07-02T01:43:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "934f521b-3779-42c6-9c52-1ef25c661f3e", + "start": { + "$date": "2021-07-02T01:43:34.000Z" + }, + "end": { + "$date": "2021-07-02T01:44:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5f8606b-a591-40c9-baed-638336549f9c", + "start": { + "$date": "2021-07-02T01:44:34.000Z" + }, + "end": { + "$date": "2021-07-02T02:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f7a31440-2ee2-413c-b3d9-46798b107406", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-01T22:56:35.000Z" + }, + "end": { + "$date": "2021-07-02T01:22:09.000Z" + }, + "events": [ + { + "uuid": "34015ea3-a762-45cf-a25d-9936afccbcaa", + "start": { + "$date": "2021-07-01T22:56:35.000Z" + }, + "end": { + "$date": "2021-07-02T01:22:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "18036f70-da55-460e-a8fe-b5b76800d3d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-02T03:42:44.000Z" + }, + "end": { + "$date": "2021-07-02T09:09:34.000Z" + }, + "events": [ + { + "uuid": "7335e5fa-388d-4e49-9ca8-63cea9f78bea", + "start": { + "$date": "2021-07-02T03:42:44.000Z" + }, + "end": { + "$date": "2021-07-02T09:09:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fdae996e-c7cb-4153-b1fe-b7a891eabb88", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-02T03:53:47.000Z" + }, + "end": { + "$date": "2021-07-02T05:15:52.000Z" + }, + "events": [ + { + "uuid": "fd551371-84d7-4696-a3fa-925b6f2ce831", + "start": { + "$date": "2021-07-02T03:53:47.000Z" + }, + "end": { + "$date": "2021-07-02T05:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "550aa5b0-8537-4b38-97ea-5ad3df16cb6c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-02T03:54:10.000Z" + }, + "end": { + "$date": "2021-07-02T05:15:42.000Z" + }, + "events": [ + { + "uuid": "80096bad-d0c0-4378-a2e2-daef8525bbbd", + "start": { + "$date": "2021-07-02T03:54:10.000Z" + }, + "end": { + "$date": "2021-07-02T05:15:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "66485119-6258-49ee-b5ba-e672e251c1d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-02T03:57:14.000Z" + }, + "end": { + "$date": "2021-07-02T04:59:25.000Z" + }, + "events": [ + { + "uuid": "19dbfe43-0e5b-4cc8-a4ee-4b2ec487cc25", + "start": { + "$date": "2021-07-02T03:57:14.000Z" + }, + "end": { + "$date": "2021-07-02T04:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5298dd4f-82c3-4b87-a04d-e35d6e5af18f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-02T03:58:06.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:23.000Z" + }, + "events": [ + { + "uuid": "1dbaf8c7-8a6d-400b-9e49-c7583706a390", + "start": { + "$date": "2021-07-02T03:58:06.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a1fbfd7b-3973-4adf-9e97-f329e291378e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-02T03:58:42.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:15.000Z" + }, + "events": [ + { + "uuid": "8d5fa65f-0b02-49a3-a5d0-fbf3c3ebb72d", + "start": { + "$date": "2021-07-02T03:58:42.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "78f563a9-2cb1-4ab1-8afa-c40c99727668", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-02T04:02:12.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:26.000Z" + }, + "events": [ + { + "uuid": "d184840c-c9ea-4a73-9b65-db0c5d78c8ec", + "start": { + "$date": "2021-07-02T04:02:12.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d12d0ca4-ffa0-43a2-9f31-90cc9eb6f68f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-02T04:06:30.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:16.000Z" + }, + "events": [ + { + "uuid": "2e7130de-0f89-4d8e-9946-cb65c04e7d76", + "start": { + "$date": "2021-07-02T04:06:30.000Z" + }, + "end": { + "$date": "2021-07-02T05:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "3b696150-8247-4c01-b09f-0e5a5f6829d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-02T05:10:36.000Z" + }, + "end": { + "$date": "2021-07-02T06:08:07.000Z" + }, + "events": [ + { + "uuid": "4465ff8f-3084-4024-b28d-eca6bbfb9b7a", + "start": { + "$date": "2021-07-02T05:10:36.000Z" + }, + "end": { + "$date": "2021-07-02T06:08:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "04d1976c-9738-4662-b6bc-d50998b73d24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-02T09:09:49.000Z" + }, + "end": { + "$date": "2021-07-02T10:21:46.000Z" + }, + "events": [ + { + "uuid": "c8e91199-2ded-460f-98b5-d956c139579b", + "start": { + "$date": "2021-07-02T09:09:49.000Z" + }, + "end": { + "$date": "2021-07-02T10:21:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "f83d68cb-d548-4065-b984-02e3b974713e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-02T17:58:50.000Z" + }, + "end": { + "$date": "2021-07-02T17:58:53.000Z" + }, + "events": [ + { + "uuid": "93030783-24fc-4ed8-97cc-cfc4ddf62038", + "start": { + "$date": "2021-07-02T17:58:50.000Z" + }, + "end": { + "$date": "2021-07-02T17:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5dbd37db-2244-4859-a921-ce80842f1687", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-02T17:00:15.000Z" + }, + "end": { + "$date": "2021-07-02T17:43:06.000Z" + }, + "events": [ + { + "uuid": "1f1b3000-987b-4ab8-8b49-6128db0efaae", + "start": { + "$date": "2021-07-02T17:00:15.000Z" + }, + "end": { + "$date": "2021-07-02T17:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1e45dc49-0fc5-4d8e-922c-97a09b51b527", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T17:37:25.000Z" + }, + "end": { + "$date": "2021-07-02T18:29:18.000Z" + }, + "events": [ + { + "uuid": "fb0c996f-dcd2-4c7c-9dd2-e337ade2338b", + "start": { + "$date": "2021-07-02T17:37:25.000Z" + }, + "end": { + "$date": "2021-07-02T18:29:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "aecb2bd9-c5ed-4cf4-b1e8-b005f7b8c8bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-02T17:44:04.000Z" + }, + "end": { + "$date": "2021-07-02T20:06:15.000Z" + }, + "events": [ + { + "uuid": "dbad0d2a-d6c6-432f-ade9-1e760aac3375", + "start": { + "$date": "2021-07-02T17:44:04.000Z" + }, + "end": { + "$date": "2021-07-02T18:55:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7aad11bd-aefd-424d-b4aa-e1083bcfc52c", + "start": { + "$date": "2021-07-02T18:55:04.000Z" + }, + "end": { + "$date": "2021-07-02T18:57:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52585abc-a6ab-4e9d-9e70-5b8fe8f8947b", + "start": { + "$date": "2021-07-02T18:57:04.000Z" + }, + "end": { + "$date": "2021-07-02T20:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d1221608-b7a3-4f66-ab24-15db588f0c30", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T19:03:22.000Z" + }, + "end": { + "$date": "2021-07-02T20:25:58.000Z" + }, + "events": [ + { + "uuid": "c52d8dda-aad4-49a7-aeec-97cfc03eb789", + "start": { + "$date": "2021-07-02T19:03:22.000Z" + }, + "end": { + "$date": "2021-07-02T20:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "5023da0b-8031-4ab6-818a-669fdccbf653", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-02T19:03:43.000Z" + }, + "end": { + "$date": "2021-07-02T19:26:43.000Z" + }, + "events": [ + { + "uuid": "bc3862f1-d409-431b-84b5-a21f90026ebf", + "start": { + "$date": "2021-07-02T19:03:43.000Z" + }, + "end": { + "$date": "2021-07-02T19:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e1c115fd-abfd-447c-a0dd-6b6dd9634548", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-02T20:04:33.000Z" + }, + "end": { + "$date": "2021-07-02T20:47:10.000Z" + }, + "events": [ + { + "uuid": "f784ed73-34d7-4ca6-a29e-9c0e965f3841", + "start": { + "$date": "2021-07-02T20:04:33.000Z" + }, + "end": { + "$date": "2021-07-02T20:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1344f78e-2c6a-410a-b4fd-712583615fee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-02T20:38:53.000Z" + }, + "end": { + "$date": "2021-07-02T20:48:02.000Z" + }, + "events": [ + { + "uuid": "e40dc9be-92cf-4f43-8a3a-53ebf6e9b795", + "start": { + "$date": "2021-07-02T20:38:53.000Z" + }, + "end": { + "$date": "2021-07-02T20:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0a3c006c-7b37-4a6e-863b-4597450e06d8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T20:38:59.000Z" + }, + "end": { + "$date": "2021-07-02T20:47:52.000Z" + }, + "events": [ + { + "uuid": "8250fef2-a52c-444d-8069-06f8f2dd2129", + "start": { + "$date": "2021-07-02T20:38:59.000Z" + }, + "end": { + "$date": "2021-07-02T20:47:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "85dc7768-1595-4d17-827c-7f75e96d8db5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-02T20:47:30.000Z" + }, + "end": { + "$date": "2021-07-02T22:06:18.000Z" + }, + "events": [ + { + "uuid": "8d3b9b36-7ceb-41f7-b147-87f9cdbbeb57", + "start": { + "$date": "2021-07-02T20:47:30.000Z" + }, + "end": { + "$date": "2021-07-02T22:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "92e8e6c4-9944-4b3c-8520-6104e025c2a3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T20:48:27.000Z" + }, + "end": { + "$date": "2021-07-02T22:05:44.000Z" + }, + "events": [ + { + "uuid": "6de705ca-f179-4ba2-8b14-5aa40bbefab4", + "start": { + "$date": "2021-07-02T20:48:27.000Z" + }, + "end": { + "$date": "2021-07-02T22:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a0e8339a-1f17-494c-8aca-59efaa644b42", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-02T20:48:48.000Z" + }, + "end": { + "$date": "2021-07-02T22:05:39.000Z" + }, + "events": [ + { + "uuid": "e5e19519-53f8-44ff-8d40-d2178fa19069", + "start": { + "$date": "2021-07-02T20:48:48.000Z" + }, + "end": { + "$date": "2021-07-02T22:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "d7ed1c34-1348-439a-a8be-b3e7d46da7c9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-02T21:03:43.000Z" + }, + "end": { + "$date": "2021-07-02T21:07:29.000Z" + }, + "events": [ + { + "uuid": "84b29362-1c0a-4265-9c23-469148cc12dd", + "start": { + "$date": "2021-07-02T21:03:43.000Z" + }, + "end": { + "$date": "2021-07-02T21:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "0c44ea2b-744c-43d1-81eb-45be67edbd23", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-02T21:09:04.000Z" + }, + "end": { + "$date": "2021-07-02T21:17:03.000Z" + }, + "events": [ + { + "uuid": "fb347d54-eda9-4409-9f0c-22e6bef4de4b", + "start": { + "$date": "2021-07-02T21:09:04.000Z" + }, + "end": { + "$date": "2021-07-02T21:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "af99d871-af10-4ee3-a44a-4db0d3517e45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-02T21:19:28.000Z" + }, + "end": { + "$date": "2021-07-02T22:00:25.000Z" + }, + "events": [ + { + "uuid": "f58f192f-f805-4c90-a836-5313829aeb50", + "start": { + "$date": "2021-07-02T21:19:28.000Z" + }, + "end": { + "$date": "2021-07-02T22:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "57aefcfe-7ec8-49c3-8233-3554cc874437", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-02T22:00:58.000Z" + }, + "end": { + "$date": "2021-07-02T22:19:15.000Z" + }, + "events": [ + { + "uuid": "87ef31ad-1d19-4c07-958b-c7af7007a516", + "start": { + "$date": "2021-07-02T22:00:58.000Z" + }, + "end": { + "$date": "2021-07-02T22:19:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0920b8a0-a7b7-432f-9326-468fdb2bdb38", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-02T22:21:15.000Z" + }, + "end": { + "$date": "2021-07-03T00:03:35.000Z" + }, + "events": [ + { + "uuid": "5d133868-5755-4721-abd7-4fd10882056f", + "start": { + "$date": "2021-07-02T22:21:15.000Z" + }, + "end": { + "$date": "2021-07-03T00:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "037d5ef8-3f54-401c-9923-a875b9a30e54", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T22:08:24.000Z" + }, + "end": { + "$date": "2021-07-02T22:20:59.000Z" + }, + "events": [ + { + "uuid": "f60761cf-a34f-46be-9947-d1ae29c9f051", + "start": { + "$date": "2021-07-02T22:08:24.000Z" + }, + "end": { + "$date": "2021-07-02T22:20:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9c4d9303-dceb-4903-a5d2-77d8b3a7808e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-02T22:18:37.000Z" + }, + "end": { + "$date": "2021-07-02T23:00:43.000Z" + }, + "events": [ + { + "uuid": "98d006a1-578e-4b86-98a3-1059125c259e", + "start": { + "$date": "2021-07-02T22:18:37.000Z" + }, + "end": { + "$date": "2021-07-02T23:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08b7fc73-5450-4bb6-811a-3eb4ca9229c6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-02T22:19:08.000Z" + }, + "end": { + "$date": "2021-07-02T23:27:12.000Z" + }, + "events": [ + { + "uuid": "f9270008-d2fc-4a64-852e-0aa3f8515dae", + "start": { + "$date": "2021-07-02T22:19:08.000Z" + }, + "end": { + "$date": "2021-07-02T23:27:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "080baf11-bb13-45af-914b-42a7253d2211", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-02T22:20:30.000Z" + }, + "end": { + "$date": "2021-07-03T00:20:37.000Z" + }, + "events": [ + { + "uuid": "da5f278c-a640-4b26-b6fc-7700b87c3067", + "start": { + "$date": "2021-07-02T22:20:30.000Z" + }, + "end": { + "$date": "2021-07-02T23:13:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffa7bf36-dfb8-4d28-bd79-d82f395419ab", + "start": { + "$date": "2021-07-02T23:13:30.000Z" + }, + "end": { + "$date": "2021-07-02T23:17:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b136a97e-701d-4c9e-884a-02bb5082eed0", + "start": { + "$date": "2021-07-02T23:17:30.000Z" + }, + "end": { + "$date": "2021-07-03T00:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a437993-3183-4344-9b9a-a51217d69742", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-02T22:20:49.000Z" + }, + "end": { + "$date": "2021-07-02T23:27:18.000Z" + }, + "events": [ + { + "uuid": "610890f9-a857-4132-a01f-100acb9a0053", + "start": { + "$date": "2021-07-02T22:20:49.000Z" + }, + "end": { + "$date": "2021-07-02T23:27:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fb150bc3-8661-441b-b2a4-e7a5d8b7b58b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T22:22:04.000Z" + }, + "end": { + "$date": "2021-07-02T23:28:16.000Z" + }, + "events": [ + { + "uuid": "a56c0463-c818-471c-825e-cb634cd43f58", + "start": { + "$date": "2021-07-02T22:22:04.000Z" + }, + "end": { + "$date": "2021-07-02T23:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5a1fb182-32c4-44ef-bc83-8b3bee9dbff6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-02T22:28:01.000Z" + }, + "end": { + "$date": "2021-07-03T01:52:56.000Z" + }, + "events": [ + { + "uuid": "2cb57ad6-4a62-415e-810d-cdf60142e466", + "start": { + "$date": "2021-07-02T22:28:01.000Z" + }, + "end": { + "$date": "2021-07-03T01:30:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4761e9a2-2bc3-47b4-9c15-39e8056fa5ba", + "start": { + "$date": "2021-07-03T01:30:01.000Z" + }, + "end": { + "$date": "2021-07-03T01:33:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e212ef6-fe37-4cad-a64f-f2ef15dd5789", + "start": { + "$date": "2021-07-03T01:33:01.000Z" + }, + "end": { + "$date": "2021-07-03T01:45:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c0051a57-d1c7-4623-b559-f7546003ecd7", + "start": { + "$date": "2021-07-03T01:45:01.000Z" + }, + "end": { + "$date": "2021-07-03T01:51:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec59798f-ab29-4db1-be90-5b8f16352586", + "start": { + "$date": "2021-07-03T01:51:01.000Z" + }, + "end": { + "$date": "2021-07-03T01:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d3bb54b9-2f1e-486c-8831-ccedda6999ca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-02T22:48:42.000Z" + }, + "end": { + "$date": "2021-07-03T00:03:45.000Z" + }, + "events": [ + { + "uuid": "5c9b78bc-49d9-4da3-9a54-2e75fb369671", + "start": { + "$date": "2021-07-02T22:48:42.000Z" + }, + "end": { + "$date": "2021-07-03T00:03:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9a003d75-c4b2-44d6-a219-5bdbd8e238ba", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-02T23:11:34.000Z" + }, + "end": { + "$date": "2021-07-03T00:20:33.000Z" + }, + "events": [ + { + "uuid": "a8115509-9954-4026-a207-cdb5345e3d78", + "start": { + "$date": "2021-07-02T23:11:34.000Z" + }, + "end": { + "$date": "2021-07-03T00:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9f882903-ce79-418d-ab29-dd0bab46825f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-02T23:28:50.000Z" + }, + "end": { + "$date": "2021-07-03T01:58:30.000Z" + }, + "events": [ + { + "uuid": "3a0aaa68-7bf8-4bc6-96b7-2d8572bf5082", + "start": { + "$date": "2021-07-02T23:28:50.000Z" + }, + "end": { + "$date": "2021-07-03T00:18:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "907093cd-8ee7-46c5-9ded-2ec05f85922c", + "start": { + "$date": "2021-07-03T00:18:50.000Z" + }, + "end": { + "$date": "2021-07-03T00:24:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "05a85375-8502-438b-ad99-af4448105f71", + "start": { + "$date": "2021-07-03T00:24:50.000Z" + }, + "end": { + "$date": "2021-07-03T01:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7ebce693-dafe-4c0d-9ec6-80ccf2d5fd8b", + "uuid": "ce735389-1ba3-4c6c-b989-4adc18bee60c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T00:21:10.000Z" + }, + "end": { + "$date": "2021-07-03T00:55:17.000Z" + }, + "events": [ + { + "uuid": "7ed77695-fbd3-4168-9275-ebb7f2c337a7", + "start": { + "$date": "2021-07-03T00:21:10.000Z" + }, + "end": { + "$date": "2021-07-03T00:55:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516c8045-97c5-4666-baba-b14db6007763", + "uuid": "f7e02103-2bdc-4add-b247-eb4c36529a6e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T00:55:32.000Z" + }, + "end": { + "$date": "2021-07-03T01:25:19.000Z" + }, + "events": [ + { + "uuid": "aea168df-0bbb-4a29-b7e2-b8f8c8397d16", + "start": { + "$date": "2021-07-03T00:55:32.000Z" + }, + "end": { + "$date": "2021-07-03T01:25:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9d054125-93b4-4c65-84b2-fcdd85d2c2b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-03T01:18:16.000Z" + }, + "end": { + "$date": "2021-07-03T02:04:35.000Z" + }, + "events": [ + { + "uuid": "28198688-5bbe-4eda-9001-6c2309f7d8d2", + "start": { + "$date": "2021-07-03T01:18:16.000Z" + }, + "end": { + "$date": "2021-07-03T02:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2472dd06-bd92-4fd5-a2a5-ffd134653a1d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T02:28:58.000Z" + }, + "end": { + "$date": "2021-07-03T03:47:50.000Z" + }, + "events": [ + { + "uuid": "f62b8d95-e746-4d5f-8df3-cb3d43572ccb", + "start": { + "$date": "2021-07-03T02:28:58.000Z" + }, + "end": { + "$date": "2021-07-03T03:15:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b97295df-bc53-4a2b-80b1-ff454bdb30b4", + "start": { + "$date": "2021-07-03T03:15:58.000Z" + }, + "end": { + "$date": "2021-07-03T03:16:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "748995f3-cd52-407d-bf90-fe0b892c149b", + "start": { + "$date": "2021-07-03T03:16:58.000Z" + }, + "end": { + "$date": "2021-07-03T03:47:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4a5780a6-aa72-4244-9bb3-57953f7faa0f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-03T01:52:30.000Z" + }, + "end": { + "$date": "2021-07-03T03:21:44.000Z" + }, + "events": [ + { + "uuid": "99e60fca-3d88-40e8-8d74-751395c884a1", + "start": { + "$date": "2021-07-03T01:52:30.000Z" + }, + "end": { + "$date": "2021-07-03T03:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "89c3e5dd-67f2-4668-b2a8-149aa3dfeec4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-03T02:46:11.000Z" + }, + "end": { + "$date": "2021-07-03T05:24:38.000Z" + }, + "events": [ + { + "uuid": "7cb272f7-f611-45d9-8e0d-713aa3f7df2c", + "start": { + "$date": "2021-07-03T02:46:11.000Z" + }, + "end": { + "$date": "2021-07-03T05:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e6ad9c3b-a083-4fc3-b1d7-c518d469c0fa", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-03T02:47:16.000Z" + }, + "end": { + "$date": "2021-07-03T05:24:34.000Z" + }, + "events": [ + { + "uuid": "05c19db3-3e82-4221-b938-bdab6f54d047", + "start": { + "$date": "2021-07-03T02:47:16.000Z" + }, + "end": { + "$date": "2021-07-03T05:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4ba2864e-c852-40ca-b9dc-e570637f108e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-03T02:47:49.000Z" + }, + "end": { + "$date": "2021-07-03T05:18:47.000Z" + }, + "events": [ + { + "uuid": "01e691fe-83c9-4346-bac1-b30d6275594c", + "start": { + "$date": "2021-07-03T02:47:49.000Z" + }, + "end": { + "$date": "2021-07-03T05:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8b92758-349d-4b00-9e07-7bc67d49dc4b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-03T02:54:20.000Z" + }, + "end": { + "$date": "2021-07-03T05:23:26.000Z" + }, + "events": [ + { + "uuid": "062b0a41-48f8-4003-a634-74ea1bf8514f", + "start": { + "$date": "2021-07-03T02:54:20.000Z" + }, + "end": { + "$date": "2021-07-03T05:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "787333df-2f3a-4041-a54a-ffe158852fda", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-03T02:59:32.000Z" + }, + "end": { + "$date": "2021-07-03T05:10:12.000Z" + }, + "events": [ + { + "uuid": "b2951d97-a556-498c-b32f-4320a450d622", + "start": { + "$date": "2021-07-03T02:59:32.000Z" + }, + "end": { + "$date": "2021-07-03T05:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf319abf-d654-4596-a087-bdbaeab23bf2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-03T03:11:08.000Z" + }, + "end": { + "$date": "2021-07-03T05:23:08.000Z" + }, + "events": [ + { + "uuid": "6d5a8f4d-055b-4493-8ff0-a9cc7d984c04", + "start": { + "$date": "2021-07-03T03:11:08.000Z" + }, + "end": { + "$date": "2021-07-03T05:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5f05411a-30a8-44f1-b58c-f6af0e27b25d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-03T03:14:06.000Z" + }, + "end": { + "$date": "2021-07-03T08:10:57.000Z" + }, + "events": [ + { + "uuid": "883601b8-3bca-4f6b-a3e0-5bf986472c18", + "start": { + "$date": "2021-07-03T03:14:06.000Z" + }, + "end": { + "$date": "2021-07-03T08:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1c32df89-c19e-48ed-952b-a1747c770e73", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-03T03:15:04.000Z" + }, + "end": { + "$date": "2021-07-03T04:55:32.000Z" + }, + "events": [ + { + "uuid": "ee2b6b6e-598e-42b2-aa7a-179b085ca0f3", + "start": { + "$date": "2021-07-03T03:15:04.000Z" + }, + "end": { + "$date": "2021-07-03T04:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "b504878b-bc5b-4801-9fb2-471fbba59a79", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T03:47:55.000Z" + }, + "end": { + "$date": "2021-07-03T03:49:20.000Z" + }, + "events": [ + { + "uuid": "a47c0f11-b8ac-40e1-ad26-b4dd64af5e8b", + "start": { + "$date": "2021-07-03T03:47:55.000Z" + }, + "end": { + "$date": "2021-07-03T03:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "984d9413-4d57-4947-a9a3-6cba47b0d922", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T03:49:30.000Z" + }, + "end": { + "$date": "2021-07-03T03:52:35.000Z" + }, + "events": [ + { + "uuid": "9e4fd039-5aac-4dc6-8606-d17e45f125a9", + "start": { + "$date": "2021-07-03T03:49:30.000Z" + }, + "end": { + "$date": "2021-07-03T03:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "91c5587f-3dd0-4efb-bbdb-6aeab2c1ced6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T03:54:00.000Z" + }, + "end": { + "$date": "2021-07-03T04:13:51.000Z" + }, + "events": [ + { + "uuid": "540de980-c83f-4cd4-986e-f0aa41229b75", + "start": { + "$date": "2021-07-03T03:54:00.000Z" + }, + "end": { + "$date": "2021-07-03T04:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8db1879e-4406-4f08-88d6-4bd04032100c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T04:15:26.000Z" + }, + "end": { + "$date": "2021-07-03T05:10:13.000Z" + }, + "events": [ + { + "uuid": "77a17441-1303-4866-a987-d515735c6901", + "start": { + "$date": "2021-07-03T04:15:26.000Z" + }, + "end": { + "$date": "2021-07-03T05:10:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2991c7d3-a21c-4094-8b23-2dfac7c17a29", + "uuid": "bae40f42-2bf7-47c2-9b80-eb29d2512f16", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-03T05:25:26.000Z" + }, + "end": { + "$date": "2021-07-03T05:34:22.000Z" + }, + "events": [ + { + "uuid": "262da52e-f839-422f-9a91-7db710bd7221", + "start": { + "$date": "2021-07-03T05:25:26.000Z" + }, + "end": { + "$date": "2021-07-03T05:34:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "35445062-929a-4183-aa7e-2099c73a12dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-03T05:26:01.000Z" + }, + "end": { + "$date": "2021-07-03T07:34:09.000Z" + }, + "events": [ + { + "uuid": "3a65aca5-7f7e-4181-96a5-0b1b3155d7c4", + "start": { + "$date": "2021-07-03T05:26:01.000Z" + }, + "end": { + "$date": "2021-07-03T07:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5b42036b-94a1-4d1b-9252-ceaa6428b9d8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-03T06:02:53.000Z" + }, + "end": { + "$date": "2021-07-03T06:25:29.000Z" + }, + "events": [ + { + "uuid": "56604d55-81ab-4db3-8e45-b699b31a8c33", + "start": { + "$date": "2021-07-03T06:02:53.000Z" + }, + "end": { + "$date": "2021-07-03T06:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1e95c522-78ef-4998-879f-08e398e8317e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T06:19:41.000Z" + }, + "end": { + "$date": "2021-07-03T06:28:06.000Z" + }, + "events": [ + { + "uuid": "65859159-b105-4c7c-a022-fb9f0293a640", + "start": { + "$date": "2021-07-03T06:19:41.000Z" + }, + "end": { + "$date": "2021-07-03T06:28:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "929a570e-5910-4295-ba67-8b167dd5b8cf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T06:33:11.000Z" + }, + "end": { + "$date": "2021-07-03T06:59:37.000Z" + }, + "events": [ + { + "uuid": "2d89755e-dc3b-432f-a7dc-cead8ad6f7ce", + "start": { + "$date": "2021-07-03T06:33:11.000Z" + }, + "end": { + "$date": "2021-07-03T06:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "79f91736-275f-47a1-96df-f90ebb85bd0d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T07:00:12.000Z" + }, + "end": { + "$date": "2021-07-03T09:54:34.000Z" + }, + "events": [ + { + "uuid": "2cc39e89-555c-48a4-8b69-778969afe971", + "start": { + "$date": "2021-07-03T07:00:12.000Z" + }, + "end": { + "$date": "2021-07-03T09:54:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "b7b65ec5-7232-42a2-9d0a-9447729323a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-03T16:13:04.000Z" + }, + "end": { + "$date": "2021-07-03T16:33:21.000Z" + }, + "events": [ + { + "uuid": "1de436fa-03be-41d4-8bae-45f5aacf847a", + "start": { + "$date": "2021-07-03T16:13:04.000Z" + }, + "end": { + "$date": "2021-07-03T16:33:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "297d5bf9-0c39-48a2-89aa-c68b6e52988f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-03T18:44:10.000Z" + }, + "end": { + "$date": "2021-07-03T19:21:16.000Z" + }, + "events": [ + { + "uuid": "20ea7fab-c397-4178-b4a9-1523daa902c1", + "start": { + "$date": "2021-07-03T18:44:10.000Z" + }, + "end": { + "$date": "2021-07-03T19:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6feff81e-1c48-4361-8b55-bf21af6142ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-03T16:46:29.000Z" + }, + "end": { + "$date": "2021-07-03T18:58:46.000Z" + }, + "events": [ + { + "uuid": "4ce2e5ec-f0bd-417b-9fdd-8857816071bb", + "start": { + "$date": "2021-07-03T16:46:29.000Z" + }, + "end": { + "$date": "2021-07-03T18:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d22a5fa9-e038-4db3-8ebc-f85bb919c620", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T17:03:41.000Z" + }, + "end": { + "$date": "2021-07-03T19:25:27.000Z" + }, + "events": [ + { + "uuid": "761bc9ed-e330-4976-9e20-77446d4a7994", + "start": { + "$date": "2021-07-03T17:03:41.000Z" + }, + "end": { + "$date": "2021-07-03T19:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "2fb8841a-b04c-4fc3-a851-3dd23951c1ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-03T18:15:54.000Z" + }, + "end": { + "$date": "2021-07-03T19:14:38.000Z" + }, + "events": [ + { + "uuid": "1e8f1a73-f09f-4fea-a30c-50b9d13127a5", + "start": { + "$date": "2021-07-03T18:15:54.000Z" + }, + "end": { + "$date": "2021-07-03T19:14:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "93f25d04-15aa-4d8c-a737-d6fa52ce4212", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-03T19:16:20.000Z" + }, + "end": { + "$date": "2021-07-03T20:06:13.000Z" + }, + "events": [ + { + "uuid": "7205ad2d-07af-4899-a2eb-ceaeffc86b44", + "start": { + "$date": "2021-07-03T19:16:20.000Z" + }, + "end": { + "$date": "2021-07-03T20:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "34a9ab2b-f9bf-40db-8eda-cc738bac49d1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-03T20:29:03.000Z" + }, + "end": { + "$date": "2021-07-03T20:38:14.000Z" + }, + "events": [ + { + "uuid": "d6eb58e9-2f65-41e7-b674-123c1af96527", + "start": { + "$date": "2021-07-03T20:29:03.000Z" + }, + "end": { + "$date": "2021-07-03T20:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ed029fae-5693-476e-a46e-fa74dd722efb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-03T20:51:35.000Z" + }, + "end": { + "$date": "2021-07-03T21:09:44.000Z" + }, + "events": [ + { + "uuid": "8a6903db-cdf4-4609-bdae-ff118607617d", + "start": { + "$date": "2021-07-03T20:51:35.000Z" + }, + "end": { + "$date": "2021-07-03T21:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2c505666-caa3-4218-9389-52bf7abf04af", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T22:07:22.000Z" + }, + "end": { + "$date": "2021-07-03T23:11:54.000Z" + }, + "events": [ + { + "uuid": "6a3c1ed3-5dfa-4d81-9dc8-e31a0496e310", + "start": { + "$date": "2021-07-03T22:07:22.000Z" + }, + "end": { + "$date": "2021-07-03T23:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b7047e21-d51d-4a4b-9cc6-0279834a4bab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-03T22:19:26.000Z" + }, + "end": { + "$date": "2021-07-04T02:24:22.000Z" + }, + "events": [ + { + "uuid": "900e67de-7470-4886-93c3-060485d059f5", + "start": { + "$date": "2021-07-03T22:19:26.000Z" + }, + "end": { + "$date": "2021-07-04T02:24:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d2626290-656a-41dc-b900-cb506b9525bd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-03T22:20:16.000Z" + }, + "end": { + "$date": "2021-07-03T23:07:30.000Z" + }, + "events": [ + { + "uuid": "c20a276e-170c-412c-9035-63f8880d2310", + "start": { + "$date": "2021-07-03T22:20:16.000Z" + }, + "end": { + "$date": "2021-07-03T23:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a9833015-3c63-4a8d-a527-0e1dbb0884d0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-03T22:45:27.000Z" + }, + "end": { + "$date": "2021-07-04T03:03:44.000Z" + }, + "events": [ + { + "uuid": "8273d527-41fa-446e-ba6f-397ee862735c", + "start": { + "$date": "2021-07-03T22:45:27.000Z" + }, + "end": { + "$date": "2021-07-03T23:04:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d60cb053-fd7d-45f8-b03d-d8e4e61c044e", + "start": { + "$date": "2021-07-03T23:04:27.000Z" + }, + "end": { + "$date": "2021-07-03T23:09:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "158ce0d5-75ee-4d1d-935e-07be2c802df5", + "start": { + "$date": "2021-07-03T23:09:27.000Z" + }, + "end": { + "$date": "2021-07-03T23:24:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "66dcd930-4be2-4cee-9f15-d53ed373364e", + "start": { + "$date": "2021-07-03T23:24:27.000Z" + }, + "end": { + "$date": "2021-07-04T02:32:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d0ff6a02-55e6-492a-b560-64a2c7ab0e70", + "start": { + "$date": "2021-07-04T02:32:27.000Z" + }, + "end": { + "$date": "2021-07-04T02:49:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab2eef64-59e7-488d-9ba6-93454a72dfd8", + "start": { + "$date": "2021-07-04T02:49:27.000Z" + }, + "end": { + "$date": "2021-07-04T02:52:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c80a740f-a5d6-4e54-bd63-3155817b812c", + "start": { + "$date": "2021-07-04T02:52:27.000Z" + }, + "end": { + "$date": "2021-07-04T03:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0e07b99e-89d6-43fb-8ee2-21ca90152113", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T23:12:44.000Z" + }, + "end": { + "$date": "2021-07-03T23:37:22.000Z" + }, + "events": [ + { + "uuid": "c7c12fb8-378a-448f-93de-edced0c45189", + "start": { + "$date": "2021-07-03T23:12:44.000Z" + }, + "end": { + "$date": "2021-07-03T23:34:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72e25c74-aaec-435a-b915-c6ed0ce5713c", + "start": { + "$date": "2021-07-03T23:34:44.000Z" + }, + "end": { + "$date": "2021-07-03T23:37:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "0efd9fbd-e62d-4a9f-9e46-9c372cc48390", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-03T23:41:27.000Z" + }, + "end": { + "$date": "2021-07-04T01:09:02.000Z" + }, + "events": [ + { + "uuid": "01942565-697b-4ddf-ab1d-b28663f4c893", + "start": { + "$date": "2021-07-03T23:41:27.000Z" + }, + "end": { + "$date": "2021-07-04T01:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2dea8f14-e9b5-4b03-b4d5-87ff25860f6e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-03T23:55:09.000Z" + }, + "end": { + "$date": "2021-07-04T01:03:31.000Z" + }, + "events": [ + { + "uuid": "4f08de72-3c99-48d4-a315-dce60adc156a", + "start": { + "$date": "2021-07-03T23:55:09.000Z" + }, + "end": { + "$date": "2021-07-04T01:03:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "1d83e26f-2a25-425a-954f-07fe56877009", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-04T01:06:27.000Z" + }, + "end": { + "$date": "2021-07-04T04:01:24.000Z" + }, + "events": [ + { + "uuid": "90e09f6d-1d44-4123-a764-fcb55a6348ae", + "start": { + "$date": "2021-07-04T01:06:27.000Z" + }, + "end": { + "$date": "2021-07-04T04:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c39cfa9a-82f7-4260-9012-2034bf78c6be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T01:22:53.000Z" + }, + "end": { + "$date": "2021-07-04T01:56:14.000Z" + }, + "events": [ + { + "uuid": "433d7ab5-c69a-4db5-93ce-95f0a373fad5", + "start": { + "$date": "2021-07-04T01:22:53.000Z" + }, + "end": { + "$date": "2021-07-04T01:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "947ee47d-5e65-4908-85a2-b9dc1caa4754", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T01:23:20.000Z" + }, + "end": { + "$date": "2021-07-04T01:53:42.000Z" + }, + "events": [ + { + "uuid": "3851161b-d127-4d2f-9207-b69c3695b7a6", + "start": { + "$date": "2021-07-04T01:23:20.000Z" + }, + "end": { + "$date": "2021-07-04T01:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f471c6e5-c4a8-4222-8bef-f2bcc229fba1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-04T01:24:06.000Z" + }, + "end": { + "$date": "2021-07-04T01:53:20.000Z" + }, + "events": [ + { + "uuid": "8abebae3-b6a4-4f13-b4d4-f5b67ead7048", + "start": { + "$date": "2021-07-04T01:24:06.000Z" + }, + "end": { + "$date": "2021-07-04T01:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "924cdd37-7b00-4e65-9bc4-f8a88e602fbd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T01:32:16.000Z" + }, + "end": { + "$date": "2021-07-04T01:53:47.000Z" + }, + "events": [ + { + "uuid": "666c3320-7c70-4f6e-986e-a9b02f59b04f", + "start": { + "$date": "2021-07-04T01:32:16.000Z" + }, + "end": { + "$date": "2021-07-04T01:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "899f6e7f-dc97-4008-9d13-c768c1d4d797", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T01:56:11.000Z" + }, + "end": { + "$date": "2021-07-04T02:11:59.000Z" + }, + "events": [ + { + "uuid": "f95eb864-b569-453a-bb68-f090944ad9d3", + "start": { + "$date": "2021-07-04T01:56:11.000Z" + }, + "end": { + "$date": "2021-07-04T02:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1c42abf0-352a-47fd-83d4-b2869831c69b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-04T02:24:38.000Z" + }, + "end": { + "$date": "2021-07-04T06:29:30.000Z" + }, + "events": [ + { + "uuid": "b70ce4ae-f566-476d-870f-b01e4d8dd9bb", + "start": { + "$date": "2021-07-04T02:24:38.000Z" + }, + "end": { + "$date": "2021-07-04T02:39:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6bf4bf5e-d97e-4dc9-965c-c184a3690fe2", + "start": { + "$date": "2021-07-04T02:39:38.000Z" + }, + "end": { + "$date": "2021-07-04T02:40:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2e8f4ce-4e20-43be-b634-417393e47a27", + "start": { + "$date": "2021-07-04T02:40:38.000Z" + }, + "end": { + "$date": "2021-07-04T02:42:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ab9854c-97f6-48d0-ad72-97029407c5ff", + "start": { + "$date": "2021-07-04T02:42:38.000Z" + }, + "end": { + "$date": "2021-07-04T02:50:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a60e68b-972a-48c3-b4fe-1842372c7b33", + "start": { + "$date": "2021-07-04T02:50:38.000Z" + }, + "end": { + "$date": "2021-07-04T06:29:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "uuid": "9473ac9f-d560-4491-af8c-ea7ae63b9674", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T02:27:37.000Z" + }, + "end": { + "$date": "2021-07-04T02:30:27.000Z" + }, + "events": [ + { + "uuid": "1d88e8dc-8fbf-4db6-bc4f-d10a066eaae7", + "start": { + "$date": "2021-07-04T02:27:37.000Z" + }, + "end": { + "$date": "2021-07-04T02:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ec0a2499-7d5d-44b2-ac5f-f079d8e14c2f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T02:38:50.000Z" + }, + "end": { + "$date": "2021-07-04T03:02:28.000Z" + }, + "events": [ + { + "uuid": "6cda3849-d420-4f9c-aa13-5463357d1d32", + "start": { + "$date": "2021-07-04T02:38:50.000Z" + }, + "end": { + "$date": "2021-07-04T03:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "9df2cfe0-28d4-41f1-9ed1-99c43561a424", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T02:56:29.000Z" + }, + "end": { + "$date": "2021-07-04T06:08:39.000Z" + }, + "events": [ + { + "uuid": "775d7993-eb53-4000-b9f6-5e65caa2b1e6", + "start": { + "$date": "2021-07-04T02:56:29.000Z" + }, + "end": { + "$date": "2021-07-04T06:08:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a5757839-15bd-4f2e-ba16-4b55a3bc4a46", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-04T02:59:13.000Z" + }, + "end": { + "$date": "2021-07-04T03:00:53.000Z" + }, + "events": [ + { + "uuid": "0ce48b21-2aa5-4780-824f-27f2bc9b899c", + "start": { + "$date": "2021-07-04T02:59:13.000Z" + }, + "end": { + "$date": "2021-07-04T03:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86cff91d-97e7-4c25-9dca-be6f8e116f6c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-04T03:00:58.000Z" + }, + "end": { + "$date": "2021-07-04T04:37:07.000Z" + }, + "events": [ + { + "uuid": "cb16a20f-abcb-4180-9ee9-0013cb4e9766", + "start": { + "$date": "2021-07-04T03:00:58.000Z" + }, + "end": { + "$date": "2021-07-04T04:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "e1acbee6-cd7e-406e-bc00-55111045ec4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-04T03:01:42.000Z" + }, + "end": { + "$date": "2021-07-04T03:45:46.000Z" + }, + "events": [ + { + "uuid": "620dba03-63b3-42d3-b560-2b22ad898acd", + "start": { + "$date": "2021-07-04T03:01:42.000Z" + }, + "end": { + "$date": "2021-07-04T03:45:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "517e96d7-5604-449d-a9ac-9dbb131070cf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T03:03:18.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:30.000Z" + }, + "events": [ + { + "uuid": "0019b874-6101-4092-a1e7-20d7e7665fef", + "start": { + "$date": "2021-07-04T03:03:18.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "22c5f438-826f-4470-89f5-2c217982f55a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T04:00:43.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:31.000Z" + }, + "events": [ + { + "uuid": "56778ef7-e8c1-48cd-a828-854bd291c087", + "start": { + "$date": "2021-07-04T04:00:43.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "fdc77c23-df6a-4bd2-9cd4-a9f411e8b27a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T03:13:30.000Z" + }, + "end": { + "$date": "2021-07-04T04:03:58.000Z" + }, + "events": [ + { + "uuid": "6d254e77-1310-4967-9edd-c972ee2ee4c7", + "start": { + "$date": "2021-07-04T03:13:30.000Z" + }, + "end": { + "$date": "2021-07-04T04:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5e043925-f0bf-4609-b51f-b930d7f6bc8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-04T03:49:37.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:33.000Z" + }, + "events": [ + { + "uuid": "23f98b33-3171-4b12-bb0f-1af1e40fd53e", + "start": { + "$date": "2021-07-04T03:49:37.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "3ba9fac6-e388-4559-89c1-2a94f3d41c0d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T04:05:03.000Z" + }, + "end": { + "$date": "2021-07-04T04:23:54.000Z" + }, + "events": [ + { + "uuid": "fe5b0410-1cbd-4b60-8f09-61e74ef76762", + "start": { + "$date": "2021-07-04T04:05:03.000Z" + }, + "end": { + "$date": "2021-07-04T04:23:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "77f44c2b-3b84-46fd-90bb-fce1aabf330b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T04:26:54.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:38.000Z" + }, + "events": [ + { + "uuid": "52bdd10a-497d-47af-9b8f-e1ae3dd7f987", + "start": { + "$date": "2021-07-04T04:26:54.000Z" + }, + "end": { + "$date": "2021-07-04T06:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a226a0e8-bd23-44bb-ae1f-b1fc78b2eabc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T06:13:51.000Z" + }, + "end": { + "$date": "2021-07-04T07:20:07.000Z" + }, + "events": [ + { + "uuid": "246817d8-c63e-4412-a320-16deadae2828", + "start": { + "$date": "2021-07-04T06:13:51.000Z" + }, + "end": { + "$date": "2021-07-04T07:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b7d27aad-d57a-40b9-8034-88cf86da0252", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T06:17:11.000Z" + }, + "end": { + "$date": "2021-07-04T07:20:38.000Z" + }, + "events": [ + { + "uuid": "09ad36c9-f1d7-4c86-aec5-ab95db740ef2", + "start": { + "$date": "2021-07-04T06:17:11.000Z" + }, + "end": { + "$date": "2021-07-04T07:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "5e465d8d-8eb4-400e-b32d-b8bdb19419c5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-04T06:43:12.000Z" + }, + "end": { + "$date": "2021-07-04T07:51:22.000Z" + }, + "events": [ + { + "uuid": "50a6dd0b-1a67-4083-a75c-2c84f06ef1de", + "start": { + "$date": "2021-07-04T06:43:12.000Z" + }, + "end": { + "$date": "2021-07-04T07:51:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "e9ff33da-f171-4aa6-94b6-7e2b994318d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T15:12:45.000Z" + }, + "end": { + "$date": "2021-07-04T16:26:10.000Z" + }, + "events": [ + { + "uuid": "3f30289f-3169-4ced-b666-7e8856d9d612", + "start": { + "$date": "2021-07-04T15:12:45.000Z" + }, + "end": { + "$date": "2021-07-04T16:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b95f6930-8817-4c28-86fc-c6b42de36629", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-04T15:15:00.000Z" + }, + "end": { + "$date": "2021-07-04T16:47:24.000Z" + }, + "events": [ + { + "uuid": "15dd23b1-915c-42c1-a2c2-3eab05e1e944", + "start": { + "$date": "2021-07-04T15:15:00.000Z" + }, + "end": { + "$date": "2021-07-04T16:47:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "cb1b3835-0d66-4dc1-9a25-35b3dcd3ef0c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-04T16:19:33.000Z" + }, + "end": { + "$date": "2021-07-04T16:25:08.000Z" + }, + "events": [ + { + "uuid": "2c894067-4ac4-4022-a028-f920234b7ac7", + "start": { + "$date": "2021-07-04T16:19:33.000Z" + }, + "end": { + "$date": "2021-07-04T16:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "91b9e5e4-024f-42d7-b2ef-314cdc4dc6e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T16:27:45.000Z" + }, + "end": { + "$date": "2021-07-04T17:07:00.000Z" + }, + "events": [ + { + "uuid": "86cfac7f-88bc-47af-a4c2-e630a0dcd12a", + "start": { + "$date": "2021-07-04T16:27:45.000Z" + }, + "end": { + "$date": "2021-07-04T17:07:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b9b4b55d-8a34-4023-86eb-72ce3ff42372", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T16:54:11.000Z" + }, + "end": { + "$date": "2021-07-04T19:13:25.000Z" + }, + "events": [ + { + "uuid": "5c8c8c5c-3151-4414-b6bb-ebd75053b295", + "start": { + "$date": "2021-07-04T16:54:11.000Z" + }, + "end": { + "$date": "2021-07-04T19:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "88022cf2-cd6a-40b6-be59-5ef54a4d5ec8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-04T17:06:23.000Z" + }, + "end": { + "$date": "2021-07-04T19:35:47.000Z" + }, + "events": [ + { + "uuid": "d79ad17c-37d2-4d08-a362-b8a0799ca2ca", + "start": { + "$date": "2021-07-04T17:06:23.000Z" + }, + "end": { + "$date": "2021-07-04T18:53:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "05aaa945-e4c7-412a-bb24-d88e244307f3", + "start": { + "$date": "2021-07-04T18:53:23.000Z" + }, + "end": { + "$date": "2021-07-04T18:58:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a5c4f048-9451-4b6c-bcb4-6c82444809c8", + "start": { + "$date": "2021-07-04T18:58:23.000Z" + }, + "end": { + "$date": "2021-07-04T19:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "078f7504-a1a2-4d80-9be0-aaf3aefab9ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T17:08:00.000Z" + }, + "end": { + "$date": "2021-07-04T18:42:47.000Z" + }, + "events": [ + { + "uuid": "5036413a-8e5a-4148-800d-d29393b46f56", + "start": { + "$date": "2021-07-04T17:08:00.000Z" + }, + "end": { + "$date": "2021-07-04T18:30:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a2d9207-d976-48c3-8323-fd9838554868", + "start": { + "$date": "2021-07-04T18:30:00.000Z" + }, + "end": { + "$date": "2021-07-04T18:35:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74c9b898-5175-4388-b3b4-f206ba2572cf", + "start": { + "$date": "2021-07-04T18:35:00.000Z" + }, + "end": { + "$date": "2021-07-04T18:42:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2c5dedf1-d74e-479c-8a06-68d1dc1e26f1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-04T17:43:50.000Z" + }, + "end": { + "$date": "2021-07-04T17:56:16.000Z" + }, + "events": [ + { + "uuid": "3f5b1e03-c8b4-48aa-9bc1-08def0523180", + "start": { + "$date": "2021-07-04T17:43:50.000Z" + }, + "end": { + "$date": "2021-07-04T17:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "891ade60-4d9f-4b22-96a4-9c08e589872c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T19:02:18.000Z" + }, + "end": { + "$date": "2021-07-04T19:53:51.000Z" + }, + "events": [ + { + "uuid": "71600e7c-22ce-4816-9a02-3f630e7e7c34", + "start": { + "$date": "2021-07-04T19:02:18.000Z" + }, + "end": { + "$date": "2021-07-04T19:53:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c7136fea-ca4b-4797-aadb-7948a7d89eab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T19:26:42.000Z" + }, + "end": { + "$date": "2021-07-04T20:11:09.000Z" + }, + "events": [ + { + "uuid": "755e03ea-0ea5-4228-8f9b-7b358be642d6", + "start": { + "$date": "2021-07-04T19:26:42.000Z" + }, + "end": { + "$date": "2021-07-04T20:11:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5d08f1f0-0dee-4a3b-805d-5554d8bcc136", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-04T19:35:52.000Z" + }, + "end": { + "$date": "2021-07-04T19:38:07.000Z" + }, + "events": [ + { + "uuid": "e0828850-24a2-48dd-8f97-9b83199dd9ab", + "start": { + "$date": "2021-07-04T19:35:52.000Z" + }, + "end": { + "$date": "2021-07-04T19:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "93f0637a-c6c2-4014-ad1e-c5101d4264af", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-04T19:48:44.000Z" + }, + "end": { + "$date": "2021-07-04T20:45:24.000Z" + }, + "events": [ + { + "uuid": "bfe9993e-140e-4f26-b22e-d4dd80c023d8", + "start": { + "$date": "2021-07-04T19:48:44.000Z" + }, + "end": { + "$date": "2021-07-04T20:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "0c639623-72c6-4dec-ba86-74e0e2a48dc7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T19:55:20.000Z" + }, + "end": { + "$date": "2021-07-04T19:56:41.000Z" + }, + "events": [ + { + "uuid": "2b74a632-eb82-420d-88df-2d800e7676a8", + "start": { + "$date": "2021-07-04T19:55:20.000Z" + }, + "end": { + "$date": "2021-07-04T19:56:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1c6adb13-e9c3-46a2-b02a-2b45a34e3177", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-04T19:57:01.000Z" + }, + "end": { + "$date": "2021-07-04T21:16:34.000Z" + }, + "events": [ + { + "uuid": "f5e6ded1-3c33-40aa-82a4-649593447148", + "start": { + "$date": "2021-07-04T19:57:01.000Z" + }, + "end": { + "$date": "2021-07-04T20:52:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a65d5a1-9008-4d25-aafd-c2d6abdff418", + "start": { + "$date": "2021-07-04T20:52:01.000Z" + }, + "end": { + "$date": "2021-07-04T20:57:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "240f3830-5fd4-4648-8016-2d35df11dc36", + "start": { + "$date": "2021-07-04T20:57:01.000Z" + }, + "end": { + "$date": "2021-07-04T21:07:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "984bac26-c51f-48ed-b512-e1d7e7b829bc", + "start": { + "$date": "2021-07-04T21:07:01.000Z" + }, + "end": { + "$date": "2021-07-04T21:15:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6a6283a7-7700-4209-8ff3-f5e18b8679ec", + "start": { + "$date": "2021-07-04T21:15:01.000Z" + }, + "end": { + "$date": "2021-07-04T21:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a6e48990-b0bd-4cce-a196-e91c5d8019ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T20:32:49.000Z" + }, + "end": { + "$date": "2021-07-04T20:34:20.000Z" + }, + "events": [ + { + "uuid": "a14132d8-cb7a-4016-a1c4-f760f8accc02", + "start": { + "$date": "2021-07-04T20:32:49.000Z" + }, + "end": { + "$date": "2021-07-04T20:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e698ec25-c8f0-4626-8a88-e9aefe9f26c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T20:34:52.000Z" + }, + "end": { + "$date": "2021-07-04T20:36:27.000Z" + }, + "events": [ + { + "uuid": "919101b7-8bdd-43ee-9a60-a19546e2ce2f", + "start": { + "$date": "2021-07-04T20:34:52.000Z" + }, + "end": { + "$date": "2021-07-04T20:36:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22ae114c-ac8a-49b3-b4f4-64e26b8b978f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-04T20:46:58.000Z" + }, + "end": { + "$date": "2021-07-04T21:24:05.000Z" + }, + "events": [ + { + "uuid": "34951d4c-9c72-4ddc-83d1-e00b25cf7e6e", + "start": { + "$date": "2021-07-04T20:46:58.000Z" + }, + "end": { + "$date": "2021-07-04T21:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f90cc60-3f4f-45f4-9fc2-1e4d4cf48e88", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T20:38:35.000Z" + }, + "end": { + "$date": "2021-07-04T20:43:43.000Z" + }, + "events": [ + { + "uuid": "1d4d9fda-fa33-4c17-8047-74a93f3297f4", + "start": { + "$date": "2021-07-04T20:38:35.000Z" + }, + "end": { + "$date": "2021-07-04T20:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb664ddc-bd5b-495a-8cf7-85e003a5d5c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T20:38:34.000Z" + }, + "end": { + "$date": "2021-07-04T20:43:43.000Z" + }, + "events": [ + { + "uuid": "fbd2f052-7725-4923-b39f-9a8262793f0a", + "start": { + "$date": "2021-07-04T20:38:34.000Z" + }, + "end": { + "$date": "2021-07-04T20:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53d8ac6c-67a5-4f74-a9f6-e75206440c22", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T20:47:33.000Z" + }, + "end": { + "$date": "2021-07-04T21:20:10.000Z" + }, + "events": [ + { + "uuid": "c7e10250-4001-4568-b801-c473047d84a0", + "start": { + "$date": "2021-07-04T20:47:33.000Z" + }, + "end": { + "$date": "2021-07-04T21:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a31a8a0-92e6-4186-872d-40b97aef3fe6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T20:47:31.000Z" + }, + "end": { + "$date": "2021-07-04T21:24:04.000Z" + }, + "events": [ + { + "uuid": "f98cc39b-1bc8-4328-95ba-7f57551b8e15", + "start": { + "$date": "2021-07-04T20:47:31.000Z" + }, + "end": { + "$date": "2021-07-04T21:24:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "1fee7303-2a69-490a-a09a-6afda3450c10", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T21:29:43.000Z" + }, + "end": { + "$date": "2021-07-04T21:33:31.000Z" + }, + "events": [ + { + "uuid": "550aae7a-a0b7-4375-aee2-1ffe1e23b6f0", + "start": { + "$date": "2021-07-04T21:29:43.000Z" + }, + "end": { + "$date": "2021-07-04T21:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", + "uuid": "47fd796a-f4a9-4049-8b3b-151078df56a8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T22:03:05.000Z" + }, + "end": { + "$date": "2021-07-04T22:03:31.000Z" + }, + "events": [ + { + "uuid": "90dd8370-a7d0-4124-97ab-ce136d69b7e6", + "start": { + "$date": "2021-07-04T22:03:05.000Z" + }, + "end": { + "$date": "2021-07-04T22:03:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e84939d7-a748-4d4a-8f46-f100e5a8cfd6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-04T22:07:03.000Z" + }, + "end": { + "$date": "2021-07-04T22:36:56.000Z" + }, + "events": [ + { + "uuid": "543240f6-7236-4a9f-b4b7-c78fc6c08a71", + "start": { + "$date": "2021-07-04T22:07:03.000Z" + }, + "end": { + "$date": "2021-07-04T22:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dac67082-98ba-4626-977e-dfcfdb2a01ad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-04T22:07:51.000Z" + }, + "end": { + "$date": "2021-07-04T22:34:46.000Z" + }, + "events": [ + { + "uuid": "1cd09464-20a1-43d4-97db-7345dac96068", + "start": { + "$date": "2021-07-04T22:07:51.000Z" + }, + "end": { + "$date": "2021-07-04T22:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "275c1bc2-4fad-4418-80a4-4e303a7f3057", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T23:47:58.000Z" + }, + "end": { + "$date": "2021-07-04T23:50:38.000Z" + }, + "events": [ + { + "uuid": "f8e3af79-f25f-47c6-bd3e-8137304279c2", + "start": { + "$date": "2021-07-04T23:47:58.000Z" + }, + "end": { + "$date": "2021-07-04T23:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "36877c89-92fe-47c3-81aa-557dceadfd35", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-04T23:54:18.000Z" + }, + "end": { + "$date": "2021-07-05T01:10:31.000Z" + }, + "events": [ + { + "uuid": "2d3b09d9-993c-490c-9621-abd4abfa74e8", + "start": { + "$date": "2021-07-04T23:54:18.000Z" + }, + "end": { + "$date": "2021-07-05T01:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3021b47e-63b3-4780-a68c-414626d5dbf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-05T01:15:56.000Z" + }, + "end": { + "$date": "2021-07-05T01:18:50.000Z" + }, + "events": [ + { + "uuid": "9d2e4ffa-6137-429b-9d4e-788ea67f7b37", + "start": { + "$date": "2021-07-05T01:15:56.000Z" + }, + "end": { + "$date": "2021-07-05T01:18:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6bfaaf56-4962-48aa-8a2f-bebaedf1fe2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T01:16:02.000Z" + }, + "end": { + "$date": "2021-07-05T01:17:22.000Z" + }, + "events": [ + { + "uuid": "58644577-7d74-43d2-bad3-c4fbe3745b24", + "start": { + "$date": "2021-07-05T01:16:02.000Z" + }, + "end": { + "$date": "2021-07-05T01:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "502b9714-98fb-4feb-938a-894f09b4156d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-05T01:16:27.000Z" + }, + "end": { + "$date": "2021-07-05T01:21:52.000Z" + }, + "events": [ + { + "uuid": "5756daa4-8c88-4721-ba7f-9ea6c6dc2a4e", + "start": { + "$date": "2021-07-05T01:16:27.000Z" + }, + "end": { + "$date": "2021-07-05T01:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "22ac0278-7d1e-4d19-87a7-fde2da598a76", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-05T01:19:06.000Z" + }, + "end": { + "$date": "2021-07-05T01:30:56.000Z" + }, + "events": [ + { + "uuid": "74d1699f-f82c-433c-90bf-0678cef3a395", + "start": { + "$date": "2021-07-05T01:19:06.000Z" + }, + "end": { + "$date": "2021-07-05T01:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "982ef882-1c3e-490d-91c9-ae027ca86beb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T01:21:33.000Z" + }, + "end": { + "$date": "2021-07-05T01:31:26.000Z" + }, + "events": [ + { + "uuid": "ea56f13d-409a-4c0e-9bf3-174cfed67939", + "start": { + "$date": "2021-07-05T01:21:33.000Z" + }, + "end": { + "$date": "2021-07-05T01:31:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3fe50e18-fedc-478b-b81a-8f247702a78b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-05T01:22:13.000Z" + }, + "end": { + "$date": "2021-07-05T01:27:03.000Z" + }, + "events": [ + { + "uuid": "4ea3c5d9-c1ae-4981-97f9-bd68d8ed9d92", + "start": { + "$date": "2021-07-05T01:22:13.000Z" + }, + "end": { + "$date": "2021-07-05T01:27:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c4e44abd-40e4-4233-a08b-590ff07a4a58", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-05T01:27:59.000Z" + }, + "end": { + "$date": "2021-07-05T01:31:14.000Z" + }, + "events": [ + { + "uuid": "5777877f-5f51-438d-97f2-b7c7fdcef166", + "start": { + "$date": "2021-07-05T01:27:59.000Z" + }, + "end": { + "$date": "2021-07-05T01:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a8a6e35-17ba-4508-9d7e-58937e75aab0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-05T02:13:18.000Z" + }, + "end": { + "$date": "2021-07-05T03:33:24.000Z" + }, + "events": [ + { + "uuid": "4d0f9958-719c-4497-8a54-2d13751df13d", + "start": { + "$date": "2021-07-05T02:13:18.000Z" + }, + "end": { + "$date": "2021-07-05T03:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7531bf0-d5ee-428a-afbf-85efd3f2c14a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T01:31:46.000Z" + }, + "end": { + "$date": "2021-07-05T02:10:12.000Z" + }, + "events": [ + { + "uuid": "799e4042-7c8f-4c39-b155-a9e167e3174d", + "start": { + "$date": "2021-07-05T01:31:46.000Z" + }, + "end": { + "$date": "2021-07-05T02:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6cfb3bc3-137f-454d-bc80-447018fbf2af", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-05T01:32:09.000Z" + }, + "end": { + "$date": "2021-07-05T02:10:06.000Z" + }, + "events": [ + { + "uuid": "1a830472-4803-4dcc-9e9b-5f0e7402b8e5", + "start": { + "$date": "2021-07-05T01:32:09.000Z" + }, + "end": { + "$date": "2021-07-05T02:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4905a203-21ed-42fa-8839-4a705dccd2f9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-05T01:38:49.000Z" + }, + "end": { + "$date": "2021-07-05T03:53:54.000Z" + }, + "events": [ + { + "uuid": "9a13cdfe-6dce-4dca-adf7-c58b89647075", + "start": { + "$date": "2021-07-05T01:38:49.000Z" + }, + "end": { + "$date": "2021-07-05T03:53:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0973f8db-d67d-470c-a613-c969b245ef19", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-05T02:13:06.000Z" + }, + "end": { + "$date": "2021-07-05T03:32:09.000Z" + }, + "events": [ + { + "uuid": "a8e0db2e-c2d2-488a-8d66-4a55284288e6", + "start": { + "$date": "2021-07-05T02:13:06.000Z" + }, + "end": { + "$date": "2021-07-05T03:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "a9924a93-ac81-47a8-a65a-d84ad96935a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T02:39:15.000Z" + }, + "end": { + "$date": "2021-07-05T03:35:19.000Z" + }, + "events": [ + { + "uuid": "2ac18b86-4c93-4071-9af4-25347e04a14c", + "start": { + "$date": "2021-07-05T02:39:15.000Z" + }, + "end": { + "$date": "2021-07-05T03:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df913281-fca2-44b8-b243-2fdb38b22819", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-05T03:33:14.000Z" + }, + "end": { + "$date": "2021-07-05T05:17:55.000Z" + }, + "events": [ + { + "uuid": "319a007b-b0f0-4ab7-aa03-1c4028cd1cdf", + "start": { + "$date": "2021-07-05T03:33:14.000Z" + }, + "end": { + "$date": "2021-07-05T05:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6de04778-53bb-4595-b0a9-885428689c9d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-05T03:33:35.000Z" + }, + "end": { + "$date": "2021-07-05T05:17:38.000Z" + }, + "events": [ + { + "uuid": "cdf20506-a520-478f-92bc-145551aad87e", + "start": { + "$date": "2021-07-05T03:33:35.000Z" + }, + "end": { + "$date": "2021-07-05T05:17:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a2ae7dbf-7783-4aea-b026-607983f74d5e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T03:35:39.000Z" + }, + "end": { + "$date": "2021-07-05T05:17:51.000Z" + }, + "events": [ + { + "uuid": "3bc58cb0-c61b-46e6-a123-6b359c414e65", + "start": { + "$date": "2021-07-05T03:35:39.000Z" + }, + "end": { + "$date": "2021-07-05T05:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "293eefb2-34a6-429e-97ee-6f20ec6acb44", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-05T04:25:34.000Z" + }, + "end": { + "$date": "2021-07-05T06:57:14.000Z" + }, + "events": [ + { + "uuid": "e2231d5a-4d27-465c-9541-8d550bd1cb62", + "start": { + "$date": "2021-07-05T04:25:34.000Z" + }, + "end": { + "$date": "2021-07-05T06:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "115018ea-de0e-4fe5-9ea5-a03474b1b718", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-04T21:57:29.000Z" + }, + "end": { + "$date": "2021-07-05T05:05:01.000Z" + }, + "events": [ + { + "uuid": "7dc48810-c777-4144-b227-a6155ad84f65", + "start": { + "$date": "2021-07-04T21:57:29.000Z" + }, + "end": { + "$date": "2021-07-05T05:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2a1cae04-942d-4e4d-9f89-c27faeadc7fe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-05T05:05:11.000Z" + }, + "end": { + "$date": "2021-07-05T07:51:00.000Z" + }, + "events": [ + { + "uuid": "feec8134-78a1-4d51-9baa-ecc5be8f889e", + "start": { + "$date": "2021-07-05T05:05:11.000Z" + }, + "end": { + "$date": "2021-07-05T07:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a09e1fac-5c6e-49fb-a8ec-63d353061390", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-05T05:57:21.000Z" + }, + "end": { + "$date": "2021-07-05T06:57:15.000Z" + }, + "events": [ + { + "uuid": "0a34f188-6d37-4f63-a100-372521358cba", + "start": { + "$date": "2021-07-05T05:57:21.000Z" + }, + "end": { + "$date": "2021-07-05T06:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "8dfe23b3-66cc-4e18-8d5a-112e432f5aee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T06:05:53.000Z" + }, + "end": { + "$date": "2021-07-05T08:00:46.000Z" + }, + "events": [ + { + "uuid": "9ba27ae9-2d43-491a-b9c9-16280e072a88", + "start": { + "$date": "2021-07-05T06:05:53.000Z" + }, + "end": { + "$date": "2021-07-05T08:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5c0c0fc0-4ef2-4727-84d5-dc8ee4b37e1c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-05T15:04:55.000Z" + }, + "end": { + "$date": "2021-07-05T15:18:47.000Z" + }, + "events": [ + { + "uuid": "11de0279-a87c-413d-b406-430fc802632f", + "start": { + "$date": "2021-07-05T15:04:55.000Z" + }, + "end": { + "$date": "2021-07-05T15:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "046d2b9f-dc82-4e5e-9c56-7c090a188127", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-05T15:25:18.000Z" + }, + "end": { + "$date": "2021-07-05T17:45:26.000Z" + }, + "events": [ + { + "uuid": "d865d53b-34a4-420a-9229-ff868077a6f3", + "start": { + "$date": "2021-07-05T15:25:18.000Z" + }, + "end": { + "$date": "2021-07-05T17:45:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "512f3cdb-c81d-428d-8379-87845d956a15", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-05T18:51:43.000Z" + }, + "end": { + "$date": "2021-07-05T19:02:10.000Z" + }, + "events": [ + { + "uuid": "ba04faf7-7fea-4b75-be92-1370e2ce3bc5", + "start": { + "$date": "2021-07-05T18:51:43.000Z" + }, + "end": { + "$date": "2021-07-05T21:59:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3a993c21-4a44-41c8-81a5-7f9d981c6d00", + "start": { + "$date": "2021-07-05T21:59:43.000Z" + }, + "end": { + "$date": "2021-07-05T22:04:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bda11850-275d-4627-b8f3-d39512bcbf3d", + "start": { + "$date": "2021-07-05T22:04:43.000Z" + }, + "end": { + "$date": "2021-07-05T22:14:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "92e7d218-e301-4ff2-a6ba-dfdeee2c1933", + "start": { + "$date": "2021-07-05T22:14:43.000Z" + }, + "end": { + "$date": "2021-07-05T19:02:10.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "3cb8262a-809f-4a06-a088-889aa12e4c9e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T17:41:24.000Z" + }, + "end": { + "$date": "2021-07-05T19:44:14.000Z" + }, + "events": [ + { + "uuid": "50b46723-ac3f-40c8-824e-d0316893d633", + "start": { + "$date": "2021-07-05T17:41:24.000Z" + }, + "end": { + "$date": "2021-07-05T17:56:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e25db2b6-d093-4473-92bf-4bb74a2c1ca1", + "start": { + "$date": "2021-07-05T17:56:24.000Z" + }, + "end": { + "$date": "2021-07-05T18:32:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "77fda72e-eda8-4de2-b586-77b377e9fd47", + "start": { + "$date": "2021-07-05T18:32:24.000Z" + }, + "end": { + "$date": "2021-07-05T18:35:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fdace4fd-8ad8-4016-b5b2-ead6c4c170c3", + "start": { + "$date": "2021-07-05T18:35:24.000Z" + }, + "end": { + "$date": "2021-07-05T18:40:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f0441e4-e49f-4543-8253-d61c4aa2d96b", + "start": { + "$date": "2021-07-05T18:40:24.000Z" + }, + "end": { + "$date": "2021-07-05T18:42:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "79c1695b-f38c-4682-9991-a202edc0deee", + "start": { + "$date": "2021-07-05T18:42:24.000Z" + }, + "end": { + "$date": "2021-07-05T18:49:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed198cc0-9b36-4c69-97ba-dffd536263c2", + "start": { + "$date": "2021-07-05T18:49:24.000Z" + }, + "end": { + "$date": "2021-07-05T19:44:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ae50996a-faa8-406c-8f82-afce58320f66", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-05T18:40:14.000Z" + }, + "end": { + "$date": "2021-07-05T18:51:32.000Z" + }, + "events": [ + { + "uuid": "934b4d4e-5512-41fd-9fce-fc32d9792f0d", + "start": { + "$date": "2021-07-05T18:40:14.000Z" + }, + "end": { + "$date": "2021-07-05T18:51:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "62a22088-92b3-44ef-8c21-d33b7909f8e8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-05T18:52:15.000Z" + }, + "end": { + "$date": "2021-07-05T20:27:53.000Z" + }, + "events": [ + { + "uuid": "1e4d0e57-fbdd-423d-b7ac-e455634effe3", + "start": { + "$date": "2021-07-05T18:52:15.000Z" + }, + "end": { + "$date": "2021-07-05T20:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "162ab8ed-18a9-4adc-a410-a42bbd280cbc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-05T19:00:40.000Z" + }, + "end": { + "$date": "2021-07-05T19:10:14.000Z" + }, + "events": [ + { + "uuid": "d84962d9-09f4-4f0f-8e3d-e553e9f4a1a2", + "start": { + "$date": "2021-07-05T19:00:40.000Z" + }, + "end": { + "$date": "2021-07-05T19:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "66e81c97-14a3-4483-8b27-65bb58a53276", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-05T19:31:28.000Z" + }, + "end": { + "$date": "2021-07-05T22:48:54.000Z" + }, + "events": [ + { + "uuid": "cad672fa-9b40-4550-a8dd-d2bbf2bab324", + "start": { + "$date": "2021-07-05T19:31:28.000Z" + }, + "end": { + "$date": "2021-07-05T21:39:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f418b29-2549-4c7a-9a09-ec4b4a00eef6", + "start": { + "$date": "2021-07-05T21:39:28.000Z" + }, + "end": { + "$date": "2021-07-05T21:44:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b530cd18-7a67-4070-a1df-b0f59765df5b", + "start": { + "$date": "2021-07-05T21:44:28.000Z" + }, + "end": { + "$date": "2021-07-05T22:48:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a55cad04-dda1-48f3-be0e-19a22d8eb8c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-05T19:40:08.000Z" + }, + "end": { + "$date": "2021-07-05T21:28:37.000Z" + }, + "events": [ + { + "uuid": "5905f538-8e65-4fd4-8938-f1617b4e9694", + "start": { + "$date": "2021-07-05T19:40:08.000Z" + }, + "end": { + "$date": "2021-07-05T21:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "693f3375-6b25-4ff4-a7de-a9d7ff2b95bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-05T19:41:13.000Z" + }, + "end": { + "$date": "2021-07-05T20:20:28.000Z" + }, + "events": [ + { + "uuid": "0bc8a166-71d4-4866-bc7c-000ebb66c22b", + "start": { + "$date": "2021-07-05T19:41:13.000Z" + }, + "end": { + "$date": "2021-07-05T20:20:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5de3da7c-1a9a-44e0-823c-e9b8706e01ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-06T00:43:22.000Z" + }, + "end": { + "$date": "2021-07-05T20:20:33.000Z" + }, + "events": [ + { + "uuid": "6fd7e0bc-5459-4b89-8656-75c29e9d1cc1", + "start": { + "$date": "2021-07-06T00:43:22.000Z" + }, + "end": { + "$date": "2021-07-05T20:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce295f0d-6a23-462d-a754-a394aa136505", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-05T19:44:35.000Z" + }, + "end": { + "$date": "2021-07-05T20:20:29.000Z" + }, + "events": [ + { + "uuid": "84990a79-e6a1-4947-9dbe-c9117be3b48e", + "start": { + "$date": "2021-07-05T19:44:35.000Z" + }, + "end": { + "$date": "2021-07-05T20:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "5f7972e5-3dae-4e4c-85ba-27fc78d037b4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-05T20:28:36.000Z" + }, + "end": { + "$date": "2021-07-06T00:03:51.000Z" + }, + "events": [ + { + "uuid": "ee4c6172-9f98-4437-b251-2bc13236c347", + "start": { + "$date": "2021-07-05T20:28:36.000Z" + }, + "end": { + "$date": "2021-07-05T23:44:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4910bdda-0487-41f4-bf10-4a2952d3e1c6", + "start": { + "$date": "2021-07-05T23:44:36.000Z" + }, + "end": { + "$date": "2021-07-06T00:03:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "90fe9999-e974-4458-92f9-82c133e6b1cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-05T20:42:33.000Z" + }, + "end": { + "$date": "2021-07-06T06:26:45.000Z" + }, + "events": [ + { + "uuid": "0aa53fb3-c73a-4520-8a7a-e45221da0822", + "start": { + "$date": "2021-07-05T20:42:33.000Z" + }, + "end": { + "$date": "2021-07-06T01:41:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed5838f9-4e3a-4dc9-9f62-8fc64ec18730", + "start": { + "$date": "2021-07-06T01:41:33.000Z" + }, + "end": { + "$date": "2021-07-06T01:49:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bec43872-1591-4d1d-ab7b-65a6f4136e7d", + "start": { + "$date": "2021-07-06T01:49:33.000Z" + }, + "end": { + "$date": "2021-07-06T02:11:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36710345-069e-4896-ab41-5c81359fee53", + "start": { + "$date": "2021-07-06T02:11:33.000Z" + }, + "end": { + "$date": "2021-07-06T02:14:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b24fc790-109d-4fc1-b95c-d2634c48d27c", + "start": { + "$date": "2021-07-06T02:14:33.000Z" + }, + "end": { + "$date": "2021-07-06T02:27:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1c44318-e14c-4eb0-9425-d35dc4efd8fc", + "start": { + "$date": "2021-07-06T02:27:33.000Z" + }, + "end": { + "$date": "2021-07-06T02:30:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59d631d1-a9e4-4d0a-a53e-5c0c5a464498", + "start": { + "$date": "2021-07-06T02:30:33.000Z" + }, + "end": { + "$date": "2021-07-06T06:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "858011d4-1782-40dc-9bd0-1c96fa484711", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-05T22:50:44.000Z" + }, + "end": { + "$date": "2021-07-06T00:22:37.000Z" + }, + "events": [ + { + "uuid": "8277150d-a7c9-49e8-b0b7-50d2f20d7d03", + "start": { + "$date": "2021-07-05T22:50:44.000Z" + }, + "end": { + "$date": "2021-07-06T00:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8b8389e5-ca27-443e-bd3b-288fba926590", + "uuid": "93696252-568a-4679-a106-52425283d72b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T00:04:03.000Z" + }, + "end": { + "$date": "2021-07-06T00:14:45.000Z" + }, + "events": [ + { + "uuid": "b41d9d46-93d2-4aab-ad58-a1390e470d72", + "start": { + "$date": "2021-07-06T00:04:03.000Z" + }, + "end": { + "$date": "2021-07-06T00:14:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "14598388-ac30-4547-bea4-f9f0e6f06a2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-06T00:52:04.000Z" + }, + "end": { + "$date": "2021-07-06T01:07:05.000Z" + }, + "events": [ + { + "uuid": "e1b25cba-f644-447e-a69a-13004ba43062", + "start": { + "$date": "2021-07-06T00:52:04.000Z" + }, + "end": { + "$date": "2021-07-06T01:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2b1604db-3402-4db6-ad5d-4ba2f573981b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-06T01:09:15.000Z" + }, + "end": { + "$date": "2021-07-06T01:26:31.000Z" + }, + "events": [ + { + "uuid": "01f92303-d6d6-4c2d-a68f-f247dca44617", + "start": { + "$date": "2021-07-06T01:09:15.000Z" + }, + "end": { + "$date": "2021-07-06T01:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2543edbb-4f45-47c5-8250-a3bd8ddcf384", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-06T01:32:16.000Z" + }, + "end": { + "$date": "2021-07-06T01:47:27.000Z" + }, + "events": [ + { + "uuid": "3d61f6ca-0b9b-43ff-a2f6-a9ea332c9398", + "start": { + "$date": "2021-07-06T01:32:16.000Z" + }, + "end": { + "$date": "2021-07-06T01:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "623b2db9-390d-4aa6-8251-3ef6ddd73dc3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T01:37:08.000Z" + }, + "end": { + "$date": "2021-07-06T02:00:35.000Z" + }, + "events": [ + { + "uuid": "9d7598b0-9891-420a-b63c-6ba134d6f6d7", + "start": { + "$date": "2021-07-06T01:37:08.000Z" + }, + "end": { + "$date": "2021-07-06T02:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ba34c56c-9589-4eaa-b4fe-d43729c7077a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T02:28:58.000Z" + }, + "end": { + "$date": "2021-07-06T07:07:35.000Z" + }, + "events": [ + { + "uuid": "006213ef-c61c-4f8e-8055-c060e6b6ccc3", + "start": { + "$date": "2021-07-06T02:28:58.000Z" + }, + "end": { + "$date": "2021-07-06T07:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6d8f4d3e-7cd0-4584-9a2e-ba1460946c84", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-06T02:29:16.000Z" + }, + "end": { + "$date": "2021-07-06T04:53:20.000Z" + }, + "events": [ + { + "uuid": "cdee6215-8d5f-4271-b07d-5ff9b182fd3b", + "start": { + "$date": "2021-07-06T02:29:16.000Z" + }, + "end": { + "$date": "2021-07-06T04:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8b8389e5-ca27-443e-bd3b-288fba926590", + "uuid": "400a2067-0661-497e-b09b-d69fc61cfb58", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T02:41:26.000Z" + }, + "end": { + "$date": "2021-07-06T02:59:29.000Z" + }, + "events": [ + { + "uuid": "d0277a4f-7449-4663-9a70-658af0a5a75d", + "start": { + "$date": "2021-07-06T02:41:26.000Z" + }, + "end": { + "$date": "2021-07-06T02:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "cdaf69f0-18e0-495b-9cd8-3fe929941699", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-06T02:46:11.000Z" + }, + "end": { + "$date": "2021-07-06T04:08:59.000Z" + }, + "events": [ + { + "uuid": "e420ffff-2c17-4bd4-8d02-e76a1219ac94", + "start": { + "$date": "2021-07-06T02:46:11.000Z" + }, + "end": { + "$date": "2021-07-06T04:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "63634bf2-9bde-4327-aaad-312ed4537c08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-06T04:57:59.000Z" + }, + "end": { + "$date": "2021-07-06T06:58:32.000Z" + }, + "events": [ + { + "uuid": "3df60e93-c540-43f5-851d-ba51d0beab77", + "start": { + "$date": "2021-07-06T04:57:59.000Z" + }, + "end": { + "$date": "2021-07-06T06:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cabf4b71-38db-4bd1-b7ad-883cefadec20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-06T05:12:22.000Z" + }, + "end": { + "$date": "2021-07-06T06:14:39.000Z" + }, + "events": [ + { + "uuid": "acd96558-bd9a-4d91-afb7-1ea92ec236a9", + "start": { + "$date": "2021-07-06T05:12:22.000Z" + }, + "end": { + "$date": "2021-07-06T06:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "16cc938e-2fbf-4c66-9d8f-a5699f08b312", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T16:13:15.000Z" + }, + "end": { + "$date": "2021-07-06T18:14:15.000Z" + }, + "events": [ + { + "uuid": "fd5d3ccf-df55-4a57-b34f-2fde0e4f1a74", + "start": { + "$date": "2021-07-06T16:13:15.000Z" + }, + "end": { + "$date": "2021-07-06T16:25:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1d9b2ab-3e23-4cbe-8580-2fd8e1a1189b", + "start": { + "$date": "2021-07-06T16:25:15.000Z" + }, + "end": { + "$date": "2021-07-06T16:51:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "460a1175-c033-483c-868d-3c5c39c234b2", + "start": { + "$date": "2021-07-06T16:51:15.000Z" + }, + "end": { + "$date": "2021-07-06T18:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "ccdbee2d-115b-48a8-babb-e413a41c80c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-06T16:46:47.000Z" + }, + "end": { + "$date": "2021-07-06T16:58:42.000Z" + }, + "events": [ + { + "uuid": "df595f0c-c18a-4608-ab84-b0f1e88124a6", + "start": { + "$date": "2021-07-06T16:46:47.000Z" + }, + "end": { + "$date": "2021-07-06T16:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "6bc5bead-82f7-4987-8d0e-31b91848f90b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-06T17:13:31.000Z" + }, + "end": { + "$date": "2021-07-06T19:10:56.000Z" + }, + "events": [ + { + "uuid": "9372a5c7-3b9f-4b56-8175-21d83a6ae0a5", + "start": { + "$date": "2021-07-06T17:13:31.000Z" + }, + "end": { + "$date": "2021-07-06T19:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "770fbeab-37fb-4bdb-a4d1-ad7aad16e698", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T17:17:14.000Z" + }, + "end": { + "$date": "2021-07-06T18:07:12.000Z" + }, + "events": [ + { + "uuid": "f92702ae-28b3-4f18-a6e9-80bcc873c553", + "start": { + "$date": "2021-07-06T17:17:14.000Z" + }, + "end": { + "$date": "2021-07-06T18:07:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "994237ab-80d5-43ca-b517-95606f214c32", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T18:09:12.000Z" + }, + "end": { + "$date": "2021-07-06T20:46:11.000Z" + }, + "events": [ + { + "uuid": "eda7f737-d971-4f9f-859b-04e04d8df9ab", + "start": { + "$date": "2021-07-06T18:09:12.000Z" + }, + "end": { + "$date": "2021-07-06T20:40:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5507117-b6fb-44b2-a09b-a7ce2145bfa5", + "start": { + "$date": "2021-07-06T20:40:12.000Z" + }, + "end": { + "$date": "2021-07-06T20:46:11.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dd2bc19f-aa0f-45d6-95da-a6ef93a76025", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T18:14:26.000Z" + }, + "end": { + "$date": "2021-07-06T20:14:11.000Z" + }, + "events": [ + { + "uuid": "9164432d-13d2-40ab-afa9-0b08f90b0076", + "start": { + "$date": "2021-07-06T18:14:26.000Z" + }, + "end": { + "$date": "2021-07-06T20:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3815710b-075f-4c6f-8d43-532fc3ef6fa5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-06T19:24:46.000Z" + }, + "end": { + "$date": "2021-07-06T20:01:57.000Z" + }, + "events": [ + { + "uuid": "8cda8541-5ce5-4982-b8d7-85d84dc61d04", + "start": { + "$date": "2021-07-06T19:24:46.000Z" + }, + "end": { + "$date": "2021-07-06T20:01:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "59f6faf7-ec72-4806-8261-ad7071e8b8f1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-06T19:55:31.000Z" + }, + "end": { + "$date": "2021-07-06T21:13:32.000Z" + }, + "events": [ + { + "uuid": "273f75ab-0243-4a79-aa6c-cfd984f76224", + "start": { + "$date": "2021-07-06T19:55:31.000Z" + }, + "end": { + "$date": "2021-07-06T21:13:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "3dbfeac1-3983-4b57-aa40-f2468f6bce49", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T20:20:48.000Z" + }, + "end": { + "$date": "2021-07-06T21:35:25.000Z" + }, + "events": [ + { + "uuid": "4d9b4cce-6d51-47f9-b3c4-c54f9f05384a", + "start": { + "$date": "2021-07-06T20:20:48.000Z" + }, + "end": { + "$date": "2021-07-06T21:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "862eb3d0-00e8-4614-b997-cc8d1f07dc45", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T20:48:11.000Z" + }, + "end": { + "$date": "2021-07-06T20:51:42.000Z" + }, + "events": [ + { + "uuid": "29f73a92-a293-4e4c-9a03-eb541cc89a06", + "start": { + "$date": "2021-07-06T20:48:11.000Z" + }, + "end": { + "$date": "2021-07-06T20:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "abd50082-d64b-4115-8775-368380c14473", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T21:32:53.000Z" + }, + "end": { + "$date": "2021-07-06T22:06:24.000Z" + }, + "events": [ + { + "uuid": "d0f0c23d-5869-4e84-96b8-2549ca8d8b55", + "start": { + "$date": "2021-07-06T21:32:53.000Z" + }, + "end": { + "$date": "2021-07-06T22:06:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", + "uuid": "d0792dc1-c8b6-462c-b9ef-3e50aa90c734", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T21:41:06.000Z" + }, + "end": { + "$date": "2021-07-06T22:04:41.000Z" + }, + "events": [ + { + "uuid": "8f48b052-2f54-486b-9e1f-ce76611aa772", + "start": { + "$date": "2021-07-06T21:41:06.000Z" + }, + "end": { + "$date": "2021-07-06T22:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d6de4dc-4ccf-4ce7-9e02-ba03dbf8809d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T22:36:07.000Z" + }, + "end": { + "$date": "2021-07-06T22:40:13.000Z" + }, + "events": [ + { + "uuid": "723a8d12-a80b-4933-9a92-df96dd71ccb5", + "start": { + "$date": "2021-07-06T22:36:07.000Z" + }, + "end": { + "$date": "2021-07-06T22:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "369c794b-10c3-4525-9be8-aab5bc6c4e5a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T22:42:49.000Z" + }, + "end": { + "$date": "2021-07-06T23:06:22.000Z" + }, + "events": [ + { + "uuid": "f988b8db-a115-4c47-b2f0-fb0961ca23d5", + "start": { + "$date": "2021-07-06T22:42:49.000Z" + }, + "end": { + "$date": "2021-07-06T23:06:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "fb4ab920-0b1a-4b93-8936-3221ef905a48", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T22:43:13.000Z" + }, + "end": { + "$date": "2021-07-06T23:08:27.000Z" + }, + "events": [ + { + "uuid": "100d6927-7c2b-48a5-8d32-59934f21af59", + "start": { + "$date": "2021-07-06T22:43:13.000Z" + }, + "end": { + "$date": "2021-07-06T23:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ca20c11b-124a-414a-872c-e1c4f00c4751", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-06T22:48:27.000Z" + }, + "end": { + "$date": "2021-07-06T23:33:15.000Z" + }, + "events": [ + { + "uuid": "a2420cce-5ac5-454e-a1e5-f3e2296d76eb", + "start": { + "$date": "2021-07-06T22:48:27.000Z" + }, + "end": { + "$date": "2021-07-06T23:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f3a8df29-a061-4a0d-bd00-4b00f16aac67", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-06T21:46:25.000Z" + }, + "end": { + "$date": "2021-07-07T05:16:56.000Z" + }, + "events": [ + { + "uuid": "697aa530-664b-42e4-b310-6ec07bb269f9", + "start": { + "$date": "2021-07-06T21:46:25.000Z" + }, + "end": { + "$date": "2021-07-07T02:32:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a24ff24a-2b80-4769-be26-24a461f3545a", + "start": { + "$date": "2021-07-07T02:32:25.000Z" + }, + "end": { + "$date": "2021-07-07T02:36:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa0d184f-a3b0-4dec-8db1-b6c2b1056e23", + "start": { + "$date": "2021-07-07T02:36:25.000Z" + }, + "end": { + "$date": "2021-07-07T05:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "36e4e3d3-d293-4e5d-8430-538a5d169fa0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T23:09:21.000Z" + }, + "end": { + "$date": "2021-07-06T23:17:13.000Z" + }, + "events": [ + { + "uuid": "2f668f41-a716-46b6-a8fe-233b681bc103", + "start": { + "$date": "2021-07-06T23:09:21.000Z" + }, + "end": { + "$date": "2021-07-06T23:17:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4cab3425-4a19-4286-842f-5263f0172228", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-06T23:10:04.000Z" + }, + "end": { + "$date": "2021-07-06T23:51:01.000Z" + }, + "events": [ + { + "uuid": "c59ca592-433e-4801-a1c0-123782d355f2", + "start": { + "$date": "2021-07-06T23:10:04.000Z" + }, + "end": { + "$date": "2021-07-06T23:51:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "32afa08a-9218-486c-ad99-6f78458dbd3c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T23:10:08.000Z" + }, + "end": { + "$date": "2021-07-06T23:12:18.000Z" + }, + "events": [ + { + "uuid": "b8816543-fd34-4cbe-9d20-54a5a653e442", + "start": { + "$date": "2021-07-06T23:10:08.000Z" + }, + "end": { + "$date": "2021-07-06T23:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3691bae4-1a3b-47a2-8dba-3a692652254d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-06T23:18:07.000Z" + }, + "end": { + "$date": "2021-07-06T23:51:05.000Z" + }, + "events": [ + { + "uuid": "758dbbf6-c959-4f39-8d7e-c4af60367de8", + "start": { + "$date": "2021-07-06T23:18:07.000Z" + }, + "end": { + "$date": "2021-07-06T23:51:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "01f481e6-8d50-4544-9fad-8b6e404232de", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-06T23:34:40.000Z" + }, + "end": { + "$date": "2021-07-07T01:04:49.000Z" + }, + "events": [ + { + "uuid": "989ead78-c8af-4c8a-8315-cab2da451e55", + "start": { + "$date": "2021-07-06T23:34:40.000Z" + }, + "end": { + "$date": "2021-07-07T01:04:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "4e9ce4e8-3884-41c1-a2c9-ff261e1a4db0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-06T23:57:22.000Z" + }, + "end": { + "$date": "2021-07-07T00:02:48.000Z" + }, + "events": [ + { + "uuid": "bc1033e4-a0aa-4be7-852b-a4ea26b60d30", + "start": { + "$date": "2021-07-06T23:57:22.000Z" + }, + "end": { + "$date": "2021-07-07T00:02:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "c262877e-12c9-41b0-9122-414cbe44ae24", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T00:04:04.000Z" + }, + "end": { + "$date": "2021-07-07T00:47:46.000Z" + }, + "events": [ + { + "uuid": "668c5ad6-99ea-42f1-a79b-32d1f5c3471b", + "start": { + "$date": "2021-07-07T00:04:04.000Z" + }, + "end": { + "$date": "2021-07-07T00:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c81fa22f-a8bf-4e80-892e-5d4c411cf79d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T00:20:50.000Z" + }, + "end": { + "$date": "2021-07-07T00:40:20.000Z" + }, + "events": [ + { + "uuid": "071c5f65-d840-4817-991d-1aa5834051a9", + "start": { + "$date": "2021-07-07T00:20:50.000Z" + }, + "end": { + "$date": "2021-07-07T00:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "83c96d69-ed25-4691-b076-82249fd1f2e9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-07T00:53:38.000Z" + }, + "end": { + "$date": "2021-07-07T01:41:27.000Z" + }, + "events": [ + { + "uuid": "601f5d5e-1a45-496d-b148-bdc20e36c929", + "start": { + "$date": "2021-07-07T00:53:38.000Z" + }, + "end": { + "$date": "2021-07-07T01:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a11cfdc1-5327-4840-8479-b1a304b65f1f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T01:10:08.000Z" + }, + "end": { + "$date": "2021-07-07T01:41:14.000Z" + }, + "events": [ + { + "uuid": "0562b7d0-f0d2-4c23-8c5c-4b7bbd869342", + "start": { + "$date": "2021-07-07T01:10:08.000Z" + }, + "end": { + "$date": "2021-07-07T01:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "c6ffd1c8-7740-43d9-9197-4f8570896bb3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T01:40:42.000Z" + }, + "end": { + "$date": "2021-07-07T01:55:49.000Z" + }, + "events": [ + { + "uuid": "a4503b47-e4a6-476a-8e97-78445ee2250b", + "start": { + "$date": "2021-07-07T01:40:42.000Z" + }, + "end": { + "$date": "2021-07-07T01:55:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "072edc4a-0e28-4c83-9a0d-062ec5b5549e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-07T01:41:47.000Z" + }, + "end": { + "$date": "2021-07-07T03:34:56.000Z" + }, + "events": [ + { + "uuid": "54e00db3-cfd8-4add-897d-ecfdd5914b8a", + "start": { + "$date": "2021-07-07T01:41:47.000Z" + }, + "end": { + "$date": "2021-07-07T03:34:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "b97c4e3a-b129-46ff-b35d-ca666dc64160", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-07T01:42:40.000Z" + }, + "end": { + "$date": "2021-07-07T03:34:41.000Z" + }, + "events": [ + { + "uuid": "08657818-425a-49ad-8338-2e7cd35c0c4f", + "start": { + "$date": "2021-07-07T01:42:40.000Z" + }, + "end": { + "$date": "2021-07-07T03:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1be090de-5b0b-4d7e-9420-0d4f6ff99ae9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T01:55:54.000Z" + }, + "end": { + "$date": "2021-07-07T02:34:06.000Z" + }, + "events": [ + { + "uuid": "01b3fee5-6c51-4c89-89af-138661bebc57", + "start": { + "$date": "2021-07-07T01:55:54.000Z" + }, + "end": { + "$date": "2021-07-07T02:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5aaec3f6-757b-42c4-a033-3c8b7b331363", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T01:57:48.000Z" + }, + "end": { + "$date": "2021-07-07T03:32:21.000Z" + }, + "events": [ + { + "uuid": "c2923158-a932-47c2-af72-88caf1c2613d", + "start": { + "$date": "2021-07-07T01:57:48.000Z" + }, + "end": { + "$date": "2021-07-07T02:19:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a15655fa-0d84-40ad-97d3-7ea6af6ebd21", + "start": { + "$date": "2021-07-07T02:19:48.000Z" + }, + "end": { + "$date": "2021-07-07T02:52:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6465ad85-d17e-4ef2-b36c-db2c053fe49e", + "start": { + "$date": "2021-07-07T02:52:48.000Z" + }, + "end": { + "$date": "2021-07-07T03:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "e1af7450-2881-479f-8af5-120a5ba51ee9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T02:34:26.000Z" + }, + "end": { + "$date": "2021-07-07T02:50:41.000Z" + }, + "events": [ + { + "uuid": "f89d1c40-03ce-4b53-adfd-2fefe032e54b", + "start": { + "$date": "2021-07-07T02:34:26.000Z" + }, + "end": { + "$date": "2021-07-07T02:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4e5371b2-e054-4ac6-986c-34ff46c4d28b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T03:32:50.000Z" + }, + "end": { + "$date": "2021-07-07T03:56:28.000Z" + }, + "events": [ + { + "uuid": "0c5c93d6-f28a-470a-a0fb-74f61af568c9", + "start": { + "$date": "2021-07-07T03:32:50.000Z" + }, + "end": { + "$date": "2021-07-07T03:56:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9d292c45-2120-43e6-bb12-4d4cd105f96e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T03:47:27.000Z" + }, + "end": { + "$date": "2021-07-07T06:38:47.000Z" + }, + "events": [ + { + "uuid": "c5dd9c97-f4f4-4db5-b7bf-df79172c0aeb", + "start": { + "$date": "2021-07-07T03:47:27.000Z" + }, + "end": { + "$date": "2021-07-07T04:41:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64e9ecff-ad7a-46b2-a72f-1b248e4ed288", + "start": { + "$date": "2021-07-07T04:41:27.000Z" + }, + "end": { + "$date": "2021-07-07T04:43:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db8332bf-d1c8-4125-a1d8-c7acb0817d11", + "start": { + "$date": "2021-07-07T04:43:27.000Z" + }, + "end": { + "$date": "2021-07-07T04:45:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80050a3a-a946-45e8-babb-d4822d373701", + "start": { + "$date": "2021-07-07T04:45:27.000Z" + }, + "end": { + "$date": "2021-07-07T04:48:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1a40d40-3979-4932-9cf6-8d6b4c65812c", + "start": { + "$date": "2021-07-07T04:48:27.000Z" + }, + "end": { + "$date": "2021-07-07T05:12:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8fb92a5-34ca-416b-b1b9-09f4d8188255", + "start": { + "$date": "2021-07-07T05:12:27.000Z" + }, + "end": { + "$date": "2021-07-07T06:38:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ea1444db-1b85-4baa-bb72-3195a38baeae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T03:50:32.000Z" + }, + "end": { + "$date": "2021-07-07T03:54:57.000Z" + }, + "events": [ + { + "uuid": "f6a8e35e-2e91-482c-993c-a77cb20b16e0", + "start": { + "$date": "2021-07-07T03:50:32.000Z" + }, + "end": { + "$date": "2021-07-07T03:54:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3eca232a-7596-4320-ac05-dcf123955b5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-07T03:52:11.000Z" + }, + "end": { + "$date": "2021-07-07T05:59:42.000Z" + }, + "events": [ + { + "uuid": "2afbcf78-c263-4aa7-a9a8-a94ac0c478c7", + "start": { + "$date": "2021-07-07T03:52:11.000Z" + }, + "end": { + "$date": "2021-07-07T05:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "51686f72-6a17-4a4e-bb86-4cc7fbb03972", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T03:58:10.000Z" + }, + "end": { + "$date": "2021-07-07T04:42:00.000Z" + }, + "events": [ + { + "uuid": "65f86dda-4e84-431a-bbdf-c5688cd48a38", + "start": { + "$date": "2021-07-07T03:58:10.000Z" + }, + "end": { + "$date": "2021-07-07T04:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "082b169c-3e6b-4841-8eff-e3d3f64874d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T03:58:20.000Z" + }, + "end": { + "$date": "2021-07-07T04:30:45.000Z" + }, + "events": [ + { + "uuid": "7e43c9b9-53bb-4a15-b6ed-d4a6339d7a15", + "start": { + "$date": "2021-07-07T03:58:20.000Z" + }, + "end": { + "$date": "2021-07-07T04:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c61862a8-865a-4e0d-b309-e6ea08fd5570", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-07T03:59:10.000Z" + }, + "end": { + "$date": "2021-07-07T04:38:11.000Z" + }, + "events": [ + { + "uuid": "bda3e685-6fa8-4a87-83ca-151c9fa08a33", + "start": { + "$date": "2021-07-07T03:59:10.000Z" + }, + "end": { + "$date": "2021-07-07T04:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a388dbf0-d2da-4e37-8633-d11d9427ff27", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T03:59:28.000Z" + }, + "end": { + "$date": "2021-07-07T04:38:20.000Z" + }, + "events": [ + { + "uuid": "77f9a29e-09b1-4c5c-9134-f186c7eb8608", + "start": { + "$date": "2021-07-07T03:59:28.000Z" + }, + "end": { + "$date": "2021-07-07T04:38:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f4375ce9-3d71-4932-a9cf-565ccb54ca1e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T04:39:57.000Z" + }, + "end": { + "$date": "2021-07-07T05:26:48.000Z" + }, + "events": [ + { + "uuid": "69a5aa51-1e3c-4c9f-b8d1-afef437be102", + "start": { + "$date": "2021-07-07T04:39:57.000Z" + }, + "end": { + "$date": "2021-07-07T05:26:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "51983b2c-a8f1-4c5c-b2a4-85093ab904bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T04:42:51.000Z" + }, + "end": { + "$date": "2021-07-07T05:27:04.000Z" + }, + "events": [ + { + "uuid": "fc432b63-6289-45f2-818a-38bd5ec20fda", + "start": { + "$date": "2021-07-07T04:42:51.000Z" + }, + "end": { + "$date": "2021-07-07T05:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "8df6601c-2cbd-4462-9511-1fc4ffd942ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T05:29:19.000Z" + }, + "end": { + "$date": "2021-07-07T07:39:45.000Z" + }, + "events": [ + { + "uuid": "139a4d52-0c8b-40de-be63-044746d56dab", + "start": { + "$date": "2021-07-07T05:29:19.000Z" + }, + "end": { + "$date": "2021-07-07T07:39:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae1b58d1-ebbe-4df1-8c73-c3c15aa0b0ab", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-07T06:07:46.000Z" + }, + "end": { + "$date": "2021-07-07T06:30:23.000Z" + }, + "events": [ + { + "uuid": "3fdf86bc-59f2-4667-89a8-ffeb477c3695", + "start": { + "$date": "2021-07-07T06:07:46.000Z" + }, + "end": { + "$date": "2021-07-07T06:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f64dc0ae-6af6-4d59-b42e-9cb2c145ce2c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-07T06:40:25.000Z" + }, + "end": { + "$date": "2021-07-07T07:16:33.000Z" + }, + "events": [ + { + "uuid": "42ea33be-0e9c-4ee5-b811-a5d9914580f2", + "start": { + "$date": "2021-07-07T06:40:25.000Z" + }, + "end": { + "$date": "2021-07-07T07:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "2175f075-c58a-48df-ab01-6346c5bde744", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T07:07:36.000Z" + }, + "end": { + "$date": "2021-07-07T07:51:08.000Z" + }, + "events": [ + { + "uuid": "33b38b25-fde7-44c0-8340-9baf53bb19cd", + "start": { + "$date": "2021-07-07T07:07:36.000Z" + }, + "end": { + "$date": "2021-07-07T07:51:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7cef26a9-b74c-4605-8613-f872f1994838", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T13:59:55.000Z" + }, + "end": { + "$date": "2021-07-07T15:51:29.000Z" + }, + "events": [ + { + "uuid": "5820cb00-851e-42c6-982d-c64facc11173", + "start": { + "$date": "2021-07-07T13:59:55.000Z" + }, + "end": { + "$date": "2021-07-07T15:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bd80b4d7-100c-4b08-9651-d863a9797165", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T15:51:38.000Z" + }, + "end": { + "$date": "2021-07-07T15:59:00.000Z" + }, + "events": [ + { + "uuid": "31dbd198-2f15-4514-90b5-6617a5e166f5", + "start": { + "$date": "2021-07-07T15:51:38.000Z" + }, + "end": { + "$date": "2021-07-07T15:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "50feccb9-13bd-42c8-851f-da472f42dd1e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T15:59:09.000Z" + }, + "end": { + "$date": "2021-07-07T16:13:51.000Z" + }, + "events": [ + { + "uuid": "6f10dbd1-6627-4aba-a9e4-7ac9d116e7c1", + "start": { + "$date": "2021-07-07T15:59:09.000Z" + }, + "end": { + "$date": "2021-07-07T16:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d0e4670b-010c-4ddb-9ef1-41be47390a38", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T16:20:26.000Z" + }, + "end": { + "$date": "2021-07-07T16:34:43.000Z" + }, + "events": [ + { + "uuid": "c9b28ff1-8bc4-4534-892f-b76c823d7429", + "start": { + "$date": "2021-07-07T16:20:26.000Z" + }, + "end": { + "$date": "2021-07-07T16:34:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "fc53a6ab-f399-4460-bc1c-5516532d8c56", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T16:36:24.000Z" + }, + "end": { + "$date": "2021-07-07T16:53:04.000Z" + }, + "events": [ + { + "uuid": "b8603803-d28b-4ac9-bceb-d771eb82fd0d", + "start": { + "$date": "2021-07-07T16:36:24.000Z" + }, + "end": { + "$date": "2021-07-07T16:53:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "ae3cfb4a-1a19-4bf9-9b44-134e752d77cf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T16:54:50.000Z" + }, + "end": { + "$date": "2021-07-07T17:06:12.000Z" + }, + "events": [ + { + "uuid": "ae8cdfa9-882e-4b2c-8892-059860027ee1", + "start": { + "$date": "2021-07-07T16:54:50.000Z" + }, + "end": { + "$date": "2021-07-07T17:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "702658b7-200d-469f-b4fc-8c922d8ff7e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T16:58:56.000Z" + }, + "end": { + "$date": "2021-07-07T17:01:05.000Z" + }, + "events": [ + { + "uuid": "55698592-0296-4885-befe-02a9036090ca", + "start": { + "$date": "2021-07-07T16:58:56.000Z" + }, + "end": { + "$date": "2021-07-07T17:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "e01cfa8a-af14-4283-bf12-257237187718", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T17:03:06.000Z" + }, + "end": { + "$date": "2021-07-07T17:24:01.000Z" + }, + "events": [ + { + "uuid": "a4570089-5e75-4284-8f84-6717dffa47ed", + "start": { + "$date": "2021-07-07T17:03:06.000Z" + }, + "end": { + "$date": "2021-07-07T17:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86225278-d365-42cc-add8-0984dedad7d7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T17:19:16.000Z" + }, + "end": { + "$date": "2021-07-07T18:44:51.000Z" + }, + "events": [ + { + "uuid": "8330dbd5-4bac-4a63-a387-62ae88c595cc", + "start": { + "$date": "2021-07-07T17:19:16.000Z" + }, + "end": { + "$date": "2021-07-07T18:06:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88a6545e-ad95-4332-b7b0-bc3249453aee", + "start": { + "$date": "2021-07-07T18:06:16.000Z" + }, + "end": { + "$date": "2021-07-07T18:07:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "16db8071-18e3-4a2c-9d1b-1d4239406ba6", + "start": { + "$date": "2021-07-07T18:07:16.000Z" + }, + "end": { + "$date": "2021-07-07T18:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0656cf31-e6df-4dc5-b16f-27e1780870d2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-07T17:20:11.000Z" + }, + "end": { + "$date": "2021-07-07T19:42:55.000Z" + }, + "events": [ + { + "uuid": "5b5def57-c664-46b6-b105-53b68cf90f25", + "start": { + "$date": "2021-07-07T17:20:11.000Z" + }, + "end": { + "$date": "2021-07-07T19:42:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "722c71ec-b9e5-47ef-9628-c5b182af4c37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T17:57:42.000Z" + }, + "end": { + "$date": "2021-07-07T21:01:15.000Z" + }, + "events": [ + { + "uuid": "84215574-2c42-4a2c-96e4-684562377775", + "start": { + "$date": "2021-07-07T17:57:42.000Z" + }, + "end": { + "$date": "2021-07-07T21:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4ed6263d-060c-4783-93b6-61286098a6b3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-07T21:18:36.000Z" + }, + "end": { + "$date": "2021-07-08T00:11:19.000Z" + }, + "events": [ + { + "uuid": "c4f608b5-42f1-4b31-87f9-0ab105a31a0f", + "start": { + "$date": "2021-07-07T21:18:36.000Z" + }, + "end": { + "$date": "2021-07-08T00:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "25fadba8-88a1-4024-9d38-49c6ba8be907", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T21:33:28.000Z" + }, + "end": { + "$date": "2021-07-07T22:00:34.000Z" + }, + "events": [ + { + "uuid": "175df9f0-a6aa-4a65-a6e5-af9e591f6285", + "start": { + "$date": "2021-07-07T21:33:28.000Z" + }, + "end": { + "$date": "2021-07-07T22:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0d187e84-f29f-4548-b581-602977ba0156", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-07T22:05:15.000Z" + }, + "end": { + "$date": "2021-07-07T22:29:26.000Z" + }, + "events": [ + { + "uuid": "aefd2865-c75b-425f-9f34-aac5f160b292", + "start": { + "$date": "2021-07-07T22:05:15.000Z" + }, + "end": { + "$date": "2021-07-07T22:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c62e89f-4b42-4048-8d59-17ad44021a3b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-07T22:14:03.000Z" + }, + "end": { + "$date": "2021-07-07T23:10:19.000Z" + }, + "events": [ + { + "uuid": "71da544a-b087-4da6-9003-93ebe1b002de", + "start": { + "$date": "2021-07-07T22:14:03.000Z" + }, + "end": { + "$date": "2021-07-07T22:38:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1753a23f-9b59-4b0a-b7c9-9c6396af6fd9", + "start": { + "$date": "2021-07-07T22:38:03.000Z" + }, + "end": { + "$date": "2021-07-07T22:43:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ab5d8ef5-dc6e-4937-8223-27c47d4449d9", + "start": { + "$date": "2021-07-07T22:43:03.000Z" + }, + "end": { + "$date": "2021-07-07T22:53:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "887ea5c3-c2c6-4237-a682-8fa785e197d9", + "start": { + "$date": "2021-07-07T22:53:03.000Z" + }, + "end": { + "$date": "2021-07-07T22:57:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "16ee8a1d-3b39-475c-be9b-99a17ddba6a6", + "start": { + "$date": "2021-07-07T22:57:03.000Z" + }, + "end": { + "$date": "2021-07-07T23:10:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2ebb3e3-7ce1-480d-8f37-898d316dca5b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-07T22:24:32.000Z" + }, + "end": { + "$date": "2021-07-08T01:22:51.000Z" + }, + "events": [ + { + "uuid": "4f58b652-6c43-48e8-a0cc-ecff979b0d06", + "start": { + "$date": "2021-07-07T22:24:32.000Z" + }, + "end": { + "$date": "2021-07-07T23:33:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0f2a082-f6aa-43f1-8e22-db9e4119c256", + "start": { + "$date": "2021-07-07T23:33:32.000Z" + }, + "end": { + "$date": "2021-07-07T23:35:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e887b1e3-7425-4034-9025-e9d08465f784", + "start": { + "$date": "2021-07-07T23:35:32.000Z" + }, + "end": { + "$date": "2021-07-08T01:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "dbd28c61-57f6-4903-878d-826ac26f73f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-07T23:10:28.000Z" + }, + "end": { + "$date": "2021-07-08T00:26:42.000Z" + }, + "events": [ + { + "uuid": "2df9117a-deeb-42d1-8c69-70043392e1e6", + "start": { + "$date": "2021-07-07T23:10:28.000Z" + }, + "end": { + "$date": "2021-07-08T00:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "66d9651f-527b-4cbb-9c56-950a5b65115d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-08T01:06:11.000Z" + }, + "end": { + "$date": "2021-07-08T01:06:16.000Z" + }, + "events": [ + { + "uuid": "4b8153dc-86d8-4e48-ac73-c2633b1b53f5", + "start": { + "$date": "2021-07-08T01:06:11.000Z" + }, + "end": { + "$date": "2021-07-08T01:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6c991e1a-5127-49df-b4f7-9325ec287476", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-08T01:19:48.000Z" + }, + "end": { + "$date": "2021-07-08T03:15:13.000Z" + }, + "events": [ + { + "uuid": "a98b5d6f-cc18-4ae6-9ef1-5fb62fee6ccd", + "start": { + "$date": "2021-07-08T01:19:48.000Z" + }, + "end": { + "$date": "2021-07-08T03:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "33401d56-cb5d-46b7-a13c-d63202b64721", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T01:44:43.000Z" + }, + "end": { + "$date": "2021-07-08T03:20:49.000Z" + }, + "events": [ + { + "uuid": "af991101-d864-49cf-ae90-7748404f4a47", + "start": { + "$date": "2021-07-08T01:44:43.000Z" + }, + "end": { + "$date": "2021-07-08T03:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bbf744c6-21fc-48fb-8ab9-dbce0dae64a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-08T01:46:47.000Z" + }, + "end": { + "$date": "2021-07-08T03:14:46.000Z" + }, + "events": [ + { + "uuid": "dc34fac1-e807-4996-ac73-edd6e3ab4b99", + "start": { + "$date": "2021-07-08T01:46:47.000Z" + }, + "end": { + "$date": "2021-07-08T03:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9f41b8c9-63f1-48b5-a23d-98a0737607ae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-08T01:56:43.000Z" + }, + "end": { + "$date": "2021-07-08T06:49:20.000Z" + }, + "events": [ + { + "uuid": "871634d8-e987-4d8b-aafc-87a5325ec88c", + "start": { + "$date": "2021-07-08T01:56:43.000Z" + }, + "end": { + "$date": "2021-07-08T06:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "227d86f5-36e6-4e4c-b985-67c9fdc69510", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-08T02:27:15.000Z" + }, + "end": { + "$date": "2021-07-08T03:09:46.000Z" + }, + "events": [ + { + "uuid": "b07fc32c-fb88-44a0-8671-6d9f58917421", + "start": { + "$date": "2021-07-08T02:27:15.000Z" + }, + "end": { + "$date": "2021-07-08T03:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1980a1d6-9459-4bff-b5c3-a243b6ecf3f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-08T03:02:08.000Z" + }, + "end": { + "$date": "2021-07-08T03:58:40.000Z" + }, + "events": [ + { + "uuid": "218faca8-4da5-4edc-a31b-1d70db1b1b80", + "start": { + "$date": "2021-07-08T03:02:08.000Z" + }, + "end": { + "$date": "2021-07-08T03:13:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0adb3d99-8cf9-4b64-aaee-0611d3ab4218", + "start": { + "$date": "2021-07-08T03:13:08.000Z" + }, + "end": { + "$date": "2021-07-08T03:24:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8300ffb-3e0f-43ee-99db-b0d87c27fad3", + "start": { + "$date": "2021-07-08T03:24:08.000Z" + }, + "end": { + "$date": "2021-07-08T03:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "61dfcee9-f20b-4420-af78-f7f2ac803fbf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-08T03:09:53.000Z" + }, + "end": { + "$date": "2021-07-08T03:48:58.000Z" + }, + "events": [ + { + "uuid": "2fc892e5-f7e1-4d92-811c-45bf81eacdbf", + "start": { + "$date": "2021-07-08T03:09:53.000Z" + }, + "end": { + "$date": "2021-07-08T03:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "326dccee-21b1-442d-8405-690a3d85f041", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-08T03:15:16.000Z" + }, + "end": { + "$date": "2021-07-08T04:23:37.000Z" + }, + "events": [ + { + "uuid": "5c261e49-083a-4c22-b907-538b687859e3", + "start": { + "$date": "2021-07-08T03:15:16.000Z" + }, + "end": { + "$date": "2021-07-08T04:23:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9bd6b336-9343-4520-a1d6-5502275e6c05", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-08T03:16:18.000Z" + }, + "end": { + "$date": "2021-07-08T04:24:01.000Z" + }, + "events": [ + { + "uuid": "9f19b3f7-3856-441a-942f-b064eb2e1a69", + "start": { + "$date": "2021-07-08T03:16:18.000Z" + }, + "end": { + "$date": "2021-07-08T04:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "db7c18ab-db7c-46fe-a7fa-83e62d84ad06", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T03:44:34.000Z" + }, + "end": { + "$date": "2021-07-08T05:14:34.000Z" + }, + "events": [ + { + "uuid": "1bac3575-c587-4cc0-87b9-a09ba7ec1b8b", + "start": { + "$date": "2021-07-08T03:44:34.000Z" + }, + "end": { + "$date": "2021-07-08T05:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3aba0fbb-9e6e-424b-ae15-0d89d50ef846", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-08T04:01:50.000Z" + }, + "end": { + "$date": "2021-07-08T05:08:00.000Z" + }, + "events": [ + { + "uuid": "8e1348a5-fe5f-429f-a8e8-0589b6048bda", + "start": { + "$date": "2021-07-08T04:01:50.000Z" + }, + "end": { + "$date": "2021-07-08T05:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "08fe72b6-3f87-4ce7-83ee-1ab5ebaffe85", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-08T04:02:15.000Z" + }, + "end": { + "$date": "2021-07-08T05:08:06.000Z" + }, + "events": [ + { + "uuid": "35f6286f-acc2-473d-b038-6694cf8da864", + "start": { + "$date": "2021-07-08T04:02:15.000Z" + }, + "end": { + "$date": "2021-07-08T05:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "0849f701-f0f2-45db-b3df-2efb9c3b789a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T05:16:20.000Z" + }, + "end": { + "$date": "2021-07-08T05:19:22.000Z" + }, + "events": [ + { + "uuid": "bdfcc140-93e6-43c2-b8f3-d31bbf7898a4", + "start": { + "$date": "2021-07-08T05:16:20.000Z" + }, + "end": { + "$date": "2021-07-08T05:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "32b73f55-8429-41a2-8ef3-469b2c476c24", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-08T05:22:01.000Z" + }, + "end": { + "$date": "2021-07-08T05:43:21.000Z" + }, + "events": [ + { + "uuid": "e7cbfa1b-0d19-49bd-b476-06508c115af9", + "start": { + "$date": "2021-07-08T05:22:01.000Z" + }, + "end": { + "$date": "2021-07-08T05:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "05a9beaa-f4f2-49d6-a1b3-e50aa12f74a5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T05:25:58.000Z" + }, + "end": { + "$date": "2021-07-08T07:54:23.000Z" + }, + "events": [ + { + "uuid": "0a8989e0-cdf9-440e-8369-561d1d508bd3", + "start": { + "$date": "2021-07-08T05:25:58.000Z" + }, + "end": { + "$date": "2021-07-08T07:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "97466374-dcde-4938-bdb1-c10d6ec6ad13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-08T05:34:52.000Z" + }, + "end": { + "$date": "2021-07-08T05:42:54.000Z" + }, + "events": [ + { + "uuid": "a7ca9a5c-bbe1-4dd0-bad8-1ef11eb263bb", + "start": { + "$date": "2021-07-08T05:34:52.000Z" + }, + "end": { + "$date": "2021-07-08T05:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ae1c65a-c400-4096-84c4-116de7264970", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-08T06:12:36.000Z" + }, + "end": { + "$date": "2021-07-08T06:44:52.000Z" + }, + "events": [ + { + "uuid": "762af4f6-372c-45a6-9b5f-e573c1b637f8", + "start": { + "$date": "2021-07-08T06:12:36.000Z" + }, + "end": { + "$date": "2021-07-08T06:44:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37d68c3d-a620-4554-beac-ff0242fba465", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-08T06:46:01.000Z" + }, + "end": { + "$date": "2021-07-08T06:53:09.000Z" + }, + "events": [ + { + "uuid": "5bc26429-c488-4179-8248-128dcc9b6c38", + "start": { + "$date": "2021-07-08T06:46:01.000Z" + }, + "end": { + "$date": "2021-07-08T06:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "ecfdbd38-e12c-45e0-8c9c-06ad8a18de24", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-08T15:15:36.000Z" + }, + "end": { + "$date": "2021-07-08T15:15:42.000Z" + }, + "events": [ + { + "uuid": "eddcd5fa-24c8-43c6-9de3-ff86c1ed6684", + "start": { + "$date": "2021-07-08T15:15:36.000Z" + }, + "end": { + "$date": "2021-07-08T15:15:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b92a9297-5120-4b9f-8601-4b9d78f88ff4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-08T15:55:52.000Z" + }, + "end": { + "$date": "2021-07-08T18:26:05.000Z" + }, + "events": [ + { + "uuid": "4119f783-c117-4ff7-9bb3-af05169f76a4", + "start": { + "$date": "2021-07-08T15:55:52.000Z" + }, + "end": { + "$date": "2021-07-08T18:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "61d5b475-eeae-45fa-9705-bbebe47f7ba0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-08T16:08:31.000Z" + }, + "end": { + "$date": "2021-07-08T18:24:51.000Z" + }, + "events": [ + { + "uuid": "c6acf35f-fc1a-4000-becf-fce90fcbee5f", + "start": { + "$date": "2021-07-08T16:08:31.000Z" + }, + "end": { + "$date": "2021-07-08T18:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b7d257e0-dae0-46f4-a01c-0591f18f6b01", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-08T17:55:34.000Z" + }, + "end": { + "$date": "2021-07-08T17:58:55.000Z" + }, + "events": [ + { + "uuid": "e610c9bd-0dc4-4007-96ae-c756f7c968f0", + "start": { + "$date": "2021-07-08T17:55:34.000Z" + }, + "end": { + "$date": "2021-07-08T17:58:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "1bb3b186-5afc-4854-a411-81db03c35d8d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-08T23:30:51.000Z" + }, + "end": { + "$date": "2021-07-08T23:30:56.000Z" + }, + "events": [ + { + "uuid": "8565177d-97c8-4aab-8632-f0902c735cb5", + "start": { + "$date": "2021-07-08T23:30:51.000Z" + }, + "end": { + "$date": "2021-07-08T23:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "74ffa3ae-aecf-447d-9356-73776cff2e6b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-08T20:37:49.000Z" + }, + "end": { + "$date": "2021-07-08T21:41:36.000Z" + }, + "events": [ + { + "uuid": "9cb16d9d-c86a-4cc0-ae4f-e5e3884ce890", + "start": { + "$date": "2021-07-08T20:37:49.000Z" + }, + "end": { + "$date": "2021-07-08T21:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f19626d6-7d62-467a-b357-232def59bdce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T21:23:16.000Z" + }, + "end": { + "$date": "2021-07-08T21:23:13.000Z" + }, + "events": [ + { + "uuid": "9a637f56-983b-4f89-8749-daad1cd410d9", + "start": { + "$date": "2021-07-08T21:23:16.000Z" + }, + "end": { + "$date": "2021-07-08T21:23:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdc15f4e-965d-492e-ab53-d30364709f96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-08T21:26:48.000Z" + }, + "end": { + "$date": "2021-07-08T21:50:45.000Z" + }, + "events": [ + { + "uuid": "eb447260-e502-405f-acac-b54f46d1b5c9", + "start": { + "$date": "2021-07-08T21:26:48.000Z" + }, + "end": { + "$date": "2021-07-08T21:50:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dfeb71a-ec63-4552-854d-38ab7979f82f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T21:25:59.000Z" + }, + "end": { + "$date": "2021-07-08T21:50:42.000Z" + }, + "events": [ + { + "uuid": "d066e238-d492-4b75-8dee-812894c526a6", + "start": { + "$date": "2021-07-08T21:25:59.000Z" + }, + "end": { + "$date": "2021-07-08T21:50:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "6a24f7fe-1f06-4227-960f-a444fde69535", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-08T21:41:42.000Z" + }, + "end": { + "$date": "2021-07-08T22:56:45.000Z" + }, + "events": [ + { + "uuid": "4b83bfe0-ddb3-4b7e-b1d9-ff09954599ae", + "start": { + "$date": "2021-07-08T21:41:42.000Z" + }, + "end": { + "$date": "2021-07-08T22:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5aff1faa-db00-478c-9600-6a9ec2d21d37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T21:55:00.000Z" + }, + "end": { + "$date": "2021-07-08T22:22:47.000Z" + }, + "events": [ + { + "uuid": "1b624816-4cec-4b6b-9480-b5956c9280b3", + "start": { + "$date": "2021-07-08T21:55:00.000Z" + }, + "end": { + "$date": "2021-07-08T22:22:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa8e25e5-b05e-4544-961c-8c3fc300a000", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-08T21:56:09.000Z" + }, + "end": { + "$date": "2021-07-08T22:22:44.000Z" + }, + "events": [ + { + "uuid": "7fbae3a9-eebc-46c9-bb4d-471268f4a83c", + "start": { + "$date": "2021-07-08T21:56:09.000Z" + }, + "end": { + "$date": "2021-07-08T22:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b78c992a-6b4d-48df-9b21-0e95c4aa0c4c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-08T21:56:49.000Z" + }, + "end": { + "$date": "2021-07-08T22:11:36.000Z" + }, + "events": [ + { + "uuid": "4b3ef143-3812-4f1f-8e62-e960e12035a3", + "start": { + "$date": "2021-07-08T21:56:49.000Z" + }, + "end": { + "$date": "2021-07-08T22:11:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5b405415-e569-427c-b71d-26a693b692b2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-08T22:11:50.000Z" + }, + "end": { + "$date": "2021-07-08T23:46:53.000Z" + }, + "events": [ + { + "uuid": "d36495f0-3d2d-4236-b74a-33b96fa6aa19", + "start": { + "$date": "2021-07-08T22:11:50.000Z" + }, + "end": { + "$date": "2021-07-08T23:25:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "172a36bb-bf57-4aaa-ac64-170e0e044e41", + "start": { + "$date": "2021-07-08T23:25:50.000Z" + }, + "end": { + "$date": "2021-07-08T23:30:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c155e44-fbc5-4aca-9a7c-c50dfc85580d", + "start": { + "$date": "2021-07-08T23:30:50.000Z" + }, + "end": { + "$date": "2021-07-08T23:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a4c76ba-3526-4379-99d1-e55bf015865f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T22:27:27.000Z" + }, + "end": { + "$date": "2021-07-08T22:44:11.000Z" + }, + "events": [ + { + "uuid": "c23c199b-a47c-45bb-afcf-883b6b72508b", + "start": { + "$date": "2021-07-08T22:27:27.000Z" + }, + "end": { + "$date": "2021-07-08T22:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2792bcb1-acfa-460e-aa0a-cbfffd8e510c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-08T22:28:15.000Z" + }, + "end": { + "$date": "2021-07-08T22:44:00.000Z" + }, + "events": [ + { + "uuid": "130844aa-9210-469c-a2a9-01693534f055", + "start": { + "$date": "2021-07-08T22:28:15.000Z" + }, + "end": { + "$date": "2021-07-08T22:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2691890-6d83-473e-a0e7-faf161baf17a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T22:47:03.000Z" + }, + "end": { + "$date": "2021-07-08T23:16:34.000Z" + }, + "events": [ + { + "uuid": "9aae4fcf-b170-4fc3-9fd7-986ebbbbb8dc", + "start": { + "$date": "2021-07-08T22:47:03.000Z" + }, + "end": { + "$date": "2021-07-08T23:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "db4db870-a631-446f-ba7e-2a9d7e0146f1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-08T23:17:56.000Z" + }, + "end": { + "$date": "2021-07-08T23:43:06.000Z" + }, + "events": [ + { + "uuid": "887e8e07-a64b-4144-8b43-0f511b4b70bf", + "start": { + "$date": "2021-07-08T23:17:56.000Z" + }, + "end": { + "$date": "2021-07-08T23:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "c93f1a86-8948-4842-88ec-8972abe6534f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-08T23:26:16.000Z" + }, + "end": { + "$date": "2021-07-09T00:53:24.000Z" + }, + "events": [ + { + "uuid": "35f78858-8175-4e6b-8d5f-3568451e11ba", + "start": { + "$date": "2021-07-08T23:26:16.000Z" + }, + "end": { + "$date": "2021-07-08T23:53:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78679b11-4688-443a-a15d-b913cfc12ed2", + "start": { + "$date": "2021-07-08T23:53:16.000Z" + }, + "end": { + "$date": "2021-07-09T00:51:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "826f0f19-cfc5-43a3-b7fc-b0784a791778", + "start": { + "$date": "2021-07-09T00:51:16.000Z" + }, + "end": { + "$date": "2021-07-09T00:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "2fdd0e40-f6fd-4883-8242-7c3b20b5013c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-09T01:21:53.000Z" + }, + "end": { + "$date": "2021-07-09T01:21:58.000Z" + }, + "events": [ + { + "uuid": "c262e374-d1be-41c2-b4d4-6c6e442aeb43", + "start": { + "$date": "2021-07-09T01:21:53.000Z" + }, + "end": { + "$date": "2021-07-09T01:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "513ba13c-59b3-4e83-adf6-7626bf480323", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-08T23:47:12.000Z" + }, + "end": { + "$date": "2021-07-09T01:00:23.000Z" + }, + "events": [ + { + "uuid": "d66c6973-521e-4044-b0df-31d347b818e7", + "start": { + "$date": "2021-07-08T23:47:12.000Z" + }, + "end": { + "$date": "2021-07-09T00:50:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44537009-9036-410b-b4fa-b38d20ad3fe9", + "start": { + "$date": "2021-07-09T00:50:12.000Z" + }, + "end": { + "$date": "2021-07-09T00:54:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a342658-1641-44e3-b814-7f3277251e60", + "start": { + "$date": "2021-07-09T00:54:12.000Z" + }, + "end": { + "$date": "2021-07-09T01:00:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "f4665082-bef5-42f2-a779-233b37e93757", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T00:54:35.000Z" + }, + "end": { + "$date": "2021-07-09T03:01:22.000Z" + }, + "events": [ + { + "uuid": "4ffe37a7-b1a1-4d19-8722-7e8d8eac72eb", + "start": { + "$date": "2021-07-09T00:54:35.000Z" + }, + "end": { + "$date": "2021-07-09T03:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "96b7001c-cc4e-429b-ba0e-716cec3641c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-09T01:25:00.000Z" + }, + "end": { + "$date": "2021-07-09T01:36:30.000Z" + }, + "events": [ + { + "uuid": "b20b0cc6-3412-4785-97e4-95493ba2de13", + "start": { + "$date": "2021-07-09T01:25:00.000Z" + }, + "end": { + "$date": "2021-07-09T01:36:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "30183682-e791-4d8c-bbfd-e863dadc185e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-09T01:25:04.000Z" + }, + "end": { + "$date": "2021-07-09T02:04:01.000Z" + }, + "events": [ + { + "uuid": "172f8356-d730-41fe-97c5-3eebb7d96445", + "start": { + "$date": "2021-07-09T01:25:04.000Z" + }, + "end": { + "$date": "2021-07-09T02:04:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a7991ca9-1e40-4128-adf4-8658e0d34448", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-09T01:51:16.000Z" + }, + "end": { + "$date": "2021-07-09T04:40:43.000Z" + }, + "events": [ + { + "uuid": "af059060-d019-4207-8284-e266d8f7b408", + "start": { + "$date": "2021-07-09T01:51:16.000Z" + }, + "end": { + "$date": "2021-07-09T03:08:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea67da79-4ba6-4fbc-86e6-dbae534f5fdb", + "start": { + "$date": "2021-07-09T03:08:16.000Z" + }, + "end": { + "$date": "2021-07-09T03:09:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f92f794-dcf9-45d4-97b6-294f0da50b01", + "start": { + "$date": "2021-07-09T03:09:16.000Z" + }, + "end": { + "$date": "2021-07-09T03:14:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f077da8-8565-4e42-8a6c-f7f07cd23ab6", + "start": { + "$date": "2021-07-09T03:14:16.000Z" + }, + "end": { + "$date": "2021-07-09T03:20:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d0c121e9-f5ba-463a-a9d8-5fef19a3459a", + "start": { + "$date": "2021-07-09T03:20:16.000Z" + }, + "end": { + "$date": "2021-07-09T04:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0420fe7d-e7fc-43c6-b0a7-d6d2c124be30", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-09T02:06:51.000Z" + }, + "end": { + "$date": "2021-07-09T03:27:00.000Z" + }, + "events": [ + { + "uuid": "202e40f8-d8c6-44fc-8e62-fccc16c61222", + "start": { + "$date": "2021-07-09T02:06:51.000Z" + }, + "end": { + "$date": "2021-07-09T03:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "94b0201b-cb03-4802-8df7-5832e983e174", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-09T02:18:36.000Z" + }, + "end": { + "$date": "2021-07-09T04:56:02.000Z" + }, + "events": [ + { + "uuid": "1eabbb43-2450-4e71-aa01-829b330a99c1", + "start": { + "$date": "2021-07-09T02:18:36.000Z" + }, + "end": { + "$date": "2021-07-09T04:56:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3211c474-5451-4378-ba83-ac8d9e6f5e55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-09T02:56:19.000Z" + }, + "end": { + "$date": "2021-07-09T04:55:39.000Z" + }, + "events": [ + { + "uuid": "ae7b4798-2ff9-40e2-b172-03a91ff5c265", + "start": { + "$date": "2021-07-09T02:56:19.000Z" + }, + "end": { + "$date": "2021-07-09T04:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c5556534-3622-4beb-8943-c8272c7ae613", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T03:22:16.000Z" + }, + "end": { + "$date": "2021-07-09T04:55:54.000Z" + }, + "events": [ + { + "uuid": "f7518ebb-93cc-4e34-8b34-da04242ddb12", + "start": { + "$date": "2021-07-09T03:22:16.000Z" + }, + "end": { + "$date": "2021-07-09T04:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94a7736f-51f1-4ada-a45f-1dbf88c2290f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-09T04:00:37.000Z" + }, + "end": { + "$date": "2021-07-09T04:30:03.000Z" + }, + "events": [ + { + "uuid": "e0339612-f626-447c-98cb-c5ae0d7b85ba", + "start": { + "$date": "2021-07-09T04:00:37.000Z" + }, + "end": { + "$date": "2021-07-09T04:30:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "02e525d4-98a0-4460-b921-571012f7a8c7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-09T04:19:39.000Z" + }, + "end": { + "$date": "2021-07-09T04:55:51.000Z" + }, + "events": [ + { + "uuid": "2694c553-a084-4ca7-abfe-9ee2060a540f", + "start": { + "$date": "2021-07-09T04:19:39.000Z" + }, + "end": { + "$date": "2021-07-09T04:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddf6e713-f965-473d-9112-1351a7c7622b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-09T04:36:31.000Z" + }, + "end": { + "$date": "2021-07-09T05:12:48.000Z" + }, + "events": [ + { + "uuid": "dcc7d90d-a615-4aa1-9356-90287ee7826c", + "start": { + "$date": "2021-07-09T04:36:31.000Z" + }, + "end": { + "$date": "2021-07-09T05:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3695e4e9-4e70-4303-a011-2a44493155a6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-09T04:40:53.000Z" + }, + "end": { + "$date": "2021-07-09T09:37:55.000Z" + }, + "events": [ + { + "uuid": "d382217f-a693-48d1-a984-a44eec217367", + "start": { + "$date": "2021-07-09T04:40:53.000Z" + }, + "end": { + "$date": "2021-07-09T09:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "fa7e8793-b0ab-45d2-a396-43545c29f875", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-09T06:11:39.000Z" + }, + "end": { + "$date": "2021-07-09T06:11:45.000Z" + }, + "events": [ + { + "uuid": "4dfe5ba8-c2f4-431a-bef0-0ced9c22c439", + "start": { + "$date": "2021-07-09T06:11:39.000Z" + }, + "end": { + "$date": "2021-07-09T06:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49d0ab57-9826-4b82-bb9f-a3f91dad76ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T05:29:49.000Z" + }, + "end": { + "$date": "2021-07-09T05:29:49.000Z" + }, + "events": [ + { + "uuid": "22b93db1-4304-42d7-9a8c-c7ffc0834320", + "start": { + "$date": "2021-07-09T05:29:49.000Z" + }, + "end": { + "$date": "2021-07-09T05:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d12439ad-926a-4d96-bcc7-ee51c1cc2637", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-09T05:09:26.000Z" + }, + "end": { + "$date": "2021-07-09T05:11:15.000Z" + }, + "events": [ + { + "uuid": "41751bae-43b1-4bc3-bf92-864f755e99c6", + "start": { + "$date": "2021-07-09T05:09:26.000Z" + }, + "end": { + "$date": "2021-07-09T05:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "245edefc-df1d-4a48-b225-25f18bd5ff9a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T05:34:33.000Z" + }, + "end": { + "$date": "2021-07-09T06:01:49.000Z" + }, + "events": [ + { + "uuid": "9c5fd601-9d60-42e7-b7a9-c39b83a8a425", + "start": { + "$date": "2021-07-09T05:34:33.000Z" + }, + "end": { + "$date": "2021-07-09T06:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dce51e5a-9b87-42a8-bea2-61b3919878f1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-09T05:35:07.000Z" + }, + "end": { + "$date": "2021-07-09T06:01:42.000Z" + }, + "events": [ + { + "uuid": "e43ff91b-32ba-4493-a793-12cb964d4fe7", + "start": { + "$date": "2021-07-09T05:35:07.000Z" + }, + "end": { + "$date": "2021-07-09T06:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f180283-68fb-4b5e-ab7f-3fdfc2b91cba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T06:04:41.000Z" + }, + "end": { + "$date": "2021-07-09T06:27:51.000Z" + }, + "events": [ + { + "uuid": "2ff73962-b9d1-4653-aea1-f4fa188a07fc", + "start": { + "$date": "2021-07-09T06:04:41.000Z" + }, + "end": { + "$date": "2021-07-09T06:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dfca3ed-8008-402c-812f-cfb37787dbea", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-09T06:04:43.000Z" + }, + "end": { + "$date": "2021-07-09T06:27:53.000Z" + }, + "events": [ + { + "uuid": "aeb81867-7d40-4273-a17e-16247db3187b", + "start": { + "$date": "2021-07-09T06:04:43.000Z" + }, + "end": { + "$date": "2021-07-09T06:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28e27adb-0c68-4b46-91f5-fec17302c746", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T06:28:29.000Z" + }, + "end": { + "$date": "2021-07-09T06:33:20.000Z" + }, + "events": [ + { + "uuid": "f453babf-9a1b-447d-801f-94f45a7ccfcf", + "start": { + "$date": "2021-07-09T06:28:29.000Z" + }, + "end": { + "$date": "2021-07-09T06:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfca967e-d933-4f66-b420-560ff2e0e841", + "uuid": "4d6738ed-523d-4106-af1a-9425018d3f0b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T06:35:14.000Z" + }, + "end": { + "$date": "2021-07-09T19:48:48.000Z" + }, + "events": [ + { + "uuid": "be5070e0-1cdd-46ce-b22b-792b03cb5bf1", + "start": { + "$date": "2021-07-09T06:35:14.000Z" + }, + "end": { + "$date": "2021-07-09T08:21:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e141c116-9a42-4657-a865-5f3a59371d79", + "start": { + "$date": "2021-07-09T08:21:14.000Z" + }, + "end": { + "$date": "2021-07-09T15:09:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dd590e7c-146a-4c0e-8a0e-3c3c3094752e", + "start": { + "$date": "2021-07-09T15:09:14.000Z" + }, + "end": { + "$date": "2021-07-09T19:29:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7397d47-105c-4d70-bbfd-31ed25b7fa10", + "start": { + "$date": "2021-07-09T19:29:14.000Z" + }, + "end": { + "$date": "2021-07-09T19:46:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "30e0a010-3eda-4bd0-a2ce-ff3484c79986", + "start": { + "$date": "2021-07-09T19:46:14.000Z" + }, + "end": { + "$date": "2021-07-09T19:48:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "925171ad-baf3-4d7c-895c-372c30d34b80", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-09T14:30:49.000Z" + }, + "end": { + "$date": "2021-07-09T16:06:50.000Z" + }, + "events": [ + { + "uuid": "edc1e3e5-ca72-4a1b-8774-ef64532aefbe", + "start": { + "$date": "2021-07-09T14:30:49.000Z" + }, + "end": { + "$date": "2021-07-09T16:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f6178ee6-acb0-4f63-aaf8-0789b9a5dbb7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-09T14:47:26.000Z" + }, + "end": { + "$date": "2021-07-09T15:49:06.000Z" + }, + "events": [ + { + "uuid": "1c39137e-ceba-4273-89f9-7e834b584120", + "start": { + "$date": "2021-07-09T14:47:26.000Z" + }, + "end": { + "$date": "2021-07-09T15:49:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "e6646cc9-b418-4ba4-9407-14db562b4be7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-09T16:00:32.000Z" + }, + "end": { + "$date": "2021-07-09T19:05:53.000Z" + }, + "events": [ + { + "uuid": "855a8341-595b-4b61-9d75-677f2a89de00", + "start": { + "$date": "2021-07-09T16:00:32.000Z" + }, + "end": { + "$date": "2021-07-09T18:37:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d637f332-b5cc-4d5b-8ff2-8a19dc1b6b56", + "start": { + "$date": "2021-07-09T18:37:32.000Z" + }, + "end": { + "$date": "2021-07-09T19:05:53.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "a5b993ea-b03f-4dc3-a56e-8d10bbdc7fd5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-09T19:21:55.000Z" + }, + "end": { + "$date": "2021-07-09T19:40:27.000Z" + }, + "events": [ + { + "uuid": "c3c8d56e-912d-4ad6-a792-428fdefd0bc1", + "start": { + "$date": "2021-07-09T19:21:55.000Z" + }, + "end": { + "$date": "2021-07-09T19:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "143587aa-4c4a-4ec8-aceb-a043a7191d8f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-09T19:41:01.000Z" + }, + "end": { + "$date": "2021-07-09T21:22:36.000Z" + }, + "events": [ + { + "uuid": "940afb8a-b420-4546-ac41-76d707e4c376", + "start": { + "$date": "2021-07-09T19:41:01.000Z" + }, + "end": { + "$date": "2021-07-09T19:54:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "720f00b1-7b9a-42a6-9509-25d831bcea4a", + "start": { + "$date": "2021-07-09T19:54:01.000Z" + }, + "end": { + "$date": "2021-07-09T19:59:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "951f6344-355a-4ee9-b416-c78c3571611c", + "start": { + "$date": "2021-07-09T19:59:01.000Z" + }, + "end": { + "$date": "2021-07-09T21:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "de08254f-3f0b-4317-bdae-947feceb3d32", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-09T21:05:49.000Z" + }, + "end": { + "$date": "2021-07-09T22:39:24.000Z" + }, + "events": [ + { + "uuid": "ed682aea-aaed-47bb-8f79-e583293d41af", + "start": { + "$date": "2021-07-09T21:05:49.000Z" + }, + "end": { + "$date": "2021-07-09T22:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f416d007-50a2-41b6-8a3b-6c5fb72f22ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-09T22:35:59.000Z" + }, + "end": { + "$date": "2021-07-10T00:06:30.000Z" + }, + "events": [ + { + "uuid": "4b11bcfa-3513-4b64-a0ca-b8a0d2321067", + "start": { + "$date": "2021-07-09T22:35:59.000Z" + }, + "end": { + "$date": "2021-07-09T23:50:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95b7fdff-fc8c-48f3-820d-65665d7b1122", + "start": { + "$date": "2021-07-09T23:50:59.000Z" + }, + "end": { + "$date": "2021-07-09T23:57:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0578d9b2-9b70-46e7-9668-7453b0ca267a", + "start": { + "$date": "2021-07-09T23:57:59.000Z" + }, + "end": { + "$date": "2021-07-10T00:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab719214-fec0-42d7-aadc-274ad3ceb7a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-09T23:01:24.000Z" + }, + "end": { + "$date": "2021-07-10T00:47:07.000Z" + }, + "events": [ + { + "uuid": "bcbfa74b-52c9-4ffd-bd30-8e75c3c697df", + "start": { + "$date": "2021-07-09T23:01:24.000Z" + }, + "end": { + "$date": "2021-07-10T00:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4ecf4566-7e08-4b37-bfb9-f55c270f427c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-09T23:01:38.000Z" + }, + "end": { + "$date": "2021-07-10T00:49:08.000Z" + }, + "events": [ + { + "uuid": "988a869d-7210-431b-828e-75402a3d04e9", + "start": { + "$date": "2021-07-09T23:01:38.000Z" + }, + "end": { + "$date": "2021-07-10T00:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24016841-6b34-41c8-9ceb-40fba7ff1ed9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-09T23:01:42.000Z" + }, + "end": { + "$date": "2021-07-10T01:16:31.000Z" + }, + "events": [ + { + "uuid": "afc60f55-3cc2-4cc6-b8aa-b9b805a27f3e", + "start": { + "$date": "2021-07-09T23:01:42.000Z" + }, + "end": { + "$date": "2021-07-10T01:16:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d07103ba-7da9-436a-8e2e-af92f3bb9f5d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T02:01:24.000Z" + }, + "end": { + "$date": "2021-07-10T02:13:25.000Z" + }, + "events": [ + { + "uuid": "544e9c80-9d41-49d0-bc0e-883887949cc9", + "start": { + "$date": "2021-07-10T02:01:24.000Z" + }, + "end": { + "$date": "2021-07-10T02:27:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a41c0ab8-462e-4722-9228-5b82dda9a3a3", + "start": { + "$date": "2021-07-10T02:27:24.000Z" + }, + "end": { + "$date": "2021-07-10T02:50:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "35e2ee34-1228-46ce-92a9-1d1ae0307303", + "start": { + "$date": "2021-07-10T02:50:24.000Z" + }, + "end": { + "$date": "2021-07-10T02:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7be039aa-1279-4a60-8f34-520c6ff6efbc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T02:16:10.000Z" + }, + "end": { + "$date": "2021-07-10T02:43:26.000Z" + }, + "events": [ + { + "uuid": "49dc0682-6832-4089-bc11-c8605ef8d6b1", + "start": { + "$date": "2021-07-10T02:16:10.000Z" + }, + "end": { + "$date": "2021-07-10T02:43:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9472f58a-b82a-4cf7-b2da-0184091a574f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-10T02:40:14.000Z" + }, + "end": { + "$date": "2021-07-10T02:53:01.000Z" + }, + "events": [ + { + "uuid": "09ef92c0-afca-4bab-8e88-9486ee5b9ee5", + "start": { + "$date": "2021-07-10T02:40:14.000Z" + }, + "end": { + "$date": "2021-07-10T02:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "332a3299-aa69-41f7-b1eb-087fbee98330", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T02:46:58.000Z" + }, + "end": { + "$date": "2021-07-10T03:06:41.000Z" + }, + "events": [ + { + "uuid": "fa7e5c6f-db57-40e1-85f7-864d962dcf40", + "start": { + "$date": "2021-07-10T02:46:58.000Z" + }, + "end": { + "$date": "2021-07-10T03:06:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6ef67042-3ccc-4358-a039-8b818fc1eb6f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-10T02:58:15.000Z" + }, + "end": { + "$date": "2021-07-10T05:56:58.000Z" + }, + "events": [ + { + "uuid": "d32a355d-8e50-4796-9b72-9ca831e51bc3", + "start": { + "$date": "2021-07-10T02:58:15.000Z" + }, + "end": { + "$date": "2021-07-10T05:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79269d90-2ff6-47c3-be68-66ac43f7770c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T03:09:39.000Z" + }, + "end": { + "$date": "2021-07-10T03:29:44.000Z" + }, + "events": [ + { + "uuid": "778c919c-468e-43fb-aa4f-7e0c8fb211fa", + "start": { + "$date": "2021-07-10T03:09:39.000Z" + }, + "end": { + "$date": "2021-07-10T03:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7899e9bb-724f-4eb9-9d56-8e0fa0825179", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T03:33:30.000Z" + }, + "end": { + "$date": "2021-07-10T04:01:06.000Z" + }, + "events": [ + { + "uuid": "c75a7bce-4dfe-497c-a2b6-b12202045c2e", + "start": { + "$date": "2021-07-10T03:33:30.000Z" + }, + "end": { + "$date": "2021-07-10T04:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee35288d-2377-44c7-bce1-c0af408ba0fa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-10T03:43:44.000Z" + }, + "end": { + "$date": "2021-07-10T04:03:13.000Z" + }, + "events": [ + { + "uuid": "c47a4492-e5eb-4ec3-8c92-a61fca04b64f", + "start": { + "$date": "2021-07-10T03:43:44.000Z" + }, + "end": { + "$date": "2021-07-10T04:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0d6408b5-2652-418b-adfc-a5ba34587c9b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-10T03:50:16.000Z" + }, + "end": { + "$date": "2021-07-10T05:15:52.000Z" + }, + "events": [ + { + "uuid": "e3b54dd2-cd86-428d-aef2-cb00315a0ffb", + "start": { + "$date": "2021-07-10T03:50:16.000Z" + }, + "end": { + "$date": "2021-07-10T05:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bfc943c-5ec7-4e89-9ba8-07adf4a58cd9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T04:04:53.000Z" + }, + "end": { + "$date": "2021-07-10T04:18:51.000Z" + }, + "events": [ + { + "uuid": "67ddc8dc-7819-45e4-a1ca-40c682953fb7", + "start": { + "$date": "2021-07-10T04:04:53.000Z" + }, + "end": { + "$date": "2021-07-10T04:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "c48c4b3d-0302-4c6e-8402-4cb2fd05ebe0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-10T04:03:31.000Z" + }, + "end": { + "$date": "2021-07-10T17:12:48.000Z" + }, + "events": [ + { + "uuid": "c564c397-c174-461a-868b-f56a490c76e8", + "start": { + "$date": "2021-07-10T04:03:31.000Z" + }, + "end": { + "$date": "2021-07-10T04:38:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2fa04696-a7c3-49db-9484-37e69f5341ee", + "start": { + "$date": "2021-07-10T04:38:31.000Z" + }, + "end": { + "$date": "2021-07-10T04:42:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc19c962-2657-4c2d-a1c6-331ac8ddf129", + "start": { + "$date": "2021-07-10T04:42:31.000Z" + }, + "end": { + "$date": "2021-07-10T04:52:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b63d7135-7d39-4eb0-9441-11324e10c63b", + "start": { + "$date": "2021-07-10T04:52:31.000Z" + }, + "end": { + "$date": "2021-07-10T09:52:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1c74674-58b6-4076-88a7-e63771a075ab", + "start": { + "$date": "2021-07-10T09:52:31.000Z" + }, + "end": { + "$date": "2021-07-10T10:02:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e52195d0-310b-447f-babf-49dc8b7f295b", + "start": { + "$date": "2021-07-10T10:02:31.000Z" + }, + "end": { + "$date": "2021-07-10T15:24:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "385399ac-db47-49e8-b936-7df722e45d45", + "start": { + "$date": "2021-07-10T15:24:31.000Z" + }, + "end": { + "$date": "2021-07-10T15:34:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "334d9a8a-847a-4cfd-ba90-731ad00553d3", + "start": { + "$date": "2021-07-10T15:34:31.000Z" + }, + "end": { + "$date": "2021-07-10T17:12:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "99d5f8c9-a81e-4366-83df-8919e39d9e66", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-10T04:11:22.000Z" + }, + "end": { + "$date": "2021-07-10T05:55:51.000Z" + }, + "events": [ + { + "uuid": "059894e4-7630-4234-8ba6-a9a19a6cf47e", + "start": { + "$date": "2021-07-10T04:11:22.000Z" + }, + "end": { + "$date": "2021-07-10T05:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fccfca2-b51a-40e6-a7d6-a90d0735bff0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T04:27:41.000Z" + }, + "end": { + "$date": "2021-07-10T04:48:03.000Z" + }, + "events": [ + { + "uuid": "47673b70-22ef-4deb-923f-460bccf3f571", + "start": { + "$date": "2021-07-10T04:27:41.000Z" + }, + "end": { + "$date": "2021-07-10T04:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2d9d2fa9-2cf3-42c7-8836-7d3f43ca2b4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T05:17:15.000Z" + }, + "end": { + "$date": "2021-07-10T05:56:05.000Z" + }, + "events": [ + { + "uuid": "a2161ea6-f113-4aca-8aa6-36c8a328cdca", + "start": { + "$date": "2021-07-10T05:17:15.000Z" + }, + "end": { + "$date": "2021-07-10T05:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fae04560-4de5-4200-b1a7-b990b9dd1e47", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-10T05:36:51.000Z" + }, + "end": { + "$date": "2021-07-10T05:52:38.000Z" + }, + "events": [ + { + "uuid": "c56ceee2-1117-4d16-a6c7-6b265718f8f9", + "start": { + "$date": "2021-07-10T05:36:51.000Z" + }, + "end": { + "$date": "2021-07-10T05:52:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9e75cef-fb4a-4cc6-81c1-c90925e49d5e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-10T05:58:03.000Z" + }, + "end": { + "$date": "2021-07-10T06:32:47.000Z" + }, + "events": [ + { + "uuid": "9e60cbba-ec47-4dad-8bd8-83f6bf49d2fc", + "start": { + "$date": "2021-07-10T05:58:03.000Z" + }, + "end": { + "$date": "2021-07-10T06:32:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "829785bd-4687-46f7-a732-42825c5ab342", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T06:04:44.000Z" + }, + "end": { + "$date": "2021-07-10T06:31:55.000Z" + }, + "events": [ + { + "uuid": "db1dd2c0-cb9a-4d89-ad0e-9b1e0f80b60e", + "start": { + "$date": "2021-07-10T06:04:44.000Z" + }, + "end": { + "$date": "2021-07-10T06:31:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fa1d217-427d-48fd-91c1-41f89348a7c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-10T06:04:44.000Z" + }, + "end": { + "$date": "2021-07-10T06:31:49.000Z" + }, + "events": [ + { + "uuid": "c4c4f1e2-fb7e-434b-9317-08082184ed02", + "start": { + "$date": "2021-07-10T06:04:44.000Z" + }, + "end": { + "$date": "2021-07-10T06:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75ea3882-5299-4f39-a533-7acd5d765ab9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T06:37:10.000Z" + }, + "end": { + "$date": "2021-07-10T06:57:09.000Z" + }, + "events": [ + { + "uuid": "15be4237-1859-4d42-ac0e-77ae502cff58", + "start": { + "$date": "2021-07-10T06:37:10.000Z" + }, + "end": { + "$date": "2021-07-10T06:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47321adb-c8c1-4930-a24e-b5ea2e9ec0c4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-10T06:37:27.000Z" + }, + "end": { + "$date": "2021-07-10T06:56:58.000Z" + }, + "events": [ + { + "uuid": "440909c7-da55-4718-8a22-a3e5e765d931", + "start": { + "$date": "2021-07-10T06:37:27.000Z" + }, + "end": { + "$date": "2021-07-10T06:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df4fb868-e3b3-4939-b0f1-5f0ed5a9eb41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-10T06:37:05.000Z" + }, + "end": { + "$date": "2021-07-10T06:57:00.000Z" + }, + "events": [ + { + "uuid": "0d8c4480-8fee-4bfb-9e06-4e640267b8e1", + "start": { + "$date": "2021-07-10T06:37:05.000Z" + }, + "end": { + "$date": "2021-07-10T06:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26a8b364-5d6d-433c-a765-08f38610ad6e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T07:00:16.000Z" + }, + "end": { + "$date": "2021-07-10T07:30:25.000Z" + }, + "events": [ + { + "uuid": "fe4b8b82-99c7-42c2-9183-76d4887e6bfe", + "start": { + "$date": "2021-07-10T07:00:16.000Z" + }, + "end": { + "$date": "2021-07-10T07:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e461e52a-d515-4ba3-9e4b-28d3f5c03018", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-10T07:00:42.000Z" + }, + "end": { + "$date": "2021-07-10T07:30:14.000Z" + }, + "events": [ + { + "uuid": "fb744531-dbbf-4929-8d64-48490c116ac0", + "start": { + "$date": "2021-07-10T07:00:42.000Z" + }, + "end": { + "$date": "2021-07-10T07:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d342569-d5e9-4ffa-868b-29ce3792dd09", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-10T07:00:15.000Z" + }, + "end": { + "$date": "2021-07-10T07:30:16.000Z" + }, + "events": [ + { + "uuid": "2e04f82c-6b00-422e-b722-492743037186", + "start": { + "$date": "2021-07-10T07:00:15.000Z" + }, + "end": { + "$date": "2021-07-10T07:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b46caabf-9a47-444b-88e3-729d73c33bda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T07:36:04.000Z" + }, + "end": { + "$date": "2021-07-10T07:53:58.000Z" + }, + "events": [ + { + "uuid": "68c90683-1f53-4b11-aa70-f9242f2e71ad", + "start": { + "$date": "2021-07-10T07:36:04.000Z" + }, + "end": { + "$date": "2021-07-10T07:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf94eada-32d0-4eea-bc4a-7213a378b397", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-10T07:54:00.000Z" + }, + "end": { + "$date": "2021-07-10T07:55:06.000Z" + }, + "events": [ + { + "uuid": "4cf02750-4df9-4486-bdc9-e57492855056", + "start": { + "$date": "2021-07-10T07:54:00.000Z" + }, + "end": { + "$date": "2021-07-10T07:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95cb160e-641e-4ce0-b830-e565607135f7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-10T07:36:08.000Z" + }, + "end": { + "$date": "2021-07-10T07:53:45.000Z" + }, + "events": [ + { + "uuid": "1a21ccc3-fcea-4187-9008-90a0cf414746", + "start": { + "$date": "2021-07-10T07:36:08.000Z" + }, + "end": { + "$date": "2021-07-10T07:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c44b180f-ed75-4551-a19c-91d5058f4f1f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-10T15:32:17.000Z" + }, + "end": { + "$date": "2021-07-10T15:43:11.000Z" + }, + "events": [ + { + "uuid": "54651c77-67d2-4845-973b-2681406466c6", + "start": { + "$date": "2021-07-10T15:32:17.000Z" + }, + "end": { + "$date": "2021-07-10T15:43:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8c4f99a-d4d3-4545-a00f-736173da9052", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-10T15:46:17.000Z" + }, + "end": { + "$date": "2021-07-10T16:02:51.000Z" + }, + "events": [ + { + "uuid": "10ea3076-951b-4897-9e3f-bd76d470c1f5", + "start": { + "$date": "2021-07-10T15:46:17.000Z" + }, + "end": { + "$date": "2021-07-10T16:02:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "98b087c5-59e3-4f1f-8156-be2f85529bcd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-10T16:33:40.000Z" + }, + "end": { + "$date": "2021-07-10T18:19:22.000Z" + }, + "events": [ + { + "uuid": "32b8bb77-3669-4ac1-a300-70a53963df81", + "start": { + "$date": "2021-07-10T16:33:40.000Z" + }, + "end": { + "$date": "2021-07-10T18:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "4bb4d975-5ee8-49d9-bbd9-18ad2903fd76", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-10T17:19:44.000Z" + }, + "end": { + "$date": "2021-07-10T17:19:49.000Z" + }, + "events": [ + { + "uuid": "6c8fe828-3d41-4407-86fc-f91d04551a95", + "start": { + "$date": "2021-07-10T17:19:44.000Z" + }, + "end": { + "$date": "2021-07-10T17:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "01c953d2-3892-48ad-a90b-89508f55fd0b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-10T17:51:08.000Z" + }, + "end": { + "$date": "2021-07-10T19:29:54.000Z" + }, + "events": [ + { + "uuid": "3582cd06-06c2-437c-a818-2e15e256060e", + "start": { + "$date": "2021-07-10T17:51:08.000Z" + }, + "end": { + "$date": "2021-07-10T19:29:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "543ef5a9-323d-4cb6-8526-655503dde701", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-10T18:20:18.000Z" + }, + "end": { + "$date": "2021-07-10T20:14:02.000Z" + }, + "events": [ + { + "uuid": "9a0d5ca6-e26a-45b7-ba6b-8d5b1d5769e8", + "start": { + "$date": "2021-07-10T18:20:18.000Z" + }, + "end": { + "$date": "2021-07-10T20:14:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c2c604a2-2a85-4f67-acea-9d645743f41a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-10T18:34:51.000Z" + }, + "end": { + "$date": "2021-07-10T21:14:43.000Z" + }, + "events": [ + { + "uuid": "c939e527-0042-46f4-a014-41c65d767c65", + "start": { + "$date": "2021-07-10T18:34:51.000Z" + }, + "end": { + "$date": "2021-07-10T19:30:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a46862d-0322-48b2-8c11-ad45efc81d4d", + "start": { + "$date": "2021-07-10T19:30:51.000Z" + }, + "end": { + "$date": "2021-07-10T19:34:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a83def4-ec86-4dcb-813b-eb82e395d658", + "start": { + "$date": "2021-07-10T19:34:51.000Z" + }, + "end": { + "$date": "2021-07-10T19:51:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c84970db-501c-40b9-8b21-2936b3d8c505", + "start": { + "$date": "2021-07-10T19:51:51.000Z" + }, + "end": { + "$date": "2021-07-10T19:52:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "955e0441-f239-4e9b-80a6-03fe75a2516b", + "start": { + "$date": "2021-07-10T19:52:51.000Z" + }, + "end": { + "$date": "2021-07-10T21:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75364e82-dba3-4f68-bcd3-c72640bc4caa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T19:47:53.000Z" + }, + "end": { + "$date": "2021-07-10T20:23:54.000Z" + }, + "events": [ + { + "uuid": "61417abe-c5ce-4295-934a-a2e18c782a93", + "start": { + "$date": "2021-07-10T19:47:53.000Z" + }, + "end": { + "$date": "2021-07-10T20:23:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "2cc6211f-cba8-455c-9915-1f7e30369293", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-10T20:16:16.000Z" + }, + "end": { + "$date": "2021-07-10T21:06:37.000Z" + }, + "events": [ + { + "uuid": "5ee01bfc-1253-4909-9e4d-cee1a247eba3", + "start": { + "$date": "2021-07-10T20:16:16.000Z" + }, + "end": { + "$date": "2021-07-10T20:35:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbe34a22-157d-41cf-a30b-defae8663dfb", + "start": { + "$date": "2021-07-10T20:35:16.000Z" + }, + "end": { + "$date": "2021-07-10T20:40:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bafcc8f8-d6a1-4202-b324-09dd7a0b454c", + "start": { + "$date": "2021-07-10T20:40:16.000Z" + }, + "end": { + "$date": "2021-07-10T20:50:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa4d2642-90f2-494a-872b-29f57f4bd294", + "start": { + "$date": "2021-07-10T20:50:16.000Z" + }, + "end": { + "$date": "2021-07-10T21:04:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d8269e4-f151-47b9-bb03-0e930f71c8b8", + "start": { + "$date": "2021-07-10T21:04:16.000Z" + }, + "end": { + "$date": "2021-07-10T21:06:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3dd25971-f52c-4c9f-be86-364ff2a5a101", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T20:27:23.000Z" + }, + "end": { + "$date": "2021-07-10T20:46:46.000Z" + }, + "events": [ + { + "uuid": "7ce22a80-8ffe-4f49-95b0-df52bab9ace4", + "start": { + "$date": "2021-07-10T20:27:23.000Z" + }, + "end": { + "$date": "2021-07-10T20:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3517604f-258f-46e2-b768-4a3b8c796382", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-10T20:27:36.000Z" + }, + "end": { + "$date": "2021-07-10T21:02:20.000Z" + }, + "events": [ + { + "uuid": "d7719691-55dc-416e-b9a7-2529fa753c6c", + "start": { + "$date": "2021-07-10T20:27:36.000Z" + }, + "end": { + "$date": "2021-07-10T21:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ca6586e-281a-4d7a-b271-54a94342dd72", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T20:50:41.000Z" + }, + "end": { + "$date": "2021-07-10T21:16:03.000Z" + }, + "events": [ + { + "uuid": "95c9e156-b14a-41b0-bbc1-e78210f71a6e", + "start": { + "$date": "2021-07-10T20:50:41.000Z" + }, + "end": { + "$date": "2021-07-10T21:16:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c1b7a7f-165a-4208-897f-4304189b5c3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T21:21:16.000Z" + }, + "end": { + "$date": "2021-07-10T21:39:20.000Z" + }, + "events": [ + { + "uuid": "fc656f9b-d8b3-4c94-ad12-6389efdf6b36", + "start": { + "$date": "2021-07-10T21:21:16.000Z" + }, + "end": { + "$date": "2021-07-10T21:39:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a848ca48-286f-4cc0-8baa-e714c1862702", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T21:42:04.000Z" + }, + "end": { + "$date": "2021-07-10T21:56:48.000Z" + }, + "events": [ + { + "uuid": "48f33957-5a9c-4303-8ce0-c451d313afa5", + "start": { + "$date": "2021-07-10T21:42:04.000Z" + }, + "end": { + "$date": "2021-07-10T21:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0e95f420-375b-435e-8e11-5c116c8dcf2b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-10T21:42:53.000Z" + }, + "end": { + "$date": "2021-07-10T23:59:20.000Z" + }, + "events": [ + { + "uuid": "ef41d0ad-a5f1-4822-aa13-887d68f380b7", + "start": { + "$date": "2021-07-10T21:42:53.000Z" + }, + "end": { + "$date": "2021-07-10T23:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c9360865-97cb-4586-8bcc-39b1427cb8fd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-10T21:45:27.000Z" + }, + "end": { + "$date": "2021-07-10T23:17:50.000Z" + }, + "events": [ + { + "uuid": "d70cf663-ce3f-4be6-91dd-9dd991e4c76e", + "start": { + "$date": "2021-07-10T21:45:27.000Z" + }, + "end": { + "$date": "2021-07-10T23:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5753cb5-ccde-42a8-a5f0-cbe65871f1f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T21:57:10.000Z" + }, + "end": { + "$date": "2021-07-10T22:00:02.000Z" + }, + "events": [ + { + "uuid": "10528209-e69a-466c-96d1-8c1b762a6831", + "start": { + "$date": "2021-07-10T21:57:10.000Z" + }, + "end": { + "$date": "2021-07-10T22:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "5e37f8ee-a994-4844-8dca-fc9291695422", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-10T22:37:12.000Z" + }, + "end": { + "$date": "2021-07-10T22:39:01.000Z" + }, + "events": [ + { + "uuid": "040f7d5e-4870-4c7e-ba91-eb4b2242b911", + "start": { + "$date": "2021-07-10T22:37:12.000Z" + }, + "end": { + "$date": "2021-07-10T22:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a09401fd-e90f-443e-90b1-bfe62c607139", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T22:44:32.000Z" + }, + "end": { + "$date": "2021-07-10T23:12:08.000Z" + }, + "events": [ + { + "uuid": "5866265b-f0f7-412f-9efe-ac6edd2716be", + "start": { + "$date": "2021-07-10T22:44:32.000Z" + }, + "end": { + "$date": "2021-07-10T23:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "337da926-1dec-4143-96f4-c2327af83ccc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T23:14:36.000Z" + }, + "end": { + "$date": "2021-07-10T23:48:44.000Z" + }, + "events": [ + { + "uuid": "2d38e338-3317-4ac8-a00f-705080184b07", + "start": { + "$date": "2021-07-10T23:14:36.000Z" + }, + "end": { + "$date": "2021-07-10T23:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73d256cd-7722-4490-8dd4-6fef9520ac0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-10T23:53:16.000Z" + }, + "end": { + "$date": "2021-07-11T00:16:21.000Z" + }, + "events": [ + { + "uuid": "ed57a145-6164-4210-898d-440f08ad2252", + "start": { + "$date": "2021-07-10T23:53:16.000Z" + }, + "end": { + "$date": "2021-07-11T00:16:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "93609df0-da93-4bef-bdac-6644eb7679ef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-11T00:01:48.000Z" + }, + "end": { + "$date": "2021-07-11T05:31:36.000Z" + }, + "events": [ + { + "uuid": "154a2657-d810-4c8f-a965-f00d44b96f7d", + "start": { + "$date": "2021-07-11T00:01:48.000Z" + }, + "end": { + "$date": "2021-07-11T00:12:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d9628c8-ea76-4fdd-bdec-4e515b523928", + "start": { + "$date": "2021-07-11T00:12:48.000Z" + }, + "end": { + "$date": "2021-07-11T00:15:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "02dde1ec-8291-4ed4-9e27-1a80944c9adf", + "start": { + "$date": "2021-07-11T00:15:48.000Z" + }, + "end": { + "$date": "2021-07-11T02:42:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93182207-2ad1-4cf9-90a1-4c0ff1cea95f", + "start": { + "$date": "2021-07-11T02:42:48.000Z" + }, + "end": { + "$date": "2021-07-11T02:46:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db0882d5-4a61-463b-9785-0be2ac593ebf", + "start": { + "$date": "2021-07-11T02:46:48.000Z" + }, + "end": { + "$date": "2021-07-11T03:02:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e1633866-3422-45c0-b97d-0d676963309c", + "start": { + "$date": "2021-07-11T03:02:48.000Z" + }, + "end": { + "$date": "2021-07-11T03:06:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "837bf2ff-1df2-41dd-a971-d4a38a18c94e", + "start": { + "$date": "2021-07-11T03:06:48.000Z" + }, + "end": { + "$date": "2021-07-11T05:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c6bc34e-baa6-40d4-add0-a841d64dbccd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-11T01:04:17.000Z" + }, + "end": { + "$date": "2021-07-11T01:57:34.000Z" + }, + "events": [ + { + "uuid": "fd521135-fed6-40de-b1ca-174353c475cd", + "start": { + "$date": "2021-07-11T01:04:17.000Z" + }, + "end": { + "$date": "2021-07-11T01:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "be43a986-1977-452f-91c7-488ec1362c05", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-11T01:31:08.000Z" + }, + "end": { + "$date": "2021-07-11T01:56:48.000Z" + }, + "events": [ + { + "uuid": "29634c18-d4bc-4433-84c2-1ac385e44ae0", + "start": { + "$date": "2021-07-11T01:31:08.000Z" + }, + "end": { + "$date": "2021-07-11T01:42:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c8e68bb-ce11-41c1-94d4-cd1671faf383", + "start": { + "$date": "2021-07-11T01:42:08.000Z" + }, + "end": { + "$date": "2021-07-11T01:56:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ca3535f5-2f9e-42fd-b2fe-fdb3e8d8374c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-11T01:51:22.000Z" + }, + "end": { + "$date": "2021-07-11T01:54:18.000Z" + }, + "events": [ + { + "uuid": "97172d21-550a-40f9-a053-20537b290ab2", + "start": { + "$date": "2021-07-11T01:51:22.000Z" + }, + "end": { + "$date": "2021-07-11T01:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2aadb68f-de08-46de-b679-74f53a84800a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-11T02:11:13.000Z" + }, + "end": { + "$date": "2021-07-11T03:34:03.000Z" + }, + "events": [ + { + "uuid": "f488692c-0823-4cd4-a647-3038fb60e11a", + "start": { + "$date": "2021-07-11T02:11:13.000Z" + }, + "end": { + "$date": "2021-07-11T03:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74dadf95-2cff-4a09-ac26-2d6c59175b45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T02:15:10.000Z" + }, + "end": { + "$date": "2021-07-11T02:29:21.000Z" + }, + "events": [ + { + "uuid": "6ab0cb00-90e6-4e73-a46f-b6e271bd8b9c", + "start": { + "$date": "2021-07-11T02:15:10.000Z" + }, + "end": { + "$date": "2021-07-11T02:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6f41d81-2968-4cfc-804b-0cac335be030", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T02:51:27.000Z" + }, + "end": { + "$date": "2021-07-11T03:24:51.000Z" + }, + "events": [ + { + "uuid": "c4575344-33d6-4db5-ae01-fa6fe075d94c", + "start": { + "$date": "2021-07-11T02:51:27.000Z" + }, + "end": { + "$date": "2021-07-11T03:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c587dd82-e134-4f4b-a982-c6fb92dc42b1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-11T02:36:07.000Z" + }, + "end": { + "$date": "2021-07-11T04:21:47.000Z" + }, + "events": [ + { + "uuid": "59ecb369-49df-4c2d-a8d5-ceec82953130", + "start": { + "$date": "2021-07-11T02:36:07.000Z" + }, + "end": { + "$date": "2021-07-11T04:21:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ca195b9-00c0-4044-9648-bb089c7a0171", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T03:27:04.000Z" + }, + "end": { + "$date": "2021-07-11T04:04:25.000Z" + }, + "events": [ + { + "uuid": "ca91b3b2-6a5f-4e72-83c9-c785ff30546e", + "start": { + "$date": "2021-07-11T03:27:04.000Z" + }, + "end": { + "$date": "2021-07-11T04:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c33e7f48-70b0-4047-880f-8df30e70a452", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T04:11:24.000Z" + }, + "end": { + "$date": "2021-07-11T04:38:59.000Z" + }, + "events": [ + { + "uuid": "eeb04160-7096-4a8e-9586-47919cedc55d", + "start": { + "$date": "2021-07-11T04:11:24.000Z" + }, + "end": { + "$date": "2021-07-11T04:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d327a2bd-559e-43f3-bee4-e422ccafb06c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-11T04:11:27.000Z" + }, + "end": { + "$date": "2021-07-11T04:38:43.000Z" + }, + "events": [ + { + "uuid": "40f853c0-926a-4efb-a1df-834b4502aae2", + "start": { + "$date": "2021-07-11T04:11:27.000Z" + }, + "end": { + "$date": "2021-07-11T04:38:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b8b88174-fe3b-49f4-af95-c116b13315c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-11T04:28:09.000Z" + }, + "end": { + "$date": "2021-07-11T07:42:22.000Z" + }, + "events": [ + { + "uuid": "8b1edd3e-abf4-465c-a9e2-f022e2168a94", + "start": { + "$date": "2021-07-11T04:28:09.000Z" + }, + "end": { + "$date": "2021-07-11T07:42:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "eb911bb3-f008-4c5e-8389-3e22094a5768", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-11T04:39:20.000Z" + }, + "end": { + "$date": "2021-07-11T06:03:48.000Z" + }, + "events": [ + { + "uuid": "1899d5a5-e031-4726-b9e0-f5e36631073a", + "start": { + "$date": "2021-07-11T04:39:20.000Z" + }, + "end": { + "$date": "2021-07-11T06:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1044281b-5c96-4fcb-8f47-62689b953804", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T04:39:50.000Z" + }, + "end": { + "$date": "2021-07-11T05:08:07.000Z" + }, + "events": [ + { + "uuid": "ab35e855-d9eb-4ac2-8b03-a75ad10617ee", + "start": { + "$date": "2021-07-11T04:39:50.000Z" + }, + "end": { + "$date": "2021-07-11T05:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ccae984f-5d72-4345-b8db-98e5a5cd815d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-11T05:03:40.000Z" + }, + "end": { + "$date": "2021-07-11T06:24:39.000Z" + }, + "events": [ + { + "uuid": "e637a836-a609-4eb4-9490-75197ab71abf", + "start": { + "$date": "2021-07-11T05:03:40.000Z" + }, + "end": { + "$date": "2021-07-11T06:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "435e9ef1-44bf-4ba8-8f7a-bc2e2ea3dc1e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T05:09:15.000Z" + }, + "end": { + "$date": "2021-07-11T06:24:41.000Z" + }, + "events": [ + { + "uuid": "2be8f490-a542-4e64-a738-cd9d8b541d3c", + "start": { + "$date": "2021-07-11T05:09:15.000Z" + }, + "end": { + "$date": "2021-07-11T06:24:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab5cea9f-dfe5-4694-ae05-93cd2cb178ec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-11T05:47:53.000Z" + }, + "end": { + "$date": "2021-07-11T06:19:36.000Z" + }, + "events": [ + { + "uuid": "1456c652-eda4-406f-bce6-4483d2ad2044", + "start": { + "$date": "2021-07-11T05:47:53.000Z" + }, + "end": { + "$date": "2021-07-11T06:19:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "942ba4ee-a88b-49cb-9cff-6ca4651fe3bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-11T06:27:38.000Z" + }, + "end": { + "$date": "2021-07-11T06:59:00.000Z" + }, + "events": [ + { + "uuid": "616a704e-8f63-4a1b-8fab-ab4a4a838009", + "start": { + "$date": "2021-07-11T06:27:38.000Z" + }, + "end": { + "$date": "2021-07-11T06:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "83b3e1d2-97bb-4a0e-8156-bea7aaaa4c83", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-11T06:29:38.000Z" + }, + "end": { + "$date": "2021-07-11T06:32:05.000Z" + }, + "events": [ + { + "uuid": "5bbd1794-9de2-4f79-b244-0cd9e145574f", + "start": { + "$date": "2021-07-11T06:29:38.000Z" + }, + "end": { + "$date": "2021-07-11T06:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09a98791-984f-4f25-a7c6-c3d03f5f27fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T06:38:20.000Z" + }, + "end": { + "$date": "2021-07-11T06:53:47.000Z" + }, + "events": [ + { + "uuid": "9aef3c95-452d-4e32-8f28-c2c37b45d4b8", + "start": { + "$date": "2021-07-11T06:38:20.000Z" + }, + "end": { + "$date": "2021-07-11T06:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e18628e3-70ae-4be4-a84f-0415cb2529d7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T06:56:44.000Z" + }, + "end": { + "$date": "2021-07-11T07:16:20.000Z" + }, + "events": [ + { + "uuid": "9f15516c-19aa-4861-a491-a2ca9b2a3dac", + "start": { + "$date": "2021-07-11T06:56:44.000Z" + }, + "end": { + "$date": "2021-07-11T07:16:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2df25aa1-d25b-445b-bde5-86eb2cd56342", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-11T07:16:04.000Z" + }, + "end": { + "$date": "2021-07-11T07:49:22.000Z" + }, + "events": [ + { + "uuid": "3042342c-d50c-4565-99f4-43228ae96ea4", + "start": { + "$date": "2021-07-11T07:16:04.000Z" + }, + "end": { + "$date": "2021-07-11T07:49:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "73989257-aad2-42a5-b145-8909ad40b01b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-11T15:14:04.000Z" + }, + "end": { + "$date": "2021-07-11T16:41:38.000Z" + }, + "events": [ + { + "uuid": "016e48b6-ea8d-4ec8-9d27-dbae56ed1270", + "start": { + "$date": "2021-07-11T15:14:04.000Z" + }, + "end": { + "$date": "2021-07-11T16:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "0f504f78-a4c4-4f8c-ad27-c796f22ab6fc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-11T16:55:02.000Z" + }, + "end": { + "$date": "2021-07-11T20:51:06.000Z" + }, + "events": [ + { + "uuid": "4ec81e55-4a59-4cfb-8de0-86b47c93f5ad", + "start": { + "$date": "2021-07-11T16:55:02.000Z" + }, + "end": { + "$date": "2021-07-11T17:36:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "488ac882-5496-43b5-bfb9-1bb480b99c2c", + "start": { + "$date": "2021-07-11T17:36:02.000Z" + }, + "end": { + "$date": "2021-07-11T17:39:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98fafa36-b4a8-4abe-840a-abc863cb59f4", + "start": { + "$date": "2021-07-11T17:39:02.000Z" + }, + "end": { + "$date": "2021-07-11T20:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad476404-7dd3-4b7e-85c1-5812c5792e39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T18:28:51.000Z" + }, + "end": { + "$date": "2021-07-11T18:48:09.000Z" + }, + "events": [ + { + "uuid": "c0cbf34c-cca4-4fcd-879e-bf0246b11b1b", + "start": { + "$date": "2021-07-11T18:28:51.000Z" + }, + "end": { + "$date": "2021-07-11T18:48:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ea67cf93-48d4-434e-bce1-656107ca3b78", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-11T19:30:09.000Z" + }, + "end": { + "$date": "2021-07-11T21:35:09.000Z" + }, + "events": [ + { + "uuid": "cf4204da-d233-4eed-bf35-619fa6343688", + "start": { + "$date": "2021-07-11T19:30:09.000Z" + }, + "end": { + "$date": "2021-07-11T21:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8cf8d50b-0a75-468c-a359-2352fba01eab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-11T19:30:25.000Z" + }, + "end": { + "$date": "2021-07-11T20:42:59.000Z" + }, + "events": [ + { + "uuid": "a81044fe-697a-4876-a37a-4679d8c40892", + "start": { + "$date": "2021-07-11T19:30:25.000Z" + }, + "end": { + "$date": "2021-07-11T20:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbf85120-5dab-4ce3-b1e4-b66ab8e5a2e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T20:35:10.000Z" + }, + "end": { + "$date": "2021-07-11T21:03:15.000Z" + }, + "events": [ + { + "uuid": "79339f63-b088-42d2-90e1-88dd44333748", + "start": { + "$date": "2021-07-11T20:35:10.000Z" + }, + "end": { + "$date": "2021-07-11T21:03:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49378082-5aa4-4a2b-8d16-2069bb27b2fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T21:08:42.000Z" + }, + "end": { + "$date": "2021-07-11T21:33:13.000Z" + }, + "events": [ + { + "uuid": "3369cc45-713e-4f21-9ec9-add22c61e072", + "start": { + "$date": "2021-07-11T21:08:42.000Z" + }, + "end": { + "$date": "2021-07-11T21:33:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40643204-7b36-4813-bcfa-fbcde350ae05", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-11T21:10:20.000Z" + }, + "end": { + "$date": "2021-07-11T21:32:11.000Z" + }, + "events": [ + { + "uuid": "272b7ffc-603d-4a37-aeca-2f39250b1358", + "start": { + "$date": "2021-07-11T21:10:20.000Z" + }, + "end": { + "$date": "2021-07-11T21:32:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "e0af8ec0-0451-404b-87f7-a6e0cfa1f289", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-11T21:06:38.000Z" + }, + "end": { + "$date": "2021-07-11T22:17:50.000Z" + }, + "events": [ + { + "uuid": "d86a983a-f8f9-4ca6-af89-67b858b88f55", + "start": { + "$date": "2021-07-11T21:06:38.000Z" + }, + "end": { + "$date": "2021-07-11T21:21:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5455dc65-e02e-4566-a288-63378aa40064", + "start": { + "$date": "2021-07-11T21:21:38.000Z" + }, + "end": { + "$date": "2021-07-11T21:28:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d18e2a5e-72cd-488b-a073-3d305f643fcc", + "start": { + "$date": "2021-07-11T21:28:38.000Z" + }, + "end": { + "$date": "2021-07-11T22:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55da7816-f726-4e24-8835-2d016e83db88", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-11T22:57:23.000Z" + }, + "end": { + "$date": "2021-07-11T22:57:29.000Z" + }, + "events": [ + { + "uuid": "736ff8ac-143a-4544-ae29-b27ef8c1a36e", + "start": { + "$date": "2021-07-11T22:57:23.000Z" + }, + "end": { + "$date": "2021-07-11T22:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58f50c8b-36eb-4264-a03e-749143409923", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T21:40:01.000Z" + }, + "end": { + "$date": "2021-07-11T21:59:37.000Z" + }, + "events": [ + { + "uuid": "9d5d1486-e522-4e2c-82bc-0912c51682eb", + "start": { + "$date": "2021-07-11T21:40:01.000Z" + }, + "end": { + "$date": "2021-07-11T21:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94d7cd70-160e-401a-9b55-57cff1898631", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-11T22:57:27.000Z" + }, + "end": { + "$date": "2021-07-11T22:57:32.000Z" + }, + "events": [ + { + "uuid": "152cd027-4df8-457a-b582-c9cfd1a26feb", + "start": { + "$date": "2021-07-11T22:57:27.000Z" + }, + "end": { + "$date": "2021-07-11T22:57:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "2d157101-8b66-4d00-9e6d-b657b9d6da7f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-11T21:54:17.000Z" + }, + "end": { + "$date": "2021-07-11T22:08:27.000Z" + }, + "events": [ + { + "uuid": "c50de035-a7a0-4269-9159-605bde8a8390", + "start": { + "$date": "2021-07-11T21:54:17.000Z" + }, + "end": { + "$date": "2021-07-11T22:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaf07686-b225-47ab-a6eb-2de5ab5d6dca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T22:02:16.000Z" + }, + "end": { + "$date": "2021-07-11T22:22:49.000Z" + }, + "events": [ + { + "uuid": "562048df-ebf0-4fb1-bf65-cd1cb5d5639e", + "start": { + "$date": "2021-07-11T22:02:16.000Z" + }, + "end": { + "$date": "2021-07-11T22:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "005371f1-64f7-424e-a041-eef59fdbc877", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-11T22:27:18.000Z" + }, + "end": { + "$date": "2021-07-11T22:57:44.000Z" + }, + "events": [ + { + "uuid": "fbb3e85f-710a-49de-b599-3b6c74a400b5", + "start": { + "$date": "2021-07-11T22:27:18.000Z" + }, + "end": { + "$date": "2021-07-11T22:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffa2c8c9-ca5f-4e4c-af01-cd2cf0558cc7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T04:08:27.000Z" + }, + "end": { + "$date": "2021-07-12T04:25:35.000Z" + }, + "events": [ + { + "uuid": "aeaca794-73de-4652-8106-6fced2db2d36", + "start": { + "$date": "2021-07-12T04:08:27.000Z" + }, + "end": { + "$date": "2021-07-12T04:30:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5805bcd7-406a-4c6b-9ea1-44fcdde951c2", + "start": { + "$date": "2021-07-12T04:30:27.000Z" + }, + "end": { + "$date": "2021-07-12T05:26:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44719d30-ef3a-4634-a84a-6e6b007aa7c9", + "start": { + "$date": "2021-07-12T05:26:27.000Z" + }, + "end": { + "$date": "2021-07-12T05:50:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4657d9f5-6732-4864-8592-1f9adaaf85bd", + "start": { + "$date": "2021-07-12T05:50:27.000Z" + }, + "end": { + "$date": "2021-07-12T06:17:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "192831ae-43fb-4b6e-976b-25fc00ccd505", + "start": { + "$date": "2021-07-12T06:17:27.000Z" + }, + "end": { + "$date": "2021-07-12T06:21:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5db1841e-52d9-4bf4-85ec-db51b3ec7f77", + "start": { + "$date": "2021-07-12T06:21:27.000Z" + }, + "end": { + "$date": "2021-07-12T06:28:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "30a91ec4-987e-4c3c-ba9a-2dd4479ff31e", + "start": { + "$date": "2021-07-12T06:28:27.000Z" + }, + "end": { + "$date": "2021-07-12T06:31:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bf5f6d57-d458-4b61-ab00-7d9a3a851f92", + "start": { + "$date": "2021-07-12T06:31:27.000Z" + }, + "end": { + "$date": "2021-07-12T08:07:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2f4e8378-2e4f-4b5a-b647-12d46bb87374", + "start": { + "$date": "2021-07-12T08:07:27.000Z" + }, + "end": { + "$date": "2021-07-12T04:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "ebc8a362-2d5b-491e-bf41-bf9314e8f0cb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-12T00:05:01.000Z" + }, + "end": { + "$date": "2021-07-12T00:10:11.000Z" + }, + "events": [ + { + "uuid": "b94a0a4c-bd85-43a0-aae2-a8e251063b3b", + "start": { + "$date": "2021-07-12T00:05:01.000Z" + }, + "end": { + "$date": "2021-07-12T00:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "e5f7449c-a1ce-44f5-a869-aacec5824f8f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-12T00:29:50.000Z" + }, + "end": { + "$date": "2021-07-12T01:51:19.000Z" + }, + "events": [ + { + "uuid": "16e4ca77-12b4-4fda-b422-65c6651a4964", + "start": { + "$date": "2021-07-12T00:29:50.000Z" + }, + "end": { + "$date": "2021-07-12T01:26:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb8a024a-0664-495f-8121-7bfa224b0ded", + "start": { + "$date": "2021-07-12T01:26:50.000Z" + }, + "end": { + "$date": "2021-07-12T01:31:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0b6c9a47-d2f9-4160-96d7-4acfd7eabbee", + "start": { + "$date": "2021-07-12T01:31:50.000Z" + }, + "end": { + "$date": "2021-07-12T01:41:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5aaafdb7-a383-4d90-8724-d91c57d9a7cf", + "start": { + "$date": "2021-07-12T01:41:50.000Z" + }, + "end": { + "$date": "2021-07-12T01:51:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "68b0a9ff-4077-4781-b3e3-cb91ced2ac83", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-12T01:00:01.000Z" + }, + "end": { + "$date": "2021-07-12T01:43:37.000Z" + }, + "events": [ + { + "uuid": "8fe83cd4-06ee-4c5d-b514-3b011ed3c4f4", + "start": { + "$date": "2021-07-12T01:00:01.000Z" + }, + "end": { + "$date": "2021-07-12T01:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "47d4c27b-96f5-4a3d-83c9-cbb75c6545c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-12T01:44:37.000Z" + }, + "end": { + "$date": "2021-07-12T02:57:21.000Z" + }, + "events": [ + { + "uuid": "3cdba5c5-c38d-4fc4-9d42-4cec852c6133", + "start": { + "$date": "2021-07-12T01:44:37.000Z" + }, + "end": { + "$date": "2021-07-12T02:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2a3afbbd-383b-4f61-aefa-42846522e428", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-11T22:05:21.000Z" + }, + "end": { + "$date": "2021-07-12T07:20:38.000Z" + }, + "events": [ + { + "uuid": "7cfaa573-06cd-4a8b-9e4e-5419e896d235", + "start": { + "$date": "2021-07-11T22:05:21.000Z" + }, + "end": { + "$date": "2021-07-12T07:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "a16e479a-6aec-4cde-bd91-f27893be884e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-12T02:37:39.000Z" + }, + "end": { + "$date": "2021-07-12T03:16:34.000Z" + }, + "events": [ + { + "uuid": "475ff9c7-5395-4494-9cb0-1eb85a9df5da", + "start": { + "$date": "2021-07-12T02:37:39.000Z" + }, + "end": { + "$date": "2021-07-12T03:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ee375386-244c-4a13-9336-76de268cd357", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T03:16:03.000Z" + }, + "end": { + "$date": "2021-07-12T04:38:12.000Z" + }, + "events": [ + { + "uuid": "3eddd2e9-5441-427c-8b22-d2663d1034ba", + "start": { + "$date": "2021-07-12T03:16:03.000Z" + }, + "end": { + "$date": "2021-07-12T04:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "525b077f-ef8a-454c-9969-2763ae0d565b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-12T03:28:51.000Z" + }, + "end": { + "$date": "2021-07-12T05:37:47.000Z" + }, + "events": [ + { + "uuid": "1817e0ff-92c2-4b77-87da-1e14a726de82", + "start": { + "$date": "2021-07-12T03:28:51.000Z" + }, + "end": { + "$date": "2021-07-12T05:37:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "75f19a90-60b1-4ee5-9736-956c87e63802", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-12T04:15:19.000Z" + }, + "end": { + "$date": "2021-07-12T06:39:53.000Z" + }, + "events": [ + { + "uuid": "eded4ce5-940d-463b-b27a-5242bc4295a3", + "start": { + "$date": "2021-07-12T04:15:19.000Z" + }, + "end": { + "$date": "2021-07-12T06:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ccb030ec-519f-4808-af70-3d087fb71a8d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T04:39:38.000Z" + }, + "end": { + "$date": "2021-07-12T05:08:54.000Z" + }, + "events": [ + { + "uuid": "97ea1ca2-8cf5-4026-8559-51776381d517", + "start": { + "$date": "2021-07-12T04:39:38.000Z" + }, + "end": { + "$date": "2021-07-12T05:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f39c6e4-9e77-4197-b7e4-97500c660e57", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-12T04:36:09.000Z" + }, + "end": { + "$date": "2021-07-12T05:09:38.000Z" + }, + "events": [ + { + "uuid": "823bed79-d571-4656-a5bc-f3995dd28abe", + "start": { + "$date": "2021-07-12T04:36:09.000Z" + }, + "end": { + "$date": "2021-07-12T05:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48a54e9a-2807-4393-9ca7-7c1414fd577f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-12T05:24:41.000Z" + }, + "end": { + "$date": "2021-07-12T05:57:09.000Z" + }, + "events": [ + { + "uuid": "b7d59504-74f4-4a6e-95c2-9b7e28a437a9", + "start": { + "$date": "2021-07-12T05:24:41.000Z" + }, + "end": { + "$date": "2021-07-12T05:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6b1c0565-c3ae-4daf-a2d2-106edceab454", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T05:27:17.000Z" + }, + "end": { + "$date": "2021-07-12T06:40:18.000Z" + }, + "events": [ + { + "uuid": "3d63ab74-4e2d-45d4-8657-2ae77c144250", + "start": { + "$date": "2021-07-12T05:27:17.000Z" + }, + "end": { + "$date": "2021-07-12T06:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c2345f93-91ff-4147-9fe0-0c1a6ac1cd07", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-12T05:31:29.000Z" + }, + "end": { + "$date": "2021-07-12T06:49:12.000Z" + }, + "events": [ + { + "uuid": "675d31ce-c606-46d8-b7fb-c47708ca99d2", + "start": { + "$date": "2021-07-12T05:31:29.000Z" + }, + "end": { + "$date": "2021-07-12T06:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71a2761a-697d-4dfb-b7ad-31369d99721a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T06:43:52.000Z" + }, + "end": { + "$date": "2021-07-12T06:58:37.000Z" + }, + "events": [ + { + "uuid": "e2602758-0add-43c6-b5ef-e1322042f446", + "start": { + "$date": "2021-07-12T06:43:52.000Z" + }, + "end": { + "$date": "2021-07-12T06:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5db8395-faef-4f65-855e-0a9e66977927", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T07:02:38.000Z" + }, + "end": { + "$date": "2021-07-12T07:32:53.000Z" + }, + "events": [ + { + "uuid": "845ae5b2-a7f9-4a6b-ba2e-6c2dc1c93ec1", + "start": { + "$date": "2021-07-12T07:02:38.000Z" + }, + "end": { + "$date": "2021-07-12T07:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "711d3c86-e364-4acb-bcf4-85132e6b243c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T15:47:27.000Z" + }, + "end": { + "$date": "2021-07-12T16:06:30.000Z" + }, + "events": [ + { + "uuid": "1dea368e-3344-4134-aa9f-3fbd59469f38", + "start": { + "$date": "2021-07-12T15:47:27.000Z" + }, + "end": { + "$date": "2021-07-12T16:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7559afda-9737-4948-b259-5b4abcef0486", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T15:47:15.000Z" + }, + "end": { + "$date": "2021-07-12T17:11:49.000Z" + }, + "events": [ + { + "uuid": "f5e13ea7-8c4c-4e64-80a3-cd733344aa9b", + "start": { + "$date": "2021-07-12T15:47:15.000Z" + }, + "end": { + "$date": "2021-07-12T17:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31e0475d-0b89-4821-ba36-a8ecb87fed9a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T16:10:06.000Z" + }, + "end": { + "$date": "2021-07-12T16:30:14.000Z" + }, + "events": [ + { + "uuid": "4a6096c1-6634-4fe5-9721-4bd94afeb7c5", + "start": { + "$date": "2021-07-12T16:10:06.000Z" + }, + "end": { + "$date": "2021-07-12T16:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77ce3fb8-17c8-48a6-973a-6293ed8114d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T17:13:06.000Z" + }, + "end": { + "$date": "2021-07-12T17:33:45.000Z" + }, + "events": [ + { + "uuid": "1f4c4661-1693-4d72-a269-5ed494718a78", + "start": { + "$date": "2021-07-12T17:13:06.000Z" + }, + "end": { + "$date": "2021-07-12T17:33:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53a4c62d-56b7-4f4a-a03d-b9d3de3d550e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T17:37:35.000Z" + }, + "end": { + "$date": "2021-07-12T17:53:12.000Z" + }, + "events": [ + { + "uuid": "019e10fb-709d-4888-a704-483604296e7c", + "start": { + "$date": "2021-07-12T17:37:35.000Z" + }, + "end": { + "$date": "2021-07-12T17:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7df500db-0794-4ce6-8c72-81898c450703", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T17:54:34.000Z" + }, + "end": { + "$date": "2021-07-12T17:56:27.000Z" + }, + "events": [ + { + "uuid": "cdf459d8-95a0-4386-9eb1-f63b973b5be1", + "start": { + "$date": "2021-07-12T17:54:34.000Z" + }, + "end": { + "$date": "2021-07-12T17:56:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b184cd90-35cc-4ce8-a35e-9bcb86d535fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T18:25:54.000Z" + }, + "end": { + "$date": "2021-07-12T18:59:24.000Z" + }, + "events": [ + { + "uuid": "a039afb5-c942-44cd-8f04-cea962538593", + "start": { + "$date": "2021-07-12T18:25:54.000Z" + }, + "end": { + "$date": "2021-07-12T18:59:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21b7b61b-6a57-4928-8c36-f0a256375506", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T19:05:46.000Z" + }, + "end": { + "$date": "2021-07-12T19:17:22.000Z" + }, + "events": [ + { + "uuid": "dca831ef-abf7-4517-95d6-bf0b0f4b145c", + "start": { + "$date": "2021-07-12T19:05:46.000Z" + }, + "end": { + "$date": "2021-07-12T19:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8304caf-0730-45b4-a923-1dcb253161bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T19:44:59.000Z" + }, + "end": { + "$date": "2021-07-12T20:05:20.000Z" + }, + "events": [ + { + "uuid": "c3bd4ed9-232a-4fdf-8ce8-44b21651a4fa", + "start": { + "$date": "2021-07-12T19:44:59.000Z" + }, + "end": { + "$date": "2021-07-12T20:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d111ff9e-430b-43bd-b1c7-11bf502be775", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T19:46:45.000Z" + }, + "end": { + "$date": "2021-07-12T20:05:11.000Z" + }, + "events": [ + { + "uuid": "cf847b5b-313e-4320-8ce4-4abf2d68b066", + "start": { + "$date": "2021-07-12T19:46:45.000Z" + }, + "end": { + "$date": "2021-07-12T20:05:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de904f03-379f-4021-b71d-09240f0e8c72", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-12T20:09:07.000Z" + }, + "end": { + "$date": "2021-07-12T20:42:37.000Z" + }, + "events": [ + { + "uuid": "1f17ccb4-2a23-457a-a8de-15a9dce2d76f", + "start": { + "$date": "2021-07-12T20:09:07.000Z" + }, + "end": { + "$date": "2021-07-12T20:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e4af9b0-114d-4f1c-8c6a-f25118d00fb5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T20:13:11.000Z" + }, + "end": { + "$date": "2021-07-12T20:30:07.000Z" + }, + "events": [ + { + "uuid": "2a628be1-4005-4974-9e68-8af4e106c46d", + "start": { + "$date": "2021-07-12T20:13:11.000Z" + }, + "end": { + "$date": "2021-07-12T20:30:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "c4096e8b-a7ed-4137-9db2-4e3a2c6d5b10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T21:27:04.000Z" + }, + "end": { + "$date": "2021-07-12T22:25:08.000Z" + }, + "events": [ + { + "uuid": "c52de5e7-fd4c-4c57-af24-15d214ee1af1", + "start": { + "$date": "2021-07-12T21:27:04.000Z" + }, + "end": { + "$date": "2021-07-12T22:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7c71135a-1cb9-4a47-93e7-ec07ebc66516", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-12T21:52:08.000Z" + }, + "end": { + "$date": "2021-07-12T22:20:30.000Z" + }, + "events": [ + { + "uuid": "0af64d4b-e2f2-4a34-b5a5-e43c5c74c3b0", + "start": { + "$date": "2021-07-12T21:52:08.000Z" + }, + "end": { + "$date": "2021-07-12T22:20:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "df7a4d4a-bca7-46ff-8f30-20b3e9fc9a62", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T22:29:22.000Z" + }, + "end": { + "$date": "2021-07-12T23:04:30.000Z" + }, + "events": [ + { + "uuid": "bbe99085-e050-4d73-8af7-774653b612df", + "start": { + "$date": "2021-07-12T22:29:22.000Z" + }, + "end": { + "$date": "2021-07-12T23:04:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "624aa882-aa60-4f05-b424-f2d629de859d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-12T23:32:10.000Z" + }, + "end": { + "$date": "2021-07-12T23:34:10.000Z" + }, + "events": [ + { + "uuid": "583c037f-aa63-4d59-9f4c-0f70dbc63bf9", + "start": { + "$date": "2021-07-12T23:32:10.000Z" + }, + "end": { + "$date": "2021-07-12T23:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3f91ebdd-4c68-43e3-95a1-dc9adfc984e3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-12T23:34:21.000Z" + }, + "end": { + "$date": "2021-07-13T01:47:02.000Z" + }, + "events": [ + { + "uuid": "c73b0238-20b5-4f11-b9aa-7e59c6df3951", + "start": { + "$date": "2021-07-12T23:34:21.000Z" + }, + "end": { + "$date": "2021-07-13T01:47:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4e4d6129-3076-4a27-81d4-87006be60760", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-12T23:57:36.000Z" + }, + "end": { + "$date": "2021-07-13T00:36:11.000Z" + }, + "events": [ + { + "uuid": "ecf8e347-5010-4053-8e6a-7cdb4d81e096", + "start": { + "$date": "2021-07-12T23:57:36.000Z" + }, + "end": { + "$date": "2021-07-13T00:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b2ce18f4-ce6c-48f4-a00e-41dadd81c5ba", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-13T00:56:36.000Z" + }, + "end": { + "$date": "2021-07-13T07:33:45.000Z" + }, + "events": [ + { + "uuid": "96e76a48-e9b6-48f0-adf4-d4b9d67bb6f7", + "start": { + "$date": "2021-07-13T00:56:36.000Z" + }, + "end": { + "$date": "2021-07-13T07:33:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "da62e3a5-6dd0-4ea0-aedf-196a7c34a4d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T01:00:39.000Z" + }, + "end": { + "$date": "2021-07-13T01:44:26.000Z" + }, + "events": [ + { + "uuid": "b41a47b1-e9e6-4535-ac35-f5349cb150b0", + "start": { + "$date": "2021-07-13T01:00:39.000Z" + }, + "end": { + "$date": "2021-07-13T01:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b04cde8-cf2b-4bd8-a829-4b7ab587d30d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T02:43:21.000Z" + }, + "end": { + "$date": "2021-07-13T03:11:27.000Z" + }, + "events": [ + { + "uuid": "d8a7ca87-4246-4763-9ee1-f0c99e9f64f7", + "start": { + "$date": "2021-07-13T02:43:21.000Z" + }, + "end": { + "$date": "2021-07-13T03:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cc4a790-c716-4395-820f-46d31afe90be", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-13T03:01:50.000Z" + }, + "end": { + "$date": "2021-07-13T03:46:04.000Z" + }, + "events": [ + { + "uuid": "13cad25f-ed0f-4ada-b333-c30518e9207d", + "start": { + "$date": "2021-07-13T03:01:50.000Z" + }, + "end": { + "$date": "2021-07-13T03:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "54fa7c95-8ebc-4d2b-aade-bb7c3192ab8f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-13T03:07:16.000Z" + }, + "end": { + "$date": "2021-07-13T05:13:57.000Z" + }, + "events": [ + { + "uuid": "fc98b445-4efb-4b12-ba8e-cb870df96d92", + "start": { + "$date": "2021-07-13T03:07:16.000Z" + }, + "end": { + "$date": "2021-07-13T05:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9dfca9c3-f0ca-4168-9af9-4ae8cfd4e4b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T03:19:35.000Z" + }, + "end": { + "$date": "2021-07-13T03:38:37.000Z" + }, + "events": [ + { + "uuid": "9d23dbb2-09bb-468c-b302-5cb147fdaaaf", + "start": { + "$date": "2021-07-13T03:19:35.000Z" + }, + "end": { + "$date": "2021-07-13T03:38:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "03065364-06d9-4e5a-8fa2-bd1a99f56f47", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-13T03:19:49.000Z" + }, + "end": { + "$date": "2021-07-13T03:33:12.000Z" + }, + "events": [ + { + "uuid": "b954c0f7-d5e8-4856-aa0e-81f45e370201", + "start": { + "$date": "2021-07-13T03:19:49.000Z" + }, + "end": { + "$date": "2021-07-13T03:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4ce2dcbf-b7ca-46fc-9082-4c70efa4c2b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-13T03:33:22.000Z" + }, + "end": { + "$date": "2021-07-13T04:17:40.000Z" + }, + "events": [ + { + "uuid": "22fa746c-af1b-4ff6-bf9f-008bd43926f6", + "start": { + "$date": "2021-07-13T03:33:22.000Z" + }, + "end": { + "$date": "2021-07-13T03:45:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df3fd4cf-4b06-4c97-b698-e56efed025c2", + "start": { + "$date": "2021-07-13T03:45:22.000Z" + }, + "end": { + "$date": "2021-07-13T04:04:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84f84bae-5c0e-4d49-8d15-00e77683d246", + "start": { + "$date": "2021-07-13T04:04:22.000Z" + }, + "end": { + "$date": "2021-07-13T04:17:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "fc34f4dc-8373-4045-bd9e-ac14ae23769e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T03:38:55.000Z" + }, + "end": { + "$date": "2021-07-13T04:17:51.000Z" + }, + "events": [ + { + "uuid": "9a77d6c7-a42e-4f95-b9f4-560c74135af7", + "start": { + "$date": "2021-07-13T03:38:55.000Z" + }, + "end": { + "$date": "2021-07-13T04:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3180fb8-4bca-4db5-ae96-65af40ede0a6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-13T03:53:59.000Z" + }, + "end": { + "$date": "2021-07-13T04:22:35.000Z" + }, + "events": [ + { + "uuid": "a0549618-651e-4295-a8a9-a5c9af6c957f", + "start": { + "$date": "2021-07-13T03:53:59.000Z" + }, + "end": { + "$date": "2021-07-13T04:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "26cd9c89-fe9f-4c15-ab0c-5fb065777990", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-13T04:17:35.000Z" + }, + "end": { + "$date": "2021-07-13T05:14:47.000Z" + }, + "events": [ + { + "uuid": "2bb8204c-6617-4ceb-8a43-f0198c7a32a8", + "start": { + "$date": "2021-07-13T04:17:35.000Z" + }, + "end": { + "$date": "2021-07-13T05:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "af5e9c36-b704-48aa-af37-b158da449780", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T04:18:01.000Z" + }, + "end": { + "$date": "2021-07-13T05:14:24.000Z" + }, + "events": [ + { + "uuid": "ae137559-714f-4034-a7e8-77f7d8412a6a", + "start": { + "$date": "2021-07-13T04:18:01.000Z" + }, + "end": { + "$date": "2021-07-13T05:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a416c139-2e67-45b3-8fce-d20bba565447", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-13T04:18:11.000Z" + }, + "end": { + "$date": "2021-07-13T06:01:40.000Z" + }, + "events": [ + { + "uuid": "5679ffa8-35b1-4415-85b5-1140c1f5240c", + "start": { + "$date": "2021-07-13T04:18:11.000Z" + }, + "end": { + "$date": "2021-07-13T06:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cab43b4-43c3-4bc7-bc25-b89238905eb6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-13T04:47:38.000Z" + }, + "end": { + "$date": "2021-07-13T05:19:09.000Z" + }, + "events": [ + { + "uuid": "0bd4a1b3-f3cd-4dc7-ade0-d35fd794fe18", + "start": { + "$date": "2021-07-13T04:47:38.000Z" + }, + "end": { + "$date": "2021-07-13T05:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9624a0a2-8eb3-459f-a744-d5502cbdc470", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-13T04:28:03.000Z" + }, + "end": { + "$date": "2021-07-13T05:14:42.000Z" + }, + "events": [ + { + "uuid": "9af90d07-c664-4116-9c9c-695cc5a24b65", + "start": { + "$date": "2021-07-13T04:28:03.000Z" + }, + "end": { + "$date": "2021-07-13T05:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8acb957c-a8f9-4ef8-9fd1-df050cd3991d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-13T05:17:52.000Z" + }, + "end": { + "$date": "2021-07-13T06:13:47.000Z" + }, + "events": [ + { + "uuid": "5b635cfa-29a4-441c-9434-153ebb1192b9", + "start": { + "$date": "2021-07-13T05:17:52.000Z" + }, + "end": { + "$date": "2021-07-13T06:13:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4f06c14-f24b-45c7-a713-f2cd809a6c70", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-13T05:30:42.000Z" + }, + "end": { + "$date": "2021-07-13T06:09:35.000Z" + }, + "events": [ + { + "uuid": "0e52734a-1755-41fa-9189-9d4388019aaf", + "start": { + "$date": "2021-07-13T05:30:42.000Z" + }, + "end": { + "$date": "2021-07-13T06:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4c9ee81-8097-410d-a4ff-75f9fef575e6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-13T05:24:13.000Z" + }, + "end": { + "$date": "2021-07-13T05:27:58.000Z" + }, + "events": [ + { + "uuid": "29726d36-1beb-4fb1-83c7-f7cd89cbc29d", + "start": { + "$date": "2021-07-13T05:24:13.000Z" + }, + "end": { + "$date": "2021-07-13T05:27:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "739abb2a-db3d-4b8b-aac7-b9d7dbf4f7ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-13T06:09:56.000Z" + }, + "end": { + "$date": "2021-07-13T08:40:16.000Z" + }, + "events": [ + { + "uuid": "539e64df-b8c6-4837-895b-10082dbb43e4", + "start": { + "$date": "2021-07-13T06:09:56.000Z" + }, + "end": { + "$date": "2021-07-13T08:40:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "e352619a-9526-4ffb-b0f2-b19a5801c2e8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-13T13:38:39.000Z" + }, + "end": { + "$date": "2021-07-13T17:53:39.000Z" + }, + "events": [ + { + "uuid": "1ac88a07-fffb-415a-8f49-3c9e62594200", + "start": { + "$date": "2021-07-13T13:38:39.000Z" + }, + "end": { + "$date": "2021-07-13T17:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4a72f436-616a-4cd6-aa7c-8db30850d378", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T15:39:58.000Z" + }, + "end": { + "$date": "2021-07-13T16:48:11.000Z" + }, + "events": [ + { + "uuid": "005e5fe2-3ead-4ea8-82cf-2d5dcfcc3854", + "start": { + "$date": "2021-07-13T15:39:58.000Z" + }, + "end": { + "$date": "2021-07-13T15:55:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bff3bf28-e942-42fd-b429-494f6951f2e9", + "start": { + "$date": "2021-07-13T15:55:58.000Z" + }, + "end": { + "$date": "2021-07-13T15:58:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "68113a76-78a3-4140-b127-ca01e2df2c68", + "start": { + "$date": "2021-07-13T15:58:58.000Z" + }, + "end": { + "$date": "2021-07-13T16:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "uuid": "7e5cb468-a7f3-487a-9122-62446f92560d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-13T18:36:59.000Z" + }, + "end": { + "$date": "2021-07-13T18:37:14.000Z" + }, + "events": [ + { + "uuid": "3a8c6c05-d200-46b9-b96d-48bc0fff0154", + "start": { + "$date": "2021-07-13T18:36:59.000Z" + }, + "end": { + "$date": "2021-07-13T18:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "uuid": "72119aa9-3a1c-4d1d-9615-0cecdfa2b2c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-13T18:37:29.000Z" + }, + "end": { + "$date": "2021-07-13T20:01:35.000Z" + }, + "events": [ + { + "uuid": "abcb6c5b-780b-4928-bfd6-0346ebb2e22d", + "start": { + "$date": "2021-07-13T18:37:29.000Z" + }, + "end": { + "$date": "2021-07-13T20:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45395224-8ac2-40ce-a9e0-1facddd71022", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T20:23:54.000Z" + }, + "end": { + "$date": "2021-07-13T20:51:24.000Z" + }, + "events": [ + { + "uuid": "f1b13fa4-3835-4d56-9ed1-08d6d4580658", + "start": { + "$date": "2021-07-13T20:23:54.000Z" + }, + "end": { + "$date": "2021-07-13T20:51:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9bfcff8a-9868-49fa-9613-f02d64747f9b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-13T20:34:34.000Z" + }, + "end": { + "$date": "2021-07-13T22:31:50.000Z" + }, + "events": [ + { + "uuid": "e317a57d-2dc5-4592-9423-6cc3973c5975", + "start": { + "$date": "2021-07-13T20:34:34.000Z" + }, + "end": { + "$date": "2021-07-13T22:31:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "0b792597-beb0-4323-816a-c5c87848a2b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-13T21:03:36.000Z" + }, + "end": { + "$date": "2021-07-13T22:07:56.000Z" + }, + "events": [ + { + "uuid": "82371e31-a0a9-41a1-a9a0-bcb8cc694015", + "start": { + "$date": "2021-07-13T21:03:36.000Z" + }, + "end": { + "$date": "2021-07-13T22:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "35b2dbc5-ae87-4cda-874a-7ac95038e2b9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-13T23:49:52.000Z" + }, + "end": { + "$date": "2021-07-13T23:51:17.000Z" + }, + "events": [ + { + "uuid": "662af5cb-054c-4145-8628-df9adc4085b0", + "start": { + "$date": "2021-07-13T23:49:52.000Z" + }, + "end": { + "$date": "2021-07-13T23:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "db481dfa-e712-4f42-bec9-4c27dc97b400", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-13T22:32:56.000Z" + }, + "end": { + "$date": "2021-07-13T23:22:08.000Z" + }, + "events": [ + { + "uuid": "f5e318ac-8b9d-4341-b7d3-c80cec381c4e", + "start": { + "$date": "2021-07-13T22:32:56.000Z" + }, + "end": { + "$date": "2021-07-13T23:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a32ac828-241c-4956-8fbb-d903997a3151", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-13T23:23:28.000Z" + }, + "end": { + "$date": "2021-07-14T01:21:33.000Z" + }, + "events": [ + { + "uuid": "893296bd-30eb-4d7c-a2a8-f506a4b6a7ee", + "start": { + "$date": "2021-07-13T23:23:28.000Z" + }, + "end": { + "$date": "2021-07-14T01:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "42698506-8a1c-4508-821c-97e073818f7a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-14T00:58:02.000Z" + }, + "end": { + "$date": "2021-07-14T01:05:18.000Z" + }, + "events": [ + { + "uuid": "86044693-b10f-4e22-bb2b-18fa22cb70bc", + "start": { + "$date": "2021-07-14T00:58:02.000Z" + }, + "end": { + "$date": "2021-07-14T01:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "900f6d87-701e-4d89-8203-487afb4abb27", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-13T21:59:13.000Z" + }, + "end": { + "$date": "2021-07-14T06:55:54.000Z" + }, + "events": [ + { + "uuid": "48fb904f-7884-4f89-b10f-f553d6854c88", + "start": { + "$date": "2021-07-13T21:59:13.000Z" + }, + "end": { + "$date": "2021-07-13T23:11:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0a944d4-6836-4a66-97fe-f634a2186204", + "start": { + "$date": "2021-07-13T23:11:13.000Z" + }, + "end": { + "$date": "2021-07-13T23:16:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99e8c17a-77ae-4074-9fcb-7aff38a0c96e", + "start": { + "$date": "2021-07-13T23:16:13.000Z" + }, + "end": { + "$date": "2021-07-13T23:18:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "755e6e7d-f174-4ab3-9a42-7ffa31080ffb", + "start": { + "$date": "2021-07-13T23:18:13.000Z" + }, + "end": { + "$date": "2021-07-13T23:27:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "862c93ef-8b54-4723-9720-fa69542cd040", + "start": { + "$date": "2021-07-13T23:27:13.000Z" + }, + "end": { + "$date": "2021-07-13T23:39:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d68271e8-ab85-4dcd-81a6-e266bb091b1a", + "start": { + "$date": "2021-07-13T23:39:13.000Z" + }, + "end": { + "$date": "2021-07-13T23:49:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1386907d-7777-4cab-bd23-5e0daa95a880", + "start": { + "$date": "2021-07-13T23:49:13.000Z" + }, + "end": { + "$date": "2021-07-14T01:21:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddce00fb-8af7-479d-90f9-261673487565", + "start": { + "$date": "2021-07-14T01:21:13.000Z" + }, + "end": { + "$date": "2021-07-14T01:33:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "37645688-3468-466d-86c0-da07842af341", + "start": { + "$date": "2021-07-14T01:33:13.000Z" + }, + "end": { + "$date": "2021-07-14T03:00:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72f03984-7139-401b-a148-5cb7c5c955e9", + "start": { + "$date": "2021-07-14T03:00:13.000Z" + }, + "end": { + "$date": "2021-07-14T03:01:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a5364687-c1d9-4e1f-baa1-8f9c6bd76d91", + "start": { + "$date": "2021-07-14T03:01:13.000Z" + }, + "end": { + "$date": "2021-07-14T06:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "48e25bf1-1c9b-413a-bb42-abbfc4e34dcb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-14T01:22:09.000Z" + }, + "end": { + "$date": "2021-07-14T01:49:55.000Z" + }, + "events": [ + { + "uuid": "b3c91599-ca6a-4e56-8cb3-020e40dfe7b2", + "start": { + "$date": "2021-07-14T01:22:09.000Z" + }, + "end": { + "$date": "2021-07-14T01:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d19aa7c-fb11-4c5f-8cd2-2e19c105dc2a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-14T01:30:20.000Z" + }, + "end": { + "$date": "2021-07-14T03:49:11.000Z" + }, + "events": [ + { + "uuid": "2a93bf68-20cf-43b3-8b0e-7ae6f1cee48c", + "start": { + "$date": "2021-07-14T01:30:20.000Z" + }, + "end": { + "$date": "2021-07-14T03:49:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "uuid": "d6824cea-eb2e-4e6c-a484-2aeae2e0ec4b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-14T01:50:35.000Z" + }, + "end": { + "$date": "2021-07-14T01:59:50.000Z" + }, + "events": [ + { + "uuid": "e84b39c2-5c13-46ee-8d13-b5117c8e7325", + "start": { + "$date": "2021-07-14T01:50:35.000Z" + }, + "end": { + "$date": "2021-07-14T01:59:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3df0be5c-74f7-4def-80b8-f8e6831870b5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-14T02:59:46.000Z" + }, + "end": { + "$date": "2021-07-14T03:34:35.000Z" + }, + "events": [ + { + "uuid": "a1a51b47-dfdf-4766-9475-6d5755d7161a", + "start": { + "$date": "2021-07-14T02:59:46.000Z" + }, + "end": { + "$date": "2021-07-14T03:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30882068-4b39-4cda-98cd-a6bfea4b1734", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-14T03:44:47.000Z" + }, + "end": { + "$date": "2021-07-14T04:14:50.000Z" + }, + "events": [ + { + "uuid": "829e94cd-ffff-471c-8525-3c0e263be23d", + "start": { + "$date": "2021-07-14T03:44:47.000Z" + }, + "end": { + "$date": "2021-07-14T04:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0207c75a-4375-44e3-9d88-ca47b31d9a41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-14T03:46:18.000Z" + }, + "end": { + "$date": "2021-07-14T04:16:30.000Z" + }, + "events": [ + { + "uuid": "05edd71a-dfa7-4174-bcb6-ef4d909d455d", + "start": { + "$date": "2021-07-14T03:46:18.000Z" + }, + "end": { + "$date": "2021-07-14T04:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "222e4423-80a6-48de-9bbb-cb86f2f642ba", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-14T03:50:36.000Z" + }, + "end": { + "$date": "2021-07-14T05:50:59.000Z" + }, + "events": [ + { + "uuid": "8912be47-e1bf-466d-bef6-d3e48181b95e", + "start": { + "$date": "2021-07-14T03:50:36.000Z" + }, + "end": { + "$date": "2021-07-14T05:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "086f9724-9e55-4dca-8efa-1ad07c7c6b38", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-14T03:50:45.000Z" + }, + "end": { + "$date": "2021-07-14T06:59:41.000Z" + }, + "events": [ + { + "uuid": "3fc55736-d626-43cf-bd19-700319297922", + "start": { + "$date": "2021-07-14T03:50:45.000Z" + }, + "end": { + "$date": "2021-07-14T06:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cf213a8-5345-4bea-ac9a-57856fcf990f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-14T04:26:52.000Z" + }, + "end": { + "$date": "2021-07-14T04:55:45.000Z" + }, + "events": [ + { + "uuid": "ebe85e45-0eb6-4e0b-8d7a-a10f86ce6bc5", + "start": { + "$date": "2021-07-14T04:26:52.000Z" + }, + "end": { + "$date": "2021-07-14T04:55:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad25f528-e551-4894-b268-f7b5932e89c5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-14T04:56:04.000Z" + }, + "end": { + "$date": "2021-07-14T05:30:56.000Z" + }, + "events": [ + { + "uuid": "14198ec6-ad50-409c-ac20-32175ec7034b", + "start": { + "$date": "2021-07-14T04:56:04.000Z" + }, + "end": { + "$date": "2021-07-14T05:16:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "707c8fda-fd6b-45ec-8267-5e47bed9cda2", + "start": { + "$date": "2021-07-14T05:16:04.000Z" + }, + "end": { + "$date": "2021-07-14T05:17:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba6caa8f-0f44-4bc5-9836-a8da8d6fd472", + "start": { + "$date": "2021-07-14T05:17:04.000Z" + }, + "end": { + "$date": "2021-07-14T05:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95bc8393-a651-4f76-9903-289891beeb74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-14T05:29:10.000Z" + }, + "end": { + "$date": "2021-07-14T05:45:35.000Z" + }, + "events": [ + { + "uuid": "b859e512-7e85-44fd-9f1b-8e709cff52db", + "start": { + "$date": "2021-07-14T05:29:10.000Z" + }, + "end": { + "$date": "2021-07-14T05:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77cf6c23-d0b7-4f02-aaad-a227353db00d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-14T05:46:21.000Z" + }, + "end": { + "$date": "2021-07-14T06:10:29.000Z" + }, + "events": [ + { + "uuid": "0560fe9b-a1d7-4bb5-83df-f81c747eaaab", + "start": { + "$date": "2021-07-14T05:46:21.000Z" + }, + "end": { + "$date": "2021-07-14T06:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "122f7b58-a3e4-4273-81ab-e5f70be0c254", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-14T05:53:22.000Z" + }, + "end": { + "$date": "2021-07-14T06:11:05.000Z" + }, + "events": [ + { + "uuid": "9fdb630d-92e4-4bdb-87eb-9ffa1f2d7c1e", + "start": { + "$date": "2021-07-14T05:53:22.000Z" + }, + "end": { + "$date": "2021-07-14T06:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c2440e74-a838-4c1e-bd78-dea0baca5c36", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-14T06:11:12.000Z" + }, + "end": { + "$date": "2021-07-14T07:27:45.000Z" + }, + "events": [ + { + "uuid": "353ae8f8-907b-4da2-9600-6edc7f544a39", + "start": { + "$date": "2021-07-14T06:11:12.000Z" + }, + "end": { + "$date": "2021-07-14T07:27:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce1669fd-405d-4d91-ab72-ecc2cc09c2de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-14T06:13:52.000Z" + }, + "end": { + "$date": "2021-07-14T06:59:34.000Z" + }, + "events": [ + { + "uuid": "deaad150-c891-4c80-a88a-a3e8a888f6ac", + "start": { + "$date": "2021-07-14T06:13:52.000Z" + }, + "end": { + "$date": "2021-07-14T06:59:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f93061b-1f3d-478f-9da6-54a5567a97ea", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-14T06:14:51.000Z" + }, + "end": { + "$date": "2021-07-14T06:26:59.000Z" + }, + "events": [ + { + "uuid": "7af4c38f-0922-4522-883f-ce9549a41234", + "start": { + "$date": "2021-07-14T06:14:51.000Z" + }, + "end": { + "$date": "2021-07-14T06:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f0a30985-d174-4002-9f16-9bb4b5f0e74a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-14T13:29:12.000Z" + }, + "end": { + "$date": "2021-07-14T14:50:55.000Z" + }, + "events": [ + { + "uuid": "f83dff8d-efc4-42a8-8a49-23e09a9e72b3", + "start": { + "$date": "2021-07-14T13:29:12.000Z" + }, + "end": { + "$date": "2021-07-14T14:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f2c6afa8-8f02-4a82-9a9b-ebc5af54ba4a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-14T18:09:36.000Z" + }, + "end": { + "$date": "2021-07-14T18:31:13.000Z" + }, + "events": [ + { + "uuid": "26a1ba50-8bc2-4516-895f-9555291fd7fb", + "start": { + "$date": "2021-07-14T18:09:36.000Z" + }, + "end": { + "$date": "2021-07-14T18:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f08c5ce2-f251-4c0b-a2e5-7b6059aed5d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-14T20:17:06.000Z" + }, + "end": { + "$date": "2021-07-14T20:31:25.000Z" + }, + "events": [ + { + "uuid": "0fcfda7a-8b13-486e-8c62-bf6c1198f6ca", + "start": { + "$date": "2021-07-14T20:17:06.000Z" + }, + "end": { + "$date": "2021-07-14T20:31:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "59ce80a4-28a5-48d3-a289-64d3ce1a55e9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-14T20:28:38.000Z" + }, + "end": { + "$date": "2021-07-14T21:52:18.000Z" + }, + "events": [ + { + "uuid": "f06076dd-75c7-45ec-b690-3f62462c7bc8", + "start": { + "$date": "2021-07-14T20:28:38.000Z" + }, + "end": { + "$date": "2021-07-14T21:52:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb786d47-aff4-4efb-9d2f-f81a9f4fc4a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-14T20:32:25.000Z" + }, + "end": { + "$date": "2021-07-14T21:34:44.000Z" + }, + "events": [ + { + "uuid": "fbd2de11-afb7-473e-b2e1-76256ebaedc5", + "start": { + "$date": "2021-07-14T20:32:25.000Z" + }, + "end": { + "$date": "2021-07-14T21:34:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "5226ea2e-f722-4d09-bcf5-aafa8493ff7e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-14T23:18:01.000Z" + }, + "end": { + "$date": "2021-07-14T23:18:05.000Z" + }, + "events": [ + { + "uuid": "c0b931f8-da93-4ffc-9be1-192004893734", + "start": { + "$date": "2021-07-14T23:18:01.000Z" + }, + "end": { + "$date": "2021-07-14T23:18:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "e7171ece-0872-4eec-97ab-75709c169992", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-14T22:46:18.000Z" + }, + "end": { + "$date": "2021-07-15T01:23:32.000Z" + }, + "events": [ + { + "uuid": "bdbbe31b-6f73-42d8-8585-9576bc6689c4", + "start": { + "$date": "2021-07-14T22:46:18.000Z" + }, + "end": { + "$date": "2021-07-14T23:42:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "067e6b7c-2b9c-4322-9311-c17b6d31a2b4", + "start": { + "$date": "2021-07-14T23:42:18.000Z" + }, + "end": { + "$date": "2021-07-14T23:44:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b707ad8e-2f21-46d0-b24a-c41ca4ee8c3b", + "start": { + "$date": "2021-07-14T23:44:18.000Z" + }, + "end": { + "$date": "2021-07-15T01:23:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5b48a47a-d2b1-46bb-8014-2f3933250a2a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-14T23:13:00.000Z" + }, + "end": { + "$date": "2021-07-15T00:10:26.000Z" + }, + "events": [ + { + "uuid": "0aeffabd-e8a5-4a1c-91a8-9729da6991d6", + "start": { + "$date": "2021-07-14T23:13:00.000Z" + }, + "end": { + "$date": "2021-07-15T00:10:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "114268ff-7cd5-43bd-839e-8583f0249b70", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T00:55:59.000Z" + }, + "end": { + "$date": "2021-07-15T01:03:50.000Z" + }, + "events": [ + { + "uuid": "1b3377b3-4722-4a95-baa9-32c0c4d0c18a", + "start": { + "$date": "2021-07-15T00:55:59.000Z" + }, + "end": { + "$date": "2021-07-15T01:08:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "478f330b-1ead-48ac-a972-8f6c57bae34e", + "start": { + "$date": "2021-07-15T01:08:59.000Z" + }, + "end": { + "$date": "2021-07-15T01:10:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2a4412dc-30f0-473e-af07-9f234890b7d1", + "start": { + "$date": "2021-07-15T01:10:59.000Z" + }, + "end": { + "$date": "2021-07-15T01:03:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f65263f-c099-4b3d-bd0b-8f2c409e0009", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T01:23:56.000Z" + }, + "end": { + "$date": "2021-07-15T01:46:10.000Z" + }, + "events": [ + { + "uuid": "5fc02881-2460-4918-b08d-7efd60f65080", + "start": { + "$date": "2021-07-15T01:23:56.000Z" + }, + "end": { + "$date": "2021-07-15T01:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d00d581b-ed2f-4af6-826c-4afa3dbcc107", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-15T01:25:03.000Z" + }, + "end": { + "$date": "2021-07-15T08:03:17.000Z" + }, + "events": [ + { + "uuid": "742f27b8-baef-4ce4-8898-9c52be895d8e", + "start": { + "$date": "2021-07-15T01:25:03.000Z" + }, + "end": { + "$date": "2021-07-15T08:03:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "286db773-2d43-49f1-a0f8-a25b92f0ead4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-15T01:45:23.000Z" + }, + "end": { + "$date": "2021-07-15T05:16:02.000Z" + }, + "events": [ + { + "uuid": "cb7e1855-dec4-445e-a0b7-7b30a4987e9f", + "start": { + "$date": "2021-07-15T01:45:23.000Z" + }, + "end": { + "$date": "2021-07-15T05:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdce837b-bc7b-468a-87ce-9b9763cfdb0f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T01:49:27.000Z" + }, + "end": { + "$date": "2021-07-15T02:15:45.000Z" + }, + "events": [ + { + "uuid": "57c08606-072f-43b4-9a25-73d7b5e5a406", + "start": { + "$date": "2021-07-15T01:49:27.000Z" + }, + "end": { + "$date": "2021-07-15T02:15:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b281b2bf-5d6a-45cd-bef2-4bfd4d6ede7b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T02:18:28.000Z" + }, + "end": { + "$date": "2021-07-15T02:40:53.000Z" + }, + "events": [ + { + "uuid": "fddac0e9-5023-4653-8bef-3b3b5d8c6b80", + "start": { + "$date": "2021-07-15T02:18:28.000Z" + }, + "end": { + "$date": "2021-07-15T02:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "638aa330-50a7-4159-b4c9-e3c3ab631fdb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-15T02:56:11.000Z" + }, + "end": { + "$date": "2021-07-15T06:20:51.000Z" + }, + "events": [ + { + "uuid": "545a358d-a94f-41a8-a5ea-044ddfe07d9b", + "start": { + "$date": "2021-07-15T02:56:11.000Z" + }, + "end": { + "$date": "2021-07-15T06:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c910d3aa-9a43-4f2a-bb62-46a66d82dfb6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-15T03:28:19.000Z" + }, + "end": { + "$date": "2021-07-15T05:16:20.000Z" + }, + "events": [ + { + "uuid": "c8497f59-67c5-46dd-9df3-5bb44fc3a359", + "start": { + "$date": "2021-07-15T03:28:19.000Z" + }, + "end": { + "$date": "2021-07-15T05:16:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4cac806e-e8f0-4d45-a300-ea1d4b1ee5ce", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-15T04:07:12.000Z" + }, + "end": { + "$date": "2021-07-15T04:50:55.000Z" + }, + "events": [ + { + "uuid": "2cd8c26b-1cd8-4ed6-a7dc-a176d49cb688", + "start": { + "$date": "2021-07-15T04:07:12.000Z" + }, + "end": { + "$date": "2021-07-15T04:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36baf661-ee4c-4e3d-8ba6-56ccb6c36d76", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-15T04:36:17.000Z" + }, + "end": { + "$date": "2021-07-15T08:55:46.000Z" + }, + "events": [ + { + "uuid": "80695adb-88eb-42bc-9592-6b1f55680509", + "start": { + "$date": "2021-07-15T04:36:17.000Z" + }, + "end": { + "$date": "2021-07-15T04:51:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "38ffd6d8-c976-4365-8352-2d549d89aa9e", + "start": { + "$date": "2021-07-15T04:51:17.000Z" + }, + "end": { + "$date": "2021-07-15T04:52:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8f5f9d4-6af8-4c4f-b3bd-f6bd40593156", + "start": { + "$date": "2021-07-15T04:52:17.000Z" + }, + "end": { + "$date": "2021-07-15T08:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ff78686-895b-477a-b67d-cd88d7bca853", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-15T04:42:51.000Z" + }, + "end": { + "$date": "2021-07-15T05:13:29.000Z" + }, + "events": [ + { + "uuid": "598dc89a-870f-440c-a087-3d70de46c37b", + "start": { + "$date": "2021-07-15T04:42:51.000Z" + }, + "end": { + "$date": "2021-07-15T05:13:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0831e16-6124-455f-af42-56c39bbff09b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T05:05:57.000Z" + }, + "end": { + "$date": "2021-07-15T05:28:09.000Z" + }, + "events": [ + { + "uuid": "eeb5f39e-85dc-4b92-bdcd-62e8c74eec65", + "start": { + "$date": "2021-07-15T05:05:57.000Z" + }, + "end": { + "$date": "2021-07-15T05:28:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c31365e-d1a3-4134-af50-980f7f88d715", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-15T05:19:04.000Z" + }, + "end": { + "$date": "2021-07-15T05:49:52.000Z" + }, + "events": [ + { + "uuid": "23c52372-a8fe-4f6b-af4a-2c19a8aa0e99", + "start": { + "$date": "2021-07-15T05:19:04.000Z" + }, + "end": { + "$date": "2021-07-15T05:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "45d135e3-69e5-4458-98c9-5f5d3b8342a1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-15T05:15:53.000Z" + }, + "end": { + "$date": "2021-07-15T08:55:35.000Z" + }, + "events": [ + { + "uuid": "0ca25ef1-1224-470a-8c5e-f1f790dc1b2d", + "start": { + "$date": "2021-07-15T05:15:53.000Z" + }, + "end": { + "$date": "2021-07-15T08:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a795c1bb-80fb-42dd-920d-42330e417aa4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-15T05:30:29.000Z" + }, + "end": { + "$date": "2021-07-15T06:17:50.000Z" + }, + "events": [ + { + "uuid": "7b8ec442-b1b3-4aee-93ae-c10780d31a0e", + "start": { + "$date": "2021-07-15T05:30:29.000Z" + }, + "end": { + "$date": "2021-07-15T06:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e2bf568-6360-49d2-8023-66c3d6390d95", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-15T05:57:08.000Z" + }, + "end": { + "$date": "2021-07-15T06:31:17.000Z" + }, + "events": [ + { + "uuid": "32bd6b8b-c711-47fe-9ac4-63cc86f60410", + "start": { + "$date": "2021-07-15T05:57:08.000Z" + }, + "end": { + "$date": "2021-07-15T06:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f783f05-c9ba-4820-a635-23b810120d38", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-15T06:21:01.000Z" + }, + "end": { + "$date": "2021-07-15T06:46:55.000Z" + }, + "events": [ + { + "uuid": "51c6d28a-5796-4224-99c8-bab8eb479014", + "start": { + "$date": "2021-07-15T06:21:01.000Z" + }, + "end": { + "$date": "2021-07-15T06:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df6fa02b-c8e5-4fd4-918b-b30ac6e0418d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-15T06:34:27.000Z" + }, + "end": { + "$date": "2021-07-15T07:07:25.000Z" + }, + "events": [ + { + "uuid": "81501d69-17c2-4049-844f-12821d79fe95", + "start": { + "$date": "2021-07-15T06:34:27.000Z" + }, + "end": { + "$date": "2021-07-15T07:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ccfeb328-9d61-49f1-ad78-db5388b83da3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-15T13:48:35.000Z" + }, + "end": { + "$date": "2021-07-15T14:16:10.000Z" + }, + "events": [ + { + "uuid": "8252379c-30ee-4a89-be41-d854a6429744", + "start": { + "$date": "2021-07-15T13:48:35.000Z" + }, + "end": { + "$date": "2021-07-15T14:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0132817-0e40-4864-b05c-e9872a634a0d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T17:08:15.000Z" + }, + "end": { + "$date": "2021-07-15T17:34:08.000Z" + }, + "events": [ + { + "uuid": "af3ca455-dc9e-4cfe-969b-3eefe006d65b", + "start": { + "$date": "2021-07-15T17:08:15.000Z" + }, + "end": { + "$date": "2021-07-15T17:34:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "219699a0-4169-448b-b815-e55db0aed21f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-15T17:09:21.000Z" + }, + "end": { + "$date": "2021-07-15T17:37:51.000Z" + }, + "events": [ + { + "uuid": "4a574914-07ea-4fff-bcbf-07b84b13d7d0", + "start": { + "$date": "2021-07-15T17:09:21.000Z" + }, + "end": { + "$date": "2021-07-15T17:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc554b94-c73e-45bb-bf22-070e06a9f5be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T17:36:27.000Z" + }, + "end": { + "$date": "2021-07-15T18:00:46.000Z" + }, + "events": [ + { + "uuid": "e54ec309-33e7-4f03-8e5d-034dca29747a", + "start": { + "$date": "2021-07-15T17:36:27.000Z" + }, + "end": { + "$date": "2021-07-15T18:00:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13bf7aa2-ab2c-40d1-aaa8-babc18589998", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T18:04:09.000Z" + }, + "end": { + "$date": "2021-07-15T18:26:57.000Z" + }, + "events": [ + { + "uuid": "b6ec6763-95f6-41ea-8e57-67efb60cc68c", + "start": { + "$date": "2021-07-15T18:04:09.000Z" + }, + "end": { + "$date": "2021-07-15T18:26:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7eccdeea-dbc4-49a3-a9d2-b9924ce604d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T19:39:41.000Z" + }, + "end": { + "$date": "2021-07-15T20:08:26.000Z" + }, + "events": [ + { + "uuid": "b06ac6f2-c241-415e-a75b-eb76d129cbd6", + "start": { + "$date": "2021-07-15T19:39:41.000Z" + }, + "end": { + "$date": "2021-07-15T20:08:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "272cb271-f5fa-44f3-b4c6-a72fd9d58d2a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-15T19:40:29.000Z" + }, + "end": { + "$date": "2021-07-15T20:08:15.000Z" + }, + "events": [ + { + "uuid": "955c22fe-6c68-4a27-90de-3a64c19f0ad5", + "start": { + "$date": "2021-07-15T19:40:29.000Z" + }, + "end": { + "$date": "2021-07-15T20:08:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0522c946-3c11-4a36-b86b-8ecba81a6d1f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-15T19:50:08.000Z" + }, + "end": { + "$date": "2021-07-15T23:42:55.000Z" + }, + "events": [ + { + "uuid": "9e112a2e-72f5-419e-a99a-c107221fb304", + "start": { + "$date": "2021-07-15T19:50:08.000Z" + }, + "end": { + "$date": "2021-07-15T23:38:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e8db68c-21c1-4e93-b5ed-b3421cc5d69d", + "start": { + "$date": "2021-07-15T23:38:08.000Z" + }, + "end": { + "$date": "2021-07-15T23:42:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b842c66c-e803-4c6b-8c65-610510bafe43", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-15T19:58:15.000Z" + }, + "end": { + "$date": "2021-07-15T23:42:07.000Z" + }, + "events": [ + { + "uuid": "d2d60a30-d27b-4dca-8677-a2d8b9c426b3", + "start": { + "$date": "2021-07-15T19:58:15.000Z" + }, + "end": { + "$date": "2021-07-15T23:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "281502a5-62a6-480b-86d0-44f27c88784e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T20:17:34.000Z" + }, + "end": { + "$date": "2021-07-15T20:33:33.000Z" + }, + "events": [ + { + "uuid": "550338cb-716f-4b3e-9013-223275a0a7e2", + "start": { + "$date": "2021-07-15T20:17:34.000Z" + }, + "end": { + "$date": "2021-07-15T20:33:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ca8f661-a884-4f26-a7d1-11b69c6f27f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T20:36:35.000Z" + }, + "end": { + "$date": "2021-07-15T21:02:40.000Z" + }, + "events": [ + { + "uuid": "d4bf3141-71bb-4c4c-9dbd-77e468aa66c2", + "start": { + "$date": "2021-07-15T20:36:35.000Z" + }, + "end": { + "$date": "2021-07-15T21:02:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bb4e4c8-ef00-4b86-9fbb-4140ab18ce49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T21:10:32.000Z" + }, + "end": { + "$date": "2021-07-15T21:29:40.000Z" + }, + "events": [ + { + "uuid": "3e73de92-621b-40e9-ab12-a32faf059f40", + "start": { + "$date": "2021-07-15T21:10:32.000Z" + }, + "end": { + "$date": "2021-07-15T21:29:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efc2fa6f-1a2d-445e-8027-bb7ee02925bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-15T21:34:08.000Z" + }, + "end": { + "$date": "2021-07-15T21:59:35.000Z" + }, + "events": [ + { + "uuid": "cdc6d988-8429-4703-be45-04ac52437e2f", + "start": { + "$date": "2021-07-15T21:34:08.000Z" + }, + "end": { + "$date": "2021-07-15T21:59:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "31de5ed6-1919-4aeb-bfa5-6648b0281ef0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-15T21:12:05.000Z" + }, + "end": { + "$date": "2021-07-16T03:22:44.000Z" + }, + "events": [ + { + "uuid": "5922bb12-218c-4fb5-bc28-996d8fec4cd2", + "start": { + "$date": "2021-07-15T21:12:05.000Z" + }, + "end": { + "$date": "2021-07-16T03:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "771845b6-7103-4190-875c-57fe7d7f70e1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-15T23:13:33.000Z" + }, + "end": { + "$date": "2021-07-16T00:20:00.000Z" + }, + "events": [ + { + "uuid": "ab1f5169-7f2b-4055-811e-cd607267e5f0", + "start": { + "$date": "2021-07-15T23:13:33.000Z" + }, + "end": { + "$date": "2021-07-16T00:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0a935cbb-c5ef-42da-9edd-14fb99feaa5a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-16T01:47:15.000Z" + }, + "end": { + "$date": "2021-07-16T01:49:15.000Z" + }, + "events": [ + { + "uuid": "f95cfd71-26d9-40e8-8f3a-ab542b33d45c", + "start": { + "$date": "2021-07-16T01:47:15.000Z" + }, + "end": { + "$date": "2021-07-16T01:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8b0b0c29-3f0d-43d7-b233-be09e52f248a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-16T01:47:33.000Z" + }, + "end": { + "$date": "2021-07-16T03:44:37.000Z" + }, + "events": [ + { + "uuid": "4f3ae5bb-98d6-4958-995c-9bc098a3f627", + "start": { + "$date": "2021-07-16T01:47:33.000Z" + }, + "end": { + "$date": "2021-07-16T03:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "71b08dd9-df2a-40a8-98cb-bc0ed967c506", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-16T01:48:59.000Z" + }, + "end": { + "$date": "2021-07-16T05:14:36.000Z" + }, + "events": [ + { + "uuid": "fc2fb27a-f3e4-4b77-b880-d873ecdab906", + "start": { + "$date": "2021-07-16T01:48:59.000Z" + }, + "end": { + "$date": "2021-07-16T05:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "uuid": "68e06990-8210-4334-955c-5c914e2b3018", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-16T01:51:26.000Z" + }, + "end": { + "$date": "2021-07-16T02:06:26.000Z" + }, + "events": [ + { + "uuid": "f5f9092e-9e38-4aba-abfa-5ff9502cd373", + "start": { + "$date": "2021-07-16T01:51:26.000Z" + }, + "end": { + "$date": "2021-07-16T02:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "311ca1d3-6154-48fc-a142-bec3883f9ce4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-16T02:54:48.000Z" + }, + "end": { + "$date": "2021-07-16T02:54:58.000Z" + }, + "events": [ + { + "uuid": "a2d71a29-5342-4644-ae0c-d5a569dca74d", + "start": { + "$date": "2021-07-16T02:54:48.000Z" + }, + "end": { + "$date": "2021-07-16T02:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f9cdff2b-37c3-4885-b8ac-7303f8376787", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-16T02:35:58.000Z" + }, + "end": { + "$date": "2021-07-16T05:54:24.000Z" + }, + "events": [ + { + "uuid": "b29f760e-34aa-4623-9930-99128ed68886", + "start": { + "$date": "2021-07-16T02:35:58.000Z" + }, + "end": { + "$date": "2021-07-16T05:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "53eb4803-7ace-4594-9adf-9df3cdfb9eba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-16T02:37:57.000Z" + }, + "end": { + "$date": "2021-07-16T05:56:10.000Z" + }, + "events": [ + { + "uuid": "20652957-d1b2-4e93-b3e1-a10d7faa2d49", + "start": { + "$date": "2021-07-16T02:37:57.000Z" + }, + "end": { + "$date": "2021-07-16T05:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "be235465-f62f-4a89-8e5b-bafbdf14e723", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-16T02:55:18.000Z" + }, + "end": { + "$date": "2021-07-16T03:52:04.000Z" + }, + "events": [ + { + "uuid": "a4cf3b3f-d932-4259-ba0b-655d108007ea", + "start": { + "$date": "2021-07-16T02:55:18.000Z" + }, + "end": { + "$date": "2021-07-16T03:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e84d187-0be7-4838-b0d1-329e57dcd122", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-16T04:17:17.000Z" + }, + "end": { + "$date": "2021-07-16T04:49:41.000Z" + }, + "events": [ + { + "uuid": "a1a23a95-64cd-4122-a715-8218b9365629", + "start": { + "$date": "2021-07-16T04:17:17.000Z" + }, + "end": { + "$date": "2021-07-16T04:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6d1560fa-12f4-447d-9f60-1d78fb83e6b5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-16T04:20:36.000Z" + }, + "end": { + "$date": "2021-07-16T05:31:59.000Z" + }, + "events": [ + { + "uuid": "d1b4116d-ba41-49b3-a3a5-a8be2e957bcf", + "start": { + "$date": "2021-07-16T04:20:36.000Z" + }, + "end": { + "$date": "2021-07-16T05:31:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2236e7e8-c7c0-4ef1-91de-d65c685a9e52", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-16T04:33:49.000Z" + }, + "end": { + "$date": "2021-07-16T05:53:43.000Z" + }, + "events": [ + { + "uuid": "d534fac9-064c-4176-9dab-38a9ef2dc56f", + "start": { + "$date": "2021-07-16T04:33:49.000Z" + }, + "end": { + "$date": "2021-07-16T05:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4dcbe8a6-2e52-41be-bd17-e1e8e9d4d628", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-16T04:35:07.000Z" + }, + "end": { + "$date": "2021-07-16T05:54:12.000Z" + }, + "events": [ + { + "uuid": "3e82a55d-ad83-4ffb-875e-00c3bc71d073", + "start": { + "$date": "2021-07-16T04:35:07.000Z" + }, + "end": { + "$date": "2021-07-16T05:54:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "964fd759-a363-4157-9722-57b7b3c79b24", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-16T04:53:41.000Z" + }, + "end": { + "$date": "2021-07-16T05:17:19.000Z" + }, + "events": [ + { + "uuid": "0465aabb-25cf-4cea-b966-3b62ac2e42c3", + "start": { + "$date": "2021-07-16T04:53:41.000Z" + }, + "end": { + "$date": "2021-07-16T05:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "0e8472e4-8457-42b7-88cc-f633474d57a6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-16T08:36:41.000Z" + }, + "end": { + "$date": "2021-07-16T08:38:38.000Z" + }, + "events": [ + { + "uuid": "4c4babff-c28a-4549-841e-73df0f9ce18c", + "start": { + "$date": "2021-07-16T08:36:41.000Z" + }, + "end": { + "$date": "2021-07-16T12:06:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d87d10ad-933e-45b9-b5bb-5fd3d56773ed", + "start": { + "$date": "2021-07-16T12:06:41.000Z" + }, + "end": { + "$date": "2021-07-16T08:38:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f021ba89-0c48-44d8-97fb-24d99f045f37", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-16T05:26:09.000Z" + }, + "end": { + "$date": "2021-07-16T05:52:28.000Z" + }, + "events": [ + { + "uuid": "43043ae9-6552-462b-99dd-474ac5f24931", + "start": { + "$date": "2021-07-16T05:26:09.000Z" + }, + "end": { + "$date": "2021-07-16T05:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c03cebe9-674b-421f-b851-d45f87a378fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-16T05:32:09.000Z" + }, + "end": { + "$date": "2021-07-16T07:22:35.000Z" + }, + "events": [ + { + "uuid": "e7901be4-27bc-40d4-a24f-de00adcc0ffc", + "start": { + "$date": "2021-07-16T05:32:09.000Z" + }, + "end": { + "$date": "2021-07-16T07:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "273f9317-d507-4c82-be53-38066cc82e93", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-16T06:01:14.000Z" + }, + "end": { + "$date": "2021-07-16T06:33:32.000Z" + }, + "events": [ + { + "uuid": "daf5afbd-80ce-4d48-9edc-3fb533a1cab8", + "start": { + "$date": "2021-07-16T06:01:14.000Z" + }, + "end": { + "$date": "2021-07-16T06:33:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a555a01-d27c-4eb0-a4b9-f83e91f65757", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-16T06:17:49.000Z" + }, + "end": { + "$date": "2021-07-16T06:33:39.000Z" + }, + "events": [ + { + "uuid": "11cb8f95-0d1b-4d58-8988-7c358179a61d", + "start": { + "$date": "2021-07-16T06:17:49.000Z" + }, + "end": { + "$date": "2021-07-16T06:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "3118ae41-1d08-43e5-a2dc-b2ed868fee35", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-16T08:36:41.000Z" + }, + "end": { + "$date": "2021-07-16T14:35:48.000Z" + }, + "events": [ + { + "uuid": "a0966540-702e-4916-a6b4-fa35b32d5f31", + "start": { + "$date": "2021-07-16T08:36:41.000Z" + }, + "end": { + "$date": "2021-07-16T14:35:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5ed4eeb-1135-4723-8cb4-abcffd40b744", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-16T17:37:14.000Z" + }, + "end": { + "$date": "2021-07-16T19:47:26.000Z" + }, + "events": [ + { + "uuid": "e71dd1eb-fcaa-4309-a899-32d2398736b6", + "start": { + "$date": "2021-07-16T17:37:14.000Z" + }, + "end": { + "$date": "2021-07-16T18:08:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0852bbe9-f6ea-444d-8df9-184d6d76ee89", + "start": { + "$date": "2021-07-16T18:08:14.000Z" + }, + "end": { + "$date": "2021-07-16T19:47:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a657878f-3040-4b97-84e6-deb839c582ea", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-16T19:31:51.000Z" + }, + "end": { + "$date": "2021-07-16T20:51:02.000Z" + }, + "events": [ + { + "uuid": "de655ea6-c1bf-441c-bdcf-789b2b2d95db", + "start": { + "$date": "2021-07-16T19:31:51.000Z" + }, + "end": { + "$date": "2021-07-16T20:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "71ed193a-7fd3-4272-b083-dc857786e537", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-16T20:28:14.000Z" + }, + "end": { + "$date": "2021-07-16T23:48:08.000Z" + }, + "events": [ + { + "uuid": "302f089f-a3a4-489e-ae50-61f6fc7ba010", + "start": { + "$date": "2021-07-16T20:28:14.000Z" + }, + "end": { + "$date": "2021-07-16T23:03:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8efd6bb1-95ea-4f67-b718-78cfe275b9bb", + "start": { + "$date": "2021-07-16T23:03:14.000Z" + }, + "end": { + "$date": "2021-07-16T23:06:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4700101-a1bc-42e5-88c4-17797c51a400", + "start": { + "$date": "2021-07-16T23:06:14.000Z" + }, + "end": { + "$date": "2021-07-16T23:08:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31a9a22a-fe4a-4a3b-896d-dca4a7537247", + "start": { + "$date": "2021-07-16T23:08:14.000Z" + }, + "end": { + "$date": "2021-07-16T23:16:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8badf15-e4be-4c2a-ab71-78bc53e92527", + "start": { + "$date": "2021-07-16T23:16:14.000Z" + }, + "end": { + "$date": "2021-07-16T23:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f8aec50a-c6df-44d3-a5cf-16be4e01da85", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-16T22:09:24.000Z" + }, + "end": { + "$date": "2021-07-16T22:45:56.000Z" + }, + "events": [ + { + "uuid": "1560ff27-73b8-43ee-80fc-0e563e381c9c", + "start": { + "$date": "2021-07-16T22:09:24.000Z" + }, + "end": { + "$date": "2021-07-16T22:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bfacdc64-610b-490e-b2f8-21baa4a9b3d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-17T00:33:26.000Z" + }, + "end": { + "$date": "2021-07-17T07:12:44.000Z" + }, + "events": [ + { + "uuid": "154c89e5-258c-40b2-aead-d39eda57a45e", + "start": { + "$date": "2021-07-17T00:33:26.000Z" + }, + "end": { + "$date": "2021-07-17T07:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b680e822-1c0c-46b8-9238-fb2b242f1537", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-17T01:12:14.000Z" + }, + "end": { + "$date": "2021-07-17T05:21:12.000Z" + }, + "events": [ + { + "uuid": "5f26b580-4429-4bd0-8dd9-2710b99e3bfe", + "start": { + "$date": "2021-07-17T01:12:14.000Z" + }, + "end": { + "$date": "2021-07-17T05:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "03880a88-b8c7-44ba-a771-b96a64b04ddf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-17T06:47:18.000Z" + }, + "end": { + "$date": "2021-07-17T06:49:52.000Z" + }, + "events": [ + { + "uuid": "596563e3-01f8-4dd3-a444-3e14686a5218", + "start": { + "$date": "2021-07-17T06:47:18.000Z" + }, + "end": { + "$date": "2021-07-17T06:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dde4516e-be19-47be-9780-45912aef2444", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-17T01:47:37.000Z" + }, + "end": { + "$date": "2021-07-17T01:50:08.000Z" + }, + "events": [ + { + "uuid": "0b12d3e2-019a-49ab-ae5e-e491afae6fde", + "start": { + "$date": "2021-07-17T01:47:37.000Z" + }, + "end": { + "$date": "2021-07-17T01:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "333167f8-25f4-4a70-9ddf-2db4c271cdc7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-17T01:58:53.000Z" + }, + "end": { + "$date": "2021-07-17T04:15:53.000Z" + }, + "events": [ + { + "uuid": "afbeb914-21e2-47e0-805c-5fc1441e0cac", + "start": { + "$date": "2021-07-17T01:58:53.000Z" + }, + "end": { + "$date": "2021-07-17T04:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b74fb848-c15d-401a-801e-13fc9b7293a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-17T02:50:02.000Z" + }, + "end": { + "$date": "2021-07-17T03:08:16.000Z" + }, + "events": [ + { + "uuid": "4cc9f3eb-3b73-4792-87bd-b9ae15792a1a", + "start": { + "$date": "2021-07-17T02:50:02.000Z" + }, + "end": { + "$date": "2021-07-17T03:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "97725a0d-0107-44e3-bde2-76dcc7c37a03", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-17T03:04:05.000Z" + }, + "end": { + "$date": "2021-07-17T03:56:46.000Z" + }, + "events": [ + { + "uuid": "321df1ea-2a6b-45af-8699-b9e1a432be08", + "start": { + "$date": "2021-07-17T03:04:05.000Z" + }, + "end": { + "$date": "2021-07-17T03:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87dd33b2-3385-4332-8616-96eda44d9a88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-17T03:14:45.000Z" + }, + "end": { + "$date": "2021-07-17T03:41:09.000Z" + }, + "events": [ + { + "uuid": "1350088c-5b78-49c3-b94a-890bfbd2a5a6", + "start": { + "$date": "2021-07-17T03:14:45.000Z" + }, + "end": { + "$date": "2021-07-17T03:41:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "66e7fa4c-1cce-41f5-bdb5-39d42e96bcba", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-17T03:16:59.000Z" + }, + "end": { + "$date": "2021-07-17T04:15:51.000Z" + }, + "events": [ + { + "uuid": "ef4c4da7-f954-4339-ad99-3da4760f8f95", + "start": { + "$date": "2021-07-17T03:16:59.000Z" + }, + "end": { + "$date": "2021-07-17T04:15:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c483fe99-142b-48e8-8f45-cab15d5ab16f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-17T03:45:58.000Z" + }, + "end": { + "$date": "2021-07-17T04:15:57.000Z" + }, + "events": [ + { + "uuid": "93ee1743-2f1c-4c53-a1ae-b77274de0ad7", + "start": { + "$date": "2021-07-17T03:45:58.000Z" + }, + "end": { + "$date": "2021-07-17T04:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f4ea061-eb75-4246-b2ae-5c43d1d9e896", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-17T04:18:12.000Z" + }, + "end": { + "$date": "2021-07-17T04:34:18.000Z" + }, + "events": [ + { + "uuid": "498a3c87-e37c-4266-9b1d-f463bd288ef7", + "start": { + "$date": "2021-07-17T04:18:12.000Z" + }, + "end": { + "$date": "2021-07-17T04:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "38f073f8-8200-40b8-8f12-772b28401b6a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-17T04:17:08.000Z" + }, + "end": { + "$date": "2021-07-17T04:45:18.000Z" + }, + "events": [ + { + "uuid": "437e1159-8b96-41cc-a586-f1e157b8decd", + "start": { + "$date": "2021-07-17T04:17:08.000Z" + }, + "end": { + "$date": "2021-07-17T04:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ec2c1ab-f6bc-4eb9-ae10-785569f2b030", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T04:34:52.000Z" + }, + "end": { + "$date": "2021-07-17T05:09:40.000Z" + }, + "events": [ + { + "uuid": "93de21c0-88df-4679-aa25-2a6488cc5500", + "start": { + "$date": "2021-07-17T04:34:52.000Z" + }, + "end": { + "$date": "2021-07-17T05:09:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c8c0ea6-a0dd-464d-b08d-7f6233026f6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-17T04:34:43.000Z" + }, + "end": { + "$date": "2021-07-17T04:37:06.000Z" + }, + "events": [ + { + "uuid": "449aa791-523d-4ced-b154-18f2e8ccc811", + "start": { + "$date": "2021-07-17T04:34:43.000Z" + }, + "end": { + "$date": "2021-07-17T04:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e49794ed-17ee-49d1-9152-9b6673f686a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-17T04:56:11.000Z" + }, + "end": { + "$date": "2021-07-17T05:51:55.000Z" + }, + "events": [ + { + "uuid": "e85ba614-b19a-44ac-b733-932e00b705bf", + "start": { + "$date": "2021-07-17T04:56:11.000Z" + }, + "end": { + "$date": "2021-07-17T05:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbafb07f-71a3-4a27-8994-2800b9dcaf23", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T05:19:07.000Z" + }, + "end": { + "$date": "2021-07-17T05:45:30.000Z" + }, + "events": [ + { + "uuid": "f3b81846-d679-4a95-a39a-00901afcd187", + "start": { + "$date": "2021-07-17T05:19:07.000Z" + }, + "end": { + "$date": "2021-07-17T05:45:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36741fe2-2c3a-4e5e-869d-bb5f4ad8abe9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-17T05:11:40.000Z" + }, + "end": { + "$date": "2021-07-17T06:07:25.000Z" + }, + "events": [ + { + "uuid": "0a24f461-ee8f-4880-bd31-00f9ee2f45a7", + "start": { + "$date": "2021-07-17T05:11:40.000Z" + }, + "end": { + "$date": "2021-07-17T06:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "44866a81-d404-4715-ab7d-69fbfd81a522", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-17T05:23:07.000Z" + }, + "end": { + "$date": "2021-07-17T06:47:41.000Z" + }, + "events": [ + { + "uuid": "32384f9c-4d5d-4f63-9793-8acc7a5c7f73", + "start": { + "$date": "2021-07-17T05:23:07.000Z" + }, + "end": { + "$date": "2021-07-17T06:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c165ab0-e057-41f1-8d5e-55e993a01ec5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T05:55:56.000Z" + }, + "end": { + "$date": "2021-07-17T06:17:43.000Z" + }, + "events": [ + { + "uuid": "e3fbd7a6-e303-4506-b97b-2aa1b0fc2d58", + "start": { + "$date": "2021-07-17T05:55:56.000Z" + }, + "end": { + "$date": "2021-07-17T06:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4e710ab4-28c3-41b1-a7f6-a3cc024282ef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-17T05:52:30.000Z" + }, + "end": { + "$date": "2021-07-17T06:47:22.000Z" + }, + "events": [ + { + "uuid": "49099e49-27b7-4df8-aa10-6656cf9e6f9d", + "start": { + "$date": "2021-07-17T05:52:30.000Z" + }, + "end": { + "$date": "2021-07-17T06:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e72e138-ba4d-4fbd-9179-0d7bd55d775c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T06:23:55.000Z" + }, + "end": { + "$date": "2021-07-17T06:51:52.000Z" + }, + "events": [ + { + "uuid": "990aff01-b36b-4c27-bb99-bc6740cd0316", + "start": { + "$date": "2021-07-17T06:23:55.000Z" + }, + "end": { + "$date": "2021-07-17T06:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c53b431c-5ed4-4646-81ca-759e379dbdb3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T07:03:09.000Z" + }, + "end": { + "$date": "2021-07-17T07:30:27.000Z" + }, + "events": [ + { + "uuid": "28a375dc-bc6d-4d2c-bc12-863b1e9fe05d", + "start": { + "$date": "2021-07-17T07:03:09.000Z" + }, + "end": { + "$date": "2021-07-17T07:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "024f83c7-cb54-45b2-a600-7caa75683aed", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T07:36:43.000Z" + }, + "end": { + "$date": "2021-07-17T08:00:15.000Z" + }, + "events": [ + { + "uuid": "e3dd4f6c-df8e-476b-8ea9-16c47378d4f4", + "start": { + "$date": "2021-07-17T07:36:43.000Z" + }, + "end": { + "$date": "2021-07-17T08:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cede0aca-a292-4401-8af2-5c85deabcd2d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-17T08:06:46.000Z" + }, + "end": { + "$date": "2021-07-17T08:41:41.000Z" + }, + "events": [ + { + "uuid": "44c831bb-eed8-4365-9a53-c705eacd79ab", + "start": { + "$date": "2021-07-17T08:06:46.000Z" + }, + "end": { + "$date": "2021-07-17T08:41:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "882be0b0-ada3-4da5-99a0-6596f14bb1fe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-17T15:28:07.000Z" + }, + "end": { + "$date": "2021-07-17T16:21:57.000Z" + }, + "events": [ + { + "uuid": "071b11dc-7b7b-41ae-87a8-c56c27354773", + "start": { + "$date": "2021-07-17T15:28:07.000Z" + }, + "end": { + "$date": "2021-07-17T16:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9eb22e4f-6432-4afb-b755-8fc66aa743ba", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-17T16:18:22.000Z" + }, + "end": { + "$date": "2021-07-17T23:00:32.000Z" + }, + "events": [ + { + "uuid": "c382b967-de0d-4e37-bfac-fc56afa5e4ad", + "start": { + "$date": "2021-07-17T16:18:22.000Z" + }, + "end": { + "$date": "2021-07-17T21:03:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eefe5f60-74a0-4d6d-91ed-b7ac104c0fe0", + "start": { + "$date": "2021-07-17T21:03:22.000Z" + }, + "end": { + "$date": "2021-07-17T21:17:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f1ac9bc-35c9-4d34-b002-88d4d0795c37", + "start": { + "$date": "2021-07-17T21:17:22.000Z" + }, + "end": { + "$date": "2021-07-17T23:00:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fbbb516f-5722-4830-9600-6cbbc17a56c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-17T18:44:19.000Z" + }, + "end": { + "$date": "2021-07-17T20:59:29.000Z" + }, + "events": [ + { + "uuid": "6cd27021-75cf-46a9-9057-77ad22d166ed", + "start": { + "$date": "2021-07-17T18:44:19.000Z" + }, + "end": { + "$date": "2021-07-17T20:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0e3f62af-aec4-44e1-a346-283b77a5b2ef", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-17T22:35:17.000Z" + }, + "end": { + "$date": "2021-07-18T00:14:21.000Z" + }, + "events": [ + { + "uuid": "21826487-ad27-47b9-90c4-802d668c46e6", + "start": { + "$date": "2021-07-17T22:35:17.000Z" + }, + "end": { + "$date": "2021-07-18T00:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b57443a6-75d7-44d1-a2ea-d87918197da6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-17T23:00:41.000Z" + }, + "end": { + "$date": "2021-07-17T23:04:20.000Z" + }, + "events": [ + { + "uuid": "c986a5f3-3c57-472c-b8be-1f9486d14d69", + "start": { + "$date": "2021-07-17T23:00:41.000Z" + }, + "end": { + "$date": "2021-07-17T23:04:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "389847a5-ec29-42e6-b59f-e913529a19b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-17T23:06:48.000Z" + }, + "end": { + "$date": "2021-07-18T06:27:04.000Z" + }, + "events": [ + { + "uuid": "d6ff0486-358c-46ae-a646-bf9e103df11f", + "start": { + "$date": "2021-07-17T23:06:48.000Z" + }, + "end": { + "$date": "2021-07-18T03:07:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de23c460-cb4d-4d02-9072-6c454fc6b1ce", + "start": { + "$date": "2021-07-18T03:07:48.000Z" + }, + "end": { + "$date": "2021-07-18T03:12:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e487542a-87b5-4970-8c68-ddb0c643b4c7", + "start": { + "$date": "2021-07-18T03:12:48.000Z" + }, + "end": { + "$date": "2021-07-18T03:22:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0f321ca-4a5b-48b3-b680-7044f5bb4519", + "start": { + "$date": "2021-07-18T03:22:48.000Z" + }, + "end": { + "$date": "2021-07-18T03:25:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "76683b74-bbdb-4224-98ed-98b822b28df3", + "start": { + "$date": "2021-07-18T03:25:48.000Z" + }, + "end": { + "$date": "2021-07-18T06:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d351e30f-8dd4-4564-8052-5a2f51dc06db", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-17T23:38:37.000Z" + }, + "end": { + "$date": "2021-07-18T00:30:54.000Z" + }, + "events": [ + { + "uuid": "33ecec61-7b67-42a7-952a-a3be99b1cfea", + "start": { + "$date": "2021-07-17T23:38:37.000Z" + }, + "end": { + "$date": "2021-07-18T00:30:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "471e49f9-d7d2-48f1-879d-f5375d57522c", + "start": { + "$date": "2021-07-18T00:30:37.000Z" + }, + "end": { + "$date": "2021-07-18T00:30:54.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "7db7cf15-44e4-44ff-822c-4d4047281d81", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-17T23:55:06.000Z" + }, + "end": { + "$date": "2021-07-18T00:10:03.000Z" + }, + "events": [ + { + "uuid": "f295c24c-8325-474a-80fc-0121ca1bde17", + "start": { + "$date": "2021-07-17T23:55:06.000Z" + }, + "end": { + "$date": "2021-07-18T00:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "a85ede80-c270-4409-a60a-1c016ff1907e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-18T00:30:32.000Z" + }, + "end": { + "$date": "2021-07-18T01:51:36.000Z" + }, + "events": [ + { + "uuid": "f7195f5d-66a8-40db-82a6-db214604d86d", + "start": { + "$date": "2021-07-18T00:30:32.000Z" + }, + "end": { + "$date": "2021-07-18T00:54:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e4dc280-6774-44eb-8236-016e4fa38013", + "start": { + "$date": "2021-07-18T00:54:32.000Z" + }, + "end": { + "$date": "2021-07-18T01:00:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bdadc2f0-973f-4031-bed6-6ba1ceaa46c2", + "start": { + "$date": "2021-07-18T01:00:32.000Z" + }, + "end": { + "$date": "2021-07-18T01:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "431bc622-9ec4-45a9-9826-afc9ed6781cf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-18T01:09:02.000Z" + }, + "end": { + "$date": "2021-07-18T01:57:34.000Z" + }, + "events": [ + { + "uuid": "4b2b40d8-3aab-4e84-9426-79afc3b20a9e", + "start": { + "$date": "2021-07-18T01:09:02.000Z" + }, + "end": { + "$date": "2021-07-18T01:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a30f6440-b142-47b7-b8e9-247ddb2c9a79", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-18T01:10:43.000Z" + }, + "end": { + "$date": "2021-07-18T02:05:11.000Z" + }, + "events": [ + { + "uuid": "ac8551ac-1b30-441f-ab84-2718f037ab46", + "start": { + "$date": "2021-07-18T01:10:43.000Z" + }, + "end": { + "$date": "2021-07-18T02:05:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "28584343-f41f-4cf8-88c1-8aa139f8f6ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-18T02:06:19.000Z" + }, + "end": { + "$date": "2021-07-18T03:12:24.000Z" + }, + "events": [ + { + "uuid": "12317ddf-24ba-421d-9e44-fb0e6bafb9b7", + "start": { + "$date": "2021-07-18T02:06:19.000Z" + }, + "end": { + "$date": "2021-07-18T03:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f58a647-bd1e-4049-8a31-044ae50c0824", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T02:08:44.000Z" + }, + "end": { + "$date": "2021-07-18T02:27:29.000Z" + }, + "events": [ + { + "uuid": "bc2381b5-b654-49f9-9855-d2b397ccb272", + "start": { + "$date": "2021-07-18T02:08:44.000Z" + }, + "end": { + "$date": "2021-07-18T02:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fa1be73-60fd-423b-a387-032a78a40946", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T02:32:17.000Z" + }, + "end": { + "$date": "2021-07-18T02:56:26.000Z" + }, + "events": [ + { + "uuid": "76be7aa6-1360-4ecc-8823-4deef19d54f8", + "start": { + "$date": "2021-07-18T02:32:17.000Z" + }, + "end": { + "$date": "2021-07-18T02:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "4ee4402d-9f0e-43a3-8dbd-6ccc7d43e753", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-18T02:53:32.000Z" + }, + "end": { + "$date": "2021-07-18T07:04:23.000Z" + }, + "events": [ + { + "uuid": "afe38526-42a9-44b7-a2d5-50285085450d", + "start": { + "$date": "2021-07-18T02:53:32.000Z" + }, + "end": { + "$date": "2021-07-18T07:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "46ebc8e7-01f8-4bb8-ac7f-5148c7a64608", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-18T02:53:52.000Z" + }, + "end": { + "$date": "2021-07-18T07:04:27.000Z" + }, + "events": [ + { + "uuid": "4e8fe107-68bd-411e-b8aa-55a8d8c78f50", + "start": { + "$date": "2021-07-18T02:53:52.000Z" + }, + "end": { + "$date": "2021-07-18T07:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff76892c-59ea-47b5-9788-01007b522791", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T02:59:55.000Z" + }, + "end": { + "$date": "2021-07-18T03:21:00.000Z" + }, + "events": [ + { + "uuid": "a96ae36b-4296-4009-b8e6-7838c7065468", + "start": { + "$date": "2021-07-18T02:59:55.000Z" + }, + "end": { + "$date": "2021-07-18T03:21:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e0b158d0-650f-4e7f-84d9-351b116aa0d1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-18T03:33:29.000Z" + }, + "end": { + "$date": "2021-07-18T03:36:14.000Z" + }, + "events": [ + { + "uuid": "87d12558-a89a-44c0-b9c6-4d1cea677692", + "start": { + "$date": "2021-07-18T03:33:29.000Z" + }, + "end": { + "$date": "2021-07-18T03:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "44aa7502-50cf-462f-baf5-0e60fb154275", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-18T03:36:54.000Z" + }, + "end": { + "$date": "2021-07-18T07:04:17.000Z" + }, + "events": [ + { + "uuid": "24eacbf9-8e77-48f4-9d00-b0d6903aa6d7", + "start": { + "$date": "2021-07-18T03:36:54.000Z" + }, + "end": { + "$date": "2021-07-18T07:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13261545-9237-4cdb-a10a-03cff2489601", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-18T05:10:17.000Z" + }, + "end": { + "$date": "2021-07-18T05:31:34.000Z" + }, + "events": [ + { + "uuid": "ffee74b0-3836-4cd0-ac75-59a438904450", + "start": { + "$date": "2021-07-18T05:10:17.000Z" + }, + "end": { + "$date": "2021-07-18T05:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7af10e79-343f-4cdb-bd3b-82986449d22d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-18T05:36:55.000Z" + }, + "end": { + "$date": "2021-07-18T06:07:44.000Z" + }, + "events": [ + { + "uuid": "520d799d-e284-40df-bca7-1c9f3997decc", + "start": { + "$date": "2021-07-18T05:36:55.000Z" + }, + "end": { + "$date": "2021-07-18T06:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf9c7e42-f70c-4359-b384-b690c7da5ef8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-18T06:30:17.000Z" + }, + "end": { + "$date": "2021-07-18T07:07:18.000Z" + }, + "events": [ + { + "uuid": "cca85ec9-b954-44c1-9797-99d12a30acf2", + "start": { + "$date": "2021-07-18T06:30:17.000Z" + }, + "end": { + "$date": "2021-07-18T07:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "12e406bf-af14-4223-bf26-1d0dd021ded8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-18T07:10:38.000Z" + }, + "end": { + "$date": "2021-07-18T07:13:59.000Z" + }, + "events": [ + { + "uuid": "889ce74e-0d71-4b39-9db7-f099d6a4744b", + "start": { + "$date": "2021-07-18T07:10:38.000Z" + }, + "end": { + "$date": "2021-07-18T07:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29b54c8a-d95b-4f97-9d80-b3f3c324b330", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T08:02:36.000Z" + }, + "end": { + "$date": "2021-07-18T08:32:38.000Z" + }, + "events": [ + { + "uuid": "fec45683-1d3b-4c08-b7c3-228c63e5c100", + "start": { + "$date": "2021-07-18T08:02:36.000Z" + }, + "end": { + "$date": "2021-07-18T08:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68ee8777-9189-470b-bbbd-de0d74474ab7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T08:39:47.000Z" + }, + "end": { + "$date": "2021-07-18T09:16:54.000Z" + }, + "events": [ + { + "uuid": "4828b49c-f36e-4744-8c29-c64296c6eacf", + "start": { + "$date": "2021-07-18T08:39:47.000Z" + }, + "end": { + "$date": "2021-07-18T09:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8072cada-d750-4d17-9f68-1c6863b81bce", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-18T08:39:37.000Z" + }, + "end": { + "$date": "2021-07-18T09:16:42.000Z" + }, + "events": [ + { + "uuid": "dd569907-048d-4345-91d4-dc2dd9ea8a7a", + "start": { + "$date": "2021-07-18T08:39:37.000Z" + }, + "end": { + "$date": "2021-07-18T09:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "uuid": "2f048796-10cf-4962-b8c3-e773fc93cebb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-18T14:21:43.000Z" + }, + "end": { + "$date": "2021-07-18T15:10:56.000Z" + }, + "events": [ + { + "uuid": "b76d100e-cf3b-4c55-8661-3f4c88f7e1e1", + "start": { + "$date": "2021-07-18T14:21:43.000Z" + }, + "end": { + "$date": "2021-07-18T15:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d5c0d885-c541-490a-9a94-c789be7b0d42", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-18T16:29:24.000Z" + }, + "end": { + "$date": "2021-07-18T17:37:12.000Z" + }, + "events": [ + { + "uuid": "cc21fcf8-4f86-44ea-b786-c294af0584c0", + "start": { + "$date": "2021-07-18T16:29:24.000Z" + }, + "end": { + "$date": "2021-07-18T17:37:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "836ce057-61db-47de-ba09-e32763379306", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T19:12:45.000Z" + }, + "end": { + "$date": "2021-07-18T19:38:14.000Z" + }, + "events": [ + { + "uuid": "9d9e5883-c639-4a15-a80a-fea43288d69e", + "start": { + "$date": "2021-07-18T19:12:45.000Z" + }, + "end": { + "$date": "2021-07-18T19:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5bdef84c-2b06-4070-b507-c700500d18b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-18T19:10:57.000Z" + }, + "end": { + "$date": "2021-07-18T20:11:38.000Z" + }, + "events": [ + { + "uuid": "4e75d9c2-5ef1-42b6-a6b0-0c236bb25105", + "start": { + "$date": "2021-07-18T19:10:57.000Z" + }, + "end": { + "$date": "2021-07-18T20:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fee6c83-c151-4c53-94b4-2bac32bb8573", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T19:42:06.000Z" + }, + "end": { + "$date": "2021-07-18T20:13:24.000Z" + }, + "events": [ + { + "uuid": "647303ab-92d9-4335-a74e-22ca96e701f4", + "start": { + "$date": "2021-07-18T19:42:06.000Z" + }, + "end": { + "$date": "2021-07-18T20:13:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2de46aa1-0d13-45fa-ae1b-d8f6938349ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-18T20:14:18.000Z" + }, + "end": { + "$date": "2021-07-18T20:19:24.000Z" + }, + "events": [ + { + "uuid": "a45874b7-f999-4c17-a012-8f3f9fbd4232", + "start": { + "$date": "2021-07-18T20:14:18.000Z" + }, + "end": { + "$date": "2021-07-18T20:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6e81c01-7179-4dc8-90e6-24d6f841ae98", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T20:18:21.000Z" + }, + "end": { + "$date": "2021-07-18T20:36:13.000Z" + }, + "events": [ + { + "uuid": "630397a6-c206-4d5d-a0aa-e3db798e652c", + "start": { + "$date": "2021-07-18T20:18:21.000Z" + }, + "end": { + "$date": "2021-07-18T20:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "22361511-c88d-427b-88aa-0068ef819da6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-18T20:16:02.000Z" + }, + "end": { + "$date": "2021-07-18T21:28:44.000Z" + }, + "events": [ + { + "uuid": "543d79be-f7e3-421c-8779-ebe4eb55b304", + "start": { + "$date": "2021-07-18T20:16:02.000Z" + }, + "end": { + "$date": "2021-07-18T21:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f65f3068-d31d-4a43-93d7-beffcbf4c635", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-18T20:20:54.000Z" + }, + "end": { + "$date": "2021-07-18T21:24:13.000Z" + }, + "events": [ + { + "uuid": "ea7ba04a-bf07-485c-9de1-b7d5a35c5a78", + "start": { + "$date": "2021-07-18T20:20:54.000Z" + }, + "end": { + "$date": "2021-07-18T21:24:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d33a56b4-6c3e-4bd3-a35b-d27639e7d99e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-18T20:47:39.000Z" + }, + "end": { + "$date": "2021-07-18T21:04:25.000Z" + }, + "events": [ + { + "uuid": "661556b4-5842-4c33-b8c0-c00aa93629b9", + "start": { + "$date": "2021-07-18T20:47:39.000Z" + }, + "end": { + "$date": "2021-07-18T21:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb4186da-6c21-438d-926c-fe8f8b16a922", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T20:46:14.000Z" + }, + "end": { + "$date": "2021-07-18T21:04:37.000Z" + }, + "events": [ + { + "uuid": "c99aae03-464f-450a-8b8b-32f2a5d477d9", + "start": { + "$date": "2021-07-18T20:46:14.000Z" + }, + "end": { + "$date": "2021-07-18T21:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d08b3092-eb2f-4825-a1f8-80f7e43420fd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-18T21:07:36.000Z" + }, + "end": { + "$date": "2021-07-18T21:29:19.000Z" + }, + "events": [ + { + "uuid": "7e2f1a5a-f271-4adc-a9e0-92e13896cdfc", + "start": { + "$date": "2021-07-18T21:07:36.000Z" + }, + "end": { + "$date": "2021-07-18T21:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d315aba-fd37-41c7-a502-31abe6971fbc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T21:07:41.000Z" + }, + "end": { + "$date": "2021-07-18T21:29:26.000Z" + }, + "events": [ + { + "uuid": "3f51ebbf-866e-4879-ba33-14a9872c229b", + "start": { + "$date": "2021-07-18T21:07:41.000Z" + }, + "end": { + "$date": "2021-07-18T21:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "811dba3e-3223-4884-99a5-a5271d01be5e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-18T21:14:33.000Z" + }, + "end": { + "$date": "2021-07-18T23:46:27.000Z" + }, + "events": [ + { + "uuid": "14d09d56-7458-4d8d-892f-badaa7bfd610", + "start": { + "$date": "2021-07-18T21:14:33.000Z" + }, + "end": { + "$date": "2021-07-18T23:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5edd67f-3e22-40bf-a005-19f63697d174", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-18T21:29:19.000Z" + }, + "end": { + "$date": "2021-07-19T00:11:38.000Z" + }, + "events": [ + { + "uuid": "4e4a987b-f4e8-4949-8c6c-8c325a0ba57e", + "start": { + "$date": "2021-07-18T21:29:19.000Z" + }, + "end": { + "$date": "2021-07-19T00:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01a2a4ee-b3ca-4619-86d9-72d0e8d8cb8f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-18T21:29:54.000Z" + }, + "end": { + "$date": "2021-07-18T21:31:53.000Z" + }, + "events": [ + { + "uuid": "0b343c38-6fb3-4ca5-ac5e-638c586e5304", + "start": { + "$date": "2021-07-18T21:29:54.000Z" + }, + "end": { + "$date": "2021-07-18T21:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6ce3fe60-4172-4f3c-9373-2958c4343276", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-18T21:31:39.000Z" + }, + "end": { + "$date": "2021-07-18T22:50:58.000Z" + }, + "events": [ + { + "uuid": "aee1ff7e-937c-4da3-a1cc-cf285a47e7bc", + "start": { + "$date": "2021-07-18T21:31:39.000Z" + }, + "end": { + "$date": "2021-07-18T22:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b4b02edd-9b64-40f9-be76-b983885d5f1e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-18T21:34:23.000Z" + }, + "end": { + "$date": "2021-07-18T22:27:35.000Z" + }, + "events": [ + { + "uuid": "81c31874-d122-401b-929d-a5dd69cd309a", + "start": { + "$date": "2021-07-18T21:34:23.000Z" + }, + "end": { + "$date": "2021-07-18T22:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "06e32f2e-67f2-4338-a7bb-b9a338658da7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-18T21:34:25.000Z" + }, + "end": { + "$date": "2021-07-18T23:46:02.000Z" + }, + "events": [ + { + "uuid": "03f53754-8656-4fdc-b5fa-83dc4fe38756", + "start": { + "$date": "2021-07-18T21:34:25.000Z" + }, + "end": { + "$date": "2021-07-18T22:18:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c3fe7d6-f2ed-4fa8-a471-3f99d53dca5b", + "start": { + "$date": "2021-07-18T22:18:25.000Z" + }, + "end": { + "$date": "2021-07-18T23:46:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "938743c5-cfb4-4e58-8c81-6f5484ae63de", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-18T21:36:20.000Z" + }, + "end": { + "$date": "2021-07-19T00:10:43.000Z" + }, + "events": [ + { + "uuid": "c58a3900-ae78-4db1-98cc-0bffbe22423f", + "start": { + "$date": "2021-07-18T21:36:20.000Z" + }, + "end": { + "$date": "2021-07-19T00:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4e4d280c-2cca-4c1a-907e-59bb91be5c7b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-18T22:28:00.000Z" + }, + "end": { + "$date": "2021-07-18T23:55:04.000Z" + }, + "events": [ + { + "uuid": "9819da6c-fd12-4c4c-b69b-9cfcc0b267e3", + "start": { + "$date": "2021-07-18T22:28:00.000Z" + }, + "end": { + "$date": "2021-07-18T23:55:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a693a5c3-272a-4614-994c-d0e0877e3204", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T00:31:04.000Z" + }, + "end": { + "$date": "2021-07-19T01:01:29.000Z" + }, + "events": [ + { + "uuid": "4ee1eab4-84be-4711-8af8-1de9895315d9", + "start": { + "$date": "2021-07-19T00:31:04.000Z" + }, + "end": { + "$date": "2021-07-19T01:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c043394-7c1e-4f0f-ba98-717052fe95d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T00:31:20.000Z" + }, + "end": { + "$date": "2021-07-19T01:01:19.000Z" + }, + "events": [ + { + "uuid": "573501b4-d724-4b72-aaa3-93e9a00c8fdf", + "start": { + "$date": "2021-07-19T00:31:20.000Z" + }, + "end": { + "$date": "2021-07-19T01:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "701f2dcb-13ac-448a-a543-44a886cd0536", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-19T00:50:21.000Z" + }, + "end": { + "$date": "2021-07-19T01:03:53.000Z" + }, + "events": [ + { + "uuid": "4d9c4920-cbd8-4ce5-a0d5-436dfa9723c4", + "start": { + "$date": "2021-07-19T00:50:21.000Z" + }, + "end": { + "$date": "2021-07-19T01:03:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ad8b136-dc1d-4d28-8353-c5b940228502", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T01:05:16.000Z" + }, + "end": { + "$date": "2021-07-19T01:33:25.000Z" + }, + "events": [ + { + "uuid": "e527440b-7a69-4cec-a941-d14724d1559e", + "start": { + "$date": "2021-07-19T01:05:16.000Z" + }, + "end": { + "$date": "2021-07-19T01:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f96b5a71-43ac-4cea-bf88-493e0493043b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T01:07:06.000Z" + }, + "end": { + "$date": "2021-07-19T01:33:15.000Z" + }, + "events": [ + { + "uuid": "93f8e933-2207-4801-b695-0e96b8fd4800", + "start": { + "$date": "2021-07-19T01:07:06.000Z" + }, + "end": { + "$date": "2021-07-19T01:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9c1f81bd-ef0e-418f-b180-2cf828e53431", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-19T01:28:54.000Z" + }, + "end": { + "$date": "2021-07-19T02:14:29.000Z" + }, + "events": [ + { + "uuid": "4a575e5c-7d2a-4729-ac04-bace7ff75de6", + "start": { + "$date": "2021-07-19T01:28:54.000Z" + }, + "end": { + "$date": "2021-07-19T02:14:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a380d27e-2606-4fcd-87da-ba9063a4eb4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T02:38:49.000Z" + }, + "end": { + "$date": "2021-07-19T02:52:51.000Z" + }, + "events": [ + { + "uuid": "9d38fd69-b37a-4b36-8ea9-586025b9af5d", + "start": { + "$date": "2021-07-19T02:38:49.000Z" + }, + "end": { + "$date": "2021-07-19T02:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "37cf2d43-20fe-48b4-a231-666cdfc13fff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-19T01:34:01.000Z" + }, + "end": { + "$date": "2021-07-19T02:33:38.000Z" + }, + "events": [ + { + "uuid": "bf07c063-1803-4d88-baa3-dca75cdfb648", + "start": { + "$date": "2021-07-19T01:34:01.000Z" + }, + "end": { + "$date": "2021-07-19T02:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "85574bd6-dbce-432e-a943-9e04f88ceb67", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-19T02:08:11.000Z" + }, + "end": { + "$date": "2021-07-19T02:15:24.000Z" + }, + "events": [ + { + "uuid": "e4c49acc-3a76-4463-ba11-cfd1dafaa1bc", + "start": { + "$date": "2021-07-19T02:08:11.000Z" + }, + "end": { + "$date": "2021-07-19T02:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e135af1b-d965-4072-9a79-c7ce4c397ba4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-19T02:08:39.000Z" + }, + "end": { + "$date": "2021-07-19T02:15:49.000Z" + }, + "events": [ + { + "uuid": "4c25e9ad-f421-443d-ab26-71f05cb41849", + "start": { + "$date": "2021-07-19T02:08:39.000Z" + }, + "end": { + "$date": "2021-07-19T02:15:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "689520a9-8e46-4ee8-8b0e-6a3b70966686", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-19T02:15:29.000Z" + }, + "end": { + "$date": "2021-07-19T04:25:52.000Z" + }, + "events": [ + { + "uuid": "68e601f3-8217-4dde-ba77-f32a326feeaf", + "start": { + "$date": "2021-07-19T02:15:29.000Z" + }, + "end": { + "$date": "2021-07-19T04:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "5d465c94-bc7c-4a53-81ff-0cdd6dabbd98", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-19T02:16:10.000Z" + }, + "end": { + "$date": "2021-07-19T04:25:51.000Z" + }, + "events": [ + { + "uuid": "8d7c2dbf-12ad-4120-a82c-db78a08f3623", + "start": { + "$date": "2021-07-19T02:16:10.000Z" + }, + "end": { + "$date": "2021-07-19T04:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "73d76484-85cb-4681-be75-0903f3eeccbd", + "uuid": "f23b4071-dded-4767-93eb-8d9dbcbb1738", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-19T02:17:24.000Z" + }, + "end": { + "$date": "2021-07-19T04:25:56.000Z" + }, + "events": [ + { + "uuid": "820cc1c5-88f4-4008-9be4-6412938086e8", + "start": { + "$date": "2021-07-19T02:17:24.000Z" + }, + "end": { + "$date": "2021-07-19T04:25:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c4b08eef-91f2-4140-b8c1-906862f8e5c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-19T02:34:03.000Z" + }, + "end": { + "$date": "2021-07-19T04:52:57.000Z" + }, + "events": [ + { + "uuid": "33739e70-a723-4972-abc1-c67292dfd887", + "start": { + "$date": "2021-07-19T02:34:03.000Z" + }, + "end": { + "$date": "2021-07-19T03:06:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24cebf94-18f2-427b-b1cf-2fce9cf2f1cf", + "start": { + "$date": "2021-07-19T03:06:03.000Z" + }, + "end": { + "$date": "2021-07-19T03:11:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc10634c-a093-43c0-974d-0b54fe12945f", + "start": { + "$date": "2021-07-19T03:11:03.000Z" + }, + "end": { + "$date": "2021-07-19T03:21:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1eec1dfe-5a91-445c-a84d-76c0f37b0e7b", + "start": { + "$date": "2021-07-19T03:21:03.000Z" + }, + "end": { + "$date": "2021-07-19T03:26:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "87bae4a6-3c95-4832-b97d-585241c5e0ce", + "start": { + "$date": "2021-07-19T03:26:03.000Z" + }, + "end": { + "$date": "2021-07-19T03:36:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "90dc7b0d-c20a-4286-99fa-15817133b3a5", + "start": { + "$date": "2021-07-19T03:36:03.000Z" + }, + "end": { + "$date": "2021-07-19T03:41:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3c387d88-d0cf-40c1-9e2d-88be84dec4ee", + "start": { + "$date": "2021-07-19T03:41:03.000Z" + }, + "end": { + "$date": "2021-07-19T04:52:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59529d28-5968-46bd-9130-fcd8dbb62d89", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T02:39:40.000Z" + }, + "end": { + "$date": "2021-07-19T02:52:40.000Z" + }, + "events": [ + { + "uuid": "37211436-320a-4c93-af9b-a5a843ddcb19", + "start": { + "$date": "2021-07-19T02:39:40.000Z" + }, + "end": { + "$date": "2021-07-19T02:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "b90620e5-af56-469c-9244-009a391620a5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-19T02:38:58.000Z" + }, + "end": { + "$date": "2021-07-19T04:55:03.000Z" + }, + "events": [ + { + "uuid": "7ce027ba-76a6-4af0-9e18-2db5d5ca2390", + "start": { + "$date": "2021-07-19T02:38:58.000Z" + }, + "end": { + "$date": "2021-07-19T03:02:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc5e1e90-6dcc-49ca-84cd-2ebb167e4877", + "start": { + "$date": "2021-07-19T03:02:58.000Z" + }, + "end": { + "$date": "2021-07-19T03:33:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f64404f7-1980-4d75-8188-125e67329834", + "start": { + "$date": "2021-07-19T03:33:58.000Z" + }, + "end": { + "$date": "2021-07-19T03:46:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30fab84b-8c40-44d3-b825-d2bd8b283202", + "start": { + "$date": "2021-07-19T03:46:58.000Z" + }, + "end": { + "$date": "2021-07-19T04:55:03.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f798cccf-f52d-4152-b26c-41e62cce15bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T02:56:36.000Z" + }, + "end": { + "$date": "2021-07-19T03:17:51.000Z" + }, + "events": [ + { + "uuid": "c4079411-ea47-4113-b981-086b740600b2", + "start": { + "$date": "2021-07-19T02:56:36.000Z" + }, + "end": { + "$date": "2021-07-19T03:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1aefc8e6-7d76-456c-af02-0ef9f1c8323d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T02:57:26.000Z" + }, + "end": { + "$date": "2021-07-19T03:17:40.000Z" + }, + "events": [ + { + "uuid": "d151dc7d-40e8-4e54-8da3-f6d8503aefef", + "start": { + "$date": "2021-07-19T02:57:26.000Z" + }, + "end": { + "$date": "2021-07-19T03:17:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40ac7714-9f41-4b38-b81f-8301cd627ccb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T03:20:28.000Z" + }, + "end": { + "$date": "2021-07-19T03:46:47.000Z" + }, + "events": [ + { + "uuid": "81074090-966a-4b16-b6ca-4316bc095e69", + "start": { + "$date": "2021-07-19T03:20:28.000Z" + }, + "end": { + "$date": "2021-07-19T03:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ddfe36d-e0bd-446a-b9d0-e8335ca83303", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T03:20:47.000Z" + }, + "end": { + "$date": "2021-07-19T03:46:36.000Z" + }, + "events": [ + { + "uuid": "f48bd19b-8659-4844-bfa4-2392d2a50d97", + "start": { + "$date": "2021-07-19T03:20:47.000Z" + }, + "end": { + "$date": "2021-07-19T03:46:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5af645a1-22b9-404e-b1e0-f50e3902d9e0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-19T04:02:11.000Z" + }, + "end": { + "$date": "2021-07-19T04:07:01.000Z" + }, + "events": [ + { + "uuid": "a2d5dc72-e688-400f-b9ed-54dfb5faafc1", + "start": { + "$date": "2021-07-19T04:02:11.000Z" + }, + "end": { + "$date": "2021-07-19T04:07:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "63e0fc0a-3114-4704-8aa5-bfcf74e8c7ad", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-19T04:26:57.000Z" + }, + "end": { + "$date": "2021-07-19T06:13:48.000Z" + }, + "events": [ + { + "uuid": "45e2cb92-c8ff-4453-9e8a-d11f9bf368e3", + "start": { + "$date": "2021-07-19T04:26:57.000Z" + }, + "end": { + "$date": "2021-07-19T06:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "130b6c7b-09b2-4a4a-9051-46924389f5af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T04:45:00.000Z" + }, + "end": { + "$date": "2021-07-19T05:00:51.000Z" + }, + "events": [ + { + "uuid": "7790c7ed-a914-4f11-85f6-c92c7105a214", + "start": { + "$date": "2021-07-19T04:45:00.000Z" + }, + "end": { + "$date": "2021-07-19T05:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3d4c805-5bc3-40c9-bf8c-cc4c2780a232", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-19T04:57:54.000Z" + }, + "end": { + "$date": "2021-07-19T05:28:27.000Z" + }, + "events": [ + { + "uuid": "f8d70134-5492-4c24-bf13-6578e7bb6004", + "start": { + "$date": "2021-07-19T04:57:54.000Z" + }, + "end": { + "$date": "2021-07-19T05:28:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9dca1947-fa0f-4a92-9887-2557a7f6732b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-19T04:58:24.000Z" + }, + "end": { + "$date": "2021-07-19T06:15:26.000Z" + }, + "events": [ + { + "uuid": "032f3716-28ed-40db-9f46-b1a2cc1598ca", + "start": { + "$date": "2021-07-19T04:58:24.000Z" + }, + "end": { + "$date": "2021-07-19T06:15:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3052a279-d717-4be1-bced-ce3485074872", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T05:05:44.000Z" + }, + "end": { + "$date": "2021-07-19T05:32:59.000Z" + }, + "events": [ + { + "uuid": "5ff028f8-dca9-4a91-8eba-cfb30c57236e", + "start": { + "$date": "2021-07-19T05:05:44.000Z" + }, + "end": { + "$date": "2021-07-19T05:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "85fdc886-1c16-4d24-a3a8-c476cd2ceafa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-19T05:40:17.000Z" + }, + "end": { + "$date": "2021-07-19T05:59:18.000Z" + }, + "events": [ + { + "uuid": "78ff5f9e-e89e-4a10-9c37-e679b9ba6639", + "start": { + "$date": "2021-07-19T05:40:17.000Z" + }, + "end": { + "$date": "2021-07-19T05:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7347fe1-3ac8-4d00-99f8-d26aae57ea6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T05:59:19.000Z" + }, + "end": { + "$date": "2021-07-19T06:12:43.000Z" + }, + "events": [ + { + "uuid": "e93464de-a718-4fed-ae69-5413c52ed609", + "start": { + "$date": "2021-07-19T05:59:19.000Z" + }, + "end": { + "$date": "2021-07-19T06:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23f1e75b-8461-4759-b92f-86fbe29b0c88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T06:17:07.000Z" + }, + "end": { + "$date": "2021-07-19T06:42:38.000Z" + }, + "events": [ + { + "uuid": "2b711a57-8c1e-4564-be42-c14164df824b", + "start": { + "$date": "2021-07-19T06:17:07.000Z" + }, + "end": { + "$date": "2021-07-19T06:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e28d8b30-a771-46a4-991a-99db32954400", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-19T06:15:39.000Z" + }, + "end": { + "$date": "2021-07-19T06:45:33.000Z" + }, + "events": [ + { + "uuid": "335df33e-0791-4813-9941-011e41d2a97c", + "start": { + "$date": "2021-07-19T06:15:39.000Z" + }, + "end": { + "$date": "2021-07-19T06:45:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "84f716a4-1ae3-4f12-8fab-4353e443ed41", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-19T12:45:03.000Z" + }, + "end": { + "$date": "2021-07-19T14:51:43.000Z" + }, + "events": [ + { + "uuid": "465de1cd-27d3-49dc-82cf-03a88f3703cd", + "start": { + "$date": "2021-07-19T12:45:03.000Z" + }, + "end": { + "$date": "2021-07-19T14:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "8245d343-3ae3-47e8-ae7d-34af9a67fec2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-16T08:36:41.000Z" + }, + "end": { + "$date": "2021-07-19T13:11:50.000Z" + }, + "events": [ + { + "uuid": "2c17cd1f-aa1e-4f73-9590-02492b148724", + "start": { + "$date": "2021-07-16T08:36:41.000Z" + }, + "end": { + "$date": "2021-07-19T13:11:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "54056eff-ac3f-4954-aad9-656d363ad7e9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-19T14:58:09.000Z" + }, + "end": { + "$date": "2021-07-19T14:58:09.000Z" + }, + "events": [ + { + "uuid": "6470c653-1bf6-42cf-9210-7815302aff8e", + "start": { + "$date": "2021-07-19T14:58:09.000Z" + }, + "end": { + "$date": "2021-07-19T14:58:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40da3dc4-f84b-4166-a121-55472526df4d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T14:35:29.000Z" + }, + "end": { + "$date": "2021-07-19T14:49:03.000Z" + }, + "events": [ + { + "uuid": "841d4b5b-31b2-4875-aa5e-a7341170d650", + "start": { + "$date": "2021-07-19T14:35:29.000Z" + }, + "end": { + "$date": "2021-07-19T14:49:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "344d0bd1-496b-42b8-addc-1343c92b135e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T14:52:49.000Z" + }, + "end": { + "$date": "2021-07-19T15:15:24.000Z" + }, + "events": [ + { + "uuid": "cfb2028c-b90a-4261-b5ed-5479e5c5dac3", + "start": { + "$date": "2021-07-19T14:52:49.000Z" + }, + "end": { + "$date": "2021-07-19T15:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "58690473-1e80-4951-a402-ab7fd82a8182", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-19T14:52:32.000Z" + }, + "end": { + "$date": "2021-07-19T15:30:33.000Z" + }, + "events": [ + { + "uuid": "915238f3-8a43-47a6-9bcc-d8d6042bc0e5", + "start": { + "$date": "2021-07-19T14:52:32.000Z" + }, + "end": { + "$date": "2021-07-19T15:03:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef7a2e83-0e60-448c-b437-61e75ee840f3", + "start": { + "$date": "2021-07-19T15:03:32.000Z" + }, + "end": { + "$date": "2021-07-19T15:09:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "40ce12b3-14bc-4bb5-bbf4-3e1eb1ae2668", + "start": { + "$date": "2021-07-19T15:09:32.000Z" + }, + "end": { + "$date": "2021-07-19T15:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "965bc335-1a1a-4e09-b4de-43666f565709", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-19T15:43:04.000Z" + }, + "end": { + "$date": "2021-07-19T21:31:23.000Z" + }, + "events": [ + { + "uuid": "257c84ed-67f3-46d3-9084-a791fee82365", + "start": { + "$date": "2021-07-19T15:43:04.000Z" + }, + "end": { + "$date": "2021-07-19T16:29:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86135be8-ab0b-42b9-a1d2-2c034dff6ed0", + "start": { + "$date": "2021-07-19T16:29:04.000Z" + }, + "end": { + "$date": "2021-07-19T16:34:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "65d0f67a-9471-4d3a-a6be-b94d4c0791ff", + "start": { + "$date": "2021-07-19T16:34:04.000Z" + }, + "end": { + "$date": "2021-07-19T16:44:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f66d2c8b-1c95-4c02-ad73-69aa20df8e26", + "start": { + "$date": "2021-07-19T16:44:04.000Z" + }, + "end": { + "$date": "2021-07-19T16:53:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "444f7a6a-4a9b-4bb4-8f33-b6c9d66342b0", + "start": { + "$date": "2021-07-19T16:53:04.000Z" + }, + "end": { + "$date": "2021-07-19T19:12:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "16e902b9-4181-42fd-b301-b5d4f51f4af0", + "start": { + "$date": "2021-07-19T19:12:04.000Z" + }, + "end": { + "$date": "2021-07-19T19:16:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b8cc2d4-8544-4331-93c6-5a4ef47fe284", + "start": { + "$date": "2021-07-19T19:16:04.000Z" + }, + "end": { + "$date": "2021-07-19T21:24:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ab53767-282b-4e3d-9fae-898cb27509de", + "start": { + "$date": "2021-07-19T21:24:04.000Z" + }, + "end": { + "$date": "2021-07-19T21:29:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9cfb2a9c-1ffa-4315-b1dd-de15b241861a", + "start": { + "$date": "2021-07-19T21:29:04.000Z" + }, + "end": { + "$date": "2021-07-19T21:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd9f78ab-b92f-4107-a565-3614b53cba2a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T15:46:09.000Z" + }, + "end": { + "$date": "2021-07-19T16:02:29.000Z" + }, + "events": [ + { + "uuid": "7a8f64bf-a354-43da-9040-8aa63d57d5c2", + "start": { + "$date": "2021-07-19T15:46:09.000Z" + }, + "end": { + "$date": "2021-07-19T16:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d107ee16-2d5d-4c3f-ac4f-0caa87435f5d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T16:07:19.000Z" + }, + "end": { + "$date": "2021-07-19T16:31:43.000Z" + }, + "events": [ + { + "uuid": "1a1bfa83-40ef-4b40-8324-c701ce8ee1b7", + "start": { + "$date": "2021-07-19T16:07:19.000Z" + }, + "end": { + "$date": "2021-07-19T16:31:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50c5a943-f048-43f1-bc05-9518e84cc962", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T16:34:40.000Z" + }, + "end": { + "$date": "2021-07-19T16:53:19.000Z" + }, + "events": [ + { + "uuid": "0edc19c2-33c7-46f7-b676-9046243f56a4", + "start": { + "$date": "2021-07-19T16:34:40.000Z" + }, + "end": { + "$date": "2021-07-19T16:53:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d6ab84e-63ac-4cbe-a3b4-141a002e257b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T16:53:40.000Z" + }, + "end": { + "$date": "2021-07-19T16:55:29.000Z" + }, + "events": [ + { + "uuid": "6182b374-1ed5-4765-a4a5-0744dc74b719", + "start": { + "$date": "2021-07-19T16:53:40.000Z" + }, + "end": { + "$date": "2021-07-19T16:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1ba1a6d1-a72a-451a-8aa2-f5c94f14d785", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T16:56:15.000Z" + }, + "end": { + "$date": "2021-07-19T17:53:37.000Z" + }, + "events": [ + { + "uuid": "6eb76a3e-b4a0-49b9-abbd-4af0c2d70191", + "start": { + "$date": "2021-07-19T16:56:15.000Z" + }, + "end": { + "$date": "2021-07-19T17:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "45df827f-1ff3-4f74-9e5e-13bedd8ab393", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-19T18:34:14.000Z" + }, + "end": { + "$date": "2021-07-19T18:35:18.000Z" + }, + "events": [ + { + "uuid": "d4333c0c-8dab-4cf0-b2e7-4367f967c6c7", + "start": { + "$date": "2021-07-19T18:34:14.000Z" + }, + "end": { + "$date": "2021-07-19T18:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "599a57fe-54d7-4e85-a5dc-ae88b635e4d0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-19T19:35:30.000Z" + }, + "end": { + "$date": "2021-07-19T19:51:41.000Z" + }, + "events": [ + { + "uuid": "bd0238d8-bb30-4b38-b8fc-f59225b5e03a", + "start": { + "$date": "2021-07-19T19:35:30.000Z" + }, + "end": { + "$date": "2021-07-19T19:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "69cbf08f-a6dd-4ccb-868a-f57ef775baae", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-19T20:06:23.000Z" + }, + "end": { + "$date": "2021-07-19T21:15:05.000Z" + }, + "events": [ + { + "uuid": "101aee93-350f-4b5e-ab6e-101034bdbe88", + "start": { + "$date": "2021-07-19T20:06:23.000Z" + }, + "end": { + "$date": "2021-07-19T21:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cb138d2c-b499-475a-a28a-b904b41f1ef4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-19T20:34:19.000Z" + }, + "end": { + "$date": "2021-07-19T21:57:07.000Z" + }, + "events": [ + { + "uuid": "54b81853-5301-4f47-acc5-0a88aa0ac9c5", + "start": { + "$date": "2021-07-19T20:34:19.000Z" + }, + "end": { + "$date": "2021-07-19T21:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "591fcb5e-ef12-4bc2-8484-9785a6aa1768", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T20:44:18.000Z" + }, + "end": { + "$date": "2021-07-19T21:09:56.000Z" + }, + "events": [ + { + "uuid": "315b62bd-5f8c-4e25-bafd-ec7e9b697dfc", + "start": { + "$date": "2021-07-19T20:44:18.000Z" + }, + "end": { + "$date": "2021-07-19T20:55:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73239a46-3600-4bf4-b074-cf9544e5bb23", + "start": { + "$date": "2021-07-19T20:55:18.000Z" + }, + "end": { + "$date": "2021-07-19T20:56:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fe913adb-0e4a-4cee-8d2a-b5c18d24f6d3", + "start": { + "$date": "2021-07-19T20:56:18.000Z" + }, + "end": { + "$date": "2021-07-19T21:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b2a4df04-3181-4f07-b63a-f4b808c2ca66", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-19T20:45:35.000Z" + }, + "end": { + "$date": "2021-07-19T21:00:19.000Z" + }, + "events": [ + { + "uuid": "68319e06-eba4-439f-abea-4a8654c99be0", + "start": { + "$date": "2021-07-19T20:45:35.000Z" + }, + "end": { + "$date": "2021-07-19T21:00:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adbee815-c660-419d-895e-e14a1c8c9161", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T21:14:57.000Z" + }, + "end": { + "$date": "2021-07-19T21:36:21.000Z" + }, + "events": [ + { + "uuid": "86602e24-28ac-4a38-8c03-8acd111d7e93", + "start": { + "$date": "2021-07-19T21:14:57.000Z" + }, + "end": { + "$date": "2021-07-19T21:36:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b7d6e6a0-c040-42a7-aa1b-f5d65843c7b2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-19T21:31:33.000Z" + }, + "end": { + "$date": "2021-07-19T22:55:11.000Z" + }, + "events": [ + { + "uuid": "737b42f2-3af8-4cf1-b836-7fb19f60fb1c", + "start": { + "$date": "2021-07-19T21:31:33.000Z" + }, + "end": { + "$date": "2021-07-19T22:55:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65a87128-c402-4550-8d66-eaea3bcb8268", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T21:39:17.000Z" + }, + "end": { + "$date": "2021-07-19T22:01:21.000Z" + }, + "events": [ + { + "uuid": "56ba1339-a6b4-4b45-a3de-b363799f9261", + "start": { + "$date": "2021-07-19T21:39:17.000Z" + }, + "end": { + "$date": "2021-07-19T22:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "332a2246-996e-4375-887f-f5ab2e3df62a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-20T00:43:03.000Z" + }, + "end": { + "$date": "2021-07-20T00:43:28.000Z" + }, + "events": [ + { + "uuid": "fc533a11-f900-4fc5-9edb-f6cdf77c5275", + "start": { + "$date": "2021-07-20T00:43:03.000Z" + }, + "end": { + "$date": "2021-07-20T00:43:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a2a0c17-7e6a-4d21-9a47-ef0c5ac7899b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T22:07:35.000Z" + }, + "end": { + "$date": "2021-07-19T22:29:44.000Z" + }, + "events": [ + { + "uuid": "c70f7808-5527-451a-89e6-e4455c3819a9", + "start": { + "$date": "2021-07-19T22:07:35.000Z" + }, + "end": { + "$date": "2021-07-19T22:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d6ee3a0-0718-4d09-906f-4a5fcbe5f1c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-19T22:33:38.000Z" + }, + "end": { + "$date": "2021-07-19T23:08:08.000Z" + }, + "events": [ + { + "uuid": "f669b85f-dc98-49ca-95eb-6194b3b8677e", + "start": { + "$date": "2021-07-19T22:33:38.000Z" + }, + "end": { + "$date": "2021-07-19T23:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "971d3324-2846-4223-8a62-0b6936193165", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-19T22:41:36.000Z" + }, + "end": { + "$date": "2021-07-20T01:28:15.000Z" + }, + "events": [ + { + "uuid": "09463416-7379-403d-8b34-a1d86d9e946b", + "start": { + "$date": "2021-07-19T22:41:36.000Z" + }, + "end": { + "$date": "2021-07-19T22:52:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa2de2a6-eba1-4fd8-b898-b9533bedb1c5", + "start": { + "$date": "2021-07-19T22:52:36.000Z" + }, + "end": { + "$date": "2021-07-19T23:02:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "21a2dc38-be5c-49f7-8649-adee9d884378", + "start": { + "$date": "2021-07-19T23:02:36.000Z" + }, + "end": { + "$date": "2021-07-20T01:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5b65fd04-afd4-4c6c-b085-35dedf537384", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-19T22:53:30.000Z" + }, + "end": { + "$date": "2021-07-19T23:53:35.000Z" + }, + "events": [ + { + "uuid": "4ed22b97-2274-47d2-b3ba-9572632a09d7", + "start": { + "$date": "2021-07-19T22:53:30.000Z" + }, + "end": { + "$date": "2021-07-19T23:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "53dd09b0-e391-4ac6-ba88-754af65a7863", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-20T01:24:10.000Z" + }, + "end": { + "$date": "2021-07-20T03:53:16.000Z" + }, + "events": [ + { + "uuid": "85c1b0a2-1644-4c79-bbbd-339ac47b04ca", + "start": { + "$date": "2021-07-20T01:24:10.000Z" + }, + "end": { + "$date": "2021-07-20T03:53:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40b88906-a1ae-4d14-8e8a-71d0c3968583", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-20T01:28:17.000Z" + }, + "end": { + "$date": "2021-07-20T05:40:07.000Z" + }, + "events": [ + { + "uuid": "b86ba9a8-fd13-4741-aff7-15c44c3e4082", + "start": { + "$date": "2021-07-20T01:28:17.000Z" + }, + "end": { + "$date": "2021-07-20T05:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f4ce03a4-9d3a-4482-a7fe-f23ec957fc0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-20T01:28:21.000Z" + }, + "end": { + "$date": "2021-07-20T02:31:51.000Z" + }, + "events": [ + { + "uuid": "6ac09679-bf85-4449-8df0-a28d87dedad8", + "start": { + "$date": "2021-07-20T01:28:21.000Z" + }, + "end": { + "$date": "2021-07-20T02:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eb2605e7-31ba-4e2e-b307-21fad7e98ff0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-20T01:29:19.000Z" + }, + "end": { + "$date": "2021-07-20T05:39:57.000Z" + }, + "events": [ + { + "uuid": "3407d250-0b83-47e5-a4db-c341b6b16a8b", + "start": { + "$date": "2021-07-20T01:29:19.000Z" + }, + "end": { + "$date": "2021-07-20T05:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "54e1f98d-7ef7-4220-a51d-3969b6064dc2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-20T02:00:57.000Z" + }, + "end": { + "$date": "2021-07-20T03:36:29.000Z" + }, + "events": [ + { + "uuid": "27c28589-1e4a-409a-ac6e-fa47217f8f5a", + "start": { + "$date": "2021-07-20T02:00:57.000Z" + }, + "end": { + "$date": "2021-07-20T03:36:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7dcfed3b-bccb-44dc-a77b-8535327675d6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-20T02:09:47.000Z" + }, + "end": { + "$date": "2021-07-20T02:54:22.000Z" + }, + "events": [ + { + "uuid": "54550b1c-a410-4e2b-8b41-3d5cdf38953a", + "start": { + "$date": "2021-07-20T02:09:47.000Z" + }, + "end": { + "$date": "2021-07-20T02:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "d1c13e35-1b64-482b-8b1c-1381a0ca0aed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-20T02:54:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:46:04.000Z" + }, + "events": [ + { + "uuid": "be558e13-5bb4-4312-a81c-72a2c26b2184", + "start": { + "$date": "2021-07-20T02:54:38.000Z" + }, + "end": { + "$date": "2021-07-20T03:07:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74094cb2-2bbd-478c-8c1f-070fb4400d27", + "start": { + "$date": "2021-07-20T03:07:38.000Z" + }, + "end": { + "$date": "2021-07-20T05:41:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b716fc81-aa52-49bf-8796-fae65b3df9e6", + "start": { + "$date": "2021-07-20T05:41:38.000Z" + }, + "end": { + "$date": "2021-07-20T05:51:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebaff65e-fc71-4a66-8305-7ac17400ec56", + "start": { + "$date": "2021-07-20T05:51:38.000Z" + }, + "end": { + "$date": "2021-07-20T05:56:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "408af3c7-b8ff-4ded-ae37-1ed22f3c5100", + "start": { + "$date": "2021-07-20T05:56:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:06:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ac390a46-5f86-4c10-a658-8dfbc1a31326", + "start": { + "$date": "2021-07-20T06:06:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:11:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2607d80-75b1-4403-972d-1f329f3aad9b", + "start": { + "$date": "2021-07-20T06:11:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:21:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b24d096-d9f1-4375-b0a7-a03d3e00371c", + "start": { + "$date": "2021-07-20T06:21:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:26:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "685c5171-bce5-460e-b2c6-96630c71cc95", + "start": { + "$date": "2021-07-20T06:26:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:36:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1c270eb-44d9-458e-8fb5-5b8509442722", + "start": { + "$date": "2021-07-20T06:36:38.000Z" + }, + "end": { + "$date": "2021-07-20T06:46:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b188e95c-3b8d-4a27-8bb2-ce169fb1b761", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-20T05:38:16.000Z" + }, + "end": { + "$date": "2021-07-20T05:54:06.000Z" + }, + "events": [ + { + "uuid": "c04371bf-c082-48e8-a298-f5917e76ea48", + "start": { + "$date": "2021-07-20T05:38:16.000Z" + }, + "end": { + "$date": "2021-07-20T05:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6dfca50-00ae-452c-b1d5-be82a135c43c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-20T03:44:06.000Z" + }, + "end": { + "$date": "2021-07-20T04:08:24.000Z" + }, + "events": [ + { + "uuid": "aa646fca-e7e4-4999-9f4c-358218a75573", + "start": { + "$date": "2021-07-20T03:44:06.000Z" + }, + "end": { + "$date": "2021-07-20T04:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "354944e6-7645-4981-8802-f78bad8c67b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-20T03:53:47.000Z" + }, + "end": { + "$date": "2021-07-20T05:54:12.000Z" + }, + "events": [ + { + "uuid": "7ee36908-4eda-4686-8915-8c3a4c742d36", + "start": { + "$date": "2021-07-20T03:53:47.000Z" + }, + "end": { + "$date": "2021-07-20T05:54:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d32eb727-e3f7-47f9-b3ad-1e6b2de33b0e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-20T03:56:18.000Z" + }, + "end": { + "$date": "2021-07-20T05:39:53.000Z" + }, + "events": [ + { + "uuid": "3437904c-269a-40c5-83bb-b79f43650c29", + "start": { + "$date": "2021-07-20T03:56:18.000Z" + }, + "end": { + "$date": "2021-07-20T05:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6d545c2c-685f-432f-bd10-dbba2bf770bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-20T04:08:14.000Z" + }, + "end": { + "$date": "2021-07-20T05:13:56.000Z" + }, + "events": [ + { + "uuid": "c511f67a-039f-4687-82cd-81a277c4ebe6", + "start": { + "$date": "2021-07-20T04:08:14.000Z" + }, + "end": { + "$date": "2021-07-20T05:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "673158d4-084e-4763-905a-15adca72a134", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-20T04:13:19.000Z" + }, + "end": { + "$date": "2021-07-20T04:41:32.000Z" + }, + "events": [ + { + "uuid": "46c95a43-ff3c-4043-bc57-fda1478a301a", + "start": { + "$date": "2021-07-20T04:13:19.000Z" + }, + "end": { + "$date": "2021-07-20T04:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "253c5268-8e3d-45f8-9407-97a8eb99992f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-20T04:46:08.000Z" + }, + "end": { + "$date": "2021-07-20T05:15:46.000Z" + }, + "events": [ + { + "uuid": "c16444a7-c93e-4e54-bde4-b66737a59033", + "start": { + "$date": "2021-07-20T04:46:08.000Z" + }, + "end": { + "$date": "2021-07-20T05:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "815c6ac2-9937-4a18-960e-787604c517f0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-20T05:46:47.000Z" + }, + "end": { + "$date": "2021-07-20T06:16:00.000Z" + }, + "events": [ + { + "uuid": "d1e8df30-cd21-4cf4-9ccd-9efcd41fa04c", + "start": { + "$date": "2021-07-20T05:46:47.000Z" + }, + "end": { + "$date": "2021-07-20T06:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "41cbb5ae-ceb3-409d-a27c-fc81a0274208", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-20T05:40:08.000Z" + }, + "end": { + "$date": "2021-07-20T05:51:27.000Z" + }, + "events": [ + { + "uuid": "a447f816-4826-4133-895f-2a800982699e", + "start": { + "$date": "2021-07-20T05:40:08.000Z" + }, + "end": { + "$date": "2021-07-20T05:51:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "32c8e88f-d9f2-4b1b-9168-8c437d0fbd0d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-20T05:40:56.000Z" + }, + "end": { + "$date": "2021-07-20T06:02:26.000Z" + }, + "events": [ + { + "uuid": "c9c141bd-97e5-4387-b781-eba6e2601fc5", + "start": { + "$date": "2021-07-20T05:40:56.000Z" + }, + "end": { + "$date": "2021-07-20T06:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1bc057cc-e395-4217-a969-5149f0c6a56d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-20T13:17:35.000Z" + }, + "end": { + "$date": "2021-07-20T16:17:06.000Z" + }, + "events": [ + { + "uuid": "3e70fcf0-b97f-45c8-b282-f54f94379d87", + "start": { + "$date": "2021-07-20T13:17:35.000Z" + }, + "end": { + "$date": "2021-07-20T16:17:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "d67a28e7-e832-4a80-8a71-0a7fb53e7373", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-20T15:19:46.000Z" + }, + "end": { + "$date": "2021-07-20T15:19:49.000Z" + }, + "events": [ + { + "uuid": "ffec9f06-a1d3-4e11-a7f1-95529af218d4", + "start": { + "$date": "2021-07-20T15:19:46.000Z" + }, + "end": { + "$date": "2021-07-20T15:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7047fc50-44ff-42fa-bca8-66eee0b57eb3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-20T15:19:13.000Z" + }, + "end": { + "$date": "2021-07-20T17:33:51.000Z" + }, + "events": [ + { + "uuid": "4a210364-dc24-4108-befe-0613c24c7371", + "start": { + "$date": "2021-07-20T15:19:13.000Z" + }, + "end": { + "$date": "2021-07-20T17:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0dab7bda-a586-40bb-9426-b6c83af5525f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-20T17:43:27.000Z" + }, + "end": { + "$date": "2021-07-20T18:29:48.000Z" + }, + "events": [ + { + "uuid": "382a1142-c9bb-4bc5-bbd1-f6bbe0b18d56", + "start": { + "$date": "2021-07-20T17:43:27.000Z" + }, + "end": { + "$date": "2021-07-20T18:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "9632a23f-f581-4610-a1e9-3fd9ad47ec97", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-20T17:51:16.000Z" + }, + "end": { + "$date": "2021-07-20T18:22:22.000Z" + }, + "events": [ + { + "uuid": "8c034c0a-025c-48b1-a257-17956c8df220", + "start": { + "$date": "2021-07-20T17:51:16.000Z" + }, + "end": { + "$date": "2021-07-20T18:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6bfabb53-ca42-4634-8a4e-1ef824f47fef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-20T17:53:53.000Z" + }, + "end": { + "$date": "2021-07-20T18:08:53.000Z" + }, + "events": [ + { + "uuid": "c61afc76-5020-45a6-892c-b1e69ae6c0bf", + "start": { + "$date": "2021-07-20T17:53:53.000Z" + }, + "end": { + "$date": "2021-07-20T18:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "1cfe4337-d82e-4a3b-a1bb-345c878c3f24", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-20T18:23:38.000Z" + }, + "end": { + "$date": "2021-07-20T18:37:38.000Z" + }, + "events": [ + { + "uuid": "beb94dcd-6557-4511-9e33-d6453f8553d6", + "start": { + "$date": "2021-07-20T18:23:38.000Z" + }, + "end": { + "$date": "2021-07-20T18:37:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "3a89940b-eb21-4cb6-8291-9e322319725f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-20T21:21:06.000Z" + }, + "end": { + "$date": "2021-07-20T21:21:10.000Z" + }, + "events": [ + { + "uuid": "0d231fc9-51ba-44db-9216-3d69ed3cd755", + "start": { + "$date": "2021-07-20T21:21:06.000Z" + }, + "end": { + "$date": "2021-07-20T21:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "dd3eaf78-acad-409c-a7f4-1c15219d81d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-20T20:17:58.000Z" + }, + "end": { + "$date": "2021-07-20T21:03:44.000Z" + }, + "events": [ + { + "uuid": "f0f20601-d0e2-4cf1-9017-07a47265031f", + "start": { + "$date": "2021-07-20T20:17:58.000Z" + }, + "end": { + "$date": "2021-07-20T21:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fa500469-bed3-4aa9-84ec-90c41de653fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-20T20:18:25.000Z" + }, + "end": { + "$date": "2021-07-20T20:30:46.000Z" + }, + "events": [ + { + "uuid": "6674b0fd-27bd-4efc-8dd7-743e09f0ab55", + "start": { + "$date": "2021-07-20T20:18:25.000Z" + }, + "end": { + "$date": "2021-07-20T20:30:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0208f153-088f-4a27-ab30-aa54e8a795b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-20T21:08:55.000Z" + }, + "end": { + "$date": "2021-07-20T21:29:00.000Z" + }, + "events": [ + { + "uuid": "61ce3b3e-6890-4378-9955-3700cceb9b31", + "start": { + "$date": "2021-07-20T21:08:55.000Z" + }, + "end": { + "$date": "2021-07-20T21:29:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7cd0b505-2df9-4248-99de-dd71a02fb080", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-20T21:36:37.000Z" + }, + "end": { + "$date": "2021-07-20T22:35:47.000Z" + }, + "events": [ + { + "uuid": "6e844698-9d79-43a9-b31c-97070cd51e61", + "start": { + "$date": "2021-07-20T21:36:37.000Z" + }, + "end": { + "$date": "2021-07-20T22:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1ae40bf9-9d17-4226-9022-e33cf5e142e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-20T22:26:38.000Z" + }, + "end": { + "$date": "2021-07-20T22:49:29.000Z" + }, + "events": [ + { + "uuid": "4f45f746-3c30-49b2-ad01-981722c0d8f4", + "start": { + "$date": "2021-07-20T22:26:38.000Z" + }, + "end": { + "$date": "2021-07-20T22:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "649b31b0-029b-4df3-80b7-8081e400b72d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-20T22:36:45.000Z" + }, + "end": { + "$date": "2021-07-20T22:40:22.000Z" + }, + "events": [ + { + "uuid": "f96cfa78-9276-4ed3-b301-95fe50c4a123", + "start": { + "$date": "2021-07-20T22:36:45.000Z" + }, + "end": { + "$date": "2021-07-20T22:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4b193f8f-df6f-4b81-9133-a585030238a0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-20T22:40:35.000Z" + }, + "end": { + "$date": "2021-07-20T23:24:05.000Z" + }, + "events": [ + { + "uuid": "217b4870-cb7f-43b6-bcc7-7eca5c6b6f90", + "start": { + "$date": "2021-07-20T22:40:35.000Z" + }, + "end": { + "$date": "2021-07-20T23:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0c0b00c4-a4c3-4c28-8f85-297e0e3f34f5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-20T22:41:00.000Z" + }, + "end": { + "$date": "2021-07-20T22:56:14.000Z" + }, + "events": [ + { + "uuid": "6c1130ba-e88d-4024-b174-6c950a9fbc34", + "start": { + "$date": "2021-07-20T22:41:00.000Z" + }, + "end": { + "$date": "2021-07-20T22:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "550ed551-f418-4878-a5c2-489658652e3d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-20T22:53:49.000Z" + }, + "end": { + "$date": "2021-07-21T06:45:45.000Z" + }, + "events": [ + { + "uuid": "b134d9f8-f431-4e37-9339-755f754f20e4", + "start": { + "$date": "2021-07-20T22:53:49.000Z" + }, + "end": { + "$date": "2021-07-21T02:10:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af3f3a56-6f54-40f1-b4af-0c6c8df50832", + "start": { + "$date": "2021-07-21T02:10:49.000Z" + }, + "end": { + "$date": "2021-07-21T02:24:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f3198d25-ae4e-4bcf-bcbd-5ad6377d179c", + "start": { + "$date": "2021-07-21T02:24:49.000Z" + }, + "end": { + "$date": "2021-07-21T06:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ebad58af-19da-407b-ad0c-ab37f7cd0439", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-20T22:57:07.000Z" + }, + "end": { + "$date": "2021-07-20T23:37:07.000Z" + }, + "events": [ + { + "uuid": "205963c6-50da-4f63-821a-851e9e858b7e", + "start": { + "$date": "2021-07-20T22:57:07.000Z" + }, + "end": { + "$date": "2021-07-20T23:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "21b2823e-e89d-4a26-bed6-68e7929bdcb4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T00:00:47.000Z" + }, + "end": { + "$date": "2021-07-21T00:48:06.000Z" + }, + "events": [ + { + "uuid": "31e0aa30-c95c-4fad-af39-f60de3e8575b", + "start": { + "$date": "2021-07-21T00:00:47.000Z" + }, + "end": { + "$date": "2021-07-21T00:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c48829d-3c1f-45d8-a42d-9268aef21fa9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T00:25:03.000Z" + }, + "end": { + "$date": "2021-07-21T00:38:48.000Z" + }, + "events": [ + { + "uuid": "1b75cbff-9cc5-48e2-9c53-fc3f10e455c1", + "start": { + "$date": "2021-07-21T00:25:03.000Z" + }, + "end": { + "$date": "2021-07-21T00:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88a0cd92-c1e4-497f-962b-f05fd389bc6d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T00:25:20.000Z" + }, + "end": { + "$date": "2021-07-21T00:38:34.000Z" + }, + "events": [ + { + "uuid": "b4280e11-9fc1-4174-ace3-bebea48911f7", + "start": { + "$date": "2021-07-21T00:25:20.000Z" + }, + "end": { + "$date": "2021-07-21T00:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "be03ca35-c846-4417-8580-8e6979dd3164", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-21T00:33:47.000Z" + }, + "end": { + "$date": "2021-07-21T02:03:40.000Z" + }, + "events": [ + { + "uuid": "543b6ec7-6855-4804-98f6-98bc123c52af", + "start": { + "$date": "2021-07-21T00:33:47.000Z" + }, + "end": { + "$date": "2021-07-21T02:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0fd2d442-d0ec-4117-a71a-73457d6f48b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-21T00:36:43.000Z" + }, + "end": { + "$date": "2021-07-21T02:03:27.000Z" + }, + "events": [ + { + "uuid": "bb3cad8a-25dd-4401-8963-1d48b0174ed3", + "start": { + "$date": "2021-07-21T00:36:43.000Z" + }, + "end": { + "$date": "2021-07-21T02:03:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d910189e-5f6e-4693-8125-2d6120929c70", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T00:41:49.000Z" + }, + "end": { + "$date": "2021-07-21T01:12:20.000Z" + }, + "events": [ + { + "uuid": "fdf77c24-135a-4754-9f7f-904e79d1a9d5", + "start": { + "$date": "2021-07-21T00:41:49.000Z" + }, + "end": { + "$date": "2021-07-21T01:12:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ceeedc9e-d738-4cdd-9d29-72d0f8e4d909", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T00:41:45.000Z" + }, + "end": { + "$date": "2021-07-21T01:12:09.000Z" + }, + "events": [ + { + "uuid": "d695a410-a866-421a-a15c-cded683d8589", + "start": { + "$date": "2021-07-21T00:41:45.000Z" + }, + "end": { + "$date": "2021-07-21T01:12:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "155cf911-46fe-4753-9090-190978230e3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T01:15:27.000Z" + }, + "end": { + "$date": "2021-07-21T01:50:39.000Z" + }, + "events": [ + { + "uuid": "6f0b7e5e-21cc-4fd0-8c97-efcaafea2574", + "start": { + "$date": "2021-07-21T01:15:27.000Z" + }, + "end": { + "$date": "2021-07-21T01:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b76ffb51-a369-4fd4-abd9-fb2bba6f118b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T01:16:26.000Z" + }, + "end": { + "$date": "2021-07-21T01:50:30.000Z" + }, + "events": [ + { + "uuid": "644b3c79-d02d-4693-b18f-f04b2035804b", + "start": { + "$date": "2021-07-21T01:16:26.000Z" + }, + "end": { + "$date": "2021-07-21T01:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8b444ad-99c4-4586-9d2e-b6ca3f361eb4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T02:01:57.000Z" + }, + "end": { + "$date": "2021-07-21T02:03:41.000Z" + }, + "events": [ + { + "uuid": "b7e34f1e-1e66-49a7-a917-b1e7655d6448", + "start": { + "$date": "2021-07-21T02:01:57.000Z" + }, + "end": { + "$date": "2021-07-21T02:03:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "635fbbe2-60a6-4047-b3b0-6aedb0593d55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T02:04:17.000Z" + }, + "end": { + "$date": "2021-07-21T02:10:19.000Z" + }, + "events": [ + { + "uuid": "f2455fc6-d19a-4f8c-83a5-5dc1b724db6a", + "start": { + "$date": "2021-07-21T02:04:17.000Z" + }, + "end": { + "$date": "2021-07-21T02:10:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "04b44884-a833-48a5-8246-83bb2a82b355", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-21T02:11:44.000Z" + }, + "end": { + "$date": "2021-07-21T02:42:57.000Z" + }, + "events": [ + { + "uuid": "eb22731c-254f-411f-b938-2d5e516b5092", + "start": { + "$date": "2021-07-21T02:11:44.000Z" + }, + "end": { + "$date": "2021-07-21T02:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "84fbafaa-c553-4886-80b8-4a5cf306dbc1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-21T02:12:34.000Z" + }, + "end": { + "$date": "2021-07-21T02:45:41.000Z" + }, + "events": [ + { + "uuid": "0b8c819b-f45c-4dec-81e7-a7e4966d7d28", + "start": { + "$date": "2021-07-21T02:12:34.000Z" + }, + "end": { + "$date": "2021-07-21T02:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "3ca14c18-9dc7-4c0d-972f-8b4f07a49937", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T02:12:58.000Z" + }, + "end": { + "$date": "2021-07-21T02:43:18.000Z" + }, + "events": [ + { + "uuid": "f4e34af7-7c9c-4c74-b079-15979f2586df", + "start": { + "$date": "2021-07-21T02:12:58.000Z" + }, + "end": { + "$date": "2021-07-21T02:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "46e95ee5-02b2-4bb8-8d07-83fdc3c15ec9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-21T02:30:58.000Z" + }, + "end": { + "$date": "2021-07-21T02:43:48.000Z" + }, + "events": [ + { + "uuid": "a76f360a-8927-4c44-b6b5-c949c743b332", + "start": { + "$date": "2021-07-21T02:30:58.000Z" + }, + "end": { + "$date": "2021-07-21T02:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf90f37c-567f-46e9-b565-45691065931f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-21T02:42:45.000Z" + }, + "end": { + "$date": "2021-07-21T03:12:09.000Z" + }, + "events": [ + { + "uuid": "2d0bde78-5510-4196-9921-90aaf8fe08ca", + "start": { + "$date": "2021-07-21T02:42:45.000Z" + }, + "end": { + "$date": "2021-07-21T03:12:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd354964-0d9a-4dd9-84b5-f0b4845e4aeb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-21T02:44:04.000Z" + }, + "end": { + "$date": "2021-07-21T03:03:30.000Z" + }, + "events": [ + { + "uuid": "8ba9645d-9670-4b72-b4a4-b502a4862ea0", + "start": { + "$date": "2021-07-21T02:44:04.000Z" + }, + "end": { + "$date": "2021-07-21T03:03:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e4a852cd-78d2-4db2-a32f-be2dbab8f706", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-21T02:49:21.000Z" + }, + "end": { + "$date": "2021-07-21T03:53:58.000Z" + }, + "events": [ + { + "uuid": "ba8e51de-1301-4861-b5fe-b8b000842197", + "start": { + "$date": "2021-07-21T02:49:21.000Z" + }, + "end": { + "$date": "2021-07-21T03:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "94dc3b9d-2b87-4a6d-94b2-5f9eb4a0ae34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T02:50:49.000Z" + }, + "end": { + "$date": "2021-07-21T04:03:51.000Z" + }, + "events": [ + { + "uuid": "f68f4b26-d86c-4179-97df-9a0771e9a33f", + "start": { + "$date": "2021-07-21T02:50:49.000Z" + }, + "end": { + "$date": "2021-07-21T04:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d85805df-89fc-451d-aa71-fa2e4875623d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T03:03:04.000Z" + }, + "end": { + "$date": "2021-07-21T04:03:12.000Z" + }, + "events": [ + { + "uuid": "93ff7dfa-7aa4-4137-bdcd-4932349fd6ce", + "start": { + "$date": "2021-07-21T03:03:04.000Z" + }, + "end": { + "$date": "2021-07-21T04:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e51eb73c-e123-4781-a367-98e76cb3ebea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-21T03:03:51.000Z" + }, + "end": { + "$date": "2021-07-21T04:03:01.000Z" + }, + "events": [ + { + "uuid": "75350edc-e2d5-42eb-ae88-cd5a54846366", + "start": { + "$date": "2021-07-21T03:03:51.000Z" + }, + "end": { + "$date": "2021-07-21T04:03:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8f350105-e62c-4845-82c5-68edf1ac104f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-21T03:04:44.000Z" + }, + "end": { + "$date": "2021-07-21T04:11:37.000Z" + }, + "events": [ + { + "uuid": "19a5d41a-cd7a-4fc1-8495-d7f812e6d605", + "start": { + "$date": "2021-07-21T03:04:44.000Z" + }, + "end": { + "$date": "2021-07-21T04:11:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "879402dc-0b74-4933-814b-65b7fb32e961", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-21T03:19:16.000Z" + }, + "end": { + "$date": "2021-07-21T03:38:16.000Z" + }, + "events": [ + { + "uuid": "a6c829f6-735c-4b4d-803a-ee8b0b2bcfc9", + "start": { + "$date": "2021-07-21T03:19:16.000Z" + }, + "end": { + "$date": "2021-07-21T03:38:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "971626b2-4549-47af-849f-19d66a54ebd9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T04:07:32.000Z" + }, + "end": { + "$date": "2021-07-21T04:33:14.000Z" + }, + "events": [ + { + "uuid": "0208af26-1b1c-4a6c-b25a-ea904cfc9044", + "start": { + "$date": "2021-07-21T04:07:32.000Z" + }, + "end": { + "$date": "2021-07-21T04:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74e4a047-266d-4da8-83a8-caeb47a75a9d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-21T03:38:16.000Z" + }, + "end": { + "$date": "2021-07-21T04:10:04.000Z" + }, + "events": [ + { + "uuid": "3d023060-bf65-4648-a2a5-bc23fa18ae09", + "start": { + "$date": "2021-07-21T03:38:16.000Z" + }, + "end": { + "$date": "2021-07-21T04:10:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2b8f1bdb-7f9c-4672-9a49-9014c1a869fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T04:11:46.000Z" + }, + "end": { + "$date": "2021-07-21T04:30:29.000Z" + }, + "events": [ + { + "uuid": "ab5f3873-4766-472e-81e1-2b63a6f915f5", + "start": { + "$date": "2021-07-21T04:11:46.000Z" + }, + "end": { + "$date": "2021-07-21T04:30:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03a0ff55-0eb8-4a31-823b-2554dfbff9a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-21T04:20:59.000Z" + }, + "end": { + "$date": "2021-07-21T04:47:08.000Z" + }, + "events": [ + { + "uuid": "8d8322d8-2c90-4809-9489-0b4946e3a302", + "start": { + "$date": "2021-07-21T04:20:59.000Z" + }, + "end": { + "$date": "2021-07-21T04:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4510bf8c-398c-4ec4-9a29-f7e12abb77be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T04:34:15.000Z" + }, + "end": { + "$date": "2021-07-21T04:48:10.000Z" + }, + "events": [ + { + "uuid": "ecd7d285-66da-4401-a1fc-b7e512f17a0e", + "start": { + "$date": "2021-07-21T04:34:15.000Z" + }, + "end": { + "$date": "2021-07-21T04:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "22ca0c33-b2fa-487c-a766-4f5ab58f8f8a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-21T04:37:52.000Z" + }, + "end": { + "$date": "2021-07-21T05:20:58.000Z" + }, + "events": [ + { + "uuid": "1809a046-e8d2-42e0-99e2-5461f0c60c1d", + "start": { + "$date": "2021-07-21T04:37:52.000Z" + }, + "end": { + "$date": "2021-07-21T05:20:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "3627181a-d43f-4927-a113-439d47208d85", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T05:14:18.000Z" + }, + "end": { + "$date": "2021-07-21T05:58:51.000Z" + }, + "events": [ + { + "uuid": "494c4c72-b80f-44af-99bc-50da52c6edaf", + "start": { + "$date": "2021-07-21T05:14:18.000Z" + }, + "end": { + "$date": "2021-07-21T05:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "e7079699-b8fe-41a5-839a-950d29b2c5f3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-21T14:59:03.000Z" + }, + "end": { + "$date": "2021-07-21T14:59:08.000Z" + }, + "events": [ + { + "uuid": "2dececbc-ee65-45d7-8cd8-5f0448da2026", + "start": { + "$date": "2021-07-21T14:59:03.000Z" + }, + "end": { + "$date": "2021-07-21T14:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "73c8b5df-e3bd-4313-9a76-473709828c55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T14:12:23.000Z" + }, + "end": { + "$date": "2021-07-21T14:24:52.000Z" + }, + "events": [ + { + "uuid": "a6fa7b92-6ec3-4ed5-9f78-52829cdd7c73", + "start": { + "$date": "2021-07-21T14:12:23.000Z" + }, + "end": { + "$date": "2021-07-21T14:24:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "84d58fd0-5242-4c6e-ae8b-cc1e109d2832", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T14:27:45.000Z" + }, + "end": { + "$date": "2021-07-21T15:55:05.000Z" + }, + "events": [ + { + "uuid": "f644d0c4-ddbb-45c5-ba0c-a9f8c43853e3", + "start": { + "$date": "2021-07-21T14:27:45.000Z" + }, + "end": { + "$date": "2021-07-21T15:55:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee6543b8-3c21-4ad5-a0c0-144c8c6fe789", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T15:36:37.000Z" + }, + "end": { + "$date": "2021-07-21T15:55:50.000Z" + }, + "events": [ + { + "uuid": "fac955ac-91d3-430a-955f-2ca794e5d916", + "start": { + "$date": "2021-07-21T15:36:37.000Z" + }, + "end": { + "$date": "2021-07-21T15:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "ae8abcf2-74b6-4d62-9c50-60eb00171225", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T15:56:13.000Z" + }, + "end": { + "$date": "2021-07-21T16:24:32.000Z" + }, + "events": [ + { + "uuid": "f105c828-6576-4782-bf8b-15d17ee73287", + "start": { + "$date": "2021-07-21T15:56:13.000Z" + }, + "end": { + "$date": "2021-07-21T16:07:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f1f63cd-a243-477e-923c-8528dab4e962", + "start": { + "$date": "2021-07-21T16:07:13.000Z" + }, + "end": { + "$date": "2021-07-21T16:10:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "462118aa-6287-4a87-8c9c-ea890b268f84", + "start": { + "$date": "2021-07-21T16:10:13.000Z" + }, + "end": { + "$date": "2021-07-21T16:24:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77e5e496-e61e-4b11-acdc-f6d6cab8c101", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T16:06:44.000Z" + }, + "end": { + "$date": "2021-07-21T16:32:14.000Z" + }, + "events": [ + { + "uuid": "93673397-2869-4938-b1e5-d187db314861", + "start": { + "$date": "2021-07-21T16:06:44.000Z" + }, + "end": { + "$date": "2021-07-21T16:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c1cc863d-fb64-406a-b4b1-184f5cfdb106", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T16:29:06.000Z" + }, + "end": { + "$date": "2021-07-21T17:43:26.000Z" + }, + "events": [ + { + "uuid": "ec143600-8d19-4513-a8c7-2b5dd71a8e89", + "start": { + "$date": "2021-07-21T16:29:06.000Z" + }, + "end": { + "$date": "2021-07-21T17:43:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76535914-7da3-4b14-8c2f-f6a5085a850f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T16:37:25.000Z" + }, + "end": { + "$date": "2021-07-21T16:58:30.000Z" + }, + "events": [ + { + "uuid": "ecd76071-a760-4750-a7fd-b405d0d3a7de", + "start": { + "$date": "2021-07-21T16:37:25.000Z" + }, + "end": { + "$date": "2021-07-21T16:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "df77a42c-e5db-4d9c-8671-0d25a7ccb51c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-21T16:57:56.000Z" + }, + "end": { + "$date": "2021-07-21T17:21:08.000Z" + }, + "events": [ + { + "uuid": "05f0547f-99bc-480b-912c-f08c7229359c", + "start": { + "$date": "2021-07-21T16:57:56.000Z" + }, + "end": { + "$date": "2021-07-21T17:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "227ecd14-b5dc-4b9a-aaa1-a2edd57750ed", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-21T17:54:58.000Z" + }, + "end": { + "$date": "2021-07-21T19:09:32.000Z" + }, + "events": [ + { + "uuid": "050b37a6-66e4-40f1-bb98-6e5aeab2c392", + "start": { + "$date": "2021-07-21T17:54:58.000Z" + }, + "end": { + "$date": "2021-07-21T19:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "099637e8-aa0a-4b5f-8ba0-4c010cf0daff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T18:12:17.000Z" + }, + "end": { + "$date": "2021-07-21T18:46:27.000Z" + }, + "events": [ + { + "uuid": "96d63a3b-9d0d-43ff-b9c7-6b6f841500cb", + "start": { + "$date": "2021-07-21T18:12:17.000Z" + }, + "end": { + "$date": "2021-07-21T18:24:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a163b8fa-edcc-4e3c-82e3-3ee46221363f", + "start": { + "$date": "2021-07-21T18:24:17.000Z" + }, + "end": { + "$date": "2021-07-21T18:29:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "904308a9-44d0-484b-a3e4-f89b7e2f0c7c", + "start": { + "$date": "2021-07-21T18:29:17.000Z" + }, + "end": { + "$date": "2021-07-21T18:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "df07b3a7-167f-4132-9608-65c5b7eaf4a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T18:46:45.000Z" + }, + "end": { + "$date": "2021-07-21T19:13:43.000Z" + }, + "events": [ + { + "uuid": "e41a8934-f2b2-4fc8-96bf-b22e7ebada80", + "start": { + "$date": "2021-07-21T18:46:45.000Z" + }, + "end": { + "$date": "2021-07-21T19:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "48db2109-3b4b-46f9-85bd-197d151ac465", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-21T19:11:52.000Z" + }, + "end": { + "$date": "2021-07-21T20:19:02.000Z" + }, + "events": [ + { + "uuid": "000f0015-dd16-4a5e-9111-354b75ac05fa", + "start": { + "$date": "2021-07-21T19:11:52.000Z" + }, + "end": { + "$date": "2021-07-21T20:19:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c613c115-5cab-4acf-88af-ce5fb4e4bb2b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-21T19:18:08.000Z" + }, + "end": { + "$date": "2021-07-21T22:05:18.000Z" + }, + "events": [ + { + "uuid": "6f9c3031-d247-48ec-acd2-a03a4815d6f9", + "start": { + "$date": "2021-07-21T19:18:08.000Z" + }, + "end": { + "$date": "2021-07-21T22:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3daad71-fa4a-4455-92bd-15eeb37172b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T19:33:47.000Z" + }, + "end": { + "$date": "2021-07-21T19:51:54.000Z" + }, + "events": [ + { + "uuid": "77f0f703-0fd0-4024-a932-2264823e2012", + "start": { + "$date": "2021-07-21T19:33:47.000Z" + }, + "end": { + "$date": "2021-07-21T19:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44330dfc-a072-4f00-8635-ce38eced73c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T19:35:07.000Z" + }, + "end": { + "$date": "2021-07-21T19:51:51.000Z" + }, + "events": [ + { + "uuid": "146d80ef-05b8-47cd-906d-8a2e07e2d723", + "start": { + "$date": "2021-07-21T19:35:07.000Z" + }, + "end": { + "$date": "2021-07-21T19:51:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83602069-1180-402d-ba19-31a88a17cb28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T19:54:52.000Z" + }, + "end": { + "$date": "2021-07-21T20:23:31.000Z" + }, + "events": [ + { + "uuid": "22ac1681-bfde-4781-878f-afde3109b5fd", + "start": { + "$date": "2021-07-21T19:54:52.000Z" + }, + "end": { + "$date": "2021-07-21T20:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fc01b55f-4d01-4ae1-a89e-7771e144066f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T19:52:25.000Z" + }, + "end": { + "$date": "2021-07-21T20:16:48.000Z" + }, + "events": [ + { + "uuid": "397d107c-e96a-4b37-9146-4524446781a8", + "start": { + "$date": "2021-07-21T19:52:25.000Z" + }, + "end": { + "$date": "2021-07-21T20:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edb72392-edb6-4b56-b1b8-b6b16a5a7cae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-21T19:56:02.000Z" + }, + "end": { + "$date": "2021-07-21T20:23:22.000Z" + }, + "events": [ + { + "uuid": "8c30d7ac-6d91-4b2f-be11-670d104fbc2a", + "start": { + "$date": "2021-07-21T19:56:02.000Z" + }, + "end": { + "$date": "2021-07-21T20:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a53fa2cf-5a04-4513-9e70-8bb81fea42fa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T20:18:51.000Z" + }, + "end": { + "$date": "2021-07-21T21:48:08.000Z" + }, + "events": [ + { + "uuid": "9d0897c7-4f7d-4c21-993c-bdfd8e19ffac", + "start": { + "$date": "2021-07-21T20:18:51.000Z" + }, + "end": { + "$date": "2021-07-21T21:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6dd0f6f-bfc2-4564-a8ac-2a650e896c5e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T20:27:19.000Z" + }, + "end": { + "$date": "2021-07-21T20:53:50.000Z" + }, + "events": [ + { + "uuid": "defb7a56-5f98-446a-aa78-d9ae14840ad2", + "start": { + "$date": "2021-07-21T20:27:19.000Z" + }, + "end": { + "$date": "2021-07-21T20:53:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ea9119b-6b57-43c6-bbe7-69c2ef04e38a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-21T20:57:44.000Z" + }, + "end": { + "$date": "2021-07-21T21:21:55.000Z" + }, + "events": [ + { + "uuid": "b3e84365-0631-4f50-a89e-7a8bf99b9b65", + "start": { + "$date": "2021-07-21T20:57:44.000Z" + }, + "end": { + "$date": "2021-07-21T21:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "10117e50-901d-444d-bad2-a052c27a3847", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-21T22:20:30.000Z" + }, + "end": { + "$date": "2021-07-21T22:29:08.000Z" + }, + "events": [ + { + "uuid": "f332628d-681d-4e07-9247-f6c827f03858", + "start": { + "$date": "2021-07-21T22:20:30.000Z" + }, + "end": { + "$date": "2021-07-21T22:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "3336b4ea-995e-4e02-bd99-ef307f400d84", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-21T23:40:33.000Z" + }, + "end": { + "$date": "2021-07-22T00:05:34.000Z" + }, + "events": [ + { + "uuid": "b8573f05-4fb8-4985-ab7a-16f670937541", + "start": { + "$date": "2021-07-21T23:40:33.000Z" + }, + "end": { + "$date": "2021-07-22T00:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "193a174e-7531-4335-b4e4-2403f7491e9c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-21T22:59:31.000Z" + }, + "end": { + "$date": "2021-07-21T23:52:00.000Z" + }, + "events": [ + { + "uuid": "c907b8e3-9049-42bf-8a26-68a0fc4d7177", + "start": { + "$date": "2021-07-21T22:59:31.000Z" + }, + "end": { + "$date": "2021-07-21T23:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0da469d1-b348-4aa6-8a8d-2a67a9288c84", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-21T21:43:30.000Z" + }, + "end": { + "$date": "2021-07-22T03:45:32.000Z" + }, + "events": [ + { + "uuid": "c950dc6a-3f7b-433f-a3a6-87139a91c41f", + "start": { + "$date": "2021-07-21T21:43:30.000Z" + }, + "end": { + "$date": "2021-07-21T22:21:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a7e6a8f0-ed35-4c0e-8ffc-77a069810c43", + "start": { + "$date": "2021-07-21T22:21:30.000Z" + }, + "end": { + "$date": "2021-07-21T22:24:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6f0bcd7a-2c61-4ca8-b47d-a3f8a2120281", + "start": { + "$date": "2021-07-21T22:24:30.000Z" + }, + "end": { + "$date": "2021-07-21T23:40:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eaea8bc3-cd52-4c4a-bff8-9a471e422496", + "start": { + "$date": "2021-07-21T23:40:30.000Z" + }, + "end": { + "$date": "2021-07-21T23:45:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "95b21da0-0e32-48c4-8058-c2af96ca7c76", + "start": { + "$date": "2021-07-21T23:45:30.000Z" + }, + "end": { + "$date": "2021-07-21T23:55:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d8323de8-2507-4b14-b9dd-8a1074f98d13", + "start": { + "$date": "2021-07-21T23:55:30.000Z" + }, + "end": { + "$date": "2021-07-22T00:17:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15557da2-0950-469f-a8ee-f2c36e3f9fd7", + "start": { + "$date": "2021-07-22T00:17:30.000Z" + }, + "end": { + "$date": "2021-07-22T03:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cbc6d9ed-af08-49cc-b79d-90b21b9b4aaa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T00:52:39.000Z" + }, + "end": { + "$date": "2021-07-22T00:53:58.000Z" + }, + "events": [ + { + "uuid": "6481b06c-036b-4ae9-99e0-66e1a359c222", + "start": { + "$date": "2021-07-22T00:52:39.000Z" + }, + "end": { + "$date": "2021-07-22T00:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "469f8aee-5146-4101-9aab-4b0e1a6e92e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T00:54:09.000Z" + }, + "end": { + "$date": "2021-07-22T02:19:52.000Z" + }, + "events": [ + { + "uuid": "c7bb57b3-13dd-4c6d-ab02-ce43ca3c2f21", + "start": { + "$date": "2021-07-22T00:54:09.000Z" + }, + "end": { + "$date": "2021-07-22T02:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7f8c7c4c-4ca8-4e7c-b5f1-97585f058eb6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-22T01:20:16.000Z" + }, + "end": { + "$date": "2021-07-22T01:27:51.000Z" + }, + "events": [ + { + "uuid": "2c5fc3e1-cbc1-4461-ba5c-1270c6b90edb", + "start": { + "$date": "2021-07-22T01:20:16.000Z" + }, + "end": { + "$date": "2021-07-22T01:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f2bb5824-623d-4a3f-a8a0-f0077f955155", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-22T02:06:58.000Z" + }, + "end": { + "$date": "2021-07-22T04:28:54.000Z" + }, + "events": [ + { + "uuid": "4e7871ce-31d6-4ab1-8dc5-7e54571a6cb3", + "start": { + "$date": "2021-07-22T02:06:58.000Z" + }, + "end": { + "$date": "2021-07-22T04:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f18ba3cb-2372-4f0d-aa4d-68a74fcac712", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-22T02:08:52.000Z" + }, + "end": { + "$date": "2021-07-22T03:49:23.000Z" + }, + "events": [ + { + "uuid": "d87e8906-4cda-4608-8a1a-3a914a4e2bbe", + "start": { + "$date": "2021-07-22T02:08:52.000Z" + }, + "end": { + "$date": "2021-07-22T03:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "82473d11-4a86-49ca-a6bc-608d7607a39f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-22T02:41:49.000Z" + }, + "end": { + "$date": "2021-07-22T03:18:16.000Z" + }, + "events": [ + { + "uuid": "2d6e56de-bb3a-4974-af38-a7d200ea4e54", + "start": { + "$date": "2021-07-22T02:41:49.000Z" + }, + "end": { + "$date": "2021-07-22T03:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "27bd2bfa-c65a-437c-a2b0-a7fccce17c5e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-22T02:50:16.000Z" + }, + "end": { + "$date": "2021-07-22T03:57:15.000Z" + }, + "events": [ + { + "uuid": "e97cf90e-335c-4806-8e88-c111db8cbc90", + "start": { + "$date": "2021-07-22T02:50:16.000Z" + }, + "end": { + "$date": "2021-07-22T03:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a8df5dd-3e01-4865-9c7f-5be67e607e13", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-22T03:22:45.000Z" + }, + "end": { + "$date": "2021-07-22T04:00:40.000Z" + }, + "events": [ + { + "uuid": "22997880-7d00-48b1-87e2-ec71cdf0dd1d", + "start": { + "$date": "2021-07-22T03:22:45.000Z" + }, + "end": { + "$date": "2021-07-22T04:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b90da03-6a91-440a-93d6-451698206140", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T03:42:43.000Z" + }, + "end": { + "$date": "2021-07-22T04:12:59.000Z" + }, + "events": [ + { + "uuid": "edd031d1-7963-45ba-be5e-6961554234ae", + "start": { + "$date": "2021-07-22T03:42:43.000Z" + }, + "end": { + "$date": "2021-07-22T04:12:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "df6ed171-e0b9-431c-9fe4-2a414057c72d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-22T03:45:52.000Z" + }, + "end": { + "$date": "2021-07-22T04:41:09.000Z" + }, + "events": [ + { + "uuid": "836ddd0d-5756-4fbf-b29d-e48729af5ce9", + "start": { + "$date": "2021-07-22T03:45:52.000Z" + }, + "end": { + "$date": "2021-07-22T04:41:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7407a6d-bd4f-451c-85bf-ae3091037bab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-22T03:49:31.000Z" + }, + "end": { + "$date": "2021-07-22T04:28:53.000Z" + }, + "events": [ + { + "uuid": "3479c935-b35c-4951-89d5-5f09f68c4ff7", + "start": { + "$date": "2021-07-22T03:49:31.000Z" + }, + "end": { + "$date": "2021-07-22T04:28:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b72b001-520b-4abf-a0ed-17ae91c9f445", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-22T04:06:16.000Z" + }, + "end": { + "$date": "2021-07-22T04:44:12.000Z" + }, + "events": [ + { + "uuid": "05408b3e-f148-4684-96a4-8144604f4d57", + "start": { + "$date": "2021-07-22T04:06:16.000Z" + }, + "end": { + "$date": "2021-07-22T04:44:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7094c269-dd20-460e-89ce-5145a030dd29", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-22T04:05:58.000Z" + }, + "end": { + "$date": "2021-07-22T04:57:11.000Z" + }, + "events": [ + { + "uuid": "31a4c4ae-2a1e-42cf-aafc-d086c10af8f2", + "start": { + "$date": "2021-07-22T04:05:58.000Z" + }, + "end": { + "$date": "2021-07-22T04:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7198b2a-d2db-41ea-a170-f5141814d062", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T04:17:20.000Z" + }, + "end": { + "$date": "2021-07-22T04:31:30.000Z" + }, + "events": [ + { + "uuid": "9eeab332-c9da-4432-8229-316f1dcf3953", + "start": { + "$date": "2021-07-22T04:17:20.000Z" + }, + "end": { + "$date": "2021-07-22T04:31:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "573af0cd-0a9e-4e1c-86c0-cd18861da70e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T04:28:20.000Z" + }, + "end": { + "$date": "2021-07-22T04:36:00.000Z" + }, + "events": [ + { + "uuid": "b03b91a5-fa6e-4a8e-b265-2a99ad5e128b", + "start": { + "$date": "2021-07-22T04:28:20.000Z" + }, + "end": { + "$date": "2021-07-22T04:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d3214fda-5890-4769-b157-2d94ae10f561", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-22T04:29:18.000Z" + }, + "end": { + "$date": "2021-07-22T04:33:39.000Z" + }, + "events": [ + { + "uuid": "1e6bba2a-f644-491a-84aa-dd0a2400d8f9", + "start": { + "$date": "2021-07-22T04:29:18.000Z" + }, + "end": { + "$date": "2021-07-22T04:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d47c772-df5c-4058-8a3a-8d08f51db5d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T04:37:04.000Z" + }, + "end": { + "$date": "2021-07-22T05:11:42.000Z" + }, + "events": [ + { + "uuid": "b4fe1778-370f-461c-9484-333663e1f101", + "start": { + "$date": "2021-07-22T04:37:04.000Z" + }, + "end": { + "$date": "2021-07-22T05:11:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7df15c02-10b4-4851-9726-b4eb6f1da304", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-22T04:33:54.000Z" + }, + "end": { + "$date": "2021-07-22T05:15:53.000Z" + }, + "events": [ + { + "uuid": "a24f4af8-ab76-4a1f-89a1-c8b3a41459f6", + "start": { + "$date": "2021-07-22T04:33:54.000Z" + }, + "end": { + "$date": "2021-07-22T05:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f36f9bca-bde2-47e5-bb3e-a0804cc8f09f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-22T04:36:46.000Z" + }, + "end": { + "$date": "2021-07-22T05:06:11.000Z" + }, + "events": [ + { + "uuid": "2fa6dc65-e0b7-4a4d-903f-2682ed6a2425", + "start": { + "$date": "2021-07-22T04:36:46.000Z" + }, + "end": { + "$date": "2021-07-22T05:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "70c2294d-b3fb-4552-a1ba-b27b85d251bb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T04:37:47.000Z" + }, + "end": { + "$date": "2021-07-22T05:15:42.000Z" + }, + "events": [ + { + "uuid": "8b39ccdd-dd15-431f-a00c-0afd7db1a63a", + "start": { + "$date": "2021-07-22T04:37:47.000Z" + }, + "end": { + "$date": "2021-07-22T05:15:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7973161c-f5a1-4cc1-9746-2c9a732dac3d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-22T04:41:24.000Z" + }, + "end": { + "$date": "2021-07-22T07:09:35.000Z" + }, + "events": [ + { + "uuid": "4506b2ad-9e07-4f3d-9203-a15ef1eecab3", + "start": { + "$date": "2021-07-22T04:41:24.000Z" + }, + "end": { + "$date": "2021-07-22T07:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8991484b-834f-430a-82fe-206ec717b039", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-22T04:57:27.000Z" + }, + "end": { + "$date": "2021-07-22T05:20:18.000Z" + }, + "events": [ + { + "uuid": "4a59996a-4ada-4c1e-8847-ccd9670ba77c", + "start": { + "$date": "2021-07-22T04:57:27.000Z" + }, + "end": { + "$date": "2021-07-22T05:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dd693011-8476-48ed-bc0d-7cb89a07e80c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-22T05:20:49.000Z" + }, + "end": { + "$date": "2021-07-22T05:39:30.000Z" + }, + "events": [ + { + "uuid": "e765097f-cb07-4dc8-b09d-e0a02569e503", + "start": { + "$date": "2021-07-22T05:20:49.000Z" + }, + "end": { + "$date": "2021-07-22T05:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c14d402f-4510-4be2-9af2-1596f0b642df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T05:37:57.000Z" + }, + "end": { + "$date": "2021-07-22T06:02:23.000Z" + }, + "events": [ + { + "uuid": "272f8085-86c8-4acd-bdec-d1e988f5a269", + "start": { + "$date": "2021-07-22T05:37:57.000Z" + }, + "end": { + "$date": "2021-07-22T06:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8c77f20-9943-46cb-99c9-ea931c7ff2f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T06:06:30.000Z" + }, + "end": { + "$date": "2021-07-22T06:26:33.000Z" + }, + "events": [ + { + "uuid": "400b50fe-4aa9-48e7-826a-d1eaad18006e", + "start": { + "$date": "2021-07-22T06:06:30.000Z" + }, + "end": { + "$date": "2021-07-22T06:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "324bab21-9636-4f67-b46e-abd237881ffe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T06:31:41.000Z" + }, + "end": { + "$date": "2021-07-22T06:52:45.000Z" + }, + "events": [ + { + "uuid": "dff4e1f2-2925-435a-b9be-02842b6431f4", + "start": { + "$date": "2021-07-22T06:31:41.000Z" + }, + "end": { + "$date": "2021-07-22T06:52:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "feab4f48-990a-4b63-876c-e4bb556d8500", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-22T15:01:39.000Z" + }, + "end": { + "$date": "2021-07-22T15:01:44.000Z" + }, + "events": [ + { + "uuid": "16650534-a7c7-432e-af17-814cea147b81", + "start": { + "$date": "2021-07-22T15:01:39.000Z" + }, + "end": { + "$date": "2021-07-22T15:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "abfdb2b9-dd1c-4a25-80b2-ea71c8cc2e4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-22T14:41:58.000Z" + }, + "end": { + "$date": "2021-07-22T14:45:10.000Z" + }, + "events": [ + { + "uuid": "9558eb26-77c8-45e7-805c-6e9c400444b2", + "start": { + "$date": "2021-07-22T14:41:58.000Z" + }, + "end": { + "$date": "2021-07-22T14:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "034dd382-f278-47e6-802d-397bff1916f7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-22T14:49:30.000Z" + }, + "end": { + "$date": "2021-07-22T14:52:42.000Z" + }, + "events": [ + { + "uuid": "0a7b6f70-2eea-4d13-b4f0-7c6791007c37", + "start": { + "$date": "2021-07-22T14:49:30.000Z" + }, + "end": { + "$date": "2021-07-22T14:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ee3729d4-580e-465e-b2d7-fa6b92a35a6f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T15:27:02.000Z" + }, + "end": { + "$date": "2021-07-22T16:05:52.000Z" + }, + "events": [ + { + "uuid": "9ca556ba-665d-4404-8ba3-35f9275cfa91", + "start": { + "$date": "2021-07-22T15:27:02.000Z" + }, + "end": { + "$date": "2021-07-22T16:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f6f46e68-2de6-4f85-a956-383d0fac047a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T16:18:30.000Z" + }, + "end": { + "$date": "2021-07-22T17:16:25.000Z" + }, + "events": [ + { + "uuid": "79f7f1f7-f46b-4cb9-a162-d5071d44c3ac", + "start": { + "$date": "2021-07-22T16:18:30.000Z" + }, + "end": { + "$date": "2021-07-22T17:16:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55e89a29-25d0-4c18-9bd0-9c5c96a0e969", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T17:19:41.000Z" + }, + "end": { + "$date": "2021-07-22T17:34:50.000Z" + }, + "events": [ + { + "uuid": "111c0671-3d7a-4448-9dde-8dbcdbf0e167", + "start": { + "$date": "2021-07-22T17:19:41.000Z" + }, + "end": { + "$date": "2021-07-22T17:34:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58b9d1f3-d70a-4695-a88d-c28f1ae33cce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T17:28:55.000Z" + }, + "end": { + "$date": "2021-07-22T17:56:55.000Z" + }, + "events": [ + { + "uuid": "65499f86-f671-43ae-ab8a-bc5cf2a172d4", + "start": { + "$date": "2021-07-22T17:28:55.000Z" + }, + "end": { + "$date": "2021-07-22T17:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbdd6d43-b084-4932-a9ee-3f5baf7b0874", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T17:44:17.000Z" + }, + "end": { + "$date": "2021-07-22T18:01:26.000Z" + }, + "events": [ + { + "uuid": "7e7c491e-4167-4ee6-a925-cebbfda51799", + "start": { + "$date": "2021-07-22T17:44:17.000Z" + }, + "end": { + "$date": "2021-07-22T18:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3472878-27f1-4944-ac6d-f0200c72145f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-22T18:03:07.000Z" + }, + "end": { + "$date": "2021-07-22T18:35:17.000Z" + }, + "events": [ + { + "uuid": "9c3fe193-80e9-4154-b884-33dac7640748", + "start": { + "$date": "2021-07-22T18:03:07.000Z" + }, + "end": { + "$date": "2021-07-22T18:35:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7fb26cc-f2b2-4fd2-8b0b-000c89d49030", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T18:08:47.000Z" + }, + "end": { + "$date": "2021-07-22T18:33:17.000Z" + }, + "events": [ + { + "uuid": "f9915928-472e-41f8-80a0-40e070276228", + "start": { + "$date": "2021-07-22T18:08:47.000Z" + }, + "end": { + "$date": "2021-07-22T18:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ae1f8660-26c6-44cd-8cbc-3347af0a461f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-22T18:31:06.000Z" + }, + "end": { + "$date": "2021-07-22T19:34:04.000Z" + }, + "events": [ + { + "uuid": "de9e1a86-0652-409c-983d-5f26d5d542c0", + "start": { + "$date": "2021-07-22T18:31:06.000Z" + }, + "end": { + "$date": "2021-07-22T19:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "395c9bde-e3a9-48d9-b2ac-daff6fe01419", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-22T19:21:54.000Z" + }, + "end": { + "$date": "2021-07-22T19:40:30.000Z" + }, + "events": [ + { + "uuid": "d4a9a4f1-f4c4-4d26-beb9-e9097205dc15", + "start": { + "$date": "2021-07-22T19:21:54.000Z" + }, + "end": { + "$date": "2021-07-22T19:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "c2ee9bdb-0cb0-432d-aef6-4020c47843dd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-22T20:26:45.000Z" + }, + "end": { + "$date": "2021-07-22T21:27:55.000Z" + }, + "events": [ + { + "uuid": "e585b999-653c-47a3-b6f8-7e5d7b857fae", + "start": { + "$date": "2021-07-22T20:26:45.000Z" + }, + "end": { + "$date": "2021-07-22T21:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6ff55468-b47b-4657-9c43-16c820e39516", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-22T21:07:41.000Z" + }, + "end": { + "$date": "2021-07-23T00:49:32.000Z" + }, + "events": [ + { + "uuid": "6af09529-226c-492d-9329-1e64b68a545e", + "start": { + "$date": "2021-07-22T21:07:41.000Z" + }, + "end": { + "$date": "2021-07-23T00:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "17ffaf9d-628c-49d5-8341-6d6fde765830", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-22T22:53:35.000Z" + }, + "end": { + "$date": "2021-07-22T23:37:02.000Z" + }, + "events": [ + { + "uuid": "258b8b6a-f9e3-49b3-8d60-71846dd22f35", + "start": { + "$date": "2021-07-22T22:53:35.000Z" + }, + "end": { + "$date": "2021-07-22T23:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8ea513b5-1d0b-479a-81ed-817bfe05f0d2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-22T23:22:21.000Z" + }, + "end": { + "$date": "2021-07-23T00:07:46.000Z" + }, + "events": [ + { + "uuid": "884c1a68-7590-4680-aa84-d01d7fbb144d", + "start": { + "$date": "2021-07-22T23:22:21.000Z" + }, + "end": { + "$date": "2021-07-23T00:07:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "8eb8f559-890b-4349-94c1-7f2784f07a28", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-07-22T23:49:29.000Z" + }, + "end": { + "$date": "2021-07-23T01:42:52.000Z" + }, + "events": [ + { + "uuid": "bed12139-99fa-4192-81a9-d5691dac04e3", + "start": { + "$date": "2021-07-22T23:49:29.000Z" + }, + "end": { + "$date": "2021-07-23T01:42:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f12944ae-8880-47a1-aa4c-094bce7c5dea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-22T23:50:11.000Z" + }, + "end": { + "$date": "2021-07-23T05:38:54.000Z" + }, + "events": [ + { + "uuid": "6a78ac9d-a16f-4b68-982c-ad73c5e5472f", + "start": { + "$date": "2021-07-22T23:50:11.000Z" + }, + "end": { + "$date": "2021-07-23T01:06:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39ba574d-2346-45ac-8a87-14e4a1a508ef", + "start": { + "$date": "2021-07-23T01:06:11.000Z" + }, + "end": { + "$date": "2021-07-23T01:25:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0cfbbcd-3816-40ad-b316-4e646a590316", + "start": { + "$date": "2021-07-23T01:25:11.000Z" + }, + "end": { + "$date": "2021-07-23T04:06:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba86b589-80a2-42d1-9e5b-fab62ef72085", + "start": { + "$date": "2021-07-23T04:06:11.000Z" + }, + "end": { + "$date": "2021-07-23T04:11:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a528cf08-698f-48ae-a20f-9eba9a19f8b5", + "start": { + "$date": "2021-07-23T04:11:11.000Z" + }, + "end": { + "$date": "2021-07-23T05:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d305e04-4b7d-47a7-af53-55287b0f8ba7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T00:20:35.000Z" + }, + "end": { + "$date": "2021-07-23T00:51:56.000Z" + }, + "events": [ + { + "uuid": "ebe9fe41-7cb8-4308-a0f4-5296fd7adad8", + "start": { + "$date": "2021-07-23T00:20:35.000Z" + }, + "end": { + "$date": "2021-07-23T00:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96c49425-0bed-47f4-9622-f1e3676f11d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T00:16:27.000Z" + }, + "end": { + "$date": "2021-07-23T00:52:04.000Z" + }, + "events": [ + { + "uuid": "25a37a61-e4bb-425a-ba0f-e76732aa999f", + "start": { + "$date": "2021-07-23T00:16:27.000Z" + }, + "end": { + "$date": "2021-07-23T00:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c793372b-7593-42e5-a121-987764df1843", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T01:03:01.000Z" + }, + "end": { + "$date": "2021-07-23T01:24:27.000Z" + }, + "events": [ + { + "uuid": "4270c19c-01eb-48ac-8553-82cc754674a2", + "start": { + "$date": "2021-07-23T01:03:01.000Z" + }, + "end": { + "$date": "2021-07-23T01:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "93a510e6-26bc-4e56-8f2c-c691d6845de4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-23T00:58:22.000Z" + }, + "end": { + "$date": "2021-07-23T01:04:48.000Z" + }, + "events": [ + { + "uuid": "fc603895-918f-47a3-ac1d-76c1b6be2375", + "start": { + "$date": "2021-07-23T00:58:22.000Z" + }, + "end": { + "$date": "2021-07-23T01:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "311e8d36-aa5e-4165-8a45-4846a7679b48", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T01:03:02.000Z" + }, + "end": { + "$date": "2021-07-23T01:24:36.000Z" + }, + "events": [ + { + "uuid": "943d3a3e-06e4-4344-a1e1-1d2877e78768", + "start": { + "$date": "2021-07-23T01:03:02.000Z" + }, + "end": { + "$date": "2021-07-23T01:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a7e0b625-e114-40ef-8301-38ebc53e24cc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T01:24:18.000Z" + }, + "end": { + "$date": "2021-07-23T01:41:18.000Z" + }, + "events": [ + { + "uuid": "c8f25b02-47bc-47d0-ae5f-537b2fdd431d", + "start": { + "$date": "2021-07-23T01:24:18.000Z" + }, + "end": { + "$date": "2021-07-23T01:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28aa2730-3a39-4b98-84f1-8655ef52a524", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T01:33:46.000Z" + }, + "end": { + "$date": "2021-07-23T01:33:52.000Z" + }, + "events": [ + { + "uuid": "29ec477f-7e1d-432f-9340-70892ac3e60a", + "start": { + "$date": "2021-07-23T01:33:46.000Z" + }, + "end": { + "$date": "2021-07-23T01:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76d70418-a306-4207-9abd-3c7e94d739b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T01:33:53.000Z" + }, + "end": { + "$date": "2021-07-23T03:48:37.000Z" + }, + "events": [ + { + "uuid": "0d25881b-f3b5-4111-941d-61b91ccb44be", + "start": { + "$date": "2021-07-23T01:33:53.000Z" + }, + "end": { + "$date": "2021-07-23T03:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fcbc749a-ab6b-4285-b01e-ff195d83fb03", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-23T01:38:42.000Z" + }, + "end": { + "$date": "2021-07-23T04:43:16.000Z" + }, + "events": [ + { + "uuid": "4c60739f-89aa-4dc5-8e09-b524061037c7", + "start": { + "$date": "2021-07-23T01:38:42.000Z" + }, + "end": { + "$date": "2021-07-23T04:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e5cfbc01-9158-44d7-bf4d-f7a6f75e806f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-23T01:40:56.000Z" + }, + "end": { + "$date": "2021-07-23T06:09:01.000Z" + }, + "events": [ + { + "uuid": "ffc9218d-2e4e-464f-862c-768c0fb5c479", + "start": { + "$date": "2021-07-23T01:40:56.000Z" + }, + "end": { + "$date": "2021-07-23T06:09:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0d873dd4-785a-46ba-a5eb-c11e16f88550", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-23T01:41:31.000Z" + }, + "end": { + "$date": "2021-07-23T03:36:51.000Z" + }, + "events": [ + { + "uuid": "f30c3f4e-5f3e-4c82-aa46-1e11291cf638", + "start": { + "$date": "2021-07-23T01:41:31.000Z" + }, + "end": { + "$date": "2021-07-23T02:32:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c681eda-c8bc-406d-8338-3aed8311718d", + "start": { + "$date": "2021-07-23T02:32:31.000Z" + }, + "end": { + "$date": "2021-07-23T02:37:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "099b1bd4-a7cd-42fa-a35e-6c420716d51d", + "start": { + "$date": "2021-07-23T02:37:31.000Z" + }, + "end": { + "$date": "2021-07-23T02:47:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "afddb745-0510-4870-9c85-0488faf97318", + "start": { + "$date": "2021-07-23T02:47:31.000Z" + }, + "end": { + "$date": "2021-07-23T03:36:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "292a2e48-4a36-43bf-8001-603616bbecba", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T01:41:34.000Z" + }, + "end": { + "$date": "2021-07-23T01:44:33.000Z" + }, + "events": [ + { + "uuid": "0753e413-e709-414b-b2b0-aadf4df52178", + "start": { + "$date": "2021-07-23T01:41:34.000Z" + }, + "end": { + "$date": "2021-07-23T01:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "048e55e6-0080-4782-a49a-3185ae9b7212", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T01:43:38.000Z" + }, + "end": { + "$date": "2021-07-23T02:34:21.000Z" + }, + "events": [ + { + "uuid": "111c158f-7dfa-45c8-9745-686961834933", + "start": { + "$date": "2021-07-23T01:43:38.000Z" + }, + "end": { + "$date": "2021-07-23T02:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "12e1b977-ffc6-4c3f-93d6-3424eb7dcae1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T01:45:44.000Z" + }, + "end": { + "$date": "2021-07-23T03:49:01.000Z" + }, + "events": [ + { + "uuid": "58c61e3b-59e6-4a62-b8b6-4adb4349a20d", + "start": { + "$date": "2021-07-23T01:45:44.000Z" + }, + "end": { + "$date": "2021-07-23T03:49:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a96fa5f3-3445-4e29-ac87-8ea682b71ea0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-23T03:26:12.000Z" + }, + "end": { + "$date": "2021-07-23T04:09:58.000Z" + }, + "events": [ + { + "uuid": "f4522350-605a-44d3-b6b7-32bafcf64e7c", + "start": { + "$date": "2021-07-23T03:26:12.000Z" + }, + "end": { + "$date": "2021-07-23T04:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5a0ed6b3-7c84-4e1f-b888-6630a0e55cdf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T03:49:11.000Z" + }, + "end": { + "$date": "2021-07-23T03:58:54.000Z" + }, + "events": [ + { + "uuid": "c7bd9103-9800-4548-89b3-20dc0df79ec5", + "start": { + "$date": "2021-07-23T03:49:11.000Z" + }, + "end": { + "$date": "2021-07-23T03:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b1727b1e-e8e6-4a87-bc65-f249eb50eac0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-23T04:02:01.000Z" + }, + "end": { + "$date": "2021-07-23T05:30:23.000Z" + }, + "events": [ + { + "uuid": "9b2dba9c-de11-4249-810f-96388af40bcd", + "start": { + "$date": "2021-07-23T04:02:01.000Z" + }, + "end": { + "$date": "2021-07-23T05:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "26e9eed1-55f7-440f-b57e-3d97a4db5a91", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T04:02:10.000Z" + }, + "end": { + "$date": "2021-07-23T05:32:32.000Z" + }, + "events": [ + { + "uuid": "9421df8b-f22f-4cd5-ab2e-d26763f2db7a", + "start": { + "$date": "2021-07-23T04:02:10.000Z" + }, + "end": { + "$date": "2021-07-23T05:32:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30c6111b-0165-4202-96e4-e044bbf8be08", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-23T04:18:43.000Z" + }, + "end": { + "$date": "2021-07-23T04:58:11.000Z" + }, + "events": [ + { + "uuid": "1ad3e07e-1c94-453a-a98b-5e7b0d47b98c", + "start": { + "$date": "2021-07-23T04:18:43.000Z" + }, + "end": { + "$date": "2021-07-23T04:58:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b1c38bd5-fda7-42e0-bc46-51f5ebae817d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-23T04:26:59.000Z" + }, + "end": { + "$date": "2021-07-23T06:05:39.000Z" + }, + "events": [ + { + "uuid": "432091b3-aa27-4270-9316-b8b55813206a", + "start": { + "$date": "2021-07-23T04:26:59.000Z" + }, + "end": { + "$date": "2021-07-23T06:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afe13965-796f-46eb-9e7f-40393da8f595", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-23T05:18:25.000Z" + }, + "end": { + "$date": "2021-07-23T05:44:51.000Z" + }, + "events": [ + { + "uuid": "1ce2a544-189f-4d2a-9df3-2e4d9da21b66", + "start": { + "$date": "2021-07-23T05:18:25.000Z" + }, + "end": { + "$date": "2021-07-23T05:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3350b4ac-af40-4ac3-9544-f8dcfe7ebe13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T05:22:06.000Z" + }, + "end": { + "$date": "2021-07-23T05:48:42.000Z" + }, + "events": [ + { + "uuid": "8ab05337-9c73-4f78-ae6a-89deed9a1de0", + "start": { + "$date": "2021-07-23T05:22:06.000Z" + }, + "end": { + "$date": "2021-07-23T05:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "89bf3b37-53ae-4656-8dd8-9166b923d70d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T07:10:53.000Z" + }, + "end": { + "$date": "2021-07-23T07:13:23.000Z" + }, + "events": [ + { + "uuid": "0264c37f-1908-4630-a29f-4a9e2d8927e5", + "start": { + "$date": "2021-07-23T07:10:53.000Z" + }, + "end": { + "$date": "2021-07-23T07:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ab58e44-5027-4f72-bd9c-c5a4c2e7677c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T06:01:28.000Z" + }, + "end": { + "$date": "2021-07-23T06:17:20.000Z" + }, + "events": [ + { + "uuid": "ab407421-1665-451e-8bfa-4b455dd2e407", + "start": { + "$date": "2021-07-23T06:01:28.000Z" + }, + "end": { + "$date": "2021-07-23T06:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "991d22e0-a6d1-4315-9dcf-913dca5e4038", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-23T06:01:17.000Z" + }, + "end": { + "$date": "2021-07-23T06:17:03.000Z" + }, + "events": [ + { + "uuid": "67f4c3d8-8fd6-4cae-be0b-029a85bbd201", + "start": { + "$date": "2021-07-23T06:01:17.000Z" + }, + "end": { + "$date": "2021-07-23T06:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "61b88e86-6362-4c38-b920-89eac1529216", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-23T06:11:14.000Z" + }, + "end": { + "$date": "2021-07-23T07:32:37.000Z" + }, + "events": [ + { + "uuid": "fdcca419-1716-4852-b327-03acdac91067", + "start": { + "$date": "2021-07-23T06:11:14.000Z" + }, + "end": { + "$date": "2021-07-23T07:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0611a1ec-43ca-4e3a-9ca0-330994e3d315", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T06:35:33.000Z" + }, + "end": { + "$date": "2021-07-23T06:56:50.000Z" + }, + "events": [ + { + "uuid": "c031e51a-aa1b-4b4d-92ab-965f05291120", + "start": { + "$date": "2021-07-23T06:35:33.000Z" + }, + "end": { + "$date": "2021-07-23T06:56:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c27d6cd4-70a3-4913-bdcd-cc1a11688c36", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-23T06:51:21.000Z" + }, + "end": { + "$date": "2021-07-23T06:58:02.000Z" + }, + "events": [ + { + "uuid": "98163137-f018-432e-86a8-9bcf36abb303", + "start": { + "$date": "2021-07-23T06:51:21.000Z" + }, + "end": { + "$date": "2021-07-23T06:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d8f53959-6ebc-45a6-83e9-4d3118e1705f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-23T14:24:43.000Z" + }, + "end": { + "$date": "2021-07-23T15:48:28.000Z" + }, + "events": [ + { + "uuid": "6633e19d-24d3-4f70-9ae3-4835ea40c432", + "start": { + "$date": "2021-07-23T14:24:43.000Z" + }, + "end": { + "$date": "2021-07-23T15:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "2aea2d6b-1ff3-4b25-a674-af539a7493cc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-23T14:45:06.000Z" + }, + "end": { + "$date": "2021-07-23T15:55:24.000Z" + }, + "events": [ + { + "uuid": "049b422d-e004-44bc-88db-74406053cec4", + "start": { + "$date": "2021-07-23T14:45:06.000Z" + }, + "end": { + "$date": "2021-07-23T15:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1562bead-4ad0-4f07-9dc5-6a888cb70250", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-23T15:54:58.000Z" + }, + "end": { + "$date": "2021-07-23T16:21:40.000Z" + }, + "events": [ + { + "uuid": "d7f23ba9-55b8-41f4-9969-042e87078c86", + "start": { + "$date": "2021-07-23T15:54:58.000Z" + }, + "end": { + "$date": "2021-07-23T16:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76a4cf06-91ec-495f-962e-19a9638352b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T16:11:58.000Z" + }, + "end": { + "$date": "2021-07-23T16:28:28.000Z" + }, + "events": [ + { + "uuid": "cf46f8c0-be0a-47c7-983b-99374466da2e", + "start": { + "$date": "2021-07-23T16:11:58.000Z" + }, + "end": { + "$date": "2021-07-23T16:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89236ced-9289-488c-8e81-7ce8eec53f80", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T16:18:59.000Z" + }, + "end": { + "$date": "2021-07-23T16:43:25.000Z" + }, + "events": [ + { + "uuid": "2a0a09a6-6748-4906-9671-c987e8a3b78e", + "start": { + "$date": "2021-07-23T16:18:59.000Z" + }, + "end": { + "$date": "2021-07-23T16:43:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a5fb624-85ff-40e3-aa77-bad8d5b1c233", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T17:08:19.000Z" + }, + "end": { + "$date": "2021-07-23T17:37:00.000Z" + }, + "events": [ + { + "uuid": "0873fbd9-215a-48e6-8f67-26c7f260865f", + "start": { + "$date": "2021-07-23T17:08:19.000Z" + }, + "end": { + "$date": "2021-07-23T17:28:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea897db3-7dcd-47c1-80e6-b36a6e9f91f8", + "start": { + "$date": "2021-07-23T17:28:19.000Z" + }, + "end": { + "$date": "2021-07-23T17:41:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cfc2058c-3cef-4dd4-9e47-e81f903a47fa", + "start": { + "$date": "2021-07-23T17:41:19.000Z" + }, + "end": { + "$date": "2021-07-23T17:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dfac1cb-58e2-4355-a89a-7e580b2982b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T16:51:25.000Z" + }, + "end": { + "$date": "2021-07-23T17:32:50.000Z" + }, + "events": [ + { + "uuid": "154d263c-42d8-4f63-b4a5-0aa61d4c2b1d", + "start": { + "$date": "2021-07-23T16:51:25.000Z" + }, + "end": { + "$date": "2021-07-23T17:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "93bfa1d0-4ca5-4af7-adf6-1ceeaf3cebc5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-23T17:00:40.000Z" + }, + "end": { + "$date": "2021-07-23T17:42:22.000Z" + }, + "events": [ + { + "uuid": "9cb88fd6-c089-4e33-b41f-d3c6fdc38004", + "start": { + "$date": "2021-07-23T17:00:40.000Z" + }, + "end": { + "$date": "2021-07-23T17:11:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "157c5f6d-c072-4f8e-aeaa-a88f55a85204", + "start": { + "$date": "2021-07-23T17:11:40.000Z" + }, + "end": { + "$date": "2021-07-23T17:15:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d0f528e-196d-4dca-a61f-0d4db40d1374", + "start": { + "$date": "2021-07-23T17:15:40.000Z" + }, + "end": { + "$date": "2021-07-23T17:26:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f78f71f-57ce-4147-be29-484e4f77456d", + "start": { + "$date": "2021-07-23T17:26:40.000Z" + }, + "end": { + "$date": "2021-07-23T17:42:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a1e69230-3918-4215-a310-06f9add49d79", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-23T17:20:33.000Z" + }, + "end": { + "$date": "2021-07-23T17:48:37.000Z" + }, + "events": [ + { + "uuid": "5202690e-b8de-4219-8928-e543609ea7a1", + "start": { + "$date": "2021-07-23T17:20:33.000Z" + }, + "end": { + "$date": "2021-07-23T17:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48fb0725-b6c4-4efc-bb3b-5809840cb147", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-23T17:42:13.000Z" + }, + "end": { + "$date": "2021-07-23T18:05:46.000Z" + }, + "events": [ + { + "uuid": "667e37f1-256f-4903-a006-36cdb7fd914f", + "start": { + "$date": "2021-07-23T17:42:13.000Z" + }, + "end": { + "$date": "2021-07-23T18:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "130c849d-3970-4b54-8c90-a32e9e851b56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T17:42:06.000Z" + }, + "end": { + "$date": "2021-07-23T18:05:36.000Z" + }, + "events": [ + { + "uuid": "77b3a3cc-be8c-415f-ae9a-5b6afa32120a", + "start": { + "$date": "2021-07-23T17:42:06.000Z" + }, + "end": { + "$date": "2021-07-23T18:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3c037d73-69e1-4449-ab17-36a4c7ff350e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-23T17:20:33.000Z" + }, + "end": { + "$date": "2021-07-23T18:00:38.000Z" + }, + "events": [ + { + "uuid": "f55b54e7-3fcb-44d1-8077-ed8593adc730", + "start": { + "$date": "2021-07-23T17:20:33.000Z" + }, + "end": { + "$date": "2021-07-23T18:00:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f43e0415-aa67-4ac5-92a7-7a367c51a87e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T18:41:35.000Z" + }, + "end": { + "$date": "2021-07-23T18:48:25.000Z" + }, + "events": [ + { + "uuid": "d9d838da-aadd-42ba-aa71-93dcbd57c345", + "start": { + "$date": "2021-07-23T18:41:35.000Z" + }, + "end": { + "$date": "2021-07-23T18:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "d6b5029c-3e19-4db6-ade7-bd85bf356b92", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-23T20:43:49.000Z" + }, + "end": { + "$date": "2021-07-23T20:44:33.000Z" + }, + "events": [ + { + "uuid": "ba4b5183-9b96-4da5-9443-ed73f6044bed", + "start": { + "$date": "2021-07-23T20:43:49.000Z" + }, + "end": { + "$date": "2021-07-23T20:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2c02a29e-e33b-48f9-a4d9-e8bd7356c945", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-23T19:13:31.000Z" + }, + "end": { + "$date": "2021-07-23T19:38:13.000Z" + }, + "events": [ + { + "uuid": "e4ce2109-9a95-47e1-adfe-1c0ffbaab482", + "start": { + "$date": "2021-07-23T19:13:31.000Z" + }, + "end": { + "$date": "2021-07-23T19:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "80704e73-a0ed-4cdc-981c-ca7c61631c18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-23T19:22:42.000Z" + }, + "end": { + "$date": "2021-07-23T19:53:13.000Z" + }, + "events": [ + { + "uuid": "ff085ab0-a4ed-4108-bfb1-9e90b6f1669f", + "start": { + "$date": "2021-07-23T19:22:42.000Z" + }, + "end": { + "$date": "2021-07-23T19:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "0b1c953c-a682-40e9-8c1a-05b637b7b35c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-23T19:33:41.000Z" + }, + "end": { + "$date": "2021-07-23T19:43:27.000Z" + }, + "events": [ + { + "uuid": "78efbff3-6e85-4362-8144-957c73663fab", + "start": { + "$date": "2021-07-23T19:33:41.000Z" + }, + "end": { + "$date": "2021-07-23T19:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b8767964-b0bc-4fb0-a4f1-6c9ffd59e945", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-23T20:06:56.000Z" + }, + "end": { + "$date": "2021-07-23T20:56:07.000Z" + }, + "events": [ + { + "uuid": "c2fb138e-ceb4-437e-aa2f-c3aa86f11cda", + "start": { + "$date": "2021-07-23T20:06:56.000Z" + }, + "end": { + "$date": "2021-07-23T20:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "c8daae5d-f276-40e1-b747-64a5efc37c48", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-23T20:08:55.000Z" + }, + "end": { + "$date": "2021-07-23T20:54:46.000Z" + }, + "events": [ + { + "uuid": "2444a09b-0ce4-4cae-b327-2187eeead60f", + "start": { + "$date": "2021-07-23T20:08:55.000Z" + }, + "end": { + "$date": "2021-07-23T20:54:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "eec9b523-bedb-40bf-8e4a-f50eacfcff38", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-23T22:19:47.000Z" + }, + "end": { + "$date": "2021-07-23T23:18:25.000Z" + }, + "events": [ + { + "uuid": "4e041a9f-4f88-43b3-a673-a9f022b21d9c", + "start": { + "$date": "2021-07-23T22:19:47.000Z" + }, + "end": { + "$date": "2021-07-23T23:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a12161da-1be7-4071-a86a-ce93d385c211", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-23T22:29:43.000Z" + }, + "end": { + "$date": "2021-07-24T01:59:37.000Z" + }, + "events": [ + { + "uuid": "1f90e15d-300f-4e49-89e5-57b914d3f11f", + "start": { + "$date": "2021-07-23T22:29:43.000Z" + }, + "end": { + "$date": "2021-07-24T01:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "7f2084f7-3be3-4c80-90f3-c58a6e86f26d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-24T07:36:11.000Z" + }, + "end": { + "$date": "2021-07-24T07:36:15.000Z" + }, + "events": [ + { + "uuid": "e7551aad-964c-4acc-856d-fe196f4a2e62", + "start": { + "$date": "2021-07-24T07:36:11.000Z" + }, + "end": { + "$date": "2021-07-24T07:36:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "98e9c20f-db0d-4790-8646-6ecd30f3b82e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T00:15:43.000Z" + }, + "end": { + "$date": "2021-07-24T00:18:44.000Z" + }, + "events": [ + { + "uuid": "28e3495c-f769-4418-846a-0dfffc1d0156", + "start": { + "$date": "2021-07-24T00:15:43.000Z" + }, + "end": { + "$date": "2021-07-24T00:18:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "0cf4ae46-0849-48b6-b989-868f9025a0ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T00:20:53.000Z" + }, + "end": { + "$date": "2021-07-24T00:30:40.000Z" + }, + "events": [ + { + "uuid": "2d141f6a-e596-4eae-9b1c-0078df494dc0", + "start": { + "$date": "2021-07-24T00:20:53.000Z" + }, + "end": { + "$date": "2021-07-24T00:30:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "ecf7a6ec-14e9-4106-81b1-6abfafc9482f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T00:30:45.000Z" + }, + "end": { + "$date": "2021-07-24T00:32:20.000Z" + }, + "events": [ + { + "uuid": "cb994280-113e-471f-bff0-c160a5ae150e", + "start": { + "$date": "2021-07-24T00:30:45.000Z" + }, + "end": { + "$date": "2021-07-24T00:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "1eeb1229-ba78-497c-b1e0-57dba9f8c931", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T00:32:30.000Z" + }, + "end": { + "$date": "2021-07-24T01:40:10.000Z" + }, + "events": [ + { + "uuid": "0b8cbe44-f49c-45c7-ac92-8a9bafbad699", + "start": { + "$date": "2021-07-24T00:32:30.000Z" + }, + "end": { + "$date": "2021-07-24T01:40:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fd37914f-6002-488a-ab6d-5996f4401b52", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-24T01:18:02.000Z" + }, + "end": { + "$date": "2021-07-24T05:49:34.000Z" + }, + "events": [ + { + "uuid": "97987e0c-a074-4878-8fcd-71773b641ac0", + "start": { + "$date": "2021-07-24T01:18:02.000Z" + }, + "end": { + "$date": "2021-07-24T01:30:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b56625b3-ffbd-4fa3-ab23-0e3687176ed6", + "start": { + "$date": "2021-07-24T01:30:02.000Z" + }, + "end": { + "$date": "2021-07-24T01:48:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99317d9c-f737-44da-9df0-fd16a9115762", + "start": { + "$date": "2021-07-24T01:48:02.000Z" + }, + "end": { + "$date": "2021-07-24T05:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b5dcc42-e95a-40a6-bf2a-e1ff08e28ade", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T01:28:41.000Z" + }, + "end": { + "$date": "2021-07-24T01:53:43.000Z" + }, + "events": [ + { + "uuid": "451e08ba-6c72-4a50-9a7c-5f6ec3080241", + "start": { + "$date": "2021-07-24T01:28:41.000Z" + }, + "end": { + "$date": "2021-07-24T01:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", + "uuid": "3fa41bda-2fbc-45f8-8491-a8311141d6ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T01:41:44.000Z" + }, + "end": { + "$date": "2021-07-24T01:45:45.000Z" + }, + "events": [ + { + "uuid": "73be7420-cc2e-4a50-8390-373cd9dd145b", + "start": { + "$date": "2021-07-24T01:41:44.000Z" + }, + "end": { + "$date": "2021-07-24T01:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a1998ca3-d9dc-46ae-9452-5ec4737904b4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T01:52:51.000Z" + }, + "end": { + "$date": "2021-07-24T02:51:36.000Z" + }, + "events": [ + { + "uuid": "89ba1d49-638e-4633-be5a-e2934da43d48", + "start": { + "$date": "2021-07-24T01:52:51.000Z" + }, + "end": { + "$date": "2021-07-24T02:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "c5f28bce-62f4-4a69-aa64-ffc2a35435fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T01:54:10.000Z" + }, + "end": { + "$date": "2021-07-24T02:53:35.000Z" + }, + "events": [ + { + "uuid": "2679897a-a7f0-46a8-b596-9f291345049c", + "start": { + "$date": "2021-07-24T01:54:10.000Z" + }, + "end": { + "$date": "2021-07-24T02:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57d0bebe-ec88-4aa9-9c21-2ff1c4904674", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T01:58:14.000Z" + }, + "end": { + "$date": "2021-07-24T02:29:13.000Z" + }, + "events": [ + { + "uuid": "a640dba5-c277-406c-90f4-2e6b40f61135", + "start": { + "$date": "2021-07-24T01:58:14.000Z" + }, + "end": { + "$date": "2021-07-24T02:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "932a388d-1541-48c6-a923-0d94bbdb82ae", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-24T02:02:25.000Z" + }, + "end": { + "$date": "2021-07-24T02:49:56.000Z" + }, + "events": [ + { + "uuid": "c3d6ae9a-6a77-48cd-9c28-8b4227bfc143", + "start": { + "$date": "2021-07-24T02:02:25.000Z" + }, + "end": { + "$date": "2021-07-24T02:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "b9a3d62f-55a3-40a9-97e3-e8ed1b7d28d1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-24T02:22:53.000Z" + }, + "end": { + "$date": "2021-07-24T02:37:09.000Z" + }, + "events": [ + { + "uuid": "36a310da-3faa-4744-9f72-aedf9a8f46aa", + "start": { + "$date": "2021-07-24T02:22:53.000Z" + }, + "end": { + "$date": "2021-07-24T02:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", + "uuid": "0b1c2e7d-a5cc-4cc0-a31e-44d24e5e292f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-24T02:53:47.000Z" + }, + "end": { + "$date": "2021-07-24T03:00:02.000Z" + }, + "events": [ + { + "uuid": "ce0ce397-9b6e-46a9-8618-55dc72eeec9f", + "start": { + "$date": "2021-07-24T02:53:47.000Z" + }, + "end": { + "$date": "2021-07-24T03:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "156f6717-956f-44c5-aa53-5958509834fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T02:56:44.000Z" + }, + "end": { + "$date": "2021-07-24T02:57:05.000Z" + }, + "events": [ + { + "uuid": "253864d7-5460-4233-a55c-f0217532f900", + "start": { + "$date": "2021-07-24T02:56:44.000Z" + }, + "end": { + "$date": "2021-07-24T02:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9a847a7c-8699-4dcd-bb48-9419626fa555", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-24T03:02:03.000Z" + }, + "end": { + "$date": "2021-07-24T03:20:24.000Z" + }, + "events": [ + { + "uuid": "a50ef8f6-77d1-4635-bfb0-614b3f408c83", + "start": { + "$date": "2021-07-24T03:02:03.000Z" + }, + "end": { + "$date": "2021-07-24T03:20:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "44301f6b-e8e7-4b01-ac04-4e4dabcb4faf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T03:02:15.000Z" + }, + "end": { + "$date": "2021-07-24T03:05:14.000Z" + }, + "events": [ + { + "uuid": "f56cdf7e-bc2a-4112-ba82-4916c78011d3", + "start": { + "$date": "2021-07-24T03:02:15.000Z" + }, + "end": { + "$date": "2021-07-24T03:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "5fc82e30-6c12-442e-a56e-4589923c57a8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T03:02:15.000Z" + }, + "end": { + "$date": "2021-07-24T03:07:13.000Z" + }, + "events": [ + { + "uuid": "4deb9d96-e939-4e74-a6d6-4c6dd212c4e5", + "start": { + "$date": "2021-07-24T03:02:15.000Z" + }, + "end": { + "$date": "2021-07-24T03:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "c03185c8-00bc-4620-8e77-2293236e5835", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T03:08:00.000Z" + }, + "end": { + "$date": "2021-07-24T03:12:21.000Z" + }, + "events": [ + { + "uuid": "8a0595b4-5d05-48e1-91c9-0b47794b5b86", + "start": { + "$date": "2021-07-24T03:08:00.000Z" + }, + "end": { + "$date": "2021-07-24T03:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6b91186-04ef-49e6-ab2e-6a8a269aac9d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-24T03:17:21.000Z" + }, + "end": { + "$date": "2021-07-24T03:51:06.000Z" + }, + "events": [ + { + "uuid": "5eae8548-8ef9-4d4d-8fe7-fed570859c8b", + "start": { + "$date": "2021-07-24T03:17:21.000Z" + }, + "end": { + "$date": "2021-07-24T03:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "2f699650-bd1c-4a5b-ba3d-c5364506fd45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T03:13:29.000Z" + }, + "end": { + "$date": "2021-07-24T03:15:17.000Z" + }, + "events": [ + { + "uuid": "83a2617b-08a6-4055-8a1b-9c3e5990f449", + "start": { + "$date": "2021-07-24T03:13:29.000Z" + }, + "end": { + "$date": "2021-07-24T03:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "1e8fd3d1-896f-452d-a9f6-902af4e694e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T02:54:54.000Z" + }, + "end": { + "$date": "2021-07-24T03:49:13.000Z" + }, + "events": [ + { + "uuid": "5a71b671-ad03-4ca9-8e20-7b619ecc440b", + "start": { + "$date": "2021-07-24T02:54:54.000Z" + }, + "end": { + "$date": "2021-07-24T03:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "117b5cbb-1361-4990-ae04-8e0edb5c8f31", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-24T03:29:12.000Z" + }, + "end": { + "$date": "2021-07-24T06:08:41.000Z" + }, + "events": [ + { + "uuid": "2574b957-7000-46db-9bb6-4f87ce1317ec", + "start": { + "$date": "2021-07-24T03:29:12.000Z" + }, + "end": { + "$date": "2021-07-24T06:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "622b7739-192b-46a2-b65b-f7f75e364316", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-24T03:51:00.000Z" + }, + "end": { + "$date": "2021-07-24T03:57:40.000Z" + }, + "events": [ + { + "uuid": "a9028bf8-4e21-4db8-96be-5ef7df301662", + "start": { + "$date": "2021-07-24T03:51:00.000Z" + }, + "end": { + "$date": "2021-07-24T03:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49fc8582-8580-49ad-a77f-ec9fa86a2adc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-24T04:03:42.000Z" + }, + "end": { + "$date": "2021-07-24T04:42:14.000Z" + }, + "events": [ + { + "uuid": "9e4b2643-0712-4605-8dc8-5646f4960c68", + "start": { + "$date": "2021-07-24T04:03:42.000Z" + }, + "end": { + "$date": "2021-07-24T04:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d3c6234d-601e-4a70-a8bd-6f65d87b089b", + "uuid": "a7adf7ce-3ef2-4292-a99a-23ef0b80aa4e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T03:54:09.000Z" + }, + "end": { + "$date": "2021-07-24T04:16:55.000Z" + }, + "events": [ + { + "uuid": "b15d8b27-8f70-4da4-9446-708e25acdaec", + "start": { + "$date": "2021-07-24T03:54:09.000Z" + }, + "end": { + "$date": "2021-07-24T04:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6188a09a-98b9-4b37-9608-f1e3daee5b58", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T04:23:09.000Z" + }, + "end": { + "$date": "2021-07-24T05:56:58.000Z" + }, + "events": [ + { + "uuid": "2d044bce-4987-4738-bbbc-6ea56160c412", + "start": { + "$date": "2021-07-24T04:23:09.000Z" + }, + "end": { + "$date": "2021-07-24T05:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "000cf836-c2a2-4651-b73c-33df15951c4e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-24T05:58:38.000Z" + }, + "end": { + "$date": "2021-07-24T06:26:15.000Z" + }, + "events": [ + { + "uuid": "d050f851-f335-4019-8220-2735fb1713c3", + "start": { + "$date": "2021-07-24T05:58:38.000Z" + }, + "end": { + "$date": "2021-07-24T06:23:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c01e7ed-03ce-418d-b773-f651a3fed308", + "start": { + "$date": "2021-07-24T06:23:38.000Z" + }, + "end": { + "$date": "2021-07-24T06:36:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32ffcca2-ef34-4d65-9563-f4031139b56d", + "start": { + "$date": "2021-07-24T06:36:38.000Z" + }, + "end": { + "$date": "2021-07-24T07:02:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "17f6e050-1a56-4f34-bfdf-f452e9264145", + "start": { + "$date": "2021-07-24T07:02:38.000Z" + }, + "end": { + "$date": "2021-07-24T07:08:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e76c418-9e82-492f-b54d-9a6739214a67", + "start": { + "$date": "2021-07-24T07:08:38.000Z" + }, + "end": { + "$date": "2021-07-24T06:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8288cb84-6ab2-47fb-ae2f-1eaeb168f86d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T05:15:39.000Z" + }, + "end": { + "$date": "2021-07-24T05:17:12.000Z" + }, + "events": [ + { + "uuid": "7b2b8226-9e70-450a-9aee-3462b06e86db", + "start": { + "$date": "2021-07-24T05:15:39.000Z" + }, + "end": { + "$date": "2021-07-24T05:17:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1239dd23-3834-46c5-bb56-06512c05a2c1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T05:17:34.000Z" + }, + "end": { + "$date": "2021-07-24T05:23:17.000Z" + }, + "events": [ + { + "uuid": "6d524f38-9243-4e1c-9a12-f497624e0579", + "start": { + "$date": "2021-07-24T05:17:34.000Z" + }, + "end": { + "$date": "2021-07-24T05:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a27b9ef-84bf-47b6-989a-1413138d43db", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-24T05:20:02.000Z" + }, + "end": { + "$date": "2021-07-24T07:50:28.000Z" + }, + "events": [ + { + "uuid": "2cbd18a2-4b51-4df2-9c44-0d986ff4d84e", + "start": { + "$date": "2021-07-24T05:20:02.000Z" + }, + "end": { + "$date": "2021-07-24T07:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68cf145a-0d42-4e83-8ab3-279acb186580", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T05:23:45.000Z" + }, + "end": { + "$date": "2021-07-24T06:30:52.000Z" + }, + "events": [ + { + "uuid": "c50581e0-6c54-4783-9a07-9d03db486fb0", + "start": { + "$date": "2021-07-24T05:23:45.000Z" + }, + "end": { + "$date": "2021-07-24T06:30:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3386e3dc-6d48-4580-bb18-f5c382b3705b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-24T05:47:57.000Z" + }, + "end": { + "$date": "2021-07-24T06:29:53.000Z" + }, + "events": [ + { + "uuid": "4b9b53e8-90a4-432a-8162-22b2bad707b7", + "start": { + "$date": "2021-07-24T05:47:57.000Z" + }, + "end": { + "$date": "2021-07-24T06:29:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f44b6aa-ea35-484e-afc0-9fb14b4844f3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-24T05:49:44.000Z" + }, + "end": { + "$date": "2021-07-24T11:42:57.000Z" + }, + "events": [ + { + "uuid": "0c3e1571-f93e-4421-9aa4-ed903ce9c558", + "start": { + "$date": "2021-07-24T05:49:44.000Z" + }, + "end": { + "$date": "2021-07-24T06:42:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef6bb715-7436-49f9-89c4-13678e5859cd", + "start": { + "$date": "2021-07-24T06:42:44.000Z" + }, + "end": { + "$date": "2021-07-24T06:47:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7cb188f3-fdbb-4827-abb1-131b670b740c", + "start": { + "$date": "2021-07-24T06:47:44.000Z" + }, + "end": { + "$date": "2021-07-24T06:57:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60a17378-3698-4383-ac24-f9390951771f", + "start": { + "$date": "2021-07-24T06:57:44.000Z" + }, + "end": { + "$date": "2021-07-24T06:59:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61cbc23f-275b-4b4b-90b0-eeb3affcaf0d", + "start": { + "$date": "2021-07-24T06:59:44.000Z" + }, + "end": { + "$date": "2021-07-24T09:43:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "faf5fea0-e9af-4845-bc61-7b3289d520cb", + "start": { + "$date": "2021-07-24T09:43:44.000Z" + }, + "end": { + "$date": "2021-07-24T09:47:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1e70a98-3857-452a-a483-54d346c46214", + "start": { + "$date": "2021-07-24T09:47:44.000Z" + }, + "end": { + "$date": "2021-07-24T11:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30c091e1-902e-4928-a997-f7bb29e28aed", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-24T06:36:14.000Z" + }, + "end": { + "$date": "2021-07-24T07:05:51.000Z" + }, + "events": [ + { + "uuid": "93a9ea1d-8e07-4894-8dca-e394a47ce8e5", + "start": { + "$date": "2021-07-24T06:36:14.000Z" + }, + "end": { + "$date": "2021-07-24T07:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c61e52b9-27d7-4cc3-916b-aa787d190b96", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T06:32:02.000Z" + }, + "end": { + "$date": "2021-07-24T07:50:32.000Z" + }, + "events": [ + { + "uuid": "c96ba8ed-d963-4b16-b889-dad97143b6ef", + "start": { + "$date": "2021-07-24T06:32:02.000Z" + }, + "end": { + "$date": "2021-07-24T07:50:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a56f824-3faa-4a93-aa07-bfa2a105a447", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-07-24T07:21:56.000Z" + }, + "end": { + "$date": "2021-07-24T08:02:20.000Z" + }, + "events": [ + { + "uuid": "2362092c-79aa-4f25-9573-d9f6a16d3b07", + "start": { + "$date": "2021-07-24T07:21:56.000Z" + }, + "end": { + "$date": "2021-07-24T08:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f6c767a7-2930-43d3-afc9-b46f56984769", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T07:52:14.000Z" + }, + "end": { + "$date": "2021-07-24T08:00:10.000Z" + }, + "events": [ + { + "uuid": "8000b8fb-5aa8-4bc1-ab27-5a83d4bc742b", + "start": { + "$date": "2021-07-24T07:52:14.000Z" + }, + "end": { + "$date": "2021-07-24T08:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "9f2c90b4-ad43-46c1-bf2f-8045e10564ef", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-24T14:27:01.000Z" + }, + "end": { + "$date": "2021-07-24T14:43:52.000Z" + }, + "events": [ + { + "uuid": "23c9eeb2-068c-4b24-a9ea-c61f1b31a715", + "start": { + "$date": "2021-07-24T14:27:01.000Z" + }, + "end": { + "$date": "2021-07-24T14:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "58da1ba9-82d5-42d6-8a82-3fdac8580a9d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T14:43:59.000Z" + }, + "end": { + "$date": "2021-07-24T17:24:11.000Z" + }, + "events": [ + { + "uuid": "2fd5760a-3f27-47ce-875d-09d5b313d07f", + "start": { + "$date": "2021-07-24T14:43:59.000Z" + }, + "end": { + "$date": "2021-07-24T17:14:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f51b72e-ecb8-4faa-9a56-fb2ed757c712", + "start": { + "$date": "2021-07-24T17:14:59.000Z" + }, + "end": { + "$date": "2021-07-24T17:19:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4beadf12-95f5-4ec8-b41d-059fc8857f8b", + "start": { + "$date": "2021-07-24T17:19:59.000Z" + }, + "end": { + "$date": "2021-07-24T17:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f39e4a4-bd35-484c-b576-03228c32e599", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T15:14:27.000Z" + }, + "end": { + "$date": "2021-07-24T15:17:23.000Z" + }, + "events": [ + { + "uuid": "7c4a7132-3328-41da-86ba-08a2f24b1a2b", + "start": { + "$date": "2021-07-24T15:14:27.000Z" + }, + "end": { + "$date": "2021-07-24T15:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "48028106-dbbb-4ffe-8dea-a3d52ba8ec80", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T15:22:29.000Z" + }, + "end": { + "$date": "2021-07-24T16:30:23.000Z" + }, + "events": [ + { + "uuid": "e6f7a441-c9ee-4f45-aaba-605551139b5c", + "start": { + "$date": "2021-07-24T15:22:29.000Z" + }, + "end": { + "$date": "2021-07-24T16:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f07dea7b-562c-4599-8950-b81dfb8c1565", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T16:34:53.000Z" + }, + "end": { + "$date": "2021-07-24T16:52:09.000Z" + }, + "events": [ + { + "uuid": "e788a5a0-2669-4f33-bc98-8b4c609af1aa", + "start": { + "$date": "2021-07-24T16:34:53.000Z" + }, + "end": { + "$date": "2021-07-24T16:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82742a39-2626-41b9-9f2d-d4fb0a2ea283", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T16:52:28.000Z" + }, + "end": { + "$date": "2021-07-24T17:06:19.000Z" + }, + "events": [ + { + "uuid": "41442b1a-10d8-422a-8dbe-b3b459d8e1d3", + "start": { + "$date": "2021-07-24T16:52:28.000Z" + }, + "end": { + "$date": "2021-07-24T17:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "3b7662ae-b369-428a-b7f3-64b591da7271", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-24T17:06:23.000Z" + }, + "end": { + "$date": "2021-07-24T17:35:36.000Z" + }, + "events": [ + { + "uuid": "b2cdadc5-54c0-4bdb-b776-7b5b2f1efe41", + "start": { + "$date": "2021-07-24T17:06:23.000Z" + }, + "end": { + "$date": "2021-07-24T17:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "0a002c00-eaa2-4adf-b243-84dbf407ea53", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T17:25:36.000Z" + }, + "end": { + "$date": "2021-07-24T18:16:38.000Z" + }, + "events": [ + { + "uuid": "0059a50e-b424-42f9-aff4-858308c7bf6b", + "start": { + "$date": "2021-07-24T17:25:36.000Z" + }, + "end": { + "$date": "2021-07-24T18:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "c32810bc-ba95-4803-b398-e022b73e93f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T18:28:25.000Z" + }, + "end": { + "$date": "2021-07-24T18:30:15.000Z" + }, + "events": [ + { + "uuid": "1ebf80bd-2175-42b4-a0be-f456cd52fc29", + "start": { + "$date": "2021-07-24T18:28:25.000Z" + }, + "end": { + "$date": "2021-07-24T18:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f27e2e76-bbe2-4cf9-9ff8-47540f3676ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-24T18:30:38.000Z" + }, + "end": { + "$date": "2021-07-24T21:10:14.000Z" + }, + "events": [ + { + "uuid": "7fee446c-962d-4d46-ba26-200168337d57", + "start": { + "$date": "2021-07-24T18:30:38.000Z" + }, + "end": { + "$date": "2021-07-24T21:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a8072bf-8d3e-4871-8035-ad54553e5e68", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T18:35:20.000Z" + }, + "end": { + "$date": "2021-07-24T19:00:37.000Z" + }, + "events": [ + { + "uuid": "41d1c458-a3cd-4671-a401-f10f3b66b39d", + "start": { + "$date": "2021-07-24T18:35:20.000Z" + }, + "end": { + "$date": "2021-07-24T19:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cc53a03d-7d53-43b8-a424-85983ef75b9f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-24T20:11:46.000Z" + }, + "end": { + "$date": "2021-07-24T20:59:46.000Z" + }, + "events": [ + { + "uuid": "8451b649-dfb8-4935-8d35-9a18e6e3a9ee", + "start": { + "$date": "2021-07-24T20:11:46.000Z" + }, + "end": { + "$date": "2021-07-24T20:27:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da83b23c-6374-40cf-bab2-7d8594b47427", + "start": { + "$date": "2021-07-24T20:27:46.000Z" + }, + "end": { + "$date": "2021-07-24T20:28:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6fe3a9ac-2bcd-4dde-9c3e-1a6d19e557cf", + "start": { + "$date": "2021-07-24T20:28:46.000Z" + }, + "end": { + "$date": "2021-07-24T20:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bc041257-304e-4956-8af9-ab51229d1234", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-24T20:29:43.000Z" + }, + "end": { + "$date": "2021-07-24T20:33:58.000Z" + }, + "events": [ + { + "uuid": "cb034629-39c6-42b5-b410-c2476c57e6c1", + "start": { + "$date": "2021-07-24T20:29:43.000Z" + }, + "end": { + "$date": "2021-07-24T20:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1dfda1ab-4f0e-4d1b-8aab-c404f4d7f90e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T21:06:31.000Z" + }, + "end": { + "$date": "2021-07-24T21:08:22.000Z" + }, + "events": [ + { + "uuid": "dd68f6e6-2ae4-4d26-88b6-acbc343b3b7f", + "start": { + "$date": "2021-07-24T21:06:31.000Z" + }, + "end": { + "$date": "2021-07-24T21:08:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab6a84aa-dfd4-4919-90c7-d6fdeabd02a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T21:11:41.000Z" + }, + "end": { + "$date": "2021-07-24T21:34:06.000Z" + }, + "events": [ + { + "uuid": "9433e00f-5849-444a-8b8a-597622ce8cf7", + "start": { + "$date": "2021-07-24T21:11:41.000Z" + }, + "end": { + "$date": "2021-07-24T21:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b03db8b1-76a6-414c-a08e-43d76a407898", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T21:13:12.000Z" + }, + "end": { + "$date": "2021-07-24T22:16:35.000Z" + }, + "events": [ + { + "uuid": "8b82accd-0820-4e94-9e25-35aae03794f0", + "start": { + "$date": "2021-07-24T21:13:12.000Z" + }, + "end": { + "$date": "2021-07-24T22:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56cfd8e9-377c-4801-a830-358a62ef2b4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T21:42:19.000Z" + }, + "end": { + "$date": "2021-07-24T22:08:23.000Z" + }, + "events": [ + { + "uuid": "d41cbed9-0f5a-40c3-b058-d360ae7aab26", + "start": { + "$date": "2021-07-24T21:42:19.000Z" + }, + "end": { + "$date": "2021-07-24T22:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57cea942-d105-451e-bb70-f27b58ea51c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-24T22:13:06.000Z" + }, + "end": { + "$date": "2021-07-24T22:45:15.000Z" + }, + "events": [ + { + "uuid": "4a6d189b-3e6f-48ed-8aa1-90685f37d8b0", + "start": { + "$date": "2021-07-24T22:13:06.000Z" + }, + "end": { + "$date": "2021-07-24T22:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "918d0674-4e94-4fb7-afca-7de0fdc679fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T22:17:20.000Z" + }, + "end": { + "$date": "2021-07-24T22:21:21.000Z" + }, + "events": [ + { + "uuid": "3a6e4531-57b4-47b0-9135-f89049abad7e", + "start": { + "$date": "2021-07-24T22:17:20.000Z" + }, + "end": { + "$date": "2021-07-24T22:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "276d0eec-875c-46c5-9427-eef1773b549f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T22:21:31.000Z" + }, + "end": { + "$date": "2021-07-24T22:36:48.000Z" + }, + "events": [ + { + "uuid": "9fe05948-3d70-4acc-adfb-0055d512dc45", + "start": { + "$date": "2021-07-24T22:21:31.000Z" + }, + "end": { + "$date": "2021-07-24T22:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4db08bab-c448-4279-ba60-b73fa405fbc2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-24T22:37:03.000Z" + }, + "end": { + "$date": "2021-07-25T01:04:09.000Z" + }, + "events": [ + { + "uuid": "c991f78d-58af-4f16-98bb-f72711b4616f", + "start": { + "$date": "2021-07-24T22:37:03.000Z" + }, + "end": { + "$date": "2021-07-25T01:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "90bc118b-5512-4464-a6ab-04d666de4512", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-24T23:34:38.000Z" + }, + "end": { + "$date": "2021-07-24T23:55:18.000Z" + }, + "events": [ + { + "uuid": "11f2ec61-08a3-46d4-87a9-2c7e88037673", + "start": { + "$date": "2021-07-24T23:34:38.000Z" + }, + "end": { + "$date": "2021-07-24T23:55:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a83239b-3e28-437f-bb0e-bb5d8d96031e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-25T00:01:32.000Z" + }, + "end": { + "$date": "2021-07-25T00:28:04.000Z" + }, + "events": [ + { + "uuid": "3498a228-d09d-452c-958f-3e952c3c174c", + "start": { + "$date": "2021-07-25T00:01:32.000Z" + }, + "end": { + "$date": "2021-07-25T00:28:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ccadf618-a60d-45c0-9add-24609dcfd016", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-25T00:33:08.000Z" + }, + "end": { + "$date": "2021-07-25T03:22:47.000Z" + }, + "events": [ + { + "uuid": "e512fbb7-d921-41c5-bd02-a22a343ba840", + "start": { + "$date": "2021-07-25T00:33:08.000Z" + }, + "end": { + "$date": "2021-07-25T01:00:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12be1005-d0fc-4d9a-9e41-465e2f6e735a", + "start": { + "$date": "2021-07-25T01:00:08.000Z" + }, + "end": { + "$date": "2021-07-25T01:12:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42d34669-db4a-4e00-a2a1-7afc0a50ecd6", + "start": { + "$date": "2021-07-25T01:12:08.000Z" + }, + "end": { + "$date": "2021-07-25T01:16:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dfa3a012-a343-4c89-beee-49c71b24c28b", + "start": { + "$date": "2021-07-25T01:16:08.000Z" + }, + "end": { + "$date": "2021-07-25T01:18:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5907143f-3357-4c64-9a1e-4b38c383e50f", + "start": { + "$date": "2021-07-25T01:18:08.000Z" + }, + "end": { + "$date": "2021-07-25T03:22:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7811057c-f510-42c9-b50e-70fb922bf8b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-25T01:28:44.000Z" + }, + "end": { + "$date": "2021-07-25T03:21:50.000Z" + }, + "events": [ + { + "uuid": "2d778404-23cb-4159-9924-40d2451a635d", + "start": { + "$date": "2021-07-25T01:28:44.000Z" + }, + "end": { + "$date": "2021-07-25T03:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "522132d5-bfe1-41ac-a0d3-7da59ab00b99", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-25T01:39:19.000Z" + }, + "end": { + "$date": "2021-07-25T03:22:06.000Z" + }, + "events": [ + { + "uuid": "7300f235-241c-4236-a559-252a775ed9df", + "start": { + "$date": "2021-07-25T01:39:19.000Z" + }, + "end": { + "$date": "2021-07-25T03:22:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7e6d552d-1e02-4dd5-8faf-2806e8e2d4cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-25T01:59:31.000Z" + }, + "end": { + "$date": "2021-07-25T02:10:37.000Z" + }, + "events": [ + { + "uuid": "160bda12-7f41-49f1-bd1e-d5d0ce7155a7", + "start": { + "$date": "2021-07-25T01:59:31.000Z" + }, + "end": { + "$date": "2021-07-25T02:10:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4341b86a-dff3-4029-aed0-826c7d9831e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-25T02:07:38.000Z" + }, + "end": { + "$date": "2021-07-25T05:13:56.000Z" + }, + "events": [ + { + "uuid": "504a0489-3bde-46a9-b696-e0987390ce94", + "start": { + "$date": "2021-07-25T02:07:38.000Z" + }, + "end": { + "$date": "2021-07-25T04:40:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1adff4cf-767e-4d3d-8c28-4e404a4e7800", + "start": { + "$date": "2021-07-25T04:40:38.000Z" + }, + "end": { + "$date": "2021-07-25T04:44:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "67d59ba2-c247-4b71-8a04-661b3ec24615", + "start": { + "$date": "2021-07-25T04:44:38.000Z" + }, + "end": { + "$date": "2021-07-25T05:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "407e3516-a26a-4c37-ba6a-164581c7e8a5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-25T02:12:02.000Z" + }, + "end": { + "$date": "2021-07-25T04:09:06.000Z" + }, + "events": [ + { + "uuid": "11b23e04-cc24-440f-a7b0-6e0b433046a5", + "start": { + "$date": "2021-07-25T02:12:02.000Z" + }, + "end": { + "$date": "2021-07-25T04:09:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00620b11-ce45-444d-93e4-0755621b782e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T03:17:41.000Z" + }, + "end": { + "$date": "2021-07-25T03:48:00.000Z" + }, + "events": [ + { + "uuid": "11670cef-021a-4b94-b10a-826b61e03be2", + "start": { + "$date": "2021-07-25T03:17:41.000Z" + }, + "end": { + "$date": "2021-07-25T03:48:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c72dc0fa-b325-4e19-9aef-39bd4da3db84", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-25T03:23:32.000Z" + }, + "end": { + "$date": "2021-07-25T04:14:59.000Z" + }, + "events": [ + { + "uuid": "16488dc1-8744-4d3d-bd39-d3404d49814b", + "start": { + "$date": "2021-07-25T03:23:32.000Z" + }, + "end": { + "$date": "2021-07-25T04:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "11bb95cc-c898-42a6-b0dd-99e1a3e55a38", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-25T03:26:34.000Z" + }, + "end": { + "$date": "2021-07-25T06:51:41.000Z" + }, + "events": [ + { + "uuid": "f9a2937f-6e4d-47a5-ba6e-9a33be310b93", + "start": { + "$date": "2021-07-25T03:26:34.000Z" + }, + "end": { + "$date": "2021-07-25T06:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1673f53f-5a1e-4e76-925a-7dd227e83c2b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T03:53:49.000Z" + }, + "end": { + "$date": "2021-07-25T04:18:14.000Z" + }, + "events": [ + { + "uuid": "c4543b21-f604-4d15-a248-95f986dff72d", + "start": { + "$date": "2021-07-25T03:53:49.000Z" + }, + "end": { + "$date": "2021-07-25T04:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21562213-25a9-4c88-bc0c-5435895ce266", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-25T03:53:37.000Z" + }, + "end": { + "$date": "2021-07-25T04:18:08.000Z" + }, + "events": [ + { + "uuid": "b62cd7db-1e54-4e30-aa9f-732d07666e1d", + "start": { + "$date": "2021-07-25T03:53:37.000Z" + }, + "end": { + "$date": "2021-07-25T04:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8131a3ef-b04a-42c1-8dae-bf62b7882bf9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-25T04:10:01.000Z" + }, + "end": { + "$date": "2021-07-25T08:27:16.000Z" + }, + "events": [ + { + "uuid": "09e060ca-764d-4ae0-8a4c-faad02b6baea", + "start": { + "$date": "2021-07-25T04:10:01.000Z" + }, + "end": { + "$date": "2021-07-25T08:27:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1e6721fe-b202-40c6-94b5-4aa7e5dd5054", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-25T04:11:04.000Z" + }, + "end": { + "$date": "2021-07-25T05:16:17.000Z" + }, + "events": [ + { + "uuid": "8224c29c-cd3c-4b5b-8bf5-a3ed95ea4600", + "start": { + "$date": "2021-07-25T04:11:04.000Z" + }, + "end": { + "$date": "2021-07-25T05:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f0b0030f-16c2-43a8-bdfd-b539500ae0ad", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-25T04:13:19.000Z" + }, + "end": { + "$date": "2021-07-25T06:41:17.000Z" + }, + "events": [ + { + "uuid": "a9bdb817-f06a-4bdb-980f-ec5b1ef32be8", + "start": { + "$date": "2021-07-25T04:13:19.000Z" + }, + "end": { + "$date": "2021-07-25T06:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "19c23122-437c-4645-97af-7abbc0d886ee", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-25T04:15:18.000Z" + }, + "end": { + "$date": "2021-07-25T06:40:13.000Z" + }, + "events": [ + { + "uuid": "f061ff32-fae4-408b-97a4-9fcef3d66e33", + "start": { + "$date": "2021-07-25T04:15:18.000Z" + }, + "end": { + "$date": "2021-07-25T06:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "319d73bd-738e-4c45-a5a2-61aea36baf27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T04:21:40.000Z" + }, + "end": { + "$date": "2021-07-25T04:40:23.000Z" + }, + "events": [ + { + "uuid": "40937d5e-85fc-4c61-b124-2cca429d2b4b", + "start": { + "$date": "2021-07-25T04:21:40.000Z" + }, + "end": { + "$date": "2021-07-25T04:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03dc1cff-4d9d-41d8-8add-d30976f72b86", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-25T04:21:57.000Z" + }, + "end": { + "$date": "2021-07-25T04:40:08.000Z" + }, + "events": [ + { + "uuid": "c7b6aabf-c9a1-4d6b-a336-94567ed2eedb", + "start": { + "$date": "2021-07-25T04:21:57.000Z" + }, + "end": { + "$date": "2021-07-25T04:40:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b9288996-7b27-4759-bad7-d5b0b6cfd383", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T05:12:10.000Z" + }, + "end": { + "$date": "2021-07-25T05:51:58.000Z" + }, + "events": [ + { + "uuid": "a62d1ab5-94b7-4caa-9ab1-72e89537b100", + "start": { + "$date": "2021-07-25T05:12:10.000Z" + }, + "end": { + "$date": "2021-07-25T05:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d31b66ed-300b-4b42-9f03-569fe4f13249", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-25T05:16:24.000Z" + }, + "end": { + "$date": "2021-07-25T06:40:11.000Z" + }, + "events": [ + { + "uuid": "f1bf643e-c504-4d6e-9163-603d6cabcb70", + "start": { + "$date": "2021-07-25T05:16:24.000Z" + }, + "end": { + "$date": "2021-07-25T06:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "643f5d13-54b0-4152-b752-e8774dfaadb4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-25T05:18:11.000Z" + }, + "end": { + "$date": "2021-07-25T05:36:36.000Z" + }, + "events": [ + { + "uuid": "27e6e2a9-8e71-45eb-8b4e-68e8f3929c19", + "start": { + "$date": "2021-07-25T05:18:11.000Z" + }, + "end": { + "$date": "2021-07-25T05:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2ba87e2b-e521-477c-945d-2a3fe8053a7c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-25T06:42:18.000Z" + }, + "end": { + "$date": "2021-07-25T08:07:51.000Z" + }, + "events": [ + { + "uuid": "6b5fa1ec-5c6c-4b22-a4cf-1150f16c2313", + "start": { + "$date": "2021-07-25T06:42:18.000Z" + }, + "end": { + "$date": "2021-07-25T08:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f56a649a-7e9c-4394-87f2-c4c451d0806e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-25T06:43:27.000Z" + }, + "end": { + "$date": "2021-07-25T06:55:39.000Z" + }, + "events": [ + { + "uuid": "da3d88cb-7faa-43e8-b9e1-7e3eeded4901", + "start": { + "$date": "2021-07-25T06:43:27.000Z" + }, + "end": { + "$date": "2021-07-25T06:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "c1b6eee0-5fce-4ebf-92a6-555e817e17ab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-25T13:45:28.000Z" + }, + "end": { + "$date": "2021-07-25T14:13:09.000Z" + }, + "events": [ + { + "uuid": "d3d31b0a-1206-4ac2-a131-bd78cc5e5c19", + "start": { + "$date": "2021-07-25T13:45:28.000Z" + }, + "end": { + "$date": "2021-07-25T14:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "f3edfdfb-1cd0-4f57-8453-b73ee5d1fde2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-25T14:45:23.000Z" + }, + "end": { + "$date": "2021-07-25T15:05:54.000Z" + }, + "events": [ + { + "uuid": "2a86fdf2-56e0-43f5-88a7-72a505bcc61e", + "start": { + "$date": "2021-07-25T14:45:23.000Z" + }, + "end": { + "$date": "2021-07-25T15:05:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0d848e81-d890-46e6-916c-a828f23e4ce1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-25T15:11:10.000Z" + }, + "end": { + "$date": "2021-07-25T15:20:40.000Z" + }, + "events": [ + { + "uuid": "1b461374-cd28-4014-bd50-65ebbcf84aa1", + "start": { + "$date": "2021-07-25T15:11:10.000Z" + }, + "end": { + "$date": "2021-07-25T15:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9111211e-8e46-49af-bce4-66c234112ac2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-25T15:37:51.000Z" + }, + "end": { + "$date": "2021-07-25T15:39:16.000Z" + }, + "events": [ + { + "uuid": "472f15d0-c537-4eea-b148-a88cdd4f9293", + "start": { + "$date": "2021-07-25T15:37:51.000Z" + }, + "end": { + "$date": "2021-07-25T15:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "41ba6246-36e1-44b4-b643-5d39e40f9789", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-25T15:39:28.000Z" + }, + "end": { + "$date": "2021-07-25T18:21:48.000Z" + }, + "events": [ + { + "uuid": "fd348e2e-8543-46a8-9567-f00130589e82", + "start": { + "$date": "2021-07-25T15:39:28.000Z" + }, + "end": { + "$date": "2021-07-25T16:55:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a3ce86f-4337-4c59-9a06-2032ba0c9775", + "start": { + "$date": "2021-07-25T16:55:28.000Z" + }, + "end": { + "$date": "2021-07-25T16:59:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae9f8566-cc29-4128-a9c0-5a1dedf0b1c8", + "start": { + "$date": "2021-07-25T16:59:28.000Z" + }, + "end": { + "$date": "2021-07-25T18:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d7c8d2e2-6c78-4926-ba6f-4372fc26c298", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-25T15:47:14.000Z" + }, + "end": { + "$date": "2021-07-25T16:05:23.000Z" + }, + "events": [ + { + "uuid": "1c7182a4-2209-44bf-b0ab-b3d2962a3dab", + "start": { + "$date": "2021-07-25T15:47:14.000Z" + }, + "end": { + "$date": "2021-07-25T16:00:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "edabed5d-edb6-4b07-91b7-fcf24feaec53", + "start": { + "$date": "2021-07-25T16:00:14.000Z" + }, + "end": { + "$date": "2021-07-25T16:03:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "484cb8fe-8b5b-40f2-b809-bdd36e7e9865", + "start": { + "$date": "2021-07-25T16:03:14.000Z" + }, + "end": { + "$date": "2021-07-25T16:05:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", + "uuid": "488da489-fa6c-4774-80f4-a8feba41b2b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-25T16:40:28.000Z" + }, + "end": { + "$date": "2021-07-25T16:43:55.000Z" + }, + "events": [ + { + "uuid": "ba34320c-b7a8-4851-8022-b252f1ac7c52", + "start": { + "$date": "2021-07-25T16:40:28.000Z" + }, + "end": { + "$date": "2021-07-25T16:43:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "df6492dc-362b-40b8-be5e-b53f94207254", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-25T18:47:40.000Z" + }, + "end": { + "$date": "2021-07-25T18:54:24.000Z" + }, + "events": [ + { + "uuid": "636123c3-7a2b-45fb-a163-556edf9c44c5", + "start": { + "$date": "2021-07-25T18:47:40.000Z" + }, + "end": { + "$date": "2021-07-25T18:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "c4996911-f843-4261-a55f-57f5e53b3ab8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-25T18:56:01.000Z" + }, + "end": { + "$date": "2021-07-25T18:57:40.000Z" + }, + "events": [ + { + "uuid": "af162474-3bbc-4fa5-a8a1-b7826c6cadc7", + "start": { + "$date": "2021-07-25T18:56:01.000Z" + }, + "end": { + "$date": "2021-07-25T18:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "e8ff2ecb-2251-47a5-8e3b-58c754d5aa57", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-25T22:26:10.000Z" + }, + "end": { + "$date": "2021-07-25T22:26:19.000Z" + }, + "events": [ + { + "uuid": "c86d307d-d23a-4b7f-97af-edd3fe6c10c8", + "start": { + "$date": "2021-07-25T22:26:10.000Z" + }, + "end": { + "$date": "2021-07-25T22:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e90ee841-1bec-488a-8111-f60c0af3687a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-25T19:03:34.000Z" + }, + "end": { + "$date": "2021-07-25T19:11:38.000Z" + }, + "events": [ + { + "uuid": "4d1a7149-4b18-47ad-af1b-f15cd26be95a", + "start": { + "$date": "2021-07-25T19:03:34.000Z" + }, + "end": { + "$date": "2021-07-25T19:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4c08acb1-b0b7-4cd4-aa82-68006779307a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-25T20:45:44.000Z" + }, + "end": { + "$date": "2021-07-25T22:37:37.000Z" + }, + "events": [ + { + "uuid": "f5bc4ea7-080a-471c-9fd3-eff179e5ebca", + "start": { + "$date": "2021-07-25T20:45:44.000Z" + }, + "end": { + "$date": "2021-07-25T22:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f672d9ec-4286-4a91-b564-462b5e92a63b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-25T20:52:48.000Z" + }, + "end": { + "$date": "2021-07-25T22:30:06.000Z" + }, + "events": [ + { + "uuid": "222a1009-bddb-4011-8cb8-9aeb5f2e7cc9", + "start": { + "$date": "2021-07-25T20:52:48.000Z" + }, + "end": { + "$date": "2021-07-25T22:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca72186e-83bf-487d-9109-df452a096181", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T20:59:00.000Z" + }, + "end": { + "$date": "2021-07-25T21:21:56.000Z" + }, + "events": [ + { + "uuid": "e14fe7e8-c50f-41e8-82c4-ecf81d9b5aa2", + "start": { + "$date": "2021-07-25T20:59:00.000Z" + }, + "end": { + "$date": "2021-07-25T21:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dec194ef-e89a-4ef5-8dea-aa5decbd9045", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T21:27:12.000Z" + }, + "end": { + "$date": "2021-07-25T21:49:12.000Z" + }, + "events": [ + { + "uuid": "ba502c76-10cb-42e0-b900-2db6b1b9c47e", + "start": { + "$date": "2021-07-25T21:27:12.000Z" + }, + "end": { + "$date": "2021-07-25T21:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "9bcae871-4de9-49d8-9abf-49baf020b1a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-25T22:37:03.000Z" + }, + "end": { + "$date": "2021-07-25T22:58:51.000Z" + }, + "events": [ + { + "uuid": "294946f4-fe43-4440-bf5d-799f85025ba4", + "start": { + "$date": "2021-07-25T22:37:03.000Z" + }, + "end": { + "$date": "2021-07-25T22:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c768154c-5c18-4976-bd57-cfa278451d6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-25T21:55:55.000Z" + }, + "end": { + "$date": "2021-07-25T22:17:37.000Z" + }, + "events": [ + { + "uuid": "ec003b47-cca5-47b4-b270-27ead0b96096", + "start": { + "$date": "2021-07-25T21:55:55.000Z" + }, + "end": { + "$date": "2021-07-25T22:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6b6253c8-a715-4d88-b492-cceacea4d52b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-25T22:00:49.000Z" + }, + "end": { + "$date": "2021-07-26T04:12:54.000Z" + }, + "events": [ + { + "uuid": "ac26e16c-60b0-4a9c-bfd7-c9198113f745", + "start": { + "$date": "2021-07-25T22:00:49.000Z" + }, + "end": { + "$date": "2021-07-25T22:31:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2982ca98-7e70-4402-b684-57f127e71a59", + "start": { + "$date": "2021-07-25T22:31:49.000Z" + }, + "end": { + "$date": "2021-07-25T22:33:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c33662bd-815d-4dbb-abe3-1494064cca5d", + "start": { + "$date": "2021-07-25T22:33:49.000Z" + }, + "end": { + "$date": "2021-07-25T22:57:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bff25ad2-8fdc-40b8-9316-452a9fe3ae76", + "start": { + "$date": "2021-07-25T22:57:49.000Z" + }, + "end": { + "$date": "2021-07-25T23:18:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5487dceb-c455-422e-8edc-5a6f7bb8d127", + "start": { + "$date": "2021-07-25T23:18:49.000Z" + }, + "end": { + "$date": "2021-07-26T01:20:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9afafc47-bed1-4442-8a8b-9ce61595c8d2", + "start": { + "$date": "2021-07-26T01:20:49.000Z" + }, + "end": { + "$date": "2021-07-26T01:21:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "968ddec5-f4da-47f5-a7c3-0954f1e5e0d8", + "start": { + "$date": "2021-07-26T01:21:49.000Z" + }, + "end": { + "$date": "2021-07-26T04:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8f540249-52e0-4b9a-8cde-875b5bc10392", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-25T22:37:52.000Z" + }, + "end": { + "$date": "2021-07-25T23:50:51.000Z" + }, + "events": [ + { + "uuid": "c80a0721-2242-41ac-8156-7d828c5f9293", + "start": { + "$date": "2021-07-25T22:37:52.000Z" + }, + "end": { + "$date": "2021-07-25T23:50:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "da40fd8f-a490-4f99-9596-ef73d9207799", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-25T22:40:01.000Z" + }, + "end": { + "$date": "2021-07-26T00:05:44.000Z" + }, + "events": [ + { + "uuid": "951ed922-1654-460f-a219-d8b98b2ae5d3", + "start": { + "$date": "2021-07-25T22:40:01.000Z" + }, + "end": { + "$date": "2021-07-26T00:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "e87d1e3e-1feb-4ca7-ac55-b29189183b13", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-26T01:36:22.000Z" + }, + "end": { + "$date": "2021-07-26T01:50:57.000Z" + }, + "events": [ + { + "uuid": "dadfd016-3172-487d-8fb2-eb7cfbc9fad0", + "start": { + "$date": "2021-07-26T01:36:22.000Z" + }, + "end": { + "$date": "2021-07-26T01:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39be65bf-4be0-4917-bc4c-417f96c2e954", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T02:07:16.000Z" + }, + "end": { + "$date": "2021-07-26T02:29:15.000Z" + }, + "events": [ + { + "uuid": "c0b360ef-fcfc-4115-bd18-2ec62b46dc43", + "start": { + "$date": "2021-07-26T02:07:16.000Z" + }, + "end": { + "$date": "2021-07-26T02:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9d42b7c-be0b-4f94-899b-7bf3e514ca7b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T02:36:33.000Z" + }, + "end": { + "$date": "2021-07-26T03:11:37.000Z" + }, + "events": [ + { + "uuid": "a973dd77-913e-46c9-bdfe-72bf31719b8e", + "start": { + "$date": "2021-07-26T02:36:33.000Z" + }, + "end": { + "$date": "2021-07-26T03:11:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f832eb5e-0133-4813-a7a0-9041281ea779", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-26T03:12:47.000Z" + }, + "end": { + "$date": "2021-07-26T04:08:57.000Z" + }, + "events": [ + { + "uuid": "960b60bd-0477-42aa-a7a9-8628a3c8fd04", + "start": { + "$date": "2021-07-26T03:12:47.000Z" + }, + "end": { + "$date": "2021-07-26T04:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4b1a4163-f63b-46a8-8d7c-7fbb462f6fb7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-26T03:56:37.000Z" + }, + "end": { + "$date": "2021-07-26T04:47:53.000Z" + }, + "events": [ + { + "uuid": "f6b9770b-927d-478d-9ddb-930ee6693d49", + "start": { + "$date": "2021-07-26T03:56:37.000Z" + }, + "end": { + "$date": "2021-07-26T04:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "968f190f-0442-4d1d-ae49-2fadd55a06c9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-26T03:58:46.000Z" + }, + "end": { + "$date": "2021-07-26T05:16:08.000Z" + }, + "events": [ + { + "uuid": "fb2a2101-9bb5-41c8-8506-7c8c5cff3a85", + "start": { + "$date": "2021-07-26T03:58:46.000Z" + }, + "end": { + "$date": "2021-07-26T05:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4272b8fb-3eda-4c0b-9c44-77c225d9186e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-26T04:00:30.000Z" + }, + "end": { + "$date": "2021-07-26T05:06:08.000Z" + }, + "events": [ + { + "uuid": "2d6d228a-327f-4aa2-9ed8-bd520356bb90", + "start": { + "$date": "2021-07-26T04:00:30.000Z" + }, + "end": { + "$date": "2021-07-26T05:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dfb46f8c-9f0b-4066-ad3a-768ed10f68d0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-26T04:19:17.000Z" + }, + "end": { + "$date": "2021-07-26T06:54:04.000Z" + }, + "events": [ + { + "uuid": "ced0e4ba-77da-49a9-b3c2-7d114f04b224", + "start": { + "$date": "2021-07-26T04:19:17.000Z" + }, + "end": { + "$date": "2021-07-26T06:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc8ea0ee-2130-45f3-b438-aab2d4c44812", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T04:54:26.000Z" + }, + "end": { + "$date": "2021-07-26T05:18:38.000Z" + }, + "events": [ + { + "uuid": "808998d8-d1f7-417a-bcb1-1b9e16c0db33", + "start": { + "$date": "2021-07-26T04:54:26.000Z" + }, + "end": { + "$date": "2021-07-26T05:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9c61fcd1-55ea-4339-bca7-bb15a043581c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-26T04:56:56.000Z" + }, + "end": { + "$date": "2021-07-26T05:35:09.000Z" + }, + "events": [ + { + "uuid": "5c59d6f5-4147-4576-82a5-d735f294aa03", + "start": { + "$date": "2021-07-26T04:56:56.000Z" + }, + "end": { + "$date": "2021-07-26T05:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b887cdd2-3192-4777-94d4-f8de3199aefd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T05:23:44.000Z" + }, + "end": { + "$date": "2021-07-26T05:52:21.000Z" + }, + "events": [ + { + "uuid": "ee55473e-0ab5-4558-9842-77db57f30983", + "start": { + "$date": "2021-07-26T05:23:44.000Z" + }, + "end": { + "$date": "2021-07-26T05:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a7ebaba-15ee-4c35-843f-1e2043058c8a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-26T05:20:14.000Z" + }, + "end": { + "$date": "2021-07-26T05:22:19.000Z" + }, + "events": [ + { + "uuid": "001c3bf3-0829-4f65-976b-5b70519ed282", + "start": { + "$date": "2021-07-26T05:20:14.000Z" + }, + "end": { + "$date": "2021-07-26T05:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bc682f93-29f3-4fb6-911a-5c8e9d5f03bb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-26T05:22:29.000Z" + }, + "end": { + "$date": "2021-07-26T08:24:39.000Z" + }, + "events": [ + { + "uuid": "d74f19fe-0de1-408a-983d-1df547cd1076", + "start": { + "$date": "2021-07-26T05:22:29.000Z" + }, + "end": { + "$date": "2021-07-26T06:39:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a9223ca-2932-434e-be9a-b9453a8c839b", + "start": { + "$date": "2021-07-26T06:39:29.000Z" + }, + "end": { + "$date": "2021-07-26T06:47:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "652486e9-e9bd-4c59-85d2-17de877647b2", + "start": { + "$date": "2021-07-26T06:47:29.000Z" + }, + "end": { + "$date": "2021-07-26T06:49:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6572c39a-0a19-4d71-b6c6-4a2c52c9f20d", + "start": { + "$date": "2021-07-26T06:49:29.000Z" + }, + "end": { + "$date": "2021-07-26T06:56:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84baba69-f51d-4b8e-b819-0fd1075f6901", + "start": { + "$date": "2021-07-26T06:56:29.000Z" + }, + "end": { + "$date": "2021-07-26T08:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4e23a581-0089-4c7c-a77c-d97a1343a627", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-26T05:35:30.000Z" + }, + "end": { + "$date": "2021-07-26T07:26:04.000Z" + }, + "events": [ + { + "uuid": "5540e0a9-4654-44e5-bae8-9c7f2b89108e", + "start": { + "$date": "2021-07-26T05:35:30.000Z" + }, + "end": { + "$date": "2021-07-26T07:26:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "38a3266f-4724-44ab-8701-bdb5850c1052", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-26T07:41:44.000Z" + }, + "end": { + "$date": "2021-07-26T07:58:19.000Z" + }, + "events": [ + { + "uuid": "dd833dba-4f3a-4586-9962-a05eb6907dd1", + "start": { + "$date": "2021-07-26T07:41:44.000Z" + }, + "end": { + "$date": "2021-07-26T07:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "31ca4484-dd18-4c2d-a119-f84cce054136", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-26T15:25:13.000Z" + }, + "end": { + "$date": "2021-07-26T15:25:17.000Z" + }, + "events": [ + { + "uuid": "70c953e5-3467-41d4-b534-b5aa9211991c", + "start": { + "$date": "2021-07-26T15:25:13.000Z" + }, + "end": { + "$date": "2021-07-26T15:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a25a521f-8e8e-4bc2-ab57-35ee1f3b25a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-26T14:32:32.000Z" + }, + "end": { + "$date": "2021-07-26T18:25:17.000Z" + }, + "events": [ + { + "uuid": "039c4e71-1a1c-459c-9a17-fbb4560b2d6b", + "start": { + "$date": "2021-07-26T14:32:32.000Z" + }, + "end": { + "$date": "2021-07-26T14:50:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97163575-86ad-4d5e-ad0e-2e003bb580b7", + "start": { + "$date": "2021-07-26T14:50:32.000Z" + }, + "end": { + "$date": "2021-07-26T14:51:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "945ca7c5-64e6-4735-9044-e7d31216c99f", + "start": { + "$date": "2021-07-26T14:51:32.000Z" + }, + "end": { + "$date": "2021-07-26T18:07:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e08e8e89-7c52-4753-8ba9-9de58ae815a1", + "start": { + "$date": "2021-07-26T18:07:32.000Z" + }, + "end": { + "$date": "2021-07-26T18:12:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fb71c698-cc7e-45a0-b056-3f95e78f958d", + "start": { + "$date": "2021-07-26T18:12:32.000Z" + }, + "end": { + "$date": "2021-07-26T18:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "cb7c623a-8d94-4e89-acbe-568664ebcd31", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-26T16:44:34.000Z" + }, + "end": { + "$date": "2021-07-26T16:47:06.000Z" + }, + "events": [ + { + "uuid": "523be556-2a03-4635-ba4c-9ff60564b8b6", + "start": { + "$date": "2021-07-26T16:44:34.000Z" + }, + "end": { + "$date": "2021-07-26T16:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "a12da458-a1f8-4615-b0a2-0c329f02fe9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-26T17:06:20.000Z" + }, + "end": { + "$date": "2021-07-26T17:10:23.000Z" + }, + "events": [ + { + "uuid": "647440ea-2757-4996-9f7e-0829438b18a3", + "start": { + "$date": "2021-07-26T17:06:20.000Z" + }, + "end": { + "$date": "2021-07-26T17:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "a9d67f3f-7e2b-4fff-8c29-7ef284f37066", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-26T17:35:49.000Z" + }, + "end": { + "$date": "2021-07-26T17:38:47.000Z" + }, + "events": [ + { + "uuid": "116f059a-ed39-46c4-a332-a9042eb34908", + "start": { + "$date": "2021-07-26T17:35:49.000Z" + }, + "end": { + "$date": "2021-07-26T17:38:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bf7e1d9-9348-430b-b41d-7b00b5ab7f4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T17:26:07.000Z" + }, + "end": { + "$date": "2021-07-26T17:50:32.000Z" + }, + "events": [ + { + "uuid": "d7a2e829-0866-49d2-b06b-05cefd4c7616", + "start": { + "$date": "2021-07-26T17:26:07.000Z" + }, + "end": { + "$date": "2021-07-26T17:50:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1cac5d7f-8065-4d78-a10e-b8a73887840e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-26T18:39:03.000Z" + }, + "end": { + "$date": "2021-07-26T18:58:34.000Z" + }, + "events": [ + { + "uuid": "e80cff1f-7ebf-4f7b-afda-2aeb737f4fc4", + "start": { + "$date": "2021-07-26T18:39:03.000Z" + }, + "end": { + "$date": "2021-07-26T18:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fc8eb056-2f1d-4bd8-89f0-147faee2221f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-26T18:48:56.000Z" + }, + "end": { + "$date": "2021-07-26T18:52:09.000Z" + }, + "events": [ + { + "uuid": "c4296864-d8e0-4606-a64c-2c69feb0f98b", + "start": { + "$date": "2021-07-26T18:48:56.000Z" + }, + "end": { + "$date": "2021-07-26T18:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "94ae9384-8f53-4fce-8428-8e57cc5f9dc1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-27T01:08:11.000Z" + }, + "end": { + "$date": "2021-07-27T01:09:41.000Z" + }, + "events": [ + { + "uuid": "b31fe89e-1e04-4dda-aa18-2eb6f8fc0904", + "start": { + "$date": "2021-07-27T01:08:11.000Z" + }, + "end": { + "$date": "2021-07-27T04:37:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "54b66ade-f9bb-438b-a3bf-34d175ac80f0", + "start": { + "$date": "2021-07-27T04:37:11.000Z" + }, + "end": { + "$date": "2021-07-27T04:45:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa8a58b4-e93a-4e87-98ac-992beb80c733", + "start": { + "$date": "2021-07-27T04:45:11.000Z" + }, + "end": { + "$date": "2021-07-27T01:09:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ae3d447-7df8-4bf4-96d8-0e2d01649a39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T20:38:53.000Z" + }, + "end": { + "$date": "2021-07-26T20:58:29.000Z" + }, + "events": [ + { + "uuid": "ec50e6df-83c4-4feb-af92-7ff4a834614a", + "start": { + "$date": "2021-07-26T20:38:53.000Z" + }, + "end": { + "$date": "2021-07-26T20:58:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e27939cd-62a4-49f3-8b1a-01385ce7738b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-26T20:47:40.000Z" + }, + "end": { + "$date": "2021-07-27T00:18:43.000Z" + }, + "events": [ + { + "uuid": "96318967-1bef-412b-88d0-cb4d707bd461", + "start": { + "$date": "2021-07-26T20:47:40.000Z" + }, + "end": { + "$date": "2021-07-26T21:19:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6163580b-daa4-4380-8212-0ca2886f26a9", + "start": { + "$date": "2021-07-26T21:19:40.000Z" + }, + "end": { + "$date": "2021-07-26T21:21:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "89f74e42-755e-461b-97ad-351561028916", + "start": { + "$date": "2021-07-26T21:21:40.000Z" + }, + "end": { + "$date": "2021-07-27T00:18:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96fa594d-9aa6-4dbe-ab5a-c324d31f9c69", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T21:11:32.000Z" + }, + "end": { + "$date": "2021-07-26T21:31:16.000Z" + }, + "events": [ + { + "uuid": "f4a28b10-7bb5-4bfb-a56c-553cde564308", + "start": { + "$date": "2021-07-26T21:11:32.000Z" + }, + "end": { + "$date": "2021-07-26T21:31:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9751cc74-9f52-46f3-ae8f-d3e285828fd3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T21:38:40.000Z" + }, + "end": { + "$date": "2021-07-26T22:11:28.000Z" + }, + "events": [ + { + "uuid": "de059f0d-ee0c-44b8-b85e-5b549a1b2b8a", + "start": { + "$date": "2021-07-26T21:38:40.000Z" + }, + "end": { + "$date": "2021-07-26T22:11:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e58c7cd5-f505-4cf8-a8ef-71146479ad88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-26T22:17:18.000Z" + }, + "end": { + "$date": "2021-07-26T22:40:57.000Z" + }, + "events": [ + { + "uuid": "d5579952-8b84-4f69-a1d5-6c6f18e8ba09", + "start": { + "$date": "2021-07-26T22:17:18.000Z" + }, + "end": { + "$date": "2021-07-26T22:40:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b1f4a7f7-4bcd-4a92-a012-58671d920b4c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-26T23:03:13.000Z" + }, + "end": { + "$date": "2021-07-26T23:32:54.000Z" + }, + "events": [ + { + "uuid": "64179e62-ace7-4e71-8060-a7c55a65e870", + "start": { + "$date": "2021-07-26T23:03:13.000Z" + }, + "end": { + "$date": "2021-07-26T23:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "34af5199-abed-433e-9a60-a99a8afb958b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-26T23:35:32.000Z" + }, + "end": { + "$date": "2021-07-26T23:36:36.000Z" + }, + "events": [ + { + "uuid": "a7b093f6-293b-433d-9a66-39dd3c33193e", + "start": { + "$date": "2021-07-26T23:35:32.000Z" + }, + "end": { + "$date": "2021-07-26T23:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "071d4008-6e01-4b35-8b4d-9495a7ad6d7b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-26T23:36:45.000Z" + }, + "end": { + "$date": "2021-07-26T23:57:51.000Z" + }, + "events": [ + { + "uuid": "343eaa47-3617-439d-8c58-926a85d5d336", + "start": { + "$date": "2021-07-26T23:36:45.000Z" + }, + "end": { + "$date": "2021-07-26T23:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "68ca15a1-1510-42c3-a41e-3c9ef9dda1a2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-26T23:37:03.000Z" + }, + "end": { + "$date": "2021-07-26T23:42:45.000Z" + }, + "events": [ + { + "uuid": "bd8a041c-ecfe-44e8-b400-2d4cef753efa", + "start": { + "$date": "2021-07-26T23:37:03.000Z" + }, + "end": { + "$date": "2021-07-26T23:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "02803377-5d14-4a7f-a7b4-5357a1c05c69", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-26T23:38:25.000Z" + }, + "end": { + "$date": "2021-07-27T03:09:21.000Z" + }, + "events": [ + { + "uuid": "d9fd3562-83f7-4959-a5f2-ba5a6cb92cfa", + "start": { + "$date": "2021-07-26T23:38:25.000Z" + }, + "end": { + "$date": "2021-07-27T00:24:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7334f814-e252-4f0c-8b39-3653ab2d4608", + "start": { + "$date": "2021-07-27T00:24:25.000Z" + }, + "end": { + "$date": "2021-07-27T00:36:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec888348-0e32-42d4-99c9-0af63bbd8233", + "start": { + "$date": "2021-07-27T00:36:25.000Z" + }, + "end": { + "$date": "2021-07-27T03:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "12b820f0-e5ec-4292-85db-ae5ffe5a743d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-26T23:43:21.000Z" + }, + "end": { + "$date": "2021-07-26T23:44:40.000Z" + }, + "events": [ + { + "uuid": "d491bcff-93ce-4cf2-9b77-a1c6a5e32a50", + "start": { + "$date": "2021-07-26T23:43:21.000Z" + }, + "end": { + "$date": "2021-07-26T23:44:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0cb54f12-a9a0-45a3-94fa-be12d9128fba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-26T23:45:01.000Z" + }, + "end": { + "$date": "2021-07-26T23:48:26.000Z" + }, + "events": [ + { + "uuid": "9624b937-d48b-4f32-9195-a2af94d1e3d1", + "start": { + "$date": "2021-07-26T23:45:01.000Z" + }, + "end": { + "$date": "2021-07-26T23:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8bf5b64b-ed41-43c2-916f-b31b7f12df91", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-26T23:49:39.000Z" + }, + "end": { + "$date": "2021-07-27T02:15:40.000Z" + }, + "events": [ + { + "uuid": "299d9eb0-6237-4514-8275-2a0bfdf2a50d", + "start": { + "$date": "2021-07-26T23:49:39.000Z" + }, + "end": { + "$date": "2021-07-27T00:01:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb6f31ec-9988-4d73-9ef2-ce2dad5b6c4b", + "start": { + "$date": "2021-07-27T00:01:39.000Z" + }, + "end": { + "$date": "2021-07-27T01:32:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd80f106-1145-4b25-b60c-af0f8e0bb56b", + "start": { + "$date": "2021-07-27T01:32:39.000Z" + }, + "end": { + "$date": "2021-07-27T02:01:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3965498-052f-4677-a659-8665b6d2f5f1", + "start": { + "$date": "2021-07-27T02:01:39.000Z" + }, + "end": { + "$date": "2021-07-27T02:15:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "58daea67-d119-4954-9181-f17d81d5b912", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T00:00:48.000Z" + }, + "end": { + "$date": "2021-07-27T00:05:18.000Z" + }, + "events": [ + { + "uuid": "a8cb2a30-583f-423c-8c44-3b3be3066ae1", + "start": { + "$date": "2021-07-27T00:00:48.000Z" + }, + "end": { + "$date": "2021-07-27T00:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d9991a17-6743-47ce-8b3d-23bd0c070775", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-27T00:33:27.000Z" + }, + "end": { + "$date": "2021-07-27T01:05:24.000Z" + }, + "events": [ + { + "uuid": "44c831dd-e129-4144-bdc8-917d036ff0fb", + "start": { + "$date": "2021-07-27T00:33:27.000Z" + }, + "end": { + "$date": "2021-07-27T01:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "4b82d274-ee8f-4ef0-a387-f02616d12886", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T00:38:16.000Z" + }, + "end": { + "$date": "2021-07-27T01:00:17.000Z" + }, + "events": [ + { + "uuid": "817830c9-0a74-4e78-ac01-9e3edfce6678", + "start": { + "$date": "2021-07-27T00:38:16.000Z" + }, + "end": { + "$date": "2021-07-27T01:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a8532d16-0883-4f92-91ae-95b4f4a8776f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T01:00:52.000Z" + }, + "end": { + "$date": "2021-07-27T03:07:33.000Z" + }, + "events": [ + { + "uuid": "33fd35af-2d3d-48e4-a296-ba5080031c8f", + "start": { + "$date": "2021-07-27T01:00:52.000Z" + }, + "end": { + "$date": "2021-07-27T03:07:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3dff207d-1f01-4206-af42-89fa82b0df79", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-27T01:03:10.000Z" + }, + "end": { + "$date": "2021-07-27T03:56:17.000Z" + }, + "events": [ + { + "uuid": "ed387943-45bc-4510-b65d-68afefda4f7f", + "start": { + "$date": "2021-07-27T01:03:10.000Z" + }, + "end": { + "$date": "2021-07-27T03:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "aafe7ebf-1921-4265-bd34-7123e700d005", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-27T01:11:11.000Z" + }, + "end": { + "$date": "2021-07-27T01:44:22.000Z" + }, + "events": [ + { + "uuid": "32435082-d46b-4b5b-b13c-16c0d3621596", + "start": { + "$date": "2021-07-27T01:11:11.000Z" + }, + "end": { + "$date": "2021-07-27T01:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14f6e91f-9d94-4542-b243-efa9456f55de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-27T01:42:42.000Z" + }, + "end": { + "$date": "2021-07-27T03:44:58.000Z" + }, + "events": [ + { + "uuid": "763dd391-efe0-4eef-8d26-99441ffb1df7", + "start": { + "$date": "2021-07-27T01:42:42.000Z" + }, + "end": { + "$date": "2021-07-27T03:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5edc75bd-b1a3-4cb7-9a95-e5f465ce4907", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-27T01:43:10.000Z" + }, + "end": { + "$date": "2021-07-27T04:57:08.000Z" + }, + "events": [ + { + "uuid": "c97da141-985e-4529-a001-118131301820", + "start": { + "$date": "2021-07-27T01:43:10.000Z" + }, + "end": { + "$date": "2021-07-27T04:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "afeca1a2-6372-4494-954c-0e8883f9d63e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-27T01:44:45.000Z" + }, + "end": { + "$date": "2021-07-27T02:48:43.000Z" + }, + "events": [ + { + "uuid": "23677fce-bafa-459c-b322-7947a343afcf", + "start": { + "$date": "2021-07-27T01:44:45.000Z" + }, + "end": { + "$date": "2021-07-27T02:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "78de4016-dad1-47ae-93d3-6bd7543fbe4c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-27T02:24:28.000Z" + }, + "end": { + "$date": "2021-07-27T04:05:14.000Z" + }, + "events": [ + { + "uuid": "b3d1ea58-1d0e-45d2-87a2-31bb1b3b7855", + "start": { + "$date": "2021-07-27T02:24:28.000Z" + }, + "end": { + "$date": "2021-07-27T02:37:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2aabc34-dbb1-4209-aeaf-d8c8b6f2caad", + "start": { + "$date": "2021-07-27T02:37:28.000Z" + }, + "end": { + "$date": "2021-07-27T02:52:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f514f6d6-0bf0-4e30-b1bb-dbe0d24e2b4a", + "start": { + "$date": "2021-07-27T02:52:28.000Z" + }, + "end": { + "$date": "2021-07-27T04:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "019915ab-94b6-4522-befd-13baffef5857", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T02:46:59.000Z" + }, + "end": { + "$date": "2021-07-27T02:48:54.000Z" + }, + "events": [ + { + "uuid": "7dda696a-f50b-427b-857c-6ab31febd91a", + "start": { + "$date": "2021-07-27T02:46:59.000Z" + }, + "end": { + "$date": "2021-07-27T02:48:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b7ed0f98-0dc8-4aa2-a7e9-ee29a8aca4a1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T03:05:39.000Z" + }, + "end": { + "$date": "2021-07-27T03:14:02.000Z" + }, + "events": [ + { + "uuid": "3af15831-7884-44ce-8b7e-02d0d3ac7aff", + "start": { + "$date": "2021-07-27T03:05:39.000Z" + }, + "end": { + "$date": "2021-07-27T03:14:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba30a5a9-019c-4ace-a17b-5e18c69a4abd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-27T02:51:32.000Z" + }, + "end": { + "$date": "2021-07-27T04:56:57.000Z" + }, + "events": [ + { + "uuid": "ce7d1d51-0ef4-418f-8a7b-2915d4f65584", + "start": { + "$date": "2021-07-27T02:51:32.000Z" + }, + "end": { + "$date": "2021-07-27T04:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "73d84482-f0f3-4e84-abe9-f1e5e652505d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T03:09:36.000Z" + }, + "end": { + "$date": "2021-07-27T04:38:53.000Z" + }, + "events": [ + { + "uuid": "5f5fd84b-5835-436d-8d2f-174f1ee95db2", + "start": { + "$date": "2021-07-27T03:09:36.000Z" + }, + "end": { + "$date": "2021-07-27T03:50:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2294915-85be-4917-ad2b-91c391b83b81", + "start": { + "$date": "2021-07-27T03:50:36.000Z" + }, + "end": { + "$date": "2021-07-27T03:55:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58d9bdad-311d-4651-9038-4071de4bac5f", + "start": { + "$date": "2021-07-27T03:55:36.000Z" + }, + "end": { + "$date": "2021-07-27T04:05:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d34602d1-bb19-4445-b01a-949f10b9a4d7", + "start": { + "$date": "2021-07-27T04:05:36.000Z" + }, + "end": { + "$date": "2021-07-27T04:10:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "abd20078-7af8-4a6e-81ea-2b55f518d0bf", + "start": { + "$date": "2021-07-27T04:10:36.000Z" + }, + "end": { + "$date": "2021-07-27T04:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aa6a556d-060c-4fd9-a36f-5e488497c06f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T03:14:19.000Z" + }, + "end": { + "$date": "2021-07-27T03:21:23.000Z" + }, + "events": [ + { + "uuid": "e19090cc-b937-4685-ae7b-7af4609ab995", + "start": { + "$date": "2021-07-27T03:14:19.000Z" + }, + "end": { + "$date": "2021-07-27T03:21:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "511eda5d-e8f0-4681-b550-3a610b80e9f1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T03:25:00.000Z" + }, + "end": { + "$date": "2021-07-27T04:19:05.000Z" + }, + "events": [ + { + "uuid": "a76edccc-ef6b-4aba-8448-818e19480bab", + "start": { + "$date": "2021-07-27T03:25:00.000Z" + }, + "end": { + "$date": "2021-07-27T04:19:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "66bfd618-0bb6-4091-9903-59b700e72b65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T03:31:37.000Z" + }, + "end": { + "$date": "2021-07-27T03:56:03.000Z" + }, + "events": [ + { + "uuid": "97807dc5-4908-46ce-8680-9bf5d6951e5b", + "start": { + "$date": "2021-07-27T03:31:37.000Z" + }, + "end": { + "$date": "2021-07-27T03:56:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "64394865-fc96-4057-b753-5a3f7b950656", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-27T03:45:42.000Z" + }, + "end": { + "$date": "2021-07-27T04:18:56.000Z" + }, + "events": [ + { + "uuid": "12115907-2c7e-4d81-95cf-610d3637d414", + "start": { + "$date": "2021-07-27T03:45:42.000Z" + }, + "end": { + "$date": "2021-07-27T04:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3cd2705a-ac32-41e1-ba79-665b974ab141", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-27T03:45:58.000Z" + }, + "end": { + "$date": "2021-07-27T04:56:30.000Z" + }, + "events": [ + { + "uuid": "70079c16-1670-425c-aa96-8b6245f825a1", + "start": { + "$date": "2021-07-27T03:45:58.000Z" + }, + "end": { + "$date": "2021-07-27T04:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "476be57b-1eac-47ab-9dea-f82f328c78e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T03:57:05.000Z" + }, + "end": { + "$date": "2021-07-27T04:53:48.000Z" + }, + "events": [ + { + "uuid": "8635e6a6-1c0f-4b0f-8ad5-36b2920e0fe4", + "start": { + "$date": "2021-07-27T03:57:05.000Z" + }, + "end": { + "$date": "2021-07-27T04:25:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25ef7a7e-6d2a-44a6-895f-ad1bd0fb4818", + "start": { + "$date": "2021-07-27T04:25:05.000Z" + }, + "end": { + "$date": "2021-07-27T04:29:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "29fb9326-3c4d-4bff-8411-857067b1aa72", + "start": { + "$date": "2021-07-27T04:29:05.000Z" + }, + "end": { + "$date": "2021-07-27T04:53:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "45aa06a3-aec5-42d4-a2ab-03b3cc7d463d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-27T03:56:42.000Z" + }, + "end": { + "$date": "2021-07-27T04:50:59.000Z" + }, + "events": [ + { + "uuid": "9f2548a3-fcfb-46af-9e18-df0fc399b71c", + "start": { + "$date": "2021-07-27T03:56:42.000Z" + }, + "end": { + "$date": "2021-07-27T04:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f1d21df9-5744-494a-bd16-31b4d1331035", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T04:42:03.000Z" + }, + "end": { + "$date": "2021-07-27T06:38:16.000Z" + }, + "events": [ + { + "uuid": "c179694f-6173-49ae-859e-0cef90826a88", + "start": { + "$date": "2021-07-27T04:42:03.000Z" + }, + "end": { + "$date": "2021-07-27T06:38:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bbbb8661-2809-4cad-859e-a6593ddc1d55", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-27T04:57:30.000Z" + }, + "end": { + "$date": "2021-07-27T07:22:36.000Z" + }, + "events": [ + { + "uuid": "6a8f0fd2-43c9-4802-a53a-5b7fb7ed0d2f", + "start": { + "$date": "2021-07-27T04:57:30.000Z" + }, + "end": { + "$date": "2021-07-27T07:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6a50750f-a61a-44ec-9016-0de3830b4a9c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-27T04:58:13.000Z" + }, + "end": { + "$date": "2021-07-27T05:50:06.000Z" + }, + "events": [ + { + "uuid": "37a69cc2-97d4-4e5d-a46d-fb868f30b5d3", + "start": { + "$date": "2021-07-27T04:58:13.000Z" + }, + "end": { + "$date": "2021-07-27T05:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "97dd20d1-7cdb-4629-bec2-f6ab94442fc4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-27T04:59:04.000Z" + }, + "end": { + "$date": "2021-07-27T05:59:56.000Z" + }, + "events": [ + { + "uuid": "14845b6c-7c09-49e7-b3bd-7e263812887a", + "start": { + "$date": "2021-07-27T04:59:04.000Z" + }, + "end": { + "$date": "2021-07-27T05:59:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2ea51dda-5b96-499d-ae6c-007c31fc638b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T04:59:06.000Z" + }, + "end": { + "$date": "2021-07-27T05:02:57.000Z" + }, + "events": [ + { + "uuid": "593de881-c4ab-4613-a097-42501c5d9021", + "start": { + "$date": "2021-07-27T04:59:06.000Z" + }, + "end": { + "$date": "2021-07-27T05:02:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "51bd5637-d606-44e0-ab9c-d3abc514e69a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T05:03:46.000Z" + }, + "end": { + "$date": "2021-07-27T06:39:38.000Z" + }, + "events": [ + { + "uuid": "98c1d9d0-64f9-418e-a5d0-04fc9b5b8b26", + "start": { + "$date": "2021-07-27T05:03:46.000Z" + }, + "end": { + "$date": "2021-07-27T06:39:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8a11792-c41a-4b3e-ae8d-280debac4c49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-27T06:36:10.000Z" + }, + "end": { + "$date": "2021-07-27T07:04:08.000Z" + }, + "events": [ + { + "uuid": "210e74ab-2e7c-4701-8d16-ead1e47135d2", + "start": { + "$date": "2021-07-27T06:36:10.000Z" + }, + "end": { + "$date": "2021-07-27T07:04:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "cafaad42-00d3-4a35-8cc3-e67c948f21b8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-27T13:31:36.000Z" + }, + "end": { + "$date": "2021-07-27T15:17:03.000Z" + }, + "events": [ + { + "uuid": "03c26a21-bbb7-42e2-ae5c-60bde2f96b33", + "start": { + "$date": "2021-07-27T13:31:36.000Z" + }, + "end": { + "$date": "2021-07-27T15:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f3e4b9f2-ae00-4d47-b4a6-592d3563d6f7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T14:05:30.000Z" + }, + "end": { + "$date": "2021-07-27T14:44:22.000Z" + }, + "events": [ + { + "uuid": "7c896242-e3e0-4acc-b9ad-2cdf3eff43a7", + "start": { + "$date": "2021-07-27T14:05:30.000Z" + }, + "end": { + "$date": "2021-07-27T14:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2ae15167-3c17-4c53-97cf-06746bdae999", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T15:03:42.000Z" + }, + "end": { + "$date": "2021-07-27T15:14:43.000Z" + }, + "events": [ + { + "uuid": "c779303b-5ffa-48cb-9c34-ed14e9ab2c15", + "start": { + "$date": "2021-07-27T15:03:42.000Z" + }, + "end": { + "$date": "2021-07-27T15:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "023dd005-a450-430b-8bd1-5dbb7e68e8f1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T15:50:58.000Z" + }, + "end": { + "$date": "2021-07-27T16:56:26.000Z" + }, + "events": [ + { + "uuid": "fb4c822f-b172-4e1a-bed4-321ed213e621", + "start": { + "$date": "2021-07-27T15:50:58.000Z" + }, + "end": { + "$date": "2021-07-27T16:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "c135fab1-2eeb-4787-9d24-870ad6b596bb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T15:52:36.000Z" + }, + "end": { + "$date": "2021-07-27T16:32:08.000Z" + }, + "events": [ + { + "uuid": "059faae3-2d7b-4637-b515-1159da18a203", + "start": { + "$date": "2021-07-27T15:52:36.000Z" + }, + "end": { + "$date": "2021-07-27T16:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e5de1274-4b6b-45a1-8e0b-a810355ac485", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T16:23:10.000Z" + }, + "end": { + "$date": "2021-07-27T16:34:41.000Z" + }, + "events": [ + { + "uuid": "e7d85d6e-793b-4e09-a243-ea909076cf5d", + "start": { + "$date": "2021-07-27T16:23:10.000Z" + }, + "end": { + "$date": "2021-07-27T16:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "091a5d4e-7af2-4a0b-9c8a-54bad1ad9780", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T16:33:03.000Z" + }, + "end": { + "$date": "2021-07-27T16:34:28.000Z" + }, + "events": [ + { + "uuid": "de8b0e4e-be03-4a53-a6cc-2db326849f88", + "start": { + "$date": "2021-07-27T16:33:03.000Z" + }, + "end": { + "$date": "2021-07-27T16:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "df6549d0-a50b-42af-ab03-086d07473136", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-27T17:57:08.000Z" + }, + "end": { + "$date": "2021-07-27T20:09:49.000Z" + }, + "events": [ + { + "uuid": "243723a8-de4a-42a5-82a6-70a3156da4de", + "start": { + "$date": "2021-07-27T17:57:08.000Z" + }, + "end": { + "$date": "2021-07-27T20:09:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "526bf68b-32f9-4f26-be41-cfd5484b1dc4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T18:26:40.000Z" + }, + "end": { + "$date": "2021-07-27T18:37:06.000Z" + }, + "events": [ + { + "uuid": "9db51309-f477-45e4-98ef-86f5c8fc45a9", + "start": { + "$date": "2021-07-27T18:26:40.000Z" + }, + "end": { + "$date": "2021-07-27T18:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "057a5d36-c4c4-4f32-8254-b782a52cfec3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T19:29:21.000Z" + }, + "end": { + "$date": "2021-07-27T19:48:38.000Z" + }, + "events": [ + { + "uuid": "aace7266-af4c-41d2-bda7-84ba10265d9b", + "start": { + "$date": "2021-07-27T19:29:21.000Z" + }, + "end": { + "$date": "2021-07-27T19:42:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c65f6cd8-1eb8-44c2-863c-fa354db3d3e8", + "start": { + "$date": "2021-07-27T19:42:21.000Z" + }, + "end": { + "$date": "2021-07-27T19:48:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "56996095-b355-447c-8c92-0ed1b1910164", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-27T19:44:17.000Z" + }, + "end": { + "$date": "2021-07-27T19:45:37.000Z" + }, + "events": [ + { + "uuid": "830cf7b9-b2a9-4484-bce5-5ef270566d0f", + "start": { + "$date": "2021-07-27T19:44:17.000Z" + }, + "end": { + "$date": "2021-07-27T19:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "2740676d-c1d7-41a2-b423-29b5dc4b0267", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-28T00:16:10.000Z" + }, + "end": { + "$date": "2021-07-28T00:16:39.000Z" + }, + "events": [ + { + "uuid": "5112e1c9-b682-4761-b9f4-8b5faf21b6ef", + "start": { + "$date": "2021-07-28T00:16:10.000Z" + }, + "end": { + "$date": "2021-07-28T00:16:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "30a6d7ed-3ebd-40be-a258-abc757f998ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-27T20:36:24.000Z" + }, + "end": { + "$date": "2021-07-27T21:04:11.000Z" + }, + "events": [ + { + "uuid": "15fe8a6b-5f69-490a-8ca1-9fad20904f5f", + "start": { + "$date": "2021-07-27T20:36:24.000Z" + }, + "end": { + "$date": "2021-07-27T21:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1ac9f69c-bb41-4c45-ae36-9453085d57c2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T20:47:39.000Z" + }, + "end": { + "$date": "2021-07-27T21:02:16.000Z" + }, + "events": [ + { + "uuid": "f5a8904d-5580-452d-9a72-b4e1c9c197e6", + "start": { + "$date": "2021-07-27T20:47:39.000Z" + }, + "end": { + "$date": "2021-07-27T21:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "db0fe061-fb48-4b8b-82fe-a83079f1917f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T21:26:30.000Z" + }, + "end": { + "$date": "2021-07-27T22:24:58.000Z" + }, + "events": [ + { + "uuid": "f7dc6713-d945-4638-8657-5743927ba245", + "start": { + "$date": "2021-07-27T21:26:30.000Z" + }, + "end": { + "$date": "2021-07-27T22:24:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "efea6ac2-13e7-4333-9be6-78570255d4f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T22:25:18.000Z" + }, + "end": { + "$date": "2021-07-27T23:49:35.000Z" + }, + "events": [ + { + "uuid": "cc71165d-8168-46ea-9c15-c8727e89781f", + "start": { + "$date": "2021-07-27T22:25:18.000Z" + }, + "end": { + "$date": "2021-07-27T23:49:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "785e6350-ec2b-401e-a94d-3392d0513185", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-27T22:38:28.000Z" + }, + "end": { + "$date": "2021-07-27T23:30:04.000Z" + }, + "events": [ + { + "uuid": "f24f0708-54b6-4cae-b731-7bdbdc9aaa4e", + "start": { + "$date": "2021-07-27T22:38:28.000Z" + }, + "end": { + "$date": "2021-07-27T23:30:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "0ef34352-c26c-4ca0-baf9-5a41df0dfbf4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T23:08:24.000Z" + }, + "end": { + "$date": "2021-07-27T23:09:39.000Z" + }, + "events": [ + { + "uuid": "3d1e104f-d022-4257-ad5f-99d5cdfd6a0d", + "start": { + "$date": "2021-07-27T23:08:24.000Z" + }, + "end": { + "$date": "2021-07-27T23:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8b655edb-46d0-4f65-9561-96dc5c3d2a1b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-27T23:10:19.000Z" + }, + "end": { + "$date": "2021-07-28T03:37:21.000Z" + }, + "events": [ + { + "uuid": "bdeec88e-16b7-4f4e-abf2-420c2d61b5c7", + "start": { + "$date": "2021-07-27T23:10:19.000Z" + }, + "end": { + "$date": "2021-07-28T03:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "57cce1ed-ebfa-49c0-b595-f4256f77566a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-27T23:49:56.000Z" + }, + "end": { + "$date": "2021-07-28T00:52:22.000Z" + }, + "events": [ + { + "uuid": "884ab8f9-acbd-4184-89e6-71f1e5b6dc12", + "start": { + "$date": "2021-07-27T23:49:56.000Z" + }, + "end": { + "$date": "2021-07-28T00:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "44369781-0181-49df-a3e1-3c9ede7c949b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-28T00:17:30.000Z" + }, + "end": { + "$date": "2021-07-28T00:38:56.000Z" + }, + "events": [ + { + "uuid": "cc755ad8-9d7d-4f9d-b49a-da7bf5e02369", + "start": { + "$date": "2021-07-28T00:17:30.000Z" + }, + "end": { + "$date": "2021-07-28T00:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9caa0084-1020-4b59-9b7d-6f66132dfa76", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-28T02:10:05.000Z" + }, + "end": { + "$date": "2021-07-28T03:32:25.000Z" + }, + "events": [ + { + "uuid": "936f7406-f290-4d71-90d1-30910162c8e4", + "start": { + "$date": "2021-07-28T02:10:05.000Z" + }, + "end": { + "$date": "2021-07-28T03:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "74ec9b58-4ec8-43a1-b553-14ee3c4880ad", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-28T02:10:08.000Z" + }, + "end": { + "$date": "2021-07-28T03:32:19.000Z" + }, + "events": [ + { + "uuid": "cf99a541-11e3-41f2-b489-d0e89ce47bd0", + "start": { + "$date": "2021-07-28T02:10:08.000Z" + }, + "end": { + "$date": "2021-07-28T03:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9d3280bf-4824-47ae-9ea2-b7eb40412f58", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-28T02:12:05.000Z" + }, + "end": { + "$date": "2021-07-28T03:37:38.000Z" + }, + "events": [ + { + "uuid": "ce9a8373-87a7-4c64-aa2b-98ae6aa19c31", + "start": { + "$date": "2021-07-28T02:12:05.000Z" + }, + "end": { + "$date": "2021-07-28T03:37:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d75245b2-516d-4777-b061-0c02b05e09aa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T02:13:10.000Z" + }, + "end": { + "$date": "2021-07-28T03:21:41.000Z" + }, + "events": [ + { + "uuid": "ce7739d3-b99b-403e-9cc0-8a713955f678", + "start": { + "$date": "2021-07-28T02:13:10.000Z" + }, + "end": { + "$date": "2021-07-28T03:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "f9381cc9-77a4-43d2-9a9a-70725e970b42", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-28T03:20:09.000Z" + }, + "end": { + "$date": "2021-07-28T03:44:06.000Z" + }, + "events": [ + { + "uuid": "fd11c12a-cfb6-4bc9-9997-7ec98e95ea43", + "start": { + "$date": "2021-07-28T03:20:09.000Z" + }, + "end": { + "$date": "2021-07-28T03:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0db72dac-4fde-4751-8940-9fdbda550b71", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T03:21:54.000Z" + }, + "end": { + "$date": "2021-07-28T03:32:05.000Z" + }, + "events": [ + { + "uuid": "41059e05-7fc2-46c3-81f3-a005c77965fa", + "start": { + "$date": "2021-07-28T03:21:54.000Z" + }, + "end": { + "$date": "2021-07-28T03:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "33673d03-1cd1-4bd8-acbd-7c17e6c18d77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-28T03:25:34.000Z" + }, + "end": { + "$date": "2021-07-28T03:39:24.000Z" + }, + "events": [ + { + "uuid": "21efc212-17ae-49ef-aeb0-bdaeeb44c0f4", + "start": { + "$date": "2021-07-28T03:25:34.000Z" + }, + "end": { + "$date": "2021-07-28T03:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "072b13f6-602e-4217-bcc7-054302aa6534", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T03:33:14.000Z" + }, + "end": { + "$date": "2021-07-28T03:34:25.000Z" + }, + "events": [ + { + "uuid": "bb999acb-89da-4f4e-8506-0ed16297c159", + "start": { + "$date": "2021-07-28T03:33:14.000Z" + }, + "end": { + "$date": "2021-07-28T03:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d5c63929-58a7-4de1-aba6-1083ae97816d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-28T03:33:20.000Z" + }, + "end": { + "$date": "2021-07-28T03:40:40.000Z" + }, + "events": [ + { + "uuid": "d5e88387-d8cd-470a-829d-272879799566", + "start": { + "$date": "2021-07-28T03:33:20.000Z" + }, + "end": { + "$date": "2021-07-28T03:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9585043c-1222-4e16-baf5-e92a71448b99", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T03:34:44.000Z" + }, + "end": { + "$date": "2021-07-28T03:36:05.000Z" + }, + "events": [ + { + "uuid": "23660e07-969d-41b6-97e7-5e70f55acdbd", + "start": { + "$date": "2021-07-28T03:34:44.000Z" + }, + "end": { + "$date": "2021-07-28T03:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fb7dd27c-6253-4a23-9f16-662575d4c43e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T03:37:31.000Z" + }, + "end": { + "$date": "2021-07-28T07:10:56.000Z" + }, + "events": [ + { + "uuid": "1843f8a9-0546-4db3-bc88-22fda7de8a4d", + "start": { + "$date": "2021-07-28T03:37:31.000Z" + }, + "end": { + "$date": "2021-07-28T07:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "59e145e7-91a0-4c6c-98d5-162b6c5ecb3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-28T03:37:52.000Z" + }, + "end": { + "$date": "2021-07-28T03:40:03.000Z" + }, + "events": [ + { + "uuid": "c745d80b-1650-4fb1-aca5-1d231f4a9fb6", + "start": { + "$date": "2021-07-28T03:37:52.000Z" + }, + "end": { + "$date": "2021-07-28T03:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9e1ca001-b8f6-42f6-9713-ecbf674d71ec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T03:38:55.000Z" + }, + "end": { + "$date": "2021-07-28T04:15:17.000Z" + }, + "events": [ + { + "uuid": "d3aea849-3c37-4e01-a99a-4b473d520bac", + "start": { + "$date": "2021-07-28T03:38:55.000Z" + }, + "end": { + "$date": "2021-07-28T04:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "565f0aec-b3f3-4560-af70-b412c4faf5de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-28T03:39:55.000Z" + }, + "end": { + "$date": "2021-07-28T04:15:55.000Z" + }, + "events": [ + { + "uuid": "b2b6054b-e3c4-4c19-bee7-bc6e115795a7", + "start": { + "$date": "2021-07-28T03:39:55.000Z" + }, + "end": { + "$date": "2021-07-28T04:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "106f11a4-85b7-4212-a637-82d7329b2fd1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-28T03:44:47.000Z" + }, + "end": { + "$date": "2021-07-28T04:00:13.000Z" + }, + "events": [ + { + "uuid": "043ae9b3-382a-4d89-b784-45aefaf073a3", + "start": { + "$date": "2021-07-28T03:44:47.000Z" + }, + "end": { + "$date": "2021-07-28T04:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5f78ecf4-b26d-4a2f-8de3-ab24dac8027e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-28T03:56:49.000Z" + }, + "end": { + "$date": "2021-07-28T04:43:30.000Z" + }, + "events": [ + { + "uuid": "1a51f3c9-1640-4554-8d39-5483f95728a2", + "start": { + "$date": "2021-07-28T03:56:49.000Z" + }, + "end": { + "$date": "2021-07-28T04:43:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "50413937-13d9-4c17-af3f-de69959734d5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-28T03:57:33.000Z" + }, + "end": { + "$date": "2021-07-28T04:43:11.000Z" + }, + "events": [ + { + "uuid": "49d66dc0-ced0-455c-a70a-93cd4a8c1640", + "start": { + "$date": "2021-07-28T03:57:33.000Z" + }, + "end": { + "$date": "2021-07-28T04:43:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4bdf454a-c797-4c5f-97e5-ff26a056d512", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-28T04:00:11.000Z" + }, + "end": { + "$date": "2021-07-28T04:43:19.000Z" + }, + "events": [ + { + "uuid": "3422bddb-a7af-4d80-8462-95432f567a5f", + "start": { + "$date": "2021-07-28T04:00:11.000Z" + }, + "end": { + "$date": "2021-07-28T04:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f83d8aed-c0ff-4094-ac8d-72214fc8eccb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-28T04:16:11.000Z" + }, + "end": { + "$date": "2021-07-28T06:37:26.000Z" + }, + "events": [ + { + "uuid": "2e5de1ba-5646-4e53-9cb7-43c4210083fd", + "start": { + "$date": "2021-07-28T04:16:11.000Z" + }, + "end": { + "$date": "2021-07-28T06:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b34752c6-59f5-4391-9f7f-a4f7a007ccb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-28T04:33:54.000Z" + }, + "end": { + "$date": "2021-07-28T05:00:07.000Z" + }, + "events": [ + { + "uuid": "15f1f6d2-cfa6-4869-bac4-0356a7063c16", + "start": { + "$date": "2021-07-28T04:33:54.000Z" + }, + "end": { + "$date": "2021-07-28T05:00:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "15e1a0b1-e62d-473b-a8d9-97a31f3b3525", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-28T05:03:31.000Z" + }, + "end": { + "$date": "2021-07-28T06:39:32.000Z" + }, + "events": [ + { + "uuid": "feaca850-85c3-4f4f-a8c0-d9a15621c21a", + "start": { + "$date": "2021-07-28T05:03:31.000Z" + }, + "end": { + "$date": "2021-07-28T06:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f9a72307-f0ce-41f7-9420-e1a28f6cf665", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-28T12:34:42.000Z" + }, + "end": { + "$date": "2021-07-28T12:59:59.000Z" + }, + "events": [ + { + "uuid": "7fd40110-170c-403b-ae62-516853106b52", + "start": { + "$date": "2021-07-28T12:34:42.000Z" + }, + "end": { + "$date": "2021-07-28T12:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cd4e7b11-8697-4f70-87b3-15c8a4843467", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-28T13:30:32.000Z" + }, + "end": { + "$date": "2021-07-28T14:02:50.000Z" + }, + "events": [ + { + "uuid": "2585b0dc-8cb3-4a33-8d03-7dff63f2a9ac", + "start": { + "$date": "2021-07-28T13:30:32.000Z" + }, + "end": { + "$date": "2021-07-28T14:02:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5e5453ac-fef2-493d-9289-d099ab382039", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T17:07:09.000Z" + }, + "end": { + "$date": "2021-07-28T17:10:09.000Z" + }, + "events": [ + { + "uuid": "56817272-a204-4773-ade2-6c4fc2497453", + "start": { + "$date": "2021-07-28T17:07:09.000Z" + }, + "end": { + "$date": "2021-07-28T17:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3e04336f-ec07-4237-a8b7-ed471b66ad59", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T17:10:44.000Z" + }, + "end": { + "$date": "2021-07-28T17:15:28.000Z" + }, + "events": [ + { + "uuid": "ae5b59fa-4c3c-4d72-b9d8-0d4054c4f962", + "start": { + "$date": "2021-07-28T17:10:44.000Z" + }, + "end": { + "$date": "2021-07-28T17:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2822971a-2d26-45d9-9498-d00e1280c92d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-28T18:09:50.000Z" + }, + "end": { + "$date": "2021-07-28T18:37:00.000Z" + }, + "events": [ + { + "uuid": "92d661fd-dff1-4707-9757-ec58954b361c", + "start": { + "$date": "2021-07-28T18:09:50.000Z" + }, + "end": { + "$date": "2021-07-28T18:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dbdcd61e-0ec4-4330-a03f-f9b4f16976e5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T19:11:06.000Z" + }, + "end": { + "$date": "2021-07-28T19:17:26.000Z" + }, + "events": [ + { + "uuid": "187ba5d8-18b3-491d-aa11-9e36fbb8b99c", + "start": { + "$date": "2021-07-28T19:11:06.000Z" + }, + "end": { + "$date": "2021-07-28T19:17:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "53adb152-245d-43fa-99e9-25d188863228", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-28T19:50:14.000Z" + }, + "end": { + "$date": "2021-07-28T20:30:19.000Z" + }, + "events": [ + { + "uuid": "e49c57a3-11fa-415c-9cf6-40e0c6575ac3", + "start": { + "$date": "2021-07-28T19:50:14.000Z" + }, + "end": { + "$date": "2021-07-28T20:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24dd8458-6b8e-41f8-95ba-96e8d73ca83e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-28T20:40:29.000Z" + }, + "end": { + "$date": "2021-07-28T21:08:32.000Z" + }, + "events": [ + { + "uuid": "89120080-388e-4e3d-a90a-971d877b1280", + "start": { + "$date": "2021-07-28T20:40:29.000Z" + }, + "end": { + "$date": "2021-07-28T21:08:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "aa3825e7-7477-477f-8d47-14f133a70280", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T20:44:20.000Z" + }, + "end": { + "$date": "2021-07-28T20:46:50.000Z" + }, + "events": [ + { + "uuid": "10cc20e0-7d19-4433-b2e6-a253787ac5ec", + "start": { + "$date": "2021-07-28T20:44:20.000Z" + }, + "end": { + "$date": "2021-07-28T20:46:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "96cbf004-0ed8-4a0a-be64-ce1eb3fde2cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T21:35:30.000Z" + }, + "end": { + "$date": "2021-07-28T22:02:02.000Z" + }, + "events": [ + { + "uuid": "22504daf-8120-4d5d-9ccc-a2e149acd190", + "start": { + "$date": "2021-07-28T21:35:30.000Z" + }, + "end": { + "$date": "2021-07-28T21:50:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0da05fa4-e0aa-4b72-aeb6-c8625e5ee686", + "start": { + "$date": "2021-07-28T21:50:30.000Z" + }, + "end": { + "$date": "2021-07-28T22:02:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "84a77e5c-c338-477a-9555-9624300a284b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T21:52:36.000Z" + }, + "end": { + "$date": "2021-07-28T21:55:07.000Z" + }, + "events": [ + { + "uuid": "19aed3de-1074-4db8-9568-2b316cec7484", + "start": { + "$date": "2021-07-28T21:52:36.000Z" + }, + "end": { + "$date": "2021-07-28T21:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "26d33e11-c192-410b-8253-c48d5c3b8390", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T22:08:41.000Z" + }, + "end": { + "$date": "2021-07-28T22:12:06.000Z" + }, + "events": [ + { + "uuid": "8ce9e458-6a4f-46ae-8334-ffc1e55b1002", + "start": { + "$date": "2021-07-28T22:08:41.000Z" + }, + "end": { + "$date": "2021-07-28T22:12:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "681f1d8e-c2b7-4599-b551-60937d83ab8b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T22:12:31.000Z" + }, + "end": { + "$date": "2021-07-28T22:13:46.000Z" + }, + "events": [ + { + "uuid": "cc87ebe3-d0fa-4bbf-bc93-421ceb2a0f9b", + "start": { + "$date": "2021-07-28T22:12:31.000Z" + }, + "end": { + "$date": "2021-07-28T22:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1bced695-9127-4366-a950-479e7ee015b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T22:16:57.000Z" + }, + "end": { + "$date": "2021-07-28T22:57:46.000Z" + }, + "events": [ + { + "uuid": "91840fd0-0f16-4d11-83f8-3d994952cc69", + "start": { + "$date": "2021-07-28T22:16:57.000Z" + }, + "end": { + "$date": "2021-07-28T22:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "eee57ed7-093b-446c-8f4c-b1dd07651a13", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-28T22:55:43.000Z" + }, + "end": { + "$date": "2021-07-28T23:13:54.000Z" + }, + "events": [ + { + "uuid": "f8819274-4576-4306-a2f4-f9f490e5b714", + "start": { + "$date": "2021-07-28T22:55:43.000Z" + }, + "end": { + "$date": "2021-07-28T23:11:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c5e3860-e6f7-4cc2-b868-700c53f6322d", + "start": { + "$date": "2021-07-28T23:11:43.000Z" + }, + "end": { + "$date": "2021-07-28T23:13:54.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e11c5400-18da-455d-a50e-78448f8f4d4f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-28T22:57:35.000Z" + }, + "end": { + "$date": "2021-07-28T23:28:51.000Z" + }, + "events": [ + { + "uuid": "3a0f69e4-ce29-4433-b099-09f36c863b0a", + "start": { + "$date": "2021-07-28T22:57:35.000Z" + }, + "end": { + "$date": "2021-07-28T23:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6a145b06-2eb0-45d0-976e-286ef4fdec0a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-28T23:07:48.000Z" + }, + "end": { + "$date": "2021-07-28T23:29:20.000Z" + }, + "events": [ + { + "uuid": "19d155e0-4934-4ce9-8613-1d098f9efb80", + "start": { + "$date": "2021-07-28T23:07:48.000Z" + }, + "end": { + "$date": "2021-07-28T23:29:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "620a41e5-a016-4c32-8ec5-cc73cf487aff", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T00:02:40.000Z" + }, + "end": { + "$date": "2021-07-29T00:06:00.000Z" + }, + "events": [ + { + "uuid": "5dd5e715-6138-4faf-91d0-f537b0925f36", + "start": { + "$date": "2021-07-29T00:02:40.000Z" + }, + "end": { + "$date": "2021-07-29T00:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a91952f8-f951-47ad-b8ee-5ea1ad6800a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T00:18:11.000Z" + }, + "end": { + "$date": "2021-07-29T00:55:58.000Z" + }, + "events": [ + { + "uuid": "a31b95d6-33e2-46a7-ad82-e83366408b86", + "start": { + "$date": "2021-07-29T00:18:11.000Z" + }, + "end": { + "$date": "2021-07-29T00:55:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c534654d-9a6d-48da-88b2-4eb668fa92e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-29T00:18:16.000Z" + }, + "end": { + "$date": "2021-07-29T00:56:05.000Z" + }, + "events": [ + { + "uuid": "474db326-fde0-431a-9545-91339ce32365", + "start": { + "$date": "2021-07-29T00:18:16.000Z" + }, + "end": { + "$date": "2021-07-29T00:56:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "822428f8-2c89-4fc3-a6c0-571420e3e83a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T01:01:53.000Z" + }, + "end": { + "$date": "2021-07-29T01:18:33.000Z" + }, + "events": [ + { + "uuid": "3feb84ad-af7f-483c-a46e-052faa9b04c5", + "start": { + "$date": "2021-07-29T01:01:53.000Z" + }, + "end": { + "$date": "2021-07-29T01:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69a7bc44-eb02-4d84-ae5b-c4b4b1d8f180", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-29T01:01:23.000Z" + }, + "end": { + "$date": "2021-07-29T01:18:50.000Z" + }, + "events": [ + { + "uuid": "52f4063a-c8fa-4aa7-ba25-8e6604b36c14", + "start": { + "$date": "2021-07-29T01:01:23.000Z" + }, + "end": { + "$date": "2021-07-29T01:18:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "af480b83-3029-41c9-ba20-cda7127785f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T01:02:01.000Z" + }, + "end": { + "$date": "2021-07-29T02:46:26.000Z" + }, + "events": [ + { + "uuid": "ac914250-a214-4d09-9374-9d4e9de1adf1", + "start": { + "$date": "2021-07-29T01:02:01.000Z" + }, + "end": { + "$date": "2021-07-29T02:08:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd071736-b061-42a5-bec3-1b9e2663f63a", + "start": { + "$date": "2021-07-29T02:08:01.000Z" + }, + "end": { + "$date": "2021-07-29T02:10:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f0baf58-2310-465d-979e-f5e25f1ceca8", + "start": { + "$date": "2021-07-29T02:10:01.000Z" + }, + "end": { + "$date": "2021-07-29T02:23:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9d99d6f-a01a-4538-80a2-c54d5d080591", + "start": { + "$date": "2021-07-29T02:23:01.000Z" + }, + "end": { + "$date": "2021-07-29T02:29:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4880be3-7af1-41cc-9786-b73c0dc98534", + "start": { + "$date": "2021-07-29T02:29:01.000Z" + }, + "end": { + "$date": "2021-07-29T02:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6cecfda0-ac2f-43b1-850b-85ae832ec332", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T02:12:15.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:29.000Z" + }, + "events": [ + { + "uuid": "46f34812-6eb7-4db2-9116-0e959d5d3b74", + "start": { + "$date": "2021-07-29T02:12:15.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ace2b86d-b8f2-42ad-9dcc-a81d746aa731", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-29T02:46:43.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:08.000Z" + }, + "events": [ + { + "uuid": "e05b6e46-9516-4024-8de2-d71ae76dc1ed", + "start": { + "$date": "2021-07-29T02:46:43.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "35747bee-c5a4-4c63-85e5-9b3b0b1dfd69", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-29T02:26:39.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:48.000Z" + }, + "events": [ + { + "uuid": "b22e32df-2eeb-48c9-a565-0f43ba9ae572", + "start": { + "$date": "2021-07-29T02:26:39.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "39141e1f-edb2-4082-aafb-c67cc4aaed8f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-29T02:27:59.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:11.000Z" + }, + "events": [ + { + "uuid": "1585426d-7232-468b-bd09-219e1c496368", + "start": { + "$date": "2021-07-29T02:27:59.000Z" + }, + "end": { + "$date": "2021-07-29T04:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6a898409-bbd2-4fc7-9dce-456474ba8646", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-29T02:43:20.000Z" + }, + "end": { + "$date": "2021-07-29T04:47:09.000Z" + }, + "events": [ + { + "uuid": "cf572d37-3658-454a-b243-7e44107d6797", + "start": { + "$date": "2021-07-29T02:43:20.000Z" + }, + "end": { + "$date": "2021-07-29T04:26:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83d7e4cb-e7da-47a7-8e7f-a431595ae5d1", + "start": { + "$date": "2021-07-29T04:26:20.000Z" + }, + "end": { + "$date": "2021-07-29T04:29:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "83d454d5-3781-4f6c-b7dd-1398b9676d2f", + "start": { + "$date": "2021-07-29T04:29:20.000Z" + }, + "end": { + "$date": "2021-07-29T04:47:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "71d95bb7-ec59-44ce-bfc8-ec13ef5775b7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T02:46:34.000Z" + }, + "end": { + "$date": "2021-07-29T06:16:32.000Z" + }, + "events": [ + { + "uuid": "96c5fb40-08d8-4bae-aebc-4fdb2eca20b0", + "start": { + "$date": "2021-07-29T02:46:34.000Z" + }, + "end": { + "$date": "2021-07-29T06:16:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91d7d031-8190-4c03-8085-436f01ccadf7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-29T03:57:53.000Z" + }, + "end": { + "$date": "2021-07-29T05:16:47.000Z" + }, + "events": [ + { + "uuid": "512c0097-0299-44bf-b45f-2d3f32df64ef", + "start": { + "$date": "2021-07-29T03:57:53.000Z" + }, + "end": { + "$date": "2021-07-29T05:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3102787a-f3ef-45af-8db7-272c7c72d340", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-29T04:01:50.000Z" + }, + "end": { + "$date": "2021-07-29T04:58:21.000Z" + }, + "events": [ + { + "uuid": "c3e3ece2-1a41-4bf9-b1b5-fefb000cf285", + "start": { + "$date": "2021-07-29T04:01:50.000Z" + }, + "end": { + "$date": "2021-07-29T04:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f885c235-ec94-4934-ba75-1d481ecadafe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-29T04:02:06.000Z" + }, + "end": { + "$date": "2021-07-29T04:36:06.000Z" + }, + "events": [ + { + "uuid": "ebe1093e-fe89-4ece-b9ff-4f4cfbf650bd", + "start": { + "$date": "2021-07-29T04:02:06.000Z" + }, + "end": { + "$date": "2021-07-29T04:36:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "632556db-31da-43c8-bd03-954de81bf926", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-29T04:03:14.000Z" + }, + "end": { + "$date": "2021-07-29T05:03:36.000Z" + }, + "events": [ + { + "uuid": "03c4d70e-f5b3-421d-b595-591a9f6f0bbf", + "start": { + "$date": "2021-07-29T04:03:14.000Z" + }, + "end": { + "$date": "2021-07-29T05:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e6a0a65b-bbfb-46a5-9cb8-9a91c54f252b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-29T04:44:57.000Z" + }, + "end": { + "$date": "2021-07-29T04:46:02.000Z" + }, + "events": [ + { + "uuid": "6f3e404a-ae71-4bc5-9b97-0ff1644590d6", + "start": { + "$date": "2021-07-29T04:44:57.000Z" + }, + "end": { + "$date": "2021-07-29T04:46:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3a8215f1-f245-4b5a-acd1-047b16290565", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-29T04:46:42.000Z" + }, + "end": { + "$date": "2021-07-29T05:42:38.000Z" + }, + "events": [ + { + "uuid": "23805295-607b-44d8-97ed-f8b65a0f6a1e", + "start": { + "$date": "2021-07-29T04:46:42.000Z" + }, + "end": { + "$date": "2021-07-29T05:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "433ba304-03f3-4e61-a266-1b5b5f4ba133", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-29T04:47:25.000Z" + }, + "end": { + "$date": "2021-07-29T05:32:15.000Z" + }, + "events": [ + { + "uuid": "c6aadb77-3e4c-4840-af8d-30f216818975", + "start": { + "$date": "2021-07-29T04:47:25.000Z" + }, + "end": { + "$date": "2021-07-29T05:32:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c3ed774b-af43-4a12-baff-9626c57db256", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-29T04:59:23.000Z" + }, + "end": { + "$date": "2021-07-29T05:16:41.000Z" + }, + "events": [ + { + "uuid": "43ca6a2b-cfec-49b9-9959-fa75292d7c90", + "start": { + "$date": "2021-07-29T04:59:23.000Z" + }, + "end": { + "$date": "2021-07-29T05:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "523a20c3-7dc6-49cd-844a-70c76559f1dd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-29T05:03:45.000Z" + }, + "end": { + "$date": "2021-07-29T05:16:54.000Z" + }, + "events": [ + { + "uuid": "9e6421ff-d1b0-4acc-92f5-042331474096", + "start": { + "$date": "2021-07-29T05:03:45.000Z" + }, + "end": { + "$date": "2021-07-29T05:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "382092d2-af5a-4596-b1a7-a22036edacd4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-29T05:17:08.000Z" + }, + "end": { + "$date": "2021-07-29T06:06:49.000Z" + }, + "events": [ + { + "uuid": "68ebdfba-c98a-4889-803f-6a4473f8a929", + "start": { + "$date": "2021-07-29T05:17:08.000Z" + }, + "end": { + "$date": "2021-07-29T06:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8cbd2be-1d1b-4442-8343-e5d050077943", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-29T05:17:11.000Z" + }, + "end": { + "$date": "2021-07-29T06:05:38.000Z" + }, + "events": [ + { + "uuid": "e66cee43-1ba0-4c98-be6c-b0a87d73c170", + "start": { + "$date": "2021-07-29T05:17:11.000Z" + }, + "end": { + "$date": "2021-07-29T06:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "251efba5-733f-4afe-855c-0d4b9631e077", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-29T05:17:20.000Z" + }, + "end": { + "$date": "2021-07-29T06:06:42.000Z" + }, + "events": [ + { + "uuid": "f46b9ad2-6121-4e02-83b7-f58dba97281c", + "start": { + "$date": "2021-07-29T05:17:20.000Z" + }, + "end": { + "$date": "2021-07-29T06:06:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e579d8ba-e4de-4387-8726-fa2ea9db8dac", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-29T06:12:20.000Z" + }, + "end": { + "$date": "2021-07-29T06:33:36.000Z" + }, + "events": [ + { + "uuid": "f22cf287-0ed0-40e7-84c8-0666bd78d872", + "start": { + "$date": "2021-07-29T06:12:20.000Z" + }, + "end": { + "$date": "2021-07-29T06:33:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6ee1d692-67fd-4517-9374-ba8cef0efb78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T06:16:52.000Z" + }, + "end": { + "$date": "2021-07-29T07:53:55.000Z" + }, + "events": [ + { + "uuid": "06c2f697-e2f5-4c13-85a0-b9d64f1f3798", + "start": { + "$date": "2021-07-29T06:16:52.000Z" + }, + "end": { + "$date": "2021-07-29T07:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "41a087dd-6c02-4d85-81b6-d1ca4f856bf9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T07:54:36.000Z" + }, + "end": { + "$date": "2021-07-29T08:00:59.000Z" + }, + "events": [ + { + "uuid": "be8b8a6a-d9c8-443a-b4a7-c118a15a1185", + "start": { + "$date": "2021-07-29T07:54:36.000Z" + }, + "end": { + "$date": "2021-07-29T08:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "69c8e5b7-b008-44d5-b003-7e5bd371b1c1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-29T13:05:40.000Z" + }, + "end": { + "$date": "2021-07-29T13:49:02.000Z" + }, + "events": [ + { + "uuid": "b704736d-fa01-45ea-a99d-34270ad64f0b", + "start": { + "$date": "2021-07-29T13:05:40.000Z" + }, + "end": { + "$date": "2021-07-29T13:49:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "f39c01fc-54d3-4570-91a6-2e53f0475977", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-29T14:39:22.000Z" + }, + "end": { + "$date": "2021-07-29T14:39:25.000Z" + }, + "events": [ + { + "uuid": "96b563f7-9f5c-4136-92e2-99a124d2ebb4", + "start": { + "$date": "2021-07-29T14:39:22.000Z" + }, + "end": { + "$date": "2021-07-29T14:39:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cb673259-c6cd-4c5f-afaf-7238419e1fc4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T13:55:21.000Z" + }, + "end": { + "$date": "2021-07-29T14:03:55.000Z" + }, + "events": [ + { + "uuid": "f6d2f069-45c8-40e2-b3b7-da6ec8484691", + "start": { + "$date": "2021-07-29T13:55:21.000Z" + }, + "end": { + "$date": "2021-07-29T14:03:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4d80a6d2-d0ca-4425-ba49-ccffec5c523d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-29T14:01:45.000Z" + }, + "end": { + "$date": "2021-07-29T17:11:33.000Z" + }, + "events": [ + { + "uuid": "8c1104f5-b5bd-4b00-bf11-4f8e0875269d", + "start": { + "$date": "2021-07-29T14:01:45.000Z" + }, + "end": { + "$date": "2021-07-29T17:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3c42902e-fd4c-4a74-8884-6da531f09cd0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T15:55:00.000Z" + }, + "end": { + "$date": "2021-07-29T16:54:29.000Z" + }, + "events": [ + { + "uuid": "164343f6-2c2f-4916-b363-7372571f66fc", + "start": { + "$date": "2021-07-29T15:55:00.000Z" + }, + "end": { + "$date": "2021-07-29T16:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e602bfd8-c438-4153-bca2-bd4cca92dcf5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-29T16:02:13.000Z" + }, + "end": { + "$date": "2021-07-29T16:32:30.000Z" + }, + "events": [ + { + "uuid": "1f757298-06bb-4e02-829a-680c4d48ab1d", + "start": { + "$date": "2021-07-29T16:02:13.000Z" + }, + "end": { + "$date": "2021-07-29T16:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "afa47cc8-d4fc-4277-950a-7972de672462", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-29T18:00:09.000Z" + }, + "end": { + "$date": "2021-07-29T18:05:50.000Z" + }, + "events": [ + { + "uuid": "b07f17cc-f911-4639-ac94-eb9598083f8e", + "start": { + "$date": "2021-07-29T18:00:09.000Z" + }, + "end": { + "$date": "2021-07-29T18:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "044331ac-a20f-4862-a8cc-d2ddd24e6984", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-07-29T18:31:59.000Z" + }, + "end": { + "$date": "2021-07-29T18:42:37.000Z" + }, + "events": [ + { + "uuid": "3d12a2ef-3b64-480b-8f1f-1b907c992d98", + "start": { + "$date": "2021-07-29T18:31:59.000Z" + }, + "end": { + "$date": "2021-07-29T18:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "09baffca-7324-41b6-a4ea-e21c03dcf7eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T20:02:50.000Z" + }, + "end": { + "$date": "2021-07-29T20:03:10.000Z" + }, + "events": [ + { + "uuid": "ff9a2992-fd83-4c8a-a0e6-988a29d445cc", + "start": { + "$date": "2021-07-29T20:02:50.000Z" + }, + "end": { + "$date": "2021-07-29T20:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ffe1671-519f-40ef-aade-e3460a2bfd0d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-29T20:13:17.000Z" + }, + "end": { + "$date": "2021-07-29T20:46:56.000Z" + }, + "events": [ + { + "uuid": "8e52331e-0c61-471a-96b1-577edb83bf2f", + "start": { + "$date": "2021-07-29T20:13:17.000Z" + }, + "end": { + "$date": "2021-07-29T20:46:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "b9555c50-e526-4a52-be64-41e209bf8aa4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T20:56:29.000Z" + }, + "end": { + "$date": "2021-07-29T20:59:06.000Z" + }, + "events": [ + { + "uuid": "024fbac3-d64a-4da6-9154-c594cda4bd9a", + "start": { + "$date": "2021-07-29T20:56:29.000Z" + }, + "end": { + "$date": "2021-07-29T20:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "c46db914-9c55-413e-9d56-ef2bac0f71cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T21:59:35.000Z" + }, + "end": { + "$date": "2021-07-29T22:01:24.000Z" + }, + "events": [ + { + "uuid": "4e63a50c-abed-4707-95c8-63a66e002079", + "start": { + "$date": "2021-07-29T21:59:35.000Z" + }, + "end": { + "$date": "2021-07-29T22:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ceeed438-4be8-433b-9753-4ec109f22887", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-29T21:52:45.000Z" + }, + "end": { + "$date": "2021-07-30T00:10:33.000Z" + }, + "events": [ + { + "uuid": "a97878fc-6328-4c82-94c2-6c4505e0877b", + "start": { + "$date": "2021-07-29T21:52:45.000Z" + }, + "end": { + "$date": "2021-07-30T00:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "fc73b47f-033b-4ee2-a9ce-a760abb0c073", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T21:59:35.000Z" + }, + "end": { + "$date": "2021-07-29T22:04:34.000Z" + }, + "events": [ + { + "uuid": "12f78af9-5150-4aa5-9586-120079da235f", + "start": { + "$date": "2021-07-29T21:59:35.000Z" + }, + "end": { + "$date": "2021-07-29T22:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d8f34335-f763-4d63-a36b-c350aed56463", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-29T22:03:08.000Z" + }, + "end": { + "$date": "2021-07-30T02:10:21.000Z" + }, + "events": [ + { + "uuid": "a488e389-845d-425a-896a-10b985968876", + "start": { + "$date": "2021-07-29T22:03:08.000Z" + }, + "end": { + "$date": "2021-07-30T02:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "b537e954-a05e-4219-8979-d5a7b494e254", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-29T22:30:45.000Z" + }, + "end": { + "$date": "2021-07-29T22:31:06.000Z" + }, + "events": [ + { + "uuid": "04c9980f-a009-4f20-91b5-163c2c33df3c", + "start": { + "$date": "2021-07-29T22:30:45.000Z" + }, + "end": { + "$date": "2021-07-29T22:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87f17061-774f-4905-a145-74cda89a80d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-30T00:16:20.000Z" + }, + "end": { + "$date": "2021-07-30T02:05:34.000Z" + }, + "events": [ + { + "uuid": "a137b544-df13-4850-a6ec-fe36bd17241f", + "start": { + "$date": "2021-07-30T00:16:20.000Z" + }, + "end": { + "$date": "2021-07-30T02:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8c13b6f2-0ff1-46e4-8c79-9096671182ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-30T02:12:01.000Z" + }, + "end": { + "$date": "2021-07-30T03:16:11.000Z" + }, + "events": [ + { + "uuid": "aaab3be2-4d88-450c-87b6-0960faa22f6b", + "start": { + "$date": "2021-07-30T02:12:01.000Z" + }, + "end": { + "$date": "2021-07-30T03:16:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c8b3b42f-175c-4a46-954d-48ee197f3ad8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-30T02:27:01.000Z" + }, + "end": { + "$date": "2021-07-30T02:30:32.000Z" + }, + "events": [ + { + "uuid": "e4ac0005-def5-4ee6-8e63-44e23d7c4740", + "start": { + "$date": "2021-07-30T02:27:01.000Z" + }, + "end": { + "$date": "2021-07-30T02:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fce2da75-9dc0-4983-9c6b-a81edfdcbcc4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-30T03:09:58.000Z" + }, + "end": { + "$date": "2021-07-30T03:59:31.000Z" + }, + "events": [ + { + "uuid": "d0e62680-29ef-45cc-9c5d-1e3595851e5d", + "start": { + "$date": "2021-07-30T03:09:58.000Z" + }, + "end": { + "$date": "2021-07-30T03:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "77cc5e84-4d84-4cd8-89a0-b3a181464966", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-30T02:12:01.000Z" + }, + "end": { + "$date": "2021-07-30T07:54:00.000Z" + }, + "events": [ + { + "uuid": "13f868c9-5c68-4606-8003-c9f319816fde", + "start": { + "$date": "2021-07-30T02:12:01.000Z" + }, + "end": { + "$date": "2021-07-30T07:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0bc6ef78-cf0a-47ef-93ad-973dbbaa302c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-30T03:56:06.000Z" + }, + "end": { + "$date": "2021-07-30T05:08:23.000Z" + }, + "events": [ + { + "uuid": "82fddcc9-8bc8-4b48-b1d5-8aa582824925", + "start": { + "$date": "2021-07-30T03:56:06.000Z" + }, + "end": { + "$date": "2021-07-30T05:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a438ab67-2d41-4db3-94e3-0bf562c9b5a0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-07-30T03:56:41.000Z" + }, + "end": { + "$date": "2021-07-30T06:21:03.000Z" + }, + "events": [ + { + "uuid": "89bcb740-8eb9-49a2-b4a3-098e7796b670", + "start": { + "$date": "2021-07-30T03:56:41.000Z" + }, + "end": { + "$date": "2021-07-30T06:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2a67f827-45ee-4639-a06e-ab12092d5079", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-30T05:08:27.000Z" + }, + "end": { + "$date": "2021-07-30T06:21:42.000Z" + }, + "events": [ + { + "uuid": "ec6273ab-a064-4aae-a700-5ef6ba658c14", + "start": { + "$date": "2021-07-30T05:08:27.000Z" + }, + "end": { + "$date": "2021-07-30T06:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3062b44e-4803-4079-8b24-ebb61abcde36", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-30T14:31:45.000Z" + }, + "end": { + "$date": "2021-07-30T15:09:43.000Z" + }, + "events": [ + { + "uuid": "ff46a50c-dc73-4621-a55f-3162257003eb", + "start": { + "$date": "2021-07-30T14:31:45.000Z" + }, + "end": { + "$date": "2021-07-30T14:57:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4daa270e-3c19-4af5-9243-46cd648c072d", + "start": { + "$date": "2021-07-30T14:57:45.000Z" + }, + "end": { + "$date": "2021-07-30T15:04:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2da1746a-b684-40bd-a560-fdd60998fb58", + "start": { + "$date": "2021-07-30T15:04:45.000Z" + }, + "end": { + "$date": "2021-07-30T15:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "783f92a5-c264-43ef-a7d7-0c3b9a6780e8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-30T15:20:06.000Z" + }, + "end": { + "$date": "2021-07-30T18:50:04.000Z" + }, + "events": [ + { + "uuid": "bbf1cd47-1980-487b-afb5-6b8a0e7eeed1", + "start": { + "$date": "2021-07-30T15:20:06.000Z" + }, + "end": { + "$date": "2021-07-30T15:35:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4868f88-1167-496b-b2a6-dd8b611b71a5", + "start": { + "$date": "2021-07-30T15:35:06.000Z" + }, + "end": { + "$date": "2021-07-30T15:38:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "022d32c9-824f-41ba-82f6-c7b26f64be60", + "start": { + "$date": "2021-07-30T15:38:06.000Z" + }, + "end": { + "$date": "2021-07-30T18:22:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5840a78-3f5f-41e9-9246-6c501b8a319e", + "start": { + "$date": "2021-07-30T18:22:06.000Z" + }, + "end": { + "$date": "2021-07-30T18:50:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5885b975-efd4-40af-82de-2a83bf56fb66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-30T16:03:54.000Z" + }, + "end": { + "$date": "2021-07-30T17:35:21.000Z" + }, + "events": [ + { + "uuid": "74157d03-10b0-4346-b97a-4851a9966d61", + "start": { + "$date": "2021-07-30T16:03:54.000Z" + }, + "end": { + "$date": "2021-07-30T16:16:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36c8cb0a-42a5-452e-a6a8-4381d444216d", + "start": { + "$date": "2021-07-30T16:16:54.000Z" + }, + "end": { + "$date": "2021-07-30T16:18:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5c20405-4391-48c2-88b8-687c948f80ad", + "start": { + "$date": "2021-07-30T16:18:54.000Z" + }, + "end": { + "$date": "2021-07-30T17:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e75009dd-d4bb-4779-85f6-5bda10124b29", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-30T18:21:11.000Z" + }, + "end": { + "$date": "2021-07-30T18:22:56.000Z" + }, + "events": [ + { + "uuid": "c850a75b-d002-47fc-af0b-3bcbfdf2b0ca", + "start": { + "$date": "2021-07-30T18:21:11.000Z" + }, + "end": { + "$date": "2021-07-30T18:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d1fb0bc2-9a36-498f-bd63-bb8e7033425c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-30T18:26:12.000Z" + }, + "end": { + "$date": "2021-07-30T18:41:34.000Z" + }, + "events": [ + { + "uuid": "1999d448-4d74-4de3-8dc3-b7c8dfb8d3bf", + "start": { + "$date": "2021-07-30T18:26:12.000Z" + }, + "end": { + "$date": "2021-07-30T18:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3547aa48-7581-4e17-b55e-2dca41cf998b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-30T18:49:59.000Z" + }, + "end": { + "$date": "2021-07-30T20:31:13.000Z" + }, + "events": [ + { + "uuid": "90d6d888-89b8-40b2-94d6-846c7af04c7d", + "start": { + "$date": "2021-07-30T18:49:59.000Z" + }, + "end": { + "$date": "2021-07-30T20:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab1b7ce5-d1c6-43a3-bdd4-bf2a79e81f59", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-30T19:21:44.000Z" + }, + "end": { + "$date": "2021-07-30T20:05:16.000Z" + }, + "events": [ + { + "uuid": "e4f34b04-cadd-4ef8-a857-72764b0ba8bc", + "start": { + "$date": "2021-07-30T19:21:44.000Z" + }, + "end": { + "$date": "2021-07-30T20:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e4d0bee3-6fba-4525-a54d-6648582a112e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-30T20:12:28.000Z" + }, + "end": { + "$date": "2021-07-30T23:41:03.000Z" + }, + "events": [ + { + "uuid": "7a9e7578-8a89-4c3c-b2e5-207a9dce6e3c", + "start": { + "$date": "2021-07-30T20:12:28.000Z" + }, + "end": { + "$date": "2021-07-30T22:20:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1deed7cd-2741-4b7c-8386-28852a216850", + "start": { + "$date": "2021-07-30T22:20:28.000Z" + }, + "end": { + "$date": "2021-07-30T22:22:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fb90cb8b-e245-44f4-92d2-b7d78b93a47b", + "start": { + "$date": "2021-07-30T22:22:28.000Z" + }, + "end": { + "$date": "2021-07-30T22:32:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "082bdd93-0cdd-44a2-b80a-1dc5871aa183", + "start": { + "$date": "2021-07-30T22:32:28.000Z" + }, + "end": { + "$date": "2021-07-30T22:33:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2dd19da-13f8-4e6e-8a8a-1db8ce53896f", + "start": { + "$date": "2021-07-30T22:33:28.000Z" + }, + "end": { + "$date": "2021-07-30T23:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ec0391a5-ff2a-4e9d-8616-fff65178d45e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-07-30T21:17:22.000Z" + }, + "end": { + "$date": "2021-07-30T22:31:01.000Z" + }, + "events": [ + { + "uuid": "a5beed20-cde2-4cfa-bd19-2ad91e7a7d27", + "start": { + "$date": "2021-07-30T21:17:22.000Z" + }, + "end": { + "$date": "2021-07-30T22:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "be4c0b1a-9c9e-4a93-a7de-87587610139c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-30T22:24:32.000Z" + }, + "end": { + "$date": "2021-07-30T22:29:02.000Z" + }, + "events": [ + { + "uuid": "efa6751c-8066-4071-a718-1c40affc1675", + "start": { + "$date": "2021-07-30T22:24:32.000Z" + }, + "end": { + "$date": "2021-07-30T22:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "b2a71803-795b-4780-a348-c8dc9e7665a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-30T23:44:28.000Z" + }, + "end": { + "$date": "2021-07-30T23:45:58.000Z" + }, + "events": [ + { + "uuid": "07d8dafd-6d7d-4b3b-9fa1-893e5ba5fff7", + "start": { + "$date": "2021-07-30T23:44:28.000Z" + }, + "end": { + "$date": "2021-07-30T23:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3dbc6430-910c-4231-bc5a-21f6853fe56d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-30T23:13:19.000Z" + }, + "end": { + "$date": "2021-07-31T01:36:22.000Z" + }, + "events": [ + { + "uuid": "3b9fc147-cc8a-403e-9b2e-6720fe246add", + "start": { + "$date": "2021-07-30T23:13:19.000Z" + }, + "end": { + "$date": "2021-07-31T01:36:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "72b071b0-a9ec-4801-ba90-7ee2e6621a50", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-31T00:33:16.000Z" + }, + "end": { + "$date": "2021-07-31T02:08:54.000Z" + }, + "events": [ + { + "uuid": "8959d3c2-6c6d-48b1-a65c-6dae36834221", + "start": { + "$date": "2021-07-31T00:33:16.000Z" + }, + "end": { + "$date": "2021-07-31T02:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce3bcca0-83dc-462a-8fe3-1515aac393b3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-31T00:33:56.000Z" + }, + "end": { + "$date": "2021-07-31T02:17:37.000Z" + }, + "events": [ + { + "uuid": "2fd2580a-a175-498a-a9c8-e85927c13a85", + "start": { + "$date": "2021-07-31T00:33:56.000Z" + }, + "end": { + "$date": "2021-07-31T02:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4b12188b-512a-4524-b28c-c86cfcf60d67", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-31T00:39:05.000Z" + }, + "end": { + "$date": "2021-07-31T00:40:04.000Z" + }, + "events": [ + { + "uuid": "5419674a-c0ab-4703-9646-93825b1fe014", + "start": { + "$date": "2021-07-31T00:39:05.000Z" + }, + "end": { + "$date": "2021-07-31T00:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dbe227f1-4738-4fb2-8f79-496fb306221a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-31T00:40:10.000Z" + }, + "end": { + "$date": "2021-07-31T02:02:58.000Z" + }, + "events": [ + { + "uuid": "7b25af0b-b162-48c7-83db-00568bb452f5", + "start": { + "$date": "2021-07-31T00:40:10.000Z" + }, + "end": { + "$date": "2021-07-31T02:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4391fd70-ddf7-4fb3-9d0d-8db260e7f85e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-07-31T01:26:09.000Z" + }, + "end": { + "$date": "2021-07-31T03:34:41.000Z" + }, + "events": [ + { + "uuid": "2d8cb83c-890a-4f2c-9f63-4477190807e6", + "start": { + "$date": "2021-07-31T01:26:09.000Z" + }, + "end": { + "$date": "2021-07-31T03:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "49e3baf3-336a-46ef-a961-4836723c66a6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T02:00:35.000Z" + }, + "end": { + "$date": "2021-07-31T03:06:42.000Z" + }, + "events": [ + { + "uuid": "3d47b2b5-69c5-405d-9241-351ab26614f3", + "start": { + "$date": "2021-07-31T02:00:35.000Z" + }, + "end": { + "$date": "2021-07-31T03:06:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "62646de0-882b-4ec2-ab73-99d83969333d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T03:07:32.000Z" + }, + "end": { + "$date": "2021-07-31T07:30:45.000Z" + }, + "events": [ + { + "uuid": "8dba0680-4cb0-4e4a-a392-3a862828ed93", + "start": { + "$date": "2021-07-31T03:07:32.000Z" + }, + "end": { + "$date": "2021-07-31T07:21:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "956796fe-eef9-4130-ac2c-2faa693a4d06", + "start": { + "$date": "2021-07-31T07:21:32.000Z" + }, + "end": { + "$date": "2021-07-31T07:29:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7465793a-d409-4c2c-9331-f43296864774", + "start": { + "$date": "2021-07-31T07:29:32.000Z" + }, + "end": { + "$date": "2021-07-31T07:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36f983dc-100e-42a5-afd3-e3fabb0e159f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-07-31T03:42:38.000Z" + }, + "end": { + "$date": "2021-07-31T05:54:46.000Z" + }, + "events": [ + { + "uuid": "49d43bbf-e700-4b88-b0e9-7bc381ebbd59", + "start": { + "$date": "2021-07-31T03:42:38.000Z" + }, + "end": { + "$date": "2021-07-31T05:54:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b2bd6e3a-e135-4502-90bd-deffe1ebc8e3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-31T03:44:35.000Z" + }, + "end": { + "$date": "2021-07-31T06:58:59.000Z" + }, + "events": [ + { + "uuid": "23b7ce28-9368-4834-a5c1-71820a618ae9", + "start": { + "$date": "2021-07-31T03:44:35.000Z" + }, + "end": { + "$date": "2021-07-31T06:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "089de865-d70b-46be-adaf-e0a95cbaf3c6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-07-31T05:23:44.000Z" + }, + "end": { + "$date": "2021-07-31T05:54:55.000Z" + }, + "events": [ + { + "uuid": "a61d98a8-3c2e-4f95-8eef-43cf75572a8b", + "start": { + "$date": "2021-07-31T05:23:44.000Z" + }, + "end": { + "$date": "2021-07-31T05:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c564998-0c06-4870-ab8e-fdc18588c322", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-31T04:31:11.000Z" + }, + "end": { + "$date": "2021-07-31T05:08:03.000Z" + }, + "events": [ + { + "uuid": "a7a2260f-738d-4374-a2e5-c34dd3f8f456", + "start": { + "$date": "2021-07-31T04:31:11.000Z" + }, + "end": { + "$date": "2021-07-31T05:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "32e4ea50-8e4c-483a-af0f-86848bdd7258", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-31T04:55:38.000Z" + }, + "end": { + "$date": "2021-07-31T04:57:28.000Z" + }, + "events": [ + { + "uuid": "c5c1ba3d-5a4f-4cc0-8dba-2f02a2a79e87", + "start": { + "$date": "2021-07-31T04:55:38.000Z" + }, + "end": { + "$date": "2021-07-31T04:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c3985aa4-1387-4102-8e3f-169ef893445f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-31T04:57:58.000Z" + }, + "end": { + "$date": "2021-07-31T04:59:42.000Z" + }, + "events": [ + { + "uuid": "7b4a3fb9-eae6-49f4-9b8a-40935acb5fd8", + "start": { + "$date": "2021-07-31T04:57:58.000Z" + }, + "end": { + "$date": "2021-07-31T04:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "984f253d-2181-4558-9956-c2598235b2eb", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-31T05:00:20.000Z" + }, + "end": { + "$date": "2021-07-31T05:02:12.000Z" + }, + "events": [ + { + "uuid": "61cf3bac-0313-418b-ae9b-6672a5957828", + "start": { + "$date": "2021-07-31T05:00:20.000Z" + }, + "end": { + "$date": "2021-07-31T05:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "580404f3-612f-48d6-ad93-3f8b6726aa4f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-31T05:09:01.000Z" + }, + "end": { + "$date": "2021-07-31T09:13:49.000Z" + }, + "events": [ + { + "uuid": "45b4dea4-b4d8-40dc-b1b6-66007942f476", + "start": { + "$date": "2021-07-31T05:09:01.000Z" + }, + "end": { + "$date": "2021-07-31T05:39:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8b547e8d-2f0d-4c89-beea-014bbccbbcc1", + "start": { + "$date": "2021-07-31T05:39:01.000Z" + }, + "end": { + "$date": "2021-07-31T06:37:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f3dfa8bd-a59f-445a-8b20-d2eec0734d57", + "start": { + "$date": "2021-07-31T06:37:01.000Z" + }, + "end": { + "$date": "2021-07-31T09:13:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5a874d4b-a184-4fed-b29e-e2cd08172c6c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-31T05:10:18.000Z" + }, + "end": { + "$date": "2021-07-31T05:12:22.000Z" + }, + "events": [ + { + "uuid": "901044c1-d2ea-425d-a760-17e877b13aac", + "start": { + "$date": "2021-07-31T05:10:18.000Z" + }, + "end": { + "$date": "2021-07-31T05:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cb05630a-4725-4d99-80a4-97c63c83eb70", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-31T05:25:12.000Z" + }, + "end": { + "$date": "2021-07-31T05:30:02.000Z" + }, + "events": [ + { + "uuid": "452bd842-b12a-4c55-989f-afa4d5cece56", + "start": { + "$date": "2021-07-31T05:25:12.000Z" + }, + "end": { + "$date": "2021-07-31T05:30:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3690145f-25dd-4ad2-a37f-40d452a66112", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-07-31T05:37:24.000Z" + }, + "end": { + "$date": "2021-07-31T06:46:53.000Z" + }, + "events": [ + { + "uuid": "dcf2fa5b-e9d4-4803-a6c6-b42cdb8dcfc6", + "start": { + "$date": "2021-07-31T05:37:24.000Z" + }, + "end": { + "$date": "2021-07-31T06:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f9ed292-58e1-48af-a26e-e4df7c34c1bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-31T06:38:40.000Z" + }, + "end": { + "$date": "2021-07-31T07:01:06.000Z" + }, + "events": [ + { + "uuid": "09a7063a-39d0-4993-a5e0-fc324c2dde9e", + "start": { + "$date": "2021-07-31T06:38:40.000Z" + }, + "end": { + "$date": "2021-07-31T07:01:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c8e950d-f433-45d7-af42-7193392e7a00", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-07-31T07:05:18.000Z" + }, + "end": { + "$date": "2021-07-31T07:25:55.000Z" + }, + "events": [ + { + "uuid": "6a91d858-f8d0-4c1b-9240-b543b2411377", + "start": { + "$date": "2021-07-31T07:05:18.000Z" + }, + "end": { + "$date": "2021-07-31T07:25:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9bec3f72-de1c-4d69-89ec-4e80b9f7dd24", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T07:42:02.000Z" + }, + "end": { + "$date": "2021-07-31T09:14:44.000Z" + }, + "events": [ + { + "uuid": "1f1cf3a7-646c-4447-b1e6-d557c4a805e9", + "start": { + "$date": "2021-07-31T07:42:02.000Z" + }, + "end": { + "$date": "2021-07-31T09:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a48731d7-925e-4dfe-b5c5-8e9a384763b7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-31T09:14:04.000Z" + }, + "end": { + "$date": "2021-07-31T09:32:33.000Z" + }, + "events": [ + { + "uuid": "a173cd3a-695f-4220-854f-5538e1e34f2d", + "start": { + "$date": "2021-07-31T09:14:04.000Z" + }, + "end": { + "$date": "2021-07-31T09:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3926d374-d8e9-4735-8347-85bec77fad0b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T14:42:42.000Z" + }, + "end": { + "$date": "2021-07-31T15:25:51.000Z" + }, + "events": [ + { + "uuid": "e4dc2164-d1f1-415f-9257-51fcde467c60", + "start": { + "$date": "2021-07-31T14:42:42.000Z" + }, + "end": { + "$date": "2021-07-31T15:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "473799c2-d79f-4b0e-915a-3df931950b75", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-07-31T15:24:42.000Z" + }, + "end": { + "$date": "2021-07-31T15:59:41.000Z" + }, + "events": [ + { + "uuid": "47531bde-0d38-4e6f-9605-73711546d73d", + "start": { + "$date": "2021-07-31T15:24:42.000Z" + }, + "end": { + "$date": "2021-07-31T15:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f4501bf5-89bb-413b-88a1-77d9bb5917c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T15:26:15.000Z" + }, + "end": { + "$date": "2021-07-31T15:45:12.000Z" + }, + "events": [ + { + "uuid": "94f75fb3-d88c-449b-a73d-35dadbe3b191", + "start": { + "$date": "2021-07-31T15:26:15.000Z" + }, + "end": { + "$date": "2021-07-31T15:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "e6d1e08f-ea3c-4dd6-8190-44e2a6bae8e4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T15:51:27.000Z" + }, + "end": { + "$date": "2021-07-31T16:04:54.000Z" + }, + "events": [ + { + "uuid": "4ccc993c-28af-4506-8051-c6b4aff39851", + "start": { + "$date": "2021-07-31T15:51:27.000Z" + }, + "end": { + "$date": "2021-07-31T16:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "809f6636-7c40-4bd2-b451-58069173e193", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-07-31T15:59:47.000Z" + }, + "end": { + "$date": "2021-07-31T17:04:49.000Z" + }, + "events": [ + { + "uuid": "61c17d61-9c1f-4165-bb47-dc70e0275009", + "start": { + "$date": "2021-07-31T15:59:47.000Z" + }, + "end": { + "$date": "2021-07-31T16:19:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36e653a9-91f9-4491-83bb-a42173e45d83", + "start": { + "$date": "2021-07-31T16:19:47.000Z" + }, + "end": { + "$date": "2021-07-31T16:20:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc14ed21-1a57-4dfe-8e8c-f7635bc8498c", + "start": { + "$date": "2021-07-31T16:20:47.000Z" + }, + "end": { + "$date": "2021-07-31T17:04:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "91bc01a6-bae0-4002-a22f-1c8388b5ec87", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-31T16:25:55.000Z" + }, + "end": { + "$date": "2021-07-31T18:17:54.000Z" + }, + "events": [ + { + "uuid": "755c71e7-db95-465d-a88f-40ee4fe0e500", + "start": { + "$date": "2021-07-31T16:25:55.000Z" + }, + "end": { + "$date": "2021-07-31T18:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f2118556-d077-45f9-a543-39004f233f19", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T17:24:47.000Z" + }, + "end": { + "$date": "2021-07-31T19:36:36.000Z" + }, + "events": [ + { + "uuid": "fb44ea76-ebd1-4fd9-8681-3cc0afa3956e", + "start": { + "$date": "2021-07-31T17:24:47.000Z" + }, + "end": { + "$date": "2021-07-31T19:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3004a11a-4e80-4225-9861-8343dc577816", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-07-31T22:07:13.000Z" + }, + "end": { + "$date": "2021-07-31T23:15:02.000Z" + }, + "events": [ + { + "uuid": "6d3a4eed-301e-4d8c-b6f2-76bc1b3b7b23", + "start": { + "$date": "2021-07-31T22:07:13.000Z" + }, + "end": { + "$date": "2021-07-31T23:15:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d194cad2-b0ee-42c7-9d37-dc6cc3c89a8f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-07-31T22:37:15.000Z" + }, + "end": { + "$date": "2021-08-01T01:11:01.000Z" + }, + "events": [ + { + "uuid": "5936a88b-4ed8-4f77-9c76-6f64d2aa11e9", + "start": { + "$date": "2021-07-31T22:37:15.000Z" + }, + "end": { + "$date": "2021-08-01T01:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5469e10d-95a6-4af8-8038-4b52fc831dcc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-07-31T23:32:56.000Z" + }, + "end": { + "$date": "2021-08-01T03:04:49.000Z" + }, + "events": [ + { + "uuid": "2f782a76-bd8a-4b96-9403-0dd210965f19", + "start": { + "$date": "2021-07-31T23:32:56.000Z" + }, + "end": { + "$date": "2021-08-01T01:18:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0041f376-2bd7-47f7-8bcb-2a5532d39771", + "start": { + "$date": "2021-08-01T01:18:56.000Z" + }, + "end": { + "$date": "2021-08-01T01:20:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0174c8ee-becc-4e59-85c1-720c76a1fa34", + "start": { + "$date": "2021-08-01T01:20:56.000Z" + }, + "end": { + "$date": "2021-08-01T01:30:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f260074-3db7-47b7-ab33-7902a578624b", + "start": { + "$date": "2021-08-01T01:30:56.000Z" + }, + "end": { + "$date": "2021-08-01T01:40:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fa197650-c2d9-4086-923e-a5351492f534", + "start": { + "$date": "2021-08-01T01:40:56.000Z" + }, + "end": { + "$date": "2021-08-01T03:04:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8f701620-df24-4b3b-aa0d-bc6b36580a63", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-07-31T23:35:26.000Z" + }, + "end": { + "$date": "2021-08-01T00:43:44.000Z" + }, + "events": [ + { + "uuid": "885f1755-dca2-472a-8743-87cc4409816a", + "start": { + "$date": "2021-07-31T23:35:26.000Z" + }, + "end": { + "$date": "2021-08-01T00:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0d1587d1-cb22-4ecc-aa23-f7b70cb20083", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-01T00:04:03.000Z" + }, + "end": { + "$date": "2021-08-01T00:17:28.000Z" + }, + "events": [ + { + "uuid": "1b5b1d83-36c7-41e8-b0f2-e7a54c784ecc", + "start": { + "$date": "2021-08-01T00:04:03.000Z" + }, + "end": { + "$date": "2021-08-01T00:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "7f6ae396-db7e-4e80-90a7-923668f08c6b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T00:32:39.000Z" + }, + "end": { + "$date": "2021-08-01T00:36:36.000Z" + }, + "events": [ + { + "uuid": "b964247c-cd26-42fc-a5b5-fac81304b186", + "start": { + "$date": "2021-08-01T00:32:39.000Z" + }, + "end": { + "$date": "2021-08-01T00:36:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d1ec29e6-f924-426f-ba1a-a437c85650f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-01T01:11:16.000Z" + }, + "end": { + "$date": "2021-08-01T08:24:55.000Z" + }, + "events": [ + { + "uuid": "eba2283a-c1a2-40c2-b843-004433c61867", + "start": { + "$date": "2021-08-01T01:11:16.000Z" + }, + "end": { + "$date": "2021-08-01T02:35:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ba9656bb-beca-45ed-a6d4-ae5dcea99dda", + "start": { + "$date": "2021-08-01T02:35:16.000Z" + }, + "end": { + "$date": "2021-08-01T02:40:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6fab15aa-417a-42db-9869-11dcb8d5de8d", + "start": { + "$date": "2021-08-01T02:40:16.000Z" + }, + "end": { + "$date": "2021-08-01T02:50:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ac8b1c90-874b-4810-885d-8c20b95319a0", + "start": { + "$date": "2021-08-01T02:50:16.000Z" + }, + "end": { + "$date": "2021-08-01T02:56:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed6a7d42-0095-4a0e-96e8-5ccbd4d50beb", + "start": { + "$date": "2021-08-01T02:56:16.000Z" + }, + "end": { + "$date": "2021-08-01T08:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "650370aa-fa0e-4b29-aa3c-8ab27c1b25fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T02:07:15.000Z" + }, + "end": { + "$date": "2021-08-01T03:08:23.000Z" + }, + "events": [ + { + "uuid": "f842fd67-b39d-430d-b5e0-65818e97a39b", + "start": { + "$date": "2021-08-01T02:07:15.000Z" + }, + "end": { + "$date": "2021-08-01T03:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9dd82d6-181c-4bdf-921f-7570dc65b3cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T02:21:46.000Z" + }, + "end": { + "$date": "2021-08-01T02:44:45.000Z" + }, + "events": [ + { + "uuid": "e8cadb9f-d473-436b-a3cd-6ef1d5b4bf21", + "start": { + "$date": "2021-08-01T02:21:46.000Z" + }, + "end": { + "$date": "2021-08-01T02:44:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95876e2e-55a3-4a5c-ac7d-93a9cfd2bf53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T02:53:37.000Z" + }, + "end": { + "$date": "2021-08-01T03:07:35.000Z" + }, + "events": [ + { + "uuid": "80d9fc15-f091-47fb-82fb-c756dc515b74", + "start": { + "$date": "2021-08-01T02:53:37.000Z" + }, + "end": { + "$date": "2021-08-01T03:07:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8f39afe-bc82-4921-9ba1-e4f002194009", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T03:17:15.000Z" + }, + "end": { + "$date": "2021-08-01T03:41:30.000Z" + }, + "events": [ + { + "uuid": "07f78cb2-968a-498c-b2a0-bf5032d5c554", + "start": { + "$date": "2021-08-01T03:17:15.000Z" + }, + "end": { + "$date": "2021-08-01T03:41:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6630f248-30eb-4a3c-981d-6b812e441dc5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T04:05:36.000Z" + }, + "end": { + "$date": "2021-08-01T04:45:04.000Z" + }, + "events": [ + { + "uuid": "8f49bcd4-7aae-498d-b3c8-d6a5e0fecde9", + "start": { + "$date": "2021-08-01T04:05:36.000Z" + }, + "end": { + "$date": "2021-08-01T04:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "87ec5636-89c2-4589-b9b7-468c71400e55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T03:30:51.000Z" + }, + "end": { + "$date": "2021-08-01T04:08:43.000Z" + }, + "events": [ + { + "uuid": "086851b3-a3e4-4203-9bb1-1a20a379ddef", + "start": { + "$date": "2021-08-01T03:30:51.000Z" + }, + "end": { + "$date": "2021-08-01T04:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32c6c36b-8289-42a6-b3d5-edb0ef228488", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T03:42:05.000Z" + }, + "end": { + "$date": "2021-08-01T03:43:25.000Z" + }, + "events": [ + { + "uuid": "8cf80636-d002-485e-87ec-bd897d6faacf", + "start": { + "$date": "2021-08-01T03:42:05.000Z" + }, + "end": { + "$date": "2021-08-01T03:43:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9f2a4157-3f83-4533-8545-6da9de1fcd1c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T04:26:10.000Z" + }, + "end": { + "$date": "2021-08-01T04:51:45.000Z" + }, + "events": [ + { + "uuid": "acc34b0b-ccbf-46b7-9c1c-6ad0d60eec24", + "start": { + "$date": "2021-08-01T04:26:10.000Z" + }, + "end": { + "$date": "2021-08-01T04:51:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0a4c70f7-e30a-4bd3-8348-2a49b2f34ebf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-01T04:41:19.000Z" + }, + "end": { + "$date": "2021-08-01T04:53:31.000Z" + }, + "events": [ + { + "uuid": "98333149-03c9-40a5-974e-9433ce2a0a99", + "start": { + "$date": "2021-08-01T04:41:19.000Z" + }, + "end": { + "$date": "2021-08-01T04:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0a8b9364-88f8-49cc-a051-d020fc51a0f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T04:45:15.000Z" + }, + "end": { + "$date": "2021-08-01T05:54:55.000Z" + }, + "events": [ + { + "uuid": "cba26813-1998-4073-ad68-ecdca3cdcdfa", + "start": { + "$date": "2021-08-01T04:45:15.000Z" + }, + "end": { + "$date": "2021-08-01T05:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e7dca391-5d39-4bc4-a80f-8233e6a730c2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T04:51:50.000Z" + }, + "end": { + "$date": "2021-08-01T05:55:13.000Z" + }, + "events": [ + { + "uuid": "68f3883c-30ee-4157-ab29-dc66447a9b50", + "start": { + "$date": "2021-08-01T04:51:50.000Z" + }, + "end": { + "$date": "2021-08-01T05:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00e248fb-7b5f-4ddf-8673-c8c5adbac5dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T07:09:35.000Z" + }, + "end": { + "$date": "2021-08-01T07:45:23.000Z" + }, + "events": [ + { + "uuid": "27f3101a-e8ab-4485-89b0-86c57f2ce597", + "start": { + "$date": "2021-08-01T07:09:35.000Z" + }, + "end": { + "$date": "2021-08-01T07:45:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4b600898-30de-4a13-b47e-a0e23743e2cf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T14:29:43.000Z" + }, + "end": { + "$date": "2021-08-01T16:12:20.000Z" + }, + "events": [ + { + "uuid": "238846a5-f962-427e-82ec-92da60152a05", + "start": { + "$date": "2021-08-01T14:29:43.000Z" + }, + "end": { + "$date": "2021-08-01T16:12:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "186f260e-0281-40f0-8733-c82bd5315c16", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T14:02:59.000Z" + }, + "end": { + "$date": "2021-08-01T14:18:40.000Z" + }, + "events": [ + { + "uuid": "3fa89fd7-7530-4e91-9bd8-89e22264d85c", + "start": { + "$date": "2021-08-01T14:02:59.000Z" + }, + "end": { + "$date": "2021-08-01T14:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8caaee62-7724-43ed-b8b3-9222f9e7b075", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T14:18:55.000Z" + }, + "end": { + "$date": "2021-08-01T15:21:29.000Z" + }, + "events": [ + { + "uuid": "15cf9b43-838f-4b86-852c-2c40646eb6d1", + "start": { + "$date": "2021-08-01T14:18:55.000Z" + }, + "end": { + "$date": "2021-08-01T15:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ab2b38a2-8784-4593-9c42-ea57131e3de1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T18:02:48.000Z" + }, + "end": { + "$date": "2021-08-01T18:14:04.000Z" + }, + "events": [ + { + "uuid": "7c0653c0-c421-4bbe-b8b2-a1b470cc92a4", + "start": { + "$date": "2021-08-01T18:02:48.000Z" + }, + "end": { + "$date": "2021-08-01T18:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "33829f2a-c28a-4c0a-915a-156eedad329f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-01T16:53:27.000Z" + }, + "end": { + "$date": "2021-08-01T18:17:19.000Z" + }, + "events": [ + { + "uuid": "75271b38-5cb7-45a3-a466-e0ea33423c0a", + "start": { + "$date": "2021-08-01T16:53:27.000Z" + }, + "end": { + "$date": "2021-08-01T18:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "627cb9b3-69e0-4d87-8ab3-86687492a8f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T18:07:46.000Z" + }, + "end": { + "$date": "2021-08-01T18:21:53.000Z" + }, + "events": [ + { + "uuid": "749b5af1-a7ad-4f45-b5a6-a8961a3baa6b", + "start": { + "$date": "2021-08-01T18:07:46.000Z" + }, + "end": { + "$date": "2021-08-01T18:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1bad2859-2767-4f63-a6a0-41137272ba4f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-01T18:40:37.000Z" + }, + "end": { + "$date": "2021-08-01T21:55:53.000Z" + }, + "events": [ + { + "uuid": "52be9486-3407-48c8-aa51-e99ccd9f824a", + "start": { + "$date": "2021-08-01T18:40:37.000Z" + }, + "end": { + "$date": "2021-08-01T21:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "889fee6e-143e-45ff-907d-acd7b21d1d1d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T20:01:44.000Z" + }, + "end": { + "$date": "2021-08-01T20:55:18.000Z" + }, + "events": [ + { + "uuid": "956c1a13-b106-4aa2-b768-1a38ed06303f", + "start": { + "$date": "2021-08-01T20:01:44.000Z" + }, + "end": { + "$date": "2021-08-01T20:33:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "853cae8d-c361-4759-9751-fdb12d87c05d", + "start": { + "$date": "2021-08-01T20:33:44.000Z" + }, + "end": { + "$date": "2021-08-01T20:47:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af7fb6f0-db90-4293-a18c-3ec5456dd1cd", + "start": { + "$date": "2021-08-01T20:47:44.000Z" + }, + "end": { + "$date": "2021-08-01T20:55:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ce0a93e-faba-4fab-a0a4-99b750d060f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T20:10:01.000Z" + }, + "end": { + "$date": "2021-08-01T20:34:42.000Z" + }, + "events": [ + { + "uuid": "2a7f6fc7-6a91-4e76-a222-9448d12c5914", + "start": { + "$date": "2021-08-01T20:10:01.000Z" + }, + "end": { + "$date": "2021-08-01T20:34:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "11b66fa1-9589-4b56-a4df-8facf7f5d9a4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T21:12:43.000Z" + }, + "end": { + "$date": "2021-08-01T21:21:29.000Z" + }, + "events": [ + { + "uuid": "3d693640-4524-48fd-9405-a20069e5d1de", + "start": { + "$date": "2021-08-01T21:12:43.000Z" + }, + "end": { + "$date": "2021-08-01T21:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fe387d1c-7f3a-448a-9b86-b311a283aba4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-01T22:07:34.000Z" + }, + "end": { + "$date": "2021-08-01T22:17:44.000Z" + }, + "events": [ + { + "uuid": "c8aab44d-a293-47ad-b4e2-2ccf1c25b30d", + "start": { + "$date": "2021-08-01T22:07:34.000Z" + }, + "end": { + "$date": "2021-08-01T22:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ca82fbb8-43fe-4ee0-ab85-3d7e2ea9279a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-01T22:12:40.000Z" + }, + "end": { + "$date": "2021-08-02T08:06:02.000Z" + }, + "events": [ + { + "uuid": "b43d43f9-1616-45f2-815b-35764bd972b5", + "start": { + "$date": "2021-08-01T22:12:40.000Z" + }, + "end": { + "$date": "2021-08-02T08:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "effcba5c-f5f6-4df9-ac1b-ed56491c5c26", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-01T22:22:39.000Z" + }, + "end": { + "$date": "2021-08-01T23:44:21.000Z" + }, + "events": [ + { + "uuid": "0e10e7b3-8120-44d0-969b-dc8545e87fef", + "start": { + "$date": "2021-08-01T22:22:39.000Z" + }, + "end": { + "$date": "2021-08-01T22:55:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36995ccb-f22a-44fb-8d1c-e274558beab5", + "start": { + "$date": "2021-08-01T22:55:39.000Z" + }, + "end": { + "$date": "2021-08-01T22:57:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3219fbfa-6ce4-4494-82ed-bb7f34f1b9b7", + "start": { + "$date": "2021-08-01T22:57:39.000Z" + }, + "end": { + "$date": "2021-08-01T23:26:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "513e05d5-e108-4b60-beef-bb2dc2a70bef", + "start": { + "$date": "2021-08-01T23:26:39.000Z" + }, + "end": { + "$date": "2021-08-01T23:28:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c53ceae5-6b82-4cdc-b770-6b8492121424", + "start": { + "$date": "2021-08-01T23:28:39.000Z" + }, + "end": { + "$date": "2021-08-01T23:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d1d7860-0c00-4c39-895b-dadb34109171", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-01T22:31:20.000Z" + }, + "end": { + "$date": "2021-08-01T23:00:25.000Z" + }, + "events": [ + { + "uuid": "e90bcc76-7654-4b45-bcab-64604a9f7fe1", + "start": { + "$date": "2021-08-01T22:31:20.000Z" + }, + "end": { + "$date": "2021-08-01T23:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd44f326-f14d-42ac-a914-18191d75d547", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T23:00:55.000Z" + }, + "end": { + "$date": "2021-08-01T23:30:25.000Z" + }, + "events": [ + { + "uuid": "7b0f02d6-58f0-4eb1-944c-1fc5140c74d6", + "start": { + "$date": "2021-08-01T23:00:55.000Z" + }, + "end": { + "$date": "2021-08-01T23:30:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db0fc18b-ff6a-48d4-a3f6-f78e24c08fb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T23:30:31.000Z" + }, + "end": { + "$date": "2021-08-01T23:35:26.000Z" + }, + "events": [ + { + "uuid": "c457685d-4952-4602-82eb-cc40ee8d3cf5", + "start": { + "$date": "2021-08-01T23:30:31.000Z" + }, + "end": { + "$date": "2021-08-01T23:35:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c4a9b2c-9258-4740-bf76-aee24f504cdf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-01T23:37:53.000Z" + }, + "end": { + "$date": "2021-08-01T23:39:52.000Z" + }, + "events": [ + { + "uuid": "e6e5d1ec-d5a3-47b6-955a-13227cd27847", + "start": { + "$date": "2021-08-01T23:37:53.000Z" + }, + "end": { + "$date": "2021-08-01T23:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26fd08ff-446e-4a45-a32b-9904685ae5a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-01T23:38:08.000Z" + }, + "end": { + "$date": "2021-08-02T00:03:51.000Z" + }, + "events": [ + { + "uuid": "3e9b4a1e-1229-459a-a1d9-5223cc883277", + "start": { + "$date": "2021-08-01T23:38:08.000Z" + }, + "end": { + "$date": "2021-08-02T00:03:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9a2bb5ae-625d-48e1-a4d9-7d217393ec87", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-01T23:40:20.000Z" + }, + "end": { + "$date": "2021-08-02T00:30:21.000Z" + }, + "events": [ + { + "uuid": "0d02b1dd-206d-4847-9a94-30120fbcc55f", + "start": { + "$date": "2021-08-01T23:40:20.000Z" + }, + "end": { + "$date": "2021-08-02T00:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f1b6eaa-03ae-49bd-8557-64e593579656", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-02T00:09:47.000Z" + }, + "end": { + "$date": "2021-08-02T00:28:04.000Z" + }, + "events": [ + { + "uuid": "fee1ee52-2a36-4320-ac2c-a3e5b0a39f1a", + "start": { + "$date": "2021-08-02T00:09:47.000Z" + }, + "end": { + "$date": "2021-08-02T00:28:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b202a76b-afe0-4bda-849e-065d3625f5a9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T00:26:15.000Z" + }, + "end": { + "$date": "2021-08-02T00:29:21.000Z" + }, + "events": [ + { + "uuid": "21748050-f346-47e3-af8c-7db8ffaf6d6b", + "start": { + "$date": "2021-08-02T00:26:15.000Z" + }, + "end": { + "$date": "2021-08-02T00:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b50d1a2-cee5-4b41-9aad-8c9a9aa5375d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-02T00:33:16.000Z" + }, + "end": { + "$date": "2021-08-02T00:57:32.000Z" + }, + "events": [ + { + "uuid": "45f07d76-e4b4-4d24-aab6-483d7f25ab52", + "start": { + "$date": "2021-08-02T00:33:16.000Z" + }, + "end": { + "$date": "2021-08-02T00:57:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3347d929-ae0f-4ff4-b05f-12ca3dc9a538", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T00:37:52.000Z" + }, + "end": { + "$date": "2021-08-02T01:18:01.000Z" + }, + "events": [ + { + "uuid": "91c565e0-d284-4a75-8f7d-8e27e29863fd", + "start": { + "$date": "2021-08-02T00:37:52.000Z" + }, + "end": { + "$date": "2021-08-02T01:18:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "92b3906a-550c-47c0-b6e6-e49cee245fb9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-02T00:40:52.000Z" + }, + "end": { + "$date": "2021-08-02T00:42:07.000Z" + }, + "events": [ + { + "uuid": "854d08d5-1456-463a-94e8-a7b6db830da0", + "start": { + "$date": "2021-08-02T00:40:52.000Z" + }, + "end": { + "$date": "2021-08-02T00:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2807ca5e-553d-468c-90da-2b02d14b405c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-02T00:42:32.000Z" + }, + "end": { + "$date": "2021-08-02T02:40:16.000Z" + }, + "events": [ + { + "uuid": "51ec1572-9e6d-4969-95df-b86b67f04b3b", + "start": { + "$date": "2021-08-02T00:42:32.000Z" + }, + "end": { + "$date": "2021-08-02T02:40:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "85f51553-7430-43ee-8b61-319cf5a2676f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-02T01:24:51.000Z" + }, + "end": { + "$date": "2021-08-02T01:32:42.000Z" + }, + "events": [ + { + "uuid": "baacaf62-35e2-41a6-a8d4-22a534f5e0d8", + "start": { + "$date": "2021-08-02T01:24:51.000Z" + }, + "end": { + "$date": "2021-08-02T01:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "fc18f824-5bd3-46ef-8cd2-19234c176497", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-02T01:32:58.000Z" + }, + "end": { + "$date": "2021-08-02T03:33:32.000Z" + }, + "events": [ + { + "uuid": "afa68775-f808-4443-a490-6b82d7ca03c7", + "start": { + "$date": "2021-08-02T01:32:58.000Z" + }, + "end": { + "$date": "2021-08-02T03:33:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4625056a-417d-447f-932d-916e7dd41c9b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T01:18:44.000Z" + }, + "end": { + "$date": "2021-08-02T03:10:00.000Z" + }, + "events": [ + { + "uuid": "1cf0d186-722f-4e92-bfdc-b5c04f506f99", + "start": { + "$date": "2021-08-02T01:18:44.000Z" + }, + "end": { + "$date": "2021-08-02T03:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "abcdf43e-83d7-4a81-accf-bf6c6b3ba0b8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-02T02:51:23.000Z" + }, + "end": { + "$date": "2021-08-02T03:50:30.000Z" + }, + "events": [ + { + "uuid": "dada9e9a-7cda-4b68-b631-40098cfbe44e", + "start": { + "$date": "2021-08-02T02:51:23.000Z" + }, + "end": { + "$date": "2021-08-02T03:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "84ba34a2-e5cf-4d33-a76b-dfa3d627949d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T03:10:55.000Z" + }, + "end": { + "$date": "2021-08-02T04:42:03.000Z" + }, + "events": [ + { + "uuid": "c595ef07-b5b1-4f23-9c4b-cfabd8fb06b9", + "start": { + "$date": "2021-08-02T03:10:55.000Z" + }, + "end": { + "$date": "2021-08-02T04:16:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "847b84e8-21ec-489d-aa89-68e0a4377808", + "start": { + "$date": "2021-08-02T04:16:55.000Z" + }, + "end": { + "$date": "2021-08-02T04:20:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2861fa68-854b-4d9e-b3a8-091e93427c7c", + "start": { + "$date": "2021-08-02T04:20:55.000Z" + }, + "end": { + "$date": "2021-08-02T04:31:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "554ea126-8f1d-4023-b031-4c63947fc0db", + "start": { + "$date": "2021-08-02T04:31:55.000Z" + }, + "end": { + "$date": "2021-08-02T04:42:03.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ee5866cd-b56f-4917-a524-9318efa33845", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-02T03:12:16.000Z" + }, + "end": { + "$date": "2021-08-02T04:05:57.000Z" + }, + "events": [ + { + "uuid": "edf4a14a-8f89-4252-a26a-5cee260e33f9", + "start": { + "$date": "2021-08-02T03:12:16.000Z" + }, + "end": { + "$date": "2021-08-02T04:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "5c20d13c-8d48-4cc4-9dc8-70abac5508d5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-02T03:48:36.000Z" + }, + "end": { + "$date": "2021-08-02T03:49:40.000Z" + }, + "events": [ + { + "uuid": "99ef04d7-c50a-469e-acef-d640e65f81ab", + "start": { + "$date": "2021-08-02T03:48:36.000Z" + }, + "end": { + "$date": "2021-08-02T03:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "84feca48-a6a7-4b28-a854-149fe6efc39d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-02T03:50:06.000Z" + }, + "end": { + "$date": "2021-08-02T05:49:46.000Z" + }, + "events": [ + { + "uuid": "7413fb0b-131c-4a0d-89c6-a1ffc149c0e7", + "start": { + "$date": "2021-08-02T03:50:06.000Z" + }, + "end": { + "$date": "2021-08-02T05:49:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e6715b5e-e4f9-4882-bacc-fbff3c04f342", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-02T04:33:42.000Z" + }, + "end": { + "$date": "2021-08-02T05:13:14.000Z" + }, + "events": [ + { + "uuid": "8d4a427d-9f5d-492a-b111-6c48ca019add", + "start": { + "$date": "2021-08-02T04:33:42.000Z" + }, + "end": { + "$date": "2021-08-02T05:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "643eda45-2d3e-4f6e-9c8c-9af927efda08", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T04:43:03.000Z" + }, + "end": { + "$date": "2021-08-02T06:41:14.000Z" + }, + "events": [ + { + "uuid": "94114f91-9cf3-44ce-8dc5-694f5cd71e5e", + "start": { + "$date": "2021-08-02T04:43:03.000Z" + }, + "end": { + "$date": "2021-08-02T06:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "887bc724-2172-4b6a-8217-a2d10e8367a1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-02T04:57:40.000Z" + }, + "end": { + "$date": "2021-08-02T06:45:21.000Z" + }, + "events": [ + { + "uuid": "1837177b-df64-4a09-a4e3-9e9d234f2b7a", + "start": { + "$date": "2021-08-02T04:57:40.000Z" + }, + "end": { + "$date": "2021-08-02T06:45:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "157478d9-134d-4331-945d-a3790791323e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-02T05:07:49.000Z" + }, + "end": { + "$date": "2021-08-02T06:44:35.000Z" + }, + "events": [ + { + "uuid": "2b0d9294-9374-44e5-8553-1fab68285bb5", + "start": { + "$date": "2021-08-02T05:07:49.000Z" + }, + "end": { + "$date": "2021-08-02T06:44:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fad60986-e0a6-4ae3-8ac8-83c21838cff3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-02T05:38:28.000Z" + }, + "end": { + "$date": "2021-08-02T06:40:15.000Z" + }, + "events": [ + { + "uuid": "92bb01c9-47d3-41b9-a524-19d1909c45d9", + "start": { + "$date": "2021-08-02T05:38:28.000Z" + }, + "end": { + "$date": "2021-08-02T06:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "36c859c1-9d26-4297-8e9f-5e7186915945", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T06:41:59.000Z" + }, + "end": { + "$date": "2021-08-02T08:00:15.000Z" + }, + "events": [ + { + "uuid": "f1529f29-ebe5-4e6b-b908-f2c061b4ea4d", + "start": { + "$date": "2021-08-02T06:41:59.000Z" + }, + "end": { + "$date": "2021-08-02T08:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "63b5cab3-3938-4e15-94f6-ece9c055790c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-02T13:47:51.000Z" + }, + "end": { + "$date": "2021-08-02T14:15:22.000Z" + }, + "events": [ + { + "uuid": "d6c80698-1f53-4c0b-976d-0b8bfd7a52a5", + "start": { + "$date": "2021-08-02T13:47:51.000Z" + }, + "end": { + "$date": "2021-08-02T14:15:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "9ad764fa-a0d1-491b-acd5-cd84352b9fd8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-02T23:07:22.000Z" + }, + "end": { + "$date": "2021-08-02T23:07:32.000Z" + }, + "events": [ + { + "uuid": "6d0e2910-bbcc-448d-bdfb-411962e5115b", + "start": { + "$date": "2021-08-02T23:07:22.000Z" + }, + "end": { + "$date": "2021-08-02T23:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", + "uuid": "8d832ad7-6f9c-4d30-a0f5-49b2a32f038c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-02T15:26:33.000Z" + }, + "end": { + "$date": "2021-08-02T16:23:55.000Z" + }, + "events": [ + { + "uuid": "4d60fc53-3381-4989-84e3-95725cfc5ade", + "start": { + "$date": "2021-08-02T15:26:33.000Z" + }, + "end": { + "$date": "2021-08-02T16:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", + "uuid": "68976e96-d4c8-49fa-99a5-c74a2065512f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-02T18:42:32.000Z" + }, + "end": { + "$date": "2021-08-02T23:17:25.000Z" + }, + "events": [ + { + "uuid": "e87efc3c-62f6-4c1c-9a44-963969071c07", + "start": { + "$date": "2021-08-02T18:42:32.000Z" + }, + "end": { + "$date": "2021-08-02T21:28:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d311c0ea-62eb-4606-80fb-c4a3aa1f69df", + "start": { + "$date": "2021-08-02T21:28:32.000Z" + }, + "end": { + "$date": "2021-08-02T21:48:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eef7e852-c1d6-4df4-90f9-dd70142caf73", + "start": { + "$date": "2021-08-02T21:48:32.000Z" + }, + "end": { + "$date": "2021-08-02T23:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d74c0359-f702-456b-bfe4-efdc67f78e1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-02T19:23:27.000Z" + }, + "end": { + "$date": "2021-08-02T20:13:24.000Z" + }, + "events": [ + { + "uuid": "18816a1b-2c99-416d-a8c6-8c5cc6b37dfd", + "start": { + "$date": "2021-08-02T19:23:27.000Z" + }, + "end": { + "$date": "2021-08-02T20:13:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "1424a567-8a4a-4416-94a4-58dbc9faa7ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-02T20:46:13.000Z" + }, + "end": { + "$date": "2021-08-02T22:32:59.000Z" + }, + "events": [ + { + "uuid": "1799b256-742b-4b76-801f-e5f806e64e77", + "start": { + "$date": "2021-08-02T20:46:13.000Z" + }, + "end": { + "$date": "2021-08-02T22:32:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c816cf5e-70fc-4391-b461-57ff749c5162", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T22:11:52.000Z" + }, + "end": { + "$date": "2021-08-02T22:40:07.000Z" + }, + "events": [ + { + "uuid": "8302ec65-5772-4b3b-a701-91e4ee3f0a71", + "start": { + "$date": "2021-08-02T22:11:52.000Z" + }, + "end": { + "$date": "2021-08-02T22:26:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b34a394-edec-414b-ad8a-672171f66d6e", + "start": { + "$date": "2021-08-02T22:26:52.000Z" + }, + "end": { + "$date": "2021-08-02T22:33:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9bac5c5f-6c95-45ab-9ea4-57fb1addd157", + "start": { + "$date": "2021-08-02T22:33:52.000Z" + }, + "end": { + "$date": "2021-08-02T22:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "62c213cc-3c80-4ba5-bec8-a759a107ec89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-02T22:40:18.000Z" + }, + "end": { + "$date": "2021-08-03T01:37:01.000Z" + }, + "events": [ + { + "uuid": "f74b20a9-4abb-4809-9ab0-84af6604a3b4", + "start": { + "$date": "2021-08-02T22:40:18.000Z" + }, + "end": { + "$date": "2021-08-03T01:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "22db11f2-6e4c-490c-9317-8261e5160b3f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-03T00:05:34.000Z" + }, + "end": { + "$date": "2021-08-03T00:10:19.000Z" + }, + "events": [ + { + "uuid": "01a9aafa-8c6d-4a56-85cb-c77b54ca5178", + "start": { + "$date": "2021-08-03T00:05:34.000Z" + }, + "end": { + "$date": "2021-08-03T00:10:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "608774ab-02cc-41c8-839c-67564c4f8d05", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-03T00:40:12.000Z" + }, + "end": { + "$date": "2021-08-03T01:07:58.000Z" + }, + "events": [ + { + "uuid": "e1fe2731-490a-4853-b391-da8b23e24058", + "start": { + "$date": "2021-08-03T00:40:12.000Z" + }, + "end": { + "$date": "2021-08-03T01:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8efe91a2-64ea-4f40-a9f7-1a10b46d358f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-03T00:40:23.000Z" + }, + "end": { + "$date": "2021-08-03T01:07:59.000Z" + }, + "events": [ + { + "uuid": "001652ca-f52c-44ab-baf1-b6179a5a608a", + "start": { + "$date": "2021-08-03T00:40:23.000Z" + }, + "end": { + "$date": "2021-08-03T01:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", + "uuid": "4f35d15d-2dc8-4fff-b8a7-1efcb118446c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-03T00:46:00.000Z" + }, + "end": { + "$date": "2021-08-03T05:43:31.000Z" + }, + "events": [ + { + "uuid": "6d50f4bc-b2cc-421a-93a7-d7acfb75dbf4", + "start": { + "$date": "2021-08-03T00:46:00.000Z" + }, + "end": { + "$date": "2021-08-03T05:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6507b39b-623c-4cce-8b9e-3744a6f7abda", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-03T01:10:20.000Z" + }, + "end": { + "$date": "2021-08-03T04:04:28.000Z" + }, + "events": [ + { + "uuid": "829c4cb8-81ee-43b3-9bb6-8e89d9d34722", + "start": { + "$date": "2021-08-03T01:10:20.000Z" + }, + "end": { + "$date": "2021-08-03T04:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "161af98c-bef7-4b5e-87eb-c5b2386554ae", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-03T01:12:54.000Z" + }, + "end": { + "$date": "2021-08-03T01:15:19.000Z" + }, + "events": [ + { + "uuid": "f2257695-ea40-47dc-a3e8-a4d8456f6dec", + "start": { + "$date": "2021-08-03T01:12:54.000Z" + }, + "end": { + "$date": "2021-08-03T01:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "213eb804-f3f8-40a5-8799-c6dc7bce0aed", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-03T01:16:30.000Z" + }, + "end": { + "$date": "2021-08-03T04:41:16.000Z" + }, + "events": [ + { + "uuid": "9403ae25-77d9-44d2-99f5-cfd50556ad7e", + "start": { + "$date": "2021-08-03T01:16:30.000Z" + }, + "end": { + "$date": "2021-08-03T04:41:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ebf9ab17-fbba-4900-8ddd-50c6f51ee47a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-03T02:48:51.000Z" + }, + "end": { + "$date": "2021-08-03T02:49:14.000Z" + }, + "events": [ + { + "uuid": "ebbb09ac-ec82-4ecd-a215-d3acb57fa2f0", + "start": { + "$date": "2021-08-03T02:48:51.000Z" + }, + "end": { + "$date": "2021-08-03T03:08:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29dc69dc-8638-4c68-abf3-1e86c316d2bf", + "start": { + "$date": "2021-08-03T03:08:51.000Z" + }, + "end": { + "$date": "2021-08-03T03:23:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb3b7e91-5bfd-4ae2-a697-b7ceeadffbf5", + "start": { + "$date": "2021-08-03T03:23:51.000Z" + }, + "end": { + "$date": "2021-08-03T02:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "889df9b4-6d81-41c3-8160-31e15f3440d0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-03T01:37:32.000Z" + }, + "end": { + "$date": "2021-08-03T07:06:22.000Z" + }, + "events": [ + { + "uuid": "fc47f43a-1b06-40d0-ae22-28f43fd9ef0c", + "start": { + "$date": "2021-08-03T01:37:32.000Z" + }, + "end": { + "$date": "2021-08-03T06:53:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9dec3d4f-d912-4bcd-922e-cc81f52133cd", + "start": { + "$date": "2021-08-03T06:53:32.000Z" + }, + "end": { + "$date": "2021-08-03T06:58:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd6d6c90-1276-47a4-bb77-6b31d7f0d889", + "start": { + "$date": "2021-08-03T06:58:32.000Z" + }, + "end": { + "$date": "2021-08-03T07:06:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7be38f51-53b7-484e-ab18-1937de03c95f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-03T02:27:46.000Z" + }, + "end": { + "$date": "2021-08-03T03:08:53.000Z" + }, + "events": [ + { + "uuid": "e2405657-ecaa-4471-9ca8-c91fc8ceb96e", + "start": { + "$date": "2021-08-03T02:27:46.000Z" + }, + "end": { + "$date": "2021-08-03T03:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "9dd616d3-0d7c-4795-af91-4209c24df210", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-03T02:06:25.000Z" + }, + "end": { + "$date": "2021-08-03T03:57:40.000Z" + }, + "events": [ + { + "uuid": "353bd24c-47dc-401c-8d3e-780b5273abe1", + "start": { + "$date": "2021-08-03T02:06:25.000Z" + }, + "end": { + "$date": "2021-08-03T03:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "0db0e386-67c1-469d-a901-29538288ea10", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-03T04:40:52.000Z" + }, + "end": { + "$date": "2021-08-03T04:45:54.000Z" + }, + "events": [ + { + "uuid": "bc87e73a-3615-4600-93c4-60636b3b039f", + "start": { + "$date": "2021-08-03T04:40:52.000Z" + }, + "end": { + "$date": "2021-08-03T04:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e1db793d-076c-41b5-a392-f29ed0a6b6aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-03T04:45:23.000Z" + }, + "end": { + "$date": "2021-08-03T05:10:18.000Z" + }, + "events": [ + { + "uuid": "761b2f27-cc8a-481b-9061-0edf91197833", + "start": { + "$date": "2021-08-03T04:45:23.000Z" + }, + "end": { + "$date": "2021-08-03T05:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "6251d402-2891-4299-9f1d-2527f090d096", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-03T05:04:48.000Z" + }, + "end": { + "$date": "2021-08-03T06:27:16.000Z" + }, + "events": [ + { + "uuid": "be917939-5761-4bba-8956-5689a3d74bd4", + "start": { + "$date": "2021-08-03T05:04:48.000Z" + }, + "end": { + "$date": "2021-08-03T06:27:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4a03541e-10a0-41c9-8cea-1de0679f096a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-03T05:43:51.000Z" + }, + "end": { + "$date": "2021-08-03T08:41:02.000Z" + }, + "events": [ + { + "uuid": "5fcc47ec-bfb2-457f-814a-f8e984163754", + "start": { + "$date": "2021-08-03T05:43:51.000Z" + }, + "end": { + "$date": "2021-08-03T08:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "274dab64-6635-4117-be81-6dfdb3ddddca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-03T06:20:54.000Z" + }, + "end": { + "$date": "2021-08-03T09:27:01.000Z" + }, + "events": [ + { + "uuid": "fa2e0ee2-5769-4cdc-beb7-0b1a6cd2f872", + "start": { + "$date": "2021-08-03T06:20:54.000Z" + }, + "end": { + "$date": "2021-08-03T09:27:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3149faf1-0666-40a4-a0ca-6864b3c5b3ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-03T07:33:35.000Z" + }, + "end": { + "$date": "2021-08-03T08:40:30.000Z" + }, + "events": [ + { + "uuid": "675c8da1-c3b1-46e7-8b38-cc4e89005b7f", + "start": { + "$date": "2021-08-03T07:33:35.000Z" + }, + "end": { + "$date": "2021-08-03T08:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "baa8b5b6-459f-4d07-830a-991054dcf872", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-03T08:41:50.000Z" + }, + "end": { + "$date": "2021-08-03T08:46:38.000Z" + }, + "events": [ + { + "uuid": "d7523f8f-b772-41b9-94fb-79e0a3d14322", + "start": { + "$date": "2021-08-03T08:41:50.000Z" + }, + "end": { + "$date": "2021-08-03T08:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", + "uuid": "daf74a63-15e8-4c9a-903c-c5fbfbfaa40f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-03T08:42:17.000Z" + }, + "end": { + "$date": "2021-08-03T08:44:09.000Z" + }, + "events": [ + { + "uuid": "5b7a3fdc-107c-4ab4-877a-c5f46897063a", + "start": { + "$date": "2021-08-03T08:42:17.000Z" + }, + "end": { + "$date": "2021-08-03T08:44:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "d0193327-eea1-4fe1-b2f0-4eb793a16cdb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-03T17:35:08.000Z" + }, + "end": { + "$date": "2021-08-03T17:35:18.000Z" + }, + "events": [ + { + "uuid": "62772f40-5bf0-41e4-aed3-7d915ae1ed33", + "start": { + "$date": "2021-08-03T17:35:08.000Z" + }, + "end": { + "$date": "2021-08-03T17:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d9971fcb-8a67-4616-90f4-1e2a9f5cc07b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-03T14:48:35.000Z" + }, + "end": { + "$date": "2021-08-03T18:13:06.000Z" + }, + "events": [ + { + "uuid": "ea30c04d-9d75-4e85-a5b5-ec6e3039751d", + "start": { + "$date": "2021-08-03T14:48:35.000Z" + }, + "end": { + "$date": "2021-08-03T18:10:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "75f0bcc4-ac98-4f9c-880c-fe3a9b901fad", + "start": { + "$date": "2021-08-03T18:10:35.000Z" + }, + "end": { + "$date": "2021-08-03T18:13:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c3d366a0-f3ec-4c69-9e8f-718320da367f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-03T16:42:24.000Z" + }, + "end": { + "$date": "2021-08-03T17:20:40.000Z" + }, + "events": [ + { + "uuid": "2e331ba8-5dad-43e1-9698-1868bfa17f24", + "start": { + "$date": "2021-08-03T16:42:24.000Z" + }, + "end": { + "$date": "2021-08-03T17:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "b297b47f-1f97-4713-9298-5a31544dc151", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-03T17:15:05.000Z" + }, + "end": { + "$date": "2021-08-03T17:53:26.000Z" + }, + "events": [ + { + "uuid": "afa37939-9205-4c13-b3ba-3d9cd8367b6c", + "start": { + "$date": "2021-08-03T17:15:05.000Z" + }, + "end": { + "$date": "2021-08-03T17:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "eacc7ffb-ee55-4a92-b08a-95bf0a1b2278", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-03T18:17:45.000Z" + }, + "end": { + "$date": "2021-08-03T20:18:14.000Z" + }, + "events": [ + { + "uuid": "e4ce6d0c-da97-4119-9f3b-89801488be7a", + "start": { + "$date": "2021-08-03T18:17:45.000Z" + }, + "end": { + "$date": "2021-08-03T20:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "24faf77f-1cee-4654-a1fa-b9936af3cc0f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-03T18:28:33.000Z" + }, + "end": { + "$date": "2021-08-03T20:58:33.000Z" + }, + "events": [ + { + "uuid": "12985e97-0177-40db-9301-d8fccf32d4a3", + "start": { + "$date": "2021-08-03T18:28:33.000Z" + }, + "end": { + "$date": "2021-08-03T20:32:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9259bee2-9dd3-4697-8384-edf2cdc042ef", + "start": { + "$date": "2021-08-03T20:32:33.000Z" + }, + "end": { + "$date": "2021-08-03T20:34:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1611620d-c715-4021-87cb-1b73efb014b0", + "start": { + "$date": "2021-08-03T20:34:33.000Z" + }, + "end": { + "$date": "2021-08-03T20:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8b8cf1da-4fbc-449b-a932-df8c269f60d2", + "uuid": "9f4ad996-c9b7-408f-a9f7-58cffbdbe8ec", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T00:23:39.000Z" + }, + "end": { + "$date": "2021-08-04T00:24:34.000Z" + }, + "events": [ + { + "uuid": "bc3f5450-1f3e-4412-a9b1-1461ea3faa3f", + "start": { + "$date": "2021-08-04T00:23:39.000Z" + }, + "end": { + "$date": "2021-08-04T00:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9f6addaf-589f-4909-b610-ac4818fb4a74", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-03T21:10:32.000Z" + }, + "end": { + "$date": "2021-08-04T03:25:04.000Z" + }, + "events": [ + { + "uuid": "2a83a358-0b4a-4c5c-b97d-15d31b051636", + "start": { + "$date": "2021-08-03T21:10:32.000Z" + }, + "end": { + "$date": "2021-08-03T21:38:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd7686fc-7597-486d-b0b6-740cd0e27ed4", + "start": { + "$date": "2021-08-03T21:38:32.000Z" + }, + "end": { + "$date": "2021-08-03T22:51:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b2be281-7c79-4ea8-9182-640637bda930", + "start": { + "$date": "2021-08-03T22:51:32.000Z" + }, + "end": { + "$date": "2021-08-03T22:55:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60c9a817-172b-42c4-8c61-bef9e0ff979c", + "start": { + "$date": "2021-08-03T22:55:32.000Z" + }, + "end": { + "$date": "2021-08-03T22:56:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79c3aa85-59c9-49de-9a36-349e9c8bdd63", + "start": { + "$date": "2021-08-03T22:56:32.000Z" + }, + "end": { + "$date": "2021-08-04T00:47:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0b7fda5-abe5-4cc9-8145-e3b489bc06d2", + "start": { + "$date": "2021-08-04T00:47:32.000Z" + }, + "end": { + "$date": "2021-08-04T00:52:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c961b880-4203-4519-9977-9ba938d0c19e", + "start": { + "$date": "2021-08-04T00:52:32.000Z" + }, + "end": { + "$date": "2021-08-04T01:02:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0e9552d-5457-4178-9c7e-02ff7f12cdb8", + "start": { + "$date": "2021-08-04T01:02:32.000Z" + }, + "end": { + "$date": "2021-08-04T01:05:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "933ccd90-f617-4d7c-ad9d-ff01527f2e76", + "start": { + "$date": "2021-08-04T01:05:32.000Z" + }, + "end": { + "$date": "2021-08-04T03:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "daf3d483-e56c-430d-a1ab-9c66d00f66f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-03T21:13:24.000Z" + }, + "end": { + "$date": "2021-08-03T21:54:04.000Z" + }, + "events": [ + { + "uuid": "2c348397-baa2-4344-96db-d8bc27741018", + "start": { + "$date": "2021-08-03T21:13:24.000Z" + }, + "end": { + "$date": "2021-08-03T21:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "29e962f5-cd97-46da-824d-d19a7145d6c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-03T22:05:01.000Z" + }, + "end": { + "$date": "2021-08-03T23:05:10.000Z" + }, + "events": [ + { + "uuid": "9c98f1d1-c67b-41ec-b004-7798673a28eb", + "start": { + "$date": "2021-08-03T22:05:01.000Z" + }, + "end": { + "$date": "2021-08-03T23:05:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "e08fb3f3-7de6-40f6-af14-90222f905e5e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-03T23:13:53.000Z" + }, + "end": { + "$date": "2021-08-03T23:57:40.000Z" + }, + "events": [ + { + "uuid": "51527d65-3364-4613-a763-90bb6684daae", + "start": { + "$date": "2021-08-03T23:13:53.000Z" + }, + "end": { + "$date": "2021-08-03T23:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9da53e38-edfd-4f29-b8ed-59114bd7808d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-04T01:04:54.000Z" + }, + "end": { + "$date": "2021-08-04T03:52:24.000Z" + }, + "events": [ + { + "uuid": "0fa86480-08f8-4a09-85df-35ed0ea2f69f", + "start": { + "$date": "2021-08-04T01:04:54.000Z" + }, + "end": { + "$date": "2021-08-04T02:38:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3cad0ed-942f-47ef-b23f-7524c1c14ace", + "start": { + "$date": "2021-08-04T02:38:54.000Z" + }, + "end": { + "$date": "2021-08-04T02:55:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d78efdf4-904b-4ccd-bf5e-4ecd2371175d", + "start": { + "$date": "2021-08-04T02:55:54.000Z" + }, + "end": { + "$date": "2021-08-04T03:05:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cfc13715-32d4-46b3-bdbe-839f0d84bafd", + "start": { + "$date": "2021-08-04T03:05:54.000Z" + }, + "end": { + "$date": "2021-08-04T03:14:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2862e83-e3f7-4b4e-a7a5-d461cd41e80a", + "start": { + "$date": "2021-08-04T03:14:54.000Z" + }, + "end": { + "$date": "2021-08-04T03:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "38cd90c3-c8b9-4364-b704-cdaa7597e2b5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T01:08:20.000Z" + }, + "end": { + "$date": "2021-08-04T01:31:57.000Z" + }, + "events": [ + { + "uuid": "de8642f8-5c9a-4d07-8853-6051853d71a3", + "start": { + "$date": "2021-08-04T01:08:20.000Z" + }, + "end": { + "$date": "2021-08-04T01:31:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "31cce615-643c-4355-90a1-e69a499caae8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T01:29:06.000Z" + }, + "end": { + "$date": "2021-08-04T03:50:49.000Z" + }, + "events": [ + { + "uuid": "14c88f2c-0c59-43d1-8d07-0b304c7568b8", + "start": { + "$date": "2021-08-04T01:29:06.000Z" + }, + "end": { + "$date": "2021-08-04T02:51:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef3ebeaf-5026-4ea3-b006-975301f03ef4", + "start": { + "$date": "2021-08-04T02:51:06.000Z" + }, + "end": { + "$date": "2021-08-04T02:56:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90561346-0e26-4176-abc6-aeedca8b66bb", + "start": { + "$date": "2021-08-04T02:56:06.000Z" + }, + "end": { + "$date": "2021-08-04T03:08:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1beb1240-962d-47c1-bde2-868e68b67f53", + "start": { + "$date": "2021-08-04T03:08:06.000Z" + }, + "end": { + "$date": "2021-08-04T03:15:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c68e5983-891d-4078-a8af-91f6469a05c0", + "start": { + "$date": "2021-08-04T03:15:06.000Z" + }, + "end": { + "$date": "2021-08-04T03:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "3a07fb39-79b3-4991-b7cf-56119893973d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T01:41:57.000Z" + }, + "end": { + "$date": "2021-08-04T02:08:06.000Z" + }, + "events": [ + { + "uuid": "77422861-97d8-42b8-9950-191bf386acbb", + "start": { + "$date": "2021-08-04T01:41:57.000Z" + }, + "end": { + "$date": "2021-08-04T02:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "896c13fe-deeb-4abe-b9bb-4cc2cbabbf29", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-04T01:50:48.000Z" + }, + "end": { + "$date": "2021-08-04T02:16:59.000Z" + }, + "events": [ + { + "uuid": "da2bf5b6-61e6-47f2-bce0-6672b39c106e", + "start": { + "$date": "2021-08-04T01:50:48.000Z" + }, + "end": { + "$date": "2021-08-04T02:16:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eba1481d-0b68-44bb-bef3-ce5e65a399aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T01:53:15.000Z" + }, + "end": { + "$date": "2021-08-04T02:16:50.000Z" + }, + "events": [ + { + "uuid": "724915a9-a8d6-4e84-a0ae-6743be74e741", + "start": { + "$date": "2021-08-04T01:53:15.000Z" + }, + "end": { + "$date": "2021-08-04T02:16:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "178cd9a6-fa09-404e-bd39-0d0875d86924", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T01:52:57.000Z" + }, + "end": { + "$date": "2021-08-04T02:16:51.000Z" + }, + "events": [ + { + "uuid": "34b6ab86-17d7-45dc-8769-cad480d5acdd", + "start": { + "$date": "2021-08-04T01:52:57.000Z" + }, + "end": { + "$date": "2021-08-04T02:16:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "d5d47fad-4c34-4974-91df-156957303c87", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T02:26:11.000Z" + }, + "end": { + "$date": "2021-08-04T02:28:27.000Z" + }, + "events": [ + { + "uuid": "b7f97d56-1525-49d4-afff-d4c2d63c6d54", + "start": { + "$date": "2021-08-04T02:26:11.000Z" + }, + "end": { + "$date": "2021-08-04T02:28:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca139977-7b4e-4998-95f2-5523009c1cbe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-04T02:24:40.000Z" + }, + "end": { + "$date": "2021-08-04T02:53:20.000Z" + }, + "events": [ + { + "uuid": "980c412e-4833-414b-ac4c-5787d38b6c59", + "start": { + "$date": "2021-08-04T02:24:40.000Z" + }, + "end": { + "$date": "2021-08-04T02:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02e22542-5e8d-48ca-b1a1-2fb84feac498", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T02:25:37.000Z" + }, + "end": { + "$date": "2021-08-04T02:53:12.000Z" + }, + "events": [ + { + "uuid": "34bbc109-aac3-45a7-b087-f30856ce1e26", + "start": { + "$date": "2021-08-04T02:25:37.000Z" + }, + "end": { + "$date": "2021-08-04T02:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bef508d6-48ad-40c4-90f8-1b50941f4b2a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T02:24:40.000Z" + }, + "end": { + "$date": "2021-08-04T02:53:21.000Z" + }, + "events": [ + { + "uuid": "db779c93-f40b-494b-a855-96d2d3cc3364", + "start": { + "$date": "2021-08-04T02:24:40.000Z" + }, + "end": { + "$date": "2021-08-04T02:53:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "cf7bfdd2-72d9-4d40-bf1f-227426577b9c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T02:44:43.000Z" + }, + "end": { + "$date": "2021-08-04T02:44:48.000Z" + }, + "events": [ + { + "uuid": "e44448de-11b4-4e14-a23d-46ea071fcd3b", + "start": { + "$date": "2021-08-04T02:44:43.000Z" + }, + "end": { + "$date": "2021-08-04T02:44:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "97ff822e-ced4-4bc2-9a16-e7887724cfa9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-04T02:35:48.000Z" + }, + "end": { + "$date": "2021-08-04T03:10:17.000Z" + }, + "events": [ + { + "uuid": "4a2ba3e0-fa2e-4662-8fb7-76ab2640c572", + "start": { + "$date": "2021-08-04T02:35:48.000Z" + }, + "end": { + "$date": "2021-08-04T03:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9bca30a-5314-468f-a658-091b09889173", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T02:57:23.000Z" + }, + "end": { + "$date": "2021-08-04T03:23:32.000Z" + }, + "events": [ + { + "uuid": "c0fc4cd0-4f09-4b98-ae9e-10353cf39edc", + "start": { + "$date": "2021-08-04T02:57:23.000Z" + }, + "end": { + "$date": "2021-08-04T03:23:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "57a7f1f4-d609-41ad-a4e6-e86898115abc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-04T03:14:28.000Z" + }, + "end": { + "$date": "2021-08-04T03:16:09.000Z" + }, + "events": [ + { + "uuid": "a9535313-8e63-4086-88d7-2f78428326b5", + "start": { + "$date": "2021-08-04T03:14:28.000Z" + }, + "end": { + "$date": "2021-08-04T03:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df636c3a-f74a-447f-9c38-87d24dfd5012", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-04T03:31:22.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:29.000Z" + }, + "events": [ + { + "uuid": "7ba3f69f-2bad-47d2-959b-5876a7a22d77", + "start": { + "$date": "2021-08-04T03:31:22.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fc59ca95-ae17-4cae-bcf7-d053a2517ab5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-04T03:16:53.000Z" + }, + "end": { + "$date": "2021-08-04T03:18:14.000Z" + }, + "events": [ + { + "uuid": "b44593aa-6e3b-4193-baba-3eb8305c8038", + "start": { + "$date": "2021-08-04T03:16:53.000Z" + }, + "end": { + "$date": "2021-08-04T03:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b2fcf25f-909d-4c83-bbeb-cb22a6b2f095", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T03:18:30.000Z" + }, + "end": { + "$date": "2021-08-04T03:27:40.000Z" + }, + "events": [ + { + "uuid": "5c6f21d4-2c2f-4d55-a1af-8604078b7e55", + "start": { + "$date": "2021-08-04T03:18:30.000Z" + }, + "end": { + "$date": "2021-08-04T03:27:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ba6425ea-d347-48b1-bd99-3191c302148f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-04T03:22:49.000Z" + }, + "end": { + "$date": "2021-08-04T03:40:35.000Z" + }, + "events": [ + { + "uuid": "07716f1d-945b-40d5-8442-9803c55995e7", + "start": { + "$date": "2021-08-04T03:22:49.000Z" + }, + "end": { + "$date": "2021-08-04T03:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "674e3368-b09e-4fd1-bae3-b6725200977f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-04T03:23:40.000Z" + }, + "end": { + "$date": "2021-08-04T03:25:48.000Z" + }, + "events": [ + { + "uuid": "95e2435e-802a-4274-98c0-32645eb57cc1", + "start": { + "$date": "2021-08-04T03:23:40.000Z" + }, + "end": { + "$date": "2021-08-04T03:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0eaf98d8-cd2a-42c5-80ba-3b210f5b7988", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-03T21:10:32.000Z" + }, + "end": { + "$date": "2021-08-04T06:46:48.000Z" + }, + "events": [ + { + "uuid": "cb0498b3-6872-4d52-85c7-d5e50c53d977", + "start": { + "$date": "2021-08-03T21:10:32.000Z" + }, + "end": { + "$date": "2021-08-04T06:46:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ff1f5b4-8b5f-4d2f-8320-c788bbf3d812", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T03:32:11.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:20.000Z" + }, + "events": [ + { + "uuid": "5cb98107-5f9c-40a7-a278-235ceefc43db", + "start": { + "$date": "2021-08-04T03:32:11.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abb4e1fb-67ec-4458-bf06-43f08c927172", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-04T03:31:56.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:20.000Z" + }, + "events": [ + { + "uuid": "9e72ac83-e9cd-488c-a6c8-cf14aa221b35", + "start": { + "$date": "2021-08-04T03:31:56.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb4897b8-e113-4b09-b9f6-c1fb102b4f54", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T03:32:09.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:25.000Z" + }, + "events": [ + { + "uuid": "1bac8176-b422-415d-98ab-a453d6c4bfe5", + "start": { + "$date": "2021-08-04T03:32:09.000Z" + }, + "end": { + "$date": "2021-08-04T03:58:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3e21ce1f-ae47-44dc-a9b0-f8cd3ac1d480", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-04T03:31:30.000Z" + }, + "end": { + "$date": "2021-08-04T04:22:11.000Z" + }, + "events": [ + { + "uuid": "013d9138-1203-452d-934b-105efe4d3351", + "start": { + "$date": "2021-08-04T03:31:30.000Z" + }, + "end": { + "$date": "2021-08-04T04:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "10728ebc-7dbb-4c51-84a9-3373e70474eb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-04T03:41:20.000Z" + }, + "end": { + "$date": "2021-08-04T03:52:07.000Z" + }, + "events": [ + { + "uuid": "af2fff0a-b365-4e3a-85b8-c052e5a10c25", + "start": { + "$date": "2021-08-04T03:41:20.000Z" + }, + "end": { + "$date": "2021-08-04T03:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "68f51b5c-82a6-4459-8d49-bde91e9ea22b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T03:51:13.000Z" + }, + "end": { + "$date": "2021-08-04T05:24:21.000Z" + }, + "events": [ + { + "uuid": "17b4d35e-94fb-4822-ac43-42b6156c3d6c", + "start": { + "$date": "2021-08-04T03:51:13.000Z" + }, + "end": { + "$date": "2021-08-04T05:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e99d323b-4a35-482c-9eab-6c5f398115a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T03:59:38.000Z" + }, + "end": { + "$date": "2021-08-04T04:04:01.000Z" + }, + "events": [ + { + "uuid": "df2b973f-06a8-46ac-964d-47cf014ef243", + "start": { + "$date": "2021-08-04T03:59:38.000Z" + }, + "end": { + "$date": "2021-08-04T04:04:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "242baced-89c5-44e6-8dd1-23b995452965", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-04T03:59:52.000Z" + }, + "end": { + "$date": "2021-08-04T05:24:48.000Z" + }, + "events": [ + { + "uuid": "3bbffa6b-d8fc-4596-be2a-bcb1bc28351d", + "start": { + "$date": "2021-08-04T03:59:52.000Z" + }, + "end": { + "$date": "2021-08-04T05:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "101fc062-bdbb-47c2-9ba2-f1a3ba7d18d2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-04T03:59:57.000Z" + }, + "end": { + "$date": "2021-08-04T04:45:08.000Z" + }, + "events": [ + { + "uuid": "8a21bf16-f288-463f-b027-ec054b52622f", + "start": { + "$date": "2021-08-04T03:59:57.000Z" + }, + "end": { + "$date": "2021-08-04T04:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2a2caddf-9174-4e7b-8fd6-fffc651ead29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T04:01:31.000Z" + }, + "end": { + "$date": "2021-08-04T04:45:06.000Z" + }, + "events": [ + { + "uuid": "f7a03cb4-3d8e-4c12-b9bb-9535220f31a6", + "start": { + "$date": "2021-08-04T04:01:31.000Z" + }, + "end": { + "$date": "2021-08-04T04:45:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ffbfffed-59ec-4c6d-9cc2-a1510fc945a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-04T05:20:39.000Z" + }, + "end": { + "$date": "2021-08-04T06:34:00.000Z" + }, + "events": [ + { + "uuid": "5660a35a-45dd-44e9-afa8-62fed3934e59", + "start": { + "$date": "2021-08-04T05:20:39.000Z" + }, + "end": { + "$date": "2021-08-04T06:34:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e1f33dbe-8967-4467-a683-1f21586dc9c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T05:25:06.000Z" + }, + "end": { + "$date": "2021-08-04T06:33:44.000Z" + }, + "events": [ + { + "uuid": "b1e15b5e-64d2-48a0-80b9-153d41a92ae9", + "start": { + "$date": "2021-08-04T05:25:06.000Z" + }, + "end": { + "$date": "2021-08-04T06:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "44513bfa-6d8e-4e6a-ab30-b4f14f8f0a7a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-04T05:41:42.000Z" + }, + "end": { + "$date": "2021-08-04T06:42:14.000Z" + }, + "events": [ + { + "uuid": "626bdd9d-245d-4afb-8646-e2c204a70094", + "start": { + "$date": "2021-08-04T05:41:42.000Z" + }, + "end": { + "$date": "2021-08-04T06:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "28b06177-8764-409e-a059-081477c1ea17", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T06:34:39.000Z" + }, + "end": { + "$date": "2021-08-04T10:27:04.000Z" + }, + "events": [ + { + "uuid": "6d26ff2f-4042-4611-beeb-513bb640b42a", + "start": { + "$date": "2021-08-04T06:34:39.000Z" + }, + "end": { + "$date": "2021-08-04T10:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "57223b0b-d66a-4e34-aa4b-b5c7ccbb5ade", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T06:47:18.000Z" + }, + "end": { + "$date": "2021-08-04T07:14:31.000Z" + }, + "events": [ + { + "uuid": "24f15f8d-728a-4a81-8165-dfef0e9e346c", + "start": { + "$date": "2021-08-04T06:47:18.000Z" + }, + "end": { + "$date": "2021-08-04T07:14:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "250cc0aa-3afa-4363-8258-ca565a7d791f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-04T06:55:48.000Z" + }, + "end": { + "$date": "2021-08-04T08:09:59.000Z" + }, + "events": [ + { + "uuid": "5c5e4072-929a-4656-b816-577413b1f9da", + "start": { + "$date": "2021-08-04T06:55:48.000Z" + }, + "end": { + "$date": "2021-08-04T08:09:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2b4dcb39-f3c0-43f5-98ab-0c9d92372e93", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T07:15:01.000Z" + }, + "end": { + "$date": "2021-08-04T07:55:03.000Z" + }, + "events": [ + { + "uuid": "ab4510e3-a57b-4bfd-ad66-f3cc2ed9a243", + "start": { + "$date": "2021-08-04T07:15:01.000Z" + }, + "end": { + "$date": "2021-08-04T07:55:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2d29a950-d266-45e1-b1d5-ce7616ecf768", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T08:42:34.000Z" + }, + "end": { + "$date": "2021-08-04T09:49:03.000Z" + }, + "events": [ + { + "uuid": "be8a313f-592e-483b-a7ba-20751c683526", + "start": { + "$date": "2021-08-04T08:42:34.000Z" + }, + "end": { + "$date": "2021-08-04T09:42:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ef18788-c61c-42d6-9be7-f27e626a5850", + "start": { + "$date": "2021-08-04T09:42:34.000Z" + }, + "end": { + "$date": "2021-08-04T09:43:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb170f88-5afe-4282-9ed1-6494c4443a79", + "start": { + "$date": "2021-08-04T09:43:34.000Z" + }, + "end": { + "$date": "2021-08-04T09:49:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "de1aaae1-fe17-4dec-bafc-df7e7f25bbce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T09:49:43.000Z" + }, + "end": { + "$date": "2021-08-04T10:27:45.000Z" + }, + "events": [ + { + "uuid": "9f5b4f84-5915-4709-8ccf-51bc2b4efff1", + "start": { + "$date": "2021-08-04T09:49:43.000Z" + }, + "end": { + "$date": "2021-08-04T10:27:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "960ba996-6290-4c6a-9dfe-393eed70662e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T14:25:05.000Z" + }, + "end": { + "$date": "2021-08-04T18:42:46.000Z" + }, + "events": [ + { + "uuid": "ed9be071-86fa-4015-bdf1-8bc88d9f9c1a", + "start": { + "$date": "2021-08-04T14:25:05.000Z" + }, + "end": { + "$date": "2021-08-04T18:42:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "18515a82-6898-4177-87b3-ace3a870e3ac", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T15:50:29.000Z" + }, + "end": { + "$date": "2021-08-04T16:28:30.000Z" + }, + "events": [ + { + "uuid": "3588bb00-ccf2-496b-85c5-5ab3b0cfcb3a", + "start": { + "$date": "2021-08-04T15:50:29.000Z" + }, + "end": { + "$date": "2021-08-04T16:28:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", + "uuid": "e3a0f2c5-d4be-4b62-a3d0-ae3b8931bd76", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T16:36:08.000Z" + }, + "end": { + "$date": "2021-08-04T16:59:28.000Z" + }, + "events": [ + { + "uuid": "ef008857-faf3-47a4-b9fc-195556a2ec48", + "start": { + "$date": "2021-08-04T16:36:08.000Z" + }, + "end": { + "$date": "2021-08-04T16:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a38bda61-2c96-4fbc-8bf9-f95161624e4e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-04T16:56:57.000Z" + }, + "end": { + "$date": "2021-08-04T16:59:04.000Z" + }, + "events": [ + { + "uuid": "8fe13621-928e-4b0a-b433-e992e49145b3", + "start": { + "$date": "2021-08-04T16:56:57.000Z" + }, + "end": { + "$date": "2021-08-04T16:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "32a15c15-8d18-495d-83cd-c8e953728af4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T16:57:50.000Z" + }, + "end": { + "$date": "2021-08-04T17:04:00.000Z" + }, + "events": [ + { + "uuid": "e1ec18b7-571d-4bb4-9c3a-6687a3b4ebac", + "start": { + "$date": "2021-08-04T16:57:50.000Z" + }, + "end": { + "$date": "2021-08-04T17:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "008731a9-96b2-4b6b-88d4-cb0f3ed01bbf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T17:05:20.000Z" + }, + "end": { + "$date": "2021-08-04T17:06:43.000Z" + }, + "events": [ + { + "uuid": "42fc704e-dc88-41f7-a13a-ef2f295a65cd", + "start": { + "$date": "2021-08-04T17:05:20.000Z" + }, + "end": { + "$date": "2021-08-04T17:06:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "2e9c009d-a59a-4dc3-9948-bb66dc349dad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-04T17:07:54.000Z" + }, + "end": { + "$date": "2021-08-04T18:01:53.000Z" + }, + "events": [ + { + "uuid": "f007fb3e-2496-4296-b74f-cb76782566b4", + "start": { + "$date": "2021-08-04T17:07:54.000Z" + }, + "end": { + "$date": "2021-08-04T18:01:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a0f1cc74-a97a-48fa-b8b6-69ac061072b8", + "uuid": "897c2ebb-6808-4cd9-93f2-013087954fa0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T17:11:12.000Z" + }, + "end": { + "$date": "2021-08-04T19:19:07.000Z" + }, + "events": [ + { + "uuid": "055596a7-1fa1-4216-8be0-970c6463b8ed", + "start": { + "$date": "2021-08-04T17:11:12.000Z" + }, + "end": { + "$date": "2021-08-04T19:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "78a88e1b-fdd1-4ce9-b537-028e00196b79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T17:16:46.000Z" + }, + "end": { + "$date": "2021-08-04T17:59:48.000Z" + }, + "events": [ + { + "uuid": "32078e19-6022-4101-9b35-f5b9b4261a59", + "start": { + "$date": "2021-08-04T17:16:46.000Z" + }, + "end": { + "$date": "2021-08-04T17:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8598475d-8ab5-4455-a83f-2b578f8913d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T18:57:10.000Z" + }, + "end": { + "$date": "2021-08-04T19:01:25.000Z" + }, + "events": [ + { + "uuid": "d081346d-6e5e-41c7-b0f1-e394c3538f33", + "start": { + "$date": "2021-08-04T18:57:10.000Z" + }, + "end": { + "$date": "2021-08-04T19:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7b19fd68-4fd7-4bc7-bed3-e828d63357a1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T19:22:59.000Z" + }, + "end": { + "$date": "2021-08-04T19:25:58.000Z" + }, + "events": [ + { + "uuid": "9030d480-d1d3-438d-94db-f5ee2dad496f", + "start": { + "$date": "2021-08-04T19:22:59.000Z" + }, + "end": { + "$date": "2021-08-04T19:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "da5ccc12-1926-4413-9446-cd17740882e1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T19:26:20.000Z" + }, + "end": { + "$date": "2021-08-04T20:30:37.000Z" + }, + "events": [ + { + "uuid": "93bf69fe-090d-48af-8f17-88c2cace25cb", + "start": { + "$date": "2021-08-04T19:26:20.000Z" + }, + "end": { + "$date": "2021-08-04T20:30:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "05aaa069-2fd8-43f1-8193-7cf24165b70f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T20:12:22.000Z" + }, + "end": { + "$date": "2021-08-04T20:31:17.000Z" + }, + "events": [ + { + "uuid": "5f2fba54-75c7-40c4-b920-d96878ed482d", + "start": { + "$date": "2021-08-04T20:12:22.000Z" + }, + "end": { + "$date": "2021-08-04T20:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "6fa673a1-7322-4b37-9bed-129c5c61b360", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-04T20:44:08.000Z" + }, + "end": { + "$date": "2021-08-05T00:38:39.000Z" + }, + "events": [ + { + "uuid": "3009deda-6f72-4506-aae3-be01ca0f2348", + "start": { + "$date": "2021-08-04T20:44:08.000Z" + }, + "end": { + "$date": "2021-08-04T22:17:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "48f2fafb-b7fe-4339-98b8-bcaba974e431", + "start": { + "$date": "2021-08-04T22:17:08.000Z" + }, + "end": { + "$date": "2021-08-04T22:22:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ea710dd-ed22-445d-bb18-315e79e972c5", + "start": { + "$date": "2021-08-04T22:22:08.000Z" + }, + "end": { + "$date": "2021-08-05T00:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34a26d35-908b-4f19-bf87-94a2578577bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-04T21:06:58.000Z" + }, + "end": { + "$date": "2021-08-04T21:39:48.000Z" + }, + "events": [ + { + "uuid": "a87fa40e-588e-494d-b14a-887a7732ce17", + "start": { + "$date": "2021-08-04T21:06:58.000Z" + }, + "end": { + "$date": "2021-08-04T21:39:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "144d2f41-80ca-4e01-ac31-fcf840e9d4ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T21:08:23.000Z" + }, + "end": { + "$date": "2021-08-04T21:36:37.000Z" + }, + "events": [ + { + "uuid": "dffd7a24-f27c-46d5-8121-ffeddd8916bd", + "start": { + "$date": "2021-08-04T21:08:23.000Z" + }, + "end": { + "$date": "2021-08-04T21:36:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "cd9af750-d117-4738-b212-e49036cbc52c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-04T21:36:47.000Z" + }, + "end": { + "$date": "2021-08-04T23:48:33.000Z" + }, + "events": [ + { + "uuid": "8a7664d8-6871-4133-b305-0544d6bc535d", + "start": { + "$date": "2021-08-04T21:36:47.000Z" + }, + "end": { + "$date": "2021-08-04T23:48:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0fafc890-1d63-4f42-ac55-81bd4d1f3737", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-04T22:23:36.000Z" + }, + "end": { + "$date": "2021-08-04T23:16:33.000Z" + }, + "events": [ + { + "uuid": "c4e01627-6fb1-4d43-9d54-d99833a03239", + "start": { + "$date": "2021-08-04T22:23:36.000Z" + }, + "end": { + "$date": "2021-08-04T23:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e72842a2-b816-43c3-8a77-bff47f17de26", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T22:46:08.000Z" + }, + "end": { + "$date": "2021-08-04T23:23:41.000Z" + }, + "events": [ + { + "uuid": "290f5bfc-59d5-4a85-8f72-1ba6cfc3d37e", + "start": { + "$date": "2021-08-04T22:46:08.000Z" + }, + "end": { + "$date": "2021-08-04T23:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "76ad4671-22d2-4b14-98c0-ba8bbae5daa0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-04T22:55:55.000Z" + }, + "end": { + "$date": "2021-08-05T00:19:06.000Z" + }, + "events": [ + { + "uuid": "0293cbf5-8bdf-4386-b421-59cbc08fef7a", + "start": { + "$date": "2021-08-04T22:55:55.000Z" + }, + "end": { + "$date": "2021-08-04T23:27:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2c009b5-108e-4d9d-b02c-8bd0edb7e9a4", + "start": { + "$date": "2021-08-04T23:27:55.000Z" + }, + "end": { + "$date": "2021-08-05T00:05:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e626275d-24c6-405a-acdd-9977e978ba54", + "start": { + "$date": "2021-08-05T00:05:55.000Z" + }, + "end": { + "$date": "2021-08-05T00:07:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2f367e1-0d8a-4211-89b4-0884420a0f30", + "start": { + "$date": "2021-08-05T00:07:55.000Z" + }, + "end": { + "$date": "2021-08-05T00:08:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc01a00f-170b-4afd-9dd7-7778d4e35578", + "start": { + "$date": "2021-08-05T00:08:55.000Z" + }, + "end": { + "$date": "2021-08-05T00:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "89b59237-ee69-4d83-9934-ed76a27a0c04", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-04T23:24:06.000Z" + }, + "end": { + "$date": "2021-08-04T23:52:04.000Z" + }, + "events": [ + { + "uuid": "a8c0b1ad-32e8-4a1d-9608-aaa4d98080e9", + "start": { + "$date": "2021-08-04T23:24:06.000Z" + }, + "end": { + "$date": "2021-08-04T23:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3a95e66e-9bf1-43eb-8b41-d39b75ed325f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-04T23:24:28.000Z" + }, + "end": { + "$date": "2021-08-05T00:37:55.000Z" + }, + "events": [ + { + "uuid": "7f8feeac-6536-476c-ad35-d311e97c39e7", + "start": { + "$date": "2021-08-04T23:24:28.000Z" + }, + "end": { + "$date": "2021-08-05T00:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5e102cb7-8a64-4d44-8967-0383361c6dfe", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-05T00:07:10.000Z" + }, + "end": { + "$date": "2021-08-05T04:36:07.000Z" + }, + "events": [ + { + "uuid": "cf91d71e-7122-4d19-8454-f7482655d14a", + "start": { + "$date": "2021-08-05T00:07:10.000Z" + }, + "end": { + "$date": "2021-08-05T04:36:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b8c5ebbb-21cb-4117-85b7-dddce2a9ac93", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-05T00:19:15.000Z" + }, + "end": { + "$date": "2021-08-05T06:19:32.000Z" + }, + "events": [ + { + "uuid": "82989a80-ff06-4b06-9b92-66c86222d3bf", + "start": { + "$date": "2021-08-05T00:19:15.000Z" + }, + "end": { + "$date": "2021-08-05T06:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "501fe274-c692-4ca1-b374-f3708e1abce5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T00:22:44.000Z" + }, + "end": { + "$date": "2021-08-05T00:44:23.000Z" + }, + "events": [ + { + "uuid": "9ced3bfb-22a5-4849-beb7-38de9ce3cf5e", + "start": { + "$date": "2021-08-05T00:22:44.000Z" + }, + "end": { + "$date": "2021-08-05T00:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bb37106-421d-497e-8fb3-ec35741114cb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T01:36:53.000Z" + }, + "end": { + "$date": "2021-08-05T02:01:14.000Z" + }, + "events": [ + { + "uuid": "6740c416-0516-4a1c-92d0-82d4b9d711bd", + "start": { + "$date": "2021-08-05T01:36:53.000Z" + }, + "end": { + "$date": "2021-08-05T02:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6d747a2-af86-4913-bd5b-171b2db42bcc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T01:37:19.000Z" + }, + "end": { + "$date": "2021-08-05T02:01:04.000Z" + }, + "events": [ + { + "uuid": "bf51080e-e255-42ca-8b1b-331997709712", + "start": { + "$date": "2021-08-05T01:37:19.000Z" + }, + "end": { + "$date": "2021-08-05T02:01:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a8e08e01-e6b5-4d71-9570-7392280dbd41", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-05T01:46:15.000Z" + }, + "end": { + "$date": "2021-08-05T04:32:51.000Z" + }, + "events": [ + { + "uuid": "8f794dbb-1d1a-4432-a21f-521c94f46c4c", + "start": { + "$date": "2021-08-05T01:46:15.000Z" + }, + "end": { + "$date": "2021-08-05T04:32:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "743ee738-a148-4472-b850-d9d1a72551e5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T01:51:48.000Z" + }, + "end": { + "$date": "2021-08-05T02:29:49.000Z" + }, + "events": [ + { + "uuid": "1738c61a-e827-4c9c-beca-a7ac8327ca4b", + "start": { + "$date": "2021-08-05T01:51:48.000Z" + }, + "end": { + "$date": "2021-08-05T02:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f97242c-bae7-4591-aeb3-2f0a75495de0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T02:04:37.000Z" + }, + "end": { + "$date": "2021-08-05T02:35:51.000Z" + }, + "events": [ + { + "uuid": "258f540e-2071-49cd-bc23-3bfc86d34556", + "start": { + "$date": "2021-08-05T02:04:37.000Z" + }, + "end": { + "$date": "2021-08-05T02:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e03233bd-4d36-4a35-a3e6-302ed22f3b6b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T02:05:45.000Z" + }, + "end": { + "$date": "2021-08-05T02:35:40.000Z" + }, + "events": [ + { + "uuid": "cdfee028-13c3-4844-a116-b1f955340fc9", + "start": { + "$date": "2021-08-05T02:05:45.000Z" + }, + "end": { + "$date": "2021-08-05T02:35:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1dbc5625-b7ae-4537-bd39-c6458143d511", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-05T02:09:24.000Z" + }, + "end": { + "$date": "2021-08-05T03:41:16.000Z" + }, + "events": [ + { + "uuid": "8cb1933d-068d-4686-b8e2-a41e038cd538", + "start": { + "$date": "2021-08-05T02:09:24.000Z" + }, + "end": { + "$date": "2021-08-05T03:41:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ed0a9902-6326-4adb-864d-ab7a61038d3f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T02:29:59.000Z" + }, + "end": { + "$date": "2021-08-05T03:26:06.000Z" + }, + "events": [ + { + "uuid": "cec6c9d2-e8b4-4a33-b319-4a07ecc2d8a2", + "start": { + "$date": "2021-08-05T02:29:59.000Z" + }, + "end": { + "$date": "2021-08-05T03:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a6aef04-c3c5-42ec-bec5-3fd2fc71f9e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T02:36:37.000Z" + }, + "end": { + "$date": "2021-08-05T02:37:49.000Z" + }, + "events": [ + { + "uuid": "db2e6721-c4eb-4b82-a1eb-0160ab59bb52", + "start": { + "$date": "2021-08-05T02:36:37.000Z" + }, + "end": { + "$date": "2021-08-05T02:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f7b95239-f4c8-402b-afb8-9b90fe6dd115", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T02:47:55.000Z" + }, + "end": { + "$date": "2021-08-05T03:35:01.000Z" + }, + "events": [ + { + "uuid": "854f88d2-07de-4676-8881-692cfea8cd4d", + "start": { + "$date": "2021-08-05T02:47:55.000Z" + }, + "end": { + "$date": "2021-08-05T03:35:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6d5497ef-acd3-4900-9b76-217b1a8a79f0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T03:26:31.000Z" + }, + "end": { + "$date": "2021-08-05T06:25:15.000Z" + }, + "events": [ + { + "uuid": "edb5e32e-4748-4d29-8f10-fcf928275919", + "start": { + "$date": "2021-08-05T03:26:31.000Z" + }, + "end": { + "$date": "2021-08-05T04:36:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "330e7f27-5837-41b6-9d7b-db9399d011ab", + "start": { + "$date": "2021-08-05T04:36:31.000Z" + }, + "end": { + "$date": "2021-08-05T04:41:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "87064e87-1e4c-42b4-b1c7-5418bfe9aa5e", + "start": { + "$date": "2021-08-05T04:41:31.000Z" + }, + "end": { + "$date": "2021-08-05T06:25:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9290e7ce-cc4e-4ad7-98d9-64222c1045f8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-05T03:55:38.000Z" + }, + "end": { + "$date": "2021-08-05T04:47:39.000Z" + }, + "events": [ + { + "uuid": "e7be6464-f3b7-4f86-a659-4ecfca8ff399", + "start": { + "$date": "2021-08-05T03:55:38.000Z" + }, + "end": { + "$date": "2021-08-05T04:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1e4d1ac-93e6-4e2e-8aae-5e497681e19b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T04:18:45.000Z" + }, + "end": { + "$date": "2021-08-05T04:33:50.000Z" + }, + "events": [ + { + "uuid": "9ec3021c-69ed-42c5-8f18-c1829ea0ad76", + "start": { + "$date": "2021-08-05T04:18:45.000Z" + }, + "end": { + "$date": "2021-08-05T04:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "3be0747a-9d6b-4b68-a071-894e01ded03e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T04:35:16.000Z" + }, + "end": { + "$date": "2021-08-05T05:00:31.000Z" + }, + "events": [ + { + "uuid": "a124923d-4459-4c5a-9af6-b1b552975819", + "start": { + "$date": "2021-08-05T04:35:16.000Z" + }, + "end": { + "$date": "2021-08-05T05:00:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c816531c-c9f2-4b32-8ebf-092e57046cca", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-05T04:36:36.000Z" + }, + "end": { + "$date": "2021-08-05T04:44:43.000Z" + }, + "events": [ + { + "uuid": "bfb5b6fb-95e5-4975-a9ae-fcc7a7c4f78b", + "start": { + "$date": "2021-08-05T04:36:36.000Z" + }, + "end": { + "$date": "2021-08-05T04:44:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25ce17c0-a25c-4972-8b8d-660f1b635e5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T05:19:30.000Z" + }, + "end": { + "$date": "2021-08-05T05:55:12.000Z" + }, + "events": [ + { + "uuid": "58f6d622-a4ed-40c4-ae74-9ee4e908f435", + "start": { + "$date": "2021-08-05T05:19:30.000Z" + }, + "end": { + "$date": "2021-08-05T05:55:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c2e695fb-e84c-4dca-9d4d-da9e46e0e7d6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-05T05:43:25.000Z" + }, + "end": { + "$date": "2021-08-05T06:48:22.000Z" + }, + "events": [ + { + "uuid": "efdd2741-86d6-419b-bac9-5af97e12bc2b", + "start": { + "$date": "2021-08-05T05:43:25.000Z" + }, + "end": { + "$date": "2021-08-05T06:48:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "083aff59-22d7-41ff-9c16-d3fcd662d472", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-05T05:53:09.000Z" + }, + "end": { + "$date": "2021-08-05T07:28:22.000Z" + }, + "events": [ + { + "uuid": "9f15fd65-ba13-402f-ac49-a2935b5ab30e", + "start": { + "$date": "2021-08-05T05:53:09.000Z" + }, + "end": { + "$date": "2021-08-05T07:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a3a9590d-7724-4981-8c8a-86e19613b72e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T05:56:15.000Z" + }, + "end": { + "$date": "2021-08-05T06:48:35.000Z" + }, + "events": [ + { + "uuid": "3d2fd3ef-d650-4546-99b5-cb0a229e151f", + "start": { + "$date": "2021-08-05T05:56:15.000Z" + }, + "end": { + "$date": "2021-08-05T06:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b400664f-fbac-454c-a0ab-190127ef3141", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-05T07:49:13.000Z" + }, + "end": { + "$date": "2021-08-05T08:18:23.000Z" + }, + "events": [ + { + "uuid": "46e8b4a9-9167-4e07-9d87-71ee1aa95653", + "start": { + "$date": "2021-08-05T07:49:13.000Z" + }, + "end": { + "$date": "2021-08-05T08:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "38ef27b9-a4ff-4c27-a5b8-81629b401516", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-05T14:34:12.000Z" + }, + "end": { + "$date": "2021-08-05T15:13:48.000Z" + }, + "events": [ + { + "uuid": "a4158dda-85ed-4083-a02d-ffb34acd7425", + "start": { + "$date": "2021-08-05T14:34:12.000Z" + }, + "end": { + "$date": "2021-08-05T15:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55627e73-ee96-4f31-b665-ac605828784b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T15:14:40.000Z" + }, + "end": { + "$date": "2021-08-05T15:47:49.000Z" + }, + "events": [ + { + "uuid": "d0e169bb-55a3-40b3-806c-60f9fa3a5e0f", + "start": { + "$date": "2021-08-05T15:14:40.000Z" + }, + "end": { + "$date": "2021-08-05T15:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "86e41b36-d860-479d-9443-f9299d051eba", + "uuid": "aaf7f3c2-8475-42f2-bd26-685a53502a27", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-05T15:15:24.000Z" + }, + "end": { + "$date": "2021-08-05T16:19:42.000Z" + }, + "events": [ + { + "uuid": "015ffa90-6cb7-45b0-bac6-addaf82cd80d", + "start": { + "$date": "2021-08-05T15:15:24.000Z" + }, + "end": { + "$date": "2021-08-05T16:19:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "216ba044-920a-4126-93b7-0a0499454b1e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T16:28:31.000Z" + }, + "end": { + "$date": "2021-08-05T16:51:00.000Z" + }, + "events": [ + { + "uuid": "829efb43-1781-400e-bf96-05023ede5116", + "start": { + "$date": "2021-08-05T16:28:31.000Z" + }, + "end": { + "$date": "2021-08-05T16:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a4cc5b08-2ad8-43e7-82df-c7a79a34aad8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T16:09:17.000Z" + }, + "end": { + "$date": "2021-08-05T20:28:35.000Z" + }, + "events": [ + { + "uuid": "66e733e3-c4ba-474f-bd65-33de46162377", + "start": { + "$date": "2021-08-05T16:09:17.000Z" + }, + "end": { + "$date": "2021-08-05T18:54:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2bf94707-029d-4c1f-a0df-a540072a0d14", + "start": { + "$date": "2021-08-05T18:54:17.000Z" + }, + "end": { + "$date": "2021-08-05T18:58:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4ef29714-7e5c-4ab0-9770-d0cd5c12e98e", + "start": { + "$date": "2021-08-05T18:58:17.000Z" + }, + "end": { + "$date": "2021-08-05T20:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7f0c78fc-8903-4308-abc8-aee8d78c1e40", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-05T17:09:14.000Z" + }, + "end": { + "$date": "2021-08-05T18:12:42.000Z" + }, + "events": [ + { + "uuid": "c7f6c6b9-323a-41be-bc85-bd69916b468c", + "start": { + "$date": "2021-08-05T17:09:14.000Z" + }, + "end": { + "$date": "2021-08-05T18:12:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9d38923-a222-4bcf-a331-ee6d95a86bca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T18:05:30.000Z" + }, + "end": { + "$date": "2021-08-05T18:33:14.000Z" + }, + "events": [ + { + "uuid": "3b5edda7-2bf6-4d49-b5bf-309bdb1232bd", + "start": { + "$date": "2021-08-05T18:05:30.000Z" + }, + "end": { + "$date": "2021-08-05T18:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d4c8d6e-cabd-4d09-b1b0-06873e9d05c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T19:50:19.000Z" + }, + "end": { + "$date": "2021-08-05T20:15:03.000Z" + }, + "events": [ + { + "uuid": "4c52545a-935e-4b76-b603-9fb1d851f4e1", + "start": { + "$date": "2021-08-05T19:50:19.000Z" + }, + "end": { + "$date": "2021-08-05T20:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "765bad3d-ab0c-45fe-bd49-9bf01bdfb54c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T20:31:15.000Z" + }, + "end": { + "$date": "2021-08-05T20:34:05.000Z" + }, + "events": [ + { + "uuid": "11cae7ed-ae70-4142-a9f4-8503f23a349c", + "start": { + "$date": "2021-08-05T20:31:15.000Z" + }, + "end": { + "$date": "2021-08-05T20:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c65b57aa-a854-48b7-b461-1f71bd17a316", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T20:34:25.000Z" + }, + "end": { + "$date": "2021-08-05T21:08:32.000Z" + }, + "events": [ + { + "uuid": "7aead9a9-c277-4b98-a4ca-89838ae227df", + "start": { + "$date": "2021-08-05T20:34:25.000Z" + }, + "end": { + "$date": "2021-08-05T21:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "526d38e5-b630-44f6-baa1-4717cccf3de1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-05T21:52:51.000Z" + }, + "end": { + "$date": "2021-08-06T03:23:48.000Z" + }, + "events": [ + { + "uuid": "459a2c37-1c83-4f1f-9941-648448ae4b2f", + "start": { + "$date": "2021-08-05T21:52:51.000Z" + }, + "end": { + "$date": "2021-08-05T23:36:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7ab5680c-21d8-4a59-b73b-00ffeccad737", + "start": { + "$date": "2021-08-05T23:36:51.000Z" + }, + "end": { + "$date": "2021-08-05T23:41:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0d809d4-3f3f-435c-bd69-0e999ba5fd4b", + "start": { + "$date": "2021-08-05T23:41:51.000Z" + }, + "end": { + "$date": "2021-08-06T00:16:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1da0df24-7b1f-46cc-b563-d9d3d217d737", + "start": { + "$date": "2021-08-06T00:16:51.000Z" + }, + "end": { + "$date": "2021-08-06T01:39:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3b69c1bc-a0ca-4134-a866-1603306226c0", + "start": { + "$date": "2021-08-06T01:39:51.000Z" + }, + "end": { + "$date": "2021-08-06T01:42:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "79a3c434-9816-4e30-93e3-38a19c8363e5", + "start": { + "$date": "2021-08-06T01:42:51.000Z" + }, + "end": { + "$date": "2021-08-06T02:15:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "01ed95b7-3a10-46c1-814a-fdc06e50516f", + "start": { + "$date": "2021-08-06T02:15:51.000Z" + }, + "end": { + "$date": "2021-08-06T02:33:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4dad3a6f-4791-4499-b31c-dd547a74ece0", + "start": { + "$date": "2021-08-06T02:33:51.000Z" + }, + "end": { + "$date": "2021-08-06T02:40:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "24779439-9354-4039-a424-e69bd2c6005d", + "start": { + "$date": "2021-08-06T02:40:51.000Z" + }, + "end": { + "$date": "2021-08-06T03:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f6e50046-c2b9-42a1-9107-eadfcaa651c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T22:05:23.000Z" + }, + "end": { + "$date": "2021-08-05T22:16:17.000Z" + }, + "events": [ + { + "uuid": "03433c25-d8b9-4e32-a840-d31b414976ec", + "start": { + "$date": "2021-08-05T22:05:23.000Z" + }, + "end": { + "$date": "2021-08-05T22:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a04c442b-ffb2-4a0f-ab4a-8226ff8b007f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-05T23:30:48.000Z" + }, + "end": { + "$date": "2021-08-06T00:01:20.000Z" + }, + "events": [ + { + "uuid": "0274e1b4-7862-459f-a36e-c538265b1efd", + "start": { + "$date": "2021-08-05T23:30:48.000Z" + }, + "end": { + "$date": "2021-08-05T23:42:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2447bf07-7e96-434e-8006-54a72e4af8ac", + "start": { + "$date": "2021-08-05T23:42:48.000Z" + }, + "end": { + "$date": "2021-08-06T00:41:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8cb21525-1c76-4514-8d0d-b249079ed159", + "start": { + "$date": "2021-08-06T00:41:48.000Z" + }, + "end": { + "$date": "2021-08-06T00:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6231f489-2b0f-480c-a0c8-664c066d242f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-05T22:29:17.000Z" + }, + "end": { + "$date": "2021-08-05T22:43:42.000Z" + }, + "events": [ + { + "uuid": "a842a166-288d-4164-acd8-91d69155838f", + "start": { + "$date": "2021-08-05T22:29:17.000Z" + }, + "end": { + "$date": "2021-08-05T22:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "47572b4d-b52f-4a4a-a9a7-707c30ab75b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-05T22:42:55.000Z" + }, + "end": { + "$date": "2021-08-06T00:04:28.000Z" + }, + "events": [ + { + "uuid": "fe5fd2ce-a85d-470d-9d2e-3e48836f26ae", + "start": { + "$date": "2021-08-05T22:42:55.000Z" + }, + "end": { + "$date": "2021-08-05T23:31:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "218b081e-e41d-486d-892e-b9aedb9770a5", + "start": { + "$date": "2021-08-05T23:31:55.000Z" + }, + "end": { + "$date": "2021-08-05T23:41:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58e57c7d-f802-4ca9-9d48-fa14f98f786a", + "start": { + "$date": "2021-08-05T23:41:55.000Z" + }, + "end": { + "$date": "2021-08-06T00:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6667874-9072-476b-9f91-af72e3ee556a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T00:05:30.000Z" + }, + "end": { + "$date": "2021-08-06T00:26:34.000Z" + }, + "events": [ + { + "uuid": "5f81fdf5-7d33-4344-b27d-43095cc81d03", + "start": { + "$date": "2021-08-06T00:05:30.000Z" + }, + "end": { + "$date": "2021-08-06T00:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8d4d8cb-cdb4-4900-947c-84c76da9af49", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-06T00:10:23.000Z" + }, + "end": { + "$date": "2021-08-06T00:27:29.000Z" + }, + "events": [ + { + "uuid": "dda10c78-af81-4cce-bdff-7ddfa0e79d46", + "start": { + "$date": "2021-08-06T00:10:23.000Z" + }, + "end": { + "$date": "2021-08-06T00:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5124017e-8722-409d-95bf-6ee02e9037a9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-06T00:15:38.000Z" + }, + "end": { + "$date": "2021-08-06T00:48:41.000Z" + }, + "events": [ + { + "uuid": "df6a3904-a680-42ab-9b93-6264e2925b9e", + "start": { + "$date": "2021-08-06T00:15:38.000Z" + }, + "end": { + "$date": "2021-08-06T00:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37d00921-1ebb-4bcb-83d3-c37bac9634b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T00:30:31.000Z" + }, + "end": { + "$date": "2021-08-06T01:00:15.000Z" + }, + "events": [ + { + "uuid": "baa238da-f827-4727-9ad0-84a71176407d", + "start": { + "$date": "2021-08-06T00:30:31.000Z" + }, + "end": { + "$date": "2021-08-06T01:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91227640-86f0-44cd-aa35-efdce500bb73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T01:03:03.000Z" + }, + "end": { + "$date": "2021-08-06T01:20:51.000Z" + }, + "events": [ + { + "uuid": "58888652-8f6e-4ee7-98ec-7e3a2f646fb2", + "start": { + "$date": "2021-08-06T01:03:03.000Z" + }, + "end": { + "$date": "2021-08-06T01:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a686a757-8b74-4511-ae3a-55eeb7fe3ebe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T01:36:37.000Z" + }, + "end": { + "$date": "2021-08-06T01:49:37.000Z" + }, + "events": [ + { + "uuid": "04856a63-527a-4aab-9848-7292f4ee51bf", + "start": { + "$date": "2021-08-06T01:36:37.000Z" + }, + "end": { + "$date": "2021-08-06T01:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9440141-798a-42b6-8b92-7757316e4e17", + "uuid": "1b890343-f0b7-43b1-b06e-4229fc496225", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-06T02:33:15.000Z" + }, + "end": { + "$date": "2021-08-06T02:33:31.000Z" + }, + "events": [ + { + "uuid": "4ebc36a0-41c1-4c60-9f36-45e8525e47fd", + "start": { + "$date": "2021-08-06T02:33:15.000Z" + }, + "end": { + "$date": "2021-08-06T02:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e9e012d1-1992-40c5-ab3e-a483f770c6bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-06T01:44:13.000Z" + }, + "end": { + "$date": "2021-08-06T02:48:30.000Z" + }, + "events": [ + { + "uuid": "0efb05a5-07d1-482c-a3a4-6b6f75735e0f", + "start": { + "$date": "2021-08-06T01:44:13.000Z" + }, + "end": { + "$date": "2021-08-06T02:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b67fd98d-292a-4037-baaa-2466d964adf8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T01:55:50.000Z" + }, + "end": { + "$date": "2021-08-06T02:21:40.000Z" + }, + "events": [ + { + "uuid": "cd10e2b0-d1a0-4c91-ae27-1c7739af86f1", + "start": { + "$date": "2021-08-06T01:55:50.000Z" + }, + "end": { + "$date": "2021-08-06T02:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a67a65f-8c2d-47ac-b35a-468f8a6585e6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T02:25:52.000Z" + }, + "end": { + "$date": "2021-08-06T02:44:31.000Z" + }, + "events": [ + { + "uuid": "c1a9e214-36ef-49a0-98fd-15b8dce28479", + "start": { + "$date": "2021-08-06T02:25:52.000Z" + }, + "end": { + "$date": "2021-08-06T02:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36c988d0-390f-4d45-992c-901f8757cffe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T02:47:58.000Z" + }, + "end": { + "$date": "2021-08-06T03:11:54.000Z" + }, + "events": [ + { + "uuid": "34f64bf2-f022-4603-ac43-62fd24672167", + "start": { + "$date": "2021-08-06T02:47:58.000Z" + }, + "end": { + "$date": "2021-08-06T03:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c82b4fb-9088-4907-90f4-028a25bcc471", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-06T02:59:45.000Z" + }, + "end": { + "$date": "2021-08-06T04:14:47.000Z" + }, + "events": [ + { + "uuid": "a015498b-afcc-47df-a5fb-fd8766848c96", + "start": { + "$date": "2021-08-06T02:59:45.000Z" + }, + "end": { + "$date": "2021-08-06T04:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af3ee5fb-ab36-4c98-9b61-c2a722eee2f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T03:14:34.000Z" + }, + "end": { + "$date": "2021-08-06T03:43:13.000Z" + }, + "events": [ + { + "uuid": "616a42d7-33fb-45f1-8dc4-0417861b020f", + "start": { + "$date": "2021-08-06T03:14:34.000Z" + }, + "end": { + "$date": "2021-08-06T03:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94fc7380-91a5-41b9-a5f1-2fec34ab7ff6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-06T03:15:12.000Z" + }, + "end": { + "$date": "2021-08-06T03:43:02.000Z" + }, + "events": [ + { + "uuid": "96834505-bdc2-4a5b-977b-8abb5aab36b8", + "start": { + "$date": "2021-08-06T03:15:12.000Z" + }, + "end": { + "$date": "2021-08-06T03:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cf9b9ab9-af2c-4b14-82c0-3652423c6017", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-06T03:24:18.000Z" + }, + "end": { + "$date": "2021-08-06T04:13:54.000Z" + }, + "events": [ + { + "uuid": "4356e5e9-64cb-481b-ac1d-5a530b0d58d6", + "start": { + "$date": "2021-08-06T03:24:18.000Z" + }, + "end": { + "$date": "2021-08-06T04:13:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6b453783-d3c6-471a-9b37-1a582b1d152c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-06T00:15:38.000Z" + }, + "end": { + "$date": "2021-08-06T07:41:36.000Z" + }, + "events": [ + { + "uuid": "fcbb6808-a279-4fc5-994f-ce68590d3435", + "start": { + "$date": "2021-08-06T00:15:38.000Z" + }, + "end": { + "$date": "2021-08-06T07:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ca05f7f7-e737-4e4d-a79c-1add0a3186d8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-06T03:38:41.000Z" + }, + "end": { + "$date": "2021-08-06T03:46:08.000Z" + }, + "events": [ + { + "uuid": "d2643873-a22c-4b07-830d-ada02ef82632", + "start": { + "$date": "2021-08-06T03:38:41.000Z" + }, + "end": { + "$date": "2021-08-06T03:46:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6783de97-9e6f-42d7-8d91-422892c36d33", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T03:45:46.000Z" + }, + "end": { + "$date": "2021-08-06T04:10:08.000Z" + }, + "events": [ + { + "uuid": "16961522-8e25-4697-9cee-8d826dfc6784", + "start": { + "$date": "2021-08-06T03:45:46.000Z" + }, + "end": { + "$date": "2021-08-06T04:10:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8e36f93-8e0a-4925-951a-45738d66a54b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-06T03:45:37.000Z" + }, + "end": { + "$date": "2021-08-06T04:09:57.000Z" + }, + "events": [ + { + "uuid": "d3b92c68-0be1-4cb1-b32c-feeea82cd0c1", + "start": { + "$date": "2021-08-06T03:45:37.000Z" + }, + "end": { + "$date": "2021-08-06T04:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "1a1072d1-4689-4687-9e73-abf509fbd8ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-06T04:05:22.000Z" + }, + "end": { + "$date": "2021-08-06T05:46:37.000Z" + }, + "events": [ + { + "uuid": "2aaf0373-ba22-4960-8918-15b21853f116", + "start": { + "$date": "2021-08-06T04:05:22.000Z" + }, + "end": { + "$date": "2021-08-06T05:46:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "220d911d-3c16-42c8-b96a-27de3d7cd6c9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T04:13:08.000Z" + }, + "end": { + "$date": "2021-08-06T04:49:30.000Z" + }, + "events": [ + { + "uuid": "8ca69117-5e66-4b5a-9091-b4ab870c9420", + "start": { + "$date": "2021-08-06T04:13:08.000Z" + }, + "end": { + "$date": "2021-08-06T04:49:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e37245b-b64d-46c3-a023-4e7f3384664c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-06T04:13:58.000Z" + }, + "end": { + "$date": "2021-08-06T04:49:19.000Z" + }, + "events": [ + { + "uuid": "eaa62eb8-ffc4-429c-8e80-6d1c72a0fa7c", + "start": { + "$date": "2021-08-06T04:13:58.000Z" + }, + "end": { + "$date": "2021-08-06T04:49:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d9277a8d-3159-4c29-aaeb-a8fd25d7394a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-06T04:14:19.000Z" + }, + "end": { + "$date": "2021-08-06T06:29:15.000Z" + }, + "events": [ + { + "uuid": "abdf4fc1-c6ae-44ad-894f-ec03d91f47ca", + "start": { + "$date": "2021-08-06T04:14:19.000Z" + }, + "end": { + "$date": "2021-08-06T06:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "59b7c65f-8006-4095-8159-2020675bb42e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-06T04:15:41.000Z" + }, + "end": { + "$date": "2021-08-06T05:17:18.000Z" + }, + "events": [ + { + "uuid": "10e80527-b011-4c42-afd1-81e3d76c7913", + "start": { + "$date": "2021-08-06T04:15:41.000Z" + }, + "end": { + "$date": "2021-08-06T05:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fbb0dac7-2d9d-45e3-8b72-d4506a6cb6f0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-06T06:05:34.000Z" + }, + "end": { + "$date": "2021-08-06T07:01:40.000Z" + }, + "events": [ + { + "uuid": "36a430c9-9fd4-41ec-9d3a-74c953b76591", + "start": { + "$date": "2021-08-06T06:05:34.000Z" + }, + "end": { + "$date": "2021-08-06T07:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "83f0eba3-8aa3-4aa9-ac11-a9a551145af9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-06T07:41:47.000Z" + }, + "end": { + "$date": "2021-08-06T08:00:27.000Z" + }, + "events": [ + { + "uuid": "4ce78720-26d0-443e-a484-27878efc2a36", + "start": { + "$date": "2021-08-06T07:41:47.000Z" + }, + "end": { + "$date": "2021-08-06T08:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "dd21f65c-655b-46ac-b7a3-144c0ab1ce8c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-06T13:22:34.000Z" + }, + "end": { + "$date": "2021-08-06T20:20:27.000Z" + }, + "events": [ + { + "uuid": "9f0a8eb1-1b1a-4c59-9924-87c7103ac3aa", + "start": { + "$date": "2021-08-06T13:22:34.000Z" + }, + "end": { + "$date": "2021-08-06T14:38:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "75c48636-6663-4872-9e69-3e5be668a34d", + "start": { + "$date": "2021-08-06T14:38:34.000Z" + }, + "end": { + "$date": "2021-08-06T14:48:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb2cfe40-840b-449e-9e05-713403622390", + "start": { + "$date": "2021-08-06T14:48:34.000Z" + }, + "end": { + "$date": "2021-08-06T17:33:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f38e83df-1a3e-42a2-a5b0-25ce35fd48d3", + "start": { + "$date": "2021-08-06T17:33:34.000Z" + }, + "end": { + "$date": "2021-08-06T18:14:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "727fba98-9f95-4130-b34c-d6d1b80fd2fd", + "start": { + "$date": "2021-08-06T18:14:34.000Z" + }, + "end": { + "$date": "2021-08-06T18:24:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04991596-65de-47a9-9662-9286e755a0c8", + "start": { + "$date": "2021-08-06T18:24:34.000Z" + }, + "end": { + "$date": "2021-08-06T19:03:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9bb75275-e97d-4387-b582-f999431f742a", + "start": { + "$date": "2021-08-06T19:03:34.000Z" + }, + "end": { + "$date": "2021-08-06T19:13:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3c740b56-2e9c-48ec-a52b-16acde7f00ff", + "start": { + "$date": "2021-08-06T19:13:34.000Z" + }, + "end": { + "$date": "2021-08-06T20:20:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7631de4a-06f6-4a92-9ca4-e9eb75e9ede4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-06T14:34:32.000Z" + }, + "end": { + "$date": "2021-08-06T14:36:02.000Z" + }, + "events": [ + { + "uuid": "b4891671-c3b1-48be-ae37-21ba1c7e7779", + "start": { + "$date": "2021-08-06T14:34:32.000Z" + }, + "end": { + "$date": "2021-08-06T14:36:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dd49f885-5041-41fa-a148-0b7096e480a9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-06T15:33:57.000Z" + }, + "end": { + "$date": "2021-08-06T16:34:31.000Z" + }, + "events": [ + { + "uuid": "8d33745e-9fb2-4b75-977d-a1413c0f6046", + "start": { + "$date": "2021-08-06T15:33:57.000Z" + }, + "end": { + "$date": "2021-08-06T16:34:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd3bb81d-f871-47a9-b677-aa79311a594f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T15:47:35.000Z" + }, + "end": { + "$date": "2021-08-06T16:10:34.000Z" + }, + "events": [ + { + "uuid": "be14e578-87fb-4095-bb80-85795860717a", + "start": { + "$date": "2021-08-06T15:47:35.000Z" + }, + "end": { + "$date": "2021-08-06T16:10:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d56c417f-8261-4c24-a900-e458bab6b4d4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-06T19:45:16.000Z" + }, + "end": { + "$date": "2021-08-06T21:33:09.000Z" + }, + "events": [ + { + "uuid": "dac2e646-284a-4e86-8585-e8cb87a5bdfc", + "start": { + "$date": "2021-08-06T19:45:16.000Z" + }, + "end": { + "$date": "2021-08-06T21:33:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "cd2fa6b8-387d-44ae-94da-48a1a9334208", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-06T20:22:27.000Z" + }, + "end": { + "$date": "2021-08-06T21:17:03.000Z" + }, + "events": [ + { + "uuid": "df4ed1fd-3780-4c4c-a093-a56b56247a8a", + "start": { + "$date": "2021-08-06T20:22:27.000Z" + }, + "end": { + "$date": "2021-08-06T21:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e68b5a69-50a1-4df0-90ea-824610d61265", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-06T19:07:23.000Z" + }, + "end": { + "$date": "2021-08-06T21:25:07.000Z" + }, + "events": [ + { + "uuid": "267c33e9-2baf-46ff-9d6b-c30ae6d9aef2", + "start": { + "$date": "2021-08-06T19:07:23.000Z" + }, + "end": { + "$date": "2021-08-06T21:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6388a8d4-c183-411a-95d6-e2c1990e5ee2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-06T20:47:17.000Z" + }, + "end": { + "$date": "2021-08-06T20:48:23.000Z" + }, + "events": [ + { + "uuid": "d4f8ac25-a5cb-4097-8ca7-970724a55bfb", + "start": { + "$date": "2021-08-06T20:47:17.000Z" + }, + "end": { + "$date": "2021-08-06T20:48:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ee3ac37b-adab-4f47-bbb1-1014f6720a28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-06T21:07:45.000Z" + }, + "end": { + "$date": "2021-08-06T21:07:47.000Z" + }, + "events": [ + { + "uuid": "ef8e92a5-29b6-4867-913e-5309221b8031", + "start": { + "$date": "2021-08-06T21:07:45.000Z" + }, + "end": { + "$date": "2021-08-06T21:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c92f4d7f-2bbf-458e-8c6f-298399c0caba", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-06T21:25:14.000Z" + }, + "end": { + "$date": "2021-08-07T02:19:23.000Z" + }, + "events": [ + { + "uuid": "496ba00a-5162-49ca-bca3-b2027ab1186c", + "start": { + "$date": "2021-08-06T21:25:14.000Z" + }, + "end": { + "$date": "2021-08-07T00:48:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0238bcc-9292-4ce9-a891-4a7beacb1fa4", + "start": { + "$date": "2021-08-07T00:48:14.000Z" + }, + "end": { + "$date": "2021-08-07T00:53:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "07fbc245-5250-4ac3-81c3-bc15096963a8", + "start": { + "$date": "2021-08-07T00:53:14.000Z" + }, + "end": { + "$date": "2021-08-07T01:03:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ca82944-74de-4b35-96b3-001b757773f7", + "start": { + "$date": "2021-08-07T01:03:14.000Z" + }, + "end": { + "$date": "2021-08-07T01:10:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7d92dca-7fc5-4fe9-95bd-3fd2f143232f", + "start": { + "$date": "2021-08-07T01:10:14.000Z" + }, + "end": { + "$date": "2021-08-07T02:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e7c589e2-dcdc-4f13-b9d1-897e5db4c7ab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-06T23:14:57.000Z" + }, + "end": { + "$date": "2021-08-07T00:07:35.000Z" + }, + "events": [ + { + "uuid": "0ddf07d7-b25a-4853-a763-82249160e666", + "start": { + "$date": "2021-08-06T23:14:57.000Z" + }, + "end": { + "$date": "2021-08-07T00:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "909bccb8-63e1-4b1f-9e78-2d4de9c8b524", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-07T00:59:25.000Z" + }, + "end": { + "$date": "2021-08-07T02:53:35.000Z" + }, + "events": [ + { + "uuid": "12979e66-f5d4-48d5-9250-3ede492bd99f", + "start": { + "$date": "2021-08-07T00:59:25.000Z" + }, + "end": { + "$date": "2021-08-07T02:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3e7e5269-d4db-419a-95a0-cbd29239a23b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-07T02:19:48.000Z" + }, + "end": { + "$date": "2021-08-07T07:29:06.000Z" + }, + "events": [ + { + "uuid": "8c87391a-fba6-4f08-8cda-78ffb1b9b059", + "start": { + "$date": "2021-08-07T02:19:48.000Z" + }, + "end": { + "$date": "2021-08-07T07:29:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ccb59192-62f1-47c0-a22e-3d7b88343ae7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-07T02:58:57.000Z" + }, + "end": { + "$date": "2021-08-07T04:32:59.000Z" + }, + "events": [ + { + "uuid": "2c5f40c9-ffa2-4a99-8c28-ead46d033e35", + "start": { + "$date": "2021-08-07T02:58:57.000Z" + }, + "end": { + "$date": "2021-08-07T04:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a709e296-5293-4472-a581-0b0685e4edc5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-07T03:00:15.000Z" + }, + "end": { + "$date": "2021-08-07T05:00:56.000Z" + }, + "events": [ + { + "uuid": "e1444468-04ee-47f9-904e-391eb9a69368", + "start": { + "$date": "2021-08-07T03:00:15.000Z" + }, + "end": { + "$date": "2021-08-07T05:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ba5ef0c8-7a79-45ab-a515-8fe0774a8f64", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-07T03:27:07.000Z" + }, + "end": { + "$date": "2021-08-07T05:39:33.000Z" + }, + "events": [ + { + "uuid": "6eb71d20-292e-4fc2-b0dc-3918f40861a1", + "start": { + "$date": "2021-08-07T03:27:07.000Z" + }, + "end": { + "$date": "2021-08-07T05:39:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d828009b-86ad-4336-9cf3-99aee1384673", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-07T03:38:05.000Z" + }, + "end": { + "$date": "2021-08-07T03:55:27.000Z" + }, + "events": [ + { + "uuid": "a6235339-4118-4248-82aa-7da6897b3a13", + "start": { + "$date": "2021-08-07T03:38:05.000Z" + }, + "end": { + "$date": "2021-08-07T03:55:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a6d21594-4963-4af1-989e-3568eea143e7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-07T04:09:57.000Z" + }, + "end": { + "$date": "2021-08-07T05:39:34.000Z" + }, + "events": [ + { + "uuid": "6efa7ecf-d347-42ec-ae64-7d3a2320505b", + "start": { + "$date": "2021-08-07T04:09:57.000Z" + }, + "end": { + "$date": "2021-08-07T05:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "461deae6-4a28-4608-bdf7-087d054a2b51", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-07T05:14:03.000Z" + }, + "end": { + "$date": "2021-08-07T06:31:13.000Z" + }, + "events": [ + { + "uuid": "cfed2360-21e5-45b6-855e-7b158f7abed7", + "start": { + "$date": "2021-08-07T05:14:03.000Z" + }, + "end": { + "$date": "2021-08-07T06:00:03.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "11117bfe-8345-4d45-ba21-fa5c24248bfb", + "start": { + "$date": "2021-08-07T06:00:03.000Z" + }, + "end": { + "$date": "2021-08-07T06:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "76d74a97-5da2-41a3-b779-0d863fad8fc3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-07T05:56:30.000Z" + }, + "end": { + "$date": "2021-08-07T07:21:36.000Z" + }, + "events": [ + { + "uuid": "5dde6df8-0c69-4ca4-8bbe-e6dfe8e62361", + "start": { + "$date": "2021-08-07T05:56:30.000Z" + }, + "end": { + "$date": "2021-08-07T07:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "df71a241-00b6-4f07-b03f-4fa57bdbdbdd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-07T06:34:13.000Z" + }, + "end": { + "$date": "2021-08-07T06:55:41.000Z" + }, + "events": [ + { + "uuid": "21d615cf-56f4-443c-b51b-b76344dc0ef8", + "start": { + "$date": "2021-08-07T06:34:13.000Z" + }, + "end": { + "$date": "2021-08-07T06:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "04b1cccf-8844-4729-9fef-79e937266ae8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-07T07:06:54.000Z" + }, + "end": { + "$date": "2021-08-07T07:56:11.000Z" + }, + "events": [ + { + "uuid": "8dbeb4fe-645d-458f-8025-9631e0130aec", + "start": { + "$date": "2021-08-07T07:06:54.000Z" + }, + "end": { + "$date": "2021-08-07T07:56:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "40877e74-89b0-41e7-bd3f-494f6737afb9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-07T13:23:34.000Z" + }, + "end": { + "$date": "2021-08-07T17:34:39.000Z" + }, + "events": [ + { + "uuid": "fadb280e-3acd-4f6d-b0fb-6d12ad0de01a", + "start": { + "$date": "2021-08-07T13:23:34.000Z" + }, + "end": { + "$date": "2021-08-07T17:34:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d05ab0d7-7834-40c0-acf5-49ce4781a12b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-07T14:19:40.000Z" + }, + "end": { + "$date": "2021-08-07T14:48:06.000Z" + }, + "events": [ + { + "uuid": "130e0eae-b539-40e7-a797-e1148e132851", + "start": { + "$date": "2021-08-07T14:19:40.000Z" + }, + "end": { + "$date": "2021-08-07T14:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fb3f65f1-bd34-4361-91c3-9be20a68c76e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-07T15:20:39.000Z" + }, + "end": { + "$date": "2021-08-07T16:04:27.000Z" + }, + "events": [ + { + "uuid": "1385ed1e-93df-4dff-8755-f6ff87ca4ee4", + "start": { + "$date": "2021-08-07T15:20:39.000Z" + }, + "end": { + "$date": "2021-08-07T16:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c441005f-6965-4a26-86b5-27e5d9086af6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-07T17:36:12.000Z" + }, + "end": { + "$date": "2021-08-07T18:12:38.000Z" + }, + "events": [ + { + "uuid": "b3e8d920-9b95-42f0-876a-85300de1aec1", + "start": { + "$date": "2021-08-07T17:36:12.000Z" + }, + "end": { + "$date": "2021-08-07T18:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2da149c5-0b31-4748-a063-531850b0de9e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-07T17:43:42.000Z" + }, + "end": { + "$date": "2021-08-07T19:24:12.000Z" + }, + "events": [ + { + "uuid": "77f8589c-8936-444e-a6fd-0dcbea3d4b58", + "start": { + "$date": "2021-08-07T17:43:42.000Z" + }, + "end": { + "$date": "2021-08-07T19:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "428b017f-7e6a-4a07-9b43-bab5a1e233f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-07T18:12:58.000Z" + }, + "end": { + "$date": "2021-08-07T19:22:35.000Z" + }, + "events": [ + { + "uuid": "a8d103dc-4168-4dad-a91f-d95cb92f98e4", + "start": { + "$date": "2021-08-07T18:12:58.000Z" + }, + "end": { + "$date": "2021-08-07T19:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3e03b98d-99ec-4db5-b358-3b962f9e94e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-07T18:36:14.000Z" + }, + "end": { + "$date": "2021-08-07T19:07:35.000Z" + }, + "events": [ + { + "uuid": "68b9bf0d-1092-4572-8a31-be7e3112976e", + "start": { + "$date": "2021-08-07T18:36:14.000Z" + }, + "end": { + "$date": "2021-08-07T19:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "026784cd-dd20-4db4-96e4-6ec2b225cee3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-07T18:37:37.000Z" + }, + "end": { + "$date": "2021-08-07T22:28:28.000Z" + }, + "events": [ + { + "uuid": "c434b494-2b28-4afd-b581-ebc3e1118176", + "start": { + "$date": "2021-08-07T18:37:37.000Z" + }, + "end": { + "$date": "2021-08-07T18:51:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebaa1790-091d-48b3-b830-342723af3d5e", + "start": { + "$date": "2021-08-07T18:51:37.000Z" + }, + "end": { + "$date": "2021-08-07T19:24:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47d8f751-b219-4f7a-86c0-3313511a0b3b", + "start": { + "$date": "2021-08-07T19:24:37.000Z" + }, + "end": { + "$date": "2021-08-07T21:08:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a915ae6-712f-4d7d-a5f9-0ec5e94dbc06", + "start": { + "$date": "2021-08-07T21:08:37.000Z" + }, + "end": { + "$date": "2021-08-07T21:13:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "468a6ebd-77a8-47b3-9294-ee5004b2fbc4", + "start": { + "$date": "2021-08-07T21:13:37.000Z" + }, + "end": { + "$date": "2021-08-07T21:23:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dd13ea98-1b52-412a-b4c6-5dd68b73a088", + "start": { + "$date": "2021-08-07T21:23:37.000Z" + }, + "end": { + "$date": "2021-08-07T21:34:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1275af45-e8fa-49c4-813b-a4597b34c7d5", + "start": { + "$date": "2021-08-07T21:34:37.000Z" + }, + "end": { + "$date": "2021-08-07T22:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dbb13e77-b3bf-43b5-9ad1-76087d5b0c21", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-07T20:02:06.000Z" + }, + "end": { + "$date": "2021-08-07T20:12:03.000Z" + }, + "events": [ + { + "uuid": "7ec1531d-3dbb-4585-b588-88736a1ee475", + "start": { + "$date": "2021-08-07T20:02:06.000Z" + }, + "end": { + "$date": "2021-08-07T20:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "17bfcb8d-e8e4-44fa-9443-661366a918ec", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-07T21:34:11.000Z" + }, + "end": { + "$date": "2021-08-07T23:29:01.000Z" + }, + "events": [ + { + "uuid": "b6b095ec-ed4e-4b7d-94f9-f96eaf71a28f", + "start": { + "$date": "2021-08-07T21:34:11.000Z" + }, + "end": { + "$date": "2021-08-07T22:53:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25feefb8-a4ce-42a7-8194-87d26947991c", + "start": { + "$date": "2021-08-07T22:53:11.000Z" + }, + "end": { + "$date": "2021-08-07T22:58:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c621af4-3e2f-4cef-ba6d-91726ddd518e", + "start": { + "$date": "2021-08-07T22:58:11.000Z" + }, + "end": { + "$date": "2021-08-07T23:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "624d80b1-f40a-46b0-9616-2b7a1cbe3829", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-07T22:29:13.000Z" + }, + "end": { + "$date": "2021-08-08T04:45:14.000Z" + }, + "events": [ + { + "uuid": "66e2a424-0172-43d9-a0cc-1f056ea4d4e3", + "start": { + "$date": "2021-08-07T22:29:13.000Z" + }, + "end": { + "$date": "2021-08-08T04:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a9395903-3f43-414c-b8a9-ee0edc97ab63", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-07T23:33:27.000Z" + }, + "end": { + "$date": "2021-08-08T00:10:19.000Z" + }, + "events": [ + { + "uuid": "8899a616-9cbf-4d34-83d2-a7c53e06e15c", + "start": { + "$date": "2021-08-07T23:33:27.000Z" + }, + "end": { + "$date": "2021-08-08T00:10:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8bd4c247-6f4e-4440-ae60-60fdd991f697", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-07T23:58:27.000Z" + }, + "end": { + "$date": "2021-08-08T00:46:00.000Z" + }, + "events": [ + { + "uuid": "e9f99987-b153-4faf-96c1-f70d21cfe47d", + "start": { + "$date": "2021-08-07T23:58:27.000Z" + }, + "end": { + "$date": "2021-08-08T00:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7ceb0c2a-838a-4b82-a577-1f04ca6ab179", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-08T00:05:38.000Z" + }, + "end": { + "$date": "2021-08-08T00:39:05.000Z" + }, + "events": [ + { + "uuid": "82752117-0bd2-49af-a60e-d841c7bd3c21", + "start": { + "$date": "2021-08-08T00:05:38.000Z" + }, + "end": { + "$date": "2021-08-08T00:39:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "10eaa001-aa9a-4469-bf94-4ea81dc4fe1d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-08T00:43:34.000Z" + }, + "end": { + "$date": "2021-08-08T01:03:35.000Z" + }, + "events": [ + { + "uuid": "de597f53-8f00-4be2-8b84-66b5652aa114", + "start": { + "$date": "2021-08-08T00:43:34.000Z" + }, + "end": { + "$date": "2021-08-08T01:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "baf85781-851e-4b32-a958-0a760d5a1b28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T00:46:04.000Z" + }, + "end": { + "$date": "2021-08-08T01:03:36.000Z" + }, + "events": [ + { + "uuid": "659e3082-a738-4be5-aaa2-cebccf600395", + "start": { + "$date": "2021-08-08T00:46:04.000Z" + }, + "end": { + "$date": "2021-08-08T01:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "31f6461f-d6f4-4875-9d12-66ed2a92fe52", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T01:05:44.000Z" + }, + "end": { + "$date": "2021-08-08T01:33:22.000Z" + }, + "events": [ + { + "uuid": "19ca509d-bd0c-45ae-bf99-daa18689952c", + "start": { + "$date": "2021-08-08T01:05:44.000Z" + }, + "end": { + "$date": "2021-08-08T01:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1db17ea9-4b84-494c-b94e-9709dc99ede3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-08T01:11:32.000Z" + }, + "end": { + "$date": "2021-08-08T01:32:33.000Z" + }, + "events": [ + { + "uuid": "80ef002d-bba6-41ee-953e-d1d9430d086b", + "start": { + "$date": "2021-08-08T01:11:32.000Z" + }, + "end": { + "$date": "2021-08-08T01:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7e218f1b-6378-424b-9a2d-4b295376d184", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-08T01:30:04.000Z" + }, + "end": { + "$date": "2021-08-08T01:34:15.000Z" + }, + "events": [ + { + "uuid": "c03d26eb-62e1-4715-a68f-ac38c6afbf29", + "start": { + "$date": "2021-08-08T01:30:04.000Z" + }, + "end": { + "$date": "2021-08-08T01:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2cc2761-04d0-4e61-abc4-0d7f7b184e72", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T01:34:11.000Z" + }, + "end": { + "$date": "2021-08-08T01:41:43.000Z" + }, + "events": [ + { + "uuid": "eae718d4-95ea-43a0-b706-632be0bff85b", + "start": { + "$date": "2021-08-08T01:34:11.000Z" + }, + "end": { + "$date": "2021-08-08T01:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bab3d9eb-bbc6-4665-bad1-f5742d5744fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T01:44:47.000Z" + }, + "end": { + "$date": "2021-08-08T04:07:32.000Z" + }, + "events": [ + { + "uuid": "d70a928e-1f6a-4acd-ad4a-3f85ecbf7887", + "start": { + "$date": "2021-08-08T01:44:47.000Z" + }, + "end": { + "$date": "2021-08-08T04:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3de46bcf-a705-45f6-9d40-d7f12ddfa156", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-08T01:56:06.000Z" + }, + "end": { + "$date": "2021-08-08T02:33:16.000Z" + }, + "events": [ + { + "uuid": "d408f943-1a12-432b-a732-0c681410a3d1", + "start": { + "$date": "2021-08-08T01:56:06.000Z" + }, + "end": { + "$date": "2021-08-08T02:33:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a110bf8-f38b-48ef-9e72-145573dfaffb", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-08T03:15:25.000Z" + }, + "end": { + "$date": "2021-08-08T06:38:18.000Z" + }, + "events": [ + { + "uuid": "db8da095-935d-4100-8d60-53842685ff88", + "start": { + "$date": "2021-08-08T03:15:25.000Z" + }, + "end": { + "$date": "2021-08-08T06:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c1f1d47-16cc-4222-9910-05096d638470", + "uuid": "6e7b3168-f1e9-4f98-bd6d-f79b1e292bb6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-08T03:29:46.000Z" + }, + "end": { + "$date": "2021-08-08T03:37:06.000Z" + }, + "events": [ + { + "uuid": "fd590df6-3905-4106-bca5-39273f71d874", + "start": { + "$date": "2021-08-08T03:29:46.000Z" + }, + "end": { + "$date": "2021-08-08T03:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eadca4b1-244b-4240-96ff-0aa89e339a2e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T04:07:56.000Z" + }, + "end": { + "$date": "2021-08-08T05:19:04.000Z" + }, + "events": [ + { + "uuid": "6138f4a3-e90e-407e-84d9-24c21c005e76", + "start": { + "$date": "2021-08-08T04:07:56.000Z" + }, + "end": { + "$date": "2021-08-08T05:19:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e5d2baa7-f9c5-4000-b519-6d53a0ea73c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-08T04:50:05.000Z" + }, + "end": { + "$date": "2021-08-08T06:02:46.000Z" + }, + "events": [ + { + "uuid": "b47e848b-e5c3-4560-a204-fe9fbb879b54", + "start": { + "$date": "2021-08-08T04:50:05.000Z" + }, + "end": { + "$date": "2021-08-08T05:05:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "52288453-cfbc-4abd-84bd-41881e8806c8", + "start": { + "$date": "2021-08-08T05:05:05.000Z" + }, + "end": { + "$date": "2021-08-08T05:10:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d323ff2-7204-40a3-9747-26a53d267883", + "start": { + "$date": "2021-08-08T05:10:05.000Z" + }, + "end": { + "$date": "2021-08-08T05:20:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08ccad79-a44e-4d38-b3f8-f570a83233d6", + "start": { + "$date": "2021-08-08T05:20:05.000Z" + }, + "end": { + "$date": "2021-08-08T05:23:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7c1f21cc-14ac-49fa-8090-22b9816fe2c2", + "start": { + "$date": "2021-08-08T05:23:05.000Z" + }, + "end": { + "$date": "2021-08-08T05:25:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81b99df7-378a-4abd-9cd7-36f0d36b8222", + "start": { + "$date": "2021-08-08T05:25:05.000Z" + }, + "end": { + "$date": "2021-08-08T05:36:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48a31e36-5bd6-449b-9233-420ad00801fa", + "start": { + "$date": "2021-08-08T05:36:05.000Z" + }, + "end": { + "$date": "2021-08-08T06:02:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "36445d1c-38f4-455e-9657-eeb2b0384e62", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-08T04:53:37.000Z" + }, + "end": { + "$date": "2021-08-08T05:22:01.000Z" + }, + "events": [ + { + "uuid": "5298a5f0-ea61-4d2a-9ec5-62ba9a7a44a4", + "start": { + "$date": "2021-08-08T04:53:37.000Z" + }, + "end": { + "$date": "2021-08-08T05:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e798202-efab-4be9-aef8-265c384139c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-08T05:09:08.000Z" + }, + "end": { + "$date": "2021-08-08T06:38:19.000Z" + }, + "events": [ + { + "uuid": "ae8bbd54-6786-40c9-a1c0-1283989e370e", + "start": { + "$date": "2021-08-08T05:09:08.000Z" + }, + "end": { + "$date": "2021-08-08T06:38:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8a7bc4fd-9ecb-4baf-b22e-e8530c5ee40e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T05:20:03.000Z" + }, + "end": { + "$date": "2021-08-08T08:27:55.000Z" + }, + "events": [ + { + "uuid": "28328b38-faf5-4393-b049-bf8b8d0d9ac9", + "start": { + "$date": "2021-08-08T05:20:03.000Z" + }, + "end": { + "$date": "2021-08-08T08:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "65959aa3-bea4-457a-979f-f162135106aa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-08T05:39:49.000Z" + }, + "end": { + "$date": "2021-08-08T07:06:32.000Z" + }, + "events": [ + { + "uuid": "16229c1d-f245-4916-9e03-fb1894e67487", + "start": { + "$date": "2021-08-08T05:39:49.000Z" + }, + "end": { + "$date": "2021-08-08T07:06:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8626fe98-8835-4028-a5dd-5aecdbb5557a", + "uuid": "298d50fc-303f-4a94-84a6-31ab650e2e6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-08T06:03:22.000Z" + }, + "end": { + "$date": "2021-08-08T06:26:42.000Z" + }, + "events": [ + { + "uuid": "31926a1c-78bd-43db-9381-0b72b5d4cac8", + "start": { + "$date": "2021-08-08T06:03:22.000Z" + }, + "end": { + "$date": "2021-08-08T06:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8e63e39-d72c-434d-83c9-4f1b7f7468f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-08T07:09:51.000Z" + }, + "end": { + "$date": "2021-08-08T07:30:16.000Z" + }, + "events": [ + { + "uuid": "0f8b2243-582b-44c4-b6f4-24cffa07c7d1", + "start": { + "$date": "2021-08-08T07:09:51.000Z" + }, + "end": { + "$date": "2021-08-08T07:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e29529d-b3c6-49ef-92d1-9733a9d0ab76", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-08T07:41:37.000Z" + }, + "end": { + "$date": "2021-08-08T08:07:53.000Z" + }, + "events": [ + { + "uuid": "0ce02033-d49e-4e8a-90cd-70ad3848ba75", + "start": { + "$date": "2021-08-08T07:41:37.000Z" + }, + "end": { + "$date": "2021-08-08T08:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f333d35b-67d7-4297-9d48-6a221ad4d874", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-08T08:08:14.000Z" + }, + "end": { + "$date": "2021-08-08T09:17:32.000Z" + }, + "events": [ + { + "uuid": "9cf70b84-7819-4b76-afdc-f5aa2fb9b87f", + "start": { + "$date": "2021-08-08T08:08:14.000Z" + }, + "end": { + "$date": "2021-08-08T09:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7bd0c518-aefa-4f0e-8216-96c3e175bea6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T13:51:58.000Z" + }, + "end": { + "$date": "2021-08-08T14:54:22.000Z" + }, + "events": [ + { + "uuid": "b9862ec4-9f97-4a3a-a113-eb576e303395", + "start": { + "$date": "2021-08-08T13:51:58.000Z" + }, + "end": { + "$date": "2021-08-08T14:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f96d0b7e-ec90-4e8f-a406-2f51837afd84", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T14:08:53.000Z" + }, + "end": { + "$date": "2021-08-08T15:00:20.000Z" + }, + "events": [ + { + "uuid": "64cc3db8-3ba9-487d-b563-89e9100a33e9", + "start": { + "$date": "2021-08-08T14:08:53.000Z" + }, + "end": { + "$date": "2021-08-08T15:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "30fffa70-ef29-4370-910d-dd272387e50f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-08T14:53:51.000Z" + }, + "end": { + "$date": "2021-08-08T18:11:35.000Z" + }, + "events": [ + { + "uuid": "0b69d2fd-467b-4aa8-b9d8-de3059c5b41f", + "start": { + "$date": "2021-08-08T14:53:51.000Z" + }, + "end": { + "$date": "2021-08-08T18:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "30f3684d-4ccc-4ef7-990f-02e9aa7d308a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T14:54:36.000Z" + }, + "end": { + "$date": "2021-08-08T18:11:21.000Z" + }, + "events": [ + { + "uuid": "8e98db54-e560-45dc-a205-b440d25f8898", + "start": { + "$date": "2021-08-08T14:54:36.000Z" + }, + "end": { + "$date": "2021-08-08T18:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "74039963-ee82-4d4a-8f6b-89745d17bb0a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T16:21:23.000Z" + }, + "end": { + "$date": "2021-08-08T17:13:13.000Z" + }, + "events": [ + { + "uuid": "156f1899-49bc-46e0-807d-93107622f6e4", + "start": { + "$date": "2021-08-08T16:21:23.000Z" + }, + "end": { + "$date": "2021-08-08T17:13:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d58e1a4a-d4f3-4bab-ad1c-c62b14f178bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-08T16:56:48.000Z" + }, + "end": { + "$date": "2021-08-08T17:34:37.000Z" + }, + "events": [ + { + "uuid": "3837b2b4-60d0-4493-a183-fa6f2f28d1aa", + "start": { + "$date": "2021-08-08T16:56:48.000Z" + }, + "end": { + "$date": "2021-08-08T17:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e1b0275b-7e03-4d19-b5e1-0bb8d17cf176", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T17:18:59.000Z" + }, + "end": { + "$date": "2021-08-08T17:32:46.000Z" + }, + "events": [ + { + "uuid": "eef5845e-cc5c-4d18-9f5f-82eb6b49fe48", + "start": { + "$date": "2021-08-08T17:18:59.000Z" + }, + "end": { + "$date": "2021-08-08T17:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c198fbf3-dfea-4e81-9b5b-d03a0cbe5a44", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T17:37:32.000Z" + }, + "end": { + "$date": "2021-08-08T17:51:24.000Z" + }, + "events": [ + { + "uuid": "1ae2fb8c-d67a-4bc1-9d98-27d83f6dd2c9", + "start": { + "$date": "2021-08-08T17:37:32.000Z" + }, + "end": { + "$date": "2021-08-08T17:51:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "29b94c20-2150-4a03-a4dd-2b4d0e2ce500", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-08T17:40:05.000Z" + }, + "end": { + "$date": "2021-08-08T18:08:41.000Z" + }, + "events": [ + { + "uuid": "14ee3b39-09a6-4891-9829-5fa59ac967b7", + "start": { + "$date": "2021-08-08T17:40:05.000Z" + }, + "end": { + "$date": "2021-08-08T18:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c9cb6fec-f4ba-4658-b452-9652c4b23af3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-08T17:41:02.000Z" + }, + "end": { + "$date": "2021-08-08T17:42:58.000Z" + }, + "events": [ + { + "uuid": "2efad1db-fbe9-439b-af25-252b6a079d15", + "start": { + "$date": "2021-08-08T17:41:02.000Z" + }, + "end": { + "$date": "2021-08-08T17:42:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "58aad8d3-e0d6-486f-8718-d4d917d4e03b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T17:51:34.000Z" + }, + "end": { + "$date": "2021-08-08T18:53:49.000Z" + }, + "events": [ + { + "uuid": "724cbf5c-0deb-4574-91e1-f888487bdff0", + "start": { + "$date": "2021-08-08T17:51:34.000Z" + }, + "end": { + "$date": "2021-08-08T18:53:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "aff0932b-ae93-48ef-8861-081fd44f38ce", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-08T18:16:06.000Z" + }, + "end": { + "$date": "2021-08-08T18:46:12.000Z" + }, + "events": [ + { + "uuid": "114b2cc9-2912-4bb2-b987-e9c2cef7ec9a", + "start": { + "$date": "2021-08-08T18:16:06.000Z" + }, + "end": { + "$date": "2021-08-08T18:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3037d940-f749-4cb6-87e1-096ace3bbde6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-08T18:16:11.000Z" + }, + "end": { + "$date": "2021-08-08T18:47:45.000Z" + }, + "events": [ + { + "uuid": "9cb7e21c-fa1e-42ce-ad84-23958aa42c1c", + "start": { + "$date": "2021-08-08T18:16:11.000Z" + }, + "end": { + "$date": "2021-08-08T18:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "01e7da34-79b4-4922-bf36-e3a03651696e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-08T18:31:43.000Z" + }, + "end": { + "$date": "2021-08-08T19:24:05.000Z" + }, + "events": [ + { + "uuid": "3a89934a-4abe-42e2-9e77-d82eba474e9f", + "start": { + "$date": "2021-08-08T18:31:43.000Z" + }, + "end": { + "$date": "2021-08-08T19:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "72c50925-40bb-45cf-b169-1659d3327414", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-08T20:30:03.000Z" + }, + "end": { + "$date": "2021-08-08T20:54:16.000Z" + }, + "events": [ + { + "uuid": "cd6449c8-9a37-47c3-82fb-809b38e60e1c", + "start": { + "$date": "2021-08-08T20:30:03.000Z" + }, + "end": { + "$date": "2021-08-08T20:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2c0385c5-ffbc-4766-840b-27c15e1380c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-08T20:34:50.000Z" + }, + "end": { + "$date": "2021-08-08T21:22:20.000Z" + }, + "events": [ + { + "uuid": "48f2fcd4-a56e-466f-b4a5-fdcf59608d4e", + "start": { + "$date": "2021-08-08T20:34:50.000Z" + }, + "end": { + "$date": "2021-08-08T21:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "34e57b61-84af-4020-a3d2-cef52fa92fb5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-08T22:08:53.000Z" + }, + "end": { + "$date": "2021-08-08T22:24:19.000Z" + }, + "events": [ + { + "uuid": "d69c1e2b-89be-4f46-b764-5e67fe088298", + "start": { + "$date": "2021-08-08T22:08:53.000Z" + }, + "end": { + "$date": "2021-08-08T22:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b964658d-5287-44ef-aac8-7af1f84d777b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T22:10:19.000Z" + }, + "end": { + "$date": "2021-08-08T22:33:16.000Z" + }, + "events": [ + { + "uuid": "b84ef897-11f2-4ad8-b3b5-50b42e87c990", + "start": { + "$date": "2021-08-08T22:10:19.000Z" + }, + "end": { + "$date": "2021-08-08T22:33:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8e0875b4-df14-4d1e-abd2-5461d12e5adc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-08T22:30:15.000Z" + }, + "end": { + "$date": "2021-08-09T00:04:41.000Z" + }, + "events": [ + { + "uuid": "eb08652b-f100-435d-8afa-1bd2c5b5e1ba", + "start": { + "$date": "2021-08-08T22:30:15.000Z" + }, + "end": { + "$date": "2021-08-09T00:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "86e41b36-d860-479d-9443-f9299d051eba", + "uuid": "79570441-e510-4c54-959c-ee45795e7705", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-08T22:39:07.000Z" + }, + "end": { + "$date": "2021-08-08T23:19:32.000Z" + }, + "events": [ + { + "uuid": "86d72a47-93d2-4217-bc0c-5f8a7f866e79", + "start": { + "$date": "2021-08-08T22:39:07.000Z" + }, + "end": { + "$date": "2021-08-08T23:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da8e9a52-9b86-4a7c-b50f-a4a6e435fd81", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-08T23:43:03.000Z" + }, + "end": { + "$date": "2021-08-08T23:58:10.000Z" + }, + "events": [ + { + "uuid": "a9f5663b-6204-4887-ab4b-43b03f264e26", + "start": { + "$date": "2021-08-08T23:43:03.000Z" + }, + "end": { + "$date": "2021-08-08T23:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f08dead5-2d90-44f2-b0b2-45b4abe76362", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-09T00:05:04.000Z" + }, + "end": { + "$date": "2021-08-09T00:21:40.000Z" + }, + "events": [ + { + "uuid": "52f2daa8-b8c5-4722-bffb-d39496f1e3f2", + "start": { + "$date": "2021-08-09T00:05:04.000Z" + }, + "end": { + "$date": "2021-08-09T00:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "09f07ade-68e2-47b1-971c-9a6feda69ba8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-09T00:07:24.000Z" + }, + "end": { + "$date": "2021-08-09T00:36:04.000Z" + }, + "events": [ + { + "uuid": "ccdbb468-5182-4ef2-91bf-4a12e0a06534", + "start": { + "$date": "2021-08-09T00:07:24.000Z" + }, + "end": { + "$date": "2021-08-09T00:36:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bff6de2b-8f3e-4741-933e-d6a1a25c578d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-09T00:44:57.000Z" + }, + "end": { + "$date": "2021-08-09T02:37:21.000Z" + }, + "events": [ + { + "uuid": "bbd51646-930d-400b-8a5c-406cb9ccb1d9", + "start": { + "$date": "2021-08-09T00:44:57.000Z" + }, + "end": { + "$date": "2021-08-09T02:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "18d1ec61-2c0b-436a-b8ec-8bd5fbe181ed", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-09T00:52:57.000Z" + }, + "end": { + "$date": "2021-08-09T01:31:44.000Z" + }, + "events": [ + { + "uuid": "f5b7fa0c-53e6-4b13-834d-bc5c4dc16782", + "start": { + "$date": "2021-08-09T00:52:57.000Z" + }, + "end": { + "$date": "2021-08-09T01:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", + "uuid": "fa7e4085-50fa-4111-a75b-0570c8a7d04a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T01:12:56.000Z" + }, + "end": { + "$date": "2021-08-09T02:36:12.000Z" + }, + "events": [ + { + "uuid": "0974e93f-52ef-4489-8f74-3d9e31682766", + "start": { + "$date": "2021-08-09T01:12:56.000Z" + }, + "end": { + "$date": "2021-08-09T02:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d8e46055-38c0-415b-a164-ac916f06a357", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-09T01:53:34.000Z" + }, + "end": { + "$date": "2021-08-09T02:37:45.000Z" + }, + "events": [ + { + "uuid": "5aa63cd7-50f4-44ec-af0d-40be2ac6b815", + "start": { + "$date": "2021-08-09T01:53:34.000Z" + }, + "end": { + "$date": "2021-08-09T02:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "777e8634-3f57-4826-a61e-e61b7a7f3311", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-09T02:07:50.000Z" + }, + "end": { + "$date": "2021-08-09T04:47:16.000Z" + }, + "events": [ + { + "uuid": "d9d6d029-b070-413a-b87d-d8d4ca9153f9", + "start": { + "$date": "2021-08-09T02:07:50.000Z" + }, + "end": { + "$date": "2021-08-09T02:28:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0535a39-2112-425c-bac7-3280f53296c4", + "start": { + "$date": "2021-08-09T02:28:50.000Z" + }, + "end": { + "$date": "2021-08-09T02:30:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44e02346-855f-4376-b233-dfbefd2cc687", + "start": { + "$date": "2021-08-09T02:30:50.000Z" + }, + "end": { + "$date": "2021-08-09T02:42:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83ce8526-fbcf-4f9f-ac06-b3173fb1e9d0", + "start": { + "$date": "2021-08-09T02:42:50.000Z" + }, + "end": { + "$date": "2021-08-09T02:49:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1d4bbf2-1939-4366-8cf6-bb540a78a152", + "start": { + "$date": "2021-08-09T02:49:50.000Z" + }, + "end": { + "$date": "2021-08-09T03:04:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "21d0f3f6-b073-4ed7-ad77-d0b613284522", + "start": { + "$date": "2021-08-09T03:04:50.000Z" + }, + "end": { + "$date": "2021-08-09T03:41:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "75e64c5c-c934-4926-a2a5-a8989bd7d69e", + "start": { + "$date": "2021-08-09T03:41:50.000Z" + }, + "end": { + "$date": "2021-08-09T04:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0f225b0f-df65-40a3-ae9e-528f1c13714d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-09T02:41:32.000Z" + }, + "end": { + "$date": "2021-08-09T04:09:01.000Z" + }, + "events": [ + { + "uuid": "098dcb15-ff93-4151-a261-74dd971c4496", + "start": { + "$date": "2021-08-09T02:41:32.000Z" + }, + "end": { + "$date": "2021-08-09T04:09:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "cd580c87-c8ef-47ca-9a59-63e1f8d8a08c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-09T02:52:36.000Z" + }, + "end": { + "$date": "2021-08-09T04:08:24.000Z" + }, + "events": [ + { + "uuid": "c162c6a4-0801-4e15-b7c8-be527f434326", + "start": { + "$date": "2021-08-09T02:52:36.000Z" + }, + "end": { + "$date": "2021-08-09T04:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", + "uuid": "1f65b016-23c3-4603-b8dd-2290c0afdc78", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T02:53:04.000Z" + }, + "end": { + "$date": "2021-08-09T03:53:42.000Z" + }, + "events": [ + { + "uuid": "4e6230c1-a236-4a52-bee4-b4ba883aa5bf", + "start": { + "$date": "2021-08-09T02:53:04.000Z" + }, + "end": { + "$date": "2021-08-09T03:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb462b0a-6db9-42ed-88cc-fca6d71cb249", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-09T03:35:03.000Z" + }, + "end": { + "$date": "2021-08-09T04:15:32.000Z" + }, + "events": [ + { + "uuid": "986f1f7c-f1b0-48a6-a1b5-288bf78d8cef", + "start": { + "$date": "2021-08-09T03:35:03.000Z" + }, + "end": { + "$date": "2021-08-09T04:15:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea513ad9-b323-4e06-81e8-6d30ff8be4dc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-09T04:21:52.000Z" + }, + "end": { + "$date": "2021-08-09T04:58:23.000Z" + }, + "events": [ + { + "uuid": "f6f683d8-1885-4de5-80fc-578260a8e4e6", + "start": { + "$date": "2021-08-09T04:21:52.000Z" + }, + "end": { + "$date": "2021-08-09T04:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "84e286ff-1b81-4c69-8ed5-1adea94d5cd4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-09T04:28:56.000Z" + }, + "end": { + "$date": "2021-08-09T05:32:34.000Z" + }, + "events": [ + { + "uuid": "7ee53864-2a91-4107-9999-7a1aac88dac7", + "start": { + "$date": "2021-08-09T04:28:56.000Z" + }, + "end": { + "$date": "2021-08-09T05:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "5f919e24-5870-4bc7-8000-8f9b0c1f5382", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-09T04:32:06.000Z" + }, + "end": { + "$date": "2021-08-09T04:33:51.000Z" + }, + "events": [ + { + "uuid": "3e1aa816-775a-4b49-861a-5b0ad72fde23", + "start": { + "$date": "2021-08-09T04:32:06.000Z" + }, + "end": { + "$date": "2021-08-09T04:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "b23ce956-2d8a-4eaf-9d3d-64a7af58888a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-09T04:35:21.000Z" + }, + "end": { + "$date": "2021-08-09T04:36:26.000Z" + }, + "events": [ + { + "uuid": "b75d7429-8fdd-4dd2-b72b-37e69ceed6b8", + "start": { + "$date": "2021-08-09T04:35:21.000Z" + }, + "end": { + "$date": "2021-08-09T04:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "f2bb4211-9ac1-42ff-8c7b-58df7537902f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-09T04:43:42.000Z" + }, + "end": { + "$date": "2021-08-09T05:21:01.000Z" + }, + "events": [ + { + "uuid": "f681669e-bae0-4530-b92d-deb5b0ae842a", + "start": { + "$date": "2021-08-09T04:43:42.000Z" + }, + "end": { + "$date": "2021-08-09T05:21:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cc6f963-95cc-4349-8519-a0987f42806a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-09T05:19:16.000Z" + }, + "end": { + "$date": "2021-08-09T05:52:49.000Z" + }, + "events": [ + { + "uuid": "c0ac7a4a-c883-44e7-b7ec-bba254419c68", + "start": { + "$date": "2021-08-09T05:19:16.000Z" + }, + "end": { + "$date": "2021-08-09T05:52:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "86565fe8-0124-4e30-aed2-d94275b0f7a0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T12:45:35.000Z" + }, + "end": { + "$date": "2021-08-09T13:20:09.000Z" + }, + "events": [ + { + "uuid": "ab665877-4ae2-4587-987c-8edfeb4f5b5f", + "start": { + "$date": "2021-08-09T12:45:35.000Z" + }, + "end": { + "$date": "2021-08-09T13:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", + "uuid": "97f00ee7-4c62-45ba-b0be-1fba2dce6582", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T13:22:10.000Z" + }, + "end": { + "$date": "2021-08-09T14:39:28.000Z" + }, + "events": [ + { + "uuid": "d20ce0bb-c5a1-456d-ba27-e035fac08156", + "start": { + "$date": "2021-08-09T13:22:10.000Z" + }, + "end": { + "$date": "2021-08-09T14:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "05ccf1b1-be5a-4b50-a7b4-bd0ccbb933eb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-09T14:31:12.000Z" + }, + "end": { + "$date": "2021-08-09T16:59:33.000Z" + }, + "events": [ + { + "uuid": "2c685a6f-02b7-4057-a5f7-822667c8b2da", + "start": { + "$date": "2021-08-09T14:31:12.000Z" + }, + "end": { + "$date": "2021-08-09T16:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "3195ead8-52a2-470f-9abb-d44aa505bb77", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-09T15:35:08.000Z" + }, + "end": { + "$date": "2021-08-09T21:32:22.000Z" + }, + "events": [ + { + "uuid": "69627d83-f6bb-45f9-8429-0331b093966e", + "start": { + "$date": "2021-08-09T15:35:08.000Z" + }, + "end": { + "$date": "2021-08-09T21:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", + "uuid": "65af4514-1ddf-41c7-8d4c-d3ee7c9b98e5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T15:52:30.000Z" + }, + "end": { + "$date": "2021-08-09T17:08:03.000Z" + }, + "events": [ + { + "uuid": "d989c073-500b-4f1a-acf2-3a995e56cd08", + "start": { + "$date": "2021-08-09T15:52:30.000Z" + }, + "end": { + "$date": "2021-08-09T17:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "66118f5f-c4bb-403a-a780-a3dd5a9a269d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T18:06:26.000Z" + }, + "end": { + "$date": "2021-08-09T18:22:23.000Z" + }, + "events": [ + { + "uuid": "07245d5f-2c18-4b75-9064-498ae05ac09e", + "start": { + "$date": "2021-08-09T18:06:26.000Z" + }, + "end": { + "$date": "2021-08-09T18:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8b738fa-15ae-4370-8b6b-67c96f29fcc1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-09T18:09:48.000Z" + }, + "end": { + "$date": "2021-08-09T18:12:13.000Z" + }, + "events": [ + { + "uuid": "4371f2a8-da52-4be5-ba42-528c23ca7d0c", + "start": { + "$date": "2021-08-09T18:09:48.000Z" + }, + "end": { + "$date": "2021-08-09T18:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "140f5615-03c7-4ec9-8d87-ae5cec0b5963", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-09T18:12:42.000Z" + }, + "end": { + "$date": "2021-08-09T18:37:19.000Z" + }, + "events": [ + { + "uuid": "a95b88db-3a94-4b72-8357-6061795a7c8b", + "start": { + "$date": "2021-08-09T18:12:42.000Z" + }, + "end": { + "$date": "2021-08-09T18:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "15e441b8-2ab1-44ff-94c3-ca3a8a269b08", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T18:22:49.000Z" + }, + "end": { + "$date": "2021-08-09T19:13:31.000Z" + }, + "events": [ + { + "uuid": "c9f651a0-933e-4cbf-9e5f-a55caa948064", + "start": { + "$date": "2021-08-09T18:22:49.000Z" + }, + "end": { + "$date": "2021-08-09T19:13:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "024d276d-3823-40fc-855f-cdcce50b2605", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T19:13:57.000Z" + }, + "end": { + "$date": "2021-08-09T20:49:13.000Z" + }, + "events": [ + { + "uuid": "ffb68c2a-8d32-4527-a814-42e7bb1ceec4", + "start": { + "$date": "2021-08-09T19:13:57.000Z" + }, + "end": { + "$date": "2021-08-09T20:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3edc0018-12f0-448f-9eb8-c7ce54ef3e82", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-09T20:12:04.000Z" + }, + "end": { + "$date": "2021-08-09T20:54:14.000Z" + }, + "events": [ + { + "uuid": "e3fd58d4-482e-4f88-bff1-3d265b23b20e", + "start": { + "$date": "2021-08-09T20:12:04.000Z" + }, + "end": { + "$date": "2021-08-09T20:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", + "uuid": "b5f2beaa-c1fe-4c64-b931-0d31f148bbcb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-09T20:51:23.000Z" + }, + "end": { + "$date": "2021-08-09T21:29:12.000Z" + }, + "events": [ + { + "uuid": "e63aa5b8-6e3a-4ad4-a4b2-6d268b342048", + "start": { + "$date": "2021-08-09T20:51:23.000Z" + }, + "end": { + "$date": "2021-08-09T21:29:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "0c11a4a1-6d00-45e0-8fa2-14760135e353", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-09T22:37:14.000Z" + }, + "end": { + "$date": "2021-08-10T02:54:15.000Z" + }, + "events": [ + { + "uuid": "568c13d1-2028-4d57-ad65-d76b0b76dfc6", + "start": { + "$date": "2021-08-09T22:37:14.000Z" + }, + "end": { + "$date": "2021-08-10T02:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "db9bcf61-0138-4a8f-b4e6-be27ccbf85ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-10T00:29:11.000Z" + }, + "end": { + "$date": "2021-08-10T02:04:57.000Z" + }, + "events": [ + { + "uuid": "07e17863-5efe-470d-8975-ce36e044807f", + "start": { + "$date": "2021-08-10T00:29:11.000Z" + }, + "end": { + "$date": "2021-08-10T02:04:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b51488a6-4327-48a6-a437-ab640163e13c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-10T00:49:00.000Z" + }, + "end": { + "$date": "2021-08-10T01:55:00.000Z" + }, + "events": [ + { + "uuid": "6d0bd5ac-0dc7-4e25-a430-c689efcb8b66", + "start": { + "$date": "2021-08-10T00:49:00.000Z" + }, + "end": { + "$date": "2021-08-10T01:55:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3e557c34-06c8-47c6-9802-e4bfb31e705b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-10T00:58:09.000Z" + }, + "end": { + "$date": "2021-08-10T03:57:33.000Z" + }, + "events": [ + { + "uuid": "0532656d-ee86-43de-8fd7-bc6625957349", + "start": { + "$date": "2021-08-10T00:58:09.000Z" + }, + "end": { + "$date": "2021-08-10T03:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9101e95e-e92c-4bff-90f1-2db4738c3e73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-10T02:21:19.000Z" + }, + "end": { + "$date": "2021-08-10T02:56:54.000Z" + }, + "events": [ + { + "uuid": "0adc6f38-1ee6-4434-a27d-1b44c5641615", + "start": { + "$date": "2021-08-10T02:21:19.000Z" + }, + "end": { + "$date": "2021-08-10T02:56:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1c7b3069-dcce-4bc7-ab05-abbd51c6f957", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T02:25:16.000Z" + }, + "end": { + "$date": "2021-08-10T03:59:25.000Z" + }, + "events": [ + { + "uuid": "41d31f73-8e87-4b72-90a9-f2f7b4372f64", + "start": { + "$date": "2021-08-10T02:25:16.000Z" + }, + "end": { + "$date": "2021-08-10T02:48:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3ec6de26-92b0-427e-8fa6-2ed69269c86a", + "start": { + "$date": "2021-08-10T02:48:16.000Z" + }, + "end": { + "$date": "2021-08-10T02:53:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "339ad582-76f2-4cad-ae80-af9d6b7b9a98", + "start": { + "$date": "2021-08-10T02:53:16.000Z" + }, + "end": { + "$date": "2021-08-10T03:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab865bc4-0c21-4475-aa86-c40a019b08c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-10T03:26:04.000Z" + }, + "end": { + "$date": "2021-08-10T03:26:01.000Z" + }, + "events": [ + { + "uuid": "53e414f0-b6fb-472a-a341-da314bd7823c", + "start": { + "$date": "2021-08-10T03:26:04.000Z" + }, + "end": { + "$date": "2021-08-10T03:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b90da81-053f-467e-9bd0-cf54a8149b63", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-10T03:31:18.000Z" + }, + "end": { + "$date": "2021-08-10T04:03:56.000Z" + }, + "events": [ + { + "uuid": "367b4738-5e57-4d0b-a858-edf0ac604382", + "start": { + "$date": "2021-08-10T03:31:18.000Z" + }, + "end": { + "$date": "2021-08-10T04:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff6fd201-8126-4428-a542-6b2d07cfa673", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-10T03:57:53.000Z" + }, + "end": { + "$date": "2021-08-10T06:32:06.000Z" + }, + "events": [ + { + "uuid": "d1409949-6a49-432f-b4e4-40cfd78ce541", + "start": { + "$date": "2021-08-10T03:57:53.000Z" + }, + "end": { + "$date": "2021-08-10T06:32:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ddda8513-0a24-44c4-ab46-4e62365e521b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-10T03:59:03.000Z" + }, + "end": { + "$date": "2021-08-10T04:34:49.000Z" + }, + "events": [ + { + "uuid": "28478b48-2a91-433d-a24b-91ac4e95d2a0", + "start": { + "$date": "2021-08-10T03:59:03.000Z" + }, + "end": { + "$date": "2021-08-10T04:34:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd0b6ea3-d960-467c-bd5d-2b791d02023a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-10T04:09:00.000Z" + }, + "end": { + "$date": "2021-08-10T04:49:18.000Z" + }, + "events": [ + { + "uuid": "65fc5f36-ae97-4dec-b2f8-e70231d8bf87", + "start": { + "$date": "2021-08-10T04:09:00.000Z" + }, + "end": { + "$date": "2021-08-10T04:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce2e8354-6281-48a2-b2e8-214d814907b2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-10T04:05:26.000Z" + }, + "end": { + "$date": "2021-08-10T05:36:26.000Z" + }, + "events": [ + { + "uuid": "683b1318-660d-42e7-8c93-bde6957eea6e", + "start": { + "$date": "2021-08-10T04:05:26.000Z" + }, + "end": { + "$date": "2021-08-10T05:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4467945e-ce44-405f-8d23-dbfcfd189368", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T04:09:57.000Z" + }, + "end": { + "$date": "2021-08-10T05:08:19.000Z" + }, + "events": [ + { + "uuid": "f10aedcd-399a-4b3e-8959-8f979f4d3051", + "start": { + "$date": "2021-08-10T04:09:57.000Z" + }, + "end": { + "$date": "2021-08-10T05:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dc8a653a-ba55-4680-99bc-6a22a0463f75", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-10T04:27:23.000Z" + }, + "end": { + "$date": "2021-08-10T06:34:18.000Z" + }, + "events": [ + { + "uuid": "19839832-87e2-4994-bcf1-73e294d737a0", + "start": { + "$date": "2021-08-10T04:27:23.000Z" + }, + "end": { + "$date": "2021-08-10T06:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "1ae47d6d-ddfb-4434-965a-ed32d5aa6612", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-10T04:41:05.000Z" + }, + "end": { + "$date": "2021-08-10T04:49:25.000Z" + }, + "events": [ + { + "uuid": "4d1cc940-5b1f-4631-9162-79af2da97419", + "start": { + "$date": "2021-08-10T04:41:05.000Z" + }, + "end": { + "$date": "2021-08-10T04:49:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9bc6c01-f751-417e-85ce-31a4c8c04a21", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-10T04:52:32.000Z" + }, + "end": { + "$date": "2021-08-10T05:25:37.000Z" + }, + "events": [ + { + "uuid": "bfb52c01-6e07-40bd-bb77-3bf4c834fd97", + "start": { + "$date": "2021-08-10T04:52:32.000Z" + }, + "end": { + "$date": "2021-08-10T05:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "956c780e-b765-4ebd-b3b4-824a393fe3c8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-10T04:52:51.000Z" + }, + "end": { + "$date": "2021-08-10T05:06:56.000Z" + }, + "events": [ + { + "uuid": "e185c773-a862-42a6-b600-e9db01d91c08", + "start": { + "$date": "2021-08-10T04:52:51.000Z" + }, + "end": { + "$date": "2021-08-10T05:06:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "b8a932b4-468b-4e46-a17d-07830b3f44dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-10T05:07:07.000Z" + }, + "end": { + "$date": "2021-08-10T05:39:02.000Z" + }, + "events": [ + { + "uuid": "7a05c325-5d3a-4b80-8b34-1c5b39d16891", + "start": { + "$date": "2021-08-10T05:07:07.000Z" + }, + "end": { + "$date": "2021-08-10T05:39:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "06344b14-c889-46e9-a296-a6cb3bb3a074", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-10T05:17:27.000Z" + }, + "end": { + "$date": "2021-08-10T06:31:00.000Z" + }, + "events": [ + { + "uuid": "3562ff75-78e4-4759-8543-87e6712242b1", + "start": { + "$date": "2021-08-10T05:17:27.000Z" + }, + "end": { + "$date": "2021-08-10T06:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b35ae31-50f2-4aa5-b8ae-31e3c7b384c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-10T05:33:23.000Z" + }, + "end": { + "$date": "2021-08-10T06:10:11.000Z" + }, + "events": [ + { + "uuid": "473d750a-8cfd-4b6f-986a-87dd7389ffdd", + "start": { + "$date": "2021-08-10T05:33:23.000Z" + }, + "end": { + "$date": "2021-08-10T06:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e049da6-1d19-4cad-8266-a09a47ff445f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-10T06:14:44.000Z" + }, + "end": { + "$date": "2021-08-10T06:37:29.000Z" + }, + "events": [ + { + "uuid": "75e1b26c-5e71-4295-8212-c5066ded3425", + "start": { + "$date": "2021-08-10T06:14:44.000Z" + }, + "end": { + "$date": "2021-08-10T06:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "587bf73c-0dbe-4b29-b128-5b8734d5b4f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T14:31:51.000Z" + }, + "end": { + "$date": "2021-08-10T14:33:30.000Z" + }, + "events": [ + { + "uuid": "cdf0be12-9c48-442d-afc9-0b8d9a5d55e0", + "start": { + "$date": "2021-08-10T14:31:51.000Z" + }, + "end": { + "$date": "2021-08-10T14:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "108e749e-b419-4b49-9805-b19f94c3dc69", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T14:33:56.000Z" + }, + "end": { + "$date": "2021-08-10T16:16:17.000Z" + }, + "events": [ + { + "uuid": "adfae5be-92f0-44e6-94dc-d528e6d66b62", + "start": { + "$date": "2021-08-10T14:33:56.000Z" + }, + "end": { + "$date": "2021-08-10T16:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d7eaa6a0-550f-4697-82e7-4eeb4de36850", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T16:21:19.000Z" + }, + "end": { + "$date": "2021-08-10T16:39:10.000Z" + }, + "events": [ + { + "uuid": "99785931-22dd-4a9d-8a75-67f69d76ca2c", + "start": { + "$date": "2021-08-10T16:21:19.000Z" + }, + "end": { + "$date": "2021-08-10T16:39:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "583866f1-aaa3-4691-8aa1-1c061a6b2851", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T17:01:24.000Z" + }, + "end": { + "$date": "2021-08-10T19:46:27.000Z" + }, + "events": [ + { + "uuid": "0363f701-92c9-4125-9500-db7ad3a32472", + "start": { + "$date": "2021-08-10T17:01:24.000Z" + }, + "end": { + "$date": "2021-08-10T17:36:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2dbdaf8-ffd2-4e45-8ccd-b8003c77cb05", + "start": { + "$date": "2021-08-10T17:36:24.000Z" + }, + "end": { + "$date": "2021-08-10T17:46:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c8a3f56-3c08-48e7-9bed-62344872fd6d", + "start": { + "$date": "2021-08-10T17:46:24.000Z" + }, + "end": { + "$date": "2021-08-10T17:56:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6099ac51-9ff7-46a9-b851-f12c3978e9d4", + "start": { + "$date": "2021-08-10T17:56:24.000Z" + }, + "end": { + "$date": "2021-08-10T17:58:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "68c6d456-42bf-43c3-bdb1-68091dcbaabc", + "start": { + "$date": "2021-08-10T17:58:24.000Z" + }, + "end": { + "$date": "2021-08-10T19:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "90110c82-6c92-45d5-a6a9-997f9402a5a8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-10T19:18:52.000Z" + }, + "end": { + "$date": "2021-08-10T20:31:10.000Z" + }, + "events": [ + { + "uuid": "e0188cb5-d86f-4108-bcd0-d3195ee844bf", + "start": { + "$date": "2021-08-10T19:18:52.000Z" + }, + "end": { + "$date": "2021-08-10T20:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "104aaaa1-9147-4374-8d7b-69a50e6802ad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T19:46:48.000Z" + }, + "end": { + "$date": "2021-08-10T21:08:19.000Z" + }, + "events": [ + { + "uuid": "15e5f4e4-0859-404f-b314-4f388332b1ca", + "start": { + "$date": "2021-08-10T19:46:48.000Z" + }, + "end": { + "$date": "2021-08-10T20:48:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec8f7198-4684-49d5-b96e-1cb0571cd972", + "start": { + "$date": "2021-08-10T20:48:48.000Z" + }, + "end": { + "$date": "2021-08-10T21:08:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "20fccc12-15f9-4c29-8817-98406f72dcc2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-10T19:54:05.000Z" + }, + "end": { + "$date": "2021-08-11T00:16:09.000Z" + }, + "events": [ + { + "uuid": "8698c083-d8cb-4b85-b7dd-c25c5cae03dc", + "start": { + "$date": "2021-08-10T19:54:05.000Z" + }, + "end": { + "$date": "2021-08-11T00:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9217c710-be3d-47fe-8881-b10ce744e009", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T21:58:28.000Z" + }, + "end": { + "$date": "2021-08-10T22:19:56.000Z" + }, + "events": [ + { + "uuid": "8446fa3d-9f2c-4ae4-881f-828ea6c8ef61", + "start": { + "$date": "2021-08-10T21:58:28.000Z" + }, + "end": { + "$date": "2021-08-10T22:19:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2878feb2-e5c8-4d2a-b6d2-075b7efa1be3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-10T22:20:30.000Z" + }, + "end": { + "$date": "2021-08-10T22:24:46.000Z" + }, + "events": [ + { + "uuid": "c0ec4d88-4c88-4f78-b9e0-5b762c2b440b", + "start": { + "$date": "2021-08-10T22:20:30.000Z" + }, + "end": { + "$date": "2021-08-10T22:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "faeeed44-7962-441c-b705-3903e1ead4bc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-10T22:20:09.000Z" + }, + "end": { + "$date": "2021-08-10T23:48:58.000Z" + }, + "events": [ + { + "uuid": "6921cd7f-8f6a-4e0f-b11e-aa5bf2db034c", + "start": { + "$date": "2021-08-10T22:20:09.000Z" + }, + "end": { + "$date": "2021-08-10T23:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6918231e-21b2-47d0-a389-a78f9615b9b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-10T22:36:36.000Z" + }, + "end": { + "$date": "2021-08-10T22:59:37.000Z" + }, + "events": [ + { + "uuid": "8480d6f3-8aff-4e5e-a3e7-8ab731b31a9d", + "start": { + "$date": "2021-08-10T22:36:36.000Z" + }, + "end": { + "$date": "2021-08-10T22:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fde29bf7-24a4-47de-a016-75507dd1d28c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-10T23:06:31.000Z" + }, + "end": { + "$date": "2021-08-10T23:44:03.000Z" + }, + "events": [ + { + "uuid": "b20377d1-2dfd-4c13-a199-7f742dfdac01", + "start": { + "$date": "2021-08-10T23:06:31.000Z" + }, + "end": { + "$date": "2021-08-10T23:44:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "2a944548-80f1-4cdf-a053-11d7678bd4ba", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-11T00:34:46.000Z" + }, + "end": { + "$date": "2021-08-11T02:02:36.000Z" + }, + "events": [ + { + "uuid": "831a2fd9-f301-4e80-9ad6-f7a00a6aa303", + "start": { + "$date": "2021-08-11T00:34:46.000Z" + }, + "end": { + "$date": "2021-08-11T02:02:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b5c005df-6f3b-4818-8401-0550e9185538", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-11T01:18:13.000Z" + }, + "end": { + "$date": "2021-08-11T04:01:35.000Z" + }, + "events": [ + { + "uuid": "00ec501c-0ba8-45d5-8281-1b29324c59fb", + "start": { + "$date": "2021-08-11T01:18:13.000Z" + }, + "end": { + "$date": "2021-08-11T04:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "0a857bec-363a-44af-b71c-0cef523980fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-11T01:27:50.000Z" + }, + "end": { + "$date": "2021-08-11T02:39:45.000Z" + }, + "events": [ + { + "uuid": "f9e8e27e-3fd7-4d27-99b2-073dc07df84e", + "start": { + "$date": "2021-08-11T01:27:50.000Z" + }, + "end": { + "$date": "2021-08-11T02:39:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4ae6ebce-4561-4a26-9790-f0ff652703c4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-11T01:37:48.000Z" + }, + "end": { + "$date": "2021-08-11T04:00:13.000Z" + }, + "events": [ + { + "uuid": "cf13a96e-d3f6-4216-ba22-d6289cbb032d", + "start": { + "$date": "2021-08-11T01:37:48.000Z" + }, + "end": { + "$date": "2021-08-11T04:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de43fc78-4fd0-47e9-8682-50cf81fd55a0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T01:55:58.000Z" + }, + "end": { + "$date": "2021-08-11T02:28:49.000Z" + }, + "events": [ + { + "uuid": "2d30d2d3-13a2-46c4-b193-50a078725877", + "start": { + "$date": "2021-08-11T01:55:58.000Z" + }, + "end": { + "$date": "2021-08-11T02:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e62fb831-cbb3-4f6f-abbb-7885a1d4c864", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T02:30:03.000Z" + }, + "end": { + "$date": "2021-08-11T04:02:54.000Z" + }, + "events": [ + { + "uuid": "8e312acc-9494-4b3a-80a9-42ad9226d1e7", + "start": { + "$date": "2021-08-11T02:30:03.000Z" + }, + "end": { + "$date": "2021-08-11T04:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "4c76cea4-4684-42ab-bee2-701be9964942", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-11T02:39:55.000Z" + }, + "end": { + "$date": "2021-08-11T02:47:55.000Z" + }, + "events": [ + { + "uuid": "29687134-45c3-45d5-b183-c338dbb51190", + "start": { + "$date": "2021-08-11T02:39:55.000Z" + }, + "end": { + "$date": "2021-08-11T02:47:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0db7d253-102b-4e1f-9828-b452a4cfe0a7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-11T03:02:12.000Z" + }, + "end": { + "$date": "2021-08-11T03:50:57.000Z" + }, + "events": [ + { + "uuid": "cf563bfe-7099-4b87-ba91-8de3fc3cef87", + "start": { + "$date": "2021-08-11T03:02:12.000Z" + }, + "end": { + "$date": "2021-08-11T03:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f59dc6d1-c00e-4757-8c8b-b776b3333389", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-11T03:13:58.000Z" + }, + "end": { + "$date": "2021-08-11T03:41:27.000Z" + }, + "events": [ + { + "uuid": "42a78fe3-dec4-4052-93a6-5f53c8c2f6fb", + "start": { + "$date": "2021-08-11T03:13:58.000Z" + }, + "end": { + "$date": "2021-08-11T03:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b627bf62-b7ed-47c4-bc0f-f874d8c4be51", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-11T04:27:31.000Z" + }, + "end": { + "$date": "2021-08-11T05:07:56.000Z" + }, + "events": [ + { + "uuid": "fd4bb318-1928-4db6-9eb8-a83747921e0c", + "start": { + "$date": "2021-08-11T04:27:31.000Z" + }, + "end": { + "$date": "2021-08-11T05:07:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d32ef40-c2bb-4d96-b95e-80062afb824a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-11T03:50:56.000Z" + }, + "end": { + "$date": "2021-08-11T04:23:18.000Z" + }, + "events": [ + { + "uuid": "93f6f534-5620-49a4-be60-2f38f3370cb4", + "start": { + "$date": "2021-08-11T03:50:56.000Z" + }, + "end": { + "$date": "2021-08-11T04:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9e30f6cf-841f-446f-8278-be978bed1aa2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-11T03:51:01.000Z" + }, + "end": { + "$date": "2021-08-11T06:23:41.000Z" + }, + "events": [ + { + "uuid": "2200eb7d-66fd-494b-98be-c08b3c9b2449", + "start": { + "$date": "2021-08-11T03:51:01.000Z" + }, + "end": { + "$date": "2021-08-11T05:36:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b027157-f04d-4786-9b17-b65c88bcb386", + "start": { + "$date": "2021-08-11T05:36:01.000Z" + }, + "end": { + "$date": "2021-08-11T05:38:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3cf6e288-4e06-4e1a-a94e-b69ec62c8efa", + "start": { + "$date": "2021-08-11T05:38:01.000Z" + }, + "end": { + "$date": "2021-08-11T06:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2bebcb32-98d9-4b8e-b9a8-ff41c1de48c2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-11T04:01:45.000Z" + }, + "end": { + "$date": "2021-08-11T06:25:44.000Z" + }, + "events": [ + { + "uuid": "8135fd5e-2e92-4366-8a26-c9e6eb93aef4", + "start": { + "$date": "2021-08-11T04:01:45.000Z" + }, + "end": { + "$date": "2021-08-11T06:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f31d170c-c8b3-4bf4-b088-bec5d1da8b43", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-11T04:02:09.000Z" + }, + "end": { + "$date": "2021-08-11T06:26:26.000Z" + }, + "events": [ + { + "uuid": "a4d4e9f4-6d85-4218-b4ef-233803b14e93", + "start": { + "$date": "2021-08-11T04:02:09.000Z" + }, + "end": { + "$date": "2021-08-11T06:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "422542f9-6e37-408f-ac2d-1d9c58bf4df9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-11T04:08:51.000Z" + }, + "end": { + "$date": "2021-08-11T05:50:47.000Z" + }, + "events": [ + { + "uuid": "5f5584c8-5531-4224-9a34-01b5f0882fa6", + "start": { + "$date": "2021-08-11T04:08:51.000Z" + }, + "end": { + "$date": "2021-08-11T05:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "681467b8-2b0a-49ac-8210-80ecf08e0099", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-11T04:13:39.000Z" + }, + "end": { + "$date": "2021-08-11T06:32:54.000Z" + }, + "events": [ + { + "uuid": "1fb106ec-de29-46b4-bf3b-9900b52eb710", + "start": { + "$date": "2021-08-11T04:13:39.000Z" + }, + "end": { + "$date": "2021-08-11T06:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a90b9ac-1142-4f29-8079-237fa7c95c02", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-11T04:28:42.000Z" + }, + "end": { + "$date": "2021-08-11T05:07:54.000Z" + }, + "events": [ + { + "uuid": "a17a8993-b3f6-4e0b-8a27-3f44e67e6f7e", + "start": { + "$date": "2021-08-11T04:28:42.000Z" + }, + "end": { + "$date": "2021-08-11T05:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "29f15094-379a-4191-bae4-3108c0974746", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-11T05:33:03.000Z" + }, + "end": { + "$date": "2021-08-11T06:23:34.000Z" + }, + "events": [ + { + "uuid": "c3d69a48-c823-4d43-bdce-76135dcb3948", + "start": { + "$date": "2021-08-11T05:33:03.000Z" + }, + "end": { + "$date": "2021-08-11T06:23:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71113b64-1162-436a-8489-6a5a1661eb38", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-11T05:48:38.000Z" + }, + "end": { + "$date": "2021-08-11T06:09:15.000Z" + }, + "events": [ + { + "uuid": "535c5f8f-30a9-4577-8884-6f73b02e67a3", + "start": { + "$date": "2021-08-11T05:48:38.000Z" + }, + "end": { + "$date": "2021-08-11T06:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76d159cc-5230-49ea-9a22-cff30f30ecc7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-11T06:27:36.000Z" + }, + "end": { + "$date": "2021-08-11T06:30:40.000Z" + }, + "events": [ + { + "uuid": "51206072-4085-48dc-81f1-b94c196b2ab8", + "start": { + "$date": "2021-08-11T06:27:36.000Z" + }, + "end": { + "$date": "2021-08-11T06:30:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "600bbd57-6227-4fa8-8380-374d2bcf6f19", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-11T06:28:06.000Z" + }, + "end": { + "$date": "2021-08-11T06:37:22.000Z" + }, + "events": [ + { + "uuid": "123db7f0-1615-45c7-9b8f-0e00fcca837d", + "start": { + "$date": "2021-08-11T06:28:06.000Z" + }, + "end": { + "$date": "2021-08-11T06:37:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "565aca2a-16d6-4c5b-a4d1-80d704baaa8b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-11T06:28:32.000Z" + }, + "end": { + "$date": "2021-08-11T06:49:48.000Z" + }, + "events": [ + { + "uuid": "8eeece45-9d0e-49fa-9eea-57a599553ba3", + "start": { + "$date": "2021-08-11T06:28:32.000Z" + }, + "end": { + "$date": "2021-08-11T06:49:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f65f3d58-1537-4f95-9965-3d6fbe006264", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T14:45:02.000Z" + }, + "end": { + "$date": "2021-08-11T14:47:42.000Z" + }, + "events": [ + { + "uuid": "3f4a3ab8-a923-40fd-8a5b-7b6875071870", + "start": { + "$date": "2021-08-11T14:45:02.000Z" + }, + "end": { + "$date": "2021-08-11T14:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "94b519b6-a372-4a33-8644-444a5a6a2778", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T14:48:47.000Z" + }, + "end": { + "$date": "2021-08-11T16:14:13.000Z" + }, + "events": [ + { + "uuid": "8c0f2859-64eb-46e0-9cdb-3bd10e7be54b", + "start": { + "$date": "2021-08-11T14:48:47.000Z" + }, + "end": { + "$date": "2021-08-11T16:14:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "246c01b4-672d-4465-8cfc-795781fb1f24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T16:22:04.000Z" + }, + "end": { + "$date": "2021-08-11T16:54:09.000Z" + }, + "events": [ + { + "uuid": "5241dca2-5c5c-4591-8143-ced57108850d", + "start": { + "$date": "2021-08-11T16:22:04.000Z" + }, + "end": { + "$date": "2021-08-11T16:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "0e48df1e-51bf-45ec-8ffc-499028f1c5f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T16:15:29.000Z" + }, + "end": { + "$date": "2021-08-11T16:19:59.000Z" + }, + "events": [ + { + "uuid": "7d44f4a0-8968-4d5d-809c-892375798f6d", + "start": { + "$date": "2021-08-11T16:15:29.000Z" + }, + "end": { + "$date": "2021-08-11T16:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", + "uuid": "a70605bc-1989-4fa8-baaa-e60e792e0703", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-11T16:54:29.000Z" + }, + "end": { + "$date": "2021-08-11T17:36:10.000Z" + }, + "events": [ + { + "uuid": "9333b16a-03db-4e89-9bd4-40847dd2a6d9", + "start": { + "$date": "2021-08-11T16:54:29.000Z" + }, + "end": { + "$date": "2021-08-11T17:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a02e7217-e1fb-4d53-a93b-2c93d84045af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T17:06:05.000Z" + }, + "end": { + "$date": "2021-08-11T17:32:00.000Z" + }, + "events": [ + { + "uuid": "0c402614-20a5-49a6-9a3d-d7b7e5cf4349", + "start": { + "$date": "2021-08-11T17:06:05.000Z" + }, + "end": { + "$date": "2021-08-11T17:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "31747c7b-47fa-4643-846a-e195da118c71", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T17:25:37.000Z" + }, + "end": { + "$date": "2021-08-11T18:10:28.000Z" + }, + "events": [ + { + "uuid": "edd2faf3-bc01-42be-9bc0-27fc3066869f", + "start": { + "$date": "2021-08-11T17:25:37.000Z" + }, + "end": { + "$date": "2021-08-11T18:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dc039cb-1349-49a2-b022-ecb1172c368a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T18:31:33.000Z" + }, + "end": { + "$date": "2021-08-11T19:06:33.000Z" + }, + "events": [ + { + "uuid": "d6e8e63f-0f1b-4410-8771-f29b7fe6dcca", + "start": { + "$date": "2021-08-11T18:31:33.000Z" + }, + "end": { + "$date": "2021-08-11T19:06:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c7cf1339-a945-4870-bd79-ff484d514016", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-11T17:38:20.000Z" + }, + "end": { + "$date": "2021-08-11T18:52:20.000Z" + }, + "events": [ + { + "uuid": "dc6b8c43-fa72-454d-9d95-b872e3f09ff5", + "start": { + "$date": "2021-08-11T17:38:20.000Z" + }, + "end": { + "$date": "2021-08-11T18:52:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d0178762-c19e-46aa-b2a0-2ad4854fc2cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T18:33:37.000Z" + }, + "end": { + "$date": "2021-08-11T18:38:42.000Z" + }, + "events": [ + { + "uuid": "8339af93-60be-49db-80ca-c4bf0edb8389", + "start": { + "$date": "2021-08-11T18:33:37.000Z" + }, + "end": { + "$date": "2021-08-11T18:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "e0a6beb4-2c45-4c10-aa2d-8b9db355b8d6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T18:43:03.000Z" + }, + "end": { + "$date": "2021-08-11T21:28:48.000Z" + }, + "events": [ + { + "uuid": "5c340880-3434-47c4-a043-72291430c094", + "start": { + "$date": "2021-08-11T18:43:03.000Z" + }, + "end": { + "$date": "2021-08-11T21:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", + "uuid": "9171390f-90bf-4c75-92ab-f99df2beff50", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-11T19:05:32.000Z" + }, + "end": { + "$date": "2021-08-11T20:14:06.000Z" + }, + "events": [ + { + "uuid": "0a6c48d0-2c72-430b-8d5b-5008e9a0d254", + "start": { + "$date": "2021-08-11T19:05:32.000Z" + }, + "end": { + "$date": "2021-08-11T20:14:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8c6a20b5-bf3a-4744-a918-e9f8cb28558d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-11T20:50:54.000Z" + }, + "end": { + "$date": "2021-08-11T22:00:25.000Z" + }, + "events": [ + { + "uuid": "f8157c24-543f-45e0-b370-67406a3e6cfa", + "start": { + "$date": "2021-08-11T20:50:54.000Z" + }, + "end": { + "$date": "2021-08-11T22:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8b2cd67f-ad1c-4079-b1ba-ad2ceb6e1559", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T21:34:09.000Z" + }, + "end": { + "$date": "2021-08-11T22:26:36.000Z" + }, + "events": [ + { + "uuid": "4322277b-65a7-44a6-9442-928e40bc6c01", + "start": { + "$date": "2021-08-11T21:34:09.000Z" + }, + "end": { + "$date": "2021-08-11T22:26:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "363ff21f-1aef-4167-ba74-4ca57ca66df6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-11T22:12:00.000Z" + }, + "end": { + "$date": "2021-08-12T00:27:32.000Z" + }, + "events": [ + { + "uuid": "84ef2baa-ddf0-416c-834e-fe58b048a688", + "start": { + "$date": "2021-08-11T22:12:00.000Z" + }, + "end": { + "$date": "2021-08-12T00:27:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ff015a48-7155-4a7b-a9f6-896de7579c95", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-11T22:15:24.000Z" + }, + "end": { + "$date": "2021-08-11T23:50:21.000Z" + }, + "events": [ + { + "uuid": "b6a166a4-d079-45e0-80b6-0fe5e391fd13", + "start": { + "$date": "2021-08-11T22:15:24.000Z" + }, + "end": { + "$date": "2021-08-11T23:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "fb8a84cf-8fcd-41bd-8167-31d27904403f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T22:19:10.000Z" + }, + "end": { + "$date": "2021-08-11T22:26:55.000Z" + }, + "events": [ + { + "uuid": "6f449942-cfdd-46a7-94a7-0578370b5ee7", + "start": { + "$date": "2021-08-11T22:19:10.000Z" + }, + "end": { + "$date": "2021-08-11T22:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a43aec56-79f7-43f2-bbde-9e2498517441", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-11T22:34:08.000Z" + }, + "end": { + "$date": "2021-08-11T23:40:34.000Z" + }, + "events": [ + { + "uuid": "6ab2452d-6e72-4fd7-8d50-c701e9972df4", + "start": { + "$date": "2021-08-11T22:34:08.000Z" + }, + "end": { + "$date": "2021-08-11T23:40:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "daae9c31-7474-4d3f-b8bc-8cd5ad586d29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-11T23:24:05.000Z" + }, + "end": { + "$date": "2021-08-11T23:49:25.000Z" + }, + "events": [ + { + "uuid": "6fdc406b-ec56-4cfe-ba5e-3b02f44bd645", + "start": { + "$date": "2021-08-11T23:24:05.000Z" + }, + "end": { + "$date": "2021-08-11T23:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d9423102-9cc9-4d38-aabc-e31c16ad19d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-12T00:21:59.000Z" + }, + "end": { + "$date": "2021-08-12T01:10:17.000Z" + }, + "events": [ + { + "uuid": "b239d9ae-7e50-410d-a5e2-fc15c253c2a4", + "start": { + "$date": "2021-08-12T00:21:59.000Z" + }, + "end": { + "$date": "2021-08-12T01:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "c989b891-e00b-4156-987d-325ef25350c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-12T01:33:18.000Z" + }, + "end": { + "$date": "2021-08-12T01:47:34.000Z" + }, + "events": [ + { + "uuid": "0b48edf0-85b6-40c3-9a6a-b81c5d8ed022", + "start": { + "$date": "2021-08-12T01:33:18.000Z" + }, + "end": { + "$date": "2021-08-12T01:47:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "d3410c94-c99f-485a-8e17-1cff6f92e0d8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-12T01:35:02.000Z" + }, + "end": { + "$date": "2021-08-12T04:41:49.000Z" + }, + "events": [ + { + "uuid": "1b88b9ca-2350-456a-8f5b-77d5a963ce1c", + "start": { + "$date": "2021-08-12T01:35:02.000Z" + }, + "end": { + "$date": "2021-08-12T04:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "e08b3f98-1194-45ad-ac2d-d8215e5a63a0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-12T01:47:45.000Z" + }, + "end": { + "$date": "2021-08-12T02:47:50.000Z" + }, + "events": [ + { + "uuid": "baccf9bd-bc38-424e-a0cb-02879b9d4724", + "start": { + "$date": "2021-08-12T01:47:45.000Z" + }, + "end": { + "$date": "2021-08-12T02:47:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e211f9b7-3db1-44f7-9edb-1259e02bc8eb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-12T02:01:07.000Z" + }, + "end": { + "$date": "2021-08-12T04:15:47.000Z" + }, + "events": [ + { + "uuid": "17684d95-fd98-47c4-ba3b-350ca9e2463a", + "start": { + "$date": "2021-08-12T02:01:07.000Z" + }, + "end": { + "$date": "2021-08-12T04:15:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "38ef79b0-2acc-41d6-9952-461f468243cb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-12T02:01:39.000Z" + }, + "end": { + "$date": "2021-08-12T05:32:14.000Z" + }, + "events": [ + { + "uuid": "24f1ca41-bf60-42b2-9bac-a9d1b709d82d", + "start": { + "$date": "2021-08-12T02:01:39.000Z" + }, + "end": { + "$date": "2021-08-12T05:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd819dbc-617d-4f0a-9b19-1b217a04ea3d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-12T02:38:00.000Z" + }, + "end": { + "$date": "2021-08-12T03:01:20.000Z" + }, + "events": [ + { + "uuid": "e5a35b87-2764-4dc3-88ca-8256217fcd86", + "start": { + "$date": "2021-08-12T02:38:00.000Z" + }, + "end": { + "$date": "2021-08-12T03:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1ae95f67-125c-4656-8775-8c6d3b48f6be", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-12T02:39:41.000Z" + }, + "end": { + "$date": "2021-08-12T02:41:00.000Z" + }, + "events": [ + { + "uuid": "ff0a25fb-9b4e-4318-9523-ab9c0684c6fb", + "start": { + "$date": "2021-08-12T02:39:41.000Z" + }, + "end": { + "$date": "2021-08-12T02:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "d893a7d2-6236-4398-9422-9977e48c2f84", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-12T02:41:42.000Z" + }, + "end": { + "$date": "2021-08-12T03:32:28.000Z" + }, + "events": [ + { + "uuid": "93f6deb9-ed23-45e6-8136-75f2cb85601c", + "start": { + "$date": "2021-08-12T02:41:42.000Z" + }, + "end": { + "$date": "2021-08-12T03:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "2ef1dbff-38e4-4948-8f2e-78d82dfd2583", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T03:34:52.000Z" + }, + "end": { + "$date": "2021-08-12T03:52:48.000Z" + }, + "events": [ + { + "uuid": "ce061c56-9766-428a-8191-27b00eabcae2", + "start": { + "$date": "2021-08-12T03:34:52.000Z" + }, + "end": { + "$date": "2021-08-12T03:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fc6c7ff-a7a8-43f3-9f88-afd116f09a70", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-12T03:43:23.000Z" + }, + "end": { + "$date": "2021-08-12T04:18:14.000Z" + }, + "events": [ + { + "uuid": "4142a2c2-8456-419a-b484-d0bf3b08e7a3", + "start": { + "$date": "2021-08-12T03:43:23.000Z" + }, + "end": { + "$date": "2021-08-12T04:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d8d60da5-c1a6-4af0-928b-eacd9a105c57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T03:52:53.000Z" + }, + "end": { + "$date": "2021-08-12T04:59:25.000Z" + }, + "events": [ + { + "uuid": "44a79971-03e5-4708-9e63-5b951ca5f136", + "start": { + "$date": "2021-08-12T03:52:53.000Z" + }, + "end": { + "$date": "2021-08-12T04:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e27276c7-54de-4f84-8ce6-31ea99ec067c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-12T04:30:10.000Z" + }, + "end": { + "$date": "2021-08-12T04:56:41.000Z" + }, + "events": [ + { + "uuid": "9d8454de-3441-4fa1-b378-d6f0e634598a", + "start": { + "$date": "2021-08-12T04:30:10.000Z" + }, + "end": { + "$date": "2021-08-12T04:56:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "f9a7b41f-9d9c-45d7-b591-7fad319ab8df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T04:59:40.000Z" + }, + "end": { + "$date": "2021-08-12T06:21:28.000Z" + }, + "events": [ + { + "uuid": "b9235a82-865e-40d5-bb22-097aab73f4a0", + "start": { + "$date": "2021-08-12T04:59:40.000Z" + }, + "end": { + "$date": "2021-08-12T06:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60763a3d-df11-418f-a545-2520996ee937", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-12T05:05:18.000Z" + }, + "end": { + "$date": "2021-08-12T05:12:41.000Z" + }, + "events": [ + { + "uuid": "07df621a-608c-43e4-9505-6b847e3e8d80", + "start": { + "$date": "2021-08-12T05:05:18.000Z" + }, + "end": { + "$date": "2021-08-12T05:12:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "051cb7d1-e179-40de-a951-d7c34ff0fdd4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-12T05:19:17.000Z" + }, + "end": { + "$date": "2021-08-12T08:01:15.000Z" + }, + "events": [ + { + "uuid": "29ce843e-6c24-4f34-9252-07f57deeb840", + "start": { + "$date": "2021-08-12T05:19:17.000Z" + }, + "end": { + "$date": "2021-08-12T08:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c283d88-aa35-45ed-8e9e-06dc58aec773", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-12T05:25:54.000Z" + }, + "end": { + "$date": "2021-08-12T05:49:59.000Z" + }, + "events": [ + { + "uuid": "8d1bf65f-5dd5-40aa-b75f-db731a641fec", + "start": { + "$date": "2021-08-12T05:25:54.000Z" + }, + "end": { + "$date": "2021-08-12T05:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0fbc803d-7f54-49c2-9883-dd3b35abe86c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-12T05:48:23.000Z" + }, + "end": { + "$date": "2021-08-12T07:29:08.000Z" + }, + "events": [ + { + "uuid": "4f007f1c-a377-45bf-84aa-ef874a632499", + "start": { + "$date": "2021-08-12T05:48:23.000Z" + }, + "end": { + "$date": "2021-08-12T07:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "446d5eed-69a9-4a2c-8b39-0216b6779415", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-12T06:06:09.000Z" + }, + "end": { + "$date": "2021-08-12T07:24:55.000Z" + }, + "events": [ + { + "uuid": "b3257f37-1850-402f-8d36-4702efceedb3", + "start": { + "$date": "2021-08-12T06:06:09.000Z" + }, + "end": { + "$date": "2021-08-12T07:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d6b5627c-9b8c-496a-8f03-85af629056ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-12T06:52:06.000Z" + }, + "end": { + "$date": "2021-08-12T07:49:57.000Z" + }, + "events": [ + { + "uuid": "b48a42f2-e9b7-497f-a0a8-00b4553867b8", + "start": { + "$date": "2021-08-12T06:52:06.000Z" + }, + "end": { + "$date": "2021-08-12T07:49:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cb09e615-3d9c-4979-bff3-61fc8775c3c7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-12T09:44:58.000Z" + }, + "end": { + "$date": "2021-08-12T10:45:27.000Z" + }, + "events": [ + { + "uuid": "e71fab0b-a13f-4c1a-bfdc-bd6f52a7ed65", + "start": { + "$date": "2021-08-12T09:44:58.000Z" + }, + "end": { + "$date": "2021-08-12T10:45:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43a86ab2-334e-4dcb-9471-49f9dd4338b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-12T15:04:16.000Z" + }, + "end": { + "$date": "2021-08-12T15:05:16.000Z" + }, + "events": [ + { + "uuid": "565783f2-4b6e-4dcc-9b77-9f66d7541406", + "start": { + "$date": "2021-08-12T15:04:16.000Z" + }, + "end": { + "$date": "2021-08-12T15:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92a71dca-4919-41c4-9ed9-1a4cb7a4dffe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-12T15:10:45.000Z" + }, + "end": { + "$date": "2021-08-12T15:42:15.000Z" + }, + "events": [ + { + "uuid": "f7b09d2f-3eff-4691-a307-6103f8349167", + "start": { + "$date": "2021-08-12T15:10:45.000Z" + }, + "end": { + "$date": "2021-08-12T15:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2e929e00-bae6-4a1a-ab81-1c51c683a100", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-12T15:05:30.000Z" + }, + "end": { + "$date": "2021-08-12T15:52:26.000Z" + }, + "events": [ + { + "uuid": "7934faea-2853-41c5-9518-219ff81339d8", + "start": { + "$date": "2021-08-12T15:05:30.000Z" + }, + "end": { + "$date": "2021-08-12T15:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2580feff-d5e3-4770-80dd-a27c7c43a24c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-12T17:52:50.000Z" + }, + "end": { + "$date": "2021-08-12T18:22:37.000Z" + }, + "events": [ + { + "uuid": "4c6acfa1-870a-496b-b8c6-a68b3989d313", + "start": { + "$date": "2021-08-12T17:52:50.000Z" + }, + "end": { + "$date": "2021-08-12T18:22:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3dcdeb8-81d5-4e9b-a542-986f52e45310", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-12T17:53:03.000Z" + }, + "end": { + "$date": "2021-08-12T18:22:34.000Z" + }, + "events": [ + { + "uuid": "e4cdfd2f-02aa-426b-84bf-ce989a96c353", + "start": { + "$date": "2021-08-12T17:53:03.000Z" + }, + "end": { + "$date": "2021-08-12T18:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14b170d7-8bea-497c-8bf2-9f4dd8e2c8a9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-12T18:28:16.000Z" + }, + "end": { + "$date": "2021-08-12T18:52:33.000Z" + }, + "events": [ + { + "uuid": "e822caf5-5a25-45eb-b641-db1e2b762ae7", + "start": { + "$date": "2021-08-12T18:28:16.000Z" + }, + "end": { + "$date": "2021-08-12T18:52:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9449ba6b-323d-41e0-8bfc-8a88abb1ede0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-12T18:28:19.000Z" + }, + "end": { + "$date": "2021-08-12T18:52:34.000Z" + }, + "events": [ + { + "uuid": "9469904c-a7ce-4ab0-8b39-b0dcf853e785", + "start": { + "$date": "2021-08-12T18:28:19.000Z" + }, + "end": { + "$date": "2021-08-12T18:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a98103cf-b622-4f8f-95c7-1c3c25683eff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T20:11:03.000Z" + }, + "end": { + "$date": "2021-08-12T20:12:08.000Z" + }, + "events": [ + { + "uuid": "d426f868-4b60-4bf7-a7e5-8e176164afc1", + "start": { + "$date": "2021-08-12T20:11:03.000Z" + }, + "end": { + "$date": "2021-08-12T20:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", + "uuid": "9c7a2f82-229a-4e1c-b001-8308a47099b1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T20:15:24.000Z" + }, + "end": { + "$date": "2021-08-12T20:52:35.000Z" + }, + "events": [ + { + "uuid": "7425b1ad-9441-49fb-a012-15c99c562e22", + "start": { + "$date": "2021-08-12T20:15:24.000Z" + }, + "end": { + "$date": "2021-08-12T20:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5b6c937b-862b-475a-827a-088d0d7353e5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-12T20:51:49.000Z" + }, + "end": { + "$date": "2021-08-13T01:28:16.000Z" + }, + "events": [ + { + "uuid": "56ff1eca-17a3-420b-bba2-43a763f3c3ad", + "start": { + "$date": "2021-08-12T20:51:49.000Z" + }, + "end": { + "$date": "2021-08-12T22:01:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "834b7856-0709-46e8-83a5-3646b7e25ae2", + "start": { + "$date": "2021-08-12T22:01:49.000Z" + }, + "end": { + "$date": "2021-08-12T22:06:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "50d82eb3-4b47-4374-881a-a58f3bb97fbd", + "start": { + "$date": "2021-08-12T22:06:49.000Z" + }, + "end": { + "$date": "2021-08-12T23:31:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de176894-82d0-4c5d-a6b4-eb0e20b7af98", + "start": { + "$date": "2021-08-12T23:31:49.000Z" + }, + "end": { + "$date": "2021-08-12T23:32:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b4d1e332-0f37-4206-8dec-1c903649d9e6", + "start": { + "$date": "2021-08-12T23:32:49.000Z" + }, + "end": { + "$date": "2021-08-13T00:03:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77906527-501e-4869-8f4d-79456d2c4c80", + "start": { + "$date": "2021-08-13T00:03:49.000Z" + }, + "end": { + "$date": "2021-08-13T00:10:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e5e884c-9ff7-47f3-b20a-fe7d2039bc33", + "start": { + "$date": "2021-08-13T00:10:49.000Z" + }, + "end": { + "$date": "2021-08-13T01:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9210ae1d-4969-4189-9dfd-7b8d4e75840a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T20:53:56.000Z" + }, + "end": { + "$date": "2021-08-12T20:55:53.000Z" + }, + "events": [ + { + "uuid": "732d0a08-b1c5-4f66-a943-15a235c1dd0e", + "start": { + "$date": "2021-08-12T20:53:56.000Z" + }, + "end": { + "$date": "2021-08-12T20:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "7053c22b-9dd6-44e5-8497-c1e7c7833d84", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T20:56:19.000Z" + }, + "end": { + "$date": "2021-08-12T23:16:29.000Z" + }, + "events": [ + { + "uuid": "0bd2fd7c-d418-4eb8-9510-90ff278b7e92", + "start": { + "$date": "2021-08-12T20:56:19.000Z" + }, + "end": { + "$date": "2021-08-12T23:16:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8c626653-6425-42d4-8df6-aeaca1d65b8d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-12T21:45:44.000Z" + }, + "end": { + "$date": "2021-08-12T21:50:37.000Z" + }, + "events": [ + { + "uuid": "ae39f3b8-fc94-4fdd-9764-e0206c04018c", + "start": { + "$date": "2021-08-12T21:45:44.000Z" + }, + "end": { + "$date": "2021-08-12T21:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d8cc8676-9456-4f51-be44-99ba62f0e3d4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-12T21:52:04.000Z" + }, + "end": { + "$date": "2021-08-13T07:29:13.000Z" + }, + "events": [ + { + "uuid": "b9bbd311-1a7d-4c95-ae41-e4a32e7363a9", + "start": { + "$date": "2021-08-12T21:52:04.000Z" + }, + "end": { + "$date": "2021-08-12T22:15:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3b008d2-9cc4-4d75-9b69-cf85bbc655f3", + "start": { + "$date": "2021-08-12T22:15:04.000Z" + }, + "end": { + "$date": "2021-08-12T22:20:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "697dbc8b-1bd1-4861-8e6c-e93dceb3926e", + "start": { + "$date": "2021-08-12T22:20:04.000Z" + }, + "end": { + "$date": "2021-08-12T22:30:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b56e4b1-a123-4332-8a97-11c9496aeb7b", + "start": { + "$date": "2021-08-12T22:30:04.000Z" + }, + "end": { + "$date": "2021-08-12T23:07:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9cff5ee8-f938-423e-a76c-68331b60834c", + "start": { + "$date": "2021-08-12T23:07:04.000Z" + }, + "end": { + "$date": "2021-08-12T23:18:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e00badc-0c25-4b51-82fe-a76cfc4d35e5", + "start": { + "$date": "2021-08-12T23:18:04.000Z" + }, + "end": { + "$date": "2021-08-13T01:00:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "532ae07d-2e72-49f9-9c91-e65850c6b681", + "start": { + "$date": "2021-08-13T01:00:04.000Z" + }, + "end": { + "$date": "2021-08-13T01:16:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "464125c9-d079-45e5-9bb2-772ef0d19a45", + "start": { + "$date": "2021-08-13T01:16:04.000Z" + }, + "end": { + "$date": "2021-08-13T01:17:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ad67fc26-fe7c-48e9-a3b2-0fa0abbfaab4", + "start": { + "$date": "2021-08-13T01:17:04.000Z" + }, + "end": { + "$date": "2021-08-13T01:19:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b98d2f3-74ee-44aa-b194-aba5732b1724", + "start": { + "$date": "2021-08-13T01:19:04.000Z" + }, + "end": { + "$date": "2021-08-13T01:32:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9dfec6e1-ce65-41c0-b3f5-31ba41a52702", + "start": { + "$date": "2021-08-13T01:32:04.000Z" + }, + "end": { + "$date": "2021-08-13T07:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "651eeaf9-dcc7-4c64-8153-d4f7a1f539ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-12T22:17:51.000Z" + }, + "end": { + "$date": "2021-08-12T22:47:43.000Z" + }, + "events": [ + { + "uuid": "63976c50-e4f4-4e66-82bc-dd6e4993b9be", + "start": { + "$date": "2021-08-12T22:17:51.000Z" + }, + "end": { + "$date": "2021-08-12T22:47:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "b4ac3b92-15e5-44b5-9654-d8332e8b3b70", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-12T23:18:14.000Z" + }, + "end": { + "$date": "2021-08-13T00:49:18.000Z" + }, + "events": [ + { + "uuid": "4e587e31-aeb3-4239-9bb9-c04bbd12e035", + "start": { + "$date": "2021-08-12T23:18:14.000Z" + }, + "end": { + "$date": "2021-08-13T00:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7348aed9-82ad-4ad4-83e3-c60b75212452", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T00:10:21.000Z" + }, + "end": { + "$date": "2021-08-13T00:39:22.000Z" + }, + "events": [ + { + "uuid": "a394dfc2-e83e-4cbd-9fa2-f8ad411a8d45", + "start": { + "$date": "2021-08-13T00:10:21.000Z" + }, + "end": { + "$date": "2021-08-13T00:39:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "129c8607-3c6e-480b-852f-f42e5835b6dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T00:38:44.000Z" + }, + "end": { + "$date": "2021-08-13T00:39:19.000Z" + }, + "events": [ + { + "uuid": "cc6d3e27-0ea0-4afb-b016-ad996643429d", + "start": { + "$date": "2021-08-13T00:38:44.000Z" + }, + "end": { + "$date": "2021-08-13T00:39:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07dd6f32-17af-4524-9529-6fca0dcbeb1b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T00:44:53.000Z" + }, + "end": { + "$date": "2021-08-13T01:35:15.000Z" + }, + "events": [ + { + "uuid": "2339889e-6858-4da7-b428-d578fca5ca27", + "start": { + "$date": "2021-08-13T00:44:53.000Z" + }, + "end": { + "$date": "2021-08-13T01:35:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9aaff2aa-5353-47ac-91b9-159aeadc04a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T00:45:45.000Z" + }, + "end": { + "$date": "2021-08-13T01:35:10.000Z" + }, + "events": [ + { + "uuid": "1bd19c2e-95a6-43ad-aae6-eb089f5c1bcb", + "start": { + "$date": "2021-08-13T00:45:45.000Z" + }, + "end": { + "$date": "2021-08-13T01:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "10ab715e-769e-4728-8872-949884252871", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-13T01:28:41.000Z" + }, + "end": { + "$date": "2021-08-13T02:46:35.000Z" + }, + "events": [ + { + "uuid": "bfc43398-bbf7-4b90-afd8-4b79aeaf2271", + "start": { + "$date": "2021-08-13T01:28:41.000Z" + }, + "end": { + "$date": "2021-08-13T02:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66ca7b01-30eb-4ba4-bf7c-120325014508", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T02:01:48.000Z" + }, + "end": { + "$date": "2021-08-13T02:26:53.000Z" + }, + "events": [ + { + "uuid": "dfcbd015-229d-4bd6-ab84-38dc87f80092", + "start": { + "$date": "2021-08-13T02:01:48.000Z" + }, + "end": { + "$date": "2021-08-13T02:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3a21659-4c72-437e-b851-0b9dca9c3c8a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T02:01:11.000Z" + }, + "end": { + "$date": "2021-08-13T02:26:52.000Z" + }, + "events": [ + { + "uuid": "d80ccc74-7896-437b-8bbd-3b1702034385", + "start": { + "$date": "2021-08-13T02:01:11.000Z" + }, + "end": { + "$date": "2021-08-13T02:26:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "992b549f-92dc-40d2-8403-43f2f0721a28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-13T01:59:18.000Z" + }, + "end": { + "$date": "2021-08-13T02:27:52.000Z" + }, + "events": [ + { + "uuid": "135cb321-bffa-41f7-a143-29cdd2311de4", + "start": { + "$date": "2021-08-13T01:59:18.000Z" + }, + "end": { + "$date": "2021-08-13T02:26:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "efdfba6b-9f5a-41aa-a13c-f69e417898ca", + "start": { + "$date": "2021-08-13T02:26:18.000Z" + }, + "end": { + "$date": "2021-08-13T02:27:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3586c7a2-c333-4341-a98e-4c488352e0a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T02:28:44.000Z" + }, + "end": { + "$date": "2021-08-13T02:43:04.000Z" + }, + "events": [ + { + "uuid": "4a4dd06a-44a4-4149-ba19-814937e83fbc", + "start": { + "$date": "2021-08-13T02:28:44.000Z" + }, + "end": { + "$date": "2021-08-13T02:43:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c48e84c-8ea8-41c2-bd40-0bc37fe16641", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T02:38:42.000Z" + }, + "end": { + "$date": "2021-08-13T02:40:05.000Z" + }, + "events": [ + { + "uuid": "b8597e35-9257-42b5-a841-7fc4ea3b16ff", + "start": { + "$date": "2021-08-13T02:38:42.000Z" + }, + "end": { + "$date": "2021-08-13T02:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1835c01a-f730-4e01-9090-9751fb0099b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T05:21:19.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:42.000Z" + }, + "events": [ + { + "uuid": "f8a9355e-7356-4a6d-b0be-218bb71d4633", + "start": { + "$date": "2021-08-13T05:21:19.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8b58fef-70ad-4a56-9b5b-262758fcd639", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T05:21:08.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:30.000Z" + }, + "events": [ + { + "uuid": "7f6ee038-23fb-4a86-8e6e-4e5572d26196", + "start": { + "$date": "2021-08-13T05:21:08.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "96b6efd3-8e92-41f4-a49f-d11dd93954af", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-13T02:54:07.000Z" + }, + "end": { + "$date": "2021-08-13T03:12:43.000Z" + }, + "events": [ + { + "uuid": "afa72d88-487a-4969-a0c9-d63d87adc125", + "start": { + "$date": "2021-08-13T02:54:07.000Z" + }, + "end": { + "$date": "2021-08-13T03:12:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "274bd15f-2aa3-46ff-b267-4775e9aab98d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-13T02:56:12.000Z" + }, + "end": { + "$date": "2021-08-13T03:33:24.000Z" + }, + "events": [ + { + "uuid": "8ad1c01a-5127-4a85-acc9-d57f8583ebba", + "start": { + "$date": "2021-08-13T02:56:12.000Z" + }, + "end": { + "$date": "2021-08-13T03:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07a235b4-4944-419d-9c45-b3413d08aeb0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-13T03:42:46.000Z" + }, + "end": { + "$date": "2021-08-13T03:57:42.000Z" + }, + "events": [ + { + "uuid": "e43602c3-f660-4532-8ed9-1a79f65c3864", + "start": { + "$date": "2021-08-13T03:42:46.000Z" + }, + "end": { + "$date": "2021-08-13T03:57:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5df9e36d-a03e-4f6a-bf04-af93c0fa206e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-13T03:32:23.000Z" + }, + "end": { + "$date": "2021-08-13T03:57:40.000Z" + }, + "events": [ + { + "uuid": "ff01d098-2ebb-4c04-985a-ccc7f42625ea", + "start": { + "$date": "2021-08-13T03:32:23.000Z" + }, + "end": { + "$date": "2021-08-13T03:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b3471fa3-80f4-4e82-9c76-513bf7dbbd27", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-13T03:33:40.000Z" + }, + "end": { + "$date": "2021-08-13T05:08:49.000Z" + }, + "events": [ + { + "uuid": "7bdc2992-ee22-49aa-aafe-2b274fdeed80", + "start": { + "$date": "2021-08-13T03:33:40.000Z" + }, + "end": { + "$date": "2021-08-13T05:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5156229-b484-4012-aee6-18e84a692a62", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-13T04:01:54.000Z" + }, + "end": { + "$date": "2021-08-13T04:32:26.000Z" + }, + "events": [ + { + "uuid": "22ceab74-6172-4dfc-8b41-917c5ac836ef", + "start": { + "$date": "2021-08-13T04:01:54.000Z" + }, + "end": { + "$date": "2021-08-13T04:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "291997fb-e45f-40e1-8a90-744c7781f002", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-13T04:01:31.000Z" + }, + "end": { + "$date": "2021-08-13T04:32:32.000Z" + }, + "events": [ + { + "uuid": "0e2c2960-4982-41e4-a598-4d054e13870f", + "start": { + "$date": "2021-08-13T04:01:31.000Z" + }, + "end": { + "$date": "2021-08-13T04:32:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "56cdbf28-79f4-4df7-ad75-ec35695c13fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-13T04:23:16.000Z" + }, + "end": { + "$date": "2021-08-13T04:24:55.000Z" + }, + "events": [ + { + "uuid": "7643a14a-ce29-4a06-9e92-851157e70ba6", + "start": { + "$date": "2021-08-13T04:23:16.000Z" + }, + "end": { + "$date": "2021-08-13T04:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "662a5d32-5e8a-4a44-9111-440ca240f0bc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-13T04:25:12.000Z" + }, + "end": { + "$date": "2021-08-13T04:33:41.000Z" + }, + "events": [ + { + "uuid": "62d6ad19-0c58-4d08-989e-d7523cdb1c2c", + "start": { + "$date": "2021-08-13T04:25:12.000Z" + }, + "end": { + "$date": "2021-08-13T04:33:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73ef398d-49d8-408c-89b3-18ed2806d835", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-13T04:37:25.000Z" + }, + "end": { + "$date": "2021-08-13T04:57:27.000Z" + }, + "events": [ + { + "uuid": "ce3355d1-7624-41ab-9c8d-5d967e643a78", + "start": { + "$date": "2021-08-13T04:37:25.000Z" + }, + "end": { + "$date": "2021-08-13T04:57:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88868e0d-0947-4ba0-a202-9977ccd52b35", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-13T04:36:57.000Z" + }, + "end": { + "$date": "2021-08-13T04:57:28.000Z" + }, + "events": [ + { + "uuid": "18f6111d-101b-42b7-8aeb-7ff433fd2fb7", + "start": { + "$date": "2021-08-13T04:36:57.000Z" + }, + "end": { + "$date": "2021-08-13T04:57:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab223093-83ec-4812-951b-c832900931fe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-13T04:36:57.000Z" + }, + "end": { + "$date": "2021-08-13T04:57:31.000Z" + }, + "events": [ + { + "uuid": "911ef174-aa7f-40de-9c81-de9c16020284", + "start": { + "$date": "2021-08-13T04:36:57.000Z" + }, + "end": { + "$date": "2021-08-13T04:57:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05e1dd54-00af-464f-a354-a307754d3b41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-13T05:21:14.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:37.000Z" + }, + "events": [ + { + "uuid": "4eda36ed-fd96-4f28-936e-f68f8e5b9bd5", + "start": { + "$date": "2021-08-13T05:21:14.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "879a57d0-cd39-4eef-9f71-5904876eaa7c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-13T05:21:12.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:28.000Z" + }, + "events": [ + { + "uuid": "c98ad15f-c9de-4266-96c1-a18e8ff5d821", + "start": { + "$date": "2021-08-13T05:21:12.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bc24fd6-ae14-4943-aa0e-0a573f3ca0fb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-13T05:21:06.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:34.000Z" + }, + "events": [ + { + "uuid": "f6549682-4eab-4c80-ad79-a349650b4673", + "start": { + "$date": "2021-08-13T05:21:06.000Z" + }, + "end": { + "$date": "2021-08-13T05:21:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "41ee1745-a5df-4d4a-8347-e8bc416c64b4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-13T05:20:21.000Z" + }, + "end": { + "$date": "2021-08-13T06:41:42.000Z" + }, + "events": [ + { + "uuid": "0daf2567-ed3c-4b6d-aec7-59311be50ebf", + "start": { + "$date": "2021-08-13T05:20:21.000Z" + }, + "end": { + "$date": "2021-08-13T06:41:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "486d10e6-a32d-4934-8d16-8b127948ebc0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-13T05:23:04.000Z" + }, + "end": { + "$date": "2021-08-13T08:32:37.000Z" + }, + "events": [ + { + "uuid": "f02af9d2-bc28-4944-ba67-a5ab8525df8d", + "start": { + "$date": "2021-08-13T05:23:04.000Z" + }, + "end": { + "$date": "2021-08-13T08:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "fafa48af-314f-4b7f-bae5-125dd140a08f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-13T05:42:05.000Z" + }, + "end": { + "$date": "2021-08-13T08:04:27.000Z" + }, + "events": [ + { + "uuid": "2f603fda-4dc6-4483-9d68-601626baae4e", + "start": { + "$date": "2021-08-13T05:42:05.000Z" + }, + "end": { + "$date": "2021-08-13T08:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "57accc4c-4332-4077-8bea-cf02efd41f1e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-13T07:13:27.000Z" + }, + "end": { + "$date": "2021-08-13T07:56:40.000Z" + }, + "events": [ + { + "uuid": "4d556351-1d34-4f65-9784-1037bc5d719e", + "start": { + "$date": "2021-08-13T07:13:27.000Z" + }, + "end": { + "$date": "2021-08-13T07:56:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43c46a7a-d9c5-42c4-8cb3-f0fc7eab36ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T15:55:54.000Z" + }, + "end": { + "$date": "2021-08-13T16:20:12.000Z" + }, + "events": [ + { + "uuid": "2e64a701-e8d2-41d0-bb9a-30db0baaa0d3", + "start": { + "$date": "2021-08-13T15:55:54.000Z" + }, + "end": { + "$date": "2021-08-13T16:20:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a11e43d5-5d1d-474f-a0d0-396aa354cd58", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T15:55:20.000Z" + }, + "end": { + "$date": "2021-08-13T16:20:11.000Z" + }, + "events": [ + { + "uuid": "1a6c5f54-9e90-4936-a00d-c6ba0f472d14", + "start": { + "$date": "2021-08-13T15:55:20.000Z" + }, + "end": { + "$date": "2021-08-13T16:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6860a8a4-213f-452a-88f2-4ccc0176e0c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-13T16:26:15.000Z" + }, + "end": { + "$date": "2021-08-13T17:01:14.000Z" + }, + "events": [ + { + "uuid": "ccfa938b-4bb0-4ff5-bb07-6d14300042d2", + "start": { + "$date": "2021-08-13T16:26:15.000Z" + }, + "end": { + "$date": "2021-08-13T17:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b80d41aa-7e10-4b50-91e6-bb921475b054", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-13T16:26:10.000Z" + }, + "end": { + "$date": "2021-08-13T17:01:11.000Z" + }, + "events": [ + { + "uuid": "73b7a89a-1b88-4110-8ee3-a70a4bb47773", + "start": { + "$date": "2021-08-13T16:26:10.000Z" + }, + "end": { + "$date": "2021-08-13T17:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "a2474ec6-448a-4844-99f6-d4ec61e8724a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-13T17:55:15.000Z" + }, + "end": { + "$date": "2021-08-13T23:06:45.000Z" + }, + "events": [ + { + "uuid": "d1ac292d-1344-4b68-bf10-f1ae2e358d20", + "start": { + "$date": "2021-08-13T17:55:15.000Z" + }, + "end": { + "$date": "2021-08-13T23:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b982a000-d0bb-416b-8dbf-a3ad0e0ab95d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-13T19:53:01.000Z" + }, + "end": { + "$date": "2021-08-13T21:07:21.000Z" + }, + "events": [ + { + "uuid": "ef953ec1-cd1a-4f63-ac7d-186707dd3e9e", + "start": { + "$date": "2021-08-13T19:53:01.000Z" + }, + "end": { + "$date": "2021-08-13T21:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "3e219226-60e9-45d1-87fd-891bac285000", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-13T20:21:35.000Z" + }, + "end": { + "$date": "2021-08-13T23:39:34.000Z" + }, + "events": [ + { + "uuid": "d2f1aa40-be97-4c8e-b63f-06c9a104035d", + "start": { + "$date": "2021-08-13T20:21:35.000Z" + }, + "end": { + "$date": "2021-08-13T23:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "0cf000d8-e34a-4447-b551-7833db4da39f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-13T20:56:57.000Z" + }, + "end": { + "$date": "2021-08-13T21:47:44.000Z" + }, + "events": [ + { + "uuid": "6a48e248-6e38-45a6-8262-6dc1b0321269", + "start": { + "$date": "2021-08-13T20:56:57.000Z" + }, + "end": { + "$date": "2021-08-13T21:47:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fe3d5bcc-8ca3-48a4-8ad8-f4c6c33f12b3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-13T21:37:04.000Z" + }, + "end": { + "$date": "2021-08-13T21:48:20.000Z" + }, + "events": [ + { + "uuid": "9a55c970-9927-4a6e-a6cf-dc4bd2ee92ef", + "start": { + "$date": "2021-08-13T21:37:04.000Z" + }, + "end": { + "$date": "2021-08-13T21:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "882afaf8-a827-4844-b3be-5e4136d8bbf9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-13T21:44:14.000Z" + }, + "end": { + "$date": "2021-08-14T02:45:42.000Z" + }, + "events": [ + { + "uuid": "8f41a414-303d-4022-ad40-955fe75ac060", + "start": { + "$date": "2021-08-13T21:44:14.000Z" + }, + "end": { + "$date": "2021-08-13T23:26:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2d4339c3-ecb9-4af4-92b9-2d1a695aa2a4", + "start": { + "$date": "2021-08-13T23:26:14.000Z" + }, + "end": { + "$date": "2021-08-13T23:31:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5baf447f-92c3-4c9c-9a89-e57f182966a0", + "start": { + "$date": "2021-08-13T23:31:14.000Z" + }, + "end": { + "$date": "2021-08-14T02:45:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "c2377de2-86f3-499b-b479-151ee1f6f6dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-13T21:51:45.000Z" + }, + "end": { + "$date": "2021-08-13T22:25:08.000Z" + }, + "events": [ + { + "uuid": "7c65a668-d0b3-4586-88a6-47f439565f2f", + "start": { + "$date": "2021-08-13T21:51:45.000Z" + }, + "end": { + "$date": "2021-08-13T22:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bf926d3-7db6-4108-b47d-191f43d72f36", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-13T22:25:18.000Z" + }, + "end": { + "$date": "2021-08-13T23:22:01.000Z" + }, + "events": [ + { + "uuid": "9d04b6fe-66e1-455b-9c01-bbacb9590b82", + "start": { + "$date": "2021-08-13T22:25:18.000Z" + }, + "end": { + "$date": "2021-08-13T23:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "1db0f006-b217-4c15-9ce1-aba4ece05ef9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-14T00:34:01.000Z" + }, + "end": { + "$date": "2021-08-14T03:03:52.000Z" + }, + "events": [ + { + "uuid": "f8fbd845-d2b0-4b15-9ac7-8ab7610a77df", + "start": { + "$date": "2021-08-14T00:34:01.000Z" + }, + "end": { + "$date": "2021-08-14T03:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c1669448-2067-4c90-bcdf-1679103f3336", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T00:37:46.000Z" + }, + "end": { + "$date": "2021-08-14T01:19:49.000Z" + }, + "events": [ + { + "uuid": "1fd06538-8cd1-4af9-8ce3-f935dfbc730c", + "start": { + "$date": "2021-08-14T00:37:46.000Z" + }, + "end": { + "$date": "2021-08-14T01:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79c34d7e-2664-42a5-8921-2ffb7b0f3830", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T01:09:01.000Z" + }, + "end": { + "$date": "2021-08-14T01:24:52.000Z" + }, + "events": [ + { + "uuid": "ec134632-22f8-4164-8d02-ba3f94ef1ddf", + "start": { + "$date": "2021-08-14T01:09:01.000Z" + }, + "end": { + "$date": "2021-08-14T01:24:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b496dd9d-b465-4b6a-b06f-da215ebc9d17", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-14T01:10:56.000Z" + }, + "end": { + "$date": "2021-08-14T06:00:56.000Z" + }, + "events": [ + { + "uuid": "aea8cd41-bb0b-498f-ac96-38393a157d75", + "start": { + "$date": "2021-08-14T01:10:56.000Z" + }, + "end": { + "$date": "2021-08-14T03:13:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbff42a3-12ef-481e-b752-2286f1313c6d", + "start": { + "$date": "2021-08-14T03:13:56.000Z" + }, + "end": { + "$date": "2021-08-14T03:24:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e6e2a89-d2bb-459f-bee5-88a238f4b4a3", + "start": { + "$date": "2021-08-14T03:24:56.000Z" + }, + "end": { + "$date": "2021-08-14T06:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0fa6166-4f11-4298-8e2d-fb1589239654", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T01:29:51.000Z" + }, + "end": { + "$date": "2021-08-14T01:58:22.000Z" + }, + "events": [ + { + "uuid": "eac29f42-f10e-495c-babc-9063d7df39a6", + "start": { + "$date": "2021-08-14T01:29:51.000Z" + }, + "end": { + "$date": "2021-08-14T01:58:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5078726-eabb-4c87-ab12-d19b09093c42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T02:03:22.000Z" + }, + "end": { + "$date": "2021-08-14T02:29:58.000Z" + }, + "events": [ + { + "uuid": "2424169c-7879-454e-9624-caefdcbb6706", + "start": { + "$date": "2021-08-14T02:03:22.000Z" + }, + "end": { + "$date": "2021-08-14T02:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b1875226-a12a-4726-a8a3-b199635ad60d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-14T02:13:47.000Z" + }, + "end": { + "$date": "2021-08-14T03:10:14.000Z" + }, + "events": [ + { + "uuid": "20eaef7b-2a78-4254-9765-8fba33761bd6", + "start": { + "$date": "2021-08-14T02:13:47.000Z" + }, + "end": { + "$date": "2021-08-14T02:28:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6af2085f-3c5c-437c-bcd1-4569dad1f2c4", + "start": { + "$date": "2021-08-14T02:28:47.000Z" + }, + "end": { + "$date": "2021-08-14T03:07:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a2c9e39-b592-4962-9fa2-0a92f11fcaab", + "start": { + "$date": "2021-08-14T03:07:47.000Z" + }, + "end": { + "$date": "2021-08-14T03:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34a46cc2-5380-4da0-87a0-4e2a4d26bef9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T02:35:38.000Z" + }, + "end": { + "$date": "2021-08-14T03:09:03.000Z" + }, + "events": [ + { + "uuid": "98cf428e-2ecf-4064-9dcd-7a82db614034", + "start": { + "$date": "2021-08-14T02:35:38.000Z" + }, + "end": { + "$date": "2021-08-14T03:09:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "dbc67e6c-cc04-4ebd-aff9-c94eaf509b3f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T02:47:07.000Z" + }, + "end": { + "$date": "2021-08-14T03:12:39.000Z" + }, + "events": [ + { + "uuid": "2288d26e-6d76-4dd7-9e50-a053d59ed800", + "start": { + "$date": "2021-08-14T02:47:07.000Z" + }, + "end": { + "$date": "2021-08-14T03:12:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8c2aeabf-e7df-4a22-b868-3d45943c6e90", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-14T03:11:43.000Z" + }, + "end": { + "$date": "2021-08-14T03:39:51.000Z" + }, + "events": [ + { + "uuid": "6db0ecde-062d-4613-9858-51cdbfb1b168", + "start": { + "$date": "2021-08-14T03:11:43.000Z" + }, + "end": { + "$date": "2021-08-14T03:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee04e0b3-5b72-488a-b4eb-0302e734ecf4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T03:13:04.000Z" + }, + "end": { + "$date": "2021-08-14T03:39:56.000Z" + }, + "events": [ + { + "uuid": "e033c087-5dba-4995-a6d7-a4360604a598", + "start": { + "$date": "2021-08-14T03:13:04.000Z" + }, + "end": { + "$date": "2021-08-14T03:39:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", + "uuid": "8ae88a5c-4633-4831-b22a-41d2c43e49f7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-14T03:24:21.000Z" + }, + "end": { + "$date": "2021-08-14T03:25:08.000Z" + }, + "events": [ + { + "uuid": "ec091b03-a431-4b0f-a566-1a8dcba3ee3d", + "start": { + "$date": "2021-08-14T03:24:21.000Z" + }, + "end": { + "$date": "2021-08-14T03:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", + "uuid": "51340d65-a65e-4d6c-88dc-85c57e74dd29", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-14T03:26:56.000Z" + }, + "end": { + "$date": "2021-08-14T04:04:19.000Z" + }, + "events": [ + { + "uuid": "94dcfad0-b1b7-4c67-a71e-68920932b3eb", + "start": { + "$date": "2021-08-14T03:26:56.000Z" + }, + "end": { + "$date": "2021-08-14T03:53:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e649ff51-7f98-4fd6-abd4-4f7847a8645b", + "start": { + "$date": "2021-08-14T03:53:56.000Z" + }, + "end": { + "$date": "2021-08-14T04:04:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "40609dd9-ec6a-46fc-b052-3a94d9e7a791", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-14T03:40:30.000Z" + }, + "end": { + "$date": "2021-08-14T04:26:39.000Z" + }, + "events": [ + { + "uuid": "f6b9f9df-8f87-4cc7-8d0f-e01c72f55241", + "start": { + "$date": "2021-08-14T03:40:30.000Z" + }, + "end": { + "$date": "2021-08-14T04:26:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8cf2d319-8945-4a19-a151-6f3818aa3e4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T03:40:41.000Z" + }, + "end": { + "$date": "2021-08-14T04:25:09.000Z" + }, + "events": [ + { + "uuid": "25753243-ffab-4371-a219-cb805c381574", + "start": { + "$date": "2021-08-14T03:40:41.000Z" + }, + "end": { + "$date": "2021-08-14T04:25:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5c57099e-cf99-4233-b391-02bcc618e3a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T04:26:09.000Z" + }, + "end": { + "$date": "2021-08-14T05:49:27.000Z" + }, + "events": [ + { + "uuid": "4abb8e10-cb9b-4888-b360-3c7fa8c2834b", + "start": { + "$date": "2021-08-14T04:26:09.000Z" + }, + "end": { + "$date": "2021-08-14T05:49:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09ca3336-4ac1-4608-8ad6-85de16b9f0e2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T05:37:24.000Z" + }, + "end": { + "$date": "2021-08-14T05:56:19.000Z" + }, + "events": [ + { + "uuid": "21c19ba4-4826-48ac-bc23-d6009df477c5", + "start": { + "$date": "2021-08-14T05:37:24.000Z" + }, + "end": { + "$date": "2021-08-14T05:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "becb055d-96ca-4fe1-966e-6ed4799ad5a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T05:59:49.000Z" + }, + "end": { + "$date": "2021-08-14T06:11:54.000Z" + }, + "events": [ + { + "uuid": "7311e4a4-b140-4d81-b06a-98281588800f", + "start": { + "$date": "2021-08-14T05:59:49.000Z" + }, + "end": { + "$date": "2021-08-14T06:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "822c9336-41ed-48a6-a4b4-dfacfa98bbff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T05:58:02.000Z" + }, + "end": { + "$date": "2021-08-14T06:12:49.000Z" + }, + "events": [ + { + "uuid": "4d15fb89-f388-4a3a-b6fc-5b187a028be5", + "start": { + "$date": "2021-08-14T05:58:02.000Z" + }, + "end": { + "$date": "2021-08-14T06:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c391a26-0378-4886-8d4b-9e6ad97dff53", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-14T06:45:14.000Z" + }, + "end": { + "$date": "2021-08-14T07:22:50.000Z" + }, + "events": [ + { + "uuid": "c1840910-df46-425e-bacc-5c90adbbefbc", + "start": { + "$date": "2021-08-14T06:45:14.000Z" + }, + "end": { + "$date": "2021-08-14T07:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "124b7397-731d-4bcd-af8b-16f26db97875", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-14T06:50:59.000Z" + }, + "end": { + "$date": "2021-08-14T06:52:19.000Z" + }, + "events": [ + { + "uuid": "63035ef1-0e65-4c8f-b022-8695fbfc027b", + "start": { + "$date": "2021-08-14T06:50:59.000Z" + }, + "end": { + "$date": "2021-08-14T06:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e07e2e0-56d2-40e0-9207-0e9cb6325cf3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-14T07:32:46.000Z" + }, + "end": { + "$date": "2021-08-14T08:03:52.000Z" + }, + "events": [ + { + "uuid": "2ce6e2bb-2840-4ddb-ace7-16056f208922", + "start": { + "$date": "2021-08-14T07:32:46.000Z" + }, + "end": { + "$date": "2021-08-14T08:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "80e14b1b-6b26-4eda-bd51-d8769488e735", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T14:01:28.000Z" + }, + "end": { + "$date": "2021-08-14T17:25:26.000Z" + }, + "events": [ + { + "uuid": "609cb2bd-ac86-4efb-b901-124caf90758e", + "start": { + "$date": "2021-08-14T14:01:28.000Z" + }, + "end": { + "$date": "2021-08-14T17:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8807590f-3192-4e15-91ad-7a6f59cbd541", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T16:38:15.000Z" + }, + "end": { + "$date": "2021-08-14T17:33:02.000Z" + }, + "events": [ + { + "uuid": "073dfe86-bd24-4a8f-b36e-91da18357de0", + "start": { + "$date": "2021-08-14T16:38:15.000Z" + }, + "end": { + "$date": "2021-08-14T16:53:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46ced2b0-af28-4538-82b9-62468004566c", + "start": { + "$date": "2021-08-14T16:53:15.000Z" + }, + "end": { + "$date": "2021-08-14T17:01:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7ef109f3-11f4-43dc-87de-2cf2ebe98131", + "start": { + "$date": "2021-08-14T17:01:15.000Z" + }, + "end": { + "$date": "2021-08-14T17:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e7985900-4007-48b5-bcdc-eb97b2bf4956", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-14T17:40:23.000Z" + }, + "end": { + "$date": "2021-08-14T17:52:19.000Z" + }, + "events": [ + { + "uuid": "4f2df02c-f4c7-4828-85f4-457adb8cf76f", + "start": { + "$date": "2021-08-14T17:40:23.000Z" + }, + "end": { + "$date": "2021-08-14T17:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f81649a7-68b4-4790-ae39-ff05a7d61727", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T18:34:09.000Z" + }, + "end": { + "$date": "2021-08-14T19:01:39.000Z" + }, + "events": [ + { + "uuid": "6818cdc0-e0b2-46b4-a216-a24f03139daf", + "start": { + "$date": "2021-08-14T18:34:09.000Z" + }, + "end": { + "$date": "2021-08-14T19:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "26849b2d-5811-4139-af89-22a0e35daa37", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-14T19:00:59.000Z" + }, + "end": { + "$date": "2021-08-14T19:02:24.000Z" + }, + "events": [ + { + "uuid": "1c4ea6d9-7129-4fb8-9c9c-524a481a55a2", + "start": { + "$date": "2021-08-14T19:00:59.000Z" + }, + "end": { + "$date": "2021-08-14T19:02:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "cb1f44e4-407c-4800-804f-cf5fa92b61c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T19:11:26.000Z" + }, + "end": { + "$date": "2021-08-14T19:13:46.000Z" + }, + "events": [ + { + "uuid": "4835c923-7d42-4b13-9434-101bb70d03fd", + "start": { + "$date": "2021-08-14T19:11:26.000Z" + }, + "end": { + "$date": "2021-08-14T19:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "fc2bcfe9-4171-41f3-84ab-da660a47f687", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-14T19:33:34.000Z" + }, + "end": { + "$date": "2021-08-14T20:21:04.000Z" + }, + "events": [ + { + "uuid": "11bf7fb3-a86c-4d71-a0c1-d486d737dd39", + "start": { + "$date": "2021-08-14T19:33:34.000Z" + }, + "end": { + "$date": "2021-08-14T20:21:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b5b4d746-38be-4e47-a2e8-2c5511a342e4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T20:32:35.000Z" + }, + "end": { + "$date": "2021-08-14T20:53:41.000Z" + }, + "events": [ + { + "uuid": "bf5cd8e3-9e96-4742-a09d-b200f72f3c93", + "start": { + "$date": "2021-08-14T20:32:35.000Z" + }, + "end": { + "$date": "2021-08-14T20:53:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "406fb482-ffbc-485b-b512-a7450750365d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-14T20:38:02.000Z" + }, + "end": { + "$date": "2021-08-14T20:46:37.000Z" + }, + "events": [ + { + "uuid": "e78ba703-5936-41ec-b80a-3e07c95e2406", + "start": { + "$date": "2021-08-14T20:38:02.000Z" + }, + "end": { + "$date": "2021-08-14T20:46:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8626fe98-8835-4028-a5dd-5aecdbb5557a", + "uuid": "41b4facb-8a90-4d35-b648-6971c0a6a49c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-14T20:41:58.000Z" + }, + "end": { + "$date": "2021-08-14T23:07:09.000Z" + }, + "events": [ + { + "uuid": "b092189f-f60e-4af2-9094-3f06ff31045f", + "start": { + "$date": "2021-08-14T20:41:58.000Z" + }, + "end": { + "$date": "2021-08-14T23:07:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "8bed9026-b7ec-4c19-874d-ce1949b822b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-14T20:46:43.000Z" + }, + "end": { + "$date": "2021-08-14T21:07:15.000Z" + }, + "events": [ + { + "uuid": "5486624e-7bfd-4998-928e-910ab131ef30", + "start": { + "$date": "2021-08-14T20:46:43.000Z" + }, + "end": { + "$date": "2021-08-14T21:07:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "6da121a5-d30d-4b36-8244-c717e22aa4ee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-14T20:54:10.000Z" + }, + "end": { + "$date": "2021-08-15T03:55:24.000Z" + }, + "events": [ + { + "uuid": "84569736-1a03-4d0a-bfd7-17302b255b4d", + "start": { + "$date": "2021-08-14T20:54:10.000Z" + }, + "end": { + "$date": "2021-08-14T21:43:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3820425-2d45-4fcd-a3f5-58f1136763b9", + "start": { + "$date": "2021-08-14T21:43:10.000Z" + }, + "end": { + "$date": "2021-08-14T21:48:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a44281c-36d7-4e38-843b-d1d0577f9989", + "start": { + "$date": "2021-08-14T21:48:10.000Z" + }, + "end": { + "$date": "2021-08-14T21:58:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "326b56d6-b3cb-469d-a2f1-44a07fa7752c", + "start": { + "$date": "2021-08-14T21:58:10.000Z" + }, + "end": { + "$date": "2021-08-14T22:16:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f926ddbd-39ae-4845-ba67-4de675052c61", + "start": { + "$date": "2021-08-14T22:16:10.000Z" + }, + "end": { + "$date": "2021-08-14T22:26:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d06da001-7ad7-4cb5-9043-69bef126f850", + "start": { + "$date": "2021-08-14T22:26:10.000Z" + }, + "end": { + "$date": "2021-08-14T22:40:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca287c91-4e3e-492a-ac74-73c217738d2e", + "start": { + "$date": "2021-08-14T22:40:10.000Z" + }, + "end": { + "$date": "2021-08-14T23:33:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c012732f-2aa3-4e45-b6d5-704cbd8c5fd0", + "start": { + "$date": "2021-08-14T23:33:10.000Z" + }, + "end": { + "$date": "2021-08-14T23:37:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44696448-72c0-4d59-a9ad-5af120a2e138", + "start": { + "$date": "2021-08-14T23:37:10.000Z" + }, + "end": { + "$date": "2021-08-15T02:11:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3ca8c5a5-1064-44d7-814e-3c8e18168311", + "start": { + "$date": "2021-08-15T02:11:10.000Z" + }, + "end": { + "$date": "2021-08-15T02:15:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f72464d-d5e6-4770-b478-4ae38c2d9188", + "start": { + "$date": "2021-08-15T02:15:10.000Z" + }, + "end": { + "$date": "2021-08-15T02:25:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "177fae49-ab79-4776-a3f4-e1b3627878af", + "start": { + "$date": "2021-08-15T02:25:10.000Z" + }, + "end": { + "$date": "2021-08-15T02:28:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "044f97d0-cdb0-4837-b25c-c4363f08358b", + "start": { + "$date": "2021-08-15T02:28:10.000Z" + }, + "end": { + "$date": "2021-08-15T02:32:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7d75eab-a1ad-4e23-b542-7fe3b035633e", + "start": { + "$date": "2021-08-15T02:32:10.000Z" + }, + "end": { + "$date": "2021-08-15T03:51:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c037c2ab-a356-41f8-88f9-e3cea5b6ca55", + "start": { + "$date": "2021-08-15T03:51:10.000Z" + }, + "end": { + "$date": "2021-08-15T03:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ef204944-02c5-4b4f-99c8-2b6b70710afa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-14T22:21:46.000Z" + }, + "end": { + "$date": "2021-08-15T05:08:41.000Z" + }, + "events": [ + { + "uuid": "fe490d60-7e13-4e55-8b29-56870bb8f9f0", + "start": { + "$date": "2021-08-14T22:21:46.000Z" + }, + "end": { + "$date": "2021-08-15T05:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8626fe98-8835-4028-a5dd-5aecdbb5557a", + "uuid": "64994815-be57-4633-b22c-d485f41dccaf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-14T23:07:34.000Z" + }, + "end": { + "$date": "2021-08-14T23:53:20.000Z" + }, + "events": [ + { + "uuid": "5704a7f5-d4b0-43be-a2ed-c1545006c33e", + "start": { + "$date": "2021-08-14T23:07:34.000Z" + }, + "end": { + "$date": "2021-08-14T23:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fc587fc2-abef-4058-8d8b-8f1e2eae90d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-15T00:35:32.000Z" + }, + "end": { + "$date": "2021-08-15T01:20:02.000Z" + }, + "events": [ + { + "uuid": "c03ad917-a1e7-4827-8b54-fe65aaff8a63", + "start": { + "$date": "2021-08-15T00:35:32.000Z" + }, + "end": { + "$date": "2021-08-15T01:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "38b8552a-e7ad-479a-b23d-d40a98008224", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-15T01:17:53.000Z" + }, + "end": { + "$date": "2021-08-15T02:01:44.000Z" + }, + "events": [ + { + "uuid": "aeaf7325-d27f-466b-96a7-6137e21413ff", + "start": { + "$date": "2021-08-15T01:17:53.000Z" + }, + "end": { + "$date": "2021-08-15T02:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "02d7db8c-5361-4ac8-939d-7ba430788ae0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-15T02:10:10.000Z" + }, + "end": { + "$date": "2021-08-15T06:43:56.000Z" + }, + "events": [ + { + "uuid": "2c61c5e9-6424-44be-8743-9632fbbdb8fd", + "start": { + "$date": "2021-08-15T02:10:10.000Z" + }, + "end": { + "$date": "2021-08-15T06:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9f5a6cd4-3bb3-409d-b252-c3b056e8ec8a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T03:55:54.000Z" + }, + "end": { + "$date": "2021-08-15T03:57:10.000Z" + }, + "events": [ + { + "uuid": "bfaff390-6531-48c0-a46e-70e02634fe1d", + "start": { + "$date": "2021-08-15T03:55:54.000Z" + }, + "end": { + "$date": "2021-08-15T03:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "318088b1-7efc-41a4-aee8-6382377079b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T03:58:25.000Z" + }, + "end": { + "$date": "2021-08-15T03:59:45.000Z" + }, + "events": [ + { + "uuid": "6ad23bc2-e0a4-44c0-88a2-9b675c2c6145", + "start": { + "$date": "2021-08-15T03:58:25.000Z" + }, + "end": { + "$date": "2021-08-15T03:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a03277b-2e02-4144-9d9a-2acec2093ba7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-15T04:13:33.000Z" + }, + "end": { + "$date": "2021-08-15T04:48:43.000Z" + }, + "events": [ + { + "uuid": "557b5d01-5725-4232-a846-8a2ed24af2b9", + "start": { + "$date": "2021-08-15T04:13:33.000Z" + }, + "end": { + "$date": "2021-08-15T04:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8bc00828-82ef-4cfe-8d6b-3e9ee0638692", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T04:13:57.000Z" + }, + "end": { + "$date": "2021-08-15T04:48:43.000Z" + }, + "events": [ + { + "uuid": "a2cffc52-329f-45f6-8692-ecb9911d8ef3", + "start": { + "$date": "2021-08-15T04:13:57.000Z" + }, + "end": { + "$date": "2021-08-15T04:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fdb33703-6ebd-4bb6-8097-928d92e04770", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-15T04:28:25.000Z" + }, + "end": { + "$date": "2021-08-15T08:48:27.000Z" + }, + "events": [ + { + "uuid": "044fb8b7-14d9-4996-88d4-b23003d1bea3", + "start": { + "$date": "2021-08-15T04:28:25.000Z" + }, + "end": { + "$date": "2021-08-15T08:48:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bd37aa79-bcdf-4aa1-9a44-b1dc459e55ab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-15T04:45:38.000Z" + }, + "end": { + "$date": "2021-08-15T04:47:40.000Z" + }, + "events": [ + { + "uuid": "6c001909-a234-4e6e-a9f2-21c2c3543c37", + "start": { + "$date": "2021-08-15T04:45:38.000Z" + }, + "end": { + "$date": "2021-08-15T04:47:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "87faf8f2-040b-462f-aa99-61f09072aea0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-15T04:47:54.000Z" + }, + "end": { + "$date": "2021-08-15T05:52:35.000Z" + }, + "events": [ + { + "uuid": "f8f51f65-f63e-4dbb-a911-eb164d98bace", + "start": { + "$date": "2021-08-15T04:47:54.000Z" + }, + "end": { + "$date": "2021-08-15T05:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "36554604-9efa-4a9c-bc03-d0765cd47eac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T04:48:58.000Z" + }, + "end": { + "$date": "2021-08-15T05:59:10.000Z" + }, + "events": [ + { + "uuid": "24a252c8-3ede-47c0-8f5e-2c56bad1a257", + "start": { + "$date": "2021-08-15T04:48:58.000Z" + }, + "end": { + "$date": "2021-08-15T05:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "713af44c-4d7f-4959-8e8f-6c7654404243", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-15T04:49:03.000Z" + }, + "end": { + "$date": "2021-08-15T05:52:24.000Z" + }, + "events": [ + { + "uuid": "24718d05-ff47-4c45-99d6-2481b25593d5", + "start": { + "$date": "2021-08-15T04:49:03.000Z" + }, + "end": { + "$date": "2021-08-15T05:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1249e1bb-35c8-4697-942f-1ffb3a901fbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T04:54:30.000Z" + }, + "end": { + "$date": "2021-08-15T05:23:15.000Z" + }, + "events": [ + { + "uuid": "a9176bb0-e420-44ff-a89b-29d7076fc8d0", + "start": { + "$date": "2021-08-15T04:54:30.000Z" + }, + "end": { + "$date": "2021-08-15T05:23:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f325061-0165-43ed-b59e-9c589f70cd16", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-15T05:08:53.000Z" + }, + "end": { + "$date": "2021-08-15T06:23:20.000Z" + }, + "events": [ + { + "uuid": "5141db97-b919-4825-bace-feb6474546ea", + "start": { + "$date": "2021-08-15T05:08:53.000Z" + }, + "end": { + "$date": "2021-08-15T06:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "df4a4628-5693-46ae-95d2-508dc6c095a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-15T05:27:08.000Z" + }, + "end": { + "$date": "2021-08-15T06:18:43.000Z" + }, + "events": [ + { + "uuid": "64fd6d8f-f04b-4f52-9c6b-882071435c1c", + "start": { + "$date": "2021-08-15T05:27:08.000Z" + }, + "end": { + "$date": "2021-08-15T06:18:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f0387817-3d81-4d09-9346-1de56475ea4f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-15T06:08:49.000Z" + }, + "end": { + "$date": "2021-08-15T07:07:59.000Z" + }, + "events": [ + { + "uuid": "03fa3200-51c7-4dcc-9b60-e7c2c17eb051", + "start": { + "$date": "2021-08-15T06:08:49.000Z" + }, + "end": { + "$date": "2021-08-15T07:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "a8654e83-b4fe-4d91-aeae-a6632e20a884", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T06:13:27.000Z" + }, + "end": { + "$date": "2021-08-15T06:59:11.000Z" + }, + "events": [ + { + "uuid": "0dbae8d9-f075-4122-b8b0-2cdc108a8549", + "start": { + "$date": "2021-08-15T06:13:27.000Z" + }, + "end": { + "$date": "2021-08-15T06:37:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8cccca40-aaf1-4821-80f1-66a2349ced7d", + "start": { + "$date": "2021-08-15T06:37:27.000Z" + }, + "end": { + "$date": "2021-08-15T06:42:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b748a533-41ce-4ffc-804c-65abe2e84d9c", + "start": { + "$date": "2021-08-15T06:42:27.000Z" + }, + "end": { + "$date": "2021-08-15T06:52:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db3ca6a5-9f9c-4b2e-8be1-4f43cf03a782", + "start": { + "$date": "2021-08-15T06:52:27.000Z" + }, + "end": { + "$date": "2021-08-15T06:54:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b7450f70-9734-46da-b22f-830f09376e29", + "start": { + "$date": "2021-08-15T06:54:27.000Z" + }, + "end": { + "$date": "2021-08-15T06:59:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "3e9b38e0-634a-4fd9-81d9-d3dd0f177dd1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-15T06:34:35.000Z" + }, + "end": { + "$date": "2021-08-15T07:16:11.000Z" + }, + "events": [ + { + "uuid": "83ca4c88-dee6-417a-8128-e4d946f5c7cf", + "start": { + "$date": "2021-08-15T06:34:35.000Z" + }, + "end": { + "$date": "2021-08-15T07:16:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8c42274-d62a-4455-afb5-252bc4f655e2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-15T07:50:37.000Z" + }, + "end": { + "$date": "2021-08-15T08:23:39.000Z" + }, + "events": [ + { + "uuid": "3bda2fec-9852-49db-8b15-887945804b4e", + "start": { + "$date": "2021-08-15T07:50:37.000Z" + }, + "end": { + "$date": "2021-08-15T08:23:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18946cfb-b013-40f1-962b-a18385b51fe5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-15T08:32:09.000Z" + }, + "end": { + "$date": "2021-08-15T09:00:12.000Z" + }, + "events": [ + { + "uuid": "67976c40-5f0b-4bc9-9245-93d6a4c9413b", + "start": { + "$date": "2021-08-15T08:32:09.000Z" + }, + "end": { + "$date": "2021-08-15T09:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "fa4febe0-ba02-4434-b37e-96eb1da631a8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-15T14:11:24.000Z" + }, + "end": { + "$date": "2021-08-15T14:56:14.000Z" + }, + "events": [ + { + "uuid": "388182b7-9f4b-402d-9608-910bad676677", + "start": { + "$date": "2021-08-15T14:11:24.000Z" + }, + "end": { + "$date": "2021-08-15T14:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "95fc7065-bfb3-4b59-aa35-85c7b44d3696", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T15:08:25.000Z" + }, + "end": { + "$date": "2021-08-15T15:32:46.000Z" + }, + "events": [ + { + "uuid": "52497846-5af3-4f81-a733-b5d83997caf2", + "start": { + "$date": "2021-08-15T15:08:25.000Z" + }, + "end": { + "$date": "2021-08-15T15:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bd282bb1-b7d1-4364-8440-c2e2773aa5c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T15:33:30.000Z" + }, + "end": { + "$date": "2021-08-15T16:25:53.000Z" + }, + "events": [ + { + "uuid": "844a4867-c9b6-46f8-88a6-fc74fa8b3944", + "start": { + "$date": "2021-08-15T15:33:30.000Z" + }, + "end": { + "$date": "2021-08-15T16:25:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc761a20-7839-45be-b533-386c86e2a2a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T15:53:58.000Z" + }, + "end": { + "$date": "2021-08-15T16:17:37.000Z" + }, + "events": [ + { + "uuid": "5187cd1e-5360-4ce3-9e57-4fec7e9198e5", + "start": { + "$date": "2021-08-15T15:53:58.000Z" + }, + "end": { + "$date": "2021-08-15T16:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19ceff99-5192-4415-97d2-bf128687abb7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-15T15:54:23.000Z" + }, + "end": { + "$date": "2021-08-15T16:17:43.000Z" + }, + "events": [ + { + "uuid": "d85d8cd6-2e6c-4c83-9447-a49251746bfe", + "start": { + "$date": "2021-08-15T15:54:23.000Z" + }, + "end": { + "$date": "2021-08-15T16:17:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ced391cf-1f88-41f3-b06d-c0fdfe19cf0d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T16:27:19.000Z" + }, + "end": { + "$date": "2021-08-15T17:03:13.000Z" + }, + "events": [ + { + "uuid": "6134c8cd-1cd6-4f76-ba08-6cedaabc2f60", + "start": { + "$date": "2021-08-15T16:27:19.000Z" + }, + "end": { + "$date": "2021-08-15T17:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0593b2b7-2ec6-4982-b75f-c72ba0306cdc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-15T16:19:44.000Z" + }, + "end": { + "$date": "2021-08-15T16:22:48.000Z" + }, + "events": [ + { + "uuid": "60d5c2b9-01cd-43e7-82d7-abf51d6293b8", + "start": { + "$date": "2021-08-15T16:19:44.000Z" + }, + "end": { + "$date": "2021-08-15T16:22:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18f1cc98-e9c9-4a5e-91ae-c8b84397d023", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-15T16:27:19.000Z" + }, + "end": { + "$date": "2021-08-15T17:03:18.000Z" + }, + "events": [ + { + "uuid": "02ddbcba-100d-43a0-9045-08c78b93fb98", + "start": { + "$date": "2021-08-15T16:27:19.000Z" + }, + "end": { + "$date": "2021-08-15T17:03:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "dbd3ac1b-4feb-45dc-8353-90c46408c21b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T16:53:56.000Z" + }, + "end": { + "$date": "2021-08-15T17:52:33.000Z" + }, + "events": [ + { + "uuid": "8d626849-0d56-4643-90e4-260d8f86f074", + "start": { + "$date": "2021-08-15T16:53:56.000Z" + }, + "end": { + "$date": "2021-08-15T17:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "861e8516-d522-4ae2-8bcc-cb4a8e10cc89", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-15T17:03:29.000Z" + }, + "end": { + "$date": "2021-08-15T17:45:59.000Z" + }, + "events": [ + { + "uuid": "05016940-273b-4d87-8665-d8c13cabc352", + "start": { + "$date": "2021-08-15T17:03:29.000Z" + }, + "end": { + "$date": "2021-08-15T17:45:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98e177b6-a92c-4b7d-af19-40fe2351935b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T17:03:40.000Z" + }, + "end": { + "$date": "2021-08-15T19:00:02.000Z" + }, + "events": [ + { + "uuid": "6717fad7-7d3b-4020-95e5-898c82584303", + "start": { + "$date": "2021-08-15T17:03:40.000Z" + }, + "end": { + "$date": "2021-08-15T18:35:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7b0b8644-8d63-40e2-93bb-1c30e65c1444", + "start": { + "$date": "2021-08-15T18:35:40.000Z" + }, + "end": { + "$date": "2021-08-15T18:36:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03e727bc-03fa-4075-b8de-9e8434ecec3e", + "start": { + "$date": "2021-08-15T18:36:40.000Z" + }, + "end": { + "$date": "2021-08-15T19:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "96b69b3c-0686-46b6-8382-251e573213e2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-15T18:56:47.000Z" + }, + "end": { + "$date": "2021-08-15T20:33:49.000Z" + }, + "events": [ + { + "uuid": "e76d288c-651f-4720-b114-aee5775719ae", + "start": { + "$date": "2021-08-15T18:56:47.000Z" + }, + "end": { + "$date": "2021-08-15T20:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2fd053e1-4117-4c26-8119-a7c21411fd12", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-15T18:52:18.000Z" + }, + "end": { + "$date": "2021-08-15T18:52:23.000Z" + }, + "events": [ + { + "uuid": "7b515c71-a941-4796-a927-b764467f196c", + "start": { + "$date": "2021-08-15T18:52:18.000Z" + }, + "end": { + "$date": "2021-08-15T19:43:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "088b2b04-3cea-4afe-b205-b96b84e01f35", + "start": { + "$date": "2021-08-15T19:43:18.000Z" + }, + "end": { + "$date": "2021-08-15T19:46:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70842b08-8424-4ad3-825e-2e88c6dfbefd", + "start": { + "$date": "2021-08-15T19:46:18.000Z" + }, + "end": { + "$date": "2021-08-15T18:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0ffacc92-bfd7-4760-91b3-188ab563d91f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-15T19:28:43.000Z" + }, + "end": { + "$date": "2021-08-15T20:33:30.000Z" + }, + "events": [ + { + "uuid": "961ba266-2921-4f79-8de3-e218fe740888", + "start": { + "$date": "2021-08-15T19:28:43.000Z" + }, + "end": { + "$date": "2021-08-15T20:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee291bd9-f675-4979-9ce2-f825b828a6cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T20:15:52.000Z" + }, + "end": { + "$date": "2021-08-15T20:44:27.000Z" + }, + "events": [ + { + "uuid": "04bf8c08-682f-454e-b515-dd17404f4f65", + "start": { + "$date": "2021-08-15T20:15:52.000Z" + }, + "end": { + "$date": "2021-08-15T20:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "820f655b-1b8b-43b4-88b1-a1837a278ad9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T21:32:21.000Z" + }, + "end": { + "$date": "2021-08-15T22:24:27.000Z" + }, + "events": [ + { + "uuid": "58ab6d20-3db4-4ac7-82d0-8f1ebc7e60ff", + "start": { + "$date": "2021-08-15T21:32:21.000Z" + }, + "end": { + "$date": "2021-08-15T22:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b30e7aed-3951-47ae-8df3-1668f539071f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-15T22:13:24.000Z" + }, + "end": { + "$date": "2021-08-15T22:32:23.000Z" + }, + "events": [ + { + "uuid": "3acb3cf0-9a8c-45d9-a2cb-7ae5f45da8c8", + "start": { + "$date": "2021-08-15T22:13:24.000Z" + }, + "end": { + "$date": "2021-08-15T22:32:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dfe95657-72fb-4ca7-84b3-6411ccb45196", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-15T22:44:21.000Z" + }, + "end": { + "$date": "2021-08-16T01:51:38.000Z" + }, + "events": [ + { + "uuid": "7555cf0e-bb73-41ce-9733-e08edba743c4", + "start": { + "$date": "2021-08-15T22:44:21.000Z" + }, + "end": { + "$date": "2021-08-16T01:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "033d4724-2e03-4f13-9cbb-f6a7fdf2ca9b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-15T22:58:56.000Z" + }, + "end": { + "$date": "2021-08-16T01:21:58.000Z" + }, + "events": [ + { + "uuid": "42237a07-9f8e-4f44-815d-dac9da007ddc", + "start": { + "$date": "2021-08-15T22:58:56.000Z" + }, + "end": { + "$date": "2021-08-16T01:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3a149649-4c80-4804-b972-f2e55757466c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-15T22:03:01.000Z" + }, + "end": { + "$date": "2021-08-16T05:43:36.000Z" + }, + "events": [ + { + "uuid": "804c0b04-ea8a-491b-b485-6848b6634b55", + "start": { + "$date": "2021-08-15T22:03:01.000Z" + }, + "end": { + "$date": "2021-08-16T05:43:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1fbd2dc-d33a-43e8-b4bf-cb28a40fab58", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T23:15:48.000Z" + }, + "end": { + "$date": "2021-08-15T23:46:07.000Z" + }, + "events": [ + { + "uuid": "dd57685b-4969-4c20-b382-2f3508a1e29f", + "start": { + "$date": "2021-08-15T23:15:48.000Z" + }, + "end": { + "$date": "2021-08-15T23:46:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d23b1452-ba56-4e4e-a9ce-8915712ebf93", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-15T23:49:08.000Z" + }, + "end": { + "$date": "2021-08-16T00:06:23.000Z" + }, + "events": [ + { + "uuid": "27c6a79d-2f14-49c1-ab88-06b50c66372d", + "start": { + "$date": "2021-08-15T23:49:08.000Z" + }, + "end": { + "$date": "2021-08-16T00:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d2774df-64be-4f21-afd0-1b8b45e9e901", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T00:06:33.000Z" + }, + "end": { + "$date": "2021-08-16T00:07:35.000Z" + }, + "events": [ + { + "uuid": "01b8f4f7-6dff-4a92-88e3-4bce8d3d1d10", + "start": { + "$date": "2021-08-16T00:06:33.000Z" + }, + "end": { + "$date": "2021-08-16T00:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "333fb469-28cf-46c1-b795-da65b1066058", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-08-16T00:56:28.000Z" + }, + "end": { + "$date": "2021-08-16T00:59:22.000Z" + }, + "events": [ + { + "uuid": "2db370c9-8cce-43dc-88f4-b161ded1b632", + "start": { + "$date": "2021-08-16T00:56:28.000Z" + }, + "end": { + "$date": "2021-08-16T00:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "eb135b47-bcb8-436e-9468-25e8100a916d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T01:13:27.000Z" + }, + "end": { + "$date": "2021-08-16T02:10:39.000Z" + }, + "events": [ + { + "uuid": "854a2153-69e7-4a02-aa84-e82db24d6bd7", + "start": { + "$date": "2021-08-16T01:13:27.000Z" + }, + "end": { + "$date": "2021-08-16T02:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "6e8ab08c-f5ba-4f4a-b429-e041dfe01bb8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T01:14:35.000Z" + }, + "end": { + "$date": "2021-08-16T01:27:26.000Z" + }, + "events": [ + { + "uuid": "89ded4b2-e7a1-4eba-beb3-2b37c2d8439a", + "start": { + "$date": "2021-08-16T01:14:35.000Z" + }, + "end": { + "$date": "2021-08-16T01:27:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "65ef5805-5c46-44e5-971a-b10c3e432fa6", + "uuid": "4d4ad6b6-1f24-4b7b-8023-207edbe04f5a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-16T01:47:57.000Z" + }, + "end": { + "$date": "2021-08-16T09:57:56.000Z" + }, + "events": [ + { + "uuid": "1592d7d5-39e0-433a-9dea-614e7de5a2b7", + "start": { + "$date": "2021-08-16T01:47:57.000Z" + }, + "end": { + "$date": "2021-08-16T09:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b2226285-edf5-4902-9d2e-736d5661c294", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-16T01:53:46.000Z" + }, + "end": { + "$date": "2021-08-16T04:14:35.000Z" + }, + "events": [ + { + "uuid": "ca19c3e7-f4e6-464d-96b8-9823178f4fe1", + "start": { + "$date": "2021-08-16T01:53:46.000Z" + }, + "end": { + "$date": "2021-08-16T04:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "5fbd2338-1b89-418a-8c8d-697c01260123", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T02:24:34.000Z" + }, + "end": { + "$date": "2021-08-16T03:09:34.000Z" + }, + "events": [ + { + "uuid": "050efec8-4caa-41ec-9c01-5123f82fe562", + "start": { + "$date": "2021-08-16T02:24:34.000Z" + }, + "end": { + "$date": "2021-08-16T03:09:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a01a4c25-6526-428e-9558-c2a6703b1815", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-16T02:50:55.000Z" + }, + "end": { + "$date": "2021-08-16T04:18:17.000Z" + }, + "events": [ + { + "uuid": "45131923-fa8d-438f-a622-ce8b02b783b4", + "start": { + "$date": "2021-08-16T02:50:55.000Z" + }, + "end": { + "$date": "2021-08-16T04:18:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "62064401-5f8b-478d-a588-2c9ed99cb833", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T03:09:39.000Z" + }, + "end": { + "$date": "2021-08-16T03:55:10.000Z" + }, + "events": [ + { + "uuid": "5b18a89b-d2af-4c41-8079-e0de23164afe", + "start": { + "$date": "2021-08-16T03:09:39.000Z" + }, + "end": { + "$date": "2021-08-16T03:55:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "470eacc1-9ba9-4238-8faa-cfc0c69689e6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-16T04:00:23.000Z" + }, + "end": { + "$date": "2021-08-16T04:03:35.000Z" + }, + "events": [ + { + "uuid": "647086c4-f916-4511-b2ae-1838aa9ada1e", + "start": { + "$date": "2021-08-16T04:00:23.000Z" + }, + "end": { + "$date": "2021-08-16T04:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71077aa1-59fd-426a-9222-e40c958640e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T03:59:15.000Z" + }, + "end": { + "$date": "2021-08-16T04:45:59.000Z" + }, + "events": [ + { + "uuid": "611135ee-d466-4771-8c9e-b6a37e5e5802", + "start": { + "$date": "2021-08-16T03:59:15.000Z" + }, + "end": { + "$date": "2021-08-16T04:45:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "8306f2d1-ef5f-4faa-bb18-8b19cbadb63b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T03:59:51.000Z" + }, + "end": { + "$date": "2021-08-16T05:40:08.000Z" + }, + "events": [ + { + "uuid": "722b5419-d3b7-47cd-a093-f620c5625b8d", + "start": { + "$date": "2021-08-16T03:59:51.000Z" + }, + "end": { + "$date": "2021-08-16T05:40:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faa10430-7cab-4dc0-941c-8d576c0389fc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-16T04:11:58.000Z" + }, + "end": { + "$date": "2021-08-16T04:41:36.000Z" + }, + "events": [ + { + "uuid": "bf7fcb01-5465-4f9e-ad59-b33cdd9e55ff", + "start": { + "$date": "2021-08-16T04:11:58.000Z" + }, + "end": { + "$date": "2021-08-16T04:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bab2f569-b591-4f65-8f1a-ded4f84dc6d8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-16T04:18:51.000Z" + }, + "end": { + "$date": "2021-08-16T05:05:39.000Z" + }, + "events": [ + { + "uuid": "b6c43fc9-b31c-4cba-b3de-21b59b41254a", + "start": { + "$date": "2021-08-16T04:18:51.000Z" + }, + "end": { + "$date": "2021-08-16T05:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "545ee3e7-7f3d-4879-ab27-b9216bbc40e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-16T04:22:09.000Z" + }, + "end": { + "$date": "2021-08-16T05:51:34.000Z" + }, + "events": [ + { + "uuid": "2844cda6-557c-4dce-a3e0-9dbd98f79513", + "start": { + "$date": "2021-08-16T04:22:09.000Z" + }, + "end": { + "$date": "2021-08-16T05:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "98f9def2-08d1-4be1-87fd-2e084f845e5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-16T04:40:05.000Z" + }, + "end": { + "$date": "2021-08-16T05:10:28.000Z" + }, + "events": [ + { + "uuid": "6c0985f5-ee55-44fb-8295-2c419c6c9c07", + "start": { + "$date": "2021-08-16T04:40:05.000Z" + }, + "end": { + "$date": "2021-08-16T05:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3833c8d5-0b0c-4472-8e86-35e29421599d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-16T04:48:46.000Z" + }, + "end": { + "$date": "2021-08-16T05:39:32.000Z" + }, + "events": [ + { + "uuid": "15e03b0d-f547-4124-ab6d-c1e6b0ac2bd0", + "start": { + "$date": "2021-08-16T04:48:46.000Z" + }, + "end": { + "$date": "2021-08-16T05:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c47c69e4-33d4-4136-a4f9-624d11032817", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-16T05:05:48.000Z" + }, + "end": { + "$date": "2021-08-16T05:08:19.000Z" + }, + "events": [ + { + "uuid": "d4f07981-b7c7-474a-a769-4f444164d32d", + "start": { + "$date": "2021-08-16T05:05:48.000Z" + }, + "end": { + "$date": "2021-08-16T05:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "753e1058-15eb-446b-aa55-c04be58f1702", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-16T05:09:48.000Z" + }, + "end": { + "$date": "2021-08-16T05:51:55.000Z" + }, + "events": [ + { + "uuid": "b46bc77d-8b47-427b-954f-ecfe52f4d36b", + "start": { + "$date": "2021-08-16T05:09:48.000Z" + }, + "end": { + "$date": "2021-08-16T05:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01c04032-9a59-4fa5-9832-1c0b8dd4de22", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-16T05:47:36.000Z" + }, + "end": { + "$date": "2021-08-16T06:18:08.000Z" + }, + "events": [ + { + "uuid": "ed1c7614-d51b-4d52-addf-94a9f6cb31fa", + "start": { + "$date": "2021-08-16T05:47:36.000Z" + }, + "end": { + "$date": "2021-08-16T06:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "959d86fa-1c11-473c-a054-c2cbd9e801b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-16T06:21:52.000Z" + }, + "end": { + "$date": "2021-08-16T06:45:26.000Z" + }, + "events": [ + { + "uuid": "b98264ed-70ec-4d8d-a5e6-c9b8f4129440", + "start": { + "$date": "2021-08-16T06:21:52.000Z" + }, + "end": { + "$date": "2021-08-16T06:45:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dffcbab-0034-40e9-9984-c1a0dd3f833c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-16T06:48:54.000Z" + }, + "end": { + "$date": "2021-08-16T07:11:41.000Z" + }, + "events": [ + { + "uuid": "4976c095-73a5-450f-a412-b0c38a7f5c37", + "start": { + "$date": "2021-08-16T06:48:54.000Z" + }, + "end": { + "$date": "2021-08-16T07:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "be5ef5a0-8753-4eec-ba29-5ec5aac475b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T15:09:23.000Z" + }, + "end": { + "$date": "2021-08-16T15:10:23.000Z" + }, + "events": [ + { + "uuid": "13fc7c93-ff32-4d64-a4be-7428af963b23", + "start": { + "$date": "2021-08-16T15:09:23.000Z" + }, + "end": { + "$date": "2021-08-16T15:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "771730df-5946-42af-bdf1-f8cfceb50394", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T15:10:33.000Z" + }, + "end": { + "$date": "2021-08-16T17:08:43.000Z" + }, + "events": [ + { + "uuid": "12760514-25fc-4268-aa0a-11c18ea68c47", + "start": { + "$date": "2021-08-16T15:10:33.000Z" + }, + "end": { + "$date": "2021-08-16T16:02:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a11b1cb-264b-4d80-bec2-92aed18c16c1", + "start": { + "$date": "2021-08-16T16:02:33.000Z" + }, + "end": { + "$date": "2021-08-16T16:03:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "29d2376f-184c-4a0d-a95a-909496be5f36", + "start": { + "$date": "2021-08-16T16:03:33.000Z" + }, + "end": { + "$date": "2021-08-16T17:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a54f6954-2597-4400-974d-f4c808f21e0f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-16T15:27:55.000Z" + }, + "end": { + "$date": "2021-08-16T17:05:09.000Z" + }, + "events": [ + { + "uuid": "de01e8dd-6dcb-4041-9be0-37bb5818daff", + "start": { + "$date": "2021-08-16T15:27:55.000Z" + }, + "end": { + "$date": "2021-08-16T17:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "ea63bc19-53d9-4e5e-8be2-6ad373f68cb1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T15:35:04.000Z" + }, + "end": { + "$date": "2021-08-16T15:42:01.000Z" + }, + "events": [ + { + "uuid": "1dac2ec6-66a0-427a-87a2-01c2626d61f6", + "start": { + "$date": "2021-08-16T15:35:04.000Z" + }, + "end": { + "$date": "2021-08-16T15:42:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f25940c2-ef6a-4ae3-9e6e-30a446a3b86c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-16T17:05:33.000Z" + }, + "end": { + "$date": "2021-08-16T17:16:20.000Z" + }, + "events": [ + { + "uuid": "227d4b35-d990-4a65-af5a-901e7fdebf1e", + "start": { + "$date": "2021-08-16T17:05:33.000Z" + }, + "end": { + "$date": "2021-08-16T17:16:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", + "uuid": "dd09e0f2-4d47-4e73-9294-98cbccee494c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-16T17:20:05.000Z" + }, + "end": { + "$date": "2021-08-16T18:15:23.000Z" + }, + "events": [ + { + "uuid": "d6ae7726-5a68-4be6-9a91-6ccdbb680892", + "start": { + "$date": "2021-08-16T17:20:05.000Z" + }, + "end": { + "$date": "2021-08-16T18:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab3ac8b6-00b4-4854-8ff2-06e78616a0ab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-16T18:02:22.000Z" + }, + "end": { + "$date": "2021-08-16T18:33:30.000Z" + }, + "events": [ + { + "uuid": "40baef49-e1c7-4771-a480-749fcc9eca97", + "start": { + "$date": "2021-08-16T18:02:22.000Z" + }, + "end": { + "$date": "2021-08-16T18:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0edca088-5a32-4d56-bb14-4da55f68b95b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T18:02:53.000Z" + }, + "end": { + "$date": "2021-08-16T18:33:18.000Z" + }, + "events": [ + { + "uuid": "64898e51-cbf9-4980-b3bc-a8f0d10b31e9", + "start": { + "$date": "2021-08-16T18:02:53.000Z" + }, + "end": { + "$date": "2021-08-16T18:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "d485db5f-9733-4e8b-a5f8-841b4ddf848b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T18:15:52.000Z" + }, + "end": { + "$date": "2021-08-16T18:18:33.000Z" + }, + "events": [ + { + "uuid": "479f341f-c67e-4d4b-a2ba-cffd8e71fe0d", + "start": { + "$date": "2021-08-16T18:15:52.000Z" + }, + "end": { + "$date": "2021-08-16T18:18:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2fc7c3ad-d530-4b47-a0a6-c079f9592c4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-16T18:39:34.000Z" + }, + "end": { + "$date": "2021-08-16T19:26:19.000Z" + }, + "events": [ + { + "uuid": "d94220e0-e117-4d4b-9a98-7e855f47669a", + "start": { + "$date": "2021-08-16T18:39:34.000Z" + }, + "end": { + "$date": "2021-08-16T19:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "b38e0ff3-c864-40e0-9075-e8628977f182", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-16T19:54:00.000Z" + }, + "end": { + "$date": "2021-08-16T21:24:46.000Z" + }, + "events": [ + { + "uuid": "bf1f2ed6-f71d-4428-b752-2d0a2a962ebc", + "start": { + "$date": "2021-08-16T19:54:00.000Z" + }, + "end": { + "$date": "2021-08-16T21:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4dafaca7-bba3-4396-8ad5-20ae9b22edf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T20:12:07.000Z" + }, + "end": { + "$date": "2021-08-16T21:38:40.000Z" + }, + "events": [ + { + "uuid": "4a0770de-e702-459e-ac06-2d07ecc2f852", + "start": { + "$date": "2021-08-16T20:12:07.000Z" + }, + "end": { + "$date": "2021-08-16T21:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "484f1999-4fef-4253-92e1-61e10d3b5a97", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-16T21:36:43.000Z" + }, + "end": { + "$date": "2021-08-16T22:14:34.000Z" + }, + "events": [ + { + "uuid": "c9f8e787-734b-4376-942b-71892829a06b", + "start": { + "$date": "2021-08-16T21:36:43.000Z" + }, + "end": { + "$date": "2021-08-16T22:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a7871e94-b68c-4c68-b57d-db2f0ccf91d0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-16T21:46:28.000Z" + }, + "end": { + "$date": "2021-08-16T21:48:05.000Z" + }, + "events": [ + { + "uuid": "9f9c11ce-df3e-4834-91b8-cc974f43d2ec", + "start": { + "$date": "2021-08-16T21:46:28.000Z" + }, + "end": { + "$date": "2021-08-16T21:48:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "86f3df1a-1c37-4706-bfc8-1dc665333fd1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-16T21:49:23.000Z" + }, + "end": { + "$date": "2021-08-16T22:07:37.000Z" + }, + "events": [ + { + "uuid": "391de04a-c841-45ed-a2da-46bc8fac6063", + "start": { + "$date": "2021-08-16T21:49:23.000Z" + }, + "end": { + "$date": "2021-08-16T22:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "37a7642c-7d41-45a6-be59-1dfeb2f6e3d4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-16T22:06:03.000Z" + }, + "end": { + "$date": "2021-08-16T22:53:02.000Z" + }, + "events": [ + { + "uuid": "22c4950a-0f7e-4b89-95c9-876a6f541b33", + "start": { + "$date": "2021-08-16T22:06:03.000Z" + }, + "end": { + "$date": "2021-08-16T22:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "63030127-ec32-4a05-b5a7-1139bebf1d61", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-16T22:28:25.000Z" + }, + "end": { + "$date": "2021-08-16T23:22:17.000Z" + }, + "events": [ + { + "uuid": "10ac07b4-0473-4338-a8ca-156cfb1feb8f", + "start": { + "$date": "2021-08-16T22:28:25.000Z" + }, + "end": { + "$date": "2021-08-16T23:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd77d947-f54b-48b4-95e0-27d9555ce0fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-16T23:15:40.000Z" + }, + "end": { + "$date": "2021-08-16T23:44:50.000Z" + }, + "events": [ + { + "uuid": "c63e025e-7df3-4d5f-98ec-e5cf14e0c05f", + "start": { + "$date": "2021-08-16T23:15:40.000Z" + }, + "end": { + "$date": "2021-08-16T23:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "45c35d8a-2736-4990-9cf0-9af19167383b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T23:25:17.000Z" + }, + "end": { + "$date": "2021-08-16T23:27:53.000Z" + }, + "events": [ + { + "uuid": "0c410d0f-e8d7-4392-a221-7ce67c0f6055", + "start": { + "$date": "2021-08-16T23:25:17.000Z" + }, + "end": { + "$date": "2021-08-16T23:27:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "3069b5a3-5e37-4005-af93-07d0140279c5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T23:30:13.000Z" + }, + "end": { + "$date": "2021-08-16T23:56:18.000Z" + }, + "events": [ + { + "uuid": "765336ea-8e9f-4b65-ac9a-d59834262ba7", + "start": { + "$date": "2021-08-16T23:30:13.000Z" + }, + "end": { + "$date": "2021-08-16T23:56:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "2e750d4d-e0ff-461d-8395-f87b99bce2e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-16T23:57:07.000Z" + }, + "end": { + "$date": "2021-08-17T00:33:07.000Z" + }, + "events": [ + { + "uuid": "16df0d8b-4155-488b-b51a-ef024b749530", + "start": { + "$date": "2021-08-16T23:57:07.000Z" + }, + "end": { + "$date": "2021-08-17T00:33:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "65ef5805-5c46-44e5-971a-b10c3e432fa6", + "uuid": "ec75eba3-f6a6-44e7-8229-5cae447ab1b1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-17T01:03:06.000Z" + }, + "end": { + "$date": "2021-08-17T01:22:32.000Z" + }, + "events": [ + { + "uuid": "361993d3-5094-416b-aed2-2f755cfcc27b", + "start": { + "$date": "2021-08-17T01:03:06.000Z" + }, + "end": { + "$date": "2021-08-17T01:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "64a511f2-1c0e-4994-9132-c3cfb83d5ffc", + "uuid": "2a74a9b6-d8f0-42d6-b0d2-c4e0a67a8d3d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-17T01:58:10.000Z" + }, + "end": { + "$date": "2021-08-17T03:22:30.000Z" + }, + "events": [ + { + "uuid": "0eca3810-151d-433b-93d4-e77f9cd51d55", + "start": { + "$date": "2021-08-17T01:58:10.000Z" + }, + "end": { + "$date": "2021-08-17T03:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "62442b80-f7f1-4432-be31-a308a68a730b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-17T02:21:06.000Z" + }, + "end": { + "$date": "2021-08-17T02:49:22.000Z" + }, + "events": [ + { + "uuid": "0853de6a-82b4-4b67-a371-76ae45596c6d", + "start": { + "$date": "2021-08-17T02:21:06.000Z" + }, + "end": { + "$date": "2021-08-17T02:49:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "10c4e0cd-5942-4017-9b4d-bc99240e0fbe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-17T02:26:04.000Z" + }, + "end": { + "$date": "2021-08-17T02:38:51.000Z" + }, + "events": [ + { + "uuid": "ad7665a6-6ef7-4582-b581-f7d0c44e05f7", + "start": { + "$date": "2021-08-17T02:26:04.000Z" + }, + "end": { + "$date": "2021-08-17T02:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6947e78c-5bea-49ae-9c4d-06e7901fac83", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-17T02:46:42.000Z" + }, + "end": { + "$date": "2021-08-17T04:32:57.000Z" + }, + "events": [ + { + "uuid": "3fed3a78-3439-4449-8cdc-7729b821e7a0", + "start": { + "$date": "2021-08-17T02:46:42.000Z" + }, + "end": { + "$date": "2021-08-17T04:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "93f28899-45ee-47f9-b453-fc8ffde21b6c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-17T02:51:41.000Z" + }, + "end": { + "$date": "2021-08-17T02:57:05.000Z" + }, + "events": [ + { + "uuid": "60995186-8e24-44b0-b730-c25a198fb826", + "start": { + "$date": "2021-08-17T02:51:41.000Z" + }, + "end": { + "$date": "2021-08-17T02:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "168f84a8-a039-41b6-9291-31b582b029b6", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-17T03:00:31.000Z" + }, + "end": { + "$date": "2021-08-17T03:06:58.000Z" + }, + "events": [ + { + "uuid": "a3230140-8cb8-4bb6-b52a-603c18c5aad3", + "start": { + "$date": "2021-08-17T03:00:31.000Z" + }, + "end": { + "$date": "2021-08-17T03:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "50cf1dd0-5357-45f6-80ce-488af8b0a3e4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-17T03:02:07.000Z" + }, + "end": { + "$date": "2021-08-17T04:42:28.000Z" + }, + "events": [ + { + "uuid": "51431805-c224-4438-9ada-9e03e90b8b3a", + "start": { + "$date": "2021-08-17T03:02:07.000Z" + }, + "end": { + "$date": "2021-08-17T04:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "21e5e47a-bdb1-41fe-b064-9095665ec03a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-17T03:03:09.000Z" + }, + "end": { + "$date": "2021-08-17T04:00:51.000Z" + }, + "events": [ + { + "uuid": "6ea350e8-8727-4a79-a329-a0e1eb58183f", + "start": { + "$date": "2021-08-17T03:03:09.000Z" + }, + "end": { + "$date": "2021-08-17T04:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "426139a3-b34c-4d55-a7bc-c575bd5fe9d4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-17T03:07:02.000Z" + }, + "end": { + "$date": "2021-08-17T04:19:53.000Z" + }, + "events": [ + { + "uuid": "c45649a1-f6b6-4a3a-9c6b-15805c912fb8", + "start": { + "$date": "2021-08-17T03:07:02.000Z" + }, + "end": { + "$date": "2021-08-17T04:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "64a511f2-1c0e-4994-9132-c3cfb83d5ffc", + "uuid": "13c1463a-5aaa-4f26-bbfb-2ad77758d000", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-17T03:24:10.000Z" + }, + "end": { + "$date": "2021-08-17T03:30:56.000Z" + }, + "events": [ + { + "uuid": "d9c15895-7133-4c1f-b820-526004f9d253", + "start": { + "$date": "2021-08-17T03:24:10.000Z" + }, + "end": { + "$date": "2021-08-17T03:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "ea3283ea-bfbe-4ad5-b8f6-84761689ce9c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-17T03:34:52.000Z" + }, + "end": { + "$date": "2021-08-17T04:00:33.000Z" + }, + "events": [ + { + "uuid": "5eeb458e-e21e-465a-9b19-11e54feae478", + "start": { + "$date": "2021-08-17T03:34:52.000Z" + }, + "end": { + "$date": "2021-08-17T04:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "36805553-ba92-44c2-b4c5-c598b5c500f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-17T03:45:47.000Z" + }, + "end": { + "$date": "2021-08-17T03:52:45.000Z" + }, + "events": [ + { + "uuid": "7cb5d7f6-7367-432b-9aba-d811bd2713a9", + "start": { + "$date": "2021-08-17T03:45:47.000Z" + }, + "end": { + "$date": "2021-08-17T03:52:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3f70847e-f8fa-4696-994f-5e74e4790b2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-17T03:56:19.000Z" + }, + "end": { + "$date": "2021-08-17T05:01:25.000Z" + }, + "events": [ + { + "uuid": "c5cd4391-a553-458c-a667-c8236c3a59f7", + "start": { + "$date": "2021-08-17T03:56:19.000Z" + }, + "end": { + "$date": "2021-08-17T05:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88b69dbc-e1d6-4828-87d3-97078e3fe40e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-17T05:02:54.000Z" + }, + "end": { + "$date": "2021-08-17T05:04:11.000Z" + }, + "events": [ + { + "uuid": "db0ab336-faa3-4013-ab94-d3c6c86329ae", + "start": { + "$date": "2021-08-17T05:02:54.000Z" + }, + "end": { + "$date": "2021-08-17T05:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0c22e917-24fe-4ebe-9784-6c229df23c76", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-17T04:48:13.000Z" + }, + "end": { + "$date": "2021-08-17T05:16:19.000Z" + }, + "events": [ + { + "uuid": "5689a7dd-731a-46c0-9b68-24a4f1d01f8f", + "start": { + "$date": "2021-08-17T04:48:13.000Z" + }, + "end": { + "$date": "2021-08-17T05:16:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7e975923-8c2d-4329-bc7d-7c0235060840", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-16T22:34:42.000Z" + }, + "end": { + "$date": "2021-08-17T05:41:34.000Z" + }, + "events": [ + { + "uuid": "e3467977-9a86-47e6-8307-4832d8b3b268", + "start": { + "$date": "2021-08-16T22:34:42.000Z" + }, + "end": { + "$date": "2021-08-17T05:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94023d62-0d22-468c-a32b-34c06de50387", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-17T05:09:22.000Z" + }, + "end": { + "$date": "2021-08-17T05:26:24.000Z" + }, + "events": [ + { + "uuid": "ee9114fc-c94a-4cca-9b22-1882ba88e759", + "start": { + "$date": "2021-08-17T05:09:22.000Z" + }, + "end": { + "$date": "2021-08-17T05:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4fb6f16e-93e4-42fd-88d5-195ce62abacc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-17T05:27:37.000Z" + }, + "end": { + "$date": "2021-08-17T06:17:07.000Z" + }, + "events": [ + { + "uuid": "b3d8f8e5-c5c2-465e-ace0-631cd30b19a7", + "start": { + "$date": "2021-08-17T05:27:37.000Z" + }, + "end": { + "$date": "2021-08-17T06:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "afd66a5a-eb50-49e4-aa54-6a7f5a4b05f7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-17T05:27:57.000Z" + }, + "end": { + "$date": "2021-08-17T05:35:08.000Z" + }, + "events": [ + { + "uuid": "ca8bc3b9-b683-4e68-a9f1-7c253e1506bc", + "start": { + "$date": "2021-08-17T05:27:57.000Z" + }, + "end": { + "$date": "2021-08-17T05:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "ea0b4e30-a87e-4714-af1f-1c1387e87386", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-17T05:35:13.000Z" + }, + "end": { + "$date": "2021-08-17T06:46:21.000Z" + }, + "events": [ + { + "uuid": "9f055844-7ac5-4ba2-9416-22cc161f2a25", + "start": { + "$date": "2021-08-17T05:35:13.000Z" + }, + "end": { + "$date": "2021-08-17T06:46:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cdd8e10b-7a50-4959-9c18-05ffb7eb0ba5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-17T05:50:02.000Z" + }, + "end": { + "$date": "2021-08-17T06:35:18.000Z" + }, + "events": [ + { + "uuid": "efea91db-54ca-412a-a0c0-eef25903182d", + "start": { + "$date": "2021-08-17T05:50:02.000Z" + }, + "end": { + "$date": "2021-08-17T06:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "2ea0f4af-ebc3-466c-a781-9c9c5293588d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-17T16:15:26.000Z" + }, + "end": { + "$date": "2021-08-17T17:50:53.000Z" + }, + "events": [ + { + "uuid": "fce42e32-f86f-4895-80dc-49d6f6f53811", + "start": { + "$date": "2021-08-17T16:15:26.000Z" + }, + "end": { + "$date": "2021-08-17T17:50:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7039e4a2-d724-43a8-ba86-3817ad51c9fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-17T16:54:15.000Z" + }, + "end": { + "$date": "2021-08-17T17:28:45.000Z" + }, + "events": [ + { + "uuid": "c37e5f81-b9a1-4639-8da6-57387310d9e5", + "start": { + "$date": "2021-08-17T16:54:15.000Z" + }, + "end": { + "$date": "2021-08-17T17:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "971669e7-8e03-4b4c-922f-b60927c39ef1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-17T17:58:50.000Z" + }, + "end": { + "$date": "2021-08-17T19:03:09.000Z" + }, + "events": [ + { + "uuid": "fbd94087-6fd3-4aad-aba9-047b509982d5", + "start": { + "$date": "2021-08-17T17:58:50.000Z" + }, + "end": { + "$date": "2021-08-17T19:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "64c59c24-7d9c-4e16-9eb6-92cfa286aa34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-17T18:45:36.000Z" + }, + "end": { + "$date": "2021-08-17T19:28:47.000Z" + }, + "events": [ + { + "uuid": "98da0c92-55d2-4c3f-918f-344a816bf37b", + "start": { + "$date": "2021-08-17T18:45:36.000Z" + }, + "end": { + "$date": "2021-08-17T19:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "aa68052e-ad15-4dbf-92c8-d37b3c33b07b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-17T20:58:07.000Z" + }, + "end": { + "$date": "2021-08-17T21:54:39.000Z" + }, + "events": [ + { + "uuid": "55cf178c-9605-4b2b-a3a5-8ae5a93209e4", + "start": { + "$date": "2021-08-17T20:58:07.000Z" + }, + "end": { + "$date": "2021-08-17T21:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "412e4bb5-1e2d-4e37-9fe1-3f9d0825e9b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-17T21:56:24.000Z" + }, + "end": { + "$date": "2021-08-17T22:56:53.000Z" + }, + "events": [ + { + "uuid": "d298b5a2-c788-4d93-ab2c-567984020c8c", + "start": { + "$date": "2021-08-17T21:56:24.000Z" + }, + "end": { + "$date": "2021-08-17T22:56:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "476d707e-8301-4e66-a3b0-485f5dd917ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-17T22:26:25.000Z" + }, + "end": { + "$date": "2021-08-17T23:01:24.000Z" + }, + "events": [ + { + "uuid": "b832885c-bc52-4f45-9dc1-2926b6672b60", + "start": { + "$date": "2021-08-17T22:26:25.000Z" + }, + "end": { + "$date": "2021-08-17T23:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "501f368f-9e92-46d0-8647-774256d0351e", + "uuid": "4c292c81-6e2b-4ff9-beb2-7f93ee67c08d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-17T22:36:17.000Z" + }, + "end": { + "$date": "2021-08-17T23:01:21.000Z" + }, + "events": [ + { + "uuid": "b6c51301-bbe5-46c4-b9d6-be5a605143b9", + "start": { + "$date": "2021-08-17T22:36:17.000Z" + }, + "end": { + "$date": "2021-08-17T23:01:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ff63570d-692e-46aa-b7ad-5e0fe8daa9b1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-18T00:25:21.000Z" + }, + "end": { + "$date": "2021-08-18T06:02:36.000Z" + }, + "events": [ + { + "uuid": "605bdbd1-c05d-4ac7-ae17-0d7c62a7543d", + "start": { + "$date": "2021-08-18T00:25:21.000Z" + }, + "end": { + "$date": "2021-08-18T06:02:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "37c2dcfa-3d70-4816-8940-8774c701fc4a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-18T01:42:29.000Z" + }, + "end": { + "$date": "2021-08-18T03:24:55.000Z" + }, + "events": [ + { + "uuid": "fd815e7c-6ead-4d0c-94c0-6a4488407e56", + "start": { + "$date": "2021-08-18T01:42:29.000Z" + }, + "end": { + "$date": "2021-08-18T03:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bead1f9-e71b-43fe-a426-1598c419aaca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-18T02:06:42.000Z" + }, + "end": { + "$date": "2021-08-18T02:30:27.000Z" + }, + "events": [ + { + "uuid": "3c5ff544-5068-4db9-9a29-23972e089d55", + "start": { + "$date": "2021-08-18T02:06:42.000Z" + }, + "end": { + "$date": "2021-08-18T02:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "121175ee-e2d6-4c20-804f-3c841765b8cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-18T02:06:47.000Z" + }, + "end": { + "$date": "2021-08-18T02:30:23.000Z" + }, + "events": [ + { + "uuid": "32064ed9-ba2b-494c-b325-e4d3944eb0ee", + "start": { + "$date": "2021-08-18T02:06:47.000Z" + }, + "end": { + "$date": "2021-08-18T02:30:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4d9e17d-4521-4a7d-b873-1d2b7918e678", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-18T02:07:50.000Z" + }, + "end": { + "$date": "2021-08-18T02:30:26.000Z" + }, + "events": [ + { + "uuid": "fc5a4194-10ae-4263-b29f-f643c0a2205c", + "start": { + "$date": "2021-08-18T02:07:50.000Z" + }, + "end": { + "$date": "2021-08-18T02:30:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "11741bff-50f5-41d6-99c1-3da001d469ad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-18T02:04:31.000Z" + }, + "end": { + "$date": "2021-08-18T03:03:32.000Z" + }, + "events": [ + { + "uuid": "615c59e3-b177-4b01-80ae-bfb4353a3c7d", + "start": { + "$date": "2021-08-18T02:04:31.000Z" + }, + "end": { + "$date": "2021-08-18T03:03:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f1b823a-60d8-4b64-a3d6-572ffc48c825", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-18T02:30:56.000Z" + }, + "end": { + "$date": "2021-08-18T02:33:01.000Z" + }, + "events": [ + { + "uuid": "d354bcc3-2133-4b92-980f-01e5b8d7b948", + "start": { + "$date": "2021-08-18T02:30:56.000Z" + }, + "end": { + "$date": "2021-08-18T02:33:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c31fc410-32be-4c93-925f-0b0f525b7a41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-18T02:37:17.000Z" + }, + "end": { + "$date": "2021-08-18T02:59:18.000Z" + }, + "events": [ + { + "uuid": "04e3a12a-ec41-42a4-ac08-58481fe62973", + "start": { + "$date": "2021-08-18T02:37:17.000Z" + }, + "end": { + "$date": "2021-08-18T02:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61a69bed-0ee8-462d-a385-1e761c1c41e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-18T02:37:19.000Z" + }, + "end": { + "$date": "2021-08-18T02:59:20.000Z" + }, + "events": [ + { + "uuid": "79f651ae-07e5-4a43-9b38-28d448c49c89", + "start": { + "$date": "2021-08-18T02:37:19.000Z" + }, + "end": { + "$date": "2021-08-18T02:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b1349b9-80b9-450f-954e-ab354f6223b4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-18T02:37:16.000Z" + }, + "end": { + "$date": "2021-08-18T02:59:30.000Z" + }, + "events": [ + { + "uuid": "9d52f28a-2406-4c0b-aa5d-6f4eeb600770", + "start": { + "$date": "2021-08-18T02:37:16.000Z" + }, + "end": { + "$date": "2021-08-18T02:59:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "033f98f0-8089-4d6e-82ba-b23568a1d6b0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-18T03:01:35.000Z" + }, + "end": { + "$date": "2021-08-18T04:26:05.000Z" + }, + "events": [ + { + "uuid": "1eeaf678-ac4e-4cd4-aac7-98a839b894e4", + "start": { + "$date": "2021-08-18T03:01:35.000Z" + }, + "end": { + "$date": "2021-08-18T04:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65ef5805-5c46-44e5-971a-b10c3e432fa6", + "uuid": "3b28cd0c-3fa5-46e4-963a-206d47505e3b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-18T03:11:46.000Z" + }, + "end": { + "$date": "2021-08-18T09:59:14.000Z" + }, + "events": [ + { + "uuid": "5dc17e7b-2c01-47ce-9ebd-e601305ee44e", + "start": { + "$date": "2021-08-18T03:11:46.000Z" + }, + "end": { + "$date": "2021-08-18T09:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "55ceef81-79bc-4f0c-a480-90c7f32cb44a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-18T03:47:03.000Z" + }, + "end": { + "$date": "2021-08-18T05:45:19.000Z" + }, + "events": [ + { + "uuid": "919d1e75-8d00-473a-b979-d35f94719cc3", + "start": { + "$date": "2021-08-18T03:47:03.000Z" + }, + "end": { + "$date": "2021-08-18T05:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "912d7da5-2e6f-4dd0-ac68-5df7051c9594", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-18T04:16:36.000Z" + }, + "end": { + "$date": "2021-08-18T04:36:08.000Z" + }, + "events": [ + { + "uuid": "1c5bd2ea-6d6b-46ad-88ce-588dc3103f19", + "start": { + "$date": "2021-08-18T04:16:36.000Z" + }, + "end": { + "$date": "2021-08-18T04:36:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5b9b1e7-6eea-4aa2-af55-7fc0bf1e6ea7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-18T04:49:00.000Z" + }, + "end": { + "$date": "2021-08-18T05:18:33.000Z" + }, + "events": [ + { + "uuid": "458dc3ad-ba29-4fa3-a75b-0226f509dfa1", + "start": { + "$date": "2021-08-18T04:49:00.000Z" + }, + "end": { + "$date": "2021-08-18T05:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19164791-f782-4e10-b0ef-cfe695c5341a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-18T05:23:19.000Z" + }, + "end": { + "$date": "2021-08-18T05:53:02.000Z" + }, + "events": [ + { + "uuid": "1b318d48-6262-4736-86ec-938714a7f083", + "start": { + "$date": "2021-08-18T05:23:19.000Z" + }, + "end": { + "$date": "2021-08-18T05:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "39e70e72-3e38-4518-8912-bad040c773f3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-18T05:24:56.000Z" + }, + "end": { + "$date": "2021-08-18T06:39:51.000Z" + }, + "events": [ + { + "uuid": "cfaf17a7-c009-44e0-9a94-16a7b259548d", + "start": { + "$date": "2021-08-18T05:24:56.000Z" + }, + "end": { + "$date": "2021-08-18T06:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "b1752814-9332-4b39-b4e7-cc33bede8820", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-18T14:53:30.000Z" + }, + "end": { + "$date": "2021-08-18T15:52:41.000Z" + }, + "events": [ + { + "uuid": "4163bb0d-49c1-4c68-acb1-5c6094e12528", + "start": { + "$date": "2021-08-18T14:53:30.000Z" + }, + "end": { + "$date": "2021-08-18T15:52:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "2d53bdd0-bf9b-4084-8a77-34a787b05f18", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-18T15:53:27.000Z" + }, + "end": { + "$date": "2021-08-18T16:04:03.000Z" + }, + "events": [ + { + "uuid": "9047b7f8-8c66-4706-b616-88c53c91c25b", + "start": { + "$date": "2021-08-18T15:53:27.000Z" + }, + "end": { + "$date": "2021-08-18T16:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0ec02587-4fb1-4b70-91a6-a96e2ff909c5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-18T16:09:00.000Z" + }, + "end": { + "$date": "2021-08-18T16:16:40.000Z" + }, + "events": [ + { + "uuid": "3007158f-065e-4143-967c-26eb073aa5fa", + "start": { + "$date": "2021-08-18T16:09:00.000Z" + }, + "end": { + "$date": "2021-08-18T16:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "39198b1b-6592-4587-816d-9b2cc9948af7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-18T17:28:03.000Z" + }, + "end": { + "$date": "2021-08-18T18:00:16.000Z" + }, + "events": [ + { + "uuid": "a61b2c08-fcb7-4afc-b901-8fc9ac7bcf26", + "start": { + "$date": "2021-08-18T17:28:03.000Z" + }, + "end": { + "$date": "2021-08-18T18:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bee31fab-b6bd-42a4-9652-ad048c6b488d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-18T18:24:22.000Z" + }, + "end": { + "$date": "2021-08-18T18:45:13.000Z" + }, + "events": [ + { + "uuid": "369fde4c-b0b6-4e24-87cc-f12d5d738a39", + "start": { + "$date": "2021-08-18T18:24:22.000Z" + }, + "end": { + "$date": "2021-08-18T18:45:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "da446e4e-684d-4559-9c8b-0dc171d98724", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-18T18:38:31.000Z" + }, + "end": { + "$date": "2021-08-18T18:55:22.000Z" + }, + "events": [ + { + "uuid": "33a9c10d-df58-4421-9556-87f3c9d1a190", + "start": { + "$date": "2021-08-18T18:38:31.000Z" + }, + "end": { + "$date": "2021-08-18T18:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9407d54-e03e-4568-9907-43230a55f36e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-18T18:46:48.000Z" + }, + "end": { + "$date": "2021-08-18T19:01:29.000Z" + }, + "events": [ + { + "uuid": "8eb886ef-1658-43e8-88c3-50409ee7ba31", + "start": { + "$date": "2021-08-18T18:46:48.000Z" + }, + "end": { + "$date": "2021-08-18T19:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0451b740-0307-4fd2-bf3f-096ec3a54701", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-18T19:05:03.000Z" + }, + "end": { + "$date": "2021-08-18T19:27:54.000Z" + }, + "events": [ + { + "uuid": "19561f44-e100-40fd-a226-2c135639de0c", + "start": { + "$date": "2021-08-18T19:05:03.000Z" + }, + "end": { + "$date": "2021-08-18T19:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "501f368f-9e92-46d0-8647-774256d0351e", + "uuid": "3f4b81db-847b-4835-8b9a-623cd39b8fdf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-18T20:35:00.000Z" + }, + "end": { + "$date": "2021-08-18T21:23:12.000Z" + }, + "events": [ + { + "uuid": "84ead3cd-1e83-4574-9203-66744470875f", + "start": { + "$date": "2021-08-18T20:35:00.000Z" + }, + "end": { + "$date": "2021-08-18T21:23:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "501f368f-9e92-46d0-8647-774256d0351e", + "uuid": "0bd4eeb1-fcac-4be0-8e44-ed746ef45ccd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-18T21:23:17.000Z" + }, + "end": { + "$date": "2021-08-18T22:27:24.000Z" + }, + "events": [ + { + "uuid": "3cbc4f82-392a-4de8-a043-b5985cc65d9e", + "start": { + "$date": "2021-08-18T21:23:17.000Z" + }, + "end": { + "$date": "2021-08-18T22:27:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "933a7d24-1168-49e6-837b-fcd4caa6a1d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-18T22:13:48.000Z" + }, + "end": { + "$date": "2021-08-18T22:15:27.000Z" + }, + "events": [ + { + "uuid": "26ea202d-99ed-4815-9acf-f066a07fcea0", + "start": { + "$date": "2021-08-18T22:13:48.000Z" + }, + "end": { + "$date": "2021-08-18T22:15:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "408e38c8-c468-4766-af67-bcabfc882db9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-18T22:31:16.000Z" + }, + "end": { + "$date": "2021-08-18T22:44:32.000Z" + }, + "events": [ + { + "uuid": "3725833c-c03a-4d2d-9179-e1aebdb7d4cd", + "start": { + "$date": "2021-08-18T22:31:16.000Z" + }, + "end": { + "$date": "2021-08-18T22:44:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "525d3056-71ca-4222-b4d5-b345c50d04d6", + "uuid": "38d29420-2bdb-4462-a1b1-c4c64a9cde4a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-18T23:41:12.000Z" + }, + "end": { + "$date": "2021-08-18T23:43:13.000Z" + }, + "events": [ + { + "uuid": "c4ca6fbc-bbd1-4e2c-b617-41578fa43875", + "start": { + "$date": "2021-08-18T23:41:12.000Z" + }, + "end": { + "$date": "2021-08-18T23:43:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "525d3056-71ca-4222-b4d5-b345c50d04d6", + "uuid": "4c91998f-e875-4aee-ac71-b503f962a847", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-18T23:43:17.000Z" + }, + "end": { + "$date": "2021-08-18T23:51:43.000Z" + }, + "events": [ + { + "uuid": "d738bf7e-b32c-41e1-ad8d-70a83602a316", + "start": { + "$date": "2021-08-18T23:43:17.000Z" + }, + "end": { + "$date": "2021-08-18T23:51:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6706d57-95ef-4886-ad9a-5d99c959090e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-18T23:52:39.000Z" + }, + "end": { + "$date": "2021-08-19T00:15:10.000Z" + }, + "events": [ + { + "uuid": "69d74f8d-708e-47e1-b635-dc5dee2b2d71", + "start": { + "$date": "2021-08-18T23:52:39.000Z" + }, + "end": { + "$date": "2021-08-19T00:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35740e21-0e84-44f4-bad0-bddd33dd3bdc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-19T00:20:10.000Z" + }, + "end": { + "$date": "2021-08-19T00:39:12.000Z" + }, + "events": [ + { + "uuid": "6152577c-9656-459e-bdea-88bdb85826f1", + "start": { + "$date": "2021-08-19T00:20:10.000Z" + }, + "end": { + "$date": "2021-08-19T00:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee229462-3cb5-4f51-b491-a9faaf629ba3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-19T00:21:03.000Z" + }, + "end": { + "$date": "2021-08-19T00:39:09.000Z" + }, + "events": [ + { + "uuid": "c96b7c8a-f88a-4789-90fb-4b33bbeea131", + "start": { + "$date": "2021-08-19T00:21:03.000Z" + }, + "end": { + "$date": "2021-08-19T00:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "765e6ab8-b40d-47c5-9050-efb3b1ec7377", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T00:20:00.000Z" + }, + "end": { + "$date": "2021-08-19T00:39:06.000Z" + }, + "events": [ + { + "uuid": "40672770-6c97-45f1-a50e-03a2cc9365b9", + "start": { + "$date": "2021-08-19T00:20:00.000Z" + }, + "end": { + "$date": "2021-08-19T00:39:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0d4aa38c-2cb6-4c35-86df-58caffdebca9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-19T00:10:47.000Z" + }, + "end": { + "$date": "2021-08-19T06:11:54.000Z" + }, + "events": [ + { + "uuid": "3f287d2d-e3ba-40a6-a09e-62a39c9004b3", + "start": { + "$date": "2021-08-19T00:10:47.000Z" + }, + "end": { + "$date": "2021-08-19T01:19:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9a2136a-3071-4ec5-a778-c29257b0d1fe", + "start": { + "$date": "2021-08-19T01:19:47.000Z" + }, + "end": { + "$date": "2021-08-19T01:24:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "119d9b32-1e82-4178-8ea7-f3b24a79c332", + "start": { + "$date": "2021-08-19T01:24:47.000Z" + }, + "end": { + "$date": "2021-08-19T03:58:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "42bd05e2-44b8-4c8e-9ff1-7b93e797d86d", + "start": { + "$date": "2021-08-19T03:58:47.000Z" + }, + "end": { + "$date": "2021-08-19T04:00:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "54d2b1a7-a7e9-43be-ae78-05947d4e096d", + "start": { + "$date": "2021-08-19T04:00:47.000Z" + }, + "end": { + "$date": "2021-08-19T06:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "118b0b5e-4862-4bb4-808b-e726258710a0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-19T00:43:07.000Z" + }, + "end": { + "$date": "2021-08-19T01:03:42.000Z" + }, + "events": [ + { + "uuid": "6bb85699-cfc4-4297-a04f-6cd39b76f43f", + "start": { + "$date": "2021-08-19T00:43:07.000Z" + }, + "end": { + "$date": "2021-08-19T01:03:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9a780ed-e205-446b-b92f-316176e122eb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T00:43:55.000Z" + }, + "end": { + "$date": "2021-08-19T01:03:37.000Z" + }, + "events": [ + { + "uuid": "dca4b207-7d94-492b-8743-d067ff0399d4", + "start": { + "$date": "2021-08-19T00:43:55.000Z" + }, + "end": { + "$date": "2021-08-19T01:03:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdf719c9-f707-45e4-b891-45b691a0a6ca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-19T00:43:48.000Z" + }, + "end": { + "$date": "2021-08-19T01:03:34.000Z" + }, + "events": [ + { + "uuid": "96744cd8-7376-4269-a5bb-5c1d95b63fa5", + "start": { + "$date": "2021-08-19T00:43:48.000Z" + }, + "end": { + "$date": "2021-08-19T01:03:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ccd6a0c-2484-43be-94fd-08e88130d13d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-19T01:04:06.000Z" + }, + "end": { + "$date": "2021-08-19T01:06:13.000Z" + }, + "events": [ + { + "uuid": "4133f15c-8afb-4374-b088-684a6ca52007", + "start": { + "$date": "2021-08-19T01:04:06.000Z" + }, + "end": { + "$date": "2021-08-19T01:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "208db65c-043b-455a-9398-2763e923728d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-19T01:04:07.000Z" + }, + "end": { + "$date": "2021-08-19T01:06:15.000Z" + }, + "events": [ + { + "uuid": "df6c02e0-6169-42d6-b716-0aea8bcc3b50", + "start": { + "$date": "2021-08-19T01:04:07.000Z" + }, + "end": { + "$date": "2021-08-19T01:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4efc88c-8464-498b-922a-85639e14d6da", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T01:04:07.000Z" + }, + "end": { + "$date": "2021-08-19T01:06:15.000Z" + }, + "events": [ + { + "uuid": "ab245dc5-a0aa-45cc-b289-9c124b0427ed", + "start": { + "$date": "2021-08-19T01:04:07.000Z" + }, + "end": { + "$date": "2021-08-19T01:06:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "720ca966-27c1-4091-8ed5-5184dfac3d7e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T01:06:24.000Z" + }, + "end": { + "$date": "2021-08-19T01:07:37.000Z" + }, + "events": [ + { + "uuid": "dc133c85-90bd-4d09-8191-54dadeea5a88", + "start": { + "$date": "2021-08-19T01:06:24.000Z" + }, + "end": { + "$date": "2021-08-19T01:07:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "6e0b90d4-c0af-4e20-84ef-7d6e04631d71", + "uuid": "b189a441-892b-46cd-af17-36af54b24ee3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T01:34:03.000Z" + }, + "end": { + "$date": "2021-08-19T01:36:43.000Z" + }, + "events": [ + { + "uuid": "53518523-37c6-4729-aca9-f9f4101545f0", + "start": { + "$date": "2021-08-19T01:34:03.000Z" + }, + "end": { + "$date": "2021-08-19T01:36:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "52b2cc5c-2406-418e-aa39-33db0cae4f0c", + "uuid": "edc25526-6252-45c0-af5a-ec4cdba56d8a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T01:38:28.000Z" + }, + "end": { + "$date": "2021-08-19T01:56:59.000Z" + }, + "events": [ + { + "uuid": "82e03ab6-23d2-4a64-8d04-f4f69596d9cd", + "start": { + "$date": "2021-08-19T01:38:28.000Z" + }, + "end": { + "$date": "2021-08-19T01:56:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e70487c7-e598-4be7-ad6f-8440a59b258f", + "uuid": "be30df52-ce0c-4157-930d-0fb40a0d380a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T01:57:08.000Z" + }, + "end": { + "$date": "2021-08-19T02:06:06.000Z" + }, + "events": [ + { + "uuid": "3e772d60-ddf4-4986-81fb-917250545674", + "start": { + "$date": "2021-08-19T01:57:08.000Z" + }, + "end": { + "$date": "2021-08-19T02:06:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "13b230c4-0b8c-4402-a47c-312ec8dd062c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T02:19:03.000Z" + }, + "end": { + "$date": "2021-08-19T03:02:37.000Z" + }, + "events": [ + { + "uuid": "f2e86924-d830-4686-b716-d635a60feac9", + "start": { + "$date": "2021-08-19T02:19:03.000Z" + }, + "end": { + "$date": "2021-08-19T03:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "902beab4-6ff3-40c3-b43e-e9e27d194ea2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-19T02:36:38.000Z" + }, + "end": { + "$date": "2021-08-19T06:28:11.000Z" + }, + "events": [ + { + "uuid": "396801e1-dc11-453d-8eed-f044bb5f8c9e", + "start": { + "$date": "2021-08-19T02:36:38.000Z" + }, + "end": { + "$date": "2021-08-19T02:59:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f78c1125-c30e-42e6-8a86-18c16420ffd1", + "start": { + "$date": "2021-08-19T02:59:38.000Z" + }, + "end": { + "$date": "2021-08-19T03:04:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5fe32715-96fb-4af9-af97-e7a3fe4741a1", + "start": { + "$date": "2021-08-19T03:04:38.000Z" + }, + "end": { + "$date": "2021-08-19T03:06:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "61e6e0d5-f385-47ac-b347-824bcf47615a", + "start": { + "$date": "2021-08-19T03:06:38.000Z" + }, + "end": { + "$date": "2021-08-19T03:07:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "32b4bf47-c86a-4176-9f57-cfbc94815676", + "start": { + "$date": "2021-08-19T03:07:38.000Z" + }, + "end": { + "$date": "2021-08-19T03:09:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b3c8f2d6-5cf3-45f6-a3f5-815b8735c386", + "start": { + "$date": "2021-08-19T03:09:38.000Z" + }, + "end": { + "$date": "2021-08-19T03:12:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f51f2fe5-cd10-4dcf-9266-0e87164f0525", + "start": { + "$date": "2021-08-19T03:12:38.000Z" + }, + "end": { + "$date": "2021-08-19T06:28:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "43cd1d80-4125-4cc5-9181-fcecedd6469c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-19T03:31:56.000Z" + }, + "end": { + "$date": "2021-08-19T04:11:27.000Z" + }, + "events": [ + { + "uuid": "c5aa5cb8-1d35-4d85-bcfc-17518e2702cf", + "start": { + "$date": "2021-08-19T03:31:56.000Z" + }, + "end": { + "$date": "2021-08-19T04:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6df53a3a-9acb-4166-8416-d0edd92306d5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-19T03:55:30.000Z" + }, + "end": { + "$date": "2021-08-19T05:01:39.000Z" + }, + "events": [ + { + "uuid": "5ecd4cda-59a9-4021-a646-8e0ab01011e5", + "start": { + "$date": "2021-08-19T03:55:30.000Z" + }, + "end": { + "$date": "2021-08-19T05:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f9b199be-fe1b-4906-b62e-1086a19fd4ca", + "uuid": "4f207a6c-4038-4453-a616-85ce791f374c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T04:28:00.000Z" + }, + "end": { + "$date": "2021-08-19T04:29:29.000Z" + }, + "events": [ + { + "uuid": "aab355b8-f4b7-4333-987e-340b1612f402", + "start": { + "$date": "2021-08-19T04:28:00.000Z" + }, + "end": { + "$date": "2021-08-19T04:29:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f9b199be-fe1b-4906-b62e-1086a19fd4ca", + "uuid": "2eb42f45-1cce-4a85-a764-05b130f90947", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T04:29:35.000Z" + }, + "end": { + "$date": "2021-08-19T05:07:48.000Z" + }, + "events": [ + { + "uuid": "903f8abe-2a7c-48b5-842b-9264c1be5c4d", + "start": { + "$date": "2021-08-19T04:29:35.000Z" + }, + "end": { + "$date": "2021-08-19T05:07:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "580c03ab-ace7-422b-92be-d3b83f99a206", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-19T05:02:11.000Z" + }, + "end": { + "$date": "2021-08-19T05:33:50.000Z" + }, + "events": [ + { + "uuid": "c9025fef-e1d6-40a3-b5ec-8e33bde477cb", + "start": { + "$date": "2021-08-19T05:02:11.000Z" + }, + "end": { + "$date": "2021-08-19T05:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "360ffaf3-ca90-40a5-97cf-9cf08623e083", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-19T05:34:08.000Z" + }, + "end": { + "$date": "2021-08-19T05:35:50.000Z" + }, + "events": [ + { + "uuid": "b0286892-cd74-417e-97d2-2491c1cfbba4", + "start": { + "$date": "2021-08-19T05:34:08.000Z" + }, + "end": { + "$date": "2021-08-19T05:35:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae68c40e-3a7b-4820-8e00-03fb1fdf99a4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-19T05:45:46.000Z" + }, + "end": { + "$date": "2021-08-19T06:13:10.000Z" + }, + "events": [ + { + "uuid": "d1e1b8ba-6e43-4984-9b4e-0ed255abc62d", + "start": { + "$date": "2021-08-19T05:45:46.000Z" + }, + "end": { + "$date": "2021-08-19T06:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f442c527-2442-4072-8a44-eff80b828a47", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-19T06:31:22.000Z" + }, + "end": { + "$date": "2021-08-19T07:16:17.000Z" + }, + "events": [ + { + "uuid": "d2db2560-e666-4b5b-9cec-6d88a7de398d", + "start": { + "$date": "2021-08-19T06:31:22.000Z" + }, + "end": { + "$date": "2021-08-19T07:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3167b976-2e22-4f28-a1cb-56674d7a5d44", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-19T07:18:05.000Z" + }, + "end": { + "$date": "2021-08-19T07:34:22.000Z" + }, + "events": [ + { + "uuid": "0cc33e00-b592-489a-9b0a-a7806c4ce76f", + "start": { + "$date": "2021-08-19T07:18:05.000Z" + }, + "end": { + "$date": "2021-08-19T07:34:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2284483d-fff2-4c14-aa8e-8d3fd19af360", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-19T12:47:30.000Z" + }, + "end": { + "$date": "2021-08-19T12:58:13.000Z" + }, + "events": [ + { + "uuid": "3d7aeb04-da81-4dfd-a54e-ad11b30237a7", + "start": { + "$date": "2021-08-19T12:47:30.000Z" + }, + "end": { + "$date": "2021-08-19T12:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "577aabad-e2cd-44d7-ab2e-eaa431895c81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-19T15:57:29.000Z" + }, + "end": { + "$date": "2021-08-19T16:20:49.000Z" + }, + "events": [ + { + "uuid": "962c2d73-8e79-43f3-ba13-dd6be5b42090", + "start": { + "$date": "2021-08-19T15:57:29.000Z" + }, + "end": { + "$date": "2021-08-19T16:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "321f61f2-3248-4726-9de7-3d42c26aaa4b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-19T16:24:14.000Z" + }, + "end": { + "$date": "2021-08-19T17:23:47.000Z" + }, + "events": [ + { + "uuid": "89f15ed8-be0a-4a9c-802f-1f857754203f", + "start": { + "$date": "2021-08-19T16:24:14.000Z" + }, + "end": { + "$date": "2021-08-19T17:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "716ea75e-6a14-4a9b-a24c-4fc57e0ac17f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-19T17:50:38.000Z" + }, + "end": { + "$date": "2021-08-19T22:04:52.000Z" + }, + "events": [ + { + "uuid": "c6f1a955-9d64-41fc-af66-94559aa813b3", + "start": { + "$date": "2021-08-19T17:50:38.000Z" + }, + "end": { + "$date": "2021-08-19T22:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "68362e26-f478-4881-8fb5-f12c70f49a84", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-19T19:03:48.000Z" + }, + "end": { + "$date": "2021-08-19T20:42:04.000Z" + }, + "events": [ + { + "uuid": "7e96af2f-ec2d-4fe2-9b60-40c5d7e764af", + "start": { + "$date": "2021-08-19T19:03:48.000Z" + }, + "end": { + "$date": "2021-08-19T20:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92a7eaaa-18f5-4af5-b6fa-c38998e4346e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-19T19:31:28.000Z" + }, + "end": { + "$date": "2021-08-19T19:58:08.000Z" + }, + "events": [ + { + "uuid": "9c94c08e-e928-4fcd-a0ea-1e1996cfe892", + "start": { + "$date": "2021-08-19T19:31:28.000Z" + }, + "end": { + "$date": "2021-08-19T19:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ebb8bf1-d173-4340-951e-ed9d4e4ed887", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-19T20:03:34.000Z" + }, + "end": { + "$date": "2021-08-19T20:38:16.000Z" + }, + "events": [ + { + "uuid": "85fd41ab-0a21-4a9e-a9d3-315414a01a02", + "start": { + "$date": "2021-08-19T20:03:34.000Z" + }, + "end": { + "$date": "2021-08-19T20:38:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "1070b03b-017b-4d65-98f4-1a2c8a6134f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T22:23:38.000Z" + }, + "end": { + "$date": "2021-08-19T22:30:38.000Z" + }, + "events": [ + { + "uuid": "ca6f200a-973f-4bdf-9ee9-618fca687afa", + "start": { + "$date": "2021-08-19T22:23:38.000Z" + }, + "end": { + "$date": "2021-08-19T22:30:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "3435ce3e-1406-492d-9cfa-bf46aba9fe07", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T22:30:44.000Z" + }, + "end": { + "$date": "2021-08-19T22:34:09.000Z" + }, + "events": [ + { + "uuid": "bc07e406-8cdf-49fa-ac13-98a04bb155e2", + "start": { + "$date": "2021-08-19T22:30:44.000Z" + }, + "end": { + "$date": "2021-08-19T22:34:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "98daf0a6-19ec-437a-832b-a01aea7ef0bd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T22:37:44.000Z" + }, + "end": { + "$date": "2021-08-19T22:39:04.000Z" + }, + "events": [ + { + "uuid": "ba841cfe-5649-41a3-b33b-1654125216fd", + "start": { + "$date": "2021-08-19T22:37:44.000Z" + }, + "end": { + "$date": "2021-08-19T22:39:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "ddee5edf-daad-4a9e-8920-0dcc4b0b3277", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T22:39:15.000Z" + }, + "end": { + "$date": "2021-08-19T22:41:34.000Z" + }, + "events": [ + { + "uuid": "4e5d7b15-66a9-49c7-8aed-2bbcb5ffc230", + "start": { + "$date": "2021-08-19T22:39:15.000Z" + }, + "end": { + "$date": "2021-08-19T22:41:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "fc18f96d-1865-480e-a4c5-1e73258dbc8a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T22:42:10.000Z" + }, + "end": { + "$date": "2021-08-19T22:45:20.000Z" + }, + "events": [ + { + "uuid": "db701dad-04ea-4323-afac-24dce02cd23d", + "start": { + "$date": "2021-08-19T22:42:10.000Z" + }, + "end": { + "$date": "2021-08-19T22:45:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", + "uuid": "e7075fd1-4787-4a98-b070-dca1283ef89d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-19T22:45:25.000Z" + }, + "end": { + "$date": "2021-08-20T00:43:23.000Z" + }, + "events": [ + { + "uuid": "ae512b4e-4457-4863-b6a1-f8af4390e703", + "start": { + "$date": "2021-08-19T22:45:25.000Z" + }, + "end": { + "$date": "2021-08-20T00:43:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "29a83ab6-63fa-453b-8ba2-6f3d2fa18f0b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T22:48:43.000Z" + }, + "end": { + "$date": "2021-08-19T23:02:00.000Z" + }, + "events": [ + { + "uuid": "45a2978d-18a9-434e-8bef-bd245a433d6e", + "start": { + "$date": "2021-08-19T22:48:43.000Z" + }, + "end": { + "$date": "2021-08-19T23:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "27482b8e-02e7-46f7-8bb4-20ab2fc8658b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T23:03:45.000Z" + }, + "end": { + "$date": "2021-08-19T23:15:46.000Z" + }, + "events": [ + { + "uuid": "b5660cba-a915-49ab-abff-d89169315aa5", + "start": { + "$date": "2021-08-19T23:03:45.000Z" + }, + "end": { + "$date": "2021-08-19T23:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "994bd05c-8ba9-45f1-98a3-1603fb087ce0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T23:16:06.000Z" + }, + "end": { + "$date": "2021-08-19T23:22:27.000Z" + }, + "events": [ + { + "uuid": "18b20182-7ded-4442-9127-f43b7e8d0427", + "start": { + "$date": "2021-08-19T23:16:06.000Z" + }, + "end": { + "$date": "2021-08-19T23:22:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "4131ddf6-3f19-4257-8e60-ff4fe4e7e859", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T23:28:28.000Z" + }, + "end": { + "$date": "2021-08-19T23:29:53.000Z" + }, + "events": [ + { + "uuid": "7483f188-c02a-46d4-8cce-ac530b24b566", + "start": { + "$date": "2021-08-19T23:28:28.000Z" + }, + "end": { + "$date": "2021-08-19T23:29:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "5be1cc11-e198-4eff-bf92-b250f5e55ebd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T23:30:03.000Z" + }, + "end": { + "$date": "2021-08-19T23:36:09.000Z" + }, + "events": [ + { + "uuid": "2c328998-5ae6-4841-a85d-2a6c9b47e16a", + "start": { + "$date": "2021-08-19T23:30:03.000Z" + }, + "end": { + "$date": "2021-08-19T23:36:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5cda51b4-523e-4ccb-b8de-eaeb4f7747e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-19T23:41:35.000Z" + }, + "end": { + "$date": "2021-08-19T23:48:11.000Z" + }, + "events": [ + { + "uuid": "4038d775-b4ee-4abb-8787-38c7d5e69791", + "start": { + "$date": "2021-08-19T23:41:35.000Z" + }, + "end": { + "$date": "2021-08-19T23:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "b27f9dd0-aa13-4f95-b4a9-3f0e07b67465", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T00:11:55.000Z" + }, + "end": { + "$date": "2021-08-20T00:17:00.000Z" + }, + "events": [ + { + "uuid": "b53928ad-0da9-44d4-96ca-1df7b8f71a2a", + "start": { + "$date": "2021-08-20T00:11:55.000Z" + }, + "end": { + "$date": "2021-08-20T00:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "2ba70b8a-a6e9-473d-9784-e1fd85eb786d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T00:25:37.000Z" + }, + "end": { + "$date": "2021-08-20T00:27:22.000Z" + }, + "events": [ + { + "uuid": "5e8590ec-6d93-438d-b91a-14d8d29b55cd", + "start": { + "$date": "2021-08-20T00:25:37.000Z" + }, + "end": { + "$date": "2021-08-20T00:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "2be157b2-6fce-46f9-8240-9c65d49cc72a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T00:27:32.000Z" + }, + "end": { + "$date": "2021-08-20T00:47:11.000Z" + }, + "events": [ + { + "uuid": "839b7003-bf18-47e0-8e0c-64b9bd39eb68", + "start": { + "$date": "2021-08-20T00:27:32.000Z" + }, + "end": { + "$date": "2021-08-20T00:43:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbc03fe7-a511-4ab2-8829-49a97db83921", + "start": { + "$date": "2021-08-20T00:43:32.000Z" + }, + "end": { + "$date": "2021-08-20T00:44:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61f337af-7d17-4c7e-8b76-3475fbd83227", + "start": { + "$date": "2021-08-20T00:44:32.000Z" + }, + "end": { + "$date": "2021-08-20T00:47:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1650fc73-3453-469a-9790-5ec719bd61f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-20T00:55:15.000Z" + }, + "end": { + "$date": "2021-08-20T04:29:59.000Z" + }, + "events": [ + { + "uuid": "fff557fe-140f-4e15-8fb3-c7d78af23c0a", + "start": { + "$date": "2021-08-20T00:55:15.000Z" + }, + "end": { + "$date": "2021-08-20T04:29:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "23acd9c6-0704-4299-81d3-fb3b0ea2ad4f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-20T01:16:56.000Z" + }, + "end": { + "$date": "2021-08-20T03:09:38.000Z" + }, + "events": [ + { + "uuid": "d5cda935-cb3c-43f3-a7e5-ae9665666729", + "start": { + "$date": "2021-08-20T01:16:56.000Z" + }, + "end": { + "$date": "2021-08-20T03:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85a6c700-0a49-446d-a66c-4a9135257268", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-20T02:05:26.000Z" + }, + "end": { + "$date": "2021-08-20T02:25:57.000Z" + }, + "events": [ + { + "uuid": "64d155d6-400a-4223-acc6-a15f1a81be7d", + "start": { + "$date": "2021-08-20T02:05:26.000Z" + }, + "end": { + "$date": "2021-08-20T02:25:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee8fdccb-b2c6-49d8-a961-f0d11ee40eae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-20T02:05:15.000Z" + }, + "end": { + "$date": "2021-08-20T02:25:46.000Z" + }, + "events": [ + { + "uuid": "bfba7876-13a9-49bf-a47d-5d08b1071e1c", + "start": { + "$date": "2021-08-20T02:05:15.000Z" + }, + "end": { + "$date": "2021-08-20T02:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "759daa8f-1ae8-485f-9064-6575e5938dc9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-20T02:07:57.000Z" + }, + "end": { + "$date": "2021-08-20T06:02:02.000Z" + }, + "events": [ + { + "uuid": "1c2119fc-2036-40e6-8a2e-f4e5d507b570", + "start": { + "$date": "2021-08-20T02:07:57.000Z" + }, + "end": { + "$date": "2021-08-20T06:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5ed9dfe-9635-41be-bd60-38165bf1672c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-20T02:29:42.000Z" + }, + "end": { + "$date": "2021-08-20T02:56:41.000Z" + }, + "events": [ + { + "uuid": "370a9db6-3c37-463b-9a70-3e1f625ffd2d", + "start": { + "$date": "2021-08-20T02:29:42.000Z" + }, + "end": { + "$date": "2021-08-20T02:56:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1160645-0d06-48c3-b9b7-80ecd2826369", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-20T02:29:30.000Z" + }, + "end": { + "$date": "2021-08-20T02:56:31.000Z" + }, + "events": [ + { + "uuid": "d3fd0566-8c74-4413-b184-b181597dc36d", + "start": { + "$date": "2021-08-20T02:29:30.000Z" + }, + "end": { + "$date": "2021-08-20T02:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d523667d-ed7f-41bc-a3f8-5637102aa949", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-20T02:59:48.000Z" + }, + "end": { + "$date": "2021-08-20T03:15:27.000Z" + }, + "events": [ + { + "uuid": "c01e8326-dda9-472c-93b7-8849f515a1b6", + "start": { + "$date": "2021-08-20T02:59:48.000Z" + }, + "end": { + "$date": "2021-08-20T03:15:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "725fcd41-8f03-4155-ae3c-ffc240ad288d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-20T03:00:16.000Z" + }, + "end": { + "$date": "2021-08-20T03:15:16.000Z" + }, + "events": [ + { + "uuid": "95382447-bece-47fe-b7ab-ff55f82b1765", + "start": { + "$date": "2021-08-20T03:00:16.000Z" + }, + "end": { + "$date": "2021-08-20T03:15:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f53d3ea8-7354-45aa-90a8-79830f13dce1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-20T03:10:29.000Z" + }, + "end": { + "$date": "2021-08-20T06:34:27.000Z" + }, + "events": [ + { + "uuid": "6b95e7e5-d30a-45dd-afd4-2c04f7eb9e13", + "start": { + "$date": "2021-08-20T03:10:29.000Z" + }, + "end": { + "$date": "2021-08-20T06:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5b7d2ea-5eef-461a-82f5-1a3e6c1739de", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-20T03:37:21.000Z" + }, + "end": { + "$date": "2021-08-20T04:09:17.000Z" + }, + "events": [ + { + "uuid": "b3b4179b-bca8-42d7-9d8d-63eda2a30ac5", + "start": { + "$date": "2021-08-20T03:37:21.000Z" + }, + "end": { + "$date": "2021-08-20T04:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", + "uuid": "f8a31463-dffb-461d-9e45-984e7e0297b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-20T03:56:28.000Z" + }, + "end": { + "$date": "2021-08-20T04:29:33.000Z" + }, + "events": [ + { + "uuid": "454ac06d-fe6a-44a5-becf-5adc482afbd7", + "start": { + "$date": "2021-08-20T03:56:28.000Z" + }, + "end": { + "$date": "2021-08-20T04:29:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "519176c9-6ced-4c37-a070-14c0b8031239", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-20T04:09:10.000Z" + }, + "end": { + "$date": "2021-08-20T06:43:00.000Z" + }, + "events": [ + { + "uuid": "b6ba103b-b840-4d30-afdf-bbb9191503e2", + "start": { + "$date": "2021-08-20T04:09:10.000Z" + }, + "end": { + "$date": "2021-08-20T06:43:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec2c8256-4a3b-4c16-ba59-a70f88b30859", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-20T04:20:07.000Z" + }, + "end": { + "$date": "2021-08-20T04:50:08.000Z" + }, + "events": [ + { + "uuid": "ba5e696b-4a0d-4379-acc8-73aadc9bcd5e", + "start": { + "$date": "2021-08-20T04:20:07.000Z" + }, + "end": { + "$date": "2021-08-20T04:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "da400e25-fe0e-4934-a6cd-5c7fea1b0b98", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-20T04:10:29.000Z" + }, + "end": { + "$date": "2021-08-20T06:32:20.000Z" + }, + "events": [ + { + "uuid": "b805a391-0525-4ba2-bc8f-d04e391730ad", + "start": { + "$date": "2021-08-20T04:10:29.000Z" + }, + "end": { + "$date": "2021-08-20T06:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f994eaf-653c-4dc7-a90c-da8114966e3a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-20T04:59:13.000Z" + }, + "end": { + "$date": "2021-08-20T05:25:44.000Z" + }, + "events": [ + { + "uuid": "30c05af5-ad9e-49b2-ad9e-1bd1c31b6026", + "start": { + "$date": "2021-08-20T04:59:13.000Z" + }, + "end": { + "$date": "2021-08-20T05:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e7f1110-cd1c-45a5-9079-f93e74d5e15e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-20T05:33:59.000Z" + }, + "end": { + "$date": "2021-08-20T06:00:35.000Z" + }, + "events": [ + { + "uuid": "092b36c0-a172-49ee-bef7-2f98aae8c2b5", + "start": { + "$date": "2021-08-20T05:33:59.000Z" + }, + "end": { + "$date": "2021-08-20T06:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2affebce-5f21-4435-9800-f5097cb1b331", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T05:30:59.000Z" + }, + "end": { + "$date": "2021-08-20T06:05:24.000Z" + }, + "events": [ + { + "uuid": "fb40c7ad-5602-48a5-9c79-429794c7db2e", + "start": { + "$date": "2021-08-20T05:30:59.000Z" + }, + "end": { + "$date": "2021-08-20T06:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f8dac19b-5287-47c0-8f9c-166730e6b69d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T05:30:59.000Z" + }, + "end": { + "$date": "2021-08-20T07:15:35.000Z" + }, + "events": [ + { + "uuid": "e4749c67-b6e3-46fd-8eb9-83983c2dc897", + "start": { + "$date": "2021-08-20T05:30:59.000Z" + }, + "end": { + "$date": "2021-08-20T07:15:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fff82f2d-109d-4f3b-9f05-9122cad0f2df", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-20T07:04:43.000Z" + }, + "end": { + "$date": "2021-08-20T07:37:26.000Z" + }, + "events": [ + { + "uuid": "3ce27a9f-150b-47de-89d3-5438e95d6585", + "start": { + "$date": "2021-08-20T07:04:43.000Z" + }, + "end": { + "$date": "2021-08-20T07:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4b329412-fd3e-4754-9bd6-61bf266c51d6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-20T13:38:27.000Z" + }, + "end": { + "$date": "2021-08-20T13:46:28.000Z" + }, + "events": [ + { + "uuid": "98e61d4b-4ba8-434b-a071-2b36ac9fff48", + "start": { + "$date": "2021-08-20T13:38:27.000Z" + }, + "end": { + "$date": "2021-08-20T13:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1a29c1c0-302b-41c3-ac48-24ace2315115", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-20T13:52:43.000Z" + }, + "end": { + "$date": "2021-08-20T14:00:26.000Z" + }, + "events": [ + { + "uuid": "f0e09129-4a9d-41bc-bc0e-85944f8cc048", + "start": { + "$date": "2021-08-20T13:52:43.000Z" + }, + "end": { + "$date": "2021-08-20T14:00:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "430f438f-c6dc-4b4d-8907-b1e4bbe435f2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-20T14:36:59.000Z" + }, + "end": { + "$date": "2021-08-20T14:41:26.000Z" + }, + "events": [ + { + "uuid": "af7f5ea9-fa2c-4c4b-a797-a4cc689a6e6a", + "start": { + "$date": "2021-08-20T14:36:59.000Z" + }, + "end": { + "$date": "2021-08-20T14:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2b7e37e3-981a-42e6-8024-31e0a08b5008", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-20T16:02:13.000Z" + }, + "end": { + "$date": "2021-08-20T16:28:32.000Z" + }, + "events": [ + { + "uuid": "1368fd4e-bc3e-4c64-9889-d1d6aad4e18c", + "start": { + "$date": "2021-08-20T16:02:13.000Z" + }, + "end": { + "$date": "2021-08-20T16:24:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1b45255f-027e-4267-9fa2-2e7db01ec280", + "start": { + "$date": "2021-08-20T16:24:13.000Z" + }, + "end": { + "$date": "2021-08-20T16:28:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5910976b-e72e-42b9-b06c-89749bd149f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-20T16:28:46.000Z" + }, + "end": { + "$date": "2021-08-20T17:19:59.000Z" + }, + "events": [ + { + "uuid": "9b09963f-d627-4bdc-bbc5-647db588fb64", + "start": { + "$date": "2021-08-20T16:28:46.000Z" + }, + "end": { + "$date": "2021-08-20T17:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "748e9364-7e34-49ef-bed9-b430ca2be997", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-20T18:41:41.000Z" + }, + "end": { + "$date": "2021-08-20T19:37:00.000Z" + }, + "events": [ + { + "uuid": "8ff390e2-8eb8-4f22-a31a-5ffd7dbb6081", + "start": { + "$date": "2021-08-20T18:41:41.000Z" + }, + "end": { + "$date": "2021-08-20T19:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70fb1704-1ac3-4f5d-af8d-2d1f4a76ab6c", + "uuid": "c69ede22-0d80-4dab-83aa-cc0156fefc74", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-20T18:48:54.000Z" + }, + "end": { + "$date": "2021-08-20T19:15:31.000Z" + }, + "events": [ + { + "uuid": "6a06846b-b4b3-46b0-9564-0405b8059cd4", + "start": { + "$date": "2021-08-20T18:48:54.000Z" + }, + "end": { + "$date": "2021-08-20T19:15:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "0ef675bf-ba0b-41a1-a5e4-4a95199555aa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-20T20:05:52.000Z" + }, + "end": { + "$date": "2021-08-20T20:09:08.000Z" + }, + "events": [ + { + "uuid": "aa415687-9561-41da-8ae1-ebc07646f3a2", + "start": { + "$date": "2021-08-20T20:05:52.000Z" + }, + "end": { + "$date": "2021-08-20T20:09:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e564be61-e8f2-4286-aede-a8c43136fb2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-20T21:02:03.000Z" + }, + "end": { + "$date": "2021-08-20T21:42:38.000Z" + }, + "events": [ + { + "uuid": "bbd20a4e-4c2a-4c74-9015-8dfecb772b37", + "start": { + "$date": "2021-08-20T21:02:03.000Z" + }, + "end": { + "$date": "2021-08-20T21:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7a8f1f3c-5f79-4bca-8b87-6f849bf2c955", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T22:15:43.000Z" + }, + "end": { + "$date": "2021-08-20T22:21:03.000Z" + }, + "events": [ + { + "uuid": "70c989f4-b9c0-4c5d-b349-5f25d6a045ef", + "start": { + "$date": "2021-08-20T22:15:43.000Z" + }, + "end": { + "$date": "2021-08-20T22:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5a54e48d-bd4c-4910-8a82-93c75cc0f351", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T22:28:50.000Z" + }, + "end": { + "$date": "2021-08-20T23:21:18.000Z" + }, + "events": [ + { + "uuid": "b41c6319-f339-4a93-874a-5399df5b6af9", + "start": { + "$date": "2021-08-20T22:28:50.000Z" + }, + "end": { + "$date": "2021-08-20T23:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8b84d7c8-b01c-4ac7-87a1-a5b967b4d74d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T23:41:33.000Z" + }, + "end": { + "$date": "2021-08-20T23:43:44.000Z" + }, + "events": [ + { + "uuid": "09fc67d0-bf74-4d14-8456-516d0e8de362", + "start": { + "$date": "2021-08-20T23:41:33.000Z" + }, + "end": { + "$date": "2021-08-20T23:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92756d69-5959-4d8d-b918-2d0e68ad1126", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T23:43:53.000Z" + }, + "end": { + "$date": "2021-08-20T23:51:25.000Z" + }, + "events": [ + { + "uuid": "bf495e5d-7ea4-4b93-bc7b-830ca8f73a17", + "start": { + "$date": "2021-08-20T23:43:53.000Z" + }, + "end": { + "$date": "2021-08-20T23:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2815c471-9342-4fc0-8523-8a477bda90d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T23:51:50.000Z" + }, + "end": { + "$date": "2021-08-20T23:59:36.000Z" + }, + "events": [ + { + "uuid": "3a3c7edd-2a54-457b-b4b0-1f70b793b897", + "start": { + "$date": "2021-08-20T23:51:50.000Z" + }, + "end": { + "$date": "2021-08-20T23:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "159916ad-4a4b-459f-ade1-d44b0e024538", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-20T23:51:50.000Z" + }, + "end": { + "$date": "2021-08-21T01:02:17.000Z" + }, + "events": [ + { + "uuid": "16b3ae9c-0c6b-4c82-a04d-4527c365f2f7", + "start": { + "$date": "2021-08-20T23:51:50.000Z" + }, + "end": { + "$date": "2021-08-21T01:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c08f370a-002c-4661-853c-72cc9e51fd46", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-21T00:42:03.000Z" + }, + "end": { + "$date": "2021-08-21T07:43:03.000Z" + }, + "events": [ + { + "uuid": "25ae383a-35ed-446b-8e3b-ca22c7802d39", + "start": { + "$date": "2021-08-21T00:42:03.000Z" + }, + "end": { + "$date": "2021-08-21T07:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d8dc0d3d-0304-49d9-9365-d736f248343d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-21T01:04:27.000Z" + }, + "end": { + "$date": "2021-08-21T01:44:50.000Z" + }, + "events": [ + { + "uuid": "48f2b213-8fbe-4ce4-9365-7c7a13654ac9", + "start": { + "$date": "2021-08-21T01:04:27.000Z" + }, + "end": { + "$date": "2021-08-21T01:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4efc384d-fa05-4aa6-871d-4b7ad734ab38", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-21T01:18:31.000Z" + }, + "end": { + "$date": "2021-08-21T01:21:37.000Z" + }, + "events": [ + { + "uuid": "8a4014b2-f6f1-4f32-b82d-1cbdd1ece49d", + "start": { + "$date": "2021-08-21T01:18:31.000Z" + }, + "end": { + "$date": "2021-08-21T01:21:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b40dec19-7850-4173-acfa-2760b9c39190", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-21T01:21:46.000Z" + }, + "end": { + "$date": "2021-08-21T01:26:37.000Z" + }, + "events": [ + { + "uuid": "6f10ea33-f6a2-4403-86ba-66dcc84965a5", + "start": { + "$date": "2021-08-21T01:21:46.000Z" + }, + "end": { + "$date": "2021-08-21T01:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f2bb9cfc-4a6d-41e3-bf51-8c676e76c259", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-21T01:27:47.000Z" + }, + "end": { + "$date": "2021-08-21T02:13:24.000Z" + }, + "events": [ + { + "uuid": "ff26b828-4181-4a77-a932-9f5a455d7112", + "start": { + "$date": "2021-08-21T01:27:47.000Z" + }, + "end": { + "$date": "2021-08-21T02:13:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "deedb00e-f825-40a7-9880-b3ea2144a08e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-21T01:53:23.000Z" + }, + "end": { + "$date": "2021-08-21T03:55:23.000Z" + }, + "events": [ + { + "uuid": "c5a96faf-94c6-4e9f-874f-b6888b09292e", + "start": { + "$date": "2021-08-21T01:53:23.000Z" + }, + "end": { + "$date": "2021-08-21T02:33:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e2b2daa-1e87-47fe-9abc-d75ecd64bd93", + "start": { + "$date": "2021-08-21T02:33:23.000Z" + }, + "end": { + "$date": "2021-08-21T02:47:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dae08226-0f2b-43a9-8c2d-56d7e6706667", + "start": { + "$date": "2021-08-21T02:47:23.000Z" + }, + "end": { + "$date": "2021-08-21T03:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "89f07535-13ab-4c48-8b25-c10b6c66f6aa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-21T02:37:04.000Z" + }, + "end": { + "$date": "2021-08-21T02:52:40.000Z" + }, + "events": [ + { + "uuid": "42a43e5c-f00d-4a46-b769-40bdce4fa0d9", + "start": { + "$date": "2021-08-21T02:37:04.000Z" + }, + "end": { + "$date": "2021-08-21T02:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca577b72-a646-40b5-ba12-c4d225b9b8c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-21T03:59:03.000Z" + }, + "end": { + "$date": "2021-08-21T04:00:47.000Z" + }, + "events": [ + { + "uuid": "fddff204-8fab-4f03-958d-e2c5038fe205", + "start": { + "$date": "2021-08-21T03:59:03.000Z" + }, + "end": { + "$date": "2021-08-21T04:00:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d81d1b58-57c4-425f-997d-8e9b706bbd15", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-21T03:59:04.000Z" + }, + "end": { + "$date": "2021-08-21T06:58:48.000Z" + }, + "events": [ + { + "uuid": "67ab3401-7318-4618-8b3d-fac6f2156fd8", + "start": { + "$date": "2021-08-21T03:59:04.000Z" + }, + "end": { + "$date": "2021-08-21T06:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e791edd5-53f7-4a99-9783-31eb5634bc17", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-21T05:27:19.000Z" + }, + "end": { + "$date": "2021-08-21T06:03:55.000Z" + }, + "events": [ + { + "uuid": "a484c0aa-4cf8-4bd1-a4df-8a7f1bd0ee4f", + "start": { + "$date": "2021-08-21T05:27:19.000Z" + }, + "end": { + "$date": "2021-08-21T06:03:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a16efaad-8b8c-4a66-9fe1-71416b60754b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-21T08:31:34.000Z" + }, + "end": { + "$date": "2021-08-21T08:52:09.000Z" + }, + "events": [ + { + "uuid": "925107bf-2fc8-439e-b25e-b155d6380dea", + "start": { + "$date": "2021-08-21T08:31:34.000Z" + }, + "end": { + "$date": "2021-08-21T08:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e50cc602-17bb-4f11-8458-1754beac121c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-21T13:48:08.000Z" + }, + "end": { + "$date": "2021-08-21T14:24:55.000Z" + }, + "events": [ + { + "uuid": "2f4074d4-0a34-4376-97d7-01fd3c681c3e", + "start": { + "$date": "2021-08-21T13:48:08.000Z" + }, + "end": { + "$date": "2021-08-21T14:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "73eca36d-a285-4f95-aa25-e324d841a56f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-21T17:38:55.000Z" + }, + "end": { + "$date": "2021-08-21T18:30:19.000Z" + }, + "events": [ + { + "uuid": "da4f30a9-6830-4e6f-a126-9507f9623721", + "start": { + "$date": "2021-08-21T17:38:55.000Z" + }, + "end": { + "$date": "2021-08-21T18:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c370a8f2-24e1-435c-876d-a0dc96ca5450", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-21T18:52:04.000Z" + }, + "end": { + "$date": "2021-08-21T19:51:25.000Z" + }, + "events": [ + { + "uuid": "c398ddff-4a94-4df5-8cd0-aca523a644e2", + "start": { + "$date": "2021-08-21T18:52:04.000Z" + }, + "end": { + "$date": "2021-08-21T19:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1fb03d6-45b9-4192-8e87-73303de5bec9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-21T19:21:45.000Z" + }, + "end": { + "$date": "2021-08-21T19:53:57.000Z" + }, + "events": [ + { + "uuid": "9bc48ade-5e5f-484b-bcd7-ba292c6efad9", + "start": { + "$date": "2021-08-21T19:21:45.000Z" + }, + "end": { + "$date": "2021-08-21T19:53:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "764f0419-5ed5-48ca-93e6-766e64d582c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-21T19:49:22.000Z" + }, + "end": { + "$date": "2021-08-21T20:00:03.000Z" + }, + "events": [ + { + "uuid": "03161924-3b9e-4d34-96e0-9d65a49e78b4", + "start": { + "$date": "2021-08-21T19:49:22.000Z" + }, + "end": { + "$date": "2021-08-21T20:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e2a4063-4f9b-4aeb-9bb8-2bc59ffdb641", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-21T19:54:48.000Z" + }, + "end": { + "$date": "2021-08-21T22:07:30.000Z" + }, + "events": [ + { + "uuid": "d8678c7e-857c-450d-b5c7-87ad5198bdda", + "start": { + "$date": "2021-08-21T19:54:48.000Z" + }, + "end": { + "$date": "2021-08-21T22:07:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "6ad1beac-9430-450d-ba1d-4e12ca5c4977", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-21T20:04:03.000Z" + }, + "end": { + "$date": "2021-08-21T21:08:43.000Z" + }, + "events": [ + { + "uuid": "8c0041fc-3c8c-4a66-97a9-8404eb9f4e6c", + "start": { + "$date": "2021-08-21T20:04:03.000Z" + }, + "end": { + "$date": "2021-08-21T21:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dd87b163-93ac-4b10-ac42-e899e3ed01c8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-21T22:57:02.000Z" + }, + "end": { + "$date": "2021-08-22T02:52:56.000Z" + }, + "events": [ + { + "uuid": "95d01da3-5e4a-4a6f-bbb8-d724e09261f3", + "start": { + "$date": "2021-08-21T22:57:02.000Z" + }, + "end": { + "$date": "2021-08-22T02:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7db543f3-dac5-4fdb-a639-6643b112c8b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T00:05:21.000Z" + }, + "end": { + "$date": "2021-08-22T00:06:01.000Z" + }, + "events": [ + { + "uuid": "ddb2fe99-0c7c-43d2-8db6-94425dd2c539", + "start": { + "$date": "2021-08-22T00:05:21.000Z" + }, + "end": { + "$date": "2021-08-22T00:06:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f1b8fa63-6be4-4e18-9897-b14874cd1e01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T00:06:21.000Z" + }, + "end": { + "$date": "2021-08-22T00:07:26.000Z" + }, + "events": [ + { + "uuid": "0a868d65-c38a-4714-87cf-b30caa85b231", + "start": { + "$date": "2021-08-22T00:06:21.000Z" + }, + "end": { + "$date": "2021-08-22T00:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d7a93cd5-9f7e-4dfe-becf-78f2b06eeab8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T00:07:36.000Z" + }, + "end": { + "$date": "2021-08-22T00:16:24.000Z" + }, + "events": [ + { + "uuid": "c2d68072-b53f-488e-a9ac-e7a4bfa5373e", + "start": { + "$date": "2021-08-22T00:07:36.000Z" + }, + "end": { + "$date": "2021-08-22T00:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "970f4357-d741-4ef2-9d25-c2f9dd09fc00", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T00:16:39.000Z" + }, + "end": { + "$date": "2021-08-22T00:18:04.000Z" + }, + "events": [ + { + "uuid": "2c079338-f862-44cb-ad1c-b1b45a8b6119", + "start": { + "$date": "2021-08-22T00:16:39.000Z" + }, + "end": { + "$date": "2021-08-22T00:18:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "67b2027d-ba9e-44fc-b725-dbcbac8dbc53", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-22T00:17:13.000Z" + }, + "end": { + "$date": "2021-08-22T02:46:01.000Z" + }, + "events": [ + { + "uuid": "e63fe2ec-17cf-4365-af01-53c1bc1d8528", + "start": { + "$date": "2021-08-22T00:17:13.000Z" + }, + "end": { + "$date": "2021-08-22T02:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "059db24a-91d6-4e03-99a0-494eb061d93c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T01:00:01.000Z" + }, + "end": { + "$date": "2021-08-22T01:11:12.000Z" + }, + "events": [ + { + "uuid": "2d60233a-493c-49b5-8b60-b8786c6595d6", + "start": { + "$date": "2021-08-22T01:00:01.000Z" + }, + "end": { + "$date": "2021-08-22T01:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "14234b9d-6410-48e0-b406-e96f1fa0ce44", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T01:40:58.000Z" + }, + "end": { + "$date": "2021-08-22T03:34:33.000Z" + }, + "events": [ + { + "uuid": "2ba0779f-123b-4ef3-a8f9-e47c2ca54f89", + "start": { + "$date": "2021-08-22T01:40:58.000Z" + }, + "end": { + "$date": "2021-08-22T03:34:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5a9f7a9-7e10-41ec-aded-7fdea69000fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-22T02:27:29.000Z" + }, + "end": { + "$date": "2021-08-22T02:55:35.000Z" + }, + "events": [ + { + "uuid": "45001902-7cf7-4340-8771-7832a90054f2", + "start": { + "$date": "2021-08-22T02:27:29.000Z" + }, + "end": { + "$date": "2021-08-22T02:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03593e52-d8d7-4794-9c96-a8ea2f5840fc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T02:22:44.000Z" + }, + "end": { + "$date": "2021-08-22T02:24:08.000Z" + }, + "events": [ + { + "uuid": "b09e9779-4ed9-4650-b9dd-084469d12028", + "start": { + "$date": "2021-08-22T02:22:44.000Z" + }, + "end": { + "$date": "2021-08-22T02:24:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0604ae9-83fc-4494-9aa4-8ca0ed2dd7b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T02:27:59.000Z" + }, + "end": { + "$date": "2021-08-22T02:55:40.000Z" + }, + "events": [ + { + "uuid": "2dda0b94-b7f1-41a4-bec6-b92c893f8717", + "start": { + "$date": "2021-08-22T02:27:59.000Z" + }, + "end": { + "$date": "2021-08-22T02:55:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a65c237-0d7e-4381-b375-c03313d1def2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T02:27:59.000Z" + }, + "end": { + "$date": "2021-08-22T02:55:25.000Z" + }, + "events": [ + { + "uuid": "8552dc68-dd38-4979-bd18-befc01331050", + "start": { + "$date": "2021-08-22T02:27:59.000Z" + }, + "end": { + "$date": "2021-08-22T02:55:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e50ada0b-9c41-4485-a5fb-d56b2e023f05", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-22T03:04:06.000Z" + }, + "end": { + "$date": "2021-08-22T03:19:32.000Z" + }, + "events": [ + { + "uuid": "705b0fda-276f-41bf-8b99-0703f7ac681d", + "start": { + "$date": "2021-08-22T03:04:06.000Z" + }, + "end": { + "$date": "2021-08-22T03:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7c9e3ba-20c0-4e55-a30f-fca98ed975ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T03:02:45.000Z" + }, + "end": { + "$date": "2021-08-22T03:19:36.000Z" + }, + "events": [ + { + "uuid": "1139108f-0f8c-4673-8156-2093faf1f834", + "start": { + "$date": "2021-08-22T03:02:45.000Z" + }, + "end": { + "$date": "2021-08-22T03:19:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70cb59fe-9cc0-4eec-94fa-c547f77182f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T03:02:04.000Z" + }, + "end": { + "$date": "2021-08-22T03:19:31.000Z" + }, + "events": [ + { + "uuid": "b3fd5da6-b7d2-475d-8da2-493c34f958d4", + "start": { + "$date": "2021-08-22T03:02:04.000Z" + }, + "end": { + "$date": "2021-08-22T03:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88ffa25e-635a-416b-950a-f5dbd1e6c603", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-22T03:23:47.000Z" + }, + "end": { + "$date": "2021-08-22T03:46:33.000Z" + }, + "events": [ + { + "uuid": "1d8b3b1f-2f2e-424b-a5ee-348def00e758", + "start": { + "$date": "2021-08-22T03:23:47.000Z" + }, + "end": { + "$date": "2021-08-22T03:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f473eac-8017-4f9d-b8df-8a7c579d8153", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T03:24:56.000Z" + }, + "end": { + "$date": "2021-08-22T03:46:36.000Z" + }, + "events": [ + { + "uuid": "dc65a8d7-540a-4bfa-b325-5ac38a49106d", + "start": { + "$date": "2021-08-22T03:24:56.000Z" + }, + "end": { + "$date": "2021-08-22T03:46:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da808447-be3b-40c6-a399-9a0fb446017a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T03:25:05.000Z" + }, + "end": { + "$date": "2021-08-22T03:46:31.000Z" + }, + "events": [ + { + "uuid": "443f9287-6a25-4a68-8275-07875042b590", + "start": { + "$date": "2021-08-22T03:25:05.000Z" + }, + "end": { + "$date": "2021-08-22T03:46:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6624ad5-9967-41d8-8d5d-05fc3ce88f76", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-22T03:53:24.000Z" + }, + "end": { + "$date": "2021-08-22T04:11:21.000Z" + }, + "events": [ + { + "uuid": "61570bd7-0d79-404d-b808-991fcc34c15d", + "start": { + "$date": "2021-08-22T03:53:24.000Z" + }, + "end": { + "$date": "2021-08-22T04:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b09c1b55-0fd3-496e-9800-6566e45521a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T03:49:39.000Z" + }, + "end": { + "$date": "2021-08-22T03:50:08.000Z" + }, + "events": [ + { + "uuid": "02ca20b0-211d-478a-9ba8-116d7c58984d", + "start": { + "$date": "2021-08-22T03:49:39.000Z" + }, + "end": { + "$date": "2021-08-22T03:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20aa591b-4a1f-4223-9740-3f96b96ea0f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T03:49:40.000Z" + }, + "end": { + "$date": "2021-08-22T03:50:07.000Z" + }, + "events": [ + { + "uuid": "a92c03c6-67db-464a-b976-1b633b9ddfab", + "start": { + "$date": "2021-08-22T03:49:40.000Z" + }, + "end": { + "$date": "2021-08-22T03:50:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa9ca55f-d2e5-4bda-8bb4-615cad568a30", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T04:09:56.000Z" + }, + "end": { + "$date": "2021-08-22T04:11:17.000Z" + }, + "events": [ + { + "uuid": "a8a36687-5505-4073-a16d-0d49cd7c257e", + "start": { + "$date": "2021-08-22T04:09:56.000Z" + }, + "end": { + "$date": "2021-08-22T04:11:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c6ffc56-0de0-4830-b34d-ff89baf7fdb8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T04:07:50.000Z" + }, + "end": { + "$date": "2021-08-22T04:11:12.000Z" + }, + "events": [ + { + "uuid": "e25ffc30-c1e0-4667-9825-2a7361d2346f", + "start": { + "$date": "2021-08-22T04:07:50.000Z" + }, + "end": { + "$date": "2021-08-22T04:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "90d35983-cee1-4826-bf75-24c057be7579", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-22T04:13:58.000Z" + }, + "end": { + "$date": "2021-08-22T07:20:22.000Z" + }, + "events": [ + { + "uuid": "ba18f8ad-7e48-4497-a002-d0ce16b28cdb", + "start": { + "$date": "2021-08-22T04:13:58.000Z" + }, + "end": { + "$date": "2021-08-22T07:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38f23859-1c39-4836-b71e-c8b4cc431248", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T04:11:16.000Z" + }, + "end": { + "$date": "2021-08-22T04:37:14.000Z" + }, + "events": [ + { + "uuid": "e302b9fa-6103-4dd8-b81a-753835ffb82a", + "start": { + "$date": "2021-08-22T04:11:16.000Z" + }, + "end": { + "$date": "2021-08-22T04:37:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94ba568f-46f7-4bad-84e9-1889a2829da9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-22T05:25:22.000Z" + }, + "end": { + "$date": "2021-08-22T05:58:34.000Z" + }, + "events": [ + { + "uuid": "6715f48e-4a39-44d9-adb7-aaaff39818bd", + "start": { + "$date": "2021-08-22T05:25:22.000Z" + }, + "end": { + "$date": "2021-08-22T05:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48bcd24b-c069-4006-a3d8-bcbf4a28a028", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-22T06:27:22.000Z" + }, + "end": { + "$date": "2021-08-22T06:52:33.000Z" + }, + "events": [ + { + "uuid": "7a37314d-625e-4a27-90dc-3cc3eefbcb0f", + "start": { + "$date": "2021-08-22T06:27:22.000Z" + }, + "end": { + "$date": "2021-08-22T06:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6d5e7b1-cf70-4b83-bbd9-2d8fab14a2c7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-22T06:57:18.000Z" + }, + "end": { + "$date": "2021-08-22T07:35:49.000Z" + }, + "events": [ + { + "uuid": "2def34b5-269f-45a1-8d24-0a406aeee10a", + "start": { + "$date": "2021-08-22T06:57:18.000Z" + }, + "end": { + "$date": "2021-08-22T07:35:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2d1aafde-1ced-4425-bfc3-ebac43c63a0a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T07:02:25.000Z" + }, + "end": { + "$date": "2021-08-22T07:05:10.000Z" + }, + "events": [ + { + "uuid": "ff4f96d4-aa3a-4e85-bfe3-e410add6d1aa", + "start": { + "$date": "2021-08-22T07:02:25.000Z" + }, + "end": { + "$date": "2021-08-22T07:05:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a524443b-6877-4b34-9a39-77e02f242da2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T07:09:11.000Z" + }, + "end": { + "$date": "2021-08-22T08:24:19.000Z" + }, + "events": [ + { + "uuid": "635ba8e7-8147-4e1d-92e6-0ca5c364b620", + "start": { + "$date": "2021-08-22T07:09:11.000Z" + }, + "end": { + "$date": "2021-08-22T08:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbdb8415-9e5b-4b81-9d86-7ca6927d08b9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-22T07:52:11.000Z" + }, + "end": { + "$date": "2021-08-22T08:23:21.000Z" + }, + "events": [ + { + "uuid": "a1a9034a-3c2b-4924-99f5-b3d5fccc87d8", + "start": { + "$date": "2021-08-22T07:52:11.000Z" + }, + "end": { + "$date": "2021-08-22T08:23:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c190e848-d034-4fa6-b1aa-fb72d202897b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T08:40:52.000Z" + }, + "end": { + "$date": "2021-08-22T08:55:38.000Z" + }, + "events": [ + { + "uuid": "1ed22471-78f2-4d64-aa1a-0c742fc940d3", + "start": { + "$date": "2021-08-22T08:40:52.000Z" + }, + "end": { + "$date": "2021-08-22T08:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff2f1df4-4f58-4d11-bb4c-9219e1d4c373", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T08:40:52.000Z" + }, + "end": { + "$date": "2021-08-22T09:04:27.000Z" + }, + "events": [ + { + "uuid": "7667dd40-9fc3-47c5-ba69-c1031d48b45a", + "start": { + "$date": "2021-08-22T08:40:52.000Z" + }, + "end": { + "$date": "2021-08-22T09:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "e84869f6-eb7b-4adc-8e84-cd17ef7ef361", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-22T19:33:40.000Z" + }, + "end": { + "$date": "2021-08-22T19:52:58.000Z" + }, + "events": [ + { + "uuid": "7a076bde-1187-4481-9db7-f2b47c317ee2", + "start": { + "$date": "2021-08-22T19:33:40.000Z" + }, + "end": { + "$date": "2021-08-22T19:52:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "311295bd-41d0-4cc2-a84b-81e27afa6065", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T15:37:22.000Z" + }, + "end": { + "$date": "2021-08-22T17:30:01.000Z" + }, + "events": [ + { + "uuid": "c0f37dc9-d90c-4041-9c5c-be787ca6d216", + "start": { + "$date": "2021-08-22T15:37:22.000Z" + }, + "end": { + "$date": "2021-08-22T17:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "d2c0c96d-b01d-4848-8be4-02c802e41ca6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T15:57:27.000Z" + }, + "end": { + "$date": "2021-08-22T16:00:48.000Z" + }, + "events": [ + { + "uuid": "27e07578-345e-4db8-9a47-c6c945c62d4f", + "start": { + "$date": "2021-08-22T15:57:27.000Z" + }, + "end": { + "$date": "2021-08-22T16:00:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "d8480016-593b-4b2f-b9c3-06a3c138bb8a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T16:01:24.000Z" + }, + "end": { + "$date": "2021-08-22T16:03:50.000Z" + }, + "events": [ + { + "uuid": "42ac2d08-1448-46be-a8c2-d7231d6d5bc9", + "start": { + "$date": "2021-08-22T16:01:24.000Z" + }, + "end": { + "$date": "2021-08-22T16:03:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "2d08d4ee-cbc5-4bea-8f66-3962cc9b3160", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T16:04:41.000Z" + }, + "end": { + "$date": "2021-08-22T16:07:06.000Z" + }, + "events": [ + { + "uuid": "1fe5182d-ebf9-41f7-b814-36bfd00b3af5", + "start": { + "$date": "2021-08-22T16:04:41.000Z" + }, + "end": { + "$date": "2021-08-22T16:07:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "cb7aaa12-c5f6-4287-bb60-a64b1ea51cf0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T16:07:37.000Z" + }, + "end": { + "$date": "2021-08-22T16:21:15.000Z" + }, + "events": [ + { + "uuid": "8c3d6d2b-0e26-43be-b020-66c2ac8e44d7", + "start": { + "$date": "2021-08-22T16:07:37.000Z" + }, + "end": { + "$date": "2021-08-22T16:21:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "379e0c72-a33a-4da6-a8a4-4a7971190243", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T16:21:36.000Z" + }, + "end": { + "$date": "2021-08-22T16:52:42.000Z" + }, + "events": [ + { + "uuid": "5c279517-edb2-4552-8fff-f64cf95c3bbe", + "start": { + "$date": "2021-08-22T16:21:36.000Z" + }, + "end": { + "$date": "2021-08-22T16:52:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2df353e9-0b6a-41ba-9874-c9692b6cbced", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-22T16:41:55.000Z" + }, + "end": { + "$date": "2021-08-22T16:46:27.000Z" + }, + "events": [ + { + "uuid": "56cbbdfa-3307-4459-a67c-25079af43c4c", + "start": { + "$date": "2021-08-22T16:41:55.000Z" + }, + "end": { + "$date": "2021-08-22T16:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "60dc1338-3f03-4ab9-95b6-f8f93247d5f2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T16:53:27.000Z" + }, + "end": { + "$date": "2021-08-22T17:23:40.000Z" + }, + "events": [ + { + "uuid": "b64c33da-766c-40e6-9d91-5c2fd4b20543", + "start": { + "$date": "2021-08-22T16:53:27.000Z" + }, + "end": { + "$date": "2021-08-22T17:23:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "501f368f-9e92-46d0-8647-774256d0351e", + "uuid": "76ea0a4e-dd94-4a52-97bf-887a215e262d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T17:27:28.000Z" + }, + "end": { + "$date": "2021-08-22T17:36:38.000Z" + }, + "events": [ + { + "uuid": "3bdd50d1-fe2a-4109-9899-48c0745aadae", + "start": { + "$date": "2021-08-22T17:27:28.000Z" + }, + "end": { + "$date": "2021-08-22T17:36:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", + "uuid": "926a3992-b6c9-415e-80bb-da568d5c9100", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T17:36:48.000Z" + }, + "end": { + "$date": "2021-08-22T18:21:28.000Z" + }, + "events": [ + { + "uuid": "d78e2a18-eca2-4511-aad8-ec9fded0b53a", + "start": { + "$date": "2021-08-22T17:36:48.000Z" + }, + "end": { + "$date": "2021-08-22T18:21:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", + "uuid": "296e5c32-81b3-4d43-a889-30fa70b599b7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T18:21:33.000Z" + }, + "end": { + "$date": "2021-08-22T18:53:40.000Z" + }, + "events": [ + { + "uuid": "e151d8bb-42e3-4478-b170-574501adf220", + "start": { + "$date": "2021-08-22T18:21:33.000Z" + }, + "end": { + "$date": "2021-08-22T18:53:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ad91f1b2-d022-41c9-8603-bb3e80651cea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-22T19:20:09.000Z" + }, + "end": { + "$date": "2021-08-22T19:32:25.000Z" + }, + "events": [ + { + "uuid": "9a5d390f-c411-4596-8e7a-c0d0890f2d82", + "start": { + "$date": "2021-08-22T19:20:09.000Z" + }, + "end": { + "$date": "2021-08-22T19:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "fd5aa846-652f-4d80-a262-fc8ee69edf01", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-22T20:03:15.000Z" + }, + "end": { + "$date": "2021-08-22T20:55:36.000Z" + }, + "events": [ + { + "uuid": "a21ece93-48fe-46ee-9a7c-89b84f9e4e31", + "start": { + "$date": "2021-08-22T20:03:15.000Z" + }, + "end": { + "$date": "2021-08-22T20:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "99fb5bab-bd50-4e54-b08d-d75964a6c0f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-22T20:55:51.000Z" + }, + "end": { + "$date": "2021-08-22T21:07:13.000Z" + }, + "events": [ + { + "uuid": "5494dcf7-5240-460a-bebe-e252e652ee8a", + "start": { + "$date": "2021-08-22T20:55:51.000Z" + }, + "end": { + "$date": "2021-08-22T21:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5252e3f7-a8ba-4ad0-947c-bf94a89c28c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-22T20:59:48.000Z" + }, + "end": { + "$date": "2021-08-22T21:46:26.000Z" + }, + "events": [ + { + "uuid": "d5404559-fadc-43fd-9630-8959731a935e", + "start": { + "$date": "2021-08-22T20:59:48.000Z" + }, + "end": { + "$date": "2021-08-22T21:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", + "uuid": "dbf50ef8-5562-49f4-9c38-291ff36e2599", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-22T21:12:51.000Z" + }, + "end": { + "$date": "2021-08-22T21:35:31.000Z" + }, + "events": [ + { + "uuid": "8d46d8e0-3333-44a0-a34b-2fe9a45e59bd", + "start": { + "$date": "2021-08-22T21:12:51.000Z" + }, + "end": { + "$date": "2021-08-22T21:35:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "474809cc-2476-48a1-ba28-b0e10278fd53", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T21:50:28.000Z" + }, + "end": { + "$date": "2021-08-22T22:02:41.000Z" + }, + "events": [ + { + "uuid": "c6a6a260-cb47-42c6-8733-ae3434ad56e3", + "start": { + "$date": "2021-08-22T21:50:28.000Z" + }, + "end": { + "$date": "2021-08-22T22:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "408c7509-83df-4b30-afa6-dff0c1461823", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T21:50:28.000Z" + }, + "end": { + "$date": "2021-08-22T22:19:40.000Z" + }, + "events": [ + { + "uuid": "0f240013-398b-44e2-960d-40cc4899685d", + "start": { + "$date": "2021-08-22T21:50:28.000Z" + }, + "end": { + "$date": "2021-08-22T22:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "2c7c0e24-0a49-4643-a53b-85f8e0ded557", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-22T22:12:22.000Z" + }, + "end": { + "$date": "2021-08-23T00:00:07.000Z" + }, + "events": [ + { + "uuid": "6a8b9c30-0e13-47ff-a120-3604ca1090c7", + "start": { + "$date": "2021-08-22T22:12:22.000Z" + }, + "end": { + "$date": "2021-08-23T00:00:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b44ef5da-3e7e-4692-82a7-4e9634a9ddbe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-22T22:16:12.000Z" + }, + "end": { + "$date": "2021-08-22T22:29:14.000Z" + }, + "events": [ + { + "uuid": "d54f4b14-856a-4437-8cbc-71e35872e04a", + "start": { + "$date": "2021-08-22T22:16:12.000Z" + }, + "end": { + "$date": "2021-08-22T22:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1e9e59e-6871-4618-95cb-2b7b9f9c3103", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T21:50:28.000Z" + }, + "end": { + "$date": "2021-08-22T22:39:49.000Z" + }, + "events": [ + { + "uuid": "481136f7-42a2-4e2f-beb9-b6c165422eed", + "start": { + "$date": "2021-08-22T21:50:28.000Z" + }, + "end": { + "$date": "2021-08-22T22:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3c1127ed-6406-43f4-a2e0-485b79728a4f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-22T23:36:37.000Z" + }, + "events": [ + { + "uuid": "1ed00076-7795-4d30-9bea-70a08dc6a486", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-22T23:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "980a990d-8182-4b87-95f3-d08666c60837", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-22T23:43:44.000Z" + }, + "events": [ + { + "uuid": "7bce3f84-c635-41d6-a59a-23b71ccb0c8a", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-22T23:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "09357eb8-f830-44e7-90a9-5b6f7bafc730", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-22T23:55:42.000Z" + }, + "events": [ + { + "uuid": "b2e61bc6-d5bc-4472-bf88-ba096776d8bb", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-22T23:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e05ffcc6-20da-4559-b443-1741512bfdc1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-23T00:21:28.000Z" + }, + "events": [ + { + "uuid": "98d381c7-00a5-4dc6-b719-2b8745d62949", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-23T00:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "40267fb2-e69e-465d-bcff-6c51033cfdd9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T00:04:53.000Z" + }, + "end": { + "$date": "2021-08-23T00:46:44.000Z" + }, + "events": [ + { + "uuid": "5234a13e-c3e6-4b2b-9f05-410ec8f71146", + "start": { + "$date": "2021-08-23T00:04:53.000Z" + }, + "end": { + "$date": "2021-08-23T00:46:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92e4d31c-373b-44f5-963f-b5aebc438c96", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-23T00:37:44.000Z" + }, + "events": [ + { + "uuid": "82f54cae-29b2-40e3-a946-d163feed03c0", + "start": { + "$date": "2021-08-22T22:52:16.000Z" + }, + "end": { + "$date": "2021-08-23T00:37:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "60bd5064-d2e7-48f7-80e2-52be3626816f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-23T00:23:15.000Z" + }, + "end": { + "$date": "2021-08-23T03:15:00.000Z" + }, + "events": [ + { + "uuid": "dc4d39ce-e222-4412-b31b-b2cb8887dd7d", + "start": { + "$date": "2021-08-23T00:23:15.000Z" + }, + "end": { + "$date": "2021-08-23T03:15:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "215b4209-d231-4037-aa5c-64915faf4271", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T01:26:16.000Z" + }, + "events": [ + { + "uuid": "e4778102-307b-4890-b177-725defb5c368", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T01:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "f2f31e0e-d536-4714-a9f4-33652d75e045", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T01:19:17.000Z" + }, + "end": { + "$date": "2021-08-23T02:07:11.000Z" + }, + "events": [ + { + "uuid": "bf49cd16-ff85-4d9e-8bf4-100798b57a92", + "start": { + "$date": "2021-08-23T01:19:17.000Z" + }, + "end": { + "$date": "2021-08-23T02:07:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f9d8a6b7-e6fd-40e7-bc3e-3796990772f3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T01:40:21.000Z" + }, + "events": [ + { + "uuid": "16e99508-cbdd-4ee8-a9ff-49b5efe27893", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T01:40:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3f495764-0a07-496f-a577-01d2c069a831", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T01:51:45.000Z" + }, + "events": [ + { + "uuid": "62d49508-1f5b-487c-a9ee-abc35592911c", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T01:51:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "420e078b-5a3e-40fb-b676-521b240959c2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T02:46:37.000Z" + }, + "events": [ + { + "uuid": "76e4c1f4-3d28-4fcd-bbea-fcf4eb54ffb9", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T02:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "11d7d6ac-a3b8-47ec-9859-1da9422a807c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-23T02:03:01.000Z" + }, + "end": { + "$date": "2021-08-23T02:07:52.000Z" + }, + "events": [ + { + "uuid": "9ef2d607-e51e-48b7-98f6-e5780155d494", + "start": { + "$date": "2021-08-23T02:03:01.000Z" + }, + "end": { + "$date": "2021-08-23T02:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "ad5a074c-c845-4110-81af-6512a434907b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-23T02:44:49.000Z" + }, + "end": { + "$date": "2021-08-23T03:38:53.000Z" + }, + "events": [ + { + "uuid": "35d26e7b-f777-4c08-8eb4-beb518a257c3", + "start": { + "$date": "2021-08-23T02:44:49.000Z" + }, + "end": { + "$date": "2021-08-23T03:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0a8c624c-665b-4c08-852b-7011bee394c2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T02:58:51.000Z" + }, + "events": [ + { + "uuid": "7d7e8278-943a-4650-965d-a02d17c38aaa", + "start": { + "$date": "2021-08-23T01:16:05.000Z" + }, + "end": { + "$date": "2021-08-23T02:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "860a38f2-5a36-447d-ba7c-fa51dcc00afc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-23T03:11:22.000Z" + }, + "end": { + "$date": "2021-08-23T03:40:44.000Z" + }, + "events": [ + { + "uuid": "f89621b6-452e-4fcb-9b1c-b70e37be70c5", + "start": { + "$date": "2021-08-23T03:11:22.000Z" + }, + "end": { + "$date": "2021-08-23T03:40:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6b895957-2982-4022-b903-c81c51af4f78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-23T03:18:34.000Z" + }, + "end": { + "$date": "2021-08-23T05:51:17.000Z" + }, + "events": [ + { + "uuid": "360e1a49-4ebd-4391-bae7-e8c0e856c63e", + "start": { + "$date": "2021-08-23T03:18:34.000Z" + }, + "end": { + "$date": "2021-08-23T05:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "05f0a04b-3bb5-48c9-b0e2-d8649fca51cd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T03:37:58.000Z" + }, + "end": { + "$date": "2021-08-23T03:47:46.000Z" + }, + "events": [ + { + "uuid": "b2b33fd9-f139-48a5-958c-591509edb60b", + "start": { + "$date": "2021-08-23T03:37:58.000Z" + }, + "end": { + "$date": "2021-08-23T03:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b3b1983-55be-42af-b70a-4e5e6618eb7e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-23T03:45:33.000Z" + }, + "end": { + "$date": "2021-08-23T04:10:49.000Z" + }, + "events": [ + { + "uuid": "e475a9c2-252b-4400-997f-57ba2628265e", + "start": { + "$date": "2021-08-23T03:45:33.000Z" + }, + "end": { + "$date": "2021-08-23T04:10:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "049d6df8-4dc0-42a3-a1c0-9bc267df1cc6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T03:48:24.000Z" + }, + "end": { + "$date": "2021-08-23T04:03:43.000Z" + }, + "events": [ + { + "uuid": "75e46934-b87e-458a-b763-f20b0a2790a7", + "start": { + "$date": "2021-08-23T03:48:24.000Z" + }, + "end": { + "$date": "2021-08-23T04:03:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f043cb3e-78fe-4ca1-b8ee-eb020f37221a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-23T04:16:04.000Z" + }, + "end": { + "$date": "2021-08-23T04:55:36.000Z" + }, + "events": [ + { + "uuid": "39e3afdd-368c-4085-a66c-10066bcabadb", + "start": { + "$date": "2021-08-23T04:16:04.000Z" + }, + "end": { + "$date": "2021-08-23T04:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "aed7f56f-fe86-4792-a682-c1882ac22ec6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-23T05:50:10.000Z" + }, + "end": { + "$date": "2021-08-23T06:53:51.000Z" + }, + "events": [ + { + "uuid": "847379cf-fbcf-4dc7-8ce3-77d202c60fd7", + "start": { + "$date": "2021-08-23T05:50:10.000Z" + }, + "end": { + "$date": "2021-08-23T06:53:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "e7dbed34-2d09-49b7-a8ac-43c06d5c59db", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T14:33:52.000Z" + }, + "end": { + "$date": "2021-08-23T15:10:24.000Z" + }, + "events": [ + { + "uuid": "9998bc29-c4d9-4a36-b46a-3425891d0c31", + "start": { + "$date": "2021-08-23T14:33:52.000Z" + }, + "end": { + "$date": "2021-08-23T15:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3e66be5f-7383-48e4-bcb4-23fa135067c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T15:10:44.000Z" + }, + "end": { + "$date": "2021-08-23T15:28:56.000Z" + }, + "events": [ + { + "uuid": "41b576df-8115-4d18-9970-10af68de17d7", + "start": { + "$date": "2021-08-23T15:10:44.000Z" + }, + "end": { + "$date": "2021-08-23T15:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "83c55b9c-5bcb-4da1-b97a-c3f6996b8d58", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-23T15:27:35.000Z" + }, + "end": { + "$date": "2021-08-23T15:28:49.000Z" + }, + "events": [ + { + "uuid": "13313d93-736b-4936-922e-5ac380e17938", + "start": { + "$date": "2021-08-23T15:27:35.000Z" + }, + "end": { + "$date": "2021-08-23T15:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "6642939a-ff3d-4dce-855e-0a550bc78745", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-23T15:28:55.000Z" + }, + "end": { + "$date": "2021-08-23T18:17:52.000Z" + }, + "events": [ + { + "uuid": "8e196326-1d14-44ed-92d8-d363f80c36e9", + "start": { + "$date": "2021-08-23T15:28:55.000Z" + }, + "end": { + "$date": "2021-08-23T18:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "f43cf9de-acbd-4e33-bef7-b63d2a8da2bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T15:38:22.000Z" + }, + "end": { + "$date": "2021-08-23T22:56:58.000Z" + }, + "events": [ + { + "uuid": "43063e99-1b05-4ded-8ba6-ff4a6d704921", + "start": { + "$date": "2021-08-23T15:38:22.000Z" + }, + "end": { + "$date": "2021-08-23T16:39:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3281f84d-c926-4060-a31b-71d2ca1be83e", + "start": { + "$date": "2021-08-23T16:39:22.000Z" + }, + "end": { + "$date": "2021-08-23T16:53:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "326f9e11-55ae-4d83-9ce2-010d632b85df", + "start": { + "$date": "2021-08-23T16:53:22.000Z" + }, + "end": { + "$date": "2021-08-23T17:41:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6ceca1d6-c9f0-4a9e-b4a7-7b6545f16e9a", + "start": { + "$date": "2021-08-23T17:41:22.000Z" + }, + "end": { + "$date": "2021-08-23T17:48:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af7e7ef2-68af-446e-a635-9eb85a286eeb", + "start": { + "$date": "2021-08-23T17:48:22.000Z" + }, + "end": { + "$date": "2021-08-23T18:08:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5d779c3-15b0-4a97-b864-1950807e679b", + "start": { + "$date": "2021-08-23T18:08:22.000Z" + }, + "end": { + "$date": "2021-08-23T18:18:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4cd8ae3d-f345-4b61-a5e8-7da0e8f7877d", + "start": { + "$date": "2021-08-23T18:18:22.000Z" + }, + "end": { + "$date": "2021-08-23T19:01:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1086291b-042b-4647-a664-3173deed5a73", + "start": { + "$date": "2021-08-23T19:01:22.000Z" + }, + "end": { + "$date": "2021-08-23T19:48:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc70c1a7-dbfc-49a7-b52b-f00e097fff62", + "start": { + "$date": "2021-08-23T19:48:22.000Z" + }, + "end": { + "$date": "2021-08-23T20:14:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12393976-fdeb-4f50-a024-71c89a8ddaef", + "start": { + "$date": "2021-08-23T20:14:22.000Z" + }, + "end": { + "$date": "2021-08-23T20:19:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98fa260b-a5a3-46d3-8065-c7c95f4fb766", + "start": { + "$date": "2021-08-23T20:19:22.000Z" + }, + "end": { + "$date": "2021-08-23T20:37:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37fb68ff-c1cb-45f0-a893-310e13c3adaf", + "start": { + "$date": "2021-08-23T20:37:22.000Z" + }, + "end": { + "$date": "2021-08-23T20:49:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23ea6c8a-a66e-4863-9f9a-dc11f276437d", + "start": { + "$date": "2021-08-23T20:49:22.000Z" + }, + "end": { + "$date": "2021-08-23T21:18:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5cb3532e-e322-4f49-8b21-55745d89e894", + "start": { + "$date": "2021-08-23T21:18:22.000Z" + }, + "end": { + "$date": "2021-08-23T22:50:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a0b79ce-344f-4545-92fe-f2d7715fe357", + "start": { + "$date": "2021-08-23T22:50:22.000Z" + }, + "end": { + "$date": "2021-08-23T22:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78919c54-31ba-43ba-a995-105cbcbf21ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-23T17:41:56.000Z" + }, + "end": { + "$date": "2021-08-23T18:06:30.000Z" + }, + "events": [ + { + "uuid": "17c1126a-7639-4af5-9b5a-397c1c4fc603", + "start": { + "$date": "2021-08-23T17:41:56.000Z" + }, + "end": { + "$date": "2021-08-23T18:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b40cd9b-a665-4a4a-8871-dbb0bf989f79", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-23T18:12:44.000Z" + }, + "end": { + "$date": "2021-08-23T18:32:25.000Z" + }, + "events": [ + { + "uuid": "7ac7a488-97c0-4c63-9a4f-e99b0eae9fb1", + "start": { + "$date": "2021-08-23T18:12:44.000Z" + }, + "end": { + "$date": "2021-08-23T18:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38fb76a8-a4af-4c76-a950-43483849cae9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-23T18:39:07.000Z" + }, + "end": { + "$date": "2021-08-23T19:02:21.000Z" + }, + "events": [ + { + "uuid": "48ac90d8-bab5-4131-a496-ebdaa3451a71", + "start": { + "$date": "2021-08-23T18:39:07.000Z" + }, + "end": { + "$date": "2021-08-23T19:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9378c878-6716-4e69-a278-3fd0e0f20538", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-23T19:14:43.000Z" + }, + "end": { + "$date": "2021-08-23T19:50:45.000Z" + }, + "events": [ + { + "uuid": "6f4b01f9-c8a8-477a-bdc2-95c9556632ee", + "start": { + "$date": "2021-08-23T19:14:43.000Z" + }, + "end": { + "$date": "2021-08-23T19:50:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b8202fc-77fc-4c5c-87f2-9561dcdb0a52", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-23T19:51:42.000Z" + }, + "end": { + "$date": "2021-08-23T20:42:05.000Z" + }, + "events": [ + { + "uuid": "695f64cc-4f84-411a-bc18-310d9ec50f65", + "start": { + "$date": "2021-08-23T19:51:42.000Z" + }, + "end": { + "$date": "2021-08-23T20:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b3a53ac8-e047-4737-be3c-3fbb2d69f581", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T23:06:39.000Z" + }, + "end": { + "$date": "2021-08-23T23:06:44.000Z" + }, + "events": [ + { + "uuid": "e8aae8d0-b989-4ad8-9514-a81558a278cf", + "start": { + "$date": "2021-08-23T23:06:39.000Z" + }, + "end": { + "$date": "2021-08-23T23:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bd5f0ee-a837-49ad-b6c0-d95915395eea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-23T23:07:04.000Z" + }, + "end": { + "$date": "2021-08-24T02:10:03.000Z" + }, + "events": [ + { + "uuid": "27882e49-4ddf-41a6-a757-4abcc09cc04b", + "start": { + "$date": "2021-08-23T23:07:04.000Z" + }, + "end": { + "$date": "2021-08-24T02:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", + "uuid": "278e16e8-4120-4bef-8beb-68dfce766cc7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-23T23:41:22.000Z" + }, + "end": { + "$date": "2021-08-23T23:42:32.000Z" + }, + "events": [ + { + "uuid": "5d181db1-75c3-41a6-8e39-bcadde072d37", + "start": { + "$date": "2021-08-23T23:41:22.000Z" + }, + "end": { + "$date": "2021-08-23T23:42:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", + "uuid": "701843b7-dce0-4a2f-bcee-e34f471ee3f3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-24T00:39:58.000Z" + }, + "end": { + "$date": "2021-08-24T00:41:28.000Z" + }, + "events": [ + { + "uuid": "a6a6efb6-b178-4bf3-ae78-853dac133b82", + "start": { + "$date": "2021-08-24T00:39:58.000Z" + }, + "end": { + "$date": "2021-08-24T00:41:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "09571448-2d0f-4253-82e3-ebc9ee979187", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-24T00:48:34.000Z" + }, + "end": { + "$date": "2021-08-24T01:24:28.000Z" + }, + "events": [ + { + "uuid": "4ef697ca-0882-4065-8a90-0ad57371c298", + "start": { + "$date": "2021-08-24T00:48:34.000Z" + }, + "end": { + "$date": "2021-08-24T01:24:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99cb378b-0a38-4745-8168-f86e50fcb164", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T02:10:18.000Z" + }, + "end": { + "$date": "2021-08-24T04:34:03.000Z" + }, + "events": [ + { + "uuid": "8d866570-12ad-44a1-9370-f58ef2f6cd51", + "start": { + "$date": "2021-08-24T02:10:18.000Z" + }, + "end": { + "$date": "2021-08-24T04:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "1b5dba67-bbfe-470d-9836-ffefcada2864", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-24T02:34:18.000Z" + }, + "end": { + "$date": "2021-08-24T03:33:44.000Z" + }, + "events": [ + { + "uuid": "70ac609e-2068-4cad-b600-dfc7b13663bc", + "start": { + "$date": "2021-08-24T02:34:18.000Z" + }, + "end": { + "$date": "2021-08-24T03:33:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6b3dfe9a-7fec-45fe-a163-40ee3c7d2bd5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-24T02:34:28.000Z" + }, + "end": { + "$date": "2021-08-24T03:39:37.000Z" + }, + "events": [ + { + "uuid": "a4a0abae-1a5c-4da2-a3f2-03c96fc5478e", + "start": { + "$date": "2021-08-24T02:34:28.000Z" + }, + "end": { + "$date": "2021-08-24T03:39:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", + "uuid": "bf2645c7-4e3b-4435-aa17-d45f18722ba9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-24T03:33:48.000Z" + }, + "end": { + "$date": "2021-08-24T03:37:14.000Z" + }, + "events": [ + { + "uuid": "6119ae86-32c7-483b-ad32-96f16f88c290", + "start": { + "$date": "2021-08-24T03:33:48.000Z" + }, + "end": { + "$date": "2021-08-24T03:37:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", + "uuid": "c69f56a9-c283-40de-9562-ac0473c86341", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-24T03:37:29.000Z" + }, + "end": { + "$date": "2021-08-24T04:35:52.000Z" + }, + "events": [ + { + "uuid": "0e2d4dd0-0cb0-406b-a42f-dc6bf1d3c3e4", + "start": { + "$date": "2021-08-24T03:37:29.000Z" + }, + "end": { + "$date": "2021-08-24T04:35:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8e80a994-8c5b-4fae-ab7f-766966c0177c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-24T03:41:21.000Z" + }, + "end": { + "$date": "2021-08-24T05:33:40.000Z" + }, + "events": [ + { + "uuid": "54e95499-536f-42d3-88d6-01b3845fd526", + "start": { + "$date": "2021-08-24T03:41:21.000Z" + }, + "end": { + "$date": "2021-08-24T05:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4611d0c-db06-44fc-8fc6-f3ba0e6818f3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-24T04:40:17.000Z" + }, + "end": { + "$date": "2021-08-24T05:03:19.000Z" + }, + "events": [ + { + "uuid": "93c28dfb-3217-4ce7-881a-a105bf3d8b6b", + "start": { + "$date": "2021-08-24T04:40:17.000Z" + }, + "end": { + "$date": "2021-08-24T05:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35a72dff-29ff-4dc9-ab49-abc8c7e0e881", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-24T05:15:53.000Z" + }, + "end": { + "$date": "2021-08-24T05:52:50.000Z" + }, + "events": [ + { + "uuid": "f49825d0-d181-4add-b74b-526647ab16b0", + "start": { + "$date": "2021-08-24T05:15:53.000Z" + }, + "end": { + "$date": "2021-08-24T05:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cc809ebd-331f-41f1-979a-7db5d4347b71", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-24T03:41:21.000Z" + }, + "end": { + "$date": "2021-08-24T06:50:28.000Z" + }, + "events": [ + { + "uuid": "dfbeba0c-3815-4006-9d26-7286d575236a", + "start": { + "$date": "2021-08-24T03:41:21.000Z" + }, + "end": { + "$date": "2021-08-24T06:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adf83edd-7b65-4d2d-a35e-7b1dfc28e268", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-24T05:55:39.000Z" + }, + "end": { + "$date": "2021-08-24T06:00:46.000Z" + }, + "events": [ + { + "uuid": "d366c344-fc2b-40f1-99b5-9b9c8a008173", + "start": { + "$date": "2021-08-24T05:55:39.000Z" + }, + "end": { + "$date": "2021-08-24T06:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f50f770b-7e29-4c37-a38a-c40d099d6023", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-24T06:34:27.000Z" + }, + "end": { + "$date": "2021-08-24T06:52:57.000Z" + }, + "events": [ + { + "uuid": "72aadd10-073d-47d2-9a1f-e02129aee8cb", + "start": { + "$date": "2021-08-24T06:34:27.000Z" + }, + "end": { + "$date": "2021-08-24T06:52:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a82953ca-2160-42cf-a251-3fb33b994e5c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-24T03:41:21.000Z" + }, + "end": { + "$date": "2021-08-24T07:37:18.000Z" + }, + "events": [ + { + "uuid": "6d067f67-c4ed-4c83-bec8-3cf0afbf040c", + "start": { + "$date": "2021-08-24T03:41:21.000Z" + }, + "end": { + "$date": "2021-08-24T07:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98a57f07-0e43-4649-95d5-3dcd11d124bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-24T07:01:09.000Z" + }, + "end": { + "$date": "2021-08-24T07:34:09.000Z" + }, + "events": [ + { + "uuid": "b3f28a07-9c8a-45b4-abbd-db051e0a9a85", + "start": { + "$date": "2021-08-24T07:01:09.000Z" + }, + "end": { + "$date": "2021-08-24T07:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1747ff93-dd51-4b29-bacd-79642b095be3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-24T07:43:30.000Z" + }, + "end": { + "$date": "2021-08-24T08:15:01.000Z" + }, + "events": [ + { + "uuid": "a8305018-8e5c-4f27-a25c-dcef63ea4976", + "start": { + "$date": "2021-08-24T07:43:30.000Z" + }, + "end": { + "$date": "2021-08-24T08:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2eab47a4-bf46-4c9a-8a8d-f6008a16eacb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-24T08:20:18.000Z" + }, + "end": { + "$date": "2021-08-24T08:53:12.000Z" + }, + "events": [ + { + "uuid": "0b5674d2-0b7e-46ed-8cb1-a1d46840bd95", + "start": { + "$date": "2021-08-24T08:20:18.000Z" + }, + "end": { + "$date": "2021-08-24T08:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96f21782-08f5-4588-ab77-79e0dc1dc8d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-24T09:00:14.000Z" + }, + "end": { + "$date": "2021-08-24T09:32:03.000Z" + }, + "events": [ + { + "uuid": "b82165d8-1728-4e20-9312-db82025c9232", + "start": { + "$date": "2021-08-24T09:00:14.000Z" + }, + "end": { + "$date": "2021-08-24T09:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c760cede-05b1-4713-83e5-f1880c249018", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-24T09:48:58.000Z" + }, + "end": { + "$date": "2021-08-24T10:02:48.000Z" + }, + "events": [ + { + "uuid": "160e554a-416b-404a-8111-55070a72001a", + "start": { + "$date": "2021-08-24T09:48:58.000Z" + }, + "end": { + "$date": "2021-08-24T10:02:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "b516c151-54a3-43f7-b975-3f17259f4e04", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T14:28:45.000Z" + }, + "end": { + "$date": "2021-08-24T15:56:29.000Z" + }, + "events": [ + { + "uuid": "f8af5b5e-db19-4ae4-ac9b-40d790fc280f", + "start": { + "$date": "2021-08-24T14:28:45.000Z" + }, + "end": { + "$date": "2021-08-24T15:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d2132a3b-8d80-4c7f-be54-082a28fd9a84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-24T15:34:43.000Z" + }, + "end": { + "$date": "2021-08-24T16:39:41.000Z" + }, + "events": [ + { + "uuid": "ca1b5d87-2f2d-4c97-99d1-d6c268911139", + "start": { + "$date": "2021-08-24T15:34:43.000Z" + }, + "end": { + "$date": "2021-08-24T16:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0253048a-5fa0-445f-bdde-0ddb093d4991", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T15:58:14.000Z" + }, + "end": { + "$date": "2021-08-24T16:14:31.000Z" + }, + "events": [ + { + "uuid": "fc7e9cdb-7d87-4232-bd68-121e3224437f", + "start": { + "$date": "2021-08-24T15:58:14.000Z" + }, + "end": { + "$date": "2021-08-24T16:14:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5dd9fb1b-7ba4-4292-9bd6-739afb3dbc57", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T16:14:36.000Z" + }, + "end": { + "$date": "2021-08-24T16:45:52.000Z" + }, + "events": [ + { + "uuid": "6160a65a-e845-4746-828f-bdde01fd5bb4", + "start": { + "$date": "2021-08-24T16:14:36.000Z" + }, + "end": { + "$date": "2021-08-24T16:45:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "c7718b4c-1e1b-4453-8ef3-429f23702d9a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-24T17:04:27.000Z" + }, + "end": { + "$date": "2021-08-24T17:06:22.000Z" + }, + "events": [ + { + "uuid": "0895c041-306e-45ad-bebb-827e98e3c35f", + "start": { + "$date": "2021-08-24T17:04:27.000Z" + }, + "end": { + "$date": "2021-08-24T17:06:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "6304b781-9d05-438d-98ec-3530751ae3ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-24T17:06:30.000Z" + }, + "end": { + "$date": "2021-08-24T18:22:02.000Z" + }, + "events": [ + { + "uuid": "d353a199-a85d-4e1d-8793-6172f395fd53", + "start": { + "$date": "2021-08-24T17:06:30.000Z" + }, + "end": { + "$date": "2021-08-24T18:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62c4e081-8b6e-424c-9f84-936596265200", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T17:45:50.000Z" + }, + "end": { + "$date": "2021-08-24T19:48:57.000Z" + }, + "events": [ + { + "uuid": "825af129-9021-4c8e-bd0c-162f5469bb01", + "start": { + "$date": "2021-08-24T17:45:50.000Z" + }, + "end": { + "$date": "2021-08-24T19:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "198b1d18-40f8-4352-ad61-420daa36ca3a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T21:15:18.000Z" + }, + "end": { + "$date": "2021-08-24T21:16:39.000Z" + }, + "events": [ + { + "uuid": "180c570d-475d-4a4d-b0bb-28a7111cfcc7", + "start": { + "$date": "2021-08-24T21:15:18.000Z" + }, + "end": { + "$date": "2021-08-24T21:16:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6807e74f-5f62-465c-9103-c00da1430022", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T21:18:14.000Z" + }, + "end": { + "$date": "2021-08-24T21:47:15.000Z" + }, + "events": [ + { + "uuid": "19533ac1-5b0b-4d6b-85af-f400830c4a60", + "start": { + "$date": "2021-08-24T21:18:14.000Z" + }, + "end": { + "$date": "2021-08-24T21:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d854240a-8956-43e6-8338-7a327deb3084", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T23:18:39.000Z" + }, + "end": { + "$date": "2021-08-24T23:18:49.000Z" + }, + "events": [ + { + "uuid": "4d024713-620f-4f94-96ae-acbcf23bc5fe", + "start": { + "$date": "2021-08-24T23:18:39.000Z" + }, + "end": { + "$date": "2021-08-24T23:18:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3f9cdd91-c023-42b2-a671-71d2e2cf3662", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-24T23:51:43.000Z" + }, + "end": { + "$date": "2021-08-25T00:57:16.000Z" + }, + "events": [ + { + "uuid": "499ab2a7-aa9d-49df-afbb-66b7e3797bd7", + "start": { + "$date": "2021-08-24T23:51:43.000Z" + }, + "end": { + "$date": "2021-08-25T00:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "78d6842f-d7a5-4b73-a00e-9886be8b9784", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-25T00:19:52.000Z" + }, + "end": { + "$date": "2021-08-25T01:38:33.000Z" + }, + "events": [ + { + "uuid": "1cb986ae-7e53-4bdc-a830-013e3f7fc5a7", + "start": { + "$date": "2021-08-25T00:19:52.000Z" + }, + "end": { + "$date": "2021-08-25T01:38:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5e624eac-3e75-4880-a11b-71759963f314", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-25T01:38:40.000Z" + }, + "end": { + "$date": "2021-08-25T05:17:37.000Z" + }, + "events": [ + { + "uuid": "b38b0892-8402-463f-9911-c793fd70e90b", + "start": { + "$date": "2021-08-25T01:38:40.000Z" + }, + "end": { + "$date": "2021-08-25T05:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9fb47aa9-a580-4135-b468-324ef090882c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-25T01:54:44.000Z" + }, + "end": { + "$date": "2021-08-25T02:03:34.000Z" + }, + "events": [ + { + "uuid": "eaff7d8b-dd54-4f32-ac6a-86404c038b8a", + "start": { + "$date": "2021-08-25T01:54:44.000Z" + }, + "end": { + "$date": "2021-08-25T02:03:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "973c87ac-b8cb-4efe-8fa0-0172ead8d751", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T02:58:43.000Z" + }, + "end": { + "$date": "2021-08-25T03:29:52.000Z" + }, + "events": [ + { + "uuid": "bd1fa749-9018-409a-8b79-66fb58ab17a2", + "start": { + "$date": "2021-08-25T02:58:43.000Z" + }, + "end": { + "$date": "2021-08-25T03:29:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c8244d41-55eb-4dc9-8a84-e8ccdec3bc61", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T03:39:38.000Z" + }, + "end": { + "$date": "2021-08-25T03:41:34.000Z" + }, + "events": [ + { + "uuid": "11158df9-df72-4f27-b1f8-09486f30e5d3", + "start": { + "$date": "2021-08-25T03:39:38.000Z" + }, + "end": { + "$date": "2021-08-25T03:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0054340-7a4a-49f7-8c85-e4ef038612ce", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-25T04:37:34.000Z" + }, + "end": { + "$date": "2021-08-25T05:11:54.000Z" + }, + "events": [ + { + "uuid": "ddee4f38-ada5-4e70-b721-71512ec714e1", + "start": { + "$date": "2021-08-25T04:37:34.000Z" + }, + "end": { + "$date": "2021-08-25T05:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "070c7e35-c806-4dc2-8ecf-1c2456fac051", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-25T05:20:10.000Z" + }, + "end": { + "$date": "2021-08-25T05:45:40.000Z" + }, + "events": [ + { + "uuid": "105006f3-cc5a-4170-9ec8-4c0d5452794d", + "start": { + "$date": "2021-08-25T05:20:10.000Z" + }, + "end": { + "$date": "2021-08-25T05:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6d7ceb36-af99-4685-874b-97b9fba18069", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-25T05:17:45.000Z" + }, + "end": { + "$date": "2021-08-25T06:32:22.000Z" + }, + "events": [ + { + "uuid": "05208427-458b-4b89-b2ce-772826abbce4", + "start": { + "$date": "2021-08-25T05:17:45.000Z" + }, + "end": { + "$date": "2021-08-25T06:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ee23c23d-410f-4e01-a3e1-10431a84ed32", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T05:32:33.000Z" + }, + "end": { + "$date": "2021-08-25T06:57:58.000Z" + }, + "events": [ + { + "uuid": "2acab584-f90a-4c4b-8301-a6230e1e30bf", + "start": { + "$date": "2021-08-25T05:32:33.000Z" + }, + "end": { + "$date": "2021-08-25T06:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26b5ba70-c476-4a57-9d94-8e90d4315741", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T07:04:41.000Z" + }, + "end": { + "$date": "2021-08-25T07:41:51.000Z" + }, + "events": [ + { + "uuid": "f1fa334d-52a8-4860-901b-bc946baa0a44", + "start": { + "$date": "2021-08-25T07:04:41.000Z" + }, + "end": { + "$date": "2021-08-25T07:41:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65845e55-5c98-40bc-a2f4-49ce4be24de0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T07:56:09.000Z" + }, + "end": { + "$date": "2021-08-25T08:13:49.000Z" + }, + "events": [ + { + "uuid": "bbb08a6d-9227-4b93-8587-da6d27cb9456", + "start": { + "$date": "2021-08-25T07:56:09.000Z" + }, + "end": { + "$date": "2021-08-25T08:13:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "497e31b8-d459-4c05-98b0-5b8d7a00d524", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T15:14:32.000Z" + }, + "end": { + "$date": "2021-08-25T15:47:59.000Z" + }, + "events": [ + { + "uuid": "8efcea4e-5787-4815-8602-08aad8a253e0", + "start": { + "$date": "2021-08-25T15:14:32.000Z" + }, + "end": { + "$date": "2021-08-25T15:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a66d1bf1-12ad-481e-b882-2c2e32310cbe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T15:52:05.000Z" + }, + "end": { + "$date": "2021-08-25T15:56:51.000Z" + }, + "events": [ + { + "uuid": "8927eef6-3029-4cd8-8d2e-8743150922da", + "start": { + "$date": "2021-08-25T15:52:05.000Z" + }, + "end": { + "$date": "2021-08-25T15:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "afec0e83-a6c2-41e7-afa6-8946d29950bd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T15:57:06.000Z" + }, + "end": { + "$date": "2021-08-25T16:12:13.000Z" + }, + "events": [ + { + "uuid": "1e9f45fc-3b50-4be3-ab96-48f8b00f04fc", + "start": { + "$date": "2021-08-25T15:57:06.000Z" + }, + "end": { + "$date": "2021-08-25T16:12:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "da3f5266-840b-419d-9c16-6bfa0178f522", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T16:12:42.000Z" + }, + "end": { + "$date": "2021-08-25T16:33:49.000Z" + }, + "events": [ + { + "uuid": "544a933a-1504-4bb8-8a3f-59d939656d4c", + "start": { + "$date": "2021-08-25T16:12:42.000Z" + }, + "end": { + "$date": "2021-08-25T16:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "9d9ea98f-bb71-46bb-97be-eb93b8507544", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T16:42:25.000Z" + }, + "end": { + "$date": "2021-08-25T17:20:07.000Z" + }, + "events": [ + { + "uuid": "c27fbc68-0859-4069-a70e-768ef64f5bf1", + "start": { + "$date": "2021-08-25T16:42:25.000Z" + }, + "end": { + "$date": "2021-08-25T17:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e9e5391-9953-4cf2-811b-a0c58429b608", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T16:53:05.000Z" + }, + "end": { + "$date": "2021-08-25T17:27:22.000Z" + }, + "events": [ + { + "uuid": "bfa7d607-79e6-41fa-949f-bdf4f7352adb", + "start": { + "$date": "2021-08-25T16:53:05.000Z" + }, + "end": { + "$date": "2021-08-25T17:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a55b8593-c1ad-4974-9431-21004c2cab62", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-25T16:59:02.000Z" + }, + "end": { + "$date": "2021-08-25T17:48:39.000Z" + }, + "events": [ + { + "uuid": "126da525-0c59-45f5-9ff2-d40a36e7157f", + "start": { + "$date": "2021-08-25T16:59:02.000Z" + }, + "end": { + "$date": "2021-08-25T17:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "95ffef66-51e6-4a35-bd12-66c895b0c244", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-25T17:26:53.000Z" + }, + "end": { + "$date": "2021-08-25T17:35:44.000Z" + }, + "events": [ + { + "uuid": "627e6019-30c1-4e1e-8098-82c7a21fab9c", + "start": { + "$date": "2021-08-25T17:26:53.000Z" + }, + "end": { + "$date": "2021-08-25T17:35:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "c33582da-6a56-4be7-82c4-b52b323a6160", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-26T02:46:05.000Z" + }, + "end": { + "$date": "2021-08-26T02:46:10.000Z" + }, + "events": [ + { + "uuid": "9a3e9d68-7264-4298-9c1f-1a72d2440a56", + "start": { + "$date": "2021-08-26T02:46:05.000Z" + }, + "end": { + "$date": "2021-08-26T02:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8da88e56-ba2e-4afa-96cb-9f85a8d0d0d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T22:50:14.000Z" + }, + "end": { + "$date": "2021-08-25T23:16:30.000Z" + }, + "events": [ + { + "uuid": "5ec4ab92-1722-4073-90a2-d6063afed835", + "start": { + "$date": "2021-08-25T22:50:14.000Z" + }, + "end": { + "$date": "2021-08-25T23:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b36e3245-a5cf-4afb-b8b4-3ce7ed2f83dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T23:19:30.000Z" + }, + "end": { + "$date": "2021-08-25T23:29:59.000Z" + }, + "events": [ + { + "uuid": "fa9349b0-035e-454b-aecf-16c1dcecfb7b", + "start": { + "$date": "2021-08-25T23:19:30.000Z" + }, + "end": { + "$date": "2021-08-25T23:29:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c67ed99f-fb10-414b-9ee1-a284f2ee812f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T23:30:55.000Z" + }, + "end": { + "$date": "2021-08-25T23:32:32.000Z" + }, + "events": [ + { + "uuid": "fc8de455-c41d-4775-bc11-d36474b689ad", + "start": { + "$date": "2021-08-25T23:30:55.000Z" + }, + "end": { + "$date": "2021-08-25T23:32:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c3918a79-08bd-4774-aded-8f00af75f6bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-25T23:34:55.000Z" + }, + "end": { + "$date": "2021-08-26T00:19:12.000Z" + }, + "events": [ + { + "uuid": "2d843ab5-daef-4cd2-a008-deebb0f80823", + "start": { + "$date": "2021-08-25T23:34:55.000Z" + }, + "end": { + "$date": "2021-08-26T00:19:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8b82b2cc-2fc9-4031-8da2-92f9e7f4c9cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-25T23:55:42.000Z" + }, + "end": { + "$date": "2021-08-26T00:02:12.000Z" + }, + "events": [ + { + "uuid": "64f4d942-371c-4421-9286-655e01dbb336", + "start": { + "$date": "2021-08-25T23:55:42.000Z" + }, + "end": { + "$date": "2021-08-26T00:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "129b6164-6962-439f-898f-f59fe3238fad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-26T00:35:46.000Z" + }, + "end": { + "$date": "2021-08-26T01:04:27.000Z" + }, + "events": [ + { + "uuid": "ea04f9b5-a5b2-480e-830a-a8a9dbd13ce2", + "start": { + "$date": "2021-08-26T00:35:46.000Z" + }, + "end": { + "$date": "2021-08-26T01:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08138fb5-5020-4878-ae0a-b34f736a85e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-26T00:35:48.000Z" + }, + "end": { + "$date": "2021-08-26T01:04:19.000Z" + }, + "events": [ + { + "uuid": "6b0fea26-ea92-4a90-9a86-7a66cc2e2800", + "start": { + "$date": "2021-08-26T00:35:48.000Z" + }, + "end": { + "$date": "2021-08-26T01:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "66f57e5d-4174-47e4-91c7-8d089920e023", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-26T00:32:32.000Z" + }, + "end": { + "$date": "2021-08-26T02:19:03.000Z" + }, + "events": [ + { + "uuid": "9569d30f-3ee7-496b-8470-503e8aea2173", + "start": { + "$date": "2021-08-26T00:32:32.000Z" + }, + "end": { + "$date": "2021-08-26T02:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99899f28-4e04-46f2-bb14-2782f523260a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-26T01:08:28.000Z" + }, + "end": { + "$date": "2021-08-26T01:19:27.000Z" + }, + "events": [ + { + "uuid": "54e6ca65-3d66-41f8-9fbd-610d35862b53", + "start": { + "$date": "2021-08-26T01:08:28.000Z" + }, + "end": { + "$date": "2021-08-26T01:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba4bcd85-c5dc-47e3-86cc-a712799ad27d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-26T01:09:04.000Z" + }, + "end": { + "$date": "2021-08-26T01:19:19.000Z" + }, + "events": [ + { + "uuid": "e20b03ec-e304-4258-a278-77960bc1bb0d", + "start": { + "$date": "2021-08-26T01:09:04.000Z" + }, + "end": { + "$date": "2021-08-26T01:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "fa872ee1-8bbc-446d-8f7a-3a3f6a54e363", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-26T01:07:51.000Z" + }, + "end": { + "$date": "2021-08-26T01:21:37.000Z" + }, + "events": [ + { + "uuid": "965131c0-f4e2-49cd-aedc-a929bbabc6ea", + "start": { + "$date": "2021-08-26T01:07:51.000Z" + }, + "end": { + "$date": "2021-08-26T01:21:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "554e8d67-153b-4d1b-8799-9de0b959fd27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-26T01:25:09.000Z" + }, + "end": { + "$date": "2021-08-26T01:41:43.000Z" + }, + "events": [ + { + "uuid": "63fcd318-c5e3-49da-8373-89234a244f8c", + "start": { + "$date": "2021-08-26T01:25:09.000Z" + }, + "end": { + "$date": "2021-08-26T01:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "714b0e20-b7bd-4891-b1e0-02849f604b72", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-26T01:25:27.000Z" + }, + "end": { + "$date": "2021-08-26T01:41:32.000Z" + }, + "events": [ + { + "uuid": "23f4d354-2224-41ea-ab9e-8462cea32c0a", + "start": { + "$date": "2021-08-26T01:25:27.000Z" + }, + "end": { + "$date": "2021-08-26T01:41:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "4c9b14b6-d69f-4de3-992d-5d3f94005a6e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-26T01:36:11.000Z" + }, + "end": { + "$date": "2021-08-26T02:45:58.000Z" + }, + "events": [ + { + "uuid": "24d77ed6-18da-4f10-8316-43db13e046f9", + "start": { + "$date": "2021-08-26T01:36:11.000Z" + }, + "end": { + "$date": "2021-08-26T02:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca24cedc-05ea-4011-a5d1-eb77fd508e5d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-26T01:41:56.000Z" + }, + "end": { + "$date": "2021-08-26T01:54:04.000Z" + }, + "events": [ + { + "uuid": "f31e064f-d6fb-4104-b1fc-0e2c0a88878d", + "start": { + "$date": "2021-08-26T01:41:56.000Z" + }, + "end": { + "$date": "2021-08-26T01:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "768f5308-fa1d-4047-8b74-80e61de9ffab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-26T01:42:53.000Z" + }, + "end": { + "$date": "2021-08-26T02:41:14.000Z" + }, + "events": [ + { + "uuid": "99d340a7-6b26-4d78-989f-1a88859875bc", + "start": { + "$date": "2021-08-26T01:42:53.000Z" + }, + "end": { + "$date": "2021-08-26T02:41:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "7d99489e-eb0e-4ac5-b2bd-9d667e3ad3fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-26T02:19:12.000Z" + }, + "end": { + "$date": "2021-08-26T02:36:42.000Z" + }, + "events": [ + { + "uuid": "43279e41-a6d1-47ec-b7fc-a290436f6b29", + "start": { + "$date": "2021-08-26T02:19:12.000Z" + }, + "end": { + "$date": "2021-08-26T02:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4a678c11-6192-4c24-9466-8ba513228000", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-26T02:36:58.000Z" + }, + "end": { + "$date": "2021-08-26T05:33:11.000Z" + }, + "events": [ + { + "uuid": "629d2681-60c4-439c-9a7d-6a738c194523", + "start": { + "$date": "2021-08-26T02:36:58.000Z" + }, + "end": { + "$date": "2021-08-26T05:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", + "uuid": "1d767e06-16b0-4023-bf83-64f6512fb464", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-26T02:45:14.000Z" + }, + "end": { + "$date": "2021-08-26T02:56:25.000Z" + }, + "events": [ + { + "uuid": "05cb112b-b40d-4391-9ff1-06ee6029346f", + "start": { + "$date": "2021-08-26T02:45:14.000Z" + }, + "end": { + "$date": "2021-08-26T02:56:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "e72b229d-74a7-4497-81ae-6caf74b5c498", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-26T02:56:11.000Z" + }, + "end": { + "$date": "2021-08-26T03:21:12.000Z" + }, + "events": [ + { + "uuid": "bc00aa0d-1487-4ccb-b675-c18d4a4cba28", + "start": { + "$date": "2021-08-26T02:56:11.000Z" + }, + "end": { + "$date": "2021-08-26T03:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "28320ced-6663-451c-865f-e8e44725d60e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-26T03:18:24.000Z" + }, + "end": { + "$date": "2021-08-26T03:20:21.000Z" + }, + "events": [ + { + "uuid": "b4691f93-23f3-4c13-a27c-1497e74ad5e7", + "start": { + "$date": "2021-08-26T03:18:24.000Z" + }, + "end": { + "$date": "2021-08-26T03:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "074f327a-874d-49c5-a3dc-358e33f07764", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-26T03:24:37.000Z" + }, + "end": { + "$date": "2021-08-26T03:26:18.000Z" + }, + "events": [ + { + "uuid": "80a8d13a-fe32-4b6c-af64-9f6cc26100f7", + "start": { + "$date": "2021-08-26T03:24:37.000Z" + }, + "end": { + "$date": "2021-08-26T03:26:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "65b88241-5482-4dd5-a8c7-f78ef0799ebd", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-26T03:29:19.000Z" + }, + "end": { + "$date": "2021-08-26T04:24:11.000Z" + }, + "events": [ + { + "uuid": "03dc36c4-6655-49ac-b501-4c1ba6cd1617", + "start": { + "$date": "2021-08-26T03:29:19.000Z" + }, + "end": { + "$date": "2021-08-26T04:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "88479ca2-dac6-436b-8077-f114ee7736bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-26T03:32:03.000Z" + }, + "end": { + "$date": "2021-08-26T03:43:55.000Z" + }, + "events": [ + { + "uuid": "1b68ef18-f97c-47de-ae4f-3af8933dbc88", + "start": { + "$date": "2021-08-26T03:32:03.000Z" + }, + "end": { + "$date": "2021-08-26T03:43:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "7446aedd-73a3-4607-94c5-a19fbf1b3115", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-26T04:18:56.000Z" + }, + "end": { + "$date": "2021-08-26T05:18:19.000Z" + }, + "events": [ + { + "uuid": "16594726-7885-403f-a23d-e19193adb404", + "start": { + "$date": "2021-08-26T04:18:56.000Z" + }, + "end": { + "$date": "2021-08-26T05:18:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "76c22a5c-7085-4ae3-8c71-72f7bbe0d8b7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-26T04:24:31.000Z" + }, + "end": { + "$date": "2021-08-26T06:59:58.000Z" + }, + "events": [ + { + "uuid": "6b419e90-a4c6-4aff-bb90-23cff8027955", + "start": { + "$date": "2021-08-26T04:24:31.000Z" + }, + "end": { + "$date": "2021-08-26T06:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36360867-e8b9-4132-8ad8-47160ad55ca3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-26T04:57:36.000Z" + }, + "end": { + "$date": "2021-08-26T05:20:01.000Z" + }, + "events": [ + { + "uuid": "4e029fae-4e2c-4c4c-b5fa-1c27c2eea799", + "start": { + "$date": "2021-08-26T04:57:36.000Z" + }, + "end": { + "$date": "2021-08-26T05:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4e8341c5-6942-4044-9dae-78586b93afd0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-26T05:02:13.000Z" + }, + "end": { + "$date": "2021-08-26T07:21:00.000Z" + }, + "events": [ + { + "uuid": "b7eef270-f4c3-4004-ab25-e8c3ac81fd9b", + "start": { + "$date": "2021-08-26T05:02:13.000Z" + }, + "end": { + "$date": "2021-08-26T07:21:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8fc595fc-b7fd-4fea-b07d-c27a36d6fae6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-26T05:02:14.000Z" + }, + "end": { + "$date": "2021-08-26T07:20:48.000Z" + }, + "events": [ + { + "uuid": "3352047c-2cc2-4063-baba-7b856475ddd5", + "start": { + "$date": "2021-08-26T05:02:14.000Z" + }, + "end": { + "$date": "2021-08-26T07:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b7af7b7c-f2a9-4db0-8d44-4f7e84708863", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-26T05:36:12.000Z" + }, + "end": { + "$date": "2021-08-26T07:21:03.000Z" + }, + "events": [ + { + "uuid": "d106feec-2c7a-48f1-a9f4-23b0df624064", + "start": { + "$date": "2021-08-26T05:36:12.000Z" + }, + "end": { + "$date": "2021-08-26T07:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4724f6b0-a124-4913-ba0c-23a5609c3f13", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-26T07:22:59.000Z" + }, + "end": { + "$date": "2021-08-26T07:59:07.000Z" + }, + "events": [ + { + "uuid": "0e99477a-d655-4aca-b90c-066d11e8a507", + "start": { + "$date": "2021-08-26T07:22:59.000Z" + }, + "end": { + "$date": "2021-08-26T07:59:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "88dbd3bf-a4b0-4763-9cf2-2fd68fbe25fd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-26T07:26:00.000Z" + }, + "end": { + "$date": "2021-08-26T08:10:41.000Z" + }, + "events": [ + { + "uuid": "6222b522-9d99-4553-b265-f25f613441c2", + "start": { + "$date": "2021-08-26T07:26:00.000Z" + }, + "end": { + "$date": "2021-08-26T08:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "e889336b-f71a-4195-8009-ff52cd148422", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-26T15:13:19.000Z" + }, + "end": { + "$date": "2021-08-26T15:26:14.000Z" + }, + "events": [ + { + "uuid": "7a7d0db7-fc2f-49a7-9d99-dc31763a0081", + "start": { + "$date": "2021-08-26T15:13:19.000Z" + }, + "end": { + "$date": "2021-08-26T15:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4727bc1a-6d69-4a98-a63f-07658eab0f95", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-26T17:07:31.000Z" + }, + "end": { + "$date": "2021-08-26T19:11:19.000Z" + }, + "events": [ + { + "uuid": "bd57a5d9-bb9f-4658-ad38-2251a45e8e86", + "start": { + "$date": "2021-08-26T17:07:31.000Z" + }, + "end": { + "$date": "2021-08-26T19:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e188cca1-5fe5-4b47-b66c-2bfbec4274c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-26T19:11:34.000Z" + }, + "end": { + "$date": "2021-08-26T19:23:39.000Z" + }, + "events": [ + { + "uuid": "70879950-4b02-4415-be51-7b5a022fa496", + "start": { + "$date": "2021-08-26T19:11:34.000Z" + }, + "end": { + "$date": "2021-08-26T19:23:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f0ad3a2a-24a1-4a45-8e45-f1cf6c7b01fd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-26T22:29:20.000Z" + }, + "end": { + "$date": "2021-08-26T22:37:41.000Z" + }, + "events": [ + { + "uuid": "122741f5-5b4c-433a-ab28-3625a7ab90f7", + "start": { + "$date": "2021-08-26T22:29:20.000Z" + }, + "end": { + "$date": "2021-08-26T22:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b33b1b1f-9a51-4de7-81f5-c09034eeae55", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-27T01:04:59.000Z" + }, + "end": { + "$date": "2021-08-27T06:02:18.000Z" + }, + "events": [ + { + "uuid": "a29eb129-5f8e-4cb4-b3b3-25afa2a6004f", + "start": { + "$date": "2021-08-27T01:04:59.000Z" + }, + "end": { + "$date": "2021-08-27T06:02:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0052c8ea-024a-4e9b-8d5a-3246d202c8d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-27T02:13:08.000Z" + }, + "end": { + "$date": "2021-08-27T04:07:14.000Z" + }, + "events": [ + { + "uuid": "664e5734-a7e0-4898-ab3f-51ddf4ebe12a", + "start": { + "$date": "2021-08-27T02:13:08.000Z" + }, + "end": { + "$date": "2021-08-27T04:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "f5e18c83-422c-412e-89b1-ce74ba9662d1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-27T02:44:31.000Z" + }, + "end": { + "$date": "2021-08-27T03:20:58.000Z" + }, + "events": [ + { + "uuid": "9dfbbc00-6690-4ff8-97ed-8aad828a3c84", + "start": { + "$date": "2021-08-27T02:44:31.000Z" + }, + "end": { + "$date": "2021-08-27T03:20:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5afe54d1-03d8-49fe-bea2-d61a22b60cbb", + "uuid": "b1f56540-6ecd-4d54-a70d-9531573a0198", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-27T03:16:22.000Z" + }, + "end": { + "$date": "2021-08-27T03:37:39.000Z" + }, + "events": [ + { + "uuid": "67fd8077-cde5-428c-baee-451b6fa12e79", + "start": { + "$date": "2021-08-27T03:16:22.000Z" + }, + "end": { + "$date": "2021-08-27T03:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e8b5ffd5-8e9c-4670-a60e-96173c15cac1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-27T03:19:05.000Z" + }, + "end": { + "$date": "2021-08-27T04:22:23.000Z" + }, + "events": [ + { + "uuid": "99917d9a-d0b7-4445-9ff7-96a301fc0dd0", + "start": { + "$date": "2021-08-27T03:19:05.000Z" + }, + "end": { + "$date": "2021-08-27T03:33:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5acc8440-f14a-4deb-86b0-4dfa884b8e75", + "start": { + "$date": "2021-08-27T03:33:05.000Z" + }, + "end": { + "$date": "2021-08-27T03:36:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d9309d8-8cd6-4258-86bd-1d6331fbf7e1", + "start": { + "$date": "2021-08-27T03:36:05.000Z" + }, + "end": { + "$date": "2021-08-27T04:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1bcca548-828d-49f7-a874-f8176fabf4d4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-27T03:28:35.000Z" + }, + "end": { + "$date": "2021-08-27T05:35:21.000Z" + }, + "events": [ + { + "uuid": "2bcd2f0f-337d-462f-8311-fc7ea7f3a3a0", + "start": { + "$date": "2021-08-27T03:28:35.000Z" + }, + "end": { + "$date": "2021-08-27T05:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "07d6c034-9614-4091-a2d6-1f92719a5a91", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-27T03:27:54.000Z" + }, + "end": { + "$date": "2021-08-27T05:35:23.000Z" + }, + "events": [ + { + "uuid": "0d27dc1f-8ea8-4396-bc05-9cc45f612be0", + "start": { + "$date": "2021-08-27T03:27:54.000Z" + }, + "end": { + "$date": "2021-08-27T05:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "868aee4b-f4dc-4e5c-a9b6-18b234db58a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T03:30:56.000Z" + }, + "end": { + "$date": "2021-08-27T03:32:26.000Z" + }, + "events": [ + { + "uuid": "8f999a15-43a5-43f7-8583-411fea07e309", + "start": { + "$date": "2021-08-27T03:30:56.000Z" + }, + "end": { + "$date": "2021-08-27T03:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2641f937-e491-4cdf-811d-582eb179df6f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T03:32:41.000Z" + }, + "end": { + "$date": "2021-08-27T03:33:51.000Z" + }, + "events": [ + { + "uuid": "67abf547-5013-45d2-acda-d947355c18ce", + "start": { + "$date": "2021-08-27T03:32:41.000Z" + }, + "end": { + "$date": "2021-08-27T03:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a713de62-d05d-4c09-9c14-525f57d4d0dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T03:34:02.000Z" + }, + "end": { + "$date": "2021-08-27T04:06:47.000Z" + }, + "events": [ + { + "uuid": "c0a829e1-a23d-442d-8880-adad5d200703", + "start": { + "$date": "2021-08-27T03:34:02.000Z" + }, + "end": { + "$date": "2021-08-27T04:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01817496-e314-444a-b96b-94be8300a3a6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-27T03:34:20.000Z" + }, + "end": { + "$date": "2021-08-27T05:52:02.000Z" + }, + "events": [ + { + "uuid": "dc855e49-73d5-4cef-93b8-e7e37499d7fb", + "start": { + "$date": "2021-08-27T03:34:20.000Z" + }, + "end": { + "$date": "2021-08-27T05:52:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5afe54d1-03d8-49fe-bea2-d61a22b60cbb", + "uuid": "094ddd3d-d0bb-4458-bcf0-d69875bf854c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-27T04:09:19.000Z" + }, + "end": { + "$date": "2021-08-27T05:44:56.000Z" + }, + "events": [ + { + "uuid": "cdda997c-206b-4ddc-9eff-49d8b7f7d643", + "start": { + "$date": "2021-08-27T04:09:19.000Z" + }, + "end": { + "$date": "2021-08-27T05:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bb470236-ecfd-40a8-9dfa-dfdca250a16b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T04:10:17.000Z" + }, + "end": { + "$date": "2021-08-27T04:31:02.000Z" + }, + "events": [ + { + "uuid": "c6f0076d-b3c9-4240-a4a1-259fa223be65", + "start": { + "$date": "2021-08-27T04:10:17.000Z" + }, + "end": { + "$date": "2021-08-27T04:31:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "33ffe9f6-acd2-4016-a98f-e797744f6103", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-27T04:46:56.000Z" + }, + "end": { + "$date": "2021-08-27T05:57:07.000Z" + }, + "events": [ + { + "uuid": "9ef0ad69-435a-485e-9c6d-8d302684c599", + "start": { + "$date": "2021-08-27T04:46:56.000Z" + }, + "end": { + "$date": "2021-08-27T05:45:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6391ee3b-60c1-4101-b1e7-ce010228edc9", + "start": { + "$date": "2021-08-27T05:45:56.000Z" + }, + "end": { + "$date": "2021-08-27T05:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5220dbbe-bda2-4908-bbcf-ba22f46b897f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-27T05:06:59.000Z" + }, + "end": { + "$date": "2021-08-27T05:30:54.000Z" + }, + "events": [ + { + "uuid": "ee5b6724-ebbb-4813-9a92-c4a8824e6f17", + "start": { + "$date": "2021-08-27T05:06:59.000Z" + }, + "end": { + "$date": "2021-08-27T05:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da29a610-62c0-45ae-9970-037f986b4d4e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-27T05:32:16.000Z" + }, + "end": { + "$date": "2021-08-27T07:24:26.000Z" + }, + "events": [ + { + "uuid": "bec1a7c1-c50f-4e11-a719-b819b41d0f54", + "start": { + "$date": "2021-08-27T05:32:16.000Z" + }, + "end": { + "$date": "2021-08-27T07:24:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "751209f7-ac4c-44b1-b165-af45512114cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-27T05:36:26.000Z" + }, + "end": { + "$date": "2021-08-27T07:23:36.000Z" + }, + "events": [ + { + "uuid": "a908cb39-c2f3-411b-9833-aca2d8d97ff1", + "start": { + "$date": "2021-08-27T05:36:26.000Z" + }, + "end": { + "$date": "2021-08-27T07:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "66bd5aa5-7dcd-4ea2-ade3-80463ed21daa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-27T05:37:03.000Z" + }, + "end": { + "$date": "2021-08-27T06:18:38.000Z" + }, + "events": [ + { + "uuid": "3f3c8bcf-3297-4dd3-8643-7f5e31c1cab0", + "start": { + "$date": "2021-08-27T05:37:03.000Z" + }, + "end": { + "$date": "2021-08-27T06:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f09b9000-2761-4ddc-b6d9-697d223dae4b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-27T06:04:44.000Z" + }, + "end": { + "$date": "2021-08-27T06:38:32.000Z" + }, + "events": [ + { + "uuid": "d84246e1-5fee-4eb4-b8b9-02020e0d3076", + "start": { + "$date": "2021-08-27T06:04:44.000Z" + }, + "end": { + "$date": "2021-08-27T06:38:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54058096-c3f7-4547-a8ff-40eaab8d0084", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-27T06:32:25.000Z" + }, + "end": { + "$date": "2021-08-27T06:58:25.000Z" + }, + "events": [ + { + "uuid": "a1efcf69-cfaf-4e2e-a3a3-0f299f2782d3", + "start": { + "$date": "2021-08-27T06:32:25.000Z" + }, + "end": { + "$date": "2021-08-27T06:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b364386b-319d-4d99-b2b4-80af5cb48907", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T14:53:12.000Z" + }, + "end": { + "$date": "2021-08-27T16:10:01.000Z" + }, + "events": [ + { + "uuid": "68bdb43c-8758-4cdc-aee3-44c77bda42f9", + "start": { + "$date": "2021-08-27T14:53:12.000Z" + }, + "end": { + "$date": "2021-08-27T16:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "db1c9b43-b650-40ab-804b-bf1a797da00f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T19:16:47.000Z" + }, + "end": { + "$date": "2021-08-27T19:32:12.000Z" + }, + "events": [ + { + "uuid": "22732d5a-9d57-499c-b730-9c3b25516905", + "start": { + "$date": "2021-08-27T19:16:47.000Z" + }, + "end": { + "$date": "2021-08-27T19:32:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "423de23a-1503-42ec-a867-9f9f08e86b3e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-27T21:47:49.000Z" + }, + "end": { + "$date": "2021-08-28T06:44:29.000Z" + }, + "events": [ + { + "uuid": "e7eab549-3c81-4321-b00e-f3ca427108a6", + "start": { + "$date": "2021-08-27T21:47:49.000Z" + }, + "end": { + "$date": "2021-08-27T22:01:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "966d03c5-96cc-4fec-8634-8ae97d379bbd", + "start": { + "$date": "2021-08-27T22:01:49.000Z" + }, + "end": { + "$date": "2021-08-27T22:05:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45916da9-b842-4720-bbcd-d953cb204c20", + "start": { + "$date": "2021-08-27T22:05:49.000Z" + }, + "end": { + "$date": "2021-08-27T22:07:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7b5d029-9502-41c7-9fba-38f3fbcc70f8", + "start": { + "$date": "2021-08-27T22:07:49.000Z" + }, + "end": { + "$date": "2021-08-27T22:31:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e26f091-c098-4f5e-a8cd-105e4cc488ed", + "start": { + "$date": "2021-08-27T22:31:49.000Z" + }, + "end": { + "$date": "2021-08-27T23:31:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e79417c3-6e99-4a90-a191-4b22b86daac8", + "start": { + "$date": "2021-08-27T23:31:49.000Z" + }, + "end": { + "$date": "2021-08-27T23:32:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b619f36-a439-4433-b523-33905da287b2", + "start": { + "$date": "2021-08-27T23:32:49.000Z" + }, + "end": { + "$date": "2021-08-28T00:02:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c31d6e49-7254-4b7f-a5ee-9a9d2211b2d7", + "start": { + "$date": "2021-08-28T00:02:49.000Z" + }, + "end": { + "$date": "2021-08-28T00:07:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "86cc3181-b5ec-4273-8e4e-7fb6b633f47b", + "start": { + "$date": "2021-08-28T00:07:49.000Z" + }, + "end": { + "$date": "2021-08-28T00:17:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0696889b-d8ce-4d13-b925-c30fb65989a7", + "start": { + "$date": "2021-08-28T00:17:49.000Z" + }, + "end": { + "$date": "2021-08-28T00:22:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "919beedc-5169-40a5-90d3-5984142581e3", + "start": { + "$date": "2021-08-28T00:22:49.000Z" + }, + "end": { + "$date": "2021-08-28T00:25:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a847324c-6672-4a50-a539-44b55a41a96b", + "start": { + "$date": "2021-08-28T00:25:49.000Z" + }, + "end": { + "$date": "2021-08-28T01:07:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3ce911a4-5d15-4f9c-80cc-58a415e76064", + "start": { + "$date": "2021-08-28T01:07:49.000Z" + }, + "end": { + "$date": "2021-08-28T03:58:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a4746b2-051a-40bb-8b8d-8a66a4f7aff6", + "start": { + "$date": "2021-08-28T03:58:49.000Z" + }, + "end": { + "$date": "2021-08-28T04:03:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f973bbee-a7b7-4716-99e5-67cd97364011", + "start": { + "$date": "2021-08-28T04:03:49.000Z" + }, + "end": { + "$date": "2021-08-28T06:44:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "5dee2d23-4c36-469a-a812-42b90fbe6664", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-27T21:54:23.000Z" + }, + "end": { + "$date": "2021-08-27T22:44:58.000Z" + }, + "events": [ + { + "uuid": "7590c068-e781-4549-8a28-cfa9d479923c", + "start": { + "$date": "2021-08-27T21:54:23.000Z" + }, + "end": { + "$date": "2021-08-27T22:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e14f3e77-b45b-4097-a6bb-363c723ce5a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-27T22:13:28.000Z" + }, + "end": { + "$date": "2021-08-27T22:53:07.000Z" + }, + "events": [ + { + "uuid": "62247b27-23d6-4119-90c4-425db559a9ec", + "start": { + "$date": "2021-08-27T22:13:28.000Z" + }, + "end": { + "$date": "2021-08-27T22:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7595de58-5d97-4b49-9bd4-dbb21966a34d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-27T23:24:21.000Z" + }, + "end": { + "$date": "2021-08-27T23:56:12.000Z" + }, + "events": [ + { + "uuid": "cb9998e0-0697-485c-92d7-d335359d60af", + "start": { + "$date": "2021-08-27T23:24:21.000Z" + }, + "end": { + "$date": "2021-08-27T23:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f24fa4fd-a14a-4544-811b-346e33c99016", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-27T23:07:45.000Z" + }, + "end": { + "$date": "2021-08-27T23:54:54.000Z" + }, + "events": [ + { + "uuid": "e4a4fece-2bef-4e05-808d-c976dffb59e6", + "start": { + "$date": "2021-08-27T23:07:45.000Z" + }, + "end": { + "$date": "2021-08-27T23:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b82827b-dfe3-4875-90c6-4d06c87a78a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T00:01:52.000Z" + }, + "end": { + "$date": "2021-08-28T00:23:24.000Z" + }, + "events": [ + { + "uuid": "1203eeb1-fa46-4d1d-9aef-bba9a44bf607", + "start": { + "$date": "2021-08-28T00:01:52.000Z" + }, + "end": { + "$date": "2021-08-28T00:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b515e2b4-9b86-419f-8d12-b02312927d0f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T00:24:13.000Z" + }, + "end": { + "$date": "2021-08-28T02:06:20.000Z" + }, + "events": [ + { + "uuid": "02d3c44d-48fd-4e2c-99c8-88829f052e70", + "start": { + "$date": "2021-08-28T00:24:13.000Z" + }, + "end": { + "$date": "2021-08-28T00:44:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a6b685f-04d5-41b4-ba2d-42b20321f836", + "start": { + "$date": "2021-08-28T00:44:13.000Z" + }, + "end": { + "$date": "2021-08-28T01:24:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "277df82b-7f07-453e-97a9-4dc43a08443e", + "start": { + "$date": "2021-08-28T01:24:13.000Z" + }, + "end": { + "$date": "2021-08-28T01:29:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ad5f73a-4c04-424e-a2eb-f987774ea564", + "start": { + "$date": "2021-08-28T01:29:13.000Z" + }, + "end": { + "$date": "2021-08-28T01:45:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74909e7f-ced6-4b74-874c-f65130e8ee09", + "start": { + "$date": "2021-08-28T01:45:13.000Z" + }, + "end": { + "$date": "2021-08-28T02:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e641598e-3bc2-4d2d-a4e0-5a594e971ee7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T01:38:08.000Z" + }, + "end": { + "$date": "2021-08-28T02:20:46.000Z" + }, + "events": [ + { + "uuid": "36f29ba8-b7b6-4b09-bd69-81ed96d79eff", + "start": { + "$date": "2021-08-28T01:38:08.000Z" + }, + "end": { + "$date": "2021-08-28T02:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c13f1f6-dbc9-43b6-b024-2e29733862e6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T02:04:20.000Z" + }, + "end": { + "$date": "2021-08-28T02:06:21.000Z" + }, + "events": [ + { + "uuid": "6701e940-303a-472c-87f5-bc502c1cbc7e", + "start": { + "$date": "2021-08-28T02:04:20.000Z" + }, + "end": { + "$date": "2021-08-28T02:06:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "009b44b8-6e1b-45d1-9fe7-50f8254628de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T02:06:30.000Z" + }, + "end": { + "$date": "2021-08-28T02:09:14.000Z" + }, + "events": [ + { + "uuid": "f1629756-450e-4179-9c6a-3fa87ed1e617", + "start": { + "$date": "2021-08-28T02:06:30.000Z" + }, + "end": { + "$date": "2021-08-28T02:09:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da4ce722-6306-465c-8f6d-c3b906611381", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T02:19:17.000Z" + }, + "end": { + "$date": "2021-08-28T02:45:34.000Z" + }, + "events": [ + { + "uuid": "48f40dc1-ae48-4b18-ba57-02aee93c8fdc", + "start": { + "$date": "2021-08-28T02:19:17.000Z" + }, + "end": { + "$date": "2021-08-28T02:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "afec22d4-f962-46de-9102-406c0cb54ec4", + "uuid": "0937ed21-7900-4c1a-b63a-51372de3c886", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T03:23:19.000Z" + }, + "end": { + "$date": "2021-08-28T03:41:49.000Z" + }, + "events": [ + { + "uuid": "e337c034-3d36-4239-bee5-991862aec260", + "start": { + "$date": "2021-08-28T03:23:19.000Z" + }, + "end": { + "$date": "2021-08-28T03:41:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "2cf6a5f0-7649-45eb-8503-d1fbfc43b384", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-28T02:10:40.000Z" + }, + "end": { + "$date": "2021-08-28T03:37:57.000Z" + }, + "events": [ + { + "uuid": "8e3f6185-462f-4d56-9383-5af6ad576245", + "start": { + "$date": "2021-08-28T02:10:40.000Z" + }, + "end": { + "$date": "2021-08-28T03:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e70d1359-ae05-4897-806b-50b690a79653", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-28T02:18:46.000Z" + }, + "end": { + "$date": "2021-08-28T02:45:22.000Z" + }, + "events": [ + { + "uuid": "0e063a79-6684-41f4-993f-dd95cdfc398d", + "start": { + "$date": "2021-08-28T02:18:46.000Z" + }, + "end": { + "$date": "2021-08-28T02:45:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4fe18381-a41b-436a-b031-6fe5ddb411e1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T02:20:31.000Z" + }, + "end": { + "$date": "2021-08-28T03:42:00.000Z" + }, + "events": [ + { + "uuid": "87ad70f1-4317-4251-9693-190b42509d92", + "start": { + "$date": "2021-08-28T02:20:31.000Z" + }, + "end": { + "$date": "2021-08-28T03:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a65348f6-8e1b-4830-91de-6552e613d966", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-28T03:19:03.000Z" + }, + "end": { + "$date": "2021-08-28T04:48:07.000Z" + }, + "events": [ + { + "uuid": "5e677bfc-02c5-4436-9807-caf2e6a2b952", + "start": { + "$date": "2021-08-28T03:19:03.000Z" + }, + "end": { + "$date": "2021-08-28T04:48:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "520c902b-fd2f-4151-85a7-723c5392ffed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T02:49:44.000Z" + }, + "end": { + "$date": "2021-08-28T03:12:00.000Z" + }, + "events": [ + { + "uuid": "cf77a26b-f8d2-4569-abf7-c90001ca491d", + "start": { + "$date": "2021-08-28T02:49:44.000Z" + }, + "end": { + "$date": "2021-08-28T03:12:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2610ae90-11e7-4699-baf5-822ad7dd755b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-28T02:49:33.000Z" + }, + "end": { + "$date": "2021-08-28T03:12:11.000Z" + }, + "events": [ + { + "uuid": "e9ffbbf6-24ee-4ac1-8af4-4740ba515e13", + "start": { + "$date": "2021-08-28T02:49:33.000Z" + }, + "end": { + "$date": "2021-08-28T03:12:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bd7a411b-e142-4526-bd4b-3f4e70925512", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-28T02:47:11.000Z" + }, + "end": { + "$date": "2021-08-28T03:12:17.000Z" + }, + "events": [ + { + "uuid": "2348915c-85ca-48dd-8e87-61fbab664861", + "start": { + "$date": "2021-08-28T02:47:11.000Z" + }, + "end": { + "$date": "2021-08-28T03:12:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "81a37675-1a85-4fda-aabb-61614e1709a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T05:00:02.000Z" + }, + "end": { + "$date": "2021-08-28T05:46:21.000Z" + }, + "events": [ + { + "uuid": "9e2fa178-76b1-4b82-b342-cbb339ead2fd", + "start": { + "$date": "2021-08-28T05:00:02.000Z" + }, + "end": { + "$date": "2021-08-28T05:46:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d591fa4-cdf7-4628-9ca4-f447f28a04b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T03:23:52.000Z" + }, + "end": { + "$date": "2021-08-28T03:41:56.000Z" + }, + "events": [ + { + "uuid": "4acd6355-f61b-4b3a-8606-5fda1f6a9b16", + "start": { + "$date": "2021-08-28T03:23:52.000Z" + }, + "end": { + "$date": "2021-08-28T03:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c04b5f3d-0dbe-47af-9dce-6b856166e603", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-28T07:38:16.000Z" + }, + "end": { + "$date": "2021-08-28T07:39:12.000Z" + }, + "events": [ + { + "uuid": "361b6c3a-ba0a-4e44-9b13-2b674fe454b3", + "start": { + "$date": "2021-08-28T07:38:16.000Z" + }, + "end": { + "$date": "2021-08-28T07:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e47a4ca-13ed-420a-9c67-65ce15e41cfc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-28T03:23:43.000Z" + }, + "end": { + "$date": "2021-08-28T03:41:48.000Z" + }, + "events": [ + { + "uuid": "b9fdd8b3-66ff-4f95-9306-07e70413a839", + "start": { + "$date": "2021-08-28T03:23:43.000Z" + }, + "end": { + "$date": "2021-08-28T03:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ec6280f-e0d8-4066-a0a9-05e0f346ed5c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T03:47:49.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:28.000Z" + }, + "events": [ + { + "uuid": "c4dc93be-386f-4acd-a0cb-c6968ac3973e", + "start": { + "$date": "2021-08-28T03:47:49.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "afec22d4-f962-46de-9102-406c0cb54ec4", + "uuid": "11a10b6e-33ac-4f47-961c-840bcefbf685", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T03:48:09.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:34.000Z" + }, + "events": [ + { + "uuid": "5f48be29-dd60-4c71-8124-039565e530cc", + "start": { + "$date": "2021-08-28T03:48:09.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "b07b86a0-714d-4842-adaf-e812fb6901a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T03:44:15.000Z" + }, + "end": { + "$date": "2021-08-28T04:58:43.000Z" + }, + "events": [ + { + "uuid": "ebb04313-129b-415c-8d61-adc77c597c6b", + "start": { + "$date": "2021-08-28T03:44:15.000Z" + }, + "end": { + "$date": "2021-08-28T04:58:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12367946-81e8-4ab3-ac1e-b25e0234c023", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-28T03:48:18.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:19.000Z" + }, + "events": [ + { + "uuid": "4cdbf44e-dea2-4871-88e3-839fc6319524", + "start": { + "$date": "2021-08-28T03:48:18.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ea187d6-7aa4-4bcd-bf8c-749503672ca3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-28T03:47:48.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:19.000Z" + }, + "events": [ + { + "uuid": "a1be5ba1-0284-4471-8581-c7a779e36470", + "start": { + "$date": "2021-08-28T03:47:48.000Z" + }, + "end": { + "$date": "2021-08-28T04:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "99dda718-fbf2-4280-afb5-39cbf3ef2652", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-28T03:56:08.000Z" + }, + "end": { + "$date": "2021-08-28T04:11:20.000Z" + }, + "events": [ + { + "uuid": "879f2e7d-edad-4434-9e45-5d8a047d7776", + "start": { + "$date": "2021-08-28T03:56:08.000Z" + }, + "end": { + "$date": "2021-08-28T04:11:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b574bb29-5a28-4352-8b03-5ac47fb860ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T04:32:24.000Z" + }, + "end": { + "$date": "2021-08-28T04:51:19.000Z" + }, + "events": [ + { + "uuid": "6fd4494f-d0e7-4d43-8513-f2dc47dd6f4e", + "start": { + "$date": "2021-08-28T04:32:24.000Z" + }, + "end": { + "$date": "2021-08-28T04:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "fa75e8e0-8119-4927-8c1a-2b77284bbba3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-28T04:15:28.000Z" + }, + "end": { + "$date": "2021-08-28T04:57:00.000Z" + }, + "events": [ + { + "uuid": "491594f7-4c9d-433c-be3d-05264dc06bd3", + "start": { + "$date": "2021-08-28T04:15:28.000Z" + }, + "end": { + "$date": "2021-08-28T04:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "a9829e41-5e49-4f23-a833-8640b6d4d64c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T04:25:25.000Z" + }, + "end": { + "$date": "2021-08-28T04:29:19.000Z" + }, + "events": [ + { + "uuid": "54e653eb-8d6c-4fd5-94ba-5f45e5314a96", + "start": { + "$date": "2021-08-28T04:25:25.000Z" + }, + "end": { + "$date": "2021-08-28T04:29:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "3ce7a4f7-eca1-4a1b-86ed-27c8cb5084c5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-28T04:26:33.000Z" + }, + "end": { + "$date": "2021-08-28T07:38:15.000Z" + }, + "events": [ + { + "uuid": "b60e996f-b8a8-41f2-acbb-a8633a2fe276", + "start": { + "$date": "2021-08-28T04:26:33.000Z" + }, + "end": { + "$date": "2021-08-28T07:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2307069c-8c08-4025-b3dc-b224024b6e2e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-28T04:34:22.000Z" + }, + "end": { + "$date": "2021-08-28T04:51:07.000Z" + }, + "events": [ + { + "uuid": "b09c89f8-9f23-4e38-bdbd-b9eee9ac3dbc", + "start": { + "$date": "2021-08-28T04:34:22.000Z" + }, + "end": { + "$date": "2021-08-28T04:51:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "3f79edf2-795d-43a7-96e7-82d91bdc4348", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T04:29:35.000Z" + }, + "end": { + "$date": "2021-08-28T04:34:39.000Z" + }, + "events": [ + { + "uuid": "64fa3456-34c4-45ac-816f-8c4e9ecf1731", + "start": { + "$date": "2021-08-28T04:29:35.000Z" + }, + "end": { + "$date": "2021-08-28T04:34:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "059cc846-90e0-4ff9-8045-d49f055eccf3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T04:35:00.000Z" + }, + "end": { + "$date": "2021-08-28T05:05:49.000Z" + }, + "events": [ + { + "uuid": "60874986-c37c-4cff-889d-708151e38297", + "start": { + "$date": "2021-08-28T04:35:00.000Z" + }, + "end": { + "$date": "2021-08-28T05:05:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "5022ebc8-907b-415f-abe8-ac23bb965c9d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-28T04:46:25.000Z" + }, + "end": { + "$date": "2021-08-28T07:38:04.000Z" + }, + "events": [ + { + "uuid": "27363570-3ab8-4431-a64a-d99335c2e3f4", + "start": { + "$date": "2021-08-28T04:46:25.000Z" + }, + "end": { + "$date": "2021-08-28T07:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "9390788e-7bfa-44aa-b46b-bf1bb4588f05", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-28T04:49:46.000Z" + }, + "end": { + "$date": "2021-08-28T05:57:43.000Z" + }, + "events": [ + { + "uuid": "8c069693-7802-48ae-a2e3-c345c46cdc9e", + "start": { + "$date": "2021-08-28T04:49:46.000Z" + }, + "end": { + "$date": "2021-08-28T05:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1910f1ca-9165-4bbe-9148-80171f863084", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T04:51:27.000Z" + }, + "end": { + "$date": "2021-08-28T05:20:54.000Z" + }, + "events": [ + { + "uuid": "b6fb2f41-2479-462b-8e52-d6e56db72af4", + "start": { + "$date": "2021-08-28T04:51:27.000Z" + }, + "end": { + "$date": "2021-08-28T05:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "fd3635d8-52e2-4cb4-b276-35acae163c74", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-28T04:55:37.000Z" + }, + "end": { + "$date": "2021-08-28T07:39:16.000Z" + }, + "events": [ + { + "uuid": "777ac4e1-bb5e-4f73-8e88-549c53da910b", + "start": { + "$date": "2021-08-28T04:55:37.000Z" + }, + "end": { + "$date": "2021-08-28T07:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "b78a2e8e-0d05-4a55-be49-056fd683813e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T05:27:35.000Z" + }, + "end": { + "$date": "2021-08-28T05:46:10.000Z" + }, + "events": [ + { + "uuid": "2eeed713-df79-4b08-acd5-ecbfa5c90f1c", + "start": { + "$date": "2021-08-28T05:27:35.000Z" + }, + "end": { + "$date": "2021-08-28T05:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "05656e36-3460-4055-bfc0-713c145a4e01", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T05:28:35.000Z" + }, + "end": { + "$date": "2021-08-28T07:38:06.000Z" + }, + "events": [ + { + "uuid": "4ffb1eb9-10cf-491c-b2a8-0d4eebf6dce9", + "start": { + "$date": "2021-08-28T05:28:35.000Z" + }, + "end": { + "$date": "2021-08-28T07:38:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e9ef2c2d-5024-4d91-9adc-fc6d386269a0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T05:47:21.000Z" + }, + "end": { + "$date": "2021-08-28T06:33:41.000Z" + }, + "events": [ + { + "uuid": "e871ddda-38dd-4826-ab9f-d831fdb97413", + "start": { + "$date": "2021-08-28T05:47:21.000Z" + }, + "end": { + "$date": "2021-08-28T06:33:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02a2ce77-f49d-4117-bcb1-beaa4b833602", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T06:57:16.000Z" + }, + "end": { + "$date": "2021-08-28T07:27:29.000Z" + }, + "events": [ + { + "uuid": "71ef9630-34ce-43c6-a8fb-625faf6df2b6", + "start": { + "$date": "2021-08-28T06:57:16.000Z" + }, + "end": { + "$date": "2021-08-28T07:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "45d40a13-57ef-42ba-9d84-6b7727a9a402", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T07:07:00.000Z" + }, + "end": { + "$date": "2021-08-28T07:47:01.000Z" + }, + "events": [ + { + "uuid": "7424158a-7a13-4d65-a1fe-e2a31a3a6c79", + "start": { + "$date": "2021-08-28T07:07:00.000Z" + }, + "end": { + "$date": "2021-08-28T07:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a4f172fc-bda6-4229-bac5-905d197009f7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T07:47:11.000Z" + }, + "end": { + "$date": "2021-08-28T08:48:02.000Z" + }, + "events": [ + { + "uuid": "326cc839-a5d5-4ab4-ab4a-c04b3909f5e1", + "start": { + "$date": "2021-08-28T07:47:11.000Z" + }, + "end": { + "$date": "2021-08-28T08:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "ce9d1580-19c7-4efe-af44-49487c3a95bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T14:23:39.000Z" + }, + "end": { + "$date": "2021-08-28T15:32:45.000Z" + }, + "events": [ + { + "uuid": "7417681c-838d-4cde-9d48-d947b7fb8339", + "start": { + "$date": "2021-08-28T14:23:39.000Z" + }, + "end": { + "$date": "2021-08-28T15:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ccf9196c-eee8-493f-bf74-d9c8d6ffc441", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T15:33:05.000Z" + }, + "end": { + "$date": "2021-08-28T16:21:29.000Z" + }, + "events": [ + { + "uuid": "7ed7477e-dbb3-4d61-bd80-9c39aa2659a6", + "start": { + "$date": "2021-08-28T15:33:05.000Z" + }, + "end": { + "$date": "2021-08-28T16:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "b8ab7b84-87ba-4c13-96d0-24a0423f0c95", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T16:21:49.000Z" + }, + "end": { + "$date": "2021-08-28T16:57:09.000Z" + }, + "events": [ + { + "uuid": "58c44212-a3b8-4970-86c7-336bea8a542c", + "start": { + "$date": "2021-08-28T16:21:49.000Z" + }, + "end": { + "$date": "2021-08-28T16:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ff309c6-a3d1-4b7a-92f7-6f388de0d696", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T16:41:36.000Z" + }, + "end": { + "$date": "2021-08-28T17:05:17.000Z" + }, + "events": [ + { + "uuid": "386d6a5d-1aa0-4548-8b2a-78134444eca1", + "start": { + "$date": "2021-08-28T16:41:36.000Z" + }, + "end": { + "$date": "2021-08-28T17:05:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "63177ca1-a0a5-4730-adef-28e3e66a3b98", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T16:58:59.000Z" + }, + "end": { + "$date": "2021-08-28T17:54:17.000Z" + }, + "events": [ + { + "uuid": "f32e801c-6a50-47ba-899e-1159a5196891", + "start": { + "$date": "2021-08-28T16:58:59.000Z" + }, + "end": { + "$date": "2021-08-28T17:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "395510f9-0c56-4147-bd8a-2ab786a82bb3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-28T17:50:55.000Z" + }, + "end": { + "$date": "2021-08-29T05:18:14.000Z" + }, + "events": [ + { + "uuid": "e2fb8ac0-0be4-4dc5-91bd-535524b99bf0", + "start": { + "$date": "2021-08-28T17:50:55.000Z" + }, + "end": { + "$date": "2021-08-28T18:06:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89680d0b-0889-4580-b826-41e5da7fb60e", + "start": { + "$date": "2021-08-28T18:06:55.000Z" + }, + "end": { + "$date": "2021-08-28T18:15:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "222b53e3-ce39-4e34-aa81-3376c5b7df2e", + "start": { + "$date": "2021-08-28T18:15:55.000Z" + }, + "end": { + "$date": "2021-08-28T18:43:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "383e8c41-c55b-4665-b25c-316b8ccc106a", + "start": { + "$date": "2021-08-28T18:43:55.000Z" + }, + "end": { + "$date": "2021-08-28T19:45:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ace660c0-2433-4b7e-b859-1ce40c813c6b", + "start": { + "$date": "2021-08-28T19:45:55.000Z" + }, + "end": { + "$date": "2021-08-28T19:59:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7da8f7d1-3cb0-4d48-94c3-71e8474d9986", + "start": { + "$date": "2021-08-28T19:59:55.000Z" + }, + "end": { + "$date": "2021-08-28T20:01:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6dd8638c-49f7-4597-b995-9d2c45ae0171", + "start": { + "$date": "2021-08-28T20:01:55.000Z" + }, + "end": { + "$date": "2021-08-28T21:12:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ae2bca2-3932-4874-9127-ba76ec396719", + "start": { + "$date": "2021-08-28T21:12:55.000Z" + }, + "end": { + "$date": "2021-08-28T21:17:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b70519df-e7a7-4153-94b6-72e47b7f8e7d", + "start": { + "$date": "2021-08-28T21:17:55.000Z" + }, + "end": { + "$date": "2021-08-28T21:27:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f4ff850-123e-4a59-afa4-ec5b8a416d7a", + "start": { + "$date": "2021-08-28T21:27:55.000Z" + }, + "end": { + "$date": "2021-08-28T21:54:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e6c730e-1895-4753-a04d-b3d39636f3db", + "start": { + "$date": "2021-08-28T21:54:55.000Z" + }, + "end": { + "$date": "2021-08-28T23:36:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "430e258d-7129-4f02-abec-c62eab927add", + "start": { + "$date": "2021-08-28T23:36:55.000Z" + }, + "end": { + "$date": "2021-08-29T00:56:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a6a683b7-f006-4732-86aa-bdbf362c84fa", + "start": { + "$date": "2021-08-29T00:56:55.000Z" + }, + "end": { + "$date": "2021-08-29T01:08:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a0f09848-a7bd-4469-81dc-2f06e302fff6", + "start": { + "$date": "2021-08-29T01:08:55.000Z" + }, + "end": { + "$date": "2021-08-29T01:31:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f9d2222-f97c-4b77-a134-aae4c6adcbe6", + "start": { + "$date": "2021-08-29T01:31:55.000Z" + }, + "end": { + "$date": "2021-08-29T01:41:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c263724-5604-42d6-818d-40f5c4ae3998", + "start": { + "$date": "2021-08-29T01:41:55.000Z" + }, + "end": { + "$date": "2021-08-29T01:54:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "278cfff0-c7d2-466b-b5b0-4105560f22b6", + "start": { + "$date": "2021-08-29T01:54:55.000Z" + }, + "end": { + "$date": "2021-08-29T02:35:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b77fc3f3-7b1f-40b7-8410-af905b4e3a0e", + "start": { + "$date": "2021-08-29T02:35:55.000Z" + }, + "end": { + "$date": "2021-08-29T02:52:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "40e72470-1bfa-45d6-8c3f-d1101c5054e5", + "start": { + "$date": "2021-08-29T02:52:55.000Z" + }, + "end": { + "$date": "2021-08-29T05:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5f6c6a48-565c-4708-b309-b2901da5ab28", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T17:54:22.000Z" + }, + "end": { + "$date": "2021-08-28T19:22:56.000Z" + }, + "events": [ + { + "uuid": "e9896c79-e43c-49d9-a674-f1cd88668247", + "start": { + "$date": "2021-08-28T17:54:22.000Z" + }, + "end": { + "$date": "2021-08-28T19:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "afec22d4-f962-46de-9102-406c0cb54ec4", + "uuid": "176bed8e-6b88-4cd6-87ac-9fef9cef309e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T18:47:08.000Z" + }, + "end": { + "$date": "2021-08-28T19:04:24.000Z" + }, + "events": [ + { + "uuid": "dfc1bac5-e1d3-4fa8-879c-fa84a0b0ba0f", + "start": { + "$date": "2021-08-28T18:47:08.000Z" + }, + "end": { + "$date": "2021-08-28T19:04:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "afec22d4-f962-46de-9102-406c0cb54ec4", + "uuid": "7a2a6521-8b05-4e29-b6f2-cc1f15803355", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T19:04:30.000Z" + }, + "end": { + "$date": "2021-08-28T21:14:05.000Z" + }, + "events": [ + { + "uuid": "ff969fcd-e4ab-406a-a211-da3a6e4dcb58", + "start": { + "$date": "2021-08-28T19:04:30.000Z" + }, + "end": { + "$date": "2021-08-28T21:14:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9556c20a-b11b-4eaf-b8f4-63c17377bf07", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T19:23:06.000Z" + }, + "end": { + "$date": "2021-08-28T19:36:34.000Z" + }, + "events": [ + { + "uuid": "2d08e64b-0c0a-4031-94d7-c964ed5692ae", + "start": { + "$date": "2021-08-28T19:23:06.000Z" + }, + "end": { + "$date": "2021-08-28T19:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0e846e29-c96a-4b0f-83b9-a6390078e03d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-28T19:26:12.000Z" + }, + "end": { + "$date": "2021-08-28T20:35:24.000Z" + }, + "events": [ + { + "uuid": "589e5818-0e7f-462a-9f1e-58779b6f45b3", + "start": { + "$date": "2021-08-28T19:26:12.000Z" + }, + "end": { + "$date": "2021-08-28T20:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "99781fc4-381e-4380-b354-200d87d43ddf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T20:17:46.000Z" + }, + "end": { + "$date": "2021-08-28T20:52:39.000Z" + }, + "events": [ + { + "uuid": "e10c5dc1-d4fc-4c2a-99ff-b6fb26edc77b", + "start": { + "$date": "2021-08-28T20:17:46.000Z" + }, + "end": { + "$date": "2021-08-28T20:52:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "473b47a3-0268-4e1e-85f7-1564b10dac9b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-28T20:39:06.000Z" + }, + "end": { + "$date": "2021-08-28T21:22:59.000Z" + }, + "events": [ + { + "uuid": "e8b79817-6daa-4dd0-b268-6f675c3f32c0", + "start": { + "$date": "2021-08-28T20:39:06.000Z" + }, + "end": { + "$date": "2021-08-28T21:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cb3fad29-c768-4303-b27f-1e892bf2f0e3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-28T20:59:06.000Z" + }, + "end": { + "$date": "2021-08-28T21:37:40.000Z" + }, + "events": [ + { + "uuid": "917e1a45-47ed-4d7d-ad23-089396d60800", + "start": { + "$date": "2021-08-28T20:59:06.000Z" + }, + "end": { + "$date": "2021-08-28T21:37:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3506342c-39bc-49c2-8d19-86e13006b277", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-08-28T21:10:25.000Z" + }, + "end": { + "$date": "2021-08-28T21:16:01.000Z" + }, + "events": [ + { + "uuid": "7323e46d-eb3b-44c2-84fe-24222d991430", + "start": { + "$date": "2021-08-28T21:10:25.000Z" + }, + "end": { + "$date": "2021-08-28T21:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "6b77cf6a-99d2-4fc1-8a7a-810c2d2e9d9a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-28T21:14:21.000Z" + }, + "end": { + "$date": "2021-08-28T22:00:10.000Z" + }, + "events": [ + { + "uuid": "84f53b67-9511-454b-921e-93fda3d70c67", + "start": { + "$date": "2021-08-28T21:14:21.000Z" + }, + "end": { + "$date": "2021-08-28T22:00:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e9c6bb19-2a08-4264-97e1-c48ccae66d87", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-28T22:14:16.000Z" + }, + "end": { + "$date": "2021-08-29T00:54:36.000Z" + }, + "events": [ + { + "uuid": "0c208ffb-f7df-4639-a59d-a59e249addb0", + "start": { + "$date": "2021-08-28T22:14:16.000Z" + }, + "end": { + "$date": "2021-08-29T00:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "ac23b9ee-f5e2-4ac6-a87c-b290b9dbef68", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-28T22:17:16.000Z" + }, + "end": { + "$date": "2021-08-29T00:15:48.000Z" + }, + "events": [ + { + "uuid": "b26d39e8-64df-47d9-91ed-d9287c9dda48", + "start": { + "$date": "2021-08-28T22:17:16.000Z" + }, + "end": { + "$date": "2021-08-29T00:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "0dc78a92-fbe6-4b44-ae63-0eef5afcfc3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-28T23:05:51.000Z" + }, + "end": { + "$date": "2021-08-28T23:49:32.000Z" + }, + "events": [ + { + "uuid": "f858f57b-5fad-4e94-a6a6-998a19a77e1d", + "start": { + "$date": "2021-08-28T23:05:51.000Z" + }, + "end": { + "$date": "2021-08-28T23:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "9e4596f4-c218-457d-be27-34f38c07a0df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-29T00:33:41.000Z" + }, + "end": { + "$date": "2021-08-29T04:50:55.000Z" + }, + "events": [ + { + "uuid": "057ebd6c-b8cc-4843-a5da-06fd961eea90", + "start": { + "$date": "2021-08-29T00:33:41.000Z" + }, + "end": { + "$date": "2021-08-29T04:50:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c71cfbde-b5a1-41c9-94c2-a78fe6d5fc6e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T00:54:41.000Z" + }, + "end": { + "$date": "2021-08-29T02:14:03.000Z" + }, + "events": [ + { + "uuid": "37522cab-10ca-46e3-aa3b-187ab53c5794", + "start": { + "$date": "2021-08-29T00:54:41.000Z" + }, + "end": { + "$date": "2021-08-29T02:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb84a2d8-6a33-4fce-b160-54e5a3c0de98", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T01:08:12.000Z" + }, + "end": { + "$date": "2021-08-29T01:47:35.000Z" + }, + "events": [ + { + "uuid": "124e2414-4201-4ada-ae34-d5b6ca699d55", + "start": { + "$date": "2021-08-29T01:08:12.000Z" + }, + "end": { + "$date": "2021-08-29T01:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "412aff62-95be-4219-908b-ed4560ec63ba", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-29T01:55:43.000Z" + }, + "end": { + "$date": "2021-08-29T02:25:43.000Z" + }, + "events": [ + { + "uuid": "4a30cb0b-7dfe-45f9-b9d3-fad72ada4c07", + "start": { + "$date": "2021-08-29T01:55:43.000Z" + }, + "end": { + "$date": "2021-08-29T02:06:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44157ab7-b9fe-423f-8740-09945688a783", + "start": { + "$date": "2021-08-29T02:06:43.000Z" + }, + "end": { + "$date": "2021-08-29T02:07:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2b4ceaf0-0998-48e0-83ec-3e85bf84c15c", + "start": { + "$date": "2021-08-29T02:07:43.000Z" + }, + "end": { + "$date": "2021-08-29T02:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "412fee2f-3854-4ec3-b7c1-1f0b058c6a62", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-29T02:03:51.000Z" + }, + "end": { + "$date": "2021-08-29T03:06:53.000Z" + }, + "events": [ + { + "uuid": "4f7361be-6730-4557-a6ee-4dfd37c73458", + "start": { + "$date": "2021-08-29T02:03:51.000Z" + }, + "end": { + "$date": "2021-08-29T03:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "67e03f42-a553-4e9a-9b85-bed72ecc7129", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T02:08:57.000Z" + }, + "end": { + "$date": "2021-08-29T02:10:23.000Z" + }, + "events": [ + { + "uuid": "2cf0ba08-ef09-4639-9390-e9cb983c69b2", + "start": { + "$date": "2021-08-29T02:08:57.000Z" + }, + "end": { + "$date": "2021-08-29T02:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "b02f962c-7838-492b-b32c-cb0a96f94fca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T02:11:18.000Z" + }, + "end": { + "$date": "2021-08-29T03:56:31.000Z" + }, + "events": [ + { + "uuid": "3304f741-872d-40cf-9610-0f2ad862045b", + "start": { + "$date": "2021-08-29T02:11:18.000Z" + }, + "end": { + "$date": "2021-08-29T03:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "6d422d45-37fc-4dcb-a62f-85296b6c6880", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T04:01:12.000Z" + }, + "end": { + "$date": "2021-08-29T05:47:01.000Z" + }, + "events": [ + { + "uuid": "3186ddb0-3596-4836-a705-26bb84548960", + "start": { + "$date": "2021-08-29T04:01:12.000Z" + }, + "end": { + "$date": "2021-08-29T04:40:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "10703c15-4f75-432b-ba34-a41a7765ecd4", + "start": { + "$date": "2021-08-29T04:40:12.000Z" + }, + "end": { + "$date": "2021-08-29T05:10:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7698bf5d-eb3e-4f1a-ab73-cb9af79a5db9", + "start": { + "$date": "2021-08-29T05:10:12.000Z" + }, + "end": { + "$date": "2021-08-29T05:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "1d8160ee-a6c6-436c-b7c2-dbff49623aa9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-29T04:08:49.000Z" + }, + "end": { + "$date": "2021-08-29T05:26:59.000Z" + }, + "events": [ + { + "uuid": "2019c1e8-c265-4e83-b7f1-bdf74aae5b94", + "start": { + "$date": "2021-08-29T04:08:49.000Z" + }, + "end": { + "$date": "2021-08-29T05:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "aa91fa1b-5941-447d-83d6-05ffbfc4a134", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-29T04:26:29.000Z" + }, + "end": { + "$date": "2021-08-29T04:52:36.000Z" + }, + "events": [ + { + "uuid": "70ee31c4-dd40-41f1-809c-2dea79f19f5b", + "start": { + "$date": "2021-08-29T04:26:29.000Z" + }, + "end": { + "$date": "2021-08-29T04:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1329605c-4395-4443-8f9e-532107e7b83a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-29T04:33:21.000Z" + }, + "end": { + "$date": "2021-08-29T05:12:37.000Z" + }, + "events": [ + { + "uuid": "948c0165-87df-4066-ade6-91b116e63183", + "start": { + "$date": "2021-08-29T04:33:21.000Z" + }, + "end": { + "$date": "2021-08-29T05:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "62172e61-52ea-40dc-b6ba-38c8e7afed72", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-29T04:47:25.000Z" + }, + "end": { + "$date": "2021-08-29T06:31:51.000Z" + }, + "events": [ + { + "uuid": "b18c9b40-c6e6-4c0c-8717-fd6bea8b1542", + "start": { + "$date": "2021-08-29T04:47:25.000Z" + }, + "end": { + "$date": "2021-08-29T06:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "51d0af43-e18b-4c57-b7df-70c0ea8632c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-29T04:53:41.000Z" + }, + "end": { + "$date": "2021-08-29T06:17:38.000Z" + }, + "events": [ + { + "uuid": "4f95118d-4b89-4c90-a151-e6643ad4ca21", + "start": { + "$date": "2021-08-29T04:53:41.000Z" + }, + "end": { + "$date": "2021-08-29T06:17:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3ff899ad-c2c0-4510-8d88-ce20f653d8f8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-29T05:18:40.000Z" + }, + "end": { + "$date": "2021-08-29T06:24:09.000Z" + }, + "events": [ + { + "uuid": "72084b74-2a66-4723-b2b5-c9ff4c6f64d3", + "start": { + "$date": "2021-08-29T05:18:40.000Z" + }, + "end": { + "$date": "2021-08-29T06:04:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da911c35-ada6-4555-a7eb-ef4df69d5216", + "start": { + "$date": "2021-08-29T06:04:40.000Z" + }, + "end": { + "$date": "2021-08-29T06:24:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66b46b95-c156-4717-af53-955d15b53718", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-29T05:23:28.000Z" + }, + "end": { + "$date": "2021-08-29T05:57:53.000Z" + }, + "events": [ + { + "uuid": "7df6ffd7-4581-4335-8218-80e89294ddc4", + "start": { + "$date": "2021-08-29T05:23:28.000Z" + }, + "end": { + "$date": "2021-08-29T05:57:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "3ed55825-a7c5-4557-838a-f621fb19c88f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-29T06:20:55.000Z" + }, + "end": { + "$date": "2021-08-29T07:06:24.000Z" + }, + "events": [ + { + "uuid": "634dbdce-cb93-41cf-9050-1f5fa5b97adb", + "start": { + "$date": "2021-08-29T06:20:55.000Z" + }, + "end": { + "$date": "2021-08-29T07:06:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e8c8aac8-5428-4576-95c6-a7b8ee55aef8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T14:09:28.000Z" + }, + "end": { + "$date": "2021-08-29T14:18:00.000Z" + }, + "events": [ + { + "uuid": "527d240c-5d86-41ca-a8e9-d73c34102cff", + "start": { + "$date": "2021-08-29T14:09:28.000Z" + }, + "end": { + "$date": "2021-08-29T14:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b88098c3-b419-4de2-bf5f-479de5b2abc6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T14:31:07.000Z" + }, + "end": { + "$date": "2021-08-29T14:37:33.000Z" + }, + "events": [ + { + "uuid": "7bb2c13a-3de0-404b-8fbe-c78218e14410", + "start": { + "$date": "2021-08-29T14:31:07.000Z" + }, + "end": { + "$date": "2021-08-29T14:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "e7595fc0-c5d0-495b-b696-d410b35952c9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T14:38:58.000Z" + }, + "end": { + "$date": "2021-08-29T14:59:44.000Z" + }, + "events": [ + { + "uuid": "30a9362d-919a-4de1-8605-3ec0c65e6dd1", + "start": { + "$date": "2021-08-29T14:38:58.000Z" + }, + "end": { + "$date": "2021-08-29T14:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f4c5e3a1-18ed-4e49-a7a2-a227a01e2d86", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T14:59:58.000Z" + }, + "end": { + "$date": "2021-08-29T17:37:37.000Z" + }, + "events": [ + { + "uuid": "d593eb66-1fd5-461c-b866-2df394f7aada", + "start": { + "$date": "2021-08-29T14:59:58.000Z" + }, + "end": { + "$date": "2021-08-29T17:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e8b7ef7f-812b-435a-b132-3cf7d85bf247", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T16:24:34.000Z" + }, + "end": { + "$date": "2021-08-29T16:53:30.000Z" + }, + "events": [ + { + "uuid": "80b582a1-d879-4cc9-ab58-04cf81b8e4c0", + "start": { + "$date": "2021-08-29T16:24:34.000Z" + }, + "end": { + "$date": "2021-08-29T16:53:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "86192fb8-62e2-462c-bcae-9314bcbdbe2c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T16:54:34.000Z" + }, + "end": { + "$date": "2021-08-29T18:35:22.000Z" + }, + "events": [ + { + "uuid": "80b178b1-e7da-405a-b56c-d0e91c55ecc9", + "start": { + "$date": "2021-08-29T16:54:34.000Z" + }, + "end": { + "$date": "2021-08-29T18:35:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e2189ae6-0c88-46f2-a5fc-4c29908880fa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-29T17:24:02.000Z" + }, + "end": { + "$date": "2021-08-29T22:38:28.000Z" + }, + "events": [ + { + "uuid": "e3a597d7-4985-40e3-a550-a3c8e5c10985", + "start": { + "$date": "2021-08-29T17:24:02.000Z" + }, + "end": { + "$date": "2021-08-29T22:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "19b69b8d-c991-45d1-881f-908d31a2d282", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-29T17:32:19.000Z" + }, + "end": { + "$date": "2021-08-29T17:48:30.000Z" + }, + "events": [ + { + "uuid": "c5cb86d7-30e8-4205-b96e-edb3bf828ed2", + "start": { + "$date": "2021-08-29T17:32:19.000Z" + }, + "end": { + "$date": "2021-08-29T17:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "05041297-4d12-4222-aa1c-ec2734e76cf0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T17:39:01.000Z" + }, + "end": { + "$date": "2021-08-29T18:58:59.000Z" + }, + "events": [ + { + "uuid": "7b59578d-7e1f-45b3-b723-4d7f3a59d667", + "start": { + "$date": "2021-08-29T17:39:01.000Z" + }, + "end": { + "$date": "2021-08-29T18:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "66ee7464-03d6-497e-988c-4dab989a154c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-29T17:56:24.000Z" + }, + "end": { + "$date": "2021-08-29T18:27:06.000Z" + }, + "events": [ + { + "uuid": "1b844782-2280-467e-8f89-aac826666b7e", + "start": { + "$date": "2021-08-29T17:56:24.000Z" + }, + "end": { + "$date": "2021-08-29T18:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b85ebe64-f698-4ced-a767-a48a641209cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-29T18:16:05.000Z" + }, + "end": { + "$date": "2021-08-29T18:22:55.000Z" + }, + "events": [ + { + "uuid": "d75ffc51-d609-438e-80e7-ff6ea23ece8b", + "start": { + "$date": "2021-08-29T18:16:05.000Z" + }, + "end": { + "$date": "2021-08-29T18:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "dd2191a8-8aa1-43c0-a964-52ba08b7753b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T18:23:46.000Z" + }, + "end": { + "$date": "2021-08-29T19:03:26.000Z" + }, + "events": [ + { + "uuid": "655a16b2-2dc0-49a7-b547-6cdffca3453d", + "start": { + "$date": "2021-08-29T18:23:46.000Z" + }, + "end": { + "$date": "2021-08-29T19:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "ce8dc180-2bca-47cc-9f3a-89a7839954c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-29T18:27:36.000Z" + }, + "end": { + "$date": "2021-08-29T18:32:20.000Z" + }, + "events": [ + { + "uuid": "e138b8d5-fd24-46a5-bb16-303affd22f02", + "start": { + "$date": "2021-08-29T18:27:36.000Z" + }, + "end": { + "$date": "2021-08-29T18:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72233048-7fca-4b7a-97e0-d1c295320df2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T18:38:31.000Z" + }, + "end": { + "$date": "2021-08-29T19:13:59.000Z" + }, + "events": [ + { + "uuid": "4a7b10bc-2732-4a88-9202-354e5652cdff", + "start": { + "$date": "2021-08-29T18:38:31.000Z" + }, + "end": { + "$date": "2021-08-29T19:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "0f467c81-f248-4bb9-91b1-83e2563a22a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T18:59:19.000Z" + }, + "end": { + "$date": "2021-08-29T19:41:40.000Z" + }, + "events": [ + { + "uuid": "2d352ef9-aff0-4b0c-8192-7bda3549ff30", + "start": { + "$date": "2021-08-29T18:59:19.000Z" + }, + "end": { + "$date": "2021-08-29T19:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "b9e86708-b4cb-4af6-a8c5-92b384f6e59a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T19:03:34.000Z" + }, + "end": { + "$date": "2021-08-29T20:06:43.000Z" + }, + "events": [ + { + "uuid": "2092e3f2-59a6-4e6f-8bdb-0f3ff2f08b9a", + "start": { + "$date": "2021-08-29T19:03:34.000Z" + }, + "end": { + "$date": "2021-08-29T20:06:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6747375-d1b1-48c2-a194-55137c96e25a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T19:25:48.000Z" + }, + "end": { + "$date": "2021-08-29T19:32:05.000Z" + }, + "events": [ + { + "uuid": "288c8e76-049d-4b3e-8938-d8bc9d6ac9e5", + "start": { + "$date": "2021-08-29T19:25:48.000Z" + }, + "end": { + "$date": "2021-08-29T19:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c2c34d4-ed16-49e8-a365-d05f8e3a45a6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T19:34:16.000Z" + }, + "end": { + "$date": "2021-08-29T20:02:09.000Z" + }, + "events": [ + { + "uuid": "33c6f6ed-b1cd-40f6-900b-608625a6d591", + "start": { + "$date": "2021-08-29T19:34:16.000Z" + }, + "end": { + "$date": "2021-08-29T20:02:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "713d15ad-4247-403a-b3d5-bb0ee01e9ee3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T20:04:08.000Z" + }, + "end": { + "$date": "2021-08-29T20:42:37.000Z" + }, + "events": [ + { + "uuid": "c5ec7031-d0bc-47ef-8f54-c4ef70e2c09b", + "start": { + "$date": "2021-08-29T20:04:08.000Z" + }, + "end": { + "$date": "2021-08-29T20:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2b9877a-0983-4e5f-96b0-9d85a9d548aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-29T21:55:04.000Z" + }, + "end": { + "$date": "2021-08-29T21:56:11.000Z" + }, + "events": [ + { + "uuid": "7b0ddfed-506f-4d18-ad69-394b147f18d9", + "start": { + "$date": "2021-08-29T21:55:04.000Z" + }, + "end": { + "$date": "2021-08-29T21:56:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8fd622bc-3ef7-4a30-9702-9f2cc5388dd7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T21:10:12.000Z" + }, + "end": { + "$date": "2021-08-29T23:11:32.000Z" + }, + "events": [ + { + "uuid": "d923422a-eda5-4c78-9e08-3661330d262b", + "start": { + "$date": "2021-08-29T21:10:12.000Z" + }, + "end": { + "$date": "2021-08-29T23:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69df7cc8-e2ec-4b94-a05a-40b5533d2c38", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-29T21:19:41.000Z" + }, + "end": { + "$date": "2021-08-29T21:54:48.000Z" + }, + "events": [ + { + "uuid": "2625ea27-64a5-4103-bdb4-81ecd7a7252b", + "start": { + "$date": "2021-08-29T21:19:41.000Z" + }, + "end": { + "$date": "2021-08-29T21:54:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a64826d-7f40-4a7a-8409-a74167ae1ee4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-29T21:55:57.000Z" + }, + "end": { + "$date": "2021-08-29T23:09:05.000Z" + }, + "events": [ + { + "uuid": "c2cab936-f17c-453b-b018-2bd8739e82ba", + "start": { + "$date": "2021-08-29T21:55:57.000Z" + }, + "end": { + "$date": "2021-08-29T23:09:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "113fb12b-3c3e-4523-b04d-aeb46cd0bac0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-29T20:32:21.000Z" + }, + "end": { + "$date": "2021-08-30T05:46:28.000Z" + }, + "events": [ + { + "uuid": "6f8a0bc9-80c9-49c7-930b-5ab777cac57e", + "start": { + "$date": "2021-08-29T20:32:21.000Z" + }, + "end": { + "$date": "2021-08-29T21:25:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74c621d0-78a6-4062-92dd-7b8afb2ca76c", + "start": { + "$date": "2021-08-29T21:25:21.000Z" + }, + "end": { + "$date": "2021-08-29T21:27:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef47d227-a25a-45c4-a3c9-53ed27747fca", + "start": { + "$date": "2021-08-29T21:27:21.000Z" + }, + "end": { + "$date": "2021-08-30T00:59:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "333ae837-8fa2-4d3d-974d-765b318ce436", + "start": { + "$date": "2021-08-30T00:59:21.000Z" + }, + "end": { + "$date": "2021-08-30T01:04:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f480531-4c2c-494a-a553-a1fd46d49fb9", + "start": { + "$date": "2021-08-30T01:04:21.000Z" + }, + "end": { + "$date": "2021-08-30T01:15:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5324f9f7-f2ee-44fe-8dee-91e2bfcc24ad", + "start": { + "$date": "2021-08-30T01:15:21.000Z" + }, + "end": { + "$date": "2021-08-30T01:29:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "399c1337-638b-4803-9cd3-3bc0f32a4f2e", + "start": { + "$date": "2021-08-30T01:29:21.000Z" + }, + "end": { + "$date": "2021-08-30T01:39:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0fecce9b-873d-4560-ad50-c3698ece17ae", + "start": { + "$date": "2021-08-30T01:39:21.000Z" + }, + "end": { + "$date": "2021-08-30T01:54:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e2c5fd7-6b82-4dbd-a0de-a308300542ac", + "start": { + "$date": "2021-08-30T01:54:21.000Z" + }, + "end": { + "$date": "2021-08-30T05:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "2aba2500-f965-40ea-8eb3-3d2f70f37bef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-29T22:20:39.000Z" + }, + "end": { + "$date": "2021-08-29T22:22:47.000Z" + }, + "events": [ + { + "uuid": "a08869e8-b9b8-4f28-af4b-9d151daf9dc9", + "start": { + "$date": "2021-08-29T22:20:39.000Z" + }, + "end": { + "$date": "2021-08-29T22:22:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07529c08-3a5d-40ce-9186-e356e3c3dfe8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T22:29:16.000Z" + }, + "end": { + "$date": "2021-08-29T23:06:00.000Z" + }, + "events": [ + { + "uuid": "610ea9f4-6f30-47ef-bb1d-824fa7d3c22d", + "start": { + "$date": "2021-08-29T22:29:16.000Z" + }, + "end": { + "$date": "2021-08-29T23:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e5356f2-8a36-42c6-887e-e748d4b65183", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-29T23:10:09.000Z" + }, + "end": { + "$date": "2021-08-29T23:40:48.000Z" + }, + "events": [ + { + "uuid": "9f7d2692-90af-43fe-baf7-e451f9cad1d1", + "start": { + "$date": "2021-08-29T23:10:09.000Z" + }, + "end": { + "$date": "2021-08-29T23:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "9938876d-0761-4b9b-83ad-675c29ff2520", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T23:11:56.000Z" + }, + "end": { + "$date": "2021-08-29T23:18:02.000Z" + }, + "events": [ + { + "uuid": "48bf2913-a1f3-4e2f-afdd-0990b4ad4bbd", + "start": { + "$date": "2021-08-29T23:11:56.000Z" + }, + "end": { + "$date": "2021-08-29T23:18:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "4c67bf9f-a5b6-4cd4-97e5-196b7c9e317d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-29T23:21:27.000Z" + }, + "end": { + "$date": "2021-08-30T00:10:39.000Z" + }, + "events": [ + { + "uuid": "d410b8ac-751a-45f5-8f24-82f0f937b9af", + "start": { + "$date": "2021-08-29T23:21:27.000Z" + }, + "end": { + "$date": "2021-08-30T00:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "ff8bebd7-a62a-454b-bf83-8f2fa5bf4734", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-30T00:11:54.000Z" + }, + "end": { + "$date": "2021-08-30T00:53:53.000Z" + }, + "events": [ + { + "uuid": "b224e10e-39f7-48f4-a6fb-bdc350b1a057", + "start": { + "$date": "2021-08-30T00:11:54.000Z" + }, + "end": { + "$date": "2021-08-30T00:53:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "985a8799-48de-449c-927e-432287f92d7e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-30T00:54:02.000Z" + }, + "end": { + "$date": "2021-08-30T02:36:54.000Z" + }, + "events": [ + { + "uuid": "103b82c2-862a-4820-b4da-8213d48a7b44", + "start": { + "$date": "2021-08-30T00:54:02.000Z" + }, + "end": { + "$date": "2021-08-30T02:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "d0384bd2-bcee-459b-a055-ca07897aa90f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-30T01:51:42.000Z" + }, + "end": { + "$date": "2021-08-30T08:05:18.000Z" + }, + "events": [ + { + "uuid": "ea85d28b-b167-4e7b-807f-6a7f81611465", + "start": { + "$date": "2021-08-30T01:51:42.000Z" + }, + "end": { + "$date": "2021-08-30T08:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bdb075b4-bc04-4956-9576-9ec1f36fbedd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-30T02:10:24.000Z" + }, + "end": { + "$date": "2021-08-30T02:41:35.000Z" + }, + "events": [ + { + "uuid": "b02f670c-f6fd-4173-9703-2c4164e6d1d2", + "start": { + "$date": "2021-08-30T02:10:24.000Z" + }, + "end": { + "$date": "2021-08-30T02:41:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6005984a-f587-4d2e-9c64-2f57ae33691f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-30T02:51:46.000Z" + }, + "end": { + "$date": "2021-08-30T03:12:36.000Z" + }, + "events": [ + { + "uuid": "29ffb12a-2dbc-4dba-94a4-4f66947c8308", + "start": { + "$date": "2021-08-30T02:51:46.000Z" + }, + "end": { + "$date": "2021-08-30T03:12:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ed7a0ffa-145a-4585-b47a-a3dc50b7cf5e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-30T03:10:15.000Z" + }, + "end": { + "$date": "2021-08-30T06:19:07.000Z" + }, + "events": [ + { + "uuid": "e3ae2a1f-85da-4607-952e-05dcf1332e14", + "start": { + "$date": "2021-08-30T03:10:15.000Z" + }, + "end": { + "$date": "2021-08-30T06:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "79d56cc9-0a5f-46bd-a159-be00fbcb1f64", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-30T03:16:31.000Z" + }, + "end": { + "$date": "2021-08-30T04:18:30.000Z" + }, + "events": [ + { + "uuid": "005f888d-d91c-4ace-9646-3f6ffdb0909e", + "start": { + "$date": "2021-08-30T03:16:31.000Z" + }, + "end": { + "$date": "2021-08-30T04:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "273f8424-03c5-4646-b72e-8a6784fc3635", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-08-30T03:51:17.000Z" + }, + "end": { + "$date": "2021-08-30T05:32:41.000Z" + }, + "events": [ + { + "uuid": "64b364ef-ddab-41e4-9047-92aa0d7d482f", + "start": { + "$date": "2021-08-30T03:51:17.000Z" + }, + "end": { + "$date": "2021-08-30T05:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "94557528-4d1c-4f41-a51f-8a25cb6ba2f2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-08-30T03:54:55.000Z" + }, + "end": { + "$date": "2021-08-30T05:32:37.000Z" + }, + "events": [ + { + "uuid": "a553b6ee-3c60-41ff-82e2-bd7fb5b4e87c", + "start": { + "$date": "2021-08-30T03:54:55.000Z" + }, + "end": { + "$date": "2021-08-30T05:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "04fc1df1-a977-48ac-a381-e65c8d991a01", + "uuid": "53294a09-a5d7-4291-b566-be7061dab44a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-08-30T04:35:07.000Z" + }, + "end": { + "$date": "2021-08-30T06:21:57.000Z" + }, + "events": [ + { + "uuid": "6e26e3fc-8576-4408-95d7-b39b57e71cd9", + "start": { + "$date": "2021-08-30T04:35:07.000Z" + }, + "end": { + "$date": "2021-08-30T06:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed84ef63-4aaf-4c70-9c9a-ab6b7316b956", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-30T05:14:04.000Z" + }, + "end": { + "$date": "2021-08-30T05:42:10.000Z" + }, + "events": [ + { + "uuid": "ac659ec4-bfbf-484e-a4bd-cbb790e02292", + "start": { + "$date": "2021-08-30T05:14:04.000Z" + }, + "end": { + "$date": "2021-08-30T05:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "bda8fb64-14bf-4406-b85a-6ca85308aefd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-30T01:51:42.000Z" + }, + "end": { + "$date": "2021-08-30T08:44:34.000Z" + }, + "events": [ + { + "uuid": "581e801e-a9c3-451b-8f60-1c35f8940823", + "start": { + "$date": "2021-08-30T01:51:42.000Z" + }, + "end": { + "$date": "2021-08-30T08:44:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7c46aa8d-33e3-433e-8072-7433541ad969", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-30T17:46:21.000Z" + }, + "end": { + "$date": "2021-08-30T17:57:37.000Z" + }, + "events": [ + { + "uuid": "a39413d6-dd1e-4205-9479-b99e1f6bc525", + "start": { + "$date": "2021-08-30T17:46:21.000Z" + }, + "end": { + "$date": "2021-08-30T17:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cccc53e-db6a-422b-b4cc-f40e3a56398c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-30T17:49:25.000Z" + }, + "end": { + "$date": "2021-08-30T18:24:36.000Z" + }, + "events": [ + { + "uuid": "49011398-4de0-4793-8b0a-752552328f75", + "start": { + "$date": "2021-08-30T17:49:25.000Z" + }, + "end": { + "$date": "2021-08-30T18:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "1d4df1af-8598-43d9-83cf-0cec28bb3f20", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-30T18:10:02.000Z" + }, + "end": { + "$date": "2021-08-30T19:02:18.000Z" + }, + "events": [ + { + "uuid": "b5fc70a3-6318-46bf-a5ce-ac504e889d1d", + "start": { + "$date": "2021-08-30T18:10:02.000Z" + }, + "end": { + "$date": "2021-08-30T19:02:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "7daf50a0-d7e0-4ad7-b298-6eba6df5d0a9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-30T18:34:01.000Z" + }, + "end": { + "$date": "2021-08-31T00:03:11.000Z" + }, + "events": [ + { + "uuid": "f2218331-05f8-433a-9526-029a2eee2a28", + "start": { + "$date": "2021-08-30T18:34:01.000Z" + }, + "end": { + "$date": "2021-08-31T00:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "489e082b-d75a-4593-a4c0-bced3558bac2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-30T18:50:44.000Z" + }, + "end": { + "$date": "2021-08-30T19:27:36.000Z" + }, + "events": [ + { + "uuid": "7d728646-a987-457d-a376-0f5a5ffeac08", + "start": { + "$date": "2021-08-30T18:50:44.000Z" + }, + "end": { + "$date": "2021-08-30T19:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65d8e2f5-7e0e-45f7-bc70-579a6ae64877", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-30T19:29:36.000Z" + }, + "end": { + "$date": "2021-08-30T20:03:59.000Z" + }, + "events": [ + { + "uuid": "cfaec0ca-1ea9-4859-9798-752aea2af05a", + "start": { + "$date": "2021-08-30T19:29:36.000Z" + }, + "end": { + "$date": "2021-08-30T20:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f1c33a6-680d-43cd-8d44-1f92382ad328", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-30T20:08:35.000Z" + }, + "end": { + "$date": "2021-08-30T20:34:27.000Z" + }, + "events": [ + { + "uuid": "e4ce3f5d-12cf-4cad-8716-9b599cf5836a", + "start": { + "$date": "2021-08-30T20:08:35.000Z" + }, + "end": { + "$date": "2021-08-30T20:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1918bc78-a555-48b0-81a5-6a09cc7c8a86", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-30T20:33:35.000Z" + }, + "end": { + "$date": "2021-08-30T20:51:46.000Z" + }, + "events": [ + { + "uuid": "79d93f37-b6fa-49e4-9f22-c89cef05e897", + "start": { + "$date": "2021-08-30T20:33:35.000Z" + }, + "end": { + "$date": "2021-08-30T20:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "261b5613-9078-4c01-bd87-da7f7ba66cff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-08-30T21:51:11.000Z" + }, + "end": { + "$date": "2021-08-30T22:25:31.000Z" + }, + "events": [ + { + "uuid": "03b4541c-f2de-4451-a8a0-ab53e7368f43", + "start": { + "$date": "2021-08-30T21:51:11.000Z" + }, + "end": { + "$date": "2021-08-30T22:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "fa1de17d-3c5a-478d-8254-f6b6c3265b95", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-08-30T22:27:21.000Z" + }, + "end": { + "$date": "2021-08-31T00:16:23.000Z" + }, + "events": [ + { + "uuid": "13412ea7-0ed6-4cee-8dd9-926caa8f8d21", + "start": { + "$date": "2021-08-30T22:27:21.000Z" + }, + "end": { + "$date": "2021-08-31T00:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c57f40dc-fff6-4057-9e7b-2135d19f5a42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-30T23:41:01.000Z" + }, + "end": { + "$date": "2021-08-31T00:06:42.000Z" + }, + "events": [ + { + "uuid": "fd2aae79-4098-43a9-ad7e-aaaaada9302a", + "start": { + "$date": "2021-08-30T23:41:01.000Z" + }, + "end": { + "$date": "2021-08-31T00:06:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "865a9d09-90f1-4397-89ef-eab0c2989292", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-31T00:19:20.000Z" + }, + "end": { + "$date": "2021-08-31T00:52:18.000Z" + }, + "events": [ + { + "uuid": "6f474fc5-27ed-47ad-8935-6f9205608fb8", + "start": { + "$date": "2021-08-31T00:19:20.000Z" + }, + "end": { + "$date": "2021-08-31T00:52:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "01eef348-b5f4-46a5-9e8f-2ab328d2d480", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-31T00:57:49.000Z" + }, + "end": { + "$date": "2021-08-31T01:12:01.000Z" + }, + "events": [ + { + "uuid": "1a9909fc-b444-4d54-b27a-615b7a24f95e", + "start": { + "$date": "2021-08-31T00:57:49.000Z" + }, + "end": { + "$date": "2021-08-31T01:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "49575b96-c243-49d9-a31d-9c31bc4e5752", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-30T23:49:35.000Z" + }, + "end": { + "$date": "2021-08-31T04:40:41.000Z" + }, + "events": [ + { + "uuid": "c0d5d581-5cbc-4d29-b7e1-73bb43150610", + "start": { + "$date": "2021-08-30T23:49:35.000Z" + }, + "end": { + "$date": "2021-08-31T04:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5fae5910-1145-4a93-a355-105c82d2ffa4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-31T01:21:23.000Z" + }, + "end": { + "$date": "2021-08-31T04:13:03.000Z" + }, + "events": [ + { + "uuid": "30fea466-c3bd-4385-9754-fd4ced974ea6", + "start": { + "$date": "2021-08-31T01:21:23.000Z" + }, + "end": { + "$date": "2021-08-31T04:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d384499-da49-4d57-9cf9-3c3ead0cc374", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-31T02:27:46.000Z" + }, + "end": { + "$date": "2021-08-31T03:03:36.000Z" + }, + "events": [ + { + "uuid": "00d2f2f1-9162-48c2-a6b4-24813640856a", + "start": { + "$date": "2021-08-31T02:27:46.000Z" + }, + "end": { + "$date": "2021-08-31T03:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b612c132-c798-4f02-b1c0-0f9a20c16887", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-31T04:20:06.000Z" + }, + "end": { + "$date": "2021-08-31T04:47:57.000Z" + }, + "events": [ + { + "uuid": "32fcfaad-584c-499b-9a1d-6ef6bd51cb5f", + "start": { + "$date": "2021-08-31T04:20:06.000Z" + }, + "end": { + "$date": "2021-08-31T04:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed5a83cd-1568-4274-9101-6926c85acc61", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-08-31T04:20:04.000Z" + }, + "end": { + "$date": "2021-08-31T04:47:39.000Z" + }, + "events": [ + { + "uuid": "68546917-e629-47c2-a39e-5df7f4dc2ddf", + "start": { + "$date": "2021-08-31T04:20:04.000Z" + }, + "end": { + "$date": "2021-08-31T04:47:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a8f7896e-c3c1-450f-a77a-ebb3afb2d671", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-08-31T04:40:21.000Z" + }, + "end": { + "$date": "2021-08-31T05:05:48.000Z" + }, + "events": [ + { + "uuid": "ca18c2e4-bf53-4428-a09c-255a914e0b04", + "start": { + "$date": "2021-08-31T04:40:21.000Z" + }, + "end": { + "$date": "2021-08-31T05:05:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a11262e0-1084-40c8-9c37-9eb85317c4da", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-31T05:36:32.000Z" + }, + "end": { + "$date": "2021-08-31T06:04:03.000Z" + }, + "events": [ + { + "uuid": "d40806f2-5683-4f13-8bea-6ace9a36a157", + "start": { + "$date": "2021-08-31T05:36:32.000Z" + }, + "end": { + "$date": "2021-08-31T06:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "312f8433-fe66-44b4-858c-30133a1266a6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-08-31T06:13:03.000Z" + }, + "end": { + "$date": "2021-08-31T06:44:19.000Z" + }, + "events": [ + { + "uuid": "f15334ff-d8d8-4a43-871a-454897f5c5fa", + "start": { + "$date": "2021-08-31T06:13:03.000Z" + }, + "end": { + "$date": "2021-08-31T06:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "67003291-8174-44f5-bea7-39e8432685b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-31T21:42:14.000Z" + }, + "end": { + "$date": "2021-08-31T21:43:00.000Z" + }, + "events": [ + { + "uuid": "bf047ecf-fc5c-4987-b812-835747bd2103", + "start": { + "$date": "2021-08-31T21:42:14.000Z" + }, + "end": { + "$date": "2021-09-01T00:10:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "19f98bb0-955f-4dab-aa19-5925d0db1e7b", + "start": { + "$date": "2021-09-01T00:10:14.000Z" + }, + "end": { + "$date": "2021-09-01T00:11:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "480c837c-3a12-469a-a92a-0a00933882ad", + "start": { + "$date": "2021-09-01T00:11:14.000Z" + }, + "end": { + "$date": "2021-09-01T00:51:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d020f0e3-22dd-49f0-9d72-f93d985eb4ef", + "start": { + "$date": "2021-09-01T00:51:14.000Z" + }, + "end": { + "$date": "2021-09-01T01:01:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "318e54c9-4844-419b-8324-64656ab2ea26", + "start": { + "$date": "2021-09-01T01:01:14.000Z" + }, + "end": { + "$date": "2021-09-01T01:26:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da163dc9-22d7-47a8-9df2-fedaf02d39ef", + "start": { + "$date": "2021-09-01T01:26:14.000Z" + }, + "end": { + "$date": "2021-09-01T01:31:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "562ea8c8-54ae-4884-bfc3-b1075b78fbbf", + "start": { + "$date": "2021-09-01T01:31:14.000Z" + }, + "end": { + "$date": "2021-09-01T01:57:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86614a49-5de9-41f7-b210-9a9203a748c3", + "start": { + "$date": "2021-09-01T01:57:14.000Z" + }, + "end": { + "$date": "2021-09-01T02:04:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f4205722-34b1-4007-8518-8f10e6f0f469", + "start": { + "$date": "2021-09-01T02:04:14.000Z" + }, + "end": { + "$date": "2021-09-01T02:23:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa7dbce5-9b5f-4e5f-a21b-acfe3b47e6d4", + "start": { + "$date": "2021-09-01T02:23:14.000Z" + }, + "end": { + "$date": "2021-09-01T02:29:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09ec64be-7e46-49a3-8f21-17fae2615ecf", + "start": { + "$date": "2021-09-01T02:29:14.000Z" + }, + "end": { + "$date": "2021-09-01T02:46:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3638f07-ea7b-476a-804e-ab30987eeaf0", + "start": { + "$date": "2021-09-01T02:46:14.000Z" + }, + "end": { + "$date": "2021-09-01T02:48:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2257f143-d891-4166-b8b4-fb09aa1170b6", + "start": { + "$date": "2021-09-01T02:48:14.000Z" + }, + "end": { + "$date": "2021-09-01T03:40:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "94f955e5-8d21-43b7-92a2-bc2db99d91d8", + "start": { + "$date": "2021-09-01T03:40:14.000Z" + }, + "end": { + "$date": "2021-09-01T03:41:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "acafac00-a6aa-444d-8613-b931ed720dd0", + "start": { + "$date": "2021-09-01T03:41:14.000Z" + }, + "end": { + "$date": "2021-08-31T21:43:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d80687c1-84e7-42c7-97e6-98fcb73a3e6a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-31T14:30:18.000Z" + }, + "end": { + "$date": "2021-08-31T15:21:29.000Z" + }, + "events": [ + { + "uuid": "98b84508-d693-4849-ae4e-5240627bf183", + "start": { + "$date": "2021-08-31T14:30:18.000Z" + }, + "end": { + "$date": "2021-08-31T15:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e31f72f-7a42-4e2a-850d-fe7551105b53", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-31T15:23:51.000Z" + }, + "end": { + "$date": "2021-08-31T15:41:12.000Z" + }, + "events": [ + { + "uuid": "c51d46ac-3525-4785-a927-9172c41b065f", + "start": { + "$date": "2021-08-31T15:23:51.000Z" + }, + "end": { + "$date": "2021-08-31T15:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c2dde84-ce6b-48f3-a94b-4bbe0f3225cc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-31T15:55:16.000Z" + }, + "end": { + "$date": "2021-08-31T16:14:23.000Z" + }, + "events": [ + { + "uuid": "f9bdc00a-fdcd-4e80-9769-47c9a0a1bf6a", + "start": { + "$date": "2021-08-31T15:55:16.000Z" + }, + "end": { + "$date": "2021-08-31T16:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f60d1dd-887f-4b2f-a7ca-e5098f7fe0e3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-31T16:14:25.000Z" + }, + "end": { + "$date": "2021-08-31T16:35:42.000Z" + }, + "events": [ + { + "uuid": "53da6627-0473-4287-94a6-b455d340a88e", + "start": { + "$date": "2021-08-31T16:14:25.000Z" + }, + "end": { + "$date": "2021-08-31T16:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d1865927-04c4-4aee-8f08-20f98240812b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-08-31T16:36:38.000Z" + }, + "end": { + "$date": "2021-08-31T17:22:57.000Z" + }, + "events": [ + { + "uuid": "f4cb64bd-1d9b-493e-8aae-e4f05e074638", + "start": { + "$date": "2021-08-31T16:36:38.000Z" + }, + "end": { + "$date": "2021-08-31T17:22:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec503cec-4204-487b-b0da-fcb4e9bb2e4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-08-31T18:17:00.000Z" + }, + "end": { + "$date": "2021-08-31T18:50:20.000Z" + }, + "events": [ + { + "uuid": "00f9cb49-4f15-422f-ac11-3a739f8c254d", + "start": { + "$date": "2021-08-31T18:17:00.000Z" + }, + "end": { + "$date": "2021-08-31T18:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "472e63a5-0139-40e2-9702-f9e054cd16b8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-08-31T20:26:34.000Z" + }, + "end": { + "$date": "2021-08-31T21:04:25.000Z" + }, + "events": [ + { + "uuid": "ef024733-7cc5-465a-a9df-730f2aa98b75", + "start": { + "$date": "2021-08-31T20:26:34.000Z" + }, + "end": { + "$date": "2021-08-31T21:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f64894c7-8e21-45c8-b226-b246ed2af453", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-31T21:17:34.000Z" + }, + "end": { + "$date": "2021-08-31T21:29:14.000Z" + }, + "events": [ + { + "uuid": "867309d9-4ba7-41c2-b75c-b96e31749efb", + "start": { + "$date": "2021-08-31T21:17:34.000Z" + }, + "end": { + "$date": "2021-08-31T21:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "16ed2ef2-d5f6-4ff8-ae21-e58afb296083", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-31T21:43:55.000Z" + }, + "end": { + "$date": "2021-08-31T23:06:00.000Z" + }, + "events": [ + { + "uuid": "02af1ff0-6d57-48e5-b186-fdd542cd4dde", + "start": { + "$date": "2021-08-31T21:43:55.000Z" + }, + "end": { + "$date": "2021-08-31T23:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "faff85c2-28c8-4190-a0cf-a3865908476f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-08-31T22:15:06.000Z" + }, + "end": { + "$date": "2021-09-01T03:48:52.000Z" + }, + "events": [ + { + "uuid": "d411bc3d-3241-4bba-ad0b-1acbf27366cb", + "start": { + "$date": "2021-08-31T22:15:06.000Z" + }, + "end": { + "$date": "2021-09-01T03:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "683fb627-4815-4279-bba5-cfa2e949d8a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-31T22:39:25.000Z" + }, + "end": { + "$date": "2021-08-31T22:54:30.000Z" + }, + "events": [ + { + "uuid": "7c856cec-ff39-41f3-9d65-b8a430b7f54f", + "start": { + "$date": "2021-08-31T22:39:25.000Z" + }, + "end": { + "$date": "2021-08-31T22:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "6e660ce3-30b4-4066-a98f-432a3e69af86", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-08-31T23:11:05.000Z" + }, + "end": { + "$date": "2021-09-01T00:13:01.000Z" + }, + "events": [ + { + "uuid": "2cf83475-6544-4965-8c3c-89a16e5efea8", + "start": { + "$date": "2021-08-31T23:11:05.000Z" + }, + "end": { + "$date": "2021-09-01T00:13:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2b6f396a-5808-4c92-8577-7fd1f79489ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-08-31T23:12:18.000Z" + }, + "end": { + "$date": "2021-09-01T04:58:58.000Z" + }, + "events": [ + { + "uuid": "61535d60-843d-494f-a949-d76f7ab258f5", + "start": { + "$date": "2021-08-31T23:12:18.000Z" + }, + "end": { + "$date": "2021-08-31T23:45:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ede3188-050c-49a3-bf0e-556ab36e1868", + "start": { + "$date": "2021-08-31T23:45:18.000Z" + }, + "end": { + "$date": "2021-09-01T00:44:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a50d33e6-bbb5-46a1-85fa-7ce9520a4bb7", + "start": { + "$date": "2021-09-01T00:44:18.000Z" + }, + "end": { + "$date": "2021-09-01T04:04:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "87e92778-856b-4c5f-bb55-e20767463f3e", + "start": { + "$date": "2021-09-01T04:04:18.000Z" + }, + "end": { + "$date": "2021-09-01T04:16:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "528752a9-362a-4a25-9b3e-5069353ed1b4", + "start": { + "$date": "2021-09-01T04:16:18.000Z" + }, + "end": { + "$date": "2021-09-01T04:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "cb1d06a7-33f8-4cdb-be19-1b280f7b6cf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T00:13:20.000Z" + }, + "end": { + "$date": "2021-09-01T00:16:16.000Z" + }, + "events": [ + { + "uuid": "6b2aea52-8431-4430-9d32-6049063ffdef", + "start": { + "$date": "2021-09-01T00:13:20.000Z" + }, + "end": { + "$date": "2021-09-01T00:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6361481d-057a-4754-af26-577c89975995", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T00:16:25.000Z" + }, + "end": { + "$date": "2021-09-01T00:50:52.000Z" + }, + "events": [ + { + "uuid": "2cbe8a3d-5ae7-425e-9e8a-fb7e746e9bb9", + "start": { + "$date": "2021-09-01T00:16:25.000Z" + }, + "end": { + "$date": "2021-09-01T00:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "40cbc26e-474a-43c4-9a69-30194cbbeb91", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T00:51:27.000Z" + }, + "end": { + "$date": "2021-09-01T01:49:15.000Z" + }, + "events": [ + { + "uuid": "dd2e3301-f67a-4ddf-be2d-287932c011f4", + "start": { + "$date": "2021-09-01T00:51:27.000Z" + }, + "end": { + "$date": "2021-09-01T01:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "d38f7764-0ef5-4f87-98e2-374f796fb93c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T01:13:47.000Z" + }, + "end": { + "$date": "2021-09-01T01:53:11.000Z" + }, + "events": [ + { + "uuid": "bd993a1b-4cec-45cc-9c3a-fad40c18c8d5", + "start": { + "$date": "2021-09-01T01:13:47.000Z" + }, + "end": { + "$date": "2021-09-01T01:53:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c29a0e30-62be-4471-ad40-959f89f4091f", + "uuid": "1d22d897-a667-4468-9a81-14f11ddc19a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-01T01:19:55.000Z" + }, + "end": { + "$date": "2021-09-01T01:25:11.000Z" + }, + "events": [ + { + "uuid": "a7e7d301-d93b-44a3-bace-ad7982ec6e9c", + "start": { + "$date": "2021-09-01T01:19:55.000Z" + }, + "end": { + "$date": "2021-09-01T01:25:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bc1fd8f4-d29d-4e64-8d96-1d117b783083", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T01:21:55.000Z" + }, + "end": { + "$date": "2021-09-01T01:23:41.000Z" + }, + "events": [ + { + "uuid": "ef1fdb63-e93d-4ac0-b6ac-b3825924ac90", + "start": { + "$date": "2021-09-01T01:21:55.000Z" + }, + "end": { + "$date": "2021-09-01T01:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9350e6a2-6d42-41d3-932a-935c106b33fe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T01:26:12.000Z" + }, + "end": { + "$date": "2021-09-01T02:03:00.000Z" + }, + "events": [ + { + "uuid": "1005af4a-5bac-40ed-8225-65d67bba5602", + "start": { + "$date": "2021-09-01T01:26:12.000Z" + }, + "end": { + "$date": "2021-09-01T02:03:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "4a91a7f7-dd39-4f86-9701-67cbf45a540c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T01:49:34.000Z" + }, + "end": { + "$date": "2021-09-01T01:57:31.000Z" + }, + "events": [ + { + "uuid": "3e06b780-9418-4250-b721-5149059518d2", + "start": { + "$date": "2021-09-01T01:49:34.000Z" + }, + "end": { + "$date": "2021-09-01T01:57:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a49bb4da-9bef-487e-9c31-30a87a271113", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T02:03:10.000Z" + }, + "end": { + "$date": "2021-09-01T04:04:39.000Z" + }, + "events": [ + { + "uuid": "c16e3093-0144-4ed2-ab76-28f5f29dea8a", + "start": { + "$date": "2021-09-01T02:03:10.000Z" + }, + "end": { + "$date": "2021-09-01T04:04:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "effad26b-4801-40ef-8934-fb09847cf2d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-01T02:55:39.000Z" + }, + "end": { + "$date": "2021-09-01T05:14:43.000Z" + }, + "events": [ + { + "uuid": "b6fe63ba-a64f-4df9-b2e9-75265cf31018", + "start": { + "$date": "2021-09-01T02:55:39.000Z" + }, + "end": { + "$date": "2021-09-01T05:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebd023c6-2bcc-4dad-b7ae-fe58a209130c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-01T04:02:36.000Z" + }, + "end": { + "$date": "2021-09-01T04:05:23.000Z" + }, + "events": [ + { + "uuid": "5a196a1e-9ee7-407d-baeb-612fff4d755d", + "start": { + "$date": "2021-09-01T04:02:36.000Z" + }, + "end": { + "$date": "2021-09-01T04:05:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3c5157d-f1c7-4d9e-981a-d7fdb4287268", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-01T04:46:56.000Z" + }, + "end": { + "$date": "2021-09-01T04:47:53.000Z" + }, + "events": [ + { + "uuid": "842ed31c-ef0b-493e-ba79-21575bb3f574", + "start": { + "$date": "2021-09-01T04:46:56.000Z" + }, + "end": { + "$date": "2021-09-01T04:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bc97cb7e-e66b-4f0b-9391-b0b1b1b6dac8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T04:00:09.000Z" + }, + "end": { + "$date": "2021-09-01T04:08:14.000Z" + }, + "events": [ + { + "uuid": "010d6669-c300-4e49-be9d-8473fd2a1ca1", + "start": { + "$date": "2021-09-01T04:00:09.000Z" + }, + "end": { + "$date": "2021-09-01T04:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5a2c5a2-d2cb-4dc6-aa0e-10e36a981ab1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-01T04:08:47.000Z" + }, + "end": { + "$date": "2021-09-01T04:46:47.000Z" + }, + "events": [ + { + "uuid": "de200ac8-e09b-432d-92a6-bd33082076dc", + "start": { + "$date": "2021-09-01T04:08:47.000Z" + }, + "end": { + "$date": "2021-09-01T04:46:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0bfa8f6-15a4-4bda-9aec-049f8e268210", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-01T04:08:30.000Z" + }, + "end": { + "$date": "2021-09-01T04:46:46.000Z" + }, + "events": [ + { + "uuid": "d80d6e88-3aa0-4605-8d26-b143797b598d", + "start": { + "$date": "2021-09-01T04:08:30.000Z" + }, + "end": { + "$date": "2021-09-01T04:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "bf1ddd73-61d9-4983-be3e-50af4664e9b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T04:13:15.000Z" + }, + "end": { + "$date": "2021-09-01T04:24:36.000Z" + }, + "events": [ + { + "uuid": "f4d8b70c-3395-4c0e-b055-bca37c632fb5", + "start": { + "$date": "2021-09-01T04:13:15.000Z" + }, + "end": { + "$date": "2021-09-01T04:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "d8448f80-0b1f-4201-bdea-49e7ec6f137b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T04:13:24.000Z" + }, + "end": { + "$date": "2021-09-01T04:16:30.000Z" + }, + "events": [ + { + "uuid": "bee78d7c-6028-42b9-9926-86e45e69fe0a", + "start": { + "$date": "2021-09-01T04:13:24.000Z" + }, + "end": { + "$date": "2021-09-01T04:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3cbfc243-4864-469c-9073-2090b3191646", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-01T04:16:41.000Z" + }, + "end": { + "$date": "2021-09-01T05:55:25.000Z" + }, + "events": [ + { + "uuid": "97a534e9-4ffb-43e1-b33f-2a9b77f3066a", + "start": { + "$date": "2021-09-01T04:16:41.000Z" + }, + "end": { + "$date": "2021-09-01T05:55:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "0caca011-53d8-4783-9415-9615577891bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T04:17:00.000Z" + }, + "end": { + "$date": "2021-09-01T04:18:52.000Z" + }, + "events": [ + { + "uuid": "a7260b2b-4435-43e4-8208-17fcc870a707", + "start": { + "$date": "2021-09-01T04:17:00.000Z" + }, + "end": { + "$date": "2021-09-01T04:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "d1c21563-3a46-4c4c-8d0c-bac37560082e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T04:21:12.000Z" + }, + "end": { + "$date": "2021-09-01T06:15:37.000Z" + }, + "events": [ + { + "uuid": "31b46874-0b0f-483a-84fe-2e2a56a4a6dc", + "start": { + "$date": "2021-09-01T04:21:12.000Z" + }, + "end": { + "$date": "2021-09-01T06:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cddd3c7f-b661-4e1b-81fc-c5efe8973735", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-01T04:50:01.000Z" + }, + "end": { + "$date": "2021-09-01T05:11:16.000Z" + }, + "events": [ + { + "uuid": "28a7fb06-66bc-4a27-a7e6-e2b84662cd14", + "start": { + "$date": "2021-09-01T04:50:01.000Z" + }, + "end": { + "$date": "2021-09-01T05:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb03ec8d-b880-446b-9a7f-b0a9eadc2b5b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-01T04:49:57.000Z" + }, + "end": { + "$date": "2021-09-01T05:11:18.000Z" + }, + "events": [ + { + "uuid": "d9d2ada5-945f-4cd0-91aa-9641676c318a", + "start": { + "$date": "2021-09-01T04:49:57.000Z" + }, + "end": { + "$date": "2021-09-01T05:11:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "47a5872e-57b6-40f3-bbde-1114175aa3cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-01T05:14:57.000Z" + }, + "end": { + "$date": "2021-09-01T05:56:07.000Z" + }, + "events": [ + { + "uuid": "914d47cb-d1c8-4a94-adca-3d611e72d3a7", + "start": { + "$date": "2021-09-01T05:14:57.000Z" + }, + "end": { + "$date": "2021-09-01T05:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "b2516912-a623-424f-8654-b912e9818f6e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-01T07:00:15.000Z" + }, + "end": { + "$date": "2021-09-01T08:08:52.000Z" + }, + "events": [ + { + "uuid": "117346c2-c22f-430d-88fa-904989afaf3b", + "start": { + "$date": "2021-09-01T07:00:15.000Z" + }, + "end": { + "$date": "2021-09-01T08:08:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0c7db21f-acc5-4d99-8768-16ee8a5b7869", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T14:31:03.000Z" + }, + "end": { + "$date": "2021-09-01T14:40:09.000Z" + }, + "events": [ + { + "uuid": "19159332-81a3-424a-a6ac-6ae9efbe2176", + "start": { + "$date": "2021-09-01T14:31:03.000Z" + }, + "end": { + "$date": "2021-09-01T14:40:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c370329-955a-47b4-89a3-9f1afd710b0d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T19:03:35.000Z" + }, + "end": { + "$date": "2021-09-01T19:04:11.000Z" + }, + "events": [ + { + "uuid": "4e2441c0-001b-4103-bdf9-1f6041da7a56", + "start": { + "$date": "2021-09-01T19:03:35.000Z" + }, + "end": { + "$date": "2021-09-01T21:50:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da8a6517-d407-48d0-8f64-0966dcef326c", + "start": { + "$date": "2021-09-01T21:50:35.000Z" + }, + "end": { + "$date": "2021-09-01T21:52:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e24bf90-9bb0-4420-b081-082c2ea54cd2", + "start": { + "$date": "2021-09-01T21:52:35.000Z" + }, + "end": { + "$date": "2021-09-01T19:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "63c0da7a-6a41-44d0-9ce9-d52f9f4a1f5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-01T17:11:30.000Z" + }, + "end": { + "$date": "2021-09-01T21:28:34.000Z" + }, + "events": [ + { + "uuid": "e8157ef5-5d25-4ed5-a828-06e263bb1e03", + "start": { + "$date": "2021-09-01T17:11:30.000Z" + }, + "end": { + "$date": "2021-09-01T19:50:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f63378d8-6c24-4f1c-bda9-7f19572dc8a8", + "start": { + "$date": "2021-09-01T19:50:30.000Z" + }, + "end": { + "$date": "2021-09-01T19:56:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "22400009-a507-4b6e-8832-a26f1e6e391f", + "start": { + "$date": "2021-09-01T19:56:30.000Z" + }, + "end": { + "$date": "2021-09-01T21:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "d1c2520b-2a23-47b8-9838-b4c2211c6f26", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T18:01:03.000Z" + }, + "end": { + "$date": "2021-09-01T18:20:10.000Z" + }, + "events": [ + { + "uuid": "5a7f88e7-0453-4972-be40-869d930d680c", + "start": { + "$date": "2021-09-01T18:01:03.000Z" + }, + "end": { + "$date": "2021-09-01T18:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "e956fa35-1076-459d-adb0-75274f5af7d8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T18:27:55.000Z" + }, + "end": { + "$date": "2021-09-01T18:51:13.000Z" + }, + "events": [ + { + "uuid": "5b5542e0-b84a-46e7-891a-0e1100dfb5fb", + "start": { + "$date": "2021-09-01T18:27:55.000Z" + }, + "end": { + "$date": "2021-09-01T18:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f64f17ca-9bb5-457f-8492-e7e8d6da5606", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T19:16:32.000Z" + }, + "end": { + "$date": "2021-09-01T19:49:35.000Z" + }, + "events": [ + { + "uuid": "a607ee99-deb3-448d-8e49-df617ade50e0", + "start": { + "$date": "2021-09-01T19:16:32.000Z" + }, + "end": { + "$date": "2021-09-01T19:49:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2ec8c633-156e-4ba4-9978-5bba41513a83", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-01T19:51:39.000Z" + }, + "end": { + "$date": "2021-09-01T22:58:19.000Z" + }, + "events": [ + { + "uuid": "b2e9b076-a58f-41b0-aafd-1d1abcf634f4", + "start": { + "$date": "2021-09-01T19:51:39.000Z" + }, + "end": { + "$date": "2021-09-01T22:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "002fc3f3-5349-4fda-94a0-35bff2d100e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T20:45:45.000Z" + }, + "end": { + "$date": "2021-09-01T21:08:31.000Z" + }, + "events": [ + { + "uuid": "e683f77f-cd52-4983-8e43-4e62e0ba3ee4", + "start": { + "$date": "2021-09-01T20:45:45.000Z" + }, + "end": { + "$date": "2021-09-01T21:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "061938bd-f43e-4dd8-a658-7fb8d578b58e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T21:14:16.000Z" + }, + "end": { + "$date": "2021-09-01T21:31:26.000Z" + }, + "events": [ + { + "uuid": "c4213ae0-0c7d-4e8d-8ddb-d30293b1e477", + "start": { + "$date": "2021-09-01T21:14:16.000Z" + }, + "end": { + "$date": "2021-09-01T21:31:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d502132f-7afc-414c-b1f4-4307e054b211", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-01T21:33:42.000Z" + }, + "end": { + "$date": "2021-09-01T21:56:27.000Z" + }, + "events": [ + { + "uuid": "ae9d0c58-ac38-4f63-afc6-bbc6808d87ee", + "start": { + "$date": "2021-09-01T21:33:42.000Z" + }, + "end": { + "$date": "2021-09-01T21:56:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c888000d-8e66-4d69-b879-ca21a421ad59", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-01T23:29:35.000Z" + }, + "end": { + "$date": "2021-09-02T00:18:38.000Z" + }, + "events": [ + { + "uuid": "0a665d76-0390-41ee-8e06-96e435b35af6", + "start": { + "$date": "2021-09-01T23:29:35.000Z" + }, + "end": { + "$date": "2021-09-02T00:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f69ffbe2-5d5e-4e93-bcc4-97bc3b4f36c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T00:15:23.000Z" + }, + "end": { + "$date": "2021-09-02T00:23:58.000Z" + }, + "events": [ + { + "uuid": "661b9bba-f4c1-4e12-a8a7-29f34ada5b1f", + "start": { + "$date": "2021-09-02T00:15:23.000Z" + }, + "end": { + "$date": "2021-09-02T00:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b365cee4-081f-496a-8c58-755a25f28943", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-02T00:16:38.000Z" + }, + "end": { + "$date": "2021-09-02T00:42:44.000Z" + }, + "events": [ + { + "uuid": "f4524213-c844-42a4-baae-0d53f202169f", + "start": { + "$date": "2021-09-02T00:16:38.000Z" + }, + "end": { + "$date": "2021-09-02T00:42:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "160a4571-1202-487c-ac70-a685a3859429", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-02T00:24:29.000Z" + }, + "end": { + "$date": "2021-09-02T00:36:56.000Z" + }, + "events": [ + { + "uuid": "95b04d44-fc04-4073-aabb-ed473115ced6", + "start": { + "$date": "2021-09-02T00:24:29.000Z" + }, + "end": { + "$date": "2021-09-02T00:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e06dab73-0ab9-4128-8c22-e2e8d801c490", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T00:30:35.000Z" + }, + "end": { + "$date": "2021-09-02T01:05:58.000Z" + }, + "events": [ + { + "uuid": "abbbc1f0-5e2a-413c-8a06-46e92b91f5d4", + "start": { + "$date": "2021-09-02T00:30:35.000Z" + }, + "end": { + "$date": "2021-09-02T01:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5297c4d8-9ba2-4403-8d26-dccbc443aed0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-02T00:39:12.000Z" + }, + "end": { + "$date": "2021-09-02T00:43:21.000Z" + }, + "events": [ + { + "uuid": "adc76ccc-1c27-4edb-92d2-9f01128671f7", + "start": { + "$date": "2021-09-02T00:39:12.000Z" + }, + "end": { + "$date": "2021-09-02T00:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "84f50f21-a3e6-40de-b617-0fd226be78a6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-02T00:42:55.000Z" + }, + "end": { + "$date": "2021-09-02T04:56:39.000Z" + }, + "events": [ + { + "uuid": "e1c6f275-8d20-4826-93ed-5c8d99c00942", + "start": { + "$date": "2021-09-02T00:42:55.000Z" + }, + "end": { + "$date": "2021-09-02T04:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1ed8930e-7db8-43ba-9648-083ae3ad8f14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-02T00:45:31.000Z" + }, + "end": { + "$date": "2021-09-02T01:24:43.000Z" + }, + "events": [ + { + "uuid": "897f853c-e17e-4f22-b248-dec4da4ceb6f", + "start": { + "$date": "2021-09-02T00:45:31.000Z" + }, + "end": { + "$date": "2021-09-02T01:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6615c908-566b-4404-a1ac-b085d845a62a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-02T00:46:28.000Z" + }, + "end": { + "$date": "2021-09-02T02:17:29.000Z" + }, + "events": [ + { + "uuid": "3755472b-68c4-4a08-8a64-a6dbc6318583", + "start": { + "$date": "2021-09-02T00:46:28.000Z" + }, + "end": { + "$date": "2021-09-02T01:46:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26940c6a-7535-49b2-9920-2be2fa423d4c", + "start": { + "$date": "2021-09-02T01:46:28.000Z" + }, + "end": { + "$date": "2021-09-02T01:50:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e6d73d3-ea27-416f-b61c-b0218067904d", + "start": { + "$date": "2021-09-02T01:50:28.000Z" + }, + "end": { + "$date": "2021-09-02T02:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be8ba86f-b66f-4ff4-9faf-70776f9020ca", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-02T00:55:33.000Z" + }, + "end": { + "$date": "2021-09-02T01:24:23.000Z" + }, + "events": [ + { + "uuid": "13d8ea9b-2394-4a04-8bb8-4396ff10e1aa", + "start": { + "$date": "2021-09-02T00:55:33.000Z" + }, + "end": { + "$date": "2021-09-02T01:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "d9dc9646-d518-4d56-939c-13c54c6ec983", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-02T01:26:53.000Z" + }, + "end": { + "$date": "2021-09-02T04:30:51.000Z" + }, + "events": [ + { + "uuid": "21382465-066d-4a26-aa20-af6cd305eea6", + "start": { + "$date": "2021-09-02T01:26:53.000Z" + }, + "end": { + "$date": "2021-09-02T04:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9c4420e8-0cd9-4198-8582-7f87cd3e8bad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T02:01:43.000Z" + }, + "end": { + "$date": "2021-09-02T02:52:38.000Z" + }, + "events": [ + { + "uuid": "07a856c6-f5f6-4ef7-8db5-041881caf2f5", + "start": { + "$date": "2021-09-02T02:01:43.000Z" + }, + "end": { + "$date": "2021-09-02T02:52:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d9ad6690-5789-4b5c-a01c-22834b8eddbf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-02T02:16:56.000Z" + }, + "end": { + "$date": "2021-09-02T06:23:10.000Z" + }, + "events": [ + { + "uuid": "0531475a-9c59-4795-b71b-187e22e1c27d", + "start": { + "$date": "2021-09-02T02:16:56.000Z" + }, + "end": { + "$date": "2021-09-02T06:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "40eebacc-3076-4393-b715-ee8cc87b7cc8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T02:58:04.000Z" + }, + "end": { + "$date": "2021-09-02T04:49:15.000Z" + }, + "events": [ + { + "uuid": "2914835f-0ec9-4884-834a-03430c4bd1d0", + "start": { + "$date": "2021-09-02T02:58:04.000Z" + }, + "end": { + "$date": "2021-09-02T04:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "f9b67a88-0d62-4c82-be67-a4170ac92a17", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-02T04:06:01.000Z" + }, + "end": { + "$date": "2021-09-02T05:28:54.000Z" + }, + "events": [ + { + "uuid": "a519a0eb-54d9-442a-848d-a1631ec1a66e", + "start": { + "$date": "2021-09-02T04:06:01.000Z" + }, + "end": { + "$date": "2021-09-02T05:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "ee434de8-f0e3-4454-a93a-4c7b651c45fd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-02T04:54:03.000Z" + }, + "end": { + "$date": "2021-09-02T05:38:29.000Z" + }, + "events": [ + { + "uuid": "77222e6a-60bf-41bd-bee1-805776d451fe", + "start": { + "$date": "2021-09-02T04:54:03.000Z" + }, + "end": { + "$date": "2021-09-02T05:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1db6eca9-1186-42ce-92e6-ed366c680cc9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T04:59:22.000Z" + }, + "end": { + "$date": "2021-09-02T05:16:48.000Z" + }, + "events": [ + { + "uuid": "325a5c30-9279-4df6-9754-863630b3415e", + "start": { + "$date": "2021-09-02T04:59:22.000Z" + }, + "end": { + "$date": "2021-09-02T05:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "48b8e397-a28c-4a78-98f8-676165ebc95a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-02T05:55:15.000Z" + }, + "end": { + "$date": "2021-09-02T07:21:22.000Z" + }, + "events": [ + { + "uuid": "cf0bc1ae-8f5c-42eb-b5d4-dc354d8c2608", + "start": { + "$date": "2021-09-02T05:55:15.000Z" + }, + "end": { + "$date": "2021-09-02T07:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "db90728e-bbd2-4f5c-b525-9748fb596625", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T05:58:25.000Z" + }, + "end": { + "$date": "2021-09-02T06:10:56.000Z" + }, + "events": [ + { + "uuid": "6a33d30d-e61b-4fbf-bc4d-e8be982c26dc", + "start": { + "$date": "2021-09-02T05:58:25.000Z" + }, + "end": { + "$date": "2021-09-02T06:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7279122d-daa4-4d7d-8a6a-96a9ad9dc702", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-02T06:13:49.000Z" + }, + "end": { + "$date": "2021-09-02T06:43:45.000Z" + }, + "events": [ + { + "uuid": "1332eb12-969d-4d2b-933a-761952b966f3", + "start": { + "$date": "2021-09-02T06:13:49.000Z" + }, + "end": { + "$date": "2021-09-02T06:43:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "e4f64f3e-fd85-430e-a899-8526999be4c7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-02T06:20:46.000Z" + }, + "end": { + "$date": "2021-09-02T07:19:47.000Z" + }, + "events": [ + { + "uuid": "cc982739-e309-4dae-8171-90ed14b0386b", + "start": { + "$date": "2021-09-02T06:20:46.000Z" + }, + "end": { + "$date": "2021-09-02T07:19:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c1f4cb3-53ba-439b-952a-49093b8ed167", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-02T06:45:00.000Z" + }, + "end": { + "$date": "2021-09-02T06:50:31.000Z" + }, + "events": [ + { + "uuid": "272dcae2-4ff6-4706-9a1a-fe266d81da93", + "start": { + "$date": "2021-09-02T06:45:00.000Z" + }, + "end": { + "$date": "2021-09-02T06:50:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f81a680b-5edc-4d6d-b1e1-100246011ab3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-02T06:56:51.000Z" + }, + "end": { + "$date": "2021-09-02T07:23:25.000Z" + }, + "events": [ + { + "uuid": "e2a5d0ac-af34-4df8-a917-e596e9cdb146", + "start": { + "$date": "2021-09-02T06:56:51.000Z" + }, + "end": { + "$date": "2021-09-02T07:23:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "6410ae19-d576-41af-86ec-634f8dc4d186", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-02T08:41:14.000Z" + }, + "end": { + "$date": "2021-09-02T10:22:51.000Z" + }, + "events": [ + { + "uuid": "9409cb4c-4aa9-46a3-853c-3dc7ac4e08a3", + "start": { + "$date": "2021-09-02T08:41:14.000Z" + }, + "end": { + "$date": "2021-09-02T10:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1d46a2b9-1b6a-4297-a553-0eefc678a979", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-02T16:01:17.000Z" + }, + "end": { + "$date": "2021-09-02T17:08:16.000Z" + }, + "events": [ + { + "uuid": "5dbda88f-96c3-46f7-8026-00b361a275ae", + "start": { + "$date": "2021-09-02T16:01:17.000Z" + }, + "end": { + "$date": "2021-09-02T17:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0a8452fa-d071-4b11-a4a1-16357bf29201", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-02T16:02:34.000Z" + }, + "end": { + "$date": "2021-09-02T16:10:58.000Z" + }, + "events": [ + { + "uuid": "09d15d73-258b-4c8a-bfdb-0de2835b9b4d", + "start": { + "$date": "2021-09-02T16:02:34.000Z" + }, + "end": { + "$date": "2021-09-02T16:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d1e362c7-896e-4a83-b41c-f6c5917a5f47", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-02T17:52:50.000Z" + }, + "end": { + "$date": "2021-09-02T20:02:11.000Z" + }, + "events": [ + { + "uuid": "3e1bdc92-f772-42de-8579-b8c23df54457", + "start": { + "$date": "2021-09-02T17:52:50.000Z" + }, + "end": { + "$date": "2021-09-02T18:31:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d45866c9-188a-407d-be3f-00ca0f60b090", + "start": { + "$date": "2021-09-02T18:31:50.000Z" + }, + "end": { + "$date": "2021-09-02T18:44:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14da7472-ddcd-40f3-88ca-9ef65122b89d", + "start": { + "$date": "2021-09-02T18:44:50.000Z" + }, + "end": { + "$date": "2021-09-02T20:02:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e5caba2-26d2-41c8-a919-6d7091608d7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-02T18:55:43.000Z" + }, + "end": { + "$date": "2021-09-02T19:17:48.000Z" + }, + "events": [ + { + "uuid": "d63be13a-2638-4c4b-94ae-9b3212b5c4f8", + "start": { + "$date": "2021-09-02T18:55:43.000Z" + }, + "end": { + "$date": "2021-09-02T19:17:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f4d88a7-2c78-4782-bc54-57717c2b3d11", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-02T19:18:16.000Z" + }, + "end": { + "$date": "2021-09-02T19:38:59.000Z" + }, + "events": [ + { + "uuid": "662024f8-369b-4bcd-8efa-9c12fa70460e", + "start": { + "$date": "2021-09-02T19:18:16.000Z" + }, + "end": { + "$date": "2021-09-02T19:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "c80279b1-12fd-4fa1-a3c2-c398c89b03a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-02T19:39:26.000Z" + }, + "end": { + "$date": "2021-09-02T19:46:48.000Z" + }, + "events": [ + { + "uuid": "3152b0a4-6452-4f2e-a34f-f366c220bff7", + "start": { + "$date": "2021-09-02T19:39:26.000Z" + }, + "end": { + "$date": "2021-09-02T19:46:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "6b7f1535-098f-454b-9a29-9b656a2d5800", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-02T22:48:28.000Z" + }, + "end": { + "$date": "2021-09-02T23:41:27.000Z" + }, + "events": [ + { + "uuid": "6fecd688-0a3f-40a4-a60b-cb4cd5ef9811", + "start": { + "$date": "2021-09-02T22:48:28.000Z" + }, + "end": { + "$date": "2021-09-02T23:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "044dad25-68b3-47ce-921e-9f24436bd366", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-02T23:24:10.000Z" + }, + "end": { + "$date": "2021-09-03T01:53:18.000Z" + }, + "events": [ + { + "uuid": "d1fcd7df-2899-4a41-8964-201409df61a4", + "start": { + "$date": "2021-09-02T23:24:10.000Z" + }, + "end": { + "$date": "2021-09-03T01:53:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "53279849-3921-4149-80a1-62de9cfdabe6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T00:03:09.000Z" + }, + "end": { + "$date": "2021-09-03T00:08:49.000Z" + }, + "events": [ + { + "uuid": "28d5b12f-ed9f-4c7d-a8a2-b23bf433c02b", + "start": { + "$date": "2021-09-03T00:03:09.000Z" + }, + "end": { + "$date": "2021-09-03T00:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e91fbbd-8be4-42eb-85c4-c01fd4e811a4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-03T00:50:34.000Z" + }, + "end": { + "$date": "2021-09-03T01:19:30.000Z" + }, + "events": [ + { + "uuid": "cfaf70aa-87ce-4828-8613-74262ce2d4da", + "start": { + "$date": "2021-09-03T00:50:34.000Z" + }, + "end": { + "$date": "2021-09-03T01:19:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba237504-1472-41a3-8be5-7e52a93371eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T01:31:24.000Z" + }, + "end": { + "$date": "2021-09-03T01:52:18.000Z" + }, + "events": [ + { + "uuid": "ca3198e4-d58e-4088-922c-3a2a0513f5e5", + "start": { + "$date": "2021-09-03T01:31:24.000Z" + }, + "end": { + "$date": "2021-09-03T01:52:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55618c68-179d-4001-8cea-17007d848b87", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T01:54:29.000Z" + }, + "end": { + "$date": "2021-09-03T02:19:14.000Z" + }, + "events": [ + { + "uuid": "a4e940f2-3bf5-4d1c-aac9-2041b08e2ff1", + "start": { + "$date": "2021-09-03T01:54:29.000Z" + }, + "end": { + "$date": "2021-09-03T02:19:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "2b1ad269-1e88-4201-8efd-c5a69575ade4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-03T01:56:58.000Z" + }, + "end": { + "$date": "2021-09-03T03:11:54.000Z" + }, + "events": [ + { + "uuid": "8af834e8-a688-4294-b155-9a42b5b18e48", + "start": { + "$date": "2021-09-03T01:56:58.000Z" + }, + "end": { + "$date": "2021-09-03T03:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "da91984e-c556-4e67-aec0-b0a003549616", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-03T02:03:31.000Z" + }, + "end": { + "$date": "2021-09-03T04:04:34.000Z" + }, + "events": [ + { + "uuid": "b9b44999-c106-4ad0-9578-170617b906c8", + "start": { + "$date": "2021-09-03T02:03:31.000Z" + }, + "end": { + "$date": "2021-09-03T04:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dc9e7ba6-2c6b-4753-b989-2dbac82c1417", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-03T00:59:35.000Z" + }, + "end": { + "$date": "2021-09-03T07:00:34.000Z" + }, + "events": [ + { + "uuid": "696e451c-bc6f-4817-94f3-9941fe1a6e61", + "start": { + "$date": "2021-09-03T00:59:35.000Z" + }, + "end": { + "$date": "2021-09-03T07:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "292802c9-4b01-4bd8-9294-034d0d26fef7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-03T02:21:40.000Z" + }, + "end": { + "$date": "2021-09-03T04:03:32.000Z" + }, + "events": [ + { + "uuid": "0e298239-4349-4dce-8451-2ee7eeba08b8", + "start": { + "$date": "2021-09-03T02:21:40.000Z" + }, + "end": { + "$date": "2021-09-03T04:03:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "54fc073e-c2cc-4b02-bd0d-4acb46af9fe4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-03T03:11:58.000Z" + }, + "end": { + "$date": "2021-09-03T03:15:23.000Z" + }, + "events": [ + { + "uuid": "80b67257-a5d8-492f-98ff-ae3d0ac5c5f9", + "start": { + "$date": "2021-09-03T03:11:58.000Z" + }, + "end": { + "$date": "2021-09-03T03:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7f09a08f-1a7e-489f-8b98-9afb265e5bbb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-03T03:15:52.000Z" + }, + "end": { + "$date": "2021-09-03T04:22:08.000Z" + }, + "events": [ + { + "uuid": "1126b9d7-9ece-44e6-a145-6bf354e019f3", + "start": { + "$date": "2021-09-03T03:15:52.000Z" + }, + "end": { + "$date": "2021-09-03T04:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b48135f3-35e1-4827-8e3c-de9c9fdf11bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-03T04:06:19.000Z" + }, + "end": { + "$date": "2021-09-03T04:32:02.000Z" + }, + "events": [ + { + "uuid": "0140b350-d160-4677-81e8-5e8ab5e928c5", + "start": { + "$date": "2021-09-03T04:06:19.000Z" + }, + "end": { + "$date": "2021-09-03T04:32:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "6c4ab2f5-ccdd-4d5e-b1d9-a91aa43e5aa1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-03T04:07:02.000Z" + }, + "end": { + "$date": "2021-09-03T05:22:55.000Z" + }, + "events": [ + { + "uuid": "457f9421-165b-4d0f-a734-906bb0cc9490", + "start": { + "$date": "2021-09-03T04:07:02.000Z" + }, + "end": { + "$date": "2021-09-03T05:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "b94c4205-f0cb-4b64-9cda-bb0a4ef18cf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-03T04:22:43.000Z" + }, + "end": { + "$date": "2021-09-03T04:51:06.000Z" + }, + "events": [ + { + "uuid": "29a1f68b-2129-4080-ba05-bbfe63c18817", + "start": { + "$date": "2021-09-03T04:22:43.000Z" + }, + "end": { + "$date": "2021-09-03T04:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b90a3bb2-513e-489f-989b-4ac90998e0cc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-03T05:23:50.000Z" + }, + "end": { + "$date": "2021-09-03T07:06:53.000Z" + }, + "events": [ + { + "uuid": "9dc423f5-9750-4779-9543-ac7fcc0f8d04", + "start": { + "$date": "2021-09-03T05:23:50.000Z" + }, + "end": { + "$date": "2021-09-03T07:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "2269d80a-6871-4369-a25e-a8d1fb4d17ba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-03T06:05:56.000Z" + }, + "end": { + "$date": "2021-09-03T07:15:14.000Z" + }, + "events": [ + { + "uuid": "2b8a486b-3429-4c91-a49c-03941d185104", + "start": { + "$date": "2021-09-03T06:05:56.000Z" + }, + "end": { + "$date": "2021-09-03T07:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "b8bf0243-51f4-488c-9128-4a8cced284f2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-03T08:19:24.000Z" + }, + "end": { + "$date": "2021-09-03T09:30:50.000Z" + }, + "events": [ + { + "uuid": "350e592d-edd1-43af-a507-65af96741ef2", + "start": { + "$date": "2021-09-03T08:19:24.000Z" + }, + "end": { + "$date": "2021-09-03T09:30:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "343eaa8b-f1cb-4e4d-b609-ff289438f4b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-03T20:49:22.000Z" + }, + "end": { + "$date": "2021-09-03T21:11:11.000Z" + }, + "events": [ + { + "uuid": "dd816ac8-9939-4a80-bc49-d022a5c76add", + "start": { + "$date": "2021-09-03T20:49:22.000Z" + }, + "end": { + "$date": "2021-09-04T02:53:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73ce477d-aafe-46d5-8780-2765e7af531e", + "start": { + "$date": "2021-09-04T02:53:22.000Z" + }, + "end": { + "$date": "2021-09-04T02:58:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d3af45b-3a27-497c-b13c-7a7c929df901", + "start": { + "$date": "2021-09-04T02:58:22.000Z" + }, + "end": { + "$date": "2021-09-04T03:09:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a79e910b-0b12-4542-8924-7ae0ce6efa4d", + "start": { + "$date": "2021-09-04T03:09:22.000Z" + }, + "end": { + "$date": "2021-09-04T03:16:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0ff48c98-59f0-4979-bb7d-c0cc116032d4", + "start": { + "$date": "2021-09-04T03:16:22.000Z" + }, + "end": { + "$date": "2021-09-04T03:26:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3700dbfb-00db-438c-8d2c-839cabcb529d", + "start": { + "$date": "2021-09-04T03:26:22.000Z" + }, + "end": { + "$date": "2021-09-03T21:11:11.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "38722049-1d16-49d9-bc3e-b91515c35391", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-03T14:58:28.000Z" + }, + "end": { + "$date": "2021-09-03T16:38:03.000Z" + }, + "events": [ + { + "uuid": "5bf15b58-9be4-41ab-a70a-83c8eedde76f", + "start": { + "$date": "2021-09-03T14:58:28.000Z" + }, + "end": { + "$date": "2021-09-03T16:38:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3853bdb3-d4a4-4351-825f-fb0573711e6b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T15:09:00.000Z" + }, + "end": { + "$date": "2021-09-03T15:25:20.000Z" + }, + "events": [ + { + "uuid": "2faa7b51-64ae-4942-b226-939ad697e7e1", + "start": { + "$date": "2021-09-03T15:09:00.000Z" + }, + "end": { + "$date": "2021-09-03T15:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77ffa6f4-d096-4eaf-99e6-521958cc3a7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T15:28:16.000Z" + }, + "end": { + "$date": "2021-09-03T15:53:40.000Z" + }, + "events": [ + { + "uuid": "497460a8-901a-4160-9149-a30bf9cdfa0f", + "start": { + "$date": "2021-09-03T15:28:16.000Z" + }, + "end": { + "$date": "2021-09-03T15:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "35ba279e-be48-4e13-a2f1-224679a8e56f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T16:10:02.000Z" + }, + "end": { + "$date": "2021-09-03T17:00:24.000Z" + }, + "events": [ + { + "uuid": "c58e466e-06a3-4bc7-9b27-e4ed30b2e692", + "start": { + "$date": "2021-09-03T16:10:02.000Z" + }, + "end": { + "$date": "2021-09-03T17:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0d26429f-f718-4d88-9382-89cda622c8e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-03T18:06:30.000Z" + }, + "end": { + "$date": "2021-09-03T20:00:29.000Z" + }, + "events": [ + { + "uuid": "f6f22a42-c35c-46f8-a7c8-c9dade8f0e4d", + "start": { + "$date": "2021-09-03T18:06:30.000Z" + }, + "end": { + "$date": "2021-09-03T20:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f10cda1f-598a-4ad7-8406-da805d91dc94", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-03T18:14:38.000Z" + }, + "end": { + "$date": "2021-09-04T04:52:38.000Z" + }, + "events": [ + { + "uuid": "01a6f5b9-4f99-4a05-a00b-4acdb25901a8", + "start": { + "$date": "2021-09-03T18:14:38.000Z" + }, + "end": { + "$date": "2021-09-03T19:13:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d457133b-fa08-4d1e-afaf-8e2d33a92223", + "start": { + "$date": "2021-09-03T19:13:38.000Z" + }, + "end": { + "$date": "2021-09-03T19:18:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7772cf71-beb6-4619-b2bc-ea0f84f070db", + "start": { + "$date": "2021-09-03T19:18:38.000Z" + }, + "end": { + "$date": "2021-09-03T19:28:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31849c29-f254-4497-b05f-8f2d0fb9ab99", + "start": { + "$date": "2021-09-03T19:28:38.000Z" + }, + "end": { + "$date": "2021-09-03T19:31:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "658eaf03-fe06-4db9-9957-b72531b228e5", + "start": { + "$date": "2021-09-03T19:31:38.000Z" + }, + "end": { + "$date": "2021-09-04T02:28:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b0ae978a-ec84-4d95-8715-f174469780ce", + "start": { + "$date": "2021-09-04T02:28:38.000Z" + }, + "end": { + "$date": "2021-09-04T02:36:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fe0b1d8a-077a-4ca8-921c-a8ed9e2304b2", + "start": { + "$date": "2021-09-04T02:36:38.000Z" + }, + "end": { + "$date": "2021-09-04T04:52:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa758c80-2808-43b8-8a40-22a1d499f932", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T18:55:15.000Z" + }, + "end": { + "$date": "2021-09-03T19:12:35.000Z" + }, + "events": [ + { + "uuid": "76947677-56cb-48c9-9292-27153f03b32f", + "start": { + "$date": "2021-09-03T18:55:15.000Z" + }, + "end": { + "$date": "2021-09-03T19:12:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f497416d-43ce-4da4-be55-baf933ba210d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-03T19:07:43.000Z" + }, + "end": { + "$date": "2021-09-03T19:39:49.000Z" + }, + "events": [ + { + "uuid": "1f9a980d-923f-4801-b7d9-87ef330a2092", + "start": { + "$date": "2021-09-03T19:07:43.000Z" + }, + "end": { + "$date": "2021-09-03T19:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "281bfeef-18b5-4888-94cf-63efb4da702e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T20:07:06.000Z" + }, + "end": { + "$date": "2021-09-03T20:28:01.000Z" + }, + "events": [ + { + "uuid": "8ecbab2d-efae-43e1-9f08-76e258a952a4", + "start": { + "$date": "2021-09-03T20:07:06.000Z" + }, + "end": { + "$date": "2021-09-03T20:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "269c54c1-3140-4898-b9c4-2d44632e0872", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T20:35:27.000Z" + }, + "end": { + "$date": "2021-09-03T20:52:51.000Z" + }, + "events": [ + { + "uuid": "388a87e9-a417-4def-a4bd-0d9fcb95ac2f", + "start": { + "$date": "2021-09-03T20:35:27.000Z" + }, + "end": { + "$date": "2021-09-03T20:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5ca9fa33-102e-463f-aef8-171604ba7236", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-03T21:24:37.000Z" + }, + "end": { + "$date": "2021-09-04T00:54:58.000Z" + }, + "events": [ + { + "uuid": "19ad46ad-fe42-44ee-8fbe-a9117d1b1349", + "start": { + "$date": "2021-09-03T21:24:37.000Z" + }, + "end": { + "$date": "2021-09-04T00:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e67dd97-59e4-4df7-aa7e-ff8550e799f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-03T22:11:12.000Z" + }, + "end": { + "$date": "2021-09-03T22:37:52.000Z" + }, + "events": [ + { + "uuid": "a38af41f-fbea-4709-9cf4-c6b28771f22c", + "start": { + "$date": "2021-09-03T22:11:12.000Z" + }, + "end": { + "$date": "2021-09-03T22:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c24d75d-fa57-41a3-9f58-2f92617581a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T22:37:01.000Z" + }, + "end": { + "$date": "2021-09-03T22:52:36.000Z" + }, + "events": [ + { + "uuid": "3db24454-a7ae-470b-bc08-a88abaf1475d", + "start": { + "$date": "2021-09-03T22:37:01.000Z" + }, + "end": { + "$date": "2021-09-03T22:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b0b4ac1-93c3-46e4-b3ff-9238591828b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T23:11:18.000Z" + }, + "end": { + "$date": "2021-09-03T23:27:18.000Z" + }, + "events": [ + { + "uuid": "cec84fad-22b6-493d-99f9-200509d7f3ed", + "start": { + "$date": "2021-09-03T23:11:18.000Z" + }, + "end": { + "$date": "2021-09-03T23:27:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "423f5fd3-a37b-4f09-ac01-e481e8217353", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-03T23:31:34.000Z" + }, + "end": { + "$date": "2021-09-03T23:53:38.000Z" + }, + "events": [ + { + "uuid": "a8fbb638-bedb-488e-8e53-ea22bc5dcd54", + "start": { + "$date": "2021-09-03T23:31:34.000Z" + }, + "end": { + "$date": "2021-09-03T23:53:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7533069-a127-40a2-84d5-44171ac1d92d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T01:52:04.000Z" + }, + "end": { + "$date": "2021-09-04T02:10:45.000Z" + }, + "events": [ + { + "uuid": "8bcff689-43ca-4a41-82f5-a0d8a92b1b65", + "start": { + "$date": "2021-09-04T01:52:04.000Z" + }, + "end": { + "$date": "2021-09-04T02:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "835d675a-64b3-44e8-9280-b2815ff9cd95", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T02:12:50.000Z" + }, + "end": { + "$date": "2021-09-04T02:29:25.000Z" + }, + "events": [ + { + "uuid": "504a9406-8cd3-48ec-8b23-510186694c58", + "start": { + "$date": "2021-09-04T02:12:50.000Z" + }, + "end": { + "$date": "2021-09-04T02:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "36a8abc6-f5ff-4601-ba31-544384beae35", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T02:29:50.000Z" + }, + "end": { + "$date": "2021-09-04T03:22:38.000Z" + }, + "events": [ + { + "uuid": "f2b824b3-0788-48d0-81d1-650a8ff818ed", + "start": { + "$date": "2021-09-04T02:29:50.000Z" + }, + "end": { + "$date": "2021-09-04T03:22:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7ff1c803-6743-4ff3-bcc0-2ce45db52dd6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T02:42:13.000Z" + }, + "end": { + "$date": "2021-09-04T03:50:25.000Z" + }, + "events": [ + { + "uuid": "291742f7-b3ae-4765-9db4-c83840d45361", + "start": { + "$date": "2021-09-04T02:42:13.000Z" + }, + "end": { + "$date": "2021-09-04T03:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "bb7b8f77-79d7-4cf5-a9aa-4a40a56c1e80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T03:33:49.000Z" + }, + "end": { + "$date": "2021-09-04T04:03:36.000Z" + }, + "events": [ + { + "uuid": "6cf5019d-0d84-4452-a3d2-bcce5744905a", + "start": { + "$date": "2021-09-04T03:33:49.000Z" + }, + "end": { + "$date": "2021-09-04T04:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "8c78c149-9c7b-4805-8217-221403d4532d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T03:50:45.000Z" + }, + "end": { + "$date": "2021-09-04T05:41:55.000Z" + }, + "events": [ + { + "uuid": "7e0f4a8e-2d1e-4921-b9de-06d4048730f3", + "start": { + "$date": "2021-09-04T03:50:45.000Z" + }, + "end": { + "$date": "2021-09-04T05:41:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d038bd90-bb63-4d78-8dea-5c00d5409692", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-04T04:52:58.000Z" + }, + "end": { + "$date": "2021-09-04T07:53:39.000Z" + }, + "events": [ + { + "uuid": "5a7c72b7-e962-42ea-94ba-ad9bcd22f225", + "start": { + "$date": "2021-09-04T04:52:58.000Z" + }, + "end": { + "$date": "2021-09-04T07:43:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a3924e8-7d12-4637-9aef-1a2d257febd3", + "start": { + "$date": "2021-09-04T07:43:58.000Z" + }, + "end": { + "$date": "2021-09-04T07:47:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "89f5d638-9122-4cc2-9f61-1db471a8df0b", + "start": { + "$date": "2021-09-04T07:47:58.000Z" + }, + "end": { + "$date": "2021-09-04T07:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "755cd8b7-c461-4a19-89f0-ac8e78665205", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T04:59:43.000Z" + }, + "end": { + "$date": "2021-09-04T05:28:47.000Z" + }, + "events": [ + { + "uuid": "c2551141-f58b-4e15-9135-e934ffd5d204", + "start": { + "$date": "2021-09-04T04:59:43.000Z" + }, + "end": { + "$date": "2021-09-04T05:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "8296b28b-2881-4d07-8434-68bad922c1f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T05:26:53.000Z" + }, + "end": { + "$date": "2021-09-04T05:39:44.000Z" + }, + "events": [ + { + "uuid": "678b2c64-528f-437d-ab11-ff63430c95c2", + "start": { + "$date": "2021-09-04T05:26:53.000Z" + }, + "end": { + "$date": "2021-09-04T05:39:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bb5d1c7-ce9d-4c80-b350-bdad2b597106", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T06:03:01.000Z" + }, + "end": { + "$date": "2021-09-04T06:29:23.000Z" + }, + "events": [ + { + "uuid": "3142ff4c-4690-4c6f-a623-bfd8cff86d55", + "start": { + "$date": "2021-09-04T06:03:01.000Z" + }, + "end": { + "$date": "2021-09-04T06:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fd83d0d-a0db-42e9-81b7-9b2208f0f014", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T06:31:45.000Z" + }, + "end": { + "$date": "2021-09-04T06:58:17.000Z" + }, + "events": [ + { + "uuid": "77f0526f-72d0-4055-bf39-1761e7696850", + "start": { + "$date": "2021-09-04T06:31:45.000Z" + }, + "end": { + "$date": "2021-09-04T06:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04518d55-ca36-4720-9220-3a95a19165d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T07:01:00.000Z" + }, + "end": { + "$date": "2021-09-04T07:35:10.000Z" + }, + "events": [ + { + "uuid": "0efc0de1-a4a1-4721-b9ed-aad06e9ba038", + "start": { + "$date": "2021-09-04T07:01:00.000Z" + }, + "end": { + "$date": "2021-09-04T07:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "fdb22e4b-f1f5-4680-8816-e16fae0d9fcb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-04T07:00:53.000Z" + }, + "end": { + "$date": "2021-09-04T07:02:08.000Z" + }, + "events": [ + { + "uuid": "67fa71d3-2b6b-4454-ad0c-835826cc507e", + "start": { + "$date": "2021-09-04T07:00:53.000Z" + }, + "end": { + "$date": "2021-09-04T07:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "643d80b5-5158-43a9-abd8-9b235269ddcc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-04T07:02:13.000Z" + }, + "end": { + "$date": "2021-09-04T08:10:41.000Z" + }, + "events": [ + { + "uuid": "ae4d6851-0da3-4c2e-b6c7-bd2a6ff46a4c", + "start": { + "$date": "2021-09-04T07:02:13.000Z" + }, + "end": { + "$date": "2021-09-04T08:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "28006b7d-ffe4-4cd6-a4ac-02759edccf4c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-04T08:04:44.000Z" + }, + "end": { + "$date": "2021-09-04T08:54:14.000Z" + }, + "events": [ + { + "uuid": "6439a8ee-dcdd-42bb-a062-23a4492ea0a5", + "start": { + "$date": "2021-09-04T08:04:44.000Z" + }, + "end": { + "$date": "2021-09-04T08:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d82a080-0e4f-4e5e-91e3-743962e508a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T12:47:24.000Z" + }, + "end": { + "$date": "2021-09-04T13:38:49.000Z" + }, + "events": [ + { + "uuid": "083a975a-52e5-48a4-b3ae-f1bd3c2e76cf", + "start": { + "$date": "2021-09-04T12:47:24.000Z" + }, + "end": { + "$date": "2021-09-04T13:38:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "187f4bb1-c6e2-489e-a53e-d8b7fcee2ed1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T13:42:15.000Z" + }, + "end": { + "$date": "2021-09-04T13:51:46.000Z" + }, + "events": [ + { + "uuid": "556a4adf-5ce5-4c85-ad89-99f7aa12d53c", + "start": { + "$date": "2021-09-04T13:42:15.000Z" + }, + "end": { + "$date": "2021-09-04T13:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "325555b0-8618-4e37-ae18-e74012bdba42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T13:53:11.000Z" + }, + "end": { + "$date": "2021-09-04T15:39:10.000Z" + }, + "events": [ + { + "uuid": "8a2e36e5-b37f-4510-a76b-1e4ed74f73cd", + "start": { + "$date": "2021-09-04T13:53:11.000Z" + }, + "end": { + "$date": "2021-09-04T14:56:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1db9b2b2-5617-4d84-9022-a9d66eca9129", + "start": { + "$date": "2021-09-04T14:56:11.000Z" + }, + "end": { + "$date": "2021-09-04T14:57:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0cc24d5b-f24f-435b-b415-19118540717f", + "start": { + "$date": "2021-09-04T14:57:11.000Z" + }, + "end": { + "$date": "2021-09-04T15:30:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37875b78-ca9b-4a83-863c-f831155f9191", + "start": { + "$date": "2021-09-04T15:30:11.000Z" + }, + "end": { + "$date": "2021-09-04T15:39:10.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "94e42521-f11d-4971-a189-ebf04124fd6a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T15:06:47.000Z" + }, + "end": { + "$date": "2021-09-04T18:09:42.000Z" + }, + "events": [ + { + "uuid": "e8603898-f73f-425f-893c-0845342d39ec", + "start": { + "$date": "2021-09-04T15:06:47.000Z" + }, + "end": { + "$date": "2021-09-04T18:09:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bd7ad626-840f-452e-a0cd-e4a866c5641e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T15:39:26.000Z" + }, + "end": { + "$date": "2021-09-04T16:36:18.000Z" + }, + "events": [ + { + "uuid": "785f35df-49b7-472b-9c3e-d2babfe504df", + "start": { + "$date": "2021-09-04T15:39:26.000Z" + }, + "end": { + "$date": "2021-09-04T16:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd0aa7e5-d5fe-4254-873c-958ef3e28ecd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T17:36:46.000Z" + }, + "end": { + "$date": "2021-09-04T18:10:23.000Z" + }, + "events": [ + { + "uuid": "daf4f03c-b722-4fa3-a344-fd177344e52f", + "start": { + "$date": "2021-09-04T17:36:46.000Z" + }, + "end": { + "$date": "2021-09-04T18:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "7fe0e1c1-ac4a-49c7-a62c-26970f18ac5b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T18:09:52.000Z" + }, + "end": { + "$date": "2021-09-04T18:14:58.000Z" + }, + "events": [ + { + "uuid": "e696f717-7ea1-48ad-a08e-ff6f3a30c682", + "start": { + "$date": "2021-09-04T18:09:52.000Z" + }, + "end": { + "$date": "2021-09-04T18:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb1cc9fc-9b61-4e13-a824-0a547aefabf3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T18:16:26.000Z" + }, + "end": { + "$date": "2021-09-04T18:42:07.000Z" + }, + "events": [ + { + "uuid": "0e5c101b-0107-4c15-9fef-40097a0adffd", + "start": { + "$date": "2021-09-04T18:16:26.000Z" + }, + "end": { + "$date": "2021-09-04T18:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "dac5d3cf-e0ad-4b55-a448-81923562eabe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T18:28:45.000Z" + }, + "end": { + "$date": "2021-09-04T19:38:09.000Z" + }, + "events": [ + { + "uuid": "dd0e0414-4ba9-456e-b47c-69ac576778f4", + "start": { + "$date": "2021-09-04T18:28:45.000Z" + }, + "end": { + "$date": "2021-09-04T19:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1210f6c9-7ae2-4b46-aa94-f425ca54ee3c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-04T18:36:17.000Z" + }, + "end": { + "$date": "2021-09-04T19:11:29.000Z" + }, + "events": [ + { + "uuid": "ced07447-7504-4a81-b10a-a278906eebd4", + "start": { + "$date": "2021-09-04T18:36:17.000Z" + }, + "end": { + "$date": "2021-09-04T19:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2f126928-c076-4eaf-bd83-d25042ec7b44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T19:38:59.000Z" + }, + "end": { + "$date": "2021-09-04T20:10:36.000Z" + }, + "events": [ + { + "uuid": "16d4d505-4904-4870-a669-66fc9b71c04c", + "start": { + "$date": "2021-09-04T19:38:59.000Z" + }, + "end": { + "$date": "2021-09-04T20:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40d242a5-c928-4715-aac1-e9825772ccd1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T20:34:28.000Z" + }, + "end": { + "$date": "2021-09-04T20:53:13.000Z" + }, + "events": [ + { + "uuid": "7c12afa5-10af-4fec-bab5-b2e926ae83b9", + "start": { + "$date": "2021-09-04T20:34:28.000Z" + }, + "end": { + "$date": "2021-09-04T20:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8c2da681-7e2a-44f2-bf1e-6af18de55d3b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-04T20:47:20.000Z" + }, + "end": { + "$date": "2021-09-05T02:57:19.000Z" + }, + "events": [ + { + "uuid": "e2c045ca-3d7a-43af-8993-98afb62b1b99", + "start": { + "$date": "2021-09-04T20:47:20.000Z" + }, + "end": { + "$date": "2021-09-05T02:57:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cd69f86-48b2-4efc-a3fc-8a12d9d88488", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-04T20:55:49.000Z" + }, + "end": { + "$date": "2021-09-04T21:11:14.000Z" + }, + "events": [ + { + "uuid": "363591fc-9645-4a89-b5f6-0e6d13aed70e", + "start": { + "$date": "2021-09-04T20:55:49.000Z" + }, + "end": { + "$date": "2021-09-04T21:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4776561-f991-456f-9766-c97b0f8a4390", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-04T21:43:22.000Z" + }, + "end": { + "$date": "2021-09-04T22:20:21.000Z" + }, + "events": [ + { + "uuid": "e83fb014-6c63-46f2-b7fb-06f779ef0f86", + "start": { + "$date": "2021-09-04T21:43:22.000Z" + }, + "end": { + "$date": "2021-09-04T22:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1a4f6c1c-b127-4640-ae7f-c77ab1bf06ed", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-04T21:43:15.000Z" + }, + "end": { + "$date": "2021-09-04T21:55:06.000Z" + }, + "events": [ + { + "uuid": "bdb86f02-451a-4949-a5b0-3e7abb5b10f6", + "start": { + "$date": "2021-09-04T21:43:15.000Z" + }, + "end": { + "$date": "2021-09-04T21:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", + "uuid": "ae213f84-243b-410a-bba6-7cfcecf5eb8c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-04T21:43:57.000Z" + }, + "end": { + "$date": "2021-09-05T02:16:45.000Z" + }, + "events": [ + { + "uuid": "eb003797-815e-4b6d-9518-ef3e01aba7e7", + "start": { + "$date": "2021-09-04T21:43:57.000Z" + }, + "end": { + "$date": "2021-09-05T02:16:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "b8b53a18-7367-472e-8ce4-248ef209ae5a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-04T22:55:45.000Z" + }, + "end": { + "$date": "2021-09-05T00:37:10.000Z" + }, + "events": [ + { + "uuid": "7e1623e9-5734-426f-9f28-62e46c4ac71a", + "start": { + "$date": "2021-09-04T22:55:45.000Z" + }, + "end": { + "$date": "2021-09-05T00:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2ee4241-052c-4b28-aa10-54e71a11dd5d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-05T00:07:29.000Z" + }, + "end": { + "$date": "2021-09-05T00:33:37.000Z" + }, + "events": [ + { + "uuid": "a2219867-eac0-40d6-8dbf-bef8859269a7", + "start": { + "$date": "2021-09-05T00:07:29.000Z" + }, + "end": { + "$date": "2021-09-05T00:33:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "836f9389-b12f-4282-9298-1c3358b1a662", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T03:22:24.000Z" + }, + "end": { + "$date": "2021-09-05T03:42:39.000Z" + }, + "events": [ + { + "uuid": "309e664d-13ee-41a9-937d-8d7f5264ec79", + "start": { + "$date": "2021-09-05T03:22:24.000Z" + }, + "end": { + "$date": "2021-09-05T05:19:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2b5b7b8b-7156-454e-86d8-1428ebffc5fb", + "start": { + "$date": "2021-09-05T05:19:24.000Z" + }, + "end": { + "$date": "2021-09-05T05:25:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ec1b6b0b-d922-45fc-b088-1e35e8842a15", + "start": { + "$date": "2021-09-05T05:25:24.000Z" + }, + "end": { + "$date": "2021-09-05T03:42:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86e36f44-8c62-4c26-b3f9-2fde07d29837", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-05T01:20:50.000Z" + }, + "end": { + "$date": "2021-09-05T03:28:48.000Z" + }, + "events": [ + { + "uuid": "45236d8d-fef5-4d29-95ec-d800be42973a", + "start": { + "$date": "2021-09-05T01:20:50.000Z" + }, + "end": { + "$date": "2021-09-05T03:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "bcb986df-8479-44ba-ba8c-c07cc78c905d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-05T01:24:41.000Z" + }, + "end": { + "$date": "2021-09-05T02:02:42.000Z" + }, + "events": [ + { + "uuid": "9c2cec2f-1194-4041-9115-07704e7abb7a", + "start": { + "$date": "2021-09-05T01:24:41.000Z" + }, + "end": { + "$date": "2021-09-05T02:02:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fdebb9f0-14df-4d7c-b4cc-d0105ee2d44c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-05T02:32:17.000Z" + }, + "end": { + "$date": "2021-09-05T04:07:04.000Z" + }, + "events": [ + { + "uuid": "14c363c7-103a-4411-b577-1f38f02752f7", + "start": { + "$date": "2021-09-05T02:32:17.000Z" + }, + "end": { + "$date": "2021-09-05T04:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "71709df7-114f-4a55-bff3-f8bdf73db422", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-05T02:57:30.000Z" + }, + "end": { + "$date": "2021-09-05T05:10:27.000Z" + }, + "events": [ + { + "uuid": "00725f20-1b3c-4821-b146-1801511b4cfb", + "start": { + "$date": "2021-09-05T02:57:30.000Z" + }, + "end": { + "$date": "2021-09-05T05:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ba63061-729d-4105-8c8b-a6b7fb0539b5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-05T04:18:24.000Z" + }, + "end": { + "$date": "2021-09-05T04:59:23.000Z" + }, + "events": [ + { + "uuid": "823a9fbe-d14a-4204-aac7-76639ded2109", + "start": { + "$date": "2021-09-05T04:18:24.000Z" + }, + "end": { + "$date": "2021-09-05T04:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cfa4db70-7bff-4073-931c-6d016c692c6a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-05T04:59:31.000Z" + }, + "end": { + "$date": "2021-09-05T05:11:38.000Z" + }, + "events": [ + { + "uuid": "ee81d7be-ae60-4bed-842c-67fdcb1a356b", + "start": { + "$date": "2021-09-05T04:59:31.000Z" + }, + "end": { + "$date": "2021-09-05T05:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a83e0058-4ab3-4799-8efb-3716af441513", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-05T05:20:49.000Z" + }, + "end": { + "$date": "2021-09-05T06:34:56.000Z" + }, + "events": [ + { + "uuid": "97ce472b-c8cc-46fa-a852-71cd44356ef9", + "start": { + "$date": "2021-09-05T05:20:49.000Z" + }, + "end": { + "$date": "2021-09-05T06:34:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d443390-249f-4a1b-9444-b9941aa66b91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T15:49:24.000Z" + }, + "end": { + "$date": "2021-09-05T16:16:48.000Z" + }, + "events": [ + { + "uuid": "0466e781-3681-466e-bce3-bfee5aeaf3b9", + "start": { + "$date": "2021-09-05T15:49:24.000Z" + }, + "end": { + "$date": "2021-09-05T16:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc4f65c5-2fee-48e2-a783-75e0341ca62b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T16:20:59.000Z" + }, + "end": { + "$date": "2021-09-05T16:45:19.000Z" + }, + "events": [ + { + "uuid": "7425b27e-70af-4cf8-aeed-2f135cbab66d", + "start": { + "$date": "2021-09-05T16:20:59.000Z" + }, + "end": { + "$date": "2021-09-05T16:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "b5883f41-3e22-41aa-85c0-d2c4fd795642", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T18:39:54.000Z" + }, + "end": { + "$date": "2021-09-05T20:13:25.000Z" + }, + "events": [ + { + "uuid": "45a766d5-4cdc-4a1a-b5e2-871e8d7924fc", + "start": { + "$date": "2021-09-05T18:39:54.000Z" + }, + "end": { + "$date": "2021-09-05T19:45:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9e2bcc46-20a5-49d3-a603-feab22f679aa", + "start": { + "$date": "2021-09-05T19:45:54.000Z" + }, + "end": { + "$date": "2021-09-05T20:07:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0a7f1648-9113-4111-9be2-b84f69336683", + "start": { + "$date": "2021-09-05T20:07:54.000Z" + }, + "end": { + "$date": "2021-09-05T20:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dfaf2f0e-552e-4f7a-bc1f-bc6300f19f51", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-05T19:04:44.000Z" + }, + "end": { + "$date": "2021-09-05T19:06:24.000Z" + }, + "events": [ + { + "uuid": "87bac8a1-4c23-4a22-93cc-928eadf18262", + "start": { + "$date": "2021-09-05T19:04:44.000Z" + }, + "end": { + "$date": "2021-09-05T19:06:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c95decb1-1216-4dce-87bc-d740c01e1e56", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-05T19:06:49.000Z" + }, + "end": { + "$date": "2021-09-05T19:26:52.000Z" + }, + "events": [ + { + "uuid": "878343c6-44fd-469a-9c1e-267cfb5dfb2e", + "start": { + "$date": "2021-09-05T19:06:49.000Z" + }, + "end": { + "$date": "2021-09-05T19:26:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "af6138c3-09da-4fa6-a799-199b7a95bc65", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-05T19:06:49.000Z" + }, + "end": { + "$date": "2021-09-05T19:44:50.000Z" + }, + "events": [ + { + "uuid": "19dd384a-1e3e-4da0-b03c-f5d3a813f57c", + "start": { + "$date": "2021-09-05T19:06:49.000Z" + }, + "end": { + "$date": "2021-09-05T19:09:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f373170-3c11-40fb-8c81-6264a8aa5a23", + "start": { + "$date": "2021-09-05T19:09:49.000Z" + }, + "end": { + "$date": "2021-09-05T19:10:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "63619cf3-779a-438e-945d-e32b5f08ae01", + "start": { + "$date": "2021-09-05T19:10:49.000Z" + }, + "end": { + "$date": "2021-09-05T19:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c89faa33-22c7-43c2-b6d8-012237933fb5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-05T19:55:51.000Z" + }, + "end": { + "$date": "2021-09-05T19:56:57.000Z" + }, + "events": [ + { + "uuid": "4ca44335-552b-409d-80d1-0f6e9faaaefd", + "start": { + "$date": "2021-09-05T19:55:51.000Z" + }, + "end": { + "$date": "2021-09-05T19:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "8ab5a3f0-b94e-4ae1-b46b-bd59134f2580", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T20:14:01.000Z" + }, + "end": { + "$date": "2021-09-05T20:52:46.000Z" + }, + "events": [ + { + "uuid": "1124f6eb-76f6-436c-b211-f31fa401148e", + "start": { + "$date": "2021-09-05T20:14:01.000Z" + }, + "end": { + "$date": "2021-09-05T20:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4b20f07-c3eb-4b01-8e80-f49d5f82c999", + "uuid": "d9828195-288d-4af7-95d4-c92f3a9059b4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-05T20:18:17.000Z" + }, + "end": { + "$date": "2021-09-05T23:53:03.000Z" + }, + "events": [ + { + "uuid": "d84bfecf-768a-4b1e-93f0-e5de6bce35ed", + "start": { + "$date": "2021-09-05T20:18:17.000Z" + }, + "end": { + "$date": "2021-09-05T23:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "032c58e3-2069-431d-aca1-1765b96662e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T21:00:37.000Z" + }, + "end": { + "$date": "2021-09-05T21:21:51.000Z" + }, + "events": [ + { + "uuid": "e8d578ac-4fcb-48e9-bb4b-826e156dd035", + "start": { + "$date": "2021-09-05T21:00:37.000Z" + }, + "end": { + "$date": "2021-09-05T21:21:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3be85cf-d7be-41d4-a64e-60ea2c58d7a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-05T21:24:42.000Z" + }, + "end": { + "$date": "2021-09-05T21:39:12.000Z" + }, + "events": [ + { + "uuid": "2e6c34f5-84cf-4c7d-bdfc-29d13d64d6c5", + "start": { + "$date": "2021-09-05T21:24:42.000Z" + }, + "end": { + "$date": "2021-09-05T21:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fdbb667-1549-4e49-a2f3-8ad2ffde51d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T02:28:01.000Z" + }, + "end": { + "$date": "2021-09-06T02:46:21.000Z" + }, + "events": [ + { + "uuid": "04031b41-8956-486f-97ed-b1a8a5942fa3", + "start": { + "$date": "2021-09-06T02:28:01.000Z" + }, + "end": { + "$date": "2021-09-06T02:46:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "778ee1d2-089b-4354-ae52-526050f1046b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-06T02:28:28.000Z" + }, + "end": { + "$date": "2021-09-06T02:30:43.000Z" + }, + "events": [ + { + "uuid": "d99372ee-9547-4653-8a05-b2b4690bec2d", + "start": { + "$date": "2021-09-06T02:28:28.000Z" + }, + "end": { + "$date": "2021-09-06T02:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "254dacb7-4c2b-4a33-afea-677592279e22", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-06T02:32:28.000Z" + }, + "end": { + "$date": "2021-09-06T02:33:28.000Z" + }, + "events": [ + { + "uuid": "b32b32e8-1497-453e-b058-2e537acf8089", + "start": { + "$date": "2021-09-06T02:32:28.000Z" + }, + "end": { + "$date": "2021-09-06T02:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "3907205e-d204-4c02-be8e-78c7c323e19b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-06T02:33:33.000Z" + }, + "end": { + "$date": "2021-09-06T08:36:41.000Z" + }, + "events": [ + { + "uuid": "235a99dd-8376-4100-9557-bb475f8a643f", + "start": { + "$date": "2021-09-06T02:33:33.000Z" + }, + "end": { + "$date": "2021-09-06T08:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e05445c6-d8f8-4bd0-bff5-394380ce2e1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T02:48:17.000Z" + }, + "end": { + "$date": "2021-09-06T03:08:05.000Z" + }, + "events": [ + { + "uuid": "f621e310-8cc7-4302-a2c0-14015c89a44a", + "start": { + "$date": "2021-09-06T02:48:17.000Z" + }, + "end": { + "$date": "2021-09-06T03:08:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02e1d250-d126-4036-adb3-3683b14fda27", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-06T02:58:05.000Z" + }, + "end": { + "$date": "2021-09-06T02:59:11.000Z" + }, + "events": [ + { + "uuid": "1f01b31d-b1ff-4bfc-bbc1-048094551dfb", + "start": { + "$date": "2021-09-06T02:58:05.000Z" + }, + "end": { + "$date": "2021-09-06T02:59:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "157c04ae-e220-4d37-bb2a-d5b35997695b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-06T02:59:20.000Z" + }, + "end": { + "$date": "2021-09-06T04:21:45.000Z" + }, + "events": [ + { + "uuid": "d2d30788-47a6-4803-9d87-4040b5ea5ad2", + "start": { + "$date": "2021-09-06T02:59:20.000Z" + }, + "end": { + "$date": "2021-09-06T04:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee3f375a-a85f-43ac-a5d5-3bd886ad1e0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T03:09:47.000Z" + }, + "end": { + "$date": "2021-09-06T03:31:42.000Z" + }, + "events": [ + { + "uuid": "919ab18c-c306-4b2e-b9ea-4b4c4d7cf478", + "start": { + "$date": "2021-09-06T03:09:47.000Z" + }, + "end": { + "$date": "2021-09-06T03:31:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c24ed7b2-9516-4a28-baac-e0ee61bbef93", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T03:33:08.000Z" + }, + "end": { + "$date": "2021-09-06T03:54:17.000Z" + }, + "events": [ + { + "uuid": "7bb5d030-caa0-4bab-a3f7-5818111ba799", + "start": { + "$date": "2021-09-06T03:33:08.000Z" + }, + "end": { + "$date": "2021-09-06T03:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "de8f9ea3-376d-4587-953f-eb4df2d22394", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-06T03:50:44.000Z" + }, + "end": { + "$date": "2021-09-06T05:06:39.000Z" + }, + "events": [ + { + "uuid": "140f460a-ae0a-4009-9960-62f75e7247c3", + "start": { + "$date": "2021-09-06T03:50:44.000Z" + }, + "end": { + "$date": "2021-09-06T05:06:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "0b54cc97-56d4-4e5f-8833-9561d1e7fb32", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-06T05:22:22.000Z" + }, + "end": { + "$date": "2021-09-06T05:31:17.000Z" + }, + "events": [ + { + "uuid": "eea1376e-948b-4bab-b6af-a1ac76ef760c", + "start": { + "$date": "2021-09-06T05:22:22.000Z" + }, + "end": { + "$date": "2021-09-06T05:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24c21c03-d986-4687-99d1-c2b107c20560", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-06T05:48:48.000Z" + }, + "end": { + "$date": "2021-09-06T06:28:17.000Z" + }, + "events": [ + { + "uuid": "18f1f819-7652-4774-8034-fdbf72dc0485", + "start": { + "$date": "2021-09-06T05:48:48.000Z" + }, + "end": { + "$date": "2021-09-06T06:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6476b959-2acd-4088-85d8-56efad6af7d6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-06T06:18:33.000Z" + }, + "end": { + "$date": "2021-09-06T07:26:16.000Z" + }, + "events": [ + { + "uuid": "bc5e6c0a-654e-4c53-8376-8572afec1af3", + "start": { + "$date": "2021-09-06T06:18:33.000Z" + }, + "end": { + "$date": "2021-09-06T07:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce71c65c-d500-4a7c-ac8d-75821a1581e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T16:20:20.000Z" + }, + "end": { + "$date": "2021-09-06T16:37:49.000Z" + }, + "events": [ + { + "uuid": "722685d6-1e98-4676-b533-558318cb2fd7", + "start": { + "$date": "2021-09-06T16:20:20.000Z" + }, + "end": { + "$date": "2021-09-06T16:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0203374-4322-418c-881b-6238309a8c30", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T16:52:50.000Z" + }, + "end": { + "$date": "2021-09-06T16:58:04.000Z" + }, + "events": [ + { + "uuid": "a274b886-7513-49b2-9f01-0703ad68acaa", + "start": { + "$date": "2021-09-06T16:52:50.000Z" + }, + "end": { + "$date": "2021-09-06T16:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d46fd88-7cad-4799-9371-de5414b02f0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T17:08:56.000Z" + }, + "end": { + "$date": "2021-09-06T17:35:00.000Z" + }, + "events": [ + { + "uuid": "96007e4d-1478-43e5-ae8e-0c5a933634af", + "start": { + "$date": "2021-09-06T17:08:56.000Z" + }, + "end": { + "$date": "2021-09-06T17:35:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3106a99e-ac56-47a1-aec3-a79a4bbc3dbe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T17:35:30.000Z" + }, + "end": { + "$date": "2021-09-06T17:44:20.000Z" + }, + "events": [ + { + "uuid": "e0807b79-0e39-4f02-987b-8512baf7947e", + "start": { + "$date": "2021-09-06T17:35:30.000Z" + }, + "end": { + "$date": "2021-09-06T17:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "00f0d13b-607f-4c4c-b51a-46ca7c63def6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T17:45:12.000Z" + }, + "end": { + "$date": "2021-09-06T17:52:22.000Z" + }, + "events": [ + { + "uuid": "bab0c6ef-db02-4428-b835-f48a45f67cd0", + "start": { + "$date": "2021-09-06T17:45:12.000Z" + }, + "end": { + "$date": "2021-09-06T17:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "44d95098-4499-493c-86d5-5bca5457691f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T17:52:53.000Z" + }, + "end": { + "$date": "2021-09-06T17:54:52.000Z" + }, + "events": [ + { + "uuid": "a0e694c9-0513-44c1-9a28-1965abe126b6", + "start": { + "$date": "2021-09-06T17:52:53.000Z" + }, + "end": { + "$date": "2021-09-06T17:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "c7f67916-1360-4e18-b16b-3b90906f5d66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T17:55:18.000Z" + }, + "end": { + "$date": "2021-09-06T21:12:24.000Z" + }, + "events": [ + { + "uuid": "92324696-4d80-44bb-9a70-db1053586f6d", + "start": { + "$date": "2021-09-06T17:55:18.000Z" + }, + "end": { + "$date": "2021-09-06T19:49:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b68038f-d53b-4f84-adfc-e063a25385fb", + "start": { + "$date": "2021-09-06T19:49:18.000Z" + }, + "end": { + "$date": "2021-09-06T20:03:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7c67b8aa-4d41-446d-ab3f-0bc2cb24c0eb", + "start": { + "$date": "2021-09-06T20:03:18.000Z" + }, + "end": { + "$date": "2021-09-06T21:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1af28f01-ca5f-4f76-825b-3bff2f282866", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-06T21:08:02.000Z" + }, + "end": { + "$date": "2021-09-06T21:55:01.000Z" + }, + "events": [ + { + "uuid": "bb425b79-48b9-4b13-b2b1-2e137481390f", + "start": { + "$date": "2021-09-06T21:08:02.000Z" + }, + "end": { + "$date": "2021-09-06T21:55:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "2b36a0e5-04a6-4a3a-81dc-43b492daaf94", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-06T21:25:28.000Z" + }, + "end": { + "$date": "2021-09-07T00:31:39.000Z" + }, + "events": [ + { + "uuid": "dbed8698-6d05-4da7-9542-3a5808efdd9f", + "start": { + "$date": "2021-09-06T21:25:28.000Z" + }, + "end": { + "$date": "2021-09-07T00:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b603f1a5-ec12-4d17-b05e-6fe0028dc252", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-06T21:56:36.000Z" + }, + "end": { + "$date": "2021-09-06T22:43:40.000Z" + }, + "events": [ + { + "uuid": "6985e53c-fafa-46ed-8188-2a97abc8b4e1", + "start": { + "$date": "2021-09-06T21:56:36.000Z" + }, + "end": { + "$date": "2021-09-06T22:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "86cdb970-78b7-49b3-864a-d7fc7f44c3e9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-06T22:07:09.000Z" + }, + "end": { + "$date": "2021-09-07T06:45:09.000Z" + }, + "events": [ + { + "uuid": "edbfcaa6-435c-404c-a23c-88eb157d96c5", + "start": { + "$date": "2021-09-06T22:07:09.000Z" + }, + "end": { + "$date": "2021-09-06T23:42:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c3230e9d-811b-493a-a7f9-a4888c87ac2a", + "start": { + "$date": "2021-09-06T23:42:09.000Z" + }, + "end": { + "$date": "2021-09-06T23:49:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "67a8bd49-1031-4ca2-83bf-76af85790724", + "start": { + "$date": "2021-09-06T23:49:09.000Z" + }, + "end": { + "$date": "2021-09-06T23:51:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5ca5960-1d92-408a-abad-dc993cca3422", + "start": { + "$date": "2021-09-06T23:51:09.000Z" + }, + "end": { + "$date": "2021-09-07T00:19:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "75c7f96a-335c-4285-ab96-ca398f9f7b1c", + "start": { + "$date": "2021-09-07T00:19:09.000Z" + }, + "end": { + "$date": "2021-09-07T06:45:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d2b219eb-110e-476e-a780-462231dcdd0b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-06T22:46:43.000Z" + }, + "end": { + "$date": "2021-09-06T23:18:14.000Z" + }, + "events": [ + { + "uuid": "6533d160-1465-4ac0-b266-08513bb51b0e", + "start": { + "$date": "2021-09-06T22:46:43.000Z" + }, + "end": { + "$date": "2021-09-06T23:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68e22ebf-6276-47f5-91dd-d6f134c253de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T00:33:33.000Z" + }, + "end": { + "$date": "2021-09-07T00:51:14.000Z" + }, + "events": [ + { + "uuid": "8d2c2396-e603-4ae7-98eb-aa70aa0717f3", + "start": { + "$date": "2021-09-07T00:33:33.000Z" + }, + "end": { + "$date": "2021-09-07T00:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5a58a35e-e30c-4e61-a752-28cc6bd06f5f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-06T22:57:31.000Z" + }, + "end": { + "$date": "2021-09-07T01:43:58.000Z" + }, + "events": [ + { + "uuid": "389a94e1-241e-4ba8-9c66-5e931b6a88b4", + "start": { + "$date": "2021-09-06T22:57:31.000Z" + }, + "end": { + "$date": "2021-09-06T23:09:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b40b96cc-75b6-4df8-9aa7-0e211383b8c2", + "start": { + "$date": "2021-09-06T23:09:31.000Z" + }, + "end": { + "$date": "2021-09-06T23:14:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e15024c-1383-465b-8934-1106526ca810", + "start": { + "$date": "2021-09-06T23:14:31.000Z" + }, + "end": { + "$date": "2021-09-07T01:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69288fb4-8b23-4368-a15a-0c9b0c2333ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T00:42:00.000Z" + }, + "end": { + "$date": "2021-09-07T01:14:01.000Z" + }, + "events": [ + { + "uuid": "7cd15903-f956-4075-bd20-8afcb8ea54d9", + "start": { + "$date": "2021-09-07T00:42:00.000Z" + }, + "end": { + "$date": "2021-09-07T01:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0f87abc-92f5-4959-bfa3-adfb9fca859e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T01:17:26.000Z" + }, + "end": { + "$date": "2021-09-07T01:31:52.000Z" + }, + "events": [ + { + "uuid": "33253425-dfc6-49c9-bdd9-0067f5a63b96", + "start": { + "$date": "2021-09-07T01:17:26.000Z" + }, + "end": { + "$date": "2021-09-07T01:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb596fca-08e7-4f42-8a22-33bdc8113eef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T01:16:32.000Z" + }, + "end": { + "$date": "2021-09-07T01:32:00.000Z" + }, + "events": [ + { + "uuid": "123ca786-30be-4240-9ab7-e175132080b7", + "start": { + "$date": "2021-09-07T01:16:32.000Z" + }, + "end": { + "$date": "2021-09-07T01:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7b77759-4d3d-4416-bcad-b8cf0994d3aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T01:35:47.000Z" + }, + "end": { + "$date": "2021-09-07T01:48:52.000Z" + }, + "events": [ + { + "uuid": "4f1870c6-381a-4c7a-bf38-8e0bddc0a59a", + "start": { + "$date": "2021-09-07T01:35:47.000Z" + }, + "end": { + "$date": "2021-09-07T01:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af1778fd-406e-459e-b3ec-9985fc06b2d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T01:35:18.000Z" + }, + "end": { + "$date": "2021-09-07T01:49:03.000Z" + }, + "events": [ + { + "uuid": "dce539e4-457c-4223-a3b7-5e2257f5ebaf", + "start": { + "$date": "2021-09-07T01:35:18.000Z" + }, + "end": { + "$date": "2021-09-07T01:49:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e268bee7-3a45-4e22-942e-2c664e1ab501", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-07T01:44:13.000Z" + }, + "end": { + "$date": "2021-09-07T05:37:08.000Z" + }, + "events": [ + { + "uuid": "ed7ae54f-2007-49bf-b32d-3450560c3319", + "start": { + "$date": "2021-09-07T01:44:13.000Z" + }, + "end": { + "$date": "2021-09-07T05:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a0754bdd-6122-42a3-a84a-472996fca44f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-07T01:46:55.000Z" + }, + "end": { + "$date": "2021-09-07T02:11:46.000Z" + }, + "events": [ + { + "uuid": "92e36982-5390-4bce-b506-50d555b36dbb", + "start": { + "$date": "2021-09-07T01:46:55.000Z" + }, + "end": { + "$date": "2021-09-07T02:11:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b659e65e-1106-4638-bc53-b84374fd1a80", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T02:23:57.000Z" + }, + "end": { + "$date": "2021-09-07T03:17:50.000Z" + }, + "events": [ + { + "uuid": "15f675a4-14bb-481d-b4a5-cfe9b8838e16", + "start": { + "$date": "2021-09-07T02:23:57.000Z" + }, + "end": { + "$date": "2021-09-07T03:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "33cfad22-a135-4095-a5bc-f21f47c77835", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-07T02:43:35.000Z" + }, + "end": { + "$date": "2021-09-07T05:44:37.000Z" + }, + "events": [ + { + "uuid": "c6b786d5-59e4-41c2-a332-62927a6539e6", + "start": { + "$date": "2021-09-07T02:43:35.000Z" + }, + "end": { + "$date": "2021-09-07T05:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "9cca402d-fc32-40de-8dba-d9d749066c37", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-07T03:12:12.000Z" + }, + "end": { + "$date": "2021-09-07T03:20:48.000Z" + }, + "events": [ + { + "uuid": "3e9b145f-4858-46c1-be96-f4f212da24a8", + "start": { + "$date": "2021-09-07T03:12:12.000Z" + }, + "end": { + "$date": "2021-09-07T03:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dab8e4ee-5b7c-49aa-8f23-b8c803a5077a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-07T03:21:03.000Z" + }, + "end": { + "$date": "2021-09-07T04:46:23.000Z" + }, + "events": [ + { + "uuid": "fc347e89-cf13-426b-8fde-b045478846f1", + "start": { + "$date": "2021-09-07T03:21:03.000Z" + }, + "end": { + "$date": "2021-09-07T04:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "f05b264d-00e2-4354-8e29-f2b871fe1839", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T03:24:40.000Z" + }, + "end": { + "$date": "2021-09-07T03:27:27.000Z" + }, + "events": [ + { + "uuid": "96206ce6-898f-4322-aa2a-839bacd9f0a4", + "start": { + "$date": "2021-09-07T03:24:40.000Z" + }, + "end": { + "$date": "2021-09-07T03:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "a62d1473-a5bb-4192-879a-aca2a43e1684", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T03:36:56.000Z" + }, + "end": { + "$date": "2021-09-07T04:15:18.000Z" + }, + "events": [ + { + "uuid": "1b4e0752-4903-4724-83a2-b1d106ae53a0", + "start": { + "$date": "2021-09-07T03:36:56.000Z" + }, + "end": { + "$date": "2021-09-07T04:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba909e0c-8a1e-4f4d-af5d-45eb29f2275a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-07T04:11:52.000Z" + }, + "end": { + "$date": "2021-09-07T04:45:56.000Z" + }, + "events": [ + { + "uuid": "dcbcb293-5755-4a78-87cb-c376dd405752", + "start": { + "$date": "2021-09-07T04:11:52.000Z" + }, + "end": { + "$date": "2021-09-07T04:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6addfbf8-c694-432a-9a36-4964fe699b8b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-07T04:55:52.000Z" + }, + "end": { + "$date": "2021-09-07T05:26:25.000Z" + }, + "events": [ + { + "uuid": "b932c9e9-d2db-49c6-a699-677c206a3002", + "start": { + "$date": "2021-09-07T04:55:52.000Z" + }, + "end": { + "$date": "2021-09-07T05:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "28ac5ac3-f272-478b-8cc2-2d628b1c6cc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T04:58:32.000Z" + }, + "end": { + "$date": "2021-09-07T05:33:44.000Z" + }, + "events": [ + { + "uuid": "271dc541-97dd-4378-aaf1-2523c2399699", + "start": { + "$date": "2021-09-07T04:58:32.000Z" + }, + "end": { + "$date": "2021-09-07T05:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57fc7ad4-5054-4660-8a3a-9df0b951b7f6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-07T05:35:01.000Z" + }, + "end": { + "$date": "2021-09-07T06:05:45.000Z" + }, + "events": [ + { + "uuid": "bde7d26c-77b0-4283-a5ec-99aeb829d38d", + "start": { + "$date": "2021-09-07T05:35:01.000Z" + }, + "end": { + "$date": "2021-09-07T06:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "138d2545-553d-475a-b86a-dcb3f71ae18f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T05:44:47.000Z" + }, + "end": { + "$date": "2021-09-07T06:24:29.000Z" + }, + "events": [ + { + "uuid": "c0d95375-9388-4958-a5cf-222809777ea4", + "start": { + "$date": "2021-09-07T05:44:47.000Z" + }, + "end": { + "$date": "2021-09-07T06:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "babc4996-68d4-40b2-846a-d1cdbb536689", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T06:32:41.000Z" + }, + "end": { + "$date": "2021-09-07T06:34:41.000Z" + }, + "events": [ + { + "uuid": "899507d2-3cba-4041-b0dd-1cd1d8a9dda4", + "start": { + "$date": "2021-09-07T06:32:41.000Z" + }, + "end": { + "$date": "2021-09-07T06:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "c91ccf2a-8d98-4d36-a8e9-d5a909858591", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-07T06:54:32.000Z" + }, + "end": { + "$date": "2021-09-07T07:57:34.000Z" + }, + "events": [ + { + "uuid": "405792b7-3f97-4fa4-af9d-c20844e72bab", + "start": { + "$date": "2021-09-07T06:54:32.000Z" + }, + "end": { + "$date": "2021-09-07T07:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5a49c5db-ae50-4e04-ba52-530696f48a73", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-07T07:14:03.000Z" + }, + "end": { + "$date": "2021-09-07T07:51:33.000Z" + }, + "events": [ + { + "uuid": "d475d5ed-9d35-4446-a0f2-cea8d3fe7325", + "start": { + "$date": "2021-09-07T07:14:03.000Z" + }, + "end": { + "$date": "2021-09-07T07:51:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "b124d937-4f3c-4b48-b725-9794448783fe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-07T13:06:52.000Z" + }, + "end": { + "$date": "2021-09-07T13:08:52.000Z" + }, + "events": [ + { + "uuid": "eba68b7e-0360-4a3f-84ac-f9cfc4f200f4", + "start": { + "$date": "2021-09-07T13:06:52.000Z" + }, + "end": { + "$date": "2021-09-07T13:08:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "fa0564c7-0368-436f-bfde-73f7438363f2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-07T13:08:57.000Z" + }, + "end": { + "$date": "2021-09-07T19:39:28.000Z" + }, + "events": [ + { + "uuid": "59ead308-9a4f-49c2-8646-e9931db8eb7d", + "start": { + "$date": "2021-09-07T13:08:57.000Z" + }, + "end": { + "$date": "2021-09-07T19:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3384289c-90d5-491d-b190-84b635980243", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-07T14:47:27.000Z" + }, + "end": { + "$date": "2021-09-07T22:20:01.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-09-07T14:47:27.000Z" + }, + "end": { + "$date": "2021-09-07T22:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "f92d0fdd-3f4a-4c2f-b4ba-8d3cd6219bb7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-07T16:03:17.000Z" + }, + "end": { + "$date": "2021-09-07T18:15:46.000Z" + }, + "events": [ + { + "uuid": "398db8a5-4a72-4876-9b38-242f4e07cea3", + "start": { + "$date": "2021-09-07T16:03:17.000Z" + }, + "end": { + "$date": "2021-09-07T18:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c9836d12-9131-4dc2-882d-44eabee3e9ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T16:33:20.000Z" + }, + "end": { + "$date": "2021-09-07T17:25:47.000Z" + }, + "events": [ + { + "uuid": "d045e522-e72d-4efe-936d-0dc170b5d262", + "start": { + "$date": "2021-09-07T16:33:20.000Z" + }, + "end": { + "$date": "2021-09-07T17:25:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a6c96e7-5cc6-43de-9791-884b08f673f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T17:41:03.000Z" + }, + "end": { + "$date": "2021-09-07T18:00:53.000Z" + }, + "events": [ + { + "uuid": "fd58e798-35ae-453b-b0ae-2d61da916b39", + "start": { + "$date": "2021-09-07T17:41:03.000Z" + }, + "end": { + "$date": "2021-09-07T18:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b81a9fa-5c2a-4a8c-8768-722dbf6262e7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T18:04:08.000Z" + }, + "end": { + "$date": "2021-09-07T18:29:49.000Z" + }, + "events": [ + { + "uuid": "9bcce929-4518-4eea-9998-637e8ab01149", + "start": { + "$date": "2021-09-07T18:04:08.000Z" + }, + "end": { + "$date": "2021-09-07T18:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8be82ebb-26a4-4446-ad99-adb13afdaff4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-07T18:20:12.000Z" + }, + "end": { + "$date": "2021-09-07T18:46:43.000Z" + }, + "events": [ + { + "uuid": "a24b8ef1-17ca-495d-bbc8-91a267e08665", + "start": { + "$date": "2021-09-07T18:20:12.000Z" + }, + "end": { + "$date": "2021-09-07T18:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b47643cb-6316-4462-a534-e1d09f7a6079", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T18:30:07.000Z" + }, + "end": { + "$date": "2021-09-07T18:34:46.000Z" + }, + "events": [ + { + "uuid": "c6c2bf3f-de69-4255-b456-d71f426bfdf1", + "start": { + "$date": "2021-09-07T18:30:07.000Z" + }, + "end": { + "$date": "2021-09-07T18:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44e42a38-b3d1-4b73-a9d9-48ffb3c7e64f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-07T18:47:24.000Z" + }, + "end": { + "$date": "2021-09-07T19:21:21.000Z" + }, + "events": [ + { + "uuid": "7e489876-e5cc-4f74-928b-f3304105fa3b", + "start": { + "$date": "2021-09-07T18:47:24.000Z" + }, + "end": { + "$date": "2021-09-07T19:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbe581f3-41df-4eb4-86f1-56056d1fac18", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-07T19:22:26.000Z" + }, + "end": { + "$date": "2021-09-07T20:00:08.000Z" + }, + "events": [ + { + "uuid": "7ea8882c-df88-4128-a33e-43839697b979", + "start": { + "$date": "2021-09-07T19:22:26.000Z" + }, + "end": { + "$date": "2021-09-07T20:00:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7cce7b09-eea1-4f9a-a000-a03cd0e3bab0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T20:48:22.000Z" + }, + "end": { + "$date": "2021-09-07T21:08:42.000Z" + }, + "events": [ + { + "uuid": "d4e9f230-662a-4c4f-9bea-5758c43eb4ef", + "start": { + "$date": "2021-09-07T20:48:22.000Z" + }, + "end": { + "$date": "2021-09-07T21:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "58486acc-db83-4390-b30c-1cec6bcbd045", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-07T20:43:35.000Z" + }, + "end": { + "$date": "2021-09-07T20:57:25.000Z" + }, + "events": [ + { + "uuid": "9cddcefd-56da-455d-982e-bfc27ee48b6e", + "start": { + "$date": "2021-09-07T20:43:35.000Z" + }, + "end": { + "$date": "2021-09-07T20:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f4536f64-9e99-4e6f-8ddc-0aab7f1f6699", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-07T20:57:31.000Z" + }, + "end": { + "$date": "2021-09-07T22:16:05.000Z" + }, + "events": [ + { + "uuid": "e3453d9e-08e1-4af0-8962-882e95d8e5fc", + "start": { + "$date": "2021-09-07T20:57:31.000Z" + }, + "end": { + "$date": "2021-09-07T22:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fa094c0-0cf2-4915-badc-666ec27c9684", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T21:12:57.000Z" + }, + "end": { + "$date": "2021-09-07T21:34:52.000Z" + }, + "events": [ + { + "uuid": "aa6ce999-b5d2-47bd-bcc4-2d33fc874024", + "start": { + "$date": "2021-09-07T21:12:57.000Z" + }, + "end": { + "$date": "2021-09-07T21:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "25d95689-4017-4d91-8bfc-6ee564ae28e1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-07T21:18:13.000Z" + }, + "end": { + "$date": "2021-09-08T04:53:53.000Z" + }, + "events": [ + { + "uuid": "1005842e-f3d3-4c4d-8a92-1be412d3a274", + "start": { + "$date": "2021-09-07T21:18:13.000Z" + }, + "end": { + "$date": "2021-09-08T04:53:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a883d32d-b96e-47e1-9c79-8856b8909030", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-07T21:37:38.000Z" + }, + "end": { + "$date": "2021-09-07T22:00:18.000Z" + }, + "events": [ + { + "uuid": "4038432c-a77d-4ec4-a09a-3981a9bd829a", + "start": { + "$date": "2021-09-07T21:37:38.000Z" + }, + "end": { + "$date": "2021-09-07T22:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ee934966-3208-4386-988b-c361f191ca56", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-07T22:54:46.000Z" + }, + "end": { + "$date": "2021-09-07T23:03:40.000Z" + }, + "events": [ + { + "uuid": "a064f6c7-83ae-42c3-9a3a-553cbc55d2f8", + "start": { + "$date": "2021-09-07T22:54:46.000Z" + }, + "end": { + "$date": "2021-09-07T23:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f01ffcf2-d204-4fb9-a7e6-2d8ad5bddd4c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-07T23:13:17.000Z" + }, + "end": { + "$date": "2021-09-08T00:52:02.000Z" + }, + "events": [ + { + "uuid": "3637bfe0-fa58-4aa6-989c-aef009ec02c8", + "start": { + "$date": "2021-09-07T23:13:17.000Z" + }, + "end": { + "$date": "2021-09-08T00:52:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "53584fbd-4839-4148-80a1-bb0b59ce71cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-07T23:25:50.000Z" + }, + "end": { + "$date": "2021-09-08T04:43:47.000Z" + }, + "events": [ + { + "uuid": "9bea279b-dbff-4551-a514-aa66d6a1c49a", + "start": { + "$date": "2021-09-07T23:25:50.000Z" + }, + "end": { + "$date": "2021-09-08T04:43:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e33c124d-84fa-4d42-8af7-3578114af19d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T00:15:41.000Z" + }, + "end": { + "$date": "2021-09-08T00:35:31.000Z" + }, + "events": [ + { + "uuid": "e08f53c5-f14e-4a11-8e4b-c988be3d3fc5", + "start": { + "$date": "2021-09-08T00:15:41.000Z" + }, + "end": { + "$date": "2021-09-08T00:35:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3316f352-3256-4c6d-bc35-a259f64e6a8a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-08T00:19:07.000Z" + }, + "end": { + "$date": "2021-09-08T00:58:09.000Z" + }, + "events": [ + { + "uuid": "bbb50c93-6de9-4db2-90e3-81d5beb197f7", + "start": { + "$date": "2021-09-08T00:19:07.000Z" + }, + "end": { + "$date": "2021-09-08T00:58:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0a061d51-b3c8-46ea-ad4d-a77f0fc91941", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T00:38:42.000Z" + }, + "end": { + "$date": "2021-09-08T01:34:23.000Z" + }, + "events": [ + { + "uuid": "232e9476-feb2-4821-b937-fb5e2828a504", + "start": { + "$date": "2021-09-08T00:38:42.000Z" + }, + "end": { + "$date": "2021-09-08T01:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "71ce05fa-bb0a-45b5-9cee-33bfe6ac70b0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-08T00:59:20.000Z" + }, + "end": { + "$date": "2021-09-08T01:53:42.000Z" + }, + "events": [ + { + "uuid": "fd618508-06a8-4b47-944e-41af99bb81e0", + "start": { + "$date": "2021-09-08T00:59:20.000Z" + }, + "end": { + "$date": "2021-09-08T01:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "421cb792-2793-4830-95ca-af1f140b4bda", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-08T01:53:33.000Z" + }, + "end": { + "$date": "2021-09-08T02:42:03.000Z" + }, + "events": [ + { + "uuid": "78905686-f036-4d6e-8109-8d8f5d90f18f", + "start": { + "$date": "2021-09-08T01:53:33.000Z" + }, + "end": { + "$date": "2021-09-08T02:42:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ae4b8974-2d87-43f4-a1bd-034b783df6b2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-08T02:05:24.000Z" + }, + "end": { + "$date": "2021-09-08T03:31:46.000Z" + }, + "events": [ + { + "uuid": "b43819b1-2512-4304-8635-5b4999d2b071", + "start": { + "$date": "2021-09-08T02:05:24.000Z" + }, + "end": { + "$date": "2021-09-08T03:31:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4b03d6a-9e3c-4ca9-a80a-6e1ae33a9f0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T02:32:52.000Z" + }, + "end": { + "$date": "2021-09-08T02:59:03.000Z" + }, + "events": [ + { + "uuid": "38ce2cb1-3cd4-4b56-9f2f-57eb66371bae", + "start": { + "$date": "2021-09-08T02:32:52.000Z" + }, + "end": { + "$date": "2021-09-08T02:59:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5de22e15-2c4f-42b5-bc5d-d40becd1fce9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T03:01:58.000Z" + }, + "end": { + "$date": "2021-09-08T03:28:01.000Z" + }, + "events": [ + { + "uuid": "92a8c7d5-9fdf-4985-b2fb-04947fae58ef", + "start": { + "$date": "2021-09-08T03:01:58.000Z" + }, + "end": { + "$date": "2021-09-08T03:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aab410ea-c514-4d68-a7de-f2a7c2eefd51", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-08T03:50:43.000Z" + }, + "end": { + "$date": "2021-09-08T04:26:09.000Z" + }, + "events": [ + { + "uuid": "5da35e96-2bdc-45a6-b736-e5a1f2ea9f5e", + "start": { + "$date": "2021-09-08T03:50:43.000Z" + }, + "end": { + "$date": "2021-09-08T04:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "550c5ba3-1866-480e-a619-d3dbab795fcd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-08T03:59:08.000Z" + }, + "end": { + "$date": "2021-09-08T04:15:40.000Z" + }, + "events": [ + { + "uuid": "2bf41cbe-4fc0-4352-852e-2809cbd964b8", + "start": { + "$date": "2021-09-08T03:59:08.000Z" + }, + "end": { + "$date": "2021-09-08T04:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b5f0945-d90c-4079-8441-1a4276d4a4d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-08T04:36:06.000Z" + }, + "end": { + "$date": "2021-09-08T05:07:22.000Z" + }, + "events": [ + { + "uuid": "49ce9d9a-11ac-430a-8ff6-dd8ad9bc183d", + "start": { + "$date": "2021-09-08T04:36:06.000Z" + }, + "end": { + "$date": "2021-09-08T05:07:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d65424eb-a696-47ec-a7ad-2414cb61d574", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-08T04:41:57.000Z" + }, + "end": { + "$date": "2021-09-08T05:08:55.000Z" + }, + "events": [ + { + "uuid": "06fb8023-ed3f-441f-a1f6-adac2bd36584", + "start": { + "$date": "2021-09-08T04:41:57.000Z" + }, + "end": { + "$date": "2021-09-08T05:08:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4255e97b-ece3-4969-a522-8045e8b1d07a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-08T05:19:16.000Z" + }, + "end": { + "$date": "2021-09-08T05:44:44.000Z" + }, + "events": [ + { + "uuid": "743b1684-ca30-42c1-8989-376c9294e331", + "start": { + "$date": "2021-09-08T05:19:16.000Z" + }, + "end": { + "$date": "2021-09-08T05:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c961a455-c428-4f4f-8c58-8de93133a194", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T15:38:50.000Z" + }, + "end": { + "$date": "2021-09-08T15:57:51.000Z" + }, + "events": [ + { + "uuid": "c08dda4c-d8ec-469b-a8fb-5c29d0ac1458", + "start": { + "$date": "2021-09-08T15:38:50.000Z" + }, + "end": { + "$date": "2021-09-08T15:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a32c251e-7ef0-45eb-a11d-d4c218fa3144", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T16:02:21.000Z" + }, + "end": { + "$date": "2021-09-08T16:24:53.000Z" + }, + "events": [ + { + "uuid": "a3c84650-3fc0-4f3a-af94-19e1f0a85600", + "start": { + "$date": "2021-09-08T16:02:21.000Z" + }, + "end": { + "$date": "2021-09-08T16:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b0d524d-6587-4a7b-a384-f8341c234e87", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T16:31:08.000Z" + }, + "end": { + "$date": "2021-09-08T16:44:38.000Z" + }, + "events": [ + { + "uuid": "6b16f380-4b94-472f-aac8-0ad3d36eea44", + "start": { + "$date": "2021-09-08T16:31:08.000Z" + }, + "end": { + "$date": "2021-09-08T16:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "5e55a88a-98e5-4126-9b6b-6807a9d1cc35", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-08T16:37:53.000Z" + }, + "end": { + "$date": "2021-09-08T17:07:55.000Z" + }, + "events": [ + { + "uuid": "c31e6a72-6dfc-448d-9db8-bfe62ead61c6", + "start": { + "$date": "2021-09-08T16:37:53.000Z" + }, + "end": { + "$date": "2021-09-08T17:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54cad666-2c74-459e-81e9-b026c15d0881", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T16:44:58.000Z" + }, + "end": { + "$date": "2021-09-08T17:37:17.000Z" + }, + "events": [ + { + "uuid": "9d24d793-1e71-48c1-9e20-f99f9d99e231", + "start": { + "$date": "2021-09-08T16:44:58.000Z" + }, + "end": { + "$date": "2021-09-08T17:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2dcabadb-9e71-4264-aae5-532a012e3d36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T17:37:35.000Z" + }, + "end": { + "$date": "2021-09-08T18:05:16.000Z" + }, + "events": [ + { + "uuid": "87147b0d-b642-471f-9eac-0ff7be343778", + "start": { + "$date": "2021-09-08T17:37:35.000Z" + }, + "end": { + "$date": "2021-09-08T18:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f736ef35-364d-43d6-a19c-224800c3ea90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T19:30:54.000Z" + }, + "end": { + "$date": "2021-09-08T19:47:15.000Z" + }, + "events": [ + { + "uuid": "539f26cd-aa78-4343-9dee-3bd4b178cae0", + "start": { + "$date": "2021-09-08T19:30:54.000Z" + }, + "end": { + "$date": "2021-09-08T19:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fbbadba-503f-4467-a76b-63dd4bec8075", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T20:44:59.000Z" + }, + "end": { + "$date": "2021-09-08T21:14:25.000Z" + }, + "events": [ + { + "uuid": "eefa0610-31a2-4737-9ec3-595e9af4a6a7", + "start": { + "$date": "2021-09-08T20:44:59.000Z" + }, + "end": { + "$date": "2021-09-08T20:55:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7f04033-0e5f-4cbd-93f1-5f4c0732024e", + "start": { + "$date": "2021-09-08T20:55:59.000Z" + }, + "end": { + "$date": "2021-09-08T21:05:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3120d6d0-6131-4988-98bf-f5efbdead566", + "start": { + "$date": "2021-09-08T21:05:59.000Z" + }, + "end": { + "$date": "2021-09-08T21:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6886bdac-e663-4845-b842-711c99150ce5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T21:18:40.000Z" + }, + "end": { + "$date": "2021-09-08T21:34:55.000Z" + }, + "events": [ + { + "uuid": "b64f5cf4-2d08-45d0-86ec-efab69b65035", + "start": { + "$date": "2021-09-08T21:18:40.000Z" + }, + "end": { + "$date": "2021-09-08T21:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7012c1b2-b1c7-4956-a0b3-4d62a46b4844", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-08T21:23:36.000Z" + }, + "end": { + "$date": "2021-09-08T23:19:41.000Z" + }, + "events": [ + { + "uuid": "321c2f76-8ee6-4ef0-8542-f575f0bd8c21", + "start": { + "$date": "2021-09-08T21:23:36.000Z" + }, + "end": { + "$date": "2021-09-08T23:19:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "848e2f9a-5ac8-4ec0-aad0-1f90c54e23af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T21:36:25.000Z" + }, + "end": { + "$date": "2021-09-08T21:51:46.000Z" + }, + "events": [ + { + "uuid": "b172b573-79a7-4ed6-a72f-48672df620b6", + "start": { + "$date": "2021-09-08T21:36:25.000Z" + }, + "end": { + "$date": "2021-09-08T21:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "16c62cce-30ae-482d-b6fe-1c308eefcf3c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-08T21:49:24.000Z" + }, + "end": { + "$date": "2021-09-09T07:37:59.000Z" + }, + "events": [ + { + "uuid": "f6bad7f0-2e67-48f3-af98-a8bcb983970d", + "start": { + "$date": "2021-09-08T21:49:24.000Z" + }, + "end": { + "$date": "2021-09-09T07:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c8cf3fbd-e49b-412f-8074-02ed062bb9aa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-08T22:45:35.000Z" + }, + "end": { + "$date": "2021-09-08T22:49:16.000Z" + }, + "events": [ + { + "uuid": "2d3baadf-1eac-4ad4-afe3-0cf7864371c2", + "start": { + "$date": "2021-09-08T22:45:35.000Z" + }, + "end": { + "$date": "2021-09-08T22:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bffce9e2-aead-4be5-a834-e527446009d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-08T23:57:49.000Z" + }, + "end": { + "$date": "2021-09-09T00:30:09.000Z" + }, + "events": [ + { + "uuid": "762b0b27-7b12-46a1-a61c-06190dcfd6c2", + "start": { + "$date": "2021-09-08T23:57:49.000Z" + }, + "end": { + "$date": "2021-09-09T00:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "aa4f4f3b-186d-4397-85c0-cac8103f5b73", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-09T00:00:18.000Z" + }, + "end": { + "$date": "2021-09-09T01:04:37.000Z" + }, + "events": [ + { + "uuid": "bae939bf-e360-4940-b39d-371e6a0d7411", + "start": { + "$date": "2021-09-09T00:00:18.000Z" + }, + "end": { + "$date": "2021-09-09T01:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c0684b68-09ce-4980-b6ae-fb4c74d87f21", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-09T00:27:48.000Z" + }, + "end": { + "$date": "2021-09-09T01:16:33.000Z" + }, + "events": [ + { + "uuid": "919af933-537f-40b9-84ef-9b75b706d570", + "start": { + "$date": "2021-09-09T00:27:48.000Z" + }, + "end": { + "$date": "2021-09-09T01:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0fd9671f-e448-4204-b192-eafba6586e43", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T00:30:54.000Z" + }, + "end": { + "$date": "2021-09-09T01:48:53.000Z" + }, + "events": [ + { + "uuid": "bb5e649a-c783-4ad6-94b0-e49b2b4f9308", + "start": { + "$date": "2021-09-09T00:30:54.000Z" + }, + "end": { + "$date": "2021-09-09T01:48:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e3cfe0d7-447c-4581-9d7a-1bbd029f0512", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-09T01:10:10.000Z" + }, + "end": { + "$date": "2021-09-09T01:24:20.000Z" + }, + "events": [ + { + "uuid": "08a3a6b5-555e-4b3c-ba01-4070c28f444b", + "start": { + "$date": "2021-09-09T01:10:10.000Z" + }, + "end": { + "$date": "2021-09-09T01:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "973cc20c-d491-4f90-ae57-538418abf4cc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-09T01:27:58.000Z" + }, + "end": { + "$date": "2021-09-09T02:01:55.000Z" + }, + "events": [ + { + "uuid": "b87386fa-4118-4236-a316-874c159860b0", + "start": { + "$date": "2021-09-09T01:27:58.000Z" + }, + "end": { + "$date": "2021-09-09T02:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a61ffe56-cdb0-491e-a1d7-9e9e5a7e5157", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-09T01:34:09.000Z" + }, + "end": { + "$date": "2021-09-09T04:19:10.000Z" + }, + "events": [ + { + "uuid": "bd6a294a-93d7-4f17-a6fd-ed7544f16cca", + "start": { + "$date": "2021-09-09T01:34:09.000Z" + }, + "end": { + "$date": "2021-09-09T04:19:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "407bd3ff-874d-48d0-a1d3-cb362a72bec7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T02:18:30.000Z" + }, + "end": { + "$date": "2021-09-09T02:45:16.000Z" + }, + "events": [ + { + "uuid": "c08116f3-a7e6-4e21-a482-e34c555319a4", + "start": { + "$date": "2021-09-09T02:18:30.000Z" + }, + "end": { + "$date": "2021-09-09T02:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "07bef70f-e85c-4f93-8bf8-4be27801191a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-09T00:27:48.000Z" + }, + "end": { + "$date": "2021-09-09T05:34:52.000Z" + }, + "events": [ + { + "uuid": "553cd21d-73be-4cbf-865e-36556041a478", + "start": { + "$date": "2021-09-09T00:27:48.000Z" + }, + "end": { + "$date": "2021-09-09T05:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa393680-ea6c-4dfb-8f1f-dd1652ce136f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T02:48:26.000Z" + }, + "end": { + "$date": "2021-09-09T03:03:21.000Z" + }, + "events": [ + { + "uuid": "fcfd1619-9b31-4265-a288-f63b2e4b3ab2", + "start": { + "$date": "2021-09-09T02:48:26.000Z" + }, + "end": { + "$date": "2021-09-09T03:03:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b4259a38-290a-4962-a55f-29bc1ad7f164", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-09T03:47:33.000Z" + }, + "end": { + "$date": "2021-09-09T07:06:08.000Z" + }, + "events": [ + { + "uuid": "e4038389-5361-4b4f-b022-8a5eb616ce89", + "start": { + "$date": "2021-09-09T03:47:33.000Z" + }, + "end": { + "$date": "2021-09-09T07:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "83880ae9-f831-48ae-875c-6ccee9bf3fc0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-09T04:41:24.000Z" + }, + "end": { + "$date": "2021-09-09T05:32:40.000Z" + }, + "events": [ + { + "uuid": "b6cfbfe1-c5c5-4e02-b564-4c12c30b7c3a", + "start": { + "$date": "2021-09-09T04:41:24.000Z" + }, + "end": { + "$date": "2021-09-09T05:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3642e730-ad90-43c6-b3d0-b786673b81eb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-09T05:10:32.000Z" + }, + "end": { + "$date": "2021-09-09T05:49:10.000Z" + }, + "events": [ + { + "uuid": "4378dc8e-d960-4356-9c17-f3218c66dd7a", + "start": { + "$date": "2021-09-09T05:10:32.000Z" + }, + "end": { + "$date": "2021-09-09T05:49:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe58b965-572e-46aa-a1f5-7cc28525ef4b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-09T05:54:31.000Z" + }, + "end": { + "$date": "2021-09-09T06:29:19.000Z" + }, + "events": [ + { + "uuid": "7d908f7d-b4db-4b44-a76b-71006cb26d4b", + "start": { + "$date": "2021-09-09T05:54:31.000Z" + }, + "end": { + "$date": "2021-09-09T06:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c0ea1cae-7fb3-4edb-a8f8-7a74fdb4ab04", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-09T05:53:54.000Z" + }, + "end": { + "$date": "2021-09-09T06:20:16.000Z" + }, + "events": [ + { + "uuid": "b3902956-f659-46bf-8a9e-1eecd0f1475e", + "start": { + "$date": "2021-09-09T05:53:54.000Z" + }, + "end": { + "$date": "2021-09-09T06:20:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "361f9dbe-9ae3-430d-a9fd-e96a107071e8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-09T06:36:30.000Z" + }, + "end": { + "$date": "2021-09-09T07:02:53.000Z" + }, + "events": [ + { + "uuid": "16d63f8e-21f7-40a2-a523-a0b4a9743b2d", + "start": { + "$date": "2021-09-09T06:36:30.000Z" + }, + "end": { + "$date": "2021-09-09T07:02:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59c83e7f-cf1b-46f7-b003-36c64177b77e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T15:27:07.000Z" + }, + "end": { + "$date": "2021-09-09T15:27:56.000Z" + }, + "events": [ + { + "uuid": "750744dc-9f5c-4c08-a727-5eb7efc530ef", + "start": { + "$date": "2021-09-09T15:27:07.000Z" + }, + "end": { + "$date": "2021-09-09T15:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "84d60475-5c3f-466c-9032-e7b6eaf3502b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-09T15:13:39.000Z" + }, + "end": { + "$date": "2021-09-09T15:40:52.000Z" + }, + "events": [ + { + "uuid": "3a2a7cb0-e84b-489c-b235-07196ed80dbb", + "start": { + "$date": "2021-09-09T15:13:39.000Z" + }, + "end": { + "$date": "2021-09-09T15:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ec7d3cd1-6b7b-45ef-b9a9-bfb273846ca7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-09T16:28:02.000Z" + }, + "end": { + "$date": "2021-09-09T18:58:21.000Z" + }, + "events": [ + { + "uuid": "3670efd7-32c5-4658-9d31-1353d9c258f0", + "start": { + "$date": "2021-09-09T16:28:02.000Z" + }, + "end": { + "$date": "2021-09-09T18:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3869f5e8-7d3e-4f6b-94f2-fee4b7861042", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T17:16:44.000Z" + }, + "end": { + "$date": "2021-09-09T17:40:44.000Z" + }, + "events": [ + { + "uuid": "e1648772-6efd-4158-9515-6e297130750a", + "start": { + "$date": "2021-09-09T17:16:44.000Z" + }, + "end": { + "$date": "2021-09-09T17:40:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71bcc48d-8538-4130-8561-8d7fecfb4b8b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T17:41:15.000Z" + }, + "end": { + "$date": "2021-09-09T18:13:27.000Z" + }, + "events": [ + { + "uuid": "d4f11749-0e92-4bc2-893a-2db65d3b049e", + "start": { + "$date": "2021-09-09T17:41:15.000Z" + }, + "end": { + "$date": "2021-09-09T17:52:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "71134a7b-2996-4748-802b-c95ff97848ad", + "start": { + "$date": "2021-09-09T17:52:15.000Z" + }, + "end": { + "$date": "2021-09-09T18:01:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a38acbbd-c8aa-4efd-aa39-78ff7a8c9189", + "start": { + "$date": "2021-09-09T18:01:15.000Z" + }, + "end": { + "$date": "2021-09-09T18:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c651cfe8-7482-4022-9846-d3015d0428f1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-09T20:17:53.000Z" + }, + "end": { + "$date": "2021-09-09T20:49:16.000Z" + }, + "events": [ + { + "uuid": "159d7b84-8f92-46a4-8431-0ab7564b411a", + "start": { + "$date": "2021-09-09T20:17:53.000Z" + }, + "end": { + "$date": "2021-09-09T20:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d6b1ea6-c76c-4461-b2a0-51170984e6c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T20:30:06.000Z" + }, + "end": { + "$date": "2021-09-09T20:46:05.000Z" + }, + "events": [ + { + "uuid": "297404e3-4916-43a8-be1a-af0214f93777", + "start": { + "$date": "2021-09-09T20:30:06.000Z" + }, + "end": { + "$date": "2021-09-09T20:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ade5e29f-1e2a-47f5-9862-056a3c15b798", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T20:52:51.000Z" + }, + "end": { + "$date": "2021-09-09T21:13:06.000Z" + }, + "events": [ + { + "uuid": "734f12f8-36df-4c46-94da-4c13ebf9eaff", + "start": { + "$date": "2021-09-09T20:52:51.000Z" + }, + "end": { + "$date": "2021-09-09T21:13:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "312e5177-9d04-444c-9126-f472cac86ffc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T21:40:44.000Z" + }, + "end": { + "$date": "2021-09-09T22:01:29.000Z" + }, + "events": [ + { + "uuid": "ccb750cf-7208-4403-b740-37ba93f7c561", + "start": { + "$date": "2021-09-09T21:40:44.000Z" + }, + "end": { + "$date": "2021-09-09T22:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b46a085a-c24a-468c-99db-6fbad02be61a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-09T21:26:42.000Z" + }, + "end": { + "$date": "2021-09-09T21:46:03.000Z" + }, + "events": [ + { + "uuid": "aa99acc7-48ae-47dc-a5cb-9bd0713c8995", + "start": { + "$date": "2021-09-09T21:26:42.000Z" + }, + "end": { + "$date": "2021-09-09T21:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e09d1d62-14cf-4d96-ba2f-a72b658a609f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-09T21:41:09.000Z" + }, + "end": { + "$date": "2021-09-09T22:17:55.000Z" + }, + "events": [ + { + "uuid": "e65a8841-6989-4de3-b3fe-624f7917e7bd", + "start": { + "$date": "2021-09-09T21:41:09.000Z" + }, + "end": { + "$date": "2021-09-09T22:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "25e15a40-4955-401e-ba06-ec290078ca34", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-09T21:46:24.000Z" + }, + "end": { + "$date": "2021-09-09T22:56:17.000Z" + }, + "events": [ + { + "uuid": "5b1ea4c6-83cf-4518-9242-cf0ef1433000", + "start": { + "$date": "2021-09-09T21:46:24.000Z" + }, + "end": { + "$date": "2021-09-09T22:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "73a48efc-a452-44ef-b0f9-ad626accc135", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-09T22:18:35.000Z" + }, + "end": { + "$date": "2021-09-10T01:22:05.000Z" + }, + "events": [ + { + "uuid": "a5531aa8-7b13-414f-96ed-a311b9286321", + "start": { + "$date": "2021-09-09T22:18:35.000Z" + }, + "end": { + "$date": "2021-09-10T01:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0480d38f-1c19-4625-b4c3-cfc97104a8a3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-09T22:51:23.000Z" + }, + "end": { + "$date": "2021-09-09T23:05:01.000Z" + }, + "events": [ + { + "uuid": "655109af-3974-4fc1-806a-26395395b4e7", + "start": { + "$date": "2021-09-09T22:51:23.000Z" + }, + "end": { + "$date": "2021-09-09T23:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0f7940f7-26c8-4638-9844-6c08824b7bdb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-09T23:00:47.000Z" + }, + "end": { + "$date": "2021-09-09T23:43:23.000Z" + }, + "events": [ + { + "uuid": "c631564b-604a-4262-a044-ae67a4247846", + "start": { + "$date": "2021-09-09T23:00:47.000Z" + }, + "end": { + "$date": "2021-09-09T23:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "92a506f3-4ab9-4bd0-9043-339e5a38dc08", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-09T23:20:50.000Z" + }, + "end": { + "$date": "2021-09-10T05:19:11.000Z" + }, + "events": [ + { + "uuid": "64c2030c-5ec0-44b5-b2c2-84032e3a4c5c", + "start": { + "$date": "2021-09-09T23:20:50.000Z" + }, + "end": { + "$date": "2021-09-09T23:32:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b288513-3a01-47e3-820c-350bf2d74a53", + "start": { + "$date": "2021-09-09T23:32:50.000Z" + }, + "end": { + "$date": "2021-09-09T23:35:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "88aa577e-2f43-4b48-95b4-ce95a19eb96d", + "start": { + "$date": "2021-09-09T23:35:50.000Z" + }, + "end": { + "$date": "2021-09-10T05:19:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46a07f7f-ccfe-48cc-b775-e6c4353a8257", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-09T23:30:49.000Z" + }, + "end": { + "$date": "2021-09-09T23:52:58.000Z" + }, + "events": [ + { + "uuid": "cbc6da54-5446-4eb0-b9b8-4ff28f959ae8", + "start": { + "$date": "2021-09-09T23:30:49.000Z" + }, + "end": { + "$date": "2021-09-09T23:52:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41d09875-d89b-46e0-8d3b-79d5ffdd22ec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-09T23:53:52.000Z" + }, + "end": { + "$date": "2021-09-09T23:56:17.000Z" + }, + "events": [ + { + "uuid": "34de3e78-3328-4393-b8e5-ebefbc97d3b0", + "start": { + "$date": "2021-09-09T23:53:52.000Z" + }, + "end": { + "$date": "2021-09-09T23:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f4e0fc3-301f-4893-9237-1f6f0e7364d3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-09T23:57:13.000Z" + }, + "end": { + "$date": "2021-09-10T14:01:51.000Z" + }, + "events": [ + { + "uuid": "13b4cbd3-7470-4a45-8dea-0a1bcce2f3ef", + "start": { + "$date": "2021-09-09T23:57:13.000Z" + }, + "end": { + "$date": "2021-09-09T23:58:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c44e7d4-c6c2-41fd-84f6-b0a6e1210109", + "start": { + "$date": "2021-09-09T23:58:13.000Z" + }, + "end": { + "$date": "2021-09-10T00:03:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8687f2fc-fe2c-4fb8-b70a-e1eb933ec0d1", + "start": { + "$date": "2021-09-10T00:03:13.000Z" + }, + "end": { + "$date": "2021-09-10T00:10:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "651e111a-66e1-42e3-82fe-f7f54599d080", + "start": { + "$date": "2021-09-10T00:10:13.000Z" + }, + "end": { + "$date": "2021-09-10T00:14:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e6cd93a1-31b0-4103-855d-5929aa0d17c5", + "start": { + "$date": "2021-09-10T00:14:13.000Z" + }, + "end": { + "$date": "2021-09-10T00:16:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4aee9433-cb09-425a-98cb-44b94b15a530", + "start": { + "$date": "2021-09-10T00:16:13.000Z" + }, + "end": { + "$date": "2021-09-10T01:06:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0a6f2c27-9b48-41e1-9829-7418c2f05a4f", + "start": { + "$date": "2021-09-10T01:06:13.000Z" + }, + "end": { + "$date": "2021-09-10T01:10:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c34e4f2b-ea7d-40a6-b7ba-83260b3b0d1e", + "start": { + "$date": "2021-09-10T01:10:13.000Z" + }, + "end": { + "$date": "2021-09-10T01:59:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5096c561-d721-4cdd-9846-4417c74e91a4", + "start": { + "$date": "2021-09-10T01:59:13.000Z" + }, + "end": { + "$date": "2021-09-10T02:02:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c378af2b-e033-4c7e-8f51-bb76588ab272", + "start": { + "$date": "2021-09-10T02:02:13.000Z" + }, + "end": { + "$date": "2021-09-10T02:20:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6ae2006e-eab9-4933-aef8-ef900ccfd836", + "start": { + "$date": "2021-09-10T02:20:13.000Z" + }, + "end": { + "$date": "2021-09-10T02:24:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40398cb2-c1be-4770-b8a4-f21e4b7b4503", + "start": { + "$date": "2021-09-10T02:24:13.000Z" + }, + "end": { + "$date": "2021-09-10T02:26:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e3e7e93-5994-4c33-a50c-489b2b93fad7", + "start": { + "$date": "2021-09-10T02:26:13.000Z" + }, + "end": { + "$date": "2021-09-10T02:28:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b687f7bb-7601-42d1-9501-c9af4762cb0f", + "start": { + "$date": "2021-09-10T02:28:13.000Z" + }, + "end": { + "$date": "2021-09-10T03:58:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d23ff8fc-23e7-4c0a-a509-bf4bb34af3fc", + "start": { + "$date": "2021-09-10T03:58:13.000Z" + }, + "end": { + "$date": "2021-09-10T04:00:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb768d28-c08c-4929-8ea8-dd90241cc439", + "start": { + "$date": "2021-09-10T04:00:13.000Z" + }, + "end": { + "$date": "2021-09-10T14:01:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be5dd046-3e14-4898-8330-f953a9ab0cac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T00:25:38.000Z" + }, + "end": { + "$date": "2021-09-10T00:45:38.000Z" + }, + "events": [ + { + "uuid": "b2d5ab91-7fe3-4aaa-a2a3-4d6b15a251d8", + "start": { + "$date": "2021-09-10T00:25:38.000Z" + }, + "end": { + "$date": "2021-09-10T00:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69de8c85-f02a-406f-a935-72802f896b75", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T00:48:39.000Z" + }, + "end": { + "$date": "2021-09-10T01:04:43.000Z" + }, + "events": [ + { + "uuid": "3a55ce03-cd03-4b9d-ab2c-f26daff99fb7", + "start": { + "$date": "2021-09-10T00:48:39.000Z" + }, + "end": { + "$date": "2021-09-10T01:04:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "965f29b0-0a6f-41dd-adf4-a84f01bac2f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T01:05:54.000Z" + }, + "end": { + "$date": "2021-09-10T01:54:50.000Z" + }, + "events": [ + { + "uuid": "2246f0f0-d311-4df7-8c70-e562be4fac7e", + "start": { + "$date": "2021-09-10T01:05:54.000Z" + }, + "end": { + "$date": "2021-09-10T01:54:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "39aa9e2f-d2e7-4f6b-aca0-5fbafbb56288", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-10T01:22:15.000Z" + }, + "end": { + "$date": "2021-09-10T03:45:28.000Z" + }, + "events": [ + { + "uuid": "6f32d1a5-ad60-480c-9dcd-15e828f82ea9", + "start": { + "$date": "2021-09-10T01:22:15.000Z" + }, + "end": { + "$date": "2021-09-10T03:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "5b1b75e0-140d-48e6-a69c-f8b6dfc90f75", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-10T01:26:21.000Z" + }, + "end": { + "$date": "2021-09-10T06:37:39.000Z" + }, + "events": [ + { + "uuid": "f89f5a2b-891b-464b-a9a1-4dec23d175da", + "start": { + "$date": "2021-09-10T01:26:21.000Z" + }, + "end": { + "$date": "2021-09-10T06:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "d4a803b6-9d28-42e6-b03f-2e63b3b82c29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T02:12:48.000Z" + }, + "end": { + "$date": "2021-09-10T02:14:28.000Z" + }, + "events": [ + { + "uuid": "6d754701-2409-4f78-9b3e-bd689f81c440", + "start": { + "$date": "2021-09-10T02:12:48.000Z" + }, + "end": { + "$date": "2021-09-10T02:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", + "uuid": "157ae74c-0478-42da-b0f2-bc3173cb4bff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T02:38:26.000Z" + }, + "end": { + "$date": "2021-09-10T02:47:56.000Z" + }, + "events": [ + { + "uuid": "66e6f5bb-bf37-4090-94b4-206e3d059212", + "start": { + "$date": "2021-09-10T02:38:26.000Z" + }, + "end": { + "$date": "2021-09-10T02:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd2fdd66-c618-41de-b8f6-345d3716470b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T02:51:52.000Z" + }, + "end": { + "$date": "2021-09-10T03:12:07.000Z" + }, + "events": [ + { + "uuid": "389a5eb3-b440-4394-8e80-2389126f5c1b", + "start": { + "$date": "2021-09-10T02:51:52.000Z" + }, + "end": { + "$date": "2021-09-10T03:12:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "62c1ecab-946e-42a5-b345-a9c96269849b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-10T02:50:01.000Z" + }, + "end": { + "$date": "2021-09-10T02:52:57.000Z" + }, + "events": [ + { + "uuid": "4f8e7fa1-e9ee-4b6e-b0da-dfb3e905a4bd", + "start": { + "$date": "2021-09-10T02:50:01.000Z" + }, + "end": { + "$date": "2021-09-10T02:52:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09445da7-b2b4-4012-8277-5806e17e83ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T03:16:43.000Z" + }, + "end": { + "$date": "2021-09-10T03:35:02.000Z" + }, + "events": [ + { + "uuid": "8a33e9fd-81bd-4f20-a91b-a10fe735d204", + "start": { + "$date": "2021-09-10T03:16:43.000Z" + }, + "end": { + "$date": "2021-09-10T03:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "81b6b3e8-e7a4-409a-b3c6-c99976d4d28d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-10T03:23:45.000Z" + }, + "end": { + "$date": "2021-09-10T03:34:15.000Z" + }, + "events": [ + { + "uuid": "a6c89219-cb40-4bd8-ba22-5e97950a6350", + "start": { + "$date": "2021-09-10T03:23:45.000Z" + }, + "end": { + "$date": "2021-09-10T03:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "56cc30f7-a20b-45ea-af1c-95cb0caf8a2d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-10T03:33:45.000Z" + }, + "end": { + "$date": "2021-09-10T04:20:33.000Z" + }, + "events": [ + { + "uuid": "52fbd27f-c514-4405-a3ec-b279c26e4bc1", + "start": { + "$date": "2021-09-10T03:33:45.000Z" + }, + "end": { + "$date": "2021-09-10T04:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "174dc3eb-1b1f-4f3e-ba45-28049adc9279", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-10T03:53:10.000Z" + }, + "end": { + "$date": "2021-09-10T04:18:38.000Z" + }, + "events": [ + { + "uuid": "34fc1f62-7213-4e2e-bcd8-90b9899aff17", + "start": { + "$date": "2021-09-10T03:53:10.000Z" + }, + "end": { + "$date": "2021-09-10T04:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9c44fcea-50fb-427e-9602-d1204415e638", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-10T04:03:36.000Z" + }, + "end": { + "$date": "2021-09-10T04:24:38.000Z" + }, + "events": [ + { + "uuid": "fbaa6d36-1aa2-47d2-b6c7-6713954ff831", + "start": { + "$date": "2021-09-10T04:03:36.000Z" + }, + "end": { + "$date": "2021-09-10T04:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd9c895f-8cd2-4c37-b1f8-d6ed83880e43", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-10T04:24:18.000Z" + }, + "end": { + "$date": "2021-09-10T04:42:05.000Z" + }, + "events": [ + { + "uuid": "e3c13f10-155d-493e-9e35-8023ef8abdf8", + "start": { + "$date": "2021-09-10T04:24:18.000Z" + }, + "end": { + "$date": "2021-09-10T04:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15296106-27ed-48fe-a578-ed6a4cc7cc82", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-10T04:47:15.000Z" + }, + "end": { + "$date": "2021-09-10T05:12:08.000Z" + }, + "events": [ + { + "uuid": "cce4683b-8b2a-4a60-b957-77ddc945233a", + "start": { + "$date": "2021-09-10T04:47:15.000Z" + }, + "end": { + "$date": "2021-09-10T05:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78f56b12-26d4-4764-9ea3-ce512b1d26a2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-10T05:16:43.000Z" + }, + "end": { + "$date": "2021-09-10T05:46:47.000Z" + }, + "events": [ + { + "uuid": "17c14e53-a97b-4b88-a5f4-a9761779c285", + "start": { + "$date": "2021-09-10T05:16:43.000Z" + }, + "end": { + "$date": "2021-09-10T05:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40c716c6-e0b5-47e7-8457-c15d9440cffe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-10T05:58:13.000Z" + }, + "end": { + "$date": "2021-09-10T06:27:37.000Z" + }, + "events": [ + { + "uuid": "af14b10c-0415-457e-9449-07d903f8e7a7", + "start": { + "$date": "2021-09-10T05:58:13.000Z" + }, + "end": { + "$date": "2021-09-10T06:27:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "577aa4b5-07fc-4d41-a784-361f98a15b46", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-10T06:12:54.000Z" + }, + "end": { + "$date": "2021-09-10T06:48:57.000Z" + }, + "events": [ + { + "uuid": "06da4443-72be-4d79-a3d8-8b5b3304e061", + "start": { + "$date": "2021-09-10T06:12:54.000Z" + }, + "end": { + "$date": "2021-09-10T06:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e39f86bf-655d-49da-8115-b431b8c31e3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-10T07:03:08.000Z" + }, + "end": { + "$date": "2021-09-10T07:25:25.000Z" + }, + "events": [ + { + "uuid": "292f5526-4bf6-4947-a8be-297134ec8c8f", + "start": { + "$date": "2021-09-10T07:03:08.000Z" + }, + "end": { + "$date": "2021-09-10T07:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "d76f6a4f-3653-4e42-9d83-454d2685e5b0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-10T07:09:07.000Z" + }, + "end": { + "$date": "2021-09-10T08:41:07.000Z" + }, + "events": [ + { + "uuid": "1b05d05b-dd0d-49c8-92bc-d16469412f37", + "start": { + "$date": "2021-09-10T07:09:07.000Z" + }, + "end": { + "$date": "2021-09-10T08:41:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df9d60a1-3495-47da-bea4-73b2dfa335d7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T15:26:05.000Z" + }, + "end": { + "$date": "2021-09-10T15:47:49.000Z" + }, + "events": [ + { + "uuid": "ae468ad6-a0d2-421a-b7ee-42e8e426e3f7", + "start": { + "$date": "2021-09-10T15:26:05.000Z" + }, + "end": { + "$date": "2021-09-10T15:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "68f213ab-caf8-4bf2-a76d-7979fb4cc656", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T15:48:30.000Z" + }, + "end": { + "$date": "2021-09-10T16:37:37.000Z" + }, + "events": [ + { + "uuid": "9724e070-d807-472f-aa34-635d0473a866", + "start": { + "$date": "2021-09-10T15:48:30.000Z" + }, + "end": { + "$date": "2021-09-10T16:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "uuid": "523ba50e-ae96-466d-b17a-8d7c9b7af6e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-10T18:51:30.000Z" + }, + "end": { + "$date": "2021-09-10T18:53:55.000Z" + }, + "events": [ + { + "uuid": "01472849-3104-4591-9e95-c7ba0e2f66cd", + "start": { + "$date": "2021-09-10T18:51:30.000Z" + }, + "end": { + "$date": "2021-09-10T18:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "d3f094d3-548b-4f93-8ceb-16f04e51ea1d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-10T19:44:14.000Z" + }, + "end": { + "$date": "2021-09-11T01:36:43.000Z" + }, + "events": [ + { + "uuid": "c19e9036-1b15-4044-bdf3-cf689b73233a", + "start": { + "$date": "2021-09-10T19:44:14.000Z" + }, + "end": { + "$date": "2021-09-11T01:36:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81f517b5-0b8c-4aa6-af1a-1ff58230ae4f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T20:06:59.000Z" + }, + "end": { + "$date": "2021-09-10T20:14:52.000Z" + }, + "events": [ + { + "uuid": "49abb3e2-41f3-469f-a18e-96a90a00a0a4", + "start": { + "$date": "2021-09-10T20:06:59.000Z" + }, + "end": { + "$date": "2021-09-10T20:14:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "7b09ad8a-a732-4239-9afc-bc395871eef0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-10T21:22:10.000Z" + }, + "end": { + "$date": "2021-09-10T21:53:02.000Z" + }, + "events": [ + { + "uuid": "5b8a6d38-77a6-40e2-9010-ca48c7835266", + "start": { + "$date": "2021-09-10T21:22:10.000Z" + }, + "end": { + "$date": "2021-09-10T21:53:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "275b151d-edd4-46b0-8afd-edd58951cbc4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-10T22:17:38.000Z" + }, + "end": { + "$date": "2021-09-10T22:53:09.000Z" + }, + "events": [ + { + "uuid": "848dfa48-63d8-4d67-a333-d88ccace03fb", + "start": { + "$date": "2021-09-10T22:17:38.000Z" + }, + "end": { + "$date": "2021-09-10T22:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "53c84b55-e816-4c3d-a0fc-066203f3d6f6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-10T22:50:07.000Z" + }, + "end": { + "$date": "2021-09-10T23:12:38.000Z" + }, + "events": [ + { + "uuid": "1f63401a-e8a9-4a64-ab7d-f834fe925c62", + "start": { + "$date": "2021-09-10T22:50:07.000Z" + }, + "end": { + "$date": "2021-09-10T23:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "aca9827d-f5f4-4de2-ab42-144d2e36e11c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-10T23:32:38.000Z" + }, + "end": { + "$date": "2021-09-11T07:55:25.000Z" + }, + "events": [ + { + "uuid": "c5df1906-1c3d-483f-87f1-988bd38c0f81", + "start": { + "$date": "2021-09-10T23:32:38.000Z" + }, + "end": { + "$date": "2021-09-11T00:09:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "776a5171-16a7-42d0-80f0-5420b786cf87", + "start": { + "$date": "2021-09-11T00:09:38.000Z" + }, + "end": { + "$date": "2021-09-11T00:11:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1c100f4-9cf6-42c3-b1bd-9904c4a014cc", + "start": { + "$date": "2021-09-11T00:11:38.000Z" + }, + "end": { + "$date": "2021-09-11T01:06:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a37b28b-a7f6-4cde-96ec-c5d40f0ad565", + "start": { + "$date": "2021-09-11T01:06:38.000Z" + }, + "end": { + "$date": "2021-09-11T01:10:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9c4f9862-fc95-41f1-8926-37e11ecf51f0", + "start": { + "$date": "2021-09-11T01:10:38.000Z" + }, + "end": { + "$date": "2021-09-11T06:33:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff91f299-a8c5-4bdc-a34e-6f50b1178ae7", + "start": { + "$date": "2021-09-11T06:33:38.000Z" + }, + "end": { + "$date": "2021-09-11T07:55:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "79eef4ec-4ef0-45f9-8db5-7f006cdcadfc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T01:19:06.000Z" + }, + "end": { + "$date": "2021-09-11T02:30:33.000Z" + }, + "events": [ + { + "uuid": "f5871134-e158-4a5a-abce-642e0201dec9", + "start": { + "$date": "2021-09-11T01:19:06.000Z" + }, + "end": { + "$date": "2021-09-11T02:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13aa6968-2917-410d-a9bf-50e9b94f217e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T02:07:57.000Z" + }, + "end": { + "$date": "2021-09-11T02:40:54.000Z" + }, + "events": [ + { + "uuid": "85a5c842-0305-43fe-9299-35550233bf4e", + "start": { + "$date": "2021-09-11T02:07:57.000Z" + }, + "end": { + "$date": "2021-09-11T02:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "386e3466-c162-4220-8830-8a324b5f5d43", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-11T02:10:58.000Z" + }, + "end": { + "$date": "2021-09-11T02:13:54.000Z" + }, + "events": [ + { + "uuid": "c17b8fc7-04e7-4880-b882-d509c5b79b62", + "start": { + "$date": "2021-09-11T02:10:58.000Z" + }, + "end": { + "$date": "2021-09-11T02:13:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "30770a1a-ee0f-44f6-b544-42694c77aaed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-11T02:37:07.000Z" + }, + "end": { + "$date": "2021-09-11T03:56:52.000Z" + }, + "events": [ + { + "uuid": "dc19a196-0f66-4a82-b9e2-0a18159c3758", + "start": { + "$date": "2021-09-11T02:37:07.000Z" + }, + "end": { + "$date": "2021-09-11T03:56:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb1d4f64-538d-4a1c-810a-a6ae65054c20", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T02:51:45.000Z" + }, + "end": { + "$date": "2021-09-11T03:18:05.000Z" + }, + "events": [ + { + "uuid": "791dbf0c-ea7b-44ea-80a0-0d1fdc2ee04e", + "start": { + "$date": "2021-09-11T02:51:45.000Z" + }, + "end": { + "$date": "2021-09-11T03:18:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "0b2046e8-7d92-46d7-804c-88a6922b6d82", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T02:51:17.000Z" + }, + "end": { + "$date": "2021-09-11T03:04:53.000Z" + }, + "events": [ + { + "uuid": "47d55fda-f4e3-40e7-b649-855a7282e637", + "start": { + "$date": "2021-09-11T02:51:17.000Z" + }, + "end": { + "$date": "2021-09-11T03:04:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "d1e88435-3831-47ac-b64b-847d09524e7c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-11T02:52:13.000Z" + }, + "end": { + "$date": "2021-09-11T03:57:11.000Z" + }, + "events": [ + { + "uuid": "55089fd6-53c9-47c9-93b3-af75fa8326c8", + "start": { + "$date": "2021-09-11T02:52:13.000Z" + }, + "end": { + "$date": "2021-09-11T03:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "31d2fbab-ca9a-4ee7-9a66-5003749faab4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-11T02:58:47.000Z" + }, + "end": { + "$date": "2021-09-11T06:32:40.000Z" + }, + "events": [ + { + "uuid": "ca82c87e-9c6a-4ded-9a3b-8f0cb3d004fe", + "start": { + "$date": "2021-09-11T02:58:47.000Z" + }, + "end": { + "$date": "2021-09-11T06:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "4cb2388b-0d53-4cfc-8c5b-fb0989703c91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T03:05:18.000Z" + }, + "end": { + "$date": "2021-09-11T03:14:18.000Z" + }, + "events": [ + { + "uuid": "07e41d52-5339-44e4-bc45-3fb8b5b1b547", + "start": { + "$date": "2021-09-11T03:05:18.000Z" + }, + "end": { + "$date": "2021-09-11T03:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa2c3495-f34b-4433-b70c-763359a8aafc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T03:23:30.000Z" + }, + "end": { + "$date": "2021-09-11T03:51:55.000Z" + }, + "events": [ + { + "uuid": "8752a6a4-1bc7-47e5-bb89-ca5a41787582", + "start": { + "$date": "2021-09-11T03:23:30.000Z" + }, + "end": { + "$date": "2021-09-11T03:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a79df01-68d0-46fc-a1ce-fc764d01aef4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T03:23:34.000Z" + }, + "end": { + "$date": "2021-09-11T03:52:00.000Z" + }, + "events": [ + { + "uuid": "dcc595be-eff4-475a-9ab6-25b088681451", + "start": { + "$date": "2021-09-11T03:23:34.000Z" + }, + "end": { + "$date": "2021-09-11T03:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a39fa6ed-2dd2-4324-8566-e427bee7eeb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T03:58:26.000Z" + }, + "end": { + "$date": "2021-09-11T04:24:12.000Z" + }, + "events": [ + { + "uuid": "98a71784-780f-43c4-857c-a721bd761974", + "start": { + "$date": "2021-09-11T03:58:26.000Z" + }, + "end": { + "$date": "2021-09-11T04:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19e9e3e8-79c5-4522-a6f5-1d6e2951cd2f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-11T03:57:22.000Z" + }, + "end": { + "$date": "2021-09-11T04:24:08.000Z" + }, + "events": [ + { + "uuid": "aed99766-ecd0-4ba6-b291-7d0e19ec6d4e", + "start": { + "$date": "2021-09-11T03:57:22.000Z" + }, + "end": { + "$date": "2021-09-11T04:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "036ae1ce-3cc5-4e53-8228-c42ceb082d01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-11T04:00:05.000Z" + }, + "end": { + "$date": "2021-09-11T06:32:43.000Z" + }, + "events": [ + { + "uuid": "ebbf2121-b8b7-41a0-95ba-ac797eaa0db2", + "start": { + "$date": "2021-09-11T04:00:05.000Z" + }, + "end": { + "$date": "2021-09-11T06:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1800ba8b-c196-4cd4-a4ac-2793b99bd656", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T04:34:08.000Z" + }, + "end": { + "$date": "2021-09-11T05:03:14.000Z" + }, + "events": [ + { + "uuid": "52f3fee5-d0c3-48ea-b029-a4e4128865ce", + "start": { + "$date": "2021-09-11T04:34:08.000Z" + }, + "end": { + "$date": "2021-09-11T05:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ea06e1d-a570-45e7-85a3-ec80b61119a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-11T04:33:14.000Z" + }, + "end": { + "$date": "2021-09-11T05:03:14.000Z" + }, + "events": [ + { + "uuid": "ffcb4504-3bbc-42a0-8585-d6558e5fdd25", + "start": { + "$date": "2021-09-11T04:33:14.000Z" + }, + "end": { + "$date": "2021-09-11T05:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d84c3083-00bd-4e6d-a150-632224704f03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T05:10:30.000Z" + }, + "end": { + "$date": "2021-09-11T05:30:33.000Z" + }, + "events": [ + { + "uuid": "f81227b5-4e70-4498-8467-3d1e7b0ef3a6", + "start": { + "$date": "2021-09-11T05:10:30.000Z" + }, + "end": { + "$date": "2021-09-11T05:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "4db9d295-6fdf-4a96-b364-21dc0cb41ba3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T05:46:04.000Z" + }, + "end": { + "$date": "2021-09-11T06:35:10.000Z" + }, + "events": [ + { + "uuid": "cbfb620a-f746-4520-bf49-08e2e53172b6", + "start": { + "$date": "2021-09-11T05:46:04.000Z" + }, + "end": { + "$date": "2021-09-11T06:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "3f102c7f-b5b3-4202-b8ad-e9e1f0ba7f1e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-11T07:24:20.000Z" + }, + "end": { + "$date": "2021-09-11T08:06:48.000Z" + }, + "events": [ + { + "uuid": "1376b744-df17-4db7-a9c4-342f675897ce", + "start": { + "$date": "2021-09-11T07:24:20.000Z" + }, + "end": { + "$date": "2021-09-11T08:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09498162-3bb7-4fd6-8e39-340526aa6da3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T14:52:54.000Z" + }, + "end": { + "$date": "2021-09-11T15:07:48.000Z" + }, + "events": [ + { + "uuid": "70641cba-febd-44da-88a2-8671e10dc137", + "start": { + "$date": "2021-09-11T14:52:54.000Z" + }, + "end": { + "$date": "2021-09-11T15:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc1ac6eb-2693-4095-8c73-5dfb3efe0bad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T15:10:04.000Z" + }, + "end": { + "$date": "2021-09-11T15:38:04.000Z" + }, + "events": [ + { + "uuid": "60185d2e-cb96-4806-93c6-c4a36f774cd6", + "start": { + "$date": "2021-09-11T15:10:04.000Z" + }, + "end": { + "$date": "2021-09-11T15:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7ce81e94-9952-4257-98db-87d5c1a93f5c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T16:45:19.000Z" + }, + "end": { + "$date": "2021-09-11T17:22:56.000Z" + }, + "events": [ + { + "uuid": "d6a51a2c-4b9d-4166-8caf-9755a733ebc9", + "start": { + "$date": "2021-09-11T16:45:19.000Z" + }, + "end": { + "$date": "2021-09-11T17:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1bbe531d-0cfc-48e7-bd64-f1f70734ff46", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-11T16:59:39.000Z" + }, + "end": { + "$date": "2021-09-11T21:30:12.000Z" + }, + "events": [ + { + "uuid": "ff3d9bd4-7cb3-4792-a64d-a9b756054053", + "start": { + "$date": "2021-09-11T16:59:39.000Z" + }, + "end": { + "$date": "2021-09-11T17:22:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b788d95-3874-483e-9555-3364ad5b8f4d", + "start": { + "$date": "2021-09-11T17:22:39.000Z" + }, + "end": { + "$date": "2021-09-11T17:34:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a41ee9d-19f2-49ee-a5ab-8093c3edf5a5", + "start": { + "$date": "2021-09-11T17:34:39.000Z" + }, + "end": { + "$date": "2021-09-11T21:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e95cc834-b1f5-434c-b6e3-c0b3cb27b32e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T19:21:38.000Z" + }, + "end": { + "$date": "2021-09-11T19:33:46.000Z" + }, + "events": [ + { + "uuid": "927d9f8a-e51d-42a1-a83e-1993903f1cf1", + "start": { + "$date": "2021-09-11T19:21:38.000Z" + }, + "end": { + "$date": "2021-09-11T19:33:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a69bb3a-a839-4daa-978b-a2fffa90a5c5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T19:48:28.000Z" + }, + "end": { + "$date": "2021-09-11T20:16:57.000Z" + }, + "events": [ + { + "uuid": "03c22087-9d54-48de-bbb8-d2fab56bdbe9", + "start": { + "$date": "2021-09-11T19:48:28.000Z" + }, + "end": { + "$date": "2021-09-11T20:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c44ef90-4ff2-4233-a797-96b71a6756f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T20:25:09.000Z" + }, + "end": { + "$date": "2021-09-11T20:47:59.000Z" + }, + "events": [ + { + "uuid": "e5fd07a3-dd13-4f94-b1c3-f7ba60fdcc9c", + "start": { + "$date": "2021-09-11T20:25:09.000Z" + }, + "end": { + "$date": "2021-09-11T20:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ac0237de-a950-49c1-9eff-72f59afd5492", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-11T20:25:49.000Z" + }, + "end": { + "$date": "2021-09-11T22:51:16.000Z" + }, + "events": [ + { + "uuid": "4a5d442e-24fd-4ff1-9598-03809e8d15ca", + "start": { + "$date": "2021-09-11T20:25:49.000Z" + }, + "end": { + "$date": "2021-09-11T20:42:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "84ea3d00-71cd-48bb-b7fb-b7d58cfbcdc4", + "start": { + "$date": "2021-09-11T20:42:49.000Z" + }, + "end": { + "$date": "2021-09-11T20:43:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "128dd62d-f5ce-43f6-a4ec-96bf338197f3", + "start": { + "$date": "2021-09-11T20:43:49.000Z" + }, + "end": { + "$date": "2021-09-11T22:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a73aa682-8346-435f-ba04-b7bcbe2a2d08", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-11T20:39:28.000Z" + }, + "end": { + "$date": "2021-09-11T21:26:40.000Z" + }, + "events": [ + { + "uuid": "1755bb23-db62-40b2-a27f-1c24a1dc52fd", + "start": { + "$date": "2021-09-11T20:39:28.000Z" + }, + "end": { + "$date": "2021-09-11T21:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdebf75a-22b5-40f6-bed3-0e106d65e940", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T20:49:34.000Z" + }, + "end": { + "$date": "2021-09-11T21:10:54.000Z" + }, + "events": [ + { + "uuid": "a2dd6c4b-2fce-49bd-9fec-cad943565d72", + "start": { + "$date": "2021-09-11T20:49:34.000Z" + }, + "end": { + "$date": "2021-09-11T21:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8bc2de7c-1511-4080-8ab0-fdc00a61c331", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-11T21:32:57.000Z" + }, + "end": { + "$date": "2021-09-12T00:04:03.000Z" + }, + "events": [ + { + "uuid": "a5bb5bab-e34f-41b4-bc54-bc5857fa5fec", + "start": { + "$date": "2021-09-11T21:32:57.000Z" + }, + "end": { + "$date": "2021-09-11T21:57:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "517b0dbd-c679-498b-964d-0e88fa94c898", + "start": { + "$date": "2021-09-11T21:57:57.000Z" + }, + "end": { + "$date": "2021-09-11T21:59:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c0b67bc-baee-41c4-961f-9b7ec735bc37", + "start": { + "$date": "2021-09-11T21:59:57.000Z" + }, + "end": { + "$date": "2021-09-11T23:01:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af46673f-a323-4ee3-b784-1370856189f6", + "start": { + "$date": "2021-09-11T23:01:57.000Z" + }, + "end": { + "$date": "2021-09-11T23:06:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45c9df1d-9f2c-4c6a-b496-99e5e6076878", + "start": { + "$date": "2021-09-11T23:06:57.000Z" + }, + "end": { + "$date": "2021-09-11T23:16:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7aa5760b-0f32-4f99-bc8e-e1e622fde91d", + "start": { + "$date": "2021-09-11T23:16:57.000Z" + }, + "end": { + "$date": "2021-09-11T23:40:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "71bf0d8e-2f7c-412b-ad2d-f380159958d5", + "start": { + "$date": "2021-09-11T23:40:57.000Z" + }, + "end": { + "$date": "2021-09-12T00:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "75621a7a-1166-4dc7-97fb-aedf3560a1dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T22:01:41.000Z" + }, + "end": { + "$date": "2021-09-11T22:11:01.000Z" + }, + "events": [ + { + "uuid": "85d848f1-2c4d-4749-a5cf-1fdc4405492e", + "start": { + "$date": "2021-09-11T22:01:41.000Z" + }, + "end": { + "$date": "2021-09-11T22:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65c22b4a-d2f2-4c8d-aa23-e44a9951055c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T22:21:12.000Z" + }, + "end": { + "$date": "2021-09-11T22:47:26.000Z" + }, + "events": [ + { + "uuid": "abd582e8-8cdd-4022-98c6-44af9cbd3110", + "start": { + "$date": "2021-09-11T22:21:12.000Z" + }, + "end": { + "$date": "2021-09-11T22:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18233e0d-3be4-456a-aab9-017f51f78367", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-11T22:54:49.000Z" + }, + "end": { + "$date": "2021-09-11T23:15:57.000Z" + }, + "events": [ + { + "uuid": "52bd9411-bf98-4964-b052-354f354d17b7", + "start": { + "$date": "2021-09-11T22:54:49.000Z" + }, + "end": { + "$date": "2021-09-11T23:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f04a5389-d3c7-4c62-adb1-b9741e0e546a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-11T22:51:30.000Z" + }, + "end": { + "$date": "2021-09-11T23:40:36.000Z" + }, + "events": [ + { + "uuid": "2210d61d-b62f-4d28-a4aa-26f81266b048", + "start": { + "$date": "2021-09-11T22:51:30.000Z" + }, + "end": { + "$date": "2021-09-11T23:40:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6b37f054-4789-4dba-95bc-859291fc8c7f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-11T23:48:41.000Z" + }, + "end": { + "$date": "2021-09-12T00:43:42.000Z" + }, + "events": [ + { + "uuid": "707d7f8b-ace7-4d82-867a-0d9354c57a26", + "start": { + "$date": "2021-09-11T23:48:41.000Z" + }, + "end": { + "$date": "2021-09-12T00:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f1657ad1-537b-4ef4-a866-68957d069e78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-12T00:04:23.000Z" + }, + "end": { + "$date": "2021-09-12T07:02:25.000Z" + }, + "events": [ + { + "uuid": "5a0c9ffc-8926-405d-a3b6-31efe311a390", + "start": { + "$date": "2021-09-12T00:04:23.000Z" + }, + "end": { + "$date": "2021-09-12T07:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f125bc08-5936-4053-a711-fdf3c45b278d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T01:42:54.000Z" + }, + "end": { + "$date": "2021-09-12T01:43:24.000Z" + }, + "events": [ + { + "uuid": "4330b80d-36e1-443f-b144-ec3f14d4776f", + "start": { + "$date": "2021-09-12T01:42:54.000Z" + }, + "end": { + "$date": "2021-09-12T01:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "1a883a11-bffa-47be-89d6-27f25dc3218b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T01:29:18.000Z" + }, + "end": { + "$date": "2021-09-12T02:17:24.000Z" + }, + "events": [ + { + "uuid": "a053cad5-4186-47cd-88d6-8564300c9822", + "start": { + "$date": "2021-09-12T01:29:18.000Z" + }, + "end": { + "$date": "2021-09-12T02:17:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "cb7d25cf-0b87-4810-b661-aacd5211aae1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-12T01:53:41.000Z" + }, + "end": { + "$date": "2021-09-12T02:16:17.000Z" + }, + "events": [ + { + "uuid": "b73b0b3a-a090-4c5a-9771-eca28fc7e49f", + "start": { + "$date": "2021-09-12T01:53:41.000Z" + }, + "end": { + "$date": "2021-09-12T02:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e7972949-80b0-4ba6-8375-9964c7003c7a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T02:56:30.000Z" + }, + "end": { + "$date": "2021-09-12T03:02:21.000Z" + }, + "events": [ + { + "uuid": "9ed772c7-1a8d-43f8-bf71-2fd0b72a0acd", + "start": { + "$date": "2021-09-12T02:56:30.000Z" + }, + "end": { + "$date": "2021-09-12T03:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4e0d3c97-05df-4726-9852-320d30e9f1d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T03:50:52.000Z" + }, + "end": { + "$date": "2021-09-12T04:54:13.000Z" + }, + "events": [ + { + "uuid": "d42351e4-742a-4264-900e-0a7ec429728b", + "start": { + "$date": "2021-09-12T03:50:52.000Z" + }, + "end": { + "$date": "2021-09-12T04:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72aebb10-7ff0-4348-a7d0-6123bfcf9aa5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T03:21:24.000Z" + }, + "end": { + "$date": "2021-09-12T03:36:44.000Z" + }, + "events": [ + { + "uuid": "2a0ecddd-c1b6-4dab-8a6a-7a5a54ad09ff", + "start": { + "$date": "2021-09-12T03:21:24.000Z" + }, + "end": { + "$date": "2021-09-12T03:36:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "c7779621-ca40-4264-b2b0-baaca27ac8ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-12T03:35:51.000Z" + }, + "end": { + "$date": "2021-09-12T03:59:56.000Z" + }, + "events": [ + { + "uuid": "8533933a-e23b-4e48-a878-bf5525826d82", + "start": { + "$date": "2021-09-12T03:35:51.000Z" + }, + "end": { + "$date": "2021-09-12T03:59:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cebf687d-7595-4065-924a-c088b1252125", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T04:25:06.000Z" + }, + "end": { + "$date": "2021-09-12T04:29:52.000Z" + }, + "events": [ + { + "uuid": "cff52c27-c51b-43eb-9ae4-549a0117a75d", + "start": { + "$date": "2021-09-12T04:25:06.000Z" + }, + "end": { + "$date": "2021-09-12T04:29:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "02a162e4-0472-4740-8600-cfe8eabe11f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T04:30:06.000Z" + }, + "end": { + "$date": "2021-09-12T05:56:18.000Z" + }, + "events": [ + { + "uuid": "5fbe903b-97cb-442e-bdae-accd7a5edf78", + "start": { + "$date": "2021-09-12T04:30:06.000Z" + }, + "end": { + "$date": "2021-09-12T05:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "685651be-412c-452d-ad46-ea8157b31845", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T04:55:58.000Z" + }, + "end": { + "$date": "2021-09-12T05:56:19.000Z" + }, + "events": [ + { + "uuid": "7c2fa4de-c355-4b03-8d6a-e0ccd16d6a7a", + "start": { + "$date": "2021-09-12T04:55:58.000Z" + }, + "end": { + "$date": "2021-09-12T05:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fe07e8e-a696-4b36-ac7e-1e77c841d890", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-12T05:04:55.000Z" + }, + "end": { + "$date": "2021-09-12T05:26:28.000Z" + }, + "events": [ + { + "uuid": "b8d52315-8485-49c8-9e88-e1ac9cd2553d", + "start": { + "$date": "2021-09-12T05:04:55.000Z" + }, + "end": { + "$date": "2021-09-12T05:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1bfa2cc-2f46-48a2-846c-a5e5edf99003", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-12T06:53:55.000Z" + }, + "end": { + "$date": "2021-09-12T07:00:20.000Z" + }, + "events": [ + { + "uuid": "e2d52464-ab71-4469-bc45-f575435b1a5e", + "start": { + "$date": "2021-09-12T06:53:55.000Z" + }, + "end": { + "$date": "2021-09-12T07:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0d86e9e5-3612-4e14-8e91-892d4e68b6ab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T06:07:29.000Z" + }, + "end": { + "$date": "2021-09-12T06:07:34.000Z" + }, + "events": [ + { + "uuid": "f0d63794-d002-496a-86e0-065019f98fd6", + "start": { + "$date": "2021-09-12T06:07:29.000Z" + }, + "end": { + "$date": "2021-09-12T06:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f1f79cef-146a-48fe-80cb-bf4aa780c48e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T06:19:11.000Z" + }, + "end": { + "$date": "2021-09-12T07:57:11.000Z" + }, + "events": [ + { + "uuid": "497e5377-19db-4436-a029-5018c7c09bc9", + "start": { + "$date": "2021-09-12T06:19:11.000Z" + }, + "end": { + "$date": "2021-09-12T07:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9ebfd34-4b04-481b-842a-c80c80b47405", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-12T07:06:46.000Z" + }, + "end": { + "$date": "2021-09-12T07:19:52.000Z" + }, + "events": [ + { + "uuid": "2b0f99ec-205a-4062-a6ad-8ea16bf1b575", + "start": { + "$date": "2021-09-12T07:06:46.000Z" + }, + "end": { + "$date": "2021-09-12T07:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39966aa6-4ef4-48d7-8c4c-12ae2482f0a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-12T07:33:53.000Z" + }, + "end": { + "$date": "2021-09-12T08:07:04.000Z" + }, + "events": [ + { + "uuid": "2f933126-2fa2-4ad7-8c11-c28116b33893", + "start": { + "$date": "2021-09-12T07:33:53.000Z" + }, + "end": { + "$date": "2021-09-12T08:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b6e1a82-efca-4860-a6f4-d7ddc42f716b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-12T08:12:54.000Z" + }, + "end": { + "$date": "2021-09-12T08:33:15.000Z" + }, + "events": [ + { + "uuid": "f8bfe187-7097-4b79-8249-6e03f355790e", + "start": { + "$date": "2021-09-12T08:12:54.000Z" + }, + "end": { + "$date": "2021-09-12T08:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76e23b41-2e9b-4783-9158-22cd5117e86f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-12T08:34:40.000Z" + }, + "end": { + "$date": "2021-09-12T08:36:51.000Z" + }, + "events": [ + { + "uuid": "3eec854c-6edf-4a84-bd41-efc077093e2c", + "start": { + "$date": "2021-09-12T08:34:40.000Z" + }, + "end": { + "$date": "2021-09-12T08:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed6a411a-cd92-48f7-b51a-cf0804770fae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T15:36:33.000Z" + }, + "end": { + "$date": "2021-09-12T18:33:49.000Z" + }, + "events": [ + { + "uuid": "1800408b-344c-42a7-ad87-324be8724fee", + "start": { + "$date": "2021-09-12T15:36:33.000Z" + }, + "end": { + "$date": "2021-09-12T17:26:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a019417-3fd9-4b96-8c5e-ac9dfd980de2", + "start": { + "$date": "2021-09-12T17:26:33.000Z" + }, + "end": { + "$date": "2021-09-12T17:28:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ab4ca09b-fbf9-47c5-8c23-41cbf7041b24", + "start": { + "$date": "2021-09-12T17:28:33.000Z" + }, + "end": { + "$date": "2021-09-12T18:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faf16f95-8ba4-4310-9ddf-636550333024", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T15:57:45.000Z" + }, + "end": { + "$date": "2021-09-12T16:27:55.000Z" + }, + "events": [ + { + "uuid": "02dbec5e-e65f-4414-9f0c-143422c2e2e0", + "start": { + "$date": "2021-09-12T15:57:45.000Z" + }, + "end": { + "$date": "2021-09-12T16:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "769fde84-eccb-49e6-91a9-e05937456228", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T16:46:21.000Z" + }, + "end": { + "$date": "2021-09-12T17:16:41.000Z" + }, + "events": [ + { + "uuid": "cc360278-39a7-4edc-8b3c-2c45b279bc91", + "start": { + "$date": "2021-09-12T16:46:21.000Z" + }, + "end": { + "$date": "2021-09-12T17:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "a48d0b98-3167-4250-94ae-eee2401c7af5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-12T17:07:46.000Z" + }, + "end": { + "$date": "2021-09-12T18:09:23.000Z" + }, + "events": [ + { + "uuid": "19ab04f8-1a27-4489-8d60-27493329b031", + "start": { + "$date": "2021-09-12T17:07:46.000Z" + }, + "end": { + "$date": "2021-09-12T18:09:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02045d79-7556-45e7-b988-69677ad4b45a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T18:04:40.000Z" + }, + "end": { + "$date": "2021-09-12T18:30:50.000Z" + }, + "events": [ + { + "uuid": "928d4cb3-0805-4de3-92a6-f31f598044e4", + "start": { + "$date": "2021-09-12T18:04:40.000Z" + }, + "end": { + "$date": "2021-09-12T18:30:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e6f411c2-06f5-4df5-8eb1-7e92be035458", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T17:23:46.000Z" + }, + "end": { + "$date": "2021-09-12T18:31:19.000Z" + }, + "events": [ + { + "uuid": "67603961-744f-401d-b4bf-44024cd7945d", + "start": { + "$date": "2021-09-12T17:23:46.000Z" + }, + "end": { + "$date": "2021-09-12T18:13:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5801cab3-1bad-4492-96f5-e07d06523c74", + "start": { + "$date": "2021-09-12T18:13:46.000Z" + }, + "end": { + "$date": "2021-09-12T18:22:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eef689f5-3ca4-4b3e-8f41-a06ddd10aca6", + "start": { + "$date": "2021-09-12T18:22:46.000Z" + }, + "end": { + "$date": "2021-09-12T18:31:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9a374534-e8e8-4fb5-af1c-b46e1744a5f5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-12T17:32:30.000Z" + }, + "end": { + "$date": "2021-09-12T17:38:45.000Z" + }, + "events": [ + { + "uuid": "71f54d4c-9c2a-4e46-a645-5540db5a65c3", + "start": { + "$date": "2021-09-12T17:32:30.000Z" + }, + "end": { + "$date": "2021-09-12T17:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5f5573f-0a5c-44da-8aa6-b33e84937c39", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T18:35:10.000Z" + }, + "end": { + "$date": "2021-09-12T18:38:35.000Z" + }, + "events": [ + { + "uuid": "36227746-e795-4218-9f9c-fcd9f99db7e9", + "start": { + "$date": "2021-09-12T18:35:10.000Z" + }, + "end": { + "$date": "2021-09-12T18:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6284bddd-1f92-4daf-9cf3-200fc1c665f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T18:42:01.000Z" + }, + "end": { + "$date": "2021-09-12T19:14:10.000Z" + }, + "events": [ + { + "uuid": "eccd4e04-c3dc-4aaa-bd01-170beaeb4944", + "start": { + "$date": "2021-09-12T18:42:01.000Z" + }, + "end": { + "$date": "2021-09-12T19:14:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "57f111d6-6060-4a1f-a4a6-879ad505cc95", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T21:00:39.000Z" + }, + "end": { + "$date": "2021-09-12T23:02:30.000Z" + }, + "events": [ + { + "uuid": "9786c884-bed1-48a1-b296-78ad78517709", + "start": { + "$date": "2021-09-12T21:00:39.000Z" + }, + "end": { + "$date": "2021-09-13T00:36:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d96a6166-da6e-493b-8ce5-a9662ba8277a", + "start": { + "$date": "2021-09-13T00:36:39.000Z" + }, + "end": { + "$date": "2021-09-12T23:02:30.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ea5b0d81-5c47-4945-8b92-15ffcafae5f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T19:36:00.000Z" + }, + "end": { + "$date": "2021-09-12T20:33:02.000Z" + }, + "events": [ + { + "uuid": "79a75131-5ba7-4523-b749-099fbb6131d3", + "start": { + "$date": "2021-09-12T19:36:00.000Z" + }, + "end": { + "$date": "2021-09-12T20:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9f337d1e-c4e7-4bfb-9b18-e130a1ed8a24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-12T19:37:12.000Z" + }, + "end": { + "$date": "2021-09-12T19:42:48.000Z" + }, + "events": [ + { + "uuid": "52f5e8f5-2f94-4b49-aaed-4014828a75e2", + "start": { + "$date": "2021-09-12T19:37:12.000Z" + }, + "end": { + "$date": "2021-09-12T19:42:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6da6424-1360-4841-98fe-493b7d179b89", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T20:21:03.000Z" + }, + "end": { + "$date": "2021-09-12T20:49:33.000Z" + }, + "events": [ + { + "uuid": "72fee553-0b27-4356-8bc2-94093c87e09e", + "start": { + "$date": "2021-09-12T20:21:03.000Z" + }, + "end": { + "$date": "2021-09-12T20:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "09a903e1-d71a-4075-b308-b4b5d2efd938", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T20:36:23.000Z" + }, + "end": { + "$date": "2021-09-12T21:00:33.000Z" + }, + "events": [ + { + "uuid": "c3709321-29b2-4475-80c3-bab021598849", + "start": { + "$date": "2021-09-12T20:36:23.000Z" + }, + "end": { + "$date": "2021-09-12T21:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "2104c325-73ce-4f38-bf22-5021ceea61d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-12T20:51:44.000Z" + }, + "end": { + "$date": "2021-09-12T22:19:10.000Z" + }, + "events": [ + { + "uuid": "efde7d26-250c-4e4f-8520-39395ba24626", + "start": { + "$date": "2021-09-12T20:51:44.000Z" + }, + "end": { + "$date": "2021-09-12T22:19:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ceb141f3-74ae-49ff-a055-0bdbb951fb20", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T21:01:14.000Z" + }, + "end": { + "$date": "2021-09-12T21:58:23.000Z" + }, + "events": [ + { + "uuid": "a8b21eab-c618-4d02-be5c-52149e8d9c06", + "start": { + "$date": "2021-09-12T21:01:14.000Z" + }, + "end": { + "$date": "2021-09-12T21:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "86da2683-4e17-49c0-8a80-70aec8e86b1d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-12T21:03:26.000Z" + }, + "end": { + "$date": "2021-09-12T21:16:26.000Z" + }, + "events": [ + { + "uuid": "eacd4527-8e39-4270-b94d-6fff16f833f9", + "start": { + "$date": "2021-09-12T21:03:26.000Z" + }, + "end": { + "$date": "2021-09-12T21:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8c4dd8b0-4e13-4aff-b11a-477665fedac4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-12T21:33:10.000Z" + }, + "end": { + "$date": "2021-09-12T22:19:13.000Z" + }, + "events": [ + { + "uuid": "8b5f7114-51bd-44ad-b182-b449bfcc1fb3", + "start": { + "$date": "2021-09-12T21:33:10.000Z" + }, + "end": { + "$date": "2021-09-12T22:19:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fca3303d-f0be-46ed-83d2-23388edf6d13", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-12T22:03:45.000Z" + }, + "end": { + "$date": "2021-09-12T22:11:41.000Z" + }, + "events": [ + { + "uuid": "f02e9920-ef7c-4786-9f3d-d66bebd057c5", + "start": { + "$date": "2021-09-12T22:03:45.000Z" + }, + "end": { + "$date": "2021-09-12T22:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2a81feea-45de-4153-af4a-d40b87580f0e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-12T23:06:17.000Z" + }, + "end": { + "$date": "2021-09-12T23:27:13.000Z" + }, + "events": [ + { + "uuid": "bb0b28c5-f9ed-43c2-b84b-cec6480a6644", + "start": { + "$date": "2021-09-12T23:06:17.000Z" + }, + "end": { + "$date": "2021-09-12T23:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e8cc2fa9-7a0e-4f37-9b12-5d0239a6ff56", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-12T23:17:21.000Z" + }, + "end": { + "$date": "2021-09-13T00:47:39.000Z" + }, + "events": [ + { + "uuid": "f42c8552-2e38-4947-84f0-32a685f5f19f", + "start": { + "$date": "2021-09-12T23:17:21.000Z" + }, + "end": { + "$date": "2021-09-13T00:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec016105-107d-4ad4-8ed6-ab69a81af8f4", + "uuid": "8f83b226-5d0a-418f-a937-f6251f3520dd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-12T23:23:41.000Z" + }, + "end": { + "$date": "2021-09-13T06:33:35.000Z" + }, + "events": [ + { + "uuid": "f955fac5-9cd5-4360-837d-21c189b80616", + "start": { + "$date": "2021-09-12T23:23:41.000Z" + }, + "end": { + "$date": "2021-09-13T06:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bd3c7fbf-8ac9-4db5-a3aa-24e6b14e7d1e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-12T23:41:02.000Z" + }, + "end": { + "$date": "2021-09-13T00:31:07.000Z" + }, + "events": [ + { + "uuid": "221a989d-794c-4390-8b70-38b184cae88c", + "start": { + "$date": "2021-09-12T23:41:02.000Z" + }, + "end": { + "$date": "2021-09-13T00:10:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1cbe7f6-a555-4922-b9b3-ed625796e722", + "start": { + "$date": "2021-09-13T00:10:02.000Z" + }, + "end": { + "$date": "2021-09-13T00:15:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8742a0d8-1992-45f1-a0be-ae29126d6971", + "start": { + "$date": "2021-09-13T00:15:02.000Z" + }, + "end": { + "$date": "2021-09-13T00:25:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "038f0d80-2fae-4423-8475-93f51c8aa4b1", + "start": { + "$date": "2021-09-13T00:25:02.000Z" + }, + "end": { + "$date": "2021-09-13T00:31:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "db562bce-f06e-4d13-b400-34bf7c8d5ff0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-13T00:04:19.000Z" + }, + "end": { + "$date": "2021-09-13T01:46:06.000Z" + }, + "events": [ + { + "uuid": "1a98f31c-de72-4380-a77e-4961ac233519", + "start": { + "$date": "2021-09-13T00:04:19.000Z" + }, + "end": { + "$date": "2021-09-13T01:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "6d3c6c28-7905-4554-af20-b83b7ecc74a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-13T01:00:24.000Z" + }, + "end": { + "$date": "2021-09-13T01:00:29.000Z" + }, + "events": [ + { + "uuid": "2214b0b8-b9f5-4614-b9a8-98627ad576a7", + "start": { + "$date": "2021-09-13T01:00:24.000Z" + }, + "end": { + "$date": "2021-09-13T01:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cff777fb-b589-4fc2-a8c2-b7a06af633d7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T00:53:22.000Z" + }, + "end": { + "$date": "2021-09-13T01:12:57.000Z" + }, + "events": [ + { + "uuid": "9b401140-e1c0-433b-9754-92ab23fe8d29", + "start": { + "$date": "2021-09-13T00:53:22.000Z" + }, + "end": { + "$date": "2021-09-13T01:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "166b438c-6b68-4c67-9fde-273cd4b5d25e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-13T01:05:01.000Z" + }, + "end": { + "$date": "2021-09-13T02:10:28.000Z" + }, + "events": [ + { + "uuid": "f819549e-c5fa-4d0d-83e6-fd60eee57a44", + "start": { + "$date": "2021-09-13T01:05:01.000Z" + }, + "end": { + "$date": "2021-09-13T02:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7c677d5c-ec78-4920-aa02-b3b03a5708e9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-13T01:12:41.000Z" + }, + "end": { + "$date": "2021-09-13T02:47:04.000Z" + }, + "events": [ + { + "uuid": "4aefa53a-0921-4fa6-808b-6ebde9a91a35", + "start": { + "$date": "2021-09-13T01:12:41.000Z" + }, + "end": { + "$date": "2021-09-13T02:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75fded8c-fe26-4797-97c2-6516903b10d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T01:50:43.000Z" + }, + "end": { + "$date": "2021-09-13T02:21:08.000Z" + }, + "events": [ + { + "uuid": "38407a40-9b52-42ff-93fc-bc61df9d2665", + "start": { + "$date": "2021-09-13T01:50:43.000Z" + }, + "end": { + "$date": "2021-09-13T02:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "26317eb1-b583-435a-a2ab-64d7a9399781", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-13T02:04:55.000Z" + }, + "end": { + "$date": "2021-09-13T03:10:28.000Z" + }, + "events": [ + { + "uuid": "35bd960a-495e-4240-b9f9-46dbea373896", + "start": { + "$date": "2021-09-13T02:04:55.000Z" + }, + "end": { + "$date": "2021-09-13T03:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3bda07d6-7baa-4833-b742-2ed3f84fbdfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-13T02:11:04.000Z" + }, + "end": { + "$date": "2021-09-13T08:48:40.000Z" + }, + "events": [ + { + "uuid": "3caa1e1f-0d6d-4a84-b451-c212113980ca", + "start": { + "$date": "2021-09-13T02:11:04.000Z" + }, + "end": { + "$date": "2021-09-13T07:58:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7353f9ea-5cea-462d-bb09-65220f4103b1", + "start": { + "$date": "2021-09-13T07:58:04.000Z" + }, + "end": { + "$date": "2021-09-13T08:00:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e54f152-103c-4661-820a-d3011d1b6140", + "start": { + "$date": "2021-09-13T08:00:04.000Z" + }, + "end": { + "$date": "2021-09-13T08:48:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "717a8e40-d94a-4f80-ac3b-7f657a99e3ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T02:31:59.000Z" + }, + "end": { + "$date": "2021-09-13T03:12:34.000Z" + }, + "events": [ + { + "uuid": "8a837c74-4612-49b6-ae02-50ac81659c08", + "start": { + "$date": "2021-09-13T02:31:59.000Z" + }, + "end": { + "$date": "2021-09-13T03:12:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "46bb87b7-144d-4a36-9314-38456c1aca0c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-13T02:47:29.000Z" + }, + "end": { + "$date": "2021-09-13T05:28:55.000Z" + }, + "events": [ + { + "uuid": "3e379135-6aea-42c2-a385-ed10360650d2", + "start": { + "$date": "2021-09-13T02:47:29.000Z" + }, + "end": { + "$date": "2021-09-13T05:28:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6da73eb-fff1-423f-8bb7-aca41e7a8669", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T03:18:15.000Z" + }, + "end": { + "$date": "2021-09-13T03:44:49.000Z" + }, + "events": [ + { + "uuid": "989e976f-93f5-41fa-b694-d3d3a77c544a", + "start": { + "$date": "2021-09-13T03:18:15.000Z" + }, + "end": { + "$date": "2021-09-13T03:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8ff5f48a-0b98-4aea-b8fd-88012dc7954f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-13T04:01:44.000Z" + }, + "end": { + "$date": "2021-09-13T04:08:30.000Z" + }, + "events": [ + { + "uuid": "1cd45875-f340-47d0-8173-63807c064929", + "start": { + "$date": "2021-09-13T04:01:44.000Z" + }, + "end": { + "$date": "2021-09-13T04:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b650ff34-ddb2-413f-999f-9a3f6b4fa593", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-13T04:10:35.000Z" + }, + "end": { + "$date": "2021-09-13T05:30:47.000Z" + }, + "events": [ + { + "uuid": "a063d34b-7b56-443d-86e7-e360977d2d38", + "start": { + "$date": "2021-09-13T04:10:35.000Z" + }, + "end": { + "$date": "2021-09-13T05:30:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ce468f5-ec71-4184-8085-56aa17362848", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-13T04:19:55.000Z" + }, + "end": { + "$date": "2021-09-13T04:50:56.000Z" + }, + "events": [ + { + "uuid": "4b4fbe8d-80b1-41cb-a365-ffd196a76f1f", + "start": { + "$date": "2021-09-13T04:19:55.000Z" + }, + "end": { + "$date": "2021-09-13T04:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "286cc158-831a-4167-af88-e38f5aa0ff35", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-13T05:02:06.000Z" + }, + "end": { + "$date": "2021-09-13T05:17:52.000Z" + }, + "events": [ + { + "uuid": "fe329e4a-b4db-4b36-a844-40c50896f57b", + "start": { + "$date": "2021-09-13T05:02:06.000Z" + }, + "end": { + "$date": "2021-09-13T05:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62a828bc-0793-4b3d-a40b-634866142ddf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-13T05:26:28.000Z" + }, + "end": { + "$date": "2021-09-13T05:48:43.000Z" + }, + "events": [ + { + "uuid": "41c407c1-7191-4a7a-8301-5bead567b889", + "start": { + "$date": "2021-09-13T05:26:28.000Z" + }, + "end": { + "$date": "2021-09-13T05:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec016105-107d-4ad4-8ed6-ab69a81af8f4", + "uuid": "7413f12b-47f4-492e-b465-336cdbf9604e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-13T07:11:19.000Z" + }, + "end": { + "$date": "2021-09-13T09:25:43.000Z" + }, + "events": [ + { + "uuid": "d47cb9cb-2998-4119-8f44-bdaee82968db", + "start": { + "$date": "2021-09-13T07:11:19.000Z" + }, + "end": { + "$date": "2021-09-13T09:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d4776c36-2fff-4066-a9c3-0a0146721809", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-13T08:50:56.000Z" + }, + "end": { + "$date": "2021-09-13T09:33:44.000Z" + }, + "events": [ + { + "uuid": "14ed0b21-381b-4a44-bd34-68f31d27a7fa", + "start": { + "$date": "2021-09-13T08:50:56.000Z" + }, + "end": { + "$date": "2021-09-13T09:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "ada69b25-e589-46e5-95c7-47cb8d477c76", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-13T12:46:37.000Z" + }, + "end": { + "$date": "2021-09-13T13:17:08.000Z" + }, + "events": [ + { + "uuid": "0fbb51d9-228e-4179-b4a7-945b93292d08", + "start": { + "$date": "2021-09-13T12:46:37.000Z" + }, + "end": { + "$date": "2021-09-13T13:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8fe755d6-0f6a-44d0-8cb8-ab4d6f348112", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-13T13:49:42.000Z" + }, + "end": { + "$date": "2021-09-13T17:34:04.000Z" + }, + "events": [ + { + "uuid": "24e23b51-ba64-4c6b-8203-8cfa8981a0bf", + "start": { + "$date": "2021-09-13T13:49:42.000Z" + }, + "end": { + "$date": "2021-09-13T17:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e1811e4-9187-426c-980f-fe638cd02624", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T14:45:04.000Z" + }, + "end": { + "$date": "2021-09-13T15:03:33.000Z" + }, + "events": [ + { + "uuid": "a2788b21-47a6-40d8-b93f-7d70cebd5142", + "start": { + "$date": "2021-09-13T14:45:04.000Z" + }, + "end": { + "$date": "2021-09-13T15:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "45191faa-c716-49c8-93aa-79bcc14cc002", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-13T15:55:47.000Z" + }, + "end": { + "$date": "2021-09-13T17:10:03.000Z" + }, + "events": [ + { + "uuid": "81c44b16-fc47-4eba-990b-6d625e80d3a3", + "start": { + "$date": "2021-09-13T15:55:47.000Z" + }, + "end": { + "$date": "2021-09-13T17:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "69124542-748c-445e-81b2-2f5797451e72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-13T16:02:11.000Z" + }, + "end": { + "$date": "2021-09-13T16:07:28.000Z" + }, + "events": [ + { + "uuid": "7f9e4449-9178-46e6-9a21-a93732ce2d01", + "start": { + "$date": "2021-09-13T16:02:11.000Z" + }, + "end": { + "$date": "2021-09-13T16:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1003a6da-cc49-4e3b-8f1d-b42d26120cae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-13T16:15:48.000Z" + }, + "end": { + "$date": "2021-09-13T16:23:19.000Z" + }, + "events": [ + { + "uuid": "ea6e171d-bf56-4e73-ad0e-40f7a24fee3e", + "start": { + "$date": "2021-09-13T16:15:48.000Z" + }, + "end": { + "$date": "2021-09-13T16:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "712641ee-17f3-4a4b-82e5-1e4d696e7a9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T16:40:09.000Z" + }, + "end": { + "$date": "2021-09-13T17:11:08.000Z" + }, + "events": [ + { + "uuid": "abbbd2f1-852f-4c55-8e22-0d144c4b9f13", + "start": { + "$date": "2021-09-13T16:40:09.000Z" + }, + "end": { + "$date": "2021-09-13T17:11:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "904ced18-c783-4f34-8c88-b040b3aa26c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T17:11:36.000Z" + }, + "end": { + "$date": "2021-09-13T17:15:18.000Z" + }, + "events": [ + { + "uuid": "4844ff06-692d-4fef-9021-dbfda4669d44", + "start": { + "$date": "2021-09-13T17:11:36.000Z" + }, + "end": { + "$date": "2021-09-13T17:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "46969448-7478-4691-a1dc-46f336af097b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T18:56:17.000Z" + }, + "end": { + "$date": "2021-09-13T19:12:57.000Z" + }, + "events": [ + { + "uuid": "b4b8eac9-702e-4969-adf3-b24efd2e8e49", + "start": { + "$date": "2021-09-13T18:56:17.000Z" + }, + "end": { + "$date": "2021-09-13T19:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ca75b49-c262-4891-a5e4-a41052e3bd5f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-13T21:04:04.000Z" + }, + "end": { + "$date": "2021-09-13T21:56:19.000Z" + }, + "events": [ + { + "uuid": "d334fdc8-6aaf-4a75-bcc3-d5b3a9eabd7e", + "start": { + "$date": "2021-09-13T21:04:04.000Z" + }, + "end": { + "$date": "2021-09-13T21:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c78a15f-c988-43d3-841c-484e9cbfbe7d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-13T22:41:14.000Z" + }, + "end": { + "$date": "2021-09-14T03:35:09.000Z" + }, + "events": [ + { + "uuid": "894725e6-6b9e-4c3b-9b6c-4ba3b24920cc", + "start": { + "$date": "2021-09-13T22:41:14.000Z" + }, + "end": { + "$date": "2021-09-14T01:20:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d10d850f-19af-4954-a48c-efbce76e8e7e", + "start": { + "$date": "2021-09-14T01:20:14.000Z" + }, + "end": { + "$date": "2021-09-14T01:27:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be44ed5d-a678-4816-af85-de70fa7e5955", + "start": { + "$date": "2021-09-14T01:27:14.000Z" + }, + "end": { + "$date": "2021-09-14T01:38:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd8f9005-bab0-486b-a72b-f50e9d0d78ef", + "start": { + "$date": "2021-09-14T01:38:14.000Z" + }, + "end": { + "$date": "2021-09-14T01:41:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15c2579f-f7f0-4b23-bd77-6a2c359216eb", + "start": { + "$date": "2021-09-14T01:41:14.000Z" + }, + "end": { + "$date": "2021-09-14T03:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "72294be9-e90c-4d12-bbdd-a49b96a9028a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-13T22:58:43.000Z" + }, + "end": { + "$date": "2021-09-13T23:31:48.000Z" + }, + "events": [ + { + "uuid": "8f0c2d8d-2c09-4a0e-8dbf-d6875427095a", + "start": { + "$date": "2021-09-13T22:58:43.000Z" + }, + "end": { + "$date": "2021-09-13T23:31:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4e96ad5f-b314-49a3-9548-5118c9edd49b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-13T23:09:43.000Z" + }, + "end": { + "$date": "2021-09-13T23:11:59.000Z" + }, + "events": [ + { + "uuid": "325b665f-a169-4db6-a6e8-cb5a40a31a5d", + "start": { + "$date": "2021-09-13T23:09:43.000Z" + }, + "end": { + "$date": "2021-09-13T23:11:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "59b74a29-0407-4f67-90dc-da39fb3e6412", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-14T00:17:42.000Z" + }, + "end": { + "$date": "2021-09-14T00:56:13.000Z" + }, + "events": [ + { + "uuid": "6e42a6d9-8fae-4cfe-86eb-b8541780c0dc", + "start": { + "$date": "2021-09-14T00:17:42.000Z" + }, + "end": { + "$date": "2021-09-14T00:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed3bcb02-fb5c-4d48-965a-52bc3c6cc31c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T00:25:43.000Z" + }, + "end": { + "$date": "2021-09-14T00:54:17.000Z" + }, + "events": [ + { + "uuid": "3b2b1464-b8c2-4d75-8769-8e120ed4c7a4", + "start": { + "$date": "2021-09-14T00:25:43.000Z" + }, + "end": { + "$date": "2021-09-14T00:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1366ebae-59d0-4467-91ed-cf6683878303", + "uuid": "fec63ef4-d7a8-4e8f-963b-dfa2a89bc698", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T00:46:47.000Z" + }, + "end": { + "$date": "2021-09-14T00:48:17.000Z" + }, + "events": [ + { + "uuid": "c16f8fad-e3d4-453d-98fd-e9bb4446bf1f", + "start": { + "$date": "2021-09-14T00:46:47.000Z" + }, + "end": { + "$date": "2021-09-14T00:48:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d135e9e-75b9-42c2-a76c-57fbb08dd6d0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T01:03:39.000Z" + }, + "end": { + "$date": "2021-09-14T01:39:18.000Z" + }, + "events": [ + { + "uuid": "cbbe9b39-c836-4771-96ce-60329324e0d1", + "start": { + "$date": "2021-09-14T01:03:39.000Z" + }, + "end": { + "$date": "2021-09-14T01:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "f2ce6cc3-a5a6-4161-ad20-0071534aabfa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T01:00:40.000Z" + }, + "end": { + "$date": "2021-09-14T01:02:05.000Z" + }, + "events": [ + { + "uuid": "0924922f-5a7b-420b-a52d-6234aa9681f1", + "start": { + "$date": "2021-09-14T01:00:40.000Z" + }, + "end": { + "$date": "2021-09-14T01:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "7a7bb2bd-aa9b-4e2c-a248-ed5612249565", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T01:02:30.000Z" + }, + "end": { + "$date": "2021-09-14T01:03:56.000Z" + }, + "events": [ + { + "uuid": "cf719c4d-3fec-44f8-9953-2a2e289659b8", + "start": { + "$date": "2021-09-14T01:02:30.000Z" + }, + "end": { + "$date": "2021-09-14T01:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", + "uuid": "69cee535-78ff-4048-a75a-659abae70d9f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T01:07:11.000Z" + }, + "end": { + "$date": "2021-09-14T01:33:01.000Z" + }, + "events": [ + { + "uuid": "bcc0beb6-17fa-4074-84ec-f9da6b492bad", + "start": { + "$date": "2021-09-14T01:07:11.000Z" + }, + "end": { + "$date": "2021-09-14T01:33:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "014d4575-20d5-44e9-80c2-6665e8dfb73f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-14T01:44:22.000Z" + }, + "end": { + "$date": "2021-09-14T03:51:29.000Z" + }, + "events": [ + { + "uuid": "aacf7fdd-9f04-49d1-8c2f-a12ba7c5a338", + "start": { + "$date": "2021-09-14T01:44:22.000Z" + }, + "end": { + "$date": "2021-09-14T03:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e9a3510-a4f3-4401-8ca2-1d84be416d73", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T02:23:42.000Z" + }, + "end": { + "$date": "2021-09-14T02:45:56.000Z" + }, + "events": [ + { + "uuid": "828b3cb8-68f7-4d01-8a0f-fa53dac4128e", + "start": { + "$date": "2021-09-14T02:23:42.000Z" + }, + "end": { + "$date": "2021-09-14T02:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "467e8196-8b99-4815-a3e1-ffd5a7a7cfb6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T02:23:56.000Z" + }, + "end": { + "$date": "2021-09-14T02:45:58.000Z" + }, + "events": [ + { + "uuid": "a14d8338-4d49-4cfe-ae21-fdacd134b464", + "start": { + "$date": "2021-09-14T02:23:56.000Z" + }, + "end": { + "$date": "2021-09-14T02:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c14e3c8-8cfa-4231-8789-7adb6e062507", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-14T02:22:39.000Z" + }, + "end": { + "$date": "2021-09-14T02:46:03.000Z" + }, + "events": [ + { + "uuid": "dccc336c-6723-43f4-9a95-664c161856df", + "start": { + "$date": "2021-09-14T02:22:39.000Z" + }, + "end": { + "$date": "2021-09-14T02:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abe46840-44ca-466e-b27b-9834fb31a932", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T02:49:47.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:46.000Z" + }, + "events": [ + { + "uuid": "370fb1e7-867d-4940-a1ff-c4cde5bb4937", + "start": { + "$date": "2021-09-14T02:49:47.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a918bff-be6e-4166-afa4-16ffdfaa718c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-14T02:49:45.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:48.000Z" + }, + "events": [ + { + "uuid": "471f4080-5f9f-43c2-a0cb-f7eb11a238cd", + "start": { + "$date": "2021-09-14T02:49:45.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5e3a8d5-8aca-48e4-8bce-7ad80091ff1e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T02:49:53.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:51.000Z" + }, + "events": [ + { + "uuid": "a76f3f68-e370-49be-a5bb-9919f5382a60", + "start": { + "$date": "2021-09-14T02:49:53.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fbf2ed6-6a26-4846-a7cf-91b090475026", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-14T02:49:48.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:43.000Z" + }, + "events": [ + { + "uuid": "eb76e3db-9ffa-4f43-ab87-967e9984643c", + "start": { + "$date": "2021-09-14T02:49:48.000Z" + }, + "end": { + "$date": "2021-09-14T03:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8adf0e67-4526-4c2b-8b16-a90c84502a10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T03:28:32.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:32.000Z" + }, + "events": [ + { + "uuid": "208e3add-d9f6-4979-aeb4-7f8286d5bb44", + "start": { + "$date": "2021-09-14T03:28:32.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e855b814-90ac-4640-82b8-8adfeb0d7444", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-14T03:29:06.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:44.000Z" + }, + "events": [ + { + "uuid": "f6c77058-5cbf-4c90-b284-54e750cf5730", + "start": { + "$date": "2021-09-14T03:29:06.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a407a733-52b2-4449-b558-8247f8913e6f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-14T03:28:34.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:29.000Z" + }, + "events": [ + { + "uuid": "c26e8f7b-3314-4c55-b5c5-9270f23a560b", + "start": { + "$date": "2021-09-14T03:28:34.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "252670d2-584c-493e-876a-dee58cbcebc2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T03:29:04.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:33.000Z" + }, + "events": [ + { + "uuid": "091bb20c-0591-4ff4-82d6-6a28cc903d0c", + "start": { + "$date": "2021-09-14T03:29:04.000Z" + }, + "end": { + "$date": "2021-09-14T04:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "863e30f4-22a4-4579-8b44-d8eaf2bb5b23", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-14T03:29:48.000Z" + }, + "end": { + "$date": "2021-09-14T03:41:17.000Z" + }, + "events": [ + { + "uuid": "0903712e-8f4a-494a-84cc-3308e93bea40", + "start": { + "$date": "2021-09-14T03:29:48.000Z" + }, + "end": { + "$date": "2021-09-14T03:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "8e50b0e8-f025-4cad-810e-6b1261b9a37a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-14T03:41:45.000Z" + }, + "end": { + "$date": "2021-09-14T04:03:24.000Z" + }, + "events": [ + { + "uuid": "1fffc9bb-04e0-42d5-854a-5cec46e5a286", + "start": { + "$date": "2021-09-14T03:41:45.000Z" + }, + "end": { + "$date": "2021-09-14T04:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2f0ea0d-f4bb-429b-9310-8df42be108b2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-14T04:05:27.000Z" + }, + "end": { + "$date": "2021-09-14T04:06:58.000Z" + }, + "events": [ + { + "uuid": "6809530d-e4e1-416a-a8de-696b80c14d50", + "start": { + "$date": "2021-09-14T04:05:27.000Z" + }, + "end": { + "$date": "2021-09-14T04:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "50cb35c5-d50c-43e7-aa70-994ecfb55e71", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-14T04:07:02.000Z" + }, + "end": { + "$date": "2021-09-14T05:31:25.000Z" + }, + "events": [ + { + "uuid": "bedf0392-a639-471b-82f3-00f3f0dc971c", + "start": { + "$date": "2021-09-14T04:07:02.000Z" + }, + "end": { + "$date": "2021-09-14T05:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4937e93-f300-4f45-91ce-e35b34030467", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T04:10:06.000Z" + }, + "end": { + "$date": "2021-09-14T04:18:00.000Z" + }, + "events": [ + { + "uuid": "c60a01b7-73ee-427b-8925-93e6cc33cdd4", + "start": { + "$date": "2021-09-14T04:10:06.000Z" + }, + "end": { + "$date": "2021-09-14T04:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e89630c0-0805-4bea-b58c-5501c43931d7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-14T04:16:01.000Z" + }, + "end": { + "$date": "2021-09-14T05:22:24.000Z" + }, + "events": [ + { + "uuid": "c843456c-ebb1-454c-ac90-e17aab8af0dd", + "start": { + "$date": "2021-09-14T04:16:01.000Z" + }, + "end": { + "$date": "2021-09-14T05:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd7b2a10-42c2-4991-8e3a-1f277c469618", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-14T04:15:33.000Z" + }, + "end": { + "$date": "2021-09-14T04:18:15.000Z" + }, + "events": [ + { + "uuid": "6b5effac-c6e8-4724-849a-4b33d094c788", + "start": { + "$date": "2021-09-14T04:15:33.000Z" + }, + "end": { + "$date": "2021-09-14T04:18:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52cf5b5f-9b8b-4e11-ba3b-d857042e6d79", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-14T04:21:03.000Z" + }, + "end": { + "$date": "2021-09-14T04:45:03.000Z" + }, + "events": [ + { + "uuid": "52561eb8-6258-4553-8fac-ab15ad7ba264", + "start": { + "$date": "2021-09-14T04:21:03.000Z" + }, + "end": { + "$date": "2021-09-14T04:45:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e3b4551-b24d-4f15-ae4f-41915db23f13", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-14T04:21:27.000Z" + }, + "end": { + "$date": "2021-09-14T04:44:55.000Z" + }, + "events": [ + { + "uuid": "94359f76-30a3-4829-8e58-03fb643dafa5", + "start": { + "$date": "2021-09-14T04:21:27.000Z" + }, + "end": { + "$date": "2021-09-14T04:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "309a82ec-bda3-4711-a35f-562d8c537515", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-14T04:20:59.000Z" + }, + "end": { + "$date": "2021-09-14T04:45:00.000Z" + }, + "events": [ + { + "uuid": "ae665b4a-e3c1-4d2f-b41f-2164a3d9145d", + "start": { + "$date": "2021-09-14T04:20:59.000Z" + }, + "end": { + "$date": "2021-09-14T04:45:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ab8a0c0-9c21-443a-aa6e-1d9b4daa5f9b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T04:20:59.000Z" + }, + "end": { + "$date": "2021-09-14T04:44:53.000Z" + }, + "events": [ + { + "uuid": "cf9a1a98-e2f9-4e0b-804d-2f3fb06ebe6c", + "start": { + "$date": "2021-09-14T04:20:59.000Z" + }, + "end": { + "$date": "2021-09-14T04:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d02f620a-8d4c-415c-adba-0f982c99866e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T04:21:18.000Z" + }, + "end": { + "$date": "2021-09-14T04:44:59.000Z" + }, + "events": [ + { + "uuid": "d340d76c-028f-447d-9e23-8492d5ab691c", + "start": { + "$date": "2021-09-14T04:21:18.000Z" + }, + "end": { + "$date": "2021-09-14T04:44:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f87cf6b-0764-46d8-bf2f-954684dc6167", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-14T04:37:04.000Z" + }, + "end": { + "$date": "2021-09-14T04:57:29.000Z" + }, + "events": [ + { + "uuid": "5e83022e-a6fa-45fa-81be-6a9bd5380679", + "start": { + "$date": "2021-09-14T04:37:04.000Z" + }, + "end": { + "$date": "2021-09-14T04:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ad063b6-7478-4bc9-9ff2-edac12c009f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-14T04:48:24.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:24.000Z" + }, + "events": [ + { + "uuid": "b42398c5-938c-4f7e-8305-6469e7e028b9", + "start": { + "$date": "2021-09-14T04:48:24.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6eb057c5-bbfc-42d7-8621-a63971d0860a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-14T04:47:55.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:25.000Z" + }, + "events": [ + { + "uuid": "29f9094a-02df-4cd1-bace-c87730c56e8c", + "start": { + "$date": "2021-09-14T04:47:55.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "576a4aad-8d98-4b9a-a487-68cbb76fdeee", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-14T04:48:09.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:26.000Z" + }, + "events": [ + { + "uuid": "8a1617cb-ce5f-4f76-adf3-700f52beaca1", + "start": { + "$date": "2021-09-14T04:48:09.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7ad38f2-3323-438a-a2b5-f9ce425a6d2e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T04:47:54.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:23.000Z" + }, + "events": [ + { + "uuid": "986f3328-af96-43d7-bc47-9b534ca0aba0", + "start": { + "$date": "2021-09-14T04:47:54.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10f29d91-6b35-47bf-954e-1b8436f43bc9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-14T04:48:07.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:26.000Z" + }, + "events": [ + { + "uuid": "dc47166d-e65f-412d-9753-d8c3923d0154", + "start": { + "$date": "2021-09-14T04:48:07.000Z" + }, + "end": { + "$date": "2021-09-14T05:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b82e5323-1d45-41ae-9de6-0cbfa00ae086", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-14T05:03:34.000Z" + }, + "end": { + "$date": "2021-09-14T05:33:39.000Z" + }, + "events": [ + { + "uuid": "5d31610c-2779-48c4-b749-25af46caef18", + "start": { + "$date": "2021-09-14T05:03:34.000Z" + }, + "end": { + "$date": "2021-09-14T05:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "006d8c77-f2ff-4b8a-807c-0ab69ee629f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-14T05:09:55.000Z" + }, + "end": { + "$date": "2021-09-14T06:02:59.000Z" + }, + "events": [ + { + "uuid": "d079d031-84c6-4fb6-b2e8-4df1353ed708", + "start": { + "$date": "2021-09-14T05:09:55.000Z" + }, + "end": { + "$date": "2021-09-14T06:02:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8adc700-a4c1-4fc8-966e-4eea7b1fecc4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-14T05:55:32.000Z" + }, + "end": { + "$date": "2021-09-14T06:23:42.000Z" + }, + "events": [ + { + "uuid": "951e7f89-5e1f-4d83-a8af-88249e0c062e", + "start": { + "$date": "2021-09-14T05:55:32.000Z" + }, + "end": { + "$date": "2021-09-14T06:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "302b14c0-e226-40ae-8080-0d733533e596", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-14T06:10:06.000Z" + }, + "end": { + "$date": "2021-09-14T06:12:44.000Z" + }, + "events": [ + { + "uuid": "3c090f6a-0691-47fd-9fff-1bd478cd5d83", + "start": { + "$date": "2021-09-14T06:10:06.000Z" + }, + "end": { + "$date": "2021-09-14T06:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9a3e3678-de93-4a18-a315-6ebc5f725de6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-14T06:12:53.000Z" + }, + "end": { + "$date": "2021-09-14T06:32:58.000Z" + }, + "events": [ + { + "uuid": "13545db4-9c09-4ba0-84ce-981f07e8e6ff", + "start": { + "$date": "2021-09-14T06:12:53.000Z" + }, + "end": { + "$date": "2021-09-14T06:32:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", + "uuid": "89da6ab3-554f-4df7-a894-d6b09f2f8048", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-14T09:34:05.000Z" + }, + "end": { + "$date": "2021-09-14T10:28:00.000Z" + }, + "events": [ + { + "uuid": "3849121a-6c3b-420f-9715-1857e32f55bc", + "start": { + "$date": "2021-09-14T09:34:05.000Z" + }, + "end": { + "$date": "2021-09-14T10:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "52cb7ed8-f898-49fb-8999-4c804951b665", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-14T14:37:06.000Z" + }, + "end": { + "$date": "2021-09-14T14:38:53.000Z" + }, + "events": [ + { + "uuid": "3731bed8-caf5-43db-99c9-141dcf6a6ff8", + "start": { + "$date": "2021-09-14T14:37:06.000Z" + }, + "end": { + "$date": "2021-09-14T14:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8ca10a65-609f-4abe-bc85-307625880508", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-14T14:39:21.000Z" + }, + "end": { + "$date": "2021-09-14T15:26:25.000Z" + }, + "events": [ + { + "uuid": "e3ed10ad-5ae0-4ac1-bbaa-4b5d2481a776", + "start": { + "$date": "2021-09-14T14:39:21.000Z" + }, + "end": { + "$date": "2021-09-14T15:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8867c949-dd28-463b-a2f4-3c30cfe1bd7d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T15:42:06.000Z" + }, + "end": { + "$date": "2021-09-14T16:10:06.000Z" + }, + "events": [ + { + "uuid": "08d0631c-8db0-4e47-b133-f9eec9f25336", + "start": { + "$date": "2021-09-14T15:42:06.000Z" + }, + "end": { + "$date": "2021-09-14T16:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "48642807-d30d-420e-8eeb-ab1ea75d52a3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-14T15:56:17.000Z" + }, + "end": { + "$date": "2021-09-14T15:58:43.000Z" + }, + "events": [ + { + "uuid": "03053361-87ed-49a1-a8dc-40d04b7bac4b", + "start": { + "$date": "2021-09-14T15:56:17.000Z" + }, + "end": { + "$date": "2021-09-14T15:58:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99c3a312-79f5-4e09-bfe3-9af487c3f875", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T16:17:27.000Z" + }, + "end": { + "$date": "2021-09-14T16:54:42.000Z" + }, + "events": [ + { + "uuid": "810996a5-48c6-4169-9d37-1decd0349c83", + "start": { + "$date": "2021-09-14T16:17:27.000Z" + }, + "end": { + "$date": "2021-09-14T16:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a396dc31-6dee-46ff-be75-a01b14930d8f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T16:56:00.000Z" + }, + "end": { + "$date": "2021-09-14T17:07:22.000Z" + }, + "events": [ + { + "uuid": "f7198573-97de-4f0c-881f-c57b629a2371", + "start": { + "$date": "2021-09-14T16:56:00.000Z" + }, + "end": { + "$date": "2021-09-14T17:07:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7e4d0682-9970-4fde-b347-1472a14944c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T17:17:03.000Z" + }, + "end": { + "$date": "2021-09-14T17:54:09.000Z" + }, + "events": [ + { + "uuid": "ab5b7534-8c18-4493-8e20-e690aa884626", + "start": { + "$date": "2021-09-14T17:17:03.000Z" + }, + "end": { + "$date": "2021-09-14T17:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d4818a96-cba3-4f91-b8f8-fe69df642ca3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-14T18:52:50.000Z" + }, + "end": { + "$date": "2021-09-14T18:55:56.000Z" + }, + "events": [ + { + "uuid": "0a0f69c4-6c99-49a1-81ff-fcf20c7cc92e", + "start": { + "$date": "2021-09-14T18:52:50.000Z" + }, + "end": { + "$date": "2021-09-14T18:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7eb76949-2535-4743-b48e-5dadca953a7c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T19:15:29.000Z" + }, + "end": { + "$date": "2021-09-14T19:45:24.000Z" + }, + "events": [ + { + "uuid": "a75811b9-4835-48ce-aa36-d8d543a9d09d", + "start": { + "$date": "2021-09-14T19:15:29.000Z" + }, + "end": { + "$date": "2021-09-14T19:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1be396de-ef0b-4895-85aa-3db7c9e0310d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-14T19:55:42.000Z" + }, + "end": { + "$date": "2021-09-14T20:19:50.000Z" + }, + "events": [ + { + "uuid": "ad76e790-a6f8-4f8c-83ed-709d85b80d6d", + "start": { + "$date": "2021-09-14T19:55:42.000Z" + }, + "end": { + "$date": "2021-09-14T20:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0496c702-2d7f-444d-bae6-783a1b770d90", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-14T21:10:27.000Z" + }, + "end": { + "$date": "2021-09-14T23:10:30.000Z" + }, + "events": [ + { + "uuid": "e0a24a7b-4c37-4453-938f-da7ebda9bc46", + "start": { + "$date": "2021-09-14T21:10:27.000Z" + }, + "end": { + "$date": "2021-09-14T23:10:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "3c510bc6-ac27-473b-ab87-027404e75bc6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T22:36:23.000Z" + }, + "end": { + "$date": "2021-09-14T22:36:31.000Z" + }, + "events": [ + { + "uuid": "e345b087-5104-4110-b5ae-c073fb627d7d", + "start": { + "$date": "2021-09-14T22:36:23.000Z" + }, + "end": { + "$date": "2021-09-14T22:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1ec180c8-bdc1-4742-bbe5-204b721dced5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-14T22:18:19.000Z" + }, + "end": { + "$date": "2021-09-14T22:33:00.000Z" + }, + "events": [ + { + "uuid": "f51b8b6f-5e4c-4000-af54-14c1594978d7", + "start": { + "$date": "2021-09-14T22:18:19.000Z" + }, + "end": { + "$date": "2021-09-14T22:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cc35901d-cfef-4b0a-adbb-d7f6f7369cb9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-14T22:34:33.000Z" + }, + "end": { + "$date": "2021-09-14T22:56:47.000Z" + }, + "events": [ + { + "uuid": "18aaffc9-883e-46fc-859e-66c17fd538c0", + "start": { + "$date": "2021-09-14T22:34:33.000Z" + }, + "end": { + "$date": "2021-09-14T22:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "e4fb97ba-19b7-4c88-87de-684bab9c14a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-14T23:51:44.000Z" + }, + "end": { + "$date": "2021-09-15T00:03:59.000Z" + }, + "events": [ + { + "uuid": "58b147b7-0d0f-45be-8b4b-580888e309ef", + "start": { + "$date": "2021-09-14T23:51:44.000Z" + }, + "end": { + "$date": "2021-09-15T00:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0bce6a65-4c63-480e-ba9c-519e412569fe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-15T00:08:27.000Z" + }, + "end": { + "$date": "2021-09-15T05:12:42.000Z" + }, + "events": [ + { + "uuid": "feff3083-674f-4309-adbd-c14d8e302ba0", + "start": { + "$date": "2021-09-15T00:08:27.000Z" + }, + "end": { + "$date": "2021-09-15T05:12:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cbe58df-09f0-4b6f-a686-60ca6f34d585", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-15T00:19:10.000Z" + }, + "end": { + "$date": "2021-09-15T00:52:47.000Z" + }, + "events": [ + { + "uuid": "718f3d95-dfce-4c87-8409-4301374067c4", + "start": { + "$date": "2021-09-15T00:19:10.000Z" + }, + "end": { + "$date": "2021-09-15T00:52:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c26dda8-981c-4ffd-a931-584828d72614", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-15T00:19:40.000Z" + }, + "end": { + "$date": "2021-09-15T00:52:40.000Z" + }, + "events": [ + { + "uuid": "c5d00b95-520f-4b16-86c9-c6841a198ab3", + "start": { + "$date": "2021-09-15T00:19:40.000Z" + }, + "end": { + "$date": "2021-09-15T00:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b640ce1c-24f2-4938-9602-6fe9da14aecb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-15T00:32:23.000Z" + }, + "end": { + "$date": "2021-09-15T00:52:50.000Z" + }, + "events": [ + { + "uuid": "7987c0f3-0c8b-429f-9798-a110a3f43864", + "start": { + "$date": "2021-09-15T00:32:23.000Z" + }, + "end": { + "$date": "2021-09-15T00:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "d513af84-a434-4591-8fa6-43cef2a40eba", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-15T00:54:23.000Z" + }, + "end": { + "$date": "2021-09-15T03:03:57.000Z" + }, + "events": [ + { + "uuid": "de813891-1c59-450a-97dc-983952d57a2a", + "start": { + "$date": "2021-09-15T00:54:23.000Z" + }, + "end": { + "$date": "2021-09-15T03:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8d7e8c60-d6d4-4196-bc75-c443c7873fef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-15T01:57:43.000Z" + }, + "end": { + "$date": "2021-09-15T02:53:05.000Z" + }, + "events": [ + { + "uuid": "b14ce48f-d8b9-4f13-bcce-1be3a5e19d57", + "start": { + "$date": "2021-09-15T01:57:43.000Z" + }, + "end": { + "$date": "2021-09-15T02:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "86c8257a-c104-4e35-9977-100c7b6ad952", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-15T01:57:43.000Z" + }, + "end": { + "$date": "2021-09-15T03:21:36.000Z" + }, + "events": [ + { + "uuid": "4100f027-6421-41f3-8968-129a7c2459fe", + "start": { + "$date": "2021-09-15T01:57:43.000Z" + }, + "end": { + "$date": "2021-09-15T03:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b3024351-c33b-4e06-bca4-e65109591ec5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-15T03:02:38.000Z" + }, + "end": { + "$date": "2021-09-15T04:10:42.000Z" + }, + "events": [ + { + "uuid": "00b15c13-88aa-4cde-8bfa-eba81e190159", + "start": { + "$date": "2021-09-15T03:02:38.000Z" + }, + "end": { + "$date": "2021-09-15T04:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "dc56968d-d386-40a9-a8e7-6d3ae28d2041", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-15T03:04:12.000Z" + }, + "end": { + "$date": "2021-09-15T10:25:04.000Z" + }, + "events": [ + { + "uuid": "00596c50-15b3-415c-9f71-06588f99ceb0", + "start": { + "$date": "2021-09-15T03:04:12.000Z" + }, + "end": { + "$date": "2021-09-15T10:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cbd6b5f5-3836-4ba8-ac7a-98e6cf013340", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-15T03:27:42.000Z" + }, + "end": { + "$date": "2021-09-15T06:48:44.000Z" + }, + "events": [ + { + "uuid": "73738952-cb89-4332-9e28-a9d97281e289", + "start": { + "$date": "2021-09-15T03:27:42.000Z" + }, + "end": { + "$date": "2021-09-15T06:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20d10cc9-13d1-4c18-90ec-d253f71870f8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-15T04:24:33.000Z" + }, + "end": { + "$date": "2021-09-15T04:57:04.000Z" + }, + "events": [ + { + "uuid": "a6467ed4-3660-4a49-b580-8b00cef22f55", + "start": { + "$date": "2021-09-15T04:24:33.000Z" + }, + "end": { + "$date": "2021-09-15T04:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efa621bc-20fc-410a-af69-60e08099f8d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-15T04:53:12.000Z" + }, + "end": { + "$date": "2021-09-15T05:18:17.000Z" + }, + "events": [ + { + "uuid": "2f0cd4ba-f22c-4090-8206-4ea1748d1cf4", + "start": { + "$date": "2021-09-15T04:53:12.000Z" + }, + "end": { + "$date": "2021-09-15T05:18:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "830e2ee7-28af-4c13-a783-be182f5dd748", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-15T04:53:49.000Z" + }, + "end": { + "$date": "2021-09-15T05:18:13.000Z" + }, + "events": [ + { + "uuid": "668e2292-35ea-48b6-8515-d4619a7f9d31", + "start": { + "$date": "2021-09-15T04:53:49.000Z" + }, + "end": { + "$date": "2021-09-15T05:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce8dd00b-1d2f-43fb-a913-5d7a1153b375", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-15T04:54:24.000Z" + }, + "end": { + "$date": "2021-09-15T05:18:07.000Z" + }, + "events": [ + { + "uuid": "683f7d19-6b34-4a63-b4a0-66b41b6b1561", + "start": { + "$date": "2021-09-15T04:54:24.000Z" + }, + "end": { + "$date": "2021-09-15T05:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa91a3f0-9342-434c-8e9e-fce8ae846c2d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-15T05:04:09.000Z" + }, + "end": { + "$date": "2021-09-15T05:40:05.000Z" + }, + "events": [ + { + "uuid": "59f2a22e-130d-4d4f-8bd9-fa432c8ff002", + "start": { + "$date": "2021-09-15T05:04:09.000Z" + }, + "end": { + "$date": "2021-09-15T05:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9b59cee-7839-41b4-bd12-4a4cb0af9e8b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-15T05:20:29.000Z" + }, + "end": { + "$date": "2021-09-15T05:44:57.000Z" + }, + "events": [ + { + "uuid": "060e2672-3d2e-4f11-bdff-d0ff5f8f507f", + "start": { + "$date": "2021-09-15T05:20:29.000Z" + }, + "end": { + "$date": "2021-09-15T05:44:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e601c09a-a594-402c-92f4-2b700fa4936d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-15T05:23:15.000Z" + }, + "end": { + "$date": "2021-09-15T05:45:11.000Z" + }, + "events": [ + { + "uuid": "c90a6cfd-89a0-47c9-970b-00abe5d2cdab", + "start": { + "$date": "2021-09-15T05:23:15.000Z" + }, + "end": { + "$date": "2021-09-15T05:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28163ff2-9ee4-40c0-a204-d45b8cc2689c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-15T05:22:59.000Z" + }, + "end": { + "$date": "2021-09-15T05:44:53.000Z" + }, + "events": [ + { + "uuid": "930adac9-c513-4e24-93fa-abb435d2cda2", + "start": { + "$date": "2021-09-15T05:22:59.000Z" + }, + "end": { + "$date": "2021-09-15T05:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0c409784-9595-44f5-85d8-9866350b2a09", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-15T06:31:50.000Z" + }, + "end": { + "$date": "2021-09-15T07:08:20.000Z" + }, + "events": [ + { + "uuid": "ae7a9722-e891-4bb3-830e-34c9e866ff24", + "start": { + "$date": "2021-09-15T06:31:50.000Z" + }, + "end": { + "$date": "2021-09-15T07:08:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "e72928fe-5504-46b3-aab6-fa3e1f78e5ae", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-15T10:30:14.000Z" + }, + "end": { + "$date": "2021-09-15T11:05:59.000Z" + }, + "events": [ + { + "uuid": "f763c64c-b484-4178-9cad-940bae3443dd", + "start": { + "$date": "2021-09-15T10:30:14.000Z" + }, + "end": { + "$date": "2021-09-15T11:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e2a44a8-ccf2-4802-bada-93cc6c4ce343", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-15T14:38:39.000Z" + }, + "end": { + "$date": "2021-09-15T14:43:19.000Z" + }, + "events": [ + { + "uuid": "08b0f3a4-aefa-4ccd-9be8-0a61309f3290", + "start": { + "$date": "2021-09-15T14:38:39.000Z" + }, + "end": { + "$date": "2021-09-15T14:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c55756-ae07-4771-86d2-bba19006baa0", + "uuid": "091c19e9-6bf2-42d4-b35f-faa9b7eec130", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-15T14:28:59.000Z" + }, + "end": { + "$date": "2021-09-15T14:39:40.000Z" + }, + "events": [ + { + "uuid": "449514b9-73bb-4551-bb12-0f385896c536", + "start": { + "$date": "2021-09-15T14:28:59.000Z" + }, + "end": { + "$date": "2021-09-15T14:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "446fd365-d540-4487-b134-ee82833f8fa6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-15T14:39:50.000Z" + }, + "end": { + "$date": "2021-09-15T14:53:07.000Z" + }, + "events": [ + { + "uuid": "e85e9d8c-83d6-4b0e-8054-2b4747807590", + "start": { + "$date": "2021-09-15T14:39:50.000Z" + }, + "end": { + "$date": "2021-09-15T14:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "634e1c38-6b95-46a8-bb2a-ea87f9eb3545", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-15T14:46:24.000Z" + }, + "end": { + "$date": "2021-09-15T15:12:19.000Z" + }, + "events": [ + { + "uuid": "279294e8-a112-4e33-b798-8e8e87e98f58", + "start": { + "$date": "2021-09-15T14:46:24.000Z" + }, + "end": { + "$date": "2021-09-15T15:12:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c5da0b9f-75cf-447b-b9fa-f17a8c48367b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-15T14:54:39.000Z" + }, + "end": { + "$date": "2021-09-15T15:02:53.000Z" + }, + "events": [ + { + "uuid": "8ab43dd7-8256-48b3-b91d-fc71f536320d", + "start": { + "$date": "2021-09-15T14:54:39.000Z" + }, + "end": { + "$date": "2021-09-15T15:02:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53395d55-b1b2-4feb-9ba9-3968c90574b7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-15T15:13:03.000Z" + }, + "end": { + "$date": "2021-09-15T15:37:01.000Z" + }, + "events": [ + { + "uuid": "d0b0d668-4127-49d6-b9ae-65624b6ee79f", + "start": { + "$date": "2021-09-15T15:13:03.000Z" + }, + "end": { + "$date": "2021-09-15T15:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f297048-05a6-47cb-82d9-1f8a417b0ba4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-15T15:22:45.000Z" + }, + "end": { + "$date": "2021-09-15T15:51:32.000Z" + }, + "events": [ + { + "uuid": "c75dfc16-d6eb-411d-8539-6168adf4dc07", + "start": { + "$date": "2021-09-15T15:22:45.000Z" + }, + "end": { + "$date": "2021-09-15T15:51:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86676732-9dd7-46cc-bd97-a5b23fbc276c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-15T15:51:35.000Z" + }, + "end": { + "$date": "2021-09-15T15:53:14.000Z" + }, + "events": [ + { + "uuid": "1680c05b-acd2-4d48-8214-ddf93680f077", + "start": { + "$date": "2021-09-15T15:51:35.000Z" + }, + "end": { + "$date": "2021-09-15T15:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "3664fe10-8c25-4d22-923e-94d31862d0c3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-15T15:54:49.000Z" + }, + "end": { + "$date": "2021-09-15T16:02:45.000Z" + }, + "events": [ + { + "uuid": "14565194-dc04-4d8f-9265-1313e5454d21", + "start": { + "$date": "2021-09-15T15:54:49.000Z" + }, + "end": { + "$date": "2021-09-15T16:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "3026736c-cb1d-4ac9-b140-e080c514ac3d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-15T19:57:38.000Z" + }, + "end": { + "$date": "2021-09-15T20:03:59.000Z" + }, + "events": [ + { + "uuid": "9f1e3b42-781a-43cb-9764-6d2f9da79109", + "start": { + "$date": "2021-09-15T19:57:38.000Z" + }, + "end": { + "$date": "2021-09-15T20:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50e5bfab-410d-4da4-9a70-6d8fde0bb4e2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-15T20:38:09.000Z" + }, + "end": { + "$date": "2021-09-15T21:14:59.000Z" + }, + "events": [ + { + "uuid": "2916ef38-c237-4de5-ab02-ceae86e85c94", + "start": { + "$date": "2021-09-15T20:38:09.000Z" + }, + "end": { + "$date": "2021-09-15T21:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c23e27da-fcfc-4df0-acc7-8cea731f30b8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-15T23:43:15.000Z" + }, + "end": { + "$date": "2021-09-15T23:44:36.000Z" + }, + "events": [ + { + "uuid": "a5126b49-45ca-44b4-a4de-aabacd9c42d5", + "start": { + "$date": "2021-09-15T23:43:15.000Z" + }, + "end": { + "$date": "2021-09-15T23:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68a50d74-1731-4897-83dc-6557d2281443", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-15T23:45:00.000Z" + }, + "end": { + "$date": "2021-09-16T00:12:33.000Z" + }, + "events": [ + { + "uuid": "6284e4aa-4b35-47e5-803f-a6aa59161c49", + "start": { + "$date": "2021-09-15T23:45:00.000Z" + }, + "end": { + "$date": "2021-09-16T00:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d3e6b125-1eb2-4bfe-b44f-96993a3df153", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-16T00:01:07.000Z" + }, + "end": { + "$date": "2021-09-16T04:31:36.000Z" + }, + "events": [ + { + "uuid": "9274e6d9-2ad9-40ae-8b83-c3c5625ac028", + "start": { + "$date": "2021-09-16T00:01:07.000Z" + }, + "end": { + "$date": "2021-09-16T04:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be5ad986-f8d5-4db4-abf4-cafabbbd94cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T00:13:01.000Z" + }, + "end": { + "$date": "2021-09-16T01:30:33.000Z" + }, + "events": [ + { + "uuid": "a3c5ed3c-901f-4926-8158-d64ef6b21580", + "start": { + "$date": "2021-09-16T00:13:01.000Z" + }, + "end": { + "$date": "2021-09-16T01:30:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "536ab002-70d3-4f95-b08a-1473875c66a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-16T00:16:23.000Z" + }, + "end": { + "$date": "2021-09-16T00:18:48.000Z" + }, + "events": [ + { + "uuid": "7bf282cc-81cf-428e-bdc8-da3ae5b2032e", + "start": { + "$date": "2021-09-16T00:16:23.000Z" + }, + "end": { + "$date": "2021-09-16T00:18:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "328b7a88-bda4-4f58-80bc-f685ef034f29", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-16T00:20:43.000Z" + }, + "end": { + "$date": "2021-09-16T00:33:59.000Z" + }, + "events": [ + { + "uuid": "a95c9d0d-61af-4272-bf51-96595fe274a8", + "start": { + "$date": "2021-09-16T00:20:43.000Z" + }, + "end": { + "$date": "2021-09-16T00:33:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "9ae2c799-e99b-448b-ab32-a7118b4d259d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-16T01:12:28.000Z" + }, + "end": { + "$date": "2021-09-16T03:18:55.000Z" + }, + "events": [ + { + "uuid": "f39815c2-dc8b-4c34-bac0-c04d9d428516", + "start": { + "$date": "2021-09-16T01:12:28.000Z" + }, + "end": { + "$date": "2021-09-16T03:18:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "38d27a7b-9370-4d8f-b404-806e21dd7597", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-16T01:13:23.000Z" + }, + "end": { + "$date": "2021-09-16T03:42:30.000Z" + }, + "events": [ + { + "uuid": "b7d1572a-39f8-4330-a9c5-7b41ca9b4cdf", + "start": { + "$date": "2021-09-16T01:13:23.000Z" + }, + "end": { + "$date": "2021-09-16T03:42:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "601f0242-7350-49d4-99a8-7f09f0e3a4b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-16T01:25:09.000Z" + }, + "end": { + "$date": "2021-09-16T03:42:54.000Z" + }, + "events": [ + { + "uuid": "0dc370a2-35ef-4c72-ae11-4a5a89edd62f", + "start": { + "$date": "2021-09-16T01:25:09.000Z" + }, + "end": { + "$date": "2021-09-16T03:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "c75c2907-5c5f-40da-a5ce-b17111154297", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T01:28:14.000Z" + }, + "end": { + "$date": "2021-09-16T03:42:39.000Z" + }, + "events": [ + { + "uuid": "644f85da-f836-4f56-8e77-90c55511e4c8", + "start": { + "$date": "2021-09-16T01:28:14.000Z" + }, + "end": { + "$date": "2021-09-16T03:42:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "58e93817-077d-4be5-b56a-51c7087bbe05", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T01:32:24.000Z" + }, + "end": { + "$date": "2021-09-16T02:16:40.000Z" + }, + "events": [ + { + "uuid": "3a70019f-0077-47fc-ae1b-ea2b51331ed5", + "start": { + "$date": "2021-09-16T01:32:24.000Z" + }, + "end": { + "$date": "2021-09-16T02:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "fea77d14-7418-437b-a3a2-374ef33c4f60", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-16T01:44:36.000Z" + }, + "end": { + "$date": "2021-09-16T02:33:17.000Z" + }, + "events": [ + { + "uuid": "559b4bd5-f89b-4917-8190-9ab0729e48c2", + "start": { + "$date": "2021-09-16T01:44:36.000Z" + }, + "end": { + "$date": "2021-09-16T02:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9e1a2303-073e-417e-894f-9406b8067aa4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-16T05:10:49.000Z" + }, + "end": { + "$date": "2021-09-16T05:45:14.000Z" + }, + "events": [ + { + "uuid": "6ec52634-1fd3-4197-8227-c467b184d4a3", + "start": { + "$date": "2021-09-16T05:10:49.000Z" + }, + "end": { + "$date": "2021-09-16T05:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90fd13ad-1267-4b2a-99f3-8ba799bf3350", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T02:02:04.000Z" + }, + "end": { + "$date": "2021-09-16T02:32:28.000Z" + }, + "events": [ + { + "uuid": "fa46f9f0-9977-4721-9c3a-3ffa551051be", + "start": { + "$date": "2021-09-16T02:02:04.000Z" + }, + "end": { + "$date": "2021-09-16T02:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "025e6644-f290-442f-a7d5-10968496289c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T02:54:31.000Z" + }, + "end": { + "$date": "2021-09-16T03:29:41.000Z" + }, + "events": [ + { + "uuid": "e08081ce-e94a-4df3-83de-05ab4be36f36", + "start": { + "$date": "2021-09-16T02:54:31.000Z" + }, + "end": { + "$date": "2021-09-16T03:29:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b78edcd-751a-4a70-9731-9f9ebeb3cd44", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T02:56:09.000Z" + }, + "end": { + "$date": "2021-09-16T03:29:39.000Z" + }, + "events": [ + { + "uuid": "3ed32aeb-4e20-4f55-851d-6f03ea91f28a", + "start": { + "$date": "2021-09-16T02:56:09.000Z" + }, + "end": { + "$date": "2021-09-16T03:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1fd27c0-5e14-4bf6-a73d-aad90e4f2666", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-16T03:56:10.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:45.000Z" + }, + "events": [ + { + "uuid": "1dcdc4df-d359-4f78-ba2f-e6c64a27d756", + "start": { + "$date": "2021-09-16T03:56:10.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1dba448a-7697-40b2-8579-79b731eeb00d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T03:55:22.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:29.000Z" + }, + "events": [ + { + "uuid": "91ae6cf5-2809-4f98-a34f-b761a1231097", + "start": { + "$date": "2021-09-16T03:55:22.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91563b1c-fddc-4f9f-8662-2dff5296c80d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-16T03:55:27.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:27.000Z" + }, + "events": [ + { + "uuid": "db24d23f-7c0e-4a68-afdb-0b92f08efa9f", + "start": { + "$date": "2021-09-16T03:55:27.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "136a1975-a76e-4ae3-a828-9569710e713c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T03:55:26.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:41.000Z" + }, + "events": [ + { + "uuid": "d3f6207e-7958-46f0-bec9-1e73d1ff4ec3", + "start": { + "$date": "2021-09-16T03:55:26.000Z" + }, + "end": { + "$date": "2021-09-16T04:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ba58bc6-7db0-4ef2-b3ed-f428bc8af5ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-16T04:38:16.000Z" + }, + "end": { + "$date": "2021-09-16T05:07:01.000Z" + }, + "events": [ + { + "uuid": "1965714e-ee6f-4787-9402-7218e1c7ec21", + "start": { + "$date": "2021-09-16T04:38:16.000Z" + }, + "end": { + "$date": "2021-09-16T05:07:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5f34988-b36e-4e63-8c98-ab556d876156", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-16T04:38:14.000Z" + }, + "end": { + "$date": "2021-09-16T05:06:53.000Z" + }, + "events": [ + { + "uuid": "7416d78b-04b1-48f9-a721-250f4b5b8375", + "start": { + "$date": "2021-09-16T04:38:14.000Z" + }, + "end": { + "$date": "2021-09-16T05:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "601b389e-ac9c-493c-91ec-f826dbdf249e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T04:38:09.000Z" + }, + "end": { + "$date": "2021-09-16T05:06:59.000Z" + }, + "events": [ + { + "uuid": "00feac39-8c69-4fbc-b808-07ce2227ee72", + "start": { + "$date": "2021-09-16T04:38:09.000Z" + }, + "end": { + "$date": "2021-09-16T05:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a447f7e9-e641-44c9-a369-2d29facc0078", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T04:38:12.000Z" + }, + "end": { + "$date": "2021-09-16T05:06:57.000Z" + }, + "events": [ + { + "uuid": "d6b49147-c702-4b46-b2b7-ab8ae977ce4c", + "start": { + "$date": "2021-09-16T04:38:12.000Z" + }, + "end": { + "$date": "2021-09-16T05:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "1d5e2ea6-9428-4e3e-8171-b63f9ce6daf6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-16T04:36:08.000Z" + }, + "end": { + "$date": "2021-09-16T05:37:06.000Z" + }, + "events": [ + { + "uuid": "f9f26471-cca5-422f-a1ae-7cf55fb2b7ad", + "start": { + "$date": "2021-09-16T04:36:08.000Z" + }, + "end": { + "$date": "2021-09-16T05:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d9e39ee-0bbe-4aef-ae4c-8a4f814a2790", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-16T05:11:04.000Z" + }, + "end": { + "$date": "2021-09-16T05:43:06.000Z" + }, + "events": [ + { + "uuid": "df9eaab3-dd18-4b8a-a76a-3ecded4b58b1", + "start": { + "$date": "2021-09-16T05:11:04.000Z" + }, + "end": { + "$date": "2021-09-16T05:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afd1b8b6-9f24-4580-ba53-3f650cee1ad7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-16T05:11:00.000Z" + }, + "end": { + "$date": "2021-09-16T05:42:59.000Z" + }, + "events": [ + { + "uuid": "d8d08d28-e4eb-4ae8-be81-319f32d9c8e2", + "start": { + "$date": "2021-09-16T05:11:00.000Z" + }, + "end": { + "$date": "2021-09-16T05:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ae22d89-8dcf-4880-b2b8-3463cda249c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T05:10:59.000Z" + }, + "end": { + "$date": "2021-09-16T05:43:01.000Z" + }, + "events": [ + { + "uuid": "a0794bf1-65ea-4d30-8a8c-37377423bccb", + "start": { + "$date": "2021-09-16T05:10:59.000Z" + }, + "end": { + "$date": "2021-09-16T05:43:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15427d1d-f56e-4c50-a330-520834bacdd2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T05:12:37.000Z" + }, + "end": { + "$date": "2021-09-16T05:43:08.000Z" + }, + "events": [ + { + "uuid": "0883440c-93b6-4d72-b8f5-b8b6a59a9bd8", + "start": { + "$date": "2021-09-16T05:12:37.000Z" + }, + "end": { + "$date": "2021-09-16T05:43:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb52e001-f484-4bbc-a9ec-df30f1f13626", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-16T05:38:38.000Z" + }, + "end": { + "$date": "2021-09-16T06:01:39.000Z" + }, + "events": [ + { + "uuid": "175697f3-3b90-439d-8979-f7b20cfc6c04", + "start": { + "$date": "2021-09-16T05:38:38.000Z" + }, + "end": { + "$date": "2021-09-16T06:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e21d5f2b-0027-4a61-934b-ebf97dc682ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-16T05:48:15.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:21.000Z" + }, + "events": [ + { + "uuid": "33963bc3-8d1a-4e43-bece-ec91ee2a5d24", + "start": { + "$date": "2021-09-16T05:48:15.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b92d408d-662d-4c1d-bbd5-e78b27e14a14", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-16T05:49:31.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:30.000Z" + }, + "events": [ + { + "uuid": "1d5ba28d-92dd-472f-b5dc-103957b0e54a", + "start": { + "$date": "2021-09-16T05:49:31.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2aa46dd-4a70-4e10-b005-12fc1a384617", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-16T05:47:51.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:25.000Z" + }, + "events": [ + { + "uuid": "b118793c-6e10-4ed1-bc5a-fb0e6464d377", + "start": { + "$date": "2021-09-16T05:47:51.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc023326-76ee-4485-8992-512a8c3865f7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T05:47:48.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:35.000Z" + }, + "events": [ + { + "uuid": "78c595c5-dd0a-4ccc-9f68-5f48ca4c8731", + "start": { + "$date": "2021-09-16T05:47:48.000Z" + }, + "end": { + "$date": "2021-09-16T06:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84c107cd-bada-48eb-8e28-df008764a440", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-16T06:15:54.000Z" + }, + "end": { + "$date": "2021-09-16T06:46:06.000Z" + }, + "events": [ + { + "uuid": "c8f919d4-b8dc-4c91-a0ca-245af6ce5e3c", + "start": { + "$date": "2021-09-16T06:15:54.000Z" + }, + "end": { + "$date": "2021-09-16T06:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1789c7cb-a3df-4e88-b49f-ab43e51a86e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-16T06:46:32.000Z" + }, + "end": { + "$date": "2021-09-16T06:48:16.000Z" + }, + "events": [ + { + "uuid": "25ed90c1-0d3e-48e3-bb1a-364b25f2ab82", + "start": { + "$date": "2021-09-16T06:46:32.000Z" + }, + "end": { + "$date": "2021-09-16T06:48:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5efd0e27-dd79-49da-ac82-5e71ad59f6b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-16T06:53:37.000Z" + }, + "end": { + "$date": "2021-09-16T08:22:43.000Z" + }, + "events": [ + { + "uuid": "136e7a55-19ae-4d39-8bd4-c9dcc916bc63", + "start": { + "$date": "2021-09-16T06:53:37.000Z" + }, + "end": { + "$date": "2021-09-16T08:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "9df3cda7-e4ff-4400-a713-34ba0a0b2441", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T09:16:57.000Z" + }, + "end": { + "$date": "2021-09-16T11:46:09.000Z" + }, + "events": [ + { + "uuid": "8581e80b-3a07-43ac-a14f-29a8f2921fe5", + "start": { + "$date": "2021-09-16T09:16:57.000Z" + }, + "end": { + "$date": "2021-09-16T11:46:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "92ac196c-6ab3-4f21-8bad-b67ae5e98c49", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T11:46:19.000Z" + }, + "end": { + "$date": "2021-09-16T11:55:46.000Z" + }, + "events": [ + { + "uuid": "f7712df0-d068-432f-800c-2156af507746", + "start": { + "$date": "2021-09-16T11:46:19.000Z" + }, + "end": { + "$date": "2021-09-16T11:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75f2ad91-49e7-4105-aad1-322245ed5015", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T15:13:26.000Z" + }, + "end": { + "$date": "2021-09-16T15:35:19.000Z" + }, + "events": [ + { + "uuid": "8a4ec678-b82b-4076-8257-5d357bafd040", + "start": { + "$date": "2021-09-16T15:13:26.000Z" + }, + "end": { + "$date": "2021-09-16T15:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "579194ce-7773-42b1-9fc9-ff5424766b55", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T16:07:15.000Z" + }, + "end": { + "$date": "2021-09-16T16:24:48.000Z" + }, + "events": [ + { + "uuid": "4fd5a871-71ac-487f-ad63-e62c2ef92f0d", + "start": { + "$date": "2021-09-16T16:07:15.000Z" + }, + "end": { + "$date": "2021-09-16T16:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e2fc0c8-b6b5-46cf-9c21-49cf0b748821", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T16:30:50.000Z" + }, + "end": { + "$date": "2021-09-16T16:59:14.000Z" + }, + "events": [ + { + "uuid": "693441ee-15fe-4d14-a868-1779a66478de", + "start": { + "$date": "2021-09-16T16:30:50.000Z" + }, + "end": { + "$date": "2021-09-16T16:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a24e7ac6-057d-473a-aa83-22ce38f62562", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-16T16:54:55.000Z" + }, + "end": { + "$date": "2021-09-16T17:55:28.000Z" + }, + "events": [ + { + "uuid": "f4a3165a-89b1-436f-ba52-ee6682749eaa", + "start": { + "$date": "2021-09-16T16:54:55.000Z" + }, + "end": { + "$date": "2021-09-16T17:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "813b2eb7-95e3-48b4-8501-ade4b37f036b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T17:50:20.000Z" + }, + "end": { + "$date": "2021-09-16T18:15:44.000Z" + }, + "events": [ + { + "uuid": "eac9f91b-6165-4888-8e3a-ae0744b2a7c0", + "start": { + "$date": "2021-09-16T17:50:20.000Z" + }, + "end": { + "$date": "2021-09-16T18:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "27a175c3-1477-4a21-a695-9b1909602c19", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-16T18:24:53.000Z" + }, + "end": { + "$date": "2021-09-16T19:09:59.000Z" + }, + "events": [ + { + "uuid": "ba8705ed-e881-4e52-864a-a743f6d6f026", + "start": { + "$date": "2021-09-16T18:24:53.000Z" + }, + "end": { + "$date": "2021-09-16T19:09:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "abf83c8b-8abd-48da-8a7a-1e73f8e3ced7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-16T19:10:31.000Z" + }, + "end": { + "$date": "2021-09-16T19:29:11.000Z" + }, + "events": [ + { + "uuid": "4b21594e-6243-4212-a713-0256607bd748", + "start": { + "$date": "2021-09-16T19:10:31.000Z" + }, + "end": { + "$date": "2021-09-16T19:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "cce1e69a-3c1d-4abf-a226-d3c292ab0b71", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-16T21:06:14.000Z" + }, + "end": { + "$date": "2021-09-16T21:56:44.000Z" + }, + "events": [ + { + "uuid": "1f8baad4-987f-40f9-ab3b-9af1621c8103", + "start": { + "$date": "2021-09-16T21:06:14.000Z" + }, + "end": { + "$date": "2021-09-16T21:56:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "6191555e-8643-4419-bc6e-8759d2062b32", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-16T21:09:16.000Z" + }, + "end": { + "$date": "2021-09-17T04:25:26.000Z" + }, + "events": [ + { + "uuid": "f4e85136-db7f-464d-a3ca-d1efe11f3b62", + "start": { + "$date": "2021-09-16T21:09:16.000Z" + }, + "end": { + "$date": "2021-09-17T00:53:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25882ec0-f81b-4636-9cd1-20a191b6f5b7", + "start": { + "$date": "2021-09-17T00:53:16.000Z" + }, + "end": { + "$date": "2021-09-17T01:08:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b9161ee7-76b7-4404-9c83-cb91a7da66cd", + "start": { + "$date": "2021-09-17T01:08:16.000Z" + }, + "end": { + "$date": "2021-09-17T03:31:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49c71503-d910-4eee-b364-686681b517e6", + "start": { + "$date": "2021-09-17T03:31:16.000Z" + }, + "end": { + "$date": "2021-09-17T03:37:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1d753b47-2a14-4186-8a87-b88e0baff98b", + "start": { + "$date": "2021-09-17T03:37:16.000Z" + }, + "end": { + "$date": "2021-09-17T03:39:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebba468f-b136-4bcc-ac44-3ea432082905", + "start": { + "$date": "2021-09-17T03:39:16.000Z" + }, + "end": { + "$date": "2021-09-17T03:41:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45f700e5-e900-4371-b1f1-8878211e956f", + "start": { + "$date": "2021-09-17T03:41:16.000Z" + }, + "end": { + "$date": "2021-09-17T04:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9ea4a96e-73f9-44c4-b7eb-2004bfccb4be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-17T00:40:19.000Z" + }, + "end": { + "$date": "2021-09-17T00:55:48.000Z" + }, + "events": [ + { + "uuid": "84b31fba-d5d6-4a92-a918-b8e430eb2f70", + "start": { + "$date": "2021-09-17T00:40:19.000Z" + }, + "end": { + "$date": "2021-09-17T02:35:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f8c9732-8428-42a7-bb9c-9776bbb9d048", + "start": { + "$date": "2021-09-17T02:35:19.000Z" + }, + "end": { + "$date": "2021-09-17T00:55:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5f52fa5f-0a84-45b3-b306-a359a89f2861", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-17T00:33:08.000Z" + }, + "end": { + "$date": "2021-09-17T01:51:18.000Z" + }, + "events": [ + { + "uuid": "7efd4820-6660-4f61-ad5f-b16d6f4bd33b", + "start": { + "$date": "2021-09-17T00:33:08.000Z" + }, + "end": { + "$date": "2021-09-17T01:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3f88f9f4-eb69-463c-8983-a900ac825dea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T01:30:38.000Z" + }, + "end": { + "$date": "2021-09-17T01:47:37.000Z" + }, + "events": [ + { + "uuid": "d1dc778f-1216-4c36-ae29-08891ed2fbb1", + "start": { + "$date": "2021-09-17T01:30:38.000Z" + }, + "end": { + "$date": "2021-09-17T01:47:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96b79b6f-50af-4990-a3fd-9ac4885b76db", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-17T01:57:55.000Z" + }, + "end": { + "$date": "2021-09-17T04:35:09.000Z" + }, + "events": [ + { + "uuid": "78386702-c46d-4d4b-85ac-a832dffdd00c", + "start": { + "$date": "2021-09-17T01:57:55.000Z" + }, + "end": { + "$date": "2021-09-17T04:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7e2ae2fa-234c-4be8-81dd-73f7240214c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-17T02:02:30.000Z" + }, + "end": { + "$date": "2021-09-17T03:33:17.000Z" + }, + "events": [ + { + "uuid": "c334dbfa-ff8a-4241-8845-5a1edfc0fa98", + "start": { + "$date": "2021-09-17T02:02:30.000Z" + }, + "end": { + "$date": "2021-09-17T02:19:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89982b16-f15e-40c6-a488-ccf930024f56", + "start": { + "$date": "2021-09-17T02:19:30.000Z" + }, + "end": { + "$date": "2021-09-17T02:23:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41970ce4-1490-4a61-b755-e7813ca5d53c", + "start": { + "$date": "2021-09-17T02:23:30.000Z" + }, + "end": { + "$date": "2021-09-17T03:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d84d6f10-60e1-45fa-9766-c143ee82db2c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-17T04:15:24.000Z" + }, + "end": { + "$date": "2021-09-17T04:16:49.000Z" + }, + "events": [ + { + "uuid": "2b855552-4c9a-476e-886a-63e88ef92d7e", + "start": { + "$date": "2021-09-17T04:15:24.000Z" + }, + "end": { + "$date": "2021-09-17T04:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "474ce3fc-4236-4c3d-9327-bd7af5e35735", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-17T02:13:44.000Z" + }, + "end": { + "$date": "2021-09-17T04:35:26.000Z" + }, + "events": [ + { + "uuid": "7414e1e2-210b-4e1d-9bd3-41f36d9a40fc", + "start": { + "$date": "2021-09-17T02:13:44.000Z" + }, + "end": { + "$date": "2021-09-17T04:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecf74385-84f4-4eec-b2b1-b48fc248ae0b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-17T03:11:42.000Z" + }, + "end": { + "$date": "2021-09-17T03:13:02.000Z" + }, + "events": [ + { + "uuid": "c48ee91e-b474-4783-86bd-264b02df307e", + "start": { + "$date": "2021-09-17T03:11:42.000Z" + }, + "end": { + "$date": "2021-09-17T03:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "587646dd-1515-433f-80c5-2e949731c01a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-17T04:20:11.000Z" + }, + "end": { + "$date": "2021-09-17T04:20:29.000Z" + }, + "events": [ + { + "uuid": "b728b897-4844-4f97-885a-494e1429cac6", + "start": { + "$date": "2021-09-17T04:20:11.000Z" + }, + "end": { + "$date": "2021-09-17T04:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b4edb96-bb99-48a3-bc2e-8b34ef6cb83e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-17T03:18:42.000Z" + }, + "end": { + "$date": "2021-09-17T03:49:32.000Z" + }, + "events": [ + { + "uuid": "bc85ca12-9e2b-4bac-b7fa-bd607bb1e791", + "start": { + "$date": "2021-09-17T03:18:42.000Z" + }, + "end": { + "$date": "2021-09-17T03:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94996536-b80e-4539-bd89-6d37a5a77145", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-17T03:28:53.000Z" + }, + "end": { + "$date": "2021-09-17T03:55:03.000Z" + }, + "events": [ + { + "uuid": "efdbf898-e1ec-4a1c-be0b-508bece29d26", + "start": { + "$date": "2021-09-17T03:28:53.000Z" + }, + "end": { + "$date": "2021-09-17T03:55:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e1801f91-0146-42d5-b5a2-ac38ba062cfe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-17T03:32:58.000Z" + }, + "end": { + "$date": "2021-09-17T04:12:39.000Z" + }, + "events": [ + { + "uuid": "2da7c2ef-1f8b-42d1-9d59-899df4a6ae83", + "start": { + "$date": "2021-09-17T03:32:58.000Z" + }, + "end": { + "$date": "2021-09-17T03:45:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4876ceb6-dec7-4700-82ed-ed3fb2c5ca81", + "start": { + "$date": "2021-09-17T03:45:58.000Z" + }, + "end": { + "$date": "2021-09-17T03:50:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8863887f-fb3f-46f7-ba56-cf2b26c84457", + "start": { + "$date": "2021-09-17T03:50:58.000Z" + }, + "end": { + "$date": "2021-09-17T04:09:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d76937e0-4860-4b74-a7dc-7ddf35eb6fe2", + "start": { + "$date": "2021-09-17T04:09:58.000Z" + }, + "end": { + "$date": "2021-09-17T04:12:39.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfdb7894-ea4a-481f-8d96-9480fba59b2e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T03:54:34.000Z" + }, + "end": { + "$date": "2021-09-17T04:20:14.000Z" + }, + "events": [ + { + "uuid": "2c68d92d-2199-47f3-9e99-44e3afeea6c2", + "start": { + "$date": "2021-09-17T03:54:34.000Z" + }, + "end": { + "$date": "2021-09-17T04:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57421fee-0d8c-41f7-9df7-4305daf44f6f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-17T04:02:19.000Z" + }, + "end": { + "$date": "2021-09-17T04:37:24.000Z" + }, + "events": [ + { + "uuid": "c6a3efcb-86c7-4194-b14d-13ff86a65f02", + "start": { + "$date": "2021-09-17T04:02:19.000Z" + }, + "end": { + "$date": "2021-09-17T04:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6569210-4c4d-4724-9860-32659b3406d1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-17T04:21:00.000Z" + }, + "end": { + "$date": "2021-09-17T04:38:52.000Z" + }, + "events": [ + { + "uuid": "71902ecc-7627-47cc-bc42-695ef8d1babc", + "start": { + "$date": "2021-09-17T04:21:00.000Z" + }, + "end": { + "$date": "2021-09-17T04:38:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ed8b312a-f7a5-4e35-b1f4-ce9021a7fc83", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-17T04:33:15.000Z" + }, + "end": { + "$date": "2021-09-17T05:44:01.000Z" + }, + "events": [ + { + "uuid": "36db02c4-938b-4d39-a801-2e08ab929542", + "start": { + "$date": "2021-09-17T04:33:15.000Z" + }, + "end": { + "$date": "2021-09-17T05:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d121118-5a6b-4afb-968d-55d97710c5fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T04:41:37.000Z" + }, + "end": { + "$date": "2021-09-17T05:20:46.000Z" + }, + "events": [ + { + "uuid": "cb2e6018-af02-4b31-b5b5-d8bbb900bb32", + "start": { + "$date": "2021-09-17T04:41:37.000Z" + }, + "end": { + "$date": "2021-09-17T05:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb44c92b-b009-43f6-b363-e094ba00e8d0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-17T04:41:44.000Z" + }, + "end": { + "$date": "2021-09-17T05:20:35.000Z" + }, + "events": [ + { + "uuid": "77de80cb-86d1-43a5-9f2d-d2235d130a68", + "start": { + "$date": "2021-09-17T04:41:44.000Z" + }, + "end": { + "$date": "2021-09-17T05:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4839047-2d76-47d0-8c83-94a75777d121", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-17T04:43:12.000Z" + }, + "end": { + "$date": "2021-09-17T05:20:33.000Z" + }, + "events": [ + { + "uuid": "8916267f-cf35-47a4-bcd2-ff3ff7725b4e", + "start": { + "$date": "2021-09-17T04:43:12.000Z" + }, + "end": { + "$date": "2021-09-17T05:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2c55f63f-f2c4-43da-a675-6a20d41f77f0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-17T05:17:22.000Z" + }, + "end": { + "$date": "2021-09-17T07:19:42.000Z" + }, + "events": [ + { + "uuid": "833aa722-8c7d-4cdb-adc8-e179b9495468", + "start": { + "$date": "2021-09-17T05:17:22.000Z" + }, + "end": { + "$date": "2021-09-17T07:19:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a189b80-3144-4393-bf9f-6126865c838b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T05:23:39.000Z" + }, + "end": { + "$date": "2021-09-17T05:41:35.000Z" + }, + "events": [ + { + "uuid": "c802b381-2c51-4cd1-a716-49e8dfa53ad3", + "start": { + "$date": "2021-09-17T05:23:39.000Z" + }, + "end": { + "$date": "2021-09-17T05:41:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7945e328-4b7d-4704-825e-03238dab2114", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-17T05:24:00.000Z" + }, + "end": { + "$date": "2021-09-17T05:41:25.000Z" + }, + "events": [ + { + "uuid": "8b846b42-ce93-4ca8-b880-54c2ba84f543", + "start": { + "$date": "2021-09-17T05:24:00.000Z" + }, + "end": { + "$date": "2021-09-17T05:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af340a7d-4f25-42d0-b2ed-8d5c286ea191", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-17T05:22:42.000Z" + }, + "end": { + "$date": "2021-09-17T05:41:28.000Z" + }, + "events": [ + { + "uuid": "64f00c16-8a9f-4634-a031-8aeade493d4c", + "start": { + "$date": "2021-09-17T05:22:42.000Z" + }, + "end": { + "$date": "2021-09-17T05:41:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b67cc209-aea8-45d9-84cd-4aad7ec7bff4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T05:44:25.000Z" + }, + "end": { + "$date": "2021-09-17T05:59:28.000Z" + }, + "events": [ + { + "uuid": "86c16a96-2ffb-4136-80bb-d11e21de585e", + "start": { + "$date": "2021-09-17T05:44:25.000Z" + }, + "end": { + "$date": "2021-09-17T05:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a18c9d52-69ca-477f-b801-cccb29ceeac9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-17T05:44:25.000Z" + }, + "end": { + "$date": "2021-09-17T05:59:16.000Z" + }, + "events": [ + { + "uuid": "f85dbfb1-7307-4985-b498-853b9efc77b6", + "start": { + "$date": "2021-09-17T05:44:25.000Z" + }, + "end": { + "$date": "2021-09-17T05:59:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "993b4126-4763-468d-aa7d-dec5b96a462a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-17T05:43:38.000Z" + }, + "end": { + "$date": "2021-09-17T05:59:23.000Z" + }, + "events": [ + { + "uuid": "a4ab48f9-b4d3-4be7-9a4e-97e23c7c4031", + "start": { + "$date": "2021-09-17T05:43:38.000Z" + }, + "end": { + "$date": "2021-09-17T05:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7fc5b109-11d1-4efe-ae62-5d6296f2a4d0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-17T06:37:47.000Z" + }, + "end": { + "$date": "2021-09-17T06:37:52.000Z" + }, + "events": [ + { + "uuid": "60880667-d681-43db-9052-fc0178577f7c", + "start": { + "$date": "2021-09-17T06:37:47.000Z" + }, + "end": { + "$date": "2021-09-17T06:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "0fa84455-dc31-4d21-8089-1269c2b9498a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-17T09:35:32.000Z" + }, + "end": { + "$date": "2021-09-17T11:21:01.000Z" + }, + "events": [ + { + "uuid": "b894933e-149e-4767-8a4c-bcf6e17ae6c5", + "start": { + "$date": "2021-09-17T09:35:32.000Z" + }, + "end": { + "$date": "2021-09-17T11:21:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05fd7762-8dbf-49fd-ae77-21549df2bd77", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-17T17:37:00.000Z" + }, + "end": { + "$date": "2021-09-17T18:21:16.000Z" + }, + "events": [ + { + "uuid": "f5af5d98-cc7c-42a0-827c-78b8484f0d2e", + "start": { + "$date": "2021-09-17T17:37:00.000Z" + }, + "end": { + "$date": "2021-09-17T18:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d4e7d21-3743-43cd-8c2e-459c5e4b022c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-17T18:42:42.000Z" + }, + "end": { + "$date": "2021-09-17T19:09:37.000Z" + }, + "events": [ + { + "uuid": "ad4dcb0a-3f93-4def-a6af-65747e0a6566", + "start": { + "$date": "2021-09-17T18:42:42.000Z" + }, + "end": { + "$date": "2021-09-17T19:09:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "f2b51d3b-fe2c-4659-8041-a8191ddefa7e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-17T20:28:13.000Z" + }, + "end": { + "$date": "2021-09-17T21:54:34.000Z" + }, + "events": [ + { + "uuid": "8b5d1db2-5f90-4301-a387-802dafbe7be8", + "start": { + "$date": "2021-09-17T20:28:13.000Z" + }, + "end": { + "$date": "2021-09-17T21:54:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61a320a8-1423-48d4-9e2f-95808137a37e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-17T20:45:42.000Z" + }, + "end": { + "$date": "2021-09-17T21:10:33.000Z" + }, + "events": [ + { + "uuid": "5bb99680-6b95-4235-a154-0bb91f5f0bec", + "start": { + "$date": "2021-09-17T20:45:42.000Z" + }, + "end": { + "$date": "2021-09-17T21:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "470d99b5-44cd-4ddf-a084-bedbaf776b48", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-17T21:26:20.000Z" + }, + "end": { + "$date": "2021-09-18T05:43:27.000Z" + }, + "events": [ + { + "uuid": "007b2a56-c272-4f07-b201-4eba42f0d84b", + "start": { + "$date": "2021-09-17T21:26:20.000Z" + }, + "end": { + "$date": "2021-09-17T21:46:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "368c8c75-632c-4d2b-9dc8-bf212dbe28f8", + "start": { + "$date": "2021-09-17T21:46:20.000Z" + }, + "end": { + "$date": "2021-09-17T21:51:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1e32cfc-7b6c-479b-bec1-843e2ae86977", + "start": { + "$date": "2021-09-17T21:51:20.000Z" + }, + "end": { + "$date": "2021-09-17T22:01:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "92c1a7fc-9346-417a-bb2e-524f617523a5", + "start": { + "$date": "2021-09-17T22:01:20.000Z" + }, + "end": { + "$date": "2021-09-17T22:24:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ede5f45d-c330-4264-a9b4-916376522122", + "start": { + "$date": "2021-09-17T22:24:20.000Z" + }, + "end": { + "$date": "2021-09-18T02:59:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63b9fe45-2945-4948-b2d9-05df8f900726", + "start": { + "$date": "2021-09-18T02:59:20.000Z" + }, + "end": { + "$date": "2021-09-18T03:01:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5cd65abe-d74e-43a2-9bf4-9c1bdb900ebb", + "start": { + "$date": "2021-09-18T03:01:20.000Z" + }, + "end": { + "$date": "2021-09-18T05:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e649a11d-221c-4ad3-ac3e-629fb8b83746", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T21:51:14.000Z" + }, + "end": { + "$date": "2021-09-17T22:18:02.000Z" + }, + "events": [ + { + "uuid": "338378c8-c13d-449a-b4ce-ce4b6cbc66e1", + "start": { + "$date": "2021-09-17T21:51:14.000Z" + }, + "end": { + "$date": "2021-09-17T22:18:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca428599-7d89-4fd8-817e-410c14904ec3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-17T21:51:20.000Z" + }, + "end": { + "$date": "2021-09-17T22:17:46.000Z" + }, + "events": [ + { + "uuid": "4ed7aa79-5fd1-4d53-9207-a6b0c795db19", + "start": { + "$date": "2021-09-17T21:51:20.000Z" + }, + "end": { + "$date": "2021-09-17T22:17:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "51abbebc-4cd3-4c13-91d0-d691f0fd2adc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T02:26:25.000Z" + }, + "end": { + "$date": "2021-09-18T02:55:41.000Z" + }, + "events": [ + { + "uuid": "26dc452a-749c-492b-b843-d8a1d29be374", + "start": { + "$date": "2021-09-18T02:26:25.000Z" + }, + "end": { + "$date": "2021-09-18T02:39:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c2a2f53-3d40-4307-8548-ab518be6278c", + "start": { + "$date": "2021-09-18T02:39:25.000Z" + }, + "end": { + "$date": "2021-09-18T03:11:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4a2355c0-7c29-40e1-8f45-d7d30fc5d04a", + "start": { + "$date": "2021-09-18T03:11:25.000Z" + }, + "end": { + "$date": "2021-09-18T06:00:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3bd391b1-6504-4d56-9e6a-7add9ac78d0b", + "start": { + "$date": "2021-09-18T06:00:25.000Z" + }, + "end": { + "$date": "2021-09-18T06:20:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "11d96ed5-4c66-4aad-814f-25baab709966", + "start": { + "$date": "2021-09-18T06:20:25.000Z" + }, + "end": { + "$date": "2021-09-18T02:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3da5717-3341-4dc5-bbdc-a058ba4b3d81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T22:19:44.000Z" + }, + "end": { + "$date": "2021-09-17T22:21:43.000Z" + }, + "events": [ + { + "uuid": "039e9fa6-e191-4180-afc6-c0b585838b28", + "start": { + "$date": "2021-09-17T22:19:44.000Z" + }, + "end": { + "$date": "2021-09-17T22:21:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c24e2692-6848-4165-9d04-3aca8f026590", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-17T23:29:14.000Z" + }, + "end": { + "$date": "2021-09-17T23:29:24.000Z" + }, + "events": [ + { + "uuid": "2e4347e7-fd72-49be-83ee-02b20d0b6ce8", + "start": { + "$date": "2021-09-17T23:29:14.000Z" + }, + "end": { + "$date": "2021-09-17T23:29:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f235d301-7fb7-45e8-b628-950d16d82cbb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-17T22:56:42.000Z" + }, + "end": { + "$date": "2021-09-18T00:13:56.000Z" + }, + "events": [ + { + "uuid": "dd61ee4b-cd49-474d-b23e-b697a856ab1b", + "start": { + "$date": "2021-09-17T22:56:42.000Z" + }, + "end": { + "$date": "2021-09-18T00:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "5a9a4e15-92c4-44c5-8a0b-8451bb25e02a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-18T00:35:20.000Z" + }, + "end": { + "$date": "2021-09-18T04:41:29.000Z" + }, + "events": [ + { + "uuid": "f9d384c3-787c-4308-9028-fb432edabcfc", + "start": { + "$date": "2021-09-18T00:35:20.000Z" + }, + "end": { + "$date": "2021-09-18T04:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "455e807d-b81f-48a2-800b-a4a0e9456b49", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-18T00:41:32.000Z" + }, + "end": { + "$date": "2021-09-18T02:22:05.000Z" + }, + "events": [ + { + "uuid": "b6fa37b8-942d-4f32-add4-08b1e9a52874", + "start": { + "$date": "2021-09-18T00:41:32.000Z" + }, + "end": { + "$date": "2021-09-18T02:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "97512bd0-2aab-4e7b-a827-7a44eb40bdd8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-18T01:27:11.000Z" + }, + "end": { + "$date": "2021-09-18T05:53:09.000Z" + }, + "events": [ + { + "uuid": "2f64bf19-8221-4265-a5fe-2efd50d935b9", + "start": { + "$date": "2021-09-18T01:27:11.000Z" + }, + "end": { + "$date": "2021-09-18T05:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "aa8c5a89-5a95-4b57-a68d-32bc6ebe5f45", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-18T02:02:34.000Z" + }, + "end": { + "$date": "2021-09-18T02:16:30.000Z" + }, + "events": [ + { + "uuid": "9698a8b6-0fe1-47a3-b056-0afc39982cf7", + "start": { + "$date": "2021-09-18T02:02:34.000Z" + }, + "end": { + "$date": "2021-09-18T02:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbaa20b8-4111-4f2a-becc-18d18cce1879", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-18T02:25:06.000Z" + }, + "end": { + "$date": "2021-09-18T02:55:41.000Z" + }, + "events": [ + { + "uuid": "35efde1c-f62a-4227-98d8-46b9f398992e", + "start": { + "$date": "2021-09-18T02:25:06.000Z" + }, + "end": { + "$date": "2021-09-18T02:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "730fdb0a-f92f-4353-b509-89abb082a2cf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-18T02:25:14.000Z" + }, + "end": { + "$date": "2021-09-18T05:08:28.000Z" + }, + "events": [ + { + "uuid": "b61ff80e-ada5-4dd3-b111-038d93b53e4c", + "start": { + "$date": "2021-09-18T02:25:14.000Z" + }, + "end": { + "$date": "2021-09-18T05:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0a5cd922-929e-48b2-9ff9-aac5d5dfa898", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-18T02:27:27.000Z" + }, + "end": { + "$date": "2021-09-18T05:08:59.000Z" + }, + "events": [ + { + "uuid": "a4af5d9b-156d-44f6-923c-7601ea7d1877", + "start": { + "$date": "2021-09-18T02:27:27.000Z" + }, + "end": { + "$date": "2021-09-18T05:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46469a00-b866-4f66-afc4-f64795f98934", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T03:10:21.000Z" + }, + "end": { + "$date": "2021-09-18T03:30:27.000Z" + }, + "events": [ + { + "uuid": "6032d29c-bffe-4732-8fc8-5be69a4c26fe", + "start": { + "$date": "2021-09-18T03:10:21.000Z" + }, + "end": { + "$date": "2021-09-18T03:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ed5bfc0-d853-413f-aa2b-b7a506c85c1c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-18T03:09:08.000Z" + }, + "end": { + "$date": "2021-09-18T03:30:28.000Z" + }, + "events": [ + { + "uuid": "8ee5abe6-8bf6-494e-b773-9f8c0520b987", + "start": { + "$date": "2021-09-18T03:09:08.000Z" + }, + "end": { + "$date": "2021-09-18T03:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0654e6ef-7e35-47f5-a89d-e0e0d011c1e7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T03:36:51.000Z" + }, + "end": { + "$date": "2021-09-18T04:01:42.000Z" + }, + "events": [ + { + "uuid": "cf84c549-c7a3-4b2f-9a9d-777e6bbeede4", + "start": { + "$date": "2021-09-18T03:36:51.000Z" + }, + "end": { + "$date": "2021-09-18T04:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0301675d-dee4-4814-9716-ea4e437def2a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-18T03:36:49.000Z" + }, + "end": { + "$date": "2021-09-18T04:01:54.000Z" + }, + "events": [ + { + "uuid": "6481e95a-428a-4339-af67-3fd2a1353c7b", + "start": { + "$date": "2021-09-18T03:36:49.000Z" + }, + "end": { + "$date": "2021-09-18T04:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3c72c6a2-e1c8-4de3-b85d-be682e6987d5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-18T05:09:10.000Z" + }, + "end": { + "$date": "2021-09-18T05:12:21.000Z" + }, + "events": [ + { + "uuid": "f287038f-1d70-48e3-994e-8f6378dc257d", + "start": { + "$date": "2021-09-18T05:09:10.000Z" + }, + "end": { + "$date": "2021-09-18T05:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "36d8141d-e4dd-48d2-8c10-b1f51c702c1c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-18T05:42:10.000Z" + }, + "end": { + "$date": "2021-09-18T10:23:43.000Z" + }, + "events": [ + { + "uuid": "2ca61b8a-c818-439f-96ff-53adcd5e9db0", + "start": { + "$date": "2021-09-18T05:42:10.000Z" + }, + "end": { + "$date": "2021-09-18T05:54:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2a133e4-87dc-4c72-8820-50b639c5e0c9", + "start": { + "$date": "2021-09-18T05:54:10.000Z" + }, + "end": { + "$date": "2021-09-18T06:06:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7b78a023-b406-4b19-a08b-fd25290a1f01", + "start": { + "$date": "2021-09-18T06:06:10.000Z" + }, + "end": { + "$date": "2021-09-18T10:23:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6db8986b-af62-43bc-8287-18cf30b31f45", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-18T07:29:43.000Z" + }, + "end": { + "$date": "2021-09-18T07:33:43.000Z" + }, + "events": [ + { + "uuid": "8ad88c9a-ed71-46d4-a8e2-1d0f95bdf2fa", + "start": { + "$date": "2021-09-18T07:29:43.000Z" + }, + "end": { + "$date": "2021-09-18T07:33:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "08d5d2ca-7a74-4c0f-8096-27f688497fc0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-18T07:51:22.000Z" + }, + "end": { + "$date": "2021-09-18T08:43:14.000Z" + }, + "events": [ + { + "uuid": "e6d8e302-0cc2-4e58-a198-68ce0a2b5b06", + "start": { + "$date": "2021-09-18T07:51:22.000Z" + }, + "end": { + "$date": "2021-09-18T08:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83bad2dc-0a2e-4d99-9c90-7f08aae8a822", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T18:00:05.000Z" + }, + "end": { + "$date": "2021-09-18T18:39:46.000Z" + }, + "events": [ + { + "uuid": "8265fb48-e7df-4124-92a5-ce3cf6c560aa", + "start": { + "$date": "2021-09-18T18:00:05.000Z" + }, + "end": { + "$date": "2021-09-18T18:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ca1a175-0735-48c5-8a92-a2c6dfaec8b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-18T18:17:04.000Z" + }, + "end": { + "$date": "2021-09-18T18:56:13.000Z" + }, + "events": [ + { + "uuid": "f6a545ab-de28-4ef7-804e-7cfdfcfd1a33", + "start": { + "$date": "2021-09-18T18:17:04.000Z" + }, + "end": { + "$date": "2021-09-18T18:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7ec43a0-66fe-41dd-b54f-87aac4cae7e4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T18:43:16.000Z" + }, + "end": { + "$date": "2021-09-18T18:55:16.000Z" + }, + "events": [ + { + "uuid": "66470e96-9070-4b5e-9bdc-bbd870d79e38", + "start": { + "$date": "2021-09-18T18:43:16.000Z" + }, + "end": { + "$date": "2021-09-18T18:55:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "5245c476-5632-4603-8d31-750dee8ad4d4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-18T19:54:55.000Z" + }, + "end": { + "$date": "2021-09-19T04:47:21.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-09-18T19:54:55.000Z" + }, + "end": { + "$date": "2021-09-19T04:47:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5e0edf1c-5f52-40b7-86d6-dfc495b9f5c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-18T20:34:17.000Z" + }, + "end": { + "$date": "2021-09-19T01:07:48.000Z" + }, + "events": [ + { + "uuid": "93fd8562-7104-4c6f-b931-a6e92036fb69", + "start": { + "$date": "2021-09-18T20:34:17.000Z" + }, + "end": { + "$date": "2021-09-18T21:16:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "65e5bb35-8c2b-4f28-a77a-08cad9cb4903", + "start": { + "$date": "2021-09-18T21:16:17.000Z" + }, + "end": { + "$date": "2021-09-18T21:29:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "644a48de-bc9d-4d61-96ea-bdf8a8c35218", + "start": { + "$date": "2021-09-18T21:29:17.000Z" + }, + "end": { + "$date": "2021-09-18T23:49:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c3c7f123-bf43-44cd-a701-a96bfd4cb672", + "start": { + "$date": "2021-09-18T23:49:17.000Z" + }, + "end": { + "$date": "2021-09-19T00:05:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1aa15302-6818-4ace-a629-12ddb3f24995", + "start": { + "$date": "2021-09-19T00:05:17.000Z" + }, + "end": { + "$date": "2021-09-19T01:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "d144a87a-4e76-4a70-be2e-517460c97750", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T20:44:45.000Z" + }, + "end": { + "$date": "2021-09-18T21:22:56.000Z" + }, + "events": [ + { + "uuid": "cd1dd343-f59a-4749-aa0c-f003d3815c9f", + "start": { + "$date": "2021-09-18T20:44:45.000Z" + }, + "end": { + "$date": "2021-09-18T21:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "bb3682df-7cdc-4d08-934b-88cb957246c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-18T21:09:51.000Z" + }, + "end": { + "$date": "2021-09-18T22:23:27.000Z" + }, + "events": [ + { + "uuid": "c68e7bce-eef4-44b1-8e38-9a7659a34a4a", + "start": { + "$date": "2021-09-18T21:09:51.000Z" + }, + "end": { + "$date": "2021-09-18T22:23:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e1c0595b-dcfc-4070-889b-33199e691da6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-18T21:50:29.000Z" + }, + "end": { + "$date": "2021-09-19T04:43:33.000Z" + }, + "events": [ + { + "uuid": "d896849f-c3ef-43a4-9e95-74506075c5a7", + "start": { + "$date": "2021-09-18T21:50:29.000Z" + }, + "end": { + "$date": "2021-09-19T04:43:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3715cf60-0f44-4bf3-962c-3aeb0aa54a7f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-18T21:57:01.000Z" + }, + "end": { + "$date": "2021-09-19T03:28:44.000Z" + }, + "events": [ + { + "uuid": "1478dd39-570d-47f8-8910-1fcaf3acc799", + "start": { + "$date": "2021-09-18T21:57:01.000Z" + }, + "end": { + "$date": "2021-09-19T03:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "92e2a2f2-1a41-4900-9bdb-44c4466cc014", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-18T22:00:02.000Z" + }, + "end": { + "$date": "2021-09-19T03:02:32.000Z" + }, + "events": [ + { + "uuid": "17c911fe-28af-4219-beb2-c5df6667c18a", + "start": { + "$date": "2021-09-18T22:00:02.000Z" + }, + "end": { + "$date": "2021-09-19T03:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0d43b78a-27f6-4bd9-ae4c-f42669986cc8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-18T23:08:27.000Z" + }, + "end": { + "$date": "2021-09-19T00:01:33.000Z" + }, + "events": [ + { + "uuid": "81e5c13a-c2f2-48a9-8eca-5a5c20f29aa5", + "start": { + "$date": "2021-09-18T23:08:27.000Z" + }, + "end": { + "$date": "2021-09-19T00:01:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c21f069b-80de-400f-b97b-e4534e378e95", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-18T23:20:06.000Z" + }, + "end": { + "$date": "2021-09-19T00:34:42.000Z" + }, + "events": [ + { + "uuid": "4a9e9ad4-2a0d-41c5-8de8-73a1be26a23c", + "start": { + "$date": "2021-09-18T23:20:06.000Z" + }, + "end": { + "$date": "2021-09-19T00:34:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4a357b2-9623-453a-9cba-42cc7d4f37c5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-19T00:54:31.000Z" + }, + "end": { + "$date": "2021-09-19T01:36:11.000Z" + }, + "events": [ + { + "uuid": "0cf2a7b9-15b3-4510-8bb8-c5a204cf5802", + "start": { + "$date": "2021-09-19T00:54:31.000Z" + }, + "end": { + "$date": "2021-09-19T01:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c7a67716-8fcf-4c4e-a480-4ac06254d2fc", + "uuid": "944f2f90-e9e7-4c9b-9d36-03219633fcb1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T01:10:38.000Z" + }, + "end": { + "$date": "2021-09-19T01:56:54.000Z" + }, + "events": [ + { + "uuid": "53834b21-d795-4d92-b9f2-0cb228df73d8", + "start": { + "$date": "2021-09-19T01:10:38.000Z" + }, + "end": { + "$date": "2021-09-19T01:56:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f77d06d-aeaf-46f5-a644-6c0403002b20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T01:22:19.000Z" + }, + "end": { + "$date": "2021-09-19T01:24:20.000Z" + }, + "events": [ + { + "uuid": "b1964a46-a530-4a28-aeb3-6b4648b27082", + "start": { + "$date": "2021-09-19T01:22:19.000Z" + }, + "end": { + "$date": "2021-09-19T01:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "230c63d0-e5d9-49e9-bb4f-ab4e53b94d6a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T02:10:52.000Z" + }, + "end": { + "$date": "2021-09-19T02:44:23.000Z" + }, + "events": [ + { + "uuid": "83e7f90b-9b38-4190-9fa3-92848e3d230a", + "start": { + "$date": "2021-09-19T02:10:52.000Z" + }, + "end": { + "$date": "2021-09-19T02:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b589b46c-7020-4bd2-a3c6-9289de5d8c8f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T02:45:55.000Z" + }, + "end": { + "$date": "2021-09-19T02:46:10.000Z" + }, + "events": [ + { + "uuid": "c5c22d29-3564-4642-a643-c327dd9ea58e", + "start": { + "$date": "2021-09-19T02:45:55.000Z" + }, + "end": { + "$date": "2021-09-19T02:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d943e8cc-976c-4344-938c-f1f4bbfba157", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T02:46:25.000Z" + }, + "end": { + "$date": "2021-09-19T03:21:25.000Z" + }, + "events": [ + { + "uuid": "c774b7e4-8eae-4abf-98c7-3c2d0bda554d", + "start": { + "$date": "2021-09-19T02:46:25.000Z" + }, + "end": { + "$date": "2021-09-19T03:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e217fd41-0286-4ecc-bf72-0b3226149814", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T02:53:04.000Z" + }, + "end": { + "$date": "2021-09-19T03:24:45.000Z" + }, + "events": [ + { + "uuid": "1240f1c4-e900-4061-acc5-6e0b43c64ea4", + "start": { + "$date": "2021-09-19T02:53:04.000Z" + }, + "end": { + "$date": "2021-09-19T03:24:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c472a636-5ee8-429d-9021-2556f9c6bc99", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-19T03:02:45.000Z" + }, + "end": { + "$date": "2021-09-19T07:49:31.000Z" + }, + "events": [ + { + "uuid": "61aded35-95ef-48ef-996e-22b101be2a85", + "start": { + "$date": "2021-09-19T03:02:45.000Z" + }, + "end": { + "$date": "2021-09-19T05:04:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2db7ff00-a91b-4dc0-ae43-1e59077fd374", + "start": { + "$date": "2021-09-19T05:04:45.000Z" + }, + "end": { + "$date": "2021-09-19T05:15:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce2b02a4-edbb-4d52-a18d-00ad62a5903f", + "start": { + "$date": "2021-09-19T05:15:45.000Z" + }, + "end": { + "$date": "2021-09-19T07:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "43e6c5a9-5775-4f47-899e-e0fc1d0c48a5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T04:46:27.000Z" + }, + "end": { + "$date": "2021-09-19T04:46:52.000Z" + }, + "events": [ + { + "uuid": "b793c161-a59b-4efa-aa13-72167e71a222", + "start": { + "$date": "2021-09-19T04:46:27.000Z" + }, + "end": { + "$date": "2021-09-19T04:46:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2beda40f-b2d3-4914-a07d-f81b43e893fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T03:30:46.000Z" + }, + "end": { + "$date": "2021-09-19T04:04:14.000Z" + }, + "events": [ + { + "uuid": "edf1ccc1-2ba3-4ce5-8813-fdc5d927cca0", + "start": { + "$date": "2021-09-19T03:30:46.000Z" + }, + "end": { + "$date": "2021-09-19T04:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b554a57c-7f67-4102-bd57-da077895496d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-19T03:29:00.000Z" + }, + "end": { + "$date": "2021-09-19T05:47:01.000Z" + }, + "events": [ + { + "uuid": "7c3f0a9e-21ba-40f2-9312-8d5b922190a8", + "start": { + "$date": "2021-09-19T03:29:00.000Z" + }, + "end": { + "$date": "2021-09-19T05:32:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9fcf9979-ffb1-42c4-80e3-184b802c07ac", + "start": { + "$date": "2021-09-19T05:32:00.000Z" + }, + "end": { + "$date": "2021-09-19T05:37:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97bc998e-f580-49e8-a227-764b18c16fb1", + "start": { + "$date": "2021-09-19T05:37:00.000Z" + }, + "end": { + "$date": "2021-09-19T05:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "41793850-1b10-4f81-b9b8-ff06b03563b4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-19T03:52:51.000Z" + }, + "end": { + "$date": "2021-09-19T04:13:11.000Z" + }, + "events": [ + { + "uuid": "d9182b14-b67e-42ea-8374-7fcd0ddaeee2", + "start": { + "$date": "2021-09-19T03:52:51.000Z" + }, + "end": { + "$date": "2021-09-19T04:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e1bab8e0-b756-4b26-b082-cd6a31576113", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-19T08:09:15.000Z" + }, + "end": { + "$date": "2021-09-19T20:10:47.000Z" + }, + "events": [ + { + "uuid": "78e33575-85c1-4e70-bbb5-17067246e68b", + "start": { + "$date": "2021-09-19T08:09:15.000Z" + }, + "end": { + "$date": "2021-09-19T11:17:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9fbe3a03-bc38-47e5-a3d1-dd4571351556", + "start": { + "$date": "2021-09-19T11:17:15.000Z" + }, + "end": { + "$date": "2021-09-19T22:22:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c17a847b-4b72-409e-9a94-1acb6a0b917b", + "start": { + "$date": "2021-09-19T22:22:15.000Z" + }, + "end": { + "$date": "2021-09-19T22:29:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "208f25ca-0b38-49e1-9408-f6dfe670633e", + "start": { + "$date": "2021-09-19T22:29:15.000Z" + }, + "end": { + "$date": "2021-09-19T23:02:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7288b3cc-1bff-445e-bf21-94e660387ed1", + "start": { + "$date": "2021-09-19T23:02:15.000Z" + }, + "end": { + "$date": "2021-09-19T20:10:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "daf0986b-cf7c-4a77-a57a-bdb83d09300e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T05:29:25.000Z" + }, + "end": { + "$date": "2021-09-19T07:48:37.000Z" + }, + "events": [ + { + "uuid": "ba715230-acad-4caa-bc68-4df383f97d66", + "start": { + "$date": "2021-09-19T05:29:25.000Z" + }, + "end": { + "$date": "2021-09-19T07:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7d115c2c-a713-4e4f-bc36-af784d853c9f", + "uuid": "2ee63059-53e0-486d-b021-3877ee439eb3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-19T05:31:33.000Z" + }, + "end": { + "$date": "2021-09-19T06:21:21.000Z" + }, + "events": [ + { + "uuid": "230dcf41-407b-4f7c-8810-b3835df033f4", + "start": { + "$date": "2021-09-19T05:31:33.000Z" + }, + "end": { + "$date": "2021-09-19T06:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b70110d0-b64e-496b-b051-b51a95083097", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T05:46:31.000Z" + }, + "end": { + "$date": "2021-09-19T07:19:35.000Z" + }, + "events": [ + { + "uuid": "312c6479-f3e8-4c3e-b897-3df66875658d", + "start": { + "$date": "2021-09-19T05:46:31.000Z" + }, + "end": { + "$date": "2021-09-19T07:19:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ac2465d8-1a8d-4304-9743-739c455fa0b1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-19T05:51:02.000Z" + }, + "end": { + "$date": "2021-09-19T07:48:26.000Z" + }, + "events": [ + { + "uuid": "f9ce95ee-c1e5-455c-a8c1-e9f1f82c032a", + "start": { + "$date": "2021-09-19T05:51:02.000Z" + }, + "end": { + "$date": "2021-09-19T07:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a430d937-9b17-4c06-a4b6-a8a8829bc6c6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-19T07:49:56.000Z" + }, + "end": { + "$date": "2021-09-19T07:57:57.000Z" + }, + "events": [ + { + "uuid": "dc1523a8-d6df-432d-9e6e-b20a213d7a47", + "start": { + "$date": "2021-09-19T07:49:56.000Z" + }, + "end": { + "$date": "2021-09-19T07:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e293c9dc-8a1b-41fa-a5d5-ccc239d4c65f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-19T07:58:07.000Z" + }, + "end": { + "$date": "2021-09-19T08:45:29.000Z" + }, + "events": [ + { + "uuid": "969c97d7-c007-4038-a882-405553652f0e", + "start": { + "$date": "2021-09-19T07:58:07.000Z" + }, + "end": { + "$date": "2021-09-19T08:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "9257ef33-9fe8-40d5-bcb4-f53802773f82", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-19T08:50:58.000Z" + }, + "end": { + "$date": "2021-09-19T13:47:31.000Z" + }, + "events": [ + { + "uuid": "a10340fd-ba34-4de3-a6b0-a61cc7852c65", + "start": { + "$date": "2021-09-19T08:50:58.000Z" + }, + "end": { + "$date": "2021-09-19T10:05:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e389af03-ec5b-43eb-b37f-62364c8de3ae", + "start": { + "$date": "2021-09-19T10:05:58.000Z" + }, + "end": { + "$date": "2021-09-19T10:07:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d9ea74e-7e5d-4c80-850d-fba636c5ba01", + "start": { + "$date": "2021-09-19T10:07:58.000Z" + }, + "end": { + "$date": "2021-09-19T10:27:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0bec6549-c2f7-42cd-a4cd-7f4ef0681236", + "start": { + "$date": "2021-09-19T10:27:58.000Z" + }, + "end": { + "$date": "2021-09-19T10:49:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b7e9d3c-f0d0-477d-8169-37d3804afcac", + "start": { + "$date": "2021-09-19T10:49:58.000Z" + }, + "end": { + "$date": "2021-09-19T12:46:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c2148bba-6e9d-4d85-b318-8ba78dbe125d", + "start": { + "$date": "2021-09-19T12:46:58.000Z" + }, + "end": { + "$date": "2021-09-19T13:00:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74dd1eb0-f50a-431a-8dd2-572d04243fa4", + "start": { + "$date": "2021-09-19T13:00:58.000Z" + }, + "end": { + "$date": "2021-09-19T13:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "12567406-62b6-4edc-8b86-ad5674d3bdf7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-19T13:35:51.000Z" + }, + "end": { + "$date": "2021-09-19T13:58:57.000Z" + }, + "events": [ + { + "uuid": "829e372e-92f2-4acd-b0e2-93d578e78137", + "start": { + "$date": "2021-09-19T13:35:51.000Z" + }, + "end": { + "$date": "2021-09-19T13:58:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "b29569ee-2032-46b7-86bb-e5d898384542", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-19T13:38:26.000Z" + }, + "end": { + "$date": "2021-09-19T15:59:32.000Z" + }, + "events": [ + { + "uuid": "b51e3e3c-130b-49bb-9074-723a8549f163", + "start": { + "$date": "2021-09-19T13:38:26.000Z" + }, + "end": { + "$date": "2021-09-19T15:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", + "uuid": "8c41e882-8b13-4aa3-92fc-947ad3a080b0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-19T13:55:38.000Z" + }, + "end": { + "$date": "2021-09-19T14:45:14.000Z" + }, + "events": [ + { + "uuid": "40570510-0434-4ee2-aa98-97a00faeb223", + "start": { + "$date": "2021-09-19T13:55:38.000Z" + }, + "end": { + "$date": "2021-09-19T14:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "86e41b36-d860-479d-9443-f9299d051eba", + "uuid": "afaa0cd6-37e6-4d5e-acbc-effcee08a310", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-19T14:04:35.000Z" + }, + "end": { + "$date": "2021-09-19T14:19:05.000Z" + }, + "events": [ + { + "uuid": "93e7d1eb-f1e6-4be9-9963-7228d117fb1c", + "start": { + "$date": "2021-09-19T14:04:35.000Z" + }, + "end": { + "$date": "2021-09-19T14:19:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50a6d17c-e00c-4e01-8d2e-4e3f61685471", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-19T15:36:37.000Z" + }, + "end": { + "$date": "2021-09-19T16:01:02.000Z" + }, + "events": [ + { + "uuid": "fea1ff1b-cf38-40b0-8c99-9e8b4c08a0f5", + "start": { + "$date": "2021-09-19T15:36:37.000Z" + }, + "end": { + "$date": "2021-09-19T16:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f02b44a7-8151-4f1b-87d4-4bedf88e916e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-19T16:01:48.000Z" + }, + "end": { + "$date": "2021-09-19T16:20:08.000Z" + }, + "events": [ + { + "uuid": "149b5373-af80-4f9b-a8d5-ebc1dc46f2d9", + "start": { + "$date": "2021-09-19T16:01:48.000Z" + }, + "end": { + "$date": "2021-09-19T16:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "136092e8-eb4c-491f-a9e5-ef7d09bf3def", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-19T16:34:18.000Z" + }, + "end": { + "$date": "2021-09-19T17:35:19.000Z" + }, + "events": [ + { + "uuid": "3c7fadfc-4383-416e-910a-55695459be8c", + "start": { + "$date": "2021-09-19T16:34:18.000Z" + }, + "end": { + "$date": "2021-09-19T17:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5089be8-91d4-4b95-863f-d8b9d7b0f942", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T18:05:12.000Z" + }, + "end": { + "$date": "2021-09-19T18:41:20.000Z" + }, + "events": [ + { + "uuid": "00d81343-3256-4f48-b29e-1be17db67b55", + "start": { + "$date": "2021-09-19T18:05:12.000Z" + }, + "end": { + "$date": "2021-09-19T18:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "05c2bc7e-5fdb-49ed-bba8-d03b41f91175", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T18:17:33.000Z" + }, + "end": { + "$date": "2021-09-19T20:35:04.000Z" + }, + "events": [ + { + "uuid": "465403c9-6b6f-4666-877d-eda1059cad77", + "start": { + "$date": "2021-09-19T18:17:33.000Z" + }, + "end": { + "$date": "2021-09-19T20:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b88e5621-794e-4fcb-a017-ca8286b2f1d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-19T18:29:06.000Z" + }, + "end": { + "$date": "2021-09-19T18:48:56.000Z" + }, + "events": [ + { + "uuid": "f2ee4142-f5e1-4b52-ad20-62e5e378a8a6", + "start": { + "$date": "2021-09-19T18:29:06.000Z" + }, + "end": { + "$date": "2021-09-19T18:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bad82743-3900-4a4a-8610-726bce0fc7e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T18:38:54.000Z" + }, + "end": { + "$date": "2021-09-19T18:57:00.000Z" + }, + "events": [ + { + "uuid": "81880c33-384e-40b9-9e18-04c83138487e", + "start": { + "$date": "2021-09-19T18:38:54.000Z" + }, + "end": { + "$date": "2021-09-19T18:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "990bc8f4-dec5-4a26-bf5f-22d766755ec1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T18:46:12.000Z" + }, + "end": { + "$date": "2021-09-19T19:20:06.000Z" + }, + "events": [ + { + "uuid": "42f80de4-d3fa-4ce9-90c8-4588eb769fe5", + "start": { + "$date": "2021-09-19T18:46:12.000Z" + }, + "end": { + "$date": "2021-09-19T19:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4b57a2c6-c0d2-43c9-8a3e-860ff81bad7a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-19T19:00:56.000Z" + }, + "end": { + "$date": "2021-09-19T22:24:01.000Z" + }, + "events": [ + { + "uuid": "912489ce-77b2-44b7-8b16-38fc43ad756b", + "start": { + "$date": "2021-09-19T19:00:56.000Z" + }, + "end": { + "$date": "2021-09-19T22:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e33b38d3-f589-4d71-b467-aaf569c30774", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T19:21:16.000Z" + }, + "end": { + "$date": "2021-09-19T20:20:51.000Z" + }, + "events": [ + { + "uuid": "bde4cb2e-e34e-4c05-aadd-f69dc9650ce8", + "start": { + "$date": "2021-09-19T19:21:16.000Z" + }, + "end": { + "$date": "2021-09-19T20:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "c2f3005e-28c0-4585-a2ba-81305f90cfe2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-19T20:27:41.000Z" + }, + "end": { + "$date": "2021-09-19T21:04:24.000Z" + }, + "events": [ + { + "uuid": "24f52f7a-5c84-49c0-ba6b-b89bdfd86932", + "start": { + "$date": "2021-09-19T20:27:41.000Z" + }, + "end": { + "$date": "2021-09-19T21:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "61f176b5-1ab2-42e5-8d00-eccfd53d329b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-19T22:01:11.000Z" + }, + "end": { + "$date": "2021-09-19T23:29:25.000Z" + }, + "events": [ + { + "uuid": "4a1a5d6c-6a88-4260-b581-b1af3890bdcd", + "start": { + "$date": "2021-09-19T22:01:11.000Z" + }, + "end": { + "$date": "2021-09-19T23:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "b659413b-deda-42e6-af9f-f8be0ad17010", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-19T22:19:18.000Z" + }, + "end": { + "$date": "2021-09-19T22:23:14.000Z" + }, + "events": [ + { + "uuid": "8c7dec0b-5c5c-4b43-b329-bdf225f5df06", + "start": { + "$date": "2021-09-19T22:19:18.000Z" + }, + "end": { + "$date": "2021-09-19T22:23:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8142bed6-ff5a-45be-9bf3-f6de2650160e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-19T22:30:11.000Z" + }, + "end": { + "$date": "2021-09-19T22:46:31.000Z" + }, + "events": [ + { + "uuid": "6ff3804d-cd78-416a-b21b-b15d28e01356", + "start": { + "$date": "2021-09-19T22:30:11.000Z" + }, + "end": { + "$date": "2021-09-19T22:46:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "67d90947-21a9-43ea-adb4-2f99c92d63b8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-19T22:26:14.000Z" + }, + "end": { + "$date": "2021-09-19T23:48:45.000Z" + }, + "events": [ + { + "uuid": "5668a08e-6fcc-4f4a-9972-efb36529a011", + "start": { + "$date": "2021-09-19T22:26:14.000Z" + }, + "end": { + "$date": "2021-09-19T22:57:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14d0be94-8035-4361-bba8-417971d31f43", + "start": { + "$date": "2021-09-19T22:57:14.000Z" + }, + "end": { + "$date": "2021-09-19T23:02:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f979ce0-e2f8-4fd9-8a54-ed6695db599a", + "start": { + "$date": "2021-09-19T23:02:14.000Z" + }, + "end": { + "$date": "2021-09-19T23:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90a2fa23-49af-4fbe-a1a5-21a24a94ba1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T22:34:09.000Z" + }, + "end": { + "$date": "2021-09-19T22:34:59.000Z" + }, + "events": [ + { + "uuid": "2e19f808-9f24-4553-b261-faf706b94cd0", + "start": { + "$date": "2021-09-19T22:34:09.000Z" + }, + "end": { + "$date": "2021-09-19T22:34:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "903d7efb-c41b-4309-8c9e-b09162554381", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T22:38:45.000Z" + }, + "end": { + "$date": "2021-09-19T23:11:19.000Z" + }, + "events": [ + { + "uuid": "c300f6b4-8a22-4258-a04e-e19841aeef48", + "start": { + "$date": "2021-09-19T22:38:45.000Z" + }, + "end": { + "$date": "2021-09-19T23:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8672638-1c27-4120-bf56-5cac0adfc526", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T23:12:14.000Z" + }, + "end": { + "$date": "2021-09-19T23:19:38.000Z" + }, + "events": [ + { + "uuid": "ab027aa1-e4e2-427f-8869-d1367d501334", + "start": { + "$date": "2021-09-19T23:12:14.000Z" + }, + "end": { + "$date": "2021-09-19T23:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "db802d20-e3e2-496d-9121-8dfc25313e22", + "uuid": "6f9768bd-1cd8-44ab-9b87-703b8043c989", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-19T23:26:10.000Z" + }, + "end": { + "$date": "2021-09-20T00:04:27.000Z" + }, + "events": [ + { + "uuid": "bb70e2dc-8432-4ecf-b946-6151198631be", + "start": { + "$date": "2021-09-19T23:26:10.000Z" + }, + "end": { + "$date": "2021-09-20T00:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "43734a43-b51f-49bf-bd23-162c530594ec", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-19T23:30:35.000Z" + }, + "end": { + "$date": "2021-09-19T23:39:20.000Z" + }, + "events": [ + { + "uuid": "9fb7b83d-77d7-4a9e-a781-6cb5271847ec", + "start": { + "$date": "2021-09-19T23:30:35.000Z" + }, + "end": { + "$date": "2021-09-19T23:39:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "60577717-a6f6-4e6d-a39f-85a14d7b4f57", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-19T23:38:07.000Z" + }, + "end": { + "$date": "2021-09-20T01:03:22.000Z" + }, + "events": [ + { + "uuid": "348de0be-2ba9-4002-8224-aa5d8020ffc4", + "start": { + "$date": "2021-09-19T23:38:07.000Z" + }, + "end": { + "$date": "2021-09-20T01:03:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "60d16e3f-e00b-42bb-b65e-70b502ee23c2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-19T23:39:50.000Z" + }, + "end": { + "$date": "2021-09-20T04:18:07.000Z" + }, + "events": [ + { + "uuid": "f22534a4-4aca-4eeb-aeeb-74f270bbc239", + "start": { + "$date": "2021-09-19T23:39:50.000Z" + }, + "end": { + "$date": "2021-09-20T01:24:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8a63f5a-355f-4759-8893-2fca02621274", + "start": { + "$date": "2021-09-20T01:24:50.000Z" + }, + "end": { + "$date": "2021-09-20T01:29:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4773c894-23f5-4efe-8ca7-39e22ca09325", + "start": { + "$date": "2021-09-20T01:29:50.000Z" + }, + "end": { + "$date": "2021-09-20T01:57:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b9b3d13-8e43-458a-9acf-26ef490dfd40", + "start": { + "$date": "2021-09-20T01:57:50.000Z" + }, + "end": { + "$date": "2021-09-20T02:01:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a1ccbb0-b1e7-438d-890d-202147b9ac27", + "start": { + "$date": "2021-09-20T02:01:50.000Z" + }, + "end": { + "$date": "2021-09-20T04:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "a9ea93cb-e8b0-430f-84c9-26ea24cdac9b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-19T23:52:11.000Z" + }, + "end": { + "$date": "2021-09-20T03:41:46.000Z" + }, + "events": [ + { + "uuid": "f1f0d721-1814-494a-9f2d-26d4bc71cbd4", + "start": { + "$date": "2021-09-19T23:52:11.000Z" + }, + "end": { + "$date": "2021-09-20T03:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fd7df7a-db2d-46c5-b56c-8fa5c899dab8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-20T00:28:45.000Z" + }, + "end": { + "$date": "2021-09-20T01:05:34.000Z" + }, + "events": [ + { + "uuid": "c690237a-efd2-4727-bdcb-d443083b173a", + "start": { + "$date": "2021-09-20T00:28:45.000Z" + }, + "end": { + "$date": "2021-09-20T01:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd8141c8-4443-4575-ae3b-7d4ef3ee6708", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T00:42:42.000Z" + }, + "end": { + "$date": "2021-09-20T01:16:23.000Z" + }, + "events": [ + { + "uuid": "3182f7dd-bde0-45af-b4a1-593a4436b300", + "start": { + "$date": "2021-09-20T00:42:42.000Z" + }, + "end": { + "$date": "2021-09-20T01:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "594021af-7f9d-4795-9440-582cb63038d6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-20T02:09:59.000Z" + }, + "end": { + "$date": "2021-09-20T02:31:32.000Z" + }, + "events": [ + { + "uuid": "528931e9-3455-4d07-9301-f8b092701c1c", + "start": { + "$date": "2021-09-20T02:09:59.000Z" + }, + "end": { + "$date": "2021-09-20T02:31:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cd1f585-1de1-4bfd-897f-fafb05314149", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T02:26:09.000Z" + }, + "end": { + "$date": "2021-09-20T02:57:48.000Z" + }, + "events": [ + { + "uuid": "ea95a0eb-b9cb-403f-9aa8-ee0c98ad2c53", + "start": { + "$date": "2021-09-20T02:26:09.000Z" + }, + "end": { + "$date": "2021-09-20T02:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e59fd7a5-57ce-4c13-a966-8f635cb5e295", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-20T02:23:25.000Z" + }, + "end": { + "$date": "2021-09-20T03:12:23.000Z" + }, + "events": [ + { + "uuid": "d6117e8f-f837-4e91-b232-7c2e0b608181", + "start": { + "$date": "2021-09-20T02:23:25.000Z" + }, + "end": { + "$date": "2021-09-20T03:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "73f57c00-8c1e-42ee-871d-55cee9f8b015", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-20T02:26:08.000Z" + }, + "end": { + "$date": "2021-09-20T03:28:14.000Z" + }, + "events": [ + { + "uuid": "eef22923-7a42-41c5-8a8a-185de88d5f77", + "start": { + "$date": "2021-09-20T02:26:08.000Z" + }, + "end": { + "$date": "2021-09-20T03:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "879855b4-5222-44b8-b733-f5aae431f923", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-20T02:36:34.000Z" + }, + "end": { + "$date": "2021-09-20T03:13:08.000Z" + }, + "events": [ + { + "uuid": "6cb58709-5058-46e0-ab24-b736bb718536", + "start": { + "$date": "2021-09-20T02:36:34.000Z" + }, + "end": { + "$date": "2021-09-20T03:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "49c1d9da-13ca-4ea2-8200-1a1d687a6d13", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-20T03:28:49.000Z" + }, + "end": { + "$date": "2021-09-20T04:50:17.000Z" + }, + "events": [ + { + "uuid": "0322bfea-f914-4cd6-8590-cddfdb5cf98f", + "start": { + "$date": "2021-09-20T03:28:49.000Z" + }, + "end": { + "$date": "2021-09-20T04:50:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", + "uuid": "9d8b7ddf-f9ce-4f7f-95a9-c79a486e9e17", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-20T03:29:29.000Z" + }, + "end": { + "$date": "2021-09-20T05:28:35.000Z" + }, + "events": [ + { + "uuid": "2216c579-149a-4e3a-8bad-8e5ceffc0f31", + "start": { + "$date": "2021-09-20T03:29:29.000Z" + }, + "end": { + "$date": "2021-09-20T05:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d075fb18-296d-4382-9310-c6cad74feb38", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-20T04:58:14.000Z" + }, + "end": { + "$date": "2021-09-20T05:26:25.000Z" + }, + "events": [ + { + "uuid": "b0a1c7a5-fc3b-4fa0-a2c2-56d01862c521", + "start": { + "$date": "2021-09-20T04:58:14.000Z" + }, + "end": { + "$date": "2021-09-20T05:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "8c534a04-dc60-4470-a5c5-49575d16668d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-20T04:57:28.000Z" + }, + "end": { + "$date": "2021-09-20T05:53:45.000Z" + }, + "events": [ + { + "uuid": "28c85e6b-6de7-4a89-ab88-e222b2959598", + "start": { + "$date": "2021-09-20T04:57:28.000Z" + }, + "end": { + "$date": "2021-09-20T05:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c7c9f07c-8e7d-4e4f-bba6-4e3f14c2e467", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-20T05:20:51.000Z" + }, + "end": { + "$date": "2021-09-20T06:16:02.000Z" + }, + "events": [ + { + "uuid": "796ae050-e2fd-4b2e-af5d-639e36227e1c", + "start": { + "$date": "2021-09-20T05:20:51.000Z" + }, + "end": { + "$date": "2021-09-20T06:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba299219-d969-4678-8099-b28b7c68c1ef", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-20T05:29:44.000Z" + }, + "end": { + "$date": "2021-09-20T07:22:39.000Z" + }, + "events": [ + { + "uuid": "27fbe6cb-1da3-42ae-b554-8ef78c18cc66", + "start": { + "$date": "2021-09-20T05:29:44.000Z" + }, + "end": { + "$date": "2021-09-20T07:22:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "357f45e7-67c6-46c2-ae64-814386842b20", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-20T05:42:21.000Z" + }, + "end": { + "$date": "2021-09-20T06:03:37.000Z" + }, + "events": [ + { + "uuid": "3eeb5219-8026-4684-b0bd-752b46182038", + "start": { + "$date": "2021-09-20T05:42:21.000Z" + }, + "end": { + "$date": "2021-09-20T06:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d13e51b-4f77-4f8d-8984-c2b5bbc83ddc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T14:31:04.000Z" + }, + "end": { + "$date": "2021-09-20T15:04:24.000Z" + }, + "events": [ + { + "uuid": "c005956d-1ae9-4b56-8a38-c7860ba8b727", + "start": { + "$date": "2021-09-20T14:31:04.000Z" + }, + "end": { + "$date": "2021-09-20T15:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16525a7d-5919-4521-ab75-f0fc872096d8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T15:14:20.000Z" + }, + "end": { + "$date": "2021-09-20T15:43:10.000Z" + }, + "events": [ + { + "uuid": "09736ae8-43e3-4cf3-b2c1-aa26bdea149f", + "start": { + "$date": "2021-09-20T15:14:20.000Z" + }, + "end": { + "$date": "2021-09-20T15:43:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "374b9741-cfcb-4e46-bc7d-19e6991206ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T15:50:00.000Z" + }, + "end": { + "$date": "2021-09-20T16:15:45.000Z" + }, + "events": [ + { + "uuid": "00c6acc2-8fb8-4365-bc54-4aa03de76bbe", + "start": { + "$date": "2021-09-20T15:50:00.000Z" + }, + "end": { + "$date": "2021-09-20T16:15:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4282a73f-04c4-4126-a852-e8bceb9deb5e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-20T16:10:27.000Z" + }, + "end": { + "$date": "2021-09-20T16:44:38.000Z" + }, + "events": [ + { + "uuid": "6ccb4a85-0ee5-4b06-a17b-8bd9e3ac2a8c", + "start": { + "$date": "2021-09-20T16:10:27.000Z" + }, + "end": { + "$date": "2021-09-20T16:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17ccad45-3c3b-44a9-aa5c-5cbff6004a1b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T16:55:59.000Z" + }, + "end": { + "$date": "2021-09-20T17:29:49.000Z" + }, + "events": [ + { + "uuid": "a6512961-8284-42d1-a0f2-5be6adcb9494", + "start": { + "$date": "2021-09-20T16:55:59.000Z" + }, + "end": { + "$date": "2021-09-20T17:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0a6469a-d786-49dd-a54d-6b315a1cfdb2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T19:10:00.000Z" + }, + "end": { + "$date": "2021-09-20T19:34:45.000Z" + }, + "events": [ + { + "uuid": "4b2dfc54-1d85-4b46-80c3-a1d159aecdf1", + "start": { + "$date": "2021-09-20T19:10:00.000Z" + }, + "end": { + "$date": "2021-09-20T19:34:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f97bd62-051b-4c09-a8bc-a1db731a9654", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T19:46:26.000Z" + }, + "end": { + "$date": "2021-09-20T20:11:21.000Z" + }, + "events": [ + { + "uuid": "d73cd605-61fc-41eb-a7a5-76fdbf8e503a", + "start": { + "$date": "2021-09-20T19:46:26.000Z" + }, + "end": { + "$date": "2021-09-20T20:11:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "833fde41-77de-422f-a28b-782b942cb3da", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-20T20:12:11.000Z" + }, + "end": { + "$date": "2021-09-20T21:17:10.000Z" + }, + "events": [ + { + "uuid": "1928618d-4477-44ae-86ef-3e847bc2da15", + "start": { + "$date": "2021-09-20T20:12:11.000Z" + }, + "end": { + "$date": "2021-09-20T21:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9598c052-6187-45f5-8566-e9422d3481f2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-20T21:47:41.000Z" + }, + "end": { + "$date": "2021-09-20T22:18:52.000Z" + }, + "events": [ + { + "uuid": "a74d1cdb-f14f-4316-b43e-da8331a8b41c", + "start": { + "$date": "2021-09-20T21:47:41.000Z" + }, + "end": { + "$date": "2021-09-20T22:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "7c95b06d-5bcf-4898-b544-3bec5c09ebde", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-20T22:25:47.000Z" + }, + "end": { + "$date": "2021-09-21T01:39:54.000Z" + }, + "events": [ + { + "uuid": "ed805bf8-faa3-439a-92e1-f0d6178bfa3e", + "start": { + "$date": "2021-09-20T22:25:47.000Z" + }, + "end": { + "$date": "2021-09-21T01:39:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6979b8eb-0233-4562-888d-bc2b3a822a8c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-20T22:27:55.000Z" + }, + "end": { + "$date": "2021-09-21T00:24:38.000Z" + }, + "events": [ + { + "uuid": "c46058e2-8927-4f8b-a1f3-7dc4ea8654e8", + "start": { + "$date": "2021-09-20T22:27:55.000Z" + }, + "end": { + "$date": "2021-09-21T00:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b2712575-5742-4903-a7bd-dff7a7adc0b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-20T23:33:14.000Z" + }, + "end": { + "$date": "2021-09-21T00:28:28.000Z" + }, + "events": [ + { + "uuid": "c3750419-3b12-4d39-a629-fe0cea77f3b4", + "start": { + "$date": "2021-09-20T23:33:14.000Z" + }, + "end": { + "$date": "2021-09-21T00:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3033d5c-d4f2-41b7-a522-d5b2959ee4bb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T00:40:34.000Z" + }, + "end": { + "$date": "2021-09-21T01:07:49.000Z" + }, + "events": [ + { + "uuid": "8975d961-aa36-4ed5-afac-8823df4018d6", + "start": { + "$date": "2021-09-21T00:40:34.000Z" + }, + "end": { + "$date": "2021-09-21T01:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "815cf2cc-e26d-425a-a0a5-530a88a2af85", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-21T01:01:11.000Z" + }, + "end": { + "$date": "2021-09-21T04:36:39.000Z" + }, + "events": [ + { + "uuid": "1eab5e6f-b34b-46f8-b994-9eb9eb88405f", + "start": { + "$date": "2021-09-21T01:01:11.000Z" + }, + "end": { + "$date": "2021-09-21T04:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2bd86ce-abba-4ab6-a209-18cb5c22d28f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T01:55:58.000Z" + }, + "end": { + "$date": "2021-09-21T02:23:18.000Z" + }, + "events": [ + { + "uuid": "2340ea65-8e1d-4636-b9c4-d82303c3e20b", + "start": { + "$date": "2021-09-21T01:55:58.000Z" + }, + "end": { + "$date": "2021-09-21T02:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6f9028f-6ffe-491b-9325-799137140702", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-21T02:26:12.000Z" + }, + "end": { + "$date": "2021-09-21T02:27:18.000Z" + }, + "events": [ + { + "uuid": "3e9a5086-34d4-4c5d-90cd-f9d853661f87", + "start": { + "$date": "2021-09-21T02:26:12.000Z" + }, + "end": { + "$date": "2021-09-21T02:27:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16a884e6-3e16-47d1-9d27-83ba422d0694", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T02:28:39.000Z" + }, + "end": { + "$date": "2021-09-21T02:55:54.000Z" + }, + "events": [ + { + "uuid": "eda8aeb1-ce22-4aa0-8f7e-df7639cf09f5", + "start": { + "$date": "2021-09-21T02:28:39.000Z" + }, + "end": { + "$date": "2021-09-21T02:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "42c960a4-66e6-43f5-b7e7-b613e21bb5bf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-21T02:25:36.000Z" + }, + "end": { + "$date": "2021-09-21T09:45:55.000Z" + }, + "events": [ + { + "uuid": "05847845-d5ff-4d50-8eac-4873c5edbb48", + "start": { + "$date": "2021-09-21T02:25:36.000Z" + }, + "end": { + "$date": "2021-09-21T09:12:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4be633b3-ee26-4912-985d-d5f33a6b6df3", + "start": { + "$date": "2021-09-21T09:12:36.000Z" + }, + "end": { + "$date": "2021-09-21T09:13:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c631dbaa-3ab5-4eac-bfd2-321bc38fe259", + "start": { + "$date": "2021-09-21T09:13:36.000Z" + }, + "end": { + "$date": "2021-09-21T09:45:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "9862c293-b278-4b29-9df6-e71cc2e81816", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-21T02:54:16.000Z" + }, + "end": { + "$date": "2021-09-21T03:12:17.000Z" + }, + "events": [ + { + "uuid": "adb233ea-6916-4a86-abc8-727b1e5a4a86", + "start": { + "$date": "2021-09-21T02:54:16.000Z" + }, + "end": { + "$date": "2021-09-21T03:12:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "89e9ad52-3e7c-4a83-b7f4-938ba7cf91f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T02:57:14.000Z" + }, + "end": { + "$date": "2021-09-21T03:41:25.000Z" + }, + "events": [ + { + "uuid": "597b7a2b-ce0a-40d7-8a40-216ecc524836", + "start": { + "$date": "2021-09-21T02:57:14.000Z" + }, + "end": { + "$date": "2021-09-21T03:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbffe2b4-e6f1-46cb-b308-1d4c83bc4e19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-21T03:20:12.000Z" + }, + "end": { + "$date": "2021-09-21T03:46:47.000Z" + }, + "events": [ + { + "uuid": "35fa8417-1c94-45ac-851d-b81fa74a58dd", + "start": { + "$date": "2021-09-21T03:20:12.000Z" + }, + "end": { + "$date": "2021-09-21T03:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "264da44a-af5d-44ce-aef6-01d0508305dc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-21T03:37:41.000Z" + }, + "end": { + "$date": "2021-09-21T05:17:49.000Z" + }, + "events": [ + { + "uuid": "8fddfc46-59a0-4a8c-83eb-2ffd19fddf20", + "start": { + "$date": "2021-09-21T03:37:41.000Z" + }, + "end": { + "$date": "2021-09-21T05:17:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d6746977-65af-4901-b0d5-d44a10e625e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-21T03:38:56.000Z" + }, + "end": { + "$date": "2021-09-21T06:03:47.000Z" + }, + "events": [ + { + "uuid": "e74db2f2-3f69-4a96-8e84-c76f459579f7", + "start": { + "$date": "2021-09-21T03:38:56.000Z" + }, + "end": { + "$date": "2021-09-21T06:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a0f0967-aa8c-4349-9e67-e99bd6a5b25b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-21T03:52:38.000Z" + }, + "end": { + "$date": "2021-09-21T04:14:44.000Z" + }, + "events": [ + { + "uuid": "f02c6a25-69dd-4858-9627-32cd00d833c9", + "start": { + "$date": "2021-09-21T03:52:38.000Z" + }, + "end": { + "$date": "2021-09-21T04:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c7d1aab5-217b-49f8-95bc-ba773e21c069", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-21T03:47:52.000Z" + }, + "end": { + "$date": "2021-09-21T06:39:26.000Z" + }, + "events": [ + { + "uuid": "0bde240b-bda7-4729-8343-04fc26ed5e71", + "start": { + "$date": "2021-09-21T03:47:52.000Z" + }, + "end": { + "$date": "2021-09-21T06:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "13a16615-a911-4bf3-8688-7c0cdfb44551", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-21T03:48:10.000Z" + }, + "end": { + "$date": "2021-09-21T06:36:18.000Z" + }, + "events": [ + { + "uuid": "9d9a9d63-7863-4b19-bd22-df1dbf191035", + "start": { + "$date": "2021-09-21T03:48:10.000Z" + }, + "end": { + "$date": "2021-09-21T06:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "586f3b1d-324f-43ee-8968-8c532888dc8e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-21T04:23:37.000Z" + }, + "end": { + "$date": "2021-09-21T05:30:16.000Z" + }, + "events": [ + { + "uuid": "9b427d7b-8449-4c88-bf3d-5bd8a0e585af", + "start": { + "$date": "2021-09-21T04:23:37.000Z" + }, + "end": { + "$date": "2021-09-21T05:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "83b557f0-0192-42e4-99e5-8dd7983632ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-21T04:47:49.000Z" + }, + "end": { + "$date": "2021-09-21T05:43:08.000Z" + }, + "events": [ + { + "uuid": "0faf819d-2af0-4792-9eb3-4b26dd1802b5", + "start": { + "$date": "2021-09-21T04:47:49.000Z" + }, + "end": { + "$date": "2021-09-21T05:43:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9342244d-6cec-4210-9485-9ed23092c271", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-21T05:36:36.000Z" + }, + "end": { + "$date": "2021-09-21T06:10:12.000Z" + }, + "events": [ + { + "uuid": "8e0123a0-3cf2-447b-b4f5-bbe4f1318c43", + "start": { + "$date": "2021-09-21T05:36:36.000Z" + }, + "end": { + "$date": "2021-09-21T06:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7de6ec17-dccb-4815-9f08-1d975f23e0d3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-21T06:39:36.000Z" + }, + "end": { + "$date": "2021-09-21T07:04:03.000Z" + }, + "events": [ + { + "uuid": "7ef0f1b6-4e8b-4775-925b-bbb3b3a54a18", + "start": { + "$date": "2021-09-21T06:39:36.000Z" + }, + "end": { + "$date": "2021-09-21T07:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3d281eb1-19cb-47a7-a3da-a60cb149432f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-21T06:42:19.000Z" + }, + "end": { + "$date": "2021-09-21T08:12:19.000Z" + }, + "events": [ + { + "uuid": "978b41ce-f1f4-47c0-994a-3bb9131df3c0", + "start": { + "$date": "2021-09-21T06:42:19.000Z" + }, + "end": { + "$date": "2021-09-21T08:12:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8132a900-0e15-484d-9807-1851096a6fab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-21T06:46:23.000Z" + }, + "end": { + "$date": "2021-09-21T07:41:25.000Z" + }, + "events": [ + { + "uuid": "7c33068a-9920-43ee-b24d-e441f3b373dd", + "start": { + "$date": "2021-09-21T06:46:23.000Z" + }, + "end": { + "$date": "2021-09-21T07:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "454f09bd-cd7e-45ec-a56e-73ce6d8bac6b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T14:58:38.000Z" + }, + "end": { + "$date": "2021-09-21T15:21:43.000Z" + }, + "events": [ + { + "uuid": "18c3b900-ee61-42c5-9aa0-e212a490fb00", + "start": { + "$date": "2021-09-21T14:58:38.000Z" + }, + "end": { + "$date": "2021-09-21T15:21:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60dcc672-798c-484a-b157-2d56ca6daaa6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T15:27:14.000Z" + }, + "end": { + "$date": "2021-09-21T15:55:49.000Z" + }, + "events": [ + { + "uuid": "f71de1ce-eea2-4268-a433-1226ea00cbc9", + "start": { + "$date": "2021-09-21T15:27:14.000Z" + }, + "end": { + "$date": "2021-09-21T15:55:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3881f169-704a-4f30-a42e-c7f1057d4185", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T16:22:51.000Z" + }, + "end": { + "$date": "2021-09-21T16:45:46.000Z" + }, + "events": [ + { + "uuid": "6210cfa1-e661-4558-a2a0-d557bfbc30fb", + "start": { + "$date": "2021-09-21T16:22:51.000Z" + }, + "end": { + "$date": "2021-09-21T16:45:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90558193-bf06-4a3b-86ef-25f22c9ce50a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T18:50:25.000Z" + }, + "end": { + "$date": "2021-09-21T18:53:40.000Z" + }, + "events": [ + { + "uuid": "8ed1d7d3-2272-462f-9978-da6d2003e11d", + "start": { + "$date": "2021-09-21T18:50:25.000Z" + }, + "end": { + "$date": "2021-09-21T19:33:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "017a22c2-5bc8-4416-a579-a6c2313f6f78", + "start": { + "$date": "2021-09-21T19:33:25.000Z" + }, + "end": { + "$date": "2021-09-21T20:43:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "85a97415-df4d-47f7-962b-e1518f8ade6c", + "start": { + "$date": "2021-09-21T20:43:25.000Z" + }, + "end": { + "$date": "2021-09-21T18:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "98a232b2-a4b3-4f43-80b3-f50639cca040", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-21T18:29:29.000Z" + }, + "end": { + "$date": "2021-09-21T20:15:47.000Z" + }, + "events": [ + { + "uuid": "dede7a74-f00b-4427-a32e-a575205c9e12", + "start": { + "$date": "2021-09-21T18:29:29.000Z" + }, + "end": { + "$date": "2021-09-21T20:15:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3f1f898-49e8-433a-8aa0-f4e11e0f9dcf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T18:57:11.000Z" + }, + "end": { + "$date": "2021-09-21T19:31:32.000Z" + }, + "events": [ + { + "uuid": "11a8c115-da3e-4eff-b246-115de9198ca3", + "start": { + "$date": "2021-09-21T18:57:11.000Z" + }, + "end": { + "$date": "2021-09-21T19:31:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "1679fe2e-7433-40d9-aada-b5723fb61b5c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-21T23:02:10.000Z" + }, + "end": { + "$date": "2021-09-21T23:33:40.000Z" + }, + "events": [ + { + "uuid": "17b90fd9-58ee-4afa-8408-63e29561b9ce", + "start": { + "$date": "2021-09-21T23:02:10.000Z" + }, + "end": { + "$date": "2021-09-21T23:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b2f863d4-3f32-46ad-8bab-3849272ae74c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-21T23:31:11.000Z" + }, + "end": { + "$date": "2021-09-22T04:31:09.000Z" + }, + "events": [ + { + "uuid": "5156a072-d82f-4acf-a0b2-3b11b5f4a338", + "start": { + "$date": "2021-09-21T23:31:11.000Z" + }, + "end": { + "$date": "2021-09-22T04:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "75d89e78-355a-43ec-a4fe-532db957b43e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-22T00:35:40.000Z" + }, + "end": { + "$date": "2021-09-22T01:27:58.000Z" + }, + "events": [ + { + "uuid": "4c9ea33d-789a-4075-9aab-eac5d75df851", + "start": { + "$date": "2021-09-22T00:35:40.000Z" + }, + "end": { + "$date": "2021-09-22T01:27:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "7d98b979-04ae-4798-9cb7-5bdd21e261e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T01:01:42.000Z" + }, + "end": { + "$date": "2021-09-22T01:28:41.000Z" + }, + "events": [ + { + "uuid": "1583c96b-60f9-4004-9323-1d06e966040a", + "start": { + "$date": "2021-09-22T01:01:42.000Z" + }, + "end": { + "$date": "2021-09-22T01:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8009ebba-2ee0-4d9b-94e5-4de283a7e6f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-22T01:15:34.000Z" + }, + "end": { + "$date": "2021-09-22T01:45:44.000Z" + }, + "events": [ + { + "uuid": "5ee047d6-981f-407b-bcef-963193c29d3e", + "start": { + "$date": "2021-09-22T01:15:34.000Z" + }, + "end": { + "$date": "2021-09-22T01:45:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "a4aa8316-19f4-40e0-8ee5-7efcdac4e87d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T01:41:59.000Z" + }, + "end": { + "$date": "2021-09-22T01:51:28.000Z" + }, + "events": [ + { + "uuid": "ca7ff494-2617-46f3-9699-39abdc17e9bf", + "start": { + "$date": "2021-09-22T01:41:59.000Z" + }, + "end": { + "$date": "2021-09-22T01:51:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1fc037d-2a2a-418c-b609-a928fdc141e2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T02:03:05.000Z" + }, + "end": { + "$date": "2021-09-22T02:21:45.000Z" + }, + "events": [ + { + "uuid": "a7f65623-b7a7-4863-a11d-c6fb072beb7e", + "start": { + "$date": "2021-09-22T02:03:05.000Z" + }, + "end": { + "$date": "2021-09-22T02:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd89a94a-bc90-4cdd-af58-8a4d04e0d180", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T02:25:46.000Z" + }, + "end": { + "$date": "2021-09-22T02:48:20.000Z" + }, + "events": [ + { + "uuid": "cb0fa708-a83b-4a1b-90d1-7f9698ba6e09", + "start": { + "$date": "2021-09-22T02:25:46.000Z" + }, + "end": { + "$date": "2021-09-22T02:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", + "uuid": "af79d5a3-1c04-4dbb-b419-43915680e24e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-22T02:36:11.000Z" + }, + "end": { + "$date": "2021-09-22T05:14:43.000Z" + }, + "events": [ + { + "uuid": "56fadc47-0b4f-4d6b-9982-e29ee7de91a0", + "start": { + "$date": "2021-09-22T02:36:11.000Z" + }, + "end": { + "$date": "2021-09-22T03:54:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99380061-93fc-44ec-b21f-50506be69abf", + "start": { + "$date": "2021-09-22T03:54:11.000Z" + }, + "end": { + "$date": "2021-09-22T04:26:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aae9feca-c950-4860-b48c-c61ccf2b65ba", + "start": { + "$date": "2021-09-22T04:26:11.000Z" + }, + "end": { + "$date": "2021-09-22T04:30:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9774c292-2bf7-4f9a-8341-5f4f5292496b", + "start": { + "$date": "2021-09-22T04:30:11.000Z" + }, + "end": { + "$date": "2021-09-22T05:14:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1b43bcdc-1b00-49f0-aea5-996b148907f6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-22T02:48:36.000Z" + }, + "end": { + "$date": "2021-09-22T03:34:44.000Z" + }, + "events": [ + { + "uuid": "4e1ead62-97e3-4770-8c8e-0102ca4a5031", + "start": { + "$date": "2021-09-22T02:48:36.000Z" + }, + "end": { + "$date": "2021-09-22T03:34:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c8d3e44-413b-4c70-b8db-7b9e56b1e6ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T02:53:57.000Z" + }, + "end": { + "$date": "2021-09-22T03:15:56.000Z" + }, + "events": [ + { + "uuid": "6d6d1534-6efa-48ed-8902-d99c76b6d54e", + "start": { + "$date": "2021-09-22T02:53:57.000Z" + }, + "end": { + "$date": "2021-09-22T03:15:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "69537be1-874f-4859-9c0d-92c06ed07f86", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-22T03:35:10.000Z" + }, + "end": { + "$date": "2021-09-22T04:04:36.000Z" + }, + "events": [ + { + "uuid": "5c505159-3cc4-4d52-b048-78ecefd0988f", + "start": { + "$date": "2021-09-22T03:35:10.000Z" + }, + "end": { + "$date": "2021-09-22T04:04:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b6e365d7-1bb3-49bf-9c09-1f20e5624848", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-22T03:38:13.000Z" + }, + "end": { + "$date": "2021-09-22T04:34:09.000Z" + }, + "events": [ + { + "uuid": "7471ed99-d571-4dd4-95cd-62c8e33be474", + "start": { + "$date": "2021-09-22T03:38:13.000Z" + }, + "end": { + "$date": "2021-09-22T04:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "0e27b08c-a232-4071-9561-80e231a44329", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-22T03:48:59.000Z" + }, + "end": { + "$date": "2021-09-22T05:20:51.000Z" + }, + "events": [ + { + "uuid": "d83e2523-ca4b-43a2-839b-b85c1f6a152f", + "start": { + "$date": "2021-09-22T03:48:59.000Z" + }, + "end": { + "$date": "2021-09-22T05:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3beaf5e9-8e5b-4955-8778-5e850de432d5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-22T04:31:39.000Z" + }, + "end": { + "$date": "2021-09-22T05:15:50.000Z" + }, + "events": [ + { + "uuid": "b56bf390-b041-4239-90a6-a0797730edb9", + "start": { + "$date": "2021-09-22T04:31:39.000Z" + }, + "end": { + "$date": "2021-09-22T05:15:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", + "uuid": "43205554-3e86-465c-b92a-7d5a083074a9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-22T05:14:48.000Z" + }, + "end": { + "$date": "2021-09-22T07:47:05.000Z" + }, + "events": [ + { + "uuid": "cbe70bc7-7eed-4bbf-96b2-8c240debb101", + "start": { + "$date": "2021-09-22T05:14:48.000Z" + }, + "end": { + "$date": "2021-09-22T07:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e88c748-0e1c-4583-9ef9-b4f0bf3f4457", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-22T05:26:32.000Z" + }, + "end": { + "$date": "2021-09-22T06:00:37.000Z" + }, + "events": [ + { + "uuid": "756603e0-99ab-4965-9cdc-52a6611c360a", + "start": { + "$date": "2021-09-22T05:26:32.000Z" + }, + "end": { + "$date": "2021-09-22T06:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ad1d8282-b1d8-427d-bdb9-f361d13506ff", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-22T05:27:17.000Z" + }, + "end": { + "$date": "2021-09-22T06:09:56.000Z" + }, + "events": [ + { + "uuid": "f11cc344-13d1-477d-9d5d-4ca5464ee104", + "start": { + "$date": "2021-09-22T05:27:17.000Z" + }, + "end": { + "$date": "2021-09-22T06:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "0c4d612c-5eae-4568-86c2-55142e6864ae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-22T06:03:47.000Z" + }, + "end": { + "$date": "2021-09-22T06:10:09.000Z" + }, + "events": [ + { + "uuid": "ea242b05-81d8-426b-9991-ec548c7c48de", + "start": { + "$date": "2021-09-22T06:03:47.000Z" + }, + "end": { + "$date": "2021-09-22T06:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", + "uuid": "dbb58807-1a07-4aae-8e76-3ef0409b4d55", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-22T11:28:17.000Z" + }, + "end": { + "$date": "2021-09-22T14:51:03.000Z" + }, + "events": [ + { + "uuid": "1f5bce7e-b317-435c-abba-7dfdd261a466", + "start": { + "$date": "2021-09-22T11:28:17.000Z" + }, + "end": { + "$date": "2021-09-22T14:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "583e5383-5456-4ed0-8e4a-9edb2a1892a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T14:55:15.000Z" + }, + "end": { + "$date": "2021-09-22T15:25:20.000Z" + }, + "events": [ + { + "uuid": "974b78bb-ec0b-4920-8db0-ef3d39173fa9", + "start": { + "$date": "2021-09-22T14:55:15.000Z" + }, + "end": { + "$date": "2021-09-22T15:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e23770e9-921e-45d1-94bb-6e741c71b5ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T16:04:08.000Z" + }, + "end": { + "$date": "2021-09-22T16:34:37.000Z" + }, + "events": [ + { + "uuid": "49e45663-4a32-47a0-bf61-6150ade7ac6e", + "start": { + "$date": "2021-09-22T16:04:08.000Z" + }, + "end": { + "$date": "2021-09-22T16:30:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4fa1aa5e-bd5b-448c-962e-351b9b326db4", + "start": { + "$date": "2021-09-22T16:30:08.000Z" + }, + "end": { + "$date": "2021-09-22T16:34:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a248888c-f5c6-4a12-8676-909173640851", + "start": { + "$date": "2021-09-22T16:34:08.000Z" + }, + "end": { + "$date": "2021-09-22T16:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78d40fb6-6420-474e-b119-ebd15edf0d37", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T21:18:57.000Z" + }, + "end": { + "$date": "2021-09-22T21:35:03.000Z" + }, + "events": [ + { + "uuid": "637e7adc-1fe3-4faa-a5f4-2e090392de8e", + "start": { + "$date": "2021-09-22T21:18:57.000Z" + }, + "end": { + "$date": "2021-09-22T21:35:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1057891f-1674-405e-9b2b-3832b233c17f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T21:37:47.000Z" + }, + "end": { + "$date": "2021-09-22T21:55:21.000Z" + }, + "events": [ + { + "uuid": "ca60df4e-01c7-469d-8609-e04ea340a1c1", + "start": { + "$date": "2021-09-22T21:37:47.000Z" + }, + "end": { + "$date": "2021-09-22T21:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "9f045fc1-4366-43c8-a192-aca1b72dafd7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-22T21:45:22.000Z" + }, + "end": { + "$date": "2021-09-22T23:00:47.000Z" + }, + "events": [ + { + "uuid": "5dc4d20c-975f-41d9-b9da-69b5384b2bf6", + "start": { + "$date": "2021-09-22T21:45:22.000Z" + }, + "end": { + "$date": "2021-09-22T23:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a68a3a2-edc8-49ef-b0f1-102d0416dbd2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-22T21:55:56.000Z" + }, + "end": { + "$date": "2021-09-22T22:48:44.000Z" + }, + "events": [ + { + "uuid": "1bd2af9d-b891-4305-ba2c-5cf4977dade6", + "start": { + "$date": "2021-09-22T21:55:56.000Z" + }, + "end": { + "$date": "2021-09-22T22:27:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44e0800e-669e-4487-a454-4392f0166f5d", + "start": { + "$date": "2021-09-22T22:27:56.000Z" + }, + "end": { + "$date": "2021-09-22T22:38:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2bce1696-d583-4722-b709-e38b3d928354", + "start": { + "$date": "2021-09-22T22:38:56.000Z" + }, + "end": { + "$date": "2021-09-22T22:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54c75a2d-3617-4f2c-9f4f-ec0fe72e7b5c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T00:33:19.000Z" + }, + "end": { + "$date": "2021-09-23T00:56:28.000Z" + }, + "events": [ + { + "uuid": "b6467175-1c06-4b23-a66e-251dd174556a", + "start": { + "$date": "2021-09-23T00:33:19.000Z" + }, + "end": { + "$date": "2021-09-23T00:56:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "dcd5a6ab-1c4a-4c6f-be54-5aa521ad3f53", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-23T00:50:13.000Z" + }, + "end": { + "$date": "2021-09-23T00:52:42.000Z" + }, + "events": [ + { + "uuid": "4d0b6566-f5db-4ae3-8b22-b04a1bb70e8c", + "start": { + "$date": "2021-09-23T00:50:13.000Z" + }, + "end": { + "$date": "2021-09-23T00:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "74eda363-9ca2-4b86-8510-1037ab50f18a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-23T00:53:14.000Z" + }, + "end": { + "$date": "2021-09-23T01:26:33.000Z" + }, + "events": [ + { + "uuid": "d2aabe49-8c5a-470e-bba8-6a14c0c266dd", + "start": { + "$date": "2021-09-23T00:53:14.000Z" + }, + "end": { + "$date": "2021-09-23T01:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f131195-e4b8-45ba-9a9e-22cbd82c7c8c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T00:59:39.000Z" + }, + "end": { + "$date": "2021-09-23T01:15:14.000Z" + }, + "events": [ + { + "uuid": "f45671b8-258d-411a-8386-c0709504e829", + "start": { + "$date": "2021-09-23T00:59:39.000Z" + }, + "end": { + "$date": "2021-09-23T01:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48c8ace6-a3b7-491d-9985-d6b2a8518703", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T01:17:15.000Z" + }, + "end": { + "$date": "2021-09-23T01:40:44.000Z" + }, + "events": [ + { + "uuid": "e9bfe910-0769-4f2b-bb09-3c56e499b912", + "start": { + "$date": "2021-09-23T01:17:15.000Z" + }, + "end": { + "$date": "2021-09-23T01:40:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "875880db-31d7-44bb-984a-14090369ed07", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-23T01:19:13.000Z" + }, + "end": { + "$date": "2021-09-23T05:46:30.000Z" + }, + "events": [ + { + "uuid": "b43c446c-2ac4-4d8e-902e-3c30f1446ebd", + "start": { + "$date": "2021-09-23T01:19:13.000Z" + }, + "end": { + "$date": "2021-09-23T05:46:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f284d8ec-5085-4df9-ac6e-813dfbc0569b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-23T01:34:01.000Z" + }, + "end": { + "$date": "2021-09-23T03:54:03.000Z" + }, + "events": [ + { + "uuid": "9b001b0d-14e5-4ece-8e93-b9ce58ebb63c", + "start": { + "$date": "2021-09-23T01:34:01.000Z" + }, + "end": { + "$date": "2021-09-23T02:42:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3070cd8-a479-4f4e-b4e5-1dc4b269c08f", + "start": { + "$date": "2021-09-23T02:42:01.000Z" + }, + "end": { + "$date": "2021-09-23T02:45:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b3dbeb3-e0d6-417e-8d4b-f687440d0f73", + "start": { + "$date": "2021-09-23T02:45:01.000Z" + }, + "end": { + "$date": "2021-09-23T03:54:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2ad4db99-cb60-4609-80b9-489c81b2c023", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-23T02:40:11.000Z" + }, + "end": { + "$date": "2021-09-23T04:19:31.000Z" + }, + "events": [ + { + "uuid": "c226ddf4-ddd4-4b14-9f8e-62ed0bbc70ac", + "start": { + "$date": "2021-09-23T02:40:11.000Z" + }, + "end": { + "$date": "2021-09-23T04:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9ffc420a-4306-4d52-9fe2-701bc864c317", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-23T03:31:21.000Z" + }, + "end": { + "$date": "2021-09-23T05:11:12.000Z" + }, + "events": [ + { + "uuid": "05fdd431-a830-4e04-bfe8-b89022a08ced", + "start": { + "$date": "2021-09-23T03:31:21.000Z" + }, + "end": { + "$date": "2021-09-23T05:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "8340a2ec-40da-4a86-9101-178da5b9829b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-23T03:41:28.000Z" + }, + "end": { + "$date": "2021-09-23T05:11:24.000Z" + }, + "events": [ + { + "uuid": "a7906fd2-727a-46d4-9bfb-6ef5a61d808c", + "start": { + "$date": "2021-09-23T03:41:28.000Z" + }, + "end": { + "$date": "2021-09-23T05:11:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "e2af2306-b793-41a4-aca7-051ea28691cd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-23T04:20:16.000Z" + }, + "end": { + "$date": "2021-09-23T05:06:48.000Z" + }, + "events": [ + { + "uuid": "55afc9ee-06cf-438a-a401-0c1030bcacf3", + "start": { + "$date": "2021-09-23T04:20:16.000Z" + }, + "end": { + "$date": "2021-09-23T05:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e47cda4-fecf-4d1e-91fe-4b171067cee3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-23T05:17:59.000Z" + }, + "end": { + "$date": "2021-09-23T05:42:11.000Z" + }, + "events": [ + { + "uuid": "6fdcab7f-3760-4995-bf85-caa19773de19", + "start": { + "$date": "2021-09-23T05:17:59.000Z" + }, + "end": { + "$date": "2021-09-23T05:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db6bffd1-4c0b-44c8-aa1c-ae8c28d23519", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-23T05:47:09.000Z" + }, + "end": { + "$date": "2021-09-23T06:06:57.000Z" + }, + "events": [ + { + "uuid": "abc94633-782b-4132-9be4-724dc053d570", + "start": { + "$date": "2021-09-23T05:47:09.000Z" + }, + "end": { + "$date": "2021-09-23T06:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cbeb2e05-369f-4b58-ae53-0ac999438b6f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-23T05:49:17.000Z" + }, + "end": { + "$date": "2021-09-23T06:32:56.000Z" + }, + "events": [ + { + "uuid": "bca726c0-82dd-4621-b91a-0be80c447ed8", + "start": { + "$date": "2021-09-23T05:49:17.000Z" + }, + "end": { + "$date": "2021-09-23T06:32:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb88775b-b19b-4480-aed8-cd09375962a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-23T06:09:25.000Z" + }, + "end": { + "$date": "2021-09-23T06:27:01.000Z" + }, + "events": [ + { + "uuid": "0533e8d8-f944-4a73-b553-a57bb365c9f0", + "start": { + "$date": "2021-09-23T06:09:25.000Z" + }, + "end": { + "$date": "2021-09-23T06:27:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4da6dd5c-b442-48d6-90a5-f7cbeb0774a2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-23T06:33:11.000Z" + }, + "end": { + "$date": "2021-09-23T07:17:44.000Z" + }, + "events": [ + { + "uuid": "f07213e0-dfaf-457d-927c-8f41b3746c8b", + "start": { + "$date": "2021-09-23T06:33:11.000Z" + }, + "end": { + "$date": "2021-09-23T07:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "ec1ff638-63d3-4298-a019-87193e08f4b2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-23T12:53:40.000Z" + }, + "end": { + "$date": "2021-09-23T12:57:00.000Z" + }, + "events": [ + { + "uuid": "170eb918-7779-4f48-a13f-9b9b497a2ad0", + "start": { + "$date": "2021-09-23T12:53:40.000Z" + }, + "end": { + "$date": "2021-09-23T12:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "c7beeb83-a12c-4ac7-a424-d4b2e2a3355c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-23T18:00:03.000Z" + }, + "end": { + "$date": "2021-09-23T20:06:06.000Z" + }, + "events": [ + { + "uuid": "77fb6923-80cc-4c97-a19a-715c013b662c", + "start": { + "$date": "2021-09-23T18:00:03.000Z" + }, + "end": { + "$date": "2021-09-23T18:59:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3dc33582-1974-4e5f-93b0-c35ed55064b1", + "start": { + "$date": "2021-09-23T18:59:03.000Z" + }, + "end": { + "$date": "2021-09-23T19:02:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7621aa24-7ee2-49ec-bd93-c389d84b757d", + "start": { + "$date": "2021-09-23T19:02:03.000Z" + }, + "end": { + "$date": "2021-09-23T20:06:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d998d0c-5a26-46fe-89af-a3ec2faf00a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T22:14:16.000Z" + }, + "end": { + "$date": "2021-09-23T22:33:56.000Z" + }, + "events": [ + { + "uuid": "e1c7ef85-f522-4be5-9cc3-740ff7cbd8bf", + "start": { + "$date": "2021-09-23T22:14:16.000Z" + }, + "end": { + "$date": "2021-09-23T22:33:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1968f6dc-3ce3-4677-a853-935225bce4cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T22:59:38.000Z" + }, + "end": { + "$date": "2021-09-23T23:12:04.000Z" + }, + "events": [ + { + "uuid": "ca556b83-c9dc-4314-8be3-00d41bc2c52d", + "start": { + "$date": "2021-09-23T22:59:38.000Z" + }, + "end": { + "$date": "2021-09-23T23:10:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63f9219c-21a2-4b67-a48f-4769fc8437f6", + "start": { + "$date": "2021-09-23T23:10:38.000Z" + }, + "end": { + "$date": "2021-09-23T23:17:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "defa51ec-c93c-4ba6-a2f4-08fa35a926c5", + "start": { + "$date": "2021-09-23T23:17:38.000Z" + }, + "end": { + "$date": "2021-09-23T23:12:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a64308b3-6f94-4e96-9bd5-73f97500ebec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T23:15:39.000Z" + }, + "end": { + "$date": "2021-09-23T23:34:09.000Z" + }, + "events": [ + { + "uuid": "9803ab28-7bbe-4692-9bd0-4920616b7d41", + "start": { + "$date": "2021-09-23T23:15:39.000Z" + }, + "end": { + "$date": "2021-09-23T23:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "558e1686-3353-4873-8c2d-5f17a1e48cec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-23T23:39:39.000Z" + }, + "end": { + "$date": "2021-09-24T00:02:35.000Z" + }, + "events": [ + { + "uuid": "6a4c48d0-63ce-451c-b9ba-96e57fec63ba", + "start": { + "$date": "2021-09-23T23:39:39.000Z" + }, + "end": { + "$date": "2021-09-24T00:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "88dd02c4-7fa4-40f3-8309-a8315010ae7f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-23T23:35:24.000Z" + }, + "end": { + "$date": "2021-09-23T23:37:30.000Z" + }, + "events": [ + { + "uuid": "f6625fe6-cdca-4c9f-9a50-3f72208553d5", + "start": { + "$date": "2021-09-23T23:35:24.000Z" + }, + "end": { + "$date": "2021-09-23T23:37:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c6f0bab0-2ca0-4f72-bc89-b8d3dddb37f1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-23T23:37:50.000Z" + }, + "end": { + "$date": "2021-09-23T23:41:46.000Z" + }, + "events": [ + { + "uuid": "05a8efc0-cf7a-4fc2-94e8-dec302d005b5", + "start": { + "$date": "2021-09-23T23:37:50.000Z" + }, + "end": { + "$date": "2021-09-23T23:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "36daf8ef-0f98-4669-9d50-a2b4ac99f512", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-23T23:39:06.000Z" + }, + "end": { + "$date": "2021-09-24T01:10:31.000Z" + }, + "events": [ + { + "uuid": "eb71fe8d-fdb2-44db-8b02-3f95e2087ef7", + "start": { + "$date": "2021-09-23T23:39:06.000Z" + }, + "end": { + "$date": "2021-09-24T00:29:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2704a13-500f-44f5-86f9-f2d76ca9ae7e", + "start": { + "$date": "2021-09-24T00:29:06.000Z" + }, + "end": { + "$date": "2021-09-24T01:09:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a215b87c-a45a-4daa-8cd8-3e8a7e5e7fc4", + "start": { + "$date": "2021-09-24T01:09:06.000Z" + }, + "end": { + "$date": "2021-09-24T01:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0c5837fe-583f-4a4f-8656-497aca065021", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-23T23:42:01.000Z" + }, + "end": { + "$date": "2021-09-24T00:13:41.000Z" + }, + "events": [ + { + "uuid": "145b8e70-6757-4e78-847d-b3728e4f1949", + "start": { + "$date": "2021-09-23T23:42:01.000Z" + }, + "end": { + "$date": "2021-09-24T00:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "75d058a7-7a46-4ec2-a2fc-2af2bf4c4b5a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-23T22:43:19.000Z" + }, + "end": { + "$date": "2021-09-24T05:08:52.000Z" + }, + "events": [ + { + "uuid": "a91ce619-3a6b-4fd2-9825-ccf47ea86984", + "start": { + "$date": "2021-09-23T22:43:19.000Z" + }, + "end": { + "$date": "2021-09-24T01:46:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc815dd8-93c3-4ed2-8f1b-f04390939cd2", + "start": { + "$date": "2021-09-24T01:46:19.000Z" + }, + "end": { + "$date": "2021-09-24T01:58:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18b8f03f-a96c-4fbd-a4e1-6538b1668b32", + "start": { + "$date": "2021-09-24T01:58:19.000Z" + }, + "end": { + "$date": "2021-09-24T05:08:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b786fe35-dd69-43f8-a21e-96732702db34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T00:07:55.000Z" + }, + "end": { + "$date": "2021-09-24T00:22:51.000Z" + }, + "events": [ + { + "uuid": "a8e5eb69-1c17-43d1-b62b-9d78f16cc91e", + "start": { + "$date": "2021-09-24T00:07:55.000Z" + }, + "end": { + "$date": "2021-09-24T00:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f5e12c6-5074-4020-a31d-b4bf13236178", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T00:29:15.000Z" + }, + "end": { + "$date": "2021-09-24T00:40:41.000Z" + }, + "events": [ + { + "uuid": "6ac73c36-d920-4697-94ed-bdd3ed734c29", + "start": { + "$date": "2021-09-24T00:29:15.000Z" + }, + "end": { + "$date": "2021-09-24T00:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f829849-3637-4519-ae8b-72f98c02f3ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T00:45:20.000Z" + }, + "end": { + "$date": "2021-09-24T00:58:05.000Z" + }, + "events": [ + { + "uuid": "2e590a69-44e6-4584-87ce-976a3f8c012d", + "start": { + "$date": "2021-09-24T00:45:20.000Z" + }, + "end": { + "$date": "2021-09-24T00:58:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31cb5cda-da93-4f29-aad1-6e72d165a0f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T01:01:55.000Z" + }, + "end": { + "$date": "2021-09-24T01:23:21.000Z" + }, + "events": [ + { + "uuid": "14b3f706-a04a-4435-a8a4-8cf0483e5e17", + "start": { + "$date": "2021-09-24T01:01:55.000Z" + }, + "end": { + "$date": "2021-09-24T01:23:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2c55756-ae07-4771-86d2-bba19006baa0", + "uuid": "73162673-700b-4fe5-affa-c5f42550ed09", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-24T01:11:12.000Z" + }, + "end": { + "$date": "2021-09-24T01:12:16.000Z" + }, + "events": [ + { + "uuid": "a94d15bc-389f-4763-90f1-873dad9c4c00", + "start": { + "$date": "2021-09-24T01:11:12.000Z" + }, + "end": { + "$date": "2021-09-24T01:12:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "158ba47f-fbfe-48a0-a7f7-4196891c5f36", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-24T01:12:23.000Z" + }, + "end": { + "$date": "2021-09-24T02:05:47.000Z" + }, + "events": [ + { + "uuid": "7f86f473-61f8-4940-a698-e506c39d0939", + "start": { + "$date": "2021-09-24T01:12:23.000Z" + }, + "end": { + "$date": "2021-09-24T02:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23d908a0-698d-4206-8850-021bfa8b2fbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T01:36:07.000Z" + }, + "end": { + "$date": "2021-09-24T01:53:38.000Z" + }, + "events": [ + { + "uuid": "3fef8d7f-9932-4836-b38f-38ee08ca2234", + "start": { + "$date": "2021-09-24T01:36:07.000Z" + }, + "end": { + "$date": "2021-09-24T01:53:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "74ef54ee-81dd-4865-8732-e89befe9d59e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-24T01:47:01.000Z" + }, + "end": { + "$date": "2021-09-24T01:54:33.000Z" + }, + "events": [ + { + "uuid": "816a4020-bedd-40a3-a507-398e915abb64", + "start": { + "$date": "2021-09-24T01:47:01.000Z" + }, + "end": { + "$date": "2021-09-24T01:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61d56a84-3538-4f81-8aa6-9dead4a4cfff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T01:53:41.000Z" + }, + "end": { + "$date": "2021-09-24T02:59:29.000Z" + }, + "events": [ + { + "uuid": "33bd53b7-1262-4442-a007-eb0359abd16f", + "start": { + "$date": "2021-09-24T01:53:41.000Z" + }, + "end": { + "$date": "2021-09-24T02:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "fd70dca4-d91a-4ef1-bfbf-eb38f8ce0ba0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-24T01:55:28.000Z" + }, + "end": { + "$date": "2021-09-24T02:00:20.000Z" + }, + "events": [ + { + "uuid": "005146a8-bb5d-4c20-aa05-89e1ecb955db", + "start": { + "$date": "2021-09-24T01:55:28.000Z" + }, + "end": { + "$date": "2021-09-24T02:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "9e118fa7-5ef1-4e47-aa04-798c8f294604", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-24T02:00:29.000Z" + }, + "end": { + "$date": "2021-09-24T02:22:42.000Z" + }, + "events": [ + { + "uuid": "5f17c547-36c5-4054-b889-b6b68876576e", + "start": { + "$date": "2021-09-24T02:00:29.000Z" + }, + "end": { + "$date": "2021-09-24T02:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "657a1589-f90f-4248-8ff3-7312c8b6c4fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-24T02:18:50.000Z" + }, + "end": { + "$date": "2021-09-24T02:32:27.000Z" + }, + "events": [ + { + "uuid": "de0d3afe-2057-4b55-9605-55539b02ec06", + "start": { + "$date": "2021-09-24T02:18:50.000Z" + }, + "end": { + "$date": "2021-09-24T02:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3543239a-f79f-44e7-b671-38efd4858bfc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-24T03:02:23.000Z" + }, + "end": { + "$date": "2021-09-24T03:21:40.000Z" + }, + "events": [ + { + "uuid": "749d143e-67fc-4b2a-85f7-2aa9a6f48170", + "start": { + "$date": "2021-09-24T03:02:23.000Z" + }, + "end": { + "$date": "2021-09-24T03:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8885276b-005e-40bb-af38-b00262e8d0a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T03:03:00.000Z" + }, + "end": { + "$date": "2021-09-24T03:21:41.000Z" + }, + "events": [ + { + "uuid": "3f8e98cd-45ac-4e7c-969c-94956f7f4502", + "start": { + "$date": "2021-09-24T03:03:00.000Z" + }, + "end": { + "$date": "2021-09-24T03:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab01f08c-fa16-4ec6-9034-1c510ffdfcdc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-24T03:02:26.000Z" + }, + "end": { + "$date": "2021-09-24T03:21:48.000Z" + }, + "events": [ + { + "uuid": "d3aff8fd-11c1-49e8-826d-368337db0f4e", + "start": { + "$date": "2021-09-24T03:02:26.000Z" + }, + "end": { + "$date": "2021-09-24T03:21:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "500b29f1-59a7-40d3-8ee0-1767a4d99df0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-24T03:18:20.000Z" + }, + "end": { + "$date": "2021-09-24T03:36:35.000Z" + }, + "events": [ + { + "uuid": "71c847a4-c3da-4e20-9526-bfc64411e8b0", + "start": { + "$date": "2021-09-24T03:18:20.000Z" + }, + "end": { + "$date": "2021-09-24T03:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fb1d79f-eca0-435f-bb80-a9336acafe72", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-24T03:25:33.000Z" + }, + "end": { + "$date": "2021-09-24T03:47:06.000Z" + }, + "events": [ + { + "uuid": "d84d9c8f-407c-41e9-b23c-c0f254214ca4", + "start": { + "$date": "2021-09-24T03:25:33.000Z" + }, + "end": { + "$date": "2021-09-24T03:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "682ae76c-ed93-409d-bb2c-4400bc1fe329", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-24T03:25:17.000Z" + }, + "end": { + "$date": "2021-09-24T03:47:08.000Z" + }, + "events": [ + { + "uuid": "aa6c1201-ce48-4261-b131-c6ebad47edba", + "start": { + "$date": "2021-09-24T03:25:17.000Z" + }, + "end": { + "$date": "2021-09-24T03:47:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9931e02b-53a2-4d38-b0f6-57acaad75af4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T03:26:20.000Z" + }, + "end": { + "$date": "2021-09-24T03:46:56.000Z" + }, + "events": [ + { + "uuid": "6e45cf96-d1a5-4418-aae7-0a8476addcfc", + "start": { + "$date": "2021-09-24T03:26:20.000Z" + }, + "end": { + "$date": "2021-09-24T03:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "a374dffb-bc70-46d0-9d68-95a52d91cd4f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-24T03:31:55.000Z" + }, + "end": { + "$date": "2021-09-24T04:41:11.000Z" + }, + "events": [ + { + "uuid": "23024ca3-0f42-470a-98d6-3f4bfe38bfcc", + "start": { + "$date": "2021-09-24T03:31:55.000Z" + }, + "end": { + "$date": "2021-09-24T04:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f35e6e6a-4d23-4ea2-aef8-f35726fc0d26", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-24T03:39:01.000Z" + }, + "end": { + "$date": "2021-09-24T04:19:47.000Z" + }, + "events": [ + { + "uuid": "85f9c313-99ff-4d21-b114-ed623cf4d4fe", + "start": { + "$date": "2021-09-24T03:39:01.000Z" + }, + "end": { + "$date": "2021-09-24T04:19:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8c6e8f68-8136-4618-941b-13374092795b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-24T03:42:12.000Z" + }, + "end": { + "$date": "2021-09-24T04:51:36.000Z" + }, + "events": [ + { + "uuid": "7a0ef097-d2f0-454f-ac4a-40e01e8831b3", + "start": { + "$date": "2021-09-24T03:42:12.000Z" + }, + "end": { + "$date": "2021-09-24T04:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12e69230-1604-4cb1-97e1-a8a2f8c15ecd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T03:55:00.000Z" + }, + "end": { + "$date": "2021-09-24T04:23:26.000Z" + }, + "events": [ + { + "uuid": "55b1e782-1ea3-4697-b053-bc38c200a1ad", + "start": { + "$date": "2021-09-24T03:55:00.000Z" + }, + "end": { + "$date": "2021-09-24T04:23:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea47a234-4644-41a5-9a7b-7efcdf7a7a60", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T04:35:07.000Z" + }, + "end": { + "$date": "2021-09-24T05:03:07.000Z" + }, + "events": [ + { + "uuid": "8ce2acf2-428a-406c-8f73-6797775ed5ec", + "start": { + "$date": "2021-09-24T04:35:07.000Z" + }, + "end": { + "$date": "2021-09-24T05:03:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0c205f75-1622-4e44-992c-4def84a8ad23", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-24T04:25:51.000Z" + }, + "end": { + "$date": "2021-09-24T04:51:16.000Z" + }, + "events": [ + { + "uuid": "0ac00700-2752-4c82-9ea3-20af180093bf", + "start": { + "$date": "2021-09-24T04:25:51.000Z" + }, + "end": { + "$date": "2021-09-24T04:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "095f6670-8653-4931-bdc2-62b711d2f8ca", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-24T04:47:10.000Z" + }, + "end": { + "$date": "2021-09-24T05:15:21.000Z" + }, + "events": [ + { + "uuid": "33047b39-8824-4b18-bc3f-aa382832d8f7", + "start": { + "$date": "2021-09-24T04:47:10.000Z" + }, + "end": { + "$date": "2021-09-24T05:15:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cee768bf-bfd5-43f2-8d4c-6cb5c9a7dcf1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T05:09:52.000Z" + }, + "end": { + "$date": "2021-09-24T05:31:38.000Z" + }, + "events": [ + { + "uuid": "804ac584-1804-466a-9ed1-cf92751e6c59", + "start": { + "$date": "2021-09-24T05:09:52.000Z" + }, + "end": { + "$date": "2021-09-24T05:31:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88e7fab6-4630-4125-a927-d9f9005348e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-24T05:18:41.000Z" + }, + "end": { + "$date": "2021-09-24T05:32:37.000Z" + }, + "events": [ + { + "uuid": "24557479-54a1-4577-a52e-5aefc83a2f95", + "start": { + "$date": "2021-09-24T05:18:41.000Z" + }, + "end": { + "$date": "2021-09-24T05:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f54060d-9367-456d-8e69-6759470ab3b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T05:36:13.000Z" + }, + "end": { + "$date": "2021-09-24T06:00:53.000Z" + }, + "events": [ + { + "uuid": "29634ecc-701a-4c9f-bd54-fe8735257379", + "start": { + "$date": "2021-09-24T05:36:13.000Z" + }, + "end": { + "$date": "2021-09-24T06:00:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07ea5077-8ff5-4362-a6d2-3662480bdaad", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-24T05:36:36.000Z" + }, + "end": { + "$date": "2021-09-24T06:00:56.000Z" + }, + "events": [ + { + "uuid": "c8f4a93a-9143-4a82-8642-5f5195bf4771", + "start": { + "$date": "2021-09-24T05:36:36.000Z" + }, + "end": { + "$date": "2021-09-24T06:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56f042f0-1b31-4c09-9abb-7151467c8bbe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-24T06:05:24.000Z" + }, + "end": { + "$date": "2021-09-24T06:26:17.000Z" + }, + "events": [ + { + "uuid": "587d34d1-1da5-4777-8412-ec456ff405cb", + "start": { + "$date": "2021-09-24T06:05:24.000Z" + }, + "end": { + "$date": "2021-09-24T06:26:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffa03b8f-dc23-4ace-8e8d-25cd3edae608", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T06:05:33.000Z" + }, + "end": { + "$date": "2021-09-24T06:26:14.000Z" + }, + "events": [ + { + "uuid": "96e66c15-34eb-4ad9-a365-a7d66b50d743", + "start": { + "$date": "2021-09-24T06:05:33.000Z" + }, + "end": { + "$date": "2021-09-24T06:26:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dac118f9-3b94-4fba-b0dc-25b810107530", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-24T06:05:52.000Z" + }, + "end": { + "$date": "2021-09-24T06:26:13.000Z" + }, + "events": [ + { + "uuid": "a427fc17-1211-4050-ad55-730667a7355e", + "start": { + "$date": "2021-09-24T06:05:52.000Z" + }, + "end": { + "$date": "2021-09-24T06:26:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "74170c74-8050-47f8-9b70-93f9c150a5c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-24T06:14:11.000Z" + }, + "end": { + "$date": "2021-09-24T06:39:03.000Z" + }, + "events": [ + { + "uuid": "9e2a2249-dfa7-429e-bf0a-88025ba11995", + "start": { + "$date": "2021-09-24T06:14:11.000Z" + }, + "end": { + "$date": "2021-09-24T06:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb05a201-15ad-4a4f-8e14-d772c4d0596e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-24T06:29:21.000Z" + }, + "end": { + "$date": "2021-09-24T06:51:56.000Z" + }, + "events": [ + { + "uuid": "58d288a7-88ef-4536-9181-92402e5f1997", + "start": { + "$date": "2021-09-24T06:29:21.000Z" + }, + "end": { + "$date": "2021-09-24T06:51:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6af050ad-2e14-4b5a-ae5f-348609c280a4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-24T06:29:18.000Z" + }, + "end": { + "$date": "2021-09-24T06:51:53.000Z" + }, + "events": [ + { + "uuid": "65135c05-a7e7-4b6d-bfc3-e913c20cb121", + "start": { + "$date": "2021-09-24T06:29:18.000Z" + }, + "end": { + "$date": "2021-09-24T06:51:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc87714e-038e-4839-9968-5b6d1b517da2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T06:29:04.000Z" + }, + "end": { + "$date": "2021-09-24T06:51:49.000Z" + }, + "events": [ + { + "uuid": "f6d2337d-f02d-4c93-8f14-626222d517f9", + "start": { + "$date": "2021-09-24T06:29:04.000Z" + }, + "end": { + "$date": "2021-09-24T06:51:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b7a384fd-f12e-4c97-a61f-3dd70f369e41", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-24T14:20:30.000Z" + }, + "end": { + "$date": "2021-09-24T14:22:51.000Z" + }, + "events": [ + { + "uuid": "4c6a633a-4acd-43a2-8eea-a6fe24777da8", + "start": { + "$date": "2021-09-24T14:20:30.000Z" + }, + "end": { + "$date": "2021-09-24T14:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2256b8c-dc8e-4e3e-b084-a7408584698a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T15:01:06.000Z" + }, + "end": { + "$date": "2021-09-24T15:23:36.000Z" + }, + "events": [ + { + "uuid": "7b7089b0-8a2c-4e66-b28a-0495bc916220", + "start": { + "$date": "2021-09-24T15:01:06.000Z" + }, + "end": { + "$date": "2021-09-24T15:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29db3ad2-fa26-4fd2-b915-b0080212a70c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T15:29:27.000Z" + }, + "end": { + "$date": "2021-09-24T15:51:12.000Z" + }, + "events": [ + { + "uuid": "d2895eb7-3512-4c34-b44c-e62d26c56ccc", + "start": { + "$date": "2021-09-24T15:29:27.000Z" + }, + "end": { + "$date": "2021-09-24T15:51:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e098f13-0aca-4082-bace-13d98d8f6933", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T17:51:50.000Z" + }, + "end": { + "$date": "2021-09-24T18:05:19.000Z" + }, + "events": [ + { + "uuid": "afa33102-bb53-4868-adb9-ab5e839fa8ad", + "start": { + "$date": "2021-09-24T17:51:50.000Z" + }, + "end": { + "$date": "2021-09-24T18:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48313b96-1d79-4881-aff6-5e08feff7448", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-24T18:28:10.000Z" + }, + "end": { + "$date": "2021-09-24T18:29:26.000Z" + }, + "events": [ + { + "uuid": "2588af0f-46d9-471c-b75e-480e7f19bbba", + "start": { + "$date": "2021-09-24T18:28:10.000Z" + }, + "end": { + "$date": "2021-09-24T18:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2be8672d-0659-4d59-9806-406ddfea38a3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-24T20:09:29.000Z" + }, + "end": { + "$date": "2021-09-24T20:43:36.000Z" + }, + "events": [ + { + "uuid": "f71628be-8e2f-4665-930a-b687c2ae4a4c", + "start": { + "$date": "2021-09-24T20:09:29.000Z" + }, + "end": { + "$date": "2021-09-24T20:43:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7592e000-17b6-46d7-a1a7-bd6ee2c3fc46", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-24T23:37:28.000Z" + }, + "end": { + "$date": "2021-09-24T23:47:22.000Z" + }, + "events": [ + { + "uuid": "f9b49c6e-8ee0-4199-8dfe-640f6283cb66", + "start": { + "$date": "2021-09-24T23:37:28.000Z" + }, + "end": { + "$date": "2021-09-24T23:47:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "da1f27f2-838f-4031-bb89-7ad1a7ad9a51", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-24T23:51:27.000Z" + }, + "end": { + "$date": "2021-09-24T23:59:00.000Z" + }, + "events": [ + { + "uuid": "8f2b1073-b4d2-4650-8cab-f945dbe4de92", + "start": { + "$date": "2021-09-24T23:51:27.000Z" + }, + "end": { + "$date": "2021-09-24T23:59:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "54be9749-e117-4c6b-b717-8238060244f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T00:05:45.000Z" + }, + "end": { + "$date": "2021-09-25T00:17:38.000Z" + }, + "events": [ + { + "uuid": "9ac70d19-5e51-4d81-be8d-77900bfd7d82", + "start": { + "$date": "2021-09-25T00:05:45.000Z" + }, + "end": { + "$date": "2021-09-25T00:17:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1cd3430f-733b-440a-8ba4-1fbcc8e7e41d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-25T00:06:12.000Z" + }, + "end": { + "$date": "2021-09-25T07:03:21.000Z" + }, + "events": [ + { + "uuid": "c3aa4a38-2526-4ff1-9dfd-9a23a759a222", + "start": { + "$date": "2021-09-25T00:06:12.000Z" + }, + "end": { + "$date": "2021-09-25T03:57:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39b96be5-955b-4648-a01e-3a7c188230c3", + "start": { + "$date": "2021-09-25T03:57:12.000Z" + }, + "end": { + "$date": "2021-09-25T04:02:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f05b3f99-3024-4cd3-87e8-2a8ea7f9fd1a", + "start": { + "$date": "2021-09-25T04:02:12.000Z" + }, + "end": { + "$date": "2021-09-25T07:03:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "6d89a3ac-dcf0-4448-88de-7a1a82d4eb05", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T00:54:58.000Z" + }, + "end": { + "$date": "2021-09-25T00:58:29.000Z" + }, + "events": [ + { + "uuid": "eb5101ca-26b4-4449-821d-fa6700d9f11a", + "start": { + "$date": "2021-09-25T00:54:58.000Z" + }, + "end": { + "$date": "2021-09-25T00:58:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "830f5a50-0fc1-4d59-82d0-1258b45f9022", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T00:59:05.000Z" + }, + "end": { + "$date": "2021-09-25T01:10:26.000Z" + }, + "events": [ + { + "uuid": "78aae46d-3901-4d24-8e9b-4c5c349b14ac", + "start": { + "$date": "2021-09-25T00:59:05.000Z" + }, + "end": { + "$date": "2021-09-25T01:10:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f0f9b382-f04c-44d3-ab16-913009c6de1d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T01:10:41.000Z" + }, + "end": { + "$date": "2021-09-25T01:51:22.000Z" + }, + "events": [ + { + "uuid": "d6985b2d-bd4f-46de-9d92-a165b2791ed3", + "start": { + "$date": "2021-09-25T01:10:41.000Z" + }, + "end": { + "$date": "2021-09-25T01:51:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "500d8383-5217-4737-a000-515f7a34dd56", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T02:01:28.000Z" + }, + "end": { + "$date": "2021-09-25T02:01:52.000Z" + }, + "events": [ + { + "uuid": "46ae9c5b-ea3f-476f-9fff-b49743a9b227", + "start": { + "$date": "2021-09-25T02:01:28.000Z" + }, + "end": { + "$date": "2021-09-25T02:01:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bb0afec-1495-4508-ac7d-488bc0a2d27c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T02:01:36.000Z" + }, + "end": { + "$date": "2021-09-25T02:26:32.000Z" + }, + "events": [ + { + "uuid": "dfb8f8d3-e97a-4c40-9670-a42cafc1d3f9", + "start": { + "$date": "2021-09-25T02:01:36.000Z" + }, + "end": { + "$date": "2021-09-25T02:26:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "f600b692-e8ca-48c9-95f1-dedba5246dad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T02:06:16.000Z" + }, + "end": { + "$date": "2021-09-25T02:24:51.000Z" + }, + "events": [ + { + "uuid": "3d041a3c-b307-4194-ae2a-c6928e7167e6", + "start": { + "$date": "2021-09-25T02:06:16.000Z" + }, + "end": { + "$date": "2021-09-25T02:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d697f4b4-f778-4d7e-8ac2-bbf314352684", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T02:10:53.000Z" + }, + "end": { + "$date": "2021-09-25T02:22:19.000Z" + }, + "events": [ + { + "uuid": "798c3577-b3df-4765-8ddf-1ef1d1bdd787", + "start": { + "$date": "2021-09-25T02:10:53.000Z" + }, + "end": { + "$date": "2021-09-25T02:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5612fe97-4bec-41e4-9efb-3170c990fe68", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T02:31:53.000Z" + }, + "end": { + "$date": "2021-09-25T02:42:04.000Z" + }, + "events": [ + { + "uuid": "42573d5a-9d09-4c1f-b222-c0a96cddbd66", + "start": { + "$date": "2021-09-25T02:31:53.000Z" + }, + "end": { + "$date": "2021-09-25T02:42:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbb6fcd5-809a-4a86-863c-c17d6211c740", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T03:18:55.000Z" + }, + "end": { + "$date": "2021-09-25T03:19:35.000Z" + }, + "events": [ + { + "uuid": "f7affa50-d855-4a0a-a524-61da19604093", + "start": { + "$date": "2021-09-25T03:18:55.000Z" + }, + "end": { + "$date": "2021-09-25T03:19:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "704301b4-e3bc-4c88-b3b5-26a3a852549a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T02:44:36.000Z" + }, + "end": { + "$date": "2021-09-25T03:12:31.000Z" + }, + "events": [ + { + "uuid": "fca50b88-41e4-48cb-b4d7-957dc5ca25e7", + "start": { + "$date": "2021-09-25T02:44:36.000Z" + }, + "end": { + "$date": "2021-09-25T03:12:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82d7c0f3-6d3c-4ba1-9231-22a287e39631", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-25T02:54:13.000Z" + }, + "end": { + "$date": "2021-09-25T07:24:10.000Z" + }, + "events": [ + { + "uuid": "bfab0d4c-bc46-41e2-8e13-d0819057dba1", + "start": { + "$date": "2021-09-25T02:54:13.000Z" + }, + "end": { + "$date": "2021-09-25T07:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c25f1dda-7301-4443-87fb-3008c0f2b65c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T02:55:19.000Z" + }, + "end": { + "$date": "2021-09-25T05:38:17.000Z" + }, + "events": [ + { + "uuid": "84c109a6-a618-4d55-be57-97bc4a3f9966", + "start": { + "$date": "2021-09-25T02:55:19.000Z" + }, + "end": { + "$date": "2021-09-25T03:07:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "21b338c5-7f9c-4c41-98e9-9115f15be1d0", + "start": { + "$date": "2021-09-25T03:07:19.000Z" + }, + "end": { + "$date": "2021-09-25T03:12:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "576b2cee-c8b2-40e3-bbe1-be0ecded47ac", + "start": { + "$date": "2021-09-25T03:12:19.000Z" + }, + "end": { + "$date": "2021-09-25T05:38:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "f44d1e5e-5355-415f-bc2e-91014ab24e8e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-25T02:58:50.000Z" + }, + "end": { + "$date": "2021-09-25T05:11:58.000Z" + }, + "events": [ + { + "uuid": "87635d58-af11-4e87-ac19-57e228a5bd3e", + "start": { + "$date": "2021-09-25T02:58:50.000Z" + }, + "end": { + "$date": "2021-09-25T05:11:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "ec07a2a4-d015-49a0-a286-a3bd6bea18f5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-25T03:01:57.000Z" + }, + "end": { + "$date": "2021-09-25T05:11:44.000Z" + }, + "events": [ + { + "uuid": "71a95af4-85d2-4f59-a7a8-930169308314", + "start": { + "$date": "2021-09-25T03:01:57.000Z" + }, + "end": { + "$date": "2021-09-25T05:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "9b90ec6b-f0c1-4cf3-b90c-86ad68e7a88b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-25T03:01:50.000Z" + }, + "end": { + "$date": "2021-09-25T04:13:07.000Z" + }, + "events": [ + { + "uuid": "b923f731-588c-4edc-a305-cbf00fafe1ed", + "start": { + "$date": "2021-09-25T03:01:50.000Z" + }, + "end": { + "$date": "2021-09-25T04:13:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "06278a76-8ba4-4658-8c5e-991853c88b3a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T03:04:26.000Z" + }, + "end": { + "$date": "2021-09-25T05:11:40.000Z" + }, + "events": [ + { + "uuid": "8a65605a-ec88-434e-862a-b61a51089f06", + "start": { + "$date": "2021-09-25T03:04:26.000Z" + }, + "end": { + "$date": "2021-09-25T05:11:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "b8864b79-99b1-4592-af6e-1d6d38e0345d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-25T03:07:07.000Z" + }, + "end": { + "$date": "2021-09-25T04:18:04.000Z" + }, + "events": [ + { + "uuid": "5e47108c-d592-46c9-9c3c-a8110352aad2", + "start": { + "$date": "2021-09-25T03:07:07.000Z" + }, + "end": { + "$date": "2021-09-25T04:18:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79146229-3d5c-4e06-91d7-a85820c25618", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-25T03:24:49.000Z" + }, + "end": { + "$date": "2021-09-25T03:46:13.000Z" + }, + "events": [ + { + "uuid": "b851b87f-b2c6-40b6-8327-c780af8512d1", + "start": { + "$date": "2021-09-25T03:24:49.000Z" + }, + "end": { + "$date": "2021-09-25T03:46:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "18c7e385-f0ca-47b9-803f-5cc8256f585e", + "uuid": "5894c29f-5798-4338-9b15-836698d2eab6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T03:32:16.000Z" + }, + "end": { + "$date": "2021-09-25T03:37:10.000Z" + }, + "events": [ + { + "uuid": "c5651e94-f3f1-496e-a1df-ce5637968b6c", + "start": { + "$date": "2021-09-25T03:32:16.000Z" + }, + "end": { + "$date": "2021-09-25T03:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "ad6d046b-f9af-4f47-b37a-6784ce56922f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T03:51:29.000Z" + }, + "end": { + "$date": "2021-09-25T03:52:53.000Z" + }, + "events": [ + { + "uuid": "3ac31429-5895-48a3-aa17-b4e6a4f7ddf4", + "start": { + "$date": "2021-09-25T03:51:29.000Z" + }, + "end": { + "$date": "2021-09-25T03:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2071ffb-8b7b-42bc-8460-aa59ec7bcaf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T03:58:46.000Z" + }, + "end": { + "$date": "2021-09-25T04:37:06.000Z" + }, + "events": [ + { + "uuid": "b72eafaa-603d-4f4a-9e0a-e7a108afe03d", + "start": { + "$date": "2021-09-25T03:58:46.000Z" + }, + "end": { + "$date": "2021-09-25T04:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "115c7fbc-2264-49ec-b30a-656d6b75ad6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T05:44:46.000Z" + }, + "end": { + "$date": "2021-09-25T06:02:47.000Z" + }, + "events": [ + { + "uuid": "bc449e92-599a-4fae-8ee0-dd1e98fb007f", + "start": { + "$date": "2021-09-25T05:44:46.000Z" + }, + "end": { + "$date": "2021-09-25T06:02:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1d5cafba-e788-4801-8969-c081dc31200d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T05:40:48.000Z" + }, + "end": { + "$date": "2021-09-25T05:52:59.000Z" + }, + "events": [ + { + "uuid": "701d4df5-4f1a-4639-80b2-dd938fb78298", + "start": { + "$date": "2021-09-25T05:40:48.000Z" + }, + "end": { + "$date": "2021-09-25T05:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "88047fee-62e5-4b34-aa4c-daa31d2909d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T05:55:04.000Z" + }, + "end": { + "$date": "2021-09-25T06:16:55.000Z" + }, + "events": [ + { + "uuid": "4366dabe-2614-42bc-9cf8-370cc039d880", + "start": { + "$date": "2021-09-25T05:55:04.000Z" + }, + "end": { + "$date": "2021-09-25T06:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "4ba2c302-dba2-40cc-9331-51a95dd96031", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-25T06:00:52.000Z" + }, + "end": { + "$date": "2021-09-25T08:13:09.000Z" + }, + "events": [ + { + "uuid": "6a466075-3d87-42b2-b7d5-e2e1fa9d57df", + "start": { + "$date": "2021-09-25T06:00:52.000Z" + }, + "end": { + "$date": "2021-09-25T08:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6670b0a9-809e-457a-9600-4c017772a889", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T06:05:18.000Z" + }, + "end": { + "$date": "2021-09-25T06:29:29.000Z" + }, + "events": [ + { + "uuid": "c9ce94c8-765e-447b-93f3-eea9df349b96", + "start": { + "$date": "2021-09-25T06:05:18.000Z" + }, + "end": { + "$date": "2021-09-25T06:29:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "23159f69-dc5d-40e1-b0ee-670a5b03d37f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T06:18:20.000Z" + }, + "end": { + "$date": "2021-09-25T07:38:05.000Z" + }, + "events": [ + { + "uuid": "56060501-a113-473c-9c08-c60e16a9326c", + "start": { + "$date": "2021-09-25T06:18:20.000Z" + }, + "end": { + "$date": "2021-09-25T07:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "1ed3b861-2e8e-4671-8b92-c31e70b38fa1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-25T06:50:41.000Z" + }, + "end": { + "$date": "2021-09-25T09:21:14.000Z" + }, + "events": [ + { + "uuid": "29f34b00-89b5-41fa-958a-d69a28cc28a4", + "start": { + "$date": "2021-09-25T06:50:41.000Z" + }, + "end": { + "$date": "2021-09-25T09:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "265fa8e3-40b5-4619-b23f-2ae51a91a08f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-25T07:05:07.000Z" + }, + "end": { + "$date": "2021-09-25T07:52:05.000Z" + }, + "events": [ + { + "uuid": "85588552-3e7f-403e-b6da-e259bc9e4d44", + "start": { + "$date": "2021-09-25T07:05:07.000Z" + }, + "end": { + "$date": "2021-09-25T07:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96769626-d5c8-400b-a124-408a863785e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T07:16:42.000Z" + }, + "end": { + "$date": "2021-09-25T07:37:24.000Z" + }, + "events": [ + { + "uuid": "a09c9e5b-9511-429b-aa69-2e193217ee2e", + "start": { + "$date": "2021-09-25T07:16:42.000Z" + }, + "end": { + "$date": "2021-09-25T07:37:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49e951e3-4d05-4052-92b7-1ff3b35ba968", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T07:42:18.000Z" + }, + "end": { + "$date": "2021-09-25T08:08:24.000Z" + }, + "events": [ + { + "uuid": "8256e35a-f070-4c60-b69b-d993d14e00da", + "start": { + "$date": "2021-09-25T07:42:18.000Z" + }, + "end": { + "$date": "2021-09-25T08:08:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "4c500f08-ac91-419f-b8e9-06db097b44c8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-25T10:41:37.000Z" + }, + "end": { + "$date": "2021-09-25T12:47:20.000Z" + }, + "events": [ + { + "uuid": "1be3bacb-c340-4354-8390-289aa9649052", + "start": { + "$date": "2021-09-25T10:41:37.000Z" + }, + "end": { + "$date": "2021-09-25T12:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "95789053-c63f-405d-ad27-1b1750e6e83b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T14:41:16.000Z" + }, + "end": { + "$date": "2021-09-25T14:48:02.000Z" + }, + "events": [ + { + "uuid": "557f80bf-683c-45d5-af8a-ae6d77e21640", + "start": { + "$date": "2021-09-25T14:41:16.000Z" + }, + "end": { + "$date": "2021-09-25T14:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a487f062-7d82-48cc-bf9b-74b01b9a235a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-25T15:31:27.000Z" + }, + "end": { + "$date": "2021-09-25T15:52:16.000Z" + }, + "events": [ + { + "uuid": "2eb242fe-3f35-4f23-a370-8f1d4543831f", + "start": { + "$date": "2021-09-25T15:31:27.000Z" + }, + "end": { + "$date": "2021-09-25T15:52:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d4152c4e-9af2-48e4-9e56-b0e63f1a7e38", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T15:32:07.000Z" + }, + "end": { + "$date": "2021-09-25T16:30:09.000Z" + }, + "events": [ + { + "uuid": "ae3c0765-9ed7-424d-9def-9fa59fc919bb", + "start": { + "$date": "2021-09-25T15:32:07.000Z" + }, + "end": { + "$date": "2021-09-25T16:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7894e141-044f-4103-9bd5-df0aa70e879f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T15:43:58.000Z" + }, + "end": { + "$date": "2021-09-25T16:32:43.000Z" + }, + "events": [ + { + "uuid": "10adf4da-fd7c-4d46-a204-5b405928696c", + "start": { + "$date": "2021-09-25T15:43:58.000Z" + }, + "end": { + "$date": "2021-09-25T16:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79499622-afa1-4b19-906c-74822b69ea91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-25T16:03:33.000Z" + }, + "end": { + "$date": "2021-09-25T16:26:42.000Z" + }, + "events": [ + { + "uuid": "840dae0e-7c40-473f-ab5b-7b147799a237", + "start": { + "$date": "2021-09-25T16:03:33.000Z" + }, + "end": { + "$date": "2021-09-25T16:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87ae4fe4-452c-41b9-a3bc-704425748854", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-25T16:29:58.000Z" + }, + "end": { + "$date": "2021-09-25T16:54:18.000Z" + }, + "events": [ + { + "uuid": "5d1c81ad-d39b-426a-8ba6-7e1c1efbca0f", + "start": { + "$date": "2021-09-25T16:29:58.000Z" + }, + "end": { + "$date": "2021-09-25T16:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "c3f8d825-4594-4cef-b3f6-2b51d2f5a028", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-25T16:33:28.000Z" + }, + "end": { + "$date": "2021-09-25T18:11:52.000Z" + }, + "events": [ + { + "uuid": "c423bfb4-b31c-4fa6-9ef1-d8e8fe9691e6", + "start": { + "$date": "2021-09-25T16:33:28.000Z" + }, + "end": { + "$date": "2021-09-25T16:55:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81df9c90-ddfb-4dad-8e2c-ebe33bcbe4d4", + "start": { + "$date": "2021-09-25T16:55:28.000Z" + }, + "end": { + "$date": "2021-09-25T17:00:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ede7518c-5f39-45b2-abb1-2f29a4de475f", + "start": { + "$date": "2021-09-25T17:00:28.000Z" + }, + "end": { + "$date": "2021-09-25T17:10:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e0eb739-a9e5-4eac-8693-7385d29c57dc", + "start": { + "$date": "2021-09-25T17:10:28.000Z" + }, + "end": { + "$date": "2021-09-25T17:15:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2dba7a36-a975-4434-b16d-5633c0ba7191", + "start": { + "$date": "2021-09-25T17:15:28.000Z" + }, + "end": { + "$date": "2021-09-25T17:25:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "675d18ae-c533-4e9c-b740-b639091c15c0", + "start": { + "$date": "2021-09-25T17:25:28.000Z" + }, + "end": { + "$date": "2021-09-25T17:57:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f28ea630-0e5d-4176-a6ea-5eac970e5fbf", + "start": { + "$date": "2021-09-25T17:57:28.000Z" + }, + "end": { + "$date": "2021-09-25T17:59:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72f9619e-4039-42be-85bf-a53bbec35381", + "start": { + "$date": "2021-09-25T17:59:28.000Z" + }, + "end": { + "$date": "2021-09-25T18:10:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "960764bd-3b4d-4a7b-bdbc-e0b858a2412d", + "start": { + "$date": "2021-09-25T18:10:28.000Z" + }, + "end": { + "$date": "2021-09-25T18:11:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "466bd168-d7d3-4fe0-9514-81603e595071", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-25T17:15:41.000Z" + }, + "end": { + "$date": "2021-09-25T17:45:37.000Z" + }, + "events": [ + { + "uuid": "442de819-c22d-4bea-85ed-180e717a2e0d", + "start": { + "$date": "2021-09-25T17:15:41.000Z" + }, + "end": { + "$date": "2021-09-25T17:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b03207da-69d8-405f-b2fe-9864513661c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T18:16:04.000Z" + }, + "end": { + "$date": "2021-09-25T18:57:22.000Z" + }, + "events": [ + { + "uuid": "c339778d-2fab-4b7f-b3c2-d7738f341e74", + "start": { + "$date": "2021-09-25T18:16:04.000Z" + }, + "end": { + "$date": "2021-09-25T18:57:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc7cfae2-df6c-44df-a9d4-067aaff8d6c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T19:06:39.000Z" + }, + "end": { + "$date": "2021-09-25T19:23:58.000Z" + }, + "events": [ + { + "uuid": "e9c6eb49-0daf-45ac-93fe-02a3cbef36cb", + "start": { + "$date": "2021-09-25T19:06:39.000Z" + }, + "end": { + "$date": "2021-09-25T19:23:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "767078d1-1c70-4a9c-8230-c0a389dba3b1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T19:06:26.000Z" + }, + "end": { + "$date": "2021-09-25T19:24:11.000Z" + }, + "events": [ + { + "uuid": "d7dea016-17ec-4a2b-94ef-76732b6b5a33", + "start": { + "$date": "2021-09-25T19:06:26.000Z" + }, + "end": { + "$date": "2021-09-25T19:24:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb7ff82b-c718-4fa0-bb15-8c806e1177e5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-25T19:27:24.000Z" + }, + "end": { + "$date": "2021-09-25T19:53:24.000Z" + }, + "events": [ + { + "uuid": "9951e3de-4e07-44b9-bf7c-e11eb3a19b6a", + "start": { + "$date": "2021-09-25T19:27:24.000Z" + }, + "end": { + "$date": "2021-09-25T19:53:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0b4d56d-95c8-4bad-8aa2-0c9a2c12a5c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T19:27:28.000Z" + }, + "end": { + "$date": "2021-09-25T19:53:34.000Z" + }, + "events": [ + { + "uuid": "c7e753ba-5c4c-4d4c-9dc2-597bc0b295e6", + "start": { + "$date": "2021-09-25T19:27:28.000Z" + }, + "end": { + "$date": "2021-09-25T19:53:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e2499fe-7791-41b3-bce9-8862b519a1b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T20:12:32.000Z" + }, + "end": { + "$date": "2021-09-25T20:31:36.000Z" + }, + "events": [ + { + "uuid": "16ac2646-a24b-4a9c-b982-cc42d36c6e5d", + "start": { + "$date": "2021-09-25T20:12:32.000Z" + }, + "end": { + "$date": "2021-09-25T20:31:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61090a1d-85f5-4ecd-9377-9825f89a205a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T20:34:23.000Z" + }, + "end": { + "$date": "2021-09-25T20:58:32.000Z" + }, + "events": [ + { + "uuid": "f027c9a0-5036-4057-931c-db324558cce8", + "start": { + "$date": "2021-09-25T20:34:23.000Z" + }, + "end": { + "$date": "2021-09-25T20:58:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "79de9395-69cc-474a-8716-08bea6ff3f18", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-25T22:56:20.000Z" + }, + "end": { + "$date": "2021-09-26T01:57:23.000Z" + }, + "events": [ + { + "uuid": "e6c6e9a1-fb48-4565-835b-021b4279aeaf", + "start": { + "$date": "2021-09-25T22:56:20.000Z" + }, + "end": { + "$date": "2021-09-26T01:57:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4874a187-693b-47a3-88e3-dbdb02cb15cd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-25T23:34:39.000Z" + }, + "end": { + "$date": "2021-09-26T00:03:03.000Z" + }, + "events": [ + { + "uuid": "7446b041-989b-4112-bce8-cfa9b92ec6dc", + "start": { + "$date": "2021-09-25T23:34:39.000Z" + }, + "end": { + "$date": "2021-09-26T00:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e5fb0ec0-cc8f-4c00-8c5e-086c77a84eea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-25T23:35:11.000Z" + }, + "end": { + "$date": "2021-09-25T23:43:44.000Z" + }, + "events": [ + { + "uuid": "7c8f1c70-0cce-4352-b781-d2da7f2f86db", + "start": { + "$date": "2021-09-25T23:35:11.000Z" + }, + "end": { + "$date": "2021-09-25T23:42:11.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "87380b3e-1a56-47eb-9bd6-921a13f70096", + "start": { + "$date": "2021-09-25T23:42:11.000Z" + }, + "end": { + "$date": "2021-09-25T23:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55baf018-3721-4566-badd-eaa738be050c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-25T23:58:43.000Z" + }, + "end": { + "$date": "2021-09-26T00:14:18.000Z" + }, + "events": [ + { + "uuid": "a4a443b6-d858-46c2-9f94-3305d4fb3b75", + "start": { + "$date": "2021-09-25T23:58:43.000Z" + }, + "end": { + "$date": "2021-09-26T00:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fac47a77-d67f-4f99-9f40-3b2f93cc9d44", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-26T00:00:22.000Z" + }, + "end": { + "$date": "2021-09-26T00:31:00.000Z" + }, + "events": [ + { + "uuid": "02553303-76e3-487a-b57e-2608d3ec5661", + "start": { + "$date": "2021-09-26T00:00:22.000Z" + }, + "end": { + "$date": "2021-09-26T00:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cced2b6f-9755-42db-852c-dc1725080910", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T00:04:53.000Z" + }, + "end": { + "$date": "2021-09-26T00:32:06.000Z" + }, + "events": [ + { + "uuid": "02d4a721-9c59-47f2-b4d4-707426ff62ac", + "start": { + "$date": "2021-09-26T00:04:53.000Z" + }, + "end": { + "$date": "2021-09-26T00:32:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a439ad66-4ef4-46c5-815f-69b533967ff5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T00:06:07.000Z" + }, + "end": { + "$date": "2021-09-26T00:52:25.000Z" + }, + "events": [ + { + "uuid": "9f4aa99c-b878-4820-9287-08821e036c7b", + "start": { + "$date": "2021-09-26T00:06:07.000Z" + }, + "end": { + "$date": "2021-09-26T00:52:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "087c5e5a-1738-43c5-ae61-e7aa6ff1ba3d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-26T00:32:57.000Z" + }, + "end": { + "$date": "2021-09-26T04:09:23.000Z" + }, + "events": [ + { + "uuid": "da6a5d71-4b98-4472-bc98-002ede7eaae5", + "start": { + "$date": "2021-09-26T00:32:57.000Z" + }, + "end": { + "$date": "2021-09-26T04:09:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68bd125d-47de-448a-bc07-5ce54e1a6f43", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T00:33:00.000Z" + }, + "end": { + "$date": "2021-09-26T00:36:00.000Z" + }, + "events": [ + { + "uuid": "7cf971a4-7470-4533-bbd0-fc724cd578ac", + "start": { + "$date": "2021-09-26T00:33:00.000Z" + }, + "end": { + "$date": "2021-09-26T00:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "11efd107-93e3-4032-8e69-410fc9b40a91", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T00:36:30.000Z" + }, + "end": { + "$date": "2021-09-26T04:11:08.000Z" + }, + "events": [ + { + "uuid": "10cfd0b0-5949-4a0b-a1ba-6274d2bd67a9", + "start": { + "$date": "2021-09-26T00:36:30.000Z" + }, + "end": { + "$date": "2021-09-26T04:11:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14253f90-1b09-498e-a3d6-416c75d683a3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-09-26T00:38:55.000Z" + }, + "end": { + "$date": "2021-09-26T04:08:28.000Z" + }, + "events": [ + { + "uuid": "f8a77374-1418-4826-ad7d-e02e7424c9fd", + "start": { + "$date": "2021-09-26T00:38:55.000Z" + }, + "end": { + "$date": "2021-09-26T04:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1d0654d7-c1a7-4908-88e9-d87f0d77abdd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-25T22:27:35.000Z" + }, + "end": { + "$date": "2021-09-26T06:10:45.000Z" + }, + "events": [ + { + "uuid": "25402a65-1481-4af6-8e8a-3d5cd6b1cc0e", + "start": { + "$date": "2021-09-25T22:27:35.000Z" + }, + "end": { + "$date": "2021-09-25T22:38:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bad6ef0e-82d4-4d9e-8f0a-ff7f95c0aec8", + "start": { + "$date": "2021-09-25T22:38:35.000Z" + }, + "end": { + "$date": "2021-09-25T22:41:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "efb7f9bc-135a-49fd-b844-56d7f1706278", + "start": { + "$date": "2021-09-25T22:41:35.000Z" + }, + "end": { + "$date": "2021-09-26T06:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b5d20002-595f-4720-88f0-ee0d4e2af131", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T01:16:38.000Z" + }, + "end": { + "$date": "2021-09-26T01:25:49.000Z" + }, + "events": [ + { + "uuid": "c3abd593-881b-42ab-aca2-1f50d361e91c", + "start": { + "$date": "2021-09-26T01:16:38.000Z" + }, + "end": { + "$date": "2021-09-26T01:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b1f708a8-49f7-42d2-969f-e013f65f632f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T02:03:16.000Z" + }, + "end": { + "$date": "2021-09-26T02:51:56.000Z" + }, + "events": [ + { + "uuid": "81b015e9-9e98-4315-bde8-5ce171cba4d7", + "start": { + "$date": "2021-09-26T02:03:16.000Z" + }, + "end": { + "$date": "2021-09-26T02:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "55a834cf-ef47-44dc-828d-f8698076309d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T02:16:11.000Z" + }, + "end": { + "$date": "2021-09-26T02:21:57.000Z" + }, + "events": [ + { + "uuid": "5d52c5fe-13e5-421b-8f84-911e0a4a95c3", + "start": { + "$date": "2021-09-26T02:16:11.000Z" + }, + "end": { + "$date": "2021-09-26T02:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "614a1899-f88e-4ee6-8280-1c307ae30a3e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T02:39:28.000Z" + }, + "end": { + "$date": "2021-09-26T04:11:42.000Z" + }, + "events": [ + { + "uuid": "ef29a2fa-1099-4334-bdef-f422fb3b93c8", + "start": { + "$date": "2021-09-26T02:39:28.000Z" + }, + "end": { + "$date": "2021-09-26T04:11:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d3a9c6eb-e5c3-4ad3-809c-eb8b1fc32a01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-26T04:05:34.000Z" + }, + "end": { + "$date": "2021-09-26T04:08:10.000Z" + }, + "events": [ + { + "uuid": "fc194318-d278-4a72-ad22-d39736c2155d", + "start": { + "$date": "2021-09-26T04:05:34.000Z" + }, + "end": { + "$date": "2021-09-26T04:08:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5d876a2-00ad-47d3-ba3e-a97a9e5889b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T04:08:59.000Z" + }, + "end": { + "$date": "2021-09-26T04:11:39.000Z" + }, + "events": [ + { + "uuid": "58981cbd-8a6d-4e79-b8d7-3498c43aa31c", + "start": { + "$date": "2021-09-26T04:08:59.000Z" + }, + "end": { + "$date": "2021-09-26T04:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "0d5db1e3-8057-4bbf-88a0-07ba3027f031", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T04:12:02.000Z" + }, + "end": { + "$date": "2021-09-26T04:14:18.000Z" + }, + "events": [ + { + "uuid": "71f7c714-cffe-479b-bce6-38c1c9358bb0", + "start": { + "$date": "2021-09-26T04:12:02.000Z" + }, + "end": { + "$date": "2021-09-26T04:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "899d059e-7993-4254-a963-807bbaefba5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T04:20:03.000Z" + }, + "end": { + "$date": "2021-09-26T04:39:04.000Z" + }, + "events": [ + { + "uuid": "0894daf9-be93-406b-9e47-180629dfc887", + "start": { + "$date": "2021-09-26T04:20:03.000Z" + }, + "end": { + "$date": "2021-09-26T04:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "955ff505-8af5-4ddc-a9d2-7f1b338876fb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T04:20:33.000Z" + }, + "end": { + "$date": "2021-09-26T04:38:54.000Z" + }, + "events": [ + { + "uuid": "21b96dcb-a782-4fb1-a5fa-3a7d06132063", + "start": { + "$date": "2021-09-26T04:20:33.000Z" + }, + "end": { + "$date": "2021-09-26T04:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "872d9616-db11-4080-a046-51d55e584484", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-09-26T04:20:22.000Z" + }, + "end": { + "$date": "2021-09-26T04:39:04.000Z" + }, + "events": [ + { + "uuid": "94d2825d-ff6b-4665-b83f-ee6143ae5cac", + "start": { + "$date": "2021-09-26T04:20:22.000Z" + }, + "end": { + "$date": "2021-09-26T04:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25bf0115-5a2e-4ed4-af6c-42d087e65328", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T04:19:59.000Z" + }, + "end": { + "$date": "2021-09-26T04:38:59.000Z" + }, + "events": [ + { + "uuid": "b92f158a-d8bd-461e-af84-9f66fa59b533", + "start": { + "$date": "2021-09-26T04:19:59.000Z" + }, + "end": { + "$date": "2021-09-26T04:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbe8e9de-3f18-4503-889e-7c68876695d9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T04:19:57.000Z" + }, + "end": { + "$date": "2021-09-26T04:38:58.000Z" + }, + "events": [ + { + "uuid": "0870980e-86e8-4ddd-844d-3e72509b5c83", + "start": { + "$date": "2021-09-26T04:19:57.000Z" + }, + "end": { + "$date": "2021-09-26T04:38:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34b53c39-ff10-40e4-836d-55445766b4c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T04:41:29.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:31.000Z" + }, + "events": [ + { + "uuid": "020ef766-3117-4163-abeb-db836ae918b0", + "start": { + "$date": "2021-09-26T04:41:29.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16805642-6a60-473f-9f37-ca022a78e633", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T04:41:54.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:30.000Z" + }, + "events": [ + { + "uuid": "5627e033-c1b3-44c4-9b5b-fd461cf8676d", + "start": { + "$date": "2021-09-26T04:41:54.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e0d8df6-5ad5-4477-8051-5895550b4479", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T04:41:29.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:20.000Z" + }, + "events": [ + { + "uuid": "39188fed-5194-4afc-9e81-382f8c9575be", + "start": { + "$date": "2021-09-26T04:41:29.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7782f130-4d73-429a-be61-08d0bb1213d1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T04:41:28.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:24.000Z" + }, + "events": [ + { + "uuid": "66dcdff4-c562-43f3-9908-bba2e92b9854", + "start": { + "$date": "2021-09-26T04:41:28.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d789ca1e-a46c-42ed-b89b-435dca95cb53", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-09-26T04:41:43.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:29.000Z" + }, + "events": [ + { + "uuid": "51af2eec-6265-48b9-8c57-07a3da931264", + "start": { + "$date": "2021-09-26T04:41:43.000Z" + }, + "end": { + "$date": "2021-09-26T04:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0caf4a5-6f8d-4b59-b8e0-e0169258ba47", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T05:02:50.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:40.000Z" + }, + "events": [ + { + "uuid": "0f11974f-4392-4738-aa5a-ddbb6a099cac", + "start": { + "$date": "2021-09-26T05:02:50.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4e577bf-3fe4-4e81-913f-a9452d9a7815", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T05:05:40.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:35.000Z" + }, + "events": [ + { + "uuid": "04e9e8ec-4007-4af2-a0ec-1631cf011032", + "start": { + "$date": "2021-09-26T05:05:40.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ea1d9ca-b6e3-4ef8-83bb-225dc74b69b4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T05:02:48.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:36.000Z" + }, + "events": [ + { + "uuid": "fb31d287-eab9-4d97-aba4-7a73c803fb3d", + "start": { + "$date": "2021-09-26T05:02:48.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d53a10e2-7bf4-4240-a3a4-34bf9298f2f4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T05:02:45.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:37.000Z" + }, + "events": [ + { + "uuid": "3c356ae7-b343-4631-88f7-00f5fb4a943d", + "start": { + "$date": "2021-09-26T05:02:45.000Z" + }, + "end": { + "$date": "2021-09-26T05:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01e8b58b-8b8d-450c-8bea-120e7416f937", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T05:24:06.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:29.000Z" + }, + "events": [ + { + "uuid": "80eff925-0cdd-4eab-87fe-1a73a0b1ff62", + "start": { + "$date": "2021-09-26T05:24:06.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60bc6c66-4e18-4b24-8f20-dc43d2637f32", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T05:23:29.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:26.000Z" + }, + "events": [ + { + "uuid": "5bb75886-7511-4bcb-8b67-302d1f160dd6", + "start": { + "$date": "2021-09-26T05:23:29.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68c1595d-0d18-47bb-a875-d8db023e8841", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T05:24:00.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:21.000Z" + }, + "events": [ + { + "uuid": "db59fd56-fcdb-48cd-8fb0-caa50f250c8c", + "start": { + "$date": "2021-09-26T05:24:00.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be2e6e15-fe05-41e2-a84c-8439428625aa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T05:23:31.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:27.000Z" + }, + "events": [ + { + "uuid": "651addb0-439e-4078-b574-8c6f5aa06fc8", + "start": { + "$date": "2021-09-26T05:23:31.000Z" + }, + "end": { + "$date": "2021-09-26T05:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eeecb2c2-5388-4cd2-a5f3-d7f0a2a397e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T05:48:27.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:30.000Z" + }, + "events": [ + { + "uuid": "0b154dc8-5ff9-4bc7-b7b6-3546d7e983e0", + "start": { + "$date": "2021-09-26T05:48:27.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16465cf0-ce5f-4dd4-bda0-b75d68969442", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T05:48:51.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:22.000Z" + }, + "events": [ + { + "uuid": "c65e29ec-2af4-4dc8-8626-c24e9009e175", + "start": { + "$date": "2021-09-26T05:48:51.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0234639a-59af-4c83-aa03-14c39dd7dd0d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T05:48:50.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:23.000Z" + }, + "events": [ + { + "uuid": "6d033685-1875-4a52-887b-4dfa5e2033dc", + "start": { + "$date": "2021-09-26T05:48:50.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eceb6866-58c4-4338-a6d3-4e04277f6ebe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T05:48:22.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:23.000Z" + }, + "events": [ + { + "uuid": "9a3ba47d-1100-47c4-a85e-11d0bccb4422", + "start": { + "$date": "2021-09-26T05:48:22.000Z" + }, + "end": { + "$date": "2021-09-26T06:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37021b26-464e-4265-bbfd-05843d7d5b71", + "uuid": "96e1c2cf-1373-4501-a787-5b0f9e2269f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T06:00:04.000Z" + }, + "end": { + "$date": "2021-09-26T06:10:23.000Z" + }, + "events": [ + { + "uuid": "eab67eb3-3dba-40ba-9413-6477a37e4b11", + "start": { + "$date": "2021-09-26T06:00:04.000Z" + }, + "end": { + "$date": "2021-09-26T06:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "beec706f-68af-4f3f-b899-9aa39258276e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T06:05:28.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:44.000Z" + }, + "events": [ + { + "uuid": "8c556daf-d253-42f6-858f-0d8fdd5dcb9b", + "start": { + "$date": "2021-09-26T06:05:28.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "605f4a95-b8b4-4a06-ac8a-009022a9cc89", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T06:06:02.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:32.000Z" + }, + "events": [ + { + "uuid": "40a9dc40-0f9a-4fa4-9ae2-1bbd9105d6de", + "start": { + "$date": "2021-09-26T06:06:02.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41d790e7-5658-45ae-b394-7e7cf06cf904", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T06:05:22.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:38.000Z" + }, + "events": [ + { + "uuid": "8d1c1eb3-4e1e-4729-ac62-7f9f1a3bda07", + "start": { + "$date": "2021-09-26T06:05:22.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69ee15be-107e-42ef-8836-88d522344c0e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-26T06:05:21.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:38.000Z" + }, + "events": [ + { + "uuid": "c9904ae2-0ce2-465c-8cf5-02b23da52869", + "start": { + "$date": "2021-09-26T06:05:21.000Z" + }, + "end": { + "$date": "2021-09-26T06:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32b1b308-21e3-410e-b37a-3b3732674179", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T06:32:39.000Z" + }, + "end": { + "$date": "2021-09-26T06:54:49.000Z" + }, + "events": [ + { + "uuid": "42062227-792a-44b2-95e8-38c6994ef93c", + "start": { + "$date": "2021-09-26T06:32:39.000Z" + }, + "end": { + "$date": "2021-09-26T06:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8367df6f-aa32-4058-a852-a76823b2ccf9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T06:32:33.000Z" + }, + "end": { + "$date": "2021-09-26T06:54:34.000Z" + }, + "events": [ + { + "uuid": "1a587939-c709-4dd1-a252-69cffbf8de69", + "start": { + "$date": "2021-09-26T06:32:33.000Z" + }, + "end": { + "$date": "2021-09-26T06:54:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d072908-2842-4e3c-91b8-eeb19c1f6d8f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T06:33:03.000Z" + }, + "end": { + "$date": "2021-09-26T06:54:33.000Z" + }, + "events": [ + { + "uuid": "2c2376ee-bb73-427c-9bd9-6c6f66adac45", + "start": { + "$date": "2021-09-26T06:33:03.000Z" + }, + "end": { + "$date": "2021-09-26T06:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "909eb3bb-b2da-4961-83a4-3f721f3bf25c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T06:35:33.000Z" + }, + "end": { + "$date": "2021-09-26T06:55:14.000Z" + }, + "events": [ + { + "uuid": "1569384d-4a79-4d2e-ab89-46e8cb561883", + "start": { + "$date": "2021-09-26T06:35:33.000Z" + }, + "end": { + "$date": "2021-09-26T06:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94a8713a-5062-4e08-b8b5-ef41a7fc42a2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T06:57:40.000Z" + }, + "end": { + "$date": "2021-09-26T07:22:48.000Z" + }, + "events": [ + { + "uuid": "24042b76-913e-44a0-abfd-c7594bc5a87c", + "start": { + "$date": "2021-09-26T06:57:40.000Z" + }, + "end": { + "$date": "2021-09-26T07:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92a0a50f-c912-4470-a573-330142e3a38a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T06:57:34.000Z" + }, + "end": { + "$date": "2021-09-26T07:22:40.000Z" + }, + "events": [ + { + "uuid": "07fa2e23-f4ea-4ce2-a9b1-871c3f21ea43", + "start": { + "$date": "2021-09-26T06:57:34.000Z" + }, + "end": { + "$date": "2021-09-26T07:22:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8461b5f5-38b7-4c14-a2b7-6d0cf005e493", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T06:57:59.000Z" + }, + "end": { + "$date": "2021-09-26T07:22:47.000Z" + }, + "events": [ + { + "uuid": "f6692b8b-46a0-449d-a8b0-f349ac3ff392", + "start": { + "$date": "2021-09-26T06:57:59.000Z" + }, + "end": { + "$date": "2021-09-26T07:22:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5569c170-4a9e-4bd1-8f48-f0c2e936733b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T07:25:46.000Z" + }, + "end": { + "$date": "2021-09-26T07:44:01.000Z" + }, + "events": [ + { + "uuid": "5b464948-fc11-44b8-bc34-e19dffd0f2c8", + "start": { + "$date": "2021-09-26T07:25:46.000Z" + }, + "end": { + "$date": "2021-09-26T07:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0eb4090-405e-4a75-981b-6a245629517a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T07:25:40.000Z" + }, + "end": { + "$date": "2021-09-26T07:43:51.000Z" + }, + "events": [ + { + "uuid": "be63b2e5-0183-4a8f-be80-8b33312c36f8", + "start": { + "$date": "2021-09-26T07:25:40.000Z" + }, + "end": { + "$date": "2021-09-26T07:43:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b55d5387-d1f9-47f9-9463-7b9a6a96d8c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T07:26:05.000Z" + }, + "end": { + "$date": "2021-09-26T07:43:58.000Z" + }, + "events": [ + { + "uuid": "a7b53afd-c91c-4148-a44b-4ea3e1571127", + "start": { + "$date": "2021-09-26T07:26:05.000Z" + }, + "end": { + "$date": "2021-09-26T07:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8073f14-091e-408b-8f90-3fe705eef771", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-26T07:46:57.000Z" + }, + "end": { + "$date": "2021-09-26T08:04:23.000Z" + }, + "events": [ + { + "uuid": "48a0c7b9-fbb6-499b-b67c-736e710b3505", + "start": { + "$date": "2021-09-26T07:46:57.000Z" + }, + "end": { + "$date": "2021-09-26T08:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89cb2a5a-8dbe-477d-a66f-4d7bdb6b76a1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T07:46:51.000Z" + }, + "end": { + "$date": "2021-09-26T08:04:12.000Z" + }, + "events": [ + { + "uuid": "95979d38-63fb-4ebe-8bd4-ade5310e7c61", + "start": { + "$date": "2021-09-26T07:46:51.000Z" + }, + "end": { + "$date": "2021-09-26T08:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91e817ab-d6ee-43ea-bfaa-c85ecec954fe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T07:47:10.000Z" + }, + "end": { + "$date": "2021-09-26T08:04:19.000Z" + }, + "events": [ + { + "uuid": "28b76d55-bd7d-4a95-9f95-7277764823dd", + "start": { + "$date": "2021-09-26T07:47:10.000Z" + }, + "end": { + "$date": "2021-09-26T08:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "264b8692-a1cc-421c-a1ad-20f39dc6f432", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T13:57:30.000Z" + }, + "end": { + "$date": "2021-09-26T14:49:28.000Z" + }, + "events": [ + { + "uuid": "e1c2cad4-0665-45e3-9d49-a560a19c334f", + "start": { + "$date": "2021-09-26T13:57:30.000Z" + }, + "end": { + "$date": "2021-09-26T14:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "050d44da-116c-422a-a1d7-c84cf516445e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T14:54:48.000Z" + }, + "end": { + "$date": "2021-09-26T15:25:31.000Z" + }, + "events": [ + { + "uuid": "bc056f83-6286-4113-9c22-446f1799b1e2", + "start": { + "$date": "2021-09-26T14:54:48.000Z" + }, + "end": { + "$date": "2021-09-26T15:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "51dd7ba5-51cb-4b40-a48f-6311860d8ba1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T15:25:55.000Z" + }, + "end": { + "$date": "2021-09-26T15:44:07.000Z" + }, + "events": [ + { + "uuid": "34e3e8f1-5c95-4838-86f5-3dc3cf746be7", + "start": { + "$date": "2021-09-26T15:25:55.000Z" + }, + "end": { + "$date": "2021-09-26T15:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "d5d3a1bf-b8e6-47bc-ad15-9851b7a7d620", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T15:50:54.000Z" + }, + "end": { + "$date": "2021-09-26T17:50:41.000Z" + }, + "events": [ + { + "uuid": "cf230af9-accb-4862-8404-b19191dfd433", + "start": { + "$date": "2021-09-26T15:50:54.000Z" + }, + "end": { + "$date": "2021-09-26T17:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "c11881dc-2c31-4fa3-b80e-d3ad1f81a684", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T17:50:11.000Z" + }, + "end": { + "$date": "2021-09-26T17:57:57.000Z" + }, + "events": [ + { + "uuid": "f2859ec7-adb8-47c6-950d-7bce0749909e", + "start": { + "$date": "2021-09-26T17:50:11.000Z" + }, + "end": { + "$date": "2021-09-26T17:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37021b26-464e-4265-bbfd-05843d7d5b71", + "uuid": "ffd5ff6b-d8b9-4e34-b487-4b0924cce0d5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T17:59:12.000Z" + }, + "end": { + "$date": "2021-09-26T18:20:08.000Z" + }, + "events": [ + { + "uuid": "2c568237-d34b-454e-95a6-98afa0e29aef", + "start": { + "$date": "2021-09-26T17:59:12.000Z" + }, + "end": { + "$date": "2021-09-26T18:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37021b26-464e-4265-bbfd-05843d7d5b71", + "uuid": "18d2a626-e635-4ad4-8494-1dab47d93ae5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T18:20:13.000Z" + }, + "end": { + "$date": "2021-09-26T18:45:29.000Z" + }, + "events": [ + { + "uuid": "696d1dce-dadc-40b3-b0e8-e5c5921d0803", + "start": { + "$date": "2021-09-26T18:20:13.000Z" + }, + "end": { + "$date": "2021-09-26T18:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "65713de4-e918-456c-b373-fb1f683a217e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T19:47:44.000Z" + }, + "end": { + "$date": "2021-09-26T20:27:02.000Z" + }, + "events": [ + { + "uuid": "60a10659-547c-4503-8d23-30782d0f5b01", + "start": { + "$date": "2021-09-26T19:47:44.000Z" + }, + "end": { + "$date": "2021-09-26T20:27:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "8de6b8eb-161b-4192-8587-2748a2117a09", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T20:28:03.000Z" + }, + "end": { + "$date": "2021-09-26T21:10:19.000Z" + }, + "events": [ + { + "uuid": "9671944e-68a9-4329-871d-3d61c04f3ea4", + "start": { + "$date": "2021-09-26T20:28:03.000Z" + }, + "end": { + "$date": "2021-09-26T21:10:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "0c2d5c1a-be61-4b1d-8857-715052a592dd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-26T21:03:53.000Z" + }, + "end": { + "$date": "2021-09-26T21:25:54.000Z" + }, + "events": [ + { + "uuid": "b787bccf-908f-4ede-b430-90a9308238d2", + "start": { + "$date": "2021-09-26T21:03:53.000Z" + }, + "end": { + "$date": "2021-09-26T21:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37021b26-464e-4265-bbfd-05843d7d5b71", + "uuid": "e90187b1-d7c6-413e-be95-460db7f97a41", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-26T21:29:26.000Z" + }, + "end": { + "$date": "2021-09-27T00:23:31.000Z" + }, + "events": [ + { + "uuid": "51e221d8-8ce1-4205-815f-0cffe3ffae9c", + "start": { + "$date": "2021-09-26T21:29:26.000Z" + }, + "end": { + "$date": "2021-09-27T00:14:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39a4e6f7-3865-4ce2-9fda-9d1891775de6", + "start": { + "$date": "2021-09-27T00:14:26.000Z" + }, + "end": { + "$date": "2021-09-27T00:16:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09adb44c-09bd-47cb-8f2c-71683079f4d2", + "start": { + "$date": "2021-09-27T00:16:26.000Z" + }, + "end": { + "$date": "2021-09-27T00:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37021b26-464e-4265-bbfd-05843d7d5b71", + "uuid": "eb05733d-f0d9-4223-839d-e0630e7fe7a8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T21:38:05.000Z" + }, + "end": { + "$date": "2021-09-26T21:40:04.000Z" + }, + "events": [ + { + "uuid": "d79d9069-38de-474d-bb4c-78d618890689", + "start": { + "$date": "2021-09-26T21:38:05.000Z" + }, + "end": { + "$date": "2021-09-26T21:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37021b26-464e-4265-bbfd-05843d7d5b71", + "uuid": "53d46d2d-8e97-47f6-bf07-b43e04dd67a9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-26T21:40:35.000Z" + }, + "end": { + "$date": "2021-09-26T23:59:00.000Z" + }, + "events": [ + { + "uuid": "73516b82-466b-4584-a989-f3fc5b2aaf80", + "start": { + "$date": "2021-09-26T21:40:35.000Z" + }, + "end": { + "$date": "2021-09-26T23:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "8b677639-2fb8-4a96-9525-60b48fa7b2c3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T21:53:54.000Z" + }, + "end": { + "$date": "2021-09-26T22:12:23.000Z" + }, + "events": [ + { + "uuid": "73cb6c2b-7a0c-433a-8a4f-04ffd4bfc3f7", + "start": { + "$date": "2021-09-26T21:53:54.000Z" + }, + "end": { + "$date": "2021-09-26T22:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "29351e51-e1cf-4f51-91e4-7e8faf3d23ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-26T23:11:42.000Z" + }, + "end": { + "$date": "2021-09-26T23:50:31.000Z" + }, + "events": [ + { + "uuid": "c9a91229-6dcf-4f32-beab-0a232b4e2658", + "start": { + "$date": "2021-09-26T23:11:42.000Z" + }, + "end": { + "$date": "2021-09-26T23:50:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "96ab35ed-d020-41ff-938a-de034d8f7fbc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-26T22:19:57.000Z" + }, + "end": { + "$date": "2021-09-27T04:02:27.000Z" + }, + "events": [ + { + "uuid": "2a45e2f8-c080-4386-b0bd-c4c5f6e417d3", + "start": { + "$date": "2021-09-26T22:19:57.000Z" + }, + "end": { + "$date": "2021-09-27T04:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "b4322051-3a8c-4d29-bcee-d71ae07f63d7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-26T23:52:58.000Z" + }, + "end": { + "$date": "2021-09-27T02:25:53.000Z" + }, + "events": [ + { + "uuid": "cb21cd94-34ca-4bcc-979f-51413bbff8c4", + "start": { + "$date": "2021-09-26T23:52:58.000Z" + }, + "end": { + "$date": "2021-09-27T02:25:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8308de4c-c160-43fe-9b0d-c3f270080cbe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T01:26:03.000Z" + }, + "end": { + "$date": "2021-09-27T01:45:52.000Z" + }, + "events": [ + { + "uuid": "578d1544-7dce-4b2a-be3c-d0532df7da9d", + "start": { + "$date": "2021-09-27T01:26:03.000Z" + }, + "end": { + "$date": "2021-09-27T01:45:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8191ae42-785d-4468-b3fa-96cc6a7300bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T01:48:34.000Z" + }, + "end": { + "$date": "2021-09-27T02:08:14.000Z" + }, + "events": [ + { + "uuid": "1a4bc9ad-66f0-468a-9c5e-6360d28c2505", + "start": { + "$date": "2021-09-27T01:48:34.000Z" + }, + "end": { + "$date": "2021-09-27T02:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", + "uuid": "023fa893-ec17-4f36-aca8-f1512bf9e54f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-27T01:55:49.000Z" + }, + "end": { + "$date": "2021-09-27T01:55:55.000Z" + }, + "events": [ + { + "uuid": "cfa65096-f3db-4b46-8f57-85c400848e64", + "start": { + "$date": "2021-09-27T01:55:49.000Z" + }, + "end": { + "$date": "2021-09-27T01:55:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", + "uuid": "8eb89e43-766f-4a80-b44f-275b11b6b5eb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-27T01:56:04.000Z" + }, + "end": { + "$date": "2021-09-27T02:52:52.000Z" + }, + "events": [ + { + "uuid": "2d5fc7c4-0744-4c1a-94b4-813e9afb9a5e", + "start": { + "$date": "2021-09-27T01:56:04.000Z" + }, + "end": { + "$date": "2021-09-27T02:52:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c6d74817-e648-41ac-855e-95ca2fb90369", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-27T02:03:15.000Z" + }, + "end": { + "$date": "2021-09-27T06:24:43.000Z" + }, + "events": [ + { + "uuid": "6f85f8e5-9285-4234-a684-fe78aa67e484", + "start": { + "$date": "2021-09-27T02:03:15.000Z" + }, + "end": { + "$date": "2021-09-27T06:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fb3ba84d-e801-41ba-a89e-5ab56edd7b32", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-27T02:03:46.000Z" + }, + "end": { + "$date": "2021-09-27T03:39:50.000Z" + }, + "events": [ + { + "uuid": "b71878d7-8c4c-4880-9186-87621b54ee4c", + "start": { + "$date": "2021-09-27T02:03:46.000Z" + }, + "end": { + "$date": "2021-09-27T03:39:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e26acff-71a0-4c87-a5ab-e1d09933f9a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T02:16:36.000Z" + }, + "end": { + "$date": "2021-09-27T02:34:11.000Z" + }, + "events": [ + { + "uuid": "8c9ef2e5-6dd6-4769-9494-1dac036d4fef", + "start": { + "$date": "2021-09-27T02:16:36.000Z" + }, + "end": { + "$date": "2021-09-27T02:34:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "441957cf-85a5-4e10-a35f-44921fcc6743", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-09-27T02:19:21.000Z" + }, + "end": { + "$date": "2021-09-27T03:09:58.000Z" + }, + "events": [ + { + "uuid": "37be921e-a700-4243-a5be-f2b8a140ec94", + "start": { + "$date": "2021-09-27T02:19:21.000Z" + }, + "end": { + "$date": "2021-09-27T03:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4bb98bc-3ba8-4089-abc9-f49357cbb840", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T02:38:57.000Z" + }, + "end": { + "$date": "2021-09-27T03:03:09.000Z" + }, + "events": [ + { + "uuid": "533603ad-6790-44b9-b76f-a8da1923abb4", + "start": { + "$date": "2021-09-27T02:38:57.000Z" + }, + "end": { + "$date": "2021-09-27T03:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d65a3cc4-c4a3-48c9-9882-d74094da00e5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-27T02:51:39.000Z" + }, + "end": { + "$date": "2021-09-27T06:35:43.000Z" + }, + "events": [ + { + "uuid": "0eea8ae4-a784-4ea3-bb3e-967796c6999e", + "start": { + "$date": "2021-09-27T02:51:39.000Z" + }, + "end": { + "$date": "2021-09-27T06:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f75c4d56-360d-4619-8092-75df223c5653", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-27T02:53:36.000Z" + }, + "end": { + "$date": "2021-09-27T06:35:39.000Z" + }, + "events": [ + { + "uuid": "c4304ddd-e9b0-4126-955a-2e312e0b17d3", + "start": { + "$date": "2021-09-27T02:53:36.000Z" + }, + "end": { + "$date": "2021-09-27T06:35:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4172669-519b-421d-9654-e3d23732fb4d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T03:10:24.000Z" + }, + "end": { + "$date": "2021-09-27T03:20:06.000Z" + }, + "events": [ + { + "uuid": "1aa04776-e806-4171-aaf3-021508a0c587", + "start": { + "$date": "2021-09-27T03:10:24.000Z" + }, + "end": { + "$date": "2021-09-27T03:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c1f0d25b-bbe1-4174-bd4b-5855e536c16b", + "uuid": "bda43d98-6428-481f-b5a6-c2f0ad31d183", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-09-27T03:10:24.000Z" + }, + "end": { + "$date": "2021-09-27T03:36:32.000Z" + }, + "events": [ + { + "uuid": "e22c301c-3047-40c8-addb-aca445abba4f", + "start": { + "$date": "2021-09-27T03:10:24.000Z" + }, + "end": { + "$date": "2021-09-27T03:36:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7f0828e1-f729-4ff7-b538-2dbd2cc95a95", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-09-27T03:51:55.000Z" + }, + "end": { + "$date": "2021-09-27T04:11:12.000Z" + }, + "events": [ + { + "uuid": "be14b867-59a0-442f-b08a-ee8e62643b03", + "start": { + "$date": "2021-09-27T03:51:55.000Z" + }, + "end": { + "$date": "2021-09-27T04:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "edf3e194-273f-4c76-b390-2cbc3d627ca5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-09-27T04:21:04.000Z" + }, + "end": { + "$date": "2021-09-27T04:48:48.000Z" + }, + "events": [ + { + "uuid": "b103523b-501d-4168-8ca6-21d78b5730b9", + "start": { + "$date": "2021-09-27T04:21:04.000Z" + }, + "end": { + "$date": "2021-09-27T04:48:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1f9c3ba1-33ca-4f00-bb3c-444bee9a7add", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T04:30:54.000Z" + }, + "end": { + "$date": "2021-09-27T05:16:01.000Z" + }, + "events": [ + { + "uuid": "6b38ca92-8cf8-4ed5-bac1-64fd1687175b", + "start": { + "$date": "2021-09-27T04:30:54.000Z" + }, + "end": { + "$date": "2021-09-27T05:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "00a748ac-bedc-4c1c-b2b9-857465e8c636", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-27T04:42:18.000Z" + }, + "end": { + "$date": "2021-09-27T05:15:35.000Z" + }, + "events": [ + { + "uuid": "514f61ae-c305-4bbb-8e16-75910dbd98be", + "start": { + "$date": "2021-09-27T04:42:18.000Z" + }, + "end": { + "$date": "2021-09-27T05:15:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "014f7b7d-7526-4415-9d09-5fd40f5f9553", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-27T05:20:26.000Z" + }, + "end": { + "$date": "2021-09-27T05:49:56.000Z" + }, + "events": [ + { + "uuid": "38c13693-d7bf-41da-82f7-01c1d90ed50d", + "start": { + "$date": "2021-09-27T05:20:26.000Z" + }, + "end": { + "$date": "2021-09-27T05:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17d15b8d-c379-4fdb-89d1-f581fe08cfb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T05:20:49.000Z" + }, + "end": { + "$date": "2021-09-27T05:34:27.000Z" + }, + "events": [ + { + "uuid": "8fd458c1-44b8-4443-94a8-4a121b1dd8eb", + "start": { + "$date": "2021-09-27T05:20:49.000Z" + }, + "end": { + "$date": "2021-09-27T05:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "996ec366-cf28-49a6-9851-9f1b16fa97f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T05:37:56.000Z" + }, + "end": { + "$date": "2021-09-27T05:57:29.000Z" + }, + "events": [ + { + "uuid": "083be90f-048c-49d6-8262-f770cadd35ac", + "start": { + "$date": "2021-09-27T05:37:56.000Z" + }, + "end": { + "$date": "2021-09-27T05:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "298091ef-eff9-4a2a-9b12-b76b79611980", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T06:01:09.000Z" + }, + "end": { + "$date": "2021-09-27T06:18:38.000Z" + }, + "events": [ + { + "uuid": "d027a071-c310-462c-b08f-864639e29ab0", + "start": { + "$date": "2021-09-27T06:01:09.000Z" + }, + "end": { + "$date": "2021-09-27T06:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8e921cc0-51dd-4eba-b721-6ce12f024620", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-27T06:32:29.000Z" + }, + "end": { + "$date": "2021-09-27T06:38:48.000Z" + }, + "events": [ + { + "uuid": "ee947aa3-22f7-45e3-b910-028ae6362956", + "start": { + "$date": "2021-09-27T06:32:29.000Z" + }, + "end": { + "$date": "2021-09-27T06:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6cd6b1f2-f0de-4751-b895-a96002185ca8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-27T06:41:14.000Z" + }, + "end": { + "$date": "2021-09-27T06:52:45.000Z" + }, + "events": [ + { + "uuid": "0d001c70-dde9-41a9-b6ee-9e7fbda815e2", + "start": { + "$date": "2021-09-27T06:41:14.000Z" + }, + "end": { + "$date": "2021-09-27T06:52:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6b9ea4fe-cc90-4ec7-a11b-460aa31af243", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-27T13:40:37.000Z" + }, + "end": { + "$date": "2021-09-27T14:55:29.000Z" + }, + "events": [ + { + "uuid": "cc03562a-56ac-4737-b817-760adfb76f87", + "start": { + "$date": "2021-09-27T13:40:37.000Z" + }, + "end": { + "$date": "2021-09-27T13:52:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "adfb9548-069c-44a3-802e-1ee85c7505ec", + "start": { + "$date": "2021-09-27T13:52:37.000Z" + }, + "end": { + "$date": "2021-09-27T14:06:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "778ddb2a-1495-4942-bdf3-8e9f8fee92ff", + "start": { + "$date": "2021-09-27T14:06:37.000Z" + }, + "end": { + "$date": "2021-09-27T14:40:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae5d9b53-e250-4731-b2ca-014ad6d1959d", + "start": { + "$date": "2021-09-27T14:40:37.000Z" + }, + "end": { + "$date": "2021-09-27T14:47:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3e2e4542-8959-4dcc-bb52-de49bf4010f1", + "start": { + "$date": "2021-09-27T14:47:37.000Z" + }, + "end": { + "$date": "2021-09-27T14:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "778da55f-3349-4f3e-a1cb-dec462e5f2b9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-09-27T16:20:58.000Z" + }, + "end": { + "$date": "2021-09-27T17:31:57.000Z" + }, + "events": [ + { + "uuid": "3ea84f91-41a9-44fa-a898-c094a7474642", + "start": { + "$date": "2021-09-27T16:20:58.000Z" + }, + "end": { + "$date": "2021-09-27T17:31:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "faa8a609-70ea-4cf4-9094-e42d5109bbaf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-09-27T18:12:51.000Z" + }, + "end": { + "$date": "2021-09-27T18:32:57.000Z" + }, + "events": [ + { + "uuid": "49106e83-c6ae-48f7-aedd-cf109684576c", + "start": { + "$date": "2021-09-27T18:12:51.000Z" + }, + "end": { + "$date": "2021-09-27T18:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0262bfbb-1366-4574-a9a5-2b32e646111a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-27T20:37:19.000Z" + }, + "end": { + "$date": "2021-09-27T20:52:26.000Z" + }, + "events": [ + { + "uuid": "9fe70096-b462-4c05-8185-944ac8fe068d", + "start": { + "$date": "2021-09-27T20:37:19.000Z" + }, + "end": { + "$date": "2021-09-27T20:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8e8955ec-6f8c-4adc-a382-a94bcb6ac803", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T22:15:40.000Z" + }, + "end": { + "$date": "2021-09-27T22:18:58.000Z" + }, + "events": [ + { + "uuid": "28dde4ee-0202-4505-8e66-301ece800ef1", + "start": { + "$date": "2021-09-27T22:15:40.000Z" + }, + "end": { + "$date": "2021-09-27T22:18:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f3484e8d-fa88-4cc5-b7af-7158ba2f51f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T22:19:57.000Z" + }, + "end": { + "$date": "2021-09-27T22:43:07.000Z" + }, + "events": [ + { + "uuid": "207a755e-74bf-4cee-8a79-96dab7f162ab", + "start": { + "$date": "2021-09-27T22:19:57.000Z" + }, + "end": { + "$date": "2021-09-27T22:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e293cb4-8e7f-45b5-b66a-55d577f6aaa1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-27T23:05:02.000Z" + }, + "end": { + "$date": "2021-09-27T23:28:17.000Z" + }, + "events": [ + { + "uuid": "23b679d5-1052-4dfd-89a6-836b4d19b497", + "start": { + "$date": "2021-09-27T23:05:02.000Z" + }, + "end": { + "$date": "2021-09-27T23:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17764d15-e33d-4f3c-8213-69181e646f64", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-27T23:19:25.000Z" + }, + "end": { + "$date": "2021-09-27T23:23:29.000Z" + }, + "events": [ + { + "uuid": "e2223f1c-eb4e-4ac8-9701-eaac6541c3ab", + "start": { + "$date": "2021-09-27T23:19:25.000Z" + }, + "end": { + "$date": "2021-09-27T23:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e27efa77-33e9-4a66-83df-26c1891466f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-27T23:35:07.000Z" + }, + "end": { + "$date": "2021-09-27T23:56:52.000Z" + }, + "events": [ + { + "uuid": "0a415481-4c53-4672-8ff6-8f83051fa66e", + "start": { + "$date": "2021-09-27T23:35:07.000Z" + }, + "end": { + "$date": "2021-09-27T23:56:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "88d035d3-5d29-4ee0-a512-b57bc8dc7531", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-28T00:07:16.000Z" + }, + "end": { + "$date": "2021-09-28T04:59:13.000Z" + }, + "events": [ + { + "uuid": "880caa2b-35d6-4d17-b5e4-c913740dd3e6", + "start": { + "$date": "2021-09-28T00:07:16.000Z" + }, + "end": { + "$date": "2021-09-28T04:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "224f602f-146d-4d0b-8a56-885a8579bd54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T01:09:24.000Z" + }, + "end": { + "$date": "2021-09-28T01:26:01.000Z" + }, + "events": [ + { + "uuid": "0b655779-fb16-4a83-9548-8b539a771a36", + "start": { + "$date": "2021-09-28T01:09:24.000Z" + }, + "end": { + "$date": "2021-09-28T01:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b37a8d8a-bc8a-43d4-81f7-978318731bad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T02:31:51.000Z" + }, + "end": { + "$date": "2021-09-28T02:49:39.000Z" + }, + "events": [ + { + "uuid": "496e8019-a2c8-4f8e-9c0f-03d5c8e0aef9", + "start": { + "$date": "2021-09-28T02:31:51.000Z" + }, + "end": { + "$date": "2021-09-28T03:13:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d86b5c5b-ca95-41dd-b407-907f0e165250", + "start": { + "$date": "2021-09-28T03:13:51.000Z" + }, + "end": { + "$date": "2021-09-28T03:19:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dbae2949-6acc-49fd-b3ba-01b6e8f74cf2", + "start": { + "$date": "2021-09-28T03:19:51.000Z" + }, + "end": { + "$date": "2021-09-28T02:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "236f60a5-f02c-4bcc-af55-40ae064eedad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-28T02:38:02.000Z" + }, + "end": { + "$date": "2021-09-28T06:30:36.000Z" + }, + "events": [ + { + "uuid": "91e35bab-3793-4b35-ba68-a345513a2ee1", + "start": { + "$date": "2021-09-28T02:38:02.000Z" + }, + "end": { + "$date": "2021-09-28T06:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85fdcde2-12ac-48cd-badb-07265d09dafb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T02:52:47.000Z" + }, + "end": { + "$date": "2021-09-28T03:04:45.000Z" + }, + "events": [ + { + "uuid": "784a03d7-fd90-4b69-bab5-93922d908274", + "start": { + "$date": "2021-09-28T02:52:47.000Z" + }, + "end": { + "$date": "2021-09-28T03:04:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ed7b0042-9302-43d0-bf4c-0382986a5972", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-28T02:49:53.000Z" + }, + "end": { + "$date": "2021-09-28T05:56:17.000Z" + }, + "events": [ + { + "uuid": "c8c9f508-8f2a-483b-bb7a-c2d2864edea8", + "start": { + "$date": "2021-09-28T02:49:53.000Z" + }, + "end": { + "$date": "2021-09-28T04:57:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9da3a72e-a0b3-4519-b042-31aa828debe8", + "start": { + "$date": "2021-09-28T04:57:53.000Z" + }, + "end": { + "$date": "2021-09-28T05:03:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae4d7ab2-0ab2-4a01-9198-b973df400395", + "start": { + "$date": "2021-09-28T05:03:53.000Z" + }, + "end": { + "$date": "2021-09-28T05:05:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50df4144-c658-4841-8865-a5f8864ad201", + "start": { + "$date": "2021-09-28T05:05:53.000Z" + }, + "end": { + "$date": "2021-09-28T05:14:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bdc145a8-bff8-4b40-8eec-82297ed59718", + "start": { + "$date": "2021-09-28T05:14:53.000Z" + }, + "end": { + "$date": "2021-09-28T05:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ad5139e-38f2-4eb0-8d84-5cc2a56ac1bf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T03:08:07.000Z" + }, + "end": { + "$date": "2021-09-28T03:22:33.000Z" + }, + "events": [ + { + "uuid": "24386213-e8a3-4ef4-9d9a-057d9b7f252f", + "start": { + "$date": "2021-09-28T03:08:07.000Z" + }, + "end": { + "$date": "2021-09-28T03:22:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "a2ba8be7-0784-428f-a485-d04440cb0f89", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-28T03:07:43.000Z" + }, + "end": { + "$date": "2021-09-28T03:17:54.000Z" + }, + "events": [ + { + "uuid": "66ccf32c-1530-4ea6-9b82-440dd491883c", + "start": { + "$date": "2021-09-28T03:07:43.000Z" + }, + "end": { + "$date": "2021-09-28T03:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6486fd16-0f19-4764-9d4e-e51588243d75", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T03:25:02.000Z" + }, + "end": { + "$date": "2021-09-28T03:43:13.000Z" + }, + "events": [ + { + "uuid": "542a1583-9fc1-469e-a80c-e603622eeea6", + "start": { + "$date": "2021-09-28T03:25:02.000Z" + }, + "end": { + "$date": "2021-09-28T03:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5f48530f-4330-4975-901c-2af2df479105", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-28T03:36:20.000Z" + }, + "end": { + "$date": "2021-09-28T03:47:46.000Z" + }, + "events": [ + { + "uuid": "dc5d2b29-b702-4d62-affd-ad0e1d6c36f7", + "start": { + "$date": "2021-09-28T03:36:20.000Z" + }, + "end": { + "$date": "2021-09-28T03:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9505b6d0-ff84-490a-8b2c-0ec509ea2a67", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-28T03:37:06.000Z" + }, + "end": { + "$date": "2021-09-28T04:53:15.000Z" + }, + "events": [ + { + "uuid": "de99b181-b9ef-4591-b245-a293f1ae46b9", + "start": { + "$date": "2021-09-28T03:37:06.000Z" + }, + "end": { + "$date": "2021-09-28T04:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "451218ed-efb1-4603-ad4b-aa5d4feec91b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T03:45:34.000Z" + }, + "end": { + "$date": "2021-09-28T04:01:07.000Z" + }, + "events": [ + { + "uuid": "7cdd13bb-756d-4db8-acd1-cf4679c4ea22", + "start": { + "$date": "2021-09-28T03:45:34.000Z" + }, + "end": { + "$date": "2021-09-28T04:01:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb43ca7e-76e2-4b59-8d68-471370175dab", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-28T04:32:55.000Z" + }, + "end": { + "$date": "2021-09-28T05:06:26.000Z" + }, + "events": [ + { + "uuid": "f2d42be4-f791-402f-a705-2520a644bcc4", + "start": { + "$date": "2021-09-28T04:32:55.000Z" + }, + "end": { + "$date": "2021-09-28T05:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47f22574-9168-4f72-9410-4655a462076e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-28T06:07:57.000Z" + }, + "end": { + "$date": "2021-09-28T06:08:22.000Z" + }, + "events": [ + { + "uuid": "90b8b42d-d9f4-4fa4-a211-2e669208edbb", + "start": { + "$date": "2021-09-28T06:07:57.000Z" + }, + "end": { + "$date": "2021-09-28T06:08:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "ca5ed18d-2d10-4f59-a7aa-c8a072f8ff4e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-28T05:05:46.000Z" + }, + "end": { + "$date": "2021-09-28T05:36:24.000Z" + }, + "events": [ + { + "uuid": "d989deda-db5f-4c26-bf7b-af2d8a18b0c6", + "start": { + "$date": "2021-09-28T05:05:46.000Z" + }, + "end": { + "$date": "2021-09-28T05:36:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "11ab8b7a-3ace-40b3-8791-f84c649d591a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-28T05:38:59.000Z" + }, + "end": { + "$date": "2021-09-28T06:55:27.000Z" + }, + "events": [ + { + "uuid": "9a3c6b08-f073-4b54-b698-beddfe518bb6", + "start": { + "$date": "2021-09-28T05:38:59.000Z" + }, + "end": { + "$date": "2021-09-28T05:49:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0463885c-bd5d-4484-80d5-a93650bb85f7", + "start": { + "$date": "2021-09-28T05:49:59.000Z" + }, + "end": { + "$date": "2021-09-28T06:53:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9e8543e1-71ba-43d5-bb65-df655058ef44", + "start": { + "$date": "2021-09-28T06:53:59.000Z" + }, + "end": { + "$date": "2021-09-28T06:55:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "70eb0778-c6b9-467c-87bf-2ccc48c65423", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-28T05:46:09.000Z" + }, + "end": { + "$date": "2021-09-28T09:12:28.000Z" + }, + "events": [ + { + "uuid": "65a7e3b9-1674-4dba-99e7-7488f6bc74e9", + "start": { + "$date": "2021-09-28T05:46:09.000Z" + }, + "end": { + "$date": "2021-09-28T09:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "6fc4f6c6-b94d-4b11-be91-f5df9a220bb7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-28T06:09:34.000Z" + }, + "end": { + "$date": "2021-09-28T07:33:18.000Z" + }, + "events": [ + { + "uuid": "30401c25-8458-439a-b804-824c3433d725", + "start": { + "$date": "2021-09-28T06:09:34.000Z" + }, + "end": { + "$date": "2021-09-28T07:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3bfdd41e-97e7-44b9-b23a-2bd063fa0957", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-28T06:31:31.000Z" + }, + "end": { + "$date": "2021-09-28T06:34:41.000Z" + }, + "events": [ + { + "uuid": "490953ed-2ff6-4cec-b579-7763fae363c7", + "start": { + "$date": "2021-09-28T06:31:31.000Z" + }, + "end": { + "$date": "2021-09-28T06:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "e1abd8ec-2726-425d-8e4b-36cf52e101da", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-28T12:57:51.000Z" + }, + "end": { + "$date": "2021-09-28T13:37:35.000Z" + }, + "events": [ + { + "uuid": "15102d0c-0e90-4416-aa0e-fc374e16e9c6", + "start": { + "$date": "2021-09-28T12:57:51.000Z" + }, + "end": { + "$date": "2021-09-28T13:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0d26992-f003-4eb3-82ed-5d1f9e315bf3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T16:32:09.000Z" + }, + "end": { + "$date": "2021-09-28T16:50:45.000Z" + }, + "events": [ + { + "uuid": "b3d0b977-449e-438b-a3a1-8d638579032a", + "start": { + "$date": "2021-09-28T16:32:09.000Z" + }, + "end": { + "$date": "2021-09-28T16:50:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42dcf3b3-ff90-427e-87a3-ee1dd438a9d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T16:56:30.000Z" + }, + "end": { + "$date": "2021-09-28T17:15:23.000Z" + }, + "events": [ + { + "uuid": "f5be57fe-7f0d-4d2b-8b54-4f380af40366", + "start": { + "$date": "2021-09-28T16:56:30.000Z" + }, + "end": { + "$date": "2021-09-28T17:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "50d15343-bcc4-42b5-b33d-7ff4edb3bafd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T18:55:34.000Z" + }, + "end": { + "$date": "2021-09-28T19:13:46.000Z" + }, + "events": [ + { + "uuid": "9f11cf90-5685-49ed-9eb5-8a272120e057", + "start": { + "$date": "2021-09-28T18:55:34.000Z" + }, + "end": { + "$date": "2021-09-28T19:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "98f0895d-a9f5-4844-9c88-dd45ad350395", + "uuid": "caedba35-706b-464c-a85e-34637aa7d835", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-28T20:57:02.000Z" + }, + "end": { + "$date": "2021-09-28T21:12:08.000Z" + }, + "events": [ + { + "uuid": "2c2b8706-ba8b-4298-875f-74c0945b5c69", + "start": { + "$date": "2021-09-28T20:57:02.000Z" + }, + "end": { + "$date": "2021-09-28T21:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b1d2681-a614-4043-9199-1d787407a8ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-28T21:47:19.000Z" + }, + "end": { + "$date": "2021-09-28T22:06:20.000Z" + }, + "events": [ + { + "uuid": "2e808888-e1d1-41e9-8ebf-bf5f6457ed3f", + "start": { + "$date": "2021-09-28T21:47:19.000Z" + }, + "end": { + "$date": "2021-09-28T22:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "df7fc2ad-6a41-4ba1-a309-2c0528c1370e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-28T22:24:23.000Z" + }, + "end": { + "$date": "2021-09-28T23:24:39.000Z" + }, + "events": [ + { + "uuid": "6a18fc64-e02a-4caa-96ce-cf8a5674c661", + "start": { + "$date": "2021-09-28T22:24:23.000Z" + }, + "end": { + "$date": "2021-09-28T23:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bb8a3375-fe46-49a7-b689-ef9f5831c6c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-28T23:44:48.000Z" + }, + "end": { + "$date": "2021-09-29T03:14:26.000Z" + }, + "events": [ + { + "uuid": "d5532fd3-381c-4231-b8ea-b605e1982ab3", + "start": { + "$date": "2021-09-28T23:44:48.000Z" + }, + "end": { + "$date": "2021-09-29T03:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "9b872a82-57e3-4d9b-9702-a3ce92b2cd86", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-29T00:44:58.000Z" + }, + "end": { + "$date": "2021-09-29T01:15:53.000Z" + }, + "events": [ + { + "uuid": "2b7801b7-8b45-4b2e-b31c-9f4904d70e41", + "start": { + "$date": "2021-09-29T00:44:58.000Z" + }, + "end": { + "$date": "2021-09-29T01:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "86032f19-3247-4748-af01-4dbb30fca485", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-29T00:50:13.000Z" + }, + "end": { + "$date": "2021-09-29T01:03:10.000Z" + }, + "events": [ + { + "uuid": "de922c4e-6511-4638-abdc-f6629d863048", + "start": { + "$date": "2021-09-29T00:50:13.000Z" + }, + "end": { + "$date": "2021-09-29T01:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "48fc6ed5-b0a4-4615-9442-d21b9d25fd85", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T01:35:58.000Z" + }, + "end": { + "$date": "2021-09-29T01:54:21.000Z" + }, + "events": [ + { + "uuid": "8834a66e-86ae-45b1-95b5-c9e9ca6e5c93", + "start": { + "$date": "2021-09-29T01:35:58.000Z" + }, + "end": { + "$date": "2021-09-29T01:48:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1e634df-eea4-4681-abe9-6dfe5461a32d", + "start": { + "$date": "2021-09-29T01:48:58.000Z" + }, + "end": { + "$date": "2021-09-29T01:54:21.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50df263d-0de9-4e4c-b711-5a7e7e9e28a3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-29T01:56:23.000Z" + }, + "end": { + "$date": "2021-09-29T02:38:47.000Z" + }, + "events": [ + { + "uuid": "246862ec-a979-4a9b-af76-a12331dc71cd", + "start": { + "$date": "2021-09-29T01:56:23.000Z" + }, + "end": { + "$date": "2021-09-29T02:38:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e5a06186-21d8-4bbd-bb0f-1b18d7df1d4d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-09-29T02:03:15.000Z" + }, + "end": { + "$date": "2021-09-29T04:00:53.000Z" + }, + "events": [ + { + "uuid": "74fdef32-3e34-4fec-8a72-3565b45f02b3", + "start": { + "$date": "2021-09-29T02:03:15.000Z" + }, + "end": { + "$date": "2021-09-29T04:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b26093dd-222b-457a-88aa-86b2c2e00c02", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-29T02:18:01.000Z" + }, + "end": { + "$date": "2021-09-29T03:07:04.000Z" + }, + "events": [ + { + "uuid": "6474b2e6-de14-4ae4-858a-e4cc08963bc1", + "start": { + "$date": "2021-09-29T02:18:01.000Z" + }, + "end": { + "$date": "2021-09-29T03:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf87f476-fac6-435e-b566-0a8af1617b6a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-29T02:20:06.000Z" + }, + "end": { + "$date": "2021-09-29T02:27:22.000Z" + }, + "events": [ + { + "uuid": "c9c751d0-65f3-4853-925b-32ca244d2ca4", + "start": { + "$date": "2021-09-29T02:20:06.000Z" + }, + "end": { + "$date": "2021-09-29T02:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bb0f80d1-238f-42c4-962b-7fa935655a18", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-09-29T02:28:44.000Z" + }, + "end": { + "$date": "2021-09-29T03:57:13.000Z" + }, + "events": [ + { + "uuid": "da470d38-6aab-4b6a-a2d3-c74d447cd951", + "start": { + "$date": "2021-09-29T02:28:44.000Z" + }, + "end": { + "$date": "2021-09-29T03:57:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "4f95acee-073b-4dbb-b540-492edd7c8d5c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T02:34:26.000Z" + }, + "end": { + "$date": "2021-09-29T02:36:06.000Z" + }, + "events": [ + { + "uuid": "95b6ee2b-1da5-4e3c-982f-38e82f73cc59", + "start": { + "$date": "2021-09-29T02:34:26.000Z" + }, + "end": { + "$date": "2021-09-29T02:36:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94e14efc-3a25-46c0-b84f-bc981e50cbe8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-29T02:38:59.000Z" + }, + "end": { + "$date": "2021-09-29T02:59:08.000Z" + }, + "events": [ + { + "uuid": "c4ef1207-80d5-4b7d-924c-cd97263fd347", + "start": { + "$date": "2021-09-29T02:38:59.000Z" + }, + "end": { + "$date": "2021-09-29T02:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "33d2284b-05f1-4dc0-b8f2-a1d336285056", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T02:37:36.000Z" + }, + "end": { + "$date": "2021-09-29T02:52:27.000Z" + }, + "events": [ + { + "uuid": "a619fa21-a4ab-4bdd-8e58-58263ea8a84f", + "start": { + "$date": "2021-09-29T02:37:36.000Z" + }, + "end": { + "$date": "2021-09-29T02:52:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e87f0fb3-a1ce-4652-92bf-7128b819382c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-29T02:44:57.000Z" + }, + "end": { + "$date": "2021-09-29T03:55:23.000Z" + }, + "events": [ + { + "uuid": "affebb5e-ca5f-4606-970e-c6de9ea642cf", + "start": { + "$date": "2021-09-29T02:44:57.000Z" + }, + "end": { + "$date": "2021-09-29T03:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "3979bce2-9569-4925-b50a-3c887c97046d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T02:52:32.000Z" + }, + "end": { + "$date": "2021-09-29T03:07:52.000Z" + }, + "events": [ + { + "uuid": "143bfc99-94d9-460f-a0b5-f3accebeb7ec", + "start": { + "$date": "2021-09-29T02:52:32.000Z" + }, + "end": { + "$date": "2021-09-29T03:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "05b665ce-cdb8-4c4c-b2b5-8784d25a652d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T03:29:55.000Z" + }, + "end": { + "$date": "2021-09-29T03:57:20.000Z" + }, + "events": [ + { + "uuid": "62606c4a-b404-4ba5-8630-493aa84ecd0e", + "start": { + "$date": "2021-09-29T03:29:55.000Z" + }, + "end": { + "$date": "2021-09-29T03:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "171e1fb3-f36d-4ecb-80fc-6cef47f694da", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-29T03:16:56.000Z" + }, + "end": { + "$date": "2021-09-29T03:54:23.000Z" + }, + "events": [ + { + "uuid": "5622abf5-f4a4-4840-acfd-7ea1884397e8", + "start": { + "$date": "2021-09-29T03:16:56.000Z" + }, + "end": { + "$date": "2021-09-29T03:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5e0a205c-cad8-43a3-a7fe-d4250f4db2f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-29T03:26:07.000Z" + }, + "end": { + "$date": "2021-09-29T04:33:14.000Z" + }, + "events": [ + { + "uuid": "43951692-a3f0-47c8-b863-6511bbc770e8", + "start": { + "$date": "2021-09-29T03:26:07.000Z" + }, + "end": { + "$date": "2021-09-29T04:33:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "98f0895d-a9f5-4844-9c88-dd45ad350395", + "uuid": "08f82fe7-9c72-45df-833f-f6f3c01c889f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-29T03:26:38.000Z" + }, + "end": { + "$date": "2021-09-29T04:16:50.000Z" + }, + "events": [ + { + "uuid": "26ed89e6-b905-4193-b8dc-177f3dd4e7ed", + "start": { + "$date": "2021-09-29T03:26:38.000Z" + }, + "end": { + "$date": "2021-09-29T03:27:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14eaa829-8fa9-4cfa-9f21-ef37cb395e56", + "start": { + "$date": "2021-09-29T03:27:38.000Z" + }, + "end": { + "$date": "2021-09-29T04:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "3cd154e3-d667-4ccd-8d4f-03c93e277f87", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-29T03:29:14.000Z" + }, + "end": { + "$date": "2021-09-29T03:56:07.000Z" + }, + "events": [ + { + "uuid": "191efe61-f551-46d6-9288-5c4a2cb40748", + "start": { + "$date": "2021-09-29T03:29:14.000Z" + }, + "end": { + "$date": "2021-09-29T03:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21e37da5-c817-4c29-8818-30c9e7416614", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-29T03:50:56.000Z" + }, + "end": { + "$date": "2021-09-29T04:03:37.000Z" + }, + "events": [ + { + "uuid": "12ac9fa9-8cf0-4684-84cf-4567baa9d6b8", + "start": { + "$date": "2021-09-29T03:50:56.000Z" + }, + "end": { + "$date": "2021-09-29T04:03:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "40aa37d5-388c-42ea-919d-22344087bea0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T03:59:36.000Z" + }, + "end": { + "$date": "2021-09-29T04:05:36.000Z" + }, + "events": [ + { + "uuid": "59fd1c2e-4526-4c5d-b024-80b14a44ee8a", + "start": { + "$date": "2021-09-29T03:59:36.000Z" + }, + "end": { + "$date": "2021-09-29T04:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bbbdbaa-3340-4dc7-873a-fa97e1bdd51a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-09-29T04:05:45.000Z" + }, + "end": { + "$date": "2021-09-29T04:34:38.000Z" + }, + "events": [ + { + "uuid": "3f363f33-db8b-46a1-810f-b98bc0a7cbd7", + "start": { + "$date": "2021-09-29T04:05:45.000Z" + }, + "end": { + "$date": "2021-09-29T04:34:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "cf33f67b-3cad-4ca7-8820-b993fedd27c3", + "uuid": "b9d55965-92d9-414e-9e10-a417ecc8debc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-29T04:11:51.000Z" + }, + "end": { + "$date": "2021-09-29T04:13:16.000Z" + }, + "events": [ + { + "uuid": "50f2c237-7821-40a6-925b-b5930303c512", + "start": { + "$date": "2021-09-29T04:11:51.000Z" + }, + "end": { + "$date": "2021-09-29T04:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf33f67b-3cad-4ca7-8820-b993fedd27c3", + "uuid": "6653a7ea-bb96-4af3-9531-92018b48b4a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-09-29T04:13:41.000Z" + }, + "end": { + "$date": "2021-09-29T04:40:22.000Z" + }, + "events": [ + { + "uuid": "08efd470-ff1f-48a7-b0ed-969ebf05ec71", + "start": { + "$date": "2021-09-29T04:13:41.000Z" + }, + "end": { + "$date": "2021-09-29T04:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c4bcd77a-4f45-483f-aca9-f197ec602425", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-29T04:17:45.000Z" + }, + "end": { + "$date": "2021-09-29T05:19:31.000Z" + }, + "events": [ + { + "uuid": "2f4613a1-bc1f-4211-8661-b685a99daf1f", + "start": { + "$date": "2021-09-29T04:17:45.000Z" + }, + "end": { + "$date": "2021-09-29T05:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dab0664e-abf2-41bf-8391-d7ae995e8b38", + "uuid": "b98617ec-0e6f-4f27-9c3c-a66f8385ba6b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-29T04:26:55.000Z" + }, + "end": { + "$date": "2021-09-29T06:08:14.000Z" + }, + "events": [ + { + "uuid": "5575c097-db72-4d9f-9a94-20e92eae6acb", + "start": { + "$date": "2021-09-29T04:26:55.000Z" + }, + "end": { + "$date": "2021-09-29T06:08:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0e2dde0c-467a-4b66-8540-bec6c0055a13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T04:31:49.000Z" + }, + "end": { + "$date": "2021-09-29T04:47:29.000Z" + }, + "events": [ + { + "uuid": "c3dc9cfe-244f-4a6e-9868-d252e3ebf59f", + "start": { + "$date": "2021-09-29T04:31:49.000Z" + }, + "end": { + "$date": "2021-09-29T04:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "38f65e39-8cbb-4b7b-b8df-c07bade17aaf", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-29T04:45:23.000Z" + }, + "end": { + "$date": "2021-09-29T05:54:44.000Z" + }, + "events": [ + { + "uuid": "78a1aa99-3004-4eaa-923d-1c21922a8b44", + "start": { + "$date": "2021-09-29T04:45:23.000Z" + }, + "end": { + "$date": "2021-09-29T05:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "4adf023e-5195-4eba-a619-1f4e9d91eaff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-29T04:48:05.000Z" + }, + "end": { + "$date": "2021-09-29T04:59:55.000Z" + }, + "events": [ + { + "uuid": "b67ccbe1-77db-46d6-8569-25517c465fd3", + "start": { + "$date": "2021-09-29T04:48:05.000Z" + }, + "end": { + "$date": "2021-09-29T04:59:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "2e2e907a-1c23-49c4-850d-60c92430bdb0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-29T06:48:07.000Z" + }, + "end": { + "$date": "2021-09-29T13:12:38.000Z" + }, + "events": [ + { + "uuid": "23064683-faca-408f-89cf-0a1fec6217d5", + "start": { + "$date": "2021-09-29T06:48:07.000Z" + }, + "end": { + "$date": "2021-09-29T13:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaf1c225-7219-4dd1-bb0c-c9419bbfa126", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-29T15:56:09.000Z" + }, + "end": { + "$date": "2021-09-29T16:23:16.000Z" + }, + "events": [ + { + "uuid": "e71d1043-8e8e-4951-aa05-dc9074a1546d", + "start": { + "$date": "2021-09-29T15:56:09.000Z" + }, + "end": { + "$date": "2021-09-29T16:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fc87237-acbc-487d-8a11-1247ebed0217", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-29T18:32:43.000Z" + }, + "end": { + "$date": "2021-09-29T18:47:19.000Z" + }, + "events": [ + { + "uuid": "f30d7298-193e-441f-b061-33e038ae17e4", + "start": { + "$date": "2021-09-29T18:32:43.000Z" + }, + "end": { + "$date": "2021-09-29T18:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c2548fa-0d55-4146-9f74-7fb2e27be8b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-29T18:51:49.000Z" + }, + "end": { + "$date": "2021-09-29T19:13:25.000Z" + }, + "events": [ + { + "uuid": "ec96892d-310a-4dc5-8226-55ef703ae853", + "start": { + "$date": "2021-09-29T18:51:49.000Z" + }, + "end": { + "$date": "2021-09-29T19:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "161d58bb-d886-45fc-a1e6-d1bd063fa2a0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-29T22:59:00.000Z" + }, + "end": { + "$date": "2021-09-29T23:00:13.000Z" + }, + "events": [ + { + "uuid": "dd84db5b-991c-417d-89f8-810e9cf0bb5a", + "start": { + "$date": "2021-09-29T22:59:00.000Z" + }, + "end": { + "$date": "2021-09-29T23:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "56d997f7-894b-4f8c-9bfb-7c1509e890f3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-09-29T22:59:21.000Z" + }, + "end": { + "$date": "2021-09-29T23:18:24.000Z" + }, + "events": [ + { + "uuid": "050ddb85-402d-4ae5-8d10-df2ccbaadd4f", + "start": { + "$date": "2021-09-29T22:59:21.000Z" + }, + "end": { + "$date": "2021-09-29T23:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1b1b6296-6fc5-44a5-9cf6-698037680f20", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-30T00:23:57.000Z" + }, + "end": { + "$date": "2021-09-30T04:46:28.000Z" + }, + "events": [ + { + "uuid": "29657d6a-640d-4d33-bc28-101942153cd6", + "start": { + "$date": "2021-09-30T00:23:57.000Z" + }, + "end": { + "$date": "2021-09-30T01:48:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35ff29cc-b723-4c2b-9e31-3e0b54c02e57", + "start": { + "$date": "2021-09-30T01:48:57.000Z" + }, + "end": { + "$date": "2021-09-30T01:50:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9533f514-e75f-4f31-858c-66bcbd6aab90", + "start": { + "$date": "2021-09-30T01:50:57.000Z" + }, + "end": { + "$date": "2021-09-30T04:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "6e034343-c190-431d-b885-95bb0488c88d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-09-30T00:40:10.000Z" + }, + "end": { + "$date": "2021-09-30T04:16:22.000Z" + }, + "events": [ + { + "uuid": "016b9be8-3ab6-4ad6-b085-8f47bf7f381a", + "start": { + "$date": "2021-09-30T00:40:10.000Z" + }, + "end": { + "$date": "2021-09-30T04:16:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "9a05c460-f02a-49ad-a140-1fd41282e91d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-30T00:46:49.000Z" + }, + "end": { + "$date": "2021-09-30T01:04:15.000Z" + }, + "events": [ + { + "uuid": "f1851cfc-a5cd-4f22-bad2-1e464eadb5bb", + "start": { + "$date": "2021-09-30T00:46:49.000Z" + }, + "end": { + "$date": "2021-09-30T01:04:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dab0664e-abf2-41bf-8391-d7ae995e8b38", + "uuid": "3f67359d-49b0-4d7d-a30e-f8760f71cfe7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-30T02:07:17.000Z" + }, + "end": { + "$date": "2021-09-30T03:02:28.000Z" + }, + "events": [ + { + "uuid": "92779781-7a59-492b-9741-ca2ff90bb789", + "start": { + "$date": "2021-09-30T02:07:17.000Z" + }, + "end": { + "$date": "2021-09-30T03:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbe34b84-9fd6-416f-85ee-0722e4eecccb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-30T02:26:09.000Z" + }, + "end": { + "$date": "2021-09-30T02:53:35.000Z" + }, + "events": [ + { + "uuid": "b590c471-3e5c-4988-9a40-0df29e6c13f1", + "start": { + "$date": "2021-09-30T02:26:09.000Z" + }, + "end": { + "$date": "2021-09-30T02:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "ecb0a207-f2aa-4dbd-b36c-8b7aef9061b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-30T02:20:19.000Z" + }, + "end": { + "$date": "2021-09-30T02:44:37.000Z" + }, + "events": [ + { + "uuid": "1ecc5578-8a8d-4dc9-a072-faf9b3a9324e", + "start": { + "$date": "2021-09-30T02:20:19.000Z" + }, + "end": { + "$date": "2021-09-30T02:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "41794939-0b44-4967-80bc-acf379490cc4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-30T02:45:13.000Z" + }, + "end": { + "$date": "2021-09-30T02:51:13.000Z" + }, + "events": [ + { + "uuid": "283ef240-878d-49c4-b13b-285a4be7444b", + "start": { + "$date": "2021-09-30T02:45:13.000Z" + }, + "end": { + "$date": "2021-09-30T02:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "aae6a1c9-4288-48d7-b496-c80d59371402", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-30T03:02:39.000Z" + }, + "end": { + "$date": "2021-09-30T03:11:20.000Z" + }, + "events": [ + { + "uuid": "4a3cebd9-802e-44bd-848f-6ba9da36515c", + "start": { + "$date": "2021-09-30T03:02:39.000Z" + }, + "end": { + "$date": "2021-09-30T03:11:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9eaa117b-3ec5-41cd-b4db-c457adddb064", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-30T03:02:48.000Z" + }, + "end": { + "$date": "2021-09-30T03:25:35.000Z" + }, + "events": [ + { + "uuid": "9fe9227d-27c5-4dc9-87a5-83e033a79d0d", + "start": { + "$date": "2021-09-30T03:02:48.000Z" + }, + "end": { + "$date": "2021-09-30T03:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2e572725-6516-4244-ac17-70feda41e189", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-30T03:25:45.000Z" + }, + "end": { + "$date": "2021-09-30T03:27:51.000Z" + }, + "events": [ + { + "uuid": "b4163ea3-e288-4c2f-9b13-0d3acf0b5bf7", + "start": { + "$date": "2021-09-30T03:25:45.000Z" + }, + "end": { + "$date": "2021-09-30T03:27:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a9407965-1599-47fe-8aa1-91466afb6a1e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-30T03:28:16.000Z" + }, + "end": { + "$date": "2021-09-30T05:19:32.000Z" + }, + "events": [ + { + "uuid": "9c7daa72-a684-4f16-9f03-99b427472359", + "start": { + "$date": "2021-09-30T03:28:16.000Z" + }, + "end": { + "$date": "2021-09-30T05:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3fbf4f56-5565-4fe7-8c4f-eebe11c1963e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-09-30T03:35:19.000Z" + }, + "end": { + "$date": "2021-09-30T05:11:47.000Z" + }, + "events": [ + { + "uuid": "c068b01e-6ab2-432e-b685-dd5bdc82a4bf", + "start": { + "$date": "2021-09-30T03:35:19.000Z" + }, + "end": { + "$date": "2021-09-30T05:11:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "e6f5da67-a706-4d52-85d0-2a450a9f05a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-30T03:43:25.000Z" + }, + "end": { + "$date": "2021-09-30T04:26:43.000Z" + }, + "events": [ + { + "uuid": "a265b787-400b-4c24-a6ef-25d4b780c6b5", + "start": { + "$date": "2021-09-30T03:43:25.000Z" + }, + "end": { + "$date": "2021-09-30T04:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "721bac74-5296-4a48-b6db-48e1bd787edc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-09-30T04:27:08.000Z" + }, + "end": { + "$date": "2021-09-30T05:19:41.000Z" + }, + "events": [ + { + "uuid": "903f7d63-ca29-408b-8bb5-b822698915ce", + "start": { + "$date": "2021-09-30T04:27:08.000Z" + }, + "end": { + "$date": "2021-09-30T05:19:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9613aa0b-16d8-427a-953f-0d6fbbde603e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-30T04:47:55.000Z" + }, + "end": { + "$date": "2021-09-30T05:19:31.000Z" + }, + "events": [ + { + "uuid": "ebb96789-930f-4e2b-a1df-1522cdd03e2a", + "start": { + "$date": "2021-09-30T04:47:55.000Z" + }, + "end": { + "$date": "2021-09-30T05:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ab9fd55-a22f-4930-9785-bf7502d6f8a4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-30T05:37:04.000Z" + }, + "end": { + "$date": "2021-09-30T06:02:08.000Z" + }, + "events": [ + { + "uuid": "d0ea7329-2a0c-47c2-94bd-14c6e576e17c", + "start": { + "$date": "2021-09-30T05:37:04.000Z" + }, + "end": { + "$date": "2021-09-30T06:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a912e62-1284-4de5-b07a-cad41c628f20", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-09-30T06:17:27.000Z" + }, + "end": { + "$date": "2021-09-30T07:06:26.000Z" + }, + "events": [ + { + "uuid": "b4055e91-05b5-4dfc-8d1c-51bbb4fe5ef5", + "start": { + "$date": "2021-09-30T06:17:27.000Z" + }, + "end": { + "$date": "2021-09-30T07:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "bb0370c8-608e-44f8-b0c1-8303820a98cf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-30T06:20:49.000Z" + }, + "end": { + "$date": "2021-09-30T06:21:59.000Z" + }, + "events": [ + { + "uuid": "4fd4b700-ca7b-43ae-9151-e4d3416e787c", + "start": { + "$date": "2021-09-30T06:20:49.000Z" + }, + "end": { + "$date": "2021-09-30T06:21:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf8a98af-5bfc-4709-9ed8-f441436a60df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-30T06:25:55.000Z" + }, + "end": { + "$date": "2021-09-30T06:40:56.000Z" + }, + "events": [ + { + "uuid": "1c9f2d1a-494c-4f70-bf8e-1081a7afcbb2", + "start": { + "$date": "2021-09-30T06:25:55.000Z" + }, + "end": { + "$date": "2021-09-30T06:40:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95052bc3-6660-49c9-9421-50e439822e95", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-30T06:44:22.000Z" + }, + "end": { + "$date": "2021-09-30T07:07:29.000Z" + }, + "events": [ + { + "uuid": "251d1ae5-a9e7-405f-bf7f-ac6fc75c4d4d", + "start": { + "$date": "2021-09-30T06:44:22.000Z" + }, + "end": { + "$date": "2021-09-30T07:07:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3553ed4a-2037-4471-9155-0385033b21ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-30T07:12:23.000Z" + }, + "end": { + "$date": "2021-09-30T07:26:18.000Z" + }, + "events": [ + { + "uuid": "58f5e1e7-4616-4e36-bef6-e9ac578f6593", + "start": { + "$date": "2021-09-30T07:12:23.000Z" + }, + "end": { + "$date": "2021-09-30T07:26:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "d3c6c63b-fc57-4b09-80d5-88078eb6395d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T08:42:36.000Z" + }, + "end": { + "$date": "2021-09-30T08:46:36.000Z" + }, + "events": [ + { + "uuid": "7cda8045-0e2b-4944-8ca4-ebd302c7e2f7", + "start": { + "$date": "2021-09-30T08:42:36.000Z" + }, + "end": { + "$date": "2021-09-30T08:46:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "4f30783f-62b0-47fb-a91c-16f0588a7285", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T08:47:17.000Z" + }, + "end": { + "$date": "2021-09-30T08:48:31.000Z" + }, + "events": [ + { + "uuid": "a06265f0-4ec0-43de-a8af-bf62e053a257", + "start": { + "$date": "2021-09-30T08:47:17.000Z" + }, + "end": { + "$date": "2021-09-30T08:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "7bd51eda-2458-412b-a383-479e82cd9005", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T08:50:58.000Z" + }, + "end": { + "$date": "2021-09-30T10:11:16.000Z" + }, + "events": [ + { + "uuid": "cf43393e-880e-43e1-866c-5930863a5e30", + "start": { + "$date": "2021-09-30T08:50:58.000Z" + }, + "end": { + "$date": "2021-09-30T10:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "95197005-662c-465a-84c3-ce468ef54655", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-09-30T14:35:25.000Z" + }, + "end": { + "$date": "2021-09-30T15:23:02.000Z" + }, + "events": [ + { + "uuid": "3f301be6-8716-4fd3-9799-c423a14edfc8", + "start": { + "$date": "2021-09-30T14:35:25.000Z" + }, + "end": { + "$date": "2021-09-30T15:23:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c088286b-55d9-4b55-84d6-c62b0d923f2b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-30T16:13:12.000Z" + }, + "end": { + "$date": "2021-09-30T16:39:17.000Z" + }, + "events": [ + { + "uuid": "1e71887d-ab65-4fec-b406-a0d859f23335", + "start": { + "$date": "2021-09-30T16:13:12.000Z" + }, + "end": { + "$date": "2021-09-30T16:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74b3a285-4986-49ad-bc9b-ef91f8d0c45d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-30T16:39:49.000Z" + }, + "end": { + "$date": "2021-09-30T17:29:19.000Z" + }, + "events": [ + { + "uuid": "18d8237a-52fb-4f52-ad85-7e12a32a0947", + "start": { + "$date": "2021-09-30T16:39:49.000Z" + }, + "end": { + "$date": "2021-09-30T17:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "5e406ade-2b0a-485a-9038-07b5f6827429", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T17:14:21.000Z" + }, + "end": { + "$date": "2021-09-30T17:39:45.000Z" + }, + "events": [ + { + "uuid": "54ff6dd1-9b53-46da-8f89-f1fa4661c5d7", + "start": { + "$date": "2021-09-30T17:14:21.000Z" + }, + "end": { + "$date": "2021-09-30T17:39:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42b829e8-1234-4b4c-9698-71d617cde211", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-30T19:37:50.000Z" + }, + "end": { + "$date": "2021-09-30T19:56:45.000Z" + }, + "events": [ + { + "uuid": "419f85bb-9e03-413b-bfef-833ce4af4762", + "start": { + "$date": "2021-09-30T19:37:50.000Z" + }, + "end": { + "$date": "2021-09-30T19:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "adf685dc-1883-4290-8b02-e48ab284b61a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-30T21:25:43.000Z" + }, + "end": { + "$date": "2021-09-30T21:51:59.000Z" + }, + "events": [ + { + "uuid": "e03b20e0-ef32-434b-9e4a-67cc8276dbed", + "start": { + "$date": "2021-09-30T21:25:43.000Z" + }, + "end": { + "$date": "2021-09-30T21:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "de3e8b1a-b1fa-464e-a8f9-6854cff7b84d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-30T21:52:09.000Z" + }, + "end": { + "$date": "2021-09-30T21:53:34.000Z" + }, + "events": [ + { + "uuid": "6c54b5d4-c2f4-4724-8aa3-8a9414eb5db7", + "start": { + "$date": "2021-09-30T21:52:09.000Z" + }, + "end": { + "$date": "2021-09-30T21:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "1460d88f-e5cc-4b3f-955f-6234882390af", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T22:33:17.000Z" + }, + "end": { + "$date": "2021-09-30T22:34:23.000Z" + }, + "events": [ + { + "uuid": "c13cde84-4f53-4b1c-8956-a5d866382bc6", + "start": { + "$date": "2021-09-30T22:33:17.000Z" + }, + "end": { + "$date": "2021-09-30T22:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "6dda1cb7-b3d3-42b6-bb9b-ad3721d6b897", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T22:34:57.000Z" + }, + "end": { + "$date": "2021-09-30T22:38:50.000Z" + }, + "events": [ + { + "uuid": "be6008af-7bc6-42a9-853b-6b114fb614e3", + "start": { + "$date": "2021-09-30T22:34:57.000Z" + }, + "end": { + "$date": "2021-09-30T22:38:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "65a1750e-4c02-4d9e-aa8a-74f95ea20ba5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-09-30T22:39:09.000Z" + }, + "end": { + "$date": "2021-10-01T02:50:22.000Z" + }, + "events": [ + { + "uuid": "f4263b06-ca9e-4008-9569-08702d7baef1", + "start": { + "$date": "2021-09-30T22:39:09.000Z" + }, + "end": { + "$date": "2021-10-01T02:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", + "uuid": "cd87119d-b0d3-427b-ae03-ce0350679607", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-30T23:26:13.000Z" + }, + "end": { + "$date": "2021-09-30T23:29:23.000Z" + }, + "events": [ + { + "uuid": "9babb877-f57c-4d34-90d2-759b519fdd52", + "start": { + "$date": "2021-09-30T23:26:13.000Z" + }, + "end": { + "$date": "2021-09-30T23:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", + "uuid": "d6e7d6f0-87fe-4d68-8696-a9ef97d10e34", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-09-30T23:30:18.000Z" + }, + "end": { + "$date": "2021-10-01T00:00:07.000Z" + }, + "events": [ + { + "uuid": "dd17b498-90cf-486f-9a21-44f487b68e36", + "start": { + "$date": "2021-09-30T23:30:18.000Z" + }, + "end": { + "$date": "2021-10-01T00:00:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b22f1256-aae3-4390-b136-a9fa9a03be89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-09-30T23:40:10.000Z" + }, + "end": { + "$date": "2021-10-01T03:32:48.000Z" + }, + "events": [ + { + "uuid": "4e43bdcd-7616-4787-8792-fd9872871057", + "start": { + "$date": "2021-09-30T23:40:10.000Z" + }, + "end": { + "$date": "2021-09-30T23:55:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95235a4f-7f2f-4c09-a7e0-8ba953a88075", + "start": { + "$date": "2021-09-30T23:55:10.000Z" + }, + "end": { + "$date": "2021-09-30T23:56:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c89e2a6f-85aa-464e-959e-7ad24ecd8df2", + "start": { + "$date": "2021-09-30T23:56:10.000Z" + }, + "end": { + "$date": "2021-10-01T00:09:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2c85fabd-c53f-4da2-86a8-ec88f16e8caa", + "start": { + "$date": "2021-10-01T00:09:10.000Z" + }, + "end": { + "$date": "2021-10-01T00:14:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "13726dc1-1595-4701-a860-2a11842d73da", + "start": { + "$date": "2021-10-01T00:14:10.000Z" + }, + "end": { + "$date": "2021-10-01T00:24:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b57d6259-6938-4681-b057-7f9634422d1e", + "start": { + "$date": "2021-10-01T00:24:10.000Z" + }, + "end": { + "$date": "2021-10-01T00:27:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb456c8b-746a-46cd-b8db-63419bf59b25", + "start": { + "$date": "2021-10-01T00:27:10.000Z" + }, + "end": { + "$date": "2021-10-01T03:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78b4d545-582d-4efe-a62e-4c75f7927bbc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-09-30T23:47:22.000Z" + }, + "end": { + "$date": "2021-10-01T00:11:02.000Z" + }, + "events": [ + { + "uuid": "d29b9621-058c-4bbd-b7e5-3fa4bb668e21", + "start": { + "$date": "2021-09-30T23:47:22.000Z" + }, + "end": { + "$date": "2021-10-01T00:11:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94daf33d-3d33-42fe-a47f-9625cf85185d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-01T00:56:21.000Z" + }, + "end": { + "$date": "2021-10-01T01:06:51.000Z" + }, + "events": [ + { + "uuid": "b5acf1f3-904c-4df2-a3d9-d2568f094727", + "start": { + "$date": "2021-10-01T00:56:21.000Z" + }, + "end": { + "$date": "2021-10-01T01:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1f4c570-2d47-4c38-8769-2a33fcd71686", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-01T01:10:06.000Z" + }, + "end": { + "$date": "2021-10-01T01:26:07.000Z" + }, + "events": [ + { + "uuid": "831110ac-8307-4510-bcfa-450942439552", + "start": { + "$date": "2021-10-01T01:10:06.000Z" + }, + "end": { + "$date": "2021-10-01T01:26:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dab0664e-abf2-41bf-8391-d7ae995e8b38", + "uuid": "b427e62c-6e76-4183-9033-49805e63fb70", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T01:46:20.000Z" + }, + "end": { + "$date": "2021-10-01T03:07:39.000Z" + }, + "events": [ + { + "uuid": "26a9db84-22ea-4a60-bdab-f313a27a1061", + "start": { + "$date": "2021-10-01T01:46:20.000Z" + }, + "end": { + "$date": "2021-10-01T03:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34f79d77-4c5b-4621-8bc4-115c3f1e3e1f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T01:59:36.000Z" + }, + "end": { + "$date": "2021-10-01T02:22:32.000Z" + }, + "events": [ + { + "uuid": "187eb506-8c51-4e00-b568-7fbb870d9a9f", + "start": { + "$date": "2021-10-01T01:59:36.000Z" + }, + "end": { + "$date": "2021-10-01T02:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d7d4ba7-b95b-4a5f-bc25-42f1b02b31c8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T02:26:09.000Z" + }, + "end": { + "$date": "2021-10-01T02:40:50.000Z" + }, + "events": [ + { + "uuid": "c5840baa-e0a7-4282-98c4-efddc5475e94", + "start": { + "$date": "2021-10-01T02:26:09.000Z" + }, + "end": { + "$date": "2021-10-01T02:40:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b5502bf-38ab-43af-ad5b-2dab791ed48a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T02:43:31.000Z" + }, + "end": { + "$date": "2021-10-01T03:04:38.000Z" + }, + "events": [ + { + "uuid": "44df52f0-5e4d-41ef-a9b5-da757feacaf8", + "start": { + "$date": "2021-10-01T02:43:31.000Z" + }, + "end": { + "$date": "2021-10-01T03:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "925314eb-3168-4a59-9f1d-2dc263e8fbd5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-01T02:41:36.000Z" + }, + "end": { + "$date": "2021-10-01T03:20:31.000Z" + }, + "events": [ + { + "uuid": "90a71baf-0bab-43dc-a812-1fcbf539470b", + "start": { + "$date": "2021-10-01T02:41:36.000Z" + }, + "end": { + "$date": "2021-10-01T03:20:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "1bc645c6-9598-484f-be9e-36ff77a77623", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-01T03:03:11.000Z" + }, + "end": { + "$date": "2021-10-01T03:05:56.000Z" + }, + "events": [ + { + "uuid": "7872c665-3226-45e8-ab85-a4312ece9ce1", + "start": { + "$date": "2021-10-01T03:03:11.000Z" + }, + "end": { + "$date": "2021-10-01T03:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e225218d-1416-4059-8cb6-8266e9f1efc8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T03:08:29.000Z" + }, + "end": { + "$date": "2021-10-01T03:30:11.000Z" + }, + "events": [ + { + "uuid": "9ecea430-347d-46e4-897e-313a0d7ab629", + "start": { + "$date": "2021-10-01T03:08:29.000Z" + }, + "end": { + "$date": "2021-10-01T03:30:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", + "uuid": "a519c756-8da8-45dc-b586-fdf1d9bbae2a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T03:11:24.000Z" + }, + "end": { + "$date": "2021-10-01T03:43:35.000Z" + }, + "events": [ + { + "uuid": "d5810fd6-fafe-4c07-b5d7-e8f0fcccac7c", + "start": { + "$date": "2021-10-01T03:11:24.000Z" + }, + "end": { + "$date": "2021-10-01T03:43:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "913441a0-e764-4710-982f-278c32fc58bd", + "uuid": "bd445794-1fd3-4773-ba84-40d7cd46168b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-01T03:12:22.000Z" + }, + "end": { + "$date": "2021-10-01T03:43:39.000Z" + }, + "events": [ + { + "uuid": "19d5fc7f-40a8-4c9d-8f40-3be3820c141c", + "start": { + "$date": "2021-10-01T03:12:22.000Z" + }, + "end": { + "$date": "2021-10-01T03:43:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b4facde-49e4-49c4-92f9-1fb9e966c25b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-01T03:27:28.000Z" + }, + "end": { + "$date": "2021-10-01T04:00:51.000Z" + }, + "events": [ + { + "uuid": "da622245-ee63-42f9-ad10-18bb8504e1c4", + "start": { + "$date": "2021-10-01T03:27:28.000Z" + }, + "end": { + "$date": "2021-10-01T04:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43ea4865-9a2e-42de-b4d2-3d397dd84b90", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T03:32:22.000Z" + }, + "end": { + "$date": "2021-10-01T03:51:02.000Z" + }, + "events": [ + { + "uuid": "ee03989f-cacf-4720-b688-a894e8f46679", + "start": { + "$date": "2021-10-01T03:32:22.000Z" + }, + "end": { + "$date": "2021-10-01T03:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39fd05f0-b9b6-4b2f-a3a6-37f124a70ca9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T03:52:49.000Z" + }, + "end": { + "$date": "2021-10-01T04:15:11.000Z" + }, + "events": [ + { + "uuid": "2e57189d-408f-4548-96d0-484858a4d080", + "start": { + "$date": "2021-10-01T03:52:49.000Z" + }, + "end": { + "$date": "2021-10-01T04:15:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bd4bec68-9007-4142-bb79-997d4982f2e0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T03:55:36.000Z" + }, + "end": { + "$date": "2021-10-01T04:18:16.000Z" + }, + "events": [ + { + "uuid": "99a60804-c768-45a0-8f4f-fa0dd79e96d5", + "start": { + "$date": "2021-10-01T03:55:36.000Z" + }, + "end": { + "$date": "2021-10-01T04:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81d847bc-73c7-4197-94cf-868820ab7565", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T04:44:10.000Z" + }, + "end": { + "$date": "2021-10-01T05:11:03.000Z" + }, + "events": [ + { + "uuid": "387041d3-8a88-4bc1-9ff2-746aac6206dc", + "start": { + "$date": "2021-10-01T04:44:10.000Z" + }, + "end": { + "$date": "2021-10-01T05:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1912f3da-35d5-46dd-8062-57f5f50197f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-01T04:18:37.000Z" + }, + "end": { + "$date": "2021-10-01T04:40:42.000Z" + }, + "events": [ + { + "uuid": "58d6984a-aea1-48df-a6d4-bc0474dbc012", + "start": { + "$date": "2021-10-01T04:18:37.000Z" + }, + "end": { + "$date": "2021-10-01T04:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "14e7a446-98f2-4e36-b5d8-ec162f80ca37", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-01T04:18:19.000Z" + }, + "end": { + "$date": "2021-10-01T05:09:56.000Z" + }, + "events": [ + { + "uuid": "ec7de143-ee4d-4f5c-8328-2954f7dfbdf3", + "start": { + "$date": "2021-10-01T04:18:19.000Z" + }, + "end": { + "$date": "2021-10-01T05:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", + "uuid": "a0b038db-5144-46fc-b7a9-4da84bf9fc45", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T04:18:26.000Z" + }, + "end": { + "$date": "2021-10-01T04:45:42.000Z" + }, + "events": [ + { + "uuid": "ac93b490-da17-44ad-9bd3-8bdbd851ea04", + "start": { + "$date": "2021-10-01T04:18:26.000Z" + }, + "end": { + "$date": "2021-10-01T04:45:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "9708370d-9efc-4a98-ba4f-c379c7955c7d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T04:46:07.000Z" + }, + "end": { + "$date": "2021-10-01T05:08:17.000Z" + }, + "events": [ + { + "uuid": "d91ddf0c-6df7-4121-8022-e126daff61c1", + "start": { + "$date": "2021-10-01T04:46:07.000Z" + }, + "end": { + "$date": "2021-10-01T05:08:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "213010f4-b3a4-4e56-b05d-fe0ef225c428", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-01T05:01:36.000Z" + }, + "end": { + "$date": "2021-10-01T05:30:57.000Z" + }, + "events": [ + { + "uuid": "5c904302-7a68-40d1-b63b-ddf595250081", + "start": { + "$date": "2021-10-01T05:01:36.000Z" + }, + "end": { + "$date": "2021-10-01T05:30:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72f7c8ee-e486-4a30-a51a-3b4af2c70e99", + "uuid": "9bf6f2c0-fc5c-44ab-ae74-c8c5adfc5c93", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T05:09:17.000Z" + }, + "end": { + "$date": "2021-10-01T05:55:09.000Z" + }, + "events": [ + { + "uuid": "57f634cc-dda4-4163-9796-1dec95837853", + "start": { + "$date": "2021-10-01T05:09:17.000Z" + }, + "end": { + "$date": "2021-10-01T05:55:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60c75d71-e743-47e0-9e61-1de9ff4705d2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-01T05:14:04.000Z" + }, + "end": { + "$date": "2021-10-01T05:34:21.000Z" + }, + "events": [ + { + "uuid": "92b22e89-42e5-43b9-8a0f-3e0332beae68", + "start": { + "$date": "2021-10-01T05:14:04.000Z" + }, + "end": { + "$date": "2021-10-01T05:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "637c8712-5569-4b6e-8c68-e6ea3b6a9a7a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-01T05:20:19.000Z" + }, + "end": { + "$date": "2021-10-01T05:48:30.000Z" + }, + "events": [ + { + "uuid": "e55f3ae2-1aa3-4cc7-8920-be086ae0456c", + "start": { + "$date": "2021-10-01T05:20:19.000Z" + }, + "end": { + "$date": "2021-10-01T05:48:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e509ae9-de9d-4d09-89e7-ced2388b4261", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-01T05:35:26.000Z" + }, + "end": { + "$date": "2021-10-01T05:41:50.000Z" + }, + "events": [ + { + "uuid": "a238892e-ad00-4026-b0aa-3c30e92be9db", + "start": { + "$date": "2021-10-01T05:35:26.000Z" + }, + "end": { + "$date": "2021-10-01T05:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7ed7fdf2-fb23-4a8f-8946-e3131e2a59a6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-01T19:21:57.000Z" + }, + "end": { + "$date": "2021-10-02T00:22:13.000Z" + }, + "events": [ + { + "uuid": "1b4a1b90-ee35-465f-b262-571b6f38a229", + "start": { + "$date": "2021-10-01T19:21:57.000Z" + }, + "end": { + "$date": "2021-10-01T20:54:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e11d71bf-fc91-4ee7-be9e-1548ee79a088", + "start": { + "$date": "2021-10-01T20:54:57.000Z" + }, + "end": { + "$date": "2021-10-01T20:59:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d95a976-1159-4a2a-ba9b-880ec0de3358", + "start": { + "$date": "2021-10-01T20:59:57.000Z" + }, + "end": { + "$date": "2021-10-01T21:09:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f058fb5-fda7-4efd-b995-ffba5862afaa", + "start": { + "$date": "2021-10-01T21:09:57.000Z" + }, + "end": { + "$date": "2021-10-01T21:17:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "63a69cf3-21e0-48eb-8380-896a43d01e17", + "start": { + "$date": "2021-10-01T21:17:57.000Z" + }, + "end": { + "$date": "2021-10-01T21:20:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3e27f190-03cc-48b1-8596-480bb0261858", + "start": { + "$date": "2021-10-01T21:20:57.000Z" + }, + "end": { + "$date": "2021-10-01T22:09:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6ded7455-107c-4c22-91b3-df37b3c00a62", + "start": { + "$date": "2021-10-01T22:09:57.000Z" + }, + "end": { + "$date": "2021-10-02T00:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "5d896e10-68fd-48e1-9be1-b0efb50130a6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-01T19:34:32.000Z" + }, + "end": { + "$date": "2021-10-01T19:47:17.000Z" + }, + "events": [ + { + "uuid": "5446f50b-7785-4c97-ac77-1a80ce38dde7", + "start": { + "$date": "2021-10-01T19:34:32.000Z" + }, + "end": { + "$date": "2021-10-01T19:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5e3ded53-5ad3-417b-baa7-f26dab9b61c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-01T21:40:52.000Z" + }, + "end": { + "$date": "2021-10-01T22:45:08.000Z" + }, + "events": [ + { + "uuid": "0b25662a-798f-41d9-9eac-e29398885fba", + "start": { + "$date": "2021-10-01T21:40:52.000Z" + }, + "end": { + "$date": "2021-10-01T22:45:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d776f868-3fbd-4bc0-8d9d-e16dfdcf75e0", + "uuid": "43fe1230-229d-4d11-9bc2-2310e8536ba5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-01T23:10:27.000Z" + }, + "end": { + "$date": "2021-10-02T00:07:04.000Z" + }, + "events": [ + { + "uuid": "563c684c-7b02-4cbf-ba7c-c1d204dfc686", + "start": { + "$date": "2021-10-01T23:10:27.000Z" + }, + "end": { + "$date": "2021-10-02T00:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae736de1-231a-41ff-95b7-d7506387b3dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-01T23:58:43.000Z" + }, + "end": { + "$date": "2021-10-02T00:32:51.000Z" + }, + "events": [ + { + "uuid": "84a5cfc4-589e-426e-9b41-c78f911f73ba", + "start": { + "$date": "2021-10-01T23:58:43.000Z" + }, + "end": { + "$date": "2021-10-02T00:32:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c638ff42-0fd3-461e-a35a-91da6063a4ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-02T00:30:19.000Z" + }, + "end": { + "$date": "2021-10-02T04:45:12.000Z" + }, + "events": [ + { + "uuid": "bd9c0407-84a5-4444-92bb-9b3500ca5f94", + "start": { + "$date": "2021-10-02T00:30:19.000Z" + }, + "end": { + "$date": "2021-10-02T04:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e7de279-5cd5-4aac-835c-e3fdc9dc8c3c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-02T01:11:15.000Z" + }, + "end": { + "$date": "2021-10-02T01:37:53.000Z" + }, + "events": [ + { + "uuid": "22208fff-8200-4efe-a97d-7e04a0cad1d4", + "start": { + "$date": "2021-10-02T01:11:15.000Z" + }, + "end": { + "$date": "2021-10-02T01:37:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b884954a-d19f-43e1-ba54-f5f2030f27ff", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-02T01:34:04.000Z" + }, + "end": { + "$date": "2021-10-02T01:37:51.000Z" + }, + "events": [ + { + "uuid": "8fb67fc1-bf0d-47f3-9965-b783376a19bd", + "start": { + "$date": "2021-10-02T01:34:04.000Z" + }, + "end": { + "$date": "2021-10-02T01:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "710cd884-8cfa-4e89-9635-ce61c38607f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-02T01:40:51.000Z" + }, + "end": { + "$date": "2021-10-02T02:01:44.000Z" + }, + "events": [ + { + "uuid": "e49df07d-3b80-40f5-a63a-5a8fe3f53ac7", + "start": { + "$date": "2021-10-02T01:40:51.000Z" + }, + "end": { + "$date": "2021-10-02T02:01:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e55d424a-2fee-4b12-9424-0996da0c3841", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-02T01:40:45.000Z" + }, + "end": { + "$date": "2021-10-02T02:01:41.000Z" + }, + "events": [ + { + "uuid": "d9552ae5-104f-48ca-8930-8d59fc03e032", + "start": { + "$date": "2021-10-02T01:40:45.000Z" + }, + "end": { + "$date": "2021-10-02T02:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42858e9b-e6e8-47b6-83de-82c24194a6e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-02T01:42:43.000Z" + }, + "end": { + "$date": "2021-10-02T02:01:43.000Z" + }, + "events": [ + { + "uuid": "da9551ad-7fc0-4878-88fb-706aaaaad838", + "start": { + "$date": "2021-10-02T01:42:43.000Z" + }, + "end": { + "$date": "2021-10-02T02:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b518fbbe-c0b4-43e5-b383-0421f990f98b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-02T02:31:53.000Z" + }, + "end": { + "$date": "2021-10-02T05:18:21.000Z" + }, + "events": [ + { + "uuid": "f76b655f-7c14-4f9a-8a2a-db6e2563fbdd", + "start": { + "$date": "2021-10-02T02:31:53.000Z" + }, + "end": { + "$date": "2021-10-02T05:18:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a3bf99aa-9ff4-4ced-af51-e945bc2ebf13", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-02T02:32:03.000Z" + }, + "end": { + "$date": "2021-10-02T05:19:42.000Z" + }, + "events": [ + { + "uuid": "73c3f9cc-3387-495c-9e0b-8135d9480384", + "start": { + "$date": "2021-10-02T02:32:03.000Z" + }, + "end": { + "$date": "2021-10-02T05:19:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4b844694-9dc8-4702-9cfd-86d7390f3698", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-02T02:33:39.000Z" + }, + "end": { + "$date": "2021-10-02T05:19:16.000Z" + }, + "events": [ + { + "uuid": "ab79a882-b0a4-4af6-9297-29a9308e4451", + "start": { + "$date": "2021-10-02T02:33:39.000Z" + }, + "end": { + "$date": "2021-10-02T05:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b62bf6c1-bc63-47fc-8810-6f6ce3f7e54c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-02T03:50:40.000Z" + }, + "end": { + "$date": "2021-10-02T04:05:40.000Z" + }, + "events": [ + { + "uuid": "4cc76ce0-e6d6-4392-b241-e38aefd7201b", + "start": { + "$date": "2021-10-02T03:50:40.000Z" + }, + "end": { + "$date": "2021-10-02T04:05:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "8c224ad9-693d-4ccf-a19a-bbb31afbd673", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T03:55:42.000Z" + }, + "end": { + "$date": "2021-10-02T05:07:01.000Z" + }, + "events": [ + { + "uuid": "6658bcfb-08dd-4e35-8bdc-e4f1b603a12c", + "start": { + "$date": "2021-10-02T03:55:42.000Z" + }, + "end": { + "$date": "2021-10-02T05:07:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d3b0491-fb9d-4fd4-b5fc-05139d6fbed1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-02T04:08:16.000Z" + }, + "end": { + "$date": "2021-10-02T04:24:46.000Z" + }, + "events": [ + { + "uuid": "a96a5e89-a421-43a4-ab57-0bb6948eb3d5", + "start": { + "$date": "2021-10-02T04:08:16.000Z" + }, + "end": { + "$date": "2021-10-02T04:24:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce1ddafe-6f39-4d14-bfa1-3a00d8689083", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-02T04:27:37.000Z" + }, + "end": { + "$date": "2021-10-02T04:50:59.000Z" + }, + "events": [ + { + "uuid": "629c1bdc-e497-4d1d-bcf7-f7decfd2c67c", + "start": { + "$date": "2021-10-02T04:27:37.000Z" + }, + "end": { + "$date": "2021-10-02T04:50:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "aeffdee4-d664-4728-ae3f-a03d31f94be7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-02T04:31:31.000Z" + }, + "end": { + "$date": "2021-10-02T06:22:31.000Z" + }, + "events": [ + { + "uuid": "debaf797-cfaa-4bf9-b14c-5b473988a229", + "start": { + "$date": "2021-10-02T04:31:31.000Z" + }, + "end": { + "$date": "2021-10-02T06:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "0dcf2cab-40b1-4b92-a687-16c3938cd2e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T05:08:51.000Z" + }, + "end": { + "$date": "2021-10-02T05:12:57.000Z" + }, + "events": [ + { + "uuid": "28c44cc8-c37b-4874-87fe-8a9376f5d933", + "start": { + "$date": "2021-10-02T05:08:51.000Z" + }, + "end": { + "$date": "2021-10-02T05:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fea2fc8a-d167-4afd-a526-b84bd2def830", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-02T05:18:32.000Z" + }, + "end": { + "$date": "2021-10-02T05:32:46.000Z" + }, + "events": [ + { + "uuid": "2d777459-9d86-4a54-8b30-4bff13b51f1e", + "start": { + "$date": "2021-10-02T05:18:32.000Z" + }, + "end": { + "$date": "2021-10-02T05:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4682de70-7401-47b7-81d3-1421773aa33c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-02T05:51:38.000Z" + }, + "end": { + "$date": "2021-10-02T05:54:38.000Z" + }, + "events": [ + { + "uuid": "2bbaf684-7f6a-49a4-9a8f-02e7cd90a4d9", + "start": { + "$date": "2021-10-02T05:51:38.000Z" + }, + "end": { + "$date": "2021-10-02T05:54:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d87975a8-fdc6-4e16-b23a-c68c77933482", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-02T06:28:17.000Z" + }, + "end": { + "$date": "2021-10-02T06:54:42.000Z" + }, + "events": [ + { + "uuid": "d641681b-9b50-4041-968d-e4122f5e02c7", + "start": { + "$date": "2021-10-02T06:28:17.000Z" + }, + "end": { + "$date": "2021-10-02T06:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c18622a8-3ebc-4b41-b5a2-49ec6c580700", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-02T06:48:08.000Z" + }, + "end": { + "$date": "2021-10-02T06:50:38.000Z" + }, + "events": [ + { + "uuid": "d156c9e6-c721-4340-837d-732d12622b7b", + "start": { + "$date": "2021-10-02T06:48:08.000Z" + }, + "end": { + "$date": "2021-10-02T06:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "050fc285-85e3-4d71-85ea-4dfd7ad2f5e4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-02T07:08:14.000Z" + }, + "end": { + "$date": "2021-10-02T07:40:56.000Z" + }, + "events": [ + { + "uuid": "c7945e00-afbc-4cd9-b7ba-ebe2be71c5e9", + "start": { + "$date": "2021-10-02T07:08:14.000Z" + }, + "end": { + "$date": "2021-10-02T07:40:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e8072228-0549-46e0-bf8d-f51575d02473", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-02T13:48:36.000Z" + }, + "end": { + "$date": "2021-10-02T13:55:31.000Z" + }, + "events": [ + { + "uuid": "33cefd30-cbe4-4290-b393-b24385623bb6", + "start": { + "$date": "2021-10-02T13:48:36.000Z" + }, + "end": { + "$date": "2021-10-02T13:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "be6befaa-f71f-4ef5-9b9c-6c5c01fe8ef8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T15:13:43.000Z" + }, + "end": { + "$date": "2021-10-02T15:55:48.000Z" + }, + "events": [ + { + "uuid": "42302a3a-47f1-4a7c-9378-cf211dae2048", + "start": { + "$date": "2021-10-02T15:13:43.000Z" + }, + "end": { + "$date": "2021-10-02T15:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "aa0393f1-7cab-4270-9ee0-f1b61608cc3c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T16:09:00.000Z" + }, + "end": { + "$date": "2021-10-02T16:10:50.000Z" + }, + "events": [ + { + "uuid": "d0e6f2e2-5c63-454d-8dac-d25cb746e6eb", + "start": { + "$date": "2021-10-02T16:09:00.000Z" + }, + "end": { + "$date": "2021-10-02T16:10:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "a588e072-d24f-42eb-b6f8-cbd9a6736500", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T16:11:10.000Z" + }, + "end": { + "$date": "2021-10-02T17:11:32.000Z" + }, + "events": [ + { + "uuid": "6690b0a4-a73f-41a8-a070-8ebfa44bb81e", + "start": { + "$date": "2021-10-02T16:11:10.000Z" + }, + "end": { + "$date": "2021-10-02T17:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f3d9601e-f3fd-492f-abbf-9f86bda71b82", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T17:42:43.000Z" + }, + "end": { + "$date": "2021-10-02T18:09:21.000Z" + }, + "events": [ + { + "uuid": "759eae18-81f7-4b4e-bde4-62c22538e3e5", + "start": { + "$date": "2021-10-02T17:42:43.000Z" + }, + "end": { + "$date": "2021-10-02T18:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "37b055ae-5812-493a-a306-322555481274", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-02T18:43:28.000Z" + }, + "end": { + "$date": "2021-10-02T18:47:17.000Z" + }, + "events": [ + { + "uuid": "41afb8b8-7428-4f98-8827-f041d88c10ac", + "start": { + "$date": "2021-10-02T18:43:28.000Z" + }, + "end": { + "$date": "2021-10-02T18:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "4f25e916-3025-4720-aca9-892d17501f1a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T18:50:44.000Z" + }, + "end": { + "$date": "2021-10-02T20:06:48.000Z" + }, + "events": [ + { + "uuid": "d9ee482d-2a7f-4e77-98e3-5fcc44d52fe0", + "start": { + "$date": "2021-10-02T18:50:44.000Z" + }, + "end": { + "$date": "2021-10-02T20:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d776f868-3fbd-4bc0-8d9d-e16dfdcf75e0", + "uuid": "a130c6d2-71de-4013-9858-72ed25d558a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-02T19:51:52.000Z" + }, + "end": { + "$date": "2021-10-02T20:08:34.000Z" + }, + "events": [ + { + "uuid": "06d72b69-f3cc-4eae-8782-9caa6d767181", + "start": { + "$date": "2021-10-02T19:51:52.000Z" + }, + "end": { + "$date": "2021-10-02T20:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "cf8bb04f-a1e8-4895-b829-a6fbc22f65a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-02T20:07:19.000Z" + }, + "end": { + "$date": "2021-10-02T20:25:41.000Z" + }, + "events": [ + { + "uuid": "f8aa6096-aed9-4071-b380-4a38e5fff363", + "start": { + "$date": "2021-10-02T20:07:19.000Z" + }, + "end": { + "$date": "2021-10-02T20:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9095f7ba-18eb-4467-a439-095b40717582", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-02T20:17:52.000Z" + }, + "end": { + "$date": "2021-10-02T20:24:12.000Z" + }, + "events": [ + { + "uuid": "92daacfc-3bea-4555-adab-de5fde4b7e5e", + "start": { + "$date": "2021-10-02T20:17:52.000Z" + }, + "end": { + "$date": "2021-10-02T20:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "196c959f-2ebe-4823-8d38-68b17677e571", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-02T20:23:52.000Z" + }, + "end": { + "$date": "2021-10-02T21:04:11.000Z" + }, + "events": [ + { + "uuid": "907097d9-2113-4d15-b4d8-57ffdb512fd0", + "start": { + "$date": "2021-10-02T20:23:52.000Z" + }, + "end": { + "$date": "2021-10-02T21:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3acbd072-baa3-444a-9b0b-b3a4dcd89256", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-02T21:12:41.000Z" + }, + "end": { + "$date": "2021-10-02T22:29:45.000Z" + }, + "events": [ + { + "uuid": "04043d11-63d1-43e5-bf29-746e614d66f2", + "start": { + "$date": "2021-10-02T21:12:41.000Z" + }, + "end": { + "$date": "2021-10-02T22:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fa586689-28ed-48d3-87fe-e9a16b35d4f1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-02T21:13:14.000Z" + }, + "end": { + "$date": "2021-10-02T22:29:52.000Z" + }, + "events": [ + { + "uuid": "431b3da7-e8bf-4cf6-9602-e257f53fa0e4", + "start": { + "$date": "2021-10-02T21:13:14.000Z" + }, + "end": { + "$date": "2021-10-02T22:29:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "df5fd057-b305-43f5-a00d-406ad7e7c212", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-02T21:22:39.000Z" + }, + "end": { + "$date": "2021-10-02T21:23:04.000Z" + }, + "events": [ + { + "uuid": "b83314b7-9aec-4c02-a5ec-0bd8d9d71f9d", + "start": { + "$date": "2021-10-02T21:22:39.000Z" + }, + "end": { + "$date": "2021-10-02T21:23:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e8a3459a-c7cd-4174-8279-624092233ec4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-02T21:29:26.000Z" + }, + "end": { + "$date": "2021-10-02T21:55:56.000Z" + }, + "events": [ + { + "uuid": "fa100ec3-e0ff-4664-9470-d1887ad1f5b6", + "start": { + "$date": "2021-10-02T21:29:26.000Z" + }, + "end": { + "$date": "2021-10-02T21:55:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7f175f28-27ef-4ffd-a087-b1c97797d7b7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-02T23:25:47.000Z" + }, + "end": { + "$date": "2021-10-03T00:37:03.000Z" + }, + "events": [ + { + "uuid": "ca78ae5a-b7d8-4b94-a5ec-ea46cf705463", + "start": { + "$date": "2021-10-02T23:25:47.000Z" + }, + "end": { + "$date": "2021-10-03T00:37:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "031b7551-4403-4586-8434-399521834dad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-02T23:56:10.000Z" + }, + "end": { + "$date": "2021-10-03T06:52:19.000Z" + }, + "events": [ + { + "uuid": "aeb8aa09-5ff7-4810-9777-fefeeaf9a8ea", + "start": { + "$date": "2021-10-02T23:56:10.000Z" + }, + "end": { + "$date": "2021-10-03T06:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "a838afb9-22e7-4d8f-a0fb-5bbe238d9815", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-03T00:11:02.000Z" + }, + "end": { + "$date": "2021-10-03T01:15:12.000Z" + }, + "events": [ + { + "uuid": "3d3341df-ee32-4b45-82ad-3f014e74ba9d", + "start": { + "$date": "2021-10-03T00:11:02.000Z" + }, + "end": { + "$date": "2021-10-03T01:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f3591fa-ddae-4b1d-8de8-32ea2446fe3c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-03T00:26:13.000Z" + }, + "end": { + "$date": "2021-10-03T00:54:35.000Z" + }, + "events": [ + { + "uuid": "072fa369-eed3-4bbb-bd34-ad02fa7384aa", + "start": { + "$date": "2021-10-03T00:26:13.000Z" + }, + "end": { + "$date": "2021-10-03T00:54:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9f8aa20b-da01-4c0b-9d65-9c740145d1cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-03T01:23:59.000Z" + }, + "end": { + "$date": "2021-10-03T02:03:56.000Z" + }, + "events": [ + { + "uuid": "dca75e04-cd94-4907-8c44-6841e1fbd7dd", + "start": { + "$date": "2021-10-03T01:23:59.000Z" + }, + "end": { + "$date": "2021-10-03T02:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1024d975-fac6-4d01-abb1-91708a96a297", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-03T01:24:26.000Z" + }, + "end": { + "$date": "2021-10-03T03:18:42.000Z" + }, + "events": [ + { + "uuid": "24e477bb-21e7-442e-9a76-a53ba836e8fb", + "start": { + "$date": "2021-10-03T01:24:26.000Z" + }, + "end": { + "$date": "2021-10-03T03:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e2d85b84-a477-4bdc-a2d3-3d5d2f5a00ea", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-03T01:36:42.000Z" + }, + "end": { + "$date": "2021-10-03T03:26:54.000Z" + }, + "events": [ + { + "uuid": "2243b15a-add9-44a3-b922-0a24f08b9143", + "start": { + "$date": "2021-10-03T01:36:42.000Z" + }, + "end": { + "$date": "2021-10-03T03:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "b492174a-3eb5-41a6-a132-163b48741f3f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-03T02:32:25.000Z" + }, + "end": { + "$date": "2021-10-03T02:33:35.000Z" + }, + "events": [ + { + "uuid": "0c037c55-e0f4-428d-b5ab-c210790ad50d", + "start": { + "$date": "2021-10-03T02:32:25.000Z" + }, + "end": { + "$date": "2021-10-03T02:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "1563e7df-e85f-4632-8bce-b0c5ef3046d8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-03T03:58:09.000Z" + }, + "end": { + "$date": "2021-10-03T06:41:33.000Z" + }, + "events": [ + { + "uuid": "68cbf161-bd8a-4b4b-881c-986856676fd2", + "start": { + "$date": "2021-10-03T03:58:09.000Z" + }, + "end": { + "$date": "2021-10-03T04:38:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8ab00e1-1be5-4ce1-b673-bbc3c23290ec", + "start": { + "$date": "2021-10-03T04:38:09.000Z" + }, + "end": { + "$date": "2021-10-03T04:39:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dd39b514-e73d-4ee4-8098-16f31f0a9d97", + "start": { + "$date": "2021-10-03T04:39:09.000Z" + }, + "end": { + "$date": "2021-10-03T06:41:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "6e9b2149-2e01-448e-bc07-4fd58815d96b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-03T04:06:43.000Z" + }, + "end": { + "$date": "2021-10-03T05:29:38.000Z" + }, + "events": [ + { + "uuid": "a8fd9698-4b40-4a5a-9c5f-9d69df71377e", + "start": { + "$date": "2021-10-03T04:06:43.000Z" + }, + "end": { + "$date": "2021-10-03T05:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6bd52a4-9b2d-4ccf-806c-77431d724a86", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-03T05:34:53.000Z" + }, + "end": { + "$date": "2021-10-03T05:57:56.000Z" + }, + "events": [ + { + "uuid": "99034b4e-0516-41ac-82a5-fcc866abeb34", + "start": { + "$date": "2021-10-03T05:34:53.000Z" + }, + "end": { + "$date": "2021-10-03T05:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "5a5427b2-86d7-49d6-a746-11de20a1d2b2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-03T05:49:14.000Z" + }, + "end": { + "$date": "2021-10-03T08:38:14.000Z" + }, + "events": [ + { + "uuid": "a7b4841b-9fcf-43e3-b431-87096efc1962", + "start": { + "$date": "2021-10-03T05:49:14.000Z" + }, + "end": { + "$date": "2021-10-03T08:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae670c83-4a93-430e-8fc7-5da63108323e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-03T06:04:14.000Z" + }, + "end": { + "$date": "2021-10-03T06:36:54.000Z" + }, + "events": [ + { + "uuid": "0559958d-22f8-400f-9cbb-6ff506bbfaef", + "start": { + "$date": "2021-10-03T06:04:14.000Z" + }, + "end": { + "$date": "2021-10-03T06:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f5fd529d-c53b-4bca-9cab-a2830ebca3bb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-03T06:13:44.000Z" + }, + "end": { + "$date": "2021-10-03T09:20:11.000Z" + }, + "events": [ + { + "uuid": "6f5b9fa6-7f40-4ae3-81d0-85ec549bcf2c", + "start": { + "$date": "2021-10-03T06:13:44.000Z" + }, + "end": { + "$date": "2021-10-03T09:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6fa29633-e065-4977-a03b-408d405adb97", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-03T06:15:45.000Z" + }, + "end": { + "$date": "2021-10-03T09:22:25.000Z" + }, + "events": [ + { + "uuid": "04960db2-6d05-489a-99cb-fb243098b985", + "start": { + "$date": "2021-10-03T06:15:45.000Z" + }, + "end": { + "$date": "2021-10-03T09:22:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9dbec0fd-938b-4dbe-9280-ea64dd8acbe0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-03T06:45:56.000Z" + }, + "end": { + "$date": "2021-10-03T07:08:29.000Z" + }, + "events": [ + { + "uuid": "8c6f17f1-dbf7-4e95-bb77-4a3aea7cfac9", + "start": { + "$date": "2021-10-03T06:45:56.000Z" + }, + "end": { + "$date": "2021-10-03T07:08:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a5970e73-3f89-44f5-a2a0-87fb4e7b989e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-03T06:53:45.000Z" + }, + "end": { + "$date": "2021-10-03T08:59:01.000Z" + }, + "events": [ + { + "uuid": "3634948f-58a4-4502-b51f-a0d3fca927d9", + "start": { + "$date": "2021-10-03T06:53:45.000Z" + }, + "end": { + "$date": "2021-10-03T08:59:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44fb3245-28d8-4221-99ca-a6bc6fd93ebd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-03T07:17:52.000Z" + }, + "end": { + "$date": "2021-10-03T07:41:43.000Z" + }, + "events": [ + { + "uuid": "99005334-1307-49a7-a609-ab88c9d1f6df", + "start": { + "$date": "2021-10-03T07:17:52.000Z" + }, + "end": { + "$date": "2021-10-03T07:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "961a0606-184f-42a8-9955-09edde91719b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-03T07:15:29.000Z" + }, + "end": { + "$date": "2021-10-03T08:29:59.000Z" + }, + "events": [ + { + "uuid": "93b6e508-3262-407c-a1e6-c96b12bbb9ef", + "start": { + "$date": "2021-10-03T07:15:29.000Z" + }, + "end": { + "$date": "2021-10-03T08:29:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "848454bf-0b10-473e-b846-9310f1ac2c0e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-03T15:30:27.000Z" + }, + "end": { + "$date": "2021-10-03T16:01:19.000Z" + }, + "events": [ + { + "uuid": "5bf2e151-3ad3-49ca-941d-93e1b7cf8c40", + "start": { + "$date": "2021-10-03T15:30:27.000Z" + }, + "end": { + "$date": "2021-10-03T16:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "cb45cd1b-df7d-4293-a768-560db26f8673", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-03T15:36:35.000Z" + }, + "end": { + "$date": "2021-10-03T16:01:51.000Z" + }, + "events": [ + { + "uuid": "b7fd416b-53c3-461f-b59f-875b74ac6c76", + "start": { + "$date": "2021-10-03T15:36:35.000Z" + }, + "end": { + "$date": "2021-10-03T16:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c31310bf-53b2-44c9-b217-721ea287edb3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-03T16:43:43.000Z" + }, + "end": { + "$date": "2021-10-03T16:50:13.000Z" + }, + "events": [ + { + "uuid": "cedb2f5c-041e-41f1-85cd-4e927a8083f0", + "start": { + "$date": "2021-10-03T16:43:43.000Z" + }, + "end": { + "$date": "2021-10-03T16:50:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "f3e0c1a2-6df1-48c8-a757-5c452d55f30a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-03T18:10:47.000Z" + }, + "end": { + "$date": "2021-10-03T18:24:18.000Z" + }, + "events": [ + { + "uuid": "33b555cd-1a61-4824-b659-84072ccd280c", + "start": { + "$date": "2021-10-03T18:10:47.000Z" + }, + "end": { + "$date": "2021-10-03T18:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "a87dd5c1-1ed0-4303-9f35-4d09ea858256", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-03T18:47:59.000Z" + }, + "end": { + "$date": "2021-10-03T19:40:13.000Z" + }, + "events": [ + { + "uuid": "1715d94a-2175-45d0-81f9-5c3c28071f86", + "start": { + "$date": "2021-10-03T18:47:59.000Z" + }, + "end": { + "$date": "2021-10-03T19:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "445e7bf7-5587-47e7-ad74-94f0989b2f0a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-03T20:04:04.000Z" + }, + "end": { + "$date": "2021-10-03T21:29:06.000Z" + }, + "events": [ + { + "uuid": "dd0bd8cc-038c-4861-819b-dd6595961447", + "start": { + "$date": "2021-10-03T20:04:04.000Z" + }, + "end": { + "$date": "2021-10-03T21:29:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c6f54fb-65be-424c-880a-3b6990b0515c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-03T21:29:34.000Z" + }, + "end": { + "$date": "2021-10-03T21:53:09.000Z" + }, + "events": [ + { + "uuid": "814e0117-ae6b-40aa-a1e3-f552068f1993", + "start": { + "$date": "2021-10-03T21:29:34.000Z" + }, + "end": { + "$date": "2021-10-03T21:53:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "435f2ca2-5c1f-4c2b-9219-11b5878016d6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-03T21:31:17.000Z" + }, + "end": { + "$date": "2021-10-03T21:47:14.000Z" + }, + "events": [ + { + "uuid": "9111ee68-4c19-4c16-9176-2f6d01891551", + "start": { + "$date": "2021-10-03T21:31:17.000Z" + }, + "end": { + "$date": "2021-10-03T21:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09ca2a63-13ad-4d46-b730-7896c3d039bb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-03T21:57:39.000Z" + }, + "end": { + "$date": "2021-10-03T22:34:59.000Z" + }, + "events": [ + { + "uuid": "8baaecdc-8188-4c87-8b4c-96689dd5890f", + "start": { + "$date": "2021-10-03T21:57:39.000Z" + }, + "end": { + "$date": "2021-10-03T22:34:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "5d087a07-2b05-4fc1-969d-e078d085ec4e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-03T21:53:58.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:44.000Z" + }, + "events": [ + { + "uuid": "6931df6e-ac6c-4adf-9bc4-a12e8c137647", + "start": { + "$date": "2021-10-03T21:53:58.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "0200f749-73cf-40f7-8911-f87ed279ed63", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-03T22:24:48.000Z" + }, + "end": { + "$date": "2021-10-04T01:09:31.000Z" + }, + "events": [ + { + "uuid": "de0ea5fa-b82b-4068-b3db-41d133479e74", + "start": { + "$date": "2021-10-03T22:24:48.000Z" + }, + "end": { + "$date": "2021-10-04T01:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6051fc5a-689d-450b-9f0a-d4a6c589457b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-03T22:46:36.000Z" + }, + "end": { + "$date": "2021-10-03T23:18:20.000Z" + }, + "events": [ + { + "uuid": "2a1e8de8-1b7a-4d4f-a61a-60c04e0a6c9f", + "start": { + "$date": "2021-10-03T22:46:36.000Z" + }, + "end": { + "$date": "2021-10-03T23:18:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "d2b6ee69-ee7c-48c7-9b60-ecd12748d2d0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-04T00:38:55.000Z" + }, + "end": { + "$date": "2021-10-04T02:14:39.000Z" + }, + "events": [ + { + "uuid": "a4b5c0de-0eb8-4765-b104-895088554355", + "start": { + "$date": "2021-10-04T00:38:55.000Z" + }, + "end": { + "$date": "2021-10-04T02:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", + "uuid": "11fd7729-b10e-4298-86f7-0ec6ec75d8aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-04T00:38:58.000Z" + }, + "end": { + "$date": "2021-10-04T02:14:47.000Z" + }, + "events": [ + { + "uuid": "0c44afe1-6ebf-4b6b-bf6b-31a9efdba535", + "start": { + "$date": "2021-10-04T00:38:58.000Z" + }, + "end": { + "$date": "2021-10-04T01:51:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "17f66144-bf2a-4214-b13c-45fab6995609", + "start": { + "$date": "2021-10-04T01:51:58.000Z" + }, + "end": { + "$date": "2021-10-04T01:56:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f7ed5d21-f029-4457-abe8-155525e30b32", + "start": { + "$date": "2021-10-04T01:56:58.000Z" + }, + "end": { + "$date": "2021-10-04T02:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "abf058e8-578f-4982-9cc3-e666abc0ffb6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-04T01:09:03.000Z" + }, + "end": { + "$date": "2021-10-04T04:17:14.000Z" + }, + "events": [ + { + "uuid": "6621b9c4-8ff2-4c34-8f1e-8a7c6cc1d6f4", + "start": { + "$date": "2021-10-04T01:09:03.000Z" + }, + "end": { + "$date": "2021-10-04T04:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afe0df6c-cdc9-4494-8bc0-3c31900dbb8d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-04T01:33:33.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:09.000Z" + }, + "events": [ + { + "uuid": "1a9bba3e-bd1e-4e72-a93e-c882ba89ba39", + "start": { + "$date": "2021-10-04T01:33:33.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f73256b4-c727-4020-8f60-9a6092baa79e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-04T01:33:59.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:14.000Z" + }, + "events": [ + { + "uuid": "fd2e93be-ef14-4fc1-8521-7ad142118033", + "start": { + "$date": "2021-10-04T01:33:59.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "659c30e3-9e97-4147-ac31-3af8cc476f52", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-04T01:33:39.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:09.000Z" + }, + "events": [ + { + "uuid": "d217a12d-579e-44a1-8d68-e1ea0de10b2c", + "start": { + "$date": "2021-10-04T01:33:39.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83066c50-bc8d-46d2-b361-385066bcd737", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-04T01:32:36.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:11.000Z" + }, + "events": [ + { + "uuid": "981aa8ff-7901-4155-993d-07bd209d5d55", + "start": { + "$date": "2021-10-04T01:32:36.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85f66e8f-088c-4e17-bba3-dd5715286136", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-04T01:32:38.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:21.000Z" + }, + "events": [ + { + "uuid": "e0b2af50-0042-46f1-ba22-f9dac2d098f5", + "start": { + "$date": "2021-10-04T01:32:38.000Z" + }, + "end": { + "$date": "2021-10-04T02:06:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c292e7b-b79a-482a-90c2-355a13761b70", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-04T02:21:35.000Z" + }, + "end": { + "$date": "2021-10-04T02:41:30.000Z" + }, + "events": [ + { + "uuid": "3d3bb69a-8dbd-44e9-8c2d-7c539edd5c4a", + "start": { + "$date": "2021-10-04T02:21:35.000Z" + }, + "end": { + "$date": "2021-10-04T02:41:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "573be89a-dee8-46fd-b957-2da35066f192", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-04T04:07:25.000Z" + }, + "end": { + "$date": "2021-10-04T04:10:12.000Z" + }, + "events": [ + { + "uuid": "9234870a-4a17-42b7-b10e-c64a87c5fae7", + "start": { + "$date": "2021-10-04T04:07:25.000Z" + }, + "end": { + "$date": "2021-10-04T04:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bc925cf-243e-4e13-858c-23c8c6072727", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-04T02:21:09.000Z" + }, + "end": { + "$date": "2021-10-04T02:41:35.000Z" + }, + "events": [ + { + "uuid": "a0d79f48-a539-4164-b59d-cf60c6957e05", + "start": { + "$date": "2021-10-04T02:21:09.000Z" + }, + "end": { + "$date": "2021-10-04T02:41:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bdbb87f-b4ee-4a17-9533-48f90eb2b579", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-04T04:06:56.000Z" + }, + "end": { + "$date": "2021-10-04T04:11:18.000Z" + }, + "events": [ + { + "uuid": "4ea5a26b-7d84-4a42-9f97-3abd513f9a82", + "start": { + "$date": "2021-10-04T04:06:56.000Z" + }, + "end": { + "$date": "2021-10-04T04:11:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15c32dfb-7a95-4f9d-9ef0-6cf0bd4af24b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-04T02:20:32.000Z" + }, + "end": { + "$date": "2021-10-04T02:41:32.000Z" + }, + "events": [ + { + "uuid": "9d2584ce-70ac-4126-bb81-a3980723d3b7", + "start": { + "$date": "2021-10-04T02:20:32.000Z" + }, + "end": { + "$date": "2021-10-04T02:41:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "79c1bc23-5ed1-4e76-982e-181e6ebbb5bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-04T02:15:03.000Z" + }, + "end": { + "$date": "2021-10-04T02:18:14.000Z" + }, + "events": [ + { + "uuid": "bdaa5d3b-a7e2-4dea-9ec5-a66fb50413fa", + "start": { + "$date": "2021-10-04T02:15:03.000Z" + }, + "end": { + "$date": "2021-10-04T02:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b9ec891a-07e6-4cc6-8075-b3d9d8f42579", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-04T02:19:03.000Z" + }, + "end": { + "$date": "2021-10-04T05:01:15.000Z" + }, + "events": [ + { + "uuid": "9cf12e0a-0d08-4ae5-a093-ce30a0e23b8b", + "start": { + "$date": "2021-10-04T02:19:03.000Z" + }, + "end": { + "$date": "2021-10-04T05:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "179b388d-f93c-445a-9559-8ab5062f988f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-04T02:19:23.000Z" + }, + "end": { + "$date": "2021-10-04T03:10:51.000Z" + }, + "events": [ + { + "uuid": "17b7c5ac-2dcd-4000-843b-fa3e85c347e8", + "start": { + "$date": "2021-10-04T02:19:23.000Z" + }, + "end": { + "$date": "2021-10-04T03:10:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "c969c67c-4c77-4b8f-b9a0-a407c23a6872", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-04T02:31:52.000Z" + }, + "end": { + "$date": "2021-10-04T03:48:33.000Z" + }, + "events": [ + { + "uuid": "ea7e8bcb-f3dd-48f2-9f2c-335a99c1307f", + "start": { + "$date": "2021-10-04T02:31:52.000Z" + }, + "end": { + "$date": "2021-10-04T03:48:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08d24e81-32b4-4d4d-8602-30106015019c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-04T03:06:31.000Z" + }, + "end": { + "$date": "2021-10-04T03:32:43.000Z" + }, + "events": [ + { + "uuid": "cb761ea2-a47b-49bf-bee7-e2166a3dadc9", + "start": { + "$date": "2021-10-04T03:06:31.000Z" + }, + "end": { + "$date": "2021-10-04T03:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ea0161e-3c4c-40d9-b3e1-f5bf2620b80c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-04T03:06:16.000Z" + }, + "end": { + "$date": "2021-10-04T03:32:36.000Z" + }, + "events": [ + { + "uuid": "b1f3c66b-8554-465a-93ab-cab1e04d36dc", + "start": { + "$date": "2021-10-04T03:06:16.000Z" + }, + "end": { + "$date": "2021-10-04T03:32:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5a226ce-0418-4bb8-87f5-c17672d23cb6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-04T03:05:47.000Z" + }, + "end": { + "$date": "2021-10-04T03:32:42.000Z" + }, + "events": [ + { + "uuid": "4250e1aa-f0a5-47ca-bc83-c6d8ee9fae83", + "start": { + "$date": "2021-10-04T03:05:47.000Z" + }, + "end": { + "$date": "2021-10-04T03:32:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8dd97188-a0ab-4687-81c0-6e2ddbcf6424", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-04T03:22:05.000Z" + }, + "end": { + "$date": "2021-10-04T05:01:18.000Z" + }, + "events": [ + { + "uuid": "f7188025-c120-4022-a62e-f4689153aba8", + "start": { + "$date": "2021-10-04T03:22:05.000Z" + }, + "end": { + "$date": "2021-10-04T05:01:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bc5413c-c738-4111-ac0e-5eaca300f123", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-04T04:07:02.000Z" + }, + "end": { + "$date": "2021-10-04T04:10:19.000Z" + }, + "events": [ + { + "uuid": "136b2b59-5c9c-4fbd-88f4-83651398d3b8", + "start": { + "$date": "2021-10-04T04:07:02.000Z" + }, + "end": { + "$date": "2021-10-04T04:10:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aac94cb-d670-44ce-bfff-766277ca26f6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-04T03:45:22.000Z" + }, + "end": { + "$date": "2021-10-04T04:07:00.000Z" + }, + "events": [ + { + "uuid": "59fbd4e2-ccbb-4b5e-9e36-f98743f61f56", + "start": { + "$date": "2021-10-04T03:45:22.000Z" + }, + "end": { + "$date": "2021-10-04T04:07:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d20a993-b0ea-4681-a96f-bf2ce133df94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-04T03:45:02.000Z" + }, + "end": { + "$date": "2021-10-04T04:06:58.000Z" + }, + "events": [ + { + "uuid": "6d7df36e-5e7f-4742-887a-92c360644945", + "start": { + "$date": "2021-10-04T03:45:02.000Z" + }, + "end": { + "$date": "2021-10-04T04:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "7138346a-bc1c-4cec-97dc-f756f1ff6b11", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T04:31:42.000Z" + }, + "end": { + "$date": "2021-10-04T08:32:04.000Z" + }, + "events": [ + { + "uuid": "9a81c3df-700e-45c5-9f94-d9920f1eff83", + "start": { + "$date": "2021-10-04T04:31:42.000Z" + }, + "end": { + "$date": "2021-10-04T08:32:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "5711116d-c542-4182-8324-9e7124fcd6c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-04T04:40:19.000Z" + }, + "end": { + "$date": "2021-10-04T04:53:55.000Z" + }, + "events": [ + { + "uuid": "9dfe03ab-1176-4f94-8578-28811d89bef0", + "start": { + "$date": "2021-10-04T04:40:19.000Z" + }, + "end": { + "$date": "2021-10-04T04:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8784b9b7-7192-4b96-b2ca-dd4683ac13cf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T19:27:39.000Z" + }, + "end": { + "$date": "2021-10-04T19:49:26.000Z" + }, + "events": [ + { + "uuid": "059a1228-10d3-4ab1-91ac-c0e2ef3ba42e", + "start": { + "$date": "2021-10-04T19:27:39.000Z" + }, + "end": { + "$date": "2021-10-04T19:49:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b37c54f4-ecb1-4776-837d-af701a404faf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-04T19:38:31.000Z" + }, + "end": { + "$date": "2021-10-04T20:03:51.000Z" + }, + "events": [ + { + "uuid": "b9923f2d-2b88-4433-b3b6-f08c669cc2b7", + "start": { + "$date": "2021-10-04T19:38:31.000Z" + }, + "end": { + "$date": "2021-10-04T20:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ad6fb33-7dfe-4d97-b2a8-a5d3e8a09fbf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-04T19:40:29.000Z" + }, + "end": { + "$date": "2021-10-04T20:01:04.000Z" + }, + "events": [ + { + "uuid": "df7b2059-48f6-4441-8e86-da9af7583fbb", + "start": { + "$date": "2021-10-04T19:40:29.000Z" + }, + "end": { + "$date": "2021-10-04T20:01:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2be66f88-20fa-4bfd-a989-c6bfa9cdd2fc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T19:49:30.000Z" + }, + "end": { + "$date": "2021-10-04T19:51:06.000Z" + }, + "events": [ + { + "uuid": "f4daceaa-7a91-4947-8153-5443b7a1b4a3", + "start": { + "$date": "2021-10-04T19:49:30.000Z" + }, + "end": { + "$date": "2021-10-04T19:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48840b18-2a1c-428f-8f8d-783f85104294", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-04T20:16:22.000Z" + }, + "end": { + "$date": "2021-10-04T20:27:22.000Z" + }, + "events": [ + { + "uuid": "00f7d580-4104-4e06-8bb3-25129a8edf94", + "start": { + "$date": "2021-10-04T20:16:22.000Z" + }, + "end": { + "$date": "2021-10-04T20:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02773a11-e5ec-463f-8885-f8d05f2a08e4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-04T20:17:30.000Z" + }, + "end": { + "$date": "2021-10-04T20:27:30.000Z" + }, + "events": [ + { + "uuid": "633569ea-695f-4cb2-a5ef-c1ec38830ccb", + "start": { + "$date": "2021-10-04T20:17:30.000Z" + }, + "end": { + "$date": "2021-10-04T20:27:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fa68d03-4ae7-4aac-a873-97b7aba3be07", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T20:14:41.000Z" + }, + "end": { + "$date": "2021-10-04T20:27:26.000Z" + }, + "events": [ + { + "uuid": "9b9e2e99-7ba5-46c5-8197-6527a6c30eb2", + "start": { + "$date": "2021-10-04T20:14:41.000Z" + }, + "end": { + "$date": "2021-10-04T20:27:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5ba3e6c-e4bd-4dc0-8848-e80c6267a9d2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T20:32:37.000Z" + }, + "end": { + "$date": "2021-10-04T20:45:58.000Z" + }, + "events": [ + { + "uuid": "147254a2-3140-4c9d-9b1a-9a59335058b8", + "start": { + "$date": "2021-10-04T20:32:37.000Z" + }, + "end": { + "$date": "2021-10-04T20:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75bb7d23-fdfb-4f0b-97fb-b421f1f7f95f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T20:47:43.000Z" + }, + "end": { + "$date": "2021-10-04T21:03:05.000Z" + }, + "events": [ + { + "uuid": "a77c4313-2709-49df-912a-ef5a261fc005", + "start": { + "$date": "2021-10-04T20:47:43.000Z" + }, + "end": { + "$date": "2021-10-04T21:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3658308d-17b1-47df-9bc0-b108dc601577", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T21:08:01.000Z" + }, + "end": { + "$date": "2021-10-04T21:26:31.000Z" + }, + "events": [ + { + "uuid": "2fb43e20-8827-41e6-9ecd-6b862f869670", + "start": { + "$date": "2021-10-04T21:08:01.000Z" + }, + "end": { + "$date": "2021-10-04T21:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc90db60-93dc-4e42-a1c2-846c8b64aff1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T21:29:41.000Z" + }, + "end": { + "$date": "2021-10-04T21:59:45.000Z" + }, + "events": [ + { + "uuid": "56544191-0752-4a95-ad11-fc6a51fd3afc", + "start": { + "$date": "2021-10-04T21:29:41.000Z" + }, + "end": { + "$date": "2021-10-04T21:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41a4ddb1-a047-4a8b-85ca-1b28bac03caf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T22:02:05.000Z" + }, + "end": { + "$date": "2021-10-04T22:14:26.000Z" + }, + "events": [ + { + "uuid": "2af03628-796e-4ea6-881c-ef068149974f", + "start": { + "$date": "2021-10-04T22:02:05.000Z" + }, + "end": { + "$date": "2021-10-04T22:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd055715-a3d1-48d2-a8a2-25348bd70235", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T22:16:32.000Z" + }, + "end": { + "$date": "2021-10-04T22:44:20.000Z" + }, + "events": [ + { + "uuid": "e34d9971-9de1-4946-bc59-51feb4878176", + "start": { + "$date": "2021-10-04T22:16:32.000Z" + }, + "end": { + "$date": "2021-10-04T22:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eda747f-c664-4293-93f0-53dfc32c95e4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T23:15:29.000Z" + }, + "end": { + "$date": "2021-10-04T23:31:36.000Z" + }, + "events": [ + { + "uuid": "193648d5-3047-4ae9-a062-c145722d9144", + "start": { + "$date": "2021-10-04T23:15:29.000Z" + }, + "end": { + "$date": "2021-10-04T23:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14af6bb9-0cbd-4cf4-944d-276a1bc215c5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T23:34:12.000Z" + }, + "end": { + "$date": "2021-10-04T23:50:22.000Z" + }, + "events": [ + { + "uuid": "91c013d2-319c-4252-8927-43cf5806317f", + "start": { + "$date": "2021-10-04T23:34:12.000Z" + }, + "end": { + "$date": "2021-10-04T23:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "612c6482-2b02-4283-a27b-d58eee875a99", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-04T23:53:34.000Z" + }, + "end": { + "$date": "2021-10-05T00:15:23.000Z" + }, + "events": [ + { + "uuid": "7a7b406b-3262-497f-b0ff-f3b5b3f2fd66", + "start": { + "$date": "2021-10-04T23:53:34.000Z" + }, + "end": { + "$date": "2021-10-05T00:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "784ba24b-ab04-45f1-9db6-646c6a03f64f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-05T00:23:57.000Z" + }, + "end": { + "$date": "2021-10-05T04:06:17.000Z" + }, + "events": [ + { + "uuid": "1d468ae2-129f-42d6-a388-1daad30612c1", + "start": { + "$date": "2021-10-05T00:23:57.000Z" + }, + "end": { + "$date": "2021-10-05T01:22:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "af05d6c2-1bb5-42d7-9963-c84c4c9400da", + "start": { + "$date": "2021-10-05T01:22:57.000Z" + }, + "end": { + "$date": "2021-10-05T01:27:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e03c3343-b291-4b2a-9638-ab39e557291e", + "start": { + "$date": "2021-10-05T01:27:57.000Z" + }, + "end": { + "$date": "2021-10-05T04:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "66d2ec8e-dab2-458b-9c5c-931b3c45998f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-05T00:54:46.000Z" + }, + "end": { + "$date": "2021-10-05T02:14:15.000Z" + }, + "events": [ + { + "uuid": "3f2f4d75-e653-4079-b3df-597aa20f2a6b", + "start": { + "$date": "2021-10-05T00:54:46.000Z" + }, + "end": { + "$date": "2021-10-05T02:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb2c0464-5b35-41f4-948b-b940e832d06b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T02:03:29.000Z" + }, + "end": { + "$date": "2021-10-05T02:16:45.000Z" + }, + "events": [ + { + "uuid": "e9cb01fa-520e-4019-a3f6-f1a5301f8e55", + "start": { + "$date": "2021-10-05T02:03:29.000Z" + }, + "end": { + "$date": "2021-10-05T02:16:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43a9b432-d984-4901-b408-18efde684b30", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T02:20:10.000Z" + }, + "end": { + "$date": "2021-10-05T02:39:30.000Z" + }, + "events": [ + { + "uuid": "1564e857-272e-41aa-90f9-68e43901df35", + "start": { + "$date": "2021-10-05T02:20:10.000Z" + }, + "end": { + "$date": "2021-10-05T02:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eec16102-a772-46c4-a1e9-224c33ee0279", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-05T02:31:43.000Z" + }, + "end": { + "$date": "2021-10-05T04:16:44.000Z" + }, + "events": [ + { + "uuid": "c846491b-f490-45d2-b4aa-4cf7c61dbd0f", + "start": { + "$date": "2021-10-05T02:31:43.000Z" + }, + "end": { + "$date": "2021-10-05T04:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4eccf55-bf23-4b32-b122-a4e753385637", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-05T02:43:08.000Z" + }, + "end": { + "$date": "2021-10-05T03:19:21.000Z" + }, + "events": [ + { + "uuid": "e4825b77-e0ed-4d50-ab61-c038a99f7c6d", + "start": { + "$date": "2021-10-05T02:43:08.000Z" + }, + "end": { + "$date": "2021-10-05T03:19:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea744a9f-7934-4a04-8f52-c540d083bc04", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T03:10:23.000Z" + }, + "end": { + "$date": "2021-10-05T03:30:59.000Z" + }, + "events": [ + { + "uuid": "1d728b57-e877-45b6-a0a4-a1a5db5fde0e", + "start": { + "$date": "2021-10-05T03:10:23.000Z" + }, + "end": { + "$date": "2021-10-05T03:30:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "115c3b2e-3433-4cca-8510-fc141a84452e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-05T03:01:43.000Z" + }, + "end": { + "$date": "2021-10-05T04:15:49.000Z" + }, + "events": [ + { + "uuid": "820302ed-33fa-404c-9bba-cb88be3635eb", + "start": { + "$date": "2021-10-05T03:01:43.000Z" + }, + "end": { + "$date": "2021-10-05T04:15:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b08d7d1-4b40-40e3-b1c3-2b5a5870dc8d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-05T03:10:25.000Z" + }, + "end": { + "$date": "2021-10-05T03:25:47.000Z" + }, + "events": [ + { + "uuid": "adffd0e0-eb6f-4842-8da0-050c917cffba", + "start": { + "$date": "2021-10-05T03:10:25.000Z" + }, + "end": { + "$date": "2021-10-05T03:25:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3d567ea-50cf-4a4c-bd95-9acfcd506d14", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-05T03:27:48.000Z" + }, + "end": { + "$date": "2021-10-05T03:56:25.000Z" + }, + "events": [ + { + "uuid": "1ef26fa2-9614-486c-87b2-0e2d0a56a146", + "start": { + "$date": "2021-10-05T03:27:48.000Z" + }, + "end": { + "$date": "2021-10-05T03:56:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fe2bb774-cba2-4422-8f76-d6dffdce0895", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-05T03:41:23.000Z" + }, + "end": { + "$date": "2021-10-05T04:30:45.000Z" + }, + "events": [ + { + "uuid": "9dc10f18-5928-44ce-8792-a144dbde3177", + "start": { + "$date": "2021-10-05T03:41:23.000Z" + }, + "end": { + "$date": "2021-10-05T04:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c77d207-6c96-43be-b98a-824bc82213f8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-05T03:48:05.000Z" + }, + "end": { + "$date": "2021-10-05T06:32:10.000Z" + }, + "events": [ + { + "uuid": "c33f6b7f-1d5a-4ab1-8db6-7c5213606909", + "start": { + "$date": "2021-10-05T03:48:05.000Z" + }, + "end": { + "$date": "2021-10-05T06:32:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "421c90ab-44c2-4ea8-838c-ca0956088976", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-05T03:51:42.000Z" + }, + "end": { + "$date": "2021-10-05T05:16:00.000Z" + }, + "events": [ + { + "uuid": "7cea0d29-b327-403e-9b01-5906ff54cb8a", + "start": { + "$date": "2021-10-05T03:51:42.000Z" + }, + "end": { + "$date": "2021-10-05T05:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3aadbeb5-58c9-45ca-b38a-219f4a60d776", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-05T03:56:35.000Z" + }, + "end": { + "$date": "2021-10-05T06:26:53.000Z" + }, + "events": [ + { + "uuid": "e3b70fc2-9087-4f39-8c18-468e7d443283", + "start": { + "$date": "2021-10-05T03:56:35.000Z" + }, + "end": { + "$date": "2021-10-05T06:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4204ca52-491a-4860-a0f4-ed5b540c101e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-05T04:01:30.000Z" + }, + "end": { + "$date": "2021-10-05T04:08:50.000Z" + }, + "events": [ + { + "uuid": "c65feedd-1420-42cb-9892-2f5582eb015a", + "start": { + "$date": "2021-10-05T04:01:30.000Z" + }, + "end": { + "$date": "2021-10-05T04:08:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "03a004f4-2782-4004-a1e6-e7bb0e1ae041", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-05T04:16:03.000Z" + }, + "end": { + "$date": "2021-10-05T05:31:51.000Z" + }, + "events": [ + { + "uuid": "19b50a2d-c40c-44a3-8e27-f3ead5485094", + "start": { + "$date": "2021-10-05T04:16:03.000Z" + }, + "end": { + "$date": "2021-10-05T05:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "67bd2f5c-d35a-4bcc-bf1a-e9e5860ea313", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-05T04:37:29.000Z" + }, + "end": { + "$date": "2021-10-05T06:00:43.000Z" + }, + "events": [ + { + "uuid": "0a178650-8d4a-46f0-9e4b-f665015c76fd", + "start": { + "$date": "2021-10-05T04:37:29.000Z" + }, + "end": { + "$date": "2021-10-05T06:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c8e0338e-6a3e-42d1-bb7b-a334af8c35f4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-05T05:39:32.000Z" + }, + "end": { + "$date": "2021-10-05T06:00:33.000Z" + }, + "events": [ + { + "uuid": "f30bc128-b96d-470a-bdee-8e37ebd4d68c", + "start": { + "$date": "2021-10-05T05:39:32.000Z" + }, + "end": { + "$date": "2021-10-05T06:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d09c8fe-8511-4e9c-a554-58055b4839ee", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-05T06:05:04.000Z" + }, + "end": { + "$date": "2021-10-05T06:22:59.000Z" + }, + "events": [ + { + "uuid": "12f41f0e-56ff-40e1-a6e1-af5946e6688f", + "start": { + "$date": "2021-10-05T06:05:04.000Z" + }, + "end": { + "$date": "2021-10-05T06:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "235ac2b6-c9d2-49ac-910d-cc052f100500", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-05T06:31:18.000Z" + }, + "end": { + "$date": "2021-10-05T06:42:53.000Z" + }, + "events": [ + { + "uuid": "d88ab206-fbc4-4144-82c8-17f28da9d5a4", + "start": { + "$date": "2021-10-05T06:31:18.000Z" + }, + "end": { + "$date": "2021-10-05T06:42:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "afa305e8-b28c-4a97-88cf-34dc9fe94818", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-05T06:17:13.000Z" + }, + "end": { + "$date": "2021-10-05T07:11:27.000Z" + }, + "events": [ + { + "uuid": "49299ed5-d2f4-4e91-b74e-5921dfb5b634", + "start": { + "$date": "2021-10-05T06:17:13.000Z" + }, + "end": { + "$date": "2021-10-05T07:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da6b51e4-9f90-4914-801d-c26e0d3f49d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-05T06:31:08.000Z" + }, + "end": { + "$date": "2021-10-05T06:42:49.000Z" + }, + "events": [ + { + "uuid": "fe0ab59b-b3bf-4046-b3d9-9ab47b3b15ba", + "start": { + "$date": "2021-10-05T06:31:08.000Z" + }, + "end": { + "$date": "2021-10-05T06:42:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52da77b4-fc4a-4991-8c46-cbeec68941b1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-05T06:31:04.000Z" + }, + "end": { + "$date": "2021-10-05T06:42:50.000Z" + }, + "events": [ + { + "uuid": "129990d4-fcde-4f1b-8ea0-4aa22b800085", + "start": { + "$date": "2021-10-05T06:31:04.000Z" + }, + "end": { + "$date": "2021-10-05T06:42:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7140fc86-6409-4786-9078-3d0b3ab71c49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-05T06:46:28.000Z" + }, + "end": { + "$date": "2021-10-05T07:04:17.000Z" + }, + "events": [ + { + "uuid": "aed6aa7b-add4-4243-9f70-3d9fed41497b", + "start": { + "$date": "2021-10-05T06:46:28.000Z" + }, + "end": { + "$date": "2021-10-05T07:04:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33b533b9-eeb9-4a79-8e27-4471be40b183", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-05T06:45:24.000Z" + }, + "end": { + "$date": "2021-10-05T07:04:11.000Z" + }, + "events": [ + { + "uuid": "c6f54c52-ad2a-47b3-bd56-8e6b7eb3bf4e", + "start": { + "$date": "2021-10-05T06:45:24.000Z" + }, + "end": { + "$date": "2021-10-05T07:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b79b38e-02f4-4758-8533-4fb1089ec08c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-05T06:45:25.000Z" + }, + "end": { + "$date": "2021-10-05T07:04:10.000Z" + }, + "events": [ + { + "uuid": "d1f1616a-acdb-41f2-bc82-434544462124", + "start": { + "$date": "2021-10-05T06:45:25.000Z" + }, + "end": { + "$date": "2021-10-05T07:04:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5cef4dc2-7fb7-4148-844e-b57ee5dd293d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-05T07:06:49.000Z" + }, + "end": { + "$date": "2021-10-05T07:23:00.000Z" + }, + "events": [ + { + "uuid": "0a5ebc44-b777-4d7d-b8c4-37f790088a3b", + "start": { + "$date": "2021-10-05T07:06:49.000Z" + }, + "end": { + "$date": "2021-10-05T07:23:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb4bd67d-93eb-4170-b643-9e926ed6341f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-05T07:06:50.000Z" + }, + "end": { + "$date": "2021-10-05T07:22:56.000Z" + }, + "events": [ + { + "uuid": "748c44a2-5a22-49fc-87ae-6443fc12fd08", + "start": { + "$date": "2021-10-05T07:06:50.000Z" + }, + "end": { + "$date": "2021-10-05T07:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9ad08aa-6561-41ea-99a1-c45ceba61a18", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-05T07:06:50.000Z" + }, + "end": { + "$date": "2021-10-05T07:22:55.000Z" + }, + "events": [ + { + "uuid": "f797be41-3a53-4ff0-a4b5-a8508a86c829", + "start": { + "$date": "2021-10-05T07:06:50.000Z" + }, + "end": { + "$date": "2021-10-05T07:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1055afda-904f-455e-a383-9865cbecf35d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-05T07:26:40.000Z" + }, + "end": { + "$date": "2021-10-05T07:48:51.000Z" + }, + "events": [ + { + "uuid": "a3251d17-d162-4a65-9b7c-9e820d1e3464", + "start": { + "$date": "2021-10-05T07:26:40.000Z" + }, + "end": { + "$date": "2021-10-05T07:48:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6aae475-2961-4672-bb2c-3cd214d378c2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-05T07:26:35.000Z" + }, + "end": { + "$date": "2021-10-05T07:48:57.000Z" + }, + "events": [ + { + "uuid": "0b42e10b-fc4e-469f-aeaf-62c488e27c90", + "start": { + "$date": "2021-10-05T07:26:35.000Z" + }, + "end": { + "$date": "2021-10-05T07:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4727d57f-7c8f-44b6-9666-3485d622d7b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-05T07:26:36.000Z" + }, + "end": { + "$date": "2021-10-05T07:48:42.000Z" + }, + "events": [ + { + "uuid": "d76d8653-fe99-45ac-964d-dbadbb6436c7", + "start": { + "$date": "2021-10-05T07:26:36.000Z" + }, + "end": { + "$date": "2021-10-05T07:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "68642519-c5af-4096-93ec-d7e3e18a5e66", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-10-05T14:10:05.000Z" + }, + "end": { + "$date": "2021-10-05T14:19:49.000Z" + }, + "events": [ + { + "uuid": "fb4e2815-cf19-4a5d-9952-b8ba025a46e9", + "start": { + "$date": "2021-10-05T14:10:05.000Z" + }, + "end": { + "$date": "2021-10-05T14:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17abbe2b-10b8-4be0-b5ac-623994919973", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T15:08:41.000Z" + }, + "end": { + "$date": "2021-10-05T15:29:15.000Z" + }, + "events": [ + { + "uuid": "0dfe6499-da60-45ef-9c26-e368a092acf3", + "start": { + "$date": "2021-10-05T15:08:41.000Z" + }, + "end": { + "$date": "2021-10-05T15:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbc73b57-72eb-469c-8143-444ebbfa6126", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T15:29:33.000Z" + }, + "end": { + "$date": "2021-10-05T17:53:46.000Z" + }, + "events": [ + { + "uuid": "ef115ee6-384c-42f1-a835-210aa50e738e", + "start": { + "$date": "2021-10-05T15:29:33.000Z" + }, + "end": { + "$date": "2021-10-05T17:20:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3bc434d9-26a0-48cb-a327-6e40693b33c2", + "start": { + "$date": "2021-10-05T17:20:33.000Z" + }, + "end": { + "$date": "2021-10-05T17:34:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a515ff44-60e3-455a-81fc-4980432bce92", + "start": { + "$date": "2021-10-05T17:34:33.000Z" + }, + "end": { + "$date": "2021-10-05T17:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a178c4c5-f378-4dba-a5a6-dcef5dd0ff08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-05T19:21:08.000Z" + }, + "end": { + "$date": "2021-10-05T20:17:46.000Z" + }, + "events": [ + { + "uuid": "c28b391b-647f-47b7-a3c9-ca74c830648a", + "start": { + "$date": "2021-10-05T19:21:08.000Z" + }, + "end": { + "$date": "2021-10-05T20:17:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4632c0eb-3687-42b9-a610-ded908d5f1bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T19:27:09.000Z" + }, + "end": { + "$date": "2021-10-05T19:38:28.000Z" + }, + "events": [ + { + "uuid": "3cf159f0-5800-4d80-ab6e-91b32269035b", + "start": { + "$date": "2021-10-05T19:27:09.000Z" + }, + "end": { + "$date": "2021-10-05T19:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2f4fb42-f1b3-4149-8c2b-008cf0b73266", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-05T19:42:20.000Z" + }, + "end": { + "$date": "2021-10-05T20:00:10.000Z" + }, + "events": [ + { + "uuid": "80a7668a-ec64-4de6-baf4-a3deff180655", + "start": { + "$date": "2021-10-05T19:42:20.000Z" + }, + "end": { + "$date": "2021-10-05T20:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "caa199da-bb3a-497d-bab9-6507a43ead98", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-05T21:48:32.000Z" + }, + "end": { + "$date": "2021-10-05T21:51:03.000Z" + }, + "events": [ + { + "uuid": "7e2adb25-a497-4ca3-a3e3-f5f47a78a5c6", + "start": { + "$date": "2021-10-05T21:48:32.000Z" + }, + "end": { + "$date": "2021-10-05T21:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "6cb81bf6-c378-43a3-b0d4-7c0b51eb3d0a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-05T22:45:10.000Z" + }, + "end": { + "$date": "2021-10-06T00:32:40.000Z" + }, + "events": [ + { + "uuid": "f42eaeeb-1382-4f37-9936-a05398833d37", + "start": { + "$date": "2021-10-05T22:45:10.000Z" + }, + "end": { + "$date": "2021-10-06T00:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "3812e27e-5b91-4192-82fb-b4c3dec6315e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-05T23:12:45.000Z" + }, + "end": { + "$date": "2021-10-06T00:52:43.000Z" + }, + "events": [ + { + "uuid": "7e46e680-e0f4-4fd5-8036-4f11b656d67f", + "start": { + "$date": "2021-10-05T23:12:45.000Z" + }, + "end": { + "$date": "2021-10-06T00:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c6f67f6a-76b4-44ab-8442-45a44509f759", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-06T00:05:05.000Z" + }, + "end": { + "$date": "2021-10-06T05:08:30.000Z" + }, + "events": [ + { + "uuid": "20ceda84-b62b-40a6-84c3-77829853a92f", + "start": { + "$date": "2021-10-06T00:05:05.000Z" + }, + "end": { + "$date": "2021-10-06T05:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "fbb04211-c475-48a9-8d78-bb69d7388aa4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-06T00:51:17.000Z" + }, + "end": { + "$date": "2021-10-06T00:56:18.000Z" + }, + "events": [ + { + "uuid": "2067359c-4556-4dea-b96b-6db6d1037950", + "start": { + "$date": "2021-10-06T00:51:17.000Z" + }, + "end": { + "$date": "2021-10-06T00:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe28db3a-c584-40e7-9964-8e9d93edb516", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-06T01:26:11.000Z" + }, + "end": { + "$date": "2021-10-06T01:45:41.000Z" + }, + "events": [ + { + "uuid": "ec76d655-d220-4d2c-8bd5-9eb119264aae", + "start": { + "$date": "2021-10-06T01:26:11.000Z" + }, + "end": { + "$date": "2021-10-06T01:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "f768c387-5087-4933-85d2-c075de788558", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-06T01:52:24.000Z" + }, + "end": { + "$date": "2021-10-06T02:04:56.000Z" + }, + "events": [ + { + "uuid": "067ec883-2b31-490c-bbf5-8a4b028099f4", + "start": { + "$date": "2021-10-06T01:52:24.000Z" + }, + "end": { + "$date": "2021-10-06T02:04:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "abc4f2da-14c5-4f5e-b9af-1c5ffc63d24b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-06T02:33:52.000Z" + }, + "end": { + "$date": "2021-10-06T04:15:20.000Z" + }, + "events": [ + { + "uuid": "87a0d7d8-ef92-4911-aec6-77236f79837d", + "start": { + "$date": "2021-10-06T02:33:52.000Z" + }, + "end": { + "$date": "2021-10-06T04:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "390bfc14-0f5b-4c2a-90b2-5f62133d0de1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T02:36:54.000Z" + }, + "end": { + "$date": "2021-10-06T03:00:01.000Z" + }, + "events": [ + { + "uuid": "e1418be9-2ba9-4d7c-87d0-cede29f71c82", + "start": { + "$date": "2021-10-06T02:36:54.000Z" + }, + "end": { + "$date": "2021-10-06T03:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "04d287e2-c06a-4559-b1f5-4ceb3d519437", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-06T02:34:47.000Z" + }, + "end": { + "$date": "2021-10-06T04:31:16.000Z" + }, + "events": [ + { + "uuid": "370ab014-6155-4b1b-a2f4-a834ddbd3b72", + "start": { + "$date": "2021-10-06T02:34:47.000Z" + }, + "end": { + "$date": "2021-10-06T04:31:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "e5e0d123-039c-4b92-aaf9-db40cb548c8a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-06T02:35:48.000Z" + }, + "end": { + "$date": "2021-10-06T04:28:21.000Z" + }, + "events": [ + { + "uuid": "3b7f9e60-5369-45b5-af8e-3355083eba00", + "start": { + "$date": "2021-10-06T02:35:48.000Z" + }, + "end": { + "$date": "2021-10-06T04:28:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d355231-4673-4bc6-bebd-4291bde76048", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T03:02:12.000Z" + }, + "end": { + "$date": "2021-10-06T03:20:17.000Z" + }, + "events": [ + { + "uuid": "3524bb79-a11d-417c-8c69-4d2df891cd9a", + "start": { + "$date": "2021-10-06T03:02:12.000Z" + }, + "end": { + "$date": "2021-10-06T03:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2dbb34f-5b67-4716-9764-36f5b8fb4350", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T03:22:07.000Z" + }, + "end": { + "$date": "2021-10-06T03:46:12.000Z" + }, + "events": [ + { + "uuid": "4970f6dc-c49d-4841-b516-c784e695b5ea", + "start": { + "$date": "2021-10-06T03:22:07.000Z" + }, + "end": { + "$date": "2021-10-06T03:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cb8b026-64b7-4ab0-bcfa-c3424a05a495", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T03:55:53.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:53.000Z" + }, + "events": [ + { + "uuid": "1fedae12-d8be-4f6d-ba7a-bae3ad4df3ce", + "start": { + "$date": "2021-10-06T03:55:53.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58f42da3-9e7d-422a-a189-8f1641dfd190", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-06T03:56:12.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:55.000Z" + }, + "events": [ + { + "uuid": "d1205ff0-97c3-40a3-af1a-381290db7b19", + "start": { + "$date": "2021-10-06T03:56:12.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45847b95-e365-4b0f-8a95-d49ef18cf403", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-06T03:56:48.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:48.000Z" + }, + "events": [ + { + "uuid": "75d62c7a-1ee4-4249-b2d2-2caa74cd0170", + "start": { + "$date": "2021-10-06T03:56:48.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f715cbeb-a4d7-4f95-8412-5dd29ff47d32", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-06T03:55:52.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:52.000Z" + }, + "events": [ + { + "uuid": "ddfd0a3f-7158-485e-b6e3-b3f9849a1b95", + "start": { + "$date": "2021-10-06T03:55:52.000Z" + }, + "end": { + "$date": "2021-10-06T04:16:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ada089c1-0acf-4041-9990-eb2635d7fbb4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T04:19:44.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:14.000Z" + }, + "events": [ + { + "uuid": "c3a23d19-d46f-4d91-82dd-1a6ee1bedab8", + "start": { + "$date": "2021-10-06T04:19:44.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31508bcb-a25e-4acd-b8bf-1d86c5c2612e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-06T04:19:09.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:14.000Z" + }, + "events": [ + { + "uuid": "322bf074-3ec5-4eed-9882-ba5baa81b1c5", + "start": { + "$date": "2021-10-06T04:19:09.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5daeabe-ff24-44c0-9faa-0ab93b03ad7d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-06T04:20:17.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:12.000Z" + }, + "events": [ + { + "uuid": "95cdf245-f5fc-4e1d-a5b9-83ee40915863", + "start": { + "$date": "2021-10-06T04:20:17.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b7176db-c0a9-44c7-a7fc-5cf9727f262f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-06T04:19:07.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:13.000Z" + }, + "events": [ + { + "uuid": "25fbaf4b-7289-4b07-b6b5-827986503da3", + "start": { + "$date": "2021-10-06T04:19:07.000Z" + }, + "end": { + "$date": "2021-10-06T04:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "205d7618-60aa-4f9d-8a8d-f7c8e0056a55", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T04:45:04.000Z" + }, + "end": { + "$date": "2021-10-06T05:06:59.000Z" + }, + "events": [ + { + "uuid": "2638eadc-b188-4bf5-8cc3-e97f7ebbd885", + "start": { + "$date": "2021-10-06T04:45:04.000Z" + }, + "end": { + "$date": "2021-10-06T05:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a7d99f4-7084-4a85-881d-30611d7fd545", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-06T04:40:47.000Z" + }, + "end": { + "$date": "2021-10-06T04:42:13.000Z" + }, + "events": [ + { + "uuid": "5a5844fc-464d-4aa8-babf-c5b4e0c7cad7", + "start": { + "$date": "2021-10-06T04:40:47.000Z" + }, + "end": { + "$date": "2021-10-06T04:42:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f855f62-3ba6-4458-8123-c260af0f6f4f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-06T04:40:47.000Z" + }, + "end": { + "$date": "2021-10-06T04:42:12.000Z" + }, + "events": [ + { + "uuid": "e3661186-d590-4faa-9caf-db7cf9a98e15", + "start": { + "$date": "2021-10-06T04:40:47.000Z" + }, + "end": { + "$date": "2021-10-06T04:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c04e7ddf-da78-4e38-a909-3023391b62a7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-06T04:45:39.000Z" + }, + "end": { + "$date": "2021-10-06T05:06:54.000Z" + }, + "events": [ + { + "uuid": "cb1bd785-670c-4134-ae17-37e0b6b41880", + "start": { + "$date": "2021-10-06T04:45:39.000Z" + }, + "end": { + "$date": "2021-10-06T05:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f348eb4f-abaa-497e-992d-abbf63a02be9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-06T04:45:34.000Z" + }, + "end": { + "$date": "2021-10-06T05:07:03.000Z" + }, + "events": [ + { + "uuid": "2ebf304f-6038-4e40-8f0a-7128eb5c5aed", + "start": { + "$date": "2021-10-06T04:45:34.000Z" + }, + "end": { + "$date": "2021-10-06T05:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fb3d70c-c25f-47c1-a5b1-e496f9361285", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-06T04:45:28.000Z" + }, + "end": { + "$date": "2021-10-06T05:06:54.000Z" + }, + "events": [ + { + "uuid": "199c33ef-4ac7-44b7-a343-6ff5a19f0a32", + "start": { + "$date": "2021-10-06T04:45:28.000Z" + }, + "end": { + "$date": "2021-10-06T05:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fc75663-d361-4525-a7ec-8b8f6a9f49f3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T05:10:05.000Z" + }, + "end": { + "$date": "2021-10-06T05:28:26.000Z" + }, + "events": [ + { + "uuid": "2f1a39c8-95d5-4630-a9e0-de308dc77fb6", + "start": { + "$date": "2021-10-06T05:10:05.000Z" + }, + "end": { + "$date": "2021-10-06T05:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c78e0ed7-58a0-46ca-9eef-0cca57f61a68", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-06T05:10:24.000Z" + }, + "end": { + "$date": "2021-10-06T05:28:25.000Z" + }, + "events": [ + { + "uuid": "3f6efa70-e8ec-4b96-944a-97cf69b32e94", + "start": { + "$date": "2021-10-06T05:10:24.000Z" + }, + "end": { + "$date": "2021-10-06T05:28:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31ee90ba-6939-4688-b51a-7036299f8ef2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-06T05:11:26.000Z" + }, + "end": { + "$date": "2021-10-06T05:28:33.000Z" + }, + "events": [ + { + "uuid": "b813b7b3-4342-4747-bdf0-88b71167d532", + "start": { + "$date": "2021-10-06T05:11:26.000Z" + }, + "end": { + "$date": "2021-10-06T05:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f0869be8-d5b9-4aa3-92d0-f6f55a922954", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-06T05:16:51.000Z" + }, + "end": { + "$date": "2021-10-06T06:54:00.000Z" + }, + "events": [ + { + "uuid": "5d1a0790-9397-4f0b-9a21-0583f3a892dd", + "start": { + "$date": "2021-10-06T05:16:51.000Z" + }, + "end": { + "$date": "2021-10-06T05:17:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f96e3526-c0d0-47a9-aed9-70bc05ffa985", + "start": { + "$date": "2021-10-06T05:17:51.000Z" + }, + "end": { + "$date": "2021-10-06T05:36:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f338052-991c-4d4e-969c-c0d0444f8cee", + "start": { + "$date": "2021-10-06T05:36:51.000Z" + }, + "end": { + "$date": "2021-10-06T05:38:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb08e00f-e88c-44da-a4d6-427d50e7519a", + "start": { + "$date": "2021-10-06T05:38:51.000Z" + }, + "end": { + "$date": "2021-10-06T05:53:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20ab886e-3ce0-42c4-b57d-5a4f4c2da58d", + "start": { + "$date": "2021-10-06T05:53:51.000Z" + }, + "end": { + "$date": "2021-10-06T06:54:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a95a3f15-ec05-4ee4-b32c-331b8e84c5df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-06T05:31:13.000Z" + }, + "end": { + "$date": "2021-10-06T05:54:16.000Z" + }, + "events": [ + { + "uuid": "0273ee8e-0068-4b79-933a-0362d6da4c65", + "start": { + "$date": "2021-10-06T05:31:13.000Z" + }, + "end": { + "$date": "2021-10-06T05:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "40a6d42a-94fc-4399-90d0-55adf8d86340", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-06T06:05:32.000Z" + }, + "end": { + "$date": "2021-10-06T06:27:41.000Z" + }, + "events": [ + { + "uuid": "cbf550e4-d500-46a5-8eb1-021fa52c7458", + "start": { + "$date": "2021-10-06T06:05:32.000Z" + }, + "end": { + "$date": "2021-10-06T06:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5dfca912-1a9a-4bd5-8048-9191c1d76e38", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-06T06:51:48.000Z" + }, + "end": { + "$date": "2021-10-06T09:29:34.000Z" + }, + "events": [ + { + "uuid": "b67d0105-4150-45ad-8622-02055bd81c7a", + "start": { + "$date": "2021-10-06T06:51:48.000Z" + }, + "end": { + "$date": "2021-10-06T09:29:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "d10df43e-fa2f-4d44-910b-4a3d863fe059", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-06T06:54:29.000Z" + }, + "end": { + "$date": "2021-10-06T07:51:12.000Z" + }, + "events": [ + { + "uuid": "b036a3d0-3918-4de4-804f-cb33484077d8", + "start": { + "$date": "2021-10-06T06:54:29.000Z" + }, + "end": { + "$date": "2021-10-06T07:51:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81e67c59-f9a5-4525-a987-c3277ad0dcca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-06T15:59:06.000Z" + }, + "end": { + "$date": "2021-10-06T16:09:20.000Z" + }, + "events": [ + { + "uuid": "d0972dda-2ff8-42b8-a5c3-744d689b6d11", + "start": { + "$date": "2021-10-06T15:59:06.000Z" + }, + "end": { + "$date": "2021-10-06T16:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe183e2c-ec50-4149-88d2-e005992aee21", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-06T21:07:14.000Z" + }, + "end": { + "$date": "2021-10-06T21:22:07.000Z" + }, + "events": [ + { + "uuid": "b0cf08a5-2c57-4e3d-9da1-e41eb67b24ea", + "start": { + "$date": "2021-10-06T21:07:14.000Z" + }, + "end": { + "$date": "2021-10-06T21:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9c274fc-253e-4f0c-87a3-18ee0afddde0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-06T21:26:05.000Z" + }, + "end": { + "$date": "2021-10-06T21:46:21.000Z" + }, + "events": [ + { + "uuid": "77c749a4-6df5-4c60-9b4c-c12552c1353c", + "start": { + "$date": "2021-10-06T21:26:05.000Z" + }, + "end": { + "$date": "2021-10-06T21:46:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "33f906ad-a4db-430a-bedb-75969a7592f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-06T22:24:30.000Z" + }, + "end": { + "$date": "2021-10-06T22:30:10.000Z" + }, + "events": [ + { + "uuid": "7c74662a-c373-46e8-9747-158fe5ed9573", + "start": { + "$date": "2021-10-06T22:24:30.000Z" + }, + "end": { + "$date": "2021-10-06T22:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "9e5f49a6-1e6a-497e-aec9-a9451c09bc9a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-06T22:30:40.000Z" + }, + "end": { + "$date": "2021-10-06T23:37:06.000Z" + }, + "events": [ + { + "uuid": "0c5386a4-fdfe-4152-b470-8acd2fbeb256", + "start": { + "$date": "2021-10-06T22:30:40.000Z" + }, + "end": { + "$date": "2021-10-06T23:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d2c3d502-4970-486e-98e5-25bdb13c278e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-07T00:09:40.000Z" + }, + "end": { + "$date": "2021-10-07T01:12:48.000Z" + }, + "events": [ + { + "uuid": "707e9879-a0a7-4a9f-9af9-7fc4bee01992", + "start": { + "$date": "2021-10-07T00:09:40.000Z" + }, + "end": { + "$date": "2021-10-07T01:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "dcdf602d-ba5a-4b83-89b1-9f87b88b1881", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-07T00:14:13.000Z" + }, + "end": { + "$date": "2021-10-07T01:52:13.000Z" + }, + "events": [ + { + "uuid": "b7f5de2b-4c29-4ea3-85f7-f6de216904ec", + "start": { + "$date": "2021-10-07T00:14:13.000Z" + }, + "end": { + "$date": "2021-10-07T01:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e326ad4-d8ea-416b-b225-33311bd466cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T00:21:45.000Z" + }, + "end": { + "$date": "2021-10-07T00:35:52.000Z" + }, + "events": [ + { + "uuid": "a98b0553-4715-4e28-af1a-7956c88558ff", + "start": { + "$date": "2021-10-07T00:21:45.000Z" + }, + "end": { + "$date": "2021-10-07T00:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29e2487f-1650-48bc-b4d4-fbbdeeb77267", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T00:39:05.000Z" + }, + "end": { + "$date": "2021-10-07T00:57:09.000Z" + }, + "events": [ + { + "uuid": "d86cd6d2-b965-4e41-9d14-bd3ee8b099f6", + "start": { + "$date": "2021-10-07T00:39:05.000Z" + }, + "end": { + "$date": "2021-10-07T00:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1a765827-3d98-4bbd-9fb7-46d78181a00e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-07T00:40:17.000Z" + }, + "end": { + "$date": "2021-10-07T04:42:43.000Z" + }, + "events": [ + { + "uuid": "9089ff82-6fae-4032-9b08-40ec99bdfa7e", + "start": { + "$date": "2021-10-07T00:40:17.000Z" + }, + "end": { + "$date": "2021-10-07T04:42:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "355c4a88-688d-4f20-88dd-845b286f46be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T00:44:39.000Z" + }, + "end": { + "$date": "2021-10-07T03:30:57.000Z" + }, + "events": [ + { + "uuid": "6ae3b66c-a154-4608-a716-781669da1479", + "start": { + "$date": "2021-10-07T00:44:39.000Z" + }, + "end": { + "$date": "2021-10-07T03:30:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "1ef0dc0c-8272-47a8-aa01-b55fad437a27", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-07T01:52:49.000Z" + }, + "end": { + "$date": "2021-10-07T02:14:40.000Z" + }, + "events": [ + { + "uuid": "e4bfcea1-7f0c-4125-a034-8496fbb6954c", + "start": { + "$date": "2021-10-07T01:52:49.000Z" + }, + "end": { + "$date": "2021-10-07T02:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "10bd68ea-ede5-4545-9eb0-cd6cce6dd14a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-07T03:12:40.000Z" + }, + "end": { + "$date": "2021-10-07T03:27:56.000Z" + }, + "events": [ + { + "uuid": "4fb3893e-cd5e-47f7-8741-7fa3b1ace0f2", + "start": { + "$date": "2021-10-07T03:12:40.000Z" + }, + "end": { + "$date": "2021-10-07T03:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bec1dfb-1d7d-49e9-8723-034338b3eb29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T03:53:19.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:28.000Z" + }, + "events": [ + { + "uuid": "a7ecbf9e-7ab5-426e-928b-e6d98ee84238", + "start": { + "$date": "2021-10-07T03:53:19.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "ff69e501-3272-4bee-89f2-38cff2c810d2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T03:31:18.000Z" + }, + "end": { + "$date": "2021-10-07T03:44:23.000Z" + }, + "events": [ + { + "uuid": "2c4bfc28-8c27-47fd-acc4-f7d66e825d07", + "start": { + "$date": "2021-10-07T03:31:18.000Z" + }, + "end": { + "$date": "2021-10-07T03:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "624dcde2-dcbc-4f43-8bdf-a807be99b227", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T03:44:48.000Z" + }, + "end": { + "$date": "2021-10-07T03:55:13.000Z" + }, + "events": [ + { + "uuid": "8fdb0e89-85cb-4492-984a-0d60202bbfb4", + "start": { + "$date": "2021-10-07T03:44:48.000Z" + }, + "end": { + "$date": "2021-10-07T03:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c634530-25c0-424b-b598-6076734ece5a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-07T03:53:14.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:23.000Z" + }, + "events": [ + { + "uuid": "fc568918-10cb-434a-992f-66cd243b0179", + "start": { + "$date": "2021-10-07T03:53:14.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e9bb0d2-3cbf-4978-951d-f2fba7bde5d0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-07T03:52:50.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:33.000Z" + }, + "events": [ + { + "uuid": "7df9c57f-72e8-459b-a191-b36b274119d7", + "start": { + "$date": "2021-10-07T03:52:50.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b683edbc-a012-4f35-8466-09d31ccec5ed", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-07T03:53:18.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:31.000Z" + }, + "events": [ + { + "uuid": "98f5398e-2017-4592-b2c9-41bba8eb1356", + "start": { + "$date": "2021-10-07T03:53:18.000Z" + }, + "end": { + "$date": "2021-10-07T04:16:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "685c7223-b56f-49c2-8813-43acf7c69437", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T03:55:59.000Z" + }, + "end": { + "$date": "2021-10-07T03:57:03.000Z" + }, + "events": [ + { + "uuid": "ebabe779-3c46-4b76-adc3-68a0b360b725", + "start": { + "$date": "2021-10-07T03:55:59.000Z" + }, + "end": { + "$date": "2021-10-07T03:57:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "e314b081-1fc6-474e-939d-60ef82dcba4a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T03:58:44.000Z" + }, + "end": { + "$date": "2021-10-07T04:00:14.000Z" + }, + "events": [ + { + "uuid": "ecac211b-a03c-4012-957e-7c4a9774afa0", + "start": { + "$date": "2021-10-07T03:58:44.000Z" + }, + "end": { + "$date": "2021-10-07T04:00:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "d3e61755-0abf-4efa-97da-ab68a24d8d07", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T04:04:34.000Z" + }, + "end": { + "$date": "2021-10-07T04:12:15.000Z" + }, + "events": [ + { + "uuid": "9754dde7-d289-49ab-9383-5861a7bd1313", + "start": { + "$date": "2021-10-07T04:04:34.000Z" + }, + "end": { + "$date": "2021-10-07T04:12:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "8d2a24bf-8d32-4565-9347-f94f9f72296a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T04:12:40.000Z" + }, + "end": { + "$date": "2021-10-07T05:17:21.000Z" + }, + "events": [ + { + "uuid": "1c452cd4-2c5d-4c15-b8d8-1f307ec54405", + "start": { + "$date": "2021-10-07T04:12:40.000Z" + }, + "end": { + "$date": "2021-10-07T05:17:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca6368d4-23fe-4af2-b6cd-81bab297bd54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T04:21:09.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:08.000Z" + }, + "events": [ + { + "uuid": "e233d36f-6926-44e5-a916-b94aebe861de", + "start": { + "$date": "2021-10-07T04:21:09.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "908a8279-7307-4f7e-b33b-41d35a1dbdf6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-07T04:20:49.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:14.000Z" + }, + "events": [ + { + "uuid": "4d0079a0-d744-4111-aefe-126e5298f025", + "start": { + "$date": "2021-10-07T04:20:49.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7a878d5-19f3-4e82-aa7a-8771700dfdf1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-07T04:20:51.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:15.000Z" + }, + "events": [ + { + "uuid": "e7d32938-0e92-4311-9c0b-45aeb8cb11d7", + "start": { + "$date": "2021-10-07T04:20:51.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fde85b6-705b-4c2c-9d84-a0a9b8ed40c4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-07T04:21:04.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:09.000Z" + }, + "events": [ + { + "uuid": "d7d62784-5436-4cc7-9903-898064ef42e7", + "start": { + "$date": "2021-10-07T04:21:04.000Z" + }, + "end": { + "$date": "2021-10-07T04:37:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d02298ec-4d69-470f-84fa-70682f324f09", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T04:42:35.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:19.000Z" + }, + "events": [ + { + "uuid": "8d55a3f9-6193-4e50-bce4-d71079587730", + "start": { + "$date": "2021-10-07T04:42:35.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e90082bb-14e8-462f-9acc-823a6b40e5e6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-07T04:42:16.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:20.000Z" + }, + "events": [ + { + "uuid": "a1936cf7-a813-46e0-a893-6e54c41ef208", + "start": { + "$date": "2021-10-07T04:42:16.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d27e37c-858b-40dd-911e-0a436c4ea283", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-07T04:42:10.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:26.000Z" + }, + "events": [ + { + "uuid": "c746e4b6-e88a-4c53-ac44-394fe88437b1", + "start": { + "$date": "2021-10-07T04:42:10.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a535d14-76d3-438b-abd5-ebb238d763cf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-07T04:42:31.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:25.000Z" + }, + "events": [ + { + "uuid": "8e01c1b7-5164-4f66-a66c-93ac4ddd5829", + "start": { + "$date": "2021-10-07T04:42:31.000Z" + }, + "end": { + "$date": "2021-10-07T05:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "3ad8a1db-99e1-4af4-82b7-24fa646a4aa1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-07T05:17:51.000Z" + }, + "end": { + "$date": "2021-10-07T05:58:57.000Z" + }, + "events": [ + { + "uuid": "02a65996-4c5d-44e7-aae5-60dd04336093", + "start": { + "$date": "2021-10-07T05:17:51.000Z" + }, + "end": { + "$date": "2021-10-07T05:58:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a141ad31-a554-4433-8ff1-07614bec9b83", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-07T07:52:30.000Z" + }, + "end": { + "$date": "2021-10-07T07:53:40.000Z" + }, + "events": [ + { + "uuid": "0e4aef7b-5ade-4f91-86a3-1751c8af2675", + "start": { + "$date": "2021-10-07T07:52:30.000Z" + }, + "end": { + "$date": "2021-10-07T07:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "adfaf6e4-28d4-41d8-9f4b-cfa09d8c484b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-07T08:09:23.000Z" + }, + "end": { + "$date": "2021-10-07T09:49:34.000Z" + }, + "events": [ + { + "uuid": "3a121a3e-26f8-4121-9b2c-76980016ca38", + "start": { + "$date": "2021-10-07T08:09:23.000Z" + }, + "end": { + "$date": "2021-10-07T09:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "e532b9f2-9495-4436-8fee-3fd7408c4f33", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-07T18:55:05.000Z" + }, + "end": { + "$date": "2021-10-07T22:47:56.000Z" + }, + "events": [ + { + "uuid": "eefefa29-f643-4941-be68-b87bb7cac28e", + "start": { + "$date": "2021-10-07T18:55:05.000Z" + }, + "end": { + "$date": "2021-10-07T22:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aa763b0-216f-4dfa-b90d-ca8444fadbaf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T21:20:59.000Z" + }, + "end": { + "$date": "2021-10-07T21:32:14.000Z" + }, + "events": [ + { + "uuid": "72eaa0ef-530c-430e-96f2-84f05fbe2d8e", + "start": { + "$date": "2021-10-07T21:20:59.000Z" + }, + "end": { + "$date": "2021-10-07T21:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0992a251-3234-4da2-ba4b-203d93d4c006", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-07T21:36:40.000Z" + }, + "end": { + "$date": "2021-10-07T21:56:35.000Z" + }, + "events": [ + { + "uuid": "6e8ac608-085f-4614-905f-c89ea2c4dadf", + "start": { + "$date": "2021-10-07T21:36:40.000Z" + }, + "end": { + "$date": "2021-10-07T21:56:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "978c29a7-6a6c-4291-8375-4f869b2f5173", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-07T22:43:58.000Z" + }, + "end": { + "$date": "2021-10-07T23:58:17.000Z" + }, + "events": [ + { + "uuid": "1932338b-fb57-4d3b-8907-b33e9db20637", + "start": { + "$date": "2021-10-07T22:43:58.000Z" + }, + "end": { + "$date": "2021-10-07T23:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "9bde3b51-710c-4a2b-a33c-81dd91783009", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-07T22:47:57.000Z" + }, + "end": { + "$date": "2021-10-07T22:58:41.000Z" + }, + "events": [ + { + "uuid": "ee01fb3a-d40e-435b-b40f-58505aff40cc", + "start": { + "$date": "2021-10-07T22:47:57.000Z" + }, + "end": { + "$date": "2021-10-07T22:58:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c34b3fb8-c5db-4f68-9110-aa1344a797a1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-07T23:58:47.000Z" + }, + "end": { + "$date": "2021-10-08T00:08:07.000Z" + }, + "events": [ + { + "uuid": "ee3399ef-7d02-4af9-9901-0c04b6ec3284", + "start": { + "$date": "2021-10-07T23:58:47.000Z" + }, + "end": { + "$date": "2021-10-08T00:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "63f03977-7b40-434f-b5a3-233368a223dc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-08T00:23:53.000Z" + }, + "end": { + "$date": "2021-10-08T05:52:53.000Z" + }, + "events": [ + { + "uuid": "426d168e-5485-45bf-a8f0-2a636789afc6", + "start": { + "$date": "2021-10-08T00:23:53.000Z" + }, + "end": { + "$date": "2021-10-08T01:06:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4e0d3dc-b28d-4e39-a2f5-abe6e2317bd8", + "start": { + "$date": "2021-10-08T01:06:53.000Z" + }, + "end": { + "$date": "2021-10-08T01:30:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4f2807e-6d57-410e-b412-ac2b2f3d67f3", + "start": { + "$date": "2021-10-08T01:30:53.000Z" + }, + "end": { + "$date": "2021-10-08T05:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a9d5ad4-82fa-4268-9158-0c65a78dc1f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-08T00:34:41.000Z" + }, + "end": { + "$date": "2021-10-08T00:58:01.000Z" + }, + "events": [ + { + "uuid": "6e6c8819-3cf3-495e-b1c0-fb2ce3fe47ef", + "start": { + "$date": "2021-10-08T00:34:41.000Z" + }, + "end": { + "$date": "2021-10-08T00:58:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5ac29e2f-da52-43f1-9520-edfd7e522713", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-08T01:22:54.000Z" + }, + "end": { + "$date": "2021-10-08T05:30:02.000Z" + }, + "events": [ + { + "uuid": "099a688b-fe12-43aa-a974-ac76f1caf8cc", + "start": { + "$date": "2021-10-08T01:22:54.000Z" + }, + "end": { + "$date": "2021-10-08T05:30:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cf7876ae-08c9-47b7-8688-2ed40c0b8932", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-08T01:28:51.000Z" + }, + "end": { + "$date": "2021-10-08T03:53:07.000Z" + }, + "events": [ + { + "uuid": "f2523d8c-9c8b-4648-9ea8-97f5c485c318", + "start": { + "$date": "2021-10-08T01:28:51.000Z" + }, + "end": { + "$date": "2021-10-08T03:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "567a86a9-a956-4842-a806-ffb18c2a7cf1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-08T01:47:18.000Z" + }, + "end": { + "$date": "2021-10-08T02:24:14.000Z" + }, + "events": [ + { + "uuid": "61d28926-9e0d-4a24-9610-a87cb459ed4e", + "start": { + "$date": "2021-10-08T01:47:18.000Z" + }, + "end": { + "$date": "2021-10-08T02:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c1d097e9-c365-41a1-9034-f37ad3230e2e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-08T01:56:46.000Z" + }, + "end": { + "$date": "2021-10-08T02:24:32.000Z" + }, + "events": [ + { + "uuid": "7ed41f60-ae70-483f-8ab6-32c6a319ec71", + "start": { + "$date": "2021-10-08T01:56:46.000Z" + }, + "end": { + "$date": "2021-10-08T02:07:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "43c605f6-380d-4f11-a8ba-60bb330f3484", + "start": { + "$date": "2021-10-08T02:07:46.000Z" + }, + "end": { + "$date": "2021-10-08T02:10:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "642bdad4-85c6-4992-89cb-c72784d55ecd", + "start": { + "$date": "2021-10-08T02:10:46.000Z" + }, + "end": { + "$date": "2021-10-08T02:20:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7c2842e-fe5f-4d88-a0b6-d520a8425ca4", + "start": { + "$date": "2021-10-08T02:20:46.000Z" + }, + "end": { + "$date": "2021-10-08T02:24:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "9076ed4e-c939-4465-9dc8-0a67d878beb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-08T01:58:25.000Z" + }, + "end": { + "$date": "2021-10-08T01:59:25.000Z" + }, + "events": [ + { + "uuid": "1a0145dd-88dd-4153-a2a9-263b79f4ea89", + "start": { + "$date": "2021-10-08T01:58:25.000Z" + }, + "end": { + "$date": "2021-10-08T01:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "96fbb00e-fdd5-40aa-aac3-6be758214d03", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-08T03:03:56.000Z" + }, + "end": { + "$date": "2021-10-08T04:49:06.000Z" + }, + "events": [ + { + "uuid": "a73ea8e7-ff24-4837-9976-75e53dc1aa14", + "start": { + "$date": "2021-10-08T03:03:56.000Z" + }, + "end": { + "$date": "2021-10-08T04:49:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9797c8c-e4c0-44a5-b14e-6aba8c080d29", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-08T03:38:15.000Z" + }, + "end": { + "$date": "2021-10-08T04:05:24.000Z" + }, + "events": [ + { + "uuid": "1f55e5e0-e59f-4cce-856c-69cb97f2f89a", + "start": { + "$date": "2021-10-08T03:38:15.000Z" + }, + "end": { + "$date": "2021-10-08T04:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1b1563a0-efe3-42e5-ac28-77c03014aa74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-08T03:29:55.000Z" + }, + "end": { + "$date": "2021-10-08T05:17:03.000Z" + }, + "events": [ + { + "uuid": "0fd163f0-5862-4a0c-845b-2e3be048a480", + "start": { + "$date": "2021-10-08T03:29:55.000Z" + }, + "end": { + "$date": "2021-10-08T05:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fa47f46-9812-40bc-bc15-564dad723928", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T03:38:14.000Z" + }, + "end": { + "$date": "2021-10-08T04:05:29.000Z" + }, + "events": [ + { + "uuid": "8f6c6d9c-6e9e-478f-bb00-777e2c68bfba", + "start": { + "$date": "2021-10-08T03:38:14.000Z" + }, + "end": { + "$date": "2021-10-08T04:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5f68553-15bf-4370-9180-80cc4e5fc934", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-08T03:38:16.000Z" + }, + "end": { + "$date": "2021-10-08T04:05:34.000Z" + }, + "events": [ + { + "uuid": "527868a7-2ed6-4ad2-a5e7-107538781c1d", + "start": { + "$date": "2021-10-08T03:38:16.000Z" + }, + "end": { + "$date": "2021-10-08T04:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c06cf744-707c-42e3-a329-c4a33b1662ad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-08T03:44:16.000Z" + }, + "end": { + "$date": "2021-10-08T03:48:06.000Z" + }, + "events": [ + { + "uuid": "4cf9a029-a4ea-483e-84bb-6a93bd9f66d0", + "start": { + "$date": "2021-10-08T03:44:16.000Z" + }, + "end": { + "$date": "2021-10-08T03:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "9999d0bc-54a8-4131-9d7a-086eb6182686", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-08T03:48:37.000Z" + }, + "end": { + "$date": "2021-10-08T04:09:52.000Z" + }, + "events": [ + { + "uuid": "9ed48e04-5e85-4dc2-bb8a-8a8575c99b74", + "start": { + "$date": "2021-10-08T03:48:37.000Z" + }, + "end": { + "$date": "2021-10-08T04:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c3b42b41-4019-4f18-90b8-28ae60046682", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-08T03:53:17.000Z" + }, + "end": { + "$date": "2021-10-08T04:39:26.000Z" + }, + "events": [ + { + "uuid": "9ebbe300-9816-4ee1-8bb6-d160e0261007", + "start": { + "$date": "2021-10-08T03:53:17.000Z" + }, + "end": { + "$date": "2021-10-08T04:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "926d9905-a075-44d2-ac9e-55b68b2398dc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-08T04:01:00.000Z" + }, + "end": { + "$date": "2021-10-08T05:25:17.000Z" + }, + "events": [ + { + "uuid": "e341b8b0-0aef-41f6-9bfe-e1b17b3d5f00", + "start": { + "$date": "2021-10-08T04:01:00.000Z" + }, + "end": { + "$date": "2021-10-08T05:25:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "783da926-7340-4bc5-a39b-6942cd3e17df", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-08T04:08:20.000Z" + }, + "end": { + "$date": "2021-10-08T04:34:30.000Z" + }, + "events": [ + { + "uuid": "49ba1fb7-d3d1-47af-a061-82e30fd6e9db", + "start": { + "$date": "2021-10-08T04:08:20.000Z" + }, + "end": { + "$date": "2021-10-08T04:34:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1569d46-ee7e-4c12-9c97-b9c75f1d66db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-08T04:09:21.000Z" + }, + "end": { + "$date": "2021-10-08T04:34:27.000Z" + }, + "events": [ + { + "uuid": "f65e7eed-4802-4c55-96c3-513298a24757", + "start": { + "$date": "2021-10-08T04:09:21.000Z" + }, + "end": { + "$date": "2021-10-08T04:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32c228c7-42b3-42d8-b970-60ec5c9149ab", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T04:08:20.000Z" + }, + "end": { + "$date": "2021-10-08T04:34:30.000Z" + }, + "events": [ + { + "uuid": "7ef99b31-15a5-4095-940f-7406fe929641", + "start": { + "$date": "2021-10-08T04:08:20.000Z" + }, + "end": { + "$date": "2021-10-08T04:34:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6644735b-6b80-4e64-8bf1-6613274243f2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T04:41:01.000Z" + }, + "end": { + "$date": "2021-10-08T05:00:35.000Z" + }, + "events": [ + { + "uuid": "2c5ebaa0-1746-4e0c-af55-d45892391f86", + "start": { + "$date": "2021-10-08T04:41:01.000Z" + }, + "end": { + "$date": "2021-10-08T05:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7de08dab-4bf6-4365-8d2b-7beda0c271da", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-08T04:39:38.000Z" + }, + "end": { + "$date": "2021-10-08T05:45:00.000Z" + }, + "events": [ + { + "uuid": "c6d1f31d-11bd-4edb-a943-b4ea34e5b4de", + "start": { + "$date": "2021-10-08T04:39:38.000Z" + }, + "end": { + "$date": "2021-10-08T05:45:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "a048173e-0aa2-4d1b-b8e9-124eab4a47b0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-08T04:49:30.000Z" + }, + "end": { + "$date": "2021-10-08T05:18:17.000Z" + }, + "events": [ + { + "uuid": "132c5536-460d-4e7b-a8e3-5e9a010fb046", + "start": { + "$date": "2021-10-08T04:49:30.000Z" + }, + "end": { + "$date": "2021-10-08T05:18:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f3994f8-faf0-440b-9df8-0dd83b8ee90e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T05:04:11.000Z" + }, + "end": { + "$date": "2021-10-08T05:23:10.000Z" + }, + "events": [ + { + "uuid": "43184d0f-4beb-40a1-8e90-05e2504dfcd8", + "start": { + "$date": "2021-10-08T05:04:11.000Z" + }, + "end": { + "$date": "2021-10-08T05:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "022a0c0d-e4c6-407d-bc5b-acba092ff856", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-08T05:18:08.000Z" + }, + "end": { + "$date": "2021-10-08T05:49:13.000Z" + }, + "events": [ + { + "uuid": "d18cab8f-1b28-4519-94bd-0afe576e80fe", + "start": { + "$date": "2021-10-08T05:18:08.000Z" + }, + "end": { + "$date": "2021-10-08T05:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf0c3b3f-791e-4d6a-b861-d628fb94efa1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T05:24:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:28:08.000Z" + }, + "events": [ + { + "uuid": "481842f9-4dbd-4927-8152-7aa0d8ae2582", + "start": { + "$date": "2021-10-08T05:24:33.000Z" + }, + "end": { + "$date": "2021-10-08T05:35:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72d0df57-fc5c-4faa-af06-4b157bea1c94", + "start": { + "$date": "2021-10-08T05:35:33.000Z" + }, + "end": { + "$date": "2021-10-08T05:39:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7bac25b7-3346-48a5-884d-624b397b425b", + "start": { + "$date": "2021-10-08T05:39:33.000Z" + }, + "end": { + "$date": "2021-10-08T05:49:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "59fbd1be-3b9f-4b76-987a-77aed1917da9", + "start": { + "$date": "2021-10-08T05:49:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:05:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f7a7b72-f424-4e1e-a75d-4c8bc057a1dc", + "start": { + "$date": "2021-10-08T06:05:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:15:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5fbd2297-8fe6-4cc5-bee4-9971b6d49e6a", + "start": { + "$date": "2021-10-08T06:15:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:19:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "18bc0837-729e-4126-b865-931903a06617", + "start": { + "$date": "2021-10-08T06:19:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:21:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29f2a5e0-f8db-4251-b290-51b14de0bf23", + "start": { + "$date": "2021-10-08T06:21:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:25:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d62a9a1-95eb-4f91-a80d-349a4e228db5", + "start": { + "$date": "2021-10-08T06:25:33.000Z" + }, + "end": { + "$date": "2021-10-08T06:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "786008f1-ab74-471c-9279-0e7fb5b552cd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T06:52:56.000Z" + }, + "end": { + "$date": "2021-10-08T08:12:30.000Z" + }, + "events": [ + { + "uuid": "ce29c3f2-400c-4eb9-8bc3-c3e116d70c45", + "start": { + "$date": "2021-10-08T06:52:56.000Z" + }, + "end": { + "$date": "2021-10-08T08:12:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "062849f4-1643-457b-9e79-ca5eac3ffcb5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T08:16:01.000Z" + }, + "end": { + "$date": "2021-10-08T08:28:05.000Z" + }, + "events": [ + { + "uuid": "2a12de13-33e7-4a0b-ae0b-140f3c9e8711", + "start": { + "$date": "2021-10-08T08:16:01.000Z" + }, + "end": { + "$date": "2021-10-08T08:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85e0b368-4471-4c88-946d-04af8d3640ca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T08:31:56.000Z" + }, + "end": { + "$date": "2021-10-08T08:55:46.000Z" + }, + "events": [ + { + "uuid": "db91f84a-bab2-49f3-a2ee-6709eadf242b", + "start": { + "$date": "2021-10-08T08:31:56.000Z" + }, + "end": { + "$date": "2021-10-08T08:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d94efcf7-b8a3-4c1b-8be6-d7d2263f6d86", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T08:58:37.000Z" + }, + "end": { + "$date": "2021-10-08T09:18:02.000Z" + }, + "events": [ + { + "uuid": "7e05169e-f40e-4b7b-a05b-cd6bb8516386", + "start": { + "$date": "2021-10-08T08:58:37.000Z" + }, + "end": { + "$date": "2021-10-08T09:18:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32a75673-b05b-4c15-95ac-1cca66e27278", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T09:21:17.000Z" + }, + "end": { + "$date": "2021-10-08T09:36:47.000Z" + }, + "events": [ + { + "uuid": "20ef3f93-a3b2-43d8-934e-adcd65eb3005", + "start": { + "$date": "2021-10-08T09:21:17.000Z" + }, + "end": { + "$date": "2021-10-08T09:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18451049-3494-4e66-b724-5391d70cecce", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T09:39:48.000Z" + }, + "end": { + "$date": "2021-10-08T09:59:33.000Z" + }, + "events": [ + { + "uuid": "463cbfdd-1ebe-49b3-b7b4-d66ffbf6f506", + "start": { + "$date": "2021-10-08T09:39:48.000Z" + }, + "end": { + "$date": "2021-10-08T09:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f4ee014-a8b9-416e-9adb-ba621d25cacf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-08T10:02:28.000Z" + }, + "end": { + "$date": "2021-10-08T10:21:44.000Z" + }, + "events": [ + { + "uuid": "a4723db0-4f77-4953-acf2-a957c2a83905", + "start": { + "$date": "2021-10-08T10:02:28.000Z" + }, + "end": { + "$date": "2021-10-08T10:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "97174f66-0627-450e-992e-c82a0abd9199", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-08T15:13:36.000Z" + }, + "end": { + "$date": "2021-10-08T17:10:11.000Z" + }, + "events": [ + { + "uuid": "327eeeca-343b-46e1-ad3d-524e3f2c061a", + "start": { + "$date": "2021-10-08T15:13:36.000Z" + }, + "end": { + "$date": "2021-10-08T17:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "3608a1b6-9621-4596-9659-75080e327c96", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-08T18:46:48.000Z" + }, + "end": { + "$date": "2021-10-08T19:32:24.000Z" + }, + "events": [ + { + "uuid": "53996cd1-7bdf-4aa7-b9b2-cb8b4275e984", + "start": { + "$date": "2021-10-08T18:46:48.000Z" + }, + "end": { + "$date": "2021-10-08T19:32:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "03e166db-0e62-406f-a67a-1bc98961885b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-08T19:03:26.000Z" + }, + "end": { + "$date": "2021-10-08T20:00:04.000Z" + }, + "events": [ + { + "uuid": "93899ca3-44e3-40d8-8b4c-becd48fc9574", + "start": { + "$date": "2021-10-08T19:03:26.000Z" + }, + "end": { + "$date": "2021-10-08T20:00:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b16ad81f-e42b-40a0-ae46-7263a97d9b4e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-08T19:49:34.000Z" + }, + "end": { + "$date": "2021-10-08T19:59:22.000Z" + }, + "events": [ + { + "uuid": "81419096-6baa-4cad-b2de-7e01db23a351", + "start": { + "$date": "2021-10-08T19:49:34.000Z" + }, + "end": { + "$date": "2021-10-08T19:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "1b5d6628-ea1e-492b-9783-46744ce1e4ea", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-08T20:07:35.000Z" + }, + "end": { + "$date": "2021-10-08T22:24:40.000Z" + }, + "events": [ + { + "uuid": "b5b3e7ea-9ec3-4034-9691-bf0d00894caa", + "start": { + "$date": "2021-10-08T20:07:35.000Z" + }, + "end": { + "$date": "2021-10-08T22:24:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "17514636-0098-45c4-aa84-52f565802c7d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-08T20:37:05.000Z" + }, + "end": { + "$date": "2021-10-08T22:17:06.000Z" + }, + "events": [ + { + "uuid": "947f6bbf-df6d-4075-bc57-0732d2c46d29", + "start": { + "$date": "2021-10-08T20:37:05.000Z" + }, + "end": { + "$date": "2021-10-08T22:17:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5568e0c5-234b-40a4-b175-613ae9adf0ec", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-08T21:11:24.000Z" + }, + "end": { + "$date": "2021-10-08T21:32:52.000Z" + }, + "events": [ + { + "uuid": "91d47591-5556-4c67-9a3f-1cb81e5cf32a", + "start": { + "$date": "2021-10-08T21:11:24.000Z" + }, + "end": { + "$date": "2021-10-08T21:21:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "964a8a6e-c890-4701-87ee-e08b70aceaa8", + "start": { + "$date": "2021-10-08T21:21:24.000Z" + }, + "end": { + "$date": "2021-10-08T21:29:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d568e018-5436-4577-9339-a4c5239d4b78", + "start": { + "$date": "2021-10-08T21:29:24.000Z" + }, + "end": { + "$date": "2021-10-08T21:32:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9bd4ab18-b970-4c1c-b6a8-56928c36a59d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-08T22:20:32.000Z" + }, + "end": { + "$date": "2021-10-09T04:04:53.000Z" + }, + "events": [ + { + "uuid": "09eafb89-791a-4235-87b4-a883345465a2", + "start": { + "$date": "2021-10-08T22:20:32.000Z" + }, + "end": { + "$date": "2021-10-08T23:37:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "861d7f09-8ed6-481d-bf91-cc0cbb47863c", + "start": { + "$date": "2021-10-08T23:37:32.000Z" + }, + "end": { + "$date": "2021-10-08T23:46:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2408cac2-456e-4963-a377-1b625e1b97e4", + "start": { + "$date": "2021-10-08T23:46:32.000Z" + }, + "end": { + "$date": "2021-10-09T00:15:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2a3b9ee-efc1-410c-ac09-213f851a414b", + "start": { + "$date": "2021-10-09T00:15:32.000Z" + }, + "end": { + "$date": "2021-10-09T00:31:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "284731e6-fddc-4fa0-b818-51c385edb38f", + "start": { + "$date": "2021-10-09T00:31:32.000Z" + }, + "end": { + "$date": "2021-10-09T00:41:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1eab3ff1-54fb-4377-8245-e35adcaa7a64", + "start": { + "$date": "2021-10-09T00:41:32.000Z" + }, + "end": { + "$date": "2021-10-09T00:49:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7e9778a7-dfcb-456b-b2fb-55e25ccd72bd", + "start": { + "$date": "2021-10-09T00:49:32.000Z" + }, + "end": { + "$date": "2021-10-09T04:04:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "c87bc93d-a644-47a6-abe7-a163edaab5ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-08T23:15:18.000Z" + }, + "end": { + "$date": "2021-10-08T23:26:01.000Z" + }, + "events": [ + { + "uuid": "8e34fc5c-6a5d-48a6-af0f-bfe418f1ab48", + "start": { + "$date": "2021-10-08T23:15:18.000Z" + }, + "end": { + "$date": "2021-10-08T23:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "81b68be0-0de5-450c-8897-fb209184524b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-09T01:33:20.000Z" + }, + "end": { + "$date": "2021-10-09T03:47:54.000Z" + }, + "events": [ + { + "uuid": "b865bb0c-a9a0-4068-8718-68fef7a3175a", + "start": { + "$date": "2021-10-09T01:33:20.000Z" + }, + "end": { + "$date": "2021-10-09T03:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "e067dfcf-34df-4a16-9dd1-57cb7ae26442", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-09T01:48:11.000Z" + }, + "end": { + "$date": "2021-10-09T01:55:57.000Z" + }, + "events": [ + { + "uuid": "3da6073d-0a14-48f8-80b5-e6c625922df8", + "start": { + "$date": "2021-10-09T01:48:11.000Z" + }, + "end": { + "$date": "2021-10-09T01:55:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "428740e4-acee-41c9-9afa-f4f758b7b23a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-09T01:56:02.000Z" + }, + "end": { + "$date": "2021-10-09T03:53:16.000Z" + }, + "events": [ + { + "uuid": "c56e12ca-fb74-48a4-be88-da004458a554", + "start": { + "$date": "2021-10-09T01:56:02.000Z" + }, + "end": { + "$date": "2021-10-09T03:53:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "b9709c51-fa7d-4cc1-b22d-406fa793e986", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-09T02:43:47.000Z" + }, + "end": { + "$date": "2021-10-09T04:32:31.000Z" + }, + "events": [ + { + "uuid": "20737f0b-c26a-42e6-9505-2e8c4e6caac7", + "start": { + "$date": "2021-10-09T02:43:47.000Z" + }, + "end": { + "$date": "2021-10-09T04:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a9b3b652-6394-498a-b6b0-e2abbbfb9de9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-09T03:17:30.000Z" + }, + "end": { + "$date": "2021-10-09T03:32:31.000Z" + }, + "events": [ + { + "uuid": "6076ef63-0320-4e55-a515-d90f572913db", + "start": { + "$date": "2021-10-09T03:17:30.000Z" + }, + "end": { + "$date": "2021-10-09T03:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b40874a7-b600-4bb9-85fa-c01fc118d48b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-09T07:19:05.000Z" + }, + "end": { + "$date": "2021-10-09T07:28:48.000Z" + }, + "events": [ + { + "uuid": "ac0718ee-c286-4f17-b6f5-3abd5f0b5488", + "start": { + "$date": "2021-10-09T07:19:05.000Z" + }, + "end": { + "$date": "2021-10-09T11:24:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c9d1f56-9ca6-45f4-9929-502202c4c2bb", + "start": { + "$date": "2021-10-09T11:24:05.000Z" + }, + "end": { + "$date": "2021-10-09T07:28:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5685a0be-e4ba-4fd3-8309-5b6acbb5932e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-09T05:44:06.000Z" + }, + "end": { + "$date": "2021-10-09T06:01:19.000Z" + }, + "events": [ + { + "uuid": "172919b4-b00c-44b0-a87c-5b03fd81933a", + "start": { + "$date": "2021-10-09T05:44:06.000Z" + }, + "end": { + "$date": "2021-10-09T06:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "a39c05bd-b75e-4b5f-bc8e-8b078a2c064b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-09T05:55:44.000Z" + }, + "end": { + "$date": "2021-10-09T05:58:36.000Z" + }, + "events": [ + { + "uuid": "f2f504ec-2526-4ccc-99d3-959c6f16bf0b", + "start": { + "$date": "2021-10-09T05:55:44.000Z" + }, + "end": { + "$date": "2021-10-09T05:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "e925fc77-8171-428c-9662-1c02e7a2be48", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-09T05:59:09.000Z" + }, + "end": { + "$date": "2021-10-09T08:02:23.000Z" + }, + "events": [ + { + "uuid": "100a1d4c-c714-4275-bd2c-465806cbeb33", + "start": { + "$date": "2021-10-09T05:59:09.000Z" + }, + "end": { + "$date": "2021-10-09T08:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "e914f156-739b-4798-925d-7db142902dbd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-09T06:33:34.000Z" + }, + "end": { + "$date": "2021-10-09T08:02:14.000Z" + }, + "events": [ + { + "uuid": "5e9089a9-b454-4b60-9fbb-c5a8f694857b", + "start": { + "$date": "2021-10-09T06:33:34.000Z" + }, + "end": { + "$date": "2021-10-09T08:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5ba7f934-d44e-4ab0-8282-89ff7d48743a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-08T22:20:32.000Z" + }, + "end": { + "$date": "2021-10-09T08:10:41.000Z" + }, + "events": [ + { + "uuid": "245b7e81-4644-46d2-9905-1850b97fef34", + "start": { + "$date": "2021-10-08T22:20:32.000Z" + }, + "end": { + "$date": "2021-10-09T08:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "068af831-bab0-4767-afdb-114bbe2058be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-09T15:29:47.000Z" + }, + "end": { + "$date": "2021-10-09T15:45:45.000Z" + }, + "events": [ + { + "uuid": "fb4c1189-82ad-4308-bf1f-b5a1340ba191", + "start": { + "$date": "2021-10-09T15:29:47.000Z" + }, + "end": { + "$date": "2021-10-09T15:31:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e8c03ff-a5ae-4210-9451-537263b27572", + "start": { + "$date": "2021-10-09T15:31:47.000Z" + }, + "end": { + "$date": "2021-10-09T15:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc61e0e9-032c-4c60-81ad-588e60c13c36", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-09T16:36:49.000Z" + }, + "end": { + "$date": "2021-10-09T17:01:59.000Z" + }, + "events": [ + { + "uuid": "e4927cfd-0a6a-4b20-92b6-f6d901b9a383", + "start": { + "$date": "2021-10-09T16:36:49.000Z" + }, + "end": { + "$date": "2021-10-09T17:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "323e41e4-63e1-45fd-b8b4-4971a40e61a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-09T17:07:20.000Z" + }, + "end": { + "$date": "2021-10-09T17:27:44.000Z" + }, + "events": [ + { + "uuid": "110896cc-fec1-494f-8312-42571832ddb2", + "start": { + "$date": "2021-10-09T17:07:20.000Z" + }, + "end": { + "$date": "2021-10-09T17:27:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a8b39e06-a16a-4607-bda5-1bd211371a8a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-09T18:22:11.000Z" + }, + "end": { + "$date": "2021-10-09T21:17:18.000Z" + }, + "events": [ + { + "uuid": "24aa3f2e-85ce-4161-b151-b54183e050be", + "start": { + "$date": "2021-10-09T18:22:11.000Z" + }, + "end": { + "$date": "2021-10-09T21:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98376584-74c0-4e34-8997-5f6e300ab5ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-09T19:00:32.000Z" + }, + "end": { + "$date": "2021-10-09T19:34:49.000Z" + }, + "events": [ + { + "uuid": "e61bed12-8494-4250-aa77-c96263da9c72", + "start": { + "$date": "2021-10-09T19:00:32.000Z" + }, + "end": { + "$date": "2021-10-09T19:34:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "ce52888c-45a7-46f1-ad14-413db9e6c173", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-10T02:10:49.000Z" + }, + "end": { + "$date": "2021-10-10T05:28:12.000Z" + }, + "events": [ + { + "uuid": "fa1887b7-879a-45a8-8c70-1acb533deefd", + "start": { + "$date": "2021-10-10T02:10:49.000Z" + }, + "end": { + "$date": "2021-10-10T04:06:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41533459-24ce-44bb-aecb-426d82df368f", + "start": { + "$date": "2021-10-10T04:06:49.000Z" + }, + "end": { + "$date": "2021-10-10T04:11:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9670e463-619a-4118-a5c5-540994f30aec", + "start": { + "$date": "2021-10-10T04:11:49.000Z" + }, + "end": { + "$date": "2021-10-10T08:14:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9db63228-2aec-4682-9164-24e3ee0bc290", + "start": { + "$date": "2021-10-10T08:14:49.000Z" + }, + "end": { + "$date": "2021-10-10T08:19:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2081acf8-ab05-4e5d-9924-1b53069d2160", + "start": { + "$date": "2021-10-10T08:19:49.000Z" + }, + "end": { + "$date": "2021-10-10T09:50:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c483944e-4841-4272-b52a-f51b568bd0da", + "start": { + "$date": "2021-10-10T09:50:49.000Z" + }, + "end": { + "$date": "2021-10-10T09:55:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9ad0d0ef-fd96-4e0c-84e1-a09b9cc6da19", + "start": { + "$date": "2021-10-10T09:55:49.000Z" + }, + "end": { + "$date": "2021-10-10T10:05:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e98acc3b-365b-424b-aafe-73df3632f3b3", + "start": { + "$date": "2021-10-10T10:05:49.000Z" + }, + "end": { + "$date": "2021-10-10T10:59:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b994a99-1e16-4507-ab0f-2bf21ff10dc0", + "start": { + "$date": "2021-10-10T10:59:49.000Z" + }, + "end": { + "$date": "2021-10-10T05:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcc3335b-9e4f-4580-a75b-2dc35cb54442", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-09T21:34:40.000Z" + }, + "end": { + "$date": "2021-10-09T22:09:33.000Z" + }, + "events": [ + { + "uuid": "7f571656-c11c-4649-acf0-01d580527c86", + "start": { + "$date": "2021-10-09T21:34:40.000Z" + }, + "end": { + "$date": "2021-10-09T22:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "a5ad7365-bda6-441d-b151-4803a2cc21a7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-09T21:05:14.000Z" + }, + "end": { + "$date": "2021-10-09T22:29:01.000Z" + }, + "events": [ + { + "uuid": "507d9cf5-9a9f-4b33-a57d-8ad9a8b6853c", + "start": { + "$date": "2021-10-09T21:05:14.000Z" + }, + "end": { + "$date": "2021-10-09T22:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcb1cf93-ad54-45df-909e-77426daad679", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-09T21:33:15.000Z" + }, + "end": { + "$date": "2021-10-09T22:10:25.000Z" + }, + "events": [ + { + "uuid": "e9e3cad8-3a6f-4ce6-9b00-3a8a2a9adfab", + "start": { + "$date": "2021-10-09T21:33:15.000Z" + }, + "end": { + "$date": "2021-10-09T22:10:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddd6437c-4665-49d4-8414-6f1db56a967f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-09T22:22:21.000Z" + }, + "end": { + "$date": "2021-10-09T22:48:46.000Z" + }, + "events": [ + { + "uuid": "fc6d1334-b7c4-442e-96e9-5a6a4a20f3ef", + "start": { + "$date": "2021-10-09T22:22:21.000Z" + }, + "end": { + "$date": "2021-10-09T22:48:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d0b6f21-2871-4508-a80e-bfc6f109df53", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-09T22:20:12.000Z" + }, + "end": { + "$date": "2021-10-09T22:48:54.000Z" + }, + "events": [ + { + "uuid": "2f546cbe-dec5-4527-998d-3e8d4868f805", + "start": { + "$date": "2021-10-09T22:20:12.000Z" + }, + "end": { + "$date": "2021-10-09T22:48:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "52b6afd6-74be-4482-a90e-b2d0b5f26fd8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-09T22:30:12.000Z" + }, + "end": { + "$date": "2021-10-10T00:06:48.000Z" + }, + "events": [ + { + "uuid": "0a1ac7ed-26b3-4790-8bf7-f6f994aadf00", + "start": { + "$date": "2021-10-09T22:30:12.000Z" + }, + "end": { + "$date": "2021-10-10T00:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b9ff5e4-9970-4e67-9c3c-4bea3d207a1f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-09T22:51:32.000Z" + }, + "end": { + "$date": "2021-10-09T23:07:28.000Z" + }, + "events": [ + { + "uuid": "ed7669d5-49ef-440c-8eb1-9a66808a74df", + "start": { + "$date": "2021-10-09T22:51:32.000Z" + }, + "end": { + "$date": "2021-10-09T23:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8761389-1619-470d-a1ff-a8333c6ed24d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-09T22:56:09.000Z" + }, + "end": { + "$date": "2021-10-09T22:57:25.000Z" + }, + "events": [ + { + "uuid": "1a855310-342e-4df2-b1c2-08821ec40051", + "start": { + "$date": "2021-10-09T22:56:09.000Z" + }, + "end": { + "$date": "2021-10-09T22:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e1c3e68-ce2e-41cf-962e-2fd6b804a45e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-09T23:09:13.000Z" + }, + "end": { + "$date": "2021-10-09T23:27:35.000Z" + }, + "events": [ + { + "uuid": "06fcefb4-fc7c-4dff-bde8-10e090ec4a9e", + "start": { + "$date": "2021-10-09T23:09:13.000Z" + }, + "end": { + "$date": "2021-10-09T23:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "431ff67a-31dc-4cd5-9f87-3297e36d5081", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-09T23:29:55.000Z" + }, + "end": { + "$date": "2021-10-09T23:49:42.000Z" + }, + "events": [ + { + "uuid": "4b65a652-44aa-45aa-8997-64e9e3c1dfbf", + "start": { + "$date": "2021-10-09T23:29:55.000Z" + }, + "end": { + "$date": "2021-10-09T23:49:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "71a0fe19-6368-4c6b-93e9-5dc03681eac2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-09T19:00:23.000Z" + }, + "end": { + "$date": "2021-10-09T23:48:41.000Z" + }, + "events": [ + { + "uuid": "46f33a37-5b2f-41fc-8323-1a5bd9811daa", + "start": { + "$date": "2021-10-09T19:00:23.000Z" + }, + "end": { + "$date": "2021-10-09T23:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc648f04-32a4-41be-8774-bd114a3492aa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-09T23:54:40.000Z" + }, + "end": { + "$date": "2021-10-10T00:08:20.000Z" + }, + "events": [ + { + "uuid": "8cc850ae-223a-4a41-99f1-e201e70b5e67", + "start": { + "$date": "2021-10-09T23:54:40.000Z" + }, + "end": { + "$date": "2021-10-10T00:08:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b1061a5-6e27-480a-8171-68c4311fd1de", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T00:12:12.000Z" + }, + "end": { + "$date": "2021-10-10T00:34:15.000Z" + }, + "events": [ + { + "uuid": "20c24747-e350-40a8-890a-ddf391d24f09", + "start": { + "$date": "2021-10-10T00:12:12.000Z" + }, + "end": { + "$date": "2021-10-10T00:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f146ca02-a173-4f26-811e-f7114bfe57ca", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-10T02:00:07.000Z" + }, + "end": { + "$date": "2021-10-10T02:00:17.000Z" + }, + "events": [ + { + "uuid": "59486604-dd02-42ef-9709-0b2ba0197631", + "start": { + "$date": "2021-10-10T02:00:07.000Z" + }, + "end": { + "$date": "2021-10-10T02:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8721a18b-ca6f-4900-a1fa-29db574c1fae", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T00:36:45.000Z" + }, + "end": { + "$date": "2021-10-10T00:59:08.000Z" + }, + "events": [ + { + "uuid": "064e3c32-3c1b-47e9-b05a-7dc08ad968f7", + "start": { + "$date": "2021-10-10T00:36:45.000Z" + }, + "end": { + "$date": "2021-10-10T00:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4cc3e107-352e-4b97-85ef-4758c8698f2c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-10T00:40:11.000Z" + }, + "end": { + "$date": "2021-10-10T01:48:28.000Z" + }, + "events": [ + { + "uuid": "11ee3448-3b45-4bad-b727-7a3154202c3a", + "start": { + "$date": "2021-10-10T00:40:11.000Z" + }, + "end": { + "$date": "2021-10-10T01:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b788795b-992e-4047-81c9-6f0b39d54192", + "uuid": "6556522d-4d64-4009-a2e0-8e525a59efa6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-10T00:55:03.000Z" + }, + "end": { + "$date": "2021-10-10T03:49:10.000Z" + }, + "events": [ + { + "uuid": "82ead0ed-f975-497e-a0e0-a07f04a67f8b", + "start": { + "$date": "2021-10-10T00:55:03.000Z" + }, + "end": { + "$date": "2021-10-10T03:49:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42e19f9b-584a-4232-8819-344e5e7c6ade", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T01:07:59.000Z" + }, + "end": { + "$date": "2021-10-10T01:25:51.000Z" + }, + "events": [ + { + "uuid": "631f9757-d6df-4fdc-b91f-faeb7e9f9401", + "start": { + "$date": "2021-10-10T01:07:59.000Z" + }, + "end": { + "$date": "2021-10-10T01:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29e9fd82-8f89-4986-891c-b1940eefe529", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T01:28:51.000Z" + }, + "end": { + "$date": "2021-10-10T01:44:01.000Z" + }, + "events": [ + { + "uuid": "49358944-d915-4f54-a544-bf3fd5b5a5d1", + "start": { + "$date": "2021-10-10T01:28:51.000Z" + }, + "end": { + "$date": "2021-10-10T01:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "863dc5c6-1448-4f11-8483-3358c8d57cfd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T01:47:13.000Z" + }, + "end": { + "$date": "2021-10-10T02:05:24.000Z" + }, + "events": [ + { + "uuid": "9fde9701-093b-4ea4-ac62-7fbe930a8860", + "start": { + "$date": "2021-10-10T01:47:13.000Z" + }, + "end": { + "$date": "2021-10-10T02:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00c87c64-999e-49fc-96d6-1ec2550a1800", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T02:44:49.000Z" + }, + "end": { + "$date": "2021-10-10T02:58:40.000Z" + }, + "events": [ + { + "uuid": "5f105c4c-1731-4841-82d1-0c46d461b86a", + "start": { + "$date": "2021-10-10T02:44:49.000Z" + }, + "end": { + "$date": "2021-10-10T02:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b3a6c196-c5fe-4936-9859-ddb114f1828a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-10T02:52:56.000Z" + }, + "end": { + "$date": "2021-10-10T09:00:15.000Z" + }, + "events": [ + { + "uuid": "193a5fd7-cac4-443d-8987-59fc013af6f6", + "start": { + "$date": "2021-10-10T02:52:56.000Z" + }, + "end": { + "$date": "2021-10-10T09:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "93e50d80-4da6-49ce-884a-e897fba764ef", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-10T02:55:20.000Z" + }, + "end": { + "$date": "2021-10-10T08:58:11.000Z" + }, + "events": [ + { + "uuid": "37232118-94b3-478d-84f2-c565b06ae482", + "start": { + "$date": "2021-10-10T02:55:20.000Z" + }, + "end": { + "$date": "2021-10-10T08:58:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4384278-28c9-419f-9846-ffa5fb418797", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T03:18:18.000Z" + }, + "end": { + "$date": "2021-10-10T03:27:49.000Z" + }, + "events": [ + { + "uuid": "6f6418e1-3a21-40fc-9051-99819f23cd71", + "start": { + "$date": "2021-10-10T03:18:18.000Z" + }, + "end": { + "$date": "2021-10-10T03:27:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "5b6a1408-486f-45a1-a93e-96ee876ccfe6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T03:13:51.000Z" + }, + "end": { + "$date": "2021-10-10T03:15:28.000Z" + }, + "events": [ + { + "uuid": "421f83a9-ae3f-4bde-8e2a-0729f31e9da6", + "start": { + "$date": "2021-10-10T03:13:51.000Z" + }, + "end": { + "$date": "2021-10-10T03:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f51f3296-301c-4901-b6b8-e1e36df2a201", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T03:25:58.000Z" + }, + "end": { + "$date": "2021-10-10T03:28:14.000Z" + }, + "events": [ + { + "uuid": "47bd5efd-5ab2-49d0-9c20-7faca9d99bf5", + "start": { + "$date": "2021-10-10T03:25:58.000Z" + }, + "end": { + "$date": "2021-10-10T03:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d769c3f-652a-4c42-89e2-7496f09c06d0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-10T03:29:49.000Z" + }, + "end": { + "$date": "2021-10-10T03:34:39.000Z" + }, + "events": [ + { + "uuid": "60a632b9-dfe2-4e4b-8a17-76cb02b668c4", + "start": { + "$date": "2021-10-10T03:29:49.000Z" + }, + "end": { + "$date": "2021-10-10T03:34:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9729b911-32a1-4d2c-abce-31d75e4dbbed", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T03:29:49.000Z" + }, + "end": { + "$date": "2021-10-10T03:34:40.000Z" + }, + "events": [ + { + "uuid": "68bc6685-d088-4837-b82e-8728df91caaa", + "start": { + "$date": "2021-10-10T03:29:49.000Z" + }, + "end": { + "$date": "2021-10-10T03:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65576364-0c55-4adb-8a14-847adf7d81e4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T03:34:10.000Z" + }, + "end": { + "$date": "2021-10-10T03:58:48.000Z" + }, + "events": [ + { + "uuid": "6047c043-94ce-4dc8-9904-665b8f683751", + "start": { + "$date": "2021-10-10T03:34:10.000Z" + }, + "end": { + "$date": "2021-10-10T03:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfb41bc8-9051-4806-a2e4-0dd31813395a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-10T03:38:55.000Z" + }, + "end": { + "$date": "2021-10-10T04:03:11.000Z" + }, + "events": [ + { + "uuid": "9ce6f0d0-247a-4a89-b409-58e784f1b1b3", + "start": { + "$date": "2021-10-10T03:38:55.000Z" + }, + "end": { + "$date": "2021-10-10T04:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d0f8a15-8256-4b85-aa1b-b0e856e2b404", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T03:39:32.000Z" + }, + "end": { + "$date": "2021-10-10T04:03:17.000Z" + }, + "events": [ + { + "uuid": "0412dfb8-7d2f-49d3-8f85-2173beab36ac", + "start": { + "$date": "2021-10-10T03:39:32.000Z" + }, + "end": { + "$date": "2021-10-10T04:03:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dfa1b79a-f3f7-4315-8ada-0b42bf335176", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-10T03:52:26.000Z" + }, + "end": { + "$date": "2021-10-10T03:56:51.000Z" + }, + "events": [ + { + "uuid": "75d0c23e-4d06-4ead-9ad5-b5006b8bd3ca", + "start": { + "$date": "2021-10-10T03:52:26.000Z" + }, + "end": { + "$date": "2021-10-10T03:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9da79126-8210-444a-89ba-00ad140e9711", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T04:01:58.000Z" + }, + "end": { + "$date": "2021-10-10T04:24:41.000Z" + }, + "events": [ + { + "uuid": "b7f24344-80c4-45b4-8c4f-1cb2981b5c0f", + "start": { + "$date": "2021-10-10T04:01:58.000Z" + }, + "end": { + "$date": "2021-10-10T04:24:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "92c2a003-576e-434e-a706-1b1fed865703", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-10T04:06:00.000Z" + }, + "end": { + "$date": "2021-10-10T05:50:26.000Z" + }, + "events": [ + { + "uuid": "ed2751c2-a2f0-4bac-bd21-7b19ffd02c8b", + "start": { + "$date": "2021-10-10T04:06:00.000Z" + }, + "end": { + "$date": "2021-10-10T05:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fe80e80-1868-4d1c-b2e6-d395f2fa6fde", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-10T04:20:02.000Z" + }, + "end": { + "$date": "2021-10-10T04:41:02.000Z" + }, + "events": [ + { + "uuid": "fca5375a-d2e0-4181-aa26-3a498cef184c", + "start": { + "$date": "2021-10-10T04:20:02.000Z" + }, + "end": { + "$date": "2021-10-10T04:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58448532-e0af-4a11-8b06-df2dca310261", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T04:20:30.000Z" + }, + "end": { + "$date": "2021-10-10T04:41:08.000Z" + }, + "events": [ + { + "uuid": "9d1c599e-6408-4670-961e-ba0b5f80fb44", + "start": { + "$date": "2021-10-10T04:20:30.000Z" + }, + "end": { + "$date": "2021-10-10T04:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9b796c1-c7db-4c98-aee0-7f63894e9dd9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T04:27:06.000Z" + }, + "end": { + "$date": "2021-10-10T04:53:54.000Z" + }, + "events": [ + { + "uuid": "1b56f610-d38e-422a-825b-3bae5c5c425b", + "start": { + "$date": "2021-10-10T04:27:06.000Z" + }, + "end": { + "$date": "2021-10-10T04:53:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f342780f-8805-4a9f-8ac0-e60ccc8e9532", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-10T04:38:27.000Z" + }, + "end": { + "$date": "2021-10-10T06:37:51.000Z" + }, + "events": [ + { + "uuid": "3c3831f3-52fe-4f46-aa83-b610df382780", + "start": { + "$date": "2021-10-10T04:38:27.000Z" + }, + "end": { + "$date": "2021-10-10T06:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08990c39-5dd3-4d6e-9da8-31e6de92bafa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-10T04:48:18.000Z" + }, + "end": { + "$date": "2021-10-10T05:02:32.000Z" + }, + "events": [ + { + "uuid": "b7cb4f00-7a70-4ec8-912d-44c61d18fa90", + "start": { + "$date": "2021-10-10T04:48:18.000Z" + }, + "end": { + "$date": "2021-10-10T05:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "946a5129-b4b1-4070-9505-e53f8037c5e2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T04:47:51.000Z" + }, + "end": { + "$date": "2021-10-10T05:02:38.000Z" + }, + "events": [ + { + "uuid": "b1880ed6-be7a-42f0-9261-4f52f6d18c36", + "start": { + "$date": "2021-10-10T04:47:51.000Z" + }, + "end": { + "$date": "2021-10-10T05:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cd43dbb-76a2-46a7-8d82-fe0650c278a9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T04:56:14.000Z" + }, + "end": { + "$date": "2021-10-10T05:11:26.000Z" + }, + "events": [ + { + "uuid": "4f060799-1473-48af-8691-d62ae5d1eb52", + "start": { + "$date": "2021-10-10T04:56:14.000Z" + }, + "end": { + "$date": "2021-10-10T05:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94c362e5-4dd7-4121-baf9-2d8b71a7e098", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-10T05:05:18.000Z" + }, + "end": { + "$date": "2021-10-10T05:28:38.000Z" + }, + "events": [ + { + "uuid": "ec97bfde-fe2b-4272-8a1f-2da7d72ccd4f", + "start": { + "$date": "2021-10-10T05:05:18.000Z" + }, + "end": { + "$date": "2021-10-10T05:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d10316ed-4e09-48cd-9f89-59890766c22c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-10T05:05:42.000Z" + }, + "end": { + "$date": "2021-10-10T05:28:45.000Z" + }, + "events": [ + { + "uuid": "39cccdf4-a2d6-4f71-9cd1-902743637e0f", + "start": { + "$date": "2021-10-10T05:05:42.000Z" + }, + "end": { + "$date": "2021-10-10T05:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9dad1539-49c0-4349-8935-6dfc0a855738", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T05:13:21.000Z" + }, + "end": { + "$date": "2021-10-10T05:29:43.000Z" + }, + "events": [ + { + "uuid": "fe43f895-a533-4f27-8095-9f73e408f509", + "start": { + "$date": "2021-10-10T05:13:21.000Z" + }, + "end": { + "$date": "2021-10-10T05:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a4b6901-2a3a-4281-9a1f-dc74e4f32f38", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T05:35:29.000Z" + }, + "end": { + "$date": "2021-10-10T05:53:21.000Z" + }, + "events": [ + { + "uuid": "5c907c4e-96f8-4c0d-a222-38e67a5aaaf7", + "start": { + "$date": "2021-10-10T05:35:29.000Z" + }, + "end": { + "$date": "2021-10-10T05:53:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbb6134b-7b34-41f9-8528-fa0277a32702", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-10T05:54:26.000Z" + }, + "end": { + "$date": "2021-10-10T06:12:47.000Z" + }, + "events": [ + { + "uuid": "c0ee8053-ba3b-4658-949a-5b166269b262", + "start": { + "$date": "2021-10-10T05:54:26.000Z" + }, + "end": { + "$date": "2021-10-10T06:12:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13de5dd5-ca79-496e-b641-8bb329c017ad", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T05:55:26.000Z" + }, + "end": { + "$date": "2021-10-10T06:11:13.000Z" + }, + "events": [ + { + "uuid": "cc74a06c-841f-48de-841b-2ae0ccfc87b5", + "start": { + "$date": "2021-10-10T05:55:26.000Z" + }, + "end": { + "$date": "2021-10-10T06:11:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a64f4a07-0a84-4e79-976a-6aa028d0f72d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T06:12:53.000Z" + }, + "end": { + "$date": "2021-10-10T06:33:15.000Z" + }, + "events": [ + { + "uuid": "77a63db5-b3d6-4274-ba88-56aa1f0b38b0", + "start": { + "$date": "2021-10-10T06:12:53.000Z" + }, + "end": { + "$date": "2021-10-10T06:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c78c0329-9935-404c-a439-0c1114aa4bf4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-10T06:25:58.000Z" + }, + "end": { + "$date": "2021-10-10T06:45:29.000Z" + }, + "events": [ + { + "uuid": "a0ecaa10-8c61-4fca-99cd-b45c524a8167", + "start": { + "$date": "2021-10-10T06:25:58.000Z" + }, + "end": { + "$date": "2021-10-10T06:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f8c1455-cc05-43e8-9b7e-7e499b39c834", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T06:35:11.000Z" + }, + "end": { + "$date": "2021-10-10T06:52:48.000Z" + }, + "events": [ + { + "uuid": "1e49be67-f4ea-4929-8e18-232c6dc857c4", + "start": { + "$date": "2021-10-10T06:35:11.000Z" + }, + "end": { + "$date": "2021-10-10T06:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a02f668a-e0e4-475f-ac04-6c340c6787a3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-10T06:57:46.000Z" + }, + "end": { + "$date": "2021-10-10T07:41:02.000Z" + }, + "events": [ + { + "uuid": "7c9a838f-1ee8-4b0d-b2fc-f918c7db5673", + "start": { + "$date": "2021-10-10T06:57:46.000Z" + }, + "end": { + "$date": "2021-10-10T07:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2ebc8d0-4835-4fc9-85fa-d4e750cad01f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T06:54:48.000Z" + }, + "end": { + "$date": "2021-10-10T07:08:35.000Z" + }, + "events": [ + { + "uuid": "276fb3d2-b339-4ee9-86d9-136df557b31a", + "start": { + "$date": "2021-10-10T06:54:48.000Z" + }, + "end": { + "$date": "2021-10-10T07:08:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84906f80-f72e-4c6f-9e8e-f0f289fba636", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T07:10:55.000Z" + }, + "end": { + "$date": "2021-10-10T07:25:26.000Z" + }, + "events": [ + { + "uuid": "52650875-b36f-41ee-82a9-7faaf250f1d1", + "start": { + "$date": "2021-10-10T07:10:55.000Z" + }, + "end": { + "$date": "2021-10-10T07:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5af99b5d-f254-40cd-a319-e78e86adacda", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T07:27:17.000Z" + }, + "end": { + "$date": "2021-10-10T07:45:22.000Z" + }, + "events": [ + { + "uuid": "b7104bf5-4e36-4212-956d-451127f243c1", + "start": { + "$date": "2021-10-10T07:27:17.000Z" + }, + "end": { + "$date": "2021-10-10T07:45:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3f8c1149-14df-4d1c-ad43-319b5ea792cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-10T07:25:46.000Z" + }, + "end": { + "$date": "2021-10-10T08:53:43.000Z" + }, + "events": [ + { + "uuid": "10a379d2-4637-4d29-b819-3fb2e4ae2975", + "start": { + "$date": "2021-10-10T07:25:46.000Z" + }, + "end": { + "$date": "2021-10-10T08:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4197dc37-6152-484c-ab4d-34745ff4a307", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-10T08:53:40.000Z" + }, + "end": { + "$date": "2021-10-10T08:53:43.000Z" + }, + "events": [ + { + "uuid": "3e87139d-136c-4395-b275-509d8c655883", + "start": { + "$date": "2021-10-10T08:53:40.000Z" + }, + "end": { + "$date": "2021-10-10T08:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fbd2f04-b34c-4fd7-bf57-bca4f77def73", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T07:46:59.000Z" + }, + "end": { + "$date": "2021-10-10T08:05:26.000Z" + }, + "events": [ + { + "uuid": "74bca859-21b4-468c-b280-c01673b2bd17", + "start": { + "$date": "2021-10-10T07:46:59.000Z" + }, + "end": { + "$date": "2021-10-10T08:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d295863-97b4-4521-8a07-f082584425e3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T08:08:57.000Z" + }, + "end": { + "$date": "2021-10-10T08:18:46.000Z" + }, + "events": [ + { + "uuid": "385752b1-a7e1-4c52-aefb-82f6e2b98e01", + "start": { + "$date": "2021-10-10T08:08:57.000Z" + }, + "end": { + "$date": "2021-10-10T08:18:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12be27cf-e465-4f56-a1e3-0cb39a80e47f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T08:20:43.000Z" + }, + "end": { + "$date": "2021-10-10T08:40:45.000Z" + }, + "events": [ + { + "uuid": "fc2ef6e9-1c9d-4e08-a4b6-227bd0f13a48", + "start": { + "$date": "2021-10-10T08:20:43.000Z" + }, + "end": { + "$date": "2021-10-10T08:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf6c1e8d-a47c-403c-a93b-ac12039f5537", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T08:42:41.000Z" + }, + "end": { + "$date": "2021-10-10T08:59:13.000Z" + }, + "events": [ + { + "uuid": "912cc11b-fdc2-481d-bd3c-fc12fb921335", + "start": { + "$date": "2021-10-10T08:42:41.000Z" + }, + "end": { + "$date": "2021-10-10T08:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7e71a87-a5f9-4071-81a6-d3f5e0d549ff", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-10T09:01:13.000Z" + }, + "end": { + "$date": "2021-10-10T09:16:15.000Z" + }, + "events": [ + { + "uuid": "c264b9b8-b824-4fb1-bd77-29d3a0a47921", + "start": { + "$date": "2021-10-10T09:01:13.000Z" + }, + "end": { + "$date": "2021-10-10T09:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1cb8392f-f9ef-438e-822f-2351b233dda5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-10T15:17:34.000Z" + }, + "end": { + "$date": "2021-10-10T16:07:58.000Z" + }, + "events": [ + { + "uuid": "798f8133-9cce-45b9-996e-6300072f7f32", + "start": { + "$date": "2021-10-10T15:17:34.000Z" + }, + "end": { + "$date": "2021-10-10T16:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "44918ba4-b4c3-4ca2-bf89-19787af33481", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-10T16:23:44.000Z" + }, + "end": { + "$date": "2021-10-10T17:29:53.000Z" + }, + "events": [ + { + "uuid": "1f49ce83-1670-470f-839f-01c74c103e35", + "start": { + "$date": "2021-10-10T16:23:44.000Z" + }, + "end": { + "$date": "2021-10-10T17:29:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c4b1320-9ab2-439f-b785-0c5c8a80a6ab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-10T17:11:47.000Z" + }, + "end": { + "$date": "2021-10-10T18:29:43.000Z" + }, + "events": [ + { + "uuid": "5becf3d3-ff43-46a4-b8f6-ead2bc214616", + "start": { + "$date": "2021-10-10T17:11:47.000Z" + }, + "end": { + "$date": "2021-10-10T17:23:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31ebc527-4728-4b97-b0b9-d9b3a554e80d", + "start": { + "$date": "2021-10-10T17:23:47.000Z" + }, + "end": { + "$date": "2021-10-10T17:45:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "597f7ab3-02e9-4a31-b69f-565bdbd305f3", + "start": { + "$date": "2021-10-10T17:45:47.000Z" + }, + "end": { + "$date": "2021-10-10T18:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93fbf153-3289-4f22-939c-047b33907505", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-10T17:55:25.000Z" + }, + "end": { + "$date": "2021-10-10T18:25:30.000Z" + }, + "events": [ + { + "uuid": "5a564cb8-ce39-4440-9048-e3653fde51e7", + "start": { + "$date": "2021-10-10T17:55:25.000Z" + }, + "end": { + "$date": "2021-10-10T18:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4fd9309c-9041-413b-9831-c76e1a77d649", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-10T19:02:59.000Z" + }, + "end": { + "$date": "2021-10-10T19:34:33.000Z" + }, + "events": [ + { + "uuid": "15c85528-5826-42b0-aebf-abc3431462a7", + "start": { + "$date": "2021-10-10T19:02:59.000Z" + }, + "end": { + "$date": "2021-10-10T19:34:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "8459d9aa-31a8-46c5-a742-f44830582730", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-10T19:48:18.000Z" + }, + "end": { + "$date": "2021-10-10T20:17:25.000Z" + }, + "events": [ + { + "uuid": "43c1f4ad-2729-46d2-b1ff-08f90252d601", + "start": { + "$date": "2021-10-10T19:48:18.000Z" + }, + "end": { + "$date": "2021-10-10T20:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7cfa47d5-ba12-49cb-b7c1-0170d4a01118", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-10T20:09:32.000Z" + }, + "end": { + "$date": "2021-10-10T20:35:29.000Z" + }, + "events": [ + { + "uuid": "268b9fec-45af-4aae-bb90-2c0e5161372c", + "start": { + "$date": "2021-10-10T20:09:32.000Z" + }, + "end": { + "$date": "2021-10-10T20:35:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa175db8-4af4-4c22-8d10-4f458d920e90", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-10T20:43:16.000Z" + }, + "end": { + "$date": "2021-10-10T21:19:33.000Z" + }, + "events": [ + { + "uuid": "b7195595-529e-4def-ba26-d98705e48f99", + "start": { + "$date": "2021-10-10T20:43:16.000Z" + }, + "end": { + "$date": "2021-10-10T20:47:16.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "9626222f-c2ae-4733-a9c9-9ccc2f87bc4f", + "start": { + "$date": "2021-10-10T20:47:16.000Z" + }, + "end": { + "$date": "2021-10-10T21:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6c131d2-5495-4107-9207-b1b22d0972e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-10T21:25:19.000Z" + }, + "end": { + "$date": "2021-10-10T21:56:07.000Z" + }, + "events": [ + { + "uuid": "d0f61d7f-04d0-4db9-a12a-a1335ef30a76", + "start": { + "$date": "2021-10-10T21:25:19.000Z" + }, + "end": { + "$date": "2021-10-10T21:56:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c6c3b58f-9cb7-4016-810d-600cb511003b", + "uuid": "7c62c7e8-f3e5-48a3-89ce-1355389aecc6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-10T21:46:10.000Z" + }, + "end": { + "$date": "2021-10-10T21:48:40.000Z" + }, + "events": [ + { + "uuid": "0b26838d-ec0e-476f-b083-ede81e574e3f", + "start": { + "$date": "2021-10-10T21:46:10.000Z" + }, + "end": { + "$date": "2021-10-10T21:48:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "331946cf-8338-4b0a-ba72-999e2f2b5368", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-10T21:54:47.000Z" + }, + "end": { + "$date": "2021-10-10T23:58:52.000Z" + }, + "events": [ + { + "uuid": "fe671dcd-6d8c-444f-9bcc-98c67e717299", + "start": { + "$date": "2021-10-10T21:54:47.000Z" + }, + "end": { + "$date": "2021-10-10T23:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f17058f7-a54d-4ee8-a355-7c10f3a82b5d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-10T22:44:42.000Z" + }, + "end": { + "$date": "2021-10-10T23:08:00.000Z" + }, + "events": [ + { + "uuid": "40417f92-12ab-44f6-8cf9-b2fb83c3f90f", + "start": { + "$date": "2021-10-10T22:44:42.000Z" + }, + "end": { + "$date": "2021-10-10T23:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "782f30ad-4a81-4084-aa3f-7545e0fb7dc7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-10T23:05:38.000Z" + }, + "end": { + "$date": "2021-10-11T01:11:04.000Z" + }, + "events": [ + { + "uuid": "aecce788-5961-4a35-b078-7b9a4982d8bf", + "start": { + "$date": "2021-10-10T23:05:38.000Z" + }, + "end": { + "$date": "2021-10-11T01:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27251ea9-b59f-40ed-8283-ed825b8e2f84", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-10T23:25:10.000Z" + }, + "end": { + "$date": "2021-10-10T23:43:35.000Z" + }, + "events": [ + { + "uuid": "8bd84a60-70ef-4ad0-9ed0-3be37647fea4", + "start": { + "$date": "2021-10-10T23:25:10.000Z" + }, + "end": { + "$date": "2021-10-10T23:43:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2e8146ff-0921-43b0-8c3b-dc3ec3738084", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-10T23:23:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:11:55.000Z" + }, + "events": [ + { + "uuid": "94611569-7457-4e52-bd7a-5a337c121fb6", + "start": { + "$date": "2021-10-10T23:23:18.000Z" + }, + "end": { + "$date": "2021-10-11T01:21:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bdb51326-c0cb-406a-ac75-757fe1b5ff16", + "start": { + "$date": "2021-10-11T01:21:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:03:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e629259c-3440-444e-aa0a-0a462b41647f", + "start": { + "$date": "2021-10-11T02:03:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:07:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8fe89c2c-ac6e-4db7-b995-67f8a72460b3", + "start": { + "$date": "2021-10-11T02:07:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:11:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7fe6b4c-b4c2-42ae-8d26-6458836e8ed5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-10T23:48:31.000Z" + }, + "end": { + "$date": "2021-10-11T00:29:32.000Z" + }, + "events": [ + { + "uuid": "e2fca638-0592-4a80-bac5-e351764da290", + "start": { + "$date": "2021-10-10T23:48:31.000Z" + }, + "end": { + "$date": "2021-10-11T00:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "12ed4cb1-0821-4ea9-8196-c25e4573520e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-11T00:00:49.000Z" + }, + "end": { + "$date": "2021-10-11T01:01:06.000Z" + }, + "events": [ + { + "uuid": "f633871c-5e55-4701-b679-a386efe8a7ac", + "start": { + "$date": "2021-10-11T00:00:49.000Z" + }, + "end": { + "$date": "2021-10-11T01:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c731a6f3-389d-4441-aeda-3c2c783a5b4b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T00:33:39.000Z" + }, + "end": { + "$date": "2021-10-11T00:44:49.000Z" + }, + "events": [ + { + "uuid": "2f5501fb-93e4-4089-b75c-1cbd174521b8", + "start": { + "$date": "2021-10-11T00:33:39.000Z" + }, + "end": { + "$date": "2021-10-11T00:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c618c540-3fcf-4369-87d1-e8801b71d28c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T00:46:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:07:12.000Z" + }, + "events": [ + { + "uuid": "2e6f9ea2-3df2-4ffe-a51a-b91bd9eba0eb", + "start": { + "$date": "2021-10-11T00:46:18.000Z" + }, + "end": { + "$date": "2021-10-11T01:06:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c894e1c1-ad72-4331-b3bd-1e9bcefb2ddf", + "start": { + "$date": "2021-10-11T01:06:18.000Z" + }, + "end": { + "$date": "2021-10-11T01:39:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28844cd0-7ab1-464e-9550-79873b420816", + "start": { + "$date": "2021-10-11T01:39:18.000Z" + }, + "end": { + "$date": "2021-10-11T01:41:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb1c89ff-f565-43b7-8e9d-d50994000010", + "start": { + "$date": "2021-10-11T01:41:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:03:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7942e5ae-ec6f-4aa2-a7de-a09b9bd758f1", + "start": { + "$date": "2021-10-11T02:03:18.000Z" + }, + "end": { + "$date": "2021-10-11T02:07:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "13632398-eb22-471a-83db-c40e0077ede8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-11T00:53:48.000Z" + }, + "end": { + "$date": "2021-10-11T02:05:24.000Z" + }, + "events": [ + { + "uuid": "ff084bac-855c-4ac9-a97d-56986a5fad39", + "start": { + "$date": "2021-10-11T00:53:48.000Z" + }, + "end": { + "$date": "2021-10-11T02:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "34ecca5d-8ee9-4bea-8d59-50cd20754d1a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-11T01:01:54.000Z" + }, + "end": { + "$date": "2021-10-11T02:06:54.000Z" + }, + "events": [ + { + "uuid": "25a497f3-fbbf-4273-8130-fee40b8db809", + "start": { + "$date": "2021-10-11T01:01:54.000Z" + }, + "end": { + "$date": "2021-10-11T02:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3b045231-9b0a-4aec-8643-d05b32168d8c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-10T21:46:24.000Z" + }, + "end": { + "$date": "2021-10-11T04:58:12.000Z" + }, + "events": [ + { + "uuid": "1b6ffb57-2beb-4c1a-a0b3-fe600dffc759", + "start": { + "$date": "2021-10-10T21:46:24.000Z" + }, + "end": { + "$date": "2021-10-11T04:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5782051d-0796-4d75-9f93-48894c629437", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T02:30:17.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:32.000Z" + }, + "events": [ + { + "uuid": "b73487da-5ce3-402b-8943-66580d8f2f0a", + "start": { + "$date": "2021-10-11T02:30:17.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e500617a-f1d2-4bc7-a337-06d5fc9415ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T02:30:45.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:34.000Z" + }, + "events": [ + { + "uuid": "d33bff01-0833-4f7d-b5f2-0e56d93e208d", + "start": { + "$date": "2021-10-11T02:30:45.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "139618d7-821c-4b86-b934-d61eaae93688", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-11T02:30:22.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:33.000Z" + }, + "events": [ + { + "uuid": "feb4ab9c-ebd6-4947-b0f9-32885be64c42", + "start": { + "$date": "2021-10-11T02:30:22.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b329e19-9f64-4c3d-bbd4-7e9ef92b0024", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-11T02:31:10.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:40.000Z" + }, + "events": [ + { + "uuid": "da366ce2-7f13-4bf2-82fe-09ff31a69bf0", + "start": { + "$date": "2021-10-11T02:31:10.000Z" + }, + "end": { + "$date": "2021-10-11T02:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "c7ad7545-ce0f-4765-974d-5134ec5d896b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-11T02:27:29.000Z" + }, + "end": { + "$date": "2021-10-11T02:46:46.000Z" + }, + "events": [ + { + "uuid": "80807fea-1fd6-4476-83a2-c80d848f004f", + "start": { + "$date": "2021-10-11T02:27:29.000Z" + }, + "end": { + "$date": "2021-10-11T02:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "4979acb6-1b1f-4ac3-9f9b-dceb4ee3d0df", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-11T02:51:47.000Z" + }, + "end": { + "$date": "2021-10-11T04:19:09.000Z" + }, + "events": [ + { + "uuid": "a87c791e-b8e9-4635-b6b0-3a8acdb7ae46", + "start": { + "$date": "2021-10-11T02:51:47.000Z" + }, + "end": { + "$date": "2021-10-11T04:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d5d1772-6893-41f6-a9e5-bc793c4fdae1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T02:58:18.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:08.000Z" + }, + "events": [ + { + "uuid": "9db87dc6-38b0-470a-ab97-a75d4f972cf5", + "start": { + "$date": "2021-10-11T02:58:18.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "742da036-b2ae-4f6c-8bc4-dff62c439554", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-11T02:59:25.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:11.000Z" + }, + "events": [ + { + "uuid": "a9c5906a-0481-4323-9bca-794f0ee9c850", + "start": { + "$date": "2021-10-11T02:59:25.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e19807c-16d8-4557-8527-f15af92ea192", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T02:59:30.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:05.000Z" + }, + "events": [ + { + "uuid": "b2780de4-63cf-479d-b5c7-d5b4874bec0e", + "start": { + "$date": "2021-10-11T02:59:30.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adaedc8b-d923-40c0-8c39-485e9054f1c5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-11T02:59:23.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:10.000Z" + }, + "events": [ + { + "uuid": "80a9c2a8-c655-43b1-9047-47bd9fb58d55", + "start": { + "$date": "2021-10-11T02:59:23.000Z" + }, + "end": { + "$date": "2021-10-11T03:22:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "653760b6-b1b4-4ee0-a9c6-b9807f2234de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T03:31:59.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:32.000Z" + }, + "events": [ + { + "uuid": "e4d4bc9b-df52-4f62-be0e-93ba1528ecae", + "start": { + "$date": "2021-10-11T03:31:59.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09195b8b-ce96-4d60-b4ab-23cc7fd29c3b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-11T03:32:15.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:25.000Z" + }, + "events": [ + { + "uuid": "a52a106d-3027-42a6-b543-73307e102516", + "start": { + "$date": "2021-10-11T03:32:15.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6ab0900-19fb-43dd-90c4-0af2eab51628", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-11T03:32:01.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:26.000Z" + }, + "events": [ + { + "uuid": "56b6e8b9-947e-433e-81c0-04be6ed86a28", + "start": { + "$date": "2021-10-11T03:32:01.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75ea39d8-f552-4bad-b18b-56b3c91dde57", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T03:32:00.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:33.000Z" + }, + "events": [ + { + "uuid": "4be19edf-cad2-413e-9775-6719acb67858", + "start": { + "$date": "2021-10-11T03:32:00.000Z" + }, + "end": { + "$date": "2021-10-11T04:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "52352030-3413-49c6-a415-1ff447d7747e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-11T03:40:21.000Z" + }, + "end": { + "$date": "2021-10-11T05:47:05.000Z" + }, + "events": [ + { + "uuid": "a2d74bef-1969-4ca6-9664-c65df6e63a91", + "start": { + "$date": "2021-10-11T03:40:21.000Z" + }, + "end": { + "$date": "2021-10-11T05:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "019da014-c8ba-422d-87b6-633dd6355349", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-11T03:42:21.000Z" + }, + "end": { + "$date": "2021-10-11T05:10:46.000Z" + }, + "events": [ + { + "uuid": "799bfdbf-d2be-4d31-9cd0-ca833e2714ca", + "start": { + "$date": "2021-10-11T03:42:21.000Z" + }, + "end": { + "$date": "2021-10-11T05:10:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d75709b-88fb-4d79-941e-503130313652", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T04:07:10.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:39.000Z" + }, + "events": [ + { + "uuid": "3a04c9bd-a7cd-4dcd-b327-8a3a1ea954b1", + "start": { + "$date": "2021-10-11T04:07:10.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac5a5e6a-cd77-4932-a6ef-1676b7ce0be4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-11T04:06:26.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:37.000Z" + }, + "events": [ + { + "uuid": "cdd2fbe7-e78b-4ad0-8187-99e8bf6d7405", + "start": { + "$date": "2021-10-11T04:06:26.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "246570ba-d57c-4d74-9d33-a53f8cbba8e8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-11T04:06:31.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:40.000Z" + }, + "events": [ + { + "uuid": "0c0520ba-84dc-44df-840d-30f5b08b47da", + "start": { + "$date": "2021-10-11T04:06:31.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e050c05-2212-4b38-aafa-dd1f036b4049", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T04:06:46.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:36.000Z" + }, + "events": [ + { + "uuid": "adf0d4c1-81db-4543-a593-f72f36454bb5", + "start": { + "$date": "2021-10-11T04:06:46.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b0b8ce5-b1d3-496d-8218-126225c1a0bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-11T04:06:30.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:41.000Z" + }, + "events": [ + { + "uuid": "5f545187-536b-46c6-b671-5e7220460ae8", + "start": { + "$date": "2021-10-11T04:06:30.000Z" + }, + "end": { + "$date": "2021-10-11T04:29:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bb2faf2-1313-4d9d-a8d0-aa0afde29b46", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T04:32:45.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:13.000Z" + }, + "events": [ + { + "uuid": "d507af21-7a82-4a8d-99c6-c080f218f72c", + "start": { + "$date": "2021-10-11T04:32:45.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb9ce487-8473-441a-8980-405842460a2b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-11T04:31:57.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:07.000Z" + }, + "events": [ + { + "uuid": "629b61af-5954-4386-bf1c-1d468837cd57", + "start": { + "$date": "2021-10-11T04:31:57.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a12df43-6694-4b76-8562-96a91073409a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-11T04:32:11.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:12.000Z" + }, + "events": [ + { + "uuid": "4d421bd8-2e0e-4c5c-9d5b-877643267742", + "start": { + "$date": "2021-10-11T04:32:11.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7409a7bf-d3bc-4e33-af44-c540c9a96885", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T04:32:01.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:06.000Z" + }, + "events": [ + { + "uuid": "edb7bdfc-c149-46c5-8947-34958d42b84f", + "start": { + "$date": "2021-10-11T04:32:01.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6393f98-419b-4fc1-8b9d-76138fe691e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-11T04:32:01.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:17.000Z" + }, + "events": [ + { + "uuid": "2a3d0f38-0446-4871-b849-2025513fa584", + "start": { + "$date": "2021-10-11T04:32:01.000Z" + }, + "end": { + "$date": "2021-10-11T04:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "85ae0871-e762-4699-a116-3d268ca25bee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-11T13:30:13.000Z" + }, + "end": { + "$date": "2021-10-11T15:15:11.000Z" + }, + "events": [ + { + "uuid": "aef94a4f-7054-4360-b334-9e1e14852c2d", + "start": { + "$date": "2021-10-11T13:30:13.000Z" + }, + "end": { + "$date": "2021-10-11T15:15:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "89ea2cd0-6f4d-428d-8119-10b00cf78e77", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-11T14:16:04.000Z" + }, + "end": { + "$date": "2021-10-11T14:16:26.000Z" + }, + "events": [ + { + "uuid": "ca728678-20f5-47f4-9cb1-5ecf82e408d2", + "start": { + "$date": "2021-10-11T14:16:04.000Z" + }, + "end": { + "$date": "2021-10-11T14:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "2461d12f-ff73-4498-8410-c324d13618cb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-11T15:08:33.000Z" + }, + "end": { + "$date": "2021-10-11T15:09:13.000Z" + }, + "events": [ + { + "uuid": "1737cb28-e3fc-4674-ae6a-ef12225becab", + "start": { + "$date": "2021-10-11T15:08:33.000Z" + }, + "end": { + "$date": "2021-10-11T15:56:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a658056-1331-425b-bcd0-190329915403", + "start": { + "$date": "2021-10-11T15:56:33.000Z" + }, + "end": { + "$date": "2021-10-11T15:09:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "8e72a73b-df1f-4dea-9739-c2aa1f3752c2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-11T15:47:28.000Z" + }, + "end": { + "$date": "2021-10-11T16:24:09.000Z" + }, + "events": [ + { + "uuid": "0cfb9b2d-0f72-4ebf-bd96-906a7d38f035", + "start": { + "$date": "2021-10-11T15:47:28.000Z" + }, + "end": { + "$date": "2021-10-11T16:24:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e15eb1b1-49af-40c5-b024-94e92b9b72f5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-11T19:29:33.000Z" + }, + "end": { + "$date": "2021-10-11T20:20:09.000Z" + }, + "events": [ + { + "uuid": "553b7ee3-35cf-4358-8948-2dae62b9ef93", + "start": { + "$date": "2021-10-11T19:29:33.000Z" + }, + "end": { + "$date": "2021-10-11T20:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14a2eba0-325a-428e-b5a2-a3cc68bb557e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T22:16:14.000Z" + }, + "end": { + "$date": "2021-10-11T22:51:41.000Z" + }, + "events": [ + { + "uuid": "1b13de5d-5257-4b69-aaba-771ac61a2321", + "start": { + "$date": "2021-10-11T22:16:14.000Z" + }, + "end": { + "$date": "2021-10-11T22:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11406695-7f04-42a4-8392-f1a2c53a2aa3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-11T22:57:08.000Z" + }, + "end": { + "$date": "2021-10-11T23:26:40.000Z" + }, + "events": [ + { + "uuid": "1a3ddd9f-0075-4ab3-886b-b16db5f3c58d", + "start": { + "$date": "2021-10-11T22:57:08.000Z" + }, + "end": { + "$date": "2021-10-11T23:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00e58693-b89e-4a55-8ba4-0b6952f46e7c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T23:34:44.000Z" + }, + "end": { + "$date": "2021-10-11T23:52:24.000Z" + }, + "events": [ + { + "uuid": "1e688c36-6b3e-46cc-8628-ef11467cfa74", + "start": { + "$date": "2021-10-11T23:34:44.000Z" + }, + "end": { + "$date": "2021-10-11T23:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "ab725903-5de7-4059-a3ae-7f403c571f6b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-11T23:40:54.000Z" + }, + "end": { + "$date": "2021-10-11T23:48:00.000Z" + }, + "events": [ + { + "uuid": "18d5abcb-ff87-4c7e-803a-d9fa5d57a3e1", + "start": { + "$date": "2021-10-11T23:40:54.000Z" + }, + "end": { + "$date": "2021-10-11T23:48:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "1ee08d86-5b07-4f99-bdfa-0bf36bd1c9a4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-11T23:50:55.000Z" + }, + "end": { + "$date": "2021-10-12T00:36:29.000Z" + }, + "events": [ + { + "uuid": "b141b238-f095-470e-b645-e464af903640", + "start": { + "$date": "2021-10-11T23:50:55.000Z" + }, + "end": { + "$date": "2021-10-12T00:36:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bb8c0bf-499a-43b9-84c1-829de450dc10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-11T23:55:59.000Z" + }, + "end": { + "$date": "2021-10-12T00:17:25.000Z" + }, + "events": [ + { + "uuid": "90aeb803-a1ba-476f-bcd4-0b70b61f6382", + "start": { + "$date": "2021-10-11T23:55:59.000Z" + }, + "end": { + "$date": "2021-10-12T00:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "8fd44b1c-2d82-46f9-9568-8a01ca950eb5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-12T01:06:22.000Z" + }, + "end": { + "$date": "2021-10-12T02:53:47.000Z" + }, + "events": [ + { + "uuid": "1dde7221-9965-423b-bde5-4fd7b483c384", + "start": { + "$date": "2021-10-12T01:06:22.000Z" + }, + "end": { + "$date": "2021-10-12T02:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e042818-052d-43b7-a75e-a294eaa9dfc4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-12T02:27:09.000Z" + }, + "end": { + "$date": "2021-10-12T02:41:24.000Z" + }, + "events": [ + { + "uuid": "fda7321d-d822-4d34-9a72-d17f019be183", + "start": { + "$date": "2021-10-12T02:27:09.000Z" + }, + "end": { + "$date": "2021-10-12T02:41:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71a30ae5-4edd-4f9c-9bf4-1c4e2b86184a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-12T03:17:52.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:47.000Z" + }, + "events": [ + { + "uuid": "5b723b02-7b27-4190-8cad-7a97baf4f04f", + "start": { + "$date": "2021-10-12T03:17:52.000Z" + }, + "end": { + "$date": "2021-10-12T03:28:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b94f23ab-de28-483b-8e27-28e31887876e", + "start": { + "$date": "2021-10-12T03:28:52.000Z" + }, + "end": { + "$date": "2021-10-12T03:31:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "01c0cb41-95a2-45b1-9c2e-489943c6dbec", + "start": { + "$date": "2021-10-12T03:31:52.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88a68fb4-5954-4993-bee5-9639ed94d8aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-12T03:17:50.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:39.000Z" + }, + "events": [ + { + "uuid": "90dc5073-731b-4063-ad18-dae7ef530945", + "start": { + "$date": "2021-10-12T03:17:50.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e42614d-c3ab-4864-963e-fa7130efba7a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T03:17:51.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:41.000Z" + }, + "events": [ + { + "uuid": "a64ec45d-6f82-4a4b-9123-cf37fd8912cf", + "start": { + "$date": "2021-10-12T03:17:51.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "556cabeb-9fce-4a0a-a539-2c2440ee9a5a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-12T03:17:54.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:44.000Z" + }, + "events": [ + { + "uuid": "72c0e9e5-3f73-4ffa-a181-87866202cd56", + "start": { + "$date": "2021-10-12T03:17:54.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0eb21dde-56a7-43cd-bacd-d801d8b3aa9c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-12T03:17:50.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:49.000Z" + }, + "events": [ + { + "uuid": "ccb1ba93-439d-400f-aed6-125f46a470b2", + "start": { + "$date": "2021-10-12T03:17:50.000Z" + }, + "end": { + "$date": "2021-10-12T03:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a4c461e0-407b-4030-a60f-b9bb31550006", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T03:28:26.000Z" + }, + "end": { + "$date": "2021-10-12T03:38:52.000Z" + }, + "events": [ + { + "uuid": "d461d9ca-ad1f-4248-b14d-f3dac411d0cb", + "start": { + "$date": "2021-10-12T03:28:26.000Z" + }, + "end": { + "$date": "2021-10-12T03:38:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5cf56bb8-a5eb-4014-80c2-8e90d599e801", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-12T03:28:28.000Z" + }, + "end": { + "$date": "2021-10-12T05:10:58.000Z" + }, + "events": [ + { + "uuid": "9641e8e6-f2e2-42e1-bb85-57c7c3291f24", + "start": { + "$date": "2021-10-12T03:28:28.000Z" + }, + "end": { + "$date": "2021-10-12T05:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96147652-bc06-4558-869b-db812019c2b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-12T04:52:49.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:19.000Z" + }, + "events": [ + { + "uuid": "adec447c-7d6c-4d45-b92a-fa47efdfe6f7", + "start": { + "$date": "2021-10-12T04:52:49.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47f4b51b-2bee-4e18-8ebe-f85493fb405d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T03:44:31.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:07.000Z" + }, + "events": [ + { + "uuid": "4d2e57b1-3d54-47b5-8492-b04e714bbf3e", + "start": { + "$date": "2021-10-12T03:44:31.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fb2b38f-5509-41aa-9640-e2a413a83a19", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-12T03:44:36.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:11.000Z" + }, + "events": [ + { + "uuid": "5ad4442b-68b6-4f15-9f10-75b1aad1858d", + "start": { + "$date": "2021-10-12T03:44:36.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65c672d2-c4b1-4bac-babf-03e52c021699", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-12T03:44:30.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:05.000Z" + }, + "events": [ + { + "uuid": "874819cb-8ac0-4817-b660-d0a99b2be25a", + "start": { + "$date": "2021-10-12T03:44:30.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "399cc56d-814c-49ba-95ad-df9fe47fc656", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T03:44:34.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:17.000Z" + }, + "events": [ + { + "uuid": "2fccd95b-0162-4704-8a24-34af6d45e096", + "start": { + "$date": "2021-10-12T03:44:34.000Z" + }, + "end": { + "$date": "2021-10-12T04:17:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80cbefba-a586-49bf-9bea-e6d68976bcf0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T04:22:42.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:12.000Z" + }, + "events": [ + { + "uuid": "442dc085-5a8a-4925-b7d8-5c009179e354", + "start": { + "$date": "2021-10-12T04:22:42.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "634c2745-a586-42c0-b9f6-0b274dfcec27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T04:23:07.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:22.000Z" + }, + "events": [ + { + "uuid": "72dcda5f-ebb8-474b-bdd9-bb3322dbd150", + "start": { + "$date": "2021-10-12T04:23:07.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a0c0044-338b-4efa-b4b1-ae23afe40502", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-12T04:22:12.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:16.000Z" + }, + "events": [ + { + "uuid": "780679b0-d203-4f75-9d37-b2766f46c2dd", + "start": { + "$date": "2021-10-12T04:22:12.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01ce3074-e46f-4acb-8a06-267dbc218c99", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-12T04:23:11.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:21.000Z" + }, + "events": [ + { + "uuid": "12ab0495-0a5b-4065-8111-824530d43aa9", + "start": { + "$date": "2021-10-12T04:23:11.000Z" + }, + "end": { + "$date": "2021-10-12T04:46:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5300c511-85f1-45a7-932a-ab0c80eeafdf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T04:52:53.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:23.000Z" + }, + "events": [ + { + "uuid": "c20e14eb-af37-4384-8ff6-ebc81c27afe5", + "start": { + "$date": "2021-10-12T04:52:53.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c63e7fa-51fd-44c0-8672-65e25d5a86ea", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-12T04:52:47.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:17.000Z" + }, + "events": [ + { + "uuid": "8f3e70db-8a50-4f2f-ad80-452828e04563", + "start": { + "$date": "2021-10-12T04:52:47.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ffc9535-44fe-4f3e-a4bd-813f15ecb6d7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-12T04:52:12.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:17.000Z" + }, + "events": [ + { + "uuid": "7f341930-bac7-4d76-a2e4-6be69c25297d", + "start": { + "$date": "2021-10-12T04:52:12.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b63d96eb-8cd8-45da-ad1f-23e7d8b03906", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T04:52:09.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:26.000Z" + }, + "events": [ + { + "uuid": "f990bb00-def5-47fb-a5bf-66a28ef5a6fd", + "start": { + "$date": "2021-10-12T04:52:09.000Z" + }, + "end": { + "$date": "2021-10-12T05:20:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "09fb674a-4afe-4042-999f-ab2d5ca72609", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T05:22:26.000Z" + }, + "end": { + "$date": "2021-10-12T05:56:29.000Z" + }, + "events": [ + { + "uuid": "852adb41-4274-4ece-a638-065eb54b470e", + "start": { + "$date": "2021-10-12T05:22:26.000Z" + }, + "end": { + "$date": "2021-10-12T05:56:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c32d2a01-f93c-4c9a-805e-9530006e5d09", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T07:19:26.000Z" + }, + "end": { + "$date": "2021-10-12T07:32:17.000Z" + }, + "events": [ + { + "uuid": "9b960b83-9dc0-4a88-8191-916383f8dd38", + "start": { + "$date": "2021-10-12T07:19:26.000Z" + }, + "end": { + "$date": "2021-10-12T07:56:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc841cf9-b2a8-41f6-8356-84270e4b19a5", + "start": { + "$date": "2021-10-12T07:56:26.000Z" + }, + "end": { + "$date": "2021-10-12T07:57:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b14927e5-955a-43e3-8073-453f03f6133e", + "start": { + "$date": "2021-10-12T07:57:26.000Z" + }, + "end": { + "$date": "2021-10-12T07:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27568c77-0e76-4454-a50e-d3cfa8af1418", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T07:34:02.000Z" + }, + "end": { + "$date": "2021-10-12T07:48:11.000Z" + }, + "events": [ + { + "uuid": "44833e7d-237c-4afb-90f5-88d800e96126", + "start": { + "$date": "2021-10-12T07:34:02.000Z" + }, + "end": { + "$date": "2021-10-12T07:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ede7d245-bbba-451e-a372-455d29da5a63", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T07:50:27.000Z" + }, + "end": { + "$date": "2021-10-12T08:03:52.000Z" + }, + "events": [ + { + "uuid": "75cbbcd2-a21b-4820-8bd4-1317092cf437", + "start": { + "$date": "2021-10-12T07:50:27.000Z" + }, + "end": { + "$date": "2021-10-12T08:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e72353c-ce3e-4a8f-a93a-908e7d28f3e9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T08:06:48.000Z" + }, + "end": { + "$date": "2021-10-12T08:20:53.000Z" + }, + "events": [ + { + "uuid": "651d32a2-fbbf-4b17-b156-b970b1be5f24", + "start": { + "$date": "2021-10-12T08:06:48.000Z" + }, + "end": { + "$date": "2021-10-12T08:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c16f909-25f9-4956-9260-f5d8387390cb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T08:25:58.000Z" + }, + "end": { + "$date": "2021-10-12T08:47:48.000Z" + }, + "events": [ + { + "uuid": "cafc9f97-e596-4fd7-90a9-0923db39c28a", + "start": { + "$date": "2021-10-12T08:25:58.000Z" + }, + "end": { + "$date": "2021-10-12T08:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c63145c1-cd6b-45e6-9633-76dd2822c05d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T08:50:44.000Z" + }, + "end": { + "$date": "2021-10-12T09:12:42.000Z" + }, + "events": [ + { + "uuid": "ef09c305-bd4d-4769-90a3-0db17abd7071", + "start": { + "$date": "2021-10-12T08:50:44.000Z" + }, + "end": { + "$date": "2021-10-12T09:12:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfb9a65f-1092-4f3a-ab8b-fc0a13287855", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T09:32:24.000Z" + }, + "end": { + "$date": "2021-10-12T09:55:54.000Z" + }, + "events": [ + { + "uuid": "22ac13c1-b540-4f83-b398-03f0ad368fbe", + "start": { + "$date": "2021-10-12T09:32:24.000Z" + }, + "end": { + "$date": "2021-10-12T09:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b7350fb-3d82-49ec-bef8-597baef78b40", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T09:58:10.000Z" + }, + "end": { + "$date": "2021-10-12T10:18:40.000Z" + }, + "events": [ + { + "uuid": "d38b6cf2-6036-4bbf-9b01-d5c0ea1c8805", + "start": { + "$date": "2021-10-12T09:58:10.000Z" + }, + "end": { + "$date": "2021-10-12T10:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46941d15-b54f-40d3-b5d1-b530c05b2c2b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T10:21:00.000Z" + }, + "end": { + "$date": "2021-10-12T10:36:25.000Z" + }, + "events": [ + { + "uuid": "055d1a63-2006-4328-8ef0-4595994fcd8a", + "start": { + "$date": "2021-10-12T10:21:00.000Z" + }, + "end": { + "$date": "2021-10-12T10:36:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26475bc6-e8e8-4175-8c77-039b333b5250", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T10:39:30.000Z" + }, + "end": { + "$date": "2021-10-12T10:54:01.000Z" + }, + "events": [ + { + "uuid": "86477765-56fb-4040-9101-c511e633e2e5", + "start": { + "$date": "2021-10-12T10:39:30.000Z" + }, + "end": { + "$date": "2021-10-12T10:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9b45fa8-3e1f-4e74-a527-a31a3c9105cd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T11:01:37.000Z" + }, + "end": { + "$date": "2021-10-12T11:24:04.000Z" + }, + "events": [ + { + "uuid": "e535f9e0-0cec-4b40-9d1e-2091398d9c2a", + "start": { + "$date": "2021-10-12T11:01:37.000Z" + }, + "end": { + "$date": "2021-10-12T11:24:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6e21b89-2a7f-4174-b631-500494b854c5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T11:26:10.000Z" + }, + "end": { + "$date": "2021-10-12T11:50:12.000Z" + }, + "events": [ + { + "uuid": "2bf68297-e610-4e28-9a3e-d0e2d4641693", + "start": { + "$date": "2021-10-12T11:26:10.000Z" + }, + "end": { + "$date": "2021-10-12T11:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c61c08b1-c888-47a3-a4f6-afb1e7367a61", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-12T12:15:41.000Z" + }, + "end": { + "$date": "2021-10-12T12:32:28.000Z" + }, + "events": [ + { + "uuid": "fa00c4db-08a8-4feb-b1a4-3bb1c0eaab53", + "start": { + "$date": "2021-10-12T12:15:41.000Z" + }, + "end": { + "$date": "2021-10-12T12:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "351d068a-bc08-46f6-bf84-2f99d85eac28", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-12T12:49:34.000Z" + }, + "end": { + "$date": "2021-10-12T15:18:26.000Z" + }, + "events": [ + { + "uuid": "6187cae8-7ef7-4ccf-97dd-df037e6da906", + "start": { + "$date": "2021-10-12T12:49:34.000Z" + }, + "end": { + "$date": "2021-10-12T15:18:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "ba200690-546b-4324-9ddb-bcaf05fe61d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-12T15:18:34.000Z" + }, + "end": { + "$date": "2021-10-12T15:58:05.000Z" + }, + "events": [ + { + "uuid": "d9409fb7-1944-4af0-a287-e47fee47c657", + "start": { + "$date": "2021-10-12T15:18:34.000Z" + }, + "end": { + "$date": "2021-10-12T15:58:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38a3892a-f8b2-4cf3-a955-8172040c407d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-12T17:49:26.000Z" + }, + "end": { + "$date": "2021-10-12T18:10:01.000Z" + }, + "events": [ + { + "uuid": "ca23ea57-7658-412c-a7f8-afa3306c9194", + "start": { + "$date": "2021-10-12T17:49:26.000Z" + }, + "end": { + "$date": "2021-10-12T18:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "44a0acde-27de-471b-9483-e278c8ae56f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-12T21:32:25.000Z" + }, + "end": { + "$date": "2021-10-12T22:07:36.000Z" + }, + "events": [ + { + "uuid": "21d9f6a9-c676-4be8-8708-004ccc147cb1", + "start": { + "$date": "2021-10-12T21:32:25.000Z" + }, + "end": { + "$date": "2021-10-12T22:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "882a0e27-c6cd-4cc5-a53e-8375c81edd76", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-12T22:23:18.000Z" + }, + "end": { + "$date": "2021-10-12T22:50:43.000Z" + }, + "events": [ + { + "uuid": "181f15f1-c7c9-4906-8819-f0055ea065de", + "start": { + "$date": "2021-10-12T22:23:18.000Z" + }, + "end": { + "$date": "2021-10-12T22:50:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d5fde14d-2917-400b-8aeb-1f9edcf2589b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T22:33:20.000Z" + }, + "end": { + "$date": "2021-10-12T23:11:13.000Z" + }, + "events": [ + { + "uuid": "fd1f0abc-27d0-4d89-949c-5f3e45243bb5", + "start": { + "$date": "2021-10-12T22:33:20.000Z" + }, + "end": { + "$date": "2021-10-12T23:11:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "19265e0d-9ee9-413d-9b31-3f9d63b3547e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-12T22:58:04.000Z" + }, + "end": { + "$date": "2021-10-12T23:35:46.000Z" + }, + "events": [ + { + "uuid": "88e1724a-844e-42cb-8fee-dbaebe323d2c", + "start": { + "$date": "2021-10-12T22:58:04.000Z" + }, + "end": { + "$date": "2021-10-12T23:35:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2477e32a-4a0b-44e1-b40e-daacee0ef556", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-12T23:15:54.000Z" + }, + "end": { + "$date": "2021-10-12T23:37:35.000Z" + }, + "events": [ + { + "uuid": "6feb1729-4661-48c9-a9a0-6666d016dc6a", + "start": { + "$date": "2021-10-12T23:15:54.000Z" + }, + "end": { + "$date": "2021-10-12T23:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "da3883a8-9b4b-4490-8dca-5c4535f7d046", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-12T23:12:28.000Z" + }, + "end": { + "$date": "2021-10-12T23:52:00.000Z" + }, + "events": [ + { + "uuid": "74c84444-da23-4f77-b4e7-2c0ac97b5fc4", + "start": { + "$date": "2021-10-12T23:12:28.000Z" + }, + "end": { + "$date": "2021-10-12T23:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "8e0ba722-2c29-4ca5-9a19-7f4ab9ace302", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-12T23:34:33.000Z" + }, + "end": { + "$date": "2021-10-13T00:42:34.000Z" + }, + "events": [ + { + "uuid": "4ff6edfb-984d-452f-87b9-aaac864e8e16", + "start": { + "$date": "2021-10-12T23:34:33.000Z" + }, + "end": { + "$date": "2021-10-13T00:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7f34c702-8d45-4e34-8633-b9366fa1a87f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-12T23:36:41.000Z" + }, + "end": { + "$date": "2021-10-13T00:16:18.000Z" + }, + "events": [ + { + "uuid": "2735161a-b141-439e-8e11-c23c6af19917", + "start": { + "$date": "2021-10-12T23:36:41.000Z" + }, + "end": { + "$date": "2021-10-13T00:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e8c127c4-5ee5-481e-8531-7935d716de4b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-12T23:41:18.000Z" + }, + "end": { + "$date": "2021-10-13T03:38:36.000Z" + }, + "events": [ + { + "uuid": "0a04b32c-0314-41e8-81d0-1707145b32f4", + "start": { + "$date": "2021-10-12T23:41:18.000Z" + }, + "end": { + "$date": "2021-10-13T03:38:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fd4634b-c4d9-40bc-a43a-d634fc00f70e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-12T23:54:36.000Z" + }, + "end": { + "$date": "2021-10-13T00:12:29.000Z" + }, + "events": [ + { + "uuid": "7b091278-3359-42a7-936d-04e00b203811", + "start": { + "$date": "2021-10-12T23:54:36.000Z" + }, + "end": { + "$date": "2021-10-13T00:12:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c70f6133-21a1-4c68-a196-f1673ef5c48c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T00:15:22.000Z" + }, + "end": { + "$date": "2021-10-13T00:30:27.000Z" + }, + "events": [ + { + "uuid": "63d35b5c-4b4d-4389-8be0-59b69ec7c7b4", + "start": { + "$date": "2021-10-13T00:15:22.000Z" + }, + "end": { + "$date": "2021-10-13T00:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "69aaa896-d6c5-484c-90d5-7ce0b1a294d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T00:44:22.000Z" + }, + "end": { + "$date": "2021-10-13T01:19:22.000Z" + }, + "events": [ + { + "uuid": "0d91b3db-7da0-48f5-98d1-8194e324e313", + "start": { + "$date": "2021-10-13T00:44:22.000Z" + }, + "end": { + "$date": "2021-10-13T01:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "e1cbc1ac-c9e7-42d0-81ac-4802db9c9d5e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-13T00:59:39.000Z" + }, + "end": { + "$date": "2021-10-13T07:56:00.000Z" + }, + "events": [ + { + "uuid": "8b969964-d616-48fb-ae23-44f6912d789c", + "start": { + "$date": "2021-10-13T00:59:39.000Z" + }, + "end": { + "$date": "2021-10-13T07:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2d457f0-612a-41f9-bad4-e5b248469fa3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-13T01:09:20.000Z" + }, + "end": { + "$date": "2021-10-13T01:42:22.000Z" + }, + "events": [ + { + "uuid": "46310178-7237-49fe-ac21-73deeff9d8b8", + "start": { + "$date": "2021-10-13T01:09:20.000Z" + }, + "end": { + "$date": "2021-10-13T01:42:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "d4806560-d99a-445a-88c7-8ce78e765ffb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-13T01:19:13.000Z" + }, + "end": { + "$date": "2021-10-13T03:58:23.000Z" + }, + "events": [ + { + "uuid": "88c8b405-e481-4e7e-9650-05b8ce7621c6", + "start": { + "$date": "2021-10-13T01:19:13.000Z" + }, + "end": { + "$date": "2021-10-13T03:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "a3849cb1-c7c2-4074-a7ae-26076eeb65b5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T01:20:28.000Z" + }, + "end": { + "$date": "2021-10-13T02:47:24.000Z" + }, + "events": [ + { + "uuid": "01f3b1a5-3d75-46ed-8092-dd2847f80603", + "start": { + "$date": "2021-10-13T01:20:28.000Z" + }, + "end": { + "$date": "2021-10-13T02:47:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4700a52-39eb-43e7-b6e3-88597d3d5e6c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-13T01:53:30.000Z" + }, + "end": { + "$date": "2021-10-13T02:22:58.000Z" + }, + "events": [ + { + "uuid": "a1714cca-dfbe-4950-a85f-70ad1b39a7e6", + "start": { + "$date": "2021-10-13T01:53:30.000Z" + }, + "end": { + "$date": "2021-10-13T02:22:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2cf2d934-7377-4add-bde5-0a2131eb182d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-13T03:42:14.000Z" + }, + "end": { + "$date": "2021-10-13T03:53:58.000Z" + }, + "events": [ + { + "uuid": "52c5580d-9bad-4d98-a0e1-4dc411c0e9be", + "start": { + "$date": "2021-10-13T03:42:14.000Z" + }, + "end": { + "$date": "2021-10-13T03:53:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "7677ebc5-08af-4afa-9e78-88c282e3a6f6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-13T02:37:46.000Z" + }, + "end": { + "$date": "2021-10-13T02:53:32.000Z" + }, + "events": [ + { + "uuid": "15b799bf-5305-4ac1-b7c0-c279adbc2c63", + "start": { + "$date": "2021-10-13T02:37:46.000Z" + }, + "end": { + "$date": "2021-10-13T02:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd5d6722-4807-47dc-9daa-d0825e269709", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T02:47:45.000Z" + }, + "end": { + "$date": "2021-10-13T03:00:50.000Z" + }, + "events": [ + { + "uuid": "49a7570d-e93c-4d32-8605-714b7c13ce47", + "start": { + "$date": "2021-10-13T02:47:45.000Z" + }, + "end": { + "$date": "2021-10-13T03:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7830b161-ea68-4ef3-abf4-1117c18b0965", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-13T02:57:23.000Z" + }, + "end": { + "$date": "2021-10-13T03:07:38.000Z" + }, + "events": [ + { + "uuid": "75491f7d-ba46-4007-a6bd-6d0ae45a9209", + "start": { + "$date": "2021-10-13T02:57:23.000Z" + }, + "end": { + "$date": "2021-10-13T03:07:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c36e671-1cb9-4678-9916-f1cf315fb995", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-13T03:12:59.000Z" + }, + "end": { + "$date": "2021-10-13T03:31:48.000Z" + }, + "events": [ + { + "uuid": "445872da-3aa0-4fcf-a994-6533fa145f3d", + "start": { + "$date": "2021-10-13T03:12:59.000Z" + }, + "end": { + "$date": "2021-10-13T03:31:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91270121-b3bf-464e-a9f3-1061d0299294", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T03:13:32.000Z" + }, + "end": { + "$date": "2021-10-13T03:29:17.000Z" + }, + "events": [ + { + "uuid": "4b86acfc-bd70-4280-99a7-42afc6e1a547", + "start": { + "$date": "2021-10-13T03:13:32.000Z" + }, + "end": { + "$date": "2021-10-13T03:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c024049-c190-427a-8770-9ac907102065", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T03:13:32.000Z" + }, + "end": { + "$date": "2021-10-13T03:29:19.000Z" + }, + "events": [ + { + "uuid": "9053ee07-6391-480c-a3d4-d150dece473e", + "start": { + "$date": "2021-10-13T03:13:32.000Z" + }, + "end": { + "$date": "2021-10-13T03:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ea7cf820-5c00-4eee-984d-2adcf73b8e21", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T03:30:02.000Z" + }, + "end": { + "$date": "2021-10-13T03:31:08.000Z" + }, + "events": [ + { + "uuid": "d6ae38d6-b891-4926-9e57-714f291e95a3", + "start": { + "$date": "2021-10-13T03:30:02.000Z" + }, + "end": { + "$date": "2021-10-13T03:31:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c139a8a-21e7-479e-bd1c-11d2f6e7f490", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T03:36:59.000Z" + }, + "end": { + "$date": "2021-10-13T03:54:09.000Z" + }, + "events": [ + { + "uuid": "3ce1e5fc-b302-4516-a1a4-4a1dbcf2cde6", + "start": { + "$date": "2021-10-13T03:36:59.000Z" + }, + "end": { + "$date": "2021-10-13T03:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00a9f5bf-3a65-4468-bd97-823ca3bc88e7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T03:36:23.000Z" + }, + "end": { + "$date": "2021-10-13T03:53:59.000Z" + }, + "events": [ + { + "uuid": "88ef78d8-d291-4b20-93a7-2851f0a3b051", + "start": { + "$date": "2021-10-13T03:36:23.000Z" + }, + "end": { + "$date": "2021-10-13T03:53:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "794b4ac3-3a85-4b23-a21f-6505148520a5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-13T03:36:30.000Z" + }, + "end": { + "$date": "2021-10-13T03:54:04.000Z" + }, + "events": [ + { + "uuid": "377186f8-f1f0-419e-bf28-423321eea491", + "start": { + "$date": "2021-10-13T03:36:30.000Z" + }, + "end": { + "$date": "2021-10-13T03:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", + "uuid": "544562f5-714f-4e19-af6a-392babe054a8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-13T03:45:59.000Z" + }, + "end": { + "$date": "2021-10-13T04:13:38.000Z" + }, + "events": [ + { + "uuid": "f43ad662-0364-4ec4-882d-fdae331a9002", + "start": { + "$date": "2021-10-13T03:45:59.000Z" + }, + "end": { + "$date": "2021-10-13T04:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "517a42cf-2847-48b5-b67f-27ea2f8ed5cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T03:59:40.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:09.000Z" + }, + "events": [ + { + "uuid": "51fac70f-f26b-4304-809e-6ed784113c6a", + "start": { + "$date": "2021-10-13T03:59:40.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a74b7a6e-4d84-41a1-89dd-320b01fc7b6d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-13T03:59:48.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:09.000Z" + }, + "events": [ + { + "uuid": "8a20ef93-be30-4d83-a80d-2c0d7a956d90", + "start": { + "$date": "2021-10-13T03:59:48.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73e73d42-6a1d-4996-8071-a5d28f6868fd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T03:59:18.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:05.000Z" + }, + "events": [ + { + "uuid": "e5a481a9-cf26-4413-979d-32e4d83c9cb1", + "start": { + "$date": "2021-10-13T03:59:18.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f51a06c-4418-4d17-8355-741b545c25c5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-13T03:59:31.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:06.000Z" + }, + "events": [ + { + "uuid": "32d4d749-236e-43f3-acc4-cc8c2bf80f5b", + "start": { + "$date": "2021-10-13T03:59:31.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6034c4dc-36c3-4bd1-ba2c-0d77247d4b71", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-13T03:59:18.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:08.000Z" + }, + "events": [ + { + "uuid": "3a176157-2ad5-4908-af12-53c635ee03e9", + "start": { + "$date": "2021-10-13T03:59:18.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "358dbf15-4d6e-4d7e-b4cd-9432482662cb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-13T03:59:54.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:04.000Z" + }, + "events": [ + { + "uuid": "9da4f8e9-2cc1-4c0b-a148-1880172466f6", + "start": { + "$date": "2021-10-13T03:59:54.000Z" + }, + "end": { + "$date": "2021-10-13T04:19:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a737863f-717d-4c99-9ff8-0467f893cdda", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T04:30:11.000Z" + }, + "end": { + "$date": "2021-10-13T04:47:43.000Z" + }, + "events": [ + { + "uuid": "a4d68121-db90-4739-8571-98b9be3d2df1", + "start": { + "$date": "2021-10-13T04:30:11.000Z" + }, + "end": { + "$date": "2021-10-13T04:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5c300f1-7019-4ed6-ab5e-ed1eecb46924", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-13T05:02:33.000Z" + }, + "end": { + "$date": "2021-10-13T05:32:53.000Z" + }, + "events": [ + { + "uuid": "072afd43-6195-4363-836f-76952f332e0d", + "start": { + "$date": "2021-10-13T05:02:33.000Z" + }, + "end": { + "$date": "2021-10-13T05:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30328c3a-8b2b-4257-ad45-1b3ce09d2e29", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T04:50:08.000Z" + }, + "end": { + "$date": "2021-10-13T05:09:56.000Z" + }, + "events": [ + { + "uuid": "7936ea49-52b4-4b79-8e83-25e97015e881", + "start": { + "$date": "2021-10-13T04:50:08.000Z" + }, + "end": { + "$date": "2021-10-13T05:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32828127-f6c2-4e87-947d-4dfe6dabab39", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T05:12:00.000Z" + }, + "end": { + "$date": "2021-10-13T05:31:18.000Z" + }, + "events": [ + { + "uuid": "62a2ca6d-b13e-4048-9037-16a0a3808c6b", + "start": { + "$date": "2021-10-13T05:12:00.000Z" + }, + "end": { + "$date": "2021-10-13T05:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76816b85-a781-4a42-b474-e49b0fd8ec86", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T05:33:48.000Z" + }, + "end": { + "$date": "2021-10-13T05:48:10.000Z" + }, + "events": [ + { + "uuid": "4267d361-46a8-4c64-8783-2e765837349a", + "start": { + "$date": "2021-10-13T05:33:48.000Z" + }, + "end": { + "$date": "2021-10-13T05:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e37dc895-7402-4885-a1f6-5c4737525525", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-13T05:41:04.000Z" + }, + "end": { + "$date": "2021-10-13T06:01:22.000Z" + }, + "events": [ + { + "uuid": "bcd56f8f-b673-46d9-9cc0-cb34e4bda3bc", + "start": { + "$date": "2021-10-13T05:41:04.000Z" + }, + "end": { + "$date": "2021-10-13T06:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c372e20-307a-4eec-af93-24ce426250cd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-13T06:01:45.000Z" + }, + "end": { + "$date": "2021-10-13T06:04:45.000Z" + }, + "events": [ + { + "uuid": "25c94a4c-cd6d-4737-8768-2b63c3dd3cd8", + "start": { + "$date": "2021-10-13T06:01:45.000Z" + }, + "end": { + "$date": "2021-10-13T06:04:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "926cbcf1-3131-4a3e-b3af-cfa6551c0800", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T07:15:13.000Z" + }, + "end": { + "$date": "2021-10-13T07:35:59.000Z" + }, + "events": [ + { + "uuid": "8bd32597-6669-4cd3-baca-00ddf909b6e3", + "start": { + "$date": "2021-10-13T07:15:13.000Z" + }, + "end": { + "$date": "2021-10-13T07:35:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ae9f2554-660b-470e-9d95-ae0a5a7d0096", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T07:37:41.000Z" + }, + "end": { + "$date": "2021-10-13T08:05:17.000Z" + }, + "events": [ + { + "uuid": "c1f24ee4-79d4-43fa-8731-3f5dd0c144dc", + "start": { + "$date": "2021-10-13T07:37:41.000Z" + }, + "end": { + "$date": "2021-10-13T08:05:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "89a22e6d-8881-4e5a-9116-0a75154f6825", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-13T08:11:15.000Z" + }, + "end": { + "$date": "2021-10-13T12:55:39.000Z" + }, + "events": [ + { + "uuid": "ef6a650c-d331-44a5-b7f7-90c40847ead8", + "start": { + "$date": "2021-10-13T08:11:15.000Z" + }, + "end": { + "$date": "2021-10-13T12:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "596de777-5f66-4734-8346-a3378eab695f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-13T17:27:40.000Z" + }, + "end": { + "$date": "2021-10-13T17:59:27.000Z" + }, + "events": [ + { + "uuid": "a8a16368-82e8-43e8-a0ca-1dbb15e972f9", + "start": { + "$date": "2021-10-13T17:27:40.000Z" + }, + "end": { + "$date": "2021-10-13T17:59:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "1d828e88-3b2c-4612-89b4-143a652db7b0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-13T18:17:09.000Z" + }, + "end": { + "$date": "2021-10-13T19:07:56.000Z" + }, + "events": [ + { + "uuid": "3613096b-aad1-45a5-830c-14a29044b84c", + "start": { + "$date": "2021-10-13T18:17:09.000Z" + }, + "end": { + "$date": "2021-10-13T19:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "d56c2298-693c-4feb-961d-f755f75371b1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-13T18:34:02.000Z" + }, + "end": { + "$date": "2021-10-13T18:52:01.000Z" + }, + "events": [ + { + "uuid": "f07fa013-5541-4775-9789-1c7d8549a8ba", + "start": { + "$date": "2021-10-13T18:34:02.000Z" + }, + "end": { + "$date": "2021-10-13T18:52:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c928746a-cb3f-4106-8f04-ec6c6f4a3413", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T18:40:30.000Z" + }, + "end": { + "$date": "2021-10-13T18:59:01.000Z" + }, + "events": [ + { + "uuid": "f218647e-d006-42ab-802c-321acec72ba8", + "start": { + "$date": "2021-10-13T18:40:30.000Z" + }, + "end": { + "$date": "2021-10-13T18:59:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03aec2c3-df39-46ac-a589-5018d2f99b17", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T19:05:11.000Z" + }, + "end": { + "$date": "2021-10-13T19:25:31.000Z" + }, + "events": [ + { + "uuid": "c7e736b9-9052-4804-9953-ab623c831b3c", + "start": { + "$date": "2021-10-13T19:05:11.000Z" + }, + "end": { + "$date": "2021-10-13T19:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e099666c-d922-4c05-929c-79970fd0c9a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T19:32:17.000Z" + }, + "end": { + "$date": "2021-10-13T19:56:17.000Z" + }, + "events": [ + { + "uuid": "c0c5f57e-2221-4616-86c9-d43329934044", + "start": { + "$date": "2021-10-13T19:32:17.000Z" + }, + "end": { + "$date": "2021-10-13T19:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "b730f731-2d2b-49b2-9c2d-7298490faa5a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T20:05:48.000Z" + }, + "end": { + "$date": "2021-10-13T20:13:28.000Z" + }, + "events": [ + { + "uuid": "9e4f29e0-8486-40c5-b42a-5bc9a5c27397", + "start": { + "$date": "2021-10-13T20:05:48.000Z" + }, + "end": { + "$date": "2021-10-13T20:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "619d4a0d-22e5-4cfb-b5b5-43f556e34054", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-13T21:18:11.000Z" + }, + "end": { + "$date": "2021-10-14T00:58:41.000Z" + }, + "events": [ + { + "uuid": "a7f876f2-db0a-4db5-a088-567d6824d810", + "start": { + "$date": "2021-10-13T21:18:11.000Z" + }, + "end": { + "$date": "2021-10-14T00:58:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5f9e16d6-4b4d-4a7d-81f8-5b0650efe88e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-13T21:20:12.000Z" + }, + "end": { + "$date": "2021-10-13T21:31:24.000Z" + }, + "events": [ + { + "uuid": "bde849e2-cfeb-42b1-bf58-eba846bf3e8f", + "start": { + "$date": "2021-10-13T21:20:12.000Z" + }, + "end": { + "$date": "2021-10-13T21:31:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03621938-db77-4c31-b46a-d7df55928428", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T23:21:19.000Z" + }, + "end": { + "$date": "2021-10-13T23:35:04.000Z" + }, + "events": [ + { + "uuid": "af609068-b093-4b4e-bbb3-fd56204cb02d", + "start": { + "$date": "2021-10-13T23:21:19.000Z" + }, + "end": { + "$date": "2021-10-13T23:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "289f61d2-f53f-4e39-89a8-04a33a53e1d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-13T23:39:20.000Z" + }, + "end": { + "$date": "2021-10-14T00:05:25.000Z" + }, + "events": [ + { + "uuid": "03d96fa0-8041-48d7-8e3f-7826da015af2", + "start": { + "$date": "2021-10-13T23:39:20.000Z" + }, + "end": { + "$date": "2021-10-14T00:05:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc1b1d85-5db9-4488-b4d0-fb8b42e3a75b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-13T23:47:16.000Z" + }, + "end": { + "$date": "2021-10-14T00:12:07.000Z" + }, + "events": [ + { + "uuid": "5562d54e-b37a-40d4-b3e4-8550bd293f47", + "start": { + "$date": "2021-10-13T23:47:16.000Z" + }, + "end": { + "$date": "2021-10-14T00:12:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfae7ecb-9398-4117-9eb8-6a53e87d4f33", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-14T00:24:09.000Z" + }, + "end": { + "$date": "2021-10-14T00:53:51.000Z" + }, + "events": [ + { + "uuid": "407797a2-f504-49f2-add7-b7bef230be6f", + "start": { + "$date": "2021-10-14T00:24:09.000Z" + }, + "end": { + "$date": "2021-10-14T00:53:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f2f59289-31a5-4f54-a545-c493467ef1a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-14T00:24:10.000Z" + }, + "end": { + "$date": "2021-10-14T04:14:28.000Z" + }, + "events": [ + { + "uuid": "d7463330-b68e-4e89-a0f4-ebdec7847b59", + "start": { + "$date": "2021-10-14T00:24:10.000Z" + }, + "end": { + "$date": "2021-10-14T04:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "a3d79be4-375c-412e-9890-7ab75c6958cb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-14T00:41:26.000Z" + }, + "end": { + "$date": "2021-10-14T08:42:58.000Z" + }, + "events": [ + { + "uuid": "7083ae05-d735-4e70-b055-add8e4d4ee6a", + "start": { + "$date": "2021-10-14T00:41:26.000Z" + }, + "end": { + "$date": "2021-10-14T05:24:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c8964ee-654f-488b-867f-ff0cb6eab119", + "start": { + "$date": "2021-10-14T05:24:26.000Z" + }, + "end": { + "$date": "2021-10-14T05:46:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a7608dc-b713-483e-b06b-49dc7d7339c9", + "start": { + "$date": "2021-10-14T05:46:26.000Z" + }, + "end": { + "$date": "2021-10-14T08:42:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a55b968-c3ca-4abe-8fc7-bce6428d56df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-14T01:17:25.000Z" + }, + "end": { + "$date": "2021-10-14T01:38:37.000Z" + }, + "events": [ + { + "uuid": "a432435f-c83b-4b25-ba55-6a9a2f99e99f", + "start": { + "$date": "2021-10-14T01:17:25.000Z" + }, + "end": { + "$date": "2021-10-14T01:38:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "10e4309d-49cd-49de-9ea2-fca280a2ca41", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-14T00:59:11.000Z" + }, + "end": { + "$date": "2021-10-14T06:21:21.000Z" + }, + "events": [ + { + "uuid": "daccd854-1856-437c-ba3f-5e02976fc577", + "start": { + "$date": "2021-10-14T00:59:11.000Z" + }, + "end": { + "$date": "2021-10-14T06:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "0b456dfb-e667-4433-9baf-555fda5ecc34", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-14T01:02:26.000Z" + }, + "end": { + "$date": "2021-10-14T02:03:10.000Z" + }, + "events": [ + { + "uuid": "485eed02-4b32-4980-9b49-304ab7f26c80", + "start": { + "$date": "2021-10-14T01:02:26.000Z" + }, + "end": { + "$date": "2021-10-14T02:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f5e5019-31a3-4e2c-8428-138d6bbba284", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-14T01:39:15.000Z" + }, + "end": { + "$date": "2021-10-14T02:13:54.000Z" + }, + "events": [ + { + "uuid": "9c181ba7-c3db-49c3-a4e5-a7d231e557d2", + "start": { + "$date": "2021-10-14T01:39:15.000Z" + }, + "end": { + "$date": "2021-10-14T02:13:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ebbf6f4c-fa02-4840-ac31-79555415ef8b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T02:18:27.000Z" + }, + "end": { + "$date": "2021-10-14T02:31:34.000Z" + }, + "events": [ + { + "uuid": "be139517-8767-4c15-93ee-6b8b0c0e846c", + "start": { + "$date": "2021-10-14T02:18:27.000Z" + }, + "end": { + "$date": "2021-10-14T02:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "63d27f94-bd32-4da3-99f5-abfa4f41c0c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-14T02:32:18.000Z" + }, + "end": { + "$date": "2021-10-14T03:48:55.000Z" + }, + "events": [ + { + "uuid": "9dcf7ca6-c307-449a-a63a-1281b0065937", + "start": { + "$date": "2021-10-14T02:32:18.000Z" + }, + "end": { + "$date": "2021-10-14T03:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "412c085a-a366-4ec2-ba8c-540763deec18", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T03:15:09.000Z" + }, + "end": { + "$date": "2021-10-14T03:50:41.000Z" + }, + "events": [ + { + "uuid": "5ed5cc12-2488-4c67-996e-109726ad8cb3", + "start": { + "$date": "2021-10-14T03:15:09.000Z" + }, + "end": { + "$date": "2021-10-14T03:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37702525-6f50-407e-a7df-4f9a0657050f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-14T03:45:06.000Z" + }, + "end": { + "$date": "2021-10-14T04:48:32.000Z" + }, + "events": [ + { + "uuid": "96a9cfcf-cbd1-4db8-8b37-b7e17d9b949f", + "start": { + "$date": "2021-10-14T03:45:06.000Z" + }, + "end": { + "$date": "2021-10-14T04:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bb945ea1-9efa-4be4-ba00-023cd52ec9f1", + "uuid": "2b0f14ba-2299-4327-915f-9a1d60df80c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-14T05:19:20.000Z" + }, + "end": { + "$date": "2021-10-14T05:48:10.000Z" + }, + "events": [ + { + "uuid": "4d357c3c-96a4-4ba5-bc74-9b3f4bdbc8eb", + "start": { + "$date": "2021-10-14T05:19:20.000Z" + }, + "end": { + "$date": "2021-10-14T05:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "a0874b6d-77ea-4c13-869e-8c1770b151de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-14T15:53:25.000Z" + }, + "end": { + "$date": "2021-10-14T18:03:26.000Z" + }, + "events": [ + { + "uuid": "303d93b6-5d6d-4d89-8eae-252b3c29a6de", + "start": { + "$date": "2021-10-14T15:53:25.000Z" + }, + "end": { + "$date": "2021-10-14T18:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e19cf2b6-0b22-4467-8575-cfbaddc41f77", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T16:36:42.000Z" + }, + "end": { + "$date": "2021-10-14T16:44:18.000Z" + }, + "events": [ + { + "uuid": "008dd1bf-dc8d-4430-b458-cd2f09020002", + "start": { + "$date": "2021-10-14T16:36:42.000Z" + }, + "end": { + "$date": "2021-10-14T16:44:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "942f3d92-04ce-4485-90b1-868e7a118f4d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T16:44:23.000Z" + }, + "end": { + "$date": "2021-10-14T16:45:29.000Z" + }, + "events": [ + { + "uuid": "86beeed8-9944-49e3-b2db-8c383947ec24", + "start": { + "$date": "2021-10-14T16:44:23.000Z" + }, + "end": { + "$date": "2021-10-14T16:45:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "4d4f3c58-0da8-4654-b56e-b055e561c2c9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T16:45:43.000Z" + }, + "end": { + "$date": "2021-10-14T19:58:35.000Z" + }, + "events": [ + { + "uuid": "da5a7b2d-14f1-48b3-8420-dd46343d37cf", + "start": { + "$date": "2021-10-14T16:45:43.000Z" + }, + "end": { + "$date": "2021-10-14T19:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "6c616b3a-7985-4aac-aefa-04c4cf48b997", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-14T19:53:33.000Z" + }, + "end": { + "$date": "2021-10-14T19:55:56.000Z" + }, + "events": [ + { + "uuid": "12bb4a6b-0933-4574-9d83-470464280d1d", + "start": { + "$date": "2021-10-14T19:53:33.000Z" + }, + "end": { + "$date": "2021-10-14T19:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7529db5a-5d72-4f65-a18a-96e260959d7e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T20:42:01.000Z" + }, + "end": { + "$date": "2021-10-14T21:34:06.000Z" + }, + "events": [ + { + "uuid": "e5f658e6-3392-4514-ac0c-a708db445390", + "start": { + "$date": "2021-10-14T20:42:01.000Z" + }, + "end": { + "$date": "2021-10-14T21:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "85c629bc-e23e-4b0b-bacd-819dc0d39aa6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-14T21:23:39.000Z" + }, + "end": { + "$date": "2021-10-15T02:14:55.000Z" + }, + "events": [ + { + "uuid": "e62bba0c-b53a-4b64-b259-af3c5f19f5ea", + "start": { + "$date": "2021-10-14T21:23:39.000Z" + }, + "end": { + "$date": "2021-10-15T02:14:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f1980340-42ed-433f-acaa-5da95ce554fa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-14T21:58:04.000Z" + }, + "end": { + "$date": "2021-10-14T21:58:10.000Z" + }, + "events": [ + { + "uuid": "74738803-e315-4347-847e-8ca1e85e378a", + "start": { + "$date": "2021-10-14T21:58:04.000Z" + }, + "end": { + "$date": "2021-10-14T21:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "39c28858-c2ba-477a-979d-2e4b7136eec6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-14T22:46:11.000Z" + }, + "end": { + "$date": "2021-10-15T00:28:05.000Z" + }, + "events": [ + { + "uuid": "52019674-0580-40b4-91ad-d950cd1953f2", + "start": { + "$date": "2021-10-14T22:46:11.000Z" + }, + "end": { + "$date": "2021-10-15T00:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "8e3ef10e-09dd-4b56-a894-d2400aee5abd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-14T23:16:25.000Z" + }, + "end": { + "$date": "2021-10-14T23:57:54.000Z" + }, + "events": [ + { + "uuid": "bfcafc75-df6f-4c68-a64c-0b6d3f260133", + "start": { + "$date": "2021-10-14T23:16:25.000Z" + }, + "end": { + "$date": "2021-10-14T23:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d65adc2d-e1fc-4706-94f7-406f369dfb55", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-14T23:49:45.000Z" + }, + "end": { + "$date": "2021-10-15T00:06:38.000Z" + }, + "events": [ + { + "uuid": "65dbbec7-373b-4020-9a25-5b68bcc3ef15", + "start": { + "$date": "2021-10-14T23:49:45.000Z" + }, + "end": { + "$date": "2021-10-15T00:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "4997dad3-628f-403e-889a-305f8225c8dc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-15T00:11:59.000Z" + }, + "end": { + "$date": "2021-10-15T01:19:22.000Z" + }, + "events": [ + { + "uuid": "065f1fdb-be14-4f93-84b0-5719e6a2cdc5", + "start": { + "$date": "2021-10-15T00:11:59.000Z" + }, + "end": { + "$date": "2021-10-15T01:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c88f8bf-4759-4a99-aeac-2fa64496d4c1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-15T00:18:19.000Z" + }, + "end": { + "$date": "2021-10-15T00:56:53.000Z" + }, + "events": [ + { + "uuid": "c690c661-ede5-426b-b8f3-5cbf464340ff", + "start": { + "$date": "2021-10-15T00:18:19.000Z" + }, + "end": { + "$date": "2021-10-15T00:56:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "018c3172-20d8-4f97-ad04-e8451c0d0874", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-15T00:57:23.000Z" + }, + "end": { + "$date": "2021-10-15T04:32:16.000Z" + }, + "events": [ + { + "uuid": "4e5c3150-5017-4a0e-9eb8-44ecc71f0469", + "start": { + "$date": "2021-10-15T00:57:23.000Z" + }, + "end": { + "$date": "2021-10-15T04:32:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "6d08ad8c-595a-4cf2-8e64-eb76bf8e4e7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-15T01:06:29.000Z" + }, + "end": { + "$date": "2021-10-15T04:12:44.000Z" + }, + "events": [ + { + "uuid": "0056d8e9-afc1-49f2-9da6-00d703cf3e57", + "start": { + "$date": "2021-10-15T01:06:29.000Z" + }, + "end": { + "$date": "2021-10-15T04:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "2c12b97f-cd64-43b5-829a-840dfd78a655", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-15T01:37:22.000Z" + }, + "end": { + "$date": "2021-10-15T01:39:03.000Z" + }, + "events": [ + { + "uuid": "112548c4-107e-4121-9e78-b3437f99e7d8", + "start": { + "$date": "2021-10-15T01:37:22.000Z" + }, + "end": { + "$date": "2021-10-15T01:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d789d61-eb5e-496b-9d5d-b1b8be55e229", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-15T02:02:32.000Z" + }, + "end": { + "$date": "2021-10-15T02:29:36.000Z" + }, + "events": [ + { + "uuid": "f5aa0ad4-db0d-498b-b986-3456d8f46f77", + "start": { + "$date": "2021-10-15T02:02:32.000Z" + }, + "end": { + "$date": "2021-10-15T02:29:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "1a51b1ce-ad22-4282-8afa-56a3cec07529", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T01:58:32.000Z" + }, + "end": { + "$date": "2021-10-15T03:43:49.000Z" + }, + "events": [ + { + "uuid": "38bf4450-5769-4239-b534-d68824dc2037", + "start": { + "$date": "2021-10-15T01:58:32.000Z" + }, + "end": { + "$date": "2021-10-15T03:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "845e87d1-2abe-4d03-838d-0025e9d8710e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-15T02:33:43.000Z" + }, + "end": { + "$date": "2021-10-15T03:08:41.000Z" + }, + "events": [ + { + "uuid": "6fee4ad7-c2bc-4eff-a140-d3ed276a495e", + "start": { + "$date": "2021-10-15T02:33:43.000Z" + }, + "end": { + "$date": "2021-10-15T03:08:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f717e59c-1a63-4321-b363-dc4aa735d346", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-15T02:54:46.000Z" + }, + "end": { + "$date": "2021-10-15T03:08:06.000Z" + }, + "events": [ + { + "uuid": "e14605af-c21b-4c0a-80cc-7816ac70d980", + "start": { + "$date": "2021-10-15T02:54:46.000Z" + }, + "end": { + "$date": "2021-10-15T03:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "59d2a275-6767-4e35-8e5e-29485ff39e88", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-15T03:09:12.000Z" + }, + "end": { + "$date": "2021-10-15T05:44:30.000Z" + }, + "events": [ + { + "uuid": "0b2a89ec-672d-4633-971a-fb3157cda005", + "start": { + "$date": "2021-10-15T03:09:12.000Z" + }, + "end": { + "$date": "2021-10-15T05:44:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07ea43cd-53ae-44d9-bdb9-05b2d1772b20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-15T03:09:12.000Z" + }, + "end": { + "$date": "2021-10-15T21:55:13.000Z" + }, + "events": [ + { + "uuid": "c0fef6ee-a0d4-4ecf-a3e6-d3c064a5c496", + "start": { + "$date": "2021-10-15T03:09:12.000Z" + }, + "end": { + "$date": "2021-10-15T21:55:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "a594bf27-41e2-4a63-9c09-ccaf1e2935ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-15T03:10:34.000Z" + }, + "end": { + "$date": "2021-10-15T04:11:23.000Z" + }, + "events": [ + { + "uuid": "d0f8d966-422d-430b-84cd-69b98d80b123", + "start": { + "$date": "2021-10-15T03:10:34.000Z" + }, + "end": { + "$date": "2021-10-15T04:11:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "61fe09db-d182-4fb6-9889-1de9f2697cfb", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-15T03:21:58.000Z" + }, + "end": { + "$date": "2021-10-15T04:23:19.000Z" + }, + "events": [ + { + "uuid": "a2284085-4b71-4789-bad6-0ff1a9d0c2eb", + "start": { + "$date": "2021-10-15T03:21:58.000Z" + }, + "end": { + "$date": "2021-10-15T04:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "48fe10e1-c633-4d46-b52b-008fbbb88400", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-15T03:22:25.000Z" + }, + "end": { + "$date": "2021-10-15T04:23:20.000Z" + }, + "events": [ + { + "uuid": "30db49a2-71ad-4c44-bb9a-7e6e71fba96c", + "start": { + "$date": "2021-10-15T03:22:25.000Z" + }, + "end": { + "$date": "2021-10-15T04:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "49c28c10-c9bd-4a8b-b572-6ea467ddc575", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-15T03:31:51.000Z" + }, + "end": { + "$date": "2021-10-15T03:37:03.000Z" + }, + "events": [ + { + "uuid": "5c5afc12-a99e-4459-bb80-63736f32c7d9", + "start": { + "$date": "2021-10-15T03:31:51.000Z" + }, + "end": { + "$date": "2021-10-15T03:37:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "23bab460-d2c1-4ba9-a468-56b0a0c8f781", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T03:46:08.000Z" + }, + "end": { + "$date": "2021-10-15T04:05:15.000Z" + }, + "events": [ + { + "uuid": "7e8144ce-6349-40b2-8cd0-ad62b22eb998", + "start": { + "$date": "2021-10-15T03:46:08.000Z" + }, + "end": { + "$date": "2021-10-15T04:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "820207bd-a925-49bb-b353-4ec0e5faec45", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T04:05:29.000Z" + }, + "end": { + "$date": "2021-10-15T04:38:46.000Z" + }, + "events": [ + { + "uuid": "709122e3-361c-4a06-a387-ad612ef31fdb", + "start": { + "$date": "2021-10-15T04:05:29.000Z" + }, + "end": { + "$date": "2021-10-15T04:38:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "91b4dd64-08d6-4b52-a561-cf58d723ee79", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-15T05:11:46.000Z" + }, + "end": { + "$date": "2021-10-15T05:23:53.000Z" + }, + "events": [ + { + "uuid": "45663a66-a4d3-4989-bb5c-a0bc4fa7e14a", + "start": { + "$date": "2021-10-15T05:11:46.000Z" + }, + "end": { + "$date": "2021-10-15T05:23:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "ed1b31f0-2f36-4a74-9e8e-c10d9d323bcb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T05:12:48.000Z" + }, + "end": { + "$date": "2021-10-15T05:23:20.000Z" + }, + "events": [ + { + "uuid": "419ca287-da56-4fed-ae6e-675ad41056db", + "start": { + "$date": "2021-10-15T05:12:48.000Z" + }, + "end": { + "$date": "2021-10-15T05:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", + "uuid": "8f07929a-7cca-479b-8825-3f9fbd5bc0e5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T05:23:39.000Z" + }, + "end": { + "$date": "2021-10-15T05:25:30.000Z" + }, + "events": [ + { + "uuid": "7e0247a9-3800-4dca-a706-2ea2fc3888ba", + "start": { + "$date": "2021-10-15T05:23:39.000Z" + }, + "end": { + "$date": "2021-10-15T05:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "017e8797-d8ab-448d-985d-a70659b9e417", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-15T05:24:02.000Z" + }, + "end": { + "$date": "2021-10-15T05:47:14.000Z" + }, + "events": [ + { + "uuid": "3fdcb872-1126-4353-857f-46bd1c5eeb8d", + "start": { + "$date": "2021-10-15T05:24:02.000Z" + }, + "end": { + "$date": "2021-10-15T05:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", + "uuid": "234c2ce1-1f26-44db-bcf0-99ec1c649462", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T05:25:34.000Z" + }, + "end": { + "$date": "2021-10-15T05:37:01.000Z" + }, + "events": [ + { + "uuid": "2ac93570-cf9c-49c6-81e1-0cd241e10d7e", + "start": { + "$date": "2021-10-15T05:25:34.000Z" + }, + "end": { + "$date": "2021-10-15T05:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", + "uuid": "e2b932f5-1044-4d35-b2ed-5b3948564425", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-15T05:37:45.000Z" + }, + "end": { + "$date": "2021-10-15T05:42:36.000Z" + }, + "events": [ + { + "uuid": "d0c663ba-a485-4501-b2ac-0a6d8cc7f43e", + "start": { + "$date": "2021-10-15T05:37:45.000Z" + }, + "end": { + "$date": "2021-10-15T05:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "b2ce8237-7304-4bcf-8559-cfc93010d1cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-15T05:45:55.000Z" + }, + "end": { + "$date": "2021-10-15T06:16:47.000Z" + }, + "events": [ + { + "uuid": "686544cb-ef82-41f3-9a10-ba1bc16490ed", + "start": { + "$date": "2021-10-15T05:45:55.000Z" + }, + "end": { + "$date": "2021-10-15T06:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "8d4a48e8-ca09-470e-9a4f-2b300f91c558", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-15T16:08:15.000Z" + }, + "end": { + "$date": "2021-10-15T19:33:28.000Z" + }, + "events": [ + { + "uuid": "5ebfadb4-6e5e-4e8e-bc96-7e202b17af82", + "start": { + "$date": "2021-10-15T16:08:15.000Z" + }, + "end": { + "$date": "2021-10-15T19:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "74c7a856-e658-4214-8fc6-5ddfaecd867b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-15T21:12:30.000Z" + }, + "end": { + "$date": "2021-10-15T21:49:56.000Z" + }, + "events": [ + { + "uuid": "71aa20f0-84be-46c8-8aca-ca28fd6fd0d9", + "start": { + "$date": "2021-10-15T21:12:30.000Z" + }, + "end": { + "$date": "2021-10-15T21:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "a6c31316-8b65-4d59-a9ec-bd23b3e4802d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-15T21:36:46.000Z" + }, + "end": { + "$date": "2021-10-16T02:35:11.000Z" + }, + "events": [ + { + "uuid": "3bdb0b64-78bc-43ae-a2ac-a998beeb5c6b", + "start": { + "$date": "2021-10-15T21:36:46.000Z" + }, + "end": { + "$date": "2021-10-16T02:35:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a8e39b85-ecb8-4f14-b3d7-6ac8a5b8fed3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-15T21:38:17.000Z" + }, + "end": { + "$date": "2021-10-15T23:04:10.000Z" + }, + "events": [ + { + "uuid": "e92f3759-4238-4f01-9116-92bf9e41dfa1", + "start": { + "$date": "2021-10-15T21:38:17.000Z" + }, + "end": { + "$date": "2021-10-15T22:53:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "61aa639e-2a82-41eb-8920-dd06e76c46b1", + "start": { + "$date": "2021-10-15T22:53:17.000Z" + }, + "end": { + "$date": "2021-10-15T23:04:10.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "3fd91739-8903-4747-9ba1-2a09ae3d477c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-15T21:50:21.000Z" + }, + "end": { + "$date": "2021-10-15T22:00:47.000Z" + }, + "events": [ + { + "uuid": "bb6c6f53-9fce-4b77-b040-66ddf2ff4441", + "start": { + "$date": "2021-10-15T21:50:21.000Z" + }, + "end": { + "$date": "2021-10-15T22:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "c8b9c929-ea70-44d8-b2b1-9691464172f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-15T22:01:06.000Z" + }, + "end": { + "$date": "2021-10-15T22:48:23.000Z" + }, + "events": [ + { + "uuid": "affc965a-8418-4141-8840-c4f8890369bc", + "start": { + "$date": "2021-10-15T22:01:06.000Z" + }, + "end": { + "$date": "2021-10-15T22:48:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "45a36760-39bc-4a69-b396-3a04d41adf69", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-15T23:32:01.000Z" + }, + "end": { + "$date": "2021-10-16T03:31:41.000Z" + }, + "events": [ + { + "uuid": "3c6811ae-165f-4706-98e9-90ee6695d265", + "start": { + "$date": "2021-10-15T23:32:01.000Z" + }, + "end": { + "$date": "2021-10-16T03:10:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "236cd26e-d8d2-48b0-aa84-777dfa66142e", + "start": { + "$date": "2021-10-16T03:10:01.000Z" + }, + "end": { + "$date": "2021-10-16T03:15:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d483072d-db5e-4332-acb7-d3213b07e06a", + "start": { + "$date": "2021-10-16T03:15:01.000Z" + }, + "end": { + "$date": "2021-10-16T03:25:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a31e1f5b-6bee-4d82-bf77-c86842051ac2", + "start": { + "$date": "2021-10-16T03:25:01.000Z" + }, + "end": { + "$date": "2021-10-16T03:31:41.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a77de820-adaa-4107-9374-80bcda2e9510", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-15T23:57:04.000Z" + }, + "end": { + "$date": "2021-10-16T00:14:39.000Z" + }, + "events": [ + { + "uuid": "b43e5774-6aa6-436a-9e40-f231a7c14a15", + "start": { + "$date": "2021-10-15T23:57:04.000Z" + }, + "end": { + "$date": "2021-10-16T00:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "c5c74670-ae52-4a29-ad33-c7e5fcbe1b2c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-16T00:24:54.000Z" + }, + "end": { + "$date": "2021-10-16T07:45:12.000Z" + }, + "events": [ + { + "uuid": "3b4ecd41-d3a7-4d80-bf47-0656f36a66fb", + "start": { + "$date": "2021-10-16T00:24:54.000Z" + }, + "end": { + "$date": "2021-10-16T05:01:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "abcde4d6-44c0-4882-b473-c08059a7a536", + "start": { + "$date": "2021-10-16T05:01:54.000Z" + }, + "end": { + "$date": "2021-10-16T05:02:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "38347605-e158-4fdc-8555-58d35d2ecdcf", + "start": { + "$date": "2021-10-16T05:02:54.000Z" + }, + "end": { + "$date": "2021-10-16T05:20:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "657ff613-6028-471a-a5ee-95ef43a0f64d", + "start": { + "$date": "2021-10-16T05:20:54.000Z" + }, + "end": { + "$date": "2021-10-16T05:21:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "16b9602c-e522-4bb9-beb7-773fa7dc440c", + "start": { + "$date": "2021-10-16T05:21:54.000Z" + }, + "end": { + "$date": "2021-10-16T07:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6cf0a158-82e8-44ea-bb00-04746210b216", + "uuid": "9bf81819-31dd-4a01-9c0d-eb043e705503", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-16T00:35:40.000Z" + }, + "end": { + "$date": "2021-10-16T05:04:41.000Z" + }, + "events": [ + { + "uuid": "7968159a-e3d6-4856-a599-f8ea73d90554", + "start": { + "$date": "2021-10-16T00:35:40.000Z" + }, + "end": { + "$date": "2021-10-16T05:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "1fa36199-bb5f-46c9-b731-ef3749d3644c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-16T00:53:12.000Z" + }, + "end": { + "$date": "2021-10-16T05:04:04.000Z" + }, + "events": [ + { + "uuid": "20504c95-968f-4fbb-9d5c-92511dd48451", + "start": { + "$date": "2021-10-16T00:53:12.000Z" + }, + "end": { + "$date": "2021-10-16T05:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01f618d9-822d-46a4-beb5-21a9a73ccc01", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-16T03:19:14.000Z" + }, + "end": { + "$date": "2021-10-16T06:36:39.000Z" + }, + "events": [ + { + "uuid": "b9a1221c-9274-46e3-9e13-8e0e16a39c88", + "start": { + "$date": "2021-10-16T03:19:14.000Z" + }, + "end": { + "$date": "2021-10-16T06:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ee0e0aa7-717e-4d00-b6b6-95d519c44129", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-16T03:22:48.000Z" + }, + "end": { + "$date": "2021-10-16T04:28:08.000Z" + }, + "events": [ + { + "uuid": "d83abf74-7f83-4cd2-b470-de84699375f2", + "start": { + "$date": "2021-10-16T03:22:48.000Z" + }, + "end": { + "$date": "2021-10-16T04:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "32f53e00-0dec-4010-8dc6-86a17d0cfd3b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-16T03:23:06.000Z" + }, + "end": { + "$date": "2021-10-16T06:36:40.000Z" + }, + "events": [ + { + "uuid": "a97a9aea-3b71-46bc-a0af-95caebc0417e", + "start": { + "$date": "2021-10-16T03:23:06.000Z" + }, + "end": { + "$date": "2021-10-16T06:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f63a83c1-dd6c-4bc1-8e29-fd3a7702960c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-16T03:28:49.000Z" + }, + "end": { + "$date": "2021-10-16T03:31:10.000Z" + }, + "events": [ + { + "uuid": "ac3d4ae0-b023-4d5f-abcc-d857502ba1c9", + "start": { + "$date": "2021-10-16T03:28:49.000Z" + }, + "end": { + "$date": "2021-10-16T03:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "75759a97-7427-4f8c-9435-f03055f56817", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-16T03:31:49.000Z" + }, + "end": { + "$date": "2021-10-16T04:15:48.000Z" + }, + "events": [ + { + "uuid": "34a17f60-64f6-4c76-94db-64149051652d", + "start": { + "$date": "2021-10-16T03:31:49.000Z" + }, + "end": { + "$date": "2021-10-16T04:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "8b95518a-25e5-4018-bf39-253049bfc6f0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-16T04:03:52.000Z" + }, + "end": { + "$date": "2021-10-16T05:04:35.000Z" + }, + "events": [ + { + "uuid": "88cca355-d4be-4e7c-97cc-effb603ec272", + "start": { + "$date": "2021-10-16T04:03:52.000Z" + }, + "end": { + "$date": "2021-10-16T05:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "58da7a64-3523-40b8-9426-da675b88381f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-16T04:16:13.000Z" + }, + "end": { + "$date": "2021-10-16T08:38:19.000Z" + }, + "events": [ + { + "uuid": "3d8b3b1f-b23e-401d-bf93-cf4d3e63cd9b", + "start": { + "$date": "2021-10-16T04:16:13.000Z" + }, + "end": { + "$date": "2021-10-16T08:38:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9ea8c639-256e-4ed8-ba72-2a30427e6af7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-16T04:22:43.000Z" + }, + "end": { + "$date": "2021-10-16T06:24:27.000Z" + }, + "events": [ + { + "uuid": "c98df568-c937-48a4-9875-611a75f492c3", + "start": { + "$date": "2021-10-16T04:22:43.000Z" + }, + "end": { + "$date": "2021-10-16T06:24:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "69b5a183-282a-42ea-b5e3-44cdceacf55a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-16T04:36:29.000Z" + }, + "end": { + "$date": "2021-10-16T07:34:01.000Z" + }, + "events": [ + { + "uuid": "8104f04d-263d-4642-871a-bf30b4917713", + "start": { + "$date": "2021-10-16T04:36:29.000Z" + }, + "end": { + "$date": "2021-10-16T07:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37ca5800-f6a1-4dc0-b922-1516e4548ff7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-16T05:05:35.000Z" + }, + "end": { + "$date": "2021-10-16T05:20:25.000Z" + }, + "events": [ + { + "uuid": "e3b2c9c0-42d7-4dcc-8b0c-71ee78a4e6c1", + "start": { + "$date": "2021-10-16T05:05:35.000Z" + }, + "end": { + "$date": "2021-10-16T05:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5167b362-a586-46e7-8558-85898107f47f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-16T05:05:36.000Z" + }, + "end": { + "$date": "2021-10-16T06:37:23.000Z" + }, + "events": [ + { + "uuid": "606a1fba-a4c3-47e6-ac41-2d8a9ea12c25", + "start": { + "$date": "2021-10-16T05:05:36.000Z" + }, + "end": { + "$date": "2021-10-16T06:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", + "uuid": "9d0c8352-b980-448c-98d7-e3b4173fe171", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-16T05:05:59.000Z" + }, + "end": { + "$date": "2021-10-16T05:07:47.000Z" + }, + "events": [ + { + "uuid": "af7d4405-5142-43a3-899f-144bdf823bc7", + "start": { + "$date": "2021-10-16T05:05:59.000Z" + }, + "end": { + "$date": "2021-10-16T05:07:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "8ac6f28d-58e6-4fbf-83da-ea89e7f61229", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-16T05:07:34.000Z" + }, + "end": { + "$date": "2021-10-16T05:10:47.000Z" + }, + "events": [ + { + "uuid": "18fafe22-f5d1-4862-9924-ddcdf98b0eb5", + "start": { + "$date": "2021-10-16T05:07:34.000Z" + }, + "end": { + "$date": "2021-10-16T05:10:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e9274e1d-6f47-4799-bf8f-cbe14c56bed7", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-16T05:10:39.000Z" + }, + "end": { + "$date": "2021-10-16T05:20:08.000Z" + }, + "events": [ + { + "uuid": "9a2ef7a2-0651-4ee8-887b-c29901b69a3f", + "start": { + "$date": "2021-10-16T05:10:39.000Z" + }, + "end": { + "$date": "2021-10-16T05:20:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "640d57eb-b5da-4ab0-9ddf-cc6204669245", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-16T05:24:30.000Z" + }, + "end": { + "$date": "2021-10-16T05:39:56.000Z" + }, + "events": [ + { + "uuid": "e0adc08b-f920-4150-9ba4-80678ae5d850", + "start": { + "$date": "2021-10-16T05:24:30.000Z" + }, + "end": { + "$date": "2021-10-16T05:39:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "2b8f0ec9-159b-4e2f-8d17-f69c7bf90ecb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-16T05:40:06.000Z" + }, + "end": { + "$date": "2021-10-16T05:44:47.000Z" + }, + "events": [ + { + "uuid": "01332e21-6a03-4a0d-946c-e36614509cf5", + "start": { + "$date": "2021-10-16T05:40:06.000Z" + }, + "end": { + "$date": "2021-10-16T05:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b79455ca-864a-4cff-a62f-88df8a9d7027", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-16T06:43:49.000Z" + }, + "end": { + "$date": "2021-10-16T07:52:00.000Z" + }, + "events": [ + { + "uuid": "0b22644a-6202-478a-9f44-2594f3887c9f", + "start": { + "$date": "2021-10-16T06:43:49.000Z" + }, + "end": { + "$date": "2021-10-16T07:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "01638d61-b367-4a10-9bda-15af84d1162b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-16T13:54:15.000Z" + }, + "end": { + "$date": "2021-10-16T15:10:20.000Z" + }, + "events": [ + { + "uuid": "b0df74d6-dce4-4465-9e87-be355548a7b2", + "start": { + "$date": "2021-10-16T13:54:15.000Z" + }, + "end": { + "$date": "2021-10-16T15:10:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "44b9d0b8-4b48-48a8-8d63-011ea0851955", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-16T16:56:01.000Z" + }, + "end": { + "$date": "2021-10-16T19:19:50.000Z" + }, + "events": [ + { + "uuid": "1da1dce3-0f28-4831-94b8-40e72dd9fb84", + "start": { + "$date": "2021-10-16T16:56:01.000Z" + }, + "end": { + "$date": "2021-10-16T19:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1bb6824a-257b-43af-9c4d-772d69ad7f1a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-16T17:13:56.000Z" + }, + "end": { + "$date": "2021-10-16T17:17:25.000Z" + }, + "events": [ + { + "uuid": "833f1278-07ae-48fe-bc54-9b3ee898396e", + "start": { + "$date": "2021-10-16T17:13:56.000Z" + }, + "end": { + "$date": "2021-10-16T17:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "79c845ee-02f8-436b-b7ad-cd63801d86a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-16T17:57:49.000Z" + }, + "end": { + "$date": "2021-10-16T18:00:09.000Z" + }, + "events": [ + { + "uuid": "9c6cbda3-edc0-46db-85f7-a75ef42aaf9e", + "start": { + "$date": "2021-10-16T17:57:49.000Z" + }, + "end": { + "$date": "2021-10-16T18:00:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1fbbe0a-e1ab-4cee-90b9-a6ea39913acc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-16T19:17:24.000Z" + }, + "end": { + "$date": "2021-10-16T19:51:36.000Z" + }, + "events": [ + { + "uuid": "78fc7ffc-41ce-4bb3-bb00-fd7b49272180", + "start": { + "$date": "2021-10-16T19:17:24.000Z" + }, + "end": { + "$date": "2021-10-16T19:28:24.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "03ee00ec-20a1-43bf-b1a0-7616207c111d", + "start": { + "$date": "2021-10-16T19:28:24.000Z" + }, + "end": { + "$date": "2021-10-16T19:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "862d9380-eff8-4e8e-93ec-250515cbe5ef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-16T20:01:34.000Z" + }, + "end": { + "$date": "2021-10-16T20:31:55.000Z" + }, + "events": [ + { + "uuid": "1befd07f-4d59-42e1-a9ac-982f89b50ed1", + "start": { + "$date": "2021-10-16T20:01:34.000Z" + }, + "end": { + "$date": "2021-10-16T20:31:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0ce47ebc-6657-4046-b786-27735d182402", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-16T19:53:40.000Z" + }, + "end": { + "$date": "2021-10-16T20:44:17.000Z" + }, + "events": [ + { + "uuid": "ac633ebf-7ef2-4743-ad3f-d9293965a932", + "start": { + "$date": "2021-10-16T19:53:40.000Z" + }, + "end": { + "$date": "2021-10-16T20:11:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46d6cbc9-f3b7-448c-a5b6-5733a648a07d", + "start": { + "$date": "2021-10-16T20:11:40.000Z" + }, + "end": { + "$date": "2021-10-16T20:44:17.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fe107f88-e079-421a-ba1b-cd5752fc11c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-16T20:22:36.000Z" + }, + "end": { + "$date": "2021-10-16T21:17:44.000Z" + }, + "events": [ + { + "uuid": "ee5a1f27-d0e9-450b-bb2d-d42500f3266b", + "start": { + "$date": "2021-10-16T20:22:36.000Z" + }, + "end": { + "$date": "2021-10-16T21:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "864303bb-7730-412f-a565-f8ff17a26926", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-16T20:41:08.000Z" + }, + "end": { + "$date": "2021-10-16T21:15:44.000Z" + }, + "events": [ + { + "uuid": "8e66fc3c-993f-4407-b554-9b7ef0be8e46", + "start": { + "$date": "2021-10-16T20:41:08.000Z" + }, + "end": { + "$date": "2021-10-16T21:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "00be3c61-d9b3-45d2-8f3b-dbb6f2d673e2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-16T21:06:54.000Z" + }, + "end": { + "$date": "2021-10-17T00:47:15.000Z" + }, + "events": [ + { + "uuid": "2ba94670-32ec-4a52-8005-0392251557fe", + "start": { + "$date": "2021-10-16T21:06:54.000Z" + }, + "end": { + "$date": "2021-10-17T00:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15619f5f-84ae-4a29-a5a6-9916fa08a9e2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-16T21:27:38.000Z" + }, + "end": { + "$date": "2021-10-16T22:08:23.000Z" + }, + "events": [ + { + "uuid": "b8b781af-6818-4ee5-ad32-157c41579a42", + "start": { + "$date": "2021-10-16T21:27:38.000Z" + }, + "end": { + "$date": "2021-10-16T22:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bdef9f1-c722-404a-a500-ccc38ff95c5c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-16T22:08:24.000Z" + }, + "end": { + "$date": "2021-10-16T22:14:41.000Z" + }, + "events": [ + { + "uuid": "d52d976b-e2ef-42ce-85da-887e1f27e36b", + "start": { + "$date": "2021-10-16T22:08:24.000Z" + }, + "end": { + "$date": "2021-10-16T22:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4437c549-90ac-46d8-87bf-005dc12fe379", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-16T22:53:46.000Z" + }, + "end": { + "$date": "2021-10-16T23:53:59.000Z" + }, + "events": [ + { + "uuid": "6ca97cb3-d5a0-4230-a0e7-49799b1e7269", + "start": { + "$date": "2021-10-16T22:53:46.000Z" + }, + "end": { + "$date": "2021-10-16T23:53:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "209265d9-3f75-4439-ae6d-bf5fbee29bf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-16T23:01:38.000Z" + }, + "end": { + "$date": "2021-10-16T23:29:44.000Z" + }, + "events": [ + { + "uuid": "884a97bf-b956-48b2-9b8f-19d44727fc4b", + "start": { + "$date": "2021-10-16T23:01:38.000Z" + }, + "end": { + "$date": "2021-10-16T23:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "c4ca1f10-73a1-4b17-81c2-bf687eb30809", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-16T23:30:04.000Z" + }, + "end": { + "$date": "2021-10-17T00:36:11.000Z" + }, + "events": [ + { + "uuid": "3fc27e41-ca62-4f77-a9c4-9e051524bf79", + "start": { + "$date": "2021-10-16T23:30:04.000Z" + }, + "end": { + "$date": "2021-10-17T00:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "628acc7f-cb3e-4af6-a566-05fc78533c9b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-16T23:38:47.000Z" + }, + "end": { + "$date": "2021-10-17T01:19:01.000Z" + }, + "events": [ + { + "uuid": "3569cdba-38b7-4699-9a6b-c680415da328", + "start": { + "$date": "2021-10-16T23:38:47.000Z" + }, + "end": { + "$date": "2021-10-17T01:19:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "db1f758c-7057-4ff5-8a6f-5ef215fcf7e7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-16T23:59:17.000Z" + }, + "end": { + "$date": "2021-10-17T00:47:11.000Z" + }, + "events": [ + { + "uuid": "381823f5-7971-442a-8919-ae447ee351c0", + "start": { + "$date": "2021-10-16T23:59:17.000Z" + }, + "end": { + "$date": "2021-10-17T00:47:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "70408fd3-0afa-4498-a34e-5b29c64d9d40", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T00:14:12.000Z" + }, + "end": { + "$date": "2021-10-17T00:15:33.000Z" + }, + "events": [ + { + "uuid": "ef53e014-8e40-48eb-b9fe-cfa7a1d504d6", + "start": { + "$date": "2021-10-17T00:14:12.000Z" + }, + "end": { + "$date": "2021-10-17T00:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "9ff67c74-68b8-4758-99b3-368431425e9a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T00:37:40.000Z" + }, + "end": { + "$date": "2021-10-17T00:48:18.000Z" + }, + "events": [ + { + "uuid": "26a2f4d1-d564-48cc-997b-68c5e3d74f5e", + "start": { + "$date": "2021-10-17T00:37:40.000Z" + }, + "end": { + "$date": "2021-10-17T00:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "33e1a1b9-4054-4d83-b568-d21a6c1c5526", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-17T00:40:21.000Z" + }, + "end": { + "$date": "2021-10-17T03:57:12.000Z" + }, + "events": [ + { + "uuid": "6190b26f-3784-4a30-9f88-a4945a6975e6", + "start": { + "$date": "2021-10-17T00:40:21.000Z" + }, + "end": { + "$date": "2021-10-17T03:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae495dbf-715a-4b92-9c3c-b409d89ac24a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-17T00:57:48.000Z" + }, + "end": { + "$date": "2021-10-17T01:01:56.000Z" + }, + "events": [ + { + "uuid": "1ef37373-bb12-4d8a-8f65-0febcd30714d", + "start": { + "$date": "2021-10-17T00:57:48.000Z" + }, + "end": { + "$date": "2021-10-17T01:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f9cba04-1ad2-448f-827b-fc5436616a4f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T00:48:36.000Z" + }, + "end": { + "$date": "2021-10-17T01:02:45.000Z" + }, + "events": [ + { + "uuid": "4191c2f5-c958-47e1-9225-7086e61dc663", + "start": { + "$date": "2021-10-17T00:48:36.000Z" + }, + "end": { + "$date": "2021-10-17T01:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "0fc82c8d-8c27-4304-baa1-a65dae64a4fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T01:58:52.000Z" + }, + "end": { + "$date": "2021-10-17T02:20:47.000Z" + }, + "events": [ + { + "uuid": "72511c50-3ef0-4687-8cbc-49619b3adeb0", + "start": { + "$date": "2021-10-17T01:58:52.000Z" + }, + "end": { + "$date": "2021-10-17T02:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "3f0ef625-302a-4fbc-af2a-775a5d987ebb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T01:03:23.000Z" + }, + "end": { + "$date": "2021-10-17T01:21:21.000Z" + }, + "events": [ + { + "uuid": "c19a0203-72c8-4734-84c8-8e6b7e42e255", + "start": { + "$date": "2021-10-17T01:03:23.000Z" + }, + "end": { + "$date": "2021-10-17T01:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "b9e7587e-f22d-47d0-bfe4-913205029ea6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T01:24:00.000Z" + }, + "end": { + "$date": "2021-10-17T01:29:47.000Z" + }, + "events": [ + { + "uuid": "20525b33-04da-46a0-b6a2-1bd7fa759669", + "start": { + "$date": "2021-10-17T01:24:00.000Z" + }, + "end": { + "$date": "2021-10-17T01:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4508549f-ec6b-48cf-999d-12c0bb54a026", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T01:58:25.000Z" + }, + "end": { + "$date": "2021-10-17T02:21:32.000Z" + }, + "events": [ + { + "uuid": "25ea7b35-c471-49df-b2ce-93c513e23f07", + "start": { + "$date": "2021-10-17T01:58:25.000Z" + }, + "end": { + "$date": "2021-10-17T02:21:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fcd343c6-d1cf-42fa-84bd-813bf0f455d3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-17T00:14:25.000Z" + }, + "end": { + "$date": "2021-10-17T04:23:06.000Z" + }, + "events": [ + { + "uuid": "ee5e9e56-91f6-49c1-aa84-a833f89aae1b", + "start": { + "$date": "2021-10-17T00:14:25.000Z" + }, + "end": { + "$date": "2021-10-17T04:23:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df8a734b-b094-4dde-b9da-82954cc08100", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-17T01:58:22.000Z" + }, + "end": { + "$date": "2021-10-17T02:20:48.000Z" + }, + "events": [ + { + "uuid": "e2ca1770-e3f7-4444-a004-3018d85225b9", + "start": { + "$date": "2021-10-17T01:58:22.000Z" + }, + "end": { + "$date": "2021-10-17T02:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7c3578c-f649-4504-bb96-5a176eb007c7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T01:58:17.000Z" + }, + "end": { + "$date": "2021-10-17T02:20:44.000Z" + }, + "events": [ + { + "uuid": "10b328b9-66f4-4c47-9840-e766bcb996ca", + "start": { + "$date": "2021-10-17T01:58:17.000Z" + }, + "end": { + "$date": "2021-10-17T02:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9161b5a7-e537-4a36-ba04-e0b71b592007", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T02:51:25.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:35.000Z" + }, + "events": [ + { + "uuid": "618a6a83-bb7f-40fe-bfed-f91492f87f0a", + "start": { + "$date": "2021-10-17T02:51:25.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1246ba45-e000-49f9-8994-21746523eed7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-17T02:50:46.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:36.000Z" + }, + "events": [ + { + "uuid": "3a063024-5756-4e00-93ae-5ae957e0cd22", + "start": { + "$date": "2021-10-17T02:50:46.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24dca97d-2c3a-44dc-9514-78ceb4d06711", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T02:50:45.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:46.000Z" + }, + "events": [ + { + "uuid": "2aab7d7d-da6e-4e54-a403-a4ea382691bb", + "start": { + "$date": "2021-10-17T02:50:45.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1596a0b2-70d4-40ff-8c69-2b23c70c604b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T02:51:10.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:46.000Z" + }, + "events": [ + { + "uuid": "e9cc9416-7c45-4c5c-8988-cea4a0e2f91e", + "start": { + "$date": "2021-10-17T02:51:10.000Z" + }, + "end": { + "$date": "2021-10-17T03:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad0ca8b6-9f1c-45a7-89ac-be7ce47967e4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T02:23:55.000Z" + }, + "end": { + "$date": "2021-10-17T03:56:51.000Z" + }, + "events": [ + { + "uuid": "2ca5bc79-9a93-43f9-b5d9-b86c34867dd6", + "start": { + "$date": "2021-10-17T02:23:55.000Z" + }, + "end": { + "$date": "2021-10-17T03:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0b50998-f0ca-4741-b6b9-692b39bc89b7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T03:40:21.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:30.000Z" + }, + "events": [ + { + "uuid": "d2189117-e3ad-4491-bcb7-55e102db05ac", + "start": { + "$date": "2021-10-17T03:40:21.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c8f31e2-2033-454f-b81a-f348bce99356", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T03:39:52.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:32.000Z" + }, + "events": [ + { + "uuid": "92b44856-b723-4d8a-a5f1-6a3cbda546dc", + "start": { + "$date": "2021-10-17T03:39:52.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b6af337-8007-4262-895c-7d6602d30bae", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T03:39:46.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:28.000Z" + }, + "events": [ + { + "uuid": "1bf5f343-e0a2-41f1-ae65-77f4ce33b3c3", + "start": { + "$date": "2021-10-17T03:39:46.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7205c3a5-1817-4ee4-a969-7302b8ea55d5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-17T03:40:18.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:28.000Z" + }, + "events": [ + { + "uuid": "921d4d06-c117-4b13-acb0-8ba6d18b5c01", + "start": { + "$date": "2021-10-17T03:40:18.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "7eb26be5-6b90-44f9-8004-75a1dd9706fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T04:03:21.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:17.000Z" + }, + "events": [ + { + "uuid": "71f89563-8fb4-44f3-a2fd-7795dc9160cc", + "start": { + "$date": "2021-10-17T04:03:21.000Z" + }, + "end": { + "$date": "2021-10-17T04:07:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "1f76fcbb-b186-4f2c-8450-4ec7aba6469a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-17T04:06:44.000Z" + }, + "end": { + "$date": "2021-10-17T05:15:12.000Z" + }, + "events": [ + { + "uuid": "38975eb2-9dff-4bc8-bb26-0ac50e08fab2", + "start": { + "$date": "2021-10-17T04:06:44.000Z" + }, + "end": { + "$date": "2021-10-17T05:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f2cbcff-392c-4459-baa8-9414ff0c8c8d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T04:07:39.000Z" + }, + "end": { + "$date": "2021-10-17T04:13:10.000Z" + }, + "events": [ + { + "uuid": "6e9d89da-23fb-48b3-b372-8cbf3a0f94e2", + "start": { + "$date": "2021-10-17T04:07:39.000Z" + }, + "end": { + "$date": "2021-10-17T04:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "696e298b-e2dd-43ce-a325-d83a83f1c226", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T04:07:41.000Z" + }, + "end": { + "$date": "2021-10-17T10:24:56.000Z" + }, + "events": [ + { + "uuid": "b505f7ca-bea3-40f6-b3b7-82b82a7479c1", + "start": { + "$date": "2021-10-17T04:07:41.000Z" + }, + "end": { + "$date": "2021-10-17T04:20:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98edef65-df85-4ad7-94c6-b7a9f2476b9d", + "start": { + "$date": "2021-10-17T04:20:41.000Z" + }, + "end": { + "$date": "2021-10-17T04:22:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1716a91-a8d3-4fa2-8264-b7e9ac549296", + "start": { + "$date": "2021-10-17T04:22:41.000Z" + }, + "end": { + "$date": "2021-10-17T04:24:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4733afff-324b-40be-b3b9-1d31793403d9", + "start": { + "$date": "2021-10-17T04:24:41.000Z" + }, + "end": { + "$date": "2021-10-17T05:28:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c425de44-f411-4d52-99f0-9821d273643a", + "start": { + "$date": "2021-10-17T05:28:41.000Z" + }, + "end": { + "$date": "2021-10-17T07:05:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a578fad-f024-4dd8-a48c-cb02ff6d6280", + "start": { + "$date": "2021-10-17T07:05:41.000Z" + }, + "end": { + "$date": "2021-10-17T07:07:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c7d4382-3a38-4171-a932-0dda58ac6cbf", + "start": { + "$date": "2021-10-17T07:07:41.000Z" + }, + "end": { + "$date": "2021-10-17T07:25:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a15dfa2-11dd-4d2f-98f4-4f2d1d37a6dc", + "start": { + "$date": "2021-10-17T07:25:41.000Z" + }, + "end": { + "$date": "2021-10-17T09:00:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ee7016b-83b9-4001-8f6e-5b6b34c7c02f", + "start": { + "$date": "2021-10-17T09:00:41.000Z" + }, + "end": { + "$date": "2021-10-17T09:24:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9769bcde-b0a8-4a06-892f-6074554cb406", + "start": { + "$date": "2021-10-17T09:24:41.000Z" + }, + "end": { + "$date": "2021-10-17T09:28:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "975a37c1-aaa3-42d8-88f7-9a4e57abccbe", + "start": { + "$date": "2021-10-17T09:28:41.000Z" + }, + "end": { + "$date": "2021-10-17T10:24:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "b7746205-0c22-4626-9f69-b92befcf6897", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T04:14:08.000Z" + }, + "end": { + "$date": "2021-10-17T05:45:07.000Z" + }, + "events": [ + { + "uuid": "ae286e80-df0e-4560-bbb1-5808e5a349ff", + "start": { + "$date": "2021-10-17T04:14:08.000Z" + }, + "end": { + "$date": "2021-10-17T05:45:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cff3026a-b2a0-42cd-b24c-9eaefebd49c9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-17T04:14:19.000Z" + }, + "end": { + "$date": "2021-10-17T04:29:50.000Z" + }, + "events": [ + { + "uuid": "10c07c21-831d-4cc1-89ad-44d3404caff3", + "start": { + "$date": "2021-10-17T04:14:19.000Z" + }, + "end": { + "$date": "2021-10-17T04:29:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "d539473d-2fba-4097-8ecb-fc4dccbc002f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-17T05:13:31.000Z" + }, + "end": { + "$date": "2021-10-17T05:45:03.000Z" + }, + "events": [ + { + "uuid": "da83503d-e274-49e3-bbd7-36579747b16f", + "start": { + "$date": "2021-10-17T05:13:31.000Z" + }, + "end": { + "$date": "2021-10-17T05:45:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "5d99d8b2-b522-4dd2-94f3-12076a6eb905", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-17T05:13:58.000Z" + }, + "end": { + "$date": "2021-10-17T05:45:06.000Z" + }, + "events": [ + { + "uuid": "faabb07a-b26b-48da-bcda-66b2c6acf5a2", + "start": { + "$date": "2021-10-17T05:13:58.000Z" + }, + "end": { + "$date": "2021-10-17T05:45:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eac06c1e-cad2-4fdc-8b72-4e660b2eaff6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-17T05:40:27.000Z" + }, + "end": { + "$date": "2021-10-17T06:24:57.000Z" + }, + "events": [ + { + "uuid": "cc304f33-2a55-4b8f-b2e0-84ee2c391cb5", + "start": { + "$date": "2021-10-17T05:40:27.000Z" + }, + "end": { + "$date": "2021-10-17T06:24:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "702efb8c-9fbb-4f54-87e7-4a4220d39b87", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T05:46:17.000Z" + }, + "end": { + "$date": "2021-10-17T06:16:18.000Z" + }, + "events": [ + { + "uuid": "c4a6dea0-7eda-4045-bfa7-2c95558dcc97", + "start": { + "$date": "2021-10-17T05:46:17.000Z" + }, + "end": { + "$date": "2021-10-17T06:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "03b71814-5d37-4571-b40d-d47bec7727fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-17T05:46:48.000Z" + }, + "end": { + "$date": "2021-10-17T06:17:45.000Z" + }, + "events": [ + { + "uuid": "e5f132bb-4a51-4283-a482-61578957ef28", + "start": { + "$date": "2021-10-17T05:46:48.000Z" + }, + "end": { + "$date": "2021-10-17T06:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "3115ee01-2271-4094-abfb-0c28001afc4a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-17T05:48:22.000Z" + }, + "end": { + "$date": "2021-10-17T06:16:23.000Z" + }, + "events": [ + { + "uuid": "c7820de1-dabb-414f-bf2f-a4073d9ea2d0", + "start": { + "$date": "2021-10-17T05:48:22.000Z" + }, + "end": { + "$date": "2021-10-17T06:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5093641a-6660-459e-8e58-81b028c71305", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-17T06:19:39.000Z" + }, + "end": { + "$date": "2021-10-17T07:32:13.000Z" + }, + "events": [ + { + "uuid": "b4e82f65-e5d2-4d53-bee3-23fa4b32e4f4", + "start": { + "$date": "2021-10-17T06:19:39.000Z" + }, + "end": { + "$date": "2021-10-17T07:32:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88211d88-b231-48a4-9429-fed82d5e0baa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-17T07:40:40.000Z" + }, + "end": { + "$date": "2021-10-17T07:58:40.000Z" + }, + "events": [ + { + "uuid": "fcd4a059-82e7-4410-8db6-2ec2f856623f", + "start": { + "$date": "2021-10-17T07:40:40.000Z" + }, + "end": { + "$date": "2021-10-17T07:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3268772e-7766-4512-88a8-7eb5fcc887c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-17T08:19:48.000Z" + }, + "end": { + "$date": "2021-10-17T08:20:06.000Z" + }, + "events": [ + { + "uuid": "f6f2f88b-a10d-417c-96ab-dc7bb6229bc3", + "start": { + "$date": "2021-10-17T08:19:48.000Z" + }, + "end": { + "$date": "2021-10-17T08:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34e9b3d4-faba-42b0-a3e0-f9538e2afe28", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-17T08:00:56.000Z" + }, + "end": { + "$date": "2021-10-17T08:19:44.000Z" + }, + "events": [ + { + "uuid": "6aed7932-bcda-4be0-8304-df599174936b", + "start": { + "$date": "2021-10-17T08:00:56.000Z" + }, + "end": { + "$date": "2021-10-17T08:19:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36b6b48a-70af-4df1-bbe2-968f6e30b428", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T10:26:34.000Z" + }, + "end": { + "$date": "2021-10-17T10:47:38.000Z" + }, + "events": [ + { + "uuid": "4c68bf87-5a86-4610-9c53-99db7d82d161", + "start": { + "$date": "2021-10-17T10:26:34.000Z" + }, + "end": { + "$date": "2021-10-17T10:47:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b67dfe2a-57ce-4828-867a-0dc6f1deb2af", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T10:50:07.000Z" + }, + "end": { + "$date": "2021-10-17T11:12:22.000Z" + }, + "events": [ + { + "uuid": "0438ea6c-9536-4ea5-ab52-f1986fb9ebbe", + "start": { + "$date": "2021-10-17T10:50:07.000Z" + }, + "end": { + "$date": "2021-10-17T11:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a8fa9f3-5638-494b-9a62-4544b7ddd499", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T11:14:10.000Z" + }, + "end": { + "$date": "2021-10-17T11:40:20.000Z" + }, + "events": [ + { + "uuid": "ab1cadb5-70c9-42b3-bcdc-d1bb21a9175f", + "start": { + "$date": "2021-10-17T11:14:10.000Z" + }, + "end": { + "$date": "2021-10-17T11:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e144aaa-286d-4057-91af-ce9314827713", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T11:43:38.000Z" + }, + "end": { + "$date": "2021-10-17T12:08:02.000Z" + }, + "events": [ + { + "uuid": "e11beccb-952e-4a0f-8718-54181112aec6", + "start": { + "$date": "2021-10-17T11:43:38.000Z" + }, + "end": { + "$date": "2021-10-17T12:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bcb9835-dfdb-40b4-8e37-8435cb558c9b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T12:10:16.000Z" + }, + "end": { + "$date": "2021-10-17T12:24:38.000Z" + }, + "events": [ + { + "uuid": "d339fcbe-1cdf-4ec7-8c16-9c331607237f", + "start": { + "$date": "2021-10-17T12:10:16.000Z" + }, + "end": { + "$date": "2021-10-17T12:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a424255-8c4f-4c54-8b26-c4fe59cbd7df", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T12:27:18.000Z" + }, + "end": { + "$date": "2021-10-17T12:48:57.000Z" + }, + "events": [ + { + "uuid": "7f605a5a-793e-4fc2-8d4c-701aba176e4a", + "start": { + "$date": "2021-10-17T12:27:18.000Z" + }, + "end": { + "$date": "2021-10-17T12:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "130995e2-e893-4d50-9930-7e1f7dcca04c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T12:51:31.000Z" + }, + "end": { + "$date": "2021-10-17T13:06:39.000Z" + }, + "events": [ + { + "uuid": "8c45a013-f059-4622-adcf-49fbf9538d69", + "start": { + "$date": "2021-10-17T12:51:31.000Z" + }, + "end": { + "$date": "2021-10-17T13:06:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bf746cb-0411-4330-9ab7-bc00720abcff", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T13:10:33.000Z" + }, + "end": { + "$date": "2021-10-17T13:27:57.000Z" + }, + "events": [ + { + "uuid": "ee9ca224-d37f-434e-b580-0540984e968c", + "start": { + "$date": "2021-10-17T13:10:33.000Z" + }, + "end": { + "$date": "2021-10-17T13:27:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2344a7d7-d5b6-4acb-8f55-7a0c0aeaf5fd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T13:29:56.000Z" + }, + "end": { + "$date": "2021-10-17T13:58:25.000Z" + }, + "events": [ + { + "uuid": "dd4df653-0100-4ea0-866d-46caf73cf62f", + "start": { + "$date": "2021-10-17T13:29:56.000Z" + }, + "end": { + "$date": "2021-10-17T13:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3462af4-4810-41a4-bd31-2a684301ff5c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T14:01:14.000Z" + }, + "end": { + "$date": "2021-10-17T14:22:44.000Z" + }, + "events": [ + { + "uuid": "cc841e45-81e7-4bae-a8bd-7b92a0d29114", + "start": { + "$date": "2021-10-17T14:01:14.000Z" + }, + "end": { + "$date": "2021-10-17T14:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "ce6f292b-2fc0-452e-b1c3-85af47953ac4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-17T14:05:55.000Z" + }, + "end": { + "$date": "2021-10-17T14:46:20.000Z" + }, + "events": [ + { + "uuid": "6c4bc248-8b1c-4729-9810-c4764a1f040c", + "start": { + "$date": "2021-10-17T14:05:55.000Z" + }, + "end": { + "$date": "2021-10-17T14:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9275e2a3-3c72-4c9c-9a56-f8ded63a549c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T14:24:52.000Z" + }, + "end": { + "$date": "2021-10-17T14:42:17.000Z" + }, + "events": [ + { + "uuid": "e1c3c75b-de17-49ba-b867-203e54ace256", + "start": { + "$date": "2021-10-17T14:24:52.000Z" + }, + "end": { + "$date": "2021-10-17T14:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31912348-e004-4290-9900-11c2def70df4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T14:44:15.000Z" + }, + "end": { + "$date": "2021-10-17T15:18:40.000Z" + }, + "events": [ + { + "uuid": "c1cd892e-9e11-44cd-8cf3-989e378f6c2f", + "start": { + "$date": "2021-10-17T14:44:15.000Z" + }, + "end": { + "$date": "2021-10-17T15:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "b13b595d-236c-40e4-a01d-11f783529cda", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-17T14:51:16.000Z" + }, + "end": { + "$date": "2021-10-17T18:28:43.000Z" + }, + "events": [ + { + "uuid": "da7c48dd-52f6-4203-9746-a3521dcd044b", + "start": { + "$date": "2021-10-17T14:51:16.000Z" + }, + "end": { + "$date": "2021-10-17T18:28:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "395439e4-2102-492c-b3d2-8b02b281124a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T15:22:39.000Z" + }, + "end": { + "$date": "2021-10-17T15:39:02.000Z" + }, + "events": [ + { + "uuid": "a59be35a-4a11-4c6c-9f35-6e107b9c444a", + "start": { + "$date": "2021-10-17T15:22:39.000Z" + }, + "end": { + "$date": "2021-10-17T15:39:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ce5121f-5ce2-45fa-961a-6eb11e1463df", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-17T15:41:42.000Z" + }, + "end": { + "$date": "2021-10-17T16:06:44.000Z" + }, + "events": [ + { + "uuid": "0766844b-39c0-4cac-a930-adbced97c53b", + "start": { + "$date": "2021-10-17T15:41:42.000Z" + }, + "end": { + "$date": "2021-10-17T16:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "64bf37a3-e397-4afd-be41-19acacad8667", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T15:51:46.000Z" + }, + "end": { + "$date": "2021-10-17T15:54:55.000Z" + }, + "events": [ + { + "uuid": "01c5528c-d721-4bc1-9d2a-c6b71cc8ef40", + "start": { + "$date": "2021-10-17T15:51:46.000Z" + }, + "end": { + "$date": "2021-10-17T15:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52fde2ac-eb2c-474b-acc6-5d519343cbc2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T16:01:46.000Z" + }, + "end": { + "$date": "2021-10-17T16:19:46.000Z" + }, + "events": [ + { + "uuid": "16815615-5b84-4ab3-b8e9-6397eaa6743d", + "start": { + "$date": "2021-10-17T16:01:46.000Z" + }, + "end": { + "$date": "2021-10-17T16:19:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "5558977d-17fd-493f-a7fd-8e9fcd5445ad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T16:38:23.000Z" + }, + "end": { + "$date": "2021-10-17T16:42:58.000Z" + }, + "events": [ + { + "uuid": "1c836909-cea8-4646-9202-a950daab3d06", + "start": { + "$date": "2021-10-17T16:38:23.000Z" + }, + "end": { + "$date": "2021-10-17T16:42:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "c5fea664-7194-4a93-8640-d7fb7ede65af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T16:43:18.000Z" + }, + "end": { + "$date": "2021-10-17T17:54:16.000Z" + }, + "events": [ + { + "uuid": "cc82bd36-d9d6-43d3-8e5c-f53db9fdbcf7", + "start": { + "$date": "2021-10-17T16:43:18.000Z" + }, + "end": { + "$date": "2021-10-17T17:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c1e453a9-1af0-4d05-a964-4adb4f280566", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T16:54:49.000Z" + }, + "end": { + "$date": "2021-10-17T18:57:50.000Z" + }, + "events": [ + { + "uuid": "f76401d2-0904-44fa-9ed3-3ae82a365a39", + "start": { + "$date": "2021-10-17T16:54:49.000Z" + }, + "end": { + "$date": "2021-10-17T17:13:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "818130d3-9d07-4ef4-96f0-34dabd4be2e6", + "start": { + "$date": "2021-10-17T17:13:49.000Z" + }, + "end": { + "$date": "2021-10-17T17:34:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5172f615-72a8-4f3f-bd17-f3ef58afc3cf", + "start": { + "$date": "2021-10-17T17:34:49.000Z" + }, + "end": { + "$date": "2021-10-17T18:57:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "bcd2cbba-9eab-407b-a300-02e5c141a2d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T19:15:24.000Z" + }, + "end": { + "$date": "2021-10-17T20:18:41.000Z" + }, + "events": [ + { + "uuid": "e11ec027-c180-49a3-860a-a8c6edf53b84", + "start": { + "$date": "2021-10-17T19:15:24.000Z" + }, + "end": { + "$date": "2021-10-17T20:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26dfa694-5246-4f4f-adbc-d72b0b419ce2", + "uuid": "d2cd4f0c-3c22-44d5-bde5-52420c513549", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-17T19:53:25.000Z" + }, + "end": { + "$date": "2021-10-17T20:45:20.000Z" + }, + "events": [ + { + "uuid": "aacbe596-fa6f-4cab-ad55-da656ebd4e68", + "start": { + "$date": "2021-10-17T19:53:25.000Z" + }, + "end": { + "$date": "2021-10-17T20:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d73a498-ce6d-4ee2-94b3-c1e1f8aea0cb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-17T20:17:38.000Z" + }, + "end": { + "$date": "2021-10-17T20:47:40.000Z" + }, + "events": [ + { + "uuid": "5c766e8b-48c1-4daa-9a7f-d200035244d0", + "start": { + "$date": "2021-10-17T20:17:38.000Z" + }, + "end": { + "$date": "2021-10-17T20:47:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a61c7fda-78e4-4e3a-8dfb-bbb7698f90e3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-17T20:56:37.000Z" + }, + "end": { + "$date": "2021-10-17T21:28:30.000Z" + }, + "events": [ + { + "uuid": "b6069618-5250-4f32-84a2-105336352d93", + "start": { + "$date": "2021-10-17T20:56:37.000Z" + }, + "end": { + "$date": "2021-10-17T21:28:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2bd6896b-eaaa-40f1-a7a6-5fe9ac414e3d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-17T21:12:36.000Z" + }, + "end": { + "$date": "2021-10-18T01:10:10.000Z" + }, + "events": [ + { + "uuid": "f522b0fe-1e3d-489a-bb2b-b5c7a6c2bca6", + "start": { + "$date": "2021-10-17T21:12:36.000Z" + }, + "end": { + "$date": "2021-10-17T23:58:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9efb50e5-760e-43f4-bd6a-6a30bb1eac22", + "start": { + "$date": "2021-10-17T23:58:36.000Z" + }, + "end": { + "$date": "2021-10-18T00:03:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7f6ddbb8-7b68-4a55-b505-3373379c68cb", + "start": { + "$date": "2021-10-18T00:03:36.000Z" + }, + "end": { + "$date": "2021-10-18T01:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06a09b43-b97b-4050-be0a-37a1a75af891", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-17T21:46:58.000Z" + }, + "end": { + "$date": "2021-10-17T22:29:47.000Z" + }, + "events": [ + { + "uuid": "5cdf39c3-c322-47e6-9580-be27f4edee3a", + "start": { + "$date": "2021-10-17T21:46:58.000Z" + }, + "end": { + "$date": "2021-10-17T22:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "bf456a31-e238-4935-84b1-b09b068c2978", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-17T23:29:12.000Z" + }, + "end": { + "$date": "2021-10-18T05:02:58.000Z" + }, + "events": [ + { + "uuid": "fdeaee07-12c6-40e0-8a10-3ebf68368d99", + "start": { + "$date": "2021-10-17T23:29:12.000Z" + }, + "end": { + "$date": "2021-10-18T05:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c0f6edf-cc37-4546-9cea-d91b2b6724f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-18T00:21:58.000Z" + }, + "end": { + "$date": "2021-10-18T01:00:22.000Z" + }, + "events": [ + { + "uuid": "5c0b0b80-afe1-414c-ac46-4b775d9b79cf", + "start": { + "$date": "2021-10-18T00:21:58.000Z" + }, + "end": { + "$date": "2021-10-18T01:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ea308bbb-cbd0-4d8c-9b92-398a09959c5e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-18T00:43:28.000Z" + }, + "end": { + "$date": "2021-10-18T01:23:14.000Z" + }, + "events": [ + { + "uuid": "3b7627ba-340b-4ef2-80f8-9922a9b0a729", + "start": { + "$date": "2021-10-18T00:43:28.000Z" + }, + "end": { + "$date": "2021-10-18T01:23:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2e4635a-7757-40a1-901f-3d540e60b3b2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-18T01:00:50.000Z" + }, + "end": { + "$date": "2021-10-18T01:05:36.000Z" + }, + "events": [ + { + "uuid": "22898d92-e26f-449c-9ed3-8819fca6595c", + "start": { + "$date": "2021-10-18T01:00:50.000Z" + }, + "end": { + "$date": "2021-10-18T01:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c75460f1-f2d4-4112-b050-80aef74126ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-18T01:26:09.000Z" + }, + "end": { + "$date": "2021-10-18T01:27:25.000Z" + }, + "events": [ + { + "uuid": "e1a5ed82-685d-475e-bcf7-eb7d4fefecc5", + "start": { + "$date": "2021-10-18T01:26:09.000Z" + }, + "end": { + "$date": "2021-10-18T01:27:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "58f5c7ff-e497-44d3-980d-81d7cfc749a8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-18T01:27:04.000Z" + }, + "end": { + "$date": "2021-10-18T01:32:24.000Z" + }, + "events": [ + { + "uuid": "968ddb1f-46c5-452f-8aaa-f0d477297a9d", + "start": { + "$date": "2021-10-18T01:27:04.000Z" + }, + "end": { + "$date": "2021-10-18T01:32:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aab0ea5e-3330-4296-9488-067114010997", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-18T01:27:54.000Z" + }, + "end": { + "$date": "2021-10-18T05:14:34.000Z" + }, + "events": [ + { + "uuid": "33a7eeb3-72c7-4927-95b1-59203dd57244", + "start": { + "$date": "2021-10-18T01:27:54.000Z" + }, + "end": { + "$date": "2021-10-18T05:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "30b4e0cc-95a8-42ae-b91c-1e40e465019a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-18T01:33:40.000Z" + }, + "end": { + "$date": "2021-10-18T05:14:49.000Z" + }, + "events": [ + { + "uuid": "8e6f03f4-9c50-473b-94e6-cfdd1834460d", + "start": { + "$date": "2021-10-18T01:33:40.000Z" + }, + "end": { + "$date": "2021-10-18T05:14:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f897c9e9-21da-4433-8f0f-4229431c46c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-17T19:38:52.000Z" + }, + "end": { + "$date": "2021-10-18T04:21:14.000Z" + }, + "events": [ + { + "uuid": "9f8d153a-17a7-45a8-a776-bc93ee1a98b1", + "start": { + "$date": "2021-10-17T19:38:52.000Z" + }, + "end": { + "$date": "2021-10-18T04:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "ef775497-69b9-4986-988e-49e653091384", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-18T03:02:20.000Z" + }, + "end": { + "$date": "2021-10-18T04:12:53.000Z" + }, + "events": [ + { + "uuid": "669ee5d1-b2d3-4008-a314-b0aa2f94a9c3", + "start": { + "$date": "2021-10-18T03:02:20.000Z" + }, + "end": { + "$date": "2021-10-18T04:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36402d0e-fa88-4c45-97fa-9029386d2cf8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T03:16:16.000Z" + }, + "end": { + "$date": "2021-10-18T03:49:46.000Z" + }, + "events": [ + { + "uuid": "fa003100-f7c9-4a80-89a3-0d1036eaf5bb", + "start": { + "$date": "2021-10-18T03:16:16.000Z" + }, + "end": { + "$date": "2021-10-18T03:49:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "546abc15-8a21-4f61-ba97-b9a8047a873c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-18T03:32:29.000Z" + }, + "end": { + "$date": "2021-10-18T05:14:37.000Z" + }, + "events": [ + { + "uuid": "d2a31968-77fb-4325-83b9-f53054754990", + "start": { + "$date": "2021-10-18T03:32:29.000Z" + }, + "end": { + "$date": "2021-10-18T05:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82e46d6c-066a-4e83-a4f8-4fd6b18e31a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-18T03:37:19.000Z" + }, + "end": { + "$date": "2021-10-18T05:46:26.000Z" + }, + "events": [ + { + "uuid": "bd5aeb66-b1dc-4cb8-99b9-64049d209501", + "start": { + "$date": "2021-10-18T03:37:19.000Z" + }, + "end": { + "$date": "2021-10-18T05:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd0bf414-991a-426c-9787-ffa86625f8e3", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-18T03:44:17.000Z" + }, + "end": { + "$date": "2021-10-18T05:46:10.000Z" + }, + "events": [ + { + "uuid": "1aea35db-a861-4a51-abe9-2a013c983188", + "start": { + "$date": "2021-10-18T03:44:17.000Z" + }, + "end": { + "$date": "2021-10-18T05:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ecdf59f-2334-4e2f-a4d8-44e81660c7c1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T03:51:45.000Z" + }, + "end": { + "$date": "2021-10-18T04:13:33.000Z" + }, + "events": [ + { + "uuid": "35aea4b8-29a6-4de8-aa60-d45d48589ca0", + "start": { + "$date": "2021-10-18T03:51:45.000Z" + }, + "end": { + "$date": "2021-10-18T04:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f21019db-dd1b-4ea5-9918-c2e431e9ec44", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T04:17:43.000Z" + }, + "end": { + "$date": "2021-10-18T04:33:46.000Z" + }, + "events": [ + { + "uuid": "57f35a0a-36eb-4b04-8962-1382ee104948", + "start": { + "$date": "2021-10-18T04:17:43.000Z" + }, + "end": { + "$date": "2021-10-18T04:33:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55f2350d-2fec-4e42-b8c5-e69640e37941", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T05:01:17.000Z" + }, + "end": { + "$date": "2021-10-18T05:18:25.000Z" + }, + "events": [ + { + "uuid": "ef1e6f30-77ae-4d9f-a333-4bf8ab36dec0", + "start": { + "$date": "2021-10-18T05:01:17.000Z" + }, + "end": { + "$date": "2021-10-18T05:21:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "057f588a-cb53-4aaf-b09d-ce07277f6c7e", + "start": { + "$date": "2021-10-18T05:21:17.000Z" + }, + "end": { + "$date": "2021-10-18T05:22:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98724d1c-3490-4837-b5c4-bb02e0a0cb41", + "start": { + "$date": "2021-10-18T05:22:17.000Z" + }, + "end": { + "$date": "2021-10-18T05:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "090dab12-5ff1-4fc7-b0c9-1b3e063dc946", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T05:47:54.000Z" + }, + "end": { + "$date": "2021-10-18T06:02:52.000Z" + }, + "events": [ + { + "uuid": "a73cfae4-fc04-4fa3-bb13-e65611bef981", + "start": { + "$date": "2021-10-18T05:47:54.000Z" + }, + "end": { + "$date": "2021-10-18T06:02:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4f90797d-4400-4ccc-a18b-fa2dff4d05dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-18T05:43:30.000Z" + }, + "end": { + "$date": "2021-10-18T07:18:49.000Z" + }, + "events": [ + { + "uuid": "6528f28c-80f1-4904-b25a-b7171dbf29ab", + "start": { + "$date": "2021-10-18T05:43:30.000Z" + }, + "end": { + "$date": "2021-10-18T07:18:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95756ea2-6988-4119-bad2-86f7b3754b01", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T06:04:56.000Z" + }, + "end": { + "$date": "2021-10-18T06:24:05.000Z" + }, + "events": [ + { + "uuid": "4cacceee-36cc-43aa-a86b-5e57bcf7ba58", + "start": { + "$date": "2021-10-18T06:04:56.000Z" + }, + "end": { + "$date": "2021-10-18T06:24:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87531a87-853b-4bfc-858f-63d5e1b0b4fd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T06:29:14.000Z" + }, + "end": { + "$date": "2021-10-18T06:58:34.000Z" + }, + "events": [ + { + "uuid": "b717a43b-2645-4389-8689-2202b9400703", + "start": { + "$date": "2021-10-18T06:29:14.000Z" + }, + "end": { + "$date": "2021-10-18T06:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", + "uuid": "d54d5717-da8d-4b0a-909e-dfdf8d814ad7", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-18T06:33:11.000Z" + }, + "end": { + "$date": "2021-10-18T06:35:49.000Z" + }, + "events": [ + { + "uuid": "189959cb-1d30-414a-b263-0b327eb42191", + "start": { + "$date": "2021-10-18T06:33:11.000Z" + }, + "end": { + "$date": "2021-10-18T06:35:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "ac5e9248-319d-4ff4-bdad-5559eafacb5a", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-18T06:35:26.000Z" + }, + "end": { + "$date": "2021-10-18T06:38:04.000Z" + }, + "events": [ + { + "uuid": "6d02dad0-f4fb-469d-af62-8b6a5d82bc8d", + "start": { + "$date": "2021-10-18T06:35:26.000Z" + }, + "end": { + "$date": "2021-10-18T06:38:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "5d69b7f1-465a-4d15-aead-1dfddcd7866c", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-18T06:37:41.000Z" + }, + "end": { + "$date": "2021-10-18T07:32:35.000Z" + }, + "events": [ + { + "uuid": "e255965a-8558-47ae-9dec-ea52f34a8ea2", + "start": { + "$date": "2021-10-18T06:37:41.000Z" + }, + "end": { + "$date": "2021-10-18T07:32:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca447545-1045-4e9f-81ca-9da7aba2e566", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T07:01:03.000Z" + }, + "end": { + "$date": "2021-10-18T07:18:27.000Z" + }, + "events": [ + { + "uuid": "121a2743-4ceb-4388-b86b-d8e4f5c4cda9", + "start": { + "$date": "2021-10-18T07:01:03.000Z" + }, + "end": { + "$date": "2021-10-18T07:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "264ab163-90fd-4f66-985b-343745f5dc34", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T07:19:41.000Z" + }, + "end": { + "$date": "2021-10-18T08:42:10.000Z" + }, + "events": [ + { + "uuid": "be870ca2-e14d-46df-8d39-7168c5f096cc", + "start": { + "$date": "2021-10-18T07:19:41.000Z" + }, + "end": { + "$date": "2021-10-18T08:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", + "uuid": "56f6fecd-4257-4eff-9344-f71d9419d2a1", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-18T07:32:17.000Z" + }, + "end": { + "$date": "2021-10-18T07:38:24.000Z" + }, + "events": [ + { + "uuid": "3ca8a88c-f187-4629-9589-e6a690c83a7f", + "start": { + "$date": "2021-10-18T07:32:17.000Z" + }, + "end": { + "$date": "2021-10-18T07:38:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "2d06fa37-af2b-49de-a209-0abb04e58d40", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-18T11:13:52.000Z" + }, + "end": { + "$date": "2021-10-18T13:47:13.000Z" + }, + "events": [ + { + "uuid": "d0979ba7-fdde-4f5c-a922-f2a13b501697", + "start": { + "$date": "2021-10-18T11:13:52.000Z" + }, + "end": { + "$date": "2021-10-18T13:47:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98c11b38-bd61-404e-b1bd-8c6b6fccfb99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-18T15:39:29.000Z" + }, + "end": { + "$date": "2021-10-18T15:52:51.000Z" + }, + "events": [ + { + "uuid": "598909f8-6d1f-4dc7-848a-57b2ca5cad29", + "start": { + "$date": "2021-10-18T15:39:29.000Z" + }, + "end": { + "$date": "2021-10-18T15:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "5e18cc1e-5f5c-4296-8f2a-48fb44cf7955", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-18T17:20:04.000Z" + }, + "end": { + "$date": "2021-10-18T19:51:35.000Z" + }, + "events": [ + { + "uuid": "a93cd4c7-3ace-457e-85b7-d4c0a91392c8", + "start": { + "$date": "2021-10-18T17:20:04.000Z" + }, + "end": { + "$date": "2021-10-18T19:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "6fb8d9c0-b640-41c7-9a09-c5ab6e97f32a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-18T20:14:53.000Z" + }, + "end": { + "$date": "2021-10-18T20:22:44.000Z" + }, + "events": [ + { + "uuid": "d0288103-8a8a-4af2-abd2-c867827786bc", + "start": { + "$date": "2021-10-18T20:14:53.000Z" + }, + "end": { + "$date": "2021-10-18T20:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "54bc7b35-c1df-408d-80b3-ed1177a438ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-18T21:25:09.000Z" + }, + "end": { + "$date": "2021-10-19T00:13:40.000Z" + }, + "events": [ + { + "uuid": "ecdfb1e4-3809-43da-b971-5a6055b5ce49", + "start": { + "$date": "2021-10-18T21:25:09.000Z" + }, + "end": { + "$date": "2021-10-19T00:13:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "061650c1-26b7-4ea5-ac3b-690c4b7f96dc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-18T21:44:53.000Z" + }, + "end": { + "$date": "2021-10-18T21:54:39.000Z" + }, + "events": [ + { + "uuid": "aebf30ae-7bdf-49d0-8459-45b7c426c9a3", + "start": { + "$date": "2021-10-18T21:44:53.000Z" + }, + "end": { + "$date": "2021-10-18T21:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "b5a19038-75e6-4b94-9d2d-1b90468ea778", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-18T22:18:39.000Z" + }, + "end": { + "$date": "2021-10-18T22:40:52.000Z" + }, + "events": [ + { + "uuid": "4c90ad6a-8469-49ec-a052-7cc152b1570b", + "start": { + "$date": "2021-10-18T22:18:39.000Z" + }, + "end": { + "$date": "2021-10-18T22:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e95dd8f5-124b-4791-8ca0-2be188b8291a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-18T22:19:58.000Z" + }, + "end": { + "$date": "2021-10-18T23:08:48.000Z" + }, + "events": [ + { + "uuid": "eb2e9b62-68ce-4706-bc80-08453bfc9c64", + "start": { + "$date": "2021-10-18T22:19:58.000Z" + }, + "end": { + "$date": "2021-10-18T22:38:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f7344b0-a1b7-44ce-a9ae-7d789a08ad9c", + "start": { + "$date": "2021-10-18T22:38:58.000Z" + }, + "end": { + "$date": "2021-10-18T22:59:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef94f5ea-ddcb-4d55-a23d-ee7a0414bd66", + "start": { + "$date": "2021-10-18T22:59:58.000Z" + }, + "end": { + "$date": "2021-10-18T23:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "34eb8692-0b96-4476-846e-35d047625ec9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-18T22:42:48.000Z" + }, + "end": { + "$date": "2021-10-18T23:45:00.000Z" + }, + "events": [ + { + "uuid": "0845d77a-60a3-4f93-93c4-853210b11deb", + "start": { + "$date": "2021-10-18T22:42:48.000Z" + }, + "end": { + "$date": "2021-10-18T23:45:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d0aa90b2-dfef-4f46-856c-453989e9de48", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T00:32:28.000Z" + }, + "end": { + "$date": "2021-10-19T03:18:40.000Z" + }, + "events": [ + { + "uuid": "725cdeb2-6d41-4e80-86b1-ca93def1e6c3", + "start": { + "$date": "2021-10-19T00:32:28.000Z" + }, + "end": { + "$date": "2021-10-19T01:53:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c322608f-68bb-43d5-bbd9-aed58388dbd6", + "start": { + "$date": "2021-10-19T01:53:28.000Z" + }, + "end": { + "$date": "2021-10-19T01:54:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2342671-3db2-48a8-89a7-3c60d7181f41", + "start": { + "$date": "2021-10-19T01:54:28.000Z" + }, + "end": { + "$date": "2021-10-19T02:04:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73b4b556-f60c-45c8-8830-0dc8131f5c8b", + "start": { + "$date": "2021-10-19T02:04:28.000Z" + }, + "end": { + "$date": "2021-10-19T02:08:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f41ebe6a-b7fc-479a-b017-aaf11aff1469", + "start": { + "$date": "2021-10-19T02:08:28.000Z" + }, + "end": { + "$date": "2021-10-19T03:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "b2a68799-4d51-4445-b332-d64d18abfd98", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-19T00:57:11.000Z" + }, + "end": { + "$date": "2021-10-19T03:01:06.000Z" + }, + "events": [ + { + "uuid": "8accf80c-4a09-464d-885d-ae0ac89746d9", + "start": { + "$date": "2021-10-19T00:57:11.000Z" + }, + "end": { + "$date": "2021-10-19T03:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0cd4a766-9ffb-46e1-a9d5-38f188e6a69a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-19T01:14:46.000Z" + }, + "end": { + "$date": "2021-10-19T04:51:20.000Z" + }, + "events": [ + { + "uuid": "06f89e57-d8cd-4960-8109-ac106722a2dd", + "start": { + "$date": "2021-10-19T01:14:46.000Z" + }, + "end": { + "$date": "2021-10-19T04:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff6c4864-6fcf-4905-8f5b-c828d240515f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-19T02:05:50.000Z" + }, + "end": { + "$date": "2021-10-19T02:52:14.000Z" + }, + "events": [ + { + "uuid": "b63e1039-39ee-4de0-a418-cafcebda0d5e", + "start": { + "$date": "2021-10-19T02:05:50.000Z" + }, + "end": { + "$date": "2021-10-19T02:52:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "549306f4-9cb1-4a95-a14b-3dc0863e2641", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-19T02:03:52.000Z" + }, + "end": { + "$date": "2021-10-19T03:54:25.000Z" + }, + "events": [ + { + "uuid": "e6f79840-a2bd-47f9-8673-22aa9ac467cd", + "start": { + "$date": "2021-10-19T02:03:52.000Z" + }, + "end": { + "$date": "2021-10-19T03:54:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "137f2b66-1fe0-49dd-911c-05af33088fd6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-19T04:43:29.000Z" + }, + "end": { + "$date": "2021-10-19T05:13:21.000Z" + }, + "events": [ + { + "uuid": "a4d43a19-39b8-408a-9cfb-e93f1776be8f", + "start": { + "$date": "2021-10-19T04:43:29.000Z" + }, + "end": { + "$date": "2021-10-19T05:16:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff89db00-33a6-43a9-8206-34a0ee17c3e1", + "start": { + "$date": "2021-10-19T05:16:29.000Z" + }, + "end": { + "$date": "2021-10-19T05:21:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9cda94c9-eb8c-4d4c-b355-5dc3ff710d17", + "start": { + "$date": "2021-10-19T05:21:29.000Z" + }, + "end": { + "$date": "2021-10-19T05:23:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "713c6490-af38-4cfb-bfc9-a84c5e07a746", + "start": { + "$date": "2021-10-19T05:23:29.000Z" + }, + "end": { + "$date": "2021-10-19T06:05:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cff79e21-67df-44a1-9ae8-1b66e417c9a3", + "start": { + "$date": "2021-10-19T06:05:29.000Z" + }, + "end": { + "$date": "2021-10-19T06:07:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bf56cd3a-2699-4bff-b112-ee77d65facee", + "start": { + "$date": "2021-10-19T06:07:29.000Z" + }, + "end": { + "$date": "2021-10-19T06:11:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "65e4c782-6d73-498d-81eb-d70250228856", + "start": { + "$date": "2021-10-19T06:11:29.000Z" + }, + "end": { + "$date": "2021-10-19T06:22:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "353ebfac-b823-46b2-a9bc-bd84cb6c2249", + "start": { + "$date": "2021-10-19T06:22:29.000Z" + }, + "end": { + "$date": "2021-10-19T06:24:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b4b7152b-fca9-4524-9e55-03031b0d6a28", + "start": { + "$date": "2021-10-19T06:24:29.000Z" + }, + "end": { + "$date": "2021-10-19T05:13:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "34235ef3-9467-4101-8dab-67bf4c5c4814", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T03:18:50.000Z" + }, + "end": { + "$date": "2021-10-19T03:57:25.000Z" + }, + "events": [ + { + "uuid": "9a6e8f7c-31e6-4d69-a217-d528d0e3a089", + "start": { + "$date": "2021-10-19T03:18:50.000Z" + }, + "end": { + "$date": "2021-10-19T03:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "36be539f-f953-4a31-b75f-bb9f207d4ab7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-19T03:38:35.000Z" + }, + "end": { + "$date": "2021-10-19T03:53:29.000Z" + }, + "events": [ + { + "uuid": "21dfa757-9946-416d-918b-69677f98c383", + "start": { + "$date": "2021-10-19T03:38:35.000Z" + }, + "end": { + "$date": "2021-10-19T03:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "ea99ca71-f609-4d27-9dfb-2b3ef4f4c06b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-19T04:00:45.000Z" + }, + "end": { + "$date": "2021-10-19T11:54:21.000Z" + }, + "events": [ + { + "uuid": "9db1a574-8b1d-404e-8577-af2ca4ffab03", + "start": { + "$date": "2021-10-19T04:00:45.000Z" + }, + "end": { + "$date": "2021-10-19T11:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f56f2d3f-2db1-438a-a1ae-90c1469a3b2f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-19T05:22:02.000Z" + }, + "end": { + "$date": "2021-10-19T05:48:15.000Z" + }, + "events": [ + { + "uuid": "b37093f9-ecda-4554-ae41-78c2fbf5385d", + "start": { + "$date": "2021-10-19T05:22:02.000Z" + }, + "end": { + "$date": "2021-10-19T05:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "dd543e2f-eb38-4032-8905-08ef060dd8bc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-19T05:49:31.000Z" + }, + "end": { + "$date": "2021-10-19T06:34:41.000Z" + }, + "events": [ + { + "uuid": "d8c426f8-5e57-4b9a-b8ba-b538d1cde468", + "start": { + "$date": "2021-10-19T05:49:31.000Z" + }, + "end": { + "$date": "2021-10-19T06:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95ebd9bd-3884-4c84-bfd4-c71de4321f47", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-19T05:50:04.000Z" + }, + "end": { + "$date": "2021-10-19T06:32:09.000Z" + }, + "events": [ + { + "uuid": "9240bf86-c5c4-4fbf-acf5-1dfb44eb5ccc", + "start": { + "$date": "2021-10-19T05:50:04.000Z" + }, + "end": { + "$date": "2021-10-19T06:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "4ba006b6-9257-48a3-97e6-85c9e569ba9d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T21:32:37.000Z" + }, + "end": { + "$date": "2021-10-19T22:05:38.000Z" + }, + "events": [ + { + "uuid": "4c6ee9b5-a8c5-4152-b872-a8d84f83adec", + "start": { + "$date": "2021-10-19T21:32:37.000Z" + }, + "end": { + "$date": "2021-10-19T22:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3d4a0f36-1f23-462a-ab9d-f2fb8d341f4f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T22:07:08.000Z" + }, + "end": { + "$date": "2021-10-19T23:23:21.000Z" + }, + "events": [ + { + "uuid": "179ac38e-3f65-4fd4-9372-bccf8a4d748e", + "start": { + "$date": "2021-10-19T22:07:08.000Z" + }, + "end": { + "$date": "2021-10-19T23:23:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9a23509-484e-46a2-8ff9-4f78204cfaa6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-19T22:28:08.000Z" + }, + "end": { + "$date": "2021-10-19T22:49:58.000Z" + }, + "events": [ + { + "uuid": "157bfbe6-5740-49a5-88f7-50117425db52", + "start": { + "$date": "2021-10-19T22:28:08.000Z" + }, + "end": { + "$date": "2021-10-19T22:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "e66c3fa1-5e19-4815-a7ea-d29db854359a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-19T22:27:40.000Z" + }, + "end": { + "$date": "2021-10-19T22:36:14.000Z" + }, + "events": [ + { + "uuid": "3acacdc3-7863-4ffa-b6ff-d6c178efb522", + "start": { + "$date": "2021-10-19T22:27:40.000Z" + }, + "end": { + "$date": "2021-10-19T22:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "fb3e508b-b3d4-494f-8704-7695e214362a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-19T22:39:12.000Z" + }, + "end": { + "$date": "2021-10-19T23:06:07.000Z" + }, + "events": [ + { + "uuid": "a58f292f-53e5-4ddd-ac02-93aae7af6e7f", + "start": { + "$date": "2021-10-19T22:39:12.000Z" + }, + "end": { + "$date": "2021-10-19T23:06:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b93cf0c5-cf1d-4e53-9c8b-4c6c33c802d5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-19T22:49:07.000Z" + }, + "end": { + "$date": "2021-10-20T01:06:47.000Z" + }, + "events": [ + { + "uuid": "cfa872d9-56d1-4941-826e-8b767f588bd0", + "start": { + "$date": "2021-10-19T22:49:07.000Z" + }, + "end": { + "$date": "2021-10-20T01:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "637b8ff9-9b5e-4e51-b194-a4e3d828de19", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-19T22:50:11.000Z" + }, + "end": { + "$date": "2021-10-20T01:06:14.000Z" + }, + "events": [ + { + "uuid": "0325481f-3520-439b-8dcc-32b9db8dbef9", + "start": { + "$date": "2021-10-19T22:50:11.000Z" + }, + "end": { + "$date": "2021-10-20T01:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "14eb4b9e-95de-4e76-8ba0-f7a075fd6bc9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-19T23:13:56.000Z" + }, + "end": { + "$date": "2021-10-19T23:36:36.000Z" + }, + "events": [ + { + "uuid": "01d916a0-3157-431e-b41f-652ce9891c19", + "start": { + "$date": "2021-10-19T23:13:56.000Z" + }, + "end": { + "$date": "2021-10-19T23:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "05ad5b63-9db4-4b28-9cc5-27dcdc0ae228", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-19T23:22:20.000Z" + }, + "end": { + "$date": "2021-10-20T02:08:09.000Z" + }, + "events": [ + { + "uuid": "dc0a68b6-b107-42e7-9ca2-9c9af730619f", + "start": { + "$date": "2021-10-19T23:22:20.000Z" + }, + "end": { + "$date": "2021-10-20T00:54:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef4ba1a3-a09a-49ed-9038-67d3762256c9", + "start": { + "$date": "2021-10-20T00:54:20.000Z" + }, + "end": { + "$date": "2021-10-20T01:05:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a65d57ae-3a2c-4d6b-8115-44fd49710d81", + "start": { + "$date": "2021-10-20T01:05:20.000Z" + }, + "end": { + "$date": "2021-10-20T02:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b483c372-26de-4a55-9802-6dd514ce2067", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T23:29:52.000Z" + }, + "end": { + "$date": "2021-10-19T23:39:28.000Z" + }, + "events": [ + { + "uuid": "a33d9865-13d8-40bf-b22f-fc319bee0339", + "start": { + "$date": "2021-10-19T23:29:52.000Z" + }, + "end": { + "$date": "2021-10-19T23:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "675fde09-ea62-459d-b834-59813f738b0c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T23:39:33.000Z" + }, + "end": { + "$date": "2021-10-19T23:40:48.000Z" + }, + "events": [ + { + "uuid": "4f8227ce-bb43-4a07-a85b-45d0da7373a7", + "start": { + "$date": "2021-10-19T23:39:33.000Z" + }, + "end": { + "$date": "2021-10-19T23:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0bf9dc5c-3ae8-4677-b837-9608c78ccad2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T23:41:33.000Z" + }, + "end": { + "$date": "2021-10-19T23:42:53.000Z" + }, + "events": [ + { + "uuid": "b92a2b19-4401-4457-82cf-5b173f1da62f", + "start": { + "$date": "2021-10-19T23:41:33.000Z" + }, + "end": { + "$date": "2021-10-19T23:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "7a8dd5af-69df-4fb9-9af2-ba52a8dac40a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-19T23:48:29.000Z" + }, + "end": { + "$date": "2021-10-19T23:55:13.000Z" + }, + "events": [ + { + "uuid": "46f84171-7afc-452d-bd28-1f8aa0e9d44f", + "start": { + "$date": "2021-10-19T23:48:29.000Z" + }, + "end": { + "$date": "2021-10-19T23:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d211edc5-5c5f-4770-971c-8a5aa073d030", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-19T23:49:44.000Z" + }, + "end": { + "$date": "2021-10-20T01:35:59.000Z" + }, + "events": [ + { + "uuid": "8f55c2c5-5ee9-4351-ad59-d3b29becee35", + "start": { + "$date": "2021-10-19T23:49:44.000Z" + }, + "end": { + "$date": "2021-10-20T01:35:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "99504bfa-ee83-4ad5-8b94-4409287eb4af", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T00:17:57.000Z" + }, + "end": { + "$date": "2021-10-20T02:41:18.000Z" + }, + "events": [ + { + "uuid": "d6085f69-8c14-4a9d-9ed3-c6e8dffcb7d0", + "start": { + "$date": "2021-10-20T00:17:57.000Z" + }, + "end": { + "$date": "2021-10-20T02:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9ad63b0-9302-4ed5-af0b-54428c03f3f1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-20T00:30:09.000Z" + }, + "end": { + "$date": "2021-10-20T02:42:01.000Z" + }, + "events": [ + { + "uuid": "9e9a09ae-8a58-4985-9f02-83a386a27398", + "start": { + "$date": "2021-10-20T00:30:09.000Z" + }, + "end": { + "$date": "2021-10-20T02:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "26b95c72-17a0-4c86-838f-b0aa69e1307d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-20T00:33:06.000Z" + }, + "end": { + "$date": "2021-10-20T01:12:20.000Z" + }, + "events": [ + { + "uuid": "1ebac70d-4e38-492c-8034-ba4bcd154792", + "start": { + "$date": "2021-10-20T00:33:06.000Z" + }, + "end": { + "$date": "2021-10-20T01:12:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89881d95-cb2a-46d5-b087-b5a2f171cdf0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T01:02:23.000Z" + }, + "end": { + "$date": "2021-10-20T01:10:15.000Z" + }, + "events": [ + { + "uuid": "960303f2-efaa-4164-a234-56a8d0085f02", + "start": { + "$date": "2021-10-20T01:02:23.000Z" + }, + "end": { + "$date": "2021-10-20T01:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3fa88e28-9938-400b-9605-33bfa5934fe1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-20T01:07:14.000Z" + }, + "end": { + "$date": "2021-10-20T02:39:17.000Z" + }, + "events": [ + { + "uuid": "fac9f1eb-78ac-49bf-8e06-2371e9cf509f", + "start": { + "$date": "2021-10-20T01:07:14.000Z" + }, + "end": { + "$date": "2021-10-20T02:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3eedf87c-48dd-403d-aba8-24ab0a9cc308", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T01:07:38.000Z" + }, + "end": { + "$date": "2021-10-20T01:13:12.000Z" + }, + "events": [ + { + "uuid": "74a0f812-ec1f-4f23-a999-c891a78a6ea7", + "start": { + "$date": "2021-10-20T01:07:38.000Z" + }, + "end": { + "$date": "2021-10-20T01:13:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1bdc626e-827c-4d0b-af0f-9eeb8e61f3fc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-20T01:12:30.000Z" + }, + "end": { + "$date": "2021-10-20T02:40:22.000Z" + }, + "events": [ + { + "uuid": "8ed19f9f-4757-4a92-b9ec-be61eed834b2", + "start": { + "$date": "2021-10-20T01:12:30.000Z" + }, + "end": { + "$date": "2021-10-20T02:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c98e0320-2e32-4bfa-a6ce-90e02644091c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T01:13:54.000Z" + }, + "end": { + "$date": "2021-10-20T01:15:52.000Z" + }, + "events": [ + { + "uuid": "f58bff73-3ac5-4fc8-97eb-f1fdc3bf7b82", + "start": { + "$date": "2021-10-20T01:13:54.000Z" + }, + "end": { + "$date": "2021-10-20T01:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ee43baa7-3bef-4b94-9836-ba61d8974987", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T01:16:19.000Z" + }, + "end": { + "$date": "2021-10-20T02:39:16.000Z" + }, + "events": [ + { + "uuid": "007ffe95-5040-41f7-bb2d-de60206598b7", + "start": { + "$date": "2021-10-20T01:16:19.000Z" + }, + "end": { + "$date": "2021-10-20T02:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "92fc92ef-6251-43a0-8f0a-dca374aaff00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T01:22:59.000Z" + }, + "end": { + "$date": "2021-10-20T01:24:34.000Z" + }, + "events": [ + { + "uuid": "7661a01f-3c8e-4042-b274-0a8595e81056", + "start": { + "$date": "2021-10-20T01:22:59.000Z" + }, + "end": { + "$date": "2021-10-20T01:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "99e7699b-7377-4940-8a3e-c5851536392d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T01:59:01.000Z" + }, + "end": { + "$date": "2021-10-20T02:14:26.000Z" + }, + "events": [ + { + "uuid": "c8534836-a6a5-41d8-ae80-5848eb3a3783", + "start": { + "$date": "2021-10-20T01:59:01.000Z" + }, + "end": { + "$date": "2021-10-20T02:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "021de5b0-30eb-46f7-aecb-3be586db4c4e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T01:42:25.000Z" + }, + "end": { + "$date": "2021-10-20T01:47:16.000Z" + }, + "events": [ + { + "uuid": "42d1437b-5627-4190-9e3f-f5dea75fa5c8", + "start": { + "$date": "2021-10-20T01:42:25.000Z" + }, + "end": { + "$date": "2021-10-20T01:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "428dbee6-4506-4b46-b841-6b66febf2eaf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T01:47:30.000Z" + }, + "end": { + "$date": "2021-10-20T02:10:44.000Z" + }, + "events": [ + { + "uuid": "fe7860ba-6b1b-4056-b82e-12f7af7566da", + "start": { + "$date": "2021-10-20T01:47:30.000Z" + }, + "end": { + "$date": "2021-10-20T02:10:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "29bc0a96-7271-4999-becd-e108c86b4f6d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-20T02:00:06.000Z" + }, + "end": { + "$date": "2021-10-20T02:35:49.000Z" + }, + "events": [ + { + "uuid": "1fe07072-36da-4b0f-b253-ecee5131c530", + "start": { + "$date": "2021-10-20T02:00:06.000Z" + }, + "end": { + "$date": "2021-10-20T02:35:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "f54358f0-d03c-494d-808a-f0b847728619", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T02:13:28.000Z" + }, + "end": { + "$date": "2021-10-20T02:33:27.000Z" + }, + "events": [ + { + "uuid": "5c2ea3df-a968-4f0c-9e3c-44794c47e81f", + "start": { + "$date": "2021-10-20T02:13:28.000Z" + }, + "end": { + "$date": "2021-10-20T02:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9043b1ef-0bbd-4d49-b2d9-6078c9cd4ecf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T02:16:26.000Z" + }, + "end": { + "$date": "2021-10-20T02:17:31.000Z" + }, + "events": [ + { + "uuid": "cb92f728-4d9f-4f02-b8a6-6e139a2bb65e", + "start": { + "$date": "2021-10-20T02:16:26.000Z" + }, + "end": { + "$date": "2021-10-20T02:17:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "31f931de-a324-4ffa-8e36-02c325bcdd89", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T02:19:57.000Z" + }, + "end": { + "$date": "2021-10-20T02:23:31.000Z" + }, + "events": [ + { + "uuid": "c12c2b0a-0f97-45e2-9fc8-74d792f0c01a", + "start": { + "$date": "2021-10-20T02:19:57.000Z" + }, + "end": { + "$date": "2021-10-20T02:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1379f3c0-77a6-45ea-b106-de8c94e6749a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T02:23:37.000Z" + }, + "end": { + "$date": "2021-10-20T02:32:42.000Z" + }, + "events": [ + { + "uuid": "4030c8e6-971e-40db-aacd-15e4d0be6916", + "start": { + "$date": "2021-10-20T02:23:37.000Z" + }, + "end": { + "$date": "2021-10-20T02:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2011c9dc-4a9a-499c-9411-f47fbce24f60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T02:23:37.000Z" + }, + "end": { + "$date": "2021-10-20T02:35:11.000Z" + }, + "events": [ + { + "uuid": "ea770234-db1c-41c8-bcdc-82231306f4be", + "start": { + "$date": "2021-10-20T02:23:37.000Z" + }, + "end": { + "$date": "2021-10-20T02:35:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4a494b29-252e-4900-9ee2-95de89089232", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T02:35:42.000Z" + }, + "end": { + "$date": "2021-10-20T02:37:31.000Z" + }, + "events": [ + { + "uuid": "495c0895-7213-4427-bca6-30dceeb9447f", + "start": { + "$date": "2021-10-20T02:35:42.000Z" + }, + "end": { + "$date": "2021-10-20T02:37:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "15c22553-887c-4bbb-8cd6-9d68408a0520", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T02:37:37.000Z" + }, + "end": { + "$date": "2021-10-20T02:38:51.000Z" + }, + "events": [ + { + "uuid": "1fb8a8d8-e013-4cec-8462-52ec63fdb990", + "start": { + "$date": "2021-10-20T02:37:37.000Z" + }, + "end": { + "$date": "2021-10-20T02:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3db341ed-fa26-4798-9e0f-5be0783497d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-20T02:40:25.000Z" + }, + "end": { + "$date": "2021-10-20T04:32:47.000Z" + }, + "events": [ + { + "uuid": "c8d47af6-a67c-47a3-9c0f-20a5697d3d4e", + "start": { + "$date": "2021-10-20T02:40:25.000Z" + }, + "end": { + "$date": "2021-10-20T04:32:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "670df0b9-34ce-48f9-80e9-45ab02ac2661", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T04:14:30.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:48.000Z" + }, + "events": [ + { + "uuid": "8072a974-5bce-48cf-981c-228b4e15befe", + "start": { + "$date": "2021-10-20T04:14:30.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "61970a17-d49d-462b-9d61-2a2e839f2c56", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T02:47:09.000Z" + }, + "end": { + "$date": "2021-10-20T03:33:05.000Z" + }, + "events": [ + { + "uuid": "7d0a3091-9a34-4930-bd18-302219671219", + "start": { + "$date": "2021-10-20T02:47:09.000Z" + }, + "end": { + "$date": "2021-10-20T03:33:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1f89b62f-46e6-491a-9a81-3a5779f9687c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-20T02:44:22.000Z" + }, + "end": { + "$date": "2021-10-20T03:52:19.000Z" + }, + "events": [ + { + "uuid": "70879f26-6216-40c9-9ca5-8c31cf357274", + "start": { + "$date": "2021-10-20T02:44:22.000Z" + }, + "end": { + "$date": "2021-10-20T03:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec1e9e33-8831-4603-83f6-beb0cb7a4bf2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T02:46:57.000Z" + }, + "end": { + "$date": "2021-10-20T03:33:06.000Z" + }, + "events": [ + { + "uuid": "21081fc7-0928-493d-a137-0a4f3ae543d4", + "start": { + "$date": "2021-10-20T02:46:57.000Z" + }, + "end": { + "$date": "2021-10-20T03:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3ae638f-402b-4af1-b1fd-a83e2171bc83", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T04:14:28.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:42.000Z" + }, + "events": [ + { + "uuid": "5162bcc0-72a6-489b-b9dd-b1b53a26e051", + "start": { + "$date": "2021-10-20T04:14:28.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2be7d4bc-9007-441b-a443-32823ff023e3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-20T03:33:00.000Z" + }, + "end": { + "$date": "2021-10-20T03:34:24.000Z" + }, + "events": [ + { + "uuid": "d3190f2e-3dd8-45de-adce-934f797fd83c", + "start": { + "$date": "2021-10-20T03:33:00.000Z" + }, + "end": { + "$date": "2021-10-20T03:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12306131-4fed-4ced-96f9-ee55f58e345b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-20T02:46:34.000Z" + }, + "end": { + "$date": "2021-10-20T03:33:05.000Z" + }, + "events": [ + { + "uuid": "3d68f439-78d2-422e-9383-ec87bb25b199", + "start": { + "$date": "2021-10-20T02:46:34.000Z" + }, + "end": { + "$date": "2021-10-20T03:33:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "daee9029-36b0-42fd-b039-329f61368e3a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-20T02:46:55.000Z" + }, + "end": { + "$date": "2021-10-20T04:32:58.000Z" + }, + "events": [ + { + "uuid": "3a482dbb-1b8c-4ffc-988a-1fe1862f0b39", + "start": { + "$date": "2021-10-20T02:46:55.000Z" + }, + "end": { + "$date": "2021-10-20T04:32:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e3aad7d-e5ee-40c8-b051-5706965871dc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T03:36:55.000Z" + }, + "end": { + "$date": "2021-10-20T03:53:35.000Z" + }, + "events": [ + { + "uuid": "9828721a-9101-4a4c-89b3-c32c3a34a0c8", + "start": { + "$date": "2021-10-20T03:36:55.000Z" + }, + "end": { + "$date": "2021-10-20T03:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b618943d-9d4d-4a65-b1fa-46723e30eafe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-20T03:37:11.000Z" + }, + "end": { + "$date": "2021-10-20T03:53:37.000Z" + }, + "events": [ + { + "uuid": "7afb8a13-07dd-454c-a326-6aa95289d6b1", + "start": { + "$date": "2021-10-20T03:37:11.000Z" + }, + "end": { + "$date": "2021-10-20T03:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16de1d12-cd17-41eb-a9a3-0b63643eaf2c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-20T03:36:50.000Z" + }, + "end": { + "$date": "2021-10-20T03:53:36.000Z" + }, + "events": [ + { + "uuid": "8ffcafa9-529d-4f7d-b939-ba525d38ee23", + "start": { + "$date": "2021-10-20T03:36:50.000Z" + }, + "end": { + "$date": "2021-10-20T03:53:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e4b7c65-e2e1-4a02-a860-1ab8e6122ece", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-20T03:57:36.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:36.000Z" + }, + "events": [ + { + "uuid": "4a870c6c-433e-458c-852f-26a8c0879fe2", + "start": { + "$date": "2021-10-20T03:57:36.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92254d4f-1405-4bfd-9007-5a2eb93748fe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T03:57:35.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:31.000Z" + }, + "events": [ + { + "uuid": "34162c47-754e-42e3-867d-807c1ec7585b", + "start": { + "$date": "2021-10-20T03:57:35.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a6a41dd-a1b2-4b70-a195-76a2056592e6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-20T03:57:56.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:37.000Z" + }, + "events": [ + { + "uuid": "0e337d8b-aba6-4511-9430-302a724badc7", + "start": { + "$date": "2021-10-20T03:57:56.000Z" + }, + "end": { + "$date": "2021-10-20T04:14:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "06891cf5-f44a-4858-93e5-88405464a162", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T04:14:53.000Z" + }, + "end": { + "$date": "2021-10-20T04:44:07.000Z" + }, + "events": [ + { + "uuid": "cda7554d-659d-4641-9f84-110e84e6e976", + "start": { + "$date": "2021-10-20T04:14:53.000Z" + }, + "end": { + "$date": "2021-10-20T04:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "6d247dd2-11b0-4431-a900-1a5af027da11", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T04:18:35.000Z" + }, + "end": { + "$date": "2021-10-20T04:24:22.000Z" + }, + "events": [ + { + "uuid": "8f62ce45-527a-4580-8392-ce875754f5b7", + "start": { + "$date": "2021-10-20T04:18:35.000Z" + }, + "end": { + "$date": "2021-10-20T04:24:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2331485e-d9d8-476d-8786-3b8f3dd8bee9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-20T04:36:27.000Z" + }, + "end": { + "$date": "2021-10-20T05:29:33.000Z" + }, + "events": [ + { + "uuid": "e6e3efb5-bc66-47ec-ba9a-2a455b0ede79", + "start": { + "$date": "2021-10-20T04:36:27.000Z" + }, + "end": { + "$date": "2021-10-20T05:29:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "49b9e5c0-5f3a-4fbb-ac0e-d971192f1727", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T04:36:36.000Z" + }, + "end": { + "$date": "2021-10-20T05:21:07.000Z" + }, + "events": [ + { + "uuid": "e43d219d-16c5-40b7-a196-c0f6f8c4bd19", + "start": { + "$date": "2021-10-20T04:36:36.000Z" + }, + "end": { + "$date": "2021-10-20T05:21:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a159f9be-4004-4742-bbdf-1fa05f207d37", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T04:47:49.000Z" + }, + "end": { + "$date": "2021-10-20T05:30:17.000Z" + }, + "events": [ + { + "uuid": "a31eea30-885a-43f4-adc5-b5fbfe98571c", + "start": { + "$date": "2021-10-20T04:47:49.000Z" + }, + "end": { + "$date": "2021-10-20T05:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d729da17-5703-45a4-a7bd-d59c314bc881", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T05:03:51.000Z" + }, + "end": { + "$date": "2021-10-20T05:07:06.000Z" + }, + "events": [ + { + "uuid": "39dce8fb-f37f-439e-80bb-e8d05049afa2", + "start": { + "$date": "2021-10-20T05:03:51.000Z" + }, + "end": { + "$date": "2021-10-20T05:07:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "632004ef-a2d0-4145-8b98-f13f132028ee", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-20T05:04:36.000Z" + }, + "end": { + "$date": "2021-10-20T05:11:32.000Z" + }, + "events": [ + { + "uuid": "28164d70-5a17-46ea-8265-acfb0fb10972", + "start": { + "$date": "2021-10-20T05:04:36.000Z" + }, + "end": { + "$date": "2021-10-20T05:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ca311851-041e-497d-994d-c3baa245fc20", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T05:08:51.000Z" + }, + "end": { + "$date": "2021-10-20T05:11:01.000Z" + }, + "events": [ + { + "uuid": "eea23039-20c8-4b13-8826-31f0c6913dcc", + "start": { + "$date": "2021-10-20T05:08:51.000Z" + }, + "end": { + "$date": "2021-10-20T05:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1203578a-a43f-494f-9cda-72940bc50113", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-20T05:11:36.000Z" + }, + "end": { + "$date": "2021-10-20T08:15:55.000Z" + }, + "events": [ + { + "uuid": "da5294e6-60e6-4582-bd77-cbbb94ebaf3d", + "start": { + "$date": "2021-10-20T05:11:36.000Z" + }, + "end": { + "$date": "2021-10-20T08:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a6afea9d-7951-4b5d-bfc8-2469c967dc24", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-20T05:12:16.000Z" + }, + "end": { + "$date": "2021-10-20T08:15:36.000Z" + }, + "events": [ + { + "uuid": "2ffb9225-0d94-4310-9626-2875a3711f4c", + "start": { + "$date": "2021-10-20T05:12:16.000Z" + }, + "end": { + "$date": "2021-10-20T08:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "74605aa6-1aad-4266-9287-baffc1e98418", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-20T05:29:38.000Z" + }, + "end": { + "$date": "2021-10-20T06:34:34.000Z" + }, + "events": [ + { + "uuid": "58f95905-c1bb-41d4-9d0e-0e886ecab12a", + "start": { + "$date": "2021-10-20T05:29:38.000Z" + }, + "end": { + "$date": "2021-10-20T06:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3eb6dace-4a65-4747-ae55-bb2b95d4ab6e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T05:33:21.000Z" + }, + "end": { + "$date": "2021-10-20T05:37:28.000Z" + }, + "events": [ + { + "uuid": "00b5af52-d10a-46ee-acd4-67ccd4c7a185", + "start": { + "$date": "2021-10-20T05:33:21.000Z" + }, + "end": { + "$date": "2021-10-20T05:37:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "88248bdb-6a60-42f1-a749-6564ce826d66", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-20T05:38:27.000Z" + }, + "end": { + "$date": "2021-10-20T06:00:16.000Z" + }, + "events": [ + { + "uuid": "6457644c-c82c-414e-b6e2-c13ccb016353", + "start": { + "$date": "2021-10-20T05:38:27.000Z" + }, + "end": { + "$date": "2021-10-20T06:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0fd7fac-79bf-4ea2-99dd-47057dec3592", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T06:56:45.000Z" + }, + "end": { + "$date": "2021-10-20T07:10:36.000Z" + }, + "events": [ + { + "uuid": "ffe628b9-d036-423d-a6a2-19d0059f21cf", + "start": { + "$date": "2021-10-20T06:56:45.000Z" + }, + "end": { + "$date": "2021-10-20T07:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e98b187-61ab-4bc6-bf9e-3c332a6997cb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T07:13:07.000Z" + }, + "end": { + "$date": "2021-10-20T07:30:59.000Z" + }, + "events": [ + { + "uuid": "91530f3e-46b4-49eb-89ad-3929b18c5d3a", + "start": { + "$date": "2021-10-20T07:13:07.000Z" + }, + "end": { + "$date": "2021-10-20T07:30:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b1285bb-52ad-4422-bc0f-b67906f7cf76", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T07:34:14.000Z" + }, + "end": { + "$date": "2021-10-20T07:54:22.000Z" + }, + "events": [ + { + "uuid": "fadc1d3a-3d17-4b58-844f-e9c7a0111745", + "start": { + "$date": "2021-10-20T07:34:14.000Z" + }, + "end": { + "$date": "2021-10-20T07:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ca116a6-45f9-4d4c-aea3-2a154c1d4f92", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T07:56:52.000Z" + }, + "end": { + "$date": "2021-10-20T08:12:59.000Z" + }, + "events": [ + { + "uuid": "a5361fd8-a029-4869-83cd-b22b5e2d3dca", + "start": { + "$date": "2021-10-20T07:56:52.000Z" + }, + "end": { + "$date": "2021-10-20T08:12:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8c2627d-b37b-410b-8534-de7c03c5a6ba", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T08:16:09.000Z" + }, + "end": { + "$date": "2021-10-20T08:37:17.000Z" + }, + "events": [ + { + "uuid": "75e909de-59af-48a2-b787-65873a7779b0", + "start": { + "$date": "2021-10-20T08:16:09.000Z" + }, + "end": { + "$date": "2021-10-20T08:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c01e9b8-8c0f-4b3d-a998-9d61b15a75af", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T09:07:29.000Z" + }, + "end": { + "$date": "2021-10-20T09:30:01.000Z" + }, + "events": [ + { + "uuid": "3d773446-a918-4428-acdf-a18dd44f5a31", + "start": { + "$date": "2021-10-20T09:07:29.000Z" + }, + "end": { + "$date": "2021-10-20T09:23:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ee57ab5-1bd0-4975-b8b5-e774a727047c", + "start": { + "$date": "2021-10-20T09:23:29.000Z" + }, + "end": { + "$date": "2021-10-20T09:24:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a048ab94-0f53-400c-9326-12e3747da986", + "start": { + "$date": "2021-10-20T09:24:29.000Z" + }, + "end": { + "$date": "2021-10-20T09:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d95b54b-0ead-4670-8123-49329d3404e1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T09:32:04.000Z" + }, + "end": { + "$date": "2021-10-20T09:51:54.000Z" + }, + "events": [ + { + "uuid": "b10995aa-40bb-4192-b403-8a19bdd86763", + "start": { + "$date": "2021-10-20T09:32:04.000Z" + }, + "end": { + "$date": "2021-10-20T09:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c87f6fab-e28d-4602-b454-5d9bdb494a12", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T09:57:47.000Z" + }, + "end": { + "$date": "2021-10-20T10:07:05.000Z" + }, + "events": [ + { + "uuid": "c4c71bee-d147-4774-af1f-5245ad713827", + "start": { + "$date": "2021-10-20T09:57:47.000Z" + }, + "end": { + "$date": "2021-10-20T10:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d563bf02-54cf-49af-ba40-11defad74ecd", + "uuid": "c6de4c33-40e0-423e-bab1-ebbd29702ae5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T10:16:46.000Z" + }, + "end": { + "$date": "2021-10-20T11:02:45.000Z" + }, + "events": [ + { + "uuid": "47847faa-23c8-4b15-af8b-101abe53de05", + "start": { + "$date": "2021-10-20T10:16:46.000Z" + }, + "end": { + "$date": "2021-10-20T11:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a911dac3-1703-40e4-9402-76bd35603d38", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T11:08:01.000Z" + }, + "end": { + "$date": "2021-10-20T11:24:53.000Z" + }, + "events": [ + { + "uuid": "e93a6e0e-6d73-47d7-bcf0-0784ff76ba3d", + "start": { + "$date": "2021-10-20T11:08:01.000Z" + }, + "end": { + "$date": "2021-10-20T11:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff437fb5-4073-4bc0-936b-4865139dd221", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T11:29:59.000Z" + }, + "end": { + "$date": "2021-10-20T12:09:03.000Z" + }, + "events": [ + { + "uuid": "ecf965cb-06e1-4416-af27-f483a7eae1e7", + "start": { + "$date": "2021-10-20T11:29:59.000Z" + }, + "end": { + "$date": "2021-10-20T12:09:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a680dad6-22bf-445b-bc6b-8718eaba6dbc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T12:31:07.000Z" + }, + "end": { + "$date": "2021-10-20T12:47:34.000Z" + }, + "events": [ + { + "uuid": "3f579ff4-6b33-4a3d-83ba-b4b20e18b654", + "start": { + "$date": "2021-10-20T12:31:07.000Z" + }, + "end": { + "$date": "2021-10-20T12:42:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9553abf-40fe-4a06-8339-b5ae90b2370f", + "start": { + "$date": "2021-10-20T12:42:07.000Z" + }, + "end": { + "$date": "2021-10-20T12:43:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97bae0f1-e67a-4194-a709-377e310861bd", + "start": { + "$date": "2021-10-20T12:43:07.000Z" + }, + "end": { + "$date": "2021-10-20T12:47:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84af5383-f456-4e39-9243-cd4e4d2b94b0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T12:53:05.000Z" + }, + "end": { + "$date": "2021-10-20T13:11:16.000Z" + }, + "events": [ + { + "uuid": "908847f4-4133-466c-8a57-a290bcdd6096", + "start": { + "$date": "2021-10-20T12:53:05.000Z" + }, + "end": { + "$date": "2021-10-20T13:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52f948e7-08b7-4a0a-82e8-3cac2e243335", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T13:16:53.000Z" + }, + "end": { + "$date": "2021-10-20T13:55:18.000Z" + }, + "events": [ + { + "uuid": "40f223bd-339f-4ecf-b5e6-866818eed1ae", + "start": { + "$date": "2021-10-20T13:16:53.000Z" + }, + "end": { + "$date": "2021-10-20T13:55:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8ccdb93f-ce00-4963-b67a-c62f36bb559b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-20T13:55:37.000Z" + }, + "end": { + "$date": "2021-10-20T14:11:33.000Z" + }, + "events": [ + { + "uuid": "99741a2f-81f8-46a5-abd2-9df67ea588b7", + "start": { + "$date": "2021-10-20T13:55:37.000Z" + }, + "end": { + "$date": "2021-10-20T14:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0801c6fe-ddb7-4c23-86c9-3e7e99a3307a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-20T14:01:49.000Z" + }, + "end": { + "$date": "2021-10-20T14:23:52.000Z" + }, + "events": [ + { + "uuid": "475ce2d5-571f-4cf5-abea-547c3918d80a", + "start": { + "$date": "2021-10-20T14:01:49.000Z" + }, + "end": { + "$date": "2021-10-20T14:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "8007448e-4602-4ec7-b918-8d831a2ce3aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T14:40:52.000Z" + }, + "end": { + "$date": "2021-10-20T15:48:28.000Z" + }, + "events": [ + { + "uuid": "cd69fbf4-b373-4f35-9b83-6b1c18a78f37", + "start": { + "$date": "2021-10-20T14:40:52.000Z" + }, + "end": { + "$date": "2021-10-20T15:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "ee438041-6044-4b97-bf15-220364e46e05", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T16:12:57.000Z" + }, + "end": { + "$date": "2021-10-20T16:30:36.000Z" + }, + "events": [ + { + "uuid": "bea358e1-faf4-4a93-92f0-d87d51d14ddf", + "start": { + "$date": "2021-10-20T16:12:57.000Z" + }, + "end": { + "$date": "2021-10-20T16:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "e78f468d-bb45-4fd4-980a-3b182f388f11", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-20T17:14:28.000Z" + }, + "end": { + "$date": "2021-10-20T21:10:44.000Z" + }, + "events": [ + { + "uuid": "3d27343f-6512-4dc3-949d-851d0570576e", + "start": { + "$date": "2021-10-20T17:14:28.000Z" + }, + "end": { + "$date": "2021-10-20T21:10:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "181ff1d5-25e1-43b0-94f9-998c10bec906", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T18:22:58.000Z" + }, + "end": { + "$date": "2021-10-20T18:49:38.000Z" + }, + "events": [ + { + "uuid": "b2514567-fc87-488c-ac11-39c13e02239f", + "start": { + "$date": "2021-10-20T18:22:58.000Z" + }, + "end": { + "$date": "2021-10-20T18:49:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "e8ca4606-810a-4e52-8051-ff37497dd4d8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T18:47:56.000Z" + }, + "end": { + "$date": "2021-10-20T20:26:25.000Z" + }, + "events": [ + { + "uuid": "bd42a37e-0390-44e7-bf4c-ee1fb441cbb1", + "start": { + "$date": "2021-10-20T18:47:56.000Z" + }, + "end": { + "$date": "2021-10-20T20:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "eb9918b1-a98f-4771-9eba-7f9bc1923780", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-20T18:49:51.000Z" + }, + "end": { + "$date": "2021-10-20T20:12:53.000Z" + }, + "events": [ + { + "uuid": "82221dda-0d4e-4892-b511-5f1ebcd12f1a", + "start": { + "$date": "2021-10-20T18:49:51.000Z" + }, + "end": { + "$date": "2021-10-20T20:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "468787a7-28c9-4bbd-bf38-be2aabc615b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-20T21:24:10.000Z" + }, + "end": { + "$date": "2021-10-20T22:05:08.000Z" + }, + "events": [ + { + "uuid": "e8934a3d-0deb-4c36-bfc9-545d93cb4ad0", + "start": { + "$date": "2021-10-20T21:24:10.000Z" + }, + "end": { + "$date": "2021-10-20T22:05:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "16d2cbe1-effb-466c-82e7-fc97301e0095", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T21:45:55.000Z" + }, + "end": { + "$date": "2021-10-20T22:20:04.000Z" + }, + "events": [ + { + "uuid": "75f68141-a034-4fac-aebe-e1a7a42710ae", + "start": { + "$date": "2021-10-20T21:45:55.000Z" + }, + "end": { + "$date": "2021-10-20T22:20:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07dd9456-25e4-4ad6-847e-64371bff035f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T23:30:34.000Z" + }, + "end": { + "$date": "2021-10-20T23:31:49.000Z" + }, + "events": [ + { + "uuid": "29ec3f0c-37db-45b6-bf55-d5aac6c8c67d", + "start": { + "$date": "2021-10-20T23:30:34.000Z" + }, + "end": { + "$date": "2021-10-20T23:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ae095759-bd8d-4202-9c83-6c00b5985fbf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-20T23:22:17.000Z" + }, + "end": { + "$date": "2021-10-21T00:31:44.000Z" + }, + "events": [ + { + "uuid": "b70917f1-502d-45c0-9949-f31431d25eb2", + "start": { + "$date": "2021-10-20T23:22:17.000Z" + }, + "end": { + "$date": "2021-10-21T00:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f4a0426-c9d2-4739-bd09-883eb06f77ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-20T23:37:09.000Z" + }, + "end": { + "$date": "2021-10-20T23:58:35.000Z" + }, + "events": [ + { + "uuid": "a386c6ca-baab-40a0-b47e-8b62969ce4f2", + "start": { + "$date": "2021-10-20T23:37:09.000Z" + }, + "end": { + "$date": "2021-10-20T23:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ab7b27bd-4cfb-4009-913d-e55a3a366cf6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-20T23:41:59.000Z" + }, + "end": { + "$date": "2021-10-21T05:15:19.000Z" + }, + "events": [ + { + "uuid": "265d9208-519d-4437-8acf-ece97c669af2", + "start": { + "$date": "2021-10-20T23:41:59.000Z" + }, + "end": { + "$date": "2021-10-21T01:16:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d9b91d0-a320-442f-b3cf-f9348f378e87", + "start": { + "$date": "2021-10-21T01:16:59.000Z" + }, + "end": { + "$date": "2021-10-21T01:21:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28b6439b-e8ed-4569-ae6c-0c145924afdc", + "start": { + "$date": "2021-10-21T01:21:59.000Z" + }, + "end": { + "$date": "2021-10-21T01:31:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3499b5cb-b966-4991-85e7-d819d040b437", + "start": { + "$date": "2021-10-21T01:31:59.000Z" + }, + "end": { + "$date": "2021-10-21T01:35:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7e1d8f25-1037-41a7-9661-45cf97fb4428", + "start": { + "$date": "2021-10-21T01:35:59.000Z" + }, + "end": { + "$date": "2021-10-21T05:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "30f1c1b0-d4a9-4c57-b620-e6783ab027f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T00:01:30.000Z" + }, + "end": { + "$date": "2021-10-21T04:43:56.000Z" + }, + "events": [ + { + "uuid": "835f95cc-f714-447f-bb50-9c1e9b2f8b9b", + "start": { + "$date": "2021-10-21T00:01:30.000Z" + }, + "end": { + "$date": "2021-10-21T04:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "2f65ce3a-0bee-4e42-9b0d-b2548115dcd7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-21T00:34:45.000Z" + }, + "end": { + "$date": "2021-10-21T00:42:10.000Z" + }, + "events": [ + { + "uuid": "210bb22e-0770-4b28-94c8-a22082fb8e0e", + "start": { + "$date": "2021-10-21T00:34:45.000Z" + }, + "end": { + "$date": "2021-10-21T00:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "304ae1da-aa8a-47dd-946c-5739e113e6d5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-21T00:42:16.000Z" + }, + "end": { + "$date": "2021-10-21T00:45:10.000Z" + }, + "events": [ + { + "uuid": "b5137704-48c4-4029-b9a7-4d7cd71f49d0", + "start": { + "$date": "2021-10-21T00:42:16.000Z" + }, + "end": { + "$date": "2021-10-21T00:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "460f4ef1-115e-4cfe-862b-a5897e4bc0be", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-21T00:43:27.000Z" + }, + "end": { + "$date": "2021-10-21T02:34:03.000Z" + }, + "events": [ + { + "uuid": "9de80a94-94a1-479a-81db-65f0d244a076", + "start": { + "$date": "2021-10-21T00:43:27.000Z" + }, + "end": { + "$date": "2021-10-21T02:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "39d6d566-96f0-4962-b19b-f4b5de9f6a89", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-21T02:21:23.000Z" + }, + "end": { + "$date": "2021-10-21T03:54:32.000Z" + }, + "events": [ + { + "uuid": "9207d2df-073d-4d2c-a9c3-b535d8998489", + "start": { + "$date": "2021-10-21T02:21:23.000Z" + }, + "end": { + "$date": "2021-10-21T04:15:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "453fa9c2-73ac-4191-bf91-6fd2297434cc", + "start": { + "$date": "2021-10-21T04:15:23.000Z" + }, + "end": { + "$date": "2021-10-21T04:20:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d7ab018-58e2-4c2c-8168-272864d0faaa", + "start": { + "$date": "2021-10-21T04:20:23.000Z" + }, + "end": { + "$date": "2021-10-21T04:52:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a035ba22-b203-4c51-bfe1-3cc6b2005366", + "start": { + "$date": "2021-10-21T04:52:23.000Z" + }, + "end": { + "$date": "2021-10-21T05:29:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a2fad7a-0056-4a1b-a1aa-65211d32323b", + "start": { + "$date": "2021-10-21T05:29:23.000Z" + }, + "end": { + "$date": "2021-10-21T03:54:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4bfacd13-3105-46e4-b875-69541ec376ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-21T01:45:23.000Z" + }, + "end": { + "$date": "2021-10-21T02:38:33.000Z" + }, + "events": [ + { + "uuid": "c5080607-d738-4ef9-9106-0b9a9324ec56", + "start": { + "$date": "2021-10-21T01:45:23.000Z" + }, + "end": { + "$date": "2021-10-21T02:38:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "494ce8f6-1f60-4c6d-b9ed-c6d08e117a06", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-21T02:01:33.000Z" + }, + "end": { + "$date": "2021-10-21T02:55:33.000Z" + }, + "events": [ + { + "uuid": "4d8aca38-7b2b-4d51-a066-b34b99d5d175", + "start": { + "$date": "2021-10-21T02:01:33.000Z" + }, + "end": { + "$date": "2021-10-21T02:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65477064-ea38-4247-b945-b2e4482d7874", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-21T02:24:01.000Z" + }, + "end": { + "$date": "2021-10-21T03:00:54.000Z" + }, + "events": [ + { + "uuid": "1c19ca01-ad99-4b4b-b2c0-ed200219ff33", + "start": { + "$date": "2021-10-21T02:24:01.000Z" + }, + "end": { + "$date": "2021-10-21T03:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "a59d8df1-6bd2-49ce-9c01-f6459f3fe3c3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-21T02:32:43.000Z" + }, + "end": { + "$date": "2021-10-21T03:44:20.000Z" + }, + "events": [ + { + "uuid": "3bbb5d6e-17bc-4e4d-8ce9-9007e8d73689", + "start": { + "$date": "2021-10-21T02:32:43.000Z" + }, + "end": { + "$date": "2021-10-21T03:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "66a52f0e-8dc2-4667-b2d7-0db153e6f215", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-21T02:56:38.000Z" + }, + "end": { + "$date": "2021-10-21T03:42:04.000Z" + }, + "events": [ + { + "uuid": "ec0b59b6-271d-4603-99f3-fa5c5e1777aa", + "start": { + "$date": "2021-10-21T02:56:38.000Z" + }, + "end": { + "$date": "2021-10-21T03:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "af3f5fbf-b836-493d-84cf-cedb67419ff1", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-21T03:20:21.000Z" + }, + "end": { + "$date": "2021-10-21T07:01:58.000Z" + }, + "events": [ + { + "uuid": "aead33c6-2621-45b2-9960-dff051262130", + "start": { + "$date": "2021-10-21T03:20:21.000Z" + }, + "end": { + "$date": "2021-10-21T07:01:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "11be1c8e-3d35-44db-a8f0-27086828e665", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-21T03:48:24.000Z" + }, + "end": { + "$date": "2021-10-21T06:33:31.000Z" + }, + "events": [ + { + "uuid": "6f1f9575-3d45-482f-99df-5fce4d47824c", + "start": { + "$date": "2021-10-21T03:48:24.000Z" + }, + "end": { + "$date": "2021-10-21T06:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "abfaffcb-a206-46d3-a737-f6c5deb119d2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-21T03:51:33.000Z" + }, + "end": { + "$date": "2021-10-21T04:30:21.000Z" + }, + "events": [ + { + "uuid": "2c162c02-31ce-44d1-a060-ff5ff34c3fff", + "start": { + "$date": "2021-10-21T03:51:33.000Z" + }, + "end": { + "$date": "2021-10-21T04:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34f1598b-e161-4ea1-acec-9ee574fc3f3e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-21T04:01:48.000Z" + }, + "end": { + "$date": "2021-10-21T04:26:35.000Z" + }, + "events": [ + { + "uuid": "d1534cf9-bc14-4fac-b54d-8cc39cf47dce", + "start": { + "$date": "2021-10-21T04:01:48.000Z" + }, + "end": { + "$date": "2021-10-21T04:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ac3370f9-a71c-44d9-b177-c41371637cee", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-21T04:08:03.000Z" + }, + "end": { + "$date": "2021-10-21T06:22:58.000Z" + }, + "events": [ + { + "uuid": "54463e4d-ce82-4d72-b8fb-dc2152adb9c1", + "start": { + "$date": "2021-10-21T04:08:03.000Z" + }, + "end": { + "$date": "2021-10-21T06:22:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "46f3c8ff-0232-42e1-9400-f4efa2a73c72", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-21T04:09:45.000Z" + }, + "end": { + "$date": "2021-10-21T06:28:08.000Z" + }, + "events": [ + { + "uuid": "42e53519-837b-4023-b9c8-a3428197f22b", + "start": { + "$date": "2021-10-21T04:09:45.000Z" + }, + "end": { + "$date": "2021-10-21T06:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4d4bc59b-8fd4-4610-a184-740cbe2b939f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-21T04:10:56.000Z" + }, + "end": { + "$date": "2021-10-21T07:04:48.000Z" + }, + "events": [ + { + "uuid": "8c6cc635-3bfe-4482-8491-422fd5ecbd69", + "start": { + "$date": "2021-10-21T04:10:56.000Z" + }, + "end": { + "$date": "2021-10-21T07:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "7742122d-dc67-4a3f-ab1d-49f545840896", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-21T04:33:44.000Z" + }, + "end": { + "$date": "2021-10-21T04:36:57.000Z" + }, + "events": [ + { + "uuid": "4b8c23b9-b511-4c10-aa04-7e631dd1addf", + "start": { + "$date": "2021-10-21T04:33:44.000Z" + }, + "end": { + "$date": "2021-10-21T04:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "560d93af-8f68-4f12-8868-c966b8074871", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-21T04:48:06.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:09.000Z" + }, + "events": [ + { + "uuid": "b07b38bd-2467-429d-93bf-09f129ba9c10", + "start": { + "$date": "2021-10-21T04:48:06.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "9fd32867-79ef-468a-a71e-4eeb2169db0c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T04:48:51.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:02.000Z" + }, + "events": [ + { + "uuid": "b9966c39-5e4a-4bf2-8482-bcb216457746", + "start": { + "$date": "2021-10-21T04:48:51.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcc4eab9-5389-4826-bd89-51756c1c45b0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-21T04:48:36.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:08.000Z" + }, + "events": [ + { + "uuid": "f9a2f5e9-1a43-44d8-a5f7-4dab0c2ff634", + "start": { + "$date": "2021-10-21T04:48:36.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9063bf6-d19a-4d90-b180-01ea76ca8501", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T04:48:08.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:04.000Z" + }, + "events": [ + { + "uuid": "8d61ed88-e4e0-4ad7-9cd5-f84d00a1237e", + "start": { + "$date": "2021-10-21T04:48:08.000Z" + }, + "end": { + "$date": "2021-10-21T05:08:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a328d798-24cc-42ac-9c4c-38c47430ebc6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-21T05:00:11.000Z" + }, + "end": { + "$date": "2021-10-21T05:40:07.000Z" + }, + "events": [ + { + "uuid": "c36bfc75-de32-494f-be4f-8fa5ebbcd8ee", + "start": { + "$date": "2021-10-21T05:00:11.000Z" + }, + "end": { + "$date": "2021-10-21T05:40:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd26e467-dfab-4c2a-b655-572e65b92064", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-21T05:12:26.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:37.000Z" + }, + "events": [ + { + "uuid": "99378816-541d-4c50-812d-800482237e63", + "start": { + "$date": "2021-10-21T05:12:26.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d383db3-ed24-4dcc-97e0-d386f4be10d8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T05:12:29.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:40.000Z" + }, + "events": [ + { + "uuid": "82851b5b-903e-4f9b-a661-a9003ff2a2d3", + "start": { + "$date": "2021-10-21T05:12:29.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8b1f2ce-dc10-4a6b-968c-17839029b340", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-21T05:13:47.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:38.000Z" + }, + "events": [ + { + "uuid": "b62fdc6a-0f7e-46f2-9572-9863a9e84c41", + "start": { + "$date": "2021-10-21T05:13:47.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "828b7c18-2bb2-482d-8680-901ca770c8ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T05:13:47.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:42.000Z" + }, + "events": [ + { + "uuid": "39d038a5-0058-42bc-bc11-db951a2271bb", + "start": { + "$date": "2021-10-21T05:13:47.000Z" + }, + "end": { + "$date": "2021-10-21T05:46:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "5663161c-0de1-400b-a111-b59920e5a7bd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-21T05:51:55.000Z" + }, + "end": { + "$date": "2021-10-21T06:15:59.000Z" + }, + "events": [ + { + "uuid": "6b6491f9-3933-4c4d-b9ed-f69e848d1606", + "start": { + "$date": "2021-10-21T05:51:55.000Z" + }, + "end": { + "$date": "2021-10-21T06:15:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "094e7467-a455-4eae-9a11-8abf189c45a6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-21T06:28:15.000Z" + }, + "end": { + "$date": "2021-10-21T07:09:22.000Z" + }, + "events": [ + { + "uuid": "0cdf9c2c-c205-4c74-9d04-1084660ca7a4", + "start": { + "$date": "2021-10-21T06:28:15.000Z" + }, + "end": { + "$date": "2021-10-21T07:09:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ae3fe2ef-fe9c-4665-8968-1bb77b451f53", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-21T08:47:28.000Z" + }, + "end": { + "$date": "2021-10-21T09:40:29.000Z" + }, + "events": [ + { + "uuid": "819e7e89-52d1-4353-a281-098d7b4edf48", + "start": { + "$date": "2021-10-21T08:47:28.000Z" + }, + "end": { + "$date": "2021-10-21T09:40:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5adc3b01-98cf-4f25-9ad0-f506482495b2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T09:59:24.000Z" + }, + "end": { + "$date": "2021-10-21T10:14:36.000Z" + }, + "events": [ + { + "uuid": "623dd92a-9728-452e-a922-9deb316f3135", + "start": { + "$date": "2021-10-21T09:59:24.000Z" + }, + "end": { + "$date": "2021-10-21T10:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98849790-d5cd-4c85-8d83-a237179357a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T10:18:51.000Z" + }, + "end": { + "$date": "2021-10-21T10:35:43.000Z" + }, + "events": [ + { + "uuid": "4915864b-1076-48e0-8f2a-90326e219ce6", + "start": { + "$date": "2021-10-21T10:18:51.000Z" + }, + "end": { + "$date": "2021-10-21T10:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b4c7d57-e1e1-43d1-bfa3-7af15cb4d96e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T10:37:54.000Z" + }, + "end": { + "$date": "2021-10-21T10:56:06.000Z" + }, + "events": [ + { + "uuid": "28463bc7-d6a4-4bbe-a72a-c92c770d45a7", + "start": { + "$date": "2021-10-21T10:37:54.000Z" + }, + "end": { + "$date": "2021-10-21T10:56:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd9aefe5-539f-43f8-b94d-ba49f0ae1912", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T10:58:36.000Z" + }, + "end": { + "$date": "2021-10-21T11:17:39.000Z" + }, + "events": [ + { + "uuid": "933b1bab-f683-458e-8165-4d5221c30ec8", + "start": { + "$date": "2021-10-21T10:58:36.000Z" + }, + "end": { + "$date": "2021-10-21T11:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6da98dc0-9f74-4abd-be91-200d009bcd81", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T11:20:54.000Z" + }, + "end": { + "$date": "2021-10-21T11:36:16.000Z" + }, + "events": [ + { + "uuid": "3f21ec75-abdf-496c-9330-6f5162ce8a7f", + "start": { + "$date": "2021-10-21T11:20:54.000Z" + }, + "end": { + "$date": "2021-10-21T11:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb5a9b6f-7e15-4767-aee4-cadeb3f26d00", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T11:38:41.000Z" + }, + "end": { + "$date": "2021-10-21T11:59:24.000Z" + }, + "events": [ + { + "uuid": "ecabecf4-4c49-4a04-a505-dbaf24b132b8", + "start": { + "$date": "2021-10-21T11:38:41.000Z" + }, + "end": { + "$date": "2021-10-21T11:59:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2d1e77a-f0e7-4c6a-891f-d72e213d3b87", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T12:01:54.000Z" + }, + "end": { + "$date": "2021-10-21T12:25:32.000Z" + }, + "events": [ + { + "uuid": "b11bf44e-01a0-44bd-b72b-2e7218160e26", + "start": { + "$date": "2021-10-21T12:01:54.000Z" + }, + "end": { + "$date": "2021-10-21T12:25:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15414a64-3a5d-4bf2-99e2-7e9e6cc149ce", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T12:27:32.000Z" + }, + "end": { + "$date": "2021-10-21T12:44:34.000Z" + }, + "events": [ + { + "uuid": "697f529b-8af9-4a3d-91bd-06d65f2eca1a", + "start": { + "$date": "2021-10-21T12:27:32.000Z" + }, + "end": { + "$date": "2021-10-21T12:44:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f99ed75-f0c3-4971-bd10-a9dc7d08f799", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T12:47:05.000Z" + }, + "end": { + "$date": "2021-10-21T13:14:03.000Z" + }, + "events": [ + { + "uuid": "07117aed-f401-41d9-a613-aafdc99089cb", + "start": { + "$date": "2021-10-21T12:47:05.000Z" + }, + "end": { + "$date": "2021-10-21T13:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cee1d81-2cff-4771-8901-51b7ac4d6d88", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T13:16:13.000Z" + }, + "end": { + "$date": "2021-10-21T13:31:00.000Z" + }, + "events": [ + { + "uuid": "19d92ebb-1ea3-4e97-8d1c-4b5596dcf6f3", + "start": { + "$date": "2021-10-21T13:16:13.000Z" + }, + "end": { + "$date": "2021-10-21T13:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5056b03e-176d-489e-859d-5c0ba9d379bb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T13:33:25.000Z" + }, + "end": { + "$date": "2021-10-21T13:59:08.000Z" + }, + "events": [ + { + "uuid": "69962aff-4188-415e-87cd-ca32d6583dbb", + "start": { + "$date": "2021-10-21T13:33:25.000Z" + }, + "end": { + "$date": "2021-10-21T13:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eea056f9-efca-4b98-b8a3-1aaa8eaed2ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-21T14:01:09.000Z" + }, + "end": { + "$date": "2021-10-21T14:20:20.000Z" + }, + "events": [ + { + "uuid": "d45d3223-3106-4983-b1ae-752225c41b4d", + "start": { + "$date": "2021-10-21T14:01:09.000Z" + }, + "end": { + "$date": "2021-10-21T14:20:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e12da59e-6e88-4f0d-ab69-f800a8cbe518", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-21T15:25:00.000Z" + }, + "end": { + "$date": "2021-10-21T15:43:25.000Z" + }, + "events": [ + { + "uuid": "3675f5c0-982b-4d6c-8554-21bea2c6b74f", + "start": { + "$date": "2021-10-21T15:25:00.000Z" + }, + "end": { + "$date": "2021-10-21T15:43:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "85ad662f-b345-437d-a238-f0c63f97df86", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T15:59:05.000Z" + }, + "end": { + "$date": "2021-10-21T18:59:58.000Z" + }, + "events": [ + { + "uuid": "6de29d4d-c294-4549-8da0-c28fa9d4726a", + "start": { + "$date": "2021-10-21T15:59:05.000Z" + }, + "end": { + "$date": "2021-10-21T18:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98b39c1f-16e5-4aef-b42a-ad5e5c10f00b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T20:02:55.000Z" + }, + "end": { + "$date": "2021-10-21T20:24:15.000Z" + }, + "events": [ + { + "uuid": "64b6538f-3d11-413a-a0d4-093e5e8ab0ec", + "start": { + "$date": "2021-10-21T20:02:55.000Z" + }, + "end": { + "$date": "2021-10-21T20:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c8155176-5982-47b8-8a7a-6aaa7dcf8efd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-21T20:20:20.000Z" + }, + "end": { + "$date": "2021-10-21T20:45:58.000Z" + }, + "events": [ + { + "uuid": "865a629a-0a35-4408-b628-be4a951160c4", + "start": { + "$date": "2021-10-21T20:20:20.000Z" + }, + "end": { + "$date": "2021-10-21T20:45:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2689b64f-ac48-4ef8-86d6-6ed5b84518f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T20:32:11.000Z" + }, + "end": { + "$date": "2021-10-21T21:02:01.000Z" + }, + "events": [ + { + "uuid": "2779e3d2-a260-476a-859e-ae2bdd3f3c71", + "start": { + "$date": "2021-10-21T20:32:11.000Z" + }, + "end": { + "$date": "2021-10-21T21:02:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c14d800-74f4-4f33-a905-615de304d1e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T21:06:02.000Z" + }, + "end": { + "$date": "2021-10-21T21:28:37.000Z" + }, + "events": [ + { + "uuid": "3e0ef264-36ed-40f0-9a0e-13fedb3b6ce2", + "start": { + "$date": "2021-10-21T21:06:02.000Z" + }, + "end": { + "$date": "2021-10-21T21:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "8427f2d6-5d6f-40bd-a123-c3cd1f66689e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-21T21:20:34.000Z" + }, + "end": { + "$date": "2021-10-21T21:58:15.000Z" + }, + "events": [ + { + "uuid": "17b8982d-7c84-44b4-b6bd-7b20359f4b9a", + "start": { + "$date": "2021-10-21T21:20:34.000Z" + }, + "end": { + "$date": "2021-10-21T21:58:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a97c6685-b402-496a-a7d2-5ebe31023472", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-21T22:13:20.000Z" + }, + "end": { + "$date": "2021-10-21T23:35:37.000Z" + }, + "events": [ + { + "uuid": "5fe81cdd-b2b8-46a7-b793-67fa177c18a0", + "start": { + "$date": "2021-10-21T22:13:20.000Z" + }, + "end": { + "$date": "2021-10-21T23:35:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2340f5b6-c9bb-481e-a234-5596fcf0b66d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-21T22:25:08.000Z" + }, + "end": { + "$date": "2021-10-22T00:39:42.000Z" + }, + "events": [ + { + "uuid": "35dbdd50-a24a-4273-bce2-62dc18e6089c", + "start": { + "$date": "2021-10-21T22:25:08.000Z" + }, + "end": { + "$date": "2021-10-22T00:39:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0fdb3466-91b9-45f3-96ef-9d4be95747ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-21T22:36:04.000Z" + }, + "end": { + "$date": "2021-10-21T22:51:30.000Z" + }, + "events": [ + { + "uuid": "cb5ade2d-07ef-4dba-9196-f6f08bbf4d88", + "start": { + "$date": "2021-10-21T22:36:04.000Z" + }, + "end": { + "$date": "2021-10-21T22:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6ccc8c2c-01f8-4b8d-8aa9-638a30ee125d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-21T23:00:35.000Z" + }, + "end": { + "$date": "2021-10-21T23:05:21.000Z" + }, + "events": [ + { + "uuid": "304fd644-3f0f-4ed0-b756-116cec45a4f9", + "start": { + "$date": "2021-10-21T23:00:35.000Z" + }, + "end": { + "$date": "2021-10-21T23:05:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c63d4514-10ee-47b3-86f0-81e3e9fd62fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-22T00:05:14.000Z" + }, + "end": { + "$date": "2021-10-22T05:21:35.000Z" + }, + "events": [ + { + "uuid": "52fab419-db63-45c9-bd51-f2a74be60e62", + "start": { + "$date": "2021-10-22T00:05:14.000Z" + }, + "end": { + "$date": "2021-10-22T05:21:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "bd16fa28-8aa1-4b07-8abf-9ba15e05177a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-22T00:14:11.000Z" + }, + "end": { + "$date": "2021-10-22T00:59:37.000Z" + }, + "events": [ + { + "uuid": "2eed1718-f64c-4cbf-a85c-26f2837202aa", + "start": { + "$date": "2021-10-22T00:14:11.000Z" + }, + "end": { + "$date": "2021-10-22T00:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1b7c47a5-8e9a-4b95-9f7b-26b1a8507392", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-22T00:15:22.000Z" + }, + "end": { + "$date": "2021-10-22T00:46:43.000Z" + }, + "events": [ + { + "uuid": "cf1f9636-fcf7-4ea4-9b68-dbb42bf4fdaa", + "start": { + "$date": "2021-10-22T00:15:22.000Z" + }, + "end": { + "$date": "2021-10-22T00:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "179b4073-97dd-410d-bc5d-c99cf3fbf975", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T00:16:09.000Z" + }, + "end": { + "$date": "2021-10-22T00:59:10.000Z" + }, + "events": [ + { + "uuid": "c236a0e7-3d3a-4e33-9349-a9c3f5d1026a", + "start": { + "$date": "2021-10-22T00:16:09.000Z" + }, + "end": { + "$date": "2021-10-22T00:59:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "bede0874-e975-4b18-bfd0-7c681442a9bf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-22T02:47:30.000Z" + }, + "end": { + "$date": "2021-10-22T02:59:16.000Z" + }, + "events": [ + { + "uuid": "f543f74e-816d-4c07-9cd5-5429a12151fc", + "start": { + "$date": "2021-10-22T02:47:30.000Z" + }, + "end": { + "$date": "2021-10-22T04:21:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7a80916-7d32-4e3b-99f2-78abd9d9be61", + "start": { + "$date": "2021-10-22T04:21:30.000Z" + }, + "end": { + "$date": "2021-10-22T04:50:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd5d9d15-ad3c-4dbe-beac-ec1d67809439", + "start": { + "$date": "2021-10-22T04:50:30.000Z" + }, + "end": { + "$date": "2021-10-22T02:59:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "47571cf6-cc53-4b13-94ef-3a55ff9bc732", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-22T00:48:17.000Z" + }, + "end": { + "$date": "2021-10-22T00:50:58.000Z" + }, + "events": [ + { + "uuid": "186b0e29-a616-4535-b528-77a43fe7808c", + "start": { + "$date": "2021-10-22T00:48:17.000Z" + }, + "end": { + "$date": "2021-10-22T00:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "ea16d063-df7a-4ba4-945e-8f79dbb8e21d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-22T01:05:27.000Z" + }, + "end": { + "$date": "2021-10-22T02:23:40.000Z" + }, + "events": [ + { + "uuid": "f833a2e4-4217-408d-bd48-42b3e1ffb78c", + "start": { + "$date": "2021-10-22T01:05:27.000Z" + }, + "end": { + "$date": "2021-10-22T02:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c49a2783-8db7-477b-afe9-0c76ac6dd9ef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T01:23:40.000Z" + }, + "end": { + "$date": "2021-10-22T02:43:56.000Z" + }, + "events": [ + { + "uuid": "44c3c5a5-1cc4-4deb-9758-f912e56c81bd", + "start": { + "$date": "2021-10-22T01:23:40.000Z" + }, + "end": { + "$date": "2021-10-22T02:43:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "edf930c6-6e96-4598-a375-e774982021b5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-22T01:55:39.000Z" + }, + "end": { + "$date": "2021-10-22T05:15:32.000Z" + }, + "events": [ + { + "uuid": "0e2e9b50-3498-4cad-8887-fdba50f0de1b", + "start": { + "$date": "2021-10-22T01:55:39.000Z" + }, + "end": { + "$date": "2021-10-22T05:15:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eb1edf10-5e3d-4a66-a82b-07aa1d24a3f0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-22T01:56:09.000Z" + }, + "end": { + "$date": "2021-10-22T05:15:30.000Z" + }, + "events": [ + { + "uuid": "e4b48b36-46c8-4345-a045-7f59f541c6cd", + "start": { + "$date": "2021-10-22T01:56:09.000Z" + }, + "end": { + "$date": "2021-10-22T05:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f57295e5-fda1-4a5a-9530-a3637a53e8a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-22T02:27:50.000Z" + }, + "end": { + "$date": "2021-10-22T02:46:02.000Z" + }, + "events": [ + { + "uuid": "239f448b-853e-4ef5-a285-b63d4c1bdfde", + "start": { + "$date": "2021-10-22T02:27:50.000Z" + }, + "end": { + "$date": "2021-10-22T02:46:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "76aa6368-405f-4479-98c2-157bb80af48f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-22T02:27:53.000Z" + }, + "end": { + "$date": "2021-10-22T02:29:33.000Z" + }, + "events": [ + { + "uuid": "f6a6ac96-b90e-4141-87b4-e652ed2acaa2", + "start": { + "$date": "2021-10-22T02:27:53.000Z" + }, + "end": { + "$date": "2021-10-22T02:29:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f80615a3-8bf3-4ee8-b3f7-75001ff6f2ab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-22T02:34:19.000Z" + }, + "end": { + "$date": "2021-10-22T03:53:08.000Z" + }, + "events": [ + { + "uuid": "16a74ed2-60b7-4ec3-8700-d9c28045367c", + "start": { + "$date": "2021-10-22T02:34:19.000Z" + }, + "end": { + "$date": "2021-10-22T03:37:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a7acdf7-ce75-4153-9d28-87df1a225ce1", + "start": { + "$date": "2021-10-22T03:37:19.000Z" + }, + "end": { + "$date": "2021-10-22T03:51:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "55210b44-9a71-412e-ad54-56d479ee4bd4", + "start": { + "$date": "2021-10-22T03:51:19.000Z" + }, + "end": { + "$date": "2021-10-22T03:53:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", + "uuid": "acac46f6-b14c-4a3b-89b3-d8852eb1e96b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-22T03:10:04.000Z" + }, + "end": { + "$date": "2021-10-22T05:07:43.000Z" + }, + "events": [ + { + "uuid": "e9084010-fbb5-4725-9932-479c03bd7630", + "start": { + "$date": "2021-10-22T03:10:04.000Z" + }, + "end": { + "$date": "2021-10-22T05:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7dee69a6-7d0f-4d9a-b75a-bc487bb33921", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-22T03:59:38.000Z" + }, + "end": { + "$date": "2021-10-22T04:24:13.000Z" + }, + "events": [ + { + "uuid": "0cf27146-b53f-42bb-b351-6a71fcc6a33f", + "start": { + "$date": "2021-10-22T03:59:38.000Z" + }, + "end": { + "$date": "2021-10-22T04:24:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0505c2c3-624c-4385-95ac-14d8f82cd357", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-22T05:41:30.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:25.000Z" + }, + "events": [ + { + "uuid": "991c83b1-928b-4de7-95f8-3653fe03cc63", + "start": { + "$date": "2021-10-22T05:41:30.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5a74a62-aeab-4b20-a56f-e1ff9ec95398", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-22T04:28:58.000Z" + }, + "end": { + "$date": "2021-10-22T05:00:29.000Z" + }, + "events": [ + { + "uuid": "7e86020d-745d-442d-b652-0b260bfdbb3d", + "start": { + "$date": "2021-10-22T04:28:58.000Z" + }, + "end": { + "$date": "2021-10-22T05:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "857c0c57-680f-4813-a91a-386159135031", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-22T04:30:08.000Z" + }, + "end": { + "$date": "2021-10-22T04:50:03.000Z" + }, + "events": [ + { + "uuid": "83f7e2ee-4502-464a-9571-a7272ca5a72e", + "start": { + "$date": "2021-10-22T04:30:08.000Z" + }, + "end": { + "$date": "2021-10-22T04:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7c63690-ff9a-4f64-8906-8711b8ebafb4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T04:54:03.000Z" + }, + "end": { + "$date": "2021-10-22T05:17:40.000Z" + }, + "events": [ + { + "uuid": "441ab34b-f8c5-41a0-b3a0-c30f6fd9b585", + "start": { + "$date": "2021-10-22T04:54:03.000Z" + }, + "end": { + "$date": "2021-10-22T05:17:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f4c84ce-bd3b-4b47-bf53-4109e25b560c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-22T04:53:34.000Z" + }, + "end": { + "$date": "2021-10-22T05:17:39.000Z" + }, + "events": [ + { + "uuid": "e6bf71fb-caca-4264-88e7-ffd30f83e7fc", + "start": { + "$date": "2021-10-22T04:53:34.000Z" + }, + "end": { + "$date": "2021-10-22T05:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfb710f6-1beb-4827-b553-226250be0af1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-22T05:04:14.000Z" + }, + "end": { + "$date": "2021-10-22T05:26:40.000Z" + }, + "events": [ + { + "uuid": "95d9dcea-979d-4403-b844-13afb81e8ee4", + "start": { + "$date": "2021-10-22T05:04:14.000Z" + }, + "end": { + "$date": "2021-10-22T05:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e1e66c29-5e5a-40e2-8747-e7f75fc45a66", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-22T05:15:49.000Z" + }, + "end": { + "$date": "2021-10-22T06:06:38.000Z" + }, + "events": [ + { + "uuid": "877974db-d150-4ed1-a9d9-e042ed48149f", + "start": { + "$date": "2021-10-22T05:15:49.000Z" + }, + "end": { + "$date": "2021-10-22T06:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "500ace44-20f8-4b4c-8183-917161c4be00", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-22T05:16:14.000Z" + }, + "end": { + "$date": "2021-10-22T06:06:39.000Z" + }, + "events": [ + { + "uuid": "bf839c82-6bbf-4bba-84bf-f4d4127c8838", + "start": { + "$date": "2021-10-22T05:16:14.000Z" + }, + "end": { + "$date": "2021-10-22T06:06:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c12ebf7c-30c4-47b7-ba55-92a22f98a1b2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T05:23:10.000Z" + }, + "end": { + "$date": "2021-10-22T05:38:35.000Z" + }, + "events": [ + { + "uuid": "92b36a91-6f9b-4c7f-89e2-8b540ca56b0e", + "start": { + "$date": "2021-10-22T05:23:10.000Z" + }, + "end": { + "$date": "2021-10-22T05:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55eaa889-dc45-4bed-9d8d-7242fdb6d90c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T05:24:55.000Z" + }, + "end": { + "$date": "2021-10-22T05:38:43.000Z" + }, + "events": [ + { + "uuid": "e73b6f8e-4caa-4267-a02c-4434011252ef", + "start": { + "$date": "2021-10-22T05:24:55.000Z" + }, + "end": { + "$date": "2021-10-22T05:38:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35585104-20d3-4154-8a17-0b2717cd1eda", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-22T05:24:20.000Z" + }, + "end": { + "$date": "2021-10-22T05:38:45.000Z" + }, + "events": [ + { + "uuid": "9190f515-1ec7-4d62-85f2-f35c6869803f", + "start": { + "$date": "2021-10-22T05:24:20.000Z" + }, + "end": { + "$date": "2021-10-22T05:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec4a2818-b2c5-4527-a751-245d5a56080f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T05:41:40.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:26.000Z" + }, + "events": [ + { + "uuid": "104a568d-38da-4e77-b8ac-cb4b8f11221d", + "start": { + "$date": "2021-10-22T05:41:40.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d37d509-0e6a-4a52-b323-55dfaac78948", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T05:41:41.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:34.000Z" + }, + "events": [ + { + "uuid": "a8ab3d5e-a045-4f99-a432-122ed430374c", + "start": { + "$date": "2021-10-22T05:41:41.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8466eb56-176d-47b0-a428-7424d54f7e80", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-22T05:41:51.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:30.000Z" + }, + "events": [ + { + "uuid": "45f4585c-b6c8-4bb4-8299-9c41c940572a", + "start": { + "$date": "2021-10-22T05:41:51.000Z" + }, + "end": { + "$date": "2021-10-22T05:57:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "521340c8-3351-4bae-bf2a-9006ff544d4b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-22T06:00:41.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:15.000Z" + }, + "events": [ + { + "uuid": "e3b2cdc5-51a9-45bb-be88-1b5a239b9f05", + "start": { + "$date": "2021-10-22T06:00:41.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4841c2d5-2645-467e-af8c-cbf9ee46ba73", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-22T06:00:41.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:26.000Z" + }, + "events": [ + { + "uuid": "823a752f-55b0-4c22-80ff-5ff579ef863e", + "start": { + "$date": "2021-10-22T06:00:41.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a64a6f1-3b61-4f82-8f91-88d9b2403b68", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T06:00:41.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:16.000Z" + }, + "events": [ + { + "uuid": "15c80cd3-9e0e-48e4-90d9-9176863c900b", + "start": { + "$date": "2021-10-22T06:00:41.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ec12cd8-cffb-48de-9d97-7def22b0d6db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T06:01:22.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:25.000Z" + }, + "events": [ + { + "uuid": "1bf95c95-4047-4b6b-9e77-a668ae5a81cb", + "start": { + "$date": "2021-10-22T06:01:22.000Z" + }, + "end": { + "$date": "2021-10-22T06:20:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40e066e7-92de-4f2f-aaed-c9e5bb567710", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-22T06:07:02.000Z" + }, + "end": { + "$date": "2021-10-22T06:55:40.000Z" + }, + "events": [ + { + "uuid": "d5ac5e47-f7b7-401c-a85a-6c26948bffaa", + "start": { + "$date": "2021-10-22T06:07:02.000Z" + }, + "end": { + "$date": "2021-10-22T06:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b56e78a3-ce75-494d-bbec-92445f126ee3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T06:23:57.000Z" + }, + "end": { + "$date": "2021-10-22T06:47:15.000Z" + }, + "events": [ + { + "uuid": "0c04ee11-d28d-4207-8dfa-1765b9bd42b7", + "start": { + "$date": "2021-10-22T06:23:57.000Z" + }, + "end": { + "$date": "2021-10-22T06:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c78aabf3-bbf1-4f41-aa67-aca5109900aa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T06:49:27.000Z" + }, + "end": { + "$date": "2021-10-22T07:14:03.000Z" + }, + "events": [ + { + "uuid": "a40ead87-b927-4011-ae07-69b20f1bca05", + "start": { + "$date": "2021-10-22T06:49:27.000Z" + }, + "end": { + "$date": "2021-10-22T07:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "43a3deeb-9650-4ef3-a728-bbd411d6bc17", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T07:11:34.000Z" + }, + "end": { + "$date": "2021-10-22T08:21:59.000Z" + }, + "events": [ + { + "uuid": "a08e0277-ce43-49cc-8696-90826fa26de6", + "start": { + "$date": "2021-10-22T07:11:34.000Z" + }, + "end": { + "$date": "2021-10-22T08:21:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4144e86e-9a56-41e8-8fc4-d06cbfcb2912", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T07:16:23.000Z" + }, + "end": { + "$date": "2021-10-22T07:38:56.000Z" + }, + "events": [ + { + "uuid": "29162c02-5640-4c66-a966-f54921550723", + "start": { + "$date": "2021-10-22T07:16:23.000Z" + }, + "end": { + "$date": "2021-10-22T07:38:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61059354-9700-40b8-b162-afd5b8849a52", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T07:43:32.000Z" + }, + "end": { + "$date": "2021-10-22T08:05:00.000Z" + }, + "events": [ + { + "uuid": "620041f3-7d7f-4a1f-bc2a-3a4a9a08ba6e", + "start": { + "$date": "2021-10-22T07:43:32.000Z" + }, + "end": { + "$date": "2021-10-22T08:05:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38774e63-dd8b-49aa-a928-f2409c14f922", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T08:07:25.000Z" + }, + "end": { + "$date": "2021-10-22T08:33:48.000Z" + }, + "events": [ + { + "uuid": "6ee82c7b-74c8-4e3c-8813-9c4c621a0f04", + "start": { + "$date": "2021-10-22T08:07:25.000Z" + }, + "end": { + "$date": "2021-10-22T08:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8290638c-89b1-43c9-af5a-47dc4812af1b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T08:37:18.000Z" + }, + "end": { + "$date": "2021-10-22T09:07:08.000Z" + }, + "events": [ + { + "uuid": "a1c4be71-753e-4bca-b6a9-d1c47fea890d", + "start": { + "$date": "2021-10-22T08:37:18.000Z" + }, + "end": { + "$date": "2021-10-22T09:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afd6500e-8b11-44d3-9610-f38a246b8398", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T09:16:29.000Z" + }, + "end": { + "$date": "2021-10-22T09:34:41.000Z" + }, + "events": [ + { + "uuid": "6238c6f2-2dff-4cca-871f-6c621c718efb", + "start": { + "$date": "2021-10-22T09:16:29.000Z" + }, + "end": { + "$date": "2021-10-22T09:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebc83457-0fdc-4ab9-a933-e78028378b41", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T09:50:09.000Z" + }, + "end": { + "$date": "2021-10-22T10:21:13.000Z" + }, + "events": [ + { + "uuid": "635b7089-2c39-4131-a367-a57c7ee3c2b0", + "start": { + "$date": "2021-10-22T09:50:09.000Z" + }, + "end": { + "$date": "2021-10-22T10:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d6f5ecf-3e73-4e23-af20-4192395cb890", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T11:57:41.000Z" + }, + "end": { + "$date": "2021-10-22T12:20:54.000Z" + }, + "events": [ + { + "uuid": "f0368535-8930-4b35-a945-1a142a649e1d", + "start": { + "$date": "2021-10-22T11:57:41.000Z" + }, + "end": { + "$date": "2021-10-22T12:32:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d2a06dc-c333-41f7-8d0f-6ea6469d13ea", + "start": { + "$date": "2021-10-22T12:32:41.000Z" + }, + "end": { + "$date": "2021-10-22T12:51:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "75ccc090-f187-48eb-b5f1-a2bdd8bb4199", + "start": { + "$date": "2021-10-22T12:51:41.000Z" + }, + "end": { + "$date": "2021-10-22T13:01:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1b49584b-4746-49c6-a9ed-42806c397b96", + "start": { + "$date": "2021-10-22T13:01:41.000Z" + }, + "end": { + "$date": "2021-10-22T13:20:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9927695b-d1bb-489b-9572-751e488cf42b", + "start": { + "$date": "2021-10-22T13:20:41.000Z" + }, + "end": { + "$date": "2021-10-22T12:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b21e214-8b0a-48ec-901e-aef62ecd56ad", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T12:23:04.000Z" + }, + "end": { + "$date": "2021-10-22T12:42:22.000Z" + }, + "events": [ + { + "uuid": "56617ede-d001-457b-8ac5-c826edf7ff6e", + "start": { + "$date": "2021-10-22T12:23:04.000Z" + }, + "end": { + "$date": "2021-10-22T12:42:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a00df42a-708c-445a-ba03-90cf0c45f701", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-22T12:48:13.000Z" + }, + "end": { + "$date": "2021-10-22T13:19:33.000Z" + }, + "events": [ + { + "uuid": "e1dcfe56-8c00-4140-906f-dcd97ed39f3b", + "start": { + "$date": "2021-10-22T12:48:13.000Z" + }, + "end": { + "$date": "2021-10-22T13:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "8a5a649a-546e-446b-af84-1f84627bb77d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-22T14:37:11.000Z" + }, + "end": { + "$date": "2021-10-22T14:51:32.000Z" + }, + "events": [ + { + "uuid": "c86634f1-7ec9-48a9-8e3d-c780de44bd45", + "start": { + "$date": "2021-10-22T14:37:11.000Z" + }, + "end": { + "$date": "2021-10-22T14:51:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "5d72e11c-c3df-47af-b506-fcddc1d6aaba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-22T15:46:47.000Z" + }, + "end": { + "$date": "2021-10-22T17:24:51.000Z" + }, + "events": [ + { + "uuid": "a48509ee-3a80-425c-8cf2-65b38aa67e2e", + "start": { + "$date": "2021-10-22T15:46:47.000Z" + }, + "end": { + "$date": "2021-10-22T17:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b65d1efd-b6ec-4050-8847-14ce33123f39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T18:01:58.000Z" + }, + "end": { + "$date": "2021-10-22T18:25:32.000Z" + }, + "events": [ + { + "uuid": "3d7981af-814c-48b2-93b6-1c7c2e423cc4", + "start": { + "$date": "2021-10-22T18:01:58.000Z" + }, + "end": { + "$date": "2021-10-22T18:25:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "28c5445a-87eb-4f5b-bc21-661fb11a4d93", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T18:30:06.000Z" + }, + "end": { + "$date": "2021-10-22T18:45:05.000Z" + }, + "events": [ + { + "uuid": "ab6181b4-9ac3-4971-860a-7e733b520627", + "start": { + "$date": "2021-10-22T18:30:06.000Z" + }, + "end": { + "$date": "2021-10-22T18:45:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e3b43207-3a44-4fce-b2b7-c719ff85e9e6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-22T20:26:00.000Z" + }, + "end": { + "$date": "2021-10-22T20:35:04.000Z" + }, + "events": [ + { + "uuid": "d6bfc005-3df0-466a-a322-1d6b6904c645", + "start": { + "$date": "2021-10-22T20:26:00.000Z" + }, + "end": { + "$date": "2021-10-22T20:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a096668b-e85f-4f1e-9a25-1e07577b07d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-22T20:35:30.000Z" + }, + "end": { + "$date": "2021-10-22T21:43:48.000Z" + }, + "events": [ + { + "uuid": "76bbc54c-2f98-4d51-bac1-7dc04ae0c18e", + "start": { + "$date": "2021-10-22T20:35:30.000Z" + }, + "end": { + "$date": "2021-10-22T20:46:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6c4365d1-03d3-4b73-b79b-a0ee28c04fe3", + "start": { + "$date": "2021-10-22T20:46:30.000Z" + }, + "end": { + "$date": "2021-10-22T21:17:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edd834dd-ff75-48cf-8ba0-4163bfa045c0", + "start": { + "$date": "2021-10-22T21:17:30.000Z" + }, + "end": { + "$date": "2021-10-22T21:19:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "56cf1456-7ad8-4254-90e6-2c5a67bb3e05", + "start": { + "$date": "2021-10-22T21:19:30.000Z" + }, + "end": { + "$date": "2021-10-22T21:43:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "42b60bb2-83f7-46a4-a1f9-a50b7a3b5bc1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-22T21:37:05.000Z" + }, + "end": { + "$date": "2021-10-22T22:35:22.000Z" + }, + "events": [ + { + "uuid": "ed4f43b0-448a-4e1f-b0ba-7ec5bd46768b", + "start": { + "$date": "2021-10-22T21:37:05.000Z" + }, + "end": { + "$date": "2021-10-22T22:35:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "722db5e0-d274-4c69-a5b7-4e829b586ca2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-22T21:50:36.000Z" + }, + "end": { + "$date": "2021-10-22T23:53:34.000Z" + }, + "events": [ + { + "uuid": "a8b76f91-2f8f-4c41-8785-a3224ee94e1b", + "start": { + "$date": "2021-10-22T21:50:36.000Z" + }, + "end": { + "$date": "2021-10-22T23:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "de3b1731-da23-4eab-ad97-2e1743e6cc4f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-22T23:04:27.000Z" + }, + "end": { + "$date": "2021-10-22T23:08:28.000Z" + }, + "events": [ + { + "uuid": "6dda7a2e-3952-4517-adc7-789589c70db9", + "start": { + "$date": "2021-10-22T23:04:27.000Z" + }, + "end": { + "$date": "2021-10-22T23:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d8225bf5-214f-4188-976a-77f300d64499", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-22T23:08:48.000Z" + }, + "end": { + "$date": "2021-10-23T06:27:08.000Z" + }, + "events": [ + { + "uuid": "b5102cb7-bdf8-4329-b1e2-873d9eb34021", + "start": { + "$date": "2021-10-22T23:08:48.000Z" + }, + "end": { + "$date": "2021-10-23T06:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e434153d-9a42-47bf-a4de-2de48f4c73b2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T00:23:33.000Z" + }, + "end": { + "$date": "2021-10-23T02:01:38.000Z" + }, + "events": [ + { + "uuid": "2b16141b-b732-4286-bb5f-f4a9b36ace2a", + "start": { + "$date": "2021-10-23T00:23:33.000Z" + }, + "end": { + "$date": "2021-10-23T01:29:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0202841e-5586-43d5-96fe-d726e49e1117", + "start": { + "$date": "2021-10-23T01:29:33.000Z" + }, + "end": { + "$date": "2021-10-23T02:01:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3697c8a2-1671-4e04-a6ec-2e1e53b9c842", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-23T00:43:09.000Z" + }, + "end": { + "$date": "2021-10-23T02:09:08.000Z" + }, + "events": [ + { + "uuid": "5157f5b3-26cc-4a5b-a54a-09a84c83215f", + "start": { + "$date": "2021-10-23T00:43:09.000Z" + }, + "end": { + "$date": "2021-10-23T00:44:09.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "e8c3bedc-a012-416d-bbf8-4522bb99321e", + "start": { + "$date": "2021-10-23T00:44:09.000Z" + }, + "end": { + "$date": "2021-10-23T02:09:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "184dda26-a25e-4495-8183-2e436967c99c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T02:04:13.000Z" + }, + "end": { + "$date": "2021-10-23T02:20:14.000Z" + }, + "events": [ + { + "uuid": "a3786322-3b2a-4842-a4de-006c0b3634f3", + "start": { + "$date": "2021-10-23T02:04:13.000Z" + }, + "end": { + "$date": "2021-10-23T02:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "df9804ac-828e-41c8-8ade-40714a86ea02", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T03:11:26.000Z" + }, + "end": { + "$date": "2021-10-23T06:12:05.000Z" + }, + "events": [ + { + "uuid": "52449d49-fab5-4ce5-ba6f-64c061cbefeb", + "start": { + "$date": "2021-10-23T03:11:26.000Z" + }, + "end": { + "$date": "2021-10-23T06:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "6f4ba2e6-2b44-4717-b60a-2218f23cf67c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-23T03:01:08.000Z" + }, + "end": { + "$date": "2021-10-23T03:49:12.000Z" + }, + "events": [ + { + "uuid": "c80511d4-4bc8-411a-a9f9-9f3c666b4b53", + "start": { + "$date": "2021-10-23T03:01:08.000Z" + }, + "end": { + "$date": "2021-10-23T03:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c5379144-5975-4058-90cd-b04c8fae8b8c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-23T03:19:40.000Z" + }, + "end": { + "$date": "2021-10-23T06:12:27.000Z" + }, + "events": [ + { + "uuid": "2d0f85ff-1eb7-49b7-9c46-d1f335a0b71d", + "start": { + "$date": "2021-10-23T03:19:40.000Z" + }, + "end": { + "$date": "2021-10-23T06:12:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfe91ad6-e96f-4a59-bfd3-2d654e683405", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-23T03:26:18.000Z" + }, + "end": { + "$date": "2021-10-23T03:53:43.000Z" + }, + "events": [ + { + "uuid": "2abcb37d-a84a-409a-9fe0-a72eb89734f3", + "start": { + "$date": "2021-10-23T03:26:18.000Z" + }, + "end": { + "$date": "2021-10-23T03:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9754ad0c-7cd9-4910-8cc3-d150ce902c7f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-23T03:26:51.000Z" + }, + "end": { + "$date": "2021-10-23T03:41:38.000Z" + }, + "events": [ + { + "uuid": "467cad96-fc64-4add-b7e8-81827c91e99f", + "start": { + "$date": "2021-10-23T03:26:51.000Z" + }, + "end": { + "$date": "2021-10-23T03:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "3159cc47-55f4-41a9-a6de-52e16471bb19", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T03:43:36.000Z" + }, + "end": { + "$date": "2021-10-23T04:11:14.000Z" + }, + "events": [ + { + "uuid": "37fe94d0-e457-412d-b1fa-d6013b0ea4ce", + "start": { + "$date": "2021-10-23T03:43:36.000Z" + }, + "end": { + "$date": "2021-10-23T04:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b98c82e-5051-477e-825f-62d50b42f39b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-23T03:44:42.000Z" + }, + "end": { + "$date": "2021-10-23T06:12:12.000Z" + }, + "events": [ + { + "uuid": "b76b0529-c004-47f7-95a9-74411cdd7286", + "start": { + "$date": "2021-10-23T03:44:42.000Z" + }, + "end": { + "$date": "2021-10-23T06:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ac3afb7-641c-4ddf-8f97-cf0912ce72f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-23T03:58:09.000Z" + }, + "end": { + "$date": "2021-10-23T04:29:08.000Z" + }, + "events": [ + { + "uuid": "12ac2160-5c29-40fe-97ec-1f0bbb1aca76", + "start": { + "$date": "2021-10-23T03:58:09.000Z" + }, + "end": { + "$date": "2021-10-23T04:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6033130-bfef-47b5-a3a8-371200cb15ed", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-23T04:34:50.000Z" + }, + "end": { + "$date": "2021-10-23T05:12:46.000Z" + }, + "events": [ + { + "uuid": "0e24cc6e-5f3f-4d05-84f8-19552e8ee5e9", + "start": { + "$date": "2021-10-23T04:34:50.000Z" + }, + "end": { + "$date": "2021-10-23T05:12:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1e3fd3e8-9ef4-4ad9-83cd-9ae30f2181cf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T06:17:30.000Z" + }, + "end": { + "$date": "2021-10-23T06:31:02.000Z" + }, + "events": [ + { + "uuid": "838f75ff-0a7b-433f-a76f-eefe2b7d9b31", + "start": { + "$date": "2021-10-23T06:17:30.000Z" + }, + "end": { + "$date": "2021-10-23T06:31:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b36dd273-d23d-444b-b4ca-416f5748d22c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T06:31:06.000Z" + }, + "end": { + "$date": "2021-10-23T07:22:45.000Z" + }, + "events": [ + { + "uuid": "e3b31f71-00c5-4a8a-9083-779196a7d701", + "start": { + "$date": "2021-10-23T06:31:06.000Z" + }, + "end": { + "$date": "2021-10-23T07:22:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f9c4288e-27fb-4b5a-b9ed-320c653fb91e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-23T07:31:35.000Z" + }, + "end": { + "$date": "2021-10-23T09:08:53.000Z" + }, + "events": [ + { + "uuid": "158eff09-68f6-4264-bc69-38d346a58ef0", + "start": { + "$date": "2021-10-23T07:31:35.000Z" + }, + "end": { + "$date": "2021-10-23T09:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae870527-7e3b-4b1c-bf49-dae81e0e2dd6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-23T07:35:04.000Z" + }, + "end": { + "$date": "2021-10-23T09:08:55.000Z" + }, + "events": [ + { + "uuid": "d56cf4df-e19b-4653-b10b-a52e17c4cf16", + "start": { + "$date": "2021-10-23T07:35:04.000Z" + }, + "end": { + "$date": "2021-10-23T09:08:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d86f4261-5eef-4a79-9862-a0f7f0280105", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-23T07:50:21.000Z" + }, + "end": { + "$date": "2021-10-23T08:26:15.000Z" + }, + "events": [ + { + "uuid": "0f9c19bc-a914-4d7a-8ee8-87e26bd3d892", + "start": { + "$date": "2021-10-23T07:50:21.000Z" + }, + "end": { + "$date": "2021-10-23T08:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81a27da4-fa6c-4778-a038-813318d91b70", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T07:52:01.000Z" + }, + "end": { + "$date": "2021-10-23T08:09:42.000Z" + }, + "events": [ + { + "uuid": "f6eeca3a-2093-4393-a6e5-af782cc0038c", + "start": { + "$date": "2021-10-23T07:52:01.000Z" + }, + "end": { + "$date": "2021-10-23T08:09:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0206226a-0d74-498c-b815-6893a8e16e9a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T08:12:32.000Z" + }, + "end": { + "$date": "2021-10-23T08:36:02.000Z" + }, + "events": [ + { + "uuid": "f02b1bd1-3e9e-4500-b635-e76d8d0c7ba6", + "start": { + "$date": "2021-10-23T08:12:32.000Z" + }, + "end": { + "$date": "2021-10-23T08:36:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06d4e234-0795-4da6-94e6-1ff80f57e439", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T08:38:42.000Z" + }, + "end": { + "$date": "2021-10-23T08:54:07.000Z" + }, + "events": [ + { + "uuid": "a2d2082e-d355-46cb-8eed-ad82b09ccd27", + "start": { + "$date": "2021-10-23T08:38:42.000Z" + }, + "end": { + "$date": "2021-10-23T08:54:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d6a5f02-7e3b-4f63-8498-3a8a79985e9b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T08:55:57.000Z" + }, + "end": { + "$date": "2021-10-23T09:13:55.000Z" + }, + "events": [ + { + "uuid": "73c241ef-0954-4cbf-9673-ee856c1def78", + "start": { + "$date": "2021-10-23T08:55:57.000Z" + }, + "end": { + "$date": "2021-10-23T09:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9127c05d-7682-42a1-ac17-8798fb914c8d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T09:18:33.000Z" + }, + "end": { + "$date": "2021-10-23T09:39:53.000Z" + }, + "events": [ + { + "uuid": "374c8a87-d64f-4d0d-b891-4b4ac083e23f", + "start": { + "$date": "2021-10-23T09:18:33.000Z" + }, + "end": { + "$date": "2021-10-23T09:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fde9110-2acb-44bf-b4a9-483416982768", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T09:42:33.000Z" + }, + "end": { + "$date": "2021-10-23T10:09:29.000Z" + }, + "events": [ + { + "uuid": "6e61790a-8511-4504-b476-efc4a61347b2", + "start": { + "$date": "2021-10-23T09:42:33.000Z" + }, + "end": { + "$date": "2021-10-23T10:09:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b43af9a7-2850-40d2-a056-923c1ec05035", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T10:12:55.000Z" + }, + "end": { + "$date": "2021-10-23T10:34:18.000Z" + }, + "events": [ + { + "uuid": "8897df1a-f0a6-42f2-a1b0-0861a5cbe255", + "start": { + "$date": "2021-10-23T10:12:55.000Z" + }, + "end": { + "$date": "2021-10-23T10:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a98e2083-e447-438b-afa8-79ef3910860d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T10:38:53.000Z" + }, + "end": { + "$date": "2021-10-23T10:58:36.000Z" + }, + "events": [ + { + "uuid": "dc331806-985f-45d9-b404-b6e13983d1f8", + "start": { + "$date": "2021-10-23T10:38:53.000Z" + }, + "end": { + "$date": "2021-10-23T10:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cf9263e-0203-410f-830b-05dd36cd090e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T11:03:57.000Z" + }, + "end": { + "$date": "2021-10-23T11:20:44.000Z" + }, + "events": [ + { + "uuid": "4dfa19ba-5e2b-49d8-9957-867c7f18a2ad", + "start": { + "$date": "2021-10-23T11:03:57.000Z" + }, + "end": { + "$date": "2021-10-23T11:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b18d34bf-ee5b-4671-ab6c-a212e633e5a2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-23T11:21:52.000Z" + }, + "end": { + "$date": "2021-10-23T11:24:06.000Z" + }, + "events": [ + { + "uuid": "eaa5e50b-dc9a-4274-b31c-b1d7c668b50b", + "start": { + "$date": "2021-10-23T11:21:52.000Z" + }, + "end": { + "$date": "2021-10-23T11:24:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "40946f34-bbaa-4eba-a43c-34785a29a4df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T14:56:16.000Z" + }, + "end": { + "$date": "2021-10-23T16:10:35.000Z" + }, + "events": [ + { + "uuid": "3330bf0f-c4f2-47dd-aef4-59190b6beb64", + "start": { + "$date": "2021-10-23T14:56:16.000Z" + }, + "end": { + "$date": "2021-10-23T16:10:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b94a8b3-a9e5-465e-901c-0b6e8387cf02", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-23T15:30:48.000Z" + }, + "end": { + "$date": "2021-10-23T15:48:37.000Z" + }, + "events": [ + { + "uuid": "343a157e-f0c3-4ae1-ab9c-b35f0e178628", + "start": { + "$date": "2021-10-23T15:30:48.000Z" + }, + "end": { + "$date": "2021-10-23T15:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53b09deb-1af2-4b4f-bdaa-7b99728f7514", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-23T15:51:21.000Z" + }, + "end": { + "$date": "2021-10-23T16:10:11.000Z" + }, + "events": [ + { + "uuid": "15b0479d-ff76-4943-841a-6bc9ac0f7a41", + "start": { + "$date": "2021-10-23T15:51:21.000Z" + }, + "end": { + "$date": "2021-10-23T16:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "8d316c2f-5d2d-40e5-aa48-573efcd58410", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-23T16:14:34.000Z" + }, + "end": { + "$date": "2021-10-23T18:47:43.000Z" + }, + "events": [ + { + "uuid": "37a61aa8-7482-4e47-a46b-8a0e0734b42f", + "start": { + "$date": "2021-10-23T16:14:34.000Z" + }, + "end": { + "$date": "2021-10-23T18:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "00bef244-27aa-46e9-94c5-6e03b208bfc9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T17:03:59.000Z" + }, + "end": { + "$date": "2021-10-23T17:47:21.000Z" + }, + "events": [ + { + "uuid": "5b7635ff-4a23-4109-97f1-23332cfff0d4", + "start": { + "$date": "2021-10-23T17:03:59.000Z" + }, + "end": { + "$date": "2021-10-23T17:47:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d92e6d7c-6697-4f23-8474-e786d74c018a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T17:47:31.000Z" + }, + "end": { + "$date": "2021-10-23T21:44:03.000Z" + }, + "events": [ + { + "uuid": "4d8ea792-0ae6-4eac-b97f-92dceebe742f", + "start": { + "$date": "2021-10-23T17:47:31.000Z" + }, + "end": { + "$date": "2021-10-23T21:44:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "b652d5cc-5c42-4d66-94eb-b10c77e90f65", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-23T20:06:31.000Z" + }, + "end": { + "$date": "2021-10-23T21:06:17.000Z" + }, + "events": [ + { + "uuid": "78c5f2db-1be4-4f69-b2b2-e77b11fa0a8d", + "start": { + "$date": "2021-10-23T20:06:31.000Z" + }, + "end": { + "$date": "2021-10-23T21:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "097a7ccf-467f-430a-843b-8da95f4c32e0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-23T21:22:49.000Z" + }, + "end": { + "$date": "2021-10-23T21:41:57.000Z" + }, + "events": [ + { + "uuid": "1f7a533e-33c1-4e58-abdd-9c9f1594f940", + "start": { + "$date": "2021-10-23T21:22:49.000Z" + }, + "end": { + "$date": "2021-10-23T21:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6fa34364-8374-4b56-b5aa-7fca1557c542", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-23T22:05:37.000Z" + }, + "end": { + "$date": "2021-10-24T00:08:24.000Z" + }, + "events": [ + { + "uuid": "d7dfce5f-7a15-429a-9e50-a3f4af98d660", + "start": { + "$date": "2021-10-23T22:05:37.000Z" + }, + "end": { + "$date": "2021-10-23T22:15:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef369321-ad66-4afb-940f-c0d15c808c0f", + "start": { + "$date": "2021-10-23T22:15:37.000Z" + }, + "end": { + "$date": "2021-10-23T22:16:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee30c762-5aaf-44a2-9823-54b330866a65", + "start": { + "$date": "2021-10-23T22:16:37.000Z" + }, + "end": { + "$date": "2021-10-24T00:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae8dffff-7df1-4714-b6b5-7c6a2d7e8733", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-23T22:09:06.000Z" + }, + "end": { + "$date": "2021-10-23T23:28:34.000Z" + }, + "events": [ + { + "uuid": "7873169a-e37c-48f5-85d5-065bd55053f4", + "start": { + "$date": "2021-10-23T22:09:06.000Z" + }, + "end": { + "$date": "2021-10-23T23:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "98c9aabf-cc52-4390-880e-90d283622093", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-23T22:10:06.000Z" + }, + "end": { + "$date": "2021-10-24T00:31:33.000Z" + }, + "events": [ + { + "uuid": "e41fb647-096d-4ea0-9288-65f82cfbd22d", + "start": { + "$date": "2021-10-23T22:10:06.000Z" + }, + "end": { + "$date": "2021-10-24T00:31:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4020828-dcde-4fb3-a2f6-e79c46e2553f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-23T22:16:50.000Z" + }, + "end": { + "$date": "2021-10-24T00:07:49.000Z" + }, + "events": [ + { + "uuid": "50e3dc1c-3aaf-4c84-a645-46f2497ca505", + "start": { + "$date": "2021-10-23T22:16:50.000Z" + }, + "end": { + "$date": "2021-10-24T00:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2f9fe853-ad57-4b8f-a24c-4b3a61f13da4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-23T23:35:07.000Z" + }, + "end": { + "$date": "2021-10-24T06:51:50.000Z" + }, + "events": [ + { + "uuid": "20eb7e66-2d6f-4fe0-8a87-394a80c6573c", + "start": { + "$date": "2021-10-23T23:35:07.000Z" + }, + "end": { + "$date": "2021-10-24T06:51:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "993dd4ea-b955-45bb-bfe2-baa1da841b31", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-24T00:10:43.000Z" + }, + "end": { + "$date": "2021-10-24T00:11:54.000Z" + }, + "events": [ + { + "uuid": "96987221-dec0-407b-8825-e8d7d2eda16a", + "start": { + "$date": "2021-10-24T00:10:43.000Z" + }, + "end": { + "$date": "2021-10-24T00:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a07e8d95-d0a7-4247-a870-549eeb89af7c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-24T00:08:52.000Z" + }, + "end": { + "$date": "2021-10-24T01:46:15.000Z" + }, + "events": [ + { + "uuid": "abae0a91-2515-4f6b-9552-98cb00046803", + "start": { + "$date": "2021-10-24T00:08:52.000Z" + }, + "end": { + "$date": "2021-10-24T01:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e798fa2b-1cff-4df8-898d-0353e530343f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-24T00:12:33.000Z" + }, + "end": { + "$date": "2021-10-24T00:54:36.000Z" + }, + "events": [ + { + "uuid": "099d344d-aa61-41b3-bc5c-f3927f7273f6", + "start": { + "$date": "2021-10-24T00:12:33.000Z" + }, + "end": { + "$date": "2021-10-24T00:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "4a810709-0c75-4a68-97a2-36a043a39897", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T00:17:13.000Z" + }, + "end": { + "$date": "2021-10-24T03:14:08.000Z" + }, + "events": [ + { + "uuid": "9ea5e309-68b4-4676-b8a9-c823172570b5", + "start": { + "$date": "2021-10-24T00:17:13.000Z" + }, + "end": { + "$date": "2021-10-24T03:14:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9388c2db-99b2-42fe-ba76-1d34a2ea4ee5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T00:32:02.000Z" + }, + "end": { + "$date": "2021-10-24T00:47:26.000Z" + }, + "events": [ + { + "uuid": "1f924aa9-cc2c-4b90-bed1-68bd438b27a9", + "start": { + "$date": "2021-10-24T00:32:02.000Z" + }, + "end": { + "$date": "2021-10-24T00:46:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6c0d2c29-d6f9-4b3a-a337-7b1f2dc38db0", + "start": { + "$date": "2021-10-24T00:46:02.000Z" + }, + "end": { + "$date": "2021-10-24T00:47:26.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8d55b943-536e-4a43-9e05-b898bea6e33c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-24T01:12:08.000Z" + }, + "end": { + "$date": "2021-10-24T01:40:18.000Z" + }, + "events": [ + { + "uuid": "1e883960-8252-4d57-b3a0-4023cf824164", + "start": { + "$date": "2021-10-24T01:12:08.000Z" + }, + "end": { + "$date": "2021-10-24T01:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "feb49678-e27f-4d9e-b535-79f132bb3778", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-24T01:42:58.000Z" + }, + "end": { + "$date": "2021-10-24T01:46:41.000Z" + }, + "events": [ + { + "uuid": "1734ce51-9ad9-431f-8ef3-399b8bd1f197", + "start": { + "$date": "2021-10-24T01:42:58.000Z" + }, + "end": { + "$date": "2021-10-24T01:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b3b832a1-8869-4e5c-a208-b2ab9efbeebd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-24T01:48:23.000Z" + }, + "end": { + "$date": "2021-10-24T03:29:35.000Z" + }, + "events": [ + { + "uuid": "7d63880a-fdd7-48b4-8042-4bfeb09ba7f9", + "start": { + "$date": "2021-10-24T01:48:23.000Z" + }, + "end": { + "$date": "2021-10-24T03:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff5ea4c0-6343-4384-b746-4c1f7705211b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-24T01:48:25.000Z" + }, + "end": { + "$date": "2021-10-24T03:29:10.000Z" + }, + "events": [ + { + "uuid": "7ffe01ab-f9ba-4979-87a3-ce37a99d65cc", + "start": { + "$date": "2021-10-24T01:48:25.000Z" + }, + "end": { + "$date": "2021-10-24T03:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1fbeae4b-5375-4659-9d05-11cf61b7cdad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T01:59:45.000Z" + }, + "end": { + "$date": "2021-10-24T06:02:37.000Z" + }, + "events": [ + { + "uuid": "3465d88d-e4a4-4e93-a615-288ead177e55", + "start": { + "$date": "2021-10-24T01:59:45.000Z" + }, + "end": { + "$date": "2021-10-24T06:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fc7187cf-d63c-4c33-9443-01f216c1ac52", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-24T02:18:09.000Z" + }, + "end": { + "$date": "2021-10-24T03:29:04.000Z" + }, + "events": [ + { + "uuid": "0c7cee55-2a41-4717-b74f-5b70e5460a61", + "start": { + "$date": "2021-10-24T02:18:09.000Z" + }, + "end": { + "$date": "2021-10-24T03:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "569db3b5-9ce3-43e6-b2fd-4213010e7e3d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T04:22:33.000Z" + }, + "end": { + "$date": "2021-10-24T04:23:06.000Z" + }, + "events": [ + { + "uuid": "45457d1a-d7af-4b37-9edc-b4610309ece9", + "start": { + "$date": "2021-10-24T04:22:33.000Z" + }, + "end": { + "$date": "2021-10-24T04:23:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46b82a33-feee-4105-adcc-f35795b9a56b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T03:31:59.000Z" + }, + "end": { + "$date": "2021-10-24T03:46:14.000Z" + }, + "events": [ + { + "uuid": "95f861ca-3874-4f8d-988c-e85902fcb3c5", + "start": { + "$date": "2021-10-24T03:31:59.000Z" + }, + "end": { + "$date": "2021-10-24T03:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "d2f89058-c93b-4437-a560-9a4f479b40f2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-24T03:30:44.000Z" + }, + "end": { + "$date": "2021-10-24T11:37:05.000Z" + }, + "events": [ + { + "uuid": "3712c8da-8892-4a43-b8e8-4f80a194cf47", + "start": { + "$date": "2021-10-24T03:30:44.000Z" + }, + "end": { + "$date": "2021-10-24T11:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "7a0eef49-8fe6-4b6f-a01d-8a6002b978f0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-24T03:30:44.000Z" + }, + "end": { + "$date": "2021-10-24T09:20:06.000Z" + }, + "events": [ + { + "uuid": "81c132eb-bca9-46ee-a64d-54d295a27404", + "start": { + "$date": "2021-10-24T03:30:44.000Z" + }, + "end": { + "$date": "2021-10-24T09:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "599212bc-50cc-4f73-8bba-c545538023b2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-24T03:34:14.000Z" + }, + "end": { + "$date": "2021-10-24T04:48:06.000Z" + }, + "events": [ + { + "uuid": "2e64872d-91b0-4430-bf88-a0174a462966", + "start": { + "$date": "2021-10-24T03:34:14.000Z" + }, + "end": { + "$date": "2021-10-24T04:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75ebb542-e2b2-41c6-bf93-16aa477b1c1a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T03:49:39.000Z" + }, + "end": { + "$date": "2021-10-24T04:02:10.000Z" + }, + "events": [ + { + "uuid": "dc79c2f3-ca5a-42b1-96cd-08f2cc7c228b", + "start": { + "$date": "2021-10-24T03:49:39.000Z" + }, + "end": { + "$date": "2021-10-24T04:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd602d46-3333-4c5c-908f-7642890afb2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T04:06:25.000Z" + }, + "end": { + "$date": "2021-10-24T04:22:30.000Z" + }, + "events": [ + { + "uuid": "96ffa814-de19-4158-a9ff-ae7336ab716e", + "start": { + "$date": "2021-10-24T04:06:25.000Z" + }, + "end": { + "$date": "2021-10-24T04:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a8aa1240-0606-4ccb-bc61-a0084d4b413c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-24T04:22:05.000Z" + }, + "end": { + "$date": "2021-10-24T04:36:05.000Z" + }, + "events": [ + { + "uuid": "902268f3-f0bd-4cff-afe4-2f9e6becde1c", + "start": { + "$date": "2021-10-24T04:22:05.000Z" + }, + "end": { + "$date": "2021-10-24T04:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4beebf98-bda6-45a5-b1b1-39bf37544c72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-24T04:36:15.000Z" + }, + "end": { + "$date": "2021-10-24T06:53:28.000Z" + }, + "events": [ + { + "uuid": "bb9f67a2-7916-485b-867b-53e2c81f54df", + "start": { + "$date": "2021-10-24T04:36:15.000Z" + }, + "end": { + "$date": "2021-10-24T06:53:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "f8925eff-97cc-4b5e-bb44-c8d64807815d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-24T05:01:01.000Z" + }, + "end": { + "$date": "2021-10-24T06:35:40.000Z" + }, + "events": [ + { + "uuid": "7ef2dccc-c52e-4abc-a5a4-26e3e8c48681", + "start": { + "$date": "2021-10-24T05:01:01.000Z" + }, + "end": { + "$date": "2021-10-24T06:35:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ba6d9b4-3b74-42db-b6ea-1f4880eb2c79", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-24T05:52:54.000Z" + }, + "end": { + "$date": "2021-10-24T06:53:22.000Z" + }, + "events": [ + { + "uuid": "e31b8755-6406-4088-9d35-a3e36e227717", + "start": { + "$date": "2021-10-24T05:52:54.000Z" + }, + "end": { + "$date": "2021-10-24T06:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7a29dc5-1a1e-467e-bab8-2ecc575b1a74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-24T05:57:57.000Z" + }, + "end": { + "$date": "2021-10-24T06:16:57.000Z" + }, + "events": [ + { + "uuid": "e81b7dd0-e983-4a1b-a1a6-f8ce872c92e1", + "start": { + "$date": "2021-10-24T05:57:57.000Z" + }, + "end": { + "$date": "2021-10-24T06:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "dea51fef-e37e-421c-bc98-10b4e19771b6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-24T06:36:13.000Z" + }, + "end": { + "$date": "2021-10-24T06:45:16.000Z" + }, + "events": [ + { + "uuid": "497b3323-0c7f-40f8-975a-262454295c6e", + "start": { + "$date": "2021-10-24T06:36:13.000Z" + }, + "end": { + "$date": "2021-10-24T06:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "200d2c5c-f882-4cdc-9c4a-4f10b2e30e9d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-24T07:38:26.000Z" + }, + "end": { + "$date": "2021-10-24T07:58:39.000Z" + }, + "events": [ + { + "uuid": "7c512f2e-212c-44dc-a2cc-44a8e021a37d", + "start": { + "$date": "2021-10-24T07:38:26.000Z" + }, + "end": { + "$date": "2021-10-24T07:58:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95c45a13-44d9-4753-aed9-30e75bd98fa2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T15:50:02.000Z" + }, + "end": { + "$date": "2021-10-24T15:58:54.000Z" + }, + "events": [ + { + "uuid": "15548e06-0f24-4821-b15e-b73ab0580970", + "start": { + "$date": "2021-10-24T15:50:02.000Z" + }, + "end": { + "$date": "2021-10-24T15:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "7ee41653-a9ab-48d2-97b4-11d4f75efb39", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T15:46:29.000Z" + }, + "end": { + "$date": "2021-10-24T15:49:50.000Z" + }, + "events": [ + { + "uuid": "ac8a87fe-b596-4361-9749-c253e7cd4172", + "start": { + "$date": "2021-10-24T15:46:29.000Z" + }, + "end": { + "$date": "2021-10-24T15:49:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0fed5da6-0eda-4b7e-b730-b90d3de447a6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T15:50:40.000Z" + }, + "end": { + "$date": "2021-10-24T16:22:31.000Z" + }, + "events": [ + { + "uuid": "c16d90fd-ce5f-4ff5-8588-491667699256", + "start": { + "$date": "2021-10-24T15:50:40.000Z" + }, + "end": { + "$date": "2021-10-24T16:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "deb686d2-dba6-4666-b192-65e2f9940d24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T16:04:08.000Z" + }, + "end": { + "$date": "2021-10-24T16:23:25.000Z" + }, + "events": [ + { + "uuid": "3f809370-2b69-4764-a886-4fbf54cda32e", + "start": { + "$date": "2021-10-24T16:04:08.000Z" + }, + "end": { + "$date": "2021-10-24T16:23:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3087519-b159-433c-ac27-38f54f1bdb8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T16:28:13.000Z" + }, + "end": { + "$date": "2021-10-24T16:42:23.000Z" + }, + "events": [ + { + "uuid": "4e2adc4d-a118-4479-bcf7-a73b4fdcb595", + "start": { + "$date": "2021-10-24T16:28:13.000Z" + }, + "end": { + "$date": "2021-10-24T16:42:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ac1aed5c-cb3d-4303-85cc-718bb4678761", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T16:27:31.000Z" + }, + "end": { + "$date": "2021-10-24T16:39:32.000Z" + }, + "events": [ + { + "uuid": "c5020be1-9099-4dd2-84a3-d3d7a458b287", + "start": { + "$date": "2021-10-24T16:27:31.000Z" + }, + "end": { + "$date": "2021-10-24T16:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "a2ddf06c-3de6-4475-a537-ac2373a7df4a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T16:42:47.000Z" + }, + "end": { + "$date": "2021-10-24T17:10:34.000Z" + }, + "events": [ + { + "uuid": "0a4fea64-32ce-4aff-b476-d8881cd32e63", + "start": { + "$date": "2021-10-24T16:42:47.000Z" + }, + "end": { + "$date": "2021-10-24T17:10:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "887750b7-3f21-41a3-b0ef-ac652dcab9e7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T17:07:20.000Z" + }, + "end": { + "$date": "2021-10-24T17:23:58.000Z" + }, + "events": [ + { + "uuid": "239f4c3a-cf84-4d99-8cd8-93e69292d5d1", + "start": { + "$date": "2021-10-24T17:07:20.000Z" + }, + "end": { + "$date": "2021-10-24T17:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7a76c085-7a62-4548-9397-f3c98b85645f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-24T17:07:35.000Z" + }, + "end": { + "$date": "2021-10-24T20:46:06.000Z" + }, + "events": [ + { + "uuid": "dc3383c7-d7b1-423f-836c-54d46a91e30d", + "start": { + "$date": "2021-10-24T17:07:35.000Z" + }, + "end": { + "$date": "2021-10-24T20:46:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "a607bb76-1914-4039-a9c1-00498ebbb1ef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T17:12:14.000Z" + }, + "end": { + "$date": "2021-10-24T17:16:29.000Z" + }, + "events": [ + { + "uuid": "4a353dea-d571-49cc-abb6-41541b15496b", + "start": { + "$date": "2021-10-24T17:12:14.000Z" + }, + "end": { + "$date": "2021-10-24T17:16:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "51b6f66f-e997-43bd-853c-03488cf0be0a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T17:16:35.000Z" + }, + "end": { + "$date": "2021-10-24T18:03:35.000Z" + }, + "events": [ + { + "uuid": "26a80ba2-5e7c-4c41-b549-078cb0a4ff28", + "start": { + "$date": "2021-10-24T17:16:35.000Z" + }, + "end": { + "$date": "2021-10-24T18:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba8acdf2-0acf-436c-9895-ca363ba180c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T17:29:51.000Z" + }, + "end": { + "$date": "2021-10-24T17:58:42.000Z" + }, + "events": [ + { + "uuid": "744d7db7-d6ea-4ed1-8f83-f2c7ef6d87b2", + "start": { + "$date": "2021-10-24T17:29:51.000Z" + }, + "end": { + "$date": "2021-10-24T17:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acc45cd8-cfe7-43b6-8735-2673f40d86f2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T18:02:36.000Z" + }, + "end": { + "$date": "2021-10-24T18:30:16.000Z" + }, + "events": [ + { + "uuid": "0a7c3d69-d77a-460a-9ef0-6bbd230e7d08", + "start": { + "$date": "2021-10-24T18:02:36.000Z" + }, + "end": { + "$date": "2021-10-24T18:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0327db3d-4ec3-4d6a-8cfc-3910c12e48bc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-24T18:03:50.000Z" + }, + "end": { + "$date": "2021-10-24T19:11:39.000Z" + }, + "events": [ + { + "uuid": "84ed70b4-72e5-43e2-8883-fc262e68548a", + "start": { + "$date": "2021-10-24T18:03:50.000Z" + }, + "end": { + "$date": "2021-10-24T19:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e21fbd8-91f3-4551-bf7e-30bceea38e20", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T18:30:43.000Z" + }, + "end": { + "$date": "2021-10-24T19:16:38.000Z" + }, + "events": [ + { + "uuid": "b92208c5-e970-4798-afe6-051c0040e98d", + "start": { + "$date": "2021-10-24T18:30:43.000Z" + }, + "end": { + "$date": "2021-10-24T18:54:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93e42b06-eb1e-43f9-8b8a-a465c9eb3889", + "start": { + "$date": "2021-10-24T18:54:43.000Z" + }, + "end": { + "$date": "2021-10-24T19:16:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "238b001c-932e-44a5-97f6-f95271b6402c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T19:09:25.000Z" + }, + "end": { + "$date": "2021-10-24T19:28:20.000Z" + }, + "events": [ + { + "uuid": "ab1c551d-c3fa-40a2-b1e4-c83dd693e23b", + "start": { + "$date": "2021-10-24T19:09:25.000Z" + }, + "end": { + "$date": "2021-10-24T19:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06d9d3bc-757c-4edf-91d4-44872c971d6e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T19:28:38.000Z" + }, + "end": { + "$date": "2021-10-24T19:30:17.000Z" + }, + "events": [ + { + "uuid": "2fb3899e-ca2b-4136-86e3-b9be2da87e2b", + "start": { + "$date": "2021-10-24T19:28:38.000Z" + }, + "end": { + "$date": "2021-10-24T19:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "6fe7781a-623d-4d5c-b2a2-c95198693809", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T19:36:15.000Z" + }, + "end": { + "$date": "2021-10-24T20:08:32.000Z" + }, + "events": [ + { + "uuid": "c7cb1263-5e8b-4ce3-87f3-a50a39f8006a", + "start": { + "$date": "2021-10-24T19:36:15.000Z" + }, + "end": { + "$date": "2021-10-24T20:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "256c57f7-071f-4140-afa3-b0a727532b55", + "uuid": "66c74ab7-ed2d-43d0-984d-ecce05a5ebe2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-24T21:24:25.000Z" + }, + "end": { + "$date": "2021-10-24T21:31:21.000Z" + }, + "events": [ + { + "uuid": "018b695e-f5e3-43cf-b71c-066f84d4e2bd", + "start": { + "$date": "2021-10-24T21:24:25.000Z" + }, + "end": { + "$date": "2021-10-24T21:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29a50b5d-9e27-4bc5-be0c-a9d91993fe74", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T21:41:15.000Z" + }, + "end": { + "$date": "2021-10-24T22:07:29.000Z" + }, + "events": [ + { + "uuid": "23611785-ce6b-41be-bd5d-ec1899e8d79f", + "start": { + "$date": "2021-10-24T21:41:15.000Z" + }, + "end": { + "$date": "2021-10-24T22:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "33866fc7-6ac1-46f6-bcaf-1cea3f2acd1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-24T21:40:56.000Z" + }, + "end": { + "$date": "2021-10-24T22:21:04.000Z" + }, + "events": [ + { + "uuid": "ac7c2e21-c127-4c69-8a75-8ba74ad7fe0f", + "start": { + "$date": "2021-10-24T21:40:56.000Z" + }, + "end": { + "$date": "2021-10-24T22:21:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ab97e01-54bf-4aa3-bbba-8c22396e1bb4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T22:14:15.000Z" + }, + "end": { + "$date": "2021-10-24T22:41:21.000Z" + }, + "events": [ + { + "uuid": "e6ab5830-f2f4-49e7-acc6-8841915b0aae", + "start": { + "$date": "2021-10-24T22:14:15.000Z" + }, + "end": { + "$date": "2021-10-24T22:41:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85d4ca44-dd20-4f9e-92f3-5406052cb659", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T22:47:06.000Z" + }, + "end": { + "$date": "2021-10-24T23:07:06.000Z" + }, + "events": [ + { + "uuid": "8f2da1d3-7cc6-4a71-81c7-7d61ceb4b3e6", + "start": { + "$date": "2021-10-24T22:47:06.000Z" + }, + "end": { + "$date": "2021-10-24T23:07:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "936573f2-004a-4f7e-8cb5-bce21571c1c1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-25T02:15:14.000Z" + }, + "end": { + "$date": "2021-10-25T02:15:19.000Z" + }, + "events": [ + { + "uuid": "cb36bad6-fdb4-4e28-bb00-9d6b5a4c62e0", + "start": { + "$date": "2021-10-25T02:15:14.000Z" + }, + "end": { + "$date": "2021-10-25T02:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07222369-5554-41e8-ad47-26616259befa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-24T23:07:13.000Z" + }, + "end": { + "$date": "2021-10-24T23:47:28.000Z" + }, + "events": [ + { + "uuid": "18428fdf-b3e4-4e87-9faf-a7d4e43aa2b8", + "start": { + "$date": "2021-10-24T23:07:13.000Z" + }, + "end": { + "$date": "2021-10-24T23:20:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "90b0c3db-476f-4b5b-9109-4ae81b49f5a7", + "start": { + "$date": "2021-10-24T23:20:13.000Z" + }, + "end": { + "$date": "2021-10-24T23:47:28.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", + "uuid": "2df7c06e-bb6f-439d-bb69-5bad9f103b85", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T00:26:52.000Z" + }, + "end": { + "$date": "2021-10-25T03:42:33.000Z" + }, + "events": [ + { + "uuid": "62d8c7e6-039b-4eea-84f0-124c246efc47", + "start": { + "$date": "2021-10-25T00:26:52.000Z" + }, + "end": { + "$date": "2021-10-25T03:42:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45724384-1659-412d-b775-00ca1ab2b616", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-25T00:49:01.000Z" + }, + "end": { + "$date": "2021-10-25T01:06:36.000Z" + }, + "events": [ + { + "uuid": "08777d65-57e1-4f82-be39-20a297e624be", + "start": { + "$date": "2021-10-25T00:49:01.000Z" + }, + "end": { + "$date": "2021-10-25T01:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5cc280ad-b194-4ab2-8c17-a5b7d74fedef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-24T20:24:14.000Z" + }, + "end": { + "$date": "2021-10-25T01:33:31.000Z" + }, + "events": [ + { + "uuid": "eb7e77a3-a257-40de-a455-b443f85dabd9", + "start": { + "$date": "2021-10-24T20:24:14.000Z" + }, + "end": { + "$date": "2021-10-25T01:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "54cac4bc-ae4f-452f-854d-86d3930ee496", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-08T02:25:21.000Z" + }, + "end": { + "$date": "2022-06-08T06:04:52.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-06-08T02:25:21.000Z" + }, + "end": { + "$date": "2022-06-08T06:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "02b90013-f8cb-4157-b5f9-ad973266f4d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-25T02:13:32.000Z" + }, + "end": { + "$date": "2021-10-25T03:56:19.000Z" + }, + "events": [ + { + "uuid": "09f4ecb7-c762-4c87-8f3f-1fcc4cf094b0", + "start": { + "$date": "2021-10-25T02:13:32.000Z" + }, + "end": { + "$date": "2021-10-25T03:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bcd5960b-8ea9-4dae-ad7f-e3d6189ff986", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-25T02:15:39.000Z" + }, + "end": { + "$date": "2021-10-25T04:25:23.000Z" + }, + "events": [ + { + "uuid": "3a99d83a-dca0-4a72-8e19-7068c606d4c3", + "start": { + "$date": "2021-10-25T02:15:39.000Z" + }, + "end": { + "$date": "2021-10-25T04:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7b854b99-5cde-469d-8ab6-af3e6004331a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-25T02:58:47.000Z" + }, + "end": { + "$date": "2021-10-25T04:06:57.000Z" + }, + "events": [ + { + "uuid": "8198f909-405f-469b-a801-a2850bd752e9", + "start": { + "$date": "2021-10-25T02:58:47.000Z" + }, + "end": { + "$date": "2021-10-25T04:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "d5096b0b-5601-44f7-879e-2356f415a67c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-25T03:00:09.000Z" + }, + "end": { + "$date": "2021-10-25T03:56:16.000Z" + }, + "events": [ + { + "uuid": "2b36585b-5169-4890-825a-1a47843f7ce5", + "start": { + "$date": "2021-10-25T03:00:09.000Z" + }, + "end": { + "$date": "2021-10-25T03:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bdd718d2-07a9-4a5b-a935-9903f3f3ac8a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-25T04:06:59.000Z" + }, + "end": { + "$date": "2021-10-25T05:03:55.000Z" + }, + "events": [ + { + "uuid": "6e910b0a-c524-4098-bff4-f095bcad5aa4", + "start": { + "$date": "2021-10-25T04:06:59.000Z" + }, + "end": { + "$date": "2021-10-25T05:03:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d5488ba1-bffc-4907-869a-fb1d69ea4382", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-25T04:07:28.000Z" + }, + "end": { + "$date": "2021-10-25T04:08:56.000Z" + }, + "events": [ + { + "uuid": "8909b758-f65d-4e5e-a7bd-5ca5b0a2e105", + "start": { + "$date": "2021-10-25T04:07:28.000Z" + }, + "end": { + "$date": "2021-10-25T04:08:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c6e5762-a4c3-40c5-be51-bd013c1eec0e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-25T05:10:10.000Z" + }, + "end": { + "$date": "2021-10-25T05:22:55.000Z" + }, + "events": [ + { + "uuid": "fbd19246-2ea9-44a4-8f55-de5a7580e107", + "start": { + "$date": "2021-10-25T05:10:10.000Z" + }, + "end": { + "$date": "2021-10-25T05:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e10d20a-dc61-477b-bbf1-f94b7856ec47", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-25T05:22:32.000Z" + }, + "end": { + "$date": "2021-10-25T06:10:43.000Z" + }, + "events": [ + { + "uuid": "fbb9601c-f1a2-4060-9e28-d6dd5bed2462", + "start": { + "$date": "2021-10-25T05:22:32.000Z" + }, + "end": { + "$date": "2021-10-25T06:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ebe6fbcc-dc99-4745-8988-186e7c2833b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-25T06:12:13.000Z" + }, + "end": { + "$date": "2021-10-25T08:33:57.000Z" + }, + "events": [ + { + "uuid": "88299900-3fd4-44a6-bcdd-b0fb5869f29f", + "start": { + "$date": "2021-10-25T06:12:13.000Z" + }, + "end": { + "$date": "2021-10-25T08:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b5157290-3529-4483-93f6-7d0e9c102290", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-25T06:12:39.000Z" + }, + "end": { + "$date": "2021-10-25T06:51:48.000Z" + }, + "events": [ + { + "uuid": "3106082c-efb5-4e8a-acca-631bd028d24c", + "start": { + "$date": "2021-10-25T06:12:39.000Z" + }, + "end": { + "$date": "2021-10-25T06:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "134c115d-7420-4438-aa20-ba08d9cf5b04", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-25T06:14:42.000Z" + }, + "end": { + "$date": "2021-10-25T08:34:10.000Z" + }, + "events": [ + { + "uuid": "94a0bdb6-2855-46b9-87d5-4c755dd79804", + "start": { + "$date": "2021-10-25T06:14:42.000Z" + }, + "end": { + "$date": "2021-10-25T08:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9586f43b-0346-49a1-9936-7f84d7974377", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T10:29:59.000Z" + }, + "end": { + "$date": "2021-10-25T10:51:52.000Z" + }, + "events": [ + { + "uuid": "1aefee61-a047-45d6-9c96-eaeee391dacb", + "start": { + "$date": "2021-10-25T10:29:59.000Z" + }, + "end": { + "$date": "2021-10-25T10:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d51b09c-c95b-4379-be44-5151c18dac98", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T10:54:47.000Z" + }, + "end": { + "$date": "2021-10-25T11:15:24.000Z" + }, + "events": [ + { + "uuid": "bf203a64-72dd-4fb8-9f48-2f1e8d9f3e63", + "start": { + "$date": "2021-10-25T10:54:47.000Z" + }, + "end": { + "$date": "2021-10-25T11:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03f0cb83-6ba9-456c-b18f-9fc28518e954", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T11:18:40.000Z" + }, + "end": { + "$date": "2021-10-25T11:34:57.000Z" + }, + "events": [ + { + "uuid": "f0292066-3c4d-4d6d-b4b3-555206fd53af", + "start": { + "$date": "2021-10-25T11:18:40.000Z" + }, + "end": { + "$date": "2021-10-25T11:34:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90c2221d-cf97-4ecf-a821-b9173c9d30eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T11:38:07.000Z" + }, + "end": { + "$date": "2021-10-25T12:02:20.000Z" + }, + "events": [ + { + "uuid": "5df9d3aa-e6b0-4669-9e65-4d82e9127f4e", + "start": { + "$date": "2021-10-25T11:38:07.000Z" + }, + "end": { + "$date": "2021-10-25T12:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7851058-9fd5-48e3-a771-c27fdba0a4e8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T12:05:16.000Z" + }, + "end": { + "$date": "2021-10-25T12:14:52.000Z" + }, + "events": [ + { + "uuid": "f13e6f7d-b3bd-4818-b66e-a3c5a67ce69d", + "start": { + "$date": "2021-10-25T12:05:16.000Z" + }, + "end": { + "$date": "2021-10-25T12:14:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78318269-840a-4c63-9082-ea112aedf882", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T12:17:22.000Z" + }, + "end": { + "$date": "2021-10-25T12:34:20.000Z" + }, + "events": [ + { + "uuid": "882639cc-bbed-4eee-bcd3-2328b6d90230", + "start": { + "$date": "2021-10-25T12:17:22.000Z" + }, + "end": { + "$date": "2021-10-25T12:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bce8fac1-07b2-4a4c-a5f6-2c0949dbbab9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T12:37:00.000Z" + }, + "end": { + "$date": "2021-10-25T12:57:13.000Z" + }, + "events": [ + { + "uuid": "ca0bb9dc-89ae-48a0-91f8-ac97c93d4c53", + "start": { + "$date": "2021-10-25T12:37:00.000Z" + }, + "end": { + "$date": "2021-10-25T12:57:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "616812af-9a44-47ea-9e83-bf1f38979d3d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T13:01:03.000Z" + }, + "end": { + "$date": "2021-10-25T13:14:30.000Z" + }, + "events": [ + { + "uuid": "467a3880-7e3b-47d7-92e6-3f80010ede91", + "start": { + "$date": "2021-10-25T13:01:03.000Z" + }, + "end": { + "$date": "2021-10-25T13:14:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bdd178d-942c-48f5-b9d0-d675281b0161", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T13:16:45.000Z" + }, + "end": { + "$date": "2021-10-25T13:36:27.000Z" + }, + "events": [ + { + "uuid": "ee13a1d9-ad6f-4df8-b97c-3743755ae6d7", + "start": { + "$date": "2021-10-25T13:16:45.000Z" + }, + "end": { + "$date": "2021-10-25T13:36:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3ce4ea0-2941-4af5-805f-89e9221bcc4c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T13:38:37.000Z" + }, + "end": { + "$date": "2021-10-25T14:00:25.000Z" + }, + "events": [ + { + "uuid": "e8109aea-9cd4-4267-8408-9bec33af0661", + "start": { + "$date": "2021-10-25T13:38:37.000Z" + }, + "end": { + "$date": "2021-10-25T14:00:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36d4c935-8620-4ae8-b8ac-63d12f19ec8e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T14:03:01.000Z" + }, + "end": { + "$date": "2021-10-25T14:18:38.000Z" + }, + "events": [ + { + "uuid": "eb566742-1240-4fbc-acc5-cd614a2f5d39", + "start": { + "$date": "2021-10-25T14:03:01.000Z" + }, + "end": { + "$date": "2021-10-25T14:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d5a82db-2da9-410f-8338-2c687204d3a1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T14:22:28.000Z" + }, + "end": { + "$date": "2021-10-25T14:49:07.000Z" + }, + "events": [ + { + "uuid": "dd0ac33a-99fb-42e6-a46c-f5683db35533", + "start": { + "$date": "2021-10-25T14:22:28.000Z" + }, + "end": { + "$date": "2021-10-25T14:49:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4107dd7-2d7e-4400-a719-8694aa19ffd9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T14:50:57.000Z" + }, + "end": { + "$date": "2021-10-25T15:17:28.000Z" + }, + "events": [ + { + "uuid": "5236b0fe-db10-4fcc-aaa3-6198156109c5", + "start": { + "$date": "2021-10-25T14:50:57.000Z" + }, + "end": { + "$date": "2021-10-25T15:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "536a2543-b115-4caf-86f7-55dfeeb93fca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T15:20:16.000Z" + }, + "end": { + "$date": "2021-10-25T15:33:12.000Z" + }, + "events": [ + { + "uuid": "c59cdddc-2682-4959-b72c-a7d2a514e0be", + "start": { + "$date": "2021-10-25T15:20:16.000Z" + }, + "end": { + "$date": "2021-10-25T15:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7a44a61-3824-4152-a2cc-d72e6360a405", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T15:36:08.000Z" + }, + "end": { + "$date": "2021-10-25T16:01:06.000Z" + }, + "events": [ + { + "uuid": "ce916522-302a-442b-9baf-c4ebce925d67", + "start": { + "$date": "2021-10-25T15:36:08.000Z" + }, + "end": { + "$date": "2021-10-25T16:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6938d318-8271-419a-b722-bb51c2d92f11", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T16:03:26.000Z" + }, + "end": { + "$date": "2021-10-25T16:24:49.000Z" + }, + "events": [ + { + "uuid": "0c09c081-ae8c-4bdd-b8cd-0a9f5504961a", + "start": { + "$date": "2021-10-25T16:03:26.000Z" + }, + "end": { + "$date": "2021-10-25T16:24:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8dcb6f9-19b4-4156-bf98-e47a108d2a6b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T16:28:04.000Z" + }, + "end": { + "$date": "2021-10-25T16:43:59.000Z" + }, + "events": [ + { + "uuid": "671fbc2f-f02a-40e2-af91-4e96e49a92c2", + "start": { + "$date": "2021-10-25T16:28:04.000Z" + }, + "end": { + "$date": "2021-10-25T16:43:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cac7c7c-d535-4d89-bc35-14203645212d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T16:45:37.000Z" + }, + "end": { + "$date": "2021-10-25T17:09:40.000Z" + }, + "events": [ + { + "uuid": "8f8f236a-654d-480e-8827-af8098abdbd9", + "start": { + "$date": "2021-10-25T16:45:37.000Z" + }, + "end": { + "$date": "2021-10-25T17:09:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d328057a-cfcf-40c5-b197-f8a313913799", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-25T17:14:56.000Z" + }, + "end": { + "$date": "2021-10-25T17:33:08.000Z" + }, + "events": [ + { + "uuid": "c2213860-f5b2-4737-b496-ee68d8398f35", + "start": { + "$date": "2021-10-25T17:14:56.000Z" + }, + "end": { + "$date": "2021-10-25T17:33:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8520a52f-6cfd-4c65-9219-01d063baa4ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-25T18:49:48.000Z" + }, + "end": { + "$date": "2021-10-25T19:04:07.000Z" + }, + "events": [ + { + "uuid": "c7b4aa4c-8e12-44ab-88df-59e3c7da7b13", + "start": { + "$date": "2021-10-25T18:49:48.000Z" + }, + "end": { + "$date": "2021-10-25T19:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "f0648db3-1f4a-442d-8bf9-7bc8be980940", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-25T20:40:18.000Z" + }, + "end": { + "$date": "2021-10-25T21:18:59.000Z" + }, + "events": [ + { + "uuid": "490f1c47-5c8b-4cdc-9d97-3fa2322d9713", + "start": { + "$date": "2021-10-25T20:40:18.000Z" + }, + "end": { + "$date": "2021-10-25T21:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "37f1d416-eb98-4de2-8633-2b21c3c2826f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-25T21:16:41.000Z" + }, + "end": { + "$date": "2021-10-25T22:37:27.000Z" + }, + "events": [ + { + "uuid": "3f544fad-0340-4a7e-bc0c-b278c48f2154", + "start": { + "$date": "2021-10-25T21:16:41.000Z" + }, + "end": { + "$date": "2021-10-25T22:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "5286208a-d9e3-4326-aa0f-1e702bbc0dc4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-25T23:52:02.000Z" + }, + "end": { + "$date": "2021-10-26T01:45:01.000Z" + }, + "events": [ + { + "uuid": "57ff4c6e-4574-426e-ac3e-bed4b370ab27", + "start": { + "$date": "2021-10-25T23:52:02.000Z" + }, + "end": { + "$date": "2021-10-26T01:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3ff68561-26a6-47f1-93bf-3e7386aeae9d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-25T23:53:40.000Z" + }, + "end": { + "$date": "2021-10-26T00:51:23.000Z" + }, + "events": [ + { + "uuid": "1bb4c3cc-00ce-479d-84ba-e902be175c70", + "start": { + "$date": "2021-10-25T23:53:40.000Z" + }, + "end": { + "$date": "2021-10-26T00:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba52b880-364b-48f9-9b77-7b1e43ca85e1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-26T00:20:24.000Z" + }, + "end": { + "$date": "2021-10-26T03:29:49.000Z" + }, + "events": [ + { + "uuid": "481559a4-1281-4d0b-99b2-df13fbb7f64b", + "start": { + "$date": "2021-10-26T00:20:24.000Z" + }, + "end": { + "$date": "2021-10-26T03:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c5db14d7-1c05-48cb-b28c-462f80bf3519", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T00:21:06.000Z" + }, + "end": { + "$date": "2021-10-26T00:39:41.000Z" + }, + "events": [ + { + "uuid": "1a59978a-d28e-4fc2-872f-055274d0fd4f", + "start": { + "$date": "2021-10-26T00:21:06.000Z" + }, + "end": { + "$date": "2021-10-26T00:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "626a749b-4f7c-41fe-b1f8-d6652c067d2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T00:39:47.000Z" + }, + "end": { + "$date": "2021-10-26T03:48:04.000Z" + }, + "events": [ + { + "uuid": "7224ec9f-c28a-4cfb-b934-4be4e0281272", + "start": { + "$date": "2021-10-26T00:39:47.000Z" + }, + "end": { + "$date": "2021-10-26T03:48:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "90e1549d-6d52-4041-9fa9-c4a6daaca49a", + "uuid": "c851391f-be59-4a08-8e7f-e37a7b03d9a9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-26T00:53:48.000Z" + }, + "end": { + "$date": "2021-10-26T03:12:36.000Z" + }, + "events": [ + { + "uuid": "647b4644-ce2f-4f96-a632-0898cb6b06f5", + "start": { + "$date": "2021-10-26T00:53:48.000Z" + }, + "end": { + "$date": "2021-10-26T03:12:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9197a7d0-c708-48ea-b6cc-76ed0192b521", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-26T01:48:57.000Z" + }, + "end": { + "$date": "2021-10-26T06:20:00.000Z" + }, + "events": [ + { + "uuid": "409ae9b3-af8b-4023-a236-7ecfc38093a0", + "start": { + "$date": "2021-10-26T01:48:57.000Z" + }, + "end": { + "$date": "2021-10-26T06:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f744a80e-43ef-4766-b280-6a627787da47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-26T02:07:57.000Z" + }, + "end": { + "$date": "2021-10-26T02:19:51.000Z" + }, + "events": [ + { + "uuid": "9763f335-ea30-4ffc-833f-c086fc75f074", + "start": { + "$date": "2021-10-26T02:07:57.000Z" + }, + "end": { + "$date": "2021-10-26T02:19:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33279eb1-9918-4497-8115-cdd7bf8c4fcb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-26T02:26:02.000Z" + }, + "end": { + "$date": "2021-10-26T02:46:12.000Z" + }, + "events": [ + { + "uuid": "c245517a-f260-4df0-ac88-7ec39bfb638d", + "start": { + "$date": "2021-10-26T02:26:02.000Z" + }, + "end": { + "$date": "2021-10-26T02:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "0adda6c6-c297-47a8-8013-be27d8f89e18", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-26T02:37:49.000Z" + }, + "end": { + "$date": "2021-10-26T02:42:41.000Z" + }, + "events": [ + { + "uuid": "c2098056-a6f2-4f0a-9a73-6d5fb5600bca", + "start": { + "$date": "2021-10-26T02:37:49.000Z" + }, + "end": { + "$date": "2021-10-26T02:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "9ba84769-4a0e-479a-8c3f-7574aa96696f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-26T02:44:30.000Z" + }, + "end": { + "$date": "2021-10-26T03:13:05.000Z" + }, + "events": [ + { + "uuid": "b90e4d7c-162a-4786-b9cb-ba986e3121fe", + "start": { + "$date": "2021-10-26T02:44:30.000Z" + }, + "end": { + "$date": "2021-10-26T03:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "529b2298-b7b5-4d82-b9d8-abbf8c6c3460", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T03:02:00.000Z" + }, + "end": { + "$date": "2021-10-26T03:23:58.000Z" + }, + "events": [ + { + "uuid": "b8888bfd-1205-4830-aec6-16ac4a1c394b", + "start": { + "$date": "2021-10-26T03:02:00.000Z" + }, + "end": { + "$date": "2021-10-26T03:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "df1fdf69-e891-47b6-938d-aadc9f95e589", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-26T03:12:26.000Z" + }, + "end": { + "$date": "2021-10-26T04:24:46.000Z" + }, + "events": [ + { + "uuid": "bea26aa5-d17b-48fa-ba07-e4d045662609", + "start": { + "$date": "2021-10-26T03:12:26.000Z" + }, + "end": { + "$date": "2021-10-26T04:20:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "87600056-7ec3-48a4-bdd3-71e5edb5cd7d", + "start": { + "$date": "2021-10-26T04:20:26.000Z" + }, + "end": { + "$date": "2021-10-26T04:23:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5cfdfc82-b423-419e-98ca-d625ff86f637", + "start": { + "$date": "2021-10-26T04:23:26.000Z" + }, + "end": { + "$date": "2021-10-26T04:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "20ae9cdf-694a-4a3e-9d78-e04048ca9434", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-26T03:14:06.000Z" + }, + "end": { + "$date": "2021-10-26T03:32:37.000Z" + }, + "events": [ + { + "uuid": "35dc8a31-dd5e-4ec3-bd88-7ac09fa49aec", + "start": { + "$date": "2021-10-26T03:14:06.000Z" + }, + "end": { + "$date": "2021-10-26T03:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10e23945-e016-48a7-ac03-7a99869776fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-26T03:30:17.000Z" + }, + "end": { + "$date": "2021-10-26T03:56:42.000Z" + }, + "events": [ + { + "uuid": "84496d20-7deb-46f4-bf30-b645a643bccd", + "start": { + "$date": "2021-10-26T03:30:17.000Z" + }, + "end": { + "$date": "2021-10-26T03:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "41b08ffc-42e9-4f12-8c24-a9c5b59c2ac0", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-26T03:28:16.000Z" + }, + "end": { + "$date": "2021-10-26T05:13:15.000Z" + }, + "events": [ + { + "uuid": "5ab19f41-5d86-4202-ab3b-64c00efff459", + "start": { + "$date": "2021-10-26T03:28:16.000Z" + }, + "end": { + "$date": "2021-10-26T05:13:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ac74b69b-c5f9-4311-ad3f-3fabdd36537a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T03:48:09.000Z" + }, + "end": { + "$date": "2021-10-26T04:10:52.000Z" + }, + "events": [ + { + "uuid": "e5b96f7e-bc62-45ff-9719-ac85101b9034", + "start": { + "$date": "2021-10-26T03:48:09.000Z" + }, + "end": { + "$date": "2021-10-26T03:59:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1925d13d-0a72-4a71-8c03-11f1d1b9902b", + "start": { + "$date": "2021-10-26T03:59:09.000Z" + }, + "end": { + "$date": "2021-10-26T04:03:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "17842e92-fd12-464d-8f29-6520f36de9e0", + "start": { + "$date": "2021-10-26T04:03:09.000Z" + }, + "end": { + "$date": "2021-10-26T04:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "581350f4-1ad5-4fff-af2b-46d10796c70b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-26T03:57:12.000Z" + }, + "end": { + "$date": "2021-10-26T04:17:56.000Z" + }, + "events": [ + { + "uuid": "11b2542f-d260-4ee0-875d-9e3aad71dfa2", + "start": { + "$date": "2021-10-26T03:57:12.000Z" + }, + "end": { + "$date": "2021-10-26T04:17:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3d1da759-7162-44ab-bf9a-9748b094044a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T04:11:05.000Z" + }, + "end": { + "$date": "2021-10-26T05:13:48.000Z" + }, + "events": [ + { + "uuid": "5fcadcb3-2839-4cd2-92e9-a4e6a976e13d", + "start": { + "$date": "2021-10-26T04:11:05.000Z" + }, + "end": { + "$date": "2021-10-26T05:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49ab3f56-79b9-4314-a7fe-4ca0044127f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-26T05:26:19.000Z" + }, + "end": { + "$date": "2021-10-26T05:55:26.000Z" + }, + "events": [ + { + "uuid": "c4a40902-aae4-48f2-b3fd-616495c6885c", + "start": { + "$date": "2021-10-26T05:26:19.000Z" + }, + "end": { + "$date": "2021-10-26T05:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be40d2b8-c02f-476a-be4b-5219f8718302", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-26T06:04:43.000Z" + }, + "end": { + "$date": "2021-10-26T06:29:25.000Z" + }, + "events": [ + { + "uuid": "792ef987-1be7-4991-8e06-7d3d5970c951", + "start": { + "$date": "2021-10-26T06:04:43.000Z" + }, + "end": { + "$date": "2021-10-26T06:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "6b42dcf6-9c9f-48fc-b107-57b34b3dc9fe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T08:20:53.000Z" + }, + "end": { + "$date": "2021-10-26T13:21:40.000Z" + }, + "events": [ + { + "uuid": "f745e6b5-e769-417e-9166-bf3b09809455", + "start": { + "$date": "2021-10-26T08:20:53.000Z" + }, + "end": { + "$date": "2021-10-26T13:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81dd603f-979d-4b6b-bce1-a8ee67104acb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T13:59:15.000Z" + }, + "end": { + "$date": "2021-10-26T14:13:55.000Z" + }, + "events": [ + { + "uuid": "2c7ae263-b76c-4979-97f9-ede55bd8ad65", + "start": { + "$date": "2021-10-26T13:59:15.000Z" + }, + "end": { + "$date": "2021-10-26T14:17:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d115a502-83a3-4ef6-bde5-d7b6b4320853", + "start": { + "$date": "2021-10-26T14:17:15.000Z" + }, + "end": { + "$date": "2021-10-26T14:35:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3add149b-00ce-4fe7-b201-e2cc504c6ecb", + "start": { + "$date": "2021-10-26T14:35:15.000Z" + }, + "end": { + "$date": "2021-10-26T14:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14955985-ed46-49ec-a0c3-16dbda4e82da", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T14:18:50.000Z" + }, + "end": { + "$date": "2021-10-26T14:44:24.000Z" + }, + "events": [ + { + "uuid": "cb6b9041-4467-436e-8658-7c5ae8c42c5e", + "start": { + "$date": "2021-10-26T14:18:50.000Z" + }, + "end": { + "$date": "2021-10-26T14:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cba0508-df9f-4b07-bd3b-459c0c8e33a0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T14:48:29.000Z" + }, + "end": { + "$date": "2021-10-26T15:13:48.000Z" + }, + "events": [ + { + "uuid": "3f86e42f-24d6-40bb-a8e3-d5a20a3b8eec", + "start": { + "$date": "2021-10-26T14:48:29.000Z" + }, + "end": { + "$date": "2021-10-26T15:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d60091b-4e0d-4e4a-a82d-6e8aae33d228", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T15:16:03.000Z" + }, + "end": { + "$date": "2021-10-26T15:39:01.000Z" + }, + "events": [ + { + "uuid": "dc41ff8c-6ed4-4279-8471-e4977b2b19fc", + "start": { + "$date": "2021-10-26T15:16:03.000Z" + }, + "end": { + "$date": "2021-10-26T15:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0bbf7a0-0c11-45e8-8682-ea288093df30", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T15:41:06.000Z" + }, + "end": { + "$date": "2021-10-26T16:00:37.000Z" + }, + "events": [ + { + "uuid": "9e1f5218-53d5-43b0-bb03-5125872aaccf", + "start": { + "$date": "2021-10-26T15:41:06.000Z" + }, + "end": { + "$date": "2021-10-26T16:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2cf2947-8c61-428c-8049-4b191860f430", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T16:03:34.000Z" + }, + "end": { + "$date": "2021-10-26T16:31:22.000Z" + }, + "events": [ + { + "uuid": "51c433ec-95c3-45dd-abec-798ec52ca281", + "start": { + "$date": "2021-10-26T16:03:34.000Z" + }, + "end": { + "$date": "2021-10-26T16:31:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6994a7be-d925-4b26-a7da-cf22367e92e7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T16:33:22.000Z" + }, + "end": { + "$date": "2021-10-26T16:50:20.000Z" + }, + "events": [ + { + "uuid": "fa6dfa8a-e7f5-4ce0-b2f0-a45a81fa931f", + "start": { + "$date": "2021-10-26T16:33:22.000Z" + }, + "end": { + "$date": "2021-10-26T16:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89010508-4b4a-4618-a4d2-1e75ccf812bf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T16:53:50.000Z" + }, + "end": { + "$date": "2021-10-26T17:10:27.000Z" + }, + "events": [ + { + "uuid": "ad137d9e-42fe-4bc5-8e9e-8b3cb5d55861", + "start": { + "$date": "2021-10-26T16:53:50.000Z" + }, + "end": { + "$date": "2021-10-26T17:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f931cee8-a6d9-46d4-b899-12d7d5a654e6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T17:13:12.000Z" + }, + "end": { + "$date": "2021-10-26T17:32:15.000Z" + }, + "events": [ + { + "uuid": "2b42dd6c-7c39-49b8-bc29-7114419993da", + "start": { + "$date": "2021-10-26T17:13:12.000Z" + }, + "end": { + "$date": "2021-10-26T17:32:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f05d2691-df27-4a77-b5cf-6eefc9adf06b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T17:34:55.000Z" + }, + "end": { + "$date": "2021-10-26T17:51:03.000Z" + }, + "events": [ + { + "uuid": "672fecda-487b-496b-8e2b-607b9c74c1ae", + "start": { + "$date": "2021-10-26T17:34:55.000Z" + }, + "end": { + "$date": "2021-10-26T17:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e769e9f5-3a01-4ff8-9e7c-c45c73063431", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-26T17:53:12.000Z" + }, + "end": { + "$date": "2021-10-26T18:10:00.000Z" + }, + "events": [ + { + "uuid": "ca64bba3-e111-4723-9016-af800e20f4fb", + "start": { + "$date": "2021-10-26T17:53:12.000Z" + }, + "end": { + "$date": "2021-10-26T18:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1a43d092-7700-4c16-bc46-291d95c63277", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-26T18:02:51.000Z" + }, + "end": { + "$date": "2021-10-26T19:23:47.000Z" + }, + "events": [ + { + "uuid": "3d83ad0b-3bf5-4bfb-92be-fa537f2b4409", + "start": { + "$date": "2021-10-26T18:02:51.000Z" + }, + "end": { + "$date": "2021-10-26T19:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8da8bb88-0759-4b8f-841a-3fa6deb0e204", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T21:55:24.000Z" + }, + "end": { + "$date": "2021-10-26T22:09:04.000Z" + }, + "events": [ + { + "uuid": "8f40cb0d-4714-4c14-a91e-b9e0b632880a", + "start": { + "$date": "2021-10-26T21:55:24.000Z" + }, + "end": { + "$date": "2021-10-26T22:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "ddfc844a-9bae-4e7a-b59d-bbbe1332c66c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-26T22:01:04.000Z" + }, + "end": { + "$date": "2021-10-26T22:31:41.000Z" + }, + "events": [ + { + "uuid": "f06a64f7-0c02-43df-89c9-bc25c55ee66e", + "start": { + "$date": "2021-10-26T22:01:04.000Z" + }, + "end": { + "$date": "2021-10-26T22:31:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "b773f466-b07a-4358-8ee4-fe4f2132fb77", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-26T22:40:03.000Z" + }, + "end": { + "$date": "2021-10-26T22:48:42.000Z" + }, + "events": [ + { + "uuid": "0fa3c50b-abc7-4a2d-8890-27930c5de3a3", + "start": { + "$date": "2021-10-26T22:40:03.000Z" + }, + "end": { + "$date": "2021-10-26T22:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1c94314-120a-46f4-9b4e-0eb3eb023657", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-26T22:50:05.000Z" + }, + "end": { + "$date": "2021-10-26T23:31:20.000Z" + }, + "events": [ + { + "uuid": "c1ef5563-dbe8-4d71-a373-c441244663d8", + "start": { + "$date": "2021-10-26T22:50:05.000Z" + }, + "end": { + "$date": "2021-10-26T23:31:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "909c0843-9ad5-4176-86e4-9a110b695671", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T22:45:00.000Z" + }, + "end": { + "$date": "2021-10-26T23:21:51.000Z" + }, + "events": [ + { + "uuid": "3e3ed424-eda3-4544-9608-70155fad7471", + "start": { + "$date": "2021-10-26T22:45:00.000Z" + }, + "end": { + "$date": "2021-10-26T23:21:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cc2c070-559f-4796-bfaa-16a76bdb81b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-26T23:30:46.000Z" + }, + "end": { + "$date": "2021-10-26T23:52:17.000Z" + }, + "events": [ + { + "uuid": "f6d9a675-ee41-4c58-80f3-34d9b2724888", + "start": { + "$date": "2021-10-26T23:30:46.000Z" + }, + "end": { + "$date": "2021-10-26T23:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "27539657-f5e6-489e-b412-6b4045cc4239", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T23:32:32.000Z" + }, + "end": { + "$date": "2021-10-26T23:46:18.000Z" + }, + "events": [ + { + "uuid": "3147d39f-b94b-409e-87ad-a44d91536c14", + "start": { + "$date": "2021-10-26T23:32:32.000Z" + }, + "end": { + "$date": "2021-10-26T23:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d48d11d4-003f-4f36-b189-5929cda794a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-26T23:46:58.000Z" + }, + "end": { + "$date": "2021-10-27T02:01:04.000Z" + }, + "events": [ + { + "uuid": "102484ad-8adb-435b-b42a-4e2edb8f5ff7", + "start": { + "$date": "2021-10-26T23:46:58.000Z" + }, + "end": { + "$date": "2021-10-27T02:01:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b0bc934-277a-4d80-bcff-ccd203d424ff", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-27T00:11:46.000Z" + }, + "end": { + "$date": "2021-10-27T00:47:06.000Z" + }, + "events": [ + { + "uuid": "60f5dbac-2c32-4b0f-aa02-39f7fe35a5cc", + "start": { + "$date": "2021-10-27T00:11:46.000Z" + }, + "end": { + "$date": "2021-10-27T00:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c10f1a00-df02-4672-825a-2c7c64baca1f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-27T00:12:21.000Z" + }, + "end": { + "$date": "2021-10-27T04:46:59.000Z" + }, + "events": [ + { + "uuid": "8d568c3b-45d8-45a5-bfd1-2a36afbda034", + "start": { + "$date": "2021-10-27T00:12:21.000Z" + }, + "end": { + "$date": "2021-10-27T04:46:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "2d426331-961a-46fe-a45d-bd7c8e6361a1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-27T00:21:10.000Z" + }, + "end": { + "$date": "2021-10-27T01:30:42.000Z" + }, + "events": [ + { + "uuid": "ee771f85-28b9-41ab-a973-bdd79bce0e38", + "start": { + "$date": "2021-10-27T00:21:10.000Z" + }, + "end": { + "$date": "2021-10-27T01:30:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "4054cb77-ca0b-4f65-a8e3-a2702e362c01", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-27T01:14:34.000Z" + }, + "end": { + "$date": "2021-10-27T02:22:07.000Z" + }, + "events": [ + { + "uuid": "1be73e92-0431-4477-802e-e1e3a1457533", + "start": { + "$date": "2021-10-27T01:14:34.000Z" + }, + "end": { + "$date": "2021-10-27T02:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0a3bd64c-6c68-42d7-be87-c46d00c2a845", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-27T01:23:03.000Z" + }, + "end": { + "$date": "2021-10-27T04:08:42.000Z" + }, + "events": [ + { + "uuid": "657c5591-d9c1-49f1-871c-c18154a2c94a", + "start": { + "$date": "2021-10-27T01:23:03.000Z" + }, + "end": { + "$date": "2021-10-27T04:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31926d5e-0d29-4fc4-b0eb-85c12e78abe5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-27T01:39:16.000Z" + }, + "end": { + "$date": "2021-10-27T02:08:41.000Z" + }, + "events": [ + { + "uuid": "54c78c28-4358-43e7-8ef8-3ac7f203cc62", + "start": { + "$date": "2021-10-27T01:39:16.000Z" + }, + "end": { + "$date": "2021-10-27T02:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "edb11a8b-df59-4d72-9c03-e4503611efe0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-27T02:02:14.000Z" + }, + "end": { + "$date": "2021-10-27T05:15:24.000Z" + }, + "events": [ + { + "uuid": "58a8ca2f-5f64-4f7d-abc8-65fb29def132", + "start": { + "$date": "2021-10-27T02:02:14.000Z" + }, + "end": { + "$date": "2021-10-27T04:59:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fcee4d08-90c9-4fea-a7a9-ff24e8558775", + "start": { + "$date": "2021-10-27T04:59:14.000Z" + }, + "end": { + "$date": "2021-10-27T05:12:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "820e00fe-d383-4427-8ad9-45d0b0d1b7ce", + "start": { + "$date": "2021-10-27T05:12:14.000Z" + }, + "end": { + "$date": "2021-10-27T05:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "97a8808f-2b04-4693-aafd-3f6696b88618", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-27T02:05:51.000Z" + }, + "end": { + "$date": "2021-10-27T03:29:37.000Z" + }, + "events": [ + { + "uuid": "9f3ec0e0-a22d-4057-9bc4-40766f94f2d9", + "start": { + "$date": "2021-10-27T02:05:51.000Z" + }, + "end": { + "$date": "2021-10-27T03:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "065cb2c7-ab29-4e32-8d3b-342854009bd4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-27T02:06:12.000Z" + }, + "end": { + "$date": "2021-10-27T05:12:47.000Z" + }, + "events": [ + { + "uuid": "c7f6adfe-5068-4486-921e-ef204f3a15cb", + "start": { + "$date": "2021-10-27T02:06:12.000Z" + }, + "end": { + "$date": "2021-10-27T05:12:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "30e2f512-71d7-4181-a9fd-813f62d8fa98", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-27T02:08:51.000Z" + }, + "end": { + "$date": "2021-10-27T03:29:43.000Z" + }, + "events": [ + { + "uuid": "dec68579-5fac-489d-be55-c3a9447e7f8b", + "start": { + "$date": "2021-10-27T02:08:51.000Z" + }, + "end": { + "$date": "2021-10-27T03:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76102989-170c-49a2-b218-27cad8845bdf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-27T02:16:22.000Z" + }, + "end": { + "$date": "2021-10-27T02:52:11.000Z" + }, + "events": [ + { + "uuid": "4f829776-0a58-4668-b94a-65011bf94d8d", + "start": { + "$date": "2021-10-27T02:16:22.000Z" + }, + "end": { + "$date": "2021-10-27T02:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "d2f41d62-fec4-460f-af86-8d2ab2bc0fbf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-27T02:23:48.000Z" + }, + "end": { + "$date": "2021-10-27T03:24:21.000Z" + }, + "events": [ + { + "uuid": "99bd9deb-7421-4609-b5f7-698b611721c6", + "start": { + "$date": "2021-10-27T02:23:48.000Z" + }, + "end": { + "$date": "2021-10-27T03:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4dd54b9-0a3e-4bc7-ae29-2b3e32de01fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-27T02:55:32.000Z" + }, + "end": { + "$date": "2021-10-27T15:14:22.000Z" + }, + "events": [ + { + "uuid": "6951aa1d-2185-47fb-a60a-cdb805d29117", + "start": { + "$date": "2021-10-27T02:55:32.000Z" + }, + "end": { + "$date": "2021-10-27T03:42:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d5f9686-df57-4982-8cfa-3b80599c7adc", + "start": { + "$date": "2021-10-27T03:42:32.000Z" + }, + "end": { + "$date": "2021-10-27T14:56:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a9ddcfa0-fd3e-4dfa-a527-e7a49b0173e7", + "start": { + "$date": "2021-10-27T14:56:32.000Z" + }, + "end": { + "$date": "2021-10-27T15:00:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc103b27-560b-4ac8-ae6e-64e7c6e90b2f", + "start": { + "$date": "2021-10-27T15:00:32.000Z" + }, + "end": { + "$date": "2021-10-27T15:15:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f447ec1b-6bff-48fd-a8b2-892fa7b70822", + "start": { + "$date": "2021-10-27T15:15:32.000Z" + }, + "end": { + "$date": "2021-10-27T15:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8774862-86d5-440c-98e7-8d908f021e4a", + "uuid": "80355493-5b19-4e01-bb58-0369ce16ff69", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-27T03:33:56.000Z" + }, + "end": { + "$date": "2021-10-27T06:08:37.000Z" + }, + "events": [ + { + "uuid": "0b535b00-ee24-41a0-b927-4d684e25accf", + "start": { + "$date": "2021-10-27T03:33:56.000Z" + }, + "end": { + "$date": "2021-10-27T06:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bce7a7ac-6fff-4c44-9bf7-9babde884e5b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-27T03:51:20.000Z" + }, + "end": { + "$date": "2021-10-27T05:12:39.000Z" + }, + "events": [ + { + "uuid": "2920c046-8fd9-46e4-b97e-574f189f6ca2", + "start": { + "$date": "2021-10-27T03:51:20.000Z" + }, + "end": { + "$date": "2021-10-27T05:12:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "534d97c3-60e1-45fb-93c8-074bccd62026", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2021-10-27T04:04:15.000Z" + }, + "end": { + "$date": "2021-10-27T05:44:50.000Z" + }, + "events": [ + { + "uuid": "d0091cc0-9aa3-4d92-98d6-b1277abfefc3", + "start": { + "$date": "2021-10-27T04:04:15.000Z" + }, + "end": { + "$date": "2021-10-27T05:44:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7afb481c-c795-4bdf-b71b-5219562af4b6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-27T05:01:26.000Z" + }, + "end": { + "$date": "2021-10-27T05:41:19.000Z" + }, + "events": [ + { + "uuid": "7771a53b-072d-4075-8342-11ef0c1640d6", + "start": { + "$date": "2021-10-27T05:01:26.000Z" + }, + "end": { + "$date": "2021-10-27T05:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "df70a956-8a48-4761-ba53-ebebd72eb55d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-27T05:31:32.000Z" + }, + "end": { + "$date": "2021-10-27T06:03:04.000Z" + }, + "events": [ + { + "uuid": "5c013be4-14ac-4e1f-8ffc-532e8dd5a25d", + "start": { + "$date": "2021-10-27T05:31:32.000Z" + }, + "end": { + "$date": "2021-10-27T06:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bb717fa-a48b-4791-8228-e647000b9c23", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-27T05:53:12.000Z" + }, + "end": { + "$date": "2021-10-27T06:16:05.000Z" + }, + "events": [ + { + "uuid": "d7b25d56-aab0-448b-a7ec-2d130883b1cd", + "start": { + "$date": "2021-10-27T05:53:12.000Z" + }, + "end": { + "$date": "2021-10-27T06:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8774862-86d5-440c-98e7-8d908f021e4a", + "uuid": "09ded406-1a3d-49b9-a1c8-29e293ebe554", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-27T06:09:12.000Z" + }, + "end": { + "$date": "2021-10-27T06:20:22.000Z" + }, + "events": [ + { + "uuid": "f2b238c5-65fc-4996-bba9-8c5f70b21c03", + "start": { + "$date": "2021-10-27T06:09:12.000Z" + }, + "end": { + "$date": "2021-10-27T06:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1d45682-d952-4cd7-8613-dda1347df497", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-27T06:27:12.000Z" + }, + "end": { + "$date": "2021-10-27T07:00:30.000Z" + }, + "events": [ + { + "uuid": "dc3b30c6-a35d-4294-8e03-bd49a4eb54a5", + "start": { + "$date": "2021-10-27T06:27:12.000Z" + }, + "end": { + "$date": "2021-10-27T07:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13a10843-a04b-4e45-9c5b-aa0289742730", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T06:27:49.000Z" + }, + "end": { + "$date": "2021-10-27T06:41:56.000Z" + }, + "events": [ + { + "uuid": "20f4f059-4f23-44fd-8464-094db4338efa", + "start": { + "$date": "2021-10-27T06:27:49.000Z" + }, + "end": { + "$date": "2021-10-27T06:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78fdc0d7-b1fa-487b-8fd9-3e9198ee99a3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T06:43:51.000Z" + }, + "end": { + "$date": "2021-10-27T07:02:13.000Z" + }, + "events": [ + { + "uuid": "983167ae-c567-4a00-8721-ddbac55e2a54", + "start": { + "$date": "2021-10-27T06:43:51.000Z" + }, + "end": { + "$date": "2021-10-27T07:02:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f751a702-a1ed-43a8-8c59-35b4c521c582", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T07:06:29.000Z" + }, + "end": { + "$date": "2021-10-27T07:25:07.000Z" + }, + "events": [ + { + "uuid": "4df110a5-257d-48d8-b24e-b64d28d08405", + "start": { + "$date": "2021-10-27T07:06:29.000Z" + }, + "end": { + "$date": "2021-10-27T07:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6b0db2d-57f8-46c5-b937-a30b6e3946ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T07:29:17.000Z" + }, + "end": { + "$date": "2021-10-27T07:56:30.000Z" + }, + "events": [ + { + "uuid": "5ca141f8-272a-466e-b482-b5c397e2a0d9", + "start": { + "$date": "2021-10-27T07:29:17.000Z" + }, + "end": { + "$date": "2021-10-27T07:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2fcbff7b-684e-4f7f-9f83-2da51e63471b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T07:59:25.000Z" + }, + "end": { + "$date": "2021-10-27T08:21:48.000Z" + }, + "events": [ + { + "uuid": "1917d679-7b97-4b97-9012-d49c51fcabc3", + "start": { + "$date": "2021-10-27T07:59:25.000Z" + }, + "end": { + "$date": "2021-10-27T08:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5093c26e-ffc4-4976-9ca8-ce6e5b44f7d0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T08:23:58.000Z" + }, + "end": { + "$date": "2021-10-27T08:42:16.000Z" + }, + "events": [ + { + "uuid": "23a4318c-13b2-4e55-a69a-db210ebd3547", + "start": { + "$date": "2021-10-27T08:23:58.000Z" + }, + "end": { + "$date": "2021-10-27T08:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f5316d3-3b7e-47c2-a367-297eaf4e92c2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T08:44:16.000Z" + }, + "end": { + "$date": "2021-10-27T09:08:07.000Z" + }, + "events": [ + { + "uuid": "43f5d7b4-0735-47cd-9fb4-4b6250dc7e3d", + "start": { + "$date": "2021-10-27T08:44:16.000Z" + }, + "end": { + "$date": "2021-10-27T09:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7593e7a4-2c95-45f7-8b3d-0d0f96305c13", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T09:10:59.000Z" + }, + "end": { + "$date": "2021-10-27T09:35:07.000Z" + }, + "events": [ + { + "uuid": "68f860be-2e96-4b97-a586-9602af10e7e9", + "start": { + "$date": "2021-10-27T09:10:59.000Z" + }, + "end": { + "$date": "2021-10-27T09:35:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ede27d5b-350d-4cf3-97c9-4763ca7cd284", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T09:38:08.000Z" + }, + "end": { + "$date": "2021-10-27T09:58:10.000Z" + }, + "events": [ + { + "uuid": "9baac77b-a201-496a-ac67-4131d9906ac1", + "start": { + "$date": "2021-10-27T09:38:08.000Z" + }, + "end": { + "$date": "2021-10-27T09:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7616f8eb-8b8e-4386-af5a-5ce5d184ce7f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T10:02:01.000Z" + }, + "end": { + "$date": "2021-10-27T10:27:44.000Z" + }, + "events": [ + { + "uuid": "6d801f33-9d37-465f-9deb-c32022dd405e", + "start": { + "$date": "2021-10-27T10:02:01.000Z" + }, + "end": { + "$date": "2021-10-27T10:27:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66387568-49fb-4276-aef4-d80b59e3a6ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T11:43:00.000Z" + }, + "end": { + "$date": "2021-10-27T11:58:35.000Z" + }, + "events": [ + { + "uuid": "3f05f772-a5ab-4501-840e-08dab1e300b8", + "start": { + "$date": "2021-10-27T11:43:00.000Z" + }, + "end": { + "$date": "2021-10-27T11:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c7cc4c8-fc04-4d91-838b-e796a0d3b7eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T12:02:05.000Z" + }, + "end": { + "$date": "2021-10-27T12:17:36.000Z" + }, + "events": [ + { + "uuid": "61e6d060-ea4c-4e28-82ad-57e78cfc8a7e", + "start": { + "$date": "2021-10-27T12:02:05.000Z" + }, + "end": { + "$date": "2021-10-27T12:17:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9ea5b0b-d639-4092-a4ff-abb15e69a257", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T12:20:51.000Z" + }, + "end": { + "$date": "2021-10-27T12:42:45.000Z" + }, + "events": [ + { + "uuid": "d97067ef-ed4f-426d-aa88-3dbbccbbc7de", + "start": { + "$date": "2021-10-27T12:20:51.000Z" + }, + "end": { + "$date": "2021-10-27T12:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08819198-534d-4cac-819b-f818a99d18a1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T12:45:01.000Z" + }, + "end": { + "$date": "2021-10-27T13:07:48.000Z" + }, + "events": [ + { + "uuid": "490dce23-d073-4f72-9db5-82f0f72157b9", + "start": { + "$date": "2021-10-27T12:45:01.000Z" + }, + "end": { + "$date": "2021-10-27T13:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fb25c69-4a79-4cee-8630-9457c209ab0f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T13:10:48.000Z" + }, + "end": { + "$date": "2021-10-27T13:31:40.000Z" + }, + "events": [ + { + "uuid": "41ab8589-d151-45e6-bc2f-41422fa1fb51", + "start": { + "$date": "2021-10-27T13:10:48.000Z" + }, + "end": { + "$date": "2021-10-27T13:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8163fcb1-cc23-43a6-b5c9-0046bf521a37", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T13:35:41.000Z" + }, + "end": { + "$date": "2021-10-27T13:51:43.000Z" + }, + "events": [ + { + "uuid": "1b1e192a-0b8a-44b2-a7b7-0bff8f92e2c6", + "start": { + "$date": "2021-10-27T13:35:41.000Z" + }, + "end": { + "$date": "2021-10-27T13:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75612b61-fd4f-4e30-8f34-819dd1c48ac0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T13:53:58.000Z" + }, + "end": { + "$date": "2021-10-27T14:21:17.000Z" + }, + "events": [ + { + "uuid": "3d5456b1-89b9-4207-840b-d6420b213ebf", + "start": { + "$date": "2021-10-27T13:53:58.000Z" + }, + "end": { + "$date": "2021-10-27T14:21:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc04dfac-364d-4654-bfe8-1b9d24a2ab4c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T14:25:22.000Z" + }, + "end": { + "$date": "2021-10-27T14:45:25.000Z" + }, + "events": [ + { + "uuid": "7f8358c8-3c07-4df5-bdc1-4b4d00b6988a", + "start": { + "$date": "2021-10-27T14:25:22.000Z" + }, + "end": { + "$date": "2021-10-27T14:45:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17ed7106-0398-42f1-a0d7-1a6a544ca241", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T14:47:30.000Z" + }, + "end": { + "$date": "2021-10-27T15:05:17.000Z" + }, + "events": [ + { + "uuid": "0b01abe2-2874-4a5a-89a2-f3058a9fb1bf", + "start": { + "$date": "2021-10-27T14:47:30.000Z" + }, + "end": { + "$date": "2021-10-27T15:05:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6e92eb9-e0a2-44b0-b1ee-bc4736f932dc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T15:08:38.000Z" + }, + "end": { + "$date": "2021-10-27T15:24:04.000Z" + }, + "events": [ + { + "uuid": "30a1e353-8c55-484c-85d8-7c6e56b4af9a", + "start": { + "$date": "2021-10-27T15:08:38.000Z" + }, + "end": { + "$date": "2021-10-27T15:24:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58007af9-35c1-484f-9095-28577c0cfc1a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T15:28:15.000Z" + }, + "end": { + "$date": "2021-10-27T15:38:42.000Z" + }, + "events": [ + { + "uuid": "b14d1ff9-4c6b-4995-891f-ae809d0a2790", + "start": { + "$date": "2021-10-27T15:28:15.000Z" + }, + "end": { + "$date": "2021-10-27T15:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ae499d2-888f-4574-a40e-fda0b528f47f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T15:41:12.000Z" + }, + "end": { + "$date": "2021-10-27T16:05:40.000Z" + }, + "events": [ + { + "uuid": "0b27c254-33e1-4a63-a306-d32cfe24672e", + "start": { + "$date": "2021-10-27T15:41:12.000Z" + }, + "end": { + "$date": "2021-10-27T16:05:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f796d67a-3c62-49be-b600-cf607f62c5db", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T16:08:00.000Z" + }, + "end": { + "$date": "2021-10-27T16:24:43.000Z" + }, + "events": [ + { + "uuid": "1ac7e763-9896-42b8-9152-4b560a524161", + "start": { + "$date": "2021-10-27T16:08:00.000Z" + }, + "end": { + "$date": "2021-10-27T16:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "d8199eab-7218-4c39-9384-a516254904ea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-27T16:20:49.000Z" + }, + "end": { + "$date": "2021-10-27T17:43:32.000Z" + }, + "events": [ + { + "uuid": "20022925-1520-4614-b8ef-ae2433dd3be4", + "start": { + "$date": "2021-10-27T16:20:49.000Z" + }, + "end": { + "$date": "2021-10-27T17:43:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4c46523-2e91-49a7-8ddb-4bddba469d78", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T16:26:48.000Z" + }, + "end": { + "$date": "2021-10-27T16:49:56.000Z" + }, + "events": [ + { + "uuid": "7969c403-6764-464b-bc55-797e93e94e5b", + "start": { + "$date": "2021-10-27T16:26:48.000Z" + }, + "end": { + "$date": "2021-10-27T16:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b574d7a9-6c71-4a6c-bfef-188d9dbe6e49", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T16:55:47.000Z" + }, + "end": { + "$date": "2021-10-27T17:14:39.000Z" + }, + "events": [ + { + "uuid": "6369c171-74d6-4804-bb28-52c96b39ac9b", + "start": { + "$date": "2021-10-27T16:55:47.000Z" + }, + "end": { + "$date": "2021-10-27T17:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8598181-9046-48c7-9600-7239ce711386", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T17:16:59.000Z" + }, + "end": { + "$date": "2021-10-27T17:51:14.000Z" + }, + "events": [ + { + "uuid": "d6507058-5154-4608-88fc-8a4e0dc05da4", + "start": { + "$date": "2021-10-27T17:16:59.000Z" + }, + "end": { + "$date": "2021-10-27T17:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74e466f4-5417-4e45-9c0c-5b46a151b285", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T17:53:24.000Z" + }, + "end": { + "$date": "2021-10-27T18:12:57.000Z" + }, + "events": [ + { + "uuid": "943202c1-9699-485a-bf26-4462e0ad6242", + "start": { + "$date": "2021-10-27T17:53:24.000Z" + }, + "end": { + "$date": "2021-10-27T18:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d40a8d21-3ae4-44af-b84a-def1c17a827b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-27T18:15:12.000Z" + }, + "end": { + "$date": "2021-10-27T18:33:54.000Z" + }, + "events": [ + { + "uuid": "f978a020-497a-4e75-b837-06b77bc4e2f3", + "start": { + "$date": "2021-10-27T18:15:12.000Z" + }, + "end": { + "$date": "2021-10-27T18:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "daa253fd-70b5-4e54-9177-39074aa3926b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-27T18:13:59.000Z" + }, + "end": { + "$date": "2021-10-27T19:26:14.000Z" + }, + "events": [ + { + "uuid": "8adbbd8c-eb0f-4760-8406-fbe387c2776b", + "start": { + "$date": "2021-10-27T18:13:59.000Z" + }, + "end": { + "$date": "2021-10-27T19:26:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a8ae82c-ccf0-43e3-ad48-62e645087c99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-27T18:37:28.000Z" + }, + "end": { + "$date": "2021-10-27T18:58:33.000Z" + }, + "events": [ + { + "uuid": "4d23be97-75e9-46c2-86d0-eccf500fc131", + "start": { + "$date": "2021-10-27T18:37:28.000Z" + }, + "end": { + "$date": "2021-10-27T18:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9dd41f0-6f91-4c6e-9ceb-15dab4eb6547", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-27T19:14:14.000Z" + }, + "end": { + "$date": "2021-10-27T19:34:38.000Z" + }, + "events": [ + { + "uuid": "2ce07c42-0c17-4188-aaef-e7dc2427e3ad", + "start": { + "$date": "2021-10-27T19:14:14.000Z" + }, + "end": { + "$date": "2021-10-27T19:34:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8b65aaaf-03b4-4573-9edf-50564aacbbe4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-27T22:10:18.000Z" + }, + "end": { + "$date": "2021-10-27T23:16:38.000Z" + }, + "events": [ + { + "uuid": "b4ae6a20-03dc-40b7-957a-b83afabe22ca", + "start": { + "$date": "2021-10-27T22:10:18.000Z" + }, + "end": { + "$date": "2021-10-27T23:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "0c5eafe5-52a5-4bbd-a0b7-69ff47cd2593", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-27T23:01:54.000Z" + }, + "end": { + "$date": "2021-10-27T23:42:59.000Z" + }, + "events": [ + { + "uuid": "b9579efd-adc4-4549-9f00-ce80ecdc4eb7", + "start": { + "$date": "2021-10-27T23:01:54.000Z" + }, + "end": { + "$date": "2021-10-27T23:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0aaadba3-f424-4fc4-a307-8356aa1e3c55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-27T23:18:38.000Z" + }, + "end": { + "$date": "2021-10-28T01:06:46.000Z" + }, + "events": [ + { + "uuid": "7d756e48-4ea9-4996-b4d2-8d863fb1481c", + "start": { + "$date": "2021-10-27T23:18:38.000Z" + }, + "end": { + "$date": "2021-10-27T23:35:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40525019-ac8b-4a12-97c9-05877dc16472", + "start": { + "$date": "2021-10-27T23:35:38.000Z" + }, + "end": { + "$date": "2021-10-27T23:40:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a60be251-059a-4c6a-81a2-e0f869069988", + "start": { + "$date": "2021-10-27T23:40:38.000Z" + }, + "end": { + "$date": "2021-10-28T01:06:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "f2a259ce-5c2f-42ec-8c32-e807eb4e1de4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-27T23:44:00.000Z" + }, + "end": { + "$date": "2021-10-28T00:37:15.000Z" + }, + "events": [ + { + "uuid": "2f577cd3-15d3-4e37-921b-20227293ece0", + "start": { + "$date": "2021-10-27T23:44:00.000Z" + }, + "end": { + "$date": "2021-10-28T00:37:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fb02f5f3-87d5-4fda-95b5-458873160db6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-27T23:57:29.000Z" + }, + "end": { + "$date": "2021-10-28T07:03:44.000Z" + }, + "events": [ + { + "uuid": "c19f0ac8-1c0a-4682-bf06-e7b8a1850e7d", + "start": { + "$date": "2021-10-27T23:57:29.000Z" + }, + "end": { + "$date": "2021-10-28T07:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9cbb8e46-6a04-4555-a59c-665ffbca040f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-27T23:54:29.000Z" + }, + "end": { + "$date": "2021-10-28T04:47:58.000Z" + }, + "events": [ + { + "uuid": "99fd880b-5dd1-43d2-bd85-24821fa1dc08", + "start": { + "$date": "2021-10-27T23:54:29.000Z" + }, + "end": { + "$date": "2021-10-28T04:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "55634f2d-fc36-47a0-a64c-03d206689ab1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-28T00:24:34.000Z" + }, + "end": { + "$date": "2021-10-28T00:36:06.000Z" + }, + "events": [ + { + "uuid": "7169c7fb-8191-4fbe-8931-4a7e98fd0ce4", + "start": { + "$date": "2021-10-28T00:24:34.000Z" + }, + "end": { + "$date": "2021-10-28T00:36:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23ad4279-6484-472c-9fcd-2001ebb2f3b3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-28T00:51:01.000Z" + }, + "end": { + "$date": "2021-10-28T01:13:56.000Z" + }, + "events": [ + { + "uuid": "040e896c-e7b1-4a48-aa47-c5f4197e812b", + "start": { + "$date": "2021-10-28T00:51:01.000Z" + }, + "end": { + "$date": "2021-10-28T01:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "c554a08f-89bb-44ca-af59-7d1f5df36183", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-28T00:51:48.000Z" + }, + "end": { + "$date": "2021-10-28T02:00:28.000Z" + }, + "events": [ + { + "uuid": "756dc51f-45fa-42cb-b5c4-e19ffc072044", + "start": { + "$date": "2021-10-28T00:51:48.000Z" + }, + "end": { + "$date": "2021-10-28T02:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea127779-18c5-4bac-a718-57fcc5da1e58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-28T01:19:38.000Z" + }, + "end": { + "$date": "2021-10-28T01:48:20.000Z" + }, + "events": [ + { + "uuid": "38c81a24-bc73-4322-a009-487e86f1af00", + "start": { + "$date": "2021-10-28T01:19:38.000Z" + }, + "end": { + "$date": "2021-10-28T01:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b5d7ffc4-cf37-435e-b701-dc2836558dd5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-28T01:21:56.000Z" + }, + "end": { + "$date": "2021-10-28T02:46:18.000Z" + }, + "events": [ + { + "uuid": "5e0d53cc-36d4-4451-ab21-40cfd31d7596", + "start": { + "$date": "2021-10-28T01:21:56.000Z" + }, + "end": { + "$date": "2021-10-28T02:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3dd395f7-5c4b-4e3c-ad1c-fd2d45a39939", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-28T01:23:34.000Z" + }, + "end": { + "$date": "2021-10-28T05:40:30.000Z" + }, + "events": [ + { + "uuid": "18cc940d-b353-4d77-9321-3d57219f5a5e", + "start": { + "$date": "2021-10-28T01:23:34.000Z" + }, + "end": { + "$date": "2021-10-28T03:33:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff0f6bd8-cc33-41e7-a6db-55e375f036f8", + "start": { + "$date": "2021-10-28T03:33:34.000Z" + }, + "end": { + "$date": "2021-10-28T03:43:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "57261e1f-1e99-4d4b-a0e6-a374ae24ab62", + "start": { + "$date": "2021-10-28T03:43:34.000Z" + }, + "end": { + "$date": "2021-10-28T05:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0268f9ed-00a0-482c-918f-d776e5d352cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-28T01:24:19.000Z" + }, + "end": { + "$date": "2021-10-28T03:20:01.000Z" + }, + "events": [ + { + "uuid": "2729b954-785b-467d-b8db-706f7e233665", + "start": { + "$date": "2021-10-28T01:24:19.000Z" + }, + "end": { + "$date": "2021-10-28T03:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7a654dfd-d3df-4d3f-b406-ee16fa293f8d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-28T02:17:11.000Z" + }, + "end": { + "$date": "2021-10-28T04:09:04.000Z" + }, + "events": [ + { + "uuid": "cceab5e3-a1c8-4dc9-9d5d-ee0c6e7ee647", + "start": { + "$date": "2021-10-28T02:17:11.000Z" + }, + "end": { + "$date": "2021-10-28T02:28:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ec6b4ed-6339-4250-8ee9-b4e34bbd8e56", + "start": { + "$date": "2021-10-28T02:28:11.000Z" + }, + "end": { + "$date": "2021-10-28T02:29:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c239aea4-cb94-41a0-9566-587cf5bf9b1c", + "start": { + "$date": "2021-10-28T02:29:11.000Z" + }, + "end": { + "$date": "2021-10-28T04:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "4c48b0b7-e91d-472a-ac22-e40bc5e717e3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-28T02:55:37.000Z" + }, + "end": { + "$date": "2021-10-28T04:09:27.000Z" + }, + "events": [ + { + "uuid": "fe6de56b-292a-460e-a2d1-28110593b1a7", + "start": { + "$date": "2021-10-28T02:55:37.000Z" + }, + "end": { + "$date": "2021-10-28T04:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aba3cd81-00ff-40d6-a9cc-6b8434fb0e30", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-28T03:36:57.000Z" + }, + "end": { + "$date": "2021-10-28T04:09:03.000Z" + }, + "events": [ + { + "uuid": "8d84d1db-0edd-4bdd-a583-c02c93f59807", + "start": { + "$date": "2021-10-28T03:36:57.000Z" + }, + "end": { + "$date": "2021-10-28T04:09:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "a8547294-ab0d-4c16-8cd7-81cbd1dfb302", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-28T03:43:11.000Z" + }, + "end": { + "$date": "2021-10-28T04:32:48.000Z" + }, + "events": [ + { + "uuid": "95c36884-09ac-40a7-a375-54b13fb4ee52", + "start": { + "$date": "2021-10-28T03:43:11.000Z" + }, + "end": { + "$date": "2021-10-28T04:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2281ef98-ad62-4fa6-86a4-dc3b94f2820e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-28T03:52:15.000Z" + }, + "end": { + "$date": "2021-10-28T04:17:38.000Z" + }, + "events": [ + { + "uuid": "1b0f5d51-ae2c-4805-a62b-acc177bd4688", + "start": { + "$date": "2021-10-28T03:52:15.000Z" + }, + "end": { + "$date": "2021-10-28T04:17:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcc40f38-0464-4aa6-959f-536aedfb2a50", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-28T04:23:48.000Z" + }, + "end": { + "$date": "2021-10-28T04:52:51.000Z" + }, + "events": [ + { + "uuid": "543a3eb9-2058-4584-bcda-8ec1527dc33c", + "start": { + "$date": "2021-10-28T04:23:48.000Z" + }, + "end": { + "$date": "2021-10-28T04:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "90ae2e89-1b35-4854-bdab-741d8bc50c18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-28T04:23:30.000Z" + }, + "end": { + "$date": "2021-10-28T04:56:21.000Z" + }, + "events": [ + { + "uuid": "9a43b9b1-31a6-4312-b1c3-e7d09ccf2832", + "start": { + "$date": "2021-10-28T04:23:30.000Z" + }, + "end": { + "$date": "2021-10-28T04:56:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1f215511-b475-4fa4-9832-2000b4d2fd56", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-28T04:38:09.000Z" + }, + "end": { + "$date": "2021-10-28T05:39:35.000Z" + }, + "events": [ + { + "uuid": "50b985e0-0863-4a0c-878d-2319c10d2efb", + "start": { + "$date": "2021-10-28T04:38:09.000Z" + }, + "end": { + "$date": "2021-10-28T05:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a3574e3-0b0a-4338-ae18-6f17b639cd07", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-28T04:58:52.000Z" + }, + "end": { + "$date": "2021-10-28T05:30:36.000Z" + }, + "events": [ + { + "uuid": "c336ff9e-a212-4545-afb0-02379f0ee3da", + "start": { + "$date": "2021-10-28T04:58:52.000Z" + }, + "end": { + "$date": "2021-10-28T05:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a57a8a4-8cc1-42e7-b972-7b845840f5bf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-28T05:06:42.000Z" + }, + "end": { + "$date": "2021-10-28T06:02:22.000Z" + }, + "events": [ + { + "uuid": "8540ba2f-a067-4bd9-a9d2-63d8e7443d9d", + "start": { + "$date": "2021-10-28T05:06:42.000Z" + }, + "end": { + "$date": "2021-10-28T06:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", + "uuid": "dece30f8-0665-4301-9cc8-ec9dec0ac296", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-28T05:13:04.000Z" + }, + "end": { + "$date": "2021-10-28T06:08:21.000Z" + }, + "events": [ + { + "uuid": "f636138b-1470-4a7b-b82b-54cb1fa8dc8e", + "start": { + "$date": "2021-10-28T05:13:04.000Z" + }, + "end": { + "$date": "2021-10-28T06:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "26dfa694-5246-4f4f-adbc-d72b0b419ce2", + "uuid": "d7cb5269-03a2-439a-8369-1ba8f0b55951", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-28T05:26:23.000Z" + }, + "end": { + "$date": "2021-10-28T06:58:34.000Z" + }, + "events": [ + { + "uuid": "e0ef7fe0-2e6d-4ef3-ae34-fae99f54c59f", + "start": { + "$date": "2021-10-28T05:26:23.000Z" + }, + "end": { + "$date": "2021-10-28T06:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab5e4df7-baf0-491c-8095-75a589f83221", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-28T05:38:57.000Z" + }, + "end": { + "$date": "2021-10-28T06:13:59.000Z" + }, + "events": [ + { + "uuid": "5138de55-750d-4728-8126-fccda1f314ac", + "start": { + "$date": "2021-10-28T05:38:57.000Z" + }, + "end": { + "$date": "2021-10-28T06:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdd2decf-7f73-4d4a-a3bb-5aa70f44b14b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-28T06:16:16.000Z" + }, + "end": { + "$date": "2021-10-28T06:32:53.000Z" + }, + "events": [ + { + "uuid": "e2ff2d36-dfcf-4ce0-9395-1dc549edc15a", + "start": { + "$date": "2021-10-28T06:16:16.000Z" + }, + "end": { + "$date": "2021-10-28T06:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99e76b5c-44a2-4235-9491-f9220ba39819", + "uuid": "aa8f96ef-1e84-4bb1-9a8f-2c38bad069cf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-28T06:27:21.000Z" + }, + "end": { + "$date": "2021-10-28T06:35:47.000Z" + }, + "events": [ + { + "uuid": "3422dffc-92a6-48f5-84a0-3ed4b88f29f8", + "start": { + "$date": "2021-10-28T06:27:21.000Z" + }, + "end": { + "$date": "2021-10-28T06:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "da652f0c-8139-463d-94fe-e12ae1b97743", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-10-28T06:30:43.000Z" + }, + "end": { + "$date": "2021-10-28T07:50:56.000Z" + }, + "events": [ + { + "uuid": "c5aa2597-3c02-4f9f-acdb-2753b21d132f", + "start": { + "$date": "2021-10-28T06:30:43.000Z" + }, + "end": { + "$date": "2021-10-28T07:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99e76b5c-44a2-4235-9491-f9220ba39819", + "uuid": "236e251e-58a3-4547-b642-58cfeb172d8e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-28T06:39:57.000Z" + }, + "end": { + "$date": "2021-10-28T06:53:22.000Z" + }, + "events": [ + { + "uuid": "d56f0094-7398-45c9-a548-30f6dd86243e", + "start": { + "$date": "2021-10-28T06:39:57.000Z" + }, + "end": { + "$date": "2021-10-28T06:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "10713c9e-7b3f-4177-93ba-bc2b23c83a29", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-28T07:03:16.000Z" + }, + "end": { + "$date": "2021-10-28T08:28:00.000Z" + }, + "events": [ + { + "uuid": "367a56f2-03eb-4f10-8db9-31eafa757154", + "start": { + "$date": "2021-10-28T07:03:16.000Z" + }, + "end": { + "$date": "2021-10-28T08:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2adfed3-6495-4831-8253-06261cb47aa4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T09:01:46.000Z" + }, + "end": { + "$date": "2021-10-28T09:26:49.000Z" + }, + "events": [ + { + "uuid": "fe3ab822-9e8d-4ae5-8895-4ee208e79706", + "start": { + "$date": "2021-10-28T09:01:46.000Z" + }, + "end": { + "$date": "2021-10-28T09:26:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8452a741-5492-4bf5-903d-f0aa57840dfd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T09:32:15.000Z" + }, + "end": { + "$date": "2021-10-28T10:00:18.000Z" + }, + "events": [ + { + "uuid": "a8fce362-aa4c-4d12-8844-88e7c7f079d5", + "start": { + "$date": "2021-10-28T09:32:15.000Z" + }, + "end": { + "$date": "2021-10-28T10:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdca5f97-c82e-4a8b-a3c6-e8f81a0e9039", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T10:05:29.000Z" + }, + "end": { + "$date": "2021-10-28T10:39:50.000Z" + }, + "events": [ + { + "uuid": "d0229c33-d73f-4fc8-995e-91635abefcf4", + "start": { + "$date": "2021-10-28T10:05:29.000Z" + }, + "end": { + "$date": "2021-10-28T10:39:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07c92ab4-8ba2-4aa0-a28d-efe8a72d21b9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T10:44:08.000Z" + }, + "end": { + "$date": "2021-10-28T11:01:56.000Z" + }, + "events": [ + { + "uuid": "dd4e610f-c424-4f30-9e81-1343f20393b5", + "start": { + "$date": "2021-10-28T10:44:08.000Z" + }, + "end": { + "$date": "2021-10-28T11:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d2df970-ffd4-4dc3-8f27-5b259c96e2e2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T11:06:32.000Z" + }, + "end": { + "$date": "2021-10-28T11:23:24.000Z" + }, + "events": [ + { + "uuid": "de180f9f-82f8-45c5-aab2-209786f07fc0", + "start": { + "$date": "2021-10-28T11:06:32.000Z" + }, + "end": { + "$date": "2021-10-28T11:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a153cb9e-110b-4704-8cf2-5bb6e68876fb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T14:00:02.000Z" + }, + "end": { + "$date": "2021-10-28T14:15:49.000Z" + }, + "events": [ + { + "uuid": "1aa409d6-e7b2-42bd-87cd-f7857d54ac10", + "start": { + "$date": "2021-10-28T14:00:02.000Z" + }, + "end": { + "$date": "2021-10-28T14:15:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8411ae25-057c-43d2-95d7-460f6dca4d48", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T14:17:39.000Z" + }, + "end": { + "$date": "2021-10-28T14:32:47.000Z" + }, + "events": [ + { + "uuid": "937fb297-0bc0-4fc7-a899-db40db3f72fe", + "start": { + "$date": "2021-10-28T14:17:39.000Z" + }, + "end": { + "$date": "2021-10-28T14:32:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "333d95b5-d97c-49e5-ab9a-c59933fbb660", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T14:34:21.000Z" + }, + "end": { + "$date": "2021-10-28T14:51:18.000Z" + }, + "events": [ + { + "uuid": "b9c7e2ac-fa0f-49f2-b06f-0dcca964485b", + "start": { + "$date": "2021-10-28T14:34:21.000Z" + }, + "end": { + "$date": "2021-10-28T14:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b3378a8-2d22-4be2-b130-a2baf2e901b5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T14:54:39.000Z" + }, + "end": { + "$date": "2021-10-28T15:17:16.000Z" + }, + "events": [ + { + "uuid": "596c8580-193b-4b62-be31-8b4e3e844b48", + "start": { + "$date": "2021-10-28T14:54:39.000Z" + }, + "end": { + "$date": "2021-10-28T15:17:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "e31e2d1a-bd26-4c72-972f-6f2730c447d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-28T15:07:38.000Z" + }, + "end": { + "$date": "2021-10-28T16:14:40.000Z" + }, + "events": [ + { + "uuid": "edc77966-a0cd-4088-9e6c-6681b1ad9829", + "start": { + "$date": "2021-10-28T15:07:38.000Z" + }, + "end": { + "$date": "2021-10-28T16:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b04c349c-bf73-458b-9d68-02395ecd60d4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T15:19:02.000Z" + }, + "end": { + "$date": "2021-10-28T15:41:45.000Z" + }, + "events": [ + { + "uuid": "2de4dc2a-7b24-476d-9c44-651f06e0011d", + "start": { + "$date": "2021-10-28T15:19:02.000Z" + }, + "end": { + "$date": "2021-10-28T15:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a61cd130-da4a-42d5-b0c1-9c884e3d5d7d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T15:45:10.000Z" + }, + "end": { + "$date": "2021-10-28T16:01:32.000Z" + }, + "events": [ + { + "uuid": "1bdc5c6e-f934-49cc-bbd0-f47fc9d1c407", + "start": { + "$date": "2021-10-28T15:45:10.000Z" + }, + "end": { + "$date": "2021-10-28T16:01:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db3019ab-c4ab-4beb-90e8-a85b73287b31", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T16:04:27.000Z" + }, + "end": { + "$date": "2021-10-28T16:25:30.000Z" + }, + "events": [ + { + "uuid": "bb055b69-a3e3-417c-ad8a-2d3702c5edba", + "start": { + "$date": "2021-10-28T16:04:27.000Z" + }, + "end": { + "$date": "2021-10-28T16:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9ba5a65-8c7a-4366-bd99-0fd25ab629e3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T16:29:21.000Z" + }, + "end": { + "$date": "2021-10-28T16:50:53.000Z" + }, + "events": [ + { + "uuid": "afdabbc5-e74e-4102-a9fe-1fde997a6389", + "start": { + "$date": "2021-10-28T16:29:21.000Z" + }, + "end": { + "$date": "2021-10-28T16:50:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8857f8f7-c453-4663-bc3a-b7868221cd10", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T16:53:28.000Z" + }, + "end": { + "$date": "2021-10-28T17:11:56.000Z" + }, + "events": [ + { + "uuid": "cc60a97d-f09f-4282-9f5b-d403061d757e", + "start": { + "$date": "2021-10-28T16:53:28.000Z" + }, + "end": { + "$date": "2021-10-28T17:11:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d60e1ffd-6da2-4f88-a2fe-261d8003743f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T17:19:12.000Z" + }, + "end": { + "$date": "2021-10-28T17:42:20.000Z" + }, + "events": [ + { + "uuid": "9be03e73-3c4c-4973-aeb8-171f02f4ec05", + "start": { + "$date": "2021-10-28T17:19:12.000Z" + }, + "end": { + "$date": "2021-10-28T17:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a338570-2c94-4bcd-9999-138d47470319", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T17:46:45.000Z" + }, + "end": { + "$date": "2021-10-28T18:21:14.000Z" + }, + "events": [ + { + "uuid": "aa245128-a035-4828-b016-b9203c547e4b", + "start": { + "$date": "2021-10-28T17:46:45.000Z" + }, + "end": { + "$date": "2021-10-28T18:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "8500a55a-f69a-4a6b-872b-de443bf1198c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-28T17:59:27.000Z" + }, + "end": { + "$date": "2021-10-28T18:33:27.000Z" + }, + "events": [ + { + "uuid": "6f808a6b-bb6d-4080-beba-fe91f261ac6c", + "start": { + "$date": "2021-10-28T17:59:27.000Z" + }, + "end": { + "$date": "2021-10-28T18:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ae95e27-5bc1-4c0a-872c-5ab6a97d0c56", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-28T18:26:45.000Z" + }, + "end": { + "$date": "2021-10-28T19:03:19.000Z" + }, + "events": [ + { + "uuid": "b208f97f-1d60-4057-b1b7-bc5f9c8200e2", + "start": { + "$date": "2021-10-28T18:26:45.000Z" + }, + "end": { + "$date": "2021-10-28T19:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "783f5fc8-acf1-440a-97f5-fe980016e443", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-28T20:46:23.000Z" + }, + "end": { + "$date": "2021-10-28T21:35:17.000Z" + }, + "events": [ + { + "uuid": "1d3774d8-7fbd-485f-92d3-9500f70f91a3", + "start": { + "$date": "2021-10-28T20:46:23.000Z" + }, + "end": { + "$date": "2021-10-28T21:35:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6f2fcd2f-15f1-493d-8a60-a24d8bb524aa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-28T21:06:21.000Z" + }, + "end": { + "$date": "2021-10-28T21:58:50.000Z" + }, + "events": [ + { + "uuid": "f4602465-d13c-44ee-a63d-1a966a2baf16", + "start": { + "$date": "2021-10-28T21:06:21.000Z" + }, + "end": { + "$date": "2021-10-28T21:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "74aa25f1-e541-4936-83d3-bf5c275a91b9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-10-28T21:41:38.000Z" + }, + "end": { + "$date": "2021-10-29T00:27:48.000Z" + }, + "events": [ + { + "uuid": "48954d6e-617d-4253-9521-d75b9087d6bc", + "start": { + "$date": "2021-10-28T21:41:38.000Z" + }, + "end": { + "$date": "2021-10-29T00:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9fb05f7d-a617-4bb8-8ed5-bdbc7b7d2795", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-10-28T21:42:19.000Z" + }, + "end": { + "$date": "2021-10-28T23:29:48.000Z" + }, + "events": [ + { + "uuid": "d70636b1-363a-46a0-bc5c-8ec21f94b0f7", + "start": { + "$date": "2021-10-28T21:42:19.000Z" + }, + "end": { + "$date": "2021-10-28T23:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "1fd67926-0096-4f6a-8b0d-13ee0dac1613", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-28T21:45:49.000Z" + }, + "end": { + "$date": "2021-10-28T22:24:46.000Z" + }, + "events": [ + { + "uuid": "114378ff-c85d-4ff6-94fa-394041dede96", + "start": { + "$date": "2021-10-28T21:45:49.000Z" + }, + "end": { + "$date": "2021-10-28T22:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "35de44e5-7692-428a-979b-3efcb7925747", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-28T21:48:00.000Z" + }, + "end": { + "$date": "2021-10-28T22:27:36.000Z" + }, + "events": [ + { + "uuid": "3777c59e-808a-4563-beb9-86370fbfa902", + "start": { + "$date": "2021-10-28T21:48:00.000Z" + }, + "end": { + "$date": "2021-10-28T22:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0fb0da7c-9cff-416a-934a-b56474afe03e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-28T22:27:20.000Z" + }, + "end": { + "$date": "2021-10-28T22:31:06.000Z" + }, + "events": [ + { + "uuid": "4f6d532b-6e3f-4fde-8522-ccef47b2358c", + "start": { + "$date": "2021-10-28T22:27:20.000Z" + }, + "end": { + "$date": "2021-10-28T22:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "785649d4-385a-4628-a582-800d570ba63f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-28T22:42:47.000Z" + }, + "end": { + "$date": "2021-10-29T01:08:02.000Z" + }, + "events": [ + { + "uuid": "89b1810e-ef1c-40a1-a14e-4d005f1fd72f", + "start": { + "$date": "2021-10-28T22:42:47.000Z" + }, + "end": { + "$date": "2021-10-29T01:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7e957632-e368-43f2-afba-c5bfe4bca814", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-28T22:51:04.000Z" + }, + "end": { + "$date": "2021-10-28T23:29:50.000Z" + }, + "events": [ + { + "uuid": "f72e4931-e4fa-449f-a84b-48170bdbc777", + "start": { + "$date": "2021-10-28T22:51:04.000Z" + }, + "end": { + "$date": "2021-10-28T23:29:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "119c09ce-d6eb-4c73-a4d3-0d0a8ddd3897", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-28T23:44:59.000Z" + }, + "end": { + "$date": "2021-10-29T03:30:49.000Z" + }, + "events": [ + { + "uuid": "4c3c0d6e-3468-4283-a1b3-a6926ea15f27", + "start": { + "$date": "2021-10-28T23:44:59.000Z" + }, + "end": { + "$date": "2021-10-29T03:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff0ad0a0-4e01-4d09-bee8-8e94d744b91c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T00:01:43.000Z" + }, + "end": { + "$date": "2021-10-29T00:20:09.000Z" + }, + "events": [ + { + "uuid": "354be333-2529-4088-8025-2fc81c8fc67b", + "start": { + "$date": "2021-10-29T00:01:43.000Z" + }, + "end": { + "$date": "2021-10-29T00:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdf6c8ec-743e-4aa0-8be7-06b887cc511c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T01:02:40.000Z" + }, + "end": { + "$date": "2021-10-29T01:41:17.000Z" + }, + "events": [ + { + "uuid": "4501a89b-c41e-4de0-93a7-1f6c7c685648", + "start": { + "$date": "2021-10-29T01:02:40.000Z" + }, + "end": { + "$date": "2021-10-29T01:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "43e91e7e-6ddd-44e0-acfe-471cca75fad2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T01:25:10.000Z" + }, + "end": { + "$date": "2021-10-29T02:09:12.000Z" + }, + "events": [ + { + "uuid": "d107d58d-d95d-4162-ac41-6bbd7cb14a91", + "start": { + "$date": "2021-10-29T01:25:10.000Z" + }, + "end": { + "$date": "2021-10-29T02:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ea8ce12-18ad-444f-8273-cd0630d854f1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T02:52:15.000Z" + }, + "end": { + "$date": "2021-10-29T03:14:44.000Z" + }, + "events": [ + { + "uuid": "3f14c2af-b140-4e31-8a81-a01a1958cfe0", + "start": { + "$date": "2021-10-29T02:52:15.000Z" + }, + "end": { + "$date": "2021-10-29T03:04:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "726b9775-46d1-4e4c-a69b-ea4b759c2c43", + "start": { + "$date": "2021-10-29T03:04:15.000Z" + }, + "end": { + "$date": "2021-10-29T03:27:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6f9cd978-c3a2-416d-82be-a18cba7fcf58", + "start": { + "$date": "2021-10-29T03:27:15.000Z" + }, + "end": { + "$date": "2021-10-29T03:29:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab6bedc3-b62a-4867-b6c7-3b263b9e0a33", + "start": { + "$date": "2021-10-29T03:29:15.000Z" + }, + "end": { + "$date": "2021-10-29T03:54:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b383f715-255d-4a6c-b547-417ee6510cb5", + "start": { + "$date": "2021-10-29T03:54:15.000Z" + }, + "end": { + "$date": "2021-10-29T03:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "642b5800-04da-43cf-abdb-cb1c808e930a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T01:46:02.000Z" + }, + "end": { + "$date": "2021-10-29T02:57:34.000Z" + }, + "events": [ + { + "uuid": "c149cd55-a139-4b5b-aaa2-a53354c73de5", + "start": { + "$date": "2021-10-29T01:46:02.000Z" + }, + "end": { + "$date": "2021-10-29T02:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "45bc189e-d784-428d-b7b0-69fbce8a400f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-29T02:16:32.000Z" + }, + "end": { + "$date": "2021-10-29T03:05:26.000Z" + }, + "events": [ + { + "uuid": "55ea3f1c-b689-4bcc-866c-718e53c73edc", + "start": { + "$date": "2021-10-29T02:16:32.000Z" + }, + "end": { + "$date": "2021-10-29T03:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ef8ad874-4a14-458f-b0b4-4a5d240ac520", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-29T02:26:36.000Z" + }, + "end": { + "$date": "2021-10-29T03:25:54.000Z" + }, + "events": [ + { + "uuid": "4f6ef59e-e30c-415c-b339-60578e0e580a", + "start": { + "$date": "2021-10-29T02:26:36.000Z" + }, + "end": { + "$date": "2021-10-29T03:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f3124f1a-f82b-42c1-91ec-3d0d194f0d38", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-29T02:26:53.000Z" + }, + "end": { + "$date": "2021-10-29T03:29:21.000Z" + }, + "events": [ + { + "uuid": "53390c72-8bb6-41d0-bc01-227c8afbe40e", + "start": { + "$date": "2021-10-29T02:26:53.000Z" + }, + "end": { + "$date": "2021-10-29T03:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcd77177-eb51-4e4d-8e4c-e7a3663c8a8d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T02:36:43.000Z" + }, + "end": { + "$date": "2021-10-29T02:50:08.000Z" + }, + "events": [ + { + "uuid": "20182d53-767f-434a-a513-a1d822c952f5", + "start": { + "$date": "2021-10-29T02:36:43.000Z" + }, + "end": { + "$date": "2021-10-29T02:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ec4c642-efca-4b91-90be-e42fd9792447", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T03:16:46.000Z" + }, + "end": { + "$date": "2021-10-29T03:33:11.000Z" + }, + "events": [ + { + "uuid": "6a98d502-8dd3-47a2-832b-533f8444c3c7", + "start": { + "$date": "2021-10-29T03:16:46.000Z" + }, + "end": { + "$date": "2021-10-29T03:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f93f1bf-8ff7-47d2-a14d-570fabb127f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T03:17:28.000Z" + }, + "end": { + "$date": "2021-10-29T03:33:24.000Z" + }, + "events": [ + { + "uuid": "67eecc04-d14b-45ff-9222-50cbdd33b99a", + "start": { + "$date": "2021-10-29T03:17:28.000Z" + }, + "end": { + "$date": "2021-10-29T03:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "978e5d88-434f-453a-b427-51df93baabec", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-29T03:16:46.000Z" + }, + "end": { + "$date": "2021-10-29T03:33:20.000Z" + }, + "events": [ + { + "uuid": "f460db90-ab91-4cc1-9dbc-c432b2fad4d1", + "start": { + "$date": "2021-10-29T03:16:46.000Z" + }, + "end": { + "$date": "2021-10-29T03:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec86f46e-935e-448f-87ed-03802dea81d1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T03:20:11.000Z" + }, + "end": { + "$date": "2021-10-29T03:34:50.000Z" + }, + "events": [ + { + "uuid": "09eb4014-cf7e-407e-bb64-2028dcbb2165", + "start": { + "$date": "2021-10-29T03:20:11.000Z" + }, + "end": { + "$date": "2021-10-29T03:34:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "283ffd2b-6a85-4fd1-9563-1db70988e2c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-29T03:31:05.000Z" + }, + "end": { + "$date": "2021-10-29T05:58:57.000Z" + }, + "events": [ + { + "uuid": "8a73b09d-b0c8-401b-bf94-9e2d310840ba", + "start": { + "$date": "2021-10-29T03:31:05.000Z" + }, + "end": { + "$date": "2021-10-29T04:06:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b3b5f2bb-b451-4fa0-9dd3-8665db787a13", + "start": { + "$date": "2021-10-29T04:06:05.000Z" + }, + "end": { + "$date": "2021-10-29T04:11:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b1a13296-b67b-4d17-8f88-bda1550f508b", + "start": { + "$date": "2021-10-29T04:11:05.000Z" + }, + "end": { + "$date": "2021-10-29T05:58:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8602fcaf-955a-4cec-b6fb-ccc3de0fd3ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T03:42:32.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:43.000Z" + }, + "events": [ + { + "uuid": "79ee0205-fe40-4bca-a9dc-1f6e5198688b", + "start": { + "$date": "2021-10-29T03:42:32.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17411dda-74b1-4190-8bba-4badc8d050dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T03:43:19.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:47.000Z" + }, + "events": [ + { + "uuid": "fde91c50-8e43-44da-9f41-af639a023b77", + "start": { + "$date": "2021-10-29T03:43:19.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6f1bbf0-83cb-4d8e-9f51-51b9370465a9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-29T03:42:32.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:44.000Z" + }, + "events": [ + { + "uuid": "edc29fe2-c1fa-432b-9075-632cc2a9d574", + "start": { + "$date": "2021-10-29T03:42:32.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fb23f61-9dae-4f21-a412-fe27ff6a4f4b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T03:42:37.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:35.000Z" + }, + "events": [ + { + "uuid": "bd886725-66f2-4c83-9113-deac844ddc08", + "start": { + "$date": "2021-10-29T03:42:37.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "965e86f9-1182-4463-b2cf-24e598ad6045", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-29T03:43:12.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:37.000Z" + }, + "events": [ + { + "uuid": "f8bc96bf-ca8b-4b5b-b155-a0fb128ebbfd", + "start": { + "$date": "2021-10-29T03:43:12.000Z" + }, + "end": { + "$date": "2021-10-29T04:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "58da3ef8-50d3-4b97-9822-eb2cdee8c310", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-29T04:00:18.000Z" + }, + "end": { + "$date": "2021-10-29T04:57:21.000Z" + }, + "events": [ + { + "uuid": "fba6ebe1-ce27-4937-a481-e176dfa56402", + "start": { + "$date": "2021-10-29T04:00:18.000Z" + }, + "end": { + "$date": "2021-10-29T04:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0b55593-4e59-4548-af9e-c99a046813f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T04:03:43.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:35.000Z" + }, + "events": [ + { + "uuid": "324068c4-7cc6-4a48-952c-8011434cda4d", + "start": { + "$date": "2021-10-29T04:03:43.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af64eaf3-7092-4a02-8cd9-f4d66223cdde", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-29T04:04:08.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:39.000Z" + }, + "events": [ + { + "uuid": "cd6cac41-f8c2-475d-9d3c-a2f10195e324", + "start": { + "$date": "2021-10-29T04:04:08.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a58878fd-1f1e-4835-adc2-7fe360280c83", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-29T04:03:48.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:40.000Z" + }, + "events": [ + { + "uuid": "6e470631-cdbb-4e39-89f6-aa5344d3b375", + "start": { + "$date": "2021-10-29T04:03:48.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "868f4ec2-9970-4dae-b3b7-8a71a6e994d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T04:03:47.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:31.000Z" + }, + "events": [ + { + "uuid": "88f26424-3eff-4742-b43f-61c34f34e9b3", + "start": { + "$date": "2021-10-29T04:03:47.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d73f9b63-a1c4-43c0-9e32-e64539753535", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T04:03:51.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:41.000Z" + }, + "events": [ + { + "uuid": "edbd6637-35af-46e6-9be7-67e31361839e", + "start": { + "$date": "2021-10-29T04:03:51.000Z" + }, + "end": { + "$date": "2021-10-29T04:24:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "31ec8e55-eb65-4ffd-bbf0-1dc90b1893ce", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-10-29T04:08:55.000Z" + }, + "end": { + "$date": "2021-10-29T06:00:17.000Z" + }, + "events": [ + { + "uuid": "abfd6326-4417-4f8a-82c2-c157dce97947", + "start": { + "$date": "2021-10-29T04:08:55.000Z" + }, + "end": { + "$date": "2021-10-29T06:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97c9399d-00f8-4849-b7ae-436af46aed3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T04:28:28.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:23.000Z" + }, + "events": [ + { + "uuid": "64cbf27f-bd3f-4f1b-a4f5-d237ff83c9f5", + "start": { + "$date": "2021-10-29T04:28:28.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7d6bd50-fc39-47c3-93e4-c9af14f63b67", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-10-29T04:27:19.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:20.000Z" + }, + "events": [ + { + "uuid": "3d9b90f5-22e9-40fa-a3d0-8ee80347f834", + "start": { + "$date": "2021-10-29T04:27:19.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a44ab793-a7cc-4ce9-9911-ea93bb6dad44", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T04:27:17.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:27.000Z" + }, + "events": [ + { + "uuid": "6be7e66a-4b03-425d-8dd6-3d388e5e78d0", + "start": { + "$date": "2021-10-29T04:27:17.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d06193a9-7afe-4d1a-8949-a5746ac9bea3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T04:27:43.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:28.000Z" + }, + "events": [ + { + "uuid": "79c3301f-b3ba-4d0f-8469-e424e0b295a4", + "start": { + "$date": "2021-10-29T04:27:43.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5672ef12-0fc8-4c72-b920-20b6959b8c90", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-10-29T04:27:23.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:29.000Z" + }, + "events": [ + { + "uuid": "606b3f4a-1372-42b2-9b23-68784714c5cc", + "start": { + "$date": "2021-10-29T04:27:23.000Z" + }, + "end": { + "$date": "2021-10-29T04:52:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "15860c2f-102d-4be5-8131-11b831dbfb06", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T04:55:59.000Z" + }, + "end": { + "$date": "2021-10-29T06:59:05.000Z" + }, + "events": [ + { + "uuid": "32668cc6-84d0-4d6a-b29b-a555d1a95312", + "start": { + "$date": "2021-10-29T04:55:59.000Z" + }, + "end": { + "$date": "2021-10-29T06:16:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78dfb629-00cc-4f53-a391-dacd45f76057", + "start": { + "$date": "2021-10-29T06:16:59.000Z" + }, + "end": { + "$date": "2021-10-29T06:29:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "25b56c38-eaa6-4c31-91fc-299e7404cce2", + "start": { + "$date": "2021-10-29T06:29:59.000Z" + }, + "end": { + "$date": "2021-10-29T06:40:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3fffedf9-a605-46c0-bde1-0f4566683b78", + "start": { + "$date": "2021-10-29T06:40:59.000Z" + }, + "end": { + "$date": "2021-10-29T06:50:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "738eb556-cb48-483a-b729-d75ea8b9028d", + "start": { + "$date": "2021-10-29T06:50:59.000Z" + }, + "end": { + "$date": "2021-10-29T06:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7ee335b6-5d5b-4928-ae9c-c3c1068241c7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-29T05:34:33.000Z" + }, + "end": { + "$date": "2021-10-29T06:03:48.000Z" + }, + "events": [ + { + "uuid": "b8a6c8fd-2403-400d-ab1e-c8a51d4e19a6", + "start": { + "$date": "2021-10-29T05:34:33.000Z" + }, + "end": { + "$date": "2021-10-29T06:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "284c8d4b-9e06-4f7b-bcc7-b86adebcd7a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T06:09:55.000Z" + }, + "end": { + "$date": "2021-10-29T06:34:29.000Z" + }, + "events": [ + { + "uuid": "6bb10cff-d7db-4de5-9a50-24afd62137ef", + "start": { + "$date": "2021-10-29T06:09:55.000Z" + }, + "end": { + "$date": "2021-10-29T06:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a69bb1b-245d-405f-a6fb-41973f84567c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-29T06:20:21.000Z" + }, + "end": { + "$date": "2021-10-29T06:47:26.000Z" + }, + "events": [ + { + "uuid": "f9480918-228a-4d99-8ff7-6fcec323c985", + "start": { + "$date": "2021-10-29T06:20:21.000Z" + }, + "end": { + "$date": "2021-10-29T06:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3523b39b-5154-4e96-b5ba-aa1f27523c28", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T06:38:44.000Z" + }, + "end": { + "$date": "2021-10-29T06:51:22.000Z" + }, + "events": [ + { + "uuid": "00c019b1-b0b5-4378-b469-a6c94f50262c", + "start": { + "$date": "2021-10-29T06:38:44.000Z" + }, + "end": { + "$date": "2021-10-29T06:51:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3ca1f66-9e66-45d3-b931-5e444cd0c76d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T06:55:26.000Z" + }, + "end": { + "$date": "2021-10-29T07:11:49.000Z" + }, + "events": [ + { + "uuid": "6dd24c10-89cb-421a-aa58-84d04a3968da", + "start": { + "$date": "2021-10-29T06:55:26.000Z" + }, + "end": { + "$date": "2021-10-29T07:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee438bcf-fc44-4397-a569-9a6dec3ced80", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T07:14:59.000Z" + }, + "end": { + "$date": "2021-10-29T07:50:29.000Z" + }, + "events": [ + { + "uuid": "934d9016-1556-4b63-8e49-5024145b285f", + "start": { + "$date": "2021-10-29T07:14:59.000Z" + }, + "end": { + "$date": "2021-10-29T07:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", + "uuid": "8c08c228-1303-4cd4-8422-e24949e733dc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T08:23:32.000Z" + }, + "end": { + "$date": "2021-10-29T09:40:45.000Z" + }, + "events": [ + { + "uuid": "73db8294-9cdd-4297-8b09-2135a5bf62c2", + "start": { + "$date": "2021-10-29T08:23:32.000Z" + }, + "end": { + "$date": "2021-10-29T09:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "140fc708-db3e-4d7f-a3b0-6f29f4c14791", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T10:06:02.000Z" + }, + "end": { + "$date": "2021-10-29T10:25:28.000Z" + }, + "events": [ + { + "uuid": "7470447e-33a5-488c-9bc7-8fa0d751e706", + "start": { + "$date": "2021-10-29T10:06:02.000Z" + }, + "end": { + "$date": "2021-10-29T10:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40e8cb2b-64cb-4d10-9c01-2ecdebb0cf1d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T10:29:03.000Z" + }, + "end": { + "$date": "2021-10-29T10:52:23.000Z" + }, + "events": [ + { + "uuid": "18697ed2-9067-4e69-bef7-4eb96d201d98", + "start": { + "$date": "2021-10-29T10:29:03.000Z" + }, + "end": { + "$date": "2021-10-29T10:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e1f56a3-256e-4f48-b96a-4ebc171f31a9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-29T10:56:39.000Z" + }, + "end": { + "$date": "2021-10-29T11:18:24.000Z" + }, + "events": [ + { + "uuid": "78ccb8fc-7472-43f0-b5e5-8966cf218f50", + "start": { + "$date": "2021-10-29T10:56:39.000Z" + }, + "end": { + "$date": "2021-10-29T11:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "ed078d0a-d654-4722-aaa0-c9afbddaf95c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-29T16:11:24.000Z" + }, + "end": { + "$date": "2021-10-29T16:56:05.000Z" + }, + "events": [ + { + "uuid": "9ede3972-d699-41da-8e88-995821ff8c7a", + "start": { + "$date": "2021-10-29T16:11:24.000Z" + }, + "end": { + "$date": "2021-10-29T16:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "c702500a-98f0-4669-a9fe-64c45d0805b1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T16:44:09.000Z" + }, + "end": { + "$date": "2021-10-29T17:12:29.000Z" + }, + "events": [ + { + "uuid": "ad95068e-c01c-4a53-a6cc-683815ef7812", + "start": { + "$date": "2021-10-29T16:44:09.000Z" + }, + "end": { + "$date": "2021-10-29T17:12:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3da0641d-c4b1-44e3-bda8-12b85960ec7c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T18:37:12.000Z" + }, + "end": { + "$date": "2021-10-29T18:39:15.000Z" + }, + "events": [ + { + "uuid": "fc4e68a4-3f33-4eab-8e1a-c5021813f175", + "start": { + "$date": "2021-10-29T18:37:12.000Z" + }, + "end": { + "$date": "2021-10-29T18:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "ebdea5ff-02e5-4944-8c4b-6f1bfe874589", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-29T19:17:56.000Z" + }, + "end": { + "$date": "2021-10-29T20:35:22.000Z" + }, + "events": [ + { + "uuid": "e9437c57-1453-4322-860e-e2b9d6bdf55c", + "start": { + "$date": "2021-10-29T19:17:56.000Z" + }, + "end": { + "$date": "2021-10-29T20:35:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a97b9cdf-3b59-4fbf-8532-ffea6d4590cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T20:14:26.000Z" + }, + "end": { + "$date": "2021-10-29T20:32:25.000Z" + }, + "events": [ + { + "uuid": "e0caaea8-da1d-4a56-b87e-a2526ce22fc8", + "start": { + "$date": "2021-10-29T20:14:26.000Z" + }, + "end": { + "$date": "2021-10-29T20:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b41693b-c2a0-403d-96bf-f5d6c2c8b725", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-29T20:42:32.000Z" + }, + "end": { + "$date": "2021-10-29T21:14:58.000Z" + }, + "events": [ + { + "uuid": "0d951a9e-04b1-4c2a-b777-42f578c054d9", + "start": { + "$date": "2021-10-29T20:42:32.000Z" + }, + "end": { + "$date": "2021-10-29T21:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "888bb640-7946-41dd-bb3a-941088e0ec66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-29T20:55:52.000Z" + }, + "end": { + "$date": "2021-10-29T21:25:28.000Z" + }, + "events": [ + { + "uuid": "e31e7548-6cc4-4bc8-b015-00ca03f72f9c", + "start": { + "$date": "2021-10-29T20:55:52.000Z" + }, + "end": { + "$date": "2021-10-29T21:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61c66458-2804-4ebd-a82e-5c6ae6dd9a2f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T22:04:40.000Z" + }, + "end": { + "$date": "2021-10-29T22:36:45.000Z" + }, + "events": [ + { + "uuid": "e25c2a41-aaae-47bd-8eb9-efd5136d408a", + "start": { + "$date": "2021-10-29T22:04:40.000Z" + }, + "end": { + "$date": "2021-10-29T22:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4f5ede4a-223c-4a78-8467-9186f4e518a1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-29T22:10:48.000Z" + }, + "end": { + "$date": "2021-10-29T23:28:22.000Z" + }, + "events": [ + { + "uuid": "d973754d-943d-4ce5-b932-53079427b846", + "start": { + "$date": "2021-10-29T22:10:48.000Z" + }, + "end": { + "$date": "2021-10-29T23:16:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0c055107-7780-4985-9282-c8a764495238", + "start": { + "$date": "2021-10-29T23:16:48.000Z" + }, + "end": { + "$date": "2021-10-29T23:28:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "70249ab0-2f13-4b38-8885-7991f6f1cae1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-29T22:11:13.000Z" + }, + "end": { + "$date": "2021-10-29T22:47:14.000Z" + }, + "events": [ + { + "uuid": "bf5f5f18-ebe4-498a-9c5e-baadb018c772", + "start": { + "$date": "2021-10-29T22:11:13.000Z" + }, + "end": { + "$date": "2021-10-29T22:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3256aaab-b546-4fcd-8d76-14fcb881e28f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T22:46:53.000Z" + }, + "end": { + "$date": "2021-10-29T23:11:19.000Z" + }, + "events": [ + { + "uuid": "fed2178c-ba73-456e-9dc9-90bc815f501d", + "start": { + "$date": "2021-10-29T22:46:53.000Z" + }, + "end": { + "$date": "2021-10-29T23:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1ac68a1-f38b-4dc5-9b57-04c5b7a4162b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-29T23:17:21.000Z" + }, + "end": { + "$date": "2021-10-29T23:43:12.000Z" + }, + "events": [ + { + "uuid": "2f6dd961-57f5-4db9-8a18-6e35dd063604", + "start": { + "$date": "2021-10-29T23:17:21.000Z" + }, + "end": { + "$date": "2021-10-29T23:43:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6f0022a7-266e-4948-98ac-05fd45fb04fd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-29T21:11:28.000Z" + }, + "end": { + "$date": "2021-10-30T03:43:07.000Z" + }, + "events": [ + { + "uuid": "8881f2e0-d897-444d-baee-ca234b50e691", + "start": { + "$date": "2021-10-29T21:11:28.000Z" + }, + "end": { + "$date": "2021-10-29T21:57:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c4219c67-ad3c-4881-9eb5-0f88655c6b27", + "start": { + "$date": "2021-10-29T21:57:28.000Z" + }, + "end": { + "$date": "2021-10-29T22:02:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8481d193-01f9-45f5-a157-7c971cb983a7", + "start": { + "$date": "2021-10-29T22:02:28.000Z" + }, + "end": { + "$date": "2021-10-29T22:12:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bf48664a-0e56-4202-96a7-0c5bad5184d4", + "start": { + "$date": "2021-10-29T22:12:28.000Z" + }, + "end": { + "$date": "2021-10-29T22:22:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f339152c-5def-4308-a835-ff92724c2794", + "start": { + "$date": "2021-10-29T22:22:28.000Z" + }, + "end": { + "$date": "2021-10-29T22:25:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "092608f0-5656-4733-b725-2d165ebca250", + "start": { + "$date": "2021-10-29T22:25:28.000Z" + }, + "end": { + "$date": "2021-10-29T22:40:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61d6c53c-2287-4a28-84a8-7c6932c25b2e", + "start": { + "$date": "2021-10-29T22:40:28.000Z" + }, + "end": { + "$date": "2021-10-30T03:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "54bc296e-b2f7-4c03-aa25-b6b2cbd9c815", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T00:38:50.000Z" + }, + "end": { + "$date": "2021-10-30T02:12:34.000Z" + }, + "events": [ + { + "uuid": "d23d318c-e98d-497a-a19b-dc35523756c2", + "start": { + "$date": "2021-10-30T00:38:50.000Z" + }, + "end": { + "$date": "2021-10-30T01:43:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "96b0f4db-e424-4e30-8859-c592c46236e5", + "start": { + "$date": "2021-10-30T01:43:50.000Z" + }, + "end": { + "$date": "2021-10-30T01:48:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "67711d40-53e6-4745-97dc-491758b8afa0", + "start": { + "$date": "2021-10-30T01:48:50.000Z" + }, + "end": { + "$date": "2021-10-30T02:09:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0ab1ea8-5cf5-438e-ada4-271abf6a5865", + "start": { + "$date": "2021-10-30T02:09:50.000Z" + }, + "end": { + "$date": "2021-10-30T02:12:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6e12578a-bcd8-424c-ba1c-d4d8bcd4c038", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-30T01:07:33.000Z" + }, + "end": { + "$date": "2021-10-30T01:34:40.000Z" + }, + "events": [ + { + "uuid": "d1492ce7-ce39-4b65-b8dc-204bf070da30", + "start": { + "$date": "2021-10-30T01:07:33.000Z" + }, + "end": { + "$date": "2021-10-30T01:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6583504c-879b-4f9e-891e-1a9ca16d0ed6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-30T01:32:41.000Z" + }, + "end": { + "$date": "2021-10-30T01:54:49.000Z" + }, + "events": [ + { + "uuid": "5b8293f1-c03b-4728-b22a-838ccdebc69e", + "start": { + "$date": "2021-10-30T01:32:41.000Z" + }, + "end": { + "$date": "2021-10-30T01:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7663badf-bdbd-4377-b4b1-37c88103290a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-30T01:48:45.000Z" + }, + "end": { + "$date": "2021-10-30T03:03:56.000Z" + }, + "events": [ + { + "uuid": "8c911529-a29a-44c2-8022-56ae22e1e33c", + "start": { + "$date": "2021-10-30T01:48:45.000Z" + }, + "end": { + "$date": "2021-10-30T03:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1fd2ad5-66d9-4451-ad59-3be3b6b0b80b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-30T01:58:26.000Z" + }, + "end": { + "$date": "2021-10-30T02:12:45.000Z" + }, + "events": [ + { + "uuid": "11478e4b-fe07-4308-9715-233dd7cdd683", + "start": { + "$date": "2021-10-30T01:58:26.000Z" + }, + "end": { + "$date": "2021-10-30T02:12:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "758803de-c323-4feb-8042-a0c436890d0e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-30T02:19:52.000Z" + }, + "end": { + "$date": "2021-10-30T02:37:26.000Z" + }, + "events": [ + { + "uuid": "fb3f05ca-b70c-4582-949a-b275836082fc", + "start": { + "$date": "2021-10-30T02:19:52.000Z" + }, + "end": { + "$date": "2021-10-30T02:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a08b3baa-f80c-49c4-b4d2-f2621a327132", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T02:29:16.000Z" + }, + "end": { + "$date": "2021-10-30T03:03:00.000Z" + }, + "events": [ + { + "uuid": "ca04413b-45f3-40ca-bdc6-63b8ec721464", + "start": { + "$date": "2021-10-30T02:29:16.000Z" + }, + "end": { + "$date": "2021-10-30T02:53:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "84a40df2-9bed-49ba-aaf8-d00c9b995f56", + "start": { + "$date": "2021-10-30T02:53:16.000Z" + }, + "end": { + "$date": "2021-10-30T03:03:00.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "03129ba2-9fc4-4ea8-89d5-703babc4f46a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T03:09:15.000Z" + }, + "end": { + "$date": "2021-10-30T03:15:36.000Z" + }, + "events": [ + { + "uuid": "bd0bd668-d7ac-457b-a729-b4366489b489", + "start": { + "$date": "2021-10-30T03:09:15.000Z" + }, + "end": { + "$date": "2021-10-30T03:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "945e03ef-ca95-456a-9021-33c3f9a2f01c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-30T03:19:30.000Z" + }, + "end": { + "$date": "2021-10-30T03:53:15.000Z" + }, + "events": [ + { + "uuid": "538d652b-cf8a-4788-81a4-8235dc9f67e2", + "start": { + "$date": "2021-10-30T03:19:30.000Z" + }, + "end": { + "$date": "2021-10-30T03:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "99c93f8c-f07e-4ab3-a25b-8d5106b7c161", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-30T03:43:17.000Z" + }, + "end": { + "$date": "2021-10-30T06:45:36.000Z" + }, + "events": [ + { + "uuid": "a30ee917-7a24-4ffe-8fc2-9e3e7e13bdd7", + "start": { + "$date": "2021-10-30T03:43:17.000Z" + }, + "end": { + "$date": "2021-10-30T06:45:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "99f943d4-f9c2-4c14-a470-5618516b988d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-30T03:53:47.000Z" + }, + "end": { + "$date": "2021-10-30T04:15:01.000Z" + }, + "events": [ + { + "uuid": "85e2c360-f3f4-4f03-9b26-2ef2ff91eb4d", + "start": { + "$date": "2021-10-30T03:53:47.000Z" + }, + "end": { + "$date": "2021-10-30T04:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c6a77289-382e-471b-9fc0-5c0d83a59fb4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-30T04:04:00.000Z" + }, + "end": { + "$date": "2021-10-30T06:37:27.000Z" + }, + "events": [ + { + "uuid": "0b0cab12-5b6c-43b8-bf9f-d40d0f714f70", + "start": { + "$date": "2021-10-30T04:04:00.000Z" + }, + "end": { + "$date": "2021-10-30T06:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "74114dd2-c99e-4e9f-a502-8189b3ce459a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T05:28:01.000Z" + }, + "end": { + "$date": "2021-10-30T06:37:29.000Z" + }, + "events": [ + { + "uuid": "097bf2ec-72a7-4d67-88c5-762fd7e4d831", + "start": { + "$date": "2021-10-30T05:28:01.000Z" + }, + "end": { + "$date": "2021-10-30T06:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "424fe04c-119f-4617-a4cf-d0ffce18081a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-10-30T04:21:28.000Z" + }, + "end": { + "$date": "2021-10-30T05:42:03.000Z" + }, + "events": [ + { + "uuid": "42511b17-97c8-4c6b-a886-c08891e10726", + "start": { + "$date": "2021-10-30T04:21:28.000Z" + }, + "end": { + "$date": "2021-10-30T05:42:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7614e8e0-d2a6-4fe2-b7d9-889876e3d227", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-30T04:42:48.000Z" + }, + "end": { + "$date": "2021-10-30T07:43:29.000Z" + }, + "events": [ + { + "uuid": "dadcfe67-2739-4efb-be46-0ddb3a63382f", + "start": { + "$date": "2021-10-30T04:42:48.000Z" + }, + "end": { + "$date": "2021-10-30T07:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "9629113a-be5a-4583-b2c5-8379e1658d93", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-30T05:10:11.000Z" + }, + "end": { + "$date": "2021-10-30T05:15:24.000Z" + }, + "events": [ + { + "uuid": "98ac4f53-1b31-4178-aec1-8237e467c869", + "start": { + "$date": "2021-10-30T05:10:11.000Z" + }, + "end": { + "$date": "2021-10-30T05:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "29601e08-3fba-4ef6-9e2f-66f203109373", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-30T05:16:33.000Z" + }, + "end": { + "$date": "2021-10-30T06:13:02.000Z" + }, + "events": [ + { + "uuid": "c4ea99c3-ade6-45d3-bc4c-4630175443b4", + "start": { + "$date": "2021-10-30T05:16:33.000Z" + }, + "end": { + "$date": "2021-10-30T06:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de008960-3770-467b-b544-49f4d8cdcac4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T06:05:00.000Z" + }, + "end": { + "$date": "2021-10-30T06:05:23.000Z" + }, + "events": [ + { + "uuid": "c8b9b8d7-08fd-45dd-a532-8f289c999e94", + "start": { + "$date": "2021-10-30T06:05:00.000Z" + }, + "end": { + "$date": "2021-10-30T06:05:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3546b7c0-27a4-4997-babd-0657f9e0e743", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T06:05:40.000Z" + }, + "end": { + "$date": "2021-10-30T06:34:19.000Z" + }, + "events": [ + { + "uuid": "fb7ba742-0c7f-47b0-b71a-91c3534d4dde", + "start": { + "$date": "2021-10-30T06:05:40.000Z" + }, + "end": { + "$date": "2021-10-30T06:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3df4c772-e6c2-44f1-ba2c-ee08cead1a74", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T06:37:33.000Z" + }, + "end": { + "$date": "2021-10-30T06:42:04.000Z" + }, + "events": [ + { + "uuid": "bb92e4aa-6509-4458-b73f-f560711296fd", + "start": { + "$date": "2021-10-30T06:37:33.000Z" + }, + "end": { + "$date": "2021-10-30T06:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b4da11b3-3b22-432a-b66c-4ad568c7594f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-30T08:04:27.000Z" + }, + "end": { + "$date": "2021-10-30T10:26:26.000Z" + }, + "events": [ + { + "uuid": "08e7a593-2df8-453d-a99c-0c19080fac90", + "start": { + "$date": "2021-10-30T08:04:27.000Z" + }, + "end": { + "$date": "2021-10-30T10:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "3cad370b-8b37-4aea-ae9b-610517b0b82b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T14:49:02.000Z" + }, + "end": { + "$date": "2021-10-30T15:23:26.000Z" + }, + "events": [ + { + "uuid": "a0f080b3-8092-4bd8-bcda-daaff619e2c2", + "start": { + "$date": "2021-10-30T14:49:02.000Z" + }, + "end": { + "$date": "2021-10-30T15:14:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "673fdc93-d132-4c49-b635-ec9512d7ccbf", + "start": { + "$date": "2021-10-30T15:14:02.000Z" + }, + "end": { + "$date": "2021-10-30T15:18:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f01f6500-a04f-4529-a3fa-4135dbcc1cf8", + "start": { + "$date": "2021-10-30T15:18:02.000Z" + }, + "end": { + "$date": "2021-10-30T15:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f93f7a4-6844-4483-b5a4-a1ca0612536e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T15:32:29.000Z" + }, + "end": { + "$date": "2021-10-30T15:35:47.000Z" + }, + "events": [ + { + "uuid": "683095d3-3da4-483e-b610-1f69eac6b697", + "start": { + "$date": "2021-10-30T15:32:29.000Z" + }, + "end": { + "$date": "2021-10-30T15:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "6e6abfd6-6c2e-4328-ab9f-76204f0a53a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-30T15:33:11.000Z" + }, + "end": { + "$date": "2021-10-30T17:10:33.000Z" + }, + "events": [ + { + "uuid": "6d79fd1f-00ad-4625-8738-b8cc12db50a5", + "start": { + "$date": "2021-10-30T15:33:11.000Z" + }, + "end": { + "$date": "2021-10-30T17:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e639d120-c63a-4ba5-9987-d20f1a442a30", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T15:43:55.000Z" + }, + "end": { + "$date": "2021-10-30T16:19:33.000Z" + }, + "events": [ + { + "uuid": "4a9d5437-f9bd-4fe3-8d78-ac2b154e75f0", + "start": { + "$date": "2021-10-30T15:43:55.000Z" + }, + "end": { + "$date": "2021-10-30T16:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "832de66f-f6f8-425a-9b14-ffe889cab47e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T16:27:40.000Z" + }, + "end": { + "$date": "2021-10-30T17:00:18.000Z" + }, + "events": [ + { + "uuid": "811a5c7c-59cd-4547-9bfb-50af0f3edee6", + "start": { + "$date": "2021-10-30T16:27:40.000Z" + }, + "end": { + "$date": "2021-10-30T17:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8475a4ae-9b64-4db4-ba69-805d887559da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T16:56:36.000Z" + }, + "end": { + "$date": "2021-10-30T17:13:57.000Z" + }, + "events": [ + { + "uuid": "d903bc8a-fe4b-4f43-bdff-4219812ddde1", + "start": { + "$date": "2021-10-30T16:56:36.000Z" + }, + "end": { + "$date": "2021-10-30T17:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42b08f6f-56a4-4a05-9ce8-ea64bc1c76f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T17:06:31.000Z" + }, + "end": { + "$date": "2021-10-30T17:33:01.000Z" + }, + "events": [ + { + "uuid": "2b125fbf-cb6c-4293-a1cb-ea1d5510f762", + "start": { + "$date": "2021-10-30T17:06:31.000Z" + }, + "end": { + "$date": "2021-10-30T17:33:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4f69e96a-b489-4aa9-9cf3-d71969be401b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T17:14:27.000Z" + }, + "end": { + "$date": "2021-10-30T17:19:13.000Z" + }, + "events": [ + { + "uuid": "976f3888-8119-49bc-a263-4ef414a47226", + "start": { + "$date": "2021-10-30T17:14:27.000Z" + }, + "end": { + "$date": "2021-10-30T17:19:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7bc2f05-a1c0-46a6-ad59-b13b81a29589", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T17:37:24.000Z" + }, + "end": { + "$date": "2021-10-30T18:13:50.000Z" + }, + "events": [ + { + "uuid": "62714da8-9097-4cfc-9f7f-ccb935a65996", + "start": { + "$date": "2021-10-30T17:37:24.000Z" + }, + "end": { + "$date": "2021-10-30T18:13:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c490ffc1-128b-4316-9c63-8c1167b87494", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T18:21:08.000Z" + }, + "end": { + "$date": "2021-10-30T18:56:08.000Z" + }, + "events": [ + { + "uuid": "443a8e2d-9602-4a48-a4ac-13ba1093cba4", + "start": { + "$date": "2021-10-30T18:21:08.000Z" + }, + "end": { + "$date": "2021-10-30T18:56:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "aed78aef-5bb7-476a-a00a-8f6fc62657c3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T18:29:33.000Z" + }, + "end": { + "$date": "2021-10-30T19:32:09.000Z" + }, + "events": [ + { + "uuid": "d7e6c7a1-592d-4837-bc78-4f4920aec46c", + "start": { + "$date": "2021-10-30T18:29:33.000Z" + }, + "end": { + "$date": "2021-10-30T19:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d3c5b33-1ebe-40a6-bcc1-1ce0ff5f99f2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T19:00:06.000Z" + }, + "end": { + "$date": "2021-10-30T19:32:12.000Z" + }, + "events": [ + { + "uuid": "89f5cabf-9db3-46e7-a559-3f8029dcabb3", + "start": { + "$date": "2021-10-30T19:00:06.000Z" + }, + "end": { + "$date": "2021-10-30T19:32:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99ab3574-4042-4eec-a415-d3a32a1573ff", + "uuid": "95b291f6-a084-41c3-854a-69195379459b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-30T19:05:55.000Z" + }, + "end": { + "$date": "2021-10-30T22:05:44.000Z" + }, + "events": [ + { + "uuid": "2bf8b11c-f19a-470d-a8cb-eabc8c1047b0", + "start": { + "$date": "2021-10-30T19:05:55.000Z" + }, + "end": { + "$date": "2021-10-30T22:05:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "584fba5e-48d3-4897-81b9-03a1d69f34b9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T19:32:24.000Z" + }, + "end": { + "$date": "2021-10-30T19:54:10.000Z" + }, + "events": [ + { + "uuid": "2d8f7943-0948-493e-83a2-03e7e378f6f1", + "start": { + "$date": "2021-10-30T19:32:24.000Z" + }, + "end": { + "$date": "2021-10-30T19:54:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f760b64c-8a2b-4472-b32f-f80326b6976f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T19:35:55.000Z" + }, + "end": { + "$date": "2021-10-30T20:06:36.000Z" + }, + "events": [ + { + "uuid": "29af232a-caa8-4106-b1bf-90cab03b9634", + "start": { + "$date": "2021-10-30T19:35:55.000Z" + }, + "end": { + "$date": "2021-10-30T20:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6dc89b49-d52d-4167-8386-71f7ed644e85", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T19:54:35.000Z" + }, + "end": { + "$date": "2021-10-30T19:59:10.000Z" + }, + "events": [ + { + "uuid": "27c06ab9-5dcd-46fb-8f67-bce18cbfcabf", + "start": { + "$date": "2021-10-30T19:54:35.000Z" + }, + "end": { + "$date": "2021-10-30T19:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f005a63a-24d4-4b64-99fa-31f265a3e58d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T20:10:43.000Z" + }, + "end": { + "$date": "2021-10-30T20:38:04.000Z" + }, + "events": [ + { + "uuid": "d1719cfd-75f1-40b3-94b9-9a15241e3ef1", + "start": { + "$date": "2021-10-30T20:10:43.000Z" + }, + "end": { + "$date": "2021-10-30T20:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "baec60f1-2704-458c-ab8a-b3c16e2218c6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T20:43:51.000Z" + }, + "end": { + "$date": "2021-10-30T21:16:22.000Z" + }, + "events": [ + { + "uuid": "dc53f48d-93e9-44d7-b78e-cddf7b89b487", + "start": { + "$date": "2021-10-30T20:43:51.000Z" + }, + "end": { + "$date": "2021-10-30T21:16:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ce9f2594-2482-4222-a0fd-e0bbd3efea98", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-30T18:21:28.000Z" + }, + "end": { + "$date": "2021-10-31T00:45:01.000Z" + }, + "events": [ + { + "uuid": "6c6cefff-e4b1-4d56-87d5-18cd350e5813", + "start": { + "$date": "2021-10-30T18:21:28.000Z" + }, + "end": { + "$date": "2021-10-31T00:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0e59e5f0-e99b-46bb-a14d-2de0314df0aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-30T21:10:24.000Z" + }, + "end": { + "$date": "2021-10-30T22:16:47.000Z" + }, + "events": [ + { + "uuid": "0862f44f-6204-472d-a204-415adfac3aaa", + "start": { + "$date": "2021-10-30T21:10:24.000Z" + }, + "end": { + "$date": "2021-10-30T22:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f99daa0d-897d-431a-97e4-eb49410c88f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T21:21:50.000Z" + }, + "end": { + "$date": "2021-10-30T21:50:46.000Z" + }, + "events": [ + { + "uuid": "31a49e6f-3e2f-4367-8e47-6e22492db1c8", + "start": { + "$date": "2021-10-30T21:21:50.000Z" + }, + "end": { + "$date": "2021-10-30T21:50:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d2a172d9-66e2-458d-91fa-dd1f002b5908", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-30T21:20:59.000Z" + }, + "end": { + "$date": "2021-10-30T22:09:40.000Z" + }, + "events": [ + { + "uuid": "7d912775-f3f4-4b14-badb-5c820e454548", + "start": { + "$date": "2021-10-30T21:20:59.000Z" + }, + "end": { + "$date": "2021-10-30T22:09:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c5292c24-4bc9-4b2f-b918-6ef6fa0ff22d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T21:30:08.000Z" + }, + "end": { + "$date": "2021-10-30T22:15:06.000Z" + }, + "events": [ + { + "uuid": "8bda735f-4996-4050-876c-b5a420b2febc", + "start": { + "$date": "2021-10-30T21:30:08.000Z" + }, + "end": { + "$date": "2021-10-30T22:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac83017f-bd17-4fe4-b28e-c5c04be6b893", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T21:59:29.000Z" + }, + "end": { + "$date": "2021-10-30T22:20:09.000Z" + }, + "events": [ + { + "uuid": "ee0f0b20-1d56-47b3-ad54-ba07cb2e3f3f", + "start": { + "$date": "2021-10-30T21:59:29.000Z" + }, + "end": { + "$date": "2021-10-30T22:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d76feac5-0df5-48c1-a5b4-de0ce174799f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-30T22:15:26.000Z" + }, + "end": { + "$date": "2021-10-30T23:38:09.000Z" + }, + "events": [ + { + "uuid": "f8cd4bf6-17b7-431b-a6ef-cd477e31f52a", + "start": { + "$date": "2021-10-30T22:15:26.000Z" + }, + "end": { + "$date": "2021-10-30T23:38:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46b7f29e-e187-4660-80b5-681af1f5755d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T22:29:32.000Z" + }, + "end": { + "$date": "2021-10-30T22:59:03.000Z" + }, + "events": [ + { + "uuid": "4cc220a9-f0f3-4470-8db6-ab490e48e357", + "start": { + "$date": "2021-10-30T22:29:32.000Z" + }, + "end": { + "$date": "2021-10-30T22:59:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ed9c4e1-a5bf-41bd-906a-f505bfb617af", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-30T22:59:25.000Z" + }, + "end": { + "$date": "2021-10-30T23:04:53.000Z" + }, + "events": [ + { + "uuid": "3e0da657-b11b-46b2-926c-72227d26e4cc", + "start": { + "$date": "2021-10-30T22:59:25.000Z" + }, + "end": { + "$date": "2021-10-30T23:04:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2c2c1fa5-d040-45d2-abac-051163c7d38b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-30T23:21:59.000Z" + }, + "end": { + "$date": "2021-10-31T00:00:03.000Z" + }, + "events": [ + { + "uuid": "aac768f1-f6f5-4de1-b86b-caf1c958a4ae", + "start": { + "$date": "2021-10-30T23:21:59.000Z" + }, + "end": { + "$date": "2021-10-31T00:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "4fe53ee5-6247-4aec-9acf-1e464a4f6e79", + "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", + "start": { + "$date": "2021-10-31T00:06:28.000Z" + }, + "end": { + "$date": "2021-10-31T00:23:22.000Z" + }, + "events": [ + { + "uuid": "7c39d97d-adc3-4342-b59b-27423e66bf14", + "start": { + "$date": "2021-10-31T00:06:28.000Z" + }, + "end": { + "$date": "2021-10-31T00:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "109cdc12-17d8-4a9d-a803-73a75ef9b1d4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-31T00:07:23.000Z" + }, + "end": { + "$date": "2021-10-31T01:00:18.000Z" + }, + "events": [ + { + "uuid": "0474a77d-ccb8-43c9-a37c-bec8501f0e5d", + "start": { + "$date": "2021-10-31T00:07:23.000Z" + }, + "end": { + "$date": "2021-10-31T01:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "356ab5d4-4a46-4394-a1c4-e8b8024e3165", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-31T01:24:15.000Z" + }, + "end": { + "$date": "2021-10-31T04:06:37.000Z" + }, + "events": [ + { + "uuid": "84f00df5-552f-418d-93ee-8d6657300969", + "start": { + "$date": "2021-10-31T01:24:15.000Z" + }, + "end": { + "$date": "2021-10-31T04:06:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "8f5ca1f4-90a3-4c52-a736-2c1ea6734bf1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-31T02:31:09.000Z" + }, + "end": { + "$date": "2021-10-31T02:44:23.000Z" + }, + "events": [ + { + "uuid": "df4616a6-ac45-4c58-9f0b-2427191aad4b", + "start": { + "$date": "2021-10-31T02:31:09.000Z" + }, + "end": { + "$date": "2021-10-31T02:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "99156277-c18b-4015-9fe9-4c0b9e2d38fd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T03:11:43.000Z" + }, + "end": { + "$date": "2021-10-31T03:51:28.000Z" + }, + "events": [ + { + "uuid": "40d8bac3-470f-4306-8969-f9290225e769", + "start": { + "$date": "2021-10-31T03:11:43.000Z" + }, + "end": { + "$date": "2021-10-31T03:23:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbf77cab-1662-4b78-a9d4-f656264d810d", + "start": { + "$date": "2021-10-31T03:23:43.000Z" + }, + "end": { + "$date": "2021-10-31T03:26:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e3b47a90-eb4c-453e-93b8-ba3a84e997d2", + "start": { + "$date": "2021-10-31T03:26:43.000Z" + }, + "end": { + "$date": "2021-10-31T03:51:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e8f40c19-9221-4159-afb1-d7eaf5fc04da", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-31T03:45:15.000Z" + }, + "end": { + "$date": "2021-10-31T05:27:34.000Z" + }, + "events": [ + { + "uuid": "36cea28d-f134-4f64-b21d-be1fda7146d0", + "start": { + "$date": "2021-10-31T03:45:15.000Z" + }, + "end": { + "$date": "2021-10-31T05:27:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "24b44d08-4890-4dab-8090-c18baf1de423", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-31T03:49:09.000Z" + }, + "end": { + "$date": "2021-10-31T03:50:19.000Z" + }, + "events": [ + { + "uuid": "5ccc4889-67db-4e6d-bcdb-3ae328c16dfd", + "start": { + "$date": "2021-10-31T03:49:09.000Z" + }, + "end": { + "$date": "2021-10-31T03:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "426d4459-4b1a-49cd-a665-c9c06e414b74", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-31T03:50:54.000Z" + }, + "end": { + "$date": "2021-10-31T04:17:46.000Z" + }, + "events": [ + { + "uuid": "4d70144c-68b0-4bde-b8d1-19b624dd735e", + "start": { + "$date": "2021-10-31T03:50:54.000Z" + }, + "end": { + "$date": "2021-10-31T04:17:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "91f77508-c8aa-4330-898e-73c7eb4998e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T03:51:47.000Z" + }, + "end": { + "$date": "2021-10-31T06:58:31.000Z" + }, + "events": [ + { + "uuid": "2985abe8-926f-4464-905f-a0398139dd03", + "start": { + "$date": "2021-10-31T03:51:47.000Z" + }, + "end": { + "$date": "2021-10-31T06:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "bf622781-9bce-4a2d-8e36-68bdd936872d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-31T04:09:44.000Z" + }, + "end": { + "$date": "2021-10-31T08:06:52.000Z" + }, + "events": [ + { + "uuid": "7e8d89be-118f-492d-be08-dfe95c66a41f", + "start": { + "$date": "2021-10-31T04:09:44.000Z" + }, + "end": { + "$date": "2021-10-31T08:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3114650a-530f-45fa-b3e6-49d22e1a5186", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-31T04:14:23.000Z" + }, + "end": { + "$date": "2021-10-31T05:08:44.000Z" + }, + "events": [ + { + "uuid": "eafa6693-240c-4a56-8909-a8f7b8d8f8b8", + "start": { + "$date": "2021-10-31T04:14:23.000Z" + }, + "end": { + "$date": "2021-10-31T05:08:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b208986d-41a8-41bb-b7a1-765e2f42963b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-31T09:09:21.000Z" + }, + "end": { + "$date": "2021-10-31T09:11:29.000Z" + }, + "events": [ + { + "uuid": "5ebcb9fb-d538-458d-9f72-cacbf8c0e43d", + "start": { + "$date": "2021-10-31T09:09:21.000Z" + }, + "end": { + "$date": "2021-10-31T09:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1d12104-8ec2-4732-95ab-83d085d786f5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T11:24:03.000Z" + }, + "end": { + "$date": "2021-10-31T11:38:33.000Z" + }, + "events": [ + { + "uuid": "2a0b3d68-ac4f-407a-a3c1-8081dd0327b8", + "start": { + "$date": "2021-10-31T11:24:03.000Z" + }, + "end": { + "$date": "2021-10-31T11:38:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89ba4eca-4559-4b47-8906-d9cf56b5dc6f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T11:43:13.000Z" + }, + "end": { + "$date": "2021-10-31T12:04:59.000Z" + }, + "events": [ + { + "uuid": "9a67f8f1-f25e-45b4-970b-46ba2ca98feb", + "start": { + "$date": "2021-10-31T11:43:13.000Z" + }, + "end": { + "$date": "2021-10-31T12:04:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abe7ec23-ba18-45e5-840b-359a4a9f85d6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T12:07:19.000Z" + }, + "end": { + "$date": "2021-10-31T12:20:00.000Z" + }, + "events": [ + { + "uuid": "39f8d8cd-9501-474a-b7ec-9b12a8739f2b", + "start": { + "$date": "2021-10-31T12:07:19.000Z" + }, + "end": { + "$date": "2021-10-31T12:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f861528-b719-4477-9468-6f980c97c9e8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T12:22:10.000Z" + }, + "end": { + "$date": "2021-10-31T12:37:32.000Z" + }, + "events": [ + { + "uuid": "72fe1057-17fd-4555-9773-0185e8252f4e", + "start": { + "$date": "2021-10-31T12:22:10.000Z" + }, + "end": { + "$date": "2021-10-31T12:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27cbdf16-9cb8-43e7-a9c1-424236823343", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T12:40:27.000Z" + }, + "end": { + "$date": "2021-10-31T12:55:04.000Z" + }, + "events": [ + { + "uuid": "d7d6b0bb-b62e-4a83-9f1d-c6728a87c7c7", + "start": { + "$date": "2021-10-31T12:40:27.000Z" + }, + "end": { + "$date": "2021-10-31T12:55:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59657d76-7d48-40b6-898f-08b6098b7d3d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T12:58:39.000Z" + }, + "end": { + "$date": "2021-10-31T13:23:23.000Z" + }, + "events": [ + { + "uuid": "0233f307-348b-4f86-9d04-608c56f7c596", + "start": { + "$date": "2021-10-31T12:58:39.000Z" + }, + "end": { + "$date": "2021-10-31T13:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bc26e4f-f90b-4a24-ae70-7aeece26ab49", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T13:26:08.000Z" + }, + "end": { + "$date": "2021-10-31T13:43:43.000Z" + }, + "events": [ + { + "uuid": "02436b77-ba55-465e-bd0e-f36a29207d48", + "start": { + "$date": "2021-10-31T13:26:08.000Z" + }, + "end": { + "$date": "2021-10-31T13:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4eae9761-b6de-4fb4-a85d-ef32c4f75027", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T13:46:15.000Z" + }, + "end": { + "$date": "2021-10-31T14:06:53.000Z" + }, + "events": [ + { + "uuid": "cb576ad3-3f1f-4739-aecf-d66d3d63eae3", + "start": { + "$date": "2021-10-31T13:46:15.000Z" + }, + "end": { + "$date": "2021-10-31T14:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74ae2875-fc1e-441d-98a3-55d2127f6c48", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T14:09:43.000Z" + }, + "end": { + "$date": "2021-10-31T14:25:31.000Z" + }, + "events": [ + { + "uuid": "0ab672ca-a2c4-41ad-a9db-5a12ed8be230", + "start": { + "$date": "2021-10-31T14:09:43.000Z" + }, + "end": { + "$date": "2021-10-31T14:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f78b23e-9c0c-4ffd-a974-01758ec1626e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T14:28:26.000Z" + }, + "end": { + "$date": "2021-10-31T14:56:24.000Z" + }, + "events": [ + { + "uuid": "8fb38c18-f848-4244-9aaa-ae802847b776", + "start": { + "$date": "2021-10-31T14:28:26.000Z" + }, + "end": { + "$date": "2021-10-31T14:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "3168f3ff-7ac0-49fa-83e9-9a4917665ad8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T14:30:08.000Z" + }, + "end": { + "$date": "2021-10-31T15:12:09.000Z" + }, + "events": [ + { + "uuid": "88bbc2bd-77b7-4c4f-a29e-c8da1fc31e36", + "start": { + "$date": "2021-10-31T14:30:08.000Z" + }, + "end": { + "$date": "2021-10-31T15:12:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "1281dda7-0ddd-4ca3-9316-98fa7c98778e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-31T14:51:18.000Z" + }, + "end": { + "$date": "2021-10-31T15:18:14.000Z" + }, + "events": [ + { + "uuid": "3e249517-b0d4-47ec-a85a-d4422ada8603", + "start": { + "$date": "2021-10-31T14:51:18.000Z" + }, + "end": { + "$date": "2021-10-31T15:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2deae208-cdf7-4f03-8770-bd1031c2f1d9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T14:58:49.000Z" + }, + "end": { + "$date": "2021-10-31T15:14:23.000Z" + }, + "events": [ + { + "uuid": "4aa0b37e-4cbf-418b-a89e-88f231db91f8", + "start": { + "$date": "2021-10-31T14:58:49.000Z" + }, + "end": { + "$date": "2021-10-31T15:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee5388af-865b-47ff-9596-99777299ed38", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T15:12:23.000Z" + }, + "end": { + "$date": "2021-10-31T15:49:24.000Z" + }, + "events": [ + { + "uuid": "b2ba573f-b49c-4b3d-bc9e-01f151620793", + "start": { + "$date": "2021-10-31T15:12:23.000Z" + }, + "end": { + "$date": "2021-10-31T15:49:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f71f11bd-a5b3-47a2-b46e-b9ba77024529", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T15:16:31.000Z" + }, + "end": { + "$date": "2021-10-31T15:52:11.000Z" + }, + "events": [ + { + "uuid": "301c8932-cd70-4eee-bd38-55a67358594c", + "start": { + "$date": "2021-10-31T15:16:31.000Z" + }, + "end": { + "$date": "2021-10-31T15:52:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "3640e451-5990-419a-9671-43ff4d881bbf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T15:50:23.000Z" + }, + "end": { + "$date": "2021-10-31T16:52:22.000Z" + }, + "events": [ + { + "uuid": "35750a1f-a733-4c75-af60-5188c3c6c17f", + "start": { + "$date": "2021-10-31T15:50:23.000Z" + }, + "end": { + "$date": "2021-10-31T16:19:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2fdf6c10-1c35-4e12-b828-89d5b70f6e2a", + "start": { + "$date": "2021-10-31T16:19:23.000Z" + }, + "end": { + "$date": "2021-10-31T16:23:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1717c58-9cae-43dc-8419-9942c3f42ad2", + "start": { + "$date": "2021-10-31T16:23:23.000Z" + }, + "end": { + "$date": "2021-10-31T16:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5deea380-4e70-4955-ad4f-dd5babc6a0c8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T15:54:51.000Z" + }, + "end": { + "$date": "2021-10-31T16:12:14.000Z" + }, + "events": [ + { + "uuid": "c774eade-ecb6-496a-b2f5-2ebdacb11e59", + "start": { + "$date": "2021-10-31T15:54:51.000Z" + }, + "end": { + "$date": "2021-10-31T16:12:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "dca59e44-2d19-42d6-900c-87c49660f8d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-31T15:53:51.000Z" + }, + "end": { + "$date": "2021-10-31T16:49:34.000Z" + }, + "events": [ + { + "uuid": "77f6ba91-416b-42a7-93b9-12d18933cb37", + "start": { + "$date": "2021-10-31T15:53:51.000Z" + }, + "end": { + "$date": "2021-10-31T16:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c6df8b4-5169-4ef5-b3e8-4381cae769f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-31T16:11:09.000Z" + }, + "end": { + "$date": "2021-10-31T17:43:27.000Z" + }, + "events": [ + { + "uuid": "8c43c0ce-7aa6-4b04-9899-3a97d57ee54a", + "start": { + "$date": "2021-10-31T16:11:09.000Z" + }, + "end": { + "$date": "2021-10-31T17:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25b698c3-f57d-42b7-94d0-70621431fa7f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T16:14:24.000Z" + }, + "end": { + "$date": "2021-10-31T16:34:46.000Z" + }, + "events": [ + { + "uuid": "f3ff6fb0-ff58-4f38-9794-e81bb681ae77", + "start": { + "$date": "2021-10-31T16:14:24.000Z" + }, + "end": { + "$date": "2021-10-31T16:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e466e613-63c3-45c9-b5de-c794b863d559", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T16:37:01.000Z" + }, + "end": { + "$date": "2021-10-31T17:05:35.000Z" + }, + "events": [ + { + "uuid": "a6329d4c-b671-428e-a894-b2741d63a31b", + "start": { + "$date": "2021-10-31T16:37:01.000Z" + }, + "end": { + "$date": "2021-10-31T17:05:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cdd2ce62-1253-4a9e-8be9-5c1ca6f7bda2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T16:52:36.000Z" + }, + "end": { + "$date": "2021-10-31T19:37:53.000Z" + }, + "events": [ + { + "uuid": "6fa1f8f6-13d2-40a7-b5e2-bc512721f40d", + "start": { + "$date": "2021-10-31T16:52:36.000Z" + }, + "end": { + "$date": "2021-10-31T19:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a11c784-4016-422e-8abe-4fe205311095", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-10-31T17:05:51.000Z" + }, + "end": { + "$date": "2021-11-01T10:13:19.000Z" + }, + "events": [ + { + "uuid": "3d180bc0-04ef-44fb-b8f5-458d9e08a80a", + "start": { + "$date": "2021-10-31T17:05:51.000Z" + }, + "end": { + "$date": "2021-10-31T17:16:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "db91440c-f647-4143-baa3-e2f3b907ddec", + "start": { + "$date": "2021-10-31T17:16:51.000Z" + }, + "end": { + "$date": "2021-10-31T17:20:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d31e8ff6-8cdb-4154-a9d4-4b4ed334f3e1", + "start": { + "$date": "2021-10-31T17:20:51.000Z" + }, + "end": { + "$date": "2021-10-31T17:53:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4356fcdc-39f8-42c7-b995-fecd1f67a97c", + "start": { + "$date": "2021-10-31T17:53:51.000Z" + }, + "end": { + "$date": "2021-10-31T17:55:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "114d98ec-803c-4766-b0ee-2d662d99ba7f", + "start": { + "$date": "2021-10-31T17:55:51.000Z" + }, + "end": { + "$date": "2021-10-31T18:58:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "18159517-e094-4fd3-bad4-6e11df0b06e6", + "start": { + "$date": "2021-10-31T18:58:51.000Z" + }, + "end": { + "$date": "2021-10-31T19:07:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c819c8b0-8841-4e6f-bc4d-be31e7cef67d", + "start": { + "$date": "2021-10-31T19:07:51.000Z" + }, + "end": { + "$date": "2021-10-31T19:54:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a568bbd-9bc4-4c2e-9d8c-4f3244791a91", + "start": { + "$date": "2021-10-31T19:54:51.000Z" + }, + "end": { + "$date": "2021-10-31T19:58:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a0ed428-7168-4f43-b6cf-c0e0a488d589", + "start": { + "$date": "2021-10-31T19:58:51.000Z" + }, + "end": { + "$date": "2021-10-31T20:15:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c393e66-072a-4d8d-860c-e5bc853a4f73", + "start": { + "$date": "2021-10-31T20:15:51.000Z" + }, + "end": { + "$date": "2021-10-31T20:26:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "89e821bd-af91-45b3-bb38-1d0810ec4260", + "start": { + "$date": "2021-10-31T20:26:51.000Z" + }, + "end": { + "$date": "2021-10-31T20:49:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b3b4fd83-d6b0-4207-8d09-19b21d15556a", + "start": { + "$date": "2021-10-31T20:49:51.000Z" + }, + "end": { + "$date": "2021-11-01T00:18:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "463f0405-804d-46cf-b308-696a20944690", + "start": { + "$date": "2021-11-01T00:18:51.000Z" + }, + "end": { + "$date": "2021-11-01T00:28:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ac22d7af-40e6-43d7-bff7-504c32a8caf8", + "start": { + "$date": "2021-11-01T00:28:51.000Z" + }, + "end": { + "$date": "2021-11-01T03:21:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d448c970-fa78-41b9-ad69-b9f5857f1f7e", + "start": { + "$date": "2021-11-01T03:21:51.000Z" + }, + "end": { + "$date": "2021-11-01T03:25:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46a943db-291f-411f-a851-443a51087fb2", + "start": { + "$date": "2021-11-01T03:25:51.000Z" + }, + "end": { + "$date": "2021-11-01T03:26:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53b7ddac-fddb-456f-b1c3-27002a2fb289", + "start": { + "$date": "2021-11-01T03:26:51.000Z" + }, + "end": { + "$date": "2021-11-01T03:28:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f6048f36-2ecf-4ad0-ad92-97f1a4628227", + "start": { + "$date": "2021-11-01T03:28:51.000Z" + }, + "end": { + "$date": "2021-11-01T04:08:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c287551-bc27-4381-b794-0c2120418da2", + "start": { + "$date": "2021-11-01T04:08:51.000Z" + }, + "end": { + "$date": "2021-11-01T06:05:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef3f8f33-c48c-4e91-813d-6cb81f5b1b25", + "start": { + "$date": "2021-11-01T06:05:51.000Z" + }, + "end": { + "$date": "2021-11-01T07:18:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4b90649-2813-41cf-9d83-4952ab1f617f", + "start": { + "$date": "2021-11-01T07:18:51.000Z" + }, + "end": { + "$date": "2021-11-01T08:09:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0329a368-1e52-457e-a5c3-689ab895c3f1", + "start": { + "$date": "2021-11-01T08:09:51.000Z" + }, + "end": { + "$date": "2021-11-01T08:14:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c167d78-cb57-4330-baed-3628d85f6de0", + "start": { + "$date": "2021-11-01T08:14:51.000Z" + }, + "end": { + "$date": "2021-11-01T08:37:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7db0041-a3c9-4d72-8b0c-65f9d94a4954", + "start": { + "$date": "2021-11-01T08:37:51.000Z" + }, + "end": { + "$date": "2021-11-01T08:41:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7b3336b2-71ae-4150-a788-5ed283289f07", + "start": { + "$date": "2021-11-01T08:41:51.000Z" + }, + "end": { + "$date": "2021-11-01T09:11:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a1dd174-f9d4-4fcf-9afb-17236848d45d", + "start": { + "$date": "2021-11-01T09:11:51.000Z" + }, + "end": { + "$date": "2021-11-01T09:13:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "62b16cab-641f-472d-8289-d99c548e4913", + "start": { + "$date": "2021-11-01T09:13:51.000Z" + }, + "end": { + "$date": "2021-11-01T10:13:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54973677-6d98-45be-b23c-1d30462c4361", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-31T18:40:18.000Z" + }, + "end": { + "$date": "2021-10-31T19:08:34.000Z" + }, + "events": [ + { + "uuid": "d052fcf2-e6a4-49b1-8b96-cec4c2a93383", + "start": { + "$date": "2021-10-31T18:40:18.000Z" + }, + "end": { + "$date": "2021-10-31T19:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34bd7c6a-94d5-49ea-b839-7403594b1ecb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-31T19:17:29.000Z" + }, + "end": { + "$date": "2021-10-31T19:39:57.000Z" + }, + "events": [ + { + "uuid": "b106d6dc-cc10-4772-a2c8-547156521598", + "start": { + "$date": "2021-10-31T19:17:29.000Z" + }, + "end": { + "$date": "2021-10-31T19:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "f2fada2f-56a6-4cfe-8621-520bf0caa18a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-10-31T19:26:40.000Z" + }, + "end": { + "$date": "2021-10-31T20:03:47.000Z" + }, + "events": [ + { + "uuid": "235d0ce7-bf72-4dc4-a616-72160b79daeb", + "start": { + "$date": "2021-10-31T19:26:40.000Z" + }, + "end": { + "$date": "2021-10-31T20:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc797d0c-9688-47df-be1f-dc8e334d467e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-10-31T23:29:31.000Z" + }, + "end": { + "$date": "2021-11-01T00:01:20.000Z" + }, + "events": [ + { + "uuid": "3c262e41-bdc6-4394-b457-e2522a8d8501", + "start": { + "$date": "2021-10-31T23:29:31.000Z" + }, + "end": { + "$date": "2021-11-01T00:56:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0b62267f-6092-4598-93b3-ab9b58b04b50", + "start": { + "$date": "2021-11-01T00:56:31.000Z" + }, + "end": { + "$date": "2021-11-01T01:00:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b95a58b4-ac89-4739-98ca-08abfa60426a", + "start": { + "$date": "2021-11-01T01:00:31.000Z" + }, + "end": { + "$date": "2021-11-01T01:10:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4506d3b-27f9-4435-87db-7c864eec9be8", + "start": { + "$date": "2021-11-01T01:10:31.000Z" + }, + "end": { + "$date": "2021-11-01T01:18:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "34f0639f-490f-4325-baf8-c5ad560b9650", + "start": { + "$date": "2021-11-01T01:18:31.000Z" + }, + "end": { + "$date": "2021-11-01T01:22:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "10fe1d6d-6618-49fd-af7a-0d47b0026222", + "start": { + "$date": "2021-11-01T01:22:31.000Z" + }, + "end": { + "$date": "2021-11-01T01:56:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "66a94de5-51b4-46fd-97e5-dd39d18bc9a7", + "start": { + "$date": "2021-11-01T01:56:31.000Z" + }, + "end": { + "$date": "2021-11-01T02:21:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "27e59d67-5d14-49f7-9c96-e3a172d19104", + "start": { + "$date": "2021-11-01T02:21:31.000Z" + }, + "end": { + "$date": "2021-11-01T03:04:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9ba0d8a-7e60-4b48-8fb1-4ae081b72d1a", + "start": { + "$date": "2021-11-01T03:04:31.000Z" + }, + "end": { + "$date": "2021-11-01T00:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "017f37d8-ef83-4b69-b675-f2108b8d0fb1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-31T20:10:12.000Z" + }, + "end": { + "$date": "2021-10-31T20:10:18.000Z" + }, + "events": [ + { + "uuid": "7a295cd1-b573-44f9-b0ed-25b8efa0e30f", + "start": { + "$date": "2021-10-31T20:10:12.000Z" + }, + "end": { + "$date": "2021-10-31T20:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", + "uuid": "012eea9e-e62c-43b7-b4f8-82893cbee9b7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-31T20:32:50.000Z" + }, + "end": { + "$date": "2021-10-31T22:47:18.000Z" + }, + "events": [ + { + "uuid": "5df973bc-b077-40cf-b4e2-62d8e160e63b", + "start": { + "$date": "2021-10-31T20:32:50.000Z" + }, + "end": { + "$date": "2021-10-31T20:52:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dea610de-6172-45fc-9b08-cec8be0de0fd", + "start": { + "$date": "2021-10-31T20:52:50.000Z" + }, + "end": { + "$date": "2021-10-31T20:55:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3cefe24a-f5d2-4b37-8c98-6693f5f6ef9b", + "start": { + "$date": "2021-10-31T20:55:50.000Z" + }, + "end": { + "$date": "2021-10-31T21:26:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed7bf4ba-ad96-4cb5-bb03-d1f00ced92f8", + "start": { + "$date": "2021-10-31T21:26:50.000Z" + }, + "end": { + "$date": "2021-10-31T21:27:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e85973a1-750f-4802-a9ad-ca1bedce8bed", + "start": { + "$date": "2021-10-31T21:27:50.000Z" + }, + "end": { + "$date": "2021-10-31T21:38:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80981239-3ad7-40fa-a2e5-615fbcaa53f3", + "start": { + "$date": "2021-10-31T21:38:50.000Z" + }, + "end": { + "$date": "2021-10-31T21:49:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9399b67e-a294-4c19-b8b4-a699fe044d76", + "start": { + "$date": "2021-10-31T21:49:50.000Z" + }, + "end": { + "$date": "2021-10-31T22:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1db0f3f9-d7c5-45d9-95a5-ea2b009f14e8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-31T20:47:27.000Z" + }, + "end": { + "$date": "2021-10-31T21:13:41.000Z" + }, + "events": [ + { + "uuid": "b7104cc6-2203-4067-9cd1-3a47c0ef2080", + "start": { + "$date": "2021-10-31T20:47:27.000Z" + }, + "end": { + "$date": "2021-10-31T21:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eeee31f4-65af-470c-aae3-69a19623afbf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-10-31T21:20:13.000Z" + }, + "end": { + "$date": "2021-10-31T22:50:29.000Z" + }, + "events": [ + { + "uuid": "fc05fb98-1891-49c3-85ec-65b7abd0940e", + "start": { + "$date": "2021-10-31T21:20:13.000Z" + }, + "end": { + "$date": "2021-10-31T22:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e3ecd188-514b-48e9-8a26-dd0e671c77dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-10-31T22:02:24.000Z" + }, + "end": { + "$date": "2021-10-31T23:07:17.000Z" + }, + "events": [ + { + "uuid": "b842b95a-7f24-4a92-ac6b-f4a30a0f6e61", + "start": { + "$date": "2021-10-31T22:02:24.000Z" + }, + "end": { + "$date": "2021-10-31T23:07:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2699aa1-41f4-4e21-9d40-960390b5b07b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T22:12:56.000Z" + }, + "end": { + "$date": "2021-10-31T23:11:17.000Z" + }, + "events": [ + { + "uuid": "6fa18517-209d-43e3-a007-58b4a70da3b8", + "start": { + "$date": "2021-10-31T22:12:56.000Z" + }, + "end": { + "$date": "2021-10-31T23:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", + "uuid": "edc268cc-cb65-4b5b-aa1d-f249cf604049", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-10-31T23:21:46.000Z" + }, + "end": { + "$date": "2021-10-31T23:37:53.000Z" + }, + "events": [ + { + "uuid": "ccfbc4c8-6652-4178-be4f-9bf7b23f8525", + "start": { + "$date": "2021-10-31T23:21:46.000Z" + }, + "end": { + "$date": "2021-10-31T23:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "92b247a1-5e86-4e2c-bd63-2f8a2e3a9e68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-10-31T23:22:07.000Z" + }, + "end": { + "$date": "2021-10-31T23:36:14.000Z" + }, + "events": [ + { + "uuid": "5a565827-30e3-4ff1-b6f1-863252fb0fa6", + "start": { + "$date": "2021-10-31T23:22:07.000Z" + }, + "end": { + "$date": "2021-10-31T23:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "189a3f2f-6d29-44c0-81cb-c9c0e03485ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-10-31T23:43:01.000Z" + }, + "end": { + "$date": "2021-11-01T04:48:55.000Z" + }, + "events": [ + { + "uuid": "5a7bd273-a5cb-4ec8-8dcd-d7853218bcda", + "start": { + "$date": "2021-10-31T23:43:01.000Z" + }, + "end": { + "$date": "2021-11-01T04:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45633683-d601-4f32-b74f-aa73522cedee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T00:08:46.000Z" + }, + "end": { + "$date": "2021-11-01T00:21:44.000Z" + }, + "events": [ + { + "uuid": "245f1f61-ee9f-41f9-b26b-adfd5d706fdf", + "start": { + "$date": "2021-11-01T00:08:46.000Z" + }, + "end": { + "$date": "2021-11-01T00:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71f5a3fe-6169-4429-a9b0-440724134739", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-01T00:07:20.000Z" + }, + "end": { + "$date": "2021-11-01T00:47:45.000Z" + }, + "events": [ + { + "uuid": "bcf739d3-b763-43d0-aa4b-314cfec58abf", + "start": { + "$date": "2021-11-01T00:07:20.000Z" + }, + "end": { + "$date": "2021-11-01T00:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "1bfa0bff-f8a4-4eb2-9c52-133f14d475a0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T00:38:52.000Z" + }, + "end": { + "$date": "2021-11-01T01:59:56.000Z" + }, + "events": [ + { + "uuid": "72a20028-fdfd-4fb3-aa3e-ff8d41e904ae", + "start": { + "$date": "2021-11-01T00:38:52.000Z" + }, + "end": { + "$date": "2021-11-01T01:59:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2d7e1ed-91e9-4054-9fc9-7500dcf55f4d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-01T01:05:48.000Z" + }, + "end": { + "$date": "2021-11-01T02:40:43.000Z" + }, + "events": [ + { + "uuid": "5fc5f048-9571-447d-83a6-5796d1dc99ca", + "start": { + "$date": "2021-11-01T01:05:48.000Z" + }, + "end": { + "$date": "2021-11-01T02:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8bfe3ad6-4ef3-4b23-a05e-f6fd7d2a72ef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-01T01:35:51.000Z" + }, + "end": { + "$date": "2021-11-01T03:21:54.000Z" + }, + "events": [ + { + "uuid": "cac86f54-9a19-463d-bf42-d6dc57f1d652", + "start": { + "$date": "2021-11-01T01:35:51.000Z" + }, + "end": { + "$date": "2021-11-01T03:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b584e841-7399-47be-8cb7-b542e425c336", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T02:57:48.000Z" + }, + "end": { + "$date": "2021-11-01T03:13:57.000Z" + }, + "events": [ + { + "uuid": "d9546663-6a7b-4419-9aff-5ec2f2b3ed3b", + "start": { + "$date": "2021-11-01T02:57:48.000Z" + }, + "end": { + "$date": "2021-11-01T03:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22a9ee92-b8dc-4de7-9937-3e4a77f9a6e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T03:22:28.000Z" + }, + "end": { + "$date": "2021-11-01T03:45:30.000Z" + }, + "events": [ + { + "uuid": "5b76d6fd-4f63-4c73-a2ed-5f25b917c43f", + "start": { + "$date": "2021-11-01T03:22:28.000Z" + }, + "end": { + "$date": "2021-11-01T03:45:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "adcca20f-cb7b-4d8e-977a-ce3104c28823", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-01T03:22:15.000Z" + }, + "end": { + "$date": "2021-11-01T04:50:08.000Z" + }, + "events": [ + { + "uuid": "613c41bc-e3c5-484c-88cb-fb67ac3ba508", + "start": { + "$date": "2021-11-01T03:22:15.000Z" + }, + "end": { + "$date": "2021-11-01T04:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "47be30ba-6f3a-4a86-bc1f-e941ca037914", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-01T03:44:36.000Z" + }, + "end": { + "$date": "2021-11-01T06:22:32.000Z" + }, + "events": [ + { + "uuid": "c82d4cb7-8b5d-47cc-87bf-4afa65230c7f", + "start": { + "$date": "2021-11-01T03:44:36.000Z" + }, + "end": { + "$date": "2021-11-01T06:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b3e374a0-5e83-4405-b0a7-f0ffa58c9862", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-01T03:44:59.000Z" + }, + "end": { + "$date": "2021-11-01T07:27:13.000Z" + }, + "events": [ + { + "uuid": "4512f968-7f47-459b-b374-5b525d611c18", + "start": { + "$date": "2021-11-01T03:44:59.000Z" + }, + "end": { + "$date": "2021-11-01T07:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "8c1d1743-2cec-4064-aa33-c0a3e11bc83a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-01T03:58:01.000Z" + }, + "end": { + "$date": "2021-11-01T04:05:37.000Z" + }, + "events": [ + { + "uuid": "1ef04eb1-9ade-4064-b6b7-9b8aeeaccc3d", + "start": { + "$date": "2021-11-01T03:58:01.000Z" + }, + "end": { + "$date": "2021-11-01T04:05:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0c6dbed8-4e41-4fe5-b63b-88fd6671b924", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-01T04:07:12.000Z" + }, + "end": { + "$date": "2021-11-01T04:50:29.000Z" + }, + "events": [ + { + "uuid": "c52db2bb-f974-48de-9b1a-3d87278e3511", + "start": { + "$date": "2021-11-01T04:07:12.000Z" + }, + "end": { + "$date": "2021-11-01T04:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a692a65a-59e2-4116-a30e-2331fe88c744", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-01T04:58:14.000Z" + }, + "end": { + "$date": "2021-11-01T05:40:47.000Z" + }, + "events": [ + { + "uuid": "e12a6e20-c05e-4cf6-b56b-3b1bd3817379", + "start": { + "$date": "2021-11-01T04:58:14.000Z" + }, + "end": { + "$date": "2021-11-01T05:40:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12b6b681-adf8-4973-9ce3-0d6232c569f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T17:58:33.000Z" + }, + "end": { + "$date": "2021-11-01T18:20:56.000Z" + }, + "events": [ + { + "uuid": "63f57337-9cd5-4045-b1de-3774d084d9f9", + "start": { + "$date": "2021-11-01T17:58:33.000Z" + }, + "end": { + "$date": "2021-11-01T18:20:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "89ab0450-98eb-4470-a46d-057bc25da9e2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-01T19:26:11.000Z" + }, + "end": { + "$date": "2021-11-01T20:14:59.000Z" + }, + "events": [ + { + "uuid": "821878fa-7bef-4f84-8e15-e67bcd33240f", + "start": { + "$date": "2021-11-01T19:26:11.000Z" + }, + "end": { + "$date": "2021-11-01T20:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a55d2084-e478-4635-905b-80a1dab6df85", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T20:59:02.000Z" + }, + "end": { + "$date": "2021-11-01T21:10:49.000Z" + }, + "events": [ + { + "uuid": "b8346dc3-88e2-47cf-987e-4fa871b7b8ee", + "start": { + "$date": "2021-11-01T20:59:02.000Z" + }, + "end": { + "$date": "2021-11-01T21:10:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b16ecdd4-401b-4eb6-b0bb-cd4421374434", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-01T21:14:53.000Z" + }, + "end": { + "$date": "2021-11-01T21:31:20.000Z" + }, + "events": [ + { + "uuid": "74921b55-384d-4efc-9f28-5051bc4aa5e5", + "start": { + "$date": "2021-11-01T21:14:53.000Z" + }, + "end": { + "$date": "2021-11-01T21:31:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ec2e1325-002b-477c-a80b-f0d80ddfb94e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-01T22:40:45.000Z" + }, + "end": { + "$date": "2021-11-01T23:40:46.000Z" + }, + "events": [ + { + "uuid": "47e0ba4c-d2ac-4f90-b648-da5881719474", + "start": { + "$date": "2021-11-01T22:40:45.000Z" + }, + "end": { + "$date": "2021-11-01T23:40:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "718da138-f583-4280-b228-2e7722027d9f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-01T23:32:44.000Z" + }, + "end": { + "$date": "2021-11-02T00:42:32.000Z" + }, + "events": [ + { + "uuid": "a2421a86-e42e-464b-a82a-a2f2553113b7", + "start": { + "$date": "2021-11-01T23:32:44.000Z" + }, + "end": { + "$date": "2021-11-02T00:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "56805647-0c6b-466b-a3ad-0ae214828c7e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-01T23:28:21.000Z" + }, + "end": { + "$date": "2021-11-02T04:56:49.000Z" + }, + "events": [ + { + "uuid": "56258096-a2a7-43e6-a232-8f4e098eca95", + "start": { + "$date": "2021-11-01T23:28:21.000Z" + }, + "end": { + "$date": "2021-11-02T04:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "681cc2de-dda3-47fd-b8b7-73cae8bc5121", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-02T00:49:35.000Z" + }, + "end": { + "$date": "2021-11-02T01:36:51.000Z" + }, + "events": [ + { + "uuid": "20941e42-423a-4c6c-ac9b-1173e254fd3c", + "start": { + "$date": "2021-11-02T00:49:35.000Z" + }, + "end": { + "$date": "2021-11-02T01:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b222866e-03b1-4ffd-912b-16dd8180399c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-02T00:53:10.000Z" + }, + "end": { + "$date": "2021-11-02T01:52:19.000Z" + }, + "events": [ + { + "uuid": "b80da704-e0ea-4d00-bb58-7da6bed1ccda", + "start": { + "$date": "2021-11-02T00:53:10.000Z" + }, + "end": { + "$date": "2021-11-02T01:26:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a9fd76e-e13b-4438-8bb9-ac6dbe6f5174", + "start": { + "$date": "2021-11-02T01:26:10.000Z" + }, + "end": { + "$date": "2021-11-02T01:52:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e94050e1-9161-4adb-b317-ea9893602d52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T01:09:10.000Z" + }, + "end": { + "$date": "2021-11-02T01:23:41.000Z" + }, + "events": [ + { + "uuid": "24019c71-574a-4404-a235-570648439929", + "start": { + "$date": "2021-11-02T01:09:10.000Z" + }, + "end": { + "$date": "2021-11-02T01:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09bbea4e-5cca-4697-95e3-48c5db6df2ee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-02T01:52:24.000Z" + }, + "end": { + "$date": "2021-11-02T01:58:40.000Z" + }, + "events": [ + { + "uuid": "03dbb938-618f-4c48-9da0-468961d826d0", + "start": { + "$date": "2021-11-02T01:52:24.000Z" + }, + "end": { + "$date": "2021-11-02T01:53:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84dabde4-f1e0-4143-bf36-19b78758a712", + "start": { + "$date": "2021-11-02T01:53:24.000Z" + }, + "end": { + "$date": "2021-11-02T01:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "018cee52-dd3e-45b4-84ce-fc3e103d39ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-02T02:24:55.000Z" + }, + "end": { + "$date": "2021-11-02T02:34:48.000Z" + }, + "events": [ + { + "uuid": "c7257074-da17-4f49-9e6c-71998d1a5b31", + "start": { + "$date": "2021-11-02T02:24:55.000Z" + }, + "end": { + "$date": "2021-11-02T02:34:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bec41586-3b8c-473a-b55b-1201aaa19d81", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-02T02:38:35.000Z" + }, + "end": { + "$date": "2021-11-02T03:08:13.000Z" + }, + "events": [ + { + "uuid": "0e2001b7-dd8b-4edc-82fe-a50dcbb0aa70", + "start": { + "$date": "2021-11-02T02:38:35.000Z" + }, + "end": { + "$date": "2021-11-02T03:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "1a8bf905-867f-4474-99a4-3ce86e4d31c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T02:40:19.000Z" + }, + "end": { + "$date": "2021-11-02T02:44:25.000Z" + }, + "events": [ + { + "uuid": "e1aaa1c5-bc8f-442d-8df0-89b3338b15cb", + "start": { + "$date": "2021-11-02T02:40:19.000Z" + }, + "end": { + "$date": "2021-11-02T02:44:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "ec0a6756-9ea4-4085-b581-7905e38c7b8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T02:44:49.000Z" + }, + "end": { + "$date": "2021-11-02T04:14:55.000Z" + }, + "events": [ + { + "uuid": "ddd765a1-14a5-4666-8ee8-c9815bd5db23", + "start": { + "$date": "2021-11-02T02:44:49.000Z" + }, + "end": { + "$date": "2021-11-02T04:14:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "33335d41-606b-4bed-ab4b-0d6468729ddb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-02T03:23:39.000Z" + }, + "end": { + "$date": "2021-11-02T04:09:55.000Z" + }, + "events": [ + { + "uuid": "2340d955-ad5a-4806-973d-8287a56c4c87", + "start": { + "$date": "2021-11-02T03:23:39.000Z" + }, + "end": { + "$date": "2021-11-02T04:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd3d542c-23fa-4915-b3ac-82957b1db721", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-02T03:54:19.000Z" + }, + "end": { + "$date": "2021-11-02T04:24:38.000Z" + }, + "events": [ + { + "uuid": "66e4f078-3e2b-4dd7-a068-c01071926dbc", + "start": { + "$date": "2021-11-02T03:54:19.000Z" + }, + "end": { + "$date": "2021-11-02T04:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d28da42f-a429-4199-bed2-d21f2e5c00d7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-02T04:12:40.000Z" + }, + "end": { + "$date": "2021-11-02T05:32:37.000Z" + }, + "events": [ + { + "uuid": "d26e6033-f135-47f6-b108-bb742450efe2", + "start": { + "$date": "2021-11-02T04:12:40.000Z" + }, + "end": { + "$date": "2021-11-02T05:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c662d47-a375-44a3-b229-dfce6c90fb23", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-02T04:33:44.000Z" + }, + "end": { + "$date": "2021-11-02T05:11:01.000Z" + }, + "events": [ + { + "uuid": "a540620a-99c0-4051-b646-b032b25bcb27", + "start": { + "$date": "2021-11-02T04:33:44.000Z" + }, + "end": { + "$date": "2021-11-02T05:11:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0938bce5-b00a-4aa1-be89-14e2dd17ee37", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-02T05:20:49.000Z" + }, + "end": { + "$date": "2021-11-02T05:50:52.000Z" + }, + "events": [ + { + "uuid": "28640928-c3f9-4cc0-8813-217909f25461", + "start": { + "$date": "2021-11-02T05:20:49.000Z" + }, + "end": { + "$date": "2021-11-02T05:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "258f4d57-5099-4a56-8771-3ed78490f5ca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-02T05:32:52.000Z" + }, + "end": { + "$date": "2021-11-02T06:21:48.000Z" + }, + "events": [ + { + "uuid": "865ac9bb-aeac-4be8-bc6a-96c60962dc38", + "start": { + "$date": "2021-11-02T05:32:52.000Z" + }, + "end": { + "$date": "2021-11-02T06:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3d8e0dd5-999a-4101-9b9a-825d19f99ff7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-02T06:59:52.000Z" + }, + "end": { + "$date": "2021-11-02T07:47:47.000Z" + }, + "events": [ + { + "uuid": "7c6a7eca-048c-4734-b6c1-8f0727d6b4a4", + "start": { + "$date": "2021-11-02T06:59:52.000Z" + }, + "end": { + "$date": "2021-11-02T07:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f077160c-cfe0-4afa-ae8b-00db07e23fa0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-02T12:58:28.000Z" + }, + "end": { + "$date": "2021-11-02T13:19:33.000Z" + }, + "events": [ + { + "uuid": "16bdd689-6843-4c8f-b3cf-2aab4d1ada0e", + "start": { + "$date": "2021-11-02T12:58:28.000Z" + }, + "end": { + "$date": "2021-11-02T13:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8ac631d-e6f5-408e-ab88-731381ddab64", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-02T13:23:06.000Z" + }, + "end": { + "$date": "2021-11-02T13:54:41.000Z" + }, + "events": [ + { + "uuid": "71dce515-3a41-4e36-982f-676dc872870e", + "start": { + "$date": "2021-11-02T13:23:06.000Z" + }, + "end": { + "$date": "2021-11-02T13:54:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3760c10a-f9c5-49af-99b1-da21c567541d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-02T13:59:21.000Z" + }, + "end": { + "$date": "2021-11-02T14:27:30.000Z" + }, + "events": [ + { + "uuid": "9467a3dd-40bf-4626-a01e-4db5b33784b9", + "start": { + "$date": "2021-11-02T13:59:21.000Z" + }, + "end": { + "$date": "2021-11-02T14:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "4c1c124a-3289-4de1-b278-f039b927511e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T14:27:09.000Z" + }, + "end": { + "$date": "2021-11-02T16:07:53.000Z" + }, + "events": [ + { + "uuid": "1718bc96-2a6c-481a-ab96-8224ecea2121", + "start": { + "$date": "2021-11-02T14:27:09.000Z" + }, + "end": { + "$date": "2021-11-02T15:03:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5d4b8bf-b53d-4e2f-8895-076095106ef9", + "start": { + "$date": "2021-11-02T15:03:09.000Z" + }, + "end": { + "$date": "2021-11-02T15:05:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "832329ce-02ba-4d47-8a38-ff6fc91b08f2", + "start": { + "$date": "2021-11-02T15:05:09.000Z" + }, + "end": { + "$date": "2021-11-02T16:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24ea5641-53ec-4a1f-8a33-0ab67b2ba458", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-02T14:30:35.000Z" + }, + "end": { + "$date": "2021-11-02T14:52:07.000Z" + }, + "events": [ + { + "uuid": "cfd4d442-48ca-4852-8d87-b26ea355fc81", + "start": { + "$date": "2021-11-02T14:30:35.000Z" + }, + "end": { + "$date": "2021-11-02T14:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5522ae27-6577-4302-9e12-8cc276f559fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T14:41:19.000Z" + }, + "end": { + "$date": "2021-11-02T15:01:20.000Z" + }, + "events": [ + { + "uuid": "d9b3fc34-75f1-4617-a84c-15547363ba44", + "start": { + "$date": "2021-11-02T14:41:19.000Z" + }, + "end": { + "$date": "2021-11-02T15:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f2a9f5f-1ac3-4eaf-a742-d3d1a995815b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-02T14:56:58.000Z" + }, + "end": { + "$date": "2021-11-02T15:16:06.000Z" + }, + "events": [ + { + "uuid": "803a64c2-781e-4491-a9a5-22ccb98c8dff", + "start": { + "$date": "2021-11-02T14:56:58.000Z" + }, + "end": { + "$date": "2021-11-02T15:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "845a29d2-2fb7-426b-8cde-684c2caac0a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T15:11:00.000Z" + }, + "end": { + "$date": "2021-11-02T15:35:32.000Z" + }, + "events": [ + { + "uuid": "86b65ef3-775e-4dd7-839d-d04849af1628", + "start": { + "$date": "2021-11-02T15:11:00.000Z" + }, + "end": { + "$date": "2021-11-02T15:35:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a08bf6e-6c73-4448-9eab-8408e8204e48", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-02T15:18:56.000Z" + }, + "end": { + "$date": "2021-11-02T15:37:34.000Z" + }, + "events": [ + { + "uuid": "44578ba2-b1a1-47b7-bc86-6fdfb744863b", + "start": { + "$date": "2021-11-02T15:18:56.000Z" + }, + "end": { + "$date": "2021-11-02T15:37:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "16437906-3e1d-40f3-b919-23bd2f7155ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T15:58:49.000Z" + }, + "end": { + "$date": "2021-11-02T17:31:49.000Z" + }, + "events": [ + { + "uuid": "58e0e15a-2738-4ac9-952f-e57afcf27cfc", + "start": { + "$date": "2021-11-02T15:58:49.000Z" + }, + "end": { + "$date": "2021-11-02T17:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a6536fad-5989-4a5e-b26c-4d60846f5c4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T16:09:49.000Z" + }, + "end": { + "$date": "2021-11-02T17:12:21.000Z" + }, + "events": [ + { + "uuid": "40982b9b-7347-4933-b6c5-105d9d266d52", + "start": { + "$date": "2021-11-02T16:09:49.000Z" + }, + "end": { + "$date": "2021-11-02T17:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "015ada67-6da4-4867-a30b-724ca7c98c82", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T17:12:41.000Z" + }, + "end": { + "$date": "2021-11-02T17:37:05.000Z" + }, + "events": [ + { + "uuid": "897075fd-b9a3-4c0f-bd41-8f5eb82c24b1", + "start": { + "$date": "2021-11-02T17:12:41.000Z" + }, + "end": { + "$date": "2021-11-02T17:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "baa8b5aa-b2bc-43d0-b97a-8bca3fd6e6fb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-02T18:00:16.000Z" + }, + "end": { + "$date": "2021-11-02T18:38:10.000Z" + }, + "events": [ + { + "uuid": "23e81daf-953b-4080-aec5-1ac7171be746", + "start": { + "$date": "2021-11-02T18:00:16.000Z" + }, + "end": { + "$date": "2021-11-02T18:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5ad92b20-34c9-4aa6-9729-e26a204d8574", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-02T18:10:54.000Z" + }, + "end": { + "$date": "2021-11-02T18:54:55.000Z" + }, + "events": [ + { + "uuid": "053e3451-c7a4-43f2-9d16-a827744472a2", + "start": { + "$date": "2021-11-02T18:10:54.000Z" + }, + "end": { + "$date": "2021-11-02T18:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "00f2937b-1254-472a-9dac-502168656c12", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-02T19:07:31.000Z" + }, + "end": { + "$date": "2021-11-02T19:38:43.000Z" + }, + "events": [ + { + "uuid": "8e2baa42-fe71-4745-9e6e-f6121dbe781b", + "start": { + "$date": "2021-11-02T19:07:31.000Z" + }, + "end": { + "$date": "2021-11-02T19:38:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f7493eb0-d014-43d2-aede-013d99b3dcaa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T19:31:50.000Z" + }, + "end": { + "$date": "2021-11-02T20:52:29.000Z" + }, + "events": [ + { + "uuid": "16206709-5c85-44f2-a92c-df28309a5a5d", + "start": { + "$date": "2021-11-02T19:31:50.000Z" + }, + "end": { + "$date": "2021-11-02T20:52:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "c6608550-0889-4a7b-a90e-23f3de7dfd64", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T20:56:49.000Z" + }, + "end": { + "$date": "2021-11-02T20:59:35.000Z" + }, + "events": [ + { + "uuid": "c2f9e41f-2288-4887-a4a2-a89a3bcad12a", + "start": { + "$date": "2021-11-02T20:56:49.000Z" + }, + "end": { + "$date": "2021-11-02T20:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ced55151-b3d1-4b26-bca5-fd4508690b74", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T21:00:10.000Z" + }, + "end": { + "$date": "2021-11-02T21:22:23.000Z" + }, + "events": [ + { + "uuid": "9ec77900-a6ba-4ae5-a727-ec2525a69bf0", + "start": { + "$date": "2021-11-02T21:00:10.000Z" + }, + "end": { + "$date": "2021-11-02T21:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d7b9eef2-276c-4125-826f-5853b72d9570", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T21:24:33.000Z" + }, + "end": { + "$date": "2021-11-02T21:50:16.000Z" + }, + "events": [ + { + "uuid": "3ed0d75d-c6b7-48b7-80d2-7113d393eaa5", + "start": { + "$date": "2021-11-02T21:24:33.000Z" + }, + "end": { + "$date": "2021-11-02T21:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2e7bb4e2-7ac0-4fd1-a9f7-b667659a6663", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T21:50:32.000Z" + }, + "end": { + "$date": "2021-11-02T23:41:44.000Z" + }, + "events": [ + { + "uuid": "8ea1d1cd-b266-4930-8eb0-bf29de9c6d0a", + "start": { + "$date": "2021-11-02T21:50:32.000Z" + }, + "end": { + "$date": "2021-11-02T22:01:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77a8d808-9167-43f7-9d4a-b0c591802215", + "start": { + "$date": "2021-11-02T22:01:32.000Z" + }, + "end": { + "$date": "2021-11-02T22:06:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0084f869-c8b8-486b-bede-9be5cfb39c6d", + "start": { + "$date": "2021-11-02T22:06:32.000Z" + }, + "end": { + "$date": "2021-11-02T23:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3cf18046-1435-44fc-acb0-ddd9bfb83928", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-02T22:07:44.000Z" + }, + "end": { + "$date": "2021-11-02T22:35:08.000Z" + }, + "events": [ + { + "uuid": "d215c6eb-a044-4b38-a358-ccbd4224949c", + "start": { + "$date": "2021-11-02T22:07:44.000Z" + }, + "end": { + "$date": "2021-11-02T22:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "855d22f1-d58c-4fb5-8e9a-5571fb81ec3f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-02T23:10:56.000Z" + }, + "end": { + "$date": "2021-11-03T03:01:52.000Z" + }, + "events": [ + { + "uuid": "fd458fe3-6c17-46e8-abd8-238625b17106", + "start": { + "$date": "2021-11-02T23:10:56.000Z" + }, + "end": { + "$date": "2021-11-02T23:35:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cee690bf-6e21-477c-95f1-b1c188e9daa9", + "start": { + "$date": "2021-11-02T23:35:56.000Z" + }, + "end": { + "$date": "2021-11-02T23:46:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "86973d37-7486-414f-bf8e-00125ba3630b", + "start": { + "$date": "2021-11-02T23:46:56.000Z" + }, + "end": { + "$date": "2021-11-03T00:01:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d1cd06d-9c45-4ede-b73e-0827da1a16c4", + "start": { + "$date": "2021-11-03T00:01:56.000Z" + }, + "end": { + "$date": "2021-11-03T00:23:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a018275c-690d-463d-9390-9e1ace34cae1", + "start": { + "$date": "2021-11-03T00:23:56.000Z" + }, + "end": { + "$date": "2021-11-03T03:01:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "dc4e49b6-ff65-464c-8932-bd5b154a3af4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-02T23:46:34.000Z" + }, + "end": { + "$date": "2021-11-03T00:15:08.000Z" + }, + "events": [ + { + "uuid": "1a2be637-13c5-423d-9605-8d9d4da7d461", + "start": { + "$date": "2021-11-02T23:46:34.000Z" + }, + "end": { + "$date": "2021-11-03T00:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "b871ea70-2a5e-484f-983c-1c4b16ab6021", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T00:39:44.000Z" + }, + "end": { + "$date": "2021-11-03T01:19:11.000Z" + }, + "events": [ + { + "uuid": "d53ea5f7-7410-400d-b825-fe17e38ec15d", + "start": { + "$date": "2021-11-03T00:39:44.000Z" + }, + "end": { + "$date": "2021-11-03T01:19:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b10c623-a7ab-481c-af45-770b905117c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T01:39:18.000Z" + }, + "end": { + "$date": "2021-11-03T02:00:40.000Z" + }, + "events": [ + { + "uuid": "8ca673b9-4a12-42c5-b2ab-fa1f991f34a6", + "start": { + "$date": "2021-11-03T01:39:18.000Z" + }, + "end": { + "$date": "2021-11-03T02:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49f6ebb0-c5ef-4a9a-9eab-328acd7a8de2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T02:05:38.000Z" + }, + "end": { + "$date": "2021-11-03T02:20:44.000Z" + }, + "events": [ + { + "uuid": "838afe34-abe5-476d-83d1-5cbec89991ba", + "start": { + "$date": "2021-11-03T02:05:38.000Z" + }, + "end": { + "$date": "2021-11-03T02:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5291d11e-3e6e-4466-9d23-8c8c9fc1e539", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-03T02:05:17.000Z" + }, + "end": { + "$date": "2021-11-03T05:04:58.000Z" + }, + "events": [ + { + "uuid": "96a0144d-c6c4-43a2-af7c-113dbd6922c3", + "start": { + "$date": "2021-11-03T02:05:17.000Z" + }, + "end": { + "$date": "2021-11-03T05:04:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0b733515-1b12-45a8-9539-f5edea1eea12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-03T02:07:36.000Z" + }, + "end": { + "$date": "2021-11-03T04:41:48.000Z" + }, + "events": [ + { + "uuid": "70e22645-2b6a-4c2c-8c2b-eae3c839e7a4", + "start": { + "$date": "2021-11-03T02:07:36.000Z" + }, + "end": { + "$date": "2021-11-03T04:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "76e25bb9-ead3-4e18-9477-0dc1f79c6995", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-03T02:34:32.000Z" + }, + "end": { + "$date": "2021-11-03T04:02:34.000Z" + }, + "events": [ + { + "uuid": "23d768c9-fbd8-4051-80c7-c3b2819a49dc", + "start": { + "$date": "2021-11-03T02:34:32.000Z" + }, + "end": { + "$date": "2021-11-03T04:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a44f28b0-3713-4bed-ab15-c884fcd873cb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-03T02:57:02.000Z" + }, + "end": { + "$date": "2021-11-03T06:10:02.000Z" + }, + "events": [ + { + "uuid": "7904ce41-b243-4254-82ea-c005139134b2", + "start": { + "$date": "2021-11-03T02:57:02.000Z" + }, + "end": { + "$date": "2021-11-03T06:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ee3d5850-4896-4b54-9a00-4501df09ad09", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-03T03:06:29.000Z" + }, + "end": { + "$date": "2021-11-03T04:40:38.000Z" + }, + "events": [ + { + "uuid": "0154b0e4-0ce2-4ab4-89a6-1eedcf68db8a", + "start": { + "$date": "2021-11-03T03:06:29.000Z" + }, + "end": { + "$date": "2021-11-03T04:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "69724a8a-fe84-4fbb-8715-05d02060656a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T03:13:04.000Z" + }, + "end": { + "$date": "2021-11-03T04:02:45.000Z" + }, + "events": [ + { + "uuid": "9bb0c57f-5b8e-48bc-9212-184c70ddb476", + "start": { + "$date": "2021-11-03T03:13:04.000Z" + }, + "end": { + "$date": "2021-11-03T04:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8852baa0-ffd5-46b0-993f-2e1e56cff1d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T04:04:25.000Z" + }, + "end": { + "$date": "2021-11-03T04:40:37.000Z" + }, + "events": [ + { + "uuid": "fc62c189-2ec1-45fd-8e0f-439f4c18f21a", + "start": { + "$date": "2021-11-03T04:04:25.000Z" + }, + "end": { + "$date": "2021-11-03T04:40:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67b0c9db-e3d3-4291-a5ea-604f41de70b2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-03T04:55:10.000Z" + }, + "end": { + "$date": "2021-11-03T05:31:45.000Z" + }, + "events": [ + { + "uuid": "2b4b73b3-5101-4c46-a115-5a712af6ddc2", + "start": { + "$date": "2021-11-03T04:55:10.000Z" + }, + "end": { + "$date": "2021-11-03T05:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49bba2af-2799-4e31-bdaf-2a52f4100a35", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-03T05:37:39.000Z" + }, + "end": { + "$date": "2021-11-03T06:14:15.000Z" + }, + "events": [ + { + "uuid": "7094ae09-35ac-4bb3-b751-d6c3eb50f795", + "start": { + "$date": "2021-11-03T05:37:39.000Z" + }, + "end": { + "$date": "2021-11-03T06:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e04b664a-452c-4ebd-956a-9ae4ee7dfbae", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-03T05:35:21.000Z" + }, + "end": { + "$date": "2021-11-03T06:25:18.000Z" + }, + "events": [ + { + "uuid": "da0c6c80-d6c1-45ab-beb3-ebf691075b79", + "start": { + "$date": "2021-11-03T05:35:21.000Z" + }, + "end": { + "$date": "2021-11-03T06:25:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ad49f2cf-5e63-49de-b0e4-c129944b896e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-03T05:47:42.000Z" + }, + "end": { + "$date": "2021-11-03T08:09:58.000Z" + }, + "events": [ + { + "uuid": "ba0713a9-c3d5-47f5-8eaa-ff634c495c19", + "start": { + "$date": "2021-11-03T05:47:42.000Z" + }, + "end": { + "$date": "2021-11-03T08:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4be7b85-cd3c-4772-b96a-8dd264ef2dab", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T06:54:35.000Z" + }, + "end": { + "$date": "2021-11-03T07:08:48.000Z" + }, + "events": [ + { + "uuid": "2c2a97f4-f4df-45c1-980f-291734364db3", + "start": { + "$date": "2021-11-03T06:54:35.000Z" + }, + "end": { + "$date": "2021-11-03T07:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5471551-4e1e-4cbf-a0ae-ec61a7ffd2e7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T07:11:03.000Z" + }, + "end": { + "$date": "2021-11-03T07:30:56.000Z" + }, + "events": [ + { + "uuid": "ac8775be-2a21-40ec-85b2-f3e1788ea05a", + "start": { + "$date": "2021-11-03T07:11:03.000Z" + }, + "end": { + "$date": "2021-11-03T07:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2b7ef13-cf69-4a28-8082-8f2bb0dfc6fe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T07:34:11.000Z" + }, + "end": { + "$date": "2021-11-03T07:55:24.000Z" + }, + "events": [ + { + "uuid": "ddde02f7-2605-4e65-bd8c-9850a2b74a96", + "start": { + "$date": "2021-11-03T07:34:11.000Z" + }, + "end": { + "$date": "2021-11-03T07:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7fc1f64-b723-4da6-8584-7f51033e82a8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T07:59:04.000Z" + }, + "end": { + "$date": "2021-11-03T08:19:22.000Z" + }, + "events": [ + { + "uuid": "32f342c9-2271-4c9e-8ca1-c4113d266d9e", + "start": { + "$date": "2021-11-03T07:59:04.000Z" + }, + "end": { + "$date": "2021-11-03T08:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5607980d-bbf7-4120-b2f1-0b5e046692fc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T08:21:22.000Z" + }, + "end": { + "$date": "2021-11-03T08:42:15.000Z" + }, + "events": [ + { + "uuid": "1ca989f6-6362-456d-8933-f2d167c45458", + "start": { + "$date": "2021-11-03T08:21:22.000Z" + }, + "end": { + "$date": "2021-11-03T08:42:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ab59cd2-9188-4261-88b1-a13baf915297", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T08:44:45.000Z" + }, + "end": { + "$date": "2021-11-03T09:11:05.000Z" + }, + "events": [ + { + "uuid": "573edd59-2eb5-4e2f-96e8-2b3b5ffede5e", + "start": { + "$date": "2021-11-03T08:44:45.000Z" + }, + "end": { + "$date": "2021-11-03T09:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1e10596-a37a-4a1f-bf92-73837151a61b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T09:14:18.000Z" + }, + "end": { + "$date": "2021-11-03T09:41:07.000Z" + }, + "events": [ + { + "uuid": "96607b58-2720-4881-83d7-38b5104b6787", + "start": { + "$date": "2021-11-03T09:14:18.000Z" + }, + "end": { + "$date": "2021-11-03T09:41:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9076b85f-a2c5-41a5-9ca2-867e343f3409", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T09:43:32.000Z" + }, + "end": { + "$date": "2021-11-03T09:56:14.000Z" + }, + "events": [ + { + "uuid": "f6a4c2ca-774d-49a0-889c-f76061111c48", + "start": { + "$date": "2021-11-03T09:43:32.000Z" + }, + "end": { + "$date": "2021-11-03T09:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98334383-753f-4b41-9603-5b36f2168e87", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T09:58:00.000Z" + }, + "end": { + "$date": "2021-11-03T10:06:25.000Z" + }, + "events": [ + { + "uuid": "533506ea-c026-4611-93bc-3603f062e0cc", + "start": { + "$date": "2021-11-03T09:58:00.000Z" + }, + "end": { + "$date": "2021-11-03T10:06:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e932957-cd22-4381-b937-cbc11167b294", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T14:36:59.000Z" + }, + "end": { + "$date": "2021-11-03T15:09:20.000Z" + }, + "events": [ + { + "uuid": "ffb4d069-b7d2-4cfd-a6e2-ea4c9113c9af", + "start": { + "$date": "2021-11-03T14:36:59.000Z" + }, + "end": { + "$date": "2021-11-03T15:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c00e0a34-ab4f-4d2d-9dd8-8e9af5e679e6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T15:12:43.000Z" + }, + "end": { + "$date": "2021-11-03T15:33:16.000Z" + }, + "events": [ + { + "uuid": "0bdf5411-66f3-46df-9048-9f9b570ec06b", + "start": { + "$date": "2021-11-03T15:12:43.000Z" + }, + "end": { + "$date": "2021-11-03T15:33:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d083983-c26a-44a4-b7e6-fc7d9f6b81c2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T15:35:41.000Z" + }, + "end": { + "$date": "2021-11-03T15:54:49.000Z" + }, + "events": [ + { + "uuid": "86df2daf-3dac-4fd0-8770-9a9d4bb79c59", + "start": { + "$date": "2021-11-03T15:35:41.000Z" + }, + "end": { + "$date": "2021-11-03T15:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "371ac115-1085-48f2-952d-593d778f9541", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T15:57:24.000Z" + }, + "end": { + "$date": "2021-11-03T16:19:57.000Z" + }, + "events": [ + { + "uuid": "f924e76d-2e3f-4baf-8e5e-2b819dc59209", + "start": { + "$date": "2021-11-03T15:57:24.000Z" + }, + "end": { + "$date": "2021-11-03T16:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89c22993-2306-4ca3-9856-40289f179ea3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T16:22:27.000Z" + }, + "end": { + "$date": "2021-11-03T16:42:40.000Z" + }, + "events": [ + { + "uuid": "d0697e7e-cbc6-4cf2-97f9-406e85447b46", + "start": { + "$date": "2021-11-03T16:22:27.000Z" + }, + "end": { + "$date": "2021-11-03T16:42:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", + "uuid": "7d05414d-1f9a-452a-8d22-91b00614b376", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T16:31:21.000Z" + }, + "end": { + "$date": "2021-11-03T16:38:32.000Z" + }, + "events": [ + { + "uuid": "00143ad3-89f9-4a5f-acd2-ab0826728554", + "start": { + "$date": "2021-11-03T16:31:21.000Z" + }, + "end": { + "$date": "2021-11-03T16:38:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0b348d3a-a7f0-4ec1-9bcf-22d6be18c1ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T16:39:17.000Z" + }, + "end": { + "$date": "2021-11-03T16:40:57.000Z" + }, + "events": [ + { + "uuid": "f66d3d96-0ccf-4733-a376-ba02dab189e2", + "start": { + "$date": "2021-11-03T16:39:17.000Z" + }, + "end": { + "$date": "2021-11-03T16:40:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9ad8b47b-76f1-4c34-8ca6-5383a0b27234", + "uuid": "b34c3362-68e5-4bf4-b2c0-9d9b7c50bf32", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T16:41:08.000Z" + }, + "end": { + "$date": "2021-11-03T16:45:08.000Z" + }, + "events": [ + { + "uuid": "061b8c75-b481-4bb9-9576-fc48022c257f", + "start": { + "$date": "2021-11-03T16:41:08.000Z" + }, + "end": { + "$date": "2021-11-03T16:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "34acfad4-d371-4282-9cef-39f770e0c6f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T16:55:49.000Z" + }, + "end": { + "$date": "2021-11-03T17:15:26.000Z" + }, + "events": [ + { + "uuid": "a9f7de88-4a9e-4acb-b4b2-aaafe52ac172", + "start": { + "$date": "2021-11-03T16:55:49.000Z" + }, + "end": { + "$date": "2021-11-03T17:15:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", + "uuid": "a30b691b-10e8-4984-9959-8055810df5e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T17:19:02.000Z" + }, + "end": { + "$date": "2021-11-03T17:30:02.000Z" + }, + "events": [ + { + "uuid": "ecd836fe-bfea-4e3a-b5d8-fd80729117e3", + "start": { + "$date": "2021-11-03T17:19:02.000Z" + }, + "end": { + "$date": "2021-11-03T17:30:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", + "uuid": "050c6082-a7f5-4573-8db3-c309c652274d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T17:30:22.000Z" + }, + "end": { + "$date": "2021-11-03T17:42:33.000Z" + }, + "events": [ + { + "uuid": "a02ea7a1-24e6-4539-9df3-e469a6b5d650", + "start": { + "$date": "2021-11-03T17:30:22.000Z" + }, + "end": { + "$date": "2021-11-03T17:42:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b42ba1e-ec58-44a7-980f-83d7aeb14b45", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T17:52:44.000Z" + }, + "end": { + "$date": "2021-11-03T18:17:20.000Z" + }, + "events": [ + { + "uuid": "8509b141-ce3f-4ae8-a35b-f7bc3d7075f0", + "start": { + "$date": "2021-11-03T17:52:44.000Z" + }, + "end": { + "$date": "2021-11-03T18:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9b4b864f-f7ec-46be-9390-440c79f08fab", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-03T18:52:08.000Z" + }, + "end": { + "$date": "2021-11-03T22:41:26.000Z" + }, + "events": [ + { + "uuid": "04e04cbc-f0ae-458b-9cad-fba7144417bf", + "start": { + "$date": "2021-11-03T18:52:08.000Z" + }, + "end": { + "$date": "2021-11-03T22:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "b91586a9-517f-4474-9ff4-e88370bb99f2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-03T20:12:12.000Z" + }, + "end": { + "$date": "2021-11-03T21:44:22.000Z" + }, + "events": [ + { + "uuid": "33a7f6ae-40c1-4996-9372-5b43f14e012e", + "start": { + "$date": "2021-11-03T20:12:12.000Z" + }, + "end": { + "$date": "2021-11-03T20:59:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4713f7b0-8876-4206-9490-bb7fb0d4a51b", + "start": { + "$date": "2021-11-03T20:59:12.000Z" + }, + "end": { + "$date": "2021-11-03T21:07:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e97785d6-d0dc-4374-9c72-a7da7bd051f8", + "start": { + "$date": "2021-11-03T21:07:12.000Z" + }, + "end": { + "$date": "2021-11-03T21:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "baa6f026-d128-47d0-9855-b93d68c0d9e8", + "uuid": "d06e3535-f504-4f37-9f52-0aed8f12f51e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-03T21:03:27.000Z" + }, + "end": { + "$date": "2021-11-03T21:37:55.000Z" + }, + "events": [ + { + "uuid": "04a83e20-2516-4584-92d8-7790bb0cfea3", + "start": { + "$date": "2021-11-03T21:03:27.000Z" + }, + "end": { + "$date": "2021-11-03T21:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f5457e74-fe4a-4726-b4f4-a8de55eb9d08", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-03T21:45:53.000Z" + }, + "end": { + "$date": "2021-11-04T00:04:31.000Z" + }, + "events": [ + { + "uuid": "046e92a5-be42-4bbe-a9fc-5794b414840e", + "start": { + "$date": "2021-11-03T21:45:53.000Z" + }, + "end": { + "$date": "2021-11-03T23:25:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "390326fb-6b51-465e-9a87-6f276069a688", + "start": { + "$date": "2021-11-03T23:25:53.000Z" + }, + "end": { + "$date": "2021-11-03T23:32:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8db04af3-95d0-4288-b54d-5e6f7e68082d", + "start": { + "$date": "2021-11-03T23:32:53.000Z" + }, + "end": { + "$date": "2021-11-04T00:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "3bf96fab-ae0a-4e31-a577-337e64557da6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-03T21:46:59.000Z" + }, + "end": { + "$date": "2021-11-03T22:46:16.000Z" + }, + "events": [ + { + "uuid": "e1706c30-804c-49a8-a6dc-0150c0bdd990", + "start": { + "$date": "2021-11-03T21:46:59.000Z" + }, + "end": { + "$date": "2021-11-03T22:46:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a0b9aa20-f611-4b1a-a4aa-21497b288eba", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-04T00:28:30.000Z" + }, + "end": { + "$date": "2021-11-04T03:57:43.000Z" + }, + "events": [ + { + "uuid": "28954a74-590a-4eaa-aac2-89a06fd0f420", + "start": { + "$date": "2021-11-04T00:28:30.000Z" + }, + "end": { + "$date": "2021-11-04T03:57:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", + "uuid": "9b7c320e-c49b-4cc8-a16c-c4d06ef9edbe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-04T02:11:02.000Z" + }, + "end": { + "$date": "2021-11-04T03:46:29.000Z" + }, + "events": [ + { + "uuid": "5624a1c3-94d9-43d0-9eb7-bc33f70f17e5", + "start": { + "$date": "2021-11-04T02:11:02.000Z" + }, + "end": { + "$date": "2021-11-04T03:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36c025e2-623c-4200-9878-65b3f395961e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-04T02:25:49.000Z" + }, + "end": { + "$date": "2021-11-04T02:49:32.000Z" + }, + "events": [ + { + "uuid": "f41d2251-0a1f-44f2-83fa-7d53ade038a0", + "start": { + "$date": "2021-11-04T02:25:49.000Z" + }, + "end": { + "$date": "2021-11-04T02:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "72f556bc-20af-4d0f-9f22-a6229dba0acf", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-04T02:50:13.000Z" + }, + "end": { + "$date": "2021-11-04T05:02:16.000Z" + }, + "events": [ + { + "uuid": "7c07336b-25dc-4573-a577-7398ed1b0a24", + "start": { + "$date": "2021-11-04T02:50:13.000Z" + }, + "end": { + "$date": "2021-11-04T05:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "275ee24c-36cd-4c4c-887b-906ec1813301", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-04T02:50:26.000Z" + }, + "end": { + "$date": "2021-11-04T05:02:18.000Z" + }, + "events": [ + { + "uuid": "76b19c97-638a-4fca-8b0d-4a243025b6d9", + "start": { + "$date": "2021-11-04T02:50:26.000Z" + }, + "end": { + "$date": "2021-11-04T05:02:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7c7f384c-2ac9-4019-b59a-1788679c71e3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-04T03:06:43.000Z" + }, + "end": { + "$date": "2021-11-04T04:50:37.000Z" + }, + "events": [ + { + "uuid": "05894d5c-ae34-4d44-b010-53a9ac797616", + "start": { + "$date": "2021-11-04T03:06:43.000Z" + }, + "end": { + "$date": "2021-11-04T04:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99f43ee0-51ce-46a7-8e0a-346a62725fa8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-04T03:55:03.000Z" + }, + "end": { + "$date": "2021-11-04T04:29:16.000Z" + }, + "events": [ + { + "uuid": "8813f283-7a4f-470a-af01-cae181d8a97f", + "start": { + "$date": "2021-11-04T03:55:03.000Z" + }, + "end": { + "$date": "2021-11-04T04:29:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9149e65-9047-4959-9962-0ea70e65c86a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-04T04:46:44.000Z" + }, + "end": { + "$date": "2021-11-04T05:21:06.000Z" + }, + "events": [ + { + "uuid": "0dbacd16-c2fe-420e-a08a-508b2fd76822", + "start": { + "$date": "2021-11-04T04:46:44.000Z" + }, + "end": { + "$date": "2021-11-04T05:21:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65124238-2a92-420a-8568-a05fcad1d688", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T11:05:42.000Z" + }, + "end": { + "$date": "2021-11-04T11:28:00.000Z" + }, + "events": [ + { + "uuid": "3a014b46-348a-4959-a204-e99586ad0bd8", + "start": { + "$date": "2021-11-04T11:05:42.000Z" + }, + "end": { + "$date": "2021-11-04T11:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "897a5771-30af-48c5-8557-80331c2bee3d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T11:30:45.000Z" + }, + "end": { + "$date": "2021-11-04T11:49:43.000Z" + }, + "events": [ + { + "uuid": "75976b16-4956-496e-b581-3887d171f155", + "start": { + "$date": "2021-11-04T11:30:45.000Z" + }, + "end": { + "$date": "2021-11-04T11:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec16e40f-8f5b-46fc-9f41-3d3deb49d928", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T11:52:37.000Z" + }, + "end": { + "$date": "2021-11-04T12:11:20.000Z" + }, + "events": [ + { + "uuid": "bf64622a-ac06-4d58-bad8-61e44cd28ee3", + "start": { + "$date": "2021-11-04T11:52:37.000Z" + }, + "end": { + "$date": "2021-11-04T12:11:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6248a101-8d43-427c-b143-cd2f709e7fca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T12:15:04.000Z" + }, + "end": { + "$date": "2021-11-04T12:33:07.000Z" + }, + "events": [ + { + "uuid": "6811ac2d-164d-4f63-867e-1853afd89383", + "start": { + "$date": "2021-11-04T12:15:04.000Z" + }, + "end": { + "$date": "2021-11-04T12:33:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "15ecd917-7f24-4b30-9333-23b6a1147caf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-04T12:30:43.000Z" + }, + "end": { + "$date": "2021-11-04T13:38:40.000Z" + }, + "events": [ + { + "uuid": "4f19ff7c-d67f-4387-8270-c82af7ad3638", + "start": { + "$date": "2021-11-04T12:30:43.000Z" + }, + "end": { + "$date": "2021-11-04T13:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8e106ed-6125-41bf-9f17-b283d780cba0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T12:36:26.000Z" + }, + "end": { + "$date": "2021-11-04T13:02:20.000Z" + }, + "events": [ + { + "uuid": "8fab2d83-577d-4913-a076-536531281169", + "start": { + "$date": "2021-11-04T12:36:26.000Z" + }, + "end": { + "$date": "2021-11-04T13:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a97df97-148b-4399-9a32-efa6be041e76", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T13:05:49.000Z" + }, + "end": { + "$date": "2021-11-04T13:29:13.000Z" + }, + "events": [ + { + "uuid": "10d32aed-268b-4a07-91f8-f9311e6e8716", + "start": { + "$date": "2021-11-04T13:05:49.000Z" + }, + "end": { + "$date": "2021-11-04T13:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d891e3bd-0628-4137-b8b7-9a2eb5fa4861", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T13:31:37.000Z" + }, + "end": { + "$date": "2021-11-04T13:50:26.000Z" + }, + "events": [ + { + "uuid": "8ca89b51-6cc1-45f6-bbcd-1b0b8c2f3f4b", + "start": { + "$date": "2021-11-04T13:31:37.000Z" + }, + "end": { + "$date": "2021-11-04T13:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60d91d2b-fc4e-4c2a-9605-5b56d6e11c14", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T13:52:55.000Z" + }, + "end": { + "$date": "2021-11-04T14:17:45.000Z" + }, + "events": [ + { + "uuid": "525e137e-be87-48aa-8e58-3ebbecbc41a0", + "start": { + "$date": "2021-11-04T13:52:55.000Z" + }, + "end": { + "$date": "2021-11-04T14:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14802a3a-2a4f-4ad8-9bb8-c403c257853c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T14:19:43.000Z" + }, + "end": { + "$date": "2021-11-04T14:36:41.000Z" + }, + "events": [ + { + "uuid": "a971a5cb-a9ac-45ca-8ede-885d2bf6a1a1", + "start": { + "$date": "2021-11-04T14:19:43.000Z" + }, + "end": { + "$date": "2021-11-04T14:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "8b800966-3025-4873-95b4-83d3fe87910b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-04T14:19:17.000Z" + }, + "end": { + "$date": "2021-11-04T15:10:24.000Z" + }, + "events": [ + { + "uuid": "323b5393-7996-417f-8706-ac2339d9214c", + "start": { + "$date": "2021-11-04T14:19:17.000Z" + }, + "end": { + "$date": "2021-11-04T15:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba23065b-68fa-47de-89f9-51baf9137aa9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T14:39:05.000Z" + }, + "end": { + "$date": "2021-11-04T14:58:58.000Z" + }, + "events": [ + { + "uuid": "122f900a-d792-40ae-b7fa-b1a252ef31f8", + "start": { + "$date": "2021-11-04T14:39:05.000Z" + }, + "end": { + "$date": "2021-11-04T14:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03e64241-4439-4839-ad5b-e04724ef3588", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-04T15:01:33.000Z" + }, + "end": { + "$date": "2021-11-04T15:22:16.000Z" + }, + "events": [ + { + "uuid": "48d7032e-e21d-4ff2-b97d-82fe901c8add", + "start": { + "$date": "2021-11-04T15:01:33.000Z" + }, + "end": { + "$date": "2021-11-04T15:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3d39592d-d12e-4858-acd8-22b59f75884e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-04T15:32:52.000Z" + }, + "end": { + "$date": "2021-11-04T15:36:52.000Z" + }, + "events": [ + { + "uuid": "f6b6a82a-b892-43c4-bcd2-503ee00e950f", + "start": { + "$date": "2021-11-04T15:32:52.000Z" + }, + "end": { + "$date": "2021-11-04T15:36:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0e737839-35b9-49c3-b350-7349fda96117", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-04T17:55:16.000Z" + }, + "end": { + "$date": "2021-11-04T18:47:43.000Z" + }, + "events": [ + { + "uuid": "faaf2e76-e2f5-49a5-9d8e-ab7ba1aa75b7", + "start": { + "$date": "2021-11-04T17:55:16.000Z" + }, + "end": { + "$date": "2021-11-04T18:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "42733d61-da3e-40ce-b930-e58039632763", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-04T18:26:31.000Z" + }, + "end": { + "$date": "2021-11-04T19:10:41.000Z" + }, + "events": [ + { + "uuid": "ef1d98a3-1155-42bd-bb09-a682e2616b35", + "start": { + "$date": "2021-11-04T18:26:31.000Z" + }, + "end": { + "$date": "2021-11-04T19:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "ef929b82-20bd-43a2-a556-dd11b68ec821", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-04T19:16:29.000Z" + }, + "end": { + "$date": "2021-11-04T19:19:38.000Z" + }, + "events": [ + { + "uuid": "a192db22-8bd7-40f3-882b-c0c39d72bfa7", + "start": { + "$date": "2021-11-04T19:16:29.000Z" + }, + "end": { + "$date": "2021-11-04T19:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "7852d047-1a3f-4bb9-a6f8-ae4094fb5bda", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-04T19:41:14.000Z" + }, + "end": { + "$date": "2021-11-04T20:12:46.000Z" + }, + "events": [ + { + "uuid": "3fd43c5f-9d1f-4b1e-8b0a-d654261db07e", + "start": { + "$date": "2021-11-04T19:41:14.000Z" + }, + "end": { + "$date": "2021-11-04T20:12:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "349b8af3-f7ed-4611-b770-2462d6d7b85c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-04T23:01:09.000Z" + }, + "end": { + "$date": "2021-11-05T00:01:59.000Z" + }, + "events": [ + { + "uuid": "1dfb8faa-834e-45e5-aa25-301f9a03ef0c", + "start": { + "$date": "2021-11-04T23:01:09.000Z" + }, + "end": { + "$date": "2021-11-05T00:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d890cc58-b706-4304-be79-67b4b4defdf3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-04T23:02:35.000Z" + }, + "end": { + "$date": "2021-11-05T00:52:41.000Z" + }, + "events": [ + { + "uuid": "3b92114a-9be3-4bbb-a9c5-ca05d4b9f2d3", + "start": { + "$date": "2021-11-04T23:02:35.000Z" + }, + "end": { + "$date": "2021-11-05T00:52:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "20660c27-1e1d-4990-ae7d-a35c7930f8d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-04T23:38:27.000Z" + }, + "end": { + "$date": "2021-11-05T03:43:27.000Z" + }, + "events": [ + { + "uuid": "eccaf4a2-2d52-4e09-9517-6425f72a6d4f", + "start": { + "$date": "2021-11-04T23:38:27.000Z" + }, + "end": { + "$date": "2021-11-05T01:15:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ededa113-634d-4c0a-b4c0-ddb3d3a2d7c7", + "start": { + "$date": "2021-11-05T01:15:27.000Z" + }, + "end": { + "$date": "2021-11-05T01:30:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c022c00c-8d99-44d1-a0fd-fe7e53dbf5b4", + "start": { + "$date": "2021-11-05T01:30:27.000Z" + }, + "end": { + "$date": "2021-11-05T03:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "685a91ad-ee3c-4b7f-ad71-89e97a44cc6d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-05T00:54:05.000Z" + }, + "end": { + "$date": "2021-11-05T03:44:11.000Z" + }, + "events": [ + { + "uuid": "db5c8c58-9091-4194-8d8c-208c6dff42d5", + "start": { + "$date": "2021-11-05T00:54:05.000Z" + }, + "end": { + "$date": "2021-11-05T03:44:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "09e310a5-e999-40bb-86bf-ed8491abe7a0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-05T01:49:13.000Z" + }, + "end": { + "$date": "2021-11-05T01:57:14.000Z" + }, + "events": [ + { + "uuid": "c95a1ce9-381e-4204-851f-d106c6754ec8", + "start": { + "$date": "2021-11-05T01:49:13.000Z" + }, + "end": { + "$date": "2021-11-05T01:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "823658c9-8c12-4f46-b437-56f761d91440", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-05T01:57:25.000Z" + }, + "end": { + "$date": "2021-11-05T06:17:47.000Z" + }, + "events": [ + { + "uuid": "38919ca0-8196-4094-8b05-6c35a2564928", + "start": { + "$date": "2021-11-05T01:57:25.000Z" + }, + "end": { + "$date": "2021-11-05T06:17:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0ad96894-4f0b-4c44-93b6-7c9d10705873", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-05T06:21:17.000Z" + }, + "end": { + "$date": "2021-11-05T06:28:22.000Z" + }, + "events": [ + { + "uuid": "e8b90645-0a0e-40d7-bb27-e0c64d8ca290", + "start": { + "$date": "2021-11-05T06:21:17.000Z" + }, + "end": { + "$date": "2021-11-05T06:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "76dd35e7-4cd8-4a93-8a07-511f0e015e90", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-05T02:46:33.000Z" + }, + "end": { + "$date": "2021-11-05T03:39:10.000Z" + }, + "events": [ + { + "uuid": "1e360d58-94f2-4b84-9b03-11680c82f81d", + "start": { + "$date": "2021-11-05T02:46:33.000Z" + }, + "end": { + "$date": "2021-11-05T03:39:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e110ee1d-1087-45a4-a964-6f4c7f274849", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-05T03:30:45.000Z" + }, + "end": { + "$date": "2021-11-05T06:25:46.000Z" + }, + "events": [ + { + "uuid": "408a3833-187d-494b-8e39-7e6a7cf93edf", + "start": { + "$date": "2021-11-05T03:30:45.000Z" + }, + "end": { + "$date": "2021-11-05T06:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "0bb9a3e0-7221-445a-a807-3e88e2d4bcc5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-05T03:40:41.000Z" + }, + "end": { + "$date": "2021-11-05T06:06:47.000Z" + }, + "events": [ + { + "uuid": "d9ac0857-a821-4f7d-be8d-a40e90938cd5", + "start": { + "$date": "2021-11-05T03:40:41.000Z" + }, + "end": { + "$date": "2021-11-05T06:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8944b881-ae39-4a3c-ae1c-4d35d79be67c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-05T03:42:17.000Z" + }, + "end": { + "$date": "2021-11-05T04:37:48.000Z" + }, + "events": [ + { + "uuid": "22280301-db91-48da-8136-5a6a84f4d086", + "start": { + "$date": "2021-11-05T03:42:17.000Z" + }, + "end": { + "$date": "2021-11-05T04:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5fdacf2a-6cd6-410f-866e-8f1ff43af6d8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-05T03:42:45.000Z" + }, + "end": { + "$date": "2021-11-05T05:20:14.000Z" + }, + "events": [ + { + "uuid": "b68b27d5-4fd3-4d61-bed1-23e850b530c0", + "start": { + "$date": "2021-11-05T03:42:45.000Z" + }, + "end": { + "$date": "2021-11-05T05:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "244bc802-468e-44b8-ad45-09e3e3e27243", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-05T04:06:41.000Z" + }, + "end": { + "$date": "2021-11-05T04:38:13.000Z" + }, + "events": [ + { + "uuid": "5cb4edb0-c555-4d5c-8496-35790c0250c1", + "start": { + "$date": "2021-11-05T04:06:41.000Z" + }, + "end": { + "$date": "2021-11-05T04:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9734276d-0452-438b-b863-b0f54a1e898e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-05T04:44:59.000Z" + }, + "end": { + "$date": "2021-11-05T05:15:15.000Z" + }, + "events": [ + { + "uuid": "7d565bfb-c094-49b1-9a41-a3b5ba12e1cc", + "start": { + "$date": "2021-11-05T04:44:59.000Z" + }, + "end": { + "$date": "2021-11-05T05:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "939c08c4-a3f7-4d96-b619-3e5bafe7e928", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-05T05:02:14.000Z" + }, + "end": { + "$date": "2021-11-05T06:17:40.000Z" + }, + "events": [ + { + "uuid": "781a0d98-620d-42e3-a00e-783dd3f9ae7a", + "start": { + "$date": "2021-11-05T05:02:14.000Z" + }, + "end": { + "$date": "2021-11-05T06:17:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8746eefc-fa41-4379-a120-7c7d8a503c40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-05T05:30:33.000Z" + }, + "end": { + "$date": "2021-11-05T06:03:04.000Z" + }, + "events": [ + { + "uuid": "16d70a5d-508b-4929-930a-02b2e6d68725", + "start": { + "$date": "2021-11-05T05:30:33.000Z" + }, + "end": { + "$date": "2021-11-05T06:03:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c970c1a-d97e-4a1a-b058-50457d7a441b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-05T05:31:20.000Z" + }, + "end": { + "$date": "2021-11-05T06:03:02.000Z" + }, + "events": [ + { + "uuid": "3e666b4d-3bf2-4718-ad85-bf5b3a82cd52", + "start": { + "$date": "2021-11-05T05:31:20.000Z" + }, + "end": { + "$date": "2021-11-05T06:03:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "072fe84f-4e87-4ce2-906f-fe0bd57b86de", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-05T06:05:11.000Z" + }, + "end": { + "$date": "2021-11-05T06:23:57.000Z" + }, + "events": [ + { + "uuid": "7f83736f-cbf7-441c-a436-b83000b1e110", + "start": { + "$date": "2021-11-05T06:05:11.000Z" + }, + "end": { + "$date": "2021-11-05T06:23:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50ea5ef3-858d-4c59-994d-d557cfc74ded", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-05T06:05:20.000Z" + }, + "end": { + "$date": "2021-11-05T06:24:06.000Z" + }, + "events": [ + { + "uuid": "20b03aac-fafa-4d97-b016-723246d43d4c", + "start": { + "$date": "2021-11-05T06:05:20.000Z" + }, + "end": { + "$date": "2021-11-05T06:24:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "007b2360-7661-459d-95c3-0ad511a82ba1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-05T08:23:33.000Z" + }, + "end": { + "$date": "2021-11-05T09:51:40.000Z" + }, + "events": [ + { + "uuid": "0cee8c0f-494d-41ea-8245-10d6f13cb599", + "start": { + "$date": "2021-11-05T08:23:33.000Z" + }, + "end": { + "$date": "2021-11-05T09:51:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "449f0d7e-4aba-4d81-8c45-2afed3948594", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-05T08:53:53.000Z" + }, + "end": { + "$date": "2021-11-05T20:57:19.000Z" + }, + "events": [ + { + "uuid": "dd65d021-0fa9-4f21-a678-b82d678c5bdc", + "start": { + "$date": "2021-11-05T08:53:53.000Z" + }, + "end": { + "$date": "2021-11-05T20:57:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eefbaafa-89da-45ed-a7cd-286a66ad9b4b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-05T15:52:50.000Z" + }, + "end": { + "$date": "2021-11-05T18:18:09.000Z" + }, + "events": [ + { + "uuid": "767163bd-0d75-4824-a03a-6bb67ee788b5", + "start": { + "$date": "2021-11-05T15:52:50.000Z" + }, + "end": { + "$date": "2021-11-05T18:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "8657ddab-02b4-4514-a7ac-d536bb8ee00f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-05T18:11:10.000Z" + }, + "end": { + "$date": "2021-11-05T18:59:53.000Z" + }, + "events": [ + { + "uuid": "8e89aaa9-b132-4f37-a1f4-fd01260ae9fd", + "start": { + "$date": "2021-11-05T18:11:10.000Z" + }, + "end": { + "$date": "2021-11-05T18:59:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "76d34a84-df81-4755-a917-16e715219fb5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-05T20:46:34.000Z" + }, + "end": { + "$date": "2021-11-06T01:44:26.000Z" + }, + "events": [ + { + "uuid": "7294f65f-59bb-459c-b568-06438e90bfc8", + "start": { + "$date": "2021-11-05T20:46:34.000Z" + }, + "end": { + "$date": "2021-11-06T01:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7d164d43-ae09-4e09-b4b3-b129ec648752", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-05T21:48:12.000Z" + }, + "end": { + "$date": "2021-11-05T23:57:50.000Z" + }, + "events": [ + { + "uuid": "69e6efb0-a9ae-4cd4-99cf-0d0e3baae3af", + "start": { + "$date": "2021-11-05T21:48:12.000Z" + }, + "end": { + "$date": "2021-11-05T23:57:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e9dcd953-10c3-4822-bea3-86df7162c86e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-05T22:47:19.000Z" + }, + "end": { + "$date": "2021-11-06T01:51:50.000Z" + }, + "events": [ + { + "uuid": "7eb34c0a-5b5c-4bbb-a3e2-f5364bfdc56f", + "start": { + "$date": "2021-11-05T22:47:19.000Z" + }, + "end": { + "$date": "2021-11-06T01:51:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9cce9fc1-99af-4195-8ddf-456f9d8758c2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-06T00:45:44.000Z" + }, + "end": { + "$date": "2021-11-06T01:37:07.000Z" + }, + "events": [ + { + "uuid": "c23668d0-0c7e-468e-b6b7-138f5a437182", + "start": { + "$date": "2021-11-06T00:45:44.000Z" + }, + "end": { + "$date": "2021-11-06T01:37:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "49eb2637-47d9-40e9-b6b7-e2d29bd0a018", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T01:21:53.000Z" + }, + "end": { + "$date": "2021-11-06T02:45:48.000Z" + }, + "events": [ + { + "uuid": "b90278c3-2f24-4f0a-b3ee-b87c1c19154b", + "start": { + "$date": "2021-11-06T01:21:53.000Z" + }, + "end": { + "$date": "2021-11-06T02:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8b3bed74-3172-4716-98c1-fb39fa0bf368", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T01:22:35.000Z" + }, + "end": { + "$date": "2021-11-06T02:43:44.000Z" + }, + "events": [ + { + "uuid": "5ec9cf48-d871-494c-af70-7c34626f4670", + "start": { + "$date": "2021-11-06T01:22:35.000Z" + }, + "end": { + "$date": "2021-11-06T02:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "52b46525-a9de-4707-b78f-188e4fa1c13f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-06T01:41:58.000Z" + }, + "end": { + "$date": "2021-11-06T03:01:56.000Z" + }, + "events": [ + { + "uuid": "ad08e5bc-dd74-4246-b0f5-73bc4715ed7b", + "start": { + "$date": "2021-11-06T01:41:58.000Z" + }, + "end": { + "$date": "2021-11-06T03:01:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "565daac9-1bac-4fc7-9556-3fab08395871", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T02:01:12.000Z" + }, + "end": { + "$date": "2021-11-06T02:23:45.000Z" + }, + "events": [ + { + "uuid": "39dc5945-b586-452f-b6da-7abc8780f076", + "start": { + "$date": "2021-11-06T02:01:12.000Z" + }, + "end": { + "$date": "2021-11-06T02:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "430e0bc6-ae9d-4dde-9f73-7b06489a3bcd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T02:54:44.000Z" + }, + "end": { + "$date": "2021-11-06T03:31:10.000Z" + }, + "events": [ + { + "uuid": "024d5ccc-9dcb-4dd9-87d1-9611a1240307", + "start": { + "$date": "2021-11-06T02:54:44.000Z" + }, + "end": { + "$date": "2021-11-06T03:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a29ead1a-5c9d-4ae2-83a2-ccac1828f9ea", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T04:06:40.000Z" + }, + "end": { + "$date": "2021-11-06T05:15:15.000Z" + }, + "events": [ + { + "uuid": "36ca442b-fdc7-4c7b-b608-6b38295fe655", + "start": { + "$date": "2021-11-06T04:06:40.000Z" + }, + "end": { + "$date": "2021-11-06T05:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ed28ea3f-5861-40ad-9771-2fde24ef30f4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-06T04:09:57.000Z" + }, + "end": { + "$date": "2021-11-06T06:01:01.000Z" + }, + "events": [ + { + "uuid": "c1a8dd1e-db24-447a-97ce-bf6dda59c17e", + "start": { + "$date": "2021-11-06T04:09:57.000Z" + }, + "end": { + "$date": "2021-11-06T06:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2794aa61-924d-494f-9306-1e0578c3b12a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-06T05:15:26.000Z" + }, + "end": { + "$date": "2021-11-06T06:00:50.000Z" + }, + "events": [ + { + "uuid": "63bbcff6-2e7d-41b0-b3d5-cb5a301da8f7", + "start": { + "$date": "2021-11-06T05:15:26.000Z" + }, + "end": { + "$date": "2021-11-06T06:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2cb07770-9d92-4bf8-b782-eb645229f2ff", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T05:15:35.000Z" + }, + "end": { + "$date": "2021-11-06T06:02:28.000Z" + }, + "events": [ + { + "uuid": "f9590dc1-4259-4de0-bb3e-8562e9939620", + "start": { + "$date": "2021-11-06T05:15:35.000Z" + }, + "end": { + "$date": "2021-11-06T06:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b2cc9814-8d6a-4d00-bf43-188fd7f7e662", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-06T05:17:56.000Z" + }, + "end": { + "$date": "2021-11-06T06:00:47.000Z" + }, + "events": [ + { + "uuid": "3603168f-80a3-4840-888f-afd0ab6dd854", + "start": { + "$date": "2021-11-06T05:17:56.000Z" + }, + "end": { + "$date": "2021-11-06T06:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47bbb0dd-06f3-4a53-b3e1-7eb44a61e187", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-06T06:18:14.000Z" + }, + "end": { + "$date": "2021-11-06T06:51:42.000Z" + }, + "events": [ + { + "uuid": "faceeda9-335c-49ff-874a-4a2113b951bf", + "start": { + "$date": "2021-11-06T06:18:14.000Z" + }, + "end": { + "$date": "2021-11-06T06:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "83da4152-7e41-4556-8e7f-7f273b14e304", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-06T06:16:35.000Z" + }, + "end": { + "$date": "2021-11-06T09:11:11.000Z" + }, + "events": [ + { + "uuid": "c16f1bb3-031b-4012-8170-f4a71f29df82", + "start": { + "$date": "2021-11-06T06:16:35.000Z" + }, + "end": { + "$date": "2021-11-06T09:11:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "708f9a4e-f5e2-4a95-8632-14af3d31372a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T06:18:10.000Z" + }, + "end": { + "$date": "2021-11-06T09:10:43.000Z" + }, + "events": [ + { + "uuid": "f689353c-af2c-4b7d-a775-3b06de3c5182", + "start": { + "$date": "2021-11-06T06:18:10.000Z" + }, + "end": { + "$date": "2021-11-06T09:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f8d220f6-ae76-4c3d-996e-5ac9a71eb4b0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T14:11:18.000Z" + }, + "end": { + "$date": "2021-11-06T15:09:20.000Z" + }, + "events": [ + { + "uuid": "86fa1609-1b64-41a4-a308-9af6bc44ee57", + "start": { + "$date": "2021-11-06T14:11:18.000Z" + }, + "end": { + "$date": "2021-11-06T15:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "476743c2-cd69-4c41-b53f-90eb5a172ffa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T15:52:38.000Z" + }, + "end": { + "$date": "2021-11-06T17:48:35.000Z" + }, + "events": [ + { + "uuid": "df10cce0-b4ae-4986-8235-07ed21e1064e", + "start": { + "$date": "2021-11-06T15:52:38.000Z" + }, + "end": { + "$date": "2021-11-06T17:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb1334f4-7d8b-4d71-a203-1ee6829fb0a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-06T17:17:29.000Z" + }, + "end": { + "$date": "2021-11-07T00:05:01.000Z" + }, + "events": [ + { + "uuid": "4eba5d97-dc03-4bd6-9529-919a578b70cf", + "start": { + "$date": "2021-11-06T17:17:29.000Z" + }, + "end": { + "$date": "2021-11-06T20:28:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33cdbd63-07c8-49bc-a0d3-43c33103c12a", + "start": { + "$date": "2021-11-06T20:28:29.000Z" + }, + "end": { + "$date": "2021-11-06T20:31:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "250a7f54-78c3-4ff5-8026-6eeb0f24f19b", + "start": { + "$date": "2021-11-06T20:31:29.000Z" + }, + "end": { + "$date": "2021-11-06T22:26:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab73f20b-0c32-4465-945e-55c82d29cc6e", + "start": { + "$date": "2021-11-06T22:26:29.000Z" + }, + "end": { + "$date": "2021-11-06T22:55:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "98e17b82-a466-4a69-a953-d70aafb340f7", + "start": { + "$date": "2021-11-06T22:55:29.000Z" + }, + "end": { + "$date": "2021-11-06T22:58:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c138d922-5ffb-47d2-a92a-b487a30ad54d", + "start": { + "$date": "2021-11-06T22:58:29.000Z" + }, + "end": { + "$date": "2021-11-07T00:03:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ce42c21-846e-4935-b791-e932be416e51", + "start": { + "$date": "2021-11-07T00:03:29.000Z" + }, + "end": { + "$date": "2021-11-07T00:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "51cd3a61-f109-4f33-b1a2-cbef0769a835", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T17:48:46.000Z" + }, + "end": { + "$date": "2021-11-06T17:54:05.000Z" + }, + "events": [ + { + "uuid": "a4222814-f135-4ef9-8006-ce305690df70", + "start": { + "$date": "2021-11-06T17:48:46.000Z" + }, + "end": { + "$date": "2021-11-06T17:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2703d5c6-7fe2-4bc5-87e8-a1c5b1f6e75b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T17:54:11.000Z" + }, + "end": { + "$date": "2021-11-06T17:55:15.000Z" + }, + "events": [ + { + "uuid": "7900edb3-9d0b-487d-a548-2ba7cb118f98", + "start": { + "$date": "2021-11-06T17:54:11.000Z" + }, + "end": { + "$date": "2021-11-06T17:55:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df9470f5-16f2-4a1c-87a0-ff85fcfe1e4c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T17:57:43.000Z" + }, + "end": { + "$date": "2021-11-06T17:57:59.000Z" + }, + "events": [ + { + "uuid": "812d84bd-c61a-4db0-8cf7-617243f3444f", + "start": { + "$date": "2021-11-06T17:57:43.000Z" + }, + "end": { + "$date": "2021-11-06T17:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bbeb949-4412-4968-a28c-8740f1cd6528", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T17:57:42.000Z" + }, + "end": { + "$date": "2021-11-06T17:58:00.000Z" + }, + "events": [ + { + "uuid": "d9b805e6-e0d3-46d1-8079-6fa6e47c955d", + "start": { + "$date": "2021-11-06T17:57:42.000Z" + }, + "end": { + "$date": "2021-11-06T17:58:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02c7be2e-09ba-4754-9f76-1287316d51ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-06T17:57:44.000Z" + }, + "end": { + "$date": "2021-11-06T17:58:00.000Z" + }, + "events": [ + { + "uuid": "9bafb9a5-b741-4118-a1c1-5e46ac3a0cd7", + "start": { + "$date": "2021-11-06T17:57:44.000Z" + }, + "end": { + "$date": "2021-11-06T17:58:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "d21c96d1-a769-4ec9-b841-a231c892e6f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-06T17:14:14.000Z" + }, + "end": { + "$date": "2021-11-06T20:46:43.000Z" + }, + "events": [ + { + "uuid": "6b79cee2-84f2-41e9-9964-1c75d237ae6f", + "start": { + "$date": "2021-11-06T17:14:14.000Z" + }, + "end": { + "$date": "2021-11-06T20:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8594fbdc-d807-4454-ade5-79cabe33daf3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-06T18:02:36.000Z" + }, + "end": { + "$date": "2021-11-06T18:25:54.000Z" + }, + "events": [ + { + "uuid": "1e0680e4-12ef-465b-9541-ee910721106f", + "start": { + "$date": "2021-11-06T18:02:36.000Z" + }, + "end": { + "$date": "2021-11-06T18:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50f3dd05-a9d3-498b-8610-b835e76225b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T18:03:17.000Z" + }, + "end": { + "$date": "2021-11-06T18:25:42.000Z" + }, + "events": [ + { + "uuid": "70d99f38-ac9a-4327-aa18-af3ed4a25198", + "start": { + "$date": "2021-11-06T18:03:17.000Z" + }, + "end": { + "$date": "2021-11-06T18:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfe9e6e3-003c-410a-9c36-5f74d0b0f192", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T18:02:50.000Z" + }, + "end": { + "$date": "2021-11-06T18:25:41.000Z" + }, + "events": [ + { + "uuid": "2ebf5dad-338a-46ab-a170-a4d39ec9d99e", + "start": { + "$date": "2021-11-06T18:02:50.000Z" + }, + "end": { + "$date": "2021-11-06T18:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5394f04-f949-49c2-afbe-11dd03276748", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T18:30:41.000Z" + }, + "end": { + "$date": "2021-11-06T18:51:06.000Z" + }, + "events": [ + { + "uuid": "5cac8320-3365-44d6-8501-dd98fdf195f2", + "start": { + "$date": "2021-11-06T18:30:41.000Z" + }, + "end": { + "$date": "2021-11-06T18:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9d80eab-1d3e-487d-a014-4c2feac55924", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T18:53:03.000Z" + }, + "end": { + "$date": "2021-11-06T18:55:52.000Z" + }, + "events": [ + { + "uuid": "48901c26-79b0-4795-8c25-52e08f143c86", + "start": { + "$date": "2021-11-06T18:53:03.000Z" + }, + "end": { + "$date": "2021-11-06T18:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a39a0c08-5712-4b64-a232-3f3e29ce2fbb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T19:02:17.000Z" + }, + "end": { + "$date": "2021-11-06T19:15:07.000Z" + }, + "events": [ + { + "uuid": "b3812934-ecb2-4910-83b7-d7e536fd65b4", + "start": { + "$date": "2021-11-06T19:02:17.000Z" + }, + "end": { + "$date": "2021-11-06T19:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d588c52a-02ff-4c7c-8303-f8b2115beda5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T19:08:45.000Z" + }, + "end": { + "$date": "2021-11-06T19:48:37.000Z" + }, + "events": [ + { + "uuid": "e79c5b83-4022-45c9-8bef-2ab18e5dbbe9", + "start": { + "$date": "2021-11-06T19:08:45.000Z" + }, + "end": { + "$date": "2021-11-06T19:48:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62487718-ca7e-4a3b-bcfd-76de983cadd8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T19:19:17.000Z" + }, + "end": { + "$date": "2021-11-06T19:45:28.000Z" + }, + "events": [ + { + "uuid": "8d22220f-6096-4b39-84e8-73d188eb69f1", + "start": { + "$date": "2021-11-06T19:19:17.000Z" + }, + "end": { + "$date": "2021-11-06T19:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54013c8f-b9cb-483c-8f95-0f45cf888812", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T19:53:08.000Z" + }, + "end": { + "$date": "2021-11-06T20:13:24.000Z" + }, + "events": [ + { + "uuid": "d75a6dc3-a1ca-4f30-82d4-f7dfa11dedfe", + "start": { + "$date": "2021-11-06T19:53:08.000Z" + }, + "end": { + "$date": "2021-11-06T20:13:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9daa5c7c-cc94-451d-90a7-338827643091", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-06T19:53:33.000Z" + }, + "end": { + "$date": "2021-11-06T20:13:27.000Z" + }, + "events": [ + { + "uuid": "dc792b51-3512-4dc9-871b-6f05c30c18f7", + "start": { + "$date": "2021-11-06T19:53:33.000Z" + }, + "end": { + "$date": "2021-11-06T20:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9477f4d1-9373-4052-85cf-a3ad97885456", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T19:53:07.000Z" + }, + "end": { + "$date": "2021-11-06T20:13:23.000Z" + }, + "events": [ + { + "uuid": "2f7d65d6-7e59-4f37-a2de-a01e0b1e2f16", + "start": { + "$date": "2021-11-06T19:53:07.000Z" + }, + "end": { + "$date": "2021-11-06T20:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7cd267dd-1b72-46a6-a567-05f09f7f0377", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T20:35:36.000Z" + }, + "end": { + "$date": "2021-11-06T21:09:23.000Z" + }, + "events": [ + { + "uuid": "1ce11673-d9b6-4bf3-baac-20fe4359edaa", + "start": { + "$date": "2021-11-06T20:35:36.000Z" + }, + "end": { + "$date": "2021-11-06T21:09:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd7bd75b-4b5c-42c6-b7bb-b80eb7682eb1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-06T20:35:44.000Z" + }, + "end": { + "$date": "2021-11-06T21:09:26.000Z" + }, + "events": [ + { + "uuid": "a7faede4-0727-4d18-97b3-c6ee1894887f", + "start": { + "$date": "2021-11-06T20:35:44.000Z" + }, + "end": { + "$date": "2021-11-06T21:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb8cd149-924c-4496-a143-1fbe2a4e0a74", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T20:37:04.000Z" + }, + "end": { + "$date": "2021-11-06T21:09:20.000Z" + }, + "events": [ + { + "uuid": "852ee0f5-b1e4-4bcf-af74-f7e027f3308b", + "start": { + "$date": "2021-11-06T20:37:04.000Z" + }, + "end": { + "$date": "2021-11-06T21:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d06fe8ff-8ddf-45dc-b7b6-ae0a76144c41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-06T21:14:33.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:39.000Z" + }, + "events": [ + { + "uuid": "1bd8ee67-7c5e-4e77-95ee-6eefb47ac2d7", + "start": { + "$date": "2021-11-06T21:14:33.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "527c9e47-1dc5-489d-b6a6-ddbf69ed6ab0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T21:15:12.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:38.000Z" + }, + "events": [ + { + "uuid": "fbac9ab2-ffd9-4d51-a49b-d321dcf780a6", + "start": { + "$date": "2021-11-06T21:15:12.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a00c8cc3-73e9-4b41-a886-fc7e24e0c3bd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T21:14:35.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:41.000Z" + }, + "events": [ + { + "uuid": "98f62458-a90d-49d0-9d15-87fb81e58dba", + "start": { + "$date": "2021-11-06T21:14:35.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c84310f-0819-4aa4-abb4-131a7580e914", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-06T21:14:41.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:52.000Z" + }, + "events": [ + { + "uuid": "6d93cf1e-37ac-4db7-a414-307c37cad037", + "start": { + "$date": "2021-11-06T21:14:41.000Z" + }, + "end": { + "$date": "2021-11-06T21:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9ac3eacc-55ca-4d9c-b178-f46d8b542da7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-06T21:51:47.000Z" + }, + "end": { + "$date": "2021-11-06T21:55:22.000Z" + }, + "events": [ + { + "uuid": "eb41cfbf-094d-4de3-9d14-b59a2ab34e3d", + "start": { + "$date": "2021-11-06T21:51:47.000Z" + }, + "end": { + "$date": "2021-11-06T21:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22f488c2-b8cc-4e10-86eb-d10c32410b61", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-06T21:55:01.000Z" + }, + "end": { + "$date": "2021-11-06T22:14:26.000Z" + }, + "events": [ + { + "uuid": "264170d3-80f6-4c9c-9586-b1a51c1f753a", + "start": { + "$date": "2021-11-06T21:55:01.000Z" + }, + "end": { + "$date": "2021-11-06T22:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67fa4d1a-9e33-4a18-8ff1-dda0681e91c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-06T21:54:58.000Z" + }, + "end": { + "$date": "2021-11-06T22:14:31.000Z" + }, + "events": [ + { + "uuid": "1bcb3ccb-4a5b-43b6-96a3-9cba943af8ba", + "start": { + "$date": "2021-11-06T21:54:58.000Z" + }, + "end": { + "$date": "2021-11-06T22:14:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "acb3a775-444f-43ac-9dfd-0ef596f9711d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-06T22:40:16.000Z" + }, + "end": { + "$date": "2021-11-06T22:59:23.000Z" + }, + "events": [ + { + "uuid": "7393c0e2-82ab-411e-80dc-d4578063fc7b", + "start": { + "$date": "2021-11-06T22:40:16.000Z" + }, + "end": { + "$date": "2021-11-06T22:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1356cd2b-bd2d-4aac-a0ce-0ca4479d71d0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-07T00:12:32.000Z" + }, + "end": { + "$date": "2021-11-07T01:27:59.000Z" + }, + "events": [ + { + "uuid": "83f0e7a1-c63f-4ec4-940e-4dd8a39eeff4", + "start": { + "$date": "2021-11-07T00:12:32.000Z" + }, + "end": { + "$date": "2021-11-07T01:27:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a2bfe4ef-b47e-42c3-8e7c-0d96b0e0b865", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-07T00:54:05.000Z" + }, + "end": { + "$date": "2021-11-07T02:51:37.000Z" + }, + "events": [ + { + "uuid": "7e112c6b-d413-46e7-8f13-114b2327dd33", + "start": { + "$date": "2021-11-07T00:54:05.000Z" + }, + "end": { + "$date": "2021-11-07T02:51:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "33dacf16-bf45-4e7e-97db-e7627e6c07c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-07T01:22:08.000Z" + }, + "end": { + "$date": "2021-11-07T05:55:34.000Z" + }, + "events": [ + { + "uuid": "3fbd0d92-5dd7-4da3-95ce-14c1092e45b0", + "start": { + "$date": "2021-11-07T01:22:08.000Z" + }, + "end": { + "$date": "2021-11-07T02:04:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "deac8b68-8df1-4417-8fb3-9477a3d707df", + "start": { + "$date": "2021-11-07T02:04:08.000Z" + }, + "end": { + "$date": "2021-11-07T02:07:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d912f90-2283-4270-8efa-f2634a5eb74c", + "start": { + "$date": "2021-11-07T02:07:08.000Z" + }, + "end": { + "$date": "2021-11-07T05:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8835431b-78a5-4c41-b391-a86f99bdd913", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-07T01:28:10.000Z" + }, + "end": { + "$date": "2021-11-07T05:38:38.000Z" + }, + "events": [ + { + "uuid": "d3990cc3-9a42-4980-973b-e38c35db6475", + "start": { + "$date": "2021-11-07T01:28:10.000Z" + }, + "end": { + "$date": "2021-11-07T05:38:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ccafbd56-374c-4a4a-98e7-eb3e0014c65b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-07T04:32:02.000Z" + }, + "end": { + "$date": "2021-11-07T05:46:01.000Z" + }, + "events": [ + { + "uuid": "2ab9140e-3935-431a-830f-1ac319023c0c", + "start": { + "$date": "2021-11-07T04:32:02.000Z" + }, + "end": { + "$date": "2021-11-07T05:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03085f3f-0f50-419d-94f4-c861e7a170d0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-07T05:20:44.000Z" + }, + "end": { + "$date": "2021-11-07T05:37:05.000Z" + }, + "events": [ + { + "uuid": "6a6f0153-473b-467e-90b5-00e70423c083", + "start": { + "$date": "2021-11-07T05:20:44.000Z" + }, + "end": { + "$date": "2021-11-07T05:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20517ab3-946a-4ebe-a1a4-4ff95cd46f5b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-07T05:46:57.000Z" + }, + "end": { + "$date": "2021-11-07T06:22:02.000Z" + }, + "events": [ + { + "uuid": "6a4b072d-443c-4907-91cc-7cb82006065c", + "start": { + "$date": "2021-11-07T05:46:57.000Z" + }, + "end": { + "$date": "2021-11-07T06:22:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4f208c3e-f5b5-434a-b9e6-5d1015195354", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-07T05:58:13.000Z" + }, + "end": { + "$date": "2021-11-07T06:05:42.000Z" + }, + "events": [ + { + "uuid": "7d1ecdfd-31e7-4b06-9f6f-a7dd3cb0107a", + "start": { + "$date": "2021-11-07T05:58:13.000Z" + }, + "end": { + "$date": "2021-11-07T06:05:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d0ef639-02a2-4021-bb29-39ef9a7491e5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-07T06:28:36.000Z" + }, + "end": { + "$date": "2021-11-07T06:58:21.000Z" + }, + "events": [ + { + "uuid": "9838cb44-9202-4898-8662-8a2e8b888a8e", + "start": { + "$date": "2021-11-07T06:28:36.000Z" + }, + "end": { + "$date": "2021-11-07T06:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b07d50f0-5066-411a-afa0-e77ba093d008", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-07T06:03:00.000Z" + }, + "end": { + "$date": "2021-11-07T06:35:25.000Z" + }, + "events": [ + { + "uuid": "2e16beb6-08d0-423d-a9c1-889990a7d62c", + "start": { + "$date": "2021-11-07T06:03:00.000Z" + }, + "end": { + "$date": "2021-11-07T06:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63b61262-5dd8-4ef6-b733-d8831cc18513", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-07T06:38:54.000Z" + }, + "end": { + "$date": "2021-11-07T08:01:43.000Z" + }, + "events": [ + { + "uuid": "42bb555e-b0b4-4687-835a-0058ff4c781b", + "start": { + "$date": "2021-11-07T06:38:54.000Z" + }, + "end": { + "$date": "2021-11-07T08:01:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd6179d6-fe70-469e-a8fa-f7e13b9c8dcf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T09:56:10.000Z" + }, + "end": { + "$date": "2021-11-07T10:15:33.000Z" + }, + "events": [ + { + "uuid": "02d7ff85-01b8-4a0d-b281-a5268cd8c60e", + "start": { + "$date": "2021-11-07T09:56:10.000Z" + }, + "end": { + "$date": "2021-11-07T10:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1912b69-a232-4291-ae31-6744fa69e3d6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T10:21:03.000Z" + }, + "end": { + "$date": "2021-11-07T10:39:26.000Z" + }, + "events": [ + { + "uuid": "14049c04-4c7a-43f2-884d-4616268b1df2", + "start": { + "$date": "2021-11-07T10:21:03.000Z" + }, + "end": { + "$date": "2021-11-07T10:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ef8664b-3b62-4689-a321-862bc676e05c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T10:41:16.000Z" + }, + "end": { + "$date": "2021-11-07T11:08:49.000Z" + }, + "events": [ + { + "uuid": "dffd6846-e240-4fdf-bce6-7be9a8bc05b2", + "start": { + "$date": "2021-11-07T10:41:16.000Z" + }, + "end": { + "$date": "2021-11-07T11:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c82c9425-3404-4299-8572-688f68a8ab09", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T11:12:29.000Z" + }, + "end": { + "$date": "2021-11-07T11:31:07.000Z" + }, + "events": [ + { + "uuid": "fa3a4d06-fb6b-4eb9-888b-dcd31aea7274", + "start": { + "$date": "2021-11-07T11:12:29.000Z" + }, + "end": { + "$date": "2021-11-07T11:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30f530e7-7a0e-4b05-840f-facfdd9793d3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T11:34:22.000Z" + }, + "end": { + "$date": "2021-11-07T11:57:05.000Z" + }, + "events": [ + { + "uuid": "f81a7462-b03b-4137-acdc-c6bc67f213fa", + "start": { + "$date": "2021-11-07T11:34:22.000Z" + }, + "end": { + "$date": "2021-11-07T11:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21d5792d-5ee6-4927-a11c-1b705c3a521f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T11:59:25.000Z" + }, + "end": { + "$date": "2021-11-07T12:27:35.000Z" + }, + "events": [ + { + "uuid": "babe474b-e09c-474d-a8e6-4491cc478819", + "start": { + "$date": "2021-11-07T11:59:25.000Z" + }, + "end": { + "$date": "2021-11-07T12:27:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1d465132-edc3-45e5-a250-d512de93dc24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-07T15:54:57.000Z" + }, + "end": { + "$date": "2021-11-07T17:29:32.000Z" + }, + "events": [ + { + "uuid": "2045d446-1611-4a97-839a-a9d19375e137", + "start": { + "$date": "2021-11-07T15:54:57.000Z" + }, + "end": { + "$date": "2021-11-07T17:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfc548fd-0fbd-4edf-9e6e-26f8cda53676", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-07T17:06:29.000Z" + }, + "end": { + "$date": "2021-11-07T17:37:21.000Z" + }, + "events": [ + { + "uuid": "d8ff64c6-8f16-40eb-8a72-bf38e02358e6", + "start": { + "$date": "2021-11-07T17:06:29.000Z" + }, + "end": { + "$date": "2021-11-07T17:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c923f6d2-3ed8-4207-bbb9-9b293dd45971", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-07T17:43:03.000Z" + }, + "end": { + "$date": "2021-11-07T18:05:24.000Z" + }, + "events": [ + { + "uuid": "f44a4a1b-67c0-4068-94f8-9ab776c795d0", + "start": { + "$date": "2021-11-07T17:43:03.000Z" + }, + "end": { + "$date": "2021-11-07T18:05:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d551439c-0d40-428c-98e8-c054dc2e8976", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-07T18:09:41.000Z" + }, + "end": { + "$date": "2021-11-07T18:30:41.000Z" + }, + "events": [ + { + "uuid": "6d700e20-d032-44b0-8f6e-310ce6c948f3", + "start": { + "$date": "2021-11-07T18:09:41.000Z" + }, + "end": { + "$date": "2021-11-07T18:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "679821e2-7735-4ac5-b6d7-bb57ff42dedf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-07T18:15:32.000Z" + }, + "end": { + "$date": "2021-11-07T18:58:51.000Z" + }, + "events": [ + { + "uuid": "db84de28-509e-4246-97f1-7f853bd3d1dc", + "start": { + "$date": "2021-11-07T18:15:32.000Z" + }, + "end": { + "$date": "2021-11-07T18:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0edc596f-be24-4ef5-b947-d0ad4817d7fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-07T18:31:12.000Z" + }, + "end": { + "$date": "2021-11-07T20:11:22.000Z" + }, + "events": [ + { + "uuid": "13ba7059-d91b-4c22-b94e-870a06501de7", + "start": { + "$date": "2021-11-07T18:31:12.000Z" + }, + "end": { + "$date": "2021-11-07T18:56:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "694bcb7c-e8a2-4ade-89a5-6ec0b2e49f82", + "start": { + "$date": "2021-11-07T18:56:12.000Z" + }, + "end": { + "$date": "2021-11-07T19:45:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d971999e-db55-46e2-8e87-81d00248a76e", + "start": { + "$date": "2021-11-07T19:45:12.000Z" + }, + "end": { + "$date": "2021-11-07T20:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "61f0e2b8-3884-4d31-8ff7-4a1dbb4d2e37", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-07T19:13:38.000Z" + }, + "end": { + "$date": "2021-11-07T20:07:55.000Z" + }, + "events": [ + { + "uuid": "432cd04c-7223-4f74-89ba-73cfa0c210b3", + "start": { + "$date": "2021-11-07T19:13:38.000Z" + }, + "end": { + "$date": "2021-11-07T20:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43cdbe0b-9aef-43f7-abd4-02212c3bfbd2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-07T19:37:47.000Z" + }, + "end": { + "$date": "2021-11-07T19:44:37.000Z" + }, + "events": [ + { + "uuid": "93632dcc-2a96-4af5-96af-99f8dce24abf", + "start": { + "$date": "2021-11-07T19:37:47.000Z" + }, + "end": { + "$date": "2021-11-07T19:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2cddf1f6-091c-415e-820d-848d92f63d4c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-07T20:11:24.000Z" + }, + "end": { + "$date": "2021-11-07T21:18:13.000Z" + }, + "events": [ + { + "uuid": "77c2c0bc-df04-4636-acef-89093c3a8c81", + "start": { + "$date": "2021-11-07T20:11:24.000Z" + }, + "end": { + "$date": "2021-11-07T21:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "58a13333-0aaa-4f6b-aada-f81c11ce6231", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-07T21:32:02.000Z" + }, + "end": { + "$date": "2021-11-07T22:43:21.000Z" + }, + "events": [ + { + "uuid": "3c1270ad-4bf9-4b78-9915-adebb172ae4a", + "start": { + "$date": "2021-11-07T21:32:02.000Z" + }, + "end": { + "$date": "2021-11-07T22:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acb90ee0-7742-460a-956d-bbe66fd19da2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T21:39:53.000Z" + }, + "end": { + "$date": "2021-11-07T22:02:56.000Z" + }, + "events": [ + { + "uuid": "e9e4e088-635e-448f-a833-05ba41532da5", + "start": { + "$date": "2021-11-07T21:39:53.000Z" + }, + "end": { + "$date": "2021-11-07T22:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2309068b-eadf-428f-a75e-1dc786399991", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T22:05:01.000Z" + }, + "end": { + "$date": "2021-11-07T22:25:24.000Z" + }, + "events": [ + { + "uuid": "02a82443-1529-422e-b7e3-21280a5fc4b3", + "start": { + "$date": "2021-11-07T22:05:01.000Z" + }, + "end": { + "$date": "2021-11-07T22:25:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be4a9d72-50cc-4af1-a3fc-ca3300df3a4f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T22:27:24.000Z" + }, + "end": { + "$date": "2021-11-07T22:47:36.000Z" + }, + "events": [ + { + "uuid": "c6a571da-9064-44fd-a752-158e8f967c56", + "start": { + "$date": "2021-11-07T22:27:24.000Z" + }, + "end": { + "$date": "2021-11-07T22:47:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5ac1661c-4d18-4e90-9e03-12b11c800013", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-07T22:33:41.000Z" + }, + "end": { + "$date": "2021-11-07T23:27:11.000Z" + }, + "events": [ + { + "uuid": "549fd468-6dd5-4c78-b57f-e28f4f116799", + "start": { + "$date": "2021-11-07T22:33:41.000Z" + }, + "end": { + "$date": "2021-11-07T23:27:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3000fdbe-53f0-4759-a3bb-053b3845f477", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T22:49:41.000Z" + }, + "end": { + "$date": "2021-11-07T23:12:04.000Z" + }, + "events": [ + { + "uuid": "ee4141f8-0de7-4819-8262-ca4c223a4b35", + "start": { + "$date": "2021-11-07T22:49:41.000Z" + }, + "end": { + "$date": "2021-11-07T23:12:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "422fe0cb-2b85-437c-a802-72dd7390bff4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T02:44:45.000Z" + }, + "end": { + "$date": "2021-11-08T03:05:38.000Z" + }, + "events": [ + { + "uuid": "16d4a44b-c9c7-4f68-b7ee-778a9c8fdcd6", + "start": { + "$date": "2021-11-08T02:44:45.000Z" + }, + "end": { + "$date": "2021-11-08T03:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3232e55b-c45f-47d5-ae3c-46df64776497", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-07T23:38:10.000Z" + }, + "end": { + "$date": "2021-11-07T23:57:40.000Z" + }, + "events": [ + { + "uuid": "5ae5036d-1399-4b5a-95a6-3a34a86deb2d", + "start": { + "$date": "2021-11-07T23:38:10.000Z" + }, + "end": { + "$date": "2021-11-07T23:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ae82931-3f1d-48eb-8334-167ecb417db9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T00:02:57.000Z" + }, + "end": { + "$date": "2021-11-08T00:21:40.000Z" + }, + "events": [ + { + "uuid": "5dc92223-2e87-4458-9886-741ea03ef69b", + "start": { + "$date": "2021-11-08T00:02:57.000Z" + }, + "end": { + "$date": "2021-11-08T00:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a9d41b8-5793-4a68-9c50-6ba21677e93f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T00:28:02.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:43.000Z" + }, + "events": [ + { + "uuid": "9eb829e7-54bd-477f-9e8f-6b0a3f04019a", + "start": { + "$date": "2021-11-08T00:28:02.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2414ecf4-0809-430b-ab93-561cf6ca09cb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T00:28:03.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:42.000Z" + }, + "events": [ + { + "uuid": "f1292a93-1de2-42f9-bf71-4753ad59b8cc", + "start": { + "$date": "2021-11-08T00:28:03.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06bcca12-77fb-4271-a3bb-726c8b110b34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T00:28:06.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:44.000Z" + }, + "events": [ + { + "uuid": "d6287d31-6fad-463c-9315-e2a008ea95df", + "start": { + "$date": "2021-11-08T00:28:06.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56d99bd0-b6c6-4390-8017-8246a60db618", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T00:28:04.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:44.000Z" + }, + "events": [ + { + "uuid": "5ad7c134-08ca-4fc3-8abb-53ab48254151", + "start": { + "$date": "2021-11-08T00:28:04.000Z" + }, + "end": { + "$date": "2021-11-08T00:30:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ffdbece-ef5e-4fcb-9907-f7682b1cce33", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T00:43:04.000Z" + }, + "end": { + "$date": "2021-11-08T01:09:55.000Z" + }, + "events": [ + { + "uuid": "230cfe4c-9d87-4d13-ad80-5ea5c86050d5", + "start": { + "$date": "2021-11-08T00:43:04.000Z" + }, + "end": { + "$date": "2021-11-08T01:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fd83f31-f8f7-4291-bb9b-079ad2209ee4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T00:43:03.000Z" + }, + "end": { + "$date": "2021-11-08T01:10:04.000Z" + }, + "events": [ + { + "uuid": "cc3d36e8-67eb-4dc6-a86a-696532dbe995", + "start": { + "$date": "2021-11-08T00:43:03.000Z" + }, + "end": { + "$date": "2021-11-08T01:10:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45dc7d3d-69f6-4653-9998-862e57be632b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T00:43:28.000Z" + }, + "end": { + "$date": "2021-11-08T01:10:17.000Z" + }, + "events": [ + { + "uuid": "5bfdf10d-e209-4ad6-91bd-1ccbd87b5ec7", + "start": { + "$date": "2021-11-08T00:43:28.000Z" + }, + "end": { + "$date": "2021-11-08T01:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "867f56ce-b617-425f-8e15-9bab04305f10", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T00:43:09.000Z" + }, + "end": { + "$date": "2021-11-08T01:09:59.000Z" + }, + "events": [ + { + "uuid": "9b672f23-d3f4-4e1c-81b1-2948c4a34302", + "start": { + "$date": "2021-11-08T00:43:09.000Z" + }, + "end": { + "$date": "2021-11-08T01:09:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5ca17dd-0bc9-468f-a7bc-b30f43dadd3a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T01:14:43.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:20.000Z" + }, + "events": [ + { + "uuid": "06de1ab0-234c-45fe-87ad-68533e7ea5da", + "start": { + "$date": "2021-11-08T01:14:43.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5dc327df-cceb-464f-9abc-a0cd43fbaeee", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T01:14:25.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:27.000Z" + }, + "events": [ + { + "uuid": "9df25dc1-30d0-4288-ad51-204022041138", + "start": { + "$date": "2021-11-08T01:14:25.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e37f705e-2f37-443d-ba60-1f916f0dc917", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T01:14:30.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:30.000Z" + }, + "events": [ + { + "uuid": "b806f829-8c52-417e-b5b2-f1782c5bb96a", + "start": { + "$date": "2021-11-08T01:14:30.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63ec58f2-c225-4523-98aa-b8ef6f729ccf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T01:14:25.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:21.000Z" + }, + "events": [ + { + "uuid": "8295a142-4b59-4001-9569-ff1bd0eb7a18", + "start": { + "$date": "2021-11-08T01:14:25.000Z" + }, + "end": { + "$date": "2021-11-08T01:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72ba321b-fd1c-474a-b626-0c5913e32035", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T01:51:16.000Z" + }, + "end": { + "$date": "2021-11-08T01:52:35.000Z" + }, + "events": [ + { + "uuid": "cc3cca24-dfdc-4a0e-847e-378b6eb21ae8", + "start": { + "$date": "2021-11-08T01:51:16.000Z" + }, + "end": { + "$date": "2021-11-08T01:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f1644ad-75d6-4b76-8f1c-124015e7df5f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T02:02:56.000Z" + }, + "end": { + "$date": "2021-11-08T02:37:57.000Z" + }, + "events": [ + { + "uuid": "5a956162-7320-433c-9a9f-12e8721a3da6", + "start": { + "$date": "2021-11-08T02:02:56.000Z" + }, + "end": { + "$date": "2021-11-08T02:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "939e0bbc-0bc0-4985-a9bd-6ae9d1eef3a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T02:24:23.000Z" + }, + "end": { + "$date": "2021-11-08T02:41:08.000Z" + }, + "events": [ + { + "uuid": "4c3b8d38-5481-4427-999c-925fa5e3234a", + "start": { + "$date": "2021-11-08T02:24:23.000Z" + }, + "end": { + "$date": "2021-11-08T02:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dedd0618-421b-45de-a36a-896c0ebcb9cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-08T02:28:29.000Z" + }, + "end": { + "$date": "2021-11-08T05:37:13.000Z" + }, + "events": [ + { + "uuid": "7507eea4-dd0b-476c-ba85-9255d19ee129", + "start": { + "$date": "2021-11-08T02:28:29.000Z" + }, + "end": { + "$date": "2021-11-08T05:37:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fca1dbc6-282e-4116-8521-b3c610de43b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T02:41:13.000Z" + }, + "end": { + "$date": "2021-11-08T02:42:53.000Z" + }, + "events": [ + { + "uuid": "5b6eb3f4-2a87-43b4-8e61-1e637bea0357", + "start": { + "$date": "2021-11-08T02:41:13.000Z" + }, + "end": { + "$date": "2021-11-08T02:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff840d1b-f19b-40d6-acaf-66ee089317ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T02:44:32.000Z" + }, + "end": { + "$date": "2021-11-08T03:05:33.000Z" + }, + "events": [ + { + "uuid": "b0467a36-532b-4365-9f1d-0e6f91d60fc5", + "start": { + "$date": "2021-11-08T02:44:32.000Z" + }, + "end": { + "$date": "2021-11-08T03:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3a6db15-6df2-4ca2-9ee8-7a709cf96956", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T02:45:38.000Z" + }, + "end": { + "$date": "2021-11-08T03:05:27.000Z" + }, + "events": [ + { + "uuid": "45f0c7fa-7ac3-4732-9757-a50bd1dbf3ba", + "start": { + "$date": "2021-11-08T02:45:38.000Z" + }, + "end": { + "$date": "2021-11-08T03:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f5b28798-f722-4631-bc50-02ac4f7618da", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T02:42:58.000Z" + }, + "end": { + "$date": "2021-11-08T02:57:04.000Z" + }, + "events": [ + { + "uuid": "705ec89c-784f-4625-b30b-60dcbb99016d", + "start": { + "$date": "2021-11-08T02:42:58.000Z" + }, + "end": { + "$date": "2021-11-08T02:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b3d197cb-143f-4c9f-8d77-a7a845acde3c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T02:57:14.000Z" + }, + "end": { + "$date": "2021-11-08T03:02:24.000Z" + }, + "events": [ + { + "uuid": "c48ee0d7-76a0-493a-8498-e590e805b49a", + "start": { + "$date": "2021-11-08T02:57:14.000Z" + }, + "end": { + "$date": "2021-11-08T03:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8b3cf3ee-b629-4ede-ac3f-e93f3c5d5c94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T03:02:34.000Z" + }, + "end": { + "$date": "2021-11-08T03:03:49.000Z" + }, + "events": [ + { + "uuid": "04421f7d-c3f5-4a29-bc9d-56b59f81cec8", + "start": { + "$date": "2021-11-08T03:02:34.000Z" + }, + "end": { + "$date": "2021-11-08T03:03:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3596b4d7-3940-422e-acc7-f106b90fd922", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T03:04:54.000Z" + }, + "end": { + "$date": "2021-11-08T03:06:19.000Z" + }, + "events": [ + { + "uuid": "11632aad-6bb1-433e-9265-f10b5329d6b4", + "start": { + "$date": "2021-11-08T03:04:54.000Z" + }, + "end": { + "$date": "2021-11-08T03:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06bf9b97-d939-43b6-a3e6-dd031c1a6d41", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T03:05:47.000Z" + }, + "end": { + "$date": "2021-11-08T03:08:13.000Z" + }, + "events": [ + { + "uuid": "386e65c5-669d-4d08-ab49-5d2135d73276", + "start": { + "$date": "2021-11-08T03:05:47.000Z" + }, + "end": { + "$date": "2021-11-08T03:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e65f655e-2b68-4677-b691-8e7de08bbfff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T03:06:24.000Z" + }, + "end": { + "$date": "2021-11-08T03:08:19.000Z" + }, + "events": [ + { + "uuid": "66648463-57c5-455c-ae6c-a3018f7216cc", + "start": { + "$date": "2021-11-08T03:06:24.000Z" + }, + "end": { + "$date": "2021-11-08T03:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37a1e840-5237-4351-9d8d-b27ccf215d04", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T03:12:48.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:29.000Z" + }, + "events": [ + { + "uuid": "e89a5bd3-f4fc-49e0-b353-ad9459ae589f", + "start": { + "$date": "2021-11-08T03:12:48.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55a2f059-ac53-47ac-ab43-ba49ba7f94f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T03:13:09.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:33.000Z" + }, + "events": [ + { + "uuid": "b7e7b836-f792-4301-ac2c-daa7eae55912", + "start": { + "$date": "2021-11-08T03:13:09.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72c3ecf6-1382-4181-86cb-0b8f68fcb7b4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T03:12:54.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:34.000Z" + }, + "events": [ + { + "uuid": "de93e045-1b1f-4059-b6da-6ecb3838da42", + "start": { + "$date": "2021-11-08T03:12:54.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40da1eb2-577c-454e-aec5-db245f0028e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T03:13:14.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:38.000Z" + }, + "events": [ + { + "uuid": "43492d54-88f5-4cd3-9fd6-72241f3acd7c", + "start": { + "$date": "2021-11-08T03:13:14.000Z" + }, + "end": { + "$date": "2021-11-08T03:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fef176ba-2a70-4372-965d-26bcee3e2d01", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T03:32:26.000Z" + }, + "end": { + "$date": "2021-11-08T03:33:47.000Z" + }, + "events": [ + { + "uuid": "979cb30a-5abb-475c-b3f5-11038428b046", + "start": { + "$date": "2021-11-08T03:32:26.000Z" + }, + "end": { + "$date": "2021-11-08T03:33:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fca37b95-7195-4ce3-ae8f-b7a295685b20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-08T07:05:05.000Z" + }, + "end": { + "$date": "2021-11-08T07:05:16.000Z" + }, + "events": [ + { + "uuid": "bf3539d3-4eaa-4f2a-b354-ad10ba5e051b", + "start": { + "$date": "2021-11-08T07:05:05.000Z" + }, + "end": { + "$date": "2021-11-08T07:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6c06ab0a-4179-4233-a3b0-af1673b6f60d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-08T03:30:34.000Z" + }, + "end": { + "$date": "2021-11-08T05:04:22.000Z" + }, + "events": [ + { + "uuid": "7790ba16-83f1-4308-8013-f8786b3bf38e", + "start": { + "$date": "2021-11-08T03:30:34.000Z" + }, + "end": { + "$date": "2021-11-08T05:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "4a476684-fa6e-4d19-8dba-1ed19ecf49d3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-08T03:32:03.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:10.000Z" + }, + "events": [ + { + "uuid": "06e33588-4736-43b2-8ce2-e66d58b23c8b", + "start": { + "$date": "2021-11-08T03:32:03.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0975f22f-fc41-4944-9a74-ed5e321829be", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T03:32:54.000Z" + }, + "end": { + "$date": "2021-11-08T03:34:21.000Z" + }, + "events": [ + { + "uuid": "b0830404-eabc-4fb1-85c5-11ad26083bd0", + "start": { + "$date": "2021-11-08T03:32:54.000Z" + }, + "end": { + "$date": "2021-11-08T03:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3f978e7-2cd3-4619-9c06-c93ae8fac942", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T03:36:55.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:20.000Z" + }, + "events": [ + { + "uuid": "abc04a66-ef0c-4d1c-b442-219d6578d6de", + "start": { + "$date": "2021-11-08T03:36:55.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96ec52c0-d0c1-4b8a-9bd7-0840bfad5942", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T04:13:07.000Z" + }, + "end": { + "$date": "2021-11-08T04:14:06.000Z" + }, + "events": [ + { + "uuid": "5723e5b4-cb74-4821-b106-cd23b0fbfd05", + "start": { + "$date": "2021-11-08T04:13:07.000Z" + }, + "end": { + "$date": "2021-11-08T04:14:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37c433e2-5e48-4842-8e8c-583efbcc0437", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T03:36:39.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:14.000Z" + }, + "events": [ + { + "uuid": "40def4ef-7dc1-4483-8a35-920cf7efdb28", + "start": { + "$date": "2021-11-08T03:36:39.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a49b8dfe-93c0-4de4-9454-32b422acaf83", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T03:36:40.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:15.000Z" + }, + "events": [ + { + "uuid": "bac30733-15ab-44b3-bac0-3de4391049ac", + "start": { + "$date": "2021-11-08T03:36:40.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "355d77cd-529e-400e-b7c7-18d5622f9b67", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T04:17:36.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:52.000Z" + }, + "events": [ + { + "uuid": "42e740dd-98c1-4249-a420-052eba429fc7", + "start": { + "$date": "2021-11-08T04:17:36.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68a4977b-1220-4c49-85ec-bcd1a431f0c8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T03:36:50.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:12.000Z" + }, + "events": [ + { + "uuid": "b5c25186-47bc-4bdb-a53a-8b3a15dd2f9b", + "start": { + "$date": "2021-11-08T03:36:50.000Z" + }, + "end": { + "$date": "2021-11-08T03:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6833880e-377c-4b18-a8e5-1377aac00178", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T03:57:31.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:11.000Z" + }, + "events": [ + { + "uuid": "b9d56eae-0113-4cb0-b3dc-b4d0c7d24f19", + "start": { + "$date": "2021-11-08T03:57:31.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e36ece4-9c75-48bc-8db0-81d9eb496a58", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T03:57:30.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:06.000Z" + }, + "events": [ + { + "uuid": "644960cf-5f3c-48f4-9f17-7aa5412cd7df", + "start": { + "$date": "2021-11-08T03:57:30.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f814d8e7-45fa-4586-8a4f-cb6d0c447295", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T03:57:29.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:05.000Z" + }, + "events": [ + { + "uuid": "1c1003f5-21ce-408c-94c5-6542858989c5", + "start": { + "$date": "2021-11-08T03:57:29.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b884f11e-fb01-470f-bbe3-b548a5822d83", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T03:57:46.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:02.000Z" + }, + "events": [ + { + "uuid": "41914c3e-f45f-430e-97eb-d3956ad8e8ae", + "start": { + "$date": "2021-11-08T03:57:46.000Z" + }, + "end": { + "$date": "2021-11-08T04:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cded57bd-bd47-4c4e-a8f8-ce0807a857d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T05:31:05.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:45.000Z" + }, + "events": [ + { + "uuid": "e14bdc5b-812a-404c-88b9-ab527a6a148f", + "start": { + "$date": "2021-11-08T05:31:05.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c148bd6-0f67-48f5-837c-026b6dc3f9b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T04:15:54.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:48.000Z" + }, + "events": [ + { + "uuid": "c7266911-e7cb-42c2-9990-bb325cf27221", + "start": { + "$date": "2021-11-08T04:15:54.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63ff67db-8adb-4f4e-8d0e-4423516d248f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T04:15:53.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:49.000Z" + }, + "events": [ + { + "uuid": "725cb3a6-80f3-4767-9bb4-c69761869a20", + "start": { + "$date": "2021-11-08T04:15:53.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d91323ff-2bdc-4db4-a438-bb9d29ef657c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T04:15:54.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:49.000Z" + }, + "events": [ + { + "uuid": "1c719e7c-48f4-4fc8-b7b2-fae2581ae8a6", + "start": { + "$date": "2021-11-08T04:15:54.000Z" + }, + "end": { + "$date": "2021-11-08T04:17:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fb36ad5-7d3c-4017-96ba-3f0850201b4f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T04:17:58.000Z" + }, + "end": { + "$date": "2021-11-08T04:19:10.000Z" + }, + "events": [ + { + "uuid": "f61406f1-a092-46e0-86f0-981d4f1a868c", + "start": { + "$date": "2021-11-08T04:17:58.000Z" + }, + "end": { + "$date": "2021-11-08T04:19:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "179d199f-c2b7-461c-a9e6-d85e1abe6145", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T04:24:09.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:43.000Z" + }, + "events": [ + { + "uuid": "06efcb7d-e6af-4f92-b82a-f124b28071b2", + "start": { + "$date": "2021-11-08T04:24:09.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0528842a-cb6e-4f8c-a999-2e3ce461a4f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T04:24:00.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:31.000Z" + }, + "events": [ + { + "uuid": "22b46157-fa7f-44da-bc82-90ca8170b35a", + "start": { + "$date": "2021-11-08T04:24:00.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad4ee131-5d83-4c9b-803b-cf5cacf6939b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-08T04:23:36.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:45.000Z" + }, + "events": [ + { + "uuid": "4bb8bd79-617e-46e7-bf86-34d059b60314", + "start": { + "$date": "2021-11-08T04:23:36.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71ea5d97-b962-4881-82f9-f16cdfff73b9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T04:23:32.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:33.000Z" + }, + "events": [ + { + "uuid": "31792a60-d663-4d25-973d-543a83828e62", + "start": { + "$date": "2021-11-08T04:23:32.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3af00cd-17ac-4bc7-a563-790a8fa864a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T04:24:07.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:32.000Z" + }, + "events": [ + { + "uuid": "c192f4bc-16cc-4f44-9c15-69360987ed4b", + "start": { + "$date": "2021-11-08T04:24:07.000Z" + }, + "end": { + "$date": "2021-11-08T04:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c317619-a43a-45ec-a42b-822a69eebfc6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T04:43:40.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:56.000Z" + }, + "events": [ + { + "uuid": "07ca5a23-9ef3-4983-a79a-aabf0ce2b988", + "start": { + "$date": "2021-11-08T04:43:40.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaff69cd-4584-4338-ab3c-2204a3deb77b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T04:43:36.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:46.000Z" + }, + "events": [ + { + "uuid": "77af7ba3-40ac-4a6f-828b-a63c797103c8", + "start": { + "$date": "2021-11-08T04:43:36.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d890265c-3f8f-44bc-b69b-6ef5bb47243e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-08T04:43:56.000Z" + }, + "end": { + "$date": "2021-11-08T05:09:02.000Z" + }, + "events": [ + { + "uuid": "2e93b60d-15ca-4073-b7c5-77873df3e922", + "start": { + "$date": "2021-11-08T04:43:56.000Z" + }, + "end": { + "$date": "2021-11-08T05:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "061ac7c6-5099-46ad-8e63-eff17ed29d86", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T04:43:37.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:48.000Z" + }, + "events": [ + { + "uuid": "7b7fc9ae-76a6-434c-af7a-504d86db4d9a", + "start": { + "$date": "2021-11-08T04:43:37.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3a91940-bfb5-4d18-9396-708c20b55609", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T04:43:38.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:49.000Z" + }, + "events": [ + { + "uuid": "0d5eb069-5804-44b3-9458-5e4c953962a6", + "start": { + "$date": "2021-11-08T04:43:38.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ef70c19-bb6f-41dc-91af-77c670597562", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-08T04:43:39.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:53.000Z" + }, + "events": [ + { + "uuid": "3f288a01-0380-42d9-b21e-50addc7fbfcd", + "start": { + "$date": "2021-11-08T04:43:39.000Z" + }, + "end": { + "$date": "2021-11-08T05:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c12b563-d5dc-427d-92f8-862ece53c812", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-08T04:58:42.000Z" + }, + "end": { + "$date": "2021-11-08T07:01:37.000Z" + }, + "events": [ + { + "uuid": "e813c044-f9d0-4b0f-acc1-10eda72ffc95", + "start": { + "$date": "2021-11-08T04:58:42.000Z" + }, + "end": { + "$date": "2021-11-08T07:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17ff16e9-b25e-487e-bb66-40a2adea9f4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T05:12:37.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:17.000Z" + }, + "events": [ + { + "uuid": "5558582b-81c4-43f9-8ad1-04b3dc2883aa", + "start": { + "$date": "2021-11-08T05:12:37.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfa0870d-4aa0-4d7c-9035-a28283db72e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T05:12:01.000Z" + }, + "end": { + "$date": "2021-11-08T05:12:28.000Z" + }, + "events": [ + { + "uuid": "349b9b7e-864e-4e9e-bc8a-2e97a870b84e", + "start": { + "$date": "2021-11-08T05:12:01.000Z" + }, + "end": { + "$date": "2021-11-08T05:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a6b7fbd-b632-48ee-9826-f99607ac5a42", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-08T05:12:23.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:19.000Z" + }, + "events": [ + { + "uuid": "f8cbf871-6005-447e-9595-24a5536ad5be", + "start": { + "$date": "2021-11-08T05:12:23.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "663193af-9bfe-4974-8d80-83e5069b9394", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T05:12:33.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:20.000Z" + }, + "events": [ + { + "uuid": "909b75dc-693d-407c-ab79-fdcc3565eb88", + "start": { + "$date": "2021-11-08T05:12:33.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "172268a6-2085-4a9c-927b-02cf35270606", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T05:12:23.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:15.000Z" + }, + "events": [ + { + "uuid": "e94c96a1-3835-4335-9d15-acae20b4ece2", + "start": { + "$date": "2021-11-08T05:12:23.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "760cd7b6-f49d-4ff8-a2e6-a9e636f5971f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-08T05:12:25.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:14.000Z" + }, + "events": [ + { + "uuid": "bea9d4f7-aee6-4272-b786-c8ef8881bd2d", + "start": { + "$date": "2021-11-08T05:12:25.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34595a65-a48b-441a-8371-940ea1a2fa20", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T05:12:09.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:15.000Z" + }, + "events": [ + { + "uuid": "8a5241fb-95f6-4cf5-83b8-989bc3fb8d22", + "start": { + "$date": "2021-11-08T05:12:09.000Z" + }, + "end": { + "$date": "2021-11-08T05:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b272ea78-e31d-461c-a623-98c26129ceea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T05:31:08.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:47.000Z" + }, + "events": [ + { + "uuid": "dfe626a2-5a98-4353-99e2-078508bb7197", + "start": { + "$date": "2021-11-08T05:31:08.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4681677e-5b39-4b22-9702-8b508c04cb36", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T05:31:19.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:47.000Z" + }, + "events": [ + { + "uuid": "e7289bf9-1207-4fa4-8715-ffd2d1cb5f5d", + "start": { + "$date": "2021-11-08T05:31:19.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a50f4f8d-d356-4739-ae2e-6eb6c816c19b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T05:31:05.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:41.000Z" + }, + "events": [ + { + "uuid": "82f5d067-f22d-468b-8f24-0e496ee9951e", + "start": { + "$date": "2021-11-08T05:31:05.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aeedbb8-6f1d-446a-8c99-1b26a9df79f6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-08T05:31:30.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:44.000Z" + }, + "events": [ + { + "uuid": "1cff5920-6a03-45c7-8159-5dadfc854676", + "start": { + "$date": "2021-11-08T05:31:30.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55908c63-b194-4f60-829a-daae20471841", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-08T05:31:19.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:40.000Z" + }, + "events": [ + { + "uuid": "61bc5137-8cf1-40f9-8f67-56484812e4b7", + "start": { + "$date": "2021-11-08T05:31:19.000Z" + }, + "end": { + "$date": "2021-11-08T05:48:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "282126bc-2161-4130-a338-91c31230346b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-08T05:43:46.000Z" + }, + "end": { + "$date": "2021-11-08T05:55:39.000Z" + }, + "events": [ + { + "uuid": "fe070edc-f71c-4550-bb0d-5bb6a8215781", + "start": { + "$date": "2021-11-08T05:43:46.000Z" + }, + "end": { + "$date": "2021-11-08T05:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3cfc3f55-6bac-4a34-b9a0-aaf5245a8028", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T05:51:49.000Z" + }, + "end": { + "$date": "2021-11-08T06:11:04.000Z" + }, + "events": [ + { + "uuid": "ad860493-a8d5-4316-b6cb-65c3007f6824", + "start": { + "$date": "2021-11-08T05:51:49.000Z" + }, + "end": { + "$date": "2021-11-08T06:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6ce7960d-19f7-4de0-9ccb-d0a2250fadcc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-08T05:52:05.000Z" + }, + "end": { + "$date": "2021-11-08T06:03:05.000Z" + }, + "events": [ + { + "uuid": "7f9e26cb-6ac9-474e-a67c-8cb503f58d17", + "start": { + "$date": "2021-11-08T05:52:05.000Z" + }, + "end": { + "$date": "2021-11-08T06:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c28a8f07-f87b-4637-95bf-0587b4195e7e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T06:07:57.000Z" + }, + "end": { + "$date": "2021-11-08T06:31:52.000Z" + }, + "events": [ + { + "uuid": "f25f7c7f-9df0-4ed9-9912-aa06bbfd3f85", + "start": { + "$date": "2021-11-08T06:07:57.000Z" + }, + "end": { + "$date": "2021-11-08T06:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7a0cf068-0387-41fe-b3db-f7358f151ba6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T06:10:10.000Z" + }, + "end": { + "$date": "2021-11-08T07:05:40.000Z" + }, + "events": [ + { + "uuid": "5e0d1427-7f75-411e-bd8b-ee563373ed9d", + "start": { + "$date": "2021-11-08T06:10:10.000Z" + }, + "end": { + "$date": "2021-11-08T07:05:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "808a57fc-8ea4-4c5a-bb08-67c90b7e77ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-08T06:33:18.000Z" + }, + "end": { + "$date": "2021-11-08T07:06:54.000Z" + }, + "events": [ + { + "uuid": "d1881384-15d3-4ea8-bdf1-ab337b6e0299", + "start": { + "$date": "2021-11-08T06:33:18.000Z" + }, + "end": { + "$date": "2021-11-08T07:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "4552ae6a-5701-431d-ad99-054eae3e8150", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-08T06:47:15.000Z" + }, + "end": { + "$date": "2021-11-08T06:56:11.000Z" + }, + "events": [ + { + "uuid": "4832948d-1541-4f3a-ab58-5777b25b1dfd", + "start": { + "$date": "2021-11-08T06:47:15.000Z" + }, + "end": { + "$date": "2021-11-08T06:56:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "108e3d63-58e5-4b24-b1a8-bde5c7919362", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-08T07:25:10.000Z" + }, + "end": { + "$date": "2021-11-08T07:33:20.000Z" + }, + "events": [ + { + "uuid": "0191358b-2757-4a34-afb7-66c03a339348", + "start": { + "$date": "2021-11-08T07:25:10.000Z" + }, + "end": { + "$date": "2021-11-08T07:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e65bb6f-060b-4521-99c3-ce5a89f0e87d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T07:44:55.000Z" + }, + "end": { + "$date": "2021-11-08T08:18:30.000Z" + }, + "events": [ + { + "uuid": "ca3a7827-e4c7-460d-b647-3b951c817229", + "start": { + "$date": "2021-11-08T07:44:55.000Z" + }, + "end": { + "$date": "2021-11-08T08:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35594bf9-7193-45e7-b2c9-3c62c6502e8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T08:24:07.000Z" + }, + "end": { + "$date": "2021-11-08T08:55:30.000Z" + }, + "events": [ + { + "uuid": "ac4248b8-dc9f-47a8-b84d-1ffe1c436661", + "start": { + "$date": "2021-11-08T08:24:07.000Z" + }, + "end": { + "$date": "2021-11-08T08:55:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ee54f42-1009-4e80-8c2f-165d79726fb5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-08T09:00:28.000Z" + }, + "end": { + "$date": "2021-11-08T09:32:53.000Z" + }, + "events": [ + { + "uuid": "805f72e7-54ee-40c7-983c-6685514b678d", + "start": { + "$date": "2021-11-08T09:00:28.000Z" + }, + "end": { + "$date": "2021-11-08T09:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2c9698f2-b379-4d99-b5cc-28445d35a036", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-08T16:55:51.000Z" + }, + "end": { + "$date": "2021-11-08T17:31:38.000Z" + }, + "events": [ + { + "uuid": "5ba413fb-935b-436e-aaa5-f9cb614859e0", + "start": { + "$date": "2021-11-08T16:55:51.000Z" + }, + "end": { + "$date": "2021-11-08T17:31:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "56362560-3167-4b33-9be8-e7ab6b30905f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-08T17:00:50.000Z" + }, + "end": { + "$date": "2021-11-08T18:49:39.000Z" + }, + "events": [ + { + "uuid": "9b9b416d-e73e-4b56-b4cf-b5cd83fd7298", + "start": { + "$date": "2021-11-08T17:00:50.000Z" + }, + "end": { + "$date": "2021-11-08T18:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cc7b7a74-2ce4-417f-90ed-db74c22c3df2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-08T19:13:22.000Z" + }, + "end": { + "$date": "2021-11-08T19:14:23.000Z" + }, + "events": [ + { + "uuid": "70ce1849-8f8f-49de-96ee-853dae744cb5", + "start": { + "$date": "2021-11-08T19:13:22.000Z" + }, + "end": { + "$date": "2021-11-08T19:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "81661b7b-0f9f-42b7-990e-e2be5863924e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-08T19:18:43.000Z" + }, + "end": { + "$date": "2021-11-08T21:20:56.000Z" + }, + "events": [ + { + "uuid": "35dae29d-147a-4607-bee4-e56fd0dcfad9", + "start": { + "$date": "2021-11-08T19:18:43.000Z" + }, + "end": { + "$date": "2021-11-08T21:20:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6fcb36d-d22f-45d3-beb4-57d805b107c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T20:22:04.000Z" + }, + "end": { + "$date": "2021-11-08T20:50:42.000Z" + }, + "events": [ + { + "uuid": "650ae916-0834-42f6-ab33-b1994eea2843", + "start": { + "$date": "2021-11-08T20:22:04.000Z" + }, + "end": { + "$date": "2021-11-08T20:50:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e23a77fa-a2cf-4ad7-ae5b-90c915a4a6fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T20:58:19.000Z" + }, + "end": { + "$date": "2021-11-08T21:43:42.000Z" + }, + "events": [ + { + "uuid": "9eb7085b-a0a5-4bcc-944e-d5e32f89e2b4", + "start": { + "$date": "2021-11-08T20:58:19.000Z" + }, + "end": { + "$date": "2021-11-08T21:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e239632c-46f9-4af0-96bf-d046c7e1aaa8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T22:29:06.000Z" + }, + "end": { + "$date": "2021-11-08T23:03:14.000Z" + }, + "events": [ + { + "uuid": "c57029a8-3098-41ed-9d20-a9b85b81be29", + "start": { + "$date": "2021-11-08T22:29:06.000Z" + }, + "end": { + "$date": "2021-11-08T22:40:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5272ae80-8bf0-452f-9612-a0056e4e42b3", + "start": { + "$date": "2021-11-08T22:40:06.000Z" + }, + "end": { + "$date": "2021-11-08T22:55:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "542ec0f0-a87d-4862-9d32-61e42ac170aa", + "start": { + "$date": "2021-11-08T22:55:06.000Z" + }, + "end": { + "$date": "2021-11-08T23:00:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7163b983-534b-4c27-aff3-0d7672a305f2", + "start": { + "$date": "2021-11-08T23:00:06.000Z" + }, + "end": { + "$date": "2021-11-08T23:01:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "755eba0a-8961-4885-8b1d-0bcb5de2c039", + "start": { + "$date": "2021-11-08T23:01:06.000Z" + }, + "end": { + "$date": "2021-11-08T23:04:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83ef3c07-2b79-42b7-bd66-14d8993716ce", + "start": { + "$date": "2021-11-08T23:04:06.000Z" + }, + "end": { + "$date": "2021-11-08T23:10:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9f2f1a65-b2d8-4a93-9835-105fcbf500b3", + "start": { + "$date": "2021-11-08T23:10:06.000Z" + }, + "end": { + "$date": "2021-11-08T23:03:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f3d3f0a9-6ca9-4dd8-92fb-244c06cada86", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-08T22:26:52.000Z" + }, + "end": { + "$date": "2021-11-08T22:37:53.000Z" + }, + "events": [ + { + "uuid": "2e5d022e-6c29-47a2-9744-89232b46d463", + "start": { + "$date": "2021-11-08T22:26:52.000Z" + }, + "end": { + "$date": "2021-11-08T22:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "0734111b-1168-4830-82ce-9636cb48e0ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-08T22:39:29.000Z" + }, + "end": { + "$date": "2021-11-08T23:52:46.000Z" + }, + "events": [ + { + "uuid": "ca353eea-1b00-4bb0-b876-c5dbe73bf95c", + "start": { + "$date": "2021-11-08T22:39:29.000Z" + }, + "end": { + "$date": "2021-11-08T23:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "635f0329-c364-45a0-abb4-44cd59bc9490", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-08T23:05:20.000Z" + }, + "end": { + "$date": "2021-11-08T23:37:04.000Z" + }, + "events": [ + { + "uuid": "82e20262-0597-42cc-96b6-becee2523d18", + "start": { + "$date": "2021-11-08T23:05:20.000Z" + }, + "end": { + "$date": "2021-11-08T23:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a031883-0350-403b-b0bb-6ff92b68453e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-08T23:53:38.000Z" + }, + "end": { + "$date": "2021-11-09T01:09:29.000Z" + }, + "events": [ + { + "uuid": "80729db3-390e-4f3e-ac97-ed3a9debec50", + "start": { + "$date": "2021-11-08T23:53:38.000Z" + }, + "end": { + "$date": "2021-11-09T01:09:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "18537f93-368e-4815-978d-0fd0e3ccb361", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-08T23:54:51.000Z" + }, + "end": { + "$date": "2021-11-09T04:21:55.000Z" + }, + "events": [ + { + "uuid": "81970a42-f1ea-4a1b-a92f-b18646f64a9d", + "start": { + "$date": "2021-11-08T23:54:51.000Z" + }, + "end": { + "$date": "2021-11-09T01:36:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ab7cc96f-7dad-4a1d-99b4-5d0f98ddaa27", + "start": { + "$date": "2021-11-09T01:36:51.000Z" + }, + "end": { + "$date": "2021-11-09T02:03:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d597445e-e663-4c6d-86f6-8a93fb2fc23b", + "start": { + "$date": "2021-11-09T02:03:51.000Z" + }, + "end": { + "$date": "2021-11-09T02:05:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "271b6d38-543f-4050-b877-43e45837795d", + "start": { + "$date": "2021-11-09T02:05:51.000Z" + }, + "end": { + "$date": "2021-11-09T02:06:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d05aa0f8-7e13-4430-958e-e997611a19dd", + "start": { + "$date": "2021-11-09T02:06:51.000Z" + }, + "end": { + "$date": "2021-11-09T04:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c3606685-6d4d-4e4c-bf02-6e878c44fd26", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-09T00:48:55.000Z" + }, + "end": { + "$date": "2021-11-09T02:13:28.000Z" + }, + "events": [ + { + "uuid": "dff7f19a-981e-48dc-9695-5260d758cb52", + "start": { + "$date": "2021-11-09T00:48:55.000Z" + }, + "end": { + "$date": "2021-11-09T02:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "067b81f0-2970-4926-bab4-cd668db42788", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-09T01:00:15.000Z" + }, + "end": { + "$date": "2021-11-09T01:29:00.000Z" + }, + "events": [ + { + "uuid": "c1672723-9cdb-45a8-b476-631d73d6354d", + "start": { + "$date": "2021-11-09T01:00:15.000Z" + }, + "end": { + "$date": "2021-11-09T01:29:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b46e0e5b-7a0e-4843-be31-c12c804445c1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-09T01:05:12.000Z" + }, + "end": { + "$date": "2021-11-09T06:15:01.000Z" + }, + "events": [ + { + "uuid": "5fdf79f4-8fcb-4470-91c9-e4a4417553b3", + "start": { + "$date": "2021-11-09T01:05:12.000Z" + }, + "end": { + "$date": "2021-11-09T01:48:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c3d3065-50f9-42b0-b1f9-372371c7f3be", + "start": { + "$date": "2021-11-09T01:48:12.000Z" + }, + "end": { + "$date": "2021-11-09T01:51:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2eaf7c37-2a8b-4a1a-bfa5-9c7a27605b0c", + "start": { + "$date": "2021-11-09T01:51:12.000Z" + }, + "end": { + "$date": "2021-11-09T03:34:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff07d411-eb63-4a6c-a9e2-d35f8cb83715", + "start": { + "$date": "2021-11-09T03:34:12.000Z" + }, + "end": { + "$date": "2021-11-09T03:36:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c865ebb3-ea21-4499-8012-a35f3b10c87f", + "start": { + "$date": "2021-11-09T03:36:12.000Z" + }, + "end": { + "$date": "2021-11-09T06:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17ca2152-0bae-4e10-ab8f-310711d57240", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-09T01:42:55.000Z" + }, + "end": { + "$date": "2021-11-09T02:11:35.000Z" + }, + "events": [ + { + "uuid": "c403fa67-3e4c-4a21-be88-e29551712a69", + "start": { + "$date": "2021-11-09T01:42:55.000Z" + }, + "end": { + "$date": "2021-11-09T02:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b33ff4a-5c0c-46e7-bc31-7b751696e4d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-09T01:44:09.000Z" + }, + "end": { + "$date": "2021-11-09T02:11:43.000Z" + }, + "events": [ + { + "uuid": "9655a39a-100b-4b50-a221-c71ae35c2f4e", + "start": { + "$date": "2021-11-09T01:44:09.000Z" + }, + "end": { + "$date": "2021-11-09T02:11:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2d2e3c0-98b9-4cf0-b3e2-ad88851755aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T02:08:02.000Z" + }, + "end": { + "$date": "2021-11-09T02:28:27.000Z" + }, + "events": [ + { + "uuid": "38f8efb5-dff5-44a1-909e-20af2a0e1a1c", + "start": { + "$date": "2021-11-09T02:08:02.000Z" + }, + "end": { + "$date": "2021-11-09T02:28:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "65bc1771-a771-4129-b7b8-145809f186d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-09T03:24:27.000Z" + }, + "end": { + "$date": "2021-11-09T03:25:42.000Z" + }, + "events": [ + { + "uuid": "836bb908-3604-4514-99d3-0fbc5dd1e8b9", + "start": { + "$date": "2021-11-09T03:24:27.000Z" + }, + "end": { + "$date": "2021-11-09T03:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "56c14a07-bad6-40f3-bbbd-f37a221c2d06", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T02:31:17.000Z" + }, + "end": { + "$date": "2021-11-09T03:22:38.000Z" + }, + "events": [ + { + "uuid": "c4d051e5-7c18-4a1e-a68a-129029cc55aa", + "start": { + "$date": "2021-11-09T02:31:17.000Z" + }, + "end": { + "$date": "2021-11-09T03:22:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e089bb81-ea4e-44a0-85a3-ec7188669b7d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-09T02:36:22.000Z" + }, + "end": { + "$date": "2021-11-09T03:14:22.000Z" + }, + "events": [ + { + "uuid": "90ded5c1-1ab8-49ba-b148-f4d0a58a0c43", + "start": { + "$date": "2021-11-09T02:36:22.000Z" + }, + "end": { + "$date": "2021-11-09T03:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2069dec7-b5db-4022-a610-c291cf3a0ade", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-09T05:28:43.000Z" + }, + "end": { + "$date": "2021-11-09T07:31:44.000Z" + }, + "events": [ + { + "uuid": "f4bfedcc-3181-428e-a45c-ebfe9dddb01f", + "start": { + "$date": "2021-11-09T05:28:43.000Z" + }, + "end": { + "$date": "2021-11-09T06:56:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44dd4a29-8eed-4704-9019-8e81d681639a", + "start": { + "$date": "2021-11-09T06:56:43.000Z" + }, + "end": { + "$date": "2021-11-09T07:01:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9f3fc03e-3aac-486a-9d1f-7cf708ca539d", + "start": { + "$date": "2021-11-09T07:01:43.000Z" + }, + "end": { + "$date": "2021-11-09T07:13:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b77275c0-bce2-4460-8bef-06a216f276cf", + "start": { + "$date": "2021-11-09T07:13:43.000Z" + }, + "end": { + "$date": "2021-11-09T08:02:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b526920-0829-4657-b697-a412285d58a6", + "start": { + "$date": "2021-11-09T08:02:43.000Z" + }, + "end": { + "$date": "2021-11-09T07:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6de48e7b-b6ab-49b9-b6ff-4dd906396714", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-09T06:08:34.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:24.000Z" + }, + "events": [ + { + "uuid": "0b44bde3-1dda-426d-b0ac-0946df0ace56", + "start": { + "$date": "2021-11-09T06:08:34.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03dbfb00-20f8-478e-acbd-6215cb4b58a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T04:11:59.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:57.000Z" + }, + "events": [ + { + "uuid": "9a560724-8f34-4cd9-bf30-3fa27e7def88", + "start": { + "$date": "2021-11-09T04:11:59.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1996bef-fcc3-424a-b705-c864733168bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-09T04:12:02.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:51.000Z" + }, + "events": [ + { + "uuid": "9928ffc9-509a-484d-9f7f-deea95b5cb1f", + "start": { + "$date": "2021-11-09T04:12:02.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd460161-d2ec-49dd-b680-4b4d8b857fc1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-09T04:11:07.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:58.000Z" + }, + "events": [ + { + "uuid": "3ec84624-d24d-47d6-ad4d-470cd28a0c3c", + "start": { + "$date": "2021-11-09T04:11:07.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "408f105e-b5c3-4908-9b67-6f8a1dff5401", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-09T04:12:07.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:58.000Z" + }, + "events": [ + { + "uuid": "a602c628-b297-4ff0-b1c2-4fa532830d90", + "start": { + "$date": "2021-11-09T04:12:07.000Z" + }, + "end": { + "$date": "2021-11-09T04:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95b30d65-a2bc-4574-a9fc-febecbf6fe49", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-09T04:29:39.000Z" + }, + "end": { + "$date": "2021-11-09T04:49:49.000Z" + }, + "events": [ + { + "uuid": "99685c5f-0c16-423c-a3e7-b90827b78730", + "start": { + "$date": "2021-11-09T04:29:39.000Z" + }, + "end": { + "$date": "2021-11-09T04:49:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a87c5a01-99d9-4431-9556-ffa5c4e195e1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-09T04:43:00.000Z" + }, + "end": { + "$date": "2021-11-09T05:19:06.000Z" + }, + "events": [ + { + "uuid": "92d7616b-6814-4ff3-a995-40346d4c2859", + "start": { + "$date": "2021-11-09T04:43:00.000Z" + }, + "end": { + "$date": "2021-11-09T05:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c2aa4f5-2865-4578-869d-3f4ffdce9c89", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-09T06:26:16.000Z" + }, + "end": { + "$date": "2021-11-09T06:27:15.000Z" + }, + "events": [ + { + "uuid": "4c241b56-461e-40b8-8e5c-859114638306", + "start": { + "$date": "2021-11-09T06:26:16.000Z" + }, + "end": { + "$date": "2021-11-09T06:27:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ef7eda2-e5e0-489b-b88d-0571705d9e8b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-09T04:54:23.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:04.000Z" + }, + "events": [ + { + "uuid": "1cd79fe2-9903-4637-8cfb-42506be613c3", + "start": { + "$date": "2021-11-09T04:54:23.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "152c5534-a797-4951-b35a-f259da5c84ca", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T04:54:45.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:05.000Z" + }, + "events": [ + { + "uuid": "43032731-7182-456c-b57a-b2244dfe4568", + "start": { + "$date": "2021-11-09T04:54:45.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2da172e5-e488-4590-a1a1-ccc21e8679b0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-09T04:54:24.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:09.000Z" + }, + "events": [ + { + "uuid": "bd7ce58a-de81-4b52-8177-f0eb0b5c96b4", + "start": { + "$date": "2021-11-09T04:54:24.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f9b1ad0-1729-45c4-ac75-51020697d97c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-09T04:54:35.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:13.000Z" + }, + "events": [ + { + "uuid": "637c5c44-0ec8-4bc3-8707-574d26c23bcb", + "start": { + "$date": "2021-11-09T04:54:35.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e9ace7c-709a-4582-9bd6-1bd1ab03f737", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-09T04:54:28.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:08.000Z" + }, + "events": [ + { + "uuid": "2f11c6ad-ef60-4cb5-bdd7-37c234f8a1a1", + "start": { + "$date": "2021-11-09T04:54:28.000Z" + }, + "end": { + "$date": "2021-11-09T05:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "929e7ea8-3fd5-457e-b564-054a99fddddc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-09T05:17:24.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:30.000Z" + }, + "events": [ + { + "uuid": "1013d5f0-e4e7-41f6-baa3-c5f33dfe1e59", + "start": { + "$date": "2021-11-09T05:17:24.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ca75ce3-5ba9-4176-84b1-d1d083c2248a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T05:17:40.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:35.000Z" + }, + "events": [ + { + "uuid": "2268ab2a-e8be-4e25-985f-fe1a862b30c6", + "start": { + "$date": "2021-11-09T05:17:40.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "547d4774-6262-4918-b0b8-3125461414e4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-09T05:17:36.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:33.000Z" + }, + "events": [ + { + "uuid": "df91cce3-374f-4ac3-965c-bd7b886882d0", + "start": { + "$date": "2021-11-09T05:17:36.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2e1db63-2a02-49d7-ab89-62b9f0ee48ad", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-09T05:17:30.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:39.000Z" + }, + "events": [ + { + "uuid": "fb387300-911f-44bf-948c-3d003d5f4aab", + "start": { + "$date": "2021-11-09T05:17:30.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7610843f-e526-431e-93de-ef852aab7ecb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-09T05:17:28.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:29.000Z" + }, + "events": [ + { + "uuid": "6fbe70b3-2669-4034-b1fd-dfc016af0729", + "start": { + "$date": "2021-11-09T05:17:28.000Z" + }, + "end": { + "$date": "2021-11-09T05:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f4ecd51-fc0a-4308-b161-0f4e2ae4556c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-09T05:42:27.000Z" + }, + "end": { + "$date": "2021-11-09T05:46:41.000Z" + }, + "events": [ + { + "uuid": "04f2b418-4383-4b70-9b0e-d8f2c2f48982", + "start": { + "$date": "2021-11-09T05:42:27.000Z" + }, + "end": { + "$date": "2021-11-09T05:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d436d400-44b2-4e86-a9df-d2b20102f565", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-09T05:42:35.000Z" + }, + "end": { + "$date": "2021-11-09T06:05:15.000Z" + }, + "events": [ + { + "uuid": "ffa5f184-d870-42c5-98a7-cd11c332432c", + "start": { + "$date": "2021-11-09T05:42:35.000Z" + }, + "end": { + "$date": "2021-11-09T06:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "097b602e-d03c-4bc5-9f5d-9fc334caa614", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-09T05:42:35.000Z" + }, + "end": { + "$date": "2021-11-09T06:05:10.000Z" + }, + "events": [ + { + "uuid": "46709c29-2d66-4b91-90b9-49d7cb9f0811", + "start": { + "$date": "2021-11-09T05:42:35.000Z" + }, + "end": { + "$date": "2021-11-09T06:05:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29784c52-868d-4e51-b579-ce4e1a86e667", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-09T05:47:25.000Z" + }, + "end": { + "$date": "2021-11-09T05:51:55.000Z" + }, + "events": [ + { + "uuid": "67b88407-e6ee-47e4-a2ae-ff203b25678b", + "start": { + "$date": "2021-11-09T05:47:25.000Z" + }, + "end": { + "$date": "2021-11-09T05:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02ea3239-5f3b-4424-9728-ac56eae233df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-09T06:09:06.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:29.000Z" + }, + "events": [ + { + "uuid": "df4ceec2-a852-415c-8422-efffa71cfd88", + "start": { + "$date": "2021-11-09T06:09:06.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ebdf0e5-fb3d-4771-88d1-bc9601f998aa", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-09T06:08:16.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:21.000Z" + }, + "events": [ + { + "uuid": "d1411849-6d7e-4267-81b6-0713506b42cd", + "start": { + "$date": "2021-11-09T06:08:16.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3649ff0d-3464-4d39-b2ee-9b2ee0a0d8bd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-09T06:08:15.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:15.000Z" + }, + "events": [ + { + "uuid": "41aeb90d-6e84-4aa6-aeed-28119a6d3dcb", + "start": { + "$date": "2021-11-09T06:08:15.000Z" + }, + "end": { + "$date": "2021-11-09T06:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c679dbe5-ab83-42e7-a9a4-bf51777c7acf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-09T06:28:06.000Z" + }, + "end": { + "$date": "2021-11-09T06:32:15.000Z" + }, + "events": [ + { + "uuid": "881076da-7d11-4812-ac21-60fdfdb80c98", + "start": { + "$date": "2021-11-09T06:28:06.000Z" + }, + "end": { + "$date": "2021-11-09T06:32:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7acde8f2-41d0-449f-ad3c-9b1790829af0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-09T06:32:41.000Z" + }, + "end": { + "$date": "2021-11-09T07:46:39.000Z" + }, + "events": [ + { + "uuid": "494f4eed-ddca-4268-85d8-137b624a8fe6", + "start": { + "$date": "2021-11-09T06:32:41.000Z" + }, + "end": { + "$date": "2021-11-09T07:46:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9907d985-163f-44e7-b3eb-d49def910156", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-09T08:11:45.000Z" + }, + "end": { + "$date": "2021-11-09T08:17:49.000Z" + }, + "events": [ + { + "uuid": "69b04ef8-ee41-459d-af4d-1b746df85291", + "start": { + "$date": "2021-11-09T08:11:45.000Z" + }, + "end": { + "$date": "2021-11-09T08:17:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "a66c345e-92e2-449b-9f87-6dd85705b506", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-09T13:41:24.000Z" + }, + "end": { + "$date": "2021-11-09T13:52:17.000Z" + }, + "events": [ + { + "uuid": "26c5fecc-3af2-4464-8b8e-54da78bf39c2", + "start": { + "$date": "2021-11-09T13:41:24.000Z" + }, + "end": { + "$date": "2021-11-09T13:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "34339ed9-5b6b-4d75-ac2d-193e0288d91d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T16:14:22.000Z" + }, + "end": { + "$date": "2021-11-09T16:16:37.000Z" + }, + "events": [ + { + "uuid": "92e348b5-643e-4480-8eb3-a5382718771f", + "start": { + "$date": "2021-11-09T16:14:22.000Z" + }, + "end": { + "$date": "2021-11-09T16:16:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "c3ffd0e1-920e-410f-b112-b394ddbd7f81", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T18:06:47.000Z" + }, + "end": { + "$date": "2021-11-09T18:31:04.000Z" + }, + "events": [ + { + "uuid": "3ff78541-e700-48ac-b391-0b2307d74c28", + "start": { + "$date": "2021-11-09T18:06:47.000Z" + }, + "end": { + "$date": "2021-11-09T18:31:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "0b3e47bb-2c1d-4254-968f-5d287ecca33e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-09T18:47:31.000Z" + }, + "end": { + "$date": "2021-11-09T21:38:16.000Z" + }, + "events": [ + { + "uuid": "f9d21d43-174e-49fe-b197-ba3626539866", + "start": { + "$date": "2021-11-09T18:47:31.000Z" + }, + "end": { + "$date": "2021-11-09T21:38:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "33610408-4a40-47fe-a987-e98b41ef8aff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-09T18:58:39.000Z" + }, + "end": { + "$date": "2021-11-09T19:05:04.000Z" + }, + "events": [ + { + "uuid": "8497c2f0-2b5d-429b-86aa-fba426267814", + "start": { + "$date": "2021-11-09T18:58:39.000Z" + }, + "end": { + "$date": "2021-11-09T19:05:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ccd80c69-61e9-4717-9f98-6f01ae783a3b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-09T23:06:53.000Z" + }, + "end": { + "$date": "2021-11-09T23:38:23.000Z" + }, + "events": [ + { + "uuid": "3c0d0682-fa2c-4d97-8546-e9a572ad7861", + "start": { + "$date": "2021-11-09T23:06:53.000Z" + }, + "end": { + "$date": "2021-11-09T23:38:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5da34e8-b141-40b9-a65b-062a16fa39cc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T00:30:54.000Z" + }, + "end": { + "$date": "2021-11-10T01:08:24.000Z" + }, + "events": [ + { + "uuid": "40718ebb-8f6f-4ce7-b32e-b7f6cde231fc", + "start": { + "$date": "2021-11-10T00:30:54.000Z" + }, + "end": { + "$date": "2021-11-10T01:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "564016a9-2f45-46b3-96a3-b53df18cd468", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-09T23:44:36.000Z" + }, + "end": { + "$date": "2021-11-10T00:38:42.000Z" + }, + "events": [ + { + "uuid": "1388c022-d8bf-4634-b3b9-be8e81d35acb", + "start": { + "$date": "2021-11-09T23:44:36.000Z" + }, + "end": { + "$date": "2021-11-10T00:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddfd236e-ea74-4ac5-886a-f7745f4ef5ce", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T00:30:26.000Z" + }, + "end": { + "$date": "2021-11-10T01:08:27.000Z" + }, + "events": [ + { + "uuid": "c1bb3057-4ecb-4805-80c3-64072d66e01b", + "start": { + "$date": "2021-11-10T00:30:26.000Z" + }, + "end": { + "$date": "2021-11-10T01:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "518daf46-a964-42f3-a8f2-1cda4f528179", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T00:30:38.000Z" + }, + "end": { + "$date": "2021-11-10T01:08:33.000Z" + }, + "events": [ + { + "uuid": "7e64af63-c4bd-4106-96dd-71ae5b1a0546", + "start": { + "$date": "2021-11-10T00:30:38.000Z" + }, + "end": { + "$date": "2021-11-10T01:08:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90e5823a-0afb-4457-82ab-c9c1815a2ee2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T01:18:30.000Z" + }, + "end": { + "$date": "2021-11-10T01:41:40.000Z" + }, + "events": [ + { + "uuid": "dc9ccf2c-8071-4098-b6cb-d8d27a666f5f", + "start": { + "$date": "2021-11-10T01:18:30.000Z" + }, + "end": { + "$date": "2021-11-10T01:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99ec6176-bc59-4e28-9c16-65ff7018748b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T01:15:57.000Z" + }, + "end": { + "$date": "2021-11-10T01:41:47.000Z" + }, + "events": [ + { + "uuid": "7b47d45a-ce27-40ab-aadf-c05746714b24", + "start": { + "$date": "2021-11-10T01:15:57.000Z" + }, + "end": { + "$date": "2021-11-10T01:41:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c1f0d0a-78e8-45ac-b174-5c7b977fcb0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T01:16:00.000Z" + }, + "end": { + "$date": "2021-11-10T01:41:50.000Z" + }, + "events": [ + { + "uuid": "38d5a80d-0c9f-4e65-983f-868a31af952e", + "start": { + "$date": "2021-11-10T01:16:00.000Z" + }, + "end": { + "$date": "2021-11-10T01:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "befe8019-2367-44fa-b265-b6f7a9afb592", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-10T01:12:45.000Z" + }, + "end": { + "$date": "2021-11-10T01:42:28.000Z" + }, + "events": [ + { + "uuid": "ff03ab88-ee33-4911-aef2-c04ac7a9e7e0", + "start": { + "$date": "2021-11-10T01:12:45.000Z" + }, + "end": { + "$date": "2021-11-10T01:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "dc5f1637-bc27-40b5-93a4-5d9ed895fd56", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-10T01:19:17.000Z" + }, + "end": { + "$date": "2021-11-10T01:52:53.000Z" + }, + "events": [ + { + "uuid": "6771e531-c816-4bde-a232-48b5a648b6d0", + "start": { + "$date": "2021-11-10T01:19:17.000Z" + }, + "end": { + "$date": "2021-11-10T01:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c3d93ad-f76a-4238-a176-29f999c46ba4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T02:03:07.000Z" + }, + "end": { + "$date": "2021-11-10T02:37:26.000Z" + }, + "events": [ + { + "uuid": "bfaed31f-2240-47ff-a25f-a925245158d3", + "start": { + "$date": "2021-11-10T02:03:07.000Z" + }, + "end": { + "$date": "2021-11-10T02:37:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4b3f5c7-5cac-48ee-a423-e0605dfde2fa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T01:43:19.000Z" + }, + "end": { + "$date": "2021-11-10T01:47:28.000Z" + }, + "events": [ + { + "uuid": "07894e6a-6788-464c-8695-5c3b162e3532", + "start": { + "$date": "2021-11-10T01:43:19.000Z" + }, + "end": { + "$date": "2021-11-10T01:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f33da93a-fc14-4364-a696-ee984bef2c9c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T01:43:24.000Z" + }, + "end": { + "$date": "2021-11-10T01:47:29.000Z" + }, + "events": [ + { + "uuid": "20d8f93b-f302-4449-b57b-47aa915e41f2", + "start": { + "$date": "2021-11-10T01:43:24.000Z" + }, + "end": { + "$date": "2021-11-10T01:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73bcfda9-882d-489e-b32c-0ac18929b530", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T02:01:39.000Z" + }, + "end": { + "$date": "2021-11-10T02:37:25.000Z" + }, + "events": [ + { + "uuid": "8dd52f67-a04e-4b50-b74d-3839bac019ab", + "start": { + "$date": "2021-11-10T02:01:39.000Z" + }, + "end": { + "$date": "2021-11-10T02:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28487aca-eef7-4af6-97ff-94b7643c0405", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T02:01:53.000Z" + }, + "end": { + "$date": "2021-11-10T02:37:24.000Z" + }, + "events": [ + { + "uuid": "70bec72c-28c8-496b-96e4-6def2fdd398f", + "start": { + "$date": "2021-11-10T02:01:53.000Z" + }, + "end": { + "$date": "2021-11-10T02:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3edb0333-a04a-4292-9fd4-36d2353a1c05", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-10T02:04:00.000Z" + }, + "end": { + "$date": "2021-11-10T02:36:04.000Z" + }, + "events": [ + { + "uuid": "35f1977e-6d18-47cb-b805-281745b7a2d7", + "start": { + "$date": "2021-11-10T02:04:00.000Z" + }, + "end": { + "$date": "2021-11-10T02:18:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "71c7af35-1237-44a3-9ec0-0b854c22023a", + "start": { + "$date": "2021-11-10T02:18:00.000Z" + }, + "end": { + "$date": "2021-11-10T02:22:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2986c9e1-9b5e-452f-a561-1b7a2d33260d", + "start": { + "$date": "2021-11-10T02:22:00.000Z" + }, + "end": { + "$date": "2021-11-10T02:35:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1da0f918-7ab0-45c3-a626-37dd74e9ead5", + "start": { + "$date": "2021-11-10T02:35:00.000Z" + }, + "end": { + "$date": "2021-11-10T02:36:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "70b9eca0-ba9a-4d5a-843e-9906d191a6a8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-10T02:23:24.000Z" + }, + "end": { + "$date": "2021-11-10T03:02:01.000Z" + }, + "events": [ + { + "uuid": "a8757384-667f-473d-9f1d-7ea049b5c616", + "start": { + "$date": "2021-11-10T02:23:24.000Z" + }, + "end": { + "$date": "2021-11-10T03:02:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "076d7de8-eac7-4756-bb81-859a7d6474a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-10T02:36:34.000Z" + }, + "end": { + "$date": "2021-11-10T06:59:03.000Z" + }, + "events": [ + { + "uuid": "3b58c0cd-7a0a-440a-9fbc-78a55134d734", + "start": { + "$date": "2021-11-10T02:36:34.000Z" + }, + "end": { + "$date": "2021-11-10T02:50:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f86989f-c71b-4996-b8da-6509cb45425c", + "start": { + "$date": "2021-11-10T02:50:34.000Z" + }, + "end": { + "$date": "2021-11-10T02:54:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c8c5659b-76cd-4398-826a-ed7c6c38be9c", + "start": { + "$date": "2021-11-10T02:54:34.000Z" + }, + "end": { + "$date": "2021-11-10T05:04:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d03512c-46f9-4578-997c-13060a653a9c", + "start": { + "$date": "2021-11-10T05:04:34.000Z" + }, + "end": { + "$date": "2021-11-10T05:09:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6dd6150a-bffc-4174-bc07-dff068a13529", + "start": { + "$date": "2021-11-10T05:09:34.000Z" + }, + "end": { + "$date": "2021-11-10T05:24:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4f9f0868-9c59-40e0-ad86-bdc0aba145a3", + "start": { + "$date": "2021-11-10T05:24:34.000Z" + }, + "end": { + "$date": "2021-11-10T05:39:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "023a6b99-7d12-4fa4-95af-2ee1812947d2", + "start": { + "$date": "2021-11-10T05:39:34.000Z" + }, + "end": { + "$date": "2021-11-10T06:59:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b04edef8-6aaa-4031-87df-7d4a479c89cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T02:39:27.000Z" + }, + "end": { + "$date": "2021-11-10T03:00:47.000Z" + }, + "events": [ + { + "uuid": "eda4fa7c-b431-46a2-b3d5-c7f3adb323f4", + "start": { + "$date": "2021-11-10T02:39:27.000Z" + }, + "end": { + "$date": "2021-11-10T03:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "415657cf-baaa-4182-b939-0fff606ef975", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T02:41:09.000Z" + }, + "end": { + "$date": "2021-11-10T03:00:45.000Z" + }, + "events": [ + { + "uuid": "dce46936-763b-4d38-98bd-d100f02c6e73", + "start": { + "$date": "2021-11-10T02:41:09.000Z" + }, + "end": { + "$date": "2021-11-10T03:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b634e17-7e8e-4703-9978-fd5cc4013866", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T02:39:44.000Z" + }, + "end": { + "$date": "2021-11-10T03:00:50.000Z" + }, + "events": [ + { + "uuid": "c2746551-2e04-47b0-9320-a43fb2739ef8", + "start": { + "$date": "2021-11-10T02:39:44.000Z" + }, + "end": { + "$date": "2021-11-10T03:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d6d222bd-8e8e-43e7-b757-0868dcae8cfb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-10T02:42:46.000Z" + }, + "end": { + "$date": "2021-11-10T02:53:37.000Z" + }, + "events": [ + { + "uuid": "99e511ec-42cf-4a99-ab6b-44e46db8d612", + "start": { + "$date": "2021-11-10T02:42:46.000Z" + }, + "end": { + "$date": "2021-11-10T02:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cd9ac09-27cb-4321-b542-9c9211fb6860", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T03:01:20.000Z" + }, + "end": { + "$date": "2021-11-10T03:04:07.000Z" + }, + "events": [ + { + "uuid": "656a3bda-c242-4e79-8a55-56ddcfd55ae7", + "start": { + "$date": "2021-11-10T03:01:20.000Z" + }, + "end": { + "$date": "2021-11-10T03:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "732dcdda-2a50-4d54-9cd4-8c57e0c51fd2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T03:04:07.000Z" + }, + "end": { + "$date": "2021-11-10T03:22:32.000Z" + }, + "events": [ + { + "uuid": "a59e4e49-e0b2-4bc4-9c93-2af95de94467", + "start": { + "$date": "2021-11-10T03:04:07.000Z" + }, + "end": { + "$date": "2021-11-10T03:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "434fcc95-bfe8-401e-a0bb-12e4f6a2ec48", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-10T03:05:28.000Z" + }, + "end": { + "$date": "2021-11-10T03:35:02.000Z" + }, + "events": [ + { + "uuid": "5aeab0b5-4b8a-40a4-bfa5-41978945e8b5", + "start": { + "$date": "2021-11-10T03:05:28.000Z" + }, + "end": { + "$date": "2021-11-10T03:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b6b440e6-d899-4be5-9a27-e86b497dfb2c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T03:06:48.000Z" + }, + "end": { + "$date": "2021-11-10T03:32:41.000Z" + }, + "events": [ + { + "uuid": "e29c0045-e288-4973-9a31-9c2032117625", + "start": { + "$date": "2021-11-10T03:06:48.000Z" + }, + "end": { + "$date": "2021-11-10T03:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ad8262a0-be93-45f3-bc03-91c3603a9bb6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-10T06:38:54.000Z" + }, + "end": { + "$date": "2021-11-10T06:54:30.000Z" + }, + "events": [ + { + "uuid": "1f21d839-b8a7-46fe-b516-1502dffedd19", + "start": { + "$date": "2021-11-10T06:38:54.000Z" + }, + "end": { + "$date": "2021-11-10T06:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6f06d41a-ccc6-4dd3-930e-21e9ad579623", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-10T04:53:43.000Z" + }, + "end": { + "$date": "2021-11-10T06:39:09.000Z" + }, + "events": [ + { + "uuid": "969ef17e-f9fa-4cf0-858a-e5b19f515145", + "start": { + "$date": "2021-11-10T04:53:43.000Z" + }, + "end": { + "$date": "2021-11-10T06:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b73fc13f-61ae-4bb9-81a5-1073c257beb9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T05:27:08.000Z" + }, + "end": { + "$date": "2021-11-10T05:48:32.000Z" + }, + "events": [ + { + "uuid": "b7d1fa6d-3ec7-4518-858c-98230ff35d87", + "start": { + "$date": "2021-11-10T05:27:08.000Z" + }, + "end": { + "$date": "2021-11-10T05:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "836831f7-8901-4934-ad3d-53f2081068db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-10T05:27:30.000Z" + }, + "end": { + "$date": "2021-11-10T05:48:32.000Z" + }, + "events": [ + { + "uuid": "a1c2c817-c1d0-40c6-ac19-e3ebd0c00aa2", + "start": { + "$date": "2021-11-10T05:27:30.000Z" + }, + "end": { + "$date": "2021-11-10T05:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bbbfc52-76ba-4027-b31c-433619d0aa41", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T05:28:06.000Z" + }, + "end": { + "$date": "2021-11-10T05:48:35.000Z" + }, + "events": [ + { + "uuid": "f1dc85fc-cc06-4579-a129-a17992eda456", + "start": { + "$date": "2021-11-10T05:28:06.000Z" + }, + "end": { + "$date": "2021-11-10T05:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68f83a86-c3f4-4782-9438-e8c43b2bd755", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-10T05:32:29.000Z" + }, + "end": { + "$date": "2021-11-10T07:03:04.000Z" + }, + "events": [ + { + "uuid": "c7606a02-4f22-4518-a423-d16a73ddb4e9", + "start": { + "$date": "2021-11-10T05:32:29.000Z" + }, + "end": { + "$date": "2021-11-10T06:31:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "be13ce2d-4a13-49c6-b8cb-7e461f20d156", + "start": { + "$date": "2021-11-10T06:31:29.000Z" + }, + "end": { + "$date": "2021-11-10T06:35:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79a7f5b3-721d-45ca-8189-078b5d63aaa1", + "start": { + "$date": "2021-11-10T06:35:29.000Z" + }, + "end": { + "$date": "2021-11-10T06:37:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1daacec0-c598-4262-a859-eacead6c164e", + "start": { + "$date": "2021-11-10T06:37:29.000Z" + }, + "end": { + "$date": "2021-11-10T07:03:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff6905aa-1292-4eab-af71-e1af3e3488d5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T05:50:58.000Z" + }, + "end": { + "$date": "2021-11-10T06:05:58.000Z" + }, + "events": [ + { + "uuid": "91a14ff1-303d-46ae-a565-e5fdd857f6ef", + "start": { + "$date": "2021-11-10T05:50:58.000Z" + }, + "end": { + "$date": "2021-11-10T06:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a977e4dc-eecd-440f-8946-ccd476fc992a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-10T05:51:21.000Z" + }, + "end": { + "$date": "2021-11-10T06:05:57.000Z" + }, + "events": [ + { + "uuid": "03f164d7-1f3a-4b99-bf5d-b7f872fe91b2", + "start": { + "$date": "2021-11-10T05:51:21.000Z" + }, + "end": { + "$date": "2021-11-10T06:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba874381-d030-451f-80e0-788a8b62a71b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T05:52:17.000Z" + }, + "end": { + "$date": "2021-11-10T06:06:03.000Z" + }, + "events": [ + { + "uuid": "5af4919f-a5ca-4e67-8b1a-206c3a06a09c", + "start": { + "$date": "2021-11-10T05:52:17.000Z" + }, + "end": { + "$date": "2021-11-10T06:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d5cd8d1-e5ee-4ca0-ae94-1dd0f98d1b6c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T06:08:44.000Z" + }, + "end": { + "$date": "2021-11-10T06:28:12.000Z" + }, + "events": [ + { + "uuid": "54f7486e-74d3-404e-8908-11ee465d979f", + "start": { + "$date": "2021-11-10T06:08:44.000Z" + }, + "end": { + "$date": "2021-11-10T06:28:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c7862bd-2794-44bb-b67d-5deeaeb4e088", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-10T06:28:06.000Z" + }, + "end": { + "$date": "2021-11-10T06:29:27.000Z" + }, + "events": [ + { + "uuid": "f0c8eabe-d411-49d1-bd6b-2119a26d4d40", + "start": { + "$date": "2021-11-10T06:28:06.000Z" + }, + "end": { + "$date": "2021-11-10T06:29:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49e1913a-c7af-4f89-b94a-e085df2180a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T06:08:07.000Z" + }, + "end": { + "$date": "2021-11-10T06:28:16.000Z" + }, + "events": [ + { + "uuid": "935638f3-b174-4b28-ba8b-f6f6d421ca0e", + "start": { + "$date": "2021-11-10T06:08:07.000Z" + }, + "end": { + "$date": "2021-11-10T06:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ddc25bc9-0b91-4622-a6e6-d57611457712", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-10T07:03:14.000Z" + }, + "end": { + "$date": "2021-11-10T09:29:48.000Z" + }, + "events": [ + { + "uuid": "14dc3697-e9af-4f96-956a-c9ab944cc838", + "start": { + "$date": "2021-11-10T07:03:14.000Z" + }, + "end": { + "$date": "2021-11-10T09:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ea3b610-693b-4280-8d62-19c8e1e85ace", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T08:13:01.000Z" + }, + "end": { + "$date": "2021-11-10T08:26:56.000Z" + }, + "events": [ + { + "uuid": "c6bed296-ef5f-42e6-ac2f-68ecd4ed61d0", + "start": { + "$date": "2021-11-10T08:13:01.000Z" + }, + "end": { + "$date": "2021-11-10T08:26:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "256aa095-12d9-4081-a5f4-bda2000f0a5c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T08:33:13.000Z" + }, + "end": { + "$date": "2021-11-10T09:06:47.000Z" + }, + "events": [ + { + "uuid": "dd5b4be9-9eaf-44ee-9e3d-91d5dffd19b4", + "start": { + "$date": "2021-11-10T08:33:13.000Z" + }, + "end": { + "$date": "2021-11-10T09:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9176e97-96a1-4706-99fc-af52ef42db87", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-10T09:14:51.000Z" + }, + "end": { + "$date": "2021-11-10T09:53:00.000Z" + }, + "events": [ + { + "uuid": "774f6ccc-6d57-4229-a289-61bd562f6cbe", + "start": { + "$date": "2021-11-10T09:14:51.000Z" + }, + "end": { + "$date": "2021-11-10T09:53:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "778ca6d6-748f-46f6-ba13-0e3d4ca5bc43", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T12:00:47.000Z" + }, + "end": { + "$date": "2021-11-10T22:14:16.000Z" + }, + "events": [ + { + "uuid": "ea64b16d-e2dd-4811-ad34-af812b60c961", + "start": { + "$date": "2021-11-10T12:00:47.000Z" + }, + "end": { + "$date": "2021-11-10T22:14:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "5247c96a-3256-4891-9ed9-30f7d0daea97", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-10T17:23:07.000Z" + }, + "end": { + "$date": "2021-11-10T17:40:52.000Z" + }, + "events": [ + { + "uuid": "3ea03c25-28db-467c-80b2-9094b1797450", + "start": { + "$date": "2021-11-10T17:23:07.000Z" + }, + "end": { + "$date": "2021-11-10T17:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a6dd46e1-7188-4e32-852f-23479466311d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-10T19:32:39.000Z" + }, + "end": { + "$date": "2021-11-10T19:32:49.000Z" + }, + "events": [ + { + "uuid": "ba5189eb-7b65-4a39-8934-7ac3e115a93c", + "start": { + "$date": "2021-11-10T19:32:39.000Z" + }, + "end": { + "$date": "2021-11-10T19:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "8651b825-7793-4d8b-b65a-8d8fcb3521b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-10T18:52:42.000Z" + }, + "end": { + "$date": "2021-11-10T19:28:00.000Z" + }, + "events": [ + { + "uuid": "73700c39-8d8b-4831-afd7-772799f95d1e", + "start": { + "$date": "2021-11-10T18:52:42.000Z" + }, + "end": { + "$date": "2021-11-10T19:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "719baeef-c3e0-45d7-a396-d7e3bb491e95", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-10T23:58:30.000Z" + }, + "end": { + "$date": "2021-11-10T23:58:30.000Z" + }, + "events": [ + { + "uuid": "6b663d8f-fb8e-40f4-b3fc-653ff3591a11", + "start": { + "$date": "2021-11-10T23:58:30.000Z" + }, + "end": { + "$date": "2021-11-10T23:58:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "29c56175-3eff-4a6f-be95-59c84eab50a6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-10T23:29:13.000Z" + }, + "end": { + "$date": "2021-11-11T01:11:32.000Z" + }, + "events": [ + { + "uuid": "53be1bcc-b6bb-4272-a160-79798e4cf0d6", + "start": { + "$date": "2021-11-10T23:29:13.000Z" + }, + "end": { + "$date": "2021-11-11T01:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32ce0c8c-e7dd-4c62-8143-c8c3e3e0a5ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T00:44:55.000Z" + }, + "end": { + "$date": "2021-11-11T01:13:45.000Z" + }, + "events": [ + { + "uuid": "f82ce0f3-afd7-448d-83ac-5ec9d69096ce", + "start": { + "$date": "2021-11-11T00:44:55.000Z" + }, + "end": { + "$date": "2021-11-11T01:07:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1912ef62-cc0e-4ab6-91c1-386d021ad572", + "start": { + "$date": "2021-11-11T01:07:55.000Z" + }, + "end": { + "$date": "2021-11-11T01:16:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "72c0a1fd-603d-4789-8698-596014ef109b", + "start": { + "$date": "2021-11-11T01:16:55.000Z" + }, + "end": { + "$date": "2021-11-11T01:19:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "859741a6-2cd1-4e12-a784-fdb358880e62", + "start": { + "$date": "2021-11-11T01:19:55.000Z" + }, + "end": { + "$date": "2021-11-11T01:23:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7bfe0bf5-5a8d-4bbb-a639-6f560dfdee7c", + "start": { + "$date": "2021-11-11T01:23:55.000Z" + }, + "end": { + "$date": "2021-11-11T01:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "cb12d9be-0079-4f3b-86cf-a8b2541b9465", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-11T00:15:56.000Z" + }, + "end": { + "$date": "2021-11-11T01:34:16.000Z" + }, + "events": [ + { + "uuid": "18615123-a154-4e8b-8d27-3ac991e2572c", + "start": { + "$date": "2021-11-11T00:15:56.000Z" + }, + "end": { + "$date": "2021-11-11T01:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6dba8432-9942-4de1-9ed4-744fff052882", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T00:44:59.000Z" + }, + "end": { + "$date": "2021-11-11T01:13:57.000Z" + }, + "events": [ + { + "uuid": "5aa6d754-c092-4434-9c2d-8fd822dfb970", + "start": { + "$date": "2021-11-11T00:44:59.000Z" + }, + "end": { + "$date": "2021-11-11T01:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56c52585-9202-4c95-ad5b-ba8c9d026948", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T01:33:46.000Z" + }, + "end": { + "$date": "2021-11-11T01:49:37.000Z" + }, + "events": [ + { + "uuid": "a6159a1e-59f3-492f-b278-bf558e76566a", + "start": { + "$date": "2021-11-11T01:33:46.000Z" + }, + "end": { + "$date": "2021-11-11T01:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "24cd2e18-0cf8-4c19-90d5-3cea7c6a1317", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-11T01:19:09.000Z" + }, + "end": { + "$date": "2021-11-11T01:53:58.000Z" + }, + "events": [ + { + "uuid": "da4d8c9f-c093-4096-ad9d-e1b9c0ed12ca", + "start": { + "$date": "2021-11-11T01:19:09.000Z" + }, + "end": { + "$date": "2021-11-11T01:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4b60d05-d3db-4078-9602-3335a9ab6185", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T01:33:49.000Z" + }, + "end": { + "$date": "2021-11-11T01:49:46.000Z" + }, + "events": [ + { + "uuid": "83b74bd8-0910-435f-bb0d-638e1f949784", + "start": { + "$date": "2021-11-11T01:33:49.000Z" + }, + "end": { + "$date": "2021-11-11T01:49:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49366418-5948-40eb-9b03-5bbdb5bb6e26", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T01:33:43.000Z" + }, + "end": { + "$date": "2021-11-11T01:49:45.000Z" + }, + "events": [ + { + "uuid": "74180987-6c60-4fac-9151-559ca1f65e20", + "start": { + "$date": "2021-11-11T01:33:43.000Z" + }, + "end": { + "$date": "2021-11-11T01:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a85994d-0ca4-437f-adec-7aff6f9d79a8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T01:52:02.000Z" + }, + "end": { + "$date": "2021-11-11T02:05:37.000Z" + }, + "events": [ + { + "uuid": "6d040df5-13f2-4078-90cf-038ceacf2ee2", + "start": { + "$date": "2021-11-11T01:52:02.000Z" + }, + "end": { + "$date": "2021-11-11T02:05:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2185850-3bc1-4125-8f93-073c6e207ae8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T01:52:00.000Z" + }, + "end": { + "$date": "2021-11-11T02:05:36.000Z" + }, + "events": [ + { + "uuid": "28d28a53-96c1-4544-8ace-bc36e7cd97dd", + "start": { + "$date": "2021-11-11T01:52:00.000Z" + }, + "end": { + "$date": "2021-11-11T02:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "207fa4d3-0f1c-4970-8816-c03c47cbc836", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T01:52:05.000Z" + }, + "end": { + "$date": "2021-11-11T02:05:41.000Z" + }, + "events": [ + { + "uuid": "d971e583-e3ac-407f-8778-863aea232e8d", + "start": { + "$date": "2021-11-11T01:52:05.000Z" + }, + "end": { + "$date": "2021-11-11T02:05:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71e3ec9c-88a4-4b9e-9a1c-443fb1166ddd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T02:08:45.000Z" + }, + "end": { + "$date": "2021-11-11T02:31:58.000Z" + }, + "events": [ + { + "uuid": "3a04ac71-5d0d-4900-ad77-536071a21b4d", + "start": { + "$date": "2021-11-11T02:08:45.000Z" + }, + "end": { + "$date": "2021-11-11T02:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42138ead-4d77-45e6-b6f0-73d5bef28f14", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T02:08:37.000Z" + }, + "end": { + "$date": "2021-11-11T02:31:53.000Z" + }, + "events": [ + { + "uuid": "f8baf600-2e7a-4d91-8b60-2b9f9c3d7d5b", + "start": { + "$date": "2021-11-11T02:08:37.000Z" + }, + "end": { + "$date": "2021-11-11T02:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30211b6d-4d53-42f4-9ca9-15c0efc569e3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T02:08:46.000Z" + }, + "end": { + "$date": "2021-11-11T02:31:57.000Z" + }, + "events": [ + { + "uuid": "5f9aeb81-01b5-4657-831a-a8330be362e8", + "start": { + "$date": "2021-11-11T02:08:46.000Z" + }, + "end": { + "$date": "2021-11-11T02:31:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cf8601a2-e476-40d1-be27-bfa368e6745a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T02:21:29.000Z" + }, + "end": { + "$date": "2021-11-11T02:34:10.000Z" + }, + "events": [ + { + "uuid": "04d75782-9db0-4627-a203-48e6833db8e8", + "start": { + "$date": "2021-11-11T02:21:29.000Z" + }, + "end": { + "$date": "2021-11-11T02:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8ba2544c-c1d6-478c-a82f-b32549d45089", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-11T02:21:51.000Z" + }, + "end": { + "$date": "2021-11-11T02:38:48.000Z" + }, + "events": [ + { + "uuid": "c96cd788-fc55-4e5b-be30-3bfaefc5e58f", + "start": { + "$date": "2021-11-11T02:21:51.000Z" + }, + "end": { + "$date": "2021-11-11T02:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e234becb-eeac-493e-a305-2f171976ebd9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T02:34:18.000Z" + }, + "end": { + "$date": "2021-11-11T02:49:58.000Z" + }, + "events": [ + { + "uuid": "162ced56-04d5-41e0-95b3-8160ebc699b4", + "start": { + "$date": "2021-11-11T02:34:18.000Z" + }, + "end": { + "$date": "2021-11-11T02:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74f60bc6-1169-4409-b89e-e6fa82966ae6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T02:34:18.000Z" + }, + "end": { + "$date": "2021-11-11T02:49:55.000Z" + }, + "events": [ + { + "uuid": "5f6aa981-aeb8-41f3-aa79-0df703747e70", + "start": { + "$date": "2021-11-11T02:34:18.000Z" + }, + "end": { + "$date": "2021-11-11T02:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4e3f550-f2cc-46e4-90de-df819f6356d1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T02:34:16.000Z" + }, + "end": { + "$date": "2021-11-11T02:50:05.000Z" + }, + "events": [ + { + "uuid": "e2963f05-85d6-41e4-bbef-ab7a76ede89d", + "start": { + "$date": "2021-11-11T02:34:16.000Z" + }, + "end": { + "$date": "2021-11-11T02:50:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "a0de645f-2edc-45b8-a9d4-866f0b8f9d19", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-11T02:37:32.000Z" + }, + "end": { + "$date": "2021-11-11T05:34:19.000Z" + }, + "events": [ + { + "uuid": "80f9fee1-310e-4cf8-9fa8-915eb91d4781", + "start": { + "$date": "2021-11-11T02:37:32.000Z" + }, + "end": { + "$date": "2021-11-11T05:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a9b6df36-c829-4484-ad02-29b9e8af2823", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-11T02:38:58.000Z" + }, + "end": { + "$date": "2021-11-11T06:46:05.000Z" + }, + "events": [ + { + "uuid": "e4ea983e-b543-4431-9f6b-bcb26efa5473", + "start": { + "$date": "2021-11-11T02:38:58.000Z" + }, + "end": { + "$date": "2021-11-11T06:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f6955619-fbdc-4718-a744-69905326b93a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T02:40:50.000Z" + }, + "end": { + "$date": "2021-11-11T02:45:05.000Z" + }, + "events": [ + { + "uuid": "580d2127-fceb-4db2-8c96-628114c9da00", + "start": { + "$date": "2021-11-11T02:40:50.000Z" + }, + "end": { + "$date": "2021-11-11T02:45:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c3ed3eb-39df-44cc-89f2-16f9b00ccf49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T02:52:58.000Z" + }, + "end": { + "$date": "2021-11-11T02:58:44.000Z" + }, + "events": [ + { + "uuid": "56947685-5923-4b95-9c45-5b1ddb8c4373", + "start": { + "$date": "2021-11-11T02:52:58.000Z" + }, + "end": { + "$date": "2021-11-11T02:58:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6a7dada4-6912-46c2-9775-9c5c64a16b6a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T02:55:11.000Z" + }, + "end": { + "$date": "2021-11-11T02:57:42.000Z" + }, + "events": [ + { + "uuid": "197b6962-b3bd-4af9-ac01-8a3e0555c22c", + "start": { + "$date": "2021-11-11T02:55:11.000Z" + }, + "end": { + "$date": "2021-11-11T02:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ee03cde-559f-4072-9493-fc9db44295bd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T03:56:51.000Z" + }, + "end": { + "$date": "2021-11-11T03:56:52.000Z" + }, + "events": [ + { + "uuid": "04faac76-8896-4de8-bef6-db10d9649698", + "start": { + "$date": "2021-11-11T03:56:51.000Z" + }, + "end": { + "$date": "2021-11-11T03:56:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e9aa3dd7-79cb-434a-b0c2-9c158b699711", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T03:04:17.000Z" + }, + "end": { + "$date": "2021-11-11T03:08:42.000Z" + }, + "events": [ + { + "uuid": "e3176d4f-624f-4654-b7f2-fe4c436400b2", + "start": { + "$date": "2021-11-11T03:04:17.000Z" + }, + "end": { + "$date": "2021-11-11T03:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bd16baf3-50a6-4309-a759-332abc9e6e9a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-11T03:04:42.000Z" + }, + "end": { + "$date": "2021-11-11T06:04:52.000Z" + }, + "events": [ + { + "uuid": "b1c10165-908a-4a6b-b84c-eb7589d037d3", + "start": { + "$date": "2021-11-11T03:04:42.000Z" + }, + "end": { + "$date": "2021-11-11T06:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2ad6b277-c537-4fb8-91e2-e020cc485533", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-11T03:16:17.000Z" + }, + "end": { + "$date": "2021-11-11T07:17:15.000Z" + }, + "events": [ + { + "uuid": "42ec9ea0-9bd4-4547-92c7-f76cf0856feb", + "start": { + "$date": "2021-11-11T03:16:17.000Z" + }, + "end": { + "$date": "2021-11-11T07:17:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5ca134b8-613d-4f88-9579-cd09bba5170f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T03:19:28.000Z" + }, + "end": { + "$date": "2021-11-11T03:22:19.000Z" + }, + "events": [ + { + "uuid": "85e6fcfb-44da-428a-aa51-6046c2bfcbba", + "start": { + "$date": "2021-11-11T03:19:28.000Z" + }, + "end": { + "$date": "2021-11-11T03:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "692cd07b-f5ea-4212-bb3e-3256f5c5c67a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-11T03:22:04.000Z" + }, + "end": { + "$date": "2021-11-11T03:39:24.000Z" + }, + "events": [ + { + "uuid": "b138794b-f756-4e2b-a09f-ce2201185d42", + "start": { + "$date": "2021-11-11T03:22:04.000Z" + }, + "end": { + "$date": "2021-11-11T03:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f2ebb020-3318-43d2-8a19-d4bdea5a8477", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T03:28:49.000Z" + }, + "end": { + "$date": "2021-11-11T03:32:55.000Z" + }, + "events": [ + { + "uuid": "c9dd4299-913d-420d-8bb0-67346447181f", + "start": { + "$date": "2021-11-11T03:28:49.000Z" + }, + "end": { + "$date": "2021-11-11T03:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d654730d-cffe-4fd5-bc6c-a9512a97b69c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T03:40:40.000Z" + }, + "end": { + "$date": "2021-11-11T03:43:16.000Z" + }, + "events": [ + { + "uuid": "ea8bf394-6f96-4126-8947-6077bf6caf71", + "start": { + "$date": "2021-11-11T03:40:40.000Z" + }, + "end": { + "$date": "2021-11-11T03:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c9d7992d-60ed-429c-a2b0-0555bfd69051", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T03:49:56.000Z" + }, + "end": { + "$date": "2021-11-11T03:52:56.000Z" + }, + "events": [ + { + "uuid": "b8849d50-261a-4814-b229-5d12a401235f", + "start": { + "$date": "2021-11-11T03:49:56.000Z" + }, + "end": { + "$date": "2021-11-11T03:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20199d3f-fc3a-4603-934b-6d5d46fc197a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T04:03:37.000Z" + }, + "end": { + "$date": "2021-11-11T04:32:17.000Z" + }, + "events": [ + { + "uuid": "30234d63-5d68-4c45-b1ea-166c8d86b751", + "start": { + "$date": "2021-11-11T04:03:37.000Z" + }, + "end": { + "$date": "2021-11-11T04:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e2f6737-4376-4ec3-a5fc-ae3fb68e177d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T04:03:33.000Z" + }, + "end": { + "$date": "2021-11-11T04:32:18.000Z" + }, + "events": [ + { + "uuid": "a10095ab-5526-4880-82c9-8e1416220b69", + "start": { + "$date": "2021-11-11T04:03:33.000Z" + }, + "end": { + "$date": "2021-11-11T04:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5bff0b13-18a7-4279-8c6e-f8c860292be8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T04:02:22.000Z" + }, + "end": { + "$date": "2021-11-11T04:05:47.000Z" + }, + "events": [ + { + "uuid": "d7136ec1-3f3f-4d53-b1fe-51550266e2e8", + "start": { + "$date": "2021-11-11T04:02:22.000Z" + }, + "end": { + "$date": "2021-11-11T04:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ef78f238-f4f5-4fc7-bcc1-52d0ca2f6760", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T04:16:39.000Z" + }, + "end": { + "$date": "2021-11-11T04:21:39.000Z" + }, + "events": [ + { + "uuid": "d3e0debb-44fb-41b6-9387-61f4923a46cd", + "start": { + "$date": "2021-11-11T04:16:39.000Z" + }, + "end": { + "$date": "2021-11-11T04:21:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5507c951-f816-4a42-9723-545396df39c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T04:38:12.000Z" + }, + "end": { + "$date": "2021-11-11T05:00:03.000Z" + }, + "events": [ + { + "uuid": "6a826ff1-637f-441d-9611-dfa132870609", + "start": { + "$date": "2021-11-11T04:38:12.000Z" + }, + "end": { + "$date": "2021-11-11T05:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "063c2d4f-3903-4cf7-b294-0850032caa73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T04:38:10.000Z" + }, + "end": { + "$date": "2021-11-11T05:00:10.000Z" + }, + "events": [ + { + "uuid": "5118ae19-40b8-49bf-ad92-ee883740cb3b", + "start": { + "$date": "2021-11-11T04:38:10.000Z" + }, + "end": { + "$date": "2021-11-11T05:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8fe66315-cbeb-4f38-9e22-7d38591dad5e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-11T04:40:05.000Z" + }, + "end": { + "$date": "2021-11-11T04:40:11.000Z" + }, + "events": [ + { + "uuid": "3318ff3f-9391-4f5c-a1d3-2a2e4f9628f6", + "start": { + "$date": "2021-11-11T04:40:05.000Z" + }, + "end": { + "$date": "2021-11-11T04:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18c92fde-6ff1-4e89-b9b9-373706cb8ec2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-11T05:05:43.000Z" + }, + "end": { + "$date": "2021-11-11T05:46:49.000Z" + }, + "events": [ + { + "uuid": "2476b0e9-ce21-4410-a532-3c1d43199481", + "start": { + "$date": "2021-11-11T05:05:43.000Z" + }, + "end": { + "$date": "2021-11-11T05:46:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2374da5f-77af-405e-89b9-5264ea7ed57e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T05:05:47.000Z" + }, + "end": { + "$date": "2021-11-11T05:46:58.000Z" + }, + "events": [ + { + "uuid": "cc58ca1a-a0ae-47e5-bdb8-b042dbdf4dcc", + "start": { + "$date": "2021-11-11T05:05:47.000Z" + }, + "end": { + "$date": "2021-11-11T05:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54ff1c41-00a8-4534-859b-b6f0ed04a532", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-11T05:35:45.000Z" + }, + "end": { + "$date": "2021-11-11T05:57:36.000Z" + }, + "events": [ + { + "uuid": "97541467-f8d6-4fa8-b6f6-0372f5b1ab52", + "start": { + "$date": "2021-11-11T05:35:45.000Z" + }, + "end": { + "$date": "2021-11-11T05:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a62c73b-7220-4a7d-80bd-09d8e59e9600", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-11T05:33:18.000Z" + }, + "end": { + "$date": "2021-11-11T05:36:36.000Z" + }, + "events": [ + { + "uuid": "e76bdd99-ea5b-4974-8ded-015002666170", + "start": { + "$date": "2021-11-11T05:33:18.000Z" + }, + "end": { + "$date": "2021-11-11T05:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "191ea811-42f0-45c5-a266-8d1d60047504", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-11T05:52:53.000Z" + }, + "end": { + "$date": "2021-11-11T10:06:43.000Z" + }, + "events": [ + { + "uuid": "f24905e4-7c0f-4590-ac4c-59a1f1f70df8", + "start": { + "$date": "2021-11-11T05:52:53.000Z" + }, + "end": { + "$date": "2021-11-11T10:06:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7cfa9c9d-6113-41ab-82c5-918a8d000c7e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-11T06:05:12.000Z" + }, + "end": { + "$date": "2021-11-11T06:24:32.000Z" + }, + "events": [ + { + "uuid": "e143e559-192e-4e62-b0e7-86853f798a02", + "start": { + "$date": "2021-11-11T06:05:12.000Z" + }, + "end": { + "$date": "2021-11-11T06:24:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "bea073d1-0332-48d3-9655-76dacb6f386a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-11T06:01:02.000Z" + }, + "end": { + "$date": "2021-11-11T08:34:00.000Z" + }, + "events": [ + { + "uuid": "07cc7412-48dc-4b82-8f4e-8d00169141d9", + "start": { + "$date": "2021-11-11T06:01:02.000Z" + }, + "end": { + "$date": "2021-11-11T08:01:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "985718b0-64b3-4f7f-9ed7-2865855badc8", + "start": { + "$date": "2021-11-11T08:01:02.000Z" + }, + "end": { + "$date": "2021-11-11T08:34:00.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3a789f54-fc8a-4b7d-8803-24e5e773f3a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-11T06:16:38.000Z" + }, + "end": { + "$date": "2021-11-11T06:35:06.000Z" + }, + "events": [ + { + "uuid": "415513ca-de75-4e65-bb4e-8c659538d179", + "start": { + "$date": "2021-11-11T06:16:38.000Z" + }, + "end": { + "$date": "2021-11-11T06:35:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a888ead-fc78-4028-ba2b-320a0ab95a4a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-11T06:28:27.000Z" + }, + "end": { + "$date": "2021-11-11T06:46:23.000Z" + }, + "events": [ + { + "uuid": "ed8eea8e-3911-4887-9863-71977380a415", + "start": { + "$date": "2021-11-11T06:28:27.000Z" + }, + "end": { + "$date": "2021-11-11T06:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5b69134-d2e4-46f0-897b-dc88b6d5fb46", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T08:59:25.000Z" + }, + "end": { + "$date": "2021-11-11T09:22:17.000Z" + }, + "events": [ + { + "uuid": "64907d3a-18d9-42ec-9fce-603850af3ddf", + "start": { + "$date": "2021-11-11T08:59:25.000Z" + }, + "end": { + "$date": "2021-11-11T09:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc4c0ca4-0aad-47b0-b382-bb487c791e35", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T09:26:26.000Z" + }, + "end": { + "$date": "2021-11-11T10:05:16.000Z" + }, + "events": [ + { + "uuid": "6c89438e-2764-4822-bce2-cd062eba91d0", + "start": { + "$date": "2021-11-11T09:26:26.000Z" + }, + "end": { + "$date": "2021-11-11T10:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc2bb9a6-01c1-46e1-93e4-c3b2171156fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-11T10:09:58.000Z" + }, + "end": { + "$date": "2021-11-11T10:43:36.000Z" + }, + "events": [ + { + "uuid": "fa70e681-6426-4d4f-bc99-dd5db92d6285", + "start": { + "$date": "2021-11-11T10:09:58.000Z" + }, + "end": { + "$date": "2021-11-11T10:43:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc304003-314d-42af-a270-51d6efccba5c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-11T13:24:32.000Z" + }, + "end": { + "$date": "2021-11-11T13:53:03.000Z" + }, + "events": [ + { + "uuid": "012ff05b-a6e9-4d55-ac1d-29f958e59f69", + "start": { + "$date": "2021-11-11T13:24:32.000Z" + }, + "end": { + "$date": "2021-11-11T13:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "0efc120c-a441-4958-bc3e-5753b27ccd0f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-11T17:27:54.000Z" + }, + "end": { + "$date": "2021-11-11T17:30:39.000Z" + }, + "events": [ + { + "uuid": "27c9603d-17f4-4a45-9051-57fa528c7bcd", + "start": { + "$date": "2021-11-11T17:27:54.000Z" + }, + "end": { + "$date": "2021-11-11T17:30:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "8068dc80-a7e9-46c2-aa36-7473a0444e99", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-11T17:33:59.000Z" + }, + "end": { + "$date": "2021-11-11T18:42:36.000Z" + }, + "events": [ + { + "uuid": "a898b10a-f23b-43c0-84f1-17f4e1403e27", + "start": { + "$date": "2021-11-11T17:33:59.000Z" + }, + "end": { + "$date": "2021-11-11T18:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "caeb71af-775e-43b3-acdf-006cf985fa20", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-11T18:15:48.000Z" + }, + "end": { + "$date": "2021-11-11T18:55:50.000Z" + }, + "events": [ + { + "uuid": "1bfee257-f935-45ce-9d6e-9b980d90b62a", + "start": { + "$date": "2021-11-11T18:15:48.000Z" + }, + "end": { + "$date": "2021-11-11T18:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "79865617-819d-495a-86b8-b5f0a5bb36e6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T18:38:22.000Z" + }, + "end": { + "$date": "2021-11-11T18:42:59.000Z" + }, + "events": [ + { + "uuid": "317dd4fc-cbe3-471b-9991-c7b97c7cd568", + "start": { + "$date": "2021-11-11T18:38:22.000Z" + }, + "end": { + "$date": "2021-11-11T18:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bafcf736-41b2-423a-a791-fd18142e7217", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-11T18:44:23.000Z" + }, + "end": { + "$date": "2021-11-11T19:44:55.000Z" + }, + "events": [ + { + "uuid": "11fb31f9-7d95-4767-b480-622bed52af49", + "start": { + "$date": "2021-11-11T18:44:23.000Z" + }, + "end": { + "$date": "2021-11-11T19:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "93a785be-9881-4b09-98bb-5c70abfe8f32", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T19:49:41.000Z" + }, + "end": { + "$date": "2021-11-11T19:51:46.000Z" + }, + "events": [ + { + "uuid": "b36558fe-81e3-47e7-954f-d65d891e14e6", + "start": { + "$date": "2021-11-11T19:49:41.000Z" + }, + "end": { + "$date": "2021-11-11T19:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "6d4a1ef7-6089-46cb-a7bd-981849c54824", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-11T19:52:16.000Z" + }, + "end": { + "$date": "2021-11-11T20:34:19.000Z" + }, + "events": [ + { + "uuid": "09534673-86ce-4880-92a2-00c855de5985", + "start": { + "$date": "2021-11-11T19:52:16.000Z" + }, + "end": { + "$date": "2021-11-11T20:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "7d994ffa-4964-4022-b74b-e47a12646100", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-11T20:39:58.000Z" + }, + "end": { + "$date": "2021-11-11T21:14:09.000Z" + }, + "events": [ + { + "uuid": "1eaf7089-ac12-4ec6-8b8e-195c6885c8ca", + "start": { + "$date": "2021-11-11T20:39:58.000Z" + }, + "end": { + "$date": "2021-11-11T21:14:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1d58b34e-61c7-4556-8bc3-78180c87d7d6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-11T20:59:43.000Z" + }, + "end": { + "$date": "2021-11-12T01:23:37.000Z" + }, + "events": [ + { + "uuid": "1ce279fb-cf90-4129-9cf1-cf6c8b2e282c", + "start": { + "$date": "2021-11-11T20:59:43.000Z" + }, + "end": { + "$date": "2021-11-12T01:23:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "fb0438a2-75ff-4afb-9b08-de0a370dd8a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-11T21:15:50.000Z" + }, + "end": { + "$date": "2021-11-11T21:34:12.000Z" + }, + "events": [ + { + "uuid": "bf46e2b7-e024-4653-9b64-bacb01d1540a", + "start": { + "$date": "2021-11-11T21:15:50.000Z" + }, + "end": { + "$date": "2021-11-11T21:34:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "f615c307-75af-4d79-aec0-6639bdc8c093", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T21:18:01.000Z" + }, + "end": { + "$date": "2021-11-11T21:19:06.000Z" + }, + "events": [ + { + "uuid": "3c3a6737-4354-4aa7-a649-f82d0e1650ea", + "start": { + "$date": "2021-11-11T21:18:01.000Z" + }, + "end": { + "$date": "2021-11-11T21:19:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "1545b139-d975-45a9-b39e-1c7d4963c62a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T21:24:47.000Z" + }, + "end": { + "$date": "2021-11-11T21:25:27.000Z" + }, + "events": [ + { + "uuid": "ce7e6d88-b1f1-489c-9bc7-4613a86a678e", + "start": { + "$date": "2021-11-11T21:24:47.000Z" + }, + "end": { + "$date": "2021-11-11T21:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "634e801a-5947-4086-a278-04a3dab87db6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T21:36:15.000Z" + }, + "end": { + "$date": "2021-11-11T21:36:20.000Z" + }, + "events": [ + { + "uuid": "67c82d6b-c162-466d-80d3-d7495eb26fba", + "start": { + "$date": "2021-11-11T21:36:15.000Z" + }, + "end": { + "$date": "2021-11-11T21:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "e3e83908-7ddd-4b16-8104-36e563e884b8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-11T23:21:10.000Z" + }, + "end": { + "$date": "2021-11-12T00:08:07.000Z" + }, + "events": [ + { + "uuid": "26845636-fe18-4c7a-8c92-3ff622381c29", + "start": { + "$date": "2021-11-11T23:21:10.000Z" + }, + "end": { + "$date": "2021-11-12T00:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad6d4954-2ed5-4783-b41d-707b359c1609", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T00:03:21.000Z" + }, + "end": { + "$date": "2021-11-12T00:10:41.000Z" + }, + "events": [ + { + "uuid": "797dc65c-8994-43ac-8ee8-00c99af80aca", + "start": { + "$date": "2021-11-12T00:03:21.000Z" + }, + "end": { + "$date": "2021-11-12T00:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a18fef32-47f5-4828-a6d3-26535aeb9c80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T00:44:52.000Z" + }, + "end": { + "$date": "2021-11-12T00:44:49.000Z" + }, + "events": [ + { + "uuid": "44793fbb-e47c-4bd7-a120-7a4a54bf7a9a", + "start": { + "$date": "2021-11-12T00:44:52.000Z" + }, + "end": { + "$date": "2021-11-12T00:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "9a15e773-60ad-4326-b66a-2683ed37964d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T00:24:30.000Z" + }, + "end": { + "$date": "2021-11-12T00:27:46.000Z" + }, + "events": [ + { + "uuid": "4923df07-18eb-44ee-8097-9a39b9f6b10f", + "start": { + "$date": "2021-11-12T00:24:30.000Z" + }, + "end": { + "$date": "2021-11-12T00:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "8b8fa9fd-d875-48a1-a155-40a15cffece0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-11-12T00:40:48.000Z" + }, + "end": { + "$date": "2021-11-12T02:09:02.000Z" + }, + "events": [ + { + "uuid": "6ae44122-ceeb-47ca-9112-c429d0bf2d0a", + "start": { + "$date": "2021-11-12T00:40:48.000Z" + }, + "end": { + "$date": "2021-11-12T02:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "020a99bf-e179-42af-9d0b-8f8a131586b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T00:55:06.000Z" + }, + "end": { + "$date": "2021-11-12T01:23:19.000Z" + }, + "events": [ + { + "uuid": "0bd4172b-f2da-4bcf-ad59-6a7fe696031f", + "start": { + "$date": "2021-11-12T00:55:06.000Z" + }, + "end": { + "$date": "2021-11-12T01:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b5962b8-ec37-49ef-b2f2-1d515104690a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T00:55:05.000Z" + }, + "end": { + "$date": "2021-11-12T01:23:16.000Z" + }, + "events": [ + { + "uuid": "4a931654-9825-4157-a19a-f39f7ec34ea7", + "start": { + "$date": "2021-11-12T00:55:05.000Z" + }, + "end": { + "$date": "2021-11-12T01:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4ea6adc-8403-40d7-8a35-2f1085045562", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T01:27:58.000Z" + }, + "end": { + "$date": "2021-11-12T01:54:46.000Z" + }, + "events": [ + { + "uuid": "850b31e5-a2c9-4a7f-baf3-3d5e94859b1c", + "start": { + "$date": "2021-11-12T01:27:58.000Z" + }, + "end": { + "$date": "2021-11-12T01:54:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "afe6dac0-9637-426a-b0ad-375e9e032ee1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T01:44:43.000Z" + }, + "end": { + "$date": "2021-11-12T02:38:40.000Z" + }, + "events": [ + { + "uuid": "5c6236ef-bd52-4e80-bae8-74f06ae25b64", + "start": { + "$date": "2021-11-12T01:44:43.000Z" + }, + "end": { + "$date": "2021-11-12T02:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6689436f-fa42-4883-a75c-67dd606961d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T02:37:05.000Z" + }, + "end": { + "$date": "2021-11-12T03:05:46.000Z" + }, + "events": [ + { + "uuid": "4438020b-4888-4b0a-85bf-e415dd91bad2", + "start": { + "$date": "2021-11-12T02:37:05.000Z" + }, + "end": { + "$date": "2021-11-12T03:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "32fad27a-3c27-489b-b044-cf1a16c062b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T02:41:16.000Z" + }, + "end": { + "$date": "2021-11-12T02:43:56.000Z" + }, + "events": [ + { + "uuid": "64f4bcce-77a1-49b2-88db-d8a9780d2dae", + "start": { + "$date": "2021-11-12T02:41:16.000Z" + }, + "end": { + "$date": "2021-11-12T02:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e174f80c-a667-4463-bd5a-2947e5a4f526", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T05:03:00.000Z" + }, + "end": { + "$date": "2021-11-12T05:04:00.000Z" + }, + "events": [ + { + "uuid": "75f19ec1-78c5-4ef1-97ee-2433942c086d", + "start": { + "$date": "2021-11-12T05:03:00.000Z" + }, + "end": { + "$date": "2021-11-12T05:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "676fe2a3-2f54-46ad-bd6c-5374b4a90b13", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-12T02:50:31.000Z" + }, + "end": { + "$date": "2021-11-12T02:53:46.000Z" + }, + "events": [ + { + "uuid": "8ff4e31c-f73c-4a09-b29d-bbaee4b54e7f", + "start": { + "$date": "2021-11-12T02:50:31.000Z" + }, + "end": { + "$date": "2021-11-12T02:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "1f6ac779-96de-4c51-a403-207141e572a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T03:00:31.000Z" + }, + "end": { + "$date": "2021-11-12T03:03:02.000Z" + }, + "events": [ + { + "uuid": "05485972-6d45-46b9-ac78-8ed91cbb049e", + "start": { + "$date": "2021-11-12T03:00:31.000Z" + }, + "end": { + "$date": "2021-11-12T03:03:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "04e0bf7f-cb39-44dc-b377-31be38d2a0ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-12T04:04:42.000Z" + }, + "end": { + "$date": "2021-11-12T04:04:52.000Z" + }, + "events": [ + { + "uuid": "914d64e3-8899-4182-a077-b9d92e24f049", + "start": { + "$date": "2021-11-12T04:04:42.000Z" + }, + "end": { + "$date": "2021-11-12T04:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "585792e3-02cf-4a5b-90f0-b823a891dde7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T03:09:57.000Z" + }, + "end": { + "$date": "2021-11-12T03:36:08.000Z" + }, + "events": [ + { + "uuid": "e44d9fe7-1941-4ca1-8e02-295e7eac63e4", + "start": { + "$date": "2021-11-12T03:09:57.000Z" + }, + "end": { + "$date": "2021-11-12T03:36:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "c8155948-a221-446c-be90-ad2f98f57778", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-12T03:31:40.000Z" + }, + "end": { + "$date": "2021-11-12T04:41:11.000Z" + }, + "events": [ + { + "uuid": "7607849c-c8f4-48ac-a9d7-adb47e0de029", + "start": { + "$date": "2021-11-12T03:31:40.000Z" + }, + "end": { + "$date": "2021-11-12T04:23:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b56692e1-a301-4665-9465-b7e7c1a668e2", + "start": { + "$date": "2021-11-12T04:23:40.000Z" + }, + "end": { + "$date": "2021-11-12T04:35:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ae049a3-8b1b-483e-bafa-499744558fbd", + "start": { + "$date": "2021-11-12T04:35:40.000Z" + }, + "end": { + "$date": "2021-11-12T04:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "386c6325-cc61-4c92-b673-f103c1b0e267", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T03:41:52.000Z" + }, + "end": { + "$date": "2021-11-12T03:42:54.000Z" + }, + "events": [ + { + "uuid": "bf3cf472-e18a-4c9f-ab67-7d1bc70b83d9", + "start": { + "$date": "2021-11-12T03:41:52.000Z" + }, + "end": { + "$date": "2021-11-12T03:42:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "392298d9-ba2e-41b0-bdc2-c4fb72481dc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T03:43:34.000Z" + }, + "end": { + "$date": "2021-11-12T04:33:56.000Z" + }, + "events": [ + { + "uuid": "0167b6f5-1775-4078-a138-b138f8e09242", + "start": { + "$date": "2021-11-12T03:43:34.000Z" + }, + "end": { + "$date": "2021-11-12T04:33:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ad01a8c6-441c-4965-9c8b-4af5226e6281", + "uuid": "e7e11ec5-eab1-4152-bd22-d4e86a71e7f4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T03:52:43.000Z" + }, + "end": { + "$date": "2021-11-12T03:58:39.000Z" + }, + "events": [ + { + "uuid": "6c2466c7-165e-4b11-a0c6-bd6958e0cfa6", + "start": { + "$date": "2021-11-12T03:52:43.000Z" + }, + "end": { + "$date": "2021-11-12T03:58:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "500c2106-9457-46fc-b298-c84517c746b6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T04:04:00.000Z" + }, + "end": { + "$date": "2021-11-12T04:23:04.000Z" + }, + "events": [ + { + "uuid": "0a3365cb-d7d1-4113-9bf5-485e27fb3d1f", + "start": { + "$date": "2021-11-12T04:04:00.000Z" + }, + "end": { + "$date": "2021-11-12T04:23:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bad7f1e-1756-4d6e-bd8d-0f4527c15f0d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-12T04:23:12.000Z" + }, + "end": { + "$date": "2021-11-12T04:43:29.000Z" + }, + "events": [ + { + "uuid": "93966249-f7b6-49e0-9c26-4ea87479b9a2", + "start": { + "$date": "2021-11-12T04:23:12.000Z" + }, + "end": { + "$date": "2021-11-12T04:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "587685c9-8b75-4101-9f9a-24378f507688", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-12T04:41:31.000Z" + }, + "end": { + "$date": "2021-11-12T04:46:32.000Z" + }, + "events": [ + { + "uuid": "9ace24fa-b1be-43a4-bb1b-cd63368adc0a", + "start": { + "$date": "2021-11-12T04:41:31.000Z" + }, + "end": { + "$date": "2021-11-12T04:46:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "973f2e1d-d151-4d6e-a5f9-da9cdc576a58", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-12T04:43:06.000Z" + }, + "end": { + "$date": "2021-11-12T05:06:48.000Z" + }, + "events": [ + { + "uuid": "41ceebe5-cc85-4376-a0b7-68b49a5efb00", + "start": { + "$date": "2021-11-12T04:43:06.000Z" + }, + "end": { + "$date": "2021-11-12T05:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "101c75cc-2ca8-4682-bf47-38bc01a2dc63", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-12T04:43:58.000Z" + }, + "end": { + "$date": "2021-11-12T07:58:34.000Z" + }, + "events": [ + { + "uuid": "2a288d3d-27b6-4b6d-8391-177af7848397", + "start": { + "$date": "2021-11-12T04:43:58.000Z" + }, + "end": { + "$date": "2021-11-12T05:00:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f627c539-5767-4b90-8d53-7527ba9b2e77", + "start": { + "$date": "2021-11-12T05:00:58.000Z" + }, + "end": { + "$date": "2021-11-12T05:09:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bae1938c-4c48-4ad0-bde1-3d37e1071e23", + "start": { + "$date": "2021-11-12T05:09:58.000Z" + }, + "end": { + "$date": "2021-11-12T05:19:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88c29764-3a4d-4121-88fe-2ee3c94701c0", + "start": { + "$date": "2021-11-12T05:19:58.000Z" + }, + "end": { + "$date": "2021-11-12T05:40:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "67b27439-cdd0-4a41-89e2-dbe9d2f61b27", + "start": { + "$date": "2021-11-12T05:40:58.000Z" + }, + "end": { + "$date": "2021-11-12T05:50:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a732231-f81b-4f93-bcda-b8148ab4bb71", + "start": { + "$date": "2021-11-12T05:50:58.000Z" + }, + "end": { + "$date": "2021-11-12T05:55:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a0a779e2-b7b0-4588-877b-11ee7459486a", + "start": { + "$date": "2021-11-12T05:55:58.000Z" + }, + "end": { + "$date": "2021-11-12T06:05:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7e7d153-b274-4d5d-9515-dc23b2a582eb", + "start": { + "$date": "2021-11-12T06:05:58.000Z" + }, + "end": { + "$date": "2021-11-12T06:29:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a16aa5c0-4fb3-471a-bf5d-db117a23894a", + "start": { + "$date": "2021-11-12T06:29:58.000Z" + }, + "end": { + "$date": "2021-11-12T06:39:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbbcca65-8247-4bb5-a531-9856412b1e11", + "start": { + "$date": "2021-11-12T06:39:58.000Z" + }, + "end": { + "$date": "2021-11-12T07:58:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "563e8076-6f9d-4a82-a8a3-982962acaac6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-12T04:47:54.000Z" + }, + "end": { + "$date": "2021-11-12T05:32:01.000Z" + }, + "events": [ + { + "uuid": "e0a7ad0d-36d6-4920-bc5a-2a62545fe324", + "start": { + "$date": "2021-11-12T04:47:54.000Z" + }, + "end": { + "$date": "2021-11-12T05:32:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b97489b6-d96a-425d-bdb5-225df232fb79", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-12T05:07:21.000Z" + }, + "end": { + "$date": "2021-11-12T05:38:00.000Z" + }, + "events": [ + { + "uuid": "59d7556e-9d1d-4476-80a7-4d51acc69f17", + "start": { + "$date": "2021-11-12T05:07:21.000Z" + }, + "end": { + "$date": "2021-11-12T05:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c04f3679-5700-443d-a2fe-85f1e55f93d9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-12T05:07:26.000Z" + }, + "end": { + "$date": "2021-11-12T05:38:08.000Z" + }, + "events": [ + { + "uuid": "511dd89d-d57e-4302-bddd-010be75c537c", + "start": { + "$date": "2021-11-12T05:07:26.000Z" + }, + "end": { + "$date": "2021-11-12T05:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ecc7579e-d138-4976-a5c5-d05b23bbccf2", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-12T05:32:39.000Z" + }, + "end": { + "$date": "2021-11-12T06:21:55.000Z" + }, + "events": [ + { + "uuid": "6e76a0bf-7375-4c4e-888d-3a9fe24be252", + "start": { + "$date": "2021-11-12T05:32:39.000Z" + }, + "end": { + "$date": "2021-11-12T06:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bf6b99b-2aa4-4dc5-bee4-73a2525630dc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-12T05:44:16.000Z" + }, + "end": { + "$date": "2021-11-12T06:22:21.000Z" + }, + "events": [ + { + "uuid": "8aedd580-eea1-497b-a263-56a564a4dff3", + "start": { + "$date": "2021-11-12T05:44:16.000Z" + }, + "end": { + "$date": "2021-11-12T06:22:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "094060db-530d-41a7-b206-b73f0fb73ebe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-12T05:44:22.000Z" + }, + "end": { + "$date": "2021-11-12T06:22:29.000Z" + }, + "events": [ + { + "uuid": "7e56203e-69d3-4a58-a4bd-3d151d4190b8", + "start": { + "$date": "2021-11-12T05:44:22.000Z" + }, + "end": { + "$date": "2021-11-12T06:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "cd2a0e80-0331-4f42-a9fe-b634fc8617f3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-12T05:44:50.000Z" + }, + "end": { + "$date": "2021-11-12T06:42:14.000Z" + }, + "events": [ + { + "uuid": "be6be051-e598-4ee9-9d63-a45c005ae9bc", + "start": { + "$date": "2021-11-12T05:44:50.000Z" + }, + "end": { + "$date": "2021-11-12T06:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "e8e38ca9-f0a0-47f5-8d3c-4cbc16959bc9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T05:50:11.000Z" + }, + "end": { + "$date": "2021-11-12T06:09:21.000Z" + }, + "events": [ + { + "uuid": "ae46b846-f863-4127-a41b-f141d5512c6a", + "start": { + "$date": "2021-11-12T05:50:11.000Z" + }, + "end": { + "$date": "2021-11-12T06:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "065209af-8491-4ab4-90ea-2294dddabe69", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-12T06:25:47.000Z" + }, + "end": { + "$date": "2021-11-12T06:47:31.000Z" + }, + "events": [ + { + "uuid": "1b0bc504-9dd9-4677-926e-98040a84738d", + "start": { + "$date": "2021-11-12T06:25:47.000Z" + }, + "end": { + "$date": "2021-11-12T06:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e628bc60-2eb4-4844-bd37-519c92e233a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-12T06:25:48.000Z" + }, + "end": { + "$date": "2021-11-12T06:47:32.000Z" + }, + "events": [ + { + "uuid": "efde0a75-93bc-4fdf-b743-e9ef30f5ec03", + "start": { + "$date": "2021-11-12T06:25:48.000Z" + }, + "end": { + "$date": "2021-11-12T06:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9178097f-fb75-4ffb-9847-08bee4d5c880", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T06:34:15.000Z" + }, + "end": { + "$date": "2021-11-12T07:59:00.000Z" + }, + "events": [ + { + "uuid": "d87508f6-fd88-47ed-b42b-547fee6bcdea", + "start": { + "$date": "2021-11-12T06:34:15.000Z" + }, + "end": { + "$date": "2021-11-12T07:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d2e6a0b4-8409-4922-989f-3ecc4ed2c255", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-12T06:35:49.000Z" + }, + "end": { + "$date": "2021-11-12T07:19:48.000Z" + }, + "events": [ + { + "uuid": "062888ef-5f97-4f2e-8bd6-f41bf9f8ef02", + "start": { + "$date": "2021-11-12T06:35:49.000Z" + }, + "end": { + "$date": "2021-11-12T07:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "45f7132e-7375-497f-af2b-3482e013fef3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-12T07:23:31.000Z" + }, + "end": { + "$date": "2021-11-12T08:38:54.000Z" + }, + "events": [ + { + "uuid": "5b2e63b1-7a6d-4de5-9ef8-ed4fe569183c", + "start": { + "$date": "2021-11-12T07:23:31.000Z" + }, + "end": { + "$date": "2021-11-12T08:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c8f4223f-ec0e-4650-b0ea-d868874efaa5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T14:49:18.000Z" + }, + "end": { + "$date": "2021-11-12T14:53:44.000Z" + }, + "events": [ + { + "uuid": "229f3734-a821-40b7-8a28-82c3019e8c65", + "start": { + "$date": "2021-11-12T14:49:18.000Z" + }, + "end": { + "$date": "2021-11-12T14:53:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "52b8efa3-14b3-4d8b-a92e-1fbacbe8c758", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T15:01:35.000Z" + }, + "end": { + "$date": "2021-11-12T15:03:55.000Z" + }, + "events": [ + { + "uuid": "cb150b39-2d3b-4745-ad59-909129bb2b73", + "start": { + "$date": "2021-11-12T15:01:35.000Z" + }, + "end": { + "$date": "2021-11-12T15:03:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fbe15867-a18c-4e26-bc6e-366b7497811a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-12T16:22:00.000Z" + }, + "end": { + "$date": "2021-11-12T18:51:32.000Z" + }, + "events": [ + { + "uuid": "a18a0c91-3020-4dca-a37e-769697937e61", + "start": { + "$date": "2021-11-12T16:22:00.000Z" + }, + "end": { + "$date": "2021-11-12T18:51:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "eb21aa92-5f1f-415f-b767-5511d8c0be08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T18:06:14.000Z" + }, + "end": { + "$date": "2021-11-12T19:51:57.000Z" + }, + "events": [ + { + "uuid": "676d06c7-ae62-4ce4-8759-fd8efa11bda1", + "start": { + "$date": "2021-11-12T18:06:14.000Z" + }, + "end": { + "$date": "2021-11-12T19:51:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "61dce3b6-4364-4b4a-8ca4-6d4824a2b96d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-12T19:10:51.000Z" + }, + "end": { + "$date": "2021-11-12T19:28:28.000Z" + }, + "events": [ + { + "uuid": "65ccfc9f-a968-43b0-9c72-407be32a18e9", + "start": { + "$date": "2021-11-12T19:10:51.000Z" + }, + "end": { + "$date": "2021-11-12T19:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "2825e830-2468-484b-95e7-964b4dc881ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-12T19:26:41.000Z" + }, + "end": { + "$date": "2021-11-12T19:57:02.000Z" + }, + "events": [ + { + "uuid": "51131547-82b5-473c-ad54-e80892f8dc41", + "start": { + "$date": "2021-11-12T19:26:41.000Z" + }, + "end": { + "$date": "2021-11-12T19:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "78410210-94df-43fe-a6db-5c61cc6ee7ef", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T20:52:54.000Z" + }, + "end": { + "$date": "2021-11-12T21:03:37.000Z" + }, + "events": [ + { + "uuid": "c9296876-9838-48e8-96cf-bbc4f0c6dbbb", + "start": { + "$date": "2021-11-12T20:52:54.000Z" + }, + "end": { + "$date": "2021-11-12T21:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "b0db6ca9-af67-4188-9126-5ce4295455b0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-12T21:04:01.000Z" + }, + "end": { + "$date": "2021-11-12T21:49:28.000Z" + }, + "events": [ + { + "uuid": "d38bfd07-5a73-4676-a6b3-10e90d289b2f", + "start": { + "$date": "2021-11-12T21:04:01.000Z" + }, + "end": { + "$date": "2021-11-12T21:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8863aa9a-75be-4340-a605-c0c10f0b4a95", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-12T21:49:02.000Z" + }, + "end": { + "$date": "2021-11-12T22:42:51.000Z" + }, + "events": [ + { + "uuid": "653b45e9-dbc9-4272-91b1-8e9018e53abf", + "start": { + "$date": "2021-11-12T21:49:02.000Z" + }, + "end": { + "$date": "2021-11-12T22:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "bf161cc6-8fa8-4cf1-b74e-6468bb8e9519", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-12T23:46:51.000Z" + }, + "end": { + "$date": "2021-11-13T00:39:29.000Z" + }, + "events": [ + { + "uuid": "b77c95c2-ed86-428a-a492-42c729d90a0e", + "start": { + "$date": "2021-11-12T23:46:51.000Z" + }, + "end": { + "$date": "2021-11-13T00:39:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "e4180de3-97d2-4a83-869f-89e80f39767b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-12T23:58:40.000Z" + }, + "end": { + "$date": "2021-11-13T00:11:39.000Z" + }, + "events": [ + { + "uuid": "6b3a9be2-d13e-48fe-94fb-66b83f1d0ea6", + "start": { + "$date": "2021-11-12T23:58:40.000Z" + }, + "end": { + "$date": "2021-11-13T00:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "50206c45-8bba-4516-a10d-6311f24c8657", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-13T01:20:26.000Z" + }, + "end": { + "$date": "2021-11-13T02:17:58.000Z" + }, + "events": [ + { + "uuid": "d0b1f5e8-acf7-40de-b74c-52830ba320e6", + "start": { + "$date": "2021-11-13T01:20:26.000Z" + }, + "end": { + "$date": "2021-11-13T02:17:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "d230765c-1028-4874-8ab8-86362e5a0e89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-13T01:59:47.000Z" + }, + "end": { + "$date": "2021-11-13T03:34:37.000Z" + }, + "events": [ + { + "uuid": "c38c7520-dfb2-411c-8fc0-12fa8315c138", + "start": { + "$date": "2021-11-13T01:59:47.000Z" + }, + "end": { + "$date": "2021-11-13T03:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "8adb68a7-323d-4852-85c0-29ed20360be7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-13T03:00:07.000Z" + }, + "end": { + "$date": "2021-11-13T03:53:11.000Z" + }, + "events": [ + { + "uuid": "39b4d695-abd2-4e86-8afc-5794e63847eb", + "start": { + "$date": "2021-11-13T03:00:07.000Z" + }, + "end": { + "$date": "2021-11-13T03:53:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "949eab24-df67-4e20-9727-ffe0702e2303", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-13T03:37:59.000Z" + }, + "end": { + "$date": "2021-11-13T04:43:54.000Z" + }, + "events": [ + { + "uuid": "47c08e3a-97c2-4d2b-a940-64fcb06569da", + "start": { + "$date": "2021-11-13T03:37:59.000Z" + }, + "end": { + "$date": "2021-11-13T04:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "3ee008f6-ae3c-4fbc-bc40-647f41fb3f64", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-13T04:03:03.000Z" + }, + "end": { + "$date": "2021-11-13T04:15:53.000Z" + }, + "events": [ + { + "uuid": "b9a59f57-ef77-49f2-8c53-5a1cd7caa658", + "start": { + "$date": "2021-11-13T04:03:03.000Z" + }, + "end": { + "$date": "2021-11-13T04:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b2f667b3-eb38-4516-b299-8e1be6a29998", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-13T04:27:19.000Z" + }, + "end": { + "$date": "2021-11-13T07:10:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T04:27:19.000Z" + }, + "end": { + "$date": "2021-11-13T07:10:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "f39d8cfb-0c16-4681-b924-928f27a54ba1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-13T04:29:50.000Z" + }, + "end": { + "$date": "2021-11-13T04:54:22.000Z" + }, + "events": [ + { + "uuid": "d8c6d762-5758-40ec-994d-6c7fa12cc220", + "start": { + "$date": "2021-11-13T04:29:50.000Z" + }, + "end": { + "$date": "2021-11-13T04:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1664cefd-f4be-449c-8d7a-3c363e052604", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-13T04:33:48.000Z" + }, + "end": { + "$date": "2021-11-13T09:58:38.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T04:33:48.000Z" + }, + "end": { + "$date": "2021-11-13T09:58:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "ef8116bd-a335-418e-8b2c-6cd1c3a114e2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-13T04:37:14.000Z" + }, + "end": { + "$date": "2021-11-13T04:47:51.000Z" + }, + "events": [ + { + "uuid": "d18ca741-03ac-4c2a-980c-d4499f616b82", + "start": { + "$date": "2021-11-13T04:37:14.000Z" + }, + "end": { + "$date": "2021-11-13T04:47:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e60b6cd1-0a76-4c7b-89e3-1e6ba8f748c0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-13T04:46:55.000Z" + }, + "end": { + "$date": "2021-11-13T05:54:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T04:46:55.000Z" + }, + "end": { + "$date": "2021-11-13T05:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "e7e21136-0973-4345-aec9-afa24669a4f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-13T04:48:05.000Z" + }, + "end": { + "$date": "2021-11-13T05:49:32.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T04:48:05.000Z" + }, + "end": { + "$date": "2021-11-13T05:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d9922bc3-a0ac-4a18-9585-e07fd1c9d8a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-13T04:52:41.000Z" + }, + "end": { + "$date": "2021-11-13T07:23:30.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T04:52:41.000Z" + }, + "end": { + "$date": "2021-11-13T07:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "019e5dd6-dc72-4263-a14a-7be25a8e8def", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-13T04:54:43.000Z" + }, + "end": { + "$date": "2021-11-13T07:29:34.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T04:54:43.000Z" + }, + "end": { + "$date": "2021-11-13T07:29:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfca1b02-4b03-49e1-a658-0014df9825af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-13T05:15:52.000Z" + }, + "end": { + "$date": "2021-11-13T05:41:03.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-11-13T05:15:52.000Z" + }, + "end": { + "$date": "2021-11-13T05:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63a13030-aba4-41bb-a87b-f11a3fd48a77", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-13T05:45:28.000Z" + }, + "end": { + "$date": "2021-11-13T06:19:09.000Z" + }, + "events": [ + { + "uuid": "a7db326a-30c5-4352-b145-9806fb7cf2f0", + "start": { + "$date": "2021-11-13T05:45:28.000Z" + }, + "end": { + "$date": "2021-11-13T06:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0274fdf-3e71-4428-9b9f-f8382e3e7bd1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-13T06:34:00.000Z" + }, + "end": { + "$date": "2021-11-13T06:55:26.000Z" + }, + "events": [ + { + "uuid": "d975aba6-6d69-470a-8f8f-8e6f9cb0d29b", + "start": { + "$date": "2021-11-13T06:34:00.000Z" + }, + "end": { + "$date": "2021-11-13T06:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0e86d05-dab7-4d74-b3c4-880c81be57da", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-13T06:58:20.000Z" + }, + "end": { + "$date": "2021-11-13T07:19:46.000Z" + }, + "events": [ + { + "uuid": "ee1e2844-64d8-41ec-a408-cdb0203e9efa", + "start": { + "$date": "2021-11-13T06:58:20.000Z" + }, + "end": { + "$date": "2021-11-13T07:19:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24e13465-aaa2-4752-a9d2-1af14fab4e3d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-13T07:19:56.000Z" + }, + "end": { + "$date": "2021-11-13T07:27:26.000Z" + }, + "events": [ + { + "uuid": "82557ef4-2013-4678-86b2-cec3d4401a49", + "start": { + "$date": "2021-11-13T07:19:56.000Z" + }, + "end": { + "$date": "2021-11-13T07:27:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "efac3d07-4811-45bb-aad2-94a85db14706", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-13T09:23:21.000Z" + }, + "end": { + "$date": "2021-11-13T10:04:58.000Z" + }, + "events": [ + { + "uuid": "1415e562-037f-4514-8ff2-42bfb0867d42", + "start": { + "$date": "2021-11-13T09:23:21.000Z" + }, + "end": { + "$date": "2021-11-13T10:04:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "437ca069-911a-4da3-ae82-81da3b3f9976", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-13T15:21:36.000Z" + }, + "end": { + "$date": "2021-11-13T15:59:36.000Z" + }, + "events": [ + { + "uuid": "47534480-bbef-420f-9d2e-489ace347cc7", + "start": { + "$date": "2021-11-13T15:21:36.000Z" + }, + "end": { + "$date": "2021-11-13T15:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fa34ae86-3733-4fa5-8300-ad4a60d81dca", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-13T16:02:16.000Z" + }, + "end": { + "$date": "2021-11-13T17:51:41.000Z" + }, + "events": [ + { + "uuid": "f909c644-bd7e-428d-b275-25012723edd5", + "start": { + "$date": "2021-11-13T16:02:16.000Z" + }, + "end": { + "$date": "2021-11-13T17:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "a7473dd0-f85a-4635-9d27-554d2df7c0ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-13T16:32:25.000Z" + }, + "end": { + "$date": "2021-11-13T17:00:42.000Z" + }, + "events": [ + { + "uuid": "e13b3429-5c6d-4a53-9ec8-188c786f51da", + "start": { + "$date": "2021-11-13T16:32:25.000Z" + }, + "end": { + "$date": "2021-11-13T17:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "79b2acc2-fe2b-42cd-8ae5-7ff2c69a244d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-13T16:49:28.000Z" + }, + "end": { + "$date": "2021-11-13T19:56:33.000Z" + }, + "events": [ + { + "uuid": "4532ad1e-1eed-48a8-b252-bb36a9db914c", + "start": { + "$date": "2021-11-13T16:49:28.000Z" + }, + "end": { + "$date": "2021-11-13T19:56:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "24be54ed-4814-4953-8515-b671174dbee3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-13T16:59:38.000Z" + }, + "end": { + "$date": "2021-11-13T17:45:49.000Z" + }, + "events": [ + { + "uuid": "76b3b1f6-6f0b-4576-bbdd-50b39f77ccb9", + "start": { + "$date": "2021-11-13T16:59:38.000Z" + }, + "end": { + "$date": "2021-11-13T17:45:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "8a2f5f96-e3f7-490d-bd75-bd69cb821fa0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-13T17:01:02.000Z" + }, + "end": { + "$date": "2021-11-13T18:21:05.000Z" + }, + "events": [ + { + "uuid": "4843cfeb-6eb9-4bc9-865b-54c979a6aab2", + "start": { + "$date": "2021-11-13T17:01:02.000Z" + }, + "end": { + "$date": "2021-11-13T18:21:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e0a61e7b-0cba-4023-9ad6-8144c93ba7a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-13T17:46:40.000Z" + }, + "end": { + "$date": "2021-11-13T18:08:30.000Z" + }, + "events": [ + { + "uuid": "4cec678e-c084-45ca-ac23-c675de4526b5", + "start": { + "$date": "2021-11-13T17:46:40.000Z" + }, + "end": { + "$date": "2021-11-13T18:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c6e400c-ddb7-4851-86c3-d371d3c3b4f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-13T18:10:32.000Z" + }, + "end": { + "$date": "2021-11-13T19:50:09.000Z" + }, + "events": [ + { + "uuid": "60e3d819-92cc-4ad4-a13f-ec04cdc39ae1", + "start": { + "$date": "2021-11-13T18:10:32.000Z" + }, + "end": { + "$date": "2021-11-13T19:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e36afb9f-2450-45d1-ad14-a355ad135f30", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-13T18:14:03.000Z" + }, + "end": { + "$date": "2021-11-13T20:41:05.000Z" + }, + "events": [ + { + "uuid": "67d502dd-6b44-48d2-ab35-04ef583e4718", + "start": { + "$date": "2021-11-13T18:14:03.000Z" + }, + "end": { + "$date": "2021-11-13T20:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "a56e7af6-090f-4eb3-9dba-6225c26fe0a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-13T19:51:49.000Z" + }, + "end": { + "$date": "2021-11-13T23:28:57.000Z" + }, + "events": [ + { + "uuid": "e1c42806-371b-4da0-b25c-e80607e9102b", + "start": { + "$date": "2021-11-13T19:51:49.000Z" + }, + "end": { + "$date": "2021-11-13T23:28:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a0a56f0c-0ef9-4882-b206-bb98a1e78c4f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-13T20:41:10.000Z" + }, + "end": { + "$date": "2021-11-13T20:43:11.000Z" + }, + "events": [ + { + "uuid": "bb8f3fa5-0a62-436e-b0a1-d3889fc6c2f5", + "start": { + "$date": "2021-11-13T20:41:10.000Z" + }, + "end": { + "$date": "2021-11-13T20:43:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "04fd1400-0377-4899-9cc0-0095d29fd74e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-13T23:12:10.000Z" + }, + "end": { + "$date": "2021-11-14T00:36:29.000Z" + }, + "events": [ + { + "uuid": "901c4b84-8ae2-4bed-911e-abb19006446c", + "start": { + "$date": "2021-11-13T23:12:10.000Z" + }, + "end": { + "$date": "2021-11-14T00:36:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c406eba5-5f1b-469a-8269-b3513171807b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-13T23:49:51.000Z" + }, + "end": { + "$date": "2021-11-14T00:43:57.000Z" + }, + "events": [ + { + "uuid": "0de20b32-70c1-47a3-955c-e173f6aef57c", + "start": { + "$date": "2021-11-13T23:49:51.000Z" + }, + "end": { + "$date": "2021-11-14T00:43:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0fc9d750-ad70-4f65-a128-6783bb3fc4a2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-13T18:15:49.000Z" + }, + "end": { + "$date": "2021-11-14T05:21:07.000Z" + }, + "events": [ + { + "uuid": "91e81551-8d56-44ec-8e73-403471e0fdeb", + "start": { + "$date": "2021-11-13T18:15:49.000Z" + }, + "end": { + "$date": "2021-11-13T18:48:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d326e113-dd81-4da2-aed1-8c1a6e6165fc", + "start": { + "$date": "2021-11-13T18:48:49.000Z" + }, + "end": { + "$date": "2021-11-13T18:53:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e0bccea3-85cf-4e7f-a604-d4b5c19641e7", + "start": { + "$date": "2021-11-13T18:53:49.000Z" + }, + "end": { + "$date": "2021-11-13T19:03:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "638111c1-1843-4ea2-ba10-3f604215d942", + "start": { + "$date": "2021-11-13T19:03:49.000Z" + }, + "end": { + "$date": "2021-11-13T19:15:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "581ec650-8ab8-4a02-b85f-16b9b2b7a7c4", + "start": { + "$date": "2021-11-13T19:15:49.000Z" + }, + "end": { + "$date": "2021-11-14T05:21:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e3df9b3a-e47f-47d4-9e0f-1f2338361f39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-13T23:54:38.000Z" + }, + "end": { + "$date": "2021-11-14T00:27:07.000Z" + }, + "events": [ + { + "uuid": "6e9aa641-31c6-4c63-a7fd-19da109ace66", + "start": { + "$date": "2021-11-13T23:54:38.000Z" + }, + "end": { + "$date": "2021-11-14T00:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fce75df-0084-454c-bd51-7602a4228315", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T02:06:01.000Z" + }, + "end": { + "$date": "2021-11-14T02:16:48.000Z" + }, + "events": [ + { + "uuid": "01204372-8094-4641-bfc2-31ee43c20d9d", + "start": { + "$date": "2021-11-14T02:06:01.000Z" + }, + "end": { + "$date": "2021-11-14T02:26:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eefc92ac-d21e-4bc7-8264-ad927174477d", + "start": { + "$date": "2021-11-14T02:26:01.000Z" + }, + "end": { + "$date": "2021-11-14T02:35:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edf7bb38-e73c-407a-9395-6d4a6d5895dc", + "start": { + "$date": "2021-11-14T02:35:01.000Z" + }, + "end": { + "$date": "2021-11-14T02:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "673301ba-5fd3-4f38-a9a9-fe3de1ba572f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-14T01:35:21.000Z" + }, + "end": { + "$date": "2021-11-14T03:20:19.000Z" + }, + "events": [ + { + "uuid": "c9a17d13-5bb9-4ef1-ac11-a3bd54eaea65", + "start": { + "$date": "2021-11-14T01:35:21.000Z" + }, + "end": { + "$date": "2021-11-14T03:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1335dab4-8b3e-463e-80ce-6b7e6c788c77", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-14T01:39:00.000Z" + }, + "end": { + "$date": "2021-11-14T02:59:49.000Z" + }, + "events": [ + { + "uuid": "3c4221b6-1378-4639-abb9-d00585d3a9f4", + "start": { + "$date": "2021-11-14T01:39:00.000Z" + }, + "end": { + "$date": "2021-11-14T02:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c91ea6cc-2336-419f-b98b-b7c04e80049c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-14T01:39:54.000Z" + }, + "end": { + "$date": "2021-11-14T02:19:27.000Z" + }, + "events": [ + { + "uuid": "17e0e23c-b54c-4df3-aa70-a9a4f7979786", + "start": { + "$date": "2021-11-14T01:39:54.000Z" + }, + "end": { + "$date": "2021-11-14T02:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60bfa426-d49c-48ff-83dd-5c3118ef677c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T02:29:58.000Z" + }, + "end": { + "$date": "2021-11-14T02:51:11.000Z" + }, + "events": [ + { + "uuid": "b1837392-b807-4762-8285-94e29a8f5a7d", + "start": { + "$date": "2021-11-14T02:29:58.000Z" + }, + "end": { + "$date": "2021-11-14T02:51:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6962061a-b667-4f7a-a715-ce50284d2b22", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T03:06:31.000Z" + }, + "end": { + "$date": "2021-11-14T03:07:53.000Z" + }, + "events": [ + { + "uuid": "c826b8e1-4413-45af-b77c-14cb953b03e7", + "start": { + "$date": "2021-11-14T03:06:31.000Z" + }, + "end": { + "$date": "2021-11-14T03:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0a4caec9-7327-4bd0-8ba0-dcb7fb26d1cc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-14T03:08:58.000Z" + }, + "end": { + "$date": "2021-11-14T04:32:59.000Z" + }, + "events": [ + { + "uuid": "7955f7cd-6dd1-40d5-b632-92f4fbf45e32", + "start": { + "$date": "2021-11-14T03:08:58.000Z" + }, + "end": { + "$date": "2021-11-14T04:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5a0a2c74-581b-4942-ba1d-0c3feba2748c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T03:08:56.000Z" + }, + "end": { + "$date": "2021-11-14T03:47:25.000Z" + }, + "events": [ + { + "uuid": "5f2153f6-229a-4426-bb88-9b6b8d8b6de0", + "start": { + "$date": "2021-11-14T03:08:56.000Z" + }, + "end": { + "$date": "2021-11-14T03:47:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "39c6d033-3ceb-4494-965a-63ebf776d7a3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-14T03:11:22.000Z" + }, + "end": { + "$date": "2021-11-14T03:12:53.000Z" + }, + "events": [ + { + "uuid": "9a6a57c9-4641-47b0-bd31-c26b08c85b31", + "start": { + "$date": "2021-11-14T03:11:22.000Z" + }, + "end": { + "$date": "2021-11-14T03:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "be1d2eab-36e6-4d23-bc54-2d18166ad213", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-14T03:21:33.000Z" + }, + "end": { + "$date": "2021-11-14T04:12:43.000Z" + }, + "events": [ + { + "uuid": "d927232c-9b0f-42a3-817b-ce44b3a7f706", + "start": { + "$date": "2021-11-14T03:21:33.000Z" + }, + "end": { + "$date": "2021-11-14T04:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9958a13f-ab30-440a-8dcf-105451a4aacf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T03:55:31.000Z" + }, + "end": { + "$date": "2021-11-14T04:19:52.000Z" + }, + "events": [ + { + "uuid": "25177f49-2a8a-4716-99ee-20ebe67205cd", + "start": { + "$date": "2021-11-14T03:55:31.000Z" + }, + "end": { + "$date": "2021-11-14T04:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec46fac8-7742-42a6-935d-cb9c4a14bce8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-14T03:58:06.000Z" + }, + "end": { + "$date": "2021-11-14T04:31:52.000Z" + }, + "events": [ + { + "uuid": "f89ef7e9-6244-4dd4-92a3-4db234559249", + "start": { + "$date": "2021-11-14T03:58:06.000Z" + }, + "end": { + "$date": "2021-11-14T04:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94db5b3f-a0ed-42db-a753-25d281b708dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T04:24:20.000Z" + }, + "end": { + "$date": "2021-11-14T04:26:45.000Z" + }, + "events": [ + { + "uuid": "46440316-a8e8-4a8b-883d-3fbf623dc173", + "start": { + "$date": "2021-11-14T04:24:20.000Z" + }, + "end": { + "$date": "2021-11-14T04:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2ecfbf75-99f7-43b5-a64d-8783b7986ed4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T04:27:28.000Z" + }, + "end": { + "$date": "2021-11-14T04:39:10.000Z" + }, + "events": [ + { + "uuid": "f2e30ea6-1d93-4824-add3-f6a2b0c30891", + "start": { + "$date": "2021-11-14T04:27:28.000Z" + }, + "end": { + "$date": "2021-11-14T04:39:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4c6a212-3176-4c65-946e-ae861ad656b8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-14T04:36:27.000Z" + }, + "end": { + "$date": "2021-11-14T05:10:39.000Z" + }, + "events": [ + { + "uuid": "a86c54f7-2d9d-4205-a236-08d21752984b", + "start": { + "$date": "2021-11-14T04:36:27.000Z" + }, + "end": { + "$date": "2021-11-14T05:10:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1263b28-6ce6-4e8f-941c-470b959dfe8a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T05:22:24.000Z" + }, + "end": { + "$date": "2021-11-14T05:22:23.000Z" + }, + "events": [ + { + "uuid": "c9d78083-5146-47cb-9913-8f96b36b5772", + "start": { + "$date": "2021-11-14T05:22:24.000Z" + }, + "end": { + "$date": "2021-11-14T05:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1acd31e-ae82-4ba5-852a-27a6adbb8e33", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-14T05:01:10.000Z" + }, + "end": { + "$date": "2021-11-14T05:22:16.000Z" + }, + "events": [ + { + "uuid": "0fcc9eac-285a-4c6d-915f-d1860b989756", + "start": { + "$date": "2021-11-14T05:01:10.000Z" + }, + "end": { + "$date": "2021-11-14T05:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "325c2a7a-df23-48c2-a71f-85487fc2ed75", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-14T05:17:28.000Z" + }, + "end": { + "$date": "2021-11-14T05:39:04.000Z" + }, + "events": [ + { + "uuid": "bc44414e-b04e-427e-b71a-163b68d33bc5", + "start": { + "$date": "2021-11-14T05:17:28.000Z" + }, + "end": { + "$date": "2021-11-14T05:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5aa53b84-1db3-4e45-9393-1347394e5a4d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-14T05:21:14.000Z" + }, + "end": { + "$date": "2021-11-14T05:23:53.000Z" + }, + "events": [ + { + "uuid": "001351d2-d1ec-41f2-8d03-354f9896bedb", + "start": { + "$date": "2021-11-14T05:21:14.000Z" + }, + "end": { + "$date": "2021-11-14T05:23:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "15b329a2-e928-4f39-9d6c-ee73023cab90", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-14T05:26:02.000Z" + }, + "end": { + "$date": "2021-11-14T07:48:08.000Z" + }, + "events": [ + { + "uuid": "15151e55-265b-4c89-9417-33bd53d673b0", + "start": { + "$date": "2021-11-14T05:26:02.000Z" + }, + "end": { + "$date": "2021-11-14T06:17:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bdc7c27f-4afa-4b55-819b-17cfa9c27bb4", + "start": { + "$date": "2021-11-14T06:17:02.000Z" + }, + "end": { + "$date": "2021-11-14T06:21:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74d09333-f49d-44e5-871d-34ae79a4cdbe", + "start": { + "$date": "2021-11-14T06:21:02.000Z" + }, + "end": { + "$date": "2021-11-14T06:32:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d701bae0-f6a7-4187-9c0f-ec3b26c80b43", + "start": { + "$date": "2021-11-14T06:32:02.000Z" + }, + "end": { + "$date": "2021-11-14T06:42:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9701c40-df48-4100-a04b-df676d8650db", + "start": { + "$date": "2021-11-14T06:42:02.000Z" + }, + "end": { + "$date": "2021-11-14T07:16:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da656aae-6933-47ad-8815-1a4ac1b67db7", + "start": { + "$date": "2021-11-14T07:16:02.000Z" + }, + "end": { + "$date": "2021-11-14T07:18:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2fb26e18-5765-4b78-8a25-1c76c14115f4", + "start": { + "$date": "2021-11-14T07:18:02.000Z" + }, + "end": { + "$date": "2021-11-14T07:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "463bf08f-4bb6-4074-91ef-0004d75535b0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-14T05:42:59.000Z" + }, + "end": { + "$date": "2021-11-14T06:17:40.000Z" + }, + "events": [ + { + "uuid": "6cfbb829-118b-42e7-b798-2319ff8499de", + "start": { + "$date": "2021-11-14T05:42:59.000Z" + }, + "end": { + "$date": "2021-11-14T06:17:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b095a63-7bb5-4bd0-979a-ad10c089068f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-14T08:11:03.000Z" + }, + "end": { + "$date": "2021-11-14T08:56:08.000Z" + }, + "events": [ + { + "uuid": "8bfe2d84-e308-43d5-8cc9-f71f3ffa291a", + "start": { + "$date": "2021-11-14T08:11:03.000Z" + }, + "end": { + "$date": "2021-11-14T08:56:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1449718-c557-4c2a-8143-4132360430fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T08:58:29.000Z" + }, + "end": { + "$date": "2021-11-14T09:35:21.000Z" + }, + "events": [ + { + "uuid": "e7cabcd3-073b-42f7-affe-7c990f52cbaa", + "start": { + "$date": "2021-11-14T08:58:29.000Z" + }, + "end": { + "$date": "2021-11-14T09:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "c80081f6-1419-4602-b6cb-176388e9d592", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-14T16:14:21.000Z" + }, + "end": { + "$date": "2021-11-14T17:20:24.000Z" + }, + "events": [ + { + "uuid": "3c946b64-0f6e-4ed0-ab92-ea08ac4f275e", + "start": { + "$date": "2021-11-14T16:14:21.000Z" + }, + "end": { + "$date": "2021-11-14T17:20:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aa9cccb7-0729-4556-851d-c77275326e6b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-14T16:18:00.000Z" + }, + "end": { + "$date": "2021-11-14T16:21:15.000Z" + }, + "events": [ + { + "uuid": "44b4f046-5ea0-45e8-8108-1f625ae16e67", + "start": { + "$date": "2021-11-14T16:18:00.000Z" + }, + "end": { + "$date": "2021-11-14T16:21:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "04be45df-f9ce-47a4-bb86-b1812d54fd2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T17:05:15.000Z" + }, + "end": { + "$date": "2021-11-14T18:02:19.000Z" + }, + "events": [ + { + "uuid": "f3f7fcdb-56bd-49e5-a55e-8fbf94003b93", + "start": { + "$date": "2021-11-14T17:05:15.000Z" + }, + "end": { + "$date": "2021-11-14T18:02:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1b7db22f-2aed-4f42-8ab6-2060b579da94", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-14T17:19:25.000Z" + }, + "end": { + "$date": "2021-11-14T19:03:06.000Z" + }, + "events": [ + { + "uuid": "dfe07a4b-4a45-457a-8421-ea5fb0992473", + "start": { + "$date": "2021-11-14T17:19:25.000Z" + }, + "end": { + "$date": "2021-11-14T19:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "b35c15dc-8d25-47f2-9e6c-14932a1b11f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-14T17:30:33.000Z" + }, + "end": { + "$date": "2021-11-14T17:57:09.000Z" + }, + "events": [ + { + "uuid": "737580d0-eeba-416d-ae34-d355739065b3", + "start": { + "$date": "2021-11-14T17:30:33.000Z" + }, + "end": { + "$date": "2021-11-14T17:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "dbd202d6-a9f5-4c80-bb6e-63b4ad40e08a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T18:33:07.000Z" + }, + "end": { + "$date": "2021-11-14T18:41:39.000Z" + }, + "events": [ + { + "uuid": "9d5890dd-743f-4b52-921d-61a0105febbd", + "start": { + "$date": "2021-11-14T18:33:07.000Z" + }, + "end": { + "$date": "2021-11-14T18:41:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "7618f014-41b4-4d02-b0af-b365a1d03fc2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-14T18:34:58.000Z" + }, + "end": { + "$date": "2021-11-14T20:35:12.000Z" + }, + "events": [ + { + "uuid": "080cd446-fcf9-4239-a0fa-55677a197b8a", + "start": { + "$date": "2021-11-14T18:34:58.000Z" + }, + "end": { + "$date": "2021-11-14T20:35:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "f92b95c3-da2a-45ba-b32f-befed8e08789", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-14T18:35:28.000Z" + }, + "end": { + "$date": "2021-11-14T19:20:54.000Z" + }, + "events": [ + { + "uuid": "ba2f9ab8-30ee-4431-b950-77b0ecc88f7d", + "start": { + "$date": "2021-11-14T18:35:28.000Z" + }, + "end": { + "$date": "2021-11-14T19:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "8a1062f4-2e6b-4757-a70d-698f23e73dfb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T18:42:13.000Z" + }, + "end": { + "$date": "2021-11-14T20:37:05.000Z" + }, + "events": [ + { + "uuid": "6b3f3afc-47e7-4a77-9b19-05d1648d2823", + "start": { + "$date": "2021-11-14T18:42:13.000Z" + }, + "end": { + "$date": "2021-11-14T19:28:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49aeb72e-383d-4aa8-8cb4-49304a845da2", + "start": { + "$date": "2021-11-14T19:28:13.000Z" + }, + "end": { + "$date": "2021-11-14T19:30:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "34088c2a-a850-4451-9f8c-9efd44acc7a1", + "start": { + "$date": "2021-11-14T19:30:13.000Z" + }, + "end": { + "$date": "2021-11-14T20:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "630502c9-ba4f-4d6a-8da4-019a4ae6834a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T20:33:41.000Z" + }, + "end": { + "$date": "2021-11-14T21:04:03.000Z" + }, + "events": [ + { + "uuid": "94c9f3da-20dc-46bb-9937-9143ed1eed85", + "start": { + "$date": "2021-11-14T20:33:41.000Z" + }, + "end": { + "$date": "2021-11-14T21:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "63ea5c85-795b-4d89-827a-e5e242548cb6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T20:38:34.000Z" + }, + "end": { + "$date": "2021-11-14T22:37:18.000Z" + }, + "events": [ + { + "uuid": "bff641c2-9fba-4df2-b373-6b3668d634b5", + "start": { + "$date": "2021-11-14T20:38:34.000Z" + }, + "end": { + "$date": "2021-11-14T21:06:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5077ae8f-623f-431c-99f6-991f24b4627f", + "start": { + "$date": "2021-11-14T21:06:34.000Z" + }, + "end": { + "$date": "2021-11-14T21:11:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8b7b80e7-edf8-499d-beba-314b0b93e8dc", + "start": { + "$date": "2021-11-14T21:11:34.000Z" + }, + "end": { + "$date": "2021-11-14T22:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f2a7fb78-e51f-45d9-ab05-fbb0a08cd2e4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T21:05:41.000Z" + }, + "end": { + "$date": "2021-11-14T23:11:40.000Z" + }, + "events": [ + { + "uuid": "f7a9834d-53c3-4912-bf04-509ba14daf67", + "start": { + "$date": "2021-11-14T21:05:41.000Z" + }, + "end": { + "$date": "2021-11-14T23:11:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1f5454de-2eb4-4983-ac79-d3ba982cd566", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-14T21:14:52.000Z" + }, + "end": { + "$date": "2021-11-14T22:45:07.000Z" + }, + "events": [ + { + "uuid": "88fd382c-67e8-42d5-9fbd-3c5466fe88f7", + "start": { + "$date": "2021-11-14T21:14:52.000Z" + }, + "end": { + "$date": "2021-11-14T22:45:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "49ee98ac-0d66-402e-922e-e03f5767b4c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-14T21:46:22.000Z" + }, + "end": { + "$date": "2021-11-14T22:59:17.000Z" + }, + "events": [ + { + "uuid": "2b2b935f-380e-45af-bd2f-0c112d293916", + "start": { + "$date": "2021-11-14T21:46:22.000Z" + }, + "end": { + "$date": "2021-11-14T22:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "5552dc7d-6da9-4742-8d3a-296b46d4d63f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T23:02:05.000Z" + }, + "end": { + "$date": "2021-11-14T23:08:12.000Z" + }, + "events": [ + { + "uuid": "45ec4534-e0b3-44fc-8b54-ed8c9d0fc15e", + "start": { + "$date": "2021-11-14T23:02:05.000Z" + }, + "end": { + "$date": "2021-11-14T23:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "716e3306-bac5-4aeb-a882-a3ea3206c4fa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T23:08:21.000Z" + }, + "end": { + "$date": "2021-11-14T23:58:45.000Z" + }, + "events": [ + { + "uuid": "b3d14e39-6bcb-4111-b07e-7fa61254556e", + "start": { + "$date": "2021-11-14T23:08:21.000Z" + }, + "end": { + "$date": "2021-11-14T23:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69b169db-c789-4a9b-b4f5-0405c5e9dc07", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-14T23:17:55.000Z" + }, + "end": { + "$date": "2021-11-14T23:50:17.000Z" + }, + "events": [ + { + "uuid": "38daa75d-284c-4a8b-b6d1-546fb5c0b6d6", + "start": { + "$date": "2021-11-14T23:17:55.000Z" + }, + "end": { + "$date": "2021-11-14T23:50:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bff841d-1aea-419b-b722-10238d74a719", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-14T23:59:49.000Z" + }, + "end": { + "$date": "2021-11-15T00:54:38.000Z" + }, + "events": [ + { + "uuid": "f1b45fbc-1332-4b73-b257-359f51268765", + "start": { + "$date": "2021-11-14T23:59:49.000Z" + }, + "end": { + "$date": "2021-11-15T00:54:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8d40412d-0ee2-4f8c-b41c-292bea8f4b74", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-15T00:07:16.000Z" + }, + "end": { + "$date": "2021-11-15T01:46:44.000Z" + }, + "events": [ + { + "uuid": "32a41fc2-e16f-44cb-bd2d-6b9299f235d4", + "start": { + "$date": "2021-11-15T00:07:16.000Z" + }, + "end": { + "$date": "2021-11-15T01:46:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "2709234a-9c4d-4e03-88b9-cedbac25de84", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T00:55:17.000Z" + }, + "end": { + "$date": "2021-11-15T01:09:49.000Z" + }, + "events": [ + { + "uuid": "12a740d6-7eb3-4392-a311-186ed4539bb2", + "start": { + "$date": "2021-11-15T00:55:17.000Z" + }, + "end": { + "$date": "2021-11-15T01:09:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "9d507fd4-c958-4763-8261-464b5e2a09a3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-15T01:04:16.000Z" + }, + "end": { + "$date": "2021-11-15T01:06:19.000Z" + }, + "events": [ + { + "uuid": "bcf97cf2-2623-40c4-af2f-bf4c43a713e9", + "start": { + "$date": "2021-11-15T01:04:16.000Z" + }, + "end": { + "$date": "2021-11-15T01:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f279eb77-9b1a-48dd-b991-fd95fc8380a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T01:06:01.000Z" + }, + "end": { + "$date": "2021-11-15T02:14:10.000Z" + }, + "events": [ + { + "uuid": "8ee54924-5d45-481d-85c9-02b5fdfdfe31", + "start": { + "$date": "2021-11-15T01:06:01.000Z" + }, + "end": { + "$date": "2021-11-15T02:14:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "af895693-d434-4690-94d4-e818d2a8efb7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-15T01:06:43.000Z" + }, + "end": { + "$date": "2021-11-15T01:32:55.000Z" + }, + "events": [ + { + "uuid": "94214394-a78c-41c2-a84d-97d4a8bb1f7c", + "start": { + "$date": "2021-11-15T01:06:43.000Z" + }, + "end": { + "$date": "2021-11-15T01:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "902d47db-6208-4fd9-9c25-e8422d67cd0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T01:10:33.000Z" + }, + "end": { + "$date": "2021-11-15T02:03:15.000Z" + }, + "events": [ + { + "uuid": "853459c2-b981-4d12-b8b8-39350f567014", + "start": { + "$date": "2021-11-15T01:10:33.000Z" + }, + "end": { + "$date": "2021-11-15T01:48:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f0c5ff03-bd75-42c3-a39e-bda418123e81", + "start": { + "$date": "2021-11-15T01:48:33.000Z" + }, + "end": { + "$date": "2021-11-15T02:03:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "62c2887e-9953-42ba-b716-3e978c7c9cfc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T01:31:22.000Z" + }, + "end": { + "$date": "2021-11-15T02:39:32.000Z" + }, + "events": [ + { + "uuid": "46c398a0-7387-4f3e-a7a5-d4c5c046e48a", + "start": { + "$date": "2021-11-15T01:31:22.000Z" + }, + "end": { + "$date": "2021-11-15T02:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "32f49c64-45e1-4667-a51c-d13fe9762e6e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-15T01:33:13.000Z" + }, + "end": { + "$date": "2021-11-15T02:55:42.000Z" + }, + "events": [ + { + "uuid": "8cde7101-2ce9-4e7a-85fa-f890fd49b710", + "start": { + "$date": "2021-11-15T01:33:13.000Z" + }, + "end": { + "$date": "2021-11-15T02:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "18f53d62-9444-48ea-b588-b69075dc638d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-15T01:43:33.000Z" + }, + "end": { + "$date": "2021-11-15T02:25:21.000Z" + }, + "events": [ + { + "uuid": "196f3e0f-229d-459b-9341-4e7f0763be98", + "start": { + "$date": "2021-11-15T01:43:33.000Z" + }, + "end": { + "$date": "2021-11-15T02:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "07d2f58c-d1a6-45af-9a4d-3792edbda597", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-15T01:46:53.000Z" + }, + "end": { + "$date": "2021-11-15T01:51:04.000Z" + }, + "events": [ + { + "uuid": "4d2e03ee-ad1c-4a00-8e46-b7c66a5f9740", + "start": { + "$date": "2021-11-15T01:46:53.000Z" + }, + "end": { + "$date": "2021-11-15T01:51:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b382ef9b-d3d1-42a3-8280-6278e91c8cde", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-15T01:58:00.000Z" + }, + "end": { + "$date": "2021-11-15T02:22:30.000Z" + }, + "events": [ + { + "uuid": "20b26026-93c5-47ed-95c6-1635b9ff6d17", + "start": { + "$date": "2021-11-15T01:58:00.000Z" + }, + "end": { + "$date": "2021-11-15T02:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd7d2419-5077-44ad-b76b-ba067efb1cca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T02:41:23.000Z" + }, + "end": { + "$date": "2021-11-15T02:47:43.000Z" + }, + "events": [ + { + "uuid": "822f9ea6-fe23-42ca-893b-3346c57c3d7c", + "start": { + "$date": "2021-11-15T02:41:23.000Z" + }, + "end": { + "$date": "2021-11-15T02:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7fe4e2d1-63ee-4f9c-8c05-972a5c528896", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T02:44:25.000Z" + }, + "end": { + "$date": "2021-11-15T02:46:45.000Z" + }, + "events": [ + { + "uuid": "9d526bcd-ea32-459f-80c7-a219c1c736a7", + "start": { + "$date": "2021-11-15T02:44:25.000Z" + }, + "end": { + "$date": "2021-11-15T02:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b094345e-d93d-49fa-82d7-7be084d12514", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T02:54:46.000Z" + }, + "end": { + "$date": "2021-11-15T03:33:38.000Z" + }, + "events": [ + { + "uuid": "05d920dd-7bf9-4202-8b2d-9b372c520252", + "start": { + "$date": "2021-11-15T02:54:46.000Z" + }, + "end": { + "$date": "2021-11-15T03:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f6ab6e3d-af5a-4a40-a29a-716865b2efa8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-15T03:06:21.000Z" + }, + "end": { + "$date": "2021-11-15T03:22:14.000Z" + }, + "events": [ + { + "uuid": "a8d3c160-9fa0-400c-976e-3a33e9c1679f", + "start": { + "$date": "2021-11-15T03:06:21.000Z" + }, + "end": { + "$date": "2021-11-15T03:22:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fb517c16-f217-4e15-a66a-10ea171e1a93", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-15T03:31:17.000Z" + }, + "end": { + "$date": "2021-11-15T05:26:47.000Z" + }, + "events": [ + { + "uuid": "a411b513-b29a-4301-8fdc-a1a467c0e900", + "start": { + "$date": "2021-11-15T03:31:17.000Z" + }, + "end": { + "$date": "2021-11-15T05:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a8132a1-630e-4674-a0c0-12edd65bbc94", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T03:44:28.000Z" + }, + "end": { + "$date": "2021-11-15T04:28:27.000Z" + }, + "events": [ + { + "uuid": "dfff5b8f-f7aa-46b6-93ce-06fbfecc2fb7", + "start": { + "$date": "2021-11-15T03:44:28.000Z" + }, + "end": { + "$date": "2021-11-15T04:28:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d2a96543-a700-4fb7-a4b1-c669eeaa5997", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-15T04:01:02.000Z" + }, + "end": { + "$date": "2021-11-15T04:33:48.000Z" + }, + "events": [ + { + "uuid": "0159325b-1cc6-4d96-9736-6c52cc20dd95", + "start": { + "$date": "2021-11-15T04:01:02.000Z" + }, + "end": { + "$date": "2021-11-15T04:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2cf4d4a4-31f8-4a8f-83bc-4e85cf13622f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-15T04:20:45.000Z" + }, + "end": { + "$date": "2021-11-15T07:20:07.000Z" + }, + "events": [ + { + "uuid": "bc3cd788-1850-41e6-850d-e34748f52e74", + "start": { + "$date": "2021-11-15T04:20:45.000Z" + }, + "end": { + "$date": "2021-11-15T07:20:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f4485ec6-68b4-47d7-87e8-83b6bd72722c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-15T04:25:04.000Z" + }, + "end": { + "$date": "2021-11-15T07:19:45.000Z" + }, + "events": [ + { + "uuid": "2d5c5457-fecd-4ff7-896d-7f57eac47070", + "start": { + "$date": "2021-11-15T04:25:04.000Z" + }, + "end": { + "$date": "2021-11-15T07:19:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4513393-cde3-4691-8a15-32729bd85dda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T04:37:40.000Z" + }, + "end": { + "$date": "2021-11-15T05:14:01.000Z" + }, + "events": [ + { + "uuid": "cdb02852-1a3b-460b-b6e8-2d66887594dd", + "start": { + "$date": "2021-11-15T04:37:40.000Z" + }, + "end": { + "$date": "2021-11-15T05:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e86b0b7c-b3c3-4148-84e4-672c441056fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-15T09:22:48.000Z" + }, + "end": { + "$date": "2021-11-15T09:23:18.000Z" + }, + "events": [ + { + "uuid": "b4dbf2f6-78e4-41c3-8a19-e667d8313927", + "start": { + "$date": "2021-11-15T09:22:48.000Z" + }, + "end": { + "$date": "2021-11-15T13:05:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb610e5e-a721-4717-bd74-559e53f9afb3", + "start": { + "$date": "2021-11-15T13:05:48.000Z" + }, + "end": { + "$date": "2021-11-15T13:26:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61c1523e-ea9b-401b-9fbc-3573bec1d04d", + "start": { + "$date": "2021-11-15T13:26:48.000Z" + }, + "end": { + "$date": "2021-11-15T09:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b403723a-7363-4c11-96d9-0ac316e85f82", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-15T04:42:42.000Z" + }, + "end": { + "$date": "2021-11-15T04:43:22.000Z" + }, + "events": [ + { + "uuid": "5cf40806-8e9d-48e4-b08d-c3bac62d1af3", + "start": { + "$date": "2021-11-15T04:42:42.000Z" + }, + "end": { + "$date": "2021-11-15T04:43:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bb91ca72-701f-4314-b4f7-2021f1f15ced", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T04:45:29.000Z" + }, + "end": { + "$date": "2021-11-15T04:48:10.000Z" + }, + "events": [ + { + "uuid": "36357efa-e22d-4cd4-914d-f90d3bcb1eb8", + "start": { + "$date": "2021-11-15T04:45:29.000Z" + }, + "end": { + "$date": "2021-11-15T04:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d672056-3094-464f-bce6-8e24c4e7f2e2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T04:56:41.000Z" + }, + "end": { + "$date": "2021-11-15T05:48:32.000Z" + }, + "events": [ + { + "uuid": "4d633a16-8075-4ff9-8547-f4c1b8999c58", + "start": { + "$date": "2021-11-15T04:56:41.000Z" + }, + "end": { + "$date": "2021-11-15T05:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "244c1d17-6975-4622-95bd-f0882970b726", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-15T05:04:04.000Z" + }, + "end": { + "$date": "2021-11-15T05:37:14.000Z" + }, + "events": [ + { + "uuid": "9d70593c-665d-4c45-bfb8-0edecd5cfc52", + "start": { + "$date": "2021-11-15T05:04:04.000Z" + }, + "end": { + "$date": "2021-11-15T05:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f3ae808-f66b-4fde-bd8e-0771360721b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T05:27:03.000Z" + }, + "end": { + "$date": "2021-11-15T05:34:30.000Z" + }, + "events": [ + { + "uuid": "1307794f-12e7-4c39-9da9-3c4a03927c36", + "start": { + "$date": "2021-11-15T05:27:03.000Z" + }, + "end": { + "$date": "2021-11-15T05:34:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4dc60a79-a30f-43a6-a3f9-4887487da655", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T05:42:06.000Z" + }, + "end": { + "$date": "2021-11-15T06:20:36.000Z" + }, + "events": [ + { + "uuid": "38ad4182-0193-46e4-954e-34744a9b8b72", + "start": { + "$date": "2021-11-15T05:42:06.000Z" + }, + "end": { + "$date": "2021-11-15T06:20:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85c314b5-8c0a-4033-a531-23cda952ccd2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-15T05:43:45.000Z" + }, + "end": { + "$date": "2021-11-15T05:58:45.000Z" + }, + "events": [ + { + "uuid": "0eb5dd94-3b93-4e00-a493-0a495ef96112", + "start": { + "$date": "2021-11-15T05:43:45.000Z" + }, + "end": { + "$date": "2021-11-15T05:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37a249c3-7ca7-4ec5-ab91-c9a2d3a2c7ca", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-15T06:01:41.000Z" + }, + "end": { + "$date": "2021-11-15T06:32:21.000Z" + }, + "events": [ + { + "uuid": "edece69a-1c59-4b98-8b8f-f01c78e69df7", + "start": { + "$date": "2021-11-15T06:01:41.000Z" + }, + "end": { + "$date": "2021-11-15T06:32:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "79158d53-4834-448a-9113-38515e5f1bc6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T06:34:05.000Z" + }, + "end": { + "$date": "2021-11-15T07:20:38.000Z" + }, + "events": [ + { + "uuid": "6864a310-8217-4276-a7f6-ef6f910297b1", + "start": { + "$date": "2021-11-15T06:34:05.000Z" + }, + "end": { + "$date": "2021-11-15T07:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cce7c630-9386-4488-b826-4ff2aae12fe2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-15T06:34:52.000Z" + }, + "end": { + "$date": "2021-11-15T06:37:17.000Z" + }, + "events": [ + { + "uuid": "c1197809-a55c-4564-9713-f2502e4ba720", + "start": { + "$date": "2021-11-15T06:34:52.000Z" + }, + "end": { + "$date": "2021-11-15T06:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cf974f65-f16c-47d8-bfd2-bf039fedefcb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-15T06:37:32.000Z" + }, + "end": { + "$date": "2021-11-15T07:19:59.000Z" + }, + "events": [ + { + "uuid": "4003c99c-5525-4f84-9a06-a2f74e164eb3", + "start": { + "$date": "2021-11-15T06:37:32.000Z" + }, + "end": { + "$date": "2021-11-15T07:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0ec4aecf-17bf-4915-9305-156c6f9c43aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T07:36:13.000Z" + }, + "end": { + "$date": "2021-11-15T07:44:39.000Z" + }, + "events": [ + { + "uuid": "254167c5-128d-44b6-940a-120a49571d3c", + "start": { + "$date": "2021-11-15T07:36:13.000Z" + }, + "end": { + "$date": "2021-11-15T07:44:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31c89687-8d69-405e-b7ac-df4df0ce1780", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T07:49:56.000Z" + }, + "end": { + "$date": "2021-11-15T08:22:31.000Z" + }, + "events": [ + { + "uuid": "f477a70e-db39-40fd-91b5-c196521bef3d", + "start": { + "$date": "2021-11-15T07:49:56.000Z" + }, + "end": { + "$date": "2021-11-15T08:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e6f8408d-097c-469f-8d0e-fbea28d68270", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T08:28:11.000Z" + }, + "end": { + "$date": "2021-11-15T08:35:33.000Z" + }, + "events": [ + { + "uuid": "5b27fb06-d0b8-44e5-b155-1d8451b90b54", + "start": { + "$date": "2021-11-15T08:28:11.000Z" + }, + "end": { + "$date": "2021-11-15T08:35:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bf36cbdd-fd8b-4806-baa6-090c2c6b1222", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T08:42:37.000Z" + }, + "end": { + "$date": "2021-11-15T09:09:27.000Z" + }, + "events": [ + { + "uuid": "ff59e217-1bde-43ad-99de-0cb702d3c863", + "start": { + "$date": "2021-11-15T08:42:37.000Z" + }, + "end": { + "$date": "2021-11-15T09:01:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c66a9588-8b6c-469d-9646-083cd0fdbafd", + "start": { + "$date": "2021-11-15T09:01:37.000Z" + }, + "end": { + "$date": "2021-11-15T09:03:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "62383949-9e04-4076-86f8-f1950e9f9831", + "start": { + "$date": "2021-11-15T09:03:37.000Z" + }, + "end": { + "$date": "2021-11-15T09:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c8ca0d3b-a9e3-45a7-9005-9cb770682f13", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T16:21:42.000Z" + }, + "end": { + "$date": "2021-11-15T18:56:25.000Z" + }, + "events": [ + { + "uuid": "6f5bb60f-5401-4267-8806-845d3fcd55fb", + "start": { + "$date": "2021-11-15T16:21:42.000Z" + }, + "end": { + "$date": "2021-11-15T18:56:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "eb898ae9-fc9a-4317-8980-787e13eb0a78", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-15T16:23:42.000Z" + }, + "end": { + "$date": "2021-11-15T16:48:15.000Z" + }, + "events": [ + { + "uuid": "05a7cc17-0955-4c8a-9bd8-12f1ed97fdfa", + "start": { + "$date": "2021-11-15T16:23:42.000Z" + }, + "end": { + "$date": "2021-11-15T16:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "6a43d74a-27d1-402a-b584-f5e459247b24", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-15T16:52:42.000Z" + }, + "end": { + "$date": "2021-11-15T17:11:29.000Z" + }, + "events": [ + { + "uuid": "5c677967-fe24-49c3-8ec1-edcb50feead6", + "start": { + "$date": "2021-11-15T16:52:42.000Z" + }, + "end": { + "$date": "2021-11-15T17:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "896b70b4-05f4-4168-a0e3-c4c7aec9dede", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-15T17:20:17.000Z" + }, + "end": { + "$date": "2021-11-15T17:29:05.000Z" + }, + "events": [ + { + "uuid": "e31ef872-5240-47d4-908e-c4ee480a507b", + "start": { + "$date": "2021-11-15T17:20:17.000Z" + }, + "end": { + "$date": "2021-11-15T17:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "844ad871-5805-441b-9db3-097df763c76f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-15T18:29:56.000Z" + }, + "end": { + "$date": "2021-11-15T19:57:07.000Z" + }, + "events": [ + { + "uuid": "f6fce739-e5c5-4803-b002-2049976322bf", + "start": { + "$date": "2021-11-15T18:29:56.000Z" + }, + "end": { + "$date": "2021-11-15T19:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e8c11af1-bc9f-4f18-a3b6-cc000df3e756", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T19:01:27.000Z" + }, + "end": { + "$date": "2021-11-15T19:14:27.000Z" + }, + "events": [ + { + "uuid": "482e3f5d-9972-4fd5-92e2-b1b880fb4b99", + "start": { + "$date": "2021-11-15T19:01:27.000Z" + }, + "end": { + "$date": "2021-11-15T19:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "86c65c54-17ad-473f-a650-b003384cfe46", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T19:14:33.000Z" + }, + "end": { + "$date": "2021-11-15T20:06:36.000Z" + }, + "events": [ + { + "uuid": "a25e8ef5-e05b-40de-8306-9827da585e0b", + "start": { + "$date": "2021-11-15T19:14:33.000Z" + }, + "end": { + "$date": "2021-11-15T20:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "108fd57a-a7b5-448b-a077-42453937de29", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-15T19:23:00.000Z" + }, + "end": { + "$date": "2021-11-15T21:30:04.000Z" + }, + "events": [ + { + "uuid": "4dd460ff-b2f6-4ea8-aba5-6fe127c96782", + "start": { + "$date": "2021-11-15T19:23:00.000Z" + }, + "end": { + "$date": "2021-11-15T21:30:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cc7e326a-bcaa-432b-b3b0-07e18356eb54", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-15T19:24:41.000Z" + }, + "end": { + "$date": "2021-11-15T21:29:44.000Z" + }, + "events": [ + { + "uuid": "fbc0c9ce-00e8-43ac-8e3c-bbc14cb9f39b", + "start": { + "$date": "2021-11-15T19:24:41.000Z" + }, + "end": { + "$date": "2021-11-15T21:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b35e2044-0b69-499b-b7f7-aa218e253994", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T19:57:20.000Z" + }, + "end": { + "$date": "2021-11-15T20:11:35.000Z" + }, + "events": [ + { + "uuid": "63375414-9957-4cb0-8bb4-90b9650bf4f3", + "start": { + "$date": "2021-11-15T19:57:20.000Z" + }, + "end": { + "$date": "2021-11-15T20:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0fe2b3a9-0760-429c-babe-4cbcfa63962a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T20:12:08.000Z" + }, + "end": { + "$date": "2021-11-15T20:56:45.000Z" + }, + "events": [ + { + "uuid": "0feaa13d-0e08-407c-bcc0-9ed7b8f5f4aa", + "start": { + "$date": "2021-11-15T20:12:08.000Z" + }, + "end": { + "$date": "2021-11-15T20:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5a8d80b0-cce7-4af4-a721-2cfa3577e0fa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-15T20:17:14.000Z" + }, + "end": { + "$date": "2021-11-15T23:47:15.000Z" + }, + "events": [ + { + "uuid": "c539a215-2212-4b9b-835d-8fd47367a584", + "start": { + "$date": "2021-11-15T20:17:14.000Z" + }, + "end": { + "$date": "2021-11-15T23:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8e267456-e25a-40f6-8fd7-0699ed8704ef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T21:11:35.000Z" + }, + "end": { + "$date": "2021-11-15T21:13:00.000Z" + }, + "events": [ + { + "uuid": "fa1af31c-b797-4e14-a023-9b4c89380aba", + "start": { + "$date": "2021-11-15T21:11:35.000Z" + }, + "end": { + "$date": "2021-11-15T21:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "05ca2689-fdf6-490d-90c1-eea5341874e6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T21:18:46.000Z" + }, + "end": { + "$date": "2021-11-15T22:18:20.000Z" + }, + "events": [ + { + "uuid": "8c5d4a8a-3818-4905-9c8a-c6ab1781b112", + "start": { + "$date": "2021-11-15T21:18:46.000Z" + }, + "end": { + "$date": "2021-11-15T22:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c353536b-4b43-4a1c-a3fd-bf0ff466350b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-15T21:55:24.000Z" + }, + "end": { + "$date": "2021-11-15T22:09:35.000Z" + }, + "events": [ + { + "uuid": "d5ef86e0-cf36-4910-92fe-450a1175f537", + "start": { + "$date": "2021-11-15T21:55:24.000Z" + }, + "end": { + "$date": "2021-11-15T22:04:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6921f64e-e11b-46fe-a464-3cc9c3bd50e0", + "start": { + "$date": "2021-11-15T22:04:24.000Z" + }, + "end": { + "$date": "2021-11-15T22:09:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dc1854bd-f943-40ac-a789-90900cd40b5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T22:15:25.000Z" + }, + "end": { + "$date": "2021-11-15T22:18:26.000Z" + }, + "events": [ + { + "uuid": "ab28ed9b-0fa9-4e30-a023-b88e7481ddb1", + "start": { + "$date": "2021-11-15T22:15:25.000Z" + }, + "end": { + "$date": "2021-11-15T22:18:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f22b8ca4-9d1c-459f-98d9-a6aa634e4003", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T22:20:41.000Z" + }, + "end": { + "$date": "2021-11-15T23:09:24.000Z" + }, + "events": [ + { + "uuid": "9184cccb-f5fb-443b-a562-fe5bcf7c4c44", + "start": { + "$date": "2021-11-15T22:20:41.000Z" + }, + "end": { + "$date": "2021-11-15T23:09:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "9212c9b4-62f0-44a9-a720-5f2d439a6a52", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T22:23:16.000Z" + }, + "end": { + "$date": "2021-11-15T22:26:21.000Z" + }, + "events": [ + { + "uuid": "03061561-f637-4eee-aff6-defdf0df7070", + "start": { + "$date": "2021-11-15T22:23:16.000Z" + }, + "end": { + "$date": "2021-11-15T22:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "682a0cb3-1a92-4db6-a152-7f756cc30228", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T22:26:26.000Z" + }, + "end": { + "$date": "2021-11-15T22:27:46.000Z" + }, + "events": [ + { + "uuid": "8ceb80f6-8d35-4281-a4d3-164ea24a38fa", + "start": { + "$date": "2021-11-15T22:26:26.000Z" + }, + "end": { + "$date": "2021-11-15T22:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "3e334f58-098b-46db-8013-cbcc5c638b8b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-15T22:38:48.000Z" + }, + "end": { + "$date": "2021-11-16T01:17:10.000Z" + }, + "events": [ + { + "uuid": "6da31b0f-a280-4038-83e2-ad1b6777fee2", + "start": { + "$date": "2021-11-15T22:38:48.000Z" + }, + "end": { + "$date": "2021-11-16T01:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "4de9bbe5-0de1-4384-9005-1f85c8a52f99", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T23:09:38.000Z" + }, + "end": { + "$date": "2021-11-15T23:36:36.000Z" + }, + "events": [ + { + "uuid": "2fd34c41-e1ba-4ba3-a9f7-522f3170bc7a", + "start": { + "$date": "2021-11-15T23:09:38.000Z" + }, + "end": { + "$date": "2021-11-15T23:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "fb3aac15-4bf3-472b-92d0-968653c16f54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-15T23:20:09.000Z" + }, + "end": { + "$date": "2021-11-15T23:21:11.000Z" + }, + "events": [ + { + "uuid": "0e9c5bf3-2734-48e5-8fa2-42bb680df2d3", + "start": { + "$date": "2021-11-15T23:20:09.000Z" + }, + "end": { + "$date": "2021-11-15T23:21:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d7630caa-d517-42d0-a60e-bb97f96c4bcf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-15T23:48:36.000Z" + }, + "end": { + "$date": "2021-11-16T01:18:16.000Z" + }, + "events": [ + { + "uuid": "725e8ea7-0fee-4528-a032-e9fab2b7aebe", + "start": { + "$date": "2021-11-15T23:48:36.000Z" + }, + "end": { + "$date": "2021-11-15T23:58:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3e149bf6-88b0-40cb-a16a-87e2710d56fa", + "start": { + "$date": "2021-11-15T23:58:36.000Z" + }, + "end": { + "$date": "2021-11-16T00:02:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "996d6637-0127-4d3a-b772-ea05be9cc118", + "start": { + "$date": "2021-11-16T00:02:36.000Z" + }, + "end": { + "$date": "2021-11-16T01:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f7253f96-9355-46ad-a4e4-d211982b32c5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-16T00:50:02.000Z" + }, + "end": { + "$date": "2021-11-16T01:16:16.000Z" + }, + "events": [ + { + "uuid": "c67cbf65-e2f0-4ecf-930d-c9645f281ba7", + "start": { + "$date": "2021-11-16T00:50:02.000Z" + }, + "end": { + "$date": "2021-11-16T01:16:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0d137984-3209-4e3b-aeb7-6c9a0d6d144f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-16T01:01:01.000Z" + }, + "end": { + "$date": "2021-11-16T05:02:06.000Z" + }, + "events": [ + { + "uuid": "1f231028-d1fb-4184-a9fb-44b0faa106e1", + "start": { + "$date": "2021-11-16T01:01:01.000Z" + }, + "end": { + "$date": "2021-11-16T01:38:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55d5170e-97ab-422e-b51c-92de35ec5b46", + "start": { + "$date": "2021-11-16T01:38:01.000Z" + }, + "end": { + "$date": "2021-11-16T01:42:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42a66c6c-b100-4d48-bc65-52eeb63be0a9", + "start": { + "$date": "2021-11-16T01:42:01.000Z" + }, + "end": { + "$date": "2021-11-16T05:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e9e44a12-f2d5-41dc-8011-cd7e030c111f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-16T01:04:51.000Z" + }, + "end": { + "$date": "2021-11-16T03:09:49.000Z" + }, + "events": [ + { + "uuid": "77112356-b507-4da6-855d-dd67ec7a0081", + "start": { + "$date": "2021-11-16T01:04:51.000Z" + }, + "end": { + "$date": "2021-11-16T03:09:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3ffad871-f239-4837-b9c5-0cd51ae8f0aa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-16T02:37:25.000Z" + }, + "end": { + "$date": "2021-11-16T02:40:40.000Z" + }, + "events": [ + { + "uuid": "4c57dbfa-8572-40c1-bfed-8ab0ffa10d7d", + "start": { + "$date": "2021-11-16T02:37:25.000Z" + }, + "end": { + "$date": "2021-11-16T02:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4c461e85-6524-4da3-8ade-dd2caee7f7ce", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-16T02:41:20.000Z" + }, + "end": { + "$date": "2021-11-16T04:08:05.000Z" + }, + "events": [ + { + "uuid": "42cb8188-98c7-44fc-8b96-4de2672f4e0b", + "start": { + "$date": "2021-11-16T02:41:20.000Z" + }, + "end": { + "$date": "2021-11-16T04:08:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "66f4aaf1-6a91-449e-baaf-053a1c489ff7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-16T02:49:21.000Z" + }, + "end": { + "$date": "2021-11-16T04:16:29.000Z" + }, + "events": [ + { + "uuid": "deae3c0e-d403-462a-85b3-395a16418863", + "start": { + "$date": "2021-11-16T02:49:21.000Z" + }, + "end": { + "$date": "2021-11-16T04:16:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bff0a11d-0d16-4d16-90a2-06892addea78", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-16T03:45:19.000Z" + }, + "end": { + "$date": "2021-11-16T06:24:12.000Z" + }, + "events": [ + { + "uuid": "d25697ef-f99d-4cad-b6cc-b9b6ac69c932", + "start": { + "$date": "2021-11-16T03:45:19.000Z" + }, + "end": { + "$date": "2021-11-16T06:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "118eb4d0-91de-484a-8196-e2e2e881526f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-16T03:55:07.000Z" + }, + "end": { + "$date": "2021-11-16T06:23:05.000Z" + }, + "events": [ + { + "uuid": "0f7e294c-3edb-4ce7-8466-d94ede707797", + "start": { + "$date": "2021-11-16T03:55:07.000Z" + }, + "end": { + "$date": "2021-11-16T06:23:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "75bfcd1e-8d87-4d85-8d1f-b829a2420127", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-16T03:57:44.000Z" + }, + "end": { + "$date": "2021-11-16T05:58:55.000Z" + }, + "events": [ + { + "uuid": "0b1cd5c9-d9b4-4948-ad2b-86c783bd3d85", + "start": { + "$date": "2021-11-16T03:57:44.000Z" + }, + "end": { + "$date": "2021-11-16T05:58:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8e2be2ad-e99e-4b86-8ecb-7462cc3c5ad4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-16T04:03:52.000Z" + }, + "end": { + "$date": "2021-11-16T06:22:56.000Z" + }, + "events": [ + { + "uuid": "71fd3115-bdbd-4fb0-b578-dd1a5ed4a6aa", + "start": { + "$date": "2021-11-16T04:03:52.000Z" + }, + "end": { + "$date": "2021-11-16T06:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "41188ad9-7834-4b53-81a9-7cbee31604a0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-16T04:08:43.000Z" + }, + "end": { + "$date": "2021-11-16T05:01:59.000Z" + }, + "events": [ + { + "uuid": "5f3e642c-bdcc-483e-9f10-775cbc1e78cb", + "start": { + "$date": "2021-11-16T04:08:43.000Z" + }, + "end": { + "$date": "2021-11-16T05:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a446214e-7de2-47d2-b9ab-511f0eaf9c8c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-16T04:16:43.000Z" + }, + "end": { + "$date": "2021-11-16T06:23:18.000Z" + }, + "events": [ + { + "uuid": "cad343bb-2a59-495f-9c9f-d9f50825fc5d", + "start": { + "$date": "2021-11-16T04:16:43.000Z" + }, + "end": { + "$date": "2021-11-16T06:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "eb9dc5fd-d268-4133-b9ad-c27d64fda904", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-16T05:02:04.000Z" + }, + "end": { + "$date": "2021-11-16T06:22:59.000Z" + }, + "events": [ + { + "uuid": "65d9015f-cd21-4685-8bc4-893d9471567b", + "start": { + "$date": "2021-11-16T05:02:04.000Z" + }, + "end": { + "$date": "2021-11-16T06:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c011ebcf-39a6-4712-ab18-b2eda04b03b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-16T05:20:22.000Z" + }, + "end": { + "$date": "2021-11-16T05:27:07.000Z" + }, + "events": [ + { + "uuid": "1615803b-53c5-4956-bce5-07c2bca85f97", + "start": { + "$date": "2021-11-16T05:20:22.000Z" + }, + "end": { + "$date": "2021-11-16T05:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bfce932e-ec25-4cab-a390-8be95daa2682", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-16T05:29:04.000Z" + }, + "end": { + "$date": "2021-11-16T06:24:48.000Z" + }, + "events": [ + { + "uuid": "e3a32bef-8f54-4ce4-a43e-073ea9856d85", + "start": { + "$date": "2021-11-16T05:29:04.000Z" + }, + "end": { + "$date": "2021-11-16T06:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a2f66708-41c0-4526-999a-d67f72cd5592", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-16T06:08:09.000Z" + }, + "end": { + "$date": "2021-11-16T07:21:52.000Z" + }, + "events": [ + { + "uuid": "8afc236d-fb2e-461c-b6d5-4afd633fc9db", + "start": { + "$date": "2021-11-16T06:08:09.000Z" + }, + "end": { + "$date": "2021-11-16T06:26:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb13f973-d95a-4e6b-8ae0-2bab12f00e5e", + "start": { + "$date": "2021-11-16T06:26:09.000Z" + }, + "end": { + "$date": "2021-11-16T06:31:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9e8fe347-ca5c-44b7-ad68-9e15949ce4db", + "start": { + "$date": "2021-11-16T06:31:09.000Z" + }, + "end": { + "$date": "2021-11-16T06:41:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81cddbd7-4a75-4af1-9d6a-4dbfa47df2ba", + "start": { + "$date": "2021-11-16T06:41:09.000Z" + }, + "end": { + "$date": "2021-11-16T07:00:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "59415814-194d-4f6f-a8e8-f71a496e2396", + "start": { + "$date": "2021-11-16T07:00:09.000Z" + }, + "end": { + "$date": "2021-11-16T07:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d6178f3b-c77d-47c5-bd46-fccbadef3f48", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-16T06:24:47.000Z" + }, + "end": { + "$date": "2021-11-16T08:47:17.000Z" + }, + "events": [ + { + "uuid": "90a94b03-05f0-448f-b04f-4edaa04e50c3", + "start": { + "$date": "2021-11-16T06:24:47.000Z" + }, + "end": { + "$date": "2021-11-16T08:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b605333f-c75f-433e-978c-b5f36d60a5cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-16T07:18:09.000Z" + }, + "end": { + "$date": "2021-11-16T08:47:06.000Z" + }, + "events": [ + { + "uuid": "9b2c7f72-1f8d-459f-af1e-27709e809750", + "start": { + "$date": "2021-11-16T07:18:09.000Z" + }, + "end": { + "$date": "2021-11-16T08:47:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c7e20d2-af78-4757-909f-7119528f0e87", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-16T16:12:29.000Z" + }, + "end": { + "$date": "2021-11-16T19:34:19.000Z" + }, + "events": [ + { + "uuid": "1cbd9ffd-3636-4228-8dbe-9f6e31f50732", + "start": { + "$date": "2021-11-16T16:12:29.000Z" + }, + "end": { + "$date": "2021-11-16T19:20:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1aa9be7-3952-43a9-b17a-0323883cd931", + "start": { + "$date": "2021-11-16T19:20:29.000Z" + }, + "end": { + "$date": "2021-11-16T19:32:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90a445cf-bf69-46c3-afa6-5c4e54972fbe", + "start": { + "$date": "2021-11-16T19:32:29.000Z" + }, + "end": { + "$date": "2021-11-16T19:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4ac680c8-1ba6-4f4c-8cd0-5867efb802e3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-16T17:10:28.000Z" + }, + "end": { + "$date": "2021-11-16T19:42:36.000Z" + }, + "events": [ + { + "uuid": "c5b0166c-f696-42ee-903e-03eefde09e09", + "start": { + "$date": "2021-11-16T17:10:28.000Z" + }, + "end": { + "$date": "2021-11-16T19:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "7af1c682-bc0d-4e78-816f-0f91d7a81a32", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-16T19:21:24.000Z" + }, + "end": { + "$date": "2021-11-16T19:44:02.000Z" + }, + "events": [ + { + "uuid": "5278d8df-e2e9-4db4-870a-bed7e95e063a", + "start": { + "$date": "2021-11-16T19:21:24.000Z" + }, + "end": { + "$date": "2021-11-16T19:44:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "231daf52-17ce-42ac-8c1d-0875a013dc38", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-16T22:17:14.000Z" + }, + "end": { + "$date": "2021-11-17T00:55:52.000Z" + }, + "events": [ + { + "uuid": "d98d79e0-9d41-4bf6-9049-d607259091a1", + "start": { + "$date": "2021-11-16T22:17:14.000Z" + }, + "end": { + "$date": "2021-11-17T00:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed0d2149-f648-4df7-8b48-7c43a5b43b68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-16T22:49:56.000Z" + }, + "end": { + "$date": "2021-11-16T23:59:54.000Z" + }, + "events": [ + { + "uuid": "d58c5cdd-de8c-4187-bbdb-ef14c6569195", + "start": { + "$date": "2021-11-16T22:49:56.000Z" + }, + "end": { + "$date": "2021-11-16T23:59:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "499f41d2-2aed-4d7f-9b25-0564fbc47f11", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-16T22:54:56.000Z" + }, + "end": { + "$date": "2021-11-17T00:40:38.000Z" + }, + "events": [ + { + "uuid": "0aeaed99-e970-4a92-a83b-d7cb82a4f63d", + "start": { + "$date": "2021-11-16T22:54:56.000Z" + }, + "end": { + "$date": "2021-11-17T00:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "88e34939-348b-46a5-b923-c250436c753d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-17T00:49:16.000Z" + }, + "end": { + "$date": "2021-11-17T01:15:17.000Z" + }, + "events": [ + { + "uuid": "aef274fb-6121-4234-afcf-9d3669731813", + "start": { + "$date": "2021-11-17T00:49:16.000Z" + }, + "end": { + "$date": "2021-11-17T01:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3364eba2-a58a-4fcf-a2b2-db49bab4eadb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-17T01:01:32.000Z" + }, + "end": { + "$date": "2021-11-17T01:17:44.000Z" + }, + "events": [ + { + "uuid": "6f11f088-cdaa-46ee-aa92-13e61d1b27e2", + "start": { + "$date": "2021-11-17T01:01:32.000Z" + }, + "end": { + "$date": "2021-11-17T01:17:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7d5fb676-f995-4b03-81fa-1eb3fa604eaa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-17T01:29:45.000Z" + }, + "end": { + "$date": "2021-11-17T02:36:58.000Z" + }, + "events": [ + { + "uuid": "4290d373-5e7f-4bca-9914-ceb27e7761db", + "start": { + "$date": "2021-11-17T01:29:45.000Z" + }, + "end": { + "$date": "2021-11-17T02:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "17e780e1-91b5-44a5-8521-7ef0286aa651", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-17T01:39:25.000Z" + }, + "end": { + "$date": "2021-11-17T02:22:05.000Z" + }, + "events": [ + { + "uuid": "9554fb8c-28b1-4646-b42c-ba82d267e569", + "start": { + "$date": "2021-11-17T01:39:25.000Z" + }, + "end": { + "$date": "2021-11-17T02:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3fa6e43a-0c89-4fb3-9937-ba35267867df", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-17T01:52:45.000Z" + }, + "end": { + "$date": "2021-11-17T02:33:17.000Z" + }, + "events": [ + { + "uuid": "3cfdfad1-860d-4326-9c12-6c6059c7fc4c", + "start": { + "$date": "2021-11-17T01:52:45.000Z" + }, + "end": { + "$date": "2021-11-17T02:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4a77d5d3-7b58-4e61-97ed-88f5707da5a6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-17T02:25:32.000Z" + }, + "end": { + "$date": "2021-11-17T07:34:01.000Z" + }, + "events": [ + { + "uuid": "36aac827-b773-41b8-8fe7-1a81ffb6880b", + "start": { + "$date": "2021-11-17T02:25:32.000Z" + }, + "end": { + "$date": "2021-11-17T07:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4e0e34e-1af6-4fb9-bda8-57196e4fcdc0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-17T02:27:22.000Z" + }, + "end": { + "$date": "2021-11-17T03:53:17.000Z" + }, + "events": [ + { + "uuid": "acefc356-1662-42e3-b642-a8453743756f", + "start": { + "$date": "2021-11-17T02:27:22.000Z" + }, + "end": { + "$date": "2021-11-17T03:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01f3482a-a62a-4f01-9efa-e74ab6bc1922", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-17T02:41:18.000Z" + }, + "end": { + "$date": "2021-11-17T03:30:26.000Z" + }, + "events": [ + { + "uuid": "8ed6eab5-1cd9-490b-9d0e-56c8d8cacaf1", + "start": { + "$date": "2021-11-17T02:41:18.000Z" + }, + "end": { + "$date": "2021-11-17T03:30:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f4d4f2cd-29f4-4292-baca-2704345bf6bf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T02:50:50.000Z" + }, + "end": { + "$date": "2021-11-17T03:50:09.000Z" + }, + "events": [ + { + "uuid": "96412efe-528f-4b3f-8a67-5794b24aa93c", + "start": { + "$date": "2021-11-17T02:50:50.000Z" + }, + "end": { + "$date": "2021-11-17T03:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df5f3183-cd62-46c2-a0b3-2b16111e5dbb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-17T03:31:31.000Z" + }, + "end": { + "$date": "2021-11-17T03:32:36.000Z" + }, + "events": [ + { + "uuid": "3cfd4215-52e0-4a1b-b4e6-96ad361e065c", + "start": { + "$date": "2021-11-17T03:31:31.000Z" + }, + "end": { + "$date": "2021-11-17T03:32:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b8bfd489-f1f9-4734-9f64-f52b080991e9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-17T03:33:16.000Z" + }, + "end": { + "$date": "2021-11-17T07:34:08.000Z" + }, + "events": [ + { + "uuid": "0ce6c4c1-f447-4c3d-99d3-1e50923abe55", + "start": { + "$date": "2021-11-17T03:33:16.000Z" + }, + "end": { + "$date": "2021-11-17T07:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "26ce71e3-3e2c-417a-97a5-120a9de3bb65", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-17T03:54:05.000Z" + }, + "end": { + "$date": "2021-11-17T07:01:33.000Z" + }, + "events": [ + { + "uuid": "fc205fee-8ee5-4c5a-b9cf-9e1a05c33d5c", + "start": { + "$date": "2021-11-17T03:54:05.000Z" + }, + "end": { + "$date": "2021-11-17T07:01:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9942aa78-62f7-4712-a02b-8bb6a7000ab9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T04:26:09.000Z" + }, + "end": { + "$date": "2021-11-17T05:50:09.000Z" + }, + "events": [ + { + "uuid": "358c1ae2-80db-4d65-b0af-f60ec3154ff0", + "start": { + "$date": "2021-11-17T04:26:09.000Z" + }, + "end": { + "$date": "2021-11-17T05:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a44c04e3-9d7d-42ff-b403-7bb05cd14344", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-17T05:10:16.000Z" + }, + "end": { + "$date": "2021-11-17T05:33:06.000Z" + }, + "events": [ + { + "uuid": "071e7d35-1e5d-4d5a-8ad3-66e56fd25f79", + "start": { + "$date": "2021-11-17T05:10:16.000Z" + }, + "end": { + "$date": "2021-11-17T05:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1beb878f-c2a1-4982-a65c-e444ce7201a7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-17T05:41:56.000Z" + }, + "end": { + "$date": "2021-11-17T06:12:37.000Z" + }, + "events": [ + { + "uuid": "a92f34de-0d40-4fff-a81f-641641f1b8f7", + "start": { + "$date": "2021-11-17T05:41:56.000Z" + }, + "end": { + "$date": "2021-11-17T06:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "35b1bd47-3ab0-4346-a59b-12bf1202a082", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-17T05:34:23.000Z" + }, + "end": { + "$date": "2021-11-17T05:48:15.000Z" + }, + "events": [ + { + "uuid": "56c23736-7a81-4f0c-8b96-0c95d8ec6fa6", + "start": { + "$date": "2021-11-17T05:34:23.000Z" + }, + "end": { + "$date": "2021-11-17T05:48:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2b28b885-6f7d-4740-8516-6935ce8a31ea", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-17T05:49:40.000Z" + }, + "end": { + "$date": "2021-11-17T07:01:38.000Z" + }, + "events": [ + { + "uuid": "ca31923c-a02e-4282-a296-4f2365e44e1e", + "start": { + "$date": "2021-11-17T05:49:40.000Z" + }, + "end": { + "$date": "2021-11-17T07:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cee13062-3e06-4cb8-a99a-f8c691ec51ac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-17T06:07:23.000Z" + }, + "end": { + "$date": "2021-11-17T07:01:23.000Z" + }, + "events": [ + { + "uuid": "16219c77-2dc6-4a17-9fe4-48bbe0421a5f", + "start": { + "$date": "2021-11-17T06:07:23.000Z" + }, + "end": { + "$date": "2021-11-17T07:01:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25c0559a-2cbe-41bd-a77c-60e94b2b4275", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-17T06:20:38.000Z" + }, + "end": { + "$date": "2021-11-17T06:47:49.000Z" + }, + "events": [ + { + "uuid": "772d099d-4e71-4947-97a3-c694cf0bea6c", + "start": { + "$date": "2021-11-17T06:20:38.000Z" + }, + "end": { + "$date": "2021-11-17T06:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "1889b853-c73a-4a62-95ab-8024203406be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-17T07:01:33.000Z" + }, + "end": { + "$date": "2021-11-17T07:26:53.000Z" + }, + "events": [ + { + "uuid": "24e55f03-ac3e-4ccc-8a61-b5a55ccfb842", + "start": { + "$date": "2021-11-17T07:01:33.000Z" + }, + "end": { + "$date": "2021-11-17T07:26:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f3a946cf-9fc6-450c-b4dc-872dac6d2d96", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-17T07:02:03.000Z" + }, + "end": { + "$date": "2021-11-17T07:27:05.000Z" + }, + "events": [ + { + "uuid": "b0c206e3-01ea-4a9d-a36d-f5bba9b656dc", + "start": { + "$date": "2021-11-17T07:02:03.000Z" + }, + "end": { + "$date": "2021-11-17T07:27:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bdb247b3-6c77-48c6-8dbd-2469d78aa3cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-17T07:30:03.000Z" + }, + "end": { + "$date": "2021-11-17T07:39:44.000Z" + }, + "events": [ + { + "uuid": "a82c63d8-8afd-4cd4-bb9d-71f112377e2d", + "start": { + "$date": "2021-11-17T07:30:03.000Z" + }, + "end": { + "$date": "2021-11-17T07:39:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4b8b3e14-745b-4d92-b9e2-bdf7993b71a1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-17T07:34:48.000Z" + }, + "end": { + "$date": "2021-11-17T08:14:28.000Z" + }, + "events": [ + { + "uuid": "ff67359a-2ebd-4645-b07f-480f57bb782d", + "start": { + "$date": "2021-11-17T07:34:48.000Z" + }, + "end": { + "$date": "2021-11-17T08:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "71e040e7-4a1d-4e52-9dbb-dbdbd588adba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-17T07:35:31.000Z" + }, + "end": { + "$date": "2021-11-17T08:13:44.000Z" + }, + "events": [ + { + "uuid": "3b22ec98-1469-43e4-8a9a-05bb612d4ad3", + "start": { + "$date": "2021-11-17T07:35:31.000Z" + }, + "end": { + "$date": "2021-11-17T08:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0452fc41-6591-4018-a901-dacd5d0644f9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T15:35:34.000Z" + }, + "end": { + "$date": "2021-11-17T15:36:39.000Z" + }, + "events": [ + { + "uuid": "065faf3e-ebda-43b4-8f0d-c98b7436d173", + "start": { + "$date": "2021-11-17T15:35:34.000Z" + }, + "end": { + "$date": "2021-11-17T15:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "13f3e4c3-1046-4db8-a8f8-18d05eae7e5a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T16:22:32.000Z" + }, + "end": { + "$date": "2021-11-17T16:28:28.000Z" + }, + "events": [ + { + "uuid": "1462a33f-d6cd-4db0-9053-a9d51b954f7d", + "start": { + "$date": "2021-11-17T16:22:32.000Z" + }, + "end": { + "$date": "2021-11-17T16:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "beaed625-a184-4d87-adf8-844aab6a1dc3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T16:28:39.000Z" + }, + "end": { + "$date": "2021-11-17T16:32:14.000Z" + }, + "events": [ + { + "uuid": "3b1c4f89-1107-43de-b6c9-2afcb40e32ec", + "start": { + "$date": "2021-11-17T16:28:39.000Z" + }, + "end": { + "$date": "2021-11-17T16:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2b0fb4eb-146d-4097-84ab-7d3eb2e4afae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T16:35:20.000Z" + }, + "end": { + "$date": "2021-11-17T16:37:14.000Z" + }, + "events": [ + { + "uuid": "6354f5b9-9588-4455-ad21-e6452059ec9d", + "start": { + "$date": "2021-11-17T16:35:20.000Z" + }, + "end": { + "$date": "2021-11-17T16:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a13427b5-2277-46c2-889e-4365005ef185", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T16:37:25.000Z" + }, + "end": { + "$date": "2021-11-17T16:39:40.000Z" + }, + "events": [ + { + "uuid": "d3c653bb-1236-41c1-a43a-1ff3da28579d", + "start": { + "$date": "2021-11-17T16:37:25.000Z" + }, + "end": { + "$date": "2021-11-17T16:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1c427508-606b-4024-b8f5-3148b234cd68", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-17T22:24:01.000Z" + }, + "end": { + "$date": "2021-11-17T22:55:50.000Z" + }, + "events": [ + { + "uuid": "5068c310-4f11-498b-953d-3702b6a7371c", + "start": { + "$date": "2021-11-17T22:24:01.000Z" + }, + "end": { + "$date": "2021-11-17T22:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "eb69ec3d-f3c9-426a-b334-53bf30ff54d4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T22:35:02.000Z" + }, + "end": { + "$date": "2021-11-17T22:36:52.000Z" + }, + "events": [ + { + "uuid": "381ec537-2281-4bdc-956d-004474675c28", + "start": { + "$date": "2021-11-17T22:35:02.000Z" + }, + "end": { + "$date": "2021-11-17T22:36:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8754cb19-8a09-424a-a76e-f45c70d61062", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-17T22:39:19.000Z" + }, + "end": { + "$date": "2021-11-18T02:54:54.000Z" + }, + "events": [ + { + "uuid": "0b039dae-3998-4844-8353-c7ce94c558f5", + "start": { + "$date": "2021-11-17T22:39:19.000Z" + }, + "end": { + "$date": "2021-11-18T02:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "b056f43d-ab5c-4092-8578-572f59af4eed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-17T22:42:47.000Z" + }, + "end": { + "$date": "2021-11-17T23:05:58.000Z" + }, + "events": [ + { + "uuid": "1a03375c-a686-411d-86a2-36c0c8a6dc26", + "start": { + "$date": "2021-11-17T22:42:47.000Z" + }, + "end": { + "$date": "2021-11-17T23:05:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d61af5b1-7381-45ac-926c-43c3c47fd2cb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T22:50:30.000Z" + }, + "end": { + "$date": "2021-11-17T23:05:43.000Z" + }, + "events": [ + { + "uuid": "654d905b-e051-40e6-8b96-91ac5a5f03b7", + "start": { + "$date": "2021-11-17T22:50:30.000Z" + }, + "end": { + "$date": "2021-11-17T23:05:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5c945b42-fd74-4f5d-89d7-1ddd73129183", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-17T23:05:49.000Z" + }, + "end": { + "$date": "2021-11-17T23:45:38.000Z" + }, + "events": [ + { + "uuid": "a22dbafe-5733-455a-8af7-ea5fe2371554", + "start": { + "$date": "2021-11-17T23:05:49.000Z" + }, + "end": { + "$date": "2021-11-17T23:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9df242f2-5fc4-431a-95c3-eb355c8b3835", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-17T23:33:54.000Z" + }, + "end": { + "$date": "2021-11-18T02:02:11.000Z" + }, + "events": [ + { + "uuid": "31d49e0e-ecdf-45a1-90c2-b2710301bdd4", + "start": { + "$date": "2021-11-17T23:33:54.000Z" + }, + "end": { + "$date": "2021-11-18T00:02:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6af030f3-0a67-4f8e-87f0-af859639dfb5", + "start": { + "$date": "2021-11-18T00:02:54.000Z" + }, + "end": { + "$date": "2021-11-18T01:58:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4326f21f-d1e0-44e0-8b40-474935cb6e8a", + "start": { + "$date": "2021-11-18T01:58:54.000Z" + }, + "end": { + "$date": "2021-11-18T02:02:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5bbd0c9d-a56e-4dd0-98db-4e4dca552dc4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-17T23:47:19.000Z" + }, + "end": { + "$date": "2021-11-18T00:40:28.000Z" + }, + "events": [ + { + "uuid": "e9089d7f-5cc0-4120-8603-a1b62a6eeda6", + "start": { + "$date": "2021-11-17T23:47:19.000Z" + }, + "end": { + "$date": "2021-11-18T00:40:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f7b179aa-ee3e-44dd-9355-e59fd8ef8f13", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-18T00:48:45.000Z" + }, + "end": { + "$date": "2021-11-18T05:21:11.000Z" + }, + "events": [ + { + "uuid": "54d30476-5e80-471c-a66b-ae81c67758c3", + "start": { + "$date": "2021-11-18T00:48:45.000Z" + }, + "end": { + "$date": "2021-11-18T05:21:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f63bf31f-8990-4a3a-8d46-7f178f181c5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-18T01:15:53.000Z" + }, + "end": { + "$date": "2021-11-18T01:33:37.000Z" + }, + "events": [ + { + "uuid": "58d831bf-0356-4c23-b992-fee131091419", + "start": { + "$date": "2021-11-18T01:15:53.000Z" + }, + "end": { + "$date": "2021-11-18T01:33:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", + "uuid": "4ad5af87-2b79-4f0d-b5bf-631636a2bd1a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-18T01:25:21.000Z" + }, + "end": { + "$date": "2021-11-18T02:30:22.000Z" + }, + "events": [ + { + "uuid": "b7f9e945-892f-4e79-abc2-d8c1abb3aee0", + "start": { + "$date": "2021-11-18T01:25:21.000Z" + }, + "end": { + "$date": "2021-11-18T02:30:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "d94fec06-ee5e-41d5-bcdd-03007d663440", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-18T02:32:42.000Z" + }, + "end": { + "$date": "2021-11-18T08:38:32.000Z" + }, + "events": [ + { + "uuid": "215d64ac-319b-4b21-b8ab-408afca61cd7", + "start": { + "$date": "2021-11-18T02:32:42.000Z" + }, + "end": { + "$date": "2021-11-18T08:38:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fde2e5ab-95ee-43e7-9cd4-978dc2f87b66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-18T02:35:18.000Z" + }, + "end": { + "$date": "2021-11-18T04:22:22.000Z" + }, + "events": [ + { + "uuid": "b582ced7-b419-48eb-b82f-07338190c00d", + "start": { + "$date": "2021-11-18T02:35:18.000Z" + }, + "end": { + "$date": "2021-11-18T04:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7cce826f-2ab0-4763-9ea0-59817598d0ee", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-18T02:57:38.000Z" + }, + "end": { + "$date": "2021-11-18T04:31:07.000Z" + }, + "events": [ + { + "uuid": "c087c38a-93a3-41ea-a7b4-283f724def06", + "start": { + "$date": "2021-11-18T02:57:38.000Z" + }, + "end": { + "$date": "2021-11-18T04:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2f6b35c1-37c8-4b9e-8071-31bcb0a1986d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-18T03:05:14.000Z" + }, + "end": { + "$date": "2021-11-18T04:10:43.000Z" + }, + "events": [ + { + "uuid": "20148cf4-1c40-49ed-938e-ee64362227b5", + "start": { + "$date": "2021-11-18T03:05:14.000Z" + }, + "end": { + "$date": "2021-11-18T04:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "85e22724-30bd-429d-9be2-0ff167b7c31a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-18T03:46:27.000Z" + }, + "end": { + "$date": "2021-11-18T06:15:08.000Z" + }, + "events": [ + { + "uuid": "fcd42cd9-8c1f-4dc7-98fb-fabc576c5fc2", + "start": { + "$date": "2021-11-18T03:46:27.000Z" + }, + "end": { + "$date": "2021-11-18T06:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "46272fc1-eadd-4b94-a9d1-19e96cbf5e7b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-18T03:47:59.000Z" + }, + "end": { + "$date": "2021-11-18T04:32:43.000Z" + }, + "events": [ + { + "uuid": "0e51b3ec-6d94-498b-a2fa-151801516fba", + "start": { + "$date": "2021-11-18T03:47:59.000Z" + }, + "end": { + "$date": "2021-11-18T04:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "3be5d79c-9ce8-480e-a0ef-4f9267e81f91", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-18T08:38:48.000Z" + }, + "end": { + "$date": "2021-11-18T09:01:13.000Z" + }, + "events": [ + { + "uuid": "dd10efcc-c273-479b-8683-101a47db769b", + "start": { + "$date": "2021-11-18T08:38:48.000Z" + }, + "end": { + "$date": "2021-11-18T09:01:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "de3dae18-ee22-4ab0-bf3f-1e02c2d32349", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-18T03:51:45.000Z" + }, + "end": { + "$date": "2021-11-18T04:21:52.000Z" + }, + "events": [ + { + "uuid": "af76fd19-7b77-478a-b217-1b59d8a65438", + "start": { + "$date": "2021-11-18T03:51:45.000Z" + }, + "end": { + "$date": "2021-11-18T04:21:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "97d7b9e0-81e6-4328-8c90-df63f6eeec5e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-18T04:25:22.000Z" + }, + "end": { + "$date": "2021-11-18T05:50:00.000Z" + }, + "events": [ + { + "uuid": "93639b46-6b80-4271-8093-e80d63a4d6e6", + "start": { + "$date": "2021-11-18T04:25:22.000Z" + }, + "end": { + "$date": "2021-11-18T05:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ee50138f-5d9f-43bb-bb40-516ac5e3effe", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-18T04:42:34.000Z" + }, + "end": { + "$date": "2021-11-18T04:54:16.000Z" + }, + "events": [ + { + "uuid": "437ec6ab-d413-4706-94af-e3293cb47104", + "start": { + "$date": "2021-11-18T04:42:34.000Z" + }, + "end": { + "$date": "2021-11-18T04:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8f4bf11-6796-44d2-849e-27e3d06e37bd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-18T05:02:07.000Z" + }, + "end": { + "$date": "2021-11-18T05:22:01.000Z" + }, + "events": [ + { + "uuid": "5e8314d5-8004-4220-93d5-8db543625da0", + "start": { + "$date": "2021-11-18T05:02:07.000Z" + }, + "end": { + "$date": "2021-11-18T05:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4dd0811d-bdb7-4d3a-a43a-0f923dfbb2bc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-18T05:21:32.000Z" + }, + "end": { + "$date": "2021-11-18T05:50:43.000Z" + }, + "events": [ + { + "uuid": "aa067c8c-172f-4f99-8b8f-bad4e727cb5b", + "start": { + "$date": "2021-11-18T05:21:32.000Z" + }, + "end": { + "$date": "2021-11-18T05:50:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23328a5e-a0a1-4fc9-af0c-750abeb3359d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-18T05:25:28.000Z" + }, + "end": { + "$date": "2021-11-18T05:41:58.000Z" + }, + "events": [ + { + "uuid": "0efa7348-7e78-4ad2-b785-1630d542bc66", + "start": { + "$date": "2021-11-18T05:25:28.000Z" + }, + "end": { + "$date": "2021-11-18T05:41:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7343a330-a6cb-44d5-bef4-b308cf16928e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-18T05:44:08.000Z" + }, + "end": { + "$date": "2021-11-18T06:00:40.000Z" + }, + "events": [ + { + "uuid": "86e97933-0094-4182-a7b0-4b0284bdad50", + "start": { + "$date": "2021-11-18T05:44:08.000Z" + }, + "end": { + "$date": "2021-11-18T06:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8c39dc8-0ffd-4edd-86e5-219edd3d006a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-18T06:03:34.000Z" + }, + "end": { + "$date": "2021-11-18T06:22:30.000Z" + }, + "events": [ + { + "uuid": "38e5193e-1c10-4ad2-9831-ee2cf11f788b", + "start": { + "$date": "2021-11-18T06:03:34.000Z" + }, + "end": { + "$date": "2021-11-18T06:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "7e2d9b5b-507d-48bf-b0f1-fbe5c7def4c6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-18T06:25:28.000Z" + }, + "end": { + "$date": "2021-11-18T08:38:54.000Z" + }, + "events": [ + { + "uuid": "5ba9cd59-bef5-4ea4-9c8b-0f044d0485d5", + "start": { + "$date": "2021-11-18T06:25:28.000Z" + }, + "end": { + "$date": "2021-11-18T08:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "d03fcc2d-2c82-417a-931a-a0f01e5d65c3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-18T08:39:26.000Z" + }, + "end": { + "$date": "2021-11-18T08:41:51.000Z" + }, + "events": [ + { + "uuid": "cbee4138-060c-4bab-af8f-a0e325f7fddd", + "start": { + "$date": "2021-11-18T08:39:26.000Z" + }, + "end": { + "$date": "2021-11-18T08:41:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0693216f-7898-4ff7-ba1c-20b3b462dd36", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-18T14:40:38.000Z" + }, + "end": { + "$date": "2021-11-18T14:41:43.000Z" + }, + "events": [ + { + "uuid": "2699bd5a-3fc9-4714-bd52-9ffcc9f4f6e5", + "start": { + "$date": "2021-11-18T14:40:38.000Z" + }, + "end": { + "$date": "2021-11-18T14:41:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a0d0efa0-5199-4fd0-9925-3d6949da5219", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-18T18:03:13.000Z" + }, + "end": { + "$date": "2021-11-18T19:20:02.000Z" + }, + "events": [ + { + "uuid": "ea2befab-a5e0-489b-81b7-f721020893ef", + "start": { + "$date": "2021-11-18T18:03:13.000Z" + }, + "end": { + "$date": "2021-11-18T19:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b6386dc0-9ce4-43b0-8a27-c5b28863bd90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-18T18:14:49.000Z" + }, + "end": { + "$date": "2021-11-18T18:33:20.000Z" + }, + "events": [ + { + "uuid": "8697a53b-f0b4-414c-9e71-31b25a803561", + "start": { + "$date": "2021-11-18T18:14:49.000Z" + }, + "end": { + "$date": "2021-11-18T18:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d267b38-5fc0-46cb-a6ac-8d1821f913a7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-18T21:26:32.000Z" + }, + "end": { + "$date": "2021-11-18T21:54:17.000Z" + }, + "events": [ + { + "uuid": "fecd6700-28d4-489a-91e8-cfa081dfc3e3", + "start": { + "$date": "2021-11-18T21:26:32.000Z" + }, + "end": { + "$date": "2021-11-18T21:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "13268c4d-f679-46ca-9205-51d948a216b0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-18T22:03:25.000Z" + }, + "end": { + "$date": "2021-11-18T22:22:17.000Z" + }, + "events": [ + { + "uuid": "1072c283-d5d5-4a87-96b3-3fc0242c7750", + "start": { + "$date": "2021-11-18T22:03:25.000Z" + }, + "end": { + "$date": "2021-11-18T22:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "a50f8865-b20e-4e17-935d-74dd3afd4912", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-18T22:16:56.000Z" + }, + "end": { + "$date": "2021-11-18T23:46:18.000Z" + }, + "events": [ + { + "uuid": "1e10e509-ff3c-4c70-997a-ab67f0ccd1cd", + "start": { + "$date": "2021-11-18T22:16:56.000Z" + }, + "end": { + "$date": "2021-11-18T23:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7d9e6dcb-73c0-46fc-b7fd-9b3849c6241c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-18T22:37:09.000Z" + }, + "end": { + "$date": "2021-11-18T22:57:26.000Z" + }, + "events": [ + { + "uuid": "62813138-b960-4cc7-a580-85506f5fb719", + "start": { + "$date": "2021-11-18T22:37:09.000Z" + }, + "end": { + "$date": "2021-11-18T22:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "315a44e0-8e35-4c55-be49-a87330fe2d31", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-18T22:47:13.000Z" + }, + "end": { + "$date": "2021-11-19T00:13:14.000Z" + }, + "events": [ + { + "uuid": "9ed4f429-0331-4270-a5af-fa23e0083752", + "start": { + "$date": "2021-11-18T22:47:13.000Z" + }, + "end": { + "$date": "2021-11-19T00:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "687fd1e5-1c40-4edb-bf64-fe0ad8694fa3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-18T22:57:51.000Z" + }, + "end": { + "$date": "2021-11-19T00:13:09.000Z" + }, + "events": [ + { + "uuid": "818da090-9fa2-483b-99b3-30f59cebb9b7", + "start": { + "$date": "2021-11-18T22:57:51.000Z" + }, + "end": { + "$date": "2021-11-19T00:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a08e6dc6-b2c3-42d4-ac1a-4b87b05fdbb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-19T00:04:06.000Z" + }, + "end": { + "$date": "2021-11-19T00:47:20.000Z" + }, + "events": [ + { + "uuid": "41114d41-fb58-40eb-89a5-bc87ee07ef13", + "start": { + "$date": "2021-11-19T00:04:06.000Z" + }, + "end": { + "$date": "2021-11-19T00:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a3217afe-2bff-4721-bfbe-f618b7d07ce9", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-19T00:43:42.000Z" + }, + "end": { + "$date": "2021-11-19T00:56:30.000Z" + }, + "events": [ + { + "uuid": "48e79597-5a89-4944-bf29-511118c6d04b", + "start": { + "$date": "2021-11-19T00:43:42.000Z" + }, + "end": { + "$date": "2021-11-19T00:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "670f6a19-0736-43b9-af96-2042e4092685", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-19T01:31:31.000Z" + }, + "end": { + "$date": "2021-11-19T01:43:03.000Z" + }, + "events": [ + { + "uuid": "87c36ff0-1188-4b31-a32e-0a152312d0ad", + "start": { + "$date": "2021-11-19T01:31:31.000Z" + }, + "end": { + "$date": "2021-11-19T01:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d665c431-56ff-4c40-a403-dec851882b3e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-19T01:32:38.000Z" + }, + "end": { + "$date": "2021-11-19T01:54:50.000Z" + }, + "events": [ + { + "uuid": "3283bd4d-1ada-43a3-8a6f-13f816d5ea74", + "start": { + "$date": "2021-11-19T01:32:38.000Z" + }, + "end": { + "$date": "2021-11-19T01:54:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d5e12565-1c7a-4197-b7b2-059678d1180e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-19T01:34:04.000Z" + }, + "end": { + "$date": "2021-11-19T02:18:37.000Z" + }, + "events": [ + { + "uuid": "28545060-3e37-4833-8210-57f561875030", + "start": { + "$date": "2021-11-19T01:34:04.000Z" + }, + "end": { + "$date": "2021-11-19T02:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "be4e4ed9-fde3-4a32-9daf-c276d1f82449", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-19T04:02:26.000Z" + }, + "end": { + "$date": "2021-11-19T04:56:59.000Z" + }, + "events": [ + { + "uuid": "af53fbed-3bff-41c4-8c99-9bbe492385ac", + "start": { + "$date": "2021-11-19T04:02:26.000Z" + }, + "end": { + "$date": "2021-11-19T04:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "9c8b653f-1b62-4fd3-870d-8f24f177336c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-19T04:05:01.000Z" + }, + "end": { + "$date": "2021-11-19T05:45:38.000Z" + }, + "events": [ + { + "uuid": "344275b8-62c1-48ec-bcd0-70d6a3721562", + "start": { + "$date": "2021-11-19T04:05:01.000Z" + }, + "end": { + "$date": "2021-11-19T05:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9824bbd0-6149-4761-8ae0-f87417b143f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-19T04:50:17.000Z" + }, + "end": { + "$date": "2021-11-19T05:10:49.000Z" + }, + "events": [ + { + "uuid": "096c12e4-f562-4a58-9078-6b7a4d12ab37", + "start": { + "$date": "2021-11-19T04:50:17.000Z" + }, + "end": { + "$date": "2021-11-19T05:10:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bee39a15-11bf-4677-9889-255b4634c30a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-19T04:50:54.000Z" + }, + "end": { + "$date": "2021-11-19T05:10:40.000Z" + }, + "events": [ + { + "uuid": "f7749caa-dd54-43f0-9a1c-041698c4a860", + "start": { + "$date": "2021-11-19T04:50:54.000Z" + }, + "end": { + "$date": "2021-11-19T05:10:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0d6c9b92-9f7c-4e62-99d0-7329155feca0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-19T01:27:33.000Z" + }, + "end": { + "$date": "2021-11-19T05:48:39.000Z" + }, + "events": [ + { + "uuid": "4acb562b-eb71-4764-8069-fb495a0bb632", + "start": { + "$date": "2021-11-19T01:27:33.000Z" + }, + "end": { + "$date": "2021-11-19T05:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a958b3e3-0574-4260-814d-855813aca55f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-19T05:49:04.000Z" + }, + "end": { + "$date": "2021-11-19T07:16:32.000Z" + }, + "events": [ + { + "uuid": "b7524a4e-e97a-4fd6-a853-144c79e31130", + "start": { + "$date": "2021-11-19T05:49:04.000Z" + }, + "end": { + "$date": "2021-11-19T07:16:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "510900e3-c5a4-4d54-bb97-ab509eb91c48", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-19T06:10:32.000Z" + }, + "end": { + "$date": "2021-11-19T06:37:17.000Z" + }, + "events": [ + { + "uuid": "8295372c-4152-4b29-8902-f89feaaa5adf", + "start": { + "$date": "2021-11-19T06:10:32.000Z" + }, + "end": { + "$date": "2021-11-19T06:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "22425cbe-aa25-4c77-9006-723022d990ef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-19T06:18:18.000Z" + }, + "end": { + "$date": "2021-11-19T06:54:42.000Z" + }, + "events": [ + { + "uuid": "9c767d79-514d-4be8-a956-ec79c2b0131c", + "start": { + "$date": "2021-11-19T06:18:18.000Z" + }, + "end": { + "$date": "2021-11-19T06:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7b84d6b-a65c-478b-a910-30f0e8f14114", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-19T06:39:27.000Z" + }, + "end": { + "$date": "2021-11-19T07:01:41.000Z" + }, + "events": [ + { + "uuid": "3b7a6241-0da2-44d5-b4d9-811a20f55760", + "start": { + "$date": "2021-11-19T06:39:27.000Z" + }, + "end": { + "$date": "2021-11-19T07:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "209e7e90-cbd3-4a72-b165-b719e7ec54b1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-19T07:03:33.000Z" + }, + "end": { + "$date": "2021-11-19T07:26:54.000Z" + }, + "events": [ + { + "uuid": "43cbaafd-a744-4f67-8349-3dfefb44c158", + "start": { + "$date": "2021-11-19T07:03:33.000Z" + }, + "end": { + "$date": "2021-11-19T07:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cfa0e28a-7eb2-4a2e-988c-ea7b808b4fae", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-19T07:09:06.000Z" + }, + "end": { + "$date": "2021-11-19T07:42:43.000Z" + }, + "events": [ + { + "uuid": "f10bbf2f-9962-43bc-b760-5e235e560cc4", + "start": { + "$date": "2021-11-19T07:09:06.000Z" + }, + "end": { + "$date": "2021-11-19T07:42:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c92b770b-dc1a-46a2-9cf2-28a1c725aa8c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-19T07:29:14.000Z" + }, + "end": { + "$date": "2021-11-19T08:00:30.000Z" + }, + "events": [ + { + "uuid": "3a856e7a-8bc9-4e24-94eb-b98487c2c1b4", + "start": { + "$date": "2021-11-19T07:29:14.000Z" + }, + "end": { + "$date": "2021-11-19T08:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "61756e12-d9d7-4620-be40-91bf1bbb31a2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-19T15:25:31.000Z" + }, + "end": { + "$date": "2021-11-19T20:47:58.000Z" + }, + "events": [ + { + "uuid": "a435cd80-edd8-4b5d-b7e1-b4d4b3343c89", + "start": { + "$date": "2021-11-19T15:25:31.000Z" + }, + "end": { + "$date": "2021-11-19T20:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "940c962a-cc59-489b-aceb-e7f9c2d24fcd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-19T16:28:32.000Z" + }, + "end": { + "$date": "2021-11-19T16:50:16.000Z" + }, + "events": [ + { + "uuid": "5cc8b598-4f55-4a00-b17d-ea15474e0e73", + "start": { + "$date": "2021-11-19T16:28:32.000Z" + }, + "end": { + "$date": "2021-11-19T16:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "4976d193-4eb9-454e-82a3-8a8310014082", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-19T20:00:35.000Z" + }, + "end": { + "$date": "2021-11-19T20:09:01.000Z" + }, + "events": [ + { + "uuid": "4d23c6b8-dfe9-4e23-b665-0270d44f16e7", + "start": { + "$date": "2021-11-19T20:00:35.000Z" + }, + "end": { + "$date": "2021-11-19T20:01:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5d96348-deb6-42bd-9da5-fadd4cc50016", + "start": { + "$date": "2021-11-19T20:01:35.000Z" + }, + "end": { + "$date": "2021-11-19T20:09:01.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7f6fd807-25ce-462f-a849-cea507f5b0fc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-19T20:33:06.000Z" + }, + "end": { + "$date": "2021-11-19T20:39:05.000Z" + }, + "events": [ + { + "uuid": "16800020-22c4-413f-947b-e38c80bfe4bf", + "start": { + "$date": "2021-11-19T20:33:06.000Z" + }, + "end": { + "$date": "2021-11-19T20:39:05.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "bbe65dec-3c6b-4ffb-af53-168a6e46a36b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-19T20:42:12.000Z" + }, + "end": { + "$date": "2021-11-19T20:52:47.000Z" + }, + "events": [ + { + "uuid": "0843392a-1ce7-4c51-9258-6a48c82fe338", + "start": { + "$date": "2021-11-19T20:42:12.000Z" + }, + "end": { + "$date": "2021-11-19T20:52:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "7bedf53f-b233-4b52-8bad-6f5f5249de6b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-19T20:59:19.000Z" + }, + "end": { + "$date": "2021-11-19T21:09:30.000Z" + }, + "events": [ + { + "uuid": "1315aa79-1207-4369-8876-6ac96f237a63", + "start": { + "$date": "2021-11-19T20:59:19.000Z" + }, + "end": { + "$date": "2021-11-19T21:09:30.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "94e15764-3f0b-4746-9df0-e58d4f84f3f6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-19T22:52:38.000Z" + }, + "end": { + "$date": "2021-11-19T22:52:42.000Z" + }, + "events": [ + { + "uuid": "63943d3a-19d7-4edb-897f-4ace810d8d30", + "start": { + "$date": "2021-11-19T22:52:38.000Z" + }, + "end": { + "$date": "2021-11-19T22:52:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "010515b6-4b8b-4cd2-8275-3a13d55aed11", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-19T23:36:55.000Z" + }, + "end": { + "$date": "2021-11-20T02:07:58.000Z" + }, + "events": [ + { + "uuid": "c43d2832-a631-4111-b096-47708007409b", + "start": { + "$date": "2021-11-19T23:36:55.000Z" + }, + "end": { + "$date": "2021-11-20T02:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "f9bdbc94-be0c-4d0a-9a4b-2e84968cd5d6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-19T23:37:52.000Z" + }, + "end": { + "$date": "2021-11-19T23:39:31.000Z" + }, + "events": [ + { + "uuid": "c208c2c1-ea08-4383-8a7a-4e9ef30864d9", + "start": { + "$date": "2021-11-19T23:37:52.000Z" + }, + "end": { + "$date": "2021-11-19T23:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3b396291-5785-4b2a-9d6c-1fe4de109bac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T00:04:24.000Z" + }, + "end": { + "$date": "2021-11-20T01:24:57.000Z" + }, + "events": [ + { + "uuid": "45ea69ea-9644-48c3-ab97-e9f383a821fc", + "start": { + "$date": "2021-11-20T00:04:24.000Z" + }, + "end": { + "$date": "2021-11-20T01:24:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "81bad80f-54d8-42b3-90a5-c8cd46532b5f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-20T00:07:51.000Z" + }, + "end": { + "$date": "2021-11-20T00:50:02.000Z" + }, + "events": [ + { + "uuid": "99a58aa6-5069-4cd7-b143-9d58638f49e6", + "start": { + "$date": "2021-11-20T00:07:51.000Z" + }, + "end": { + "$date": "2021-11-20T00:50:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "4da68b73-7620-4bf2-94e2-8ad1695b693b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-20T01:24:50.000Z" + }, + "end": { + "$date": "2021-11-20T07:54:57.000Z" + }, + "events": [ + { + "uuid": "97ed4826-5f3a-44db-a3ea-c0ad05f946a1", + "start": { + "$date": "2021-11-20T01:24:50.000Z" + }, + "end": { + "$date": "2021-11-20T07:54:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b848d0c1-f57b-4dc3-8312-710a921eec9c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-20T02:08:14.000Z" + }, + "end": { + "$date": "2021-11-20T04:23:20.000Z" + }, + "events": [ + { + "uuid": "d3f05efc-3071-42a3-871f-ead6746b7e77", + "start": { + "$date": "2021-11-20T02:08:14.000Z" + }, + "end": { + "$date": "2021-11-20T04:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eaabf2c7-e4ae-4117-a288-08b55e220a45", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-20T02:15:43.000Z" + }, + "end": { + "$date": "2021-11-20T02:42:29.000Z" + }, + "events": [ + { + "uuid": "a97b47fe-95b6-438f-95bb-c6e75ee142dc", + "start": { + "$date": "2021-11-20T02:15:43.000Z" + }, + "end": { + "$date": "2021-11-20T02:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "699f4878-13ae-4355-98b7-beacb2bcf4fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T02:55:32.000Z" + }, + "end": { + "$date": "2021-11-20T03:44:08.000Z" + }, + "events": [ + { + "uuid": "41be3aea-e986-4071-8402-7ffa64b39b7f", + "start": { + "$date": "2021-11-20T02:55:32.000Z" + }, + "end": { + "$date": "2021-11-20T03:44:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f194e879-5e36-4295-904b-39f8b00a9746", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-20T03:17:47.000Z" + }, + "end": { + "$date": "2021-11-20T03:46:36.000Z" + }, + "events": [ + { + "uuid": "557ed36b-def0-4b1c-a52a-061e54e0b491", + "start": { + "$date": "2021-11-20T03:17:47.000Z" + }, + "end": { + "$date": "2021-11-20T03:46:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a1bbe945-e255-4213-8b38-d9bfe7010113", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T03:45:25.000Z" + }, + "end": { + "$date": "2021-11-20T03:48:26.000Z" + }, + "events": [ + { + "uuid": "19207984-976f-4e41-bd05-03b2fad4c0ed", + "start": { + "$date": "2021-11-20T03:45:25.000Z" + }, + "end": { + "$date": "2021-11-20T03:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a77afe69-b8a3-49f0-9bdb-abebe26f1523", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T04:13:24.000Z" + }, + "end": { + "$date": "2021-11-20T04:15:36.000Z" + }, + "events": [ + { + "uuid": "374b5da9-d589-48e3-99f4-438f39ac967e", + "start": { + "$date": "2021-11-20T04:13:24.000Z" + }, + "end": { + "$date": "2021-11-20T04:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2ba2f4d7-c197-4e16-9fee-64f189c3741b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T04:21:21.000Z" + }, + "end": { + "$date": "2021-11-20T06:52:21.000Z" + }, + "events": [ + { + "uuid": "9eac927e-0b63-4743-9bf5-202eab95d995", + "start": { + "$date": "2021-11-20T04:21:21.000Z" + }, + "end": { + "$date": "2021-11-20T06:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "79c408c2-ab4e-4ebb-8eec-ad708ac72959", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-20T04:26:31.000Z" + }, + "end": { + "$date": "2021-11-20T04:49:21.000Z" + }, + "events": [ + { + "uuid": "7de9fef7-2521-4607-8c29-ea8329e48c04", + "start": { + "$date": "2021-11-20T04:26:31.000Z" + }, + "end": { + "$date": "2021-11-20T04:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7579bce-d0f2-46f2-8c53-77226593031a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-20T04:46:49.000Z" + }, + "end": { + "$date": "2021-11-20T05:09:02.000Z" + }, + "events": [ + { + "uuid": "4bc4bb65-539d-401f-bfae-95d90fea3bc6", + "start": { + "$date": "2021-11-20T04:46:49.000Z" + }, + "end": { + "$date": "2021-11-20T05:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b8cd7204-bce2-4bfe-8d64-992b765be1c4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-20T04:57:57.000Z" + }, + "end": { + "$date": "2021-11-20T05:45:43.000Z" + }, + "events": [ + { + "uuid": "81ba7f22-a6bd-4dda-84d7-c2690051424a", + "start": { + "$date": "2021-11-20T04:57:57.000Z" + }, + "end": { + "$date": "2021-11-20T05:45:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4ff582e8-dc31-466e-a6cd-576d72aa05ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-20T05:11:41.000Z" + }, + "end": { + "$date": "2021-11-20T07:15:18.000Z" + }, + "events": [ + { + "uuid": "8a32c24c-63cb-4e9d-a7fc-2edf3c18a9cf", + "start": { + "$date": "2021-11-20T05:11:41.000Z" + }, + "end": { + "$date": "2021-11-20T07:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "8773cb3c-9f82-48d3-9f71-92114a1e232f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-20T05:24:52.000Z" + }, + "end": { + "$date": "2021-11-20T05:30:17.000Z" + }, + "events": [ + { + "uuid": "c844f971-fb99-428e-aa6b-c7a681be6333", + "start": { + "$date": "2021-11-20T05:24:52.000Z" + }, + "end": { + "$date": "2021-11-20T05:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "540a50dd-059e-4c4e-9d0e-5ebdf371bd0e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-20T05:30:47.000Z" + }, + "end": { + "$date": "2021-11-20T05:44:58.000Z" + }, + "events": [ + { + "uuid": "d4b9ac42-492f-4618-b527-d43c87c2ae8c", + "start": { + "$date": "2021-11-20T05:30:47.000Z" + }, + "end": { + "$date": "2021-11-20T05:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "b2f7265a-0c30-4d5a-8c32-880b6d30c395", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-20T05:45:23.000Z" + }, + "end": { + "$date": "2021-11-20T05:53:53.000Z" + }, + "events": [ + { + "uuid": "a4068d9c-9c9a-4d6c-880b-a7c5f6f71546", + "start": { + "$date": "2021-11-20T05:45:23.000Z" + }, + "end": { + "$date": "2021-11-20T05:53:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "5ccb4383-9732-4c23-b43a-10893795ca3b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-20T06:01:19.000Z" + }, + "end": { + "$date": "2021-11-20T06:26:35.000Z" + }, + "events": [ + { + "uuid": "3f268f7d-9b62-463d-9afe-9aaff43b72bc", + "start": { + "$date": "2021-11-20T06:01:19.000Z" + }, + "end": { + "$date": "2021-11-20T06:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "2fdbb629-949e-4fc7-8545-18a7ad649953", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-20T06:32:45.000Z" + }, + "end": { + "$date": "2021-11-20T07:07:41.000Z" + }, + "events": [ + { + "uuid": "e2e9b3d1-2a2c-4838-86da-ea825c22e0aa", + "start": { + "$date": "2021-11-20T06:32:45.000Z" + }, + "end": { + "$date": "2021-11-20T07:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8b731693-a0f9-4b0e-9212-604e68498087", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-20T06:51:28.000Z" + }, + "end": { + "$date": "2021-11-20T07:49:29.000Z" + }, + "events": [ + { + "uuid": "23fa86c8-5d35-42e2-b4c9-f43a7a1172a7", + "start": { + "$date": "2021-11-20T06:51:28.000Z" + }, + "end": { + "$date": "2021-11-20T07:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bcd32637-7393-4aeb-9f4c-45016e3bd400", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-20T17:43:57.000Z" + }, + "end": { + "$date": "2021-11-20T21:55:06.000Z" + }, + "events": [ + { + "uuid": "14380874-dfe5-4122-a24c-0552b4e71709", + "start": { + "$date": "2021-11-20T17:43:57.000Z" + }, + "end": { + "$date": "2021-11-20T21:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7e9d1408-6b2c-43c2-b1d4-4dd3681a9cb6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-20T18:15:32.000Z" + }, + "end": { + "$date": "2021-11-20T18:58:47.000Z" + }, + "events": [ + { + "uuid": "ce2fc174-b12e-46d1-bbcd-ddd52d3c5bf2", + "start": { + "$date": "2021-11-20T18:15:32.000Z" + }, + "end": { + "$date": "2021-11-20T18:58:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "026fce87-94a1-4338-937d-21e3d0452828", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T19:58:16.000Z" + }, + "end": { + "$date": "2021-11-20T20:10:52.000Z" + }, + "events": [ + { + "uuid": "06a03869-db43-4cc2-b513-4af4af2c502e", + "start": { + "$date": "2021-11-20T19:58:16.000Z" + }, + "end": { + "$date": "2021-11-20T20:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "59352102-d96c-4280-bc43-5902d84e269f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-20T20:36:07.000Z" + }, + "end": { + "$date": "2021-11-21T01:15:30.000Z" + }, + "events": [ + { + "uuid": "77732757-82fe-4246-b296-6164e69ec91b", + "start": { + "$date": "2021-11-20T20:36:07.000Z" + }, + "end": { + "$date": "2021-11-21T01:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "848cf881-60d2-4d17-b9bc-556d2d921bdc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-20T20:42:39.000Z" + }, + "end": { + "$date": "2021-11-20T21:00:01.000Z" + }, + "events": [ + { + "uuid": "5d0ca76a-fb77-4b99-9569-aba515884bb7", + "start": { + "$date": "2021-11-20T20:42:39.000Z" + }, + "end": { + "$date": "2021-11-20T21:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "077b42fb-60c6-47b3-baed-f7b5aae88346", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-20T21:55:08.000Z" + }, + "end": { + "$date": "2021-11-20T22:35:06.000Z" + }, + "events": [ + { + "uuid": "0946693f-5eff-4975-9360-751d6dda9711", + "start": { + "$date": "2021-11-20T21:55:08.000Z" + }, + "end": { + "$date": "2021-11-20T22:35:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d73fea5a-dedd-41f2-a3a8-75da7da14e12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-20T21:55:04.000Z" + }, + "end": { + "$date": "2021-11-20T22:35:05.000Z" + }, + "events": [ + { + "uuid": "30749ee1-fef6-49ce-97b1-52bb2007f715", + "start": { + "$date": "2021-11-20T21:55:04.000Z" + }, + "end": { + "$date": "2021-11-20T22:35:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "57f05e1d-6059-47b6-93af-2d341e3a63e3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-20T21:55:21.000Z" + }, + "end": { + "$date": "2021-11-21T02:37:58.000Z" + }, + "events": [ + { + "uuid": "b70282c2-def5-44d9-ab59-6ba4cf88829d", + "start": { + "$date": "2021-11-20T21:55:21.000Z" + }, + "end": { + "$date": "2021-11-21T02:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bd2a7487-6d5f-46ec-8c21-1fdcc0d66313", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-20T22:45:05.000Z" + }, + "end": { + "$date": "2021-11-20T23:23:24.000Z" + }, + "events": [ + { + "uuid": "62140f30-de3b-4ef2-aae3-9349b8abab68", + "start": { + "$date": "2021-11-20T22:45:05.000Z" + }, + "end": { + "$date": "2021-11-20T23:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "723a0eba-dff2-4be0-878f-939309fbb812", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-20T22:55:14.000Z" + }, + "end": { + "$date": "2021-11-20T23:55:56.000Z" + }, + "events": [ + { + "uuid": "ab375386-2ce5-4e4e-a584-4db7f8769399", + "start": { + "$date": "2021-11-20T22:55:14.000Z" + }, + "end": { + "$date": "2021-11-20T23:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cb539bb4-f99c-4eea-86b7-7855d702930d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-20T23:59:17.000Z" + }, + "end": { + "$date": "2021-11-21T04:32:49.000Z" + }, + "events": [ + { + "uuid": "2ef62ef3-5fd1-4081-a013-af676e998d93", + "start": { + "$date": "2021-11-20T23:59:17.000Z" + }, + "end": { + "$date": "2021-11-21T04:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7c8874ff-eb5b-4727-9d0f-fbb060a07059", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-21T00:24:37.000Z" + }, + "end": { + "$date": "2021-11-21T01:13:54.000Z" + }, + "events": [ + { + "uuid": "84f55955-9af6-46a7-9662-58b9153ee3bf", + "start": { + "$date": "2021-11-21T00:24:37.000Z" + }, + "end": { + "$date": "2021-11-21T01:13:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f3c3eb32-e6d9-4e4d-b76a-2616d617478e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T01:01:38.000Z" + }, + "end": { + "$date": "2021-11-21T03:24:23.000Z" + }, + "events": [ + { + "uuid": "40cb62b2-6a85-473d-887b-25afef0d5f82", + "start": { + "$date": "2021-11-21T01:01:38.000Z" + }, + "end": { + "$date": "2021-11-21T03:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f4cf0977-379b-43ac-88d4-b76691e494a0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-21T01:14:11.000Z" + }, + "end": { + "$date": "2021-11-21T01:15:24.000Z" + }, + "events": [ + { + "uuid": "33aa0508-78f0-43a2-b1cf-63299b657c8c", + "start": { + "$date": "2021-11-21T01:14:11.000Z" + }, + "end": { + "$date": "2021-11-21T01:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f5ba8a36-029a-4953-815f-96bc28f86063", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-21T01:15:51.000Z" + }, + "end": { + "$date": "2021-11-21T01:18:04.000Z" + }, + "events": [ + { + "uuid": "7570d209-1dd2-42ca-a47f-e268eac2800d", + "start": { + "$date": "2021-11-21T01:15:51.000Z" + }, + "end": { + "$date": "2021-11-21T01:18:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6dae74e0-066f-4a3d-8b24-b65475f28c9a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-21T01:19:16.000Z" + }, + "end": { + "$date": "2021-11-21T03:34:47.000Z" + }, + "events": [ + { + "uuid": "c7af9bfc-5ef4-4e2f-98da-170b216d224f", + "start": { + "$date": "2021-11-21T01:19:16.000Z" + }, + "end": { + "$date": "2021-11-21T03:34:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "22763582-150a-453b-9970-ddd77ca0cd74", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-21T01:32:34.000Z" + }, + "end": { + "$date": "2021-11-21T01:51:56.000Z" + }, + "events": [ + { + "uuid": "cc0a254b-60af-49c4-bfba-a9ba93518fe1", + "start": { + "$date": "2021-11-21T01:32:34.000Z" + }, + "end": { + "$date": "2021-11-21T01:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "90e4ced1-9159-4e9e-9ad8-92e9856901fe", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-21T01:36:40.000Z" + }, + "end": { + "$date": "2021-11-21T02:01:12.000Z" + }, + "events": [ + { + "uuid": "80654913-fe71-4777-963e-2300a0051e21", + "start": { + "$date": "2021-11-21T01:36:40.000Z" + }, + "end": { + "$date": "2021-11-21T02:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "a47897a2-2365-4d4a-92e1-4c8477bd203e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-21T01:57:31.000Z" + }, + "end": { + "$date": "2021-11-21T03:06:29.000Z" + }, + "events": [ + { + "uuid": "c4617486-9768-4631-a388-d9bb2646bdf5", + "start": { + "$date": "2021-11-21T01:57:31.000Z" + }, + "end": { + "$date": "2021-11-21T03:06:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "01fe4f4c-1ed6-4d69-a743-16c23dd35adb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-21T02:40:28.000Z" + }, + "end": { + "$date": "2021-11-21T07:38:28.000Z" + }, + "events": [ + { + "uuid": "44f38fb0-0221-4601-87e3-776a0483bc83", + "start": { + "$date": "2021-11-21T02:40:28.000Z" + }, + "end": { + "$date": "2021-11-21T04:53:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7cc6aaa-8fb5-45d2-8c49-829961a08d91", + "start": { + "$date": "2021-11-21T04:53:28.000Z" + }, + "end": { + "$date": "2021-11-21T04:58:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d67eafec-0a30-405b-a1a0-72b174c24dd3", + "start": { + "$date": "2021-11-21T04:58:28.000Z" + }, + "end": { + "$date": "2021-11-21T05:08:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67ba291d-503d-48a9-9427-9f28fed118ce", + "start": { + "$date": "2021-11-21T05:08:28.000Z" + }, + "end": { + "$date": "2021-11-21T05:42:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1db12eb6-b639-4ebd-b0f9-2ec810bd316c", + "start": { + "$date": "2021-11-21T05:42:28.000Z" + }, + "end": { + "$date": "2021-11-21T06:02:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eea164f5-6abd-4a1f-9fb9-4b1b37f7b22d", + "start": { + "$date": "2021-11-21T06:02:28.000Z" + }, + "end": { + "$date": "2021-11-21T06:07:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "adbfcb9f-456f-47f3-bbdf-df78395482e4", + "start": { + "$date": "2021-11-21T06:07:28.000Z" + }, + "end": { + "$date": "2021-11-21T06:39:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d866d5c2-8f76-423d-87c7-9e0c2ae955dd", + "start": { + "$date": "2021-11-21T06:39:28.000Z" + }, + "end": { + "$date": "2021-11-21T06:40:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc3b5ad6-322d-48d5-b6ad-6cea111725f0", + "start": { + "$date": "2021-11-21T06:40:28.000Z" + }, + "end": { + "$date": "2021-11-21T07:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "da5be23b-777f-4a5e-95ef-adc2cea2e1d9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-21T03:28:41.000Z" + }, + "end": { + "$date": "2021-11-21T03:41:45.000Z" + }, + "events": [ + { + "uuid": "2462f3ba-c511-480e-91a8-082b6119a6a4", + "start": { + "$date": "2021-11-21T03:28:41.000Z" + }, + "end": { + "$date": "2021-11-21T03:34:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c59fff8-39a3-4ff1-b6af-88b82bc12a28", + "start": { + "$date": "2021-11-21T03:34:41.000Z" + }, + "end": { + "$date": "2021-11-21T03:38:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d9775846-cbdc-4435-9bea-51e811be8210", + "start": { + "$date": "2021-11-21T03:38:41.000Z" + }, + "end": { + "$date": "2021-11-21T03:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "5823231d-c993-4ce0-96fc-e27d09aeb7fd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T03:43:56.000Z" + }, + "end": { + "$date": "2021-11-21T04:51:53.000Z" + }, + "events": [ + { + "uuid": "36a0bb32-81be-4645-ab29-0cb231a09e7e", + "start": { + "$date": "2021-11-21T03:43:56.000Z" + }, + "end": { + "$date": "2021-11-21T04:51:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e1480f42-0d18-489d-93b0-0ef5f199ad6e", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-21T03:50:38.000Z" + }, + "end": { + "$date": "2021-11-21T07:17:29.000Z" + }, + "events": [ + { + "uuid": "12b38aa6-b3e0-4642-ae02-70bb7da94e8e", + "start": { + "$date": "2021-11-21T03:50:38.000Z" + }, + "end": { + "$date": "2021-11-21T07:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "060ae38d-09f9-486c-a0fb-99b45b94e339", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-21T03:56:07.000Z" + }, + "end": { + "$date": "2021-11-21T05:03:44.000Z" + }, + "events": [ + { + "uuid": "ddce7cd0-b566-4409-921a-098c31c9db9f", + "start": { + "$date": "2021-11-21T03:56:07.000Z" + }, + "end": { + "$date": "2021-11-21T05:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c33755ef-55a7-4a62-85c9-1b794b0c4edd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-21T03:58:35.000Z" + }, + "end": { + "$date": "2021-11-21T07:17:33.000Z" + }, + "events": [ + { + "uuid": "c33cb0ea-97be-4c77-afd7-4b1872362327", + "start": { + "$date": "2021-11-21T03:58:35.000Z" + }, + "end": { + "$date": "2021-11-21T07:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", + "uuid": "e2d0259a-3551-4f4a-b9d5-75d76427379e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-21T04:05:26.000Z" + }, + "end": { + "$date": "2021-11-21T06:38:22.000Z" + }, + "events": [ + { + "uuid": "0d1e31e5-c32c-4dff-b7e4-00370df53077", + "start": { + "$date": "2021-11-21T04:05:26.000Z" + }, + "end": { + "$date": "2021-11-21T06:38:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b0c6dbe-19ee-440b-8fe1-0c65b4e509ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-21T04:21:59.000Z" + }, + "end": { + "$date": "2021-11-21T04:53:18.000Z" + }, + "events": [ + { + "uuid": "b69c762d-a5a2-4bec-8aa2-f4e090166eff", + "start": { + "$date": "2021-11-21T04:21:59.000Z" + }, + "end": { + "$date": "2021-11-21T04:53:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "760a78d0-b628-4a50-96e8-f41c56888ecb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T04:53:24.000Z" + }, + "end": { + "$date": "2021-11-21T05:57:52.000Z" + }, + "events": [ + { + "uuid": "225ba004-1fd1-4ef4-856d-72818736112e", + "start": { + "$date": "2021-11-21T04:53:24.000Z" + }, + "end": { + "$date": "2021-11-21T05:57:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "394104ed-6144-4069-8120-937cac145b0c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-21T05:29:05.000Z" + }, + "end": { + "$date": "2021-11-21T09:09:18.000Z" + }, + "events": [ + { + "uuid": "fa19c6f5-c5c0-4ce5-955a-0114aa487378", + "start": { + "$date": "2021-11-21T05:29:05.000Z" + }, + "end": { + "$date": "2021-11-21T09:09:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c358a31-8d21-43cd-9ed9-4af62ff51e5c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-21T05:31:20.000Z" + }, + "end": { + "$date": "2021-11-21T09:08:49.000Z" + }, + "events": [ + { + "uuid": "29601c7e-cd4b-4970-9e0f-b082c2de22d0", + "start": { + "$date": "2021-11-21T05:31:20.000Z" + }, + "end": { + "$date": "2021-11-21T09:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "b6ada71f-c8bd-4e74-9dc3-e8bba8b0f962", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-21T06:38:30.000Z" + }, + "end": { + "$date": "2021-11-21T08:56:57.000Z" + }, + "events": [ + { + "uuid": "5042605d-7c12-4f32-ba3e-5bd67c2ace7f", + "start": { + "$date": "2021-11-21T06:38:30.000Z" + }, + "end": { + "$date": "2021-11-21T08:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d3980620-448a-4354-a1ea-b261cd10b1a2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-21T07:01:51.000Z" + }, + "end": { + "$date": "2021-11-21T07:49:43.000Z" + }, + "events": [ + { + "uuid": "7394da61-050f-4aa1-abaf-6b13eeb7103d", + "start": { + "$date": "2021-11-21T07:01:51.000Z" + }, + "end": { + "$date": "2021-11-21T07:49:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77d8d520-de3c-4992-bf23-985962c41c80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-21T07:59:01.000Z" + }, + "end": { + "$date": "2021-11-21T08:36:40.000Z" + }, + "events": [ + { + "uuid": "194c880e-b32d-4f38-8c66-a2ed615d2042", + "start": { + "$date": "2021-11-21T07:59:01.000Z" + }, + "end": { + "$date": "2021-11-21T08:36:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b1696eb6-eacd-4853-8ef4-8ca425f28aae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T17:35:09.000Z" + }, + "end": { + "$date": "2021-11-21T17:44:40.000Z" + }, + "events": [ + { + "uuid": "dfff4f11-530d-4597-9cc9-052e8fe529bb", + "start": { + "$date": "2021-11-21T17:35:09.000Z" + }, + "end": { + "$date": "2021-11-21T17:44:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3add7245-da84-4f7c-9fe6-bfe5965cf1a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T17:44:46.000Z" + }, + "end": { + "$date": "2021-11-21T19:19:47.000Z" + }, + "events": [ + { + "uuid": "c7e121bb-df81-43e7-909d-d7675b25a53d", + "start": { + "$date": "2021-11-21T17:44:46.000Z" + }, + "end": { + "$date": "2021-11-21T19:19:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "4d200e58-5408-4d2c-a62c-479f50f23234", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-21T18:05:01.000Z" + }, + "end": { + "$date": "2021-11-21T19:23:50.000Z" + }, + "events": [ + { + "uuid": "26c14c43-3edc-4c2c-a40b-069bbb737894", + "start": { + "$date": "2021-11-21T18:05:01.000Z" + }, + "end": { + "$date": "2021-11-21T19:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "96f212bd-2627-43ee-892f-112051f5b360", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-21T18:32:43.000Z" + }, + "end": { + "$date": "2021-11-22T02:51:44.000Z" + }, + "events": [ + { + "uuid": "45c0c850-c488-4d16-a997-3d339209a00f", + "start": { + "$date": "2021-11-21T18:32:43.000Z" + }, + "end": { + "$date": "2021-11-21T18:53:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3c261efe-2556-4253-b18e-6dd0f2f7c397", + "start": { + "$date": "2021-11-21T18:53:43.000Z" + }, + "end": { + "$date": "2021-11-21T19:02:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba097271-05d0-4201-9af7-178c00e3da7d", + "start": { + "$date": "2021-11-21T19:02:43.000Z" + }, + "end": { + "$date": "2021-11-21T23:38:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4987014-a8d1-4e56-877a-b6f492540129", + "start": { + "$date": "2021-11-21T23:38:43.000Z" + }, + "end": { + "$date": "2021-11-21T23:41:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64ca56ae-99a9-4282-8563-0685cc6390df", + "start": { + "$date": "2021-11-21T23:41:43.000Z" + }, + "end": { + "$date": "2021-11-22T02:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "5219f7ae-b628-4dbb-81ad-621c9e352212", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-21T18:48:21.000Z" + }, + "end": { + "$date": "2021-11-21T19:18:40.000Z" + }, + "events": [ + { + "uuid": "9fb31092-9d77-450c-9a32-984913c475ea", + "start": { + "$date": "2021-11-21T18:48:21.000Z" + }, + "end": { + "$date": "2021-11-21T19:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1a7841a6-b923-4bb1-9865-816f22decbec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-21T19:28:53.000Z" + }, + "end": { + "$date": "2021-11-21T19:42:15.000Z" + }, + "events": [ + { + "uuid": "a4998c0f-9a62-4f89-8293-11d305a58d6b", + "start": { + "$date": "2021-11-21T19:28:53.000Z" + }, + "end": { + "$date": "2021-11-21T19:39:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "daabe1c1-6beb-4d95-8031-46a6ac7f79ca", + "start": { + "$date": "2021-11-21T19:39:53.000Z" + }, + "end": { + "$date": "2021-11-21T19:42:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "cdff69e3-cef5-473a-8c89-70d0284a532e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T19:37:44.000Z" + }, + "end": { + "$date": "2021-11-21T20:09:25.000Z" + }, + "events": [ + { + "uuid": "2701825a-fc49-4baa-9481-2c0b68e6f6ff", + "start": { + "$date": "2021-11-21T19:37:44.000Z" + }, + "end": { + "$date": "2021-11-21T20:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b788f23a-c4cb-4a17-99f3-1e79b61f60cd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-21T20:16:45.000Z" + }, + "end": { + "$date": "2021-11-21T20:41:13.000Z" + }, + "events": [ + { + "uuid": "7a63f250-5793-43d9-afdc-e29b836d5ee8", + "start": { + "$date": "2021-11-21T20:16:45.000Z" + }, + "end": { + "$date": "2021-11-21T20:41:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "495745a0-dcf8-441d-b351-3d356db172af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T20:12:41.000Z" + }, + "end": { + "$date": "2021-11-21T20:37:35.000Z" + }, + "events": [ + { + "uuid": "360dc7a3-3799-4473-bfa2-6622f7377ce5", + "start": { + "$date": "2021-11-21T20:12:41.000Z" + }, + "end": { + "$date": "2021-11-21T20:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ce6e84e7-a8e5-476a-bca1-7a4c73b62af8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-21T20:57:27.000Z" + }, + "end": { + "$date": "2021-11-21T21:05:14.000Z" + }, + "events": [ + { + "uuid": "2b4f69e5-72db-4d03-916b-8a7a6d204977", + "start": { + "$date": "2021-11-21T20:57:27.000Z" + }, + "end": { + "$date": "2021-11-21T21:05:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bdcf7680-5fc8-4ca0-a110-0c36b9083bef", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-21T21:03:10.000Z" + }, + "end": { + "$date": "2021-11-21T21:25:34.000Z" + }, + "events": [ + { + "uuid": "1ddd65e4-050d-4502-894a-9a9e1724e384", + "start": { + "$date": "2021-11-21T21:03:10.000Z" + }, + "end": { + "$date": "2021-11-21T21:25:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a1aa2042-7a9b-4b36-8919-433ff0fb0c2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-21T21:05:18.000Z" + }, + "end": { + "$date": "2021-11-21T21:22:35.000Z" + }, + "events": [ + { + "uuid": "db8b4be2-79f4-4f22-a302-69e34d0ccc7c", + "start": { + "$date": "2021-11-21T21:05:18.000Z" + }, + "end": { + "$date": "2021-11-21T21:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "bd742798-6952-4cb7-b87c-568458f850c3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-21T21:28:47.000Z" + }, + "end": { + "$date": "2021-11-21T22:29:56.000Z" + }, + "events": [ + { + "uuid": "69fb7d6f-f95e-44b7-8067-82d973179b1c", + "start": { + "$date": "2021-11-21T21:28:47.000Z" + }, + "end": { + "$date": "2021-11-21T22:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0877812b-3a2b-444e-8b53-d53b704cf9e5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-21T22:04:25.000Z" + }, + "end": { + "$date": "2021-11-22T00:52:28.000Z" + }, + "events": [ + { + "uuid": "07a25d88-6b73-4335-861a-41c6784174c5", + "start": { + "$date": "2021-11-21T22:04:25.000Z" + }, + "end": { + "$date": "2021-11-22T00:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "bfb77851-6d31-448e-8266-1c44a9a37114", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-21T22:24:37.000Z" + }, + "end": { + "$date": "2021-11-21T22:27:29.000Z" + }, + "events": [ + { + "uuid": "2e4101f7-cba0-4206-a819-8c23e07b4636", + "start": { + "$date": "2021-11-21T22:24:37.000Z" + }, + "end": { + "$date": "2021-11-21T22:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ec8f2b79-e4ab-4d70-a974-776bf6a409a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-21T22:34:34.000Z" + }, + "end": { + "$date": "2021-11-21T22:37:12.000Z" + }, + "events": [ + { + "uuid": "2ceda826-4d45-4745-b995-9dfa2047fec4", + "start": { + "$date": "2021-11-21T22:34:34.000Z" + }, + "end": { + "$date": "2021-11-21T22:37:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb878162-660e-440d-a3a6-66bdb6f98308", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-21T23:26:22.000Z" + }, + "end": { + "$date": "2021-11-21T23:26:19.000Z" + }, + "events": [ + { + "uuid": "15567eac-0dc4-4ed0-b1d3-0de8861e7e62", + "start": { + "$date": "2021-11-21T23:26:22.000Z" + }, + "end": { + "$date": "2021-11-21T23:26:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8b019fb0-9a5e-4013-a5ef-fba16d8aac2f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-21T22:50:14.000Z" + }, + "end": { + "$date": "2021-11-21T23:07:07.000Z" + }, + "events": [ + { + "uuid": "76bb0088-ea08-48a6-a2cc-e9d85efc96c7", + "start": { + "$date": "2021-11-21T22:50:14.000Z" + }, + "end": { + "$date": "2021-11-21T23:07:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7bef9359-9cac-4b97-bb5e-9e5eb5bf1699", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-21T23:07:57.000Z" + }, + "end": { + "$date": "2021-11-21T23:21:29.000Z" + }, + "events": [ + { + "uuid": "4b198c66-688b-4e5c-92e3-339b2f56e263", + "start": { + "$date": "2021-11-21T23:07:57.000Z" + }, + "end": { + "$date": "2021-11-21T23:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7460ff73-5db1-4c55-9b66-4e1c25e88e07", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-21T23:29:00.000Z" + }, + "end": { + "$date": "2021-11-22T00:00:00.000Z" + }, + "events": [ + { + "uuid": "cbfde210-6f2f-4ecb-9dc6-36d8c557164b", + "start": { + "$date": "2021-11-21T23:29:00.000Z" + }, + "end": { + "$date": "2021-11-22T00:00:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d5302375-20db-4d67-a0f2-5768bacee4ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-21T23:50:41.000Z" + }, + "end": { + "$date": "2021-11-22T00:32:28.000Z" + }, + "events": [ + { + "uuid": "e4efcd6e-5129-4edf-bb55-1ca15b1470f4", + "start": { + "$date": "2021-11-21T23:50:41.000Z" + }, + "end": { + "$date": "2021-11-22T00:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a82a8a9-38e1-4aec-bc87-8d714317935b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T00:31:22.000Z" + }, + "end": { + "$date": "2021-11-22T00:57:24.000Z" + }, + "events": [ + { + "uuid": "fe9bfb0f-0f67-48d1-9f96-de783ef52d90", + "start": { + "$date": "2021-11-22T00:31:22.000Z" + }, + "end": { + "$date": "2021-11-22T00:57:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "350381fe-b919-41cd-b9b8-44417fed615b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T01:00:39.000Z" + }, + "end": { + "$date": "2021-11-22T01:19:15.000Z" + }, + "events": [ + { + "uuid": "f77fa8f7-d2a4-4135-979d-714c44906658", + "start": { + "$date": "2021-11-22T01:00:39.000Z" + }, + "end": { + "$date": "2021-11-22T01:19:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0a69b5f4-6fac-47a6-a2d8-2b1b7cf99d63", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-22T00:59:19.000Z" + }, + "end": { + "$date": "2021-11-22T08:53:04.000Z" + }, + "events": [ + { + "uuid": "857c3a0e-ab46-4ede-a027-6e0029edb8b0", + "start": { + "$date": "2021-11-22T00:59:19.000Z" + }, + "end": { + "$date": "2021-11-22T08:53:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bd061e7a-5f51-46c8-824d-0f329f3991cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-22T02:51:59.000Z" + }, + "end": { + "$date": "2021-11-22T04:39:13.000Z" + }, + "events": [ + { + "uuid": "32329d5c-7c63-4a9a-a366-b4e50db31b04", + "start": { + "$date": "2021-11-22T02:51:59.000Z" + }, + "end": { + "$date": "2021-11-22T04:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cfcc54ab-c2c0-4f44-a331-b45f057cb7b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-22T03:24:45.000Z" + }, + "end": { + "$date": "2021-11-22T05:10:54.000Z" + }, + "events": [ + { + "uuid": "e5d5195a-7bd7-4f34-8eaf-93e984e7bd38", + "start": { + "$date": "2021-11-22T03:24:45.000Z" + }, + "end": { + "$date": "2021-11-22T04:14:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "476b67df-a961-45b4-8850-75ae8b6f24a7", + "start": { + "$date": "2021-11-22T04:14:45.000Z" + }, + "end": { + "$date": "2021-11-22T04:19:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8bd82d2e-ce23-423b-b17a-56e3864f621e", + "start": { + "$date": "2021-11-22T04:19:45.000Z" + }, + "end": { + "$date": "2021-11-22T04:22:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ce6e2e2-3b62-44d4-9b43-4d08642b5cf6", + "start": { + "$date": "2021-11-22T04:22:45.000Z" + }, + "end": { + "$date": "2021-11-22T04:53:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b7aa143-5fbf-49c3-871e-6b2e3190518e", + "start": { + "$date": "2021-11-22T04:53:45.000Z" + }, + "end": { + "$date": "2021-11-22T05:10:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "0924ef54-de2a-49a2-8770-a4669cd8fbb8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-22T03:33:23.000Z" + }, + "end": { + "$date": "2021-11-22T05:50:30.000Z" + }, + "events": [ + { + "uuid": "efff9def-5496-4313-8298-024965abb9cd", + "start": { + "$date": "2021-11-22T03:33:23.000Z" + }, + "end": { + "$date": "2021-11-22T05:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45509d6d-8ef4-4807-ad5d-3e3b0a8956ac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-22T04:03:48.000Z" + }, + "end": { + "$date": "2021-11-22T04:37:54.000Z" + }, + "events": [ + { + "uuid": "6d514b7c-08eb-40c2-a29e-f32e10a02cb8", + "start": { + "$date": "2021-11-22T04:03:48.000Z" + }, + "end": { + "$date": "2021-11-22T04:37:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8707a561-13cf-497f-982f-5f30fdbbd188", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-22T04:38:34.000Z" + }, + "end": { + "$date": "2021-11-22T05:17:01.000Z" + }, + "events": [ + { + "uuid": "55aa7700-acf8-4625-b51f-6635d009c57b", + "start": { + "$date": "2021-11-22T04:38:34.000Z" + }, + "end": { + "$date": "2021-11-22T05:17:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "1ea4aae5-c2f6-4000-a35c-a469ca1a2ec6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-22T04:40:27.000Z" + }, + "end": { + "$date": "2021-11-22T06:32:09.000Z" + }, + "events": [ + { + "uuid": "08f17b49-451e-41d1-ad82-f39e2e486ad0", + "start": { + "$date": "2021-11-22T04:40:27.000Z" + }, + "end": { + "$date": "2021-11-22T06:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ec3f038-b903-49d6-aae7-091059eddd02", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T05:04:16.000Z" + }, + "end": { + "$date": "2021-11-22T05:25:55.000Z" + }, + "events": [ + { + "uuid": "c30aa137-6926-4d70-851c-0c5c80b92960", + "start": { + "$date": "2021-11-22T05:04:16.000Z" + }, + "end": { + "$date": "2021-11-22T05:25:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a26225d8-b6ce-43d1-996f-808f44181c6b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-22T05:18:12.000Z" + }, + "end": { + "$date": "2021-11-22T05:47:32.000Z" + }, + "events": [ + { + "uuid": "202dc4b3-138c-4073-b7c6-a56078148656", + "start": { + "$date": "2021-11-22T05:18:12.000Z" + }, + "end": { + "$date": "2021-11-22T05:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d988e14-b097-49c5-a2b1-b95e59bb5093", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T05:29:43.000Z" + }, + "end": { + "$date": "2021-11-22T05:52:32.000Z" + }, + "events": [ + { + "uuid": "7ae03839-d146-45cb-a73b-4876f02e1ead", + "start": { + "$date": "2021-11-22T05:29:43.000Z" + }, + "end": { + "$date": "2021-11-22T05:52:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1219192c-da29-4c48-8efe-c59af456f977", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T05:54:19.000Z" + }, + "end": { + "$date": "2021-11-22T05:58:55.000Z" + }, + "events": [ + { + "uuid": "08568fc4-1143-439f-8542-37a2bf0dc70f", + "start": { + "$date": "2021-11-22T05:54:19.000Z" + }, + "end": { + "$date": "2021-11-22T05:58:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11bd43d5-cb54-4b8b-86b2-a3c6787c0eb4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T06:00:20.000Z" + }, + "end": { + "$date": "2021-11-22T06:31:19.000Z" + }, + "events": [ + { + "uuid": "43370512-d286-4669-a82d-42bd50db5e1a", + "start": { + "$date": "2021-11-22T06:00:20.000Z" + }, + "end": { + "$date": "2021-11-22T06:31:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4f75800-ec81-4451-8927-be23127787f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T06:32:33.000Z" + }, + "end": { + "$date": "2021-11-22T07:00:49.000Z" + }, + "events": [ + { + "uuid": "3ea25148-3dd3-4afc-bdc7-a463467b56a9", + "start": { + "$date": "2021-11-22T06:32:33.000Z" + }, + "end": { + "$date": "2021-11-22T07:00:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ae24a923-9bf6-4911-89c0-9a425463e725", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-22T06:32:42.000Z" + }, + "end": { + "$date": "2021-11-22T06:52:07.000Z" + }, + "events": [ + { + "uuid": "edb1ee2d-bf4a-4bd5-ae27-47bd2b97d149", + "start": { + "$date": "2021-11-22T06:32:42.000Z" + }, + "end": { + "$date": "2021-11-22T06:52:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "66742864-6306-4a05-95a4-602f84b0456f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-22T06:52:17.000Z" + }, + "end": { + "$date": "2021-11-22T06:58:37.000Z" + }, + "events": [ + { + "uuid": "fd210c29-d9d7-4e0e-887b-321a7a59dbf6", + "start": { + "$date": "2021-11-22T06:52:17.000Z" + }, + "end": { + "$date": "2021-11-22T06:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae135c6a-9835-469f-b2c7-117322bef3c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T07:02:46.000Z" + }, + "end": { + "$date": "2021-11-22T07:39:43.000Z" + }, + "events": [ + { + "uuid": "cf90a46b-b1b0-4c98-9ad0-4933f5f5f9d8", + "start": { + "$date": "2021-11-22T07:02:46.000Z" + }, + "end": { + "$date": "2021-11-22T07:39:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d421887-3c8a-4e6c-8948-2685b7ba74c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T07:43:00.000Z" + }, + "end": { + "$date": "2021-11-22T08:25:11.000Z" + }, + "events": [ + { + "uuid": "ef72959f-f0f8-4c4c-b877-6e4cdac6a5af", + "start": { + "$date": "2021-11-22T07:43:00.000Z" + }, + "end": { + "$date": "2021-11-22T08:25:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ec373e0-6698-424d-9e6d-5a43fb78384e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T09:33:00.000Z" + }, + "end": { + "$date": "2021-11-22T10:05:15.000Z" + }, + "events": [ + { + "uuid": "101bac58-089a-4cd5-bc82-818f012cd508", + "start": { + "$date": "2021-11-22T09:33:00.000Z" + }, + "end": { + "$date": "2021-11-22T10:05:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "112e9653-bf9e-4bcd-8ae2-f4680fc76fd7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-22T17:35:18.000Z" + }, + "end": { + "$date": "2021-11-22T17:39:04.000Z" + }, + "events": [ + { + "uuid": "05599aad-cd9e-4c47-a62c-1896e1982db0", + "start": { + "$date": "2021-11-22T17:35:18.000Z" + }, + "end": { + "$date": "2021-11-22T17:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "708cbf82-34d2-40df-88bb-842c0cca33f0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-22T18:02:08.000Z" + }, + "end": { + "$date": "2021-11-22T23:09:44.000Z" + }, + "events": [ + { + "uuid": "47cd3cb2-5ac4-41db-b387-87c0b6a148df", + "start": { + "$date": "2021-11-22T18:02:08.000Z" + }, + "end": { + "$date": "2021-11-22T23:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2885fc74-684a-4ad9-8b7e-fefd5c717f2d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-22T18:06:35.000Z" + }, + "end": { + "$date": "2021-11-22T18:16:40.000Z" + }, + "events": [ + { + "uuid": "7fbe7a81-f333-41c7-82b1-5d65f30fbda4", + "start": { + "$date": "2021-11-22T18:06:35.000Z" + }, + "end": { + "$date": "2021-11-22T18:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a26f630f-caae-4245-894c-d5a04af1c5db", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-22T19:04:20.000Z" + }, + "end": { + "$date": "2021-11-22T19:28:47.000Z" + }, + "events": [ + { + "uuid": "77824bb7-a6dd-46f4-a823-9076d27e81e8", + "start": { + "$date": "2021-11-22T19:04:20.000Z" + }, + "end": { + "$date": "2021-11-22T19:05:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "189bf388-71a5-4298-94aa-672dfc54b7bc", + "start": { + "$date": "2021-11-22T19:05:20.000Z" + }, + "end": { + "$date": "2021-11-22T19:10:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09f36e89-ff6f-43b4-9779-62466193d91d", + "start": { + "$date": "2021-11-22T19:10:20.000Z" + }, + "end": { + "$date": "2021-11-22T19:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a435ec2b-9fb7-4656-94d1-6b3649fb456e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-22T19:26:44.000Z" + }, + "end": { + "$date": "2021-11-22T19:53:01.000Z" + }, + "events": [ + { + "uuid": "2329cada-6b31-4f61-ba9c-c6d407524209", + "start": { + "$date": "2021-11-22T19:26:44.000Z" + }, + "end": { + "$date": "2021-11-22T19:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "23c9e684-391e-4a43-8095-29b907f70a91", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-22T20:35:52.000Z" + }, + "end": { + "$date": "2021-11-23T00:48:56.000Z" + }, + "events": [ + { + "uuid": "a37d97cc-9ab7-41d2-949b-d5e3099e4106", + "start": { + "$date": "2021-11-22T20:35:52.000Z" + }, + "end": { + "$date": "2021-11-23T00:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "39546339-7aa4-4dae-ae8d-320019ea525f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-22T21:07:12.000Z" + }, + "end": { + "$date": "2021-11-22T21:36:25.000Z" + }, + "events": [ + { + "uuid": "becbe60f-90b4-4c8f-8b85-e6efd6a602ff", + "start": { + "$date": "2021-11-22T21:07:12.000Z" + }, + "end": { + "$date": "2021-11-22T21:36:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62b34fde-9b82-493b-ab57-7e922b59d846", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T22:02:06.000Z" + }, + "end": { + "$date": "2021-11-22T22:02:03.000Z" + }, + "events": [ + { + "uuid": "4b9fcc08-a502-497b-b8ed-bcacc4bd017a", + "start": { + "$date": "2021-11-22T22:02:06.000Z" + }, + "end": { + "$date": "2021-11-22T22:04:06.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "de5f2f26-2cc1-43a6-abd4-bdf8fb16fc36", + "start": { + "$date": "2021-11-22T22:04:06.000Z" + }, + "end": { + "$date": "2021-11-22T22:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "704a12ac-aaca-4990-b747-dcb9906cf737", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T22:05:56.000Z" + }, + "end": { + "$date": "2021-11-22T22:26:10.000Z" + }, + "events": [ + { + "uuid": "6e5c9fb4-6e22-4cb6-b2a1-295aa424fa0f", + "start": { + "$date": "2021-11-22T22:05:56.000Z" + }, + "end": { + "$date": "2021-11-22T22:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1c77428-d4dd-4443-a49c-dbd792f31f1a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-22T22:26:04.000Z" + }, + "end": { + "$date": "2021-11-22T22:26:05.000Z" + }, + "events": [ + { + "uuid": "a15ed5ed-ac88-4578-bb10-47e2811c2a2b", + "start": { + "$date": "2021-11-22T22:26:04.000Z" + }, + "end": { + "$date": "2021-11-22T22:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2f2643b-2a20-443e-b38b-22c8b300dddf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T22:29:52.000Z" + }, + "end": { + "$date": "2021-11-22T22:43:30.000Z" + }, + "events": [ + { + "uuid": "9b95988d-8c6c-4261-84f6-9465e28dddb5", + "start": { + "$date": "2021-11-22T22:29:52.000Z" + }, + "end": { + "$date": "2021-11-22T22:43:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d970e4b2-bb09-4c8f-ae31-98a79103bf07", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-22T22:29:59.000Z" + }, + "end": { + "$date": "2021-11-22T22:51:51.000Z" + }, + "events": [ + { + "uuid": "425c6e63-00a4-4770-ad4f-25e64a98564e", + "start": { + "$date": "2021-11-22T22:29:59.000Z" + }, + "end": { + "$date": "2021-11-22T22:51:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd7ba9f2-d5d5-4e69-9bd6-f5f535cc0d43", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T22:51:59.000Z" + }, + "end": { + "$date": "2021-11-22T22:51:55.000Z" + }, + "events": [ + { + "uuid": "b4781a45-2cb6-4a7f-b9b9-380b43ce9b7e", + "start": { + "$date": "2021-11-22T22:51:59.000Z" + }, + "end": { + "$date": "2021-11-22T22:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ef5887d5-7dbb-40d4-981c-1847b03cdedc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T23:21:32.000Z" + }, + "end": { + "$date": "2021-11-22T23:21:28.000Z" + }, + "events": [ + { + "uuid": "144de74b-6499-406f-b7bb-858f9ad02bc2", + "start": { + "$date": "2021-11-22T23:21:32.000Z" + }, + "end": { + "$date": "2021-11-22T23:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72b6a3c7-014c-406e-800a-95b138736fa3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T23:23:34.000Z" + }, + "end": { + "$date": "2021-11-22T23:54:31.000Z" + }, + "events": [ + { + "uuid": "57d20975-f9d6-426b-b081-c8aa23e5c04b", + "start": { + "$date": "2021-11-22T23:23:34.000Z" + }, + "end": { + "$date": "2021-11-22T23:54:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56e745f9-2bcd-4573-852d-cde12145f0b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-22T23:57:24.000Z" + }, + "end": { + "$date": "2021-11-23T00:39:30.000Z" + }, + "events": [ + { + "uuid": "7f3883f4-d466-4429-bd93-22b0e799c65e", + "start": { + "$date": "2021-11-22T23:57:24.000Z" + }, + "end": { + "$date": "2021-11-23T00:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "fc56ac03-071d-4ed4-ad3f-baa4ef6adcc0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-23T00:24:08.000Z" + }, + "end": { + "$date": "2021-11-23T05:57:31.000Z" + }, + "events": [ + { + "uuid": "c886db9d-79e3-4360-9134-89dfb9000600", + "start": { + "$date": "2021-11-23T00:24:08.000Z" + }, + "end": { + "$date": "2021-11-23T05:57:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "ad559ca0-32a0-4e5a-b635-2368cd215922", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-23T00:49:11.000Z" + }, + "end": { + "$date": "2021-11-23T00:58:32.000Z" + }, + "events": [ + { + "uuid": "51844d44-798c-4a1a-90c1-69dd108c2992", + "start": { + "$date": "2021-11-23T00:49:11.000Z" + }, + "end": { + "$date": "2021-11-23T00:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "69c03f52-504a-4864-891e-5b115ec7b0b8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-23T00:59:02.000Z" + }, + "end": { + "$date": "2021-11-23T01:03:38.000Z" + }, + "events": [ + { + "uuid": "34a6bb55-8b8e-4e7a-831d-dc8b411d5c62", + "start": { + "$date": "2021-11-23T00:59:02.000Z" + }, + "end": { + "$date": "2021-11-23T01:03:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "59d5411f-702d-4949-a0ec-ae41da492dda", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-22T17:35:18.000Z" + }, + "end": { + "$date": "2021-11-23T03:24:24.000Z" + }, + "events": [ + { + "uuid": "b95150ea-ab5d-4e64-b69a-de41ba4dae5c", + "start": { + "$date": "2021-11-22T17:35:18.000Z" + }, + "end": { + "$date": "2021-11-23T03:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "55f42460-2212-46fc-b30c-3c8a41ae44cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-23T01:04:08.000Z" + }, + "end": { + "$date": "2021-11-23T02:25:22.000Z" + }, + "events": [ + { + "uuid": "48af495d-4f25-4256-9a79-c44ea64ad0f4", + "start": { + "$date": "2021-11-23T01:04:08.000Z" + }, + "end": { + "$date": "2021-11-23T02:25:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e60a93f0-372b-40fc-a970-5d82e824bb23", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-23T01:21:35.000Z" + }, + "end": { + "$date": "2021-11-23T02:17:28.000Z" + }, + "events": [ + { + "uuid": "06193c15-ca2b-4426-9d82-9fa7455a74d3", + "start": { + "$date": "2021-11-23T01:21:35.000Z" + }, + "end": { + "$date": "2021-11-23T02:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fc7b237e-6339-4a5c-abd3-fea948320d83", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-23T01:50:55.000Z" + }, + "end": { + "$date": "2021-11-23T10:43:20.000Z" + }, + "events": [ + { + "uuid": "40a7d5c1-443b-475b-ad3e-9128830bc505", + "start": { + "$date": "2021-11-23T01:50:55.000Z" + }, + "end": { + "$date": "2021-11-23T10:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42dba3ff-dbb3-4fdb-88ec-54eb8755041e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T02:23:51.000Z" + }, + "end": { + "$date": "2021-11-23T03:02:27.000Z" + }, + "events": [ + { + "uuid": "051881c5-9975-4c3a-be4d-b5fdfec0ad23", + "start": { + "$date": "2021-11-23T02:23:51.000Z" + }, + "end": { + "$date": "2021-11-23T03:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "48d92b4a-53f2-4d3a-8614-affb98b086f0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-23T02:25:52.000Z" + }, + "end": { + "$date": "2021-11-23T03:37:36.000Z" + }, + "events": [ + { + "uuid": "e07da828-c191-4479-940e-1c47eda18ca8", + "start": { + "$date": "2021-11-23T02:25:52.000Z" + }, + "end": { + "$date": "2021-11-23T03:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3289b6c3-2ddf-49a0-8d0a-f47bb05cd3c4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T03:02:54.000Z" + }, + "end": { + "$date": "2021-11-23T03:22:07.000Z" + }, + "events": [ + { + "uuid": "0ce1c9e0-9ffb-4e0a-9209-07b593808417", + "start": { + "$date": "2021-11-23T03:02:54.000Z" + }, + "end": { + "$date": "2021-11-23T03:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db938890-4270-4882-9794-7a45df23bdaa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T03:23:09.000Z" + }, + "end": { + "$date": "2021-11-23T03:48:56.000Z" + }, + "events": [ + { + "uuid": "bf6ff7db-34d7-43ea-9fd6-35c10058f688", + "start": { + "$date": "2021-11-23T03:23:09.000Z" + }, + "end": { + "$date": "2021-11-23T03:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b5ab35e0-7107-415d-9c81-6695d9fce583", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-23T03:25:20.000Z" + }, + "end": { + "$date": "2021-11-23T05:29:01.000Z" + }, + "events": [ + { + "uuid": "47b37fde-e917-4af7-ad10-f499ee8a443b", + "start": { + "$date": "2021-11-23T03:25:20.000Z" + }, + "end": { + "$date": "2021-11-23T05:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "820b9af0-5051-48dc-8342-f0ae4032751c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T03:51:06.000Z" + }, + "end": { + "$date": "2021-11-23T04:24:45.000Z" + }, + "events": [ + { + "uuid": "7827768e-0b8c-4ab1-a56c-d2d3e477f2ea", + "start": { + "$date": "2021-11-23T03:51:06.000Z" + }, + "end": { + "$date": "2021-11-23T04:24:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5999123d-ebcd-4019-b424-0388be569734", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-23T04:38:54.000Z" + }, + "end": { + "$date": "2021-11-23T05:28:11.000Z" + }, + "events": [ + { + "uuid": "681c160c-ce71-4d52-b1a3-146f1b0525f1", + "start": { + "$date": "2021-11-23T04:38:54.000Z" + }, + "end": { + "$date": "2021-11-23T05:28:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f97440ef-e8cb-4d3a-8cbe-c1e73255c363", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-23T05:29:17.000Z" + }, + "end": { + "$date": "2021-11-23T05:42:07.000Z" + }, + "events": [ + { + "uuid": "8c30ca72-0c8d-4efd-b5ff-79078c57f428", + "start": { + "$date": "2021-11-23T05:29:17.000Z" + }, + "end": { + "$date": "2021-11-23T05:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f767256-5966-42eb-ba0d-9fffabbc0970", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T05:36:29.000Z" + }, + "end": { + "$date": "2021-11-23T06:15:34.000Z" + }, + "events": [ + { + "uuid": "633b5bb2-a056-49d8-b718-5388554dda78", + "start": { + "$date": "2021-11-23T05:36:29.000Z" + }, + "end": { + "$date": "2021-11-23T06:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "4c1885da-e9ee-40d4-b71e-66396a9236e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-23T05:44:11.000Z" + }, + "end": { + "$date": "2021-11-23T05:58:14.000Z" + }, + "events": [ + { + "uuid": "487c99d5-66a1-443f-8b66-8bb0a0bfb487", + "start": { + "$date": "2021-11-23T05:44:11.000Z" + }, + "end": { + "$date": "2021-11-23T05:58:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe732309-8c52-4d2a-8191-2718facbc56b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-23T06:31:04.000Z" + }, + "end": { + "$date": "2021-11-23T06:51:09.000Z" + }, + "events": [ + { + "uuid": "f4c6468d-35ff-47d6-ba05-7550c3f61816", + "start": { + "$date": "2021-11-23T06:31:04.000Z" + }, + "end": { + "$date": "2021-11-23T06:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73eb1e4f-6737-4905-96bc-0adbe87039b1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-23T06:56:01.000Z" + }, + "end": { + "$date": "2021-11-23T06:57:54.000Z" + }, + "events": [ + { + "uuid": "1eece836-0297-4b95-b06c-106ad810b120", + "start": { + "$date": "2021-11-23T06:56:01.000Z" + }, + "end": { + "$date": "2021-11-23T06:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0506570d-f75c-450c-a0e8-dfcd3709f090", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-23T06:58:15.000Z" + }, + "end": { + "$date": "2021-11-23T08:25:03.000Z" + }, + "events": [ + { + "uuid": "484cf1d8-eacb-479e-9d87-e5325c24e908", + "start": { + "$date": "2021-11-23T06:58:15.000Z" + }, + "end": { + "$date": "2021-11-23T08:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f5a2b6db-a890-41b3-a218-553150ae39b4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-23T06:59:18.000Z" + }, + "end": { + "$date": "2021-11-23T08:24:43.000Z" + }, + "events": [ + { + "uuid": "6bb904e0-9d9b-47f9-9a9f-ddb69e71c2fb", + "start": { + "$date": "2021-11-23T06:59:18.000Z" + }, + "end": { + "$date": "2021-11-23T08:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5c5ce9c-e703-4c7b-aaab-72416c8a59d9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T08:12:36.000Z" + }, + "end": { + "$date": "2021-11-23T08:42:52.000Z" + }, + "events": [ + { + "uuid": "91aa143a-bd68-4cbc-afca-977646af8d03", + "start": { + "$date": "2021-11-23T08:12:36.000Z" + }, + "end": { + "$date": "2021-11-23T08:42:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4f60d24-530a-4a64-8b02-696c50464e2e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T08:51:34.000Z" + }, + "end": { + "$date": "2021-11-23T09:20:35.000Z" + }, + "events": [ + { + "uuid": "7fe3f188-c231-453a-94c0-a515dbbd8581", + "start": { + "$date": "2021-11-23T08:51:34.000Z" + }, + "end": { + "$date": "2021-11-23T09:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44e44ce5-b80a-4587-b162-1906002e11ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T09:22:42.000Z" + }, + "end": { + "$date": "2021-11-23T09:48:36.000Z" + }, + "events": [ + { + "uuid": "a7a43636-0538-463a-8d3a-b94a4057029c", + "start": { + "$date": "2021-11-23T09:22:42.000Z" + }, + "end": { + "$date": "2021-11-23T09:48:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1ca32609-4544-4498-b7ce-33d8fa993681", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-23T10:46:33.000Z" + }, + "end": { + "$date": "2021-11-23T10:55:57.000Z" + }, + "events": [ + { + "uuid": "9b1cb4f2-49be-4b01-824f-7f99f8b93eaf", + "start": { + "$date": "2021-11-23T10:46:33.000Z" + }, + "end": { + "$date": "2021-11-23T10:55:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e509c958-f2b1-4b95-9cd6-4bb97e355380", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-23T14:30:38.000Z" + }, + "end": { + "$date": "2021-11-23T14:32:39.000Z" + }, + "events": [ + { + "uuid": "7b5b49b3-a115-4ca1-add4-88e1f41a9735", + "start": { + "$date": "2021-11-23T14:30:38.000Z" + }, + "end": { + "$date": "2021-11-23T14:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e79875e6-04e1-4cfe-8752-567674e0aaa5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-23T14:33:19.000Z" + }, + "end": { + "$date": "2021-11-24T01:20:23.000Z" + }, + "events": [ + { + "uuid": "6a660a4f-09dc-42c5-b3fa-0ab994cd2574", + "start": { + "$date": "2021-11-23T14:33:19.000Z" + }, + "end": { + "$date": "2021-11-23T21:08:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dbab2296-7d09-49a2-bd50-bcad6f4e997c", + "start": { + "$date": "2021-11-23T21:08:19.000Z" + }, + "end": { + "$date": "2021-11-23T21:12:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef9bead5-d2bb-40e6-b032-f302083df7be", + "start": { + "$date": "2021-11-23T21:12:19.000Z" + }, + "end": { + "$date": "2021-11-23T21:22:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78659c9c-334f-4749-8c02-7c1eab27ce01", + "start": { + "$date": "2021-11-23T21:22:19.000Z" + }, + "end": { + "$date": "2021-11-23T21:37:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0804ac89-b7cc-46a1-8ba1-bf630aa78cc1", + "start": { + "$date": "2021-11-23T21:37:19.000Z" + }, + "end": { + "$date": "2021-11-23T21:47:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "376ddacc-40ef-40f9-8299-bfebb422fe79", + "start": { + "$date": "2021-11-23T21:47:19.000Z" + }, + "end": { + "$date": "2021-11-23T22:34:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6a781dd-7bb2-4bd6-af58-a5ed8bf67a3d", + "start": { + "$date": "2021-11-23T22:34:19.000Z" + }, + "end": { + "$date": "2021-11-23T22:44:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7258bc2d-95fd-4653-9745-452c8950700b", + "start": { + "$date": "2021-11-23T22:44:19.000Z" + }, + "end": { + "$date": "2021-11-23T22:53:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "02236510-de0c-45cd-bde1-d370cb8ca876", + "start": { + "$date": "2021-11-23T22:53:19.000Z" + }, + "end": { + "$date": "2021-11-23T23:03:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "92de3bef-65a0-433b-9b64-0dd080181fc9", + "start": { + "$date": "2021-11-23T23:03:19.000Z" + }, + "end": { + "$date": "2021-11-23T23:04:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2a48badf-4f39-4ab5-a305-4af3c4b511c1", + "start": { + "$date": "2021-11-23T23:04:19.000Z" + }, + "end": { + "$date": "2021-11-23T23:24:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f51343fa-85f7-41d9-ae13-a334faf98dce", + "start": { + "$date": "2021-11-23T23:24:19.000Z" + }, + "end": { + "$date": "2021-11-23T23:56:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "29954239-2180-4e75-b380-ddf333ddc713", + "start": { + "$date": "2021-11-23T23:56:19.000Z" + }, + "end": { + "$date": "2021-11-24T00:07:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88bafda6-9064-400c-b88a-a8a162cb3a25", + "start": { + "$date": "2021-11-24T00:07:19.000Z" + }, + "end": { + "$date": "2021-11-24T00:57:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2380579e-d9b4-486f-bcbe-db3eb8b2a353", + "start": { + "$date": "2021-11-24T00:57:19.000Z" + }, + "end": { + "$date": "2021-11-24T01:07:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7de72d2-bda0-4c61-aa28-ccd0fca2c430", + "start": { + "$date": "2021-11-24T01:07:19.000Z" + }, + "end": { + "$date": "2021-11-24T01:20:23.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7abf1718-ce0e-4ea0-9096-d904d43b64c8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-23T17:40:45.000Z" + }, + "end": { + "$date": "2021-11-23T18:22:32.000Z" + }, + "events": [ + { + "uuid": "c1678a84-b547-48e7-b412-461c02740d76", + "start": { + "$date": "2021-11-23T17:40:45.000Z" + }, + "end": { + "$date": "2021-11-23T18:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ac30816-1c0c-4552-baac-cb10e92447be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T18:53:30.000Z" + }, + "end": { + "$date": "2021-11-23T19:24:31.000Z" + }, + "events": [ + { + "uuid": "fd20a242-ddd2-47d6-b40c-d983725248c8", + "start": { + "$date": "2021-11-23T18:53:30.000Z" + }, + "end": { + "$date": "2021-11-23T19:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "371dd31a-26f6-4bd8-8a3c-a02ed0f88457", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T19:25:39.000Z" + }, + "end": { + "$date": "2021-11-23T19:52:33.000Z" + }, + "events": [ + { + "uuid": "65fde153-4eda-4787-b93a-c8983f32f7ff", + "start": { + "$date": "2021-11-23T19:25:39.000Z" + }, + "end": { + "$date": "2021-11-23T19:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f2424d2-33b1-408a-9397-f46fb23160b0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T19:54:02.000Z" + }, + "end": { + "$date": "2021-11-23T20:24:24.000Z" + }, + "events": [ + { + "uuid": "20e29064-b07f-4d4f-8609-f867cbb3c264", + "start": { + "$date": "2021-11-23T19:54:02.000Z" + }, + "end": { + "$date": "2021-11-23T20:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd50a736-49b3-41b9-a91b-ed7f353fe84f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-23T20:49:57.000Z" + }, + "end": { + "$date": "2021-11-23T21:09:38.000Z" + }, + "events": [ + { + "uuid": "ae365b77-a270-4509-97ca-b4f442feb8ff", + "start": { + "$date": "2021-11-23T20:49:57.000Z" + }, + "end": { + "$date": "2021-11-23T21:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6065e964-63dd-470e-a95c-1fc027095411", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T22:03:45.000Z" + }, + "end": { + "$date": "2021-11-23T22:20:54.000Z" + }, + "events": [ + { + "uuid": "a84f7bd6-bea6-4dd3-825a-b6173fd088cd", + "start": { + "$date": "2021-11-23T22:03:45.000Z" + }, + "end": { + "$date": "2021-11-23T22:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f0ea718-8508-4348-9d0c-9698a8962975", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-23T22:03:49.000Z" + }, + "end": { + "$date": "2021-11-23T22:22:29.000Z" + }, + "events": [ + { + "uuid": "0a5b9d83-26a5-4163-9767-74f45cc978bf", + "start": { + "$date": "2021-11-23T22:03:49.000Z" + }, + "end": { + "$date": "2021-11-23T22:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "9a1d0ed5-7433-4ae0-913e-f85744bcd6e7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-23T22:19:38.000Z" + }, + "end": { + "$date": "2021-11-23T22:34:26.000Z" + }, + "events": [ + { + "uuid": "b50db94a-9481-460e-91a6-ef944db45410", + "start": { + "$date": "2021-11-23T22:19:38.000Z" + }, + "end": { + "$date": "2021-11-23T22:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d5e2190-2e66-4561-9ef8-02b49cdf5a6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-23T22:21:46.000Z" + }, + "end": { + "$date": "2021-11-23T22:59:21.000Z" + }, + "events": [ + { + "uuid": "07b5b7aa-85fa-4bb3-a29c-d9dc393818f1", + "start": { + "$date": "2021-11-23T22:21:46.000Z" + }, + "end": { + "$date": "2021-11-23T22:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45e42ded-cf2c-4a3e-b63d-1c969450d1ff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T00:09:10.000Z" + }, + "end": { + "$date": "2021-11-24T00:24:14.000Z" + }, + "events": [ + { + "uuid": "f76e9451-d126-43fe-8924-4fab6e7c189d", + "start": { + "$date": "2021-11-24T00:09:10.000Z" + }, + "end": { + "$date": "2021-11-24T00:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bc9fb011-649c-4421-8948-d4636cc7af83", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-24T00:39:25.000Z" + }, + "end": { + "$date": "2021-11-24T01:16:02.000Z" + }, + "events": [ + { + "uuid": "42fd8ade-bdbf-4559-91f8-aec26e990775", + "start": { + "$date": "2021-11-24T00:39:25.000Z" + }, + "end": { + "$date": "2021-11-24T01:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "cae287b5-8ed3-4c57-8caf-36eede68a500", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T01:32:56.000Z" + }, + "end": { + "$date": "2021-11-24T01:46:52.000Z" + }, + "events": [ + { + "uuid": "d24e7caf-b2d5-4594-a286-a6a8a3cea536", + "start": { + "$date": "2021-11-24T01:32:56.000Z" + }, + "end": { + "$date": "2021-11-24T01:46:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "3e56963d-442f-41bb-aeb6-9dd7be2d2cb5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T01:48:12.000Z" + }, + "end": { + "$date": "2021-11-24T01:50:13.000Z" + }, + "events": [ + { + "uuid": "691f8812-3996-4878-9726-a7bae159b80a", + "start": { + "$date": "2021-11-24T01:48:12.000Z" + }, + "end": { + "$date": "2021-11-24T01:50:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "cb758db5-f691-4d8e-8d05-959ba7470c07", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-24T01:49:11.000Z" + }, + "end": { + "$date": "2021-11-24T02:42:55.000Z" + }, + "events": [ + { + "uuid": "1c4f35f8-b7bb-4dcd-b182-99ba52064efc", + "start": { + "$date": "2021-11-24T01:49:11.000Z" + }, + "end": { + "$date": "2021-11-24T02:42:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "999af19a-22b3-48e6-9328-bf8b8a706580", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-24T01:55:09.000Z" + }, + "end": { + "$date": "2021-11-24T02:32:05.000Z" + }, + "events": [ + { + "uuid": "33d274ed-a110-4091-b90b-891f9d5d2d59", + "start": { + "$date": "2021-11-24T01:55:09.000Z" + }, + "end": { + "$date": "2021-11-24T02:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "14984114-79bc-4ad9-b04e-22485e1c4e1d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T01:57:22.000Z" + }, + "end": { + "$date": "2021-11-24T03:40:39.000Z" + }, + "events": [ + { + "uuid": "b3f0d8bf-f9cb-4990-902a-eba15362620b", + "start": { + "$date": "2021-11-24T01:57:22.000Z" + }, + "end": { + "$date": "2021-11-24T03:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "9f872af1-0d50-4f9b-a16b-80a12b0fbe7a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-24T02:52:32.000Z" + }, + "end": { + "$date": "2021-11-24T03:56:34.000Z" + }, + "events": [ + { + "uuid": "e998d890-c0e8-4b1f-9c60-3662fc2a1bd2", + "start": { + "$date": "2021-11-24T02:52:32.000Z" + }, + "end": { + "$date": "2021-11-24T03:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e2e43c8c-053d-41ca-af57-a11b6d8a652f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T03:54:09.000Z" + }, + "end": { + "$date": "2021-11-24T06:24:49.000Z" + }, + "events": [ + { + "uuid": "7e5a56e7-bc2c-4d48-8cbb-ba7ddc7dae08", + "start": { + "$date": "2021-11-24T03:54:09.000Z" + }, + "end": { + "$date": "2021-11-24T06:24:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c02bdb8-a755-4900-873f-3d3a1afa37bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T04:45:20.000Z" + }, + "end": { + "$date": "2021-11-24T05:21:16.000Z" + }, + "events": [ + { + "uuid": "8371b761-67b7-491b-b83b-efb211cb9f72", + "start": { + "$date": "2021-11-24T04:45:20.000Z" + }, + "end": { + "$date": "2021-11-24T05:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "7bc0bf69-9ea2-4732-b96a-5b9482bd4d2e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T04:54:12.000Z" + }, + "end": { + "$date": "2021-11-24T04:55:28.000Z" + }, + "events": [ + { + "uuid": "fcfc738b-bd7f-4210-a305-3d149c09af23", + "start": { + "$date": "2021-11-24T04:54:12.000Z" + }, + "end": { + "$date": "2021-11-24T04:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a0080752-fdff-40ca-b55a-9b19c084724d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T04:56:04.000Z" + }, + "end": { + "$date": "2021-11-24T05:01:44.000Z" + }, + "events": [ + { + "uuid": "7f7de100-957a-45a9-bbed-88898871b214", + "start": { + "$date": "2021-11-24T04:56:04.000Z" + }, + "end": { + "$date": "2021-11-24T05:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7a9dd0c7-787e-4b5c-b1cf-749b42a58c8b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T05:02:02.000Z" + }, + "end": { + "$date": "2021-11-24T05:04:07.000Z" + }, + "events": [ + { + "uuid": "75f4ea3b-4cf0-449d-824d-266a035ef781", + "start": { + "$date": "2021-11-24T05:02:02.000Z" + }, + "end": { + "$date": "2021-11-24T05:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f13c20f4-0d3a-4ca0-857f-d96d730e1a45", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-24T05:03:02.000Z" + }, + "end": { + "$date": "2021-11-24T08:37:29.000Z" + }, + "events": [ + { + "uuid": "313d9214-6b62-4e44-818b-40b09f92e904", + "start": { + "$date": "2021-11-24T05:03:02.000Z" + }, + "end": { + "$date": "2021-11-24T08:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fcbbb09c-7b96-4105-ba10-4cd3ec87f94e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T05:04:10.000Z" + }, + "end": { + "$date": "2021-11-24T05:14:31.000Z" + }, + "events": [ + { + "uuid": "f67bd7d0-f420-40d9-84c8-2987ce2e0a2b", + "start": { + "$date": "2021-11-24T05:04:10.000Z" + }, + "end": { + "$date": "2021-11-24T05:14:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4481abe5-7a74-40fa-947e-9ad8e0243d9e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T05:16:49.000Z" + }, + "end": { + "$date": "2021-11-24T06:05:13.000Z" + }, + "events": [ + { + "uuid": "4c0a2b32-b665-4f3b-a885-317587b8cce9", + "start": { + "$date": "2021-11-24T05:16:49.000Z" + }, + "end": { + "$date": "2021-11-24T06:05:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7b38091-b6fb-4a93-97f6-95efc4929e0c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T05:22:10.000Z" + }, + "end": { + "$date": "2021-11-24T05:54:26.000Z" + }, + "events": [ + { + "uuid": "60adf841-86b9-4528-8e36-1f309d1d5a1f", + "start": { + "$date": "2021-11-24T05:22:10.000Z" + }, + "end": { + "$date": "2021-11-24T05:54:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97bf8476-e8e2-479b-9251-194b47f560bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T05:55:39.000Z" + }, + "end": { + "$date": "2021-11-24T06:22:37.000Z" + }, + "events": [ + { + "uuid": "c8e529f1-fd87-4b86-9b58-01984e598587", + "start": { + "$date": "2021-11-24T05:55:39.000Z" + }, + "end": { + "$date": "2021-11-24T06:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d3bff4d0-ddb4-4578-935d-ab4e3bfe0388", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T06:17:04.000Z" + }, + "end": { + "$date": "2021-11-24T06:27:19.000Z" + }, + "events": [ + { + "uuid": "dd2bfc00-3dc4-4196-bb1c-5af0ac3cb9b8", + "start": { + "$date": "2021-11-24T06:17:04.000Z" + }, + "end": { + "$date": "2021-11-24T06:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6076ce3-4591-4b69-be98-0b088df28f1a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T06:24:03.000Z" + }, + "end": { + "$date": "2021-11-24T06:51:09.000Z" + }, + "events": [ + { + "uuid": "7def0638-8bfc-4ac4-a67d-f67d75e163f0", + "start": { + "$date": "2021-11-24T06:24:03.000Z" + }, + "end": { + "$date": "2021-11-24T06:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "192e89a5-7414-49c2-b3e3-fd6eb34193fa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T06:25:14.000Z" + }, + "end": { + "$date": "2021-11-24T06:52:10.000Z" + }, + "events": [ + { + "uuid": "eb42b672-6bcd-45e0-93a3-498b0d420de8", + "start": { + "$date": "2021-11-24T06:25:14.000Z" + }, + "end": { + "$date": "2021-11-24T06:52:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43ac6d1b-247b-4864-ac1f-c4e58b4ac236", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T06:53:04.000Z" + }, + "end": { + "$date": "2021-11-24T07:22:01.000Z" + }, + "events": [ + { + "uuid": "50dec217-18b8-4bc8-b1c6-0a0c553aa1d5", + "start": { + "$date": "2021-11-24T06:53:04.000Z" + }, + "end": { + "$date": "2021-11-24T07:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67911c91-2577-4e10-af96-ea7f42f218ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T07:23:29.000Z" + }, + "end": { + "$date": "2021-11-24T08:00:48.000Z" + }, + "events": [ + { + "uuid": "e4320ac9-3e37-4125-b758-5490fd9122a0", + "start": { + "$date": "2021-11-24T07:23:29.000Z" + }, + "end": { + "$date": "2021-11-24T08:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5c033732-e8af-4b8f-834f-4bcdc198c168", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T07:48:18.000Z" + }, + "end": { + "$date": "2021-11-24T08:43:15.000Z" + }, + "events": [ + { + "uuid": "84092d6c-6583-4376-809b-6befd4a0d18f", + "start": { + "$date": "2021-11-24T07:48:18.000Z" + }, + "end": { + "$date": "2021-11-24T08:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91de3059-56d4-40cc-95b0-b0347936adcc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T08:05:38.000Z" + }, + "end": { + "$date": "2021-11-24T08:07:32.000Z" + }, + "events": [ + { + "uuid": "bd872536-5cad-4850-8490-2afd6fb85eb7", + "start": { + "$date": "2021-11-24T08:05:38.000Z" + }, + "end": { + "$date": "2021-11-24T08:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b94ca86-af1d-4162-99c1-800219ea7d02", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T08:17:04.000Z" + }, + "end": { + "$date": "2021-11-24T08:39:52.000Z" + }, + "events": [ + { + "uuid": "d7c27192-40fd-467a-8025-d9ecce77203e", + "start": { + "$date": "2021-11-24T08:17:04.000Z" + }, + "end": { + "$date": "2021-11-24T08:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ee17603-ab1b-4509-bec9-dff5ce317931", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T08:44:33.000Z" + }, + "end": { + "$date": "2021-11-24T09:17:00.000Z" + }, + "events": [ + { + "uuid": "724b3b7e-bb32-46ec-bc1c-7b630867fb21", + "start": { + "$date": "2021-11-24T08:44:33.000Z" + }, + "end": { + "$date": "2021-11-24T09:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "641ae5c4-cd6b-4655-baeb-692ea52ce25a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-24T17:19:09.000Z" + }, + "end": { + "$date": "2021-11-24T18:33:32.000Z" + }, + "events": [ + { + "uuid": "e9dfa344-1776-4b7c-973d-294d138f0001", + "start": { + "$date": "2021-11-24T17:19:09.000Z" + }, + "end": { + "$date": "2021-11-24T18:33:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f31a1825-02fa-416f-a5a9-ab072f4a1f29", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T17:32:25.000Z" + }, + "end": { + "$date": "2021-11-24T17:41:00.000Z" + }, + "events": [ + { + "uuid": "14397cad-2d6a-484b-9900-0b30ea5196e8", + "start": { + "$date": "2021-11-24T17:32:25.000Z" + }, + "end": { + "$date": "2021-11-24T17:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "46f2a51a-8ade-4982-a756-2d7a172275d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-24T17:53:02.000Z" + }, + "end": { + "$date": "2021-11-24T18:03:52.000Z" + }, + "events": [ + { + "uuid": "64ffb51d-e74c-4e97-aa49-14ffed7db253", + "start": { + "$date": "2021-11-24T17:53:02.000Z" + }, + "end": { + "$date": "2021-11-24T18:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e451a279-c8f0-45e0-86ef-1bc57e0b4c97", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-24T19:37:51.000Z" + }, + "end": { + "$date": "2021-11-24T22:14:24.000Z" + }, + "events": [ + { + "uuid": "05965b3c-41d9-4f72-bb72-1e552d3d8b32", + "start": { + "$date": "2021-11-24T19:37:51.000Z" + }, + "end": { + "$date": "2021-11-24T21:19:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da37ff8d-3c76-46b8-a9f7-548dd6e9e212", + "start": { + "$date": "2021-11-24T21:19:51.000Z" + }, + "end": { + "$date": "2021-11-24T21:24:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "31bda4a9-d3e1-4bfe-b311-92dfbee07dcf", + "start": { + "$date": "2021-11-24T21:24:51.000Z" + }, + "end": { + "$date": "2021-11-24T21:44:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b096320e-fc7d-459f-93ad-a1af1ea24649", + "start": { + "$date": "2021-11-24T21:44:51.000Z" + }, + "end": { + "$date": "2021-11-24T21:49:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9de9f27b-f4af-4c4e-9333-05775d74d660", + "start": { + "$date": "2021-11-24T21:49:51.000Z" + }, + "end": { + "$date": "2021-11-24T22:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2b989c5f-448a-4db4-ba39-cc98b2bc76fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-24T19:52:28.000Z" + }, + "end": { + "$date": "2021-11-24T20:48:32.000Z" + }, + "events": [ + { + "uuid": "396a27fe-cd1f-45d6-9b92-d02c74592f3b", + "start": { + "$date": "2021-11-24T19:52:28.000Z" + }, + "end": { + "$date": "2021-11-24T20:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "13e78f0d-8c38-4d1f-9a22-9b333e3bc603", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-24T20:57:34.000Z" + }, + "end": { + "$date": "2021-11-24T21:04:23.000Z" + }, + "events": [ + { + "uuid": "ac549c92-3e71-4818-8a51-f5e124d2679c", + "start": { + "$date": "2021-11-24T20:57:34.000Z" + }, + "end": { + "$date": "2021-11-24T21:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "e7710b1f-3ab3-437b-8e89-a9b2e2146511", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-24T21:04:39.000Z" + }, + "end": { + "$date": "2021-11-24T21:44:14.000Z" + }, + "events": [ + { + "uuid": "9df0175b-5564-4557-8127-7b6613332132", + "start": { + "$date": "2021-11-24T21:04:39.000Z" + }, + "end": { + "$date": "2021-11-24T21:44:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "c859317f-4118-4af5-8f63-1c97e89ab1ac", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-24T21:39:06.000Z" + }, + "end": { + "$date": "2021-11-24T22:41:23.000Z" + }, + "events": [ + { + "uuid": "f5a3a76e-7a44-42a0-8478-b39adb5c593c", + "start": { + "$date": "2021-11-24T21:39:06.000Z" + }, + "end": { + "$date": "2021-11-24T22:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "aa335436-0fca-40c8-b439-9c2b68600752", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-24T22:14:53.000Z" + }, + "end": { + "$date": "2021-11-24T23:32:08.000Z" + }, + "events": [ + { + "uuid": "4b76b8f8-d9f1-473f-9b0e-600d14ed2d2a", + "start": { + "$date": "2021-11-24T22:14:53.000Z" + }, + "end": { + "$date": "2021-11-24T23:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "70a51ad4-c7b0-4950-afe1-b429e03ae21b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-24T22:18:02.000Z" + }, + "end": { + "$date": "2021-11-25T00:03:55.000Z" + }, + "events": [ + { + "uuid": "eaf8a814-1f2b-4111-9ca1-bed122e115ea", + "start": { + "$date": "2021-11-24T22:18:02.000Z" + }, + "end": { + "$date": "2021-11-25T00:03:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fbb13f3d-69bc-4eaa-b5dc-45781b848530", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-24T22:50:06.000Z" + }, + "end": { + "$date": "2021-11-24T23:21:26.000Z" + }, + "events": [ + { + "uuid": "9fe3cafa-a226-4e14-8c8c-88901e11e83b", + "start": { + "$date": "2021-11-24T22:50:06.000Z" + }, + "end": { + "$date": "2021-11-24T23:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af9e02e2-d216-4132-9b5a-d48e947199b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-25T00:07:06.000Z" + }, + "end": { + "$date": "2021-11-25T00:46:15.000Z" + }, + "events": [ + { + "uuid": "8cd4435e-9f0c-45d5-9cc0-c4198cc93fd6", + "start": { + "$date": "2021-11-25T00:07:06.000Z" + }, + "end": { + "$date": "2021-11-25T00:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "53bc5632-e169-4025-8c85-182d30398908", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-25T00:21:20.000Z" + }, + "end": { + "$date": "2021-11-25T00:55:02.000Z" + }, + "events": [ + { + "uuid": "d530f837-228b-4aa6-9abe-f6d1de6433fa", + "start": { + "$date": "2021-11-25T00:21:20.000Z" + }, + "end": { + "$date": "2021-11-25T00:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9ae9d40a-c7fb-48c2-8b45-f57e8b1b160b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-25T00:29:09.000Z" + }, + "end": { + "$date": "2021-11-25T01:08:30.000Z" + }, + "events": [ + { + "uuid": "eb5cbdd2-e1b5-4c32-b5c7-fc4357fc9d4a", + "start": { + "$date": "2021-11-25T00:29:09.000Z" + }, + "end": { + "$date": "2021-11-25T01:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", + "uuid": "1c0ff0f7-fc34-4f60-987d-36ee559e29ba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T00:36:04.000Z" + }, + "end": { + "$date": "2021-11-25T00:39:18.000Z" + }, + "events": [ + { + "uuid": "7de58e8e-e002-4bbe-b754-af7419bf41aa", + "start": { + "$date": "2021-11-25T00:36:04.000Z" + }, + "end": { + "$date": "2021-11-25T00:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c5c55a84-cbbf-476b-9a01-36f1fb97344b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T00:39:20.000Z" + }, + "end": { + "$date": "2021-11-25T01:34:35.000Z" + }, + "events": [ + { + "uuid": "8f44c94e-7f17-4549-b925-9a2868ccec04", + "start": { + "$date": "2021-11-25T00:39:20.000Z" + }, + "end": { + "$date": "2021-11-25T01:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5f837c18-976b-4d13-9791-13e1372df0f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T01:23:52.000Z" + }, + "end": { + "$date": "2021-11-25T01:33:13.000Z" + }, + "events": [ + { + "uuid": "5a079a77-b34f-41bc-a53d-0a60a880cbaf", + "start": { + "$date": "2021-11-25T01:23:52.000Z" + }, + "end": { + "$date": "2021-11-25T01:33:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aeaf8500-3457-4423-a6f5-7f062fb790df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-25T00:47:28.000Z" + }, + "end": { + "$date": "2021-11-25T01:25:01.000Z" + }, + "events": [ + { + "uuid": "a1e52d02-61da-4c58-9767-422d78e47a71", + "start": { + "$date": "2021-11-25T00:47:28.000Z" + }, + "end": { + "$date": "2021-11-25T01:25:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a1696472-ea71-4769-b893-385449c02549", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T02:02:19.000Z" + }, + "end": { + "$date": "2021-11-25T02:49:20.000Z" + }, + "events": [ + { + "uuid": "d6247bfa-41ad-4038-b211-2973eb44008d", + "start": { + "$date": "2021-11-25T02:02:19.000Z" + }, + "end": { + "$date": "2021-11-25T02:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1b041436-34e9-4211-8cab-1730afdaf53e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T02:49:57.000Z" + }, + "end": { + "$date": "2021-11-25T02:52:01.000Z" + }, + "events": [ + { + "uuid": "9a62566b-fc41-4bda-a648-1e511cf8529d", + "start": { + "$date": "2021-11-25T02:49:57.000Z" + }, + "end": { + "$date": "2021-11-25T02:52:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "62dcadfb-470f-4be6-be69-3e3b5ca4a57d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T02:55:53.000Z" + }, + "end": { + "$date": "2021-11-25T03:53:46.000Z" + }, + "events": [ + { + "uuid": "9aadd766-7277-4e55-9215-004b3f944605", + "start": { + "$date": "2021-11-25T02:55:53.000Z" + }, + "end": { + "$date": "2021-11-25T03:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99d1900f-fb47-40fe-b1a5-49ca006289fc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T03:30:00.000Z" + }, + "end": { + "$date": "2021-11-25T03:43:15.000Z" + }, + "events": [ + { + "uuid": "067c0959-26e3-43c3-8a85-2e938fe24335", + "start": { + "$date": "2021-11-25T03:30:00.000Z" + }, + "end": { + "$date": "2021-11-25T03:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d0c1392-9316-4b6b-a71a-b123d570886c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T03:47:20.000Z" + }, + "end": { + "$date": "2021-11-25T04:04:45.000Z" + }, + "events": [ + { + "uuid": "a8682b1f-a18e-4bc2-a8b1-e18bb58c0264", + "start": { + "$date": "2021-11-25T03:47:20.000Z" + }, + "end": { + "$date": "2021-11-25T04:04:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ad137d23-bf56-47df-b056-cb85a80b792f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T03:58:08.000Z" + }, + "end": { + "$date": "2021-11-25T04:16:09.000Z" + }, + "events": [ + { + "uuid": "d4654686-f9e3-46ce-a2b2-9d5d401e3042", + "start": { + "$date": "2021-11-25T03:58:08.000Z" + }, + "end": { + "$date": "2021-11-25T04:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e9d103e9-c1bd-4899-ac75-2ceb88738d7f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T04:10:16.000Z" + }, + "end": { + "$date": "2021-11-25T04:32:48.000Z" + }, + "events": [ + { + "uuid": "e1ef25f4-9864-43db-b005-bcc846a6a733", + "start": { + "$date": "2021-11-25T04:10:16.000Z" + }, + "end": { + "$date": "2021-11-25T04:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "65fb2cae-5c3f-43a1-ab96-516e9536be0a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-25T04:14:51.000Z" + }, + "end": { + "$date": "2021-11-25T06:03:53.000Z" + }, + "events": [ + { + "uuid": "db99c13c-0a5a-4607-a385-531906e8f301", + "start": { + "$date": "2021-11-25T04:14:51.000Z" + }, + "end": { + "$date": "2021-11-25T06:03:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7e62b720-3fdd-4674-b9cf-6ce9d54c0278", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T04:16:26.000Z" + }, + "end": { + "$date": "2021-11-25T04:42:53.000Z" + }, + "events": [ + { + "uuid": "0ecbefc0-4fce-4ce4-aca1-79d38bfe19df", + "start": { + "$date": "2021-11-25T04:16:26.000Z" + }, + "end": { + "$date": "2021-11-25T04:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "73f14265-4627-45c0-af47-b09350814234", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T04:35:02.000Z" + }, + "end": { + "$date": "2021-11-25T04:48:42.000Z" + }, + "events": [ + { + "uuid": "8304f584-e8f3-403e-b89f-23517637d663", + "start": { + "$date": "2021-11-25T04:35:02.000Z" + }, + "end": { + "$date": "2021-11-25T04:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "df9de0f2-3339-4fbf-bb2a-27e900ff66da", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-25T04:42:54.000Z" + }, + "end": { + "$date": "2021-11-25T06:03:17.000Z" + }, + "events": [ + { + "uuid": "3c053729-505e-4179-9547-2a02835c2b0a", + "start": { + "$date": "2021-11-25T04:42:54.000Z" + }, + "end": { + "$date": "2021-11-25T06:03:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "14c6330e-341e-4df1-b0db-a0152fa4181f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T04:55:32.000Z" + }, + "end": { + "$date": "2021-11-25T04:56:32.000Z" + }, + "events": [ + { + "uuid": "5f5c2d3e-3f2a-4239-8d42-57666b2ae7ad", + "start": { + "$date": "2021-11-25T04:55:32.000Z" + }, + "end": { + "$date": "2021-11-25T04:56:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bcd91be5-28a4-438c-b4c7-bda7bf56189c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T04:56:37.000Z" + }, + "end": { + "$date": "2021-11-25T05:58:08.000Z" + }, + "events": [ + { + "uuid": "3b0a68fc-bcf5-42cd-b2b7-140a450f3c44", + "start": { + "$date": "2021-11-25T04:56:37.000Z" + }, + "end": { + "$date": "2021-11-25T05:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1e3a0e33-2d87-49b7-9959-f4795671b33b", + "uuid": "b676fc4e-1c18-4ac7-a552-5fc2c93e7c66", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-25T05:03:39.000Z" + }, + "end": { + "$date": "2021-11-25T05:09:09.000Z" + }, + "events": [ + { + "uuid": "ac301f0d-c155-42d6-8e3d-029112426d8a", + "start": { + "$date": "2021-11-25T05:03:39.000Z" + }, + "end": { + "$date": "2021-11-25T05:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1e3a0e33-2d87-49b7-9959-f4795671b33b", + "uuid": "3617b87d-112c-4c8b-a510-7cd01fa8c269", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-25T05:09:30.000Z" + }, + "end": { + "$date": "2021-11-25T05:21:06.000Z" + }, + "events": [ + { + "uuid": "d99b5a1d-e746-42e5-badb-4b5c87a7bc9b", + "start": { + "$date": "2021-11-25T05:09:30.000Z" + }, + "end": { + "$date": "2021-11-25T05:21:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "eacb8daa-e7f7-4fd6-8cd0-00c62900d686", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-25T05:24:01.000Z" + }, + "end": { + "$date": "2021-11-25T05:53:37.000Z" + }, + "events": [ + { + "uuid": "f0664cf9-6342-4fe6-bbbe-c9eba1e724ce", + "start": { + "$date": "2021-11-25T05:24:01.000Z" + }, + "end": { + "$date": "2021-11-25T05:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "34c8a45d-d2e4-44b6-8ad2-93e1781ca2ea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-25T05:53:38.000Z" + }, + "end": { + "$date": "2021-11-25T05:55:00.000Z" + }, + "events": [ + { + "uuid": "425e3262-f8c1-4dbf-9fd5-a58f06599d86", + "start": { + "$date": "2021-11-25T05:53:38.000Z" + }, + "end": { + "$date": "2021-11-25T05:55:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "155a5bfd-45de-4469-b02d-b785d2d98d21", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-25T05:57:21.000Z" + }, + "end": { + "$date": "2021-11-25T06:37:38.000Z" + }, + "events": [ + { + "uuid": "10eac73e-9804-439f-8ad9-805134a4f18c", + "start": { + "$date": "2021-11-25T05:57:21.000Z" + }, + "end": { + "$date": "2021-11-25T06:37:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "86e1cca5-6ad6-47a1-a326-4c17a46b72c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T05:59:03.000Z" + }, + "end": { + "$date": "2021-11-25T06:03:39.000Z" + }, + "events": [ + { + "uuid": "45f311f6-c543-48f9-bd97-87a52969e9c0", + "start": { + "$date": "2021-11-25T05:59:03.000Z" + }, + "end": { + "$date": "2021-11-25T06:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0783c70c-65a4-49fd-8988-7fc43d9e7ea8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-25T06:38:29.000Z" + }, + "end": { + "$date": "2021-11-25T07:34:19.000Z" + }, + "events": [ + { + "uuid": "c542ed0e-5d41-47d6-b75c-37ed040b6746", + "start": { + "$date": "2021-11-25T06:38:29.000Z" + }, + "end": { + "$date": "2021-11-25T07:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "42f7ff7b-bdf2-4717-afc6-1c3218c3b0c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-25T06:45:55.000Z" + }, + "end": { + "$date": "2021-11-25T07:47:22.000Z" + }, + "events": [ + { + "uuid": "dd0f7f66-dc84-4ba1-91fa-957c1169ebdb", + "start": { + "$date": "2021-11-25T06:45:55.000Z" + }, + "end": { + "$date": "2021-11-25T07:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "236212d3-7c27-4716-b349-5e2ee02cc0c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-25T07:13:54.000Z" + }, + "end": { + "$date": "2021-11-25T07:42:14.000Z" + }, + "events": [ + { + "uuid": "139600b3-bb75-4115-b77e-a7ae818b9d84", + "start": { + "$date": "2021-11-25T07:13:54.000Z" + }, + "end": { + "$date": "2021-11-25T07:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26008983-5ad1-4ab2-b3ed-c002eec7fd93", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-25T07:47:59.000Z" + }, + "end": { + "$date": "2021-11-25T08:25:02.000Z" + }, + "events": [ + { + "uuid": "665bf46d-b9ae-4605-954d-5d0210302cb0", + "start": { + "$date": "2021-11-25T07:47:59.000Z" + }, + "end": { + "$date": "2021-11-25T08:25:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be15308a-b864-40a9-9fe7-67d4d82984d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-25T08:27:08.000Z" + }, + "end": { + "$date": "2021-11-25T09:00:59.000Z" + }, + "events": [ + { + "uuid": "f29b3c4f-eff9-45fb-b04f-3339048365e1", + "start": { + "$date": "2021-11-25T08:27:08.000Z" + }, + "end": { + "$date": "2021-11-25T09:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6d88743a-ab15-4b69-aca0-60d852f6e83d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T17:08:06.000Z" + }, + "end": { + "$date": "2021-11-25T17:19:28.000Z" + }, + "events": [ + { + "uuid": "be025516-4aa4-4250-afc3-4ce90f780fbc", + "start": { + "$date": "2021-11-25T17:08:06.000Z" + }, + "end": { + "$date": "2021-11-25T17:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "cc89f867-ce12-48cf-8ef2-5027dcb20ac4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-25T17:34:23.000Z" + }, + "end": { + "$date": "2021-11-25T19:40:27.000Z" + }, + "events": [ + { + "uuid": "fb814bc8-f587-4ea9-a090-1bfaa866c74a", + "start": { + "$date": "2021-11-25T17:34:23.000Z" + }, + "end": { + "$date": "2021-11-25T19:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "caffbccd-ee08-4fe6-8387-12c505afe2f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-25T19:45:12.000Z" + }, + "end": { + "$date": "2021-11-25T19:48:14.000Z" + }, + "events": [ + { + "uuid": "c73135d8-4ed6-41fb-9ba5-6dd9efc5ff0e", + "start": { + "$date": "2021-11-25T19:45:12.000Z" + }, + "end": { + "$date": "2021-11-25T19:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f87ebff2-c87c-4116-b386-a1e37ce4a744", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-25T19:48:49.000Z" + }, + "end": { + "$date": "2021-11-25T20:01:47.000Z" + }, + "events": [ + { + "uuid": "bf876b80-5f63-4aae-a2de-8164108d6d96", + "start": { + "$date": "2021-11-25T19:48:49.000Z" + }, + "end": { + "$date": "2021-11-25T20:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "85b30e61-517e-40c6-9133-1f54040a83e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T21:23:08.000Z" + }, + "end": { + "$date": "2021-11-25T21:48:50.000Z" + }, + "events": [ + { + "uuid": "8e00acc9-a530-473f-aa05-22f7809e88a8", + "start": { + "$date": "2021-11-25T21:23:08.000Z" + }, + "end": { + "$date": "2021-11-25T21:48:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efced52d-af1e-4939-ae88-c5e89b502afe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T21:52:44.000Z" + }, + "end": { + "$date": "2021-11-25T22:06:00.000Z" + }, + "events": [ + { + "uuid": "ea021483-b38d-4b69-8457-d908f42ad300", + "start": { + "$date": "2021-11-25T21:52:44.000Z" + }, + "end": { + "$date": "2021-11-25T22:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbedf4d9-4dc2-4b44-b7cb-68ace1f14103", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T22:07:15.000Z" + }, + "end": { + "$date": "2021-11-25T22:27:41.000Z" + }, + "events": [ + { + "uuid": "2e7754f4-941c-4513-83b2-e064ca1d5c02", + "start": { + "$date": "2021-11-25T22:07:15.000Z" + }, + "end": { + "$date": "2021-11-25T22:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8d298572-ca15-468e-b13f-2f9cc3487372", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-25T22:52:29.000Z" + }, + "end": { + "$date": "2021-11-25T23:53:17.000Z" + }, + "events": [ + { + "uuid": "234e05a4-8e45-42c2-bf28-5c1ed3cfd901", + "start": { + "$date": "2021-11-25T22:52:29.000Z" + }, + "end": { + "$date": "2021-11-25T23:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fc13c29f-d763-49d5-b834-ef495aef3d3e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-26T01:02:24.000Z" + }, + "end": { + "$date": "2021-11-26T05:20:30.000Z" + }, + "events": [ + { + "uuid": "f36b02c4-07cb-415d-8afd-c8e62f8a3c0c", + "start": { + "$date": "2021-11-26T01:02:24.000Z" + }, + "end": { + "$date": "2021-11-26T05:20:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f801601a-f0ad-49c2-a9b2-03a5b3895439", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-26T01:02:23.000Z" + }, + "end": { + "$date": "2021-11-26T02:58:16.000Z" + }, + "events": [ + { + "uuid": "12763d3b-feb9-4c8c-bee8-bf0e3837e6dd", + "start": { + "$date": "2021-11-26T01:02:23.000Z" + }, + "end": { + "$date": "2021-11-26T02:58:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "79514ee1-ace2-450d-8110-5be767fbd295", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-26T01:51:23.000Z" + }, + "end": { + "$date": "2021-11-26T03:40:37.000Z" + }, + "events": [ + { + "uuid": "42c59de4-db29-4d2c-8225-c941cd0ff609", + "start": { + "$date": "2021-11-26T01:51:23.000Z" + }, + "end": { + "$date": "2021-11-26T02:23:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1fc9952-4cc6-4308-b355-f19a78a333b7", + "start": { + "$date": "2021-11-26T02:23:23.000Z" + }, + "end": { + "$date": "2021-11-26T02:28:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03ffecbc-1c24-4302-b738-8f759866d46c", + "start": { + "$date": "2021-11-26T02:28:23.000Z" + }, + "end": { + "$date": "2021-11-26T03:40:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c09134d1-b4a8-4cad-8f5a-0823f45c3277", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-26T01:55:56.000Z" + }, + "end": { + "$date": "2021-11-26T02:54:18.000Z" + }, + "events": [ + { + "uuid": "6a1151fe-6d87-4afb-a076-cc47732b396b", + "start": { + "$date": "2021-11-26T01:55:56.000Z" + }, + "end": { + "$date": "2021-11-26T02:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54b873b0-6722-41ff-b2bb-e57169b33007", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T02:33:03.000Z" + }, + "end": { + "$date": "2021-11-26T03:07:45.000Z" + }, + "events": [ + { + "uuid": "0b3ae423-f017-46e3-81de-bc67c867d43a", + "start": { + "$date": "2021-11-26T02:33:03.000Z" + }, + "end": { + "$date": "2021-11-26T03:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "918a4574-964b-4ca0-94b5-b1c1749b57fb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-26T02:56:47.000Z" + }, + "end": { + "$date": "2021-11-26T03:40:15.000Z" + }, + "events": [ + { + "uuid": "1c834676-b946-48d2-823c-aaa5d751e3dc", + "start": { + "$date": "2021-11-26T02:56:47.000Z" + }, + "end": { + "$date": "2021-11-26T03:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6bec6b6d-a83a-4679-802a-f0e3f54ff170", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-26T02:58:41.000Z" + }, + "end": { + "$date": "2021-11-26T06:54:48.000Z" + }, + "events": [ + { + "uuid": "5d06a6fe-a5a2-494b-be13-dbab28bf429a", + "start": { + "$date": "2021-11-26T02:58:41.000Z" + }, + "end": { + "$date": "2021-11-26T06:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9480363b-6e82-4bcd-9c53-a414b45a47df", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T03:26:17.000Z" + }, + "end": { + "$date": "2021-11-26T03:59:54.000Z" + }, + "events": [ + { + "uuid": "8e95f4b9-05cb-4ef4-ab52-1b7480a9ec82", + "start": { + "$date": "2021-11-26T03:26:17.000Z" + }, + "end": { + "$date": "2021-11-26T03:37:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3011838-6872-4b6d-bb2a-9a19dbff9e39", + "start": { + "$date": "2021-11-26T03:37:17.000Z" + }, + "end": { + "$date": "2021-11-26T03:44:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c3b1180-5900-4ab8-b9a5-332b1ae825ae", + "start": { + "$date": "2021-11-26T03:44:17.000Z" + }, + "end": { + "$date": "2021-11-26T03:59:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8e9c0fc0-24ba-4bf1-ac7e-d58aa11d19c3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-26T03:40:25.000Z" + }, + "end": { + "$date": "2021-11-26T06:55:19.000Z" + }, + "events": [ + { + "uuid": "7d7b96ca-8b31-49f7-bda2-d1e80d7dfd5e", + "start": { + "$date": "2021-11-26T03:40:25.000Z" + }, + "end": { + "$date": "2021-11-26T06:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6ea9fad0-b4b4-4b41-ad86-b0fcc39ea161", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-26T03:40:47.000Z" + }, + "end": { + "$date": "2021-11-26T03:58:28.000Z" + }, + "events": [ + { + "uuid": "6f77b9a6-a4d5-430a-8a84-ce7c6f1134a5", + "start": { + "$date": "2021-11-26T03:40:47.000Z" + }, + "end": { + "$date": "2021-11-26T03:58:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "127f5447-7732-47d5-8910-7d92cddb48da", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-26T03:59:39.000Z" + }, + "end": { + "$date": "2021-11-26T05:30:43.000Z" + }, + "events": [ + { + "uuid": "f291095a-bb50-446b-9a71-ed13096a9f0a", + "start": { + "$date": "2021-11-26T03:59:39.000Z" + }, + "end": { + "$date": "2021-11-26T05:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "669028bf-7e9b-45d9-abab-96f15e03d942", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T04:00:48.000Z" + }, + "end": { + "$date": "2021-11-26T04:36:51.000Z" + }, + "events": [ + { + "uuid": "869e13e9-4a54-4c6e-9417-a8cedc5f449d", + "start": { + "$date": "2021-11-26T04:00:48.000Z" + }, + "end": { + "$date": "2021-11-26T04:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62d638d7-a126-44be-87ef-80565ceedc42", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T04:37:36.000Z" + }, + "end": { + "$date": "2021-11-26T05:16:38.000Z" + }, + "events": [ + { + "uuid": "63d671db-9a81-4b7d-81aa-070c0e4368a6", + "start": { + "$date": "2021-11-26T04:37:36.000Z" + }, + "end": { + "$date": "2021-11-26T05:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bbda22d-f7f0-4b9c-84d1-c0e743373cf1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-26T04:37:36.000Z" + }, + "end": { + "$date": "2021-11-26T05:16:50.000Z" + }, + "events": [ + { + "uuid": "0513d9b1-e81d-4066-a1fb-b07bb291765b", + "start": { + "$date": "2021-11-26T04:37:36.000Z" + }, + "end": { + "$date": "2021-11-26T05:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "dd6bd59b-7135-4542-933b-ca43b9b36965", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-26T04:38:27.000Z" + }, + "end": { + "$date": "2021-11-26T06:00:45.000Z" + }, + "events": [ + { + "uuid": "6fff5406-be01-4a37-a402-40731824ad77", + "start": { + "$date": "2021-11-26T04:38:27.000Z" + }, + "end": { + "$date": "2021-11-26T06:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ccc69e4d-f8f3-4504-8fc3-eda802bd2783", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-26T04:41:46.000Z" + }, + "end": { + "$date": "2021-11-26T06:54:49.000Z" + }, + "events": [ + { + "uuid": "d2111535-a033-4de2-9c70-7bfcb5c95d6c", + "start": { + "$date": "2021-11-26T04:41:46.000Z" + }, + "end": { + "$date": "2021-11-26T06:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fa57dd92-c19b-4e5d-b8cd-3b80b2f4e67b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-26T05:18:50.000Z" + }, + "end": { + "$date": "2021-11-26T05:23:35.000Z" + }, + "events": [ + { + "uuid": "8c01c26d-0093-4fa7-9429-c2dfb6cc6d32", + "start": { + "$date": "2021-11-26T05:18:50.000Z" + }, + "end": { + "$date": "2021-11-26T05:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dd9c8577-7882-427a-b773-dd7cb204b7bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-26T05:22:23.000Z" + }, + "end": { + "$date": "2021-11-26T06:55:11.000Z" + }, + "events": [ + { + "uuid": "47eabf2e-60bc-482e-b5ce-3155f547981e", + "start": { + "$date": "2021-11-26T05:22:23.000Z" + }, + "end": { + "$date": "2021-11-26T06:55:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d0e9235e-bdd7-4d0f-a5f5-b338711c4bb7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-26T05:23:45.000Z" + }, + "end": { + "$date": "2021-11-26T05:32:09.000Z" + }, + "events": [ + { + "uuid": "941ead9b-d5c1-496d-b443-6882321d5b16", + "start": { + "$date": "2021-11-26T05:23:45.000Z" + }, + "end": { + "$date": "2021-11-26T05:32:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4e0f1b4-116a-46fb-ac34-ca35f2c24791", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T05:29:49.000Z" + }, + "end": { + "$date": "2021-11-26T06:14:42.000Z" + }, + "events": [ + { + "uuid": "1105250f-dad0-4640-ac04-7fc6da9864ef", + "start": { + "$date": "2021-11-26T05:29:49.000Z" + }, + "end": { + "$date": "2021-11-26T06:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "711418cb-7480-41ce-87ea-09eb6a8772fa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-26T05:36:46.000Z" + }, + "end": { + "$date": "2021-11-26T06:15:20.000Z" + }, + "events": [ + { + "uuid": "7dfc0c7c-fdab-4159-a31b-1cabf8de6e77", + "start": { + "$date": "2021-11-26T05:36:46.000Z" + }, + "end": { + "$date": "2021-11-26T06:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "9231bf66-947a-44fe-b509-1c756403f38a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-26T05:37:46.000Z" + }, + "end": { + "$date": "2021-11-26T06:03:35.000Z" + }, + "events": [ + { + "uuid": "7579844e-783b-4700-9f59-1bbaf7d98ed4", + "start": { + "$date": "2021-11-26T05:37:46.000Z" + }, + "end": { + "$date": "2021-11-26T06:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "086ea8bf-7512-4728-b892-f06568eefafd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-26T06:00:03.000Z" + }, + "end": { + "$date": "2021-11-26T06:39:35.000Z" + }, + "events": [ + { + "uuid": "5ed2aa66-467e-459b-bb09-fff127d5bde5", + "start": { + "$date": "2021-11-26T06:00:03.000Z" + }, + "end": { + "$date": "2021-11-26T06:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cb421f80-03f2-4001-991c-82e54e61e260", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-26T06:40:15.000Z" + }, + "end": { + "$date": "2021-11-26T08:31:52.000Z" + }, + "events": [ + { + "uuid": "6a5c5786-4a06-4a06-a024-cef2cc57e8b1", + "start": { + "$date": "2021-11-26T06:40:15.000Z" + }, + "end": { + "$date": "2021-11-26T08:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fb53b2d2-bb9a-4558-ade5-340914e21335", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-26T07:03:51.000Z" + }, + "end": { + "$date": "2021-11-26T07:15:25.000Z" + }, + "events": [ + { + "uuid": "47e606f1-5221-40ab-8317-5cc962effca6", + "start": { + "$date": "2021-11-26T07:03:51.000Z" + }, + "end": { + "$date": "2021-11-26T07:15:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab52849b-8e74-4d37-b33a-372991a3a389", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T17:05:06.000Z" + }, + "end": { + "$date": "2021-11-26T17:28:24.000Z" + }, + "events": [ + { + "uuid": "442ce4e6-f0ee-4ad5-b544-91931d175779", + "start": { + "$date": "2021-11-26T17:05:06.000Z" + }, + "end": { + "$date": "2021-11-26T17:28:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1de10c19-e0d7-4896-b548-b628e67f4016", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-26T17:35:47.000Z" + }, + "end": { + "$date": "2021-11-26T18:56:14.000Z" + }, + "events": [ + { + "uuid": "3ff80a67-cb0a-4aa8-8d59-c8d0b48f931d", + "start": { + "$date": "2021-11-26T17:35:47.000Z" + }, + "end": { + "$date": "2021-11-26T18:35:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7cc9416-88f4-4591-9ce3-5dfc5b7de480", + "start": { + "$date": "2021-11-26T18:35:47.000Z" + }, + "end": { + "$date": "2021-11-26T18:39:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "983f5495-fa1b-4426-8c98-eb3eed96ea97", + "start": { + "$date": "2021-11-26T18:39:47.000Z" + }, + "end": { + "$date": "2021-11-26T18:50:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b78745eb-e8e8-4966-b09a-496988c93780", + "start": { + "$date": "2021-11-26T18:50:47.000Z" + }, + "end": { + "$date": "2021-11-26T18:56:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb1f3f99-61e7-4078-bd54-68f5190e0d41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T17:48:29.000Z" + }, + "end": { + "$date": "2021-11-26T18:09:15.000Z" + }, + "events": [ + { + "uuid": "2a1d9628-65c5-4c29-b5ca-50cb7f87b325", + "start": { + "$date": "2021-11-26T17:48:29.000Z" + }, + "end": { + "$date": "2021-11-26T18:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "01c3f5b9-8ce5-452d-9388-40853a536688", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T18:09:50.000Z" + }, + "end": { + "$date": "2021-11-26T19:17:03.000Z" + }, + "events": [ + { + "uuid": "25a5f0d7-9cbc-416f-8086-4c345bcef872", + "start": { + "$date": "2021-11-26T18:09:50.000Z" + }, + "end": { + "$date": "2021-11-26T19:17:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4af40f6b-8fed-461f-b6b4-ad20784a205e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T19:18:03.000Z" + }, + "end": { + "$date": "2021-11-26T19:35:04.000Z" + }, + "events": [ + { + "uuid": "3fdb3b57-082b-4019-ab6d-c7202210ed6a", + "start": { + "$date": "2021-11-26T19:18:03.000Z" + }, + "end": { + "$date": "2021-11-26T19:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9727f1a5-7cf0-43ba-9f20-af0cd9fce586", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T19:37:04.000Z" + }, + "end": { + "$date": "2021-11-26T19:49:45.000Z" + }, + "events": [ + { + "uuid": "f6531f92-9832-4f3d-af89-f6da2d451eb2", + "start": { + "$date": "2021-11-26T19:37:04.000Z" + }, + "end": { + "$date": "2021-11-26T19:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "e6ad561f-a264-4a20-a63e-ea8c22da6fa7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-26T20:08:16.000Z" + }, + "end": { + "$date": "2021-11-26T20:12:38.000Z" + }, + "events": [ + { + "uuid": "84855393-e3e2-4301-a1d1-4578cbe3c8e6", + "start": { + "$date": "2021-11-26T20:08:16.000Z" + }, + "end": { + "$date": "2021-11-26T20:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2bf44cb1-7156-4698-aef9-6f94ea92afbe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-11-26T20:13:56.000Z" + }, + "end": { + "$date": "2021-11-26T21:14:50.000Z" + }, + "events": [ + { + "uuid": "5a65d482-9cde-49bd-a646-f9ccc71a8f9c", + "start": { + "$date": "2021-11-26T20:13:56.000Z" + }, + "end": { + "$date": "2021-11-26T21:14:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b881334-3cb7-48f9-8cfc-c5681e548d12", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T21:24:23.000Z" + }, + "end": { + "$date": "2021-11-26T21:41:50.000Z" + }, + "events": [ + { + "uuid": "1528eff6-9b24-4c5b-8ac5-edab9a22648d", + "start": { + "$date": "2021-11-26T21:24:23.000Z" + }, + "end": { + "$date": "2021-11-26T21:41:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e4ac0c3-fb08-47b6-a4dc-a4a8b0ab9917", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T21:43:04.000Z" + }, + "end": { + "$date": "2021-11-26T22:02:26.000Z" + }, + "events": [ + { + "uuid": "50e9892f-be31-4fc8-b1a5-ad2af87228f6", + "start": { + "$date": "2021-11-26T21:43:04.000Z" + }, + "end": { + "$date": "2021-11-26T22:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb36dca8-b7cd-44cf-a859-2b9a6bc3962a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T22:22:26.000Z" + }, + "end": { + "$date": "2021-11-26T22:43:37.000Z" + }, + "events": [ + { + "uuid": "797cb178-e260-4545-aae5-116226a99db4", + "start": { + "$date": "2021-11-26T22:22:26.000Z" + }, + "end": { + "$date": "2021-11-26T22:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5bb34d9-9790-4ffc-a5cf-6df2319cffa1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-26T22:35:53.000Z" + }, + "end": { + "$date": "2021-11-26T22:58:51.000Z" + }, + "events": [ + { + "uuid": "e7c56a4f-c777-41b6-a5cc-685fdde811bb", + "start": { + "$date": "2021-11-26T22:35:53.000Z" + }, + "end": { + "$date": "2021-11-26T22:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf935a91-269c-4d5c-a878-83da403e52c5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T22:48:42.000Z" + }, + "end": { + "$date": "2021-11-26T23:01:58.000Z" + }, + "events": [ + { + "uuid": "0676580a-7518-4662-bf44-bfeffa9f952f", + "start": { + "$date": "2021-11-26T22:48:42.000Z" + }, + "end": { + "$date": "2021-11-26T23:01:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f31337a-7ee4-4e4c-85a3-a1fe52301668", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-26T23:10:43.000Z" + }, + "end": { + "$date": "2021-11-26T23:24:49.000Z" + }, + "events": [ + { + "uuid": "520a98ad-5093-4319-8598-a77f09afc32e", + "start": { + "$date": "2021-11-26T23:10:43.000Z" + }, + "end": { + "$date": "2021-11-26T23:24:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "34add2bc-66ef-4d4c-be28-ad97ce95e09c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T00:01:23.000Z" + }, + "end": { + "$date": "2021-11-27T00:39:07.000Z" + }, + "events": [ + { + "uuid": "991f04c5-ae2f-42fa-9272-ca11f22f29ea", + "start": { + "$date": "2021-11-27T00:01:23.000Z" + }, + "end": { + "$date": "2021-11-27T00:39:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34bfbe74-3317-474c-9bc3-b450a71e54e3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-27T01:48:09.000Z" + }, + "end": { + "$date": "2021-11-27T02:12:52.000Z" + }, + "events": [ + { + "uuid": "7b20ff1e-2078-4ad7-97dc-2602cd3f978a", + "start": { + "$date": "2021-11-27T01:48:09.000Z" + }, + "end": { + "$date": "2021-11-27T02:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76e744ce-f5e4-48e0-9f1b-707d055883c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-27T01:48:20.000Z" + }, + "end": { + "$date": "2021-11-27T02:12:55.000Z" + }, + "events": [ + { + "uuid": "2dcf22b2-a944-499f-9565-29830410c0d4", + "start": { + "$date": "2021-11-27T01:48:20.000Z" + }, + "end": { + "$date": "2021-11-27T02:12:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0e63b53-ca78-4c64-9289-75e52f9e9b6b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-27T02:14:11.000Z" + }, + "end": { + "$date": "2021-11-27T02:54:09.000Z" + }, + "events": [ + { + "uuid": "f30eade9-c970-441f-b211-8c80d253f76f", + "start": { + "$date": "2021-11-27T02:14:11.000Z" + }, + "end": { + "$date": "2021-11-27T02:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f8ef117-8057-460f-8383-58b969ed2ba5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-27T02:14:21.000Z" + }, + "end": { + "$date": "2021-11-27T02:54:14.000Z" + }, + "events": [ + { + "uuid": "61f1b67b-2d90-4974-923c-d0bf7dc4e180", + "start": { + "$date": "2021-11-27T02:14:21.000Z" + }, + "end": { + "$date": "2021-11-27T02:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dfbe8b2-a23f-4ae1-ac3a-91ab56acbecb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T02:22:39.000Z" + }, + "end": { + "$date": "2021-11-27T02:47:17.000Z" + }, + "events": [ + { + "uuid": "5a66789c-f418-47b4-831c-bd031c122eeb", + "start": { + "$date": "2021-11-27T02:22:39.000Z" + }, + "end": { + "$date": "2021-11-27T02:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3614ebf0-bc22-45c3-ba5d-8bdc1c8e576e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-27T02:23:47.000Z" + }, + "end": { + "$date": "2021-11-27T04:59:51.000Z" + }, + "events": [ + { + "uuid": "f01666eb-f9e3-44ba-9895-c12fd935eebd", + "start": { + "$date": "2021-11-27T02:23:47.000Z" + }, + "end": { + "$date": "2021-11-27T04:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41821e81-7357-4ff6-8e0a-35a985ba0c33", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T02:49:52.000Z" + }, + "end": { + "$date": "2021-11-27T03:12:16.000Z" + }, + "events": [ + { + "uuid": "a37078e2-957c-4c75-9532-f69f7b4aa476", + "start": { + "$date": "2021-11-27T02:49:52.000Z" + }, + "end": { + "$date": "2021-11-27T03:12:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4368db43-6170-4377-8f97-ac4ef8856a83", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-27T02:57:23.000Z" + }, + "end": { + "$date": "2021-11-27T03:36:26.000Z" + }, + "events": [ + { + "uuid": "b3d552ff-8de9-4dbf-abdb-4bc6bc429fad", + "start": { + "$date": "2021-11-27T02:57:23.000Z" + }, + "end": { + "$date": "2021-11-27T03:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eff003cc-dc2c-4f86-a06a-be23d6b2b74b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-27T02:57:25.000Z" + }, + "end": { + "$date": "2021-11-27T03:36:23.000Z" + }, + "events": [ + { + "uuid": "a5f8a5f2-b10f-4202-9246-ddc69dcd5aa2", + "start": { + "$date": "2021-11-27T02:57:25.000Z" + }, + "end": { + "$date": "2021-11-27T03:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69529ce6-e8d6-4e19-a14e-81f03e32a8b9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T03:14:30.000Z" + }, + "end": { + "$date": "2021-11-27T03:33:06.000Z" + }, + "events": [ + { + "uuid": "bd8bff05-91dc-4bc3-83ff-fa92f71fb791", + "start": { + "$date": "2021-11-27T03:14:30.000Z" + }, + "end": { + "$date": "2021-11-27T03:33:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5b93721-e58d-4331-af2a-745561517be3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T03:35:22.000Z" + }, + "end": { + "$date": "2021-11-27T03:48:11.000Z" + }, + "events": [ + { + "uuid": "e2ce07d6-0b90-4a71-a538-ae9d97201204", + "start": { + "$date": "2021-11-27T03:35:22.000Z" + }, + "end": { + "$date": "2021-11-27T03:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18a16415-e8b6-4716-ab6f-a97bae02716a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-27T03:47:22.000Z" + }, + "end": { + "$date": "2021-11-27T04:53:19.000Z" + }, + "events": [ + { + "uuid": "cfd3cd65-3c34-451b-a6e1-fbbf0c64536b", + "start": { + "$date": "2021-11-27T03:47:22.000Z" + }, + "end": { + "$date": "2021-11-27T04:53:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a92196c-47ea-42fc-a745-aebb819a55b4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T03:51:54.000Z" + }, + "end": { + "$date": "2021-11-27T04:12:51.000Z" + }, + "events": [ + { + "uuid": "a7577851-757a-49a1-961b-291b32acb819", + "start": { + "$date": "2021-11-27T03:51:54.000Z" + }, + "end": { + "$date": "2021-11-27T04:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21efc564-a8df-4e57-8a25-1e477faae9f4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-11-27T04:15:00.000Z" + }, + "end": { + "$date": "2021-11-27T04:15:03.000Z" + }, + "events": [ + { + "uuid": "b433fb6f-00d5-4bc6-9493-739d43a4a2cd", + "start": { + "$date": "2021-11-27T04:15:00.000Z" + }, + "end": { + "$date": "2021-11-27T04:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c9761e7e-0ccd-478d-b4f4-c28aeca9c5f5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-27T04:10:15.000Z" + }, + "end": { + "$date": "2021-11-27T07:39:07.000Z" + }, + "events": [ + { + "uuid": "4967d7a7-6a1b-4dda-ac8d-a739482e0f08", + "start": { + "$date": "2021-11-27T04:10:15.000Z" + }, + "end": { + "$date": "2021-11-27T07:39:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "a9cdade5-da20-4d19-8bf6-9699fc2ab9af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-27T05:49:26.000Z" + }, + "end": { + "$date": "2021-11-27T07:22:23.000Z" + }, + "events": [ + { + "uuid": "e2dcd570-c7a3-461e-ae0b-0e243bc1f3b7", + "start": { + "$date": "2021-11-27T05:49:26.000Z" + }, + "end": { + "$date": "2021-11-27T07:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6aebc149-f77b-4028-a0d7-9208aaeaeb96", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-27T07:40:28.000Z" + }, + "end": { + "$date": "2021-11-27T08:05:19.000Z" + }, + "events": [ + { + "uuid": "7c82819c-2079-4bba-a7da-c22972c8c412", + "start": { + "$date": "2021-11-27T07:40:28.000Z" + }, + "end": { + "$date": "2021-11-27T08:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acf4da2e-835b-4ce2-a292-f2649a7abae2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-27T16:45:41.000Z" + }, + "end": { + "$date": "2021-11-27T17:13:34.000Z" + }, + "events": [ + { + "uuid": "cbb22ede-0e5c-4332-843a-8adbc8ca2198", + "start": { + "$date": "2021-11-27T16:45:41.000Z" + }, + "end": { + "$date": "2021-11-27T17:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e971bdb6-35f0-4d1f-92da-5ae10ad21f66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-27T17:59:18.000Z" + }, + "end": { + "$date": "2021-11-27T18:29:44.000Z" + }, + "events": [ + { + "uuid": "736be589-bac0-46ab-9dfd-0ee2966c979c", + "start": { + "$date": "2021-11-27T17:59:18.000Z" + }, + "end": { + "$date": "2021-11-27T18:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c6ba31f-2c8f-4b2f-bb51-709f7e8b84d6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-27T18:31:34.000Z" + }, + "end": { + "$date": "2021-11-27T18:53:30.000Z" + }, + "events": [ + { + "uuid": "ab30a489-5578-46aa-8d38-6411a261ac1e", + "start": { + "$date": "2021-11-27T18:31:34.000Z" + }, + "end": { + "$date": "2021-11-27T18:53:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7d975921-61d9-47a3-b4f5-a50457b260f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-27T18:49:41.000Z" + }, + "end": { + "$date": "2021-11-27T19:26:41.000Z" + }, + "events": [ + { + "uuid": "b633c423-3f34-4e53-9f65-a2d60f256825", + "start": { + "$date": "2021-11-27T18:49:41.000Z" + }, + "end": { + "$date": "2021-11-27T19:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4908bd28-fff9-4547-ac4b-6e20663c7df8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-27T23:40:41.000Z" + }, + "end": { + "$date": "2021-11-28T02:20:19.000Z" + }, + "events": [ + { + "uuid": "6591a025-9507-42e8-a659-28ec7ddd66ef", + "start": { + "$date": "2021-11-27T23:40:41.000Z" + }, + "end": { + "$date": "2021-11-28T02:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4cb15fd-a43a-4bea-9106-7910b53fd6ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T00:37:33.000Z" + }, + "end": { + "$date": "2021-11-28T01:00:37.000Z" + }, + "events": [ + { + "uuid": "20cad767-a2d8-4f67-b81e-81ac73741ca7", + "start": { + "$date": "2021-11-28T00:37:33.000Z" + }, + "end": { + "$date": "2021-11-28T01:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d8eea35-d239-4f16-8add-bb38d17ac7a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T00:38:40.000Z" + }, + "end": { + "$date": "2021-11-28T01:00:42.000Z" + }, + "events": [ + { + "uuid": "829cadb0-b927-4853-8e1b-b4ecef2733a6", + "start": { + "$date": "2021-11-28T00:38:40.000Z" + }, + "end": { + "$date": "2021-11-28T01:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b8a316df-5fbd-4068-967a-e1acb50df0f8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-28T00:43:21.000Z" + }, + "end": { + "$date": "2021-11-28T01:35:36.000Z" + }, + "events": [ + { + "uuid": "90e2fdc8-1955-4e7c-909e-813d41c683d3", + "start": { + "$date": "2021-11-28T00:43:21.000Z" + }, + "end": { + "$date": "2021-11-28T01:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "fe83b573-df3a-4d7b-9f5b-fe179574a0ad", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-28T01:35:58.000Z" + }, + "end": { + "$date": "2021-11-28T01:45:42.000Z" + }, + "events": [ + { + "uuid": "1167fa3e-8657-454c-afeb-f50d0c66a791", + "start": { + "$date": "2021-11-28T01:35:58.000Z" + }, + "end": { + "$date": "2021-11-28T01:45:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3f853956-1005-4ff1-81dd-926956830250", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-28T01:48:25.000Z" + }, + "end": { + "$date": "2021-11-28T01:57:05.000Z" + }, + "events": [ + { + "uuid": "2f230b68-4ef1-4870-b89e-39fa2350e948", + "start": { + "$date": "2021-11-28T01:48:25.000Z" + }, + "end": { + "$date": "2021-11-28T01:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fbf73334-7f0b-466d-b9bc-b0c7ed277308", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-28T02:06:53.000Z" + }, + "end": { + "$date": "2021-11-28T02:37:32.000Z" + }, + "events": [ + { + "uuid": "25585f33-9080-4526-8425-0157b9003b40", + "start": { + "$date": "2021-11-28T02:06:53.000Z" + }, + "end": { + "$date": "2021-11-28T02:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d8d25771-2d73-44c6-9b34-3f69c8d7a7b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T02:17:01.000Z" + }, + "end": { + "$date": "2021-11-28T02:37:29.000Z" + }, + "events": [ + { + "uuid": "798e7b62-d1c9-41ea-be32-736e067e8755", + "start": { + "$date": "2021-11-28T02:17:01.000Z" + }, + "end": { + "$date": "2021-11-28T02:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56293768-71a1-4d31-9b00-b0c6525e9d2a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T03:09:06.000Z" + }, + "end": { + "$date": "2021-11-28T03:45:54.000Z" + }, + "events": [ + { + "uuid": "8994bc20-c5c2-4afa-86f5-add5bd9c7a87", + "start": { + "$date": "2021-11-28T03:09:06.000Z" + }, + "end": { + "$date": "2021-11-28T03:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "324bf192-bafc-4c90-9801-1a5f81e6944b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-28T03:18:52.000Z" + }, + "end": { + "$date": "2021-11-28T04:20:58.000Z" + }, + "events": [ + { + "uuid": "134a1699-d2bc-485c-a995-504d3bba9d92", + "start": { + "$date": "2021-11-28T03:18:52.000Z" + }, + "end": { + "$date": "2021-11-28T04:20:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f45538ef-ff11-4a99-a6cc-dc3ac591fab9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T03:30:12.000Z" + }, + "end": { + "$date": "2021-11-28T04:14:34.000Z" + }, + "events": [ + { + "uuid": "754fde95-6c4b-4c3d-812b-99d44f02907e", + "start": { + "$date": "2021-11-28T03:30:12.000Z" + }, + "end": { + "$date": "2021-11-28T04:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ce1f11d5-7007-467d-8b04-9bc6e3d93a2e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T04:05:58.000Z" + }, + "end": { + "$date": "2021-11-28T04:21:32.000Z" + }, + "events": [ + { + "uuid": "6162e5c8-b0c7-49fb-acd7-87b55d723f52", + "start": { + "$date": "2021-11-28T04:05:58.000Z" + }, + "end": { + "$date": "2021-11-28T04:21:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bf0684d6-9e8e-4376-a24b-5bc83b33f361", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T04:22:03.000Z" + }, + "end": { + "$date": "2021-11-28T04:32:25.000Z" + }, + "events": [ + { + "uuid": "99a62d6d-78c5-4437-8482-e4034f4d7521", + "start": { + "$date": "2021-11-28T04:22:03.000Z" + }, + "end": { + "$date": "2021-11-28T04:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "65845660-b873-4ce5-98ad-b9ba5c8f75c5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T05:29:45.000Z" + }, + "end": { + "$date": "2021-11-28T05:35:55.000Z" + }, + "events": [ + { + "uuid": "4516b366-2dee-4e6a-9388-0972e4022f2d", + "start": { + "$date": "2021-11-28T05:29:45.000Z" + }, + "end": { + "$date": "2021-11-28T05:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "69dd79b1-497c-47ad-9119-8f936a37fe30", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-28T05:30:14.000Z" + }, + "end": { + "$date": "2021-11-28T07:37:53.000Z" + }, + "events": [ + { + "uuid": "bbd47a01-db17-436b-8bce-958447fe06a9", + "start": { + "$date": "2021-11-28T05:30:14.000Z" + }, + "end": { + "$date": "2021-11-28T07:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7105f44b-a773-4a55-805e-baafddab605d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T05:36:20.000Z" + }, + "end": { + "$date": "2021-11-28T06:10:43.000Z" + }, + "events": [ + { + "uuid": "e4953658-7c28-4329-9779-218d7ad775e9", + "start": { + "$date": "2021-11-28T05:36:20.000Z" + }, + "end": { + "$date": "2021-11-28T06:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "53631e38-24bb-466a-9582-e546ca3df5ab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T05:36:47.000Z" + }, + "end": { + "$date": "2021-11-28T06:51:02.000Z" + }, + "events": [ + { + "uuid": "3fbfbe2c-21df-41c3-821a-f5ed696c2ea2", + "start": { + "$date": "2021-11-28T05:36:47.000Z" + }, + "end": { + "$date": "2021-11-28T06:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c0fd11f9-da08-4de5-8a1a-7e6c5169466b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T02:46:44.000Z" + }, + "end": { + "$date": "2021-11-28T05:51:40.000Z" + }, + "events": [ + { + "uuid": "050b5ed4-b804-4a01-8ced-f86ce9189acb", + "start": { + "$date": "2021-11-28T02:46:44.000Z" + }, + "end": { + "$date": "2021-11-28T05:51:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3d23df10-2a86-48e0-b155-259ba2e2f70f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-28T05:55:11.000Z" + }, + "end": { + "$date": "2021-11-28T07:38:06.000Z" + }, + "events": [ + { + "uuid": "bc91c938-686c-4a4e-acbc-a7979864ba7e", + "start": { + "$date": "2021-11-28T05:55:11.000Z" + }, + "end": { + "$date": "2021-11-28T06:27:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9f15d9b0-ca86-4c46-907c-382c6f91bab8", + "start": { + "$date": "2021-11-28T06:27:11.000Z" + }, + "end": { + "$date": "2021-11-28T06:28:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0aff0af9-339e-4215-9ff2-e998385c625c", + "start": { + "$date": "2021-11-28T06:28:11.000Z" + }, + "end": { + "$date": "2021-11-28T07:38:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "017c6a50-3b58-4c3b-ae10-4a32a5d1f36c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T05:58:43.000Z" + }, + "end": { + "$date": "2021-11-28T06:17:20.000Z" + }, + "events": [ + { + "uuid": "3b7fdeb4-c2e0-4007-b668-9cc8a938adc6", + "start": { + "$date": "2021-11-28T05:58:43.000Z" + }, + "end": { + "$date": "2021-11-28T06:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "76530d90-cdb6-4930-96c1-89e9a887a2a7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-28T06:08:27.000Z" + }, + "end": { + "$date": "2021-11-28T07:31:10.000Z" + }, + "events": [ + { + "uuid": "12aebe29-bcd8-4636-94b7-e59716134bf9", + "start": { + "$date": "2021-11-28T06:08:27.000Z" + }, + "end": { + "$date": "2021-11-28T07:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "ae959278-dd80-4c0f-8a7e-c274fbcd9262", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T06:19:41.000Z" + }, + "end": { + "$date": "2021-11-28T06:53:37.000Z" + }, + "events": [ + { + "uuid": "b7fa9fb9-0efc-4f45-a83e-64b75943a979", + "start": { + "$date": "2021-11-28T06:19:41.000Z" + }, + "end": { + "$date": "2021-11-28T06:53:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7668b5a0-84da-4a3f-8590-63011661a953", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T06:54:18.000Z" + }, + "end": { + "$date": "2021-11-28T07:36:40.000Z" + }, + "events": [ + { + "uuid": "3cf716a4-6161-4866-9b75-a5a5b03b743b", + "start": { + "$date": "2021-11-28T06:54:18.000Z" + }, + "end": { + "$date": "2021-11-28T07:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a0905dd8-c9e5-42e6-a785-b8a779711e47", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T07:03:36.000Z" + }, + "end": { + "$date": "2021-11-28T07:18:34.000Z" + }, + "events": [ + { + "uuid": "2ed09656-4e6d-47ea-a4c6-4a07bd34be77", + "start": { + "$date": "2021-11-28T07:03:36.000Z" + }, + "end": { + "$date": "2021-11-28T07:18:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4413d6cd-1a96-4472-8770-d6dc6f133ddd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T07:26:27.000Z" + }, + "end": { + "$date": "2021-11-28T07:37:55.000Z" + }, + "events": [ + { + "uuid": "e18b8135-4c63-47f0-85fd-82f32d0c1bc1", + "start": { + "$date": "2021-11-28T07:26:27.000Z" + }, + "end": { + "$date": "2021-11-28T07:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9fb61456-ba83-445c-93d6-af0f63af3f27", + "uuid": "73bcd331-0799-4bd4-a131-96fc9a30bcdb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T07:43:06.000Z" + }, + "end": { + "$date": "2021-11-28T07:45:31.000Z" + }, + "events": [ + { + "uuid": "5c95a161-60df-45fb-8621-ebb5c6ee0103", + "start": { + "$date": "2021-11-28T07:43:06.000Z" + }, + "end": { + "$date": "2021-11-28T07:45:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "71739c4d-63ae-424b-9b4f-219cff6d94a3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T07:46:01.000Z" + }, + "end": { + "$date": "2021-11-28T08:35:30.000Z" + }, + "events": [ + { + "uuid": "84efa63c-562f-440e-ac72-7701ad648ff4", + "start": { + "$date": "2021-11-28T07:46:01.000Z" + }, + "end": { + "$date": "2021-11-28T08:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebfc28c1-373b-4eb7-a9a6-0e04f5ccc542", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T08:31:51.000Z" + }, + "end": { + "$date": "2021-11-28T09:02:33.000Z" + }, + "events": [ + { + "uuid": "bef8f6ce-1378-4672-a30a-bbc243feb7b8", + "start": { + "$date": "2021-11-28T08:31:51.000Z" + }, + "end": { + "$date": "2021-11-28T09:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61c4b7e8-a324-4292-a1e5-2f2e05a461d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T09:05:03.000Z" + }, + "end": { + "$date": "2021-11-28T09:38:42.000Z" + }, + "events": [ + { + "uuid": "c00174ea-2f01-4e05-b321-e12a6933770a", + "start": { + "$date": "2021-11-28T09:05:03.000Z" + }, + "end": { + "$date": "2021-11-28T09:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "790c2b8f-edb4-4974-9ee3-e36b1f7be607", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-28T09:14:01.000Z" + }, + "end": { + "$date": "2021-11-28T11:25:33.000Z" + }, + "events": [ + { + "uuid": "4580fe79-14e3-4869-a125-c537a14d8746", + "start": { + "$date": "2021-11-28T09:14:01.000Z" + }, + "end": { + "$date": "2021-11-28T11:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1000a2dd-d0bc-4d3e-b3f9-10fff6bde5cc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T16:17:37.000Z" + }, + "end": { + "$date": "2021-11-28T16:57:38.000Z" + }, + "events": [ + { + "uuid": "377cd1cc-8b30-494d-b433-ae2e83b0c188", + "start": { + "$date": "2021-11-28T16:17:37.000Z" + }, + "end": { + "$date": "2021-11-28T16:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76ce353a-85c4-4411-8600-975c2eb09708", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T16:59:44.000Z" + }, + "end": { + "$date": "2021-11-28T17:20:09.000Z" + }, + "events": [ + { + "uuid": "d5467152-67ab-45de-8f00-8b7d07f7c221", + "start": { + "$date": "2021-11-28T16:59:44.000Z" + }, + "end": { + "$date": "2021-11-28T17:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e42049c-7f9f-4908-baaf-7645d15820d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T17:22:10.000Z" + }, + "end": { + "$date": "2021-11-28T17:54:30.000Z" + }, + "events": [ + { + "uuid": "6c1afb24-4c9a-44b7-972e-64ea8c8694c2", + "start": { + "$date": "2021-11-28T17:22:10.000Z" + }, + "end": { + "$date": "2021-11-28T17:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4048ef45-81ab-41f0-919c-cd5bd20353ac", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T18:48:24.000Z" + }, + "end": { + "$date": "2021-11-28T19:26:34.000Z" + }, + "events": [ + { + "uuid": "95c71295-20ea-43e2-ac7f-e8b8eebb9751", + "start": { + "$date": "2021-11-28T18:48:24.000Z" + }, + "end": { + "$date": "2021-11-28T18:59:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a432040a-524e-498c-a0b4-2240e0bb4245", + "start": { + "$date": "2021-11-28T18:59:24.000Z" + }, + "end": { + "$date": "2021-11-28T19:03:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "21d131ab-2a43-4fe5-8ca3-af07f2c0d60e", + "start": { + "$date": "2021-11-28T19:03:24.000Z" + }, + "end": { + "$date": "2021-11-28T19:26:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5ee527a-d428-4052-8902-cd9db7c151e7", + "start": { + "$date": "2021-11-28T19:26:24.000Z" + }, + "end": { + "$date": "2021-11-28T19:36:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0fba8106-b70c-4fe8-9f51-38748f28dfb1", + "start": { + "$date": "2021-11-28T19:36:24.000Z" + }, + "end": { + "$date": "2021-11-28T19:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "85da76c3-c222-41bc-b5c6-2ff630dfdeb3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T18:35:49.000Z" + }, + "end": { + "$date": "2021-11-28T18:38:29.000Z" + }, + "events": [ + { + "uuid": "8ba75611-85e3-4b63-ac25-6b974a91d945", + "start": { + "$date": "2021-11-28T18:35:49.000Z" + }, + "end": { + "$date": "2021-11-28T18:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "38ead9c7-5d0d-44f0-8d02-5df002d6c2ae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T19:26:04.000Z" + }, + "end": { + "$date": "2021-11-28T19:27:09.000Z" + }, + "events": [ + { + "uuid": "ef78721f-fbd2-4f17-88e2-2e0eaedf862d", + "start": { + "$date": "2021-11-28T19:26:04.000Z" + }, + "end": { + "$date": "2021-11-28T19:27:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb21f737-67a4-4b60-9fad-dca87b4037f1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-28T19:49:38.000Z" + }, + "end": { + "$date": "2021-11-28T20:30:19.000Z" + }, + "events": [ + { + "uuid": "453330cb-6a72-4e5d-b3cc-eb9cb5b0bec5", + "start": { + "$date": "2021-11-28T19:49:38.000Z" + }, + "end": { + "$date": "2021-11-28T20:30:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c995dde9-ddb1-420f-82c8-b9032e9d4880", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-28T20:36:47.000Z" + }, + "end": { + "$date": "2021-11-28T21:05:26.000Z" + }, + "events": [ + { + "uuid": "737877fc-a2b4-499f-a2a4-f40138ac07d2", + "start": { + "$date": "2021-11-28T20:36:47.000Z" + }, + "end": { + "$date": "2021-11-28T21:05:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dbe3dcb3-8895-40c2-93f8-fc62dc567644", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-28T21:03:46.000Z" + }, + "end": { + "$date": "2021-11-28T21:05:01.000Z" + }, + "events": [ + { + "uuid": "9a0fed1a-035a-4f48-882e-3256706479d4", + "start": { + "$date": "2021-11-28T21:03:46.000Z" + }, + "end": { + "$date": "2021-11-28T21:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dab02709-9222-4914-b477-a917718af6e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-28T23:07:20.000Z" + }, + "end": { + "$date": "2021-11-28T23:39:13.000Z" + }, + "events": [ + { + "uuid": "6768ba84-4eff-46f2-8203-7d897a6eead1", + "start": { + "$date": "2021-11-28T23:07:20.000Z" + }, + "end": { + "$date": "2021-11-28T23:08:20.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "7a77d048-6055-4929-9237-8c709c75ae92", + "start": { + "$date": "2021-11-28T23:08:20.000Z" + }, + "end": { + "$date": "2021-11-28T23:49:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "230354b0-387a-4fec-b0d5-e321f6b26da7", + "start": { + "$date": "2021-11-28T23:49:20.000Z" + }, + "end": { + "$date": "2021-11-29T00:12:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "585cf858-ffb9-421d-9ce6-d55510147142", + "start": { + "$date": "2021-11-29T00:12:20.000Z" + }, + "end": { + "$date": "2021-11-28T23:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "be20f486-f46e-446d-a359-53a3da8ee545", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T21:51:09.000Z" + }, + "end": { + "$date": "2021-11-28T22:11:11.000Z" + }, + "events": [ + { + "uuid": "e5d9c525-dbde-403d-8ce5-92f1249d246c", + "start": { + "$date": "2021-11-28T21:51:09.000Z" + }, + "end": { + "$date": "2021-11-28T22:11:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7161a6b2-6ff0-40e1-a029-69869ec3d29b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T22:17:00.000Z" + }, + "end": { + "$date": "2021-11-28T22:45:28.000Z" + }, + "events": [ + { + "uuid": "12773ed2-60e7-411e-8a82-cdf50289c8d1", + "start": { + "$date": "2021-11-28T22:17:00.000Z" + }, + "end": { + "$date": "2021-11-28T22:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a998e76d-0e79-4cd6-947b-39ec82b12fbf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T22:46:28.000Z" + }, + "end": { + "$date": "2021-11-28T23:13:08.000Z" + }, + "events": [ + { + "uuid": "18e01f79-be33-4de5-ab80-1c09428b21b4", + "start": { + "$date": "2021-11-28T22:46:28.000Z" + }, + "end": { + "$date": "2021-11-28T23:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6a1a83b-2bd6-4f79-8773-eeb701235b88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T23:07:16.000Z" + }, + "end": { + "$date": "2021-11-28T23:39:09.000Z" + }, + "events": [ + { + "uuid": "1bd9ed45-140b-4d27-9e70-f31119dcdf45", + "start": { + "$date": "2021-11-28T23:07:16.000Z" + }, + "end": { + "$date": "2021-11-28T23:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d30b3b40-fd68-4500-b68f-c542d536e158", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-28T23:39:39.000Z" + }, + "end": { + "$date": "2021-11-28T23:41:31.000Z" + }, + "events": [ + { + "uuid": "a21f020b-2cd0-4c50-8712-cbb7257cd201", + "start": { + "$date": "2021-11-28T23:39:39.000Z" + }, + "end": { + "$date": "2021-11-28T23:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b1e9d53-da08-4122-af23-65a3f7c2a775", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T23:40:10.000Z" + }, + "end": { + "$date": "2021-11-28T23:41:10.000Z" + }, + "events": [ + { + "uuid": "7eea8a69-43f2-4f65-bafe-8f598187fd98", + "start": { + "$date": "2021-11-28T23:40:10.000Z" + }, + "end": { + "$date": "2021-11-28T23:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05f20566-1aa4-499f-b453-79a1cf3f77f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-28T23:47:59.000Z" + }, + "end": { + "$date": "2021-11-29T00:08:07.000Z" + }, + "events": [ + { + "uuid": "385b986c-6efd-4d9d-b992-56f8d7d8cd4c", + "start": { + "$date": "2021-11-28T23:47:59.000Z" + }, + "end": { + "$date": "2021-11-29T00:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f3d2c15-65ec-4411-9cb5-2b5f229e6373", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-28T23:47:56.000Z" + }, + "end": { + "$date": "2021-11-29T00:08:05.000Z" + }, + "events": [ + { + "uuid": "50ead5d3-2a68-4428-82cd-33065daf7ac7", + "start": { + "$date": "2021-11-28T23:47:56.000Z" + }, + "end": { + "$date": "2021-11-29T00:08:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "dd70a203-c0f3-484f-ad09-25359bbf55a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-28T23:52:43.000Z" + }, + "end": { + "$date": "2021-11-29T00:33:40.000Z" + }, + "events": [ + { + "uuid": "6cd57c8b-8fe6-4493-b75b-f3e64a687290", + "start": { + "$date": "2021-11-28T23:52:43.000Z" + }, + "end": { + "$date": "2021-11-29T00:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f7d8c78-ade7-4486-8e0b-39204f796f84", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-29T00:11:11.000Z" + }, + "end": { + "$date": "2021-11-29T00:34:22.000Z" + }, + "events": [ + { + "uuid": "f59ac691-376a-41be-a49a-683f82194b12", + "start": { + "$date": "2021-11-29T00:11:11.000Z" + }, + "end": { + "$date": "2021-11-29T00:34:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0fbc756-f643-47fa-91a6-b7d06d78322e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T00:11:12.000Z" + }, + "end": { + "$date": "2021-11-29T00:34:26.000Z" + }, + "events": [ + { + "uuid": "ae1e56f6-5b02-4d22-ad01-2847304b2676", + "start": { + "$date": "2021-11-29T00:11:12.000Z" + }, + "end": { + "$date": "2021-11-29T00:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37b595fc-9a1b-40d7-a8bd-850cd3a96eb8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T00:40:43.000Z" + }, + "end": { + "$date": "2021-11-29T01:14:25.000Z" + }, + "events": [ + { + "uuid": "102c80d7-7142-45a1-a6e7-66acff959736", + "start": { + "$date": "2021-11-29T00:40:43.000Z" + }, + "end": { + "$date": "2021-11-29T01:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8f0c1b5b-edcb-4152-91de-b0566dfbbd0e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-29T00:57:19.000Z" + }, + "end": { + "$date": "2021-11-29T02:05:07.000Z" + }, + "events": [ + { + "uuid": "2b06d733-1f56-449f-92e7-a73f081d06b4", + "start": { + "$date": "2021-11-29T00:57:19.000Z" + }, + "end": { + "$date": "2021-11-29T02:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c0e3ec38-cf1e-4467-8b9c-caec9f00c21c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-29T01:06:44.000Z" + }, + "end": { + "$date": "2021-11-29T02:02:21.000Z" + }, + "events": [ + { + "uuid": "d896bb67-6e10-43f5-aafb-72bbf4845035", + "start": { + "$date": "2021-11-29T01:06:44.000Z" + }, + "end": { + "$date": "2021-11-29T02:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f8f7eb03-23aa-446a-b579-b352f441150c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-29T01:27:45.000Z" + }, + "end": { + "$date": "2021-11-29T02:58:25.000Z" + }, + "events": [ + { + "uuid": "d5a23477-ce62-44ef-84b2-bc33e4e3acb1", + "start": { + "$date": "2021-11-29T01:27:45.000Z" + }, + "end": { + "$date": "2021-11-29T02:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "89df5020-2ae8-462f-8b9b-dfcaa6f5a767", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-29T02:04:54.000Z" + }, + "end": { + "$date": "2021-11-29T02:07:04.000Z" + }, + "events": [ + { + "uuid": "665f9590-ce59-4c60-aaed-b3ef835131a7", + "start": { + "$date": "2021-11-29T02:04:54.000Z" + }, + "end": { + "$date": "2021-11-29T02:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "7d360ecc-e6b4-4dd1-a880-5daa1594fe1c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-29T02:24:39.000Z" + }, + "end": { + "$date": "2021-11-29T03:57:47.000Z" + }, + "events": [ + { + "uuid": "211a9ea8-e6ee-4a9f-a3c2-1936ba413e25", + "start": { + "$date": "2021-11-29T02:24:39.000Z" + }, + "end": { + "$date": "2021-11-29T03:57:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fa537594-cebe-43e9-8014-10e92c2c0bfe", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-29T02:59:58.000Z" + }, + "end": { + "$date": "2021-11-29T03:01:14.000Z" + }, + "events": [ + { + "uuid": "ce5c7d3f-a1d1-4baf-ac49-23d094b24dfb", + "start": { + "$date": "2021-11-29T02:59:58.000Z" + }, + "end": { + "$date": "2021-11-29T03:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "65635d09-5d09-4697-b430-8401b4f43c4f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-29T03:02:11.000Z" + }, + "end": { + "$date": "2021-11-29T04:59:44.000Z" + }, + "events": [ + { + "uuid": "e6844dfd-c9e7-45c2-a9c1-cdc69c124155", + "start": { + "$date": "2021-11-29T03:02:11.000Z" + }, + "end": { + "$date": "2021-11-29T04:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bf274d44-232d-457b-b77a-257c5e4aed2d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-29T03:56:36.000Z" + }, + "end": { + "$date": "2021-11-29T04:01:33.000Z" + }, + "events": [ + { + "uuid": "1bddff58-f794-4430-8d0f-8d6f7f484ba6", + "start": { + "$date": "2021-11-29T03:56:36.000Z" + }, + "end": { + "$date": "2021-11-29T04:01:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3a5391bc-098b-4ae1-bfd1-7760c60f5d8f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-29T04:03:32.000Z" + }, + "end": { + "$date": "2021-11-29T05:14:23.000Z" + }, + "events": [ + { + "uuid": "cca53671-f860-4880-b84b-1dab30a3c912", + "start": { + "$date": "2021-11-29T04:03:32.000Z" + }, + "end": { + "$date": "2021-11-29T05:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bf6863c-bf0d-4e72-a10f-38c38d201d8a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T04:28:04.000Z" + }, + "end": { + "$date": "2021-11-29T04:35:11.000Z" + }, + "events": [ + { + "uuid": "d8ed8aa6-cd5d-4f09-89be-d529539fc9ab", + "start": { + "$date": "2021-11-29T04:28:04.000Z" + }, + "end": { + "$date": "2021-11-29T04:35:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc36679a-649f-40c9-8f3d-1d02368eede5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T04:43:14.000Z" + }, + "end": { + "$date": "2021-11-29T05:27:41.000Z" + }, + "events": [ + { + "uuid": "a01ffb7a-5ff8-4199-86eb-747d2c8662a8", + "start": { + "$date": "2021-11-29T04:43:14.000Z" + }, + "end": { + "$date": "2021-11-29T05:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b056fa1d-27f8-47d2-8ba4-ca87c0a44392", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-11-29T04:46:59.000Z" + }, + "end": { + "$date": "2021-11-29T05:14:35.000Z" + }, + "events": [ + { + "uuid": "af9265c9-21f7-4420-b0a0-05fd0393da12", + "start": { + "$date": "2021-11-29T04:46:59.000Z" + }, + "end": { + "$date": "2021-11-29T05:14:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4df87b84-b1a5-4521-84c8-89d00a5ad74f", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-29T04:48:38.000Z" + }, + "end": { + "$date": "2021-11-29T05:37:16.000Z" + }, + "events": [ + { + "uuid": "40768128-82cc-4bf5-a7d0-5aabcc709343", + "start": { + "$date": "2021-11-29T04:48:38.000Z" + }, + "end": { + "$date": "2021-11-29T05:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b414f3ff-804b-4b60-875b-85fcfef1d7c0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-29T05:08:04.000Z" + }, + "end": { + "$date": "2021-11-29T08:33:53.000Z" + }, + "events": [ + { + "uuid": "aed69774-6893-4521-a585-3bcddc1a3410", + "start": { + "$date": "2021-11-29T05:08:04.000Z" + }, + "end": { + "$date": "2021-11-29T08:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3663f85b-6810-43fe-8ed1-381c5c3792ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-29T01:43:10.000Z" + }, + "end": { + "$date": "2021-11-29T05:44:24.000Z" + }, + "events": [ + { + "uuid": "4efb9b17-c03f-4f9d-9f7b-363315808268", + "start": { + "$date": "2021-11-29T01:43:10.000Z" + }, + "end": { + "$date": "2021-11-29T05:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "43ba25e9-d1ea-40f2-b2bc-41dcdbbf79ab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-29T05:23:14.000Z" + }, + "end": { + "$date": "2021-11-29T06:38:40.000Z" + }, + "events": [ + { + "uuid": "23d5d351-0d85-45a1-95b9-81a56626b6d7", + "start": { + "$date": "2021-11-29T05:23:14.000Z" + }, + "end": { + "$date": "2021-11-29T06:38:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac3799db-44ea-4125-b380-a0b7abc141ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T05:34:15.000Z" + }, + "end": { + "$date": "2021-11-29T05:57:02.000Z" + }, + "events": [ + { + "uuid": "6b010a1f-859e-434e-9767-ad2bade007ec", + "start": { + "$date": "2021-11-29T05:34:15.000Z" + }, + "end": { + "$date": "2021-11-29T05:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1e3a0e33-2d87-49b7-9959-f4795671b33b", + "uuid": "681bd6a4-51bb-47f6-90fe-d72d725665bd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-29T05:45:44.000Z" + }, + "end": { + "$date": "2021-11-29T06:15:28.000Z" + }, + "events": [ + { + "uuid": "753fbc15-f97e-4275-b303-1fe5b25fac44", + "start": { + "$date": "2021-11-29T05:45:44.000Z" + }, + "end": { + "$date": "2021-11-29T06:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "76d12d4b-033d-4182-84b8-b603e44ed424", + "uuid": "3f765458-ae2c-422b-bdee-d41b9a7f0798", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T06:03:53.000Z" + }, + "end": { + "$date": "2021-11-29T06:07:04.000Z" + }, + "events": [ + { + "uuid": "0457350f-6002-467d-98a5-2088db89a3f1", + "start": { + "$date": "2021-11-29T06:03:53.000Z" + }, + "end": { + "$date": "2021-11-29T06:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "80320cf9-6d34-490b-986f-94c3fb3ceb74", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-29T06:16:03.000Z" + }, + "end": { + "$date": "2021-11-29T06:28:33.000Z" + }, + "events": [ + { + "uuid": "1fd87959-7e5b-4d9c-a0b9-1f039b287f24", + "start": { + "$date": "2021-11-29T06:16:03.000Z" + }, + "end": { + "$date": "2021-11-29T06:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c2cf2ac0-36e3-468f-845d-810624518dce", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-29T07:05:17.000Z" + }, + "end": { + "$date": "2021-11-29T08:25:12.000Z" + }, + "events": [ + { + "uuid": "657a821b-9ac6-465b-8563-3223ccdf5a40", + "start": { + "$date": "2021-11-29T07:05:17.000Z" + }, + "end": { + "$date": "2021-11-29T08:25:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f3c8fc1-1c3b-4621-bbe2-a1fddc066861", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-29T07:15:29.000Z" + }, + "end": { + "$date": "2021-11-29T07:48:45.000Z" + }, + "events": [ + { + "uuid": "0d31ca74-6da1-4c1b-be23-37492712709b", + "start": { + "$date": "2021-11-29T07:15:29.000Z" + }, + "end": { + "$date": "2021-11-29T07:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f1e53e4-2c78-479a-951d-aac595ac3a00", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-29T08:40:34.000Z" + }, + "end": { + "$date": "2021-11-29T08:54:11.000Z" + }, + "events": [ + { + "uuid": "f685625e-7833-48de-8091-813963bafac0", + "start": { + "$date": "2021-11-29T08:40:34.000Z" + }, + "end": { + "$date": "2021-11-29T08:54:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b93df656-5e60-4475-87ad-a8cc2943a606", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-29T08:54:20.000Z" + }, + "end": { + "$date": "2021-11-29T08:57:48.000Z" + }, + "events": [ + { + "uuid": "d78651e9-287b-44d9-b742-f374344d9c05", + "start": { + "$date": "2021-11-29T08:54:20.000Z" + }, + "end": { + "$date": "2021-11-29T08:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a870f556-2b53-45e0-bfaa-c7118b894973", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-29T09:03:11.000Z" + }, + "end": { + "$date": "2021-11-29T09:28:52.000Z" + }, + "events": [ + { + "uuid": "6ba211f2-0ec8-4c75-a51a-6fd42017b014", + "start": { + "$date": "2021-11-29T09:03:11.000Z" + }, + "end": { + "$date": "2021-11-29T09:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f68d6420-dcd6-4d5f-8533-58f204b35d12", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-29T20:18:20.000Z" + }, + "end": { + "$date": "2021-11-29T20:41:39.000Z" + }, + "events": [ + { + "uuid": "a1b222ff-0f96-46a6-9f6d-5f9e8a460fb9", + "start": { + "$date": "2021-11-29T20:18:20.000Z" + }, + "end": { + "$date": "2021-11-29T20:41:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ac980196-93cd-4f4d-9c59-8edec011eb28", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-11-29T22:36:02.000Z" + }, + "end": { + "$date": "2021-11-29T23:05:19.000Z" + }, + "events": [ + { + "uuid": "acb8344b-ff9e-4a72-b63d-1f60fb2fa7c1", + "start": { + "$date": "2021-11-29T22:36:02.000Z" + }, + "end": { + "$date": "2021-11-29T23:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a8f8f891-1509-425d-9748-b1fd13475b0e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-29T22:37:19.000Z" + }, + "end": { + "$date": "2021-11-30T00:07:24.000Z" + }, + "events": [ + { + "uuid": "56656fb4-4255-4203-8bcf-88a105478843", + "start": { + "$date": "2021-11-29T22:37:19.000Z" + }, + "end": { + "$date": "2021-11-30T00:07:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0e34c83f-fabd-458a-a7bb-e1b459e7abae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-29T23:08:15.000Z" + }, + "end": { + "$date": "2021-11-29T23:11:35.000Z" + }, + "events": [ + { + "uuid": "291e5018-e328-45f5-914c-d9f19a7c2635", + "start": { + "$date": "2021-11-29T23:08:15.000Z" + }, + "end": { + "$date": "2021-11-29T23:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "90a95668-d142-4d60-b4bc-b66f4e3f2901", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-29T23:14:31.000Z" + }, + "end": { + "$date": "2021-11-30T00:07:08.000Z" + }, + "events": [ + { + "uuid": "dc8fac44-c85b-4101-a82b-7e3e9b0352ce", + "start": { + "$date": "2021-11-29T23:14:31.000Z" + }, + "end": { + "$date": "2021-11-30T00:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a944b993-ca20-47a0-a0de-ee7c8c7287d3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-29T23:30:14.000Z" + }, + "end": { + "$date": "2021-11-30T01:39:33.000Z" + }, + "events": [ + { + "uuid": "50e3771a-03c9-4ccc-ad05-91359c82cbc4", + "start": { + "$date": "2021-11-29T23:30:14.000Z" + }, + "end": { + "$date": "2021-11-30T01:39:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7a13735-f3e8-4757-aeab-cc1f3eb3bcf1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-30T01:00:57.000Z" + }, + "end": { + "$date": "2021-11-30T01:08:32.000Z" + }, + "events": [ + { + "uuid": "0a826f62-5d12-47d2-8650-eda8295f0c55", + "start": { + "$date": "2021-11-30T01:00:57.000Z" + }, + "end": { + "$date": "2021-11-30T01:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaa0e3a3-531d-4ab6-ace1-c5a294e6b608", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-30T01:10:57.000Z" + }, + "end": { + "$date": "2021-11-30T01:37:08.000Z" + }, + "events": [ + { + "uuid": "a997e4d5-980b-42a1-ba8d-f851de87a881", + "start": { + "$date": "2021-11-30T01:10:57.000Z" + }, + "end": { + "$date": "2021-11-30T01:37:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6001f02d-003b-47bf-9e5e-845d026e47b6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-11-30T01:10:44.000Z" + }, + "end": { + "$date": "2021-11-30T05:39:21.000Z" + }, + "events": [ + { + "uuid": "f5900742-0d4d-4bb9-b99b-789345f1388c", + "start": { + "$date": "2021-11-30T01:10:44.000Z" + }, + "end": { + "$date": "2021-11-30T05:39:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0201a7e8-eed6-48a5-8568-99b5a0bbd8da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-30T01:37:21.000Z" + }, + "end": { + "$date": "2021-11-30T02:56:15.000Z" + }, + "events": [ + { + "uuid": "a7e6c15b-3449-4b17-a36f-039374e0a240", + "start": { + "$date": "2021-11-30T01:37:21.000Z" + }, + "end": { + "$date": "2021-11-30T02:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "109a4972-bf0f-4750-9cfb-0ad21403a771", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-30T02:48:46.000Z" + }, + "end": { + "$date": "2021-11-30T03:28:33.000Z" + }, + "events": [ + { + "uuid": "115490a8-8ce5-4c13-a1b5-89484f78d2a6", + "start": { + "$date": "2021-11-30T02:48:46.000Z" + }, + "end": { + "$date": "2021-11-30T03:28:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e90367c5-290d-40eb-85da-25ef8f5a3ab3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-30T01:40:31.000Z" + }, + "end": { + "$date": "2021-11-30T02:56:18.000Z" + }, + "events": [ + { + "uuid": "74f9326f-8117-404b-974c-1dd8d9528364", + "start": { + "$date": "2021-11-30T01:40:31.000Z" + }, + "end": { + "$date": "2021-11-30T02:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c24bf284-8472-4b4a-a4f3-cecb26a93dd7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-30T01:46:33.000Z" + }, + "end": { + "$date": "2021-11-30T02:08:23.000Z" + }, + "events": [ + { + "uuid": "4f509f6d-f550-4c7f-869b-d2012cb430e8", + "start": { + "$date": "2021-11-30T01:46:33.000Z" + }, + "end": { + "$date": "2021-11-30T02:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b897161-3f94-48dc-9075-9f887c2e5258", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-30T02:48:45.000Z" + }, + "end": { + "$date": "2021-11-30T03:28:35.000Z" + }, + "events": [ + { + "uuid": "02d91e11-25e6-4e13-a97d-837fe021d337", + "start": { + "$date": "2021-11-30T02:48:45.000Z" + }, + "end": { + "$date": "2021-11-30T03:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "04dcfeb9-9336-4df0-906b-b6af30d9aa20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-11-30T02:57:09.000Z" + }, + "end": { + "$date": "2021-11-30T04:51:14.000Z" + }, + "events": [ + { + "uuid": "d9c23fca-14e3-4c54-af17-2c888e264fb5", + "start": { + "$date": "2021-11-30T02:57:09.000Z" + }, + "end": { + "$date": "2021-11-30T04:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "b3a86e4d-633f-4c39-87fa-6169030a241a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-11-30T02:57:25.000Z" + }, + "end": { + "$date": "2021-11-30T04:51:23.000Z" + }, + "events": [ + { + "uuid": "b5d630b5-cea1-4d4d-8b71-c2bf20f0a5b9", + "start": { + "$date": "2021-11-30T02:57:25.000Z" + }, + "end": { + "$date": "2021-11-30T04:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d284e191-2807-4e97-aea9-d743bea480af", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-11-30T03:28:44.000Z" + }, + "end": { + "$date": "2021-11-30T03:32:09.000Z" + }, + "events": [ + { + "uuid": "aed3258a-3485-4711-8c2d-ed6ccec54537", + "start": { + "$date": "2021-11-30T03:28:44.000Z" + }, + "end": { + "$date": "2021-11-30T03:32:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f3d5993b-5b14-40c2-9703-03961ba7b20c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-30T03:29:27.000Z" + }, + "end": { + "$date": "2021-11-30T03:53:57.000Z" + }, + "events": [ + { + "uuid": "ad53e653-a3d8-47c3-8638-677327f801e2", + "start": { + "$date": "2021-11-30T03:29:27.000Z" + }, + "end": { + "$date": "2021-11-30T03:53:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "eeaee8a2-9adf-4bc9-ac2c-4e124936ba94", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-30T03:56:03.000Z" + }, + "end": { + "$date": "2021-11-30T05:38:36.000Z" + }, + "events": [ + { + "uuid": "5b8886ef-ce78-45b0-b6a4-48d748d37034", + "start": { + "$date": "2021-11-30T03:56:03.000Z" + }, + "end": { + "$date": "2021-11-30T05:38:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5e6e8d29-341f-48ec-aa06-0318e2362c65", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-30T04:33:20.000Z" + }, + "end": { + "$date": "2021-11-30T05:07:47.000Z" + }, + "events": [ + { + "uuid": "f626ceaf-bbdd-43eb-804c-137f5fd78f9a", + "start": { + "$date": "2021-11-30T04:33:20.000Z" + }, + "end": { + "$date": "2021-11-30T05:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e457bf05-e5a4-4031-a74e-444f54ec4449", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-11-30T04:45:54.000Z" + }, + "end": { + "$date": "2021-11-30T07:40:15.000Z" + }, + "events": [ + { + "uuid": "6167b175-3f36-4d9b-a1f1-41c280cdcb6f", + "start": { + "$date": "2021-11-30T04:45:54.000Z" + }, + "end": { + "$date": "2021-11-30T07:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "57525ca5-875a-4264-8bfd-d702807232ed", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-30T04:49:45.000Z" + }, + "end": { + "$date": "2021-11-30T04:59:51.000Z" + }, + "events": [ + { + "uuid": "6cc3eed7-ea57-4dfb-8f1a-d35694570815", + "start": { + "$date": "2021-11-30T04:49:45.000Z" + }, + "end": { + "$date": "2021-11-30T04:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a435621-ca4a-4937-a412-4aef95f78d0d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-11-30T05:00:31.000Z" + }, + "end": { + "$date": "2021-11-30T07:40:01.000Z" + }, + "events": [ + { + "uuid": "94ba634e-83e5-46fd-b729-0ec62288421c", + "start": { + "$date": "2021-11-30T05:00:31.000Z" + }, + "end": { + "$date": "2021-11-30T07:40:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f7bf70cb-7ec3-4a83-91a9-997107618353", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-11-30T05:05:19.000Z" + }, + "end": { + "$date": "2021-11-30T06:04:49.000Z" + }, + "events": [ + { + "uuid": "7b69f678-4f2b-4926-88e6-1a3135531b39", + "start": { + "$date": "2021-11-30T05:05:19.000Z" + }, + "end": { + "$date": "2021-11-30T06:04:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b64b33ad-3fc1-4f2c-b080-889fe0e34a96", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-11-30T05:08:47.000Z" + }, + "end": { + "$date": "2021-11-30T07:41:41.000Z" + }, + "events": [ + { + "uuid": "f47d3c5b-5488-41f8-9758-4b849dfdb800", + "start": { + "$date": "2021-11-30T05:08:47.000Z" + }, + "end": { + "$date": "2021-11-30T07:41:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85dfc624-0b46-4c6f-8448-65931cffe9ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-11-30T07:01:00.000Z" + }, + "end": { + "$date": "2021-11-30T07:31:35.000Z" + }, + "events": [ + { + "uuid": "4720a411-5db2-4109-990b-928e8713218d", + "start": { + "$date": "2021-11-30T07:01:00.000Z" + }, + "end": { + "$date": "2021-11-30T07:31:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37234546-9c77-42fc-af15-4c1ff884ef6c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-30T22:19:07.000Z" + }, + "end": { + "$date": "2021-11-30T22:36:54.000Z" + }, + "events": [ + { + "uuid": "84d1fc43-68f0-4f72-8ae1-7201d9ecd1b4", + "start": { + "$date": "2021-11-30T22:19:07.000Z" + }, + "end": { + "$date": "2021-11-30T22:36:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9a3c197b-176e-415e-81c2-1131d55acc87", + "uuid": "d6c27b72-d84c-4101-9f28-6985c2b2ad2f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-01T00:04:46.000Z" + }, + "end": { + "$date": "2021-12-01T00:15:54.000Z" + }, + "events": [ + { + "uuid": "6ae2d662-90d5-4ea8-a524-42f4f2f200e8", + "start": { + "$date": "2021-12-01T00:04:46.000Z" + }, + "end": { + "$date": "2021-12-01T00:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "839c6ac2-715e-41b3-ad4e-e057d10bf809", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-11-30T22:38:34.000Z" + }, + "end": { + "$date": "2021-11-30T23:01:37.000Z" + }, + "events": [ + { + "uuid": "71fdb208-7c8e-414f-a690-19f659b84a56", + "start": { + "$date": "2021-11-30T22:38:34.000Z" + }, + "end": { + "$date": "2021-11-30T23:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a082c41b-9ae7-41fc-a5c3-69df27bec066", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-11-30T23:26:27.000Z" + }, + "end": { + "$date": "2021-12-01T00:04:03.000Z" + }, + "events": [ + { + "uuid": "bfd40b61-cded-43af-af52-292691a2be62", + "start": { + "$date": "2021-11-30T23:26:27.000Z" + }, + "end": { + "$date": "2021-12-01T00:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f29f2a4b-0d77-4544-a305-ebb2a5dc1045", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-01T00:46:12.000Z" + }, + "end": { + "$date": "2021-12-01T05:39:07.000Z" + }, + "events": [ + { + "uuid": "17cee728-2cc5-4065-84e3-0a4140f0a530", + "start": { + "$date": "2021-12-01T00:46:12.000Z" + }, + "end": { + "$date": "2021-12-01T05:39:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0a6af74a-9371-4f93-b84a-dc2d56a76bf4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-01T01:19:47.000Z" + }, + "end": { + "$date": "2021-12-01T01:27:12.000Z" + }, + "events": [ + { + "uuid": "2682b38e-a647-4302-8ff7-d11cb182049a", + "start": { + "$date": "2021-12-01T01:19:47.000Z" + }, + "end": { + "$date": "2021-12-01T01:27:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0fd72093-bf44-4ffe-b520-841f3e9af359", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-01T01:31:43.000Z" + }, + "end": { + "$date": "2021-12-01T01:53:40.000Z" + }, + "events": [ + { + "uuid": "fd600b38-4e2d-4b59-ad7a-5916a60e3834", + "start": { + "$date": "2021-12-01T01:31:43.000Z" + }, + "end": { + "$date": "2021-12-01T01:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7778dba7-c0a0-42ec-80d6-744696e54039", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-01T02:11:43.000Z" + }, + "end": { + "$date": "2021-12-01T03:05:33.000Z" + }, + "events": [ + { + "uuid": "48ce342c-09bb-4f6b-86c4-3e9c3d4f82ce", + "start": { + "$date": "2021-12-01T02:11:43.000Z" + }, + "end": { + "$date": "2021-12-01T03:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7598a4a0-b879-4370-8a53-6b7d2753704f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-01T02:21:25.000Z" + }, + "end": { + "$date": "2021-12-01T02:41:55.000Z" + }, + "events": [ + { + "uuid": "07520aa3-2a2b-4882-8655-1c6e41f1b5c4", + "start": { + "$date": "2021-12-01T02:21:25.000Z" + }, + "end": { + "$date": "2021-12-01T02:41:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6af00b2-e421-4070-b7d6-d09a1fafcdb6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T02:43:17.000Z" + }, + "end": { + "$date": "2021-12-01T03:19:06.000Z" + }, + "events": [ + { + "uuid": "f4d56618-8e3a-41aa-8288-5a3009fe4087", + "start": { + "$date": "2021-12-01T02:43:17.000Z" + }, + "end": { + "$date": "2021-12-01T03:19:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "0c4fa838-20e0-422e-8456-d535429be8cb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-01T02:42:30.000Z" + }, + "end": { + "$date": "2021-12-01T03:42:36.000Z" + }, + "events": [ + { + "uuid": "8147c4ae-1e0e-42be-bfa1-e6b4c0998135", + "start": { + "$date": "2021-12-01T02:42:30.000Z" + }, + "end": { + "$date": "2021-12-01T03:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0ac72bb0-48f6-4d44-bee7-e82a23face21", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-01T02:51:11.000Z" + }, + "end": { + "$date": "2021-12-01T03:01:09.000Z" + }, + "events": [ + { + "uuid": "c33429ac-9a6f-446e-85ae-c324ed62222f", + "start": { + "$date": "2021-12-01T02:51:11.000Z" + }, + "end": { + "$date": "2021-12-01T03:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "847d874d-ec20-4b2c-a435-2c9fd123657b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T03:40:33.000Z" + }, + "end": { + "$date": "2021-12-01T04:11:54.000Z" + }, + "events": [ + { + "uuid": "8927905c-53d8-4799-9386-349fbedf59c2", + "start": { + "$date": "2021-12-01T03:40:33.000Z" + }, + "end": { + "$date": "2021-12-01T04:11:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c38aa9df-9ad8-4665-b6c6-73405568b48e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-01T03:43:06.000Z" + }, + "end": { + "$date": "2021-12-01T04:57:37.000Z" + }, + "events": [ + { + "uuid": "73fd753e-32e4-45a8-9d97-3af9c1af2d66", + "start": { + "$date": "2021-12-01T03:43:06.000Z" + }, + "end": { + "$date": "2021-12-01T04:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c2d2db8b-6cb0-44ef-9f52-c8d28e026b36", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-01T03:44:06.000Z" + }, + "end": { + "$date": "2021-12-01T04:57:44.000Z" + }, + "events": [ + { + "uuid": "db137f7c-8f22-4ff0-bd64-cc3683c18717", + "start": { + "$date": "2021-12-01T03:44:06.000Z" + }, + "end": { + "$date": "2021-12-01T04:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af74f2ec-a775-41a4-bdda-7ce9df3da013", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T04:16:39.000Z" + }, + "end": { + "$date": "2021-12-01T04:47:25.000Z" + }, + "events": [ + { + "uuid": "dc90a898-b49d-47b0-aa71-85b973a8e5c6", + "start": { + "$date": "2021-12-01T04:16:39.000Z" + }, + "end": { + "$date": "2021-12-01T04:47:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7289724b-7114-4f22-a217-f209ad2d4a05", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-01T04:22:35.000Z" + }, + "end": { + "$date": "2021-12-01T05:22:55.000Z" + }, + "events": [ + { + "uuid": "0475b644-04d3-49ab-a217-a5e4d97f92c4", + "start": { + "$date": "2021-12-01T04:22:35.000Z" + }, + "end": { + "$date": "2021-12-01T05:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "782139d4-caa8-464d-8010-75180d150176", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-01T04:25:26.000Z" + }, + "end": { + "$date": "2021-12-01T06:01:01.000Z" + }, + "events": [ + { + "uuid": "329b2480-5063-4f72-96ab-034ec8e4f345", + "start": { + "$date": "2021-12-01T04:25:26.000Z" + }, + "end": { + "$date": "2021-12-01T06:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "05313c43-96f9-478f-a342-6f117fc77927", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T04:31:33.000Z" + }, + "end": { + "$date": "2021-12-01T04:33:34.000Z" + }, + "events": [ + { + "uuid": "14ee4875-9fd2-43e0-b4cd-94a995192f7f", + "start": { + "$date": "2021-12-01T04:31:33.000Z" + }, + "end": { + "$date": "2021-12-01T04:33:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "feac62be-2f45-48f5-8e80-dea1db754227", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T04:34:45.000Z" + }, + "end": { + "$date": "2021-12-01T05:17:54.000Z" + }, + "events": [ + { + "uuid": "4bce858a-6533-47c0-b951-068d6898945f", + "start": { + "$date": "2021-12-01T04:34:45.000Z" + }, + "end": { + "$date": "2021-12-01T05:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2473ba7-ad8c-4253-83af-fbcb5c20b5fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T04:52:34.000Z" + }, + "end": { + "$date": "2021-12-01T05:23:00.000Z" + }, + "events": [ + { + "uuid": "aaacfc8c-3156-430b-a76b-7e3b8c0a3889", + "start": { + "$date": "2021-12-01T04:52:34.000Z" + }, + "end": { + "$date": "2021-12-01T05:23:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90b30da6-c711-42d9-b135-d8a208db6ba9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T05:23:43.000Z" + }, + "end": { + "$date": "2021-12-01T05:52:00.000Z" + }, + "events": [ + { + "uuid": "024a351a-b5b3-400f-b071-d184f047e405", + "start": { + "$date": "2021-12-01T05:23:43.000Z" + }, + "end": { + "$date": "2021-12-01T05:52:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e4bd319-6362-44a8-8cc1-6007cbd7c208", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-01T05:30:08.000Z" + }, + "end": { + "$date": "2021-12-01T05:49:28.000Z" + }, + "events": [ + { + "uuid": "b4d183a1-3a1d-453f-bd8f-710faba07472", + "start": { + "$date": "2021-12-01T05:30:08.000Z" + }, + "end": { + "$date": "2021-12-01T05:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba410c28-8cf7-476b-92ac-f1d2c351d20e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T05:53:55.000Z" + }, + "end": { + "$date": "2021-12-01T06:09:03.000Z" + }, + "events": [ + { + "uuid": "26aa40f1-8c09-4fc1-ac6d-9e0c77e9a384", + "start": { + "$date": "2021-12-01T05:53:55.000Z" + }, + "end": { + "$date": "2021-12-01T06:09:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1bb8f56-652f-442b-bf06-7e066aa98f57", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-01T05:53:50.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:46.000Z" + }, + "events": [ + { + "uuid": "0b599a42-ac20-44aa-8906-a9fa5c05cdd6", + "start": { + "$date": "2021-12-01T05:53:50.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d7de415-5320-4c97-a2b2-b6b8e67de355", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-01T05:53:53.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:53.000Z" + }, + "events": [ + { + "uuid": "85be4d52-4a43-4e92-bda2-8f62e9ad0a85", + "start": { + "$date": "2021-12-01T05:53:53.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03b3c91d-8341-485b-88d0-825230fe2afd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T05:54:06.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:52.000Z" + }, + "events": [ + { + "uuid": "3fb9d620-04ee-40f4-a529-fd6d7360d338", + "start": { + "$date": "2021-12-01T05:54:06.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "906cba96-9dba-4fbe-8e15-5a44f9e36573", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-01T06:02:49.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:44.000Z" + }, + "events": [ + { + "uuid": "faf3307f-64e7-4ff0-a567-46b86e1f8ee1", + "start": { + "$date": "2021-12-01T06:02:49.000Z" + }, + "end": { + "$date": "2021-12-01T06:08:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8b1f55b2-36bc-4891-8456-5fa71618f204", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-01T06:04:22.000Z" + }, + "end": { + "$date": "2021-12-01T06:09:27.000Z" + }, + "events": [ + { + "uuid": "1f8426ab-2652-4cde-83e5-12707233c1e2", + "start": { + "$date": "2021-12-01T06:04:22.000Z" + }, + "end": { + "$date": "2021-12-01T06:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1070b01-e5fa-498a-888a-eef7098b4782", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T06:13:11.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:26.000Z" + }, + "events": [ + { + "uuid": "061e1047-2648-483a-934a-350653940f25", + "start": { + "$date": "2021-12-01T06:13:11.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "70a4a474-39ef-45fe-b933-52cdcbb22b2e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-01T06:09:19.000Z" + }, + "end": { + "$date": "2021-12-01T06:45:51.000Z" + }, + "events": [ + { + "uuid": "8c30124c-1677-4e86-a93c-61892114ab4f", + "start": { + "$date": "2021-12-01T06:09:19.000Z" + }, + "end": { + "$date": "2021-12-01T06:45:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd14025e-d7e4-408e-a0d1-0d30a7256e10", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T06:13:00.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:28.000Z" + }, + "events": [ + { + "uuid": "bd945223-5516-4658-80e0-eccb3a411521", + "start": { + "$date": "2021-12-01T06:13:00.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bfac944-7734-4db4-b014-55d3e5b64997", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-01T06:13:00.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:18.000Z" + }, + "events": [ + { + "uuid": "5bb81ca3-1d00-4f22-94fa-0e2ac21a58ef", + "start": { + "$date": "2021-12-01T06:13:00.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efaa958c-43ab-46d4-a483-63d94d66fb8f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-01T06:12:54.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:24.000Z" + }, + "events": [ + { + "uuid": "26edf277-12a4-4a89-a115-fe0e020710a8", + "start": { + "$date": "2021-12-01T06:12:54.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63e56086-e2cd-4534-b1f3-f3b8748c6e7b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-01T06:13:01.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:22.000Z" + }, + "events": [ + { + "uuid": "a57fec4e-34ac-46e4-b180-9971e82092d9", + "start": { + "$date": "2021-12-01T06:13:01.000Z" + }, + "end": { + "$date": "2021-12-01T06:38:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d3fed1c-1711-439e-b2aa-0ffc325a0dcb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T06:41:27.000Z" + }, + "end": { + "$date": "2021-12-01T07:08:00.000Z" + }, + "events": [ + { + "uuid": "9b3ff73f-f283-40b8-9bea-0e3cdc3df53f", + "start": { + "$date": "2021-12-01T06:41:27.000Z" + }, + "end": { + "$date": "2021-12-01T07:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0994457-f616-45d8-8aec-3e9f8b471c79", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-01T06:41:26.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:54.000Z" + }, + "events": [ + { + "uuid": "440eee7b-1a26-4f06-8ed1-705d1241b1b0", + "start": { + "$date": "2021-12-01T06:41:26.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "396da30c-fb2d-4fca-a495-f067128c3f26", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-01T06:41:29.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:55.000Z" + }, + "events": [ + { + "uuid": "9a3b5143-06ed-4fea-8c14-167ada27f1ca", + "start": { + "$date": "2021-12-01T06:41:29.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7b9f3a3-a2f2-4c18-8616-19253e139d91", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-01T06:41:37.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:53.000Z" + }, + "events": [ + { + "uuid": "eceab13c-823f-4e97-a4a7-bc3688c306cb", + "start": { + "$date": "2021-12-01T06:41:37.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1c351ac-d449-4910-b2ca-c17ca6483d85", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-01T06:41:31.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:48.000Z" + }, + "events": [ + { + "uuid": "af7be3e8-f7a0-4541-ac71-04d89a4fb7bf", + "start": { + "$date": "2021-12-01T06:41:31.000Z" + }, + "end": { + "$date": "2021-12-01T07:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c386eac-78e6-442b-b759-6fc79ec59188", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T07:08:26.000Z" + }, + "end": { + "$date": "2021-12-01T07:11:53.000Z" + }, + "events": [ + { + "uuid": "38248e05-fe6b-4726-be29-055a66ce3476", + "start": { + "$date": "2021-12-01T07:08:26.000Z" + }, + "end": { + "$date": "2021-12-01T07:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "18ce206a-b684-4b1f-a2b6-78619279e368", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-01T07:08:46.000Z" + }, + "end": { + "$date": "2021-12-01T08:31:20.000Z" + }, + "events": [ + { + "uuid": "8f140a1a-64bb-4240-a2bb-f2a6296d9b3d", + "start": { + "$date": "2021-12-01T07:08:46.000Z" + }, + "end": { + "$date": "2021-12-01T08:31:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33b2c52a-1d7d-4724-8eb1-759b7639bc7e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T07:30:43.000Z" + }, + "end": { + "$date": "2021-12-01T08:08:32.000Z" + }, + "events": [ + { + "uuid": "232cccb6-a2a2-43d5-86a1-8fe7d722dd4e", + "start": { + "$date": "2021-12-01T07:30:43.000Z" + }, + "end": { + "$date": "2021-12-01T08:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f5915cf-6533-40dd-a83a-85a08bfcec67", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T08:10:23.000Z" + }, + "end": { + "$date": "2021-12-01T08:40:47.000Z" + }, + "events": [ + { + "uuid": "afe92e96-2340-495f-af77-bc0617d55498", + "start": { + "$date": "2021-12-01T08:10:23.000Z" + }, + "end": { + "$date": "2021-12-01T08:40:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e8cc303c-5241-496f-a7ea-68d7fe38566e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T08:43:12.000Z" + }, + "end": { + "$date": "2021-12-01T09:26:39.000Z" + }, + "events": [ + { + "uuid": "2a1c752a-e840-46a2-a58c-d2b17d63286c", + "start": { + "$date": "2021-12-01T08:43:12.000Z" + }, + "end": { + "$date": "2021-12-01T09:26:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0142156d-0456-48d4-9257-266742029501", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-01T10:23:55.000Z" + }, + "end": { + "$date": "2021-12-01T10:44:27.000Z" + }, + "events": [ + { + "uuid": "a22ec154-0608-4670-9b1b-795628d7df85", + "start": { + "$date": "2021-12-01T10:23:55.000Z" + }, + "end": { + "$date": "2021-12-01T10:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "798acdc1-7742-4fdc-ab2a-6b6e91b30b87", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-01T10:46:47.000Z" + }, + "end": { + "$date": "2021-12-01T11:03:39.000Z" + }, + "events": [ + { + "uuid": "eb5038ac-5718-4d44-ad75-d09945542f58", + "start": { + "$date": "2021-12-01T10:46:47.000Z" + }, + "end": { + "$date": "2021-12-01T11:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "611a5345-a093-42cf-82f3-c9021bc4ace0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-01T11:05:39.000Z" + }, + "end": { + "$date": "2021-12-01T11:22:50.000Z" + }, + "events": [ + { + "uuid": "bd84a581-bde7-4e61-804d-e7fb09f4998c", + "start": { + "$date": "2021-12-01T11:05:39.000Z" + }, + "end": { + "$date": "2021-12-01T11:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "98b63cad-054f-478d-811a-e67ca509800b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-01T11:27:52.000Z" + }, + "end": { + "$date": "2021-12-01T12:01:06.000Z" + }, + "events": [ + { + "uuid": "2380c571-021c-491c-be4c-0203e534cdc6", + "start": { + "$date": "2021-12-01T11:27:52.000Z" + }, + "end": { + "$date": "2021-12-01T12:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e2a1a028-2fdb-48c6-8749-0f25c0dbbefa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T21:04:47.000Z" + }, + "end": { + "$date": "2021-12-01T22:07:37.000Z" + }, + "events": [ + { + "uuid": "189b7f86-78cf-4f5b-9ab0-5e988009f4b3", + "start": { + "$date": "2021-12-01T21:04:47.000Z" + }, + "end": { + "$date": "2021-12-01T21:35:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddadc863-6d29-4afb-b3f9-d3079be82bdc", + "start": { + "$date": "2021-12-01T21:35:47.000Z" + }, + "end": { + "$date": "2021-12-01T21:50:47.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f379721b-8cd4-4480-ab8b-1f461ddfc3bd", + "start": { + "$date": "2021-12-01T21:50:47.000Z" + }, + "end": { + "$date": "2021-12-01T22:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4dbc4983-7f0c-43f8-ae9a-3b16e915b8fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T22:49:06.000Z" + }, + "end": { + "$date": "2021-12-01T22:54:04.000Z" + }, + "events": [ + { + "uuid": "41d9ef02-1a32-49c6-a5eb-ee8c25985b27", + "start": { + "$date": "2021-12-01T22:49:06.000Z" + }, + "end": { + "$date": "2021-12-01T22:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "794a7fa1-6a6b-4d59-9864-4bfd166787df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T22:59:23.000Z" + }, + "end": { + "$date": "2021-12-01T23:33:45.000Z" + }, + "events": [ + { + "uuid": "6f90cb18-57cb-49a2-93c8-408feff58917", + "start": { + "$date": "2021-12-01T22:59:23.000Z" + }, + "end": { + "$date": "2021-12-01T23:33:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17c52268-85ec-49e1-b6e8-a2829a53cecf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-01T23:43:09.000Z" + }, + "end": { + "$date": "2021-12-02T00:08:29.000Z" + }, + "events": [ + { + "uuid": "bd18e96f-c865-4220-b51c-6d8fb90e2c02", + "start": { + "$date": "2021-12-01T23:43:09.000Z" + }, + "end": { + "$date": "2021-12-02T00:08:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e397c7b-10f1-4030-851f-1d948f082c24", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-01T23:46:32.000Z" + }, + "end": { + "$date": "2021-12-02T00:05:30.000Z" + }, + "events": [ + { + "uuid": "f65cf885-dae8-4bdf-b6dc-36f91ca0e32a", + "start": { + "$date": "2021-12-01T23:46:32.000Z" + }, + "end": { + "$date": "2021-12-02T00:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0aae9abc-30c8-43ca-b9d5-582d3ba0c916", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-01T23:54:05.000Z" + }, + "end": { + "$date": "2021-12-02T01:55:04.000Z" + }, + "events": [ + { + "uuid": "f0c415da-c024-4316-83f3-b0df7feae6cd", + "start": { + "$date": "2021-12-01T23:54:05.000Z" + }, + "end": { + "$date": "2021-12-02T01:55:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9df096f7-eb06-4ca1-8566-e0564e901bd1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T00:07:49.000Z" + }, + "end": { + "$date": "2021-12-02T00:26:47.000Z" + }, + "events": [ + { + "uuid": "cbf41e10-3a98-4f18-9427-953e98c07021", + "start": { + "$date": "2021-12-02T00:07:49.000Z" + }, + "end": { + "$date": "2021-12-02T00:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63d121b8-f866-4e01-b7b2-6847194fcc08", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T00:30:16.000Z" + }, + "end": { + "$date": "2021-12-02T00:32:27.000Z" + }, + "events": [ + { + "uuid": "f047bfc8-b875-4aee-8654-be4931f0be69", + "start": { + "$date": "2021-12-02T00:30:16.000Z" + }, + "end": { + "$date": "2021-12-02T00:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "39ece672-aa15-439d-9277-0b3b37243e7b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-02T00:29:10.000Z" + }, + "end": { + "$date": "2021-12-02T00:45:01.000Z" + }, + "events": [ + { + "uuid": "cecf7527-a793-4f5b-a4e3-000c621f23ed", + "start": { + "$date": "2021-12-02T00:29:10.000Z" + }, + "end": { + "$date": "2021-12-02T00:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2f3a504a-4afd-4ac7-b18b-50de03aedbf1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T00:32:42.000Z" + }, + "end": { + "$date": "2021-12-02T02:01:54.000Z" + }, + "events": [ + { + "uuid": "8efc0c59-7a62-4caa-b8ee-1c71d40fdc76", + "start": { + "$date": "2021-12-02T00:32:42.000Z" + }, + "end": { + "$date": "2021-12-02T02:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37d124f5-a886-4295-99b7-c1f4de4611c9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-02T00:51:16.000Z" + }, + "end": { + "$date": "2021-12-02T01:27:48.000Z" + }, + "events": [ + { + "uuid": "b13141c5-e731-4490-8b70-7e4e2f1938f2", + "start": { + "$date": "2021-12-02T00:51:16.000Z" + }, + "end": { + "$date": "2021-12-02T01:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c43bd92-6900-4626-b2f6-8f8e127fe26d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-02T01:28:18.000Z" + }, + "end": { + "$date": "2021-12-02T01:33:05.000Z" + }, + "events": [ + { + "uuid": "442a314c-4262-4efa-9b72-f8c4902d3ae6", + "start": { + "$date": "2021-12-02T01:28:18.000Z" + }, + "end": { + "$date": "2021-12-02T01:33:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a14c217f-d6f8-4286-b53e-78febe6edbc8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-02T01:33:18.000Z" + }, + "end": { + "$date": "2021-12-02T02:09:01.000Z" + }, + "events": [ + { + "uuid": "770165de-165c-428a-aba4-5656d095a460", + "start": { + "$date": "2021-12-02T01:33:18.000Z" + }, + "end": { + "$date": "2021-12-02T02:09:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f62be20d-6ffa-4bb5-b29e-ed7d849c4718", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T02:23:02.000Z" + }, + "end": { + "$date": "2021-12-02T02:24:03.000Z" + }, + "events": [ + { + "uuid": "93e4cda1-a5da-418d-9c9b-93687bd70653", + "start": { + "$date": "2021-12-02T02:23:02.000Z" + }, + "end": { + "$date": "2021-12-02T02:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d186ca42-fe32-429c-9e7a-87273890eabf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T02:26:12.000Z" + }, + "end": { + "$date": "2021-12-02T02:47:41.000Z" + }, + "events": [ + { + "uuid": "8c32e736-68a3-41c1-90f3-1797e93a8d33", + "start": { + "$date": "2021-12-02T02:26:12.000Z" + }, + "end": { + "$date": "2021-12-02T02:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c1f6942-17fa-42a3-9880-b5fe38ee94e5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-02T02:25:26.000Z" + }, + "end": { + "$date": "2021-12-02T04:38:02.000Z" + }, + "events": [ + { + "uuid": "130bf0d9-1fe7-4693-8900-1c6936b99a3f", + "start": { + "$date": "2021-12-02T02:25:26.000Z" + }, + "end": { + "$date": "2021-12-02T04:38:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c488e72c-e70b-4877-9cd6-e9188f6aadc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-02T02:28:06.000Z" + }, + "end": { + "$date": "2021-12-02T04:55:25.000Z" + }, + "events": [ + { + "uuid": "321e31ca-bab9-49c6-800b-68d2fe1c0ca5", + "start": { + "$date": "2021-12-02T02:28:06.000Z" + }, + "end": { + "$date": "2021-12-02T04:55:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cba2a3cb-197b-45b1-86ea-4bd62d3b8f1e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T02:52:56.000Z" + }, + "end": { + "$date": "2021-12-02T03:12:35.000Z" + }, + "events": [ + { + "uuid": "58ef81e4-d433-4140-8baf-429a2c7d66e1", + "start": { + "$date": "2021-12-02T02:52:56.000Z" + }, + "end": { + "$date": "2021-12-02T03:12:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b6591eca-c8a9-43f4-b4dc-8248306ae84b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-02T03:07:07.000Z" + }, + "end": { + "$date": "2021-12-02T05:10:33.000Z" + }, + "events": [ + { + "uuid": "3e7936f6-b64f-4f6a-b12e-3764e54ade47", + "start": { + "$date": "2021-12-02T03:07:07.000Z" + }, + "end": { + "$date": "2021-12-02T05:10:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "857d9166-35ab-4ecd-8eef-f2126230843c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-02T03:07:41.000Z" + }, + "end": { + "$date": "2021-12-02T04:58:07.000Z" + }, + "events": [ + { + "uuid": "15351243-c807-4654-bec2-6adf992fdfe1", + "start": { + "$date": "2021-12-02T03:07:41.000Z" + }, + "end": { + "$date": "2021-12-02T04:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "ab0d7be5-0769-4dc2-b182-09eec4c0c978", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T03:16:24.000Z" + }, + "end": { + "$date": "2021-12-02T03:39:13.000Z" + }, + "events": [ + { + "uuid": "f8b8460d-1e8e-4fbf-b0c8-882df1cbde72", + "start": { + "$date": "2021-12-02T03:16:24.000Z" + }, + "end": { + "$date": "2021-12-02T03:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d7af530b-ab38-4e10-8994-5964329e62a0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-02T03:26:36.000Z" + }, + "end": { + "$date": "2021-12-02T03:49:17.000Z" + }, + "events": [ + { + "uuid": "9008546a-a552-4b08-ac74-9cd753dca7f6", + "start": { + "$date": "2021-12-02T03:26:36.000Z" + }, + "end": { + "$date": "2021-12-02T03:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9f22f5b8-7c5b-481e-b6c8-cfcb28efd72b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-02T03:50:17.000Z" + }, + "end": { + "$date": "2021-12-02T07:36:25.000Z" + }, + "events": [ + { + "uuid": "3390bb60-89c1-4533-a85e-cc7ded161db3", + "start": { + "$date": "2021-12-02T03:50:17.000Z" + }, + "end": { + "$date": "2021-12-02T07:36:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3292c2fe-3dc1-4f74-a28c-275fea1392ff", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-02T04:17:59.000Z" + }, + "end": { + "$date": "2021-12-02T04:50:38.000Z" + }, + "events": [ + { + "uuid": "2ec8b127-6680-426a-9470-7df40ce80cd9", + "start": { + "$date": "2021-12-02T04:17:59.000Z" + }, + "end": { + "$date": "2021-12-02T04:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ab2a1fc-0076-404c-81e1-3ebba1102943", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T04:34:13.000Z" + }, + "end": { + "$date": "2021-12-02T04:48:13.000Z" + }, + "events": [ + { + "uuid": "0cd0e769-43ff-454d-9a29-6974b8ad4941", + "start": { + "$date": "2021-12-02T04:34:13.000Z" + }, + "end": { + "$date": "2021-12-02T04:48:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "af563f81-b8a4-45cc-b09f-e1de9ed7c7d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-02T04:39:08.000Z" + }, + "end": { + "$date": "2021-12-02T05:26:54.000Z" + }, + "events": [ + { + "uuid": "bd521ad4-e740-4491-9b31-c551d4e4d2a3", + "start": { + "$date": "2021-12-02T04:39:08.000Z" + }, + "end": { + "$date": "2021-12-02T05:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "263a7a9d-0c46-47d4-8c53-112e25eb877a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T04:50:00.000Z" + }, + "end": { + "$date": "2021-12-02T05:09:48.000Z" + }, + "events": [ + { + "uuid": "f5bfad94-d600-4c04-8b01-a9bbbab4389d", + "start": { + "$date": "2021-12-02T04:50:00.000Z" + }, + "end": { + "$date": "2021-12-02T05:09:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdb85745-9981-423a-95fc-541bce141fe3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-02T04:52:37.000Z" + }, + "end": { + "$date": "2021-12-02T05:14:45.000Z" + }, + "events": [ + { + "uuid": "c28cfab7-12d2-4c1b-b00d-30e91972b0e1", + "start": { + "$date": "2021-12-02T04:52:37.000Z" + }, + "end": { + "$date": "2021-12-02T05:14:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "75f0ba91-c831-4a3d-864b-c590bc978f73", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-02T05:09:35.000Z" + }, + "end": { + "$date": "2021-12-02T06:41:59.000Z" + }, + "events": [ + { + "uuid": "4e944c41-6d87-4245-ab54-d9420794e212", + "start": { + "$date": "2021-12-02T05:09:35.000Z" + }, + "end": { + "$date": "2021-12-02T06:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "394302cd-d628-4610-af70-3de675232fa8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T05:11:48.000Z" + }, + "end": { + "$date": "2021-12-02T05:40:12.000Z" + }, + "events": [ + { + "uuid": "7f39a2ab-b348-4e22-bed2-04e6b91e8f1a", + "start": { + "$date": "2021-12-02T05:11:48.000Z" + }, + "end": { + "$date": "2021-12-02T05:40:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aac7684a-5b80-4507-b3f0-0202600f70e8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-02T05:18:40.000Z" + }, + "end": { + "$date": "2021-12-02T05:33:58.000Z" + }, + "events": [ + { + "uuid": "e548c1c1-8138-42dd-b2bd-5bd6b5d8fb17", + "start": { + "$date": "2021-12-02T05:18:40.000Z" + }, + "end": { + "$date": "2021-12-02T05:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "20e38a40-b69b-45f1-9c34-31fc76bbde35", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-02T05:27:25.000Z" + }, + "end": { + "$date": "2021-12-02T05:45:02.000Z" + }, + "events": [ + { + "uuid": "755efe7c-3437-429b-8a2a-158a28e4f685", + "start": { + "$date": "2021-12-02T05:27:25.000Z" + }, + "end": { + "$date": "2021-12-02T05:45:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c5f365b-a58f-4f48-a6bd-24636c435249", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-02T05:35:57.000Z" + }, + "end": { + "$date": "2021-12-02T05:58:04.000Z" + }, + "events": [ + { + "uuid": "c4d2dcc3-bd0b-4bf5-a206-6379efdc3662", + "start": { + "$date": "2021-12-02T05:35:57.000Z" + }, + "end": { + "$date": "2021-12-02T05:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7245b305-a2de-48b8-b504-2083ce7eaf8f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-02T05:34:49.000Z" + }, + "end": { + "$date": "2021-12-02T06:21:44.000Z" + }, + "events": [ + { + "uuid": "9e0c483b-ac4d-47c7-98de-211466ef8594", + "start": { + "$date": "2021-12-02T05:34:49.000Z" + }, + "end": { + "$date": "2021-12-02T06:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7de779b-151a-4b54-a0d6-4e7a671350c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T05:41:41.000Z" + }, + "end": { + "$date": "2021-12-02T06:04:02.000Z" + }, + "events": [ + { + "uuid": "34ec0d63-b00f-4fdd-ba4d-f3b9ca6183ad", + "start": { + "$date": "2021-12-02T05:41:41.000Z" + }, + "end": { + "$date": "2021-12-02T06:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d936b5db-1de7-42db-8d5f-3e167d07170c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-02T05:45:47.000Z" + }, + "end": { + "$date": "2021-12-02T05:54:02.000Z" + }, + "events": [ + { + "uuid": "3daa2b1c-a272-451b-86e1-c26b6e27ee85", + "start": { + "$date": "2021-12-02T05:45:47.000Z" + }, + "end": { + "$date": "2021-12-02T05:54:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdcadb73-5cc6-4d35-a317-946603bf132e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-02T06:05:26.000Z" + }, + "end": { + "$date": "2021-12-02T06:28:07.000Z" + }, + "events": [ + { + "uuid": "521048e4-0bd9-4937-926b-73e31aeb62f8", + "start": { + "$date": "2021-12-02T06:05:26.000Z" + }, + "end": { + "$date": "2021-12-02T06:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fe9d6104-ecb4-40f5-979f-7e3825aa9230", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-02T07:02:20.000Z" + }, + "end": { + "$date": "2021-12-02T07:06:12.000Z" + }, + "events": [ + { + "uuid": "146d0693-8b08-478e-bce9-6b7f151da7f3", + "start": { + "$date": "2021-12-02T07:02:20.000Z" + }, + "end": { + "$date": "2021-12-02T07:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "56c43307-c7e3-4800-9ef1-e86f4f897112", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-02T08:30:19.000Z" + }, + "end": { + "$date": "2021-12-02T10:30:51.000Z" + }, + "events": [ + { + "uuid": "5298a233-fdae-4bc9-8a96-15cc5e2da56e", + "start": { + "$date": "2021-12-02T08:30:19.000Z" + }, + "end": { + "$date": "2021-12-02T10:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "350d234a-cbd2-4db8-b1c5-df59aab3419a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-02T18:06:14.000Z" + }, + "end": { + "$date": "2021-12-02T18:17:20.000Z" + }, + "events": [ + { + "uuid": "0f2384ca-894a-4ae0-96bb-c11ae0228a51", + "start": { + "$date": "2021-12-02T18:06:14.000Z" + }, + "end": { + "$date": "2021-12-02T18:17:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7d44eb31-9577-4d3a-9985-df9c75b3bc52", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-02T21:54:18.000Z" + }, + "end": { + "$date": "2021-12-02T23:58:50.000Z" + }, + "events": [ + { + "uuid": "a6c41dba-0a10-4cba-afcf-9b83f99ccba5", + "start": { + "$date": "2021-12-02T21:54:18.000Z" + }, + "end": { + "$date": "2021-12-02T23:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "6e6d6181-f302-4918-90e5-6178d576f0ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-02T23:05:21.000Z" + }, + "end": { + "$date": "2021-12-03T00:11:12.000Z" + }, + "events": [ + { + "uuid": "788fc0ec-3b6f-43e5-a3a7-5eb8126f8e1f", + "start": { + "$date": "2021-12-02T23:05:21.000Z" + }, + "end": { + "$date": "2021-12-03T00:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69f56f84-3bd2-47c6-b3c6-2615c338d096", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-02T23:51:19.000Z" + }, + "end": { + "$date": "2021-12-03T00:09:55.000Z" + }, + "events": [ + { + "uuid": "79956c0f-7883-44b2-9308-fc66198b6be0", + "start": { + "$date": "2021-12-02T23:51:19.000Z" + }, + "end": { + "$date": "2021-12-03T00:09:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a49481b-3ba8-4a0f-aef9-d8e55b74fcd7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T00:20:03.000Z" + }, + "end": { + "$date": "2021-12-03T00:55:40.000Z" + }, + "events": [ + { + "uuid": "e9f15509-bc7e-4caa-aa83-9ff6b63b125b", + "start": { + "$date": "2021-12-03T00:20:03.000Z" + }, + "end": { + "$date": "2021-12-03T00:55:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2092d8e-e492-4943-922a-36b08bcfdaf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-03T00:21:08.000Z" + }, + "end": { + "$date": "2021-12-03T00:39:08.000Z" + }, + "events": [ + { + "uuid": "f8c61c17-ee9f-4f71-97e1-3f23c6481070", + "start": { + "$date": "2021-12-03T00:21:08.000Z" + }, + "end": { + "$date": "2021-12-03T00:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4c22a13-e843-43ac-bcd7-7cb123de2bd8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-03T00:40:14.000Z" + }, + "end": { + "$date": "2021-12-03T01:01:44.000Z" + }, + "events": [ + { + "uuid": "3a9ff580-ad9f-4978-bde0-7a07574543ec", + "start": { + "$date": "2021-12-03T00:40:14.000Z" + }, + "end": { + "$date": "2021-12-03T01:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "211bd5e8-0bfd-4b25-9a2a-d86d3d4be3b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T01:09:47.000Z" + }, + "end": { + "$date": "2021-12-03T01:33:01.000Z" + }, + "events": [ + { + "uuid": "41ddab01-0bdd-4db1-af18-2d900ca5c7a6", + "start": { + "$date": "2021-12-03T01:09:47.000Z" + }, + "end": { + "$date": "2021-12-03T01:33:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e615f7c-13b4-45b5-ad7a-0fd6c1a4c2e3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T01:46:44.000Z" + }, + "end": { + "$date": "2021-12-03T02:20:02.000Z" + }, + "events": [ + { + "uuid": "652cf313-c9e5-4451-9559-835d7a07a2ca", + "start": { + "$date": "2021-12-03T01:46:44.000Z" + }, + "end": { + "$date": "2021-12-03T02:20:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2ce68fe3-b1fe-40c5-8cf6-f48a40296898", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-03T01:47:00.000Z" + }, + "end": { + "$date": "2021-12-03T02:54:27.000Z" + }, + "events": [ + { + "uuid": "ef103368-bdfe-4b8e-9c44-355b88fd7efc", + "start": { + "$date": "2021-12-03T01:47:00.000Z" + }, + "end": { + "$date": "2021-12-03T02:54:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "430c919a-385d-415c-8e31-8ff8e43557b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T02:23:50.000Z" + }, + "end": { + "$date": "2021-12-03T02:46:39.000Z" + }, + "events": [ + { + "uuid": "87bef3b7-f15b-423f-a8ec-25605ce31ce4", + "start": { + "$date": "2021-12-03T02:23:50.000Z" + }, + "end": { + "$date": "2021-12-03T02:46:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "444bb05b-11c4-4928-890a-c6e04ec13c7d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-03T02:41:33.000Z" + }, + "end": { + "$date": "2021-12-03T06:55:53.000Z" + }, + "events": [ + { + "uuid": "fc033185-78cd-4ad6-993a-d5b69a104082", + "start": { + "$date": "2021-12-03T02:41:33.000Z" + }, + "end": { + "$date": "2021-12-03T03:51:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbcdde05-24c3-40b4-a1dc-72b170bc7e91", + "start": { + "$date": "2021-12-03T03:51:33.000Z" + }, + "end": { + "$date": "2021-12-03T03:52:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2f64e1a-ed76-4c58-ab3a-0dd6062d5e58", + "start": { + "$date": "2021-12-03T03:52:33.000Z" + }, + "end": { + "$date": "2021-12-03T06:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "366f5b4a-2ac8-4127-9a47-bb1eadb25306", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T02:56:36.000Z" + }, + "end": { + "$date": "2021-12-03T03:29:23.000Z" + }, + "events": [ + { + "uuid": "73610160-413b-4dc8-b370-5415c7bdf3c6", + "start": { + "$date": "2021-12-03T02:56:36.000Z" + }, + "end": { + "$date": "2021-12-03T03:29:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "a4d07a52-29b7-4edc-a875-0535bf70b854", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-03T02:52:00.000Z" + }, + "end": { + "$date": "2021-12-03T02:54:24.000Z" + }, + "events": [ + { + "uuid": "ba51a365-c27f-441a-8c86-abfcb755a3ef", + "start": { + "$date": "2021-12-03T02:52:00.000Z" + }, + "end": { + "$date": "2021-12-03T02:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "baefd94c-5c3f-4281-a561-28f3888e7f61", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-03T02:54:36.000Z" + }, + "end": { + "$date": "2021-12-03T06:15:03.000Z" + }, + "events": [ + { + "uuid": "281ad7b8-35a9-4723-aa01-6ed7a0dcc1f2", + "start": { + "$date": "2021-12-03T02:54:36.000Z" + }, + "end": { + "$date": "2021-12-03T05:35:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed860c82-382f-4777-81e4-7fa31660e53d", + "start": { + "$date": "2021-12-03T05:35:36.000Z" + }, + "end": { + "$date": "2021-12-03T05:52:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "107234d0-d826-4aa9-91c8-b045205362f6", + "start": { + "$date": "2021-12-03T05:52:36.000Z" + }, + "end": { + "$date": "2021-12-03T06:15:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "b48e1096-637d-4016-b6d3-03cf74a458d2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-03T02:56:21.000Z" + }, + "end": { + "$date": "2021-12-03T03:30:58.000Z" + }, + "events": [ + { + "uuid": "7f228826-9e9d-40d3-898b-9e4dc6b5254a", + "start": { + "$date": "2021-12-03T02:56:21.000Z" + }, + "end": { + "$date": "2021-12-03T03:30:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fff83390-96fc-4fc3-a19a-259f6302d428", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-03T03:06:17.000Z" + }, + "end": { + "$date": "2021-12-03T03:11:52.000Z" + }, + "events": [ + { + "uuid": "e9b91100-4115-4542-b675-fd74b4e322f8", + "start": { + "$date": "2021-12-03T03:06:17.000Z" + }, + "end": { + "$date": "2021-12-03T03:11:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c0cf8029-f9ed-45ce-844a-4ed3535c5bdb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-03T03:18:10.000Z" + }, + "end": { + "$date": "2021-12-03T03:31:39.000Z" + }, + "events": [ + { + "uuid": "38a63afb-64ba-4a99-bafc-81e8e1bf5847", + "start": { + "$date": "2021-12-03T03:18:10.000Z" + }, + "end": { + "$date": "2021-12-03T03:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a20274f4-ac7d-45b0-bdda-3d853df17005", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T03:46:52.000Z" + }, + "end": { + "$date": "2021-12-03T04:17:37.000Z" + }, + "events": [ + { + "uuid": "ed157cd4-8fc0-4157-a75a-8d9e25e746e3", + "start": { + "$date": "2021-12-03T03:46:52.000Z" + }, + "end": { + "$date": "2021-12-03T04:17:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7e76f2ca-55c4-4dd0-bd09-ddbb44f5fe48", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-03T03:38:27.000Z" + }, + "end": { + "$date": "2021-12-03T10:58:23.000Z" + }, + "events": [ + { + "uuid": "9f0aa67b-bc5a-4f55-9755-51eb565bd802", + "start": { + "$date": "2021-12-03T03:38:27.000Z" + }, + "end": { + "$date": "2021-12-03T10:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7e229858-adf3-4c3f-8c4f-58c406646d6c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-03T07:28:32.000Z" + }, + "end": { + "$date": "2021-12-03T08:34:15.000Z" + }, + "events": [ + { + "uuid": "c52fd61f-4d8e-48fc-9f65-6a15ea5ca958", + "start": { + "$date": "2021-12-03T07:28:32.000Z" + }, + "end": { + "$date": "2021-12-03T08:34:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e713e337-7fe9-4420-a40b-cfd984c50e31", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-03T04:13:58.000Z" + }, + "end": { + "$date": "2021-12-03T04:51:30.000Z" + }, + "events": [ + { + "uuid": "35187430-014d-4b3d-9ed7-5187156e75a3", + "start": { + "$date": "2021-12-03T04:13:58.000Z" + }, + "end": { + "$date": "2021-12-03T04:51:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c5ea7ec-3c80-4ec0-bbef-e7bf4d40322b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T04:24:48.000Z" + }, + "end": { + "$date": "2021-12-03T04:50:53.000Z" + }, + "events": [ + { + "uuid": "b1ea4565-b738-465c-9722-4c714ed1b635", + "start": { + "$date": "2021-12-03T04:24:48.000Z" + }, + "end": { + "$date": "2021-12-03T04:50:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f0d1b94-9a97-4dea-b366-8fb13068956a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-03T04:49:39.000Z" + }, + "end": { + "$date": "2021-12-03T04:54:08.000Z" + }, + "events": [ + { + "uuid": "4c5f3dda-f543-4c00-b194-a2fedea10ce7", + "start": { + "$date": "2021-12-03T04:49:39.000Z" + }, + "end": { + "$date": "2021-12-03T04:54:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "949d33ac-8efe-47e2-924e-54c830ec2376", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-03T04:54:04.000Z" + }, + "end": { + "$date": "2021-12-03T05:06:18.000Z" + }, + "events": [ + { + "uuid": "7a584381-2344-4ca4-8763-7f0efcdeaa82", + "start": { + "$date": "2021-12-03T04:54:04.000Z" + }, + "end": { + "$date": "2021-12-03T05:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60939fca-7a7b-474b-b2ec-521c275dbf04", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T04:54:09.000Z" + }, + "end": { + "$date": "2021-12-03T04:56:40.000Z" + }, + "events": [ + { + "uuid": "4e952446-8497-4927-914d-804216764ea2", + "start": { + "$date": "2021-12-03T04:54:09.000Z" + }, + "end": { + "$date": "2021-12-03T04:56:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0c3b376-9438-44d1-9c3a-9c1c69fa7aaf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-03T04:58:51.000Z" + }, + "end": { + "$date": "2021-12-03T05:34:20.000Z" + }, + "events": [ + { + "uuid": "57449632-7646-49cb-96a2-1fe5088e6362", + "start": { + "$date": "2021-12-03T04:58:51.000Z" + }, + "end": { + "$date": "2021-12-03T05:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9f8118b-9587-4433-b238-dac34ca5e0ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T04:58:59.000Z" + }, + "end": { + "$date": "2021-12-03T05:34:18.000Z" + }, + "events": [ + { + "uuid": "93b5cbde-d6b6-4652-af6f-3f1e9f5d09a1", + "start": { + "$date": "2021-12-03T04:58:59.000Z" + }, + "end": { + "$date": "2021-12-03T05:34:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fea4655d-250b-4029-aea5-7456b7f1826d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-03T05:06:25.000Z" + }, + "end": { + "$date": "2021-12-03T06:16:36.000Z" + }, + "events": [ + { + "uuid": "8a4575f1-38ca-4143-ad78-f6cb1c1aa8e8", + "start": { + "$date": "2021-12-03T05:06:25.000Z" + }, + "end": { + "$date": "2021-12-03T06:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32ebf3b9-8053-43d3-a694-8bbdf3aa8531", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T05:39:05.000Z" + }, + "end": { + "$date": "2021-12-03T06:03:44.000Z" + }, + "events": [ + { + "uuid": "2ea9f9a2-91f3-45ad-8043-1fdf758613ca", + "start": { + "$date": "2021-12-03T05:39:05.000Z" + }, + "end": { + "$date": "2021-12-03T06:03:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "892d0460-3f91-428a-a1f4-52763d1ea5dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-03T05:39:03.000Z" + }, + "end": { + "$date": "2021-12-03T06:03:49.000Z" + }, + "events": [ + { + "uuid": "349b7d1a-03b8-415c-bbf5-98d02e5eb51f", + "start": { + "$date": "2021-12-03T05:39:03.000Z" + }, + "end": { + "$date": "2021-12-03T06:03:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9ce7c35-4a87-4aee-8f82-376ad79c328b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-03T05:37:38.000Z" + }, + "end": { + "$date": "2021-12-03T07:22:37.000Z" + }, + "events": [ + { + "uuid": "3334494c-fe39-401a-81e8-f4ebd2a88b2e", + "start": { + "$date": "2021-12-03T05:37:38.000Z" + }, + "end": { + "$date": "2021-12-03T07:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0eabb18e-36af-4f85-959d-6816ed8e8131", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-03T06:08:15.000Z" + }, + "end": { + "$date": "2021-12-03T06:47:00.000Z" + }, + "events": [ + { + "uuid": "7d5b799c-19d2-4c93-b459-a1022585f8a2", + "start": { + "$date": "2021-12-03T06:08:15.000Z" + }, + "end": { + "$date": "2021-12-03T06:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afde525b-d058-4aac-a0ad-b0497d8b7549", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T06:34:30.000Z" + }, + "end": { + "$date": "2021-12-03T07:06:39.000Z" + }, + "events": [ + { + "uuid": "7dc86140-dd61-4eb3-b20f-ee1acdf390c1", + "start": { + "$date": "2021-12-03T06:34:30.000Z" + }, + "end": { + "$date": "2021-12-03T07:06:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ff467d29-0c32-4b74-b5f5-de865581840e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-03T06:40:15.000Z" + }, + "end": { + "$date": "2021-12-03T06:42:16.000Z" + }, + "events": [ + { + "uuid": "d32219c6-be34-4a8e-a3ec-3ed58f3ee884", + "start": { + "$date": "2021-12-03T06:40:15.000Z" + }, + "end": { + "$date": "2021-12-03T06:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdc784b2-2c2e-45ae-ac1b-cc030c49b007", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-03T06:51:58.000Z" + }, + "end": { + "$date": "2021-12-03T07:13:40.000Z" + }, + "events": [ + { + "uuid": "d8d8d9f0-0123-4336-b185-fa37a29a254f", + "start": { + "$date": "2021-12-03T06:51:58.000Z" + }, + "end": { + "$date": "2021-12-03T07:13:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0813e835-9642-4484-ad9d-ff17d6c817d3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-03T06:57:23.000Z" + }, + "end": { + "$date": "2021-12-03T10:57:42.000Z" + }, + "events": [ + { + "uuid": "43f12976-4fb5-4b60-ad37-78c919637817", + "start": { + "$date": "2021-12-03T06:57:23.000Z" + }, + "end": { + "$date": "2021-12-03T10:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14d66d2a-787c-4570-b025-f8e9be36c907", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-03T07:14:56.000Z" + }, + "end": { + "$date": "2021-12-03T07:43:05.000Z" + }, + "events": [ + { + "uuid": "e5529634-d536-428d-bbdf-14dad4a08e0d", + "start": { + "$date": "2021-12-03T07:14:56.000Z" + }, + "end": { + "$date": "2021-12-03T07:43:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "855e7ffd-9e5a-4c8c-a688-f7da53ad4f5c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-03T07:17:21.000Z" + }, + "end": { + "$date": "2021-12-03T07:37:02.000Z" + }, + "events": [ + { + "uuid": "cd9f0bd5-73e2-4385-99dd-b73bd902dc41", + "start": { + "$date": "2021-12-03T07:17:21.000Z" + }, + "end": { + "$date": "2021-12-03T07:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2ac4a7b-4e73-4350-9a79-bd7692dd6d62", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-03T07:39:23.000Z" + }, + "end": { + "$date": "2021-12-03T08:10:01.000Z" + }, + "events": [ + { + "uuid": "a65efd24-7e62-4c8f-b741-c4f03cfaf38c", + "start": { + "$date": "2021-12-03T07:39:23.000Z" + }, + "end": { + "$date": "2021-12-03T08:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d45b3cca-f232-4fa5-94a4-e6704a80c4fd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-03T12:23:25.000Z" + }, + "end": { + "$date": "2021-12-03T13:49:31.000Z" + }, + "events": [ + { + "uuid": "89632166-32a9-41d9-9bf2-2a0be8b38e44", + "start": { + "$date": "2021-12-03T12:23:25.000Z" + }, + "end": { + "$date": "2021-12-03T13:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d65b6eb5-4b3b-4dce-a91f-ab201ffdf398", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-03T17:59:16.000Z" + }, + "end": { + "$date": "2021-12-03T18:19:28.000Z" + }, + "events": [ + { + "uuid": "efdd1768-610f-49be-9fab-330e0a075013", + "start": { + "$date": "2021-12-03T17:59:16.000Z" + }, + "end": { + "$date": "2021-12-03T18:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "9924eba3-5300-4d40-b777-7489464243d4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-03T18:20:24.000Z" + }, + "end": { + "$date": "2021-12-03T18:30:15.000Z" + }, + "events": [ + { + "uuid": "675d5886-5139-49ed-a63e-3a61696b8a77", + "start": { + "$date": "2021-12-03T18:20:24.000Z" + }, + "end": { + "$date": "2021-12-03T18:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "2eee3000-089a-40b9-a3e1-0f8a8f8a6c28", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-03T18:51:59.000Z" + }, + "end": { + "$date": "2021-12-03T18:59:00.000Z" + }, + "events": [ + { + "uuid": "1b96a100-4ba9-4c11-851c-1cbcc0e306de", + "start": { + "$date": "2021-12-03T18:51:59.000Z" + }, + "end": { + "$date": "2021-12-03T18:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd164741-2a36-4269-96b3-948ac0d26aa9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-03T19:03:56.000Z" + }, + "end": { + "$date": "2021-12-03T19:19:08.000Z" + }, + "events": [ + { + "uuid": "d6b1ecf0-b57e-4814-8d72-eb852ee09f71", + "start": { + "$date": "2021-12-03T19:03:56.000Z" + }, + "end": { + "$date": "2021-12-03T19:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "896726da-d713-4307-95d2-8481787bb578", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-03T21:18:41.000Z" + }, + "end": { + "$date": "2021-12-03T23:59:10.000Z" + }, + "events": [ + { + "uuid": "a168b09b-5286-4fe8-a99b-985c22b74695", + "start": { + "$date": "2021-12-03T21:18:41.000Z" + }, + "end": { + "$date": "2021-12-03T23:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8490641f-a8cf-42fb-b077-989ab7921304", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-03T22:12:17.000Z" + }, + "end": { + "$date": "2021-12-03T22:43:20.000Z" + }, + "events": [ + { + "uuid": "2e00fd57-6285-4953-8597-1e2714db8793", + "start": { + "$date": "2021-12-03T22:12:17.000Z" + }, + "end": { + "$date": "2021-12-03T22:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "1bd5dacc-8d0a-44f1-9f06-7615eb5172cb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-03T22:34:16.000Z" + }, + "end": { + "$date": "2021-12-03T23:27:05.000Z" + }, + "events": [ + { + "uuid": "4437cd59-7c59-4eff-834c-c44cc21dfee6", + "start": { + "$date": "2021-12-03T22:34:16.000Z" + }, + "end": { + "$date": "2021-12-03T22:57:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3d480f17-cd89-4a34-81c7-18d8a705d48f", + "start": { + "$date": "2021-12-03T22:57:16.000Z" + }, + "end": { + "$date": "2021-12-03T23:21:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9bbf5b1f-0818-4d07-a8fc-7f639073bb1f", + "start": { + "$date": "2021-12-03T23:21:16.000Z" + }, + "end": { + "$date": "2021-12-03T23:27:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64007dd1-a421-4c57-9c7f-417d1d8cd896", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-03T22:50:44.000Z" + }, + "end": { + "$date": "2021-12-03T23:14:47.000Z" + }, + "events": [ + { + "uuid": "ef9cbf8b-6026-4d11-8349-cdff1e6947a8", + "start": { + "$date": "2021-12-03T22:50:44.000Z" + }, + "end": { + "$date": "2021-12-03T23:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "64530c4e-ea78-45a9-9c52-ae2923099529", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-04T00:25:05.000Z" + }, + "end": { + "$date": "2021-12-04T00:36:56.000Z" + }, + "events": [ + { + "uuid": "1ce06ce7-18d5-45d3-af6c-05040707691c", + "start": { + "$date": "2021-12-04T00:25:05.000Z" + }, + "end": { + "$date": "2021-12-04T00:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "68b8575c-e044-4b82-a0cb-bd49ec40db78", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-04T00:37:01.000Z" + }, + "end": { + "$date": "2021-12-04T01:27:23.000Z" + }, + "events": [ + { + "uuid": "385cdf48-1f52-4e6d-b8db-2a1893e16c5e", + "start": { + "$date": "2021-12-04T00:37:01.000Z" + }, + "end": { + "$date": "2021-12-04T01:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "418a515a-7faf-4c45-a3b4-4d11bb037b4e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T00:38:01.000Z" + }, + "end": { + "$date": "2021-12-04T01:55:08.000Z" + }, + "events": [ + { + "uuid": "426242ec-1ba7-458a-b71e-43498d9d5fca", + "start": { + "$date": "2021-12-04T00:38:01.000Z" + }, + "end": { + "$date": "2021-12-04T01:55:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "630b3af0-a933-4f05-8a87-33509be1b36b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-04T01:25:41.000Z" + }, + "end": { + "$date": "2021-12-04T03:12:03.000Z" + }, + "events": [ + { + "uuid": "6ac2d9ff-ce5c-4b14-b86e-b3ab05f3d1cb", + "start": { + "$date": "2021-12-04T01:25:41.000Z" + }, + "end": { + "$date": "2021-12-04T03:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3e4c9f9d-fca6-4d6c-8fb5-a68a9fcce967", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-04T03:01:11.000Z" + }, + "end": { + "$date": "2021-12-04T03:26:42.000Z" + }, + "events": [ + { + "uuid": "7c457b17-6fc2-43da-8aa7-154fdab6b78c", + "start": { + "$date": "2021-12-04T03:01:11.000Z" + }, + "end": { + "$date": "2021-12-04T03:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "79ed4b94-4e81-41bd-970a-9bb024738003", + "uuid": "cd1dd15b-fa32-428d-a86a-7ee131517662", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-04T03:07:22.000Z" + }, + "end": { + "$date": "2021-12-04T05:02:32.000Z" + }, + "events": [ + { + "uuid": "9aca78d4-e0c4-42f5-baa5-ce01e2880d52", + "start": { + "$date": "2021-12-04T03:07:22.000Z" + }, + "end": { + "$date": "2021-12-04T05:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e8aafbbb-fd3e-483e-9763-759b1240e729", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-04T03:12:13.000Z" + }, + "end": { + "$date": "2021-12-04T07:47:59.000Z" + }, + "events": [ + { + "uuid": "bd10420b-1fca-4f88-9964-9a59ca98155d", + "start": { + "$date": "2021-12-04T03:12:13.000Z" + }, + "end": { + "$date": "2021-12-04T04:42:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d734bfd2-3f7e-4ec5-aa04-0e4c12fc8fc0", + "start": { + "$date": "2021-12-04T04:42:13.000Z" + }, + "end": { + "$date": "2021-12-04T05:15:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44d14751-0094-42f6-949e-0f750475c89e", + "start": { + "$date": "2021-12-04T05:15:13.000Z" + }, + "end": { + "$date": "2021-12-04T05:26:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f5fd41f-eb55-4e3f-b820-312fde7cb3a7", + "start": { + "$date": "2021-12-04T05:26:13.000Z" + }, + "end": { + "$date": "2021-12-04T05:32:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "42a0821f-f79b-4bf8-a05b-7f4e35d6aa3f", + "start": { + "$date": "2021-12-04T05:32:13.000Z" + }, + "end": { + "$date": "2021-12-04T07:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "10102f31-22e9-42c4-84b5-8585240f987b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-04T03:34:33.000Z" + }, + "end": { + "$date": "2021-12-04T03:59:57.000Z" + }, + "events": [ + { + "uuid": "84a2ef26-0eb1-47f7-a1ba-0d92bde030ce", + "start": { + "$date": "2021-12-04T03:34:33.000Z" + }, + "end": { + "$date": "2021-12-04T03:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "80a92a63-2f6c-4fb8-961b-d515470af1cd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-04T04:00:37.000Z" + }, + "end": { + "$date": "2021-12-04T04:28:35.000Z" + }, + "events": [ + { + "uuid": "a4b9e81b-0c3b-4076-af5f-fc281e64f8ae", + "start": { + "$date": "2021-12-04T04:00:37.000Z" + }, + "end": { + "$date": "2021-12-04T04:28:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "142ef938-01a1-4479-99a6-45080127db21", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-04T04:56:23.000Z" + }, + "end": { + "$date": "2021-12-04T11:05:15.000Z" + }, + "events": [ + { + "uuid": "b2d65acc-0ad4-46e1-befe-10e09416916e", + "start": { + "$date": "2021-12-04T04:56:23.000Z" + }, + "end": { + "$date": "2021-12-04T11:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "aab5500c-e95d-4376-aa8d-129ed5ff8c8b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-04T05:01:47.000Z" + }, + "end": { + "$date": "2021-12-04T06:11:45.000Z" + }, + "events": [ + { + "uuid": "ece65827-18e2-4b1f-8cdf-ca03088cf5ba", + "start": { + "$date": "2021-12-04T05:01:47.000Z" + }, + "end": { + "$date": "2021-12-04T06:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0457e7cf-65c3-4bc5-bbea-34d59ef3192b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-04T05:03:40.000Z" + }, + "end": { + "$date": "2021-12-04T06:53:15.000Z" + }, + "events": [ + { + "uuid": "3a459323-11f6-422b-aa33-b07a8f32918a", + "start": { + "$date": "2021-12-04T05:03:40.000Z" + }, + "end": { + "$date": "2021-12-04T06:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "793320f4-a9ec-4331-b145-7dbee4bad5d6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T05:39:45.000Z" + }, + "end": { + "$date": "2021-12-04T05:55:56.000Z" + }, + "events": [ + { + "uuid": "7af1db3b-f4a9-4174-88ca-9cda838b81c1", + "start": { + "$date": "2021-12-04T05:39:45.000Z" + }, + "end": { + "$date": "2021-12-04T05:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "26aa5397-0167-4951-90be-ca0f38ab80de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T05:45:50.000Z" + }, + "end": { + "$date": "2021-12-04T06:25:42.000Z" + }, + "events": [ + { + "uuid": "2a95a64a-8969-4878-87ad-15ff37ee1c22", + "start": { + "$date": "2021-12-04T05:45:50.000Z" + }, + "end": { + "$date": "2021-12-04T06:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e480f273-2dba-4e77-b000-660556cc1610", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T05:59:02.000Z" + }, + "end": { + "$date": "2021-12-04T06:13:13.000Z" + }, + "events": [ + { + "uuid": "889c9fb5-33b2-4b2f-bcd7-8a1e6b974f9d", + "start": { + "$date": "2021-12-04T05:59:02.000Z" + }, + "end": { + "$date": "2021-12-04T06:13:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a86585b-2427-4187-a7a1-11aa8c56c267", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T06:15:29.000Z" + }, + "end": { + "$date": "2021-12-04T06:37:10.000Z" + }, + "events": [ + { + "uuid": "a043dc33-9cd0-4b17-9b32-bcbb0a9063c7", + "start": { + "$date": "2021-12-04T06:15:29.000Z" + }, + "end": { + "$date": "2021-12-04T06:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fe79cf5e-5414-4d29-94de-c6ddad408ef7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-04T06:28:46.000Z" + }, + "end": { + "$date": "2021-12-04T08:24:37.000Z" + }, + "events": [ + { + "uuid": "9a1ef2fa-2e71-464d-bddd-070da13545e9", + "start": { + "$date": "2021-12-04T06:28:46.000Z" + }, + "end": { + "$date": "2021-12-04T08:24:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a834b4ec-76b8-4b75-bb78-0951ed67c172", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T06:41:27.000Z" + }, + "end": { + "$date": "2021-12-04T06:58:04.000Z" + }, + "events": [ + { + "uuid": "0902f5c4-d823-4c5e-ad62-6143d595ca94", + "start": { + "$date": "2021-12-04T06:41:27.000Z" + }, + "end": { + "$date": "2021-12-04T06:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8c55fe3e-31ae-4f45-8d9e-15bbaa752728", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T06:53:33.000Z" + }, + "end": { + "$date": "2021-12-04T11:05:09.000Z" + }, + "events": [ + { + "uuid": "f0c673ae-2c9e-450b-b5ba-082ae5bede48", + "start": { + "$date": "2021-12-04T06:53:33.000Z" + }, + "end": { + "$date": "2021-12-04T11:05:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "292d60f9-6c0f-4612-9cec-9b8088847f27", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-04T06:53:58.000Z" + }, + "end": { + "$date": "2021-12-04T07:47:14.000Z" + }, + "events": [ + { + "uuid": "4a227aa8-579f-45eb-80ee-812601c87209", + "start": { + "$date": "2021-12-04T06:53:58.000Z" + }, + "end": { + "$date": "2021-12-04T07:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3e9bf797-e73a-4009-8e12-5c3ef8ddc5e0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-04T06:54:02.000Z" + }, + "end": { + "$date": "2021-12-04T09:30:15.000Z" + }, + "events": [ + { + "uuid": "aee23712-9abf-48b9-859c-d0f0635f6a2a", + "start": { + "$date": "2021-12-04T06:54:02.000Z" + }, + "end": { + "$date": "2021-12-04T09:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa52401f-274c-419a-9590-6cee6981ceb9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T07:02:34.000Z" + }, + "end": { + "$date": "2021-12-04T07:19:46.000Z" + }, + "events": [ + { + "uuid": "cb95cbc5-1628-4804-8406-4300dbbcd3d7", + "start": { + "$date": "2021-12-04T07:02:34.000Z" + }, + "end": { + "$date": "2021-12-04T07:19:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2fb0690-5ea6-4f57-912f-4e86cf6dd5db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T07:21:46.000Z" + }, + "end": { + "$date": "2021-12-04T07:49:39.000Z" + }, + "events": [ + { + "uuid": "8966a932-33aa-4efa-94a4-b626e51f92e9", + "start": { + "$date": "2021-12-04T07:21:46.000Z" + }, + "end": { + "$date": "2021-12-04T07:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ffa85ef-8a88-454a-be1f-2dac7a769d45", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T07:51:54.000Z" + }, + "end": { + "$date": "2021-12-04T08:09:36.000Z" + }, + "events": [ + { + "uuid": "7729dbb0-a78f-464b-afec-0dda428c88c4", + "start": { + "$date": "2021-12-04T07:51:54.000Z" + }, + "end": { + "$date": "2021-12-04T08:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "005bc280-5de8-4f04-b222-4e36ce8a53d3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T08:18:22.000Z" + }, + "end": { + "$date": "2021-12-04T08:41:08.000Z" + }, + "events": [ + { + "uuid": "e4f2d752-b847-4082-bcff-6f305af50709", + "start": { + "$date": "2021-12-04T08:18:22.000Z" + }, + "end": { + "$date": "2021-12-04T08:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55846534-df49-43b4-a329-7ed6bec96fdb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T08:18:24.000Z" + }, + "end": { + "$date": "2021-12-04T08:41:19.000Z" + }, + "events": [ + { + "uuid": "20040779-e301-4a02-8dbc-e4d3f41ce646", + "start": { + "$date": "2021-12-04T08:18:24.000Z" + }, + "end": { + "$date": "2021-12-04T08:41:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08e51087-f09d-4b0b-b845-dc554d24edde", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T08:43:38.000Z" + }, + "end": { + "$date": "2021-12-04T09:06:35.000Z" + }, + "events": [ + { + "uuid": "1f57b60d-7a21-44a4-b9e9-ae1997c0e70c", + "start": { + "$date": "2021-12-04T08:43:38.000Z" + }, + "end": { + "$date": "2021-12-04T09:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28176720-af89-47a4-951c-5cf9c9893f83", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T08:43:40.000Z" + }, + "end": { + "$date": "2021-12-04T09:06:34.000Z" + }, + "events": [ + { + "uuid": "ca2d196f-f1cd-49c7-bfab-4368fd6bcf89", + "start": { + "$date": "2021-12-04T08:43:40.000Z" + }, + "end": { + "$date": "2021-12-04T09:06:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5376fa2f-2083-426a-a4d9-09a770cc1558", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-04T09:08:39.000Z" + }, + "end": { + "$date": "2021-12-04T09:33:30.000Z" + }, + "events": [ + { + "uuid": "47d4cb09-1a73-40fe-b29a-7312ecb3cb1c", + "start": { + "$date": "2021-12-04T09:08:39.000Z" + }, + "end": { + "$date": "2021-12-04T09:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68f5be68-4edd-42fe-b788-7592079394c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T09:08:40.000Z" + }, + "end": { + "$date": "2021-12-04T09:33:39.000Z" + }, + "events": [ + { + "uuid": "d1de984e-ed22-4263-b804-70f76ddd3634", + "start": { + "$date": "2021-12-04T09:08:40.000Z" + }, + "end": { + "$date": "2021-12-04T09:33:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d7ed7ff-a5d1-40ed-819e-87a43c4c43f0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T09:57:41.000Z" + }, + "end": { + "$date": "2021-12-04T10:02:43.000Z" + }, + "events": [ + { + "uuid": "343b3d47-ef8f-4bba-bbc0-5a2c22dfc8e9", + "start": { + "$date": "2021-12-04T09:57:41.000Z" + }, + "end": { + "$date": "2021-12-04T10:02:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52aeb8cb-77ab-4f67-85ac-9f9aeb97307e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T10:11:01.000Z" + }, + "end": { + "$date": "2021-12-04T10:41:19.000Z" + }, + "events": [ + { + "uuid": "2551ce10-b331-4389-b6d6-c32c41527589", + "start": { + "$date": "2021-12-04T10:11:01.000Z" + }, + "end": { + "$date": "2021-12-04T10:41:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "322b731f-de5b-4dd7-a119-2294690dbc78", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T10:47:37.000Z" + }, + "end": { + "$date": "2021-12-04T11:20:22.000Z" + }, + "events": [ + { + "uuid": "795bf7c6-0fc1-49c7-89df-b5cd1f63b20a", + "start": { + "$date": "2021-12-04T10:47:37.000Z" + }, + "end": { + "$date": "2021-12-04T11:20:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09b9d367-ab0e-4ccf-b2fc-15e8e1f2d7b7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T11:24:27.000Z" + }, + "end": { + "$date": "2021-12-04T11:40:02.000Z" + }, + "events": [ + { + "uuid": "d8fb2d43-2a2b-4898-9a92-c0b236d3a324", + "start": { + "$date": "2021-12-04T11:24:27.000Z" + }, + "end": { + "$date": "2021-12-04T11:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5a5b2af-80eb-4db4-9d5c-b9bfedb5f040", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T11:24:28.000Z" + }, + "end": { + "$date": "2021-12-04T11:39:52.000Z" + }, + "events": [ + { + "uuid": "15a218c8-89da-4339-bc10-8d66a7efa86b", + "start": { + "$date": "2021-12-04T11:24:28.000Z" + }, + "end": { + "$date": "2021-12-04T11:39:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0253b781-fceb-4b33-9671-c6ebf87b87f9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T11:41:57.000Z" + }, + "end": { + "$date": "2021-12-04T11:54:27.000Z" + }, + "events": [ + { + "uuid": "0d587792-0321-41c6-9b85-a50f5c00e0d2", + "start": { + "$date": "2021-12-04T11:41:57.000Z" + }, + "end": { + "$date": "2021-12-04T11:54:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34c44bc7-cb30-4743-a54a-3bb1fdf62bc5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T11:42:08.000Z" + }, + "end": { + "$date": "2021-12-04T11:54:22.000Z" + }, + "events": [ + { + "uuid": "673f29b3-d0b9-4958-8013-2a59bb15daf0", + "start": { + "$date": "2021-12-04T11:42:08.000Z" + }, + "end": { + "$date": "2021-12-04T11:54:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "730aa916-cb8a-4d6b-a843-83587c065b90", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T11:59:08.000Z" + }, + "end": { + "$date": "2021-12-04T12:23:40.000Z" + }, + "events": [ + { + "uuid": "a44b150d-8a47-4c1e-8332-6c815b6ed1d0", + "start": { + "$date": "2021-12-04T11:59:08.000Z" + }, + "end": { + "$date": "2021-12-04T12:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4982f26b-05e8-4e1d-b595-48f1bfd82564", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T11:59:03.000Z" + }, + "end": { + "$date": "2021-12-04T12:23:38.000Z" + }, + "events": [ + { + "uuid": "3253d4de-6d9b-466f-a36f-1e6370982aa8", + "start": { + "$date": "2021-12-04T11:59:03.000Z" + }, + "end": { + "$date": "2021-12-04T12:23:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1579a24c-7e20-4b9e-9c16-3f3e366c5898", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T12:25:38.000Z" + }, + "end": { + "$date": "2021-12-04T12:48:48.000Z" + }, + "events": [ + { + "uuid": "0d049e16-8182-4694-9d83-87301ba76bd0", + "start": { + "$date": "2021-12-04T12:25:38.000Z" + }, + "end": { + "$date": "2021-12-04T12:48:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6861f52-281f-4d48-9d1d-fcab6bf7addc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T12:25:39.000Z" + }, + "end": { + "$date": "2021-12-04T12:48:53.000Z" + }, + "events": [ + { + "uuid": "0e155e2b-5166-46b6-8b60-bae2b9e2de72", + "start": { + "$date": "2021-12-04T12:25:39.000Z" + }, + "end": { + "$date": "2021-12-04T12:48:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8208fe84-a1dd-4d20-8217-ae9d27f84c37", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T12:54:19.000Z" + }, + "end": { + "$date": "2021-12-04T13:17:00.000Z" + }, + "events": [ + { + "uuid": "34cfc11f-f850-4c4d-9d51-db28677ef6ec", + "start": { + "$date": "2021-12-04T12:54:19.000Z" + }, + "end": { + "$date": "2021-12-04T13:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3aac4cf7-8e7c-4317-8542-8fe4844bc501", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T12:54:20.000Z" + }, + "end": { + "$date": "2021-12-04T13:16:59.000Z" + }, + "events": [ + { + "uuid": "46709a96-2de7-49e6-8c7e-87d1d28f1b69", + "start": { + "$date": "2021-12-04T12:54:20.000Z" + }, + "end": { + "$date": "2021-12-04T13:16:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "589877c7-8cb4-4447-a1eb-8ebd0ac91b72", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T13:22:20.000Z" + }, + "end": { + "$date": "2021-12-04T13:36:50.000Z" + }, + "events": [ + { + "uuid": "5bbaf892-f6fd-4a8c-bd98-ce79a7559cfb", + "start": { + "$date": "2021-12-04T13:22:20.000Z" + }, + "end": { + "$date": "2021-12-04T13:36:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3358755-5160-4f0d-a25e-d370cd1cecb6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T13:22:30.000Z" + }, + "end": { + "$date": "2021-12-04T13:36:57.000Z" + }, + "events": [ + { + "uuid": "9257704e-2472-49c3-bfa8-59aa2a5d3446", + "start": { + "$date": "2021-12-04T13:22:30.000Z" + }, + "end": { + "$date": "2021-12-04T13:36:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1504a863-f4d9-4707-9620-97881efa0d74", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T13:40:01.000Z" + }, + "end": { + "$date": "2021-12-04T14:02:23.000Z" + }, + "events": [ + { + "uuid": "3f793bd4-4bf3-463a-99af-43fb3adacad1", + "start": { + "$date": "2021-12-04T13:40:01.000Z" + }, + "end": { + "$date": "2021-12-04T14:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bdb6312-762c-4bf2-8826-53374c3b2204", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T13:40:01.000Z" + }, + "end": { + "$date": "2021-12-04T14:02:20.000Z" + }, + "events": [ + { + "uuid": "14034b96-70ef-4d66-8db6-9943f83a4669", + "start": { + "$date": "2021-12-04T13:40:01.000Z" + }, + "end": { + "$date": "2021-12-04T14:02:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa845ab8-5c57-4a4d-ba2c-db2f0261d999", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T14:04:36.000Z" + }, + "end": { + "$date": "2021-12-04T14:38:52.000Z" + }, + "events": [ + { + "uuid": "adbc21ed-21b7-49c1-b7df-9e4e0b96c31d", + "start": { + "$date": "2021-12-04T14:04:36.000Z" + }, + "end": { + "$date": "2021-12-04T14:38:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e574f45-a92e-43e7-9481-60ff1f895424", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T14:04:31.000Z" + }, + "end": { + "$date": "2021-12-04T14:38:51.000Z" + }, + "events": [ + { + "uuid": "79b8e3f2-1f99-4f7e-ac11-56e5cea132a4", + "start": { + "$date": "2021-12-04T14:04:31.000Z" + }, + "end": { + "$date": "2021-12-04T14:38:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d71cd9cf-6069-4345-b439-4e41e9c0b5c9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-04T14:40:52.000Z" + }, + "end": { + "$date": "2021-12-04T15:00:37.000Z" + }, + "events": [ + { + "uuid": "6fe087fe-4f34-432b-b253-f560b2c7b5b0", + "start": { + "$date": "2021-12-04T14:40:52.000Z" + }, + "end": { + "$date": "2021-12-04T15:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb1099cd-a8d5-4c40-bd53-60ac2ef4d36c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T14:41:03.000Z" + }, + "end": { + "$date": "2021-12-04T15:00:42.000Z" + }, + "events": [ + { + "uuid": "20a2126f-db8e-41bd-bce5-99dd4bc4341a", + "start": { + "$date": "2021-12-04T14:41:03.000Z" + }, + "end": { + "$date": "2021-12-04T15:00:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16fa541b-6e05-42f6-a675-d5d250579e1e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T16:11:23.000Z" + }, + "end": { + "$date": "2021-12-04T16:38:32.000Z" + }, + "events": [ + { + "uuid": "bf97c901-6933-4906-8ce3-58a96a371a18", + "start": { + "$date": "2021-12-04T16:11:23.000Z" + }, + "end": { + "$date": "2021-12-04T16:38:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37006f76-b821-460f-b439-89816544ccd2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T16:38:44.000Z" + }, + "end": { + "$date": "2021-12-04T16:40:34.000Z" + }, + "events": [ + { + "uuid": "1ba04cef-0b8e-4253-a14b-fc7384ab868c", + "start": { + "$date": "2021-12-04T16:38:44.000Z" + }, + "end": { + "$date": "2021-12-04T16:40:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "fbf0cd62-218a-4ebf-bda7-aab9ec05c48e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T16:40:49.000Z" + }, + "end": { + "$date": "2021-12-04T18:28:43.000Z" + }, + "events": [ + { + "uuid": "cfeecbe6-4272-4029-99d5-286ef32a703f", + "start": { + "$date": "2021-12-04T16:40:49.000Z" + }, + "end": { + "$date": "2021-12-04T18:28:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f83e2621-db5e-4d3a-ac22-e0519e4a1943", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-04T17:07:26.000Z" + }, + "end": { + "$date": "2021-12-04T17:40:33.000Z" + }, + "events": [ + { + "uuid": "59a894f0-a32f-4995-92da-3c95788f35dc", + "start": { + "$date": "2021-12-04T17:07:26.000Z" + }, + "end": { + "$date": "2021-12-04T17:40:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12c247ad-f87d-4b3a-9bac-41a6a97aeed9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-04T19:13:22.000Z" + }, + "end": { + "$date": "2021-12-04T19:34:39.000Z" + }, + "events": [ + { + "uuid": "84615d71-90af-45ed-9467-b0e8cb981a5b", + "start": { + "$date": "2021-12-04T19:13:22.000Z" + }, + "end": { + "$date": "2021-12-04T19:34:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8f8f1ab-4438-4f3b-9d33-b7e802e4f774", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T19:31:33.000Z" + }, + "end": { + "$date": "2021-12-04T19:56:23.000Z" + }, + "events": [ + { + "uuid": "a018f58b-6040-4ab2-b950-69b98c562957", + "start": { + "$date": "2021-12-04T19:31:33.000Z" + }, + "end": { + "$date": "2021-12-04T19:56:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e99c6399-cbcc-473a-b4ff-55fe9cd95c49", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T19:36:54.000Z" + }, + "end": { + "$date": "2021-12-04T20:05:51.000Z" + }, + "events": [ + { + "uuid": "f1e6211e-348f-488f-8e93-9894f08af250", + "start": { + "$date": "2021-12-04T19:36:54.000Z" + }, + "end": { + "$date": "2021-12-04T20:05:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7666af4a-12bf-40d5-b416-0591558eab4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-04T19:37:25.000Z" + }, + "end": { + "$date": "2021-12-04T19:53:53.000Z" + }, + "events": [ + { + "uuid": "d3ef3869-2fe4-4e85-9dbf-810a0fa6441d", + "start": { + "$date": "2021-12-04T19:37:25.000Z" + }, + "end": { + "$date": "2021-12-04T19:53:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab4218e4-8853-4b4b-a87c-cd0a2010213b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-04T19:56:07.000Z" + }, + "end": { + "$date": "2021-12-04T20:20:24.000Z" + }, + "events": [ + { + "uuid": "3debc0bd-7d34-48c4-8a8b-275f5c99213b", + "start": { + "$date": "2021-12-04T19:56:07.000Z" + }, + "end": { + "$date": "2021-12-04T20:20:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2ca40e9-0aa0-4ff0-a96f-c895f021a043", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T19:57:44.000Z" + }, + "end": { + "$date": "2021-12-04T20:36:35.000Z" + }, + "events": [ + { + "uuid": "5ddc8ff1-c4c6-434e-8324-8d4ac8cf5ad3", + "start": { + "$date": "2021-12-04T19:57:44.000Z" + }, + "end": { + "$date": "2021-12-04T20:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "8b550ce2-96b1-473f-9aa1-437cf87ebae1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-04T20:01:47.000Z" + }, + "end": { + "$date": "2021-12-04T21:04:23.000Z" + }, + "events": [ + { + "uuid": "430c7f52-5d41-449a-ab42-50d8367730ef", + "start": { + "$date": "2021-12-04T20:01:47.000Z" + }, + "end": { + "$date": "2021-12-04T21:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5558a5af-b263-4394-b6a3-d35eb835af69", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T20:15:08.000Z" + }, + "end": { + "$date": "2021-12-04T20:31:28.000Z" + }, + "events": [ + { + "uuid": "424573d6-9b04-4111-9728-49374f5f14ab", + "start": { + "$date": "2021-12-04T20:15:08.000Z" + }, + "end": { + "$date": "2021-12-04T20:31:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "79ed4b94-4e81-41bd-970a-9bb024738003", + "uuid": "b40057fa-dbbd-4d79-aadf-02ae67691641", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-04T20:29:17.000Z" + }, + "end": { + "$date": "2021-12-04T23:16:53.000Z" + }, + "events": [ + { + "uuid": "aee66f23-dafd-40e0-9060-e65b87622bb7", + "start": { + "$date": "2021-12-04T20:29:17.000Z" + }, + "end": { + "$date": "2021-12-04T23:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a904673-f013-4cd3-a50d-e04f4c9923bd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T20:39:19.000Z" + }, + "end": { + "$date": "2021-12-04T21:24:21.000Z" + }, + "events": [ + { + "uuid": "489a18a4-bdb8-49fd-ba56-215095a84e0e", + "start": { + "$date": "2021-12-04T20:39:19.000Z" + }, + "end": { + "$date": "2021-12-04T21:24:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "da64e9a1-e1d8-4eb5-8e8c-469de23abcf2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-04T20:36:16.000Z" + }, + "end": { + "$date": "2021-12-04T23:01:21.000Z" + }, + "events": [ + { + "uuid": "935c5ef5-2fa2-48be-96f0-13d5cb685d62", + "start": { + "$date": "2021-12-04T20:36:16.000Z" + }, + "end": { + "$date": "2021-12-04T23:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f9939e6-edef-4758-8fd9-c1c93d2e31cc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T20:39:27.000Z" + }, + "end": { + "$date": "2021-12-04T20:53:01.000Z" + }, + "events": [ + { + "uuid": "d38a6093-cf46-420c-b423-515a20090980", + "start": { + "$date": "2021-12-04T20:39:27.000Z" + }, + "end": { + "$date": "2021-12-04T20:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1708014e-7448-4fa6-b878-f090107eb23e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T20:56:12.000Z" + }, + "end": { + "$date": "2021-12-04T21:16:02.000Z" + }, + "events": [ + { + "uuid": "607442b5-85e5-44d4-b350-40fc6a40d32d", + "start": { + "$date": "2021-12-04T20:56:12.000Z" + }, + "end": { + "$date": "2021-12-04T21:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46a402f5-e5ce-4fda-884c-858955fde7ad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T21:16:58.000Z" + }, + "end": { + "$date": "2021-12-04T21:36:48.000Z" + }, + "events": [ + { + "uuid": "a59c01b6-6436-4b5b-908e-1448e752592e", + "start": { + "$date": "2021-12-04T21:16:58.000Z" + }, + "end": { + "$date": "2021-12-04T21:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b63f0d67-8d0a-4ef1-8edd-9286de41b77d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-04T21:30:59.000Z" + }, + "end": { + "$date": "2021-12-04T21:54:10.000Z" + }, + "events": [ + { + "uuid": "768394ea-958a-4400-8c71-04c082c0cef0", + "start": { + "$date": "2021-12-04T21:30:59.000Z" + }, + "end": { + "$date": "2021-12-04T21:54:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a008d171-0193-4e19-85a9-8cc259e13ea5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-04T19:58:24.000Z" + }, + "end": { + "$date": "2021-12-05T00:57:11.000Z" + }, + "events": [ + { + "uuid": "4bdfba0b-0a0d-40be-9985-402f032fe2ba", + "start": { + "$date": "2021-12-04T19:58:24.000Z" + }, + "end": { + "$date": "2021-12-04T23:06:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "302589dd-2d92-4866-9d3d-9a3fb6989c0e", + "start": { + "$date": "2021-12-04T23:06:24.000Z" + }, + "end": { + "$date": "2021-12-04T23:11:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "254c28a4-e3f2-41d4-a15f-6b6b5c5ebf1e", + "start": { + "$date": "2021-12-04T23:11:24.000Z" + }, + "end": { + "$date": "2021-12-05T00:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a923b319-99d7-4967-9ad2-68b59fa674a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-04T21:52:50.000Z" + }, + "end": { + "$date": "2021-12-04T23:04:42.000Z" + }, + "events": [ + { + "uuid": "3bf4cdc4-b233-41f2-b464-2eaec2051882", + "start": { + "$date": "2021-12-04T21:52:50.000Z" + }, + "end": { + "$date": "2021-12-04T23:04:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "319b5c7f-c883-450a-a355-087f820aa829", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T21:53:50.000Z" + }, + "end": { + "$date": "2021-12-04T22:06:19.000Z" + }, + "events": [ + { + "uuid": "954af6ff-24f0-4b15-a2e6-7f53f8461911", + "start": { + "$date": "2021-12-04T21:53:50.000Z" + }, + "end": { + "$date": "2021-12-04T22:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "533169b6-5531-4e86-ae94-fd2afff152b3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T23:17:28.000Z" + }, + "end": { + "$date": "2021-12-04T23:36:31.000Z" + }, + "events": [ + { + "uuid": "ded7fce1-cf91-4742-bb12-2d1fa6e4a0ac", + "start": { + "$date": "2021-12-04T23:17:28.000Z" + }, + "end": { + "$date": "2021-12-04T23:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "54ab2818-738a-4921-964f-d12bad176afc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-04T23:36:51.000Z" + }, + "end": { + "$date": "2021-12-04T23:53:22.000Z" + }, + "events": [ + { + "uuid": "551d58c8-8fc4-4eea-8ce7-d72b021635d2", + "start": { + "$date": "2021-12-04T23:36:51.000Z" + }, + "end": { + "$date": "2021-12-04T23:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e992a803-b508-4f9d-ace5-f76d130c6cc0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-05T01:03:43.000Z" + }, + "end": { + "$date": "2021-12-05T01:06:32.000Z" + }, + "events": [ + { + "uuid": "c01b0eea-0102-4e67-9763-b4ea9e0b6527", + "start": { + "$date": "2021-12-05T01:03:43.000Z" + }, + "end": { + "$date": "2021-12-05T01:06:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f12a478b-64fe-47d0-bc97-4da4adff624a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-05T01:07:30.000Z" + }, + "end": { + "$date": "2021-12-05T01:37:42.000Z" + }, + "events": [ + { + "uuid": "b7b8be61-9720-47f4-8420-bc70b4795dad", + "start": { + "$date": "2021-12-05T01:07:30.000Z" + }, + "end": { + "$date": "2021-12-05T01:37:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d29561c-f6db-473a-a1b8-3b5178dfc0dc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-05T01:07:28.000Z" + }, + "end": { + "$date": "2021-12-05T01:37:24.000Z" + }, + "events": [ + { + "uuid": "34614fba-80d0-43d2-9532-e28a45366831", + "start": { + "$date": "2021-12-05T01:07:28.000Z" + }, + "end": { + "$date": "2021-12-05T01:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29a991dd-ffe3-4885-820d-58a12ad22b67", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-05T01:41:57.000Z" + }, + "end": { + "$date": "2021-12-05T02:18:34.000Z" + }, + "events": [ + { + "uuid": "56abcbc7-9d89-4664-87bd-13eef850a336", + "start": { + "$date": "2021-12-05T01:41:57.000Z" + }, + "end": { + "$date": "2021-12-05T02:18:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4db3a39-a58b-4686-ae76-7a7bac1fdc22", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-05T01:41:49.000Z" + }, + "end": { + "$date": "2021-12-05T02:18:59.000Z" + }, + "events": [ + { + "uuid": "15b2e956-717c-484d-ac7e-c198def87ecd", + "start": { + "$date": "2021-12-05T01:41:49.000Z" + }, + "end": { + "$date": "2021-12-05T02:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "113d25e3-af07-47d6-acb8-82316d618a81", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-05T01:41:52.000Z" + }, + "end": { + "$date": "2021-12-05T02:18:36.000Z" + }, + "events": [ + { + "uuid": "613edc2a-5229-4c92-b792-b50a7e2480d3", + "start": { + "$date": "2021-12-05T01:41:52.000Z" + }, + "end": { + "$date": "2021-12-05T02:18:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02063ace-4684-4448-af85-e27f4a2be72f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-05T01:41:49.000Z" + }, + "end": { + "$date": "2021-12-05T02:10:48.000Z" + }, + "events": [ + { + "uuid": "3b6bc415-50b3-49a7-95f3-a8b79ba23094", + "start": { + "$date": "2021-12-05T01:41:49.000Z" + }, + "end": { + "$date": "2021-12-05T02:10:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7ad37b63-a805-464b-92ae-8358e1d06217", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-05T01:57:47.000Z" + }, + "end": { + "$date": "2021-12-05T03:12:53.000Z" + }, + "events": [ + { + "uuid": "ca6f64b5-06e3-42d3-b055-6c8bdd56b83b", + "start": { + "$date": "2021-12-05T01:57:47.000Z" + }, + "end": { + "$date": "2021-12-05T03:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d853e9cd-8384-4886-9414-fb3538c11013", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-05T02:19:14.000Z" + }, + "end": { + "$date": "2021-12-05T02:20:21.000Z" + }, + "events": [ + { + "uuid": "84461b8e-7a1c-4f27-b1c9-1e4863d19d20", + "start": { + "$date": "2021-12-05T02:19:14.000Z" + }, + "end": { + "$date": "2021-12-05T02:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0569b20f-4940-4b1f-bc51-f8394f647cfa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-05T02:24:13.000Z" + }, + "end": { + "$date": "2021-12-05T03:11:22.000Z" + }, + "events": [ + { + "uuid": "6afee913-4e80-46a7-b903-3309a7ad132f", + "start": { + "$date": "2021-12-05T02:24:13.000Z" + }, + "end": { + "$date": "2021-12-05T03:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf99b0bd-32a9-44c3-9ddd-7622a331e9ba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-05T02:59:57.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:09.000Z" + }, + "events": [ + { + "uuid": "a41e5118-e8fc-422d-9ed7-0c9ce872d8a1", + "start": { + "$date": "2021-12-05T02:59:57.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73615e32-10b8-41a3-8a38-c5bef58015b9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-05T03:15:59.000Z" + }, + "end": { + "$date": "2021-12-05T03:49:15.000Z" + }, + "events": [ + { + "uuid": "f106fecf-9032-4a11-961c-aeea2c3f5a39", + "start": { + "$date": "2021-12-05T03:15:59.000Z" + }, + "end": { + "$date": "2021-12-05T03:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "9fefe4c6-edbb-4eeb-a47e-7889b238c708", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-05T03:59:06.000Z" + }, + "end": { + "$date": "2021-12-05T04:55:23.000Z" + }, + "events": [ + { + "uuid": "2a0f6a2f-415f-4cd3-b739-ad88b27cc5a4", + "start": { + "$date": "2021-12-05T03:59:06.000Z" + }, + "end": { + "$date": "2021-12-05T04:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "7f389133-8692-481c-84dc-102f3ffe4007", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-05T04:07:47.000Z" + }, + "end": { + "$date": "2021-12-05T07:36:09.000Z" + }, + "events": [ + { + "uuid": "fa9ec573-d754-46f9-a69f-88a740c0ca3a", + "start": { + "$date": "2021-12-05T04:07:47.000Z" + }, + "end": { + "$date": "2021-12-05T07:36:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5283ae4e-5746-40af-a62c-a83bafe284a9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-05T05:16:17.000Z" + }, + "end": { + "$date": "2021-12-05T05:58:04.000Z" + }, + "events": [ + { + "uuid": "635d9aba-abb8-44f8-8ec7-dfac6cb382bc", + "start": { + "$date": "2021-12-05T05:16:17.000Z" + }, + "end": { + "$date": "2021-12-05T05:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fe615d7e-1856-4731-a4ee-afdb99f00f91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-05T05:03:04.000Z" + }, + "end": { + "$date": "2021-12-05T05:59:05.000Z" + }, + "events": [ + { + "uuid": "18392691-acc3-4c46-8058-c98699954fa0", + "start": { + "$date": "2021-12-05T05:03:04.000Z" + }, + "end": { + "$date": "2021-12-05T05:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "017ce732-5584-4d5a-ba03-3a8f527e4757", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-05T05:03:40.000Z" + }, + "end": { + "$date": "2021-12-05T05:08:01.000Z" + }, + "events": [ + { + "uuid": "76dc815b-d4f3-46f7-92d0-a19a9cd2e605", + "start": { + "$date": "2021-12-05T05:03:40.000Z" + }, + "end": { + "$date": "2021-12-05T05:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e858f588-f467-4503-a826-2619e7823a78", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-05T05:08:16.000Z" + }, + "end": { + "$date": "2021-12-05T05:10:06.000Z" + }, + "events": [ + { + "uuid": "ae65de9e-a786-453c-8029-a7af99dd5ee0", + "start": { + "$date": "2021-12-05T05:08:16.000Z" + }, + "end": { + "$date": "2021-12-05T05:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "97330f92-e78a-4515-a4f8-4adff7afba70", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-05T05:11:11.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:30.000Z" + }, + "events": [ + { + "uuid": "ecee33ec-0e36-4ecc-99d3-477a774dfcfa", + "start": { + "$date": "2021-12-05T05:11:11.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de1e80fa-b5c6-442f-9f8a-5f2c34c88b44", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-05T05:38:48.000Z" + }, + "end": { + "$date": "2021-12-05T06:01:39.000Z" + }, + "events": [ + { + "uuid": "46b3a30e-b36c-4e04-9e55-047f90e179a4", + "start": { + "$date": "2021-12-05T05:38:48.000Z" + }, + "end": { + "$date": "2021-12-05T06:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b75da663-b6ef-4bb7-8fca-74e822bd99d8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-05T05:57:40.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:55.000Z" + }, + "events": [ + { + "uuid": "2b189d83-5f72-45ea-9375-2c36c9aef33b", + "start": { + "$date": "2021-12-05T05:57:40.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "340469d8-6aca-431b-8cff-ded4d38088e2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-05T05:58:33.000Z" + }, + "end": { + "$date": "2021-12-05T06:03:18.000Z" + }, + "events": [ + { + "uuid": "71b987e8-78db-4671-ad27-dec5dd73931f", + "start": { + "$date": "2021-12-05T05:58:33.000Z" + }, + "end": { + "$date": "2021-12-05T06:03:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aa7b746e-72eb-4ce3-adc0-0c055f5a0863", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-05T05:59:05.000Z" + }, + "end": { + "$date": "2021-12-05T06:04:02.000Z" + }, + "events": [ + { + "uuid": "2158e1ca-a033-4655-b184-a18af668410c", + "start": { + "$date": "2021-12-05T05:59:05.000Z" + }, + "end": { + "$date": "2021-12-05T06:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8ce570b5-bc81-4a4a-b896-b93f88485dcd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-05T06:00:25.000Z" + }, + "end": { + "$date": "2021-12-05T06:53:34.000Z" + }, + "events": [ + { + "uuid": "64d56901-b367-4beb-a114-2186532d1c59", + "start": { + "$date": "2021-12-05T06:00:25.000Z" + }, + "end": { + "$date": "2021-12-05T06:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "db8c4b70-171b-4abd-b45d-2eda8b37e967", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-05T06:03:38.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:56.000Z" + }, + "events": [ + { + "uuid": "f8240554-ec9d-4b2c-a7c2-1df49c5dbb57", + "start": { + "$date": "2021-12-05T06:03:38.000Z" + }, + "end": { + "$date": "2021-12-05T07:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "140f7b41-3b1a-4fd7-87a4-a632927883c7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-05T06:04:10.000Z" + }, + "end": { + "$date": "2021-12-05T06:09:07.000Z" + }, + "events": [ + { + "uuid": "5b71ee92-1b30-4eed-bdcb-fcbdb50cfd64", + "start": { + "$date": "2021-12-05T06:04:10.000Z" + }, + "end": { + "$date": "2021-12-05T06:09:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c9271eb-d7d8-4353-b8ac-734c15959a32", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-05T06:10:50.000Z" + }, + "end": { + "$date": "2021-12-05T06:15:48.000Z" + }, + "events": [ + { + "uuid": "b6adc0e0-dd3e-4820-8a92-67405b8163af", + "start": { + "$date": "2021-12-05T06:10:50.000Z" + }, + "end": { + "$date": "2021-12-05T06:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "db4addd7-9a46-4ccb-ba72-3384c8cc0e97", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-05T06:16:00.000Z" + }, + "end": { + "$date": "2021-12-05T06:55:19.000Z" + }, + "events": [ + { + "uuid": "abb58fba-6949-45b4-b917-44bd45c4054c", + "start": { + "$date": "2021-12-05T06:16:00.000Z" + }, + "end": { + "$date": "2021-12-05T06:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fcf887f9-bcef-4377-a623-aee98833606b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-05T06:56:22.000Z" + }, + "end": { + "$date": "2021-12-05T07:01:25.000Z" + }, + "events": [ + { + "uuid": "ac60ee0f-19af-4b99-a4b9-17e8a2ed2b7e", + "start": { + "$date": "2021-12-05T06:56:22.000Z" + }, + "end": { + "$date": "2021-12-05T07:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2fa01abb-326d-4753-9fce-0598e3b8b13b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-05T07:02:51.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:59.000Z" + }, + "events": [ + { + "uuid": "46a4e96b-9cf8-4167-84d1-4e51df2cb6b5", + "start": { + "$date": "2021-12-05T07:02:51.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "299e8343-7c76-4480-b8dc-295f5578bc58", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-05T07:02:58.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:26.000Z" + }, + "events": [ + { + "uuid": "cf913be8-d2ea-4b10-a67e-aaa1518a767f", + "start": { + "$date": "2021-12-05T07:02:58.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "97040274-7b42-4f56-91ba-bf1fa90ed823", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-05T07:03:01.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:34.000Z" + }, + "events": [ + { + "uuid": "fa1b8dd2-b057-4d52-a534-b5b16eb5837a", + "start": { + "$date": "2021-12-05T07:03:01.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9ce3ca93-96f1-4b6a-a156-7489019541c6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-05T07:03:11.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:43.000Z" + }, + "events": [ + { + "uuid": "841f04e5-ae75-441c-b4df-dc6d4f3d7c0a", + "start": { + "$date": "2021-12-05T07:03:11.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b121d47e-61f1-4589-b92f-1599b82c152a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-05T07:03:20.000Z" + }, + "end": { + "$date": "2021-12-05T07:42:00.000Z" + }, + "events": [ + { + "uuid": "df3bb2bf-3c75-4746-8f60-5944854c0d73", + "start": { + "$date": "2021-12-05T07:03:20.000Z" + }, + "end": { + "$date": "2021-12-05T07:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "935ec0ab-ae43-4120-8aa9-69becf35fcec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-05T07:04:52.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:51.000Z" + }, + "events": [ + { + "uuid": "27e3b7af-cb20-4a7c-8133-af8468c3017c", + "start": { + "$date": "2021-12-05T07:04:52.000Z" + }, + "end": { + "$date": "2021-12-05T07:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5b8eea46-c605-44e8-98d3-def0b20746ad", + "uuid": "22cd3697-2ec0-4ca2-b90b-5a468152655e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-05T07:47:40.000Z" + }, + "end": { + "$date": "2021-12-05T08:13:14.000Z" + }, + "events": [ + { + "uuid": "b4e30707-dc57-42b5-8fb1-3702dd5d440d", + "start": { + "$date": "2021-12-05T07:47:40.000Z" + }, + "end": { + "$date": "2021-12-05T08:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5b8eea46-c605-44e8-98d3-def0b20746ad", + "uuid": "4cbd841c-bc5f-496f-871c-9c4ce207d936", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-05T07:48:54.000Z" + }, + "end": { + "$date": "2021-12-05T08:01:54.000Z" + }, + "events": [ + { + "uuid": "778ee3f3-75a2-49e4-abfb-b39769411e43", + "start": { + "$date": "2021-12-05T07:48:54.000Z" + }, + "end": { + "$date": "2021-12-05T08:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "803a2edf-25a9-43f4-8e4c-1ce9db21f144", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-05T07:55:48.000Z" + }, + "end": { + "$date": "2021-12-05T08:18:13.000Z" + }, + "events": [ + { + "uuid": "e44336df-eb96-4831-b815-2b4ec9903dd6", + "start": { + "$date": "2021-12-05T07:55:48.000Z" + }, + "end": { + "$date": "2021-12-05T08:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67892c97-b883-4c7e-adea-2ae7518baa9e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-05T08:20:35.000Z" + }, + "end": { + "$date": "2021-12-05T08:37:48.000Z" + }, + "events": [ + { + "uuid": "8da3d15d-d743-490f-9208-a03d78c8b746", + "start": { + "$date": "2021-12-05T08:20:35.000Z" + }, + "end": { + "$date": "2021-12-05T08:37:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c4fd5ae-0aa9-40da-97aa-85acb92b5d78", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-05T08:39:33.000Z" + }, + "end": { + "$date": "2021-12-05T09:01:21.000Z" + }, + "events": [ + { + "uuid": "c9571a77-1e8e-41b6-ae95-31511780031e", + "start": { + "$date": "2021-12-05T08:39:33.000Z" + }, + "end": { + "$date": "2021-12-05T09:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "904150ac-108c-44fc-82e0-ecec9c054e1b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-05T12:18:08.000Z" + }, + "end": { + "$date": "2021-12-05T15:50:21.000Z" + }, + "events": [ + { + "uuid": "632b35b0-0f5a-4fa6-96b8-8384f3601c5f", + "start": { + "$date": "2021-12-05T12:18:08.000Z" + }, + "end": { + "$date": "2021-12-05T15:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "577f9e86-6ca9-410f-9c42-3a8a8aed6c20", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-05T17:50:51.000Z" + }, + "end": { + "$date": "2021-12-05T18:05:02.000Z" + }, + "events": [ + { + "uuid": "04e44e4a-88e2-490d-bac6-3d3abe5e02c1", + "start": { + "$date": "2021-12-05T17:50:51.000Z" + }, + "end": { + "$date": "2021-12-05T18:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fea4c59-d59b-4df3-b841-c0fe988ac37c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-05T20:09:27.000Z" + }, + "end": { + "$date": "2021-12-05T20:44:21.000Z" + }, + "events": [ + { + "uuid": "e618cf98-cce4-4622-92ba-3cc539eea875", + "start": { + "$date": "2021-12-05T20:09:27.000Z" + }, + "end": { + "$date": "2021-12-05T20:44:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5c5b6f43-2da3-49eb-9825-92eff322356a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-05T20:13:09.000Z" + }, + "end": { + "$date": "2021-12-05T21:01:44.000Z" + }, + "events": [ + { + "uuid": "c4793aa5-d08c-450e-9843-a68855412db6", + "start": { + "$date": "2021-12-05T20:13:09.000Z" + }, + "end": { + "$date": "2021-12-05T21:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd971e85-645d-410e-ad74-6aa0c465825e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-05T20:45:24.000Z" + }, + "end": { + "$date": "2021-12-05T21:15:36.000Z" + }, + "events": [ + { + "uuid": "0bac92f5-0f54-4e0a-9a9b-152220be490f", + "start": { + "$date": "2021-12-05T20:45:24.000Z" + }, + "end": { + "$date": "2021-12-05T21:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "fead961b-3212-48a0-a4da-e04e5f0dbcda", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-05T21:16:25.000Z" + }, + "end": { + "$date": "2021-12-05T21:26:07.000Z" + }, + "events": [ + { + "uuid": "9d5c9129-5ff8-4ed7-95cc-2261d3b1c925", + "start": { + "$date": "2021-12-05T21:16:25.000Z" + }, + "end": { + "$date": "2021-12-05T21:26:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c9de24f8-ef4e-4a94-a301-febfd2085e43", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-05T21:26:12.000Z" + }, + "end": { + "$date": "2021-12-05T21:51:20.000Z" + }, + "events": [ + { + "uuid": "bf77ec4c-2a5e-4ada-a3b1-0621cdb78fb1", + "start": { + "$date": "2021-12-05T21:26:12.000Z" + }, + "end": { + "$date": "2021-12-05T21:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "082c6034-4096-4a67-920c-224da2563653", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-05T21:35:06.000Z" + }, + "end": { + "$date": "2021-12-05T22:40:45.000Z" + }, + "events": [ + { + "uuid": "97594aa7-ce7f-4c4b-8c70-df3ce5ce723c", + "start": { + "$date": "2021-12-05T21:35:06.000Z" + }, + "end": { + "$date": "2021-12-05T22:07:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1401ba85-b3bc-4747-a0a8-a8410504ccb9", + "start": { + "$date": "2021-12-05T22:07:06.000Z" + }, + "end": { + "$date": "2021-12-05T22:08:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e0c7bc4f-ca7f-4f34-8f35-e6fc307a400d", + "start": { + "$date": "2021-12-05T22:08:06.000Z" + }, + "end": { + "$date": "2021-12-05T22:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d469f3e-ffe8-401d-8d5c-1a004900110d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-06T00:05:37.000Z" + }, + "end": { + "$date": "2021-12-06T00:42:18.000Z" + }, + "events": [ + { + "uuid": "172a9efe-0254-4d4e-a86b-e0da067eacfc", + "start": { + "$date": "2021-12-06T00:05:37.000Z" + }, + "end": { + "$date": "2021-12-06T00:42:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cbdcb25-6fbb-4e6a-a9a8-f19110279231", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T00:53:24.000Z" + }, + "end": { + "$date": "2021-12-06T01:15:48.000Z" + }, + "events": [ + { + "uuid": "8cc9526d-cb14-480e-9b3e-a066d37f16a6", + "start": { + "$date": "2021-12-06T00:53:24.000Z" + }, + "end": { + "$date": "2021-12-06T01:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b804e7e4-cd97-4494-b59b-f2eff8f6f149", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-06T01:14:07.000Z" + }, + "end": { + "$date": "2021-12-06T02:00:00.000Z" + }, + "events": [ + { + "uuid": "fe2bf56d-de7c-4616-b219-59d83581a8ce", + "start": { + "$date": "2021-12-06T01:14:07.000Z" + }, + "end": { + "$date": "2021-12-06T02:00:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3da4c78-7c6f-4414-a9e1-ec78c76d38f4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-06T01:15:00.000Z" + }, + "end": { + "$date": "2021-12-06T01:32:10.000Z" + }, + "events": [ + { + "uuid": "b5cf6f64-420d-44ff-97ee-fd205d42e8aa", + "start": { + "$date": "2021-12-06T01:15:00.000Z" + }, + "end": { + "$date": "2021-12-06T01:32:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44e728d8-3537-4d8a-82ff-508ae590ca84", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T01:20:28.000Z" + }, + "end": { + "$date": "2021-12-06T01:41:45.000Z" + }, + "events": [ + { + "uuid": "60937a53-5a8f-4d24-bf52-261361b30a54", + "start": { + "$date": "2021-12-06T01:20:28.000Z" + }, + "end": { + "$date": "2021-12-06T01:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aed6bb7a-33cc-404c-907a-d702c420a44b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-06T03:02:11.000Z" + }, + "end": { + "$date": "2021-12-06T03:02:11.000Z" + }, + "events": [ + { + "uuid": "29f35fc1-e191-48ab-af63-6c5aee6dd6e2", + "start": { + "$date": "2021-12-06T03:02:11.000Z" + }, + "end": { + "$date": "2021-12-06T03:02:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6814f69d-f1f3-4e6b-9273-080ca54ab65b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T01:44:11.000Z" + }, + "end": { + "$date": "2021-12-06T02:17:57.000Z" + }, + "events": [ + { + "uuid": "1a448c8f-d4dc-476a-8525-d9c4a754f0fc", + "start": { + "$date": "2021-12-06T01:44:11.000Z" + }, + "end": { + "$date": "2021-12-06T02:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79462304-0328-43d2-a3e3-6adf6f188b60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-06T01:53:06.000Z" + }, + "end": { + "$date": "2021-12-06T02:13:32.000Z" + }, + "events": [ + { + "uuid": "a1cfbf54-c005-4304-a2be-3d7a69aa1ed5", + "start": { + "$date": "2021-12-06T01:53:06.000Z" + }, + "end": { + "$date": "2021-12-06T02:13:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2f22a4c1-e404-451a-bce7-1430cf1acbc7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-06T02:20:47.000Z" + }, + "end": { + "$date": "2021-12-06T02:59:26.000Z" + }, + "events": [ + { + "uuid": "e6fef3b6-8d82-4ade-8647-2f8d9a404d2e", + "start": { + "$date": "2021-12-06T02:20:47.000Z" + }, + "end": { + "$date": "2021-12-06T02:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "46d4e102-c0c9-4e8c-b826-872175d63c89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-05T23:31:06.000Z" + }, + "end": { + "$date": "2021-12-06T05:51:31.000Z" + }, + "events": [ + { + "uuid": "2e85bdfb-42ad-4efc-8261-baab530ef00b", + "start": { + "$date": "2021-12-05T23:31:06.000Z" + }, + "end": { + "$date": "2021-12-06T05:51:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7224c832-4cf0-485d-906b-08bce14d0f7d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-06T02:38:27.000Z" + }, + "end": { + "$date": "2021-12-06T03:13:16.000Z" + }, + "events": [ + { + "uuid": "a95640ab-e516-4b70-8c58-2125b7659ed5", + "start": { + "$date": "2021-12-06T02:38:27.000Z" + }, + "end": { + "$date": "2021-12-06T03:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "02199f9c-6e21-4ff4-8089-975c11330f4f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-06T03:00:41.000Z" + }, + "end": { + "$date": "2021-12-06T03:11:18.000Z" + }, + "events": [ + { + "uuid": "73721273-c193-43de-beed-3ba0b677f11e", + "start": { + "$date": "2021-12-06T03:00:41.000Z" + }, + "end": { + "$date": "2021-12-06T03:11:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b0618135-4657-4298-ad79-10f69dce993b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-06T03:12:27.000Z" + }, + "end": { + "$date": "2021-12-06T03:16:48.000Z" + }, + "events": [ + { + "uuid": "32cac061-69eb-4044-b821-1b380671508e", + "start": { + "$date": "2021-12-06T03:12:27.000Z" + }, + "end": { + "$date": "2021-12-06T03:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "75b5e62b-bdca-4ffe-93b4-26b823bd38cc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-06T03:13:24.000Z" + }, + "end": { + "$date": "2021-12-06T03:20:47.000Z" + }, + "events": [ + { + "uuid": "5a35bd4e-718c-4cc8-92c8-11069bcfaf1a", + "start": { + "$date": "2021-12-06T03:13:24.000Z" + }, + "end": { + "$date": "2021-12-06T03:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8ebbc536-7d2a-4a2d-83d6-eb2bd4c76651", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-06T03:16:53.000Z" + }, + "end": { + "$date": "2021-12-06T04:23:28.000Z" + }, + "events": [ + { + "uuid": "97b601a4-7d1b-4c5f-8502-d8fffb926f71", + "start": { + "$date": "2021-12-06T03:16:53.000Z" + }, + "end": { + "$date": "2021-12-06T04:23:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "72de86cd-4895-4ba9-a6d0-767ee66f16ba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-06T03:21:29.000Z" + }, + "end": { + "$date": "2021-12-06T04:22:49.000Z" + }, + "events": [ + { + "uuid": "e99a77ba-960f-434a-bdb3-0440e0a0a177", + "start": { + "$date": "2021-12-06T03:21:29.000Z" + }, + "end": { + "$date": "2021-12-06T04:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "13132ccd-ae6c-4173-961b-773c005db469", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-06T03:28:54.000Z" + }, + "end": { + "$date": "2021-12-06T04:51:00.000Z" + }, + "events": [ + { + "uuid": "028a64b4-48b3-4421-ac3e-e48cc491742d", + "start": { + "$date": "2021-12-06T03:28:54.000Z" + }, + "end": { + "$date": "2021-12-06T04:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b186de36-7e59-44e4-8c19-ffbe2a11197e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-06T03:40:11.000Z" + }, + "end": { + "$date": "2021-12-06T04:23:19.000Z" + }, + "events": [ + { + "uuid": "b8760c98-2c1e-4e75-8da5-6c6a2f1a4803", + "start": { + "$date": "2021-12-06T03:40:11.000Z" + }, + "end": { + "$date": "2021-12-06T04:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6ff00342-8998-4f14-a860-c4b3efd877cc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-06T03:42:06.000Z" + }, + "end": { + "$date": "2021-12-06T04:17:50.000Z" + }, + "events": [ + { + "uuid": "85f4566f-b68f-4d87-9819-634652f45bcf", + "start": { + "$date": "2021-12-06T03:42:06.000Z" + }, + "end": { + "$date": "2021-12-06T04:15:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41f79f81-63f8-4b29-bc86-e12041b6f79c", + "start": { + "$date": "2021-12-06T04:15:06.000Z" + }, + "end": { + "$date": "2021-12-06T04:17:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1955fb21-d5d3-45ef-b632-7ec19ae347bf", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-06T04:04:50.000Z" + }, + "end": { + "$date": "2021-12-06T04:36:15.000Z" + }, + "events": [ + { + "uuid": "d41e572e-8f67-45b5-9bd1-29691fb7ff3e", + "start": { + "$date": "2021-12-06T04:04:50.000Z" + }, + "end": { + "$date": "2021-12-06T04:36:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e288f104-3429-4fd4-8f2a-45442b94e033", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-06T05:04:36.000Z" + }, + "end": { + "$date": "2021-12-06T05:32:29.000Z" + }, + "events": [ + { + "uuid": "a32028c0-5246-4f86-9276-a70a95ce99d5", + "start": { + "$date": "2021-12-06T05:04:36.000Z" + }, + "end": { + "$date": "2021-12-06T05:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e771a06a-dacc-4373-8837-85897f325f75", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T05:32:40.000Z" + }, + "end": { + "$date": "2021-12-06T05:45:11.000Z" + }, + "events": [ + { + "uuid": "28629596-178b-4fd7-badd-883041b7171a", + "start": { + "$date": "2021-12-06T05:32:40.000Z" + }, + "end": { + "$date": "2021-12-06T05:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf866c46-7b08-4f13-8e27-4b40713668c3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-06T05:36:44.000Z" + }, + "end": { + "$date": "2021-12-06T06:02:17.000Z" + }, + "events": [ + { + "uuid": "c086708b-6160-422f-970f-31b5664203a3", + "start": { + "$date": "2021-12-06T05:36:44.000Z" + }, + "end": { + "$date": "2021-12-06T06:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "a7007423-c747-4d64-bdca-100b325b75e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-06T05:53:07.000Z" + }, + "end": { + "$date": "2021-12-06T06:54:55.000Z" + }, + "events": [ + { + "uuid": "f7cb0e78-dfff-4119-8ae1-0996e56a095a", + "start": { + "$date": "2021-12-06T05:53:07.000Z" + }, + "end": { + "$date": "2021-12-06T06:16:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55c2b885-5d77-4bfb-87e2-94bc38fb85e7", + "start": { + "$date": "2021-12-06T06:16:07.000Z" + }, + "end": { + "$date": "2021-12-06T06:21:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "976ae236-a497-4382-acfe-1b2b3d01af20", + "start": { + "$date": "2021-12-06T06:21:07.000Z" + }, + "end": { + "$date": "2021-12-06T06:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e57cfe6-2bb2-40af-8311-95a8a46b1360", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-06T06:05:47.000Z" + }, + "end": { + "$date": "2021-12-06T06:32:00.000Z" + }, + "events": [ + { + "uuid": "d2bf50b2-fa38-46ce-9671-a40718c9c51c", + "start": { + "$date": "2021-12-06T06:05:47.000Z" + }, + "end": { + "$date": "2021-12-06T06:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "383d1efc-bf8a-46e2-9482-fe480255b36f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-06T06:22:04.000Z" + }, + "end": { + "$date": "2021-12-06T06:52:26.000Z" + }, + "events": [ + { + "uuid": "9e3cc962-7967-4adb-86aa-62ea54836fe1", + "start": { + "$date": "2021-12-06T06:22:04.000Z" + }, + "end": { + "$date": "2021-12-06T06:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fed1a556-44ec-4cf2-bcc7-77902c647167", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-06T07:37:08.000Z" + }, + "end": { + "$date": "2021-12-06T08:01:16.000Z" + }, + "events": [ + { + "uuid": "161ce029-e83a-4307-8e66-e4066547f446", + "start": { + "$date": "2021-12-06T07:37:08.000Z" + }, + "end": { + "$date": "2021-12-06T08:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd5a81d8-e4a8-4b74-8a39-d183cf82a209", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-06T08:55:13.000Z" + }, + "end": { + "$date": "2021-12-06T09:37:23.000Z" + }, + "events": [ + { + "uuid": "f820d26b-d819-4d2c-8323-6834d7aab511", + "start": { + "$date": "2021-12-06T08:55:13.000Z" + }, + "end": { + "$date": "2021-12-06T09:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e58605a9-f14a-4ce2-8c85-e00b6a8425ad", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-06T08:12:11.000Z" + }, + "end": { + "$date": "2021-12-06T08:47:24.000Z" + }, + "events": [ + { + "uuid": "1194a552-5296-47ae-b59f-367244eae133", + "start": { + "$date": "2021-12-06T08:12:11.000Z" + }, + "end": { + "$date": "2021-12-06T08:47:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a83e8556-3d96-4347-8e4b-d70d4e524290", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-06T08:10:29.000Z" + }, + "end": { + "$date": "2021-12-06T09:04:27.000Z" + }, + "events": [ + { + "uuid": "4551c4ac-d478-477b-9c3a-2dd2bf80b59a", + "start": { + "$date": "2021-12-06T08:10:29.000Z" + }, + "end": { + "$date": "2021-12-06T09:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2a74b77-7bfe-471b-847b-b0a53385929b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-06T08:55:19.000Z" + }, + "end": { + "$date": "2021-12-06T09:37:30.000Z" + }, + "events": [ + { + "uuid": "e8c2915f-1d79-4749-872b-1949fc061195", + "start": { + "$date": "2021-12-06T08:55:19.000Z" + }, + "end": { + "$date": "2021-12-06T09:37:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c5d74e79-abc5-422a-a91c-f1256ed946e3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-06T13:22:23.000Z" + }, + "end": { + "$date": "2021-12-06T14:57:25.000Z" + }, + "events": [ + { + "uuid": "3d69cbec-23ba-4d13-9739-1b830bd0f85d", + "start": { + "$date": "2021-12-06T13:22:23.000Z" + }, + "end": { + "$date": "2021-12-06T14:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e9343166-07fd-4e0a-9670-fa67e2a3d756", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-06T18:43:18.000Z" + }, + "end": { + "$date": "2021-12-06T18:46:51.000Z" + }, + "events": [ + { + "uuid": "651b01d8-e80b-403b-a07e-8111b5dca96f", + "start": { + "$date": "2021-12-06T18:43:18.000Z" + }, + "end": { + "$date": "2021-12-06T18:46:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2b6d7e28-8fdd-41fa-9abe-ba7e6192e923", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-06T18:49:44.000Z" + }, + "end": { + "$date": "2021-12-06T18:51:02.000Z" + }, + "events": [ + { + "uuid": "abe7fca7-179e-49a8-8613-832117eef59b", + "start": { + "$date": "2021-12-06T18:49:44.000Z" + }, + "end": { + "$date": "2021-12-06T18:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e6c10ec6-b255-450c-93df-251ae6ab1721", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-06T18:54:35.000Z" + }, + "end": { + "$date": "2021-12-06T18:58:48.000Z" + }, + "events": [ + { + "uuid": "ca093fa6-f8f6-4357-8c50-a1677a5e440c", + "start": { + "$date": "2021-12-06T18:54:35.000Z" + }, + "end": { + "$date": "2021-12-06T18:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d3af3ac5-4b1b-47ff-b8ae-a718bde15523", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T21:18:41.000Z" + }, + "end": { + "$date": "2021-12-06T21:28:28.000Z" + }, + "events": [ + { + "uuid": "492d251d-ba70-4080-8a43-cbebea06831e", + "start": { + "$date": "2021-12-06T21:18:41.000Z" + }, + "end": { + "$date": "2021-12-06T21:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "468afef7-b782-4926-bab6-194849a9d41f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-06T23:08:32.000Z" + }, + "end": { + "$date": "2021-12-06T23:45:11.000Z" + }, + "events": [ + { + "uuid": "f5c8b760-8237-4334-89f9-089ab145325e", + "start": { + "$date": "2021-12-06T23:08:32.000Z" + }, + "end": { + "$date": "2021-12-06T23:45:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eeace42b-d799-436d-be30-a8492fae7ec2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T23:12:51.000Z" + }, + "end": { + "$date": "2021-12-06T23:23:18.000Z" + }, + "events": [ + { + "uuid": "d44fdd6e-a4e0-418c-b9c2-9a5b98e4c5ec", + "start": { + "$date": "2021-12-06T23:12:51.000Z" + }, + "end": { + "$date": "2021-12-06T23:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d8a1f3a-38f6-4a48-ba9a-0732105314ba", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T23:25:13.000Z" + }, + "end": { + "$date": "2021-12-06T23:42:10.000Z" + }, + "events": [ + { + "uuid": "b03eb31f-8171-428e-a985-2e683e7009a4", + "start": { + "$date": "2021-12-06T23:25:13.000Z" + }, + "end": { + "$date": "2021-12-06T23:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8d53049-6387-4051-bffe-90e05fff896c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-06T23:45:30.000Z" + }, + "end": { + "$date": "2021-12-07T00:07:48.000Z" + }, + "events": [ + { + "uuid": "b2679722-8db8-4717-ac74-c264f860511c", + "start": { + "$date": "2021-12-06T23:45:30.000Z" + }, + "end": { + "$date": "2021-12-07T00:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdf7e3c1-3787-4adb-b816-11a8a6a10872", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-06T23:49:16.000Z" + }, + "end": { + "$date": "2021-12-07T00:30:09.000Z" + }, + "events": [ + { + "uuid": "4a31ea2b-c42a-4a4f-9fae-6e615376fd8b", + "start": { + "$date": "2021-12-06T23:49:16.000Z" + }, + "end": { + "$date": "2021-12-07T00:30:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90407e3c-3472-4bf0-aa18-6d69d111790e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-07T00:19:18.000Z" + }, + "end": { + "$date": "2021-12-07T00:34:18.000Z" + }, + "events": [ + { + "uuid": "29bebfbe-52e7-4ff3-bd31-2aeef8675cc5", + "start": { + "$date": "2021-12-07T00:19:18.000Z" + }, + "end": { + "$date": "2021-12-07T00:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d936907b-33f9-43b1-af67-1da0de9069ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-07T00:35:34.000Z" + }, + "end": { + "$date": "2021-12-07T00:50:19.000Z" + }, + "events": [ + { + "uuid": "7e273e32-5060-4905-8fd6-99bb846e4297", + "start": { + "$date": "2021-12-07T00:35:34.000Z" + }, + "end": { + "$date": "2021-12-07T00:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5a9ac41b-d3f6-4b05-be15-8d1aea955974", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-07T00:51:08.000Z" + }, + "end": { + "$date": "2021-12-07T00:52:31.000Z" + }, + "events": [ + { + "uuid": "7c9c75a9-ae46-4e5c-a150-085030c271ce", + "start": { + "$date": "2021-12-07T00:51:08.000Z" + }, + "end": { + "$date": "2021-12-07T00:52:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "079f4b3e-5746-4b90-9867-ffee2fc4e8e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-07T00:52:43.000Z" + }, + "end": { + "$date": "2021-12-07T03:19:52.000Z" + }, + "events": [ + { + "uuid": "32fe13ca-7457-49d1-ba37-97d36ba7a476", + "start": { + "$date": "2021-12-07T00:52:43.000Z" + }, + "end": { + "$date": "2021-12-07T02:30:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c0f1205b-b0e7-434d-a48a-3cc655f82984", + "start": { + "$date": "2021-12-07T02:30:43.000Z" + }, + "end": { + "$date": "2021-12-07T02:35:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2cd98897-0bf7-4f29-8000-14dc5d956507", + "start": { + "$date": "2021-12-07T02:35:43.000Z" + }, + "end": { + "$date": "2021-12-07T03:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "839dbf7a-2cd3-4487-afe2-0d95c4ef51c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T02:01:27.000Z" + }, + "end": { + "$date": "2021-12-07T02:20:55.000Z" + }, + "events": [ + { + "uuid": "96403861-00df-4ad6-917b-000e756ccbc6", + "start": { + "$date": "2021-12-07T02:01:27.000Z" + }, + "end": { + "$date": "2021-12-07T02:20:55.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6b9287d4-0737-4001-9921-ba3f4384705b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-07T01:58:04.000Z" + }, + "end": { + "$date": "2021-12-07T03:08:22.000Z" + }, + "events": [ + { + "uuid": "015a2bcf-b902-4367-8fe6-4fb205751100", + "start": { + "$date": "2021-12-07T01:58:04.000Z" + }, + "end": { + "$date": "2021-12-07T03:08:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d15bd8e-ec88-4508-91c7-15dc9e0d9795", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T02:17:32.000Z" + }, + "end": { + "$date": "2021-12-07T02:41:08.000Z" + }, + "events": [ + { + "uuid": "4f2bd9f2-df9f-4113-89b1-5016f4091f19", + "start": { + "$date": "2021-12-07T02:17:32.000Z" + }, + "end": { + "$date": "2021-12-07T02:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3edd3b4e-4e73-430d-bed1-e1c1373ec5fd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T02:26:25.000Z" + }, + "end": { + "$date": "2021-12-07T03:03:35.000Z" + }, + "events": [ + { + "uuid": "208e5f5a-cee3-4c75-828c-725814ea869f", + "start": { + "$date": "2021-12-07T02:26:25.000Z" + }, + "end": { + "$date": "2021-12-07T03:03:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "53472d39-cf74-4127-a640-b7370d624e0c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-07T02:32:19.000Z" + }, + "end": { + "$date": "2021-12-07T03:13:00.000Z" + }, + "events": [ + { + "uuid": "384b0f1b-aaf3-4472-b9bc-20fbd86d75a3", + "start": { + "$date": "2021-12-07T02:32:19.000Z" + }, + "end": { + "$date": "2021-12-07T03:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe766f13-2644-4947-a298-50fc97ee29dd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T02:43:09.000Z" + }, + "end": { + "$date": "2021-12-07T02:59:16.000Z" + }, + "events": [ + { + "uuid": "bdfe2c17-ca8e-4853-94a5-675446598867", + "start": { + "$date": "2021-12-07T02:43:09.000Z" + }, + "end": { + "$date": "2021-12-07T02:59:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f5c95db-b6ef-4a13-8c34-4abcd049c328", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T03:00:05.000Z" + }, + "end": { + "$date": "2021-12-07T03:42:02.000Z" + }, + "events": [ + { + "uuid": "a7bd54ab-6b05-440d-ad20-b9cfe3a33377", + "start": { + "$date": "2021-12-07T03:00:05.000Z" + }, + "end": { + "$date": "2021-12-07T03:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "181778d5-f3e5-4a9c-8cc6-383f520fcf55", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T02:59:46.000Z" + }, + "end": { + "$date": "2021-12-07T03:23:45.000Z" + }, + "events": [ + { + "uuid": "7cfe3324-ef03-4d77-9408-a51cf6cd96f4", + "start": { + "$date": "2021-12-07T02:59:46.000Z" + }, + "end": { + "$date": "2021-12-07T03:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e15440c-5e08-4aa7-886d-0b8623d3a295", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T03:06:15.000Z" + }, + "end": { + "$date": "2021-12-07T03:25:36.000Z" + }, + "events": [ + { + "uuid": "bfeea2fa-2fb1-4713-977f-609d5f93cc10", + "start": { + "$date": "2021-12-07T03:06:15.000Z" + }, + "end": { + "$date": "2021-12-07T03:25:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a41dd97-6122-4cb3-9576-0465f7d46fd0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-07T03:06:20.000Z" + }, + "end": { + "$date": "2021-12-07T03:25:37.000Z" + }, + "events": [ + { + "uuid": "a993cfd6-d169-4996-8d51-6e428cb28e26", + "start": { + "$date": "2021-12-07T03:06:20.000Z" + }, + "end": { + "$date": "2021-12-07T03:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cf08797-79df-4e57-8249-4d8409a727f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-07T03:12:48.000Z" + }, + "end": { + "$date": "2021-12-07T03:35:38.000Z" + }, + "events": [ + { + "uuid": "23ed28da-36dd-4e40-8644-a8aed6f493a5", + "start": { + "$date": "2021-12-07T03:12:48.000Z" + }, + "end": { + "$date": "2021-12-07T03:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e2970956-cc64-4cbf-8e07-576bcd187ca2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-07T03:20:18.000Z" + }, + "end": { + "$date": "2021-12-07T05:15:53.000Z" + }, + "events": [ + { + "uuid": "bb17ea26-f43f-411c-9c03-3e8b483e68d8", + "start": { + "$date": "2021-12-07T03:20:18.000Z" + }, + "end": { + "$date": "2021-12-07T05:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b9151f7-016d-4f9c-83a8-51b63c24447c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T03:47:13.000Z" + }, + "end": { + "$date": "2021-12-07T04:16:49.000Z" + }, + "events": [ + { + "uuid": "f767e11d-08d1-4e8a-b42d-ea81ad5011c4", + "start": { + "$date": "2021-12-07T03:47:13.000Z" + }, + "end": { + "$date": "2021-12-07T04:16:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9258a5f5-36a1-45d8-bdc0-6c62c505a9bd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T03:33:01.000Z" + }, + "end": { + "$date": "2021-12-07T03:52:06.000Z" + }, + "events": [ + { + "uuid": "b7d0ecb4-be88-4925-9d7d-d052b33f29a7", + "start": { + "$date": "2021-12-07T03:33:01.000Z" + }, + "end": { + "$date": "2021-12-07T03:52:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0fc7aa80-95aa-419e-86fa-a50e7967c4f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-07T03:34:05.000Z" + }, + "end": { + "$date": "2021-12-07T03:35:55.000Z" + }, + "events": [ + { + "uuid": "517d8942-4622-4f95-8311-e9fa0c3ba34b", + "start": { + "$date": "2021-12-07T03:34:05.000Z" + }, + "end": { + "$date": "2021-12-07T03:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9a3c197b-176e-415e-81c2-1131d55acc87", + "uuid": "6d95c92c-c82f-4096-9f11-55bf932fa908", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-07T03:36:40.000Z" + }, + "end": { + "$date": "2021-12-07T04:06:17.000Z" + }, + "events": [ + { + "uuid": "b08efa79-de7f-4aa3-8f29-79ab6e2a519c", + "start": { + "$date": "2021-12-07T03:36:40.000Z" + }, + "end": { + "$date": "2021-12-07T04:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c2868d8-ba19-4f7b-bb12-174290d89c59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T03:47:19.000Z" + }, + "end": { + "$date": "2021-12-07T04:16:54.000Z" + }, + "events": [ + { + "uuid": "d6fe6cd5-25f0-41b8-98ce-5641524c2a09", + "start": { + "$date": "2021-12-07T03:47:19.000Z" + }, + "end": { + "$date": "2021-12-07T04:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ce13f4b-ec90-4cac-8724-8cb35dfaa13f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-07T03:47:19.000Z" + }, + "end": { + "$date": "2021-12-07T04:16:57.000Z" + }, + "events": [ + { + "uuid": "37de0bee-c569-41b9-80f7-9c633d168dbb", + "start": { + "$date": "2021-12-07T03:47:19.000Z" + }, + "end": { + "$date": "2021-12-07T04:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68547778-54c1-4842-ace2-9d538b8974ae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T03:53:56.000Z" + }, + "end": { + "$date": "2021-12-07T04:34:24.000Z" + }, + "events": [ + { + "uuid": "509e5856-27fb-4c98-8759-1fe8561373bc", + "start": { + "$date": "2021-12-07T03:53:56.000Z" + }, + "end": { + "$date": "2021-12-07T04:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9a3c197b-176e-415e-81c2-1131d55acc87", + "uuid": "7ecd23bd-1f5a-4f0c-9eed-4b0bc65b4c3c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-07T04:06:27.000Z" + }, + "end": { + "$date": "2021-12-07T04:31:34.000Z" + }, + "events": [ + { + "uuid": "e8291e7b-cdca-48c4-815c-dbd2ee61ca72", + "start": { + "$date": "2021-12-07T04:06:27.000Z" + }, + "end": { + "$date": "2021-12-07T04:31:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "678c1038-2822-4a10-8269-6246c25638e9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T04:33:34.000Z" + }, + "end": { + "$date": "2021-12-07T04:57:25.000Z" + }, + "events": [ + { + "uuid": "4b3fb84a-dec3-4694-98d1-68b0904fbcc4", + "start": { + "$date": "2021-12-07T04:33:34.000Z" + }, + "end": { + "$date": "2021-12-07T04:57:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6df1b6b2-07a1-4ec8-8616-0f7129c07aa7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-07T04:17:50.000Z" + }, + "end": { + "$date": "2021-12-07T04:21:45.000Z" + }, + "events": [ + { + "uuid": "85d4634a-72e0-4e36-b8a8-b4b56bca9ac5", + "start": { + "$date": "2021-12-07T04:17:50.000Z" + }, + "end": { + "$date": "2021-12-07T04:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa0fd0e7-36ab-40fb-9e81-d69e0227cc0d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T04:17:52.000Z" + }, + "end": { + "$date": "2021-12-07T04:21:44.000Z" + }, + "events": [ + { + "uuid": "2b576f46-9168-4764-8316-7b5bb4efa225", + "start": { + "$date": "2021-12-07T04:17:52.000Z" + }, + "end": { + "$date": "2021-12-07T04:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46ac006c-0c07-43cb-b252-958ef0a2eb70", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-07T04:33:41.000Z" + }, + "end": { + "$date": "2021-12-07T04:57:29.000Z" + }, + "events": [ + { + "uuid": "422bc239-17d1-484e-ad64-180f32d7ee64", + "start": { + "$date": "2021-12-07T04:33:41.000Z" + }, + "end": { + "$date": "2021-12-07T04:57:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23c5210e-fda3-4b65-8318-8d71e36abe41", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T04:33:39.000Z" + }, + "end": { + "$date": "2021-12-07T04:57:36.000Z" + }, + "events": [ + { + "uuid": "97a4357a-441a-4cd1-a911-5359384cb454", + "start": { + "$date": "2021-12-07T04:33:39.000Z" + }, + "end": { + "$date": "2021-12-07T04:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be54a0f4-971e-4891-a0b2-8c7dd01adbb2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T04:35:09.000Z" + }, + "end": { + "$date": "2021-12-07T05:13:20.000Z" + }, + "events": [ + { + "uuid": "db478d42-9235-45dd-a93a-aecc1b7b6f8a", + "start": { + "$date": "2021-12-07T04:35:09.000Z" + }, + "end": { + "$date": "2021-12-07T05:13:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a88851ca-8f5f-4ee2-b041-3b2dfb90b00d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T04:59:55.000Z" + }, + "end": { + "$date": "2021-12-07T05:22:06.000Z" + }, + "events": [ + { + "uuid": "182835f3-e543-421b-a77e-5ab85c2d217b", + "start": { + "$date": "2021-12-07T04:59:55.000Z" + }, + "end": { + "$date": "2021-12-07T05:22:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2b2dc34-ec1c-4c20-8013-5c583705d534", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-07T04:59:56.000Z" + }, + "end": { + "$date": "2021-12-07T05:22:13.000Z" + }, + "events": [ + { + "uuid": "e479fd27-81f6-40e5-8a03-a48b7f4596fe", + "start": { + "$date": "2021-12-07T04:59:56.000Z" + }, + "end": { + "$date": "2021-12-07T05:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43efd917-d123-4ece-bde4-9e7b307593e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T04:59:55.000Z" + }, + "end": { + "$date": "2021-12-07T05:22:21.000Z" + }, + "events": [ + { + "uuid": "110802b1-732c-448a-9833-661f0dbf6657", + "start": { + "$date": "2021-12-07T04:59:55.000Z" + }, + "end": { + "$date": "2021-12-07T05:22:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a4610a6-d490-4c57-b793-fff354f9334d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T05:14:33.000Z" + }, + "end": { + "$date": "2021-12-07T05:18:20.000Z" + }, + "events": [ + { + "uuid": "840da843-b896-4b40-b1c2-3b9c10579496", + "start": { + "$date": "2021-12-07T05:14:33.000Z" + }, + "end": { + "$date": "2021-12-07T05:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8ba1fa1-c1c0-40ad-9364-25c823c35f49", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-07T05:30:43.000Z" + }, + "end": { + "$date": "2021-12-07T05:51:07.000Z" + }, + "events": [ + { + "uuid": "285e7aba-5858-4ca0-9b45-35d3be0ba5b9", + "start": { + "$date": "2021-12-07T05:30:43.000Z" + }, + "end": { + "$date": "2021-12-07T05:51:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4954a43-bce0-4506-bdc3-c482d3e9fec9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-07T05:22:47.000Z" + }, + "end": { + "$date": "2021-12-07T05:28:29.000Z" + }, + "events": [ + { + "uuid": "db05a5ba-2e04-491c-801b-0e89bdfece2d", + "start": { + "$date": "2021-12-07T05:22:47.000Z" + }, + "end": { + "$date": "2021-12-07T05:28:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "207e4b23-9960-4889-bb03-7b54b8924141", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-07T05:46:11.000Z" + }, + "end": { + "$date": "2021-12-07T06:48:41.000Z" + }, + "events": [ + { + "uuid": "f3a152e0-f43b-49e8-b34a-97c9b02d8f7b", + "start": { + "$date": "2021-12-07T05:46:11.000Z" + }, + "end": { + "$date": "2021-12-07T06:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "89dea618-d5bc-4013-9aec-a60b5c0796c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-07T05:54:32.000Z" + }, + "end": { + "$date": "2021-12-07T06:49:21.000Z" + }, + "events": [ + { + "uuid": "d9769b0e-03af-4393-8dc6-2953c5bf4df0", + "start": { + "$date": "2021-12-07T05:54:32.000Z" + }, + "end": { + "$date": "2021-12-07T06:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9ef6bfa0-d792-43b6-b886-1a76d7892c20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T05:56:18.000Z" + }, + "end": { + "$date": "2021-12-07T06:48:17.000Z" + }, + "events": [ + { + "uuid": "ef2696b3-4c5e-49a9-af71-be50edf41158", + "start": { + "$date": "2021-12-07T05:56:18.000Z" + }, + "end": { + "$date": "2021-12-07T06:48:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ca1c71e0-9dbb-4aa3-a28e-dfd49050ccf3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-07T06:55:32.000Z" + }, + "end": { + "$date": "2021-12-07T11:33:49.000Z" + }, + "events": [ + { + "uuid": "71868d95-58a1-4cdb-b9ab-b1161fe28183", + "start": { + "$date": "2021-12-07T06:55:32.000Z" + }, + "end": { + "$date": "2021-12-07T11:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a48c42d3-9119-4861-94ec-f63f7c0df131", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T10:56:10.000Z" + }, + "end": { + "$date": "2021-12-07T11:46:10.000Z" + }, + "events": [ + { + "uuid": "ec9287f8-f1fb-4e8c-85bf-b3befb49518e", + "start": { + "$date": "2021-12-07T10:56:10.000Z" + }, + "end": { + "$date": "2021-12-07T11:46:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "5df83230-3c58-4ed4-a75d-8b7ddba8bd2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-07T23:10:24.000Z" + }, + "end": { + "$date": "2021-12-08T02:47:18.000Z" + }, + "events": [ + { + "uuid": "7b699f50-c893-4b3d-9943-b50b7669b356", + "start": { + "$date": "2021-12-07T23:10:24.000Z" + }, + "end": { + "$date": "2021-12-08T02:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c4bb9378-cc83-4ca1-92fc-f7f06b4dcfc9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-07T23:16:01.000Z" + }, + "end": { + "$date": "2021-12-08T02:26:27.000Z" + }, + "events": [ + { + "uuid": "deabfad7-9679-4313-8177-9efc5b9865f5", + "start": { + "$date": "2021-12-07T23:16:01.000Z" + }, + "end": { + "$date": "2021-12-08T02:26:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc84a3bd-199e-4b33-895c-4de500781cc5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-07T23:28:59.000Z" + }, + "end": { + "$date": "2021-12-08T00:07:57.000Z" + }, + "events": [ + { + "uuid": "3d4462d9-7469-4205-b922-15b7a2fe824c", + "start": { + "$date": "2021-12-07T23:28:59.000Z" + }, + "end": { + "$date": "2021-12-08T00:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "9e3b9cb3-e6e5-4d58-947d-0082fb26ad40", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-08T00:40:31.000Z" + }, + "end": { + "$date": "2021-12-08T01:38:05.000Z" + }, + "events": [ + { + "uuid": "0e1d3585-0df6-4bda-a43f-b2141ad91714", + "start": { + "$date": "2021-12-08T00:40:31.000Z" + }, + "end": { + "$date": "2021-12-08T01:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d8d450c9-f1f1-4efb-b4d1-7bcb8edb3dbe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-08T00:43:40.000Z" + }, + "end": { + "$date": "2021-12-08T01:07:46.000Z" + }, + "events": [ + { + "uuid": "21ee5bef-efbb-46c0-9125-d80890c85a70", + "start": { + "$date": "2021-12-08T00:43:40.000Z" + }, + "end": { + "$date": "2021-12-08T01:07:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8c434cfc-94c7-4d70-a344-03ba45ef51c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T00:59:28.000Z" + }, + "end": { + "$date": "2021-12-08T02:03:53.000Z" + }, + "events": [ + { + "uuid": "f7f984a4-af90-4ebc-8034-5340af9839e2", + "start": { + "$date": "2021-12-08T00:59:28.000Z" + }, + "end": { + "$date": "2021-12-08T01:59:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "707a089a-e0df-4c84-9415-5af6b93903ae", + "start": { + "$date": "2021-12-08T01:59:28.000Z" + }, + "end": { + "$date": "2021-12-08T02:03:53.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b3c09c84-5ec2-4c71-bd94-09f2f3d70aa7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-08T00:24:49.000Z" + }, + "end": { + "$date": "2021-12-08T01:01:40.000Z" + }, + "events": [ + { + "uuid": "c2da7f2e-05b5-4ed2-9e90-a497e719e409", + "start": { + "$date": "2021-12-08T00:24:49.000Z" + }, + "end": { + "$date": "2021-12-08T01:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dcc7aa3f-0b41-4caa-9018-01e9a3a34c06", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-08T01:01:48.000Z" + }, + "end": { + "$date": "2021-12-08T04:13:05.000Z" + }, + "events": [ + { + "uuid": "bd198c3a-459b-4abb-a3de-4fc5368215f9", + "start": { + "$date": "2021-12-08T01:01:48.000Z" + }, + "end": { + "$date": "2021-12-08T03:37:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4864f43b-a487-4c96-821c-be1574fb7ec3", + "start": { + "$date": "2021-12-08T03:37:48.000Z" + }, + "end": { + "$date": "2021-12-08T03:42:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5139d062-15b7-428a-a09c-09cfba242ec2", + "start": { + "$date": "2021-12-08T03:42:48.000Z" + }, + "end": { + "$date": "2021-12-08T03:52:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d2c29c66-a68a-4d30-828b-8d5cd9420172", + "start": { + "$date": "2021-12-08T03:52:48.000Z" + }, + "end": { + "$date": "2021-12-08T04:09:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90b95644-193b-4452-9336-08fc9f7b32c8", + "start": { + "$date": "2021-12-08T04:09:48.000Z" + }, + "end": { + "$date": "2021-12-08T04:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8237f78a-7098-49cc-ad62-8872c1d0fa6a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-08T01:38:51.000Z" + }, + "end": { + "$date": "2021-12-08T02:12:32.000Z" + }, + "events": [ + { + "uuid": "880d52be-cd86-4f99-bf21-1611515c20e6", + "start": { + "$date": "2021-12-08T01:38:51.000Z" + }, + "end": { + "$date": "2021-12-08T02:12:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a200f6cf-8df1-475a-9330-03e38075aada", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T02:12:56.000Z" + }, + "end": { + "$date": "2021-12-08T02:34:13.000Z" + }, + "events": [ + { + "uuid": "8121f005-1ea0-495c-9073-502c8adfc95a", + "start": { + "$date": "2021-12-08T02:12:56.000Z" + }, + "end": { + "$date": "2021-12-08T02:34:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ad7f0c8-c486-4bcb-a8ce-02f07ecd0df4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T02:36:14.000Z" + }, + "end": { + "$date": "2021-12-08T03:05:29.000Z" + }, + "events": [ + { + "uuid": "3e4956be-a715-437a-b9aa-92e936c32ceb", + "start": { + "$date": "2021-12-08T02:36:14.000Z" + }, + "end": { + "$date": "2021-12-08T03:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8c93b365-4bd2-40b7-8262-3dea25aecf86", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-08T02:55:04.000Z" + }, + "end": { + "$date": "2021-12-08T03:06:11.000Z" + }, + "events": [ + { + "uuid": "b5c1d191-94ce-4454-9f21-eaccc9a848b5", + "start": { + "$date": "2021-12-08T02:55:04.000Z" + }, + "end": { + "$date": "2021-12-08T03:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f4e5e19-220e-46c6-8a79-0d383cea8164", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T03:03:16.000Z" + }, + "end": { + "$date": "2021-12-08T03:37:56.000Z" + }, + "events": [ + { + "uuid": "677463ca-24b0-49bf-ab55-ac21e2cc962e", + "start": { + "$date": "2021-12-08T03:03:16.000Z" + }, + "end": { + "$date": "2021-12-08T03:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "ecb46788-a3e4-4ece-9915-7718472776bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T03:45:46.000Z" + }, + "end": { + "$date": "2021-12-08T03:47:51.000Z" + }, + "events": [ + { + "uuid": "ba403176-fc2c-4e53-a478-e0a9650e5707", + "start": { + "$date": "2021-12-08T03:45:46.000Z" + }, + "end": { + "$date": "2021-12-08T03:47:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "0da8fe05-1469-4ad4-9f99-114fef61ee07", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-08T03:00:36.000Z" + }, + "end": { + "$date": "2021-12-08T03:47:01.000Z" + }, + "events": [ + { + "uuid": "92cdc5ac-30ac-426a-82cf-3d86cc1c5e84", + "start": { + "$date": "2021-12-08T03:00:36.000Z" + }, + "end": { + "$date": "2021-12-08T03:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d177495-056b-4a9c-bcc9-a1e3761980ec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T03:06:28.000Z" + }, + "end": { + "$date": "2021-12-08T03:40:41.000Z" + }, + "events": [ + { + "uuid": "55629d31-f35c-4741-9897-84607b1da856", + "start": { + "$date": "2021-12-08T03:06:28.000Z" + }, + "end": { + "$date": "2021-12-08T03:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "92d75a18-693b-4176-92d7-3ee906541c52", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-08T04:10:47.000Z" + }, + "end": { + "$date": "2021-12-08T04:12:47.000Z" + }, + "events": [ + { + "uuid": "0da457c1-5755-4a2c-a9f2-0101442ab28f", + "start": { + "$date": "2021-12-08T04:10:47.000Z" + }, + "end": { + "$date": "2021-12-08T04:12:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96f5ce4a-ce4c-4d2d-bce0-945997f8e76e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T03:59:31.000Z" + }, + "end": { + "$date": "2021-12-08T04:30:32.000Z" + }, + "events": [ + { + "uuid": "f40bcc41-b203-4821-9b23-ae1810b013eb", + "start": { + "$date": "2021-12-08T03:59:31.000Z" + }, + "end": { + "$date": "2021-12-08T04:00:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0665097a-72a0-4da3-ac66-312e4f45c8d2", + "start": { + "$date": "2021-12-08T04:00:31.000Z" + }, + "end": { + "$date": "2021-12-08T04:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "0e0a1f25-d592-47a3-8066-55845a55c1d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T04:01:27.000Z" + }, + "end": { + "$date": "2021-12-08T04:23:53.000Z" + }, + "events": [ + { + "uuid": "7ba7e225-729b-4c6a-be9f-9eee841a8b43", + "start": { + "$date": "2021-12-08T04:01:27.000Z" + }, + "end": { + "$date": "2021-12-08T04:23:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4e6f0e1e-7810-445f-b7aa-307fc8912f94", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-08T04:14:10.000Z" + }, + "end": { + "$date": "2021-12-08T05:40:59.000Z" + }, + "events": [ + { + "uuid": "108d3135-f9d3-481d-888d-981ed6bb5e81", + "start": { + "$date": "2021-12-08T04:14:10.000Z" + }, + "end": { + "$date": "2021-12-08T05:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a54d31ed-8adc-44fa-881e-07b2713022a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-08T04:21:14.000Z" + }, + "end": { + "$date": "2021-12-08T04:23:49.000Z" + }, + "events": [ + { + "uuid": "f18c0d5c-980f-49b3-97ab-cf6c6611ff13", + "start": { + "$date": "2021-12-08T04:21:14.000Z" + }, + "end": { + "$date": "2021-12-08T04:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ec1892bc-9d55-411d-b9e2-9703b5672656", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T04:24:13.000Z" + }, + "end": { + "$date": "2021-12-08T04:37:53.000Z" + }, + "events": [ + { + "uuid": "b9c10aef-edf2-4894-ba22-4283684a9eef", + "start": { + "$date": "2021-12-08T04:24:13.000Z" + }, + "end": { + "$date": "2021-12-08T04:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "8c6d7b4b-0fe7-4d2c-adc6-b1f567890b6b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-08T04:24:19.000Z" + }, + "end": { + "$date": "2021-12-08T04:37:55.000Z" + }, + "events": [ + { + "uuid": "708f800d-b90a-4552-a8c7-74242f56f311", + "start": { + "$date": "2021-12-08T04:24:19.000Z" + }, + "end": { + "$date": "2021-12-08T04:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d81c8ffb-41c8-4945-81b4-3221963bdf3f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-08T04:43:34.000Z" + }, + "end": { + "$date": "2021-12-08T05:19:54.000Z" + }, + "events": [ + { + "uuid": "afbd3032-417c-4568-99a0-0702c0ebfe6b", + "start": { + "$date": "2021-12-08T04:43:34.000Z" + }, + "end": { + "$date": "2021-12-08T05:19:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4cade26-8d04-4bf3-a7f5-0cd976f80935", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T04:43:35.000Z" + }, + "end": { + "$date": "2021-12-08T05:19:47.000Z" + }, + "events": [ + { + "uuid": "7c4e9cb7-566c-48ee-9fef-47f0a7c36f57", + "start": { + "$date": "2021-12-08T04:43:35.000Z" + }, + "end": { + "$date": "2021-12-08T05:19:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "2b14a724-d4e6-42f9-8c18-b162cc151027", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-08T04:48:36.000Z" + }, + "end": { + "$date": "2021-12-08T05:12:17.000Z" + }, + "events": [ + { + "uuid": "78e107f7-ce94-4e09-85d1-92206a7da02c", + "start": { + "$date": "2021-12-08T04:48:36.000Z" + }, + "end": { + "$date": "2021-12-08T05:12:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "148c6f38-bb40-46b4-8ab2-48abffa329dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-08T05:32:31.000Z" + }, + "end": { + "$date": "2021-12-08T05:54:23.000Z" + }, + "events": [ + { + "uuid": "eaa0caa7-0d67-4d80-8ffa-d9eeaa82efe2", + "start": { + "$date": "2021-12-08T05:32:31.000Z" + }, + "end": { + "$date": "2021-12-08T05:54:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08208122-a3cb-4373-ad18-96cf5bf556e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T05:26:07.000Z" + }, + "end": { + "$date": "2021-12-08T05:28:22.000Z" + }, + "events": [ + { + "uuid": "7966d16b-672a-4135-bec4-6bf0314544f3", + "start": { + "$date": "2021-12-08T05:26:07.000Z" + }, + "end": { + "$date": "2021-12-08T05:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af247071-72d6-48d7-863c-59b72d002103", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-08T05:32:31.000Z" + }, + "end": { + "$date": "2021-12-08T05:54:21.000Z" + }, + "events": [ + { + "uuid": "0877e15c-a566-4f08-aecf-e2d383e1c4af", + "start": { + "$date": "2021-12-08T05:32:31.000Z" + }, + "end": { + "$date": "2021-12-08T05:54:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbe1b493-c1cd-4508-b3f2-aea6c198a284", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T05:32:30.000Z" + }, + "end": { + "$date": "2021-12-08T05:54:22.000Z" + }, + "events": [ + { + "uuid": "ffceb17b-7d54-4fd2-9a7a-e9e66640db22", + "start": { + "$date": "2021-12-08T05:32:30.000Z" + }, + "end": { + "$date": "2021-12-08T05:54:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6aea93aa-2f7a-442b-94dc-d8db4e4a609d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-08T05:32:18.000Z" + }, + "end": { + "$date": "2021-12-08T06:19:57.000Z" + }, + "events": [ + { + "uuid": "d92da873-c78a-418a-9c5b-7340f212264e", + "start": { + "$date": "2021-12-08T05:32:18.000Z" + }, + "end": { + "$date": "2021-12-08T06:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "db934a9f-1f1f-40e3-93f8-b397b6a0be3c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-08T05:53:07.000Z" + }, + "end": { + "$date": "2021-12-08T07:08:08.000Z" + }, + "events": [ + { + "uuid": "c030e0de-0378-4d7f-a562-9a4a53e5408a", + "start": { + "$date": "2021-12-08T05:53:07.000Z" + }, + "end": { + "$date": "2021-12-08T07:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f76051bb-a466-4b56-9d64-4d70adec2336", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-08T05:56:41.000Z" + }, + "end": { + "$date": "2021-12-08T06:07:17.000Z" + }, + "events": [ + { + "uuid": "ef4012c2-17aa-4550-b23f-9688a1120b41", + "start": { + "$date": "2021-12-08T05:56:41.000Z" + }, + "end": { + "$date": "2021-12-08T06:07:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e691015-76f9-4007-b7c6-4ca48c4bd121", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-08T05:56:37.000Z" + }, + "end": { + "$date": "2021-12-08T06:06:50.000Z" + }, + "events": [ + { + "uuid": "f2bc4b4d-a393-4b6a-b55a-577a4deaa84e", + "start": { + "$date": "2021-12-08T05:56:37.000Z" + }, + "end": { + "$date": "2021-12-08T06:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab733b71-65c5-487f-8e7e-9a93dd98e71e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T06:31:20.000Z" + }, + "end": { + "$date": "2021-12-08T06:52:40.000Z" + }, + "events": [ + { + "uuid": "174de0bc-f6f7-4ac7-91a1-65bf1c8c6e93", + "start": { + "$date": "2021-12-08T06:31:20.000Z" + }, + "end": { + "$date": "2021-12-08T06:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6fc6955-996a-406f-9ce3-ddbc34198aa8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T07:00:37.000Z" + }, + "end": { + "$date": "2021-12-08T07:29:35.000Z" + }, + "events": [ + { + "uuid": "cfe88f10-0ef9-4a6b-9e22-e8fd3d19251f", + "start": { + "$date": "2021-12-08T07:00:37.000Z" + }, + "end": { + "$date": "2021-12-08T07:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "440d2896-8b33-43c2-afbd-3fb7b11381fc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-08T11:01:50.000Z" + }, + "end": { + "$date": "2021-12-08T13:46:50.000Z" + }, + "events": [ + { + "uuid": "4784ddde-f52b-470e-8b61-cb65ce42d1fa", + "start": { + "$date": "2021-12-08T11:01:50.000Z" + }, + "end": { + "$date": "2021-12-08T13:46:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a7a92281-bbb5-4575-a72b-97294d00213b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-08T14:01:47.000Z" + }, + "end": { + "$date": "2021-12-08T14:03:01.000Z" + }, + "events": [ + { + "uuid": "bc14ef2c-85e1-42d5-aada-0a7f121569ee", + "start": { + "$date": "2021-12-08T14:01:47.000Z" + }, + "end": { + "$date": "2021-12-08T14:03:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "435e62ff-d2ec-4623-aa55-388fd4506909", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-08T14:03:17.000Z" + }, + "end": { + "$date": "2021-12-08T14:06:07.000Z" + }, + "events": [ + { + "uuid": "2c28437f-ab65-4224-b564-4deaf95a0061", + "start": { + "$date": "2021-12-08T14:03:17.000Z" + }, + "end": { + "$date": "2021-12-08T14:06:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2695f5fe-0481-4734-8a8e-31534bad0c13", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-08T14:06:33.000Z" + }, + "end": { + "$date": "2021-12-08T14:42:19.000Z" + }, + "events": [ + { + "uuid": "48b9ccb7-8883-47a7-b2eb-a45e2fa1c533", + "start": { + "$date": "2021-12-08T14:06:33.000Z" + }, + "end": { + "$date": "2021-12-08T14:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "6e2f943e-8af4-4bd3-afd7-380919432876", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T14:51:09.000Z" + }, + "end": { + "$date": "2021-12-08T15:26:53.000Z" + }, + "events": [ + { + "uuid": "72879285-75ae-4f16-8faa-29fea4dc4764", + "start": { + "$date": "2021-12-08T14:51:09.000Z" + }, + "end": { + "$date": "2021-12-08T15:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "4aa027c0-3fa4-40ae-a1c3-114db6b913e4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T16:03:29.000Z" + }, + "end": { + "$date": "2021-12-08T16:29:07.000Z" + }, + "events": [ + { + "uuid": "928124e0-fb65-4408-9ae7-5a489bf656db", + "start": { + "$date": "2021-12-08T16:03:29.000Z" + }, + "end": { + "$date": "2021-12-08T16:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f457449a-786c-4374-a608-c28147fea137", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T16:50:28.000Z" + }, + "end": { + "$date": "2021-12-08T17:01:35.000Z" + }, + "events": [ + { + "uuid": "94458c5d-41eb-45ae-ad92-d7362af55acd", + "start": { + "$date": "2021-12-08T16:50:28.000Z" + }, + "end": { + "$date": "2021-12-08T17:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b8057ae-7835-4298-b529-c095a8a3ce61", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T16:53:41.000Z" + }, + "end": { + "$date": "2021-12-08T17:10:57.000Z" + }, + "events": [ + { + "uuid": "276ef331-0e3f-4a38-ae03-ff11dd9352d5", + "start": { + "$date": "2021-12-08T16:53:41.000Z" + }, + "end": { + "$date": "2021-12-08T17:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "16607623-bd6a-4b29-821f-68eb17ae936f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T17:03:49.000Z" + }, + "end": { + "$date": "2021-12-08T17:08:16.000Z" + }, + "events": [ + { + "uuid": "7748ea45-1c5b-4820-b323-dd98928a9270", + "start": { + "$date": "2021-12-08T17:03:49.000Z" + }, + "end": { + "$date": "2021-12-08T17:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eafb4043-e3f3-4809-b4ad-46ade60409f7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T17:18:04.000Z" + }, + "end": { + "$date": "2021-12-08T17:46:11.000Z" + }, + "events": [ + { + "uuid": "f66098ef-b311-44b1-813a-534de4a9ebf9", + "start": { + "$date": "2021-12-08T17:18:04.000Z" + }, + "end": { + "$date": "2021-12-08T17:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6596c277-1638-453d-a7e4-111f3dd01040", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T17:47:28.000Z" + }, + "end": { + "$date": "2021-12-08T18:24:38.000Z" + }, + "events": [ + { + "uuid": "14130e17-1457-48e9-bd58-fb4be1d35ba5", + "start": { + "$date": "2021-12-08T17:47:28.000Z" + }, + "end": { + "$date": "2021-12-08T18:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "e8f1461d-f376-4b49-926f-690d50364141", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T17:48:06.000Z" + }, + "end": { + "$date": "2021-12-08T18:45:54.000Z" + }, + "events": [ + { + "uuid": "88f79467-5a59-4ffc-b18b-0974e3ffd822", + "start": { + "$date": "2021-12-08T17:48:06.000Z" + }, + "end": { + "$date": "2021-12-08T18:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4decf580-f59a-4fb5-a639-97b31fce9eb1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T18:27:20.000Z" + }, + "end": { + "$date": "2021-12-08T18:55:40.000Z" + }, + "events": [ + { + "uuid": "932ff76f-aabd-45ee-ba95-28244e69ee2b", + "start": { + "$date": "2021-12-08T18:27:20.000Z" + }, + "end": { + "$date": "2021-12-08T18:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8befd68e-0658-43a1-8189-c505a70b4583", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T18:58:09.000Z" + }, + "end": { + "$date": "2021-12-08T19:16:17.000Z" + }, + "events": [ + { + "uuid": "41a07463-52aa-479e-bbe8-0c7094f40104", + "start": { + "$date": "2021-12-08T18:58:09.000Z" + }, + "end": { + "$date": "2021-12-08T19:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c2ba1a2c-1fba-4440-aaed-6044fec9e80b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-08T19:16:49.000Z" + }, + "end": { + "$date": "2021-12-08T21:21:13.000Z" + }, + "events": [ + { + "uuid": "665ff86a-658e-4bbe-84f0-1062e48e6445", + "start": { + "$date": "2021-12-08T19:16:49.000Z" + }, + "end": { + "$date": "2021-12-08T21:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "97e8956c-27a8-4686-b295-21559f7a9117", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-08T20:07:41.000Z" + }, + "end": { + "$date": "2021-12-08T20:14:36.000Z" + }, + "events": [ + { + "uuid": "4f1f93f4-7633-404f-9bdd-d51eeb53557e", + "start": { + "$date": "2021-12-08T20:07:41.000Z" + }, + "end": { + "$date": "2021-12-08T20:14:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2015829-9cdb-4400-9437-b05d983a2d17", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T21:01:21.000Z" + }, + "end": { + "$date": "2021-12-08T21:21:08.000Z" + }, + "events": [ + { + "uuid": "2d99db82-9759-49bf-8d9b-55fcd76dfaf6", + "start": { + "$date": "2021-12-08T21:01:21.000Z" + }, + "end": { + "$date": "2021-12-08T21:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52deb321-b6e5-4227-9783-2b6b68807cf1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T21:32:17.000Z" + }, + "end": { + "$date": "2021-12-08T22:05:56.000Z" + }, + "events": [ + { + "uuid": "93d057f1-5a69-49d7-af08-831caef6d7e5", + "start": { + "$date": "2021-12-08T21:32:17.000Z" + }, + "end": { + "$date": "2021-12-08T22:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7635bdc3-201a-4899-9e25-5c8d72e39025", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-08T23:12:30.000Z" + }, + "end": { + "$date": "2021-12-08T23:12:56.000Z" + }, + "events": [ + { + "uuid": "cc707ca8-4345-4614-bed6-02667f9ee2ae", + "start": { + "$date": "2021-12-08T23:12:30.000Z" + }, + "end": { + "$date": "2021-12-08T23:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "78cd97bb-97d5-41ab-9b7f-7c7c812a44a7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T22:27:07.000Z" + }, + "end": { + "$date": "2021-12-08T22:52:14.000Z" + }, + "events": [ + { + "uuid": "a65bdb7a-5f9a-4a74-93b2-ac08b7d3df51", + "start": { + "$date": "2021-12-08T22:27:07.000Z" + }, + "end": { + "$date": "2021-12-08T22:52:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "8912759b-9501-4106-a97d-0d655c995dc6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-08T23:15:00.000Z" + }, + "end": { + "$date": "2021-12-09T01:22:52.000Z" + }, + "events": [ + { + "uuid": "0ca5bda0-a8b2-428a-8523-f1553e5a2de3", + "start": { + "$date": "2021-12-08T23:15:00.000Z" + }, + "end": { + "$date": "2021-12-09T01:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "3f0246fe-1073-475d-8d7c-5ad81deb2d26", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-08T23:15:06.000Z" + }, + "end": { + "$date": "2021-12-09T01:12:16.000Z" + }, + "events": [ + { + "uuid": "751b66d1-f8e2-4ff8-bd94-b7e8f6117f14", + "start": { + "$date": "2021-12-08T23:15:06.000Z" + }, + "end": { + "$date": "2021-12-09T01:12:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "154c76f7-7c43-489b-8acc-d4b2983e3311", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-08T23:59:16.000Z" + }, + "end": { + "$date": "2021-12-09T00:26:02.000Z" + }, + "events": [ + { + "uuid": "bb7634c0-52d2-4aea-84c7-e0e7a9ba955a", + "start": { + "$date": "2021-12-08T23:59:16.000Z" + }, + "end": { + "$date": "2021-12-09T00:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0ccf0372-5418-4a8f-ad3c-69c3f38a1e9f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T00:15:44.000Z" + }, + "end": { + "$date": "2021-12-09T05:28:13.000Z" + }, + "events": [ + { + "uuid": "90551550-c2e5-4063-8cae-274e834505dc", + "start": { + "$date": "2021-12-09T00:15:44.000Z" + }, + "end": { + "$date": "2021-12-09T05:28:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "2b57df85-bdff-4479-bcab-c1aabbd19fd8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-09T00:16:19.000Z" + }, + "end": { + "$date": "2021-12-09T00:47:35.000Z" + }, + "events": [ + { + "uuid": "d7ff5e17-5ad8-471e-9862-2cfedc377ef6", + "start": { + "$date": "2021-12-09T00:16:19.000Z" + }, + "end": { + "$date": "2021-12-09T00:47:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ea153ea-691c-44dd-ae02-2a1564ea9d5e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T00:26:54.000Z" + }, + "end": { + "$date": "2021-12-09T00:28:01.000Z" + }, + "events": [ + { + "uuid": "1f0c0958-123c-4426-96b1-ea796b795b7a", + "start": { + "$date": "2021-12-09T00:26:54.000Z" + }, + "end": { + "$date": "2021-12-09T00:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e636c55a-7cd4-42ee-9ffd-55f4c724f438", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T00:28:09.000Z" + }, + "end": { + "$date": "2021-12-09T00:37:14.000Z" + }, + "events": [ + { + "uuid": "13250a54-8294-451f-8702-c5635f59666f", + "start": { + "$date": "2021-12-09T00:28:09.000Z" + }, + "end": { + "$date": "2021-12-09T00:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "f4810e3d-51dc-48d4-9028-889d6290a2b0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T01:03:01.000Z" + }, + "end": { + "$date": "2021-12-09T02:33:47.000Z" + }, + "events": [ + { + "uuid": "8c5594fb-cac8-430e-9d40-822bbb964a45", + "start": { + "$date": "2021-12-09T01:03:01.000Z" + }, + "end": { + "$date": "2021-12-09T02:33:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "78a3d367-e485-4201-9ff9-996c0e373f09", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-09T01:28:25.000Z" + }, + "end": { + "$date": "2021-12-09T02:00:21.000Z" + }, + "events": [ + { + "uuid": "a4504c82-4b81-4e25-bb6c-905c6d716324", + "start": { + "$date": "2021-12-09T01:28:25.000Z" + }, + "end": { + "$date": "2021-12-09T02:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "04a9f60e-8086-4553-8cae-4d039279e946", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-09T01:43:26.000Z" + }, + "end": { + "$date": "2021-12-09T01:44:57.000Z" + }, + "events": [ + { + "uuid": "1d80b0db-5aae-4047-b757-2433315f43b2", + "start": { + "$date": "2021-12-09T01:43:26.000Z" + }, + "end": { + "$date": "2021-12-09T01:44:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "4e17bf6a-1613-4785-bacc-ca46b0ee86c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T01:54:25.000Z" + }, + "end": { + "$date": "2021-12-09T02:10:36.000Z" + }, + "events": [ + { + "uuid": "dcd8711c-e6e8-4443-bba8-94b0ddf251e8", + "start": { + "$date": "2021-12-09T01:54:25.000Z" + }, + "end": { + "$date": "2021-12-09T02:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0d4849db-57c9-41bd-afdf-5483ce9db31d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-09T04:31:58.000Z" + }, + "end": { + "$date": "2021-12-09T06:46:14.000Z" + }, + "events": [ + { + "uuid": "e908a69e-941c-459c-b27e-fa1e470d4104", + "start": { + "$date": "2021-12-09T04:31:58.000Z" + }, + "end": { + "$date": "2021-12-09T05:18:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81d3aba6-811e-44e3-b8b5-eb489336650c", + "start": { + "$date": "2021-12-09T05:18:58.000Z" + }, + "end": { + "$date": "2021-12-09T05:23:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c724f8fa-c60a-4144-b3b8-b48191fad316", + "start": { + "$date": "2021-12-09T05:23:58.000Z" + }, + "end": { + "$date": "2021-12-09T06:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d9615b8-978d-400d-a847-45d2c2c7f503", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-09T02:17:28.000Z" + }, + "end": { + "$date": "2021-12-09T02:41:18.000Z" + }, + "events": [ + { + "uuid": "ba722604-a220-4619-83c1-0ca8bd54dd45", + "start": { + "$date": "2021-12-09T02:17:28.000Z" + }, + "end": { + "$date": "2021-12-09T02:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "408c7434-bf90-4da5-9d3e-8de33c51b6ad", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-09T02:21:04.000Z" + }, + "end": { + "$date": "2021-12-09T04:33:03.000Z" + }, + "events": [ + { + "uuid": "a1edc707-264a-405f-80ec-c02158bf5fe6", + "start": { + "$date": "2021-12-09T02:21:04.000Z" + }, + "end": { + "$date": "2021-12-09T04:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "363d6361-9bde-41a4-b1e2-b0d1d68db397", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T02:32:41.000Z" + }, + "end": { + "$date": "2021-12-09T03:05:25.000Z" + }, + "events": [ + { + "uuid": "cb3ea03a-63f0-49a1-98cd-a42e6e85cd4c", + "start": { + "$date": "2021-12-09T02:32:41.000Z" + }, + "end": { + "$date": "2021-12-09T03:05:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "392a0a2d-6c94-47ea-adc1-c111a0eb0bab", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T02:38:34.000Z" + }, + "end": { + "$date": "2021-12-09T04:37:51.000Z" + }, + "events": [ + { + "uuid": "a57b8171-a4fd-4340-a87a-518f4d58f45c", + "start": { + "$date": "2021-12-09T02:38:34.000Z" + }, + "end": { + "$date": "2021-12-09T04:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d0f5e20-33ee-4b85-82ad-99f902aaa7cb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T02:40:59.000Z" + }, + "end": { + "$date": "2021-12-09T03:07:29.000Z" + }, + "events": [ + { + "uuid": "360bc1c6-8e0c-4eac-83ae-f3e029a4249e", + "start": { + "$date": "2021-12-09T02:40:59.000Z" + }, + "end": { + "$date": "2021-12-09T03:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a0824021-45f1-42b3-8dad-eead976fb57f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T02:41:15.000Z" + }, + "end": { + "$date": "2021-12-09T03:24:19.000Z" + }, + "events": [ + { + "uuid": "620d04bb-99c6-49c8-ba58-f3cdefff2370", + "start": { + "$date": "2021-12-09T02:41:15.000Z" + }, + "end": { + "$date": "2021-12-09T03:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "1c248cac-e8c8-42c7-87c1-27dbbff57a2f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-09T02:41:59.000Z" + }, + "end": { + "$date": "2021-12-09T03:21:16.000Z" + }, + "events": [ + { + "uuid": "efb75b87-e081-40df-b8e2-73e3a5ec311a", + "start": { + "$date": "2021-12-09T02:41:59.000Z" + }, + "end": { + "$date": "2021-12-09T03:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7793ea7-80ac-44c5-9140-3804c149b3dc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T03:17:06.000Z" + }, + "end": { + "$date": "2021-12-09T03:33:12.000Z" + }, + "events": [ + { + "uuid": "f1eecca2-b924-4318-88a0-c96e6bf4a466", + "start": { + "$date": "2021-12-09T03:17:06.000Z" + }, + "end": { + "$date": "2021-12-09T03:33:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f0697b7-0e8a-4d71-a7ca-2efa786301de", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T03:09:23.000Z" + }, + "end": { + "$date": "2021-12-09T03:34:55.000Z" + }, + "events": [ + { + "uuid": "947a39df-4233-41e8-bc47-912417657936", + "start": { + "$date": "2021-12-09T03:09:23.000Z" + }, + "end": { + "$date": "2021-12-09T03:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ce11769c-c7a0-4e4b-86bf-0c07f2befcbf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T03:11:28.000Z" + }, + "end": { + "$date": "2021-12-09T04:33:21.000Z" + }, + "events": [ + { + "uuid": "12e9936a-5793-4fd0-a95a-07f9bb38184c", + "start": { + "$date": "2021-12-09T03:11:28.000Z" + }, + "end": { + "$date": "2021-12-09T04:33:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "97108bbd-c8ed-429f-a52e-8a1e64949175", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-09T03:22:32.000Z" + }, + "end": { + "$date": "2021-12-09T04:32:49.000Z" + }, + "events": [ + { + "uuid": "81d27c65-a487-4b92-9dc3-f978a063cc4d", + "start": { + "$date": "2021-12-09T03:22:32.000Z" + }, + "end": { + "$date": "2021-12-09T04:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c7c9647-5183-4504-9105-446a1bec77ad", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T03:35:26.000Z" + }, + "end": { + "$date": "2021-12-09T05:34:26.000Z" + }, + "events": [ + { + "uuid": "3af0d424-15c7-482a-b282-ed5725c81ad9", + "start": { + "$date": "2021-12-09T03:35:26.000Z" + }, + "end": { + "$date": "2021-12-09T05:34:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7f2af17-ecd5-4bea-84d5-4484db7823f8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T03:37:22.000Z" + }, + "end": { + "$date": "2021-12-09T04:06:09.000Z" + }, + "events": [ + { + "uuid": "202875c2-dcb1-434f-a6f4-38e5ab5c56ca", + "start": { + "$date": "2021-12-09T03:37:22.000Z" + }, + "end": { + "$date": "2021-12-09T04:06:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2dda011d-0566-43a1-aa65-2cc460e18ac0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-09T03:58:23.000Z" + }, + "end": { + "$date": "2021-12-09T04:33:25.000Z" + }, + "events": [ + { + "uuid": "fc06e924-f03f-403e-bf0d-e2709dcab93c", + "start": { + "$date": "2021-12-09T03:58:23.000Z" + }, + "end": { + "$date": "2021-12-09T04:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b9e75d9-7ce0-4136-bf98-f255e8998688", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T04:13:18.000Z" + }, + "end": { + "$date": "2021-12-09T04:34:24.000Z" + }, + "events": [ + { + "uuid": "7030db6a-765d-4f18-872d-a4d1c683d7e3", + "start": { + "$date": "2021-12-09T04:13:18.000Z" + }, + "end": { + "$date": "2021-12-09T04:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "830589fb-a3df-4a15-bcb6-e5effdf3fd36", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T04:36:46.000Z" + }, + "end": { + "$date": "2021-12-09T05:10:03.000Z" + }, + "events": [ + { + "uuid": "9ed97244-f010-4092-9551-42a978edfa5f", + "start": { + "$date": "2021-12-09T04:36:46.000Z" + }, + "end": { + "$date": "2021-12-09T05:10:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "07254e80-f084-4b7a-9913-e905a52eadd4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T05:15:47.000Z" + }, + "end": { + "$date": "2021-12-09T05:37:15.000Z" + }, + "events": [ + { + "uuid": "b4d1740f-2d6b-4898-838c-aee1b49474fb", + "start": { + "$date": "2021-12-09T05:15:47.000Z" + }, + "end": { + "$date": "2021-12-09T05:37:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "32a9a84e-afaa-4ddd-ae95-b8af1669f249", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T05:31:24.000Z" + }, + "end": { + "$date": "2021-12-09T05:38:11.000Z" + }, + "events": [ + { + "uuid": "752837c9-86ed-45c5-aa2f-46233df26300", + "start": { + "$date": "2021-12-09T05:31:24.000Z" + }, + "end": { + "$date": "2021-12-09T05:38:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36487e80-ec29-487f-8e08-b12b3e5036cb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T05:42:33.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:39.000Z" + }, + "events": [ + { + "uuid": "7dc8b9cd-dc7b-4424-b7e2-20a118e304fc", + "start": { + "$date": "2021-12-09T05:42:33.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42c5b644-6411-4add-8454-f8e0adc39ad4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T05:59:37.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:37.000Z" + }, + "events": [ + { + "uuid": "1d6b68b8-932f-41b9-b22f-2d1462382749", + "start": { + "$date": "2021-12-09T05:59:37.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7908120d-351b-41ce-8186-dc67dd8abfe0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T05:42:39.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:48.000Z" + }, + "events": [ + { + "uuid": "0266a507-fbbd-404e-a57c-18995340dc3d", + "start": { + "$date": "2021-12-09T05:42:39.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e437d739-2bc0-42b6-8ba5-e2009c483cd4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T05:42:36.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:46.000Z" + }, + "events": [ + { + "uuid": "762eed03-a27a-42e5-9a9f-5d5be6a78256", + "start": { + "$date": "2021-12-09T05:42:36.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3bed6d1-0427-4ed8-98b1-2507bf151ec7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-09T05:42:34.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:35.000Z" + }, + "events": [ + { + "uuid": "d1e272b7-6684-4b43-bb6c-3420ba9b090a", + "start": { + "$date": "2021-12-09T05:42:34.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc1d1a09-865d-44c3-a181-b9d3d7fd3080", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-09T05:42:38.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:42.000Z" + }, + "events": [ + { + "uuid": "a445eb18-b482-4ec1-bc65-86a59f6af5d1", + "start": { + "$date": "2021-12-09T05:42:38.000Z" + }, + "end": { + "$date": "2021-12-09T05:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7ff6c45-460b-4ba1-8420-88fa228a5359", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T06:02:54.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:40.000Z" + }, + "events": [ + { + "uuid": "41b609db-1dbf-4e42-8087-dc18d945ab6b", + "start": { + "$date": "2021-12-09T06:02:54.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10bfa045-3c2c-43c6-aad0-b08459897bb1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T06:17:37.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:38.000Z" + }, + "events": [ + { + "uuid": "412a353f-f00d-4c04-bcf9-281dc8bf55a8", + "start": { + "$date": "2021-12-09T06:17:37.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aae20eed-52b4-41e0-82f2-e814104b4413", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T06:01:15.000Z" + }, + "end": { + "$date": "2021-12-09T06:04:08.000Z" + }, + "events": [ + { + "uuid": "c8e6c6e3-e236-477e-a142-377c49e8b3cc", + "start": { + "$date": "2021-12-09T06:01:15.000Z" + }, + "end": { + "$date": "2021-12-09T06:04:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19455345-3161-4187-b81a-f9a43df83517", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T06:02:47.000Z" + }, + "end": { + "$date": "2021-12-09T06:14:10.000Z" + }, + "events": [ + { + "uuid": "1f9104f8-9312-4fb4-9251-543b86a61941", + "start": { + "$date": "2021-12-09T06:02:47.000Z" + }, + "end": { + "$date": "2021-12-09T06:14:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ab2b449-5604-441f-8cf3-61e2d9790b0a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-09T06:02:55.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:36.000Z" + }, + "events": [ + { + "uuid": "b4bea88d-9609-40cb-ac8b-b31323717a4c", + "start": { + "$date": "2021-12-09T06:02:55.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fafef1b-3fa0-412e-a693-402bd54aef31", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-09T06:02:53.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:37.000Z" + }, + "events": [ + { + "uuid": "6f792646-2fe0-439f-a7ef-80be1013ae2a", + "start": { + "$date": "2021-12-09T06:02:53.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6878646-8274-4b17-927d-0bce13ab8199", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T06:02:55.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:46.000Z" + }, + "events": [ + { + "uuid": "20048ace-21bb-41d0-80b3-1c1dd6da0648", + "start": { + "$date": "2021-12-09T06:02:55.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76fac7c5-1a13-4386-b275-f2555191b0d3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-09T06:14:19.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:39.000Z" + }, + "events": [ + { + "uuid": "e14c4db3-bda0-4ed5-8dd5-5fe46fe0930c", + "start": { + "$date": "2021-12-09T06:14:19.000Z" + }, + "end": { + "$date": "2021-12-09T06:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e90a9a05-9136-41a9-8c21-c2d1dab82a6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T06:21:42.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:29.000Z" + }, + "events": [ + { + "uuid": "53644860-2790-4378-af9b-389eaf422335", + "start": { + "$date": "2021-12-09T06:21:42.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "336d52db-ce5d-49b7-aaf1-3e50829d7d68", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T06:35:18.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:19.000Z" + }, + "events": [ + { + "uuid": "d3263829-5661-481d-98fa-635bd1c1cc16", + "start": { + "$date": "2021-12-09T06:35:18.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d23f8ed2-e2db-468c-b601-784b3aab1084", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T06:21:39.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:24.000Z" + }, + "events": [ + { + "uuid": "7bcd248e-d2c6-44b4-a63b-fb5a6fa0d475", + "start": { + "$date": "2021-12-09T06:21:39.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d328108-6e81-473f-a1b8-0a82eb24f029", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-09T06:21:49.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:29.000Z" + }, + "events": [ + { + "uuid": "45b6ebbf-7b05-41cf-a519-5c2ad17b940e", + "start": { + "$date": "2021-12-09T06:21:49.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b03b4c77-52b2-48da-ad44-dd04fa42bcfd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-09T06:21:45.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:28.000Z" + }, + "events": [ + { + "uuid": "923312fd-7a4b-4c78-bb8b-eb761fe8173e", + "start": { + "$date": "2021-12-09T06:21:45.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d9b238a-7ba2-49f1-a957-74bd0286bed8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T06:21:44.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:20.000Z" + }, + "events": [ + { + "uuid": "93ccba09-3da8-4aff-b858-caa56fd9b071", + "start": { + "$date": "2021-12-09T06:21:44.000Z" + }, + "end": { + "$date": "2021-12-09T06:35:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0d9aa13-fb56-4acd-a56a-894a04cea015", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T06:37:58.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:29.000Z" + }, + "events": [ + { + "uuid": "147a0518-9279-48b4-97bd-216abb723640", + "start": { + "$date": "2021-12-09T06:37:58.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c73527d-09e9-45fe-bdf2-b4ca9148a447", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T06:37:58.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:19.000Z" + }, + "events": [ + { + "uuid": "5b9c6985-889c-40aa-bc72-c8c7bcf2a558", + "start": { + "$date": "2021-12-09T06:37:58.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05712f03-1fab-4a01-8cbe-cdcff7febee3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T06:37:59.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:30.000Z" + }, + "events": [ + { + "uuid": "a39e0710-f84d-40ab-ac68-80ae4681a1f9", + "start": { + "$date": "2021-12-09T06:37:59.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfac8faa-fa36-4662-b488-61f5b427cf3f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-09T06:38:04.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:29.000Z" + }, + "events": [ + { + "uuid": "3af25e72-6d81-4203-adf3-7a2218cb9b35", + "start": { + "$date": "2021-12-09T06:38:04.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cafdb8ed-bf46-41b0-8a2c-97fd2d4b8031", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-09T06:37:56.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:27.000Z" + }, + "events": [ + { + "uuid": "c676df65-43b1-4467-a111-4bc2958f66d3", + "start": { + "$date": "2021-12-09T06:37:56.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63f25122-7926-4dc2-8f6f-297fca09114a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T06:37:54.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:35.000Z" + }, + "events": [ + { + "uuid": "3ebd8b89-6b00-40fa-8b10-15878ef98c20", + "start": { + "$date": "2021-12-09T06:37:54.000Z" + }, + "end": { + "$date": "2021-12-09T06:56:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ae9041b-1744-4a34-aef3-dfe19c605abe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T06:59:55.000Z" + }, + "end": { + "$date": "2021-12-09T07:20:56.000Z" + }, + "events": [ + { + "uuid": "3e8107ed-9bf2-4c5d-8f7c-42f3aab261f9", + "start": { + "$date": "2021-12-09T06:59:55.000Z" + }, + "end": { + "$date": "2021-12-09T07:20:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "03e2db15-0d33-46f6-b01c-aa0564d2323b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T06:58:14.000Z" + }, + "end": { + "$date": "2021-12-09T07:11:29.000Z" + }, + "events": [ + { + "uuid": "d4ff55ec-cf75-4136-b630-eec1ebb2896e", + "start": { + "$date": "2021-12-09T06:58:14.000Z" + }, + "end": { + "$date": "2021-12-09T07:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33c4960c-bbb9-45e7-8979-8e9ff4bd5011", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T07:00:05.000Z" + }, + "end": { + "$date": "2021-12-09T07:20:55.000Z" + }, + "events": [ + { + "uuid": "cef328a0-48d0-4fb2-84cf-ac849fce49d4", + "start": { + "$date": "2021-12-09T07:00:05.000Z" + }, + "end": { + "$date": "2021-12-09T07:20:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4523fe97-5496-4d4a-843d-d8d6970cda2d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-09T06:58:34.000Z" + }, + "end": { + "$date": "2021-12-09T08:34:06.000Z" + }, + "events": [ + { + "uuid": "09cfbfae-b2bc-4b00-806f-ce339f78df0b", + "start": { + "$date": "2021-12-09T06:58:34.000Z" + }, + "end": { + "$date": "2021-12-09T08:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "30ca2dc6-e8be-4f2a-bfc4-cbeba3f8cf25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T07:12:10.000Z" + }, + "end": { + "$date": "2021-12-09T08:26:18.000Z" + }, + "events": [ + { + "uuid": "c6f0c4d6-f28f-4324-bed0-57091e112d5b", + "start": { + "$date": "2021-12-09T07:12:10.000Z" + }, + "end": { + "$date": "2021-12-09T08:26:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a057503-01d9-48d5-9bd5-dac554cd5ba2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T07:23:05.000Z" + }, + "end": { + "$date": "2021-12-09T07:37:05.000Z" + }, + "events": [ + { + "uuid": "e5180cad-fa2a-4fe5-bf1e-5dfaec28598c", + "start": { + "$date": "2021-12-09T07:23:05.000Z" + }, + "end": { + "$date": "2021-12-09T07:37:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "801585d5-c57a-40c5-8963-94f5abdbb0ce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T07:23:15.000Z" + }, + "end": { + "$date": "2021-12-09T07:37:06.000Z" + }, + "events": [ + { + "uuid": "06a7e8cd-b844-4b60-a2df-e850aaf696d3", + "start": { + "$date": "2021-12-09T07:23:15.000Z" + }, + "end": { + "$date": "2021-12-09T07:37:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89f565de-f366-4113-a682-347fd1b3ea9d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T07:39:21.000Z" + }, + "end": { + "$date": "2021-12-09T08:05:56.000Z" + }, + "events": [ + { + "uuid": "3e6d407a-c3a8-4c0d-90cd-a69f7d30217d", + "start": { + "$date": "2021-12-09T07:39:21.000Z" + }, + "end": { + "$date": "2021-12-09T08:05:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d434c7a1-8ae2-4750-b3ce-32add8ee4dd3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T07:39:15.000Z" + }, + "end": { + "$date": "2021-12-09T08:05:51.000Z" + }, + "events": [ + { + "uuid": "186e8428-e8a5-4e14-92b5-18fc9661da6c", + "start": { + "$date": "2021-12-09T07:39:15.000Z" + }, + "end": { + "$date": "2021-12-09T08:05:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05509fed-370d-442e-8f47-eefa5c1bd59d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T08:08:56.000Z" + }, + "end": { + "$date": "2021-12-09T08:26:51.000Z" + }, + "events": [ + { + "uuid": "76464175-5399-40f3-b690-449c5bbf7b64", + "start": { + "$date": "2021-12-09T08:08:56.000Z" + }, + "end": { + "$date": "2021-12-09T08:26:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2cf4afe9-6ac7-451e-a6ac-b6f24ff8f2de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T08:08:56.000Z" + }, + "end": { + "$date": "2021-12-09T08:26:47.000Z" + }, + "events": [ + { + "uuid": "4a262dea-6618-400b-a108-570a4cd9ae04", + "start": { + "$date": "2021-12-09T08:08:56.000Z" + }, + "end": { + "$date": "2021-12-09T08:26:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "324f5662-f649-45b7-976a-eb3a6425c405", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T08:26:29.000Z" + }, + "end": { + "$date": "2021-12-09T11:15:20.000Z" + }, + "events": [ + { + "uuid": "fc96d927-c448-4291-a2d0-050d3e8b0ea9", + "start": { + "$date": "2021-12-09T08:26:29.000Z" + }, + "end": { + "$date": "2021-12-09T11:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bb34d2f-fd26-4611-b59c-d6838e64e26f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T08:36:18.000Z" + }, + "end": { + "$date": "2021-12-09T09:05:03.000Z" + }, + "events": [ + { + "uuid": "e34ef8ca-e43c-4d77-9f55-387f0987a5ab", + "start": { + "$date": "2021-12-09T08:36:18.000Z" + }, + "end": { + "$date": "2021-12-09T09:05:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98a7b1c9-2f97-406d-8193-1b14b6356ab1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T08:36:22.000Z" + }, + "end": { + "$date": "2021-12-09T09:05:24.000Z" + }, + "events": [ + { + "uuid": "3758c7b5-b35e-49ac-ac04-eae0bed67155", + "start": { + "$date": "2021-12-09T08:36:22.000Z" + }, + "end": { + "$date": "2021-12-09T09:05:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2d1d7e0-184c-4ff7-af7a-0bed43a39b83", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T09:10:44.000Z" + }, + "end": { + "$date": "2021-12-09T09:30:34.000Z" + }, + "events": [ + { + "uuid": "9e0c78f5-7e8f-419e-9770-7b3a1dd1d603", + "start": { + "$date": "2021-12-09T09:10:44.000Z" + }, + "end": { + "$date": "2021-12-09T09:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f139b31-724a-4d75-b043-8d4aabc4ebd9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T09:41:00.000Z" + }, + "end": { + "$date": "2021-12-09T10:01:20.000Z" + }, + "events": [ + { + "uuid": "b1fca993-ef69-4bc8-82f3-4543a66ce837", + "start": { + "$date": "2021-12-09T09:41:00.000Z" + }, + "end": { + "$date": "2021-12-09T10:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d80a5c6f-0024-406d-bebb-8487bffe3774", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T10:03:55.000Z" + }, + "end": { + "$date": "2021-12-09T10:19:15.000Z" + }, + "events": [ + { + "uuid": "13ecf488-6be4-4c5a-80e0-49fb4f3ee6a0", + "start": { + "$date": "2021-12-09T10:03:55.000Z" + }, + "end": { + "$date": "2021-12-09T10:19:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f58b909-1679-4edb-9e6d-4c5aa51773da", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T10:23:31.000Z" + }, + "end": { + "$date": "2021-12-09T10:44:01.000Z" + }, + "events": [ + { + "uuid": "5dfa22c7-be99-44f9-87e1-d6c2ec4bfe71", + "start": { + "$date": "2021-12-09T10:23:31.000Z" + }, + "end": { + "$date": "2021-12-09T10:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16beae8a-bd16-4588-af32-4bc011b4914e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T10:49:17.000Z" + }, + "end": { + "$date": "2021-12-09T11:12:37.000Z" + }, + "events": [ + { + "uuid": "a7ca4b9b-74b8-4b8c-9a6e-9afadb42e5e0", + "start": { + "$date": "2021-12-09T10:49:17.000Z" + }, + "end": { + "$date": "2021-12-09T11:12:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4147aeab-d198-4d5a-ab00-21a9ddc84650", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T11:15:12.000Z" + }, + "end": { + "$date": "2021-12-09T11:35:27.000Z" + }, + "events": [ + { + "uuid": "b303928f-f2b6-40e5-85d3-9dbbd9e9fead", + "start": { + "$date": "2021-12-09T11:15:12.000Z" + }, + "end": { + "$date": "2021-12-09T11:35:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d3b2d923-fd97-4cc3-80a8-b21ccce5910f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T11:15:35.000Z" + }, + "end": { + "$date": "2021-12-09T11:21:52.000Z" + }, + "events": [ + { + "uuid": "75355ab7-632b-4834-8c7a-7d155d7ac88f", + "start": { + "$date": "2021-12-09T11:15:35.000Z" + }, + "end": { + "$date": "2021-12-09T11:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "605ff3f6-67ce-446e-a678-777cd9a68105", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-09T11:22:58.000Z" + }, + "end": { + "$date": "2021-12-09T13:59:02.000Z" + }, + "events": [ + { + "uuid": "7f0aa4f9-806c-4a82-b3b3-7b0f72f647e2", + "start": { + "$date": "2021-12-09T11:22:58.000Z" + }, + "end": { + "$date": "2021-12-09T13:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3607be29-63f8-4305-827e-185ba618a7b1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T11:37:32.000Z" + }, + "end": { + "$date": "2021-12-09T11:57:28.000Z" + }, + "events": [ + { + "uuid": "c7180a72-caa5-43ae-907f-e03cb8a07d5c", + "start": { + "$date": "2021-12-09T11:37:32.000Z" + }, + "end": { + "$date": "2021-12-09T11:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "847593df-29e6-442d-be72-462b7f8a2f43", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T12:00:08.000Z" + }, + "end": { + "$date": "2021-12-09T12:20:18.000Z" + }, + "events": [ + { + "uuid": "219fd161-6637-4d35-ac83-2f50afdf6872", + "start": { + "$date": "2021-12-09T12:00:08.000Z" + }, + "end": { + "$date": "2021-12-09T12:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39578bcd-1f77-41db-87f4-244095b9fe8f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T12:23:59.000Z" + }, + "end": { + "$date": "2021-12-09T12:38:33.000Z" + }, + "events": [ + { + "uuid": "f5b128b1-58b1-4ecc-b0bc-ea574249ef60", + "start": { + "$date": "2021-12-09T12:23:59.000Z" + }, + "end": { + "$date": "2021-12-09T12:38:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89e05a02-b26b-49a4-bc09-738b0c7b36a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T12:40:39.000Z" + }, + "end": { + "$date": "2021-12-09T12:58:59.000Z" + }, + "events": [ + { + "uuid": "de53383d-ca52-444b-90d6-77a73fb93274", + "start": { + "$date": "2021-12-09T12:40:39.000Z" + }, + "end": { + "$date": "2021-12-09T12:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d854840a-97a5-4515-ae9d-bdbe525f136a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T13:01:05.000Z" + }, + "end": { + "$date": "2021-12-09T13:17:35.000Z" + }, + "events": [ + { + "uuid": "6e161359-4fe6-47ab-8ff2-7041a6c1dd9a", + "start": { + "$date": "2021-12-09T13:01:05.000Z" + }, + "end": { + "$date": "2021-12-09T13:17:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f2ca26f-2d03-4a55-8b98-d181be303b43", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T13:19:35.000Z" + }, + "end": { + "$date": "2021-12-09T13:41:05.000Z" + }, + "events": [ + { + "uuid": "949fea4c-44c8-45a3-8394-22afaf2c98c3", + "start": { + "$date": "2021-12-09T13:19:35.000Z" + }, + "end": { + "$date": "2021-12-09T13:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "99793e41-b37a-47b6-a563-e7c27a561241", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-09T13:37:24.000Z" + }, + "end": { + "$date": "2021-12-09T14:05:12.000Z" + }, + "events": [ + { + "uuid": "11bdc0ef-ec91-40bf-a6f0-a5ce40bb8647", + "start": { + "$date": "2021-12-09T13:37:24.000Z" + }, + "end": { + "$date": "2021-12-09T14:05:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de101615-92d4-488b-a579-17b49e0c70fd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T13:43:55.000Z" + }, + "end": { + "$date": "2021-12-09T14:01:55.000Z" + }, + "events": [ + { + "uuid": "f9c30ff4-16a5-4480-b06f-7f459d93fdfe", + "start": { + "$date": "2021-12-09T13:43:55.000Z" + }, + "end": { + "$date": "2021-12-09T14:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89e7d59e-9fbd-46e9-a636-afa061d7fa75", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-09T14:04:21.000Z" + }, + "end": { + "$date": "2021-12-09T14:30:56.000Z" + }, + "events": [ + { + "uuid": "cdac0848-719e-4631-a230-eef4b4b88752", + "start": { + "$date": "2021-12-09T14:04:21.000Z" + }, + "end": { + "$date": "2021-12-09T14:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "5e618ebf-78da-42cb-ac7b-2c3b1fd82951", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T15:45:37.000Z" + }, + "end": { + "$date": "2021-12-09T15:51:19.000Z" + }, + "events": [ + { + "uuid": "cf1fcd58-7e11-42e1-a624-47c116a4ba7a", + "start": { + "$date": "2021-12-09T15:45:37.000Z" + }, + "end": { + "$date": "2021-12-09T15:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "cff7a3a8-690d-45e3-b763-0e56404f8a62", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T15:57:24.000Z" + }, + "end": { + "$date": "2021-12-09T16:04:17.000Z" + }, + "events": [ + { + "uuid": "15fe7a68-548f-468d-957d-146edb46bd00", + "start": { + "$date": "2021-12-09T15:57:24.000Z" + }, + "end": { + "$date": "2021-12-09T16:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "cead6725-f5f6-4b75-8a3d-deffddf08f2e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T17:31:08.000Z" + }, + "end": { + "$date": "2021-12-09T17:34:44.000Z" + }, + "events": [ + { + "uuid": "4f73e366-60cd-465d-9156-aad5e7d9a5f8", + "start": { + "$date": "2021-12-09T17:31:08.000Z" + }, + "end": { + "$date": "2021-12-09T17:34:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "db668a67-5933-4ecc-94a9-f7aaef3b14f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T22:05:26.000Z" + }, + "end": { + "$date": "2021-12-09T22:12:23.000Z" + }, + "events": [ + { + "uuid": "d0da1eb2-0623-47f1-9843-14c1b65c6574", + "start": { + "$date": "2021-12-09T22:05:26.000Z" + }, + "end": { + "$date": "2021-12-09T22:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "2e4d7c1e-5fc2-44ff-9092-3caa78d8069d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-09T23:00:42.000Z" + }, + "end": { + "$date": "2021-12-10T00:20:44.000Z" + }, + "events": [ + { + "uuid": "13022da9-ca69-4fb0-ad96-7f2bd676174d", + "start": { + "$date": "2021-12-09T23:00:42.000Z" + }, + "end": { + "$date": "2021-12-10T00:20:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f09ee92b-b9ce-4441-80c3-1776485620bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-09T23:08:11.000Z" + }, + "end": { + "$date": "2021-12-10T00:56:13.000Z" + }, + "events": [ + { + "uuid": "0af6aaf7-e46f-42cf-9e5e-d35e36bb1969", + "start": { + "$date": "2021-12-09T23:08:11.000Z" + }, + "end": { + "$date": "2021-12-10T00:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8d249f71-b597-4654-a70c-637b17bf3e93", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-09T23:01:41.000Z" + }, + "end": { + "$date": "2021-12-10T04:11:44.000Z" + }, + "events": [ + { + "uuid": "0ff28fce-906e-4de4-8e26-bab98c780fab", + "start": { + "$date": "2021-12-09T23:01:41.000Z" + }, + "end": { + "$date": "2021-12-09T23:16:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7df394b9-4ed0-4784-9045-cde835b143a1", + "start": { + "$date": "2021-12-09T23:16:41.000Z" + }, + "end": { + "$date": "2021-12-09T23:21:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2e2f529-5822-4779-8b9d-f65f8cfaed42", + "start": { + "$date": "2021-12-09T23:21:41.000Z" + }, + "end": { + "$date": "2021-12-09T23:31:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "782b96f2-6522-41f1-93d5-5828103f71e7", + "start": { + "$date": "2021-12-09T23:31:41.000Z" + }, + "end": { + "$date": "2021-12-10T00:38:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15799605-a623-4387-a61e-a625351b1232", + "start": { + "$date": "2021-12-10T00:38:41.000Z" + }, + "end": { + "$date": "2021-12-10T01:06:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec6c941a-6548-4e96-b7b9-c765b199a7a9", + "start": { + "$date": "2021-12-10T01:06:41.000Z" + }, + "end": { + "$date": "2021-12-10T01:11:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c3df35d-6785-4652-926c-17b63c027f4d", + "start": { + "$date": "2021-12-10T01:11:41.000Z" + }, + "end": { + "$date": "2021-12-10T01:28:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49188cdf-577d-4bec-a614-6a91b1ca9205", + "start": { + "$date": "2021-12-10T01:28:41.000Z" + }, + "end": { + "$date": "2021-12-10T01:33:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9fde6c39-4706-472f-880d-9d1f94422c12", + "start": { + "$date": "2021-12-10T01:33:41.000Z" + }, + "end": { + "$date": "2021-12-10T04:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56021c6d-2fe1-44b2-8dbd-1b751141f652", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-09T23:54:57.000Z" + }, + "end": { + "$date": "2021-12-10T00:30:48.000Z" + }, + "events": [ + { + "uuid": "8d00895d-8522-405d-9cc3-ab9d697fdcb6", + "start": { + "$date": "2021-12-09T23:54:57.000Z" + }, + "end": { + "$date": "2021-12-10T00:30:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7dfaf534-2ef0-4fab-a674-fd551e52be6f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T00:09:53.000Z" + }, + "end": { + "$date": "2021-12-10T00:14:28.000Z" + }, + "events": [ + { + "uuid": "1bca03c9-3861-433c-9918-c85b062a853d", + "start": { + "$date": "2021-12-10T00:09:53.000Z" + }, + "end": { + "$date": "2021-12-10T00:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a4c95d4c-a667-49a9-9800-91fc24417a95", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T00:18:34.000Z" + }, + "end": { + "$date": "2021-12-10T00:36:10.000Z" + }, + "events": [ + { + "uuid": "0cf01daf-3617-41e9-988a-b4c6d2446a61", + "start": { + "$date": "2021-12-10T00:18:34.000Z" + }, + "end": { + "$date": "2021-12-10T00:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ccbdcf20-9346-47b8-906b-8cf517771f59", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T00:57:48.000Z" + }, + "end": { + "$date": "2021-12-10T00:57:48.000Z" + }, + "events": [ + { + "uuid": "1f5107ed-8dcd-478b-bc9f-5e617479445f", + "start": { + "$date": "2021-12-10T00:57:48.000Z" + }, + "end": { + "$date": "2021-12-10T00:57:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "249ad945-b02a-4a7e-aba2-e73955d62024", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-10T00:31:55.000Z" + }, + "end": { + "$date": "2021-12-10T01:12:57.000Z" + }, + "events": [ + { + "uuid": "71987923-b45a-471f-9512-6cc9469d74fc", + "start": { + "$date": "2021-12-10T00:31:55.000Z" + }, + "end": { + "$date": "2021-12-10T01:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d7c489af-89e5-40cc-a4b9-4555eff30e01", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-10T00:36:36.000Z" + }, + "end": { + "$date": "2021-12-10T01:15:50.000Z" + }, + "events": [ + { + "uuid": "62adf1b1-823d-40ab-a922-429501738274", + "start": { + "$date": "2021-12-10T00:36:36.000Z" + }, + "end": { + "$date": "2021-12-10T01:15:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e31172f3-c355-41f3-906f-9646b7b07256", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T00:37:45.000Z" + }, + "end": { + "$date": "2021-12-10T02:38:30.000Z" + }, + "events": [ + { + "uuid": "2ea460e3-c5b2-458f-9a0c-4522257e5e3a", + "start": { + "$date": "2021-12-10T00:37:45.000Z" + }, + "end": { + "$date": "2021-12-10T02:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11ce51cd-3748-4432-b8ff-f16b5961b61b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T00:49:25.000Z" + }, + "end": { + "$date": "2021-12-10T01:11:04.000Z" + }, + "events": [ + { + "uuid": "beaea935-698a-40b6-8704-d3c2f8424dd9", + "start": { + "$date": "2021-12-10T00:49:25.000Z" + }, + "end": { + "$date": "2021-12-10T01:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10e7027b-bbce-4a06-aff6-d5cb01fd43c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T01:08:18.000Z" + }, + "end": { + "$date": "2021-12-10T01:35:39.000Z" + }, + "events": [ + { + "uuid": "f761b2f8-914a-4526-beb6-4e6614cf35d2", + "start": { + "$date": "2021-12-10T01:08:18.000Z" + }, + "end": { + "$date": "2021-12-10T01:35:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a0e1aaa-3167-4ba3-a8c8-573d2acbf04b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T01:12:18.000Z" + }, + "end": { + "$date": "2021-12-10T01:52:00.000Z" + }, + "events": [ + { + "uuid": "f51d6a07-b71a-4f02-b948-19206aa66b9f", + "start": { + "$date": "2021-12-10T01:12:18.000Z" + }, + "end": { + "$date": "2021-12-10T01:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7927513-4688-4aa5-a14a-bca39130eee2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T01:41:39.000Z" + }, + "end": { + "$date": "2021-12-10T02:11:27.000Z" + }, + "events": [ + { + "uuid": "82e2ebb7-656f-4ff9-bd42-d95e6c2bb876", + "start": { + "$date": "2021-12-10T01:41:39.000Z" + }, + "end": { + "$date": "2021-12-10T02:11:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a4a72e67-e656-4174-a766-9bd367d9e378", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T01:45:20.000Z" + }, + "end": { + "$date": "2021-12-10T02:36:10.000Z" + }, + "events": [ + { + "uuid": "27b4508e-dbb6-4872-b3a2-138eede290db", + "start": { + "$date": "2021-12-10T01:45:20.000Z" + }, + "end": { + "$date": "2021-12-10T02:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b3f8ee42-0e9b-48db-a25b-5ee02956a686", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T01:54:06.000Z" + }, + "end": { + "$date": "2021-12-10T02:28:56.000Z" + }, + "events": [ + { + "uuid": "5b02c501-cb98-4787-84f7-95b11a237331", + "start": { + "$date": "2021-12-10T01:54:06.000Z" + }, + "end": { + "$date": "2021-12-10T02:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f243e06-efe2-4dfd-94ef-8f76dfe51998", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-10T01:56:56.000Z" + }, + "end": { + "$date": "2021-12-10T02:20:02.000Z" + }, + "events": [ + { + "uuid": "64bbe8b5-e61e-4b03-816e-c00e0bcaa477", + "start": { + "$date": "2021-12-10T01:56:56.000Z" + }, + "end": { + "$date": "2021-12-10T02:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85cc41c1-df21-45e6-af84-47f4f0fcfe97", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-10T02:20:53.000Z" + }, + "end": { + "$date": "2021-12-10T02:55:34.000Z" + }, + "events": [ + { + "uuid": "7a86f44f-9e24-422f-95af-7bfbbe72efc6", + "start": { + "$date": "2021-12-10T02:20:53.000Z" + }, + "end": { + "$date": "2021-12-10T02:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e8e110a-cff0-4608-9fa2-b1fd3140fae7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T02:33:53.000Z" + }, + "end": { + "$date": "2021-12-10T02:59:00.000Z" + }, + "events": [ + { + "uuid": "9da79dae-25ca-4226-86e1-0ff45c3d63b4", + "start": { + "$date": "2021-12-10T02:33:53.000Z" + }, + "end": { + "$date": "2021-12-10T02:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a070d05-c5de-48b4-ba7c-a792d69bd801", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-10T02:33:09.000Z" + }, + "end": { + "$date": "2021-12-10T06:26:05.000Z" + }, + "events": [ + { + "uuid": "b098a769-3f6d-41db-98ba-0c22085a6b30", + "start": { + "$date": "2021-12-10T02:33:09.000Z" + }, + "end": { + "$date": "2021-12-10T06:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f1f1ff1-4b5a-4947-9470-0b57cf5f454d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T02:41:21.000Z" + }, + "end": { + "$date": "2021-12-10T03:14:34.000Z" + }, + "events": [ + { + "uuid": "22841cc6-f396-423f-8e0c-320850a2732d", + "start": { + "$date": "2021-12-10T02:41:21.000Z" + }, + "end": { + "$date": "2021-12-10T03:14:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "cbc635e8-d77d-4bf2-a1e8-9f8c8b3df946", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T02:38:45.000Z" + }, + "end": { + "$date": "2021-12-10T02:46:44.000Z" + }, + "events": [ + { + "uuid": "d9d5ca51-4d70-48cb-b8e8-4e06a67bee02", + "start": { + "$date": "2021-12-10T02:38:45.000Z" + }, + "end": { + "$date": "2021-12-10T02:46:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "de5e9ed9-d54c-4551-a159-eae433021a1e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-10T02:57:11.000Z" + }, + "end": { + "$date": "2021-12-10T02:57:46.000Z" + }, + "events": [ + { + "uuid": "29c41f54-0a4b-4f2e-be29-410539dbb94a", + "start": { + "$date": "2021-12-10T02:57:11.000Z" + }, + "end": { + "$date": "2021-12-10T02:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a256705d-8e66-406e-b0c1-7fdaef1e2072", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-10T02:48:18.000Z" + }, + "end": { + "$date": "2021-12-10T06:22:17.000Z" + }, + "events": [ + { + "uuid": "a13a98a7-c0d3-433b-b615-dea6d163dce6", + "start": { + "$date": "2021-12-10T02:48:18.000Z" + }, + "end": { + "$date": "2021-12-10T06:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc0f1cfd-9f94-484f-aeb7-d7009c13f383", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-10T02:58:30.000Z" + }, + "end": { + "$date": "2021-12-10T03:31:21.000Z" + }, + "events": [ + { + "uuid": "698b5038-4003-49e6-b28b-aa1170b3c91c", + "start": { + "$date": "2021-12-10T02:58:30.000Z" + }, + "end": { + "$date": "2021-12-10T03:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3e590bd2-a94b-4d25-be87-6aeeca60d1fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T02:58:00.000Z" + }, + "end": { + "$date": "2021-12-10T02:59:32.000Z" + }, + "events": [ + { + "uuid": "ac810588-ded3-4645-b8b5-933ad5b2b2f7", + "start": { + "$date": "2021-12-10T02:58:00.000Z" + }, + "end": { + "$date": "2021-12-10T02:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7ab9a495-6834-404d-ad73-b766478d19ff", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-10T02:58:26.000Z" + }, + "end": { + "$date": "2021-12-10T05:05:01.000Z" + }, + "events": [ + { + "uuid": "0c1088f9-227d-4675-a060-50ed47c7d6b2", + "start": { + "$date": "2021-12-10T02:58:26.000Z" + }, + "end": { + "$date": "2021-12-10T05:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "989b2fdf-9bfa-4948-91b9-a567e097ee97", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T02:59:26.000Z" + }, + "end": { + "$date": "2021-12-10T03:03:37.000Z" + }, + "events": [ + { + "uuid": "999110b9-1527-4136-802f-c246d30d2b71", + "start": { + "$date": "2021-12-10T02:59:26.000Z" + }, + "end": { + "$date": "2021-12-10T03:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7d3879e4-c9c5-42b8-81d7-99bbdd25ddbd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T03:03:43.000Z" + }, + "end": { + "$date": "2021-12-10T03:07:48.000Z" + }, + "events": [ + { + "uuid": "4ebfdc17-fec8-4a00-970f-5c35078c143d", + "start": { + "$date": "2021-12-10T03:03:43.000Z" + }, + "end": { + "$date": "2021-12-10T03:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6d38dd6f-82fa-4c91-a608-a1ae6b0e1109", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T03:08:43.000Z" + }, + "end": { + "$date": "2021-12-10T03:43:32.000Z" + }, + "events": [ + { + "uuid": "96ff6f99-7909-47ea-918b-bce77094aa8f", + "start": { + "$date": "2021-12-10T03:08:43.000Z" + }, + "end": { + "$date": "2021-12-10T03:43:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9cc1437c-7843-4998-aad6-faa1a81d2275", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T03:09:08.000Z" + }, + "end": { + "$date": "2021-12-10T04:00:14.000Z" + }, + "events": [ + { + "uuid": "fcab3ed7-c42b-4be4-a2b1-e7437f14dd3d", + "start": { + "$date": "2021-12-10T03:09:08.000Z" + }, + "end": { + "$date": "2021-12-10T04:00:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0abb811a-9686-4405-abea-b9b4f9aac650", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T03:15:27.000Z" + }, + "end": { + "$date": "2021-12-10T03:25:12.000Z" + }, + "events": [ + { + "uuid": "e79926ec-4174-4b83-aa2d-413853c673ee", + "start": { + "$date": "2021-12-10T03:15:27.000Z" + }, + "end": { + "$date": "2021-12-10T03:25:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30b79e10-163a-4076-99a2-468914e2b244", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T03:39:56.000Z" + }, + "end": { + "$date": "2021-12-10T04:12:08.000Z" + }, + "events": [ + { + "uuid": "e16bac54-c5b8-48a2-a243-e02d64c34b79", + "start": { + "$date": "2021-12-10T03:39:56.000Z" + }, + "end": { + "$date": "2021-12-10T04:12:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97b662ff-91e7-4bdb-b042-73e19d218256", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T04:01:55.000Z" + }, + "end": { + "$date": "2021-12-10T04:35:23.000Z" + }, + "events": [ + { + "uuid": "27765a4a-430f-47f7-9ee2-be3b82243d02", + "start": { + "$date": "2021-12-10T04:01:55.000Z" + }, + "end": { + "$date": "2021-12-10T04:35:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c13176dc-e9bd-45fb-b2c1-38d2ba9b4d5f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T04:18:32.000Z" + }, + "end": { + "$date": "2021-12-10T04:44:23.000Z" + }, + "events": [ + { + "uuid": "58312cda-ba0e-4911-8d81-43fa72e7ae69", + "start": { + "$date": "2021-12-10T04:18:32.000Z" + }, + "end": { + "$date": "2021-12-10T04:44:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05574748-e2b4-434b-aa95-1dd14a00bfa3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T04:18:30.000Z" + }, + "end": { + "$date": "2021-12-10T04:45:28.000Z" + }, + "events": [ + { + "uuid": "282679b5-e713-4e62-88b6-df1c3de93a43", + "start": { + "$date": "2021-12-10T04:18:30.000Z" + }, + "end": { + "$date": "2021-12-10T04:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a80fe9cd-9bf5-4819-ac71-9cb349ff60ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-10T04:33:18.000Z" + }, + "end": { + "$date": "2021-12-10T06:23:17.000Z" + }, + "events": [ + { + "uuid": "975a8db5-89ed-49fe-b636-ba5a923e7784", + "start": { + "$date": "2021-12-10T04:33:18.000Z" + }, + "end": { + "$date": "2021-12-10T06:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2a604a4-eff5-45a4-b93c-f27cd608ba5a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T04:36:08.000Z" + }, + "end": { + "$date": "2021-12-10T05:04:44.000Z" + }, + "events": [ + { + "uuid": "a7121b42-39a6-4613-9d69-38c07990ca30", + "start": { + "$date": "2021-12-10T04:36:08.000Z" + }, + "end": { + "$date": "2021-12-10T05:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a0cf538c-7b0c-42ce-bee9-e4e2ab995b16", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T04:36:05.000Z" + }, + "end": { + "$date": "2021-12-10T05:07:15.000Z" + }, + "events": [ + { + "uuid": "8db78c43-95b0-4192-8f29-41612061ba88", + "start": { + "$date": "2021-12-10T04:36:05.000Z" + }, + "end": { + "$date": "2021-12-10T05:07:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35d40171-630c-4fab-a495-4530db347918", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T04:52:22.000Z" + }, + "end": { + "$date": "2021-12-10T05:35:54.000Z" + }, + "events": [ + { + "uuid": "db285166-63c6-4477-b21d-8fcce4e4e100", + "start": { + "$date": "2021-12-10T04:52:22.000Z" + }, + "end": { + "$date": "2021-12-10T05:35:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2094972a-ceca-468f-bba7-effdf9b07e51", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T04:52:18.000Z" + }, + "end": { + "$date": "2021-12-10T05:36:07.000Z" + }, + "events": [ + { + "uuid": "dc5b513b-6e6b-4706-9276-7eced6a4b647", + "start": { + "$date": "2021-12-10T04:52:18.000Z" + }, + "end": { + "$date": "2021-12-10T05:36:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d2fdc2e3-7837-44c2-8511-998a6ecf2364", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-10T05:05:24.000Z" + }, + "end": { + "$date": "2021-12-10T06:28:37.000Z" + }, + "events": [ + { + "uuid": "739a5afc-f169-4600-875e-7b16c9b5d52d", + "start": { + "$date": "2021-12-10T05:05:24.000Z" + }, + "end": { + "$date": "2021-12-10T06:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f8d670ec-4adb-4ab0-9a08-a4315c794363", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-10T05:06:24.000Z" + }, + "end": { + "$date": "2021-12-10T06:21:46.000Z" + }, + "events": [ + { + "uuid": "10d1c5a6-dff5-4e6c-83bd-0ce273c72460", + "start": { + "$date": "2021-12-10T05:06:24.000Z" + }, + "end": { + "$date": "2021-12-10T06:21:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75c46a3c-dd15-418e-a8ba-c2909d97cd20", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-10T05:12:23.000Z" + }, + "end": { + "$date": "2021-12-10T05:52:28.000Z" + }, + "events": [ + { + "uuid": "9aa02760-b6db-4757-b562-1fd09af4f19f", + "start": { + "$date": "2021-12-10T05:12:23.000Z" + }, + "end": { + "$date": "2021-12-10T05:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "29b53c84-b564-4fa2-9561-607cd003de90", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T05:45:33.000Z" + }, + "end": { + "$date": "2021-12-10T05:47:39.000Z" + }, + "events": [ + { + "uuid": "b5a143e2-9a22-45b5-8889-b1a833d6a57e", + "start": { + "$date": "2021-12-10T05:45:33.000Z" + }, + "end": { + "$date": "2021-12-10T05:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ffaa3f03-0bf3-4743-b028-b74d5d0a325e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T05:47:59.000Z" + }, + "end": { + "$date": "2021-12-10T07:07:21.000Z" + }, + "events": [ + { + "uuid": "88e6092d-fa33-48d1-9a9a-3dab55e79919", + "start": { + "$date": "2021-12-10T05:47:59.000Z" + }, + "end": { + "$date": "2021-12-10T07:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b4ee75e-6029-4fbf-ac57-65ec5e572cbc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T06:02:30.000Z" + }, + "end": { + "$date": "2021-12-10T06:26:57.000Z" + }, + "events": [ + { + "uuid": "73c8ce82-aa08-4ba5-9081-48ea3f402ff7", + "start": { + "$date": "2021-12-10T06:02:30.000Z" + }, + "end": { + "$date": "2021-12-10T06:26:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaa939c3-d750-485a-a4b4-b0da13f35f7b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-10T06:02:39.000Z" + }, + "end": { + "$date": "2021-12-10T06:27:07.000Z" + }, + "events": [ + { + "uuid": "bcea2298-79c9-4a52-84c5-a22836798a1b", + "start": { + "$date": "2021-12-10T06:02:39.000Z" + }, + "end": { + "$date": "2021-12-10T06:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2db8573-926e-4814-8540-0366e1f2bb9b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-10T06:36:57.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:16.000Z" + }, + "events": [ + { + "uuid": "24a19d11-0a9f-4def-987e-eb82d1a5dff7", + "start": { + "$date": "2021-12-10T06:36:57.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa2a6f66-29f0-4051-9312-fb97ee58a645", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-10T06:36:51.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:07.000Z" + }, + "events": [ + { + "uuid": "3673ed85-d574-43e8-83ff-fe83217c863f", + "start": { + "$date": "2021-12-10T06:36:51.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3e22549-fb03-4fcd-9edc-eeab1b17dfc4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T06:36:57.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:13.000Z" + }, + "events": [ + { + "uuid": "e69606b8-3184-4869-a9a9-a35ff1d53736", + "start": { + "$date": "2021-12-10T06:36:57.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f6075b9-7c89-4291-97db-87e798a30b02", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-10T06:36:57.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:12.000Z" + }, + "events": [ + { + "uuid": "b33f4d95-b8ac-4f01-a739-9bc66d57399e", + "start": { + "$date": "2021-12-10T06:36:57.000Z" + }, + "end": { + "$date": "2021-12-10T07:05:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62ee9d23-65ef-4844-ad42-c089bea53ad1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-10T07:10:33.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:27.000Z" + }, + "events": [ + { + "uuid": "06217ab7-69e2-4c2e-a1b4-bb131028a113", + "start": { + "$date": "2021-12-10T07:10:33.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea470b65-059f-463e-9b0a-ae7744c55cf2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T07:10:37.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:24.000Z" + }, + "events": [ + { + "uuid": "3d139db0-e7ec-458d-9ab3-fd1302c3fc0d", + "start": { + "$date": "2021-12-10T07:10:37.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c67905b8-f101-4559-ab06-700a1e5987e5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-10T07:10:33.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:28.000Z" + }, + "events": [ + { + "uuid": "7ca1f05b-9c9a-431d-8c80-416e2d3b3bbe", + "start": { + "$date": "2021-12-10T07:10:33.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc758264-2908-40cb-a941-2c4743eb3bf9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T07:10:38.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:35.000Z" + }, + "events": [ + { + "uuid": "80d5631e-6c2d-4100-bd9a-2a038a61e906", + "start": { + "$date": "2021-12-10T07:10:38.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f2eec55-b4e4-409d-928c-af91c31d0118", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-10T07:10:33.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:29.000Z" + }, + "events": [ + { + "uuid": "6bea1ae6-1003-4249-a0db-48bb8149dd73", + "start": { + "$date": "2021-12-10T07:10:33.000Z" + }, + "end": { + "$date": "2021-12-10T07:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fabc7bd-6172-4f23-b590-67eba80e5d2b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-10T07:41:14.000Z" + }, + "end": { + "$date": "2021-12-10T07:43:47.000Z" + }, + "events": [ + { + "uuid": "cdd076d4-8e6c-4b15-8834-539f84d38aad", + "start": { + "$date": "2021-12-10T07:41:14.000Z" + }, + "end": { + "$date": "2021-12-10T07:43:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d08412b1-00fc-4691-a0f0-aa7f57eb440e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T07:41:35.000Z" + }, + "end": { + "$date": "2021-12-10T08:19:56.000Z" + }, + "events": [ + { + "uuid": "fba7fa04-14e2-426b-8bd0-3b8a7f35a900", + "start": { + "$date": "2021-12-10T07:41:35.000Z" + }, + "end": { + "$date": "2021-12-10T08:19:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b7680e63-ca87-406e-9e63-d8fafe24af8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T09:58:35.000Z" + }, + "end": { + "$date": "2021-12-10T10:08:31.000Z" + }, + "events": [ + { + "uuid": "7712588d-1513-46b5-a8ee-f003a9639798", + "start": { + "$date": "2021-12-10T09:58:35.000Z" + }, + "end": { + "$date": "2021-12-10T10:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "964cfe93-1cf4-48f2-b378-79198bf1be6b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T10:08:47.000Z" + }, + "end": { + "$date": "2021-12-10T10:11:32.000Z" + }, + "events": [ + { + "uuid": "89ff09d9-91e5-459a-833f-bed75ba5e5f3", + "start": { + "$date": "2021-12-10T10:08:47.000Z" + }, + "end": { + "$date": "2021-12-10T10:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "708a111a-366c-4a52-9494-01dbd05b2cba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-10T10:12:08.000Z" + }, + "end": { + "$date": "2021-12-10T10:35:30.000Z" + }, + "events": [ + { + "uuid": "03dfd153-ee63-4c76-9712-0c7ac8bb7453", + "start": { + "$date": "2021-12-10T10:12:08.000Z" + }, + "end": { + "$date": "2021-12-10T10:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9583536e-323b-49da-93cb-fad0368d488b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-10T10:36:13.000Z" + }, + "end": { + "$date": "2021-12-10T15:42:50.000Z" + }, + "events": [ + { + "uuid": "540fee10-3262-4d7c-9d76-1ab6a5ce84fb", + "start": { + "$date": "2021-12-10T10:36:13.000Z" + }, + "end": { + "$date": "2021-12-10T15:42:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "6466f133-861c-45f5-9e8b-30857b4a4498", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T15:48:33.000Z" + }, + "end": { + "$date": "2021-12-10T15:58:19.000Z" + }, + "events": [ + { + "uuid": "3ae7a38a-b480-424a-be3d-80bbac14a820", + "start": { + "$date": "2021-12-10T15:48:33.000Z" + }, + "end": { + "$date": "2021-12-10T15:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "4f1362eb-59f1-460c-94c8-e33f9b784e78", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T17:03:54.000Z" + }, + "end": { + "$date": "2021-12-10T17:14:15.000Z" + }, + "events": [ + { + "uuid": "cd3a0d9f-8431-404a-8140-cc9d02a0fdb6", + "start": { + "$date": "2021-12-10T17:03:54.000Z" + }, + "end": { + "$date": "2021-12-10T17:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "1a0b0264-796a-4a4b-b58f-debd43bbf372", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T18:06:50.000Z" + }, + "end": { + "$date": "2021-12-10T18:27:42.000Z" + }, + "events": [ + { + "uuid": "0c7bc9f3-f5ee-423b-98ec-98d8813540e0", + "start": { + "$date": "2021-12-10T18:06:50.000Z" + }, + "end": { + "$date": "2021-12-10T18:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "45a1d3d8-6b23-46f2-a545-4154c7bf1c00", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T18:28:02.000Z" + }, + "end": { + "$date": "2021-12-10T18:29:07.000Z" + }, + "events": [ + { + "uuid": "33ddcc95-2d68-4f40-8780-00c04e17a49e", + "start": { + "$date": "2021-12-10T18:28:02.000Z" + }, + "end": { + "$date": "2021-12-10T18:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "38ca6d96-04a4-4726-a03a-cdb25ba7423d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T18:32:37.000Z" + }, + "end": { + "$date": "2021-12-10T18:52:44.000Z" + }, + "events": [ + { + "uuid": "56b04fd9-a85b-4cc6-a9e6-0b7e82ed9b4a", + "start": { + "$date": "2021-12-10T18:32:37.000Z" + }, + "end": { + "$date": "2021-12-10T18:52:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3da7664d-012a-490c-bcd3-79ac1b257d5e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T18:56:11.000Z" + }, + "end": { + "$date": "2021-12-10T19:25:08.000Z" + }, + "events": [ + { + "uuid": "dac44f02-f24a-4e8a-b975-067d318d0e16", + "start": { + "$date": "2021-12-10T18:56:11.000Z" + }, + "end": { + "$date": "2021-12-10T19:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "76eb7195-cdf7-41fa-ac31-2f06b254d279", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-10T20:25:24.000Z" + }, + "end": { + "$date": "2021-12-11T00:47:55.000Z" + }, + "events": [ + { + "uuid": "821e22f4-cf05-416a-82ba-01961cfa52fd", + "start": { + "$date": "2021-12-10T20:25:24.000Z" + }, + "end": { + "$date": "2021-12-11T00:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "7d28222a-a36a-423b-9001-9aa3ffd60542", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T21:24:41.000Z" + }, + "end": { + "$date": "2021-12-10T21:45:18.000Z" + }, + "events": [ + { + "uuid": "cc6af5b3-0936-4f5d-8ddc-f0c962dc18a4", + "start": { + "$date": "2021-12-10T21:24:41.000Z" + }, + "end": { + "$date": "2021-12-10T21:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "db83a247-a379-4c7c-88d3-272fb0969827", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T22:21:27.000Z" + }, + "end": { + "$date": "2021-12-10T22:27:53.000Z" + }, + "events": [ + { + "uuid": "9458f9f5-d006-4f3d-b232-d93697db6020", + "start": { + "$date": "2021-12-10T22:21:27.000Z" + }, + "end": { + "$date": "2021-12-10T22:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "54d3a918-c001-4b67-8ff8-7542d8ea3769", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-10T22:28:58.000Z" + }, + "end": { + "$date": "2021-12-10T22:33:24.000Z" + }, + "events": [ + { + "uuid": "4cba3f94-2b57-45af-a477-92d9b799de2b", + "start": { + "$date": "2021-12-10T22:28:58.000Z" + }, + "end": { + "$date": "2021-12-10T22:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "ac82a334-2405-49c6-94d4-0e3391528ad1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-10T22:34:19.000Z" + }, + "end": { + "$date": "2021-12-10T23:35:01.000Z" + }, + "events": [ + { + "uuid": "8066470e-0b07-4993-8032-45309f72c350", + "start": { + "$date": "2021-12-10T22:34:19.000Z" + }, + "end": { + "$date": "2021-12-10T23:35:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "6777ab58-49c5-433a-98fd-867268122152", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T22:49:23.000Z" + }, + "end": { + "$date": "2021-12-10T22:53:13.000Z" + }, + "events": [ + { + "uuid": "d183ddb1-1a16-4748-b60d-58e2c054d494", + "start": { + "$date": "2021-12-10T22:49:23.000Z" + }, + "end": { + "$date": "2021-12-10T22:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "3d09f666-d717-4793-9efa-a803f9e3fc06", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T22:58:34.000Z" + }, + "end": { + "$date": "2021-12-10T23:01:14.000Z" + }, + "events": [ + { + "uuid": "9358b9f4-8df2-4f6a-9aed-e912cd10fcc6", + "start": { + "$date": "2021-12-10T22:58:34.000Z" + }, + "end": { + "$date": "2021-12-10T23:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "2c2f976c-0b07-407d-a1cb-29673f9c5e27", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-10T23:18:39.000Z" + }, + "end": { + "$date": "2021-12-11T00:18:30.000Z" + }, + "events": [ + { + "uuid": "f430bba0-d460-443b-a12d-e7b008a26e38", + "start": { + "$date": "2021-12-10T23:18:39.000Z" + }, + "end": { + "$date": "2021-12-11T00:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7268116a-65d6-4d5f-be67-f9231da65c1f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-10T23:34:30.000Z" + }, + "end": { + "$date": "2021-12-10T23:38:34.000Z" + }, + "events": [ + { + "uuid": "596c2af8-8b16-432d-add6-629b91c0ccd9", + "start": { + "$date": "2021-12-10T23:34:30.000Z" + }, + "end": { + "$date": "2021-12-10T23:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "5e8c6348-fe8a-4a4d-9e3e-0bc71d5cc7b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-10T23:35:27.000Z" + }, + "end": { + "$date": "2021-12-11T00:15:05.000Z" + }, + "events": [ + { + "uuid": "8c62b36b-7360-43da-88dc-703fdf382641", + "start": { + "$date": "2021-12-10T23:35:27.000Z" + }, + "end": { + "$date": "2021-12-11T00:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3eeea14a-4511-45b0-9dd1-3e38e8d29ab4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-10T23:40:16.000Z" + }, + "end": { + "$date": "2021-12-10T23:56:03.000Z" + }, + "events": [ + { + "uuid": "721b533b-9954-435d-b052-b2b4c7382900", + "start": { + "$date": "2021-12-10T23:40:16.000Z" + }, + "end": { + "$date": "2021-12-10T23:56:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b6f771fc-ccb4-45fd-90bc-812fde7ef089", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-10T23:56:08.000Z" + }, + "end": { + "$date": "2021-12-11T00:51:26.000Z" + }, + "events": [ + { + "uuid": "28a830d1-7d41-48d4-bdeb-3bc530a2225f", + "start": { + "$date": "2021-12-10T23:56:08.000Z" + }, + "end": { + "$date": "2021-12-11T00:51:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f4fbc16-fc9d-4a27-a0bf-a1303faf0d55", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-11T00:00:31.000Z" + }, + "end": { + "$date": "2021-12-11T00:14:25.000Z" + }, + "events": [ + { + "uuid": "1af0aa2d-a664-43b2-8b44-d64bc0c9c910", + "start": { + "$date": "2021-12-11T00:00:31.000Z" + }, + "end": { + "$date": "2021-12-11T00:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c27efb22-68d0-4380-bc32-4c66d9d7dc8c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T00:09:43.000Z" + }, + "end": { + "$date": "2021-12-11T00:45:59.000Z" + }, + "events": [ + { + "uuid": "979ec3d2-fe5d-494a-ac84-fbfa6fee8b39", + "start": { + "$date": "2021-12-11T00:09:43.000Z" + }, + "end": { + "$date": "2021-12-11T00:45:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fbe3fb50-ca6a-4cf0-999d-226b1f09150f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-11T00:16:07.000Z" + }, + "end": { + "$date": "2021-12-11T00:19:41.000Z" + }, + "events": [ + { + "uuid": "4df33502-3ea1-435f-a308-a69e7c5ca901", + "start": { + "$date": "2021-12-11T00:16:07.000Z" + }, + "end": { + "$date": "2021-12-11T00:19:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "5e4b05d6-cfb8-4135-877c-120a2beb1852", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T00:21:31.000Z" + }, + "end": { + "$date": "2021-12-11T00:25:41.000Z" + }, + "events": [ + { + "uuid": "731f2973-1858-4944-92bb-e4b138f286a7", + "start": { + "$date": "2021-12-11T00:21:31.000Z" + }, + "end": { + "$date": "2021-12-11T00:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6e1e9b4f-00ab-4336-a098-7ddb7cafe1c3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-11T00:24:43.000Z" + }, + "end": { + "$date": "2021-12-11T04:01:18.000Z" + }, + "events": [ + { + "uuid": "9a6af0f4-3992-4535-8e16-86fb1338746e", + "start": { + "$date": "2021-12-11T00:24:43.000Z" + }, + "end": { + "$date": "2021-12-11T00:52:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35bf85a7-da49-4a77-8c46-2f550ccf17c7", + "start": { + "$date": "2021-12-11T00:52:43.000Z" + }, + "end": { + "$date": "2021-12-11T00:56:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e52d5b9c-3764-4d5a-89a1-07ba8dc25e41", + "start": { + "$date": "2021-12-11T00:56:43.000Z" + }, + "end": { + "$date": "2021-12-11T01:07:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3cfd12d-6844-42bf-8357-9bf9645500ab", + "start": { + "$date": "2021-12-11T01:07:43.000Z" + }, + "end": { + "$date": "2021-12-11T01:12:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc72be67-62f0-4442-98cb-229915a33cef", + "start": { + "$date": "2021-12-11T01:12:43.000Z" + }, + "end": { + "$date": "2021-12-11T01:22:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2060ba53-7460-4416-8d44-638a17d04650", + "start": { + "$date": "2021-12-11T01:22:43.000Z" + }, + "end": { + "$date": "2021-12-11T01:35:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "78888a2c-1d57-4a90-bc8b-b8feefd90192", + "start": { + "$date": "2021-12-11T01:35:43.000Z" + }, + "end": { + "$date": "2021-12-11T01:55:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8cac163e-9500-4c3e-8b9d-20a57c9dabfa", + "start": { + "$date": "2021-12-11T01:55:43.000Z" + }, + "end": { + "$date": "2021-12-11T01:56:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2b604924-5f45-4df5-8443-875b93c0c5dd", + "start": { + "$date": "2021-12-11T01:56:43.000Z" + }, + "end": { + "$date": "2021-12-11T02:22:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5d88c5f5-a7e4-4029-ae25-3e4c268703c5", + "start": { + "$date": "2021-12-11T02:22:43.000Z" + }, + "end": { + "$date": "2021-12-11T02:23:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cf67e2cd-cb17-4c62-a3c0-b553a93111f7", + "start": { + "$date": "2021-12-11T02:23:43.000Z" + }, + "end": { + "$date": "2021-12-11T02:37:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a8627f6-966b-49d4-9787-e428a28e96c8", + "start": { + "$date": "2021-12-11T02:37:43.000Z" + }, + "end": { + "$date": "2021-12-11T02:38:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "12bf845b-7832-493d-b8ff-03b1da509761", + "start": { + "$date": "2021-12-11T02:38:43.000Z" + }, + "end": { + "$date": "2021-12-11T04:01:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c2f3bdc2-50cd-4487-b540-1aee3932620b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T00:48:51.000Z" + }, + "end": { + "$date": "2021-12-11T02:03:15.000Z" + }, + "events": [ + { + "uuid": "01a912bc-9023-40f5-94c2-f6e0434d2c25", + "start": { + "$date": "2021-12-11T00:48:51.000Z" + }, + "end": { + "$date": "2021-12-11T01:10:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8671ac84-3f05-4f55-b079-9ba9a3d544ff", + "start": { + "$date": "2021-12-11T01:10:51.000Z" + }, + "end": { + "$date": "2021-12-11T01:36:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c478ff7a-75fc-4a71-8ad4-9b25934ef507", + "start": { + "$date": "2021-12-11T01:36:51.000Z" + }, + "end": { + "$date": "2021-12-11T02:03:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "06538633-e806-4af8-a38d-cb34ca2940fe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T01:05:22.000Z" + }, + "end": { + "$date": "2021-12-11T02:00:29.000Z" + }, + "events": [ + { + "uuid": "5a5c37e9-0979-4dd5-b0d4-7cf7f7b657c7", + "start": { + "$date": "2021-12-11T01:05:22.000Z" + }, + "end": { + "$date": "2021-12-11T02:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "8a2d0780-e043-435d-ab88-61b69d98ce3e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T01:08:16.000Z" + }, + "end": { + "$date": "2021-12-11T01:10:21.000Z" + }, + "events": [ + { + "uuid": "824b86e6-c4d0-493f-aa1a-794abe5c0d00", + "start": { + "$date": "2021-12-11T01:08:16.000Z" + }, + "end": { + "$date": "2021-12-11T01:10:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "012a7272-8a5c-4c14-8629-e1a3ab67a14d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T01:29:24.000Z" + }, + "end": { + "$date": "2021-12-11T01:37:39.000Z" + }, + "events": [ + { + "uuid": "efc89dc9-c1a7-45ba-b01c-7b0c616cece8", + "start": { + "$date": "2021-12-11T01:29:24.000Z" + }, + "end": { + "$date": "2021-12-11T01:37:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7dc9601-e77b-413e-a678-8a7dbb71c919", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T02:06:15.000Z" + }, + "end": { + "$date": "2021-12-11T02:37:36.000Z" + }, + "events": [ + { + "uuid": "70f1c2a1-37ee-4743-911a-674205acd0dc", + "start": { + "$date": "2021-12-11T02:06:15.000Z" + }, + "end": { + "$date": "2021-12-11T02:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "23ae0b06-979e-4f58-aeb7-c3f9d7f0940a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-11T02:03:39.000Z" + }, + "end": { + "$date": "2021-12-11T07:45:38.000Z" + }, + "events": [ + { + "uuid": "ebda5ea9-f826-4418-8ce7-6f97b4bcb9fc", + "start": { + "$date": "2021-12-11T02:03:39.000Z" + }, + "end": { + "$date": "2021-12-11T07:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "69d35e6d-b4aa-42d3-8719-f64c4aa7ce56", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-11T02:06:25.000Z" + }, + "end": { + "$date": "2021-12-11T03:15:20.000Z" + }, + "events": [ + { + "uuid": "b9c0f791-df40-49cd-8a36-bbbe0c82a1f3", + "start": { + "$date": "2021-12-11T02:06:25.000Z" + }, + "end": { + "$date": "2021-12-11T03:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "dfeb1a81-a0f2-48fe-86e2-c7d9883d4709", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T02:18:01.000Z" + }, + "end": { + "$date": "2021-12-11T03:52:20.000Z" + }, + "events": [ + { + "uuid": "e0ae987e-12e5-402a-bbb1-9d74ab7081f7", + "start": { + "$date": "2021-12-11T02:18:01.000Z" + }, + "end": { + "$date": "2021-12-11T03:52:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6ac423d-4185-42ce-943c-cb0857a6388d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T02:39:07.000Z" + }, + "end": { + "$date": "2021-12-11T03:00:22.000Z" + }, + "events": [ + { + "uuid": "15e404cf-3f72-4b59-9d02-a8c64f4a0994", + "start": { + "$date": "2021-12-11T02:39:07.000Z" + }, + "end": { + "$date": "2021-12-11T03:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "089efba4-5ad3-4cd6-8c02-3bcb54d58b0e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T03:04:38.000Z" + }, + "end": { + "$date": "2021-12-11T03:19:34.000Z" + }, + "events": [ + { + "uuid": "2d861672-1da9-4675-85c1-47f5329ff8d6", + "start": { + "$date": "2021-12-11T03:04:38.000Z" + }, + "end": { + "$date": "2021-12-11T03:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81f50894-037c-4474-a7c8-4dbddce73247", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T03:03:33.000Z" + }, + "end": { + "$date": "2021-12-11T03:18:18.000Z" + }, + "events": [ + { + "uuid": "db636a6f-f480-440c-bd88-4863208a5b2a", + "start": { + "$date": "2021-12-11T03:03:33.000Z" + }, + "end": { + "$date": "2021-12-11T03:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "4315290d-fe5f-4900-8b57-6ec46f56b20a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T03:14:47.000Z" + }, + "end": { + "$date": "2021-12-11T03:24:42.000Z" + }, + "events": [ + { + "uuid": "06ab9a41-32fa-499a-8387-2c8214e93ff0", + "start": { + "$date": "2021-12-11T03:14:47.000Z" + }, + "end": { + "$date": "2021-12-11T03:24:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "900f2862-4bc6-4208-a7dd-6b5057fd8253", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T03:19:39.000Z" + }, + "end": { + "$date": "2021-12-11T03:32:38.000Z" + }, + "events": [ + { + "uuid": "f768c05b-6a71-4d63-a884-a55260fa3302", + "start": { + "$date": "2021-12-11T03:19:39.000Z" + }, + "end": { + "$date": "2021-12-11T03:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2202014-70ae-44a0-8456-4867ee4ea6e0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T03:21:36.000Z" + }, + "end": { + "$date": "2021-12-11T03:43:02.000Z" + }, + "events": [ + { + "uuid": "1bfe1e5e-f1ab-4e19-adb4-265a3f9f00d0", + "start": { + "$date": "2021-12-11T03:21:36.000Z" + }, + "end": { + "$date": "2021-12-11T03:43:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "a803869c-42e3-4eef-8183-4053208e745d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-11T03:25:33.000Z" + }, + "end": { + "$date": "2021-12-11T03:52:01.000Z" + }, + "events": [ + { + "uuid": "536181f8-9c46-40d6-86e0-869f0225aa66", + "start": { + "$date": "2021-12-11T03:25:33.000Z" + }, + "end": { + "$date": "2021-12-11T03:52:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb734142-8df3-4836-9357-8dafc321bcd3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T03:45:28.000Z" + }, + "end": { + "$date": "2021-12-11T04:13:11.000Z" + }, + "events": [ + { + "uuid": "6f947ca1-c557-4630-aba9-6d60cf9465cb", + "start": { + "$date": "2021-12-11T03:45:28.000Z" + }, + "end": { + "$date": "2021-12-11T04:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4efe53d1-f8b3-4f5f-9563-5689d0ea8132", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-11T04:01:59.000Z" + }, + "end": { + "$date": "2021-12-11T06:38:07.000Z" + }, + "events": [ + { + "uuid": "8cbbc7a8-460a-43a3-be5e-69a124a2872e", + "start": { + "$date": "2021-12-11T04:01:59.000Z" + }, + "end": { + "$date": "2021-12-11T06:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9370ff5-f13a-4a82-886a-7989aa654063", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T04:15:02.000Z" + }, + "end": { + "$date": "2021-12-11T04:26:18.000Z" + }, + "events": [ + { + "uuid": "cee18d9a-20c7-4f3e-9768-bdc812a1d545", + "start": { + "$date": "2021-12-11T04:15:02.000Z" + }, + "end": { + "$date": "2021-12-11T04:26:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3a61f323-4e31-45b3-b4a4-5108d86ba6b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T04:20:26.000Z" + }, + "end": { + "$date": "2021-12-11T05:44:03.000Z" + }, + "events": [ + { + "uuid": "dc9a5ef4-8112-46df-8fe6-7450a25a56c0", + "start": { + "$date": "2021-12-11T04:20:26.000Z" + }, + "end": { + "$date": "2021-12-11T05:44:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e7944c01-a82f-4b4b-bd61-aef88f105044", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T04:26:04.000Z" + }, + "end": { + "$date": "2021-12-11T06:36:22.000Z" + }, + "events": [ + { + "uuid": "d4472d30-4554-4adb-b59e-4a8795113dc4", + "start": { + "$date": "2021-12-11T04:26:04.000Z" + }, + "end": { + "$date": "2021-12-11T06:36:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae6247d1-4c38-4330-820d-4b9243ea3867", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T04:32:01.000Z" + }, + "end": { + "$date": "2021-12-11T04:58:54.000Z" + }, + "events": [ + { + "uuid": "8fbecb36-daac-4539-bce7-d213591302f8", + "start": { + "$date": "2021-12-11T04:32:01.000Z" + }, + "end": { + "$date": "2021-12-11T04:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "270f9663-aa6c-4ed1-8737-fd0653872046", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T05:03:25.000Z" + }, + "end": { + "$date": "2021-12-11T05:20:14.000Z" + }, + "events": [ + { + "uuid": "799d5788-d17c-40d7-83af-1cbe4fbe41b3", + "start": { + "$date": "2021-12-11T05:03:25.000Z" + }, + "end": { + "$date": "2021-12-11T05:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a2e98cfd-948f-4f1a-aa83-c829491d37c8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T05:20:25.000Z" + }, + "end": { + "$date": "2021-12-11T06:23:01.000Z" + }, + "events": [ + { + "uuid": "f19517e1-67c4-4ff1-9ce0-44306d7fe797", + "start": { + "$date": "2021-12-11T05:20:25.000Z" + }, + "end": { + "$date": "2021-12-11T06:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "ba9f0ea6-4828-4f13-bcad-00e0a915a678", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T05:20:27.000Z" + }, + "end": { + "$date": "2021-12-11T05:33:19.000Z" + }, + "events": [ + { + "uuid": "be644861-f299-4bae-96a8-ca572de27cba", + "start": { + "$date": "2021-12-11T05:20:27.000Z" + }, + "end": { + "$date": "2021-12-11T05:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d627af99-8389-4b67-82b7-3b7c2acf0929", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T05:23:25.000Z" + }, + "end": { + "$date": "2021-12-11T05:40:00.000Z" + }, + "events": [ + { + "uuid": "f8adc706-ed48-4102-88a5-b9858db41851", + "start": { + "$date": "2021-12-11T05:23:25.000Z" + }, + "end": { + "$date": "2021-12-11T05:40:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5fdd4fa5-074c-4fa8-a144-2b232c767aba", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T05:42:56.000Z" + }, + "end": { + "$date": "2021-12-11T06:04:16.000Z" + }, + "events": [ + { + "uuid": "06461318-1739-4ac9-9ebc-a712e32c1edd", + "start": { + "$date": "2021-12-11T05:42:56.000Z" + }, + "end": { + "$date": "2021-12-11T06:04:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "993c92bb-1c96-429f-af7f-85861cf1a5d9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T05:50:46.000Z" + }, + "end": { + "$date": "2021-12-11T05:54:06.000Z" + }, + "events": [ + { + "uuid": "b3b4d3b6-67ce-45c9-a15c-0d99c796c8eb", + "start": { + "$date": "2021-12-11T05:50:46.000Z" + }, + "end": { + "$date": "2021-12-11T05:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "28b79f15-0656-48ec-883a-358851bf07d8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T05:54:36.000Z" + }, + "end": { + "$date": "2021-12-11T06:33:37.000Z" + }, + "events": [ + { + "uuid": "88717017-5aab-4011-963a-96a86a3d3f0b", + "start": { + "$date": "2021-12-11T05:54:36.000Z" + }, + "end": { + "$date": "2021-12-11T06:33:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea657fb8-4f70-4d0a-a0bb-2675e58ac671", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T06:06:31.000Z" + }, + "end": { + "$date": "2021-12-11T06:20:23.000Z" + }, + "events": [ + { + "uuid": "1c72f1d4-88f1-4b6b-b0bb-97c7f68aaa77", + "start": { + "$date": "2021-12-11T06:06:31.000Z" + }, + "end": { + "$date": "2021-12-11T06:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "468d9e5c-6f1d-47ab-aa27-180f79dcff00", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T06:26:32.000Z" + }, + "end": { + "$date": "2021-12-11T06:33:28.000Z" + }, + "events": [ + { + "uuid": "8c92cdd4-2964-4cd2-8444-eae13d579e34", + "start": { + "$date": "2021-12-11T06:26:32.000Z" + }, + "end": { + "$date": "2021-12-11T06:33:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "610bfa09-8719-4c89-81da-8f8c8b6bdf98", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T06:43:39.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:44.000Z" + }, + "events": [ + { + "uuid": "571afbd5-7761-4f49-860f-f4bdf49c441c", + "start": { + "$date": "2021-12-11T06:43:39.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79d8481c-d02a-425a-bcbd-622c57542dae", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T06:43:46.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:42.000Z" + }, + "events": [ + { + "uuid": "ef3bf7a2-0587-469e-aab7-c57f84407653", + "start": { + "$date": "2021-12-11T06:43:46.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "381cb1a8-e8e1-4d05-8141-1e66cceb3ee4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T06:43:39.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:49.000Z" + }, + "events": [ + { + "uuid": "03eb3f75-7428-4889-b1d0-4361eb77bab9", + "start": { + "$date": "2021-12-11T06:43:39.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5674b73c-7fe9-49e1-80ef-7001f669d9e0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T06:43:41.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:45.000Z" + }, + "events": [ + { + "uuid": "3f753484-a0f4-4e4f-be1a-6321c34ec312", + "start": { + "$date": "2021-12-11T06:43:41.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5199fab-ef98-4476-ae95-fade42d61116", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T06:43:36.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:46.000Z" + }, + "events": [ + { + "uuid": "d0d5f700-dfca-4997-b064-f396a213074b", + "start": { + "$date": "2021-12-11T06:43:36.000Z" + }, + "end": { + "$date": "2021-12-11T06:59:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "8785d537-15bd-4974-943f-fb036899598e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-11T06:45:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:16:30.000Z" + }, + "events": [ + { + "uuid": "f4ff8afe-62ef-4ef8-b2f0-bf642379dd6f", + "start": { + "$date": "2021-12-11T06:45:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ede99578-3a24-4f3f-872a-6b2d22741fb3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T07:00:20.000Z" + }, + "end": { + "$date": "2021-12-11T07:01:24.000Z" + }, + "events": [ + { + "uuid": "8920328e-6fc0-457a-b2d4-4dedf324b8fc", + "start": { + "$date": "2021-12-11T07:00:20.000Z" + }, + "end": { + "$date": "2021-12-11T07:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be4f581c-9c8d-4e99-b891-34680fee1d88", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T07:03:05.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:57.000Z" + }, + "events": [ + { + "uuid": "c8f6ea8c-23d5-4dfc-b7a2-55d23572346c", + "start": { + "$date": "2021-12-11T07:03:05.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81262959-6762-4f86-8ff6-ddd542eff127", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T07:03:07.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:48.000Z" + }, + "events": [ + { + "uuid": "ef5577ed-ad9e-4438-a1f6-28b145ac047b", + "start": { + "$date": "2021-12-11T07:03:07.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88a88696-e6f5-4881-901b-b3dd40f6ff04", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T07:03:05.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:55.000Z" + }, + "events": [ + { + "uuid": "30e5080a-6e12-476e-ad52-b1bfac2e5f09", + "start": { + "$date": "2021-12-11T07:03:05.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ffc8486-cb3a-47c3-b75d-59026652ce6e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T07:03:01.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:52.000Z" + }, + "events": [ + { + "uuid": "fdc100ee-ced3-4ec5-abe8-02e7f901f14e", + "start": { + "$date": "2021-12-11T07:03:01.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a8899d5-a6cd-4084-a981-34833555c6de", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T07:03:11.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:56.000Z" + }, + "events": [ + { + "uuid": "5fdc54d0-779b-473f-a663-a64127267c13", + "start": { + "$date": "2021-12-11T07:03:11.000Z" + }, + "end": { + "$date": "2021-12-11T07:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4dbf542-5e1f-4317-b38f-9db926e0e1b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T07:19:26.000Z" + }, + "end": { + "$date": "2021-12-11T07:34:05.000Z" + }, + "events": [ + { + "uuid": "3823ddc4-d40d-468b-9bbf-92156dc00056", + "start": { + "$date": "2021-12-11T07:19:26.000Z" + }, + "end": { + "$date": "2021-12-11T07:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00d4e4a5-85d1-41b1-9f16-bd0f5102ea12", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T07:19:32.000Z" + }, + "end": { + "$date": "2021-12-11T07:33:58.000Z" + }, + "events": [ + { + "uuid": "441852a6-e2dc-436b-8650-bc8e5f86766d", + "start": { + "$date": "2021-12-11T07:19:32.000Z" + }, + "end": { + "$date": "2021-12-11T07:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c6cba03-822d-4866-b4ac-bdf1d23f3663", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T07:19:35.000Z" + }, + "end": { + "$date": "2021-12-11T07:34:00.000Z" + }, + "events": [ + { + "uuid": "47bcea8e-bd8a-4abf-8848-217368337fc8", + "start": { + "$date": "2021-12-11T07:19:35.000Z" + }, + "end": { + "$date": "2021-12-11T07:34:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8544cdc6-04fb-4837-99e7-241fc9a11756", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T07:19:32.000Z" + }, + "end": { + "$date": "2021-12-11T07:33:57.000Z" + }, + "events": [ + { + "uuid": "6903cff9-ea51-49fb-9106-cfcc24a80a45", + "start": { + "$date": "2021-12-11T07:19:32.000Z" + }, + "end": { + "$date": "2021-12-11T07:33:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e3d1c26-07d4-4fdb-815f-686b449908d2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T07:19:32.000Z" + }, + "end": { + "$date": "2021-12-11T07:34:01.000Z" + }, + "events": [ + { + "uuid": "45fe7804-0e7c-4e7a-b843-aab5edb5110b", + "start": { + "$date": "2021-12-11T07:19:32.000Z" + }, + "end": { + "$date": "2021-12-11T07:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "299e8294-5325-4195-b136-3d00d09dce56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T07:36:37.000Z" + }, + "end": { + "$date": "2021-12-11T08:04:01.000Z" + }, + "events": [ + { + "uuid": "7e98ff45-8733-4cf6-8f0e-d8aeb25fb145", + "start": { + "$date": "2021-12-11T07:36:37.000Z" + }, + "end": { + "$date": "2021-12-11T08:04:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb273180-c8f7-429e-a1ea-63217f8df8ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T07:36:37.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:53.000Z" + }, + "events": [ + { + "uuid": "6534187b-3fc2-4c60-bda6-bdf111ce9e8f", + "start": { + "$date": "2021-12-11T07:36:37.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e03583cd-c333-4999-824e-4443ffd9c7b0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T07:36:35.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:56.000Z" + }, + "events": [ + { + "uuid": "baff14db-8c33-404b-81dc-c163960b748c", + "start": { + "$date": "2021-12-11T07:36:35.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3c6e540-3f95-4382-af20-e888f56f2910", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T07:36:42.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:57.000Z" + }, + "events": [ + { + "uuid": "4caa881e-fb28-4438-9f4b-6b0e87193c9f", + "start": { + "$date": "2021-12-11T07:36:42.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3386f85a-1902-4c40-ab0e-e13888d1169c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T07:36:42.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:56.000Z" + }, + "events": [ + { + "uuid": "5d1c4d43-3040-4cf5-88af-da771e9738fb", + "start": { + "$date": "2021-12-11T07:36:42.000Z" + }, + "end": { + "$date": "2021-12-11T08:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e43176e2-e1a9-47f8-8599-112b5c96ca73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T08:06:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:42.000Z" + }, + "events": [ + { + "uuid": "1ec765ee-9ccb-47f5-bb24-a797ddc3f4e6", + "start": { + "$date": "2021-12-11T08:06:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2cb36f98-87ee-49ac-8300-4192cce08e90", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T08:06:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:29.000Z" + }, + "events": [ + { + "uuid": "b3c3b8ac-effe-4421-82d7-41caaf94a322", + "start": { + "$date": "2021-12-11T08:06:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9842f9d7-c6d0-4da8-9160-2cc37b2ba55e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T08:06:17.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:28.000Z" + }, + "events": [ + { + "uuid": "db965049-a2cd-44d5-b1ea-34bbfa34c824", + "start": { + "$date": "2021-12-11T08:06:17.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15c3fd50-09ba-4255-a01d-036bddde5700", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T08:06:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:32.000Z" + }, + "events": [ + { + "uuid": "b637d3de-71b9-40da-b0fa-0572d5cfc171", + "start": { + "$date": "2021-12-11T08:06:18.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adb38a05-30eb-4bfa-95de-a1b9bc42a354", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T08:06:16.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:36.000Z" + }, + "events": [ + { + "uuid": "1180ece6-2f2c-416b-922e-c9977e8cac34", + "start": { + "$date": "2021-12-11T08:06:16.000Z" + }, + "end": { + "$date": "2021-12-11T08:18:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f09f491-d846-4aad-89b1-87ace9192551", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T08:21:58.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:18.000Z" + }, + "events": [ + { + "uuid": "a830a59d-b78a-49de-ba9c-f8e64f650d54", + "start": { + "$date": "2021-12-11T08:21:58.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e9623cb-9ec9-44fa-8a03-114a040d7556", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T08:22:03.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:09.000Z" + }, + "events": [ + { + "uuid": "e4838c00-d069-4281-8514-c2c653e380a8", + "start": { + "$date": "2021-12-11T08:22:03.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "132a6990-3bab-4d37-9315-2b75db304895", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T08:21:57.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:17.000Z" + }, + "events": [ + { + "uuid": "40cb77e5-f458-434b-9b93-474e998113ac", + "start": { + "$date": "2021-12-11T08:21:57.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fb07219-2d65-41c8-a9d1-93f62dbf6608", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T08:21:53.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:20.000Z" + }, + "events": [ + { + "uuid": "d860852d-419f-4dcf-8025-feb136565f6c", + "start": { + "$date": "2021-12-11T08:21:53.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63a89dad-8505-4d1e-8322-4f475a313488", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T08:21:59.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:19.000Z" + }, + "events": [ + { + "uuid": "b9b8dbf3-b4e3-4407-9fce-dd051bc69005", + "start": { + "$date": "2021-12-11T08:21:59.000Z" + }, + "end": { + "$date": "2021-12-11T08:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "6417d60a-4e9e-4b22-bf52-09a90bef5265", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T08:29:06.000Z" + }, + "end": { + "$date": "2021-12-11T08:38:21.000Z" + }, + "events": [ + { + "uuid": "b1f3e875-d301-46cd-a30a-275b4ab709c1", + "start": { + "$date": "2021-12-11T08:29:06.000Z" + }, + "end": { + "$date": "2021-12-11T08:38:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cc25b2d-9ba5-47dd-82c6-ce4d809bc50d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T08:45:50.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:32.000Z" + }, + "events": [ + { + "uuid": "2e874a25-8696-46aa-ac11-0ffb69b50374", + "start": { + "$date": "2021-12-11T08:45:50.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f85de9ff-6977-4551-8788-7622683250c7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-11T08:45:43.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:24.000Z" + }, + "events": [ + { + "uuid": "35888148-c8b9-4a5c-a99d-6627a6dac208", + "start": { + "$date": "2021-12-11T08:45:43.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f95a3fbb-45a2-40b4-b9a7-5ada92167cfc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T08:45:47.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:22.000Z" + }, + "events": [ + { + "uuid": "dc7d3e35-20ad-4f1b-87f0-b4f0c4e3d763", + "start": { + "$date": "2021-12-11T08:45:47.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89bc4ec2-8652-498a-9709-a206a38be73a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T08:45:43.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:24.000Z" + }, + "events": [ + { + "uuid": "c84191fe-b14a-4ea8-bbb0-4051dba0e20a", + "start": { + "$date": "2021-12-11T08:45:43.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17ca0ce4-f900-41c3-8206-67e2736a51f4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-11T08:45:54.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:23.000Z" + }, + "events": [ + { + "uuid": "bd4e7201-0c28-46df-94ef-8b5d74944618", + "start": { + "$date": "2021-12-11T08:45:54.000Z" + }, + "end": { + "$date": "2021-12-11T09:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "de756fb1-6b43-4dd3-86a6-7d9659607de7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T09:16:48.000Z" + }, + "end": { + "$date": "2021-12-11T09:20:21.000Z" + }, + "events": [ + { + "uuid": "f657ab06-831e-45c5-8d8f-87b89f8d8d21", + "start": { + "$date": "2021-12-11T09:16:48.000Z" + }, + "end": { + "$date": "2021-12-11T09:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83592552-4067-4119-ae94-18a02596ec9b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T09:19:28.000Z" + }, + "end": { + "$date": "2021-12-11T09:33:03.000Z" + }, + "events": [ + { + "uuid": "5b627657-602d-4689-ba6a-047b89b144fc", + "start": { + "$date": "2021-12-11T09:19:28.000Z" + }, + "end": { + "$date": "2021-12-11T09:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "deec2016-a880-4809-8fb5-1beaa749bb53", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T09:19:18.000Z" + }, + "end": { + "$date": "2021-12-11T09:33:08.000Z" + }, + "events": [ + { + "uuid": "43aa900e-2c07-485b-ae86-35dd9f7ba721", + "start": { + "$date": "2021-12-11T09:19:18.000Z" + }, + "end": { + "$date": "2021-12-11T09:33:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "db8cdc11-26a6-412a-9480-75eb65fc48c5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T09:20:38.000Z" + }, + "end": { + "$date": "2021-12-11T10:05:10.000Z" + }, + "events": [ + { + "uuid": "01c05a9e-a17e-404c-b95c-fbd622099af8", + "start": { + "$date": "2021-12-11T09:20:38.000Z" + }, + "end": { + "$date": "2021-12-11T10:05:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89fe958f-d8c4-4bd4-81fb-785dedaee2f5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T09:35:03.000Z" + }, + "end": { + "$date": "2021-12-11T09:57:49.000Z" + }, + "events": [ + { + "uuid": "2a2d97f3-a7b8-49ba-9a46-4fb982579c9e", + "start": { + "$date": "2021-12-11T09:35:03.000Z" + }, + "end": { + "$date": "2021-12-11T09:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b93a98cf-8af9-4cec-985f-b621d54ab937", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T09:35:09.000Z" + }, + "end": { + "$date": "2021-12-11T09:57:54.000Z" + }, + "events": [ + { + "uuid": "5ac65101-ce0c-4304-a503-c2ef521957f4", + "start": { + "$date": "2021-12-11T09:35:09.000Z" + }, + "end": { + "$date": "2021-12-11T09:57:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46c54b4b-f53b-40c3-8ca6-6c7463a0f347", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T10:00:09.000Z" + }, + "end": { + "$date": "2021-12-11T10:16:09.000Z" + }, + "events": [ + { + "uuid": "36632158-d300-4f30-a625-a4921e726b2c", + "start": { + "$date": "2021-12-11T10:00:09.000Z" + }, + "end": { + "$date": "2021-12-11T10:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7a75c58-d15f-44b2-94cd-dae6e491d56d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T10:00:09.000Z" + }, + "end": { + "$date": "2021-12-11T10:16:00.000Z" + }, + "events": [ + { + "uuid": "50490c13-9035-4b38-9d4a-f76d72270ca9", + "start": { + "$date": "2021-12-11T10:00:09.000Z" + }, + "end": { + "$date": "2021-12-11T10:16:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b68c5e9e-b7e0-487d-9c5e-9b860ca443cf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T10:18:15.000Z" + }, + "end": { + "$date": "2021-12-11T10:41:30.000Z" + }, + "events": [ + { + "uuid": "4421cd32-2761-4902-a32d-c999c8617107", + "start": { + "$date": "2021-12-11T10:18:15.000Z" + }, + "end": { + "$date": "2021-12-11T10:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb8a65fb-f942-4845-964d-919b40fda193", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T10:18:20.000Z" + }, + "end": { + "$date": "2021-12-11T10:41:20.000Z" + }, + "events": [ + { + "uuid": "52f09abb-8f45-4e22-9622-7e91ea76818c", + "start": { + "$date": "2021-12-11T10:18:20.000Z" + }, + "end": { + "$date": "2021-12-11T10:41:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6364e22f-d81e-40e9-8138-2d194ecb4e73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-11T10:18:24.000Z" + }, + "end": { + "$date": "2021-12-11T11:05:55.000Z" + }, + "events": [ + { + "uuid": "a75eb69e-70fa-455e-9795-abd87e8936f2", + "start": { + "$date": "2021-12-11T10:18:24.000Z" + }, + "end": { + "$date": "2021-12-11T11:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee09e0cb-3e32-4189-b560-a2d508779dd1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T10:43:55.000Z" + }, + "end": { + "$date": "2021-12-11T11:01:15.000Z" + }, + "events": [ + { + "uuid": "5b07664b-6ee6-4d46-a139-8c11a573f9a0", + "start": { + "$date": "2021-12-11T10:43:55.000Z" + }, + "end": { + "$date": "2021-12-11T11:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "382e8940-1c96-476e-9aac-db5d872a0c4b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T10:43:55.000Z" + }, + "end": { + "$date": "2021-12-11T11:01:16.000Z" + }, + "events": [ + { + "uuid": "00a7a454-9ab8-4aab-9219-c351032b010e", + "start": { + "$date": "2021-12-11T10:43:55.000Z" + }, + "end": { + "$date": "2021-12-11T11:01:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72aa4e37-d4da-483e-b9dc-ba1ad903b4b8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T11:04:21.000Z" + }, + "end": { + "$date": "2021-12-11T11:21:21.000Z" + }, + "events": [ + { + "uuid": "85c9cda9-2c4a-459b-b6f1-0f44eac78450", + "start": { + "$date": "2021-12-11T11:04:21.000Z" + }, + "end": { + "$date": "2021-12-11T11:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce4d8547-cdc7-43cb-a2f3-4efa4084e4fc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T11:23:46.000Z" + }, + "end": { + "$date": "2021-12-11T11:42:47.000Z" + }, + "events": [ + { + "uuid": "83c2e708-6a1f-49e6-8083-69b1ee26d06c", + "start": { + "$date": "2021-12-11T11:23:46.000Z" + }, + "end": { + "$date": "2021-12-11T11:42:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa7feef0-ee27-43ce-add7-978a42fc8fcb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T11:44:47.000Z" + }, + "end": { + "$date": "2021-12-11T12:11:52.000Z" + }, + "events": [ + { + "uuid": "e8653639-418e-4095-bd4c-39697ee1eec7", + "start": { + "$date": "2021-12-11T11:44:47.000Z" + }, + "end": { + "$date": "2021-12-11T12:11:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e998a1f-1dd8-49be-83de-25ebcbe0cfd0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T12:14:38.000Z" + }, + "end": { + "$date": "2021-12-11T12:44:38.000Z" + }, + "events": [ + { + "uuid": "90683875-9853-4114-9e13-c4c58229e3e1", + "start": { + "$date": "2021-12-11T12:14:38.000Z" + }, + "end": { + "$date": "2021-12-11T12:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b2636f52-e617-4d72-b0ef-6f9b1e1476f3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-11T12:46:48.000Z" + }, + "end": { + "$date": "2021-12-11T12:59:13.000Z" + }, + "events": [ + { + "uuid": "41bd0c7e-a793-4f18-9d41-0220c9705e50", + "start": { + "$date": "2021-12-11T12:46:48.000Z" + }, + "end": { + "$date": "2021-12-11T12:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "17555f02-5816-462e-a9c1-522807ec4538", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T16:53:45.000Z" + }, + "end": { + "$date": "2021-12-11T17:17:23.000Z" + }, + "events": [ + { + "uuid": "17c6b5ae-43be-49f1-ad3f-fafc465a937b", + "start": { + "$date": "2021-12-11T16:53:45.000Z" + }, + "end": { + "$date": "2021-12-11T17:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "7f091c8d-ef16-4e31-bb0e-0c478a3333c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T18:32:45.000Z" + }, + "end": { + "$date": "2021-12-11T18:52:42.000Z" + }, + "events": [ + { + "uuid": "54525ced-5b16-4bd5-afac-0466b77cc973", + "start": { + "$date": "2021-12-11T18:32:45.000Z" + }, + "end": { + "$date": "2021-12-11T18:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5e4457c7-e08e-4687-acfc-b5a0f42ecd06", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T19:02:27.000Z" + }, + "end": { + "$date": "2021-12-11T20:17:27.000Z" + }, + "events": [ + { + "uuid": "634c57f9-12f7-4ffb-b1aa-f4ccee291734", + "start": { + "$date": "2021-12-11T19:02:27.000Z" + }, + "end": { + "$date": "2021-12-11T20:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fdec7f20-49a7-402a-a662-1c3c5787d3be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T19:17:52.000Z" + }, + "end": { + "$date": "2021-12-11T19:48:09.000Z" + }, + "events": [ + { + "uuid": "117174ba-f37c-426b-8fcb-6224186213e2", + "start": { + "$date": "2021-12-11T19:17:52.000Z" + }, + "end": { + "$date": "2021-12-11T19:48:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "35864783-7818-4008-addc-0c23fb440097", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T19:36:09.000Z" + }, + "end": { + "$date": "2021-12-11T19:40:00.000Z" + }, + "events": [ + { + "uuid": "a972c8ae-689e-40c4-a78e-5756568fff1b", + "start": { + "$date": "2021-12-11T19:36:09.000Z" + }, + "end": { + "$date": "2021-12-11T19:40:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "4666feaf-164c-4fcc-afa1-f025b02cfc9c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T19:49:01.000Z" + }, + "end": { + "$date": "2021-12-11T19:59:57.000Z" + }, + "events": [ + { + "uuid": "d6bf8f41-d890-4eec-a8f5-63cb797e8b13", + "start": { + "$date": "2021-12-11T19:49:01.000Z" + }, + "end": { + "$date": "2021-12-11T19:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "b742933e-407b-4ff0-9455-c0d4d39302cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T20:02:01.000Z" + }, + "end": { + "$date": "2021-12-11T21:49:44.000Z" + }, + "events": [ + { + "uuid": "0a572b0c-aa45-42b9-b549-cd403d8e4021", + "start": { + "$date": "2021-12-11T20:02:01.000Z" + }, + "end": { + "$date": "2021-12-11T21:49:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f0e6e3e4-c266-434a-80e4-4f98b3c7e488", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T20:02:12.000Z" + }, + "end": { + "$date": "2021-12-11T20:27:55.000Z" + }, + "events": [ + { + "uuid": "e7470886-93d4-42b3-bac4-449652b79cf2", + "start": { + "$date": "2021-12-11T20:02:12.000Z" + }, + "end": { + "$date": "2021-12-11T20:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f32330d-281d-4433-85a9-6ce729917d70", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T20:09:35.000Z" + }, + "end": { + "$date": "2021-12-11T20:48:14.000Z" + }, + "events": [ + { + "uuid": "53259a96-df5f-4da0-a367-2ae5572e05ea", + "start": { + "$date": "2021-12-11T20:09:35.000Z" + }, + "end": { + "$date": "2021-12-11T20:48:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f2187c5a-2117-4851-a24a-4cf277442664", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T20:28:16.000Z" + }, + "end": { + "$date": "2021-12-11T21:30:34.000Z" + }, + "events": [ + { + "uuid": "799cf48a-db7d-402b-8867-a5bcc9947a08", + "start": { + "$date": "2021-12-11T20:28:16.000Z" + }, + "end": { + "$date": "2021-12-11T21:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e06c8487-2a58-43bf-88ad-92bc38d4f219", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T21:03:19.000Z" + }, + "end": { + "$date": "2021-12-11T21:45:29.000Z" + }, + "events": [ + { + "uuid": "29347087-ccaa-4756-96e4-69b75b87f407", + "start": { + "$date": "2021-12-11T21:03:19.000Z" + }, + "end": { + "$date": "2021-12-11T21:45:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d97f1ec-1f5c-49d4-8fae-4d02ea13e40d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T21:16:23.000Z" + }, + "end": { + "$date": "2021-12-11T21:42:52.000Z" + }, + "events": [ + { + "uuid": "1ef46bc7-9ae6-4d95-ac0f-406ba480064e", + "start": { + "$date": "2021-12-11T21:16:23.000Z" + }, + "end": { + "$date": "2021-12-11T21:42:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29cd5dcc-e1b8-4ebd-86ad-27b7f397c831", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T21:46:28.000Z" + }, + "end": { + "$date": "2021-12-11T22:06:03.000Z" + }, + "events": [ + { + "uuid": "5c7b6681-5c61-4795-8e3c-d42eb4565a7d", + "start": { + "$date": "2021-12-11T21:46:28.000Z" + }, + "end": { + "$date": "2021-12-11T22:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ac275c0-b071-4487-b871-092ca43333aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T21:52:05.000Z" + }, + "end": { + "$date": "2021-12-11T22:25:31.000Z" + }, + "events": [ + { + "uuid": "1a6fa0a6-f9b0-4c98-85af-3910cf4c05bb", + "start": { + "$date": "2021-12-11T21:52:05.000Z" + }, + "end": { + "$date": "2021-12-11T22:25:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d63d8ee-2f9b-47ae-8339-4bc1e03b8e63", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-11T21:49:49.000Z" + }, + "end": { + "$date": "2021-12-11T22:48:20.000Z" + }, + "events": [ + { + "uuid": "d99e6556-f657-4501-be2e-25d3648ddaf0", + "start": { + "$date": "2021-12-11T21:49:49.000Z" + }, + "end": { + "$date": "2021-12-11T22:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "abf77f97-6d59-48b7-a811-0b12d134a871", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T21:50:01.000Z" + }, + "end": { + "$date": "2021-12-11T22:20:32.000Z" + }, + "events": [ + { + "uuid": "2a071cc2-cd1b-4b10-b9e2-2bdaf09d6554", + "start": { + "$date": "2021-12-11T21:50:01.000Z" + }, + "end": { + "$date": "2021-12-11T22:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "afa4d0c4-9d60-42b8-bc90-8b14113fa852", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-11T22:09:04.000Z" + }, + "end": { + "$date": "2021-12-12T04:52:52.000Z" + }, + "events": [ + { + "uuid": "84547d98-a54e-48a6-9496-0cac327022ef", + "start": { + "$date": "2021-12-11T22:09:04.000Z" + }, + "end": { + "$date": "2021-12-12T03:28:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a119adec-8b97-4e26-b9f0-ec1ba6a2f1b0", + "start": { + "$date": "2021-12-12T03:28:04.000Z" + }, + "end": { + "$date": "2021-12-12T03:30:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "86f8402c-24ee-4452-8e7c-fc33d180f1f7", + "start": { + "$date": "2021-12-12T03:30:04.000Z" + }, + "end": { + "$date": "2021-12-12T04:52:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3763c920-a9b6-4b35-af0d-70fea5efdf1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T22:51:03.000Z" + }, + "end": { + "$date": "2021-12-11T23:22:28.000Z" + }, + "events": [ + { + "uuid": "7d8c1713-0b22-4b68-a26b-fdc404e05821", + "start": { + "$date": "2021-12-11T22:51:03.000Z" + }, + "end": { + "$date": "2021-12-11T23:22:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab00d432-0f96-4328-b2db-918ed5d9a9a9", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-11T23:20:02.000Z" + }, + "end": { + "$date": "2021-12-11T23:20:54.000Z" + }, + "events": [ + { + "uuid": "e3f7ea63-cdc0-4b3a-adbd-591682e0d313", + "start": { + "$date": "2021-12-11T23:20:02.000Z" + }, + "end": { + "$date": "2021-12-11T23:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6e4ba56d-55c0-4892-b2fe-af7c9ffea5f5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T04:23:57.000Z" + }, + "end": { + "$date": "2021-12-12T05:19:15.000Z" + }, + "events": [ + { + "uuid": "7af2d73f-dd65-4a41-97d1-1bef8e9f21cb", + "start": { + "$date": "2021-12-12T04:23:57.000Z" + }, + "end": { + "$date": "2021-12-12T07:46:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb14c3b7-e134-43b9-b6b2-e4e8636eeccf", + "start": { + "$date": "2021-12-12T07:46:57.000Z" + }, + "end": { + "$date": "2021-12-12T08:22:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c92f667-37d3-433a-8e74-b890eff642c8", + "start": { + "$date": "2021-12-12T08:22:57.000Z" + }, + "end": { + "$date": "2021-12-12T08:24:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6d8f070-1cb1-437b-a485-ac6648340bd6", + "start": { + "$date": "2021-12-12T08:24:57.000Z" + }, + "end": { + "$date": "2021-12-12T09:08:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4ceb574-91a3-4234-ac1d-9b93d689adf2", + "start": { + "$date": "2021-12-12T09:08:57.000Z" + }, + "end": { + "$date": "2021-12-12T09:10:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "65c1c12d-801a-4b1a-a7d3-5946fc00bcec", + "start": { + "$date": "2021-12-12T09:10:57.000Z" + }, + "end": { + "$date": "2021-12-12T09:13:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5e50c64f-5a3f-42a9-b551-f761b03da9b5", + "start": { + "$date": "2021-12-12T09:13:57.000Z" + }, + "end": { + "$date": "2021-12-12T09:15:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "90854778-09dc-4d8b-a4d6-f0521e05e558", + "start": { + "$date": "2021-12-12T09:15:57.000Z" + }, + "end": { + "$date": "2021-12-12T09:35:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7a6b842-9089-4be3-9b05-dd25cb99bacd", + "start": { + "$date": "2021-12-12T09:35:57.000Z" + }, + "end": { + "$date": "2021-12-12T05:19:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "60d003eb-5eae-411e-83df-81f79ca7435d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T23:21:00.000Z" + }, + "end": { + "$date": "2021-12-11T23:33:21.000Z" + }, + "events": [ + { + "uuid": "ac05fc89-71f9-4a2d-87d0-6e650b7f60be", + "start": { + "$date": "2021-12-11T23:21:00.000Z" + }, + "end": { + "$date": "2021-12-11T23:33:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2ff53d6b-0908-480f-befa-e209c7105f4d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-11T23:37:40.000Z" + }, + "end": { + "$date": "2021-12-12T00:21:18.000Z" + }, + "events": [ + { + "uuid": "b2bfbd8d-05d6-4b4d-8f7f-0188814980c2", + "start": { + "$date": "2021-12-11T23:37:40.000Z" + }, + "end": { + "$date": "2021-12-12T00:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6db3665e-c4ea-490c-bdf2-6708d27cc0be", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T23:27:08.000Z" + }, + "end": { + "$date": "2021-12-11T23:53:59.000Z" + }, + "events": [ + { + "uuid": "e90ebc50-1938-420a-aad5-138f0f3fbe86", + "start": { + "$date": "2021-12-11T23:27:08.000Z" + }, + "end": { + "$date": "2021-12-11T23:53:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebd13a91-2709-4f3e-9f1f-c4a87e082908", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-11T23:24:27.000Z" + }, + "end": { + "$date": "2021-12-11T23:39:02.000Z" + }, + "events": [ + { + "uuid": "8e77fdd7-af1a-4d1d-ad2e-6c56a746dd42", + "start": { + "$date": "2021-12-11T23:24:27.000Z" + }, + "end": { + "$date": "2021-12-11T23:39:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3cab8b74-a81c-4626-9c30-40921846957a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-11T23:33:37.000Z" + }, + "end": { + "$date": "2021-12-11T23:51:17.000Z" + }, + "events": [ + { + "uuid": "cb03cc3f-db46-4647-b5e5-7d87c4d1a8aa", + "start": { + "$date": "2021-12-11T23:33:37.000Z" + }, + "end": { + "$date": "2021-12-11T23:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67e42774-9a28-4b34-911a-c300840c45bc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-11T23:58:39.000Z" + }, + "end": { + "$date": "2021-12-12T00:28:57.000Z" + }, + "events": [ + { + "uuid": "2f0ceab0-7bc5-4c36-bf79-fa83861a8cde", + "start": { + "$date": "2021-12-11T23:58:39.000Z" + }, + "end": { + "$date": "2021-12-12T00:28:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3ab7fdc8-94a5-4248-9466-663572c544e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T00:12:02.000Z" + }, + "end": { + "$date": "2021-12-12T00:43:46.000Z" + }, + "events": [ + { + "uuid": "3fea5d93-bbc4-4628-9487-2f1cecdebc79", + "start": { + "$date": "2021-12-12T00:12:02.000Z" + }, + "end": { + "$date": "2021-12-12T00:43:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7036a143-7cc9-4373-9546-f97ea8c2e5d9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T00:19:16.000Z" + }, + "end": { + "$date": "2021-12-12T00:24:21.000Z" + }, + "events": [ + { + "uuid": "d6075413-94a4-43ea-a796-48a8e83abde5", + "start": { + "$date": "2021-12-12T00:19:16.000Z" + }, + "end": { + "$date": "2021-12-12T00:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7cb95441-8bc9-4685-96b0-4f1059187c6e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-12T00:23:16.000Z" + }, + "end": { + "$date": "2021-12-12T02:10:22.000Z" + }, + "events": [ + { + "uuid": "ffe5c97e-d105-471c-a734-19a2c969ddfe", + "start": { + "$date": "2021-12-12T00:23:16.000Z" + }, + "end": { + "$date": "2021-12-12T02:10:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "28544f29-a38d-482c-a080-14c6e31381a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T00:24:31.000Z" + }, + "end": { + "$date": "2021-12-12T01:37:36.000Z" + }, + "events": [ + { + "uuid": "378b4573-9d5d-4537-820f-d2c25eb61237", + "start": { + "$date": "2021-12-12T00:24:31.000Z" + }, + "end": { + "$date": "2021-12-12T01:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c29d6d8-1bad-4393-9102-848a53cc3d3a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-12T00:28:29.000Z" + }, + "end": { + "$date": "2021-12-12T03:31:15.000Z" + }, + "events": [ + { + "uuid": "f3762922-f92a-449f-959a-c93bcd97794a", + "start": { + "$date": "2021-12-12T00:28:29.000Z" + }, + "end": { + "$date": "2021-12-12T01:32:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29dab73f-ab6d-4076-9cdc-5af536999df0", + "start": { + "$date": "2021-12-12T01:32:29.000Z" + }, + "end": { + "$date": "2021-12-12T01:35:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd3ac7d5-64a5-4991-b6c0-bbe6137619f4", + "start": { + "$date": "2021-12-12T01:35:29.000Z" + }, + "end": { + "$date": "2021-12-12T01:38:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "966eef72-ecc0-4c07-bdfb-bfbaddaec08d", + "start": { + "$date": "2021-12-12T01:38:29.000Z" + }, + "end": { + "$date": "2021-12-12T02:07:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5755e750-cbb0-45f5-8209-c87b5d2e3558", + "start": { + "$date": "2021-12-12T02:07:29.000Z" + }, + "end": { + "$date": "2021-12-12T03:31:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36e08698-ecbc-46cf-86e1-623aae6083d3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T00:33:37.000Z" + }, + "end": { + "$date": "2021-12-12T00:55:33.000Z" + }, + "events": [ + { + "uuid": "c7397a6a-4640-4e3e-9f85-c7be8ab1bb92", + "start": { + "$date": "2021-12-12T00:33:37.000Z" + }, + "end": { + "$date": "2021-12-12T00:55:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "df46bbe5-25e3-4058-87b8-8df669afcd3b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-12T00:38:32.000Z" + }, + "end": { + "$date": "2021-12-12T04:54:56.000Z" + }, + "events": [ + { + "uuid": "9e088793-00ae-4750-9264-e6a60106927d", + "start": { + "$date": "2021-12-12T00:38:32.000Z" + }, + "end": { + "$date": "2021-12-12T04:54:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9576213f-edea-4b76-9ef8-31592034d4d8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T01:02:35.000Z" + }, + "end": { + "$date": "2021-12-12T01:33:50.000Z" + }, + "events": [ + { + "uuid": "e9581358-4471-4403-9a8a-7b30f193bb67", + "start": { + "$date": "2021-12-12T01:02:35.000Z" + }, + "end": { + "$date": "2021-12-12T01:33:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "bc6781c0-5415-45e4-ab01-a33e48f1bdee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T01:05:32.000Z" + }, + "end": { + "$date": "2021-12-12T01:11:33.000Z" + }, + "events": [ + { + "uuid": "9411c8d6-9c94-4a13-99e9-a34b98e9b5d2", + "start": { + "$date": "2021-12-12T01:05:32.000Z" + }, + "end": { + "$date": "2021-12-12T01:11:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "0a82d675-3d02-4c83-8940-726798c323e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T01:11:58.000Z" + }, + "end": { + "$date": "2021-12-12T01:13:48.000Z" + }, + "events": [ + { + "uuid": "b084ef75-ec30-4916-b815-518635c95df3", + "start": { + "$date": "2021-12-12T01:11:58.000Z" + }, + "end": { + "$date": "2021-12-12T01:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1f6772b4-a28a-4b55-b7ed-02ab98fafb5c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2021-12-12T01:15:11.000Z" + }, + "end": { + "$date": "2021-12-12T01:54:23.000Z" + }, + "events": [ + { + "uuid": "1c78bb8a-db28-4f9f-9708-5a610e5ccf93", + "start": { + "$date": "2021-12-12T01:15:11.000Z" + }, + "end": { + "$date": "2021-12-12T01:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7521642f-81f8-49b3-a527-4b81afd957a7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T01:38:08.000Z" + }, + "end": { + "$date": "2021-12-12T02:08:54.000Z" + }, + "events": [ + { + "uuid": "6dfd77f2-514f-4230-bf5f-27f1cdf16735", + "start": { + "$date": "2021-12-12T01:38:08.000Z" + }, + "end": { + "$date": "2021-12-12T02:08:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "221985dd-237c-4b39-806f-ce662a478239", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T02:10:12.000Z" + }, + "end": { + "$date": "2021-12-12T02:17:17.000Z" + }, + "events": [ + { + "uuid": "6ad043ca-c156-412d-8c0a-6ab9d49e5491", + "start": { + "$date": "2021-12-12T02:10:12.000Z" + }, + "end": { + "$date": "2021-12-12T02:17:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "762b0032-50c2-418a-b5d2-0b53d4cbbd25", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-12T02:52:32.000Z" + }, + "end": { + "$date": "2021-12-12T03:01:08.000Z" + }, + "events": [ + { + "uuid": "20a1be74-94d9-4188-b4f2-92b9133f343d", + "start": { + "$date": "2021-12-12T02:52:32.000Z" + }, + "end": { + "$date": "2021-12-12T03:01:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "abf7099c-146a-4add-93bf-78ca0fb3c25a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T02:56:00.000Z" + }, + "end": { + "$date": "2021-12-12T03:55:12.000Z" + }, + "events": [ + { + "uuid": "83de6683-816a-446f-9547-abe13d1ae330", + "start": { + "$date": "2021-12-12T02:56:00.000Z" + }, + "end": { + "$date": "2021-12-12T03:55:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "81cfb93d-7fbe-4b58-b40f-0e2f3df3c04d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-12T03:03:08.000Z" + }, + "end": { + "$date": "2021-12-12T05:45:08.000Z" + }, + "events": [ + { + "uuid": "e59dd0bd-189c-4e75-ab02-367c74508f91", + "start": { + "$date": "2021-12-12T03:03:08.000Z" + }, + "end": { + "$date": "2021-12-12T05:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfe3d07a-baac-4d6a-bb5c-2f503eb4f015", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T03:23:26.000Z" + }, + "end": { + "$date": "2021-12-12T03:44:37.000Z" + }, + "events": [ + { + "uuid": "383da42f-0c81-449d-8a0f-b80ece39839e", + "start": { + "$date": "2021-12-12T03:23:26.000Z" + }, + "end": { + "$date": "2021-12-12T03:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5b8a1ae0-6592-4539-a30d-63b984368fad", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-12T05:27:29.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:35.000Z" + }, + "events": [ + { + "uuid": "109b7cad-8970-400c-b8f7-9d30810411f8", + "start": { + "$date": "2021-12-12T05:27:29.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2307f10-68ba-4858-951a-a0c87da7e33c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-12T03:33:56.000Z" + }, + "end": { + "$date": "2021-12-12T05:45:36.000Z" + }, + "events": [ + { + "uuid": "7451f8b0-a2f7-414a-8347-10723cb0b156", + "start": { + "$date": "2021-12-12T03:33:56.000Z" + }, + "end": { + "$date": "2021-12-12T05:45:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e978b9a0-dcf9-47e9-b99d-63fac5868d2a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-12T03:58:58.000Z" + }, + "end": { + "$date": "2021-12-12T04:31:57.000Z" + }, + "events": [ + { + "uuid": "6e5bc408-a456-4648-b1f1-58bb798fc1ea", + "start": { + "$date": "2021-12-12T03:58:58.000Z" + }, + "end": { + "$date": "2021-12-12T04:31:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "322046e8-273a-4e08-86ac-5ef106dc1252", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T04:22:24.000Z" + }, + "end": { + "$date": "2021-12-12T04:28:14.000Z" + }, + "events": [ + { + "uuid": "7079b544-304e-4380-8c67-7f0d25ea37e3", + "start": { + "$date": "2021-12-12T04:22:24.000Z" + }, + "end": { + "$date": "2021-12-12T04:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bc523156-aa57-4e7e-bbe5-0da78f232d13", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T04:28:30.000Z" + }, + "end": { + "$date": "2021-12-12T04:57:14.000Z" + }, + "events": [ + { + "uuid": "30e4e642-05f2-4e2b-896e-f4ee860c762b", + "start": { + "$date": "2021-12-12T04:28:30.000Z" + }, + "end": { + "$date": "2021-12-12T04:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77f09362-9eb9-446d-b8c5-1e730fe24489", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-12T04:37:23.000Z" + }, + "end": { + "$date": "2021-12-12T05:11:36.000Z" + }, + "events": [ + { + "uuid": "e7f91e3d-13ab-490a-b36e-c2fc7cb2967b", + "start": { + "$date": "2021-12-12T04:37:23.000Z" + }, + "end": { + "$date": "2021-12-12T05:11:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a349a27-e7bf-4fd7-aa7f-a47a12784bb8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T04:58:35.000Z" + }, + "end": { + "$date": "2021-12-12T05:56:08.000Z" + }, + "events": [ + { + "uuid": "4654ef4b-e564-4e07-9204-af53d5d6de99", + "start": { + "$date": "2021-12-12T04:58:35.000Z" + }, + "end": { + "$date": "2021-12-12T05:56:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2c933360-8470-4ad8-88c8-a8727cd88917", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T04:59:25.000Z" + }, + "end": { + "$date": "2021-12-12T05:22:26.000Z" + }, + "events": [ + { + "uuid": "5b3e2686-55fc-4edf-8f00-3a9a2cf550ab", + "start": { + "$date": "2021-12-12T04:59:25.000Z" + }, + "end": { + "$date": "2021-12-12T05:22:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea6cd183-267d-4f30-b684-27346e9650ae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T05:01:23.000Z" + }, + "end": { + "$date": "2021-12-12T05:17:42.000Z" + }, + "events": [ + { + "uuid": "25be53d4-dd87-4a46-a8a1-f43b4abfa3b0", + "start": { + "$date": "2021-12-12T05:01:23.000Z" + }, + "end": { + "$date": "2021-12-12T05:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea4c6873-09eb-4c99-b038-9b147bf1eb43", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T05:18:20.000Z" + }, + "end": { + "$date": "2021-12-12T05:19:51.000Z" + }, + "events": [ + { + "uuid": "05ec40da-cc6e-414e-9932-417ee9c4a702", + "start": { + "$date": "2021-12-12T05:18:20.000Z" + }, + "end": { + "$date": "2021-12-12T05:19:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f9969fa5-5afc-4d6e-837d-0658ada9bb94", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T05:20:09.000Z" + }, + "end": { + "$date": "2021-12-12T05:21:36.000Z" + }, + "events": [ + { + "uuid": "14349017-f21a-45ef-b926-f3ae0a6a31ef", + "start": { + "$date": "2021-12-12T05:20:09.000Z" + }, + "end": { + "$date": "2021-12-12T05:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15a8cb0d-5e74-4c22-8b30-893b9243d5c8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T05:27:31.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:36.000Z" + }, + "events": [ + { + "uuid": "de3a4990-1a83-4193-bddf-b95badffdd7b", + "start": { + "$date": "2021-12-12T05:27:31.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4046a1fa-6115-4c11-9524-11431166a75b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T05:55:26.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:38.000Z" + }, + "events": [ + { + "uuid": "734808f0-0d23-49fe-a728-7d29eac1040f", + "start": { + "$date": "2021-12-12T05:55:26.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5149e360-eeaa-48f9-8db7-cdbd43526d95", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-12T05:27:29.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:29.000Z" + }, + "events": [ + { + "uuid": "fb99b450-757d-4666-941d-974420b64e7d", + "start": { + "$date": "2021-12-12T05:27:29.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fe8f87b-764a-4ab6-8937-e940e8f8a0e1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-12T05:27:33.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:33.000Z" + }, + "events": [ + { + "uuid": "ac8836ef-1e02-4928-a4f9-868f5a6c7695", + "start": { + "$date": "2021-12-12T05:27:33.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d476072-9e42-4361-a8e8-d83b0a263063", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T05:27:38.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:37.000Z" + }, + "events": [ + { + "uuid": "6cd7ba81-d8d1-48fd-8c2d-aa1ee6226a76", + "start": { + "$date": "2021-12-12T05:27:38.000Z" + }, + "end": { + "$date": "2021-12-12T05:55:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "79ed4b94-4e81-41bd-970a-9bb024738003", + "uuid": "7d83f774-b9af-4169-a0ac-8d8944f229c1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-12T05:27:06.000Z" + }, + "end": { + "$date": "2021-12-12T05:41:54.000Z" + }, + "events": [ + { + "uuid": "660cda9b-12c6-4054-ad7c-d7dac43d5999", + "start": { + "$date": "2021-12-12T05:27:06.000Z" + }, + "end": { + "$date": "2021-12-12T05:41:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", + "uuid": "d90528d1-1687-468b-8e4c-a587b700f4ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-12T05:44:41.000Z" + }, + "end": { + "$date": "2021-12-12T07:41:56.000Z" + }, + "events": [ + { + "uuid": "e87342b9-cb1d-40fa-88be-ece3f089ffd1", + "start": { + "$date": "2021-12-12T05:44:41.000Z" + }, + "end": { + "$date": "2021-12-12T07:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "36909aeb-f196-4611-8724-3d727f761247", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-12T07:32:00.000Z" + }, + "end": { + "$date": "2021-12-12T07:42:37.000Z" + }, + "events": [ + { + "uuid": "6e9b6d28-2cb1-4318-9f6d-51ce61fa9e88", + "start": { + "$date": "2021-12-12T07:32:00.000Z" + }, + "end": { + "$date": "2021-12-12T07:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f61c816a-f89b-4867-8dff-aada58813f8c", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-12T05:46:05.000Z" + }, + "end": { + "$date": "2021-12-12T07:23:35.000Z" + }, + "events": [ + { + "uuid": "d6098ac5-990f-45a8-bdc7-2cc3d0be8c56", + "start": { + "$date": "2021-12-12T05:46:05.000Z" + }, + "end": { + "$date": "2021-12-12T07:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b23bc55a-e2e3-4c73-8800-e6c30d73b393", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-12T05:53:04.000Z" + }, + "end": { + "$date": "2021-12-12T06:47:39.000Z" + }, + "events": [ + { + "uuid": "89b8d6c4-8d79-45ad-8be1-58cbc2614e00", + "start": { + "$date": "2021-12-12T05:53:04.000Z" + }, + "end": { + "$date": "2021-12-12T06:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f69fe434-6bce-4c2f-8203-5c4dd9b77642", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:50.000Z" + }, + "events": [ + { + "uuid": "351df509-8982-46ed-9435-b3f732446c25", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc10e2ec-32c7-4e7d-a459-000b1abfaf8d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T06:01:00.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:47.000Z" + }, + "events": [ + { + "uuid": "5947f8ca-6b40-4d79-a6b8-3439606c54e1", + "start": { + "$date": "2021-12-12T06:01:00.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d2beb3e-bfc4-44b5-9bb2-a4c2ebec0651", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:48.000Z" + }, + "events": [ + { + "uuid": "452e985e-1859-4f3c-b8cb-32a9e6b85f2f", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a39d01d-760a-453b-88ba-75a50ea828e2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T06:01:13.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:51.000Z" + }, + "events": [ + { + "uuid": "1c901c15-b6eb-49ac-a073-c968503a9270", + "start": { + "$date": "2021-12-12T06:01:13.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8175e39d-c147-467d-91d7-d0aebc685dee", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:49.000Z" + }, + "events": [ + { + "uuid": "1f17ffac-e462-421a-a25b-85ed01a0d2da", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aea95097-205a-4ed9-8fd3-2651e5ee394b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:50.000Z" + }, + "events": [ + { + "uuid": "8274f044-dc31-4eac-956d-893751347035", + "start": { + "$date": "2021-12-12T06:01:01.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87153338-78f1-41ee-bb4c-b8579404e361", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T06:01:00.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:52.000Z" + }, + "events": [ + { + "uuid": "d68a4689-9cc4-48b5-a651-c83a5bedeece", + "start": { + "$date": "2021-12-12T06:01:00.000Z" + }, + "end": { + "$date": "2021-12-12T06:01:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23140d98-b445-449c-b7db-09654dded1e3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T06:06:00.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:14.000Z" + }, + "events": [ + { + "uuid": "e60f325f-a86b-4ed3-ac20-fe9afbe8f398", + "start": { + "$date": "2021-12-12T06:06:00.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8641c54f-ea66-4e68-829d-3cf5b286e03a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T06:29:02.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:08.000Z" + }, + "events": [ + { + "uuid": "7d2e8340-f983-458c-96f2-60bb033120e3", + "start": { + "$date": "2021-12-12T06:29:02.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c67a1b83-8184-49cc-bd5f-0a9ec694f9df", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-12T06:06:02.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:02.000Z" + }, + "events": [ + { + "uuid": "bf9a96b4-93fc-49ea-b324-df36b29db164", + "start": { + "$date": "2021-12-12T06:06:02.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44baf914-7e7f-409b-9b6a-94ee5fc88381", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T06:05:58.000Z" + }, + "end": { + "$date": "2021-12-12T06:28:59.000Z" + }, + "events": [ + { + "uuid": "87e619b1-45a6-4f8a-aee9-20670ed6f128", + "start": { + "$date": "2021-12-12T06:05:58.000Z" + }, + "end": { + "$date": "2021-12-12T06:28:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "753fd968-9410-4a4e-a560-b0dff0d5d29e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-12T06:05:59.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:05.000Z" + }, + "events": [ + { + "uuid": "d8c85df4-4253-4e37-9c2a-1a67792015d6", + "start": { + "$date": "2021-12-12T06:05:59.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71107596-08c7-46d4-86ad-27a63a9d1f89", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T06:29:06.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:06.000Z" + }, + "events": [ + { + "uuid": "cd70d246-9ae3-44fd-82a7-eddff13fc105", + "start": { + "$date": "2021-12-12T06:29:06.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30f2886d-1661-43a6-9b5f-ea3bf01ea9bd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T06:06:03.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:00.000Z" + }, + "events": [ + { + "uuid": "dafa53b1-9c05-4881-9bc0-a4d40d94f1ec", + "start": { + "$date": "2021-12-12T06:06:03.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd27ea66-6986-4346-ac06-54e35c67e9f7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-12T06:06:05.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:07.000Z" + }, + "events": [ + { + "uuid": "44381353-04a0-4ac2-a0aa-f053b796898f", + "start": { + "$date": "2021-12-12T06:06:05.000Z" + }, + "end": { + "$date": "2021-12-12T06:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5f5e1640-3fee-477d-9a42-2f6966e14d4b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T06:08:57.000Z" + }, + "end": { + "$date": "2021-12-12T06:30:45.000Z" + }, + "events": [ + { + "uuid": "ad681fc7-0668-4a6f-9725-360e2cae7a12", + "start": { + "$date": "2021-12-12T06:08:57.000Z" + }, + "end": { + "$date": "2021-12-12T06:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ed68a8c-b73b-4f81-9e5d-1287d79514d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T06:32:07.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:13.000Z" + }, + "events": [ + { + "uuid": "e341f454-e9bc-432e-aedd-27b16f778eb5", + "start": { + "$date": "2021-12-12T06:32:07.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4d8a2b6-9505-408e-92f9-d576408cf9f4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T06:56:03.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:14.000Z" + }, + "events": [ + { + "uuid": "802929f4-4b70-415e-8aae-c25d389530f3", + "start": { + "$date": "2021-12-12T06:56:03.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4a3345b-950a-4d78-8fb7-ad5da5548cfb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T06:32:09.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:12.000Z" + }, + "events": [ + { + "uuid": "746b21ab-4bbf-469e-9825-8af7c0cfa298", + "start": { + "$date": "2021-12-12T06:32:09.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ff9f880-c3db-4ef9-a5c0-bee395a79697", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-12T06:32:02.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:13.000Z" + }, + "events": [ + { + "uuid": "c99c71ef-3b6f-473b-a9f4-bc72200c44ef", + "start": { + "$date": "2021-12-12T06:32:02.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1d5545b-3ed5-4119-b9f9-83dcec61b41a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T06:32:09.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:05.000Z" + }, + "events": [ + { + "uuid": "02f7e5a4-0abf-428d-af63-8f428ec1d170", + "start": { + "$date": "2021-12-12T06:32:09.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf90e262-8a78-4fc2-8926-ee6e86691d6f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T06:31:58.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:04.000Z" + }, + "events": [ + { + "uuid": "703cf985-da30-4839-bad3-329a99b2a8fb", + "start": { + "$date": "2021-12-12T06:31:58.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c2304d8-d8fa-4525-80d3-eea47d89d56e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-12T06:32:06.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:01.000Z" + }, + "events": [ + { + "uuid": "1b9854f4-ae27-4c2b-9f0d-159c08d085eb", + "start": { + "$date": "2021-12-12T06:32:06.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed89824f-1fbc-4ce2-b838-b738d761d2e8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-12T06:32:05.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:10.000Z" + }, + "events": [ + { + "uuid": "7d01e423-5be0-4a31-ba09-ddc355aa9090", + "start": { + "$date": "2021-12-12T06:32:05.000Z" + }, + "end": { + "$date": "2021-12-12T06:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b4905fe-cf7f-4160-a518-b790374dc6ca", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T06:37:55.000Z" + }, + "end": { + "$date": "2021-12-12T06:40:51.000Z" + }, + "events": [ + { + "uuid": "96501769-37a4-468b-992d-1263d737475d", + "start": { + "$date": "2021-12-12T06:37:55.000Z" + }, + "end": { + "$date": "2021-12-12T06:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f79db0ba-dfc3-4423-8629-dd5fb373b282", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T06:56:43.000Z" + }, + "end": { + "$date": "2021-12-12T06:59:44.000Z" + }, + "events": [ + { + "uuid": "a3bbff84-f3fb-4b20-a8cd-11b411ff7029", + "start": { + "$date": "2021-12-12T06:56:43.000Z" + }, + "end": { + "$date": "2021-12-12T06:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2463cb17-3f87-4db7-a265-780206edb9a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T06:56:48.000Z" + }, + "end": { + "$date": "2021-12-12T07:03:21.000Z" + }, + "events": [ + { + "uuid": "97487182-2a2f-48c9-9579-e965f9a32f2a", + "start": { + "$date": "2021-12-12T06:56:48.000Z" + }, + "end": { + "$date": "2021-12-12T07:03:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "329718a3-711d-4ea6-83f6-d2c4dcf41628", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T07:03:03.000Z" + }, + "end": { + "$date": "2021-12-12T09:28:15.000Z" + }, + "events": [ + { + "uuid": "c7563a4f-50f5-43f7-89fd-e3ac7b67983c", + "start": { + "$date": "2021-12-12T07:03:03.000Z" + }, + "end": { + "$date": "2021-12-12T09:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7db2a2ec-5edf-4a82-8109-458329a48231", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T07:04:52.000Z" + }, + "end": { + "$date": "2021-12-12T08:19:50.000Z" + }, + "events": [ + { + "uuid": "5b0346a7-3615-45c2-aec4-e16af8ae84ca", + "start": { + "$date": "2021-12-12T07:04:52.000Z" + }, + "end": { + "$date": "2021-12-12T07:43:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bb44f3e4-67ce-461b-88e2-fc0fba7c2b90", + "start": { + "$date": "2021-12-12T07:43:52.000Z" + }, + "end": { + "$date": "2021-12-12T08:02:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ac0e3117-8c88-4868-840c-6e8a206c2ad2", + "start": { + "$date": "2021-12-12T08:02:52.000Z" + }, + "end": { + "$date": "2021-12-12T08:19:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c48f4f6-7764-4003-8484-e2c5d1e7cd37", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T07:14:30.000Z" + }, + "end": { + "$date": "2021-12-12T07:42:51.000Z" + }, + "events": [ + { + "uuid": "70d4a128-5b3d-4ae1-977e-cab386e35d9e", + "start": { + "$date": "2021-12-12T07:14:30.000Z" + }, + "end": { + "$date": "2021-12-12T07:42:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6344328c-efa2-4e79-ac4f-7ac5c0adf2c3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-12T07:06:54.000Z" + }, + "end": { + "$date": "2021-12-12T09:28:05.000Z" + }, + "events": [ + { + "uuid": "d7c5e7bd-2daf-43bb-9b3e-ccb4a570b26a", + "start": { + "$date": "2021-12-12T07:06:54.000Z" + }, + "end": { + "$date": "2021-12-12T09:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c55f46a2-ff0f-4fed-9d00-69ce4147aaf5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-12T07:44:51.000Z" + }, + "end": { + "$date": "2021-12-12T09:50:22.000Z" + }, + "events": [ + { + "uuid": "e37c9106-9cae-4a6d-a826-92dce1265237", + "start": { + "$date": "2021-12-12T07:44:51.000Z" + }, + "end": { + "$date": "2021-12-12T09:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "e41bee41-8635-47db-9975-04250d87a303", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-12T07:54:28.000Z" + }, + "end": { + "$date": "2021-12-12T08:09:50.000Z" + }, + "events": [ + { + "uuid": "724405c6-682d-4e05-9ec7-750c92f484a2", + "start": { + "$date": "2021-12-12T07:54:28.000Z" + }, + "end": { + "$date": "2021-12-12T08:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4606b35d-8b2b-4473-bb5f-f4dc2fc20e46", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T08:20:31.000Z" + }, + "end": { + "$date": "2021-12-12T08:39:17.000Z" + }, + "events": [ + { + "uuid": "9efd2b0a-7fb7-4d85-a36e-6d7075a868d3", + "start": { + "$date": "2021-12-12T08:20:31.000Z" + }, + "end": { + "$date": "2021-12-12T08:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2f8d55d8-b128-4bb3-94a5-305514eb1a23", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T08:40:03.000Z" + }, + "end": { + "$date": "2021-12-12T08:48:57.000Z" + }, + "events": [ + { + "uuid": "76a3bd05-7fd0-40ad-bd71-fbaa09234798", + "start": { + "$date": "2021-12-12T08:40:03.000Z" + }, + "end": { + "$date": "2021-12-12T08:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8242b688-5d5b-47f9-bbae-60854f8a6993", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T08:49:19.000Z" + }, + "end": { + "$date": "2021-12-12T09:58:36.000Z" + }, + "events": [ + { + "uuid": "6b3daf9a-86cc-4a4a-86b3-229187bb9cf2", + "start": { + "$date": "2021-12-12T08:49:19.000Z" + }, + "end": { + "$date": "2021-12-12T09:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c7ddc79-e54d-4d21-8fad-3cd0d4ae450a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T09:09:21.000Z" + }, + "end": { + "$date": "2021-12-12T09:49:22.000Z" + }, + "events": [ + { + "uuid": "8e32defe-c806-413a-8429-8db3c6625826", + "start": { + "$date": "2021-12-12T09:09:21.000Z" + }, + "end": { + "$date": "2021-12-12T09:49:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3afea53a-034e-4b92-84d7-e2118d676c84", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T09:54:22.000Z" + }, + "end": { + "$date": "2021-12-12T10:30:42.000Z" + }, + "events": [ + { + "uuid": "3420b3f9-57ca-4e17-9fc1-201f48258cfa", + "start": { + "$date": "2021-12-12T09:54:22.000Z" + }, + "end": { + "$date": "2021-12-12T10:30:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7534941c-fc0f-4da8-856b-a78432eb4b08", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T10:43:23.000Z" + }, + "end": { + "$date": "2021-12-12T11:21:20.000Z" + }, + "events": [ + { + "uuid": "41a36954-c881-4ed1-afe2-bce2b91d0bde", + "start": { + "$date": "2021-12-12T10:43:23.000Z" + }, + "end": { + "$date": "2021-12-12T11:21:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3ad519da-0237-4917-84b4-49eebc43eafe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-12T11:16:25.000Z" + }, + "end": { + "$date": "2021-12-12T14:54:36.000Z" + }, + "events": [ + { + "uuid": "6b426649-f713-41f4-a7c2-339d19afd23c", + "start": { + "$date": "2021-12-12T11:16:25.000Z" + }, + "end": { + "$date": "2021-12-12T14:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43a66366-8572-4341-8767-70b3b770017c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-12T11:26:33.000Z" + }, + "end": { + "$date": "2021-12-12T11:56:40.000Z" + }, + "events": [ + { + "uuid": "a4aae72d-3dde-48fd-9dbb-f64753640f79", + "start": { + "$date": "2021-12-12T11:26:33.000Z" + }, + "end": { + "$date": "2021-12-12T11:56:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9e9bc001-1976-4c03-a877-74d99ba2378d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T15:03:25.000Z" + }, + "end": { + "$date": "2021-12-12T15:23:18.000Z" + }, + "events": [ + { + "uuid": "d07940b7-cd1f-4c95-bdde-c9e7566f9be7", + "start": { + "$date": "2021-12-12T15:03:25.000Z" + }, + "end": { + "$date": "2021-12-12T15:18:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7afcd373-fa0a-418e-bc83-da11a79cc891", + "start": { + "$date": "2021-12-12T15:18:25.000Z" + }, + "end": { + "$date": "2021-12-12T15:23:18.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e8b6cb4e-498a-4fab-a8f9-ca11110eefc0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T15:23:33.000Z" + }, + "end": { + "$date": "2021-12-12T18:46:00.000Z" + }, + "events": [ + { + "uuid": "2caad0ce-cc82-44db-bdf1-d49400946500", + "start": { + "$date": "2021-12-12T15:23:33.000Z" + }, + "end": { + "$date": "2021-12-12T17:18:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88a5ba99-dce6-41e9-ac1a-0fa06a8757da", + "start": { + "$date": "2021-12-12T17:18:33.000Z" + }, + "end": { + "$date": "2021-12-12T18:46:00.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "24cb8d8b-e650-49eb-9db1-73ded2fd94d8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T17:47:20.000Z" + }, + "end": { + "$date": "2021-12-12T17:54:06.000Z" + }, + "events": [ + { + "uuid": "67f47073-7ff0-49db-a13d-cba6f75511b4", + "start": { + "$date": "2021-12-12T17:47:20.000Z" + }, + "end": { + "$date": "2021-12-12T17:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", + "uuid": "fe47cb80-3b23-49f3-a678-e0fc8c677d3d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T18:09:59.000Z" + }, + "end": { + "$date": "2021-12-12T19:23:19.000Z" + }, + "events": [ + { + "uuid": "64eb98fc-86d7-4513-b40b-74927150c2ab", + "start": { + "$date": "2021-12-12T18:09:59.000Z" + }, + "end": { + "$date": "2021-12-12T19:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ce7a24de-d8b3-4049-8d37-3ec7fc2521c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T18:17:16.000Z" + }, + "end": { + "$date": "2021-12-12T20:08:40.000Z" + }, + "events": [ + { + "uuid": "d5181441-c5b4-4302-942c-0fd37e6b7eaf", + "start": { + "$date": "2021-12-12T18:17:16.000Z" + }, + "end": { + "$date": "2021-12-12T20:08:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "06934c1b-a3f1-44b4-a851-d2ffcfbe5fa6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-12T18:37:19.000Z" + }, + "end": { + "$date": "2021-12-12T18:57:11.000Z" + }, + "events": [ + { + "uuid": "655e77cb-6c53-44ac-bfec-56435e933439", + "start": { + "$date": "2021-12-12T18:37:19.000Z" + }, + "end": { + "$date": "2021-12-12T18:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd037752-d53b-4e81-adf2-d3fa68105354", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T19:08:01.000Z" + }, + "end": { + "$date": "2021-12-12T19:24:12.000Z" + }, + "events": [ + { + "uuid": "2f0a9fc7-c97a-4fed-b950-237f7cfd1733", + "start": { + "$date": "2021-12-12T19:08:01.000Z" + }, + "end": { + "$date": "2021-12-12T19:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "07328a29-0ea4-46ec-bc85-1db8c368e348", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T19:23:29.000Z" + }, + "end": { + "$date": "2021-12-12T19:26:25.000Z" + }, + "events": [ + { + "uuid": "1a4af603-a156-4d6a-af5b-1cc8e69eb727", + "start": { + "$date": "2021-12-12T19:23:29.000Z" + }, + "end": { + "$date": "2021-12-12T19:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23ff4142-ca6e-4758-89a3-7af5cc443dba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T19:25:07.000Z" + }, + "end": { + "$date": "2021-12-12T19:46:23.000Z" + }, + "events": [ + { + "uuid": "d6e2f421-fcbf-4b6d-a7c0-c2d228663aa6", + "start": { + "$date": "2021-12-12T19:25:07.000Z" + }, + "end": { + "$date": "2021-12-12T19:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "85943be0-df0a-4c13-862f-d161b9f2da00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T19:48:23.000Z" + }, + "end": { + "$date": "2021-12-12T21:14:42.000Z" + }, + "events": [ + { + "uuid": "23fc264d-08e2-4bb8-b5ad-eb95d284ded9", + "start": { + "$date": "2021-12-12T19:48:23.000Z" + }, + "end": { + "$date": "2021-12-12T20:34:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6821cb16-adac-4a71-accd-6d059376219d", + "start": { + "$date": "2021-12-12T20:34:23.000Z" + }, + "end": { + "$date": "2021-12-12T20:40:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23f29cc7-6470-4c13-901d-adf3188ac3f5", + "start": { + "$date": "2021-12-12T20:40:23.000Z" + }, + "end": { + "$date": "2021-12-12T21:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e5b83eb8-03cb-4118-bc08-eeb254f47a36", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-12T20:04:52.000Z" + }, + "end": { + "$date": "2021-12-12T23:17:51.000Z" + }, + "events": [ + { + "uuid": "0e9fcec1-560b-4352-82f7-300de45adde8", + "start": { + "$date": "2021-12-12T20:04:52.000Z" + }, + "end": { + "$date": "2021-12-12T20:19:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd6fa15c-a03f-4978-9514-eb323e90f9a1", + "start": { + "$date": "2021-12-12T20:19:52.000Z" + }, + "end": { + "$date": "2021-12-12T20:24:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dfe2f7d3-de86-4b77-b5a0-3e5e255ed4f2", + "start": { + "$date": "2021-12-12T20:24:52.000Z" + }, + "end": { + "$date": "2021-12-12T23:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", + "uuid": "e59d5dcf-aee0-4ed3-bbf4-133c4a4d9d9a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T20:09:01.000Z" + }, + "end": { + "$date": "2021-12-12T20:29:06.000Z" + }, + "events": [ + { + "uuid": "50e64b3e-dee5-495f-808e-f079c7c528de", + "start": { + "$date": "2021-12-12T20:09:01.000Z" + }, + "end": { + "$date": "2021-12-12T20:29:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "634f282c-b393-402a-be5a-9bc4f567de5d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T20:23:14.000Z" + }, + "end": { + "$date": "2021-12-12T21:55:07.000Z" + }, + "events": [ + { + "uuid": "5b27b9b8-98de-4218-bf52-703db27e73e3", + "start": { + "$date": "2021-12-12T20:23:14.000Z" + }, + "end": { + "$date": "2021-12-12T20:51:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e582f504-0ccf-40f3-b93c-26208b57a933", + "start": { + "$date": "2021-12-12T20:51:14.000Z" + }, + "end": { + "$date": "2021-12-12T21:36:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c31f785a-806e-4ce7-a175-5dae03a6d63d", + "start": { + "$date": "2021-12-12T21:36:14.000Z" + }, + "end": { + "$date": "2021-12-12T21:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "292f27bf-b74e-4826-8e20-726be453d5aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T20:48:13.000Z" + }, + "end": { + "$date": "2021-12-12T21:08:40.000Z" + }, + "events": [ + { + "uuid": "c646149c-89b6-4653-b97d-ca1d98eb72fe", + "start": { + "$date": "2021-12-12T20:48:13.000Z" + }, + "end": { + "$date": "2021-12-12T21:08:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "60e657f7-43e6-4f78-a864-cffbdb2c4a4e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T21:25:31.000Z" + }, + "end": { + "$date": "2021-12-12T22:24:25.000Z" + }, + "events": [ + { + "uuid": "65da01ea-8aaa-4d82-906c-94bc8bfb9271", + "start": { + "$date": "2021-12-12T21:25:31.000Z" + }, + "end": { + "$date": "2021-12-12T22:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1cd8f4b-bd4e-4d54-be76-b98feae7d7c1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T21:29:45.000Z" + }, + "end": { + "$date": "2021-12-12T21:50:14.000Z" + }, + "events": [ + { + "uuid": "cef7f0d7-ab56-40b6-ad8d-f0e806b3d326", + "start": { + "$date": "2021-12-12T21:29:45.000Z" + }, + "end": { + "$date": "2021-12-12T21:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66c4fd91-4398-4b34-8e8d-07dbe3d29ea2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T21:52:43.000Z" + }, + "end": { + "$date": "2021-12-12T22:11:45.000Z" + }, + "events": [ + { + "uuid": "e37abdd8-0a7a-4d30-a5d4-3d1cc31c4275", + "start": { + "$date": "2021-12-12T21:52:43.000Z" + }, + "end": { + "$date": "2021-12-12T22:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7fed2189-ca37-476e-a287-57914c4f98fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T21:55:22.000Z" + }, + "end": { + "$date": "2021-12-12T22:12:20.000Z" + }, + "events": [ + { + "uuid": "853af51e-15e5-4fab-b0a5-cc0ac4b4acdb", + "start": { + "$date": "2021-12-12T21:55:22.000Z" + }, + "end": { + "$date": "2021-12-12T22:12:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "dc0a348c-a0f0-4e94-9823-59201f69894c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T22:05:53.000Z" + }, + "end": { + "$date": "2021-12-12T22:17:15.000Z" + }, + "events": [ + { + "uuid": "ff931730-547e-4e8c-8dbb-37d508af3494", + "start": { + "$date": "2021-12-12T22:05:53.000Z" + }, + "end": { + "$date": "2021-12-12T22:17:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bc0191d-23b4-4451-a275-e33ebfbd8c8a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-12T22:14:10.000Z" + }, + "end": { + "$date": "2021-12-12T22:36:55.000Z" + }, + "events": [ + { + "uuid": "5949c076-57b6-4dc8-8c5d-1124583e948f", + "start": { + "$date": "2021-12-12T22:14:10.000Z" + }, + "end": { + "$date": "2021-12-12T22:36:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "11e86e71-ad4d-4682-ad9c-4e630aaa261e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T22:17:33.000Z" + }, + "end": { + "$date": "2021-12-12T22:47:43.000Z" + }, + "events": [ + { + "uuid": "4c3ddd7e-404f-4dc6-bfd3-e9b54745e30f", + "start": { + "$date": "2021-12-12T22:17:33.000Z" + }, + "end": { + "$date": "2021-12-12T22:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a63ca010-4636-432b-ba07-f1bc8163beea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T22:22:51.000Z" + }, + "end": { + "$date": "2021-12-12T23:32:30.000Z" + }, + "events": [ + { + "uuid": "bb600af4-0cd5-4fde-a1f0-ec4d0ccd09f9", + "start": { + "$date": "2021-12-12T22:22:51.000Z" + }, + "end": { + "$date": "2021-12-12T23:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "23d40349-77d0-4e09-ad83-79bee426888d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-12T22:24:55.000Z" + }, + "end": { + "$date": "2021-12-12T23:32:13.000Z" + }, + "events": [ + { + "uuid": "88a91c09-78e6-4ee2-87a3-be3cd15ff342", + "start": { + "$date": "2021-12-12T22:24:55.000Z" + }, + "end": { + "$date": "2021-12-12T23:32:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54f705f7-38cd-4fe9-9f8f-895e67f1cf00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T22:43:04.000Z" + }, + "end": { + "$date": "2021-12-12T23:02:22.000Z" + }, + "events": [ + { + "uuid": "e39a0214-d569-407a-bf26-83748a4579a5", + "start": { + "$date": "2021-12-12T22:43:04.000Z" + }, + "end": { + "$date": "2021-12-12T23:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "092212fc-0c3e-4f68-9285-53a8d9994d4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-12T22:50:37.000Z" + }, + "end": { + "$date": "2021-12-12T23:16:05.000Z" + }, + "events": [ + { + "uuid": "99b2245f-6dd7-488b-9429-5b0b641ca64f", + "start": { + "$date": "2021-12-12T22:50:37.000Z" + }, + "end": { + "$date": "2021-12-12T23:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "daabb77a-1221-4894-8a66-4cc4ec1c434a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-12T23:18:02.000Z" + }, + "end": { + "$date": "2021-12-13T06:28:33.000Z" + }, + "events": [ + { + "uuid": "a51f530c-3be9-416a-b715-93c0522eb77e", + "start": { + "$date": "2021-12-12T23:18:02.000Z" + }, + "end": { + "$date": "2021-12-13T00:35:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c56b28ae-0765-40b9-b8b8-d4b94add6883", + "start": { + "$date": "2021-12-13T00:35:02.000Z" + }, + "end": { + "$date": "2021-12-13T00:40:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d706ba9b-c94f-4bf4-a509-9333f244f182", + "start": { + "$date": "2021-12-13T00:40:02.000Z" + }, + "end": { + "$date": "2021-12-13T00:50:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "10192a45-1511-48e1-8a74-01161f330faa", + "start": { + "$date": "2021-12-13T00:50:02.000Z" + }, + "end": { + "$date": "2021-12-13T01:21:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b0915e7-3ba9-495e-a710-662455ee59d0", + "start": { + "$date": "2021-12-13T01:21:02.000Z" + }, + "end": { + "$date": "2021-12-13T01:40:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dafcb4c7-a54c-40c9-ac7d-745d5d586545", + "start": { + "$date": "2021-12-13T01:40:02.000Z" + }, + "end": { + "$date": "2021-12-13T01:41:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "995f79ef-4dae-40ce-9e3a-9aaded5b5afe", + "start": { + "$date": "2021-12-13T01:41:02.000Z" + }, + "end": { + "$date": "2021-12-13T06:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f1c2d3cc-d500-4334-9ee0-72bf53b82397", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T00:10:50.000Z" + }, + "end": { + "$date": "2021-12-13T01:33:27.000Z" + }, + "events": [ + { + "uuid": "ec20c3ff-eb23-4a89-a300-2c52e776a069", + "start": { + "$date": "2021-12-13T00:10:50.000Z" + }, + "end": { + "$date": "2021-12-13T01:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "321e6991-a8ba-4342-a6fb-9d574ea7cb9d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T01:54:10.000Z" + }, + "end": { + "$date": "2021-12-13T01:54:25.000Z" + }, + "events": [ + { + "uuid": "4eb46803-f36a-437d-b6ed-61e09a3031fe", + "start": { + "$date": "2021-12-13T01:54:10.000Z" + }, + "end": { + "$date": "2021-12-13T03:58:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2309f47e-63fc-4f9b-97b9-dc00ba3e29d3", + "start": { + "$date": "2021-12-13T03:58:10.000Z" + }, + "end": { + "$date": "2021-12-13T04:00:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ba162050-1798-4e4b-98fe-492529b24073", + "start": { + "$date": "2021-12-13T04:00:10.000Z" + }, + "end": { + "$date": "2021-12-13T01:54:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "789d95a4-1a86-4f5e-aee9-c3b706445d14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-12T23:39:45.000Z" + }, + "end": { + "$date": "2021-12-12T23:57:13.000Z" + }, + "events": [ + { + "uuid": "345739eb-0dc2-4275-9890-45c076ebcbb0", + "start": { + "$date": "2021-12-12T23:39:45.000Z" + }, + "end": { + "$date": "2021-12-12T23:57:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e4949dc-932d-4585-8baf-891be9781c37", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-12T23:49:34.000Z" + }, + "end": { + "$date": "2021-12-13T00:03:40.000Z" + }, + "events": [ + { + "uuid": "dd5de43c-27f6-4650-8ced-e9958297cf51", + "start": { + "$date": "2021-12-12T23:49:34.000Z" + }, + "end": { + "$date": "2021-12-13T00:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a7c4b70-4d8d-4f11-a4bc-435b95eeeeff", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-12T23:55:22.000Z" + }, + "end": { + "$date": "2021-12-13T01:05:51.000Z" + }, + "events": [ + { + "uuid": "26039184-77e9-4f05-a341-a29e3f34205f", + "start": { + "$date": "2021-12-12T23:55:22.000Z" + }, + "end": { + "$date": "2021-12-13T01:05:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e70bdcb1-7d73-4a38-9fa2-edd2e59aae03", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-12T23:56:17.000Z" + }, + "end": { + "$date": "2021-12-13T01:24:11.000Z" + }, + "events": [ + { + "uuid": "6b4422fa-74ff-4812-8587-ad485dc2dc98", + "start": { + "$date": "2021-12-12T23:56:17.000Z" + }, + "end": { + "$date": "2021-12-13T01:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e0c98bbd-f5be-4748-b98c-ff711801e73f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-13T00:04:49.000Z" + }, + "end": { + "$date": "2021-12-13T05:47:15.000Z" + }, + "events": [ + { + "uuid": "07b3d59e-6ff8-415b-be09-f2495d157a1d", + "start": { + "$date": "2021-12-13T00:04:49.000Z" + }, + "end": { + "$date": "2021-12-13T05:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ca6ad690-4f06-422b-9f13-9e5527f78198", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-13T00:28:38.000Z" + }, + "end": { + "$date": "2021-12-13T01:09:27.000Z" + }, + "events": [ + { + "uuid": "24fd1a8c-662c-469c-b8e8-2e9cffee5b57", + "start": { + "$date": "2021-12-13T00:28:38.000Z" + }, + "end": { + "$date": "2021-12-13T01:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b39186e5-b91a-4e6f-b22a-75a26f15228e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-13T01:15:03.000Z" + }, + "end": { + "$date": "2021-12-13T01:37:49.000Z" + }, + "events": [ + { + "uuid": "31cde1ea-d1c9-4af2-8aff-88be46e05fc2", + "start": { + "$date": "2021-12-13T01:15:03.000Z" + }, + "end": { + "$date": "2021-12-13T01:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b1052ebe-b787-4311-bfec-076c913902f5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T01:54:10.000Z" + }, + "end": { + "$date": "2021-12-13T02:43:19.000Z" + }, + "events": [ + { + "uuid": "6da2df6e-328c-4a41-8811-1cc6ad0a8e5c", + "start": { + "$date": "2021-12-13T01:54:10.000Z" + }, + "end": { + "$date": "2021-12-13T02:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d7736479-837b-4bea-bd8c-f8a869f543e2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-13T03:27:24.000Z" + }, + "end": { + "$date": "2021-12-13T04:37:52.000Z" + }, + "events": [ + { + "uuid": "9080120d-c06f-4b3f-85dd-b46f8eadaed4", + "start": { + "$date": "2021-12-13T03:27:24.000Z" + }, + "end": { + "$date": "2021-12-13T04:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e9cbfc6-ebf9-4d6c-8892-4769a32638dd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-13T04:31:03.000Z" + }, + "end": { + "$date": "2021-12-13T04:52:30.000Z" + }, + "events": [ + { + "uuid": "59d4b4b6-05d6-4a2d-89aa-b138fbaeb07c", + "start": { + "$date": "2021-12-13T04:31:03.000Z" + }, + "end": { + "$date": "2021-12-13T04:52:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "74c4409e-b66c-4870-a78b-5ae01762d0df", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T04:21:51.000Z" + }, + "end": { + "$date": "2021-12-13T04:27:11.000Z" + }, + "events": [ + { + "uuid": "e3483ddc-f55c-4c6f-9da3-fcd055b297e6", + "start": { + "$date": "2021-12-13T04:21:51.000Z" + }, + "end": { + "$date": "2021-12-13T04:27:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4c8f92b0-4cf0-450b-81ff-fad82672b4fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T04:42:21.000Z" + }, + "end": { + "$date": "2021-12-13T05:21:52.000Z" + }, + "events": [ + { + "uuid": "e38c7822-1288-4a83-9187-082fbe25d82b", + "start": { + "$date": "2021-12-13T04:42:21.000Z" + }, + "end": { + "$date": "2021-12-13T05:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da400446-c160-4979-bf43-e671538fa75d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-13T04:54:43.000Z" + }, + "end": { + "$date": "2021-12-13T05:20:54.000Z" + }, + "events": [ + { + "uuid": "14b7b5af-e566-4e6e-a537-859b0139a1d6", + "start": { + "$date": "2021-12-13T04:54:43.000Z" + }, + "end": { + "$date": "2021-12-13T05:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b1a8e3eb-a34b-4a5e-b0ec-32df57312cfb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T05:02:57.000Z" + }, + "end": { + "$date": "2021-12-13T05:05:13.000Z" + }, + "events": [ + { + "uuid": "7be5b8a1-cc8f-43a9-86a0-2b1a26213d9c", + "start": { + "$date": "2021-12-13T05:02:57.000Z" + }, + "end": { + "$date": "2021-12-13T05:05:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a7ce40ad-4202-478c-a542-f22b5fe94e37", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T05:06:07.000Z" + }, + "end": { + "$date": "2021-12-13T05:24:14.000Z" + }, + "events": [ + { + "uuid": "2a3bde8f-0d12-4417-91ed-b330b4db42ba", + "start": { + "$date": "2021-12-13T05:06:07.000Z" + }, + "end": { + "$date": "2021-12-13T05:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b33e039-91b3-4e24-9c7c-57f9b35ef148", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-13T05:22:54.000Z" + }, + "end": { + "$date": "2021-12-13T05:37:06.000Z" + }, + "events": [ + { + "uuid": "755c8633-3519-45c9-9373-391c6474bdb6", + "start": { + "$date": "2021-12-13T05:22:54.000Z" + }, + "end": { + "$date": "2021-12-13T05:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c0168c15-de03-4070-99d7-c55b778d99e4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T05:22:02.000Z" + }, + "end": { + "$date": "2021-12-13T05:24:07.000Z" + }, + "events": [ + { + "uuid": "9880fb96-733f-4496-8742-14d14bff0a64", + "start": { + "$date": "2021-12-13T05:22:02.000Z" + }, + "end": { + "$date": "2021-12-13T05:24:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c1d9414a-c1f1-4864-9622-a521549cba8c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T05:24:33.000Z" + }, + "end": { + "$date": "2021-12-13T05:41:08.000Z" + }, + "events": [ + { + "uuid": "493feb40-09f3-4f35-a27f-4bacfe57652b", + "start": { + "$date": "2021-12-13T05:24:33.000Z" + }, + "end": { + "$date": "2021-12-13T05:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a08287d8-3146-4fe3-bf57-aba9f2211fd3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T05:25:14.000Z" + }, + "end": { + "$date": "2021-12-13T05:32:40.000Z" + }, + "events": [ + { + "uuid": "13446a9c-b43e-4b57-918d-baf5b41ab860", + "start": { + "$date": "2021-12-13T05:25:14.000Z" + }, + "end": { + "$date": "2021-12-13T05:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ee3d322-fa52-4150-ba65-4112498116a8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-13T05:39:20.000Z" + }, + "end": { + "$date": "2021-12-13T05:58:53.000Z" + }, + "events": [ + { + "uuid": "ff07d8d0-002a-430d-8481-3ebb5a119260", + "start": { + "$date": "2021-12-13T05:39:20.000Z" + }, + "end": { + "$date": "2021-12-13T05:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6c635dc4-7a64-44c7-ab75-ebbb00030039", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T05:42:23.000Z" + }, + "end": { + "$date": "2021-12-13T06:07:13.000Z" + }, + "events": [ + { + "uuid": "fd7d7c7e-7213-45b6-9f86-ba4a11edf903", + "start": { + "$date": "2021-12-13T05:42:23.000Z" + }, + "end": { + "$date": "2021-12-13T06:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a283c04d-0ae8-48ff-9d9a-422a311de1ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-13T05:47:33.000Z" + }, + "end": { + "$date": "2021-12-13T07:23:18.000Z" + }, + "events": [ + { + "uuid": "b7a7c131-db2f-4894-8c28-09fc7b762dff", + "start": { + "$date": "2021-12-13T05:47:33.000Z" + }, + "end": { + "$date": "2021-12-13T07:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "aac3b392-70b9-43a5-a803-d73b289b72ff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-13T05:48:03.000Z" + }, + "end": { + "$date": "2021-12-13T06:13:02.000Z" + }, + "events": [ + { + "uuid": "9493c4af-a366-4667-9905-4157fd5d93a9", + "start": { + "$date": "2021-12-13T05:48:03.000Z" + }, + "end": { + "$date": "2021-12-13T06:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f792caf9-f47b-4dec-9e20-039ced231441", + "uuid": "1c516df2-3b17-4d1e-bf40-fb24caf00b41", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-13T05:49:13.000Z" + }, + "end": { + "$date": "2021-12-13T05:52:16.000Z" + }, + "events": [ + { + "uuid": "33fd5a7d-bf7e-4c71-8844-06212cc7261c", + "start": { + "$date": "2021-12-13T05:49:13.000Z" + }, + "end": { + "$date": "2021-12-13T05:52:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "71171f03-eae4-462d-bcfb-b210386dd8e8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-13T06:10:44.000Z" + }, + "end": { + "$date": "2021-12-13T07:25:14.000Z" + }, + "events": [ + { + "uuid": "16e8ca4c-e924-428b-b118-72da2373506e", + "start": { + "$date": "2021-12-13T06:10:44.000Z" + }, + "end": { + "$date": "2021-12-13T07:25:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f5673fb9-6725-482e-bb23-ab70540b60cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T06:16:23.000Z" + }, + "end": { + "$date": "2021-12-13T06:51:59.000Z" + }, + "events": [ + { + "uuid": "30e870e0-cc62-43ae-94e2-e3135342bfb5", + "start": { + "$date": "2021-12-13T06:16:23.000Z" + }, + "end": { + "$date": "2021-12-13T06:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dba5449a-22a4-4b26-9d78-9362fbfa09e5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-13T06:20:37.000Z" + }, + "end": { + "$date": "2021-12-13T06:47:01.000Z" + }, + "events": [ + { + "uuid": "0a57132b-cdf1-415d-be06-4faf6accfa25", + "start": { + "$date": "2021-12-13T06:20:37.000Z" + }, + "end": { + "$date": "2021-12-13T06:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "12411488-a54b-4ac5-b4d6-bd82d9a42039", + "uuid": "0c68db37-9e36-4cd6-bb73-d9c24dceb8c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T06:32:10.000Z" + }, + "end": { + "$date": "2021-12-13T06:39:40.000Z" + }, + "events": [ + { + "uuid": "e77a3749-d667-46f9-95d0-edd5dff38151", + "start": { + "$date": "2021-12-13T06:32:10.000Z" + }, + "end": { + "$date": "2021-12-13T06:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5614d6ec-c70d-4ca5-90fa-cc7c5437f7bc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-13T06:49:26.000Z" + }, + "end": { + "$date": "2021-12-13T07:12:43.000Z" + }, + "events": [ + { + "uuid": "2b9b6d00-f118-4466-9700-6a70f860fee6", + "start": { + "$date": "2021-12-13T06:49:26.000Z" + }, + "end": { + "$date": "2021-12-13T07:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "92cc9cba-90e4-4650-bb93-4fc5e6f0dc3a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-13T07:18:46.000Z" + }, + "end": { + "$date": "2021-12-13T11:02:05.000Z" + }, + "events": [ + { + "uuid": "74fbfdbd-4cae-4fd8-a2ca-90b877d523ab", + "start": { + "$date": "2021-12-13T07:18:46.000Z" + }, + "end": { + "$date": "2021-12-13T11:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "24bdf8e6-f366-4c20-beba-4f928ab313f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T22:19:33.000Z" + }, + "end": { + "$date": "2021-12-13T22:29:24.000Z" + }, + "events": [ + { + "uuid": "bb2ee5c4-5502-48c7-89ab-6a9e5d94924a", + "start": { + "$date": "2021-12-13T22:19:33.000Z" + }, + "end": { + "$date": "2021-12-13T22:29:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "01a4f1ff-b1a1-44bb-a210-5380cdb3238c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-13T22:33:04.000Z" + }, + "end": { + "$date": "2021-12-13T22:39:15.000Z" + }, + "events": [ + { + "uuid": "4bc9ecf1-94fc-4318-a884-a4b313aa2769", + "start": { + "$date": "2021-12-13T22:33:04.000Z" + }, + "end": { + "$date": "2021-12-13T22:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "6bbc5a50-881e-43b1-9768-ed2092f97e09", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-14T07:34:12.000Z" + }, + "end": { + "$date": "2021-12-14T07:36:18.000Z" + }, + "events": [ + { + "uuid": "e54ed63e-570d-4226-a669-a28989c9cfb6", + "start": { + "$date": "2021-12-14T07:34:12.000Z" + }, + "end": { + "$date": "2021-12-14T07:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "39b95ded-2792-4468-a321-648c0e085957", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-13T22:42:24.000Z" + }, + "end": { + "$date": "2021-12-14T01:57:40.000Z" + }, + "events": [ + { + "uuid": "92c2d466-d1e1-4d4c-8e10-86cbf6b6fe9e", + "start": { + "$date": "2021-12-13T22:42:24.000Z" + }, + "end": { + "$date": "2021-12-14T01:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "3b369fd8-b3ff-47cc-9ab9-ce83fadca47f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-13T23:38:33.000Z" + }, + "end": { + "$date": "2021-12-14T00:58:13.000Z" + }, + "events": [ + { + "uuid": "ea4159be-1d41-44c9-bbe7-91cfc4b72713", + "start": { + "$date": "2021-12-13T23:38:33.000Z" + }, + "end": { + "$date": "2021-12-14T00:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d9f0e75b-ce5a-4449-a3e0-9fb8f8ce04aa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-14T00:42:36.000Z" + }, + "end": { + "$date": "2021-12-14T02:46:47.000Z" + }, + "events": [ + { + "uuid": "986743d7-87eb-4209-a024-90766d129613", + "start": { + "$date": "2021-12-14T00:42:36.000Z" + }, + "end": { + "$date": "2021-12-14T02:18:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "43ea23ad-769e-4d05-96fe-6927b9b62aa3", + "start": { + "$date": "2021-12-14T02:18:36.000Z" + }, + "end": { + "$date": "2021-12-14T02:21:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09dfb672-b617-4e8e-a40a-0a8c79dce590", + "start": { + "$date": "2021-12-14T02:21:36.000Z" + }, + "end": { + "$date": "2021-12-14T02:46:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52f72881-2ee0-4688-8876-2c3d3606ad0f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T01:01:26.000Z" + }, + "end": { + "$date": "2021-12-14T01:03:42.000Z" + }, + "events": [ + { + "uuid": "fcfffdac-9ca6-40e6-82a5-897bd22fd7f8", + "start": { + "$date": "2021-12-14T01:01:26.000Z" + }, + "end": { + "$date": "2021-12-14T01:03:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f7b7610-7073-4f94-b47a-a6ccb961c1e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T01:07:35.000Z" + }, + "end": { + "$date": "2021-12-14T01:28:16.000Z" + }, + "events": [ + { + "uuid": "c35f644f-6aec-4efd-b965-ad4b3c8cee67", + "start": { + "$date": "2021-12-14T01:07:35.000Z" + }, + "end": { + "$date": "2021-12-14T01:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09da0f60-98f1-4917-9683-ec291ef7a378", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T02:08:29.000Z" + }, + "end": { + "$date": "2021-12-14T02:21:44.000Z" + }, + "events": [ + { + "uuid": "1cb8b4cd-553e-40d0-b650-d65bc284c7e0", + "start": { + "$date": "2021-12-14T02:08:29.000Z" + }, + "end": { + "$date": "2021-12-14T02:19:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4aa3e7a2-393d-437a-81ae-5d128d829f93", + "start": { + "$date": "2021-12-14T02:19:29.000Z" + }, + "end": { + "$date": "2021-12-14T02:44:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f518da1f-7d11-442c-af7a-fa5a7ece872f", + "start": { + "$date": "2021-12-14T02:44:29.000Z" + }, + "end": { + "$date": "2021-12-14T02:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b811d611-2615-4ddf-904c-861e4002a5d7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-14T02:00:16.000Z" + }, + "end": { + "$date": "2021-12-14T04:16:32.000Z" + }, + "events": [ + { + "uuid": "0ff7efac-505f-4ea7-9f39-a18456a5cbb5", + "start": { + "$date": "2021-12-14T02:00:16.000Z" + }, + "end": { + "$date": "2021-12-14T04:16:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cd594699-f07a-4007-a5f9-6ae2697adbd7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-14T01:54:39.000Z" + }, + "end": { + "$date": "2021-12-14T03:10:56.000Z" + }, + "events": [ + { + "uuid": "bb6a1f60-6685-431e-b7d1-b17bee564a8d", + "start": { + "$date": "2021-12-14T01:54:39.000Z" + }, + "end": { + "$date": "2021-12-14T03:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d417f8f-44fb-4037-b39e-e5b1e8a3f575", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-14T02:14:59.000Z" + }, + "end": { + "$date": "2021-12-14T02:42:15.000Z" + }, + "events": [ + { + "uuid": "6e2ba81a-a597-439f-aaf2-08967dc1d3da", + "start": { + "$date": "2021-12-14T02:14:59.000Z" + }, + "end": { + "$date": "2021-12-14T02:42:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9b3900d-8512-4ef5-b2ac-da7bff5f5a47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T02:22:54.000Z" + }, + "end": { + "$date": "2021-12-14T02:37:10.000Z" + }, + "events": [ + { + "uuid": "fc162a7c-84b2-413f-8329-6eecb4c26050", + "start": { + "$date": "2021-12-14T02:22:54.000Z" + }, + "end": { + "$date": "2021-12-14T02:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "0dfb9404-8ba6-4924-82af-e1c1f62ce6e9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-14T02:29:32.000Z" + }, + "end": { + "$date": "2021-12-14T04:12:44.000Z" + }, + "events": [ + { + "uuid": "ec732ee9-073c-4ecb-9bd1-fea269e1c889", + "start": { + "$date": "2021-12-14T02:29:32.000Z" + }, + "end": { + "$date": "2021-12-14T04:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4603bb48-13f6-458d-bd76-7b778f19b9ec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T02:41:11.000Z" + }, + "end": { + "$date": "2021-12-14T03:01:16.000Z" + }, + "events": [ + { + "uuid": "404c4240-cee2-4fc8-babe-24ed4b88f5c2", + "start": { + "$date": "2021-12-14T02:41:11.000Z" + }, + "end": { + "$date": "2021-12-14T03:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7a0bfc7b-c74f-4c94-8133-5aa8b3095e6f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-14T02:50:53.000Z" + }, + "end": { + "$date": "2021-12-14T04:06:57.000Z" + }, + "events": [ + { + "uuid": "9c43390d-5757-4594-bee4-a2e70a460d9a", + "start": { + "$date": "2021-12-14T02:50:53.000Z" + }, + "end": { + "$date": "2021-12-14T04:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50982c0c-a656-45b4-a164-ea3a89ace958", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-14T03:07:49.000Z" + }, + "end": { + "$date": "2021-12-14T03:39:58.000Z" + }, + "events": [ + { + "uuid": "abe0947f-0ce1-4db0-aac5-904424702fee", + "start": { + "$date": "2021-12-14T03:07:49.000Z" + }, + "end": { + "$date": "2021-12-14T03:39:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e7f8bf59-e73e-4471-8149-a752047a93db", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T03:01:47.000Z" + }, + "end": { + "$date": "2021-12-14T03:11:34.000Z" + }, + "events": [ + { + "uuid": "9084b84d-ede9-47aa-9cee-a6536cecdf31", + "start": { + "$date": "2021-12-14T03:01:47.000Z" + }, + "end": { + "$date": "2021-12-14T03:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c7f93d90-9d62-40e7-97e1-e176ceff8bb8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-14T00:31:15.000Z" + }, + "end": { + "$date": "2021-12-14T06:10:47.000Z" + }, + "events": [ + { + "uuid": "06b411f5-29bf-4b32-be65-91e7f48829a9", + "start": { + "$date": "2021-12-14T00:31:15.000Z" + }, + "end": { + "$date": "2021-12-14T06:10:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "16e34114-c12f-4ba6-8c66-57a2c616ca21", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-14T03:12:14.000Z" + }, + "end": { + "$date": "2021-12-14T03:17:11.000Z" + }, + "events": [ + { + "uuid": "04ee87df-d54e-41a7-95b1-5eede350f13e", + "start": { + "$date": "2021-12-14T03:12:14.000Z" + }, + "end": { + "$date": "2021-12-14T03:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "9712fb59-dd7e-4d7a-8145-cc09f61721c8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-14T03:44:38.000Z" + }, + "end": { + "$date": "2021-12-14T04:43:10.000Z" + }, + "events": [ + { + "uuid": "c63bedfa-3b6d-4e5a-8307-6cfbbbb5e2e5", + "start": { + "$date": "2021-12-14T03:44:38.000Z" + }, + "end": { + "$date": "2021-12-14T04:43:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acfff92a-ce31-443f-b40a-57bd9846ea49", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-14T03:49:46.000Z" + }, + "end": { + "$date": "2021-12-14T04:11:49.000Z" + }, + "events": [ + { + "uuid": "7fd1ae8e-c6e9-4249-bae5-9dc7fc7b8add", + "start": { + "$date": "2021-12-14T03:49:46.000Z" + }, + "end": { + "$date": "2021-12-14T04:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "918491dd-fa7a-4dd4-9f6f-9c460156d3e1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-14T04:13:49.000Z" + }, + "end": { + "$date": "2021-12-14T04:36:51.000Z" + }, + "events": [ + { + "uuid": "4740cf09-ddb8-46a3-930d-7394cbd4d9c2", + "start": { + "$date": "2021-12-14T04:13:49.000Z" + }, + "end": { + "$date": "2021-12-14T04:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "af8417cc-475e-4ef0-af27-dab9878dfdb9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-14T04:20:01.000Z" + }, + "end": { + "$date": "2021-12-14T05:19:16.000Z" + }, + "events": [ + { + "uuid": "1cc6b55d-256e-43ff-b1ca-1b11bc928e5f", + "start": { + "$date": "2021-12-14T04:20:01.000Z" + }, + "end": { + "$date": "2021-12-14T05:19:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "28bbe3e4-778e-4b01-8459-00f9f60d7e91", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-14T04:22:11.000Z" + }, + "end": { + "$date": "2021-12-14T05:19:19.000Z" + }, + "events": [ + { + "uuid": "b8f547fb-edb5-46c0-9438-df5c461c2dcd", + "start": { + "$date": "2021-12-14T04:22:11.000Z" + }, + "end": { + "$date": "2021-12-14T05:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c80d82e2-3dfe-4c60-b669-51c13163b0a1", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-14T04:23:28.000Z" + }, + "end": { + "$date": "2021-12-14T05:14:11.000Z" + }, + "events": [ + { + "uuid": "71ad3b9f-8df8-4a13-8aa0-5cc06944b329", + "start": { + "$date": "2021-12-14T04:23:28.000Z" + }, + "end": { + "$date": "2021-12-14T05:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cd450dd-7b83-44d8-a911-24e5875d19e0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-14T05:05:49.000Z" + }, + "end": { + "$date": "2021-12-14T05:40:52.000Z" + }, + "events": [ + { + "uuid": "41124eab-63ab-4ffa-8c71-78fa18b0eae1", + "start": { + "$date": "2021-12-14T05:05:49.000Z" + }, + "end": { + "$date": "2021-12-14T05:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "04078f37-17d7-4cda-a2a6-5bc32bb16329", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-14T04:56:15.000Z" + }, + "end": { + "$date": "2021-12-14T05:21:55.000Z" + }, + "events": [ + { + "uuid": "8621e664-a1b0-4763-abd0-ebf1c620b00a", + "start": { + "$date": "2021-12-14T04:56:15.000Z" + }, + "end": { + "$date": "2021-12-14T05:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5343ca75-1e2f-4f13-a442-1e74cb4ead75", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-14T05:02:26.000Z" + }, + "end": { + "$date": "2021-12-14T05:10:18.000Z" + }, + "events": [ + { + "uuid": "bd856782-3cd6-4b86-a090-251d937bd08e", + "start": { + "$date": "2021-12-14T05:02:26.000Z" + }, + "end": { + "$date": "2021-12-14T05:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "b2f01cbe-7109-466f-9f7a-7df1e53b4a67", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-14T05:07:29.000Z" + }, + "end": { + "$date": "2021-12-14T05:12:40.000Z" + }, + "events": [ + { + "uuid": "11a1407b-a170-4187-8678-2fce691319c6", + "start": { + "$date": "2021-12-14T05:07:29.000Z" + }, + "end": { + "$date": "2021-12-14T05:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e70568f7-17c7-4104-97bd-038045ad745c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-14T05:14:34.000Z" + }, + "end": { + "$date": "2021-12-14T07:21:24.000Z" + }, + "events": [ + { + "uuid": "754872dd-ec94-4656-b092-eead2a5f466e", + "start": { + "$date": "2021-12-14T05:14:34.000Z" + }, + "end": { + "$date": "2021-12-14T07:21:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3a421591-a119-4b51-ad29-a440cdf9de9d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-14T05:20:52.000Z" + }, + "end": { + "$date": "2021-12-14T07:27:37.000Z" + }, + "events": [ + { + "uuid": "3c220e05-6bca-4633-869d-0a46a52e7443", + "start": { + "$date": "2021-12-14T05:20:52.000Z" + }, + "end": { + "$date": "2021-12-14T07:27:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1dded4fb-227d-45b7-9821-7153f25c7833", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-14T05:21:10.000Z" + }, + "end": { + "$date": "2021-12-14T07:59:32.000Z" + }, + "events": [ + { + "uuid": "14a3ea0b-bef9-49db-9c80-0bd64052ce6c", + "start": { + "$date": "2021-12-14T05:21:10.000Z" + }, + "end": { + "$date": "2021-12-14T07:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bb89c6b3-afd8-40f6-bcf9-8da2e59fd67a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-14T05:22:05.000Z" + }, + "end": { + "$date": "2021-12-14T07:28:21.000Z" + }, + "events": [ + { + "uuid": "033aa540-7710-4693-b3e0-166b5b4c982d", + "start": { + "$date": "2021-12-14T05:22:05.000Z" + }, + "end": { + "$date": "2021-12-14T07:28:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79b7c368-c0f4-49aa-ac3e-329f587dddd4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-14T06:17:54.000Z" + }, + "end": { + "$date": "2021-12-14T06:17:54.000Z" + }, + "events": [ + { + "uuid": "9dcfca5c-7359-47b7-9913-b3380e9f185e", + "start": { + "$date": "2021-12-14T06:17:54.000Z" + }, + "end": { + "$date": "2021-12-14T06:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "7faee154-2184-49ab-8d72-2983a28c2622", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-14T05:53:24.000Z" + }, + "end": { + "$date": "2021-12-14T07:16:51.000Z" + }, + "events": [ + { + "uuid": "21cfc9e1-1deb-4069-80c3-6f754168aab4", + "start": { + "$date": "2021-12-14T05:53:24.000Z" + }, + "end": { + "$date": "2021-12-14T07:16:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51a7c681-3c9c-4fee-8cd8-54d24167adc4", + "uuid": "23ad83dc-fd7a-4113-99c2-e896c694ab2f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-14T07:28:01.000Z" + }, + "end": { + "$date": "2021-12-14T07:59:17.000Z" + }, + "events": [ + { + "uuid": "253ad3cd-74bd-4180-954b-bb08fe466bb9", + "start": { + "$date": "2021-12-14T07:28:01.000Z" + }, + "end": { + "$date": "2021-12-14T07:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9b41d295-c456-43af-a1bb-86e1f2f5a54f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-14T07:59:38.000Z" + }, + "end": { + "$date": "2021-12-14T08:53:45.000Z" + }, + "events": [ + { + "uuid": "ad06c9c8-ebb1-4f67-9e81-b94e619cacd7", + "start": { + "$date": "2021-12-14T07:59:38.000Z" + }, + "end": { + "$date": "2021-12-14T08:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ac000f01-6275-4fe0-b0e2-ca5563385f4d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-14T11:19:43.000Z" + }, + "end": { + "$date": "2021-12-14T12:39:02.000Z" + }, + "events": [ + { + "uuid": "a25f9c01-481a-4167-acb5-20f606353a88", + "start": { + "$date": "2021-12-14T11:19:43.000Z" + }, + "end": { + "$date": "2021-12-14T12:39:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "47679381-729d-471f-9fc7-e040b855f381", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-14T16:14:33.000Z" + }, + "end": { + "$date": "2021-12-14T16:49:24.000Z" + }, + "events": [ + { + "uuid": "d8f03ef0-85fa-4a85-a366-0b88cf60fea0", + "start": { + "$date": "2021-12-14T16:14:33.000Z" + }, + "end": { + "$date": "2021-12-14T16:49:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "4aacac29-db04-4d98-bddf-ab59c5434b45", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-14T18:45:28.000Z" + }, + "end": { + "$date": "2021-12-14T19:03:59.000Z" + }, + "events": [ + { + "uuid": "20e2ec15-6786-437d-9eef-b6d84bf3ca54", + "start": { + "$date": "2021-12-14T18:45:28.000Z" + }, + "end": { + "$date": "2021-12-14T19:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5c856ecc-a1e2-4f18-b31c-7fb30d188bab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-14T18:46:58.000Z" + }, + "end": { + "$date": "2021-12-14T20:47:07.000Z" + }, + "events": [ + { + "uuid": "e4b5a5f1-8b9b-40a1-81cb-61db199de3af", + "start": { + "$date": "2021-12-14T18:46:58.000Z" + }, + "end": { + "$date": "2021-12-14T20:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a0a80deb-2689-40c8-a182-52ced9e9bc9c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-14T21:02:10.000Z" + }, + "end": { + "$date": "2021-12-14T23:28:16.000Z" + }, + "events": [ + { + "uuid": "08783c63-eb36-4848-8831-ff2378ec38a1", + "start": { + "$date": "2021-12-14T21:02:10.000Z" + }, + "end": { + "$date": "2021-12-14T21:46:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7c02a59-28e4-4ebf-8755-6e3f119d9529", + "start": { + "$date": "2021-12-14T21:46:10.000Z" + }, + "end": { + "$date": "2021-12-14T21:52:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "35d46d27-59e4-4b90-bde1-7dcacedd1347", + "start": { + "$date": "2021-12-14T21:52:10.000Z" + }, + "end": { + "$date": "2021-12-14T22:19:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "238b1183-6b6b-427f-8ebd-b966a82bf29c", + "start": { + "$date": "2021-12-14T22:19:10.000Z" + }, + "end": { + "$date": "2021-12-14T22:21:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b3d0fd18-5fb5-40a0-9848-b947b6fcd7e4", + "start": { + "$date": "2021-12-14T22:21:10.000Z" + }, + "end": { + "$date": "2021-12-14T23:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4aa1e342-266f-48cc-961e-9c2b355ae42b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-14T23:14:26.000Z" + }, + "end": { + "$date": "2021-12-14T23:16:56.000Z" + }, + "events": [ + { + "uuid": "43ad07f3-97e2-46cb-9ff5-e6d2ee431ead", + "start": { + "$date": "2021-12-14T23:14:26.000Z" + }, + "end": { + "$date": "2021-12-14T23:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13905b0b-3ae6-468b-982d-d65eb76413ce", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-14T23:23:10.000Z" + }, + "end": { + "$date": "2021-12-14T23:55:33.000Z" + }, + "events": [ + { + "uuid": "02f2197b-9370-49ec-a292-307d65bde491", + "start": { + "$date": "2021-12-14T23:23:10.000Z" + }, + "end": { + "$date": "2021-12-14T23:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cab3eeab-36fe-4823-8798-1a0c7952c793", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-14T23:28:30.000Z" + }, + "end": { + "$date": "2021-12-14T23:30:36.000Z" + }, + "events": [ + { + "uuid": "5a3353e6-82c5-4574-9107-db84c0c07e55", + "start": { + "$date": "2021-12-14T23:28:30.000Z" + }, + "end": { + "$date": "2021-12-14T23:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b49c9096-a56b-44a5-be1e-8cb038a6a832", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-14T23:30:46.000Z" + }, + "end": { + "$date": "2021-12-15T01:10:36.000Z" + }, + "events": [ + { + "uuid": "9ae1e090-3c86-4611-8014-7f0767e4bd46", + "start": { + "$date": "2021-12-14T23:30:46.000Z" + }, + "end": { + "$date": "2021-12-15T01:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "15ac238a-2e15-46f7-a2c5-358dfdc65ef2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-14T23:37:56.000Z" + }, + "end": { + "$date": "2021-12-15T00:45:48.000Z" + }, + "events": [ + { + "uuid": "67bd82b4-ed72-4e1f-ad10-9d33acc350da", + "start": { + "$date": "2021-12-14T23:37:56.000Z" + }, + "end": { + "$date": "2021-12-15T00:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98acbb3d-0fcc-43e1-9c4f-f0e9969ac9cb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-14T23:56:36.000Z" + }, + "end": { + "$date": "2021-12-15T00:03:36.000Z" + }, + "events": [ + { + "uuid": "64ceaff6-6ce4-42f5-b43d-118b14223b82", + "start": { + "$date": "2021-12-14T23:56:36.000Z" + }, + "end": { + "$date": "2021-12-15T00:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "307026f7-e498-4c44-b4cf-6d4e765c9b52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-15T00:16:55.000Z" + }, + "end": { + "$date": "2021-12-15T00:52:27.000Z" + }, + "events": [ + { + "uuid": "ffae40e2-0a66-4812-ac26-d61cef6c1aca", + "start": { + "$date": "2021-12-15T00:16:55.000Z" + }, + "end": { + "$date": "2021-12-15T00:52:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6561caa5-18b6-431d-834d-3528579cc4cd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-15T00:20:25.000Z" + }, + "end": { + "$date": "2021-12-15T04:39:27.000Z" + }, + "events": [ + { + "uuid": "a2db5094-952f-4e0d-85cc-3073209eedc3", + "start": { + "$date": "2021-12-15T00:20:25.000Z" + }, + "end": { + "$date": "2021-12-15T04:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f058932f-6219-4a8c-909c-13b93925c60a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-15T00:47:06.000Z" + }, + "end": { + "$date": "2021-12-15T01:06:38.000Z" + }, + "events": [ + { + "uuid": "f2d6613d-d807-4cd8-8df8-49d1a038ce08", + "start": { + "$date": "2021-12-15T00:47:06.000Z" + }, + "end": { + "$date": "2021-12-15T01:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fcbddad7-295e-47a9-9877-6af4f15ba939", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-15T01:10:46.000Z" + }, + "end": { + "$date": "2021-12-15T02:18:20.000Z" + }, + "events": [ + { + "uuid": "dbf6aa4e-80c9-4bad-9e7b-12e70ee0c4c0", + "start": { + "$date": "2021-12-15T01:10:46.000Z" + }, + "end": { + "$date": "2021-12-15T02:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c939143c-cfc2-4428-848d-64b814ae7374", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-15T02:17:43.000Z" + }, + "end": { + "$date": "2021-12-15T03:28:30.000Z" + }, + "events": [ + { + "uuid": "050c425b-ec6d-4a3a-9c62-786279125f95", + "start": { + "$date": "2021-12-15T02:17:43.000Z" + }, + "end": { + "$date": "2021-12-15T03:28:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a979d59-3c0b-4156-afa5-31ba9ebee597", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-15T02:22:20.000Z" + }, + "end": { + "$date": "2021-12-15T02:39:30.000Z" + }, + "events": [ + { + "uuid": "59809d47-229c-4f55-833a-70e78b148192", + "start": { + "$date": "2021-12-15T02:22:20.000Z" + }, + "end": { + "$date": "2021-12-15T02:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da65ac06-03a2-4478-a2f5-755565288812", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-15T02:40:11.000Z" + }, + "end": { + "$date": "2021-12-15T02:54:16.000Z" + }, + "events": [ + { + "uuid": "2adb9964-c152-453c-8bb6-a82c053fc631", + "start": { + "$date": "2021-12-15T02:40:11.000Z" + }, + "end": { + "$date": "2021-12-15T02:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "19addbc4-d9e7-41f4-8771-081c222b8c8b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-15T02:53:55.000Z" + }, + "end": { + "$date": "2021-12-15T03:16:36.000Z" + }, + "events": [ + { + "uuid": "21f8a352-ced6-4d87-a1ea-a51481a6ea58", + "start": { + "$date": "2021-12-15T02:53:55.000Z" + }, + "end": { + "$date": "2021-12-15T03:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6d974825-7ce2-4e1f-930a-57fa0965838d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-15T03:24:32.000Z" + }, + "end": { + "$date": "2021-12-15T04:23:46.000Z" + }, + "events": [ + { + "uuid": "a9736d31-490f-4e90-b4ce-ce2f13a55863", + "start": { + "$date": "2021-12-15T03:24:32.000Z" + }, + "end": { + "$date": "2021-12-15T04:23:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "31df7da6-53d4-4146-8939-e26543ef0b42", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-15T03:29:42.000Z" + }, + "end": { + "$date": "2021-12-15T04:37:08.000Z" + }, + "events": [ + { + "uuid": "9f37a0da-ff3e-462a-8846-b582e89a77f7", + "start": { + "$date": "2021-12-15T03:29:42.000Z" + }, + "end": { + "$date": "2021-12-15T04:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "2a2cf98f-83d8-4931-ab9b-07066d6eb18b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-15T03:46:11.000Z" + }, + "end": { + "$date": "2021-12-15T04:37:04.000Z" + }, + "events": [ + { + "uuid": "a30d1e5a-fbcb-4f0e-9229-10bde98d8485", + "start": { + "$date": "2021-12-15T03:46:11.000Z" + }, + "end": { + "$date": "2021-12-15T04:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "9758b40e-c19b-4757-94d6-b7bff03a9f47", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-15T04:20:12.000Z" + }, + "end": { + "$date": "2021-12-15T06:06:30.000Z" + }, + "events": [ + { + "uuid": "3bef9b12-9246-4370-b873-ad286831b953", + "start": { + "$date": "2021-12-15T04:20:12.000Z" + }, + "end": { + "$date": "2021-12-15T06:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2023b76e-14ee-4693-93bf-489ba0549779", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-15T04:20:51.000Z" + }, + "end": { + "$date": "2021-12-15T04:35:28.000Z" + }, + "events": [ + { + "uuid": "c2333a9b-591e-4d44-af04-7240d19f7c53", + "start": { + "$date": "2021-12-15T04:20:51.000Z" + }, + "end": { + "$date": "2021-12-15T04:35:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0fa05a96-bd64-4cfa-98af-b4932f0af01a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-15T01:10:46.000Z" + }, + "end": { + "$date": "2021-12-15T07:25:16.000Z" + }, + "events": [ + { + "uuid": "1c8a01e7-eecc-4874-b6d1-2a2633aa0c8f", + "start": { + "$date": "2021-12-15T01:10:46.000Z" + }, + "end": { + "$date": "2021-12-15T07:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d3013310-1470-4827-a94c-704cf36fe243", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-15T04:23:47.000Z" + }, + "end": { + "$date": "2021-12-15T04:56:42.000Z" + }, + "events": [ + { + "uuid": "874fa84d-081f-4dd8-9821-f117cb553595", + "start": { + "$date": "2021-12-15T04:23:47.000Z" + }, + "end": { + "$date": "2021-12-15T04:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ec71985e-cec6-44c8-ab39-184477bc133b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-15T04:37:39.000Z" + }, + "end": { + "$date": "2021-12-15T07:58:25.000Z" + }, + "events": [ + { + "uuid": "c66b4ce5-28a7-4d29-b2a1-ace8711d46fa", + "start": { + "$date": "2021-12-15T04:37:39.000Z" + }, + "end": { + "$date": "2021-12-15T07:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c802620c-45ff-4040-b21a-99d45fbd2def", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-15T04:38:29.000Z" + }, + "end": { + "$date": "2021-12-15T07:54:54.000Z" + }, + "events": [ + { + "uuid": "ece20a2a-fdf8-4871-998d-4ffdf0c02536", + "start": { + "$date": "2021-12-15T04:38:29.000Z" + }, + "end": { + "$date": "2021-12-15T07:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9eb4a1d7-094c-4dd9-a79f-5a5e38a88b5c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-15T04:45:35.000Z" + }, + "end": { + "$date": "2021-12-15T05:06:03.000Z" + }, + "events": [ + { + "uuid": "58f26443-ebc6-4964-9fa2-40520c57f412", + "start": { + "$date": "2021-12-15T04:45:35.000Z" + }, + "end": { + "$date": "2021-12-15T05:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc564d5f-1ee4-45b8-8deb-7d7581a3b11e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-15T05:09:13.000Z" + }, + "end": { + "$date": "2021-12-15T05:29:41.000Z" + }, + "events": [ + { + "uuid": "47805d04-e4e3-4fa0-9cee-797e0bf55678", + "start": { + "$date": "2021-12-15T05:09:13.000Z" + }, + "end": { + "$date": "2021-12-15T05:29:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6579108-1bdb-46f2-b00b-eccbafee9de1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-15T05:16:10.000Z" + }, + "end": { + "$date": "2021-12-15T05:50:47.000Z" + }, + "events": [ + { + "uuid": "c386a7dc-ea2c-4bc1-8427-841fdee1e822", + "start": { + "$date": "2021-12-15T05:16:10.000Z" + }, + "end": { + "$date": "2021-12-15T05:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f68a9e2-963b-4332-a692-2dd2dbd149a7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-15T05:41:16.000Z" + }, + "end": { + "$date": "2021-12-15T06:08:41.000Z" + }, + "events": [ + { + "uuid": "bcced63a-49d9-48a2-bac8-00093e37c9b1", + "start": { + "$date": "2021-12-15T05:41:16.000Z" + }, + "end": { + "$date": "2021-12-15T06:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1679b6fb-92d1-4044-bffb-3b08b6254be4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-15T05:41:16.000Z" + }, + "end": { + "$date": "2021-12-15T06:08:45.000Z" + }, + "events": [ + { + "uuid": "2c12e8a8-af73-470c-85d1-aa082bdfe4c1", + "start": { + "$date": "2021-12-15T05:41:16.000Z" + }, + "end": { + "$date": "2021-12-15T06:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0c00786b-a2f5-4ef9-afb1-51a4b005d92e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-15T05:46:09.000Z" + }, + "end": { + "$date": "2021-12-15T07:55:22.000Z" + }, + "events": [ + { + "uuid": "f24f9701-f01d-4a6b-ab65-f933f2538196", + "start": { + "$date": "2021-12-15T05:46:09.000Z" + }, + "end": { + "$date": "2021-12-15T07:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5be5b4fa-2f89-4688-b7cd-0c9f3c601709", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-15T05:55:42.000Z" + }, + "end": { + "$date": "2021-12-15T06:25:29.000Z" + }, + "events": [ + { + "uuid": "ac871f86-ddc2-45dc-801d-59f767679cee", + "start": { + "$date": "2021-12-15T05:55:42.000Z" + }, + "end": { + "$date": "2021-12-15T06:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9cfff2b-46a0-4ecf-8549-cff26eb6b27f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-15T06:14:36.000Z" + }, + "end": { + "$date": "2021-12-15T06:50:22.000Z" + }, + "events": [ + { + "uuid": "c8860ab5-73ac-4827-a528-7573479338df", + "start": { + "$date": "2021-12-15T06:14:36.000Z" + }, + "end": { + "$date": "2021-12-15T06:50:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c93305ce-186e-4d9a-9013-a307ca602c0e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-15T06:14:38.000Z" + }, + "end": { + "$date": "2021-12-15T06:50:29.000Z" + }, + "events": [ + { + "uuid": "2d62c2d9-4a68-4e62-94ff-e9cb13c5f09a", + "start": { + "$date": "2021-12-15T06:14:38.000Z" + }, + "end": { + "$date": "2021-12-15T06:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "790a2b39-130a-49a2-9d88-50064a1d5f89", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-15T06:14:28.000Z" + }, + "end": { + "$date": "2021-12-15T06:50:18.000Z" + }, + "events": [ + { + "uuid": "8a76f8c2-fabf-4d52-ad9d-07da4a722362", + "start": { + "$date": "2021-12-15T06:14:28.000Z" + }, + "end": { + "$date": "2021-12-15T06:50:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d20b0f3a-5872-47f1-a703-f6fda130666f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-15T06:56:03.000Z" + }, + "end": { + "$date": "2021-12-15T07:17:43.000Z" + }, + "events": [ + { + "uuid": "d53655bd-0145-4009-ad76-b7a5251aa936", + "start": { + "$date": "2021-12-15T06:56:03.000Z" + }, + "end": { + "$date": "2021-12-15T07:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb238c0a-55ab-4f3e-8b9d-e353a4856735", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-15T06:56:00.000Z" + }, + "end": { + "$date": "2021-12-15T07:17:45.000Z" + }, + "events": [ + { + "uuid": "0b39e55a-8e9a-4acd-a936-2b41ef27134d", + "start": { + "$date": "2021-12-15T06:56:00.000Z" + }, + "end": { + "$date": "2021-12-15T07:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "160a96d1-0e42-49ec-9de0-4ed8d42ca3ef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-15T06:55:59.000Z" + }, + "end": { + "$date": "2021-12-15T07:17:39.000Z" + }, + "events": [ + { + "uuid": "f0853ced-5014-43cc-9193-3d30c4b8ed47", + "start": { + "$date": "2021-12-15T06:55:59.000Z" + }, + "end": { + "$date": "2021-12-15T07:17:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fc13afb7-864e-4c4d-a4bf-9ddac3d82516", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-15T08:16:21.000Z" + }, + "end": { + "$date": "2021-12-15T12:59:43.000Z" + }, + "events": [ + { + "uuid": "e44128a1-419f-4329-a7b8-acab5c010fdd", + "start": { + "$date": "2021-12-15T08:16:21.000Z" + }, + "end": { + "$date": "2021-12-15T12:59:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "810ac126-c134-4d29-aede-45eadecfd644", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-15T14:15:17.000Z" + }, + "end": { + "$date": "2021-12-15T14:51:23.000Z" + }, + "events": [ + { + "uuid": "81f77e3f-8a3c-4e1f-855f-0a9cb208313f", + "start": { + "$date": "2021-12-15T14:15:17.000Z" + }, + "end": { + "$date": "2021-12-15T14:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a5dfbaf4-9ea1-4dde-ab3d-b1aa2c834553", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-15T19:59:01.000Z" + }, + "end": { + "$date": "2021-12-15T20:12:18.000Z" + }, + "events": [ + { + "uuid": "5a47158e-6291-4eaf-9297-13d1c7c27578", + "start": { + "$date": "2021-12-15T19:59:01.000Z" + }, + "end": { + "$date": "2021-12-15T20:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "6fb4f2ec-8d53-443b-81e8-d46ed6af780f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-15T22:15:47.000Z" + }, + "end": { + "$date": "2021-12-15T22:30:49.000Z" + }, + "events": [ + { + "uuid": "e827b2b7-2a41-4755-a89e-1dda3e251634", + "start": { + "$date": "2021-12-15T22:15:47.000Z" + }, + "end": { + "$date": "2021-12-15T22:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "461ca4d4-abf0-4ec7-974a-e046a4e15da1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-15T22:31:30.000Z" + }, + "end": { + "$date": "2021-12-15T23:37:53.000Z" + }, + "events": [ + { + "uuid": "eb3285fb-27cb-4601-9ef5-210013ca8757", + "start": { + "$date": "2021-12-15T22:31:30.000Z" + }, + "end": { + "$date": "2021-12-15T23:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "7b59a8b6-3245-4eb0-aa21-18d518c6c9ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-15T22:31:37.000Z" + }, + "end": { + "$date": "2021-12-15T23:42:40.000Z" + }, + "events": [ + { + "uuid": "322a8a40-8b55-4ba6-a81f-0db4a80d35f9", + "start": { + "$date": "2021-12-15T22:31:37.000Z" + }, + "end": { + "$date": "2021-12-15T23:42:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4ad2c97b-1a43-43e0-988d-6ce1092e956a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-15T23:31:22.000Z" + }, + "end": { + "$date": "2021-12-16T01:33:47.000Z" + }, + "events": [ + { + "uuid": "ff1ad907-eecc-47ab-8bcb-9a8664f0065f", + "start": { + "$date": "2021-12-15T23:31:22.000Z" + }, + "end": { + "$date": "2021-12-16T01:33:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eddcf3f-b0af-460a-a09b-734abe408dae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T00:12:40.000Z" + }, + "end": { + "$date": "2021-12-16T00:26:25.000Z" + }, + "events": [ + { + "uuid": "3a19e220-856a-4dd8-995a-0c7e76729523", + "start": { + "$date": "2021-12-16T00:12:40.000Z" + }, + "end": { + "$date": "2021-12-16T00:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a46c51ba-0ce6-4e3b-ba6d-d4094ca47f29", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-16T00:21:16.000Z" + }, + "end": { + "$date": "2021-12-16T00:32:33.000Z" + }, + "events": [ + { + "uuid": "fe8f58cb-d376-4a44-b159-4c41a4534f07", + "start": { + "$date": "2021-12-16T00:21:16.000Z" + }, + "end": { + "$date": "2021-12-16T00:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cf2b9e2-1b8d-401e-b3a1-4b91a01a80cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T00:28:01.000Z" + }, + "end": { + "$date": "2021-12-16T00:44:00.000Z" + }, + "events": [ + { + "uuid": "37fc768a-aecf-4370-aa18-d7fc94c6bb28", + "start": { + "$date": "2021-12-16T00:28:01.000Z" + }, + "end": { + "$date": "2021-12-16T00:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a209eb7-2b32-4a34-9c28-fb77e229c3c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T00:49:37.000Z" + }, + "end": { + "$date": "2021-12-16T01:05:02.000Z" + }, + "events": [ + { + "uuid": "cdf62bc9-72a7-458b-9a70-0411fed738ef", + "start": { + "$date": "2021-12-16T00:49:37.000Z" + }, + "end": { + "$date": "2021-12-16T01:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0ac50734-7e73-4d21-ac70-6d0134c5aa90", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-16T01:01:10.000Z" + }, + "end": { + "$date": "2021-12-16T01:42:32.000Z" + }, + "events": [ + { + "uuid": "f46211c5-1d0f-44df-b47f-cac364a8b81b", + "start": { + "$date": "2021-12-16T01:01:10.000Z" + }, + "end": { + "$date": "2021-12-16T01:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "882a0400-2912-4d4e-9c6d-7800179865cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T01:13:39.000Z" + }, + "end": { + "$date": "2021-12-16T01:30:29.000Z" + }, + "events": [ + { + "uuid": "e76084b1-1fc5-488e-82ef-a20df343ea5f", + "start": { + "$date": "2021-12-16T01:13:39.000Z" + }, + "end": { + "$date": "2021-12-16T01:30:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0cf4cef-7228-48e8-ab81-56829358aa69", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-16T01:19:34.000Z" + }, + "end": { + "$date": "2021-12-16T01:54:38.000Z" + }, + "events": [ + { + "uuid": "9fdc7a2d-75c3-44c7-a2bf-59ead96ec8c8", + "start": { + "$date": "2021-12-16T01:19:34.000Z" + }, + "end": { + "$date": "2021-12-16T01:54:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecba64e5-6b47-4096-b1e0-d5a4ee446623", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T01:34:14.000Z" + }, + "end": { + "$date": "2021-12-16T01:45:04.000Z" + }, + "events": [ + { + "uuid": "61de732f-8ffe-40d1-8ad9-811652a9589d", + "start": { + "$date": "2021-12-16T01:34:14.000Z" + }, + "end": { + "$date": "2021-12-16T01:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "89522f89-738b-459a-a5a0-110c071893fb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T01:33:57.000Z" + }, + "end": { + "$date": "2021-12-16T02:48:15.000Z" + }, + "events": [ + { + "uuid": "2c091388-6375-4e19-95bd-a25c581b480f", + "start": { + "$date": "2021-12-16T01:33:57.000Z" + }, + "end": { + "$date": "2021-12-16T02:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c69d768c-ff90-4e34-884e-8c7fdc39b991", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-16T01:55:46.000Z" + }, + "end": { + "$date": "2021-12-16T02:15:06.000Z" + }, + "events": [ + { + "uuid": "44d05bd9-0560-4419-ae72-3b8811221bb4", + "start": { + "$date": "2021-12-16T01:55:46.000Z" + }, + "end": { + "$date": "2021-12-16T02:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4691d694-6496-431a-9010-ea565074312c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T01:50:30.000Z" + }, + "end": { + "$date": "2021-12-16T02:07:35.000Z" + }, + "events": [ + { + "uuid": "c4a76de5-8435-48e0-a560-7deaf4eaba71", + "start": { + "$date": "2021-12-16T01:50:30.000Z" + }, + "end": { + "$date": "2021-12-16T02:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "f6a2c84b-3bb9-487b-a78e-b15fc9358451", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-16T01:56:43.000Z" + }, + "end": { + "$date": "2021-12-16T02:07:50.000Z" + }, + "events": [ + { + "uuid": "9517be2d-9a79-464a-9727-846cdd81f3e9", + "start": { + "$date": "2021-12-16T01:56:43.000Z" + }, + "end": { + "$date": "2021-12-16T02:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "ea5bd757-16e6-419d-92ef-998f49a0eb01", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-16T02:01:24.000Z" + }, + "end": { + "$date": "2021-12-16T06:20:08.000Z" + }, + "events": [ + { + "uuid": "be48c0eb-045d-4397-86a5-72c49321ef73", + "start": { + "$date": "2021-12-16T02:01:24.000Z" + }, + "end": { + "$date": "2021-12-16T06:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cdc6ae9-08db-412d-bdbf-37a9f4db4dcc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-16T02:05:39.000Z" + }, + "end": { + "$date": "2021-12-16T02:32:06.000Z" + }, + "events": [ + { + "uuid": "49888fa1-4311-4833-a77f-4bbe6631f489", + "start": { + "$date": "2021-12-16T02:05:39.000Z" + }, + "end": { + "$date": "2021-12-16T02:32:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01be7bfd-bfd6-41a0-986e-9cac5f9e62f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-16T02:15:11.000Z" + }, + "end": { + "$date": "2021-12-16T02:33:30.000Z" + }, + "events": [ + { + "uuid": "f6716c1e-f0a0-4257-839b-75a692a3e56e", + "start": { + "$date": "2021-12-16T02:15:11.000Z" + }, + "end": { + "$date": "2021-12-16T02:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdea037b-4772-4db6-8809-ea70988e8d4c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-16T02:17:21.000Z" + }, + "end": { + "$date": "2021-12-16T02:35:42.000Z" + }, + "events": [ + { + "uuid": "b1f7fe89-eba6-448d-be03-e6a98bc0c74b", + "start": { + "$date": "2021-12-16T02:17:21.000Z" + }, + "end": { + "$date": "2021-12-16T02:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b67ed1b1-8e01-4c3d-87d1-29a71617e86b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-16T02:39:03.000Z" + }, + "end": { + "$date": "2021-12-16T03:07:25.000Z" + }, + "events": [ + { + "uuid": "cac890a5-4dff-4e97-9bcb-2b53b23eef50", + "start": { + "$date": "2021-12-16T02:39:03.000Z" + }, + "end": { + "$date": "2021-12-16T03:07:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed633976-e4df-480c-9b19-9982e104d572", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-16T02:38:47.000Z" + }, + "end": { + "$date": "2021-12-16T02:58:53.000Z" + }, + "events": [ + { + "uuid": "4e09f8d5-18c1-4d7d-832a-b469b711874b", + "start": { + "$date": "2021-12-16T02:38:47.000Z" + }, + "end": { + "$date": "2021-12-16T02:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "099516a2-ff5f-4374-b1be-6a999c432be6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-16T03:01:03.000Z" + }, + "end": { + "$date": "2021-12-16T03:16:23.000Z" + }, + "events": [ + { + "uuid": "e97ba944-f8e8-4bcb-a824-c01705e54dae", + "start": { + "$date": "2021-12-16T03:01:03.000Z" + }, + "end": { + "$date": "2021-12-16T03:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "00db9196-c0d3-482c-a23d-63072f39cd9b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T03:02:22.000Z" + }, + "end": { + "$date": "2021-12-16T03:04:10.000Z" + }, + "events": [ + { + "uuid": "e186ff65-b1fd-4796-afdd-1dd32cf5c259", + "start": { + "$date": "2021-12-16T03:02:22.000Z" + }, + "end": { + "$date": "2021-12-16T03:04:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b8cec077-7982-4035-bedf-af273a710cc6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T03:04:41.000Z" + }, + "end": { + "$date": "2021-12-16T04:02:45.000Z" + }, + "events": [ + { + "uuid": "6e91b228-ddd4-44e0-bd06-12f2a06eb857", + "start": { + "$date": "2021-12-16T03:04:41.000Z" + }, + "end": { + "$date": "2021-12-16T03:26:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "351d5b8f-2bd8-4db9-afb3-f24791f1a714", + "start": { + "$date": "2021-12-16T03:26:41.000Z" + }, + "end": { + "$date": "2021-12-16T03:31:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0937047f-0542-4aee-bc94-13bc27829d99", + "start": { + "$date": "2021-12-16T03:31:41.000Z" + }, + "end": { + "$date": "2021-12-16T03:41:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2d9ea09-2ab6-4ead-8b06-e3f4acd7a904", + "start": { + "$date": "2021-12-16T03:41:41.000Z" + }, + "end": { + "$date": "2021-12-16T04:02:45.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8916e7e-fe0c-4ee6-9806-564b19fcfb46", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-16T03:13:16.000Z" + }, + "end": { + "$date": "2021-12-16T03:45:54.000Z" + }, + "events": [ + { + "uuid": "dd269118-f607-4b90-b0af-74a8a31c2c91", + "start": { + "$date": "2021-12-16T03:13:16.000Z" + }, + "end": { + "$date": "2021-12-16T03:45:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32899b30-64aa-4f23-8b0c-b3d32b5b010e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-16T03:18:48.000Z" + }, + "end": { + "$date": "2021-12-16T03:32:39.000Z" + }, + "events": [ + { + "uuid": "83b88b2d-ee76-41d6-bbb4-337bb9187acb", + "start": { + "$date": "2021-12-16T03:18:48.000Z" + }, + "end": { + "$date": "2021-12-16T03:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "9bb95215-ff2d-4501-b131-c16812f81a48", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-16T03:51:34.000Z" + }, + "end": { + "$date": "2021-12-16T04:27:08.000Z" + }, + "events": [ + { + "uuid": "22f0e76e-f42b-4def-a4b5-e5d116515939", + "start": { + "$date": "2021-12-16T03:51:34.000Z" + }, + "end": { + "$date": "2021-12-16T04:27:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c3d664ea-eb30-4407-b5af-9c721c6ac696", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T04:08:25.000Z" + }, + "end": { + "$date": "2021-12-16T07:18:58.000Z" + }, + "events": [ + { + "uuid": "45ec73c0-8df0-406c-a4d5-291b48ec73a9", + "start": { + "$date": "2021-12-16T04:08:25.000Z" + }, + "end": { + "$date": "2021-12-16T07:18:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "59f75a98-a15e-4efd-926b-03e18e086065", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-16T04:12:25.000Z" + }, + "end": { + "$date": "2021-12-16T05:39:21.000Z" + }, + "events": [ + { + "uuid": "6b02680e-a863-4fb6-a3fc-423207a6bbd3", + "start": { + "$date": "2021-12-16T04:12:25.000Z" + }, + "end": { + "$date": "2021-12-16T05:39:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ab9f3c90-b582-479b-8734-db1536fc064b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-16T04:12:45.000Z" + }, + "end": { + "$date": "2021-12-16T05:38:41.000Z" + }, + "events": [ + { + "uuid": "43f5f6bb-2090-4c96-8829-e20e41cbd6ea", + "start": { + "$date": "2021-12-16T04:12:45.000Z" + }, + "end": { + "$date": "2021-12-16T05:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "75c1bcaf-249d-44fd-a28a-247996fd84b1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-16T04:29:49.000Z" + }, + "end": { + "$date": "2021-12-16T04:31:28.000Z" + }, + "events": [ + { + "uuid": "68e31611-f4ad-4c9a-9efc-5a8465e86149", + "start": { + "$date": "2021-12-16T04:29:49.000Z" + }, + "end": { + "$date": "2021-12-16T04:31:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a314258d-48c9-43b8-bde2-81cfaf626a2e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-16T04:31:38.000Z" + }, + "end": { + "$date": "2021-12-16T05:50:21.000Z" + }, + "events": [ + { + "uuid": "fcbf20ee-681a-4090-8f4c-6a8bcd818f14", + "start": { + "$date": "2021-12-16T04:31:38.000Z" + }, + "end": { + "$date": "2021-12-16T05:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f2ee1660-5d09-4d0e-8ac5-95c84f8cf738", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-16T04:32:40.000Z" + }, + "end": { + "$date": "2021-12-16T05:07:24.000Z" + }, + "events": [ + { + "uuid": "dd2fd9f5-16e2-431c-885e-2ba8658aa180", + "start": { + "$date": "2021-12-16T04:32:40.000Z" + }, + "end": { + "$date": "2021-12-16T05:07:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2693c068-cbc0-4024-ac21-c5cb2066d587", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-16T05:07:26.000Z" + }, + "end": { + "$date": "2021-12-16T05:26:46.000Z" + }, + "events": [ + { + "uuid": "380e082e-9e86-43a3-9030-c2e741e54137", + "start": { + "$date": "2021-12-16T05:07:26.000Z" + }, + "end": { + "$date": "2021-12-16T05:26:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "b69270ee-078b-486d-92fa-16ad2aeababf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-16T05:56:46.000Z" + }, + "end": { + "$date": "2021-12-16T06:17:29.000Z" + }, + "events": [ + { + "uuid": "bd2e87d9-0e78-4327-9373-b1806f66148c", + "start": { + "$date": "2021-12-16T05:56:46.000Z" + }, + "end": { + "$date": "2021-12-16T06:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1da9d435-187d-4908-bb77-6ec6abb4ebd2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-16T06:19:05.000Z" + }, + "end": { + "$date": "2021-12-16T06:42:51.000Z" + }, + "events": [ + { + "uuid": "e98d3f05-19a8-438e-8967-d81e667bcd79", + "start": { + "$date": "2021-12-16T06:19:05.000Z" + }, + "end": { + "$date": "2021-12-16T06:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "89f27ee2-4122-46ac-80b1-a02f78e5f727", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-16T06:31:49.000Z" + }, + "end": { + "$date": "2021-12-16T07:33:08.000Z" + }, + "events": [ + { + "uuid": "42fc2795-7ee2-4f11-af0c-17e2980e8540", + "start": { + "$date": "2021-12-16T06:31:49.000Z" + }, + "end": { + "$date": "2021-12-16T07:33:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "216fb7b5-12be-4bf3-8f3e-27efa9e653a4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-16T06:45:36.000Z" + }, + "end": { + "$date": "2021-12-16T07:02:47.000Z" + }, + "events": [ + { + "uuid": "d0ece2eb-025f-4ebb-945b-c354b82d7752", + "start": { + "$date": "2021-12-16T06:45:36.000Z" + }, + "end": { + "$date": "2021-12-16T07:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "efefadb9-159d-4b90-abd4-574b53c544c5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-16T08:32:37.000Z" + }, + "end": { + "$date": "2021-12-16T11:54:31.000Z" + }, + "events": [ + { + "uuid": "c4f26ee9-cbb2-43c1-9a11-a75da793fa78", + "start": { + "$date": "2021-12-16T08:32:37.000Z" + }, + "end": { + "$date": "2021-12-16T11:54:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "340144d9-fd06-4f2a-88d3-7dd87fffdcdf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-16T09:03:37.000Z" + }, + "end": { + "$date": "2021-12-16T09:28:37.000Z" + }, + "events": [ + { + "uuid": "be41695b-017e-4682-a77c-9d2b300761d0", + "start": { + "$date": "2021-12-16T09:03:37.000Z" + }, + "end": { + "$date": "2021-12-16T09:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26cd33ac-e855-449a-971b-27adfdd0bd1e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-16T09:30:08.000Z" + }, + "end": { + "$date": "2021-12-16T09:59:53.000Z" + }, + "events": [ + { + "uuid": "17436259-b0b3-4005-9711-a4a105caf2b2", + "start": { + "$date": "2021-12-16T09:30:08.000Z" + }, + "end": { + "$date": "2021-12-16T09:59:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "d9644275-43a5-44f9-86bf-f63ca21086ab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2021-12-16T16:58:08.000Z" + }, + "end": { + "$date": "2021-12-16T17:55:24.000Z" + }, + "events": [ + { + "uuid": "d893f656-c574-4697-9b0a-8f6d1a8f8f2b", + "start": { + "$date": "2021-12-16T16:58:08.000Z" + }, + "end": { + "$date": "2021-12-16T17:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "853f9c51-922c-4add-bc90-0b3b41d5ae03", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T17:46:35.000Z" + }, + "end": { + "$date": "2021-12-16T17:52:25.000Z" + }, + "events": [ + { + "uuid": "eb597ffa-1c0d-488c-aae0-89399703b0c5", + "start": { + "$date": "2021-12-16T17:46:35.000Z" + }, + "end": { + "$date": "2021-12-16T17:52:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "78b25707-b179-4f64-b5c4-2d5def2812a4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T18:54:26.000Z" + }, + "end": { + "$date": "2021-12-16T19:23:07.000Z" + }, + "events": [ + { + "uuid": "d8fcf02f-b302-4729-9188-682ad6bd2fcf", + "start": { + "$date": "2021-12-16T18:54:26.000Z" + }, + "end": { + "$date": "2021-12-16T19:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e9e46d43-d397-420c-9237-0101211d7a0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-16T21:23:13.000Z" + }, + "end": { + "$date": "2021-12-17T03:38:10.000Z" + }, + "events": [ + { + "uuid": "b857ff6f-290e-4567-a2c9-9bcf4fdfabd5", + "start": { + "$date": "2021-12-16T21:23:13.000Z" + }, + "end": { + "$date": "2021-12-16T23:15:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2db99611-c64d-4613-872f-9ea32168ba52", + "start": { + "$date": "2021-12-16T23:15:13.000Z" + }, + "end": { + "$date": "2021-12-16T23:22:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "68eb30a4-e329-4872-bd6c-69c43b839cea", + "start": { + "$date": "2021-12-16T23:22:13.000Z" + }, + "end": { + "$date": "2021-12-17T00:56:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6abb598a-f614-442b-9be4-efc9be42ea24", + "start": { + "$date": "2021-12-17T00:56:13.000Z" + }, + "end": { + "$date": "2021-12-17T01:01:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c7cf6bf-0e2d-4315-9211-98a738b5099f", + "start": { + "$date": "2021-12-17T01:01:13.000Z" + }, + "end": { + "$date": "2021-12-17T01:11:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c88178d4-4fa6-4a42-8ec7-44d9ebb93f1a", + "start": { + "$date": "2021-12-17T01:11:13.000Z" + }, + "end": { + "$date": "2021-12-17T01:18:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b325c533-bb79-407c-84b6-37babbd88682", + "start": { + "$date": "2021-12-17T01:18:13.000Z" + }, + "end": { + "$date": "2021-12-17T01:49:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7930f0d7-22dc-47d7-972e-2c51c3817ebd", + "start": { + "$date": "2021-12-17T01:49:13.000Z" + }, + "end": { + "$date": "2021-12-17T02:31:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2187234-3d25-48f8-af32-deb7453f3328", + "start": { + "$date": "2021-12-17T02:31:13.000Z" + }, + "end": { + "$date": "2021-12-17T03:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aa9b4be5-9136-4d12-9731-eb1c8a5e7b14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-16T23:00:29.000Z" + }, + "end": { + "$date": "2021-12-17T00:11:08.000Z" + }, + "events": [ + { + "uuid": "fa6fd6f6-9b9d-44ba-a488-59f2c884946a", + "start": { + "$date": "2021-12-16T23:00:29.000Z" + }, + "end": { + "$date": "2021-12-17T00:11:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ed5a24d0-49af-4c3c-8417-77a70ac0255c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-16T23:14:17.000Z" + }, + "end": { + "$date": "2021-12-16T23:40:26.000Z" + }, + "events": [ + { + "uuid": "ea74e940-57d7-4715-879d-7433cd016d82", + "start": { + "$date": "2021-12-16T23:14:17.000Z" + }, + "end": { + "$date": "2021-12-16T23:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b78aaa14-4490-4ca4-8780-ec6708dee437", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-16T23:38:16.000Z" + }, + "end": { + "$date": "2021-12-17T00:11:21.000Z" + }, + "events": [ + { + "uuid": "82376e43-ec25-4236-8dec-557fe8ec6457", + "start": { + "$date": "2021-12-16T23:38:16.000Z" + }, + "end": { + "$date": "2021-12-17T00:11:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5074582b-1d16-4cbf-b6fe-14778da82ad7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T00:20:00.000Z" + }, + "end": { + "$date": "2021-12-17T00:45:12.000Z" + }, + "events": [ + { + "uuid": "f62dcbfd-0640-4aa3-bac2-d501794720cd", + "start": { + "$date": "2021-12-17T00:20:00.000Z" + }, + "end": { + "$date": "2021-12-17T00:45:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6dd3f87-6930-4ec9-b7a9-cfe00fa832e7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T00:49:18.000Z" + }, + "end": { + "$date": "2021-12-17T01:23:41.000Z" + }, + "events": [ + { + "uuid": "cd4d67fd-a24c-4577-9b9d-d391352fcbce", + "start": { + "$date": "2021-12-17T00:49:18.000Z" + }, + "end": { + "$date": "2021-12-17T01:23:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "162cbfc6-93bb-4cae-9115-e4ab7cd35628", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-17T00:49:28.000Z" + }, + "end": { + "$date": "2021-12-17T01:28:29.000Z" + }, + "events": [ + { + "uuid": "2153bfd5-a8f2-4f88-aeb7-70df7b67d72f", + "start": { + "$date": "2021-12-17T00:49:28.000Z" + }, + "end": { + "$date": "2021-12-17T01:28:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6a73e6b-b1c0-43ad-b3b3-964c34304b98", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T01:31:13.000Z" + }, + "end": { + "$date": "2021-12-17T02:04:00.000Z" + }, + "events": [ + { + "uuid": "f38d17e2-52aa-4eef-af03-eb2b63867075", + "start": { + "$date": "2021-12-17T01:31:13.000Z" + }, + "end": { + "$date": "2021-12-17T02:04:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da172bcf-b55c-4df4-849f-2dc9affb7692", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-17T01:43:44.000Z" + }, + "end": { + "$date": "2021-12-17T02:04:35.000Z" + }, + "events": [ + { + "uuid": "404186f8-32bc-4280-b92b-471d99b9435c", + "start": { + "$date": "2021-12-17T01:43:44.000Z" + }, + "end": { + "$date": "2021-12-17T02:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6e186f8-d3c1-4281-a096-6a87b0924a10", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T02:08:37.000Z" + }, + "end": { + "$date": "2021-12-17T02:34:38.000Z" + }, + "events": [ + { + "uuid": "58c0ae91-a85a-445c-b8f7-7231035ff4f5", + "start": { + "$date": "2021-12-17T02:08:37.000Z" + }, + "end": { + "$date": "2021-12-17T02:34:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d987b6e-7fb1-4f72-abbf-a38da97920b0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T02:42:00.000Z" + }, + "end": { + "$date": "2021-12-17T03:22:14.000Z" + }, + "events": [ + { + "uuid": "67819781-4b2f-4d3f-a820-3f28b98a8454", + "start": { + "$date": "2021-12-17T02:42:00.000Z" + }, + "end": { + "$date": "2021-12-17T03:22:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91a3b33f-8af2-4f04-8a2e-6c009f8ea2b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T03:32:56.000Z" + }, + "end": { + "$date": "2021-12-17T04:09:09.000Z" + }, + "events": [ + { + "uuid": "80954192-ae06-42b2-a598-9bc02746f023", + "start": { + "$date": "2021-12-17T03:32:56.000Z" + }, + "end": { + "$date": "2021-12-17T04:09:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "862a2927-708f-4375-855b-5e0b840d2329", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-17T03:38:30.000Z" + }, + "end": { + "$date": "2021-12-17T06:47:52.000Z" + }, + "events": [ + { + "uuid": "a0e8360e-ecda-4c32-8404-a5291e978093", + "start": { + "$date": "2021-12-17T03:38:30.000Z" + }, + "end": { + "$date": "2021-12-17T06:47:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "03377455-7c74-434e-9bf0-2d4abd88a4f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-17T03:44:28.000Z" + }, + "end": { + "$date": "2021-12-17T03:46:29.000Z" + }, + "events": [ + { + "uuid": "ca872f2b-ae6a-4cc8-8fcd-21d0cb892d7c", + "start": { + "$date": "2021-12-17T03:44:28.000Z" + }, + "end": { + "$date": "2021-12-17T03:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "138b6914-cb60-42e3-8791-b9109739748e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-17T03:44:50.000Z" + }, + "end": { + "$date": "2021-12-17T04:10:31.000Z" + }, + "events": [ + { + "uuid": "73491ed7-eb2e-4cd6-a4fa-561555efd071", + "start": { + "$date": "2021-12-17T03:44:50.000Z" + }, + "end": { + "$date": "2021-12-17T04:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "6e909e44-351e-45d1-aa78-256f1076f795", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-17T03:47:53.000Z" + }, + "end": { + "$date": "2021-12-17T04:09:50.000Z" + }, + "events": [ + { + "uuid": "01f6a03f-aacf-4468-bd2d-f6999ba530e8", + "start": { + "$date": "2021-12-17T03:47:53.000Z" + }, + "end": { + "$date": "2021-12-17T04:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30baf4ad-14d8-473f-9593-e895bc628e2d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T04:14:35.000Z" + }, + "end": { + "$date": "2021-12-17T04:42:51.000Z" + }, + "events": [ + { + "uuid": "111afe43-c851-48a5-ab06-0c6ffd7d00b7", + "start": { + "$date": "2021-12-17T04:14:35.000Z" + }, + "end": { + "$date": "2021-12-17T04:42:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "66b3310c-7530-4767-aabf-e339ea743d08", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-17T04:10:35.000Z" + }, + "end": { + "$date": "2021-12-17T08:51:48.000Z" + }, + "events": [ + { + "uuid": "6de21cc8-1ca1-45a9-adec-474b05692457", + "start": { + "$date": "2021-12-17T04:10:35.000Z" + }, + "end": { + "$date": "2021-12-17T08:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6347eb2e-800a-4333-b92e-0c3e8f055130", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-17T04:10:41.000Z" + }, + "end": { + "$date": "2021-12-17T04:28:54.000Z" + }, + "events": [ + { + "uuid": "fc7bc51c-f3dd-4f0b-9787-999e56e2d926", + "start": { + "$date": "2021-12-17T04:10:41.000Z" + }, + "end": { + "$date": "2021-12-17T04:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a892c594-1016-42ca-ab3a-1044b1425bf8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-17T04:13:00.000Z" + }, + "end": { + "$date": "2021-12-17T06:05:04.000Z" + }, + "events": [ + { + "uuid": "2f47e7b5-65fa-4073-8f76-e44be14c6097", + "start": { + "$date": "2021-12-17T04:13:00.000Z" + }, + "end": { + "$date": "2021-12-17T06:05:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c09fbb9a-e6c7-4a4c-8d4c-cf068fb4ecb4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-17T14:24:02.000Z" + }, + "end": { + "$date": "2021-12-17T16:13:44.000Z" + }, + "events": [ + { + "uuid": "cddfe891-51e3-4041-a30c-cadf5ffecfa9", + "start": { + "$date": "2021-12-17T14:24:02.000Z" + }, + "end": { + "$date": "2021-12-17T22:34:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3fa52259-c2a3-4f29-bf6f-99f43c26516a", + "start": { + "$date": "2021-12-17T22:34:02.000Z" + }, + "end": { + "$date": "2021-12-17T22:40:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d0d9398c-6781-420e-8386-b838d33ec90a", + "start": { + "$date": "2021-12-17T22:40:02.000Z" + }, + "end": { + "$date": "2021-12-18T00:59:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20134e1f-d651-4b9d-8ee1-f9086b194a4f", + "start": { + "$date": "2021-12-18T00:59:02.000Z" + }, + "end": { + "$date": "2021-12-17T16:13:44.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "72155707-d897-44d1-bc0d-8b0831792deb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-17T04:29:22.000Z" + }, + "end": { + "$date": "2021-12-17T07:52:19.000Z" + }, + "events": [ + { + "uuid": "36322e6f-998c-4832-bcd6-3ef14ee88f23", + "start": { + "$date": "2021-12-17T04:29:22.000Z" + }, + "end": { + "$date": "2021-12-17T07:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bf34cf1-23b4-4f28-aab7-a643854a19c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T04:47:36.000Z" + }, + "end": { + "$date": "2021-12-17T05:28:53.000Z" + }, + "events": [ + { + "uuid": "90cfa1d8-332f-4783-b828-ddff819658d9", + "start": { + "$date": "2021-12-17T04:47:36.000Z" + }, + "end": { + "$date": "2021-12-17T05:28:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d355c57-99ab-4c46-843c-85fdaa1db321", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T05:33:02.000Z" + }, + "end": { + "$date": "2021-12-17T05:57:07.000Z" + }, + "events": [ + { + "uuid": "0e02149d-3804-4ea8-8f71-d754aabc0427", + "start": { + "$date": "2021-12-17T05:33:02.000Z" + }, + "end": { + "$date": "2021-12-17T05:57:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "291636be-9c23-42ea-b2f2-e5dda8160fd4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T06:02:18.000Z" + }, + "end": { + "$date": "2021-12-17T06:44:53.000Z" + }, + "events": [ + { + "uuid": "a0ef7e29-8a79-4284-8d74-a1c51500dd86", + "start": { + "$date": "2021-12-17T06:02:18.000Z" + }, + "end": { + "$date": "2021-12-17T06:44:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc07295e-1cc5-4eb4-98e3-9c46bc8d193c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T06:45:07.000Z" + }, + "end": { + "$date": "2021-12-17T06:49:25.000Z" + }, + "events": [ + { + "uuid": "c9f1c6ad-b29c-4f93-be68-c8e54091fe98", + "start": { + "$date": "2021-12-17T06:45:07.000Z" + }, + "end": { + "$date": "2021-12-17T06:49:25.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aae7c349-5bed-4870-bd91-4f6f5619a99a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2021-12-17T07:52:59.000Z" + }, + "end": { + "$date": "2021-12-17T08:51:06.000Z" + }, + "events": [ + { + "uuid": "8263a57f-7438-4a8a-a08e-0fdabb54b6a7", + "start": { + "$date": "2021-12-17T07:52:59.000Z" + }, + "end": { + "$date": "2021-12-17T08:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85e1ddb3-bb79-4f15-b2bb-53ecfab8034a", + "uuid": "0a794199-e6da-4c1c-9270-8b4686527dc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-17T09:34:12.000Z" + }, + "end": { + "$date": "2021-12-17T09:50:14.000Z" + }, + "events": [ + { + "uuid": "4b3d527e-58af-4a0d-80d7-491e9b24d9d3", + "start": { + "$date": "2021-12-17T09:34:12.000Z" + }, + "end": { + "$date": "2021-12-17T09:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85e1ddb3-bb79-4f15-b2bb-53ecfab8034a", + "uuid": "9d10616e-14c7-4a5f-9767-7e9047fff060", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-17T09:51:26.000Z" + }, + "end": { + "$date": "2021-12-17T12:39:27.000Z" + }, + "events": [ + { + "uuid": "096a77a2-f251-4ade-abab-844211326e2f", + "start": { + "$date": "2021-12-17T09:51:26.000Z" + }, + "end": { + "$date": "2021-12-17T12:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72226fd9-6890-49d9-857f-a1c5f575a47b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-17T13:34:35.000Z" + }, + "end": { + "$date": "2021-12-17T13:57:00.000Z" + }, + "events": [ + { + "uuid": "c6d9f9af-c9f8-4a1c-bd3a-53b56508a3fe", + "start": { + "$date": "2021-12-17T13:34:35.000Z" + }, + "end": { + "$date": "2021-12-17T13:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df62727b-8977-4b36-805d-6c5e3f319875", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-17T15:47:06.000Z" + }, + "end": { + "$date": "2021-12-17T16:01:36.000Z" + }, + "events": [ + { + "uuid": "56fbe418-be60-41c3-b94b-9c3a67e27557", + "start": { + "$date": "2021-12-17T15:47:06.000Z" + }, + "end": { + "$date": "2021-12-17T16:01:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0d4b6f30-8b29-497d-bab6-ebcd52594f9d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-17T15:48:36.000Z" + }, + "end": { + "$date": "2021-12-17T16:48:21.000Z" + }, + "events": [ + { + "uuid": "567fc0f5-a47a-493f-96f2-c99e15152883", + "start": { + "$date": "2021-12-17T15:48:36.000Z" + }, + "end": { + "$date": "2021-12-17T16:48:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c7af6e0-47c9-48a6-8d25-5b2f8c4b58b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-17T16:34:16.000Z" + }, + "end": { + "$date": "2021-12-17T16:50:51.000Z" + }, + "events": [ + { + "uuid": "d82521b0-20d3-4072-ae2f-9feb191d8384", + "start": { + "$date": "2021-12-17T16:34:16.000Z" + }, + "end": { + "$date": "2021-12-17T16:50:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "9702b413-988d-42fb-9932-8378e0a7d54c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-17T16:53:07.000Z" + }, + "end": { + "$date": "2021-12-17T17:48:42.000Z" + }, + "events": [ + { + "uuid": "1d567645-c7d5-49de-b258-aaa700c2c3cc", + "start": { + "$date": "2021-12-17T16:53:07.000Z" + }, + "end": { + "$date": "2021-12-17T17:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "298e7382-e79f-4fa5-9b9e-b08c0dfbd678", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-17T18:33:45.000Z" + }, + "end": { + "$date": "2021-12-17T19:01:39.000Z" + }, + "events": [ + { + "uuid": "758fe7ce-149b-4b2b-aee6-0e29199507b6", + "start": { + "$date": "2021-12-17T18:33:45.000Z" + }, + "end": { + "$date": "2021-12-17T19:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f28973fc-2710-44fa-a6f6-0122607e5b6a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-17T19:04:03.000Z" + }, + "end": { + "$date": "2021-12-17T19:18:01.000Z" + }, + "events": [ + { + "uuid": "b33e7210-0418-400a-9cc8-360d4583796e", + "start": { + "$date": "2021-12-17T19:04:03.000Z" + }, + "end": { + "$date": "2021-12-17T19:18:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd8e378f-19e3-46fd-827e-1d19cfd9f666", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-17T20:32:08.000Z" + }, + "end": { + "$date": "2021-12-17T20:53:31.000Z" + }, + "events": [ + { + "uuid": "6ed31cdc-e7d6-4956-bdc1-0ed76199a33b", + "start": { + "$date": "2021-12-17T20:32:08.000Z" + }, + "end": { + "$date": "2021-12-17T20:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d885ab2d-0d36-41a7-b243-32dbc79347fe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-17T20:49:29.000Z" + }, + "end": { + "$date": "2021-12-17T22:01:22.000Z" + }, + "events": [ + { + "uuid": "f1121133-0a02-4a1e-9197-4f4d4c7b33b8", + "start": { + "$date": "2021-12-17T20:49:29.000Z" + }, + "end": { + "$date": "2021-12-17T21:17:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b39a0954-d8b1-471b-b4dc-863ccdf02a50", + "start": { + "$date": "2021-12-17T21:17:29.000Z" + }, + "end": { + "$date": "2021-12-17T21:22:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7490da66-92e0-4896-8a8a-539f5fc34931", + "start": { + "$date": "2021-12-17T21:22:29.000Z" + }, + "end": { + "$date": "2021-12-17T21:51:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35394663-a47f-427a-bc92-74fe8114348f", + "start": { + "$date": "2021-12-17T21:51:29.000Z" + }, + "end": { + "$date": "2021-12-17T21:55:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2142ca89-f418-40d1-a541-bda5224bca42", + "start": { + "$date": "2021-12-17T21:55:29.000Z" + }, + "end": { + "$date": "2021-12-17T22:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c21b6cdf-d6ef-486b-8f50-4b68723dc1e9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-17T20:56:26.000Z" + }, + "end": { + "$date": "2021-12-17T21:17:14.000Z" + }, + "events": [ + { + "uuid": "2514cdcb-2f79-425a-bc21-a36aadd389be", + "start": { + "$date": "2021-12-17T20:56:26.000Z" + }, + "end": { + "$date": "2021-12-17T21:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a45028b8-96d8-4e23-995b-2d22f1a27e4b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-17T21:19:33.000Z" + }, + "end": { + "$date": "2021-12-17T21:39:05.000Z" + }, + "events": [ + { + "uuid": "36c85b93-5248-435d-a5f7-f38b91c95ca7", + "start": { + "$date": "2021-12-17T21:19:33.000Z" + }, + "end": { + "$date": "2021-12-17T21:39:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b3487631-f4f2-4246-94a4-2efc05367901", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-17T22:27:04.000Z" + }, + "end": { + "$date": "2021-12-17T22:53:35.000Z" + }, + "events": [ + { + "uuid": "cbec36b9-b259-4609-b6df-75f635df77d6", + "start": { + "$date": "2021-12-17T22:27:04.000Z" + }, + "end": { + "$date": "2021-12-17T22:53:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f70fbae1-0d39-4018-b0a0-52231db58393", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-17T22:33:46.000Z" + }, + "end": { + "$date": "2021-12-18T00:52:53.000Z" + }, + "events": [ + { + "uuid": "e59fc962-1371-4473-b7e3-d55f55d10ef9", + "start": { + "$date": "2021-12-17T22:33:46.000Z" + }, + "end": { + "$date": "2021-12-18T00:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2598472a-8e20-4d1d-9be2-36bea5021b1f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T22:45:26.000Z" + }, + "end": { + "$date": "2021-12-17T23:25:40.000Z" + }, + "events": [ + { + "uuid": "00ab0fd9-ea4e-414e-a57d-71fed6df5217", + "start": { + "$date": "2021-12-17T22:45:26.000Z" + }, + "end": { + "$date": "2021-12-17T23:25:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "730bec36-06ab-4a16-9698-55deffac88a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-17T23:01:37.000Z" + }, + "end": { + "$date": "2021-12-17T23:35:33.000Z" + }, + "events": [ + { + "uuid": "f7794a87-a914-4d9e-a979-de5d141998d3", + "start": { + "$date": "2021-12-17T23:01:37.000Z" + }, + "end": { + "$date": "2021-12-17T23:35:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5369d3e2-50a0-4a67-b806-708cecb2a0e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-17T23:30:15.000Z" + }, + "end": { + "$date": "2021-12-18T00:12:03.000Z" + }, + "events": [ + { + "uuid": "46e6d991-2c8b-4394-92c6-9929a023532e", + "start": { + "$date": "2021-12-17T23:30:15.000Z" + }, + "end": { + "$date": "2021-12-18T00:12:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2b45fc53-e027-4f6f-bc8c-3409f95b1a3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-17T23:35:39.000Z" + }, + "end": { + "$date": "2021-12-18T00:42:46.000Z" + }, + "events": [ + { + "uuid": "8e6de2bf-a34a-4114-8938-552920f3eb7c", + "start": { + "$date": "2021-12-17T23:35:39.000Z" + }, + "end": { + "$date": "2021-12-18T00:42:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a74b9857-3e28-4ff2-927a-e8d3967db414", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T00:06:02.000Z" + }, + "end": { + "$date": "2021-12-18T00:38:16.000Z" + }, + "events": [ + { + "uuid": "647c7273-5b37-4be6-a56f-10feb0344bcf", + "start": { + "$date": "2021-12-18T00:06:02.000Z" + }, + "end": { + "$date": "2021-12-18T00:17:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f2706c0-1c15-4c91-9994-1ccfed9c2253", + "start": { + "$date": "2021-12-18T00:17:02.000Z" + }, + "end": { + "$date": "2021-12-18T00:38:16.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecfa5a94-cc42-4dee-8ec7-862f605a7079", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T00:20:25.000Z" + }, + "end": { + "$date": "2021-12-18T00:40:41.000Z" + }, + "events": [ + { + "uuid": "a018d625-4adb-4319-87d1-ecb92dbe93d8", + "start": { + "$date": "2021-12-18T00:20:25.000Z" + }, + "end": { + "$date": "2021-12-18T00:40:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4ba95ef-934b-4ba9-882e-584c52dca95d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T00:41:34.000Z" + }, + "end": { + "$date": "2021-12-18T00:57:51.000Z" + }, + "events": [ + { + "uuid": "2563404d-8319-4764-9e67-6d0e0383c075", + "start": { + "$date": "2021-12-18T00:41:34.000Z" + }, + "end": { + "$date": "2021-12-18T00:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e38196e4-6a2b-4cc1-bb93-533ac3af5ecb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T00:44:47.000Z" + }, + "end": { + "$date": "2021-12-18T01:16:49.000Z" + }, + "events": [ + { + "uuid": "2fb9588e-9df8-444f-b1de-9610e05b57a0", + "start": { + "$date": "2021-12-18T00:44:47.000Z" + }, + "end": { + "$date": "2021-12-18T01:16:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8af2eec2-1e33-42b1-a5c2-4b5319acba62", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-18T00:54:03.000Z" + }, + "end": { + "$date": "2021-12-18T05:46:43.000Z" + }, + "events": [ + { + "uuid": "178ad408-b9c8-4145-b137-ef230c064957", + "start": { + "$date": "2021-12-18T00:54:03.000Z" + }, + "end": { + "$date": "2021-12-18T01:08:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6230b850-b9b1-4985-92f8-48d396ee266a", + "start": { + "$date": "2021-12-18T01:08:03.000Z" + }, + "end": { + "$date": "2021-12-18T01:13:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "282ca1f2-afb0-4add-9989-dce9940baf5e", + "start": { + "$date": "2021-12-18T01:13:03.000Z" + }, + "end": { + "$date": "2021-12-18T03:54:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe73135e-a688-45b1-b14d-e04576f5cda8", + "start": { + "$date": "2021-12-18T03:54:03.000Z" + }, + "end": { + "$date": "2021-12-18T03:59:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "20f93006-a340-467a-8dee-d819e877e196", + "start": { + "$date": "2021-12-18T03:59:03.000Z" + }, + "end": { + "$date": "2021-12-18T04:12:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1da46c8-ade8-4c81-80b5-83675f06c12b", + "start": { + "$date": "2021-12-18T04:12:03.000Z" + }, + "end": { + "$date": "2021-12-18T04:15:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "433875be-bc33-40f2-baaa-84a2b5b1d850", + "start": { + "$date": "2021-12-18T04:15:03.000Z" + }, + "end": { + "$date": "2021-12-18T05:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d9a6c41f-5e6e-44bc-90bc-1d6feb6efac0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-18T00:56:02.000Z" + }, + "end": { + "$date": "2021-12-18T04:00:24.000Z" + }, + "events": [ + { + "uuid": "118f922c-4696-4441-8e49-0d77815bb85c", + "start": { + "$date": "2021-12-18T00:56:02.000Z" + }, + "end": { + "$date": "2021-12-18T01:20:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b43481a-5438-4bd0-bec7-1d8fa0ac0eef", + "start": { + "$date": "2021-12-18T01:20:02.000Z" + }, + "end": { + "$date": "2021-12-18T01:27:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d33ff2d7-ce6d-43fb-9ee2-4022ebc450f8", + "start": { + "$date": "2021-12-18T01:27:02.000Z" + }, + "end": { + "$date": "2021-12-18T03:39:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3b0ec9f-a813-4000-a7b8-fc6abe290474", + "start": { + "$date": "2021-12-18T03:39:02.000Z" + }, + "end": { + "$date": "2021-12-18T03:44:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a269f93e-7261-43e9-bba3-c60832d76a3f", + "start": { + "$date": "2021-12-18T03:44:02.000Z" + }, + "end": { + "$date": "2021-12-18T04:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6561cd3-4d6d-40f8-beb8-c56ceb4e9a53", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T01:01:11.000Z" + }, + "end": { + "$date": "2021-12-18T01:21:34.000Z" + }, + "events": [ + { + "uuid": "6b5e45bd-9220-4416-8fe1-b73eccbe5a8c", + "start": { + "$date": "2021-12-18T01:01:11.000Z" + }, + "end": { + "$date": "2021-12-18T01:21:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5237a5b5-c234-47ee-9c50-5e1a1c328f35", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-18T01:06:00.000Z" + }, + "end": { + "$date": "2021-12-18T03:55:44.000Z" + }, + "events": [ + { + "uuid": "10c8b7c2-db5e-446d-83e9-8dc275ce27e5", + "start": { + "$date": "2021-12-18T01:06:00.000Z" + }, + "end": { + "$date": "2021-12-18T03:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e7cab75-ad4d-4fe1-a314-74bfe46c4352", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T02:10:50.000Z" + }, + "end": { + "$date": "2021-12-18T02:29:47.000Z" + }, + "events": [ + { + "uuid": "6b9be951-e92b-46d6-846e-bdd75ed51705", + "start": { + "$date": "2021-12-18T02:10:50.000Z" + }, + "end": { + "$date": "2021-12-18T02:29:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b0c1015-a101-45b8-82a2-723298f86802", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T01:23:44.000Z" + }, + "end": { + "$date": "2021-12-18T01:49:28.000Z" + }, + "events": [ + { + "uuid": "b3795863-d864-4cc7-aa95-4ea88df6df9f", + "start": { + "$date": "2021-12-18T01:23:44.000Z" + }, + "end": { + "$date": "2021-12-18T01:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f2534b5-7117-422e-ad38-35057956be41", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T01:22:43.000Z" + }, + "end": { + "$date": "2021-12-18T01:43:43.000Z" + }, + "events": [ + { + "uuid": "92f2f261-8a59-4ef7-b6d3-ea954d33fef0", + "start": { + "$date": "2021-12-18T01:22:43.000Z" + }, + "end": { + "$date": "2021-12-18T01:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60dd260d-5d9d-49bd-b811-bdf762ba4796", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T01:48:09.000Z" + }, + "end": { + "$date": "2021-12-18T02:09:14.000Z" + }, + "events": [ + { + "uuid": "52ea8765-bfde-42be-9088-1c49530b3ab3", + "start": { + "$date": "2021-12-18T01:48:09.000Z" + }, + "end": { + "$date": "2021-12-18T02:09:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcb13480-44b3-4004-a2a5-fe5dad5ca70c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T01:52:02.000Z" + }, + "end": { + "$date": "2021-12-18T02:15:58.000Z" + }, + "events": [ + { + "uuid": "927e6181-ce7d-4241-9754-9dd915ad3f1e", + "start": { + "$date": "2021-12-18T01:52:02.000Z" + }, + "end": { + "$date": "2021-12-18T02:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "78a883a6-0c49-4dbe-a862-839ec40c2492", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T02:10:05.000Z" + }, + "end": { + "$date": "2021-12-18T02:38:21.000Z" + }, + "events": [ + { + "uuid": "110420d9-9120-4951-b6e9-9c6308e68904", + "start": { + "$date": "2021-12-18T02:10:05.000Z" + }, + "end": { + "$date": "2021-12-18T02:38:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "e3d90660-3d3d-4227-94bc-ca0a769bd74f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-18T02:10:20.000Z" + }, + "end": { + "$date": "2021-12-18T02:46:23.000Z" + }, + "events": [ + { + "uuid": "a62772e7-7001-488b-86e1-4877cf01cfbf", + "start": { + "$date": "2021-12-18T02:10:20.000Z" + }, + "end": { + "$date": "2021-12-18T02:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8afd9298-b2dc-4075-b63b-eb852d7f3dc5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T02:18:21.000Z" + }, + "end": { + "$date": "2021-12-18T02:18:41.000Z" + }, + "events": [ + { + "uuid": "342ce3d3-16b1-4868-a629-9bc0e6ad550a", + "start": { + "$date": "2021-12-18T02:18:21.000Z" + }, + "end": { + "$date": "2021-12-18T02:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89e27613-4c80-4519-beb8-30d5cfb87daa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T02:34:08.000Z" + }, + "end": { + "$date": "2021-12-18T03:01:05.000Z" + }, + "events": [ + { + "uuid": "c3a2737c-c45d-40cf-94e2-5a98cd37fbdc", + "start": { + "$date": "2021-12-18T02:34:08.000Z" + }, + "end": { + "$date": "2021-12-18T03:01:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7197c254-9d66-4791-8432-92aad9b8400d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T02:39:32.000Z" + }, + "end": { + "$date": "2021-12-18T03:09:28.000Z" + }, + "events": [ + { + "uuid": "1509cf68-d74f-4929-a85a-57e96c1cc3d3", + "start": { + "$date": "2021-12-18T02:39:32.000Z" + }, + "end": { + "$date": "2021-12-18T03:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fd06baf8-079a-4aec-969a-352eccde37b4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-18T02:49:41.000Z" + }, + "end": { + "$date": "2021-12-18T03:24:23.000Z" + }, + "events": [ + { + "uuid": "8ae9cc48-203a-4400-9c31-c987a1fdde20", + "start": { + "$date": "2021-12-18T02:49:41.000Z" + }, + "end": { + "$date": "2021-12-18T03:24:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "042ec45b-b68e-4b94-8c16-9e0c8430f438", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T03:31:47.000Z" + }, + "end": { + "$date": "2021-12-18T03:57:37.000Z" + }, + "events": [ + { + "uuid": "6fad3baa-89df-4278-972a-025752aef309", + "start": { + "$date": "2021-12-18T03:31:47.000Z" + }, + "end": { + "$date": "2021-12-18T03:57:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d90ff581-c9c9-4cf8-b222-eb208f0ff83a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T03:10:39.000Z" + }, + "end": { + "$date": "2021-12-18T03:44:05.000Z" + }, + "events": [ + { + "uuid": "e30923f3-c745-434d-b7a3-231dfe2e153b", + "start": { + "$date": "2021-12-18T03:10:39.000Z" + }, + "end": { + "$date": "2021-12-18T03:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "86164d36-0a96-4196-9c9f-49bea9261bec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T03:47:31.000Z" + }, + "end": { + "$date": "2021-12-18T04:38:27.000Z" + }, + "events": [ + { + "uuid": "c7b5da80-9c2e-4657-8e16-5d5596282494", + "start": { + "$date": "2021-12-18T03:47:31.000Z" + }, + "end": { + "$date": "2021-12-18T04:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1eb601f-e920-4894-bc12-aeaae4e1b602", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T04:44:51.000Z" + }, + "end": { + "$date": "2021-12-18T04:44:50.000Z" + }, + "events": [ + { + "uuid": "ad4f32c6-9879-4a19-a26e-5987ddf4e20c", + "start": { + "$date": "2021-12-18T04:44:51.000Z" + }, + "end": { + "$date": "2021-12-18T04:44:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c9661a5-5bb0-4172-90e0-d645102d47ef", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T04:13:57.000Z" + }, + "end": { + "$date": "2021-12-18T04:28:33.000Z" + }, + "events": [ + { + "uuid": "47ab309e-440d-4e9f-b41e-0203cee29e8a", + "start": { + "$date": "2021-12-18T04:13:57.000Z" + }, + "end": { + "$date": "2021-12-18T04:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f98c2b1e-4068-4086-8946-5ced2f1c6f11", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T04:19:26.000Z" + }, + "end": { + "$date": "2021-12-18T04:50:33.000Z" + }, + "events": [ + { + "uuid": "b2aa0650-9a84-4718-be8b-837a8a7f1733", + "start": { + "$date": "2021-12-18T04:19:26.000Z" + }, + "end": { + "$date": "2021-12-18T04:50:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "415464cb-5c6b-4bf1-a0b4-a8cf099dddcc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T04:31:04.000Z" + }, + "end": { + "$date": "2021-12-18T04:51:38.000Z" + }, + "events": [ + { + "uuid": "36cef2cc-653e-460a-b7b7-d5494bcf7285", + "start": { + "$date": "2021-12-18T04:31:04.000Z" + }, + "end": { + "$date": "2021-12-18T04:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "7c16b65c-1400-4086-86eb-38b4f0825b09", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-18T04:34:40.000Z" + }, + "end": { + "$date": "2021-12-18T04:38:35.000Z" + }, + "events": [ + { + "uuid": "6732b499-9d99-4858-ac2e-c12abc3e6f67", + "start": { + "$date": "2021-12-18T04:34:40.000Z" + }, + "end": { + "$date": "2021-12-18T04:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4f96522a-7114-492d-8dc7-8d6c8f8e6d4a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-18T04:44:15.000Z" + }, + "end": { + "$date": "2021-12-18T05:44:13.000Z" + }, + "events": [ + { + "uuid": "8b8ad073-8819-436a-b078-6f7e67f9c3b1", + "start": { + "$date": "2021-12-18T04:44:15.000Z" + }, + "end": { + "$date": "2021-12-18T05:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5d709cae-2b0d-4b29-bc35-cf95f9db5a8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T04:44:23.000Z" + }, + "end": { + "$date": "2021-12-18T04:53:13.000Z" + }, + "events": [ + { + "uuid": "24abf699-b5e4-4354-a472-2fd9c1ec55b6", + "start": { + "$date": "2021-12-18T04:44:23.000Z" + }, + "end": { + "$date": "2021-12-18T04:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c3f5f4d3-b345-4e2f-a4fa-17f0f3afff2b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-18T04:44:37.000Z" + }, + "end": { + "$date": "2021-12-18T05:44:33.000Z" + }, + "events": [ + { + "uuid": "d7fb319a-caf5-4718-92c3-6f4cff8cae89", + "start": { + "$date": "2021-12-18T04:44:37.000Z" + }, + "end": { + "$date": "2021-12-18T05:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8acef2c7-112c-4160-a611-72a4fd8121cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T04:50:23.000Z" + }, + "end": { + "$date": "2021-12-18T04:50:23.000Z" + }, + "events": [ + { + "uuid": "0d6129ed-4b0d-4fae-910e-c332d948846e", + "start": { + "$date": "2021-12-18T04:50:23.000Z" + }, + "end": { + "$date": "2021-12-18T04:50:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b9a247e-8504-4ff1-a94f-6b0e41fffac4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T04:55:05.000Z" + }, + "end": { + "$date": "2021-12-18T05:28:54.000Z" + }, + "events": [ + { + "uuid": "275d308e-e739-4e29-bd29-3a9b0fc32942", + "start": { + "$date": "2021-12-18T04:55:05.000Z" + }, + "end": { + "$date": "2021-12-18T05:28:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec59a9bb-ac05-40b1-a065-fb30cf28e36c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T04:55:22.000Z" + }, + "end": { + "$date": "2021-12-18T05:16:08.000Z" + }, + "events": [ + { + "uuid": "4057cca9-963b-4011-88da-9a821571bd0c", + "start": { + "$date": "2021-12-18T04:55:22.000Z" + }, + "end": { + "$date": "2021-12-18T05:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "555ab3c7-4ac9-426d-b669-d79fc78260e2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T06:00:29.000Z" + }, + "end": { + "$date": "2021-12-18T06:31:28.000Z" + }, + "events": [ + { + "uuid": "d06a7842-0a25-4417-ae70-65356c604ea2", + "start": { + "$date": "2021-12-18T06:00:29.000Z" + }, + "end": { + "$date": "2021-12-18T06:12:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c18b5c4c-eb2d-41e2-b20d-d9f4f495fceb", + "start": { + "$date": "2021-12-18T06:12:29.000Z" + }, + "end": { + "$date": "2021-12-18T06:42:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dde4cd18-8e83-4cbb-89b4-a823a35e71a3", + "start": { + "$date": "2021-12-18T06:42:29.000Z" + }, + "end": { + "$date": "2021-12-18T06:31:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "55d68cb3-e10b-41c6-a275-a0ad1d8bc12b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T05:30:00.000Z" + }, + "end": { + "$date": "2021-12-18T06:43:09.000Z" + }, + "events": [ + { + "uuid": "e8b413c5-4cc1-4a1e-a219-ad3d2d11b406", + "start": { + "$date": "2021-12-18T05:30:00.000Z" + }, + "end": { + "$date": "2021-12-18T06:43:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0c79b63b-6901-4895-b013-c59a09b42576", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-18T05:33:06.000Z" + }, + "end": { + "$date": "2021-12-18T13:00:26.000Z" + }, + "events": [ + { + "uuid": "bc23847a-adf9-4f90-a47a-b3a211d17e3d", + "start": { + "$date": "2021-12-18T05:33:06.000Z" + }, + "end": { + "$date": "2021-12-18T13:00:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3ea04093-8775-4ea2-bdb4-8f41a899c41f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-18T05:46:18.000Z" + }, + "end": { + "$date": "2021-12-18T08:26:49.000Z" + }, + "events": [ + { + "uuid": "c92fb4b9-0295-40d2-9995-2abaeeb9862e", + "start": { + "$date": "2021-12-18T05:46:18.000Z" + }, + "end": { + "$date": "2021-12-18T08:26:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f54e21b1-a00d-47f3-8ac7-5d7ca8762594", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-18T05:46:58.000Z" + }, + "end": { + "$date": "2021-12-18T06:38:45.000Z" + }, + "events": [ + { + "uuid": "173a31ac-d3a9-4060-a4e1-8b448ac05c79", + "start": { + "$date": "2021-12-18T05:46:58.000Z" + }, + "end": { + "$date": "2021-12-18T06:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2576491c-611a-4460-be7e-6bb6172b7a07", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T06:34:43.000Z" + }, + "end": { + "$date": "2021-12-18T06:47:45.000Z" + }, + "events": [ + { + "uuid": "6d2ce712-0a44-4aff-902f-cbd3f5bc349e", + "start": { + "$date": "2021-12-18T06:34:43.000Z" + }, + "end": { + "$date": "2021-12-18T06:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "abb6ecda-973e-4bf4-9a6c-889f2b36cd75", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T06:50:21.000Z" + }, + "end": { + "$date": "2021-12-18T07:22:05.000Z" + }, + "events": [ + { + "uuid": "e77fdb8c-4b48-4d16-b834-d38be4079ecd", + "start": { + "$date": "2021-12-18T06:50:21.000Z" + }, + "end": { + "$date": "2021-12-18T07:22:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18400d37-fd89-4773-8b69-dafaebe6b350", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T06:49:40.000Z" + }, + "end": { + "$date": "2021-12-18T07:12:15.000Z" + }, + "events": [ + { + "uuid": "ef475346-54b5-4441-a704-3447edf1d17b", + "start": { + "$date": "2021-12-18T06:49:40.000Z" + }, + "end": { + "$date": "2021-12-18T07:12:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58d001c6-a2c2-403e-af1e-0f7a640a0a8e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-18T07:15:49.000Z" + }, + "end": { + "$date": "2021-12-18T07:49:29.000Z" + }, + "events": [ + { + "uuid": "eeddd6f4-cad8-4902-9355-98f2d903030d", + "start": { + "$date": "2021-12-18T07:15:49.000Z" + }, + "end": { + "$date": "2021-12-18T07:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4426b61c-5758-43d7-b6a0-03d538cc9a4d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T07:33:12.000Z" + }, + "end": { + "$date": "2021-12-18T08:02:06.000Z" + }, + "events": [ + { + "uuid": "46911b9f-47f8-4ffb-a5c8-f43f6eeebe46", + "start": { + "$date": "2021-12-18T07:33:12.000Z" + }, + "end": { + "$date": "2021-12-18T08:02:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b13aa588-383a-4242-a678-5773219d458b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T08:12:03.000Z" + }, + "end": { + "$date": "2021-12-18T08:40:33.000Z" + }, + "events": [ + { + "uuid": "cba15cb7-2ccb-48aa-8105-982088fced6f", + "start": { + "$date": "2021-12-18T08:12:03.000Z" + }, + "end": { + "$date": "2021-12-18T08:40:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3786dff1-38bc-4cec-958b-362872df6ab0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T08:47:24.000Z" + }, + "end": { + "$date": "2021-12-18T09:09:39.000Z" + }, + "events": [ + { + "uuid": "80e07200-6b03-46eb-a449-3f2b2fd069c0", + "start": { + "$date": "2021-12-18T08:47:24.000Z" + }, + "end": { + "$date": "2021-12-18T09:09:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14d1bd23-6765-4e96-8cc0-3c34bf1c4073", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-18T16:32:55.000Z" + }, + "end": { + "$date": "2021-12-19T02:39:38.000Z" + }, + "events": [ + { + "uuid": "f84ce85b-f8d2-4a55-b698-5b113e90cc9e", + "start": { + "$date": "2021-12-18T16:32:55.000Z" + }, + "end": { + "$date": "2021-12-18T18:26:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45f4942f-781b-4c67-afb7-e32e0eab5c97", + "start": { + "$date": "2021-12-18T18:26:55.000Z" + }, + "end": { + "$date": "2021-12-18T18:45:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb6ef7c4-134c-4468-8bcf-c1827bb40f0d", + "start": { + "$date": "2021-12-18T18:45:55.000Z" + }, + "end": { + "$date": "2021-12-18T21:37:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebda0421-8fd9-44b2-bfcb-ba9205a01d34", + "start": { + "$date": "2021-12-18T21:37:55.000Z" + }, + "end": { + "$date": "2021-12-18T21:45:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "62f08b92-ac79-4dfc-84df-667004b2301d", + "start": { + "$date": "2021-12-18T21:45:55.000Z" + }, + "end": { + "$date": "2021-12-18T22:05:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14cb8ed9-3faa-4a8e-bd7f-b82990060f35", + "start": { + "$date": "2021-12-18T22:05:55.000Z" + }, + "end": { + "$date": "2021-12-18T22:08:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a90b3a50-3537-4f42-8e25-cf1de042c492", + "start": { + "$date": "2021-12-18T22:08:55.000Z" + }, + "end": { + "$date": "2021-12-18T22:19:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e159ec77-9813-4b8a-a413-613587a70703", + "start": { + "$date": "2021-12-18T22:19:55.000Z" + }, + "end": { + "$date": "2021-12-18T22:24:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "89f94e06-4002-48e3-bf87-379808065c6c", + "start": { + "$date": "2021-12-18T22:24:55.000Z" + }, + "end": { + "$date": "2021-12-18T23:03:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da7b059f-9a6e-4441-a109-a4f5f86062aa", + "start": { + "$date": "2021-12-18T23:03:55.000Z" + }, + "end": { + "$date": "2021-12-18T23:14:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b76a0d47-984f-4029-a213-9d87c35fbd5f", + "start": { + "$date": "2021-12-18T23:14:55.000Z" + }, + "end": { + "$date": "2021-12-19T00:29:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69436b2c-69ef-4a09-8c70-edd9eb2bf997", + "start": { + "$date": "2021-12-19T00:29:55.000Z" + }, + "end": { + "$date": "2021-12-19T09:24:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0b5fed75-20a6-4204-9012-540b6ba507c7", + "start": { + "$date": "2021-12-19T09:24:55.000Z" + }, + "end": { + "$date": "2021-12-19T09:28:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80bd117b-e309-47be-9bac-906f4ce8dfd2", + "start": { + "$date": "2021-12-19T09:28:55.000Z" + }, + "end": { + "$date": "2021-12-19T09:57:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a91dddfe-5305-4ce5-bb17-ad56d7f3a6f9", + "start": { + "$date": "2021-12-19T09:57:55.000Z" + }, + "end": { + "$date": "2021-12-19T09:59:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb23c54b-b1c6-4545-ab42-f822b3dbf451", + "start": { + "$date": "2021-12-19T09:59:55.000Z" + }, + "end": { + "$date": "2021-12-19T10:10:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa386d9b-c3e6-4fda-a03e-c778e3e65772", + "start": { + "$date": "2021-12-19T10:10:55.000Z" + }, + "end": { + "$date": "2021-12-19T10:13:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35da61ad-146e-48a2-96b1-51560f5b8cf8", + "start": { + "$date": "2021-12-19T10:13:55.000Z" + }, + "end": { + "$date": "2021-12-19T02:39:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3fc24040-9617-4fbc-82a4-a4a75ad3949c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-18T12:08:56.000Z" + }, + "end": { + "$date": "2021-12-18T13:00:21.000Z" + }, + "events": [ + { + "uuid": "a4bf0aed-0cd3-4372-b524-0c2de4aa2b27", + "start": { + "$date": "2021-12-18T12:08:56.000Z" + }, + "end": { + "$date": "2021-12-18T13:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3ef967f-9dc9-41a3-9081-dcc247db683b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T16:56:49.000Z" + }, + "end": { + "$date": "2021-12-18T17:14:33.000Z" + }, + "events": [ + { + "uuid": "283f1866-b70d-43a2-ac76-889485ae2232", + "start": { + "$date": "2021-12-18T16:56:49.000Z" + }, + "end": { + "$date": "2021-12-18T17:14:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81d0cb90-1b84-4ddf-bfa2-8fbb7700ecab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-18T17:08:44.000Z" + }, + "end": { + "$date": "2021-12-18T17:46:01.000Z" + }, + "events": [ + { + "uuid": "1028d071-a48d-4925-9d1d-48b32a065f36", + "start": { + "$date": "2021-12-18T17:08:44.000Z" + }, + "end": { + "$date": "2021-12-18T17:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fab23281-319c-4366-b977-9f24fa9b90fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T17:15:27.000Z" + }, + "end": { + "$date": "2021-12-18T17:23:39.000Z" + }, + "events": [ + { + "uuid": "f3cf1d66-c358-4c2d-baab-221ff7f7b918", + "start": { + "$date": "2021-12-18T17:15:27.000Z" + }, + "end": { + "$date": "2021-12-18T17:23:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d846a80a-8942-4535-aa50-dd6fcc5a19f3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T17:35:55.000Z" + }, + "end": { + "$date": "2021-12-18T17:50:20.000Z" + }, + "events": [ + { + "uuid": "e8ee589a-4180-49d2-9a49-76e4498b9e71", + "start": { + "$date": "2021-12-18T17:35:55.000Z" + }, + "end": { + "$date": "2021-12-18T17:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6d75457e-40b7-4562-94a1-51424a22daaf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T17:35:40.000Z" + }, + "end": { + "$date": "2021-12-18T20:23:55.000Z" + }, + "events": [ + { + "uuid": "02a1638f-0a5b-4656-bdee-5abeef804329", + "start": { + "$date": "2021-12-18T17:35:40.000Z" + }, + "end": { + "$date": "2021-12-18T20:02:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c90d1bbb-d05e-4909-b604-12276fa00897", + "start": { + "$date": "2021-12-18T20:02:40.000Z" + }, + "end": { + "$date": "2021-12-18T20:06:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "303b4590-41b6-4723-a167-38643603eea4", + "start": { + "$date": "2021-12-18T20:06:40.000Z" + }, + "end": { + "$date": "2021-12-18T20:17:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45cfd1cf-c495-49bc-9018-72ad2fdf7972", + "start": { + "$date": "2021-12-18T20:17:40.000Z" + }, + "end": { + "$date": "2021-12-18T20:21:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f953d65-070a-485a-a2c6-78870011b16a", + "start": { + "$date": "2021-12-18T20:21:40.000Z" + }, + "end": { + "$date": "2021-12-18T20:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2406a4fd-632d-4560-b95c-3f10532cb2d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-18T17:46:06.000Z" + }, + "end": { + "$date": "2021-12-18T17:51:07.000Z" + }, + "events": [ + { + "uuid": "77df2f3b-9418-4ae2-840d-416c5d7708e6", + "start": { + "$date": "2021-12-18T17:46:06.000Z" + }, + "end": { + "$date": "2021-12-18T17:51:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "a30b2d9c-d7b2-4758-ac29-abce3c9d48e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T17:55:56.000Z" + }, + "end": { + "$date": "2021-12-18T18:21:46.000Z" + }, + "events": [ + { + "uuid": "e0b913f8-1a97-4b9f-8abc-17fbd4e60cd2", + "start": { + "$date": "2021-12-18T17:55:56.000Z" + }, + "end": { + "$date": "2021-12-18T18:21:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "e165cfeb-6113-49c2-ada4-abfa785a92b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T18:22:03.000Z" + }, + "end": { + "$date": "2021-12-18T18:25:52.000Z" + }, + "events": [ + { + "uuid": "51fe5bdc-c02d-49c3-8145-2384fe5b192f", + "start": { + "$date": "2021-12-18T18:22:03.000Z" + }, + "end": { + "$date": "2021-12-18T18:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "726175da-3e68-4d41-972f-2dfbf9e4f114", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T18:26:18.000Z" + }, + "end": { + "$date": "2021-12-18T18:34:34.000Z" + }, + "events": [ + { + "uuid": "d82424dc-3c28-49c2-9685-91ed8df0ec34", + "start": { + "$date": "2021-12-18T18:26:18.000Z" + }, + "end": { + "$date": "2021-12-18T18:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0fffbd2d-9399-426e-903f-69cce54d328d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T18:34:45.000Z" + }, + "end": { + "$date": "2021-12-18T18:49:20.000Z" + }, + "events": [ + { + "uuid": "96c93337-eb78-4580-bb9e-77bb4a20472b", + "start": { + "$date": "2021-12-18T18:34:45.000Z" + }, + "end": { + "$date": "2021-12-18T18:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f78cf19-6632-49bd-871f-d2bc5abf3fbe", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T19:01:02.000Z" + }, + "end": { + "$date": "2021-12-18T19:32:02.000Z" + }, + "events": [ + { + "uuid": "16763b19-a733-4800-af50-c3b637e176af", + "start": { + "$date": "2021-12-18T19:01:02.000Z" + }, + "end": { + "$date": "2021-12-18T19:32:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05d8472a-2ce0-4483-a991-d599dbd97727", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T19:32:43.000Z" + }, + "end": { + "$date": "2021-12-18T20:07:13.000Z" + }, + "events": [ + { + "uuid": "6412ea89-d74a-40e9-92fb-3dc863712f87", + "start": { + "$date": "2021-12-18T19:32:43.000Z" + }, + "end": { + "$date": "2021-12-18T20:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3025f8ad-766f-42c7-9108-ba73c07668d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T20:07:27.000Z" + }, + "end": { + "$date": "2021-12-18T20:11:50.000Z" + }, + "events": [ + { + "uuid": "180e9e33-1573-4800-a93a-daa014fef302", + "start": { + "$date": "2021-12-18T20:07:27.000Z" + }, + "end": { + "$date": "2021-12-18T20:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d3b5597c-37d8-4ddf-a633-f681754673b2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T20:37:46.000Z" + }, + "end": { + "$date": "2021-12-18T21:01:02.000Z" + }, + "events": [ + { + "uuid": "bcdcaeb1-0f83-432f-a9c4-90004c6cbedc", + "start": { + "$date": "2021-12-18T20:37:46.000Z" + }, + "end": { + "$date": "2021-12-18T21:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17d16286-53f6-4d20-9bbf-c51b80c6de2c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T20:47:47.000Z" + }, + "end": { + "$date": "2021-12-18T21:17:34.000Z" + }, + "events": [ + { + "uuid": "9ac9f32c-e583-483b-8ea6-7bb0813d824c", + "start": { + "$date": "2021-12-18T20:47:47.000Z" + }, + "end": { + "$date": "2021-12-18T21:17:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6d8290ec-6537-48a9-ae26-e503651908b7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T21:05:48.000Z" + }, + "end": { + "$date": "2021-12-18T21:12:03.000Z" + }, + "events": [ + { + "uuid": "297d95cf-b3a9-45e9-8bf5-53dd39dd055b", + "start": { + "$date": "2021-12-18T21:05:48.000Z" + }, + "end": { + "$date": "2021-12-18T21:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0773176c-fa59-4363-bc88-df692692d5c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T21:12:09.000Z" + }, + "end": { + "$date": "2021-12-18T21:16:23.000Z" + }, + "events": [ + { + "uuid": "9f944d75-ce62-4db5-b5d3-1296ce9e56dd", + "start": { + "$date": "2021-12-18T21:12:09.000Z" + }, + "end": { + "$date": "2021-12-18T21:16:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bf393e3e-0821-4f88-83b2-31ee657b36b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T21:13:01.000Z" + }, + "end": { + "$date": "2021-12-18T21:16:15.000Z" + }, + "events": [ + { + "uuid": "a9d306bd-c9f5-4425-860d-2a36ebcf2bd3", + "start": { + "$date": "2021-12-18T21:13:01.000Z" + }, + "end": { + "$date": "2021-12-18T21:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d8b2569-e934-4968-bc29-e0496b6d7622", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T21:27:51.000Z" + }, + "end": { + "$date": "2021-12-18T21:55:58.000Z" + }, + "events": [ + { + "uuid": "5074e14a-01e9-4891-8f1c-79bffc9851f1", + "start": { + "$date": "2021-12-18T21:27:51.000Z" + }, + "end": { + "$date": "2021-12-18T21:55:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "66ce0644-3659-4a75-9d77-5519e2b2e3e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T21:34:47.000Z" + }, + "end": { + "$date": "2021-12-18T22:12:38.000Z" + }, + "events": [ + { + "uuid": "48a88e3a-c173-422a-af14-730716f6e40c", + "start": { + "$date": "2021-12-18T21:34:47.000Z" + }, + "end": { + "$date": "2021-12-18T22:12:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bcff50d1-8e73-40e2-b841-b87fc1cdc367", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T21:13:01.000Z" + }, + "end": { + "$date": "2021-12-18T21:57:06.000Z" + }, + "events": [ + { + "uuid": "78af3cb5-b086-4d87-a398-04c857841ed0", + "start": { + "$date": "2021-12-18T21:13:01.000Z" + }, + "end": { + "$date": "2021-12-18T21:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b8605291-feeb-4339-9247-49b2de8aab35", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-18T18:13:31.000Z" + }, + "end": { + "$date": "2021-12-18T22:35:15.000Z" + }, + "events": [ + { + "uuid": "aa4f0220-1552-4a3a-966a-24bf1988687f", + "start": { + "$date": "2021-12-18T18:13:31.000Z" + }, + "end": { + "$date": "2021-12-18T22:35:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52d2dc4e-f937-4019-af1a-7c583f14a6a8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T22:00:09.000Z" + }, + "end": { + "$date": "2021-12-18T22:21:26.000Z" + }, + "events": [ + { + "uuid": "ce985ddb-eb40-4416-b581-938899aec930", + "start": { + "$date": "2021-12-18T22:00:09.000Z" + }, + "end": { + "$date": "2021-12-18T22:21:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fcbefd4e-8564-4cc7-8183-c6b2dcc53ce1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T21:57:21.000Z" + }, + "end": { + "$date": "2021-12-18T22:14:19.000Z" + }, + "events": [ + { + "uuid": "3dec5614-82d8-4c31-ac33-26514d25403f", + "start": { + "$date": "2021-12-18T21:57:21.000Z" + }, + "end": { + "$date": "2021-12-18T22:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5d0e2db8-cc9f-465e-9f8e-2fba81f8de7b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T22:13:14.000Z" + }, + "end": { + "$date": "2021-12-18T22:17:24.000Z" + }, + "events": [ + { + "uuid": "3b036db1-d51c-494c-9a73-019e388df824", + "start": { + "$date": "2021-12-18T22:13:14.000Z" + }, + "end": { + "$date": "2021-12-18T22:17:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "cf2994a6-7f9a-4075-815d-927222c32dc2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-18T22:17:54.000Z" + }, + "end": { + "$date": "2021-12-18T23:20:02.000Z" + }, + "events": [ + { + "uuid": "db54117d-751c-45b1-bff8-2b9cd892a8b9", + "start": { + "$date": "2021-12-18T22:17:54.000Z" + }, + "end": { + "$date": "2021-12-18T23:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "76f85af4-e728-4d18-b434-d7e92f66eb4e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-18T22:22:51.000Z" + }, + "end": { + "$date": "2021-12-18T22:37:45.000Z" + }, + "events": [ + { + "uuid": "af4a2d9e-e2b4-4841-bfc2-96c3d7636498", + "start": { + "$date": "2021-12-18T22:22:51.000Z" + }, + "end": { + "$date": "2021-12-18T22:37:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d8c09e51-ec0e-49eb-bd80-9e4947e5c34c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-18T22:35:39.000Z" + }, + "end": { + "$date": "2021-12-18T23:12:31.000Z" + }, + "events": [ + { + "uuid": "2b033bd8-8e77-4d53-9599-be77e30a74b9", + "start": { + "$date": "2021-12-18T22:35:39.000Z" + }, + "end": { + "$date": "2021-12-18T23:12:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9272074e-326a-4de4-96bd-217fb581aea1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T22:52:46.000Z" + }, + "end": { + "$date": "2021-12-18T23:15:28.000Z" + }, + "events": [ + { + "uuid": "d2dcd063-9f7d-4ef5-af49-3e48cb6fd4c5", + "start": { + "$date": "2021-12-18T22:52:46.000Z" + }, + "end": { + "$date": "2021-12-18T23:15:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "78a894cb-f7ab-497f-a88f-9a3d38562895", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-18T23:14:16.000Z" + }, + "end": { + "$date": "2021-12-19T00:25:52.000Z" + }, + "events": [ + { + "uuid": "96c7e970-d597-45c9-9201-c44b84b6ee85", + "start": { + "$date": "2021-12-18T23:14:16.000Z" + }, + "end": { + "$date": "2021-12-19T00:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4801e34-e123-4a2a-b6ea-3b862feb1772", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-18T23:28:59.000Z" + }, + "end": { + "$date": "2021-12-18T23:59:16.000Z" + }, + "events": [ + { + "uuid": "7d234df3-85d2-40b9-8237-5a1946d4599d", + "start": { + "$date": "2021-12-18T23:28:59.000Z" + }, + "end": { + "$date": "2021-12-18T23:59:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79b1ca6d-8eba-4052-86d3-e244577c379d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T00:24:30.000Z" + }, + "end": { + "$date": "2021-12-19T00:47:38.000Z" + }, + "events": [ + { + "uuid": "564afe62-fc1c-40c6-a49e-6a644b52a190", + "start": { + "$date": "2021-12-19T00:24:30.000Z" + }, + "end": { + "$date": "2021-12-19T00:47:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e75a8380-4558-49ed-a2a9-14148ea1e53d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T00:26:01.000Z" + }, + "end": { + "$date": "2021-12-19T00:33:52.000Z" + }, + "events": [ + { + "uuid": "af2ec494-3f86-43bb-a59f-991af30a4b1a", + "start": { + "$date": "2021-12-19T00:26:01.000Z" + }, + "end": { + "$date": "2021-12-19T00:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "76707b23-433b-47e9-a7ee-77e1c9e6221b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T00:36:47.000Z" + }, + "end": { + "$date": "2021-12-19T01:34:53.000Z" + }, + "events": [ + { + "uuid": "8da2d3dc-de21-4de1-a8cf-452e88336487", + "start": { + "$date": "2021-12-19T00:36:47.000Z" + }, + "end": { + "$date": "2021-12-19T01:34:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a10b14a-16e2-42a9-a764-aa09643aeb63", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T00:53:23.000Z" + }, + "end": { + "$date": "2021-12-19T01:26:16.000Z" + }, + "events": [ + { + "uuid": "38c07bc1-570f-49e6-bb24-840322886545", + "start": { + "$date": "2021-12-19T00:53:23.000Z" + }, + "end": { + "$date": "2021-12-19T01:26:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "651df4f3-caa9-4f66-95a6-3f41b970eb87", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T00:58:20.000Z" + }, + "end": { + "$date": "2021-12-19T01:12:26.000Z" + }, + "events": [ + { + "uuid": "cfdefe62-2ef3-4991-899e-55e40d4183c0", + "start": { + "$date": "2021-12-19T00:58:20.000Z" + }, + "end": { + "$date": "2021-12-19T01:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58b5e727-b616-4a96-8302-cd50b1de9156", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T01:13:11.000Z" + }, + "end": { + "$date": "2021-12-19T01:26:31.000Z" + }, + "events": [ + { + "uuid": "b7a3f843-711c-421d-8005-d698b3cfd851", + "start": { + "$date": "2021-12-19T01:13:11.000Z" + }, + "end": { + "$date": "2021-12-19T01:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d27d85b-8187-4f33-80cb-1b98a0a9504d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T01:33:57.000Z" + }, + "end": { + "$date": "2021-12-19T02:05:15.000Z" + }, + "events": [ + { + "uuid": "0e5c91dc-370a-4d1c-ad9b-3e6229e71994", + "start": { + "$date": "2021-12-19T01:33:57.000Z" + }, + "end": { + "$date": "2021-12-19T02:05:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99d3658e-be83-4493-adb0-d6d5f6487259", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T01:27:26.000Z" + }, + "end": { + "$date": "2021-12-19T01:44:07.000Z" + }, + "events": [ + { + "uuid": "f1a98014-50f0-474c-9a7e-ce0e96e21e1c", + "start": { + "$date": "2021-12-19T01:27:26.000Z" + }, + "end": { + "$date": "2021-12-19T01:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9c39024d-d071-40b6-a067-a1f8d109ff7c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T01:35:27.000Z" + }, + "end": { + "$date": "2021-12-19T04:00:35.000Z" + }, + "events": [ + { + "uuid": "9dbd61f8-9607-4d15-9959-65895b2c2877", + "start": { + "$date": "2021-12-19T01:35:27.000Z" + }, + "end": { + "$date": "2021-12-19T04:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b53cd85-0ad9-40e5-a53c-5daf14a336e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T01:47:18.000Z" + }, + "end": { + "$date": "2021-12-19T02:03:23.000Z" + }, + "events": [ + { + "uuid": "845c1910-d7bf-423a-b24d-fc43fc94e8ac", + "start": { + "$date": "2021-12-19T01:47:18.000Z" + }, + "end": { + "$date": "2021-12-19T02:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "635925e8-1e0f-49a6-81f9-eed8407e779e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-19T02:00:59.000Z" + }, + "end": { + "$date": "2021-12-19T04:21:29.000Z" + }, + "events": [ + { + "uuid": "29bf17db-741b-4990-b7f1-eca593369556", + "start": { + "$date": "2021-12-19T02:00:59.000Z" + }, + "end": { + "$date": "2021-12-19T04:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "004d66eb-72ea-43c0-8c41-31422e8820e4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T02:09:59.000Z" + }, + "end": { + "$date": "2021-12-19T02:31:14.000Z" + }, + "events": [ + { + "uuid": "8486a15f-bb77-451f-b754-32561ec3a506", + "start": { + "$date": "2021-12-19T02:09:59.000Z" + }, + "end": { + "$date": "2021-12-19T02:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "710db7a1-e98a-413e-9655-cdeace76c2c6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T02:05:45.000Z" + }, + "end": { + "$date": "2021-12-19T03:03:54.000Z" + }, + "events": [ + { + "uuid": "0fa8c790-36bb-481f-af66-e7247d7061f8", + "start": { + "$date": "2021-12-19T02:05:45.000Z" + }, + "end": { + "$date": "2021-12-19T03:03:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3733294a-3566-4564-bddd-32ea034fd6de", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T03:41:59.000Z" + }, + "end": { + "$date": "2021-12-19T03:42:19.000Z" + }, + "events": [ + { + "uuid": "173ae46d-e150-4e42-b42d-91cbd4aae8e0", + "start": { + "$date": "2021-12-19T03:41:59.000Z" + }, + "end": { + "$date": "2021-12-19T04:03:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69f17c1d-71cc-4e33-b6b5-2cf53d223be5", + "start": { + "$date": "2021-12-19T04:03:59.000Z" + }, + "end": { + "$date": "2021-12-19T04:04:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b5334e12-871b-49e4-a78b-3a77e18dfa72", + "start": { + "$date": "2021-12-19T04:04:59.000Z" + }, + "end": { + "$date": "2021-12-19T03:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da537e89-9cb0-4c70-a6f9-145c21f8ae19", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T03:23:32.000Z" + }, + "end": { + "$date": "2021-12-19T03:42:02.000Z" + }, + "events": [ + { + "uuid": "9364f72e-b61f-4bf6-9f05-78e2839f3b9d", + "start": { + "$date": "2021-12-19T03:23:32.000Z" + }, + "end": { + "$date": "2021-12-19T03:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ac5ff46-807b-4a22-b6cb-a1e3816fb1bc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T03:42:08.000Z" + }, + "end": { + "$date": "2021-12-19T03:42:09.000Z" + }, + "events": [ + { + "uuid": "36bfc505-4f27-42c9-866f-ade8feabb21c", + "start": { + "$date": "2021-12-19T03:42:08.000Z" + }, + "end": { + "$date": "2021-12-19T03:42:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0be892f3-1499-4326-9298-137d9fa29b6e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T04:14:19.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:25.000Z" + }, + "events": [ + { + "uuid": "a68e975f-58c4-48ad-b61e-79708379248c", + "start": { + "$date": "2021-12-19T04:14:19.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c33d882b-6db1-44aa-90be-7ff6e76f5604", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-19T03:46:42.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:22.000Z" + }, + "events": [ + { + "uuid": "1725e7ea-0995-4a44-b4f1-dc1ea190dbd4", + "start": { + "$date": "2021-12-19T03:46:42.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f8245ac-b329-455a-9dfb-aeeaf7f92f16", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T03:46:43.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:17.000Z" + }, + "events": [ + { + "uuid": "6c9fe43e-c341-43c5-9a4f-b03b1c8e36db", + "start": { + "$date": "2021-12-19T03:46:43.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53dd47dd-73a2-453e-a54d-8746e0d527db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T03:46:40.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:32.000Z" + }, + "events": [ + { + "uuid": "20fea664-87b3-4908-80de-203030d2acc8", + "start": { + "$date": "2021-12-19T03:46:40.000Z" + }, + "end": { + "$date": "2021-12-19T04:14:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0cbdb3c-ee3b-4553-89aa-3eb75ff2689e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T04:41:15.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:21.000Z" + }, + "events": [ + { + "uuid": "7959b462-d13b-4e93-856d-35ccd08f8b64", + "start": { + "$date": "2021-12-19T04:41:15.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ecddbc7-8cf3-4421-a655-3db113ed87f3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T04:19:16.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:24.000Z" + }, + "events": [ + { + "uuid": "38628a26-604f-42fb-9cf2-31cac930331f", + "start": { + "$date": "2021-12-19T04:19:16.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8a1b6d0-2326-4a67-854b-0c3cd64de819", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T04:19:18.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:09.000Z" + }, + "events": [ + { + "uuid": "8edad85e-8a65-47c2-83da-d7d8ecc1db89", + "start": { + "$date": "2021-12-19T04:19:18.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "626e3667-deaf-403c-b537-62359c297028", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-19T04:19:17.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:18.000Z" + }, + "events": [ + { + "uuid": "0a79d06f-28ea-4e8c-91a8-b240195eb145", + "start": { + "$date": "2021-12-19T04:19:17.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b6edf303-ba52-4893-9b76-02b565871dec", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-19T04:24:19.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:08.000Z" + }, + "events": [ + { + "uuid": "68b2132a-d845-4885-bb9d-7cfa1d63b849", + "start": { + "$date": "2021-12-19T04:24:19.000Z" + }, + "end": { + "$date": "2021-12-19T04:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8d53be02-4e4a-4dd9-b96b-44cce09dd623", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T04:28:04.000Z" + }, + "end": { + "$date": "2021-12-19T07:30:08.000Z" + }, + "events": [ + { + "uuid": "3a9f710e-bb40-4506-9753-6b12ba9e70f0", + "start": { + "$date": "2021-12-19T04:28:04.000Z" + }, + "end": { + "$date": "2021-12-19T07:30:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18902a80-f921-4ed8-8858-b11a385f33a1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T04:44:00.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:21.000Z" + }, + "events": [ + { + "uuid": "8a1088dd-fe88-43bd-a32a-9e31759896d4", + "start": { + "$date": "2021-12-19T04:44:00.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5fb6bb86-79f0-417f-8c48-87b80c38c179", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T04:44:04.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:23.000Z" + }, + "events": [ + { + "uuid": "e368c356-0691-4f6c-9522-ea70d9475992", + "start": { + "$date": "2021-12-19T04:44:04.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8da19592-3103-4334-9048-529725b37879", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T04:44:02.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:28.000Z" + }, + "events": [ + { + "uuid": "74f128f2-7367-428c-9acb-8299ae620510", + "start": { + "$date": "2021-12-19T04:44:02.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "358d62a6-cce5-4f57-8562-13eb841d62d5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-19T04:44:08.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:29.000Z" + }, + "events": [ + { + "uuid": "2d76628d-9e4f-4915-9447-4c6c69802b3a", + "start": { + "$date": "2021-12-19T04:44:08.000Z" + }, + "end": { + "$date": "2021-12-19T05:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8f67585-08db-4fb4-9854-d71ee0322052", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T05:05:15.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:17.000Z" + }, + "events": [ + { + "uuid": "d7e0717b-69ac-454b-969e-d7bb724a3b88", + "start": { + "$date": "2021-12-19T05:05:15.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "235c0cc4-2c4d-46f5-8beb-fa1eae12611f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T05:05:18.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:19.000Z" + }, + "events": [ + { + "uuid": "d16db0b2-9af3-46c1-94a5-8aebbda2a711", + "start": { + "$date": "2021-12-19T05:05:18.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20f32cc6-dec2-4e74-8b21-19695f15577c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T05:19:19.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:19.000Z" + }, + "events": [ + { + "uuid": "e57091e8-f1aa-475e-b437-bbb49e965a07", + "start": { + "$date": "2021-12-19T05:19:19.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e1c57a6-f258-49ea-b5d8-38d2acf8a926", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-19T05:05:18.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:24.000Z" + }, + "events": [ + { + "uuid": "2fe9db81-f4c7-43ac-ae39-4188cfc0d9c8", + "start": { + "$date": "2021-12-19T05:05:18.000Z" + }, + "end": { + "$date": "2021-12-19T05:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "213f148a-e6c6-477a-905b-dce310e7b83d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-19T05:14:18.000Z" + }, + "end": { + "$date": "2021-12-19T05:42:39.000Z" + }, + "events": [ + { + "uuid": "1b9ef7d0-024c-4865-9611-9ff2dc72f088", + "start": { + "$date": "2021-12-19T05:14:18.000Z" + }, + "end": { + "$date": "2021-12-19T05:42:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6987d3ce-fafd-4a7b-a522-bec13708027b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T05:48:01.000Z" + }, + "end": { + "$date": "2021-12-19T05:48:07.000Z" + }, + "events": [ + { + "uuid": "4d08939f-17cc-45fc-ae6f-3e716d401464", + "start": { + "$date": "2021-12-19T05:48:01.000Z" + }, + "end": { + "$date": "2021-12-19T05:48:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "939c9657-73bd-4dbc-b21a-cbb8a69f8b0e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T05:22:14.000Z" + }, + "end": { + "$date": "2021-12-19T05:48:05.000Z" + }, + "events": [ + { + "uuid": "821347a3-2599-40b4-b162-eee4224b8771", + "start": { + "$date": "2021-12-19T05:22:14.000Z" + }, + "end": { + "$date": "2021-12-19T05:48:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49c296aa-aeea-4020-94c9-ebf904886805", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T05:22:09.000Z" + }, + "end": { + "$date": "2021-12-19T05:47:59.000Z" + }, + "events": [ + { + "uuid": "c9e498c9-8cc2-4791-9b4e-f9a65f106217", + "start": { + "$date": "2021-12-19T05:22:09.000Z" + }, + "end": { + "$date": "2021-12-19T05:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1badbc4b-e18f-4cae-b3ef-75e5f6f2a7fc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-19T05:22:14.000Z" + }, + "end": { + "$date": "2021-12-19T05:48:04.000Z" + }, + "events": [ + { + "uuid": "e642155e-7897-4d8b-8c0b-19f5134edd00", + "start": { + "$date": "2021-12-19T05:22:14.000Z" + }, + "end": { + "$date": "2021-12-19T05:48:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3deca484-8c01-467c-a06e-aa36957eb732", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T05:53:35.000Z" + }, + "end": { + "$date": "2021-12-19T06:18:51.000Z" + }, + "events": [ + { + "uuid": "8777e45a-b65b-4920-93f0-80cd78231e24", + "start": { + "$date": "2021-12-19T05:53:35.000Z" + }, + "end": { + "$date": "2021-12-19T06:18:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "67ecbac0-9d7c-4aeb-8b5e-65a6b1bc7d7a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T05:49:21.000Z" + }, + "end": { + "$date": "2021-12-19T05:51:37.000Z" + }, + "events": [ + { + "uuid": "96f294c1-f088-428e-b584-e5195802dc16", + "start": { + "$date": "2021-12-19T05:49:21.000Z" + }, + "end": { + "$date": "2021-12-19T05:51:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "91faa2d0-0ce6-4964-a704-4044c805111c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-19T06:34:27.000Z" + }, + "end": { + "$date": "2021-12-19T07:22:58.000Z" + }, + "events": [ + { + "uuid": "6ed139b0-defd-47ed-9aff-b46f48700cf7", + "start": { + "$date": "2021-12-19T06:34:27.000Z" + }, + "end": { + "$date": "2021-12-19T07:22:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "51165c6e-8eca-4d81-b667-f9d604bbf302", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T06:48:10.000Z" + }, + "end": { + "$date": "2021-12-19T08:17:24.000Z" + }, + "events": [ + { + "uuid": "bd150202-300e-41d9-b98b-52da9846cd9e", + "start": { + "$date": "2021-12-19T06:48:10.000Z" + }, + "end": { + "$date": "2021-12-19T08:17:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "55bdfddb-894a-4924-a944-fea4ca62eed9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T07:30:23.000Z" + }, + "end": { + "$date": "2021-12-19T08:06:39.000Z" + }, + "events": [ + { + "uuid": "12b3e93f-c496-4300-b9a0-3419adbeb344", + "start": { + "$date": "2021-12-19T07:30:23.000Z" + }, + "end": { + "$date": "2021-12-19T08:06:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6ebef706-f4c1-4ee4-88a5-76c9df2ae9ad", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T10:09:45.000Z" + }, + "end": { + "$date": "2021-12-19T16:58:10.000Z" + }, + "events": [ + { + "uuid": "3f0257ad-24a5-47fc-8890-589641bb99f3", + "start": { + "$date": "2021-12-19T10:09:45.000Z" + }, + "end": { + "$date": "2021-12-19T16:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "490382b0-0ea3-4e25-ad6d-c585f85f7fe8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-19T16:22:36.000Z" + }, + "end": { + "$date": "2021-12-19T18:09:05.000Z" + }, + "events": [ + { + "uuid": "c5cf9640-e930-4569-b66e-1423845735f2", + "start": { + "$date": "2021-12-19T16:22:36.000Z" + }, + "end": { + "$date": "2021-12-19T17:31:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70ab7b9f-df7c-4457-9134-0be92bfea088", + "start": { + "$date": "2021-12-19T17:31:36.000Z" + }, + "end": { + "$date": "2021-12-19T17:45:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d554b618-38b7-4a14-82c2-90dbab534f55", + "start": { + "$date": "2021-12-19T17:45:36.000Z" + }, + "end": { + "$date": "2021-12-19T18:01:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2cfa14ae-cc7d-4989-abaa-8b89a6b69f86", + "start": { + "$date": "2021-12-19T18:01:36.000Z" + }, + "end": { + "$date": "2021-12-19T18:09:05.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ab2caef1-f4b6-48c4-a4cc-e7889dcb5df6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-19T16:48:55.000Z" + }, + "end": { + "$date": "2021-12-19T17:06:14.000Z" + }, + "events": [ + { + "uuid": "5c421642-78cc-4ffa-a71d-7c0fbb4e4269", + "start": { + "$date": "2021-12-19T16:48:55.000Z" + }, + "end": { + "$date": "2021-12-19T17:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "22e2f02a-f151-4e32-b308-7c95a9d923df", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-19T17:06:10.000Z" + }, + "end": { + "$date": "2021-12-19T18:01:22.000Z" + }, + "events": [ + { + "uuid": "0e280f12-8e29-4f03-b5e5-85c71ef33498", + "start": { + "$date": "2021-12-19T17:06:10.000Z" + }, + "end": { + "$date": "2021-12-19T18:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "77e0f6e6-649f-47b6-870a-7b35b0003f09", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-19T17:06:26.000Z" + }, + "end": { + "$date": "2021-12-19T18:30:54.000Z" + }, + "events": [ + { + "uuid": "874c99cb-d42e-4fc8-8e48-52ec98ee3859", + "start": { + "$date": "2021-12-19T17:06:26.000Z" + }, + "end": { + "$date": "2021-12-19T18:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f979f23b-9358-4e42-98c9-b56e09a8c7fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T17:48:01.000Z" + }, + "end": { + "$date": "2021-12-19T17:59:59.000Z" + }, + "events": [ + { + "uuid": "914c4412-c1d7-4efb-bb26-c0b9b5d3895e", + "start": { + "$date": "2021-12-19T17:48:01.000Z" + }, + "end": { + "$date": "2021-12-19T17:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ca9262bc-7b6f-4285-9dde-b56703e2a646", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T18:07:43.000Z" + }, + "end": { + "$date": "2021-12-19T18:57:28.000Z" + }, + "events": [ + { + "uuid": "5c862018-05b9-461c-816c-2f2ece948f5d", + "start": { + "$date": "2021-12-19T18:07:43.000Z" + }, + "end": { + "$date": "2021-12-19T18:27:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "85bc8c1d-9480-482c-845c-6797de28296b", + "start": { + "$date": "2021-12-19T18:27:43.000Z" + }, + "end": { + "$date": "2021-12-19T18:30:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "87ffe2e6-5a53-40cc-b7de-7c9570bbda16", + "start": { + "$date": "2021-12-19T18:30:43.000Z" + }, + "end": { + "$date": "2021-12-19T18:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b5d2fb0c-e686-4914-80d3-654cace556ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T18:58:14.000Z" + }, + "end": { + "$date": "2021-12-19T19:21:56.000Z" + }, + "events": [ + { + "uuid": "c8e12e99-4d07-40df-9b30-75024a79020e", + "start": { + "$date": "2021-12-19T18:58:14.000Z" + }, + "end": { + "$date": "2021-12-19T19:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "acddb886-d462-4cc7-b97d-aec1d9cebfc4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-19T19:13:50.000Z" + }, + "end": { + "$date": "2021-12-19T19:55:22.000Z" + }, + "events": [ + { + "uuid": "21ee0008-fd7c-4433-9869-6dae20f38f12", + "start": { + "$date": "2021-12-19T19:13:50.000Z" + }, + "end": { + "$date": "2021-12-19T19:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "302cdaa3-7d1e-4069-b4fd-1d919b5351d2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T19:23:07.000Z" + }, + "end": { + "$date": "2021-12-19T21:59:33.000Z" + }, + "events": [ + { + "uuid": "b7caa1cf-8fd7-4427-a918-b0fd41e14bc4", + "start": { + "$date": "2021-12-19T19:23:07.000Z" + }, + "end": { + "$date": "2021-12-19T19:38:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8223f448-e795-4703-8539-e4b78675bae1", + "start": { + "$date": "2021-12-19T19:38:07.000Z" + }, + "end": { + "$date": "2021-12-19T20:10:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "232a6897-d2f9-48d6-8a5b-5ece4ed1be50", + "start": { + "$date": "2021-12-19T20:10:07.000Z" + }, + "end": { + "$date": "2021-12-19T21:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05ff2932-0c66-4d7d-9b14-51ac28090a13", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T19:47:24.000Z" + }, + "end": { + "$date": "2021-12-19T20:26:35.000Z" + }, + "events": [ + { + "uuid": "234cc524-46dc-46ca-ba72-ab8deb1bc22c", + "start": { + "$date": "2021-12-19T19:47:24.000Z" + }, + "end": { + "$date": "2021-12-19T20:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4ddb5f4-b1d0-41d6-b974-9b1beae5c8f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T20:26:40.000Z" + }, + "end": { + "$date": "2021-12-19T20:52:43.000Z" + }, + "events": [ + { + "uuid": "ac45f220-2cd8-468c-8c3c-5f2ad257d592", + "start": { + "$date": "2021-12-19T20:26:40.000Z" + }, + "end": { + "$date": "2021-12-19T20:37:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ef1e499-0f35-48ac-8474-f856a4f8ef91", + "start": { + "$date": "2021-12-19T20:37:40.000Z" + }, + "end": { + "$date": "2021-12-19T20:52:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c29758e0-a349-493d-b113-3ad4fd071028", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T20:57:15.000Z" + }, + "end": { + "$date": "2021-12-19T22:29:23.000Z" + }, + "events": [ + { + "uuid": "777ef13a-afc1-4111-91e4-e47d7bae881f", + "start": { + "$date": "2021-12-19T20:57:15.000Z" + }, + "end": { + "$date": "2021-12-19T22:29:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "194090af-2b1e-4820-b7e9-d7fc6ea3a41e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T22:19:21.000Z" + }, + "end": { + "$date": "2021-12-19T23:00:46.000Z" + }, + "events": [ + { + "uuid": "48793a07-2382-47de-ba59-ded1b0d5711f", + "start": { + "$date": "2021-12-19T22:19:21.000Z" + }, + "end": { + "$date": "2021-12-19T23:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbae6e56-d85a-4626-bddb-0ab39035dd58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T22:36:42.000Z" + }, + "end": { + "$date": "2021-12-19T23:10:13.000Z" + }, + "events": [ + { + "uuid": "c3f13de5-78bc-4bf7-8388-ffecf949fd77", + "start": { + "$date": "2021-12-19T22:36:42.000Z" + }, + "end": { + "$date": "2021-12-19T23:10:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd95945d-cab5-444e-8eb2-6cd3cb5f099c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-19T23:23:20.000Z" + }, + "end": { + "$date": "2021-12-19T23:23:16.000Z" + }, + "events": [ + { + "uuid": "449e411d-c87e-4757-86fe-e898dd7abccd", + "start": { + "$date": "2021-12-19T23:23:20.000Z" + }, + "end": { + "$date": "2021-12-19T23:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e0d4e60-b75c-49e5-a8db-12a4cf6958e3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-19T23:13:02.000Z" + }, + "end": { + "$date": "2021-12-19T23:35:11.000Z" + }, + "events": [ + { + "uuid": "47b3372f-0e16-4138-9293-2f9eb381c427", + "start": { + "$date": "2021-12-19T23:13:02.000Z" + }, + "end": { + "$date": "2021-12-19T23:35:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2b5f36c-77b0-47ba-9737-36191daf70be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-19T23:47:07.000Z" + }, + "end": { + "$date": "2021-12-20T00:01:07.000Z" + }, + "events": [ + { + "uuid": "ae379b7c-62f7-449a-a114-e7bd3bc5ce76", + "start": { + "$date": "2021-12-19T23:47:07.000Z" + }, + "end": { + "$date": "2021-12-20T00:01:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fec52a71-ab06-4bd5-9c0e-64702b4c6676", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-20T00:01:53.000Z" + }, + "end": { + "$date": "2021-12-20T00:22:08.000Z" + }, + "events": [ + { + "uuid": "4cf22527-98a3-45f2-918b-8fa2dde8d345", + "start": { + "$date": "2021-12-20T00:01:53.000Z" + }, + "end": { + "$date": "2021-12-20T00:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33d05775-b734-4e7a-9474-0954dd3ae65e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-20T00:24:39.000Z" + }, + "end": { + "$date": "2021-12-20T00:43:44.000Z" + }, + "events": [ + { + "uuid": "2560b6f7-b18d-49cd-b601-4fdaf1ab8da8", + "start": { + "$date": "2021-12-20T00:24:39.000Z" + }, + "end": { + "$date": "2021-12-20T00:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "feb35a76-475d-41e7-8a92-35d207e8297e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-20T00:44:55.000Z" + }, + "end": { + "$date": "2021-12-20T01:17:25.000Z" + }, + "events": [ + { + "uuid": "cf0fe991-2486-4605-b760-177f6b339e67", + "start": { + "$date": "2021-12-20T00:44:55.000Z" + }, + "end": { + "$date": "2021-12-20T01:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50c77d32-bf1e-4fe3-824d-86fba8b4bf89", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T00:44:58.000Z" + }, + "end": { + "$date": "2021-12-20T01:17:48.000Z" + }, + "events": [ + { + "uuid": "acecbdc6-545e-49db-bef5-7fa2be679bd5", + "start": { + "$date": "2021-12-20T00:44:58.000Z" + }, + "end": { + "$date": "2021-12-20T01:17:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24e77b76-a9f3-4acb-ad1a-898be2c8206f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-20T01:18:56.000Z" + }, + "end": { + "$date": "2021-12-20T01:57:32.000Z" + }, + "events": [ + { + "uuid": "520eb808-a58c-42e1-9ca8-f4ac2bb5343d", + "start": { + "$date": "2021-12-20T01:18:56.000Z" + }, + "end": { + "$date": "2021-12-20T01:57:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "847e9f73-0e94-462a-b842-fd2724185688", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T01:18:52.000Z" + }, + "end": { + "$date": "2021-12-20T01:57:42.000Z" + }, + "events": [ + { + "uuid": "646676e5-ab4e-43c4-beaf-71cf9a343f6a", + "start": { + "$date": "2021-12-20T01:18:52.000Z" + }, + "end": { + "$date": "2021-12-20T01:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdb254f3-2ea5-4176-bd20-48196e9d1ce8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-20T02:18:11.000Z" + }, + "end": { + "$date": "2021-12-20T03:01:22.000Z" + }, + "events": [ + { + "uuid": "fd0a52ac-533f-416f-9aaf-3ba23ee3b6ff", + "start": { + "$date": "2021-12-20T02:18:11.000Z" + }, + "end": { + "$date": "2021-12-20T03:01:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d98d5bac-305c-401c-bb98-f0e0f252d4c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T02:15:45.000Z" + }, + "end": { + "$date": "2021-12-20T02:16:48.000Z" + }, + "events": [ + { + "uuid": "ced09133-46ee-489f-b8cc-3729294ef759", + "start": { + "$date": "2021-12-20T02:15:45.000Z" + }, + "end": { + "$date": "2021-12-20T02:16:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "014c3c59-f774-4fa3-ba80-3fc3601a79d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T02:18:11.000Z" + }, + "end": { + "$date": "2021-12-20T03:01:21.000Z" + }, + "events": [ + { + "uuid": "e86d35ee-72a7-4bd7-ad2c-079b9802118c", + "start": { + "$date": "2021-12-20T02:18:11.000Z" + }, + "end": { + "$date": "2021-12-20T03:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cefda905-1671-4e73-a1e2-3791036172a6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-19T22:19:21.000Z" + }, + "end": { + "$date": "2021-12-20T06:45:56.000Z" + }, + "events": [ + { + "uuid": "1bb5cc13-fb2c-4b2f-9297-d50369d96b03", + "start": { + "$date": "2021-12-19T22:19:21.000Z" + }, + "end": { + "$date": "2021-12-20T00:42:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f444c70b-f651-4f95-bc9b-2ab508b5b2d2", + "start": { + "$date": "2021-12-20T00:42:21.000Z" + }, + "end": { + "$date": "2021-12-20T00:47:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e3ed55b-7e18-46f5-b53c-ae56ff404fd1", + "start": { + "$date": "2021-12-20T00:47:21.000Z" + }, + "end": { + "$date": "2021-12-20T00:57:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a768b269-41ec-404a-bd98-38428e53e538", + "start": { + "$date": "2021-12-20T00:57:21.000Z" + }, + "end": { + "$date": "2021-12-20T01:08:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52ebbe93-2338-425f-a037-5b763abfcf1d", + "start": { + "$date": "2021-12-20T01:08:21.000Z" + }, + "end": { + "$date": "2021-12-20T06:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "132475fd-24a7-4b9a-b448-b133d8fb0762", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-20T03:07:03.000Z" + }, + "end": { + "$date": "2021-12-20T03:44:24.000Z" + }, + "events": [ + { + "uuid": "c17b08f4-de60-4930-8e13-8e408e2a5fe5", + "start": { + "$date": "2021-12-20T03:07:03.000Z" + }, + "end": { + "$date": "2021-12-20T03:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2292125d-8bac-42ae-89b4-86b64bd0d23c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T03:06:58.000Z" + }, + "end": { + "$date": "2021-12-20T03:44:28.000Z" + }, + "events": [ + { + "uuid": "a79159b3-a035-4196-98bc-8638724e05cd", + "start": { + "$date": "2021-12-20T03:06:58.000Z" + }, + "end": { + "$date": "2021-12-20T03:44:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6ee5ebc-b93e-48cd-b809-187ebaacbe83", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-20T03:46:48.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:43.000Z" + }, + "events": [ + { + "uuid": "566b671b-c8bd-4a5f-a77e-1e398c050f08", + "start": { + "$date": "2021-12-20T03:46:48.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faef9b5f-40bc-4f28-b406-309f917369da", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T03:46:53.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:32.000Z" + }, + "events": [ + { + "uuid": "6b341d88-e754-45b5-bf6e-f9a594303b1d", + "start": { + "$date": "2021-12-20T03:46:53.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "495948af-75ea-4429-bbc5-3ad7ef3d9c76", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-20T03:46:41.000Z" + }, + "end": { + "$date": "2021-12-20T03:51:34.000Z" + }, + "events": [ + { + "uuid": "5cd08171-7c87-42b2-804e-8334cd3cdc0b", + "start": { + "$date": "2021-12-20T03:46:41.000Z" + }, + "end": { + "$date": "2021-12-20T03:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "150b2163-a6bd-4459-bed3-5e79a3f74f11", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-20T03:46:50.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:42.000Z" + }, + "events": [ + { + "uuid": "cbb37633-0b1a-4feb-ac07-fee1c086fea0", + "start": { + "$date": "2021-12-20T03:46:50.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d698a3a-69ed-4948-b430-cea92026ae18", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-20T03:52:30.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:46.000Z" + }, + "events": [ + { + "uuid": "83a0b065-1ae3-4e28-af0c-ef72fd0d8b31", + "start": { + "$date": "2021-12-20T03:52:30.000Z" + }, + "end": { + "$date": "2021-12-20T04:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14a4b58f-5f8d-43a1-8847-82f9b9f1089f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-20T04:30:54.000Z" + }, + "end": { + "$date": "2021-12-20T04:50:36.000Z" + }, + "events": [ + { + "uuid": "0e29f4ef-478a-437a-a3b7-77af8eff66c0", + "start": { + "$date": "2021-12-20T04:30:54.000Z" + }, + "end": { + "$date": "2021-12-20T04:50:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "69704f8b-3d7d-411a-b3b0-ea050a90722f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-20T05:51:31.000Z" + }, + "end": { + "$date": "2021-12-20T06:00:20.000Z" + }, + "events": [ + { + "uuid": "6e340aab-6645-49b2-8919-e8a1fd8771b8", + "start": { + "$date": "2021-12-20T05:51:31.000Z" + }, + "end": { + "$date": "2021-12-20T06:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "78d44fdf-a9e0-4de0-ac81-049b01f9d041", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-20T12:20:50.000Z" + }, + "end": { + "$date": "2021-12-20T14:37:18.000Z" + }, + "events": [ + { + "uuid": "cb7c36c7-1fab-4067-b206-8e48d49943d2", + "start": { + "$date": "2021-12-20T12:20:50.000Z" + }, + "end": { + "$date": "2021-12-20T14:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "96d8d144-5cf8-468b-9bcd-00003584f825", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-20T16:43:29.000Z" + }, + "end": { + "$date": "2021-12-20T17:14:39.000Z" + }, + "events": [ + { + "uuid": "1b3ca115-55eb-4600-b483-6cf12c29bc03", + "start": { + "$date": "2021-12-20T16:43:29.000Z" + }, + "end": { + "$date": "2021-12-20T17:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ab03df04-6580-4a3b-b8dc-4939e7a56345", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-20T16:44:24.000Z" + }, + "end": { + "$date": "2021-12-20T17:25:51.000Z" + }, + "events": [ + { + "uuid": "ec201ffa-0708-4b21-a173-17b3783e18a9", + "start": { + "$date": "2021-12-20T16:44:24.000Z" + }, + "end": { + "$date": "2021-12-20T17:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a8f2897e-5858-4933-837c-2d6d0f824b5e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-20T17:40:23.000Z" + }, + "end": { + "$date": "2021-12-20T17:41:34.000Z" + }, + "events": [ + { + "uuid": "93c48925-86e1-46d1-add7-12cd9af7a179", + "start": { + "$date": "2021-12-20T17:40:23.000Z" + }, + "end": { + "$date": "2021-12-20T17:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "861ee5c0-674f-4022-9119-05d2d68dc579", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-20T17:49:55.000Z" + }, + "end": { + "$date": "2021-12-20T20:10:30.000Z" + }, + "events": [ + { + "uuid": "69352a6d-cb56-491a-83a8-93c824dc23cc", + "start": { + "$date": "2021-12-20T17:49:55.000Z" + }, + "end": { + "$date": "2021-12-20T18:00:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "81efc659-edcb-4201-8d39-e6b4cef7f024", + "start": { + "$date": "2021-12-20T18:00:55.000Z" + }, + "end": { + "$date": "2021-12-20T18:07:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a397bc24-5f50-42be-8dd1-832ae04d427a", + "start": { + "$date": "2021-12-20T18:07:55.000Z" + }, + "end": { + "$date": "2021-12-20T19:35:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2333f21a-c7e4-4f66-b4fc-fc84a4ae310b", + "start": { + "$date": "2021-12-20T19:35:55.000Z" + }, + "end": { + "$date": "2021-12-20T19:37:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e54abbef-93e9-4ff0-9815-4461aad6667d", + "start": { + "$date": "2021-12-20T19:37:55.000Z" + }, + "end": { + "$date": "2021-12-20T20:10:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fc7b71fe-488a-431a-b029-255c83f3ea7b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-20T22:57:44.000Z" + }, + "end": { + "$date": "2021-12-21T02:05:29.000Z" + }, + "events": [ + { + "uuid": "e8d47358-ffb6-456b-9ccf-bcfeec79244d", + "start": { + "$date": "2021-12-20T22:57:44.000Z" + }, + "end": { + "$date": "2021-12-21T00:07:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7effe623-7030-4e53-b087-23665e8e2d74", + "start": { + "$date": "2021-12-21T00:07:44.000Z" + }, + "end": { + "$date": "2021-12-21T00:49:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "40ac7b0c-0113-45d5-8903-4ddabe2d4839", + "start": { + "$date": "2021-12-21T00:49:44.000Z" + }, + "end": { + "$date": "2021-12-21T00:59:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "963d757a-7f19-4547-a4b0-1344463db69f", + "start": { + "$date": "2021-12-21T00:59:44.000Z" + }, + "end": { + "$date": "2021-12-21T02:17:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58f8e732-94b3-405f-ba0a-9ba439cc08d4", + "start": { + "$date": "2021-12-21T02:17:44.000Z" + }, + "end": { + "$date": "2021-12-21T02:27:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3d86b109-898e-4047-be60-08d6018c8706", + "start": { + "$date": "2021-12-21T02:27:44.000Z" + }, + "end": { + "$date": "2021-12-21T02:05:29.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad67910e-24cb-49e8-87b1-71ce011c43e7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-21T00:47:13.000Z" + }, + "end": { + "$date": "2021-12-21T01:16:35.000Z" + }, + "events": [ + { + "uuid": "28ebd9c0-3498-4fa8-bde6-9263e9f06e5f", + "start": { + "$date": "2021-12-21T00:47:13.000Z" + }, + "end": { + "$date": "2021-12-21T01:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9c1bead-66e0-4eb0-a7b4-2e18e69f92c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-21T00:47:30.000Z" + }, + "end": { + "$date": "2021-12-21T01:27:05.000Z" + }, + "events": [ + { + "uuid": "9cc6634b-8b18-4e58-990a-d61a1c75e231", + "start": { + "$date": "2021-12-21T00:47:30.000Z" + }, + "end": { + "$date": "2021-12-21T01:27:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e5d988ec-102f-48d7-930e-805ae891cd68", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-21T01:18:36.000Z" + }, + "end": { + "$date": "2021-12-21T02:09:52.000Z" + }, + "events": [ + { + "uuid": "0de4dccd-1f26-4540-8679-1962e9aeb7fe", + "start": { + "$date": "2021-12-21T01:18:36.000Z" + }, + "end": { + "$date": "2021-12-21T01:47:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4de1f17-e6e9-4d43-af80-af1c35477148", + "start": { + "$date": "2021-12-21T01:47:36.000Z" + }, + "end": { + "$date": "2021-12-21T01:56:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c3b79db-fd82-4503-a914-5d51d3249d42", + "start": { + "$date": "2021-12-21T01:56:36.000Z" + }, + "end": { + "$date": "2021-12-21T02:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5db4acc2-f845-4a4d-9417-93f8df987c79", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-21T01:31:10.000Z" + }, + "end": { + "$date": "2021-12-21T02:10:13.000Z" + }, + "events": [ + { + "uuid": "a6cf25e8-7619-4015-8ba6-acf39a9dbace", + "start": { + "$date": "2021-12-21T01:31:10.000Z" + }, + "end": { + "$date": "2021-12-21T02:10:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b36e4c62-f511-4793-9cf8-bfe7532f97f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-21T02:05:37.000Z" + }, + "end": { + "$date": "2021-12-21T03:22:09.000Z" + }, + "events": [ + { + "uuid": "fd26dda3-9969-4c02-9e06-6b8a0a2e8563", + "start": { + "$date": "2021-12-21T02:05:37.000Z" + }, + "end": { + "$date": "2021-12-21T03:06:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "677b1ac3-1335-46aa-b5b6-2412fa24e013", + "start": { + "$date": "2021-12-21T03:06:37.000Z" + }, + "end": { + "$date": "2021-12-21T03:16:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3f6e04d7-9290-4879-83c3-bede166bb668", + "start": { + "$date": "2021-12-21T03:16:37.000Z" + }, + "end": { + "$date": "2021-12-21T03:22:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21ff271a-9d7c-49fa-8b52-52e592483d6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-21T02:10:19.000Z" + }, + "end": { + "$date": "2021-12-21T02:11:54.000Z" + }, + "events": [ + { + "uuid": "728acb51-aa4c-4d4e-9466-6365859b3593", + "start": { + "$date": "2021-12-21T02:10:19.000Z" + }, + "end": { + "$date": "2021-12-21T02:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1384ca26-3554-4230-b448-a277f47ce39a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-21T02:14:08.000Z" + }, + "end": { + "$date": "2021-12-21T02:31:35.000Z" + }, + "events": [ + { + "uuid": "b9b80b9b-d26a-477e-83d9-94cbc241581f", + "start": { + "$date": "2021-12-21T02:14:08.000Z" + }, + "end": { + "$date": "2021-12-21T02:31:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0b381ed4-d4d2-4a58-baba-8f732d91f077", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-21T00:35:54.000Z" + }, + "end": { + "$date": "2021-12-21T03:33:39.000Z" + }, + "events": [ + { + "uuid": "eced49e2-7bef-45fa-885e-7dd8080eb18d", + "start": { + "$date": "2021-12-21T00:35:54.000Z" + }, + "end": { + "$date": "2021-12-21T03:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b45f7b30-c26d-4a30-a832-270d97326bea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-21T02:21:39.000Z" + }, + "end": { + "$date": "2021-12-21T02:51:45.000Z" + }, + "events": [ + { + "uuid": "d4bf82f9-54f2-4ceb-9250-6c700baf6fd0", + "start": { + "$date": "2021-12-21T02:21:39.000Z" + }, + "end": { + "$date": "2021-12-21T02:51:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60c817a8-d802-42d4-8438-103ed4d8801c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-21T02:21:35.000Z" + }, + "end": { + "$date": "2021-12-21T02:51:59.000Z" + }, + "events": [ + { + "uuid": "ed9923e4-a78f-4757-a15c-5a2bb4600688", + "start": { + "$date": "2021-12-21T02:21:35.000Z" + }, + "end": { + "$date": "2021-12-21T02:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fe65006-9e17-4470-a26a-6df1fb1190af", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-21T02:34:26.000Z" + }, + "end": { + "$date": "2021-12-21T02:52:13.000Z" + }, + "events": [ + { + "uuid": "2a5701b8-7862-46f3-9168-488348d1d61b", + "start": { + "$date": "2021-12-21T02:34:26.000Z" + }, + "end": { + "$date": "2021-12-21T02:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "61b3e589-5e6b-4580-824f-bce9699aa3e1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-21T02:36:39.000Z" + }, + "end": { + "$date": "2021-12-21T03:32:04.000Z" + }, + "events": [ + { + "uuid": "30632087-0a98-4f04-84af-490fe26c8d39", + "start": { + "$date": "2021-12-21T02:36:39.000Z" + }, + "end": { + "$date": "2021-12-21T03:32:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5e11566d-b7ce-4aca-88fa-d780acab1b9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-21T02:52:16.000Z" + }, + "end": { + "$date": "2021-12-21T03:09:25.000Z" + }, + "events": [ + { + "uuid": "9b044af8-1fd8-4288-9983-418d31e199c4", + "start": { + "$date": "2021-12-21T02:52:16.000Z" + }, + "end": { + "$date": "2021-12-21T03:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa7a03d6-57b1-4a37-ab1d-7fd157482337", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-21T02:54:03.000Z" + }, + "end": { + "$date": "2021-12-21T03:15:31.000Z" + }, + "events": [ + { + "uuid": "dcc87ffc-a2f9-4751-b532-5508c76f1e79", + "start": { + "$date": "2021-12-21T02:54:03.000Z" + }, + "end": { + "$date": "2021-12-21T03:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "8ab5d95c-876d-4e0b-844e-c69c206327aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-21T03:11:31.000Z" + }, + "end": { + "$date": "2021-12-21T03:43:22.000Z" + }, + "events": [ + { + "uuid": "b19b938b-f020-4af5-86b4-0502354198a7", + "start": { + "$date": "2021-12-21T03:11:31.000Z" + }, + "end": { + "$date": "2021-12-21T03:43:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "883e116e-83aa-4a73-832d-a60aaf22de38", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2021-12-21T03:17:31.000Z" + }, + "end": { + "$date": "2021-12-21T03:31:12.000Z" + }, + "events": [ + { + "uuid": "ff1cbde6-daea-4355-8acd-4911299fb65a", + "start": { + "$date": "2021-12-21T03:17:31.000Z" + }, + "end": { + "$date": "2021-12-21T03:31:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dac19380-887d-4dd2-9eff-9a9b1cf3626f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-21T03:33:54.000Z" + }, + "end": { + "$date": "2021-12-21T03:41:10.000Z" + }, + "events": [ + { + "uuid": "da6d2cb0-f3dd-4250-b66d-3ee20667216e", + "start": { + "$date": "2021-12-21T03:33:54.000Z" + }, + "end": { + "$date": "2021-12-21T03:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2254d051-5b3f-4b32-a064-81eed48ea844", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-21T03:41:25.000Z" + }, + "end": { + "$date": "2021-12-21T07:09:33.000Z" + }, + "events": [ + { + "uuid": "a87714b0-60f5-41d9-872a-16b8b729a4ca", + "start": { + "$date": "2021-12-21T03:41:25.000Z" + }, + "end": { + "$date": "2021-12-21T05:02:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7b6bbaa-f065-403c-87f0-4b8f022c141d", + "start": { + "$date": "2021-12-21T05:02:25.000Z" + }, + "end": { + "$date": "2021-12-21T05:07:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d5442e3-1eeb-4bd2-9f57-23d9d5950efa", + "start": { + "$date": "2021-12-21T05:07:25.000Z" + }, + "end": { + "$date": "2021-12-21T07:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4841164d-8b95-4d82-8a88-18bd7be25046", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-21T06:07:13.000Z" + }, + "end": { + "$date": "2021-12-21T06:42:51.000Z" + }, + "events": [ + { + "uuid": "dbacca13-2e13-499f-a544-08651c8bb221", + "start": { + "$date": "2021-12-21T06:07:13.000Z" + }, + "end": { + "$date": "2021-12-21T06:42:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf6639a2-6590-4889-9011-ae17d40c7176", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T06:16:26.000Z" + }, + "end": { + "$date": "2021-12-21T06:39:25.000Z" + }, + "events": [ + { + "uuid": "9908ec36-fbfa-41f2-8d5e-b22a7350a321", + "start": { + "$date": "2021-12-21T06:16:26.000Z" + }, + "end": { + "$date": "2021-12-21T06:39:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47933bca-2f01-416f-845f-2cd2c758a597", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T06:42:32.000Z" + }, + "end": { + "$date": "2021-12-21T07:09:17.000Z" + }, + "events": [ + { + "uuid": "f6be3086-5ed5-4096-8f27-99228eff1095", + "start": { + "$date": "2021-12-21T06:42:32.000Z" + }, + "end": { + "$date": "2021-12-21T07:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afa49a62-b343-4125-929f-4a86a77b43e4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T07:28:10.000Z" + }, + "end": { + "$date": "2021-12-21T07:56:56.000Z" + }, + "events": [ + { + "uuid": "a568f1d7-6067-4a97-95ea-6b7f40a0a3d0", + "start": { + "$date": "2021-12-21T07:28:10.000Z" + }, + "end": { + "$date": "2021-12-21T07:56:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1471e2dc-3c51-4ec8-85b2-59023549cc3a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T07:58:51.000Z" + }, + "end": { + "$date": "2021-12-21T08:16:41.000Z" + }, + "events": [ + { + "uuid": "961c7300-2918-48ed-b004-9c0c0f16ad83", + "start": { + "$date": "2021-12-21T07:58:51.000Z" + }, + "end": { + "$date": "2021-12-21T08:16:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "648c282c-0621-471e-88c3-af49dade6325", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-21T12:58:50.000Z" + }, + "end": { + "$date": "2021-12-21T14:59:34.000Z" + }, + "events": [ + { + "uuid": "3befc30c-5ca4-4bd0-9f12-449017968cef", + "start": { + "$date": "2021-12-21T12:58:50.000Z" + }, + "end": { + "$date": "2021-12-21T14:59:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "c85ae978-8962-4deb-bbce-9da6012f8ca8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-21T16:31:40.000Z" + }, + "end": { + "$date": "2021-12-21T16:35:03.000Z" + }, + "events": [ + { + "uuid": "c0fa5921-582d-4581-8c81-392477319d3b", + "start": { + "$date": "2021-12-21T16:31:40.000Z" + }, + "end": { + "$date": "2021-12-21T16:35:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "609d789a-18dc-4eaf-89b5-a18f52e4bfbd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T16:43:05.000Z" + }, + "end": { + "$date": "2021-12-21T16:45:30.000Z" + }, + "events": [ + { + "uuid": "ef2eed7c-14d5-4423-8351-8a87c589190e", + "start": { + "$date": "2021-12-21T16:43:05.000Z" + }, + "end": { + "$date": "2021-12-21T16:45:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "81eed0f3-0974-48c7-bedd-4a25d9bedf4e", + "uuid": "48b18677-1838-415b-9ac7-7d4f81466b00", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T16:47:05.000Z" + }, + "end": { + "$date": "2021-12-21T17:00:06.000Z" + }, + "events": [ + { + "uuid": "e928d08a-dfd6-4d8f-aaf5-76ae2d72cfd8", + "start": { + "$date": "2021-12-21T16:47:05.000Z" + }, + "end": { + "$date": "2021-12-21T17:00:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "a787a05e-4947-4bd6-ab95-a0adf82d384e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T17:01:31.000Z" + }, + "end": { + "$date": "2021-12-21T17:06:26.000Z" + }, + "events": [ + { + "uuid": "e674ae21-2afd-4ba9-aa43-83e82e5b0bdf", + "start": { + "$date": "2021-12-21T17:01:31.000Z" + }, + "end": { + "$date": "2021-12-21T17:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "fba59a3f-898e-4f31-a57a-98951e4f402c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T17:22:23.000Z" + }, + "end": { + "$date": "2021-12-21T17:28:24.000Z" + }, + "events": [ + { + "uuid": "f97e28e1-7e53-4b1f-a0c5-217dffda0049", + "start": { + "$date": "2021-12-21T17:22:23.000Z" + }, + "end": { + "$date": "2021-12-21T17:28:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e09a61a2-e7e3-4a49-bbe5-913325f5c91c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T17:28:59.000Z" + }, + "end": { + "$date": "2021-12-21T18:20:22.000Z" + }, + "events": [ + { + "uuid": "6341d873-73e2-492f-bc2b-2503be656f9b", + "start": { + "$date": "2021-12-21T17:28:59.000Z" + }, + "end": { + "$date": "2021-12-21T18:20:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f8269cc-f5e7-455b-a31b-6b140002d3f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-21T17:35:03.000Z" + }, + "end": { + "$date": "2021-12-21T17:54:59.000Z" + }, + "events": [ + { + "uuid": "7ada45c0-ef8d-49a0-af6c-11efeafd69d9", + "start": { + "$date": "2021-12-21T17:35:03.000Z" + }, + "end": { + "$date": "2021-12-21T17:54:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b27e0b1f-ac36-41cf-852f-6f72c5f0207f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T18:35:24.000Z" + }, + "end": { + "$date": "2021-12-21T18:56:00.000Z" + }, + "events": [ + { + "uuid": "852a4410-0062-452e-b99c-3d981a62240b", + "start": { + "$date": "2021-12-21T18:35:24.000Z" + }, + "end": { + "$date": "2021-12-21T18:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0875883c-fe52-41d0-8196-b5855c2a8126", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T18:56:05.000Z" + }, + "end": { + "$date": "2021-12-21T20:21:54.000Z" + }, + "events": [ + { + "uuid": "aee585fe-68ec-44dc-a47f-1b9fe8c98b3a", + "start": { + "$date": "2021-12-21T18:56:05.000Z" + }, + "end": { + "$date": "2021-12-21T20:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fe2d5998-ffd3-4bc8-85ee-589de75691f3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T20:21:29.000Z" + }, + "end": { + "$date": "2021-12-21T20:23:45.000Z" + }, + "events": [ + { + "uuid": "83c85889-4a97-429c-9696-7f3827850f7b", + "start": { + "$date": "2021-12-21T20:21:29.000Z" + }, + "end": { + "$date": "2021-12-21T20:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "843b504f-c036-4bfd-bdcb-fc783e9e2570", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T20:23:55.000Z" + }, + "end": { + "$date": "2021-12-21T20:28:16.000Z" + }, + "events": [ + { + "uuid": "2c40e5b0-a7cd-4cd1-bb9e-42d4cada807a", + "start": { + "$date": "2021-12-21T20:23:55.000Z" + }, + "end": { + "$date": "2021-12-21T20:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "35b9bd97-3079-4c74-bf96-dc53507c9b96", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-21T20:28:21.000Z" + }, + "end": { + "$date": "2021-12-21T23:39:06.000Z" + }, + "events": [ + { + "uuid": "01751ac1-8026-475b-91a2-b904a6175f3d", + "start": { + "$date": "2021-12-21T20:28:21.000Z" + }, + "end": { + "$date": "2021-12-21T23:39:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "12c4485e-3697-4a51-982b-75af6bd7e566", + "uuid": "7318af1e-b896-4165-8124-42d831882563", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T20:47:22.000Z" + }, + "end": { + "$date": "2021-12-21T22:04:32.000Z" + }, + "events": [ + { + "uuid": "4cb3d66b-88f9-4be4-ba8a-1b38fb337b01", + "start": { + "$date": "2021-12-21T20:47:22.000Z" + }, + "end": { + "$date": "2021-12-21T21:29:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "096d452a-92c3-459c-a2f5-39e01d31b232", + "start": { + "$date": "2021-12-21T21:29:22.000Z" + }, + "end": { + "$date": "2021-12-21T22:04:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac253b8b-367c-4d3a-bd88-406c666ffef6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-21T21:14:11.000Z" + }, + "end": { + "$date": "2021-12-21T21:36:45.000Z" + }, + "events": [ + { + "uuid": "90750790-fd50-4c3e-b142-0b787da48263", + "start": { + "$date": "2021-12-21T21:14:11.000Z" + }, + "end": { + "$date": "2021-12-21T21:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6895b88d-670d-4b23-9f8c-944bbd9de680", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-21T22:18:49.000Z" + }, + "end": { + "$date": "2021-12-21T22:43:11.000Z" + }, + "events": [ + { + "uuid": "13b842df-745e-4a1b-8b73-dcf16c6998ff", + "start": { + "$date": "2021-12-21T22:18:49.000Z" + }, + "end": { + "$date": "2021-12-21T22:43:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "477599d4-9fc9-406f-9f9e-901d11e12b74", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T22:17:09.000Z" + }, + "end": { + "$date": "2021-12-21T22:35:31.000Z" + }, + "events": [ + { + "uuid": "02e8394b-d972-4536-a0a5-42a43b11cec6", + "start": { + "$date": "2021-12-21T22:17:09.000Z" + }, + "end": { + "$date": "2021-12-21T22:35:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2dac0c3e-e7be-4919-b897-8dcf68a186d6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-21T22:32:22.000Z" + }, + "end": { + "$date": "2021-12-21T22:51:16.000Z" + }, + "events": [ + { + "uuid": "34694db9-111c-4dd1-806b-d4db27ed3e8a", + "start": { + "$date": "2021-12-21T22:32:22.000Z" + }, + "end": { + "$date": "2021-12-21T22:51:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "cda761a1-f6a5-45b9-8f2e-c5db77ece0af", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-21T22:52:59.000Z" + }, + "end": { + "$date": "2021-12-21T22:53:03.000Z" + }, + "events": [ + { + "uuid": "7a06ec2a-c124-4eb2-87f0-d35d1a600b23", + "start": { + "$date": "2021-12-21T22:52:59.000Z" + }, + "end": { + "$date": "2021-12-21T22:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fff41b2-e75f-491c-8b47-23613b2247aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-21T22:49:52.000Z" + }, + "end": { + "$date": "2021-12-21T23:29:02.000Z" + }, + "events": [ + { + "uuid": "c49bd029-3bfc-4ea0-bb1b-79d80d18c3ce", + "start": { + "$date": "2021-12-21T22:49:52.000Z" + }, + "end": { + "$date": "2021-12-21T23:29:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9adb316e-622e-4b31-9de5-aea3497513a0", + "uuid": "ad6a70c1-6d5b-4a67-9b8d-293e531b1cc4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-21T22:52:31.000Z" + }, + "end": { + "$date": "2021-12-22T00:11:55.000Z" + }, + "events": [ + { + "uuid": "09c4b2ef-3c75-4e4f-8fd6-ffddca408d60", + "start": { + "$date": "2021-12-21T22:52:31.000Z" + }, + "end": { + "$date": "2021-12-21T23:11:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f02d0f0b-42af-4339-b0b3-38ad0fc172b8", + "start": { + "$date": "2021-12-21T23:11:31.000Z" + }, + "end": { + "$date": "2021-12-21T23:35:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f8444d09-f952-4fc2-be5b-b32a6e46dda5", + "start": { + "$date": "2021-12-21T23:35:31.000Z" + }, + "end": { + "$date": "2021-12-21T23:37:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7913a6b-232b-4fd0-aaac-80389b77735d", + "start": { + "$date": "2021-12-21T23:37:31.000Z" + }, + "end": { + "$date": "2021-12-22T00:11:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bfc368df-7316-4090-9e65-42c8edb5126f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-21T23:20:21.000Z" + }, + "end": { + "$date": "2021-12-21T23:34:52.000Z" + }, + "events": [ + { + "uuid": "6a7cabb4-e5a4-4485-ba05-5c510bd99d61", + "start": { + "$date": "2021-12-21T23:20:21.000Z" + }, + "end": { + "$date": "2021-12-21T23:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9aa87c0-3a63-4440-9955-a3dcae621208", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-21T23:32:36.000Z" + }, + "end": { + "$date": "2021-12-22T00:02:39.000Z" + }, + "events": [ + { + "uuid": "dc8ae62b-1370-4569-b43e-5272c0d7bb65", + "start": { + "$date": "2021-12-21T23:32:36.000Z" + }, + "end": { + "$date": "2021-12-22T00:02:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9079ae0c-0517-48ab-b227-878dcdf91889", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T00:08:41.000Z" + }, + "end": { + "$date": "2021-12-22T00:13:29.000Z" + }, + "events": [ + { + "uuid": "e5ea285d-3cee-4d09-bcc5-0f4173fc3f96", + "start": { + "$date": "2021-12-22T00:08:41.000Z" + }, + "end": { + "$date": "2021-12-22T00:13:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc09f3c7-d96e-4ad2-b520-00f74360da94", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T00:15:15.000Z" + }, + "end": { + "$date": "2021-12-22T00:50:05.000Z" + }, + "events": [ + { + "uuid": "0e73918f-8fff-4b11-876b-eb4189eb48ce", + "start": { + "$date": "2021-12-22T00:15:15.000Z" + }, + "end": { + "$date": "2021-12-22T00:50:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "e711360d-492a-49c2-9e77-48d47342f916", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-22T00:13:14.000Z" + }, + "end": { + "$date": "2021-12-22T00:28:36.000Z" + }, + "events": [ + { + "uuid": "14b7301c-b668-4e8b-8f35-831860201082", + "start": { + "$date": "2021-12-22T00:13:14.000Z" + }, + "end": { + "$date": "2021-12-22T00:28:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5615c7c-7c8a-4581-8527-3501a0052536", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T00:15:16.000Z" + }, + "end": { + "$date": "2021-12-22T00:50:32.000Z" + }, + "events": [ + { + "uuid": "1b39575e-0a1d-4858-9175-325bb3e775bc", + "start": { + "$date": "2021-12-22T00:15:16.000Z" + }, + "end": { + "$date": "2021-12-22T00:50:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6449ac0-4a3a-4d2a-8948-0a7b3ea3c1b7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T00:15:11.000Z" + }, + "end": { + "$date": "2021-12-22T00:51:05.000Z" + }, + "events": [ + { + "uuid": "7c27ffb5-a02f-4973-92d1-605e14139609", + "start": { + "$date": "2021-12-22T00:15:11.000Z" + }, + "end": { + "$date": "2021-12-22T00:51:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edc7fa8c-5a44-4f1a-8e90-dce132e50ebc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T00:15:10.000Z" + }, + "end": { + "$date": "2021-12-22T00:50:18.000Z" + }, + "events": [ + { + "uuid": "ee399e72-112a-4fd6-856e-e9dda42c8a49", + "start": { + "$date": "2021-12-22T00:15:10.000Z" + }, + "end": { + "$date": "2021-12-22T00:50:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "17da6bb2-6cc5-4080-83c1-c524686bd25a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-22T00:20:37.000Z" + }, + "end": { + "$date": "2021-12-22T01:07:49.000Z" + }, + "events": [ + { + "uuid": "c60f7f86-9c00-4a11-9f60-7ba26035a562", + "start": { + "$date": "2021-12-22T00:20:37.000Z" + }, + "end": { + "$date": "2021-12-22T01:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "d36abf2f-f1b6-4fd9-971b-603b1d1a05c0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-22T00:31:43.000Z" + }, + "end": { + "$date": "2021-12-22T01:33:33.000Z" + }, + "events": [ + { + "uuid": "d8f5aa46-5eed-4dfc-a807-22b1579d6082", + "start": { + "$date": "2021-12-22T00:31:43.000Z" + }, + "end": { + "$date": "2021-12-22T01:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89caadbd-4183-4879-87af-c1dde07dc4f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T00:51:41.000Z" + }, + "end": { + "$date": "2021-12-22T01:30:56.000Z" + }, + "events": [ + { + "uuid": "6ec182c8-d489-416a-acc3-2133a6c227b8", + "start": { + "$date": "2021-12-22T00:51:41.000Z" + }, + "end": { + "$date": "2021-12-22T01:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab2b9d81-fb1c-4c42-b310-5b4f56377f87", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T00:51:44.000Z" + }, + "end": { + "$date": "2021-12-22T01:31:00.000Z" + }, + "events": [ + { + "uuid": "31d01422-5a36-4cbd-9bb4-b36b8c69b605", + "start": { + "$date": "2021-12-22T00:51:44.000Z" + }, + "end": { + "$date": "2021-12-22T01:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2538d023-def9-4bee-9757-13d2fe3333b3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T00:51:33.000Z" + }, + "end": { + "$date": "2021-12-22T01:31:00.000Z" + }, + "events": [ + { + "uuid": "b9acc46f-dae0-4d55-98bb-d6731f0badfa", + "start": { + "$date": "2021-12-22T00:51:33.000Z" + }, + "end": { + "$date": "2021-12-22T01:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09cd6d4d-ffc8-4b54-9e15-4c95e75d5536", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T00:51:33.000Z" + }, + "end": { + "$date": "2021-12-22T01:31:02.000Z" + }, + "events": [ + { + "uuid": "a4327ce9-e7d2-4541-af0d-cd19af11fc77", + "start": { + "$date": "2021-12-22T00:51:33.000Z" + }, + "end": { + "$date": "2021-12-22T01:31:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1a187f9b-e4ec-4a8a-a14a-02b1c0dc0200", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-22T01:22:46.000Z" + }, + "end": { + "$date": "2021-12-22T02:53:01.000Z" + }, + "events": [ + { + "uuid": "8e660843-ffd7-48a1-b3c6-ab827ed9aa0b", + "start": { + "$date": "2021-12-22T01:22:46.000Z" + }, + "end": { + "$date": "2021-12-22T02:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4232f95c-ab66-423e-b69d-d5883c7df3c0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T01:36:10.000Z" + }, + "end": { + "$date": "2021-12-22T02:10:12.000Z" + }, + "events": [ + { + "uuid": "58229569-eeae-40e1-9db7-18b0b743695a", + "start": { + "$date": "2021-12-22T01:36:10.000Z" + }, + "end": { + "$date": "2021-12-22T02:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1939de73-ffb1-4403-9f4c-cafa5c7058ec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-22T01:35:09.000Z" + }, + "end": { + "$date": "2021-12-22T01:41:54.000Z" + }, + "events": [ + { + "uuid": "4414414b-438a-4c1e-9f83-29c261fde3b5", + "start": { + "$date": "2021-12-22T01:35:09.000Z" + }, + "end": { + "$date": "2021-12-22T01:41:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea754468-2607-42b8-b3db-8341d9b79518", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T01:36:17.000Z" + }, + "end": { + "$date": "2021-12-22T02:10:23.000Z" + }, + "events": [ + { + "uuid": "82d746df-c97f-46b1-9e95-130c52d1123b", + "start": { + "$date": "2021-12-22T01:36:17.000Z" + }, + "end": { + "$date": "2021-12-22T02:10:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ce690a8-f3a4-485d-bc0c-70df2bec3572", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T01:36:15.000Z" + }, + "end": { + "$date": "2021-12-22T02:10:15.000Z" + }, + "events": [ + { + "uuid": "0608a1c2-b701-4f61-bcde-85af53f8bae6", + "start": { + "$date": "2021-12-22T01:36:15.000Z" + }, + "end": { + "$date": "2021-12-22T02:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed604654-a186-4d07-b0fe-f2f83e3ab8ff", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T02:25:44.000Z" + }, + "end": { + "$date": "2021-12-22T02:51:20.000Z" + }, + "events": [ + { + "uuid": "b5f0d8ac-9d76-423b-99fa-61fe12c433b9", + "start": { + "$date": "2021-12-22T02:25:44.000Z" + }, + "end": { + "$date": "2021-12-22T02:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bc931fc-996b-45db-854e-1b35c28d8fb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T02:25:47.000Z" + }, + "end": { + "$date": "2021-12-22T02:51:34.000Z" + }, + "events": [ + { + "uuid": "5f583f9c-8dac-4db5-9454-fdbc529f31aa", + "start": { + "$date": "2021-12-22T02:25:47.000Z" + }, + "end": { + "$date": "2021-12-22T02:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9cb6d59-dd1e-4817-86fc-070ed1cc50cc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T02:25:46.000Z" + }, + "end": { + "$date": "2021-12-22T02:51:26.000Z" + }, + "events": [ + { + "uuid": "f7ae13bc-2d83-480c-829d-08d42fcb6860", + "start": { + "$date": "2021-12-22T02:25:46.000Z" + }, + "end": { + "$date": "2021-12-22T02:51:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d4867c4-8710-43dd-b65b-a1f63f5cea2d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T02:57:45.000Z" + }, + "end": { + "$date": "2021-12-22T03:25:26.000Z" + }, + "events": [ + { + "uuid": "4f973ab0-8e1e-4fd6-ac4a-a889a3f37388", + "start": { + "$date": "2021-12-22T02:57:45.000Z" + }, + "end": { + "$date": "2021-12-22T03:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb76bd91-abfe-425b-8c3d-b3b6fff7efcb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T02:57:47.000Z" + }, + "end": { + "$date": "2021-12-22T03:25:27.000Z" + }, + "events": [ + { + "uuid": "93e96a72-a2bf-4512-b87b-78344746a5fd", + "start": { + "$date": "2021-12-22T02:57:47.000Z" + }, + "end": { + "$date": "2021-12-22T03:25:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a7e69f0-68e1-4475-9f27-9ce1fa5074c2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T02:57:44.000Z" + }, + "end": { + "$date": "2021-12-22T03:25:34.000Z" + }, + "events": [ + { + "uuid": "d0489ea6-73e5-4307-a3f8-909c266b4014", + "start": { + "$date": "2021-12-22T02:57:44.000Z" + }, + "end": { + "$date": "2021-12-22T03:25:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "81c802a5-e3ba-4412-9493-dd11ca38d965", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-21T23:22:52.000Z" + }, + "end": { + "$date": "2021-12-22T05:15:26.000Z" + }, + "events": [ + { + "uuid": "1eeff59a-2ef2-4b60-aff6-7662a4f468a9", + "start": { + "$date": "2021-12-21T23:22:52.000Z" + }, + "end": { + "$date": "2021-12-22T05:15:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e64a2bbe-261e-443d-b94c-af2f57047fd4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T03:37:50.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:41.000Z" + }, + "events": [ + { + "uuid": "068f40d7-0c8f-47d2-83fc-acad518c2ce0", + "start": { + "$date": "2021-12-22T03:37:50.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb927c8f-d36a-4302-8bf1-319e3544a012", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T03:26:14.000Z" + }, + "end": { + "$date": "2021-12-22T03:28:00.000Z" + }, + "events": [ + { + "uuid": "8f88b00c-dde6-4499-a748-a8fda171298d", + "start": { + "$date": "2021-12-22T03:26:14.000Z" + }, + "end": { + "$date": "2021-12-22T03:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "967cf956-3eb8-4276-bcd3-1f1717d17f9d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T03:26:10.000Z" + }, + "end": { + "$date": "2021-12-22T03:28:01.000Z" + }, + "events": [ + { + "uuid": "403f6005-1d20-4f15-ab92-ad6d74829c33", + "start": { + "$date": "2021-12-22T03:26:10.000Z" + }, + "end": { + "$date": "2021-12-22T03:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "383145a7-6d81-4a5f-95eb-19d9e2c384c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T03:26:10.000Z" + }, + "end": { + "$date": "2021-12-22T03:27:59.000Z" + }, + "events": [ + { + "uuid": "20e0d8ab-3cf5-4281-84e2-e82ae3bb1f15", + "start": { + "$date": "2021-12-22T03:26:10.000Z" + }, + "end": { + "$date": "2021-12-22T03:27:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b09819b1-3612-4d1f-8163-75982f2394c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T03:37:44.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:49.000Z" + }, + "events": [ + { + "uuid": "7007dbd5-4edb-4426-8db5-0f26cfc90880", + "start": { + "$date": "2021-12-22T03:37:44.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea0927c1-7bcf-4bb7-9439-dc34f6debb42", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T03:37:42.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:42.000Z" + }, + "events": [ + { + "uuid": "269e0d24-fc80-4087-83aa-58388f18d47d", + "start": { + "$date": "2021-12-22T03:37:42.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "807dece4-b490-4d58-8787-fa83821e6437", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T03:37:51.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:50.000Z" + }, + "events": [ + { + "uuid": "6692523f-0333-492c-8720-79bf9511e013", + "start": { + "$date": "2021-12-22T03:37:51.000Z" + }, + "end": { + "$date": "2021-12-22T04:08:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "dd92d9c7-0dc1-4f04-be0b-043dd9c767ca", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-22T03:44:02.000Z" + }, + "end": { + "$date": "2021-12-22T03:55:19.000Z" + }, + "events": [ + { + "uuid": "b1d76fdf-3d45-471d-84df-7781d425e43c", + "start": { + "$date": "2021-12-22T03:44:02.000Z" + }, + "end": { + "$date": "2021-12-22T03:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3f03339b-58c4-4d04-8a05-a18e8e630873", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-22T04:03:45.000Z" + }, + "end": { + "$date": "2021-12-22T04:18:32.000Z" + }, + "events": [ + { + "uuid": "c463abf9-15b7-495c-b1e3-31fa0b37f37f", + "start": { + "$date": "2021-12-22T04:03:45.000Z" + }, + "end": { + "$date": "2021-12-22T04:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74ca8ecb-557d-467b-8e38-d156dec9da8e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T04:15:01.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:26.000Z" + }, + "events": [ + { + "uuid": "5160279d-4e0e-4706-a7af-653dae12d6d8", + "start": { + "$date": "2021-12-22T04:15:01.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73f6c566-a6da-4dc6-bf36-61041b6621a5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T04:14:58.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:34.000Z" + }, + "events": [ + { + "uuid": "ed82f1f6-a7f0-4d06-ad7e-25cd50678b28", + "start": { + "$date": "2021-12-22T04:14:58.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae449c8b-aff2-425e-9a3b-cf859fa996a7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T04:14:53.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:24.000Z" + }, + "events": [ + { + "uuid": "8893bf8f-64fc-4a64-a3f7-1f07de0e040f", + "start": { + "$date": "2021-12-22T04:14:53.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23032553-6a81-4eee-aeb0-1fe8958c7790", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T04:14:59.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:29.000Z" + }, + "events": [ + { + "uuid": "9982f5ee-feb6-4867-ac17-b6074eeddc07", + "start": { + "$date": "2021-12-22T04:14:59.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f9b3c3a-5446-477f-9bf8-580ada5a8316", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T04:15:00.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:30.000Z" + }, + "events": [ + { + "uuid": "81692b49-f75b-4f5d-9b7e-1ae552d62224", + "start": { + "$date": "2021-12-22T04:15:00.000Z" + }, + "end": { + "$date": "2021-12-22T04:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7542f543-5d19-4179-b734-1a0b4d934ed2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T04:36:01.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:42.000Z" + }, + "events": [ + { + "uuid": "04e3eca7-d8a1-46be-a84d-76a9b8fee785", + "start": { + "$date": "2021-12-22T04:36:01.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37307a6d-2e8f-40a4-82f9-0af0e871f99c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T04:36:01.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:41.000Z" + }, + "events": [ + { + "uuid": "f81ee7d3-6ae3-485a-bb0c-7325336fbf6b", + "start": { + "$date": "2021-12-22T04:36:01.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8763eb37-d894-46f7-b66e-d95c1c3b7955", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T04:36:09.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:51.000Z" + }, + "events": [ + { + "uuid": "74ff5a26-267a-4006-88ec-ebc8baa56753", + "start": { + "$date": "2021-12-22T04:36:09.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14a67b00-b8cd-43cd-b5b9-e236a88d7436", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T04:35:59.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:50.000Z" + }, + "events": [ + { + "uuid": "36c8df16-02aa-4bf1-8a6d-bdf2abd96c3c", + "start": { + "$date": "2021-12-22T04:35:59.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1288d6eb-666a-4948-b329-3845fd87f56b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T04:36:05.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:48.000Z" + }, + "events": [ + { + "uuid": "577f1c06-17a3-40f2-b87e-8cea0a2c7042", + "start": { + "$date": "2021-12-22T04:36:05.000Z" + }, + "end": { + "$date": "2021-12-22T04:57:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c8e968e-4958-4105-a49b-89e9138ec405", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T05:00:52.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:28.000Z" + }, + "events": [ + { + "uuid": "b4eab1a0-babb-4447-a669-647abf5425b8", + "start": { + "$date": "2021-12-22T05:00:52.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "863e4c83-fd8a-45c8-8687-e05811bdf431", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T05:00:56.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:20.000Z" + }, + "events": [ + { + "uuid": "dbcedac7-d977-4990-be14-124874126c37", + "start": { + "$date": "2021-12-22T05:00:56.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b707374-946e-4144-9650-ff8138d267f8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T05:00:56.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:27.000Z" + }, + "events": [ + { + "uuid": "2684c32c-f13d-4544-98d2-72a10ada4700", + "start": { + "$date": "2021-12-22T05:00:56.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b45f69c2-5279-4290-9c9b-b9854f920f10", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T05:00:55.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:26.000Z" + }, + "events": [ + { + "uuid": "82ac2623-f71e-41ed-8175-51e0d9089685", + "start": { + "$date": "2021-12-22T05:00:55.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f203b2dc-4fe7-412a-ada0-fa31ba7f8652", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T05:01:00.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:22.000Z" + }, + "events": [ + { + "uuid": "a184622a-4692-4798-a6f9-85f75d50c2e4", + "start": { + "$date": "2021-12-22T05:01:00.000Z" + }, + "end": { + "$date": "2021-12-22T05:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "20449e3f-dfb0-4ed1-8c01-2fe6559ebe61", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-22T05:15:50.000Z" + }, + "end": { + "$date": "2021-12-22T05:36:22.000Z" + }, + "events": [ + { + "uuid": "f9322600-62c0-4801-87d3-55936e8de300", + "start": { + "$date": "2021-12-22T05:15:50.000Z" + }, + "end": { + "$date": "2021-12-22T05:36:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6971df50-7ba8-4ca4-bf5e-4efe09a52ecf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T05:22:57.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:02.000Z" + }, + "events": [ + { + "uuid": "1e186c86-7b73-4712-ab15-0396e792b1f4", + "start": { + "$date": "2021-12-22T05:22:57.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33eafb99-aadb-4093-b2f2-11a9d489f32c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T05:22:57.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:12.000Z" + }, + "events": [ + { + "uuid": "8b00544f-875c-42dd-b794-dae6cc267581", + "start": { + "$date": "2021-12-22T05:22:57.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f53be28b-1ec0-4014-9a29-53669dd3b98f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T05:22:56.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:13.000Z" + }, + "events": [ + { + "uuid": "26af93f7-372f-43f2-b24a-f74b82e48252", + "start": { + "$date": "2021-12-22T05:22:56.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d25fc880-b9e1-4996-b827-8b92ae59aa57", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T05:22:57.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:19.000Z" + }, + "events": [ + { + "uuid": "d3d25ff9-9f64-4700-a1bb-8b85708a0c1e", + "start": { + "$date": "2021-12-22T05:22:57.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f521c55b-99f7-44f5-ae50-36a549f15ffc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T05:22:51.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:07.000Z" + }, + "events": [ + { + "uuid": "b44d608f-d545-4e91-8556-38b2690a14cb", + "start": { + "$date": "2021-12-22T05:22:51.000Z" + }, + "end": { + "$date": "2021-12-22T05:41:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7058b481-5ae5-45d6-8db6-36b2dd54d1bb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-22T05:36:36.000Z" + }, + "end": { + "$date": "2021-12-22T06:54:51.000Z" + }, + "events": [ + { + "uuid": "7570c147-734e-442b-aefa-3f6a70f0935e", + "start": { + "$date": "2021-12-22T05:36:36.000Z" + }, + "end": { + "$date": "2021-12-22T06:54:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a27d506-a566-4c80-95a4-ff9c8f30bd31", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T05:44:18.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:33.000Z" + }, + "events": [ + { + "uuid": "c889875e-b4f7-4ddb-ab89-89a5f7aa44e2", + "start": { + "$date": "2021-12-22T05:44:18.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60854159-7992-47d7-bb1a-544507e1147a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T05:44:13.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:41.000Z" + }, + "events": [ + { + "uuid": "1a058254-0a22-4a15-90ce-22f9f63f2134", + "start": { + "$date": "2021-12-22T05:44:13.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d77f711-ec80-48ab-b94c-68417ce8b321", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T05:44:07.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:36.000Z" + }, + "events": [ + { + "uuid": "68f75721-08b7-4900-8096-eee74eb9dd2c", + "start": { + "$date": "2021-12-22T05:44:07.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69d85508-af81-43e7-9304-879661c8bad8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T05:44:12.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:38.000Z" + }, + "events": [ + { + "uuid": "d3ffdb71-223b-4b80-8f9b-17ba0b67cb60", + "start": { + "$date": "2021-12-22T05:44:12.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3eb8e529-d5c7-4eb0-9bdb-1a5958f7e3b8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T05:44:17.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:38.000Z" + }, + "events": [ + { + "uuid": "1b10f76c-62c9-4a98-a1dd-7199643ba343", + "start": { + "$date": "2021-12-22T05:44:17.000Z" + }, + "end": { + "$date": "2021-12-22T06:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55ebd1ae-60dd-4f4a-b822-4775a78985ce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T06:14:22.000Z" + }, + "end": { + "$date": "2021-12-22T06:18:42.000Z" + }, + "events": [ + { + "uuid": "3e2e3d5b-a504-4137-92a6-f06970f147c2", + "start": { + "$date": "2021-12-22T06:14:22.000Z" + }, + "end": { + "$date": "2021-12-22T06:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "957e4699-ae5b-483c-9c5e-a70ae787eb63", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-22T06:15:00.000Z" + }, + "end": { + "$date": "2021-12-22T07:35:38.000Z" + }, + "events": [ + { + "uuid": "1a4558c6-4c03-475e-84b3-61dccf7c48a1", + "start": { + "$date": "2021-12-22T06:15:00.000Z" + }, + "end": { + "$date": "2021-12-22T07:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d029314-463a-46ed-a1b4-e9b986c6b50a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T06:29:29.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:55.000Z" + }, + "events": [ + { + "uuid": "e044623e-8098-41c5-bea2-edd868b0fd76", + "start": { + "$date": "2021-12-22T06:29:29.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3cb1ca30-28df-47ca-9b47-cbc1aea77f86", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T06:19:23.000Z" + }, + "end": { + "$date": "2021-12-22T06:34:59.000Z" + }, + "events": [ + { + "uuid": "91b6e8dd-57d5-4003-ac69-ac8caebe8b97", + "start": { + "$date": "2021-12-22T06:19:23.000Z" + }, + "end": { + "$date": "2021-12-22T06:34:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6997f98d-2703-4ab6-9cc8-3850e518192a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T06:22:56.000Z" + }, + "end": { + "$date": "2021-12-22T06:23:24.000Z" + }, + "events": [ + { + "uuid": "a7f0963a-323d-4e57-91ea-f2a5ece35344", + "start": { + "$date": "2021-12-22T06:22:56.000Z" + }, + "end": { + "$date": "2021-12-22T06:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb4f807d-54fc-41db-b2a3-e6dbf30b238e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T06:22:52.000Z" + }, + "end": { + "$date": "2021-12-22T06:23:26.000Z" + }, + "events": [ + { + "uuid": "1abbaa4b-8a2d-423f-9e60-bb0f431de684", + "start": { + "$date": "2021-12-22T06:22:52.000Z" + }, + "end": { + "$date": "2021-12-22T06:23:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c177d45-ebc8-4d5a-9a3f-b169ae4b6d43", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T06:22:52.000Z" + }, + "end": { + "$date": "2021-12-22T06:23:25.000Z" + }, + "events": [ + { + "uuid": "9e723d4b-25df-4b9f-add5-80a4eaa69eb2", + "start": { + "$date": "2021-12-22T06:22:52.000Z" + }, + "end": { + "$date": "2021-12-22T06:23:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "adb5e3fa-3530-4924-bd2c-2a57350b6754", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T06:29:36.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:52.000Z" + }, + "events": [ + { + "uuid": "cc89e119-f602-4b4d-974e-6c74ee4ffe3d", + "start": { + "$date": "2021-12-22T06:29:36.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0a5bf25-094c-46b0-b66a-46b338c5cca5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-22T06:29:38.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:54.000Z" + }, + "events": [ + { + "uuid": "c6dffb51-75ee-497d-bc0b-e4aaa63b907d", + "start": { + "$date": "2021-12-22T06:29:38.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f7a90ca-7b2c-463d-97fe-7835131f8918", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-22T06:29:29.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:59.000Z" + }, + "events": [ + { + "uuid": "3170f738-0dae-4512-9dc1-d238022beeec", + "start": { + "$date": "2021-12-22T06:29:29.000Z" + }, + "end": { + "$date": "2021-12-22T06:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32ea3a95-7627-46ed-a650-f99ff337db15", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T06:58:35.000Z" + }, + "end": { + "$date": "2021-12-22T07:19:51.000Z" + }, + "events": [ + { + "uuid": "b5d58ad1-6b23-4678-8fa1-830499a5fdbe", + "start": { + "$date": "2021-12-22T06:58:35.000Z" + }, + "end": { + "$date": "2021-12-22T07:19:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "426281fe-804d-44bc-8578-12dde080aa56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T06:58:43.000Z" + }, + "end": { + "$date": "2021-12-22T07:20:00.000Z" + }, + "events": [ + { + "uuid": "9adfc3e8-e69e-4aa3-bada-98735847b300", + "start": { + "$date": "2021-12-22T06:58:43.000Z" + }, + "end": { + "$date": "2021-12-22T07:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88bb17c2-1640-463a-af18-c92bcc40a28f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T07:24:06.000Z" + }, + "end": { + "$date": "2021-12-22T07:46:27.000Z" + }, + "events": [ + { + "uuid": "b6dfaeeb-254f-41ac-bd1a-7feeb37054d6", + "start": { + "$date": "2021-12-22T07:24:06.000Z" + }, + "end": { + "$date": "2021-12-22T07:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d2d83af-532b-4b44-874e-565390b56567", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T07:24:04.000Z" + }, + "end": { + "$date": "2021-12-22T07:46:25.000Z" + }, + "events": [ + { + "uuid": "a5c93ea8-356c-4ac3-b520-a4b5de1cfa39", + "start": { + "$date": "2021-12-22T07:24:04.000Z" + }, + "end": { + "$date": "2021-12-22T07:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f577dc41-1919-48f1-97c4-ed6651b7de01", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-22T07:50:47.000Z" + }, + "end": { + "$date": "2021-12-22T08:22:53.000Z" + }, + "events": [ + { + "uuid": "98c40f4e-62a5-4e5c-aa5c-3b0aeecd5543", + "start": { + "$date": "2021-12-22T07:50:47.000Z" + }, + "end": { + "$date": "2021-12-22T08:22:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3973c65-ca4a-4890-988d-7798afd83e8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T07:51:00.000Z" + }, + "end": { + "$date": "2021-12-22T08:22:58.000Z" + }, + "events": [ + { + "uuid": "609b2622-89b6-4874-ac99-6914a24d12c0", + "start": { + "$date": "2021-12-22T07:51:00.000Z" + }, + "end": { + "$date": "2021-12-22T08:22:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0dbafa9d-b871-4144-8bda-ce9da2f443d3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-22T09:52:52.000Z" + }, + "end": { + "$date": "2021-12-22T11:40:37.000Z" + }, + "events": [ + { + "uuid": "e0447ba7-2b73-443c-8f3d-05f46a2e5920", + "start": { + "$date": "2021-12-22T09:52:52.000Z" + }, + "end": { + "$date": "2021-12-22T11:40:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9f8616be-f876-4f5a-ab6a-0f894f9db401", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T16:10:22.000Z" + }, + "end": { + "$date": "2021-12-22T16:38:14.000Z" + }, + "events": [ + { + "uuid": "825ae601-b09c-4f9a-8025-abfea8c7e508", + "start": { + "$date": "2021-12-22T16:10:22.000Z" + }, + "end": { + "$date": "2021-12-22T16:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "35ec4e00-6719-4066-ada3-a62d45314af2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T16:38:24.000Z" + }, + "end": { + "$date": "2021-12-22T16:44:00.000Z" + }, + "events": [ + { + "uuid": "9f506197-95d7-46a3-b3aa-25d367280ec4", + "start": { + "$date": "2021-12-22T16:38:24.000Z" + }, + "end": { + "$date": "2021-12-22T16:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a3cceb01-9184-4305-8f0c-2b9059072e2b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T16:44:10.000Z" + }, + "end": { + "$date": "2021-12-22T17:05:21.000Z" + }, + "events": [ + { + "uuid": "bd31a9bf-576a-43a9-8f1f-7baaf73f9b2d", + "start": { + "$date": "2021-12-22T16:44:10.000Z" + }, + "end": { + "$date": "2021-12-22T17:05:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64e90ea6-dbdf-452e-840a-b01d57103570", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T17:41:07.000Z" + }, + "end": { + "$date": "2021-12-22T17:54:40.000Z" + }, + "events": [ + { + "uuid": "616154cb-7065-4909-b8e4-77ac8abeabb4", + "start": { + "$date": "2021-12-22T17:41:07.000Z" + }, + "end": { + "$date": "2021-12-22T17:53:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "75a59178-f69d-4069-9ca6-4a0a9ae07129", + "start": { + "$date": "2021-12-22T17:53:07.000Z" + }, + "end": { + "$date": "2021-12-22T17:54:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ab7a71ef-91bf-4769-9e4a-1a262264aa44", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T18:12:29.000Z" + }, + "end": { + "$date": "2021-12-22T18:31:45.000Z" + }, + "events": [ + { + "uuid": "e568bf63-3e47-4c00-b49c-473540e6c139", + "start": { + "$date": "2021-12-22T18:12:29.000Z" + }, + "end": { + "$date": "2021-12-22T18:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5565cc68-2968-430e-81e4-fdd53592d7e0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-22T19:24:11.000Z" + }, + "end": { + "$date": "2021-12-22T22:13:20.000Z" + }, + "events": [ + { + "uuid": "a6eb59f3-f77d-4322-9be9-7dbfbd649fe5", + "start": { + "$date": "2021-12-22T19:24:11.000Z" + }, + "end": { + "$date": "2021-12-22T22:13:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "18500dbb-2c9a-4b11-8db5-600acf502b92", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T19:32:53.000Z" + }, + "end": { + "$date": "2021-12-22T19:34:53.000Z" + }, + "events": [ + { + "uuid": "6f5cdf7b-8595-432f-9aca-73f125a2f26b", + "start": { + "$date": "2021-12-22T19:32:53.000Z" + }, + "end": { + "$date": "2021-12-22T19:34:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "fadea9ce-bf43-4008-a640-3407227837ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T19:37:34.000Z" + }, + "end": { + "$date": "2021-12-22T20:02:36.000Z" + }, + "events": [ + { + "uuid": "a1bde7a4-b712-4ecb-9fc6-f99efe53fefe", + "start": { + "$date": "2021-12-22T19:37:34.000Z" + }, + "end": { + "$date": "2021-12-22T20:02:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "318c16aa-b73b-4a46-934c-e76443a72521", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T20:05:47.000Z" + }, + "end": { + "$date": "2021-12-22T20:31:07.000Z" + }, + "events": [ + { + "uuid": "176822fb-88b7-46db-b807-ae94cdd0b7d0", + "start": { + "$date": "2021-12-22T20:05:47.000Z" + }, + "end": { + "$date": "2021-12-22T20:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "21ba8fac-3caa-462c-bf07-6c85f7b8dcfa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T20:33:20.000Z" + }, + "end": { + "$date": "2021-12-22T21:28:08.000Z" + }, + "events": [ + { + "uuid": "c4074863-12c8-4744-83f0-5bf4860edfb6", + "start": { + "$date": "2021-12-22T20:33:20.000Z" + }, + "end": { + "$date": "2021-12-22T21:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2556a1ea-cebc-442b-8c38-2d5dfd7b5fd7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T21:18:23.000Z" + }, + "end": { + "$date": "2021-12-22T21:46:15.000Z" + }, + "events": [ + { + "uuid": "55e8675d-cfa0-4c0c-8aff-e70b0c700024", + "start": { + "$date": "2021-12-22T21:18:23.000Z" + }, + "end": { + "$date": "2021-12-22T21:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64427d8c-be11-4293-a73d-ef2ce3384524", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T21:30:34.000Z" + }, + "end": { + "$date": "2021-12-22T21:59:19.000Z" + }, + "events": [ + { + "uuid": "aef179ea-e49d-47c9-b59b-c01c62a55704", + "start": { + "$date": "2021-12-22T21:30:34.000Z" + }, + "end": { + "$date": "2021-12-22T21:59:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4050814b-9f04-4f4a-833f-52f70aa58339", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T21:30:39.000Z" + }, + "end": { + "$date": "2021-12-22T21:59:23.000Z" + }, + "events": [ + { + "uuid": "0bd8e5f9-e2bd-488a-972c-1edce6edf885", + "start": { + "$date": "2021-12-22T21:30:39.000Z" + }, + "end": { + "$date": "2021-12-22T21:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93c45e79-564d-4ef4-91f0-bc1efd0bfe1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T22:00:05.000Z" + }, + "end": { + "$date": "2021-12-22T22:36:11.000Z" + }, + "events": [ + { + "uuid": "bff9b01a-5a6b-4987-baf1-290357fd6b0b", + "start": { + "$date": "2021-12-22T22:00:05.000Z" + }, + "end": { + "$date": "2021-12-22T22:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ca9c4ca-a122-4067-a74c-a64494badf1f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T22:00:07.000Z" + }, + "end": { + "$date": "2021-12-22T22:35:51.000Z" + }, + "events": [ + { + "uuid": "a46ec6b7-de0b-49e6-b1c6-baf2827bcd45", + "start": { + "$date": "2021-12-22T22:00:07.000Z" + }, + "end": { + "$date": "2021-12-22T22:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b4871e52-35c2-4261-b810-67987858206f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T22:05:13.000Z" + }, + "end": { + "$date": "2021-12-22T22:10:34.000Z" + }, + "events": [ + { + "uuid": "574d6513-c20b-4cbc-9a20-6bb23e4a4377", + "start": { + "$date": "2021-12-22T22:05:13.000Z" + }, + "end": { + "$date": "2021-12-22T22:10:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "40712386-08d7-486a-a10b-1e7bfe5cb130", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T22:12:54.000Z" + }, + "end": { + "$date": "2021-12-22T22:32:57.000Z" + }, + "events": [ + { + "uuid": "5097eb2b-2e5f-4c57-97e2-48e62cc1ce29", + "start": { + "$date": "2021-12-22T22:12:54.000Z" + }, + "end": { + "$date": "2021-12-22T22:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b55da91-2952-43a3-8ee6-5f8ef44bcb2a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T22:37:07.000Z" + }, + "end": { + "$date": "2021-12-22T23:04:23.000Z" + }, + "events": [ + { + "uuid": "c61c1698-1897-4141-9bdc-792182e06db2", + "start": { + "$date": "2021-12-22T22:37:07.000Z" + }, + "end": { + "$date": "2021-12-22T23:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "795c50d4-3708-44e9-a4a4-0f7be96fa35c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T22:37:15.000Z" + }, + "end": { + "$date": "2021-12-22T23:04:28.000Z" + }, + "events": [ + { + "uuid": "78fd3d01-0119-4a15-a0c9-a7ca23b7f8b8", + "start": { + "$date": "2021-12-22T22:37:15.000Z" + }, + "end": { + "$date": "2021-12-22T23:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "0a5fa2ed-140d-4531-a2d0-c78d658e4925", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-22T22:39:44.000Z" + }, + "end": { + "$date": "2021-12-23T00:32:17.000Z" + }, + "events": [ + { + "uuid": "d3ceb95d-1f31-4aa7-8efe-96a98123d249", + "start": { + "$date": "2021-12-22T22:39:44.000Z" + }, + "end": { + "$date": "2021-12-23T00:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "064c981a-8d40-4a71-be0e-0db181f23aa8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T23:08:54.000Z" + }, + "end": { + "$date": "2021-12-22T23:38:54.000Z" + }, + "events": [ + { + "uuid": "d2aa97d6-9752-4267-b703-2bda39a5ba77", + "start": { + "$date": "2021-12-22T23:08:54.000Z" + }, + "end": { + "$date": "2021-12-22T23:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc68ae24-dd50-4fa6-b8bd-a85e8b2dd921", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T23:08:58.000Z" + }, + "end": { + "$date": "2021-12-22T23:39:21.000Z" + }, + "events": [ + { + "uuid": "5b6a9c37-db36-4f0a-a591-7dfe83e3795c", + "start": { + "$date": "2021-12-22T23:08:58.000Z" + }, + "end": { + "$date": "2021-12-22T23:39:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41e1141a-d2a4-4f07-bcbf-41048b429a33", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-22T23:46:16.000Z" + }, + "end": { + "$date": "2021-12-23T00:17:47.000Z" + }, + "events": [ + { + "uuid": "a9d5943c-e4d3-40e7-8480-a98e6530b342", + "start": { + "$date": "2021-12-22T23:46:16.000Z" + }, + "end": { + "$date": "2021-12-23T00:17:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9ea60c0-8718-43f9-afc7-196f3448caa9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-22T23:46:17.000Z" + }, + "end": { + "$date": "2021-12-23T00:18:00.000Z" + }, + "events": [ + { + "uuid": "80175d2f-f9dc-4588-9119-2832c97720f7", + "start": { + "$date": "2021-12-22T23:46:17.000Z" + }, + "end": { + "$date": "2021-12-23T00:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a9d3a257-5942-4193-9210-74a2be199980", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-22T22:44:15.000Z" + }, + "end": { + "$date": "2021-12-23T04:35:34.000Z" + }, + "events": [ + { + "uuid": "e6b9cdae-7fe4-4de8-a05b-a6cba1544c00", + "start": { + "$date": "2021-12-22T22:44:15.000Z" + }, + "end": { + "$date": "2021-12-23T04:35:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eb8f8c2-a3e9-4294-8745-08d3d8a62d50", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T00:06:39.000Z" + }, + "end": { + "$date": "2021-12-23T00:43:53.000Z" + }, + "events": [ + { + "uuid": "7ef1644a-4c01-40e6-83f1-d6d61eabaa7d", + "start": { + "$date": "2021-12-23T00:06:39.000Z" + }, + "end": { + "$date": "2021-12-23T00:43:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66c5dbe3-d306-45d2-ae0d-2fb1d245049d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T00:20:38.000Z" + }, + "end": { + "$date": "2021-12-23T00:50:04.000Z" + }, + "events": [ + { + "uuid": "7c8277de-61c3-4a00-99e0-0d977ccf4f00", + "start": { + "$date": "2021-12-23T00:20:38.000Z" + }, + "end": { + "$date": "2021-12-23T00:50:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aa69011-50fd-4931-8c88-9fec0ecbf7f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T00:20:40.000Z" + }, + "end": { + "$date": "2021-12-23T00:57:58.000Z" + }, + "events": [ + { + "uuid": "8f93fe83-6dae-463a-8acb-7abb0c9b58cf", + "start": { + "$date": "2021-12-23T00:20:40.000Z" + }, + "end": { + "$date": "2021-12-23T00:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7fb0216-a025-488d-a71e-867d023a02ba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T01:16:33.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:21.000Z" + }, + "events": [ + { + "uuid": "37664000-d6d4-494a-acb1-394c28d36723", + "start": { + "$date": "2021-12-23T01:16:33.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47ed314d-ee36-488e-a835-f6199b61b5fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T01:13:52.000Z" + }, + "end": { + "$date": "2021-12-23T01:13:54.000Z" + }, + "events": [ + { + "uuid": "3d22af46-9708-4733-a0a1-60484eef56b7", + "start": { + "$date": "2021-12-23T01:13:52.000Z" + }, + "end": { + "$date": "2021-12-23T01:13:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f7c93f6-b089-4d3b-b5df-7fe561e091b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T01:16:38.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:18.000Z" + }, + "events": [ + { + "uuid": "de4b1470-7376-4ae3-8a42-3bdb64b8c874", + "start": { + "$date": "2021-12-23T01:16:38.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffb350fd-e078-42c1-b3b3-ed5dfe4f81df", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T01:16:31.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:19.000Z" + }, + "events": [ + { + "uuid": "b983081a-2caf-48bc-89ae-ef7bf69d07d1", + "start": { + "$date": "2021-12-23T01:16:31.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5d13a82-d7cb-46b3-99b5-982fefcfa19c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T01:16:42.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:20.000Z" + }, + "events": [ + { + "uuid": "52a2ae90-5586-4fd1-a8b1-e524e32d5118", + "start": { + "$date": "2021-12-23T01:16:42.000Z" + }, + "end": { + "$date": "2021-12-23T01:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "cc60792d-c482-49e1-8e7c-b4c570505866", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-23T01:27:34.000Z" + }, + "end": { + "$date": "2021-12-23T03:40:10.000Z" + }, + "events": [ + { + "uuid": "c769cda2-4dd9-4d12-a7a1-4f0351f4424b", + "start": { + "$date": "2021-12-23T01:27:34.000Z" + }, + "end": { + "$date": "2021-12-23T03:40:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17498105-1e60-4387-8d3c-6a25de1a1714", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T01:44:53.000Z" + }, + "end": { + "$date": "2021-12-23T02:11:02.000Z" + }, + "events": [ + { + "uuid": "2a0ee2b1-6b16-4b4d-8847-cf649999bba5", + "start": { + "$date": "2021-12-23T01:44:53.000Z" + }, + "end": { + "$date": "2021-12-23T02:11:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66df46b0-0e2d-4ef7-b6d7-f24dc2c5f5fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T01:44:58.000Z" + }, + "end": { + "$date": "2021-12-23T02:11:04.000Z" + }, + "events": [ + { + "uuid": "132899c3-6aa9-483e-bcff-a0741e80c2ca", + "start": { + "$date": "2021-12-23T01:44:58.000Z" + }, + "end": { + "$date": "2021-12-23T02:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "763c2631-41f1-4a94-8aa5-423e38523024", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T01:44:50.000Z" + }, + "end": { + "$date": "2021-12-23T02:10:58.000Z" + }, + "events": [ + { + "uuid": "447c9dc7-ea9d-4e0f-88af-2a7b0281eb24", + "start": { + "$date": "2021-12-23T01:44:50.000Z" + }, + "end": { + "$date": "2021-12-23T02:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba47044c-4def-422c-9c91-74c0f338ac09", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T01:44:49.000Z" + }, + "end": { + "$date": "2021-12-23T02:10:58.000Z" + }, + "events": [ + { + "uuid": "916bdbef-9c49-4288-a585-0035aaa8a5c6", + "start": { + "$date": "2021-12-23T01:44:49.000Z" + }, + "end": { + "$date": "2021-12-23T02:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed7d4b2c-4ed9-41b7-86c3-b2c6abfe29a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T02:11:24.000Z" + }, + "end": { + "$date": "2021-12-23T02:12:41.000Z" + }, + "events": [ + { + "uuid": "e75dee62-bfcb-4493-85d7-32ef8dac8200", + "start": { + "$date": "2021-12-23T02:11:24.000Z" + }, + "end": { + "$date": "2021-12-23T02:12:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28183657-478f-4639-956a-6a10dc4e6fdb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T02:17:51.000Z" + }, + "end": { + "$date": "2021-12-23T02:40:16.000Z" + }, + "events": [ + { + "uuid": "6a144c59-d29e-4a80-b693-128b09e2ba79", + "start": { + "$date": "2021-12-23T02:17:51.000Z" + }, + "end": { + "$date": "2021-12-23T02:40:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3b22924-b03c-4df1-90e2-a522199c2e80", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T02:17:49.000Z" + }, + "end": { + "$date": "2021-12-23T02:40:08.000Z" + }, + "events": [ + { + "uuid": "d022af26-7441-4439-ab5d-16c9b74001ce", + "start": { + "$date": "2021-12-23T02:17:49.000Z" + }, + "end": { + "$date": "2021-12-23T02:40:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c682e96d-2f0f-448f-b1ec-716f464d4b5c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T02:17:49.000Z" + }, + "end": { + "$date": "2021-12-23T02:40:11.000Z" + }, + "events": [ + { + "uuid": "0ccebb66-d424-4690-afd6-8f209febab95", + "start": { + "$date": "2021-12-23T02:17:49.000Z" + }, + "end": { + "$date": "2021-12-23T02:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b507d28a-782a-4df7-b80f-bc5c875b620a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T03:06:57.000Z" + }, + "end": { + "$date": "2021-12-23T03:31:51.000Z" + }, + "events": [ + { + "uuid": "56ac3d86-2ea0-40a4-b228-422442382471", + "start": { + "$date": "2021-12-23T03:06:57.000Z" + }, + "end": { + "$date": "2021-12-23T03:31:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e90733d-4048-47d5-97d0-c015abed3845", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T03:36:18.000Z" + }, + "end": { + "$date": "2021-12-23T04:06:02.000Z" + }, + "events": [ + { + "uuid": "9e05dc36-2410-47bc-9122-b18e91a59d7e", + "start": { + "$date": "2021-12-23T03:36:18.000Z" + }, + "end": { + "$date": "2021-12-23T04:06:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc064aa0-158e-4f9a-ba74-f8a064698e34", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-23T03:37:48.000Z" + }, + "end": { + "$date": "2021-12-23T05:37:14.000Z" + }, + "events": [ + { + "uuid": "1ac686ef-883c-4da8-a623-b73e638b9bfd", + "start": { + "$date": "2021-12-23T03:37:48.000Z" + }, + "end": { + "$date": "2021-12-23T04:00:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7bc0875-a8f5-4447-94a0-22bc5bbc3729", + "start": { + "$date": "2021-12-23T04:00:48.000Z" + }, + "end": { + "$date": "2021-12-23T04:10:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "77e56698-9785-4655-bf30-22fbf1607cc9", + "start": { + "$date": "2021-12-23T04:10:48.000Z" + }, + "end": { + "$date": "2021-12-23T04:38:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "851488d9-c0b6-4f65-886d-b5e2c9c1c306", + "start": { + "$date": "2021-12-23T04:38:48.000Z" + }, + "end": { + "$date": "2021-12-23T04:43:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0db6493d-ac50-4c3c-9131-aac4ebea8ef4", + "start": { + "$date": "2021-12-23T04:43:48.000Z" + }, + "end": { + "$date": "2021-12-23T04:53:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f122ee6-dcf5-4db4-813b-a8b66a7a9dae", + "start": { + "$date": "2021-12-23T04:53:48.000Z" + }, + "end": { + "$date": "2021-12-23T05:06:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7938974d-2ae8-4e72-9232-03db16b243cd", + "start": { + "$date": "2021-12-23T05:06:48.000Z" + }, + "end": { + "$date": "2021-12-23T05:17:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86d57def-f5bc-4d31-99e2-dd3f0389864d", + "start": { + "$date": "2021-12-23T05:17:48.000Z" + }, + "end": { + "$date": "2021-12-23T05:23:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fb080b61-855a-430e-864b-7ff242a54c2d", + "start": { + "$date": "2021-12-23T05:23:48.000Z" + }, + "end": { + "$date": "2021-12-23T05:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "60a20171-96c7-4c9c-b065-3471f56fe540", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-23T04:05:21.000Z" + }, + "end": { + "$date": "2021-12-23T04:52:56.000Z" + }, + "events": [ + { + "uuid": "bfb1fec2-5199-4a8b-b33e-ba0b4d81b5a1", + "start": { + "$date": "2021-12-23T04:05:21.000Z" + }, + "end": { + "$date": "2021-12-23T04:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd31c621-0cb5-455a-9b21-a6182f806b5b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T04:27:36.000Z" + }, + "end": { + "$date": "2021-12-23T06:55:36.000Z" + }, + "events": [ + { + "uuid": "ace2d7a2-dbef-41cd-889c-b93a61cd0cc4", + "start": { + "$date": "2021-12-23T04:27:36.000Z" + }, + "end": { + "$date": "2021-12-23T06:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e90e9816-969f-4353-bfb1-0405173a5891", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-23T04:35:54.000Z" + }, + "end": { + "$date": "2021-12-23T06:07:26.000Z" + }, + "events": [ + { + "uuid": "2ade986e-9c01-40a8-aa4a-744f7ebc2b91", + "start": { + "$date": "2021-12-23T04:35:54.000Z" + }, + "end": { + "$date": "2021-12-23T05:34:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41d25baf-254d-40f9-970e-9a377b522800", + "start": { + "$date": "2021-12-23T05:34:54.000Z" + }, + "end": { + "$date": "2021-12-23T05:39:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e52476db-4a28-4d92-bf60-26038c1dd7c2", + "start": { + "$date": "2021-12-23T05:39:54.000Z" + }, + "end": { + "$date": "2021-12-23T06:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6b9a78c1-7045-453b-9bd2-bdd61223dbe4", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-23T04:53:02.000Z" + }, + "end": { + "$date": "2021-12-23T05:51:07.000Z" + }, + "events": [ + { + "uuid": "1eb48c8e-67fa-4d75-8853-54f0283ba976", + "start": { + "$date": "2021-12-23T04:53:02.000Z" + }, + "end": { + "$date": "2021-12-23T05:51:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e10eb33-6bfb-4247-8b51-78163d4d9904", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T05:10:29.000Z" + }, + "end": { + "$date": "2021-12-23T05:37:55.000Z" + }, + "events": [ + { + "uuid": "904df617-5d3a-45d2-ab01-af7bb26a9b34", + "start": { + "$date": "2021-12-23T05:10:29.000Z" + }, + "end": { + "$date": "2021-12-23T05:19:29.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "88b3c8ab-501b-4df6-819c-ea5f832e9c21", + "start": { + "$date": "2021-12-23T05:19:29.000Z" + }, + "end": { + "$date": "2021-12-23T05:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "64b7e7ac-129f-4df2-a6c4-3f75d529722d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-23T05:26:41.000Z" + }, + "end": { + "$date": "2021-12-23T06:10:12.000Z" + }, + "events": [ + { + "uuid": "d7e86fa5-c622-4f22-96bc-fc894e8a8edc", + "start": { + "$date": "2021-12-23T05:26:41.000Z" + }, + "end": { + "$date": "2021-12-23T06:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8e337f1e-a30c-4e28-86eb-650c1119eb77", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T05:45:05.000Z" + }, + "end": { + "$date": "2021-12-23T05:52:55.000Z" + }, + "events": [ + { + "uuid": "a5ef1df9-0ad2-4e47-ab2a-fafc6fa86799", + "start": { + "$date": "2021-12-23T05:45:05.000Z" + }, + "end": { + "$date": "2021-12-23T05:52:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60cb3574-47fb-4161-a006-a957226a0030", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T05:55:41.000Z" + }, + "end": { + "$date": "2021-12-23T06:28:51.000Z" + }, + "events": [ + { + "uuid": "b2af069b-c405-4b8c-941b-9686d7f88595", + "start": { + "$date": "2021-12-23T05:55:41.000Z" + }, + "end": { + "$date": "2021-12-23T06:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "11040d09-99fd-4701-b12e-e8b6475a23de", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2021-12-23T05:52:17.000Z" + }, + "end": { + "$date": "2021-12-23T07:15:16.000Z" + }, + "events": [ + { + "uuid": "9c2e38a8-2fe4-44b6-a61b-defb360932a7", + "start": { + "$date": "2021-12-23T05:52:17.000Z" + }, + "end": { + "$date": "2021-12-23T07:15:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "cc32e499-b9db-4fef-a3be-7c8347e95afc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T05:53:07.000Z" + }, + "end": { + "$date": "2021-12-23T06:22:52.000Z" + }, + "events": [ + { + "uuid": "849ff24b-cc85-45ea-a9e6-064789a42dd1", + "start": { + "$date": "2021-12-23T05:53:07.000Z" + }, + "end": { + "$date": "2021-12-23T06:22:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d1b0639-9d3c-47c6-aa51-ed78cbe02d56", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-23T06:12:47.000Z" + }, + "end": { + "$date": "2021-12-23T06:29:57.000Z" + }, + "events": [ + { + "uuid": "c7ebe6fc-f0d1-4706-b804-5275f2d2e262", + "start": { + "$date": "2021-12-23T06:12:47.000Z" + }, + "end": { + "$date": "2021-12-23T06:29:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dd59116a-855e-448e-b738-b88408307966", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-23T06:16:07.000Z" + }, + "end": { + "$date": "2021-12-23T07:08:19.000Z" + }, + "events": [ + { + "uuid": "6c5db69e-f510-4a6d-9a99-e72749f4c925", + "start": { + "$date": "2021-12-23T06:16:07.000Z" + }, + "end": { + "$date": "2021-12-23T07:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a2972c2e-2e1c-419b-95d2-331871b05f74", + "uuid": "ec32d019-3395-4fba-9024-b75f9a2068ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-23T09:00:10.000Z" + }, + "end": { + "$date": "2021-12-23T09:00:55.000Z" + }, + "events": [ + { + "uuid": "1ff1075f-af59-44c6-a446-996e97115419", + "start": { + "$date": "2021-12-23T09:00:10.000Z" + }, + "end": { + "$date": "2021-12-23T09:57:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0bc1f29c-c4c0-4769-a9ef-146c600d99db", + "start": { + "$date": "2021-12-23T09:57:10.000Z" + }, + "end": { + "$date": "2021-12-23T10:02:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3289b8fa-5739-4246-9f42-471d9077be63", + "start": { + "$date": "2021-12-23T10:02:10.000Z" + }, + "end": { + "$date": "2021-12-23T10:12:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3330181a-0d11-422d-a102-35ddc582e43e", + "start": { + "$date": "2021-12-23T10:12:10.000Z" + }, + "end": { + "$date": "2021-12-23T10:31:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f0ab579d-52b2-4ebb-9b94-f3e62a4c310b", + "start": { + "$date": "2021-12-23T10:31:10.000Z" + }, + "end": { + "$date": "2021-12-23T09:00:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10e49876-9dae-4cbf-a083-3a2107f3ca4d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-23T06:33:58.000Z" + }, + "end": { + "$date": "2021-12-23T07:00:27.000Z" + }, + "events": [ + { + "uuid": "9a22a966-3d97-408b-8359-ae1f082e4f84", + "start": { + "$date": "2021-12-23T06:33:58.000Z" + }, + "end": { + "$date": "2021-12-23T07:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a7224b80-c0b2-4ecd-a03b-fbc4f8e67a56", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T08:07:05.000Z" + }, + "end": { + "$date": "2021-12-23T08:47:22.000Z" + }, + "events": [ + { + "uuid": "719bd35e-e7fe-4535-b2d9-0452c0b01ea6", + "start": { + "$date": "2021-12-23T08:07:05.000Z" + }, + "end": { + "$date": "2021-12-23T08:47:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d05af293-708f-4e63-b4e7-5b97ac091d9d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T10:18:54.000Z" + }, + "end": { + "$date": "2021-12-23T11:07:11.000Z" + }, + "events": [ + { + "uuid": "3b978d99-c770-4715-8d94-a78527e99146", + "start": { + "$date": "2021-12-23T10:18:54.000Z" + }, + "end": { + "$date": "2021-12-23T11:07:11.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0d6f37d-f7da-4969-a59b-65a1a0ac1e71", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T12:39:49.000Z" + }, + "end": { + "$date": "2021-12-23T13:01:12.000Z" + }, + "events": [ + { + "uuid": "841942df-3f3c-4883-b8ca-5fae80d3188f", + "start": { + "$date": "2021-12-23T12:39:49.000Z" + }, + "end": { + "$date": "2021-12-23T13:01:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aadad6be-5a1c-4433-b20f-778523bacfca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T13:04:07.000Z" + }, + "end": { + "$date": "2021-12-23T13:23:14.000Z" + }, + "events": [ + { + "uuid": "0c30f7b6-99ed-414a-ada3-fc809ce527e0", + "start": { + "$date": "2021-12-23T13:04:07.000Z" + }, + "end": { + "$date": "2021-12-23T13:23:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "279b0291-f666-4bb6-8f00-27ba150dfbb8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T13:25:04.000Z" + }, + "end": { + "$date": "2021-12-23T13:45:26.000Z" + }, + "events": [ + { + "uuid": "b2b00304-f645-4396-927c-f6e030416e6e", + "start": { + "$date": "2021-12-23T13:25:04.000Z" + }, + "end": { + "$date": "2021-12-23T13:45:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb1697fb-bc45-4079-86f3-04798f9208b3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T13:47:36.000Z" + }, + "end": { + "$date": "2021-12-23T14:10:44.000Z" + }, + "events": [ + { + "uuid": "713d6250-0d60-4818-9f9b-1426c4b227a1", + "start": { + "$date": "2021-12-23T13:47:36.000Z" + }, + "end": { + "$date": "2021-12-23T14:10:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b50ef254-cc16-4538-adcc-9213ba04210c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T14:13:48.000Z" + }, + "end": { + "$date": "2021-12-23T14:23:05.000Z" + }, + "events": [ + { + "uuid": "30d667bd-67fd-4ecf-bf1e-2ef0a03d06a9", + "start": { + "$date": "2021-12-23T14:13:48.000Z" + }, + "end": { + "$date": "2021-12-23T14:23:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "908b5aa5-65d5-4ff1-befc-f0fcdc332d12", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T14:24:54.000Z" + }, + "end": { + "$date": "2021-12-23T14:40:52.000Z" + }, + "events": [ + { + "uuid": "66167581-1397-402b-9272-c05c7452b624", + "start": { + "$date": "2021-12-23T14:24:54.000Z" + }, + "end": { + "$date": "2021-12-23T14:40:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7facd6c9-f691-4862-9432-ff07bec4de54", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T14:43:47.000Z" + }, + "end": { + "$date": "2021-12-23T15:05:29.000Z" + }, + "events": [ + { + "uuid": "30f67e43-926f-4c07-8173-aceea493eca3", + "start": { + "$date": "2021-12-23T14:43:47.000Z" + }, + "end": { + "$date": "2021-12-23T15:05:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "321b9e79-b15e-402d-9003-341922662752", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-23T16:38:41.000Z" + }, + "end": { + "$date": "2021-12-23T17:15:14.000Z" + }, + "events": [ + { + "uuid": "5a6f2389-ba6d-4b3e-9f79-2de76f1d5cb1", + "start": { + "$date": "2021-12-23T16:38:41.000Z" + }, + "end": { + "$date": "2021-12-23T17:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "45c28974-6099-43af-800e-948913f6dd76", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T17:14:05.000Z" + }, + "end": { + "$date": "2021-12-23T17:24:15.000Z" + }, + "events": [ + { + "uuid": "503743ef-b681-40e4-859f-d7e9cf805e61", + "start": { + "$date": "2021-12-23T17:14:05.000Z" + }, + "end": { + "$date": "2021-12-23T17:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4e3808d5-0f41-4e4d-a003-884d2ba71fd3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-23T17:18:04.000Z" + }, + "end": { + "$date": "2021-12-23T17:22:44.000Z" + }, + "events": [ + { + "uuid": "f9af2a81-1673-4be7-baec-979d928f50e6", + "start": { + "$date": "2021-12-23T17:18:04.000Z" + }, + "end": { + "$date": "2021-12-23T17:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "72a2ca15-bc3e-4baa-8ef5-de8472313b03", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-23T17:22:50.000Z" + }, + "end": { + "$date": "2021-12-23T17:41:11.000Z" + }, + "events": [ + { + "uuid": "872f64c5-18fe-4909-a4e8-b397fe066cdf", + "start": { + "$date": "2021-12-23T17:22:50.000Z" + }, + "end": { + "$date": "2021-12-23T17:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec910411-21f1-4478-a1dd-e33c3361963a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T17:26:49.000Z" + }, + "end": { + "$date": "2021-12-23T17:30:41.000Z" + }, + "events": [ + { + "uuid": "3361e00a-1f06-4ba2-b817-49fb32ce0a21", + "start": { + "$date": "2021-12-23T17:26:49.000Z" + }, + "end": { + "$date": "2021-12-23T17:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "739c6220-4403-4737-a5eb-be99335b178e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T17:27:01.000Z" + }, + "end": { + "$date": "2021-12-23T17:30:45.000Z" + }, + "events": [ + { + "uuid": "ba661890-b5a7-468c-b002-75b8cca5f5f6", + "start": { + "$date": "2021-12-23T17:27:01.000Z" + }, + "end": { + "$date": "2021-12-23T17:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "181232c1-05ab-4f44-9872-dd1200a348f1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T17:32:46.000Z" + }, + "end": { + "$date": "2021-12-23T17:36:27.000Z" + }, + "events": [ + { + "uuid": "5f094645-8256-4326-adc3-6e959ecc952c", + "start": { + "$date": "2021-12-23T17:32:46.000Z" + }, + "end": { + "$date": "2021-12-23T17:36:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bba4e066-016a-4bd2-abea-7f07f961db8a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T17:32:41.000Z" + }, + "end": { + "$date": "2021-12-23T17:36:30.000Z" + }, + "events": [ + { + "uuid": "c8d09a21-4cb3-4f4a-96ea-db672e411283", + "start": { + "$date": "2021-12-23T17:32:41.000Z" + }, + "end": { + "$date": "2021-12-23T17:36:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d283f0ce-da89-4f1c-8c12-ce84124a6263", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T17:38:27.000Z" + }, + "end": { + "$date": "2021-12-23T17:42:02.000Z" + }, + "events": [ + { + "uuid": "fd00acec-fe91-4f69-99bc-7f0489e0ba9c", + "start": { + "$date": "2021-12-23T17:38:27.000Z" + }, + "end": { + "$date": "2021-12-23T17:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d88abce7-bf12-4b62-b3fb-d026be01d2d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T17:38:26.000Z" + }, + "end": { + "$date": "2021-12-23T17:42:00.000Z" + }, + "events": [ + { + "uuid": "5a140a32-54ed-4b90-9204-2d96e66cd613", + "start": { + "$date": "2021-12-23T17:38:26.000Z" + }, + "end": { + "$date": "2021-12-23T17:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1cf2e61-1eb8-4d4e-9e19-ff40ac3a17d6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T17:46:25.000Z" + }, + "end": { + "$date": "2021-12-23T18:27:38.000Z" + }, + "events": [ + { + "uuid": "8a0255fa-a9cb-455c-8838-53d54f8c065d", + "start": { + "$date": "2021-12-23T17:46:25.000Z" + }, + "end": { + "$date": "2021-12-23T18:27:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bac83e45-37d9-4a9d-931f-f1836def5397", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T17:46:29.000Z" + }, + "end": { + "$date": "2021-12-23T18:27:28.000Z" + }, + "events": [ + { + "uuid": "b08198be-4eb7-4808-9bc4-40973ab9b5a8", + "start": { + "$date": "2021-12-23T17:46:29.000Z" + }, + "end": { + "$date": "2021-12-23T18:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcbf622f-7e30-4fac-bd6f-6126024527f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T17:46:37.000Z" + }, + "end": { + "$date": "2021-12-23T18:27:31.000Z" + }, + "events": [ + { + "uuid": "fb5b7023-4ce5-4790-8d63-ec516270284c", + "start": { + "$date": "2021-12-23T17:46:37.000Z" + }, + "end": { + "$date": "2021-12-23T18:27:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "405f0c01-c679-483b-85df-96b62452521b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-23T18:04:33.000Z" + }, + "end": { + "$date": "2021-12-23T19:07:10.000Z" + }, + "events": [ + { + "uuid": "9d44a488-4c7f-4055-8118-e0b5821ee932", + "start": { + "$date": "2021-12-23T18:04:33.000Z" + }, + "end": { + "$date": "2021-12-23T18:31:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ee784c3-24d3-4177-986b-e36670b0aa06", + "start": { + "$date": "2021-12-23T18:31:33.000Z" + }, + "end": { + "$date": "2021-12-23T18:33:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53d05d3a-ecc2-4f27-9a7a-9fd0a7a9526d", + "start": { + "$date": "2021-12-23T18:33:33.000Z" + }, + "end": { + "$date": "2021-12-23T18:43:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b22f9f32-9b06-4ab9-a1ac-ba7fd177bc71", + "start": { + "$date": "2021-12-23T18:43:33.000Z" + }, + "end": { + "$date": "2021-12-23T18:49:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb428367-e0fd-41a6-8263-8445bbd92c57", + "start": { + "$date": "2021-12-23T18:49:33.000Z" + }, + "end": { + "$date": "2021-12-23T19:07:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "82d8caa8-be2e-4211-b750-70e0ca6c7e2e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-23T18:05:35.000Z" + }, + "end": { + "$date": "2021-12-23T18:26:54.000Z" + }, + "events": [ + { + "uuid": "5daf8e64-4fa5-4fc6-a3b0-79181906a124", + "start": { + "$date": "2021-12-23T18:05:35.000Z" + }, + "end": { + "$date": "2021-12-23T18:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41aa9cd5-b495-4a28-8920-78750f19ee36", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-23T18:28:24.000Z" + }, + "end": { + "$date": "2021-12-23T18:32:55.000Z" + }, + "events": [ + { + "uuid": "70e17f4e-318f-483b-96ec-bdb93490e328", + "start": { + "$date": "2021-12-23T18:28:24.000Z" + }, + "end": { + "$date": "2021-12-23T18:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "05ef0954-53d3-41a6-a2f8-628ea72be18d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T18:34:38.000Z" + }, + "end": { + "$date": "2021-12-23T18:48:18.000Z" + }, + "events": [ + { + "uuid": "2b5ed8f1-9308-4fc5-91ef-9a6ad4ef10e1", + "start": { + "$date": "2021-12-23T18:34:38.000Z" + }, + "end": { + "$date": "2021-12-23T18:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4e944f47-b006-43ff-a116-1ad09be38b6d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T18:48:44.000Z" + }, + "end": { + "$date": "2021-12-23T18:59:10.000Z" + }, + "events": [ + { + "uuid": "1b7a7589-2f88-409b-b23c-f84af9b96792", + "start": { + "$date": "2021-12-23T18:48:44.000Z" + }, + "end": { + "$date": "2021-12-23T18:59:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "48944b44-5111-4227-8165-84b54f3ff081", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-23T18:54:04.000Z" + }, + "end": { + "$date": "2021-12-23T20:08:16.000Z" + }, + "events": [ + { + "uuid": "f345d62f-06f5-46c4-834a-4640336f907d", + "start": { + "$date": "2021-12-23T18:54:04.000Z" + }, + "end": { + "$date": "2021-12-23T20:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76d88f4d-cc76-4a62-9bd4-b37ee4cdb876", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-23T20:54:57.000Z" + }, + "end": { + "$date": "2021-12-23T22:46:50.000Z" + }, + "events": [ + { + "uuid": "fabf61e4-591b-4c30-9a6d-42ced8b4e9cf", + "start": { + "$date": "2021-12-23T20:54:57.000Z" + }, + "end": { + "$date": "2021-12-23T22:46:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "82370aa0-86ef-44d1-8897-e8ad081a0347", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T21:02:35.000Z" + }, + "end": { + "$date": "2021-12-23T21:15:08.000Z" + }, + "events": [ + { + "uuid": "0fb99e8c-76f3-4bc4-b1f4-876cd49c828f", + "start": { + "$date": "2021-12-23T21:02:35.000Z" + }, + "end": { + "$date": "2021-12-23T21:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f935548c-2791-46db-a58e-fcb442201735", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-23T21:04:27.000Z" + }, + "end": { + "$date": "2021-12-23T22:46:13.000Z" + }, + "events": [ + { + "uuid": "24ddf57b-3ac7-487b-8ea5-8ab89cd05b37", + "start": { + "$date": "2021-12-23T21:04:27.000Z" + }, + "end": { + "$date": "2021-12-23T22:46:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e261217d-8895-48c9-8a11-c3e77439b708", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-23T22:40:36.000Z" + }, + "end": { + "$date": "2021-12-23T22:40:46.000Z" + }, + "events": [ + { + "uuid": "d25b4db0-474e-447e-a9cd-dba55bb9125f", + "start": { + "$date": "2021-12-23T22:40:36.000Z" + }, + "end": { + "$date": "2021-12-23T22:40:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "63aa4909-1bf8-45b9-a399-0f2135798260", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T21:16:04.000Z" + }, + "end": { + "$date": "2021-12-23T21:58:14.000Z" + }, + "events": [ + { + "uuid": "3495578e-ce8c-4773-9a99-1c82bf16c743", + "start": { + "$date": "2021-12-23T21:16:04.000Z" + }, + "end": { + "$date": "2021-12-23T21:58:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b3454de4-b2d7-4629-ac06-5ceb2eb218ca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-23T21:53:57.000Z" + }, + "end": { + "$date": "2021-12-23T22:28:29.000Z" + }, + "events": [ + { + "uuid": "2e49c57d-dc0f-44d4-b761-7b860aef4c05", + "start": { + "$date": "2021-12-23T21:53:57.000Z" + }, + "end": { + "$date": "2021-12-23T22:28:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0b5f5a18-0167-47f1-979e-64c58b12f972", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-23T22:32:39.000Z" + }, + "end": { + "$date": "2021-12-24T01:50:58.000Z" + }, + "events": [ + { + "uuid": "964150c3-6dc1-4e29-a4c7-7232a6b7f414", + "start": { + "$date": "2021-12-23T22:32:39.000Z" + }, + "end": { + "$date": "2021-12-24T00:19:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a8c2e6b-12d3-4b49-bf6e-4748de1f4dab", + "start": { + "$date": "2021-12-24T00:19:39.000Z" + }, + "end": { + "$date": "2021-12-24T00:31:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a484ca5c-3125-47d9-88b5-00798db657c2", + "start": { + "$date": "2021-12-24T00:31:39.000Z" + }, + "end": { + "$date": "2021-12-24T00:44:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14aaeb5e-35b1-4291-853e-de2c56fbb42e", + "start": { + "$date": "2021-12-24T00:44:39.000Z" + }, + "end": { + "$date": "2021-12-24T01:22:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0db8c898-cad8-49a4-a793-12f4e2adea88", + "start": { + "$date": "2021-12-24T01:22:39.000Z" + }, + "end": { + "$date": "2021-12-24T01:41:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d142b2cf-8e77-46d6-a815-6145b27a9ee4", + "start": { + "$date": "2021-12-24T01:41:39.000Z" + }, + "end": { + "$date": "2021-12-24T01:50:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "dce705c2-b745-4806-b758-dca6a22d059c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-23T22:42:59.000Z" + }, + "end": { + "$date": "2021-12-23T23:27:07.000Z" + }, + "events": [ + { + "uuid": "5f07dc75-7954-436e-ad0f-9885561cfda2", + "start": { + "$date": "2021-12-23T22:42:59.000Z" + }, + "end": { + "$date": "2021-12-23T23:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b6553f0b-a7d1-43df-94f1-dc4cbc7358c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-23T23:03:16.000Z" + }, + "end": { + "$date": "2021-12-24T03:56:09.000Z" + }, + "events": [ + { + "uuid": "017d05ae-29a8-4f7b-ad00-91141b1b832c", + "start": { + "$date": "2021-12-23T23:03:16.000Z" + }, + "end": { + "$date": "2021-12-24T01:51:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a080627-a921-48ba-876c-3afe98b72119", + "start": { + "$date": "2021-12-24T01:51:16.000Z" + }, + "end": { + "$date": "2021-12-24T01:57:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9eeec875-8a0d-4603-981d-937d5f695359", + "start": { + "$date": "2021-12-24T01:57:16.000Z" + }, + "end": { + "$date": "2021-12-24T03:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3d11dcab-9c5e-45f5-9aca-597dc7c2cfaf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T01:19:07.000Z" + }, + "end": { + "$date": "2021-12-24T03:06:25.000Z" + }, + "events": [ + { + "uuid": "6bb41132-cd72-4b4e-abcb-7268b93b14f7", + "start": { + "$date": "2021-12-24T01:19:07.000Z" + }, + "end": { + "$date": "2021-12-24T01:39:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6abfefd0-b2f4-443c-b325-cf1744acb795", + "start": { + "$date": "2021-12-24T01:39:07.000Z" + }, + "end": { + "$date": "2021-12-24T01:41:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f3c9aec9-3fdb-44f1-bfd3-f4900ab99edc", + "start": { + "$date": "2021-12-24T01:41:07.000Z" + }, + "end": { + "$date": "2021-12-24T03:06:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "28842ff5-eb94-4408-8dae-adeb63c97421", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-24T01:51:07.000Z" + }, + "end": { + "$date": "2021-12-24T04:46:05.000Z" + }, + "events": [ + { + "uuid": "fa1f3d64-df3a-49d0-9e51-638b9ef43caa", + "start": { + "$date": "2021-12-24T01:51:07.000Z" + }, + "end": { + "$date": "2021-12-24T04:46:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d703b490-f841-4db4-ae01-ab20ac16eeb7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T02:47:40.000Z" + }, + "end": { + "$date": "2021-12-24T03:08:41.000Z" + }, + "events": [ + { + "uuid": "b9d61249-5645-4786-b6c5-2a60b15c69ab", + "start": { + "$date": "2021-12-24T02:47:40.000Z" + }, + "end": { + "$date": "2021-12-24T03:08:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a78e0d6a-a465-4db4-8db6-baa7f7810ca8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T03:28:45.000Z" + }, + "end": { + "$date": "2021-12-24T03:52:41.000Z" + }, + "events": [ + { + "uuid": "bf473c1e-89c8-4040-ba85-9497adf04fc1", + "start": { + "$date": "2021-12-24T03:28:45.000Z" + }, + "end": { + "$date": "2021-12-24T03:52:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "30eeb7b0-551b-4cde-831a-93ddc2f2ad2e", + "uuid": "00d910c3-cb8d-4564-8834-6a67fe921e9e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T03:43:49.000Z" + }, + "end": { + "$date": "2021-12-24T04:03:29.000Z" + }, + "events": [ + { + "uuid": "1bfa7b10-3f8a-47fd-ad2f-789c543d676c", + "start": { + "$date": "2021-12-24T03:43:49.000Z" + }, + "end": { + "$date": "2021-12-24T04:03:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3445c5ab-eaff-40f0-8b7d-289a5f1174e9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T03:53:30.000Z" + }, + "end": { + "$date": "2021-12-24T04:03:08.000Z" + }, + "events": [ + { + "uuid": "a78a4e6d-afbf-474f-9882-22bdf073db99", + "start": { + "$date": "2021-12-24T03:53:30.000Z" + }, + "end": { + "$date": "2021-12-24T04:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3324d039-0906-43df-a374-fea72633b49d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-24T04:46:14.000Z" + }, + "end": { + "$date": "2021-12-24T06:46:52.000Z" + }, + "events": [ + { + "uuid": "3a9ece0a-c1b8-4b1e-8755-5e35f92862c1", + "start": { + "$date": "2021-12-24T04:46:14.000Z" + }, + "end": { + "$date": "2021-12-24T06:46:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d69a3bd-414a-45a0-bd38-39f8b3438887", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T05:19:31.000Z" + }, + "end": { + "$date": "2021-12-24T05:42:20.000Z" + }, + "events": [ + { + "uuid": "501d1bfa-1855-465b-83f8-3fd09fbb9c99", + "start": { + "$date": "2021-12-24T05:19:31.000Z" + }, + "end": { + "$date": "2021-12-24T05:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "27e25158-252a-4b44-a821-3f4f9d619f52", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T05:20:37.000Z" + }, + "end": { + "$date": "2021-12-24T08:01:35.000Z" + }, + "events": [ + { + "uuid": "b7d16d66-2dbf-42f5-9047-7061206a0aa3", + "start": { + "$date": "2021-12-24T05:20:37.000Z" + }, + "end": { + "$date": "2021-12-24T08:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", + "uuid": "df2c17ee-d034-4939-9e26-91c383a362d0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-24T05:42:51.000Z" + }, + "end": { + "$date": "2021-12-24T07:05:29.000Z" + }, + "events": [ + { + "uuid": "c9fece2e-94b2-42a0-9d59-6ada12aa7eae", + "start": { + "$date": "2021-12-24T05:42:51.000Z" + }, + "end": { + "$date": "2021-12-24T07:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69a6fbdf-391b-440a-b982-df35a83ec843", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T05:59:37.000Z" + }, + "end": { + "$date": "2021-12-24T06:20:21.000Z" + }, + "events": [ + { + "uuid": "4aebbec1-1430-47d2-b021-acd13542e20b", + "start": { + "$date": "2021-12-24T05:59:37.000Z" + }, + "end": { + "$date": "2021-12-24T06:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b30c3f7-1b73-41ba-9ff8-ee28b5d951b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T06:28:08.000Z" + }, + "end": { + "$date": "2021-12-24T06:54:27.000Z" + }, + "events": [ + { + "uuid": "0d0bb168-3154-44b4-a200-27ed73e96c79", + "start": { + "$date": "2021-12-24T06:28:08.000Z" + }, + "end": { + "$date": "2021-12-24T06:54:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae8e8113-d127-4410-9990-ca376b760eb1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-24T06:54:51.000Z" + }, + "end": { + "$date": "2021-12-24T07:10:06.000Z" + }, + "events": [ + { + "uuid": "3d27f9ed-737e-4956-910d-70bf01730b0b", + "start": { + "$date": "2021-12-24T06:54:51.000Z" + }, + "end": { + "$date": "2021-12-24T07:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f4ea97d-c30c-44a6-b6ec-d3700852f5dd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T08:09:21.000Z" + }, + "end": { + "$date": "2021-12-24T08:38:55.000Z" + }, + "events": [ + { + "uuid": "3c463350-4f59-48d2-9250-a535da15dee2", + "start": { + "$date": "2021-12-24T08:09:21.000Z" + }, + "end": { + "$date": "2021-12-24T08:38:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "09f7f24d-aebe-4431-a54a-8d9912939edf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-24T08:37:20.000Z" + }, + "end": { + "$date": "2021-12-24T08:59:00.000Z" + }, + "events": [ + { + "uuid": "25dc7d13-395a-4452-a69a-7132c73c5379", + "start": { + "$date": "2021-12-24T08:37:20.000Z" + }, + "end": { + "$date": "2021-12-24T08:59:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e40fea4a-6386-408d-b143-6f211869deac", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T08:40:47.000Z" + }, + "end": { + "$date": "2021-12-24T08:57:50.000Z" + }, + "events": [ + { + "uuid": "d1967139-e19e-4074-8dd7-3e9e930090f8", + "start": { + "$date": "2021-12-24T08:40:47.000Z" + }, + "end": { + "$date": "2021-12-24T08:57:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54b9dee7-836c-4051-b09e-4db7e26c6fb4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T09:00:25.000Z" + }, + "end": { + "$date": "2021-12-24T09:04:14.000Z" + }, + "events": [ + { + "uuid": "f8bd5286-35fa-491f-ad2f-0f620e2e6628", + "start": { + "$date": "2021-12-24T09:00:25.000Z" + }, + "end": { + "$date": "2021-12-24T09:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "466fe781-cc8d-4ccd-b889-f9e44cd234e1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-24T09:02:35.000Z" + }, + "end": { + "$date": "2021-12-24T09:06:58.000Z" + }, + "events": [ + { + "uuid": "9b7d1bb4-8649-41a4-b7bb-4ac58370a0b9", + "start": { + "$date": "2021-12-24T09:02:35.000Z" + }, + "end": { + "$date": "2021-12-24T09:06:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb605ad0-cae9-4f5d-9b2d-88b43869cc9d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T09:10:39.000Z" + }, + "end": { + "$date": "2021-12-24T09:30:54.000Z" + }, + "events": [ + { + "uuid": "56c73c6b-1bdf-445c-b8af-a1579fb73974", + "start": { + "$date": "2021-12-24T09:10:39.000Z" + }, + "end": { + "$date": "2021-12-24T09:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb7c5b5b-684a-46dd-8df9-0db6776f75f7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T09:33:34.000Z" + }, + "end": { + "$date": "2021-12-24T10:01:25.000Z" + }, + "events": [ + { + "uuid": "f1e2e4d1-2d95-4868-8c84-b27fa5631b1b", + "start": { + "$date": "2021-12-24T09:33:34.000Z" + }, + "end": { + "$date": "2021-12-24T10:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c3c6e6b-478f-4e96-8c53-0053c0fb9094", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-24T10:07:26.000Z" + }, + "end": { + "$date": "2021-12-24T10:31:47.000Z" + }, + "events": [ + { + "uuid": "bfa03350-9d69-4bd3-b1cb-dc217eed5c1f", + "start": { + "$date": "2021-12-24T10:07:26.000Z" + }, + "end": { + "$date": "2021-12-24T10:31:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "1e8b455a-7285-4b8b-9a61-d13cdf6a19da", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-24T10:09:08.000Z" + }, + "end": { + "$date": "2021-12-25T00:16:26.000Z" + }, + "events": [ + { + "uuid": "04416d8b-3522-467a-8ead-6b3dc61eccc2", + "start": { + "$date": "2021-12-24T10:09:08.000Z" + }, + "end": { + "$date": "2021-12-24T19:43:08.000Z" + }, + "state": "DO_NOT_DISTURB" + }, + { + "uuid": "59cfdbbb-1e4a-4a69-872b-4b61275f6aa3", + "start": { + "$date": "2021-12-24T19:43:08.000Z" + }, + "end": { + "$date": "2021-12-25T00:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4036038b-9232-4482-8209-451081d94c07", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-24T15:23:12.000Z" + }, + "end": { + "$date": "2021-12-24T16:41:59.000Z" + }, + "events": [ + { + "uuid": "660afe8c-8106-460e-8444-dea71d037bd8", + "start": { + "$date": "2021-12-24T15:23:12.000Z" + }, + "end": { + "$date": "2021-12-24T16:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "05edc67e-ca21-4360-adb6-741914224d51", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T15:34:51.000Z" + }, + "end": { + "$date": "2021-12-24T15:42:20.000Z" + }, + "events": [ + { + "uuid": "ea164e27-d4bf-45a1-a94d-2cee0ce3316f", + "start": { + "$date": "2021-12-24T15:34:51.000Z" + }, + "end": { + "$date": "2021-12-24T15:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b01e8cf9-0a48-48eb-8598-6f7241b43ea7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T15:42:46.000Z" + }, + "end": { + "$date": "2021-12-24T16:41:25.000Z" + }, + "events": [ + { + "uuid": "c00f8efc-b110-4f03-b526-37b23021c6c3", + "start": { + "$date": "2021-12-24T15:42:46.000Z" + }, + "end": { + "$date": "2021-12-24T16:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "70a3cf17-4239-41c5-9b9d-01357ef8a2bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T15:56:53.000Z" + }, + "end": { + "$date": "2021-12-24T16:17:28.000Z" + }, + "events": [ + { + "uuid": "a0b990fd-a535-46f6-8a18-0368bfa41c91", + "start": { + "$date": "2021-12-24T15:56:53.000Z" + }, + "end": { + "$date": "2021-12-24T16:17:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2a82da63-3603-4d5a-bc31-93a4446d5004", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T16:17:59.000Z" + }, + "end": { + "$date": "2021-12-24T16:29:09.000Z" + }, + "events": [ + { + "uuid": "e09821b8-d94c-494f-b8c0-1b3ccfffb96a", + "start": { + "$date": "2021-12-24T16:17:59.000Z" + }, + "end": { + "$date": "2021-12-24T16:29:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "2da0030c-74ca-4e88-bcc3-c02e86d5736d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T16:45:52.000Z" + }, + "end": { + "$date": "2021-12-24T17:19:32.000Z" + }, + "events": [ + { + "uuid": "dd59a858-e427-4488-86f9-0d50aa7d3833", + "start": { + "$date": "2021-12-24T16:45:52.000Z" + }, + "end": { + "$date": "2021-12-24T17:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3827746d-5a19-420e-9dc0-571142878dde", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T16:58:52.000Z" + }, + "end": { + "$date": "2021-12-24T17:15:58.000Z" + }, + "events": [ + { + "uuid": "0975f255-d8b5-4fba-8874-470098b5c085", + "start": { + "$date": "2021-12-24T16:58:52.000Z" + }, + "end": { + "$date": "2021-12-24T17:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "04975304-b463-498b-b44f-5f8ba39a133d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-24T16:59:13.000Z" + }, + "end": { + "$date": "2021-12-24T19:09:02.000Z" + }, + "events": [ + { + "uuid": "6c154703-f453-4277-abe5-581ae520bf59", + "start": { + "$date": "2021-12-24T16:59:13.000Z" + }, + "end": { + "$date": "2021-12-24T19:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2fca10f7-f1b0-4244-bf32-55c5d9b0b712", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-25T05:50:45.000Z" + }, + "end": { + "$date": "2021-12-25T05:50:57.000Z" + }, + "events": [ + { + "uuid": "3edb0087-ce26-4a47-8704-3b82f5c7b548", + "start": { + "$date": "2021-12-25T05:50:45.000Z" + }, + "end": { + "$date": "2021-12-25T13:39:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8fa31168-c319-493d-b0c3-0264fdc62624", + "start": { + "$date": "2021-12-25T13:39:45.000Z" + }, + "end": { + "$date": "2021-12-25T13:57:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7a2c93c9-f556-489f-932e-8c5b9cc8b03f", + "start": { + "$date": "2021-12-25T13:57:45.000Z" + }, + "end": { + "$date": "2021-12-25T05:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3ec28c6-ec9b-4652-982b-115cd686c647", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T17:18:08.000Z" + }, + "end": { + "$date": "2021-12-24T17:32:13.000Z" + }, + "events": [ + { + "uuid": "75cded58-7c42-4c85-9add-70e45fb62908", + "start": { + "$date": "2021-12-24T17:18:08.000Z" + }, + "end": { + "$date": "2021-12-24T17:32:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c690de80-a8f3-4b20-8540-f21259bc35a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T17:19:52.000Z" + }, + "end": { + "$date": "2021-12-24T20:04:03.000Z" + }, + "events": [ + { + "uuid": "505425f7-5932-4c9d-8248-32c68e79a033", + "start": { + "$date": "2021-12-24T17:19:52.000Z" + }, + "end": { + "$date": "2021-12-24T20:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "ef553498-8880-4e7b-aebe-0689d8baf131", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T17:33:09.000Z" + }, + "end": { + "$date": "2021-12-24T17:59:35.000Z" + }, + "events": [ + { + "uuid": "2a953ed4-bd44-44dc-8a2d-6c9dc75423b2", + "start": { + "$date": "2021-12-24T17:33:09.000Z" + }, + "end": { + "$date": "2021-12-24T17:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "9411d47d-7acd-40b5-967c-d5b39eeaa7b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T18:01:50.000Z" + }, + "end": { + "$date": "2021-12-24T21:53:29.000Z" + }, + "events": [ + { + "uuid": "db1b8fcd-1a3e-4f8e-82ce-9525c391116f", + "start": { + "$date": "2021-12-24T18:01:50.000Z" + }, + "end": { + "$date": "2021-12-24T19:29:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "148028f6-75f1-44a2-a192-613a2904106b", + "start": { + "$date": "2021-12-24T19:29:50.000Z" + }, + "end": { + "$date": "2021-12-24T19:40:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53c511c8-01cb-4327-bc01-ddfbdb3f77aa", + "start": { + "$date": "2021-12-24T19:40:50.000Z" + }, + "end": { + "$date": "2021-12-24T21:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "f00450c8-b272-45e2-9e5f-4e38d7bf8199", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-24T19:42:16.000Z" + }, + "end": { + "$date": "2021-12-24T19:45:37.000Z" + }, + "events": [ + { + "uuid": "b9ac4424-0a9a-4650-95c8-94d91fb22ae2", + "start": { + "$date": "2021-12-24T19:42:16.000Z" + }, + "end": { + "$date": "2021-12-24T19:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "98a65b2a-20a5-48a8-a9d3-9e475bd7b34c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-24T19:45:52.000Z" + }, + "end": { + "$date": "2021-12-25T00:53:41.000Z" + }, + "events": [ + { + "uuid": "8fa4cf7a-d970-45df-bd84-842d346cf35b", + "start": { + "$date": "2021-12-24T19:45:52.000Z" + }, + "end": { + "$date": "2021-12-25T00:53:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c5183fc3-0b02-42f9-b218-200f4392d133", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-24T20:18:41.000Z" + }, + "end": { + "$date": "2021-12-24T20:31:52.000Z" + }, + "events": [ + { + "uuid": "b7c01f37-0f63-4b23-a117-adc0fa2bc027", + "start": { + "$date": "2021-12-24T20:18:41.000Z" + }, + "end": { + "$date": "2021-12-24T20:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "204eb726-39c6-4d64-b6cf-8b8420a36f5b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T20:19:46.000Z" + }, + "end": { + "$date": "2021-12-24T20:21:50.000Z" + }, + "events": [ + { + "uuid": "41cc2c1c-4e8f-4f80-91cd-a202922acda5", + "start": { + "$date": "2021-12-24T20:19:46.000Z" + }, + "end": { + "$date": "2021-12-24T20:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "cdc31c73-7e3c-4ac7-89c0-b094e340dbc7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T21:56:30.000Z" + }, + "end": { + "$date": "2021-12-24T22:03:24.000Z" + }, + "events": [ + { + "uuid": "820fcb5c-feca-4b24-8588-e783c73496b4", + "start": { + "$date": "2021-12-24T21:56:30.000Z" + }, + "end": { + "$date": "2021-12-24T22:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "81bda91b-8874-4180-8d35-463eaa95fb93", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-24T21:57:43.000Z" + }, + "end": { + "$date": "2021-12-24T22:30:22.000Z" + }, + "events": [ + { + "uuid": "e8d70c97-be64-4875-8a3d-abe050c0c094", + "start": { + "$date": "2021-12-24T21:57:43.000Z" + }, + "end": { + "$date": "2021-12-24T22:30:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "5eb13bb5-3b57-43d6-9eff-b2042ebfdd2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-24T22:04:06.000Z" + }, + "end": { + "$date": "2021-12-25T01:16:30.000Z" + }, + "events": [ + { + "uuid": "54eafc51-897e-44dd-91fc-e2aeffedc7be", + "start": { + "$date": "2021-12-24T22:04:06.000Z" + }, + "end": { + "$date": "2021-12-24T23:57:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0ad52212-db8f-4d09-a890-c8b089b3efc0", + "start": { + "$date": "2021-12-24T23:57:06.000Z" + }, + "end": { + "$date": "2021-12-25T00:01:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c3c50b83-59e5-4db1-8c99-af421f3901ca", + "start": { + "$date": "2021-12-25T00:01:06.000Z" + }, + "end": { + "$date": "2021-12-25T00:12:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e0d361cd-a4fb-4427-9ec1-eda905bf2227", + "start": { + "$date": "2021-12-25T00:12:06.000Z" + }, + "end": { + "$date": "2021-12-25T00:27:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf9b14b4-afd6-41d1-9440-ab41f0f4b07b", + "start": { + "$date": "2021-12-25T00:27:06.000Z" + }, + "end": { + "$date": "2021-12-25T00:37:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d839d50e-b4b1-4b76-89df-9f7e42f1c3f2", + "start": { + "$date": "2021-12-25T00:37:06.000Z" + }, + "end": { + "$date": "2021-12-25T00:41:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "56cbeb4a-b555-4e2d-a85c-89cceae8afd9", + "start": { + "$date": "2021-12-25T00:41:06.000Z" + }, + "end": { + "$date": "2021-12-25T01:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "020182d1-9d48-492f-839d-7295b542104b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-24T22:36:04.000Z" + }, + "end": { + "$date": "2021-12-25T05:50:18.000Z" + }, + "events": [ + { + "uuid": "b2c092d3-4510-4cd5-bab1-4abef6c7a1d8", + "start": { + "$date": "2021-12-24T22:36:04.000Z" + }, + "end": { + "$date": "2021-12-25T01:05:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06e31f45-ffc0-40b3-bfd6-b44c79a81b75", + "start": { + "$date": "2021-12-25T01:05:04.000Z" + }, + "end": { + "$date": "2021-12-25T01:25:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d688f24b-6b3b-485b-8182-51df74b63574", + "start": { + "$date": "2021-12-25T01:25:04.000Z" + }, + "end": { + "$date": "2021-12-25T05:50:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02faaa84-65ff-489a-b4dc-47f080d9f9ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-25T01:16:04.000Z" + }, + "end": { + "$date": "2021-12-25T03:06:40.000Z" + }, + "events": [ + { + "uuid": "21b7c00d-bb7b-432e-99c5-8535b56ff45a", + "start": { + "$date": "2021-12-25T01:16:04.000Z" + }, + "end": { + "$date": "2021-12-25T03:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb8f2eae-0296-46a1-885c-b82a0e082bc1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-25T01:16:41.000Z" + }, + "end": { + "$date": "2021-12-25T02:22:51.000Z" + }, + "events": [ + { + "uuid": "d9160f41-cfb7-4c2a-a823-f5977e408e3a", + "start": { + "$date": "2021-12-25T01:16:41.000Z" + }, + "end": { + "$date": "2021-12-25T02:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2ab3c64c-e721-405b-9978-9ed8340e2cf8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-25T01:40:09.000Z" + }, + "end": { + "$date": "2021-12-25T05:51:31.000Z" + }, + "events": [ + { + "uuid": "f1e36817-9e6f-4c64-8c19-54806db2d7c4", + "start": { + "$date": "2021-12-25T01:40:09.000Z" + }, + "end": { + "$date": "2021-12-25T05:51:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb3d54fc-8a5e-4a32-998e-3e3ce8103f86", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T02:07:20.000Z" + }, + "end": { + "$date": "2021-12-25T02:35:53.000Z" + }, + "events": [ + { + "uuid": "75087fab-ef3f-4851-9bd6-abda8157725f", + "start": { + "$date": "2021-12-25T02:07:20.000Z" + }, + "end": { + "$date": "2021-12-25T02:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff16b7c0-bf0d-4edd-b786-6f8fa6f54431", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T02:44:29.000Z" + }, + "end": { + "$date": "2021-12-25T03:19:57.000Z" + }, + "events": [ + { + "uuid": "1ee5023a-2451-4af5-909a-cf9713387988", + "start": { + "$date": "2021-12-25T02:44:29.000Z" + }, + "end": { + "$date": "2021-12-25T03:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", + "uuid": "76ff5d2a-1d59-4fdd-b4f2-b66a3da429e8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-25T05:49:27.000Z" + }, + "end": { + "$date": "2021-12-25T06:01:13.000Z" + }, + "events": [ + { + "uuid": "26666227-8c50-462c-8c8f-3d497a6c03f1", + "start": { + "$date": "2021-12-25T05:49:27.000Z" + }, + "end": { + "$date": "2021-12-25T06:01:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5a3ee4d-64ff-4225-a911-befa1e9acc34", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-25T05:53:16.000Z" + }, + "end": { + "$date": "2021-12-25T06:54:35.000Z" + }, + "events": [ + { + "uuid": "682c7172-0e74-4067-a1d7-0d2d75f7c07c", + "start": { + "$date": "2021-12-25T05:53:16.000Z" + }, + "end": { + "$date": "2021-12-25T06:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", + "uuid": "9ba0517d-90bb-49f6-9f77-55ce391c6bba", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-25T06:01:27.000Z" + }, + "end": { + "$date": "2021-12-25T06:49:54.000Z" + }, + "events": [ + { + "uuid": "9b279378-6348-411c-a503-9a287c67280f", + "start": { + "$date": "2021-12-25T06:01:27.000Z" + }, + "end": { + "$date": "2021-12-25T06:49:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", + "uuid": "012a40ef-b7c4-4808-af39-444ddc9aa50f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-25T06:49:58.000Z" + }, + "end": { + "$date": "2021-12-25T07:44:55.000Z" + }, + "events": [ + { + "uuid": "9b560943-51c4-49a3-8136-60b14ef6609f", + "start": { + "$date": "2021-12-25T06:49:58.000Z" + }, + "end": { + "$date": "2021-12-25T07:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d3dd7aab-b372-4be7-824c-4b970c00b285", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-25T06:50:54.000Z" + }, + "end": { + "$date": "2021-12-25T08:27:07.000Z" + }, + "events": [ + { + "uuid": "a9629868-e7eb-481d-8198-9298f714f360", + "start": { + "$date": "2021-12-25T06:50:54.000Z" + }, + "end": { + "$date": "2021-12-25T08:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2805afd-554d-467a-857f-95b12c304810", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-25T08:30:51.000Z" + }, + "end": { + "$date": "2021-12-25T08:52:22.000Z" + }, + "events": [ + { + "uuid": "36facb69-87a2-4c23-8b6c-ece8eca07701", + "start": { + "$date": "2021-12-25T08:30:51.000Z" + }, + "end": { + "$date": "2021-12-25T08:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5024687-6106-42c7-9f16-045eb69698d4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2021-12-25T08:56:12.000Z" + }, + "end": { + "$date": "2021-12-25T09:14:23.000Z" + }, + "events": [ + { + "uuid": "018d8f95-dbf5-40a5-91fa-7454e7fd788d", + "start": { + "$date": "2021-12-25T08:56:12.000Z" + }, + "end": { + "$date": "2021-12-25T09:14:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f6267808-1fb2-4794-aecb-d3f09a34d651", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-25T10:53:53.000Z" + }, + "end": { + "$date": "2021-12-25T11:59:42.000Z" + }, + "events": [ + { + "uuid": "94e8a735-0223-462d-a0d9-4e84b5fdffa2", + "start": { + "$date": "2021-12-25T10:53:53.000Z" + }, + "end": { + "$date": "2021-12-25T11:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "960c31d1-8913-4a85-ad06-e1291fdd056c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-25T13:39:59.000Z" + }, + "end": { + "$date": "2021-12-25T23:30:17.000Z" + }, + "events": [ + { + "uuid": "801e0839-4700-443f-87f0-fff2c5e15120", + "start": { + "$date": "2021-12-25T13:39:59.000Z" + }, + "end": { + "$date": "2021-12-25T20:55:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "28d14c4a-847a-46ab-b56e-1935fa0e72c3", + "start": { + "$date": "2021-12-25T20:55:59.000Z" + }, + "end": { + "$date": "2021-12-25T21:08:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb6506b5-5980-402d-8eec-0540d4732e05", + "start": { + "$date": "2021-12-25T21:08:59.000Z" + }, + "end": { + "$date": "2021-12-25T23:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "98a2f989-3aa8-4623-8de8-72cb815fca42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-25T16:12:42.000Z" + }, + "end": { + "$date": "2021-12-26T17:57:42.000Z" + }, + "events": [ + { + "uuid": "ea1a3a5d-169f-4319-b5c1-7588a0788186", + "start": { + "$date": "2021-12-25T16:12:42.000Z" + }, + "end": { + "$date": "2021-12-25T20:36:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e16fa782-10ad-4ba0-87dd-d096c7e20916", + "start": { + "$date": "2021-12-25T20:36:42.000Z" + }, + "end": { + "$date": "2021-12-25T20:38:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "276268b3-2548-4176-aada-ee6a30d15f21", + "start": { + "$date": "2021-12-25T20:38:42.000Z" + }, + "end": { + "$date": "2021-12-25T22:22:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a68998c-de84-4d21-9c8f-dc4d05f0e301", + "start": { + "$date": "2021-12-25T22:22:42.000Z" + }, + "end": { + "$date": "2021-12-25T22:27:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "abe83b0f-7976-4363-9bcd-aa180d140df1", + "start": { + "$date": "2021-12-25T22:27:42.000Z" + }, + "end": { + "$date": "2021-12-26T03:28:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e2871fe-067b-4209-9170-8a1b1d9ebedf", + "start": { + "$date": "2021-12-26T03:28:42.000Z" + }, + "end": { + "$date": "2021-12-26T03:55:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4ea7ad0-7f2c-4c90-bda0-6debfad2a871", + "start": { + "$date": "2021-12-26T03:55:42.000Z" + }, + "end": { + "$date": "2021-12-26T03:58:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c873319b-3aca-4231-bc64-15766e9c068f", + "start": { + "$date": "2021-12-26T03:58:42.000Z" + }, + "end": { + "$date": "2021-12-26T04:55:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "610788f4-10f6-478e-a9b4-f2149626e810", + "start": { + "$date": "2021-12-26T04:55:42.000Z" + }, + "end": { + "$date": "2021-12-26T04:58:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30149979-98db-4f6d-ab03-899dd49baca0", + "start": { + "$date": "2021-12-26T04:58:42.000Z" + }, + "end": { + "$date": "2021-12-26T04:59:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "76301520-3fd3-42f8-9c7d-519a430b25dc", + "start": { + "$date": "2021-12-26T04:59:42.000Z" + }, + "end": { + "$date": "2021-12-26T05:02:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c72074c5-7376-4632-a5af-2e426836bd58", + "start": { + "$date": "2021-12-26T05:02:42.000Z" + }, + "end": { + "$date": "2021-12-26T05:19:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09b0b554-27e9-4b4b-bdc0-105b869102e4", + "start": { + "$date": "2021-12-26T05:19:42.000Z" + }, + "end": { + "$date": "2021-12-26T05:21:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3fe471f-1677-4853-ba3f-e7a570be9da6", + "start": { + "$date": "2021-12-26T05:21:42.000Z" + }, + "end": { + "$date": "2021-12-26T15:32:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2f43d57-63de-418f-afd4-e8e53fe5bd4f", + "start": { + "$date": "2021-12-26T15:32:42.000Z" + }, + "end": { + "$date": "2021-12-26T17:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "04c1bbfe-3c30-45c4-a800-93968aefebae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-25T22:34:55.000Z" + }, + "end": { + "$date": "2021-12-25T22:35:04.000Z" + }, + "events": [ + { + "uuid": "31881bf2-3b34-4bf0-b656-76936eaa5024", + "start": { + "$date": "2021-12-25T22:34:55.000Z" + }, + "end": { + "$date": "2021-12-26T02:12:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8396562c-d2b7-4fdd-ba68-bf24191e68e4", + "start": { + "$date": "2021-12-26T02:12:55.000Z" + }, + "end": { + "$date": "2021-12-26T02:43:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36776aca-7aae-4f7a-af77-dce22639b484", + "start": { + "$date": "2021-12-26T02:43:55.000Z" + }, + "end": { + "$date": "2021-12-26T03:44:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ba989dc-0d48-4d6a-938d-4b3668ff1ed6", + "start": { + "$date": "2021-12-26T03:44:55.000Z" + }, + "end": { + "$date": "2021-12-26T03:47:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "558566d3-c74c-4e7e-9bad-73d19af10b97", + "start": { + "$date": "2021-12-26T03:47:55.000Z" + }, + "end": { + "$date": "2021-12-25T22:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5e843455-c119-4640-bd00-9313d403b6c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-25T19:44:10.000Z" + }, + "end": { + "$date": "2021-12-25T19:44:30.000Z" + }, + "events": [ + { + "uuid": "11997c98-0a5a-49c5-8c64-b4f446ad7a44", + "start": { + "$date": "2021-12-25T19:44:10.000Z" + }, + "end": { + "$date": "2021-12-25T20:42:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7272c417-8e22-49a4-84f8-2ef8b3863023", + "start": { + "$date": "2021-12-25T20:42:10.000Z" + }, + "end": { + "$date": "2021-12-25T22:24:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6e462db-4a46-41ec-b741-acd65e8dc797", + "start": { + "$date": "2021-12-25T22:24:10.000Z" + }, + "end": { + "$date": "2021-12-25T19:44:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "8047dec8-4c62-4083-9b46-2e0f7ef143d3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-25T17:40:47.000Z" + }, + "end": { + "$date": "2021-12-25T20:21:56.000Z" + }, + "events": [ + { + "uuid": "d23b3612-4b8e-48c4-8a23-28af74d51536", + "start": { + "$date": "2021-12-25T17:40:47.000Z" + }, + "end": { + "$date": "2021-12-25T20:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "dee6a0ce-ab8d-49c7-84b5-b323f6a7e35e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-25T18:58:53.000Z" + }, + "end": { + "$date": "2021-12-25T19:10:49.000Z" + }, + "events": [ + { + "uuid": "309e7d07-078d-456c-bbc2-24fa556f57a1", + "start": { + "$date": "2021-12-25T18:58:53.000Z" + }, + "end": { + "$date": "2021-12-25T19:10:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4216031f-a4b9-4087-a25f-f901e1dee68b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-25T19:11:00.000Z" + }, + "end": { + "$date": "2021-12-25T19:14:44.000Z" + }, + "events": [ + { + "uuid": "ddc89380-63a1-4821-9d4c-8c73f580be93", + "start": { + "$date": "2021-12-25T19:11:00.000Z" + }, + "end": { + "$date": "2021-12-25T19:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9d7d940f-3c45-4481-98aa-35681ea8e088", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-25T19:15:11.000Z" + }, + "end": { + "$date": "2021-12-25T19:38:20.000Z" + }, + "events": [ + { + "uuid": "4ab106c5-9426-48fd-baa1-9d4587c05e05", + "start": { + "$date": "2021-12-25T19:15:11.000Z" + }, + "end": { + "$date": "2021-12-25T19:38:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a4572f2d-1bb3-4195-9104-2dd6a17b9cf3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-25T19:58:05.000Z" + }, + "end": { + "$date": "2021-12-25T20:07:33.000Z" + }, + "events": [ + { + "uuid": "116acf50-731c-4eb2-8ef7-dce91ccd2ba2", + "start": { + "$date": "2021-12-25T19:58:05.000Z" + }, + "end": { + "$date": "2021-12-25T20:07:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "88b343f4-3be6-4c9d-aed4-ff180b0dd29b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T20:34:18.000Z" + }, + "end": { + "$date": "2021-12-25T20:52:53.000Z" + }, + "events": [ + { + "uuid": "3f55f1e0-0d8f-4287-88df-aa1a8d1e451a", + "start": { + "$date": "2021-12-25T20:34:18.000Z" + }, + "end": { + "$date": "2021-12-25T20:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "4a3918be-f86d-4751-9778-396d41fe5cb4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-25T20:39:10.000Z" + }, + "end": { + "$date": "2021-12-25T23:22:45.000Z" + }, + "events": [ + { + "uuid": "1fd6b59f-bb1f-4959-be0e-c3b435c05dd1", + "start": { + "$date": "2021-12-25T20:39:10.000Z" + }, + "end": { + "$date": "2021-12-25T23:22:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "faa97f91-f87e-4299-ad5e-70f61a5087a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T20:59:59.000Z" + }, + "end": { + "$date": "2021-12-25T21:22:16.000Z" + }, + "events": [ + { + "uuid": "523a115e-24aa-45da-8230-2148394ed249", + "start": { + "$date": "2021-12-25T20:59:59.000Z" + }, + "end": { + "$date": "2021-12-25T21:22:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "077c1024-e2dc-4304-9353-df718702f442", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T21:23:12.000Z" + }, + "end": { + "$date": "2021-12-25T21:43:18.000Z" + }, + "events": [ + { + "uuid": "7cba35ed-ff81-44df-b37d-363763adc8ff", + "start": { + "$date": "2021-12-25T21:23:12.000Z" + }, + "end": { + "$date": "2021-12-25T21:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33692cf0-3006-4131-98ae-b7a0d8e785db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T21:48:39.000Z" + }, + "end": { + "$date": "2021-12-25T22:11:39.000Z" + }, + "events": [ + { + "uuid": "3c027a9b-07e2-4793-ac2a-ec483a4ab17a", + "start": { + "$date": "2021-12-25T21:48:39.000Z" + }, + "end": { + "$date": "2021-12-25T22:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "01805a32-7ec5-454b-91da-cc14ab7640c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-25T22:12:15.000Z" + }, + "end": { + "$date": "2021-12-25T23:28:56.000Z" + }, + "events": [ + { + "uuid": "640c4682-f4ff-483e-a01a-87451bc6af63", + "start": { + "$date": "2021-12-25T22:12:15.000Z" + }, + "end": { + "$date": "2021-12-25T22:33:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b3dedac9-c723-47fb-88d6-0a06db414ea1", + "start": { + "$date": "2021-12-25T22:33:15.000Z" + }, + "end": { + "$date": "2021-12-25T23:14:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "614fe6c2-28f1-4a2e-941a-5bd007fea931", + "start": { + "$date": "2021-12-25T23:14:15.000Z" + }, + "end": { + "$date": "2021-12-25T23:24:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b73d0c96-de7c-48bc-92f2-a75c1c9cc0eb", + "start": { + "$date": "2021-12-25T23:24:15.000Z" + }, + "end": { + "$date": "2021-12-25T23:28:56.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "3c22b1e7-b473-48c8-8da1-0fc29c09a19f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-25T23:22:54.000Z" + }, + "end": { + "$date": "2021-12-26T03:14:08.000Z" + }, + "events": [ + { + "uuid": "d7c132ec-5257-46c0-b6a5-4ef9ce7ae6e3", + "start": { + "$date": "2021-12-25T23:22:54.000Z" + }, + "end": { + "$date": "2021-12-26T03:14:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8f2abfe8-7868-4cef-a7d2-81a0db5d0496", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-25T23:29:56.000Z" + }, + "end": { + "$date": "2021-12-25T23:44:53.000Z" + }, + "events": [ + { + "uuid": "066b3e89-2d61-4a24-9aeb-b4d8199b1d5a", + "start": { + "$date": "2021-12-25T23:29:56.000Z" + }, + "end": { + "$date": "2021-12-25T23:44:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94f74c8d-2f9d-4419-8768-6aa5165bbdcf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-26T00:07:01.000Z" + }, + "end": { + "$date": "2021-12-26T00:51:13.000Z" + }, + "events": [ + { + "uuid": "a5b739a0-1243-4754-a8a8-24ad319d37a1", + "start": { + "$date": "2021-12-26T00:07:01.000Z" + }, + "end": { + "$date": "2021-12-26T00:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "018be1ab-f429-4ef1-8cf1-d1ea491ed565", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-25T23:32:48.000Z" + }, + "end": { + "$date": "2021-12-26T03:12:44.000Z" + }, + "events": [ + { + "uuid": "1c56625a-e232-46d3-908e-f3a054b6ccf2", + "start": { + "$date": "2021-12-25T23:32:48.000Z" + }, + "end": { + "$date": "2021-12-26T03:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8240d2bd-260b-4acb-bacb-6969b8fdcdae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-26T00:23:52.000Z" + }, + "end": { + "$date": "2021-12-26T01:37:23.000Z" + }, + "events": [ + { + "uuid": "c11f76cd-ec13-450e-bdca-eada754ac5fb", + "start": { + "$date": "2021-12-26T00:23:52.000Z" + }, + "end": { + "$date": "2021-12-26T01:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "466ef1d1-a1f1-4703-ba83-ec230a5540f3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-26T01:00:34.000Z" + }, + "end": { + "$date": "2021-12-26T01:36:29.000Z" + }, + "events": [ + { + "uuid": "5a62b488-907f-46ea-82de-dea6c2095cd6", + "start": { + "$date": "2021-12-26T01:00:34.000Z" + }, + "end": { + "$date": "2021-12-26T01:36:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0b1fa3c-e089-4d17-adc5-9650b1720aa7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-26T01:37:12.000Z" + }, + "end": { + "$date": "2021-12-26T01:41:25.000Z" + }, + "events": [ + { + "uuid": "f6243554-b65b-4c91-9dd2-acb6bef994b1", + "start": { + "$date": "2021-12-26T01:37:12.000Z" + }, + "end": { + "$date": "2021-12-26T01:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "34038ff3-a170-4e58-bad7-d8cdc96a8123", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-26T01:38:33.000Z" + }, + "end": { + "$date": "2021-12-26T02:22:07.000Z" + }, + "events": [ + { + "uuid": "20b5a8e6-fb7e-410b-9de8-201bb9a1996f", + "start": { + "$date": "2021-12-26T01:38:33.000Z" + }, + "end": { + "$date": "2021-12-26T02:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "292a8cad-6fd4-4b2a-b91b-9cd522eec571", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-26T02:48:05.000Z" + }, + "end": { + "$date": "2021-12-26T03:07:39.000Z" + }, + "events": [ + { + "uuid": "48d72623-fe79-486a-8158-b776094f941e", + "start": { + "$date": "2021-12-26T02:48:05.000Z" + }, + "end": { + "$date": "2021-12-26T03:07:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "582c6d45-279f-4808-9192-4e629f6b83e8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-26T10:29:10.000Z" + }, + "end": { + "$date": "2021-12-26T10:52:05.000Z" + }, + "events": [ + { + "uuid": "94b707e6-4e99-43be-b219-345e4d9abb08", + "start": { + "$date": "2021-12-26T10:29:10.000Z" + }, + "end": { + "$date": "2021-12-26T10:52:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "66c2188e-72b1-4501-8513-731d9eafef8b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-26T10:52:14.000Z" + }, + "end": { + "$date": "2021-12-26T13:16:51.000Z" + }, + "events": [ + { + "uuid": "1e924ff4-5b19-4f13-9889-b0db11c0deec", + "start": { + "$date": "2021-12-26T10:52:14.000Z" + }, + "end": { + "$date": "2021-12-26T13:16:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "710af6e2-4481-474c-8c53-f886ab50e29f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-26T14:50:42.000Z" + }, + "end": { + "$date": "2021-12-26T16:27:48.000Z" + }, + "events": [ + { + "uuid": "b0aab693-83e8-43ee-8135-34786ae9cba7", + "start": { + "$date": "2021-12-26T14:50:42.000Z" + }, + "end": { + "$date": "2021-12-26T16:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "3d65bf57-f1f9-4c27-a831-26c32a72ce43", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-26T15:19:09.000Z" + }, + "end": { + "$date": "2021-12-26T22:45:40.000Z" + }, + "events": [ + { + "uuid": "19b131a0-8af6-4cf9-84c5-1d1a990ec375", + "start": { + "$date": "2021-12-26T15:19:09.000Z" + }, + "end": { + "$date": "2021-12-26T17:34:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d52aa2f4-12d2-474c-b19e-cdc648649444", + "start": { + "$date": "2021-12-26T17:34:09.000Z" + }, + "end": { + "$date": "2021-12-26T17:35:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "76790e89-8fc8-4f55-8560-bc00da071454", + "start": { + "$date": "2021-12-26T17:35:09.000Z" + }, + "end": { + "$date": "2021-12-26T17:53:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "91a93f0e-da88-437a-af27-af3fa55e486b", + "start": { + "$date": "2021-12-26T17:53:09.000Z" + }, + "end": { + "$date": "2021-12-26T17:54:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5c0ac8b2-1843-45a7-bdbf-1becf90f673b", + "start": { + "$date": "2021-12-26T17:54:09.000Z" + }, + "end": { + "$date": "2021-12-26T18:12:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a2c62a0-c204-44e5-9f24-02130d8a511d", + "start": { + "$date": "2021-12-26T18:12:09.000Z" + }, + "end": { + "$date": "2021-12-26T18:13:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8308a10a-68fe-499d-b45c-ff9270eea295", + "start": { + "$date": "2021-12-26T18:13:09.000Z" + }, + "end": { + "$date": "2021-12-26T19:55:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7bf8e4b-e41b-4790-80a7-909dcf291618", + "start": { + "$date": "2021-12-26T19:55:09.000Z" + }, + "end": { + "$date": "2021-12-26T19:59:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "34f4f04a-5045-4b07-8668-66d2fad558ba", + "start": { + "$date": "2021-12-26T19:59:09.000Z" + }, + "end": { + "$date": "2021-12-26T22:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "65b958e8-cb1e-4e9a-9444-33f2184d96f7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-26T17:03:35.000Z" + }, + "end": { + "$date": "2021-12-26T18:51:42.000Z" + }, + "events": [ + { + "uuid": "4e613380-deaf-4b56-9471-c693d36554ee", + "start": { + "$date": "2021-12-26T17:03:35.000Z" + }, + "end": { + "$date": "2021-12-26T17:17:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d4fde13f-c102-4666-9c6c-089ed9c6ad22", + "start": { + "$date": "2021-12-26T17:17:35.000Z" + }, + "end": { + "$date": "2021-12-26T17:21:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c03daa46-ad2e-46cf-991b-2dd10e2ce281", + "start": { + "$date": "2021-12-26T17:21:35.000Z" + }, + "end": { + "$date": "2021-12-26T18:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "8531773d-4663-4942-9037-0ea1758e9290", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-26T17:54:54.000Z" + }, + "end": { + "$date": "2021-12-26T19:28:40.000Z" + }, + "events": [ + { + "uuid": "6afdedba-1c0b-4d6e-8889-9329afedf541", + "start": { + "$date": "2021-12-26T17:54:54.000Z" + }, + "end": { + "$date": "2021-12-26T19:28:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6a31807a-33db-4f0a-9530-8a8ea4d482eb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-26T18:58:12.000Z" + }, + "end": { + "$date": "2021-12-27T02:43:18.000Z" + }, + "events": [ + { + "uuid": "832004c7-1330-4609-b863-bf21a3d17bcd", + "start": { + "$date": "2021-12-26T18:58:12.000Z" + }, + "end": { + "$date": "2021-12-26T19:58:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ad3aa22-b296-4aa7-a718-267bcdc92df4", + "start": { + "$date": "2021-12-26T19:58:12.000Z" + }, + "end": { + "$date": "2021-12-26T23:43:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b53dbc3d-ed2e-4145-9b72-7e44812e65f9", + "start": { + "$date": "2021-12-26T23:43:12.000Z" + }, + "end": { + "$date": "2021-12-27T02:43:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "e49441a0-e916-4ef5-8ea8-72663be50bd4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-26T20:37:00.000Z" + }, + "end": { + "$date": "2021-12-26T21:20:15.000Z" + }, + "events": [ + { + "uuid": "e0fca14b-a8f1-40de-8775-4ae6ae110b32", + "start": { + "$date": "2021-12-26T20:37:00.000Z" + }, + "end": { + "$date": "2021-12-26T21:20:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2830b6d4-5dd7-4a6d-bb01-3c11c4ffea37", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-26T21:21:23.000Z" + }, + "end": { + "$date": "2021-12-26T21:33:44.000Z" + }, + "events": [ + { + "uuid": "aebefdce-a528-4c5c-bb83-03485e6004d2", + "start": { + "$date": "2021-12-26T21:21:23.000Z" + }, + "end": { + "$date": "2021-12-26T21:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee803622-eb81-4562-bd75-1ccae065129e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-26T21:46:32.000Z" + }, + "end": { + "$date": "2021-12-27T00:27:04.000Z" + }, + "events": [ + { + "uuid": "d90e94e1-d7d3-428c-902a-37b7aae17fed", + "start": { + "$date": "2021-12-26T21:46:32.000Z" + }, + "end": { + "$date": "2021-12-27T00:27:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "352d64d2-2dff-4f9f-b10a-790c1b6459cd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-26T21:50:55.000Z" + }, + "end": { + "$date": "2021-12-26T23:03:08.000Z" + }, + "events": [ + { + "uuid": "40e0ab56-f9a5-4f2b-9ad5-6d58d8785400", + "start": { + "$date": "2021-12-26T21:50:55.000Z" + }, + "end": { + "$date": "2021-12-26T23:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e9f3a955-8564-42a8-bf7b-bc84b1ed8a3a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-26T23:05:13.000Z" + }, + "end": { + "$date": "2021-12-26T23:35:30.000Z" + }, + "events": [ + { + "uuid": "948ca704-e956-4940-8e50-948d1e30118d", + "start": { + "$date": "2021-12-26T23:05:13.000Z" + }, + "end": { + "$date": "2021-12-26T23:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e08bdbae-87a4-4525-8fdf-395d72a4b44b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-26T23:47:48.000Z" + }, + "end": { + "$date": "2021-12-26T23:58:04.000Z" + }, + "events": [ + { + "uuid": "b0d02d42-6369-4a75-8868-0e31cf094730", + "start": { + "$date": "2021-12-26T23:47:48.000Z" + }, + "end": { + "$date": "2021-12-26T23:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "dabbab74-2d91-4724-8d52-bbec7442f2ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-26T23:58:09.000Z" + }, + "end": { + "$date": "2021-12-27T01:06:52.000Z" + }, + "events": [ + { + "uuid": "dae3fb27-06f6-497b-8120-4b145900a8b6", + "start": { + "$date": "2021-12-26T23:58:09.000Z" + }, + "end": { + "$date": "2021-12-27T01:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c1abe110-894b-49d4-ae86-b50a3b086b0a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T00:14:43.000Z" + }, + "end": { + "$date": "2021-12-27T02:43:26.000Z" + }, + "events": [ + { + "uuid": "852f8ce4-02c6-4062-8ee9-687fca0f26c1", + "start": { + "$date": "2021-12-27T00:14:43.000Z" + }, + "end": { + "$date": "2021-12-27T02:43:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "d5d13d62-a2c4-49d7-8365-9b7159f75818", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T00:29:09.000Z" + }, + "end": { + "$date": "2021-12-27T01:06:11.000Z" + }, + "events": [ + { + "uuid": "47037018-680d-423f-b7a4-b6061777f029", + "start": { + "$date": "2021-12-27T00:29:09.000Z" + }, + "end": { + "$date": "2021-12-27T01:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", + "uuid": "ec1cd0c2-568b-45a5-a4a2-35d0bbf4e563", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T01:08:20.000Z" + }, + "end": { + "$date": "2021-12-27T01:22:13.000Z" + }, + "events": [ + { + "uuid": "aedb9020-abb9-49ae-8c67-4683fe1bff31", + "start": { + "$date": "2021-12-27T01:08:20.000Z" + }, + "end": { + "$date": "2021-12-27T01:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "563fcc04-f574-433a-b767-d12a3fa82869", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T01:08:57.000Z" + }, + "end": { + "$date": "2021-12-27T01:25:33.000Z" + }, + "events": [ + { + "uuid": "11a7c5b3-8cb9-4264-8bf5-2bcffe3234f8", + "start": { + "$date": "2021-12-27T01:08:57.000Z" + }, + "end": { + "$date": "2021-12-27T01:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d802f2f3-715c-4081-b16c-9a49b5d2b104", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-27T01:27:26.000Z" + }, + "end": { + "$date": "2021-12-27T01:49:22.000Z" + }, + "events": [ + { + "uuid": "9b8df26c-8b9b-415d-81cb-86591b27eb2e", + "start": { + "$date": "2021-12-27T01:27:26.000Z" + }, + "end": { + "$date": "2021-12-27T01:49:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "b450bcd7-031b-406b-b829-61129b9cff42", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T01:33:39.000Z" + }, + "end": { + "$date": "2021-12-27T02:31:12.000Z" + }, + "events": [ + { + "uuid": "ef1a7c66-577f-4544-a396-2aa7ac137fff", + "start": { + "$date": "2021-12-27T01:33:39.000Z" + }, + "end": { + "$date": "2021-12-27T02:31:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "1d2e026f-5de0-4772-9ef7-44da02e3755c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T01:50:00.000Z" + }, + "end": { + "$date": "2021-12-27T02:59:02.000Z" + }, + "events": [ + { + "uuid": "ae75ffbb-6c7b-4d76-a678-4f88419966ad", + "start": { + "$date": "2021-12-27T01:50:00.000Z" + }, + "end": { + "$date": "2021-12-27T02:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7059ec98-8c78-4ef9-8c2f-937cdb9e9e52", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-27T02:15:13.000Z" + }, + "end": { + "$date": "2021-12-27T03:25:07.000Z" + }, + "events": [ + { + "uuid": "cdcd8d89-6e8a-4227-bd91-78024014059a", + "start": { + "$date": "2021-12-27T02:15:13.000Z" + }, + "end": { + "$date": "2021-12-27T03:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "79c1bab1-5937-41a1-ad5c-5b35f0d6b095", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T02:52:29.000Z" + }, + "end": { + "$date": "2021-12-27T02:54:15.000Z" + }, + "events": [ + { + "uuid": "ae2205bc-d176-44c9-8f6b-22cb00740198", + "start": { + "$date": "2021-12-27T02:52:29.000Z" + }, + "end": { + "$date": "2021-12-27T02:54:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "5c766623-4faa-4e8f-8946-a60b55645f4a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T02:58:00.000Z" + }, + "end": { + "$date": "2021-12-27T03:35:21.000Z" + }, + "events": [ + { + "uuid": "29ae8547-a7dc-4fb8-aa09-d21deb119caf", + "start": { + "$date": "2021-12-27T02:58:00.000Z" + }, + "end": { + "$date": "2021-12-27T03:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "959e94e5-002d-4b7c-be82-3a0303b5a616", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T02:58:53.000Z" + }, + "end": { + "$date": "2021-12-27T02:59:28.000Z" + }, + "events": [ + { + "uuid": "3b8d6387-47a9-48d0-9930-cc6fd0d47ed1", + "start": { + "$date": "2021-12-27T02:58:53.000Z" + }, + "end": { + "$date": "2021-12-27T02:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2516e101-a556-486e-8f9a-2e5f116a919e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T03:25:22.000Z" + }, + "end": { + "$date": "2021-12-27T03:42:31.000Z" + }, + "events": [ + { + "uuid": "ecfe6400-fa94-4900-8a3c-b66e7c0f66a0", + "start": { + "$date": "2021-12-27T03:25:22.000Z" + }, + "end": { + "$date": "2021-12-27T03:42:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", + "uuid": "50a039b8-861c-4e2b-9255-d0f6701e6cee", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-27T03:25:37.000Z" + }, + "end": { + "$date": "2021-12-27T03:39:18.000Z" + }, + "events": [ + { + "uuid": "594c4576-b064-42fb-a160-dd85f0926dff", + "start": { + "$date": "2021-12-27T03:25:37.000Z" + }, + "end": { + "$date": "2021-12-27T03:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9dcd5150-6422-4eaa-8ed7-17e2a42d3050", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T03:33:29.000Z" + }, + "end": { + "$date": "2021-12-27T03:58:45.000Z" + }, + "events": [ + { + "uuid": "6de7f3e3-1571-4e0f-be5c-399446c18fba", + "start": { + "$date": "2021-12-27T03:33:29.000Z" + }, + "end": { + "$date": "2021-12-27T03:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "242520d1-f5fd-4142-b325-daa2428e324a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T03:36:57.000Z" + }, + "end": { + "$date": "2021-12-27T03:57:58.000Z" + }, + "events": [ + { + "uuid": "8f0c0617-a909-415c-858a-52183563d2d8", + "start": { + "$date": "2021-12-27T03:36:57.000Z" + }, + "end": { + "$date": "2021-12-27T03:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "8ebcd87d-5cb4-4914-9043-bae0eecd5e12", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T03:41:52.000Z" + }, + "end": { + "$date": "2021-12-27T03:57:41.000Z" + }, + "events": [ + { + "uuid": "e31f2b2e-f97d-4180-b674-a6d42abdc7da", + "start": { + "$date": "2021-12-27T03:41:52.000Z" + }, + "end": { + "$date": "2021-12-27T03:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c9f3dd6c-b223-4171-b288-305d1d28431f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T03:43:01.000Z" + }, + "end": { + "$date": "2021-12-27T03:57:56.000Z" + }, + "events": [ + { + "uuid": "67d66e2f-eb30-4389-80f8-e37547535aab", + "start": { + "$date": "2021-12-27T03:43:01.000Z" + }, + "end": { + "$date": "2021-12-27T03:57:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "328693b9-3c68-4ac3-9a60-2a3e6f36b391", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T04:03:27.000Z" + }, + "end": { + "$date": "2021-12-27T04:30:43.000Z" + }, + "events": [ + { + "uuid": "b22b48e5-b8e8-4fac-ac75-0219f90b5083", + "start": { + "$date": "2021-12-27T04:03:27.000Z" + }, + "end": { + "$date": "2021-12-27T04:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6776d61c-9a74-4861-9c9b-2937e448e6b2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T04:00:36.000Z" + }, + "end": { + "$date": "2021-12-27T04:56:55.000Z" + }, + "events": [ + { + "uuid": "53f18645-f1cf-41c7-91b5-ccc83c7e2118", + "start": { + "$date": "2021-12-27T04:00:36.000Z" + }, + "end": { + "$date": "2021-12-27T04:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4bda644e-de3e-4644-813c-ec0f73d04822", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T04:30:43.000Z" + }, + "end": { + "$date": "2021-12-27T04:30:44.000Z" + }, + "events": [ + { + "uuid": "645b64cf-2333-4df4-a231-0f711eace1d9", + "start": { + "$date": "2021-12-27T04:30:43.000Z" + }, + "end": { + "$date": "2021-12-27T04:30:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "11802ecb-60a7-4a7c-82f5-d9b9766b71d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T04:03:30.000Z" + }, + "end": { + "$date": "2021-12-27T04:30:40.000Z" + }, + "events": [ + { + "uuid": "6a127a6b-318b-4556-b008-369fd926ea5e", + "start": { + "$date": "2021-12-27T04:03:30.000Z" + }, + "end": { + "$date": "2021-12-27T04:30:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5771104-8e42-4143-ba6b-a8dd43f39c4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T04:34:03.000Z" + }, + "end": { + "$date": "2021-12-27T04:52:28.000Z" + }, + "events": [ + { + "uuid": "9476f2e2-1bb6-4fda-983a-bfec7cae216d", + "start": { + "$date": "2021-12-27T04:34:03.000Z" + }, + "end": { + "$date": "2021-12-27T04:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa200280-0f92-4c68-90bf-939b1f1c5b44", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T04:34:04.000Z" + }, + "end": { + "$date": "2021-12-27T04:52:29.000Z" + }, + "events": [ + { + "uuid": "20f4b3ce-cbd7-4eee-b18a-6ab8289b49ab", + "start": { + "$date": "2021-12-27T04:34:04.000Z" + }, + "end": { + "$date": "2021-12-27T04:52:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46ad1e3c-4580-4dee-b47e-2849ff8fc525", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T04:52:37.000Z" + }, + "end": { + "$date": "2021-12-27T04:52:36.000Z" + }, + "events": [ + { + "uuid": "c62f1dd8-b5e0-4f04-b9ba-b83324c7dde2", + "start": { + "$date": "2021-12-27T04:52:37.000Z" + }, + "end": { + "$date": "2021-12-27T04:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16ab421d-8d5a-4420-8407-ec14144da87f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T05:00:50.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:10.000Z" + }, + "events": [ + { + "uuid": "dbe13956-e3aa-4afa-a5ad-3959402d7155", + "start": { + "$date": "2021-12-27T05:00:50.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "0b732291-ba64-4bba-9469-d8bc4b929663", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T04:57:15.000Z" + }, + "end": { + "$date": "2021-12-27T05:05:11.000Z" + }, + "events": [ + { + "uuid": "e7f2f43e-841d-40a6-8212-06cca2f4c75e", + "start": { + "$date": "2021-12-27T04:57:15.000Z" + }, + "end": { + "$date": "2021-12-27T05:05:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a36a0f94-7e23-4213-a416-56d452495a3b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T05:00:43.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:03.000Z" + }, + "events": [ + { + "uuid": "442c4e96-3e6a-45f7-9088-14f4492f59ff", + "start": { + "$date": "2021-12-27T05:00:43.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d79e2c74-8e05-4cfa-813e-13e29a93d6e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T05:00:50.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:05.000Z" + }, + "events": [ + { + "uuid": "6b47df96-cff5-4148-83c4-60811f62dfd0", + "start": { + "$date": "2021-12-27T05:00:50.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f643710-6784-46e4-bd42-2f0177e68f56", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-27T05:00:45.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:11.000Z" + }, + "events": [ + { + "uuid": "3ece3d6f-7f9f-418c-8e65-a71c3e7554f5", + "start": { + "$date": "2021-12-27T05:00:45.000Z" + }, + "end": { + "$date": "2021-12-27T05:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", + "uuid": "928ade1e-143c-4a9d-9e46-8e245f8c6372", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T05:05:25.000Z" + }, + "end": { + "$date": "2021-12-27T06:10:10.000Z" + }, + "events": [ + { + "uuid": "cabc1708-ffd5-49e3-86db-ba730512ba56", + "start": { + "$date": "2021-12-27T05:05:25.000Z" + }, + "end": { + "$date": "2021-12-27T06:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e1cbc9b-2b47-4230-964f-095c93090290", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T05:28:51.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:56.000Z" + }, + "events": [ + { + "uuid": "9f2e3b7a-d3ff-45f8-ab15-e1c4354b7a6d", + "start": { + "$date": "2021-12-27T05:28:51.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "650863dd-7ebd-408b-aaa7-cdfb735871e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T05:28:50.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:51.000Z" + }, + "events": [ + { + "uuid": "d70f03a8-488b-438f-90f5-307302b93629", + "start": { + "$date": "2021-12-27T05:28:50.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74042a3b-d64b-4869-8114-334f3e5b4a32", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T05:28:49.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:54.000Z" + }, + "events": [ + { + "uuid": "20f67896-5a7f-4730-86cb-5240e7e83be8", + "start": { + "$date": "2021-12-27T05:28:49.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a4089ce-139c-4f57-9154-b97caf76c9d9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-27T05:30:56.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:57.000Z" + }, + "events": [ + { + "uuid": "eb8dbd41-3fa0-44f4-9f71-b7989dbabf34", + "start": { + "$date": "2021-12-27T05:30:56.000Z" + }, + "end": { + "$date": "2021-12-27T06:02:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "41dde12b-8bb4-4052-a8a6-68eaa0083006", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T07:47:57.000Z" + }, + "end": { + "$date": "2021-12-27T08:24:24.000Z" + }, + "events": [ + { + "uuid": "906c83c0-8f69-4c94-b144-c2be1b9d52a3", + "start": { + "$date": "2021-12-27T07:47:57.000Z" + }, + "end": { + "$date": "2021-12-27T08:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7e8c19f6-ad42-4752-b1e5-86ecc3f1d087", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-27T08:40:16.000Z" + }, + "end": { + "$date": "2021-12-27T09:34:03.000Z" + }, + "events": [ + { + "uuid": "244243e7-9ea4-42d6-b943-b4d487d7c067", + "start": { + "$date": "2021-12-27T08:40:16.000Z" + }, + "end": { + "$date": "2021-12-27T09:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "08baa9a9-5638-4f12-b884-fe4f2f7e67c0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-27T10:22:48.000Z" + }, + "end": { + "$date": "2021-12-27T10:30:43.000Z" + }, + "events": [ + { + "uuid": "0d1fb2cb-965c-459c-90a2-578cf2531141", + "start": { + "$date": "2021-12-27T10:22:48.000Z" + }, + "end": { + "$date": "2021-12-27T10:30:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6fca25ba-2900-4752-a994-977a586cacd9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-27T10:30:52.000Z" + }, + "end": { + "$date": "2021-12-27T13:29:05.000Z" + }, + "events": [ + { + "uuid": "81976e7e-ebf9-4f11-aa36-387d33c0c480", + "start": { + "$date": "2021-12-27T10:30:52.000Z" + }, + "end": { + "$date": "2021-12-27T10:38:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6691b711-26ee-4b13-89f7-4acc24380ff1", + "start": { + "$date": "2021-12-27T10:38:52.000Z" + }, + "end": { + "$date": "2021-12-27T10:42:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41a85c0b-42c7-4040-8f1f-31bea959d833", + "start": { + "$date": "2021-12-27T10:42:52.000Z" + }, + "end": { + "$date": "2021-12-27T13:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "e0e81058-5f06-4c84-9df6-1802ee8e354f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-27T13:29:39.000Z" + }, + "end": { + "$date": "2021-12-27T14:07:40.000Z" + }, + "events": [ + { + "uuid": "12a0ca97-dc2a-4acc-9b0f-efea25beca73", + "start": { + "$date": "2021-12-27T13:29:39.000Z" + }, + "end": { + "$date": "2021-12-27T14:07:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "59da9d6a-3f70-4133-abd4-07f3cfebcc74", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-27T14:17:29.000Z" + }, + "end": { + "$date": "2021-12-27T16:38:23.000Z" + }, + "events": [ + { + "uuid": "c4d5aba2-8e58-4efe-9f44-9ec0195c894a", + "start": { + "$date": "2021-12-27T14:17:29.000Z" + }, + "end": { + "$date": "2021-12-27T16:38:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "98af06c5-fe63-4ecd-9f9b-b3887c63a751", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-27T14:30:55.000Z" + }, + "end": { + "$date": "2021-12-27T15:08:36.000Z" + }, + "events": [ + { + "uuid": "1225900d-3c0c-496f-9674-aec284c8d05c", + "start": { + "$date": "2021-12-27T14:30:55.000Z" + }, + "end": { + "$date": "2021-12-27T15:08:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "fbf9d65f-3806-4588-9d10-e636155430b2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T17:35:30.000Z" + }, + "end": { + "$date": "2021-12-27T17:37:32.000Z" + }, + "events": [ + { + "uuid": "53b377af-6c2a-46e2-a152-c812df5524d4", + "start": { + "$date": "2021-12-27T17:35:30.000Z" + }, + "end": { + "$date": "2021-12-27T17:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "dab5080e-e503-43da-ae79-201a71cad20c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-27T18:28:24.000Z" + }, + "end": { + "$date": "2021-12-27T20:26:47.000Z" + }, + "events": [ + { + "uuid": "b0c1cd29-7795-47c2-8075-df4f04419406", + "start": { + "$date": "2021-12-27T18:28:24.000Z" + }, + "end": { + "$date": "2021-12-27T18:41:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0cd06e1f-1d5f-48f8-9135-0a350be6aa6b", + "start": { + "$date": "2021-12-27T18:41:24.000Z" + }, + "end": { + "$date": "2021-12-27T19:11:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d8f30ea-76f9-448e-b15e-7a63388e88c4", + "start": { + "$date": "2021-12-27T19:11:24.000Z" + }, + "end": { + "$date": "2021-12-27T19:24:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98f3ab5c-f694-4885-995d-0cd74aa5d5c9", + "start": { + "$date": "2021-12-27T19:24:24.000Z" + }, + "end": { + "$date": "2021-12-27T20:26:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0c592855-68cd-4ae5-a7ac-8fa469cd0aad", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-27T19:38:23.000Z" + }, + "end": { + "$date": "2021-12-27T20:35:06.000Z" + }, + "events": [ + { + "uuid": "69920f91-5a5d-4471-8eee-10b2dc892a6f", + "start": { + "$date": "2021-12-27T19:38:23.000Z" + }, + "end": { + "$date": "2021-12-27T20:35:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3baf629-0c51-4ac3-90ea-e3a21fb51a76", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T19:45:16.000Z" + }, + "end": { + "$date": "2021-12-27T20:06:57.000Z" + }, + "events": [ + { + "uuid": "bd006a6c-0cc3-463c-a8d1-60929a57dc52", + "start": { + "$date": "2021-12-27T19:45:16.000Z" + }, + "end": { + "$date": "2021-12-27T20:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "93b591df-32ae-4974-8837-5a8702eafcdd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-27T19:47:24.000Z" + }, + "end": { + "$date": "2021-12-27T21:06:45.000Z" + }, + "events": [ + { + "uuid": "3e82e61a-1ded-45db-9c82-8dbadfe509bb", + "start": { + "$date": "2021-12-27T19:47:24.000Z" + }, + "end": { + "$date": "2021-12-27T21:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2ea3bd76-203e-4e4e-a518-1662b1b12c37", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-27T20:04:47.000Z" + }, + "end": { + "$date": "2021-12-27T20:40:30.000Z" + }, + "events": [ + { + "uuid": "b7797a52-fb08-4d3f-8859-dbb2e29d201e", + "start": { + "$date": "2021-12-27T20:04:47.000Z" + }, + "end": { + "$date": "2021-12-27T20:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c8498ae-8e02-48c0-9972-cda5a6479e94", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-27T20:34:13.000Z" + }, + "end": { + "$date": "2021-12-27T20:45:18.000Z" + }, + "events": [ + { + "uuid": "377a7466-b717-4086-92a0-f05341eeab7b", + "start": { + "$date": "2021-12-27T20:34:13.000Z" + }, + "end": { + "$date": "2021-12-27T20:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f039477-c1b2-4ded-be47-973ae633cb48", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T21:19:56.000Z" + }, + "end": { + "$date": "2021-12-27T21:42:50.000Z" + }, + "events": [ + { + "uuid": "df91aee3-d4e4-46ef-9d9d-5cfd6b6d6a4b", + "start": { + "$date": "2021-12-27T21:19:56.000Z" + }, + "end": { + "$date": "2021-12-27T21:42:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "500e1be9-9783-424f-b8d9-7893cf2957e8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-27T21:18:52.000Z" + }, + "end": { + "$date": "2021-12-27T21:21:31.000Z" + }, + "events": [ + { + "uuid": "26ae97d4-7370-44ab-9641-c7af5c801832", + "start": { + "$date": "2021-12-27T21:18:52.000Z" + }, + "end": { + "$date": "2021-12-27T21:21:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3d08b9ee-aa9e-48f0-b448-a5a9f67079cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-27T21:22:57.000Z" + }, + "end": { + "$date": "2021-12-27T21:38:27.000Z" + }, + "events": [ + { + "uuid": "b6a051b1-3bb2-451c-b79e-25e4da65d946", + "start": { + "$date": "2021-12-27T21:22:57.000Z" + }, + "end": { + "$date": "2021-12-27T21:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "034104d5-ff5c-4bdc-8cfe-a406c30f0857", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-27T21:44:11.000Z" + }, + "end": { + "$date": "2021-12-27T22:14:27.000Z" + }, + "events": [ + { + "uuid": "d1a2fdbf-4e90-44de-8207-981eab200a4c", + "start": { + "$date": "2021-12-27T21:44:11.000Z" + }, + "end": { + "$date": "2021-12-27T22:14:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b23889d6-2b76-4079-8111-e703cbfb6da3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-27T21:49:26.000Z" + }, + "end": { + "$date": "2021-12-28T01:01:45.000Z" + }, + "events": [ + { + "uuid": "c27f6844-40c5-4598-80fd-43d4a84b1c5b", + "start": { + "$date": "2021-12-27T21:49:26.000Z" + }, + "end": { + "$date": "2021-12-28T01:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "18eb0d87-ad94-4ace-949f-cb25fc366d11", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-28T00:46:36.000Z" + }, + "end": { + "$date": "2021-12-28T00:46:46.000Z" + }, + "events": [ + { + "uuid": "6cf5ffb2-8888-4049-b1e9-e3ce626a6a8c", + "start": { + "$date": "2021-12-28T00:46:36.000Z" + }, + "end": { + "$date": "2021-12-28T00:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "eeaaa120-ff78-4c55-aa1b-78a85bde32b0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-28T01:03:05.000Z" + }, + "end": { + "$date": "2021-12-28T05:59:05.000Z" + }, + "events": [ + { + "uuid": "dfdc8f90-01a8-4d25-b597-5bad2b5ae18e", + "start": { + "$date": "2021-12-28T01:03:05.000Z" + }, + "end": { + "$date": "2021-12-28T02:09:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "15fbc7d0-9930-45c8-b41c-541f04d4aedd", + "start": { + "$date": "2021-12-28T02:09:05.000Z" + }, + "end": { + "$date": "2021-12-28T02:14:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a09fabf2-368e-4889-97bd-d92fb241693d", + "start": { + "$date": "2021-12-28T02:14:05.000Z" + }, + "end": { + "$date": "2021-12-28T02:24:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "356f9a89-98e9-4705-b5c7-5244f46252f2", + "start": { + "$date": "2021-12-28T02:24:05.000Z" + }, + "end": { + "$date": "2021-12-28T02:30:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f14a1ddf-7520-4aa2-8369-81201e928482", + "start": { + "$date": "2021-12-28T02:30:05.000Z" + }, + "end": { + "$date": "2021-12-28T05:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b06826e3-b0fc-49d3-95fc-d3feedaa2152", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-28T02:19:15.000Z" + }, + "end": { + "$date": "2021-12-28T04:05:13.000Z" + }, + "events": [ + { + "uuid": "bbc73535-e40a-4f03-bf40-5dc74e8bed9f", + "start": { + "$date": "2021-12-28T02:19:15.000Z" + }, + "end": { + "$date": "2021-12-28T03:30:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c31c8833-4ec1-452a-9f08-d274993e8d31", + "start": { + "$date": "2021-12-28T03:30:15.000Z" + }, + "end": { + "$date": "2021-12-28T04:05:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dcbb34c7-c68c-424b-89d5-d58e09ee884a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-28T02:20:27.000Z" + }, + "end": { + "$date": "2021-12-28T02:30:49.000Z" + }, + "events": [ + { + "uuid": "d829c481-51b9-416b-b481-2943f7dfc7fd", + "start": { + "$date": "2021-12-28T02:20:27.000Z" + }, + "end": { + "$date": "2021-12-28T02:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7773ef7-509a-4115-afdc-31a37a2b7b55", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-28T02:51:29.000Z" + }, + "end": { + "$date": "2021-12-28T03:33:20.000Z" + }, + "events": [ + { + "uuid": "38863da9-ca58-4c08-9f4b-6e9402971968", + "start": { + "$date": "2021-12-28T02:51:29.000Z" + }, + "end": { + "$date": "2021-12-28T03:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c340cb2d-ef4e-4ccf-a407-dba078217018", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-28T02:52:36.000Z" + }, + "end": { + "$date": "2021-12-28T04:23:15.000Z" + }, + "events": [ + { + "uuid": "26ec5abf-5194-4907-ba44-d25bdd8c2a97", + "start": { + "$date": "2021-12-28T02:52:36.000Z" + }, + "end": { + "$date": "2021-12-28T04:23:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "812d6e51-afef-4ddc-8075-88a4c21bdb19", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-28T03:37:00.000Z" + }, + "end": { + "$date": "2021-12-28T03:54:12.000Z" + }, + "events": [ + { + "uuid": "3b78fbb6-c187-4a80-a8ba-6518aeb6a197", + "start": { + "$date": "2021-12-28T03:37:00.000Z" + }, + "end": { + "$date": "2021-12-28T03:54:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7a5524c-45b9-4d25-ac29-fde2016a3f8f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-28T04:00:23.000Z" + }, + "end": { + "$date": "2021-12-28T04:23:23.000Z" + }, + "events": [ + { + "uuid": "78253cb5-052b-4d1c-a577-f75fc3598626", + "start": { + "$date": "2021-12-28T04:00:23.000Z" + }, + "end": { + "$date": "2021-12-28T04:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0aaed4ab-a4dc-4429-adb9-7e883136fa0d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T04:16:02.000Z" + }, + "end": { + "$date": "2021-12-28T04:43:53.000Z" + }, + "events": [ + { + "uuid": "89ab5084-5549-4d01-b2b7-350c085fa5e8", + "start": { + "$date": "2021-12-28T04:16:02.000Z" + }, + "end": { + "$date": "2021-12-28T04:43:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "44c14171-411a-48d4-b028-e6b9080b3f3f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-28T04:06:14.000Z" + }, + "end": { + "$date": "2021-12-28T05:26:17.000Z" + }, + "events": [ + { + "uuid": "2326f819-eb20-47b8-a4c7-392307a82794", + "start": { + "$date": "2021-12-28T04:06:14.000Z" + }, + "end": { + "$date": "2021-12-28T05:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "71f2091b-3795-4198-bd66-80e380f3dd8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-28T04:07:19.000Z" + }, + "end": { + "$date": "2021-12-28T04:43:37.000Z" + }, + "events": [ + { + "uuid": "3f6c7d54-e432-440b-8a12-168d30c10889", + "start": { + "$date": "2021-12-28T04:07:19.000Z" + }, + "end": { + "$date": "2021-12-28T04:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfbf6460-3088-4496-9c01-14489e2720b0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-28T05:10:49.000Z" + }, + "end": { + "$date": "2021-12-28T05:39:32.000Z" + }, + "events": [ + { + "uuid": "474123e0-bb97-446f-a6d2-c825b1f3d94d", + "start": { + "$date": "2021-12-28T05:10:49.000Z" + }, + "end": { + "$date": "2021-12-28T05:35:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49537904-22a5-4577-b2e8-86c89259e361", + "start": { + "$date": "2021-12-28T05:35:49.000Z" + }, + "end": { + "$date": "2021-12-28T05:50:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c95f9b31-e8a9-4ae0-b4af-88c3c9446c6d", + "start": { + "$date": "2021-12-28T05:50:49.000Z" + }, + "end": { + "$date": "2021-12-28T05:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d415a6b-1b57-4171-8abd-de26ac8e1fb7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T04:47:48.000Z" + }, + "end": { + "$date": "2021-12-28T05:10:23.000Z" + }, + "events": [ + { + "uuid": "62a2b80a-3ace-4516-8707-33f77ddca1d4", + "start": { + "$date": "2021-12-28T04:47:48.000Z" + }, + "end": { + "$date": "2021-12-28T05:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "50c9f47b-6ee3-40ff-a30c-923dabcb528a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-28T05:09:41.000Z" + }, + "end": { + "$date": "2021-12-28T06:29:35.000Z" + }, + "events": [ + { + "uuid": "2145c45b-de39-4908-a090-68e8c38fc0be", + "start": { + "$date": "2021-12-28T05:09:41.000Z" + }, + "end": { + "$date": "2021-12-28T06:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00aeeeec-a72d-4da5-90a1-7920663bff52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T05:13:28.000Z" + }, + "end": { + "$date": "2021-12-28T05:41:04.000Z" + }, + "events": [ + { + "uuid": "d7dcf195-5323-4def-ab94-23bcfb625d2a", + "start": { + "$date": "2021-12-28T05:13:28.000Z" + }, + "end": { + "$date": "2021-12-28T05:41:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "b61b4794-d49e-46ff-92df-9a76a03f6839", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-28T05:35:04.000Z" + }, + "end": { + "$date": "2021-12-28T07:39:57.000Z" + }, + "events": [ + { + "uuid": "30a01462-99c7-4977-a4dd-09283ff6e21b", + "start": { + "$date": "2021-12-28T05:35:04.000Z" + }, + "end": { + "$date": "2021-12-28T07:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "9e60a1d3-e6e4-4c75-b636-39db7db38250", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T05:41:59.000Z" + }, + "end": { + "$date": "2021-12-28T06:24:11.000Z" + }, + "events": [ + { + "uuid": "a485bf90-61eb-4a7b-b52e-9a7434ad2392", + "start": { + "$date": "2021-12-28T05:41:59.000Z" + }, + "end": { + "$date": "2021-12-28T06:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "98518ccd-f1d7-4a2e-962d-0bf9f898739d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-28T05:42:45.000Z" + }, + "end": { + "$date": "2021-12-28T06:54:14.000Z" + }, + "events": [ + { + "uuid": "03e98503-bfd6-4691-8019-3d2aa8a51460", + "start": { + "$date": "2021-12-28T05:42:45.000Z" + }, + "end": { + "$date": "2021-12-28T06:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a4134bfe-e2dc-4100-91c7-63749de1dbc3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-28T05:44:02.000Z" + }, + "end": { + "$date": "2021-12-28T06:40:39.000Z" + }, + "events": [ + { + "uuid": "dd7a3207-6f1c-4e1b-89b3-666bba6e7984", + "start": { + "$date": "2021-12-28T05:44:02.000Z" + }, + "end": { + "$date": "2021-12-28T06:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4fa431cd-cb14-40cb-ae87-2373119ea6b9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-28T05:59:16.000Z" + }, + "end": { + "$date": "2021-12-28T07:47:42.000Z" + }, + "events": [ + { + "uuid": "c5372e0e-8627-42f7-b1da-0ec4452a6c87", + "start": { + "$date": "2021-12-28T05:59:16.000Z" + }, + "end": { + "$date": "2021-12-28T07:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "470a5192-9679-4e48-8009-706091ba064a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-28T13:25:28.000Z" + }, + "end": { + "$date": "2021-12-28T15:11:22.000Z" + }, + "events": [ + { + "uuid": "422dbbf8-bafb-48bd-adc9-b8025c198ed8", + "start": { + "$date": "2021-12-28T13:25:28.000Z" + }, + "end": { + "$date": "2021-12-28T15:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "48b6c02e-76bd-40ca-819d-2d8c7d7e137d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-28T15:44:24.000Z" + }, + "end": { + "$date": "2021-12-29T01:21:58.000Z" + }, + "events": [ + { + "uuid": "192857d0-d741-4ed6-b17e-ef9ae1f28f29", + "start": { + "$date": "2021-12-28T15:44:24.000Z" + }, + "end": { + "$date": "2021-12-28T17:57:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4b9001c-928c-4d32-824a-9b9af4d33238", + "start": { + "$date": "2021-12-28T17:57:24.000Z" + }, + "end": { + "$date": "2021-12-28T19:02:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8250b349-abd0-456b-bf1a-bab828bac6e3", + "start": { + "$date": "2021-12-28T19:02:24.000Z" + }, + "end": { + "$date": "2021-12-28T20:21:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e811aef-177c-4dc1-a80f-f190b12178e4", + "start": { + "$date": "2021-12-28T20:21:24.000Z" + }, + "end": { + "$date": "2021-12-28T20:24:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c0aadfa2-7403-4426-a3ba-b95badf99cde", + "start": { + "$date": "2021-12-28T20:24:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:15:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30cb04bc-d71c-42a8-95b6-dd98f9ccfdb6", + "start": { + "$date": "2021-12-28T21:15:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:16:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3049768c-d9fa-4b48-9ece-fce0b26ff2e6", + "start": { + "$date": "2021-12-28T21:16:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:34:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62c09d21-6fdc-414c-8d21-9d5b2d34020c", + "start": { + "$date": "2021-12-28T21:34:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:24:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "151806f4-c1d0-4b32-b0d0-94d85889da74", + "start": { + "$date": "2021-12-28T22:24:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:59:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "98ce0ec2-f66f-47f1-86e6-52cf537bdbef", + "start": { + "$date": "2021-12-28T22:59:24.000Z" + }, + "end": { + "$date": "2021-12-28T23:14:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1787d273-5635-42da-85d6-d3a26359ca2d", + "start": { + "$date": "2021-12-28T23:14:24.000Z" + }, + "end": { + "$date": "2021-12-29T01:21:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8a4547e4-babc-49d3-9c5b-3b6f3c9c02ba", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-28T15:46:04.000Z" + }, + "end": { + "$date": "2021-12-28T19:54:39.000Z" + }, + "events": [ + { + "uuid": "29be2367-1f1b-4ca3-9384-27f6549785f8", + "start": { + "$date": "2021-12-28T15:46:04.000Z" + }, + "end": { + "$date": "2021-12-28T19:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "240af01f-13f4-4c57-b9a9-f131fe5752da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-28T16:47:47.000Z" + }, + "end": { + "$date": "2021-12-28T16:56:12.000Z" + }, + "events": [ + { + "uuid": "d8c8e0de-affd-4e07-8c24-714c8f5a637d", + "start": { + "$date": "2021-12-28T16:47:47.000Z" + }, + "end": { + "$date": "2021-12-28T16:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "5340f870-f53b-42c6-9e0e-34804c6b644d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T16:56:16.000Z" + }, + "end": { + "$date": "2021-12-28T17:07:38.000Z" + }, + "events": [ + { + "uuid": "b8a17de6-fd6d-4695-8892-a8b37aa538f5", + "start": { + "$date": "2021-12-28T16:56:16.000Z" + }, + "end": { + "$date": "2021-12-28T17:07:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "3bcb898b-4b1e-42e8-ba36-4d55f2d91796", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-28T16:56:32.000Z" + }, + "end": { + "$date": "2021-12-28T17:13:02.000Z" + }, + "events": [ + { + "uuid": "e697bf05-64ea-4e23-8d35-a8b12a7d51b8", + "start": { + "$date": "2021-12-28T16:56:32.000Z" + }, + "end": { + "$date": "2021-12-28T17:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6d0fb4f2-785c-481d-aa23-06fcabd1331d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T17:07:58.000Z" + }, + "end": { + "$date": "2021-12-28T17:48:39.000Z" + }, + "events": [ + { + "uuid": "ede3ec9a-275a-4f63-b0bf-28babb9c4b76", + "start": { + "$date": "2021-12-28T17:07:58.000Z" + }, + "end": { + "$date": "2021-12-28T17:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "cec83bcb-03c2-43e9-8092-60590d890bf7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-28T17:13:53.000Z" + }, + "end": { + "$date": "2021-12-28T17:17:13.000Z" + }, + "events": [ + { + "uuid": "e6e8d98f-c495-46bc-a070-cea33d371e87", + "start": { + "$date": "2021-12-28T17:13:53.000Z" + }, + "end": { + "$date": "2021-12-28T17:17:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "debbfa91-a55b-44c7-b6de-41a5a1e12b7e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-28T18:57:29.000Z" + }, + "end": { + "$date": "2021-12-28T19:55:17.000Z" + }, + "events": [ + { + "uuid": "06e3cc57-b896-4fc2-b090-271e290c3a68", + "start": { + "$date": "2021-12-28T18:57:29.000Z" + }, + "end": { + "$date": "2021-12-28T19:55:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "55bf857f-0fdb-4ca7-b365-12a7f9a0feb2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T18:49:15.000Z" + }, + "end": { + "$date": "2021-12-28T19:28:42.000Z" + }, + "events": [ + { + "uuid": "0904b2e8-6c33-4b71-9a31-6ce3f45a74a9", + "start": { + "$date": "2021-12-28T18:49:15.000Z" + }, + "end": { + "$date": "2021-12-28T19:28:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "227467cd-d271-4efd-bcfe-1a67374e32de", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-28T18:37:00.000Z" + }, + "end": { + "$date": "2021-12-28T18:40:55.000Z" + }, + "events": [ + { + "uuid": "462a148b-c547-4b6b-99bf-33ea34976b74", + "start": { + "$date": "2021-12-28T18:37:00.000Z" + }, + "end": { + "$date": "2021-12-28T18:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "de487e8d-75a2-43d3-aaf9-7caf3eab04c6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-28T22:02:01.000Z" + }, + "end": { + "$date": "2021-12-28T22:19:56.000Z" + }, + "events": [ + { + "uuid": "df740884-f2d8-48be-9c36-e14c69440f68", + "start": { + "$date": "2021-12-28T22:02:01.000Z" + }, + "end": { + "$date": "2021-12-28T23:09:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b27383a2-4e3c-4a65-9d20-9da85fd6d264", + "start": { + "$date": "2021-12-28T23:09:01.000Z" + }, + "end": { + "$date": "2021-12-28T23:19:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "94a3f5fb-a2f3-4cf2-a56a-61b0ca540cbc", + "start": { + "$date": "2021-12-28T23:19:01.000Z" + }, + "end": { + "$date": "2021-12-28T22:19:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "03403ca1-478c-4c1b-8f2d-13f3aca67277", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-28T18:44:16.000Z" + }, + "end": { + "$date": "2021-12-28T19:28:16.000Z" + }, + "events": [ + { + "uuid": "5c0f0020-84e5-4032-b4bf-8a30d0850f3c", + "start": { + "$date": "2021-12-28T18:44:16.000Z" + }, + "end": { + "$date": "2021-12-28T19:28:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a1eb5941-dd14-4422-8ae5-7b2d63b6a9ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T19:30:22.000Z" + }, + "end": { + "$date": "2021-12-28T19:49:52.000Z" + }, + "events": [ + { + "uuid": "45374caf-bb1e-47a7-94c2-faec2edbf8c9", + "start": { + "$date": "2021-12-28T19:30:22.000Z" + }, + "end": { + "$date": "2021-12-28T19:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5345c0b2-1115-4b33-9631-fabd1274aee0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-28T21:10:13.000Z" + }, + "end": { + "$date": "2021-12-28T21:28:00.000Z" + }, + "events": [ + { + "uuid": "5cb25283-3399-4a9a-898a-dbfe929e93a4", + "start": { + "$date": "2021-12-28T21:10:13.000Z" + }, + "end": { + "$date": "2021-12-28T21:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "03ddb2fc-6644-43bd-a935-5b11403a0bfc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-28T19:57:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:49:41.000Z" + }, + "events": [ + { + "uuid": "b1e161f2-9abd-4035-9175-68e9c9c44394", + "start": { + "$date": "2021-12-28T19:57:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:27:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03cf6003-1332-4655-87ae-cd97aae89387", + "start": { + "$date": "2021-12-28T21:27:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:32:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "26dea738-331b-40d0-8e45-cd150316e971", + "start": { + "$date": "2021-12-28T21:32:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:42:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dff1f2d6-b9ce-424a-a545-806190cc3376", + "start": { + "$date": "2021-12-28T21:42:24.000Z" + }, + "end": { + "$date": "2021-12-28T21:58:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d98e4486-3e8c-4692-bb5a-7be4882b79ea", + "start": { + "$date": "2021-12-28T21:58:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:08:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5686e8cb-5644-4550-8b8e-48120ce9415a", + "start": { + "$date": "2021-12-28T22:08:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:13:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bf42405d-9305-482d-a349-cd1ec6e8327a", + "start": { + "$date": "2021-12-28T22:13:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:23:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d953db9-8c0b-4379-82f1-03b45511a2f2", + "start": { + "$date": "2021-12-28T22:23:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:28:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "93d17f38-2fe1-4517-85c3-43d1e3ac6de3", + "start": { + "$date": "2021-12-28T22:28:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:39:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "13f8656c-9de0-4843-b496-edb9f710a99e", + "start": { + "$date": "2021-12-28T22:39:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:44:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a5ce48b-1da1-4433-80e1-003d95d94b60", + "start": { + "$date": "2021-12-28T22:44:24.000Z" + }, + "end": { + "$date": "2021-12-28T22:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "99c6e3e4-2847-42f0-b183-bd26a7d0fcdd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T20:50:20.000Z" + }, + "end": { + "$date": "2021-12-28T22:26:15.000Z" + }, + "events": [ + { + "uuid": "f783677b-5c8a-4396-9b9b-1539287340d0", + "start": { + "$date": "2021-12-28T20:50:20.000Z" + }, + "end": { + "$date": "2021-12-28T22:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f75c2683-67ce-45db-81ba-3461ba67fe3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-28T20:07:10.000Z" + }, + "end": { + "$date": "2021-12-28T20:50:34.000Z" + }, + "events": [ + { + "uuid": "46e035ca-3ce0-459b-874b-66d1d90d3d4a", + "start": { + "$date": "2021-12-28T20:07:10.000Z" + }, + "end": { + "$date": "2021-12-28T20:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "976c67ba-437a-44bc-8a25-67593eca1e2d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-28T20:50:43.000Z" + }, + "end": { + "$date": "2021-12-28T22:26:26.000Z" + }, + "events": [ + { + "uuid": "627657cd-ec69-4a68-9f4b-34fa2584ce79", + "start": { + "$date": "2021-12-28T20:50:43.000Z" + }, + "end": { + "$date": "2021-12-28T22:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5632063a-55c2-4155-a3d9-3296bcfc8239", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-28T21:35:23.000Z" + }, + "end": { + "$date": "2021-12-28T22:25:04.000Z" + }, + "events": [ + { + "uuid": "1e74c45e-cbdf-4d7d-9a7d-0c1c21206626", + "start": { + "$date": "2021-12-28T21:35:23.000Z" + }, + "end": { + "$date": "2021-12-28T22:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5059b6d5-e208-4e61-9028-865b1b223c9f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-28T22:25:14.000Z" + }, + "end": { + "$date": "2021-12-28T22:31:49.000Z" + }, + "events": [ + { + "uuid": "c45b6e5d-1eae-4be9-b5a0-7bffd7ae2474", + "start": { + "$date": "2021-12-28T22:25:14.000Z" + }, + "end": { + "$date": "2021-12-28T22:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "41dd0a38-4cc5-4073-abc1-448458c21670", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-28T22:31:59.000Z" + }, + "end": { + "$date": "2021-12-29T01:50:38.000Z" + }, + "events": [ + { + "uuid": "da917ffe-b70a-47c1-b57f-443ba2b75cb3", + "start": { + "$date": "2021-12-28T22:31:59.000Z" + }, + "end": { + "$date": "2021-12-28T23:33:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "23ca926f-bddb-4256-b28e-d4eefe59b066", + "start": { + "$date": "2021-12-28T23:33:59.000Z" + }, + "end": { + "$date": "2021-12-28T23:36:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2f4c1f8c-5ace-4776-b275-46b0d472b170", + "start": { + "$date": "2021-12-28T23:36:59.000Z" + }, + "end": { + "$date": "2021-12-29T01:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbb491d9-fa06-49e3-b606-bb7e0b8bb6e9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-28T23:25:48.000Z" + }, + "end": { + "$date": "2021-12-29T00:04:50.000Z" + }, + "events": [ + { + "uuid": "528f422b-c0f1-4656-ac8a-d27d81eb032a", + "start": { + "$date": "2021-12-28T23:25:48.000Z" + }, + "end": { + "$date": "2021-12-29T00:04:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e638c3bb-8376-4e5a-8dc4-42549caa70e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T00:06:54.000Z" + }, + "end": { + "$date": "2021-12-29T00:47:47.000Z" + }, + "events": [ + { + "uuid": "5080b12c-3d68-4a2d-bc0a-963e4f5b1286", + "start": { + "$date": "2021-12-29T00:06:54.000Z" + }, + "end": { + "$date": "2021-12-29T00:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba8882ff-8fb6-40b1-93dd-45ed8f7918a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T00:23:21.000Z" + }, + "end": { + "$date": "2021-12-29T01:00:13.000Z" + }, + "events": [ + { + "uuid": "37c4710a-9e8a-4165-aa82-4d319f88256d", + "start": { + "$date": "2021-12-29T00:23:21.000Z" + }, + "end": { + "$date": "2021-12-29T00:41:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26acda9c-6920-40c7-b4a7-c26fd20cc130", + "start": { + "$date": "2021-12-29T00:41:21.000Z" + }, + "end": { + "$date": "2021-12-29T00:46:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c56483ab-7b61-49c0-b59a-c9ec2c306790", + "start": { + "$date": "2021-12-29T00:46:21.000Z" + }, + "end": { + "$date": "2021-12-29T00:56:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "61415f77-55b8-4b61-b1c4-251ed1ce49c2", + "start": { + "$date": "2021-12-29T00:56:21.000Z" + }, + "end": { + "$date": "2021-12-29T01:00:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fae22bb1-330e-4ad2-8726-df11f5ed1d9a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-28T22:02:01.000Z" + }, + "end": { + "$date": "2021-12-29T01:00:31.000Z" + }, + "events": [ + { + "uuid": "d784fd2a-c7f7-43f3-9007-4fdfa90d47cc", + "start": { + "$date": "2021-12-28T22:02:01.000Z" + }, + "end": { + "$date": "2021-12-28T22:05:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e7ac16e-ca22-47f1-a56e-ccf752433938", + "start": { + "$date": "2021-12-28T22:05:01.000Z" + }, + "end": { + "$date": "2021-12-29T01:00:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ed503c0-7784-42b1-b766-8cf25dcf6911", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T01:00:16.000Z" + }, + "end": { + "$date": "2021-12-29T01:09:45.000Z" + }, + "events": [ + { + "uuid": "23f27a98-db87-43c0-9ab7-6c29e6e33629", + "start": { + "$date": "2021-12-29T01:00:16.000Z" + }, + "end": { + "$date": "2021-12-29T01:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7be08ef-56ac-484e-9626-e23719fd05ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T01:09:16.000Z" + }, + "end": { + "$date": "2021-12-29T02:18:46.000Z" + }, + "events": [ + { + "uuid": "480900ac-090d-4647-8e84-bdff1df906fd", + "start": { + "$date": "2021-12-29T01:09:16.000Z" + }, + "end": { + "$date": "2021-12-29T02:18:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "01c48262-f253-4f7f-8b29-052ea58c8f79", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T01:09:54.000Z" + }, + "end": { + "$date": "2021-12-29T02:18:32.000Z" + }, + "events": [ + { + "uuid": "cddd28cb-dc42-4497-ab5b-62f33f33e01a", + "start": { + "$date": "2021-12-29T01:09:54.000Z" + }, + "end": { + "$date": "2021-12-29T02:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c6bdf1f2-6fd1-4669-a99a-3d0dbad1f3be", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T01:10:28.000Z" + }, + "end": { + "$date": "2021-12-29T02:18:54.000Z" + }, + "events": [ + { + "uuid": "fee77951-3b96-44c8-839d-9bca9f4499fb", + "start": { + "$date": "2021-12-29T01:10:28.000Z" + }, + "end": { + "$date": "2021-12-29T02:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "08b5ccb5-45ab-4949-bacc-43014e0493c0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T01:47:57.000Z" + }, + "end": { + "$date": "2021-12-29T01:51:39.000Z" + }, + "events": [ + { + "uuid": "20cab0c6-74c4-41d9-b4a0-6b51670094b8", + "start": { + "$date": "2021-12-29T01:47:57.000Z" + }, + "end": { + "$date": "2021-12-29T01:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "aed5bdfa-0f4f-4626-993c-918afcfc50ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T01:50:48.000Z" + }, + "end": { + "$date": "2021-12-29T01:56:19.000Z" + }, + "events": [ + { + "uuid": "275e5ba0-5aee-4ec0-8810-1bb3dfa61ecc", + "start": { + "$date": "2021-12-29T01:50:48.000Z" + }, + "end": { + "$date": "2021-12-29T01:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "149aeeb1-5629-4b12-99b6-32cee2f80bcc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T01:56:29.000Z" + }, + "end": { + "$date": "2021-12-29T02:03:05.000Z" + }, + "events": [ + { + "uuid": "ac9803e2-8710-4d11-b94c-45847ae1a674", + "start": { + "$date": "2021-12-29T01:56:29.000Z" + }, + "end": { + "$date": "2021-12-29T02:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a7db496e-43e4-45ec-8993-337d769a7c8a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T02:03:15.000Z" + }, + "end": { + "$date": "2021-12-29T07:55:12.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T02:03:15.000Z" + }, + "end": { + "$date": "2021-12-29T07:55:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5749233-9b77-45d4-8175-c2c9cad703a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T02:46:56.000Z" + }, + "end": { + "$date": "2021-12-29T03:13:37.000Z" + }, + "events": [ + { + "uuid": "9d7c79d7-1148-4a12-9e9c-3449518404c7", + "start": { + "$date": "2021-12-29T02:46:56.000Z" + }, + "end": { + "$date": "2021-12-29T03:13:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "23b06e93-ab7a-4614-bf49-903616a5eb1e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T02:42:39.000Z" + }, + "end": { + "$date": "2021-12-29T04:25:43.000Z" + }, + "events": [ + { + "uuid": "a175c154-22f2-4511-9fa9-3188e0d83d6d", + "start": { + "$date": "2021-12-29T02:42:39.000Z" + }, + "end": { + "$date": "2021-12-29T04:25:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "187ac904-04c3-46ab-aae4-3b7d9a17b836", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T02:59:17.000Z" + }, + "end": { + "$date": "2021-12-29T03:29:38.000Z" + }, + "events": [ + { + "uuid": "847de137-13d5-42da-933c-5fa988b43c77", + "start": { + "$date": "2021-12-29T02:59:17.000Z" + }, + "end": { + "$date": "2021-12-29T03:29:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34adc52e-5df4-42de-baed-24aa5d60ca3c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T02:59:25.000Z" + }, + "end": { + "$date": "2021-12-29T03:29:51.000Z" + }, + "events": [ + { + "uuid": "1ff53388-21b3-4bc3-bc8c-b63c11dedc64", + "start": { + "$date": "2021-12-29T02:59:25.000Z" + }, + "end": { + "$date": "2021-12-29T03:29:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f6b5673-a25a-4c48-9f96-ccadf8325cab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T03:29:45.000Z" + }, + "end": { + "$date": "2021-12-29T03:29:45.000Z" + }, + "events": [ + { + "uuid": "bb479175-7039-4592-9dbd-2fa6a9a37900", + "start": { + "$date": "2021-12-29T03:29:45.000Z" + }, + "end": { + "$date": "2021-12-29T03:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e296213-449c-42cb-beaa-81268e4f09cf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T03:20:31.000Z" + }, + "end": { + "$date": "2021-12-29T03:30:36.000Z" + }, + "events": [ + { + "uuid": "07cc0e78-adf4-4fb3-8ccb-2d10ffbafffc", + "start": { + "$date": "2021-12-29T03:20:31.000Z" + }, + "end": { + "$date": "2021-12-29T03:30:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a5a2e57-6345-4a1a-bda0-8db34c6a929b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T03:34:01.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:13.000Z" + }, + "events": [ + { + "uuid": "1579968d-ae07-4d34-96ff-956c50175d5b", + "start": { + "$date": "2021-12-29T03:34:01.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5175c55e-79a4-4194-89a0-46dd8550928d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T03:33:53.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:16.000Z" + }, + "events": [ + { + "uuid": "91ef5dd4-5513-4bd9-b259-032fc4b5d6a6", + "start": { + "$date": "2021-12-29T03:33:53.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ad6a6fb-b25c-414a-9a7f-3d1de9f581e0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T03:33:59.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:16.000Z" + }, + "events": [ + { + "uuid": "8fad48f8-f35a-44d1-ac11-a478fb5a6410", + "start": { + "$date": "2021-12-29T03:33:59.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b94ca0e-416c-4089-9e11-6e72c8ab1dc2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T03:33:53.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:03.000Z" + }, + "events": [ + { + "uuid": "a7fbc247-b0d1-42fa-844d-77329ab5d9ad", + "start": { + "$date": "2021-12-29T03:33:53.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae6bf643-adf1-492f-9e85-279e4c5c51d7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T03:33:53.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:08.000Z" + }, + "events": [ + { + "uuid": "fa9089dd-3c42-4160-bb77-871a3530858c", + "start": { + "$date": "2021-12-29T03:33:53.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db461fe0-9bd5-4ecd-9126-ac284f536d8f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T03:33:56.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:12.000Z" + }, + "events": [ + { + "uuid": "f65e13df-ec99-4333-ab3e-d461e9b0be59", + "start": { + "$date": "2021-12-29T03:33:56.000Z" + }, + "end": { + "$date": "2021-12-29T03:47:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfd651f6-ed73-4093-a951-b262c001b612", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T03:49:32.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:33.000Z" + }, + "events": [ + { + "uuid": "0083173c-caf8-4150-9066-5e4cd94279f5", + "start": { + "$date": "2021-12-29T03:49:32.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6f5a283-1c35-4196-9b3f-89abf71e4a5c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T03:49:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:34.000Z" + }, + "events": [ + { + "uuid": "e7228897-27a1-41c3-8e97-71c939542dba", + "start": { + "$date": "2021-12-29T03:49:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04c96642-66bc-42aa-acc8-4b64f5a5769e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T03:49:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:28.000Z" + }, + "events": [ + { + "uuid": "0a006bb0-41f8-45d1-9283-3116ee1dbfc1", + "start": { + "$date": "2021-12-29T03:49:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d38dce2-2624-4684-a430-b9389dc7600e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T03:49:42.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:38.000Z" + }, + "events": [ + { + "uuid": "f9d1be8b-7cbe-41fc-a608-d13fdce209d3", + "start": { + "$date": "2021-12-29T03:49:42.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "890a8dbc-1c55-40e0-96d2-743fb83602aa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T03:49:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:34.000Z" + }, + "events": [ + { + "uuid": "0cb8d3d2-12bf-4ae5-af33-32ee92d12174", + "start": { + "$date": "2021-12-29T03:49:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "422ffca4-4890-43c5-b677-cf1c4e67ba0d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T03:49:39.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:30.000Z" + }, + "events": [ + { + "uuid": "bd7baccb-6f68-4b67-a84d-fe8d2baf5550", + "start": { + "$date": "2021-12-29T03:49:39.000Z" + }, + "end": { + "$date": "2021-12-29T04:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f584fb75-05f3-48a5-9668-a69516da36cb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T04:16:38.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:24.000Z" + }, + "events": [ + { + "uuid": "e01802a4-465d-459d-a5f7-3ffa34788315", + "start": { + "$date": "2021-12-29T04:16:38.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04eef36c-c6c3-4dab-a09e-79609c96bedf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T04:16:34.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:36.000Z" + }, + "events": [ + { + "uuid": "ca0c02d4-d2af-4bba-99d2-3c7ffc7dca6b", + "start": { + "$date": "2021-12-29T04:16:34.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7042c96-9f99-4749-9005-a5290e192d11", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T04:16:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:25.000Z" + }, + "events": [ + { + "uuid": "fd65fdfb-c222-45e9-a5d9-2529bb7349c4", + "start": { + "$date": "2021-12-29T04:16:33.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a21e6e0c-96a8-4701-81bc-1e35cf82d2e1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T04:16:40.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:36.000Z" + }, + "events": [ + { + "uuid": "eda7816a-3103-40af-bd75-b39035850cb5", + "start": { + "$date": "2021-12-29T04:16:40.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "107d6dd7-f7fb-4319-8cf5-fb1a5164f8e2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T04:16:44.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:25.000Z" + }, + "events": [ + { + "uuid": "c2b3836e-1de8-4c4f-b9ed-c2357807ef31", + "start": { + "$date": "2021-12-29T04:16:44.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea047bb2-f94b-424b-8617-3aba624e93e8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T04:16:42.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:29.000Z" + }, + "events": [ + { + "uuid": "297137be-e12d-4505-b8d2-0ba30ab957d8", + "start": { + "$date": "2021-12-29T04:16:42.000Z" + }, + "end": { + "$date": "2021-12-29T04:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "c849e11d-5c14-459e-995c-a5cfb5c53d28", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T04:27:56.000Z" + }, + "end": { + "$date": "2021-12-29T05:12:59.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:27:56.000Z" + }, + "end": { + "$date": "2021-12-29T05:12:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3323d92-0c50-4b42-b021-4dd65caaf47e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T04:43:51.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:32.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:43:51.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17547636-2faf-4912-9b35-cab841f2bdca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T04:43:45.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:36.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:43:45.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92ab2f14-9753-4f9d-a38d-e30329dd8d14", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T04:43:49.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:35.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:43:49.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd5e7dfc-14d9-4655-bd3a-aa2f473c2e43", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T04:43:55.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:35.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:43:55.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c7497ce-4b12-4234-b37c-1d2321d3e457", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T04:43:46.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:37.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:43:46.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70097515-a184-4e43-907c-aa44802351f2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T04:43:53.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:39.000Z" + }, + "events": [ + { + "start": { + "$date": "2021-12-29T04:43:53.000Z" + }, + "end": { + "$date": "2021-12-29T05:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1eded9c4-9ecc-4ee0-adce-4c6391ca9267", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T05:05:57.000Z" + }, + "end": { + "$date": "2021-12-29T05:41:36.000Z" + }, + "events": [ + { + "uuid": "37605f70-7ff9-4302-a3fe-ebc9892c7bcb", + "start": { + "$date": "2021-12-29T05:05:57.000Z" + }, + "end": { + "$date": "2021-12-29T05:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46994451-2254-420f-a080-1cebd925ae0d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T05:06:05.000Z" + }, + "end": { + "$date": "2021-12-29T05:41:28.000Z" + }, + "events": [ + { + "uuid": "207605f2-e662-40e4-bd38-1af657d111ae", + "start": { + "$date": "2021-12-29T05:06:05.000Z" + }, + "end": { + "$date": "2021-12-29T05:41:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19300ab1-e842-4eab-8501-e9fbb9e9023a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T05:05:59.000Z" + }, + "end": { + "$date": "2021-12-29T05:34:11.000Z" + }, + "events": [ + { + "uuid": "22571219-60f2-4622-a411-f03498c3d67f", + "start": { + "$date": "2021-12-29T05:05:59.000Z" + }, + "end": { + "$date": "2021-12-29T05:34:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ed80e4c-6fcb-488d-b316-71edb2f0950f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T05:06:00.000Z" + }, + "end": { + "$date": "2021-12-29T05:41:27.000Z" + }, + "events": [ + { + "uuid": "751ba1e4-1a5b-4005-bd8b-391a4a263d69", + "start": { + "$date": "2021-12-29T05:06:00.000Z" + }, + "end": { + "$date": "2021-12-29T05:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8a0eaf7-2ebd-4e8f-9cb7-53b445399621", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T05:05:56.000Z" + }, + "end": { + "$date": "2021-12-29T05:26:48.000Z" + }, + "events": [ + { + "uuid": "554357e7-d31a-4978-84e1-9ca7f9fa4f4e", + "start": { + "$date": "2021-12-29T05:05:56.000Z" + }, + "end": { + "$date": "2021-12-29T05:26:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89c34ddc-f32b-4b51-ab21-289b35ddb11a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T05:06:07.000Z" + }, + "end": { + "$date": "2021-12-29T05:36:45.000Z" + }, + "events": [ + { + "uuid": "15a8abc3-1a47-4cb1-8e68-ecd3f2ccd1ee", + "start": { + "$date": "2021-12-29T05:06:07.000Z" + }, + "end": { + "$date": "2021-12-29T05:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "77267ec9-64b7-49b3-89bf-7661904bc06c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T05:31:32.000Z" + }, + "end": { + "$date": "2021-12-29T05:52:34.000Z" + }, + "events": [ + { + "uuid": "c68b59b3-fa98-44f8-b7e3-8756b635d27b", + "start": { + "$date": "2021-12-29T05:31:32.000Z" + }, + "end": { + "$date": "2021-12-29T05:52:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98eb098b-7b7a-42f3-b30f-be8e8805dbed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T05:48:15.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:31.000Z" + }, + "events": [ + { + "uuid": "cf487129-1e8e-4371-8b5e-a7694b65cefc", + "start": { + "$date": "2021-12-29T05:48:15.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b45bf4f-baca-4c8b-b996-8a81060d5d99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T05:44:30.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:46.000Z" + }, + "events": [ + { + "uuid": "63d9401b-dfd8-49c0-adc7-bc48b1371e8f", + "start": { + "$date": "2021-12-29T05:44:30.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fef6cbd-b2c8-4c0b-9369-88e7f87c37e4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T05:44:30.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:47.000Z" + }, + "events": [ + { + "uuid": "d1721737-49d5-4eb1-8d96-cbdaecc101e9", + "start": { + "$date": "2021-12-29T05:44:30.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5320d4ca-3ace-4ba7-967d-1be09830d354", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T05:44:32.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:46.000Z" + }, + "events": [ + { + "uuid": "3591110b-e976-4735-9b2c-fb283e78de31", + "start": { + "$date": "2021-12-29T05:44:32.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60156159-5e0f-4633-b6eb-1dc3b41ba014", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T05:44:31.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:45.000Z" + }, + "events": [ + { + "uuid": "115c0c1e-2e90-4d75-a3a8-d963999129ae", + "start": { + "$date": "2021-12-29T05:44:31.000Z" + }, + "end": { + "$date": "2021-12-29T05:44:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5e0ffe9-3db7-4104-9d08-a6d80eb4b776", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T05:48:27.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:23.000Z" + }, + "events": [ + { + "uuid": "4cd3b144-b91f-415a-baa9-60fc3db5a77a", + "start": { + "$date": "2021-12-29T05:48:27.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16d7bc96-590e-4396-be8e-7f03aea1d8dd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T05:48:19.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:29.000Z" + }, + "events": [ + { + "uuid": "1eaab5a6-a7d0-4743-8cfc-41ad36caf84c", + "start": { + "$date": "2021-12-29T05:48:19.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdfdb973-f3e4-4bb4-9c05-1afc02496f5d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2021-12-29T05:48:17.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:32.000Z" + }, + "events": [ + { + "uuid": "5221b757-5141-4353-b052-1de8c1fcda10", + "start": { + "$date": "2021-12-29T05:48:17.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89a961e5-a7cb-4b0f-8bf9-ca6c46c298f1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-29T05:48:28.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:34.000Z" + }, + "events": [ + { + "uuid": "ec924414-e083-4f55-bd2f-d3ff8cae922d", + "start": { + "$date": "2021-12-29T05:48:28.000Z" + }, + "end": { + "$date": "2021-12-29T06:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "5e79b282-1b3b-44a2-89cc-4aaf414999f9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T06:17:46.000Z" + }, + "end": { + "$date": "2021-12-29T06:48:38.000Z" + }, + "events": [ + { + "uuid": "27fef6cb-c476-4513-932b-4f734f47b4d6", + "start": { + "$date": "2021-12-29T06:17:46.000Z" + }, + "end": { + "$date": "2021-12-29T06:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "2aa670f2-9941-4e70-82d2-95dec707558e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T07:15:51.000Z" + }, + "end": { + "$date": "2021-12-29T09:01:24.000Z" + }, + "events": [ + { + "uuid": "40b3d363-1e0d-4e40-98d2-d2d681a0eb78", + "start": { + "$date": "2021-12-29T07:15:51.000Z" + }, + "end": { + "$date": "2021-12-29T09:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c728dcee-924a-4b1b-a8f4-dd94d074c30c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T14:53:21.000Z" + }, + "end": { + "$date": "2021-12-29T15:37:08.000Z" + }, + "events": [ + { + "uuid": "17f89007-f457-4b66-b39c-b300f028cb8b", + "start": { + "$date": "2021-12-29T14:53:21.000Z" + }, + "end": { + "$date": "2021-12-29T15:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c23edff-1228-4391-a6cc-ac779a3a1586", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T15:27:11.000Z" + }, + "end": { + "$date": "2021-12-29T15:35:22.000Z" + }, + "events": [ + { + "uuid": "6b395701-856e-49e1-8849-56afe9e7520d", + "start": { + "$date": "2021-12-29T15:27:11.000Z" + }, + "end": { + "$date": "2021-12-29T15:35:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "088ec95b-3d04-4a8d-8d48-6734ebaf89a6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-29T15:39:02.000Z" + }, + "end": { + "$date": "2021-12-29T19:01:18.000Z" + }, + "events": [ + { + "uuid": "5e9dab7f-9ef6-43d1-8b13-c6a2631d3b44", + "start": { + "$date": "2021-12-29T15:39:02.000Z" + }, + "end": { + "$date": "2021-12-29T19:01:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "55ef58b6-975e-4beb-b3e9-338aca25303e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T16:56:02.000Z" + }, + "end": { + "$date": "2021-12-29T18:02:41.000Z" + }, + "events": [ + { + "uuid": "cdc52536-2252-4015-b0d3-cf0589e21a98", + "start": { + "$date": "2021-12-29T16:56:02.000Z" + }, + "end": { + "$date": "2021-12-29T18:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6e99635-f5c2-47d5-b703-c588358dbc18", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T17:33:17.000Z" + }, + "end": { + "$date": "2021-12-29T18:03:57.000Z" + }, + "events": [ + { + "uuid": "8826156b-59c2-4ca5-bc66-782e472ea268", + "start": { + "$date": "2021-12-29T17:33:17.000Z" + }, + "end": { + "$date": "2021-12-29T18:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "38298128-2680-4fbf-9e02-08930c076fb9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T18:12:22.000Z" + }, + "end": { + "$date": "2021-12-29T18:13:58.000Z" + }, + "events": [ + { + "uuid": "4b6026e3-180a-4ecd-a8a8-68da924dc104", + "start": { + "$date": "2021-12-29T18:12:22.000Z" + }, + "end": { + "$date": "2021-12-29T18:13:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f34ff1d3-e808-4e8d-93df-1ac8d5884f53", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T19:30:04.000Z" + }, + "end": { + "$date": "2021-12-29T19:53:05.000Z" + }, + "events": [ + { + "uuid": "0a7f1a05-22a6-4445-8433-0ae1ec6a9c13", + "start": { + "$date": "2021-12-29T19:30:04.000Z" + }, + "end": { + "$date": "2021-12-29T19:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdae0024-7991-4ad5-9092-8deb9eb909af", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T19:30:04.000Z" + }, + "end": { + "$date": "2021-12-29T19:53:06.000Z" + }, + "events": [ + { + "uuid": "8a13c862-f82d-45cf-b24b-81b180f32f03", + "start": { + "$date": "2021-12-29T19:30:04.000Z" + }, + "end": { + "$date": "2021-12-29T19:53:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4697bacf-d21d-4a42-9262-68c4b734c4d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T19:54:00.000Z" + }, + "end": { + "$date": "2021-12-29T20:17:16.000Z" + }, + "events": [ + { + "uuid": "625e7df8-3bea-40e2-ba0a-58b27bc209aa", + "start": { + "$date": "2021-12-29T19:54:00.000Z" + }, + "end": { + "$date": "2021-12-29T20:17:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4333681a-2933-48a6-abe1-9f6467b0b130", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-29T19:54:01.000Z" + }, + "end": { + "$date": "2021-12-29T20:17:08.000Z" + }, + "events": [ + { + "uuid": "af081f29-be1c-4623-8c90-cf98855cb0eb", + "start": { + "$date": "2021-12-29T19:54:01.000Z" + }, + "end": { + "$date": "2021-12-29T20:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c80faa27-e8bc-455c-8382-f92e6f626008", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T20:56:40.000Z" + }, + "end": { + "$date": "2021-12-29T21:18:36.000Z" + }, + "events": [ + { + "uuid": "a311a2c5-c37a-42b9-87e1-45f6b40d1928", + "start": { + "$date": "2021-12-29T20:56:40.000Z" + }, + "end": { + "$date": "2021-12-29T21:18:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f379430c-5066-4526-b618-5c06acbdb785", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-29T21:07:19.000Z" + }, + "end": { + "$date": "2021-12-29T21:59:13.000Z" + }, + "events": [ + { + "uuid": "bab4810c-2d99-4aa1-9692-9645647904eb", + "start": { + "$date": "2021-12-29T21:07:19.000Z" + }, + "end": { + "$date": "2021-12-29T21:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "14193075-645f-476c-954d-7029078f617d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T21:23:17.000Z" + }, + "end": { + "$date": "2021-12-29T21:33:12.000Z" + }, + "events": [ + { + "uuid": "6508ab40-0294-4e6d-b2ff-10c78bc40758", + "start": { + "$date": "2021-12-29T21:23:17.000Z" + }, + "end": { + "$date": "2021-12-29T21:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "4ca9e9ec-af39-4e78-a2a9-134100c6a3e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T21:47:06.000Z" + }, + "end": { + "$date": "2021-12-29T21:48:46.000Z" + }, + "events": [ + { + "uuid": "b691614b-1b74-4094-98e5-05a9122f9200", + "start": { + "$date": "2021-12-29T21:47:06.000Z" + }, + "end": { + "$date": "2021-12-29T21:48:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d6e646db-2757-4c49-b929-a8f942c99a11", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T21:50:07.000Z" + }, + "end": { + "$date": "2021-12-29T22:13:03.000Z" + }, + "events": [ + { + "uuid": "82147974-a509-4980-b4db-a72b01c39698", + "start": { + "$date": "2021-12-29T21:50:07.000Z" + }, + "end": { + "$date": "2021-12-29T22:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "004fd162-844a-4cdf-a7a5-7d10f0a04d92", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-29T22:00:28.000Z" + }, + "end": { + "$date": "2021-12-29T22:22:19.000Z" + }, + "events": [ + { + "uuid": "c4aac5a8-767b-456d-b629-8088da24738c", + "start": { + "$date": "2021-12-29T22:00:28.000Z" + }, + "end": { + "$date": "2021-12-29T22:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1890e99d-8eb2-40d0-9b6d-75985dbeeae9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T22:08:49.000Z" + }, + "end": { + "$date": "2021-12-29T23:37:31.000Z" + }, + "events": [ + { + "uuid": "ab8f8a13-88af-49ad-83c4-85cb86abcde2", + "start": { + "$date": "2021-12-29T22:08:49.000Z" + }, + "end": { + "$date": "2021-12-29T23:37:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", + "uuid": "4203d39b-a74c-48c1-b39e-b252b6da8541", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-29T22:17:24.000Z" + }, + "end": { + "$date": "2021-12-29T22:43:00.000Z" + }, + "events": [ + { + "uuid": "8e2980c3-cc57-4eda-bcec-1243646a7741", + "start": { + "$date": "2021-12-29T22:17:24.000Z" + }, + "end": { + "$date": "2021-12-29T22:43:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b9ae108e-ae42-419a-94a4-e3f88c9119a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-29T22:35:01.000Z" + }, + "end": { + "$date": "2021-12-29T22:46:22.000Z" + }, + "events": [ + { + "uuid": "4fb4a33d-9ec6-42f5-96cc-f1cdaa594156", + "start": { + "$date": "2021-12-29T22:35:01.000Z" + }, + "end": { + "$date": "2021-12-29T22:46:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ed4bf7e0-fc19-4ac7-a51a-ae6bdf67d224", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-29T22:46:27.000Z" + }, + "end": { + "$date": "2021-12-29T23:03:48.000Z" + }, + "events": [ + { + "uuid": "785fbc1a-b843-48b0-9a04-a13293d8b59c", + "start": { + "$date": "2021-12-29T22:46:27.000Z" + }, + "end": { + "$date": "2021-12-29T23:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6e6c5440-cb52-4acd-b286-790c4fdd451a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-29T22:52:45.000Z" + }, + "end": { + "$date": "2021-12-30T01:14:03.000Z" + }, + "events": [ + { + "uuid": "4103664f-6e61-455e-bc7a-8f0e0f31c377", + "start": { + "$date": "2021-12-29T22:52:45.000Z" + }, + "end": { + "$date": "2021-12-30T01:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b351a15-8a61-4e97-b542-23b9f6d19d66", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-29T23:04:33.000Z" + }, + "end": { + "$date": "2021-12-30T00:36:35.000Z" + }, + "events": [ + { + "uuid": "c9c13635-39fc-4831-b151-80fd6a869f67", + "start": { + "$date": "2021-12-29T23:04:33.000Z" + }, + "end": { + "$date": "2021-12-30T00:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c98fd05-8304-48fc-bed0-7f5a05107571", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T23:25:20.000Z" + }, + "end": { + "$date": "2021-12-29T23:47:20.000Z" + }, + "events": [ + { + "uuid": "a1c41a4b-e813-4529-88b8-ec4181886e10", + "start": { + "$date": "2021-12-29T23:25:20.000Z" + }, + "end": { + "$date": "2021-12-29T23:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5156085b-fabc-4c25-931a-17d161586fe8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T23:40:28.000Z" + }, + "end": { + "$date": "2021-12-29T23:43:07.000Z" + }, + "events": [ + { + "uuid": "115d8d8c-6600-41e8-bc88-14f00288713a", + "start": { + "$date": "2021-12-29T23:40:28.000Z" + }, + "end": { + "$date": "2021-12-29T23:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d9ec5ea4-2d67-4f4f-9f8e-fb85f82bc699", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T23:43:23.000Z" + }, + "end": { + "$date": "2021-12-29T23:47:12.000Z" + }, + "events": [ + { + "uuid": "2a3c3b2d-5cf3-4c87-b279-1a663f8f6270", + "start": { + "$date": "2021-12-29T23:43:23.000Z" + }, + "end": { + "$date": "2021-12-29T23:47:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9cde11d5-51a0-4269-95c7-9c1b3d5464ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T23:47:23.000Z" + }, + "end": { + "$date": "2021-12-29T23:51:08.000Z" + }, + "events": [ + { + "uuid": "8f19eb72-f8be-4510-87f1-06e89f6ec31d", + "start": { + "$date": "2021-12-29T23:47:23.000Z" + }, + "end": { + "$date": "2021-12-29T23:51:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "005ad44f-5ec7-45d9-a626-c03f14ae94ce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-29T23:56:13.000Z" + }, + "end": { + "$date": "2021-12-30T00:15:24.000Z" + }, + "events": [ + { + "uuid": "1c0aa245-66d0-49c0-be56-39ce8467d4b9", + "start": { + "$date": "2021-12-29T23:56:13.000Z" + }, + "end": { + "$date": "2021-12-30T00:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "eaffdb30-e5b6-416d-9233-3f0a516d3169", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T23:51:24.000Z" + }, + "end": { + "$date": "2021-12-29T23:53:03.000Z" + }, + "events": [ + { + "uuid": "d971a62d-173c-4c63-babb-d1ef7c05a80d", + "start": { + "$date": "2021-12-29T23:51:24.000Z" + }, + "end": { + "$date": "2021-12-29T23:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ff7f2252-6de4-4019-b1dd-aa8359f4beaf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-29T23:54:39.000Z" + }, + "end": { + "$date": "2021-12-30T00:41:19.000Z" + }, + "events": [ + { + "uuid": "9451d4a3-bd90-4e07-bb09-27257ea64d8e", + "start": { + "$date": "2021-12-29T23:54:39.000Z" + }, + "end": { + "$date": "2021-12-30T00:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a52123f3-1925-4ab1-8faf-177a2be1871b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T00:26:45.000Z" + }, + "end": { + "$date": "2021-12-30T01:00:02.000Z" + }, + "events": [ + { + "uuid": "1686ffb6-147f-4a89-8a09-42dfdf0adaa1", + "start": { + "$date": "2021-12-30T00:26:45.000Z" + }, + "end": { + "$date": "2021-12-30T01:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1a9375e1-ec5e-4c85-9bd0-fd72c9c9643b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-30T00:41:30.000Z" + }, + "end": { + "$date": "2021-12-30T00:56:10.000Z" + }, + "events": [ + { + "uuid": "a2a0322b-a5e8-4d74-a3e0-f7b8a39fa160", + "start": { + "$date": "2021-12-30T00:41:30.000Z" + }, + "end": { + "$date": "2021-12-30T00:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b273767c-a050-4df5-90dc-b95fa7845734", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-30T00:56:21.000Z" + }, + "end": { + "$date": "2021-12-30T07:23:29.000Z" + }, + "events": [ + { + "uuid": "63d93706-d5c3-4cb9-9023-8350b5e2c316", + "start": { + "$date": "2021-12-30T00:56:21.000Z" + }, + "end": { + "$date": "2021-12-30T07:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "be35723c-6d5d-4d4c-8f78-e60ccb625a84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T01:01:27.000Z" + }, + "end": { + "$date": "2021-12-30T01:56:46.000Z" + }, + "events": [ + { + "uuid": "dd2d4818-ecca-4517-94c9-aa2891fd0830", + "start": { + "$date": "2021-12-30T01:01:27.000Z" + }, + "end": { + "$date": "2021-12-30T01:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "a0dd0169-a273-4867-aa65-e06d436847ff", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T01:05:43.000Z" + }, + "end": { + "$date": "2021-12-30T02:29:44.000Z" + }, + "events": [ + { + "uuid": "f2366e0d-2876-4904-9d3b-86f52a70e925", + "start": { + "$date": "2021-12-30T01:05:43.000Z" + }, + "end": { + "$date": "2021-12-30T02:29:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ed80c39-a343-4c17-8032-461281c92081", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-30T01:10:59.000Z" + }, + "end": { + "$date": "2021-12-30T02:35:53.000Z" + }, + "events": [ + { + "uuid": "2b62a711-4b7e-474d-8431-1c0810cc68c9", + "start": { + "$date": "2021-12-30T01:10:59.000Z" + }, + "end": { + "$date": "2021-12-30T02:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "845ffb09-6302-4a53-badd-a603ee7d9933", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-30T01:14:23.000Z" + }, + "end": { + "$date": "2021-12-30T02:35:11.000Z" + }, + "events": [ + { + "uuid": "ad55bf28-25bf-4fbc-ae8e-8656fe8081c9", + "start": { + "$date": "2021-12-30T01:14:23.000Z" + }, + "end": { + "$date": "2021-12-30T02:35:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "2c2e0085-dc36-433d-9fbd-3bb225db1038", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-30T01:17:22.000Z" + }, + "end": { + "$date": "2021-12-30T01:57:19.000Z" + }, + "events": [ + { + "uuid": "c164527e-a9dd-459a-903a-c3ec250dc35c", + "start": { + "$date": "2021-12-30T01:17:22.000Z" + }, + "end": { + "$date": "2021-12-30T01:57:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2ac082f1-abaf-45cd-afe9-968ef2e68426", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-30T01:18:06.000Z" + }, + "end": { + "$date": "2021-12-30T01:57:08.000Z" + }, + "events": [ + { + "uuid": "4d4fbaa3-4a45-4c95-bd4b-7fb9f7f16cd6", + "start": { + "$date": "2021-12-30T01:18:06.000Z" + }, + "end": { + "$date": "2021-12-30T01:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "06c87738-5daf-418f-8713-d1dfa6a30e9e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-30T01:57:42.000Z" + }, + "end": { + "$date": "2021-12-30T02:53:12.000Z" + }, + "events": [ + { + "uuid": "b6478bea-8cd0-4430-b0ac-14e899639a75", + "start": { + "$date": "2021-12-30T01:57:42.000Z" + }, + "end": { + "$date": "2021-12-30T02:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57ba5913-c4da-4acf-b973-893cacb6af02", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T02:05:43.000Z" + }, + "end": { + "$date": "2021-12-30T02:25:29.000Z" + }, + "events": [ + { + "uuid": "756d36be-2e94-4aef-83dd-de2b375ccb70", + "start": { + "$date": "2021-12-30T02:05:43.000Z" + }, + "end": { + "$date": "2021-12-30T02:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f141de72-91db-4bf4-8edc-f11105ba9dd7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T02:07:05.000Z" + }, + "end": { + "$date": "2021-12-30T05:19:28.000Z" + }, + "events": [ + { + "uuid": "7017d0dc-66d3-4d7c-b46c-528d3cda0eab", + "start": { + "$date": "2021-12-30T02:07:05.000Z" + }, + "end": { + "$date": "2021-12-30T03:57:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c39750ba-96e0-45b8-b902-ca496e57b99a", + "start": { + "$date": "2021-12-30T03:57:05.000Z" + }, + "end": { + "$date": "2021-12-30T04:02:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43d97ab8-1f1c-420b-b756-96f6b7f9e7ca", + "start": { + "$date": "2021-12-30T04:02:05.000Z" + }, + "end": { + "$date": "2021-12-30T04:12:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a838f018-2daa-47fc-b95c-fcbaeaebd77a", + "start": { + "$date": "2021-12-30T04:12:05.000Z" + }, + "end": { + "$date": "2021-12-30T04:18:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "415cae6b-0b73-494d-827e-aa26d36072d5", + "start": { + "$date": "2021-12-30T04:18:05.000Z" + }, + "end": { + "$date": "2021-12-30T04:33:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1aab925-ae77-4b96-8b82-0d671223d4fd", + "start": { + "$date": "2021-12-30T04:33:05.000Z" + }, + "end": { + "$date": "2021-12-30T04:40:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e1247b2-0f2a-479e-ac85-81c020154a31", + "start": { + "$date": "2021-12-30T04:40:05.000Z" + }, + "end": { + "$date": "2021-12-30T04:57:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "00c9cb09-5341-49a4-a9b5-d71ee2e4c234", + "start": { + "$date": "2021-12-30T04:57:05.000Z" + }, + "end": { + "$date": "2021-12-30T05:03:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ba50b31-9c63-403d-b27d-27ab07025838", + "start": { + "$date": "2021-12-30T05:03:05.000Z" + }, + "end": { + "$date": "2021-12-30T05:13:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4baa42ab-0717-4b6e-955a-f8ee3f423415", + "start": { + "$date": "2021-12-30T05:13:05.000Z" + }, + "end": { + "$date": "2021-12-30T05:19:28.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d0bb647-8846-4db1-a9b7-614ae888810b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T02:26:34.000Z" + }, + "end": { + "$date": "2021-12-30T02:40:39.000Z" + }, + "events": [ + { + "uuid": "99fb5c27-f28b-4068-922b-dc8c90d375a8", + "start": { + "$date": "2021-12-30T02:26:34.000Z" + }, + "end": { + "$date": "2021-12-30T02:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6620b68-8c01-4ce4-9bfc-2783e3753428", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T02:45:15.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:16.000Z" + }, + "events": [ + { + "uuid": "9bbc1b2a-6e97-46ee-986d-fb8b0a5b7f0c", + "start": { + "$date": "2021-12-30T02:45:15.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78601247-41e7-4027-9308-cb0baede888e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T02:45:25.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:10.000Z" + }, + "events": [ + { + "uuid": "4ebe5568-6dbe-461c-869a-6fc247252a41", + "start": { + "$date": "2021-12-30T02:45:25.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0b3337d-9954-4035-9944-bf0efa60162d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-30T02:45:23.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:09.000Z" + }, + "events": [ + { + "uuid": "746cbfef-9535-4897-bb48-0b6011faf5bf", + "start": { + "$date": "2021-12-30T02:45:23.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b738c061-ded0-4b6f-bd23-14db4153be50", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-30T02:45:20.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:15.000Z" + }, + "events": [ + { + "uuid": "cc3a9476-1fa4-43e6-ae02-a5b7a8ea43c4", + "start": { + "$date": "2021-12-30T02:45:20.000Z" + }, + "end": { + "$date": "2021-12-30T03:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2c16b3d1-a92f-4738-b9cf-9b44787e9cab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-30T02:53:20.000Z" + }, + "end": { + "$date": "2021-12-30T03:41:49.000Z" + }, + "events": [ + { + "uuid": "c2914ad5-be01-45c8-9c1e-2558a94ec610", + "start": { + "$date": "2021-12-30T02:53:20.000Z" + }, + "end": { + "$date": "2021-12-30T03:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "998ef887-757d-4629-93bf-7490f88955b1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T03:14:47.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:33.000Z" + }, + "events": [ + { + "uuid": "6b6b5756-0915-4c34-b885-77c9ab2af582", + "start": { + "$date": "2021-12-30T03:14:47.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c01c6100-bb2b-4b9c-b9b6-482f378c01a2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-30T03:14:55.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:36.000Z" + }, + "events": [ + { + "uuid": "95621137-d992-4892-a720-23c90a8b886b", + "start": { + "$date": "2021-12-30T03:14:55.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2117d2bb-1eb3-485c-a533-2d1f30281a62", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T03:14:56.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:31.000Z" + }, + "events": [ + { + "uuid": "3bbf985b-b94c-4cb4-8ec9-75ba33c1d955", + "start": { + "$date": "2021-12-30T03:14:56.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "218bbd52-5c56-47ec-8d29-a5a957f9abfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-30T03:14:49.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:42.000Z" + }, + "events": [ + { + "uuid": "4ac47c7d-5085-4903-a9f7-a7e8a7aebabb", + "start": { + "$date": "2021-12-30T03:14:49.000Z" + }, + "end": { + "$date": "2021-12-30T03:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "70d460b8-72f5-49e1-a3c3-f19077489116", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-30T03:42:52.000Z" + }, + "end": { + "$date": "2021-12-30T04:02:00.000Z" + }, + "events": [ + { + "uuid": "9c0002f1-a1e1-4df6-8da5-3783134c2375", + "start": { + "$date": "2021-12-30T03:42:52.000Z" + }, + "end": { + "$date": "2021-12-30T04:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "9d6b070a-934a-4ef1-8fff-f7ec2310d21d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T05:25:40.000Z" + }, + "end": { + "$date": "2021-12-30T05:25:40.000Z" + }, + "events": [ + { + "uuid": "3b704258-81b6-4b1c-80f1-ca59555dddb3", + "start": { + "$date": "2021-12-30T05:25:40.000Z" + }, + "end": { + "$date": "2021-12-30T05:25:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e806c37c-4d07-4abf-ae34-037e5ab65d90", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-30T04:16:00.000Z" + }, + "end": { + "$date": "2021-12-30T04:52:37.000Z" + }, + "events": [ + { + "uuid": "9c0f3d25-f32c-41d8-aae1-f8d48026aa38", + "start": { + "$date": "2021-12-30T04:16:00.000Z" + }, + "end": { + "$date": "2021-12-30T04:52:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "16931083-97a7-4d57-bd18-cf9795cc21b5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-30T04:44:36.000Z" + }, + "end": { + "$date": "2021-12-30T05:08:39.000Z" + }, + "events": [ + { + "uuid": "00c38896-4243-4868-8b6e-e0eb8ebe2c11", + "start": { + "$date": "2021-12-30T04:44:36.000Z" + }, + "end": { + "$date": "2021-12-30T05:08:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "6aff0614-ffc7-468d-b86f-389d821b4b3a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-30T05:52:55.000Z" + }, + "end": { + "$date": "2021-12-30T05:53:15.000Z" + }, + "events": [ + { + "uuid": "5decd021-e232-4097-a071-24bab9058c3e", + "start": { + "$date": "2021-12-30T05:52:55.000Z" + }, + "end": { + "$date": "2021-12-30T05:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "a0dfde7e-8590-4105-95ef-bc21d569297c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T05:19:33.000Z" + }, + "end": { + "$date": "2021-12-30T05:50:14.000Z" + }, + "events": [ + { + "uuid": "b452843a-c73e-449e-9af4-95694c31f6cc", + "start": { + "$date": "2021-12-30T05:19:33.000Z" + }, + "end": { + "$date": "2021-12-30T05:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "f21730c3-cc61-4379-bdbd-2ac334c46b45", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T07:56:57.000Z" + }, + "end": { + "$date": "2021-12-30T07:56:57.000Z" + }, + "events": [ + { + "uuid": "6d8c803d-ca1a-4bc1-9aba-03a54b79fbc7", + "start": { + "$date": "2021-12-30T07:56:57.000Z" + }, + "end": { + "$date": "2021-12-30T07:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb277cb8-1ec2-4d15-9240-dbfa9c104f60", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T05:50:40.000Z" + }, + "end": { + "$date": "2021-12-30T07:25:49.000Z" + }, + "events": [ + { + "uuid": "29d77f1d-8cd5-45a1-835b-ef9b52d035b0", + "start": { + "$date": "2021-12-30T05:50:40.000Z" + }, + "end": { + "$date": "2021-12-30T07:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a05a9174-4c2f-46a3-a603-bd20ca562f50", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-30T12:29:06.000Z" + }, + "end": { + "$date": "2021-12-30T15:24:12.000Z" + }, + "events": [ + { + "uuid": "8fcd7a4c-5d2b-4e00-ab6b-443c5769ea41", + "start": { + "$date": "2021-12-30T12:29:06.000Z" + }, + "end": { + "$date": "2021-12-30T15:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2cde3c3-c2aa-4951-a475-699d15899683", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T16:02:46.000Z" + }, + "end": { + "$date": "2021-12-30T16:15:56.000Z" + }, + "events": [ + { + "uuid": "8bc78ced-1850-4712-a3a6-9baa8b8aec93", + "start": { + "$date": "2021-12-30T16:02:46.000Z" + }, + "end": { + "$date": "2021-12-30T16:15:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a96fab65-b713-4859-a99f-d1c472f21f00", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T16:17:47.000Z" + }, + "end": { + "$date": "2021-12-30T16:39:27.000Z" + }, + "events": [ + { + "uuid": "613c2616-350b-49bb-9d43-dc16a723e9d4", + "start": { + "$date": "2021-12-30T16:17:47.000Z" + }, + "end": { + "$date": "2021-12-30T16:39:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0712f1b-b50d-4b74-a375-d5b6a74d1f1e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T16:42:28.000Z" + }, + "end": { + "$date": "2021-12-30T16:59:43.000Z" + }, + "events": [ + { + "uuid": "08a1e918-d421-4fb2-af8e-6848214ac38c", + "start": { + "$date": "2021-12-30T16:42:28.000Z" + }, + "end": { + "$date": "2021-12-30T16:59:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "80849dc5-af2d-4453-89bd-85c315085bfa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T16:49:04.000Z" + }, + "end": { + "$date": "2021-12-30T17:21:08.000Z" + }, + "events": [ + { + "uuid": "01174d84-94ad-47a0-acc2-aec96b922695", + "start": { + "$date": "2021-12-30T16:49:04.000Z" + }, + "end": { + "$date": "2021-12-30T17:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e67cfc78-7d79-45eb-918d-2ab92880a6e8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T17:21:25.000Z" + }, + "end": { + "$date": "2021-12-30T18:00:30.000Z" + }, + "events": [ + { + "uuid": "6cc83294-54d7-4eb6-b0e2-7b1a58d5502d", + "start": { + "$date": "2021-12-30T17:21:25.000Z" + }, + "end": { + "$date": "2021-12-30T18:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "779370a1-d59c-48a6-bed4-7a5c9abe2ff7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-30T17:28:09.000Z" + }, + "end": { + "$date": "2021-12-30T23:28:05.000Z" + }, + "events": [ + { + "uuid": "c7046ea9-3b55-4d28-8368-72226c5f69ed", + "start": { + "$date": "2021-12-30T17:28:09.000Z" + }, + "end": { + "$date": "2021-12-30T23:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fde3aa62-e8d6-47b6-bea7-5d1d244b19c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-30T17:40:33.000Z" + }, + "end": { + "$date": "2021-12-30T18:20:29.000Z" + }, + "events": [ + { + "uuid": "26291daa-5524-481f-95a6-d55bbad81a32", + "start": { + "$date": "2021-12-30T17:40:33.000Z" + }, + "end": { + "$date": "2021-12-30T18:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2f7f52ef-f438-405e-9349-193fd088ac88", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T17:41:48.000Z" + }, + "end": { + "$date": "2021-12-30T18:20:19.000Z" + }, + "events": [ + { + "uuid": "2903f929-a271-4c4e-9126-9a75c6ec278d", + "start": { + "$date": "2021-12-30T17:41:48.000Z" + }, + "end": { + "$date": "2021-12-30T18:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "9a83df58-9d7e-4452-a8a6-d79479787aad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T18:00:36.000Z" + }, + "end": { + "$date": "2021-12-30T18:08:05.000Z" + }, + "events": [ + { + "uuid": "1ae9a22f-8141-4366-a724-252358c964a0", + "start": { + "$date": "2021-12-30T18:00:36.000Z" + }, + "end": { + "$date": "2021-12-30T18:08:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7ee3e473-dc1c-4611-91dd-3cee9e8aa470", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T18:09:12.000Z" + }, + "end": { + "$date": "2021-12-30T18:55:32.000Z" + }, + "events": [ + { + "uuid": "5e6ccabf-c04f-4ccc-9351-1f3591889a32", + "start": { + "$date": "2021-12-30T18:09:12.000Z" + }, + "end": { + "$date": "2021-12-30T18:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6cfd6a25-63f4-4948-8f8b-f5b9ecf78c4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T18:55:47.000Z" + }, + "end": { + "$date": "2021-12-30T19:02:28.000Z" + }, + "events": [ + { + "uuid": "7e032ff9-0f52-468a-959f-43aafb3aabab", + "start": { + "$date": "2021-12-30T18:55:47.000Z" + }, + "end": { + "$date": "2021-12-30T19:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8a117334-f3f7-4e76-b484-5aa628c31df4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T19:02:38.000Z" + }, + "end": { + "$date": "2021-12-30T19:14:53.000Z" + }, + "events": [ + { + "uuid": "cce1daae-35e0-4c79-a238-3f422174dd24", + "start": { + "$date": "2021-12-30T19:02:38.000Z" + }, + "end": { + "$date": "2021-12-30T19:14:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3bcd66d9-089c-43a2-9f20-e2099951ce0d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-30T19:08:56.000Z" + }, + "end": { + "$date": "2021-12-30T19:24:14.000Z" + }, + "events": [ + { + "uuid": "bcca149c-fed0-4ecb-821a-67067180fdfd", + "start": { + "$date": "2021-12-30T19:08:56.000Z" + }, + "end": { + "$date": "2021-12-30T19:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b4fbfbb4-af60-4c8d-893b-25c904744694", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-30T19:53:16.000Z" + }, + "end": { + "$date": "2021-12-30T21:18:05.000Z" + }, + "events": [ + { + "uuid": "16ab0019-5fcd-4170-bd1b-c04e17995d9c", + "start": { + "$date": "2021-12-30T19:53:16.000Z" + }, + "end": { + "$date": "2021-12-30T21:18:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "aa54e412-9a88-404a-8be0-626d1c37ed77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-30T20:09:26.000Z" + }, + "end": { + "$date": "2021-12-30T23:14:19.000Z" + }, + "events": [ + { + "uuid": "c8973d02-2278-41a5-b2fe-e6008d2130f0", + "start": { + "$date": "2021-12-30T20:09:26.000Z" + }, + "end": { + "$date": "2021-12-30T23:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "9ddf2985-3f07-4ba3-8dc3-95cb8fe03c0e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-30T20:22:23.000Z" + }, + "end": { + "$date": "2021-12-31T00:42:55.000Z" + }, + "events": [ + { + "uuid": "f11e746a-bf16-448b-9f98-482c75652587", + "start": { + "$date": "2021-12-30T20:22:23.000Z" + }, + "end": { + "$date": "2021-12-31T00:42:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "a15dce14-9334-4077-b90a-0aa9db247c94", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-30T20:27:48.000Z" + }, + "end": { + "$date": "2021-12-30T23:25:55.000Z" + }, + "events": [ + { + "uuid": "576bc596-e304-426a-906b-c8cb59d6e193", + "start": { + "$date": "2021-12-30T20:27:48.000Z" + }, + "end": { + "$date": "2021-12-30T23:25:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "a3c94140-f090-41eb-8379-8ed7957d58c3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-30T23:12:52.000Z" + }, + "end": { + "$date": "2021-12-30T23:35:37.000Z" + }, + "events": [ + { + "uuid": "8764faa9-6295-4d6e-acea-6ee152f1a1ea", + "start": { + "$date": "2021-12-30T23:12:52.000Z" + }, + "end": { + "$date": "2021-12-30T23:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a4014907-be1d-4282-9245-a41a5bcda0a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-31T00:36:25.000Z" + }, + "end": { + "$date": "2021-12-31T00:56:55.000Z" + }, + "events": [ + { + "uuid": "1dcfc726-e768-4460-b1e9-446d61bffc7c", + "start": { + "$date": "2021-12-31T00:36:25.000Z" + }, + "end": { + "$date": "2021-12-31T00:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "038442bb-6059-4417-ae24-aec7dea78572", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-31T00:45:07.000Z" + }, + "end": { + "$date": "2021-12-31T02:28:51.000Z" + }, + "events": [ + { + "uuid": "3a238615-b72a-4f2f-98c0-7b5f846d3ed4", + "start": { + "$date": "2021-12-31T00:45:07.000Z" + }, + "end": { + "$date": "2021-12-31T01:27:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "716a2aeb-b1a2-4861-90be-7a0430cbaacc", + "start": { + "$date": "2021-12-31T01:27:07.000Z" + }, + "end": { + "$date": "2021-12-31T01:49:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df7b3483-4fca-44ab-a9ad-97c0d9e51916", + "start": { + "$date": "2021-12-31T01:49:07.000Z" + }, + "end": { + "$date": "2021-12-31T02:28:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "4cf315d6-d53d-48d6-80bf-0c4ea79646b0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-31T02:11:12.000Z" + }, + "end": { + "$date": "2021-12-31T05:53:08.000Z" + }, + "events": [ + { + "uuid": "ff916ef7-496c-4734-b4f0-ff647359444b", + "start": { + "$date": "2021-12-31T02:11:12.000Z" + }, + "end": { + "$date": "2021-12-31T03:51:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7da04a88-54a1-409e-a4ca-0b9404d920e8", + "start": { + "$date": "2021-12-31T03:51:12.000Z" + }, + "end": { + "$date": "2021-12-31T03:56:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b842345b-9351-4425-8e66-d2fccb6d755e", + "start": { + "$date": "2021-12-31T03:56:12.000Z" + }, + "end": { + "$date": "2021-12-31T04:06:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1379f9f-2fee-4c86-bca8-c9c8345d4641", + "start": { + "$date": "2021-12-31T04:06:12.000Z" + }, + "end": { + "$date": "2021-12-31T06:40:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d448f21-5163-4506-bc58-91ca0f2b767a", + "start": { + "$date": "2021-12-31T06:40:12.000Z" + }, + "end": { + "$date": "2021-12-31T06:43:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99842339-697a-455d-8915-397aea9ecc0f", + "start": { + "$date": "2021-12-31T06:43:12.000Z" + }, + "end": { + "$date": "2021-12-31T07:12:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a38d6d0-21b5-4e78-b67c-422b33160663", + "start": { + "$date": "2021-12-31T07:12:12.000Z" + }, + "end": { + "$date": "2021-12-31T05:53:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "c0d663c9-3e42-4f2f-9265-680242c4234c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-31T00:48:11.000Z" + }, + "end": { + "$date": "2021-12-31T01:07:50.000Z" + }, + "events": [ + { + "uuid": "57925a08-0ce4-442e-8138-c9c485a18274", + "start": { + "$date": "2021-12-31T00:48:11.000Z" + }, + "end": { + "$date": "2021-12-31T01:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "195e210c-48fd-406f-b9a8-ddd8027e8682", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-31T00:57:00.000Z" + }, + "end": { + "$date": "2021-12-31T01:39:11.000Z" + }, + "events": [ + { + "uuid": "04add844-ebf4-4d0a-b00a-0b0f52b52573", + "start": { + "$date": "2021-12-31T00:57:00.000Z" + }, + "end": { + "$date": "2021-12-31T01:39:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "69f9050d-0758-488e-ac3b-e8582bc0a042", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-30T22:54:51.000Z" + }, + "end": { + "$date": "2021-12-31T01:57:11.000Z" + }, + "events": [ + { + "uuid": "be8243f8-984b-4178-8860-08d2fa67753c", + "start": { + "$date": "2021-12-30T22:54:51.000Z" + }, + "end": { + "$date": "2021-12-31T01:57:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c594ba2c-4f6a-47a1-8b58-89fae6f488ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-31T01:44:42.000Z" + }, + "end": { + "$date": "2021-12-31T03:49:42.000Z" + }, + "events": [ + { + "uuid": "1ef1a292-d0b9-4cbe-a939-3914b597687c", + "start": { + "$date": "2021-12-31T01:44:42.000Z" + }, + "end": { + "$date": "2021-12-31T02:33:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc6922b6-6c72-4fb1-aa57-5ea72a6e7227", + "start": { + "$date": "2021-12-31T02:33:42.000Z" + }, + "end": { + "$date": "2021-12-31T02:34:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a85e1dab-18d4-4589-9998-677a483bde32", + "start": { + "$date": "2021-12-31T02:34:42.000Z" + }, + "end": { + "$date": "2021-12-31T02:44:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64d22fa2-2d1b-473d-8650-fd6b7f1b9e0a", + "start": { + "$date": "2021-12-31T02:44:42.000Z" + }, + "end": { + "$date": "2021-12-31T02:49:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e48f9f7f-34d1-484c-ad38-4acf82e7248d", + "start": { + "$date": "2021-12-31T02:49:42.000Z" + }, + "end": { + "$date": "2021-12-31T03:08:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06df2fbe-a8e2-4a51-bac8-62098de0a5b9", + "start": { + "$date": "2021-12-31T03:08:42.000Z" + }, + "end": { + "$date": "2021-12-31T03:49:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "004f0421-fb42-4980-8d68-0063a88e9815", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-31T01:50:54.000Z" + }, + "end": { + "$date": "2021-12-31T02:29:10.000Z" + }, + "events": [ + { + "uuid": "081c492c-93f3-4623-ab8e-9e784912de6e", + "start": { + "$date": "2021-12-31T01:50:54.000Z" + }, + "end": { + "$date": "2021-12-31T02:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c3507ce-76db-4cbf-9f7a-d4ee06af05cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-31T02:02:06.000Z" + }, + "end": { + "$date": "2021-12-31T02:05:27.000Z" + }, + "events": [ + { + "uuid": "c51e5539-bcee-400b-975b-39ecb61af703", + "start": { + "$date": "2021-12-31T02:02:06.000Z" + }, + "end": { + "$date": "2021-12-31T02:05:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9830f60c-4f7d-4b52-883a-105784fc6e0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-31T02:05:47.000Z" + }, + "end": { + "$date": "2021-12-31T02:08:37.000Z" + }, + "events": [ + { + "uuid": "3bc6fd09-7273-41c8-ace5-a3a95845f02a", + "start": { + "$date": "2021-12-31T02:05:47.000Z" + }, + "end": { + "$date": "2021-12-31T02:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "324a0a96-c4cf-4722-b4a1-1bd14ef03977", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-31T02:10:32.000Z" + }, + "end": { + "$date": "2021-12-31T02:48:29.000Z" + }, + "events": [ + { + "uuid": "804ace10-a638-4e9f-a1ef-e78b56318fb7", + "start": { + "$date": "2021-12-31T02:10:32.000Z" + }, + "end": { + "$date": "2021-12-31T02:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "505501a4-537e-45c7-b460-0abc3640b00b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2021-12-31T02:18:14.000Z" + }, + "end": { + "$date": "2021-12-31T03:21:33.000Z" + }, + "events": [ + { + "uuid": "25e09cd6-fca1-41ab-8a14-c3406c3e602e", + "start": { + "$date": "2021-12-31T02:18:14.000Z" + }, + "end": { + "$date": "2021-12-31T03:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d04ce649-f061-4e80-a62d-42e047f49dd8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-31T02:20:30.000Z" + }, + "end": { + "$date": "2021-12-31T03:44:07.000Z" + }, + "events": [ + { + "uuid": "549e585c-536b-4dce-941e-2a73aa80af11", + "start": { + "$date": "2021-12-31T02:20:30.000Z" + }, + "end": { + "$date": "2021-12-31T03:44:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "39a54a38-a66c-4aac-b8cd-cd61b041134f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-31T02:29:30.000Z" + }, + "end": { + "$date": "2021-12-31T03:33:22.000Z" + }, + "events": [ + { + "uuid": "5aad21bd-42ec-4055-82c1-d53cdd3aec7c", + "start": { + "$date": "2021-12-31T02:29:30.000Z" + }, + "end": { + "$date": "2021-12-31T03:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7240c500-cb5a-476c-801b-8f3959c5c494", + "uuid": "bda9d43a-5a82-4a06-8e91-39f05dfdf019", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-31T02:37:22.000Z" + }, + "end": { + "$date": "2021-12-31T02:41:38.000Z" + }, + "events": [ + { + "uuid": "cb261407-c221-4915-b061-4b2180bd998b", + "start": { + "$date": "2021-12-31T02:37:22.000Z" + }, + "end": { + "$date": "2021-12-31T02:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0796bca3-a608-42aa-896f-aa1ffb7a2bb9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-31T02:48:44.000Z" + }, + "end": { + "$date": "2021-12-31T07:59:26.000Z" + }, + "events": [ + { + "uuid": "20a557fa-7048-4902-882c-363675a9312a", + "start": { + "$date": "2021-12-31T02:48:44.000Z" + }, + "end": { + "$date": "2021-12-31T03:18:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fd4c099d-e0fd-4819-ac0d-fda6930bf830", + "start": { + "$date": "2021-12-31T03:18:44.000Z" + }, + "end": { + "$date": "2021-12-31T03:23:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be8f8aea-ecc2-49c8-876b-c49e76a44f26", + "start": { + "$date": "2021-12-31T03:23:44.000Z" + }, + "end": { + "$date": "2021-12-31T03:33:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8dbf2523-f97b-4d7e-9732-42070e21d45c", + "start": { + "$date": "2021-12-31T03:33:44.000Z" + }, + "end": { + "$date": "2021-12-31T03:38:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9e4c0741-d3b7-41f5-8768-e141002b839b", + "start": { + "$date": "2021-12-31T03:38:44.000Z" + }, + "end": { + "$date": "2021-12-31T07:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "211f7c03-2e6e-44a2-b48f-832d7bb03c26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-31T03:15:29.000Z" + }, + "end": { + "$date": "2021-12-31T03:32:59.000Z" + }, + "events": [ + { + "uuid": "9707bd92-024b-4f75-a092-c34e75cd0a1a", + "start": { + "$date": "2021-12-31T03:15:29.000Z" + }, + "end": { + "$date": "2021-12-31T03:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b4504100-d25c-4ab1-b6c8-9e8cea954a1f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-31T03:21:36.000Z" + }, + "end": { + "$date": "2021-12-31T03:55:44.000Z" + }, + "events": [ + { + "uuid": "4b0b9eb1-b212-48bd-8f9c-b3fe4184241a", + "start": { + "$date": "2021-12-31T03:21:36.000Z" + }, + "end": { + "$date": "2021-12-31T03:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "513e3f0c-4e84-49b2-a22b-0d2440c9bc19", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-31T06:04:34.000Z" + }, + "end": { + "$date": "2021-12-31T06:23:48.000Z" + }, + "events": [ + { + "uuid": "5d54fdd4-857e-40c9-be32-4a1963a47b90", + "start": { + "$date": "2021-12-31T06:04:34.000Z" + }, + "end": { + "$date": "2021-12-31T06:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "db97480b-3395-467c-b949-7d2c32b6edaf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-31T04:00:35.000Z" + }, + "end": { + "$date": "2021-12-31T06:04:51.000Z" + }, + "events": [ + { + "uuid": "aaf57f50-bdec-4ad9-bf0a-73259fe5f2c9", + "start": { + "$date": "2021-12-31T04:00:35.000Z" + }, + "end": { + "$date": "2021-12-31T06:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1488f91c-d199-46fb-845c-81e0d49e2c40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-31T04:01:32.000Z" + }, + "end": { + "$date": "2021-12-31T06:04:38.000Z" + }, + "events": [ + { + "uuid": "4e04719f-7d7c-48dd-8d3c-ffb138194558", + "start": { + "$date": "2021-12-31T04:01:32.000Z" + }, + "end": { + "$date": "2021-12-31T06:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "244083e2-7efc-4adf-bbee-9e17c9dd4fe2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2021-12-31T01:44:42.000Z" + }, + "end": { + "$date": "2021-12-31T05:06:08.000Z" + }, + "events": [ + { + "uuid": "7f0953f8-d804-48f4-9100-20ab91ce3e21", + "start": { + "$date": "2021-12-31T01:44:42.000Z" + }, + "end": { + "$date": "2021-12-31T05:06:08.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "4e04234a-ac57-4fba-a490-5dcd61dcfe25", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2021-12-31T06:05:36.000Z" + }, + "end": { + "$date": "2021-12-31T06:39:13.000Z" + }, + "events": [ + { + "uuid": "888f5e11-caac-46b8-acbe-0b23d659bfcb", + "start": { + "$date": "2021-12-31T06:05:36.000Z" + }, + "end": { + "$date": "2021-12-31T06:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c29a0e30-62be-4471-ad40-959f89f4091f", + "uuid": "9713a501-26f4-471f-be35-84043208bccc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-31T06:43:02.000Z" + }, + "end": { + "$date": "2021-12-31T06:44:17.000Z" + }, + "events": [ + { + "uuid": "a688f707-6374-4f61-8bd9-a753b4e25ff3", + "start": { + "$date": "2021-12-31T06:43:02.000Z" + }, + "end": { + "$date": "2021-12-31T06:44:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "09c742fb-d409-4c49-a291-6634ef15ca14", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2021-12-31T06:44:22.000Z" + }, + "end": { + "$date": "2021-12-31T07:27:48.000Z" + }, + "events": [ + { + "uuid": "319d3a76-bb58-4bb4-b45c-724288c8a23e", + "start": { + "$date": "2021-12-31T06:44:22.000Z" + }, + "end": { + "$date": "2021-12-31T07:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "5dc96788-98d6-4580-855c-81a7a7a32720", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-31T07:54:55.000Z" + }, + "end": { + "$date": "2021-12-31T09:12:53.000Z" + }, + "events": [ + { + "uuid": "cc3c4262-a416-4ac3-a23f-58bbfa8cf9bd", + "start": { + "$date": "2021-12-31T07:54:55.000Z" + }, + "end": { + "$date": "2021-12-31T09:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a0e9caab-243b-4c61-808e-2174d269405d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-31T12:54:38.000Z" + }, + "end": { + "$date": "2021-12-31T14:27:54.000Z" + }, + "events": [ + { + "uuid": "63b1ed37-aeed-479a-a3f2-1ace1ebb924a", + "start": { + "$date": "2021-12-31T12:54:38.000Z" + }, + "end": { + "$date": "2021-12-31T14:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b758e8c1-ec9a-4942-8ab0-e7a7cffbc1e0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-31T14:55:35.000Z" + }, + "end": { + "$date": "2021-12-31T17:39:43.000Z" + }, + "events": [ + { + "uuid": "ff4ecc58-8eeb-486d-b325-9a4e9e1b6e4a", + "start": { + "$date": "2021-12-31T14:55:35.000Z" + }, + "end": { + "$date": "2021-12-31T16:43:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f29e3729-cb5f-433b-834d-5654ded26ae0", + "start": { + "$date": "2021-12-31T16:43:35.000Z" + }, + "end": { + "$date": "2021-12-31T17:15:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a3938fc0-01da-4b64-8bdc-81e9ac4a35c6", + "start": { + "$date": "2021-12-31T17:15:35.000Z" + }, + "end": { + "$date": "2021-12-31T17:39:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9107043f-a3a1-42c0-83de-03b5a71f8d44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-31T20:11:19.000Z" + }, + "end": { + "$date": "2021-12-31T20:36:38.000Z" + }, + "events": [ + { + "uuid": "fce592b4-ce26-439d-8001-14e68eb2e70a", + "start": { + "$date": "2021-12-31T20:11:19.000Z" + }, + "end": { + "$date": "2021-12-31T20:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "88c2acfd-0897-4155-8d85-ccc26f9dad36", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-01T08:36:12.000Z" + }, + "end": { + "$date": "2022-01-01T08:55:43.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-01T08:36:12.000Z" + }, + "end": { + "$date": "2022-01-01T08:55:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40ae1638-666a-437a-bd71-9ed9312b2d91", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2021-12-31T16:52:56.000Z" + }, + "end": { + "$date": "2021-12-31T17:23:29.000Z" + }, + "events": [ + { + "uuid": "e6985ed5-2b7c-485b-bd1a-fd6b0b228048", + "start": { + "$date": "2021-12-31T16:52:56.000Z" + }, + "end": { + "$date": "2021-12-31T17:23:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b3cd35b0-35fe-4a2b-bb0b-1f0ec27e14c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-31T20:36:43.000Z" + }, + "end": { + "$date": "2021-12-31T21:43:25.000Z" + }, + "events": [ + { + "uuid": "a45a2e61-e1d4-45bc-a7d3-04b10461fd37", + "start": { + "$date": "2021-12-31T20:36:43.000Z" + }, + "end": { + "$date": "2021-12-31T21:43:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "7ad46f92-fdb2-407c-888c-1accfd66a296", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2021-12-31T21:19:21.000Z" + }, + "end": { + "$date": "2022-01-01T00:59:12.000Z" + }, + "events": [ + { + "uuid": "fbb6fd71-b15b-466d-9465-fb2d113756ff", + "start": { + "$date": "2021-12-31T21:19:21.000Z" + }, + "end": { + "$date": "2022-01-01T00:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "47745692-0536-42fe-a016-5393b8ccacb6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2021-12-31T21:27:42.000Z" + }, + "end": { + "$date": "2021-12-31T21:32:16.000Z" + }, + "events": [ + { + "uuid": "fbbdf581-7bbd-493a-bee6-67f9d5348544", + "start": { + "$date": "2021-12-31T21:27:42.000Z" + }, + "end": { + "$date": "2021-12-31T21:32:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "581d00b5-f6f7-4735-a557-2be60a6cf412", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2021-12-31T23:34:16.000Z" + }, + "end": { + "$date": "2022-01-01T00:39:04.000Z" + }, + "events": [ + { + "uuid": "b2d62479-e840-4c66-9319-9797819b70e9", + "start": { + "$date": "2021-12-31T23:34:16.000Z" + }, + "end": { + "$date": "2022-01-01T00:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5058c880-c603-41aa-836c-8300b2a0b2c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-01T00:03:26.000Z" + }, + "end": { + "$date": "2022-01-01T00:42:22.000Z" + }, + "events": [ + { + "uuid": "2d7fcc43-b0b2-440d-b235-31d6f49c10ce", + "start": { + "$date": "2022-01-01T00:03:26.000Z" + }, + "end": { + "$date": "2022-01-01T00:42:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a284654a-de16-4620-855a-fc81f91da42e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-01T00:04:18.000Z" + }, + "end": { + "$date": "2022-01-01T00:42:20.000Z" + }, + "events": [ + { + "uuid": "933305a1-c503-4e3e-9e22-b1d4aea6f794", + "start": { + "$date": "2022-01-01T00:04:18.000Z" + }, + "end": { + "$date": "2022-01-01T00:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c8adbde7-2e53-498b-9e8a-ddbe00c790f8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-01T00:07:49.000Z" + }, + "end": { + "$date": "2022-01-01T00:42:04.000Z" + }, + "events": [ + { + "uuid": "0181c061-3649-4785-a6bb-f4baf0007e6b", + "start": { + "$date": "2022-01-01T00:07:49.000Z" + }, + "end": { + "$date": "2022-01-01T00:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "ed569e14-6351-4568-9882-c8114ed2fbe2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T00:52:54.000Z" + }, + "end": { + "$date": "2022-01-01T01:09:45.000Z" + }, + "events": [ + { + "uuid": "27c0fa43-cc48-4b16-827f-2f6d914c797e", + "start": { + "$date": "2022-01-01T00:52:54.000Z" + }, + "end": { + "$date": "2022-01-01T01:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "72d92bab-525b-4db5-807a-3706d3c1e52c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-01T00:55:21.000Z" + }, + "end": { + "$date": "2022-01-01T01:06:08.000Z" + }, + "events": [ + { + "uuid": "825415d0-78b4-48e1-8ef2-b22ad6e2b3b0", + "start": { + "$date": "2022-01-01T00:55:21.000Z" + }, + "end": { + "$date": "2022-01-01T01:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "22cd26c9-7f51-4043-ba0b-420cf933599b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-01T01:06:13.000Z" + }, + "end": { + "$date": "2022-01-01T01:51:35.000Z" + }, + "events": [ + { + "uuid": "2286509a-6506-41e6-8a1a-adea7afc3acc", + "start": { + "$date": "2022-01-01T01:06:13.000Z" + }, + "end": { + "$date": "2022-01-01T01:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "80de868a-7047-4635-9b09-165311360ca3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2021-12-31T22:19:22.000Z" + }, + "end": { + "$date": "2022-01-01T04:07:59.000Z" + }, + "events": [ + { + "uuid": "675b6240-6f12-481e-8679-dde61b36a1d7", + "start": { + "$date": "2021-12-31T22:19:22.000Z" + }, + "end": { + "$date": "2022-01-01T04:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "486cb62b-7b23-47f2-b54f-ab1a36eb391d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-01T01:55:17.000Z" + }, + "end": { + "$date": "2022-01-01T07:37:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-01T01:55:17.000Z" + }, + "end": { + "$date": "2022-01-01T07:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c4c429a9-e4d0-486e-a5b6-a97d1725df73", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-01T03:02:01.000Z" + }, + "end": { + "$date": "2022-01-01T03:28:37.000Z" + }, + "events": [ + { + "uuid": "a6d5d64d-eab7-471c-a28d-1e4bae971eb3", + "start": { + "$date": "2022-01-01T03:02:01.000Z" + }, + "end": { + "$date": "2022-01-01T03:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "b3e20d39-709d-4bad-b27f-4719ebaeb382", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T03:47:45.000Z" + }, + "end": { + "$date": "2022-01-01T05:01:33.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-01T03:47:45.000Z" + }, + "end": { + "$date": "2022-01-01T05:01:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7ceb4518-1942-4130-8292-101200d76332", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-01T04:08:19.000Z" + }, + "end": { + "$date": "2022-01-01T04:13:15.000Z" + }, + "events": [ + { + "uuid": "86e12648-e9df-4637-a484-c99aa304cd95", + "start": { + "$date": "2022-01-01T04:08:19.000Z" + }, + "end": { + "$date": "2022-01-01T04:13:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9ff4a933-d791-4be6-a5e0-7e150c47cf60", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-01T04:13:25.000Z" + }, + "end": { + "$date": "2022-01-01T10:05:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-01T04:13:25.000Z" + }, + "end": { + "$date": "2022-01-01T10:05:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "90d2f766-b091-47c7-b169-3deecd8f6961", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-01T04:47:29.000Z" + }, + "end": { + "$date": "2022-01-01T06:05:39.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-01T04:47:29.000Z" + }, + "end": { + "$date": "2022-01-01T06:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "2a87cb89-c599-4b2a-9db8-ac3d86de81f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-01T08:03:05.000Z" + }, + "end": { + "$date": "2022-01-01T08:53:55.000Z" + }, + "events": [ + { + "uuid": "cc0884a0-9cc2-48d6-8cb5-4b666afd0fac", + "start": { + "$date": "2022-01-01T08:03:05.000Z" + }, + "end": { + "$date": "2022-01-01T08:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e9c0f255-9e6f-4e84-ae31-0c0fc39364e2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-01T08:21:16.000Z" + }, + "end": { + "$date": "2022-01-01T08:26:19.000Z" + }, + "events": [ + { + "uuid": "a7c7e5a5-a99d-400e-b71a-09285a75365e", + "start": { + "$date": "2022-01-01T08:21:16.000Z" + }, + "end": { + "$date": "2022-01-01T08:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "631cbf0e-4c71-4c3d-9c4c-4866fbd76774", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T15:47:44.000Z" + }, + "end": { + "$date": "2022-01-01T15:51:49.000Z" + }, + "events": [ + { + "uuid": "b3160d15-eb86-42b9-9690-422aaaab7c4a", + "start": { + "$date": "2022-01-01T15:47:44.000Z" + }, + "end": { + "$date": "2022-01-01T15:51:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "169e26dd-06a6-40f0-a287-731afb281873", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T15:53:50.000Z" + }, + "end": { + "$date": "2022-01-01T15:56:55.000Z" + }, + "events": [ + { + "uuid": "c771384b-6915-4911-9999-b6663e9d88c9", + "start": { + "$date": "2022-01-01T15:53:50.000Z" + }, + "end": { + "$date": "2022-01-01T15:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "8e8f331a-2670-41f5-af20-628ad1fa4567", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T15:58:41.000Z" + }, + "end": { + "$date": "2022-01-01T16:01:05.000Z" + }, + "events": [ + { + "uuid": "9f3bdc0a-58b7-4807-9e62-424ec0739e60", + "start": { + "$date": "2022-01-01T15:58:41.000Z" + }, + "end": { + "$date": "2022-01-01T16:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "1659fd50-7057-4df0-981e-5a2bec34c6fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-01T16:25:38.000Z" + }, + "end": { + "$date": "2022-01-01T17:56:29.000Z" + }, + "events": [ + { + "uuid": "0de1c1a0-26d4-4853-b333-b032b90a9f10", + "start": { + "$date": "2022-01-01T16:25:38.000Z" + }, + "end": { + "$date": "2022-01-01T17:56:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "edae09ba-8784-4c1a-a452-081bac74adb0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-01T16:46:26.000Z" + }, + "end": { + "$date": "2022-01-01T18:50:37.000Z" + }, + "events": [ + { + "uuid": "d916f8f1-135a-4262-96eb-b8ed7088df26", + "start": { + "$date": "2022-01-01T16:46:26.000Z" + }, + "end": { + "$date": "2022-01-01T18:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e049444a-1b07-498c-a59e-0e47dd6c92ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-01T17:16:36.000Z" + }, + "end": { + "$date": "2022-01-01T18:34:46.000Z" + }, + "events": [ + { + "uuid": "48dfb8fe-00ec-4f8a-ae85-bc0e1fe5cae7", + "start": { + "$date": "2022-01-01T17:16:36.000Z" + }, + "end": { + "$date": "2022-01-01T18:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "126a8ff4-617a-4c90-87eb-a5108023358a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-01T17:18:11.000Z" + }, + "end": { + "$date": "2022-01-01T18:31:05.000Z" + }, + "events": [ + { + "uuid": "ebb0e4fc-ffab-45ce-906f-b4336374afe0", + "start": { + "$date": "2022-01-01T17:18:11.000Z" + }, + "end": { + "$date": "2022-01-01T18:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "66132d92-6823-415b-8351-430a848e178d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-01T17:19:52.000Z" + }, + "end": { + "$date": "2022-01-01T18:36:34.000Z" + }, + "events": [ + { + "uuid": "3ffcb075-56d7-492f-a3ed-0eefbacb22a6", + "start": { + "$date": "2022-01-01T17:19:52.000Z" + }, + "end": { + "$date": "2022-01-01T18:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e3278114-ac99-4a6c-bfa1-29b76ae06e7d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-01T17:32:49.000Z" + }, + "end": { + "$date": "2022-01-01T18:32:28.000Z" + }, + "events": [ + { + "uuid": "da24dc81-16a7-4398-8808-75cd4ceaabda", + "start": { + "$date": "2022-01-01T17:32:49.000Z" + }, + "end": { + "$date": "2022-01-01T18:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ace7cfd-2ac7-467b-ab15-a55ef5767f85", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-01T17:56:43.000Z" + }, + "end": { + "$date": "2022-01-01T18:53:30.000Z" + }, + "events": [ + { + "uuid": "6b71f5fa-b86e-49a0-b376-7ef4ed2ee743", + "start": { + "$date": "2022-01-01T17:56:43.000Z" + }, + "end": { + "$date": "2022-01-01T18:53:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "30ad197a-44d6-425a-bd0d-5a21864f63a0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-01T18:52:11.000Z" + }, + "end": { + "$date": "2022-01-02T04:10:31.000Z" + }, + "events": [ + { + "uuid": "fa7eb1af-b4bc-4c06-8144-6b2aa8f824d2", + "start": { + "$date": "2022-01-01T18:52:11.000Z" + }, + "end": { + "$date": "2022-01-02T00:51:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5b8ea64-7ff5-451b-b632-8eb7f0fdbd7a", + "start": { + "$date": "2022-01-02T00:51:11.000Z" + }, + "end": { + "$date": "2022-01-02T00:55:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6894b788-a1d3-4eb6-a5fe-3f4915827529", + "start": { + "$date": "2022-01-02T00:55:11.000Z" + }, + "end": { + "$date": "2022-01-02T01:41:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "209076ab-18ee-4068-80b0-c5c2245e5669", + "start": { + "$date": "2022-01-02T01:41:11.000Z" + }, + "end": { + "$date": "2022-01-02T01:42:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36fb5550-9121-4e39-937c-b2a801296aa4", + "start": { + "$date": "2022-01-02T01:42:11.000Z" + }, + "end": { + "$date": "2022-01-02T01:52:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b3450273-6a79-42ae-8867-02abebdc4ab6", + "start": { + "$date": "2022-01-02T01:52:11.000Z" + }, + "end": { + "$date": "2022-01-02T01:54:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "38367245-f349-4418-9dcd-b99bfb6604ab", + "start": { + "$date": "2022-01-02T01:54:11.000Z" + }, + "end": { + "$date": "2022-01-02T04:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "73562f28-2fa8-4462-a2c6-6a1489944013", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-01T18:58:15.000Z" + }, + "end": { + "$date": "2022-01-01T19:15:11.000Z" + }, + "events": [ + { + "uuid": "d18b4528-9ada-4d97-bb8b-c94ac6e8a5c2", + "start": { + "$date": "2022-01-01T18:58:15.000Z" + }, + "end": { + "$date": "2022-01-01T19:15:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "fcc39dd4-d6f8-4b5c-ade0-4944c2570651", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-01T19:20:31.000Z" + }, + "end": { + "$date": "2022-01-01T21:58:13.000Z" + }, + "events": [ + { + "uuid": "1136072b-68f7-4a0a-bd73-cbdab02e98e8", + "start": { + "$date": "2022-01-01T19:20:31.000Z" + }, + "end": { + "$date": "2022-01-01T21:10:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7bd8df3-e1bb-4a3e-ab75-36e051628953", + "start": { + "$date": "2022-01-01T21:10:31.000Z" + }, + "end": { + "$date": "2022-01-01T21:21:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "021e788a-800b-4fdb-b9b7-8b9d81a71560", + "start": { + "$date": "2022-01-01T21:21:31.000Z" + }, + "end": { + "$date": "2022-01-01T21:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "bcdfd757-c541-4d7c-89a5-ea558000213b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-01T19:22:33.000Z" + }, + "end": { + "$date": "2022-01-01T21:58:36.000Z" + }, + "events": [ + { + "uuid": "b12b140d-7283-4196-8fc9-2a8cd236c6aa", + "start": { + "$date": "2022-01-01T19:22:33.000Z" + }, + "end": { + "$date": "2022-01-01T21:12:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50bd4ebe-a4e7-4d0d-83e4-de193b4086e7", + "start": { + "$date": "2022-01-01T21:12:33.000Z" + }, + "end": { + "$date": "2022-01-01T21:18:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e988171-4159-43fb-a12f-23c4881ae2a1", + "start": { + "$date": "2022-01-01T21:18:33.000Z" + }, + "end": { + "$date": "2022-01-01T21:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "973f23fd-3de3-4a07-8c24-51bb3337c0a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-01T23:27:34.000Z" + }, + "end": { + "$date": "2022-01-01T23:27:34.000Z" + }, + "events": [ + { + "uuid": "58b14aff-2c08-4a0b-bf85-9b1755f2683a", + "start": { + "$date": "2022-01-01T23:27:34.000Z" + }, + "end": { + "$date": "2022-01-01T23:27:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "09c61626-d5d2-45bf-a5eb-ae76a4fa73a2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T22:10:57.000Z" + }, + "end": { + "$date": "2022-01-01T22:30:45.000Z" + }, + "events": [ + { + "uuid": "398db518-44f5-402b-ae6e-787dee38a306", + "start": { + "$date": "2022-01-01T22:10:57.000Z" + }, + "end": { + "$date": "2022-01-01T22:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "cfebd6f8-50c6-4a02-a93b-cbc689de70f6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-01T22:55:38.000Z" + }, + "end": { + "$date": "2022-01-01T23:05:05.000Z" + }, + "events": [ + { + "uuid": "ff606250-68a8-4f6c-9eb5-e79a0be176f1", + "start": { + "$date": "2022-01-01T22:55:38.000Z" + }, + "end": { + "$date": "2022-01-01T23:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c2ec8b2-5467-4a96-9db8-c3bba9944ee8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T01:05:16.000Z" + }, + "end": { + "$date": "2022-01-02T05:06:03.000Z" + }, + "events": [ + { + "uuid": "dd6c44d9-a05c-46e6-9c6f-934e9db0b64e", + "start": { + "$date": "2022-01-02T01:05:16.000Z" + }, + "end": { + "$date": "2022-01-02T02:22:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d532dddf-ebfd-4b4f-95ff-6adc4fe942bb", + "start": { + "$date": "2022-01-02T02:22:16.000Z" + }, + "end": { + "$date": "2022-01-02T02:24:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "441d8bfa-3597-4289-85a4-92d5a82f7578", + "start": { + "$date": "2022-01-02T02:24:16.000Z" + }, + "end": { + "$date": "2022-01-02T02:43:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4992507b-cb94-4250-96a2-03744f3cdf2d", + "start": { + "$date": "2022-01-02T02:43:16.000Z" + }, + "end": { + "$date": "2022-01-02T02:51:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8c70048-5ee2-4c6b-a5fb-b5a1e79d406a", + "start": { + "$date": "2022-01-02T02:51:16.000Z" + }, + "end": { + "$date": "2022-01-02T03:27:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c12e0be-7caf-46c5-b351-22b060bc1e99", + "start": { + "$date": "2022-01-02T03:27:16.000Z" + }, + "end": { + "$date": "2022-01-02T03:29:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fcb3fc91-1fcf-4d1a-b9e3-5e1262c815d1", + "start": { + "$date": "2022-01-02T03:29:16.000Z" + }, + "end": { + "$date": "2022-01-02T03:39:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5753b371-54b1-43eb-98a9-5d01b3b949fa", + "start": { + "$date": "2022-01-02T03:39:16.000Z" + }, + "end": { + "$date": "2022-01-02T04:30:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "53345993-9ab8-4ab7-8191-0a27b5b0689c", + "start": { + "$date": "2022-01-02T04:30:16.000Z" + }, + "end": { + "$date": "2022-01-02T05:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "91e6351e-9423-45c1-918b-7a68636fcfa7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-01T19:12:58.000Z" + }, + "end": { + "$date": "2022-01-02T01:46:18.000Z" + }, + "events": [ + { + "uuid": "c3cf0fbd-8850-40b1-b4db-00f640a05adc", + "start": { + "$date": "2022-01-01T19:12:58.000Z" + }, + "end": { + "$date": "2022-01-02T01:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "236fdcf9-ef9b-4f37-a360-31d8fa5ec1c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T01:18:19.000Z" + }, + "end": { + "$date": "2022-01-02T01:20:20.000Z" + }, + "events": [ + { + "uuid": "abd53b66-5db1-4725-b4e3-5d1ec602062d", + "start": { + "$date": "2022-01-02T01:18:19.000Z" + }, + "end": { + "$date": "2022-01-02T01:20:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d99a4ed-9a3f-439e-8103-4e4084968ecf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T01:31:26.000Z" + }, + "end": { + "$date": "2022-01-02T02:00:45.000Z" + }, + "events": [ + { + "uuid": "391a603b-e289-4c42-9b8f-1aa8f9d752b1", + "start": { + "$date": "2022-01-02T01:31:26.000Z" + }, + "end": { + "$date": "2022-01-02T02:00:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ca2c6be-7bec-434a-8970-a02b9a79cb07", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-02T01:50:39.000Z" + }, + "end": { + "$date": "2022-01-02T02:07:01.000Z" + }, + "events": [ + { + "uuid": "60e67aff-30a5-4a9c-b2d9-d8c5d4bd6ed9", + "start": { + "$date": "2022-01-02T01:50:39.000Z" + }, + "end": { + "$date": "2022-01-02T02:07:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0f71fd1-6736-421b-aa44-5f0367772054", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T02:01:22.000Z" + }, + "end": { + "$date": "2022-01-02T03:59:33.000Z" + }, + "events": [ + { + "uuid": "97afd86d-e22e-4373-be02-f166dcde9780", + "start": { + "$date": "2022-01-02T02:01:22.000Z" + }, + "end": { + "$date": "2022-01-02T03:59:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "861fffed-ce2d-436e-ab43-c9685ccb5b3f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-02T02:09:10.000Z" + }, + "end": { + "$date": "2022-01-02T07:48:21.000Z" + }, + "events": [ + { + "uuid": "20109893-b8e0-46d3-8a7f-8721ec557141", + "start": { + "$date": "2022-01-02T02:09:10.000Z" + }, + "end": { + "$date": "2022-01-02T07:48:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "12db9d10-6c2c-420f-8d71-ff7a5721e8c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T02:20:35.000Z" + }, + "end": { + "$date": "2022-01-02T03:26:41.000Z" + }, + "events": [ + { + "uuid": "2bf2f7fb-8f21-40e9-8e7d-c3703cdb8b5b", + "start": { + "$date": "2022-01-02T02:20:35.000Z" + }, + "end": { + "$date": "2022-01-02T03:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c04e4323-f84f-4267-9c59-e33132ef3455", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-02T02:33:23.000Z" + }, + "end": { + "$date": "2022-01-02T02:49:55.000Z" + }, + "events": [ + { + "uuid": "a95ac9f7-b4f9-4ab6-be7b-ef8c481115aa", + "start": { + "$date": "2022-01-02T02:33:23.000Z" + }, + "end": { + "$date": "2022-01-02T02:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "c0995288-9c28-408e-bb92-40d2e8bbbd2a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-02T02:43:46.000Z" + }, + "end": { + "$date": "2022-01-02T05:27:22.000Z" + }, + "events": [ + { + "uuid": "73640d84-f25f-44a6-92dc-e7fd70d6d064", + "start": { + "$date": "2022-01-02T02:43:46.000Z" + }, + "end": { + "$date": "2022-01-02T04:36:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6fc59a68-6774-4551-af71-6d37722b6913", + "start": { + "$date": "2022-01-02T04:36:46.000Z" + }, + "end": { + "$date": "2022-01-02T04:43:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee36627b-984c-4d2f-b898-2233cd350f95", + "start": { + "$date": "2022-01-02T04:43:46.000Z" + }, + "end": { + "$date": "2022-01-02T05:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cdb85538-5bfd-41ae-8d71-2f5b672972d0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T03:26:56.000Z" + }, + "end": { + "$date": "2022-01-02T04:28:30.000Z" + }, + "events": [ + { + "uuid": "672388d6-e086-4d15-803b-fc5fcacdea4b", + "start": { + "$date": "2022-01-02T03:26:56.000Z" + }, + "end": { + "$date": "2022-01-02T03:37:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d6eccbc8-0934-4d1c-a5d2-038245ff77c1", + "start": { + "$date": "2022-01-02T03:37:56.000Z" + }, + "end": { + "$date": "2022-01-02T03:41:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0ebb6445-19a7-4d5f-a961-281411a5bf14", + "start": { + "$date": "2022-01-02T03:41:56.000Z" + }, + "end": { + "$date": "2022-01-02T04:28:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "f271deb8-72ce-40a5-8128-44f1425a3e68", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T04:44:04.000Z" + }, + "end": { + "$date": "2022-01-02T05:14:07.000Z" + }, + "events": [ + { + "uuid": "d1604e64-eede-4113-bf32-a2efac0d3a68", + "start": { + "$date": "2022-01-02T04:44:04.000Z" + }, + "end": { + "$date": "2022-01-02T05:14:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "e2120b9f-dbab-45d6-9e89-d14fb7ea4894", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-02T04:33:34.000Z" + }, + "end": { + "$date": "2022-01-02T04:33:39.000Z" + }, + "events": [ + { + "uuid": "b2cbc842-35f8-452b-89b2-71af0ca88e7b", + "start": { + "$date": "2022-01-02T04:33:34.000Z" + }, + "end": { + "$date": "2022-01-02T04:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "69ea1f22-5ebb-4b65-9dc5-4791f0f877c7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-02T04:29:14.000Z" + }, + "end": { + "$date": "2022-01-02T04:37:50.000Z" + }, + "events": [ + { + "uuid": "89759010-f519-4ae2-88ab-d49bfc996198", + "start": { + "$date": "2022-01-02T04:29:14.000Z" + }, + "end": { + "$date": "2022-01-02T04:37:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b34b8c81-1be7-424d-b369-66bbe027849c", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T04:30:46.000Z" + }, + "end": { + "$date": "2022-01-02T05:15:46.000Z" + }, + "events": [ + { + "uuid": "24e1e5a0-4dc0-48d8-bf37-a82c3f7be3c1", + "start": { + "$date": "2022-01-02T04:30:46.000Z" + }, + "end": { + "$date": "2022-01-02T05:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "d268494a-745b-4e73-a88b-98bdef5821ea", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-02T04:32:15.000Z" + }, + "end": { + "$date": "2022-01-02T06:22:10.000Z" + }, + "events": [ + { + "uuid": "21daba11-3e30-4f82-9fbc-6607c0f17170", + "start": { + "$date": "2022-01-02T04:32:15.000Z" + }, + "end": { + "$date": "2022-01-02T06:22:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "75762517-7327-4384-93dc-c18c9941659b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T04:33:05.000Z" + }, + "end": { + "$date": "2022-01-02T05:05:53.000Z" + }, + "events": [ + { + "uuid": "a509e61b-ca14-4251-8324-acba124d1135", + "start": { + "$date": "2022-01-02T04:33:05.000Z" + }, + "end": { + "$date": "2022-01-02T05:05:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "86dbf832-b4d6-41b5-a333-54a35a55fe52", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-02T04:33:53.000Z" + }, + "end": { + "$date": "2022-01-02T06:24:25.000Z" + }, + "events": [ + { + "uuid": "df9842be-5adb-4c28-b5e3-0b5a878bcf49", + "start": { + "$date": "2022-01-02T04:33:53.000Z" + }, + "end": { + "$date": "2022-01-02T06:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "42adc0c5-221f-4804-9e9c-ef5ebd25f16c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-02T04:37:51.000Z" + }, + "end": { + "$date": "2022-01-02T06:23:59.000Z" + }, + "events": [ + { + "uuid": "4680929b-aba8-41ac-b34e-fede79ad94eb", + "start": { + "$date": "2022-01-02T04:37:51.000Z" + }, + "end": { + "$date": "2022-01-02T06:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "718c1ce9-294a-4646-b702-0b9377983ba3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-02T04:40:59.000Z" + }, + "end": { + "$date": "2022-01-02T06:18:01.000Z" + }, + "events": [ + { + "uuid": "30fe2596-573a-4485-b92e-c1aeb8df3618", + "start": { + "$date": "2022-01-02T04:40:59.000Z" + }, + "end": { + "$date": "2022-01-02T06:18:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f81d5d14-0cf2-423e-859b-6b833d292257", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-02T04:47:18.000Z" + }, + "end": { + "$date": "2022-01-02T05:03:34.000Z" + }, + "events": [ + { + "uuid": "cdd69328-57b4-4f53-875b-dd8916794591", + "start": { + "$date": "2022-01-02T04:47:18.000Z" + }, + "end": { + "$date": "2022-01-02T05:03:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "373fc648-2928-47da-8ba6-ca77ac7c9dc3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-02T05:03:44.000Z" + }, + "end": { + "$date": "2022-01-02T06:21:13.000Z" + }, + "events": [ + { + "uuid": "4579f717-06f5-4b50-be28-7e358873f2d3", + "start": { + "$date": "2022-01-02T05:03:44.000Z" + }, + "end": { + "$date": "2022-01-02T06:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "12fc05b7-e840-4ad9-8548-8b7cc23cd794", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-02T05:06:01.000Z" + }, + "end": { + "$date": "2022-01-02T06:23:19.000Z" + }, + "events": [ + { + "uuid": "51963e9b-d2d5-42b8-86b9-a1a308a1683a", + "start": { + "$date": "2022-01-02T05:06:01.000Z" + }, + "end": { + "$date": "2022-01-02T06:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "d1b820f5-c1bb-4483-9562-be412dc0cfe0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T05:06:12.000Z" + }, + "end": { + "$date": "2022-01-02T06:25:00.000Z" + }, + "events": [ + { + "uuid": "c2d0605a-4f50-49b3-918c-4341d9fd0fcf", + "start": { + "$date": "2022-01-02T05:06:12.000Z" + }, + "end": { + "$date": "2022-01-02T06:25:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "e3a91e1c-3899-445f-b470-ac51d13f4993", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T05:06:18.000Z" + }, + "end": { + "$date": "2022-01-02T06:29:21.000Z" + }, + "events": [ + { + "uuid": "0a11fe61-535f-4492-bbd4-40f187e13433", + "start": { + "$date": "2022-01-02T05:06:18.000Z" + }, + "end": { + "$date": "2022-01-02T06:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "461f5438-4435-48c4-af04-91a3dad11abb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-02T05:08:35.000Z" + }, + "end": { + "$date": "2022-01-02T05:11:25.000Z" + }, + "events": [ + { + "uuid": "f2edea60-2292-4002-a1bf-940d1869e564", + "start": { + "$date": "2022-01-02T05:08:35.000Z" + }, + "end": { + "$date": "2022-01-02T05:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "ac8c6f6b-a8f7-4833-9cf4-9b0dca2860c2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T06:21:16.000Z" + }, + "end": { + "$date": "2022-01-02T06:21:57.000Z" + }, + "events": [ + { + "uuid": "fb0f3c97-3137-4c43-afd0-602978648b42", + "start": { + "$date": "2022-01-02T06:21:16.000Z" + }, + "end": { + "$date": "2022-01-02T06:21:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "29a7e7fa-2b70-45de-a5b1-2be581273df5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-02T05:15:39.000Z" + }, + "end": { + "$date": "2022-01-02T06:23:18.000Z" + }, + "events": [ + { + "uuid": "8e7b26b9-ce1e-458b-a396-6c6ff1adeb7e", + "start": { + "$date": "2022-01-02T05:15:39.000Z" + }, + "end": { + "$date": "2022-01-02T06:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fee0f53-4ae6-46d0-a407-c3dff4bc4251", + "uuid": "2aa7cf7e-a945-4fae-b9f4-382b188a14f1", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T05:20:03.000Z" + }, + "end": { + "$date": "2022-01-02T07:09:25.000Z" + }, + "events": [ + { + "uuid": "89b76bab-1ab7-4725-abce-aded12b2b81d", + "start": { + "$date": "2022-01-02T05:20:03.000Z" + }, + "end": { + "$date": "2022-01-02T07:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "3fb74b8e-004f-42ad-8c39-7c28416ca0b8", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-02T05:34:23.000Z" + }, + "end": { + "$date": "2022-01-02T05:38:44.000Z" + }, + "events": [ + { + "uuid": "d8033a0c-3419-4542-83ba-8cd481bcca4c", + "start": { + "$date": "2022-01-02T05:34:23.000Z" + }, + "end": { + "$date": "2022-01-02T05:38:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "384784f3-77e5-4cce-838d-74b3605784d4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-02T06:18:15.000Z" + }, + "end": { + "$date": "2022-01-02T06:22:26.000Z" + }, + "events": [ + { + "uuid": "c56b8293-cbeb-430f-8816-b39c5a6fbdd7", + "start": { + "$date": "2022-01-02T06:18:15.000Z" + }, + "end": { + "$date": "2022-01-02T06:22:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "a81b941c-d817-4a8c-959a-b550d88c986e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T06:26:56.000Z" + }, + "end": { + "$date": "2022-01-02T08:18:12.000Z" + }, + "events": [ + { + "uuid": "b9bb7db3-b706-4aa8-8d74-a00c7f8909cb", + "start": { + "$date": "2022-01-02T06:26:56.000Z" + }, + "end": { + "$date": "2022-01-02T08:18:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "eb3e8365-e5be-4bed-9104-15f507a6c9a7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T06:37:31.000Z" + }, + "end": { + "$date": "2022-01-02T07:56:57.000Z" + }, + "events": [ + { + "uuid": "e30d966e-75ff-4e83-ab83-2c8f53b98c7d", + "start": { + "$date": "2022-01-02T06:37:31.000Z" + }, + "end": { + "$date": "2022-01-02T07:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "fa4aae2b-e697-4ea3-98d8-8d89476ac8c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T06:41:26.000Z" + }, + "end": { + "$date": "2022-01-02T06:50:27.000Z" + }, + "events": [ + { + "uuid": "17eeb9f9-83fe-47df-bc21-458f73f93c6f", + "start": { + "$date": "2022-01-02T06:41:26.000Z" + }, + "end": { + "$date": "2022-01-02T06:50:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "eb7328e9-6272-4bb0-a313-5f07e8b9721d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-02T06:47:50.000Z" + }, + "end": { + "$date": "2022-01-02T06:50:16.000Z" + }, + "events": [ + { + "uuid": "21d08f26-cc74-4704-b04b-807002ecf78b", + "start": { + "$date": "2022-01-02T06:47:50.000Z" + }, + "end": { + "$date": "2022-01-02T06:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "9b686bae-57ee-449e-b047-8ba1851a24d9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T08:18:26.000Z" + }, + "end": { + "$date": "2022-01-02T08:19:42.000Z" + }, + "events": [ + { + "uuid": "5f8ad935-1899-42b2-9dba-3b0413551a91", + "start": { + "$date": "2022-01-02T08:18:26.000Z" + }, + "end": { + "$date": "2022-01-02T08:19:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "78609077-d0b6-47f6-9d5d-18b77b0d64d2", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T08:19:27.000Z" + }, + "end": { + "$date": "2022-01-02T08:29:08.000Z" + }, + "events": [ + { + "uuid": "96de2977-2b1e-4df4-98b0-e51da11c1cc9", + "start": { + "$date": "2022-01-02T08:19:27.000Z" + }, + "end": { + "$date": "2022-01-02T08:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "c5be43e5-3e57-41a7-9949-b29e1f8e21a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T08:19:51.000Z" + }, + "end": { + "$date": "2022-01-02T08:21:37.000Z" + }, + "events": [ + { + "uuid": "d0f23142-424e-421b-a673-15c9298a1c90", + "start": { + "$date": "2022-01-02T08:19:51.000Z" + }, + "end": { + "$date": "2022-01-02T08:21:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "ff07e5e2-8a36-493b-9454-bda9888d2495", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T08:31:17.000Z" + }, + "end": { + "$date": "2022-01-02T08:41:23.000Z" + }, + "events": [ + { + "uuid": "8c0bb69c-cb8e-4aef-97a3-0741218f736b", + "start": { + "$date": "2022-01-02T08:31:17.000Z" + }, + "end": { + "$date": "2022-01-02T08:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "66767592-59e2-4bc3-9f20-4c8765a498e4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-02T15:15:41.000Z" + }, + "end": { + "$date": "2022-01-02T16:22:14.000Z" + }, + "events": [ + { + "uuid": "0aa188f7-bea1-4dda-b26d-6b7c158c4ccf", + "start": { + "$date": "2022-01-02T15:15:41.000Z" + }, + "end": { + "$date": "2022-01-02T16:22:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "649817e7-6f8b-4460-a96e-acd26c22dc99", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T15:46:15.000Z" + }, + "end": { + "$date": "2022-01-02T16:12:04.000Z" + }, + "events": [ + { + "uuid": "aa357b60-5caf-46ed-9ecc-fb3365bffb7d", + "start": { + "$date": "2022-01-02T15:46:15.000Z" + }, + "end": { + "$date": "2022-01-02T16:12:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "128d126c-11a9-4daa-b618-d68d8dae80be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-02T16:15:24.000Z" + }, + "end": { + "$date": "2022-01-02T18:50:21.000Z" + }, + "events": [ + { + "uuid": "150936f8-dc74-4b06-9066-7a8da4406783", + "start": { + "$date": "2022-01-02T16:15:24.000Z" + }, + "end": { + "$date": "2022-01-02T18:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", + "uuid": "6424abf2-c2af-4aae-bd0c-8b1d0687658e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-02T16:27:44.000Z" + }, + "end": { + "$date": "2022-01-02T16:28:55.000Z" + }, + "events": [ + { + "uuid": "79fb103d-35d5-4b01-aa97-bbbc3fbca189", + "start": { + "$date": "2022-01-02T16:27:44.000Z" + }, + "end": { + "$date": "2022-01-02T16:28:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dcc0b0b1-d68e-4dbd-bbc9-01c433aadae4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T16:39:53.000Z" + }, + "end": { + "$date": "2022-01-02T18:21:53.000Z" + }, + "events": [ + { + "uuid": "1c8353cb-f113-4623-8fee-e432fd458463", + "start": { + "$date": "2022-01-02T16:39:53.000Z" + }, + "end": { + "$date": "2022-01-02T18:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "54f38fc4-57e3-4d46-b298-9eda3678f7ea", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-02T17:35:01.000Z" + }, + "end": { + "$date": "2022-01-02T18:20:18.000Z" + }, + "events": [ + { + "uuid": "d9198f44-2353-4b77-a1d3-8e3e465acedd", + "start": { + "$date": "2022-01-02T17:35:01.000Z" + }, + "end": { + "$date": "2022-01-02T18:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9d6d1eaa-c4c5-468d-bee7-61a5eff01541", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-02T17:37:14.000Z" + }, + "end": { + "$date": "2022-01-02T18:20:26.000Z" + }, + "events": [ + { + "uuid": "54ff9296-34fe-4731-83f4-f7ce31dea2c1", + "start": { + "$date": "2022-01-02T17:37:14.000Z" + }, + "end": { + "$date": "2022-01-02T18:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "15ec6493-62e4-46d5-ab3c-aba6db176c3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-02T17:42:03.000Z" + }, + "end": { + "$date": "2022-01-02T18:20:14.000Z" + }, + "events": [ + { + "uuid": "4e8bc057-d4f0-402c-8127-c815447db85d", + "start": { + "$date": "2022-01-02T17:42:03.000Z" + }, + "end": { + "$date": "2022-01-02T18:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "93620547-f11e-41fd-9095-97353420c71d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T18:22:03.000Z" + }, + "end": { + "$date": "2022-01-02T18:51:45.000Z" + }, + "events": [ + { + "uuid": "5c18a503-1a8c-4707-b589-5f39fc4bb5e1", + "start": { + "$date": "2022-01-02T18:22:03.000Z" + }, + "end": { + "$date": "2022-01-02T18:51:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "a0eee384-5bcd-4a71-a34b-0429758bc560", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T19:57:08.000Z" + }, + "end": { + "$date": "2022-01-02T20:46:16.000Z" + }, + "events": [ + { + "uuid": "e4ca668f-5822-4422-bfdd-bb824cab6287", + "start": { + "$date": "2022-01-02T19:57:08.000Z" + }, + "end": { + "$date": "2022-01-02T20:46:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "e517bc1b-55d9-407b-9ba4-ff4210ebf418", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T19:59:16.000Z" + }, + "end": { + "$date": "2022-01-02T20:04:12.000Z" + }, + "events": [ + { + "uuid": "ac7dea4a-c275-42f4-9197-a2312cfc237f", + "start": { + "$date": "2022-01-02T19:59:16.000Z" + }, + "end": { + "$date": "2022-01-02T20:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3ef5c649-2564-4afc-a990-ee7d227fa720", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T20:04:22.000Z" + }, + "end": { + "$date": "2022-01-02T20:19:42.000Z" + }, + "events": [ + { + "uuid": "b33650c1-d0d8-4607-9a42-083558214f5a", + "start": { + "$date": "2022-01-02T20:04:22.000Z" + }, + "end": { + "$date": "2022-01-02T20:19:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "42551d46-4d1a-4571-a354-482658b604b8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-02T20:15:56.000Z" + }, + "end": { + "$date": "2022-01-03T02:24:30.000Z" + }, + "events": [ + { + "uuid": "67391645-3ceb-40bf-b124-73cde010a750", + "start": { + "$date": "2022-01-02T20:15:56.000Z" + }, + "end": { + "$date": "2022-01-02T23:29:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc8d356b-c6d4-43b7-82ce-c797ca81c781", + "start": { + "$date": "2022-01-02T23:29:56.000Z" + }, + "end": { + "$date": "2022-01-02T23:32:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "da4c4bc4-6e54-49a9-9600-16600a1520c4", + "start": { + "$date": "2022-01-02T23:32:56.000Z" + }, + "end": { + "$date": "2022-01-03T02:24:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "3ea580f8-512a-472f-a145-5072162378b9", + "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "start": { + "$date": "2022-01-02T20:22:37.000Z" + }, + "end": { + "$date": "2022-01-03T00:38:44.000Z" + }, + "events": [ + { + "uuid": "ac84e847-8137-4db0-a419-e4e70d9f5c12", + "start": { + "$date": "2022-01-02T20:22:37.000Z" + }, + "end": { + "$date": "2022-01-02T23:38:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "272ab68f-cc77-40bf-900a-d9901bb7b633", + "start": { + "$date": "2022-01-02T23:38:37.000Z" + }, + "end": { + "$date": "2022-01-02T23:42:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99296f1d-53fb-4dfb-ae14-85511488cf54", + "start": { + "$date": "2022-01-02T23:42:37.000Z" + }, + "end": { + "$date": "2022-01-03T00:38:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "3e05ccfa-6e29-43a8-8026-ba4dba5feaad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-02T21:03:53.000Z" + }, + "end": { + "$date": "2022-01-02T21:22:05.000Z" + }, + "events": [ + { + "uuid": "c4ce2461-ddfc-499d-97b3-8f08a8fa0920", + "start": { + "$date": "2022-01-02T21:03:53.000Z" + }, + "end": { + "$date": "2022-01-02T21:22:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4966b11-bd3c-4928-84ab-9743e26c2b97", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T21:34:50.000Z" + }, + "end": { + "$date": "2022-01-02T22:08:52.000Z" + }, + "events": [ + { + "uuid": "7f1f168a-7263-425f-9d2a-911036aa306a", + "start": { + "$date": "2022-01-02T21:34:50.000Z" + }, + "end": { + "$date": "2022-01-02T22:08:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "db5e8118-63b9-415e-9ac5-0cd2cba7818d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-02T22:08:57.000Z" + }, + "end": { + "$date": "2022-01-02T22:12:02.000Z" + }, + "events": [ + { + "uuid": "4fc18984-899c-4166-bf36-2a78f6974a46", + "start": { + "$date": "2022-01-02T22:08:57.000Z" + }, + "end": { + "$date": "2022-01-02T22:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a88430e9-6ffe-48e3-86f1-7bb4b2af5916", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-02T22:18:54.000Z" + }, + "end": { + "$date": "2022-01-02T23:00:08.000Z" + }, + "events": [ + { + "uuid": "944062ca-bfa2-4263-bb0a-03e96e3beb32", + "start": { + "$date": "2022-01-02T22:18:54.000Z" + }, + "end": { + "$date": "2022-01-02T23:00:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1e6599e4-c8bb-4ed1-969d-484a7cc45f9e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-02T22:22:41.000Z" + }, + "end": { + "$date": "2022-01-02T23:43:20.000Z" + }, + "events": [ + { + "uuid": "25a1db5c-cd77-49fd-bc74-53b3cb97e385", + "start": { + "$date": "2022-01-02T22:22:41.000Z" + }, + "end": { + "$date": "2022-01-02T23:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "0f69d08c-15e1-4246-b2c7-5df39f4dbe00", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-02T23:32:15.000Z" + }, + "end": { + "$date": "2022-01-03T01:10:35.000Z" + }, + "events": [ + { + "uuid": "0b3405de-260e-4e6b-9188-f4bc0c68df5c", + "start": { + "$date": "2022-01-02T23:32:15.000Z" + }, + "end": { + "$date": "2022-01-03T01:10:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d29b1ddf-a298-477c-8976-fd5eb326cb53", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-03T00:50:41.000Z" + }, + "end": { + "$date": "2022-01-03T01:02:08.000Z" + }, + "events": [ + { + "uuid": "b9aa59fb-dcce-45d3-a21b-fd66632fb3db", + "start": { + "$date": "2022-01-03T00:50:41.000Z" + }, + "end": { + "$date": "2022-01-03T01:02:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "31bd3978-27b6-4309-bc2a-5ef62da98d17", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T01:55:00.000Z" + }, + "end": { + "$date": "2022-01-03T03:57:16.000Z" + }, + "events": [ + { + "uuid": "6efdb409-bee7-47a9-9792-e5cd4ca17a64", + "start": { + "$date": "2022-01-03T01:55:00.000Z" + }, + "end": { + "$date": "2022-01-03T03:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2e40b4cb-3a79-4d7f-af12-ca784b95824c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-03T02:21:03.000Z" + }, + "end": { + "$date": "2022-01-03T04:40:33.000Z" + }, + "events": [ + { + "uuid": "ee6fb00d-6802-46f0-9fef-9f6db7cd45e9", + "start": { + "$date": "2022-01-03T02:21:03.000Z" + }, + "end": { + "$date": "2022-01-03T04:40:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3fe70687-ce8f-4023-b1d6-839de8b793a9", + "uuid": "064aca81-aa20-42b4-8d93-e6c7b67f6c9e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-03T03:06:05.000Z" + }, + "end": { + "$date": "2022-01-03T03:13:03.000Z" + }, + "events": [ + { + "uuid": "ff96198d-5624-4d93-8ac4-4a4100417d5b", + "start": { + "$date": "2022-01-03T03:06:05.000Z" + }, + "end": { + "$date": "2022-01-03T03:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "6809db04-96c6-4c33-853c-823b1d0aa9e6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-03T03:11:35.000Z" + }, + "end": { + "$date": "2022-01-03T03:26:17.000Z" + }, + "events": [ + { + "uuid": "be61b0c8-71ba-4354-9c92-dd638e642fe1", + "start": { + "$date": "2022-01-03T03:11:35.000Z" + }, + "end": { + "$date": "2022-01-03T03:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "a01c9370-33ec-4ed6-8156-b1ec5196ad52", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-03T03:11:35.000Z" + }, + "end": { + "$date": "2022-01-03T04:16:35.000Z" + }, + "events": [ + { + "uuid": "b6c48813-a399-4a97-8ba9-712ca1e4f04f", + "start": { + "$date": "2022-01-03T03:11:35.000Z" + }, + "end": { + "$date": "2022-01-03T04:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3fe70687-ce8f-4023-b1d6-839de8b793a9", + "uuid": "4f9929fb-3ba6-4c12-8f7b-33a3512d1d96", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-03T03:32:03.000Z" + }, + "end": { + "$date": "2022-01-03T03:37:23.000Z" + }, + "events": [ + { + "uuid": "72a4d402-1970-484d-9953-9c017f077ae7", + "start": { + "$date": "2022-01-03T03:32:03.000Z" + }, + "end": { + "$date": "2022-01-03T03:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "c6489ff4-b1bc-46a3-8c4b-68660ac4a96f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-03T03:45:32.000Z" + }, + "end": { + "$date": "2022-01-03T05:22:49.000Z" + }, + "events": [ + { + "uuid": "2878af36-93fa-4644-922f-a8b5e38eca05", + "start": { + "$date": "2022-01-03T03:45:32.000Z" + }, + "end": { + "$date": "2022-01-03T04:42:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8eca1473-9aed-476f-98f1-30a3454d100c", + "start": { + "$date": "2022-01-03T04:42:32.000Z" + }, + "end": { + "$date": "2022-01-03T05:22:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e37f9700-bd73-413d-8109-c3a4198a2abc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T04:12:58.000Z" + }, + "end": { + "$date": "2022-01-03T05:34:54.000Z" + }, + "events": [ + { + "uuid": "5bd42990-fde7-4185-ab58-ab46d4994fff", + "start": { + "$date": "2022-01-03T04:12:58.000Z" + }, + "end": { + "$date": "2022-01-03T05:34:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4a4ee8d9-48d4-4b8b-948c-86996dc27a44", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-03T04:15:41.000Z" + }, + "end": { + "$date": "2022-01-03T05:06:42.000Z" + }, + "events": [ + { + "uuid": "5d0cfd16-ff6e-4ae9-8ed0-770b795315e2", + "start": { + "$date": "2022-01-03T04:15:41.000Z" + }, + "end": { + "$date": "2022-01-03T05:06:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "ff4f1469-06dc-4256-8a26-3e4ceba6d002", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-03T04:41:43.000Z" + }, + "end": { + "$date": "2022-01-03T06:52:59.000Z" + }, + "events": [ + { + "uuid": "c0852506-c9b5-4a0f-8153-19f4f585527f", + "start": { + "$date": "2022-01-03T04:41:43.000Z" + }, + "end": { + "$date": "2022-01-03T06:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "e5e52903-c042-47e6-bdc6-2d35f2f7950a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-03T05:07:02.000Z" + }, + "end": { + "$date": "2022-01-03T06:52:58.000Z" + }, + "events": [ + { + "uuid": "07af70e2-f1fe-40cf-aba2-86e0d005ccb2", + "start": { + "$date": "2022-01-03T05:07:02.000Z" + }, + "end": { + "$date": "2022-01-03T06:52:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", + "uuid": "395bd982-6864-455b-91a3-277bef2c1124", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-03T05:15:00.000Z" + }, + "end": { + "$date": "2022-01-03T06:43:17.000Z" + }, + "events": [ + { + "uuid": "5ff52397-ea04-462f-9f76-265fc0d6061c", + "start": { + "$date": "2022-01-03T05:15:00.000Z" + }, + "end": { + "$date": "2022-01-03T06:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "99087ee7-8e27-46ce-b28a-c9686c908ba5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T05:39:55.000Z" + }, + "end": { + "$date": "2022-01-03T06:07:56.000Z" + }, + "events": [ + { + "uuid": "1887f482-ced5-453b-9719-45ca792b5781", + "start": { + "$date": "2022-01-03T05:39:55.000Z" + }, + "end": { + "$date": "2022-01-03T06:07:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "513fd69b-707c-40da-bc29-d1f9deb41fe4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T06:46:04.000Z" + }, + "end": { + "$date": "2022-01-03T08:37:51.000Z" + }, + "events": [ + { + "uuid": "7d91eaaa-46cc-44fb-9fcb-75026ae67293", + "start": { + "$date": "2022-01-03T06:46:04.000Z" + }, + "end": { + "$date": "2022-01-03T08:37:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6fcb2549-21ff-47ca-8d22-bf7d8a8a6c6f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-03T08:20:13.000Z" + }, + "end": { + "$date": "2022-01-03T08:25:34.000Z" + }, + "events": [ + { + "uuid": "02fee0e0-8c82-4203-ae15-e3495165ebfd", + "start": { + "$date": "2022-01-03T08:20:13.000Z" + }, + "end": { + "$date": "2022-01-03T08:25:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b4b7eef5-b1ae-44f4-bac6-246007e3e649", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-03T16:23:01.000Z" + }, + "end": { + "$date": "2022-01-03T16:31:01.000Z" + }, + "events": [ + { + "uuid": "17a96363-7f7e-4aae-8bd6-84c9da2cfade", + "start": { + "$date": "2022-01-03T16:23:01.000Z" + }, + "end": { + "$date": "2022-01-03T16:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "337116db-b81b-4b4e-a4bb-042c6ec34d1f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-03T16:59:24.000Z" + }, + "end": { + "$date": "2022-01-03T21:09:52.000Z" + }, + "events": [ + { + "uuid": "d7f98e1a-83e5-481e-9239-60a89d6b9b10", + "start": { + "$date": "2022-01-03T16:59:24.000Z" + }, + "end": { + "$date": "2022-01-03T17:24:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ccf5a219-0b3c-4a9c-9369-e5cf623357e7", + "start": { + "$date": "2022-01-03T17:24:24.000Z" + }, + "end": { + "$date": "2022-01-03T17:25:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e419bd4-a8f8-47bd-9f5b-7b877a86b2c7", + "start": { + "$date": "2022-01-03T17:25:24.000Z" + }, + "end": { + "$date": "2022-01-03T19:08:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef785f05-97fd-48da-ae52-bc231163d33c", + "start": { + "$date": "2022-01-03T19:08:24.000Z" + }, + "end": { + "$date": "2022-01-03T20:18:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1e8a4ca-34ee-4d94-9676-e3164e47bd35", + "start": { + "$date": "2022-01-03T20:18:24.000Z" + }, + "end": { + "$date": "2022-01-03T20:28:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a9e1ff4c-f214-4eba-b5f5-b941da5d9e11", + "start": { + "$date": "2022-01-03T20:28:24.000Z" + }, + "end": { + "$date": "2022-01-03T21:09:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "e937a34c-0598-408d-af73-25edcc1644f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T18:00:22.000Z" + }, + "end": { + "$date": "2022-01-03T18:26:12.000Z" + }, + "events": [ + { + "uuid": "f196bc56-a895-46ab-b57c-f81b6c921045", + "start": { + "$date": "2022-01-03T18:00:22.000Z" + }, + "end": { + "$date": "2022-01-03T18:26:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2760f4e-5773-4c2e-a8f4-6d6478f6d232", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T18:40:06.000Z" + }, + "end": { + "$date": "2022-01-03T19:33:46.000Z" + }, + "events": [ + { + "uuid": "ac770785-e135-4a5e-8866-bf2571265e06", + "start": { + "$date": "2022-01-03T18:40:06.000Z" + }, + "end": { + "$date": "2022-01-03T19:33:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "88332c39-7b6e-424f-9da2-b82f5498d22e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-03T18:54:10.000Z" + }, + "end": { + "$date": "2022-01-03T19:26:19.000Z" + }, + "events": [ + { + "uuid": "4a15b444-4b15-43e4-a4a9-d50b763eae38", + "start": { + "$date": "2022-01-03T18:54:10.000Z" + }, + "end": { + "$date": "2022-01-03T19:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a174bd90-5fde-47f5-be29-5ef93db45be8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-03T19:09:51.000Z" + }, + "end": { + "$date": "2022-01-03T20:11:12.000Z" + }, + "events": [ + { + "uuid": "ef7d29e2-8598-47f4-8bb3-a50e8c62457f", + "start": { + "$date": "2022-01-03T19:09:51.000Z" + }, + "end": { + "$date": "2022-01-03T20:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "9ba17896-6f59-4ce5-91ca-35dda7477468", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-03T19:27:48.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:12.000Z" + }, + "events": [ + { + "uuid": "6a97c532-f772-4b17-8516-da7ee2ce715a", + "start": { + "$date": "2022-01-03T19:27:48.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "409bb88a-256f-4c14-98c9-ea4bf7c47b6b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-03T19:29:35.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:45.000Z" + }, + "events": [ + { + "uuid": "a9c4b4c8-0e8c-44eb-92f7-b2e2861d2e7f", + "start": { + "$date": "2022-01-03T19:29:35.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "2a415681-f0f2-4f26-a1f9-29051cdccae3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T19:33:30.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:37.000Z" + }, + "events": [ + { + "uuid": "ad968ba7-3294-4d57-a1d6-3bf882bfda2c", + "start": { + "$date": "2022-01-03T19:33:30.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "5e5b2168-af7a-46fd-8789-bebbb7341b36", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-03T19:34:57.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:35.000Z" + }, + "events": [ + { + "uuid": "0b96a5b8-cadd-4a2d-a2b2-275df0b62856", + "start": { + "$date": "2022-01-03T19:34:57.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "7cd3b37b-d560-42f9-a0d4-c443fbbca60d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T19:36:45.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:37.000Z" + }, + "events": [ + { + "uuid": "37564d56-5163-460e-857a-5657d8950e7f", + "start": { + "$date": "2022-01-03T19:36:45.000Z" + }, + "end": { + "$date": "2022-01-03T19:46:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "8b6a98ac-8253-4238-8d80-18d60473f5ab", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-03T19:46:37.000Z" + }, + "end": { + "$date": "2022-01-03T20:40:50.000Z" + }, + "events": [ + { + "uuid": "1c023d86-a279-4e4c-b9e2-75b2be9e9013", + "start": { + "$date": "2022-01-03T19:46:37.000Z" + }, + "end": { + "$date": "2022-01-03T20:40:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "c9b1a3d1-a179-499e-80e0-ff1d31282d52", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-03T19:47:08.000Z" + }, + "end": { + "$date": "2022-01-03T20:00:43.000Z" + }, + "events": [ + { + "uuid": "e9683db4-b1d4-4523-8a98-c6fdc9e60edf", + "start": { + "$date": "2022-01-03T19:47:08.000Z" + }, + "end": { + "$date": "2022-01-03T20:00:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "c40f19a9-5500-497b-90ef-5f20dc5fc2fa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-03T19:47:11.000Z" + }, + "end": { + "$date": "2022-01-03T20:45:14.000Z" + }, + "events": [ + { + "uuid": "3609012c-f2ce-40fd-95d4-c2ad33866433", + "start": { + "$date": "2022-01-03T19:47:11.000Z" + }, + "end": { + "$date": "2022-01-03T20:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "26ef871f-cde9-4a41-841f-9b4ee97ef34b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T19:47:11.000Z" + }, + "end": { + "$date": "2022-01-03T20:49:55.000Z" + }, + "events": [ + { + "uuid": "d8706278-ac0c-4230-bc7f-843ccb62c00a", + "start": { + "$date": "2022-01-03T19:47:11.000Z" + }, + "end": { + "$date": "2022-01-03T20:49:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "0d269e0e-7c3e-4232-9303-f4906b66a841", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T20:21:03.000Z" + }, + "end": { + "$date": "2022-01-03T20:24:40.000Z" + }, + "events": [ + { + "uuid": "a5790a1a-f298-433f-a03b-97c2a65badf1", + "start": { + "$date": "2022-01-03T20:21:03.000Z" + }, + "end": { + "$date": "2022-01-03T20:24:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "93bda323-42ca-447d-8f2c-8a6bd1e6be39", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T20:47:18.000Z" + }, + "end": { + "$date": "2022-01-03T20:50:35.000Z" + }, + "events": [ + { + "uuid": "83e1df4b-0b27-483a-8798-6d1e0c997b66", + "start": { + "$date": "2022-01-03T20:47:18.000Z" + }, + "end": { + "$date": "2022-01-03T20:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3cee9521-e8c9-486d-9e67-5a648525085f", + "uuid": "b67ef305-c4c5-480e-8c61-09b0d0768ce3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T20:59:57.000Z" + }, + "end": { + "$date": "2022-01-03T21:02:24.000Z" + }, + "events": [ + { + "uuid": "35c2a70b-6a0b-4078-bbfe-4dd73c08b4d0", + "start": { + "$date": "2022-01-03T20:59:57.000Z" + }, + "end": { + "$date": "2022-01-03T21:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4cfc58de-383a-4eee-a0ec-704db6d2fd49", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-03T23:09:05.000Z" + }, + "end": { + "$date": "2022-01-04T00:57:24.000Z" + }, + "events": [ + { + "uuid": "581201dd-4504-47b9-bdfe-3b603ab79e20", + "start": { + "$date": "2022-01-03T23:09:05.000Z" + }, + "end": { + "$date": "2022-01-04T00:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c33d470c-1dc0-499a-b930-fe40f941be36", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T22:01:47.000Z" + }, + "end": { + "$date": "2022-01-03T22:03:23.000Z" + }, + "events": [ + { + "uuid": "1371806c-d469-4a4c-9e71-80fb487c6c5e", + "start": { + "$date": "2022-01-03T22:01:47.000Z" + }, + "end": { + "$date": "2022-01-03T22:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1a13ab70-ad9a-4e90-b0de-92d3a5dfa5f8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T22:23:19.000Z" + }, + "end": { + "$date": "2022-01-03T22:43:24.000Z" + }, + "events": [ + { + "uuid": "0b73d768-3405-441b-be95-a9677bca395f", + "start": { + "$date": "2022-01-03T22:23:19.000Z" + }, + "end": { + "$date": "2022-01-03T22:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "568ecc42-5469-4f9c-9ef6-a3936c0867ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-03T22:43:38.000Z" + }, + "end": { + "$date": "2022-01-04T00:08:03.000Z" + }, + "events": [ + { + "uuid": "61ae4d76-fb5b-46bd-b0e4-9a5352a8d71a", + "start": { + "$date": "2022-01-03T22:43:38.000Z" + }, + "end": { + "$date": "2022-01-04T00:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2ceeea76-bfc4-4c35-ac6c-5f9895c166dc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-03T23:25:45.000Z" + }, + "end": { + "$date": "2022-01-04T00:53:05.000Z" + }, + "events": [ + { + "uuid": "7579f305-6ae3-42d4-a99e-67df72c8eea2", + "start": { + "$date": "2022-01-03T23:25:45.000Z" + }, + "end": { + "$date": "2022-01-04T00:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "025ddb5c-cb57-420a-888f-38ef171e8e7b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-03T23:50:30.000Z" + }, + "end": { + "$date": "2022-01-04T00:31:13.000Z" + }, + "events": [ + { + "uuid": "506bd422-ba71-4452-8469-63a0fc5a2c29", + "start": { + "$date": "2022-01-03T23:50:30.000Z" + }, + "end": { + "$date": "2022-01-04T00:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "1410adf5-bf17-4b1b-812a-82334644f316", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-04T00:02:08.000Z" + }, + "end": { + "$date": "2022-01-04T02:52:53.000Z" + }, + "events": [ + { + "uuid": "ba01bbb4-28e6-4894-9bac-2ce9a69c4b14", + "start": { + "$date": "2022-01-04T00:02:08.000Z" + }, + "end": { + "$date": "2022-01-04T02:52:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b812f439-29ea-44b6-b5f5-71f233008cdc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-04T00:08:42.000Z" + }, + "end": { + "$date": "2022-01-04T00:50:33.000Z" + }, + "events": [ + { + "uuid": "473ff2c9-bef2-48d7-b382-9160ab70e1aa", + "start": { + "$date": "2022-01-04T00:08:42.000Z" + }, + "end": { + "$date": "2022-01-04T00:50:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "52307734-da0a-4b92-8e77-015fd788cb70", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T00:31:17.000Z" + }, + "end": { + "$date": "2022-01-04T00:34:07.000Z" + }, + "events": [ + { + "uuid": "189bec5b-43fe-44cc-8c30-35e7f4a36677", + "start": { + "$date": "2022-01-04T00:31:17.000Z" + }, + "end": { + "$date": "2022-01-04T00:34:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e1013bec-6fbb-4c54-ae6d-d449a3658d33", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-04T01:06:32.000Z" + }, + "end": { + "$date": "2022-01-04T01:09:43.000Z" + }, + "events": [ + { + "uuid": "72b63d97-4028-4c08-96d2-48a471669596", + "start": { + "$date": "2022-01-04T01:06:32.000Z" + }, + "end": { + "$date": "2022-01-04T01:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "15c6ae94-2f59-460e-b70a-793e311bb90c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-04T01:07:14.000Z" + }, + "end": { + "$date": "2022-01-04T02:22:07.000Z" + }, + "events": [ + { + "uuid": "78c76d47-8a3a-4843-92d0-bb6d6f00ff8d", + "start": { + "$date": "2022-01-04T01:07:14.000Z" + }, + "end": { + "$date": "2022-01-04T02:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "bf9a82ff-665a-4547-a395-0789df505223", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-04T01:10:03.000Z" + }, + "end": { + "$date": "2022-01-04T02:22:26.000Z" + }, + "events": [ + { + "uuid": "7d69f3da-2444-4e2e-984b-02cc9fcb8ce7", + "start": { + "$date": "2022-01-04T01:10:03.000Z" + }, + "end": { + "$date": "2022-01-04T02:22:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "628b1c29-8697-4198-8014-59b86d454cbd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T01:12:50.000Z" + }, + "end": { + "$date": "2022-01-04T02:22:06.000Z" + }, + "events": [ + { + "uuid": "dfe219d6-d13e-42eb-8922-2fddc164c2de", + "start": { + "$date": "2022-01-04T01:12:50.000Z" + }, + "end": { + "$date": "2022-01-04T02:22:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a4f1bfe5-a56f-403b-b1aa-5a3320ef29fb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-04T01:57:28.000Z" + }, + "end": { + "$date": "2022-01-04T02:54:30.000Z" + }, + "events": [ + { + "uuid": "db47fad3-5d72-46ae-a62d-ff3fded26ff5", + "start": { + "$date": "2022-01-04T01:57:28.000Z" + }, + "end": { + "$date": "2022-01-04T02:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76d57d1f-ad2e-44a0-86f9-1bbd4ac711b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-04T02:09:05.000Z" + }, + "end": { + "$date": "2022-01-04T02:54:09.000Z" + }, + "events": [ + { + "uuid": "35980532-cea3-46f5-89ce-b36fc60f8d17", + "start": { + "$date": "2022-01-04T02:09:05.000Z" + }, + "end": { + "$date": "2022-01-04T02:54:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ca635cdc-fe38-406c-b782-689df7ef7110", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-04T04:35:43.000Z" + }, + "end": { + "$date": "2022-01-04T04:38:59.000Z" + }, + "events": [ + { + "uuid": "faf364c8-f5a3-41c4-91a9-c9cc89d07d8f", + "start": { + "$date": "2022-01-04T04:35:43.000Z" + }, + "end": { + "$date": "2022-01-04T04:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", + "uuid": "67079d40-3aa7-4823-aec2-c7e38cebefd9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-04T02:23:40.000Z" + }, + "end": { + "$date": "2022-01-04T02:25:01.000Z" + }, + "events": [ + { + "uuid": "fb8b4477-7a44-4a50-9f10-30afbe87dde7", + "start": { + "$date": "2022-01-04T02:23:40.000Z" + }, + "end": { + "$date": "2022-01-04T02:25:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", + "uuid": "4dfe49c1-8d23-46eb-8bb9-fb296d1ca230", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-04T02:25:15.000Z" + }, + "end": { + "$date": "2022-01-04T02:39:32.000Z" + }, + "events": [ + { + "uuid": "a347cff3-3ae0-4490-a5ee-cbc697872d0a", + "start": { + "$date": "2022-01-04T02:25:15.000Z" + }, + "end": { + "$date": "2022-01-04T02:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "c65358fe-0adc-4320-87d8-d0c90d2b1d0c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-04T02:58:32.000Z" + }, + "end": { + "$date": "2022-01-04T03:36:45.000Z" + }, + "events": [ + { + "uuid": "17f55a3c-2a9a-4cbb-9795-34db3f86556b", + "start": { + "$date": "2022-01-04T02:58:32.000Z" + }, + "end": { + "$date": "2022-01-04T03:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "78bdb69e-d07b-41dc-83ad-0667b66f473d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-04T03:02:40.000Z" + }, + "end": { + "$date": "2022-01-04T03:07:10.000Z" + }, + "events": [ + { + "uuid": "d7df4f4b-a252-4029-ad46-61300117e958", + "start": { + "$date": "2022-01-04T03:02:40.000Z" + }, + "end": { + "$date": "2022-01-04T03:07:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5e225279-bdc2-4ab9-8b4c-94651932be61", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-04T01:47:05.000Z" + }, + "end": { + "$date": "2022-01-04T06:34:05.000Z" + }, + "events": [ + { + "uuid": "c6f4d862-bc09-4a33-8976-115ff1c5d0a1", + "start": { + "$date": "2022-01-04T01:47:05.000Z" + }, + "end": { + "$date": "2022-01-04T06:34:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "0d87026c-1b76-4ea6-9b0e-f07d0ca68910", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T03:17:28.000Z" + }, + "end": { + "$date": "2022-01-04T03:24:01.000Z" + }, + "events": [ + { + "uuid": "9ad58b04-df4a-46c3-902c-fcca2ea22906", + "start": { + "$date": "2022-01-04T03:17:28.000Z" + }, + "end": { + "$date": "2022-01-04T03:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6106fdff-cfcf-43b2-903f-4e280e814239", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-04T03:23:25.000Z" + }, + "end": { + "$date": "2022-01-04T05:39:03.000Z" + }, + "events": [ + { + "uuid": "89acdfcd-8611-4dd1-8b01-634f7535c593", + "start": { + "$date": "2022-01-04T03:23:25.000Z" + }, + "end": { + "$date": "2022-01-04T05:39:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "43d90edc-b6a9-4151-9554-08f61776c09b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T03:24:23.000Z" + }, + "end": { + "$date": "2022-01-04T03:26:31.000Z" + }, + "events": [ + { + "uuid": "68b64f58-ae40-40f0-9758-8c04a81e7c3c", + "start": { + "$date": "2022-01-04T03:24:23.000Z" + }, + "end": { + "$date": "2022-01-04T03:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "dd48c795-0c21-4976-bd23-4e8a9cd0f09b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T03:26:58.000Z" + }, + "end": { + "$date": "2022-01-04T03:38:42.000Z" + }, + "events": [ + { + "uuid": "9025da27-efef-49ef-9ee0-aa49150db4b7", + "start": { + "$date": "2022-01-04T03:26:58.000Z" + }, + "end": { + "$date": "2022-01-04T03:38:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "722dfbca-b511-4c7d-9e92-7f75a94d742f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-04T03:28:21.000Z" + }, + "end": { + "$date": "2022-01-04T04:16:28.000Z" + }, + "events": [ + { + "uuid": "9fe74add-52cf-4a8e-a08b-e05e4b7fca29", + "start": { + "$date": "2022-01-04T03:28:21.000Z" + }, + "end": { + "$date": "2022-01-04T04:16:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "53d1cbf5-2c3a-4c7a-956f-4f28d9aa7f50", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-04T03:37:01.000Z" + }, + "end": { + "$date": "2022-01-04T03:41:05.000Z" + }, + "events": [ + { + "uuid": "e25b6c80-8a70-49b4-bd83-18cc252ae56d", + "start": { + "$date": "2022-01-04T03:37:01.000Z" + }, + "end": { + "$date": "2022-01-04T03:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "314286eb-a964-4b1b-8659-0a6b9c257638", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T03:38:54.000Z" + }, + "end": { + "$date": "2022-01-04T04:09:17.000Z" + }, + "events": [ + { + "uuid": "1a27fd25-1f58-4362-ba65-d297ed05462f", + "start": { + "$date": "2022-01-04T03:38:54.000Z" + }, + "end": { + "$date": "2022-01-04T04:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "6152b445-229b-4a92-845b-6fa87694038b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-04T03:41:22.000Z" + }, + "end": { + "$date": "2022-01-04T03:44:36.000Z" + }, + "events": [ + { + "uuid": "f6332407-b1c8-4ef5-b369-668d785e8acd", + "start": { + "$date": "2022-01-04T03:41:22.000Z" + }, + "end": { + "$date": "2022-01-04T03:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "81d2a69e-974b-423e-8892-fcbc3e29624f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-04T03:45:07.000Z" + }, + "end": { + "$date": "2022-01-04T04:15:23.000Z" + }, + "events": [ + { + "uuid": "062a6634-8aeb-4df3-905a-242c5350bd3a", + "start": { + "$date": "2022-01-04T03:45:07.000Z" + }, + "end": { + "$date": "2022-01-04T04:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "8a56ef72-2b74-4b8b-9b78-32a9208a3bd3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T03:51:18.000Z" + }, + "end": { + "$date": "2022-01-04T03:54:14.000Z" + }, + "events": [ + { + "uuid": "91f4af96-ee25-484e-9d62-3610027e7d29", + "start": { + "$date": "2022-01-04T03:51:18.000Z" + }, + "end": { + "$date": "2022-01-04T03:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "0e4c2cee-57db-47e8-8096-cd437c7dfbef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T03:54:43.000Z" + }, + "end": { + "$date": "2022-01-04T04:12:49.000Z" + }, + "events": [ + { + "uuid": "4046e12f-7c9c-434c-ad8c-df1a78e144cf", + "start": { + "$date": "2022-01-04T03:54:43.000Z" + }, + "end": { + "$date": "2022-01-04T04:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "9f52be3d-96fc-4ea9-84c8-4d5c5c2df352", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-04T04:10:34.000Z" + }, + "end": { + "$date": "2022-01-04T06:40:43.000Z" + }, + "events": [ + { + "uuid": "fceeba2a-7d47-4525-a9c8-1067cf8093b6", + "start": { + "$date": "2022-01-04T04:10:34.000Z" + }, + "end": { + "$date": "2022-01-04T06:40:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "59f15ff1-2c25-40c5-bb77-e36cfdbb271a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T04:11:04.000Z" + }, + "end": { + "$date": "2022-01-04T04:22:33.000Z" + }, + "events": [ + { + "uuid": "ea963b2f-18fc-4c9c-9de0-403fce8f0f2f", + "start": { + "$date": "2022-01-04T04:11:04.000Z" + }, + "end": { + "$date": "2022-01-04T04:22:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "e3d38053-fd22-4389-bf56-c74a79551480", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-04T04:30:50.000Z" + }, + "end": { + "$date": "2022-01-04T04:52:31.000Z" + }, + "events": [ + { + "uuid": "173a5884-e4d2-47ec-b489-04a068bf33d3", + "start": { + "$date": "2022-01-04T04:30:50.000Z" + }, + "end": { + "$date": "2022-01-04T04:52:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83c0a705-b583-4f99-b19d-a9676f16c538", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-04T05:28:15.000Z" + }, + "end": { + "$date": "2022-01-04T05:48:53.000Z" + }, + "events": [ + { + "uuid": "673f042e-6670-4a0d-8392-ecdd1251b1ae", + "start": { + "$date": "2022-01-04T05:28:15.000Z" + }, + "end": { + "$date": "2022-01-04T05:48:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "42cf4e10-ee0c-4d7e-93a1-326ed3f2c1a1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T05:45:08.000Z" + }, + "end": { + "$date": "2022-01-04T05:48:55.000Z" + }, + "events": [ + { + "uuid": "7d03b46e-9cc9-47bb-93b1-a83927bcb93c", + "start": { + "$date": "2022-01-04T05:45:08.000Z" + }, + "end": { + "$date": "2022-01-04T05:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "768996af-7263-45f6-bf40-6cc6629d6d89", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-04T05:40:45.000Z" + }, + "end": { + "$date": "2022-01-04T05:48:03.000Z" + }, + "events": [ + { + "uuid": "95d92d51-8942-4d5f-b191-c31442d12b4a", + "start": { + "$date": "2022-01-04T05:40:45.000Z" + }, + "end": { + "$date": "2022-01-04T05:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "c56608a3-6fc6-4dfa-9dfa-200f5fc2ebe8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T06:10:11.000Z" + }, + "end": { + "$date": "2022-01-04T06:12:52.000Z" + }, + "events": [ + { + "uuid": "648fc8fd-8f01-46d6-a090-6d51bf4d45f0", + "start": { + "$date": "2022-01-04T06:10:11.000Z" + }, + "end": { + "$date": "2022-01-04T06:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "674f1d28-e1f9-4974-846c-96024566c8b2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T06:14:46.000Z" + }, + "end": { + "$date": "2022-01-04T07:25:03.000Z" + }, + "events": [ + { + "uuid": "5f0b1fc5-8951-4dca-98e9-d85cbb252be6", + "start": { + "$date": "2022-01-04T06:14:46.000Z" + }, + "end": { + "$date": "2022-01-04T07:25:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8c78c4b2-5879-4757-968f-29fc6473e944", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-04T06:47:06.000Z" + }, + "end": { + "$date": "2022-01-04T07:12:50.000Z" + }, + "events": [ + { + "uuid": "93b84ec1-da03-430e-87b2-2e49d46c49b6", + "start": { + "$date": "2022-01-04T06:47:06.000Z" + }, + "end": { + "$date": "2022-01-04T07:12:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "770f640e-83e8-4ce7-8d91-a51d0c06438d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T07:25:37.000Z" + }, + "end": { + "$date": "2022-01-04T07:47:18.000Z" + }, + "events": [ + { + "uuid": "6f0b32ea-faaa-4d0a-888a-8ef5ff3e682c", + "start": { + "$date": "2022-01-04T07:25:37.000Z" + }, + "end": { + "$date": "2022-01-04T07:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b021a6f6-9aa4-4fa8-b019-24ee171688e4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T17:36:38.000Z" + }, + "end": { + "$date": "2022-01-04T17:58:04.000Z" + }, + "events": [ + { + "uuid": "c878df64-eb22-4015-8dbf-6e44a9d42ab9", + "start": { + "$date": "2022-01-04T17:36:38.000Z" + }, + "end": { + "$date": "2022-01-04T17:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1bb2c1ce-cb1d-45df-a765-7ea2bfd52250", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-04T18:51:01.000Z" + }, + "end": { + "$date": "2022-01-04T19:35:02.000Z" + }, + "events": [ + { + "uuid": "5ea96402-8a69-4769-9786-6889702c1e63", + "start": { + "$date": "2022-01-04T18:51:01.000Z" + }, + "end": { + "$date": "2022-01-04T19:35:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "91d58b70-b1bd-4b7b-a69f-51d050f63342", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-04T19:24:15.000Z" + }, + "end": { + "$date": "2022-01-04T19:27:36.000Z" + }, + "events": [ + { + "uuid": "13854b35-72e4-404a-ad87-1da33d713fe5", + "start": { + "$date": "2022-01-04T19:24:15.000Z" + }, + "end": { + "$date": "2022-01-04T19:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1952e191-8a94-450d-a0a1-ca727b5bf6a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T20:45:13.000Z" + }, + "end": { + "$date": "2022-01-04T21:29:15.000Z" + }, + "events": [ + { + "uuid": "ac4a35e5-31c6-4875-8390-eaafc5d634d5", + "start": { + "$date": "2022-01-04T20:45:13.000Z" + }, + "end": { + "$date": "2022-01-04T21:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "44c386f9-d073-42b7-9835-21874a31fb92", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-04T21:23:30.000Z" + }, + "end": { + "$date": "2022-01-04T22:00:25.000Z" + }, + "events": [ + { + "uuid": "b2beed5c-91a2-4e73-b31e-0f41d6758d6d", + "start": { + "$date": "2022-01-04T21:23:30.000Z" + }, + "end": { + "$date": "2022-01-04T21:24:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cde5e564-3a7e-4abc-a527-589add380ed0", + "start": { + "$date": "2022-01-04T21:24:30.000Z" + }, + "end": { + "$date": "2022-01-04T21:41:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "695be0c8-ede2-4652-9ad9-931a38911963", + "start": { + "$date": "2022-01-04T21:41:30.000Z" + }, + "end": { + "$date": "2022-01-04T22:00:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3d69eb6e-b353-44fc-b858-04ce856581d3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T21:39:00.000Z" + }, + "end": { + "$date": "2022-01-04T21:53:52.000Z" + }, + "events": [ + { + "uuid": "37c33c0e-56d2-43df-8670-090ed014a30a", + "start": { + "$date": "2022-01-04T21:39:00.000Z" + }, + "end": { + "$date": "2022-01-04T21:53:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3b564c39-77b1-4e11-930f-e3b56740abab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T22:06:15.000Z" + }, + "end": { + "$date": "2022-01-04T22:15:37.000Z" + }, + "events": [ + { + "uuid": "c2acc176-7018-4ae9-b930-b8f654ab7ba9", + "start": { + "$date": "2022-01-04T22:06:15.000Z" + }, + "end": { + "$date": "2022-01-04T22:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c815a309-9f20-460e-8030-38684e627665", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-04T22:15:47.000Z" + }, + "end": { + "$date": "2022-01-04T22:17:07.000Z" + }, + "events": [ + { + "uuid": "97f716b0-10c0-4cfd-8cda-a8dccdebb0b0", + "start": { + "$date": "2022-01-04T22:15:47.000Z" + }, + "end": { + "$date": "2022-01-04T22:17:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0376e20f-d782-4bf9-a433-360ad5332121", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-04T22:28:09.000Z" + }, + "end": { + "$date": "2022-01-04T23:01:38.000Z" + }, + "events": [ + { + "uuid": "36a9dccf-9fbb-4ffe-8bbe-5172f466bbe6", + "start": { + "$date": "2022-01-04T22:28:09.000Z" + }, + "end": { + "$date": "2022-01-04T23:01:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "040fdb2e-8349-4a9a-96eb-3de5b730b968", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T22:58:50.000Z" + }, + "end": { + "$date": "2022-01-04T23:39:24.000Z" + }, + "events": [ + { + "uuid": "85eea16d-2ece-4fa3-8342-dbb662e6c291", + "start": { + "$date": "2022-01-04T22:58:50.000Z" + }, + "end": { + "$date": "2022-01-04T23:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "86f9e6c0-ce30-48b8-8c60-65331cf0da3f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-04T23:23:23.000Z" + }, + "end": { + "$date": "2022-01-04T23:51:34.000Z" + }, + "events": [ + { + "uuid": "58258a08-0791-4065-8936-a156a9445ed6", + "start": { + "$date": "2022-01-04T23:23:23.000Z" + }, + "end": { + "$date": "2022-01-04T23:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf4591fc-7400-4506-9d87-b789e1f2af3a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-04T23:40:24.000Z" + }, + "end": { + "$date": "2022-01-04T23:58:01.000Z" + }, + "events": [ + { + "uuid": "49e6f20b-4ca2-4382-a5e0-9c590e0a1f63", + "start": { + "$date": "2022-01-04T23:40:24.000Z" + }, + "end": { + "$date": "2022-01-04T23:58:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4da1e3d9-7618-4390-a30a-e59969ea54c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-04T23:39:58.000Z" + }, + "end": { + "$date": "2022-01-05T00:49:51.000Z" + }, + "events": [ + { + "uuid": "1d107c5a-e227-43ef-9995-cc6d37e5b3e6", + "start": { + "$date": "2022-01-04T23:39:58.000Z" + }, + "end": { + "$date": "2022-01-05T00:49:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6a2f74f9-0308-4902-8421-5945ac649cb4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-04T23:43:12.000Z" + }, + "end": { + "$date": "2022-01-05T00:09:39.000Z" + }, + "events": [ + { + "uuid": "6c5fc87d-24a1-473c-ab1a-91f4ead62ff3", + "start": { + "$date": "2022-01-04T23:43:12.000Z" + }, + "end": { + "$date": "2022-01-05T00:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "52adab09-6815-48d5-918f-febae08ea888", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-04T23:52:55.000Z" + }, + "end": { + "$date": "2022-01-05T00:00:40.000Z" + }, + "events": [ + { + "uuid": "954c168c-ac09-411d-af07-1da40b7590a1", + "start": { + "$date": "2022-01-04T23:52:55.000Z" + }, + "end": { + "$date": "2022-01-05T00:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "71c98b0f-35b9-43bb-ab81-589e2403bb30", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-04T23:55:48.000Z" + }, + "end": { + "$date": "2022-01-05T06:55:34.000Z" + }, + "events": [ + { + "uuid": "7c2cbca6-43ac-4279-80b5-59a11521f40d", + "start": { + "$date": "2022-01-04T23:55:48.000Z" + }, + "end": { + "$date": "2022-01-05T00:33:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "491d07a2-45c0-4c8c-ba8a-6783158aa683", + "start": { + "$date": "2022-01-05T00:33:48.000Z" + }, + "end": { + "$date": "2022-01-05T00:51:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ca985b3-56d9-43b5-963a-7000fff12802", + "start": { + "$date": "2022-01-05T00:51:48.000Z" + }, + "end": { + "$date": "2022-01-05T02:08:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74b8ee97-2261-4234-b047-e28c346b372d", + "start": { + "$date": "2022-01-05T02:08:48.000Z" + }, + "end": { + "$date": "2022-01-05T02:13:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d8e9e525-79cf-4627-987e-37803f7b6cba", + "start": { + "$date": "2022-01-05T02:13:48.000Z" + }, + "end": { + "$date": "2022-01-05T06:55:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "70e6c161-0e36-4c95-8016-96043f3da524", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T00:05:06.000Z" + }, + "end": { + "$date": "2022-01-05T00:49:34.000Z" + }, + "events": [ + { + "uuid": "8c5f0d94-9393-4586-a595-f264ed4081a8", + "start": { + "$date": "2022-01-05T00:05:06.000Z" + }, + "end": { + "$date": "2022-01-05T00:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "09b03827-b3e0-4adb-b298-afd572e45abd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-05T00:22:11.000Z" + }, + "end": { + "$date": "2022-01-05T01:45:54.000Z" + }, + "events": [ + { + "uuid": "9ca98139-4c29-4a00-9618-4557a68e78a4", + "start": { + "$date": "2022-01-05T00:22:11.000Z" + }, + "end": { + "$date": "2022-01-05T01:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "3d8ebea2-c180-4b5f-bc07-2db28da2461e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T00:51:35.000Z" + }, + "end": { + "$date": "2022-01-05T01:08:11.000Z" + }, + "events": [ + { + "uuid": "d7544fd1-546f-44d6-bde1-feb1b024973e", + "start": { + "$date": "2022-01-05T00:51:35.000Z" + }, + "end": { + "$date": "2022-01-05T01:08:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8265ca54-3013-44c8-96f6-e253c682743d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T01:08:22.000Z" + }, + "end": { + "$date": "2022-01-05T05:52:16.000Z" + }, + "events": [ + { + "uuid": "3b1d88cd-1e9c-4f4b-85d5-0040281510dd", + "start": { + "$date": "2022-01-05T01:08:22.000Z" + }, + "end": { + "$date": "2022-01-05T05:52:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "698f8705-c995-4af3-99e6-850870fe34e9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-05T01:46:34.000Z" + }, + "end": { + "$date": "2022-01-05T01:51:37.000Z" + }, + "events": [ + { + "uuid": "7dad6757-69e3-4286-8f68-b7bfff7fab1f", + "start": { + "$date": "2022-01-05T01:46:34.000Z" + }, + "end": { + "$date": "2022-01-05T01:51:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ddd1cdb5-9c9b-4bff-b97c-f34a0e3ab417", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-05T02:19:49.000Z" + }, + "end": { + "$date": "2022-01-05T02:33:55.000Z" + }, + "events": [ + { + "uuid": "260aa69e-981a-42cc-9963-fd19b8292461", + "start": { + "$date": "2022-01-05T02:19:49.000Z" + }, + "end": { + "$date": "2022-01-05T02:33:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "1f8aecf8-00c9-489d-8302-b10582fcde69", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-05T02:42:11.000Z" + }, + "end": { + "$date": "2022-01-05T03:46:11.000Z" + }, + "events": [ + { + "uuid": "193aad10-da3c-4186-8273-64d92d782b9d", + "start": { + "$date": "2022-01-05T02:42:11.000Z" + }, + "end": { + "$date": "2022-01-05T03:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5e341fab-02e5-405e-968f-8a129fef7ce3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-05T02:46:05.000Z" + }, + "end": { + "$date": "2022-01-05T04:21:22.000Z" + }, + "events": [ + { + "uuid": "d6b1e67b-f6b8-4555-8b3a-3ecf3841134f", + "start": { + "$date": "2022-01-05T02:46:05.000Z" + }, + "end": { + "$date": "2022-01-05T04:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "92fbb35b-3641-458d-9d6c-8efd0652b7a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-05T04:33:08.000Z" + }, + "end": { + "$date": "2022-01-05T05:15:00.000Z" + }, + "events": [ + { + "uuid": "9a52dc96-3cc7-44bc-8855-7ef4a7bf4a82", + "start": { + "$date": "2022-01-05T04:33:08.000Z" + }, + "end": { + "$date": "2022-01-05T05:15:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6fd5de8a-c61d-4708-92bb-9362c5443a93", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-05T03:06:13.000Z" + }, + "end": { + "$date": "2022-01-05T03:09:14.000Z" + }, + "events": [ + { + "uuid": "8c622b21-16b0-49b5-8099-d43e8eac0066", + "start": { + "$date": "2022-01-05T03:06:13.000Z" + }, + "end": { + "$date": "2022-01-05T03:09:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "90628a65-6262-4c29-a03f-471fc33cb146", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-05T03:38:20.000Z" + }, + "end": { + "$date": "2022-01-05T03:43:06.000Z" + }, + "events": [ + { + "uuid": "4680af8b-a284-4c21-bf8f-ef652607762b", + "start": { + "$date": "2022-01-05T03:38:20.000Z" + }, + "end": { + "$date": "2022-01-05T03:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "33d73c85-63ad-4b48-a048-55cfe59eb7bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-05T03:43:56.000Z" + }, + "end": { + "$date": "2022-01-05T04:33:18.000Z" + }, + "events": [ + { + "uuid": "80b1fac0-f48a-42c9-ba9e-2098e1e7626a", + "start": { + "$date": "2022-01-05T03:43:56.000Z" + }, + "end": { + "$date": "2022-01-05T04:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2cd06dd2-5f32-4b56-871e-56873303c803", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-05T03:47:06.000Z" + }, + "end": { + "$date": "2022-01-05T05:32:39.000Z" + }, + "events": [ + { + "uuid": "b8d1047b-5c79-4723-ac22-e1333b7c4522", + "start": { + "$date": "2022-01-05T03:47:06.000Z" + }, + "end": { + "$date": "2022-01-05T05:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6b8b3ab6-e62a-46a2-b622-f1a3ed22eb7f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-05T04:02:54.000Z" + }, + "end": { + "$date": "2022-01-05T04:04:25.000Z" + }, + "events": [ + { + "uuid": "677807a9-dc69-4a30-9684-3c3b2a140ca8", + "start": { + "$date": "2022-01-05T04:02:54.000Z" + }, + "end": { + "$date": "2022-01-05T04:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "bc0c7980-a30d-4555-a316-2931725d4b5c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-05T04:04:34.000Z" + }, + "end": { + "$date": "2022-01-05T04:08:00.000Z" + }, + "events": [ + { + "uuid": "c808767b-b805-4636-82e2-d7744eb03375", + "start": { + "$date": "2022-01-05T04:04:34.000Z" + }, + "end": { + "$date": "2022-01-05T04:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "0e5669e5-79d3-4703-a05b-47358fb1e282", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-05T04:11:14.000Z" + }, + "end": { + "$date": "2022-01-05T05:58:05.000Z" + }, + "events": [ + { + "uuid": "e4ef46e7-dd42-491e-b73b-f83f5efa7da4", + "start": { + "$date": "2022-01-05T04:11:14.000Z" + }, + "end": { + "$date": "2022-01-05T05:58:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ee277aa4-464f-4b5d-9046-b57f2e484ccb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-05T04:21:30.000Z" + }, + "end": { + "$date": "2022-01-05T05:15:10.000Z" + }, + "events": [ + { + "uuid": "71e08261-062f-4fcd-be3e-64cdfe53df92", + "start": { + "$date": "2022-01-05T04:21:30.000Z" + }, + "end": { + "$date": "2022-01-05T05:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "570d8903-1382-4c3b-a504-cc6850894bc2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-05T04:33:48.000Z" + }, + "end": { + "$date": "2022-01-05T05:15:12.000Z" + }, + "events": [ + { + "uuid": "b8246361-3f0a-4ce1-94e7-698911999b11", + "start": { + "$date": "2022-01-05T04:33:48.000Z" + }, + "end": { + "$date": "2022-01-05T05:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8fdf7ddb-ad82-4b7b-9af4-e7c512ceefc6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-05T05:24:38.000Z" + }, + "end": { + "$date": "2022-01-05T05:43:56.000Z" + }, + "events": [ + { + "uuid": "5e7015b1-6840-4977-87b4-9f5dbc3580a8", + "start": { + "$date": "2022-01-05T05:24:38.000Z" + }, + "end": { + "$date": "2022-01-05T05:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "23fac006-9c56-435a-ac4e-2735b2fc3bc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T05:53:37.000Z" + }, + "end": { + "$date": "2022-01-05T06:07:37.000Z" + }, + "events": [ + { + "uuid": "bf7a1d35-52ce-488f-8adb-531c12f319d8", + "start": { + "$date": "2022-01-05T05:53:37.000Z" + }, + "end": { + "$date": "2022-01-05T06:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a04bb6b0-f839-4ca2-b102-b50e10578637", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-05T06:00:26.000Z" + }, + "end": { + "$date": "2022-01-05T06:09:56.000Z" + }, + "events": [ + { + "uuid": "1d0d4d18-c4d1-4e6c-ab91-60b27e5bb99d", + "start": { + "$date": "2022-01-05T06:00:26.000Z" + }, + "end": { + "$date": "2022-01-05T06:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "ca631de8-358a-4573-be74-1144fec9602a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-05T06:10:26.000Z" + }, + "end": { + "$date": "2022-01-05T06:48:17.000Z" + }, + "events": [ + { + "uuid": "fac0959c-7022-4f84-bed9-3ee84fe7f824", + "start": { + "$date": "2022-01-05T06:10:26.000Z" + }, + "end": { + "$date": "2022-01-05T06:48:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "015c545a-b5be-4530-a18d-63e34930d3c3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T06:37:41.000Z" + }, + "end": { + "$date": "2022-01-05T07:03:16.000Z" + }, + "events": [ + { + "uuid": "666c4151-252f-4379-a699-2f467eb7de2c", + "start": { + "$date": "2022-01-05T06:37:41.000Z" + }, + "end": { + "$date": "2022-01-05T07:03:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ca84b98a-6d2d-4fdf-ac27-949c5e29a6ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T07:03:37.000Z" + }, + "end": { + "$date": "2022-01-05T07:30:32.000Z" + }, + "events": [ + { + "uuid": "a4770c29-0a55-46f7-8961-5eace58209cd", + "start": { + "$date": "2022-01-05T07:03:37.000Z" + }, + "end": { + "$date": "2022-01-05T07:30:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ba8cd350-bb81-490d-88ac-c21f301322be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-05T07:58:02.000Z" + }, + "end": { + "$date": "2022-01-05T08:11:46.000Z" + }, + "events": [ + { + "uuid": "4bab1e0b-83fa-499b-aa72-57b23dda60e4", + "start": { + "$date": "2022-01-05T07:58:02.000Z" + }, + "end": { + "$date": "2022-01-05T08:11:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "285a126b-fc23-4ed5-b9e9-b5b9600461fd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-05T17:15:32.000Z" + }, + "end": { + "$date": "2022-01-05T22:21:13.000Z" + }, + "events": [ + { + "uuid": "4e65962e-bf6c-4374-a610-036133dca1bd", + "start": { + "$date": "2022-01-05T17:15:32.000Z" + }, + "end": { + "$date": "2022-01-05T20:39:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ee324eff-f9b5-490a-a208-4138b764de62", + "start": { + "$date": "2022-01-05T20:39:32.000Z" + }, + "end": { + "$date": "2022-01-05T20:49:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd289435-6715-4234-a4af-0086b3ec1d0d", + "start": { + "$date": "2022-01-05T20:49:32.000Z" + }, + "end": { + "$date": "2022-01-05T20:51:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f4cabc9-2108-43e3-9270-591e2c5039fd", + "start": { + "$date": "2022-01-05T20:51:32.000Z" + }, + "end": { + "$date": "2022-01-05T20:56:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ed9c7974-21ef-4edf-a764-4630b51b3caf", + "start": { + "$date": "2022-01-05T20:56:32.000Z" + }, + "end": { + "$date": "2022-01-05T20:58:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f3b06f9d-ddd5-441f-99e3-f8676f37a91c", + "start": { + "$date": "2022-01-05T20:58:32.000Z" + }, + "end": { + "$date": "2022-01-05T21:17:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c11471a-00be-41f1-8cfb-2e319484561f", + "start": { + "$date": "2022-01-05T21:17:32.000Z" + }, + "end": { + "$date": "2022-01-05T22:06:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63570eb2-26ae-40da-8545-c2b287a59644", + "start": { + "$date": "2022-01-05T22:06:32.000Z" + }, + "end": { + "$date": "2022-01-05T22:18:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4f14ba2c-80d7-4404-a105-bbfd2f668c0b", + "start": { + "$date": "2022-01-05T22:18:32.000Z" + }, + "end": { + "$date": "2022-01-05T22:21:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "6c910763-179f-4776-92cc-915506e08273", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-05T17:15:56.000Z" + }, + "end": { + "$date": "2022-01-05T17:57:26.000Z" + }, + "events": [ + { + "uuid": "d1b57b69-ede9-4e71-b5f8-6da0b3237812", + "start": { + "$date": "2022-01-05T17:15:56.000Z" + }, + "end": { + "$date": "2022-01-05T17:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8ff6d8d4-2b9f-402a-a269-c7a91a085a41", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-05T19:23:26.000Z" + }, + "end": { + "$date": "2022-01-05T20:12:43.000Z" + }, + "events": [ + { + "uuid": "4fb9332c-e1ea-4f67-a3e9-6455eb121eb6", + "start": { + "$date": "2022-01-05T19:23:26.000Z" + }, + "end": { + "$date": "2022-01-05T20:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "937d0765-d985-45a1-8415-f7872c647ed9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-05T19:32:25.000Z" + }, + "end": { + "$date": "2022-01-05T22:24:21.000Z" + }, + "events": [ + { + "uuid": "a66f1ef2-484c-445a-8921-f3a56588b06e", + "start": { + "$date": "2022-01-05T19:32:25.000Z" + }, + "end": { + "$date": "2022-01-05T22:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e844611-240f-49b9-8ed7-8695a6f199cf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T00:13:42.000Z" + }, + "end": { + "$date": "2022-01-06T00:49:36.000Z" + }, + "events": [ + { + "uuid": "b432bfac-9924-4330-b365-a24bfaa22504", + "start": { + "$date": "2022-01-06T00:13:42.000Z" + }, + "end": { + "$date": "2022-01-06T00:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "04239c76-c786-4e62-9bd6-994e11acd456", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-06T01:16:43.000Z" + }, + "end": { + "$date": "2022-01-06T03:18:48.000Z" + }, + "events": [ + { + "uuid": "9afdc66e-aa44-45b0-9807-5b785cac8426", + "start": { + "$date": "2022-01-06T01:16:43.000Z" + }, + "end": { + "$date": "2022-01-06T03:18:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7db0e1cf-39eb-4241-bafa-3f7c8c000d51", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-06T01:17:40.000Z" + }, + "end": { + "$date": "2022-01-06T03:18:42.000Z" + }, + "events": [ + { + "uuid": "48585cb4-d83b-45a1-ba90-882b6b6ced67", + "start": { + "$date": "2022-01-06T01:17:40.000Z" + }, + "end": { + "$date": "2022-01-06T03:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5f619d74-9dfb-4794-adfc-2936fdb4143a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T01:41:40.000Z" + }, + "end": { + "$date": "2022-01-06T02:20:37.000Z" + }, + "events": [ + { + "uuid": "218f91e7-2668-4720-9e8b-cc25f2eaead5", + "start": { + "$date": "2022-01-06T01:41:40.000Z" + }, + "end": { + "$date": "2022-01-06T02:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc53dcdf-9ba4-4a45-a0ee-bd143c2557e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T02:20:57.000Z" + }, + "end": { + "$date": "2022-01-06T03:12:31.000Z" + }, + "events": [ + { + "uuid": "e17209ff-0f96-4b7e-a5f2-045445f585c9", + "start": { + "$date": "2022-01-06T02:20:57.000Z" + }, + "end": { + "$date": "2022-01-06T03:12:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "67d902a9-935e-461e-891b-8cc9aef8a524", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-06T02:22:41.000Z" + }, + "end": { + "$date": "2022-01-06T05:57:57.000Z" + }, + "events": [ + { + "uuid": "440656c6-6129-408c-ad95-999b75962278", + "start": { + "$date": "2022-01-06T02:22:41.000Z" + }, + "end": { + "$date": "2022-01-06T05:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d6ac33cf-434b-4ba2-bee6-67849d29c3a6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-06T02:30:53.000Z" + }, + "end": { + "$date": "2022-01-06T03:19:01.000Z" + }, + "events": [ + { + "uuid": "381d44f0-ccb5-4cfd-afe6-d483e27adf14", + "start": { + "$date": "2022-01-06T02:30:53.000Z" + }, + "end": { + "$date": "2022-01-06T03:19:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "889e976c-7432-49d7-ac7f-3f546c24fb55", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-06T03:07:45.000Z" + }, + "end": { + "$date": "2022-01-06T03:07:52.000Z" + }, + "events": [ + { + "uuid": "4fd83918-8558-47fb-909f-e99f8885379d", + "start": { + "$date": "2022-01-06T03:07:45.000Z" + }, + "end": { + "$date": "2022-01-06T03:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6ce7a2c1-fa84-4d68-b92a-c86301144a69", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-06T02:56:05.000Z" + }, + "end": { + "$date": "2022-01-06T04:07:23.000Z" + }, + "events": [ + { + "uuid": "8ecbe57e-efcb-4b4a-99eb-35d6a5d221c7", + "start": { + "$date": "2022-01-06T02:56:05.000Z" + }, + "end": { + "$date": "2022-01-06T04:07:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "38b0c308-8391-4a72-adde-56763678f035", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-06T03:08:00.000Z" + }, + "end": { + "$date": "2022-01-06T03:38:23.000Z" + }, + "events": [ + { + "uuid": "40717560-3d97-49da-a040-36b429a7c6c1", + "start": { + "$date": "2022-01-06T03:08:00.000Z" + }, + "end": { + "$date": "2022-01-06T03:38:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8caaa01f-2635-4ff7-b80e-b28a0b67a9cc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-06T03:11:45.000Z" + }, + "end": { + "$date": "2022-01-06T03:31:31.000Z" + }, + "events": [ + { + "uuid": "2cbbc0e6-5f1e-4908-9e93-9918c8960191", + "start": { + "$date": "2022-01-06T03:11:45.000Z" + }, + "end": { + "$date": "2022-01-06T03:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "2802db2d-5d03-454a-a650-7d3b497b123b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T03:13:02.000Z" + }, + "end": { + "$date": "2022-01-06T03:34:44.000Z" + }, + "events": [ + { + "uuid": "9a5d7263-a42d-4151-9712-f326765dc1c5", + "start": { + "$date": "2022-01-06T03:13:02.000Z" + }, + "end": { + "$date": "2022-01-06T03:34:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "001e793e-c29f-450b-8765-90e1dfee1bfc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-06T03:19:36.000Z" + }, + "end": { + "$date": "2022-01-06T06:28:58.000Z" + }, + "events": [ + { + "uuid": "9a7c4eff-4483-414f-bebb-fbcfbbdc4d6e", + "start": { + "$date": "2022-01-06T03:19:36.000Z" + }, + "end": { + "$date": "2022-01-06T04:33:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "857b850c-08b6-4a89-8956-ecaadf16c95b", + "start": { + "$date": "2022-01-06T04:33:36.000Z" + }, + "end": { + "$date": "2022-01-06T04:44:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edc6062d-fb9a-4db7-89a3-19236b18173f", + "start": { + "$date": "2022-01-06T04:44:36.000Z" + }, + "end": { + "$date": "2022-01-06T06:00:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "99c351c7-5514-40e7-afae-e38f9fa7488c", + "start": { + "$date": "2022-01-06T06:00:36.000Z" + }, + "end": { + "$date": "2022-01-06T06:25:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d5755a44-321b-4206-9be8-246a4333a9f5", + "start": { + "$date": "2022-01-06T06:25:36.000Z" + }, + "end": { + "$date": "2022-01-06T06:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bd9d6fc-10da-4986-9205-eb15e9690115", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T03:32:27.000Z" + }, + "end": { + "$date": "2022-01-06T03:45:24.000Z" + }, + "events": [ + { + "uuid": "0c73b822-52a8-4552-b852-d5fc67553239", + "start": { + "$date": "2022-01-06T03:32:27.000Z" + }, + "end": { + "$date": "2022-01-06T03:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "1f3319c5-3c57-4d81-a156-0366979f0980", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-06T03:33:26.000Z" + }, + "end": { + "$date": "2022-01-06T04:10:02.000Z" + }, + "events": [ + { + "uuid": "a1ed02fd-73a8-4244-9f46-4b4631e04696", + "start": { + "$date": "2022-01-06T03:33:26.000Z" + }, + "end": { + "$date": "2022-01-06T04:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8d115f1e-e253-403e-978f-84c12eb9779a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T03:34:54.000Z" + }, + "end": { + "$date": "2022-01-06T05:24:11.000Z" + }, + "events": [ + { + "uuid": "446958d6-c02d-40a1-9977-99b8afcf3204", + "start": { + "$date": "2022-01-06T03:34:54.000Z" + }, + "end": { + "$date": "2022-01-06T04:58:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "42d57dc3-6946-4e90-9769-1fcf331bd89b", + "start": { + "$date": "2022-01-06T04:58:54.000Z" + }, + "end": { + "$date": "2022-01-06T05:22:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1cb7602e-d45d-4351-990e-828014958173", + "start": { + "$date": "2022-01-06T05:22:54.000Z" + }, + "end": { + "$date": "2022-01-06T05:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "868cec5d-1fd0-474e-9652-8fb894b03bc7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-06T03:39:31.000Z" + }, + "end": { + "$date": "2022-01-06T03:44:33.000Z" + }, + "events": [ + { + "uuid": "ba95c34d-4a82-4aa4-91e6-d97ea5d360a2", + "start": { + "$date": "2022-01-06T03:39:31.000Z" + }, + "end": { + "$date": "2022-01-06T03:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c66ab6dc-fce7-4a47-9686-88f5e37045a3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T03:46:38.000Z" + }, + "end": { + "$date": "2022-01-06T04:21:55.000Z" + }, + "events": [ + { + "uuid": "51f90674-eb5b-4676-85ce-78f6d3bdd964", + "start": { + "$date": "2022-01-06T03:46:38.000Z" + }, + "end": { + "$date": "2022-01-06T04:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", + "uuid": "f1bc518c-5aad-4929-8bb2-8cd512c1d8bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-06T04:11:22.000Z" + }, + "end": { + "$date": "2022-01-06T04:48:22.000Z" + }, + "events": [ + { + "uuid": "75909d48-aa25-4ed6-9c4c-4d3fbd0cd0b9", + "start": { + "$date": "2022-01-06T04:11:22.000Z" + }, + "end": { + "$date": "2022-01-06T04:48:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96430f60-ab3b-4b7f-b849-794daa52e4f0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T04:23:41.000Z" + }, + "end": { + "$date": "2022-01-06T04:59:30.000Z" + }, + "events": [ + { + "uuid": "f1511959-4ceb-4780-b8f8-0f01b280cf41", + "start": { + "$date": "2022-01-06T04:23:41.000Z" + }, + "end": { + "$date": "2022-01-06T04:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d40e8f7a-32d5-4060-8493-fd7e18b6c67a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-06T04:35:12.000Z" + }, + "end": { + "$date": "2022-01-06T05:01:10.000Z" + }, + "events": [ + { + "uuid": "565e7185-eb7b-4ee9-9ec9-ab95a2e45624", + "start": { + "$date": "2022-01-06T04:35:12.000Z" + }, + "end": { + "$date": "2022-01-06T05:01:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14efbd39-e83b-42a0-8983-2a12957087fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-06T05:06:42.000Z" + }, + "end": { + "$date": "2022-01-06T09:47:10.000Z" + }, + "events": [ + { + "uuid": "607834c3-dfd2-4708-ac2f-20060c57975a", + "start": { + "$date": "2022-01-06T05:06:42.000Z" + }, + "end": { + "$date": "2022-01-06T09:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a76c4e2f-ae3e-41f5-a99e-f2f14e0c9840", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-06T05:22:13.000Z" + }, + "end": { + "$date": "2022-01-06T06:50:50.000Z" + }, + "events": [ + { + "uuid": "d9c33285-ffb9-4238-8e50-3121307d30fc", + "start": { + "$date": "2022-01-06T05:22:13.000Z" + }, + "end": { + "$date": "2022-01-06T06:50:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", + "uuid": "fb3e1ce1-0faf-4fba-8baa-990d22556edf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T06:09:16.000Z" + }, + "end": { + "$date": "2022-01-06T06:29:12.000Z" + }, + "events": [ + { + "uuid": "008224ad-c091-48da-9017-6fd6aa406b41", + "start": { + "$date": "2022-01-06T06:09:16.000Z" + }, + "end": { + "$date": "2022-01-06T06:29:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d367d26-4d29-4397-b71a-d7c5f211a442", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T05:38:16.000Z" + }, + "end": { + "$date": "2022-01-06T06:17:35.000Z" + }, + "events": [ + { + "uuid": "40fcbd7a-1477-4509-b71d-73f783f538b1", + "start": { + "$date": "2022-01-06T05:38:16.000Z" + }, + "end": { + "$date": "2022-01-06T06:17:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2dc39bb-7b8f-43cc-a1a9-9869252af789", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T06:18:50.000Z" + }, + "end": { + "$date": "2022-01-06T06:59:06.000Z" + }, + "events": [ + { + "uuid": "d88cf2ea-3be2-4078-a2b2-5e2433274392", + "start": { + "$date": "2022-01-06T06:18:50.000Z" + }, + "end": { + "$date": "2022-01-06T06:59:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "10b684da-64fa-4207-99e1-3decef2da8f0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-06T06:40:51.000Z" + }, + "end": { + "$date": "2022-01-06T09:24:01.000Z" + }, + "events": [ + { + "uuid": "db0e8d48-d246-431b-9f46-d0298b420ac5", + "start": { + "$date": "2022-01-06T06:40:51.000Z" + }, + "end": { + "$date": "2022-01-06T09:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32c9e812-c280-4cc8-ad91-e35cc5020b0e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T06:59:55.000Z" + }, + "end": { + "$date": "2022-01-06T07:37:02.000Z" + }, + "events": [ + { + "uuid": "e36f5176-c250-4f2c-8ba7-87a4c52af07b", + "start": { + "$date": "2022-01-06T06:59:55.000Z" + }, + "end": { + "$date": "2022-01-06T07:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ce734bd9-edc2-4ee0-94ef-cfe96f3cf473", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-06T16:36:56.000Z" + }, + "end": { + "$date": "2022-01-06T17:15:37.000Z" + }, + "events": [ + { + "uuid": "65b8f5fd-967e-407b-9080-86cfd7d7f840", + "start": { + "$date": "2022-01-06T16:36:56.000Z" + }, + "end": { + "$date": "2022-01-06T17:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "1eba7fb2-7fc7-44df-ae4b-99052d1902fe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-06T22:52:15.000Z" + }, + "end": { + "$date": "2022-01-06T23:47:42.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-06T22:52:15.000Z" + }, + "end": { + "$date": "2022-01-06T23:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "901cc764-5949-4d35-96da-200a0d92bef5", + "uuid": "f8d7d871-96b1-4c60-bd3f-31262727ff89", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T22:56:48.000Z" + }, + "end": { + "$date": "2022-01-06T23:36:31.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-06T22:56:48.000Z" + }, + "end": { + "$date": "2022-01-06T23:36:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "901cc764-5949-4d35-96da-200a0d92bef5", + "uuid": "5574dea4-2fd1-4f06-81ec-7e212cd7a0a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-06T23:36:37.000Z" + }, + "end": { + "$date": "2022-01-07T00:09:22.000Z" + }, + "events": [ + { + "uuid": "b46cbe85-9640-43c0-a487-44067b28c10e", + "start": { + "$date": "2022-01-06T23:36:37.000Z" + }, + "end": { + "$date": "2022-01-07T00:09:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2e308032-d760-47bb-be5d-50ccf4688643", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-06T23:49:57.000Z" + }, + "end": { + "$date": "2022-01-07T02:02:37.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-06T23:49:57.000Z" + }, + "end": { + "$date": "2022-01-07T02:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "901cc764-5949-4d35-96da-200a0d92bef5", + "uuid": "42119f86-4ef2-4bcc-9529-636373d39a1f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T00:09:33.000Z" + }, + "end": { + "$date": "2022-01-07T01:41:24.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-01-07T00:09:33.000Z" + }, + "end": { + "$date": "2022-01-07T01:41:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "c4920bcf-9d9a-4714-8b96-90ecaf648ffe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-07T01:01:57.000Z" + }, + "end": { + "$date": "2022-01-07T01:04:12.000Z" + }, + "events": [ + { + "uuid": "6f2ee2e8-4ce0-4a5f-ad80-bb22f548ce00", + "start": { + "$date": "2022-01-07T01:01:57.000Z" + }, + "end": { + "$date": "2022-01-07T01:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "a1d80ee0-aed4-45a8-a774-2d2d66e42efc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-07T01:04:22.000Z" + }, + "end": { + "$date": "2022-01-07T02:15:28.000Z" + }, + "events": [ + { + "uuid": "0952224f-3700-4fa0-ad47-02548b4f987c", + "start": { + "$date": "2022-01-07T01:04:22.000Z" + }, + "end": { + "$date": "2022-01-07T02:15:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "901cc764-5949-4d35-96da-200a0d92bef5", + "uuid": "9b7c1398-c7a9-48bd-872a-57822d68cac1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T01:46:40.000Z" + }, + "end": { + "$date": "2022-01-07T02:06:20.000Z" + }, + "events": [ + { + "uuid": "bc20ea92-65c6-4bc1-8c93-d8452fbe063d", + "start": { + "$date": "2022-01-07T01:46:40.000Z" + }, + "end": { + "$date": "2022-01-07T02:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "ad660e25-ec2e-4f00-9580-52129f185c39", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-07T01:59:37.000Z" + }, + "end": { + "$date": "2022-01-07T02:35:09.000Z" + }, + "events": [ + { + "uuid": "9bb37b44-e42c-47ab-8063-10f8213a2ea3", + "start": { + "$date": "2022-01-07T01:59:37.000Z" + }, + "end": { + "$date": "2022-01-07T02:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c36e5370-3b2e-4f6d-a84e-aaebd7a90f10", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-07T02:17:03.000Z" + }, + "end": { + "$date": "2022-01-07T02:21:08.000Z" + }, + "events": [ + { + "uuid": "768c2875-9faf-4516-ba91-1ec5df71d701", + "start": { + "$date": "2022-01-07T02:17:03.000Z" + }, + "end": { + "$date": "2022-01-07T02:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "93e19257-9442-4ff3-bfa1-5808bfcc9bd3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-07T02:17:17.000Z" + }, + "end": { + "$date": "2022-01-07T02:21:16.000Z" + }, + "events": [ + { + "uuid": "8ad5950c-c7c8-4bc8-bca7-4ef45a6c2206", + "start": { + "$date": "2022-01-07T02:17:17.000Z" + }, + "end": { + "$date": "2022-01-07T02:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "82599c3d-d00a-43c8-baeb-1db6e798799e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-07T02:23:38.000Z" + }, + "end": { + "$date": "2022-01-07T06:14:32.000Z" + }, + "events": [ + { + "uuid": "ffa0196b-4578-4fab-80c8-32a5222a13ad", + "start": { + "$date": "2022-01-07T02:23:38.000Z" + }, + "end": { + "$date": "2022-01-07T06:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "9f4fe669-a66d-49de-b49c-cd3ba64a94da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T02:45:42.000Z" + }, + "end": { + "$date": "2022-01-07T03:41:33.000Z" + }, + "events": [ + { + "uuid": "6e5a56b1-c3be-4f30-9455-4607b0c5af40", + "start": { + "$date": "2022-01-07T02:45:42.000Z" + }, + "end": { + "$date": "2022-01-07T03:41:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "41478460-c0bc-4382-a4e5-2dae713ce7ae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-07T02:47:45.000Z" + }, + "end": { + "$date": "2022-01-07T03:41:52.000Z" + }, + "events": [ + { + "uuid": "81861615-46ec-43bb-a9ac-3f9f08404a5f", + "start": { + "$date": "2022-01-07T02:47:45.000Z" + }, + "end": { + "$date": "2022-01-07T03:41:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "6ca098f0-d722-4d7c-adf4-502457064c8a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-07T03:47:03.000Z" + }, + "end": { + "$date": "2022-01-07T05:33:07.000Z" + }, + "events": [ + { + "uuid": "92dc077e-084a-4acf-bf08-b561198540cb", + "start": { + "$date": "2022-01-07T03:47:03.000Z" + }, + "end": { + "$date": "2022-01-07T05:29:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4dae199-120e-4395-aa60-39faca7c0e39", + "start": { + "$date": "2022-01-07T05:29:03.000Z" + }, + "end": { + "$date": "2022-01-07T05:33:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "5d9e56cb-7656-4c73-a26d-3c6f4af9ad91", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T05:02:07.000Z" + }, + "end": { + "$date": "2022-01-07T05:37:24.000Z" + }, + "events": [ + { + "uuid": "b4350fa3-6c37-4f28-b42a-57c7254f3351", + "start": { + "$date": "2022-01-07T05:02:07.000Z" + }, + "end": { + "$date": "2022-01-07T05:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "3e7c3a6c-67c4-4755-b15d-bd3f7ded0501", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-07T05:02:41.000Z" + }, + "end": { + "$date": "2022-01-07T05:11:57.000Z" + }, + "events": [ + { + "uuid": "b717d909-fe24-4efa-9d68-0633936b1b50", + "start": { + "$date": "2022-01-07T05:02:41.000Z" + }, + "end": { + "$date": "2022-01-07T05:11:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "697cc878-a0e5-4f91-a5f1-bcbe7eb3fcf7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-07T05:12:38.000Z" + }, + "end": { + "$date": "2022-01-07T05:41:44.000Z" + }, + "events": [ + { + "uuid": "8a1bdfb2-e9d5-411b-9ecb-f4450b16db5a", + "start": { + "$date": "2022-01-07T05:12:38.000Z" + }, + "end": { + "$date": "2022-01-07T05:41:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "81ed9bd0-fc20-47d1-bba3-16b2204b7f1a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-07T05:33:47.000Z" + }, + "end": { + "$date": "2022-01-07T07:25:46.000Z" + }, + "events": [ + { + "uuid": "eba0ebcf-57c9-46be-a4d6-6cdef42b9cbd", + "start": { + "$date": "2022-01-07T05:33:47.000Z" + }, + "end": { + "$date": "2022-01-07T07:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "1c97d658-96ff-4abd-a097-8a4d9516a4a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T05:38:34.000Z" + }, + "end": { + "$date": "2022-01-07T06:44:36.000Z" + }, + "events": [ + { + "uuid": "f145f2de-ef17-471c-9c0a-0d63aa171928", + "start": { + "$date": "2022-01-07T05:38:34.000Z" + }, + "end": { + "$date": "2022-01-07T06:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "02bc7961-7b89-462c-ab36-3ddd63baedb8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-07T05:47:09.000Z" + }, + "end": { + "$date": "2022-01-07T07:25:38.000Z" + }, + "events": [ + { + "uuid": "da927313-da20-4ba6-b29e-107a3c300cec", + "start": { + "$date": "2022-01-07T05:47:09.000Z" + }, + "end": { + "$date": "2022-01-07T07:25:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0abc4c03-31f8-4718-bdb5-9492b3a937b8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T06:44:52.000Z" + }, + "end": { + "$date": "2022-01-07T07:14:06.000Z" + }, + "events": [ + { + "uuid": "ed34d46f-9071-4308-ac8a-bbb04fb9ab31", + "start": { + "$date": "2022-01-07T06:44:52.000Z" + }, + "end": { + "$date": "2022-01-07T07:14:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9d3b5212-2b6c-4052-98f9-d0c556f2a2d7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-07T07:31:39.000Z" + }, + "end": { + "$date": "2022-01-07T08:37:43.000Z" + }, + "events": [ + { + "uuid": "46f4742e-d840-4be0-916c-3eab2671e6af", + "start": { + "$date": "2022-01-07T07:31:39.000Z" + }, + "end": { + "$date": "2022-01-07T08:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e1beaf7b-21c6-49ef-a877-e0ed0b9afab3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-07T16:09:48.000Z" + }, + "end": { + "$date": "2022-01-07T17:22:37.000Z" + }, + "events": [ + { + "uuid": "38dace1c-af05-48a4-aa01-c00fd369c172", + "start": { + "$date": "2022-01-07T16:09:48.000Z" + }, + "end": { + "$date": "2022-01-07T16:23:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "acd5aeeb-22f6-4a2a-a02d-bdcaf6d66171", + "start": { + "$date": "2022-01-07T16:23:48.000Z" + }, + "end": { + "$date": "2022-01-07T16:45:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "81ce415a-31a7-4b2e-9eba-c8a57e4242c0", + "start": { + "$date": "2022-01-07T16:45:48.000Z" + }, + "end": { + "$date": "2022-01-07T17:22:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a4ff0401-bdc6-4a0f-b84b-f952607f7209", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-07T17:26:44.000Z" + }, + "end": { + "$date": "2022-01-07T19:47:16.000Z" + }, + "events": [ + { + "uuid": "e6a5d6c7-a0cd-45fc-aff0-8e3ad52362f9", + "start": { + "$date": "2022-01-07T17:26:44.000Z" + }, + "end": { + "$date": "2022-01-07T19:47:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b79444c7-b018-4d00-9e5d-0307c5a18c62", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-07T17:40:40.000Z" + }, + "end": { + "$date": "2022-01-07T18:03:35.000Z" + }, + "events": [ + { + "uuid": "0a911e92-456c-4082-becc-f49fc10fbc2d", + "start": { + "$date": "2022-01-07T17:40:40.000Z" + }, + "end": { + "$date": "2022-01-07T18:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "600b378e-fae7-45f2-8131-e5921ddf10ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-07T18:03:57.000Z" + }, + "end": { + "$date": "2022-01-07T18:05:07.000Z" + }, + "events": [ + { + "uuid": "5821ebd1-68b5-4024-a905-88097c8efc40", + "start": { + "$date": "2022-01-07T18:03:57.000Z" + }, + "end": { + "$date": "2022-01-07T18:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7090f2cf-a477-47ba-b4d1-7b19687fbd09", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-07T18:07:23.000Z" + }, + "end": { + "$date": "2022-01-07T18:39:53.000Z" + }, + "events": [ + { + "uuid": "89244f05-3c9a-4dbc-b50b-debeaaddeb2c", + "start": { + "$date": "2022-01-07T18:07:23.000Z" + }, + "end": { + "$date": "2022-01-07T18:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fd84108-1ae4-4a1b-8394-60f312a2e16e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-07T18:42:17.000Z" + }, + "end": { + "$date": "2022-01-07T18:57:46.000Z" + }, + "events": [ + { + "uuid": "d9acbaef-4f83-46c1-871e-952174fc0260", + "start": { + "$date": "2022-01-07T18:42:17.000Z" + }, + "end": { + "$date": "2022-01-07T18:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "167082da-afde-4f9c-91e1-8a32ce32243d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-07T19:09:39.000Z" + }, + "end": { + "$date": "2022-01-07T19:42:05.000Z" + }, + "events": [ + { + "uuid": "e3896184-3fb6-4ee6-be6f-93f5b9ceeeac", + "start": { + "$date": "2022-01-07T19:09:39.000Z" + }, + "end": { + "$date": "2022-01-07T19:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72b8ec8d-ba6c-4785-ab23-8a642b4e5f1c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-07T21:19:56.000Z" + }, + "end": { + "$date": "2022-01-07T21:56:49.000Z" + }, + "events": [ + { + "uuid": "4aa6fe22-680c-4537-a3e8-1e1718fa938c", + "start": { + "$date": "2022-01-07T21:19:56.000Z" + }, + "end": { + "$date": "2022-01-07T21:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "e0b03c66-da6d-4061-a475-d470ce24beee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-07T20:39:13.000Z" + }, + "end": { + "$date": "2022-01-07T20:50:40.000Z" + }, + "events": [ + { + "uuid": "6036b938-4cb7-435c-886a-1394ed858f21", + "start": { + "$date": "2022-01-07T20:39:13.000Z" + }, + "end": { + "$date": "2022-01-07T20:50:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7083c9bf-ba75-479a-84db-48658fc90e60", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-07T22:01:47.000Z" + }, + "end": { + "$date": "2022-01-07T22:35:25.000Z" + }, + "events": [ + { + "uuid": "85aefe3a-9912-4ef4-b2f0-0403dbe1f3fe", + "start": { + "$date": "2022-01-07T22:01:47.000Z" + }, + "end": { + "$date": "2022-01-07T22:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "901cc764-5949-4d35-96da-200a0d92bef5", + "uuid": "3882175d-18e5-4c9a-93ce-ff7487f4dd87", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T22:15:42.000Z" + }, + "end": { + "$date": "2022-01-07T23:23:00.000Z" + }, + "events": [ + { + "uuid": "e4fcf948-b098-499e-9ab7-ebda533eb713", + "start": { + "$date": "2022-01-07T22:15:42.000Z" + }, + "end": { + "$date": "2022-01-07T23:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "10726a4a-e077-4f35-8315-4d84e6e03a1c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-07T22:58:30.000Z" + }, + "end": { + "$date": "2022-01-08T05:34:20.000Z" + }, + "events": [ + { + "uuid": "a3fa2efb-a0ac-417e-9ceb-24d98203757c", + "start": { + "$date": "2022-01-07T22:58:30.000Z" + }, + "end": { + "$date": "2022-01-08T00:41:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "68e2b3e4-c02f-467c-ba6d-714801ef4359", + "start": { + "$date": "2022-01-08T00:41:30.000Z" + }, + "end": { + "$date": "2022-01-08T00:45:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa663ffa-dfaa-4dc6-891e-22b0236e4c4f", + "start": { + "$date": "2022-01-08T00:45:30.000Z" + }, + "end": { + "$date": "2022-01-08T05:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "361c7be9-784a-4575-8895-a0b7cbc78ae6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-07T23:23:16.000Z" + }, + "end": { + "$date": "2022-01-08T00:19:30.000Z" + }, + "events": [ + { + "uuid": "9f204108-7f0f-469c-976e-26cfc27a5c6d", + "start": { + "$date": "2022-01-07T23:23:16.000Z" + }, + "end": { + "$date": "2022-01-08T00:19:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "8fe3a8fe-b848-4baf-9e1d-9cd10a01fede", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T00:22:41.000Z" + }, + "end": { + "$date": "2022-01-08T01:10:11.000Z" + }, + "events": [ + { + "uuid": "ef99b6b9-32e7-477a-8c2b-e91d926dda91", + "start": { + "$date": "2022-01-08T00:22:41.000Z" + }, + "end": { + "$date": "2022-01-08T01:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "60ee41ee-c8f9-4d6b-9ddb-6eb8cb785b19", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T01:28:21.000Z" + }, + "end": { + "$date": "2022-01-08T02:16:47.000Z" + }, + "events": [ + { + "uuid": "a1e37a1b-52f6-44b6-a5f9-a5937bc527f1", + "start": { + "$date": "2022-01-08T01:28:21.000Z" + }, + "end": { + "$date": "2022-01-08T02:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "5796e5f6-8be2-47c1-a98a-f9d766836ab9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T01:46:36.000Z" + }, + "end": { + "$date": "2022-01-08T02:40:22.000Z" + }, + "events": [ + { + "uuid": "6bb112ee-3406-46aa-87c0-2220511593e8", + "start": { + "$date": "2022-01-08T01:46:36.000Z" + }, + "end": { + "$date": "2022-01-08T02:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cf5c614b-9352-425e-8df3-edeb486b81d9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T03:07:16.000Z" + }, + "end": { + "$date": "2022-01-08T04:25:00.000Z" + }, + "events": [ + { + "uuid": "4664c90f-a1f5-458c-b3b7-4dd94149c6c5", + "start": { + "$date": "2022-01-08T03:07:16.000Z" + }, + "end": { + "$date": "2022-01-08T04:25:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4a4faf94-ab10-4461-83ed-cf0043b22d7c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T03:08:42.000Z" + }, + "end": { + "$date": "2022-01-08T03:22:49.000Z" + }, + "events": [ + { + "uuid": "83aee239-b4d5-458a-b17c-d82adce73c35", + "start": { + "$date": "2022-01-08T03:08:42.000Z" + }, + "end": { + "$date": "2022-01-08T03:22:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "325ac6e8-b804-4416-b213-1e462d846639", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T03:29:29.000Z" + }, + "end": { + "$date": "2022-01-08T04:09:58.000Z" + }, + "events": [ + { + "uuid": "4fe5051f-1ebf-444e-a1c4-6248220c2467", + "start": { + "$date": "2022-01-08T03:29:29.000Z" + }, + "end": { + "$date": "2022-01-08T04:09:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79e50b9f-ece8-403f-9ff8-ebb1d88d4ac5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T04:13:39.000Z" + }, + "end": { + "$date": "2022-01-08T04:35:06.000Z" + }, + "events": [ + { + "uuid": "3b4dce5b-0206-4557-b599-f811d19178f2", + "start": { + "$date": "2022-01-08T04:13:39.000Z" + }, + "end": { + "$date": "2022-01-08T04:24:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb0d8ceb-575e-4867-b926-71983df89d8a", + "start": { + "$date": "2022-01-08T04:24:39.000Z" + }, + "end": { + "$date": "2022-01-08T04:35:06.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "af04402e-fede-4215-bb15-53a3ab4e214a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T04:25:40.000Z" + }, + "end": { + "$date": "2022-01-08T05:05:07.000Z" + }, + "events": [ + { + "uuid": "f2ab776e-f7d3-4ee5-93d5-6bb194bb9e25", + "start": { + "$date": "2022-01-08T04:25:40.000Z" + }, + "end": { + "$date": "2022-01-08T05:05:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a27e04ec-6f59-4be7-a89b-26c0cb041de6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T04:32:56.000Z" + }, + "end": { + "$date": "2022-01-08T04:38:51.000Z" + }, + "events": [ + { + "uuid": "84b871a2-914d-49a9-8df1-24ed23d97947", + "start": { + "$date": "2022-01-08T04:32:56.000Z" + }, + "end": { + "$date": "2022-01-08T04:38:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3ec87b23-a679-4a7d-bcd3-eb7071256790", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T04:35:16.000Z" + }, + "end": { + "$date": "2022-01-08T04:38:00.000Z" + }, + "events": [ + { + "uuid": "177a1908-b99d-40b3-93ed-a0d2bf0dffa0", + "start": { + "$date": "2022-01-08T04:35:16.000Z" + }, + "end": { + "$date": "2022-01-08T04:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b98db137-d307-4589-b40d-8133f3d452e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T04:35:29.000Z" + }, + "end": { + "$date": "2022-01-08T04:44:40.000Z" + }, + "events": [ + { + "uuid": "e3d3319e-555f-46c2-b97c-5916280e6ca2", + "start": { + "$date": "2022-01-08T04:35:29.000Z" + }, + "end": { + "$date": "2022-01-08T04:44:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b43c360d-cc94-4e2e-81d2-071515dc28ce", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T04:36:54.000Z" + }, + "end": { + "$date": "2022-01-08T04:38:04.000Z" + }, + "events": [ + { + "uuid": "b65acc7f-fa32-406e-a00a-2a8bf31520a9", + "start": { + "$date": "2022-01-08T04:36:54.000Z" + }, + "end": { + "$date": "2022-01-08T04:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55f355e7-cbf1-4491-803d-244759194a85", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T04:44:43.000Z" + }, + "end": { + "$date": "2022-01-08T04:49:28.000Z" + }, + "events": [ + { + "uuid": "db37e8ef-54c7-4f8a-97d7-3ed3a672dc82", + "start": { + "$date": "2022-01-08T04:44:43.000Z" + }, + "end": { + "$date": "2022-01-08T04:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "64894ef5-f245-4a6f-9797-4d60e62a90a2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T04:48:27.000Z" + }, + "end": { + "$date": "2022-01-08T05:07:47.000Z" + }, + "events": [ + { + "uuid": "980d218c-410b-4cff-91d6-7dc87c346f44", + "start": { + "$date": "2022-01-08T04:48:27.000Z" + }, + "end": { + "$date": "2022-01-08T05:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "db278ce4-8db6-4030-b2b4-3bea5582527d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T04:49:06.000Z" + }, + "end": { + "$date": "2022-01-08T05:05:21.000Z" + }, + "events": [ + { + "uuid": "d8e12491-cfe6-442a-960f-d989c5400716", + "start": { + "$date": "2022-01-08T04:49:06.000Z" + }, + "end": { + "$date": "2022-01-08T05:05:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "863ecd53-9f82-4dbc-b687-e39a5afaa1db", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T04:49:20.000Z" + }, + "end": { + "$date": "2022-01-08T04:59:35.000Z" + }, + "events": [ + { + "uuid": "7d4f1c82-a0ca-411f-8bbd-513b8a4f2243", + "start": { + "$date": "2022-01-08T04:49:20.000Z" + }, + "end": { + "$date": "2022-01-08T04:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ec11a2b-6a46-4603-8f27-b83f7470282f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T04:49:29.000Z" + }, + "end": { + "$date": "2022-01-08T05:01:05.000Z" + }, + "events": [ + { + "uuid": "cb0d4663-0e1a-4b4c-98c8-2da28e76adae", + "start": { + "$date": "2022-01-08T04:49:29.000Z" + }, + "end": { + "$date": "2022-01-08T05:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "0d45d034-f26e-443f-9a5e-93798c8e66de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T04:49:48.000Z" + }, + "end": { + "$date": "2022-01-08T05:02:33.000Z" + }, + "events": [ + { + "uuid": "5e55f9f8-c51b-4450-bcb5-ec066f35cf08", + "start": { + "$date": "2022-01-08T04:49:48.000Z" + }, + "end": { + "$date": "2022-01-08T05:02:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "6eefe118-4c58-4e8c-88ec-2892e9ebaf18", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T04:59:41.000Z" + }, + "end": { + "$date": "2022-01-08T05:02:26.000Z" + }, + "events": [ + { + "uuid": "b01a72bb-f860-46d3-9403-7c4793aa7708", + "start": { + "$date": "2022-01-08T04:59:41.000Z" + }, + "end": { + "$date": "2022-01-08T05:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "fe048599-08f0-46eb-ac64-1091e075c376", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T05:02:51.000Z" + }, + "end": { + "$date": "2022-01-08T05:06:36.000Z" + }, + "events": [ + { + "uuid": "b6eaed73-7de8-453f-8ff2-58301b94dcdb", + "start": { + "$date": "2022-01-08T05:02:51.000Z" + }, + "end": { + "$date": "2022-01-08T05:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1aa33c8f-cecd-450e-b5ca-c4eb6ad5f467", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T05:32:46.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:45.000Z" + }, + "events": [ + { + "uuid": "bea8fa6b-1ed2-435f-8377-24b589afc242", + "start": { + "$date": "2022-01-08T05:32:46.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9884e1c1-d6a4-40c9-be37-ad74141722f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T05:32:42.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:42.000Z" + }, + "events": [ + { + "uuid": "194a008c-555e-4a2a-8e92-6cebbb08aecd", + "start": { + "$date": "2022-01-08T05:32:42.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dedc7fb1-9dda-4c89-9278-b1a61f72a8ef", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T05:10:46.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:52.000Z" + }, + "events": [ + { + "uuid": "20929172-444f-4a83-8c45-5c1756f3b8c9", + "start": { + "$date": "2022-01-08T05:10:46.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83f40226-8f0c-4cb7-966a-f96c76c23755", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T05:10:48.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:43.000Z" + }, + "events": [ + { + "uuid": "deffdf8e-2969-4df0-be20-cc06c5c0071f", + "start": { + "$date": "2022-01-08T05:10:48.000Z" + }, + "end": { + "$date": "2022-01-08T05:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7035315-1e4c-4cb9-bb8c-aef8e3e5375e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T05:09:48.000Z" + }, + "end": { + "$date": "2022-01-08T05:33:48.000Z" + }, + "events": [ + { + "uuid": "c871650e-944a-4075-870d-53ae56d07f22", + "start": { + "$date": "2022-01-08T05:09:48.000Z" + }, + "end": { + "$date": "2022-01-08T05:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "98e7a2ee-1875-4a1d-a9ba-f26e13b17dc5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T05:10:22.000Z" + }, + "end": { + "$date": "2022-01-08T05:31:58.000Z" + }, + "events": [ + { + "uuid": "72014033-b6e4-425d-aa64-608ba2d44d42", + "start": { + "$date": "2022-01-08T05:10:22.000Z" + }, + "end": { + "$date": "2022-01-08T05:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64e47ff4-2576-402e-8ad4-e770985ac805", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T05:40:16.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:29.000Z" + }, + "events": [ + { + "uuid": "4a3c5786-642c-4f05-abec-599102b529a3", + "start": { + "$date": "2022-01-08T05:40:16.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58623e5f-ac56-4cd2-96d7-4c11fd48cbb7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T05:40:16.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:32.000Z" + }, + "events": [ + { + "uuid": "bf44d739-8cc0-414d-86d6-3a7a9b7b8b7d", + "start": { + "$date": "2022-01-08T05:40:16.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f4d2943f-c09b-401f-8d3f-35d4a6f4141a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T05:40:18.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:29.000Z" + }, + "events": [ + { + "uuid": "7de05f1f-5cc4-49f9-8e5f-5b4d2a66dc49", + "start": { + "$date": "2022-01-08T05:40:18.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88269da2-26e9-43b5-bd97-e58a820faeb9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T05:40:14.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:24.000Z" + }, + "events": [ + { + "uuid": "561b05f3-a32e-4633-ace3-6961f5ed3d6e", + "start": { + "$date": "2022-01-08T05:40:14.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5089f405-0317-4505-889b-b6eecd3574fc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T05:40:22.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:28.000Z" + }, + "events": [ + { + "uuid": "533af049-f857-4ad9-b2d7-27935de80c20", + "start": { + "$date": "2022-01-08T05:40:22.000Z" + }, + "end": { + "$date": "2022-01-08T06:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cef6327c-dd8f-4f4e-9783-3a2c08575fca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-08T05:41:11.000Z" + }, + "end": { + "$date": "2022-01-08T08:15:04.000Z" + }, + "events": [ + { + "uuid": "60ad9810-9964-4550-bc1d-a8e5344f3b3c", + "start": { + "$date": "2022-01-08T05:41:11.000Z" + }, + "end": { + "$date": "2022-01-08T08:15:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc579cf6-0592-4b58-a973-ff2b0740f740", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T06:28:24.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:30.000Z" + }, + "events": [ + { + "uuid": "1b78adcd-c338-45cf-97b0-81acf0d460c6", + "start": { + "$date": "2022-01-08T06:28:24.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eb545e1-6460-46a3-906f-7b9ee0c883b7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T06:28:23.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:29.000Z" + }, + "events": [ + { + "uuid": "089df197-aaa9-44a7-ad3f-8714d0c99829", + "start": { + "$date": "2022-01-08T06:28:23.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5e56853-db3f-43d5-ba3c-1acccf20a671", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T06:28:35.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:39.000Z" + }, + "events": [ + { + "uuid": "6d1c0261-2c07-451f-bdc9-faffbeb37bd7", + "start": { + "$date": "2022-01-08T06:28:35.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a1e3980-5d95-40e9-a398-f2a53f1d00b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T06:28:27.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:34.000Z" + }, + "events": [ + { + "uuid": "88e83aed-c313-46ab-975e-feaab15fb549", + "start": { + "$date": "2022-01-08T06:28:27.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1391769-b734-4209-8b45-d52307788399", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-08T06:28:23.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:34.000Z" + }, + "events": [ + { + "uuid": "9d74cb5d-ff95-45e2-aa35-0e5d6b5cc124", + "start": { + "$date": "2022-01-08T06:28:23.000Z" + }, + "end": { + "$date": "2022-01-08T07:01:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a172dcc-37e2-460c-b850-8465817aad32", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T07:05:51.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:43.000Z" + }, + "events": [ + { + "uuid": "825ba72a-f02b-472f-a8b2-eea8e7787eb2", + "start": { + "$date": "2022-01-08T07:05:51.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1904f3ba-ce87-4ffc-9442-d88380581a8c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T07:05:56.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:46.000Z" + }, + "events": [ + { + "uuid": "eaf4b778-b011-4b63-8ca9-9bf43fa9cbc5", + "start": { + "$date": "2022-01-08T07:05:56.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7d82ab4-013d-4a48-9cd9-131828655ee5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T07:05:49.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:44.000Z" + }, + "events": [ + { + "uuid": "4ca98365-fd6a-43ee-88c5-a2cdd0764f50", + "start": { + "$date": "2022-01-08T07:05:49.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e75c966-4892-4125-9ca8-f37c957884bd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T07:05:53.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:49.000Z" + }, + "events": [ + { + "uuid": "be8d9dd0-08a5-4095-b78a-0a2ab3f53dfc", + "start": { + "$date": "2022-01-08T07:05:53.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d250b55-de8f-415c-afa1-f6ba728ee3de", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-08T07:05:49.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:51.000Z" + }, + "events": [ + { + "uuid": "dc240688-0ebf-465a-a232-1b1dacab1b65", + "start": { + "$date": "2022-01-08T07:05:49.000Z" + }, + "end": { + "$date": "2022-01-08T07:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b9b9025-3ca2-4254-84f7-101765f14cdf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T07:46:00.000Z" + }, + "end": { + "$date": "2022-01-08T07:51:55.000Z" + }, + "events": [ + { + "uuid": "18db5e02-5f1a-4879-8f32-a22ec72b8546", + "start": { + "$date": "2022-01-08T07:46:00.000Z" + }, + "end": { + "$date": "2022-01-08T07:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "6f3a0a54-eb97-4115-bc2c-09c66a296617", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T07:53:23.000Z" + }, + "end": { + "$date": "2022-01-08T07:53:42.000Z" + }, + "events": [ + { + "uuid": "1640204c-c079-4f45-912a-f9142e078f82", + "start": { + "$date": "2022-01-08T07:53:23.000Z" + }, + "end": { + "$date": "2022-01-08T07:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c29a0e30-62be-4471-ad40-959f89f4091f", + "uuid": "7e48fcff-005e-4fd2-bbd2-c55a2c64cba9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-08T07:56:33.000Z" + }, + "end": { + "$date": "2022-01-08T08:01:27.000Z" + }, + "events": [ + { + "uuid": "e54f4b26-03fd-4200-a0c9-0930c84a618b", + "start": { + "$date": "2022-01-08T07:56:33.000Z" + }, + "end": { + "$date": "2022-01-08T08:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3f02e69-c2f9-4294-a6ce-bc6816b8d2bd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-08T08:06:02.000Z" + }, + "end": { + "$date": "2022-01-08T08:10:37.000Z" + }, + "events": [ + { + "uuid": "147f40bf-2d0f-4385-b16b-4d89cb43d7b1", + "start": { + "$date": "2022-01-08T08:06:02.000Z" + }, + "end": { + "$date": "2022-01-08T08:10:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "cfb26455-aba6-4dd1-8667-c5ce41204e07", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-08T08:07:58.000Z" + }, + "end": { + "$date": "2022-01-08T08:36:11.000Z" + }, + "events": [ + { + "uuid": "962f7799-025a-4a9a-a024-a861fb7fb973", + "start": { + "$date": "2022-01-08T08:07:58.000Z" + }, + "end": { + "$date": "2022-01-08T08:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e285382b-0366-43b7-9cde-143dea7ba1b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T15:35:41.000Z" + }, + "end": { + "$date": "2022-01-08T15:57:16.000Z" + }, + "events": [ + { + "uuid": "3bccaa83-d7fb-4257-9767-c705700d6460", + "start": { + "$date": "2022-01-08T15:35:41.000Z" + }, + "end": { + "$date": "2022-01-08T15:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "025fbceb-b726-4559-9b59-5805bd19a4a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T15:39:26.000Z" + }, + "end": { + "$date": "2022-01-08T16:11:03.000Z" + }, + "events": [ + { + "uuid": "e00e0258-62ac-4ae9-b0aa-925356628f8f", + "start": { + "$date": "2022-01-08T15:39:26.000Z" + }, + "end": { + "$date": "2022-01-08T16:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "866f25d0-8f85-40d9-814f-170a5565b2bb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T16:03:32.000Z" + }, + "end": { + "$date": "2022-01-08T16:38:47.000Z" + }, + "events": [ + { + "uuid": "3c035fe7-cb8f-4b4e-a881-ffcc0946afea", + "start": { + "$date": "2022-01-08T16:03:32.000Z" + }, + "end": { + "$date": "2022-01-08T16:38:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "5784dc29-92c1-48c1-b603-b9526bdf250e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T16:12:03.000Z" + }, + "end": { + "$date": "2022-01-08T16:51:24.000Z" + }, + "events": [ + { + "uuid": "bcad744d-6fb1-40a2-89d2-a9e7594fa3e2", + "start": { + "$date": "2022-01-08T16:12:03.000Z" + }, + "end": { + "$date": "2022-01-08T16:51:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2dd58004-1b69-4eb6-b60c-0046bb64e220", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T16:46:02.000Z" + }, + "end": { + "$date": "2022-01-08T17:11:42.000Z" + }, + "events": [ + { + "uuid": "6aa732d3-0638-4610-9688-5d841b579616", + "start": { + "$date": "2022-01-08T16:46:02.000Z" + }, + "end": { + "$date": "2022-01-08T17:11:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "21e6876c-c282-40ff-aec2-4b93cb379b30", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T16:57:41.000Z" + }, + "end": { + "$date": "2022-01-08T18:25:00.000Z" + }, + "events": [ + { + "uuid": "b16a62e1-02de-4f28-9c66-b59c7f1ea801", + "start": { + "$date": "2022-01-08T16:57:41.000Z" + }, + "end": { + "$date": "2022-01-08T18:25:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "48506b9d-6d30-4bfe-8d85-15fa4cf57d75", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T16:57:55.000Z" + }, + "end": { + "$date": "2022-01-08T18:23:07.000Z" + }, + "events": [ + { + "uuid": "843e7891-464f-457a-9491-b26ddb4ed612", + "start": { + "$date": "2022-01-08T16:57:55.000Z" + }, + "end": { + "$date": "2022-01-08T18:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "8d0c9bcd-2518-4964-b5a7-238b1d770707", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-08T17:11:51.000Z" + }, + "end": { + "$date": "2022-01-08T21:19:40.000Z" + }, + "events": [ + { + "uuid": "692de78c-e257-42a7-b33c-559f17328db2", + "start": { + "$date": "2022-01-08T17:11:51.000Z" + }, + "end": { + "$date": "2022-01-08T21:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88d4e0bb-b689-4a5c-bd14-d39a0933d2ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T17:30:19.000Z" + }, + "end": { + "$date": "2022-01-08T18:03:12.000Z" + }, + "events": [ + { + "uuid": "44f499ea-e451-4d4b-b038-5d164452a9ca", + "start": { + "$date": "2022-01-08T17:30:19.000Z" + }, + "end": { + "$date": "2022-01-08T18:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d12039d0-09e5-40c2-92be-90173244d515", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T17:30:14.000Z" + }, + "end": { + "$date": "2022-01-08T18:03:09.000Z" + }, + "events": [ + { + "uuid": "6c207c98-b7aa-445e-affe-e07a10a98019", + "start": { + "$date": "2022-01-08T17:30:14.000Z" + }, + "end": { + "$date": "2022-01-08T18:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a83eb49a-6e23-4345-afa3-4f3cc7b820bd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T18:23:18.000Z" + }, + "end": { + "$date": "2022-01-08T23:06:27.000Z" + }, + "events": [ + { + "uuid": "938c70e3-fe50-4d1e-bb4f-684f1cb9dd19", + "start": { + "$date": "2022-01-08T18:23:18.000Z" + }, + "end": { + "$date": "2022-01-08T20:28:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eee30497-e594-4e96-bc11-7a8b113c6f98", + "start": { + "$date": "2022-01-08T20:28:18.000Z" + }, + "end": { + "$date": "2022-01-08T21:03:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5eda79d9-fdae-4996-b4bf-47e9bd9a7bcb", + "start": { + "$date": "2022-01-08T21:03:18.000Z" + }, + "end": { + "$date": "2022-01-08T23:06:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba7912fb-876e-43b5-8d42-9cb7a474c229", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T22:57:16.000Z" + }, + "end": { + "$date": "2022-01-08T22:57:20.000Z" + }, + "events": [ + { + "uuid": "c06e9116-416e-4c19-b020-ae7ecbc234de", + "start": { + "$date": "2022-01-08T22:57:16.000Z" + }, + "end": { + "$date": "2022-01-08T22:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "18768eed-c01b-471e-a7fb-32b73caa2aee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-08T18:49:59.000Z" + }, + "end": { + "$date": "2022-01-08T19:20:43.000Z" + }, + "events": [ + { + "uuid": "0e4719d3-357a-46a6-857c-0c142da07627", + "start": { + "$date": "2022-01-08T18:49:59.000Z" + }, + "end": { + "$date": "2022-01-08T18:50:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7fd3f4ff-a027-406f-99a4-1f0af8a823e0", + "start": { + "$date": "2022-01-08T18:50:59.000Z" + }, + "end": { + "$date": "2022-01-08T19:00:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20b24863-e568-46d6-a7b5-2e08bb8effbc", + "start": { + "$date": "2022-01-08T19:00:59.000Z" + }, + "end": { + "$date": "2022-01-08T19:20:43.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "107e5df1-7293-4468-abfa-06418c189ab7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T18:52:14.000Z" + }, + "end": { + "$date": "2022-01-08T19:19:28.000Z" + }, + "events": [ + { + "uuid": "b8a5f6e0-1fe2-4f3c-9d06-ca67836dc864", + "start": { + "$date": "2022-01-08T18:52:14.000Z" + }, + "end": { + "$date": "2022-01-08T19:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0cb61314-17d5-4927-94c7-1d7ead290a59", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-08T20:03:28.000Z" + }, + "end": { + "$date": "2022-01-08T20:04:52.000Z" + }, + "events": [ + { + "uuid": "a3bd9640-5372-4b36-aa68-f04c5cd3a61f", + "start": { + "$date": "2022-01-08T20:03:28.000Z" + }, + "end": { + "$date": "2022-01-08T20:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a675bb7c-a868-45c2-bd46-4b6e9a354a67", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T20:27:47.000Z" + }, + "end": { + "$date": "2022-01-08T20:40:59.000Z" + }, + "events": [ + { + "uuid": "3b64a0f2-5f4c-4df8-8f7b-856fbb68c626", + "start": { + "$date": "2022-01-08T20:27:47.000Z" + }, + "end": { + "$date": "2022-01-08T20:40:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "282bcca0-39c6-4fee-af83-563dea7d0db8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T21:11:15.000Z" + }, + "end": { + "$date": "2022-01-08T21:12:51.000Z" + }, + "events": [ + { + "uuid": "03fbd581-145c-4dcc-927d-46bbe056a148", + "start": { + "$date": "2022-01-08T21:11:15.000Z" + }, + "end": { + "$date": "2022-01-08T21:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "72f3b450-f7e7-4aa1-8409-302b553b7386", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T21:12:49.000Z" + }, + "end": { + "$date": "2022-01-08T22:29:27.000Z" + }, + "events": [ + { + "uuid": "e5330dc5-30bc-4748-8335-29294f81c40a", + "start": { + "$date": "2022-01-08T21:12:49.000Z" + }, + "end": { + "$date": "2022-01-08T22:29:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "64acf8ed-3185-4884-bc05-09d87eab3f6b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-08T21:13:26.000Z" + }, + "end": { + "$date": "2022-01-08T22:35:14.000Z" + }, + "events": [ + { + "uuid": "f0a360d1-eca0-41b0-b537-c518fd99ec6d", + "start": { + "$date": "2022-01-08T21:13:26.000Z" + }, + "end": { + "$date": "2022-01-08T22:35:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a42ceec7-0591-4721-a5bf-c7694af28783", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T21:15:12.000Z" + }, + "end": { + "$date": "2022-01-08T21:24:50.000Z" + }, + "events": [ + { + "uuid": "3332f87f-440d-4062-a0dd-147f7c22bc2d", + "start": { + "$date": "2022-01-08T21:15:12.000Z" + }, + "end": { + "$date": "2022-01-08T21:24:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "8dfa9d15-8bb8-4f60-8744-93b4d3851b7b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-08T21:40:45.000Z" + }, + "end": { + "$date": "2022-01-08T22:02:29.000Z" + }, + "events": [ + { + "uuid": "cffff7fa-02c4-4da7-8f44-ec61ffd7ff36", + "start": { + "$date": "2022-01-08T21:40:45.000Z" + }, + "end": { + "$date": "2022-01-08T22:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4dc7ca95-613c-4b8a-a9d6-e0a3e9629e98", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-08T21:44:45.000Z" + }, + "end": { + "$date": "2022-01-08T22:01:32.000Z" + }, + "events": [ + { + "uuid": "420d41b0-81bb-4adb-aee3-20c3d95e8844", + "start": { + "$date": "2022-01-08T21:44:45.000Z" + }, + "end": { + "$date": "2022-01-08T22:01:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaf55a97-cb46-4d20-b68a-c8e98a644da9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-08T22:03:42.000Z" + }, + "end": { + "$date": "2022-01-08T22:24:10.000Z" + }, + "events": [ + { + "uuid": "22d65b82-422b-4994-9552-013d23a147ba", + "start": { + "$date": "2022-01-08T22:03:42.000Z" + }, + "end": { + "$date": "2022-01-08T22:24:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f4167c5-b583-4837-9b14-a1af69d96244", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-08T22:26:25.000Z" + }, + "end": { + "$date": "2022-01-08T22:51:35.000Z" + }, + "events": [ + { + "uuid": "94eae75c-93af-4e9d-bbf9-97dc7fcedbd2", + "start": { + "$date": "2022-01-08T22:26:25.000Z" + }, + "end": { + "$date": "2022-01-08T22:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1148d818-62c5-47fc-8b83-00052385d639", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-08T22:54:58.000Z" + }, + "end": { + "$date": "2022-01-08T23:12:51.000Z" + }, + "events": [ + { + "uuid": "9d54c80b-3650-4a22-a77d-ae70c0821d7e", + "start": { + "$date": "2022-01-08T22:54:58.000Z" + }, + "end": { + "$date": "2022-01-08T23:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed0468e9-dbb6-4bd9-a55a-23c05f009a2b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T22:57:31.000Z" + }, + "end": { + "$date": "2022-01-08T23:05:46.000Z" + }, + "events": [ + { + "uuid": "7d7ae7cb-89e7-4df9-a8da-b17d6c6eb7b8", + "start": { + "$date": "2022-01-08T22:57:31.000Z" + }, + "end": { + "$date": "2022-01-08T23:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "713a1557-a4b4-48a0-81cb-36507781a96c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-08T23:05:57.000Z" + }, + "end": { + "$date": "2022-01-08T23:36:57.000Z" + }, + "events": [ + { + "uuid": "f7cee53a-e80c-4895-80be-d3d09af8a6d4", + "start": { + "$date": "2022-01-08T23:05:57.000Z" + }, + "end": { + "$date": "2022-01-08T23:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "37921005-fe8d-462e-a7cc-c63d193a6461", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-08T23:06:32.000Z" + }, + "end": { + "$date": "2022-01-09T00:53:28.000Z" + }, + "events": [ + { + "uuid": "3ecd7f4d-ddcd-47b2-abc6-a6d8c21c5d1e", + "start": { + "$date": "2022-01-08T23:06:32.000Z" + }, + "end": { + "$date": "2022-01-09T00:45:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a3c58d0-4c97-4d6f-bc37-f01727f21f95", + "start": { + "$date": "2022-01-09T00:45:32.000Z" + }, + "end": { + "$date": "2022-01-09T00:50:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3396eb50-a907-4a08-bd8c-de329bdbfa11", + "start": { + "$date": "2022-01-09T00:50:32.000Z" + }, + "end": { + "$date": "2022-01-09T00:53:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "203a7327-126d-4c7a-9137-c6f99920cd25", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-08T23:24:33.000Z" + }, + "end": { + "$date": "2022-01-09T00:03:28.000Z" + }, + "events": [ + { + "uuid": "88a200c8-a126-496f-8fbb-8709c27955cd", + "start": { + "$date": "2022-01-08T23:24:33.000Z" + }, + "end": { + "$date": "2022-01-09T00:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7704e711-4ffc-4ad0-90f5-5c014fc0fd95", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-08T23:14:55.000Z" + }, + "end": { + "$date": "2022-01-08T23:43:36.000Z" + }, + "events": [ + { + "uuid": "cd3b0e6d-2dbd-4da1-a348-1aef3fec9ca5", + "start": { + "$date": "2022-01-08T23:14:55.000Z" + }, + "end": { + "$date": "2022-01-08T23:43:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b955687f-7a7a-421e-9303-cfa5cd2a78e5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-08T23:44:51.000Z" + }, + "end": { + "$date": "2022-01-09T00:21:12.000Z" + }, + "events": [ + { + "uuid": "ac1a89c7-14ef-4d90-af89-6bee68ca1aac", + "start": { + "$date": "2022-01-08T23:44:51.000Z" + }, + "end": { + "$date": "2022-01-09T00:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a45529d-68e3-40a0-8f9a-d1ea842f4de5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-09T00:09:48.000Z" + }, + "end": { + "$date": "2022-01-09T00:46:28.000Z" + }, + "events": [ + { + "uuid": "d8e2079c-0934-4eab-bf4f-f20d84310e22", + "start": { + "$date": "2022-01-09T00:09:48.000Z" + }, + "end": { + "$date": "2022-01-09T00:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94a8f826-1f28-410f-aa08-9d12a3caff49", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-09T00:09:44.000Z" + }, + "end": { + "$date": "2022-01-09T00:46:14.000Z" + }, + "events": [ + { + "uuid": "e4c3490c-d14c-479a-8f67-6958c975f0a2", + "start": { + "$date": "2022-01-09T00:09:44.000Z" + }, + "end": { + "$date": "2022-01-09T00:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "4056fccc-e588-4241-aa53-f7237f9e541e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-09T00:33:47.000Z" + }, + "end": { + "$date": "2022-01-09T02:24:04.000Z" + }, + "events": [ + { + "uuid": "7d223cb3-c8ee-47e1-9a65-33fb6e788d12", + "start": { + "$date": "2022-01-09T00:33:47.000Z" + }, + "end": { + "$date": "2022-01-09T00:34:47.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8251bbe4-8d10-4a3c-bc4e-2eb66f4d15c0", + "start": { + "$date": "2022-01-09T00:34:47.000Z" + }, + "end": { + "$date": "2022-01-09T02:24:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c56e300a-0166-41aa-8507-7bd3a24d6726", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-09T00:52:09.000Z" + }, + "end": { + "$date": "2022-01-09T01:23:22.000Z" + }, + "events": [ + { + "uuid": "e21764b0-a6e6-4147-83f0-f092449f8287", + "start": { + "$date": "2022-01-09T00:52:09.000Z" + }, + "end": { + "$date": "2022-01-09T01:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3973576-cfec-4f84-a1a2-e7e245f9a144", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-09T00:52:10.000Z" + }, + "end": { + "$date": "2022-01-09T01:23:15.000Z" + }, + "events": [ + { + "uuid": "2cec8962-0bca-4ac2-9601-ce0fb20b05ca", + "start": { + "$date": "2022-01-09T00:52:10.000Z" + }, + "end": { + "$date": "2022-01-09T01:23:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "101aef4b-d0d8-4822-b6d9-f0928174a63b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T00:55:49.000Z" + }, + "end": { + "$date": "2022-01-09T01:41:40.000Z" + }, + "events": [ + { + "uuid": "cca2b98e-7a32-48b9-be3d-5f64ca978e3d", + "start": { + "$date": "2022-01-09T00:55:49.000Z" + }, + "end": { + "$date": "2022-01-09T01:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b448dacd-e862-4594-9153-b98ce5124fae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T01:04:45.000Z" + }, + "end": { + "$date": "2022-01-09T01:10:44.000Z" + }, + "events": [ + { + "uuid": "f08a87fa-d295-4095-bedb-7789bbdb527e", + "start": { + "$date": "2022-01-09T01:04:45.000Z" + }, + "end": { + "$date": "2022-01-09T01:10:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b17716f5-8fb1-405a-ad88-a49888a75f6f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T01:44:01.000Z" + }, + "end": { + "$date": "2022-01-09T01:57:28.000Z" + }, + "events": [ + { + "uuid": "3a65d008-61b6-4d1f-9e6a-9d43a73f3273", + "start": { + "$date": "2022-01-09T01:44:01.000Z" + }, + "end": { + "$date": "2022-01-09T01:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "d889848e-f4b4-471b-b5e0-dd2b54ec0931", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T01:50:30.000Z" + }, + "end": { + "$date": "2022-01-09T02:56:43.000Z" + }, + "events": [ + { + "uuid": "47d75873-990e-42fa-bd05-9bbdc71cf4ee", + "start": { + "$date": "2022-01-09T01:50:30.000Z" + }, + "end": { + "$date": "2022-01-09T02:56:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "f145286a-3b95-48dd-b8bc-0c179f25aec0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T01:50:58.000Z" + }, + "end": { + "$date": "2022-01-09T02:49:32.000Z" + }, + "events": [ + { + "uuid": "b3f5983c-6d31-442a-96b9-b84a4a42805a", + "start": { + "$date": "2022-01-09T01:50:58.000Z" + }, + "end": { + "$date": "2022-01-09T02:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0c1cc2b-d8aa-4968-83a9-40ee58994414", + "uuid": "d6f46aa2-e89a-421f-ba6f-2e0bd2eeb965", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T02:10:18.000Z" + }, + "end": { + "$date": "2022-01-09T02:50:09.000Z" + }, + "events": [ + { + "uuid": "ae542dfb-db54-4804-93ae-bdcc56eda010", + "start": { + "$date": "2022-01-09T02:10:18.000Z" + }, + "end": { + "$date": "2022-01-09T02:41:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b9a653a0-f26f-4da5-bbd5-0484250ed893", + "start": { + "$date": "2022-01-09T02:41:18.000Z" + }, + "end": { + "$date": "2022-01-09T02:50:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "69774d57-1c59-4105-ab4a-ccc979129619", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-09T02:38:40.000Z" + }, + "end": { + "$date": "2022-01-09T12:18:43.000Z" + }, + "events": [ + { + "uuid": "2efe831e-f76a-4b46-a467-59541b1298fb", + "start": { + "$date": "2022-01-09T02:38:40.000Z" + }, + "end": { + "$date": "2022-01-09T12:18:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06e0d8a4-8194-4e9b-95fc-246ed504c9a5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T02:41:58.000Z" + }, + "end": { + "$date": "2022-01-09T03:20:05.000Z" + }, + "events": [ + { + "uuid": "0027315b-ee70-4c6c-9fbc-7a55b3e669e6", + "start": { + "$date": "2022-01-09T02:41:58.000Z" + }, + "end": { + "$date": "2022-01-09T03:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "4e5e574e-8788-433f-b64e-f3537e120c37", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T02:49:47.000Z" + }, + "end": { + "$date": "2022-01-09T02:56:53.000Z" + }, + "events": [ + { + "uuid": "6205e98b-5e20-41a8-9215-f15368258429", + "start": { + "$date": "2022-01-09T02:49:47.000Z" + }, + "end": { + "$date": "2022-01-09T02:56:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1120e53-727a-4b95-9817-72f67e7ef3ba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T03:02:46.000Z" + }, + "end": { + "$date": "2022-01-09T03:45:19.000Z" + }, + "events": [ + { + "uuid": "6f210b1f-934a-4736-920a-1dd6b95a89d2", + "start": { + "$date": "2022-01-09T03:02:46.000Z" + }, + "end": { + "$date": "2022-01-09T03:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "dfcc6bd4-65f0-43ac-ba79-b0e5f61db448", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-09T02:50:12.000Z" + }, + "end": { + "$date": "2022-01-09T03:52:48.000Z" + }, + "events": [ + { + "uuid": "f64ddb39-2a13-462b-b53e-56a9e684749f", + "start": { + "$date": "2022-01-09T02:50:12.000Z" + }, + "end": { + "$date": "2022-01-09T03:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "1737b105-baa8-476d-addf-abc2f0928908", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-09T03:07:11.000Z" + }, + "end": { + "$date": "2022-01-09T03:30:26.000Z" + }, + "events": [ + { + "uuid": "ed73938c-d6b3-4cea-afb5-2a15d040cfd6", + "start": { + "$date": "2022-01-09T03:07:11.000Z" + }, + "end": { + "$date": "2022-01-09T03:30:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "4cbde8b9-896a-4918-9c55-ffbde39d2f54", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T03:17:11.000Z" + }, + "end": { + "$date": "2022-01-09T03:25:38.000Z" + }, + "events": [ + { + "uuid": "50d8748e-64af-4093-92ff-715089f51691", + "start": { + "$date": "2022-01-09T03:17:11.000Z" + }, + "end": { + "$date": "2022-01-09T03:25:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3d5744d0-5be2-471b-ab50-e3f8d5b865f2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T03:25:52.000Z" + }, + "end": { + "$date": "2022-01-09T03:48:24.000Z" + }, + "events": [ + { + "uuid": "1620c364-852e-46d7-b714-7006d233815a", + "start": { + "$date": "2022-01-09T03:25:52.000Z" + }, + "end": { + "$date": "2022-01-09T03:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02733b95-24f0-45f6-9ab7-591f07c9d899", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T03:25:58.000Z" + }, + "end": { + "$date": "2022-01-09T05:19:07.000Z" + }, + "events": [ + { + "uuid": "c50588b2-2cc8-4075-bfe1-fc5bbc1d773b", + "start": { + "$date": "2022-01-09T03:25:58.000Z" + }, + "end": { + "$date": "2022-01-09T05:19:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cd51f23d-0ffd-4844-b727-5a98ef0d2103", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-09T04:09:51.000Z" + }, + "end": { + "$date": "2022-01-09T06:46:48.000Z" + }, + "events": [ + { + "uuid": "3476f104-689b-4262-94a7-d4a99b9e5579", + "start": { + "$date": "2022-01-09T04:09:51.000Z" + }, + "end": { + "$date": "2022-01-09T06:46:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "341edb07-da97-46cf-bb5b-c7cd68bc4804", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T04:36:37.000Z" + }, + "end": { + "$date": "2022-01-09T05:20:31.000Z" + }, + "events": [ + { + "uuid": "86bf2e15-b365-42eb-a6e8-9965b78039f8", + "start": { + "$date": "2022-01-09T04:36:37.000Z" + }, + "end": { + "$date": "2022-01-09T05:20:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "888b0608-a309-4df5-afaf-4382361554d0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-09T04:59:21.000Z" + }, + "end": { + "$date": "2022-01-09T05:02:07.000Z" + }, + "events": [ + { + "uuid": "6020c691-29f4-45be-8339-aa3a81b33db8", + "start": { + "$date": "2022-01-09T04:59:21.000Z" + }, + "end": { + "$date": "2022-01-09T05:02:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "0480fa60-a022-43c5-8c78-3d766eadb0de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T05:03:44.000Z" + }, + "end": { + "$date": "2022-01-09T05:07:24.000Z" + }, + "events": [ + { + "uuid": "011f4a17-f794-4b5e-be5b-d6e8b4342a1f", + "start": { + "$date": "2022-01-09T05:03:44.000Z" + }, + "end": { + "$date": "2022-01-09T05:07:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a03cd01e-5d47-470c-93ef-f690d03d3ec2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-09T05:19:13.000Z" + }, + "end": { + "$date": "2022-01-09T05:20:48.000Z" + }, + "events": [ + { + "uuid": "923959cf-4690-41d3-92ef-950b36d7356f", + "start": { + "$date": "2022-01-09T05:19:13.000Z" + }, + "end": { + "$date": "2022-01-09T05:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "8d90242c-f504-462e-96ce-6fb2f8a5ed41", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T05:07:30.000Z" + }, + "end": { + "$date": "2022-01-09T05:11:10.000Z" + }, + "events": [ + { + "uuid": "9ecac9ba-bfc3-436a-8b98-676d3527c494", + "start": { + "$date": "2022-01-09T05:07:30.000Z" + }, + "end": { + "$date": "2022-01-09T05:11:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9815ac82-8a31-4c03-9ac1-886a36501b88", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-09T05:16:11.000Z" + }, + "end": { + "$date": "2022-01-09T05:23:42.000Z" + }, + "events": [ + { + "uuid": "f0a98deb-3e78-41e6-81c3-80fc67fd68d6", + "start": { + "$date": "2022-01-09T05:16:11.000Z" + }, + "end": { + "$date": "2022-01-09T05:23:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "d3e37c5e-ff4d-459c-8e0f-83f884b2ba10", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T05:21:21.000Z" + }, + "end": { + "$date": "2022-01-09T07:20:09.000Z" + }, + "events": [ + { + "uuid": "63ca7133-2c41-4c76-9428-f4b2307e6e17", + "start": { + "$date": "2022-01-09T05:21:21.000Z" + }, + "end": { + "$date": "2022-01-09T07:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "134effba-ee0a-4201-9fc9-d8ae9217bb2f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-09T06:43:31.000Z" + }, + "end": { + "$date": "2022-01-09T12:16:17.000Z" + }, + "events": [ + { + "uuid": "ee478905-ca53-4034-8b63-1ce3c914c1b7", + "start": { + "$date": "2022-01-09T06:43:31.000Z" + }, + "end": { + "$date": "2022-01-09T12:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "4db00f5e-2333-4b71-a5e0-cf43f62655d3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-09T05:23:56.000Z" + }, + "end": { + "$date": "2022-01-09T05:29:32.000Z" + }, + "events": [ + { + "uuid": "b78f28c8-4847-4c78-9baa-fd349faeed63", + "start": { + "$date": "2022-01-09T05:23:56.000Z" + }, + "end": { + "$date": "2022-01-09T05:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "2a666587-12c9-48bb-99e1-70ee71ec67a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T05:25:43.000Z" + }, + "end": { + "$date": "2022-01-09T08:00:24.000Z" + }, + "events": [ + { + "uuid": "59a78808-0231-4540-a308-76810ba81c0d", + "start": { + "$date": "2022-01-09T05:25:43.000Z" + }, + "end": { + "$date": "2022-01-09T08:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "864ff3d3-5d09-45fe-9af8-204e3778f5d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-09T05:41:44.000Z" + }, + "end": { + "$date": "2022-01-09T06:33:31.000Z" + }, + "events": [ + { + "uuid": "f469a90e-9477-411a-817b-093a7ebd8a23", + "start": { + "$date": "2022-01-09T05:41:44.000Z" + }, + "end": { + "$date": "2022-01-09T06:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ccecd0f-2602-4505-99f0-52675a7990a1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T05:32:43.000Z" + }, + "end": { + "$date": "2022-01-09T05:38:13.000Z" + }, + "events": [ + { + "uuid": "ef2b53f6-a785-4690-8344-f46369c25d55", + "start": { + "$date": "2022-01-09T05:32:43.000Z" + }, + "end": { + "$date": "2022-01-09T05:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ef2df91-3b28-4f2d-a301-b7c86ae9413a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-09T05:32:42.000Z" + }, + "end": { + "$date": "2022-01-09T05:38:14.000Z" + }, + "events": [ + { + "uuid": "d1143d47-70b0-40f3-b708-daef633e23f2", + "start": { + "$date": "2022-01-09T05:32:42.000Z" + }, + "end": { + "$date": "2022-01-09T05:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35689fcd-5e29-4808-8f36-8f3d4dc6ed0c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-09T05:41:43.000Z" + }, + "end": { + "$date": "2022-01-09T06:33:29.000Z" + }, + "events": [ + { + "uuid": "9e727bd8-9e5d-4cb6-9453-73b3b6964925", + "start": { + "$date": "2022-01-09T05:41:43.000Z" + }, + "end": { + "$date": "2022-01-09T06:33:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e14f3526-df7a-4dfa-a5c3-3601c20c2dd4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T05:41:43.000Z" + }, + "end": { + "$date": "2022-01-09T06:33:30.000Z" + }, + "events": [ + { + "uuid": "7e54ab69-1030-4ddf-9bea-b1f215a31b50", + "start": { + "$date": "2022-01-09T05:41:43.000Z" + }, + "end": { + "$date": "2022-01-09T06:33:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "4602169b-52c3-4096-a521-d9a94ab7b7b2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-09T05:44:09.000Z" + }, + "end": { + "$date": "2022-01-09T08:13:38.000Z" + }, + "events": [ + { + "uuid": "a572fe25-2679-4dba-8240-2e2e27a6dda2", + "start": { + "$date": "2022-01-09T05:44:09.000Z" + }, + "end": { + "$date": "2022-01-09T08:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7c67586b-750c-46f6-aef4-4b87b07b45c1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-09T06:02:34.000Z" + }, + "end": { + "$date": "2022-01-09T10:26:43.000Z" + }, + "events": [ + { + "uuid": "fdcf37bb-283a-4761-a376-d287ce687b57", + "start": { + "$date": "2022-01-09T06:02:34.000Z" + }, + "end": { + "$date": "2022-01-09T10:26:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "36934e4f-ac3d-42dd-8bed-7729945bfca0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-09T06:55:00.000Z" + }, + "end": { + "$date": "2022-01-09T07:43:46.000Z" + }, + "events": [ + { + "uuid": "6f09947b-4188-46fc-bb8f-e3bde83943d7", + "start": { + "$date": "2022-01-09T06:55:00.000Z" + }, + "end": { + "$date": "2022-01-09T07:43:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "527fba36-2864-4df4-ba89-f06ecefb2f66", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T16:33:35.000Z" + }, + "end": { + "$date": "2022-01-09T16:38:45.000Z" + }, + "events": [ + { + "uuid": "ad9a1fff-9794-40ec-805e-9ede4acec57b", + "start": { + "$date": "2022-01-09T16:33:35.000Z" + }, + "end": { + "$date": "2022-01-09T16:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "c22d5e01-19fd-41f6-8ff8-d13c18dfa8a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T16:39:00.000Z" + }, + "end": { + "$date": "2022-01-09T18:13:48.000Z" + }, + "events": [ + { + "uuid": "afe1f78f-72f8-47fd-bcc6-80176f2cdfc0", + "start": { + "$date": "2022-01-09T16:39:00.000Z" + }, + "end": { + "$date": "2022-01-09T18:13:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31db3857-3681-40ee-ab70-fad4ad5269ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-09T16:45:52.000Z" + }, + "end": { + "$date": "2022-01-09T17:12:17.000Z" + }, + "events": [ + { + "uuid": "3246d71f-3708-4990-aae5-576901a39319", + "start": { + "$date": "2022-01-09T16:45:52.000Z" + }, + "end": { + "$date": "2022-01-09T17:12:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5194e2b-e0a6-464f-b02d-557f04147acb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T17:11:18.000Z" + }, + "end": { + "$date": "2022-01-09T17:40:41.000Z" + }, + "events": [ + { + "uuid": "27b142ae-93fe-4774-80e8-97e0e95e5747", + "start": { + "$date": "2022-01-09T17:11:18.000Z" + }, + "end": { + "$date": "2022-01-09T17:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "0db89f48-2920-4ee4-bfa6-327d8a1ec176", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-09T17:21:29.000Z" + }, + "end": { + "$date": "2022-01-09T17:33:38.000Z" + }, + "events": [ + { + "uuid": "74d3e7a8-8193-4838-bac6-bfb8255d4b3d", + "start": { + "$date": "2022-01-09T17:21:29.000Z" + }, + "end": { + "$date": "2022-01-09T17:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "3806e212-555f-4b89-bc09-a544f0f74ed1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-09T17:36:44.000Z" + }, + "end": { + "$date": "2022-01-09T21:20:37.000Z" + }, + "events": [ + { + "uuid": "d582055b-daf8-4a02-880e-e047ed975754", + "start": { + "$date": "2022-01-09T17:36:44.000Z" + }, + "end": { + "$date": "2022-01-09T18:32:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "455e9903-6975-466f-aabd-13bca3f24b97", + "start": { + "$date": "2022-01-09T18:32:44.000Z" + }, + "end": { + "$date": "2022-01-09T19:07:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d123392-c063-4655-b425-45aee2f82561", + "start": { + "$date": "2022-01-09T19:07:44.000Z" + }, + "end": { + "$date": "2022-01-09T21:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6693bd39-960b-4317-882f-8ae7cffb9470", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T17:42:25.000Z" + }, + "end": { + "$date": "2022-01-09T18:11:42.000Z" + }, + "events": [ + { + "uuid": "07bfe7eb-dbd0-4a43-b300-fa6e5474f2e4", + "start": { + "$date": "2022-01-09T17:42:25.000Z" + }, + "end": { + "$date": "2022-01-09T18:11:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "406411ad-ad45-4217-a422-71f7c65f9e04", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T18:13:57.000Z" + }, + "end": { + "$date": "2022-01-09T18:18:08.000Z" + }, + "events": [ + { + "uuid": "6f77a769-b50b-41c4-b3fe-8b06e9c22515", + "start": { + "$date": "2022-01-09T18:13:57.000Z" + }, + "end": { + "$date": "2022-01-09T18:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "edda4a20-0599-4237-90c2-a38cc4f95185", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T18:15:44.000Z" + }, + "end": { + "$date": "2022-01-09T21:03:48.000Z" + }, + "events": [ + { + "uuid": "ef8f3802-0a94-437a-a853-eaeb8582c8de", + "start": { + "$date": "2022-01-09T18:15:44.000Z" + }, + "end": { + "$date": "2022-01-09T21:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "9fbdef41-f586-496c-abfe-60b4d6989222", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T18:19:28.000Z" + }, + "end": { + "$date": "2022-01-09T18:59:39.000Z" + }, + "events": [ + { + "uuid": "7bc0c41b-a7cc-41d1-8d2c-845c8553baa6", + "start": { + "$date": "2022-01-09T18:19:28.000Z" + }, + "end": { + "$date": "2022-01-09T18:59:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad9ba13f-eda8-4001-a9b6-0e6522a35f3b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T18:45:23.000Z" + }, + "end": { + "$date": "2022-01-09T19:16:51.000Z" + }, + "events": [ + { + "uuid": "d60dc197-6dfd-41c1-8a4c-778fb405df7b", + "start": { + "$date": "2022-01-09T18:45:23.000Z" + }, + "end": { + "$date": "2022-01-09T19:16:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40af2569-0fba-4ff9-a764-5fb8ade2bcf9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T19:21:31.000Z" + }, + "end": { + "$date": "2022-01-09T19:54:01.000Z" + }, + "events": [ + { + "uuid": "b760e564-64cf-4cbc-a3df-88ce51a9a25c", + "start": { + "$date": "2022-01-09T19:21:31.000Z" + }, + "end": { + "$date": "2022-01-09T19:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "c2112248-baec-4adb-befc-6d040e94a617", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-09T19:21:35.000Z" + }, + "end": { + "$date": "2022-01-09T20:19:21.000Z" + }, + "events": [ + { + "uuid": "b62c20d1-d85c-4982-b64f-ca826329616a", + "start": { + "$date": "2022-01-09T19:21:35.000Z" + }, + "end": { + "$date": "2022-01-09T20:19:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "58579083-746a-4f3d-96a7-d78cba0e6ead", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T19:26:22.000Z" + }, + "end": { + "$date": "2022-01-09T21:17:27.000Z" + }, + "events": [ + { + "uuid": "5dea53f0-be24-49ad-aad3-4b709c2f1ff0", + "start": { + "$date": "2022-01-09T19:26:22.000Z" + }, + "end": { + "$date": "2022-01-09T21:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a798dc5f-591c-45a8-b24e-59d43f2b06f3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T19:58:25.000Z" + }, + "end": { + "$date": "2022-01-09T20:21:17.000Z" + }, + "events": [ + { + "uuid": "5d128c58-5628-4add-bd41-0fc0ec3d5f79", + "start": { + "$date": "2022-01-09T19:58:25.000Z" + }, + "end": { + "$date": "2022-01-09T20:21:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "297f373f-034f-4677-9346-a7944282455b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T20:25:23.000Z" + }, + "end": { + "$date": "2022-01-09T20:51:00.000Z" + }, + "events": [ + { + "uuid": "1388e31a-d066-4cf0-92cb-d7eba014658a", + "start": { + "$date": "2022-01-09T20:25:23.000Z" + }, + "end": { + "$date": "2022-01-09T20:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d6744f6-493b-4411-841a-362075029af2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-09T20:51:52.000Z" + }, + "end": { + "$date": "2022-01-10T02:02:46.000Z" + }, + "events": [ + { + "uuid": "ae51488f-3892-48dd-9e6a-39ff48b64807", + "start": { + "$date": "2022-01-09T20:51:52.000Z" + }, + "end": { + "$date": "2022-01-09T21:02:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9bcf82e-27e7-4848-a62c-3e28e091a718", + "start": { + "$date": "2022-01-09T21:02:52.000Z" + }, + "end": { + "$date": "2022-01-09T21:03:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "81f28ecd-0a7e-4f78-99e9-0618a345bca0", + "start": { + "$date": "2022-01-09T21:03:52.000Z" + }, + "end": { + "$date": "2022-01-09T21:13:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "51ed94b8-5fb1-4012-b9c1-3886ce1cc1f2", + "start": { + "$date": "2022-01-09T21:13:52.000Z" + }, + "end": { + "$date": "2022-01-09T21:16:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b2903bd-261d-4e84-955c-62ae7339aff3", + "start": { + "$date": "2022-01-09T21:16:52.000Z" + }, + "end": { + "$date": "2022-01-10T02:02:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "1a31a051-cafb-416e-af73-8deec76a5b27", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-09T21:06:49.000Z" + }, + "end": { + "$date": "2022-01-10T00:51:36.000Z" + }, + "events": [ + { + "uuid": "ac8727d6-30eb-459e-8c40-5f1a887d6974", + "start": { + "$date": "2022-01-09T21:06:49.000Z" + }, + "end": { + "$date": "2022-01-09T21:24:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39082cc0-f49f-44df-9009-9e17ae5cf98f", + "start": { + "$date": "2022-01-09T21:24:49.000Z" + }, + "end": { + "$date": "2022-01-09T21:26:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "93def838-91fe-4228-86c1-b2b1d2c5ca96", + "start": { + "$date": "2022-01-09T21:26:49.000Z" + }, + "end": { + "$date": "2022-01-10T00:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "f455e134-697e-4d2b-aa5f-4462c6d3f466", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-09T21:11:00.000Z" + }, + "end": { + "$date": "2022-01-10T00:06:04.000Z" + }, + "events": [ + { + "uuid": "28e09a45-4313-4108-adc1-8fda9f610b68", + "start": { + "$date": "2022-01-09T21:11:00.000Z" + }, + "end": { + "$date": "2022-01-10T00:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9b3d964b-4e42-4fbc-ad62-85434d01b021", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T21:23:39.000Z" + }, + "end": { + "$date": "2022-01-09T22:11:45.000Z" + }, + "events": [ + { + "uuid": "863a19b6-838c-41d9-84ce-d00a6b88edd6", + "start": { + "$date": "2022-01-09T21:23:39.000Z" + }, + "end": { + "$date": "2022-01-09T22:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "126aba4f-a1dd-412f-8863-91155ca66824", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-09T21:45:14.000Z" + }, + "end": { + "$date": "2022-01-09T22:24:53.000Z" + }, + "events": [ + { + "uuid": "d78267d9-68c7-41c7-bd10-21818600f0b2", + "start": { + "$date": "2022-01-09T21:45:14.000Z" + }, + "end": { + "$date": "2022-01-09T22:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9b9efa26-8907-4854-83f1-d635860b6278", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T22:12:10.000Z" + }, + "end": { + "$date": "2022-01-09T22:39:13.000Z" + }, + "events": [ + { + "uuid": "30111256-b642-4d17-9310-ef38a5e5c73f", + "start": { + "$date": "2022-01-09T22:12:10.000Z" + }, + "end": { + "$date": "2022-01-09T22:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "62e47b5b-2c45-46ab-bb15-b0871f14ebca", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-09T23:24:15.000Z" + }, + "end": { + "$date": "2022-01-10T02:57:08.000Z" + }, + "events": [ + { + "uuid": "3202f303-6252-47ee-ba36-b2ade7ad0f07", + "start": { + "$date": "2022-01-09T23:24:15.000Z" + }, + "end": { + "$date": "2022-01-10T02:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "fc3824c1-f810-4fa3-84a6-30bb6f12a2ca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-10T00:50:25.000Z" + }, + "end": { + "$date": "2022-01-10T02:34:02.000Z" + }, + "events": [ + { + "uuid": "df35be8d-8594-4f6f-bf14-54ef45b9fdc3", + "start": { + "$date": "2022-01-10T00:50:25.000Z" + }, + "end": { + "$date": "2022-01-10T02:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "a0d43e84-839e-4540-b319-99368b1cfc60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-10T01:43:30.000Z" + }, + "end": { + "$date": "2022-01-10T01:59:55.000Z" + }, + "events": [ + { + "uuid": "f702a3ae-d7f8-4206-be97-b5e134bf4596", + "start": { + "$date": "2022-01-10T01:43:30.000Z" + }, + "end": { + "$date": "2022-01-10T01:59:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "12de78a8-b82d-4057-a604-614ce216d5a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-10T02:29:04.000Z" + }, + "end": { + "$date": "2022-01-10T03:12:30.000Z" + }, + "events": [ + { + "uuid": "34b216a3-d7c0-43cc-bcd9-07b6a455b4d2", + "start": { + "$date": "2022-01-10T02:29:04.000Z" + }, + "end": { + "$date": "2022-01-10T03:12:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "be7ce787-f142-4dc8-a974-2431918debe2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-10T02:57:29.000Z" + }, + "end": { + "$date": "2022-01-10T03:13:35.000Z" + }, + "events": [ + { + "uuid": "9a93c45b-0b52-4481-ad6d-0efe0dbb7e61", + "start": { + "$date": "2022-01-10T02:57:29.000Z" + }, + "end": { + "$date": "2022-01-10T03:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "57ebf9bd-9c0a-4f79-9082-c8705a4e0f68", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-10T03:02:25.000Z" + }, + "end": { + "$date": "2022-01-10T05:28:19.000Z" + }, + "events": [ + { + "uuid": "1727bbdc-70b7-4f10-ae43-c127df36f360", + "start": { + "$date": "2022-01-10T03:02:25.000Z" + }, + "end": { + "$date": "2022-01-10T05:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f407e816-bb6b-442e-8e9e-a4bb7d793d0b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-10T03:10:46.000Z" + }, + "end": { + "$date": "2022-01-10T07:51:19.000Z" + }, + "events": [ + { + "uuid": "d200fef9-4bbb-417e-9fb3-11b65d344efc", + "start": { + "$date": "2022-01-10T03:10:46.000Z" + }, + "end": { + "$date": "2022-01-10T07:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5c40f130-4c3a-41cd-be73-01fddada036a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-10T03:16:57.000Z" + }, + "end": { + "$date": "2022-01-10T08:06:33.000Z" + }, + "events": [ + { + "uuid": "43e65439-2451-49eb-b826-7cec73222688", + "start": { + "$date": "2022-01-10T03:16:57.000Z" + }, + "end": { + "$date": "2022-01-10T08:06:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b2cf58ef-5363-4fd7-9ef8-e60d8bd8dca0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-10T03:12:45.000Z" + }, + "end": { + "$date": "2022-01-10T04:18:37.000Z" + }, + "events": [ + { + "uuid": "6c0325c7-b6c1-455e-abab-a9bdb36f0c30", + "start": { + "$date": "2022-01-10T03:12:45.000Z" + }, + "end": { + "$date": "2022-01-10T04:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "ddd70549-99d9-4a75-a8c9-6b0f6ce04ad1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-10T03:22:21.000Z" + }, + "end": { + "$date": "2022-01-10T03:30:01.000Z" + }, + "events": [ + { + "uuid": "398ddab8-c493-4861-b8eb-e554258d520f", + "start": { + "$date": "2022-01-10T03:22:21.000Z" + }, + "end": { + "$date": "2022-01-10T03:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2532043b-a1a1-426a-8ee5-89b267f6f7c2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-10T03:25:57.000Z" + }, + "end": { + "$date": "2022-01-10T03:45:28.000Z" + }, + "events": [ + { + "uuid": "ef608b90-dae3-4d6e-bbbd-3a4fb85bfe88", + "start": { + "$date": "2022-01-10T03:25:57.000Z" + }, + "end": { + "$date": "2022-01-10T03:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "667dcd8d-4ef7-4858-ae75-5f759c3edd44", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-10T03:34:56.000Z" + }, + "end": { + "$date": "2022-01-10T03:36:43.000Z" + }, + "events": [ + { + "uuid": "4c702768-412b-4a28-a01a-1d2bb4d733ea", + "start": { + "$date": "2022-01-10T03:34:56.000Z" + }, + "end": { + "$date": "2022-01-10T03:36:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9034dda8-472b-4956-bffc-07ef127b8dcd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-10T03:37:11.000Z" + }, + "end": { + "$date": "2022-01-10T04:07:41.000Z" + }, + "events": [ + { + "uuid": "af196584-3eb3-4be7-9ef3-54686e2bc294", + "start": { + "$date": "2022-01-10T03:37:11.000Z" + }, + "end": { + "$date": "2022-01-10T04:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20ecab26-02c4-45d6-8d72-c016b1f3550c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-10T03:49:53.000Z" + }, + "end": { + "$date": "2022-01-10T04:19:01.000Z" + }, + "events": [ + { + "uuid": "af1c8214-0285-4853-9fe1-e093954402a1", + "start": { + "$date": "2022-01-10T03:49:53.000Z" + }, + "end": { + "$date": "2022-01-10T04:19:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db4ead34-3826-47e6-afbd-60aae596121e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-10T04:09:22.000Z" + }, + "end": { + "$date": "2022-01-10T04:49:25.000Z" + }, + "events": [ + { + "uuid": "84e22f5c-1814-424a-9f22-3e8240e1440b", + "start": { + "$date": "2022-01-10T04:09:22.000Z" + }, + "end": { + "$date": "2022-01-10T04:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2535b59-090c-4ddf-b8d4-5ac5f0691841", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-10T04:20:02.000Z" + }, + "end": { + "$date": "2022-01-10T05:01:35.000Z" + }, + "events": [ + { + "uuid": "111e9301-c272-4640-8767-a58459e77d4c", + "start": { + "$date": "2022-01-10T04:20:02.000Z" + }, + "end": { + "$date": "2022-01-10T05:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a95d616f-c7c9-4ce0-877e-06646fb76bff", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-10T04:25:38.000Z" + }, + "end": { + "$date": "2022-01-10T05:11:16.000Z" + }, + "events": [ + { + "uuid": "7099f5b4-f37d-4df0-8b67-ec5878c31809", + "start": { + "$date": "2022-01-10T04:25:38.000Z" + }, + "end": { + "$date": "2022-01-10T05:11:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf4250b0-a33a-4bba-a499-95fc36f7c6cf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-10T05:17:32.000Z" + }, + "end": { + "$date": "2022-01-10T07:51:27.000Z" + }, + "events": [ + { + "uuid": "9dc846a5-3b0f-4107-b6d9-f2e9658e25d9", + "start": { + "$date": "2022-01-10T05:17:32.000Z" + }, + "end": { + "$date": "2022-01-10T07:51:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "08b10137-81e4-4076-a0f4-e65e677cfc3b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-10T05:27:04.000Z" + }, + "end": { + "$date": "2022-01-10T05:45:04.000Z" + }, + "events": [ + { + "uuid": "53581d0f-c8cd-49e7-baaf-2900fac5c442", + "start": { + "$date": "2022-01-10T05:27:04.000Z" + }, + "end": { + "$date": "2022-01-10T05:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "e3cae6d7-b5cf-4500-804f-5674b5a128d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-10T05:45:30.000Z" + }, + "end": { + "$date": "2022-01-10T06:03:51.000Z" + }, + "events": [ + { + "uuid": "8985b532-f8b2-4f91-95e8-6e61d333eaa7", + "start": { + "$date": "2022-01-10T05:45:30.000Z" + }, + "end": { + "$date": "2022-01-10T06:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "d579b780-48de-4bff-8635-e3d5fa1e3231", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-10T06:04:12.000Z" + }, + "end": { + "$date": "2022-01-10T06:05:13.000Z" + }, + "events": [ + { + "uuid": "9b387000-dfa7-4186-9d20-ba17315e6c39", + "start": { + "$date": "2022-01-10T06:04:12.000Z" + }, + "end": { + "$date": "2022-01-10T06:05:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "15e403bc-0a71-497c-8778-3dae0f1a4dd0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-10T07:52:52.000Z" + }, + "end": { + "$date": "2022-01-10T08:03:59.000Z" + }, + "events": [ + { + "uuid": "01eb16d6-730b-4636-9550-b2401d6835f2", + "start": { + "$date": "2022-01-10T07:52:52.000Z" + }, + "end": { + "$date": "2022-01-10T08:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "6418ead3-6820-4505-a39c-ae3f0c4ca7f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T16:12:48.000Z" + }, + "end": { + "$date": "2022-01-10T17:17:52.000Z" + }, + "events": [ + { + "uuid": "347d5ecb-f72d-4e00-9a9d-2bc687008a46", + "start": { + "$date": "2022-01-10T16:12:48.000Z" + }, + "end": { + "$date": "2022-01-10T17:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "84764c6a-e8a1-406a-811b-c794cd77063e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-10T16:13:39.000Z" + }, + "end": { + "$date": "2022-01-10T16:36:14.000Z" + }, + "events": [ + { + "uuid": "64375cd2-750e-4e91-979a-c130e543f9da", + "start": { + "$date": "2022-01-10T16:13:39.000Z" + }, + "end": { + "$date": "2022-01-10T16:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "6e490f21-0cd8-4786-ba7a-e6bc11f97c08", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-10T16:40:03.000Z" + }, + "end": { + "$date": "2022-01-10T17:09:20.000Z" + }, + "events": [ + { + "uuid": "44155ecc-86c6-49cc-8a01-18d77568c036", + "start": { + "$date": "2022-01-10T16:40:03.000Z" + }, + "end": { + "$date": "2022-01-10T17:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "726e9927-25bc-4421-9433-bf383ff84af8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T17:19:03.000Z" + }, + "end": { + "$date": "2022-01-10T19:04:50.000Z" + }, + "events": [ + { + "uuid": "c22517cd-990f-424f-b9d5-9234ffcb34de", + "start": { + "$date": "2022-01-10T17:19:03.000Z" + }, + "end": { + "$date": "2022-01-10T19:04:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "2d673789-8ce0-429d-80c7-a22158ff3504", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-10T18:35:32.000Z" + }, + "end": { + "$date": "2022-01-10T18:46:57.000Z" + }, + "events": [ + { + "uuid": "9174ce8f-bb03-4ad2-b4b2-1c4dfe692360", + "start": { + "$date": "2022-01-10T18:35:32.000Z" + }, + "end": { + "$date": "2022-01-10T18:46:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "c29061aa-a283-446e-b25d-1f67f82037d1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T19:20:09.000Z" + }, + "end": { + "$date": "2022-01-10T19:25:02.000Z" + }, + "events": [ + { + "uuid": "22c705c2-ab7e-4a10-a03c-177fc44dabfd", + "start": { + "$date": "2022-01-10T19:20:09.000Z" + }, + "end": { + "$date": "2022-01-10T19:25:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bbc42a5c-8fec-413b-9de1-c9e1aeabd848", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T19:25:25.000Z" + }, + "end": { + "$date": "2022-01-10T20:54:18.000Z" + }, + "events": [ + { + "uuid": "ea812f0d-a172-488b-ba44-bb9a19833351", + "start": { + "$date": "2022-01-10T19:25:25.000Z" + }, + "end": { + "$date": "2022-01-10T20:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "21b32325-d77e-4351-99cb-0b9b187a29b3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-10T20:40:12.000Z" + }, + "end": { + "$date": "2022-01-11T00:53:45.000Z" + }, + "events": [ + { + "uuid": "7693075d-1a6d-4cfe-b7db-dd8cc12c8bfe", + "start": { + "$date": "2022-01-10T20:40:12.000Z" + }, + "end": { + "$date": "2022-01-10T21:52:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40144d1a-1827-469e-b75d-dc98e81c62f3", + "start": { + "$date": "2022-01-10T21:52:12.000Z" + }, + "end": { + "$date": "2022-01-10T22:34:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1220db2b-12f0-46b8-bb54-272861d64ca2", + "start": { + "$date": "2022-01-10T22:34:12.000Z" + }, + "end": { + "$date": "2022-01-11T00:39:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f0ac0946-2546-4d52-a88a-d8add6379269", + "start": { + "$date": "2022-01-11T00:39:12.000Z" + }, + "end": { + "$date": "2022-01-11T00:51:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "166ae308-174d-4aa9-80b2-ab31767cdc9f", + "start": { + "$date": "2022-01-11T00:51:12.000Z" + }, + "end": { + "$date": "2022-01-11T00:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "0fddfe41-21d5-4f99-91c2-d125002e0967", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T21:05:10.000Z" + }, + "end": { + "$date": "2022-01-10T22:16:49.000Z" + }, + "events": [ + { + "uuid": "244cebbf-82ca-48a8-8cd2-6a2ed0b1b5b9", + "start": { + "$date": "2022-01-10T21:05:10.000Z" + }, + "end": { + "$date": "2022-01-10T22:16:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "1e50f405-3c09-4ef2-b8d8-82d038691437", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-10T21:05:21.000Z" + }, + "end": { + "$date": "2022-01-10T21:35:36.000Z" + }, + "events": [ + { + "uuid": "260be580-928c-4849-9321-46ff0bd0db91", + "start": { + "$date": "2022-01-10T21:05:21.000Z" + }, + "end": { + "$date": "2022-01-10T21:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9f81b1d5-d2dc-4d31-934d-b65fd86197ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-10T21:12:39.000Z" + }, + "end": { + "$date": "2022-01-10T22:11:17.000Z" + }, + "events": [ + { + "uuid": "3b02dded-5bd0-4ed3-9afb-073cbef22ffc", + "start": { + "$date": "2022-01-10T21:12:39.000Z" + }, + "end": { + "$date": "2022-01-10T22:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "c0f8435a-2972-49e2-b11a-8d3d1ba99a45", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T22:30:37.000Z" + }, + "end": { + "$date": "2022-01-10T23:19:42.000Z" + }, + "events": [ + { + "uuid": "9d30442d-4246-49e5-85be-3c24672c1883", + "start": { + "$date": "2022-01-10T22:30:37.000Z" + }, + "end": { + "$date": "2022-01-10T23:19:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "95aa5fec-e9b9-4857-91c2-409a2941c87e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-10T23:20:18.000Z" + }, + "end": { + "$date": "2022-01-11T02:41:51.000Z" + }, + "events": [ + { + "uuid": "0b80f930-110d-4e59-a9c3-2b36f21070c8", + "start": { + "$date": "2022-01-10T23:20:18.000Z" + }, + "end": { + "$date": "2022-01-11T02:41:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ae66ce1-60b7-4211-ba7d-d97ff940dec8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-10T23:25:51.000Z" + }, + "end": { + "$date": "2022-01-10T23:38:24.000Z" + }, + "events": [ + { + "uuid": "b91b7ad5-89f4-4613-9eb8-20268b8e8cb0", + "start": { + "$date": "2022-01-10T23:25:51.000Z" + }, + "end": { + "$date": "2022-01-10T23:38:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", + "uuid": "d21bf7a5-25b9-4b38-9d45-335114179f5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-10T23:34:16.000Z" + }, + "end": { + "$date": "2022-01-11T00:21:51.000Z" + }, + "events": [ + { + "uuid": "0e4a1cb6-9d78-4fd8-8617-29da6ac070fb", + "start": { + "$date": "2022-01-10T23:34:16.000Z" + }, + "end": { + "$date": "2022-01-11T00:21:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9b042c1-5f81-4f1f-858b-7de900af4793", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-10T23:40:23.000Z" + }, + "end": { + "$date": "2022-01-11T00:04:52.000Z" + }, + "events": [ + { + "uuid": "05f3f6a3-d0d9-4aaf-ab82-b7e855140605", + "start": { + "$date": "2022-01-10T23:40:23.000Z" + }, + "end": { + "$date": "2022-01-11T00:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a799c54d-4273-4b53-950b-38e25d8b2843", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T00:11:42.000Z" + }, + "end": { + "$date": "2022-01-11T00:38:13.000Z" + }, + "events": [ + { + "uuid": "309236eb-b511-47ef-bee4-0a05a290b3de", + "start": { + "$date": "2022-01-11T00:11:42.000Z" + }, + "end": { + "$date": "2022-01-11T00:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a5ea510-c424-446b-9460-962371e9e476", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-11T00:24:40.000Z" + }, + "end": { + "$date": "2022-01-11T00:27:03.000Z" + }, + "events": [ + { + "uuid": "ce93a1c6-0d04-451b-a2d9-67371eba5176", + "start": { + "$date": "2022-01-11T00:24:40.000Z" + }, + "end": { + "$date": "2022-01-11T00:27:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6fa8ded5-f8a4-46fa-9e4d-c8430ef57ce7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-11T00:32:40.000Z" + }, + "end": { + "$date": "2022-01-11T00:49:38.000Z" + }, + "events": [ + { + "uuid": "334a8a3f-b1c3-4053-ad61-fdeab6463ed1", + "start": { + "$date": "2022-01-11T00:32:40.000Z" + }, + "end": { + "$date": "2022-01-11T00:49:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "ecfaf24c-a5f5-40e8-81fe-d9f72b2359ab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-11T00:41:32.000Z" + }, + "end": { + "$date": "2022-01-11T00:54:13.000Z" + }, + "events": [ + { + "uuid": "80687af0-0cf6-495b-989c-f639547e0ed4", + "start": { + "$date": "2022-01-11T00:41:32.000Z" + }, + "end": { + "$date": "2022-01-11T00:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "da35825d-d626-4f91-af38-02d3347356e6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-11T00:41:44.000Z" + }, + "end": { + "$date": "2022-01-11T02:59:45.000Z" + }, + "events": [ + { + "uuid": "dc1bd6c5-ffbe-4d14-8cb1-a83c17dfebb8", + "start": { + "$date": "2022-01-11T00:41:44.000Z" + }, + "end": { + "$date": "2022-01-11T02:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e25b48b0-4c1b-4ef0-8dc9-16e5762be32d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T00:47:35.000Z" + }, + "end": { + "$date": "2022-01-11T01:25:09.000Z" + }, + "events": [ + { + "uuid": "e72ab42c-c949-420d-afff-e6c6e313286a", + "start": { + "$date": "2022-01-11T00:47:35.000Z" + }, + "end": { + "$date": "2022-01-11T01:25:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "53a1a698-47ad-4183-8169-16929763aa9f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-11T00:54:23.000Z" + }, + "end": { + "$date": "2022-01-11T02:09:07.000Z" + }, + "events": [ + { + "uuid": "f3fc7790-2410-43b9-9bd2-183469987b42", + "start": { + "$date": "2022-01-11T00:54:23.000Z" + }, + "end": { + "$date": "2022-01-11T02:09:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f6e3f3cf-2499-4c13-95da-05166f71f346", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-11T01:06:07.000Z" + }, + "end": { + "$date": "2022-01-11T06:39:58.000Z" + }, + "events": [ + { + "uuid": "e1e1bdbf-237b-4cc2-8002-b691bfdad848", + "start": { + "$date": "2022-01-11T01:06:07.000Z" + }, + "end": { + "$date": "2022-01-11T06:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "28f50a41-7b8a-4818-9569-e138e5e8c907", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-11T01:11:11.000Z" + }, + "end": { + "$date": "2022-01-11T01:13:07.000Z" + }, + "events": [ + { + "uuid": "a3036758-f8fa-4130-9ab8-de040c52633b", + "start": { + "$date": "2022-01-11T01:11:11.000Z" + }, + "end": { + "$date": "2022-01-11T01:13:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "7b9d0c1a-5738-407b-8b54-453e0c106717", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-11T01:13:16.000Z" + }, + "end": { + "$date": "2022-01-11T01:51:38.000Z" + }, + "events": [ + { + "uuid": "1f0619de-91db-49ed-977b-bb565f07af59", + "start": { + "$date": "2022-01-11T01:13:16.000Z" + }, + "end": { + "$date": "2022-01-11T01:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "287ec8fd-ac15-4c30-a64a-877dba5fb5d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-11T01:20:52.000Z" + }, + "end": { + "$date": "2022-01-11T01:25:28.000Z" + }, + "events": [ + { + "uuid": "d22ae713-efa2-47f4-9ca9-78a8e21aba5f", + "start": { + "$date": "2022-01-11T01:20:52.000Z" + }, + "end": { + "$date": "2022-01-11T01:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a79a3e5a-a93d-4046-a0a1-0cff0c8e40cb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T01:26:19.000Z" + }, + "end": { + "$date": "2022-01-11T01:54:20.000Z" + }, + "events": [ + { + "uuid": "ab47e5fa-87d1-4f0c-ae92-bd6a7cdcc3b4", + "start": { + "$date": "2022-01-11T01:26:19.000Z" + }, + "end": { + "$date": "2022-01-11T01:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a48c3c5c-9f12-4322-9312-59ae61e67809", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-11T01:36:04.000Z" + }, + "end": { + "$date": "2022-01-11T02:13:34.000Z" + }, + "events": [ + { + "uuid": "aa1122a5-73e8-4287-acd2-5f8bb6e1505f", + "start": { + "$date": "2022-01-11T01:36:04.000Z" + }, + "end": { + "$date": "2022-01-11T02:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83fd176f-a37f-4838-ac83-0460a9ed36fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-11T01:36:01.000Z" + }, + "end": { + "$date": "2022-01-11T02:13:27.000Z" + }, + "events": [ + { + "uuid": "0038664d-324d-47a7-92f4-565e21cc07ad", + "start": { + "$date": "2022-01-11T01:36:01.000Z" + }, + "end": { + "$date": "2022-01-11T02:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "bd2d700f-947f-46c4-86af-3fe585ee7a79", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-11T01:51:48.000Z" + }, + "end": { + "$date": "2022-01-11T02:04:04.000Z" + }, + "events": [ + { + "uuid": "c0ad7da1-0881-4e9b-b585-2e3d84d558fe", + "start": { + "$date": "2022-01-11T01:51:48.000Z" + }, + "end": { + "$date": "2022-01-11T02:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ce33729-d63f-4155-b6cd-90fc77939c25", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T01:55:15.000Z" + }, + "end": { + "$date": "2022-01-11T02:28:26.000Z" + }, + "events": [ + { + "uuid": "7ddaae9d-a2c4-4fb1-bb2a-7d6276a0a3f1", + "start": { + "$date": "2022-01-11T01:55:15.000Z" + }, + "end": { + "$date": "2022-01-11T02:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1635aacd-59da-4765-bbfa-ce6e1c560c32", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-11T02:15:14.000Z" + }, + "end": { + "$date": "2022-01-11T02:44:00.000Z" + }, + "events": [ + { + "uuid": "c7bc36f9-75c7-4a6d-b53f-a64e92c7461d", + "start": { + "$date": "2022-01-11T02:15:14.000Z" + }, + "end": { + "$date": "2022-01-11T02:44:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "269e52b1-e9d4-4dcf-a211-f02b2ad40a51", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-11T02:17:44.000Z" + }, + "end": { + "$date": "2022-01-11T04:31:51.000Z" + }, + "events": [ + { + "uuid": "45f8dda9-bf02-4606-b50d-f9daf90a8550", + "start": { + "$date": "2022-01-11T02:17:44.000Z" + }, + "end": { + "$date": "2022-01-11T03:13:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c0d60c2a-c308-4cc0-8888-73539e7a9f12", + "start": { + "$date": "2022-01-11T03:13:44.000Z" + }, + "end": { + "$date": "2022-01-11T03:25:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "68da50a9-3c14-4ea9-82e0-32dc8778ada0", + "start": { + "$date": "2022-01-11T03:25:44.000Z" + }, + "end": { + "$date": "2022-01-11T04:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "611382c6-f906-47a6-bcf5-53b9765e25a2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-11T02:19:01.000Z" + }, + "end": { + "$date": "2022-01-11T03:01:24.000Z" + }, + "events": [ + { + "uuid": "771f4759-a722-4e41-8aa4-34703710b6d9", + "start": { + "$date": "2022-01-11T02:19:01.000Z" + }, + "end": { + "$date": "2022-01-11T03:01:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "e51d841c-0d16-481d-8715-1a187ed2ceca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-11T02:27:59.000Z" + }, + "end": { + "$date": "2022-01-11T03:23:07.000Z" + }, + "events": [ + { + "uuid": "3b463e09-00f1-40c5-afb1-fd7b999aa7fd", + "start": { + "$date": "2022-01-11T02:27:59.000Z" + }, + "end": { + "$date": "2022-01-11T03:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8832206-17e6-478c-85de-5251e204d1a8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T02:31:00.000Z" + }, + "end": { + "$date": "2022-01-11T02:56:51.000Z" + }, + "events": [ + { + "uuid": "da8857fe-b0be-45cc-911e-2a2f81aa2caa", + "start": { + "$date": "2022-01-11T02:31:00.000Z" + }, + "end": { + "$date": "2022-01-11T02:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "60799446-34aa-4575-a3a9-b2e69642b9d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-11T02:44:03.000Z" + }, + "end": { + "$date": "2022-01-11T03:38:03.000Z" + }, + "events": [ + { + "uuid": "b8fa9976-05f2-4ed0-ab5e-53bac0799b60", + "start": { + "$date": "2022-01-11T02:44:03.000Z" + }, + "end": { + "$date": "2022-01-11T02:54:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2485dbc2-3819-4abc-8496-746e09246507", + "start": { + "$date": "2022-01-11T02:54:03.000Z" + }, + "end": { + "$date": "2022-01-11T03:27:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8b77ac27-46f3-4b8c-993f-a1124fd00dc8", + "start": { + "$date": "2022-01-11T03:27:03.000Z" + }, + "end": { + "$date": "2022-01-11T03:38:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "122d5fb0-96fa-4481-8c18-87467d5b82d3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T02:58:47.000Z" + }, + "end": { + "$date": "2022-01-11T03:22:03.000Z" + }, + "events": [ + { + "uuid": "b1f85f3e-95a3-4781-84b8-dd12ece507f1", + "start": { + "$date": "2022-01-11T02:58:47.000Z" + }, + "end": { + "$date": "2022-01-11T03:22:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce31f642-8818-462c-803b-9eee7ff0964f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T03:24:23.000Z" + }, + "end": { + "$date": "2022-01-11T03:44:44.000Z" + }, + "events": [ + { + "uuid": "80b0710b-83ed-4843-80fb-f5a8351bb3d9", + "start": { + "$date": "2022-01-11T03:24:23.000Z" + }, + "end": { + "$date": "2022-01-11T03:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b838360f-b050-4158-9dfc-81395440a719", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T03:46:59.000Z" + }, + "end": { + "$date": "2022-01-11T04:12:44.000Z" + }, + "events": [ + { + "uuid": "a0cf934d-b963-4c53-b8f8-d1aff3887708", + "start": { + "$date": "2022-01-11T03:46:59.000Z" + }, + "end": { + "$date": "2022-01-11T04:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb998572-5ff2-418c-85ed-a5c60565d822", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T04:15:00.000Z" + }, + "end": { + "$date": "2022-01-11T04:34:26.000Z" + }, + "events": [ + { + "uuid": "8d954717-a7d3-40fc-b7d2-7353d50ad009", + "start": { + "$date": "2022-01-11T04:15:00.000Z" + }, + "end": { + "$date": "2022-01-11T04:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "da02e4bc-8873-40a4-b522-fbab2233e725", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-11T05:08:50.000Z" + }, + "end": { + "$date": "2022-01-11T07:35:39.000Z" + }, + "events": [ + { + "uuid": "65b7b450-884d-45f2-a157-2e98cb533995", + "start": { + "$date": "2022-01-11T05:08:50.000Z" + }, + "end": { + "$date": "2022-01-11T07:35:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7d9bd2f6-bc9d-4cb2-af88-1d5c87fc2115", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-11T05:19:48.000Z" + }, + "end": { + "$date": "2022-01-11T06:07:31.000Z" + }, + "events": [ + { + "uuid": "8dd26f97-6558-413d-a370-61bea66cc96c", + "start": { + "$date": "2022-01-11T05:19:48.000Z" + }, + "end": { + "$date": "2022-01-11T06:07:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "79a80af9-49ed-40a2-b9e3-a63536c858ed", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-11T05:20:13.000Z" + }, + "end": { + "$date": "2022-01-11T06:07:28.000Z" + }, + "events": [ + { + "uuid": "af1b5bc3-aa07-4c11-8efe-9c6786ba12c1", + "start": { + "$date": "2022-01-11T05:20:13.000Z" + }, + "end": { + "$date": "2022-01-11T06:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ad187db4-31db-41a4-9357-15e0d12ff46e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-11T08:03:41.000Z" + }, + "end": { + "$date": "2022-01-11T10:12:33.000Z" + }, + "events": [ + { + "uuid": "7e6a0468-6c7c-467c-a6fb-f782a7f65202", + "start": { + "$date": "2022-01-11T08:03:41.000Z" + }, + "end": { + "$date": "2022-01-11T10:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "e5ac5322-b1ad-4946-b73d-2a3d27393005", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-11T17:01:11.000Z" + }, + "end": { + "$date": "2022-01-11T17:13:04.000Z" + }, + "events": [ + { + "uuid": "83029ac3-4533-46a6-9641-29a004285015", + "start": { + "$date": "2022-01-11T17:01:11.000Z" + }, + "end": { + "$date": "2022-01-11T17:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4bf55767-0df1-4ea5-a292-11bef957bfe6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-11T17:09:02.000Z" + }, + "end": { + "$date": "2022-01-11T20:42:17.000Z" + }, + "events": [ + { + "uuid": "a6f48b04-4b92-466b-baa6-47a866e558a5", + "start": { + "$date": "2022-01-11T17:09:02.000Z" + }, + "end": { + "$date": "2022-01-11T20:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "13b5bf69-f752-4892-8d27-e77269bb31a6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-11T20:18:33.000Z" + }, + "end": { + "$date": "2022-01-11T21:32:25.000Z" + }, + "events": [ + { + "uuid": "0469adca-fdce-41e7-9c84-cfdbc791146c", + "start": { + "$date": "2022-01-11T20:18:33.000Z" + }, + "end": { + "$date": "2022-01-11T21:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "50cedf8f-1918-47f9-8642-bfc77b65bbe9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-11T20:51:42.000Z" + }, + "end": { + "$date": "2022-01-11T20:57:02.000Z" + }, + "events": [ + { + "uuid": "e51f56fb-731e-4c2d-a1f5-4100a0827c49", + "start": { + "$date": "2022-01-11T20:51:42.000Z" + }, + "end": { + "$date": "2022-01-11T20:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "2c38c222-553c-4938-a7fe-e293248ad84d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-11T20:55:45.000Z" + }, + "end": { + "$date": "2022-01-11T21:50:50.000Z" + }, + "events": [ + { + "uuid": "25109542-6c2f-4e16-bdcd-c4fb210777e8", + "start": { + "$date": "2022-01-11T20:55:45.000Z" + }, + "end": { + "$date": "2022-01-11T21:50:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "519faedc-48a0-45a0-98fc-bfec766a5bf6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-11T20:57:17.000Z" + }, + "end": { + "$date": "2022-01-11T21:01:37.000Z" + }, + "events": [ + { + "uuid": "ae066b11-907f-4a5d-9471-962a1ce62744", + "start": { + "$date": "2022-01-11T20:57:17.000Z" + }, + "end": { + "$date": "2022-01-11T21:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ca75d9d-0bfa-418a-97d3-1f6b704a2bb2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-11T21:43:53.000Z" + }, + "end": { + "$date": "2022-01-11T21:51:43.000Z" + }, + "events": [ + { + "uuid": "343c2264-78d5-4691-b330-213b9e4ca27f", + "start": { + "$date": "2022-01-11T21:43:53.000Z" + }, + "end": { + "$date": "2022-01-11T21:51:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "d4345497-f94f-44ba-b2ba-847766596b3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-11T21:51:35.000Z" + }, + "end": { + "$date": "2022-01-11T22:23:41.000Z" + }, + "events": [ + { + "uuid": "81947b9b-ff35-46e4-89d0-0231f2ee64b5", + "start": { + "$date": "2022-01-11T21:51:35.000Z" + }, + "end": { + "$date": "2022-01-11T22:14:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4478376d-c586-41cc-95ca-a805e9c0a0a7", + "start": { + "$date": "2022-01-11T22:14:35.000Z" + }, + "end": { + "$date": "2022-01-11T22:19:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9da21ede-d311-4151-bf37-dadc240f53a3", + "start": { + "$date": "2022-01-11T22:19:35.000Z" + }, + "end": { + "$date": "2022-01-11T22:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "87b5f161-1310-47be-952c-161177b34522", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-11T22:02:05.000Z" + }, + "end": { + "$date": "2022-01-11T22:31:46.000Z" + }, + "events": [ + { + "uuid": "dba47bc8-946b-437b-95cb-40531f80ed71", + "start": { + "$date": "2022-01-11T22:02:05.000Z" + }, + "end": { + "$date": "2022-01-11T22:31:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87a83cb2-f04c-40ac-a98d-5e03a16b3b06", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-11T22:16:03.000Z" + }, + "end": { + "$date": "2022-01-11T23:00:59.000Z" + }, + "events": [ + { + "uuid": "a34847db-f162-4e45-bc11-7b179919a928", + "start": { + "$date": "2022-01-11T22:16:03.000Z" + }, + "end": { + "$date": "2022-01-11T23:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "2d18cccb-dac7-4891-a75e-104aee811232", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-11T22:24:21.000Z" + }, + "end": { + "$date": "2022-01-11T23:02:14.000Z" + }, + "events": [ + { + "uuid": "588d11f7-0a7e-410c-bf89-4e378767ade5", + "start": { + "$date": "2022-01-11T22:24:21.000Z" + }, + "end": { + "$date": "2022-01-11T23:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "0e7b03c3-1e3a-4670-aeeb-a0ae8e7e90c6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-11T22:33:33.000Z" + }, + "end": { + "$date": "2022-01-11T22:48:14.000Z" + }, + "events": [ + { + "uuid": "c03c327f-5d8c-442d-9178-754fbcce4e5e", + "start": { + "$date": "2022-01-11T22:33:33.000Z" + }, + "end": { + "$date": "2022-01-11T22:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "ec7aef22-2c6a-4ee6-8872-aa2a47916f14", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-11T22:47:05.000Z" + }, + "end": { + "$date": "2022-01-11T23:15:23.000Z" + }, + "events": [ + { + "uuid": "52eb8fc8-9468-4c35-9260-e63c40cd33c1", + "start": { + "$date": "2022-01-11T22:47:05.000Z" + }, + "end": { + "$date": "2022-01-11T23:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c7099a78-0ce6-4c01-9662-52979850b716", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-11T22:55:59.000Z" + }, + "end": { + "$date": "2022-01-11T23:02:35.000Z" + }, + "events": [ + { + "uuid": "0b2265e2-72f5-40b6-9d36-36d10bba5273", + "start": { + "$date": "2022-01-11T22:55:59.000Z" + }, + "end": { + "$date": "2022-01-11T23:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bd2f286-6de3-497d-9f91-f7edaf1ed520", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T23:00:35.000Z" + }, + "end": { + "$date": "2022-01-11T23:24:32.000Z" + }, + "events": [ + { + "uuid": "36370098-b1de-489e-8830-b14fbe36dd72", + "start": { + "$date": "2022-01-11T23:00:35.000Z" + }, + "end": { + "$date": "2022-01-11T23:24:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae88743e-dc89-49a2-9407-885314ec4e8d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-12T09:48:22.000Z" + }, + "end": { + "$date": "2022-01-12T11:49:52.000Z" + }, + "events": [ + { + "uuid": "487ea62a-49db-4e7f-bf67-8a62e2ed088b", + "start": { + "$date": "2022-01-12T09:48:22.000Z" + }, + "end": { + "$date": "2022-01-12T11:48:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1d79be37-4cb3-43de-b3e6-f22b4790c3b1", + "start": { + "$date": "2022-01-12T11:48:22.000Z" + }, + "end": { + "$date": "2022-01-12T11:49:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47be148a-9d0d-4802-9590-8152c5f7dc1e", + "start": { + "$date": "2022-01-12T11:49:22.000Z" + }, + "end": { + "$date": "2022-01-12T13:29:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6204a7cd-9850-46dd-9b9b-2c449d937756", + "start": { + "$date": "2022-01-12T13:29:22.000Z" + }, + "end": { + "$date": "2022-01-12T13:30:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14867913-b84e-4dd1-bd85-95004f29ea28", + "start": { + "$date": "2022-01-12T13:30:22.000Z" + }, + "end": { + "$date": "2022-01-12T13:32:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eab5131e-8516-4bfd-8ec6-67a0a9d6daa6", + "start": { + "$date": "2022-01-12T13:32:22.000Z" + }, + "end": { + "$date": "2022-01-12T13:35:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5d03717d-f349-4ae0-b62c-370c3f1d46df", + "start": { + "$date": "2022-01-12T13:35:22.000Z" + }, + "end": { + "$date": "2022-01-12T20:42:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d592d0a5-0050-462e-be4b-1071a1942f36", + "start": { + "$date": "2022-01-12T20:42:22.000Z" + }, + "end": { + "$date": "2022-01-12T21:21:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9d0e0c1a-fb26-4ab2-9312-294179662e79", + "start": { + "$date": "2022-01-12T21:21:22.000Z" + }, + "end": { + "$date": "2022-01-12T21:23:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5a044eb-d494-4a57-a6c3-e67e08df2de8", + "start": { + "$date": "2022-01-12T21:23:22.000Z" + }, + "end": { + "$date": "2022-01-12T21:24:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b987676c-ab7d-48e2-8f68-d70e9557d62a", + "start": { + "$date": "2022-01-12T21:24:22.000Z" + }, + "end": { + "$date": "2022-01-12T21:26:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7442606-4abb-44b7-858e-e882e499d355", + "start": { + "$date": "2022-01-12T21:26:22.000Z" + }, + "end": { + "$date": "2022-01-12T11:49:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7dbbc517-c763-46e0-be20-65051550f2f6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-11T23:02:16.000Z" + }, + "end": { + "$date": "2022-01-12T01:42:25.000Z" + }, + "events": [ + { + "uuid": "452b201e-6e06-4dc0-8e49-0a5a550708c3", + "start": { + "$date": "2022-01-11T23:02:16.000Z" + }, + "end": { + "$date": "2022-01-12T01:42:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "7b3c58be-9e54-47aa-a57f-f3bedfead0f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-11T23:02:55.000Z" + }, + "end": { + "$date": "2022-01-12T00:22:57.000Z" + }, + "events": [ + { + "uuid": "c0efc705-ca34-46b0-a0a8-4a35fa74fd4b", + "start": { + "$date": "2022-01-11T23:02:55.000Z" + }, + "end": { + "$date": "2022-01-12T00:22:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "8d86fa84-54a0-4ade-9612-5c8409feb36e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-11T23:03:59.000Z" + }, + "end": { + "$date": "2022-01-11T23:40:17.000Z" + }, + "events": [ + { + "uuid": "562308ad-b238-4004-8723-34207160afbe", + "start": { + "$date": "2022-01-11T23:03:59.000Z" + }, + "end": { + "$date": "2022-01-11T23:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3c11b6c6-219d-4f82-b590-065153bbe1ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-11T23:04:13.000Z" + }, + "end": { + "$date": "2022-01-12T01:42:41.000Z" + }, + "events": [ + { + "uuid": "8e198e54-6ee3-4c5b-b644-e32e9b775bc9", + "start": { + "$date": "2022-01-11T23:04:13.000Z" + }, + "end": { + "$date": "2022-01-12T01:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "8e63fd07-8105-4ac3-9707-6d419047d8c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-11T23:15:32.000Z" + }, + "end": { + "$date": "2022-01-12T00:24:09.000Z" + }, + "events": [ + { + "uuid": "cf524ddd-35fd-44cf-8cac-0a3c38fae8d1", + "start": { + "$date": "2022-01-11T23:15:32.000Z" + }, + "end": { + "$date": "2022-01-12T00:24:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "adad2ae2-9e17-4d25-b9ad-ecb932207307", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-11T23:40:26.000Z" + }, + "end": { + "$date": "2022-01-11T23:52:37.000Z" + }, + "events": [ + { + "uuid": "2e7c73d8-e058-4638-8610-cbc671903230", + "start": { + "$date": "2022-01-11T23:40:26.000Z" + }, + "end": { + "$date": "2022-01-11T23:52:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3094be51-3747-47bc-870f-23f727363c54", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-11T23:42:23.000Z" + }, + "end": { + "$date": "2022-01-12T00:17:09.000Z" + }, + "events": [ + { + "uuid": "9f87f10d-55ea-46c0-98a4-8d9857d278cb", + "start": { + "$date": "2022-01-11T23:42:23.000Z" + }, + "end": { + "$date": "2022-01-12T00:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "215f14d8-58d9-40fd-a421-ced61bfa9102", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-12T00:18:27.000Z" + }, + "end": { + "$date": "2022-01-12T00:40:35.000Z" + }, + "events": [ + { + "uuid": "da7f4b55-b735-49d0-960f-6cbcbb5d74e8", + "start": { + "$date": "2022-01-12T00:18:27.000Z" + }, + "end": { + "$date": "2022-01-12T00:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "d63bb8eb-82c0-4ed7-bdac-13a5218713d0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T00:25:49.000Z" + }, + "end": { + "$date": "2022-01-12T00:33:54.000Z" + }, + "events": [ + { + "uuid": "1295f155-7977-41c0-a20e-125110b90a96", + "start": { + "$date": "2022-01-12T00:25:49.000Z" + }, + "end": { + "$date": "2022-01-12T00:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "199c14e9-3059-4287-b50a-b67a23d6a1dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T00:29:59.000Z" + }, + "end": { + "$date": "2022-01-12T01:05:57.000Z" + }, + "events": [ + { + "uuid": "1c78c180-a45b-44e3-8d51-873b3af37d6d", + "start": { + "$date": "2022-01-12T00:29:59.000Z" + }, + "end": { + "$date": "2022-01-12T01:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "7edf95a3-6a48-4556-ad66-559d9bad7535", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T00:42:51.000Z" + }, + "end": { + "$date": "2022-01-12T01:05:52.000Z" + }, + "events": [ + { + "uuid": "21aab9b4-8ba3-4199-91f4-3db9d5e0dd90", + "start": { + "$date": "2022-01-12T00:42:51.000Z" + }, + "end": { + "$date": "2022-01-12T01:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "6408ee96-0d02-4d1f-af17-3c6a86974794", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T01:06:07.000Z" + }, + "end": { + "$date": "2022-01-12T02:30:53.000Z" + }, + "events": [ + { + "uuid": "2c7fe2e2-2ae1-46a9-955e-01c1aa2897a0", + "start": { + "$date": "2022-01-12T01:06:07.000Z" + }, + "end": { + "$date": "2022-01-12T02:30:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "f1e34495-1d73-4e11-a3ff-789a83d11082", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T01:06:18.000Z" + }, + "end": { + "$date": "2022-01-12T04:50:30.000Z" + }, + "events": [ + { + "uuid": "a05b508c-f6af-4b48-95d0-2697d13c3f84", + "start": { + "$date": "2022-01-12T01:06:18.000Z" + }, + "end": { + "$date": "2022-01-12T04:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cb42d7ed-f751-4499-9406-b2c8bc1a1e1b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-12T01:49:01.000Z" + }, + "end": { + "$date": "2022-01-12T06:00:10.000Z" + }, + "events": [ + { + "uuid": "43cedf46-395d-4764-acf3-ea0ac9b482b9", + "start": { + "$date": "2022-01-12T01:49:01.000Z" + }, + "end": { + "$date": "2022-01-12T06:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "19c9e2fc-dd6b-44bb-90a0-a4b96d3f6bc2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-12T02:27:46.000Z" + }, + "end": { + "$date": "2022-01-12T04:58:24.000Z" + }, + "events": [ + { + "uuid": "5bf175a0-d92b-4e80-a40e-b2a9b21dada4", + "start": { + "$date": "2022-01-12T02:27:46.000Z" + }, + "end": { + "$date": "2022-01-12T04:58:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0f152d5-3f80-4834-b6cc-c7ca0af91d76", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-12T02:28:29.000Z" + }, + "end": { + "$date": "2022-01-12T07:38:31.000Z" + }, + "events": [ + { + "uuid": "4420f1ca-82a9-4df8-b358-670721ac73b2", + "start": { + "$date": "2022-01-12T02:28:29.000Z" + }, + "end": { + "$date": "2022-01-12T07:38:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fd036e2b-064b-4579-92a4-539d277c7a73", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-12T02:44:13.000Z" + }, + "end": { + "$date": "2022-01-12T02:48:20.000Z" + }, + "events": [ + { + "uuid": "5fcc6cac-5997-479d-971b-c9ba7cd12da3", + "start": { + "$date": "2022-01-12T02:44:13.000Z" + }, + "end": { + "$date": "2022-01-12T02:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "6304cf15-c530-4611-b899-b6b5d9f728cf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-12T02:48:03.000Z" + }, + "end": { + "$date": "2022-01-12T02:49:10.000Z" + }, + "events": [ + { + "uuid": "59f284ab-0749-4224-87c5-4d5cdb4c497d", + "start": { + "$date": "2022-01-12T02:48:03.000Z" + }, + "end": { + "$date": "2022-01-12T02:49:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d1531313-b7a6-4ba9-8aa9-3ba465cd44f7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-12T02:49:33.000Z" + }, + "end": { + "$date": "2022-01-12T03:16:55.000Z" + }, + "events": [ + { + "uuid": "c8564117-1bfd-46f4-926e-fc6266e2e2af", + "start": { + "$date": "2022-01-12T02:49:33.000Z" + }, + "end": { + "$date": "2022-01-12T03:16:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "7afd0d0b-ca6a-4b3a-856d-480ee8b0e5f9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T02:58:37.000Z" + }, + "end": { + "$date": "2022-01-12T06:48:56.000Z" + }, + "events": [ + { + "uuid": "a69b3a55-86e2-4c4a-a007-0b306c6310f7", + "start": { + "$date": "2022-01-12T02:58:37.000Z" + }, + "end": { + "$date": "2022-01-12T06:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "12537f13-3aba-4d39-b8dd-e6fe8390a4f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-12T03:08:41.000Z" + }, + "end": { + "$date": "2022-01-12T03:14:21.000Z" + }, + "events": [ + { + "uuid": "d9979ada-1b3f-4fd1-8937-d3553255c009", + "start": { + "$date": "2022-01-12T03:08:41.000Z" + }, + "end": { + "$date": "2022-01-12T03:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3790bf03-a7d9-460d-aff8-abdf92787a5b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-12T03:20:07.000Z" + }, + "end": { + "$date": "2022-01-12T03:30:37.000Z" + }, + "events": [ + { + "uuid": "daaa8b49-d0e3-463b-9dc5-a64d56eae743", + "start": { + "$date": "2022-01-12T03:20:07.000Z" + }, + "end": { + "$date": "2022-01-12T03:30:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "042659bb-4b42-4d33-8579-24f00df4cc39", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-12T03:29:15.000Z" + }, + "end": { + "$date": "2022-01-12T03:56:18.000Z" + }, + "events": [ + { + "uuid": "e76dc4de-1315-4d8d-9a43-bab02102192f", + "start": { + "$date": "2022-01-12T03:29:15.000Z" + }, + "end": { + "$date": "2022-01-12T03:56:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2acdc8f3-9608-40cd-87b1-04e87dd6f8bb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-12T03:52:17.000Z" + }, + "end": { + "$date": "2022-01-12T04:19:45.000Z" + }, + "events": [ + { + "uuid": "de7477e5-bb63-43d7-8a4f-f7bd55909a8a", + "start": { + "$date": "2022-01-12T03:52:17.000Z" + }, + "end": { + "$date": "2022-01-12T04:19:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "985e7cc8-7a87-44f8-b94d-2e6221da914f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-12T04:35:41.000Z" + }, + "end": { + "$date": "2022-01-12T04:48:01.000Z" + }, + "events": [ + { + "uuid": "fe9573db-25cc-4bb9-9565-7f39b1ba6340", + "start": { + "$date": "2022-01-12T04:35:41.000Z" + }, + "end": { + "$date": "2022-01-12T04:48:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c498f529-5863-40b3-9fe1-e84563f95ef3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-12T04:58:32.000Z" + }, + "end": { + "$date": "2022-01-12T07:38:28.000Z" + }, + "events": [ + { + "uuid": "96405057-b68a-4aed-8f13-22f059b79b28", + "start": { + "$date": "2022-01-12T04:58:32.000Z" + }, + "end": { + "$date": "2022-01-12T07:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "ba87d748-b749-4cbb-b1c8-19fe33ef9cd9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T05:03:28.000Z" + }, + "end": { + "$date": "2022-01-12T05:51:00.000Z" + }, + "events": [ + { + "uuid": "7b43c2c9-bb2d-40a4-9a8e-d7c378790bda", + "start": { + "$date": "2022-01-12T05:03:28.000Z" + }, + "end": { + "$date": "2022-01-12T05:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "1cdb4cc8-a5d5-4238-9a25-73a7ae9e9aa3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-12T05:03:36.000Z" + }, + "end": { + "$date": "2022-01-12T05:35:13.000Z" + }, + "events": [ + { + "uuid": "0b23193b-0291-4503-80a7-2dd45896a80e", + "start": { + "$date": "2022-01-12T05:03:36.000Z" + }, + "end": { + "$date": "2022-01-12T05:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67fb335e-5448-47bb-8bb5-1d9b887c309b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-12T05:39:57.000Z" + }, + "end": { + "$date": "2022-01-12T06:06:19.000Z" + }, + "events": [ + { + "uuid": "842b5867-8f19-47a0-9194-af1e0454f971", + "start": { + "$date": "2022-01-12T05:39:57.000Z" + }, + "end": { + "$date": "2022-01-12T06:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "0d8cea93-2879-42b9-b133-28e413f4c523", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T06:05:13.000Z" + }, + "end": { + "$date": "2022-01-12T06:12:48.000Z" + }, + "events": [ + { + "uuid": "06ff6051-4bf8-4ae7-97b3-9b32412b6402", + "start": { + "$date": "2022-01-12T06:05:13.000Z" + }, + "end": { + "$date": "2022-01-12T06:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d47c7d22-db72-4807-89c3-3d0d6af893fb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-12T06:07:14.000Z" + }, + "end": { + "$date": "2022-01-12T06:40:58.000Z" + }, + "events": [ + { + "uuid": "6f36dd39-655f-4990-aa77-e26762f420dc", + "start": { + "$date": "2022-01-12T06:07:14.000Z" + }, + "end": { + "$date": "2022-01-12T06:40:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0452f5db-a8ab-4ea6-aa28-4072fd57ea10", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T06:14:59.000Z" + }, + "end": { + "$date": "2022-01-12T07:37:18.000Z" + }, + "events": [ + { + "uuid": "2eb84a57-b33b-4a86-93eb-95af58e45462", + "start": { + "$date": "2022-01-12T06:14:59.000Z" + }, + "end": { + "$date": "2022-01-12T07:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9b7c264c-31cd-4294-969b-4e9f92778cbd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-12T09:45:40.000Z" + }, + "end": { + "$date": "2022-01-12T10:33:11.000Z" + }, + "events": [ + { + "uuid": "22031d57-822f-4c1a-b620-9716c5e51d11", + "start": { + "$date": "2022-01-12T09:45:40.000Z" + }, + "end": { + "$date": "2022-01-12T10:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "56c1f7b8-b540-436b-a561-d826fd1b5309", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-12T16:04:26.000Z" + }, + "end": { + "$date": "2022-01-12T16:31:29.000Z" + }, + "events": [ + { + "uuid": "b00b0896-9305-423b-ae71-4ad5f0a2ebe2", + "start": { + "$date": "2022-01-12T16:04:26.000Z" + }, + "end": { + "$date": "2022-01-12T16:31:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0dcf62a7-f104-4df2-aa73-452470c781e8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T16:23:48.000Z" + }, + "end": { + "$date": "2022-01-12T18:27:22.000Z" + }, + "events": [ + { + "uuid": "201a038e-9b37-49e3-850b-465c1661d6d8", + "start": { + "$date": "2022-01-12T16:23:48.000Z" + }, + "end": { + "$date": "2022-01-12T18:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a0c35984-1ebb-4552-a854-bb44f137e829", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-12T19:13:05.000Z" + }, + "end": { + "$date": "2022-01-12T23:30:57.000Z" + }, + "events": [ + { + "uuid": "312f536f-c3ea-48ed-b615-6d8694d9653f", + "start": { + "$date": "2022-01-12T19:13:05.000Z" + }, + "end": { + "$date": "2022-01-12T23:30:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47f1ff71-41cf-4a00-805b-f747908ef5ac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-12T16:34:40.000Z" + }, + "end": { + "$date": "2022-01-12T17:12:12.000Z" + }, + "events": [ + { + "uuid": "2bf73762-cc3e-4def-9eaa-9192f89729c9", + "start": { + "$date": "2022-01-12T16:34:40.000Z" + }, + "end": { + "$date": "2022-01-12T17:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "94de2483-6537-4c15-bda0-d207338e5ce5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T18:02:26.000Z" + }, + "end": { + "$date": "2022-01-12T18:08:12.000Z" + }, + "events": [ + { + "uuid": "62002ea3-b121-4eaa-8a16-87b9da80103d", + "start": { + "$date": "2022-01-12T18:02:26.000Z" + }, + "end": { + "$date": "2022-01-12T18:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "c8a31fde-b950-4794-af99-fd1d793f4187", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-12T19:13:27.000Z" + }, + "end": { + "$date": "2022-01-13T01:47:19.000Z" + }, + "events": [ + { + "uuid": "00dd284e-2e76-41d8-8bcd-e4a454549de3", + "start": { + "$date": "2022-01-12T19:13:27.000Z" + }, + "end": { + "$date": "2022-01-13T01:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "504fa7ab-35c4-4bc7-abb9-fc6323746dfa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T19:25:50.000Z" + }, + "end": { + "$date": "2022-01-12T21:06:28.000Z" + }, + "events": [ + { + "uuid": "f4c5cb7c-5824-4357-b3dd-d93239f961fb", + "start": { + "$date": "2022-01-12T19:25:50.000Z" + }, + "end": { + "$date": "2022-01-12T21:06:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "2cd4c337-0fe4-4161-b229-1217b38b2627", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-12T22:09:43.000Z" + }, + "end": { + "$date": "2022-01-13T00:55:57.000Z" + }, + "events": [ + { + "uuid": "85f22378-876b-421a-ab69-7af08d274b0b", + "start": { + "$date": "2022-01-12T22:09:43.000Z" + }, + "end": { + "$date": "2022-01-13T00:55:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f560ce89-1ed1-457d-9f69-61b9e34dfedd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-12T22:39:26.000Z" + }, + "end": { + "$date": "2022-01-12T23:01:17.000Z" + }, + "events": [ + { + "uuid": "f9fac7da-73e2-4fb2-982d-defb023af8f3", + "start": { + "$date": "2022-01-12T22:39:26.000Z" + }, + "end": { + "$date": "2022-01-12T23:01:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "1a3e5344-3759-4e27-b1eb-c0da746f0982", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-12T23:32:27.000Z" + }, + "end": { + "$date": "2022-01-13T02:46:45.000Z" + }, + "events": [ + { + "uuid": "28bef16f-8d75-4484-9dfa-1a584e2305cf", + "start": { + "$date": "2022-01-12T23:32:27.000Z" + }, + "end": { + "$date": "2022-01-13T00:56:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "941b901f-2db0-4152-bf99-71a533bc81f2", + "start": { + "$date": "2022-01-13T00:56:27.000Z" + }, + "end": { + "$date": "2022-01-13T01:29:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d239bc79-32a5-42bc-aaa6-3b492ca9756d", + "start": { + "$date": "2022-01-13T01:29:27.000Z" + }, + "end": { + "$date": "2022-01-13T01:57:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c21ed143-245d-491f-9900-23e1e757c265", + "start": { + "$date": "2022-01-13T01:57:27.000Z" + }, + "end": { + "$date": "2022-01-13T02:30:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "818215b3-83c3-442a-85a8-88af796b1f93", + "start": { + "$date": "2022-01-13T02:30:27.000Z" + }, + "end": { + "$date": "2022-01-13T02:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "338a316f-4a6f-4393-be16-6265df1373f7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T00:11:18.000Z" + }, + "end": { + "$date": "2022-01-13T00:30:58.000Z" + }, + "events": [ + { + "uuid": "ca54da71-df18-4b08-97a1-48e3a61c6b1f", + "start": { + "$date": "2022-01-13T00:11:18.000Z" + }, + "end": { + "$date": "2022-01-13T00:30:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c7008b4-e100-47aa-a6fe-24c6c9b3890f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T00:36:59.000Z" + }, + "end": { + "$date": "2022-01-13T01:06:54.000Z" + }, + "events": [ + { + "uuid": "f8b2e1b2-f3ff-4b37-8466-1073f81fb7ca", + "start": { + "$date": "2022-01-13T00:36:59.000Z" + }, + "end": { + "$date": "2022-01-13T01:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "c5a6dc76-dfa9-4a75-832a-855ded96a686", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-13T00:52:39.000Z" + }, + "end": { + "$date": "2022-01-13T01:13:08.000Z" + }, + "events": [ + { + "uuid": "916c6a57-5204-4ac0-a92f-708cbc0aa00b", + "start": { + "$date": "2022-01-13T00:52:39.000Z" + }, + "end": { + "$date": "2022-01-13T01:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23f8eabc-6135-41e4-8541-bc5e1559d90c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T01:10:38.000Z" + }, + "end": { + "$date": "2022-01-13T01:43:15.000Z" + }, + "events": [ + { + "uuid": "3ffe41ed-3006-45de-b3cd-6a22facb01c1", + "start": { + "$date": "2022-01-13T01:10:38.000Z" + }, + "end": { + "$date": "2022-01-13T01:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "eb6fcade-e2b3-4d70-acad-b8000c9dc0ee", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-13T01:11:08.000Z" + }, + "end": { + "$date": "2022-01-13T01:12:58.000Z" + }, + "events": [ + { + "uuid": "c9c42a6e-6030-4803-b18e-5d8b5d447be6", + "start": { + "$date": "2022-01-13T01:11:08.000Z" + }, + "end": { + "$date": "2022-01-13T01:12:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "d0418341-ec23-4786-8735-2ae24bfa2c87", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-13T02:03:14.000Z" + }, + "end": { + "$date": "2022-01-13T02:04:40.000Z" + }, + "events": [ + { + "uuid": "a9df0767-24c9-4ba1-afdb-ef254726c15d", + "start": { + "$date": "2022-01-13T02:03:14.000Z" + }, + "end": { + "$date": "2022-01-13T02:04:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f913e00-6496-431a-8c2a-7a238e463f54", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-13T01:17:00.000Z" + }, + "end": { + "$date": "2022-01-13T02:02:56.000Z" + }, + "events": [ + { + "uuid": "3b5218ac-4fbf-4fd2-b214-ebb7311d9b44", + "start": { + "$date": "2022-01-13T01:17:00.000Z" + }, + "end": { + "$date": "2022-01-13T02:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50b10d39-8a71-4a3d-ae8d-0776a1ef30a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-13T01:16:59.000Z" + }, + "end": { + "$date": "2022-01-13T02:03:03.000Z" + }, + "events": [ + { + "uuid": "22f3e7ea-7419-42ff-bc22-54bd00d94571", + "start": { + "$date": "2022-01-13T01:16:59.000Z" + }, + "end": { + "$date": "2022-01-13T02:03:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "0527f1f5-e2bc-4968-9b81-65acdb91d2de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T01:55:31.000Z" + }, + "end": { + "$date": "2022-01-13T02:06:02.000Z" + }, + "events": [ + { + "uuid": "9d432771-d48d-493a-b58a-91dcb4f7d536", + "start": { + "$date": "2022-01-13T01:55:31.000Z" + }, + "end": { + "$date": "2022-01-13T02:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4832820-cb27-4606-b4b3-6127f657f381", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-13T02:23:51.000Z" + }, + "end": { + "$date": "2022-01-13T02:45:49.000Z" + }, + "events": [ + { + "uuid": "82d9ab70-8112-4f85-b4fd-68e92258bd47", + "start": { + "$date": "2022-01-13T02:23:51.000Z" + }, + "end": { + "$date": "2022-01-13T02:45:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "de7297dd-1546-4446-8921-26f8cee6d89c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-13T02:31:40.000Z" + }, + "end": { + "$date": "2022-01-13T02:57:01.000Z" + }, + "events": [ + { + "uuid": "e929e6b4-3dbe-455f-b6e5-02a8416da922", + "start": { + "$date": "2022-01-13T02:31:40.000Z" + }, + "end": { + "$date": "2022-01-13T02:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d642f146-5b36-4c36-a0b6-b4eef0ad73d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-13T02:04:51.000Z" + }, + "end": { + "$date": "2022-01-13T02:56:45.000Z" + }, + "events": [ + { + "uuid": "ff8c5a7f-58b9-4f2a-aafe-36e411d53572", + "start": { + "$date": "2022-01-13T02:04:51.000Z" + }, + "end": { + "$date": "2022-01-13T02:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f67b315e-34d2-458e-a8e0-973ec24780f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T02:07:53.000Z" + }, + "end": { + "$date": "2022-01-13T02:20:19.000Z" + }, + "events": [ + { + "uuid": "39a706b6-b780-409c-a516-3358c48bea30", + "start": { + "$date": "2022-01-13T02:07:53.000Z" + }, + "end": { + "$date": "2022-01-13T02:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1c78df5c-6f15-45d1-9edc-b388393c756b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-13T02:08:27.000Z" + }, + "end": { + "$date": "2022-01-13T02:17:39.000Z" + }, + "events": [ + { + "uuid": "fc7cdf02-45a6-4b92-af9a-4463bcbfa3e9", + "start": { + "$date": "2022-01-13T02:08:27.000Z" + }, + "end": { + "$date": "2022-01-13T02:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6d43ace5-aa35-4f0f-884a-d84728e9d66c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-13T02:18:09.000Z" + }, + "end": { + "$date": "2022-01-13T02:57:06.000Z" + }, + "events": [ + { + "uuid": "8438b700-b922-4d96-84f9-193bb7fb4d22", + "start": { + "$date": "2022-01-13T02:18:09.000Z" + }, + "end": { + "$date": "2022-01-13T02:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "0909eb0c-9f9b-42d4-90b4-cd889d971379", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-13T02:39:36.000Z" + }, + "end": { + "$date": "2022-01-13T03:13:42.000Z" + }, + "events": [ + { + "uuid": "d081cd9a-05cb-47be-a158-e33deeb69cfb", + "start": { + "$date": "2022-01-13T02:39:36.000Z" + }, + "end": { + "$date": "2022-01-13T03:13:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a525017-2a66-4bd3-a1f4-2afaf119d818", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-13T04:06:54.000Z" + }, + "end": { + "$date": "2022-01-13T04:06:52.000Z" + }, + "events": [ + { + "uuid": "22a2e519-b409-4406-a397-92bec7397251", + "start": { + "$date": "2022-01-13T04:06:54.000Z" + }, + "end": { + "$date": "2022-01-13T04:06:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "307e8fec-4810-4def-8f32-08cb4e08d56a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-13T02:51:10.000Z" + }, + "end": { + "$date": "2022-01-13T03:43:20.000Z" + }, + "events": [ + { + "uuid": "8c1611aa-74b1-4ea2-ae31-fc44b97a7682", + "start": { + "$date": "2022-01-13T02:51:10.000Z" + }, + "end": { + "$date": "2022-01-13T03:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "90aa8d67-29b9-413e-9451-4f0bfef21e17", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-13T02:57:17.000Z" + }, + "end": { + "$date": "2022-01-13T03:08:32.000Z" + }, + "events": [ + { + "uuid": "79ce7948-03a7-4138-afb8-05ad87ba7100", + "start": { + "$date": "2022-01-13T02:57:17.000Z" + }, + "end": { + "$date": "2022-01-13T03:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "99bb25d3-27ca-447f-9248-0def8714c567", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-13T02:58:15.000Z" + }, + "end": { + "$date": "2022-01-13T04:23:58.000Z" + }, + "events": [ + { + "uuid": "c0b84083-e5b6-4365-b055-7e3bf7160f09", + "start": { + "$date": "2022-01-13T02:58:15.000Z" + }, + "end": { + "$date": "2022-01-13T04:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "0639d7fb-a057-4656-a932-bea8aaacf894", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-13T03:09:12.000Z" + }, + "end": { + "$date": "2022-01-13T03:21:17.000Z" + }, + "events": [ + { + "uuid": "f05956e9-332d-4db2-a013-4d2de13bfc7d", + "start": { + "$date": "2022-01-13T03:09:12.000Z" + }, + "end": { + "$date": "2022-01-13T03:21:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "06be80a4-d3f8-40d2-99ba-c3b9ccc655a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-13T02:09:33.000Z" + }, + "end": { + "$date": "2022-01-13T03:11:39.000Z" + }, + "events": [ + { + "uuid": "4c25d736-cdf9-433f-bc92-51e0fea327bd", + "start": { + "$date": "2022-01-13T02:09:33.000Z" + }, + "end": { + "$date": "2022-01-13T03:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c2cb85ad-f491-48e3-8484-5262b55a0dfe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-13T03:12:36.000Z" + }, + "end": { + "$date": "2022-01-13T03:55:31.000Z" + }, + "events": [ + { + "uuid": "d13dfd05-503d-40fa-80c3-8d7a929e6937", + "start": { + "$date": "2022-01-13T03:12:36.000Z" + }, + "end": { + "$date": "2022-01-13T03:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "24891e1e-1b63-4f4b-b3ab-fe589d9cc863", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-13T03:49:09.000Z" + }, + "end": { + "$date": "2022-01-13T03:50:34.000Z" + }, + "events": [ + { + "uuid": "6876dc6c-a94f-4d29-b37a-14b0f54c927b", + "start": { + "$date": "2022-01-13T03:49:09.000Z" + }, + "end": { + "$date": "2022-01-13T03:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "acdbbed7-4470-49be-aebf-a8f0cfa7acd7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T04:07:11.000Z" + }, + "end": { + "$date": "2022-01-13T04:47:39.000Z" + }, + "events": [ + { + "uuid": "941fb1da-5dcb-46e0-bedf-d7279f589544", + "start": { + "$date": "2022-01-13T04:07:11.000Z" + }, + "end": { + "$date": "2022-01-13T04:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f7e9f6f-ad54-4f39-b241-3689b54fed54", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-13T04:16:47.000Z" + }, + "end": { + "$date": "2022-01-13T04:50:23.000Z" + }, + "events": [ + { + "uuid": "afc8aaf8-e113-4fdb-a3f1-d5f75e705611", + "start": { + "$date": "2022-01-13T04:16:47.000Z" + }, + "end": { + "$date": "2022-01-13T04:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "7227baea-8203-4457-885c-788d2f0d3f96", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-13T04:10:27.000Z" + }, + "end": { + "$date": "2022-01-13T06:13:21.000Z" + }, + "events": [ + { + "uuid": "b6d60b06-d3ec-40f5-ad1b-f6b948312c48", + "start": { + "$date": "2022-01-13T04:10:27.000Z" + }, + "end": { + "$date": "2022-01-13T06:13:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c795bee5-ac12-47bf-9733-001e9cc786a6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-13T04:16:59.000Z" + }, + "end": { + "$date": "2022-01-13T04:50:07.000Z" + }, + "events": [ + { + "uuid": "5e1b1e3f-5aaa-47c4-ba64-1f662d5c4424", + "start": { + "$date": "2022-01-13T04:16:59.000Z" + }, + "end": { + "$date": "2022-01-13T04:50:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "759e636e-f76e-4d1e-b320-31c4760f9ef3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-13T04:31:30.000Z" + }, + "end": { + "$date": "2022-01-13T05:27:18.000Z" + }, + "events": [ + { + "uuid": "a7d438b2-4a7d-43cd-9721-e7c6e431ae0b", + "start": { + "$date": "2022-01-13T04:31:30.000Z" + }, + "end": { + "$date": "2022-01-13T05:27:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c88cd6f-1ff3-48a7-948d-01152744c4cd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T04:49:44.000Z" + }, + "end": { + "$date": "2022-01-13T05:11:14.000Z" + }, + "events": [ + { + "uuid": "16210e0a-8963-4c71-b03a-28512e658655", + "start": { + "$date": "2022-01-13T04:49:44.000Z" + }, + "end": { + "$date": "2022-01-13T05:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a3f5dd7-ac42-4574-a5e9-4854fe4d07ae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-13T04:59:19.000Z" + }, + "end": { + "$date": "2022-01-13T05:32:33.000Z" + }, + "events": [ + { + "uuid": "d24070b0-6b07-4c04-99fa-bcfbc9b8bd73", + "start": { + "$date": "2022-01-13T04:59:19.000Z" + }, + "end": { + "$date": "2022-01-13T05:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90bf344e-377c-4b3c-a33f-2be62b50b194", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-13T04:59:20.000Z" + }, + "end": { + "$date": "2022-01-13T05:32:18.000Z" + }, + "events": [ + { + "uuid": "1d20a33e-6801-4618-9be7-234164d9a079", + "start": { + "$date": "2022-01-13T04:59:20.000Z" + }, + "end": { + "$date": "2022-01-13T05:32:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9767f19-ee5b-4bee-a042-26d60d93b69a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T05:15:05.000Z" + }, + "end": { + "$date": "2022-01-13T05:40:46.000Z" + }, + "events": [ + { + "uuid": "0fcee915-ea3d-4021-bd80-e7e20a86f546", + "start": { + "$date": "2022-01-13T05:15:05.000Z" + }, + "end": { + "$date": "2022-01-13T05:40:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d741d896-5e82-4db5-a254-7342835b5542", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-13T05:41:15.000Z" + }, + "end": { + "$date": "2022-01-13T06:16:17.000Z" + }, + "events": [ + { + "uuid": "c2ec0993-0bdd-47e4-9c8d-74f81d3c3aeb", + "start": { + "$date": "2022-01-13T05:41:15.000Z" + }, + "end": { + "$date": "2022-01-13T06:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a896ef2b-1db5-4c20-aad1-45b9f9d0c477", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-13T05:41:11.000Z" + }, + "end": { + "$date": "2022-01-13T06:16:05.000Z" + }, + "events": [ + { + "uuid": "ffacdd9b-4b3f-478f-989e-bf20cfcb00db", + "start": { + "$date": "2022-01-13T05:41:11.000Z" + }, + "end": { + "$date": "2022-01-13T06:16:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3972b663-ed7b-4483-88b6-fee83011d1bf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T05:43:21.000Z" + }, + "end": { + "$date": "2022-01-13T06:00:07.000Z" + }, + "events": [ + { + "uuid": "a9b7cd02-ff99-4d57-81d9-c6b32d01e3b4", + "start": { + "$date": "2022-01-13T05:43:21.000Z" + }, + "end": { + "$date": "2022-01-13T06:00:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "8dac2ba2-1e90-42dc-90ed-029868a862b4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T06:17:19.000Z" + }, + "end": { + "$date": "2022-01-13T07:40:00.000Z" + }, + "events": [ + { + "uuid": "f9ce6269-beb3-4c4e-853e-4c54197109b0", + "start": { + "$date": "2022-01-13T06:17:19.000Z" + }, + "end": { + "$date": "2022-01-13T07:40:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9dc4c306-6bc3-45d6-bcc8-dc6ef5f55a28", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-13T06:47:32.000Z" + }, + "end": { + "$date": "2022-01-13T07:11:20.000Z" + }, + "events": [ + { + "uuid": "2064622a-07f3-495a-a95c-758796b2f243", + "start": { + "$date": "2022-01-13T06:47:32.000Z" + }, + "end": { + "$date": "2022-01-13T07:11:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9f89a265-ff41-44bb-8f86-dc9d90436019", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-13T07:14:33.000Z" + }, + "end": { + "$date": "2022-01-13T07:40:05.000Z" + }, + "events": [ + { + "uuid": "0a86397e-5ea0-496f-b9f2-f0058fb182eb", + "start": { + "$date": "2022-01-13T07:14:33.000Z" + }, + "end": { + "$date": "2022-01-13T07:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2adbf750-b309-42f5-834e-f1717c4d2739", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-13T08:14:50.000Z" + }, + "end": { + "$date": "2022-01-13T08:35:43.000Z" + }, + "events": [ + { + "uuid": "5e77aad6-a253-45d7-835f-066c45d026e2", + "start": { + "$date": "2022-01-13T08:14:50.000Z" + }, + "end": { + "$date": "2022-01-13T08:35:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "019ed376-fd1d-48e2-bd70-1ae67d38521c", + "uuid": "bac63b66-c7b1-426e-a9eb-63fb44d2bfeb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-13T08:44:14.000Z" + }, + "end": { + "$date": "2022-01-13T09:20:42.000Z" + }, + "events": [ + { + "uuid": "e2851e4c-fcc1-402e-be5e-f13c253fd11f", + "start": { + "$date": "2022-01-13T08:44:14.000Z" + }, + "end": { + "$date": "2022-01-13T09:20:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "fbc2c465-b91b-4808-8fab-d9464237ce2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T16:08:46.000Z" + }, + "end": { + "$date": "2022-01-13T16:46:34.000Z" + }, + "events": [ + { + "uuid": "3e22eb85-5b89-47e2-8cd4-3366d3b04679", + "start": { + "$date": "2022-01-13T16:08:46.000Z" + }, + "end": { + "$date": "2022-01-13T16:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", + "uuid": "58237509-9b6d-4e1e-8c0c-1b4e2fdc1f3f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-13T16:09:24.000Z" + }, + "end": { + "$date": "2022-01-13T16:27:20.000Z" + }, + "events": [ + { + "uuid": "3f366b2f-9021-48ff-8e04-ca25e0e6a4eb", + "start": { + "$date": "2022-01-13T16:09:24.000Z" + }, + "end": { + "$date": "2022-01-13T16:27:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "10c3ef32-4407-4429-8e40-36c4767a80b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T17:12:44.000Z" + }, + "end": { + "$date": "2022-01-13T19:43:16.000Z" + }, + "events": [ + { + "uuid": "c695a137-2e0b-46f9-bd03-d41012028d3a", + "start": { + "$date": "2022-01-13T17:12:44.000Z" + }, + "end": { + "$date": "2022-01-13T17:51:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1999a193-a2c0-49b2-9da7-19ce441a1dd9", + "start": { + "$date": "2022-01-13T17:51:44.000Z" + }, + "end": { + "$date": "2022-01-13T17:54:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "761719a6-9575-4a6f-8057-03d7e08ccb00", + "start": { + "$date": "2022-01-13T17:54:44.000Z" + }, + "end": { + "$date": "2022-01-13T19:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "742dbc77-1a38-4afa-a85d-f08f6635f84a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-13T18:30:51.000Z" + }, + "end": { + "$date": "2022-01-13T18:57:16.000Z" + }, + "events": [ + { + "uuid": "1db49fc3-e9a4-452d-abb8-3a9bdd6766c6", + "start": { + "$date": "2022-01-13T18:30:51.000Z" + }, + "end": { + "$date": "2022-01-13T18:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "dfcdb199-6275-4657-8c8d-abd174e98136", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T19:51:37.000Z" + }, + "end": { + "$date": "2022-01-13T21:43:20.000Z" + }, + "events": [ + { + "uuid": "2e4d27ba-731e-4b84-b413-9738e8694c4b", + "start": { + "$date": "2022-01-13T19:51:37.000Z" + }, + "end": { + "$date": "2022-01-13T21:43:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "5a93cc46-2dd3-4678-a299-5c0724328c54", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-13T20:09:41.000Z" + }, + "end": { + "$date": "2022-01-13T21:06:33.000Z" + }, + "events": [ + { + "uuid": "032a104e-f027-4a41-9643-2a2f0a73fb8c", + "start": { + "$date": "2022-01-13T20:09:41.000Z" + }, + "end": { + "$date": "2022-01-13T21:06:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "a1f63257-2761-4995-acda-0f0e5c000c91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-13T21:05:00.000Z" + }, + "end": { + "$date": "2022-01-13T22:50:51.000Z" + }, + "events": [ + { + "uuid": "7abe8c44-c3e2-4737-bc3b-03226ca20564", + "start": { + "$date": "2022-01-13T21:05:00.000Z" + }, + "end": { + "$date": "2022-01-13T21:59:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5733f22-d7df-49b8-a0d7-bff4d82252ac", + "start": { + "$date": "2022-01-13T21:59:00.000Z" + }, + "end": { + "$date": "2022-01-13T22:50:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9fa3f1c1-8552-4780-8b72-d6a887036d18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-13T21:44:00.000Z" + }, + "end": { + "$date": "2022-01-14T00:43:03.000Z" + }, + "events": [ + { + "uuid": "582c7143-64b1-4ca3-a621-5da70cff4187", + "start": { + "$date": "2022-01-13T21:44:00.000Z" + }, + "end": { + "$date": "2022-01-14T00:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5189f97e-fb34-4071-a0c5-423744517592", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-13T22:01:26.000Z" + }, + "end": { + "$date": "2022-01-13T23:13:57.000Z" + }, + "events": [ + { + "uuid": "85b6b479-e055-4df5-bedc-16ef15122e31", + "start": { + "$date": "2022-01-13T22:01:26.000Z" + }, + "end": { + "$date": "2022-01-13T23:13:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e457d40-116b-405f-8573-0ed8583624a0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T23:05:35.000Z" + }, + "end": { + "$date": "2022-01-13T23:43:29.000Z" + }, + "events": [ + { + "uuid": "154f4d3b-f5cb-4171-a9bd-aff892422662", + "start": { + "$date": "2022-01-13T23:05:35.000Z" + }, + "end": { + "$date": "2022-01-13T23:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7ee95521-bcaa-4fde-be39-18d5f2065f96", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-13T23:42:50.000Z" + }, + "end": { + "$date": "2022-01-14T04:17:50.000Z" + }, + "events": [ + { + "uuid": "3c0189e3-9420-4a6d-9f5a-f7a4698b91dd", + "start": { + "$date": "2022-01-13T23:42:50.000Z" + }, + "end": { + "$date": "2022-01-14T01:00:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5da2b27f-f25c-479e-b5c5-8c13c2178385", + "start": { + "$date": "2022-01-14T01:00:50.000Z" + }, + "end": { + "$date": "2022-01-14T01:05:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc33b7cc-c009-44ec-b634-146d02efc627", + "start": { + "$date": "2022-01-14T01:05:50.000Z" + }, + "end": { + "$date": "2022-01-14T01:15:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c00aa95b-cce6-4198-96f3-05bbc4f2ed53", + "start": { + "$date": "2022-01-14T01:15:50.000Z" + }, + "end": { + "$date": "2022-01-14T01:16:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "10d0be25-3624-4c18-aeac-a6d8d70ea67b", + "start": { + "$date": "2022-01-14T01:16:50.000Z" + }, + "end": { + "$date": "2022-01-14T04:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5ad7f422-6bde-4762-906d-c8470873317e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-13T23:45:15.000Z" + }, + "end": { + "$date": "2022-01-14T00:21:48.000Z" + }, + "events": [ + { + "uuid": "f63950af-a4a5-41d0-bc12-59f5e64b5625", + "start": { + "$date": "2022-01-13T23:45:15.000Z" + }, + "end": { + "$date": "2022-01-14T00:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3520cfb-c0c2-4b34-87eb-570c2e9c4e6c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-14T01:31:21.000Z" + }, + "end": { + "$date": "2022-01-14T01:53:20.000Z" + }, + "events": [ + { + "uuid": "639e2735-46c9-442d-a338-cfee3a9c0e16", + "start": { + "$date": "2022-01-14T01:31:21.000Z" + }, + "end": { + "$date": "2022-01-14T01:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64723316-ae83-4d83-b913-9aa2e027e16b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-14T01:25:02.000Z" + }, + "end": { + "$date": "2022-01-14T01:26:20.000Z" + }, + "events": [ + { + "uuid": "d7128317-3607-4f81-96fb-cee1bd0eaf12", + "start": { + "$date": "2022-01-14T01:25:02.000Z" + }, + "end": { + "$date": "2022-01-14T01:26:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "611268a5-c413-40d2-847f-3185dc8333fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-14T01:31:23.000Z" + }, + "end": { + "$date": "2022-01-14T01:53:23.000Z" + }, + "events": [ + { + "uuid": "19d54d28-9b78-4f51-8f98-bb04029e6c83", + "start": { + "$date": "2022-01-14T01:31:23.000Z" + }, + "end": { + "$date": "2022-01-14T01:53:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "61bc7921-e222-48df-a84f-8542b1da098a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-14T01:16:55.000Z" + }, + "end": { + "$date": "2022-01-14T02:06:02.000Z" + }, + "events": [ + { + "uuid": "944eaa56-a717-4274-85ca-1a8b0bbbb3cf", + "start": { + "$date": "2022-01-14T01:16:55.000Z" + }, + "end": { + "$date": "2022-01-14T01:41:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e08edf83-7885-4f4d-9ab3-72e2141f64ba", + "start": { + "$date": "2022-01-14T01:41:55.000Z" + }, + "end": { + "$date": "2022-01-14T01:46:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c3c9a033-fd05-497a-be3d-995559afd3d0", + "start": { + "$date": "2022-01-14T01:46:55.000Z" + }, + "end": { + "$date": "2022-01-14T02:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0294a327-a02b-470b-812f-652f1bb9f20a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-14T02:00:02.000Z" + }, + "end": { + "$date": "2022-01-14T02:21:35.000Z" + }, + "events": [ + { + "uuid": "da9eebf4-cf7d-45a6-867f-60ab1eab05bf", + "start": { + "$date": "2022-01-14T02:00:02.000Z" + }, + "end": { + "$date": "2022-01-14T02:21:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9bb9827-a8ac-4b10-83ba-1f3a8bb5056b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-14T01:59:54.000Z" + }, + "end": { + "$date": "2022-01-14T02:21:44.000Z" + }, + "events": [ + { + "uuid": "b2765743-f225-4512-8455-2fb94b169732", + "start": { + "$date": "2022-01-14T01:59:54.000Z" + }, + "end": { + "$date": "2022-01-14T02:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed705cbd-ceb1-4f87-bb56-feefa70d7c38", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T02:08:33.000Z" + }, + "end": { + "$date": "2022-01-14T02:27:32.000Z" + }, + "events": [ + { + "uuid": "c89e454e-2326-43d6-872f-befd024f7d0e", + "start": { + "$date": "2022-01-14T02:08:33.000Z" + }, + "end": { + "$date": "2022-01-14T02:27:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a72a245-795d-4089-bfe9-6f81e22812b9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T02:12:18.000Z" + }, + "end": { + "$date": "2022-01-14T02:42:07.000Z" + }, + "events": [ + { + "uuid": "7a81f312-314d-4e2e-98f9-9c0a31cf25fe", + "start": { + "$date": "2022-01-14T02:12:18.000Z" + }, + "end": { + "$date": "2022-01-14T02:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f611cf44-9b3f-42f0-b138-89ae37f68cdc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-14T02:11:18.000Z" + }, + "end": { + "$date": "2022-01-14T02:36:51.000Z" + }, + "events": [ + { + "uuid": "827c3566-d2d1-4bec-a257-2dda0f5abb3b", + "start": { + "$date": "2022-01-14T02:11:18.000Z" + }, + "end": { + "$date": "2022-01-14T02:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fca30399-7729-4d85-a29c-e2e3da456199", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-14T02:37:01.000Z" + }, + "end": { + "$date": "2022-01-14T03:42:38.000Z" + }, + "events": [ + { + "uuid": "0b7688c4-8215-4ea3-9707-37a0fda72549", + "start": { + "$date": "2022-01-14T02:37:01.000Z" + }, + "end": { + "$date": "2022-01-14T03:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4e197512-c65c-49df-9bab-ddb6d756d061", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-14T02:37:30.000Z" + }, + "end": { + "$date": "2022-01-14T03:42:41.000Z" + }, + "events": [ + { + "uuid": "3004d366-6747-4a00-ab23-d03017069a6f", + "start": { + "$date": "2022-01-14T02:37:30.000Z" + }, + "end": { + "$date": "2022-01-14T03:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "785f6879-fe0b-46b5-9fd4-d957d4f360fd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T02:45:47.000Z" + }, + "end": { + "$date": "2022-01-14T03:10:58.000Z" + }, + "events": [ + { + "uuid": "ade83c11-5de1-44b2-a677-6cc1b05fd476", + "start": { + "$date": "2022-01-14T02:45:47.000Z" + }, + "end": { + "$date": "2022-01-14T03:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3a84a755-cd90-4f2b-a765-596bbd197b39", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-14T03:02:15.000Z" + }, + "end": { + "$date": "2022-01-14T06:38:04.000Z" + }, + "events": [ + { + "uuid": "11ea99cb-c094-4214-b098-22183c3cd7a3", + "start": { + "$date": "2022-01-14T03:02:15.000Z" + }, + "end": { + "$date": "2022-01-14T06:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95d205ff-3cd0-4d26-8ef1-02c176768aa5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T03:14:08.000Z" + }, + "end": { + "$date": "2022-01-14T03:35:24.000Z" + }, + "events": [ + { + "uuid": "cf7c1481-8313-4e90-b6b5-830dfd6f91ac", + "start": { + "$date": "2022-01-14T03:14:08.000Z" + }, + "end": { + "$date": "2022-01-14T03:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a16e41bd-5aa0-4a1e-891b-63198ea4d06c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T03:19:38.000Z" + }, + "end": { + "$date": "2022-01-14T05:41:41.000Z" + }, + "events": [ + { + "uuid": "d817f2c6-a1b2-4fda-99b0-9a9cf083fbda", + "start": { + "$date": "2022-01-14T03:19:38.000Z" + }, + "end": { + "$date": "2022-01-14T05:41:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5448e766-9136-4726-8393-b4377dd11b56", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T03:38:54.000Z" + }, + "end": { + "$date": "2022-01-14T04:04:29.000Z" + }, + "events": [ + { + "uuid": "eb9ef113-9cd3-4b9e-9f6c-201fbd831c9a", + "start": { + "$date": "2022-01-14T03:38:54.000Z" + }, + "end": { + "$date": "2022-01-14T04:04:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dcf324a5-53b8-4db7-8d89-bbb603961c88", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T04:07:40.000Z" + }, + "end": { + "$date": "2022-01-14T04:09:00.000Z" + }, + "events": [ + { + "uuid": "b1f11c14-2ecc-402c-b8e6-faf148db6563", + "start": { + "$date": "2022-01-14T04:07:40.000Z" + }, + "end": { + "$date": "2022-01-14T04:09:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79c56fb5-c6bc-4a36-a2ea-e3aba9f38788", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T04:10:35.000Z" + }, + "end": { + "$date": "2022-01-14T04:39:53.000Z" + }, + "events": [ + { + "uuid": "a0144503-2b9f-4f6f-9b0b-cd036ed78820", + "start": { + "$date": "2022-01-14T04:10:35.000Z" + }, + "end": { + "$date": "2022-01-14T04:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "32d5b2ea-f17a-4823-a83c-3c4ed31ac995", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T04:19:19.000Z" + }, + "end": { + "$date": "2022-01-14T05:41:32.000Z" + }, + "events": [ + { + "uuid": "0c8eb053-63f6-4282-b821-9c4386903cbe", + "start": { + "$date": "2022-01-14T04:19:19.000Z" + }, + "end": { + "$date": "2022-01-14T05:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ad87547-2807-4035-930b-40aaa15ec52a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-14T05:27:52.000Z" + }, + "end": { + "$date": "2022-01-14T05:49:17.000Z" + }, + "events": [ + { + "uuid": "76a1caca-1941-4fdd-8d8b-377f72b4b83f", + "start": { + "$date": "2022-01-14T05:27:52.000Z" + }, + "end": { + "$date": "2022-01-14T05:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "70ff00cc-9145-484c-af7d-d4bc602459cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T05:43:11.000Z" + }, + "end": { + "$date": "2022-01-14T06:02:23.000Z" + }, + "events": [ + { + "uuid": "cf0361e6-b164-44b4-8114-1e6ffc0e8fd3", + "start": { + "$date": "2022-01-14T05:43:11.000Z" + }, + "end": { + "$date": "2022-01-14T06:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "1d181510-0d1d-442d-819c-ae9e6300b77f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T05:43:46.000Z" + }, + "end": { + "$date": "2022-01-14T07:28:46.000Z" + }, + "events": [ + { + "uuid": "07c1f65f-b71f-49ee-9574-390eb586f552", + "start": { + "$date": "2022-01-14T05:43:46.000Z" + }, + "end": { + "$date": "2022-01-14T07:28:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "019ed376-fd1d-48e2-bd70-1ae67d38521c", + "uuid": "3cfdf133-4720-4473-9133-815248d91768", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-14T06:03:19.000Z" + }, + "end": { + "$date": "2022-01-14T06:52:09.000Z" + }, + "events": [ + { + "uuid": "406515ea-3282-4190-bac9-1cc7f82a8e00", + "start": { + "$date": "2022-01-14T06:03:19.000Z" + }, + "end": { + "$date": "2022-01-14T06:52:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0bd2d2fd-7ad4-4078-a033-05b63cd94b9f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-14T06:37:12.000Z" + }, + "end": { + "$date": "2022-01-14T06:43:16.000Z" + }, + "events": [ + { + "uuid": "7f50415d-535f-47c1-9126-f0e82d65db8c", + "start": { + "$date": "2022-01-14T06:37:12.000Z" + }, + "end": { + "$date": "2022-01-14T06:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cddff332-fe3f-4770-a47d-a6b25b633919", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-14T06:53:28.000Z" + }, + "end": { + "$date": "2022-01-14T07:34:13.000Z" + }, + "events": [ + { + "uuid": "9ca4ec5c-5118-447b-9d72-c1ae6ecb8aa6", + "start": { + "$date": "2022-01-14T06:53:28.000Z" + }, + "end": { + "$date": "2022-01-14T07:34:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80ab84a2-8910-43af-a717-3e1531106122", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-14T06:53:28.000Z" + }, + "end": { + "$date": "2022-01-14T07:34:06.000Z" + }, + "events": [ + { + "uuid": "953d1add-8c2a-4ddd-931c-6b69b77f6511", + "start": { + "$date": "2022-01-14T06:53:28.000Z" + }, + "end": { + "$date": "2022-01-14T07:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "ea249fcf-ae58-4e80-8c6b-bc273e60a705", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-14T06:56:49.000Z" + }, + "end": { + "$date": "2022-01-14T07:28:39.000Z" + }, + "events": [ + { + "uuid": "69e2edc4-92e0-40e5-8b8d-96da64c811f7", + "start": { + "$date": "2022-01-14T06:56:49.000Z" + }, + "end": { + "$date": "2022-01-14T07:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "019ed376-fd1d-48e2-bd70-1ae67d38521c", + "uuid": "7aa50f34-4727-415d-b1ee-10c9ea869c0b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-14T07:21:52.000Z" + }, + "end": { + "$date": "2022-01-14T08:01:20.000Z" + }, + "events": [ + { + "uuid": "34963da7-9e91-47c1-8dd2-2432e9b2cc30", + "start": { + "$date": "2022-01-14T07:21:52.000Z" + }, + "end": { + "$date": "2022-01-14T08:01:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b55c4b9-6981-4c95-b2ec-a5b09e5c9f74", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-14T07:34:56.000Z" + }, + "end": { + "$date": "2022-01-14T07:36:23.000Z" + }, + "events": [ + { + "uuid": "586c5c56-14e5-4a74-ac4c-7033af999f64", + "start": { + "$date": "2022-01-14T07:34:56.000Z" + }, + "end": { + "$date": "2022-01-14T07:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", + "uuid": "a83db008-036a-4b22-ac47-076fd27247a1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-14T08:11:52.000Z" + }, + "end": { + "$date": "2022-01-14T08:36:46.000Z" + }, + "events": [ + { + "uuid": "4ec1c10f-86c1-475b-a2ed-542ebb731c9c", + "start": { + "$date": "2022-01-14T08:11:52.000Z" + }, + "end": { + "$date": "2022-01-14T08:36:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "fcbc410e-0beb-4082-8703-cc2e97ff31b4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T15:26:00.000Z" + }, + "end": { + "$date": "2022-01-14T16:16:28.000Z" + }, + "events": [ + { + "uuid": "e45ddae6-d230-4798-a303-c9cf48c2979b", + "start": { + "$date": "2022-01-14T15:26:00.000Z" + }, + "end": { + "$date": "2022-01-14T16:16:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e5291a58-3fa6-4522-89a6-5d374f89f4ba", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T16:11:11.000Z" + }, + "end": { + "$date": "2022-01-14T17:26:59.000Z" + }, + "events": [ + { + "uuid": "fb532cf2-7d78-4026-a904-513d37f373a3", + "start": { + "$date": "2022-01-14T16:11:11.000Z" + }, + "end": { + "$date": "2022-01-14T17:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "26474d71-f697-46b9-83e0-ff6ae57e4ac0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T16:20:17.000Z" + }, + "end": { + "$date": "2022-01-14T17:26:57.000Z" + }, + "events": [ + { + "uuid": "5447f65a-6362-45b4-844e-bca0e8d22900", + "start": { + "$date": "2022-01-14T16:20:17.000Z" + }, + "end": { + "$date": "2022-01-14T17:26:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "d148f4d5-8e44-4f83-b3ac-fd2ba13082a9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-14T16:49:33.000Z" + }, + "end": { + "$date": "2022-01-14T16:59:22.000Z" + }, + "events": [ + { + "uuid": "0f076651-fef5-4a82-9e0b-ac7075a74693", + "start": { + "$date": "2022-01-14T16:49:33.000Z" + }, + "end": { + "$date": "2022-01-14T16:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "749e0c1f-001f-4b60-acfd-f680712b4981", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-14T17:07:46.000Z" + }, + "end": { + "$date": "2022-01-14T18:19:57.000Z" + }, + "events": [ + { + "uuid": "35d37fe8-f807-47e4-9933-d47caf75b982", + "start": { + "$date": "2022-01-14T17:07:46.000Z" + }, + "end": { + "$date": "2022-01-14T18:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "72e27f0b-d7da-4197-9441-7dab8ab96dc6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T17:27:17.000Z" + }, + "end": { + "$date": "2022-01-14T18:55:09.000Z" + }, + "events": [ + { + "uuid": "8108ec51-2212-4566-b4de-212347eca3c9", + "start": { + "$date": "2022-01-14T17:27:17.000Z" + }, + "end": { + "$date": "2022-01-14T18:55:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "a3830ea5-b793-48e8-b48d-2420478a11d5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T17:27:39.000Z" + }, + "end": { + "$date": "2022-01-14T18:51:02.000Z" + }, + "events": [ + { + "uuid": "b7740f49-a1d5-45ed-8529-b1088ac8ed87", + "start": { + "$date": "2022-01-14T17:27:39.000Z" + }, + "end": { + "$date": "2022-01-14T18:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "8b70833b-900e-4255-b2c4-9395da86a53a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-14T17:30:22.000Z" + }, + "end": { + "$date": "2022-01-14T17:56:45.000Z" + }, + "events": [ + { + "uuid": "98476509-1477-46d2-9177-aa3f88ef1a80", + "start": { + "$date": "2022-01-14T17:30:22.000Z" + }, + "end": { + "$date": "2022-01-14T17:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b1003abc-f503-49aa-a11b-fc143683271a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T17:46:08.000Z" + }, + "end": { + "$date": "2022-01-14T18:01:49.000Z" + }, + "events": [ + { + "uuid": "ba2abe3c-3da7-477e-9694-26cf1213fd25", + "start": { + "$date": "2022-01-14T17:46:08.000Z" + }, + "end": { + "$date": "2022-01-14T18:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d102fae3-f4ae-49d9-b5da-578e8734cf5d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T18:44:59.000Z" + }, + "end": { + "$date": "2022-01-14T19:20:42.000Z" + }, + "events": [ + { + "uuid": "16197bc0-c643-4cdb-ba04-5701e8465540", + "start": { + "$date": "2022-01-14T18:44:59.000Z" + }, + "end": { + "$date": "2022-01-14T19:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "63738280-bacc-4553-8227-6e85684fe07c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T19:21:10.000Z" + }, + "end": { + "$date": "2022-01-14T20:05:32.000Z" + }, + "events": [ + { + "uuid": "916a3384-6165-4e06-ae0a-78cad0de1e50", + "start": { + "$date": "2022-01-14T19:21:10.000Z" + }, + "end": { + "$date": "2022-01-14T20:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "2f11ecb2-e2db-4cde-846f-ceb58848e3de", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T19:21:13.000Z" + }, + "end": { + "$date": "2022-01-14T20:34:49.000Z" + }, + "events": [ + { + "uuid": "db33b422-6504-4ca3-97eb-7fac7ea80748", + "start": { + "$date": "2022-01-14T19:21:13.000Z" + }, + "end": { + "$date": "2022-01-14T20:34:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eafd723a-3648-4578-b208-8064c10a765f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T19:24:29.000Z" + }, + "end": { + "$date": "2022-01-14T19:37:55.000Z" + }, + "events": [ + { + "uuid": "095f5ec5-10ac-486a-a822-ad2c6a59ad45", + "start": { + "$date": "2022-01-14T19:24:29.000Z" + }, + "end": { + "$date": "2022-01-14T19:37:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "cf05aff4-9dc4-46ef-82ed-52880e3382c8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-14T19:58:14.000Z" + }, + "end": { + "$date": "2022-01-14T20:32:20.000Z" + }, + "events": [ + { + "uuid": "bacbfb26-a177-4d5b-ae21-cc732fb3eb1a", + "start": { + "$date": "2022-01-14T19:58:14.000Z" + }, + "end": { + "$date": "2022-01-14T20:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "74668c5f-bcd8-4a5d-aa52-e90e6c27c36d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T19:58:36.000Z" + }, + "end": { + "$date": "2022-01-14T20:01:26.000Z" + }, + "events": [ + { + "uuid": "c489130b-900d-4fc0-b95c-6df6f9bedba0", + "start": { + "$date": "2022-01-14T19:58:36.000Z" + }, + "end": { + "$date": "2022-01-14T20:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "27cf82bb-ee82-47a5-bc22-2219de3b8479", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T20:08:07.000Z" + }, + "end": { + "$date": "2022-01-14T20:11:17.000Z" + }, + "events": [ + { + "uuid": "e9a57247-dc24-4ff6-9d9f-0c4b3f8de49d", + "start": { + "$date": "2022-01-14T20:08:07.000Z" + }, + "end": { + "$date": "2022-01-14T20:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c2340292-d8e6-4d6e-8db9-71184f654761", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-14T20:26:03.000Z" + }, + "end": { + "$date": "2022-01-14T20:46:34.000Z" + }, + "events": [ + { + "uuid": "c734bbdb-d19f-407b-ad16-897b4ca95199", + "start": { + "$date": "2022-01-14T20:26:03.000Z" + }, + "end": { + "$date": "2022-01-14T20:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91efdb4b-d40e-4957-bdbf-d81488be9ae7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-14T20:43:18.000Z" + }, + "end": { + "$date": "2022-01-14T21:14:11.000Z" + }, + "events": [ + { + "uuid": "e4bb341d-8655-4e62-b576-b4560f60ec2c", + "start": { + "$date": "2022-01-14T20:43:18.000Z" + }, + "end": { + "$date": "2022-01-14T21:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4ffe4842-71f3-4532-8dd4-7d023af28db2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T20:34:10.000Z" + }, + "end": { + "$date": "2022-01-14T21:04:34.000Z" + }, + "events": [ + { + "uuid": "ef6020c5-bfc6-40b5-8756-f4c68d1da244", + "start": { + "$date": "2022-01-14T20:34:10.000Z" + }, + "end": { + "$date": "2022-01-14T21:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "95da7c4b-5933-47a7-9b24-7e9ec2186309", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T21:08:36.000Z" + }, + "end": { + "$date": "2022-01-14T21:18:24.000Z" + }, + "events": [ + { + "uuid": "ea1c9aa3-f80c-4675-a904-d518dc51891a", + "start": { + "$date": "2022-01-14T21:08:36.000Z" + }, + "end": { + "$date": "2022-01-14T21:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "374426e0-77d7-4f18-bf0c-d1efcd339a68", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-14T21:14:36.000Z" + }, + "end": { + "$date": "2022-01-14T23:31:49.000Z" + }, + "events": [ + { + "uuid": "cb28f5cd-2cec-4ed2-bcb9-d41c4dcf1aea", + "start": { + "$date": "2022-01-14T21:14:36.000Z" + }, + "end": { + "$date": "2022-01-14T23:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "88efb3fc-f8d0-420c-ae13-50cb99eeb3c3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-14T22:05:44.000Z" + }, + "end": { + "$date": "2022-01-14T23:29:15.000Z" + }, + "events": [ + { + "uuid": "de8652dd-837d-409a-a7fb-7af68a0d987c", + "start": { + "$date": "2022-01-14T22:05:44.000Z" + }, + "end": { + "$date": "2022-01-14T22:39:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b059471a-e5d1-450b-9046-d65eb2888529", + "start": { + "$date": "2022-01-14T22:39:44.000Z" + }, + "end": { + "$date": "2022-01-14T22:44:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "57724916-3c9e-445a-aeeb-5ac1a30b380c", + "start": { + "$date": "2022-01-14T22:44:44.000Z" + }, + "end": { + "$date": "2022-01-14T22:54:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f01c4c00-8bd7-4499-88c9-9e822d02ce61", + "start": { + "$date": "2022-01-14T22:54:44.000Z" + }, + "end": { + "$date": "2022-01-14T23:04:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "da8ecda3-bc7a-45b8-8ad2-1e17fea4d68d", + "start": { + "$date": "2022-01-14T23:04:44.000Z" + }, + "end": { + "$date": "2022-01-14T23:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "123aea18-b2f5-4a9a-b676-b2e70cace6bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T22:05:47.000Z" + }, + "end": { + "$date": "2022-01-14T22:54:24.000Z" + }, + "events": [ + { + "uuid": "e5e4f984-78c7-4b55-9a66-0b8596b70eab", + "start": { + "$date": "2022-01-14T22:05:47.000Z" + }, + "end": { + "$date": "2022-01-14T22:54:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e10cb842-8833-46b8-ac7c-f7424cf6fce3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-14T23:04:45.000Z" + }, + "end": { + "$date": "2022-01-15T02:38:29.000Z" + }, + "events": [ + { + "uuid": "11669ed5-6eda-415f-b878-6382a4bb290d", + "start": { + "$date": "2022-01-14T23:04:45.000Z" + }, + "end": { + "$date": "2022-01-15T02:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "85a7c1b4-f5ed-4e41-af04-4165180728da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T00:11:43.000Z" + }, + "end": { + "$date": "2022-01-15T00:34:59.000Z" + }, + "events": [ + { + "uuid": "b7ef96d7-fc97-4488-ab08-f13f7cc172d1", + "start": { + "$date": "2022-01-15T00:11:43.000Z" + }, + "end": { + "$date": "2022-01-15T00:34:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "ab9092dd-fb5d-40ab-ac96-894a46f81146", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-15T00:14:16.000Z" + }, + "end": { + "$date": "2022-01-15T02:05:30.000Z" + }, + "events": [ + { + "uuid": "0a08a822-b190-4e63-9559-800fbc28d106", + "start": { + "$date": "2022-01-15T00:14:16.000Z" + }, + "end": { + "$date": "2022-01-15T02:05:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b574a53-aca9-459a-9875-6762c0a3e5dd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-15T00:31:07.000Z" + }, + "end": { + "$date": "2022-01-15T00:46:27.000Z" + }, + "events": [ + { + "uuid": "54d62c88-c66f-4787-bef8-9a1d45ebfbce", + "start": { + "$date": "2022-01-15T00:31:07.000Z" + }, + "end": { + "$date": "2022-01-15T00:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "41af381c-bdc2-4674-a9e3-b59a792d1d58", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T00:35:38.000Z" + }, + "end": { + "$date": "2022-01-15T02:33:17.000Z" + }, + "events": [ + { + "uuid": "4ea3e051-1cb6-4917-bd38-e5acfedf7308", + "start": { + "$date": "2022-01-15T00:35:38.000Z" + }, + "end": { + "$date": "2022-01-15T02:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "37bf372b-cdf8-4a23-945a-4329dd75b96f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T00:49:32.000Z" + }, + "end": { + "$date": "2022-01-15T01:47:30.000Z" + }, + "events": [ + { + "uuid": "519238ae-f403-46bb-bfee-7fdf586d4884", + "start": { + "$date": "2022-01-15T00:49:32.000Z" + }, + "end": { + "$date": "2022-01-15T01:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", + "uuid": "33c294f5-bb95-429e-9c00-463ce6ac4d7d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-15T00:57:28.000Z" + }, + "end": { + "$date": "2022-01-15T01:09:57.000Z" + }, + "events": [ + { + "uuid": "fc1333f7-0b88-4f16-945a-eebf2bc5a8c4", + "start": { + "$date": "2022-01-15T00:57:28.000Z" + }, + "end": { + "$date": "2022-01-15T01:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e4ac4f01-3abf-4753-a779-b1a13204d8ba", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T01:15:53.000Z" + }, + "end": { + "$date": "2022-01-15T03:05:22.000Z" + }, + "events": [ + { + "uuid": "fd7b6b55-6ac7-4349-baf1-5d9b9c530f8c", + "start": { + "$date": "2022-01-15T01:15:53.000Z" + }, + "end": { + "$date": "2022-01-15T03:05:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "b9a855dc-e90c-4b8b-8370-da8b6f82556e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T02:23:54.000Z" + }, + "end": { + "$date": "2022-01-15T02:45:20.000Z" + }, + "events": [ + { + "uuid": "7faf620b-3347-4804-b731-4c953c0c5e20", + "start": { + "$date": "2022-01-15T02:23:54.000Z" + }, + "end": { + "$date": "2022-01-15T02:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36053066-6025-4540-a7e8-64db74c1c075", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-15T02:50:50.000Z" + }, + "end": { + "$date": "2022-01-15T03:36:05.000Z" + }, + "events": [ + { + "uuid": "07ecf714-aad3-4a44-9b86-2ee0c8b5ce61", + "start": { + "$date": "2022-01-15T02:50:50.000Z" + }, + "end": { + "$date": "2022-01-15T03:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d1da33b-a4db-4dfe-86bb-005c2d4b2a90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T02:50:50.000Z" + }, + "end": { + "$date": "2022-01-15T03:35:56.000Z" + }, + "events": [ + { + "uuid": "d7e45acd-37a1-4f1d-9762-f503e18b323c", + "start": { + "$date": "2022-01-15T02:50:50.000Z" + }, + "end": { + "$date": "2022-01-15T03:35:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a57bf93e-443e-45a5-9846-9d34cd6b4e91", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T02:52:25.000Z" + }, + "end": { + "$date": "2022-01-15T03:27:46.000Z" + }, + "events": [ + { + "uuid": "627293ed-3385-4118-aec3-c7aaeb2fa560", + "start": { + "$date": "2022-01-15T02:52:25.000Z" + }, + "end": { + "$date": "2022-01-15T03:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a974798a-c439-4c70-af44-adb8ae29a2fb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T03:22:05.000Z" + }, + "end": { + "$date": "2022-01-15T04:06:32.000Z" + }, + "events": [ + { + "uuid": "acece62b-3c1e-4bd1-9478-279cdf6a8de3", + "start": { + "$date": "2022-01-15T03:22:05.000Z" + }, + "end": { + "$date": "2022-01-15T04:06:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9a9041e5-f7f1-4e60-91f6-590107fcdf85", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T03:27:56.000Z" + }, + "end": { + "$date": "2022-01-15T03:46:09.000Z" + }, + "events": [ + { + "uuid": "d70bd0fe-6873-412e-ac26-722af28a8962", + "start": { + "$date": "2022-01-15T03:27:56.000Z" + }, + "end": { + "$date": "2022-01-15T03:46:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "474bc8ee-6ab6-49a8-ab14-bc37728107bb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-15T03:09:19.000Z" + }, + "end": { + "$date": "2022-01-15T05:18:15.000Z" + }, + "events": [ + { + "uuid": "433f30b4-eada-4d00-b306-bac805138be2", + "start": { + "$date": "2022-01-15T03:09:19.000Z" + }, + "end": { + "$date": "2022-01-15T04:34:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd9e2d4f-bd9b-4762-bbf1-84ae2a569f4d", + "start": { + "$date": "2022-01-15T04:34:19.000Z" + }, + "end": { + "$date": "2022-01-15T05:18:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "0974f1fa-db5d-4eb3-9592-8a5445282743", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T03:48:29.000Z" + }, + "end": { + "$date": "2022-01-15T06:28:28.000Z" + }, + "events": [ + { + "uuid": "9693dd78-be75-4078-96bf-b78a9e77919e", + "start": { + "$date": "2022-01-15T03:48:29.000Z" + }, + "end": { + "$date": "2022-01-15T06:28:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "b1a95b06-c90f-4377-87b9-8c110bf0b00b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-15T03:50:21.000Z" + }, + "end": { + "$date": "2022-01-15T06:28:31.000Z" + }, + "events": [ + { + "uuid": "7edcb8e4-4c44-4d09-8493-039d5f31f21a", + "start": { + "$date": "2022-01-15T03:50:21.000Z" + }, + "end": { + "$date": "2022-01-15T06:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "551659dc-8049-42c3-8df3-520ff75feaa4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-15T04:33:32.000Z" + }, + "end": { + "$date": "2022-01-15T04:41:30.000Z" + }, + "events": [ + { + "uuid": "2db7dde9-6495-4b48-a07a-f3d413ea8163", + "start": { + "$date": "2022-01-15T04:33:32.000Z" + }, + "end": { + "$date": "2022-01-15T04:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "acb46965-94c8-406c-802b-dbb76280ff56", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-15T04:41:51.000Z" + }, + "end": { + "$date": "2022-01-15T06:14:17.000Z" + }, + "events": [ + { + "uuid": "30730897-0cd0-4b2a-baa8-b610033e29ad", + "start": { + "$date": "2022-01-15T04:41:51.000Z" + }, + "end": { + "$date": "2022-01-15T06:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "3794f231-cca9-4ce4-8fbd-5bd43fa8ace8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T05:29:40.000Z" + }, + "end": { + "$date": "2022-01-15T06:04:07.000Z" + }, + "events": [ + { + "uuid": "840770c9-c7fa-4a1d-b1b4-fc6fbb75f75e", + "start": { + "$date": "2022-01-15T05:29:40.000Z" + }, + "end": { + "$date": "2022-01-15T06:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "597a369c-070b-4861-9e30-ef600fb694b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-15T05:37:28.000Z" + }, + "end": { + "$date": "2022-01-15T06:46:04.000Z" + }, + "events": [ + { + "uuid": "01815f36-17f3-4819-9982-bfeee2f67764", + "start": { + "$date": "2022-01-15T05:37:28.000Z" + }, + "end": { + "$date": "2022-01-15T06:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "541e8dd5-2a14-482c-985a-c6b9d4a7c1ae", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T06:34:11.000Z" + }, + "end": { + "$date": "2022-01-15T06:36:10.000Z" + }, + "events": [ + { + "uuid": "3f6043b3-2261-430a-be3d-de98cb0b3a5d", + "start": { + "$date": "2022-01-15T06:34:11.000Z" + }, + "end": { + "$date": "2022-01-15T06:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e6329fe-87db-41ce-8c4f-e8e587f516bd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-15T06:13:27.000Z" + }, + "end": { + "$date": "2022-01-15T06:38:35.000Z" + }, + "events": [ + { + "uuid": "d0c6f3c6-535f-4b49-b186-03369beb47ef", + "start": { + "$date": "2022-01-15T06:13:27.000Z" + }, + "end": { + "$date": "2022-01-15T06:38:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7386732-ad1a-4d10-b622-6edece361625", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T08:47:33.000Z" + }, + "end": { + "$date": "2022-01-15T09:03:23.000Z" + }, + "events": [ + { + "uuid": "98793029-74b9-4291-ada1-497178a4d245", + "start": { + "$date": "2022-01-15T08:47:33.000Z" + }, + "end": { + "$date": "2022-01-15T09:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28925c64-1592-4ace-8c4a-4fd5dff2a30e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-15T06:46:52.000Z" + }, + "end": { + "$date": "2022-01-15T07:24:53.000Z" + }, + "events": [ + { + "uuid": "48b618af-59b1-40e3-a6e4-6c3210c582f2", + "start": { + "$date": "2022-01-15T06:46:52.000Z" + }, + "end": { + "$date": "2022-01-15T07:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", + "uuid": "13275c3e-9720-4a53-b2fe-5683ee0e8214", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T07:07:14.000Z" + }, + "end": { + "$date": "2022-01-15T08:02:55.000Z" + }, + "events": [ + { + "uuid": "4046206b-1405-42a5-a9f6-7f9be1caf8d9", + "start": { + "$date": "2022-01-15T07:07:14.000Z" + }, + "end": { + "$date": "2022-01-15T08:02:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e598cbe-af77-4eb3-9d61-a241582aa5b3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-15T08:47:30.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:31.000Z" + }, + "events": [ + { + "uuid": "eb87b693-b04a-4920-8d75-9f94fbbc8abb", + "start": { + "$date": "2022-01-15T08:47:30.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0768124e-7f4f-4b1b-85b9-101076dafb06", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T07:51:24.000Z" + }, + "end": { + "$date": "2022-01-15T07:53:43.000Z" + }, + "events": [ + { + "uuid": "15e56582-825e-4159-95a9-0a1fc89fb8ad", + "start": { + "$date": "2022-01-15T07:51:24.000Z" + }, + "end": { + "$date": "2022-01-15T07:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17dd8d19-8235-467b-8b1e-ebee9d9735ab", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T08:06:55.000Z" + }, + "end": { + "$date": "2022-01-15T08:23:31.000Z" + }, + "events": [ + { + "uuid": "f6a1dc49-ff8e-449f-8c34-192d6500bf99", + "start": { + "$date": "2022-01-15T08:06:55.000Z" + }, + "end": { + "$date": "2022-01-15T08:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "203fd4e3-cc1c-45b2-bfa1-24e7b6577133", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T08:07:01.000Z" + }, + "end": { + "$date": "2022-01-15T08:23:30.000Z" + }, + "events": [ + { + "uuid": "6d4c4cce-810e-4035-af6a-43972e40996c", + "start": { + "$date": "2022-01-15T08:07:01.000Z" + }, + "end": { + "$date": "2022-01-15T08:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdd402b8-69b4-4d71-9982-dc5c0a7681c1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-15T08:07:03.000Z" + }, + "end": { + "$date": "2022-01-15T08:23:28.000Z" + }, + "events": [ + { + "uuid": "1e2f5d46-92aa-4b4d-95d4-1002a81ecdec", + "start": { + "$date": "2022-01-15T08:07:03.000Z" + }, + "end": { + "$date": "2022-01-15T08:23:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22d7fa5f-1b1d-4852-b952-20c1cf8d8e06", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T08:26:17.000Z" + }, + "end": { + "$date": "2022-01-15T08:44:56.000Z" + }, + "events": [ + { + "uuid": "95f6bcdc-29b2-498a-8ac4-460ad7b723be", + "start": { + "$date": "2022-01-15T08:26:17.000Z" + }, + "end": { + "$date": "2022-01-15T08:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6614e3ea-34cc-48df-8742-090d83d89f00", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T08:26:16.000Z" + }, + "end": { + "$date": "2022-01-15T08:45:01.000Z" + }, + "events": [ + { + "uuid": "c3c866a6-8ed0-41bc-a588-689f38c49a4f", + "start": { + "$date": "2022-01-15T08:26:16.000Z" + }, + "end": { + "$date": "2022-01-15T08:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45c939be-ae6d-4a86-8ee6-2de689b7939d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-15T08:26:14.000Z" + }, + "end": { + "$date": "2022-01-15T08:45:04.000Z" + }, + "events": [ + { + "uuid": "c851f705-fa01-4d19-9dd4-579a36aea01e", + "start": { + "$date": "2022-01-15T08:26:14.000Z" + }, + "end": { + "$date": "2022-01-15T08:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "820c53f6-c62e-4b85-8640-fbae43bbe8cd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T08:47:26.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:22.000Z" + }, + "events": [ + { + "uuid": "b8d8e407-3a7b-4fde-8d9a-cf9edaead3f5", + "start": { + "$date": "2022-01-15T08:47:26.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd19300c-0ec6-453c-a2e2-8170b64de344", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-15T08:47:24.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:25.000Z" + }, + "events": [ + { + "uuid": "c771cdb3-7934-4d49-89a1-003fdf1455df", + "start": { + "$date": "2022-01-15T08:47:24.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61fc8e98-5eac-4c4f-b340-52b45605e556", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T08:47:28.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:18.000Z" + }, + "events": [ + { + "uuid": "f89177d7-ada2-4f68-a184-a871a364eba6", + "start": { + "$date": "2022-01-15T08:47:28.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b290025f-0129-4537-862f-7aaf20a8062b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T09:03:38.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:19.000Z" + }, + "events": [ + { + "uuid": "eaf08cbd-9a61-4dc5-b03a-adabf67b05dc", + "start": { + "$date": "2022-01-15T09:03:38.000Z" + }, + "end": { + "$date": "2022-01-15T09:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30459c32-9e4d-4999-ae57-2a9d54377d8f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T09:19:15.000Z" + }, + "end": { + "$date": "2022-01-15T09:33:38.000Z" + }, + "events": [ + { + "uuid": "74ddfd6d-69be-4005-b1b9-1c770d19e561", + "start": { + "$date": "2022-01-15T09:19:15.000Z" + }, + "end": { + "$date": "2022-01-15T09:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a27c975a-9a9d-4929-b253-c8b28b1549b9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T09:19:17.000Z" + }, + "end": { + "$date": "2022-01-15T09:33:37.000Z" + }, + "events": [ + { + "uuid": "1bd42252-fb90-4b5b-ab4b-a2a8e5bb843f", + "start": { + "$date": "2022-01-15T09:19:17.000Z" + }, + "end": { + "$date": "2022-01-15T09:33:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "857a5e27-d5fd-4013-80c2-0f98d321e298", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T09:19:19.000Z" + }, + "end": { + "$date": "2022-01-15T09:33:25.000Z" + }, + "events": [ + { + "uuid": "fd3a1aac-3ae6-4cd3-b864-58abb0e763d4", + "start": { + "$date": "2022-01-15T09:19:19.000Z" + }, + "end": { + "$date": "2022-01-15T09:33:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b42216c1-e060-42d9-b25e-f60f9de0e0de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T09:33:29.000Z" + }, + "end": { + "$date": "2022-01-15T09:34:30.000Z" + }, + "events": [ + { + "uuid": "25e144a6-989a-41d0-8aa6-0923620037fc", + "start": { + "$date": "2022-01-15T09:33:29.000Z" + }, + "end": { + "$date": "2022-01-15T09:34:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27eca52b-eaff-4d24-b469-af3a2f5ef0a5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T09:36:30.000Z" + }, + "end": { + "$date": "2022-01-15T10:00:27.000Z" + }, + "events": [ + { + "uuid": "fa1f947e-a625-46c7-8535-3e35091f237a", + "start": { + "$date": "2022-01-15T09:36:30.000Z" + }, + "end": { + "$date": "2022-01-15T10:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fe81c4d-fcb0-4d72-b47c-6c01d978faa7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T09:36:31.000Z" + }, + "end": { + "$date": "2022-01-15T10:00:15.000Z" + }, + "events": [ + { + "uuid": "dbb2d560-5f4d-465a-a9ab-17506878be74", + "start": { + "$date": "2022-01-15T09:36:31.000Z" + }, + "end": { + "$date": "2022-01-15T10:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "168bf682-3771-4d82-8f9f-f582800f344a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T09:36:27.000Z" + }, + "end": { + "$date": "2022-01-15T10:00:18.000Z" + }, + "events": [ + { + "uuid": "7ddc71ef-eda1-4497-9bd2-12b00d06a8df", + "start": { + "$date": "2022-01-15T09:36:27.000Z" + }, + "end": { + "$date": "2022-01-15T10:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "914c50e7-eabd-49f8-823a-dd4acb7a537d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T10:18:04.000Z" + }, + "end": { + "$date": "2022-01-15T10:25:13.000Z" + }, + "events": [ + { + "uuid": "93de11f4-056b-4ce9-bc50-e2d0953bebce", + "start": { + "$date": "2022-01-15T10:18:04.000Z" + }, + "end": { + "$date": "2022-01-15T10:25:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44ce218e-5f5d-490c-9508-28e42b647931", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T10:02:37.000Z" + }, + "end": { + "$date": "2022-01-15T10:25:06.000Z" + }, + "events": [ + { + "uuid": "12f6b4ae-1139-4340-8b8e-674fada5a355", + "start": { + "$date": "2022-01-15T10:02:37.000Z" + }, + "end": { + "$date": "2022-01-15T10:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1913cb48-8afd-4013-b26c-7962170618b5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T10:02:33.000Z" + }, + "end": { + "$date": "2022-01-15T10:25:20.000Z" + }, + "events": [ + { + "uuid": "54b2ed38-9108-4825-a742-bd55d2222c7b", + "start": { + "$date": "2022-01-15T10:02:33.000Z" + }, + "end": { + "$date": "2022-01-15T10:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06be5afb-2ccb-4654-9450-5a2fdb6b1ebe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T10:32:49.000Z" + }, + "end": { + "$date": "2022-01-15T10:34:51.000Z" + }, + "events": [ + { + "uuid": "8368e015-d4c4-4dcb-8dfb-8316a28be915", + "start": { + "$date": "2022-01-15T10:32:49.000Z" + }, + "end": { + "$date": "2022-01-15T10:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", + "uuid": "faeff824-32af-40f8-b07c-79aaaf722709", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-15T10:45:41.000Z" + }, + "end": { + "$date": "2022-01-15T11:08:59.000Z" + }, + "events": [ + { + "uuid": "c074a86d-be2d-4480-9546-f5f984df03e2", + "start": { + "$date": "2022-01-15T10:45:41.000Z" + }, + "end": { + "$date": "2022-01-15T11:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "9c53ba78-3873-4349-9094-75b9e2a56fdb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T15:38:33.000Z" + }, + "end": { + "$date": "2022-01-15T17:42:20.000Z" + }, + "events": [ + { + "uuid": "c2aa96b6-511a-40ec-8364-132a705c5142", + "start": { + "$date": "2022-01-15T15:38:33.000Z" + }, + "end": { + "$date": "2022-01-15T16:07:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "842c8c6e-206a-4795-8a1f-c1317518c537", + "start": { + "$date": "2022-01-15T16:07:33.000Z" + }, + "end": { + "$date": "2022-01-15T16:10:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "91136149-b857-4a85-a001-faaa88a426cd", + "start": { + "$date": "2022-01-15T16:10:33.000Z" + }, + "end": { + "$date": "2022-01-15T16:20:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffc8c291-7670-4f7a-8f1c-2a8ba1d77d92", + "start": { + "$date": "2022-01-15T16:20:33.000Z" + }, + "end": { + "$date": "2022-01-15T16:50:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b8f97729-1f72-41c1-8739-357a0da7fc2b", + "start": { + "$date": "2022-01-15T16:50:33.000Z" + }, + "end": { + "$date": "2022-01-15T17:36:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5329fe07-1103-459e-8691-b15c9f42bcc6", + "start": { + "$date": "2022-01-15T17:36:33.000Z" + }, + "end": { + "$date": "2022-01-15T17:37:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "372b60c3-d0ff-4034-9f4e-5b9a780f55a2", + "start": { + "$date": "2022-01-15T17:37:33.000Z" + }, + "end": { + "$date": "2022-01-15T17:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "4d064c4f-9583-4c8e-b64c-947e9f9df3cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T15:43:17.000Z" + }, + "end": { + "$date": "2022-01-15T16:51:25.000Z" + }, + "events": [ + { + "uuid": "b7a468d4-32a9-41c8-a5f7-67c62dae2404", + "start": { + "$date": "2022-01-15T15:43:17.000Z" + }, + "end": { + "$date": "2022-01-15T16:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ce928589-0145-48a6-9a4a-187a00096778", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T16:52:10.000Z" + }, + "end": { + "$date": "2022-01-15T17:53:00.000Z" + }, + "events": [ + { + "uuid": "a7b7d919-4422-4c81-83ca-3fcf898b3d83", + "start": { + "$date": "2022-01-15T16:52:10.000Z" + }, + "end": { + "$date": "2022-01-15T17:13:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1d2254e-18f6-43b0-9230-5580d920d8b0", + "start": { + "$date": "2022-01-15T17:13:10.000Z" + }, + "end": { + "$date": "2022-01-15T17:18:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7b6f179a-4053-467f-a8fd-89a0faaed124", + "start": { + "$date": "2022-01-15T17:18:10.000Z" + }, + "end": { + "$date": "2022-01-15T17:53:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4f203064-46a6-427c-aecd-4222ddf07438", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-15T17:24:14.000Z" + }, + "end": { + "$date": "2022-01-15T22:42:06.000Z" + }, + "events": [ + { + "uuid": "1e1af82e-9850-4e5f-a284-175d6fd72057", + "start": { + "$date": "2022-01-15T17:24:14.000Z" + }, + "end": { + "$date": "2022-01-15T19:49:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fecf4a1f-b5df-4556-ae8a-cffe34917d6d", + "start": { + "$date": "2022-01-15T19:49:14.000Z" + }, + "end": { + "$date": "2022-01-15T19:54:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b35285f1-538e-4c2a-99bc-a356af0f231c", + "start": { + "$date": "2022-01-15T19:54:14.000Z" + }, + "end": { + "$date": "2022-01-15T20:04:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f8016d0-3522-4bab-ae26-bfb520e2f85f", + "start": { + "$date": "2022-01-15T20:04:14.000Z" + }, + "end": { + "$date": "2022-01-15T20:42:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db6200f8-658f-40c3-a37d-1ff60d0e5e1c", + "start": { + "$date": "2022-01-15T20:42:14.000Z" + }, + "end": { + "$date": "2022-01-15T21:03:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3eb754a8-6993-4a61-b45c-bb22b77849c2", + "start": { + "$date": "2022-01-15T21:03:14.000Z" + }, + "end": { + "$date": "2022-01-15T21:08:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cfc7fa75-0d11-468b-b463-e0861550efbb", + "start": { + "$date": "2022-01-15T21:08:14.000Z" + }, + "end": { + "$date": "2022-01-15T21:21:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69e7092e-0640-4a36-b6bc-d75206a414e5", + "start": { + "$date": "2022-01-15T21:21:14.000Z" + }, + "end": { + "$date": "2022-01-15T21:26:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c8a8be2-ac54-4de4-9213-869978fb0bb6", + "start": { + "$date": "2022-01-15T21:26:14.000Z" + }, + "end": { + "$date": "2022-01-15T22:22:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e3db852-6e1c-40ed-84a0-35a508b0a5c2", + "start": { + "$date": "2022-01-15T22:22:14.000Z" + }, + "end": { + "$date": "2022-01-15T22:25:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "72c671b1-0cc2-4670-873b-832cb8abf669", + "start": { + "$date": "2022-01-15T22:25:14.000Z" + }, + "end": { + "$date": "2022-01-15T22:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05674bc0-a634-4947-ada6-745ba1f7db19", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T17:54:45.000Z" + }, + "end": { + "$date": "2022-01-15T18:32:23.000Z" + }, + "events": [ + { + "uuid": "d31363b2-af9a-4b59-bbc3-c14792d54635", + "start": { + "$date": "2022-01-15T17:54:45.000Z" + }, + "end": { + "$date": "2022-01-15T18:32:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "6380c016-68a3-4f15-907a-f90089ce24c3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T17:53:29.000Z" + }, + "end": { + "$date": "2022-01-15T19:25:25.000Z" + }, + "events": [ + { + "uuid": "00a93841-f02a-4850-a901-8debb0797908", + "start": { + "$date": "2022-01-15T17:53:29.000Z" + }, + "end": { + "$date": "2022-01-15T19:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "709a9be1-85b6-49ca-83f0-af4222a2ecbf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T18:34:51.000Z" + }, + "end": { + "$date": "2022-01-15T19:09:22.000Z" + }, + "events": [ + { + "uuid": "b95019aa-6533-4804-a8ff-08e813748fbd", + "start": { + "$date": "2022-01-15T18:34:51.000Z" + }, + "end": { + "$date": "2022-01-15T19:09:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5c4a2ca-1af1-4ea1-840a-74d6cfde21df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T18:39:14.000Z" + }, + "end": { + "$date": "2022-01-15T19:11:39.000Z" + }, + "events": [ + { + "uuid": "b4aa10e3-7790-458b-a568-41cc6ea23275", + "start": { + "$date": "2022-01-15T18:39:14.000Z" + }, + "end": { + "$date": "2022-01-15T19:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "043451a6-a49b-4996-a6cd-dcce9e1cecaa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T19:30:43.000Z" + }, + "end": { + "$date": "2022-01-15T19:40:04.000Z" + }, + "events": [ + { + "uuid": "028f0560-e2b6-4b60-be5c-777351862384", + "start": { + "$date": "2022-01-15T19:30:43.000Z" + }, + "end": { + "$date": "2022-01-15T19:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b998973-4403-4791-a889-5716808409b7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T20:43:57.000Z" + }, + "end": { + "$date": "2022-01-15T20:47:19.000Z" + }, + "events": [ + { + "uuid": "aab8206c-654e-4e55-aa28-40bc4e6f245d", + "start": { + "$date": "2022-01-15T20:43:57.000Z" + }, + "end": { + "$date": "2022-01-15T20:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "f1cff000-5373-45b1-9f8d-ad1f3bcf5774", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-15T19:23:30.000Z" + }, + "end": { + "$date": "2022-01-15T19:51:32.000Z" + }, + "events": [ + { + "uuid": "e4b403aa-468d-4c82-ace6-aaecca41e91a", + "start": { + "$date": "2022-01-15T19:23:30.000Z" + }, + "end": { + "$date": "2022-01-15T19:51:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "16fee66a-9f7c-4d2e-8bb6-aedaa0419f3b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T19:25:35.000Z" + }, + "end": { + "$date": "2022-01-15T19:36:37.000Z" + }, + "events": [ + { + "uuid": "9c31a33e-20e1-4cda-b3c4-47046a180c94", + "start": { + "$date": "2022-01-15T19:25:35.000Z" + }, + "end": { + "$date": "2022-01-15T19:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "bfb22c1a-60a3-4ac1-94ad-7956f7e32e9a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T19:36:47.000Z" + }, + "end": { + "$date": "2022-01-15T20:42:11.000Z" + }, + "events": [ + { + "uuid": "bfac332d-a652-4be4-a448-d4037c37c88d", + "start": { + "$date": "2022-01-15T19:36:47.000Z" + }, + "end": { + "$date": "2022-01-15T20:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "bc64c4ea-6f1a-432b-b5fc-3ffc1e7e7329", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T19:37:30.000Z" + }, + "end": { + "$date": "2022-01-15T19:40:10.000Z" + }, + "events": [ + { + "uuid": "08a05736-c4ea-409a-a147-313b5860ce0e", + "start": { + "$date": "2022-01-15T19:37:30.000Z" + }, + "end": { + "$date": "2022-01-15T19:40:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2ae52c0-db2d-4329-9021-d0ccc4fa45e9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T20:02:29.000Z" + }, + "end": { + "$date": "2022-01-15T20:02:44.000Z" + }, + "events": [ + { + "uuid": "ee808f01-ac32-4c5d-9267-05e6a48f6e30", + "start": { + "$date": "2022-01-15T20:02:29.000Z" + }, + "end": { + "$date": "2022-01-15T20:02:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26250a7d-7ef1-4d72-8fe8-5a4ee3844aa8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T19:43:40.000Z" + }, + "end": { + "$date": "2022-01-15T20:02:25.000Z" + }, + "events": [ + { + "uuid": "3cfbfab5-17ef-43b2-b84d-ed36fb1cb3db", + "start": { + "$date": "2022-01-15T19:43:40.000Z" + }, + "end": { + "$date": "2022-01-15T20:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "7122cdfc-8b4b-438f-b987-7b64558e3d6f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T20:43:55.000Z" + }, + "end": { + "$date": "2022-01-15T20:44:30.000Z" + }, + "events": [ + { + "uuid": "c48dbdb8-3f14-4ca8-bef3-6468a003fcac", + "start": { + "$date": "2022-01-15T20:43:55.000Z" + }, + "end": { + "$date": "2022-01-15T20:44:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "063ce162-684c-4e07-8f30-a96e3a0e8ee1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T20:08:20.000Z" + }, + "end": { + "$date": "2022-01-15T20:43:51.000Z" + }, + "events": [ + { + "uuid": "6634f8e5-d96a-4b60-999d-a6a7ded7b64c", + "start": { + "$date": "2022-01-15T20:08:20.000Z" + }, + "end": { + "$date": "2022-01-15T20:43:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "210ae647-d730-41e8-a06d-bf52ef646626", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T20:44:16.000Z" + }, + "end": { + "$date": "2022-01-15T21:12:24.000Z" + }, + "events": [ + { + "uuid": "fe913f3f-c4ce-43d2-8ec5-90807b70297a", + "start": { + "$date": "2022-01-15T20:44:16.000Z" + }, + "end": { + "$date": "2022-01-15T20:55:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55744d76-b41e-4a9c-b260-19e9e0bbd9a3", + "start": { + "$date": "2022-01-15T20:55:16.000Z" + }, + "end": { + "$date": "2022-01-15T20:59:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f60ce3b4-7346-4508-b8c9-4ff3168e0933", + "start": { + "$date": "2022-01-15T20:59:16.000Z" + }, + "end": { + "$date": "2022-01-15T21:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a33c68ce-2b88-429d-8560-2c5a770ff3f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T20:45:21.000Z" + }, + "end": { + "$date": "2022-01-15T20:58:22.000Z" + }, + "events": [ + { + "uuid": "dc01622d-4cda-464e-8c3f-1bf51b30c333", + "start": { + "$date": "2022-01-15T20:45:21.000Z" + }, + "end": { + "$date": "2022-01-15T20:58:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "d30a71dd-fa14-40cc-9ea5-6627aa69dd22", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T20:45:35.000Z" + }, + "end": { + "$date": "2022-01-15T21:06:28.000Z" + }, + "events": [ + { + "uuid": "b4e7eadb-5366-44e6-bc01-2ca92fccc7a4", + "start": { + "$date": "2022-01-15T20:45:35.000Z" + }, + "end": { + "$date": "2022-01-15T21:06:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "2383839b-b048-425f-acfb-c41c1da72605", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T21:12:58.000Z" + }, + "end": { + "$date": "2022-01-15T22:18:14.000Z" + }, + "events": [ + { + "uuid": "23746d67-3604-4207-8bc4-eca28c6d1463", + "start": { + "$date": "2022-01-15T21:12:58.000Z" + }, + "end": { + "$date": "2022-01-15T22:18:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "4fe2dbbb-909f-404e-aacb-20389e64177d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-15T21:13:21.000Z" + }, + "end": { + "$date": "2022-01-15T22:17:59.000Z" + }, + "events": [ + { + "uuid": "e0af92e2-05ed-45ef-b782-83e4d18a9db7", + "start": { + "$date": "2022-01-15T21:13:21.000Z" + }, + "end": { + "$date": "2022-01-15T22:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ca644e32-2d3d-49cc-945a-df2b6fd8cbd5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-15T22:03:58.000Z" + }, + "end": { + "$date": "2022-01-16T01:55:31.000Z" + }, + "events": [ + { + "uuid": "079ba17d-b195-420b-b0da-4e8e20263d23", + "start": { + "$date": "2022-01-15T22:03:58.000Z" + }, + "end": { + "$date": "2022-01-16T01:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "dcd813ea-82be-4bd1-a4fa-b124fbcb0139", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T22:22:59.000Z" + }, + "end": { + "$date": "2022-01-15T23:06:01.000Z" + }, + "events": [ + { + "uuid": "80e3a11a-dcb2-4a4f-8311-782c0872c6bf", + "start": { + "$date": "2022-01-15T22:22:59.000Z" + }, + "end": { + "$date": "2022-01-15T23:06:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dd4ce496-611d-4360-9285-35eeb2c52d08", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-16T03:29:04.000Z" + }, + "end": { + "$date": "2022-01-16T06:42:00.000Z" + }, + "events": [ + { + "uuid": "e814aecd-480a-475d-83de-89eb2971b22b", + "start": { + "$date": "2022-01-16T03:29:04.000Z" + }, + "end": { + "$date": "2022-01-16T06:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0224d13e-be94-49ff-a71a-3385dcb150fc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T22:35:56.000Z" + }, + "end": { + "$date": "2022-01-15T23:09:57.000Z" + }, + "events": [ + { + "uuid": "a111bd4c-672f-4cf5-91d1-a843b726f8e5", + "start": { + "$date": "2022-01-15T22:35:56.000Z" + }, + "end": { + "$date": "2022-01-15T23:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "39aff350-fc43-4cba-a7ad-3625130a8f71", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-15T22:59:48.000Z" + }, + "end": { + "$date": "2022-01-15T23:17:19.000Z" + }, + "events": [ + { + "uuid": "102b0d4e-a40a-434f-a7e9-dd420582b514", + "start": { + "$date": "2022-01-15T22:59:48.000Z" + }, + "end": { + "$date": "2022-01-15T23:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1dfae7d7-cc0e-4176-8d41-2aabcd87de14", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-15T23:06:26.000Z" + }, + "end": { + "$date": "2022-01-16T00:30:21.000Z" + }, + "events": [ + { + "uuid": "1d8a06b1-f79d-4c80-86d8-bebbc8ecb4e8", + "start": { + "$date": "2022-01-15T23:06:26.000Z" + }, + "end": { + "$date": "2022-01-16T00:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ec4365af-40d0-4217-aff5-e09e89380a9f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-15T23:09:57.000Z" + }, + "end": { + "$date": "2022-01-16T00:30:49.000Z" + }, + "events": [ + { + "uuid": "9655777a-ca62-4825-8f03-ade95b85724f", + "start": { + "$date": "2022-01-15T23:09:57.000Z" + }, + "end": { + "$date": "2022-01-16T00:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9615fab2-cdc2-43bc-9151-874b5ea0705f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T23:14:47.000Z" + }, + "end": { + "$date": "2022-01-15T23:40:02.000Z" + }, + "events": [ + { + "uuid": "290778b2-f7bd-4435-9dcc-a1e2ebb35c8b", + "start": { + "$date": "2022-01-15T23:14:47.000Z" + }, + "end": { + "$date": "2022-01-15T23:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "627f2c5e-8590-4b03-9bf7-ef1b0df5fe06", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-15T23:45:58.000Z" + }, + "end": { + "$date": "2022-01-16T00:16:08.000Z" + }, + "events": [ + { + "uuid": "421d34b7-0f11-4b77-b5cd-4fd7eafc6a9c", + "start": { + "$date": "2022-01-15T23:45:58.000Z" + }, + "end": { + "$date": "2022-01-16T00:16:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4a09bdc3-b00d-4125-b158-3826e04cdeaf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-15T23:59:55.000Z" + }, + "end": { + "$date": "2022-01-16T00:04:00.000Z" + }, + "events": [ + { + "uuid": "4b654be1-abbe-4f1a-a68a-4b4752c89230", + "start": { + "$date": "2022-01-15T23:59:55.000Z" + }, + "end": { + "$date": "2022-01-16T00:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b0ebd3a4-253b-4df2-bd22-4f51ee3c6c9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-16T01:43:32.000Z" + }, + "end": { + "$date": "2022-01-16T01:49:33.000Z" + }, + "events": [ + { + "uuid": "ed2f5ec0-1b29-4b27-878e-88a8fa8094b9", + "start": { + "$date": "2022-01-16T01:43:32.000Z" + }, + "end": { + "$date": "2022-01-16T01:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4afd204e-0bce-4274-8e07-e77030706aa3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-16T00:20:20.000Z" + }, + "end": { + "$date": "2022-01-16T01:40:05.000Z" + }, + "events": [ + { + "uuid": "9ef85d2d-bb53-4206-ba9e-3e449cbe24d0", + "start": { + "$date": "2022-01-16T00:20:20.000Z" + }, + "end": { + "$date": "2022-01-16T01:40:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77a7a1c6-352d-4342-81fd-c4ad7485f1ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T00:25:27.000Z" + }, + "end": { + "$date": "2022-01-16T00:27:15.000Z" + }, + "events": [ + { + "uuid": "b95479ab-47ff-49b5-8ba5-e16e2a73f6b0", + "start": { + "$date": "2022-01-16T00:25:27.000Z" + }, + "end": { + "$date": "2022-01-16T00:27:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "f8fb9bc1-194d-4f76-9de4-4788bfc0975e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T00:45:24.000Z" + }, + "end": { + "$date": "2022-01-16T01:36:18.000Z" + }, + "events": [ + { + "uuid": "379744c4-8aad-4b0a-b3e4-f4ae6fb8e9ee", + "start": { + "$date": "2022-01-16T00:45:24.000Z" + }, + "end": { + "$date": "2022-01-16T01:36:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a431de70-56b4-4b16-aa6c-6b1a5fb9b01e", + "uuid": "b6971879-1a1e-4493-8ce0-8d618b1cfae5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T00:56:02.000Z" + }, + "end": { + "$date": "2022-01-16T02:37:27.000Z" + }, + "events": [ + { + "uuid": "0534acc2-163c-4f00-88a6-b34489095368", + "start": { + "$date": "2022-01-16T00:56:02.000Z" + }, + "end": { + "$date": "2022-01-16T02:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d5bd0857-a9e1-45a8-b580-211cfe761978", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-16T01:04:12.000Z" + }, + "end": { + "$date": "2022-01-16T03:09:54.000Z" + }, + "events": [ + { + "uuid": "ea334680-1581-4826-8926-80fab1b59a97", + "start": { + "$date": "2022-01-16T01:04:12.000Z" + }, + "end": { + "$date": "2022-01-16T03:09:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "4c59858d-1353-4620-b735-bff713627884", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-16T01:56:06.000Z" + }, + "end": { + "$date": "2022-01-16T02:21:02.000Z" + }, + "events": [ + { + "uuid": "5a4dfc1f-20f2-4bc1-b908-ea92b31e3aab", + "start": { + "$date": "2022-01-16T01:56:06.000Z" + }, + "end": { + "$date": "2022-01-16T02:21:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", + "uuid": "36de0ee6-6955-4359-9017-7dc66872db3e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-16T02:09:34.000Z" + }, + "end": { + "$date": "2022-01-16T02:30:21.000Z" + }, + "events": [ + { + "uuid": "a176979d-70f7-4165-906a-d27995bc5f45", + "start": { + "$date": "2022-01-16T02:09:34.000Z" + }, + "end": { + "$date": "2022-01-16T02:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a431de70-56b4-4b16-aa6c-6b1a5fb9b01e", + "uuid": "c9686fa2-3b8e-4210-a13c-0fdaae86db4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T02:44:42.000Z" + }, + "end": { + "$date": "2022-01-16T02:59:47.000Z" + }, + "events": [ + { + "uuid": "656a3d76-dd11-4610-9134-02264bd5d623", + "start": { + "$date": "2022-01-16T02:44:42.000Z" + }, + "end": { + "$date": "2022-01-16T02:59:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d499e438-71f2-456f-9673-b051edcee6af", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T02:59:28.000Z" + }, + "end": { + "$date": "2022-01-16T03:15:58.000Z" + }, + "events": [ + { + "uuid": "2c798d41-5bd1-4fa8-93c0-14ded06be471", + "start": { + "$date": "2022-01-16T02:59:28.000Z" + }, + "end": { + "$date": "2022-01-16T03:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", + "uuid": "668ca79c-a8aa-46f3-afa0-b0b0f8546b7f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-16T02:58:51.000Z" + }, + "end": { + "$date": "2022-01-16T03:23:47.000Z" + }, + "events": [ + { + "uuid": "bac70185-757e-435a-bc5a-382469834fc6", + "start": { + "$date": "2022-01-16T02:58:51.000Z" + }, + "end": { + "$date": "2022-01-16T03:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "682cd6de-2edb-455f-b35e-2a43276005c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-16T03:03:48.000Z" + }, + "end": { + "$date": "2022-01-16T04:06:03.000Z" + }, + "events": [ + { + "uuid": "0695a978-df19-4ac1-b9f7-ff1ddb12e1e1", + "start": { + "$date": "2022-01-16T03:03:48.000Z" + }, + "end": { + "$date": "2022-01-16T04:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "294914f6-4a0c-4534-a05d-9b395544eb81", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-16T03:10:15.000Z" + }, + "end": { + "$date": "2022-01-16T08:33:39.000Z" + }, + "events": [ + { + "uuid": "3a318738-be35-461f-b9a1-2293317b2144", + "start": { + "$date": "2022-01-16T03:10:15.000Z" + }, + "end": { + "$date": "2022-01-16T08:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3dec2a47-db6c-49d6-abc3-c12e52c44c13", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-16T03:16:24.000Z" + }, + "end": { + "$date": "2022-01-16T06:41:57.000Z" + }, + "events": [ + { + "uuid": "ca69a48f-f774-4503-ab50-0522092bfd5b", + "start": { + "$date": "2022-01-16T03:16:24.000Z" + }, + "end": { + "$date": "2022-01-16T06:41:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f543f20-67ec-4bcb-b088-aa8e9f3b7e37", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T03:19:20.000Z" + }, + "end": { + "$date": "2022-01-16T03:25:37.000Z" + }, + "events": [ + { + "uuid": "90a568f2-594e-456f-a4f9-0561cae2f2bb", + "start": { + "$date": "2022-01-16T03:19:20.000Z" + }, + "end": { + "$date": "2022-01-16T03:25:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "57929696-3021-451a-b5ff-9c8d89dc2298", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T03:26:10.000Z" + }, + "end": { + "$date": "2022-01-16T04:06:54.000Z" + }, + "events": [ + { + "uuid": "c04f3bab-afbe-4a34-86c9-68c2e05fc038", + "start": { + "$date": "2022-01-16T03:26:10.000Z" + }, + "end": { + "$date": "2022-01-16T04:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "3fd97a59-6d48-4dd7-991e-e5f9064f3088", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T03:31:29.000Z" + }, + "end": { + "$date": "2022-01-16T06:13:38.000Z" + }, + "events": [ + { + "uuid": "b393e934-0aa6-44a5-88a0-228897d0b97f", + "start": { + "$date": "2022-01-16T03:31:29.000Z" + }, + "end": { + "$date": "2022-01-16T06:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a998b799-0715-4256-b68e-2506441d635b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T03:49:13.000Z" + }, + "end": { + "$date": "2022-01-16T04:12:14.000Z" + }, + "events": [ + { + "uuid": "f1b187d1-6817-4a8e-b157-a2ef73419091", + "start": { + "$date": "2022-01-16T03:49:13.000Z" + }, + "end": { + "$date": "2022-01-16T04:12:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b1c40c54-a136-42b2-9128-db197db36da0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T03:55:55.000Z" + }, + "end": { + "$date": "2022-01-16T04:53:17.000Z" + }, + "events": [ + { + "uuid": "c26142ac-f45b-417a-a411-a6c7155412eb", + "start": { + "$date": "2022-01-16T03:55:55.000Z" + }, + "end": { + "$date": "2022-01-16T04:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a25d819e-d0a3-4503-b55c-5a3173f66d24", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T04:09:10.000Z" + }, + "end": { + "$date": "2022-01-16T04:45:14.000Z" + }, + "events": [ + { + "uuid": "f90c0d90-8395-4bc2-b2a4-4caeae1af5fc", + "start": { + "$date": "2022-01-16T04:09:10.000Z" + }, + "end": { + "$date": "2022-01-16T04:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1973e39-9ab7-4ad5-8e46-11211f34a177", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T04:22:36.000Z" + }, + "end": { + "$date": "2022-01-16T04:40:24.000Z" + }, + "events": [ + { + "uuid": "a86f7a45-7145-4adb-99e1-abfddd97cb26", + "start": { + "$date": "2022-01-16T04:22:36.000Z" + }, + "end": { + "$date": "2022-01-16T04:40:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "422350d9-4c9d-4323-a897-502412b0e3d6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T04:22:42.000Z" + }, + "end": { + "$date": "2022-01-16T04:40:23.000Z" + }, + "events": [ + { + "uuid": "e6a9838a-610b-4642-96c5-fd2c2237536f", + "start": { + "$date": "2022-01-16T04:22:42.000Z" + }, + "end": { + "$date": "2022-01-16T04:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03812625-e759-4c5e-92f3-af3fd787b1e0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T04:22:50.000Z" + }, + "end": { + "$date": "2022-01-16T04:40:31.000Z" + }, + "events": [ + { + "uuid": "7922e699-2664-49f1-8372-537247b29188", + "start": { + "$date": "2022-01-16T04:22:50.000Z" + }, + "end": { + "$date": "2022-01-16T04:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b3bfc0ab-cada-4380-8543-8cfe9438f971", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-16T04:34:01.000Z" + }, + "end": { + "$date": "2022-01-16T06:16:17.000Z" + }, + "events": [ + { + "uuid": "1da5f135-f9d8-4f42-a0d9-d4f0d1a7a606", + "start": { + "$date": "2022-01-16T04:34:01.000Z" + }, + "end": { + "$date": "2022-01-16T06:16:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae71fbb9-4e28-4869-a488-44df18ecf640", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T04:43:22.000Z" + }, + "end": { + "$date": "2022-01-16T04:59:17.000Z" + }, + "events": [ + { + "uuid": "17954f3a-6148-4219-ab08-9113f70a850f", + "start": { + "$date": "2022-01-16T04:43:22.000Z" + }, + "end": { + "$date": "2022-01-16T04:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93a82e6b-6e15-4e03-9978-08625f6c006c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T04:43:26.000Z" + }, + "end": { + "$date": "2022-01-16T04:59:27.000Z" + }, + "events": [ + { + "uuid": "b098332c-a9fe-49a5-9e1a-26b76d1eb7fe", + "start": { + "$date": "2022-01-16T04:43:26.000Z" + }, + "end": { + "$date": "2022-01-16T04:59:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9da77070-0674-47e8-b4ce-13f68522d498", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T04:43:13.000Z" + }, + "end": { + "$date": "2022-01-16T04:59:28.000Z" + }, + "events": [ + { + "uuid": "82334742-694d-412e-9217-9d0581152a9e", + "start": { + "$date": "2022-01-16T04:43:13.000Z" + }, + "end": { + "$date": "2022-01-16T04:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86877e17-156c-4a23-ae61-48ffb69da8b0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T04:47:49.000Z" + }, + "end": { + "$date": "2022-01-16T05:26:10.000Z" + }, + "events": [ + { + "uuid": "3ed893c2-dd6d-4be6-b508-bc6fa7858dd6", + "start": { + "$date": "2022-01-16T04:47:49.000Z" + }, + "end": { + "$date": "2022-01-16T05:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", + "uuid": "836f3bed-8ee3-44e4-8bcd-da44cf15bafc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-16T04:55:32.000Z" + }, + "end": { + "$date": "2022-01-16T08:35:38.000Z" + }, + "events": [ + { + "uuid": "777bf010-9575-41b5-aacc-2c3ceb4c86ac", + "start": { + "$date": "2022-01-16T04:55:32.000Z" + }, + "end": { + "$date": "2022-01-16T08:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", + "uuid": "149f8843-6f26-4125-ad0d-f21923460b2a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-16T04:57:31.000Z" + }, + "end": { + "$date": "2022-01-16T05:20:33.000Z" + }, + "events": [ + { + "uuid": "e1bb0469-9cc3-481b-939b-8f69bc7a045a", + "start": { + "$date": "2022-01-16T04:57:31.000Z" + }, + "end": { + "$date": "2022-01-16T05:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f9dafc2-5e87-4074-a66a-5263dd4a0cb9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T04:59:46.000Z" + }, + "end": { + "$date": "2022-01-16T05:02:45.000Z" + }, + "events": [ + { + "uuid": "26e7d133-f641-48e0-9add-7eb30c79d770", + "start": { + "$date": "2022-01-16T04:59:46.000Z" + }, + "end": { + "$date": "2022-01-16T05:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34088319-57ac-4d83-b348-1811a62aa43b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T05:07:07.000Z" + }, + "end": { + "$date": "2022-01-16T05:45:08.000Z" + }, + "events": [ + { + "uuid": "351e8be5-12dd-4216-94bd-4fdce2cf8108", + "start": { + "$date": "2022-01-16T05:07:07.000Z" + }, + "end": { + "$date": "2022-01-16T05:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05c6a632-9e04-4d72-ae69-ac5cd2776c96", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T05:51:39.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:35.000Z" + }, + "events": [ + { + "uuid": "a9f0470a-062f-439c-937c-112297e1603a", + "start": { + "$date": "2022-01-16T05:51:39.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58075a67-fd4b-4426-b868-bc283cf87f41", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T05:07:08.000Z" + }, + "end": { + "$date": "2022-01-16T05:45:10.000Z" + }, + "events": [ + { + "uuid": "0d9460f3-6ad3-4b6c-a187-4dda910391a9", + "start": { + "$date": "2022-01-16T05:07:08.000Z" + }, + "end": { + "$date": "2022-01-16T05:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5dc7e353-ff0a-4130-90e1-d664e4e9747f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T05:06:59.000Z" + }, + "end": { + "$date": "2022-01-16T05:45:14.000Z" + }, + "events": [ + { + "uuid": "5ad3c738-bdcf-47ba-b66f-37760360e7e0", + "start": { + "$date": "2022-01-16T05:06:59.000Z" + }, + "end": { + "$date": "2022-01-16T05:45:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", + "uuid": "8eb06ed5-db57-45eb-899f-87cbff70fe72", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-16T05:21:29.000Z" + }, + "end": { + "$date": "2022-01-16T06:02:38.000Z" + }, + "events": [ + { + "uuid": "2bbbf6d4-f310-4bc4-bb52-c2603e19e15d", + "start": { + "$date": "2022-01-16T05:21:29.000Z" + }, + "end": { + "$date": "2022-01-16T06:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18f5b9aa-f6b8-4ba0-8a88-5519d42db610", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T05:51:44.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:44.000Z" + }, + "events": [ + { + "uuid": "14aef67f-0ed8-445e-adcb-ae6d6b0690d8", + "start": { + "$date": "2022-01-16T05:51:44.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c12d54d-f217-4f6c-905a-3c6c38cbcd1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T05:51:31.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:46.000Z" + }, + "events": [ + { + "uuid": "2a3c0c4f-9e96-40cb-b5b8-cfbda98e5b58", + "start": { + "$date": "2022-01-16T05:51:31.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f5812ad-199d-4269-b196-dcd936066dfc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T05:51:35.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:45.000Z" + }, + "events": [ + { + "uuid": "97d123a7-60c1-47fb-bee8-625ba621cff1", + "start": { + "$date": "2022-01-16T05:51:35.000Z" + }, + "end": { + "$date": "2022-01-16T06:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d14eed8-3cc3-4294-8c08-e279669b2378", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T06:13:09.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:40.000Z" + }, + "events": [ + { + "uuid": "c6501dc4-548c-4a13-b64b-e886a99bbfe5", + "start": { + "$date": "2022-01-16T06:13:09.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7597789c-f36e-42ba-9bae-cc7898f47071", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T06:12:55.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:36.000Z" + }, + "events": [ + { + "uuid": "5e2d4fa0-7876-4137-99ad-1aeb3ee51260", + "start": { + "$date": "2022-01-16T06:12:55.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf478f0a-94ba-4211-ae0e-c76829845846", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T06:12:56.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:32.000Z" + }, + "events": [ + { + "uuid": "7be40036-32d6-45c3-a01b-ca9cfa9684cc", + "start": { + "$date": "2022-01-16T06:12:56.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e88f8e0-af54-4cb7-a145-85f5796cf196", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T06:12:55.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:38.000Z" + }, + "events": [ + { + "uuid": "5a55183a-762a-4ca7-807a-6c594e673133", + "start": { + "$date": "2022-01-16T06:12:55.000Z" + }, + "end": { + "$date": "2022-01-16T06:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "633ef702-f3fa-4e1a-9fb4-af2a01a38ee4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T06:27:09.000Z" + }, + "end": { + "$date": "2022-01-16T07:54:42.000Z" + }, + "events": [ + { + "uuid": "ac6b8d35-d0af-4bf3-aa8e-f240627c8b0e", + "start": { + "$date": "2022-01-16T06:27:09.000Z" + }, + "end": { + "$date": "2022-01-16T07:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f20ca58f-b29f-4b96-84c2-9cf0c21b7c65", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T06:55:56.000Z" + }, + "end": { + "$date": "2022-01-16T07:29:02.000Z" + }, + "events": [ + { + "uuid": "98cfedf0-865b-4e7e-b6cf-f1aabbaee03c", + "start": { + "$date": "2022-01-16T06:55:56.000Z" + }, + "end": { + "$date": "2022-01-16T07:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "9f01ec74-92bc-4e60-a141-2694e0e17e18", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-16T06:47:02.000Z" + }, + "end": { + "$date": "2022-01-16T07:02:28.000Z" + }, + "events": [ + { + "uuid": "c4b501fc-8da7-4cb3-a86e-a3b397ac8698", + "start": { + "$date": "2022-01-16T06:47:02.000Z" + }, + "end": { + "$date": "2022-01-16T07:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "4520561f-1e00-4ccf-925d-573ef44d3eac", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-16T06:47:44.000Z" + }, + "end": { + "$date": "2022-01-16T07:10:01.000Z" + }, + "events": [ + { + "uuid": "37e2e6e8-f159-421a-8d58-a26bd041a9f9", + "start": { + "$date": "2022-01-16T06:47:44.000Z" + }, + "end": { + "$date": "2022-01-16T07:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7ae100c7-b9b6-4c10-a2ec-f868d4d905fc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-16T06:48:01.000Z" + }, + "end": { + "$date": "2022-01-16T07:24:11.000Z" + }, + "events": [ + { + "uuid": "e804d8f3-b58c-405d-9e0b-d206948e978f", + "start": { + "$date": "2022-01-16T06:48:01.000Z" + }, + "end": { + "$date": "2022-01-16T07:24:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd3683e5-f715-44cb-9a49-4caa8098a576", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T06:55:52.000Z" + }, + "end": { + "$date": "2022-01-16T07:28:52.000Z" + }, + "events": [ + { + "uuid": "3511d702-6203-4266-883e-a19d9c6cc15c", + "start": { + "$date": "2022-01-16T06:55:52.000Z" + }, + "end": { + "$date": "2022-01-16T07:28:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fe9d087-2542-49e4-a1ec-43d3e8e9d929", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T06:55:58.000Z" + }, + "end": { + "$date": "2022-01-16T07:28:53.000Z" + }, + "events": [ + { + "uuid": "876d4185-fabf-4cb4-9b41-11358d68453e", + "start": { + "$date": "2022-01-16T06:55:58.000Z" + }, + "end": { + "$date": "2022-01-16T07:28:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c361bbff-8919-4dee-a497-026726dae2db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T06:55:56.000Z" + }, + "end": { + "$date": "2022-01-16T07:28:56.000Z" + }, + "events": [ + { + "uuid": "fd0bba22-f537-4120-ad66-d941f182644d", + "start": { + "$date": "2022-01-16T06:55:56.000Z" + }, + "end": { + "$date": "2022-01-16T07:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "5a2e7113-02f1-4291-a9a0-1539a2071336", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T07:15:18.000Z" + }, + "end": { + "$date": "2022-01-16T08:40:35.000Z" + }, + "events": [ + { + "uuid": "0a98ab45-a858-46b4-b96f-a5de642c23a7", + "start": { + "$date": "2022-01-16T07:15:18.000Z" + }, + "end": { + "$date": "2022-01-16T08:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "ad08094f-74ca-44f3-a88d-5ce05fcf4f04", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-16T07:24:26.000Z" + }, + "end": { + "$date": "2022-01-16T08:51:18.000Z" + }, + "events": [ + { + "uuid": "63127c8c-80bc-4cc0-abda-787507820551", + "start": { + "$date": "2022-01-16T07:24:26.000Z" + }, + "end": { + "$date": "2022-01-16T08:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf400bb2-8f75-4e16-a163-0261830d358a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-16T07:33:58.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:19.000Z" + }, + "events": [ + { + "uuid": "28465d7e-b014-4422-b22d-32c2f4826640", + "start": { + "$date": "2022-01-16T07:33:58.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "94603ac8-79a2-42ce-927c-53824761117e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-16T07:33:57.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:22.000Z" + }, + "events": [ + { + "uuid": "1afc9187-72ba-45a6-a34a-b4ca74f6b025", + "start": { + "$date": "2022-01-16T07:33:57.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aec57033-be44-45b7-aecd-6f501958b3b0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-16T07:33:58.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:18.000Z" + }, + "events": [ + { + "uuid": "65079cb0-d018-4336-b6c1-923ff764f4dc", + "start": { + "$date": "2022-01-16T07:33:58.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ef6e3b2-52f7-4ec7-afb7-bae5c0f0a0c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T07:33:54.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:20.000Z" + }, + "events": [ + { + "uuid": "5999d5f2-e0bc-46ce-9a9e-c6b5c193ae2a", + "start": { + "$date": "2022-01-16T07:33:54.000Z" + }, + "end": { + "$date": "2022-01-16T08:11:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "e313e3a2-8efb-4705-a8c3-7559344454df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T07:54:47.000Z" + }, + "end": { + "$date": "2022-01-16T08:32:50.000Z" + }, + "events": [ + { + "uuid": "ca12f039-c916-4d2a-b466-fb170b10e4f3", + "start": { + "$date": "2022-01-16T07:54:47.000Z" + }, + "end": { + "$date": "2022-01-16T08:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "696db9b6-3077-44f3-8577-8bdb1cffc4fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T08:12:18.000Z" + }, + "end": { + "$date": "2022-01-16T08:13:57.000Z" + }, + "events": [ + { + "uuid": "74136c27-cf06-42d4-a1a7-9822c846fd9f", + "start": { + "$date": "2022-01-16T08:12:18.000Z" + }, + "end": { + "$date": "2022-01-16T08:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b7da4350-c8bd-4f79-a2f6-c4106819c90a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T16:36:38.000Z" + }, + "end": { + "$date": "2022-01-16T17:21:36.000Z" + }, + "events": [ + { + "uuid": "2ae72b0c-9461-47e9-8cfa-541690dfab81", + "start": { + "$date": "2022-01-16T16:36:38.000Z" + }, + "end": { + "$date": "2022-01-16T17:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "70e9134b-5124-4ba9-9ca9-089ed4296094", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-16T17:07:30.000Z" + }, + "end": { + "$date": "2022-01-16T19:52:26.000Z" + }, + "events": [ + { + "uuid": "be92b46d-5533-457a-96c8-4fd74a0ae0ea", + "start": { + "$date": "2022-01-16T17:07:30.000Z" + }, + "end": { + "$date": "2022-01-16T18:01:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e859df0-4024-48cc-9bc4-9d799b2abc8c", + "start": { + "$date": "2022-01-16T18:01:30.000Z" + }, + "end": { + "$date": "2022-01-16T18:02:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6ae78730-3268-4e66-829e-cd1a8ee60483", + "start": { + "$date": "2022-01-16T18:02:30.000Z" + }, + "end": { + "$date": "2022-01-16T19:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "54316e89-cba6-4ee8-9d2d-d765500d548e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T17:11:02.000Z" + }, + "end": { + "$date": "2022-01-16T18:41:31.000Z" + }, + "events": [ + { + "uuid": "51fe10e5-894c-4af6-8116-b983a09b38db", + "start": { + "$date": "2022-01-16T17:11:02.000Z" + }, + "end": { + "$date": "2022-01-16T18:41:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1c3769e5-6f1c-4615-9edd-caf8f11f6610", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T17:18:43.000Z" + }, + "end": { + "$date": "2022-01-16T19:34:24.000Z" + }, + "events": [ + { + "uuid": "82cd52af-4351-46b2-93e0-65bbb0a371a2", + "start": { + "$date": "2022-01-16T17:18:43.000Z" + }, + "end": { + "$date": "2022-01-16T19:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bceab9e6-1339-4e03-864b-4635b5b0da5d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T18:38:17.000Z" + }, + "end": { + "$date": "2022-01-16T19:15:14.000Z" + }, + "events": [ + { + "uuid": "3197f50e-1012-4941-8a69-f5d1f2c2a571", + "start": { + "$date": "2022-01-16T18:38:17.000Z" + }, + "end": { + "$date": "2022-01-16T19:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "258f72f4-bcd0-404d-a5f0-fc544d5cddee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T20:47:59.000Z" + }, + "end": { + "$date": "2022-01-16T21:18:08.000Z" + }, + "events": [ + { + "uuid": "ef0bef29-6e8c-45ea-8e9b-8ee57a802ed1", + "start": { + "$date": "2022-01-16T20:47:59.000Z" + }, + "end": { + "$date": "2022-01-16T21:35:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c32a8f7e-0cef-454d-9fa8-f855082b5d89", + "start": { + "$date": "2022-01-16T21:35:59.000Z" + }, + "end": { + "$date": "2022-01-16T21:40:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9991b23-fa91-4463-9645-ecfff9d4b391", + "start": { + "$date": "2022-01-16T21:40:59.000Z" + }, + "end": { + "$date": "2022-01-16T21:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "307d40a9-b71a-453a-bb6f-635ac4d372c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-16T19:19:44.000Z" + }, + "end": { + "$date": "2022-01-16T19:22:41.000Z" + }, + "events": [ + { + "uuid": "b8413731-cc21-4f17-95fd-8124737bdf0e", + "start": { + "$date": "2022-01-16T19:19:44.000Z" + }, + "end": { + "$date": "2022-01-16T19:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8da93b5f-79e8-4e16-975d-b9b3506d67e6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T20:12:05.000Z" + }, + "end": { + "$date": "2022-01-16T20:39:39.000Z" + }, + "events": [ + { + "uuid": "f31c7ecf-8ca4-4dfb-9298-2398e603c751", + "start": { + "$date": "2022-01-16T20:12:05.000Z" + }, + "end": { + "$date": "2022-01-16T20:39:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "92b79ad6-a46a-4cdb-9f80-9c716948faa9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T20:12:13.000Z" + }, + "end": { + "$date": "2022-01-16T20:51:34.000Z" + }, + "events": [ + { + "uuid": "42f0a461-028d-4041-ad7c-55188e8125d3", + "start": { + "$date": "2022-01-16T20:12:13.000Z" + }, + "end": { + "$date": "2022-01-16T20:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "3004e763-595f-485e-8c04-bf0df629b002", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-16T20:19:17.000Z" + }, + "end": { + "$date": "2022-01-16T21:52:51.000Z" + }, + "events": [ + { + "uuid": "5587e617-ed82-42bb-b134-979e7e5d7ab4", + "start": { + "$date": "2022-01-16T20:19:17.000Z" + }, + "end": { + "$date": "2022-01-16T21:52:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ffbb052b-0a0c-4001-8981-ea900cd0602e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-16T20:29:40.000Z" + }, + "end": { + "$date": "2022-01-16T21:19:39.000Z" + }, + "events": [ + { + "uuid": "5e88ed94-3612-4e46-b895-37a45524f547", + "start": { + "$date": "2022-01-16T20:29:40.000Z" + }, + "end": { + "$date": "2022-01-16T20:59:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fcc3382a-ef73-489b-a8a9-2ee94511a041", + "start": { + "$date": "2022-01-16T20:59:40.000Z" + }, + "end": { + "$date": "2022-01-16T21:19:39.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "79a969dc-b4ef-4aa1-8c4b-926057c374d0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T20:57:49.000Z" + }, + "end": { + "$date": "2022-01-16T22:11:39.000Z" + }, + "events": [ + { + "uuid": "24b579bb-8cc4-4b9e-96b1-0e4e327f92eb", + "start": { + "$date": "2022-01-16T20:57:49.000Z" + }, + "end": { + "$date": "2022-01-16T22:11:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0142c027-3c4b-4148-9db8-ace7418b787d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-16T21:13:29.000Z" + }, + "end": { + "$date": "2022-01-16T21:46:28.000Z" + }, + "events": [ + { + "uuid": "9848ebdd-5f8c-4161-9137-a9eb1d2002f2", + "start": { + "$date": "2022-01-16T21:13:29.000Z" + }, + "end": { + "$date": "2022-01-16T21:46:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdcb40de-a30d-40e0-9e0f-0f3870abc7cd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T21:25:59.000Z" + }, + "end": { + "$date": "2022-01-16T21:54:02.000Z" + }, + "events": [ + { + "uuid": "c6f2c735-3733-4206-b5ba-9abff3073d1b", + "start": { + "$date": "2022-01-16T21:25:59.000Z" + }, + "end": { + "$date": "2022-01-16T21:54:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a3301936-27ae-4c50-bd04-7e078df58869", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T21:54:12.000Z" + }, + "end": { + "$date": "2022-01-16T22:40:32.000Z" + }, + "events": [ + { + "uuid": "21bc590a-f1cf-4fbf-a71d-e6a9c31429e7", + "start": { + "$date": "2022-01-16T21:54:12.000Z" + }, + "end": { + "$date": "2022-01-16T22:40:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0a1177c-4f4d-4d56-b112-340a92fbd7ae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T22:03:42.000Z" + }, + "end": { + "$date": "2022-01-16T22:23:33.000Z" + }, + "events": [ + { + "uuid": "e823d46d-e8f9-4441-b897-21e88a931798", + "start": { + "$date": "2022-01-16T22:03:42.000Z" + }, + "end": { + "$date": "2022-01-16T22:23:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "8387d17c-0d46-4225-a3a2-47c4ea9750f5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T22:12:09.000Z" + }, + "end": { + "$date": "2022-01-16T22:35:12.000Z" + }, + "events": [ + { + "uuid": "54e7a38a-6146-41de-9595-6a7b34cfd100", + "start": { + "$date": "2022-01-16T22:12:09.000Z" + }, + "end": { + "$date": "2022-01-16T22:35:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "e549aff2-eebb-467b-a141-425efbf08aa2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-16T22:21:11.000Z" + }, + "end": { + "$date": "2022-01-16T22:51:20.000Z" + }, + "events": [ + { + "uuid": "36f867de-29d3-4d23-946c-b605b97079f1", + "start": { + "$date": "2022-01-16T22:21:11.000Z" + }, + "end": { + "$date": "2022-01-16T22:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4348e494-752a-4ad5-9866-65c3566e0c62", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-16T22:25:38.000Z" + }, + "end": { + "$date": "2022-01-16T22:46:55.000Z" + }, + "events": [ + { + "uuid": "16aef148-f5da-4ae8-b01a-8a13ef4b6be7", + "start": { + "$date": "2022-01-16T22:25:38.000Z" + }, + "end": { + "$date": "2022-01-16T22:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d4482e5-3c58-434c-b1ed-8ae9f8b6cfb6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-16T22:41:58.000Z" + }, + "end": { + "$date": "2022-01-16T22:44:55.000Z" + }, + "events": [ + { + "uuid": "4abe7896-4c8c-4cdb-984e-8da5266d3fd5", + "start": { + "$date": "2022-01-16T22:41:58.000Z" + }, + "end": { + "$date": "2022-01-16T22:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "851ca8cd-4b9f-47d4-938b-0f5590beeeb7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T22:42:42.000Z" + }, + "end": { + "$date": "2022-01-16T23:33:09.000Z" + }, + "events": [ + { + "uuid": "37837224-01b1-4961-943a-f8c942437b8c", + "start": { + "$date": "2022-01-16T22:42:42.000Z" + }, + "end": { + "$date": "2022-01-16T23:33:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9fb8e6b8-a73e-46fd-aae7-14f6a831ed9d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-16T23:07:38.000Z" + }, + "end": { + "$date": "2022-01-16T23:12:24.000Z" + }, + "events": [ + { + "uuid": "a72a6518-a7a0-44c5-8922-fb9a3262ed9f", + "start": { + "$date": "2022-01-16T23:07:38.000Z" + }, + "end": { + "$date": "2022-01-16T23:12:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "dff553cd-5c2f-4845-85e6-196a03d1da13", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-16T23:09:48.000Z" + }, + "end": { + "$date": "2022-01-16T23:18:28.000Z" + }, + "events": [ + { + "uuid": "4b7c5a0b-e9c1-4cd5-bf8a-48a71268ccf6", + "start": { + "$date": "2022-01-16T23:09:48.000Z" + }, + "end": { + "$date": "2022-01-16T23:18:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "757ebd4d-7d6c-4bbd-b9ae-c25f20d83dcb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-16T23:12:49.000Z" + }, + "end": { + "$date": "2022-01-16T23:24:18.000Z" + }, + "events": [ + { + "uuid": "005ca153-6467-41a2-abce-41f72bb9ac0a", + "start": { + "$date": "2022-01-16T23:12:49.000Z" + }, + "end": { + "$date": "2022-01-16T23:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d38ae346-9e81-4d4d-a033-e4b4b5bd1ac3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-16T23:50:01.000Z" + }, + "end": { + "$date": "2022-01-17T02:48:21.000Z" + }, + "events": [ + { + "uuid": "f63647df-f931-4389-813e-41bcf7e811d1", + "start": { + "$date": "2022-01-16T23:50:01.000Z" + }, + "end": { + "$date": "2022-01-17T02:48:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1b4041b4-e44e-4620-9b9e-b3a74a32c296", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T00:31:38.000Z" + }, + "end": { + "$date": "2022-01-17T00:44:14.000Z" + }, + "events": [ + { + "uuid": "6207aec2-6ace-452f-bf6f-cc9a6dc934aa", + "start": { + "$date": "2022-01-17T00:31:38.000Z" + }, + "end": { + "$date": "2022-01-17T00:44:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "970618c9-1754-4d49-bac5-ac44dac12000", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T00:38:40.000Z" + }, + "end": { + "$date": "2022-01-17T01:55:03.000Z" + }, + "events": [ + { + "uuid": "87d41577-b5c3-4aac-8403-f1a95298eb41", + "start": { + "$date": "2022-01-17T00:38:40.000Z" + }, + "end": { + "$date": "2022-01-17T01:55:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "60126a10-fa2d-4ed7-8bee-6d98dff04368", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-17T00:43:03.000Z" + }, + "end": { + "$date": "2022-01-17T01:19:22.000Z" + }, + "events": [ + { + "uuid": "8620d168-97c3-4cbb-ac11-3e9139ef4377", + "start": { + "$date": "2022-01-17T00:43:03.000Z" + }, + "end": { + "$date": "2022-01-17T01:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "035b6066-edcd-4f9a-8da3-87e361a58ff6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T00:55:25.000Z" + }, + "end": { + "$date": "2022-01-17T02:47:29.000Z" + }, + "events": [ + { + "uuid": "d392e69f-5e73-4593-9ea7-99eaed80dff8", + "start": { + "$date": "2022-01-17T00:55:25.000Z" + }, + "end": { + "$date": "2022-01-17T02:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "50fd3c7f-532d-41c6-9563-3d749d07cb45", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-17T00:57:32.000Z" + }, + "end": { + "$date": "2022-01-17T01:39:30.000Z" + }, + "events": [ + { + "uuid": "40b98daf-f674-459e-bbc7-f5c4b5b97923", + "start": { + "$date": "2022-01-17T00:57:32.000Z" + }, + "end": { + "$date": "2022-01-17T01:39:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "8720d1c8-cbf8-4bbd-9cd8-9997077ba261", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T01:17:43.000Z" + }, + "end": { + "$date": "2022-01-17T03:32:53.000Z" + }, + "events": [ + { + "uuid": "0fe28a08-dafe-462c-87af-afb0eb12c4d8", + "start": { + "$date": "2022-01-17T01:17:43.000Z" + }, + "end": { + "$date": "2022-01-17T03:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "167101e3-03af-48f5-846c-77de2ed53a46", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T02:25:58.000Z" + }, + "end": { + "$date": "2022-01-17T03:22:25.000Z" + }, + "events": [ + { + "uuid": "adfc6848-42fe-469d-8547-5c89e70bd0df", + "start": { + "$date": "2022-01-17T02:25:58.000Z" + }, + "end": { + "$date": "2022-01-17T03:22:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60205a48-97da-4ced-b7a3-bc6a721928be", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-17T02:53:28.000Z" + }, + "end": { + "$date": "2022-01-17T02:56:39.000Z" + }, + "events": [ + { + "uuid": "273e69ea-66a0-46f7-9998-edff56adfa93", + "start": { + "$date": "2022-01-17T02:53:28.000Z" + }, + "end": { + "$date": "2022-01-17T02:56:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "680c7ca7-6769-49a6-adb2-bfbc8f216cc6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-17T02:58:20.000Z" + }, + "end": { + "$date": "2022-01-17T03:50:54.000Z" + }, + "events": [ + { + "uuid": "4dd65d92-6267-4be4-a9d3-be2dd1ee9afc", + "start": { + "$date": "2022-01-17T02:58:20.000Z" + }, + "end": { + "$date": "2022-01-17T03:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "09195b1d-c2e2-4b62-ad11-c452aea6ce55", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T03:09:58.000Z" + }, + "end": { + "$date": "2022-01-17T03:12:54.000Z" + }, + "events": [ + { + "uuid": "3484397f-ea2b-485a-9f0f-5392933373e8", + "start": { + "$date": "2022-01-17T03:09:58.000Z" + }, + "end": { + "$date": "2022-01-17T03:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1cd40124-976b-4a2f-8cda-345f9c00f47e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-17T02:50:13.000Z" + }, + "end": { + "$date": "2022-01-17T06:29:18.000Z" + }, + "events": [ + { + "uuid": "57e80960-1d14-4440-b19c-8127f6736eac", + "start": { + "$date": "2022-01-17T02:50:13.000Z" + }, + "end": { + "$date": "2022-01-17T06:29:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "8cd61593-fd62-43c9-abd3-3a92def6c153", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T03:23:00.000Z" + }, + "end": { + "$date": "2022-01-17T03:25:26.000Z" + }, + "events": [ + { + "uuid": "5c67a0ed-5fcf-47a2-8b36-59e7a68808d3", + "start": { + "$date": "2022-01-17T03:23:00.000Z" + }, + "end": { + "$date": "2022-01-17T03:25:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e6a82359-08fb-46e5-9910-76798090af64", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T03:25:36.000Z" + }, + "end": { + "$date": "2022-01-17T03:45:51.000Z" + }, + "events": [ + { + "uuid": "dcad5a0f-7ab0-458e-b466-f8a6eb2baf3f", + "start": { + "$date": "2022-01-17T03:25:36.000Z" + }, + "end": { + "$date": "2022-01-17T03:45:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "4467ba09-f6a1-4c47-b74b-63ee326b4e10", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T03:33:51.000Z" + }, + "end": { + "$date": "2022-01-17T03:34:07.000Z" + }, + "events": [ + { + "uuid": "bd0fb880-e871-47dc-87cb-bea9a4a70aff", + "start": { + "$date": "2022-01-17T03:33:51.000Z" + }, + "end": { + "$date": "2022-01-17T03:34:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "601dded5-88ef-4879-abc6-15684ad45193", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T03:34:51.000Z" + }, + "end": { + "$date": "2022-01-17T04:18:11.000Z" + }, + "events": [ + { + "uuid": "57100bbd-cf1a-4272-b009-8033d030b480", + "start": { + "$date": "2022-01-17T03:34:51.000Z" + }, + "end": { + "$date": "2022-01-17T04:18:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7c7d879-eba1-4948-b31c-25dfeba06f2d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-17T03:52:53.000Z" + }, + "end": { + "$date": "2022-01-17T03:55:13.000Z" + }, + "events": [ + { + "uuid": "797aa7cd-fa3a-4cbc-bf98-7eb68e7b7018", + "start": { + "$date": "2022-01-17T03:52:53.000Z" + }, + "end": { + "$date": "2022-01-17T03:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "29bece92-eb91-45d8-a4bc-dd6843b8b13c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-17T03:55:50.000Z" + }, + "end": { + "$date": "2022-01-17T04:12:14.000Z" + }, + "events": [ + { + "uuid": "2c34bf97-e6e3-4890-b313-6d9e53843adf", + "start": { + "$date": "2022-01-17T03:55:50.000Z" + }, + "end": { + "$date": "2022-01-17T04:12:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "42d70559-13e5-4506-b876-a44d3ae9c591", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-17T03:59:06.000Z" + }, + "end": { + "$date": "2022-01-17T04:13:33.000Z" + }, + "events": [ + { + "uuid": "135a2fcc-7d9b-4d55-8ce7-f68e4a9268b6", + "start": { + "$date": "2022-01-17T03:59:06.000Z" + }, + "end": { + "$date": "2022-01-17T04:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48fad4b3-70c2-42df-84df-d80e970aae8b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-17T06:36:40.000Z" + }, + "end": { + "$date": "2022-01-17T06:37:23.000Z" + }, + "events": [ + { + "uuid": "3711ad0c-d300-4b72-a040-9d9c0cf236da", + "start": { + "$date": "2022-01-17T06:36:40.000Z" + }, + "end": { + "$date": "2022-01-17T06:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "910e04a6-ac3a-4d41-8b90-73b7adc842f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T04:01:27.000Z" + }, + "end": { + "$date": "2022-01-17T04:34:19.000Z" + }, + "events": [ + { + "uuid": "ca67038c-4b56-4ae3-b784-25dbaab5807a", + "start": { + "$date": "2022-01-17T04:01:27.000Z" + }, + "end": { + "$date": "2022-01-17T04:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa8872b8-e1ee-4b77-b1c2-504625f8b8c8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T04:07:57.000Z" + }, + "end": { + "$date": "2022-01-17T04:34:38.000Z" + }, + "events": [ + { + "uuid": "99e2426f-bb6a-4980-98cd-26eb6b96ca10", + "start": { + "$date": "2022-01-17T04:07:57.000Z" + }, + "end": { + "$date": "2022-01-17T04:34:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67679e38-437b-4b8d-9aba-702d277e7051", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T04:08:02.000Z" + }, + "end": { + "$date": "2022-01-17T04:34:32.000Z" + }, + "events": [ + { + "uuid": "b509aec4-a06b-43b6-8e5e-71f5b5c8a7cf", + "start": { + "$date": "2022-01-17T04:08:02.000Z" + }, + "end": { + "$date": "2022-01-17T04:34:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "f1a8d83c-df63-4212-a3f0-6b41e0a22d46", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T04:32:41.000Z" + }, + "end": { + "$date": "2022-01-17T05:40:15.000Z" + }, + "events": [ + { + "uuid": "71b51054-d1e7-4f5b-9816-5e5b46f02bb8", + "start": { + "$date": "2022-01-17T04:32:41.000Z" + }, + "end": { + "$date": "2022-01-17T05:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "33670452-8cc3-44a5-93a8-e3e3216ca5ab", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T04:37:48.000Z" + }, + "end": { + "$date": "2022-01-17T05:16:04.000Z" + }, + "events": [ + { + "uuid": "34d3a41e-6dab-4421-8834-39c0e56f8a72", + "start": { + "$date": "2022-01-17T04:37:48.000Z" + }, + "end": { + "$date": "2022-01-17T05:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b10f04e9-952a-46cd-8c2e-482099016be5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T04:37:52.000Z" + }, + "end": { + "$date": "2022-01-17T05:15:57.000Z" + }, + "events": [ + { + "uuid": "09545c56-69b2-41f0-9707-1242e7926f02", + "start": { + "$date": "2022-01-17T04:37:52.000Z" + }, + "end": { + "$date": "2022-01-17T05:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8bee13f6-0ba3-4e69-a67a-a0a54dc109dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T05:20:48.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:14.000Z" + }, + "events": [ + { + "uuid": "5cc7892a-850b-4dae-82ed-5981826b8990", + "start": { + "$date": "2022-01-17T05:20:48.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a601fb29-2d85-45f3-867b-190a98e8d0f1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T05:20:49.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:21.000Z" + }, + "events": [ + { + "uuid": "8b3307d6-c05b-4db8-a7c3-b15ac8a47405", + "start": { + "$date": "2022-01-17T05:20:49.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83e052cc-acc1-4fd9-bc1e-e1c988b5a151", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-17T05:20:50.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:22.000Z" + }, + "events": [ + { + "uuid": "c7d24c26-22fd-4b82-80e0-3b64f313cb23", + "start": { + "$date": "2022-01-17T05:20:50.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "48efb82c-c73c-41e9-98d9-46d1558d06de", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-17T05:26:47.000Z" + }, + "end": { + "$date": "2022-01-17T06:37:53.000Z" + }, + "events": [ + { + "uuid": "dce0f2f8-8a63-4a5d-bb9a-75847f174a58", + "start": { + "$date": "2022-01-17T05:26:47.000Z" + }, + "end": { + "$date": "2022-01-17T06:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "87032105-d41c-43b7-9a94-4188887ffa7d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T05:31:41.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:03.000Z" + }, + "events": [ + { + "uuid": "5cc39f79-a46f-4bea-a17a-f62b1f77b807", + "start": { + "$date": "2022-01-17T05:31:41.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e97be2fe-88a8-4007-8f2c-537f8a5a263a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T05:40:20.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:45.000Z" + }, + "events": [ + { + "uuid": "7aae586c-5a88-4aba-8cac-bf962034f5f6", + "start": { + "$date": "2022-01-17T05:40:20.000Z" + }, + "end": { + "$date": "2022-01-17T06:04:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "1f1d37f2-afcd-495d-812f-7eddede00849", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T06:05:15.000Z" + }, + "end": { + "$date": "2022-01-17T07:16:53.000Z" + }, + "events": [ + { + "uuid": "d376ccfd-ed95-4f6e-9652-f13febde2b1e", + "start": { + "$date": "2022-01-17T06:05:15.000Z" + }, + "end": { + "$date": "2022-01-17T07:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc66a43d-4dc3-42c5-b5e3-b91087e8ab36", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T06:12:31.000Z" + }, + "end": { + "$date": "2022-01-17T06:36:42.000Z" + }, + "events": [ + { + "uuid": "7fe6031f-0579-4a88-97bb-d1b6baee9dc7", + "start": { + "$date": "2022-01-17T06:12:31.000Z" + }, + "end": { + "$date": "2022-01-17T06:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98d77092-d77a-42f7-9ca6-c4318f793229", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-17T06:12:33.000Z" + }, + "end": { + "$date": "2022-01-17T06:36:45.000Z" + }, + "events": [ + { + "uuid": "40da5137-771f-4625-90eb-8552a70bf849", + "start": { + "$date": "2022-01-17T06:12:33.000Z" + }, + "end": { + "$date": "2022-01-17T06:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "2deaae7d-f233-405b-a25a-bf8b37b94a8f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-17T06:53:17.000Z" + }, + "end": { + "$date": "2022-01-17T07:53:59.000Z" + }, + "events": [ + { + "uuid": "1d9f46c1-4c90-4c03-bffe-0c0fcb646ec6", + "start": { + "$date": "2022-01-17T06:53:17.000Z" + }, + "end": { + "$date": "2022-01-17T07:53:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "d85a0274-390b-4ce7-896b-5af92276d1b9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T07:17:10.000Z" + }, + "end": { + "$date": "2022-01-17T09:29:56.000Z" + }, + "events": [ + { + "uuid": "0fcdb08e-4455-4fb5-b36a-4e5894648456", + "start": { + "$date": "2022-01-17T07:17:10.000Z" + }, + "end": { + "$date": "2022-01-17T09:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5362e59b-5904-4628-aae5-91ea71843ff4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-17T07:59:54.000Z" + }, + "end": { + "$date": "2022-01-17T08:36:38.000Z" + }, + "events": [ + { + "uuid": "1295eec1-378c-489a-bc14-12f79c99bad4", + "start": { + "$date": "2022-01-17T07:59:54.000Z" + }, + "end": { + "$date": "2022-01-17T08:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "bab7c64a-2d48-4fed-b79c-4a4a43d3d595", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-17T08:15:21.000Z" + }, + "end": { + "$date": "2022-01-17T10:40:07.000Z" + }, + "events": [ + { + "uuid": "dfc0bea7-9f31-4a1d-9e98-bd8eebe86d33", + "start": { + "$date": "2022-01-17T08:15:21.000Z" + }, + "end": { + "$date": "2022-01-17T10:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7151b7d9-0157-4e67-a0b9-7e078f8d84af", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-17T08:43:15.000Z" + }, + "end": { + "$date": "2022-01-17T09:18:40.000Z" + }, + "events": [ + { + "uuid": "4ae68747-e585-4ad6-9423-36d9a59f5a32", + "start": { + "$date": "2022-01-17T08:43:15.000Z" + }, + "end": { + "$date": "2022-01-17T09:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e4fe437-68c7-4029-a68c-c99c52d06b4a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-17T09:28:06.000Z" + }, + "end": { + "$date": "2022-01-17T09:53:07.000Z" + }, + "events": [ + { + "uuid": "863c5810-27e3-4adb-82a8-1cb215e96848", + "start": { + "$date": "2022-01-17T09:28:06.000Z" + }, + "end": { + "$date": "2022-01-17T09:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "656b8be1-cf6e-45c2-99e4-f6593cd41831", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T15:12:14.000Z" + }, + "end": { + "$date": "2022-01-17T15:29:28.000Z" + }, + "events": [ + { + "uuid": "75562cf1-8c01-4030-8a20-88d46a25484d", + "start": { + "$date": "2022-01-17T15:12:14.000Z" + }, + "end": { + "$date": "2022-01-17T15:29:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "3e1d12d2-edce-4e0d-a7b0-7e344a02c259", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T15:29:37.000Z" + }, + "end": { + "$date": "2022-01-17T15:48:19.000Z" + }, + "events": [ + { + "uuid": "5018be06-0559-4749-935a-2c53165998aa", + "start": { + "$date": "2022-01-17T15:29:37.000Z" + }, + "end": { + "$date": "2022-01-17T15:48:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "939f7626-9e82-4434-830a-4e0e91e0baf3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T15:48:38.000Z" + }, + "end": { + "$date": "2022-01-17T16:21:36.000Z" + }, + "events": [ + { + "uuid": "d1e30915-1197-43ed-9eb8-884fe519a473", + "start": { + "$date": "2022-01-17T15:48:38.000Z" + }, + "end": { + "$date": "2022-01-17T16:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a67708a-3300-4938-a498-95dc02fb751f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T17:16:49.000Z" + }, + "end": { + "$date": "2022-01-17T17:52:23.000Z" + }, + "events": [ + { + "uuid": "119d6493-8959-4422-bf58-8730e6ed7f5a", + "start": { + "$date": "2022-01-17T17:16:49.000Z" + }, + "end": { + "$date": "2022-01-17T17:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ea3382b2-9a8f-4da6-a2fd-81c3acb24ed4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T17:38:29.000Z" + }, + "end": { + "$date": "2022-01-17T17:55:01.000Z" + }, + "events": [ + { + "uuid": "131d46bd-c79e-4c4f-947a-de9dc05e11c2", + "start": { + "$date": "2022-01-17T17:38:29.000Z" + }, + "end": { + "$date": "2022-01-17T17:55:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "931c4dfa-c29e-4944-8147-e756e8d5f60b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T18:02:24.000Z" + }, + "end": { + "$date": "2022-01-17T18:37:43.000Z" + }, + "events": [ + { + "uuid": "54352891-5751-4096-a9f7-7dccf46fb27f", + "start": { + "$date": "2022-01-17T18:02:24.000Z" + }, + "end": { + "$date": "2022-01-17T18:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b76ae6b6-14ed-4262-9d89-0dd7b500cbe9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T17:56:06.000Z" + }, + "end": { + "$date": "2022-01-17T18:27:39.000Z" + }, + "events": [ + { + "uuid": "605f6e87-0bf5-42bd-89a9-fff8e8ef00b3", + "start": { + "$date": "2022-01-17T17:56:06.000Z" + }, + "end": { + "$date": "2022-01-17T18:14:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36743377-757f-4145-a385-66eae8625472", + "start": { + "$date": "2022-01-17T18:14:06.000Z" + }, + "end": { + "$date": "2022-01-17T18:27:39.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f14f093-8115-43fc-b9e7-55f18aabadc9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T22:19:58.000Z" + }, + "end": { + "$date": "2022-01-17T22:51:34.000Z" + }, + "events": [ + { + "uuid": "cb28ad5b-a514-4c62-ab0f-f9da777a7b44", + "start": { + "$date": "2022-01-17T22:19:58.000Z" + }, + "end": { + "$date": "2022-01-17T22:45:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef55bedf-5ab7-46d7-92f0-2c06ae183372", + "start": { + "$date": "2022-01-17T22:45:58.000Z" + }, + "end": { + "$date": "2022-01-17T23:32:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4ee7601-fcb6-48db-b956-6fabfe026bb4", + "start": { + "$date": "2022-01-17T23:32:58.000Z" + }, + "end": { + "$date": "2022-01-18T00:56:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f038088-6f4e-4343-9f49-a13eb69aefe1", + "start": { + "$date": "2022-01-18T00:56:58.000Z" + }, + "end": { + "$date": "2022-01-18T01:44:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "383934ce-ecbd-4102-9584-b9013f89558d", + "start": { + "$date": "2022-01-18T01:44:58.000Z" + }, + "end": { + "$date": "2022-01-18T01:46:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "df94c737-2c72-41e0-86e3-0b196a8665e7", + "start": { + "$date": "2022-01-18T01:46:58.000Z" + }, + "end": { + "$date": "2022-01-18T01:56:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "88c7102b-d8d2-4a01-befe-bef1ba41cb51", + "start": { + "$date": "2022-01-18T01:56:58.000Z" + }, + "end": { + "$date": "2022-01-17T22:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "15e9a30f-ef93-4e55-a900-7f399305cf6f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T18:43:41.000Z" + }, + "end": { + "$date": "2022-01-17T21:42:53.000Z" + }, + "events": [ + { + "uuid": "527414b0-4fa4-4de1-870f-ac4762566110", + "start": { + "$date": "2022-01-17T18:43:41.000Z" + }, + "end": { + "$date": "2022-01-17T21:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5979747-46a3-464b-90d0-ab1800d14dc2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-17T09:10:36.000Z" + }, + "end": { + "$date": "2022-01-17T20:22:23.000Z" + }, + "events": [ + { + "uuid": "c56e9946-cf4b-4d65-b9c0-dddb3b9090c1", + "start": { + "$date": "2022-01-17T09:10:36.000Z" + }, + "end": { + "$date": "2022-01-17T09:40:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86031062-04c3-4130-8508-1225dac0c4a7", + "start": { + "$date": "2022-01-17T09:40:36.000Z" + }, + "end": { + "$date": "2022-01-17T09:44:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43b304af-b667-4502-9a79-54d2b0d68995", + "start": { + "$date": "2022-01-17T09:44:36.000Z" + }, + "end": { + "$date": "2022-01-17T20:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b6c9358-33bf-4434-b212-38b15d173703", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T19:59:03.000Z" + }, + "end": { + "$date": "2022-01-17T20:27:13.000Z" + }, + "events": [ + { + "uuid": "10349bcd-ce48-4970-b6df-a0dd11006d8e", + "start": { + "$date": "2022-01-17T19:59:03.000Z" + }, + "end": { + "$date": "2022-01-17T20:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b64d049-df10-4baf-93ba-8277b0fa9c4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-17T21:03:35.000Z" + }, + "end": { + "$date": "2022-01-17T21:04:28.000Z" + }, + "events": [ + { + "uuid": "38df7a22-471d-444d-ad44-170bdb3ad9ff", + "start": { + "$date": "2022-01-17T21:03:35.000Z" + }, + "end": { + "$date": "2022-01-17T21:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "fbb9e0de-2edc-4607-975e-f9198251c2ce", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-17T20:27:58.000Z" + }, + "end": { + "$date": "2022-01-17T21:06:03.000Z" + }, + "events": [ + { + "uuid": "a4ef49bd-d2d2-4181-9541-643bfd00facd", + "start": { + "$date": "2022-01-17T20:27:58.000Z" + }, + "end": { + "$date": "2022-01-17T21:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "4d100392-1b86-49f6-8910-2441c8eeede6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-17T20:32:06.000Z" + }, + "end": { + "$date": "2022-01-18T01:34:08.000Z" + }, + "events": [ + { + "uuid": "cbc881fb-1b25-43ac-8c21-5452609b75a0", + "start": { + "$date": "2022-01-17T20:32:06.000Z" + }, + "end": { + "$date": "2022-01-17T21:05:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4b08651-01ae-492a-8096-e5841dd39e6a", + "start": { + "$date": "2022-01-17T21:05:06.000Z" + }, + "end": { + "$date": "2022-01-17T22:08:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8b8b24b4-8158-48f2-96d8-4e8153063e0a", + "start": { + "$date": "2022-01-17T22:08:06.000Z" + }, + "end": { + "$date": "2022-01-17T22:10:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1cb02afc-ee01-4309-b73e-6d08f852a751", + "start": { + "$date": "2022-01-17T22:10:06.000Z" + }, + "end": { + "$date": "2022-01-17T23:57:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99edb1b5-e669-4079-a21d-14eabc14ac1d", + "start": { + "$date": "2022-01-17T23:57:06.000Z" + }, + "end": { + "$date": "2022-01-17T23:59:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c32cc051-473d-4e90-b5dc-6a7499ea7498", + "start": { + "$date": "2022-01-17T23:59:06.000Z" + }, + "end": { + "$date": "2022-01-18T01:34:08.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c38de9b8-5dce-41c1-9f04-b80bd5be357c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-17T20:43:36.000Z" + }, + "end": { + "$date": "2022-01-17T21:41:13.000Z" + }, + "events": [ + { + "uuid": "bb33eb5c-1f98-4e68-bc82-86662100b391", + "start": { + "$date": "2022-01-17T20:43:36.000Z" + }, + "end": { + "$date": "2022-01-17T21:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "9c27fc84-633b-49bc-9a12-c1b1be88a5c1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-17T21:07:14.000Z" + }, + "end": { + "$date": "2022-01-17T21:08:34.000Z" + }, + "events": [ + { + "uuid": "d7fed72f-22ee-4f46-a4a8-3be0d336eee2", + "start": { + "$date": "2022-01-17T21:07:14.000Z" + }, + "end": { + "$date": "2022-01-17T21:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "9746ab62-50fc-41ca-b05c-da94d795f022", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T21:25:56.000Z" + }, + "end": { + "$date": "2022-01-17T22:04:21.000Z" + }, + "events": [ + { + "uuid": "d534d42e-871f-4ed9-908b-d925699a46fb", + "start": { + "$date": "2022-01-17T21:25:56.000Z" + }, + "end": { + "$date": "2022-01-17T22:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "13fe402d-20ee-473d-a547-a790d34f781b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-17T21:42:25.000Z" + }, + "end": { + "$date": "2022-01-17T22:54:58.000Z" + }, + "events": [ + { + "uuid": "a828713f-de5e-410c-804c-1882c4793a3b", + "start": { + "$date": "2022-01-17T21:42:25.000Z" + }, + "end": { + "$date": "2022-01-17T22:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46b4533a-adf2-410e-89a1-a999c2ec2fcb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-17T22:03:12.000Z" + }, + "end": { + "$date": "2022-01-17T22:22:55.000Z" + }, + "events": [ + { + "uuid": "7e5882a1-aea1-4821-8666-25b128f880f2", + "start": { + "$date": "2022-01-17T22:03:12.000Z" + }, + "end": { + "$date": "2022-01-17T22:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "5586dc3c-b774-496d-a49b-a12db477f81a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T22:20:17.000Z" + }, + "end": { + "$date": "2022-01-17T22:51:27.000Z" + }, + "events": [ + { + "uuid": "961a01b2-27f0-4f6e-9d4b-66e8c023dedf", + "start": { + "$date": "2022-01-17T22:20:17.000Z" + }, + "end": { + "$date": "2022-01-17T22:51:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00e4da8e-9401-43af-a259-768ac704be17", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-17T22:25:13.000Z" + }, + "end": { + "$date": "2022-01-17T22:51:20.000Z" + }, + "events": [ + { + "uuid": "70a89391-7bcb-45a8-ab9a-7bd642a43159", + "start": { + "$date": "2022-01-17T22:25:13.000Z" + }, + "end": { + "$date": "2022-01-17T22:51:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eac597f5-775b-4259-95e3-b134d5f148f5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-17T22:57:14.000Z" + }, + "end": { + "$date": "2022-01-17T23:26:10.000Z" + }, + "events": [ + { + "uuid": "851db20f-b733-4ab6-815f-1536edeada6c", + "start": { + "$date": "2022-01-17T22:57:14.000Z" + }, + "end": { + "$date": "2022-01-17T23:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c59eeab1-6947-48fb-8ba4-92d22c24198a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-17T22:57:13.000Z" + }, + "end": { + "$date": "2022-01-17T23:26:08.000Z" + }, + "events": [ + { + "uuid": "18a71cc3-b55b-46d8-86fd-528a32be144f", + "start": { + "$date": "2022-01-17T22:57:13.000Z" + }, + "end": { + "$date": "2022-01-17T23:26:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "32dedc65-8d9d-4ca9-8286-ec1595d533e1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-17T23:35:33.000Z" + }, + "end": { + "$date": "2022-01-17T23:58:46.000Z" + }, + "events": [ + { + "uuid": "fa561419-da7f-4366-8724-e2689994e543", + "start": { + "$date": "2022-01-17T23:35:33.000Z" + }, + "end": { + "$date": "2022-01-17T23:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "b49fef64-813e-4ab5-ab73-dd0b99f5090b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-17T23:51:13.000Z" + }, + "end": { + "$date": "2022-01-18T01:09:03.000Z" + }, + "events": [ + { + "uuid": "3b2f8dd2-7277-4bf2-83b4-ca404c2608be", + "start": { + "$date": "2022-01-17T23:51:13.000Z" + }, + "end": { + "$date": "2022-01-18T01:09:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "de06d7f0-f645-4611-94f6-2fd3cec35ace", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-18T00:28:36.000Z" + }, + "end": { + "$date": "2022-01-18T00:46:18.000Z" + }, + "events": [ + { + "uuid": "01001266-3ce4-4f5c-82e9-b5768dc30bb9", + "start": { + "$date": "2022-01-18T00:28:36.000Z" + }, + "end": { + "$date": "2022-01-18T00:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4607b952-b94c-4bf1-b746-7bf79af15940", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-18T00:42:39.000Z" + }, + "end": { + "$date": "2022-01-18T01:14:34.000Z" + }, + "events": [ + { + "uuid": "b60bae97-2ca1-44d6-b844-d60ace6e5257", + "start": { + "$date": "2022-01-18T00:42:39.000Z" + }, + "end": { + "$date": "2022-01-18T01:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "90389bd4-7ab4-4551-bd58-3a701d1f6767", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T00:58:15.000Z" + }, + "end": { + "$date": "2022-01-18T02:58:20.000Z" + }, + "events": [ + { + "uuid": "be87b6b4-8b49-446e-a8bd-4e87cc5b61c2", + "start": { + "$date": "2022-01-18T00:58:15.000Z" + }, + "end": { + "$date": "2022-01-18T02:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "ca5dc5eb-e0f4-4c0a-bf47-07d22227391c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-18T01:13:18.000Z" + }, + "end": { + "$date": "2022-01-18T02:45:10.000Z" + }, + "events": [ + { + "uuid": "61833590-fe5f-4e3e-ab4e-6301ef7762ea", + "start": { + "$date": "2022-01-18T01:13:18.000Z" + }, + "end": { + "$date": "2022-01-18T01:41:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37d1e84a-251a-4198-be05-8a7c6d81a7ce", + "start": { + "$date": "2022-01-18T01:41:18.000Z" + }, + "end": { + "$date": "2022-01-18T01:44:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8aed831a-7ecb-420a-a781-6d6d4dafb52d", + "start": { + "$date": "2022-01-18T01:44:18.000Z" + }, + "end": { + "$date": "2022-01-18T01:54:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5f66bc7-24c5-4e6f-bb41-8486e9ae453b", + "start": { + "$date": "2022-01-18T01:54:18.000Z" + }, + "end": { + "$date": "2022-01-18T02:00:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "29a100ac-867e-43ae-9d39-f2896aa2a32c", + "start": { + "$date": "2022-01-18T02:00:18.000Z" + }, + "end": { + "$date": "2022-01-18T02:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "763edd79-caa1-46ca-bdd1-7b32dcb9a9e0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-18T01:13:41.000Z" + }, + "end": { + "$date": "2022-01-18T04:28:47.000Z" + }, + "events": [ + { + "uuid": "09090963-5381-4ae4-860a-02a5a9b752a9", + "start": { + "$date": "2022-01-18T01:13:41.000Z" + }, + "end": { + "$date": "2022-01-18T04:28:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dac10402-51d8-4045-a894-2e818eb59e7b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-18T01:20:41.000Z" + }, + "end": { + "$date": "2022-01-18T01:58:58.000Z" + }, + "events": [ + { + "uuid": "98ca0989-6157-42db-8905-c153d274ce9c", + "start": { + "$date": "2022-01-18T01:20:41.000Z" + }, + "end": { + "$date": "2022-01-18T01:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "08db1ff7-2516-4278-9942-3a522ce0631c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-18T01:31:45.000Z" + }, + "end": { + "$date": "2022-01-18T02:10:58.000Z" + }, + "events": [ + { + "uuid": "0efa0ca1-89f9-4e5d-9fb7-8483bfaf163f", + "start": { + "$date": "2022-01-18T01:31:45.000Z" + }, + "end": { + "$date": "2022-01-18T02:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "ec2bf0be-d46a-48c6-bcb0-9470a347f848", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-18T02:02:02.000Z" + }, + "end": { + "$date": "2022-01-18T02:55:14.000Z" + }, + "events": [ + { + "uuid": "723e1a0f-e4e1-4880-aeab-91458b6f94ba", + "start": { + "$date": "2022-01-18T02:02:02.000Z" + }, + "end": { + "$date": "2022-01-18T02:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b1a9005e-73a2-49a3-bdd7-2533ba8ddd20", + "uuid": "ac2b1c56-d13e-42c1-b60c-9b1cd7c35643", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T02:17:48.000Z" + }, + "end": { + "$date": "2022-01-18T02:34:06.000Z" + }, + "events": [ + { + "uuid": "fd6338db-4fbb-4efc-a473-065480ed9e49", + "start": { + "$date": "2022-01-18T02:17:48.000Z" + }, + "end": { + "$date": "2022-01-18T02:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "fcac4f20-a051-4445-900d-64b8088d5002", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T02:38:24.000Z" + }, + "end": { + "$date": "2022-01-18T02:41:22.000Z" + }, + "events": [ + { + "uuid": "c4bf2676-e5e1-4ecb-a885-d32c2b0e6186", + "start": { + "$date": "2022-01-18T02:38:24.000Z" + }, + "end": { + "$date": "2022-01-18T02:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "873e79b7-71ad-493f-8eca-d30a830bcecf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T02:39:09.000Z" + }, + "end": { + "$date": "2022-01-18T02:45:15.000Z" + }, + "events": [ + { + "uuid": "f4460d20-ea25-43f8-8fba-a7c54a94ffd5", + "start": { + "$date": "2022-01-18T02:39:09.000Z" + }, + "end": { + "$date": "2022-01-18T02:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ec129369-490c-488e-91c7-d729da25a632", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-18T02:39:44.000Z" + }, + "end": { + "$date": "2022-01-18T03:13:51.000Z" + }, + "events": [ + { + "uuid": "1fb0397b-ef8a-4a9a-a273-087897131933", + "start": { + "$date": "2022-01-18T02:39:44.000Z" + }, + "end": { + "$date": "2022-01-18T03:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "2235338b-5ec7-4644-88c0-1a855edfe681", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T02:42:29.000Z" + }, + "end": { + "$date": "2022-01-18T02:45:27.000Z" + }, + "events": [ + { + "uuid": "fed8b524-b8aa-4780-a5cd-b97a9421851c", + "start": { + "$date": "2022-01-18T02:42:29.000Z" + }, + "end": { + "$date": "2022-01-18T02:45:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "072f8e85-b1e8-403f-b6ed-3f8eb5e17ed7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T02:45:20.000Z" + }, + "end": { + "$date": "2022-01-18T03:13:36.000Z" + }, + "events": [ + { + "uuid": "0c352e13-e21c-4157-a082-c85c3660c6cc", + "start": { + "$date": "2022-01-18T02:45:20.000Z" + }, + "end": { + "$date": "2022-01-18T03:13:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "cb7c58ee-d5ba-4269-b78e-d1d4b324067a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T02:46:45.000Z" + }, + "end": { + "$date": "2022-01-18T03:31:01.000Z" + }, + "events": [ + { + "uuid": "82f9fae5-2050-4aec-b18d-a6ee285aa4d6", + "start": { + "$date": "2022-01-18T02:46:45.000Z" + }, + "end": { + "$date": "2022-01-18T03:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "cb8d9516-1432-4172-a749-c54f912238a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-18T02:55:19.000Z" + }, + "end": { + "$date": "2022-01-18T03:08:31.000Z" + }, + "events": [ + { + "uuid": "a149a3e9-8914-43db-8a31-ea6e0c2182f7", + "start": { + "$date": "2022-01-18T02:55:19.000Z" + }, + "end": { + "$date": "2022-01-18T03:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "29f5bdc9-910d-4826-be85-b94cc0cb1474", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T03:04:45.000Z" + }, + "end": { + "$date": "2022-01-18T04:25:33.000Z" + }, + "events": [ + { + "uuid": "4cb6a224-e15c-45d7-9908-53ac492ad65c", + "start": { + "$date": "2022-01-18T03:04:45.000Z" + }, + "end": { + "$date": "2022-01-18T04:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "f14c30a6-44bc-4872-a590-d631fb500827", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-18T03:14:25.000Z" + }, + "end": { + "$date": "2022-01-18T04:52:59.000Z" + }, + "events": [ + { + "uuid": "220d0ebd-ef83-4332-abd9-50b8d92beba9", + "start": { + "$date": "2022-01-18T03:14:25.000Z" + }, + "end": { + "$date": "2022-01-18T04:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "2fc53d39-770d-4cd7-bf94-fb4225b66de8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T03:34:19.000Z" + }, + "end": { + "$date": "2022-01-18T03:38:12.000Z" + }, + "events": [ + { + "uuid": "4e600e26-24c6-46d7-9aed-85a6b0f1c6d9", + "start": { + "$date": "2022-01-18T03:34:19.000Z" + }, + "end": { + "$date": "2022-01-18T03:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "edfa1e98-83e5-4d0d-95ea-3d357fd920c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-18T03:43:17.000Z" + }, + "end": { + "$date": "2022-01-18T03:58:21.000Z" + }, + "events": [ + { + "uuid": "451898a6-a726-4adc-86bb-93739d240803", + "start": { + "$date": "2022-01-18T03:43:17.000Z" + }, + "end": { + "$date": "2022-01-18T03:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2040f11a-eb52-49d6-837b-7a6816e1837c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T03:46:45.000Z" + }, + "end": { + "$date": "2022-01-18T04:43:10.000Z" + }, + "events": [ + { + "uuid": "210cc0b8-7e4e-49ca-b98a-f2a48679164b", + "start": { + "$date": "2022-01-18T03:46:45.000Z" + }, + "end": { + "$date": "2022-01-18T04:43:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "861dab4c-6d7e-47c2-9be5-8f4ae5ba43b6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-18T04:16:52.000Z" + }, + "end": { + "$date": "2022-01-18T04:32:48.000Z" + }, + "events": [ + { + "uuid": "f6e8dc89-370f-48f0-b0a0-ec1123e37d9b", + "start": { + "$date": "2022-01-18T04:16:52.000Z" + }, + "end": { + "$date": "2022-01-18T04:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0e84ec3b-afed-425c-85aa-cf6b123b8214", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-18T04:24:39.000Z" + }, + "end": { + "$date": "2022-01-18T07:46:26.000Z" + }, + "events": [ + { + "uuid": "86e4f455-388f-4963-84e1-0d8be8419d6b", + "start": { + "$date": "2022-01-18T04:24:39.000Z" + }, + "end": { + "$date": "2022-01-18T07:46:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "fb3f8a53-b87a-4ae0-918a-fd62e13ba99c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-18T04:26:19.000Z" + }, + "end": { + "$date": "2022-01-18T05:33:57.000Z" + }, + "events": [ + { + "uuid": "cc4707ec-51bd-4311-93ff-0bea35bfe26b", + "start": { + "$date": "2022-01-18T04:26:19.000Z" + }, + "end": { + "$date": "2022-01-18T05:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4e80d9f-befe-4a00-8c77-3bfec0cf439b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T04:33:05.000Z" + }, + "end": { + "$date": "2022-01-18T04:58:16.000Z" + }, + "events": [ + { + "uuid": "6462b74c-6d66-438a-9e98-070a12ff1ff3", + "start": { + "$date": "2022-01-18T04:33:05.000Z" + }, + "end": { + "$date": "2022-01-18T04:58:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6421a237-9475-465c-9bc8-34d2362e1253", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-18T08:15:38.000Z" + }, + "end": { + "$date": "2022-01-18T08:17:52.000Z" + }, + "events": [ + { + "uuid": "6edfd203-0288-48af-a760-ad3a5fb0bd68", + "start": { + "$date": "2022-01-18T08:15:38.000Z" + }, + "end": { + "$date": "2022-01-18T08:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db44f166-d13c-4612-8769-7ed0bc2be974", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-18T04:49:33.000Z" + }, + "end": { + "$date": "2022-01-18T05:23:45.000Z" + }, + "events": [ + { + "uuid": "88d79692-09fe-4231-954e-536e25ae96bd", + "start": { + "$date": "2022-01-18T04:49:33.000Z" + }, + "end": { + "$date": "2022-01-18T05:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8435f324-ec6b-4c05-a557-ea86d19ac3b8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T05:01:11.000Z" + }, + "end": { + "$date": "2022-01-18T05:19:24.000Z" + }, + "events": [ + { + "uuid": "aa5fc4a7-6821-433d-a082-d555ae38961e", + "start": { + "$date": "2022-01-18T05:01:11.000Z" + }, + "end": { + "$date": "2022-01-18T05:19:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7847f553-3e85-4753-a7a9-82a7e20d901a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T05:21:53.000Z" + }, + "end": { + "$date": "2022-01-18T05:44:31.000Z" + }, + "events": [ + { + "uuid": "0e73bd0a-41c2-4830-9b65-eda1417f6ee8", + "start": { + "$date": "2022-01-18T05:21:53.000Z" + }, + "end": { + "$date": "2022-01-18T05:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e1a6aa1-9ef0-4dcd-adc1-cf4aeb5e68e5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-18T05:31:25.000Z" + }, + "end": { + "$date": "2022-01-18T05:59:12.000Z" + }, + "events": [ + { + "uuid": "5930e963-68f2-4952-99b9-549e1127f553", + "start": { + "$date": "2022-01-18T05:31:25.000Z" + }, + "end": { + "$date": "2022-01-18T05:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70f0a19e-6c47-44fd-b3c1-bea9368db23c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T05:46:34.000Z" + }, + "end": { + "$date": "2022-01-18T05:58:11.000Z" + }, + "events": [ + { + "uuid": "5e6571bb-77c8-4114-bf51-532eddeb3a33", + "start": { + "$date": "2022-01-18T05:46:34.000Z" + }, + "end": { + "$date": "2022-01-18T05:58:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c4a83991-1d52-4f6a-becc-c1635bfda6e7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T06:25:15.000Z" + }, + "end": { + "$date": "2022-01-18T06:41:12.000Z" + }, + "events": [ + { + "uuid": "96b90735-6e21-49ba-8ab0-0ab0cdc6c779", + "start": { + "$date": "2022-01-18T06:25:15.000Z" + }, + "end": { + "$date": "2022-01-18T06:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dee9872c-923c-4214-af70-a478ca406899", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T06:00:56.000Z" + }, + "end": { + "$date": "2022-01-18T06:20:34.000Z" + }, + "events": [ + { + "uuid": "8e0607d3-d5d4-4a0c-9ac0-a11210f27992", + "start": { + "$date": "2022-01-18T06:00:56.000Z" + }, + "end": { + "$date": "2022-01-18T06:20:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7c6700c-1466-4611-b466-2a2d4f187ede", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-18T06:19:33.000Z" + }, + "end": { + "$date": "2022-01-18T06:41:48.000Z" + }, + "events": [ + { + "uuid": "9307b937-4047-436c-9888-edab1fabf4dd", + "start": { + "$date": "2022-01-18T06:19:33.000Z" + }, + "end": { + "$date": "2022-01-18T06:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2a58b8d6-56c8-4861-8b6d-a14aedd5376b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-18T06:12:59.000Z" + }, + "end": { + "$date": "2022-01-18T06:41:26.000Z" + }, + "events": [ + { + "uuid": "92c96f5f-c062-4629-95a9-dbf4dbb7f1fe", + "start": { + "$date": "2022-01-18T06:12:59.000Z" + }, + "end": { + "$date": "2022-01-18T06:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbe7f9e6-bc09-4558-a1f4-a779bbeba738", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T06:22:34.000Z" + }, + "end": { + "$date": "2022-01-18T06:45:12.000Z" + }, + "events": [ + { + "uuid": "5e21d097-8b87-47e4-a0b5-c04c4d18cc0d", + "start": { + "$date": "2022-01-18T06:22:34.000Z" + }, + "end": { + "$date": "2022-01-18T06:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e59904e-c70e-4212-b31d-d74c0b7ebfe2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-18T06:44:33.000Z" + }, + "end": { + "$date": "2022-01-18T07:03:45.000Z" + }, + "events": [ + { + "uuid": "503b3a9b-5d44-4462-8cae-0deda7f5e299", + "start": { + "$date": "2022-01-18T06:44:33.000Z" + }, + "end": { + "$date": "2022-01-18T07:03:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a94719a1-984d-4ad5-afc4-dd3d0bc7e9cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T06:47:17.000Z" + }, + "end": { + "$date": "2022-01-18T07:12:05.000Z" + }, + "events": [ + { + "uuid": "43c9887f-02ae-4e37-a205-3e812f5d8b60", + "start": { + "$date": "2022-01-18T06:47:17.000Z" + }, + "end": { + "$date": "2022-01-18T07:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "69fd4184-c48d-42d4-9511-d0ae84b90057", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T07:18:53.000Z" + }, + "end": { + "$date": "2022-01-18T07:42:47.000Z" + }, + "events": [ + { + "uuid": "c2493537-29a8-4889-818b-3121ebcf857e", + "start": { + "$date": "2022-01-18T07:18:53.000Z" + }, + "end": { + "$date": "2022-01-18T07:42:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", + "uuid": "fad3ace1-d4e7-44a3-b52d-ab8d9d3a9922", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-18T07:25:23.000Z" + }, + "end": { + "$date": "2022-01-18T07:26:23.000Z" + }, + "events": [ + { + "uuid": "40f67ddd-8cb4-4603-a5fb-e9f952864964", + "start": { + "$date": "2022-01-18T07:25:23.000Z" + }, + "end": { + "$date": "2022-01-18T07:26:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", + "uuid": "3a4f7c73-cf4c-402e-9516-aecd4e52dad6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-18T07:35:24.000Z" + }, + "end": { + "$date": "2022-01-18T07:36:54.000Z" + }, + "events": [ + { + "uuid": "5c61dcde-52e3-40aa-ac33-3c364b9ecd51", + "start": { + "$date": "2022-01-18T07:35:24.000Z" + }, + "end": { + "$date": "2022-01-18T07:36:54.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", + "uuid": "84db034f-666d-4470-bba3-2557fb097058", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-18T07:38:34.000Z" + }, + "end": { + "$date": "2022-01-18T11:09:52.000Z" + }, + "events": [ + { + "uuid": "791c9290-d66c-4d39-8f17-7cb2462297c0", + "start": { + "$date": "2022-01-18T07:38:34.000Z" + }, + "end": { + "$date": "2022-01-18T11:09:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d9e0c68-5012-4e27-b760-1a42ff581c0d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T07:46:31.000Z" + }, + "end": { + "$date": "2022-01-18T08:20:34.000Z" + }, + "events": [ + { + "uuid": "32eeda4c-aa97-4dfa-9248-a4cf8e60ebc8", + "start": { + "$date": "2022-01-18T07:46:31.000Z" + }, + "end": { + "$date": "2022-01-18T08:20:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "05d39589-a607-45d1-98f2-109459db9fd7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-18T07:46:32.000Z" + }, + "end": { + "$date": "2022-01-18T08:28:17.000Z" + }, + "events": [ + { + "uuid": "2c1c0bf4-7a4d-450f-a2b3-5f8216f0b094", + "start": { + "$date": "2022-01-18T07:46:32.000Z" + }, + "end": { + "$date": "2022-01-18T08:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "621a4cdc-ecb1-46ce-ba74-b5df28afe6da", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T17:48:27.000Z" + }, + "end": { + "$date": "2022-01-18T17:48:49.000Z" + }, + "events": [ + { + "uuid": "c3111d61-14fa-4347-86eb-c27a33fd391f", + "start": { + "$date": "2022-01-18T17:48:27.000Z" + }, + "end": { + "$date": "2022-01-18T17:48:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "100717b4-edbc-47bf-8676-f20cd3ccdfc7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T18:03:29.000Z" + }, + "end": { + "$date": "2022-01-18T18:43:37.000Z" + }, + "events": [ + { + "uuid": "75953439-0fb1-4f07-b586-0f2de53e430e", + "start": { + "$date": "2022-01-18T18:03:29.000Z" + }, + "end": { + "$date": "2022-01-18T18:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "f093044f-c66e-4eef-99fe-b731fa82ce0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T19:35:57.000Z" + }, + "end": { + "$date": "2022-01-18T19:50:12.000Z" + }, + "events": [ + { + "uuid": "528abf09-beb8-4dd1-90a7-018dea5cf6fb", + "start": { + "$date": "2022-01-18T19:35:57.000Z" + }, + "end": { + "$date": "2022-01-18T19:50:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "93a58f1d-92f2-4113-8aee-f3038ee5d771", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T20:06:29.000Z" + }, + "end": { + "$date": "2022-01-18T20:18:06.000Z" + }, + "events": [ + { + "uuid": "bb4d14ff-667a-4db1-a596-756af8b1d020", + "start": { + "$date": "2022-01-18T20:06:29.000Z" + }, + "end": { + "$date": "2022-01-18T20:18:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "72a15239-c18d-4ef3-a0e2-0f9795a1f276", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T20:22:55.000Z" + }, + "end": { + "$date": "2022-01-18T20:28:41.000Z" + }, + "events": [ + { + "uuid": "382b8ed0-32da-4b8a-a778-91e6a38b1a69", + "start": { + "$date": "2022-01-18T20:22:55.000Z" + }, + "end": { + "$date": "2022-01-18T20:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "66c852c4-3f0d-4510-9bbe-c113dfcd0f5f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T21:05:25.000Z" + }, + "end": { + "$date": "2022-01-18T21:10:07.000Z" + }, + "events": [ + { + "uuid": "4143ce59-4c85-423b-8c4f-83552dac89ce", + "start": { + "$date": "2022-01-18T21:05:25.000Z" + }, + "end": { + "$date": "2022-01-18T21:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "6929493e-01b8-4291-a9cd-5def7e00c5db", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T21:10:22.000Z" + }, + "end": { + "$date": "2022-01-18T21:30:51.000Z" + }, + "events": [ + { + "uuid": "ae39398a-2137-451f-b8b4-1ced75e78e08", + "start": { + "$date": "2022-01-18T21:10:22.000Z" + }, + "end": { + "$date": "2022-01-18T21:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "122aed64-c36a-4dc9-9f46-d3e703289141", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T21:37:44.000Z" + }, + "end": { + "$date": "2022-01-18T21:39:14.000Z" + }, + "events": [ + { + "uuid": "25834992-373c-4c15-ad11-918fdd04734e", + "start": { + "$date": "2022-01-18T21:37:44.000Z" + }, + "end": { + "$date": "2022-01-18T21:39:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "44d0f07e-8d44-4fb0-bf54-19883595aff1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T21:43:25.000Z" + }, + "end": { + "$date": "2022-01-18T21:48:01.000Z" + }, + "events": [ + { + "uuid": "f617dfa7-40ff-4129-bb4c-8865d632054d", + "start": { + "$date": "2022-01-18T21:43:25.000Z" + }, + "end": { + "$date": "2022-01-18T21:48:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "91eab2f0-a7e5-4833-9b5d-591e8a8051df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T21:48:45.000Z" + }, + "end": { + "$date": "2022-01-18T21:59:26.000Z" + }, + "events": [ + { + "uuid": "a12f1fc4-335e-435a-9cef-47b08a276f96", + "start": { + "$date": "2022-01-18T21:48:45.000Z" + }, + "end": { + "$date": "2022-01-18T21:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9107221-c7a3-4990-baef-2713b4640786", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T21:59:18.000Z" + }, + "end": { + "$date": "2022-01-18T22:31:11.000Z" + }, + "events": [ + { + "uuid": "76f78fb8-97de-4fdf-ada1-ea23f22295b1", + "start": { + "$date": "2022-01-18T21:59:18.000Z" + }, + "end": { + "$date": "2022-01-18T22:31:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "41e9a259-4a43-43d5-8e12-b1c255fdf4eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-18T22:16:45.000Z" + }, + "end": { + "$date": "2022-01-18T23:23:06.000Z" + }, + "events": [ + { + "uuid": "76ddb442-2462-4d11-af82-00823b925406", + "start": { + "$date": "2022-01-18T22:16:45.000Z" + }, + "end": { + "$date": "2022-01-18T23:23:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60ea8b48-e4fb-4b50-b873-99f6e9d70789", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T22:43:27.000Z" + }, + "end": { + "$date": "2022-01-18T23:06:42.000Z" + }, + "events": [ + { + "uuid": "636d5a98-65b5-4f47-a119-7afec663cdf5", + "start": { + "$date": "2022-01-18T22:43:27.000Z" + }, + "end": { + "$date": "2022-01-18T23:06:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "61696b1f-27c1-4d3b-bb78-e9e91d972b33", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T23:08:13.000Z" + }, + "end": { + "$date": "2022-01-18T23:37:17.000Z" + }, + "events": [ + { + "uuid": "814f69c0-d67c-4f21-bc02-cbc673f6e42b", + "start": { + "$date": "2022-01-18T23:08:13.000Z" + }, + "end": { + "$date": "2022-01-18T23:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "10c0fec9-ebe7-4c4e-88df-369304a8d3bd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-18T23:18:07.000Z" + }, + "end": { + "$date": "2022-01-19T00:48:10.000Z" + }, + "events": [ + { + "uuid": "7f1a540b-5bd1-4f27-b017-09f14b230272", + "start": { + "$date": "2022-01-18T23:18:07.000Z" + }, + "end": { + "$date": "2022-01-19T00:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f35fa40e-0612-4543-8751-b873cbce7847", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-18T23:36:36.000Z" + }, + "end": { + "$date": "2022-01-19T00:14:58.000Z" + }, + "events": [ + { + "uuid": "21410be1-f38e-49fe-8611-2d6a90ba7e78", + "start": { + "$date": "2022-01-18T23:36:36.000Z" + }, + "end": { + "$date": "2022-01-19T00:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e6430e5-7b7b-4e7a-b232-af68032f0e93", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-18T23:38:47.000Z" + }, + "end": { + "$date": "2022-01-19T00:14:15.000Z" + }, + "events": [ + { + "uuid": "9103bec9-4f6d-4262-85dc-14cbcbb89e23", + "start": { + "$date": "2022-01-18T23:38:47.000Z" + }, + "end": { + "$date": "2022-01-19T00:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "6b9a6abb-6c1c-4238-b2fe-7198ea429a70", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T00:07:12.000Z" + }, + "end": { + "$date": "2022-01-19T00:42:34.000Z" + }, + "events": [ + { + "uuid": "1b02e603-ff7f-43ef-b303-37ae9eff1960", + "start": { + "$date": "2022-01-19T00:07:12.000Z" + }, + "end": { + "$date": "2022-01-19T00:42:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "058c4b42-b711-42c1-8fd7-0e1d40cf7930", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-19T00:18:41.000Z" + }, + "end": { + "$date": "2022-01-19T00:40:02.000Z" + }, + "events": [ + { + "uuid": "e7b58116-5aea-4daa-baae-68303ce6cb7d", + "start": { + "$date": "2022-01-19T00:18:41.000Z" + }, + "end": { + "$date": "2022-01-19T00:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "4a2cb6e9-bc49-46db-b435-1bc428f0c18a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-19T00:25:22.000Z" + }, + "end": { + "$date": "2022-01-19T00:44:38.000Z" + }, + "events": [ + { + "uuid": "6f272ca9-d328-4483-b975-0db31bb7825b", + "start": { + "$date": "2022-01-19T00:25:22.000Z" + }, + "end": { + "$date": "2022-01-19T00:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e11a1213-5d56-4c5b-ad28-cf3028c1a236", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-19T00:49:58.000Z" + }, + "end": { + "$date": "2022-01-19T01:24:14.000Z" + }, + "events": [ + { + "uuid": "2989e727-03fb-4b6d-87ea-7a1560e56350", + "start": { + "$date": "2022-01-19T00:49:58.000Z" + }, + "end": { + "$date": "2022-01-19T01:24:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "918865b7-3221-45cd-a1d2-7ec6918fd8e4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T00:50:00.000Z" + }, + "end": { + "$date": "2022-01-19T01:24:21.000Z" + }, + "events": [ + { + "uuid": "d18ee02d-6239-46ce-a547-b581872ec1fb", + "start": { + "$date": "2022-01-19T00:50:00.000Z" + }, + "end": { + "$date": "2022-01-19T01:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "fed045b3-16bf-4045-a11e-5f07fd16b9df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T00:48:30.000Z" + }, + "end": { + "$date": "2022-01-19T00:54:16.000Z" + }, + "events": [ + { + "uuid": "e3f5a393-5bbc-497f-9159-b7443fa729e8", + "start": { + "$date": "2022-01-19T00:48:30.000Z" + }, + "end": { + "$date": "2022-01-19T00:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "158555bf-ee0f-4d9b-829b-99b98da76df4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-19T00:50:46.000Z" + }, + "end": { + "$date": "2022-01-19T01:13:21.000Z" + }, + "events": [ + { + "uuid": "77a1e64c-cc67-495c-b16d-d4b47b859a1a", + "start": { + "$date": "2022-01-19T00:50:46.000Z" + }, + "end": { + "$date": "2022-01-19T01:13:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4c7bde5e-57f8-4398-9472-34144e0468be", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-19T01:20:26.000Z" + }, + "end": { + "$date": "2022-01-19T05:30:13.000Z" + }, + "events": [ + { + "uuid": "2fb549be-1c28-46ed-bdad-46f377e33b2a", + "start": { + "$date": "2022-01-19T01:20:26.000Z" + }, + "end": { + "$date": "2022-01-19T05:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "15bcb230-f1c2-47c7-9a89-329bb57fa9ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-19T01:29:24.000Z" + }, + "end": { + "$date": "2022-01-19T01:44:06.000Z" + }, + "events": [ + { + "uuid": "61cd276b-77c0-450c-ac97-78eef971a245", + "start": { + "$date": "2022-01-19T01:29:24.000Z" + }, + "end": { + "$date": "2022-01-19T01:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "05a91701-f1e6-4609-95dc-00d50df82e11", + "uuid": "5ccf82c6-c399-4e9c-a950-9a4adacfc3f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T01:29:50.000Z" + }, + "end": { + "$date": "2022-01-19T01:44:23.000Z" + }, + "events": [ + { + "uuid": "49937a28-4a5b-4bf8-835e-f0372da78c33", + "start": { + "$date": "2022-01-19T01:29:50.000Z" + }, + "end": { + "$date": "2022-01-19T01:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "dca45816-157a-4074-b66b-8c9274ac5610", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T02:17:06.000Z" + }, + "end": { + "$date": "2022-01-19T02:17:12.000Z" + }, + "events": [ + { + "uuid": "85a4aac0-3be0-4687-ad88-8c6ea291c6d9", + "start": { + "$date": "2022-01-19T02:17:06.000Z" + }, + "end": { + "$date": "2022-01-19T02:17:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6d5e9de3-fbeb-4b6c-ba3b-0fa5247dae0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T02:17:56.000Z" + }, + "end": { + "$date": "2022-01-19T02:54:39.000Z" + }, + "events": [ + { + "uuid": "4b2372c2-fca7-4cb5-9529-01d49403a32b", + "start": { + "$date": "2022-01-19T02:17:56.000Z" + }, + "end": { + "$date": "2022-01-19T02:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f6a0e1a-ae12-4d33-98de-a499b001a6fb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T02:27:13.000Z" + }, + "end": { + "$date": "2022-01-19T03:10:55.000Z" + }, + "events": [ + { + "uuid": "a0d74386-636f-4297-95c7-2be588369ec1", + "start": { + "$date": "2022-01-19T02:27:13.000Z" + }, + "end": { + "$date": "2022-01-19T03:10:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "67521d78-f6cb-4415-8b2e-e4974ab345be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T02:54:44.000Z" + }, + "end": { + "$date": "2022-01-19T03:17:27.000Z" + }, + "events": [ + { + "uuid": "68b98440-356a-4d87-92d2-4e4091d6966e", + "start": { + "$date": "2022-01-19T02:54:44.000Z" + }, + "end": { + "$date": "2022-01-19T03:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8bec33d1-0b47-408e-853f-26f25c38cabd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-19T02:58:40.000Z" + }, + "end": { + "$date": "2022-01-19T03:00:13.000Z" + }, + "events": [ + { + "uuid": "60f42110-6423-4c25-9c9f-b0b88eda7968", + "start": { + "$date": "2022-01-19T02:58:40.000Z" + }, + "end": { + "$date": "2022-01-19T03:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "fc5aa65d-1e98-4844-88fe-19b26272730a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-19T03:05:51.000Z" + }, + "end": { + "$date": "2022-01-19T05:14:18.000Z" + }, + "events": [ + { + "uuid": "456fdf6a-a03f-4590-960b-6b31d9957b55", + "start": { + "$date": "2022-01-19T03:05:51.000Z" + }, + "end": { + "$date": "2022-01-19T05:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "8c134ae5-42ba-43f4-856e-f7723a82eb71", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T03:34:06.000Z" + }, + "end": { + "$date": "2022-01-19T03:48:19.000Z" + }, + "events": [ + { + "uuid": "e3bb4de4-caa0-4c1b-8d84-3638daffaa10", + "start": { + "$date": "2022-01-19T03:34:06.000Z" + }, + "end": { + "$date": "2022-01-19T03:48:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ec51e29c-f7b0-4cdb-a06b-602d47891a28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T04:02:56.000Z" + }, + "end": { + "$date": "2022-01-19T04:43:31.000Z" + }, + "events": [ + { + "uuid": "de63430b-260a-4939-a967-50f7a5bdeafe", + "start": { + "$date": "2022-01-19T04:02:56.000Z" + }, + "end": { + "$date": "2022-01-19T04:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7e117f4a-9b36-4b58-8150-de64203a7165", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-19T03:36:29.000Z" + }, + "end": { + "$date": "2022-01-19T03:59:57.000Z" + }, + "events": [ + { + "uuid": "bb3f89c4-8889-4556-bf35-b5e78a683433", + "start": { + "$date": "2022-01-19T03:36:29.000Z" + }, + "end": { + "$date": "2022-01-19T03:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d877a1e8-7fc3-4312-be02-3529b839de8d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-19T04:11:47.000Z" + }, + "end": { + "$date": "2022-01-19T04:44:22.000Z" + }, + "events": [ + { + "uuid": "a591b19e-cb15-4ea1-bc3f-316b91945244", + "start": { + "$date": "2022-01-19T04:11:47.000Z" + }, + "end": { + "$date": "2022-01-19T04:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8e9b4d2c-b017-4cdb-a75f-f3606b9c7ff6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-19T04:08:11.000Z" + }, + "end": { + "$date": "2022-01-19T04:51:34.000Z" + }, + "events": [ + { + "uuid": "c9dbda50-e16a-46be-874e-940426c9731f", + "start": { + "$date": "2022-01-19T04:08:11.000Z" + }, + "end": { + "$date": "2022-01-19T04:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9211ae8-24f1-4d9a-b552-41d06b776331", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-19T04:29:46.000Z" + }, + "end": { + "$date": "2022-01-19T04:53:42.000Z" + }, + "events": [ + { + "uuid": "e1a3125b-251d-4cbf-93a6-7ad631a534de", + "start": { + "$date": "2022-01-19T04:29:46.000Z" + }, + "end": { + "$date": "2022-01-19T04:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63f86d86-031d-48d2-97d9-2ac902e3f234", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-19T04:50:03.000Z" + }, + "end": { + "$date": "2022-01-19T05:29:13.000Z" + }, + "events": [ + { + "uuid": "19692e52-d209-4682-bafe-88a16f1239fd", + "start": { + "$date": "2022-01-19T04:50:03.000Z" + }, + "end": { + "$date": "2022-01-19T05:29:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "e01f4ca6-e1e1-4d71-88e9-cf93dc43360d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T04:51:31.000Z" + }, + "end": { + "$date": "2022-01-19T04:58:12.000Z" + }, + "events": [ + { + "uuid": "fab7aadc-9070-42c8-a999-ee46c807b470", + "start": { + "$date": "2022-01-19T04:51:31.000Z" + }, + "end": { + "$date": "2022-01-19T04:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "909b86d2-1cba-49c2-b078-7198035306a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T04:59:17.000Z" + }, + "end": { + "$date": "2022-01-19T05:14:19.000Z" + }, + "events": [ + { + "uuid": "32f8cdfa-7174-4355-b472-f536353f2a7f", + "start": { + "$date": "2022-01-19T04:59:17.000Z" + }, + "end": { + "$date": "2022-01-19T05:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "f666b502-4f73-4b23-96a0-fe9f37da1430", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T05:14:42.000Z" + }, + "end": { + "$date": "2022-01-19T05:24:18.000Z" + }, + "events": [ + { + "uuid": "83675913-9a8e-4278-8796-783560290764", + "start": { + "$date": "2022-01-19T05:14:42.000Z" + }, + "end": { + "$date": "2022-01-19T05:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6996d06-075a-4dc4-8342-11eb347619a1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-19T05:36:09.000Z" + }, + "end": { + "$date": "2022-01-19T05:56:04.000Z" + }, + "events": [ + { + "uuid": "cb134f24-27df-41bd-a7ca-01a58da7049a", + "start": { + "$date": "2022-01-19T05:36:09.000Z" + }, + "end": { + "$date": "2022-01-19T05:56:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "510501ba-10a3-4209-aab0-0946881fdafc", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-19T05:36:03.000Z" + }, + "end": { + "$date": "2022-01-19T05:56:05.000Z" + }, + "events": [ + { + "uuid": "d14ff6ae-aa39-452c-a516-026554e847c2", + "start": { + "$date": "2022-01-19T05:36:03.000Z" + }, + "end": { + "$date": "2022-01-19T05:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1043b553-ffe9-45c1-aea9-6721be53af7d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-19T05:40:54.000Z" + }, + "end": { + "$date": "2022-01-19T06:10:45.000Z" + }, + "events": [ + { + "uuid": "367f4b6e-4181-4dc6-ae8c-e7695dc971bb", + "start": { + "$date": "2022-01-19T05:40:54.000Z" + }, + "end": { + "$date": "2022-01-19T06:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cadf3865-583e-47fb-8c0c-89cb199bf675", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-19T05:59:20.000Z" + }, + "end": { + "$date": "2022-01-19T06:28:07.000Z" + }, + "events": [ + { + "uuid": "96d53c72-6de9-4cad-9a73-f400cca3c79c", + "start": { + "$date": "2022-01-19T05:59:20.000Z" + }, + "end": { + "$date": "2022-01-19T06:28:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9ddc805-fdd0-4217-874e-4dd8244c0d67", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T05:59:18.000Z" + }, + "end": { + "$date": "2022-01-19T06:28:01.000Z" + }, + "events": [ + { + "uuid": "5643cc92-3718-4230-9c6d-0553cea7b38e", + "start": { + "$date": "2022-01-19T05:59:18.000Z" + }, + "end": { + "$date": "2022-01-19T06:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a05f5b91-2b2a-40cf-a435-552882576b35", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-19T05:59:19.000Z" + }, + "end": { + "$date": "2022-01-19T06:28:03.000Z" + }, + "events": [ + { + "uuid": "622f9453-51b8-4698-9f83-943020348718", + "start": { + "$date": "2022-01-19T05:59:19.000Z" + }, + "end": { + "$date": "2022-01-19T06:28:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e2b5330-090f-4393-8553-ff2618eeca72", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-19T05:59:15.000Z" + }, + "end": { + "$date": "2022-01-19T06:27:57.000Z" + }, + "events": [ + { + "uuid": "d2ad4f66-e546-4761-9ca9-769a616066ea", + "start": { + "$date": "2022-01-19T05:59:15.000Z" + }, + "end": { + "$date": "2022-01-19T06:27:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ed8207a-1aa8-4d80-96be-93a13e7919c4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-19T06:30:30.000Z" + }, + "end": { + "$date": "2022-01-19T06:54:12.000Z" + }, + "events": [ + { + "uuid": "c7c94c3f-da34-4d7b-a2a7-8bcf662420fc", + "start": { + "$date": "2022-01-19T06:30:30.000Z" + }, + "end": { + "$date": "2022-01-19T06:54:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c30dd381-baba-43f3-a3cf-2a18b35cc8a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T06:30:23.000Z" + }, + "end": { + "$date": "2022-01-19T06:54:14.000Z" + }, + "events": [ + { + "uuid": "cab7f60a-71b3-4309-b7dd-f939aa2a1233", + "start": { + "$date": "2022-01-19T06:30:23.000Z" + }, + "end": { + "$date": "2022-01-19T06:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "00969c04-3639-4b91-b113-e5eaf2efb145", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-19T06:30:24.000Z" + }, + "end": { + "$date": "2022-01-19T06:54:10.000Z" + }, + "events": [ + { + "uuid": "9ced79b0-d6a6-484e-9b63-fdfbe91daf37", + "start": { + "$date": "2022-01-19T06:30:24.000Z" + }, + "end": { + "$date": "2022-01-19T06:54:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44de686c-d1b0-4281-8ae7-80d6048d7284", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-19T06:56:21.000Z" + }, + "end": { + "$date": "2022-01-19T07:13:33.000Z" + }, + "events": [ + { + "uuid": "3231c3f6-9c4a-48bd-9bd7-c855b7df5ed9", + "start": { + "$date": "2022-01-19T06:56:21.000Z" + }, + "end": { + "$date": "2022-01-19T07:13:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a89ec1e-c6bb-49f5-bc23-0cb0c4f7cdf0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-19T06:56:20.000Z" + }, + "end": { + "$date": "2022-01-19T07:13:30.000Z" + }, + "events": [ + { + "uuid": "30ed07e3-9207-4c26-b9ef-daab5afd83e5", + "start": { + "$date": "2022-01-19T06:56:20.000Z" + }, + "end": { + "$date": "2022-01-19T07:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f28f97b9-db08-4a9b-a3b1-4bd5b63874a2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T06:56:19.000Z" + }, + "end": { + "$date": "2022-01-19T07:13:39.000Z" + }, + "events": [ + { + "uuid": "6fd51b75-e316-408f-b870-c20753daeb65", + "start": { + "$date": "2022-01-19T06:56:19.000Z" + }, + "end": { + "$date": "2022-01-19T07:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a5308de-a5d6-4ddf-afd6-e2789269ca89", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-19T07:20:35.000Z" + }, + "end": { + "$date": "2022-01-19T07:55:31.000Z" + }, + "events": [ + { + "uuid": "a34289b3-0923-43fd-8fc2-86c113828ab7", + "start": { + "$date": "2022-01-19T07:20:35.000Z" + }, + "end": { + "$date": "2022-01-19T07:55:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "179e4240-6896-415a-abd1-fd0d6027b4ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-19T07:51:39.000Z" + }, + "end": { + "$date": "2022-01-19T07:55:38.000Z" + }, + "events": [ + { + "uuid": "97e2ee8b-1ab4-446e-87e2-c20dca49fd1e", + "start": { + "$date": "2022-01-19T07:51:39.000Z" + }, + "end": { + "$date": "2022-01-19T07:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "12ca5a71-5893-462a-b733-380d47733dd2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-19T09:08:33.000Z" + }, + "end": { + "$date": "2022-01-19T09:10:52.000Z" + }, + "events": [ + { + "uuid": "a6b7345b-531c-4d75-97e8-c0faac994689", + "start": { + "$date": "2022-01-19T09:08:33.000Z" + }, + "end": { + "$date": "2022-01-19T09:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "7afeb3a5-2bb9-4a43-bed1-841e03d6101c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-19T10:14:55.000Z" + }, + "end": { + "$date": "2022-01-19T12:20:10.000Z" + }, + "events": [ + { + "uuid": "87479c91-da52-42b5-a1ed-8e5e9514df84", + "start": { + "$date": "2022-01-19T10:14:55.000Z" + }, + "end": { + "$date": "2022-01-19T12:20:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "bd3df373-676c-447e-8c1d-a2f6655eb391", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-19T15:38:08.000Z" + }, + "end": { + "$date": "2022-01-19T16:03:24.000Z" + }, + "events": [ + { + "uuid": "8386c9f6-3022-4076-9123-b70b84a1027a", + "start": { + "$date": "2022-01-19T15:38:08.000Z" + }, + "end": { + "$date": "2022-01-19T16:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7c4bfae9-d617-428b-aa13-93e52e5f0252", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T16:49:36.000Z" + }, + "end": { + "$date": "2022-01-19T19:10:24.000Z" + }, + "events": [ + { + "uuid": "190a8945-a1ec-499d-b304-811a46f1068b", + "start": { + "$date": "2022-01-19T16:49:36.000Z" + }, + "end": { + "$date": "2022-01-19T19:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "e1b07829-0194-47ba-af49-f51dbd112c11", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T19:11:09.000Z" + }, + "end": { + "$date": "2022-01-19T19:57:06.000Z" + }, + "events": [ + { + "uuid": "245c8fce-33c9-4b52-8c86-5b10b54673f9", + "start": { + "$date": "2022-01-19T19:11:09.000Z" + }, + "end": { + "$date": "2022-01-19T19:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e2659ac7-7d25-498f-9652-249926d54502", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-19T19:42:13.000Z" + }, + "end": { + "$date": "2022-01-19T20:14:56.000Z" + }, + "events": [ + { + "uuid": "4eb78684-7021-4fa5-915e-4b851d711b56", + "start": { + "$date": "2022-01-19T19:42:13.000Z" + }, + "end": { + "$date": "2022-01-19T20:14:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "5ffd050d-645d-4775-b6a9-3f33c5e357aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-19T23:49:15.000Z" + }, + "end": { + "$date": "2022-01-20T02:55:37.000Z" + }, + "events": [ + { + "uuid": "33c5bace-7465-44f4-a0f2-5aea32671c1c", + "start": { + "$date": "2022-01-19T23:49:15.000Z" + }, + "end": { + "$date": "2022-01-20T02:55:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a646bd42-2ab4-4542-a56a-5518213b12c0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-20T00:49:41.000Z" + }, + "end": { + "$date": "2022-01-20T03:52:26.000Z" + }, + "events": [ + { + "uuid": "4e5e35ad-d853-4b8e-8504-0c7e9003076d", + "start": { + "$date": "2022-01-20T00:49:41.000Z" + }, + "end": { + "$date": "2022-01-20T03:52:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "08e2dbb7-ec01-4cf5-bc12-30f5c518d1e1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-20T01:15:41.000Z" + }, + "end": { + "$date": "2022-01-20T01:17:01.000Z" + }, + "events": [ + { + "uuid": "f96fb669-21ef-45ca-b220-2d33ee26cdd0", + "start": { + "$date": "2022-01-20T01:15:41.000Z" + }, + "end": { + "$date": "2022-01-20T01:17:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e28bd96c-b2c0-4375-b26e-af0a89ed404f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-20T01:22:26.000Z" + }, + "end": { + "$date": "2022-01-20T01:49:01.000Z" + }, + "events": [ + { + "uuid": "3ea0718e-f369-4e21-a73d-95770e5884e5", + "start": { + "$date": "2022-01-20T01:22:26.000Z" + }, + "end": { + "$date": "2022-01-20T01:49:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90f566be-d2b8-4e75-8947-cef5cdaac36f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-20T01:54:47.000Z" + }, + "end": { + "$date": "2022-01-20T02:20:17.000Z" + }, + "events": [ + { + "uuid": "24877a59-a51c-4766-a927-dee1fb9869da", + "start": { + "$date": "2022-01-20T01:54:47.000Z" + }, + "end": { + "$date": "2022-01-20T02:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8e9cb08d-5cc1-4bde-9e95-9a943dd0856e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-20T02:17:50.000Z" + }, + "end": { + "$date": "2022-01-20T02:34:46.000Z" + }, + "events": [ + { + "uuid": "ae976812-7fd5-4e26-ab23-cb419707e416", + "start": { + "$date": "2022-01-20T02:17:50.000Z" + }, + "end": { + "$date": "2022-01-20T02:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eaf1cbd1-0ab1-49a0-af42-6ebb9abfcde0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-20T02:33:43.000Z" + }, + "end": { + "$date": "2022-01-20T03:06:09.000Z" + }, + "events": [ + { + "uuid": "44e91365-f133-47de-8200-8f04b42406f6", + "start": { + "$date": "2022-01-20T02:33:43.000Z" + }, + "end": { + "$date": "2022-01-20T03:06:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf266352-9b80-4458-bac4-d6b3952680ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-20T02:29:23.000Z" + }, + "end": { + "$date": "2022-01-20T02:52:31.000Z" + }, + "events": [ + { + "uuid": "6fcb9647-1754-4220-b5bd-a1e0a513db25", + "start": { + "$date": "2022-01-20T02:29:23.000Z" + }, + "end": { + "$date": "2022-01-20T02:52:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0922f670-f3a0-4ece-9cc0-7c34263f3fe3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-20T02:33:35.000Z" + }, + "end": { + "$date": "2022-01-20T03:06:11.000Z" + }, + "events": [ + { + "uuid": "abb1f811-e26f-4d4c-9812-68eeba3018c6", + "start": { + "$date": "2022-01-20T02:33:35.000Z" + }, + "end": { + "$date": "2022-01-20T03:06:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ff88f0c0-1fec-4987-ae9f-58791c45da84", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-20T02:38:51.000Z" + }, + "end": { + "$date": "2022-01-20T03:39:08.000Z" + }, + "events": [ + { + "uuid": "01ed741c-a9b8-447c-9a2a-68e07aadf203", + "start": { + "$date": "2022-01-20T02:38:51.000Z" + }, + "end": { + "$date": "2022-01-20T03:10:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "181341d3-b308-4b06-a575-a2f526ec58c9", + "start": { + "$date": "2022-01-20T03:10:51.000Z" + }, + "end": { + "$date": "2022-01-20T03:16:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e262fea3-66b4-4e33-b280-9c53892402c0", + "start": { + "$date": "2022-01-20T03:16:51.000Z" + }, + "end": { + "$date": "2022-01-20T03:26:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c329cb75-0e30-448a-a5fc-43864a9330c1", + "start": { + "$date": "2022-01-20T03:26:51.000Z" + }, + "end": { + "$date": "2022-01-20T03:30:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "181b66eb-04ea-43f8-a4ad-c542cd5813c1", + "start": { + "$date": "2022-01-20T03:30:51.000Z" + }, + "end": { + "$date": "2022-01-20T03:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb10defa-b37e-4fb5-b7c6-6f3e0fb94b2a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-20T02:55:09.000Z" + }, + "end": { + "$date": "2022-01-20T03:25:40.000Z" + }, + "events": [ + { + "uuid": "cbec2e19-202b-47a8-a07a-016e80e006ee", + "start": { + "$date": "2022-01-20T02:55:09.000Z" + }, + "end": { + "$date": "2022-01-20T03:25:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "08dd7d26-12e6-412b-8020-ab98cb4919f1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-20T03:06:27.000Z" + }, + "end": { + "$date": "2022-01-20T06:00:21.000Z" + }, + "events": [ + { + "uuid": "da16a504-198b-4459-8426-20cbf0e85f56", + "start": { + "$date": "2022-01-20T03:06:27.000Z" + }, + "end": { + "$date": "2022-01-20T06:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "30fa5056-5514-4285-9b0c-8b58de929f42", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-20T03:09:57.000Z" + }, + "end": { + "$date": "2022-01-20T03:12:02.000Z" + }, + "events": [ + { + "uuid": "721b7431-67ae-4339-ac7b-f766d2bd7ca5", + "start": { + "$date": "2022-01-20T03:09:57.000Z" + }, + "end": { + "$date": "2022-01-20T03:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "8ff34811-cec8-4e6d-af3f-021244858a12", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-20T03:12:07.000Z" + }, + "end": { + "$date": "2022-01-20T03:22:43.000Z" + }, + "events": [ + { + "uuid": "d4d433fc-5bf8-437f-9a15-8381ebc1eee5", + "start": { + "$date": "2022-01-20T03:12:07.000Z" + }, + "end": { + "$date": "2022-01-20T03:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7c277159-d9e5-4895-92f1-b9ea76eb5341", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-20T03:12:56.000Z" + }, + "end": { + "$date": "2022-01-20T03:49:52.000Z" + }, + "events": [ + { + "uuid": "da7076c8-21d3-4e7e-9aef-fb8fdb828a84", + "start": { + "$date": "2022-01-20T03:12:56.000Z" + }, + "end": { + "$date": "2022-01-20T03:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "704594c7-3452-4f12-bfdf-15e4bfc75a3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T03:23:50.000Z" + }, + "end": { + "$date": "2022-01-20T03:40:11.000Z" + }, + "events": [ + { + "uuid": "14a642f5-63e4-431a-b115-4ce02918aad9", + "start": { + "$date": "2022-01-20T03:23:50.000Z" + }, + "end": { + "$date": "2022-01-20T03:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3567342d-1691-49a0-b694-030be58c0c2e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-20T03:27:00.000Z" + }, + "end": { + "$date": "2022-01-20T04:09:35.000Z" + }, + "events": [ + { + "uuid": "263710ec-c7ab-4fdf-a59e-18ee672bdf12", + "start": { + "$date": "2022-01-20T03:27:00.000Z" + }, + "end": { + "$date": "2022-01-20T04:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "872b2bfd-c93a-476d-88f9-52582469d4fd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-20T03:38:28.000Z" + }, + "end": { + "$date": "2022-01-20T04:14:44.000Z" + }, + "events": [ + { + "uuid": "ae2be9d9-2f53-4693-8c8e-b7cbae14fe26", + "start": { + "$date": "2022-01-20T03:38:28.000Z" + }, + "end": { + "$date": "2022-01-20T04:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "860622ce-7e4c-497e-b384-8da18a66bdfd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-20T03:39:22.000Z" + }, + "end": { + "$date": "2022-01-20T06:35:43.000Z" + }, + "events": [ + { + "uuid": "f2f99b12-b6fd-4f25-9139-9f7b7f33729a", + "start": { + "$date": "2022-01-20T03:39:22.000Z" + }, + "end": { + "$date": "2022-01-20T06:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d5bfa453-23bd-42c9-93bd-8b08ed3eb91a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T03:40:20.000Z" + }, + "end": { + "$date": "2022-01-20T04:50:21.000Z" + }, + "events": [ + { + "uuid": "e257837f-5463-4f35-9149-ed4b6380ac79", + "start": { + "$date": "2022-01-20T03:40:20.000Z" + }, + "end": { + "$date": "2022-01-20T04:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3446aedb-e194-49fb-81d0-86e6eb3c9c0a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-20T04:10:00.000Z" + }, + "end": { + "$date": "2022-01-20T04:47:56.000Z" + }, + "events": [ + { + "uuid": "9c136702-766c-479d-ae01-9bcd45fa1ee1", + "start": { + "$date": "2022-01-20T04:10:00.000Z" + }, + "end": { + "$date": "2022-01-20T04:47:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c6d8d85-70c2-499d-ba6f-0784bb161849", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-20T04:19:13.000Z" + }, + "end": { + "$date": "2022-01-20T04:49:00.000Z" + }, + "events": [ + { + "uuid": "7751a358-54f0-42c7-bbe8-bc0cfc709a58", + "start": { + "$date": "2022-01-20T04:19:13.000Z" + }, + "end": { + "$date": "2022-01-20T04:49:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06669762-cade-4077-825f-f62bb41e5aa2", + "uuid": "9eb8c5ab-e01c-43ab-9d7d-8e3fa1a1f630", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-20T04:16:25.000Z" + }, + "end": { + "$date": "2022-01-20T04:23:15.000Z" + }, + "events": [ + { + "uuid": "b717753f-1c1e-4078-aab4-58add888ef49", + "start": { + "$date": "2022-01-20T04:16:25.000Z" + }, + "end": { + "$date": "2022-01-20T04:23:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f8c9ec5f-bded-41a4-9737-611075e7eda1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-20T04:32:04.000Z" + }, + "end": { + "$date": "2022-01-20T04:44:29.000Z" + }, + "events": [ + { + "uuid": "ac2e5366-2dfa-44b1-b955-c74b0c0e49c7", + "start": { + "$date": "2022-01-20T04:32:04.000Z" + }, + "end": { + "$date": "2022-01-20T04:44:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b2ed02a5-c070-4c3a-bf2f-6bb44abf1e12", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T04:50:38.000Z" + }, + "end": { + "$date": "2022-01-20T06:00:30.000Z" + }, + "events": [ + { + "uuid": "4633517c-edb3-47da-a749-fcc5998ee6b0", + "start": { + "$date": "2022-01-20T04:50:38.000Z" + }, + "end": { + "$date": "2022-01-20T06:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2053046b-30fd-4f77-9ebb-e20813c81e34", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-20T04:55:14.000Z" + }, + "end": { + "$date": "2022-01-20T05:30:05.000Z" + }, + "events": [ + { + "uuid": "9e37b7e0-240a-48ca-b6b0-1eccca766c2c", + "start": { + "$date": "2022-01-20T04:55:14.000Z" + }, + "end": { + "$date": "2022-01-20T05:30:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5babade-9ff7-4f67-a737-314ffa1e25d5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-20T05:35:20.000Z" + }, + "end": { + "$date": "2022-01-20T06:04:21.000Z" + }, + "events": [ + { + "uuid": "91040754-36a0-4b7a-bff6-5555f80f24cc", + "start": { + "$date": "2022-01-20T05:35:20.000Z" + }, + "end": { + "$date": "2022-01-20T06:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7777f0b3-fca8-4368-8225-2f153adc5fb1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-20T06:07:05.000Z" + }, + "end": { + "$date": "2022-01-20T06:31:17.000Z" + }, + "events": [ + { + "uuid": "f0ca282a-9c77-49b6-9f40-473e65163a99", + "start": { + "$date": "2022-01-20T06:07:05.000Z" + }, + "end": { + "$date": "2022-01-20T06:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "7b4f42cf-e3de-4a7e-b034-4c8713482cdb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T06:41:39.000Z" + }, + "end": { + "$date": "2022-01-20T07:13:27.000Z" + }, + "events": [ + { + "uuid": "c8580adf-5c5c-4f83-9818-a4c68aeef7a7", + "start": { + "$date": "2022-01-20T06:41:39.000Z" + }, + "end": { + "$date": "2022-01-20T07:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d11bf54f-ae9d-4436-96bf-6b41beda4e81", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T18:10:31.000Z" + }, + "end": { + "$date": "2022-01-20T19:45:11.000Z" + }, + "events": [ + { + "uuid": "afb8f074-a6e2-4364-bb6b-82378f96c2f3", + "start": { + "$date": "2022-01-20T18:10:31.000Z" + }, + "end": { + "$date": "2022-01-20T19:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b140fedc-3473-4d0e-8ad9-1da583effb9a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T19:47:16.000Z" + }, + "end": { + "$date": "2022-01-20T19:52:56.000Z" + }, + "events": [ + { + "uuid": "359a9d11-864b-4536-8a5b-a7ea3768d3b7", + "start": { + "$date": "2022-01-20T19:47:16.000Z" + }, + "end": { + "$date": "2022-01-20T19:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fe6e5b5f-9145-4d34-adb6-74f1dd61771a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T20:56:44.000Z" + }, + "end": { + "$date": "2022-01-20T21:06:44.000Z" + }, + "events": [ + { + "uuid": "1266299d-1ee1-4763-982d-82b9e9fd4375", + "start": { + "$date": "2022-01-20T20:56:44.000Z" + }, + "end": { + "$date": "2022-01-20T21:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4aed104a-d97b-4f2f-8572-65a4f6854cd4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-20T21:08:05.000Z" + }, + "end": { + "$date": "2022-01-20T21:35:02.000Z" + }, + "events": [ + { + "uuid": "38d95f19-e64a-447a-903b-c2828ba42468", + "start": { + "$date": "2022-01-20T21:08:05.000Z" + }, + "end": { + "$date": "2022-01-20T21:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "9edfb9d7-0ec2-438f-945b-896a476707c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T22:19:44.000Z" + }, + "end": { + "$date": "2022-01-20T22:29:35.000Z" + }, + "events": [ + { + "uuid": "5e96fb7f-c2d4-49f8-81d3-f996953a1d82", + "start": { + "$date": "2022-01-20T22:19:44.000Z" + }, + "end": { + "$date": "2022-01-20T22:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "53958c4d-63d0-4518-903b-7b1ad52e7f9a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T22:30:15.000Z" + }, + "end": { + "$date": "2022-01-20T22:44:16.000Z" + }, + "events": [ + { + "uuid": "335a4850-5cff-45ff-a6fe-2e58f28bc687", + "start": { + "$date": "2022-01-20T22:30:15.000Z" + }, + "end": { + "$date": "2022-01-20T22:44:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9eb8c30b-58b3-4d29-b3d7-1ed1afd79985", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-20T23:44:22.000Z" + }, + "end": { + "$date": "2022-01-20T23:44:23.000Z" + }, + "events": [ + { + "uuid": "de92001e-8004-45e7-bbc5-f78aeea853da", + "start": { + "$date": "2022-01-20T23:44:22.000Z" + }, + "end": { + "$date": "2022-01-20T23:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "87e4f42e-63d0-4bb7-bd02-623b78526c8d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-20T23:04:00.000Z" + }, + "end": { + "$date": "2022-01-20T23:18:06.000Z" + }, + "events": [ + { + "uuid": "09271e19-d1c3-4e54-a4e1-6ca352dd4943", + "start": { + "$date": "2022-01-20T23:04:00.000Z" + }, + "end": { + "$date": "2022-01-20T23:18:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "a234372e-7851-4cba-b0c1-cf3acb484ef7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T23:09:20.000Z" + }, + "end": { + "$date": "2022-01-20T23:35:31.000Z" + }, + "events": [ + { + "uuid": "3fe8aa7e-0697-4602-9e9f-d76eb21ff7ca", + "start": { + "$date": "2022-01-20T23:09:20.000Z" + }, + "end": { + "$date": "2022-01-20T23:35:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5bf172b-2b9f-48d8-a586-a91f62bf22a1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-20T23:48:12.000Z" + }, + "end": { + "$date": "2022-01-21T00:05:28.000Z" + }, + "events": [ + { + "uuid": "7dcc0ab6-5d88-47f7-9c51-8dbc296e4530", + "start": { + "$date": "2022-01-20T23:48:12.000Z" + }, + "end": { + "$date": "2022-01-21T00:05:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "ad296fd8-5fb3-46ef-9bdb-65c3484a85d9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-20T23:45:22.000Z" + }, + "end": { + "$date": "2022-01-21T00:08:03.000Z" + }, + "events": [ + { + "uuid": "08c374f5-e4dc-4eaa-bab3-19b612c137e9", + "start": { + "$date": "2022-01-20T23:45:22.000Z" + }, + "end": { + "$date": "2022-01-21T00:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "5c3d48b9-9c05-4096-8ad7-b1f449512ed2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T00:08:38.000Z" + }, + "end": { + "$date": "2022-01-21T00:42:05.000Z" + }, + "events": [ + { + "uuid": "5bd410cb-ed00-4a3c-90ab-5745c17019ad", + "start": { + "$date": "2022-01-21T00:08:38.000Z" + }, + "end": { + "$date": "2022-01-21T00:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "20bd1fbb-e6ba-47fc-bfea-0d07f8eb8c3a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-21T00:33:09.000Z" + }, + "end": { + "$date": "2022-01-21T00:36:05.000Z" + }, + "events": [ + { + "uuid": "f29bfb71-44a2-4380-8c5e-3d45c7e20a0a", + "start": { + "$date": "2022-01-21T00:33:09.000Z" + }, + "end": { + "$date": "2022-01-21T00:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a95ddd5f-c72d-4d8b-ac33-976fb3f8ee41", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-21T01:00:02.000Z" + }, + "end": { + "$date": "2022-01-21T01:00:43.000Z" + }, + "events": [ + { + "uuid": "4d1a03a2-2d58-4bfc-a5e7-10bfff3e9cd6", + "start": { + "$date": "2022-01-21T01:00:02.000Z" + }, + "end": { + "$date": "2022-01-21T01:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "8f9086d2-8a72-4815-bd2b-889628600352", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T00:48:05.000Z" + }, + "end": { + "$date": "2022-01-21T01:24:31.000Z" + }, + "events": [ + { + "uuid": "ae22b0f2-0e9d-452e-8b2e-7495561be69e", + "start": { + "$date": "2022-01-21T00:48:05.000Z" + }, + "end": { + "$date": "2022-01-21T01:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84b13620-93ed-44cf-84ba-c80641d864aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-21T01:18:58.000Z" + }, + "end": { + "$date": "2022-01-21T02:00:10.000Z" + }, + "events": [ + { + "uuid": "eb90db94-0067-4777-82f2-720464b5a9e6", + "start": { + "$date": "2022-01-21T01:18:58.000Z" + }, + "end": { + "$date": "2022-01-21T02:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "58051762-a3fe-4694-b8f2-c422d545a5d3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T01:27:41.000Z" + }, + "end": { + "$date": "2022-01-21T01:47:12.000Z" + }, + "events": [ + { + "uuid": "3a2a4e7b-8556-4f32-8fd9-00ceb3da917a", + "start": { + "$date": "2022-01-21T01:27:41.000Z" + }, + "end": { + "$date": "2022-01-21T01:47:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "5459d37d-444a-44e3-a3cd-8dbf497447da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T01:53:27.000Z" + }, + "end": { + "$date": "2022-01-21T03:04:19.000Z" + }, + "events": [ + { + "uuid": "f7992e81-5499-470f-9ab4-53ba0871a66c", + "start": { + "$date": "2022-01-21T01:53:27.000Z" + }, + "end": { + "$date": "2022-01-21T03:04:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cac63003-1320-447f-b00e-af80b686c0c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-21T02:00:50.000Z" + }, + "end": { + "$date": "2022-01-21T02:02:21.000Z" + }, + "events": [ + { + "uuid": "c1d51c4d-9e7e-4f32-aa0f-3aed92fe0458", + "start": { + "$date": "2022-01-21T02:00:50.000Z" + }, + "end": { + "$date": "2022-01-21T02:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b24ccfa7-40c5-4792-a9b6-31432cfc6ecc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-21T02:02:36.000Z" + }, + "end": { + "$date": "2022-01-21T02:18:37.000Z" + }, + "events": [ + { + "uuid": "5b55355c-0e27-42f8-8144-caf3e801ebf4", + "start": { + "$date": "2022-01-21T02:02:36.000Z" + }, + "end": { + "$date": "2022-01-21T02:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "53917633-2b68-4354-a165-2f6c73d16886", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-21T02:24:11.000Z" + }, + "end": { + "$date": "2022-01-21T07:03:24.000Z" + }, + "events": [ + { + "uuid": "68a3cb86-71f9-41be-b7e2-639ac2b231bc", + "start": { + "$date": "2022-01-21T02:24:11.000Z" + }, + "end": { + "$date": "2022-01-21T05:02:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e3c823f-e011-48e0-9b30-255a323948c5", + "start": { + "$date": "2022-01-21T05:02:11.000Z" + }, + "end": { + "$date": "2022-01-21T05:07:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fe1c2ab2-ac09-41c9-8c9b-e02bc70018f7", + "start": { + "$date": "2022-01-21T05:07:11.000Z" + }, + "end": { + "$date": "2022-01-21T07:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "85cee4f7-4a49-42af-8cc8-65d96675174a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-21T02:25:08.000Z" + }, + "end": { + "$date": "2022-01-21T07:21:34.000Z" + }, + "events": [ + { + "uuid": "0cb370c1-de21-4c88-93ae-b2b0d3bacc2f", + "start": { + "$date": "2022-01-21T02:25:08.000Z" + }, + "end": { + "$date": "2022-01-21T07:21:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4f053c31-97a2-412d-8784-b74868f8844e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-21T02:25:54.000Z" + }, + "end": { + "$date": "2022-01-21T03:47:46.000Z" + }, + "events": [ + { + "uuid": "75d0e737-a07a-4383-ad93-de167f71d0f2", + "start": { + "$date": "2022-01-21T02:25:54.000Z" + }, + "end": { + "$date": "2022-01-21T03:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "7a227274-7b69-4d41-aef5-f3d2b8236668", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-21T03:11:30.000Z" + }, + "end": { + "$date": "2022-01-21T06:33:52.000Z" + }, + "events": [ + { + "uuid": "accfbdb4-feb7-47e6-abef-03b0782b63e1", + "start": { + "$date": "2022-01-21T03:11:30.000Z" + }, + "end": { + "$date": "2022-01-21T06:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "531a91ca-d3c3-472e-876a-528e7c09ca61", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-21T02:51:39.000Z" + }, + "end": { + "$date": "2022-01-21T04:00:46.000Z" + }, + "events": [ + { + "uuid": "4290683f-799d-4583-86d4-158072046a11", + "start": { + "$date": "2022-01-21T02:51:39.000Z" + }, + "end": { + "$date": "2022-01-21T04:00:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b310207-4090-4383-8cd9-ba3e7b1ccac6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-21T03:45:25.000Z" + }, + "end": { + "$date": "2022-01-21T03:45:35.000Z" + }, + "events": [ + { + "uuid": "6b304750-10d1-4b82-8310-18ca3b2c7f6f", + "start": { + "$date": "2022-01-21T03:45:25.000Z" + }, + "end": { + "$date": "2022-01-21T03:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5cbfc6f0-f3ef-43ac-a93c-2895545a33e2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-21T03:28:17.000Z" + }, + "end": { + "$date": "2022-01-21T06:21:52.000Z" + }, + "events": [ + { + "uuid": "f1f5c89e-d19b-4586-8251-94eae6188658", + "start": { + "$date": "2022-01-21T03:28:17.000Z" + }, + "end": { + "$date": "2022-01-21T06:21:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaef1425-7bc3-4deb-8d28-dac7443c442a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-21T03:53:34.000Z" + }, + "end": { + "$date": "2022-01-21T04:22:19.000Z" + }, + "events": [ + { + "uuid": "0f5db391-abe3-462f-983d-6f3e3438f3ba", + "start": { + "$date": "2022-01-21T03:53:34.000Z" + }, + "end": { + "$date": "2022-01-21T04:22:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3afcf4d-008d-4123-910b-3aaec78c370f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T03:53:35.000Z" + }, + "end": { + "$date": "2022-01-21T04:22:20.000Z" + }, + "events": [ + { + "uuid": "ae195c84-a16b-4a95-bdbf-431582f8fd0e", + "start": { + "$date": "2022-01-21T03:53:35.000Z" + }, + "end": { + "$date": "2022-01-21T04:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2e86c9f-4cb8-49ed-89ae-f339cbc6ccab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-21T04:22:21.000Z" + }, + "end": { + "$date": "2022-01-21T04:22:28.000Z" + }, + "events": [ + { + "uuid": "93ff7565-fcec-4ebc-975d-e84475effaac", + "start": { + "$date": "2022-01-21T04:22:21.000Z" + }, + "end": { + "$date": "2022-01-21T04:22:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "13831fe1-04f2-4675-b060-8185a94f4a2e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T03:56:16.000Z" + }, + "end": { + "$date": "2022-01-21T04:11:44.000Z" + }, + "events": [ + { + "uuid": "c291c230-5ea3-4790-bae1-12b81a44abb1", + "start": { + "$date": "2022-01-21T03:56:16.000Z" + }, + "end": { + "$date": "2022-01-21T04:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ad5b990-eae6-4a0b-85c0-5137989a580f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-21T04:26:20.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:19.000Z" + }, + "events": [ + { + "uuid": "cf9114b9-e8e7-4ba5-800d-8e614e90a47f", + "start": { + "$date": "2022-01-21T04:26:20.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "37a14f2f-0bd9-47ee-b4f9-e92c6b179f7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-21T04:26:17.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:07.000Z" + }, + "events": [ + { + "uuid": "ee6266f3-9c0d-4a50-a1d9-9e29ffc7d976", + "start": { + "$date": "2022-01-21T04:26:17.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e629cac3-2c9e-4402-9e4b-47bd815471c3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T04:26:14.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:14.000Z" + }, + "events": [ + { + "uuid": "29d7de00-1e9f-4161-879a-de58f52d803c", + "start": { + "$date": "2022-01-21T04:26:14.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcf11b84-e98d-48fd-9405-76c4e493f88c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T04:26:10.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:11.000Z" + }, + "events": [ + { + "uuid": "7a7821dc-ec98-4f32-a9e3-4ae4570e19ea", + "start": { + "$date": "2022-01-21T04:26:10.000Z" + }, + "end": { + "$date": "2022-01-21T04:54:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06957acf-7a13-45a1-beb1-fd704c53ea4b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T04:59:01.000Z" + }, + "end": { + "$date": "2022-01-21T05:21:37.000Z" + }, + "events": [ + { + "uuid": "8d403fce-f493-4581-a963-4fd326afaf5c", + "start": { + "$date": "2022-01-21T04:59:01.000Z" + }, + "end": { + "$date": "2022-01-21T05:21:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0886220f-c59f-47ee-8679-d9be1e3a0fda", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T04:59:04.000Z" + }, + "end": { + "$date": "2022-01-21T05:21:36.000Z" + }, + "events": [ + { + "uuid": "139b559c-0841-4978-95d8-39b90efdaeef", + "start": { + "$date": "2022-01-21T04:59:04.000Z" + }, + "end": { + "$date": "2022-01-21T05:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "f2eeaa8c-ee0d-4e6b-a606-73e2efb75836", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T05:06:00.000Z" + }, + "end": { + "$date": "2022-01-21T05:45:12.000Z" + }, + "events": [ + { + "uuid": "36842bb2-f547-4f62-97c8-d7f0e0f06f6a", + "start": { + "$date": "2022-01-21T05:06:00.000Z" + }, + "end": { + "$date": "2022-01-21T05:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e83da9e-bfbc-4495-b5c1-1e464af535f7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T05:23:47.000Z" + }, + "end": { + "$date": "2022-01-21T05:40:12.000Z" + }, + "events": [ + { + "uuid": "b3872a8c-bd69-44cc-8aa0-2c95fde398c8", + "start": { + "$date": "2022-01-21T05:23:47.000Z" + }, + "end": { + "$date": "2022-01-21T05:40:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fecb2419-e59b-4826-86aa-ca2210dfa3cd", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T05:23:45.000Z" + }, + "end": { + "$date": "2022-01-21T05:40:06.000Z" + }, + "events": [ + { + "uuid": "b8e9b80e-f257-4af7-ab60-6c59d06918e2", + "start": { + "$date": "2022-01-21T05:23:45.000Z" + }, + "end": { + "$date": "2022-01-21T05:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "feb21a5c-f708-436d-aec1-372ef11a4f35", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T05:41:57.000Z" + }, + "end": { + "$date": "2022-01-21T05:54:28.000Z" + }, + "events": [ + { + "uuid": "9a86f9a9-e790-4ebb-a3f7-9c1d3e18cf79", + "start": { + "$date": "2022-01-21T05:41:57.000Z" + }, + "end": { + "$date": "2022-01-21T05:54:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4242be67-7cd7-4bd0-aa56-1062f8a04d85", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T05:41:50.000Z" + }, + "end": { + "$date": "2022-01-21T05:54:29.000Z" + }, + "events": [ + { + "uuid": "5c47edb5-579c-4c80-8c54-8cbf273df828", + "start": { + "$date": "2022-01-21T05:41:50.000Z" + }, + "end": { + "$date": "2022-01-21T05:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b542e0fe-9b05-4b28-8dbc-bf06849fcc21", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T05:45:17.000Z" + }, + "end": { + "$date": "2022-01-21T06:48:26.000Z" + }, + "events": [ + { + "uuid": "ff17dae6-8f14-4853-9c01-b60b55a08cc0", + "start": { + "$date": "2022-01-21T05:45:17.000Z" + }, + "end": { + "$date": "2022-01-21T06:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "830f78d2-09fe-418c-a4f7-0a35a00ec416", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-21T05:46:25.000Z" + }, + "end": { + "$date": "2022-01-21T06:48:47.000Z" + }, + "events": [ + { + "uuid": "9fe7ac8f-464f-4155-89a1-d2b77d5c0e8a", + "start": { + "$date": "2022-01-21T05:46:25.000Z" + }, + "end": { + "$date": "2022-01-21T06:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fbc5d49-a638-4b54-9f22-5eb80e62da03", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T05:56:32.000Z" + }, + "end": { + "$date": "2022-01-21T06:15:13.000Z" + }, + "events": [ + { + "uuid": "1df8141f-e5a4-4e19-a0e1-ef0289b0a89a", + "start": { + "$date": "2022-01-21T05:56:32.000Z" + }, + "end": { + "$date": "2022-01-21T06:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c401e25-f4ad-4cf0-b73e-1eb58888f2d5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T05:56:36.000Z" + }, + "end": { + "$date": "2022-01-21T06:15:14.000Z" + }, + "events": [ + { + "uuid": "01bf7665-c2ce-4ada-b8ed-874ab6f1949b", + "start": { + "$date": "2022-01-21T05:56:36.000Z" + }, + "end": { + "$date": "2022-01-21T06:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "118477cd-b975-4390-900c-88ac07274e08", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-21T06:17:33.000Z" + }, + "end": { + "$date": "2022-01-21T06:42:03.000Z" + }, + "events": [ + { + "uuid": "211d2d32-53bf-4c81-a07a-d6f9279f39a6", + "start": { + "$date": "2022-01-21T06:17:33.000Z" + }, + "end": { + "$date": "2022-01-21T06:42:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65fb46e8-7a33-4635-ae72-a63326353647", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-21T06:17:31.000Z" + }, + "end": { + "$date": "2022-01-21T06:42:07.000Z" + }, + "events": [ + { + "uuid": "50c8f26b-db98-46af-99c5-2f24ed9fed89", + "start": { + "$date": "2022-01-21T06:17:31.000Z" + }, + "end": { + "$date": "2022-01-21T06:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1293994d-3b1d-4a9d-959a-f10fb0ba0e3c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-21T18:05:19.000Z" + }, + "end": { + "$date": "2022-01-21T18:35:18.000Z" + }, + "events": [ + { + "uuid": "278abd22-a64d-44b5-a1ee-50ab854ff23c", + "start": { + "$date": "2022-01-21T18:05:19.000Z" + }, + "end": { + "$date": "2022-01-21T18:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38fe3ab1-1b13-4be6-b931-dc145d05b189", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-21T22:02:27.000Z" + }, + "end": { + "$date": "2022-01-21T22:18:00.000Z" + }, + "events": [ + { + "uuid": "7c32f20d-3e47-48ad-b158-1bf89cd10a47", + "start": { + "$date": "2022-01-21T22:02:27.000Z" + }, + "end": { + "$date": "2022-01-21T22:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d084c69f-41b9-4c36-aa30-44cbe10992c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-21T22:20:08.000Z" + }, + "end": { + "$date": "2022-01-21T22:41:16.000Z" + }, + "events": [ + { + "uuid": "688057d1-622c-45f6-a9a0-47db2b4b7aab", + "start": { + "$date": "2022-01-21T22:20:08.000Z" + }, + "end": { + "$date": "2022-01-21T22:41:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "9caa5eb2-0d4c-492f-9418-79ccbf98d3e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T22:21:17.000Z" + }, + "end": { + "$date": "2022-01-21T23:47:54.000Z" + }, + "events": [ + { + "uuid": "5c94740f-863b-4629-8c07-416ae9b077c5", + "start": { + "$date": "2022-01-21T22:21:17.000Z" + }, + "end": { + "$date": "2022-01-21T23:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "892962a9-a10a-415d-a185-d95a84b35445", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-21T22:28:50.000Z" + }, + "end": { + "$date": "2022-01-21T23:04:28.000Z" + }, + "events": [ + { + "uuid": "0894149d-dfaa-4234-90fa-6df1f2b50ee3", + "start": { + "$date": "2022-01-21T22:28:50.000Z" + }, + "end": { + "$date": "2022-01-21T23:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03b52a10-1756-4b51-b90c-05a2a3df2f83", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-21T22:59:12.000Z" + }, + "end": { + "$date": "2022-01-21T23:38:28.000Z" + }, + "events": [ + { + "uuid": "0d557273-7eb4-4864-8ceb-367bf2ebc5ce", + "start": { + "$date": "2022-01-21T22:59:12.000Z" + }, + "end": { + "$date": "2022-01-21T23:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22d642ee-321b-4cd4-9f67-aacd4d3da21d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-21T23:06:14.000Z" + }, + "end": { + "$date": "2022-01-21T23:38:37.000Z" + }, + "events": [ + { + "uuid": "63f784fa-bb6e-4b26-9f15-9415eeee0b29", + "start": { + "$date": "2022-01-21T23:06:14.000Z" + }, + "end": { + "$date": "2022-01-21T23:38:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fbb87bd-76a9-4a4e-86f4-072c8984dfde", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-21T23:44:19.000Z" + }, + "end": { + "$date": "2022-01-22T00:00:41.000Z" + }, + "events": [ + { + "uuid": "4e836375-465f-496b-af54-4218bfc16437", + "start": { + "$date": "2022-01-21T23:44:19.000Z" + }, + "end": { + "$date": "2022-01-22T00:00:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "16e20536-5748-4076-8e37-260264dbc8e5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-21T23:48:08.000Z" + }, + "end": { + "$date": "2022-01-22T00:10:24.000Z" + }, + "events": [ + { + "uuid": "8f81a489-ae74-493d-8341-0c6418d7c7cb", + "start": { + "$date": "2022-01-21T23:48:08.000Z" + }, + "end": { + "$date": "2022-01-22T00:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c298682-b857-4652-b80f-acf77d02ee9b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-22T00:03:31.000Z" + }, + "end": { + "$date": "2022-01-22T00:23:23.000Z" + }, + "events": [ + { + "uuid": "59d82ef1-007c-4ed6-be80-0e75fdafc465", + "start": { + "$date": "2022-01-22T00:03:31.000Z" + }, + "end": { + "$date": "2022-01-22T00:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4614b0a9-cd7e-47e4-9198-48f673563058", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T01:16:37.000Z" + }, + "end": { + "$date": "2022-01-22T01:35:08.000Z" + }, + "events": [ + { + "uuid": "1bb3925f-a688-4b0e-b233-6858514f5d22", + "start": { + "$date": "2022-01-22T01:16:37.000Z" + }, + "end": { + "$date": "2022-01-22T01:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b534478-20d7-4fc5-adc7-adc51a7b178e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-22T00:30:08.000Z" + }, + "end": { + "$date": "2022-01-22T00:54:05.000Z" + }, + "events": [ + { + "uuid": "63c6f0c4-2cef-437e-916b-f2c3258e175b", + "start": { + "$date": "2022-01-22T00:30:08.000Z" + }, + "end": { + "$date": "2022-01-22T00:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0bf906a8-d1ec-49f3-8fbb-fe813b421ee1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T02:05:00.000Z" + }, + "end": { + "$date": "2022-01-22T03:08:38.000Z" + }, + "events": [ + { + "uuid": "f9262b85-d306-4106-8a50-65145a4cea70", + "start": { + "$date": "2022-01-22T02:05:00.000Z" + }, + "end": { + "$date": "2022-01-22T03:08:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "eefdf167-f397-4d7f-adf6-251a2bfcc6f9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-22T02:02:34.000Z" + }, + "end": { + "$date": "2022-01-22T03:15:28.000Z" + }, + "events": [ + { + "uuid": "19491dbe-3a7c-426b-bdea-c9f40aa0d946", + "start": { + "$date": "2022-01-22T02:02:34.000Z" + }, + "end": { + "$date": "2022-01-22T03:15:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e3de34d8-0f4d-47b9-9971-0b6b99b5718f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T02:42:57.000Z" + }, + "end": { + "$date": "2022-01-22T03:30:38.000Z" + }, + "events": [ + { + "uuid": "fe3e0664-6481-4118-b9c9-8d1fc2e5e277", + "start": { + "$date": "2022-01-22T02:42:57.000Z" + }, + "end": { + "$date": "2022-01-22T03:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5741eed6-690e-4ac4-ad71-0fbe42a0929a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-22T02:47:18.000Z" + }, + "end": { + "$date": "2022-01-22T03:28:31.000Z" + }, + "events": [ + { + "uuid": "36aab120-7cdf-400e-849c-f79340cd11af", + "start": { + "$date": "2022-01-22T02:47:18.000Z" + }, + "end": { + "$date": "2022-01-22T03:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e4dcb776-51ca-43f6-9bf7-236cf79db324", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-22T02:48:34.000Z" + }, + "end": { + "$date": "2022-01-22T03:39:57.000Z" + }, + "events": [ + { + "uuid": "b8629770-badd-45fa-a4d5-3efecbd37b2c", + "start": { + "$date": "2022-01-22T02:48:34.000Z" + }, + "end": { + "$date": "2022-01-22T03:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "01fd0baf-db39-49f0-b081-ebe57b334368", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T03:09:38.000Z" + }, + "end": { + "$date": "2022-01-22T06:03:48.000Z" + }, + "events": [ + { + "uuid": "c5ecaf10-cac5-4422-9ed6-cd388643e63c", + "start": { + "$date": "2022-01-22T03:09:38.000Z" + }, + "end": { + "$date": "2022-01-22T03:57:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2552c986-91b6-4653-ba0e-c9edac215443", + "start": { + "$date": "2022-01-22T03:57:38.000Z" + }, + "end": { + "$date": "2022-01-22T04:26:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "44d6f8c1-54dc-4822-ae41-9ed5fe1ec638", + "start": { + "$date": "2022-01-22T04:26:38.000Z" + }, + "end": { + "$date": "2022-01-22T04:52:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "404725c0-9509-4153-b8ef-d085523e9545", + "start": { + "$date": "2022-01-22T04:52:38.000Z" + }, + "end": { + "$date": "2022-01-22T05:03:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6bffc812-8ebe-4d5d-9b44-233c84e77544", + "start": { + "$date": "2022-01-22T05:03:38.000Z" + }, + "end": { + "$date": "2022-01-22T06:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "214add42-39dd-48c6-ba26-656f08fccd19", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T03:10:15.000Z" + }, + "end": { + "$date": "2022-01-22T05:04:09.000Z" + }, + "events": [ + { + "uuid": "3db07abd-6cf1-4206-9efa-7c1d5ea4e24c", + "start": { + "$date": "2022-01-22T03:10:15.000Z" + }, + "end": { + "$date": "2022-01-22T05:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "0f0792ae-f184-44b7-b16f-135a491b8d93", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T03:31:31.000Z" + }, + "end": { + "$date": "2022-01-22T03:40:35.000Z" + }, + "events": [ + { + "uuid": "91b90412-3071-4667-a764-3dd6facfb049", + "start": { + "$date": "2022-01-22T03:31:31.000Z" + }, + "end": { + "$date": "2022-01-22T03:40:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1b91c6ff-6ea2-4efa-a41c-0743c54221c7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-22T03:40:27.000Z" + }, + "end": { + "$date": "2022-01-22T07:43:04.000Z" + }, + "events": [ + { + "uuid": "3648496b-360b-41e4-9335-e5c95aa3a05e", + "start": { + "$date": "2022-01-22T03:40:27.000Z" + }, + "end": { + "$date": "2022-01-22T07:43:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", + "uuid": "f2a27c46-51cf-4987-977f-b7e44a846711", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T03:51:03.000Z" + }, + "end": { + "$date": "2022-01-22T03:56:57.000Z" + }, + "events": [ + { + "uuid": "102b1b02-edd8-400d-a650-c05e95311387", + "start": { + "$date": "2022-01-22T03:51:03.000Z" + }, + "end": { + "$date": "2022-01-22T03:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", + "uuid": "d6e0f12b-3879-4167-b451-c30036f88dcd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T03:57:54.000Z" + }, + "end": { + "$date": "2022-01-22T04:34:14.000Z" + }, + "events": [ + { + "uuid": "121e9f20-b7a0-47a7-8a7e-7543798a1b8a", + "start": { + "$date": "2022-01-22T03:57:54.000Z" + }, + "end": { + "$date": "2022-01-22T04:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4fdccbaa-d5e6-47e6-bff1-58594659e7ef", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-22T04:13:24.000Z" + }, + "end": { + "$date": "2022-01-22T04:26:25.000Z" + }, + "events": [ + { + "uuid": "efb2fde7-1c7a-4b7f-a93b-9328cfbfde98", + "start": { + "$date": "2022-01-22T04:13:24.000Z" + }, + "end": { + "$date": "2022-01-22T04:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "163e337f-b2aa-4b06-8457-e5b041f9d7dc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-22T04:36:18.000Z" + }, + "end": { + "$date": "2022-01-22T06:51:06.000Z" + }, + "events": [ + { + "uuid": "9dd5510e-0833-42ac-bde0-4e646f274835", + "start": { + "$date": "2022-01-22T04:36:18.000Z" + }, + "end": { + "$date": "2022-01-22T06:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5fa0fef1-3d8f-4c52-80e7-de70038a7246", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T04:37:22.000Z" + }, + "end": { + "$date": "2022-01-22T05:15:04.000Z" + }, + "events": [ + { + "uuid": "8a24408a-e9c4-44cb-ab2a-8acbd1e6b8b1", + "start": { + "$date": "2022-01-22T04:37:22.000Z" + }, + "end": { + "$date": "2022-01-22T05:15:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "89b5e987-2778-4d6b-ba70-0ae733af0b35", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T05:12:00.000Z" + }, + "end": { + "$date": "2022-01-22T05:12:15.000Z" + }, + "events": [ + { + "uuid": "b6e308ee-ba42-4b4b-bdc8-210da9a3e5e8", + "start": { + "$date": "2022-01-22T05:12:00.000Z" + }, + "end": { + "$date": "2022-01-22T05:12:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "32ff4d08-bccc-4032-81a3-54bebd8a2459", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T05:12:58.000Z" + }, + "end": { + "$date": "2022-01-22T06:18:25.000Z" + }, + "events": [ + { + "uuid": "83d731ef-0104-4f87-ab66-6d179d7202be", + "start": { + "$date": "2022-01-22T05:12:58.000Z" + }, + "end": { + "$date": "2022-01-22T06:18:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ac8afa93-8eb4-4e85-aaeb-ac15c449d4cd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T05:16:21.000Z" + }, + "end": { + "$date": "2022-01-22T05:53:05.000Z" + }, + "events": [ + { + "uuid": "248fbe5f-cedb-4997-97c0-d969b2c6bd79", + "start": { + "$date": "2022-01-22T05:16:21.000Z" + }, + "end": { + "$date": "2022-01-22T05:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "399f6e6c-782d-46d1-9657-07130c63f526", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-22T05:40:29.000Z" + }, + "end": { + "$date": "2022-01-22T06:45:21.000Z" + }, + "events": [ + { + "uuid": "5f1beafd-7221-428d-8fb8-801999cdf518", + "start": { + "$date": "2022-01-22T05:40:29.000Z" + }, + "end": { + "$date": "2022-01-22T06:45:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "7ebeab21-a7c0-4f01-9220-508199b202f2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-22T05:47:37.000Z" + }, + "end": { + "$date": "2022-01-22T05:58:00.000Z" + }, + "events": [ + { + "uuid": "4b77d111-5687-4d6a-9ad6-d77f0ae1a774", + "start": { + "$date": "2022-01-22T05:47:37.000Z" + }, + "end": { + "$date": "2022-01-22T05:58:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "63dfee21-fa47-4acf-8a79-c642bfcc658b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-22T05:48:52.000Z" + }, + "end": { + "$date": "2022-01-22T06:17:54.000Z" + }, + "events": [ + { + "uuid": "5183bcf0-6343-4642-8aa0-84dc8ad0e0b7", + "start": { + "$date": "2022-01-22T05:48:52.000Z" + }, + "end": { + "$date": "2022-01-22T06:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "df8d63fe-fb3e-4725-8d7d-1d7fb8583ad4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T06:16:58.000Z" + }, + "end": { + "$date": "2022-01-22T06:33:04.000Z" + }, + "events": [ + { + "uuid": "873729ce-433e-49d9-ab23-38ca5aa8652e", + "start": { + "$date": "2022-01-22T06:16:58.000Z" + }, + "end": { + "$date": "2022-01-22T06:33:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "f9181552-595f-4bf4-9fdb-70f9ccafe1fb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-22T06:51:39.000Z" + }, + "end": { + "$date": "2022-01-22T09:26:40.000Z" + }, + "events": [ + { + "uuid": "8b5ea7f0-1337-47d1-8f05-ccbdfa8ae548", + "start": { + "$date": "2022-01-22T06:51:39.000Z" + }, + "end": { + "$date": "2022-01-22T09:26:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "8180a4d9-f558-42f4-a43a-dccd25a54d91", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T06:28:07.000Z" + }, + "end": { + "$date": "2022-01-22T09:03:34.000Z" + }, + "events": [ + { + "uuid": "91bb0646-6994-4824-afa7-20cdbd844aa2", + "start": { + "$date": "2022-01-22T06:28:07.000Z" + }, + "end": { + "$date": "2022-01-22T09:03:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "2a500cc7-b31d-4ff8-93d0-f6a0e6706b62", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T06:33:08.000Z" + }, + "end": { + "$date": "2022-01-22T07:20:41.000Z" + }, + "events": [ + { + "uuid": "9ef6052a-57ed-4c58-a4df-dd0ee0bc57f9", + "start": { + "$date": "2022-01-22T06:33:08.000Z" + }, + "end": { + "$date": "2022-01-22T07:20:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cae3933f-8834-4c33-aff1-cb668f7cc26f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-22T06:47:56.000Z" + }, + "end": { + "$date": "2022-01-22T09:27:19.000Z" + }, + "events": [ + { + "uuid": "6f086d3f-c016-4e9b-9f04-4829988a4b3f", + "start": { + "$date": "2022-01-22T06:47:56.000Z" + }, + "end": { + "$date": "2022-01-22T09:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "723b6389-75d1-4b4a-b73f-207ba7d88b6e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-22T07:27:56.000Z" + }, + "end": { + "$date": "2022-01-22T07:46:32.000Z" + }, + "events": [ + { + "uuid": "9d4f10b8-3747-456d-be71-c6f2444bd880", + "start": { + "$date": "2022-01-22T07:27:56.000Z" + }, + "end": { + "$date": "2022-01-22T07:46:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "a60ced46-c989-401d-94cb-8506961f380f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T07:43:23.000Z" + }, + "end": { + "$date": "2022-01-22T07:50:13.000Z" + }, + "events": [ + { + "uuid": "5a0c7ca8-f848-4119-88bf-5b64fe988dfa", + "start": { + "$date": "2022-01-22T07:43:23.000Z" + }, + "end": { + "$date": "2022-01-22T07:50:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2d5f8f3-9e9d-41f8-bbeb-b2ec9c9742b2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-22T07:48:56.000Z" + }, + "end": { + "$date": "2022-01-22T08:11:03.000Z" + }, + "events": [ + { + "uuid": "861e382d-0ec7-4637-8391-aa8ad46e5368", + "start": { + "$date": "2022-01-22T07:48:56.000Z" + }, + "end": { + "$date": "2022-01-22T08:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "bca6ac41-b4d5-4ecc-a8c4-346c34354859", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T07:50:28.000Z" + }, + "end": { + "$date": "2022-01-22T08:21:44.000Z" + }, + "events": [ + { + "uuid": "03fc6626-fb3e-432e-af00-0dea2af87fdb", + "start": { + "$date": "2022-01-22T07:50:28.000Z" + }, + "end": { + "$date": "2022-01-22T08:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b77cdc7-b7eb-4383-8bef-b39a8471e106", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-22T08:04:30.000Z" + }, + "end": { + "$date": "2022-01-22T08:36:01.000Z" + }, + "events": [ + { + "uuid": "2335f757-09a0-4c11-8ebf-4cebc8b08582", + "start": { + "$date": "2022-01-22T08:04:30.000Z" + }, + "end": { + "$date": "2022-01-22T08:36:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "186e0ceb-302e-4c43-b1cb-04687e8db901", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T08:33:40.000Z" + }, + "end": { + "$date": "2022-01-22T09:02:47.000Z" + }, + "events": [ + { + "uuid": "bb3de424-e233-4356-906d-1e378cc939d4", + "start": { + "$date": "2022-01-22T08:33:40.000Z" + }, + "end": { + "$date": "2022-01-22T09:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e790c486-6cc1-4227-817a-ab1be79454b4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-22T09:11:20.000Z" + }, + "end": { + "$date": "2022-01-22T09:39:35.000Z" + }, + "events": [ + { + "uuid": "3970ae60-e8d0-4c7a-9f04-20ab16b30754", + "start": { + "$date": "2022-01-22T09:11:20.000Z" + }, + "end": { + "$date": "2022-01-22T09:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aac8ee29-804f-45b2-9113-bbf679cbd44b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-22T09:43:56.000Z" + }, + "end": { + "$date": "2022-01-22T10:13:56.000Z" + }, + "events": [ + { + "uuid": "d3de2710-6921-45e4-ac2f-2da7ce4ee0a1", + "start": { + "$date": "2022-01-22T09:43:56.000Z" + }, + "end": { + "$date": "2022-01-22T10:13:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "07df17a8-4d12-4674-b7cb-be0bfc6ce6cc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-22T11:48:25.000Z" + }, + "end": { + "$date": "2022-01-22T13:12:08.000Z" + }, + "events": [ + { + "uuid": "7124bc0d-423c-4645-bf81-a919dd413c58", + "start": { + "$date": "2022-01-22T11:48:25.000Z" + }, + "end": { + "$date": "2022-01-22T13:12:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "4cf32757-a01b-4fcd-8ef1-a90a24b6973c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T15:33:14.000Z" + }, + "end": { + "$date": "2022-01-22T16:35:37.000Z" + }, + "events": [ + { + "uuid": "bdbf7e76-2ad7-499a-bf5d-7bd551d26577", + "start": { + "$date": "2022-01-22T15:33:14.000Z" + }, + "end": { + "$date": "2022-01-22T16:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "c2fce7bd-4d78-43e8-a049-34fb812e9306", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T16:34:21.000Z" + }, + "end": { + "$date": "2022-01-22T16:35:41.000Z" + }, + "events": [ + { + "uuid": "f60afa65-635a-4568-8e5c-bf27562fde71", + "start": { + "$date": "2022-01-22T16:34:21.000Z" + }, + "end": { + "$date": "2022-01-22T16:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "e63d9ed8-703c-4655-8d60-458a9dfce9a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T16:35:47.000Z" + }, + "end": { + "$date": "2022-01-22T16:59:08.000Z" + }, + "events": [ + { + "uuid": "10843669-9a4a-4f5e-8844-4efb63a51dc9", + "start": { + "$date": "2022-01-22T16:35:47.000Z" + }, + "end": { + "$date": "2022-01-22T16:59:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "9eab0290-077c-4b2b-8396-e8a574a99bf1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T16:37:05.000Z" + }, + "end": { + "$date": "2022-01-22T16:42:05.000Z" + }, + "events": [ + { + "uuid": "ff103d08-0c27-4ac9-a4c9-9c3d855dd960", + "start": { + "$date": "2022-01-22T16:37:05.000Z" + }, + "end": { + "$date": "2022-01-22T16:42:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "5b0e1a25-273c-4614-a666-e71f88f92c15", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T16:44:58.000Z" + }, + "end": { + "$date": "2022-01-22T19:44:42.000Z" + }, + "events": [ + { + "uuid": "bea2b36e-3751-4193-b23e-67f294bc7ca6", + "start": { + "$date": "2022-01-22T16:44:58.000Z" + }, + "end": { + "$date": "2022-01-22T19:44:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "160fed23-b86a-4413-9344-789b0c6cccc8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T17:03:44.000Z" + }, + "end": { + "$date": "2022-01-22T17:45:45.000Z" + }, + "events": [ + { + "uuid": "27893621-32ea-4f03-a368-2bb838daed4e", + "start": { + "$date": "2022-01-22T17:03:44.000Z" + }, + "end": { + "$date": "2022-01-22T17:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "f420310f-de30-4dda-ab33-8af42344a347", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-22T17:19:27.000Z" + }, + "end": { + "$date": "2022-01-22T17:30:28.000Z" + }, + "events": [ + { + "uuid": "8d42a1f7-a7b4-447f-82f7-382b36ec785c", + "start": { + "$date": "2022-01-22T17:19:27.000Z" + }, + "end": { + "$date": "2022-01-22T17:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18b9dfc3-449b-41ed-9614-507ab6e0b06a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-22T17:35:28.000Z" + }, + "end": { + "$date": "2022-01-22T17:58:14.000Z" + }, + "events": [ + { + "uuid": "9686e2d6-7041-4429-88dc-04a267b0444e", + "start": { + "$date": "2022-01-22T17:35:28.000Z" + }, + "end": { + "$date": "2022-01-22T17:58:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "c5d3f4cc-4c41-4071-bfe3-b678112a2dfe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T17:47:45.000Z" + }, + "end": { + "$date": "2022-01-22T19:44:51.000Z" + }, + "events": [ + { + "uuid": "c85c725c-c9bb-4cfa-851f-ae9a25d86f12", + "start": { + "$date": "2022-01-22T17:47:45.000Z" + }, + "end": { + "$date": "2022-01-22T19:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81cfe61a-4b7c-4c14-b4ed-ba333f157245", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-22T18:10:35.000Z" + }, + "end": { + "$date": "2022-01-22T18:37:06.000Z" + }, + "events": [ + { + "uuid": "a312b45f-56a5-43fb-9e31-0afd4eeb8410", + "start": { + "$date": "2022-01-22T18:10:35.000Z" + }, + "end": { + "$date": "2022-01-22T18:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb3f070d-5755-4a1b-9226-c71046c192ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-22T18:10:30.000Z" + }, + "end": { + "$date": "2022-01-22T18:37:11.000Z" + }, + "events": [ + { + "uuid": "7fccfcc7-ee37-4001-a84a-f367bed85729", + "start": { + "$date": "2022-01-22T18:10:30.000Z" + }, + "end": { + "$date": "2022-01-22T18:37:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4d30ab6-2dd5-49c8-b2a9-06da0ff9624d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-22T18:38:08.000Z" + }, + "end": { + "$date": "2022-01-22T18:49:53.000Z" + }, + "events": [ + { + "uuid": "9cec2489-32dc-4b11-bf6c-d5beb4d1954e", + "start": { + "$date": "2022-01-22T18:38:08.000Z" + }, + "end": { + "$date": "2022-01-22T18:49:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2eebb3ea-3440-4883-961a-c7d6350e6449", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-22T18:48:37.000Z" + }, + "end": { + "$date": "2022-01-22T19:11:24.000Z" + }, + "events": [ + { + "uuid": "d19e33ed-801f-4ab1-a53a-e7d9b81725c5", + "start": { + "$date": "2022-01-22T18:48:37.000Z" + }, + "end": { + "$date": "2022-01-22T19:11:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba2ba010-3cf7-4d3c-ac59-aa424947e58e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-22T19:02:52.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:13.000Z" + }, + "events": [ + { + "uuid": "9394b46e-c949-4887-8100-18731ba0c411", + "start": { + "$date": "2022-01-22T19:02:52.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fca0606-21b3-4df7-9389-3b98c88d28ed", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-22T19:02:52.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:14.000Z" + }, + "events": [ + { + "uuid": "35383b62-5c05-4718-9158-b7344557edb5", + "start": { + "$date": "2022-01-22T19:02:52.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed3d83e9-2124-4362-b8d9-b25bd75b7436", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-22T19:03:02.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:19.000Z" + }, + "events": [ + { + "uuid": "e42ffdb1-e683-4a68-a928-c2dbff07b8ee", + "start": { + "$date": "2022-01-22T19:03:02.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d1f60ee-7117-4644-9065-3cadaa7c509a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-22T19:14:26.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:51.000Z" + }, + "events": [ + { + "uuid": "8557a845-edab-4768-b4ec-5a4217390452", + "start": { + "$date": "2022-01-22T19:14:26.000Z" + }, + "end": { + "$date": "2022-01-22T19:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81b23219-a837-4082-a327-ada5da69ec99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-22T19:39:48.000Z" + }, + "end": { + "$date": "2022-01-22T20:07:04.000Z" + }, + "events": [ + { + "uuid": "a68b5bd2-d985-46ba-abd4-36a96c3256c4", + "start": { + "$date": "2022-01-22T19:39:48.000Z" + }, + "end": { + "$date": "2022-01-22T20:07:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfe3edfb-f6b6-43fe-83e1-4b441b68117a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-22T19:39:58.000Z" + }, + "end": { + "$date": "2022-01-22T20:07:09.000Z" + }, + "events": [ + { + "uuid": "e37b3e19-a86e-4e47-a992-5c4c75d5a4df", + "start": { + "$date": "2022-01-22T19:39:58.000Z" + }, + "end": { + "$date": "2022-01-22T20:07:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a46df83-07eb-4f4f-bcbe-ef66b7ab5d2f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-22T19:39:58.000Z" + }, + "end": { + "$date": "2022-01-22T20:07:14.000Z" + }, + "events": [ + { + "uuid": "05a4bf15-eb85-4c4c-a237-cca465481568", + "start": { + "$date": "2022-01-22T19:39:58.000Z" + }, + "end": { + "$date": "2022-01-22T20:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "07d42e08-16f9-42a7-b8ae-1ebc72ace116", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T19:45:02.000Z" + }, + "end": { + "$date": "2022-01-22T19:48:18.000Z" + }, + "events": [ + { + "uuid": "e025e4f5-ba59-4de8-a0c1-480e98869d03", + "start": { + "$date": "2022-01-22T19:45:02.000Z" + }, + "end": { + "$date": "2022-01-22T19:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "018ae26b-5f0a-4781-893f-082bd8908425", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T19:45:26.000Z" + }, + "end": { + "$date": "2022-01-22T19:49:01.000Z" + }, + "events": [ + { + "uuid": "8139536c-942c-4726-b6c5-39f4e6a30bdb", + "start": { + "$date": "2022-01-22T19:45:26.000Z" + }, + "end": { + "$date": "2022-01-22T19:49:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "ae2ee4c9-34ca-40d3-8cae-de201775e063", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T19:50:47.000Z" + }, + "end": { + "$date": "2022-01-22T19:53:18.000Z" + }, + "events": [ + { + "uuid": "107543e9-a27b-46d8-a720-2233339032da", + "start": { + "$date": "2022-01-22T19:50:47.000Z" + }, + "end": { + "$date": "2022-01-22T19:53:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "914da5e3-df8e-4841-bb9b-810c5beddb89", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-22T20:26:33.000Z" + }, + "end": { + "$date": "2022-01-22T20:54:37.000Z" + }, + "events": [ + { + "uuid": "9cbced27-6547-4bed-9717-39c362788a5e", + "start": { + "$date": "2022-01-22T20:26:33.000Z" + }, + "end": { + "$date": "2022-01-22T20:38:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d2202fb-324f-4a52-ae2a-c44703d43d7b", + "start": { + "$date": "2022-01-22T20:38:33.000Z" + }, + "end": { + "$date": "2022-01-22T20:41:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3912fc20-50ca-4c77-a24b-260755ce06e6", + "start": { + "$date": "2022-01-22T20:41:33.000Z" + }, + "end": { + "$date": "2022-01-22T20:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "45fda9c8-45cf-46eb-b690-f4ba0bca966e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T20:16:40.000Z" + }, + "end": { + "$date": "2022-01-22T20:52:13.000Z" + }, + "events": [ + { + "uuid": "f43823fb-c492-49d1-aea0-df2dd6d23b18", + "start": { + "$date": "2022-01-22T20:16:40.000Z" + }, + "end": { + "$date": "2022-01-22T20:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "cf08c31a-a7b7-4278-83f0-213467a76fb6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T20:21:19.000Z" + }, + "end": { + "$date": "2022-01-22T20:25:04.000Z" + }, + "events": [ + { + "uuid": "142d83e9-ff9e-4255-8f18-899d0ad355dc", + "start": { + "$date": "2022-01-22T20:21:19.000Z" + }, + "end": { + "$date": "2022-01-22T20:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "dc2aad29-2975-40d5-be1b-9569032bbd77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T20:39:35.000Z" + }, + "end": { + "$date": "2022-01-22T20:50:21.000Z" + }, + "events": [ + { + "uuid": "f4116aa1-7e68-46bd-abe9-3ff73736ab82", + "start": { + "$date": "2022-01-22T20:39:35.000Z" + }, + "end": { + "$date": "2022-01-22T20:50:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", + "uuid": "00e9eacc-7ba2-438b-b4e3-766facf07d5c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T20:56:44.000Z" + }, + "end": { + "$date": "2022-01-22T20:59:07.000Z" + }, + "events": [ + { + "uuid": "1c7dcd2b-3782-4bc3-8253-239833a10ef4", + "start": { + "$date": "2022-01-22T20:56:44.000Z" + }, + "end": { + "$date": "2022-01-22T20:59:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", + "uuid": "80a88050-bfbb-4f71-93b7-f5a7b73a3f10", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T21:05:50.000Z" + }, + "end": { + "$date": "2022-01-22T21:08:03.000Z" + }, + "events": [ + { + "uuid": "dc4e797d-3ad6-43b5-88b7-f5d58dba8897", + "start": { + "$date": "2022-01-22T21:05:50.000Z" + }, + "end": { + "$date": "2022-01-22T21:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", + "uuid": "738f1b2d-2f23-4bb6-9918-53b8149a110a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T21:15:53.000Z" + }, + "end": { + "$date": "2022-01-22T21:19:05.000Z" + }, + "events": [ + { + "uuid": "9fdbdb68-5ffc-441b-b946-9f88cff6e3fe", + "start": { + "$date": "2022-01-22T21:15:53.000Z" + }, + "end": { + "$date": "2022-01-22T21:19:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e6f31d9-b8ba-4a83-a81a-a8b1342a9d38", + "uuid": "1623bdd9-416e-44d2-8a5f-f46ce084baa4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T21:15:53.000Z" + }, + "end": { + "$date": "2022-01-22T21:22:30.000Z" + }, + "events": [ + { + "uuid": "4fe00c7c-cd0b-4d6a-a9b3-26a5f5b49f09", + "start": { + "$date": "2022-01-22T21:15:53.000Z" + }, + "end": { + "$date": "2022-01-22T21:22:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", + "uuid": "de8f4ba3-811f-4c96-b5ca-cb2b27ce8856", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T21:25:27.000Z" + }, + "end": { + "$date": "2022-01-22T21:26:45.000Z" + }, + "events": [ + { + "uuid": "44752309-0fb2-4af3-8191-bc3ab504c6be", + "start": { + "$date": "2022-01-22T21:25:27.000Z" + }, + "end": { + "$date": "2022-01-22T21:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e6f31d9-b8ba-4a83-a81a-a8b1342a9d38", + "uuid": "7f611059-aeb9-4988-80b1-100c3948a309", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-22T21:25:27.000Z" + }, + "end": { + "$date": "2022-01-22T23:24:29.000Z" + }, + "events": [ + { + "uuid": "cb67fd5b-b033-4396-b13e-d833bd79c319", + "start": { + "$date": "2022-01-22T21:25:27.000Z" + }, + "end": { + "$date": "2022-01-22T23:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "a6305643-12e4-4363-9592-d6a40a6700ad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-22T21:59:58.000Z" + }, + "end": { + "$date": "2022-01-22T22:06:54.000Z" + }, + "events": [ + { + "uuid": "31b432b1-759d-4409-b3c6-1638421297d6", + "start": { + "$date": "2022-01-22T21:59:58.000Z" + }, + "end": { + "$date": "2022-01-22T22:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "48509baf-1b53-422a-9e1d-9f47d377997c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-22T23:44:18.000Z" + }, + "end": { + "$date": "2022-01-23T00:25:28.000Z" + }, + "events": [ + { + "uuid": "1b5e76c9-3499-4788-9fa0-714de481f3f2", + "start": { + "$date": "2022-01-22T23:44:18.000Z" + }, + "end": { + "$date": "2022-01-23T00:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6cfd3f18-c523-402e-ac94-dca0146f5154", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T01:00:04.000Z" + }, + "end": { + "$date": "2022-01-23T01:40:25.000Z" + }, + "events": [ + { + "uuid": "0fd5dfe2-dd1f-4fd8-a29b-d5b4e113f007", + "start": { + "$date": "2022-01-23T01:00:04.000Z" + }, + "end": { + "$date": "2022-01-23T01:12:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ea488f9-fa9a-41e6-a491-f8ed979ba357", + "start": { + "$date": "2022-01-23T01:12:04.000Z" + }, + "end": { + "$date": "2022-01-23T01:40:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "08e4d70c-fe5b-4706-b89f-3f70c0f76cdd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T01:41:21.000Z" + }, + "end": { + "$date": "2022-01-23T01:42:32.000Z" + }, + "events": [ + { + "uuid": "96dfb9f6-9c7f-4967-9200-259c8aa74ce7", + "start": { + "$date": "2022-01-23T01:41:21.000Z" + }, + "end": { + "$date": "2022-01-23T01:42:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "d1574bd7-7769-4c00-95a0-207b61fc44b9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-23T01:49:44.000Z" + }, + "end": { + "$date": "2022-01-23T03:04:00.000Z" + }, + "events": [ + { + "uuid": "7a72a41e-4eba-482a-9b6a-752d56d9cb66", + "start": { + "$date": "2022-01-23T01:49:44.000Z" + }, + "end": { + "$date": "2022-01-23T02:18:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bbf261f-0d17-4e70-938d-f3907e457cbe", + "start": { + "$date": "2022-01-23T02:18:44.000Z" + }, + "end": { + "$date": "2022-01-23T02:23:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "440df8a6-ae44-4409-82a5-2d4491501966", + "start": { + "$date": "2022-01-23T02:23:44.000Z" + }, + "end": { + "$date": "2022-01-23T03:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "d23a2314-6ff9-47e4-937b-3a7466a00b7f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T02:37:22.000Z" + }, + "end": { + "$date": "2022-01-23T03:10:45.000Z" + }, + "events": [ + { + "uuid": "0435aae8-9a67-4368-95df-a5f86e6d23f3", + "start": { + "$date": "2022-01-23T02:37:22.000Z" + }, + "end": { + "$date": "2022-01-23T03:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "736a989b-a0bc-459d-ba67-4c5cafa88bb0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-23T02:46:42.000Z" + }, + "end": { + "$date": "2022-01-23T02:58:01.000Z" + }, + "events": [ + { + "uuid": "1357aba5-6393-439d-9c6c-698cf4e226fb", + "start": { + "$date": "2022-01-23T02:46:42.000Z" + }, + "end": { + "$date": "2022-01-23T02:58:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "0df17eb7-89bc-4db8-bc7a-c46bd0f95d4a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-23T02:59:11.000Z" + }, + "end": { + "$date": "2022-01-23T04:31:05.000Z" + }, + "events": [ + { + "uuid": "a34c6106-4461-4184-974e-6d2ff3aaedc5", + "start": { + "$date": "2022-01-23T02:59:11.000Z" + }, + "end": { + "$date": "2022-01-23T04:31:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "6a8f4939-df44-4fd3-b777-b83a8143b060", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T03:11:30.000Z" + }, + "end": { + "$date": "2022-01-23T03:59:55.000Z" + }, + "events": [ + { + "uuid": "7559c093-f0f7-48a1-892b-9e82c33726e0", + "start": { + "$date": "2022-01-23T03:11:30.000Z" + }, + "end": { + "$date": "2022-01-23T03:59:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "c6e3bad5-47b0-4e40-b499-f7b4ef18d957", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-23T03:13:50.000Z" + }, + "end": { + "$date": "2022-01-23T05:59:17.000Z" + }, + "events": [ + { + "uuid": "c85014e4-4e2a-4419-a47e-abb8aa875db5", + "start": { + "$date": "2022-01-23T03:13:50.000Z" + }, + "end": { + "$date": "2022-01-23T05:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "c715b01d-1043-41e9-ae8b-df8c08f03c89", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-23T03:32:00.000Z" + }, + "end": { + "$date": "2022-01-23T07:19:59.000Z" + }, + "events": [ + { + "uuid": "07f00dd5-a2be-474a-950f-2ceb0cf707f5", + "start": { + "$date": "2022-01-23T03:32:00.000Z" + }, + "end": { + "$date": "2022-01-23T07:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "a28b9d76-7c7b-4e6d-9530-33e501f2fc9a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T04:00:34.000Z" + }, + "end": { + "$date": "2022-01-23T04:01:45.000Z" + }, + "events": [ + { + "uuid": "ada1858d-b8fe-4c3c-aedb-b9021ee7a6a7", + "start": { + "$date": "2022-01-23T04:00:34.000Z" + }, + "end": { + "$date": "2022-01-23T04:01:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "a54ba46f-656f-4c48-aaf5-d3255a7c1f60", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T04:02:49.000Z" + }, + "end": { + "$date": "2022-01-23T05:59:17.000Z" + }, + "events": [ + { + "uuid": "c269a181-c6e8-4e77-b98d-0e22f9c14069", + "start": { + "$date": "2022-01-23T04:02:49.000Z" + }, + "end": { + "$date": "2022-01-23T05:59:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "04990c40-9725-46d4-a396-1c7cb56064de", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T04:46:45.000Z" + }, + "end": { + "$date": "2022-01-23T07:06:59.000Z" + }, + "events": [ + { + "uuid": "cb96ffb9-3777-49b2-902f-558fa7930aee", + "start": { + "$date": "2022-01-23T04:46:45.000Z" + }, + "end": { + "$date": "2022-01-23T07:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "089a050c-2658-4942-b5ec-ca505ce0c6ee", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T05:14:49.000Z" + }, + "end": { + "$date": "2022-01-23T05:39:40.000Z" + }, + "events": [ + { + "uuid": "18fd4358-959a-4da5-ac42-873b0748c169", + "start": { + "$date": "2022-01-23T05:14:49.000Z" + }, + "end": { + "$date": "2022-01-23T05:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ccc561af-b8be-4c20-868e-a4de3b614a42", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-23T05:12:16.000Z" + }, + "end": { + "$date": "2022-01-23T05:25:58.000Z" + }, + "events": [ + { + "uuid": "917761af-6b03-4f9a-99f9-181ff03952f0", + "start": { + "$date": "2022-01-23T05:12:16.000Z" + }, + "end": { + "$date": "2022-01-23T05:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04f230af-0623-405a-8c8d-e00e9704f708", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T05:41:34.000Z" + }, + "end": { + "$date": "2022-01-23T05:59:15.000Z" + }, + "events": [ + { + "uuid": "bd3a4760-1a78-49f8-b265-2afa812bba1c", + "start": { + "$date": "2022-01-23T05:41:34.000Z" + }, + "end": { + "$date": "2022-01-23T05:59:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ead1f8b-f492-4cfc-af9c-e6651c2e4937", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T06:01:15.000Z" + }, + "end": { + "$date": "2022-01-23T06:25:56.000Z" + }, + "events": [ + { + "uuid": "e237455d-5ad3-422f-a8d3-9463b9b83a10", + "start": { + "$date": "2022-01-23T06:01:15.000Z" + }, + "end": { + "$date": "2022-01-23T06:25:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cc9188e9-3042-4785-9288-c24d3ce0b7e6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-23T05:59:56.000Z" + }, + "end": { + "$date": "2022-01-23T08:48:45.000Z" + }, + "events": [ + { + "uuid": "0950c62e-dd69-42e9-be19-2ba7d2fb630c", + "start": { + "$date": "2022-01-23T05:59:56.000Z" + }, + "end": { + "$date": "2022-01-23T08:48:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3ad7559e-334c-4a01-b3f3-dfb8a0f3521f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-23T06:08:59.000Z" + }, + "end": { + "$date": "2022-01-23T07:31:37.000Z" + }, + "events": [ + { + "uuid": "1ff31608-de8d-4487-9d70-511a35a0068a", + "start": { + "$date": "2022-01-23T06:08:59.000Z" + }, + "end": { + "$date": "2022-01-23T07:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4528a3c7-d4ac-42c4-bc3d-d608a97abef8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T06:28:31.000Z" + }, + "end": { + "$date": "2022-01-23T06:46:17.000Z" + }, + "events": [ + { + "uuid": "65fc8462-c606-4cb5-89bf-3f6936e9334f", + "start": { + "$date": "2022-01-23T06:28:31.000Z" + }, + "end": { + "$date": "2022-01-23T06:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da1c60bd-696a-42e6-b745-1761355169aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T06:03:31.000Z" + }, + "end": { + "$date": "2022-01-23T07:50:52.000Z" + }, + "events": [ + { + "uuid": "993f8996-155f-4002-b444-400c5d83ad18", + "start": { + "$date": "2022-01-23T06:03:31.000Z" + }, + "end": { + "$date": "2022-01-23T07:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "46579200-c999-4242-ad06-81f6dc63503c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-23T07:20:06.000Z" + }, + "end": { + "$date": "2022-01-23T10:02:07.000Z" + }, + "events": [ + { + "uuid": "04d331da-e92a-476b-8201-55ba81b19777", + "start": { + "$date": "2022-01-23T07:20:06.000Z" + }, + "end": { + "$date": "2022-01-23T10:02:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a283bdb-5966-4a65-986e-94d618549451", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T08:36:56.000Z" + }, + "end": { + "$date": "2022-01-23T09:02:10.000Z" + }, + "events": [ + { + "uuid": "cd8e810b-e257-406a-946a-05c10caac286", + "start": { + "$date": "2022-01-23T08:36:56.000Z" + }, + "end": { + "$date": "2022-01-23T09:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2688b62d-e0f2-418a-b671-11112bedd998", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-23T09:01:42.000Z" + }, + "end": { + "$date": "2022-01-23T10:44:21.000Z" + }, + "events": [ + { + "uuid": "9e415973-7def-4634-b8d5-85da2d3068b1", + "start": { + "$date": "2022-01-23T09:01:42.000Z" + }, + "end": { + "$date": "2022-01-23T10:44:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ecb2c38-3761-438a-b8c1-3b33bb00db81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T09:09:32.000Z" + }, + "end": { + "$date": "2022-01-23T09:53:27.000Z" + }, + "events": [ + { + "uuid": "c07da0dd-3c01-4e0d-a7e9-74f1c60c51a2", + "start": { + "$date": "2022-01-23T09:09:32.000Z" + }, + "end": { + "$date": "2022-01-23T09:53:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "67de8d66-59e9-476e-a4e1-738b037843a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-23T13:07:03.000Z" + }, + "end": { + "$date": "2022-01-23T14:03:22.000Z" + }, + "events": [ + { + "uuid": "22383865-2fb5-41f8-a903-4bbd2ddd4b4d", + "start": { + "$date": "2022-01-23T13:07:03.000Z" + }, + "end": { + "$date": "2022-01-23T14:03:22.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3f3a2721-fc93-489b-b576-deca01389dfe", + "uuid": "8723902e-5f60-4fe6-ae65-5158750e71e4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-23T15:32:38.000Z" + }, + "end": { + "$date": "2022-01-23T15:53:09.000Z" + }, + "events": [ + { + "uuid": "39b39699-26a2-4051-a594-a368880d9cd3", + "start": { + "$date": "2022-01-23T15:32:38.000Z" + }, + "end": { + "$date": "2022-01-23T15:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "96cd224f-8585-4747-9b3e-5b3ea4fb014b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-23T16:35:39.000Z" + }, + "end": { + "$date": "2022-01-23T18:56:56.000Z" + }, + "events": [ + { + "uuid": "1a6b7a3d-ef54-4ae5-8ec4-45825c051750", + "start": { + "$date": "2022-01-23T16:35:39.000Z" + }, + "end": { + "$date": "2022-01-23T18:56:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "151c0abd-e1e9-40c1-aa65-37db6f7afe48", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T17:24:20.000Z" + }, + "end": { + "$date": "2022-01-23T18:07:35.000Z" + }, + "events": [ + { + "uuid": "e432d539-7e41-4daf-b205-0741c3793827", + "start": { + "$date": "2022-01-23T17:24:20.000Z" + }, + "end": { + "$date": "2022-01-23T18:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1acc7d8c-8690-44e9-b62e-0283700114ac", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T18:21:34.000Z" + }, + "end": { + "$date": "2022-01-23T18:24:06.000Z" + }, + "events": [ + { + "uuid": "c9821a05-de9d-442f-883d-80248b67aa30", + "start": { + "$date": "2022-01-23T18:21:34.000Z" + }, + "end": { + "$date": "2022-01-23T18:24:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a48f1e10-31e6-4ee1-9494-f44c7426f0ef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T18:28:06.000Z" + }, + "end": { + "$date": "2022-01-23T19:04:17.000Z" + }, + "events": [ + { + "uuid": "e98e2fa2-3dd4-4ec2-9c51-39b884e5a515", + "start": { + "$date": "2022-01-23T18:28:06.000Z" + }, + "end": { + "$date": "2022-01-23T19:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "207f935d-9fb3-4294-8d9d-cfd76e7c5081", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T18:47:43.000Z" + }, + "end": { + "$date": "2022-01-23T18:49:28.000Z" + }, + "events": [ + { + "uuid": "60d297df-e605-4739-92a1-45d63bde5350", + "start": { + "$date": "2022-01-23T18:47:43.000Z" + }, + "end": { + "$date": "2022-01-23T18:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "dad9beee-b400-41a2-a579-c6254819fc6c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T18:53:13.000Z" + }, + "end": { + "$date": "2022-01-23T18:54:33.000Z" + }, + "events": [ + { + "uuid": "9efc1885-977b-4949-be16-8f60146c00fd", + "start": { + "$date": "2022-01-23T18:53:13.000Z" + }, + "end": { + "$date": "2022-01-23T18:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3fbb3bac-b8b4-426a-9c8b-b47c44277782", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T19:09:05.000Z" + }, + "end": { + "$date": "2022-01-23T20:09:47.000Z" + }, + "events": [ + { + "uuid": "da5ad552-68fe-4d9e-a334-f8344861441b", + "start": { + "$date": "2022-01-23T19:09:05.000Z" + }, + "end": { + "$date": "2022-01-23T20:09:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "357757ff-e3a2-4fe1-8564-1ee10d53f17a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-23T19:09:38.000Z" + }, + "end": { + "$date": "2022-01-23T19:14:13.000Z" + }, + "events": [ + { + "uuid": "f0312b77-b62a-4d47-9333-1debe6fc47b2", + "start": { + "$date": "2022-01-23T19:09:38.000Z" + }, + "end": { + "$date": "2022-01-23T19:14:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "3eaa8d95-de9f-496c-a3b6-01c85783a8a8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T19:13:05.000Z" + }, + "end": { + "$date": "2022-01-23T19:14:25.000Z" + }, + "events": [ + { + "uuid": "8db4f2c5-4ea2-4a39-b1f1-323421b0ca1b", + "start": { + "$date": "2022-01-23T19:13:05.000Z" + }, + "end": { + "$date": "2022-01-23T19:14:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "8aca969b-cef1-4788-bbeb-d134e074d0ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-23T19:14:28.000Z" + }, + "end": { + "$date": "2022-01-23T20:17:33.000Z" + }, + "events": [ + { + "uuid": "d6d72242-0aa4-4e98-8900-13b76fc90cc9", + "start": { + "$date": "2022-01-23T19:14:28.000Z" + }, + "end": { + "$date": "2022-01-23T19:57:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "53e88620-3e37-4a94-91dd-5e30f378ba49", + "start": { + "$date": "2022-01-23T19:57:28.000Z" + }, + "end": { + "$date": "2022-01-23T19:58:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "12910210-5445-48fe-9b64-d795c2c685e1", + "start": { + "$date": "2022-01-23T19:58:28.000Z" + }, + "end": { + "$date": "2022-01-23T20:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12de0d89-6659-4b12-8d86-e207ea5e0444", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T19:27:35.000Z" + }, + "end": { + "$date": "2022-01-23T19:57:49.000Z" + }, + "events": [ + { + "uuid": "3987978c-94ea-49a8-a5c2-f9d9c97d532a", + "start": { + "$date": "2022-01-23T19:27:35.000Z" + }, + "end": { + "$date": "2022-01-23T19:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "0fe056bf-d1d5-4a27-96ee-4180735eca76", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T19:37:52.000Z" + }, + "end": { + "$date": "2022-01-23T19:41:17.000Z" + }, + "events": [ + { + "uuid": "50316414-8839-4dec-92bd-a98dca33db93", + "start": { + "$date": "2022-01-23T19:37:52.000Z" + }, + "end": { + "$date": "2022-01-23T19:41:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "a3c22908-18b1-45f8-8405-2eec7ebb6b46", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T19:42:22.000Z" + }, + "end": { + "$date": "2022-01-23T19:43:47.000Z" + }, + "events": [ + { + "uuid": "6c33a2f5-accb-4aa5-af20-0dfbe636f662", + "start": { + "$date": "2022-01-23T19:42:22.000Z" + }, + "end": { + "$date": "2022-01-23T19:43:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", + "uuid": "0520e8a8-cb89-4c5e-9c95-99a15da5d758", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T19:44:07.000Z" + }, + "end": { + "$date": "2022-01-23T20:17:45.000Z" + }, + "events": [ + { + "uuid": "3fb52c4b-42d8-40bb-93f4-ea9500105029", + "start": { + "$date": "2022-01-23T19:44:07.000Z" + }, + "end": { + "$date": "2022-01-23T20:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a1db1dc-7003-4fb3-b96c-24a1e5586ea2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-23T20:21:50.000Z" + }, + "end": { + "$date": "2022-01-23T20:58:40.000Z" + }, + "events": [ + { + "uuid": "f6e7320b-f8f9-4c5b-9fc5-d0023df8ff67", + "start": { + "$date": "2022-01-23T20:21:50.000Z" + }, + "end": { + "$date": "2022-01-23T20:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb497d9d-5c77-449d-83c2-cbafc2a5efa9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T20:21:53.000Z" + }, + "end": { + "$date": "2022-01-23T20:58:49.000Z" + }, + "events": [ + { + "uuid": "5214fc9b-4a02-4d31-9558-cda9c6c9c672", + "start": { + "$date": "2022-01-23T20:21:53.000Z" + }, + "end": { + "$date": "2022-01-23T20:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e919544-fc82-4f03-8b36-033d147d7594", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T20:21:41.000Z" + }, + "end": { + "$date": "2022-01-23T20:58:48.000Z" + }, + "events": [ + { + "uuid": "e6c63795-9ef3-4cd5-b344-0e090af7e02f", + "start": { + "$date": "2022-01-23T20:21:41.000Z" + }, + "end": { + "$date": "2022-01-23T20:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81bb303b-f571-425e-b8bf-379b9c149879", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-23T20:17:46.000Z" + }, + "end": { + "$date": "2022-01-23T20:33:45.000Z" + }, + "events": [ + { + "uuid": "d66f8da5-168f-4381-a1bb-7a20c24652a4", + "start": { + "$date": "2022-01-23T20:17:46.000Z" + }, + "end": { + "$date": "2022-01-23T20:33:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2e9c69bb-6552-49a8-88db-f14621169767", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T20:17:54.000Z" + }, + "end": { + "$date": "2022-01-23T20:20:50.000Z" + }, + "events": [ + { + "uuid": "f16f32ae-853d-4f8d-b87b-02c68c317fc1", + "start": { + "$date": "2022-01-23T20:17:54.000Z" + }, + "end": { + "$date": "2022-01-23T20:20:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d9777cbf-3b23-47c2-8174-68623be4406d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T20:39:41.000Z" + }, + "end": { + "$date": "2022-01-23T22:07:44.000Z" + }, + "events": [ + { + "uuid": "7b526f64-3696-49a2-bf17-5d1488624fae", + "start": { + "$date": "2022-01-23T20:39:41.000Z" + }, + "end": { + "$date": "2022-01-23T22:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83d441b7-9204-4638-9077-2b524defa51d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-23T20:50:50.000Z" + }, + "end": { + "$date": "2022-01-23T21:12:07.000Z" + }, + "events": [ + { + "uuid": "eb71ee39-edbe-48db-9997-f0cd88adcb4f", + "start": { + "$date": "2022-01-23T20:50:50.000Z" + }, + "end": { + "$date": "2022-01-23T21:12:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f69e0086-3edd-4176-9980-7c215db131eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-23T21:00:27.000Z" + }, + "end": { + "$date": "2022-01-23T21:02:34.000Z" + }, + "events": [ + { + "uuid": "30e9a361-8884-416b-adda-0f8292dd2b1f", + "start": { + "$date": "2022-01-23T21:00:27.000Z" + }, + "end": { + "$date": "2022-01-23T21:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca884220-f2d8-444c-8b12-c82b4b7104bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T21:00:46.000Z" + }, + "end": { + "$date": "2022-01-23T21:02:32.000Z" + }, + "events": [ + { + "uuid": "9fc18bd4-894a-459c-b1ab-235b219cf7cb", + "start": { + "$date": "2022-01-23T21:00:46.000Z" + }, + "end": { + "$date": "2022-01-23T21:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9097ce3e-b436-4250-a888-500799ccd7ec", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T21:00:44.000Z" + }, + "end": { + "$date": "2022-01-23T21:02:31.000Z" + }, + "events": [ + { + "uuid": "148e127f-df59-42cb-9b2a-2a5d9e4a4855", + "start": { + "$date": "2022-01-23T21:00:44.000Z" + }, + "end": { + "$date": "2022-01-23T21:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a6a8e45-6e7a-4f53-b30e-e1c8b0d05e6e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T21:20:27.000Z" + }, + "end": { + "$date": "2022-01-23T21:43:54.000Z" + }, + "events": [ + { + "uuid": "0c357f90-a13f-4c0c-966f-fd193a05ff41", + "start": { + "$date": "2022-01-23T21:20:27.000Z" + }, + "end": { + "$date": "2022-01-23T21:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "75f2f5fa-929d-47ef-8f4b-b030d0bd84f6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-23T21:05:31.000Z" + }, + "end": { + "$date": "2022-01-23T21:49:12.000Z" + }, + "events": [ + { + "uuid": "cfc7df06-a667-466b-ab74-e9092aef5434", + "start": { + "$date": "2022-01-23T21:05:31.000Z" + }, + "end": { + "$date": "2022-01-23T21:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a26034d4-cc6d-4581-b133-fcb0b3d81d8d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T21:20:18.000Z" + }, + "end": { + "$date": "2022-01-23T21:43:59.000Z" + }, + "events": [ + { + "uuid": "2e18ac20-f123-40c5-abf4-e931a12290ae", + "start": { + "$date": "2022-01-23T21:20:18.000Z" + }, + "end": { + "$date": "2022-01-23T21:43:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b22ff3d2-811b-4868-b1e4-41e607f078ab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-23T21:53:04.000Z" + }, + "end": { + "$date": "2022-01-23T22:27:42.000Z" + }, + "events": [ + { + "uuid": "f231ecec-3a65-4f5b-b4f6-b49901672ecd", + "start": { + "$date": "2022-01-23T21:53:04.000Z" + }, + "end": { + "$date": "2022-01-23T22:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25155cca-5ff3-41ad-bbe4-8dbd3b1cd703", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T21:52:54.000Z" + }, + "end": { + "$date": "2022-01-23T22:27:40.000Z" + }, + "events": [ + { + "uuid": "ca383f8b-f31c-4353-98d0-6d6a6ff44392", + "start": { + "$date": "2022-01-23T21:52:54.000Z" + }, + "end": { + "$date": "2022-01-23T22:27:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd580597-dd67-4d8b-bfab-4d0c5fed03f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-23T21:52:57.000Z" + }, + "end": { + "$date": "2022-01-23T22:27:33.000Z" + }, + "events": [ + { + "uuid": "fa91bbfe-df88-4367-8b58-4d7227607521", + "start": { + "$date": "2022-01-23T21:52:57.000Z" + }, + "end": { + "$date": "2022-01-23T22:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8d3c3dd-661f-43a3-92cf-5d5b260494ac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T21:52:40.000Z" + }, + "end": { + "$date": "2022-01-23T22:07:29.000Z" + }, + "events": [ + { + "uuid": "4d55b6e1-a7d1-4015-8b6a-d753c586dd79", + "start": { + "$date": "2022-01-23T21:52:40.000Z" + }, + "end": { + "$date": "2022-01-23T22:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa5910f6-be57-49e6-9a67-2dcc68eaf54f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T22:09:41.000Z" + }, + "end": { + "$date": "2022-01-23T22:34:40.000Z" + }, + "events": [ + { + "uuid": "8428fa4b-fca6-43e1-b6a1-dc5800c1da9c", + "start": { + "$date": "2022-01-23T22:09:41.000Z" + }, + "end": { + "$date": "2022-01-23T22:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a3f9558-9e42-4ba0-a599-183df1fd0929", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T22:36:36.000Z" + }, + "end": { + "$date": "2022-01-23T23:18:12.000Z" + }, + "events": [ + { + "uuid": "015b1eed-2098-404a-9062-8433ffdd443f", + "start": { + "$date": "2022-01-23T22:36:36.000Z" + }, + "end": { + "$date": "2022-01-23T23:18:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c672ce5-d644-4134-a5d1-39ab349473e6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T22:37:22.000Z" + }, + "end": { + "$date": "2022-01-23T22:55:24.000Z" + }, + "events": [ + { + "uuid": "b62081d2-6601-4b67-87ab-eebf1563727c", + "start": { + "$date": "2022-01-23T22:37:22.000Z" + }, + "end": { + "$date": "2022-01-23T22:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9919982e-5c30-4401-9a91-75c957fefdd3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-23T22:38:27.000Z" + }, + "end": { + "$date": "2022-01-23T23:13:59.000Z" + }, + "events": [ + { + "uuid": "43072f35-a0ae-43dc-8818-db724aac280d", + "start": { + "$date": "2022-01-23T22:38:27.000Z" + }, + "end": { + "$date": "2022-01-23T23:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e18845-c2ed-40dd-9158-46f8366c2199", + "uuid": "8b1828d1-b9f5-4505-996c-29ccc26f05a1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-23T22:39:08.000Z" + }, + "end": { + "$date": "2022-01-23T22:45:55.000Z" + }, + "events": [ + { + "uuid": "b2c999d0-8419-4476-87ed-0b24711847b8", + "start": { + "$date": "2022-01-23T22:39:08.000Z" + }, + "end": { + "$date": "2022-01-23T22:45:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "149b5f7f-956e-4db9-85e9-e29aac7862be", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T22:57:38.000Z" + }, + "end": { + "$date": "2022-01-23T23:21:29.000Z" + }, + "events": [ + { + "uuid": "d68450b5-ae9d-480d-8d22-2bd145026665", + "start": { + "$date": "2022-01-23T22:57:38.000Z" + }, + "end": { + "$date": "2022-01-23T23:21:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "38bd0af5-3cbb-4d7b-b619-e22a93a5374b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-23T23:08:45.000Z" + }, + "end": { + "$date": "2022-01-23T23:08:02.000Z" + }, + "events": [ + { + "uuid": "fa8efcb8-b781-49d3-97d0-be862c257e48", + "start": { + "$date": "2022-01-23T23:08:45.000Z" + }, + "end": { + "$date": "2022-01-23T23:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e18845-c2ed-40dd-9158-46f8366c2199", + "uuid": "b44c0080-d48d-49f2-a7b1-9eb38906e2c0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-23T23:09:16.000Z" + }, + "end": { + "$date": "2022-01-23T23:19:09.000Z" + }, + "events": [ + { + "uuid": "70e69565-a608-417d-800a-a068d01d2613", + "start": { + "$date": "2022-01-23T23:09:16.000Z" + }, + "end": { + "$date": "2022-01-23T23:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d509bc8-c18a-4c3e-86cc-4edbbcdeb0e4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-23T23:14:45.000Z" + }, + "end": { + "$date": "2022-01-23T23:35:42.000Z" + }, + "events": [ + { + "uuid": "2b8300c0-b4e0-4f74-8419-29d22e5e432f", + "start": { + "$date": "2022-01-23T23:14:45.000Z" + }, + "end": { + "$date": "2022-01-23T23:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "91e18845-c2ed-40dd-9158-46f8366c2199", + "uuid": "72400aee-a06f-4ed7-acf8-c764a91b4568", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-23T23:20:22.000Z" + }, + "end": { + "$date": "2022-01-23T23:24:25.000Z" + }, + "events": [ + { + "uuid": "15b47467-7516-42a1-bf1e-97b430f1ea1d", + "start": { + "$date": "2022-01-23T23:20:22.000Z" + }, + "end": { + "$date": "2022-01-23T23:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ec902cf-f6f6-4910-a213-36625df9c6e9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T23:24:14.000Z" + }, + "end": { + "$date": "2022-01-23T23:56:58.000Z" + }, + "events": [ + { + "uuid": "8e9bef7b-4787-4d2d-81fd-f09c4f665e41", + "start": { + "$date": "2022-01-23T23:24:14.000Z" + }, + "end": { + "$date": "2022-01-23T23:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "fa6bd6ef-9ca3-4511-b84e-7ade8684beef", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-23T23:37:23.000Z" + }, + "end": { + "$date": "2022-01-24T00:37:11.000Z" + }, + "events": [ + { + "uuid": "63c67c6f-b651-4b77-9225-d73f75080944", + "start": { + "$date": "2022-01-23T23:37:23.000Z" + }, + "end": { + "$date": "2022-01-24T00:37:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "93aa9d75-623b-4695-ab42-74eea9c74ec8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-23T23:46:41.000Z" + }, + "end": { + "$date": "2022-01-24T01:01:11.000Z" + }, + "events": [ + { + "uuid": "51472736-c79b-4706-9807-343cbc39e777", + "start": { + "$date": "2022-01-23T23:46:41.000Z" + }, + "end": { + "$date": "2022-01-24T01:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f04d386-f94a-4c96-adf4-a703b9783e1e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-23T23:58:53.000Z" + }, + "end": { + "$date": "2022-01-24T00:28:56.000Z" + }, + "events": [ + { + "uuid": "89b14ffd-2e79-4162-a577-2f777c7eda89", + "start": { + "$date": "2022-01-23T23:58:53.000Z" + }, + "end": { + "$date": "2022-01-24T00:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "aabbb23b-1a42-4d9f-8040-e50125c96525", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-24T00:19:47.000Z" + }, + "end": { + "$date": "2022-01-24T00:49:31.000Z" + }, + "events": [ + { + "uuid": "330faf71-7326-4ebb-b421-5728e218f5aa", + "start": { + "$date": "2022-01-24T00:19:47.000Z" + }, + "end": { + "$date": "2022-01-24T00:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "859d58e0-9633-4459-8c00-996d25d2cf7a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T00:29:46.000Z" + }, + "end": { + "$date": "2022-01-24T01:10:11.000Z" + }, + "events": [ + { + "uuid": "45eb398e-1217-459f-a638-ba9467973f7b", + "start": { + "$date": "2022-01-24T00:29:46.000Z" + }, + "end": { + "$date": "2022-01-24T01:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", + "uuid": "fb23ea8d-6b3c-422f-921c-4157dc5989a9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-24T00:37:21.000Z" + }, + "end": { + "$date": "2022-01-24T06:30:09.000Z" + }, + "events": [ + { + "uuid": "b60cd051-5089-4ef3-8cc5-d2276bca2a47", + "start": { + "$date": "2022-01-24T00:37:21.000Z" + }, + "end": { + "$date": "2022-01-24T06:30:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3b547963-6bcb-402d-8ff5-18e436e96576", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T01:14:06.000Z" + }, + "end": { + "$date": "2022-01-24T01:32:49.000Z" + }, + "events": [ + { + "uuid": "5ee27aa0-4d29-4092-8777-254ce9b6c71d", + "start": { + "$date": "2022-01-24T01:14:06.000Z" + }, + "end": { + "$date": "2022-01-24T01:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd086b64-0de0-4be9-9391-685a0487d2b1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T01:35:02.000Z" + }, + "end": { + "$date": "2022-01-24T01:50:25.000Z" + }, + "events": [ + { + "uuid": "6d3e1429-a012-4c49-a2a4-d347a779f700", + "start": { + "$date": "2022-01-24T01:35:02.000Z" + }, + "end": { + "$date": "2022-01-24T01:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3f06a904-9272-46ff-95da-ab198cec067c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-24T01:35:52.000Z" + }, + "end": { + "$date": "2022-01-24T02:07:28.000Z" + }, + "events": [ + { + "uuid": "edfc1045-61fc-45ca-b23b-0af584b0c481", + "start": { + "$date": "2022-01-24T01:35:52.000Z" + }, + "end": { + "$date": "2022-01-24T02:07:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b6eeb31d-0e41-4188-8c39-d4e364843f65", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T01:51:17.000Z" + }, + "end": { + "$date": "2022-01-24T01:59:04.000Z" + }, + "events": [ + { + "uuid": "3e127ef8-c4b3-4bae-a388-1dc5490a0c76", + "start": { + "$date": "2022-01-24T01:51:17.000Z" + }, + "end": { + "$date": "2022-01-24T01:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d94d60f3-d2f3-45b1-a57c-4a42294b8c6d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T02:04:23.000Z" + }, + "end": { + "$date": "2022-01-24T02:18:39.000Z" + }, + "events": [ + { + "uuid": "1ecd35ef-3615-40de-b35e-42dd21b07ce1", + "start": { + "$date": "2022-01-24T02:04:23.000Z" + }, + "end": { + "$date": "2022-01-24T02:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7458ba0e-0735-4e1a-9103-19b76bb6701f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-24T02:07:43.000Z" + }, + "end": { + "$date": "2022-01-24T02:40:28.000Z" + }, + "events": [ + { + "uuid": "d2b57cf2-298e-4209-9f52-608dd785f42d", + "start": { + "$date": "2022-01-24T02:07:43.000Z" + }, + "end": { + "$date": "2022-01-24T02:30:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d671ea8-11d3-493a-a450-bce8a7cade4f", + "start": { + "$date": "2022-01-24T02:30:43.000Z" + }, + "end": { + "$date": "2022-01-24T02:35:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7018b4e6-7ca7-4a82-a6ac-3dc96a629e72", + "start": { + "$date": "2022-01-24T02:35:43.000Z" + }, + "end": { + "$date": "2022-01-24T02:40:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a56e0789-ec5c-44a1-bfb1-56f979123c4f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T02:21:19.000Z" + }, + "end": { + "$date": "2022-01-24T02:46:29.000Z" + }, + "events": [ + { + "uuid": "472d0a2b-18fb-4217-8ad6-1834c5c36b3c", + "start": { + "$date": "2022-01-24T02:21:19.000Z" + }, + "end": { + "$date": "2022-01-24T02:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "dd185e06-8821-4985-8514-4b75b938a339", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-24T02:23:22.000Z" + }, + "end": { + "$date": "2022-01-24T04:21:21.000Z" + }, + "events": [ + { + "uuid": "0426c00f-cad2-445d-ae22-3880168d6427", + "start": { + "$date": "2022-01-24T02:23:22.000Z" + }, + "end": { + "$date": "2022-01-24T04:21:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "225a0597-eb0e-41d1-b23a-580aab89a084", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-24T02:36:57.000Z" + }, + "end": { + "$date": "2022-01-24T03:16:35.000Z" + }, + "events": [ + { + "uuid": "ec3afb3a-28b4-411d-98ca-c3f2e1ec71e5", + "start": { + "$date": "2022-01-24T02:36:57.000Z" + }, + "end": { + "$date": "2022-01-24T03:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5fd2dcbb-7821-4f06-a8b0-96801b7311ba", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T02:48:36.000Z" + }, + "end": { + "$date": "2022-01-24T03:15:54.000Z" + }, + "events": [ + { + "uuid": "cd697f97-5bf2-45c9-9dec-1d2060f31e88", + "start": { + "$date": "2022-01-24T02:48:36.000Z" + }, + "end": { + "$date": "2022-01-24T03:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "16260ed6-d6c0-4d39-8ca1-db1a464df1a5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-24T02:54:30.000Z" + }, + "end": { + "$date": "2022-01-24T03:45:38.000Z" + }, + "events": [ + { + "uuid": "a35cf5f2-5760-424e-ba83-05ff96169afe", + "start": { + "$date": "2022-01-24T02:54:30.000Z" + }, + "end": { + "$date": "2022-01-24T03:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "83a20ca3-9d0f-483a-8e14-61176ad42091", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-24T03:16:55.000Z" + }, + "end": { + "$date": "2022-01-24T04:35:30.000Z" + }, + "events": [ + { + "uuid": "b29cf10b-a3eb-42c6-a374-2d181d4a20eb", + "start": { + "$date": "2022-01-24T03:16:55.000Z" + }, + "end": { + "$date": "2022-01-24T04:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "223c6ec0-a671-4c7d-b112-12a25e863fff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T03:19:07.000Z" + }, + "end": { + "$date": "2022-01-24T03:34:23.000Z" + }, + "events": [ + { + "uuid": "35e39ce7-7d79-4de2-bbfb-780e81078282", + "start": { + "$date": "2022-01-24T03:19:07.000Z" + }, + "end": { + "$date": "2022-01-24T03:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a654dfa9-8eb2-4f99-b999-eb800de0405f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-24T03:25:27.000Z" + }, + "end": { + "$date": "2022-01-24T04:18:54.000Z" + }, + "events": [ + { + "uuid": "cf55f03d-c76b-47b8-b4a1-876fd5067d11", + "start": { + "$date": "2022-01-24T03:25:27.000Z" + }, + "end": { + "$date": "2022-01-24T04:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4e9e462f-fbc5-4f01-aeaa-69cf438edb6a", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-01-24T03:26:11.000Z" + }, + "end": { + "$date": "2022-01-24T04:39:48.000Z" + }, + "events": [ + { + "uuid": "d6ea5e04-4a0f-4d21-900a-4e75352d6700", + "start": { + "$date": "2022-01-24T03:26:11.000Z" + }, + "end": { + "$date": "2022-01-24T04:12:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b5dce97-8a61-4167-a4c9-0bf49374be96", + "start": { + "$date": "2022-01-24T04:12:11.000Z" + }, + "end": { + "$date": "2022-01-24T04:22:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "24e28cc3-0887-4def-b835-9b3b8dd7d096", + "start": { + "$date": "2022-01-24T04:22:11.000Z" + }, + "end": { + "$date": "2022-01-24T04:37:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d6da83c8-e1a1-4666-8a14-26595254fdeb", + "start": { + "$date": "2022-01-24T04:37:11.000Z" + }, + "end": { + "$date": "2022-01-24T04:39:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c29495b-3441-4417-83f2-da5b27f115f6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T04:09:55.000Z" + }, + "end": { + "$date": "2022-01-24T04:48:00.000Z" + }, + "events": [ + { + "uuid": "91785819-0ccb-445e-a89c-651d861a8c25", + "start": { + "$date": "2022-01-24T04:09:55.000Z" + }, + "end": { + "$date": "2022-01-24T04:48:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "f50233ea-eb1a-42ec-ae5a-e912e79860c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-24T03:39:52.000Z" + }, + "end": { + "$date": "2022-01-24T04:35:33.000Z" + }, + "events": [ + { + "uuid": "4a0dc2fc-fa2f-4259-b731-930cff0d5e6c", + "start": { + "$date": "2022-01-24T03:39:52.000Z" + }, + "end": { + "$date": "2022-01-24T04:35:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "3ee0e7c3-d5b4-4fa1-91ad-290a2eff6290", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-24T03:46:02.000Z" + }, + "end": { + "$date": "2022-01-24T03:52:03.000Z" + }, + "events": [ + { + "uuid": "10d24bd9-fda7-4f06-b75f-bd825248d22d", + "start": { + "$date": "2022-01-24T03:46:02.000Z" + }, + "end": { + "$date": "2022-01-24T03:52:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "35b45522-86e1-418b-ba85-fef9707636eb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-24T03:52:27.000Z" + }, + "end": { + "$date": "2022-01-24T05:43:06.000Z" + }, + "events": [ + { + "uuid": "be57b23e-a073-4057-bf4f-ac5bb2a339a0", + "start": { + "$date": "2022-01-24T03:52:27.000Z" + }, + "end": { + "$date": "2022-01-24T05:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8121a0d0-7ea9-47e6-9b97-0fcbc1a47503", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-24T04:30:34.000Z" + }, + "end": { + "$date": "2022-01-24T05:01:26.000Z" + }, + "events": [ + { + "uuid": "5d050a6b-8576-4d51-a7a3-fea9cd7746a4", + "start": { + "$date": "2022-01-24T04:30:34.000Z" + }, + "end": { + "$date": "2022-01-24T05:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "77524fd7-5762-4c9d-97d8-8ae5b4e210e5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-24T04:36:28.000Z" + }, + "end": { + "$date": "2022-01-24T04:58:41.000Z" + }, + "events": [ + { + "uuid": "35e8e31a-450b-44c5-b2f8-c57f2cfb52e9", + "start": { + "$date": "2022-01-24T04:36:28.000Z" + }, + "end": { + "$date": "2022-01-24T04:58:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "2983cef8-ecc2-4168-9e61-522cdce6f73b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-24T04:47:06.000Z" + }, + "end": { + "$date": "2022-01-24T05:07:57.000Z" + }, + "events": [ + { + "uuid": "15d16e81-3295-4a05-b2d4-917b2217df09", + "start": { + "$date": "2022-01-24T04:47:06.000Z" + }, + "end": { + "$date": "2022-01-24T05:07:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b543a676-dfd0-4a63-9b84-dfa42399835c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T04:50:20.000Z" + }, + "end": { + "$date": "2022-01-24T05:30:22.000Z" + }, + "events": [ + { + "uuid": "d31541c7-8f21-4313-97c0-b4a05fb560fc", + "start": { + "$date": "2022-01-24T04:50:20.000Z" + }, + "end": { + "$date": "2022-01-24T05:30:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a49fc451-6ad0-46f5-b85f-a210e316141b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-24T05:01:51.000Z" + }, + "end": { + "$date": "2022-01-24T06:22:45.000Z" + }, + "events": [ + { + "uuid": "f7ec0c7a-8cf4-41c5-bd08-1489bafd5496", + "start": { + "$date": "2022-01-24T05:01:51.000Z" + }, + "end": { + "$date": "2022-01-24T06:22:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6c3e829-d853-4c40-be89-3f0d074147ea", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T05:31:17.000Z" + }, + "end": { + "$date": "2022-01-24T06:07:30.000Z" + }, + "events": [ + { + "uuid": "c2d2ee36-9f10-4d64-bb74-9a3c19531555", + "start": { + "$date": "2022-01-24T05:31:17.000Z" + }, + "end": { + "$date": "2022-01-24T06:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a8a568cb-2344-4fd2-8a24-c3386789e143", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-24T05:41:46.000Z" + }, + "end": { + "$date": "2022-01-24T06:43:27.000Z" + }, + "events": [ + { + "uuid": "570267b8-bc55-4d40-97a7-578cf7894929", + "start": { + "$date": "2022-01-24T05:41:46.000Z" + }, + "end": { + "$date": "2022-01-24T06:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "0a889dbb-6bfb-4296-83d5-64c972d1cb3b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-24T05:46:24.000Z" + }, + "end": { + "$date": "2022-01-24T07:20:19.000Z" + }, + "events": [ + { + "uuid": "77e17a30-2773-45ed-924a-9c8de25abda1", + "start": { + "$date": "2022-01-24T05:46:24.000Z" + }, + "end": { + "$date": "2022-01-24T07:20:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbe9237a-9316-4b2a-a9e8-4ff309f81cb0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-24T06:03:37.000Z" + }, + "end": { + "$date": "2022-01-24T06:39:51.000Z" + }, + "events": [ + { + "uuid": "769c8d3b-f962-4b4b-89c6-b10d1d9f2a28", + "start": { + "$date": "2022-01-24T06:03:37.000Z" + }, + "end": { + "$date": "2022-01-24T06:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3de19c83-806e-4623-b551-8ce34dc189a3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T06:08:50.000Z" + }, + "end": { + "$date": "2022-01-24T06:46:24.000Z" + }, + "events": [ + { + "uuid": "87dac808-ab34-4a13-95f0-60fd6e9e8681", + "start": { + "$date": "2022-01-24T06:08:50.000Z" + }, + "end": { + "$date": "2022-01-24T06:46:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6625ba88-26fe-47fb-af32-fbd6013e71f7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T06:50:38.000Z" + }, + "end": { + "$date": "2022-01-24T07:30:31.000Z" + }, + "events": [ + { + "uuid": "2273a0ec-2670-4b2b-a065-6fe3cabf530e", + "start": { + "$date": "2022-01-24T06:50:38.000Z" + }, + "end": { + "$date": "2022-01-24T07:30:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ec06e2c8-da9b-48e7-83f1-c533820f2742", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-24T08:41:17.000Z" + }, + "end": { + "$date": "2022-01-24T10:59:14.000Z" + }, + "events": [ + { + "uuid": "42c97f51-8e4d-4e2e-b62c-661a3e9076ab", + "start": { + "$date": "2022-01-24T08:41:17.000Z" + }, + "end": { + "$date": "2022-01-24T10:59:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c0d615d1-f44d-460d-b8b7-8e7b63dea188", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-24T11:32:40.000Z" + }, + "end": { + "$date": "2022-01-24T17:22:19.000Z" + }, + "events": [ + { + "uuid": "4f0f345e-635e-4cde-98ae-bf8a445bd18d", + "start": { + "$date": "2022-01-24T11:32:40.000Z" + }, + "end": { + "$date": "2022-01-24T17:22:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ee3810d-95f7-4884-bea2-4ae248c3efba", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T17:14:19.000Z" + }, + "end": { + "$date": "2022-01-24T17:35:29.000Z" + }, + "events": [ + { + "uuid": "3871f14b-1770-47d9-8319-5b907360d9dd", + "start": { + "$date": "2022-01-24T17:14:19.000Z" + }, + "end": { + "$date": "2022-01-24T17:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50341a8b-0394-4add-b6a7-96cb1abe0c35", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T17:36:30.000Z" + }, + "end": { + "$date": "2022-01-24T17:58:46.000Z" + }, + "events": [ + { + "uuid": "23a62938-e05b-45a3-b348-37ba3f607627", + "start": { + "$date": "2022-01-24T17:36:30.000Z" + }, + "end": { + "$date": "2022-01-24T17:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23bb112d-75c1-4a66-a87e-ecb44c2da5a3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T18:00:01.000Z" + }, + "end": { + "$date": "2022-01-24T18:19:22.000Z" + }, + "events": [ + { + "uuid": "ab171c6d-8616-4ac0-8a5a-f6c728535ea9", + "start": { + "$date": "2022-01-24T18:00:01.000Z" + }, + "end": { + "$date": "2022-01-24T18:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bc26de3-cf0f-484b-b018-d8cc2563fe91", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T18:19:28.000Z" + }, + "end": { + "$date": "2022-01-24T18:31:01.000Z" + }, + "events": [ + { + "uuid": "d6440cf4-f7c2-44dd-8b2a-136e4717b0ef", + "start": { + "$date": "2022-01-24T18:19:28.000Z" + }, + "end": { + "$date": "2022-01-24T18:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c3903368-30da-4f3b-b0a7-c949719c9d03", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T21:28:02.000Z" + }, + "end": { + "$date": "2022-01-24T21:33:38.000Z" + }, + "events": [ + { + "uuid": "922469b9-c14e-4def-ba39-36db9a6f9bf9", + "start": { + "$date": "2022-01-24T21:28:02.000Z" + }, + "end": { + "$date": "2022-01-24T21:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "1259e25c-a73d-42e7-9d3b-86e8e3f7c018", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-24T21:33:42.000Z" + }, + "end": { + "$date": "2022-01-24T21:50:54.000Z" + }, + "events": [ + { + "uuid": "7da32306-0121-4965-86ae-b28b4f8129e9", + "start": { + "$date": "2022-01-24T21:33:42.000Z" + }, + "end": { + "$date": "2022-01-24T21:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c1a7cd6-b328-42de-a1d8-fe693d2573fc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T23:12:07.000Z" + }, + "end": { + "$date": "2022-01-24T23:28:58.000Z" + }, + "events": [ + { + "uuid": "160c93cb-d5ea-4b43-8759-25240d6737bb", + "start": { + "$date": "2022-01-24T23:12:07.000Z" + }, + "end": { + "$date": "2022-01-24T23:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04dcb66e-c5f1-4594-a635-0b9584c45763", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T23:30:08.000Z" + }, + "end": { + "$date": "2022-01-24T23:51:44.000Z" + }, + "events": [ + { + "uuid": "d5ccdddd-0ae5-4ba4-abc7-c891f2ee8719", + "start": { + "$date": "2022-01-24T23:30:08.000Z" + }, + "end": { + "$date": "2022-01-24T23:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "98d81bf6-dea3-48a9-bea5-9145fe862dda", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-25T02:14:34.000Z" + }, + "end": { + "$date": "2022-01-25T02:14:40.000Z" + }, + "events": [ + { + "uuid": "feaa0e68-ef59-44d0-96b3-bc7df35978de", + "start": { + "$date": "2022-01-25T02:14:34.000Z" + }, + "end": { + "$date": "2022-01-25T02:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16917fb3-f046-4af8-b23a-d53f3482d5b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-24T23:44:27.000Z" + }, + "end": { + "$date": "2022-01-25T00:08:24.000Z" + }, + "events": [ + { + "uuid": "18c9f3a3-4e12-4a4a-8b8f-20ee6388cd1c", + "start": { + "$date": "2022-01-24T23:44:27.000Z" + }, + "end": { + "$date": "2022-01-25T00:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12df91ef-0dd3-41e6-bced-04dcb70b20d9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-24T23:52:39.000Z" + }, + "end": { + "$date": "2022-01-25T00:09:04.000Z" + }, + "events": [ + { + "uuid": "67d830d5-a53a-4d87-906f-97a82550874d", + "start": { + "$date": "2022-01-24T23:52:39.000Z" + }, + "end": { + "$date": "2022-01-25T00:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ed86c73c-10fb-4fe2-af2c-cb1b99227c60", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-25T00:12:05.000Z" + }, + "end": { + "$date": "2022-01-25T00:34:41.000Z" + }, + "events": [ + { + "uuid": "e3b87f0d-f6bf-4b11-aac8-fcaa7172da41", + "start": { + "$date": "2022-01-25T00:12:05.000Z" + }, + "end": { + "$date": "2022-01-25T00:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07429453-d255-45ce-8586-cbce0b27ae9c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-25T00:21:08.000Z" + }, + "end": { + "$date": "2022-01-25T00:39:31.000Z" + }, + "events": [ + { + "uuid": "075f62e3-a6f8-4743-ad76-e21380331fd7", + "start": { + "$date": "2022-01-25T00:21:08.000Z" + }, + "end": { + "$date": "2022-01-25T00:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec821d1a-5453-43c3-86ec-a5556de01b6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-25T00:21:14.000Z" + }, + "end": { + "$date": "2022-01-25T00:39:42.000Z" + }, + "events": [ + { + "uuid": "34120edf-561e-45a5-9c84-da4d5c419177", + "start": { + "$date": "2022-01-25T00:21:14.000Z" + }, + "end": { + "$date": "2022-01-25T00:39:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f33ae2d5-5fbe-4254-98a5-e473a208f91b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-25T00:48:31.000Z" + }, + "end": { + "$date": "2022-01-25T01:09:46.000Z" + }, + "events": [ + { + "uuid": "9c90216b-d3fc-4c08-9743-aac7eff02200", + "start": { + "$date": "2022-01-25T00:48:31.000Z" + }, + "end": { + "$date": "2022-01-25T01:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1958297d-b3a0-440d-8807-481b837e40d9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-25T00:45:01.000Z" + }, + "end": { + "$date": "2022-01-25T01:09:00.000Z" + }, + "events": [ + { + "uuid": "3f0cb507-831e-405d-a5d3-cb42baf83e4e", + "start": { + "$date": "2022-01-25T00:45:01.000Z" + }, + "end": { + "$date": "2022-01-25T01:09:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce71dc7b-556d-47d6-b5bd-9bfb3b4466d8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-25T01:03:30.000Z" + }, + "end": { + "$date": "2022-01-25T01:48:57.000Z" + }, + "events": [ + { + "uuid": "2475788c-c348-4b2e-a2e9-dcb3fcb9a0f4", + "start": { + "$date": "2022-01-25T01:03:30.000Z" + }, + "end": { + "$date": "2022-01-25T01:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7842ea6-b53d-40d2-9ea9-f3f91a6e25d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-25T01:15:07.000Z" + }, + "end": { + "$date": "2022-01-25T01:55:56.000Z" + }, + "events": [ + { + "uuid": "48227d7f-e7e0-4362-9a4c-708a6c382aab", + "start": { + "$date": "2022-01-25T01:15:07.000Z" + }, + "end": { + "$date": "2022-01-25T01:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "339b7c34-53e6-432d-bd4c-da3aaedd5d11", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-25T01:37:21.000Z" + }, + "end": { + "$date": "2022-01-25T02:00:21.000Z" + }, + "events": [ + { + "uuid": "fe19802b-4aa5-4abf-a0b7-93ded79d746e", + "start": { + "$date": "2022-01-25T01:37:21.000Z" + }, + "end": { + "$date": "2022-01-25T02:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "880313c9-559a-49d3-a7a8-73ef387da787", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-25T02:03:13.000Z" + }, + "end": { + "$date": "2022-01-25T04:26:05.000Z" + }, + "events": [ + { + "uuid": "d4ae7de1-e769-4df6-8818-c0255b4def65", + "start": { + "$date": "2022-01-25T02:03:13.000Z" + }, + "end": { + "$date": "2022-01-25T04:26:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa2e5166-9681-4b05-9e7a-50ea0e6a0879", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-25T03:09:24.000Z" + }, + "end": { + "$date": "2022-01-25T03:31:45.000Z" + }, + "events": [ + { + "uuid": "fb4a7088-c046-45d1-a73f-5112cd0f94c9", + "start": { + "$date": "2022-01-25T03:09:24.000Z" + }, + "end": { + "$date": "2022-01-25T03:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "2e80d156-6f8d-4af0-b955-382ca1598922", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-25T03:25:19.000Z" + }, + "end": { + "$date": "2022-01-25T04:14:42.000Z" + }, + "events": [ + { + "uuid": "4efcff1d-e088-4f1a-b061-576a2269054e", + "start": { + "$date": "2022-01-25T03:25:19.000Z" + }, + "end": { + "$date": "2022-01-25T04:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "a400b2c1-21d5-42e9-b6c1-fe309cb16357", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-25T03:25:28.000Z" + }, + "end": { + "$date": "2022-01-25T05:31:52.000Z" + }, + "events": [ + { + "uuid": "5cf925a6-8b83-4f31-aec1-86a977f6f14c", + "start": { + "$date": "2022-01-25T03:25:28.000Z" + }, + "end": { + "$date": "2022-01-25T05:31:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4212f46-5c36-4855-9356-6764fa6daca8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-25T03:34:45.000Z" + }, + "end": { + "$date": "2022-01-25T03:49:36.000Z" + }, + "events": [ + { + "uuid": "cfd88165-d53b-4014-94af-d09f08b3482e", + "start": { + "$date": "2022-01-25T03:34:45.000Z" + }, + "end": { + "$date": "2022-01-25T03:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d8065d5a-6a08-4495-9314-181accc4d387", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T03:42:13.000Z" + }, + "end": { + "$date": "2022-01-25T04:40:32.000Z" + }, + "events": [ + { + "uuid": "ac880252-cbeb-4a1a-bd59-483eae09bd12", + "start": { + "$date": "2022-01-25T03:42:13.000Z" + }, + "end": { + "$date": "2022-01-25T04:40:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1a34bd88-20ed-40fe-91f2-09003c8e8df0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-25T03:49:52.000Z" + }, + "end": { + "$date": "2022-01-25T06:22:57.000Z" + }, + "events": [ + { + "uuid": "4a3344de-7782-43a1-bb47-501b92e27a69", + "start": { + "$date": "2022-01-25T03:49:52.000Z" + }, + "end": { + "$date": "2022-01-25T06:22:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e908c875-90f0-42a9-9913-7abf2e602b83", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-25T03:52:21.000Z" + }, + "end": { + "$date": "2022-01-25T04:19:33.000Z" + }, + "events": [ + { + "uuid": "7cf97bfc-c100-4bc9-b5e8-db7cc33953da", + "start": { + "$date": "2022-01-25T03:52:21.000Z" + }, + "end": { + "$date": "2022-01-25T04:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ad3f3254-44c5-40e7-bb21-8e67c7896570", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-25T04:19:55.000Z" + }, + "end": { + "$date": "2022-01-25T04:46:12.000Z" + }, + "events": [ + { + "uuid": "d1790d2e-4007-417f-a34e-efa9ec48d93f", + "start": { + "$date": "2022-01-25T04:19:55.000Z" + }, + "end": { + "$date": "2022-01-25T04:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ea5e1b5-59f7-4749-87a7-2f7d8ebed1ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-25T04:23:18.000Z" + }, + "end": { + "$date": "2022-01-25T04:47:54.000Z" + }, + "events": [ + { + "uuid": "cd5bca8e-c649-40ae-8689-e3328904c7df", + "start": { + "$date": "2022-01-25T04:23:18.000Z" + }, + "end": { + "$date": "2022-01-25T04:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49323829-601a-4059-939d-d843d3fc12f8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-25T04:50:54.000Z" + }, + "end": { + "$date": "2022-01-25T05:10:05.000Z" + }, + "events": [ + { + "uuid": "4ebcfdf6-9873-4029-b64c-bd836fe7737f", + "start": { + "$date": "2022-01-25T04:50:54.000Z" + }, + "end": { + "$date": "2022-01-25T05:10:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb4bc946-3475-4142-8d1e-0a1c58ff098c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-25T05:14:55.000Z" + }, + "end": { + "$date": "2022-01-25T05:37:16.000Z" + }, + "events": [ + { + "uuid": "47efe2f9-0a89-47bd-b154-c81866bfdb66", + "start": { + "$date": "2022-01-25T05:14:55.000Z" + }, + "end": { + "$date": "2022-01-25T05:37:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0c64cbc5-227c-484e-b54a-14e3c46aed00", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-25T05:55:10.000Z" + }, + "end": { + "$date": "2022-01-25T05:58:20.000Z" + }, + "events": [ + { + "uuid": "06cc74fc-0a9a-406a-8e90-9039d242460b", + "start": { + "$date": "2022-01-25T05:55:10.000Z" + }, + "end": { + "$date": "2022-01-25T05:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98822329-d0b0-47b8-895a-7adc9acc344a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-25T06:05:06.000Z" + }, + "end": { + "$date": "2022-01-25T06:30:27.000Z" + }, + "events": [ + { + "uuid": "acb73c12-cc8d-4876-874e-75c3673810a8", + "start": { + "$date": "2022-01-25T06:05:06.000Z" + }, + "end": { + "$date": "2022-01-25T06:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "19e4754f-7a1f-4bd9-b1b7-8c9d4ecf427b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-25T06:23:15.000Z" + }, + "end": { + "$date": "2022-01-25T06:53:42.000Z" + }, + "events": [ + { + "uuid": "24f887ed-09ea-4d61-a850-7e622f92e695", + "start": { + "$date": "2022-01-25T06:23:15.000Z" + }, + "end": { + "$date": "2022-01-25T06:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b07f1a21-35f3-4c49-9632-86e0cfbf269b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T06:43:09.000Z" + }, + "end": { + "$date": "2022-01-25T09:12:35.000Z" + }, + "events": [ + { + "uuid": "b06b3694-7612-4e93-94bd-9a0a27f367f6", + "start": { + "$date": "2022-01-25T06:43:09.000Z" + }, + "end": { + "$date": "2022-01-25T09:12:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3777d1e8-3aee-4cca-95cf-c96a8a9c0332", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T09:35:44.000Z" + }, + "end": { + "$date": "2022-01-25T09:53:19.000Z" + }, + "events": [ + { + "uuid": "3c77f40d-67b9-4f65-9b66-517f45f7c835", + "start": { + "$date": "2022-01-25T09:35:44.000Z" + }, + "end": { + "$date": "2022-01-25T09:53:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "482c4a19-d692-4bb6-997c-e500a1e3c978", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T09:55:29.000Z" + }, + "end": { + "$date": "2022-01-25T10:17:10.000Z" + }, + "events": [ + { + "uuid": "ae58024a-b6af-40a3-9ae7-6653a76c2f41", + "start": { + "$date": "2022-01-25T09:55:29.000Z" + }, + "end": { + "$date": "2022-01-25T10:17:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "249b5e29-c39d-439b-b4ed-cf82ec02bc3f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T10:19:45.000Z" + }, + "end": { + "$date": "2022-01-25T10:36:50.000Z" + }, + "events": [ + { + "uuid": "eceff0ee-161a-440b-b5bc-2533f1ed2e0c", + "start": { + "$date": "2022-01-25T10:19:45.000Z" + }, + "end": { + "$date": "2022-01-25T10:36:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04cfe7b6-fd37-4f7f-980c-eff613b9c8b7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T10:38:25.000Z" + }, + "end": { + "$date": "2022-01-25T10:42:06.000Z" + }, + "events": [ + { + "uuid": "3e82d7ca-a4b8-4cff-9812-fe70ab6c49c9", + "start": { + "$date": "2022-01-25T10:38:25.000Z" + }, + "end": { + "$date": "2022-01-25T10:42:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99b0bedc-a7b1-43e4-b98f-c43f4bf5f10f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T10:44:31.000Z" + }, + "end": { + "$date": "2022-01-25T10:56:56.000Z" + }, + "events": [ + { + "uuid": "f95d8a61-f8ee-4be9-a358-8b75d52186bc", + "start": { + "$date": "2022-01-25T10:44:31.000Z" + }, + "end": { + "$date": "2022-01-25T10:56:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a1fe6b1-7a33-495a-bef8-a6c193c391f4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T10:59:01.000Z" + }, + "end": { + "$date": "2022-01-25T11:19:16.000Z" + }, + "events": [ + { + "uuid": "2b5a8404-7e5c-43a6-94f6-ce2ba14bdb83", + "start": { + "$date": "2022-01-25T10:59:01.000Z" + }, + "end": { + "$date": "2022-01-25T11:19:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec42fd36-6870-4460-80ca-1e7e33d2cba6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T11:21:21.000Z" + }, + "end": { + "$date": "2022-01-25T11:42:27.000Z" + }, + "events": [ + { + "uuid": "ceb4da5e-3341-4f38-b62f-a9560f8109da", + "start": { + "$date": "2022-01-25T11:21:21.000Z" + }, + "end": { + "$date": "2022-01-25T11:42:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f9852a08-edd5-4ac3-b84c-bc338e9bd121", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T13:13:52.000Z" + }, + "end": { + "$date": "2022-01-25T14:01:43.000Z" + }, + "events": [ + { + "uuid": "b0c3f603-7313-4238-902f-3b574a8fcdbb", + "start": { + "$date": "2022-01-25T13:13:52.000Z" + }, + "end": { + "$date": "2022-01-25T14:01:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdf85c4e-7e68-4892-a953-baa4fcfe2d41", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T14:06:28.000Z" + }, + "end": { + "$date": "2022-01-25T14:26:48.000Z" + }, + "events": [ + { + "uuid": "2885ff6c-faa9-4f5f-8ea5-2f1c04672f36", + "start": { + "$date": "2022-01-25T14:06:28.000Z" + }, + "end": { + "$date": "2022-01-25T14:26:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34b71704-e464-40a6-a7ab-7011fe7539e5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T14:29:09.000Z" + }, + "end": { + "$date": "2022-01-25T14:51:59.000Z" + }, + "events": [ + { + "uuid": "c0aa06a7-c1db-4724-988a-5ab9039888d4", + "start": { + "$date": "2022-01-25T14:29:09.000Z" + }, + "end": { + "$date": "2022-01-25T14:51:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ae671b5-4e60-42c4-b90f-0ea7d195a81a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T14:54:09.000Z" + }, + "end": { + "$date": "2022-01-25T15:09:47.000Z" + }, + "events": [ + { + "uuid": "35a22dcc-51e7-47cb-b28e-8c63b7e4de62", + "start": { + "$date": "2022-01-25T14:54:09.000Z" + }, + "end": { + "$date": "2022-01-25T15:09:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2bb73c26-404b-4dbf-86a4-ae7cfe62d125", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-25T14:58:02.000Z" + }, + "end": { + "$date": "2022-01-25T15:54:26.000Z" + }, + "events": [ + { + "uuid": "ef6405b9-949f-4aa8-8b5f-b8000200594d", + "start": { + "$date": "2022-01-25T14:58:02.000Z" + }, + "end": { + "$date": "2022-01-25T15:54:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c086b8cc-bbfa-4911-8eb8-8f824c8c13fb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T15:13:05.000Z" + }, + "end": { + "$date": "2022-01-25T15:34:30.000Z" + }, + "events": [ + { + "uuid": "f423688d-560b-42c4-a382-63506357a56e", + "start": { + "$date": "2022-01-25T15:13:05.000Z" + }, + "end": { + "$date": "2022-01-25T15:34:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6dc2fb2-913e-48b2-9c72-1fa6820c6cc0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T15:36:35.000Z" + }, + "end": { + "$date": "2022-01-25T16:00:41.000Z" + }, + "events": [ + { + "uuid": "7dd797da-4b45-4ec2-89c9-074bd861a87d", + "start": { + "$date": "2022-01-25T15:36:35.000Z" + }, + "end": { + "$date": "2022-01-25T16:00:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02342d96-2350-4479-adad-7a0f690de2a8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T16:02:26.000Z" + }, + "end": { + "$date": "2022-01-25T16:25:36.000Z" + }, + "events": [ + { + "uuid": "4def82f4-fe76-4edc-b673-e6e60fcec09b", + "start": { + "$date": "2022-01-25T16:02:26.000Z" + }, + "end": { + "$date": "2022-01-25T16:25:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89580882-a688-4cf0-ae9b-f0d0f2425ee5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T16:27:57.000Z" + }, + "end": { + "$date": "2022-01-25T16:47:27.000Z" + }, + "events": [ + { + "uuid": "14508bda-78f9-425b-ba08-909d653d469d", + "start": { + "$date": "2022-01-25T16:27:57.000Z" + }, + "end": { + "$date": "2022-01-25T16:47:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9663e563-9f50-45d0-b270-a664e6e145ed", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T16:49:47.000Z" + }, + "end": { + "$date": "2022-01-25T17:13:30.000Z" + }, + "events": [ + { + "uuid": "e5587072-4460-48b6-b999-bd8ec1477e12", + "start": { + "$date": "2022-01-25T16:49:47.000Z" + }, + "end": { + "$date": "2022-01-25T17:13:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2e91114-9be8-4195-84bc-959e2ccbab86", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-25T17:09:23.000Z" + }, + "end": { + "$date": "2022-01-25T17:20:02.000Z" + }, + "events": [ + { + "uuid": "184d0db5-1387-461a-9420-26eb958b5986", + "start": { + "$date": "2022-01-25T17:09:23.000Z" + }, + "end": { + "$date": "2022-01-25T17:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f1bdbf2-5869-46c5-9a06-7afa0dd316d2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-25T17:15:48.000Z" + }, + "end": { + "$date": "2022-01-25T17:29:48.000Z" + }, + "events": [ + { + "uuid": "eb1fae0a-3392-4bb4-8841-d1766bd0c070", + "start": { + "$date": "2022-01-25T17:15:48.000Z" + }, + "end": { + "$date": "2022-01-25T17:29:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4c8fcb8-dc9f-4df3-b54d-036c8af2c1d3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-25T17:21:48.000Z" + }, + "end": { + "$date": "2022-01-25T17:36:23.000Z" + }, + "events": [ + { + "uuid": "39f78615-bec9-4aee-a80f-79a6facb91ef", + "start": { + "$date": "2022-01-25T17:21:48.000Z" + }, + "end": { + "$date": "2022-01-25T17:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1bcc2f4a-02e0-4b09-82f6-cd6422ccdfd8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-25T17:39:24.000Z" + }, + "end": { + "$date": "2022-01-25T17:54:19.000Z" + }, + "events": [ + { + "uuid": "8d1bc364-2570-4c94-a7fb-983e992765fa", + "start": { + "$date": "2022-01-25T17:39:24.000Z" + }, + "end": { + "$date": "2022-01-25T17:54:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7421956-6505-4bf1-9549-d4b430f44b53", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-25T17:55:25.000Z" + }, + "end": { + "$date": "2022-01-25T18:13:55.000Z" + }, + "events": [ + { + "uuid": "7d768802-2703-4685-80ca-5287c0168b81", + "start": { + "$date": "2022-01-25T17:55:25.000Z" + }, + "end": { + "$date": "2022-01-25T18:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "053b4402-8359-469b-b8b4-a7866e69b8f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-25T18:09:39.000Z" + }, + "end": { + "$date": "2022-01-25T20:18:10.000Z" + }, + "events": [ + { + "uuid": "8b4907cc-281d-4652-bfb1-764f1ad9416f", + "start": { + "$date": "2022-01-25T18:09:39.000Z" + }, + "end": { + "$date": "2022-01-25T20:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8b74ac2-9c23-483e-bbcc-3368d3d95262", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-25T18:14:03.000Z" + }, + "end": { + "$date": "2022-01-25T18:15:31.000Z" + }, + "events": [ + { + "uuid": "d581e567-5067-4028-91ad-cb64f000859f", + "start": { + "$date": "2022-01-25T18:14:03.000Z" + }, + "end": { + "$date": "2022-01-25T18:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "babc7a3d-78eb-441b-80bc-3d4bbfd3bcb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-25T21:52:00.000Z" + }, + "end": { + "$date": "2022-01-25T21:53:18.000Z" + }, + "events": [ + { + "uuid": "711d99ed-67db-4b7a-adba-e10ee2d0d32d", + "start": { + "$date": "2022-01-25T21:52:00.000Z" + }, + "end": { + "$date": "2022-01-25T21:53:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1aae67c-34e7-4ffb-8341-eff4fdc8bea0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-25T22:05:06.000Z" + }, + "end": { + "$date": "2022-01-25T22:47:14.000Z" + }, + "events": [ + { + "uuid": "e94e9c0d-25d9-4984-a0a0-12cce6f0c55d", + "start": { + "$date": "2022-01-25T22:05:06.000Z" + }, + "end": { + "$date": "2022-01-25T22:47:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "27a121b3-5e33-4487-add6-ec8483958718", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-25T23:22:54.000Z" + }, + "end": { + "$date": "2022-01-25T23:25:10.000Z" + }, + "events": [ + { + "uuid": "f5412694-78d7-45b6-9ef7-760732a20df4", + "start": { + "$date": "2022-01-25T23:22:54.000Z" + }, + "end": { + "$date": "2022-01-25T23:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d142eb7-bbf4-411d-974d-b93188785fa3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-26T00:19:45.000Z" + }, + "end": { + "$date": "2022-01-26T00:40:22.000Z" + }, + "events": [ + { + "uuid": "44ed0939-2db2-4273-9da0-11086590ba37", + "start": { + "$date": "2022-01-26T00:19:45.000Z" + }, + "end": { + "$date": "2022-01-26T00:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0a4c389f-80c2-4bb3-afad-bec7ba13e0f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-26T00:34:23.000Z" + }, + "end": { + "$date": "2022-01-26T01:17:44.000Z" + }, + "events": [ + { + "uuid": "68d515f2-7a2f-4785-8a88-cb078cffb5c1", + "start": { + "$date": "2022-01-26T00:34:23.000Z" + }, + "end": { + "$date": "2022-01-26T01:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "c59929b3-d5be-4e0e-8312-79acbdaade00", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-26T01:00:03.000Z" + }, + "end": { + "$date": "2022-01-26T01:54:39.000Z" + }, + "events": [ + { + "uuid": "af9fac92-da22-41d7-8eac-5bafb08e56ae", + "start": { + "$date": "2022-01-26T01:00:03.000Z" + }, + "end": { + "$date": "2022-01-26T01:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7a46be93-d803-463c-81e1-86f0ae8e95f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-26T01:44:39.000Z" + }, + "end": { + "$date": "2022-01-26T06:03:07.000Z" + }, + "events": [ + { + "uuid": "c25c4a29-36e6-4185-81c0-081db2bf2e72", + "start": { + "$date": "2022-01-26T01:44:39.000Z" + }, + "end": { + "$date": "2022-01-26T06:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9a2800de-9ac4-4b3c-8126-4e77d27f159b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-26T02:03:05.000Z" + }, + "end": { + "$date": "2022-01-26T04:46:15.000Z" + }, + "events": [ + { + "uuid": "0b889613-c369-409d-adbc-ad6c1badfdbe", + "start": { + "$date": "2022-01-26T02:03:05.000Z" + }, + "end": { + "$date": "2022-01-26T04:46:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "76aa7552-c1f1-4700-92ef-4f8e127a0e6d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-26T02:57:30.000Z" + }, + "end": { + "$date": "2022-01-26T03:52:13.000Z" + }, + "events": [ + { + "uuid": "ea813540-bc10-44ca-88ad-9deb507fd438", + "start": { + "$date": "2022-01-26T02:57:30.000Z" + }, + "end": { + "$date": "2022-01-26T03:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82715ca0-d568-4a6f-ae84-3c248821b57d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-26T03:26:31.000Z" + }, + "end": { + "$date": "2022-01-26T04:46:25.000Z" + }, + "events": [ + { + "uuid": "35617824-7dde-4243-a873-94402ef8c4fb", + "start": { + "$date": "2022-01-26T03:26:31.000Z" + }, + "end": { + "$date": "2022-01-26T04:46:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "90dd2e14-52c9-4f97-90cc-6213737837cc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-26T03:38:09.000Z" + }, + "end": { + "$date": "2022-01-26T04:43:57.000Z" + }, + "events": [ + { + "uuid": "268666e4-c658-4ec4-8297-ba128f5673c2", + "start": { + "$date": "2022-01-26T03:38:09.000Z" + }, + "end": { + "$date": "2022-01-26T04:43:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3e8eb0d-f59d-4c20-873c-7b0cabb7c244", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T04:02:16.000Z" + }, + "end": { + "$date": "2022-01-26T04:38:39.000Z" + }, + "events": [ + { + "uuid": "c6c68f23-73fa-4648-b144-600c7eea6820", + "start": { + "$date": "2022-01-26T04:02:16.000Z" + }, + "end": { + "$date": "2022-01-26T04:38:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d8134b0-3070-4023-87f5-1e529cf2c232", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-26T04:03:05.000Z" + }, + "end": { + "$date": "2022-01-26T04:11:36.000Z" + }, + "events": [ + { + "uuid": "535da816-0013-4dd4-b2d5-a84b6314f8f3", + "start": { + "$date": "2022-01-26T04:03:05.000Z" + }, + "end": { + "$date": "2022-01-26T04:11:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "946a4389-1b80-40a2-806b-ed2deb4dc61c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-26T04:07:19.000Z" + }, + "end": { + "$date": "2022-01-26T04:51:04.000Z" + }, + "events": [ + { + "uuid": "ff13bd27-0161-4afd-870a-938354f5f57c", + "start": { + "$date": "2022-01-26T04:07:19.000Z" + }, + "end": { + "$date": "2022-01-26T04:51:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "858983af-be15-40c9-8966-5c2d499940d0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-26T04:12:39.000Z" + }, + "end": { + "$date": "2022-01-26T04:47:53.000Z" + }, + "events": [ + { + "uuid": "07b1f58a-1c4e-432d-b8f0-5b5d541ff993", + "start": { + "$date": "2022-01-26T04:12:39.000Z" + }, + "end": { + "$date": "2022-01-26T04:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "065d3491-210b-4a57-b1de-14f929a3f3f9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T04:25:28.000Z" + }, + "end": { + "$date": "2022-01-26T04:55:23.000Z" + }, + "events": [ + { + "uuid": "0f70e24c-0467-42c9-b6d5-87f7d437fa31", + "start": { + "$date": "2022-01-26T04:25:28.000Z" + }, + "end": { + "$date": "2022-01-26T04:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcf5bcf9-a2cd-4e7f-91b1-75587c50f889", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T05:00:31.000Z" + }, + "end": { + "$date": "2022-01-26T05:19:32.000Z" + }, + "events": [ + { + "uuid": "e5778da2-0a30-4487-b95e-51e9e34a2064", + "start": { + "$date": "2022-01-26T05:00:31.000Z" + }, + "end": { + "$date": "2022-01-26T05:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b35f0ea-064a-4f46-bb9e-fd3412bc0ba3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-26T04:48:39.000Z" + }, + "end": { + "$date": "2022-01-26T05:26:33.000Z" + }, + "events": [ + { + "uuid": "98abf95e-b078-44cd-9072-7811dbdeed4e", + "start": { + "$date": "2022-01-26T04:48:39.000Z" + }, + "end": { + "$date": "2022-01-26T05:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3359e001-fa34-4c6d-ad36-9cb1bad7d7a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-26T04:51:14.000Z" + }, + "end": { + "$date": "2022-01-26T06:03:49.000Z" + }, + "events": [ + { + "uuid": "800dea59-213c-4f25-ba54-ab8804728f5b", + "start": { + "$date": "2022-01-26T04:51:14.000Z" + }, + "end": { + "$date": "2022-01-26T05:52:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fc97ab47-48b9-4718-aa1b-69ed799148ff", + "start": { + "$date": "2022-01-26T05:52:14.000Z" + }, + "end": { + "$date": "2022-01-26T06:03:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12a80343-a886-4ec7-b883-6dbbc247a5f2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T05:00:28.000Z" + }, + "end": { + "$date": "2022-01-26T05:19:37.000Z" + }, + "events": [ + { + "uuid": "f332543c-b713-4b16-b51f-afc4e9fce6dd", + "start": { + "$date": "2022-01-26T05:00:28.000Z" + }, + "end": { + "$date": "2022-01-26T05:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b32af785-51dd-4201-9777-18cb93da92b6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-26T05:00:28.000Z" + }, + "end": { + "$date": "2022-01-26T05:19:38.000Z" + }, + "events": [ + { + "uuid": "d598370f-2d3c-455b-8e0b-7077be233d59", + "start": { + "$date": "2022-01-26T05:00:28.000Z" + }, + "end": { + "$date": "2022-01-26T05:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "2b587983-e49e-4c90-860d-045a25d20888", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-26T05:02:57.000Z" + }, + "end": { + "$date": "2022-01-26T05:08:48.000Z" + }, + "events": [ + { + "uuid": "c7f6ae33-bf36-4820-97c4-31533e82739e", + "start": { + "$date": "2022-01-26T05:02:57.000Z" + }, + "end": { + "$date": "2022-01-26T05:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74745227-0288-4659-b7e1-b80fdf6f450f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T05:24:02.000Z" + }, + "end": { + "$date": "2022-01-26T05:41:33.000Z" + }, + "events": [ + { + "uuid": "8ede72b7-1461-4e79-9198-ac61c72ca24a", + "start": { + "$date": "2022-01-26T05:24:02.000Z" + }, + "end": { + "$date": "2022-01-26T05:41:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf29e216-03f9-4943-969f-313cb9ef944d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-26T05:24:09.000Z" + }, + "end": { + "$date": "2022-01-26T05:41:23.000Z" + }, + "events": [ + { + "uuid": "685f7680-7181-44eb-bc4c-bd03d99116f8", + "start": { + "$date": "2022-01-26T05:24:09.000Z" + }, + "end": { + "$date": "2022-01-26T05:41:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "024790e6-40b7-49ef-a1ff-e3139ffbf246", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T05:24:09.000Z" + }, + "end": { + "$date": "2022-01-26T05:41:27.000Z" + }, + "events": [ + { + "uuid": "eaa2d85c-e80f-43bf-b67f-ae1943f52b32", + "start": { + "$date": "2022-01-26T05:24:09.000Z" + }, + "end": { + "$date": "2022-01-26T05:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9178e82b-c9b9-4625-8b44-8954d2927eba", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-26T05:30:28.000Z" + }, + "end": { + "$date": "2022-01-26T05:52:09.000Z" + }, + "events": [ + { + "uuid": "c31bfe1d-212f-40af-b80b-9e88922f5fcf", + "start": { + "$date": "2022-01-26T05:30:28.000Z" + }, + "end": { + "$date": "2022-01-26T05:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74c07da2-d237-43dc-adea-cc6d57d7953d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T05:45:23.000Z" + }, + "end": { + "$date": "2022-01-26T06:22:48.000Z" + }, + "events": [ + { + "uuid": "4d4339a8-612a-4a7c-bfa8-acfa4782fdeb", + "start": { + "$date": "2022-01-26T05:45:23.000Z" + }, + "end": { + "$date": "2022-01-26T06:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "276824db-6bd4-4181-a518-273f8b2e317b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-26T05:45:24.000Z" + }, + "end": { + "$date": "2022-01-26T06:22:50.000Z" + }, + "events": [ + { + "uuid": "03694f01-f905-44bd-8393-6f9772f4c29f", + "start": { + "$date": "2022-01-26T05:45:24.000Z" + }, + "end": { + "$date": "2022-01-26T06:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "089f92d6-4422-4e90-a9c6-f85689a02faa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-26T05:45:26.000Z" + }, + "end": { + "$date": "2022-01-26T06:23:03.000Z" + }, + "events": [ + { + "uuid": "55306fb1-f76d-4af6-9c65-eab6d24b0459", + "start": { + "$date": "2022-01-26T05:45:26.000Z" + }, + "end": { + "$date": "2022-01-26T06:23:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fc61854c-00cb-45a1-9db0-2b3475efb0b2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T05:45:24.000Z" + }, + "end": { + "$date": "2022-01-26T06:22:51.000Z" + }, + "events": [ + { + "uuid": "c2ea7081-3f17-4591-b2a5-eccdf63b38b7", + "start": { + "$date": "2022-01-26T05:45:24.000Z" + }, + "end": { + "$date": "2022-01-26T06:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd791905-ee87-4800-8628-79464f8c784b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-26T05:54:59.000Z" + }, + "end": { + "$date": "2022-01-26T06:20:20.000Z" + }, + "events": [ + { + "uuid": "b11aea96-5c78-4a51-b9b3-61dea52e3ec8", + "start": { + "$date": "2022-01-26T05:54:59.000Z" + }, + "end": { + "$date": "2022-01-26T06:20:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "b3374cec-2315-43d1-a8e6-b020f1398e85", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-26T06:47:20.000Z" + }, + "end": { + "$date": "2022-01-26T06:47:29.000Z" + }, + "events": [ + { + "uuid": "f53139ce-d8be-4cc1-83d3-f11a1511ee85", + "start": { + "$date": "2022-01-26T06:47:20.000Z" + }, + "end": { + "$date": "2022-01-26T06:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "216a7cd9-8da9-4646-9bdd-ecacdffe56df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T06:25:48.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:34.000Z" + }, + "events": [ + { + "uuid": "f14e019d-a5fd-46da-afa2-e04459605949", + "start": { + "$date": "2022-01-26T06:25:48.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c38bfc8b-0140-482f-b8b2-0765a3a6c255", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-26T06:25:57.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:41.000Z" + }, + "events": [ + { + "uuid": "f1b1fc55-5b10-4691-ae26-772772054ae9", + "start": { + "$date": "2022-01-26T06:25:57.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8fdcd9c-c157-4c90-878f-c122ea24d0eb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T06:25:50.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:31.000Z" + }, + "events": [ + { + "uuid": "026316d0-9eb6-4f26-9bf5-343c25f7c947", + "start": { + "$date": "2022-01-26T06:25:50.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d87ba51c-9b6b-43c5-b632-813325a06239", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-26T06:25:50.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:39.000Z" + }, + "events": [ + { + "uuid": "a3308685-c6c5-4423-af2b-911773dc39e3", + "start": { + "$date": "2022-01-26T06:25:50.000Z" + }, + "end": { + "$date": "2022-01-26T06:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "07f45ce3-afe9-4f30-82f9-8f1de445ce4b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-26T06:47:50.000Z" + }, + "end": { + "$date": "2022-01-26T08:01:47.000Z" + }, + "events": [ + { + "uuid": "7efce8f1-a2b2-4b56-a6d8-4fbc2afc3f72", + "start": { + "$date": "2022-01-26T06:47:50.000Z" + }, + "end": { + "$date": "2022-01-26T08:01:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "08fe784f-9f71-4481-a1d1-9927e3334d00", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-26T06:48:01.000Z" + }, + "end": { + "$date": "2022-01-26T08:02:27.000Z" + }, + "events": [ + { + "uuid": "0eb2bc55-304e-4fce-9952-dcf5c3782e43", + "start": { + "$date": "2022-01-26T06:48:01.000Z" + }, + "end": { + "$date": "2022-01-26T08:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e68ee1cf-9dc1-4b28-be9d-379b41fd6455", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T06:53:39.000Z" + }, + "end": { + "$date": "2022-01-26T07:23:49.000Z" + }, + "events": [ + { + "uuid": "83216447-2b8d-42c1-b260-0ca03f58ac15", + "start": { + "$date": "2022-01-26T06:53:39.000Z" + }, + "end": { + "$date": "2022-01-26T07:23:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6e1e9ebd-ab2f-49d6-b116-d8f96feee091", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T06:53:41.000Z" + }, + "end": { + "$date": "2022-01-26T07:23:59.000Z" + }, + "events": [ + { + "uuid": "52aa2b22-ff14-494a-ae83-c58bfc793df2", + "start": { + "$date": "2022-01-26T06:53:41.000Z" + }, + "end": { + "$date": "2022-01-26T07:23:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01793603-021f-4c05-8082-d50a8a5bea50", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-26T06:53:43.000Z" + }, + "end": { + "$date": "2022-01-26T07:24:01.000Z" + }, + "events": [ + { + "uuid": "314b32a7-dfb5-499d-95bd-51f1f2c735dc", + "start": { + "$date": "2022-01-26T06:53:43.000Z" + }, + "end": { + "$date": "2022-01-26T07:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f08b8d4-be43-4185-81f1-f7e0df2de02d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-26T06:53:35.000Z" + }, + "end": { + "$date": "2022-01-26T07:23:55.000Z" + }, + "events": [ + { + "uuid": "617d3efe-b128-4302-a0da-1e71ada701af", + "start": { + "$date": "2022-01-26T06:53:35.000Z" + }, + "end": { + "$date": "2022-01-26T07:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "500f1eac-eebf-4073-bd70-effb0264830d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-26T07:27:04.000Z" + }, + "end": { + "$date": "2022-01-26T07:43:16.000Z" + }, + "events": [ + { + "uuid": "9c633f97-054c-4298-b63b-602826024bfa", + "start": { + "$date": "2022-01-26T07:27:04.000Z" + }, + "end": { + "$date": "2022-01-26T07:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9764d53b-c3ba-4fb6-90e8-b7ab2939f582", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-26T07:27:06.000Z" + }, + "end": { + "$date": "2022-01-26T07:43:07.000Z" + }, + "events": [ + { + "uuid": "a63715b0-5079-4335-b757-0526d73d83eb", + "start": { + "$date": "2022-01-26T07:27:06.000Z" + }, + "end": { + "$date": "2022-01-26T07:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af2be112-2080-4eac-92be-dd754d4430fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-26T07:27:04.000Z" + }, + "end": { + "$date": "2022-01-26T07:42:59.000Z" + }, + "events": [ + { + "uuid": "d9e5253b-a19f-46d7-92d9-9bd5d7b8748f", + "start": { + "$date": "2022-01-26T07:27:04.000Z" + }, + "end": { + "$date": "2022-01-26T07:42:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ff44fc2-f99b-4266-9064-71829c5ff705", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-26T07:27:01.000Z" + }, + "end": { + "$date": "2022-01-26T07:43:05.000Z" + }, + "events": [ + { + "uuid": "1f8d9da7-c283-4a84-81cc-b7c2fc58eb30", + "start": { + "$date": "2022-01-26T07:27:01.000Z" + }, + "end": { + "$date": "2022-01-26T07:43:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c8302bce-096b-4976-9f6e-52ecf8970fd2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-26T09:49:25.000Z" + }, + "end": { + "$date": "2022-01-26T11:59:02.000Z" + }, + "events": [ + { + "uuid": "27c5123d-8e49-484a-8803-817962a34d7b", + "start": { + "$date": "2022-01-26T09:49:25.000Z" + }, + "end": { + "$date": "2022-01-26T11:59:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2f9d3dd7-b32c-4e35-8218-7b3244672723", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-26T14:50:40.000Z" + }, + "end": { + "$date": "2022-01-26T15:15:51.000Z" + }, + "events": [ + { + "uuid": "4616baf4-4643-470f-a983-ec973c161563", + "start": { + "$date": "2022-01-26T14:50:40.000Z" + }, + "end": { + "$date": "2022-01-26T15:15:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c0bb8b07-d13d-47bc-ad87-97c6ca789ec2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-26T15:16:06.000Z" + }, + "end": { + "$date": "2022-01-26T16:42:01.000Z" + }, + "events": [ + { + "uuid": "50750fb7-d061-4ef5-87a2-2d235dc9142a", + "start": { + "$date": "2022-01-26T15:16:06.000Z" + }, + "end": { + "$date": "2022-01-26T16:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "9c9f020d-96d6-4d1f-8dac-eab2fb73ab75", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-26T17:48:54.000Z" + }, + "end": { + "$date": "2022-01-26T17:49:34.000Z" + }, + "events": [ + { + "uuid": "0e3cea73-512d-4ac6-8439-533d9976dc83", + "start": { + "$date": "2022-01-26T17:48:54.000Z" + }, + "end": { + "$date": "2022-01-26T17:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb7e3168-e277-4a19-9f27-f174224fc1a2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-26T23:31:16.000Z" + }, + "end": { + "$date": "2022-01-26T23:51:24.000Z" + }, + "events": [ + { + "uuid": "21f6ab54-1484-49aa-9b13-8d2b98a41933", + "start": { + "$date": "2022-01-26T23:31:16.000Z" + }, + "end": { + "$date": "2022-01-26T23:51:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "29399e36-c2b6-4cb3-8bd6-d19f08f0777e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T00:33:33.000Z" + }, + "end": { + "$date": "2022-01-27T00:49:59.000Z" + }, + "events": [ + { + "uuid": "fd71a83e-bc5c-4dbe-98ce-0d797314d691", + "start": { + "$date": "2022-01-27T00:33:33.000Z" + }, + "end": { + "$date": "2022-01-27T00:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "bd6eb6bf-53a1-4e04-a56c-8441ee3408d2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-27T00:41:22.000Z" + }, + "end": { + "$date": "2022-01-27T01:16:03.000Z" + }, + "events": [ + { + "uuid": "4e615ea2-522f-4da5-897e-76a4550b1c50", + "start": { + "$date": "2022-01-27T00:41:22.000Z" + }, + "end": { + "$date": "2022-01-27T01:16:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9dc4b08-a657-454e-a3eb-fcf37fd2380f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T00:51:49.000Z" + }, + "end": { + "$date": "2022-01-27T01:08:04.000Z" + }, + "events": [ + { + "uuid": "088eaa43-7081-491b-b103-47e6ed75a582", + "start": { + "$date": "2022-01-27T00:51:49.000Z" + }, + "end": { + "$date": "2022-01-27T01:08:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "46db3e7f-3060-43e6-b887-07e3340bef23", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-27T01:01:04.000Z" + }, + "end": { + "$date": "2022-01-27T02:30:39.000Z" + }, + "events": [ + { + "uuid": "03a109af-c7f7-491c-a6cc-3335e17a4ba5", + "start": { + "$date": "2022-01-27T01:01:04.000Z" + }, + "end": { + "$date": "2022-01-27T02:30:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e4999ac-b7f8-4cab-a5da-72adef096181", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T01:11:40.000Z" + }, + "end": { + "$date": "2022-01-27T01:30:50.000Z" + }, + "events": [ + { + "uuid": "abc2fa9c-d545-4ef8-9e7f-191f63784070", + "start": { + "$date": "2022-01-27T01:11:40.000Z" + }, + "end": { + "$date": "2022-01-27T01:30:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "418b469c-d293-44ea-b6e4-ce506fab5d85", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-27T01:14:17.000Z" + }, + "end": { + "$date": "2022-01-27T03:03:27.000Z" + }, + "events": [ + { + "uuid": "7bbd27c6-1307-4972-8213-84df9e7de5f4", + "start": { + "$date": "2022-01-27T01:14:17.000Z" + }, + "end": { + "$date": "2022-01-27T02:26:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a32d2d3-6453-48a7-8ab0-566091298370", + "start": { + "$date": "2022-01-27T02:26:17.000Z" + }, + "end": { + "$date": "2022-01-27T02:35:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b114d717-9db9-4663-89ca-e2056a7ee53d", + "start": { + "$date": "2022-01-27T02:35:17.000Z" + }, + "end": { + "$date": "2022-01-27T02:37:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3248f1f-f8eb-4240-a030-ea5e0b53e145", + "start": { + "$date": "2022-01-27T02:37:17.000Z" + }, + "end": { + "$date": "2022-01-27T03:03:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e9f19e14-caa7-465a-9519-3c35ead2bebe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-27T01:16:18.000Z" + }, + "end": { + "$date": "2022-01-27T03:23:23.000Z" + }, + "events": [ + { + "uuid": "c6212a3e-7b4b-4a9c-b1d0-ad9e37ec1a60", + "start": { + "$date": "2022-01-27T01:16:18.000Z" + }, + "end": { + "$date": "2022-01-27T03:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "cbc39968-15d0-4cc1-aa97-59e4b92ab4c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-27T02:32:19.000Z" + }, + "end": { + "$date": "2022-01-27T05:19:58.000Z" + }, + "events": [ + { + "uuid": "685d6b0d-d09f-43b7-8166-68e0fe81efd6", + "start": { + "$date": "2022-01-27T02:32:19.000Z" + }, + "end": { + "$date": "2022-01-27T05:19:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fccbc41e-b0f7-498a-9274-224a5e98cce0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-27T02:40:30.000Z" + }, + "end": { + "$date": "2022-01-27T03:57:57.000Z" + }, + "events": [ + { + "uuid": "729e6d7a-f2bf-40fd-97b6-227fe1255a96", + "start": { + "$date": "2022-01-27T02:40:30.000Z" + }, + "end": { + "$date": "2022-01-27T03:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bcea981-1821-4d04-8dec-b7c08012f3ef", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T03:06:10.000Z" + }, + "end": { + "$date": "2022-01-27T03:22:20.000Z" + }, + "events": [ + { + "uuid": "ba8416ca-5fa0-4b99-9b98-34e24053825e", + "start": { + "$date": "2022-01-27T03:06:10.000Z" + }, + "end": { + "$date": "2022-01-27T03:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "89139fed-f69b-4867-a19d-d503ee365142", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T03:25:31.000Z" + }, + "end": { + "$date": "2022-01-27T03:48:32.000Z" + }, + "events": [ + { + "uuid": "0b0b197c-381a-42f8-a94f-4ea262d14aba", + "start": { + "$date": "2022-01-27T03:25:31.000Z" + }, + "end": { + "$date": "2022-01-27T03:48:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "f7213c2f-30f4-4425-95be-5cc126c63146", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-27T03:35:34.000Z" + }, + "end": { + "$date": "2022-01-27T04:55:12.000Z" + }, + "events": [ + { + "uuid": "68d6c6c6-5c18-4ba4-b1a5-fc8a83b0c14a", + "start": { + "$date": "2022-01-27T03:35:34.000Z" + }, + "end": { + "$date": "2022-01-27T04:55:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "849d36d9-d566-4117-a4de-aee38e55ff2d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T03:52:28.000Z" + }, + "end": { + "$date": "2022-01-27T04:22:20.000Z" + }, + "events": [ + { + "uuid": "1d7b93da-e4e4-48d6-bed2-0b9d476d591b", + "start": { + "$date": "2022-01-27T03:52:28.000Z" + }, + "end": { + "$date": "2022-01-27T04:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "d2764291-703a-4b8b-b314-422111f9699a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-27T03:55:58.000Z" + }, + "end": { + "$date": "2022-01-27T04:20:49.000Z" + }, + "events": [ + { + "uuid": "70bf0bcb-061c-4c02-a7b5-00821f504f47", + "start": { + "$date": "2022-01-27T03:55:58.000Z" + }, + "end": { + "$date": "2022-01-27T04:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "33539619-579f-443a-af1f-61e44b768662", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-27T04:14:25.000Z" + }, + "end": { + "$date": "2022-01-27T05:21:03.000Z" + }, + "events": [ + { + "uuid": "a1bde1fb-4e2b-44a3-b035-1575cce9fa4b", + "start": { + "$date": "2022-01-27T04:14:25.000Z" + }, + "end": { + "$date": "2022-01-27T05:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25aa2f22-ec2b-4515-bc93-81ae8ad22734", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-27T04:21:02.000Z" + }, + "end": { + "$date": "2022-01-27T04:51:25.000Z" + }, + "events": [ + { + "uuid": "5288ae39-428c-4295-a0ee-61c3515acb6f", + "start": { + "$date": "2022-01-27T04:21:02.000Z" + }, + "end": { + "$date": "2022-01-27T04:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdc41195-c540-4ca2-bd61-dc1fdfe3939b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T04:23:09.000Z" + }, + "end": { + "$date": "2022-01-27T04:59:33.000Z" + }, + "events": [ + { + "uuid": "f5953c17-7e5d-4689-b98d-75d68420cc2c", + "start": { + "$date": "2022-01-27T04:23:09.000Z" + }, + "end": { + "$date": "2022-01-27T04:59:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3326b571-c384-4685-8cf3-9b32458cf707", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-27T04:52:43.000Z" + }, + "end": { + "$date": "2022-01-27T05:39:59.000Z" + }, + "events": [ + { + "uuid": "32140238-e0e4-46fc-9b83-9eb32803838a", + "start": { + "$date": "2022-01-27T04:52:43.000Z" + }, + "end": { + "$date": "2022-01-27T05:39:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2382d7fd-7632-4ae1-86df-0533b3f5d774", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-27T04:55:47.000Z" + }, + "end": { + "$date": "2022-01-27T05:20:23.000Z" + }, + "events": [ + { + "uuid": "2a77108b-43d3-47e0-96b1-a6b8df1a2d21", + "start": { + "$date": "2022-01-27T04:55:47.000Z" + }, + "end": { + "$date": "2022-01-27T05:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c8e3e8a-4e7d-4ecb-b0e9-843cd7381a42", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T05:00:30.000Z" + }, + "end": { + "$date": "2022-01-27T05:10:11.000Z" + }, + "events": [ + { + "uuid": "f1cac8f8-f51d-4348-b4e4-b2995115be1c", + "start": { + "$date": "2022-01-27T05:00:30.000Z" + }, + "end": { + "$date": "2022-01-27T05:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f66a037-6914-488e-be30-167c8a6d6a0a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-27T05:10:23.000Z" + }, + "end": { + "$date": "2022-01-27T05:35:55.000Z" + }, + "events": [ + { + "uuid": "0b48f949-52ac-44d3-919c-a04ae7f9a566", + "start": { + "$date": "2022-01-27T05:10:23.000Z" + }, + "end": { + "$date": "2022-01-27T05:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "565cdd75-2512-49df-92f4-cfe368489d03", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-27T05:26:23.000Z" + }, + "end": { + "$date": "2022-01-27T06:36:44.000Z" + }, + "events": [ + { + "uuid": "635e31be-8eef-4b1a-9315-e9cc8eada473", + "start": { + "$date": "2022-01-27T05:26:23.000Z" + }, + "end": { + "$date": "2022-01-27T05:41:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5a566350-515b-4507-b61c-1d22ef8a6278", + "start": { + "$date": "2022-01-27T05:41:23.000Z" + }, + "end": { + "$date": "2022-01-27T05:52:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e00ff4e-10d5-45f6-b364-467833d71215", + "start": { + "$date": "2022-01-27T05:52:23.000Z" + }, + "end": { + "$date": "2022-01-27T06:02:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b14775b0-3486-4510-a994-b9b9481f6840", + "start": { + "$date": "2022-01-27T06:02:23.000Z" + }, + "end": { + "$date": "2022-01-27T06:36:44.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b71fb383-025f-4af1-a8a5-c4a7e2e1ae53", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-27T05:27:02.000Z" + }, + "end": { + "$date": "2022-01-27T07:18:08.000Z" + }, + "events": [ + { + "uuid": "5e9df7f4-7b0f-4d56-bdff-5d28182c9e7a", + "start": { + "$date": "2022-01-27T05:27:02.000Z" + }, + "end": { + "$date": "2022-01-27T07:18:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66970a01-101c-4f51-bf15-1a1de5a422d2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-27T05:58:16.000Z" + }, + "end": { + "$date": "2022-01-27T06:26:02.000Z" + }, + "events": [ + { + "uuid": "e8db8d22-6a15-4e70-9078-5075195a9b37", + "start": { + "$date": "2022-01-27T05:58:16.000Z" + }, + "end": { + "$date": "2022-01-27T06:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e914cfe8-9c1a-4d47-aeca-50b5e3757a5d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-27T05:58:19.000Z" + }, + "end": { + "$date": "2022-01-27T06:25:54.000Z" + }, + "events": [ + { + "uuid": "c618fe6a-95d7-4bf6-9cd1-7ee8427356b1", + "start": { + "$date": "2022-01-27T05:58:19.000Z" + }, + "end": { + "$date": "2022-01-27T06:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a44f4920-93ee-44f8-a645-194b471cd6f8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-27T06:28:07.000Z" + }, + "end": { + "$date": "2022-01-27T06:41:27.000Z" + }, + "events": [ + { + "uuid": "b0d2ae04-5450-415c-be78-1ae6b96e6d21", + "start": { + "$date": "2022-01-27T06:28:07.000Z" + }, + "end": { + "$date": "2022-01-27T06:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "624582c2-2646-4344-ab87-53f3ed60f6fe", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-27T06:28:14.000Z" + }, + "end": { + "$date": "2022-01-27T06:41:25.000Z" + }, + "events": [ + { + "uuid": "62ac0cd2-b869-4ced-8bec-711255b8bcb5", + "start": { + "$date": "2022-01-27T06:28:14.000Z" + }, + "end": { + "$date": "2022-01-27T06:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a16ae4b-4e99-4ea7-9e1b-50b76ef3f814", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-27T06:34:22.000Z" + }, + "end": { + "$date": "2022-01-27T07:09:33.000Z" + }, + "events": [ + { + "uuid": "d644b94b-631f-421d-bfa8-d88f83656e4b", + "start": { + "$date": "2022-01-27T06:34:22.000Z" + }, + "end": { + "$date": "2022-01-27T07:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f01b484-9d3c-4a3d-a8eb-544cf0cb2b81", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-27T06:45:32.000Z" + }, + "end": { + "$date": "2022-01-27T07:10:48.000Z" + }, + "events": [ + { + "uuid": "23b19c30-f0ee-447d-a97e-8fc180b0e05e", + "start": { + "$date": "2022-01-27T06:45:32.000Z" + }, + "end": { + "$date": "2022-01-27T07:10:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2eb4afa4-c080-4a61-8046-803ac8559264", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-27T06:45:30.000Z" + }, + "end": { + "$date": "2022-01-27T07:10:46.000Z" + }, + "events": [ + { + "uuid": "ffcc9659-d9f3-45ef-8909-6d55a5ab2f70", + "start": { + "$date": "2022-01-27T06:45:30.000Z" + }, + "end": { + "$date": "2022-01-27T07:10:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6024497-93ca-4315-b61f-d6aca54c6915", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-27T07:16:13.000Z" + }, + "end": { + "$date": "2022-01-27T07:53:58.000Z" + }, + "events": [ + { + "uuid": "793c36b4-7164-49b1-98db-6d286505ba61", + "start": { + "$date": "2022-01-27T07:16:13.000Z" + }, + "end": { + "$date": "2022-01-27T07:53:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7402b5fc-1ad1-4a22-9345-4c05f0e247db", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-27T07:16:48.000Z" + }, + "end": { + "$date": "2022-01-27T07:29:23.000Z" + }, + "events": [ + { + "uuid": "1a468e0e-fe3d-4f4b-b5b7-92b1865e7ca0", + "start": { + "$date": "2022-01-27T07:16:48.000Z" + }, + "end": { + "$date": "2022-01-27T07:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f480f888-36b8-49e1-a68e-e43fd9a023ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-27T07:16:46.000Z" + }, + "end": { + "$date": "2022-01-27T07:29:21.000Z" + }, + "events": [ + { + "uuid": "cb6e79ea-1c8a-436a-bbb7-b4d4c3fe1e55", + "start": { + "$date": "2022-01-27T07:16:46.000Z" + }, + "end": { + "$date": "2022-01-27T07:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ac3d8c8-3b84-4587-9e72-0e736d51f3b4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-27T07:33:33.000Z" + }, + "end": { + "$date": "2022-01-27T07:55:39.000Z" + }, + "events": [ + { + "uuid": "b17286e8-acd1-43e5-a798-27fe1e7a8bf5", + "start": { + "$date": "2022-01-27T07:33:33.000Z" + }, + "end": { + "$date": "2022-01-27T07:55:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fbdc045-7a2d-4fca-8fd4-ec9fd4be4a3c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-27T07:33:42.000Z" + }, + "end": { + "$date": "2022-01-27T07:55:32.000Z" + }, + "events": [ + { + "uuid": "f44b355c-a767-4ec0-99e2-7fa79fb8800d", + "start": { + "$date": "2022-01-27T07:33:42.000Z" + }, + "end": { + "$date": "2022-01-27T07:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a647ac3e-3e1f-455a-8aaa-0fd670d45e3a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-27T10:24:23.000Z" + }, + "end": { + "$date": "2022-01-27T12:37:09.000Z" + }, + "events": [ + { + "uuid": "cf8712d7-cea7-4744-8bfa-95b236542b95", + "start": { + "$date": "2022-01-27T10:24:23.000Z" + }, + "end": { + "$date": "2022-01-27T12:37:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "8acd1218-303c-4250-b298-63d728001938", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-27T15:33:27.000Z" + }, + "end": { + "$date": "2022-01-27T16:45:05.000Z" + }, + "events": [ + { + "uuid": "a8b6afd0-7b74-43b8-a33c-63508fae7fb6", + "start": { + "$date": "2022-01-27T15:33:27.000Z" + }, + "end": { + "$date": "2022-01-27T16:45:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c363335e-bcbe-4654-8386-3dd4bf031cf3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-27T16:53:12.000Z" + }, + "end": { + "$date": "2022-01-27T18:43:14.000Z" + }, + "events": [ + { + "uuid": "0bc31937-3529-4d4e-b60a-535f759a29b8", + "start": { + "$date": "2022-01-27T16:53:12.000Z" + }, + "end": { + "$date": "2022-01-27T18:43:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "625dad78-2c9f-4681-ab38-bbda5a3be471", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-27T22:40:13.000Z" + }, + "end": { + "$date": "2022-01-28T00:30:17.000Z" + }, + "events": [ + { + "uuid": "9af9f2fe-ff46-45e5-a883-785a78b18eba", + "start": { + "$date": "2022-01-27T22:40:13.000Z" + }, + "end": { + "$date": "2022-01-28T00:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371ae7e0-4624-46f4-b794-42c2e417f1b6", + "uuid": "9ed78930-9e6c-4b7f-906b-c1ce25dc1de0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-27T23:05:15.000Z" + }, + "end": { + "$date": "2022-01-28T00:18:16.000Z" + }, + "events": [ + { + "uuid": "2e6e82e1-6f45-4d85-a3bd-6da277ec8ee6", + "start": { + "$date": "2022-01-27T23:05:15.000Z" + }, + "end": { + "$date": "2022-01-28T00:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "1409646f-cc07-4a89-ad14-c614eb6227c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-28T00:30:35.000Z" + }, + "end": { + "$date": "2022-01-28T01:59:58.000Z" + }, + "events": [ + { + "uuid": "fa53090e-1f71-4853-a169-7b70481829c8", + "start": { + "$date": "2022-01-28T00:30:35.000Z" + }, + "end": { + "$date": "2022-01-28T01:59:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09dc03f8-0e3a-4e90-883a-20579638ebf9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T00:30:57.000Z" + }, + "end": { + "$date": "2022-01-28T02:35:30.000Z" + }, + "events": [ + { + "uuid": "79a87c63-e95c-44d7-8c3f-8528ef16c06d", + "start": { + "$date": "2022-01-28T00:30:57.000Z" + }, + "end": { + "$date": "2022-01-28T02:35:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16104f8a-a7bf-4584-9dd0-972e856ac426", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T01:40:28.000Z" + }, + "end": { + "$date": "2022-01-28T01:44:37.000Z" + }, + "events": [ + { + "uuid": "95f7a6b4-52d4-44e0-bf28-16fc01b0d1d6", + "start": { + "$date": "2022-01-28T01:40:28.000Z" + }, + "end": { + "$date": "2022-01-28T01:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d39d543f-a635-4902-8239-ae43f98faff5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T02:03:46.000Z" + }, + "end": { + "$date": "2022-01-28T02:31:49.000Z" + }, + "events": [ + { + "uuid": "dfe0bfe7-f029-4e81-a6c7-099d9010ebe1", + "start": { + "$date": "2022-01-28T02:03:46.000Z" + }, + "end": { + "$date": "2022-01-28T02:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0f85eba-4f0f-455e-9abb-8ad255347ec5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T02:43:10.000Z" + }, + "end": { + "$date": "2022-01-28T03:20:33.000Z" + }, + "events": [ + { + "uuid": "d0f3e7ad-e608-4e7a-9157-edc3dc5b8df5", + "start": { + "$date": "2022-01-28T02:43:10.000Z" + }, + "end": { + "$date": "2022-01-28T03:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "b40ea3a8-514b-4753-affa-41b82adaf00a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T02:40:41.000Z" + }, + "end": { + "$date": "2022-01-28T03:00:11.000Z" + }, + "events": [ + { + "uuid": "51b6d533-a6f7-4e6c-97db-3935324123a2", + "start": { + "$date": "2022-01-28T02:40:41.000Z" + }, + "end": { + "$date": "2022-01-28T03:00:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9abbb323-8e3b-41d3-a2e5-eb2d5399d41d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T03:09:52.000Z" + }, + "end": { + "$date": "2022-01-28T04:19:04.000Z" + }, + "events": [ + { + "uuid": "d6afbb4a-b342-4a19-bdc7-317ad345253e", + "start": { + "$date": "2022-01-28T03:09:52.000Z" + }, + "end": { + "$date": "2022-01-28T04:19:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdfd9404-c972-4df3-9a55-cc38dd2e497d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T03:24:59.000Z" + }, + "end": { + "$date": "2022-01-28T03:49:15.000Z" + }, + "events": [ + { + "uuid": "22c78f86-350f-4178-b060-3b02125ec5cd", + "start": { + "$date": "2022-01-28T03:24:59.000Z" + }, + "end": { + "$date": "2022-01-28T03:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66044ba6-c8ba-451e-8cf0-3f9f0923b9f1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T03:25:00.000Z" + }, + "end": { + "$date": "2022-01-28T03:49:20.000Z" + }, + "events": [ + { + "uuid": "0a52e009-25f5-494a-bedb-940558af1075", + "start": { + "$date": "2022-01-28T03:25:00.000Z" + }, + "end": { + "$date": "2022-01-28T03:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8b20d57c-51dd-4d7b-8186-709573a9cdb4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T03:51:46.000Z" + }, + "end": { + "$date": "2022-01-28T04:11:57.000Z" + }, + "events": [ + { + "uuid": "bc6f1c50-3cbf-4c31-82d8-1612f55c25d1", + "start": { + "$date": "2022-01-28T03:51:46.000Z" + }, + "end": { + "$date": "2022-01-28T04:11:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56c3be6b-95aa-4da8-a099-cecb009f10e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T03:51:56.000Z" + }, + "end": { + "$date": "2022-01-28T04:11:58.000Z" + }, + "events": [ + { + "uuid": "d7da5f3e-28df-46b4-a1d2-a6f580f80482", + "start": { + "$date": "2022-01-28T03:51:56.000Z" + }, + "end": { + "$date": "2022-01-28T04:11:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "72d4b1a7-9f78-455d-a98d-0852bd02d3b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-28T02:37:38.000Z" + }, + "end": { + "$date": "2022-01-28T04:30:02.000Z" + }, + "events": [ + { + "uuid": "5a7f6e50-2c80-45d2-a69c-21b880023f50", + "start": { + "$date": "2022-01-28T02:37:38.000Z" + }, + "end": { + "$date": "2022-01-28T04:30:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "932eac64-3a43-4b10-b62f-c547433ae16f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T04:17:02.000Z" + }, + "end": { + "$date": "2022-01-28T04:29:58.000Z" + }, + "events": [ + { + "uuid": "3b48858a-1e77-42c7-92c1-e1e1312b0060", + "start": { + "$date": "2022-01-28T04:17:02.000Z" + }, + "end": { + "$date": "2022-01-28T04:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15fb6f30-c5ca-4299-80b3-0783a5bf022c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T04:17:07.000Z" + }, + "end": { + "$date": "2022-01-28T04:29:59.000Z" + }, + "events": [ + { + "uuid": "61d8be19-4eae-4381-8692-474598f90a1d", + "start": { + "$date": "2022-01-28T04:17:07.000Z" + }, + "end": { + "$date": "2022-01-28T04:29:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "984434d2-b1d4-453e-bf81-29d1bfdf6c28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T04:19:28.000Z" + }, + "end": { + "$date": "2022-01-28T04:32:06.000Z" + }, + "events": [ + { + "uuid": "06d4296b-6c5b-4026-9acf-20e2d0806644", + "start": { + "$date": "2022-01-28T04:19:28.000Z" + }, + "end": { + "$date": "2022-01-28T04:32:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a8bc028-b02c-4ddd-b3ae-bb505564bb58", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T04:32:03.000Z" + }, + "end": { + "$date": "2022-01-28T04:50:47.000Z" + }, + "events": [ + { + "uuid": "36faf5fb-b14d-4709-ba30-42ad573a2dca", + "start": { + "$date": "2022-01-28T04:32:03.000Z" + }, + "end": { + "$date": "2022-01-28T04:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3118c9c6-fbbb-42da-907c-521491dce511", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T04:32:08.000Z" + }, + "end": { + "$date": "2022-01-28T04:50:52.000Z" + }, + "events": [ + { + "uuid": "a3a2bcbe-fc55-4a68-9412-703e86d43530", + "start": { + "$date": "2022-01-28T04:32:08.000Z" + }, + "end": { + "$date": "2022-01-28T04:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "bb7ae4e5-2292-4044-806a-71fb7323c1d1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-28T04:33:44.000Z" + }, + "end": { + "$date": "2022-01-28T07:50:40.000Z" + }, + "events": [ + { + "uuid": "316f40d2-8d87-438c-b2e6-d32ed5c42383", + "start": { + "$date": "2022-01-28T04:33:44.000Z" + }, + "end": { + "$date": "2022-01-28T07:50:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c2ede3b-d244-44ae-9cc2-a2c3d12c72da", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T04:53:34.000Z" + }, + "end": { + "$date": "2022-01-28T05:12:02.000Z" + }, + "events": [ + { + "uuid": "61c8e538-0c84-40fa-bdb4-41cff5a8bf31", + "start": { + "$date": "2022-01-28T04:53:34.000Z" + }, + "end": { + "$date": "2022-01-28T05:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58fdef9f-a77d-49cf-aaa6-3a7fabc0db1b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T04:53:39.000Z" + }, + "end": { + "$date": "2022-01-28T05:11:32.000Z" + }, + "events": [ + { + "uuid": "a60fb454-da02-4e3f-9a99-fc6d2c26901e", + "start": { + "$date": "2022-01-28T04:53:39.000Z" + }, + "end": { + "$date": "2022-01-28T05:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a011ca65-2afe-4776-b8b1-770cb7571d90", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T05:19:24.000Z" + }, + "end": { + "$date": "2022-01-28T05:34:59.000Z" + }, + "events": [ + { + "uuid": "bdc8283e-c7d6-4e1f-ad92-e0fe9962a7bb", + "start": { + "$date": "2022-01-28T05:19:24.000Z" + }, + "end": { + "$date": "2022-01-28T05:34:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bdc2ff0-e25a-47df-943c-a2c4599e7082", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T05:38:15.000Z" + }, + "end": { + "$date": "2022-01-28T06:00:24.000Z" + }, + "events": [ + { + "uuid": "26f19e8c-10b5-48fb-8890-3f9e9dc103a3", + "start": { + "$date": "2022-01-28T05:38:15.000Z" + }, + "end": { + "$date": "2022-01-28T06:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04846364-32c9-4154-b5d5-d06213893d00", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T06:04:31.000Z" + }, + "end": { + "$date": "2022-01-28T06:23:26.000Z" + }, + "events": [ + { + "uuid": "32ff5357-159c-4f76-8a7a-36ddd053dd12", + "start": { + "$date": "2022-01-28T06:04:31.000Z" + }, + "end": { + "$date": "2022-01-28T06:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9140d37-0f48-4248-aba8-b4487ecb6c66", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-28T06:04:30.000Z" + }, + "end": { + "$date": "2022-01-28T06:23:30.000Z" + }, + "events": [ + { + "uuid": "6bfd5848-9234-48a9-875c-8838c30d7c7c", + "start": { + "$date": "2022-01-28T06:04:30.000Z" + }, + "end": { + "$date": "2022-01-28T06:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ce26bb0-78cc-4c87-9a08-fe478c5cc925", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-28T06:04:35.000Z" + }, + "end": { + "$date": "2022-01-28T06:23:32.000Z" + }, + "events": [ + { + "uuid": "e1e51ccd-62af-43a0-9a9f-df1a7d59f21d", + "start": { + "$date": "2022-01-28T06:04:35.000Z" + }, + "end": { + "$date": "2022-01-28T06:23:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28284338-ea5b-4fcb-9a40-4c7af224a208", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T06:25:57.000Z" + }, + "end": { + "$date": "2022-01-28T06:58:02.000Z" + }, + "events": [ + { + "uuid": "9a7eceac-dc73-4a6c-a3a2-56ea435d559a", + "start": { + "$date": "2022-01-28T06:25:57.000Z" + }, + "end": { + "$date": "2022-01-28T06:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e77a61a-5d74-4b9d-a2f6-dc4965b4fd3d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-28T06:26:00.000Z" + }, + "end": { + "$date": "2022-01-28T06:58:08.000Z" + }, + "events": [ + { + "uuid": "85247457-54dc-4ff7-b0b7-e9ee5d67c234", + "start": { + "$date": "2022-01-28T06:26:00.000Z" + }, + "end": { + "$date": "2022-01-28T06:58:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8a1320bd-9af3-430c-9efc-2cfe6159ca56", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-28T06:25:51.000Z" + }, + "end": { + "$date": "2022-01-28T06:58:07.000Z" + }, + "events": [ + { + "uuid": "b6c4188a-f609-451c-80e6-61dedd9b5384", + "start": { + "$date": "2022-01-28T06:25:51.000Z" + }, + "end": { + "$date": "2022-01-28T06:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3b1b6da-fbf5-4546-963f-86f0f4fae650", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T07:10:35.000Z" + }, + "end": { + "$date": "2022-01-28T07:10:51.000Z" + }, + "events": [ + { + "uuid": "d186f794-8b6b-46e4-9046-70da63131ea6", + "start": { + "$date": "2022-01-28T07:10:35.000Z" + }, + "end": { + "$date": "2022-01-28T07:10:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c9c8e3c-00ce-4ea6-bd5b-6e5d10d49c63", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T07:00:03.000Z" + }, + "end": { + "$date": "2022-01-28T07:16:18.000Z" + }, + "events": [ + { + "uuid": "beb62c45-8461-48f4-af6a-1d02158757a2", + "start": { + "$date": "2022-01-28T07:00:03.000Z" + }, + "end": { + "$date": "2022-01-28T07:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71dc391d-ec9c-45d9-998d-17e03bac34c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-28T07:00:11.000Z" + }, + "end": { + "$date": "2022-01-28T07:16:24.000Z" + }, + "events": [ + { + "uuid": "e6b88bc3-ae3b-4740-8635-bf3c966be264", + "start": { + "$date": "2022-01-28T07:00:11.000Z" + }, + "end": { + "$date": "2022-01-28T07:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c160c39d-77b5-4967-8bdf-cea8d65ae973", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-28T07:00:06.000Z" + }, + "end": { + "$date": "2022-01-28T07:16:22.000Z" + }, + "events": [ + { + "uuid": "e17e99f9-822a-4c53-a7da-845f036028f6", + "start": { + "$date": "2022-01-28T07:00:06.000Z" + }, + "end": { + "$date": "2022-01-28T07:16:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "595e2f1d-13ea-423b-bd07-4be36ea7eca2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T07:14:36.000Z" + }, + "end": { + "$date": "2022-01-28T07:26:42.000Z" + }, + "events": [ + { + "uuid": "4e4d1911-d8d0-431f-a296-f1d92183d065", + "start": { + "$date": "2022-01-28T07:14:36.000Z" + }, + "end": { + "$date": "2022-01-28T07:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91eccaf0-cae5-40ea-a413-c3ec8be09ccd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T07:22:04.000Z" + }, + "end": { + "$date": "2022-01-28T07:40:55.000Z" + }, + "events": [ + { + "uuid": "cf7402d4-2e31-4b6b-b7c0-26c2bdcfb1d9", + "start": { + "$date": "2022-01-28T07:22:04.000Z" + }, + "end": { + "$date": "2022-01-28T07:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7e52118-49fc-4f0e-8b78-12edfb3200c6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-28T07:21:57.000Z" + }, + "end": { + "$date": "2022-01-28T07:40:53.000Z" + }, + "events": [ + { + "uuid": "b6a0e088-a374-4cd5-8e84-e13523a4b3bd", + "start": { + "$date": "2022-01-28T07:21:57.000Z" + }, + "end": { + "$date": "2022-01-28T07:40:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc032f8a-8b0a-4e85-b7dc-f34685b39738", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-28T07:21:57.000Z" + }, + "end": { + "$date": "2022-01-28T07:40:54.000Z" + }, + "events": [ + { + "uuid": "13a344ee-bb87-46af-971b-ccfccb7f70a0", + "start": { + "$date": "2022-01-28T07:21:57.000Z" + }, + "end": { + "$date": "2022-01-28T07:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "0e59dd0d-8f2c-44cb-ab44-08d756cef46c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-28T11:08:59.000Z" + }, + "end": { + "$date": "2022-01-28T14:51:35.000Z" + }, + "events": [ + { + "uuid": "06863859-1f5a-495e-80b1-a0c3a225f040", + "start": { + "$date": "2022-01-28T11:08:59.000Z" + }, + "end": { + "$date": "2022-01-28T14:51:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3f80c5d4-f964-426f-87b4-d73c96b1d78a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-28T13:24:43.000Z" + }, + "end": { + "$date": "2022-01-28T13:39:50.000Z" + }, + "events": [ + { + "uuid": "89b3238a-d071-451b-bae4-e55a1bc32ed3", + "start": { + "$date": "2022-01-28T13:24:43.000Z" + }, + "end": { + "$date": "2022-01-28T13:39:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "6a003878-f494-48b0-b347-0f68a00a8b6f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-28T15:35:55.000Z" + }, + "end": { + "$date": "2022-01-28T16:32:01.000Z" + }, + "events": [ + { + "uuid": "d53fc679-ae61-4559-b285-58694785252e", + "start": { + "$date": "2022-01-28T15:35:55.000Z" + }, + "end": { + "$date": "2022-01-28T16:32:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "494e0f56-947f-4979-bc7b-5b972a673726", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T16:44:59.000Z" + }, + "end": { + "$date": "2022-01-28T17:02:24.000Z" + }, + "events": [ + { + "uuid": "1b998710-b0b0-42b0-acb3-61092295dd5a", + "start": { + "$date": "2022-01-28T16:44:59.000Z" + }, + "end": { + "$date": "2022-01-28T17:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "06491e74-4a84-4969-ad5f-e40e9c40b42f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-28T16:49:41.000Z" + }, + "end": { + "$date": "2022-01-28T17:24:17.000Z" + }, + "events": [ + { + "uuid": "f3118d95-4728-460e-b305-a3ecf63ba57a", + "start": { + "$date": "2022-01-28T16:49:41.000Z" + }, + "end": { + "$date": "2022-01-28T17:24:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "353e6409-dbf6-45ce-8a51-e4396c7eaf6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T17:04:47.000Z" + }, + "end": { + "$date": "2022-01-28T17:21:22.000Z" + }, + "events": [ + { + "uuid": "9d8ca832-0594-42e0-a2e9-5dec368ea13a", + "start": { + "$date": "2022-01-28T17:04:47.000Z" + }, + "end": { + "$date": "2022-01-28T17:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c29c272b-5a4e-4c65-8a6c-42a3624e2b69", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T17:24:30.000Z" + }, + "end": { + "$date": "2022-01-28T17:43:24.000Z" + }, + "events": [ + { + "uuid": "04da46b5-a39e-4a56-8d48-e0d79457e40f", + "start": { + "$date": "2022-01-28T17:24:30.000Z" + }, + "end": { + "$date": "2022-01-28T17:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fcebc3b-16de-471f-9d23-f62e901d81cd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-28T17:25:52.000Z" + }, + "end": { + "$date": "2022-01-28T17:47:22.000Z" + }, + "events": [ + { + "uuid": "67190f0a-ef2e-476a-a6c0-12d07cc9b343", + "start": { + "$date": "2022-01-28T17:25:52.000Z" + }, + "end": { + "$date": "2022-01-28T17:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b098ba4-3a5d-4526-8987-da6c815d8e3e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T17:45:39.000Z" + }, + "end": { + "$date": "2022-01-28T18:00:44.000Z" + }, + "events": [ + { + "uuid": "a586ebec-b797-4ece-a86a-f7ff3b71726a", + "start": { + "$date": "2022-01-28T17:45:39.000Z" + }, + "end": { + "$date": "2022-01-28T18:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e5e36e1-03eb-4b0e-9922-f51cccdc9210", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-28T17:48:20.000Z" + }, + "end": { + "$date": "2022-01-28T18:07:50.000Z" + }, + "events": [ + { + "uuid": "71297729-177e-4b96-b228-794b787f91a8", + "start": { + "$date": "2022-01-28T17:48:20.000Z" + }, + "end": { + "$date": "2022-01-28T18:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "045fb061-1fe6-4edd-855b-39459ed9d8e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-28T18:01:35.000Z" + }, + "end": { + "$date": "2022-01-28T18:05:32.000Z" + }, + "events": [ + { + "uuid": "7a3a3617-38ae-47d4-8c42-15b44fb672d5", + "start": { + "$date": "2022-01-28T18:01:35.000Z" + }, + "end": { + "$date": "2022-01-28T18:05:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de4898e4-0575-4f77-bc45-29e0d028472f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-28T18:07:52.000Z" + }, + "end": { + "$date": "2022-01-28T18:22:08.000Z" + }, + "events": [ + { + "uuid": "9a23ff73-e2b2-4e0f-ac0a-c743d05d9053", + "start": { + "$date": "2022-01-28T18:07:52.000Z" + }, + "end": { + "$date": "2022-01-28T18:22:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "37a1bbb1-e115-4a8a-84b4-0db1c279fe78", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T18:23:35.000Z" + }, + "end": { + "$date": "2022-01-28T19:04:24.000Z" + }, + "events": [ + { + "uuid": "8e6531da-ceaa-4535-9532-2c7300490904", + "start": { + "$date": "2022-01-28T18:23:35.000Z" + }, + "end": { + "$date": "2022-01-28T19:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "bd99aacf-34c8-4143-bc2e-49539ca88b69", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-28T18:29:49.000Z" + }, + "end": { + "$date": "2022-01-28T18:39:39.000Z" + }, + "events": [ + { + "uuid": "a34f9fc9-6c06-47a8-b03b-bb5ff2b3af40", + "start": { + "$date": "2022-01-28T18:29:49.000Z" + }, + "end": { + "$date": "2022-01-28T18:39:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6c6aca9a-adbe-4153-9219-70dc447d0b70", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-28T18:39:50.000Z" + }, + "end": { + "$date": "2022-01-28T18:55:05.000Z" + }, + "events": [ + { + "uuid": "82a8158a-79ff-44a5-a5a6-a677d6fa5faa", + "start": { + "$date": "2022-01-28T18:39:50.000Z" + }, + "end": { + "$date": "2022-01-28T18:55:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "94f0b819-f513-4355-958a-8debe06fa2d0", + "uuid": "e6997d5d-07ca-44dc-bc7d-e1ab63cf31f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T19:34:22.000Z" + }, + "end": { + "$date": "2022-01-28T20:54:51.000Z" + }, + "events": [ + { + "uuid": "7d284052-cc09-4cb7-ad99-4110c292cb33", + "start": { + "$date": "2022-01-28T19:34:22.000Z" + }, + "end": { + "$date": "2022-01-28T20:54:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e424631f-5abc-4ce6-845c-5baab636852f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T20:39:38.000Z" + }, + "end": { + "$date": "2022-01-28T21:17:23.000Z" + }, + "events": [ + { + "uuid": "93c84efb-90e0-49da-a87d-ef0708040f37", + "start": { + "$date": "2022-01-28T20:39:38.000Z" + }, + "end": { + "$date": "2022-01-28T21:17:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7673a9b5-e9c9-43c6-9535-dd8c593984dc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T21:22:54.000Z" + }, + "end": { + "$date": "2022-01-28T21:48:36.000Z" + }, + "events": [ + { + "uuid": "b313b0cb-6c21-4856-ab92-060899ea4f98", + "start": { + "$date": "2022-01-28T21:22:54.000Z" + }, + "end": { + "$date": "2022-01-28T21:48:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "67128fd9-ce23-4d91-9d46-9f2ae6d6a4f6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T21:28:50.000Z" + }, + "end": { + "$date": "2022-01-28T22:06:01.000Z" + }, + "events": [ + { + "uuid": "05ca21f7-54d7-45a9-93f6-d2e7aaac292a", + "start": { + "$date": "2022-01-28T21:28:50.000Z" + }, + "end": { + "$date": "2022-01-28T22:06:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "902adf9c-5beb-48c3-8d14-0ce509522566", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T21:51:36.000Z" + }, + "end": { + "$date": "2022-01-28T22:14:32.000Z" + }, + "events": [ + { + "uuid": "242500b2-1d97-47b5-8fa2-2bb1ee07c1ec", + "start": { + "$date": "2022-01-28T21:51:36.000Z" + }, + "end": { + "$date": "2022-01-28T22:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "0ea6e96c-d70e-4114-b3d8-33310e5a86c8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-28T22:06:11.000Z" + }, + "end": { + "$date": "2022-01-28T23:52:10.000Z" + }, + "events": [ + { + "uuid": "46721a32-9973-4d46-b7ff-28ac85fa7d70", + "start": { + "$date": "2022-01-28T22:06:11.000Z" + }, + "end": { + "$date": "2022-01-28T23:52:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "853921d1-16b5-4ea7-9b2c-0b68d1ad9f7b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T22:20:48.000Z" + }, + "end": { + "$date": "2022-01-28T22:24:29.000Z" + }, + "events": [ + { + "uuid": "25441a41-8245-4de0-882b-e7b53485e1c3", + "start": { + "$date": "2022-01-28T22:20:48.000Z" + }, + "end": { + "$date": "2022-01-28T22:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "63cd2c0e-b52e-411b-ba27-0e91c761a135", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T22:24:58.000Z" + }, + "end": { + "$date": "2022-01-28T22:37:10.000Z" + }, + "events": [ + { + "uuid": "4b4f6a19-852c-4760-b481-6c6f32ea3719", + "start": { + "$date": "2022-01-28T22:24:58.000Z" + }, + "end": { + "$date": "2022-01-28T22:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "7ffe9681-f739-49ac-84d9-1e25986ddd54", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-28T22:52:07.000Z" + }, + "end": { + "$date": "2022-01-28T23:47:29.000Z" + }, + "events": [ + { + "uuid": "dc41e4e4-b9bf-4be8-9dec-90846e8a8056", + "start": { + "$date": "2022-01-28T22:52:07.000Z" + }, + "end": { + "$date": "2022-01-28T23:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d5660238-087f-43ca-b30d-682d46b4a767", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T23:08:59.000Z" + }, + "end": { + "$date": "2022-01-28T23:33:37.000Z" + }, + "events": [ + { + "uuid": "564ebca1-6599-4925-baec-e02675dcd1b8", + "start": { + "$date": "2022-01-28T23:08:59.000Z" + }, + "end": { + "$date": "2022-01-28T23:33:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6ef2059-eeae-42d4-84b0-c216780cdef0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-28T23:11:08.000Z" + }, + "end": { + "$date": "2022-01-28T23:41:45.000Z" + }, + "events": [ + { + "uuid": "bb38de72-49c1-44e7-998e-bc7e525fc1ff", + "start": { + "$date": "2022-01-28T23:11:08.000Z" + }, + "end": { + "$date": "2022-01-28T23:41:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c079b33-f374-4c91-b710-0a47195ecef8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-28T23:42:42.000Z" + }, + "end": { + "$date": "2022-01-28T23:59:48.000Z" + }, + "events": [ + { + "uuid": "a5afd91f-c72e-4c88-8ec9-856a0c05acb7", + "start": { + "$date": "2022-01-28T23:42:42.000Z" + }, + "end": { + "$date": "2022-01-28T23:59:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a04a8932-ead4-493e-85a6-c7fffd978632", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-28T23:55:50.000Z" + }, + "end": { + "$date": "2022-01-29T00:27:23.000Z" + }, + "events": [ + { + "uuid": "4a601f10-44e6-45f2-b173-9b95cce75d91", + "start": { + "$date": "2022-01-28T23:55:50.000Z" + }, + "end": { + "$date": "2022-01-29T00:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57a1df72-615f-43fb-b2b4-72c17938a101", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-28T23:59:55.000Z" + }, + "end": { + "$date": "2022-01-29T00:19:35.000Z" + }, + "events": [ + { + "uuid": "2b1975f2-1827-4042-a3cd-5cf7ad034e66", + "start": { + "$date": "2022-01-28T23:59:55.000Z" + }, + "end": { + "$date": "2022-01-29T00:19:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "9a28cf36-6c72-4404-884d-5fffaa94d229", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-28T23:58:03.000Z" + }, + "end": { + "$date": "2022-01-29T00:13:44.000Z" + }, + "events": [ + { + "uuid": "433ebe6e-7638-417d-a54c-28b922a23351", + "start": { + "$date": "2022-01-28T23:58:03.000Z" + }, + "end": { + "$date": "2022-01-29T00:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81c5d803-adca-42ae-879d-9da1dc62882e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T00:03:40.000Z" + }, + "end": { + "$date": "2022-01-29T00:16:40.000Z" + }, + "events": [ + { + "uuid": "39f17c61-cab0-4b2c-8308-4116c6ad22bc", + "start": { + "$date": "2022-01-29T00:03:40.000Z" + }, + "end": { + "$date": "2022-01-29T00:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "06be6d99-ba17-4453-843f-b363cafbd11b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T00:02:31.000Z" + }, + "end": { + "$date": "2022-01-29T00:34:23.000Z" + }, + "events": [ + { + "uuid": "7e047e78-9043-4f4d-a686-81420101a7b4", + "start": { + "$date": "2022-01-29T00:02:31.000Z" + }, + "end": { + "$date": "2022-01-29T00:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c4c8b4e-8e96-41d1-9060-65f311b86908", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T00:37:01.000Z" + }, + "end": { + "$date": "2022-01-29T00:59:21.000Z" + }, + "events": [ + { + "uuid": "ab0a97dd-054c-4c61-a288-d3d9a58246f2", + "start": { + "$date": "2022-01-29T00:37:01.000Z" + }, + "end": { + "$date": "2022-01-29T00:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c2496c6-97b4-4f3d-a8dc-011d0803d9a9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T00:23:06.000Z" + }, + "end": { + "$date": "2022-01-29T00:40:37.000Z" + }, + "events": [ + { + "uuid": "1be6d686-c4c2-4259-86c4-47084bec8f53", + "start": { + "$date": "2022-01-29T00:23:06.000Z" + }, + "end": { + "$date": "2022-01-29T00:40:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2f323978-9cfa-4561-a058-53f2d8b8c1f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T00:36:13.000Z" + }, + "end": { + "$date": "2022-01-29T01:29:15.000Z" + }, + "events": [ + { + "uuid": "ba1f1320-581f-4320-b9a6-48bfe495ea78", + "start": { + "$date": "2022-01-29T00:36:13.000Z" + }, + "end": { + "$date": "2022-01-29T01:29:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7e48c54-9e43-4d99-a3cb-6bd3528aace2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T00:43:17.000Z" + }, + "end": { + "$date": "2022-01-29T01:03:19.000Z" + }, + "events": [ + { + "uuid": "975956a1-0c31-4f11-9d5e-5d38351469d9", + "start": { + "$date": "2022-01-29T00:43:17.000Z" + }, + "end": { + "$date": "2022-01-29T01:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf27551a-68e9-4dd4-a8a3-17dc4ea74116", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T01:03:15.000Z" + }, + "end": { + "$date": "2022-01-29T01:22:55.000Z" + }, + "events": [ + { + "uuid": "15bff8fc-c310-4980-8e75-e20b00cdea32", + "start": { + "$date": "2022-01-29T01:03:15.000Z" + }, + "end": { + "$date": "2022-01-29T01:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0699d453-e4a2-4c31-a17e-e295497c5956", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-29T00:59:49.000Z" + }, + "end": { + "$date": "2022-01-29T01:29:17.000Z" + }, + "events": [ + { + "uuid": "39edd6fe-1a4d-4022-81a5-28799611d402", + "start": { + "$date": "2022-01-29T00:59:49.000Z" + }, + "end": { + "$date": "2022-01-29T01:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "42598551-0597-42ec-b019-aee9a85535a1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T01:07:14.000Z" + }, + "end": { + "$date": "2022-01-29T01:18:55.000Z" + }, + "events": [ + { + "uuid": "a9f234d8-baa2-48f6-9984-ccba02b0b8db", + "start": { + "$date": "2022-01-29T01:07:14.000Z" + }, + "end": { + "$date": "2022-01-29T01:18:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e95e1d5d-97ac-49f5-8429-4e1459a9174e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T01:22:05.000Z" + }, + "end": { + "$date": "2022-01-29T01:34:41.000Z" + }, + "events": [ + { + "uuid": "42734a8c-022a-42c8-8bab-db812a6a28d4", + "start": { + "$date": "2022-01-29T01:22:05.000Z" + }, + "end": { + "$date": "2022-01-29T01:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "f6f2eaa9-5ad3-41d0-a6a4-92f0118f585c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-29T01:30:01.000Z" + }, + "end": { + "$date": "2022-01-29T02:08:37.000Z" + }, + "events": [ + { + "uuid": "49274898-753f-4ad3-93c2-abd46515e4e7", + "start": { + "$date": "2022-01-29T01:30:01.000Z" + }, + "end": { + "$date": "2022-01-29T02:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ece663c5-ad1d-468d-89b9-386fbbed712a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-29T01:31:11.000Z" + }, + "end": { + "$date": "2022-01-29T01:37:49.000Z" + }, + "events": [ + { + "uuid": "a6b6601f-2c23-46aa-8d86-6ad4475e1e92", + "start": { + "$date": "2022-01-29T01:31:11.000Z" + }, + "end": { + "$date": "2022-01-29T01:37:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97c50ea3-bde2-4738-b12d-79ca98fe6dd4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T01:36:53.000Z" + }, + "end": { + "$date": "2022-01-29T01:51:56.000Z" + }, + "events": [ + { + "uuid": "b3842be8-3828-4447-841e-97583e615a59", + "start": { + "$date": "2022-01-29T01:36:53.000Z" + }, + "end": { + "$date": "2022-01-29T01:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "281f40d1-8b99-44e1-9625-dfb847b349a2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T02:09:26.000Z" + }, + "end": { + "$date": "2022-01-29T03:56:37.000Z" + }, + "events": [ + { + "uuid": "9e42de21-9881-41e6-89c5-1900ea073d93", + "start": { + "$date": "2022-01-29T02:09:26.000Z" + }, + "end": { + "$date": "2022-01-29T03:56:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ddf8543b-45c7-46b1-bc51-0763e36dc4cd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-29T02:29:34.000Z" + }, + "end": { + "$date": "2022-01-29T03:37:59.000Z" + }, + "events": [ + { + "uuid": "996c4866-c57a-4a4b-9fe8-fadedf68e071", + "start": { + "$date": "2022-01-29T02:29:34.000Z" + }, + "end": { + "$date": "2022-01-29T03:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9bda09cb-0757-47e5-b799-a8b096e32c76", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-29T02:58:37.000Z" + }, + "end": { + "$date": "2022-01-29T03:30:03.000Z" + }, + "events": [ + { + "uuid": "f6e8a08d-1098-42ce-bfb0-8900a807ba47", + "start": { + "$date": "2022-01-29T02:58:37.000Z" + }, + "end": { + "$date": "2022-01-29T03:30:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bfcbc9e0-1039-4cab-a053-6ad7b649b7c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T03:19:01.000Z" + }, + "end": { + "$date": "2022-01-29T03:45:24.000Z" + }, + "events": [ + { + "uuid": "6a26af5d-1b4e-4b0f-8fa8-cb09965e7b3a", + "start": { + "$date": "2022-01-29T03:19:01.000Z" + }, + "end": { + "$date": "2022-01-29T03:45:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9f88b74c-9ef6-4a1a-b4d3-292d2e59f804", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T03:24:17.000Z" + }, + "end": { + "$date": "2022-01-29T04:10:29.000Z" + }, + "events": [ + { + "uuid": "d6efab5a-dbea-4c1b-9663-fd0f6841a719", + "start": { + "$date": "2022-01-29T03:24:17.000Z" + }, + "end": { + "$date": "2022-01-29T04:10:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "461cd5b3-167a-436f-bb10-892e38af0a79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-29T03:30:20.000Z" + }, + "end": { + "$date": "2022-01-29T04:36:46.000Z" + }, + "events": [ + { + "uuid": "9913c284-ca8d-4d38-b278-fc500032805c", + "start": { + "$date": "2022-01-29T03:30:20.000Z" + }, + "end": { + "$date": "2022-01-29T04:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371ae7e0-4624-46f4-b794-42c2e417f1b6", + "uuid": "43b9678d-7c82-42e4-b88c-7407c0feb75b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-29T03:31:10.000Z" + }, + "end": { + "$date": "2022-01-29T04:10:50.000Z" + }, + "events": [ + { + "uuid": "4f72fea7-067f-442f-848b-36b3fcd6bf54", + "start": { + "$date": "2022-01-29T03:31:10.000Z" + }, + "end": { + "$date": "2022-01-29T04:10:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a5d603f-5251-47b8-89ad-31d90534a138", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T06:15:45.000Z" + }, + "end": { + "$date": "2022-01-29T07:00:28.000Z" + }, + "events": [ + { + "uuid": "f63d18d5-f8e0-489c-b83f-2f56d22cce3c", + "start": { + "$date": "2022-01-29T06:15:45.000Z" + }, + "end": { + "$date": "2022-01-29T07:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "f4db57b2-6c3e-4d3c-aa06-299aa52ac347", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T04:10:50.000Z" + }, + "end": { + "$date": "2022-01-29T04:12:44.000Z" + }, + "events": [ + { + "uuid": "6248195a-a72e-4b3a-afbe-015561b877b8", + "start": { + "$date": "2022-01-29T04:10:50.000Z" + }, + "end": { + "$date": "2022-01-29T04:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "947fb07b-cb5f-4a84-9e41-3e7f2c8cd257", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-29T04:12:31.000Z" + }, + "end": { + "$date": "2022-01-29T06:28:58.000Z" + }, + "events": [ + { + "uuid": "e4603579-1b7d-4f39-b356-6fbc30c666d9", + "start": { + "$date": "2022-01-29T04:12:31.000Z" + }, + "end": { + "$date": "2022-01-29T06:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e781c7fa-cb7e-4fdf-ab5e-5f0e2413cd69", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-29T04:15:23.000Z" + }, + "end": { + "$date": "2022-01-29T04:46:50.000Z" + }, + "events": [ + { + "uuid": "20f2a159-f5c7-4ab2-940e-a01a8d7f6530", + "start": { + "$date": "2022-01-29T04:15:23.000Z" + }, + "end": { + "$date": "2022-01-29T04:46:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c04cb5d4-5cd3-498f-a629-5170ce772aaf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T04:22:45.000Z" + }, + "end": { + "$date": "2022-01-29T04:24:19.000Z" + }, + "events": [ + { + "uuid": "56394ddb-7b18-4fd6-8b11-b57c9da82b53", + "start": { + "$date": "2022-01-29T04:22:45.000Z" + }, + "end": { + "$date": "2022-01-29T04:24:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "d7a321c1-cd87-4274-88ad-3d025b8689fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T04:24:34.000Z" + }, + "end": { + "$date": "2022-01-29T04:51:18.000Z" + }, + "events": [ + { + "uuid": "0716bbbb-1447-4765-b67b-2fde7f0ff3e3", + "start": { + "$date": "2022-01-29T04:24:34.000Z" + }, + "end": { + "$date": "2022-01-29T04:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "222a5cf9-c72e-4f1f-96dc-6f961c20432f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T04:39:01.000Z" + }, + "end": { + "$date": "2022-01-29T05:00:07.000Z" + }, + "events": [ + { + "uuid": "6f6dc980-e7a9-4f26-9b22-3a3c455d5389", + "start": { + "$date": "2022-01-29T04:39:01.000Z" + }, + "end": { + "$date": "2022-01-29T05:00:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18c32633-95cf-4b3b-9786-02010dd2ce4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T05:02:32.000Z" + }, + "end": { + "$date": "2022-01-29T05:23:24.000Z" + }, + "events": [ + { + "uuid": "4437bc25-0974-42d5-93b8-4e5051e11e69", + "start": { + "$date": "2022-01-29T05:02:32.000Z" + }, + "end": { + "$date": "2022-01-29T05:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ad071827-119c-42d4-acee-e68b84a3d8bc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-29T05:03:06.000Z" + }, + "end": { + "$date": "2022-01-29T13:17:14.000Z" + }, + "events": [ + { + "uuid": "a6554062-b28b-4e42-9c4f-f92f08653e00", + "start": { + "$date": "2022-01-29T05:03:06.000Z" + }, + "end": { + "$date": "2022-01-29T13:17:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "37c906b4-33a5-4433-a912-119544dff720", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-01-29T05:10:20.000Z" + }, + "end": { + "$date": "2022-01-29T09:57:46.000Z" + }, + "events": [ + { + "uuid": "566add4b-2dc4-40a4-9e4f-1cef9a4b3389", + "start": { + "$date": "2022-01-29T05:10:20.000Z" + }, + "end": { + "$date": "2022-01-29T09:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a5e1c2a-da5b-497b-b1b5-d00f18caa1ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T05:27:19.000Z" + }, + "end": { + "$date": "2022-01-29T05:41:25.000Z" + }, + "events": [ + { + "uuid": "6d7958a3-6cec-45a5-9ceb-746f68051f42", + "start": { + "$date": "2022-01-29T05:27:19.000Z" + }, + "end": { + "$date": "2022-01-29T05:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "f143fccb-4d02-4416-abbf-94d7730e0196", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-29T05:34:38.000Z" + }, + "end": { + "$date": "2022-01-29T07:11:07.000Z" + }, + "events": [ + { + "uuid": "bcf54abf-50f6-4413-a2c4-acdc17d61f6e", + "start": { + "$date": "2022-01-29T05:34:38.000Z" + }, + "end": { + "$date": "2022-01-29T07:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8db5e8f4-cb8a-425f-8009-fcd3175728a2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T05:42:05.000Z" + }, + "end": { + "$date": "2022-01-29T05:47:03.000Z" + }, + "events": [ + { + "uuid": "e84870dd-9419-4a42-b9b9-354c9d4fa933", + "start": { + "$date": "2022-01-29T05:42:05.000Z" + }, + "end": { + "$date": "2022-01-29T05:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcdb859b-36bd-4dfc-b415-00005fd60b48", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T05:48:36.000Z" + }, + "end": { + "$date": "2022-01-29T06:21:14.000Z" + }, + "events": [ + { + "uuid": "79d56407-8b44-48f1-b8c6-6cfe70639708", + "start": { + "$date": "2022-01-29T05:48:36.000Z" + }, + "end": { + "$date": "2022-01-29T06:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c89a7b8-6788-4b0a-9d99-81e134543c86", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-29T06:15:54.000Z" + }, + "end": { + "$date": "2022-01-29T07:00:30.000Z" + }, + "events": [ + { + "uuid": "2c68f819-692f-475f-83be-ac929b886833", + "start": { + "$date": "2022-01-29T06:15:54.000Z" + }, + "end": { + "$date": "2022-01-29T07:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0c856849-1b40-4225-9b58-4be6cc800a73", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T06:10:03.000Z" + }, + "end": { + "$date": "2022-01-29T06:28:09.000Z" + }, + "events": [ + { + "uuid": "752677ca-8ad0-4507-b312-2e9fdf83b0e3", + "start": { + "$date": "2022-01-29T06:10:03.000Z" + }, + "end": { + "$date": "2022-01-29T06:28:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4685030-5c5a-4d65-a0bf-f5a7d9304d07", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T06:22:46.000Z" + }, + "end": { + "$date": "2022-01-29T06:53:51.000Z" + }, + "events": [ + { + "uuid": "d7d67b43-a7a8-46a5-b50f-665d72557aba", + "start": { + "$date": "2022-01-29T06:22:46.000Z" + }, + "end": { + "$date": "2022-01-29T06:53:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "46ecf0c2-da62-4421-a69c-f249ff2623e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T06:35:00.000Z" + }, + "end": { + "$date": "2022-01-29T08:01:13.000Z" + }, + "events": [ + { + "uuid": "c3a763b3-db01-4f84-aab5-27d2f104bff6", + "start": { + "$date": "2022-01-29T06:35:00.000Z" + }, + "end": { + "$date": "2022-01-29T06:46:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d96ae5f-283e-46a1-87a0-72cf56cf796f", + "start": { + "$date": "2022-01-29T06:46:00.000Z" + }, + "end": { + "$date": "2022-01-29T06:47:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "45a62e5a-0ebc-418d-9552-12c3d2121168", + "start": { + "$date": "2022-01-29T06:47:00.000Z" + }, + "end": { + "$date": "2022-01-29T08:01:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0aa6531e-5949-4956-b054-e09a1d3c46bc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T06:56:06.000Z" + }, + "end": { + "$date": "2022-01-29T07:17:43.000Z" + }, + "events": [ + { + "uuid": "aecde32a-6138-4fb3-aee8-d1c2f51f9f79", + "start": { + "$date": "2022-01-29T06:56:06.000Z" + }, + "end": { + "$date": "2022-01-29T07:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2fe26f19-585c-4f0f-83fa-37021eaab9e9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T07:14:07.000Z" + }, + "end": { + "$date": "2022-01-29T07:50:49.000Z" + }, + "events": [ + { + "uuid": "b1e0ea0e-5bb9-4bcc-b326-5fb19e3030d4", + "start": { + "$date": "2022-01-29T07:14:07.000Z" + }, + "end": { + "$date": "2022-01-29T07:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b48b166a-9935-41ea-9a30-535ad2d31d7f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-29T07:14:07.000Z" + }, + "end": { + "$date": "2022-01-29T07:50:58.000Z" + }, + "events": [ + { + "uuid": "f5583266-4dcf-48a5-98fd-53a5c850c8da", + "start": { + "$date": "2022-01-29T07:14:07.000Z" + }, + "end": { + "$date": "2022-01-29T07:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cf9a7084-4e9d-4c64-9a36-45f8f7961863", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T07:20:12.000Z" + }, + "end": { + "$date": "2022-01-29T07:50:55.000Z" + }, + "events": [ + { + "uuid": "363f375a-43c5-41f6-8358-6431b54a70d9", + "start": { + "$date": "2022-01-29T07:20:12.000Z" + }, + "end": { + "$date": "2022-01-29T07:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fada1fee-2848-4c5a-9171-52f7f41ea225", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-29T07:26:50.000Z" + }, + "end": { + "$date": "2022-01-29T08:06:45.000Z" + }, + "events": [ + { + "uuid": "0732a66d-4959-400a-800d-97da66c28a19", + "start": { + "$date": "2022-01-29T07:26:50.000Z" + }, + "end": { + "$date": "2022-01-29T08:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1073f7e3-391b-4bc2-a5d6-51d0613c98bf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T07:55:13.000Z" + }, + "end": { + "$date": "2022-01-29T08:26:39.000Z" + }, + "events": [ + { + "uuid": "66cad834-2403-470b-b080-c91d1b2bf25b", + "start": { + "$date": "2022-01-29T07:55:13.000Z" + }, + "end": { + "$date": "2022-01-29T08:26:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b73b7dbb-5d38-4e81-8b85-0ac2c724e816", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-29T07:53:13.000Z" + }, + "end": { + "$date": "2022-01-29T08:24:30.000Z" + }, + "events": [ + { + "uuid": "4f265efb-ea97-4c54-97f2-99521356e1e9", + "start": { + "$date": "2022-01-29T07:53:13.000Z" + }, + "end": { + "$date": "2022-01-29T08:24:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e664637e-921f-42c5-9719-7ab5461c1f09", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-29T07:55:13.000Z" + }, + "end": { + "$date": "2022-01-29T08:26:45.000Z" + }, + "events": [ + { + "uuid": "22435fbf-a975-4ad7-9bc5-5f8fa300700a", + "start": { + "$date": "2022-01-29T07:55:13.000Z" + }, + "end": { + "$date": "2022-01-29T08:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59a75deb-4ac6-4961-855b-d3731a142c1e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T08:31:49.000Z" + }, + "end": { + "$date": "2022-01-29T09:06:10.000Z" + }, + "events": [ + { + "uuid": "b4472a44-62be-4f8e-b01b-158a7e7a9aa0", + "start": { + "$date": "2022-01-29T08:31:49.000Z" + }, + "end": { + "$date": "2022-01-29T09:06:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a9c80d5-051c-4d35-9bcd-e63029fe7776", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-29T08:31:50.000Z" + }, + "end": { + "$date": "2022-01-29T09:06:16.000Z" + }, + "events": [ + { + "uuid": "58af4b6f-0eee-411c-87fb-cddde0098f80", + "start": { + "$date": "2022-01-29T08:31:50.000Z" + }, + "end": { + "$date": "2022-01-29T09:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3a18a362-0813-4589-8f61-9ce45b23599a", + "uuid": "8521b1a7-cfb9-47c6-a1f0-82c9d5245681", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T08:42:48.000Z" + }, + "end": { + "$date": "2022-01-29T09:15:08.000Z" + }, + "events": [ + { + "uuid": "57a14113-a222-4db6-a3a7-5f94f9b1396e", + "start": { + "$date": "2022-01-29T08:42:48.000Z" + }, + "end": { + "$date": "2022-01-29T09:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7a2ec3f-ec93-48cc-8579-56e4d069a654", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T09:13:40.000Z" + }, + "end": { + "$date": "2022-01-29T09:43:05.000Z" + }, + "events": [ + { + "uuid": "c8bc152c-0ed6-469a-8440-0d661977a2a5", + "start": { + "$date": "2022-01-29T09:13:40.000Z" + }, + "end": { + "$date": "2022-01-29T09:43:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d9c26e0-41e4-44aa-86d7-41bbb6e750f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-29T09:13:43.000Z" + }, + "end": { + "$date": "2022-01-29T09:43:07.000Z" + }, + "events": [ + { + "uuid": "0173bebe-c488-4755-a3bf-0ec52e784ad6", + "start": { + "$date": "2022-01-29T09:13:43.000Z" + }, + "end": { + "$date": "2022-01-29T09:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96be00a4-9162-4308-a1ed-c712d708634e", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T09:43:20.000Z" + }, + "end": { + "$date": "2022-01-29T10:27:01.000Z" + }, + "events": [ + { + "uuid": "f18dfc18-be49-427c-b1a9-3ae0334281de", + "start": { + "$date": "2022-01-29T09:43:20.000Z" + }, + "end": { + "$date": "2022-01-29T10:27:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2d26ab20-ba43-429b-a99f-82c5fdc154f3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-29T13:50:30.000Z" + }, + "end": { + "$date": "2022-01-29T14:34:35.000Z" + }, + "events": [ + { + "uuid": "9027944b-5ba2-415d-9a2a-014f7168ed57", + "start": { + "$date": "2022-01-29T13:50:30.000Z" + }, + "end": { + "$date": "2022-01-29T14:34:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "ea61b78f-8448-43fa-8949-dc69e18ea705", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T15:17:49.000Z" + }, + "end": { + "$date": "2022-01-29T15:25:04.000Z" + }, + "events": [ + { + "uuid": "6a44b7ab-dfb3-422f-8764-961f384587c6", + "start": { + "$date": "2022-01-29T15:17:49.000Z" + }, + "end": { + "$date": "2022-01-29T15:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "9aee023c-e363-4656-91b1-13ca42a7d9cf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T15:25:24.000Z" + }, + "end": { + "$date": "2022-01-29T16:39:44.000Z" + }, + "events": [ + { + "uuid": "32e47eee-facf-4920-bae9-dc1a2b8b33c1", + "start": { + "$date": "2022-01-29T15:25:24.000Z" + }, + "end": { + "$date": "2022-01-29T16:39:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f99c779b-3cc5-47f9-98a5-71f2115a99ba", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T16:33:21.000Z" + }, + "end": { + "$date": "2022-01-29T16:49:37.000Z" + }, + "events": [ + { + "uuid": "8352f9cf-a6ae-40ef-ab88-6ba20176f0dd", + "start": { + "$date": "2022-01-29T16:33:21.000Z" + }, + "end": { + "$date": "2022-01-29T16:49:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a01d6308-f608-42b9-b73f-f42f1962e003", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T16:50:27.000Z" + }, + "end": { + "$date": "2022-01-29T17:07:18.000Z" + }, + "events": [ + { + "uuid": "e7583bcb-8bc7-4d0a-8579-98ea79d153bb", + "start": { + "$date": "2022-01-29T16:50:27.000Z" + }, + "end": { + "$date": "2022-01-29T17:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdf489e1-4160-409d-bee1-4e7debea17b9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T16:57:56.000Z" + }, + "end": { + "$date": "2022-01-29T17:15:24.000Z" + }, + "events": [ + { + "uuid": "ac60311b-f8e0-40f9-8990-bcf01aa181ac", + "start": { + "$date": "2022-01-29T16:57:56.000Z" + }, + "end": { + "$date": "2022-01-29T17:15:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe0605dd-6243-4bef-bf5c-c4557514a3fe", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T17:08:18.000Z" + }, + "end": { + "$date": "2022-01-29T17:25:20.000Z" + }, + "events": [ + { + "uuid": "9ad1c1e3-9861-436c-89e4-f6b1b97b39e8", + "start": { + "$date": "2022-01-29T17:08:18.000Z" + }, + "end": { + "$date": "2022-01-29T17:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3a6d27c-41ac-4246-b65c-49e2ed7d18ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T17:17:21.000Z" + }, + "end": { + "$date": "2022-01-29T17:34:25.000Z" + }, + "events": [ + { + "uuid": "5f202b9c-4f41-42ff-9e58-bd49ba485c9d", + "start": { + "$date": "2022-01-29T17:17:21.000Z" + }, + "end": { + "$date": "2022-01-29T17:34:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e4dcaad-29c2-4330-a175-017041030fea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T17:26:20.000Z" + }, + "end": { + "$date": "2022-01-29T17:44:01.000Z" + }, + "events": [ + { + "uuid": "a183b35c-5449-419d-8239-6ec10a349a6a", + "start": { + "$date": "2022-01-29T17:26:20.000Z" + }, + "end": { + "$date": "2022-01-29T17:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1f765a6b-9e6e-42b4-9c8e-02b5b8f90527", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T17:36:16.000Z" + }, + "end": { + "$date": "2022-01-29T17:53:20.000Z" + }, + "events": [ + { + "uuid": "36f0d090-40e9-4320-9fe5-68dfd8f6e1f4", + "start": { + "$date": "2022-01-29T17:36:16.000Z" + }, + "end": { + "$date": "2022-01-29T17:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ca8f174-293b-4fee-8e87-0603ee9e4710", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T18:00:03.000Z" + }, + "end": { + "$date": "2022-01-29T18:23:02.000Z" + }, + "events": [ + { + "uuid": "128b95f6-b22e-4183-95bb-df3399d87dd2", + "start": { + "$date": "2022-01-29T18:00:03.000Z" + }, + "end": { + "$date": "2022-01-29T18:23:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "818660f6-c8bb-4c41-9885-a12e24e19e23", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T18:29:34.000Z" + }, + "end": { + "$date": "2022-01-29T18:51:48.000Z" + }, + "events": [ + { + "uuid": "7eb7438b-13ac-4ee8-b3ca-5bfd1e1e7103", + "start": { + "$date": "2022-01-29T18:29:34.000Z" + }, + "end": { + "$date": "2022-01-29T18:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b53f220c-1182-4907-b532-57aa6dbca999", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T18:34:06.000Z" + }, + "end": { + "$date": "2022-01-29T18:47:37.000Z" + }, + "events": [ + { + "uuid": "7dc69acf-c1aa-4880-96c0-67f54734bd66", + "start": { + "$date": "2022-01-29T18:34:06.000Z" + }, + "end": { + "$date": "2022-01-29T18:47:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0af62358-2b4c-449a-87b2-0ed8a17d2dce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T18:53:50.000Z" + }, + "end": { + "$date": "2022-01-29T19:08:13.000Z" + }, + "events": [ + { + "uuid": "d5aab918-e42f-405b-b4b9-c31bb51ec89c", + "start": { + "$date": "2022-01-29T18:53:50.000Z" + }, + "end": { + "$date": "2022-01-29T19:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d44711a5-e30a-40ed-a34b-83a9a0f733f6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T18:54:03.000Z" + }, + "end": { + "$date": "2022-01-29T19:13:01.000Z" + }, + "events": [ + { + "uuid": "66bff4d1-e800-446d-88f1-a0369dfc17dd", + "start": { + "$date": "2022-01-29T18:54:03.000Z" + }, + "end": { + "$date": "2022-01-29T19:13:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "380b20a6-8ed9-43e5-a4d2-9d50d233bf4e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T19:10:30.000Z" + }, + "end": { + "$date": "2022-01-29T19:31:29.000Z" + }, + "events": [ + { + "uuid": "73fdc494-0ac1-40e9-b0a8-56ead1524552", + "start": { + "$date": "2022-01-29T19:10:30.000Z" + }, + "end": { + "$date": "2022-01-29T19:31:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0dc3e784-4b3f-4ca3-8a27-42dd7666ea59", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T19:31:46.000Z" + }, + "end": { + "$date": "2022-01-29T19:34:46.000Z" + }, + "events": [ + { + "uuid": "343ba0b3-84de-4cf3-8881-118c2d1d7e6a", + "start": { + "$date": "2022-01-29T19:31:46.000Z" + }, + "end": { + "$date": "2022-01-29T19:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6db3e040-c544-44de-b9f4-812deb953c29", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-29T21:31:49.000Z" + }, + "end": { + "$date": "2022-01-29T21:31:58.000Z" + }, + "events": [ + { + "uuid": "9253b803-b382-43e8-b9d8-1306a887ad7f", + "start": { + "$date": "2022-01-29T21:31:49.000Z" + }, + "end": { + "$date": "2022-01-29T21:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f6a8df2-5d07-4163-8630-a5f2da8228ea", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-29T20:28:24.000Z" + }, + "end": { + "$date": "2022-01-29T20:47:03.000Z" + }, + "events": [ + { + "uuid": "6f486b90-33e6-42be-be88-e5117edded66", + "start": { + "$date": "2022-01-29T20:28:24.000Z" + }, + "end": { + "$date": "2022-01-29T20:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c455932-c20f-4ac5-a022-9c3a744e5f47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-29T20:28:22.000Z" + }, + "end": { + "$date": "2022-01-29T20:46:56.000Z" + }, + "events": [ + { + "uuid": "2fb7ed5e-1b3c-400d-9191-bdf4dd90e5d0", + "start": { + "$date": "2022-01-29T20:28:22.000Z" + }, + "end": { + "$date": "2022-01-29T20:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a7708fd-e50f-46c2-8a5d-59102ebb8327", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-29T20:47:34.000Z" + }, + "end": { + "$date": "2022-01-29T21:08:21.000Z" + }, + "events": [ + { + "uuid": "1993d88d-4678-4771-b3a0-c8e5fc28ba0f", + "start": { + "$date": "2022-01-29T20:47:34.000Z" + }, + "end": { + "$date": "2022-01-29T21:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9e4d5602-0353-4582-9c80-d1c8f3a7cf30", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-29T22:25:12.000Z" + }, + "end": { + "$date": "2022-01-29T22:54:58.000Z" + }, + "events": [ + { + "uuid": "0c652c77-a5d5-40f9-9526-28ce4842c2d7", + "start": { + "$date": "2022-01-29T22:25:12.000Z" + }, + "end": { + "$date": "2022-01-29T22:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "de26470c-a0e4-44a2-bcfe-e26831df27a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T22:55:09.000Z" + }, + "end": { + "$date": "2022-01-29T23:40:26.000Z" + }, + "events": [ + { + "uuid": "e793c113-4b86-40e2-8552-c0f7567d845c", + "start": { + "$date": "2022-01-29T22:55:09.000Z" + }, + "end": { + "$date": "2022-01-29T23:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9ec88540-a856-465c-a1c0-65820023351f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-29T23:31:34.000Z" + }, + "end": { + "$date": "2022-01-29T23:32:14.000Z" + }, + "events": [ + { + "uuid": "5adbdc89-aae9-41fd-9462-08c6ea4b2d8d", + "start": { + "$date": "2022-01-29T23:31:34.000Z" + }, + "end": { + "$date": "2022-01-29T23:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fa302622-6583-4cf7-98e9-e0f67b1896d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-29T23:33:52.000Z" + }, + "end": { + "$date": "2022-01-29T23:35:03.000Z" + }, + "events": [ + { + "uuid": "876e672c-1893-4292-a9af-ad25a62678f9", + "start": { + "$date": "2022-01-29T23:33:52.000Z" + }, + "end": { + "$date": "2022-01-29T23:35:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "88faccb6-60ff-4a91-bafe-44f9a033e712", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-29T23:42:46.000Z" + }, + "end": { + "$date": "2022-01-30T00:19:23.000Z" + }, + "events": [ + { + "uuid": "11ce360b-a3d3-43e2-9b9a-9cc13fcfa070", + "start": { + "$date": "2022-01-29T23:42:46.000Z" + }, + "end": { + "$date": "2022-01-30T00:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "8cc2a708-1a2a-43b5-8f7f-3f0d296abcd4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T00:16:53.000Z" + }, + "end": { + "$date": "2022-01-30T03:17:30.000Z" + }, + "events": [ + { + "uuid": "6594474b-e5b1-44ac-ad1c-e895ee642939", + "start": { + "$date": "2022-01-30T00:16:53.000Z" + }, + "end": { + "$date": "2022-01-30T03:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f23ada10-70b7-427f-8d3d-dec2eb04065c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T00:20:18.000Z" + }, + "end": { + "$date": "2022-01-30T01:01:09.000Z" + }, + "events": [ + { + "uuid": "fd9fa4d7-c523-4591-9ce9-1af24d639c7f", + "start": { + "$date": "2022-01-30T00:20:18.000Z" + }, + "end": { + "$date": "2022-01-30T01:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cb6c152d-50b6-485b-9b59-302138fea713", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-30T00:41:53.000Z" + }, + "end": { + "$date": "2022-01-30T02:13:06.000Z" + }, + "events": [ + { + "uuid": "1050d7c3-f935-4401-88ba-6635614b0906", + "start": { + "$date": "2022-01-30T00:41:53.000Z" + }, + "end": { + "$date": "2022-01-30T02:13:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "3cfeb9c5-41cc-41d4-a054-7f3786c86e2c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T01:01:29.000Z" + }, + "end": { + "$date": "2022-01-30T02:12:44.000Z" + }, + "events": [ + { + "uuid": "a6396c6f-4d5d-4e65-af7e-e078ecd75287", + "start": { + "$date": "2022-01-30T01:01:29.000Z" + }, + "end": { + "$date": "2022-01-30T02:12:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae7b8e68-6c20-4cf1-b499-8736261bc295", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T01:31:01.000Z" + }, + "end": { + "$date": "2022-01-30T01:50:08.000Z" + }, + "events": [ + { + "uuid": "c61ca34b-3b42-42b6-a5fd-46d538252efe", + "start": { + "$date": "2022-01-30T01:31:01.000Z" + }, + "end": { + "$date": "2022-01-30T01:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c1f1d47-16cc-4222-9910-05096d638470", + "uuid": "78148d06-e3bf-4d7d-945e-d09fdfecd1e7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-01-30T01:41:47.000Z" + }, + "end": { + "$date": "2022-01-30T01:54:39.000Z" + }, + "events": [ + { + "uuid": "1d7113fe-c7b5-4b26-8513-5379e42b7aee", + "start": { + "$date": "2022-01-30T01:41:47.000Z" + }, + "end": { + "$date": "2022-01-30T01:54:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "570c68cb-8778-4b5f-9c80-a6ed586e25a5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T01:52:02.000Z" + }, + "end": { + "$date": "2022-01-30T02:11:44.000Z" + }, + "events": [ + { + "uuid": "2ca5a0b6-6975-4dd5-8ece-66e67eb92885", + "start": { + "$date": "2022-01-30T01:52:02.000Z" + }, + "end": { + "$date": "2022-01-30T02:11:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a844b1a8-8842-480c-ad90-17b6304194a9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T02:25:15.000Z" + }, + "end": { + "$date": "2022-01-30T02:43:56.000Z" + }, + "events": [ + { + "uuid": "7ec8d0df-86d0-4d22-9c5d-cd2def9ea819", + "start": { + "$date": "2022-01-30T02:25:15.000Z" + }, + "end": { + "$date": "2022-01-30T02:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "54105190-dc87-489a-8a47-9aea17e2bc5e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T02:45:57.000Z" + }, + "end": { + "$date": "2022-01-30T02:46:16.000Z" + }, + "events": [ + { + "uuid": "d0359d55-6f52-4c7b-9c80-f44b05ffba1d", + "start": { + "$date": "2022-01-30T02:45:57.000Z" + }, + "end": { + "$date": "2022-01-30T02:46:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6bbd96b4-fd9c-418b-aa2b-4982deac7506", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T02:48:47.000Z" + }, + "end": { + "$date": "2022-01-30T03:09:17.000Z" + }, + "events": [ + { + "uuid": "ed1cae88-d176-4e28-bb4b-8b4bdc7ef34c", + "start": { + "$date": "2022-01-30T02:48:47.000Z" + }, + "end": { + "$date": "2022-01-30T03:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "727b8cf9-7bcf-4b50-a31e-506ee05b05be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-30T02:51:36.000Z" + }, + "end": { + "$date": "2022-01-30T04:01:39.000Z" + }, + "events": [ + { + "uuid": "8706db29-44f1-4257-b012-3e3e053fdc61", + "start": { + "$date": "2022-01-30T02:51:36.000Z" + }, + "end": { + "$date": "2022-01-30T04:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "8e9937c6-4a35-4aa7-9186-b2c1e8e97384", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-30T03:04:06.000Z" + }, + "end": { + "$date": "2022-01-30T03:08:21.000Z" + }, + "events": [ + { + "uuid": "fc926d56-0994-4be9-a035-1b1801a3b399", + "start": { + "$date": "2022-01-30T03:04:06.000Z" + }, + "end": { + "$date": "2022-01-30T03:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "e15d4dd9-ed69-483c-8b50-0f886f3007f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-30T03:08:51.000Z" + }, + "end": { + "$date": "2022-01-30T03:31:49.000Z" + }, + "events": [ + { + "uuid": "e430c958-d4fb-4e81-b975-4fe096d2b83c", + "start": { + "$date": "2022-01-30T03:08:51.000Z" + }, + "end": { + "$date": "2022-01-30T03:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83817b73-4bdf-4a1c-bdfd-ca066cce4a7e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T03:13:44.000Z" + }, + "end": { + "$date": "2022-01-30T03:43:41.000Z" + }, + "events": [ + { + "uuid": "02cbe606-ca9c-4041-b6ce-c72a5be3b9f9", + "start": { + "$date": "2022-01-30T03:13:44.000Z" + }, + "end": { + "$date": "2022-01-30T03:43:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db18f39d-193e-4a98-8bd2-af047a17da43", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T03:20:35.000Z" + }, + "end": { + "$date": "2022-01-30T04:01:02.000Z" + }, + "events": [ + { + "uuid": "000c7891-cc45-4746-b5a1-cb1a6a6ecf9a", + "start": { + "$date": "2022-01-30T03:20:35.000Z" + }, + "end": { + "$date": "2022-01-30T04:01:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "afee3974-f12f-4cbc-b4a7-fbcae65b8c67", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-30T03:29:37.000Z" + }, + "end": { + "$date": "2022-01-30T04:02:46.000Z" + }, + "events": [ + { + "uuid": "74fef37b-4846-4e66-a84e-b1f8c0b4ef2d", + "start": { + "$date": "2022-01-30T03:29:37.000Z" + }, + "end": { + "$date": "2022-01-30T04:02:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1208d04-5d8b-4f96-bba9-931c3e3fe26a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T04:14:10.000Z" + }, + "end": { + "$date": "2022-01-30T04:42:49.000Z" + }, + "events": [ + { + "uuid": "4eebca2a-ca48-49ab-a38c-65a4c881e8fc", + "start": { + "$date": "2022-01-30T04:14:10.000Z" + }, + "end": { + "$date": "2022-01-30T04:42:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "758731a3-b6cb-45e9-a042-e9d06ba0c82c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T03:48:01.000Z" + }, + "end": { + "$date": "2022-01-30T04:15:07.000Z" + }, + "events": [ + { + "uuid": "d64bc813-9b54-4a33-b7e7-ecada5e0eeed", + "start": { + "$date": "2022-01-30T03:48:01.000Z" + }, + "end": { + "$date": "2022-01-30T04:15:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f199a4dd-2db8-494a-b0d7-ffbe71448897", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T04:19:08.000Z" + }, + "end": { + "$date": "2022-01-30T04:33:33.000Z" + }, + "events": [ + { + "uuid": "e4579753-accb-493c-8a66-eaf767692340", + "start": { + "$date": "2022-01-30T04:19:08.000Z" + }, + "end": { + "$date": "2022-01-30T04:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e5db51db-6f76-4b80-b5c4-a91d6f3eddc6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-30T04:33:45.000Z" + }, + "end": { + "$date": "2022-01-30T07:35:15.000Z" + }, + "events": [ + { + "uuid": "f2910ce1-bf1d-4cf1-a7f1-4c7b19875e57", + "start": { + "$date": "2022-01-30T04:33:45.000Z" + }, + "end": { + "$date": "2022-01-30T07:35:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "797944ab-ddf1-4d26-a757-8fb3785fc8d5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T04:43:34.000Z" + }, + "end": { + "$date": "2022-01-30T05:08:22.000Z" + }, + "events": [ + { + "uuid": "5612be1c-e784-437b-98a9-0b79292212e1", + "start": { + "$date": "2022-01-30T04:43:34.000Z" + }, + "end": { + "$date": "2022-01-30T05:08:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "84360595-203c-4ae6-882e-dd2345ee111b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-30T04:43:51.000Z" + }, + "end": { + "$date": "2022-01-30T05:25:16.000Z" + }, + "events": [ + { + "uuid": "66e9ed59-85f5-4c07-a07e-75cbbf780af8", + "start": { + "$date": "2022-01-30T04:43:51.000Z" + }, + "end": { + "$date": "2022-01-30T05:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c1bc61ad-cfc5-405a-848f-6e59a4f51be8", + "uuid": "d920fe03-d30d-46cd-88a7-4e93f3b8b1ce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T04:45:03.000Z" + }, + "end": { + "$date": "2022-01-30T05:16:10.000Z" + }, + "events": [ + { + "uuid": "5cfc4e29-1c43-467b-9053-4d8c88c0148f", + "start": { + "$date": "2022-01-30T04:45:03.000Z" + }, + "end": { + "$date": "2022-01-30T05:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e15fee42-466a-4182-9edb-fbbf4b3eb8b7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T05:12:18.000Z" + }, + "end": { + "$date": "2022-01-30T05:32:34.000Z" + }, + "events": [ + { + "uuid": "274ed9de-41a4-43e4-bb2f-a332bcaa47ad", + "start": { + "$date": "2022-01-30T05:12:18.000Z" + }, + "end": { + "$date": "2022-01-30T05:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c577ab27-2d0e-4a0a-94aa-8dc970d3ac46", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T05:16:31.000Z" + }, + "end": { + "$date": "2022-01-30T06:00:50.000Z" + }, + "events": [ + { + "uuid": "05153fc2-df24-4c79-bce9-72868280105b", + "start": { + "$date": "2022-01-30T05:16:31.000Z" + }, + "end": { + "$date": "2022-01-30T05:29:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c230bc69-e7b0-4ab0-9788-2860b534857a", + "start": { + "$date": "2022-01-30T05:29:31.000Z" + }, + "end": { + "$date": "2022-01-30T05:45:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9023d62-bb67-4a1b-b569-6f0f550c2802", + "start": { + "$date": "2022-01-30T05:45:31.000Z" + }, + "end": { + "$date": "2022-01-30T06:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "44191590-59b8-497e-ad78-da7e030c3cd9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-30T05:26:49.000Z" + }, + "end": { + "$date": "2022-01-30T07:43:46.000Z" + }, + "events": [ + { + "uuid": "9d5a95ed-0f31-488e-9b9f-52a5c5308e52", + "start": { + "$date": "2022-01-30T05:26:49.000Z" + }, + "end": { + "$date": "2022-01-30T07:43:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e59aac05-850d-4bb7-8596-ec477966f763", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T05:34:48.000Z" + }, + "end": { + "$date": "2022-01-30T05:57:41.000Z" + }, + "events": [ + { + "uuid": "24e69e98-cf38-4daf-8762-6076320e2136", + "start": { + "$date": "2022-01-30T05:34:48.000Z" + }, + "end": { + "$date": "2022-01-30T05:57:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ca16f88-c37f-4794-9144-4fece5f7ddaa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-30T05:41:07.000Z" + }, + "end": { + "$date": "2022-01-30T07:37:28.000Z" + }, + "events": [ + { + "uuid": "375ce0b3-b47d-48d7-b4e6-da6f43a0f311", + "start": { + "$date": "2022-01-30T05:41:07.000Z" + }, + "end": { + "$date": "2022-01-30T07:37:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "ca989b35-b3f3-4319-9927-578598f29234", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T05:52:37.000Z" + }, + "end": { + "$date": "2022-01-30T07:14:43.000Z" + }, + "events": [ + { + "uuid": "5c8a2e1f-862c-47f1-8422-257962b5d99f", + "start": { + "$date": "2022-01-30T05:52:37.000Z" + }, + "end": { + "$date": "2022-01-30T07:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "06d140d6-35b9-4f2b-84d6-b7ed3a618c4c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T05:59:39.000Z" + }, + "end": { + "$date": "2022-01-30T06:20:51.000Z" + }, + "events": [ + { + "uuid": "008527e3-ccb6-4889-ac19-38ffc0e6a0e7", + "start": { + "$date": "2022-01-30T05:59:39.000Z" + }, + "end": { + "$date": "2022-01-30T06:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63ddd641-411c-475a-9208-698946275625", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T06:02:33.000Z" + }, + "end": { + "$date": "2022-01-30T06:19:38.000Z" + }, + "events": [ + { + "uuid": "faa0de21-0a73-4d1a-becd-95c224f1d4e6", + "start": { + "$date": "2022-01-30T06:02:33.000Z" + }, + "end": { + "$date": "2022-01-30T06:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c1cd04b-0061-4bfd-a836-8481689e9500", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T06:02:25.000Z" + }, + "end": { + "$date": "2022-01-30T06:19:37.000Z" + }, + "events": [ + { + "uuid": "d2826ad5-af72-4bad-b055-16c67872ee96", + "start": { + "$date": "2022-01-30T06:02:25.000Z" + }, + "end": { + "$date": "2022-01-30T06:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "908fd39f-c76e-4b1e-a83f-b38aedde0d77", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-30T06:17:41.000Z" + }, + "end": { + "$date": "2022-01-30T06:32:05.000Z" + }, + "events": [ + { + "uuid": "47af568c-e2b8-42f7-b353-ae6541812a39", + "start": { + "$date": "2022-01-30T06:17:41.000Z" + }, + "end": { + "$date": "2022-01-30T06:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9da77763-814d-46ee-a762-0d2f7845b9ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T06:24:35.000Z" + }, + "end": { + "$date": "2022-01-30T06:43:22.000Z" + }, + "events": [ + { + "uuid": "82fd7ea1-87a0-496e-8246-9895ef7ba4e1", + "start": { + "$date": "2022-01-30T06:24:35.000Z" + }, + "end": { + "$date": "2022-01-30T06:43:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62074267-a1cb-4f1d-aed8-e0deda9c4caf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T06:24:05.000Z" + }, + "end": { + "$date": "2022-01-30T06:45:47.000Z" + }, + "events": [ + { + "uuid": "90187bd9-6436-4503-857f-ea6e28a032b3", + "start": { + "$date": "2022-01-30T06:24:05.000Z" + }, + "end": { + "$date": "2022-01-30T06:45:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0957910-e6a9-4b05-9b7c-bc927c64d879", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T06:24:36.000Z" + }, + "end": { + "$date": "2022-01-30T06:43:23.000Z" + }, + "events": [ + { + "uuid": "7a454c36-3fb4-4f57-8dbf-3f85d682ced5", + "start": { + "$date": "2022-01-30T06:24:36.000Z" + }, + "end": { + "$date": "2022-01-30T06:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "567dffe6-edb1-4d19-97d4-035c440d3cfc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-30T06:26:27.000Z" + }, + "end": { + "$date": "2022-01-30T07:25:02.000Z" + }, + "events": [ + { + "uuid": "406e871d-d3c9-4ebd-a6f8-bebf01154665", + "start": { + "$date": "2022-01-30T06:26:27.000Z" + }, + "end": { + "$date": "2022-01-30T07:25:02.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5e55527f-b38a-4a97-be41-40728c23439b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-30T06:32:20.000Z" + }, + "end": { + "$date": "2022-01-30T11:14:02.000Z" + }, + "events": [ + { + "uuid": "3934ace7-5c07-47b5-98ca-429dab6fa6f3", + "start": { + "$date": "2022-01-30T06:32:20.000Z" + }, + "end": { + "$date": "2022-01-30T11:14:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f06cb364-354b-4c20-a4ec-2554d10bf1b3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-30T06:37:22.000Z" + }, + "end": { + "$date": "2022-01-30T11:12:56.000Z" + }, + "events": [ + { + "uuid": "a0672f4e-7e67-4fe4-9c4d-e98eb4badbfd", + "start": { + "$date": "2022-01-30T06:37:22.000Z" + }, + "end": { + "$date": "2022-01-30T11:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "606ffeb9-eb4a-48bf-a9ee-d7f218cc5711", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T06:46:41.000Z" + }, + "end": { + "$date": "2022-01-30T07:12:26.000Z" + }, + "events": [ + { + "uuid": "2a6692f8-cb87-43fc-ae4a-fdff1242f648", + "start": { + "$date": "2022-01-30T06:46:41.000Z" + }, + "end": { + "$date": "2022-01-30T07:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4863c5e8-836a-4c16-99c0-c8234fe425a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T06:46:37.000Z" + }, + "end": { + "$date": "2022-01-30T07:12:23.000Z" + }, + "events": [ + { + "uuid": "f449c3d9-14a4-4235-909b-46970d9cd496", + "start": { + "$date": "2022-01-30T06:46:37.000Z" + }, + "end": { + "$date": "2022-01-30T07:12:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "895d2b2b-215e-47ed-a952-2f969faba686", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T06:48:31.000Z" + }, + "end": { + "$date": "2022-01-30T07:13:38.000Z" + }, + "events": [ + { + "uuid": "16797e97-95df-4b55-8347-bddb0df7ae55", + "start": { + "$date": "2022-01-30T06:48:31.000Z" + }, + "end": { + "$date": "2022-01-30T07:13:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8546df85-2570-446f-aa91-ade24c3b60dc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T07:16:07.000Z" + }, + "end": { + "$date": "2022-01-30T07:36:05.000Z" + }, + "events": [ + { + "uuid": "47b0c199-4dc1-4d86-a090-d46bb7f33dd3", + "start": { + "$date": "2022-01-30T07:16:07.000Z" + }, + "end": { + "$date": "2022-01-30T07:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ad6b4ca-d4c2-44fe-aef6-8799e1e8d2d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T07:28:06.000Z" + }, + "end": { + "$date": "2022-01-30T07:58:58.000Z" + }, + "events": [ + { + "uuid": "bfc7f465-2d89-42a5-ba84-b9d5e2411ad9", + "start": { + "$date": "2022-01-30T07:28:06.000Z" + }, + "end": { + "$date": "2022-01-30T07:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "eb0aed7d-d63c-4d34-8554-b0cdfcf3af3c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T07:24:22.000Z" + }, + "end": { + "$date": "2022-01-30T07:33:53.000Z" + }, + "events": [ + { + "uuid": "afc96ab6-09a4-4d90-a39e-370301124655", + "start": { + "$date": "2022-01-30T07:24:22.000Z" + }, + "end": { + "$date": "2022-01-30T07:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2278c8f9-8b9f-402a-955d-8d9d83a5bc35", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-30T07:32:48.000Z" + }, + "end": { + "$date": "2022-01-30T11:14:27.000Z" + }, + "events": [ + { + "uuid": "7af1094f-c7a5-4aff-b1fe-3cc027de828e", + "start": { + "$date": "2022-01-30T07:32:48.000Z" + }, + "end": { + "$date": "2022-01-30T11:14:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "351b57aa-68a5-463b-bf13-ee954ac37d55", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-30T07:56:16.000Z" + }, + "end": { + "$date": "2022-01-30T08:49:56.000Z" + }, + "events": [ + { + "uuid": "fc20edc1-abcc-421b-8cba-a7da4c46716e", + "start": { + "$date": "2022-01-30T07:56:16.000Z" + }, + "end": { + "$date": "2022-01-30T08:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d30ba208-8429-4dbf-8eb3-c304b64bd3ee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T08:09:13.000Z" + }, + "end": { + "$date": "2022-01-30T08:42:48.000Z" + }, + "events": [ + { + "uuid": "ed020428-8f5a-40e1-bf35-f25429b518b8", + "start": { + "$date": "2022-01-30T08:09:13.000Z" + }, + "end": { + "$date": "2022-01-30T08:42:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61db19ee-01a2-4e04-8c6b-6db280ee2574", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T08:57:56.000Z" + }, + "end": { + "$date": "2022-01-30T09:23:31.000Z" + }, + "events": [ + { + "uuid": "bd0b04f0-7561-45c0-871d-c1c45695c00b", + "start": { + "$date": "2022-01-30T08:57:56.000Z" + }, + "end": { + "$date": "2022-01-30T09:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f42de880-069f-4a12-b571-35aa83f15642", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T09:26:22.000Z" + }, + "end": { + "$date": "2022-01-30T09:48:08.000Z" + }, + "events": [ + { + "uuid": "cfdbe256-32b8-4d56-b153-37be8510438b", + "start": { + "$date": "2022-01-30T09:26:22.000Z" + }, + "end": { + "$date": "2022-01-30T09:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae8dd933-3389-400f-ad3f-5c925a0bcf81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T09:50:09.000Z" + }, + "end": { + "$date": "2022-01-30T10:17:39.000Z" + }, + "events": [ + { + "uuid": "3ede932c-bcea-4fb5-86a5-ecc8681b7fe1", + "start": { + "$date": "2022-01-30T09:50:09.000Z" + }, + "end": { + "$date": "2022-01-30T10:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dda2126f-f2ee-4a79-abbf-5389b9d636f1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T10:19:46.000Z" + }, + "end": { + "$date": "2022-01-30T10:33:03.000Z" + }, + "events": [ + { + "uuid": "fb40b7d2-0c3e-4261-8015-25fb716a2502", + "start": { + "$date": "2022-01-30T10:19:46.000Z" + }, + "end": { + "$date": "2022-01-30T10:33:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9aacb86-d38f-4945-b1f7-9a6f0c313665", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T10:35:08.000Z" + }, + "end": { + "$date": "2022-01-30T10:54:36.000Z" + }, + "events": [ + { + "uuid": "bb605c00-0aa3-4ff5-97bc-29e069da5ace", + "start": { + "$date": "2022-01-30T10:35:08.000Z" + }, + "end": { + "$date": "2022-01-30T10:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfd7c10b-d79b-4f88-a369-b4e7b573a850", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-30T10:56:24.000Z" + }, + "end": { + "$date": "2022-01-30T11:08:08.000Z" + }, + "events": [ + { + "uuid": "c230f4c4-0256-4eb9-a9ab-124d5e2c5f49", + "start": { + "$date": "2022-01-30T10:56:24.000Z" + }, + "end": { + "$date": "2022-01-30T11:08:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b0772a7c-beea-4bcd-88b8-6e9cf46d8337", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-30T12:40:21.000Z" + }, + "end": { + "$date": "2022-01-30T13:18:08.000Z" + }, + "events": [ + { + "uuid": "62429b95-ebed-4c6d-8c12-0fc3bee5a29d", + "start": { + "$date": "2022-01-30T12:40:21.000Z" + }, + "end": { + "$date": "2022-01-30T13:18:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c8c8474-fa79-4b03-b11b-10ccfa2c2047", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T15:09:43.000Z" + }, + "end": { + "$date": "2022-01-30T15:32:26.000Z" + }, + "events": [ + { + "uuid": "e4a61fba-32d4-4d30-88c2-903fb52ddacc", + "start": { + "$date": "2022-01-30T15:09:43.000Z" + }, + "end": { + "$date": "2022-01-30T15:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9428fbf-ed63-4119-8034-2d4572bb3ccd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T15:36:12.000Z" + }, + "end": { + "$date": "2022-01-30T16:14:58.000Z" + }, + "events": [ + { + "uuid": "2385c7c3-5b83-4a14-a29f-07b5ad04d459", + "start": { + "$date": "2022-01-30T15:36:12.000Z" + }, + "end": { + "$date": "2022-01-30T16:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "259f31d5-2b97-4c83-8c22-deca4dad8753", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T15:42:52.000Z" + }, + "end": { + "$date": "2022-01-30T15:46:17.000Z" + }, + "events": [ + { + "uuid": "4dd15f57-bad8-4ae9-88ec-625fc60625dc", + "start": { + "$date": "2022-01-30T15:42:52.000Z" + }, + "end": { + "$date": "2022-01-30T15:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9e0d4c8-d7be-4c5d-b807-33049ed36854", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T15:46:27.000Z" + }, + "end": { + "$date": "2022-01-30T17:19:40.000Z" + }, + "events": [ + { + "uuid": "fa32e1b6-2cd7-46c1-b055-e84cbf9a2a2f", + "start": { + "$date": "2022-01-30T15:46:27.000Z" + }, + "end": { + "$date": "2022-01-30T17:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "9cd17203-20ed-4452-bcbe-82659e16c7e5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-30T18:55:21.000Z" + }, + "end": { + "$date": "2022-01-30T18:55:26.000Z" + }, + "events": [ + { + "uuid": "059933de-9a4a-4bab-8abd-8a925e8136b8", + "start": { + "$date": "2022-01-30T18:55:21.000Z" + }, + "end": { + "$date": "2022-01-30T19:06:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37f12eb8-de3e-4ce5-8351-13215dfc8adf", + "start": { + "$date": "2022-01-30T19:06:21.000Z" + }, + "end": { + "$date": "2022-01-30T19:21:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6d8eb47-4142-466e-9192-516b40fc3d4d", + "start": { + "$date": "2022-01-30T19:21:21.000Z" + }, + "end": { + "$date": "2022-01-30T19:31:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc35da9a-effd-4de9-8c40-57e228c82954", + "start": { + "$date": "2022-01-30T19:31:21.000Z" + }, + "end": { + "$date": "2022-01-30T19:35:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e034e2ee-f292-4dec-b7ab-71c8695d572a", + "start": { + "$date": "2022-01-30T19:35:21.000Z" + }, + "end": { + "$date": "2022-01-30T19:37:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c968c8a4-02b2-41c1-9267-793c751d29b8", + "start": { + "$date": "2022-01-30T19:37:21.000Z" + }, + "end": { + "$date": "2022-01-30T20:04:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c65217ba-e3cd-482d-a5e4-480780152a60", + "start": { + "$date": "2022-01-30T20:04:21.000Z" + }, + "end": { + "$date": "2022-01-30T18:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b92671f3-507f-479e-832f-f4f6b58567d3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T16:15:11.000Z" + }, + "end": { + "$date": "2022-01-30T16:16:43.000Z" + }, + "events": [ + { + "uuid": "a74c65c2-cbd7-460f-9eaf-afec197a258b", + "start": { + "$date": "2022-01-30T16:15:11.000Z" + }, + "end": { + "$date": "2022-01-30T16:16:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2cbf84f0-19d1-41e1-9261-d89f65b3ec8b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-30T16:24:05.000Z" + }, + "end": { + "$date": "2022-01-30T16:36:40.000Z" + }, + "events": [ + { + "uuid": "6e4bba63-2336-4018-b17f-9776aa502535", + "start": { + "$date": "2022-01-30T16:24:05.000Z" + }, + "end": { + "$date": "2022-01-30T16:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d058c5f-0068-4961-8bc5-63bf5fcd654e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-30T16:39:05.000Z" + }, + "end": { + "$date": "2022-01-30T16:53:00.000Z" + }, + "events": [ + { + "uuid": "cc32bb1b-e8b1-41ac-a2b3-78f384522ffb", + "start": { + "$date": "2022-01-30T16:39:05.000Z" + }, + "end": { + "$date": "2022-01-30T16:53:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "f1bcd068-06d6-40e8-98c9-0578dd328efc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T17:22:30.000Z" + }, + "end": { + "$date": "2022-01-30T18:09:51.000Z" + }, + "events": [ + { + "uuid": "23d4ee21-40cc-45a4-9758-9520f3703ecf", + "start": { + "$date": "2022-01-30T17:22:30.000Z" + }, + "end": { + "$date": "2022-01-30T18:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6747ee03-e3e1-46cd-a1a9-ef62d8643f60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-30T17:53:45.000Z" + }, + "end": { + "$date": "2022-01-30T18:16:01.000Z" + }, + "events": [ + { + "uuid": "da2b0b40-f19c-463b-b1c4-9bbda712626e", + "start": { + "$date": "2022-01-30T17:53:45.000Z" + }, + "end": { + "$date": "2022-01-30T18:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "5ff97903-07fc-454c-b889-cb9fea1eea1c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T18:33:39.000Z" + }, + "end": { + "$date": "2022-01-30T19:25:20.000Z" + }, + "events": [ + { + "uuid": "3883fceb-717c-4e55-aeb7-a3233056e1d3", + "start": { + "$date": "2022-01-30T18:33:39.000Z" + }, + "end": { + "$date": "2022-01-30T19:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb015c4f-0846-4295-9d1f-7a394198a7d9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T18:45:31.000Z" + }, + "end": { + "$date": "2022-01-30T19:04:22.000Z" + }, + "events": [ + { + "uuid": "36079323-b340-48e3-abd6-0d6781e9daab", + "start": { + "$date": "2022-01-30T18:45:31.000Z" + }, + "end": { + "$date": "2022-01-30T19:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae0c4a51-55d4-47e0-bb75-2412ede71604", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T19:04:26.000Z" + }, + "end": { + "$date": "2022-01-30T19:05:28.000Z" + }, + "events": [ + { + "uuid": "ac4a6c86-e518-4949-938d-efd93fd0f731", + "start": { + "$date": "2022-01-30T19:04:26.000Z" + }, + "end": { + "$date": "2022-01-30T19:05:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5ab4bd27-5c7e-4dea-ac64-8f23bfe3f233", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T19:25:36.000Z" + }, + "end": { + "$date": "2022-01-30T20:17:52.000Z" + }, + "events": [ + { + "uuid": "7447a79c-79bc-49df-8079-97fdd424189d", + "start": { + "$date": "2022-01-30T19:25:36.000Z" + }, + "end": { + "$date": "2022-01-30T20:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c1bc61ad-cfc5-405a-848f-6e59a4f51be8", + "uuid": "3300d1da-10f8-4143-85e5-9fc119397ea7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-30T19:43:05.000Z" + }, + "end": { + "$date": "2022-01-30T20:44:50.000Z" + }, + "events": [ + { + "uuid": "d1d6d029-31b0-437d-be5a-58b32eec78d9", + "start": { + "$date": "2022-01-30T19:43:05.000Z" + }, + "end": { + "$date": "2022-01-30T20:44:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19927eff-b63d-48cc-b2ac-28f424134280", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T19:47:58.000Z" + }, + "end": { + "$date": "2022-01-30T20:29:04.000Z" + }, + "events": [ + { + "uuid": "db731a7b-04fc-4a74-be6d-3d3c88d68ee4", + "start": { + "$date": "2022-01-30T19:47:58.000Z" + }, + "end": { + "$date": "2022-01-30T20:29:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "79742a58-1c87-4a4b-a47b-4d4f0b94b13e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-30T20:18:22.000Z" + }, + "end": { + "$date": "2022-01-30T20:20:58.000Z" + }, + "events": [ + { + "uuid": "e34e8f7c-146e-4f5a-8cad-a6fc22079f4d", + "start": { + "$date": "2022-01-30T20:18:22.000Z" + }, + "end": { + "$date": "2022-01-30T20:20:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ebfc9360-b046-4a09-9de9-a22b2b4f16b7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T20:34:59.000Z" + }, + "end": { + "$date": "2022-01-30T21:54:37.000Z" + }, + "events": [ + { + "uuid": "ed97394f-7fbe-41e2-bbd8-90364f5ccc74", + "start": { + "$date": "2022-01-30T20:34:59.000Z" + }, + "end": { + "$date": "2022-01-30T20:50:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc272764-c414-4ec8-839e-26d5832f437a", + "start": { + "$date": "2022-01-30T20:50:59.000Z" + }, + "end": { + "$date": "2022-01-30T21:22:59.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a5ae2cc-e4da-4077-ae91-a526827d6933", + "start": { + "$date": "2022-01-30T21:22:59.000Z" + }, + "end": { + "$date": "2022-01-30T21:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20e699a8-13e1-4b8b-8fa1-e7654282ad8f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-30T20:40:05.000Z" + }, + "end": { + "$date": "2022-01-30T20:58:31.000Z" + }, + "events": [ + { + "uuid": "5b19f92d-866b-4f63-a7db-f6b9a4074c53", + "start": { + "$date": "2022-01-30T20:40:05.000Z" + }, + "end": { + "$date": "2022-01-30T20:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "ad1758b8-7111-44f6-b473-863272a55b4d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-30T20:42:25.000Z" + }, + "end": { + "$date": "2022-01-30T21:31:00.000Z" + }, + "events": [ + { + "uuid": "71b749a9-8051-4718-9e08-26efe5640bf2", + "start": { + "$date": "2022-01-30T20:42:25.000Z" + }, + "end": { + "$date": "2022-01-30T21:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "23057b14-6a01-483f-8e9a-b414c2ead3f5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-30T21:14:33.000Z" + }, + "end": { + "$date": "2022-01-30T21:39:53.000Z" + }, + "events": [ + { + "uuid": "1e62e4c2-6daa-448a-892e-2c5771cd995e", + "start": { + "$date": "2022-01-30T21:14:33.000Z" + }, + "end": { + "$date": "2022-01-30T21:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c011576c-0dee-4dd3-b764-81898a5515be", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T21:24:44.000Z" + }, + "end": { + "$date": "2022-01-30T21:46:29.000Z" + }, + "events": [ + { + "uuid": "81897da0-229f-4efb-b72f-d8283ca0a3f0", + "start": { + "$date": "2022-01-30T21:24:44.000Z" + }, + "end": { + "$date": "2022-01-30T21:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "07c16124-48c5-4ad2-be2f-fdf6e2d5a201", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-30T22:19:13.000Z" + }, + "end": { + "$date": "2022-01-30T22:21:55.000Z" + }, + "events": [ + { + "uuid": "fad00194-bd9c-477a-a39b-29e27354d469", + "start": { + "$date": "2022-01-30T22:19:13.000Z" + }, + "end": { + "$date": "2022-01-30T22:21:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0c5e394-d878-4dca-a7f8-82abf6c7d621", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-30T21:49:45.000Z" + }, + "end": { + "$date": "2022-01-30T22:12:43.000Z" + }, + "events": [ + { + "uuid": "00bbc4b5-1ea0-4f4f-94b4-be0adb17ecab", + "start": { + "$date": "2022-01-30T21:49:45.000Z" + }, + "end": { + "$date": "2022-01-30T22:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4a026c7f-e7ef-4084-989c-0babde5f7e0f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-30T22:13:28.000Z" + }, + "end": { + "$date": "2022-01-31T00:57:51.000Z" + }, + "events": [ + { + "uuid": "bce34a32-12a0-45d0-bd82-2778bb9a13c0", + "start": { + "$date": "2022-01-30T22:13:28.000Z" + }, + "end": { + "$date": "2022-01-31T00:57:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cbf00bca-f680-430b-8c1d-a40676ade4d3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-30T23:30:27.000Z" + }, + "end": { + "$date": "2022-01-31T00:57:57.000Z" + }, + "events": [ + { + "uuid": "cafde953-fe19-474f-af2d-5c8771a87378", + "start": { + "$date": "2022-01-30T23:30:27.000Z" + }, + "end": { + "$date": "2022-01-31T00:57:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2bcbb9a-88c9-4831-b9b5-14983c6b90c3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T22:35:02.000Z" + }, + "end": { + "$date": "2022-01-30T23:11:06.000Z" + }, + "events": [ + { + "uuid": "42909e25-f0cd-4ad6-b242-0d779f487311", + "start": { + "$date": "2022-01-30T22:35:02.000Z" + }, + "end": { + "$date": "2022-01-30T23:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f4c77db-d66c-4a34-b2e7-00988a2ac22b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T23:13:39.000Z" + }, + "end": { + "$date": "2022-01-30T23:38:53.000Z" + }, + "events": [ + { + "uuid": "eb466012-e7e3-4bcb-8beb-6019349488ce", + "start": { + "$date": "2022-01-30T23:13:39.000Z" + }, + "end": { + "$date": "2022-01-30T23:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "617d8b9e-c449-4eb1-8b39-56d825ad565b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-30T23:41:25.000Z" + }, + "end": { + "$date": "2022-01-31T00:07:21.000Z" + }, + "events": [ + { + "uuid": "b2e0cbc1-c387-4b72-b98b-b0137d1857e5", + "start": { + "$date": "2022-01-30T23:41:25.000Z" + }, + "end": { + "$date": "2022-01-31T00:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a28d6289-f009-4f96-9ea9-ec40e2549fb9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T00:09:32.000Z" + }, + "end": { + "$date": "2022-01-31T00:25:48.000Z" + }, + "events": [ + { + "uuid": "a1f13ef5-b591-45c9-80bc-5cb3829660c6", + "start": { + "$date": "2022-01-31T00:09:32.000Z" + }, + "end": { + "$date": "2022-01-31T00:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5dbcec81-5387-413e-90d9-e4f3e41c88af", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T00:28:03.000Z" + }, + "end": { + "$date": "2022-01-31T00:45:08.000Z" + }, + "events": [ + { + "uuid": "f8ce817c-da25-44aa-9433-a9d520b6eb3f", + "start": { + "$date": "2022-01-31T00:28:03.000Z" + }, + "end": { + "$date": "2022-01-31T00:45:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c579722a-00a7-44ba-9713-2550abc470f1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T01:10:41.000Z" + }, + "end": { + "$date": "2022-01-31T01:31:53.000Z" + }, + "events": [ + { + "uuid": "9ac4bef5-209a-4edf-9274-77266bf5028a", + "start": { + "$date": "2022-01-31T01:10:41.000Z" + }, + "end": { + "$date": "2022-01-31T01:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f39157ca-f736-430b-90d9-3c5e2c1da497", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-31T01:14:04.000Z" + }, + "end": { + "$date": "2022-01-31T03:14:32.000Z" + }, + "events": [ + { + "uuid": "1f5cbd6e-9d99-4e98-9c75-4c85f8f4d241", + "start": { + "$date": "2022-01-31T01:14:04.000Z" + }, + "end": { + "$date": "2022-01-31T03:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "273d03e0-b5db-483a-af5b-eaedbec79b65", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T01:43:04.000Z" + }, + "end": { + "$date": "2022-01-31T02:06:23.000Z" + }, + "events": [ + { + "uuid": "7a40c164-07e8-4b08-bfe4-593f38f9f736", + "start": { + "$date": "2022-01-31T01:43:04.000Z" + }, + "end": { + "$date": "2022-01-31T02:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ff4c417-5630-43ee-bbda-b2a370964eb4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T02:08:45.000Z" + }, + "end": { + "$date": "2022-01-31T02:29:11.000Z" + }, + "events": [ + { + "uuid": "99719b0c-a9ee-40ba-9829-da7b798acda2", + "start": { + "$date": "2022-01-31T02:08:45.000Z" + }, + "end": { + "$date": "2022-01-31T02:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bff5a99d-a6dd-493f-9eed-7e64206c5ec0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T02:31:26.000Z" + }, + "end": { + "$date": "2022-01-31T02:55:01.000Z" + }, + "events": [ + { + "uuid": "d791d0fc-7a48-46c2-92f7-8f3b8ea1e0f5", + "start": { + "$date": "2022-01-31T02:31:26.000Z" + }, + "end": { + "$date": "2022-01-31T02:55:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2857975b-9828-4b6b-9412-71f1d4250dfa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-31T02:34:09.000Z" + }, + "end": { + "$date": "2022-01-31T02:48:55.000Z" + }, + "events": [ + { + "uuid": "53885843-a932-4569-bbac-c39d254fed30", + "start": { + "$date": "2022-01-31T02:34:09.000Z" + }, + "end": { + "$date": "2022-01-31T02:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8a4faf6-f1ae-4e48-bac2-1fe771246e80", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-31T02:49:14.000Z" + }, + "end": { + "$date": "2022-01-31T03:28:26.000Z" + }, + "events": [ + { + "uuid": "0ba3e8e1-93b4-4eb7-b95e-4e7e3389d171", + "start": { + "$date": "2022-01-31T02:49:14.000Z" + }, + "end": { + "$date": "2022-01-31T03:28:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "46f3e637-133b-4790-93a0-617e8a135c02", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-01-31T02:54:17.000Z" + }, + "end": { + "$date": "2022-01-31T08:06:19.000Z" + }, + "events": [ + { + "uuid": "2fdcb722-0273-49e0-88ff-39cc5d9919cd", + "start": { + "$date": "2022-01-31T02:54:17.000Z" + }, + "end": { + "$date": "2022-01-31T08:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e4b0dc2d-6907-4482-9db9-814bb92c3906", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-01-31T02:54:45.000Z" + }, + "end": { + "$date": "2022-01-31T06:52:37.000Z" + }, + "events": [ + { + "uuid": "48858ce5-b9e4-40b9-9631-a606f93a401e", + "start": { + "$date": "2022-01-31T02:54:45.000Z" + }, + "end": { + "$date": "2022-01-31T06:52:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd99d8ba-bbde-45f5-97ec-c1ce7311ff91", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T02:57:18.000Z" + }, + "end": { + "$date": "2022-01-31T03:15:06.000Z" + }, + "events": [ + { + "uuid": "b671e6eb-dc21-4d44-b14a-efaf8d3fa487", + "start": { + "$date": "2022-01-31T02:57:18.000Z" + }, + "end": { + "$date": "2022-01-31T03:15:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1ba10562-ce55-4e6b-a694-3f4480730ba7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-31T03:15:02.000Z" + }, + "end": { + "$date": "2022-01-31T06:28:22.000Z" + }, + "events": [ + { + "uuid": "1d23c9eb-2065-4142-b376-535400955587", + "start": { + "$date": "2022-01-31T03:15:02.000Z" + }, + "end": { + "$date": "2022-01-31T06:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eb02273c-6253-446c-9eb9-a9022aaf9baf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-31T03:29:21.000Z" + }, + "end": { + "$date": "2022-01-31T03:57:02.000Z" + }, + "events": [ + { + "uuid": "e2714512-2def-40db-8754-84bfb0c81585", + "start": { + "$date": "2022-01-31T03:29:21.000Z" + }, + "end": { + "$date": "2022-01-31T03:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d02ad50-99bb-4996-b350-a91753720366", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-31T03:44:03.000Z" + }, + "end": { + "$date": "2022-01-31T04:08:09.000Z" + }, + "events": [ + { + "uuid": "bf53e2d8-0df1-4ec6-a302-655ff8e24644", + "start": { + "$date": "2022-01-31T03:44:03.000Z" + }, + "end": { + "$date": "2022-01-31T04:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "2caaed5f-0bf0-4d17-a721-59c265a45d0b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T03:44:32.000Z" + }, + "end": { + "$date": "2022-01-31T03:47:27.000Z" + }, + "events": [ + { + "uuid": "ea5e4bd9-1938-42df-acf3-a4898527740b", + "start": { + "$date": "2022-01-31T03:44:32.000Z" + }, + "end": { + "$date": "2022-01-31T03:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7bb01c0-38b6-4879-be4b-499f7ce43c70", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-31T04:12:50.000Z" + }, + "end": { + "$date": "2022-01-31T04:42:02.000Z" + }, + "events": [ + { + "uuid": "392ed063-f38e-4a3d-b505-a2c5774a5b67", + "start": { + "$date": "2022-01-31T04:12:50.000Z" + }, + "end": { + "$date": "2022-01-31T04:42:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e66a39e-37eb-4657-95b4-a353866f92ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-31T04:41:53.000Z" + }, + "end": { + "$date": "2022-01-31T04:41:59.000Z" + }, + "events": [ + { + "uuid": "c3ca170b-389d-4238-9d07-224c54ceaf50", + "start": { + "$date": "2022-01-31T04:41:53.000Z" + }, + "end": { + "$date": "2022-01-31T04:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6e08ccab-33c1-475a-a379-b00e94b4e4c0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-31T04:26:43.000Z" + }, + "end": { + "$date": "2022-01-31T08:05:46.000Z" + }, + "events": [ + { + "uuid": "3a26586b-151e-4ab9-8d97-7decf209e539", + "start": { + "$date": "2022-01-31T04:26:43.000Z" + }, + "end": { + "$date": "2022-01-31T08:05:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7153e398-0538-4b3c-bfdd-b229a0964448", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T04:35:58.000Z" + }, + "end": { + "$date": "2022-01-31T04:50:59.000Z" + }, + "events": [ + { + "uuid": "18f8af0d-b2ca-4c6e-aa47-19638ce08e0e", + "start": { + "$date": "2022-01-31T04:35:58.000Z" + }, + "end": { + "$date": "2022-01-31T04:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "f64b51ec-b7ee-4b2f-9156-6cc2cc01952e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-31T04:41:38.000Z" + }, + "end": { + "$date": "2022-01-31T04:50:49.000Z" + }, + "events": [ + { + "uuid": "4395dfa6-0e18-41c3-b043-a03f5e727d15", + "start": { + "$date": "2022-01-31T04:41:38.000Z" + }, + "end": { + "$date": "2022-01-31T04:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "885d57a9-28db-4fe6-be64-7de80f486a91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-01-31T04:42:53.000Z" + }, + "end": { + "$date": "2022-01-31T04:45:39.000Z" + }, + "events": [ + { + "uuid": "961fe886-03de-40a8-9325-61f4cd801875", + "start": { + "$date": "2022-01-31T04:42:53.000Z" + }, + "end": { + "$date": "2022-01-31T04:45:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b2217ae5-e678-4789-9f13-04d11115177c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T04:54:38.000Z" + }, + "end": { + "$date": "2022-01-31T05:08:39.000Z" + }, + "events": [ + { + "uuid": "3ace3372-4aef-4bc5-a989-d07ff675058c", + "start": { + "$date": "2022-01-31T04:54:38.000Z" + }, + "end": { + "$date": "2022-01-31T05:08:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cf7a957e-5eb2-4ced-a03d-5eafd5eb9f7f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-01-31T04:10:10.000Z" + }, + "end": { + "$date": "2022-01-31T06:03:22.000Z" + }, + "events": [ + { + "uuid": "78bf2186-f3c0-4470-ba5d-2b18c1f417ed", + "start": { + "$date": "2022-01-31T04:10:10.000Z" + }, + "end": { + "$date": "2022-01-31T06:03:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcb39006-f6e5-43ea-87cb-56871abc20c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T05:11:14.000Z" + }, + "end": { + "$date": "2022-01-31T05:31:42.000Z" + }, + "events": [ + { + "uuid": "598fbb3a-0320-4ecf-a654-537d7a55adce", + "start": { + "$date": "2022-01-31T05:11:14.000Z" + }, + "end": { + "$date": "2022-01-31T05:31:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "031e4c08-c35f-486b-b74b-822b8af1cb82", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T05:34:26.000Z" + }, + "end": { + "$date": "2022-01-31T06:01:49.000Z" + }, + "events": [ + { + "uuid": "2a22fb89-4b49-4b51-847f-71db3a96b7fc", + "start": { + "$date": "2022-01-31T05:34:26.000Z" + }, + "end": { + "$date": "2022-01-31T06:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04ea4313-3d3a-4566-b534-508c9d30ef65", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T06:03:47.000Z" + }, + "end": { + "$date": "2022-01-31T06:21:41.000Z" + }, + "events": [ + { + "uuid": "b31eee43-9cb4-458a-92c0-2109af03f2f8", + "start": { + "$date": "2022-01-31T06:03:47.000Z" + }, + "end": { + "$date": "2022-01-31T06:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23c98fd3-91a4-4945-82dc-af42e129ff25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-31T06:12:15.000Z" + }, + "end": { + "$date": "2022-01-31T06:25:41.000Z" + }, + "events": [ + { + "uuid": "50ee31f1-9050-4303-b396-d31d8cf95d9e", + "start": { + "$date": "2022-01-31T06:12:15.000Z" + }, + "end": { + "$date": "2022-01-31T06:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49d5419c-160c-43fa-8fde-9c10bca5e97f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-31T06:12:14.000Z" + }, + "end": { + "$date": "2022-01-31T06:25:35.000Z" + }, + "events": [ + { + "uuid": "d9701059-8456-457e-a23d-cbb70c1e45bb", + "start": { + "$date": "2022-01-31T06:12:14.000Z" + }, + "end": { + "$date": "2022-01-31T06:25:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9061018a-205b-4f1b-8395-80040a9d4645", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T06:23:48.000Z" + }, + "end": { + "$date": "2022-01-31T06:36:46.000Z" + }, + "events": [ + { + "uuid": "9b947b49-5376-4203-9ce4-71595641ba87", + "start": { + "$date": "2022-01-31T06:23:48.000Z" + }, + "end": { + "$date": "2022-01-31T06:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb19c78c-4e54-477d-9c52-84efe1eb08b6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-31T06:30:12.000Z" + }, + "end": { + "$date": "2022-01-31T06:51:00.000Z" + }, + "events": [ + { + "uuid": "726c19a3-4924-40cd-bdeb-9bde00f13098", + "start": { + "$date": "2022-01-31T06:30:12.000Z" + }, + "end": { + "$date": "2022-01-31T06:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e39a66e-70a2-46be-ac8f-8d7420760ab2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-31T06:30:02.000Z" + }, + "end": { + "$date": "2022-01-31T06:50:59.000Z" + }, + "events": [ + { + "uuid": "c42aefda-30c3-46a1-b7d2-70b54c13e7b7", + "start": { + "$date": "2022-01-31T06:30:02.000Z" + }, + "end": { + "$date": "2022-01-31T06:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a58a2f2-d19b-4010-be44-f56d4ebc77ae", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-31T06:30:04.000Z" + }, + "end": { + "$date": "2022-01-31T06:50:56.000Z" + }, + "events": [ + { + "uuid": "f6466006-83fa-4748-89d6-cdea3e455071", + "start": { + "$date": "2022-01-31T06:30:04.000Z" + }, + "end": { + "$date": "2022-01-31T06:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "045b263d-df44-46b2-8121-dfa655dbff36", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T06:38:44.000Z" + }, + "end": { + "$date": "2022-01-31T07:11:34.000Z" + }, + "events": [ + { + "uuid": "c499f424-8358-4270-85c3-4b731855b099", + "start": { + "$date": "2022-01-31T06:38:44.000Z" + }, + "end": { + "$date": "2022-01-31T07:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7db4e849-a13f-4a40-9abb-2e5090467228", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-31T06:57:35.000Z" + }, + "end": { + "$date": "2022-01-31T07:16:46.000Z" + }, + "events": [ + { + "uuid": "3396bb0a-9ae5-49e3-b702-eda4f367c01c", + "start": { + "$date": "2022-01-31T06:57:35.000Z" + }, + "end": { + "$date": "2022-01-31T07:16:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e37395c-3e19-4456-a7d6-0348e8ae4770", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-31T06:57:43.000Z" + }, + "end": { + "$date": "2022-01-31T07:16:50.000Z" + }, + "events": [ + { + "uuid": "63509103-5710-49a0-b3b1-03982a238ad9", + "start": { + "$date": "2022-01-31T06:57:43.000Z" + }, + "end": { + "$date": "2022-01-31T07:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ecee20a5-10e9-4997-bf30-3926885e4647", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T07:12:24.000Z" + }, + "end": { + "$date": "2022-01-31T07:38:54.000Z" + }, + "events": [ + { + "uuid": "6e4ebae7-63c3-4f85-93ff-a541060fcbd6", + "start": { + "$date": "2022-01-31T07:12:24.000Z" + }, + "end": { + "$date": "2022-01-31T07:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "682d14bc-604d-4541-a7ce-c19ce314f044", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-01-31T07:21:36.000Z" + }, + "end": { + "$date": "2022-01-31T07:44:37.000Z" + }, + "events": [ + { + "uuid": "7106d9f6-8b51-48ea-bbb4-f34667fdafb5", + "start": { + "$date": "2022-01-31T07:21:36.000Z" + }, + "end": { + "$date": "2022-01-31T07:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c933a417-03fe-406d-9065-fc7d6ac1ac67", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-31T07:21:43.000Z" + }, + "end": { + "$date": "2022-01-31T07:44:34.000Z" + }, + "events": [ + { + "uuid": "7016d369-8df6-4496-a75a-143ef4b4e780", + "start": { + "$date": "2022-01-31T07:21:43.000Z" + }, + "end": { + "$date": "2022-01-31T07:44:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4734559e-abca-4553-98ca-865ce9f1cb7b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T07:39:49.000Z" + }, + "end": { + "$date": "2022-01-31T08:16:39.000Z" + }, + "events": [ + { + "uuid": "1da61b50-2fbb-4b1c-b11f-6df65223b115", + "start": { + "$date": "2022-01-31T07:39:49.000Z" + }, + "end": { + "$date": "2022-01-31T08:16:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a487a14-ff1d-492d-854d-900b5f40aba9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-31T07:45:23.000Z" + }, + "end": { + "$date": "2022-01-31T07:48:23.000Z" + }, + "events": [ + { + "uuid": "6ef26c0d-1a5a-4a8b-a4db-33403f38301d", + "start": { + "$date": "2022-01-31T07:45:23.000Z" + }, + "end": { + "$date": "2022-01-31T07:48:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "9d2fe90e-7c55-4a70-a46d-f075ce123455", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-01-31T07:48:29.000Z" + }, + "end": { + "$date": "2022-01-31T07:50:24.000Z" + }, + "events": [ + { + "uuid": "3f7028a7-505b-44ae-b020-8569456146e6", + "start": { + "$date": "2022-01-31T07:48:29.000Z" + }, + "end": { + "$date": "2022-01-31T07:50:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a79ac8ff-155b-42cc-8798-9f1ac653a068", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T08:17:50.000Z" + }, + "end": { + "$date": "2022-01-31T08:54:20.000Z" + }, + "events": [ + { + "uuid": "98ca5883-f844-43d7-97dc-158979dada11", + "start": { + "$date": "2022-01-31T08:17:50.000Z" + }, + "end": { + "$date": "2022-01-31T08:54:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f38ebc01-6c31-4dfb-94ee-b848804a49c0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T08:56:13.000Z" + }, + "end": { + "$date": "2022-01-31T09:31:49.000Z" + }, + "events": [ + { + "uuid": "845f3701-0a65-4179-8624-c960427b8fb9", + "start": { + "$date": "2022-01-31T08:56:13.000Z" + }, + "end": { + "$date": "2022-01-31T09:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "65411cb6-889d-419a-9811-7a8b605373b8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-31T09:00:46.000Z" + }, + "end": { + "$date": "2022-01-31T10:37:41.000Z" + }, + "events": [ + { + "uuid": "1bf1367a-cbcf-4a73-a43f-8bfde61954a7", + "start": { + "$date": "2022-01-31T09:00:46.000Z" + }, + "end": { + "$date": "2022-01-31T10:37:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "873a2153-5631-4ec3-b5d4-aed9c5039304", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-01-31T09:33:04.000Z" + }, + "end": { + "$date": "2022-01-31T10:06:27.000Z" + }, + "events": [ + { + "uuid": "1a70f9e1-00f2-46f4-a357-8151db86819d", + "start": { + "$date": "2022-01-31T09:33:04.000Z" + }, + "end": { + "$date": "2022-01-31T10:06:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "54cc0c4d-1aee-4dba-ba02-96f6b26162af", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-31T12:11:46.000Z" + }, + "end": { + "$date": "2022-01-31T15:30:59.000Z" + }, + "events": [ + { + "uuid": "b9dd884b-8c68-4970-818d-d071b4de81d2", + "start": { + "$date": "2022-01-31T12:11:46.000Z" + }, + "end": { + "$date": "2022-01-31T15:30:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "454592b8-6083-46e7-9815-aa966314c5dc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-31T17:00:12.000Z" + }, + "end": { + "$date": "2022-01-31T19:44:17.000Z" + }, + "events": [ + { + "uuid": "4b461c29-f247-4dbd-9192-45081dd59dac", + "start": { + "$date": "2022-01-31T17:00:12.000Z" + }, + "end": { + "$date": "2022-01-31T18:49:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd1283a8-167b-48c4-8e01-b0c9fc2bf839", + "start": { + "$date": "2022-01-31T18:49:12.000Z" + }, + "end": { + "$date": "2022-01-31T18:50:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e530b531-5b29-4b26-980e-5c553f53879d", + "start": { + "$date": "2022-01-31T18:50:12.000Z" + }, + "end": { + "$date": "2022-01-31T19:00:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e0e9091-271f-4c90-801f-9f1a19218cab", + "start": { + "$date": "2022-01-31T19:00:12.000Z" + }, + "end": { + "$date": "2022-01-31T19:10:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8ad0b9b1-9fc5-4f41-8fce-be0cafb41ea4", + "start": { + "$date": "2022-01-31T19:10:12.000Z" + }, + "end": { + "$date": "2022-01-31T19:44:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "22a1087b-5f87-408e-ba4b-5928f30a4639", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-01-31T19:09:54.000Z" + }, + "end": { + "$date": "2022-01-31T20:25:20.000Z" + }, + "events": [ + { + "uuid": "14b62b98-f93a-41a1-9a22-5895a10a7e1e", + "start": { + "$date": "2022-01-31T19:09:54.000Z" + }, + "end": { + "$date": "2022-01-31T20:25:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "adfc56e5-5c4f-4991-9240-ffc1c734a075", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-31T22:13:07.000Z" + }, + "end": { + "$date": "2022-01-31T22:19:53.000Z" + }, + "events": [ + { + "uuid": "b8eca806-08e4-4cb2-b487-a4ecf94e89bc", + "start": { + "$date": "2022-01-31T22:13:07.000Z" + }, + "end": { + "$date": "2022-01-31T22:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "13a0af6e-dd39-4350-ae09-46e0b45c9726", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-01-31T22:15:12.000Z" + }, + "end": { + "$date": "2022-01-31T22:43:53.000Z" + }, + "events": [ + { + "uuid": "5cff4c93-b1da-4248-9f40-993669a8655b", + "start": { + "$date": "2022-01-31T22:15:12.000Z" + }, + "end": { + "$date": "2022-01-31T22:43:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "6041186e-ee42-4476-8ef4-f7bf3255bd6c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-31T22:30:55.000Z" + }, + "end": { + "$date": "2022-01-31T22:50:35.000Z" + }, + "events": [ + { + "uuid": "3581f664-cc8d-416f-ba1e-c3a2b84431eb", + "start": { + "$date": "2022-01-31T22:30:55.000Z" + }, + "end": { + "$date": "2022-01-31T22:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "d4e2d29d-8761-4fd3-aa53-1b1a43b6b961", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-31T22:32:54.000Z" + }, + "end": { + "$date": "2022-01-31T22:58:45.000Z" + }, + "events": [ + { + "uuid": "1411d19e-b883-44dc-bd89-a914cf127f4a", + "start": { + "$date": "2022-01-31T22:32:54.000Z" + }, + "end": { + "$date": "2022-01-31T22:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81117964-2b53-4da6-ae31-fb9b1a5e3211", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-01-31T22:58:46.000Z" + }, + "end": { + "$date": "2022-02-01T00:56:49.000Z" + }, + "events": [ + { + "uuid": "c4c1723d-b7da-4def-9f41-2aff7d0d54ed", + "start": { + "$date": "2022-01-31T22:58:46.000Z" + }, + "end": { + "$date": "2022-02-01T00:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a9da1a5e-377d-41ef-9fd5-a44a855cbfd6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-01-31T22:59:00.000Z" + }, + "end": { + "$date": "2022-02-01T00:57:04.000Z" + }, + "events": [ + { + "uuid": "b98acaca-af57-485d-bce0-2094409c9aad", + "start": { + "$date": "2022-01-31T22:59:00.000Z" + }, + "end": { + "$date": "2022-02-01T00:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2005dc12-0024-4200-b7b1-2614e226755e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-31T23:10:59.000Z" + }, + "end": { + "$date": "2022-01-31T23:29:11.000Z" + }, + "events": [ + { + "uuid": "86f2e7ca-44f1-469b-854e-a09707e4862c", + "start": { + "$date": "2022-01-31T23:10:59.000Z" + }, + "end": { + "$date": "2022-01-31T23:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21704578-c38a-4deb-9fad-b1dce9c6fd79", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-01-31T23:29:20.000Z" + }, + "end": { + "$date": "2022-01-31T23:32:56.000Z" + }, + "events": [ + { + "uuid": "36665a2d-ce44-4ecc-af66-c9ebf56514f3", + "start": { + "$date": "2022-01-31T23:29:20.000Z" + }, + "end": { + "$date": "2022-01-31T23:32:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01b0511d-f098-4f68-9c6f-6c91274f3bf8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-01-31T23:51:10.000Z" + }, + "end": { + "$date": "2022-02-01T00:23:00.000Z" + }, + "events": [ + { + "uuid": "4c3a32ff-8144-481c-9b99-de56ae3c8e1c", + "start": { + "$date": "2022-01-31T23:51:10.000Z" + }, + "end": { + "$date": "2022-02-01T00:23:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85e8efaa-21eb-4cc3-b401-5aeb233064bf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T00:31:21.000Z" + }, + "end": { + "$date": "2022-02-01T00:46:11.000Z" + }, + "events": [ + { + "uuid": "aa884c6b-b052-4b4e-b661-36e9949edea1", + "start": { + "$date": "2022-02-01T00:31:21.000Z" + }, + "end": { + "$date": "2022-02-01T00:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88a47ab7-3fae-4742-9e5e-4a14e35da747", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T00:49:36.000Z" + }, + "end": { + "$date": "2022-02-01T01:03:47.000Z" + }, + "events": [ + { + "uuid": "506c040a-6faa-4f5e-8d19-eb40b15beaf4", + "start": { + "$date": "2022-02-01T00:49:36.000Z" + }, + "end": { + "$date": "2022-02-01T01:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "acab4005-bd46-430c-b884-4402f49d872b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-01T00:57:24.000Z" + }, + "end": { + "$date": "2022-02-01T01:00:24.000Z" + }, + "events": [ + { + "uuid": "ed185789-5d2a-4f34-bfb9-8e24adab4984", + "start": { + "$date": "2022-02-01T00:57:24.000Z" + }, + "end": { + "$date": "2022-02-01T01:00:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "c3fc24ac-375c-4387-9fc6-b7a9c47bdc62", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-01T01:00:45.000Z" + }, + "end": { + "$date": "2022-02-01T02:00:03.000Z" + }, + "events": [ + { + "uuid": "3de54250-e666-4de0-95b8-33f750b361ea", + "start": { + "$date": "2022-02-01T01:00:45.000Z" + }, + "end": { + "$date": "2022-02-01T02:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "6d014e84-201b-44b3-a384-0546b5fbb22d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-01T01:01:29.000Z" + }, + "end": { + "$date": "2022-02-01T02:44:26.000Z" + }, + "events": [ + { + "uuid": "b63f76fd-925a-41f2-a64f-ca4b23c4ba83", + "start": { + "$date": "2022-02-01T01:01:29.000Z" + }, + "end": { + "$date": "2022-02-01T02:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "fbec9edd-2a97-4d86-b4eb-b6c399d65438", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T01:07:32.000Z" + }, + "end": { + "$date": "2022-02-01T01:31:54.000Z" + }, + "events": [ + { + "uuid": "62d67e1a-f687-4bfa-8992-daf2b278e4eb", + "start": { + "$date": "2022-02-01T01:07:32.000Z" + }, + "end": { + "$date": "2022-02-01T01:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "47a389eb-4ac2-452e-a63b-8cc2c3c16db7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-01T01:43:38.000Z" + }, + "end": { + "$date": "2022-02-01T02:27:06.000Z" + }, + "events": [ + { + "uuid": "38d14a7b-1442-426b-97a5-2860b9b6ab68", + "start": { + "$date": "2022-02-01T01:43:38.000Z" + }, + "end": { + "$date": "2022-02-01T02:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0d998d92-c907-4c48-9c4c-b7ac7caffdfa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-01T01:59:27.000Z" + }, + "end": { + "$date": "2022-02-01T05:22:18.000Z" + }, + "events": [ + { + "uuid": "b43863f2-3de3-4313-8572-5b2cc3535090", + "start": { + "$date": "2022-02-01T01:59:27.000Z" + }, + "end": { + "$date": "2022-02-01T05:22:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a6d535eb-d06a-4f56-937f-a7b9e1c684f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-01T02:03:18.000Z" + }, + "end": { + "$date": "2022-02-01T02:55:19.000Z" + }, + "events": [ + { + "uuid": "a74a0a42-79bc-4caa-861a-6513922e9428", + "start": { + "$date": "2022-02-01T02:03:18.000Z" + }, + "end": { + "$date": "2022-02-01T02:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "3d4c6caf-aa5a-4e68-a016-c27f780c07cf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-01T02:26:19.000Z" + }, + "end": { + "$date": "2022-02-01T02:28:54.000Z" + }, + "events": [ + { + "uuid": "549cd25e-d4cc-478d-9ce7-3078cfa75463", + "start": { + "$date": "2022-02-01T02:26:19.000Z" + }, + "end": { + "$date": "2022-02-01T02:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c987428-3000-498a-beca-ae0cdf126d8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-01T02:33:19.000Z" + }, + "end": { + "$date": "2022-02-01T03:00:13.000Z" + }, + "events": [ + { + "uuid": "9eb38caf-1ed4-4c3a-accd-b376e6408b28", + "start": { + "$date": "2022-02-01T02:33:19.000Z" + }, + "end": { + "$date": "2022-02-01T03:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fec0f92a-cb72-468d-b709-33aa7d83b7ee", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T02:33:13.000Z" + }, + "end": { + "$date": "2022-02-01T03:00:02.000Z" + }, + "events": [ + { + "uuid": "fbc3e461-9a0f-43bd-95b7-4b9bc3b4612c", + "start": { + "$date": "2022-02-01T02:33:13.000Z" + }, + "end": { + "$date": "2022-02-01T03:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "92b0881a-5ec8-4585-8397-1b21a5b3a538", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-01T02:44:03.000Z" + }, + "end": { + "$date": "2022-02-01T04:14:15.000Z" + }, + "events": [ + { + "uuid": "7b2df3f0-39aa-48e9-ac14-e05a9bd7e2f9", + "start": { + "$date": "2022-02-01T02:44:03.000Z" + }, + "end": { + "$date": "2022-02-01T04:14:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee9ef1e7-9786-4591-8eb0-ebae34d266cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T03:17:54.000Z" + }, + "end": { + "$date": "2022-02-01T03:18:03.000Z" + }, + "events": [ + { + "uuid": "fa1a892d-5ab5-4dc8-84aa-1a51002462b0", + "start": { + "$date": "2022-02-01T03:17:54.000Z" + }, + "end": { + "$date": "2022-02-01T03:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b80f32c-4891-4ba9-b0e4-69ac2199dd27", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-01T03:03:37.000Z" + }, + "end": { + "$date": "2022-02-01T03:22:32.000Z" + }, + "events": [ + { + "uuid": "4109f4be-d424-43d5-852b-a95b73fb9f5c", + "start": { + "$date": "2022-02-01T03:03:37.000Z" + }, + "end": { + "$date": "2022-02-01T03:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72f38421-9da3-468f-aeb0-cb45ca45cc95", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T03:03:33.000Z" + }, + "end": { + "$date": "2022-02-01T03:22:13.000Z" + }, + "events": [ + { + "uuid": "c5b40ec2-9eb1-4b88-9ce8-9ddba71cb04b", + "start": { + "$date": "2022-02-01T03:03:33.000Z" + }, + "end": { + "$date": "2022-02-01T03:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ad01a8c6-441c-4965-9c8b-4af5226e6281", + "uuid": "067b02ed-9c83-4fe0-b68c-849316d87eaa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-01T03:03:25.000Z" + }, + "end": { + "$date": "2022-02-01T03:14:00.000Z" + }, + "events": [ + { + "uuid": "f474bea1-7b2f-4282-b695-c6833c55db2f", + "start": { + "$date": "2022-02-01T03:03:25.000Z" + }, + "end": { + "$date": "2022-02-01T03:14:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10648006-538e-45c9-8665-a50bd0fc5491", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T03:20:18.000Z" + }, + "end": { + "$date": "2022-02-01T03:36:14.000Z" + }, + "events": [ + { + "uuid": "004446bb-f93a-4133-8f56-780a350c8c4e", + "start": { + "$date": "2022-02-01T03:20:18.000Z" + }, + "end": { + "$date": "2022-02-01T03:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a638906-a447-498f-a424-78636a667b78", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T03:39:14.000Z" + }, + "end": { + "$date": "2022-02-01T03:56:26.000Z" + }, + "events": [ + { + "uuid": "d189a95e-d43e-4bfe-bb04-c555abfed999", + "start": { + "$date": "2022-02-01T03:39:14.000Z" + }, + "end": { + "$date": "2022-02-01T03:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ba9da804-4e24-4e83-b55f-82d56d62092b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-01T03:41:21.000Z" + }, + "end": { + "$date": "2022-02-01T06:22:32.000Z" + }, + "events": [ + { + "uuid": "5502f23b-fcbe-4629-9b5b-fae9e7f116cd", + "start": { + "$date": "2022-02-01T03:41:21.000Z" + }, + "end": { + "$date": "2022-02-01T06:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7d849da-9b0e-4cbd-b044-88f8adbfa1ed", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T03:58:54.000Z" + }, + "end": { + "$date": "2022-02-01T04:15:57.000Z" + }, + "events": [ + { + "uuid": "80934376-2d16-4af5-b7db-7b8a6ee1aee6", + "start": { + "$date": "2022-02-01T03:58:54.000Z" + }, + "end": { + "$date": "2022-02-01T04:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6d77f68-9a95-4fe8-8049-744b429c38ee", + "uuid": "add35ddf-8969-4120-9e9d-56ab777c8d7d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-01T04:07:10.000Z" + }, + "end": { + "$date": "2022-02-01T04:30:51.000Z" + }, + "events": [ + { + "uuid": "ad5f0a2c-7913-4d17-badd-ab45a0cc0989", + "start": { + "$date": "2022-02-01T04:07:10.000Z" + }, + "end": { + "$date": "2022-02-01T04:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de9b9772-243b-42bf-a734-29e327a6538d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T04:18:00.000Z" + }, + "end": { + "$date": "2022-02-01T04:37:46.000Z" + }, + "events": [ + { + "uuid": "24ea1da6-fc46-4628-a7a7-6d4dd624f15c", + "start": { + "$date": "2022-02-01T04:18:00.000Z" + }, + "end": { + "$date": "2022-02-01T04:37:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7b0e269-28ed-4d3f-8bba-24ea4ec997db", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-01T04:40:51.000Z" + }, + "end": { + "$date": "2022-02-01T05:01:53.000Z" + }, + "events": [ + { + "uuid": "3ac12580-e02c-45f7-a0eb-3d11572cad00", + "start": { + "$date": "2022-02-01T04:40:51.000Z" + }, + "end": { + "$date": "2022-02-01T05:01:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d09b76a8-faa2-4156-be6e-4c38085a2637", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-01T05:24:42.000Z" + }, + "end": { + "$date": "2022-02-01T06:06:40.000Z" + }, + "events": [ + { + "uuid": "9ef8fab3-0a70-4895-9136-1706e15b79d2", + "start": { + "$date": "2022-02-01T05:24:42.000Z" + }, + "end": { + "$date": "2022-02-01T06:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1057e40b-be9e-4890-9e27-4bac6aaff5bb", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-01T05:02:19.000Z" + }, + "end": { + "$date": "2022-02-01T06:47:02.000Z" + }, + "events": [ + { + "uuid": "9d3944ed-2f14-40e6-8ed5-82d1b2a3a731", + "start": { + "$date": "2022-02-01T05:02:19.000Z" + }, + "end": { + "$date": "2022-02-01T06:47:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a839c1a6-7594-46c8-b515-0d66427f165a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-01T05:22:47.000Z" + }, + "end": { + "$date": "2022-02-01T06:23:26.000Z" + }, + "events": [ + { + "uuid": "d807240c-c381-4178-bf2b-8babb6c9ff5c", + "start": { + "$date": "2022-02-01T05:22:47.000Z" + }, + "end": { + "$date": "2022-02-01T06:23:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0a97978-d8be-483b-9060-f758f54fed08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-01T05:26:37.000Z" + }, + "end": { + "$date": "2022-02-01T05:56:20.000Z" + }, + "events": [ + { + "uuid": "9d1f4e7f-e756-4adf-a1bf-142ea6dc694a", + "start": { + "$date": "2022-02-01T05:26:37.000Z" + }, + "end": { + "$date": "2022-02-01T05:56:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7aa3b59-5cf4-48cf-bc78-5b156b180c71", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T05:33:24.000Z" + }, + "end": { + "$date": "2022-02-01T06:06:34.000Z" + }, + "events": [ + { + "uuid": "1b18e918-b688-4b3e-970a-6b9a1fba5770", + "start": { + "$date": "2022-02-01T05:33:24.000Z" + }, + "end": { + "$date": "2022-02-01T06:06:34.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "ba340ed8-b6db-4869-9c74-2814b6d1285a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-01T05:39:07.000Z" + }, + "end": { + "$date": "2022-02-01T09:15:57.000Z" + }, + "events": [ + { + "uuid": "a4204c7d-6911-4397-bd5f-bb3fd00d333a", + "start": { + "$date": "2022-02-01T05:39:07.000Z" + }, + "end": { + "$date": "2022-02-01T09:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c619de50-61fc-4bd2-93cd-1ad4fdd2e5bf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-01T05:54:42.000Z" + }, + "end": { + "$date": "2022-02-01T06:04:39.000Z" + }, + "events": [ + { + "uuid": "f89bff23-498f-4c88-820b-ccabec3add2f", + "start": { + "$date": "2022-02-01T05:54:42.000Z" + }, + "end": { + "$date": "2022-02-01T06:04:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb520d92-03ee-4176-822b-af76014643f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-01T06:00:09.000Z" + }, + "end": { + "$date": "2022-02-01T06:22:11.000Z" + }, + "events": [ + { + "uuid": "6ba9bb72-bf86-43ef-b588-326171876f4d", + "start": { + "$date": "2022-02-01T06:00:09.000Z" + }, + "end": { + "$date": "2022-02-01T06:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0974dbb4-2789-47bb-ab72-eccc750d4038", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-01T06:06:49.000Z" + }, + "end": { + "$date": "2022-02-01T06:47:01.000Z" + }, + "events": [ + { + "uuid": "1e74e0a0-99fa-4391-87aa-1f5f650f1907", + "start": { + "$date": "2022-02-01T06:06:49.000Z" + }, + "end": { + "$date": "2022-02-01T06:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "852b06f9-862f-483f-927d-46b3c6c79b6e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-01T06:17:19.000Z" + }, + "end": { + "$date": "2022-02-01T06:54:55.000Z" + }, + "events": [ + { + "uuid": "6ce30402-8c77-4ec6-8ea8-02cdd260712c", + "start": { + "$date": "2022-02-01T06:17:19.000Z" + }, + "end": { + "$date": "2022-02-01T06:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "d18276fc-a6a0-4784-981f-5d03b381f337", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-01T06:47:15.000Z" + }, + "end": { + "$date": "2022-02-01T07:34:41.000Z" + }, + "events": [ + { + "uuid": "45ed2d43-256c-4f2c-bc92-d630e53c8cb4", + "start": { + "$date": "2022-02-01T06:47:15.000Z" + }, + "end": { + "$date": "2022-02-01T07:34:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8aea2021-0c72-47b3-b7c2-71656ef2155d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-01T07:46:05.000Z" + }, + "end": { + "$date": "2022-02-01T08:04:55.000Z" + }, + "events": [ + { + "uuid": "7ae423b8-465b-4bc5-a23b-317a846b79e5", + "start": { + "$date": "2022-02-01T07:46:05.000Z" + }, + "end": { + "$date": "2022-02-01T08:04:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "d383df43-2d16-44fb-9a16-fa79c19e5d41", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-01T07:52:19.000Z" + }, + "end": { + "$date": "2022-02-01T09:06:57.000Z" + }, + "events": [ + { + "uuid": "426c67af-4c35-49bc-a408-6aff3e91c1c5", + "start": { + "$date": "2022-02-01T07:52:19.000Z" + }, + "end": { + "$date": "2022-02-01T09:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90763b89-e0ce-44a7-9998-3c6566d65c39", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-01T08:07:40.000Z" + }, + "end": { + "$date": "2022-02-01T08:29:11.000Z" + }, + "events": [ + { + "uuid": "43641b95-1387-47a6-85e9-a171b814a3a0", + "start": { + "$date": "2022-02-01T08:07:40.000Z" + }, + "end": { + "$date": "2022-02-01T08:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a727e2ea-0d89-431c-b41e-a0922eb1dd71", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T08:25:41.000Z" + }, + "end": { + "$date": "2022-02-01T10:25:48.000Z" + }, + "events": [ + { + "uuid": "2c4b3029-7bfc-4aae-bad6-376d2201ec70", + "start": { + "$date": "2022-02-01T08:25:41.000Z" + }, + "end": { + "$date": "2022-02-01T10:25:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ec4be66e-81e3-4dd9-ac16-3a89019ac671", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T10:27:17.000Z" + }, + "end": { + "$date": "2022-02-01T11:17:08.000Z" + }, + "events": [ + { + "uuid": "f37e8dc5-a73f-46bb-9daa-a43670f3519b", + "start": { + "$date": "2022-02-01T10:27:17.000Z" + }, + "end": { + "$date": "2022-02-01T11:17:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8cb5b418-7177-4050-a908-1d4ab6532440", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T13:09:10.000Z" + }, + "end": { + "$date": "2022-02-01T13:14:31.000Z" + }, + "events": [ + { + "uuid": "55b34f89-d072-4dad-9c2e-e1e8a74f6c17", + "start": { + "$date": "2022-02-01T13:09:10.000Z" + }, + "end": { + "$date": "2022-02-01T13:14:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48f12cde-db2a-4999-ad4c-e491561d2209", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T13:47:15.000Z" + }, + "end": { + "$date": "2022-02-01T14:03:44.000Z" + }, + "events": [ + { + "uuid": "b0f8fbc2-cc09-4c3b-a0b0-140266392552", + "start": { + "$date": "2022-02-01T13:47:15.000Z" + }, + "end": { + "$date": "2022-02-01T14:03:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27b71257-a110-461d-b23c-4b603610a58c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T14:07:25.000Z" + }, + "end": { + "$date": "2022-02-01T14:26:06.000Z" + }, + "events": [ + { + "uuid": "6d7cef71-005b-4409-aaae-5fd2c982aa6b", + "start": { + "$date": "2022-02-01T14:07:25.000Z" + }, + "end": { + "$date": "2022-02-01T14:26:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3da110c9-1753-4f60-ba84-1efdd10c086b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T14:29:36.000Z" + }, + "end": { + "$date": "2022-02-01T14:48:52.000Z" + }, + "events": [ + { + "uuid": "7eb51e9e-0877-4343-8cd7-39fca8a4ca0c", + "start": { + "$date": "2022-02-01T14:29:36.000Z" + }, + "end": { + "$date": "2022-02-01T14:48:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5d87077-0e84-4bf2-8ed4-45811d7d0c28", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T14:54:16.000Z" + }, + "end": { + "$date": "2022-02-01T15:12:57.000Z" + }, + "events": [ + { + "uuid": "262ad410-4f1e-4246-a9ad-44837aef95e7", + "start": { + "$date": "2022-02-01T14:54:16.000Z" + }, + "end": { + "$date": "2022-02-01T15:12:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "847c82f3-82ff-4980-b786-c5943e454373", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T15:15:27.000Z" + }, + "end": { + "$date": "2022-02-01T15:40:08.000Z" + }, + "events": [ + { + "uuid": "4056b375-4b4d-4b2c-b35a-f642aca8f702", + "start": { + "$date": "2022-02-01T15:15:27.000Z" + }, + "end": { + "$date": "2022-02-01T15:40:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1371a5aa-b9c0-4de7-bf25-553b9e5856d4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T15:40:36.000Z" + }, + "end": { + "$date": "2022-02-01T15:41:56.000Z" + }, + "events": [ + { + "uuid": "b4c3935c-01ad-428c-b5a7-5dc814a082b1", + "start": { + "$date": "2022-02-01T15:40:36.000Z" + }, + "end": { + "$date": "2022-02-01T15:41:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac695935-155c-4033-a28e-f8515153914a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T15:45:38.000Z" + }, + "end": { + "$date": "2022-02-01T16:06:24.000Z" + }, + "events": [ + { + "uuid": "f863ed8e-b713-4d11-bcbf-d53bdf5d6d9f", + "start": { + "$date": "2022-02-01T15:45:38.000Z" + }, + "end": { + "$date": "2022-02-01T16:06:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97943f39-8c92-407f-b220-5537f560a902", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T15:45:16.000Z" + }, + "end": { + "$date": "2022-02-01T16:02:35.000Z" + }, + "events": [ + { + "uuid": "ff5060be-e705-4e4e-a930-33d478106c06", + "start": { + "$date": "2022-02-01T15:45:16.000Z" + }, + "end": { + "$date": "2022-02-01T16:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68d295dd-7204-4d88-993e-082b3da22165", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T16:05:11.000Z" + }, + "end": { + "$date": "2022-02-01T16:20:00.000Z" + }, + "events": [ + { + "uuid": "a3c44799-f630-4ac4-8aec-61208a00ff9e", + "start": { + "$date": "2022-02-01T16:05:11.000Z" + }, + "end": { + "$date": "2022-02-01T16:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bcd4b46-7d3d-4eaf-8bf7-c4c776461dff", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-01T16:09:03.000Z" + }, + "end": { + "$date": "2022-02-01T16:31:31.000Z" + }, + "events": [ + { + "uuid": "3b071331-39f1-4ebb-9cdb-05d879e60278", + "start": { + "$date": "2022-02-01T16:09:03.000Z" + }, + "end": { + "$date": "2022-02-01T16:31:31.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d785b97e-c346-4e1b-8efd-3c7520bbcbf4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T16:24:37.000Z" + }, + "end": { + "$date": "2022-02-01T16:40:51.000Z" + }, + "events": [ + { + "uuid": "bbb0cce8-325a-4ac8-b60d-a3b56059722d", + "start": { + "$date": "2022-02-01T16:24:37.000Z" + }, + "end": { + "$date": "2022-02-01T16:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbdcfe73-f727-47ca-af2d-49abb0fc4560", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T16:49:13.000Z" + }, + "end": { + "$date": "2022-02-01T16:59:12.000Z" + }, + "events": [ + { + "uuid": "621fbb22-ce8d-41f8-988b-64e9c63e12b7", + "start": { + "$date": "2022-02-01T16:49:13.000Z" + }, + "end": { + "$date": "2022-02-01T16:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cabfd712-2917-4169-9c68-97bd8be4a3c7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-01T17:20:45.000Z" + }, + "end": { + "$date": "2022-02-01T17:40:30.000Z" + }, + "events": [ + { + "uuid": "0195a0f1-73bb-49be-b531-acf53d10440a", + "start": { + "$date": "2022-02-01T17:20:45.000Z" + }, + "end": { + "$date": "2022-02-01T17:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36f87eb7-8b9f-4210-ba1d-6d0caade7b99", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-01T17:40:32.000Z" + }, + "end": { + "$date": "2022-02-01T17:42:28.000Z" + }, + "events": [ + { + "uuid": "cfa23ae8-c0fe-47dc-9246-29cfac6abf99", + "start": { + "$date": "2022-02-01T17:40:32.000Z" + }, + "end": { + "$date": "2022-02-01T17:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7cbab6a-d6ca-4430-af24-b5eec83db549", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-01T17:52:57.000Z" + }, + "end": { + "$date": "2022-02-01T18:21:18.000Z" + }, + "events": [ + { + "uuid": "503a8f1c-1774-45a7-979c-499c580f42f6", + "start": { + "$date": "2022-02-01T17:52:57.000Z" + }, + "end": { + "$date": "2022-02-01T18:21:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f075129c-25cb-4847-830a-9f73034629c4", + "uuid": "c3ddc30a-cdac-47de-b7d0-acf225fcc7a5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-01T18:37:39.000Z" + }, + "end": { + "$date": "2022-02-01T18:54:33.000Z" + }, + "events": [ + { + "uuid": "755c13b2-8c40-4764-a438-6c6445a17219", + "start": { + "$date": "2022-02-01T18:37:39.000Z" + }, + "end": { + "$date": "2022-02-01T18:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "d1dee49c-e200-4750-9975-43c02eb0406d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T00:37:02.000Z" + }, + "end": { + "$date": "2022-02-02T00:38:29.000Z" + }, + "events": [ + { + "uuid": "8f398c42-cba9-4601-ac16-19350ba11f02", + "start": { + "$date": "2022-02-02T00:37:02.000Z" + }, + "end": { + "$date": "2022-02-02T00:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1779df84-f766-46fe-8864-65c58404b5a6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-01T23:58:58.000Z" + }, + "end": { + "$date": "2022-02-02T00:11:03.000Z" + }, + "events": [ + { + "uuid": "0ea0a793-6c43-402e-adca-2ffac4aa128d", + "start": { + "$date": "2022-02-01T23:58:58.000Z" + }, + "end": { + "$date": "2022-02-02T00:11:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "836a35c9-0a50-4370-b1af-7492ca56e764", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T01:23:08.000Z" + }, + "end": { + "$date": "2022-02-02T01:25:19.000Z" + }, + "events": [ + { + "uuid": "f5c15bdc-0752-4c76-9026-568b2ae416f0", + "start": { + "$date": "2022-02-02T01:23:08.000Z" + }, + "end": { + "$date": "2022-02-02T01:25:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "8f56b6bb-5184-4e5b-8db4-39d04004d165", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T01:35:25.000Z" + }, + "end": { + "$date": "2022-02-02T01:37:10.000Z" + }, + "events": [ + { + "uuid": "53ddb2c1-baaa-4dc0-b500-7f9a11d58557", + "start": { + "$date": "2022-02-02T01:35:25.000Z" + }, + "end": { + "$date": "2022-02-02T01:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "697037d6-9ae3-47e2-a8e6-cae61ce4aacd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T02:04:59.000Z" + }, + "end": { + "$date": "2022-02-02T02:19:50.000Z" + }, + "events": [ + { + "uuid": "5918beb5-4297-4baa-912d-dddce72b33ad", + "start": { + "$date": "2022-02-02T02:04:59.000Z" + }, + "end": { + "$date": "2022-02-02T02:44:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9241d74-b53b-43f9-b261-32abf28e5baf", + "start": { + "$date": "2022-02-02T02:44:59.000Z" + }, + "end": { + "$date": "2022-02-02T02:19:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "c0b8a57d-3e85-475c-a756-687d28174cf0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T02:21:05.000Z" + }, + "end": { + "$date": "2022-02-02T02:59:12.000Z" + }, + "events": [ + { + "uuid": "5c14524c-2e09-4a9c-968f-3f4359bc9f28", + "start": { + "$date": "2022-02-02T02:21:05.000Z" + }, + "end": { + "$date": "2022-02-02T02:34:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "00d3223b-8cdf-4136-95b2-3a1b8fa48772", + "start": { + "$date": "2022-02-02T02:34:05.000Z" + }, + "end": { + "$date": "2022-02-02T02:36:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b94d8cc5-5de9-4016-bb70-623765986fd7", + "start": { + "$date": "2022-02-02T02:36:05.000Z" + }, + "end": { + "$date": "2022-02-02T02:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d394da79-3648-46c0-8fd0-7b40d5bc0d35", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-02T01:25:36.000Z" + }, + "end": { + "$date": "2022-02-02T03:34:37.000Z" + }, + "events": [ + { + "uuid": "c4c82519-fab4-4290-ab9e-d65b7ad52c28", + "start": { + "$date": "2022-02-02T01:25:36.000Z" + }, + "end": { + "$date": "2022-02-02T03:34:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "f4b01cd3-c19d-4af2-acdd-ef264086508f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T03:00:56.000Z" + }, + "end": { + "$date": "2022-02-02T03:14:07.000Z" + }, + "events": [ + { + "uuid": "83d2df6b-b4d8-44d0-bd56-d167b94e74ac", + "start": { + "$date": "2022-02-02T03:00:56.000Z" + }, + "end": { + "$date": "2022-02-02T03:14:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "e5587277-fa5d-4db6-bc04-443100170af0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T05:47:23.000Z" + }, + "end": { + "$date": "2022-02-02T05:47:29.000Z" + }, + "events": [ + { + "uuid": "d3a8a044-2e0e-41bf-ae5f-6a8b6f367cf0", + "start": { + "$date": "2022-02-02T05:47:23.000Z" + }, + "end": { + "$date": "2022-02-02T05:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0427da87-b861-4029-9ff5-d2b67e3918a7", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-02-02T03:19:00.000Z" + }, + "end": { + "$date": "2022-02-02T03:48:08.000Z" + }, + "events": [ + { + "uuid": "d5d40d11-fe2d-4810-9d23-ae5aba00feb9", + "start": { + "$date": "2022-02-02T03:19:00.000Z" + }, + "end": { + "$date": "2022-02-02T03:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "09455d49-a258-4690-a706-cb31d88d80a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-02T03:34:47.000Z" + }, + "end": { + "$date": "2022-02-02T04:09:16.000Z" + }, + "events": [ + { + "uuid": "5285d00f-8034-40bf-95ef-faa3366caa32", + "start": { + "$date": "2022-02-02T03:34:47.000Z" + }, + "end": { + "$date": "2022-02-02T04:09:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "71832be3-8128-4a52-b114-5af93fc196da", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-02T04:08:46.000Z" + }, + "end": { + "$date": "2022-02-02T05:56:03.000Z" + }, + "events": [ + { + "uuid": "fc1b21a8-bfb7-402e-b95f-e8e250392c5c", + "start": { + "$date": "2022-02-02T04:08:46.000Z" + }, + "end": { + "$date": "2022-02-02T05:56:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2dc9d475-b611-45e7-99b7-d73d000ad834", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-02T05:36:35.000Z" + }, + "end": { + "$date": "2022-02-02T08:18:13.000Z" + }, + "events": [ + { + "uuid": "4ae69deb-39cd-44db-96ef-bd9e8d6d54e2", + "start": { + "$date": "2022-02-02T05:36:35.000Z" + }, + "end": { + "$date": "2022-02-02T08:18:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae4bb123-6a55-40c6-9ecb-3f02dbaff900", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-02T04:17:57.000Z" + }, + "end": { + "$date": "2022-02-02T04:41:30.000Z" + }, + "events": [ + { + "uuid": "87c48a14-990d-4357-923b-74f69f17290d", + "start": { + "$date": "2022-02-02T04:17:57.000Z" + }, + "end": { + "$date": "2022-02-02T04:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7240fc98-abd2-4be2-8735-383399869b20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-02T05:25:13.000Z" + }, + "end": { + "$date": "2022-02-02T05:25:31.000Z" + }, + "events": [ + { + "uuid": "4d24dd0d-8fff-4187-86cc-963b61f35795", + "start": { + "$date": "2022-02-02T05:25:13.000Z" + }, + "end": { + "$date": "2022-02-02T05:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d2139647-19d9-49e7-b148-ba4b6a825b27", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T04:53:37.000Z" + }, + "end": { + "$date": "2022-02-02T05:20:13.000Z" + }, + "events": [ + { + "uuid": "b6aac406-3dad-4ded-b74a-07c8e1801064", + "start": { + "$date": "2022-02-02T04:53:37.000Z" + }, + "end": { + "$date": "2022-02-02T05:20:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b789f42c-1951-426c-b864-76f46c263a1b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-02T03:34:47.000Z" + }, + "end": { + "$date": "2022-02-02T07:07:03.000Z" + }, + "events": [ + { + "uuid": "4e88b018-b196-438d-ba50-7e4c0df317cc", + "start": { + "$date": "2022-02-02T03:34:47.000Z" + }, + "end": { + "$date": "2022-02-02T07:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ed05b56-f557-4bc7-aa5f-dc85801ff86f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T05:22:38.000Z" + }, + "end": { + "$date": "2022-02-02T05:39:55.000Z" + }, + "events": [ + { + "uuid": "e599e799-e82b-4b7c-9e55-73e5f0642332", + "start": { + "$date": "2022-02-02T05:22:38.000Z" + }, + "end": { + "$date": "2022-02-02T05:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "380a0796-b295-451b-a7a7-aff3050a1a00", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-02T05:27:47.000Z" + }, + "end": { + "$date": "2022-02-02T06:16:53.000Z" + }, + "events": [ + { + "uuid": "88c89c94-dfb2-4e35-888e-af42da64f745", + "start": { + "$date": "2022-02-02T05:27:47.000Z" + }, + "end": { + "$date": "2022-02-02T06:16:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "95f2516a-c17a-4813-9f7d-1659ecae3bca", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T05:37:16.000Z" + }, + "end": { + "$date": "2022-02-02T08:19:00.000Z" + }, + "events": [ + { + "uuid": "cf220966-cde3-473f-936d-5f03e8e3342a", + "start": { + "$date": "2022-02-02T05:37:16.000Z" + }, + "end": { + "$date": "2022-02-02T08:19:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b17df346-5589-428c-8c3f-f304b3e3fe0a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T05:43:44.000Z" + }, + "end": { + "$date": "2022-02-02T06:02:26.000Z" + }, + "events": [ + { + "uuid": "1acad243-06d5-4033-bed1-43735238f493", + "start": { + "$date": "2022-02-02T05:43:44.000Z" + }, + "end": { + "$date": "2022-02-02T06:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "3e13b6a9-145b-43e1-acdb-8e5a46736662", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T05:47:38.000Z" + }, + "end": { + "$date": "2022-02-02T06:21:03.000Z" + }, + "events": [ + { + "uuid": "5e33c811-335b-46b4-bb6f-306362d3b02a", + "start": { + "$date": "2022-02-02T05:47:38.000Z" + }, + "end": { + "$date": "2022-02-02T06:21:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3631edd0-9897-43ab-8486-f7c18094e129", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T06:07:14.000Z" + }, + "end": { + "$date": "2022-02-02T06:47:29.000Z" + }, + "events": [ + { + "uuid": "773f2bba-6e63-4ece-a8b5-229f0976b02f", + "start": { + "$date": "2022-02-02T06:07:14.000Z" + }, + "end": { + "$date": "2022-02-02T06:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40967f98-c48c-4c10-b4e6-7a18817a67f0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-02T06:17:29.000Z" + }, + "end": { + "$date": "2022-02-02T08:17:39.000Z" + }, + "events": [ + { + "uuid": "583322a6-d6ab-4687-aee7-79b024f12c45", + "start": { + "$date": "2022-02-02T06:17:29.000Z" + }, + "end": { + "$date": "2022-02-02T08:17:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bbac4ed-8b9b-4e8f-aece-bd6285dc8238", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-02T06:19:56.000Z" + }, + "end": { + "$date": "2022-02-02T06:47:01.000Z" + }, + "events": [ + { + "uuid": "3fcaccb6-4b28-4a5c-9f35-e8ab5ee354a8", + "start": { + "$date": "2022-02-02T06:19:56.000Z" + }, + "end": { + "$date": "2022-02-02T06:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c22b42d-43f4-4f3a-ace0-39f5de8e1188", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-02T06:50:52.000Z" + }, + "end": { + "$date": "2022-02-02T07:26:22.000Z" + }, + "events": [ + { + "uuid": "06809f23-9f2f-4f49-a854-6c795cc09c56", + "start": { + "$date": "2022-02-02T06:50:52.000Z" + }, + "end": { + "$date": "2022-02-02T07:26:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7621d881-d76e-421b-9134-9fb9923651bf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T06:52:04.000Z" + }, + "end": { + "$date": "2022-02-02T07:16:29.000Z" + }, + "events": [ + { + "uuid": "011dac30-cb5e-4464-9962-a99f25a27015", + "start": { + "$date": "2022-02-02T06:52:04.000Z" + }, + "end": { + "$date": "2022-02-02T07:16:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77ae5bfa-75dc-4cd8-bc52-3da3ce6c6018", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T07:17:29.000Z" + }, + "end": { + "$date": "2022-02-02T07:18:32.000Z" + }, + "events": [ + { + "uuid": "d4e20177-3211-4d6c-baf9-032fd6210dba", + "start": { + "$date": "2022-02-02T07:17:29.000Z" + }, + "end": { + "$date": "2022-02-02T07:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc9ed776-5e08-4866-945d-8e416cf44ffa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T07:22:10.000Z" + }, + "end": { + "$date": "2022-02-02T07:42:08.000Z" + }, + "events": [ + { + "uuid": "0cfd630c-214f-4a1c-8b96-a5b8515c3dbd", + "start": { + "$date": "2022-02-02T07:22:10.000Z" + }, + "end": { + "$date": "2022-02-02T07:42:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76b6ab1b-8b44-4002-b7c6-27557090e2cd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-02T07:27:20.000Z" + }, + "end": { + "$date": "2022-02-02T07:31:33.000Z" + }, + "events": [ + { + "uuid": "f46d01ca-03a9-4150-9f9d-2255b67df903", + "start": { + "$date": "2022-02-02T07:27:20.000Z" + }, + "end": { + "$date": "2022-02-02T07:31:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "989b88dd-226f-4897-9dd5-1e41faf0cfbb", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-02T07:32:58.000Z" + }, + "end": { + "$date": "2022-02-02T08:17:44.000Z" + }, + "events": [ + { + "uuid": "45155d12-70a8-49b9-8e22-85945d174639", + "start": { + "$date": "2022-02-02T07:32:58.000Z" + }, + "end": { + "$date": "2022-02-02T08:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f5696b9-b835-4a97-b192-51623e6dedd6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-02T07:44:36.000Z" + }, + "end": { + "$date": "2022-02-02T08:03:44.000Z" + }, + "events": [ + { + "uuid": "001d70df-2341-41bb-8fd5-c6e45c7f172a", + "start": { + "$date": "2022-02-02T07:44:36.000Z" + }, + "end": { + "$date": "2022-02-02T08:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "0b19a57f-e8ac-464a-9ee3-9e463ee00370", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-02T08:18:33.000Z" + }, + "end": { + "$date": "2022-02-02T08:50:57.000Z" + }, + "events": [ + { + "uuid": "6771d3fc-6194-46cc-b7a3-c991d7added3", + "start": { + "$date": "2022-02-02T08:18:33.000Z" + }, + "end": { + "$date": "2022-02-02T08:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3a641e59-510e-4a59-a095-547fdeed535c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T09:19:47.000Z" + }, + "end": { + "$date": "2022-02-02T12:45:14.000Z" + }, + "events": [ + { + "uuid": "0177a664-60d1-4b98-987b-d102298810d6", + "start": { + "$date": "2022-02-02T09:19:47.000Z" + }, + "end": { + "$date": "2022-02-02T12:45:14.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "eb34f879-00dd-410b-92c3-9dfd88b61a86", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T14:57:34.000Z" + }, + "end": { + "$date": "2022-02-02T17:14:36.000Z" + }, + "events": [ + { + "uuid": "76a4561e-6026-4e0c-87eb-af9766680859", + "start": { + "$date": "2022-02-02T14:57:34.000Z" + }, + "end": { + "$date": "2022-02-02T17:14:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c94b700-ccad-422d-b1e4-6d64e8a40270", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T15:32:12.000Z" + }, + "end": { + "$date": "2022-02-02T15:45:51.000Z" + }, + "events": [ + { + "uuid": "23e0ca8c-a096-4a70-b75e-32f4561cc582", + "start": { + "$date": "2022-02-02T15:32:12.000Z" + }, + "end": { + "$date": "2022-02-02T15:44:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4265a449-0fbf-4d9c-8a1b-c85bd8ab8637", + "start": { + "$date": "2022-02-02T15:44:12.000Z" + }, + "end": { + "$date": "2022-02-02T15:47:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4cbc8111-8646-4d51-b847-2bc59cb42dd3", + "start": { + "$date": "2022-02-02T15:47:12.000Z" + }, + "end": { + "$date": "2022-02-02T15:45:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18c590b5-d68c-45e4-95ac-8462f8b56700", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T15:49:17.000Z" + }, + "end": { + "$date": "2022-02-02T16:10:17.000Z" + }, + "events": [ + { + "uuid": "198c06b9-9719-4990-9301-50ffab75b8bd", + "start": { + "$date": "2022-02-02T15:49:17.000Z" + }, + "end": { + "$date": "2022-02-02T16:10:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08671a37-e429-42af-a550-c12651ccb2c4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T16:10:32.000Z" + }, + "end": { + "$date": "2022-02-02T16:11:43.000Z" + }, + "events": [ + { + "uuid": "2aab00a3-bfe2-408e-a888-a7ce036d0f73", + "start": { + "$date": "2022-02-02T16:10:32.000Z" + }, + "end": { + "$date": "2022-02-02T16:11:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "03785ee1-8aa4-46fd-ad0c-36b8317f379c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T17:17:00.000Z" + }, + "end": { + "$date": "2022-02-02T18:03:00.000Z" + }, + "events": [ + { + "uuid": "b7f61a22-124a-47e8-ad8e-f8674ed84527", + "start": { + "$date": "2022-02-02T17:17:00.000Z" + }, + "end": { + "$date": "2022-02-02T18:03:00.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f63b137d-281d-45a1-9ec5-c79459ec08b4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T19:46:25.000Z" + }, + "end": { + "$date": "2022-02-02T19:50:50.000Z" + }, + "events": [ + { + "uuid": "c79a2377-7fa5-4620-a06f-654cc4ea6ec0", + "start": { + "$date": "2022-02-02T19:46:25.000Z" + }, + "end": { + "$date": "2022-02-02T19:50:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44e0f7ac-6047-4d71-9fb4-4d70df309cfe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T20:15:46.000Z" + }, + "end": { + "$date": "2022-02-02T20:31:42.000Z" + }, + "events": [ + { + "uuid": "0e316889-f967-49a9-ac2b-e0074379f799", + "start": { + "$date": "2022-02-02T20:15:46.000Z" + }, + "end": { + "$date": "2022-02-02T20:31:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "93649cc2-227d-4335-8820-1c38ebed875f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T20:36:26.000Z" + }, + "end": { + "$date": "2022-02-02T20:58:43.000Z" + }, + "events": [ + { + "uuid": "fe68c832-18f8-4a26-8c08-49f4bd3aa978", + "start": { + "$date": "2022-02-02T20:36:26.000Z" + }, + "end": { + "$date": "2022-02-02T20:58:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d687589-112a-4d10-8bc6-9261bf851e5e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T21:01:07.000Z" + }, + "end": { + "$date": "2022-02-02T21:22:23.000Z" + }, + "events": [ + { + "uuid": "79e93d8c-b34b-4723-b953-608df936bf2b", + "start": { + "$date": "2022-02-02T21:01:07.000Z" + }, + "end": { + "$date": "2022-02-02T21:22:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c10f330d-f901-4f0f-861a-fa22585e7ecb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T21:24:27.000Z" + }, + "end": { + "$date": "2022-02-02T21:45:36.000Z" + }, + "events": [ + { + "uuid": "408ed564-8654-4510-861c-acd26e8a5734", + "start": { + "$date": "2022-02-02T21:24:27.000Z" + }, + "end": { + "$date": "2022-02-02T21:45:36.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a8a43dc-7fd2-43d6-87cf-afed69829343", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-02T21:48:33.000Z" + }, + "end": { + "$date": "2022-02-02T22:17:20.000Z" + }, + "events": [ + { + "uuid": "be84bfb6-b0bb-4bc6-b78a-21d058c6c98e", + "start": { + "$date": "2022-02-02T21:48:33.000Z" + }, + "end": { + "$date": "2022-02-02T22:17:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae1e8ae5-5bf8-4b3e-9cb8-6c12ef0aa3b0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T22:02:34.000Z" + }, + "end": { + "$date": "2022-02-02T22:21:24.000Z" + }, + "events": [ + { + "uuid": "24a3a532-cef2-4427-afde-d72383c2883f", + "start": { + "$date": "2022-02-02T22:02:34.000Z" + }, + "end": { + "$date": "2022-02-02T22:21:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aadc9016-9421-4a4f-8d23-af7c2174d772", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T22:24:55.000Z" + }, + "end": { + "$date": "2022-02-02T22:49:35.000Z" + }, + "events": [ + { + "uuid": "0d5c9d36-b5f2-4e84-a87a-956e78cf3b72", + "start": { + "$date": "2022-02-02T22:24:55.000Z" + }, + "end": { + "$date": "2022-02-02T22:49:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "24ce9a47-b75b-4c11-9847-77e4d01793ed", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T22:43:55.000Z" + }, + "end": { + "$date": "2022-02-02T23:40:42.000Z" + }, + "events": [ + { + "uuid": "ba841efd-9263-4087-8efd-897eb7b08377", + "start": { + "$date": "2022-02-02T22:43:55.000Z" + }, + "end": { + "$date": "2022-02-02T23:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "836b1f78-46eb-44d6-8b17-188c772b05b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T22:52:16.000Z" + }, + "end": { + "$date": "2022-02-02T23:09:15.000Z" + }, + "events": [ + { + "uuid": "d15cea72-2f8f-4266-b367-d69469534637", + "start": { + "$date": "2022-02-02T22:52:16.000Z" + }, + "end": { + "$date": "2022-02-02T23:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5171dd14-711c-42e4-a59d-117995d77578", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T23:31:39.000Z" + }, + "end": { + "$date": "2022-02-02T23:52:09.000Z" + }, + "events": [ + { + "uuid": "3bd9735b-db4b-46f8-bb90-0fae614cca18", + "start": { + "$date": "2022-02-02T23:31:39.000Z" + }, + "end": { + "$date": "2022-02-02T23:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97ecaa19-3bfa-4dd2-84c9-83545ca81db9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-02T23:31:37.000Z" + }, + "end": { + "$date": "2022-02-02T23:52:10.000Z" + }, + "events": [ + { + "uuid": "c025b28e-9ca9-4745-890f-5f9fe73aa4dd", + "start": { + "$date": "2022-02-02T23:31:37.000Z" + }, + "end": { + "$date": "2022-02-02T23:52:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "af10bdeb-54f2-4d6c-ae32-6facbb4349f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-02T23:40:57.000Z" + }, + "end": { + "$date": "2022-02-03T00:59:55.000Z" + }, + "events": [ + { + "uuid": "c094d9a7-34d3-4a85-93ee-d233caa53a17", + "start": { + "$date": "2022-02-02T23:40:57.000Z" + }, + "end": { + "$date": "2022-02-03T00:59:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "38424b13-d7e9-4bf1-a02f-6f81ee4469e5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-02T23:57:55.000Z" + }, + "end": { + "$date": "2022-02-03T00:20:55.000Z" + }, + "events": [ + { + "uuid": "6c26f703-6c03-48ad-b6d1-437dc8af7e6b", + "start": { + "$date": "2022-02-02T23:57:55.000Z" + }, + "end": { + "$date": "2022-02-03T00:20:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3731f630-5e37-4ba0-a48a-1b96535c3be0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-02T23:57:53.000Z" + }, + "end": { + "$date": "2022-02-03T00:21:02.000Z" + }, + "events": [ + { + "uuid": "1a10f374-464e-47aa-b917-2e4a057b98bf", + "start": { + "$date": "2022-02-02T23:57:53.000Z" + }, + "end": { + "$date": "2022-02-03T00:21:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bcf44c20-c6a8-4c6a-b3d1-d9a54935b640", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-03T00:21:16.000Z" + }, + "end": { + "$date": "2022-02-03T01:28:36.000Z" + }, + "events": [ + { + "uuid": "b6aac7d4-2006-404a-b359-838261a5ca28", + "start": { + "$date": "2022-02-03T00:21:16.000Z" + }, + "end": { + "$date": "2022-02-03T01:28:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "f9172a01-3916-466b-a0d6-2d6e0656dd82", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-03T01:00:25.000Z" + }, + "end": { + "$date": "2022-02-03T02:39:58.000Z" + }, + "events": [ + { + "uuid": "6910076f-9c2d-4c43-8f33-fb1b95c9018c", + "start": { + "$date": "2022-02-03T01:00:25.000Z" + }, + "end": { + "$date": "2022-02-03T02:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5f0464d-f507-457a-9233-9dd4b59aa48d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-03T01:14:12.000Z" + }, + "end": { + "$date": "2022-02-03T01:44:55.000Z" + }, + "events": [ + { + "uuid": "98bdac4c-0339-4d4a-b53e-9a6e060bbe4e", + "start": { + "$date": "2022-02-03T01:14:12.000Z" + }, + "end": { + "$date": "2022-02-03T01:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "a82358d0-8a93-41bd-bb33-c9a48fbde337", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-03T02:02:45.000Z" + }, + "end": { + "$date": "2022-02-03T02:20:28.000Z" + }, + "events": [ + { + "uuid": "11cf181c-28a0-401b-bcfd-b95ff8ef71b8", + "start": { + "$date": "2022-02-03T02:02:45.000Z" + }, + "end": { + "$date": "2022-02-03T02:20:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "17633b09-58c3-463d-a9ed-389d62f3fdb9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-03T01:51:10.000Z" + }, + "end": { + "$date": "2022-02-03T02:00:10.000Z" + }, + "events": [ + { + "uuid": "6270ca25-745e-49b1-854a-000984a0ad8e", + "start": { + "$date": "2022-02-03T01:51:10.000Z" + }, + "end": { + "$date": "2022-02-03T02:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a3e9820d-58d7-411d-a5f8-e3e9c6099021", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-03T02:00:25.000Z" + }, + "end": { + "$date": "2022-02-03T07:13:45.000Z" + }, + "events": [ + { + "uuid": "31ce14de-933f-4b4c-9842-e49b3d682131", + "start": { + "$date": "2022-02-03T02:00:25.000Z" + }, + "end": { + "$date": "2022-02-03T07:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "becd96d0-86d0-4515-8da7-d7e3841b3089", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T02:06:35.000Z" + }, + "end": { + "$date": "2022-02-03T02:19:48.000Z" + }, + "events": [ + { + "uuid": "7958d7c0-0240-454b-94d0-daf4a96d34f1", + "start": { + "$date": "2022-02-03T02:06:35.000Z" + }, + "end": { + "$date": "2022-02-03T02:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4bdc7b8d-9c05-4f7c-b5ef-d7049c440f84", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-03T02:19:49.000Z" + }, + "end": { + "$date": "2022-02-03T02:26:04.000Z" + }, + "events": [ + { + "uuid": "f8043acb-8111-4f3e-ac35-34885afd9f61", + "start": { + "$date": "2022-02-03T02:19:49.000Z" + }, + "end": { + "$date": "2022-02-03T02:26:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "59c7fa9f-9532-4059-bb48-0ebeac26054e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T02:22:21.000Z" + }, + "end": { + "$date": "2022-02-03T02:42:21.000Z" + }, + "events": [ + { + "uuid": "a2b327fb-e4a4-489a-93f5-5522c0de1d11", + "start": { + "$date": "2022-02-03T02:22:21.000Z" + }, + "end": { + "$date": "2022-02-03T02:42:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63044479-5969-4d02-9451-90ebf368ef09", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-03T02:20:43.000Z" + }, + "end": { + "$date": "2022-02-03T02:29:58.000Z" + }, + "events": [ + { + "uuid": "1ca02819-5c6c-443e-9202-95520cbaed14", + "start": { + "$date": "2022-02-03T02:20:43.000Z" + }, + "end": { + "$date": "2022-02-03T02:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0e970ae-6dd3-49e1-973d-15cb389eda95", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-03T02:37:39.000Z" + }, + "end": { + "$date": "2022-02-03T02:51:36.000Z" + }, + "events": [ + { + "uuid": "4bd195ee-82af-42e3-8dd2-2399df371e01", + "start": { + "$date": "2022-02-03T02:37:39.000Z" + }, + "end": { + "$date": "2022-02-03T02:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "21fed5de-0278-4e78-9f88-4666424547ac", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-03T02:39:50.000Z" + }, + "end": { + "$date": "2022-02-03T03:17:25.000Z" + }, + "events": [ + { + "uuid": "cef211d4-f407-4fb7-8ce9-7d5eabb16360", + "start": { + "$date": "2022-02-03T02:39:50.000Z" + }, + "end": { + "$date": "2022-02-03T03:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "53a58377-63cd-4feb-84bb-f794588fd490", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-03T02:40:12.000Z" + }, + "end": { + "$date": "2022-02-03T03:55:33.000Z" + }, + "events": [ + { + "uuid": "9dd1a202-eb15-4195-984e-52c9ec67e125", + "start": { + "$date": "2022-02-03T02:40:12.000Z" + }, + "end": { + "$date": "2022-02-03T03:05:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "455955c3-42e6-4b46-8f93-1e9e88c56ef9", + "start": { + "$date": "2022-02-03T03:05:12.000Z" + }, + "end": { + "$date": "2022-02-03T03:10:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "71b23566-d35e-4c9d-a856-323a6a98c0bc", + "start": { + "$date": "2022-02-03T03:10:12.000Z" + }, + "end": { + "$date": "2022-02-03T03:20:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "27595e6e-76fc-4258-8ed4-742dde6ae1af", + "start": { + "$date": "2022-02-03T03:20:12.000Z" + }, + "end": { + "$date": "2022-02-03T03:29:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c99f3842-f1c3-4f7a-b9d9-bcf325706772", + "start": { + "$date": "2022-02-03T03:29:12.000Z" + }, + "end": { + "$date": "2022-02-03T03:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "15731806-23ae-4987-8bdd-5ead644b679b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T02:46:58.000Z" + }, + "end": { + "$date": "2022-02-03T03:18:45.000Z" + }, + "events": [ + { + "uuid": "37d57bf7-2ce4-41f8-bedb-1ad51e8b5361", + "start": { + "$date": "2022-02-03T02:46:58.000Z" + }, + "end": { + "$date": "2022-02-03T03:18:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", + "uuid": "29a3a6dc-d11f-4ca9-8c73-8aebafd4b872", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-03T03:43:38.000Z" + }, + "end": { + "$date": "2022-02-03T03:47:42.000Z" + }, + "events": [ + { + "uuid": "e9372566-c193-43c9-8473-d4ffbfc12a4d", + "start": { + "$date": "2022-02-03T03:43:38.000Z" + }, + "end": { + "$date": "2022-02-03T03:47:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "63b344c8-5f6a-46a8-9811-1a006c9c9969", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-03T06:00:38.000Z" + }, + "end": { + "$date": "2022-02-03T07:52:22.000Z" + }, + "events": [ + { + "uuid": "b9133463-9e1e-4de3-b310-4946940a927f", + "start": { + "$date": "2022-02-03T06:00:38.000Z" + }, + "end": { + "$date": "2022-02-03T08:39:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ba3e4c9-a201-4d9d-a316-d2f56245fb2b", + "start": { + "$date": "2022-02-03T08:39:38.000Z" + }, + "end": { + "$date": "2022-02-03T08:58:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ecb8ec03-f3e9-4189-b8cf-eaac71f5a31a", + "start": { + "$date": "2022-02-03T08:58:38.000Z" + }, + "end": { + "$date": "2022-02-03T09:00:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b8854702-bbb7-46e3-a453-8de54cf6865b", + "start": { + "$date": "2022-02-03T09:00:38.000Z" + }, + "end": { + "$date": "2022-02-03T10:01:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d630dbcf-8f6b-4b74-8ad5-1e9f908e486c", + "start": { + "$date": "2022-02-03T10:01:38.000Z" + }, + "end": { + "$date": "2022-02-03T10:03:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f082bf85-11dd-4c14-a8f5-c824a2b84fde", + "start": { + "$date": "2022-02-03T10:03:38.000Z" + }, + "end": { + "$date": "2022-02-03T07:52:22.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f4341ae5-f8d3-4bbe-bbc4-2784102ba3aa", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-03T03:48:49.000Z" + }, + "end": { + "$date": "2022-02-03T05:35:55.000Z" + }, + "events": [ + { + "uuid": "ee2ae410-af2c-4f53-a916-ccab434966bb", + "start": { + "$date": "2022-02-03T03:48:49.000Z" + }, + "end": { + "$date": "2022-02-03T05:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "715b2c3e-8b08-44e4-a340-399ef6077416", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T03:59:30.000Z" + }, + "end": { + "$date": "2022-02-03T04:35:12.000Z" + }, + "events": [ + { + "uuid": "d6daf91f-4025-479c-91b4-9c390c7ee969", + "start": { + "$date": "2022-02-03T03:59:30.000Z" + }, + "end": { + "$date": "2022-02-03T04:35:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4a8343fe-b846-4ec0-8fc2-8eca3c3a9043", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-03T04:00:39.000Z" + }, + "end": { + "$date": "2022-02-03T07:06:12.000Z" + }, + "events": [ + { + "uuid": "3ed94976-1cdf-4ff1-b53c-36a10fb3d61f", + "start": { + "$date": "2022-02-03T04:00:39.000Z" + }, + "end": { + "$date": "2022-02-03T07:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e57a599-604a-4c54-8bab-934ea75f2978", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T05:09:58.000Z" + }, + "end": { + "$date": "2022-02-03T05:10:06.000Z" + }, + "events": [ + { + "uuid": "07e02a3f-4010-4c7b-91f3-a56a4d2ca81c", + "start": { + "$date": "2022-02-03T05:09:58.000Z" + }, + "end": { + "$date": "2022-02-03T05:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "1dde8999-b1f1-443e-b01f-6f5d69361c59", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-03T04:41:26.000Z" + }, + "end": { + "$date": "2022-02-03T05:23:01.000Z" + }, + "events": [ + { + "uuid": "0e2b3d63-13d7-4ec2-848f-1c7cab9058eb", + "start": { + "$date": "2022-02-03T04:41:26.000Z" + }, + "end": { + "$date": "2022-02-03T05:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d920aa80-d320-4af0-a6ca-5ec0d6b87879", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T05:10:46.000Z" + }, + "end": { + "$date": "2022-02-03T05:42:20.000Z" + }, + "events": [ + { + "uuid": "b08bfb04-4961-4186-adba-300bb3dbb757", + "start": { + "$date": "2022-02-03T05:10:46.000Z" + }, + "end": { + "$date": "2022-02-03T05:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "2172dc73-dd6e-44e2-9dd5-2ef7944b4ec1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-03T05:41:48.000Z" + }, + "end": { + "$date": "2022-02-03T05:45:04.000Z" + }, + "events": [ + { + "uuid": "4821a997-453f-4a67-8fa2-6771fa0efdc6", + "start": { + "$date": "2022-02-03T05:41:48.000Z" + }, + "end": { + "$date": "2022-02-03T05:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44f893b6-c2b7-4418-afc7-afbb7cc0f389", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T05:43:20.000Z" + }, + "end": { + "$date": "2022-02-03T06:17:50.000Z" + }, + "events": [ + { + "uuid": "c7a1d386-6fe4-4310-831e-b1afddf1ebf2", + "start": { + "$date": "2022-02-03T05:43:20.000Z" + }, + "end": { + "$date": "2022-02-03T06:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cde16c7-12a7-49aa-9802-53760b6d1826", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-03T05:45:20.000Z" + }, + "end": { + "$date": "2022-02-03T06:06:57.000Z" + }, + "events": [ + { + "uuid": "c49dad3d-4ac3-4131-8264-d4d0448119d6", + "start": { + "$date": "2022-02-03T05:45:20.000Z" + }, + "end": { + "$date": "2022-02-03T06:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "839bff9d-6491-41f3-9980-4df19fd46ef7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-03T06:13:14.000Z" + }, + "end": { + "$date": "2022-02-03T06:48:14.000Z" + }, + "events": [ + { + "uuid": "45595b0f-71f1-4b3f-9059-405993e6c574", + "start": { + "$date": "2022-02-03T06:13:14.000Z" + }, + "end": { + "$date": "2022-02-03T06:48:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b28d96c-e5ea-4ee5-a1e1-a752eebb0d09", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-03T06:15:02.000Z" + }, + "end": { + "$date": "2022-02-03T06:24:44.000Z" + }, + "events": [ + { + "uuid": "db3d786c-4a88-4783-9d6c-36792b2e880d", + "start": { + "$date": "2022-02-03T06:15:02.000Z" + }, + "end": { + "$date": "2022-02-03T06:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "031614cc-bdbb-4509-8e4a-1991804aa6b5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T06:22:22.000Z" + }, + "end": { + "$date": "2022-02-03T06:40:13.000Z" + }, + "events": [ + { + "uuid": "b7e37949-07eb-44d9-8c15-305c73882765", + "start": { + "$date": "2022-02-03T06:22:22.000Z" + }, + "end": { + "$date": "2022-02-03T06:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6442e05-96da-4d87-9c6f-b184f5e7c431", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T06:41:33.000Z" + }, + "end": { + "$date": "2022-02-03T07:10:52.000Z" + }, + "events": [ + { + "uuid": "18621ecd-5a8c-428a-8f5f-fa6c55d7d7fc", + "start": { + "$date": "2022-02-03T06:41:33.000Z" + }, + "end": { + "$date": "2022-02-03T07:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff412aca-75d1-48a7-8477-6f20481ef641", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-03T07:11:57.000Z" + }, + "end": { + "$date": "2022-02-03T07:39:28.000Z" + }, + "events": [ + { + "uuid": "26623889-d93f-49e1-976c-77dd157c503a", + "start": { + "$date": "2022-02-03T07:11:57.000Z" + }, + "end": { + "$date": "2022-02-03T07:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "018973b8-d3b0-4faa-9132-ce7cb17faa08", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-03T10:05:57.000Z" + }, + "end": { + "$date": "2022-02-03T10:48:16.000Z" + }, + "events": [ + { + "uuid": "847a04f2-9180-4562-9cb6-ba837eb2137b", + "start": { + "$date": "2022-02-03T10:05:57.000Z" + }, + "end": { + "$date": "2022-02-03T10:48:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c0e38a0d-82ee-47e8-8f0d-c1962dc061f4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-03T11:24:22.000Z" + }, + "end": { + "$date": "2022-02-03T12:37:40.000Z" + }, + "events": [ + { + "uuid": "fc3b8661-c136-4eb3-91e7-a1e171fac406", + "start": { + "$date": "2022-02-03T11:24:22.000Z" + }, + "end": { + "$date": "2022-02-03T12:37:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58f6b179-dcfa-4d02-9c0d-d45f84ab1928", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-03T13:00:17.000Z" + }, + "end": { + "$date": "2022-02-03T13:03:40.000Z" + }, + "events": [ + { + "uuid": "0dddc5ce-66d3-4287-b123-9a2b99673b3c", + "start": { + "$date": "2022-02-03T13:00:17.000Z" + }, + "end": { + "$date": "2022-02-03T13:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2bf1adc9-78e9-4b28-88de-7b91b05d623b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-03T13:24:31.000Z" + }, + "end": { + "$date": "2022-02-03T13:56:58.000Z" + }, + "events": [ + { + "uuid": "16e2a2b3-c038-4faa-b1bf-add471e85736", + "start": { + "$date": "2022-02-03T13:24:31.000Z" + }, + "end": { + "$date": "2022-02-03T13:56:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "7cba8b3c-6fa0-4e04-a5f7-e4360668ceb1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-03T17:02:01.000Z" + }, + "end": { + "$date": "2022-02-03T18:22:19.000Z" + }, + "events": [ + { + "uuid": "b880133f-d1b0-46aa-b298-8b9f48e4f83c", + "start": { + "$date": "2022-02-03T17:02:01.000Z" + }, + "end": { + "$date": "2022-02-03T18:22:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "64b85e02-c02b-4c88-ac17-30f32ada18cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-03T18:16:19.000Z" + }, + "end": { + "$date": "2022-02-03T22:06:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-02-03T18:16:19.000Z" + }, + "end": { + "$date": "2022-02-03T22:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6e4e077-ef29-456a-9d70-3da644d9020c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-03T18:18:22.000Z" + }, + "end": { + "$date": "2022-02-03T18:32:23.000Z" + }, + "events": [ + { + "uuid": "1a5e821d-52c1-40f1-ad8f-b41ca30c0bd0", + "start": { + "$date": "2022-02-03T18:18:22.000Z" + }, + "end": { + "$date": "2022-02-03T18:32:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "9bdfd8d5-ed33-4cb6-a635-5c0a95c19f24", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-03T20:48:18.000Z" + }, + "end": { + "$date": "2022-02-03T21:23:35.000Z" + }, + "events": [ + { + "uuid": "b286f05c-fde3-483b-8973-e574c26c9a55", + "start": { + "$date": "2022-02-03T20:48:18.000Z" + }, + "end": { + "$date": "2022-02-03T21:23:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "490a7717-f3b5-4415-b43b-7f3dabb93832", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-03T22:32:04.000Z" + }, + "end": { + "$date": "2022-02-03T22:46:11.000Z" + }, + "events": [ + { + "uuid": "24f9c749-9b2e-43f4-9cd9-121d2e07a0e5", + "start": { + "$date": "2022-02-03T22:32:04.000Z" + }, + "end": { + "$date": "2022-02-03T22:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04b325f2-2522-462d-9f9f-06c2abb87684", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-03T22:47:36.000Z" + }, + "end": { + "$date": "2022-02-03T23:08:12.000Z" + }, + "events": [ + { + "uuid": "015462a2-7a80-4698-8f2b-f0a5f56efe70", + "start": { + "$date": "2022-02-03T22:47:36.000Z" + }, + "end": { + "$date": "2022-02-03T23:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a60cd692-5af6-462e-97f2-a380491f0b72", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-03T23:11:24.000Z" + }, + "end": { + "$date": "2022-02-03T23:11:29.000Z" + }, + "events": [ + { + "uuid": "a9d3d24f-e341-4833-897d-6893e3fb198e", + "start": { + "$date": "2022-02-03T23:11:24.000Z" + }, + "end": { + "$date": "2022-02-03T23:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f965c777-2515-4b3b-acc3-17a825449965", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-03T23:24:44.000Z" + }, + "end": { + "$date": "2022-02-03T23:26:15.000Z" + }, + "events": [ + { + "uuid": "abc9c685-4e69-4ef2-aba3-b1f2bf05b8c9", + "start": { + "$date": "2022-02-03T23:24:44.000Z" + }, + "end": { + "$date": "2022-02-03T23:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "0063b3f7-bac1-4b96-91ef-a26c3590b2f5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-10T17:40:57.000Z" + }, + "end": { + "$date": "2022-02-10T17:42:57.000Z" + }, + "events": [ + { + "uuid": "1ff266ee-2aaf-49a4-9aed-78d17c232f00", + "start": { + "$date": "2022-02-10T17:40:57.000Z" + }, + "end": { + "$date": "2022-02-10T17:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", + "uuid": "86bab97b-f2d1-4880-953f-a99c0e65c207", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-10T17:54:44.000Z" + }, + "end": { + "$date": "2022-02-10T18:01:39.000Z" + }, + "events": [ + { + "uuid": "da6ba0c2-b66f-45b7-86ed-73179d139a28", + "start": { + "$date": "2022-02-10T17:54:44.000Z" + }, + "end": { + "$date": "2022-02-10T18:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "eac667e5-19c3-4392-89e5-ed3ff341e05a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T17:59:00.000Z" + }, + "end": { + "$date": "2022-02-10T19:48:31.000Z" + }, + "events": [ + { + "uuid": "e71ed560-b45c-4f83-befa-99aff14599a8", + "start": { + "$date": "2022-02-10T17:59:00.000Z" + }, + "end": { + "$date": "2022-02-10T18:43:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a717dcc-07ad-4048-9737-33af1933e97d", + "start": { + "$date": "2022-02-10T18:43:00.000Z" + }, + "end": { + "$date": "2022-02-10T18:44:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "84679418-27ff-4d64-b1a7-184f8c601b63", + "start": { + "$date": "2022-02-10T18:44:00.000Z" + }, + "end": { + "$date": "2022-02-10T19:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f1b9ef63-ec8f-49b2-afc0-6a70ae3273ff", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-10T18:03:24.000Z" + }, + "end": { + "$date": "2022-02-10T18:44:15.000Z" + }, + "events": [ + { + "uuid": "27a2f574-0e2b-47bb-8eb3-6f668a1500d5", + "start": { + "$date": "2022-02-10T18:03:24.000Z" + }, + "end": { + "$date": "2022-02-10T18:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f29fbc4e-20ce-49c6-8159-8c68e07156f1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T19:52:35.000Z" + }, + "end": { + "$date": "2022-02-10T20:18:27.000Z" + }, + "events": [ + { + "uuid": "19381be9-a163-4c5a-aafc-f98426d58a37", + "start": { + "$date": "2022-02-10T19:52:35.000Z" + }, + "end": { + "$date": "2022-02-10T20:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46151110-a98e-4c17-a1d2-67c49b335318", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T20:19:06.000Z" + }, + "end": { + "$date": "2022-02-10T20:20:18.000Z" + }, + "events": [ + { + "uuid": "1f321ac4-ab00-429b-a0e7-6ae8ca23d336", + "start": { + "$date": "2022-02-10T20:19:06.000Z" + }, + "end": { + "$date": "2022-02-10T20:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ebe35df-230e-43ef-826b-1680db103b81", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T20:32:12.000Z" + }, + "end": { + "$date": "2022-02-10T21:01:28.000Z" + }, + "events": [ + { + "uuid": "a2b0bf4e-83e3-4164-90e7-f7654260123c", + "start": { + "$date": "2022-02-10T20:32:12.000Z" + }, + "end": { + "$date": "2022-02-10T21:01:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "148ff8ed-a981-45c8-9d3f-72db2a8c076e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T21:27:36.000Z" + }, + "end": { + "$date": "2022-02-10T22:01:12.000Z" + }, + "events": [ + { + "uuid": "a099a6c6-c6de-46d0-bd37-02e244180c7b", + "start": { + "$date": "2022-02-10T21:27:36.000Z" + }, + "end": { + "$date": "2022-02-10T22:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e1a4322f-97c6-4a4d-b450-2ef78692d8c2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-10T21:47:48.000Z" + }, + "end": { + "$date": "2022-02-10T22:56:53.000Z" + }, + "events": [ + { + "uuid": "8e346876-6403-453c-9485-79f35ea204f4", + "start": { + "$date": "2022-02-10T21:47:48.000Z" + }, + "end": { + "$date": "2022-02-10T22:56:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "546f6258-ef21-46e5-8f32-da833411b2b0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T22:03:14.000Z" + }, + "end": { + "$date": "2022-02-10T22:20:02.000Z" + }, + "events": [ + { + "uuid": "e1018518-c5ec-4e9a-b5ab-8884ab9b8987", + "start": { + "$date": "2022-02-10T22:03:14.000Z" + }, + "end": { + "$date": "2022-02-10T22:20:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "31f3dcdd-f20b-44cc-b935-0964a19e46e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-10T22:09:26.000Z" + }, + "end": { + "$date": "2022-02-10T22:17:42.000Z" + }, + "events": [ + { + "uuid": "f13ab972-4572-448f-ade5-584632199254", + "start": { + "$date": "2022-02-10T22:09:26.000Z" + }, + "end": { + "$date": "2022-02-10T22:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8f5371f2-ba8d-440d-af11-42c9556e823a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-10T22:22:11.000Z" + }, + "end": { + "$date": "2022-02-10T22:44:48.000Z" + }, + "events": [ + { + "uuid": "59f15fd6-3985-4ca7-8859-d7aaf65709d9", + "start": { + "$date": "2022-02-10T22:22:11.000Z" + }, + "end": { + "$date": "2022-02-10T22:44:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e3a6c657-a005-433a-ad9a-b0b3a745ac1d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-10T22:24:54.000Z" + }, + "end": { + "$date": "2022-02-10T23:00:20.000Z" + }, + "events": [ + { + "uuid": "01a8fe7e-85ae-439a-a0be-0b34da57d6cb", + "start": { + "$date": "2022-02-10T22:24:54.000Z" + }, + "end": { + "$date": "2022-02-10T23:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e92bfc82-1791-4e3a-acfb-2992910ac966", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-10T22:46:11.000Z" + }, + "end": { + "$date": "2022-02-10T22:51:09.000Z" + }, + "events": [ + { + "uuid": "bb4b8d22-3234-4e8d-9a71-9d083476c244", + "start": { + "$date": "2022-02-10T22:46:11.000Z" + }, + "end": { + "$date": "2022-02-10T22:51:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dfd16748-2314-42ab-8ad8-cb8dce9f29f5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-10T23:29:43.000Z" + }, + "end": { + "$date": "2022-02-10T23:59:13.000Z" + }, + "events": [ + { + "uuid": "98c44a93-b418-4ac7-98ba-165d1862df34", + "start": { + "$date": "2022-02-10T23:29:43.000Z" + }, + "end": { + "$date": "2022-02-10T23:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "68a423f1-e4dd-4eb5-9f5a-2d17bf6ce36b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-11T01:04:12.000Z" + }, + "end": { + "$date": "2022-02-11T02:14:45.000Z" + }, + "events": [ + { + "uuid": "60d8ed17-f44b-479f-9562-5fa8e84627c9", + "start": { + "$date": "2022-02-11T01:04:12.000Z" + }, + "end": { + "$date": "2022-02-11T02:14:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ceb7b468-af73-48cb-8cb9-6cfae44f2f51", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T00:01:44.000Z" + }, + "end": { + "$date": "2022-02-11T00:34:52.000Z" + }, + "events": [ + { + "uuid": "48c967c2-e8f3-471e-a047-334e71e20cbd", + "start": { + "$date": "2022-02-11T00:01:44.000Z" + }, + "end": { + "$date": "2022-02-11T00:34:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8e81e780-c9d7-42db-8385-9af0f67fbc06", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-11T00:16:43.000Z" + }, + "end": { + "$date": "2022-02-11T05:35:02.000Z" + }, + "events": [ + { + "uuid": "b0a9aee4-f5af-4c05-a515-4f8a93a0e240", + "start": { + "$date": "2022-02-11T00:16:43.000Z" + }, + "end": { + "$date": "2022-02-11T01:26:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ea273ea-1724-4265-872e-0627d3ee0f00", + "start": { + "$date": "2022-02-11T01:26:43.000Z" + }, + "end": { + "$date": "2022-02-11T01:31:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b6b89ce-15db-47fa-8188-fe1a9f8f1299", + "start": { + "$date": "2022-02-11T01:31:43.000Z" + }, + "end": { + "$date": "2022-02-11T01:41:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cbd89e6d-fc4b-4e9c-9ce0-457a4603f53f", + "start": { + "$date": "2022-02-11T01:41:43.000Z" + }, + "end": { + "$date": "2022-02-11T01:52:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8b1ca8db-dcba-4f70-afc3-cb90822ce222", + "start": { + "$date": "2022-02-11T01:52:43.000Z" + }, + "end": { + "$date": "2022-02-11T02:08:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46acb6d0-2335-42d1-91c8-245198f8b712", + "start": { + "$date": "2022-02-11T02:08:43.000Z" + }, + "end": { + "$date": "2022-02-11T05:02:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "30cc1212-929a-481f-8fab-81ae6a9278a4", + "start": { + "$date": "2022-02-11T05:02:43.000Z" + }, + "end": { + "$date": "2022-02-11T05:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52f00172-23be-462e-aa79-5e5fd570f970", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T00:38:47.000Z" + }, + "end": { + "$date": "2022-02-11T01:20:08.000Z" + }, + "events": [ + { + "uuid": "e91c8fce-dd47-4e93-b356-10f5f95dd273", + "start": { + "$date": "2022-02-11T00:38:47.000Z" + }, + "end": { + "$date": "2022-02-11T01:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df71bece-7a8a-4d64-970a-5512d479c35b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T01:22:58.000Z" + }, + "end": { + "$date": "2022-02-11T02:04:30.000Z" + }, + "events": [ + { + "uuid": "70d73bb8-3450-4bff-8b81-1d7e166681a5", + "start": { + "$date": "2022-02-11T01:22:58.000Z" + }, + "end": { + "$date": "2022-02-11T02:04:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2477f0a3-907d-476f-ae7f-8696bae6ad2c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-11T01:40:05.000Z" + }, + "end": { + "$date": "2022-02-11T01:42:00.000Z" + }, + "events": [ + { + "uuid": "dcb717f4-4ef8-4b46-8f9f-a3fc986344a4", + "start": { + "$date": "2022-02-11T01:40:05.000Z" + }, + "end": { + "$date": "2022-02-11T01:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d107c102-6212-4ef4-b6c2-6dccbd89e9b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T02:11:07.000Z" + }, + "end": { + "$date": "2022-02-11T02:50:24.000Z" + }, + "events": [ + { + "uuid": "eb42c5f1-07fa-4424-a844-bfa630fd8feb", + "start": { + "$date": "2022-02-11T02:11:07.000Z" + }, + "end": { + "$date": "2022-02-11T02:50:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c878add1-be7c-4711-a40a-6c2586ef6bfb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-11T02:15:12.000Z" + }, + "end": { + "$date": "2022-02-11T03:14:33.000Z" + }, + "events": [ + { + "uuid": "2d9262a8-8e3b-4938-b75d-2c6db3212825", + "start": { + "$date": "2022-02-11T02:15:12.000Z" + }, + "end": { + "$date": "2022-02-11T03:14:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "f2dc96a2-49b2-4213-a660-594215fd7bff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-11T02:15:15.000Z" + }, + "end": { + "$date": "2022-02-11T04:34:51.000Z" + }, + "events": [ + { + "uuid": "edc596e4-7bb6-4e27-9710-59f0dcb2b931", + "start": { + "$date": "2022-02-11T02:15:15.000Z" + }, + "end": { + "$date": "2022-02-11T04:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53019422-402e-4962-9348-a9abb3c47305", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T02:18:06.000Z" + }, + "end": { + "$date": "2022-02-11T02:57:37.000Z" + }, + "events": [ + { + "uuid": "0d292a56-8cde-4c06-a7ef-69b9fc607c81", + "start": { + "$date": "2022-02-11T02:18:06.000Z" + }, + "end": { + "$date": "2022-02-11T02:57:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "03b43ec3-74bb-4f8d-b64e-ae2c8e62a85d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-11T02:06:05.000Z" + }, + "end": { + "$date": "2022-02-11T04:55:27.000Z" + }, + "events": [ + { + "uuid": "0bb5cbfd-4bde-424b-83f7-06e3911eedc0", + "start": { + "$date": "2022-02-11T02:06:05.000Z" + }, + "end": { + "$date": "2022-02-11T04:55:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbd96340-c237-4c61-ab5b-12a14254835d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T03:01:52.000Z" + }, + "end": { + "$date": "2022-02-11T03:21:59.000Z" + }, + "events": [ + { + "uuid": "5b55378c-b7e3-4d5e-bf5e-120703173746", + "start": { + "$date": "2022-02-11T03:01:52.000Z" + }, + "end": { + "$date": "2022-02-11T03:21:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0e2d68bc-fda5-41aa-84d2-9579d1d6729c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-11T03:14:43.000Z" + }, + "end": { + "$date": "2022-02-11T03:21:08.000Z" + }, + "events": [ + { + "uuid": "e9afcedb-6856-4fe8-845d-058bdf063c98", + "start": { + "$date": "2022-02-11T03:14:43.000Z" + }, + "end": { + "$date": "2022-02-11T03:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f5ebc24-d0ad-4d68-8a18-5cd68fe0cde8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T03:24:39.000Z" + }, + "end": { + "$date": "2022-02-11T03:43:40.000Z" + }, + "events": [ + { + "uuid": "b6b5b355-e0ea-4ffb-9357-a2424edf40ee", + "start": { + "$date": "2022-02-11T03:24:39.000Z" + }, + "end": { + "$date": "2022-02-11T03:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "725fc78a-953e-4fd9-b3c5-b2cda86bf15e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T03:46:10.000Z" + }, + "end": { + "$date": "2022-02-11T04:02:22.000Z" + }, + "events": [ + { + "uuid": "ce87111b-768d-40e9-9323-0db2ac257e84", + "start": { + "$date": "2022-02-11T03:46:10.000Z" + }, + "end": { + "$date": "2022-02-11T04:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f57b4a65-7d56-4127-80cc-764138d6f756", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T03:45:37.000Z" + }, + "end": { + "$date": "2022-02-11T03:49:33.000Z" + }, + "events": [ + { + "uuid": "70a03f34-ed6a-4226-9555-145ded085be9", + "start": { + "$date": "2022-02-11T03:45:37.000Z" + }, + "end": { + "$date": "2022-02-11T03:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "146ee54f-9d8a-4a48-8f1c-e27c87fe1dd2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T03:51:28.000Z" + }, + "end": { + "$date": "2022-02-11T04:13:30.000Z" + }, + "events": [ + { + "uuid": "6963f1f2-2c9d-45b2-a1ba-0f9dcc31a882", + "start": { + "$date": "2022-02-11T03:51:28.000Z" + }, + "end": { + "$date": "2022-02-11T04:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dae32fee-f9c4-464f-9668-a12380a13676", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-11T04:01:26.000Z" + }, + "end": { + "$date": "2022-02-11T05:06:03.000Z" + }, + "events": [ + { + "uuid": "3e040454-2b97-4be1-a49b-c5d4f075ec0a", + "start": { + "$date": "2022-02-11T04:01:26.000Z" + }, + "end": { + "$date": "2022-02-11T05:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c49bc02d-b02a-47ff-8705-ca2683bf71af", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T04:16:35.000Z" + }, + "end": { + "$date": "2022-02-11T04:29:35.000Z" + }, + "events": [ + { + "uuid": "8ad3ed58-8593-4a01-a7ff-7465879f6809", + "start": { + "$date": "2022-02-11T04:16:35.000Z" + }, + "end": { + "$date": "2022-02-11T04:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "59436253-c0da-473a-834b-0258cc51d8ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-11T04:19:59.000Z" + }, + "end": { + "$date": "2022-02-11T08:38:12.000Z" + }, + "events": [ + { + "uuid": "376d7d8a-462f-4167-b642-01c45ada6656", + "start": { + "$date": "2022-02-11T04:19:59.000Z" + }, + "end": { + "$date": "2022-02-11T08:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b00e0f5-2d59-44b3-8804-46e83305982d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T04:32:26.000Z" + }, + "end": { + "$date": "2022-02-11T04:55:51.000Z" + }, + "events": [ + { + "uuid": "b2e8c0ff-09ab-483b-91db-e0839c34c2cc", + "start": { + "$date": "2022-02-11T04:32:26.000Z" + }, + "end": { + "$date": "2022-02-11T04:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e7002762-a6ba-4496-9277-73a6d6fde81d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-11T04:44:50.000Z" + }, + "end": { + "$date": "2022-02-11T05:22:15.000Z" + }, + "events": [ + { + "uuid": "f442311b-1a38-4b3f-99d0-13d91ab24fd5", + "start": { + "$date": "2022-02-11T04:44:50.000Z" + }, + "end": { + "$date": "2022-02-11T05:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c8d63563-290b-4ae6-8319-20df46a64148", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-11T04:55:43.000Z" + }, + "end": { + "$date": "2022-02-11T07:30:47.000Z" + }, + "events": [ + { + "uuid": "0805149a-8152-458e-b1ee-8aba5c83b977", + "start": { + "$date": "2022-02-11T04:55:43.000Z" + }, + "end": { + "$date": "2022-02-11T07:30:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e38ab3a-34ac-4398-8b6c-c4d513db432e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-11T05:29:46.000Z" + }, + "end": { + "$date": "2022-02-11T05:46:56.000Z" + }, + "events": [ + { + "uuid": "d8a0e139-3d6b-4324-abe1-de24b1a0b51d", + "start": { + "$date": "2022-02-11T05:29:46.000Z" + }, + "end": { + "$date": "2022-02-11T05:46:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "11821f98-bb0f-4ee7-a5c0-ce3c5a703c5e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-11T05:39:29.000Z" + }, + "end": { + "$date": "2022-02-11T07:05:57.000Z" + }, + "events": [ + { + "uuid": "70ad7293-238b-4315-826c-df7b93987922", + "start": { + "$date": "2022-02-11T05:39:29.000Z" + }, + "end": { + "$date": "2022-02-11T07:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "341cd617-ed48-49f3-bc8e-49524c4ad661", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T05:59:49.000Z" + }, + "end": { + "$date": "2022-02-11T06:36:25.000Z" + }, + "events": [ + { + "uuid": "ba9dcd32-44a2-449a-af91-b45eb05c7012", + "start": { + "$date": "2022-02-11T05:59:49.000Z" + }, + "end": { + "$date": "2022-02-11T06:36:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "843632b2-c0f5-4d75-974a-98fec091d8c9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-11T06:01:07.000Z" + }, + "end": { + "$date": "2022-02-11T06:38:38.000Z" + }, + "events": [ + { + "uuid": "930cbf59-9cc8-4e8c-a622-281a812d2594", + "start": { + "$date": "2022-02-11T06:01:07.000Z" + }, + "end": { + "$date": "2022-02-11T06:38:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d722a959-d1a9-43cc-a54d-785b9620cae4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T06:46:41.000Z" + }, + "end": { + "$date": "2022-02-11T07:19:21.000Z" + }, + "events": [ + { + "uuid": "b54617a9-9254-43e2-9271-f421c94725b5", + "start": { + "$date": "2022-02-11T06:46:41.000Z" + }, + "end": { + "$date": "2022-02-11T07:19:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f83b91a2-6bf5-4a47-8554-0d0d42324c9d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-11T06:40:38.000Z" + }, + "end": { + "$date": "2022-02-11T06:58:33.000Z" + }, + "events": [ + { + "uuid": "cfe9593b-8ce9-4898-bf85-e15c4c8db68a", + "start": { + "$date": "2022-02-11T06:40:38.000Z" + }, + "end": { + "$date": "2022-02-11T06:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9f7783e4-adca-4750-8577-2be681caac14", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-11T07:04:59.000Z" + }, + "end": { + "$date": "2022-02-11T07:20:11.000Z" + }, + "events": [ + { + "uuid": "671c64d7-01b6-4414-bf03-d774ba092b90", + "start": { + "$date": "2022-02-11T07:04:59.000Z" + }, + "end": { + "$date": "2022-02-11T07:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3779b71f-55c5-45df-8d5c-257aaefc7a74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T07:38:04.000Z" + }, + "end": { + "$date": "2022-02-11T08:02:38.000Z" + }, + "events": [ + { + "uuid": "41da0413-b2e5-4309-8c91-1380324eaab2", + "start": { + "$date": "2022-02-11T07:38:04.000Z" + }, + "end": { + "$date": "2022-02-11T08:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "21f5ff5e-87f9-4d29-9e69-355cf816b97d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-11T07:23:14.000Z" + }, + "end": { + "$date": "2022-02-11T07:46:50.000Z" + }, + "events": [ + { + "uuid": "d953902d-1081-415d-850f-223dd62f80a9", + "start": { + "$date": "2022-02-11T07:23:14.000Z" + }, + "end": { + "$date": "2022-02-11T07:46:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "099b8c69-f455-45b8-8510-069e217a332c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-11T15:48:08.000Z" + }, + "end": { + "$date": "2022-02-11T16:56:18.000Z" + }, + "events": [ + { + "uuid": "048e7f45-44f6-4a15-8c2e-c9ebaf37978a", + "start": { + "$date": "2022-02-11T15:48:08.000Z" + }, + "end": { + "$date": "2022-02-11T16:56:18.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "84a64e57-0a83-486d-ac3b-95051ecde9f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-11T17:26:54.000Z" + }, + "end": { + "$date": "2022-02-11T17:40:55.000Z" + }, + "events": [ + { + "uuid": "d23896ea-1324-44b4-b77c-b44a8c0b6e36", + "start": { + "$date": "2022-02-11T17:26:54.000Z" + }, + "end": { + "$date": "2022-02-11T17:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c253ff2-42c8-45f2-8d58-358d05ecf4fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-11T17:43:35.000Z" + }, + "end": { + "$date": "2022-02-11T18:09:41.000Z" + }, + "events": [ + { + "uuid": "dd0cc3ad-b645-41a7-9da1-b6feac43dd6d", + "start": { + "$date": "2022-02-11T17:43:35.000Z" + }, + "end": { + "$date": "2022-02-11T18:09:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eea3bfdb-d3c2-406a-9a6d-258433515a01", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-11T17:43:30.000Z" + }, + "end": { + "$date": "2022-02-11T18:09:35.000Z" + }, + "events": [ + { + "uuid": "ed9d2c87-22db-496a-b626-ce061979997f", + "start": { + "$date": "2022-02-11T17:43:30.000Z" + }, + "end": { + "$date": "2022-02-11T18:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "beb57d8a-2ca8-4993-95f0-52d26aca7e32", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-11T18:02:17.000Z" + }, + "end": { + "$date": "2022-02-11T18:04:08.000Z" + }, + "events": [ + { + "uuid": "3eee9efd-edfd-4dae-ac9c-e95765aa252a", + "start": { + "$date": "2022-02-11T18:02:17.000Z" + }, + "end": { + "$date": "2022-02-11T18:04:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5488b8ea-b6c8-47c6-9dea-8ade82f8857e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-11T18:11:25.000Z" + }, + "end": { + "$date": "2022-02-12T01:09:13.000Z" + }, + "events": [ + { + "uuid": "6884c613-b950-44c2-a917-1d7dd0444940", + "start": { + "$date": "2022-02-11T18:11:25.000Z" + }, + "end": { + "$date": "2022-02-11T20:35:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "96459131-05f2-47ab-9da7-c4c9af367962", + "start": { + "$date": "2022-02-11T20:35:25.000Z" + }, + "end": { + "$date": "2022-02-11T20:37:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f730ed0-0c35-4381-968f-4f32f110011f", + "start": { + "$date": "2022-02-11T20:37:25.000Z" + }, + "end": { + "$date": "2022-02-12T01:09:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2d0dff15-59c7-4d9c-964c-af10527aa5eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-11T19:03:10.000Z" + }, + "end": { + "$date": "2022-02-11T19:55:44.000Z" + }, + "events": [ + { + "uuid": "7292ff92-8852-4f32-82ba-6f8cfdd47c3b", + "start": { + "$date": "2022-02-11T19:03:10.000Z" + }, + "end": { + "$date": "2022-02-11T19:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "510be789-8599-4251-8999-c6f2ee40640a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-11T20:36:55.000Z" + }, + "end": { + "$date": "2022-02-11T22:01:29.000Z" + }, + "events": [ + { + "uuid": "3e2766a7-b023-4fbc-bae9-91131bfe305a", + "start": { + "$date": "2022-02-11T20:36:55.000Z" + }, + "end": { + "$date": "2022-02-11T22:01:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dfbf880c-4403-4468-8270-17e0304cd4f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-11T21:39:55.000Z" + }, + "end": { + "$date": "2022-02-11T22:10:26.000Z" + }, + "events": [ + { + "uuid": "34e90312-b99b-4492-9e47-889ba0f5d4b3", + "start": { + "$date": "2022-02-11T21:39:55.000Z" + }, + "end": { + "$date": "2022-02-11T22:10:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "c9c44d08-e409-44df-a68d-b1b4a840b01e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-11T21:57:42.000Z" + }, + "end": { + "$date": "2022-02-12T01:22:25.000Z" + }, + "events": [ + { + "uuid": "a3f41a3a-27f5-4645-a0af-63baa994fa0e", + "start": { + "$date": "2022-02-11T21:57:42.000Z" + }, + "end": { + "$date": "2022-02-12T01:22:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8c64809d-d3af-4521-ab21-d152193a9c2b", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-02-11T22:15:45.000Z" + }, + "end": { + "$date": "2022-02-11T22:32:40.000Z" + }, + "events": [ + { + "uuid": "e2d290eb-b166-416b-98cd-9822bc64caf9", + "start": { + "$date": "2022-02-11T22:15:45.000Z" + }, + "end": { + "$date": "2022-02-11T22:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fef03fb0-a91a-4071-8690-7d79c660553a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-11T23:33:23.000Z" + }, + "end": { + "$date": "2022-02-11T23:54:29.000Z" + }, + "events": [ + { + "uuid": "95862928-641a-4e5f-9e47-7bd8cc12ac26", + "start": { + "$date": "2022-02-11T23:33:23.000Z" + }, + "end": { + "$date": "2022-02-11T23:54:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b3c9d8fb-4737-4940-b6ea-cc8af2108ad8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-12T00:09:44.000Z" + }, + "end": { + "$date": "2022-02-12T01:09:31.000Z" + }, + "events": [ + { + "uuid": "697ab021-f899-422b-8924-39491cb217bb", + "start": { + "$date": "2022-02-12T00:09:44.000Z" + }, + "end": { + "$date": "2022-02-12T01:09:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "6031126d-debb-4ec2-ab53-0f85c913bca0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-12T00:16:48.000Z" + }, + "end": { + "$date": "2022-02-12T01:08:43.000Z" + }, + "events": [ + { + "uuid": "f61bfe82-f0cf-4d87-b134-432df235ccf0", + "start": { + "$date": "2022-02-12T00:16:48.000Z" + }, + "end": { + "$date": "2022-02-12T01:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ebb6122a-03cc-40f6-96a0-376bcbba6ef5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T01:10:25.000Z" + }, + "end": { + "$date": "2022-02-12T04:00:16.000Z" + }, + "events": [ + { + "uuid": "1bd7da6e-db82-4046-889e-2b5f497e20ee", + "start": { + "$date": "2022-02-12T01:10:25.000Z" + }, + "end": { + "$date": "2022-02-12T03:23:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f25a8f30-f874-4188-93de-d6767377bd57", + "start": { + "$date": "2022-02-12T03:23:25.000Z" + }, + "end": { + "$date": "2022-02-12T03:25:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03bc9f68-1631-4333-afd0-97d4aa309d61", + "start": { + "$date": "2022-02-12T03:25:25.000Z" + }, + "end": { + "$date": "2022-02-12T04:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "15a5409d-b249-4ea8-ac64-734bb759adde", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-12T01:19:34.000Z" + }, + "end": { + "$date": "2022-02-12T01:58:51.000Z" + }, + "events": [ + { + "uuid": "bb5a0e60-2972-4d86-939d-afbee45e4b0a", + "start": { + "$date": "2022-02-12T01:19:34.000Z" + }, + "end": { + "$date": "2022-02-12T01:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "874c2864-0f6e-4400-b21e-120f082072ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-12T01:22:45.000Z" + }, + "end": { + "$date": "2022-02-12T02:26:37.000Z" + }, + "events": [ + { + "uuid": "52fc5bdc-37d9-47cd-92ee-9ee061560a27", + "start": { + "$date": "2022-02-12T01:22:45.000Z" + }, + "end": { + "$date": "2022-02-12T02:26:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68e3e56c-9858-4c7a-a6a9-c668f4090822", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-12T01:53:52.000Z" + }, + "end": { + "$date": "2022-02-12T02:25:58.000Z" + }, + "events": [ + { + "uuid": "c08829ac-905c-46bd-ba80-f53fb3239123", + "start": { + "$date": "2022-02-12T01:53:52.000Z" + }, + "end": { + "$date": "2022-02-12T02:25:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3244ef19-87ce-4b00-9770-23dd6593daca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-12T02:08:27.000Z" + }, + "end": { + "$date": "2022-02-12T03:34:26.000Z" + }, + "events": [ + { + "uuid": "9435d2e0-25ca-4476-a5a1-b7312960c295", + "start": { + "$date": "2022-02-12T02:08:27.000Z" + }, + "end": { + "$date": "2022-02-12T03:34:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68b64153-369b-4021-9780-7523b6456eda", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-12T02:26:51.000Z" + }, + "end": { + "$date": "2022-02-12T02:59:29.000Z" + }, + "events": [ + { + "uuid": "ae2faaea-033b-4f4c-ac23-7d8cbf4804b8", + "start": { + "$date": "2022-02-12T02:26:51.000Z" + }, + "end": { + "$date": "2022-02-12T02:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "174e16e1-3f01-44e0-90d4-1c2eaf915942", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-12T03:00:10.000Z" + }, + "end": { + "$date": "2022-02-12T03:36:45.000Z" + }, + "events": [ + { + "uuid": "9ac04af8-cb6a-4337-bb96-49913f0994a6", + "start": { + "$date": "2022-02-12T03:00:10.000Z" + }, + "end": { + "$date": "2022-02-12T03:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6ca763ca-26ed-4d6a-a01d-e00bc1a2aa1c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-12T03:17:41.000Z" + }, + "end": { + "$date": "2022-02-12T05:32:23.000Z" + }, + "events": [ + { + "uuid": "bb34754e-a153-411a-995b-159f52ca1a37", + "start": { + "$date": "2022-02-12T03:17:41.000Z" + }, + "end": { + "$date": "2022-02-12T05:32:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "f10e4381-57b5-434a-bc04-92035c8c9296", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-12T03:34:57.000Z" + }, + "end": { + "$date": "2022-02-12T04:21:17.000Z" + }, + "events": [ + { + "uuid": "05429508-abd8-497a-8456-764c3155d4df", + "start": { + "$date": "2022-02-12T03:34:57.000Z" + }, + "end": { + "$date": "2022-02-12T04:21:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edf07080-bd01-4be4-bfa1-7127ff88d52d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-12T03:37:33.000Z" + }, + "end": { + "$date": "2022-02-12T04:14:39.000Z" + }, + "events": [ + { + "uuid": "e0b976cf-baa0-4265-b9e7-a497112af928", + "start": { + "$date": "2022-02-12T03:37:33.000Z" + }, + "end": { + "$date": "2022-02-12T04:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "f475cbef-2cca-4788-a779-8bee928c0ff5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-12T03:57:32.000Z" + }, + "end": { + "$date": "2022-02-12T04:46:03.000Z" + }, + "events": [ + { + "uuid": "634af995-d0f7-4ec9-9061-efd49d64281f", + "start": { + "$date": "2022-02-12T03:57:32.000Z" + }, + "end": { + "$date": "2022-02-12T04:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c259d70c-aa4b-4102-bade-97cd9fba94cd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T04:01:31.000Z" + }, + "end": { + "$date": "2022-02-12T04:19:48.000Z" + }, + "events": [ + { + "uuid": "e5ea8dba-83cc-4e57-a9ef-a81d40e9eb5c", + "start": { + "$date": "2022-02-12T04:01:31.000Z" + }, + "end": { + "$date": "2022-02-12T04:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2aa43a4-3db5-40fc-b7a3-11448ccd2766", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-12T04:18:16.000Z" + }, + "end": { + "$date": "2022-02-12T06:17:06.000Z" + }, + "events": [ + { + "uuid": "6c1bdfdb-6246-49ad-9493-b0337c0a23b4", + "start": { + "$date": "2022-02-12T04:18:16.000Z" + }, + "end": { + "$date": "2022-02-12T06:17:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "69514c68-de47-470d-b0a3-db6f7b8e000e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-12T04:19:19.000Z" + }, + "end": { + "$date": "2022-02-12T04:51:51.000Z" + }, + "events": [ + { + "uuid": "3d5bfaab-6d73-4111-a62e-5e2370ea9413", + "start": { + "$date": "2022-02-12T04:19:19.000Z" + }, + "end": { + "$date": "2022-02-12T04:51:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "1f8df343-0b8c-4dec-ae4a-aa92dfcd0ffc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T04:21:07.000Z" + }, + "end": { + "$date": "2022-02-12T04:23:08.000Z" + }, + "events": [ + { + "uuid": "41ce1d7b-3758-4c1b-9b58-9c6b9c2c7700", + "start": { + "$date": "2022-02-12T04:21:07.000Z" + }, + "end": { + "$date": "2022-02-12T04:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b8d15934-41a9-4594-8496-b961255c0e25", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-12T04:21:27.000Z" + }, + "end": { + "$date": "2022-02-12T06:27:33.000Z" + }, + "events": [ + { + "uuid": "b3f71660-77ef-4a6d-b51f-be94bcb7656a", + "start": { + "$date": "2022-02-12T04:21:27.000Z" + }, + "end": { + "$date": "2022-02-12T06:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "46180675-f951-4835-a66b-eba8a1bd255d", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-02-12T04:23:23.000Z" + }, + "end": { + "$date": "2022-02-12T06:27:06.000Z" + }, + "events": [ + { + "uuid": "ab78c621-9a57-472d-bcc0-eaa636f5c517", + "start": { + "$date": "2022-02-12T04:23:23.000Z" + }, + "end": { + "$date": "2022-02-12T06:27:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", + "uuid": "129025b9-d263-45ab-b268-dd5ebbe53fb4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T04:24:42.000Z" + }, + "end": { + "$date": "2022-02-12T05:28:49.000Z" + }, + "events": [ + { + "uuid": "fbfd4191-a321-4019-b2ca-b2631f351f3c", + "start": { + "$date": "2022-02-12T04:24:42.000Z" + }, + "end": { + "$date": "2022-02-12T05:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "47e6638a-986d-4056-9649-6222c116059c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-12T06:12:59.000Z" + }, + "end": { + "$date": "2022-02-12T08:03:47.000Z" + }, + "events": [ + { + "uuid": "06661ce6-f606-453d-bc6d-74dbc984c473", + "start": { + "$date": "2022-02-12T06:12:59.000Z" + }, + "end": { + "$date": "2022-02-12T08:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6848f4e6-7aec-47fd-88fd-5f6b5a7bf947", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-12T03:23:08.000Z" + }, + "end": { + "$date": "2022-02-12T08:08:02.000Z" + }, + "events": [ + { + "uuid": "9cd36cae-ae65-43c0-b604-398772bf7abb", + "start": { + "$date": "2022-02-12T03:23:08.000Z" + }, + "end": { + "$date": "2022-02-12T08:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "cd036a9b-5720-40ff-9d67-bce108d737fd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-12T04:58:37.000Z" + }, + "end": { + "$date": "2022-02-12T05:02:47.000Z" + }, + "events": [ + { + "uuid": "a121b1dc-1a97-4052-87c6-508f409c3418", + "start": { + "$date": "2022-02-12T04:58:37.000Z" + }, + "end": { + "$date": "2022-02-12T05:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "735dc2de-5718-4852-8508-bb9aff2f8dec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-12T05:03:35.000Z" + }, + "end": { + "$date": "2022-02-12T09:46:12.000Z" + }, + "events": [ + { + "uuid": "903de673-17fe-4ac7-8e62-51fa98d7b0b8", + "start": { + "$date": "2022-02-12T05:03:35.000Z" + }, + "end": { + "$date": "2022-02-12T09:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "b82b85f4-a479-45ac-bcbf-2217fc71a32d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-12T05:06:18.000Z" + }, + "end": { + "$date": "2022-02-12T07:57:26.000Z" + }, + "events": [ + { + "uuid": "7f815668-0430-4cc7-9cba-10d82b887e42", + "start": { + "$date": "2022-02-12T05:06:18.000Z" + }, + "end": { + "$date": "2022-02-12T07:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "1473fda3-c22c-4dc7-b57b-0fb5c340d161", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-12T05:19:31.000Z" + }, + "end": { + "$date": "2022-02-12T05:20:45.000Z" + }, + "events": [ + { + "uuid": "668c7e02-748c-408b-954f-e59f63a13aa8", + "start": { + "$date": "2022-02-12T05:19:31.000Z" + }, + "end": { + "$date": "2022-02-12T05:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "8df5d2ea-df29-49bd-913f-637559cae751", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-12T05:23:11.000Z" + }, + "end": { + "$date": "2022-02-12T05:26:56.000Z" + }, + "events": [ + { + "uuid": "de6d5996-0046-4e24-b0e2-a9c3435f8d98", + "start": { + "$date": "2022-02-12T05:23:11.000Z" + }, + "end": { + "$date": "2022-02-12T05:26:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "550700cf-d36e-47d6-a41c-2bf38a7bf435", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-12T05:28:17.000Z" + }, + "end": { + "$date": "2022-02-12T05:29:26.000Z" + }, + "events": [ + { + "uuid": "47766b9c-f923-401f-9a31-5bd7449eb1da", + "start": { + "$date": "2022-02-12T05:28:17.000Z" + }, + "end": { + "$date": "2022-02-12T05:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "700aa807-7942-4b0f-9d6a-b182ec7584f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-12T05:30:52.000Z" + }, + "end": { + "$date": "2022-02-12T09:43:29.000Z" + }, + "events": [ + { + "uuid": "e5de0c29-209f-4e5a-8d11-9f75cfc907e5", + "start": { + "$date": "2022-02-12T05:30:52.000Z" + }, + "end": { + "$date": "2022-02-12T09:43:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b2c87692-0428-470a-b688-b4983b1ca91e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-12T05:35:47.000Z" + }, + "end": { + "$date": "2022-02-12T07:28:19.000Z" + }, + "events": [ + { + "uuid": "d94d3f46-1d80-42fe-a006-0826162c4804", + "start": { + "$date": "2022-02-12T05:35:47.000Z" + }, + "end": { + "$date": "2022-02-12T07:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "7702ce08-f6a7-4fb6-b167-1009d8cb0889", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T05:58:56.000Z" + }, + "end": { + "$date": "2022-02-12T06:00:52.000Z" + }, + "events": [ + { + "uuid": "eec36534-e50f-4f0c-8c15-875210d1b4d2", + "start": { + "$date": "2022-02-12T05:58:56.000Z" + }, + "end": { + "$date": "2022-02-12T06:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "dce34cf3-1ec2-4ce7-a464-568492ceb637", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T06:02:02.000Z" + }, + "end": { + "$date": "2022-02-12T06:12:08.000Z" + }, + "events": [ + { + "uuid": "4d16ba3e-5967-4877-ad69-84637b5a2849", + "start": { + "$date": "2022-02-12T06:02:02.000Z" + }, + "end": { + "$date": "2022-02-12T06:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "14b4a004-d64d-48e6-a751-71bf055ff07b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T07:09:42.000Z" + }, + "end": { + "$date": "2022-02-12T08:03:06.000Z" + }, + "events": [ + { + "uuid": "815f1e22-bc85-4d01-b0f3-2d7fb912a3da", + "start": { + "$date": "2022-02-12T07:09:42.000Z" + }, + "end": { + "$date": "2022-02-12T08:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "237dbe2c-155f-4145-87e3-7a2836a93c2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-12T15:02:49.000Z" + }, + "end": { + "$date": "2022-02-12T16:33:15.000Z" + }, + "events": [ + { + "uuid": "64e916ef-ea05-4cf2-b6a8-758e9a369b60", + "start": { + "$date": "2022-02-12T15:02:49.000Z" + }, + "end": { + "$date": "2022-02-12T16:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "a692a8cc-8c4c-4822-aa0b-3cd51d8a546c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-12T16:34:40.000Z" + }, + "end": { + "$date": "2022-02-12T19:34:21.000Z" + }, + "events": [ + { + "uuid": "4f7246a2-d4a6-4985-aac6-9d06860085ac", + "start": { + "$date": "2022-02-12T16:34:40.000Z" + }, + "end": { + "$date": "2022-02-12T19:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "26dd9cdd-3585-4d11-b2a9-2bed636197b4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-12T17:21:05.000Z" + }, + "end": { + "$date": "2022-02-12T17:49:04.000Z" + }, + "events": [ + { + "uuid": "771ae46e-a747-46c5-9e29-5d8d3bf05fd2", + "start": { + "$date": "2022-02-12T17:21:05.000Z" + }, + "end": { + "$date": "2022-02-12T17:49:04.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "801e0f65-3a4f-46ef-a717-4ed49ce85650", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T17:37:49.000Z" + }, + "end": { + "$date": "2022-02-12T19:02:28.000Z" + }, + "events": [ + { + "uuid": "d30599d1-d96e-4c3b-aa6c-372c55e3122a", + "start": { + "$date": "2022-02-12T17:37:49.000Z" + }, + "end": { + "$date": "2022-02-12T19:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "6885dbb1-4032-43af-a174-d9342c027791", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-12T18:37:44.000Z" + }, + "end": { + "$date": "2022-02-12T20:21:19.000Z" + }, + "events": [ + { + "uuid": "1ad5d501-306a-4aa6-afdb-5b721f739d57", + "start": { + "$date": "2022-02-12T18:37:44.000Z" + }, + "end": { + "$date": "2022-02-12T20:21:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "810c67b0-062e-4c8d-9107-13cafab205e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-12T20:40:44.000Z" + }, + "end": { + "$date": "2022-02-12T20:46:14.000Z" + }, + "events": [ + { + "uuid": "40d8c119-8b20-4100-8a49-08ddb360063d", + "start": { + "$date": "2022-02-12T20:40:44.000Z" + }, + "end": { + "$date": "2022-02-12T20:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ab0dacc-3ad8-4089-9f02-534d66d1d3d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-12T21:16:30.000Z" + }, + "end": { + "$date": "2022-02-12T21:30:45.000Z" + }, + "events": [ + { + "uuid": "2659de88-509f-4db4-a097-a48e86296d5c", + "start": { + "$date": "2022-02-12T21:16:30.000Z" + }, + "end": { + "$date": "2022-02-12T21:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "84bd739c-e609-4277-a48f-1cef0a3ab849", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-12T21:36:13.000Z" + }, + "end": { + "$date": "2022-02-13T07:47:07.000Z" + }, + "events": [ + { + "uuid": "f0c6398e-ad98-4401-8673-3c066399b2cd", + "start": { + "$date": "2022-02-12T21:36:13.000Z" + }, + "end": { + "$date": "2022-02-13T07:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "258cce9b-bd37-4267-832f-5c4281fd2ad2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-13T02:26:54.000Z" + }, + "end": { + "$date": "2022-02-13T02:27:00.000Z" + }, + "events": [ + { + "uuid": "c8352770-f5f9-4180-8435-d521a7cea6d4", + "start": { + "$date": "2022-02-13T02:26:54.000Z" + }, + "end": { + "$date": "2022-02-13T02:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f6990684-3694-4240-8bd4-3332033c15d1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-13T03:05:35.000Z" + }, + "end": { + "$date": "2022-02-13T08:20:32.000Z" + }, + "events": [ + { + "uuid": "9174de11-e457-4fd8-8c6b-e509cfdbed37", + "start": { + "$date": "2022-02-13T03:05:35.000Z" + }, + "end": { + "$date": "2022-02-13T08:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "bfcd694d-87b9-4290-8af5-811f3b3ced69", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-13T03:12:33.000Z" + }, + "end": { + "$date": "2022-02-13T05:07:54.000Z" + }, + "events": [ + { + "uuid": "df3fb8da-3331-4e58-babd-a8946142ecf8", + "start": { + "$date": "2022-02-13T03:12:33.000Z" + }, + "end": { + "$date": "2022-02-13T05:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "04869043-5055-42e7-9906-4f4fb3466256", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-13T04:35:23.000Z" + }, + "end": { + "$date": "2022-02-13T07:30:59.000Z" + }, + "events": [ + { + "uuid": "62e91c72-4c63-4d6e-8ad3-0c68db3e2ce3", + "start": { + "$date": "2022-02-13T04:35:23.000Z" + }, + "end": { + "$date": "2022-02-13T05:15:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86c12de1-1062-4f20-bd99-219393305d43", + "start": { + "$date": "2022-02-13T05:15:23.000Z" + }, + "end": { + "$date": "2022-02-13T05:17:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c80b950-59a8-4349-97e4-77a3c3f8cad8", + "start": { + "$date": "2022-02-13T05:17:23.000Z" + }, + "end": { + "$date": "2022-02-13T07:30:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "dda7b3c0-b5aa-4e4f-ae30-71f5ae5a6356", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-13T05:15:56.000Z" + }, + "end": { + "$date": "2022-02-13T06:26:03.000Z" + }, + "events": [ + { + "uuid": "58b01e09-4b8d-417b-af6c-46b43f64b2f8", + "start": { + "$date": "2022-02-13T05:15:56.000Z" + }, + "end": { + "$date": "2022-02-13T06:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "d310536e-d36e-4ddd-83c1-20c9003b1819", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-13T05:39:41.000Z" + }, + "end": { + "$date": "2022-02-13T08:55:54.000Z" + }, + "events": [ + { + "uuid": "271e51f1-509d-4f88-b8ee-dbd9635d0773", + "start": { + "$date": "2022-02-13T05:39:41.000Z" + }, + "end": { + "$date": "2022-02-13T08:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fd4c820-bcd2-4ef7-a4f7-10aa11520306", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-13T05:56:59.000Z" + }, + "end": { + "$date": "2022-02-13T06:19:09.000Z" + }, + "events": [ + { + "uuid": "081189ba-0efc-4e9e-be93-333c715d579d", + "start": { + "$date": "2022-02-13T05:56:59.000Z" + }, + "end": { + "$date": "2022-02-13T06:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b30f1e97-6858-4747-91e9-8dedd4933974", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-13T05:57:31.000Z" + }, + "end": { + "$date": "2022-02-13T07:35:47.000Z" + }, + "events": [ + { + "uuid": "b7512931-0f73-4838-8d73-5fa410318190", + "start": { + "$date": "2022-02-13T05:57:31.000Z" + }, + "end": { + "$date": "2022-02-13T07:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "181d4109-ce12-46bf-8698-372220cd0dc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-13T09:15:27.000Z" + }, + "end": { + "$date": "2022-02-13T10:01:55.000Z" + }, + "events": [ + { + "uuid": "1ee18265-cbfa-40ae-abeb-2f7275405125", + "start": { + "$date": "2022-02-13T09:15:27.000Z" + }, + "end": { + "$date": "2022-02-13T10:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "0ab57b64-6fe2-4daa-8e1c-474737206f40", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-13T15:01:04.000Z" + }, + "end": { + "$date": "2022-02-13T17:43:49.000Z" + }, + "events": [ + { + "uuid": "eda914dc-6faa-4dd7-883f-0f56fae3722a", + "start": { + "$date": "2022-02-13T15:01:04.000Z" + }, + "end": { + "$date": "2022-02-13T17:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "def30b20-7e9d-416d-a1a7-e5a3b525ce5f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-13T15:07:36.000Z" + }, + "end": { + "$date": "2022-02-13T15:59:26.000Z" + }, + "events": [ + { + "uuid": "3f434285-0342-4fc5-b2de-83240a70611b", + "start": { + "$date": "2022-02-13T15:07:36.000Z" + }, + "end": { + "$date": "2022-02-13T15:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a6454e24-fccc-44d2-b25e-a8c80d927973", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-13T15:41:42.000Z" + }, + "end": { + "$date": "2022-02-14T00:18:38.000Z" + }, + "events": [ + { + "uuid": "cc20248e-cacf-4450-aba2-ffcd0a616dfc", + "start": { + "$date": "2022-02-13T15:41:42.000Z" + }, + "end": { + "$date": "2022-02-13T17:54:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "05a981f5-825b-4ccc-8bc6-5df9dac53532", + "start": { + "$date": "2022-02-13T17:54:42.000Z" + }, + "end": { + "$date": "2022-02-13T18:03:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd1272e7-5712-4ca9-a0f9-3b4e552ecbcf", + "start": { + "$date": "2022-02-13T18:03:42.000Z" + }, + "end": { + "$date": "2022-02-13T20:42:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9c3cc35-f26f-4f45-8083-5c583535a52c", + "start": { + "$date": "2022-02-13T20:42:42.000Z" + }, + "end": { + "$date": "2022-02-13T20:51:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2c744d0-59cd-4e20-a1bc-55bf591afaf8", + "start": { + "$date": "2022-02-13T20:51:42.000Z" + }, + "end": { + "$date": "2022-02-14T00:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "95fb14d9-171a-414e-bcf0-658de7888f2c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-13T15:48:18.000Z" + }, + "end": { + "$date": "2022-02-13T16:34:59.000Z" + }, + "events": [ + { + "uuid": "0948f6fc-373b-4ef3-bbe1-9664ac7d2bef", + "start": { + "$date": "2022-02-13T15:48:18.000Z" + }, + "end": { + "$date": "2022-02-13T16:34:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5888a2ab-5f20-485e-90e8-d3af57f9809c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-13T17:47:50.000Z" + }, + "end": { + "$date": "2022-02-13T18:24:02.000Z" + }, + "events": [ + { + "uuid": "50a524a3-45c7-40b8-9621-6e4251d6a8ca", + "start": { + "$date": "2022-02-13T17:47:50.000Z" + }, + "end": { + "$date": "2022-02-13T18:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e1468f13-3ccf-4480-8446-f23705f20b4f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-13T17:57:09.000Z" + }, + "end": { + "$date": "2022-02-13T18:01:20.000Z" + }, + "events": [ + { + "uuid": "693a2817-18c3-424b-a79c-8fa23e4ecef2", + "start": { + "$date": "2022-02-13T17:57:09.000Z" + }, + "end": { + "$date": "2022-02-13T18:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5d74f975-5883-4569-a09e-1441025f03f5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-13T18:02:45.000Z" + }, + "end": { + "$date": "2022-02-13T19:07:32.000Z" + }, + "events": [ + { + "uuid": "9d0a05ee-e35e-4d35-923e-e382d3ceeb7a", + "start": { + "$date": "2022-02-13T18:02:45.000Z" + }, + "end": { + "$date": "2022-02-13T18:25:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d19bdd12-7f87-41aa-b750-94c80736f279", + "start": { + "$date": "2022-02-13T18:25:45.000Z" + }, + "end": { + "$date": "2022-02-13T19:07:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "b382e5e7-6b66-4d21-b0f4-1dbb51865a5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-13T19:09:22.000Z" + }, + "end": { + "$date": "2022-02-13T19:57:35.000Z" + }, + "events": [ + { + "uuid": "3191064d-8872-4624-a825-6a97ad414f73", + "start": { + "$date": "2022-02-13T19:09:22.000Z" + }, + "end": { + "$date": "2022-02-13T19:57:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "b39e46e4-0c13-43d2-bb5e-c511865d5c1d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-13T20:48:32.000Z" + }, + "end": { + "$date": "2022-02-13T21:23:53.000Z" + }, + "events": [ + { + "uuid": "a1b4efbb-146f-496c-9e5d-29843b6414d3", + "start": { + "$date": "2022-02-13T20:48:32.000Z" + }, + "end": { + "$date": "2022-02-13T21:23:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c3741240-32d8-4310-9076-6e949af190b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-13T22:37:28.000Z" + }, + "end": { + "$date": "2022-02-14T01:30:17.000Z" + }, + "events": [ + { + "uuid": "c26bf86b-60f2-491c-b951-84ae84b6aa4c", + "start": { + "$date": "2022-02-13T22:37:28.000Z" + }, + "end": { + "$date": "2022-02-14T01:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3e269db3-c071-4e90-b5c8-eed2e5642266", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-13T23:40:57.000Z" + }, + "end": { + "$date": "2022-02-13T23:48:49.000Z" + }, + "events": [ + { + "uuid": "d7d4bc25-c266-4d08-8ed4-388a8b228a21", + "start": { + "$date": "2022-02-13T23:40:57.000Z" + }, + "end": { + "$date": "2022-02-13T23:48:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "64b7b060-7823-42c4-bcbc-45c0b76664aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-13T23:40:57.000Z" + }, + "end": { + "$date": "2022-02-14T00:21:48.000Z" + }, + "events": [ + { + "uuid": "c6493ff9-0928-47c7-ade8-9f98cad7e3d1", + "start": { + "$date": "2022-02-13T23:40:57.000Z" + }, + "end": { + "$date": "2022-02-14T00:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "20a9563b-f46f-4424-ae61-f1590deabeb4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-14T02:06:02.000Z" + }, + "end": { + "$date": "2022-02-14T03:06:14.000Z" + }, + "events": [ + { + "uuid": "e2bd0149-645b-49b1-be5a-7c1eb2dd4ef7", + "start": { + "$date": "2022-02-14T02:06:02.000Z" + }, + "end": { + "$date": "2022-02-14T03:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0bfa480f-1057-4b1a-9f07-16c870cb5408", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-14T03:06:24.000Z" + }, + "end": { + "$date": "2022-02-14T04:15:46.000Z" + }, + "events": [ + { + "uuid": "783cea82-0d42-43e1-b6de-a80fea661e3c", + "start": { + "$date": "2022-02-14T03:06:24.000Z" + }, + "end": { + "$date": "2022-02-14T03:55:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e805e18f-2fe1-49da-abd5-2b0092e58dbe", + "start": { + "$date": "2022-02-14T03:55:24.000Z" + }, + "end": { + "$date": "2022-02-14T04:00:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dfb47f03-b97b-4c4e-9806-6c3e3819ec68", + "start": { + "$date": "2022-02-14T04:00:24.000Z" + }, + "end": { + "$date": "2022-02-14T04:10:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "896a644d-3841-493f-b301-b06fae218d78", + "start": { + "$date": "2022-02-14T04:10:24.000Z" + }, + "end": { + "$date": "2022-02-14T04:15:46.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "13999bf5-9e01-4d7b-81be-3481083de22f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-14T03:08:11.000Z" + }, + "end": { + "$date": "2022-02-14T03:35:32.000Z" + }, + "events": [ + { + "uuid": "55b6d5cb-f6e0-49e1-a446-dd4a39dd6244", + "start": { + "$date": "2022-02-14T03:08:11.000Z" + }, + "end": { + "$date": "2022-02-14T03:35:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ce5a6a4b-46fc-4ee7-8651-abcd358f38dd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-14T03:56:16.000Z" + }, + "end": { + "$date": "2022-02-14T06:03:40.000Z" + }, + "events": [ + { + "uuid": "82032524-d492-4cca-b828-b2e1df976bf7", + "start": { + "$date": "2022-02-14T03:56:16.000Z" + }, + "end": { + "$date": "2022-02-14T06:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9f99eda3-29a6-48ce-8c63-254401282a73", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-14T04:06:08.000Z" + }, + "end": { + "$date": "2022-02-14T06:16:47.000Z" + }, + "events": [ + { + "uuid": "e0dd92ec-6106-4a7e-81e7-ba8354793a10", + "start": { + "$date": "2022-02-14T04:06:08.000Z" + }, + "end": { + "$date": "2022-02-14T06:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7f78cdc0-9f84-4d47-be2e-93442505e42c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-14T04:22:32.000Z" + }, + "end": { + "$date": "2022-02-14T06:34:40.000Z" + }, + "events": [ + { + "uuid": "6b44c0c9-3b73-48fe-a2da-43a1bc185107", + "start": { + "$date": "2022-02-14T04:22:32.000Z" + }, + "end": { + "$date": "2022-02-14T06:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1e1d95e4-b12e-46b5-9f0c-60e34bed160a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-14T04:43:43.000Z" + }, + "end": { + "$date": "2022-02-14T04:53:04.000Z" + }, + "events": [ + { + "uuid": "f5df5e00-7fcc-41d3-b17c-b43cdfa8caa8", + "start": { + "$date": "2022-02-14T04:43:43.000Z" + }, + "end": { + "$date": "2022-02-14T04:53:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0adf1fa0-ed3a-4867-87b7-93e37037fb0d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-14T04:54:44.000Z" + }, + "end": { + "$date": "2022-02-14T05:57:17.000Z" + }, + "events": [ + { + "uuid": "584f41fa-79d4-4e14-913f-d93375ec7aff", + "start": { + "$date": "2022-02-14T04:54:44.000Z" + }, + "end": { + "$date": "2022-02-14T05:57:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "708a9f44-81d6-4129-8adf-7382c68e95db", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-14T05:08:52.000Z" + }, + "end": { + "$date": "2022-02-14T06:10:40.000Z" + }, + "events": [ + { + "uuid": "5ee72546-d13d-4e16-887e-d24c890b54bc", + "start": { + "$date": "2022-02-14T05:08:52.000Z" + }, + "end": { + "$date": "2022-02-14T05:48:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f359ce97-0d4d-4ad9-857d-bd803fdb2153", + "start": { + "$date": "2022-02-14T05:48:52.000Z" + }, + "end": { + "$date": "2022-02-14T06:10:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "82954053-24f2-4420-b93c-756b1aa6bb2d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-14T06:05:07.000Z" + }, + "end": { + "$date": "2022-02-14T06:19:43.000Z" + }, + "events": [ + { + "uuid": "bd49d061-90a5-4504-996a-c519cabbde78", + "start": { + "$date": "2022-02-14T06:05:07.000Z" + }, + "end": { + "$date": "2022-02-14T06:19:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0a2c4216-bc2d-40a2-b2ee-191ae9bfbed8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-14T06:55:17.000Z" + }, + "end": { + "$date": "2022-02-14T08:06:53.000Z" + }, + "events": [ + { + "uuid": "302b9d43-459c-41bc-a52c-c6f2b67b3bfd", + "start": { + "$date": "2022-02-14T06:55:17.000Z" + }, + "end": { + "$date": "2022-02-14T08:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "d84278fb-8a68-4ee4-95b9-d5bf047b00bd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-14T06:07:58.000Z" + }, + "end": { + "$date": "2022-02-14T08:41:59.000Z" + }, + "events": [ + { + "uuid": "c332e6e1-f59d-42ad-833e-ee312e7d3691", + "start": { + "$date": "2022-02-14T06:07:58.000Z" + }, + "end": { + "$date": "2022-02-14T08:41:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "cad2b419-662f-4cc6-9827-7cc051758303", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-14T06:20:47.000Z" + }, + "end": { + "$date": "2022-02-14T08:02:29.000Z" + }, + "events": [ + { + "uuid": "8ec37fb1-7778-409d-be32-7e181b77f70d", + "start": { + "$date": "2022-02-14T06:20:47.000Z" + }, + "end": { + "$date": "2022-02-14T08:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "0355cbb4-3a32-483f-8681-4a7cb9792615", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-14T06:43:00.000Z" + }, + "end": { + "$date": "2022-02-14T07:16:47.000Z" + }, + "events": [ + { + "uuid": "3b75da92-5353-40e6-9272-8d7c4de31306", + "start": { + "$date": "2022-02-14T06:43:00.000Z" + }, + "end": { + "$date": "2022-02-14T07:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7eeebeee-fa05-4aed-8c6c-311b31e7d8ec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-14T06:58:13.000Z" + }, + "end": { + "$date": "2022-02-14T07:21:25.000Z" + }, + "events": [ + { + "uuid": "7db1ffa5-d4b8-48ae-a4d7-01a8453feca3", + "start": { + "$date": "2022-02-14T06:58:13.000Z" + }, + "end": { + "$date": "2022-02-14T07:21:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c1af96d-4d8a-476a-aba7-c709efd896c9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-14T07:25:20.000Z" + }, + "end": { + "$date": "2022-02-14T07:45:50.000Z" + }, + "events": [ + { + "uuid": "48c2f5f5-e8e6-4e1b-810b-73276d7d0445", + "start": { + "$date": "2022-02-14T07:25:20.000Z" + }, + "end": { + "$date": "2022-02-14T07:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "4ff4fadf-656e-4c9c-be64-c6af8e9b4f6b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-14T07:28:33.000Z" + }, + "end": { + "$date": "2022-02-14T09:00:57.000Z" + }, + "events": [ + { + "uuid": "adfdaa43-0343-4b8f-b654-fbec07585377", + "start": { + "$date": "2022-02-14T07:28:33.000Z" + }, + "end": { + "$date": "2022-02-14T09:00:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7112b2fa-7c10-4c7e-86ad-891bee1e968f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-14T07:49:06.000Z" + }, + "end": { + "$date": "2022-02-14T08:15:01.000Z" + }, + "events": [ + { + "uuid": "5365fefa-1ca0-4c6c-a2d1-03e10b778e52", + "start": { + "$date": "2022-02-14T07:49:06.000Z" + }, + "end": { + "$date": "2022-02-14T08:15:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "2f670bff-5691-4899-b14d-586a37566d5b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-14T08:22:16.000Z" + }, + "end": { + "$date": "2022-02-14T08:25:41.000Z" + }, + "events": [ + { + "uuid": "6d997158-0d37-4c4a-9ad7-622ea81128dc", + "start": { + "$date": "2022-02-14T08:22:16.000Z" + }, + "end": { + "$date": "2022-02-14T08:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "9a14039b-5a61-4e2c-90c1-2474b81b0bf9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-14T14:14:38.000Z" + }, + "end": { + "$date": "2022-02-14T14:51:25.000Z" + }, + "events": [ + { + "uuid": "1c2efac8-6f43-49da-9a5f-0e9f2cf7f62a", + "start": { + "$date": "2022-02-14T14:14:38.000Z" + }, + "end": { + "$date": "2022-02-14T14:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0fd54f0-f91c-4456-8c4d-faa6499d2276", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-14T16:53:21.000Z" + }, + "end": { + "$date": "2022-02-14T18:08:36.000Z" + }, + "events": [ + { + "uuid": "9e04572d-7365-40a1-906d-e62385e48465", + "start": { + "$date": "2022-02-14T16:53:21.000Z" + }, + "end": { + "$date": "2022-02-14T18:08:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "439d1a03-78ad-4f03-8bf3-2c8272713bb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-14T17:03:47.000Z" + }, + "end": { + "$date": "2022-02-14T21:43:34.000Z" + }, + "events": [ + { + "uuid": "c8b82e6f-2353-4e75-8c7e-bbe56ae6af54", + "start": { + "$date": "2022-02-14T17:03:47.000Z" + }, + "end": { + "$date": "2022-02-14T21:43:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0750e5d3-8aaa-4912-ba4d-2586bedcd56e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-14T18:36:07.000Z" + }, + "end": { + "$date": "2022-02-14T18:36:16.000Z" + }, + "events": [ + { + "uuid": "13f8af88-4b4e-4b46-b84b-04fa4f3111c1", + "start": { + "$date": "2022-02-14T18:36:07.000Z" + }, + "end": { + "$date": "2022-02-14T18:36:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fa1733af-923b-4674-ae20-7bebf3b26114", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-14T18:36:47.000Z" + }, + "end": { + "$date": "2022-02-14T18:39:06.000Z" + }, + "events": [ + { + "uuid": "13f95677-8fda-4fa7-b39d-aeedf763ef9a", + "start": { + "$date": "2022-02-14T18:36:47.000Z" + }, + "end": { + "$date": "2022-02-14T18:39:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a98a3f8f-0af5-4b8b-9799-14e4500ae917", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-14T18:39:07.000Z" + }, + "end": { + "$date": "2022-02-14T18:48:57.000Z" + }, + "events": [ + { + "uuid": "6476c43f-379f-4b99-a719-514246607d5c", + "start": { + "$date": "2022-02-14T18:39:07.000Z" + }, + "end": { + "$date": "2022-02-14T18:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ece58ee0-7563-4b29-b787-cf13bf1a6a3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-14T18:49:12.000Z" + }, + "end": { + "$date": "2022-02-14T19:30:13.000Z" + }, + "events": [ + { + "uuid": "181ccff0-eb01-4faf-9c6a-2b950843dee1", + "start": { + "$date": "2022-02-14T18:49:12.000Z" + }, + "end": { + "$date": "2022-02-14T19:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "00c3565a-472e-4f9f-b5ab-a79a1263aebd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-14T19:36:54.000Z" + }, + "end": { + "$date": "2022-02-14T20:03:28.000Z" + }, + "events": [ + { + "uuid": "87f95a04-946a-4b1f-8998-beb7d5922704", + "start": { + "$date": "2022-02-14T19:36:54.000Z" + }, + "end": { + "$date": "2022-02-14T20:03:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "5b38636f-6bb5-4c06-96ca-3421125f5575", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-14T20:55:00.000Z" + }, + "end": { + "$date": "2022-02-14T21:34:17.000Z" + }, + "events": [ + { + "uuid": "a5ed9f7c-b2f0-4c66-8cf4-611ba9b20d0f", + "start": { + "$date": "2022-02-14T20:55:00.000Z" + }, + "end": { + "$date": "2022-02-14T21:34:17.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "33e470aa-c870-49a0-bf52-8a88a7652e23", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-14T23:04:42.000Z" + }, + "end": { + "$date": "2022-02-15T00:15:13.000Z" + }, + "events": [ + { + "uuid": "6b764e11-1882-4b9c-a6e6-da7b62811c63", + "start": { + "$date": "2022-02-14T23:04:42.000Z" + }, + "end": { + "$date": "2022-02-15T00:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "789785be-b755-4b62-a0b4-cca925906f20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-14T23:45:46.000Z" + }, + "end": { + "$date": "2022-02-15T03:00:05.000Z" + }, + "events": [ + { + "uuid": "c94e236b-cc25-4736-aee5-0d33a81b5338", + "start": { + "$date": "2022-02-14T23:45:46.000Z" + }, + "end": { + "$date": "2022-02-15T03:00:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "32b38a0e-ffcc-4fb4-a61a-30514a73ef5b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-15T00:36:25.000Z" + }, + "end": { + "$date": "2022-02-15T00:41:20.000Z" + }, + "events": [ + { + "uuid": "4c4e04dd-a8c9-408e-80d3-1486a0422fc3", + "start": { + "$date": "2022-02-15T00:36:25.000Z" + }, + "end": { + "$date": "2022-02-15T00:41:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "05a48e89-d941-404e-a1ab-913dce76f909", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-15T01:31:31.000Z" + }, + "end": { + "$date": "2022-02-15T01:34:22.000Z" + }, + "events": [ + { + "uuid": "44556969-21e9-4cc4-97f8-d94524dc7e11", + "start": { + "$date": "2022-02-15T01:31:31.000Z" + }, + "end": { + "$date": "2022-02-15T01:34:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6c3b7fbe-1986-4f0e-8e8d-f43f113b355d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-15T01:45:02.000Z" + }, + "end": { + "$date": "2022-02-15T02:31:40.000Z" + }, + "events": [ + { + "uuid": "fda7a40e-3001-4621-aa22-b74f69f621f9", + "start": { + "$date": "2022-02-15T01:45:02.000Z" + }, + "end": { + "$date": "2022-02-15T02:06:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a182c04-698e-446d-8dce-4a5c30bb97da", + "start": { + "$date": "2022-02-15T02:06:02.000Z" + }, + "end": { + "$date": "2022-02-15T02:31:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "eba45dcb-ea2b-41bf-9058-14d169839747", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-15T02:25:00.000Z" + }, + "end": { + "$date": "2022-02-15T02:33:41.000Z" + }, + "events": [ + { + "uuid": "891daaa4-2cd2-4ca2-a673-8c23559f24cd", + "start": { + "$date": "2022-02-15T02:25:00.000Z" + }, + "end": { + "$date": "2022-02-15T02:33:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5255f97a-0a45-4086-a882-3ac010853f66", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-15T02:36:40.000Z" + }, + "end": { + "$date": "2022-02-15T02:45:57.000Z" + }, + "events": [ + { + "uuid": "5c1a81e8-2e4a-4ed6-9ec9-a2a2db681a47", + "start": { + "$date": "2022-02-15T02:36:40.000Z" + }, + "end": { + "$date": "2022-02-15T02:45:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "364ff9bc-b71d-45ac-be94-e1ee8b9a79dd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-15T02:46:46.000Z" + }, + "end": { + "$date": "2022-02-15T03:20:18.000Z" + }, + "events": [ + { + "uuid": "816b7dc2-c261-466c-8dc7-b01ad55d20d0", + "start": { + "$date": "2022-02-15T02:46:46.000Z" + }, + "end": { + "$date": "2022-02-15T03:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "50e709d0-acb2-4328-81fb-2bf91bb739f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-15T02:56:27.000Z" + }, + "end": { + "$date": "2022-02-15T05:12:42.000Z" + }, + "events": [ + { + "uuid": "3b40e7ae-0678-45a6-8065-f529cb53ffb6", + "start": { + "$date": "2022-02-15T02:56:27.000Z" + }, + "end": { + "$date": "2022-02-15T05:12:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7dcb99ab-9342-4d2d-8b1f-df01d140706e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-15T03:01:26.000Z" + }, + "end": { + "$date": "2022-02-15T05:59:09.000Z" + }, + "events": [ + { + "uuid": "ee295324-4f35-4e8f-86b2-654e08e81125", + "start": { + "$date": "2022-02-15T03:01:26.000Z" + }, + "end": { + "$date": "2022-02-15T05:59:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87442e37-d31f-4a90-8f26-962da2eebb37", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-15T03:01:39.000Z" + }, + "end": { + "$date": "2022-02-15T05:59:04.000Z" + }, + "events": [ + { + "uuid": "b7a9c7e1-8adc-4713-8e9d-66e77904de27", + "start": { + "$date": "2022-02-15T03:01:39.000Z" + }, + "end": { + "$date": "2022-02-15T05:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "820dc72c-4b85-4388-a78f-929031bf99fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-15T03:11:15.000Z" + }, + "end": { + "$date": "2022-02-15T04:42:25.000Z" + }, + "events": [ + { + "uuid": "1d99cf36-7068-4f11-b614-f515f7651908", + "start": { + "$date": "2022-02-15T03:11:15.000Z" + }, + "end": { + "$date": "2022-02-15T04:42:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c7da6c1f-c77f-44ca-8ce6-000171e99f6f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-15T03:20:22.000Z" + }, + "end": { + "$date": "2022-02-15T04:41:00.000Z" + }, + "events": [ + { + "uuid": "22328f37-92cf-4dc9-b5f4-4b76664d5a95", + "start": { + "$date": "2022-02-15T03:20:22.000Z" + }, + "end": { + "$date": "2022-02-15T03:49:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5e2a857-697f-4fc1-9a29-b4343bdc78e8", + "start": { + "$date": "2022-02-15T03:49:22.000Z" + }, + "end": { + "$date": "2022-02-15T03:54:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "febc655f-3bbf-426a-884b-70ff2dc6a51c", + "start": { + "$date": "2022-02-15T03:54:22.000Z" + }, + "end": { + "$date": "2022-02-15T04:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "671e9ad3-b817-4c81-af8c-e4c4da25dec7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-15T03:06:26.000Z" + }, + "end": { + "$date": "2022-02-15T04:34:36.000Z" + }, + "events": [ + { + "uuid": "7635a696-3f21-4bf1-9147-4197733e2c15", + "start": { + "$date": "2022-02-15T03:06:26.000Z" + }, + "end": { + "$date": "2022-02-15T04:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "d87ca984-f6ee-4498-9150-5a7569adeebf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-15T04:20:10.000Z" + }, + "end": { + "$date": "2022-02-15T08:00:35.000Z" + }, + "events": [ + { + "uuid": "1923799b-1535-4a0c-bfba-51ad09e51447", + "start": { + "$date": "2022-02-15T04:20:10.000Z" + }, + "end": { + "$date": "2022-02-15T08:00:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c9509df1-aa50-4d04-807e-10f1e3939468", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-15T04:34:46.000Z" + }, + "end": { + "$date": "2022-02-15T06:02:02.000Z" + }, + "events": [ + { + "uuid": "e817f691-a4f9-49a1-b76d-bd1c9e9e8eef", + "start": { + "$date": "2022-02-15T04:34:46.000Z" + }, + "end": { + "$date": "2022-02-15T06:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b6dca8ba-5fa2-48df-898d-0e21eeed6fd8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-15T04:41:39.000Z" + }, + "end": { + "$date": "2022-02-15T06:05:50.000Z" + }, + "events": [ + { + "uuid": "cd8e7e81-e1be-433f-a76f-3e1513c78ee6", + "start": { + "$date": "2022-02-15T04:41:39.000Z" + }, + "end": { + "$date": "2022-02-15T06:05:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "309ff879-bafc-4a42-8032-4e5292c80c9f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-15T04:47:06.000Z" + }, + "end": { + "$date": "2022-02-15T04:48:51.000Z" + }, + "events": [ + { + "uuid": "7c65c966-a86b-409a-826e-1569d0fcb94b", + "start": { + "$date": "2022-02-15T04:47:06.000Z" + }, + "end": { + "$date": "2022-02-15T04:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "79106a7e-cfa9-4952-ac16-a7d9c5d2aa56", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-15T04:57:07.000Z" + }, + "end": { + "$date": "2022-02-15T05:09:12.000Z" + }, + "events": [ + { + "uuid": "c005a37d-7651-4d53-9c71-e29fa6764878", + "start": { + "$date": "2022-02-15T04:57:07.000Z" + }, + "end": { + "$date": "2022-02-15T05:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a4b7e79-81a0-43f7-8926-9e5c7d03cc5a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-15T05:09:15.000Z" + }, + "end": { + "$date": "2022-02-15T05:40:15.000Z" + }, + "events": [ + { + "uuid": "eb536db4-7cc8-45c9-a317-86725c16b7c9", + "start": { + "$date": "2022-02-15T05:09:15.000Z" + }, + "end": { + "$date": "2022-02-15T05:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36d094e1-40e4-4a9c-88eb-8c344a7f807f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-15T05:50:55.000Z" + }, + "end": { + "$date": "2022-02-15T06:07:30.000Z" + }, + "events": [ + { + "uuid": "17b9758e-be63-4bca-9969-e656608aec60", + "start": { + "$date": "2022-02-15T05:50:55.000Z" + }, + "end": { + "$date": "2022-02-15T06:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea40497c-1fb6-495c-9965-2a41d2b7c6f9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-15T05:46:51.000Z" + }, + "end": { + "$date": "2022-02-15T06:17:51.000Z" + }, + "events": [ + { + "uuid": "d54fc07c-2de8-48ac-9458-e95b604abc2b", + "start": { + "$date": "2022-02-15T05:46:51.000Z" + }, + "end": { + "$date": "2022-02-15T06:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91d0e514-5505-479f-bd0a-a2f6a16e7b29", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-15T06:24:07.000Z" + }, + "end": { + "$date": "2022-02-15T07:02:03.000Z" + }, + "events": [ + { + "uuid": "9e858d0a-5d48-4749-95c9-fe078be8abd8", + "start": { + "$date": "2022-02-15T06:24:07.000Z" + }, + "end": { + "$date": "2022-02-15T07:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "b12857c4-6573-4891-994c-9881b8ec2ccf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-15T08:02:46.000Z" + }, + "end": { + "$date": "2022-02-15T08:04:41.000Z" + }, + "events": [ + { + "uuid": "fed59e53-ef55-4725-8ced-9f976e869eb9", + "start": { + "$date": "2022-02-15T08:02:46.000Z" + }, + "end": { + "$date": "2022-02-15T08:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3aedae5a-971d-4ad2-ac2c-ca2a9b113c8f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-15T17:09:13.000Z" + }, + "end": { + "$date": "2022-02-15T17:27:23.000Z" + }, + "events": [ + { + "uuid": "a733638d-a93e-45f6-97a8-e110f71b75b7", + "start": { + "$date": "2022-02-15T17:09:13.000Z" + }, + "end": { + "$date": "2022-02-15T17:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "48b84a17-9175-4969-8b92-7301e45e4fa3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-15T17:39:25.000Z" + }, + "end": { + "$date": "2022-02-15T18:31:26.000Z" + }, + "events": [ + { + "uuid": "7290e11c-d8cc-491f-990b-102539800bf5", + "start": { + "$date": "2022-02-15T17:39:25.000Z" + }, + "end": { + "$date": "2022-02-15T18:31:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "5b60ae4a-8846-4159-afcc-5ca322ea7e52", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-15T21:39:24.000Z" + }, + "end": { + "$date": "2022-02-15T22:01:20.000Z" + }, + "events": [ + { + "uuid": "aefae9bc-0fe6-4ab6-ad82-c2409989bd01", + "start": { + "$date": "2022-02-15T21:39:24.000Z" + }, + "end": { + "$date": "2022-02-15T22:01:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "78a78f60-7eef-4ef0-8edf-e9442cb13922", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-15T22:00:13.000Z" + }, + "end": { + "$date": "2022-02-15T23:52:43.000Z" + }, + "events": [ + { + "uuid": "1f3cc4f5-57b7-4a26-986e-49e31e447245", + "start": { + "$date": "2022-02-15T22:00:13.000Z" + }, + "end": { + "$date": "2022-02-15T23:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "7152ac6f-341b-49b8-a6b9-796b78cad500", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-15T22:54:31.000Z" + }, + "end": { + "$date": "2022-02-15T23:31:42.000Z" + }, + "events": [ + { + "uuid": "3f6bc355-2258-4759-a3d3-d276d96dc295", + "start": { + "$date": "2022-02-15T22:54:31.000Z" + }, + "end": { + "$date": "2022-02-15T23:31:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "7a9c6b5a-9f28-4013-be82-00b4a88f28a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-15T23:45:03.000Z" + }, + "end": { + "$date": "2022-02-16T00:54:44.000Z" + }, + "events": [ + { + "uuid": "55498c9b-930a-4cbf-8152-3eaf16615640", + "start": { + "$date": "2022-02-15T23:45:03.000Z" + }, + "end": { + "$date": "2022-02-16T00:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af680ee2-e5b8-478d-941e-422e2051ed59", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-15T23:52:50.000Z" + }, + "end": { + "$date": "2022-02-16T00:12:59.000Z" + }, + "events": [ + { + "uuid": "3234a205-5b4e-438b-aeba-74b2265a6cda", + "start": { + "$date": "2022-02-15T23:52:50.000Z" + }, + "end": { + "$date": "2022-02-16T00:12:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "282c6490-2f31-4440-bd51-7d1155a0cf09", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-15T23:52:48.000Z" + }, + "end": { + "$date": "2022-02-16T01:22:40.000Z" + }, + "events": [ + { + "uuid": "daa3d3fe-2067-44fc-a47f-10f6210306fc", + "start": { + "$date": "2022-02-15T23:52:48.000Z" + }, + "end": { + "$date": "2022-02-16T01:22:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c7717094-a485-4acf-b023-513d5df9680e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-16T00:27:37.000Z" + }, + "end": { + "$date": "2022-02-16T00:29:57.000Z" + }, + "events": [ + { + "uuid": "25208b8c-1263-4d7f-ac09-5fdd3ff8e585", + "start": { + "$date": "2022-02-16T00:27:37.000Z" + }, + "end": { + "$date": "2022-02-16T00:29:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ee672c74-0d55-466a-8eb9-f8dc880d217b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-16T00:42:49.000Z" + }, + "end": { + "$date": "2022-02-16T00:54:35.000Z" + }, + "events": [ + { + "uuid": "0175a1f1-3dae-4832-894b-94d370c24a22", + "start": { + "$date": "2022-02-16T00:42:49.000Z" + }, + "end": { + "$date": "2022-02-16T00:54:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b7146dd0-2233-4f4e-a147-32752b60bd6b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-16T01:22:50.000Z" + }, + "end": { + "$date": "2022-02-16T04:03:09.000Z" + }, + "events": [ + { + "uuid": "5cdfb419-49ff-4042-b7ec-c2232c60b58e", + "start": { + "$date": "2022-02-16T01:22:50.000Z" + }, + "end": { + "$date": "2022-02-16T04:03:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "f63656a3-4ba5-4e14-970b-a8d015a68b30", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-16T02:01:52.000Z" + }, + "end": { + "$date": "2022-02-16T07:00:23.000Z" + }, + "events": [ + { + "uuid": "d4ac4b60-1bbc-481c-9b0c-dde5ed2c7aa1", + "start": { + "$date": "2022-02-16T02:01:52.000Z" + }, + "end": { + "$date": "2022-02-16T07:00:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9e82b9a4-c17e-46ae-b01c-c2107bda1247", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-16T02:19:47.000Z" + }, + "end": { + "$date": "2022-02-16T04:13:10.000Z" + }, + "events": [ + { + "uuid": "470e2b88-4833-4fdc-8836-d6fd27696835", + "start": { + "$date": "2022-02-16T02:19:47.000Z" + }, + "end": { + "$date": "2022-02-16T04:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "46466bd7-df0c-4cec-a7b6-a726204fe423", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-16T02:26:30.000Z" + }, + "end": { + "$date": "2022-02-16T08:56:36.000Z" + }, + "events": [ + { + "uuid": "2cbed051-35a7-4281-a925-93c2341ea17a", + "start": { + "$date": "2022-02-16T02:26:30.000Z" + }, + "end": { + "$date": "2022-02-16T08:56:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "88a7bdc8-8d42-4229-8967-80a8718aec56", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-16T02:48:37.000Z" + }, + "end": { + "$date": "2022-02-16T03:25:08.000Z" + }, + "events": [ + { + "uuid": "963f33ce-ce8f-4db2-a21d-d3ccae8a30cc", + "start": { + "$date": "2022-02-16T02:48:37.000Z" + }, + "end": { + "$date": "2022-02-16T03:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8d32b120-1b67-4120-b2b9-b4359954bee3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-16T03:13:14.000Z" + }, + "end": { + "$date": "2022-02-16T04:07:21.000Z" + }, + "events": [ + { + "uuid": "c40645d6-4d71-485a-b0b1-27a07e1db9fd", + "start": { + "$date": "2022-02-16T03:13:14.000Z" + }, + "end": { + "$date": "2022-02-16T04:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3fb7a863-7769-40db-8134-9f86bcdce07a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-16T04:11:56.000Z" + }, + "end": { + "$date": "2022-02-16T08:56:23.000Z" + }, + "events": [ + { + "uuid": "2eb6cdba-a0cc-45b3-b20a-8824d97ddf38", + "start": { + "$date": "2022-02-16T04:11:56.000Z" + }, + "end": { + "$date": "2022-02-16T08:56:23.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "19c7f882-991b-41c1-992f-49ce6c0a7dd7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-16T04:13:39.000Z" + }, + "end": { + "$date": "2022-02-16T08:56:21.000Z" + }, + "events": [ + { + "uuid": "c5af13e0-371e-44e5-8330-f98b8634e1f5", + "start": { + "$date": "2022-02-16T04:13:39.000Z" + }, + "end": { + "$date": "2022-02-16T08:56:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "62d7c360-f250-460e-8e1b-42a8ab5a81e5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-16T04:17:32.000Z" + }, + "end": { + "$date": "2022-02-16T06:51:13.000Z" + }, + "events": [ + { + "uuid": "513256bc-3b72-4b48-a9d9-6d8e720eae47", + "start": { + "$date": "2022-02-16T04:17:32.000Z" + }, + "end": { + "$date": "2022-02-16T06:51:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37817bb2-b72b-46e1-a73d-72ccc8cd99e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-16T04:32:27.000Z" + }, + "end": { + "$date": "2022-02-16T05:14:51.000Z" + }, + "events": [ + { + "uuid": "b7659d4c-5e94-445c-828e-65c48f8bfcb3", + "start": { + "$date": "2022-02-16T04:32:27.000Z" + }, + "end": { + "$date": "2022-02-16T05:14:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "40baa8cc-00e7-4683-ac36-183a3bed3908", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-16T04:45:05.000Z" + }, + "end": { + "$date": "2022-02-16T05:02:37.000Z" + }, + "events": [ + { + "uuid": "7a9e245b-de96-42a4-a487-bf00e430dbc2", + "start": { + "$date": "2022-02-16T04:45:05.000Z" + }, + "end": { + "$date": "2022-02-16T05:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "276a8db0-744d-47d1-bcc2-725231edbbad", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-02-16T04:48:11.000Z" + }, + "end": { + "$date": "2022-02-16T04:55:32.000Z" + }, + "events": [ + { + "uuid": "7f486739-e90f-4a98-9591-99b12ca825fc", + "start": { + "$date": "2022-02-16T04:48:11.000Z" + }, + "end": { + "$date": "2022-02-16T04:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "792d85d2-0e76-4389-884e-b506007c457b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T04:58:04.000Z" + }, + "end": { + "$date": "2022-02-16T05:46:49.000Z" + }, + "events": [ + { + "uuid": "9e7d7fe9-8dd1-4c41-abd6-1287316d6199", + "start": { + "$date": "2022-02-16T04:58:04.000Z" + }, + "end": { + "$date": "2022-02-16T05:46:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "97d163e0-dc64-49ad-a1ba-041e0be2c426", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-16T05:23:36.000Z" + }, + "end": { + "$date": "2022-02-16T07:34:35.000Z" + }, + "events": [ + { + "uuid": "8a9efa57-cbb2-4c33-9cf9-c9f90323bf18", + "start": { + "$date": "2022-02-16T05:23:36.000Z" + }, + "end": { + "$date": "2022-02-16T07:34:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "986d139c-59bf-43de-b9bb-779f3578f146", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-16T05:24:31.000Z" + }, + "end": { + "$date": "2022-02-16T06:14:58.000Z" + }, + "events": [ + { + "uuid": "1eb4489b-0ae6-4883-b732-2eb6b3eb11aa", + "start": { + "$date": "2022-02-16T05:24:31.000Z" + }, + "end": { + "$date": "2022-02-16T06:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "a773974c-be7d-4739-8e0e-63ad05d9e84b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-16T06:05:15.000Z" + }, + "end": { + "$date": "2022-02-16T06:46:46.000Z" + }, + "events": [ + { + "uuid": "103398d4-c1af-4f2f-ab1d-c03370bba14c", + "start": { + "$date": "2022-02-16T06:05:15.000Z" + }, + "end": { + "$date": "2022-02-16T06:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e4d9dd12-b271-4b81-888e-34495886d70e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-16T06:17:18.000Z" + }, + "end": { + "$date": "2022-02-16T07:34:33.000Z" + }, + "events": [ + { + "uuid": "5398be47-605c-4235-82b5-0bfdef6660e8", + "start": { + "$date": "2022-02-16T06:17:18.000Z" + }, + "end": { + "$date": "2022-02-16T07:34:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1ddb8d3e-1a56-4637-96e2-01886e6b4cec", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-16T06:36:41.000Z" + }, + "end": { + "$date": "2022-02-16T06:54:06.000Z" + }, + "events": [ + { + "uuid": "c135adad-4eb8-4b0e-80b9-8f873a025b48", + "start": { + "$date": "2022-02-16T06:36:41.000Z" + }, + "end": { + "$date": "2022-02-16T06:54:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86fa9deb-3d2f-430a-95e9-14aee890f087", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-16T06:57:56.000Z" + }, + "end": { + "$date": "2022-02-16T07:24:04.000Z" + }, + "events": [ + { + "uuid": "63b460e0-630c-43c5-898d-ad16c0278b12", + "start": { + "$date": "2022-02-16T06:57:56.000Z" + }, + "end": { + "$date": "2022-02-16T07:24:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "35d686c0-c73e-490f-8b36-a305a7ef976b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-16T09:37:34.000Z" + }, + "end": { + "$date": "2022-02-16T11:36:57.000Z" + }, + "events": [ + { + "uuid": "877bfc9b-be04-4698-a201-11dd59414202", + "start": { + "$date": "2022-02-16T09:37:34.000Z" + }, + "end": { + "$date": "2022-02-16T11:36:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e0ae03dd-ae08-4c5f-ba8e-8dd135c1e68b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-16T15:22:22.000Z" + }, + "end": { + "$date": "2022-02-16T15:42:51.000Z" + }, + "events": [ + { + "uuid": "72f32645-857e-463c-a614-2c0e7adcad72", + "start": { + "$date": "2022-02-16T15:22:22.000Z" + }, + "end": { + "$date": "2022-02-16T15:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b439f27e-d21d-4a4d-a6b1-5f4339f1ee8a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-16T15:43:48.000Z" + }, + "end": { + "$date": "2022-02-16T16:04:27.000Z" + }, + "events": [ + { + "uuid": "7f8135b8-33e6-48c2-8832-752112d6085f", + "start": { + "$date": "2022-02-16T15:43:48.000Z" + }, + "end": { + "$date": "2022-02-16T16:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdd771d9-4837-4a4d-ac0d-8e9bc88c4636", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T17:04:51.000Z" + }, + "end": { + "$date": "2022-02-16T17:17:01.000Z" + }, + "events": [ + { + "uuid": "e14e61e2-4ff0-4f22-afbe-d7b6f14ad876", + "start": { + "$date": "2022-02-16T17:04:51.000Z" + }, + "end": { + "$date": "2022-02-16T17:17:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25bc938f-5d7a-42b8-a6ff-6073640287ee", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T17:22:07.000Z" + }, + "end": { + "$date": "2022-02-16T17:43:55.000Z" + }, + "events": [ + { + "uuid": "52fecbb3-7764-4622-9d62-029496fe91b8", + "start": { + "$date": "2022-02-16T17:22:07.000Z" + }, + "end": { + "$date": "2022-02-16T17:43:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b56bf9cf-5ce0-47ae-a5d1-0bbfac38d11d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-16T17:20:32.000Z" + }, + "end": { + "$date": "2022-02-16T17:37:29.000Z" + }, + "events": [ + { + "uuid": "296cc67b-d41d-4d11-9a22-81de9648ad37", + "start": { + "$date": "2022-02-16T17:20:32.000Z" + }, + "end": { + "$date": "2022-02-16T17:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80846ba5-94da-4226-ac61-3af9fa23a777", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-16T17:28:32.000Z" + }, + "end": { + "$date": "2022-02-16T18:02:37.000Z" + }, + "events": [ + { + "uuid": "82df35b1-17ec-464a-b906-46e66c527245", + "start": { + "$date": "2022-02-16T17:28:32.000Z" + }, + "end": { + "$date": "2022-02-16T18:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bbc169fd-9c6f-4e15-a4da-d7e668fb1665", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-16T17:25:13.000Z" + }, + "end": { + "$date": "2022-02-16T18:06:44.000Z" + }, + "events": [ + { + "uuid": "71294211-5221-407b-a5a1-0b46d258d6ff", + "start": { + "$date": "2022-02-16T17:25:13.000Z" + }, + "end": { + "$date": "2022-02-16T18:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b58ae9e0-6c7a-41df-9f47-a234e2fecdb0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T17:47:05.000Z" + }, + "end": { + "$date": "2022-02-16T18:20:11.000Z" + }, + "events": [ + { + "uuid": "9838bf68-21a8-4093-a42c-085a910fe121", + "start": { + "$date": "2022-02-16T17:47:05.000Z" + }, + "end": { + "$date": "2022-02-16T18:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44c297e6-9772-4dae-9925-a31a0aa32b74", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-16T18:03:00.000Z" + }, + "end": { + "$date": "2022-02-16T18:17:29.000Z" + }, + "events": [ + { + "uuid": "3ef0d2df-ab2e-4c95-80e9-2be2127daae0", + "start": { + "$date": "2022-02-16T18:03:00.000Z" + }, + "end": { + "$date": "2022-02-16T18:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "48a4b47f-7588-4c97-8515-a740a8b546df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-16T18:19:10.000Z" + }, + "end": { + "$date": "2022-02-16T19:00:28.000Z" + }, + "events": [ + { + "uuid": "d7167d74-5e4e-40fa-890d-06914d0206e7", + "start": { + "$date": "2022-02-16T18:19:10.000Z" + }, + "end": { + "$date": "2022-02-16T19:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e96018ea-0670-47f0-8530-51309d968362", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T19:25:39.000Z" + }, + "end": { + "$date": "2022-02-16T19:57:20.000Z" + }, + "events": [ + { + "uuid": "aee360e0-f84e-477d-a51c-29e63457190e", + "start": { + "$date": "2022-02-16T19:25:39.000Z" + }, + "end": { + "$date": "2022-02-16T19:36:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa79eaa2-bb35-4e4e-889d-54740ee0dab8", + "start": { + "$date": "2022-02-16T19:36:39.000Z" + }, + "end": { + "$date": "2022-02-16T19:44:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db59582c-4a0a-40bf-9889-71358062f79b", + "start": { + "$date": "2022-02-16T19:44:39.000Z" + }, + "end": { + "$date": "2022-02-16T19:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "98f57a64-f504-4099-8fb1-064f7b3914c3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-16T19:56:56.000Z" + }, + "end": { + "$date": "2022-02-16T21:47:42.000Z" + }, + "events": [ + { + "uuid": "2c13ff87-d6c3-47c7-8210-24d6a9856f57", + "start": { + "$date": "2022-02-16T19:56:56.000Z" + }, + "end": { + "$date": "2022-02-16T21:47:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fe9ec6a-f23a-41b7-9959-ebee0f53812f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T19:58:05.000Z" + }, + "end": { + "$date": "2022-02-16T20:37:12.000Z" + }, + "events": [ + { + "uuid": "f3bbcb2e-f40c-4189-a6c3-ce82e1742971", + "start": { + "$date": "2022-02-16T19:58:05.000Z" + }, + "end": { + "$date": "2022-02-16T20:37:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "65131a7a-c466-4aa5-b950-6f6cc3cbeb73", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-16T20:37:57.000Z" + }, + "end": { + "$date": "2022-02-16T22:39:47.000Z" + }, + "events": [ + { + "uuid": "f60e5f74-6001-446a-82a0-e6f07714a5f8", + "start": { + "$date": "2022-02-16T20:37:57.000Z" + }, + "end": { + "$date": "2022-02-16T22:39:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "0459eaf3-6595-4475-aef4-920a6b283af5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-16T22:07:14.000Z" + }, + "end": { + "$date": "2022-02-16T22:35:33.000Z" + }, + "events": [ + { + "uuid": "78a8a995-b748-4c10-a656-87e2c056f68c", + "start": { + "$date": "2022-02-16T22:07:14.000Z" + }, + "end": { + "$date": "2022-02-16T22:41:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25b8e533-fc49-457a-8a59-dabdf27b00cb", + "start": { + "$date": "2022-02-16T22:41:14.000Z" + }, + "end": { + "$date": "2022-02-16T22:35:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5d0696b5-d15f-4daa-aa96-dd00858d8a1a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-16T22:02:40.000Z" + }, + "end": { + "$date": "2022-02-16T22:50:41.000Z" + }, + "events": [ + { + "uuid": "3378064f-ba41-436f-acbf-7eb9a1eb9dd6", + "start": { + "$date": "2022-02-16T22:02:40.000Z" + }, + "end": { + "$date": "2022-02-16T22:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d09891f-8d72-4fe0-a9bc-2e43e93d5735", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-16T22:18:18.000Z" + }, + "end": { + "$date": "2022-02-16T22:37:34.000Z" + }, + "events": [ + { + "uuid": "6af7ab16-14f6-4e31-b44d-b181b50e5d16", + "start": { + "$date": "2022-02-16T22:18:18.000Z" + }, + "end": { + "$date": "2022-02-16T22:37:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "84664ae6-2e2b-48f2-8109-a6d35f8fdad6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-16T22:59:57.000Z" + }, + "end": { + "$date": "2022-02-17T02:38:10.000Z" + }, + "events": [ + { + "uuid": "db4bb635-2854-4c5b-82f9-5022ac3534a4", + "start": { + "$date": "2022-02-16T22:59:57.000Z" + }, + "end": { + "$date": "2022-02-17T02:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "d4987741-a618-4031-9720-300d52e5704f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-16T23:04:07.000Z" + }, + "end": { + "$date": "2022-02-16T23:05:20.000Z" + }, + "events": [ + { + "uuid": "ef6bb507-09a4-4e8f-93d0-b1caaf443360", + "start": { + "$date": "2022-02-16T23:04:07.000Z" + }, + "end": { + "$date": "2022-02-16T23:05:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "44c5fd77-5b24-44e2-a08d-569a67f20a30", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-16T23:12:03.000Z" + }, + "end": { + "$date": "2022-02-16T23:29:54.000Z" + }, + "events": [ + { + "uuid": "3108e938-85cf-4613-89c8-f4454621c4f3", + "start": { + "$date": "2022-02-16T23:12:03.000Z" + }, + "end": { + "$date": "2022-02-16T23:29:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ae7cd424-ed5b-4fd9-8446-080f9b9bc2b4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-16T23:15:30.000Z" + }, + "end": { + "$date": "2022-02-16T23:39:36.000Z" + }, + "events": [ + { + "uuid": "c4b5b84c-c297-4afc-95af-aca8ad042280", + "start": { + "$date": "2022-02-16T23:15:30.000Z" + }, + "end": { + "$date": "2022-02-16T23:39:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "033646d7-cb2b-479a-b892-d40930412c68", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-16T23:30:12.000Z" + }, + "end": { + "$date": "2022-02-16T23:57:26.000Z" + }, + "events": [ + { + "uuid": "694757cd-104e-4abb-a811-177487e2a5cc", + "start": { + "$date": "2022-02-16T23:30:12.000Z" + }, + "end": { + "$date": "2022-02-16T23:57:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "95d409e6-d6d9-46e3-8093-03accc9f7a21", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-16T23:40:05.000Z" + }, + "end": { + "$date": "2022-02-17T02:05:38.000Z" + }, + "events": [ + { + "uuid": "9df978c0-20fb-46d9-9f69-6961f972fd2d", + "start": { + "$date": "2022-02-16T23:40:05.000Z" + }, + "end": { + "$date": "2022-02-17T02:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "172f2100-9c1c-4104-b070-0a5ca3ffb672", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-16T23:59:39.000Z" + }, + "end": { + "$date": "2022-02-17T00:02:17.000Z" + }, + "events": [ + { + "uuid": "248cfc12-48cd-4464-b13a-e7d4596bc8f1", + "start": { + "$date": "2022-02-16T23:59:39.000Z" + }, + "end": { + "$date": "2022-02-17T00:02:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "c1e38c52-b3e8-4066-b715-543148997a02", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-17T00:06:20.000Z" + }, + "end": { + "$date": "2022-02-17T00:11:28.000Z" + }, + "events": [ + { + "uuid": "53bf507f-9308-415d-914e-e47aa844ed18", + "start": { + "$date": "2022-02-17T00:06:20.000Z" + }, + "end": { + "$date": "2022-02-17T00:11:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "17676d12-6acc-4e5e-a6bc-1a3e0cc4514d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-17T00:32:04.000Z" + }, + "end": { + "$date": "2022-02-17T02:03:47.000Z" + }, + "events": [ + { + "uuid": "0ab86c13-b9e6-4b0a-b332-41957a6fb11b", + "start": { + "$date": "2022-02-17T00:32:04.000Z" + }, + "end": { + "$date": "2022-02-17T02:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "463edd40-dd21-4143-b9aa-311beeeb8699", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-17T00:33:53.000Z" + }, + "end": { + "$date": "2022-02-17T00:40:31.000Z" + }, + "events": [ + { + "uuid": "a3e68214-ba88-4802-81ec-25a1b899d795", + "start": { + "$date": "2022-02-17T00:33:53.000Z" + }, + "end": { + "$date": "2022-02-17T00:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b4ac05b1-8b81-4fe8-b24e-2f93a50b1343", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-17T00:43:15.000Z" + }, + "end": { + "$date": "2022-02-17T00:50:29.000Z" + }, + "events": [ + { + "uuid": "a8cbcf07-2687-4a23-a994-34696ef6ced5", + "start": { + "$date": "2022-02-17T00:43:15.000Z" + }, + "end": { + "$date": "2022-02-17T00:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "f263d499-331b-48d2-9ffb-93283caad32f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-17T00:56:46.000Z" + }, + "end": { + "$date": "2022-02-17T02:04:52.000Z" + }, + "events": [ + { + "uuid": "d6a0ffb9-13f7-405b-9aff-1b2f7de58d32", + "start": { + "$date": "2022-02-17T00:56:46.000Z" + }, + "end": { + "$date": "2022-02-17T02:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b511862-754f-4c78-9ea0-d71329cb8501", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-17T01:12:59.000Z" + }, + "end": { + "$date": "2022-02-17T01:30:10.000Z" + }, + "events": [ + { + "uuid": "d3486d14-eeb8-48aa-beef-670269445316", + "start": { + "$date": "2022-02-17T01:12:59.000Z" + }, + "end": { + "$date": "2022-02-17T01:30:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e232660d-16ae-49dc-a923-df8f704debdf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T01:13:21.000Z" + }, + "end": { + "$date": "2022-02-17T01:35:11.000Z" + }, + "events": [ + { + "uuid": "e3a72543-2929-4b04-8e4b-35a84eec8e66", + "start": { + "$date": "2022-02-17T01:13:21.000Z" + }, + "end": { + "$date": "2022-02-17T01:35:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57441d05-1d85-4696-bbfa-766beea2b145", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-17T01:32:50.000Z" + }, + "end": { + "$date": "2022-02-17T02:02:06.000Z" + }, + "events": [ + { + "uuid": "bd1dd0ef-890c-4265-8cc1-be2fb52b1537", + "start": { + "$date": "2022-02-17T01:32:50.000Z" + }, + "end": { + "$date": "2022-02-17T02:02:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fdbb3f59-3800-4600-8b49-5c471a42df61", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T01:46:03.000Z" + }, + "end": { + "$date": "2022-02-17T02:42:01.000Z" + }, + "events": [ + { + "uuid": "9be40ba8-6ff1-4b0e-922c-74da0ab71fb4", + "start": { + "$date": "2022-02-17T01:46:03.000Z" + }, + "end": { + "$date": "2022-02-17T02:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "67bae5c2-05c5-43bd-b2f1-3030ea3f47b5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-17T01:48:30.000Z" + }, + "end": { + "$date": "2022-02-17T02:00:13.000Z" + }, + "events": [ + { + "uuid": "4fc6cd7c-ebf4-49d4-bbd6-93d67590d1e2", + "start": { + "$date": "2022-02-17T01:48:30.000Z" + }, + "end": { + "$date": "2022-02-17T02:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e2dd8016-f38e-4240-9cfc-60de44a8caba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-17T01:51:11.000Z" + }, + "end": { + "$date": "2022-02-17T02:42:17.000Z" + }, + "events": [ + { + "uuid": "ce97f4a2-afb2-4783-a1bc-65e5f3b3da62", + "start": { + "$date": "2022-02-17T01:51:11.000Z" + }, + "end": { + "$date": "2022-02-17T02:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "77f85200-ba52-488d-8c8b-897c70a99807", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-17T02:00:46.000Z" + }, + "end": { + "$date": "2022-02-17T02:42:14.000Z" + }, + "events": [ + { + "uuid": "4c0ead7b-1208-44dd-b464-534ac5f89597", + "start": { + "$date": "2022-02-17T02:00:46.000Z" + }, + "end": { + "$date": "2022-02-17T02:42:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b437e74a-8f74-4ad9-aaea-702a1f5c8457", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-17T02:32:04.000Z" + }, + "end": { + "$date": "2022-02-17T02:40:25.000Z" + }, + "events": [ + { + "uuid": "dba883f6-082f-4da8-b294-12dbcb242221", + "start": { + "$date": "2022-02-17T02:32:04.000Z" + }, + "end": { + "$date": "2022-02-17T02:40:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "2cdbdc63-69f5-4c20-ae0e-93e52b61806d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-17T02:38:20.000Z" + }, + "end": { + "$date": "2022-02-17T04:00:42.000Z" + }, + "events": [ + { + "uuid": "5031037b-f49e-4939-9010-263b3b497bb5", + "start": { + "$date": "2022-02-17T02:38:20.000Z" + }, + "end": { + "$date": "2022-02-17T04:00:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e88150e7-81e3-483d-adfb-d3c67dd30508", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-17T02:44:44.000Z" + }, + "end": { + "$date": "2022-02-17T02:47:06.000Z" + }, + "events": [ + { + "uuid": "4360377a-83a3-42f3-bd90-a3688351f7df", + "start": { + "$date": "2022-02-17T02:44:44.000Z" + }, + "end": { + "$date": "2022-02-17T02:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "05f0ab40-1658-4733-b2d5-4ca36a9450fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-17T03:03:06.000Z" + }, + "end": { + "$date": "2022-02-17T03:13:59.000Z" + }, + "events": [ + { + "uuid": "4872211c-06c9-4a11-a56f-50b08f709fb6", + "start": { + "$date": "2022-02-17T03:03:06.000Z" + }, + "end": { + "$date": "2022-02-17T03:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "cfb87fc1-4bbb-4717-9c1e-b12499767365", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-17T03:08:37.000Z" + }, + "end": { + "$date": "2022-02-17T03:55:55.000Z" + }, + "events": [ + { + "uuid": "3f9fa361-c926-4933-8ec5-5acbb5d2beba", + "start": { + "$date": "2022-02-17T03:08:37.000Z" + }, + "end": { + "$date": "2022-02-17T03:55:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "ae31259c-2d94-4127-b88c-3e9d5137c940", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-17T03:10:01.000Z" + }, + "end": { + "$date": "2022-02-17T04:02:23.000Z" + }, + "events": [ + { + "uuid": "0659299b-98c8-4a7e-93ad-29d7ad68afed", + "start": { + "$date": "2022-02-17T03:10:01.000Z" + }, + "end": { + "$date": "2022-02-17T04:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e8ac1fe6-62ae-48a3-a8f0-8f59b7430be7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-17T03:14:11.000Z" + }, + "end": { + "$date": "2022-02-17T04:01:44.000Z" + }, + "events": [ + { + "uuid": "4b2abd35-39e9-4668-bcb6-46e00a983286", + "start": { + "$date": "2022-02-17T03:14:11.000Z" + }, + "end": { + "$date": "2022-02-17T04:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5a469729-a1ec-4b60-a7c9-153af139d331", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-02-17T03:38:20.000Z" + }, + "end": { + "$date": "2022-02-17T05:43:01.000Z" + }, + "events": [ + { + "uuid": "785b0f91-66d9-47c4-aed7-6dbde78c43c5", + "start": { + "$date": "2022-02-17T03:38:20.000Z" + }, + "end": { + "$date": "2022-02-17T05:43:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cfe14380-1f8f-4585-8268-704992fffa3e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-17T03:39:04.000Z" + }, + "end": { + "$date": "2022-02-17T05:44:38.000Z" + }, + "events": [ + { + "uuid": "d26295e7-f2ad-4ed1-9b98-ac79552360c7", + "start": { + "$date": "2022-02-17T03:39:04.000Z" + }, + "end": { + "$date": "2022-02-17T05:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "35f6bc83-cf44-4d1d-acc1-37d95e4a9037", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-17T03:39:11.000Z" + }, + "end": { + "$date": "2022-02-17T04:01:31.000Z" + }, + "events": [ + { + "uuid": "419db027-0c31-41c6-9011-11d4564f8a60", + "start": { + "$date": "2022-02-17T03:39:11.000Z" + }, + "end": { + "$date": "2022-02-17T04:01:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "f026706b-b33d-4076-8600-cb65858b6129", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-17T04:01:00.000Z" + }, + "end": { + "$date": "2022-02-17T04:10:42.000Z" + }, + "events": [ + { + "uuid": "5864f589-309b-4554-a7ae-c64ffd8fa386", + "start": { + "$date": "2022-02-17T04:01:00.000Z" + }, + "end": { + "$date": "2022-02-17T04:10:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4de9e69b-3847-469b-9daa-5fb13338ecc3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-17T04:02:06.000Z" + }, + "end": { + "$date": "2022-02-17T06:10:05.000Z" + }, + "events": [ + { + "uuid": "854f46ef-5e5d-4be6-a731-6d4859f0d3ae", + "start": { + "$date": "2022-02-17T04:02:06.000Z" + }, + "end": { + "$date": "2022-02-17T06:10:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a7a8aaf0-3973-41c1-8d85-c265e6d5aa71", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-17T04:03:28.000Z" + }, + "end": { + "$date": "2022-02-17T06:39:19.000Z" + }, + "events": [ + { + "uuid": "07d8dde1-2f37-4af6-94c4-2abedcae17cb", + "start": { + "$date": "2022-02-17T04:03:28.000Z" + }, + "end": { + "$date": "2022-02-17T06:39:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9bcf49c-4558-4ebc-9653-930c4a5c122c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-17T04:11:38.000Z" + }, + "end": { + "$date": "2022-02-17T04:48:28.000Z" + }, + "events": [ + { + "uuid": "e78860d3-ae59-4e14-8101-31bac6dacd19", + "start": { + "$date": "2022-02-17T04:11:38.000Z" + }, + "end": { + "$date": "2022-02-17T04:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "5db30e0f-184b-4a9a-8a25-b5e4fbeb2d21", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-17T04:34:26.000Z" + }, + "end": { + "$date": "2022-02-17T04:36:17.000Z" + }, + "events": [ + { + "uuid": "b374d948-2155-4935-8d08-14b176877cdc", + "start": { + "$date": "2022-02-17T04:34:26.000Z" + }, + "end": { + "$date": "2022-02-17T04:36:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6c8c22fa-6c49-4339-9c19-20668618bbe2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T04:41:19.000Z" + }, + "end": { + "$date": "2022-02-17T04:47:48.000Z" + }, + "events": [ + { + "uuid": "1df67cf5-b224-4a94-ad21-85e3457082dd", + "start": { + "$date": "2022-02-17T04:41:19.000Z" + }, + "end": { + "$date": "2022-02-17T04:47:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e712a67-069d-4e9e-a54b-e33e58bff105", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-17T04:52:29.000Z" + }, + "end": { + "$date": "2022-02-17T05:25:44.000Z" + }, + "events": [ + { + "uuid": "b91a2e60-aa32-4a73-ab74-6fa7f949cd87", + "start": { + "$date": "2022-02-17T04:52:29.000Z" + }, + "end": { + "$date": "2022-02-17T05:25:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fdfe628e-f1f8-4e70-8fb5-fc4f51e0a1c2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-17T05:04:00.000Z" + }, + "end": { + "$date": "2022-02-17T05:48:10.000Z" + }, + "events": [ + { + "uuid": "b6181b1f-f025-4d55-92b3-032f64d8b3b9", + "start": { + "$date": "2022-02-17T05:04:00.000Z" + }, + "end": { + "$date": "2022-02-17T05:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3531b1a-0fd9-4d28-9587-d1724a0d46c9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-17T05:26:14.000Z" + }, + "end": { + "$date": "2022-02-17T06:33:53.000Z" + }, + "events": [ + { + "uuid": "f179831d-115b-400d-902f-ab40fb10d501", + "start": { + "$date": "2022-02-17T05:26:14.000Z" + }, + "end": { + "$date": "2022-02-17T06:24:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89bf8bb8-14ae-4cdd-819b-48069385d334", + "start": { + "$date": "2022-02-17T06:24:14.000Z" + }, + "end": { + "$date": "2022-02-17T06:27:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d216aa01-c332-49a2-a0d6-d33644e870f2", + "start": { + "$date": "2022-02-17T06:27:14.000Z" + }, + "end": { + "$date": "2022-02-17T06:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "64860ca4-d9d6-4136-91f0-21069459711a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-17T05:48:17.000Z" + }, + "end": { + "$date": "2022-02-17T06:38:48.000Z" + }, + "events": [ + { + "uuid": "8815fb61-3e36-4e23-b2ac-f8344646f814", + "start": { + "$date": "2022-02-17T05:48:17.000Z" + }, + "end": { + "$date": "2022-02-17T06:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "932eb259-a8bd-478a-919e-92f695385bcd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-17T11:39:08.000Z" + }, + "end": { + "$date": "2022-02-17T12:26:17.000Z" + }, + "events": [ + { + "uuid": "5a46bf29-8958-4859-b922-4510d82586f7", + "start": { + "$date": "2022-02-17T11:39:08.000Z" + }, + "end": { + "$date": "2022-02-17T12:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2c6c338-d39e-4f3f-a575-16741d2cd69e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-17T15:31:27.000Z" + }, + "end": { + "$date": "2022-02-17T16:10:31.000Z" + }, + "events": [ + { + "uuid": "e4b21ab7-3f20-4a2f-8795-7808b848cd88", + "start": { + "$date": "2022-02-17T15:31:27.000Z" + }, + "end": { + "$date": "2022-02-17T16:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7c9581a-6fe7-4331-9680-e75ae4efe555", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T15:31:58.000Z" + }, + "end": { + "$date": "2022-02-17T15:51:18.000Z" + }, + "events": [ + { + "uuid": "6b1ab8b8-7e5f-41d4-97cc-b9cf01c75a22", + "start": { + "$date": "2022-02-17T15:31:58.000Z" + }, + "end": { + "$date": "2022-02-17T15:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "611dba93-38b1-4fc8-baee-7418f2e7a2fa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T15:52:09.000Z" + }, + "end": { + "$date": "2022-02-17T16:12:19.000Z" + }, + "events": [ + { + "uuid": "7c81fbe8-e77d-423d-b14c-5ee10a8b1c11", + "start": { + "$date": "2022-02-17T15:52:09.000Z" + }, + "end": { + "$date": "2022-02-17T16:12:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "855a7447-f205-4ee6-ad6f-d7bc46e519e2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-17T16:22:40.000Z" + }, + "end": { + "$date": "2022-02-17T16:40:26.000Z" + }, + "events": [ + { + "uuid": "766b4d15-d9d9-41c5-b997-ee6d8ae097e6", + "start": { + "$date": "2022-02-17T16:22:40.000Z" + }, + "end": { + "$date": "2022-02-17T16:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "22635bd4-9f4a-4cc3-8cbe-9bed6195a164", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-17T17:08:31.000Z" + }, + "end": { + "$date": "2022-02-17T19:40:44.000Z" + }, + "events": [ + { + "uuid": "cd7e561b-31f6-4013-9f45-cdc868bbba7b", + "start": { + "$date": "2022-02-17T17:08:31.000Z" + }, + "end": { + "$date": "2022-02-17T19:40:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "35a77c9e-64b9-41d7-8a77-c577e2f5f0a8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-17T17:21:42.000Z" + }, + "end": { + "$date": "2022-02-17T17:40:03.000Z" + }, + "events": [ + { + "uuid": "5cd50ae8-c2dd-472d-806a-5e52ef5ff882", + "start": { + "$date": "2022-02-17T17:21:42.000Z" + }, + "end": { + "$date": "2022-02-17T17:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "17ee0804-eef9-4493-9c10-eadb7227aa40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-17T17:34:39.000Z" + }, + "end": { + "$date": "2022-02-17T18:32:04.000Z" + }, + "events": [ + { + "uuid": "7b0e4ac1-3563-4a86-a039-d00b911dd85e", + "start": { + "$date": "2022-02-17T17:34:39.000Z" + }, + "end": { + "$date": "2022-02-17T18:32:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3454490f-78b6-438e-a1e4-e08a2fef6ec5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-17T18:07:22.000Z" + }, + "end": { + "$date": "2022-02-17T18:35:43.000Z" + }, + "events": [ + { + "uuid": "08cb8957-86e7-41ad-801a-8e7c81426fa2", + "start": { + "$date": "2022-02-17T18:07:22.000Z" + }, + "end": { + "$date": "2022-02-17T18:35:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfe7afcd-c6f3-478e-aae3-89251063fdbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T18:28:17.000Z" + }, + "end": { + "$date": "2022-02-17T18:43:21.000Z" + }, + "events": [ + { + "uuid": "190f3fc1-ebf5-4c33-b857-dce836b6715d", + "start": { + "$date": "2022-02-17T18:28:17.000Z" + }, + "end": { + "$date": "2022-02-17T18:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "56ee5e19-8599-433e-bed1-c71ea37d5c82", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-17T22:13:05.000Z" + }, + "end": { + "$date": "2022-02-17T22:18:16.000Z" + }, + "events": [ + { + "uuid": "5a654b50-db49-43f4-9903-3b58345d6ffe", + "start": { + "$date": "2022-02-17T22:13:05.000Z" + }, + "end": { + "$date": "2022-02-17T22:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "2f5df497-87a0-4ba1-b126-b2921bbb61d4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T21:02:51.000Z" + }, + "end": { + "$date": "2022-02-17T21:04:07.000Z" + }, + "events": [ + { + "uuid": "09bf4661-e616-44de-b6a7-6df85a8da105", + "start": { + "$date": "2022-02-17T21:02:51.000Z" + }, + "end": { + "$date": "2022-02-17T21:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "41bbc09c-e8f3-4253-ae0c-cb8c89dece7a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-17T21:04:17.000Z" + }, + "end": { + "$date": "2022-02-17T21:31:21.000Z" + }, + "events": [ + { + "uuid": "172e0660-3d08-49e8-bee8-2da4e4fed638", + "start": { + "$date": "2022-02-17T21:04:17.000Z" + }, + "end": { + "$date": "2022-02-17T21:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f0225bc5-8957-422a-941b-cbfa7bc9bd34", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-17T22:03:32.000Z" + }, + "end": { + "$date": "2022-02-18T00:01:37.000Z" + }, + "events": [ + { + "uuid": "bf357389-cd46-4b50-8fb9-086666e4a599", + "start": { + "$date": "2022-02-17T22:03:32.000Z" + }, + "end": { + "$date": "2022-02-18T00:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c26be422-b5bd-4347-a8c2-358565f2b408", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-17T22:18:26.000Z" + }, + "end": { + "$date": "2022-02-17T23:55:14.000Z" + }, + "events": [ + { + "uuid": "b4029147-8c8e-48d9-8257-289fc3549aa3", + "start": { + "$date": "2022-02-17T22:18:26.000Z" + }, + "end": { + "$date": "2022-02-17T23:55:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7c04edd6-982a-4189-9781-5aa80de2d942", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-17T22:58:38.000Z" + }, + "end": { + "$date": "2022-02-17T23:07:40.000Z" + }, + "events": [ + { + "uuid": "2f28ba5d-7e38-47c4-a862-a6016bf6c88d", + "start": { + "$date": "2022-02-17T22:58:38.000Z" + }, + "end": { + "$date": "2022-02-17T23:07:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1f54164d-e498-42b0-a6b3-3d198ed67f12", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T00:02:22.000Z" + }, + "end": { + "$date": "2022-02-18T00:27:43.000Z" + }, + "events": [ + { + "uuid": "bd475130-f315-4ae4-a0f8-d0f5e2151f8c", + "start": { + "$date": "2022-02-18T00:02:22.000Z" + }, + "end": { + "$date": "2022-02-18T00:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "52a8a991-34f1-4d41-8ea1-e4272af3f9c5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T00:29:53.000Z" + }, + "end": { + "$date": "2022-02-18T05:08:09.000Z" + }, + "events": [ + { + "uuid": "f169e38c-dfeb-4343-aa58-5fe41fd31313", + "start": { + "$date": "2022-02-18T00:29:53.000Z" + }, + "end": { + "$date": "2022-02-18T02:45:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bba0454f-84a3-4e76-a081-742585eb8fa2", + "start": { + "$date": "2022-02-18T02:45:53.000Z" + }, + "end": { + "$date": "2022-02-18T03:37:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5228a5c9-6134-429e-b37c-b83877cc0ac7", + "start": { + "$date": "2022-02-18T03:37:53.000Z" + }, + "end": { + "$date": "2022-02-18T05:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ce1bb00a-abfb-4652-bfff-ab8679e29b9d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-18T00:43:30.000Z" + }, + "end": { + "$date": "2022-02-18T00:46:55.000Z" + }, + "events": [ + { + "uuid": "c672012e-b88c-48bc-ad79-e259723534b0", + "start": { + "$date": "2022-02-18T00:43:30.000Z" + }, + "end": { + "$date": "2022-02-18T00:46:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ce9d7220-d82c-4d51-9ebe-1a0ea2c6aab3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-18T00:46:31.000Z" + }, + "end": { + "$date": "2022-02-18T01:32:43.000Z" + }, + "events": [ + { + "uuid": "99ce2a31-8ad4-48dc-b8d4-bafe99694798", + "start": { + "$date": "2022-02-18T00:46:31.000Z" + }, + "end": { + "$date": "2022-02-18T01:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1e14c5b2-654a-4f0e-b881-a9ca1af82fd7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-18T01:02:36.000Z" + }, + "end": { + "$date": "2022-02-18T01:05:57.000Z" + }, + "events": [ + { + "uuid": "562c7ad5-8120-4d1f-9228-8fef4a29a0f6", + "start": { + "$date": "2022-02-18T01:02:36.000Z" + }, + "end": { + "$date": "2022-02-18T01:05:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "0faa5f16-ea36-44ef-9e51-a9c93289c8a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-18T01:44:13.000Z" + }, + "end": { + "$date": "2022-02-18T02:34:11.000Z" + }, + "events": [ + { + "uuid": "31d84a1f-9816-403e-b074-b0c4df0662cb", + "start": { + "$date": "2022-02-18T01:44:13.000Z" + }, + "end": { + "$date": "2022-02-18T02:34:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ffb532bc-c559-4c1c-a9fb-e1f462e82405", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-18T02:01:08.000Z" + }, + "end": { + "$date": "2022-02-18T03:46:21.000Z" + }, + "events": [ + { + "uuid": "6535601e-1883-4f65-a721-bab7d971a8ac", + "start": { + "$date": "2022-02-18T02:01:08.000Z" + }, + "end": { + "$date": "2022-02-18T03:46:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "73ea8893-b5c2-46ff-9f34-9ab707a3e9da", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-18T02:29:53.000Z" + }, + "end": { + "$date": "2022-02-18T07:38:20.000Z" + }, + "events": [ + { + "uuid": "1d226d69-b45d-4f0b-b038-25fcb8c27bfe", + "start": { + "$date": "2022-02-18T02:29:53.000Z" + }, + "end": { + "$date": "2022-02-18T07:38:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "8e1c34e3-00fa-4f00-9000-3995b7d71d83", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-18T02:31:52.000Z" + }, + "end": { + "$date": "2022-02-18T02:57:12.000Z" + }, + "events": [ + { + "uuid": "3d3f5fda-fbe0-4fc1-b304-202bf42d41a9", + "start": { + "$date": "2022-02-18T02:31:52.000Z" + }, + "end": { + "$date": "2022-02-18T02:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", + "uuid": "5e7771d7-b8c0-4115-8bd6-5e1b23b14332", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-18T02:35:51.000Z" + }, + "end": { + "$date": "2022-02-18T02:46:17.000Z" + }, + "events": [ + { + "uuid": "1bf1da39-18ee-4d45-b416-28bd0f19d21e", + "start": { + "$date": "2022-02-18T02:35:51.000Z" + }, + "end": { + "$date": "2022-02-18T02:46:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "915e38d9-52c0-4876-a36a-c79fe30e9e39", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-18T03:33:00.000Z" + }, + "end": { + "$date": "2022-02-18T03:55:51.000Z" + }, + "events": [ + { + "uuid": "78cf76a3-7eaf-4a7e-ad01-e0ebbe66d564", + "start": { + "$date": "2022-02-18T03:33:00.000Z" + }, + "end": { + "$date": "2022-02-18T03:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "4dd4e8ce-46c7-4acd-a8cb-05e75aa1c7a8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-18T04:00:32.000Z" + }, + "end": { + "$date": "2022-02-18T05:09:21.000Z" + }, + "events": [ + { + "uuid": "fab2899a-6eb6-4f91-9daa-a61101d34c47", + "start": { + "$date": "2022-02-18T04:00:32.000Z" + }, + "end": { + "$date": "2022-02-18T05:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "12d6e7cb-0273-4b24-8a02-225a07467e6e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-18T04:56:28.000Z" + }, + "end": { + "$date": "2022-02-18T07:06:13.000Z" + }, + "events": [ + { + "uuid": "794b9008-d381-4057-8a9c-68337f49339a", + "start": { + "$date": "2022-02-18T04:56:28.000Z" + }, + "end": { + "$date": "2022-02-18T07:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "6cfed215-83ff-47f5-8dbd-e375d25e6c9d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-18T05:10:21.000Z" + }, + "end": { + "$date": "2022-02-18T06:11:49.000Z" + }, + "events": [ + { + "uuid": "8f8e7ebc-4fd3-4fce-93b1-ef36a4946291", + "start": { + "$date": "2022-02-18T05:10:21.000Z" + }, + "end": { + "$date": "2022-02-18T06:11:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b00f7047-82f7-4b7e-9635-8d6b8c0b8e37", + "uuid": "fa9b9c16-7590-4fb0-8381-d500724e7721", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T05:39:27.000Z" + }, + "end": { + "$date": "2022-02-18T06:04:38.000Z" + }, + "events": [ + { + "uuid": "e271c76a-faaa-463a-bbaf-a9092539130e", + "start": { + "$date": "2022-02-18T05:39:27.000Z" + }, + "end": { + "$date": "2022-02-18T06:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5b245d34-6202-4e5a-9131-85379be1a205", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-18T05:51:05.000Z" + }, + "end": { + "$date": "2022-02-18T06:07:33.000Z" + }, + "events": [ + { + "uuid": "b46ece53-c0ff-4be6-baea-0732c7030936", + "start": { + "$date": "2022-02-18T05:51:05.000Z" + }, + "end": { + "$date": "2022-02-18T06:07:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "5626d103-3bdd-47a9-9358-1552e7f06937", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-18T06:08:19.000Z" + }, + "end": { + "$date": "2022-02-18T08:05:36.000Z" + }, + "events": [ + { + "uuid": "0faa9e66-7d95-4fed-8f76-a3831ca4112c", + "start": { + "$date": "2022-02-18T06:08:19.000Z" + }, + "end": { + "$date": "2022-02-18T08:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3bc47b54-5713-499b-87a6-622b3ab6aa19", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-18T06:12:09.000Z" + }, + "end": { + "$date": "2022-02-18T08:02:56.000Z" + }, + "events": [ + { + "uuid": "abac1f50-384f-4ce2-a7b6-3adfad73e1f5", + "start": { + "$date": "2022-02-18T06:12:09.000Z" + }, + "end": { + "$date": "2022-02-18T08:02:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "6c499cf1-06f7-4ff4-a3f9-f2f3c6697f0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T06:19:14.000Z" + }, + "end": { + "$date": "2022-02-18T08:05:11.000Z" + }, + "events": [ + { + "uuid": "eee3cdfd-c865-41db-a624-ea84a997acc8", + "start": { + "$date": "2022-02-18T06:19:14.000Z" + }, + "end": { + "$date": "2022-02-18T08:05:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "87e03efd-25a0-406f-8283-86ea39b0575d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-18T07:51:37.000Z" + }, + "end": { + "$date": "2022-02-18T10:57:24.000Z" + }, + "events": [ + { + "uuid": "84a8e6e8-f8ec-46f6-9f22-010e3da1a5fc", + "start": { + "$date": "2022-02-18T07:51:37.000Z" + }, + "end": { + "$date": "2022-02-18T10:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7034c9cb-e363-45fb-8f1d-c5f396c57c21", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T14:54:05.000Z" + }, + "end": { + "$date": "2022-02-18T15:31:07.000Z" + }, + "events": [ + { + "uuid": "d74242e6-44a1-414d-b64e-f09bf76dae69", + "start": { + "$date": "2022-02-18T14:54:05.000Z" + }, + "end": { + "$date": "2022-02-18T15:31:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "df4a50bb-2c0b-4722-a477-def7c59fa6fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T15:31:22.000Z" + }, + "end": { + "$date": "2022-02-18T16:01:46.000Z" + }, + "events": [ + { + "uuid": "4326c0d6-2e7e-455b-8d42-786bf5c35361", + "start": { + "$date": "2022-02-18T15:31:22.000Z" + }, + "end": { + "$date": "2022-02-18T16:01:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "10d83c8e-10e0-478b-8624-5549dadced61", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T16:51:20.000Z" + }, + "end": { + "$date": "2022-02-18T16:53:05.000Z" + }, + "events": [ + { + "uuid": "85105003-9ac2-404e-b73e-6753dd965246", + "start": { + "$date": "2022-02-18T16:51:20.000Z" + }, + "end": { + "$date": "2022-02-18T16:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "3e5f1ecf-2cdd-4c21-9d5b-4af0a9b3046e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-18T16:59:13.000Z" + }, + "end": { + "$date": "2022-02-18T17:16:25.000Z" + }, + "events": [ + { + "uuid": "d0a3034a-f1c6-4990-8c61-ba3227cd2e38", + "start": { + "$date": "2022-02-18T16:59:13.000Z" + }, + "end": { + "$date": "2022-02-18T17:16:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "944d25fd-0964-4b8e-b187-21508d41bbe5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-18T20:36:45.000Z" + }, + "end": { + "$date": "2022-02-18T22:28:33.000Z" + }, + "events": [ + { + "uuid": "ea24dd57-01f7-41d4-867e-bb5ebc995849", + "start": { + "$date": "2022-02-18T20:36:45.000Z" + }, + "end": { + "$date": "2022-02-18T22:28:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0386a94-b217-4ee8-bbd4-0e2198474efe", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-18T21:36:09.000Z" + }, + "end": { + "$date": "2022-02-18T21:36:22.000Z" + }, + "events": [ + { + "uuid": "014ab35a-cbd0-40a4-a258-039321581639", + "start": { + "$date": "2022-02-18T21:36:09.000Z" + }, + "end": { + "$date": "2022-02-18T21:36:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "cb623cca-4bfc-4e5d-81b3-2036bd586f73", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-18T21:12:35.000Z" + }, + "end": { + "$date": "2022-02-18T22:31:10.000Z" + }, + "events": [ + { + "uuid": "9af6ec6a-7750-4f5b-9535-277e05027907", + "start": { + "$date": "2022-02-18T21:12:35.000Z" + }, + "end": { + "$date": "2022-02-18T22:31:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f04a6471-d584-4fd7-bf67-652be7e7ee3b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-18T21:37:04.000Z" + }, + "end": { + "$date": "2022-02-18T22:09:43.000Z" + }, + "events": [ + { + "uuid": "e0bc6fd4-605e-4d40-832a-ce97033d164e", + "start": { + "$date": "2022-02-18T21:37:04.000Z" + }, + "end": { + "$date": "2022-02-18T22:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d3de2ef-e81a-493f-86ee-59b6ee0760ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-18T22:10:37.000Z" + }, + "end": { + "$date": "2022-02-18T22:47:03.000Z" + }, + "events": [ + { + "uuid": "1df91d5f-d3b8-4300-bb1d-2fcc49a091ac", + "start": { + "$date": "2022-02-18T22:10:37.000Z" + }, + "end": { + "$date": "2022-02-18T22:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "b7f459c9-dfcd-4f22-b7d3-b3694d44c9db", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-18T22:33:27.000Z" + }, + "end": { + "$date": "2022-02-18T23:46:42.000Z" + }, + "events": [ + { + "uuid": "4f1e0b3b-ec2c-4406-9cdd-881208f77fbb", + "start": { + "$date": "2022-02-18T22:33:27.000Z" + }, + "end": { + "$date": "2022-02-18T23:46:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d95021b4-d98e-4cd4-aea5-9d03409f2c50", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-18T23:26:51.000Z" + }, + "end": { + "$date": "2022-02-19T00:18:10.000Z" + }, + "events": [ + { + "uuid": "93b239b9-3637-497e-ae80-93726b97dbea", + "start": { + "$date": "2022-02-18T23:26:51.000Z" + }, + "end": { + "$date": "2022-02-19T00:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e5b5aa97-cd1d-4b00-b55a-87445db43a2b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-18T23:33:48.000Z" + }, + "end": { + "$date": "2022-02-19T00:19:27.000Z" + }, + "events": [ + { + "uuid": "9848a4be-1d71-4f9a-9a53-be01f1e22d8b", + "start": { + "$date": "2022-02-18T23:33:48.000Z" + }, + "end": { + "$date": "2022-02-19T00:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "0528236c-e0ad-432c-bf39-65692b2a61c6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-18T23:56:26.000Z" + }, + "end": { + "$date": "2022-02-19T01:26:34.000Z" + }, + "events": [ + { + "uuid": "6917da1c-040b-4ed6-95c7-97f2b0a868a8", + "start": { + "$date": "2022-02-18T23:56:26.000Z" + }, + "end": { + "$date": "2022-02-19T01:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8aed4261-fb67-42d1-83c9-34ff930908d7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-19T00:20:23.000Z" + }, + "end": { + "$date": "2022-02-19T00:51:00.000Z" + }, + "events": [ + { + "uuid": "6139ff7b-c2a8-4ef8-bb51-ef45cb2e2aa9", + "start": { + "$date": "2022-02-19T00:20:23.000Z" + }, + "end": { + "$date": "2022-02-19T00:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "bd977f4c-eda5-4153-9f9b-1a6e8ffb772f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-19T00:52:11.000Z" + }, + "end": { + "$date": "2022-02-19T01:49:32.000Z" + }, + "events": [ + { + "uuid": "c1fee7ca-f769-45fc-bea9-99704369b101", + "start": { + "$date": "2022-02-19T00:52:11.000Z" + }, + "end": { + "$date": "2022-02-19T01:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8172f5c6-56c4-49e7-9dca-10d286e9ebd4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-19T01:08:04.000Z" + }, + "end": { + "$date": "2022-02-19T01:46:54.000Z" + }, + "events": [ + { + "uuid": "839fb98b-7f99-4606-b50a-3a8ee2fed99d", + "start": { + "$date": "2022-02-19T01:08:04.000Z" + }, + "end": { + "$date": "2022-02-19T01:46:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "62a4631f-760b-440f-8c98-32a8d7e93acd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-19T01:19:27.000Z" + }, + "end": { + "$date": "2022-02-19T03:12:02.000Z" + }, + "events": [ + { + "uuid": "43112c25-8cc2-42ed-8976-566714302249", + "start": { + "$date": "2022-02-19T01:19:27.000Z" + }, + "end": { + "$date": "2022-02-19T02:34:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "06502933-9f5f-4ce8-bda7-bbbb2427383e", + "start": { + "$date": "2022-02-19T02:34:27.000Z" + }, + "end": { + "$date": "2022-02-19T02:36:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d5666af-04f3-4dbb-9efd-b52030119d92", + "start": { + "$date": "2022-02-19T02:36:27.000Z" + }, + "end": { + "$date": "2022-02-19T02:52:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9935aa8-e0bb-4255-9d86-abc0b5fe1f63", + "start": { + "$date": "2022-02-19T02:52:27.000Z" + }, + "end": { + "$date": "2022-02-19T02:57:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "359ab17e-8c03-46de-9bf8-3065b226355f", + "start": { + "$date": "2022-02-19T02:57:27.000Z" + }, + "end": { + "$date": "2022-02-19T03:07:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "857a4e99-168f-46eb-a6c6-3243feab6129", + "start": { + "$date": "2022-02-19T03:07:27.000Z" + }, + "end": { + "$date": "2022-02-19T03:12:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2ff7fe75-81c5-4355-901c-71517154cb92", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-19T03:23:14.000Z" + }, + "end": { + "$date": "2022-02-19T08:36:47.000Z" + }, + "events": [ + { + "uuid": "092abe66-ce4b-4727-ae7b-99d1427a11ba", + "start": { + "$date": "2022-02-19T03:23:14.000Z" + }, + "end": { + "$date": "2022-02-19T08:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0bfbcb3b-9327-45f5-b445-3aefaa60e471", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-19T03:24:11.000Z" + }, + "end": { + "$date": "2022-02-19T03:42:19.000Z" + }, + "events": [ + { + "uuid": "2a64de77-6a2d-49b6-8d55-ad7f8a8f2207", + "start": { + "$date": "2022-02-19T03:24:11.000Z" + }, + "end": { + "$date": "2022-02-19T03:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0d998b5d-bea9-40e7-9dbd-37411249b1a7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-19T03:32:00.000Z" + }, + "end": { + "$date": "2022-02-19T06:09:32.000Z" + }, + "events": [ + { + "uuid": "97297e1d-3435-4b2a-84a4-0275999432f4", + "start": { + "$date": "2022-02-19T03:32:00.000Z" + }, + "end": { + "$date": "2022-02-19T06:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7d826c88-3f6b-4bfb-a4c3-f8f4901c1a79", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-19T03:55:10.000Z" + }, + "end": { + "$date": "2022-02-19T05:25:51.000Z" + }, + "events": [ + { + "uuid": "ab341bf0-5c11-4080-af62-183ce71f15e1", + "start": { + "$date": "2022-02-19T03:55:10.000Z" + }, + "end": { + "$date": "2022-02-19T05:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfeffc19-420c-47fa-a56f-4e4b8fec8b97", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T04:48:00.000Z" + }, + "end": { + "$date": "2022-02-19T04:58:20.000Z" + }, + "events": [ + { + "uuid": "62a5e6a1-6464-40f3-ac2e-9144f8534be2", + "start": { + "$date": "2022-02-19T04:48:00.000Z" + }, + "end": { + "$date": "2022-02-19T04:58:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76d05838-8385-4623-8d6c-5ef24665c089", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T05:00:41.000Z" + }, + "end": { + "$date": "2022-02-19T05:18:06.000Z" + }, + "events": [ + { + "uuid": "a2fae1a9-f5e7-469b-8095-a2c5c775e577", + "start": { + "$date": "2022-02-19T05:00:41.000Z" + }, + "end": { + "$date": "2022-02-19T05:18:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "7ce46f17-4ea0-496f-81de-2ec4ffcd2c1a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-19T05:13:39.000Z" + }, + "end": { + "$date": "2022-02-19T08:42:29.000Z" + }, + "events": [ + { + "uuid": "ee48ab08-e991-4428-9e69-7e2718e4392f", + "start": { + "$date": "2022-02-19T05:13:39.000Z" + }, + "end": { + "$date": "2022-02-19T08:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "a4e619a2-fd57-44d0-9a8a-8a54fe08e71a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T05:32:18.000Z" + }, + "end": { + "$date": "2022-02-19T06:00:58.000Z" + }, + "events": [ + { + "uuid": "4b208687-7449-4407-81b3-cae3fc6b0811", + "start": { + "$date": "2022-02-19T05:32:18.000Z" + }, + "end": { + "$date": "2022-02-19T06:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "c3d89842-45e0-4e1b-83af-29a95eeb3eff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-19T06:01:59.000Z" + }, + "end": { + "$date": "2022-02-19T08:07:20.000Z" + }, + "events": [ + { + "uuid": "2e9f8bd2-34cb-4554-aa2d-64a942397fe8", + "start": { + "$date": "2022-02-19T06:01:59.000Z" + }, + "end": { + "$date": "2022-02-19T08:07:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c54a0270-4555-4027-8ba1-b08822604a86", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-19T06:09:37.000Z" + }, + "end": { + "$date": "2022-02-19T08:35:32.000Z" + }, + "events": [ + { + "uuid": "1b0d0138-d43c-4ce2-aafe-691b49279305", + "start": { + "$date": "2022-02-19T06:09:37.000Z" + }, + "end": { + "$date": "2022-02-19T07:16:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e8f9d0a9-78c7-45f0-9193-940aa6e3d2b9", + "start": { + "$date": "2022-02-19T07:16:37.000Z" + }, + "end": { + "$date": "2022-02-19T08:17:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4bc451da-e6c4-420d-9a83-c71e0f4d3af8", + "start": { + "$date": "2022-02-19T08:17:37.000Z" + }, + "end": { + "$date": "2022-02-19T08:27:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1487d104-1975-4608-b112-77e0402a0994", + "start": { + "$date": "2022-02-19T08:27:37.000Z" + }, + "end": { + "$date": "2022-02-19T08:35:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "a543500b-57ad-47cc-94db-cca73627f01e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-19T09:02:11.000Z" + }, + "end": { + "$date": "2022-02-19T12:15:55.000Z" + }, + "events": [ + { + "uuid": "9709333f-508b-482c-b1ad-01ab8ac78c67", + "start": { + "$date": "2022-02-19T09:02:11.000Z" + }, + "end": { + "$date": "2022-02-19T12:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e56f6a9a-b03d-4b60-ac86-8c342b4d578a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T17:00:31.000Z" + }, + "end": { + "$date": "2022-02-19T17:11:31.000Z" + }, + "events": [ + { + "uuid": "e9195ac1-8599-472f-ac40-b47539d0eae9", + "start": { + "$date": "2022-02-19T17:00:31.000Z" + }, + "end": { + "$date": "2022-02-19T17:11:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "331b0acb-b874-4aab-b240-0aba8e86e179", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T17:13:37.000Z" + }, + "end": { + "$date": "2022-02-19T17:30:07.000Z" + }, + "events": [ + { + "uuid": "2fe0762a-3d82-4af6-b9fc-92e5fdf7b272", + "start": { + "$date": "2022-02-19T17:13:37.000Z" + }, + "end": { + "$date": "2022-02-19T17:30:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddd6a9fd-8402-4064-b6b5-9892f826b5f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T17:32:08.000Z" + }, + "end": { + "$date": "2022-02-19T17:46:12.000Z" + }, + "events": [ + { + "uuid": "8a75ab01-a511-4d7e-a765-51fbe1cc1579", + "start": { + "$date": "2022-02-19T17:32:08.000Z" + }, + "end": { + "$date": "2022-02-19T17:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53a11346-ffab-42fc-858f-04e1b894a588", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-19T17:47:14.000Z" + }, + "end": { + "$date": "2022-02-19T18:00:43.000Z" + }, + "events": [ + { + "uuid": "0cb5d4cb-5e34-431e-ae0b-3bfbfaad4f18", + "start": { + "$date": "2022-02-19T17:47:14.000Z" + }, + "end": { + "$date": "2022-02-19T18:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3dba916f-b54c-4308-9dfb-d59d77298282", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-19T20:03:59.000Z" + }, + "end": { + "$date": "2022-02-19T21:36:12.000Z" + }, + "events": [ + { + "uuid": "c6c9e6e0-4558-45e7-912f-926d30af6a07", + "start": { + "$date": "2022-02-19T20:03:59.000Z" + }, + "end": { + "$date": "2022-02-19T21:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ef4e5c99-5e38-405b-8c56-a1b7694f31a8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-19T20:23:19.000Z" + }, + "end": { + "$date": "2022-02-19T20:42:26.000Z" + }, + "events": [ + { + "uuid": "d3fe8156-f130-473d-8685-efe024994226", + "start": { + "$date": "2022-02-19T20:23:19.000Z" + }, + "end": { + "$date": "2022-02-19T20:42:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "708a0cb9-3497-4cd3-bd38-4876557023a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-19T21:26:07.000Z" + }, + "end": { + "$date": "2022-02-19T23:23:11.000Z" + }, + "events": [ + { + "uuid": "f3c2f0c4-4fb6-4de6-a612-729548fa83a7", + "start": { + "$date": "2022-02-19T21:26:07.000Z" + }, + "end": { + "$date": "2022-02-19T23:23:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23421543-ddc3-4d74-b24c-da834425efaa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-19T21:52:15.000Z" + }, + "end": { + "$date": "2022-02-19T22:25:08.000Z" + }, + "events": [ + { + "uuid": "ae4698d1-668b-401e-bf18-2a881a74ed50", + "start": { + "$date": "2022-02-19T21:52:15.000Z" + }, + "end": { + "$date": "2022-02-19T22:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "66b65b4c-2837-44ce-b22a-f1029e94f597", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-19T22:06:24.000Z" + }, + "end": { + "$date": "2022-02-19T23:11:50.000Z" + }, + "events": [ + { + "uuid": "df63e9f4-c899-489d-a75b-32ae42d96653", + "start": { + "$date": "2022-02-19T22:06:24.000Z" + }, + "end": { + "$date": "2022-02-19T23:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d9d52e6c-2849-4ca2-925e-41565607b773", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-19T22:28:53.000Z" + }, + "end": { + "$date": "2022-02-19T22:55:36.000Z" + }, + "events": [ + { + "uuid": "4786990f-f45f-4c9d-bb08-b9f39e6bf7f7", + "start": { + "$date": "2022-02-19T22:28:53.000Z" + }, + "end": { + "$date": "2022-02-19T22:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6c511f9-a01f-4545-96fd-c4a937ba6603", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T00:04:30.000Z" + }, + "end": { + "$date": "2022-02-20T00:04:59.000Z" + }, + "events": [ + { + "uuid": "2a737661-6224-4872-978b-f7a064dcc01c", + "start": { + "$date": "2022-02-20T00:04:30.000Z" + }, + "end": { + "$date": "2022-02-20T00:04:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "a438494e-eaa0-4bc0-bfef-f5ce46ebf108", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-19T23:12:35.000Z" + }, + "end": { + "$date": "2022-02-19T23:39:00.000Z" + }, + "events": [ + { + "uuid": "6b3d6db1-5e9a-49c3-9263-4a45c18fd24b", + "start": { + "$date": "2022-02-19T23:12:35.000Z" + }, + "end": { + "$date": "2022-02-19T23:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48a85bab-e51a-48b5-ac88-60068c50e2f8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T00:37:41.000Z" + }, + "end": { + "$date": "2022-02-20T00:38:08.000Z" + }, + "events": [ + { + "uuid": "6e8cc185-3f9b-484a-8260-da775a5dd979", + "start": { + "$date": "2022-02-20T00:37:41.000Z" + }, + "end": { + "$date": "2022-02-20T00:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "cfa403dc-5da9-446c-a8e8-675caba94a9c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T00:40:38.000Z" + }, + "end": { + "$date": "2022-02-20T01:08:01.000Z" + }, + "events": [ + { + "uuid": "4401e844-bd36-432e-bef7-39a6da783eae", + "start": { + "$date": "2022-02-20T00:40:38.000Z" + }, + "end": { + "$date": "2022-02-20T01:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "2b425c99-6ff6-4a15-9c16-24f9397cd8dc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-20T00:45:38.000Z" + }, + "end": { + "$date": "2022-02-20T03:54:36.000Z" + }, + "events": [ + { + "uuid": "699e8e57-2a59-47c7-94f9-8c195ca90273", + "start": { + "$date": "2022-02-20T00:45:38.000Z" + }, + "end": { + "$date": "2022-02-20T03:54:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "4c61e20d-c478-4a02-af8f-cf70b7937683", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-20T01:02:44.000Z" + }, + "end": { + "$date": "2022-02-20T02:12:11.000Z" + }, + "events": [ + { + "uuid": "799a86f8-ab58-43c0-994f-d74f31237659", + "start": { + "$date": "2022-02-20T01:02:44.000Z" + }, + "end": { + "$date": "2022-02-20T02:12:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "f886f81d-ef5d-4822-8d39-a2dad9cf5f59", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-20T02:10:22.000Z" + }, + "end": { + "$date": "2022-02-20T03:46:24.000Z" + }, + "events": [ + { + "uuid": "14944ce9-cfe1-45e6-992e-9c7b0c7522d7", + "start": { + "$date": "2022-02-20T02:10:22.000Z" + }, + "end": { + "$date": "2022-02-20T03:46:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4f7e4be-235a-4d2f-94e3-172ca7df5e10", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T02:15:50.000Z" + }, + "end": { + "$date": "2022-02-20T03:29:34.000Z" + }, + "events": [ + { + "uuid": "b9310097-7266-4291-99b9-fcb97ec94c08", + "start": { + "$date": "2022-02-20T02:15:50.000Z" + }, + "end": { + "$date": "2022-02-20T02:34:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "291ee8a9-01e8-4ff0-837a-9d099482eb15", + "start": { + "$date": "2022-02-20T02:34:50.000Z" + }, + "end": { + "$date": "2022-02-20T02:38:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5d0b6bcf-2f94-466d-a0e3-f07d7007fdf9", + "start": { + "$date": "2022-02-20T02:38:50.000Z" + }, + "end": { + "$date": "2022-02-20T03:29:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6989c852-5cd2-4dfe-8cac-40f42d10b986", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-20T02:34:46.000Z" + }, + "end": { + "$date": "2022-02-20T03:09:02.000Z" + }, + "events": [ + { + "uuid": "906e093d-78f5-4bd0-9f1e-b16b21c904a5", + "start": { + "$date": "2022-02-20T02:34:46.000Z" + }, + "end": { + "$date": "2022-02-20T03:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "98485e72-5b57-4a66-b044-3a4a65765a14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-20T02:33:03.000Z" + }, + "end": { + "$date": "2022-02-20T03:49:30.000Z" + }, + "events": [ + { + "uuid": "b888e09c-4de9-4190-84fd-2f797f60ca78", + "start": { + "$date": "2022-02-20T02:33:03.000Z" + }, + "end": { + "$date": "2022-02-20T03:49:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "295c10c2-cbb4-4866-9e74-fc1d983fed7c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-20T02:32:59.000Z" + }, + "end": { + "$date": "2022-02-20T02:57:01.000Z" + }, + "events": [ + { + "uuid": "d98b0679-7773-4c30-a8a0-fc930cf2b429", + "start": { + "$date": "2022-02-20T02:32:59.000Z" + }, + "end": { + "$date": "2022-02-20T02:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da57b825-4884-414b-99c1-82118c1ca28e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-20T02:34:38.000Z" + }, + "end": { + "$date": "2022-02-20T03:08:46.000Z" + }, + "events": [ + { + "uuid": "2bbf2abf-2336-41d6-9477-9383d6c50898", + "start": { + "$date": "2022-02-20T02:34:38.000Z" + }, + "end": { + "$date": "2022-02-20T03:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c5962a0e-9cdd-44ba-9d7b-d776acb53fdd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-20T02:57:10.000Z" + }, + "end": { + "$date": "2022-02-20T09:07:05.000Z" + }, + "events": [ + { + "uuid": "3eb3959b-17db-4694-a461-291828afae21", + "start": { + "$date": "2022-02-20T02:57:10.000Z" + }, + "end": { + "$date": "2022-02-20T09:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bcc32ad3-b2ed-499f-b9bb-f68fcbed0ef3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-20T03:10:58.000Z" + }, + "end": { + "$date": "2022-02-20T03:49:13.000Z" + }, + "events": [ + { + "uuid": "ad7c3477-d49e-42de-bbfd-29bffb138240", + "start": { + "$date": "2022-02-20T03:10:58.000Z" + }, + "end": { + "$date": "2022-02-20T03:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65fbf681-e4ea-4ffe-8ef6-c7b391b59e11", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-20T03:10:56.000Z" + }, + "end": { + "$date": "2022-02-20T03:49:15.000Z" + }, + "events": [ + { + "uuid": "9733385c-3616-41be-ad62-493566c9bf22", + "start": { + "$date": "2022-02-20T03:10:56.000Z" + }, + "end": { + "$date": "2022-02-20T03:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48aa44e3-b558-40f2-86aa-2f38999b4a6f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T06:03:27.000Z" + }, + "end": { + "$date": "2022-02-20T06:37:58.000Z" + }, + "events": [ + { + "uuid": "908eae85-0ca1-495e-9525-6bbed7ec240d", + "start": { + "$date": "2022-02-20T06:03:27.000Z" + }, + "end": { + "$date": "2022-02-20T06:37:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "7937296d-7654-49d2-bcdc-08d71fbbc5d9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-20T04:07:37.000Z" + }, + "end": { + "$date": "2022-02-20T04:15:12.000Z" + }, + "events": [ + { + "uuid": "148ab7a6-8439-4402-8bf3-2789c1325bc6", + "start": { + "$date": "2022-02-20T04:07:37.000Z" + }, + "end": { + "$date": "2022-02-20T04:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5b78ce6a-cb2b-42f2-85d4-5a45a127e9fe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-20T04:16:02.000Z" + }, + "end": { + "$date": "2022-02-20T07:22:48.000Z" + }, + "events": [ + { + "uuid": "eff51f4b-1e9b-4341-b0eb-ed7b2d0dc983", + "start": { + "$date": "2022-02-20T04:16:02.000Z" + }, + "end": { + "$date": "2022-02-20T07:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "368109b2-b357-4095-9adf-e22cd009df7a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-20T04:16:41.000Z" + }, + "end": { + "$date": "2022-02-20T07:22:53.000Z" + }, + "events": [ + { + "uuid": "00e359bb-4b26-4202-b711-ea61f4fd09ba", + "start": { + "$date": "2022-02-20T04:16:41.000Z" + }, + "end": { + "$date": "2022-02-20T07:22:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d82334fc-10a4-4142-ae19-36311c8398ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-20T04:27:41.000Z" + }, + "end": { + "$date": "2022-02-20T05:36:05.000Z" + }, + "events": [ + { + "uuid": "1b0c01ce-7fd8-4101-add7-c183c3ffc426", + "start": { + "$date": "2022-02-20T04:27:41.000Z" + }, + "end": { + "$date": "2022-02-20T05:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "94f4ac0e-76e6-46b0-9bbc-6760080a7933", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-20T04:37:38.000Z" + }, + "end": { + "$date": "2022-02-20T08:11:26.000Z" + }, + "events": [ + { + "uuid": "3b01549e-4b60-4912-bbc5-b07835a8707d", + "start": { + "$date": "2022-02-20T04:37:38.000Z" + }, + "end": { + "$date": "2022-02-20T08:11:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d4180a25-1b43-4dee-8d22-12f541b46e19", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-20T04:38:07.000Z" + }, + "end": { + "$date": "2022-02-20T05:09:06.000Z" + }, + "events": [ + { + "uuid": "c4c660bd-c807-4f50-af0c-6c7473c5ecf6", + "start": { + "$date": "2022-02-20T04:38:07.000Z" + }, + "end": { + "$date": "2022-02-20T05:09:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "44001daa-9893-42d4-b84b-0fd86457aa5a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-20T05:11:46.000Z" + }, + "end": { + "$date": "2022-02-20T05:58:13.000Z" + }, + "events": [ + { + "uuid": "abb34668-9c1c-4ee8-98d9-c7594c3338bd", + "start": { + "$date": "2022-02-20T05:11:46.000Z" + }, + "end": { + "$date": "2022-02-20T05:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7d94c502-0799-44ce-9295-d5d699e70bb1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-20T05:37:26.000Z" + }, + "end": { + "$date": "2022-02-20T05:50:26.000Z" + }, + "events": [ + { + "uuid": "28cf9740-1ae4-47c5-9aad-288ed6066dd2", + "start": { + "$date": "2022-02-20T05:37:26.000Z" + }, + "end": { + "$date": "2022-02-20T05:50:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7b9324b7-a64e-4bcf-8fdf-8b657fcc4522", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-20T05:58:46.000Z" + }, + "end": { + "$date": "2022-02-20T09:28:20.000Z" + }, + "events": [ + { + "uuid": "ae1a0ec5-db93-4535-9dcb-97609d26a20d", + "start": { + "$date": "2022-02-20T05:58:46.000Z" + }, + "end": { + "$date": "2022-02-20T09:26:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "277d4598-985f-4685-8931-f06976b55128", + "start": { + "$date": "2022-02-20T09:26:46.000Z" + }, + "end": { + "$date": "2022-02-20T09:28:20.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6de37dfe-722e-4831-9de0-fee4ed5872ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-20T07:24:09.000Z" + }, + "end": { + "$date": "2022-02-20T08:32:31.000Z" + }, + "events": [ + { + "uuid": "dfb6d784-4467-40d3-b16d-e0fef0887522", + "start": { + "$date": "2022-02-20T07:24:09.000Z" + }, + "end": { + "$date": "2022-02-20T08:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5533c13-098f-4de3-8485-1727aeac28cf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-20T06:03:24.000Z" + }, + "end": { + "$date": "2022-02-20T06:44:13.000Z" + }, + "events": [ + { + "uuid": "c2daca65-bd95-4e1f-8c49-b218aa61772e", + "start": { + "$date": "2022-02-20T06:03:24.000Z" + }, + "end": { + "$date": "2022-02-20T06:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9bf49b5-afeb-43e0-96b7-044a6d684667", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T06:38:41.000Z" + }, + "end": { + "$date": "2022-02-20T07:03:59.000Z" + }, + "events": [ + { + "uuid": "d0b3152a-bb49-4a13-a121-e56060ee1743", + "start": { + "$date": "2022-02-20T06:38:41.000Z" + }, + "end": { + "$date": "2022-02-20T07:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4eb23da-6ebe-4062-82e3-8688f3c63941", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T07:05:22.000Z" + }, + "end": { + "$date": "2022-02-20T07:34:09.000Z" + }, + "events": [ + { + "uuid": "03f3b784-b438-4162-83a9-eb36b6958740", + "start": { + "$date": "2022-02-20T07:05:22.000Z" + }, + "end": { + "$date": "2022-02-20T07:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ee31d9b7-d381-4b7b-add7-4c03d4e25aca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-20T07:23:34.000Z" + }, + "end": { + "$date": "2022-02-20T08:31:40.000Z" + }, + "events": [ + { + "uuid": "fe64a364-2ef9-46af-9b5a-161f3e175164", + "start": { + "$date": "2022-02-20T07:23:34.000Z" + }, + "end": { + "$date": "2022-02-20T08:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "772aa18c-486a-4640-b425-187e115c97b1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T07:35:05.000Z" + }, + "end": { + "$date": "2022-02-20T08:02:31.000Z" + }, + "events": [ + { + "uuid": "9980ab12-74dc-4320-97a3-b4d3d7ff3497", + "start": { + "$date": "2022-02-20T07:35:05.000Z" + }, + "end": { + "$date": "2022-02-20T08:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "2cf9e160-ec84-48aa-9665-4646beda4375", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-20T16:08:52.000Z" + }, + "end": { + "$date": "2022-02-20T17:11:38.000Z" + }, + "events": [ + { + "uuid": "6072f8ec-38e6-47ab-80ae-bc88c3dd029d", + "start": { + "$date": "2022-02-20T16:08:52.000Z" + }, + "end": { + "$date": "2022-02-20T17:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f1903d9-f8f3-418a-8bee-8c25daed02f2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-20T16:35:00.000Z" + }, + "end": { + "$date": "2022-02-20T16:51:34.000Z" + }, + "events": [ + { + "uuid": "084ab76e-5472-4a5d-9ce9-fef870e56f7b", + "start": { + "$date": "2022-02-20T16:35:00.000Z" + }, + "end": { + "$date": "2022-02-20T16:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2de8ef0-a759-43ec-95f0-c1ccbb5f14df", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-20T16:57:26.000Z" + }, + "end": { + "$date": "2022-02-20T17:17:45.000Z" + }, + "events": [ + { + "uuid": "d70878c1-84d2-4e49-9095-b14404509ef6", + "start": { + "$date": "2022-02-20T16:57:26.000Z" + }, + "end": { + "$date": "2022-02-20T17:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c8dbc058-b90b-4f9a-bc47-1fefd35517eb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-20T17:38:28.000Z" + }, + "end": { + "$date": "2022-02-20T18:21:09.000Z" + }, + "events": [ + { + "uuid": "c81f77be-0cbf-4168-ab5b-03496c4084dc", + "start": { + "$date": "2022-02-20T17:38:28.000Z" + }, + "end": { + "$date": "2022-02-20T18:21:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8460bac1-dfee-47a2-8768-187c426f2ae3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-20T17:38:51.000Z" + }, + "end": { + "$date": "2022-02-20T18:54:56.000Z" + }, + "events": [ + { + "uuid": "ed1f008f-9417-4981-8c4b-7839a9a876a1", + "start": { + "$date": "2022-02-20T17:38:51.000Z" + }, + "end": { + "$date": "2022-02-20T18:43:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9110518a-26bc-4f32-b17b-d953d7abae93", + "start": { + "$date": "2022-02-20T18:43:51.000Z" + }, + "end": { + "$date": "2022-02-20T18:48:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43a988d8-7cba-4838-a0d8-38da0b7c10df", + "start": { + "$date": "2022-02-20T18:48:51.000Z" + }, + "end": { + "$date": "2022-02-20T18:54:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39874189-eb45-4b0d-aebc-8c584be04900", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T18:03:47.000Z" + }, + "end": { + "$date": "2022-02-20T18:18:53.000Z" + }, + "events": [ + { + "uuid": "26777d23-4d7b-48e3-8d5e-bbf717887f86", + "start": { + "$date": "2022-02-20T18:03:47.000Z" + }, + "end": { + "$date": "2022-02-20T18:18:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b6e663ff-8415-4b12-b9de-4cca1fd6a484", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-20T22:46:44.000Z" + }, + "end": { + "$date": "2022-02-20T22:48:24.000Z" + }, + "events": [ + { + "uuid": "c3c9a9ac-2b31-4166-9ec2-1ec8379721cf", + "start": { + "$date": "2022-02-20T22:46:44.000Z" + }, + "end": { + "$date": "2022-02-20T23:03:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bd81457f-921f-4e0f-9571-c9173c49a421", + "start": { + "$date": "2022-02-20T23:03:44.000Z" + }, + "end": { + "$date": "2022-02-20T23:07:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79ff014b-b063-4c56-8585-21657daf5918", + "start": { + "$date": "2022-02-20T23:07:44.000Z" + }, + "end": { + "$date": "2022-02-20T22:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "f1b7430b-e965-41dc-8abf-dd76127b8b06", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-20T20:49:29.000Z" + }, + "end": { + "$date": "2022-02-20T22:29:49.000Z" + }, + "events": [ + { + "uuid": "00df8530-c7c9-41a1-bac0-886c8b198dec", + "start": { + "$date": "2022-02-20T20:49:29.000Z" + }, + "end": { + "$date": "2022-02-20T22:01:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0cd5a41c-1eb5-4d85-9967-1945abe5a6ea", + "start": { + "$date": "2022-02-20T22:01:29.000Z" + }, + "end": { + "$date": "2022-02-20T22:03:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d5ecc30-df84-4b46-b9bb-8dc52880cd42", + "start": { + "$date": "2022-02-20T22:03:29.000Z" + }, + "end": { + "$date": "2022-02-20T22:29:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f5703a0-de93-4d20-b1ad-70eb409a7571", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T21:24:44.000Z" + }, + "end": { + "$date": "2022-02-20T22:04:57.000Z" + }, + "events": [ + { + "uuid": "83188b94-2de8-4689-b83e-a8259947169b", + "start": { + "$date": "2022-02-20T21:24:44.000Z" + }, + "end": { + "$date": "2022-02-20T22:04:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ce5cc01-2fea-4d8e-94c8-aaca14c2e363", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T22:09:38.000Z" + }, + "end": { + "$date": "2022-02-20T22:36:40.000Z" + }, + "events": [ + { + "uuid": "e632e402-f0ef-418b-8344-d3786058f198", + "start": { + "$date": "2022-02-20T22:09:38.000Z" + }, + "end": { + "$date": "2022-02-20T22:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f26e4667-f2df-4701-8497-2a26729d64ae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T22:40:05.000Z" + }, + "end": { + "$date": "2022-02-20T23:00:21.000Z" + }, + "events": [ + { + "uuid": "03ad96d1-7c76-4604-a801-92df87529031", + "start": { + "$date": "2022-02-20T22:40:05.000Z" + }, + "end": { + "$date": "2022-02-20T23:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3e93f1ba-54a9-4116-a7d9-bdeda955101a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-20T22:48:34.000Z" + }, + "end": { + "$date": "2022-02-20T23:31:56.000Z" + }, + "events": [ + { + "uuid": "7585dd44-ceac-4c4d-b11e-61f56b15f36d", + "start": { + "$date": "2022-02-20T22:48:34.000Z" + }, + "end": { + "$date": "2022-02-20T23:31:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "fc681735-a51a-4068-9965-e8482895f125", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-20T22:52:41.000Z" + }, + "end": { + "$date": "2022-02-21T04:23:05.000Z" + }, + "events": [ + { + "uuid": "79c30896-287a-4dbc-a168-c903378c30f9", + "start": { + "$date": "2022-02-20T22:52:41.000Z" + }, + "end": { + "$date": "2022-02-21T04:23:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8475fd2-3e45-403b-a67c-9ea171934743", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-20T23:01:02.000Z" + }, + "end": { + "$date": "2022-02-20T23:02:59.000Z" + }, + "events": [ + { + "uuid": "f203aab9-34eb-4795-84b5-4269d7abf5df", + "start": { + "$date": "2022-02-20T23:01:02.000Z" + }, + "end": { + "$date": "2022-02-20T23:02:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca3990f3-ea31-4db9-b45b-316cda1f2c41", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T00:19:13.000Z" + }, + "end": { + "$date": "2022-02-21T00:19:19.000Z" + }, + "events": [ + { + "uuid": "a0edd96e-43df-423f-920a-3ff43765c01c", + "start": { + "$date": "2022-02-21T00:19:13.000Z" + }, + "end": { + "$date": "2022-02-21T00:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26801d77-2552-45c5-aa67-2732c0e5a8ee", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T00:27:15.000Z" + }, + "end": { + "$date": "2022-02-21T00:52:42.000Z" + }, + "events": [ + { + "uuid": "9826022d-819f-4b9f-93f6-ce978d6b6fd4", + "start": { + "$date": "2022-02-21T00:27:15.000Z" + }, + "end": { + "$date": "2022-02-21T00:52:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56bd6a2d-de6d-4f29-8be1-c8dd5411ad27", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T00:55:17.000Z" + }, + "end": { + "$date": "2022-02-21T01:16:04.000Z" + }, + "events": [ + { + "uuid": "b00f72ba-b9d1-4a4d-842c-b9b851637d5c", + "start": { + "$date": "2022-02-21T00:55:17.000Z" + }, + "end": { + "$date": "2022-02-21T01:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ccf421d6-19b8-4c83-b3b8-45caee4057a7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T01:18:38.000Z" + }, + "end": { + "$date": "2022-02-21T01:40:42.000Z" + }, + "events": [ + { + "uuid": "2595eb35-e30f-40de-902c-819efec7ebf0", + "start": { + "$date": "2022-02-21T01:18:38.000Z" + }, + "end": { + "$date": "2022-02-21T01:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24d60bc9-78ee-4bc2-88a7-a62296808906", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-21T01:45:42.000Z" + }, + "end": { + "$date": "2022-02-21T01:58:23.000Z" + }, + "events": [ + { + "uuid": "da8ab6c9-3973-4f67-93b4-75491ddd252e", + "start": { + "$date": "2022-02-21T01:45:42.000Z" + }, + "end": { + "$date": "2022-02-21T01:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "642d3554-0113-45a4-bd1f-ee6891aa2b8c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T01:45:39.000Z" + }, + "end": { + "$date": "2022-02-21T02:15:05.000Z" + }, + "events": [ + { + "uuid": "006905c8-30c1-4bf3-be09-39cdf9514b71", + "start": { + "$date": "2022-02-21T01:45:39.000Z" + }, + "end": { + "$date": "2022-02-21T02:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7677ab99-2709-42b4-af38-53dc6d8fa2df", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-21T02:43:12.000Z" + }, + "end": { + "$date": "2022-02-21T04:45:11.000Z" + }, + "events": [ + { + "uuid": "d585fb5d-9599-45b3-adfe-64ec295ecce7", + "start": { + "$date": "2022-02-21T02:43:12.000Z" + }, + "end": { + "$date": "2022-02-21T04:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9d9f996d-a377-490e-b1b2-b01fd42dff17", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-21T03:50:24.000Z" + }, + "end": { + "$date": "2022-02-21T04:20:46.000Z" + }, + "events": [ + { + "uuid": "3badb12b-1851-48ed-9a8d-fb8a6f04abcf", + "start": { + "$date": "2022-02-21T03:50:24.000Z" + }, + "end": { + "$date": "2022-02-21T04:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a70aed79-5143-49d4-9827-04f2752e1411", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-21T04:15:53.000Z" + }, + "end": { + "$date": "2022-02-21T05:26:09.000Z" + }, + "events": [ + { + "uuid": "7825a4e9-7f18-4d3a-a6d3-4f7d758968bb", + "start": { + "$date": "2022-02-21T04:15:53.000Z" + }, + "end": { + "$date": "2022-02-21T05:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "368216ed-0c74-40a3-bd6c-5bf7839bda64", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-21T04:21:11.000Z" + }, + "end": { + "$date": "2022-02-21T05:09:32.000Z" + }, + "events": [ + { + "uuid": "018ec4ed-0fb7-419d-94ed-05c71334c870", + "start": { + "$date": "2022-02-21T04:21:11.000Z" + }, + "end": { + "$date": "2022-02-21T05:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2228c685-eed2-47e1-9a0b-5d5327b5f87f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-21T04:23:50.000Z" + }, + "end": { + "$date": "2022-02-21T05:10:11.000Z" + }, + "events": [ + { + "uuid": "51c3a6bb-ea75-4a3c-857e-2ead98aa1d47", + "start": { + "$date": "2022-02-21T04:23:50.000Z" + }, + "end": { + "$date": "2022-02-21T05:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e4b0a510-9373-4c23-9a65-18a0ecdc0d21", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-21T04:45:20.000Z" + }, + "end": { + "$date": "2022-02-21T04:59:57.000Z" + }, + "events": [ + { + "uuid": "43e4d04b-03be-4ad2-ac7f-924b785e4246", + "start": { + "$date": "2022-02-21T04:45:20.000Z" + }, + "end": { + "$date": "2022-02-21T04:59:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c39a1540-ee22-42e9-be69-3701c84c6103", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T05:34:43.000Z" + }, + "end": { + "$date": "2022-02-21T05:34:51.000Z" + }, + "events": [ + { + "uuid": "292956c1-a93b-4184-9955-577a389301d3", + "start": { + "$date": "2022-02-21T05:34:43.000Z" + }, + "end": { + "$date": "2022-02-21T05:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c7a463db-078e-468f-895b-c0c9f98f21b0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-21T05:00:06.000Z" + }, + "end": { + "$date": "2022-02-21T06:45:18.000Z" + }, + "events": [ + { + "uuid": "9338c6f1-f110-405a-953c-42c738542e65", + "start": { + "$date": "2022-02-21T05:00:06.000Z" + }, + "end": { + "$date": "2022-02-21T06:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f98bacc2-8d63-4e51-9356-025128b2804b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-21T05:05:09.000Z" + }, + "end": { + "$date": "2022-02-21T05:18:54.000Z" + }, + "events": [ + { + "uuid": "b15eedb8-6eb3-46cb-8094-188bb755918e", + "start": { + "$date": "2022-02-21T05:05:09.000Z" + }, + "end": { + "$date": "2022-02-21T05:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "fee7d43f-c76c-4425-930b-5e39d720c2ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-21T05:10:02.000Z" + }, + "end": { + "$date": "2022-02-21T06:28:14.000Z" + }, + "events": [ + { + "uuid": "663aac04-a4ff-4a2d-97fe-29c1326ada86", + "start": { + "$date": "2022-02-21T05:10:02.000Z" + }, + "end": { + "$date": "2022-02-21T06:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "1ead00e0-785e-409f-b18b-50c2c9bb9c66", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-21T05:10:16.000Z" + }, + "end": { + "$date": "2022-02-21T07:17:40.000Z" + }, + "events": [ + { + "uuid": "9d0f745c-42f6-4f70-ada7-23a855f26a78", + "start": { + "$date": "2022-02-21T05:10:16.000Z" + }, + "end": { + "$date": "2022-02-21T07:17:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6a1497b-0d7e-4935-b498-4b5507089d54", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-21T05:17:57.000Z" + }, + "end": { + "$date": "2022-02-21T05:18:17.000Z" + }, + "events": [ + { + "uuid": "c8441d3d-38d1-45f8-a8e9-48ba0cf6e40f", + "start": { + "$date": "2022-02-21T05:17:57.000Z" + }, + "end": { + "$date": "2022-02-21T05:18:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "7bca19f1-b02e-4498-b2b8-32bfd31f7e64", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-21T05:26:15.000Z" + }, + "end": { + "$date": "2022-02-21T06:35:25.000Z" + }, + "events": [ + { + "uuid": "30e55c28-bcf0-4cff-8961-d193cbffe49e", + "start": { + "$date": "2022-02-21T05:26:15.000Z" + }, + "end": { + "$date": "2022-02-21T06:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c23e5c5a-72e6-47a0-86ce-a1226581af36", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-21T05:29:49.000Z" + }, + "end": { + "$date": "2022-02-21T05:45:59.000Z" + }, + "events": [ + { + "uuid": "fd808205-c781-41a0-bcbf-8ed23a56389d", + "start": { + "$date": "2022-02-21T05:29:49.000Z" + }, + "end": { + "$date": "2022-02-21T05:45:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c1f2f21-78cf-4976-9bd8-fa256d0d5316", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T05:36:27.000Z" + }, + "end": { + "$date": "2022-02-21T06:04:07.000Z" + }, + "events": [ + { + "uuid": "ba032dfc-90ca-4f23-8263-22e8def8ddc1", + "start": { + "$date": "2022-02-21T05:36:27.000Z" + }, + "end": { + "$date": "2022-02-21T06:04:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14a3b56c-f580-4081-9429-5128f865b7b6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-21T05:37:58.000Z" + }, + "end": { + "$date": "2022-02-21T07:35:55.000Z" + }, + "events": [ + { + "uuid": "1f758601-2b4b-429c-96dd-ce7dd586392f", + "start": { + "$date": "2022-02-21T05:37:58.000Z" + }, + "end": { + "$date": "2022-02-21T07:35:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "645d906d-bd3f-47a9-b651-abd25f1d7676", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-21T05:48:40.000Z" + }, + "end": { + "$date": "2022-02-21T06:22:00.000Z" + }, + "events": [ + { + "uuid": "a347e0a6-a871-47a0-b801-825ab0121d27", + "start": { + "$date": "2022-02-21T05:48:40.000Z" + }, + "end": { + "$date": "2022-02-21T06:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "021a335a-6037-4b16-98ff-d8dc2e233a5b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T06:05:11.000Z" + }, + "end": { + "$date": "2022-02-21T06:39:47.000Z" + }, + "events": [ + { + "uuid": "0683bbc4-676a-41f3-8994-51ed549b8fbb", + "start": { + "$date": "2022-02-21T06:05:11.000Z" + }, + "end": { + "$date": "2022-02-21T06:39:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61c3e14c-6511-4988-a528-3ba343a5e1db", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-21T06:24:45.000Z" + }, + "end": { + "$date": "2022-02-21T06:44:15.000Z" + }, + "events": [ + { + "uuid": "27e16749-6daf-47f4-aab2-ae6a07b6fbf4", + "start": { + "$date": "2022-02-21T06:24:45.000Z" + }, + "end": { + "$date": "2022-02-21T06:44:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "27f2b7d5-8001-4489-bb43-dc33a740e522", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-21T07:26:36.000Z" + }, + "end": { + "$date": "2022-02-21T09:12:33.000Z" + }, + "events": [ + { + "uuid": "2c0e5cd5-d60c-4683-a85e-5b7b023bdc3e", + "start": { + "$date": "2022-02-21T07:26:36.000Z" + }, + "end": { + "$date": "2022-02-21T09:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4f2cf345-5f6b-4b66-957e-d9c66bd52eb2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-21T16:20:22.000Z" + }, + "end": { + "$date": "2022-02-21T17:44:52.000Z" + }, + "events": [ + { + "uuid": "c5708b0e-e3a7-434b-bc85-f6e38cfc8625", + "start": { + "$date": "2022-02-21T16:20:22.000Z" + }, + "end": { + "$date": "2022-02-21T17:42:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "accd4ab3-1ead-44dc-9b3a-472197fc34e9", + "start": { + "$date": "2022-02-21T17:42:22.000Z" + }, + "end": { + "$date": "2022-02-21T17:43:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb0d8077-6e05-4728-8eed-bcb1bc45f6bd", + "start": { + "$date": "2022-02-21T17:43:22.000Z" + }, + "end": { + "$date": "2022-02-21T17:44:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61bf1415-188a-453b-b21b-3c69c27e988c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-21T17:23:30.000Z" + }, + "end": { + "$date": "2022-02-21T17:36:34.000Z" + }, + "events": [ + { + "uuid": "9f013ada-c122-4b5d-b6d8-f618f1071e38", + "start": { + "$date": "2022-02-21T17:23:30.000Z" + }, + "end": { + "$date": "2022-02-21T17:36:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "1b432f70-acc8-41dc-9bb3-a230d04ff7d2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T17:46:19.000Z" + }, + "end": { + "$date": "2022-02-21T18:13:47.000Z" + }, + "events": [ + { + "uuid": "28588ab8-3628-454c-9a5a-413a69bca2cc", + "start": { + "$date": "2022-02-21T17:46:19.000Z" + }, + "end": { + "$date": "2022-02-21T18:13:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0e5b965d-34ec-4257-b293-7eb81ba6513c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-21T17:53:40.000Z" + }, + "end": { + "$date": "2022-02-21T18:13:51.000Z" + }, + "events": [ + { + "uuid": "8e6d1b1e-eb3a-434a-b3fd-a516cf05cc7d", + "start": { + "$date": "2022-02-21T17:53:40.000Z" + }, + "end": { + "$date": "2022-02-21T18:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "037e9426-e978-4933-a8ae-9fd4bea01367", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-21T18:15:07.000Z" + }, + "end": { + "$date": "2022-02-21T18:20:06.000Z" + }, + "events": [ + { + "uuid": "666a24f2-9538-41c3-8181-2d26e8bb38b0", + "start": { + "$date": "2022-02-21T18:15:07.000Z" + }, + "end": { + "$date": "2022-02-21T18:20:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9bf89d9-6272-40e2-97bd-e2136fea3ae2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T18:18:54.000Z" + }, + "end": { + "$date": "2022-02-21T18:54:52.000Z" + }, + "events": [ + { + "uuid": "ae1719b1-0b7f-4ef9-939c-6f7a4ee85183", + "start": { + "$date": "2022-02-21T18:18:54.000Z" + }, + "end": { + "$date": "2022-02-21T18:38:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5cd0c865-cc78-4950-a323-5287ad0d003a", + "start": { + "$date": "2022-02-21T18:38:54.000Z" + }, + "end": { + "$date": "2022-02-21T18:41:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6d4a329d-b0c9-4388-b76e-ccd8eb6b097c", + "start": { + "$date": "2022-02-21T18:41:54.000Z" + }, + "end": { + "$date": "2022-02-21T18:43:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35d7d25a-ef3c-4801-910b-110310995c22", + "start": { + "$date": "2022-02-21T18:43:54.000Z" + }, + "end": { + "$date": "2022-02-21T18:50:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04256a2c-d5d5-49ee-8534-1856cad6944c", + "start": { + "$date": "2022-02-21T18:50:54.000Z" + }, + "end": { + "$date": "2022-02-21T18:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14cb06d2-960a-44c5-82fc-2361e70af2ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T18:57:37.000Z" + }, + "end": { + "$date": "2022-02-21T19:19:04.000Z" + }, + "events": [ + { + "uuid": "5175e799-0038-4f9e-96ce-9e70580a0ab4", + "start": { + "$date": "2022-02-21T18:57:37.000Z" + }, + "end": { + "$date": "2022-02-21T19:19:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9151d77d-2b58-4369-b851-29a29d1b275f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-21T19:04:22.000Z" + }, + "end": { + "$date": "2022-02-21T22:43:17.000Z" + }, + "events": [ + { + "uuid": "f9e413c5-a85a-411c-a7d2-66656f169278", + "start": { + "$date": "2022-02-21T19:04:22.000Z" + }, + "end": { + "$date": "2022-02-21T20:26:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fdf6da65-604b-44a0-b64b-259bc3d17b1e", + "start": { + "$date": "2022-02-21T20:26:22.000Z" + }, + "end": { + "$date": "2022-02-21T20:31:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e4065a3-f65c-43be-a0a8-f4679d44fce8", + "start": { + "$date": "2022-02-21T20:31:22.000Z" + }, + "end": { + "$date": "2022-02-21T20:45:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c8271330-46b7-4708-9364-be8cb4f0ede0", + "start": { + "$date": "2022-02-21T20:45:22.000Z" + }, + "end": { + "$date": "2022-02-21T20:47:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea6fe729-ae53-421b-8078-945b220a0f9d", + "start": { + "$date": "2022-02-21T20:47:22.000Z" + }, + "end": { + "$date": "2022-02-21T21:02:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e06b2d4-10a8-4961-ac60-97f84dbdad0b", + "start": { + "$date": "2022-02-21T21:02:22.000Z" + }, + "end": { + "$date": "2022-02-21T21:05:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a4608e9e-dfd9-4bf0-b09f-824293b48aff", + "start": { + "$date": "2022-02-21T21:05:22.000Z" + }, + "end": { + "$date": "2022-02-21T21:07:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1945f8b0-01fd-4c79-ad62-e8b2d0131301", + "start": { + "$date": "2022-02-21T21:07:22.000Z" + }, + "end": { + "$date": "2022-02-21T21:12:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce62fb13-5aad-4ddb-a707-08f086d104f6", + "start": { + "$date": "2022-02-21T21:12:22.000Z" + }, + "end": { + "$date": "2022-02-21T21:20:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa24df54-d7b5-4b0c-a281-d74bca7f1be5", + "start": { + "$date": "2022-02-21T21:20:22.000Z" + }, + "end": { + "$date": "2022-02-21T21:24:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a3417d36-e2e7-4613-857a-55891bd7825a", + "start": { + "$date": "2022-02-21T21:24:22.000Z" + }, + "end": { + "$date": "2022-02-21T22:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c979cbd-adbb-49b9-8669-6020f0ae2ac5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-21T19:09:26.000Z" + }, + "end": { + "$date": "2022-02-21T19:29:11.000Z" + }, + "events": [ + { + "uuid": "0795a693-c737-4c9d-af3d-e83573bc40ee", + "start": { + "$date": "2022-02-21T19:09:26.000Z" + }, + "end": { + "$date": "2022-02-21T19:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "215a5129-83dc-4f9c-b4fe-93c3629b3f6d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T19:23:09.000Z" + }, + "end": { + "$date": "2022-02-21T19:41:05.000Z" + }, + "events": [ + { + "uuid": "f774e470-4b7a-4a3c-8905-abbe4881fa34", + "start": { + "$date": "2022-02-21T19:23:09.000Z" + }, + "end": { + "$date": "2022-02-21T19:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ccbd0c7-5403-4655-b1e9-9c26afe0ac83", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-21T20:16:11.000Z" + }, + "end": { + "$date": "2022-02-21T20:32:26.000Z" + }, + "events": [ + { + "uuid": "2a50088c-582f-4163-a0a0-112a1a58bf86", + "start": { + "$date": "2022-02-21T20:16:11.000Z" + }, + "end": { + "$date": "2022-02-21T20:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9caeaee1-baf6-49f7-9358-87edb929e936", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T22:58:39.000Z" + }, + "end": { + "$date": "2022-02-21T23:20:38.000Z" + }, + "events": [ + { + "uuid": "a91813c6-2597-42e3-9fee-5def9db76e41", + "start": { + "$date": "2022-02-21T22:58:39.000Z" + }, + "end": { + "$date": "2022-02-21T23:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c41dce21-d8c4-4d41-bca3-f32802db6133", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T23:21:29.000Z" + }, + "end": { + "$date": "2022-02-21T23:34:21.000Z" + }, + "events": [ + { + "uuid": "9f009d19-e8bb-464d-bcd8-0dd28fe07976", + "start": { + "$date": "2022-02-21T23:21:29.000Z" + }, + "end": { + "$date": "2022-02-21T23:34:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba952a26-d1be-4c38-a906-ae2220883764", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T23:36:47.000Z" + }, + "end": { + "$date": "2022-02-21T23:54:48.000Z" + }, + "events": [ + { + "uuid": "c7ff209f-4d72-4378-b231-d539ddde3557", + "start": { + "$date": "2022-02-21T23:36:47.000Z" + }, + "end": { + "$date": "2022-02-21T23:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70af761a-af40-4543-9d28-8166b98e914c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-21T23:57:44.000Z" + }, + "end": { + "$date": "2022-02-22T00:19:18.000Z" + }, + "events": [ + { + "uuid": "47401858-fd78-495e-b331-8b9102d3f1e6", + "start": { + "$date": "2022-02-21T23:57:44.000Z" + }, + "end": { + "$date": "2022-02-22T00:19:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "122b6794-7b11-431d-920b-17951b48b4ef", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-22T00:10:51.000Z" + }, + "end": { + "$date": "2022-02-22T02:21:28.000Z" + }, + "events": [ + { + "uuid": "a1780d6e-046f-409e-8830-b7fc5d481ae4", + "start": { + "$date": "2022-02-22T00:10:51.000Z" + }, + "end": { + "$date": "2022-02-22T01:03:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a8a56bd-203e-4784-b80c-0f886db7190c", + "start": { + "$date": "2022-02-22T01:03:51.000Z" + }, + "end": { + "$date": "2022-02-22T01:59:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a128d071-6e34-4f3e-9fcf-c061bec6aa5a", + "start": { + "$date": "2022-02-22T01:59:51.000Z" + }, + "end": { + "$date": "2022-02-22T02:21:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbab5524-6cc3-4da0-b730-40af9e7ddff3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-22T00:22:11.000Z" + }, + "end": { + "$date": "2022-02-22T00:45:18.000Z" + }, + "events": [ + { + "uuid": "5cc3f83f-4f8d-4b3b-adfc-c660d7ccdcc9", + "start": { + "$date": "2022-02-22T00:22:11.000Z" + }, + "end": { + "$date": "2022-02-22T00:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f514b871-2a6a-4e71-b191-0e43dd5da67c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-22T01:41:29.000Z" + }, + "end": { + "$date": "2022-02-22T04:15:19.000Z" + }, + "events": [ + { + "uuid": "7fc215db-df81-4821-8a32-7b03cf88cad1", + "start": { + "$date": "2022-02-22T01:41:29.000Z" + }, + "end": { + "$date": "2022-02-22T04:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6ab6032-46a7-4389-ac6e-bd8227eb26d4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-22T02:03:16.000Z" + }, + "end": { + "$date": "2022-02-22T02:34:47.000Z" + }, + "events": [ + { + "uuid": "a55ea166-319e-4f6b-996e-b761a4ff3602", + "start": { + "$date": "2022-02-22T02:03:16.000Z" + }, + "end": { + "$date": "2022-02-22T02:34:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "96be3e3f-e4f9-40e4-b132-6526d715fd40", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-22T04:23:28.000Z" + }, + "end": { + "$date": "2022-02-22T05:38:05.000Z" + }, + "events": [ + { + "uuid": "0f9c1c1c-3da4-4516-9a17-43c95ecc5df4", + "start": { + "$date": "2022-02-22T04:23:28.000Z" + }, + "end": { + "$date": "2022-02-22T05:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "142e806f-b974-4fa7-8323-ac39383c4ccd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-22T02:36:57.000Z" + }, + "end": { + "$date": "2022-02-22T03:10:56.000Z" + }, + "events": [ + { + "uuid": "da759d14-d041-4307-9d25-0e2fcd0c14b2", + "start": { + "$date": "2022-02-22T02:36:57.000Z" + }, + "end": { + "$date": "2022-02-22T03:10:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "8933afce-f509-4ffa-b17f-36d566da9fa2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-22T03:04:34.000Z" + }, + "end": { + "$date": "2022-02-22T03:16:35.000Z" + }, + "events": [ + { + "uuid": "3441bf2f-4e3f-41aa-9d81-89036978a8d9", + "start": { + "$date": "2022-02-22T03:04:34.000Z" + }, + "end": { + "$date": "2022-02-22T03:16:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "71a974d4-3c8c-44ce-933c-5c4d0104c493", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-22T03:07:11.000Z" + }, + "end": { + "$date": "2022-02-22T03:56:17.000Z" + }, + "events": [ + { + "uuid": "33b94df1-4c5c-473f-8506-eabdc73b150e", + "start": { + "$date": "2022-02-22T03:07:11.000Z" + }, + "end": { + "$date": "2022-02-22T03:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "ef8bc8db-1760-47eb-8ef3-62d815246f4a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-22T03:04:34.000Z" + }, + "end": { + "$date": "2022-02-22T04:45:12.000Z" + }, + "events": [ + { + "uuid": "31762c6e-c25c-490e-89fd-15457f91d1aa", + "start": { + "$date": "2022-02-22T03:04:34.000Z" + }, + "end": { + "$date": "2022-02-22T04:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4693c10c-1ab1-4ad5-bccd-3e4437bd75d0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-22T03:57:37.000Z" + }, + "end": { + "$date": "2022-02-22T04:00:13.000Z" + }, + "events": [ + { + "uuid": "3cd78e8f-a96c-4ec8-b8f8-79b3b8899bee", + "start": { + "$date": "2022-02-22T03:57:37.000Z" + }, + "end": { + "$date": "2022-02-22T04:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b8735e42-9d48-456e-8d1f-f71dbaa2c9da", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-22T04:00:27.000Z" + }, + "end": { + "$date": "2022-02-22T06:37:17.000Z" + }, + "events": [ + { + "uuid": "7553c171-e18d-4cd5-b445-af79a27368d4", + "start": { + "$date": "2022-02-22T04:00:27.000Z" + }, + "end": { + "$date": "2022-02-22T06:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "44fc2187-5b15-4f8d-b2c7-94cc0b3f5aa7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-22T04:18:14.000Z" + }, + "end": { + "$date": "2022-02-22T05:28:14.000Z" + }, + "events": [ + { + "uuid": "75c90768-1602-443e-afae-8517d1deeca1", + "start": { + "$date": "2022-02-22T04:18:14.000Z" + }, + "end": { + "$date": "2022-02-22T05:28:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "3f982827-4034-41cb-9688-7659a7e29043", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-22T04:47:49.000Z" + }, + "end": { + "$date": "2022-02-22T06:27:48.000Z" + }, + "events": [ + { + "uuid": "e473220f-a660-4863-95fe-f2989d57510e", + "start": { + "$date": "2022-02-22T04:47:49.000Z" + }, + "end": { + "$date": "2022-02-22T06:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "6f618819-24c8-45f9-ad2b-ce0d7c4bc0e9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-22T05:28:41.000Z" + }, + "end": { + "$date": "2022-02-22T07:29:59.000Z" + }, + "events": [ + { + "uuid": "6e9ab592-3653-4fc7-a4b8-99812c62ebea", + "start": { + "$date": "2022-02-22T05:28:41.000Z" + }, + "end": { + "$date": "2022-02-22T07:29:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52e15467-6772-46cf-a751-145a4229604c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-22T06:37:52.000Z" + }, + "end": { + "$date": "2022-02-22T06:58:43.000Z" + }, + "events": [ + { + "uuid": "37d5dc45-acdc-460e-8eaa-bcd8f64acf8f", + "start": { + "$date": "2022-02-22T06:37:52.000Z" + }, + "end": { + "$date": "2022-02-22T06:58:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f422bc1-8488-47d1-ae14-5343341fb210", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-22T07:01:42.000Z" + }, + "end": { + "$date": "2022-02-22T07:30:14.000Z" + }, + "events": [ + { + "uuid": "18402517-d962-48cc-a83c-ef061f03c474", + "start": { + "$date": "2022-02-22T07:01:42.000Z" + }, + "end": { + "$date": "2022-02-22T07:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "53d0e726-d535-4ad8-8efe-2df8907bfa75", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-22T07:49:30.000Z" + }, + "end": { + "$date": "2022-02-22T09:00:57.000Z" + }, + "events": [ + { + "uuid": "0e00de4d-56ce-4bd6-be4a-6665654a1345", + "start": { + "$date": "2022-02-22T07:49:30.000Z" + }, + "end": { + "$date": "2022-02-22T09:00:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "44c8084f-f679-4152-83d1-68d9ee36007c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-22T09:14:09.000Z" + }, + "end": { + "$date": "2022-02-22T09:56:51.000Z" + }, + "events": [ + { + "uuid": "cbfb5a93-cb06-4b1b-b047-0b399750c26f", + "start": { + "$date": "2022-02-22T09:14:09.000Z" + }, + "end": { + "$date": "2022-02-22T09:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3269e156-07c3-426b-a5ee-a3aa4b521436", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-22T18:46:47.000Z" + }, + "end": { + "$date": "2022-02-22T19:20:19.000Z" + }, + "events": [ + { + "uuid": "8a613c18-e360-4e68-8243-04c5bd124bf4", + "start": { + "$date": "2022-02-22T18:46:47.000Z" + }, + "end": { + "$date": "2022-02-22T19:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc7d6138-d2f2-4b05-9df5-da717c37832c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-22T19:36:30.000Z" + }, + "end": { + "$date": "2022-02-22T19:57:25.000Z" + }, + "events": [ + { + "uuid": "f0666d6e-16e7-49b6-a661-23f9d02d7fb5", + "start": { + "$date": "2022-02-22T19:36:30.000Z" + }, + "end": { + "$date": "2022-02-22T19:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1361c6d0-d514-4979-99b6-9209a70b6faf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-22T19:58:44.000Z" + }, + "end": { + "$date": "2022-02-22T20:19:53.000Z" + }, + "events": [ + { + "uuid": "3c311cb0-b182-4da5-8dd4-c6024c28fdbd", + "start": { + "$date": "2022-02-22T19:58:44.000Z" + }, + "end": { + "$date": "2022-02-22T20:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eecc20c9-c15c-4fa6-b527-cabdb2cee2a0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-22T23:07:21.000Z" + }, + "end": { + "$date": "2022-02-22T23:22:56.000Z" + }, + "events": [ + { + "uuid": "2ee75471-fcb0-48f1-8832-844414273fbb", + "start": { + "$date": "2022-02-22T23:07:21.000Z" + }, + "end": { + "$date": "2022-02-22T23:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d3bba669-88c1-46a2-b799-de55ea5b3a61", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-22T23:23:32.000Z" + }, + "end": { + "$date": "2022-02-23T01:57:31.000Z" + }, + "events": [ + { + "uuid": "08a61ec1-b63a-4553-9a75-a3ee0becc4bd", + "start": { + "$date": "2022-02-22T23:23:32.000Z" + }, + "end": { + "$date": "2022-02-23T01:57:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b58c49f4-bf88-43bc-9966-89ba2a317af7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-22T23:24:32.000Z" + }, + "end": { + "$date": "2022-02-22T23:45:52.000Z" + }, + "events": [ + { + "uuid": "81902931-539a-45cd-901a-78029d7e65d2", + "start": { + "$date": "2022-02-22T23:24:32.000Z" + }, + "end": { + "$date": "2022-02-22T23:45:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5c9ad36e-ac06-48df-aeb0-4640c942e008", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-22T23:33:07.000Z" + }, + "end": { + "$date": "2022-02-22T23:59:36.000Z" + }, + "events": [ + { + "uuid": "d9527070-6264-47a4-9b44-eee7dab6f5ac", + "start": { + "$date": "2022-02-22T23:33:07.000Z" + }, + "end": { + "$date": "2022-02-22T23:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "53668fd1-90b0-4e99-9956-28ad8e45f987", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T00:35:16.000Z" + }, + "end": { + "$date": "2022-02-23T00:42:20.000Z" + }, + "events": [ + { + "uuid": "b10e259a-78f4-4b49-9d64-edf5e79787f3", + "start": { + "$date": "2022-02-23T00:35:16.000Z" + }, + "end": { + "$date": "2022-02-23T00:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "961146af-1d44-4880-839e-334d0d8e3f5d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-23T00:57:15.000Z" + }, + "end": { + "$date": "2022-02-23T01:13:55.000Z" + }, + "events": [ + { + "uuid": "dd2a77e4-48c4-47c1-a41c-f3e1c4f08c89", + "start": { + "$date": "2022-02-23T00:57:15.000Z" + }, + "end": { + "$date": "2022-02-23T01:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "63884446-ee68-4fea-95aa-6c200582567a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-23T01:01:44.000Z" + }, + "end": { + "$date": "2022-02-23T02:10:25.000Z" + }, + "events": [ + { + "uuid": "34763ea2-0509-4832-ac57-71f8c785325a", + "start": { + "$date": "2022-02-23T01:01:44.000Z" + }, + "end": { + "$date": "2022-02-23T02:07:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "17281df7-e286-4f65-8cfa-8f5a309e1567", + "start": { + "$date": "2022-02-23T02:07:44.000Z" + }, + "end": { + "$date": "2022-02-23T02:10:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "182fc805-a337-4d5a-94fd-290dee960c8f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T01:04:10.000Z" + }, + "end": { + "$date": "2022-02-23T02:46:45.000Z" + }, + "events": [ + { + "uuid": "18f560f1-b90c-4b9f-8d01-71b7ce06a8ab", + "start": { + "$date": "2022-02-23T01:04:10.000Z" + }, + "end": { + "$date": "2022-02-23T02:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b472bfd2-3108-49c9-8bc0-82ce26f61c40", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-23T01:16:11.000Z" + }, + "end": { + "$date": "2022-02-23T01:35:04.000Z" + }, + "events": [ + { + "uuid": "10130da8-e668-4926-a961-71c7a2259837", + "start": { + "$date": "2022-02-23T01:16:11.000Z" + }, + "end": { + "$date": "2022-02-23T01:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55054b69-d58a-4d88-8ab5-8221222b9589", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-23T01:37:58.000Z" + }, + "end": { + "$date": "2022-02-23T01:59:26.000Z" + }, + "events": [ + { + "uuid": "2f24b7c1-5497-42ad-bf24-adfdda40523d", + "start": { + "$date": "2022-02-23T01:37:58.000Z" + }, + "end": { + "$date": "2022-02-23T01:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "5886b46e-02ad-4174-b536-28e718482868", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-23T01:42:53.000Z" + }, + "end": { + "$date": "2022-02-23T01:56:55.000Z" + }, + "events": [ + { + "uuid": "e45ae173-a71c-467a-b210-3643d8b56e2b", + "start": { + "$date": "2022-02-23T01:42:53.000Z" + }, + "end": { + "$date": "2022-02-23T01:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3f992973-755f-44fd-9600-1232e45c41ca", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-23T02:10:25.000Z" + }, + "end": { + "$date": "2022-02-23T02:12:05.000Z" + }, + "events": [ + { + "uuid": "d8be3208-4735-4132-bc74-8985fe0f09a5", + "start": { + "$date": "2022-02-23T02:10:25.000Z" + }, + "end": { + "$date": "2022-02-23T02:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3eecad21-413e-4204-9152-6c26e5478fcb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-23T01:57:00.000Z" + }, + "end": { + "$date": "2022-02-23T04:52:15.000Z" + }, + "events": [ + { + "uuid": "d9c450f7-57ec-4bf4-92f4-c3ed5905a888", + "start": { + "$date": "2022-02-23T01:57:00.000Z" + }, + "end": { + "$date": "2022-02-23T03:31:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b9f59cde-7057-487e-b72e-ca4b7e57cfe4", + "start": { + "$date": "2022-02-23T03:31:00.000Z" + }, + "end": { + "$date": "2022-02-23T03:36:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "50bb4516-04d1-4b7c-95d9-03de58c3db1d", + "start": { + "$date": "2022-02-23T03:36:00.000Z" + }, + "end": { + "$date": "2022-02-23T04:52:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9606a619-93fb-4cd2-8683-52d76e520805", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-23T01:58:11.000Z" + }, + "end": { + "$date": "2022-02-23T02:58:49.000Z" + }, + "events": [ + { + "uuid": "794c5e7e-aca0-4ea5-8048-335cae7a8d08", + "start": { + "$date": "2022-02-23T01:58:11.000Z" + }, + "end": { + "$date": "2022-02-23T02:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d13d41e6-487a-4125-a346-075797128dfc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-23T01:59:04.000Z" + }, + "end": { + "$date": "2022-02-23T02:06:49.000Z" + }, + "events": [ + { + "uuid": "83bae885-0b2f-4f24-b8ec-164857b5ff1d", + "start": { + "$date": "2022-02-23T01:59:04.000Z" + }, + "end": { + "$date": "2022-02-23T02:06:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30367f00-5124-4462-8800-209376ec156b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-23T02:02:04.000Z" + }, + "end": { + "$date": "2022-02-23T02:19:39.000Z" + }, + "events": [ + { + "uuid": "56b0057c-3153-4bc5-bc0a-45a057dc1696", + "start": { + "$date": "2022-02-23T02:02:04.000Z" + }, + "end": { + "$date": "2022-02-23T02:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a9bf5f7-814b-4a44-a9a0-74579f95bba8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-23T02:20:18.000Z" + }, + "end": { + "$date": "2022-02-23T02:23:01.000Z" + }, + "events": [ + { + "uuid": "c9bd65ab-a621-47b9-9b91-72b9308aa26f", + "start": { + "$date": "2022-02-23T02:20:18.000Z" + }, + "end": { + "$date": "2022-02-23T02:23:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c2b6e9a3-2940-4a92-9fcc-07d3a1444ba2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-23T02:24:27.000Z" + }, + "end": { + "$date": "2022-02-23T02:56:34.000Z" + }, + "events": [ + { + "uuid": "608e3f29-d738-4b07-86d0-a7ccf8468a68", + "start": { + "$date": "2022-02-23T02:24:27.000Z" + }, + "end": { + "$date": "2022-02-23T02:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "64e63720-b3b8-4035-a7a1-5e73eedb0795", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-23T02:25:32.000Z" + }, + "end": { + "$date": "2022-02-23T03:13:19.000Z" + }, + "events": [ + { + "uuid": "609a0211-4cf7-4f85-993f-4ca37da78b28", + "start": { + "$date": "2022-02-23T02:25:32.000Z" + }, + "end": { + "$date": "2022-02-23T03:13:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9359548f-4854-40c5-b924-1e7b67a8acaa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-23T02:31:41.000Z" + }, + "end": { + "$date": "2022-02-23T03:27:03.000Z" + }, + "events": [ + { + "uuid": "690c030f-e99a-41d4-984a-341649b82fd4", + "start": { + "$date": "2022-02-23T02:31:41.000Z" + }, + "end": { + "$date": "2022-02-23T03:27:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "b8d96224-8087-48b8-ac1d-ff4b937435c2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-23T04:41:36.000Z" + }, + "end": { + "$date": "2022-02-23T04:45:35.000Z" + }, + "events": [ + { + "uuid": "e5b9202e-a19a-404e-a534-1151ba3b3692", + "start": { + "$date": "2022-02-23T04:41:36.000Z" + }, + "end": { + "$date": "2022-02-23T04:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f2469b34-4649-4a4d-8f46-d52801e627f6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-23T02:56:45.000Z" + }, + "end": { + "$date": "2022-02-23T02:59:29.000Z" + }, + "events": [ + { + "uuid": "c90249c0-9de7-46ad-8352-1aae9c96ccfd", + "start": { + "$date": "2022-02-23T02:56:45.000Z" + }, + "end": { + "$date": "2022-02-23T02:59:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "405bb527-3a29-4055-8abb-2315a834383f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-23T03:00:50.000Z" + }, + "end": { + "$date": "2022-02-23T06:23:11.000Z" + }, + "events": [ + { + "uuid": "55e017d1-f72e-40d4-a709-e1e0add35024", + "start": { + "$date": "2022-02-23T03:00:50.000Z" + }, + "end": { + "$date": "2022-02-23T06:23:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", + "uuid": "b97601c8-fafb-48f5-8d5e-eb73907ad4fa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T03:18:55.000Z" + }, + "end": { + "$date": "2022-02-23T03:42:22.000Z" + }, + "events": [ + { + "uuid": "77797e57-1412-4038-aae3-95a7b6eeebc6", + "start": { + "$date": "2022-02-23T03:18:55.000Z" + }, + "end": { + "$date": "2022-02-23T03:42:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4705d818-5421-4729-a012-42adf97474b0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T03:33:36.000Z" + }, + "end": { + "$date": "2022-02-23T04:31:04.000Z" + }, + "events": [ + { + "uuid": "774c51fb-7489-4930-a5de-e764c83c55a3", + "start": { + "$date": "2022-02-23T03:33:36.000Z" + }, + "end": { + "$date": "2022-02-23T04:31:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c9a6f50-0527-4fc0-be55-597b5de8f923", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-23T03:45:37.000Z" + }, + "end": { + "$date": "2022-02-23T04:03:02.000Z" + }, + "events": [ + { + "uuid": "9d8d42f5-357e-4c63-be8f-a61b7f1c5ae1", + "start": { + "$date": "2022-02-23T03:45:37.000Z" + }, + "end": { + "$date": "2022-02-23T04:03:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", + "uuid": "b3cb4c18-4a5e-4e17-9f68-b7e07d3beafe", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T03:52:09.000Z" + }, + "end": { + "$date": "2022-02-23T04:32:20.000Z" + }, + "events": [ + { + "uuid": "7a360274-b558-4b25-9a54-a2390296769f", + "start": { + "$date": "2022-02-23T03:52:09.000Z" + }, + "end": { + "$date": "2022-02-23T04:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9741d62-e92b-476e-acea-feb24011f91a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T05:11:01.000Z" + }, + "end": { + "$date": "2022-02-23T05:11:06.000Z" + }, + "events": [ + { + "uuid": "d2793bc9-c67d-4a00-bdc4-713f53e0fc2a", + "start": { + "$date": "2022-02-23T05:11:01.000Z" + }, + "end": { + "$date": "2022-02-23T05:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85783d0a-4819-463d-b222-7af023d4e2ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T05:15:37.000Z" + }, + "end": { + "$date": "2022-02-23T05:55:07.000Z" + }, + "events": [ + { + "uuid": "0c408b60-2234-4c88-b8a8-80e0a037618c", + "start": { + "$date": "2022-02-23T05:15:37.000Z" + }, + "end": { + "$date": "2022-02-23T05:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5743db1b-6950-47a4-ace2-b85cc6a0b410", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-23T05:56:21.000Z" + }, + "end": { + "$date": "2022-02-23T06:13:52.000Z" + }, + "events": [ + { + "uuid": "9e164585-505c-494d-9cb3-9458b7acebce", + "start": { + "$date": "2022-02-23T05:56:21.000Z" + }, + "end": { + "$date": "2022-02-23T06:13:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbafbc4d-c11b-41c6-945e-189208b02a0c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T06:21:21.000Z" + }, + "end": { + "$date": "2022-02-23T06:22:46.000Z" + }, + "events": [ + { + "uuid": "bc586cd1-ffba-4f4f-a679-4da3001fc7bb", + "start": { + "$date": "2022-02-23T06:21:21.000Z" + }, + "end": { + "$date": "2022-02-23T06:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a54185b-a8ec-4e4c-9034-559d4c3e8dd6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-23T06:18:37.000Z" + }, + "end": { + "$date": "2022-02-23T06:43:17.000Z" + }, + "events": [ + { + "uuid": "94119e31-c9a7-4e32-a9bc-6ecf7cd9eeef", + "start": { + "$date": "2022-02-23T06:18:37.000Z" + }, + "end": { + "$date": "2022-02-23T06:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "fa1240d6-c678-4316-88b2-a376c255eeb8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T06:22:51.000Z" + }, + "end": { + "$date": "2022-02-23T07:44:49.000Z" + }, + "events": [ + { + "uuid": "c0a52895-3377-40b7-a230-64404ccdea20", + "start": { + "$date": "2022-02-23T06:22:51.000Z" + }, + "end": { + "$date": "2022-02-23T07:44:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "307399f3-d426-4830-92c2-bb560b6aae41", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-23T06:48:58.000Z" + }, + "end": { + "$date": "2022-02-23T07:16:33.000Z" + }, + "events": [ + { + "uuid": "ca277e14-ceca-4738-b640-d824431fa3fe", + "start": { + "$date": "2022-02-23T06:48:58.000Z" + }, + "end": { + "$date": "2022-02-23T07:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a27ff8e9-c756-4985-9cee-0d2563676d4c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-23T15:53:27.000Z" + }, + "end": { + "$date": "2022-02-23T16:10:37.000Z" + }, + "events": [ + { + "uuid": "c47c58d9-58c2-4d75-b6c4-6e7c22f7b510", + "start": { + "$date": "2022-02-23T15:53:27.000Z" + }, + "end": { + "$date": "2022-02-23T16:10:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "beaae8c1-eccb-47d1-a056-ea4dfeaa8a90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-23T16:11:53.000Z" + }, + "end": { + "$date": "2022-02-23T16:32:33.000Z" + }, + "events": [ + { + "uuid": "c0e31621-5f24-40d7-b675-80ba59bd2786", + "start": { + "$date": "2022-02-23T16:11:53.000Z" + }, + "end": { + "$date": "2022-02-23T16:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75ed7cff-d42f-48f4-8f88-5ad270557c79", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-23T16:34:18.000Z" + }, + "end": { + "$date": "2022-02-23T16:54:03.000Z" + }, + "events": [ + { + "uuid": "e66747cc-9cec-49fb-a679-c92e194157d5", + "start": { + "$date": "2022-02-23T16:34:18.000Z" + }, + "end": { + "$date": "2022-02-23T16:54:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f9dac2c9-5024-4a0f-ad89-dab38d4b035c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T17:25:07.000Z" + }, + "end": { + "$date": "2022-02-23T21:51:28.000Z" + }, + "events": [ + { + "uuid": "ef7d2bdd-1c1a-4378-a895-4d9132539133", + "start": { + "$date": "2022-02-23T17:25:07.000Z" + }, + "end": { + "$date": "2022-02-23T18:45:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cda0fb9f-def4-4a1f-a52a-8e187936c54f", + "start": { + "$date": "2022-02-23T18:45:07.000Z" + }, + "end": { + "$date": "2022-02-23T19:05:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cf9733b6-8ef3-4160-b089-7b3f2af96e6a", + "start": { + "$date": "2022-02-23T19:05:07.000Z" + }, + "end": { + "$date": "2022-02-23T21:51:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "97d8b0ad-d73b-4efd-993d-4cf6f8397aa4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T22:21:55.000Z" + }, + "end": { + "$date": "2022-02-23T23:00:46.000Z" + }, + "events": [ + { + "uuid": "5ad7672f-7074-4b9f-b810-615d5b079c24", + "start": { + "$date": "2022-02-23T22:21:55.000Z" + }, + "end": { + "$date": "2022-02-23T23:00:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c1e5557b-35cb-4e0d-a2e1-1621a9ce1dc6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T22:27:10.000Z" + }, + "end": { + "$date": "2022-02-23T23:04:44.000Z" + }, + "events": [ + { + "uuid": "8a6fe2a3-466e-4369-b829-857c7efea9f1", + "start": { + "$date": "2022-02-23T22:27:10.000Z" + }, + "end": { + "$date": "2022-02-23T23:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0408a827-2180-45fb-82c6-a8cd85ce6d94", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-23T22:57:33.000Z" + }, + "end": { + "$date": "2022-02-24T02:31:17.000Z" + }, + "events": [ + { + "uuid": "912c2f45-0658-4e04-88c5-43059b4fac15", + "start": { + "$date": "2022-02-23T22:57:33.000Z" + }, + "end": { + "$date": "2022-02-24T02:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20952d36-cfdd-4bfa-a8d7-9fc08fc9b8c3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T23:06:24.000Z" + }, + "end": { + "$date": "2022-02-23T23:30:41.000Z" + }, + "events": [ + { + "uuid": "3aae241f-5f89-4dd4-9f2a-83ce8bdc65a2", + "start": { + "$date": "2022-02-23T23:06:24.000Z" + }, + "end": { + "$date": "2022-02-23T23:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "759bf64b-9040-49d6-b42e-4fbd2155ac91", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T23:11:26.000Z" + }, + "end": { + "$date": "2022-02-23T23:13:47.000Z" + }, + "events": [ + { + "uuid": "c4a2701d-628b-46d9-9835-70ef2b7998fc", + "start": { + "$date": "2022-02-23T23:11:26.000Z" + }, + "end": { + "$date": "2022-02-23T23:13:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "bfcf2baf-caae-4d59-bbad-c963a111c1e4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T23:14:36.000Z" + }, + "end": { + "$date": "2022-02-23T23:19:08.000Z" + }, + "events": [ + { + "uuid": "65542a62-e4df-40bf-978d-b4f3634acbd0", + "start": { + "$date": "2022-02-23T23:14:36.000Z" + }, + "end": { + "$date": "2022-02-23T23:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", + "uuid": "784f4714-2bc6-4383-87c2-343b247aafaf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T23:21:17.000Z" + }, + "end": { + "$date": "2022-02-23T23:22:23.000Z" + }, + "events": [ + { + "uuid": "8636bb4f-3105-4607-ab11-332c021e25f5", + "start": { + "$date": "2022-02-23T23:21:17.000Z" + }, + "end": { + "$date": "2022-02-23T23:22:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", + "uuid": "18d2b68d-097f-4fcf-8521-180200f0f06c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-23T23:24:42.000Z" + }, + "end": { + "$date": "2022-02-24T00:13:51.000Z" + }, + "events": [ + { + "uuid": "be6cc4aa-dd37-4ea5-8b16-09337882bc45", + "start": { + "$date": "2022-02-23T23:24:42.000Z" + }, + "end": { + "$date": "2022-02-24T00:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbc7429b-a08a-4c88-b983-544464d48940", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-23T23:32:53.000Z" + }, + "end": { + "$date": "2022-02-24T00:09:41.000Z" + }, + "events": [ + { + "uuid": "cf9bbff7-4fa0-42db-acd2-4b881b4bb10c", + "start": { + "$date": "2022-02-23T23:32:53.000Z" + }, + "end": { + "$date": "2022-02-24T00:09:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a172a331-44b7-4a62-b270-b0dc380a9cbe", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T00:15:21.000Z" + }, + "end": { + "$date": "2022-02-24T00:50:49.000Z" + }, + "events": [ + { + "uuid": "64da0fa7-7712-472d-8209-c64fdfad90c6", + "start": { + "$date": "2022-02-24T00:15:21.000Z" + }, + "end": { + "$date": "2022-02-24T00:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c6ff943-b156-456e-ad01-143651e771f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-24T00:42:30.000Z" + }, + "end": { + "$date": "2022-02-24T01:50:59.000Z" + }, + "events": [ + { + "uuid": "0c88d1d3-1604-4acf-a034-b0afa2c460f5", + "start": { + "$date": "2022-02-24T00:42:30.000Z" + }, + "end": { + "$date": "2022-02-24T01:31:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5e521dd-b570-4c95-9ace-5431f3c5b091", + "start": { + "$date": "2022-02-24T01:31:30.000Z" + }, + "end": { + "$date": "2022-02-24T01:50:59.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "67d38f80-e0a2-4fd6-869a-3fb515c70e30", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T00:54:59.000Z" + }, + "end": { + "$date": "2022-02-24T01:00:56.000Z" + }, + "events": [ + { + "uuid": "fc39c847-542e-484d-84ee-8d62e2f5bc03", + "start": { + "$date": "2022-02-24T00:54:59.000Z" + }, + "end": { + "$date": "2022-02-24T01:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "6eefff98-fcc4-4fc3-9853-63547df29adb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T01:01:10.000Z" + }, + "end": { + "$date": "2022-02-24T01:03:52.000Z" + }, + "events": [ + { + "uuid": "e04f1b28-6a0e-4616-b4d8-439bd4f77ff7", + "start": { + "$date": "2022-02-24T01:01:10.000Z" + }, + "end": { + "$date": "2022-02-24T01:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c22fc714-98aa-4cad-917c-d258153f7cfb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T01:08:21.000Z" + }, + "end": { + "$date": "2022-02-24T01:35:53.000Z" + }, + "events": [ + { + "uuid": "5e04640f-a321-4ac9-bfee-b84eb7e48497", + "start": { + "$date": "2022-02-24T01:08:21.000Z" + }, + "end": { + "$date": "2022-02-24T01:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf707d7e-e8a4-4122-a93c-bacb98f7967c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T01:38:23.000Z" + }, + "end": { + "$date": "2022-02-24T01:57:35.000Z" + }, + "events": [ + { + "uuid": "7166d63b-f051-41f0-a187-053c06432d0b", + "start": { + "$date": "2022-02-24T01:38:23.000Z" + }, + "end": { + "$date": "2022-02-24T01:57:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "41b4ca36-ee18-4e80-b2a8-a419422a8b3e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-24T01:43:26.000Z" + }, + "end": { + "$date": "2022-02-24T02:00:31.000Z" + }, + "events": [ + { + "uuid": "a5a8fe80-0955-4b5a-8272-8048750bb3fd", + "start": { + "$date": "2022-02-24T01:43:26.000Z" + }, + "end": { + "$date": "2022-02-24T02:00:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea522d22-86eb-4c9b-a77a-046f84c7bdec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T02:00:15.000Z" + }, + "end": { + "$date": "2022-02-24T02:26:47.000Z" + }, + "events": [ + { + "uuid": "eb8df683-8d3f-43dc-ac83-9ed2ba7d3587", + "start": { + "$date": "2022-02-24T02:00:15.000Z" + }, + "end": { + "$date": "2022-02-24T02:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45052581-1aa7-47e3-867b-564dcd84f2ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-24T02:02:27.000Z" + }, + "end": { + "$date": "2022-02-24T02:22:22.000Z" + }, + "events": [ + { + "uuid": "f0020daa-4108-4094-b16e-a19e2941f18d", + "start": { + "$date": "2022-02-24T02:02:27.000Z" + }, + "end": { + "$date": "2022-02-24T02:22:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c2ad7720-e9a2-4ced-a0ee-866f6eca13f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-24T02:07:41.000Z" + }, + "end": { + "$date": "2022-02-24T04:59:59.000Z" + }, + "events": [ + { + "uuid": "9b5f656f-535e-4487-ac43-8d8a57886e46", + "start": { + "$date": "2022-02-24T02:07:41.000Z" + }, + "end": { + "$date": "2022-02-24T04:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65e7f6da-79fc-40bd-8965-7c0abf019ae2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T02:35:27.000Z" + }, + "end": { + "$date": "2022-02-24T02:51:29.000Z" + }, + "events": [ + { + "uuid": "d1537f70-2660-402c-b4ee-1112a518ce8d", + "start": { + "$date": "2022-02-24T02:35:27.000Z" + }, + "end": { + "$date": "2022-02-24T02:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b4cb507-1087-4f21-8812-a1e235e608de", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T02:52:17.000Z" + }, + "end": { + "$date": "2022-02-24T02:53:38.000Z" + }, + "events": [ + { + "uuid": "bafbb624-0b1b-4fb8-aa58-753f6e73c531", + "start": { + "$date": "2022-02-24T02:52:17.000Z" + }, + "end": { + "$date": "2022-02-24T02:53:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32e1bd06-447b-4160-b2c1-a37b04efdc0f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T02:55:23.000Z" + }, + "end": { + "$date": "2022-02-24T03:11:25.000Z" + }, + "events": [ + { + "uuid": "1e2685d3-0a35-4e4b-8341-401f8e21a87e", + "start": { + "$date": "2022-02-24T02:55:23.000Z" + }, + "end": { + "$date": "2022-02-24T03:11:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "703b841e-42af-47d6-9248-7f108dc09941", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-24T02:56:44.000Z" + }, + "end": { + "$date": "2022-02-24T04:46:21.000Z" + }, + "events": [ + { + "uuid": "8fd05ab1-6b74-4ede-a946-c281a8cd6475", + "start": { + "$date": "2022-02-24T02:56:44.000Z" + }, + "end": { + "$date": "2022-02-24T04:46:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c97302e9-e002-42b7-982d-3a36659ff84c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-24T03:02:41.000Z" + }, + "end": { + "$date": "2022-02-24T03:26:42.000Z" + }, + "events": [ + { + "uuid": "312d91cd-23ad-4100-a2f0-482445dbb91e", + "start": { + "$date": "2022-02-24T03:02:41.000Z" + }, + "end": { + "$date": "2022-02-24T03:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "36d7d0fa-58c4-4436-9d85-d772874ecc04", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-24T03:34:27.000Z" + }, + "end": { + "$date": "2022-02-24T06:02:39.000Z" + }, + "events": [ + { + "uuid": "e518eb6d-02e9-4c3e-a57b-6fbd0aae63da", + "start": { + "$date": "2022-02-24T03:34:27.000Z" + }, + "end": { + "$date": "2022-02-24T06:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "de4a717b-8f06-41d5-9ae4-0b8e24e3656b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-24T04:24:19.000Z" + }, + "end": { + "$date": "2022-02-24T06:04:50.000Z" + }, + "events": [ + { + "uuid": "bf3fe9ad-40cb-4a4e-8a62-b4bc709c9de1", + "start": { + "$date": "2022-02-24T04:24:19.000Z" + }, + "end": { + "$date": "2022-02-24T06:04:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "844d664b-5ba7-4e3d-8c40-eef9afab7ac2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-24T05:00:44.000Z" + }, + "end": { + "$date": "2022-02-24T07:55:02.000Z" + }, + "events": [ + { + "uuid": "c7be6cc6-71e0-41c4-83c3-7c6501b55a38", + "start": { + "$date": "2022-02-24T05:00:44.000Z" + }, + "end": { + "$date": "2022-02-24T07:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d5ab9d20-ad82-409e-b384-aec4d60f3b67", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-24T05:26:05.000Z" + }, + "end": { + "$date": "2022-02-24T06:33:11.000Z" + }, + "events": [ + { + "uuid": "0b80ecba-c000-4c50-b30b-0c5fb0187e99", + "start": { + "$date": "2022-02-24T05:26:05.000Z" + }, + "end": { + "$date": "2022-02-24T06:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dd6b8fe4-50f4-47a9-adf5-1683c9c8ea81", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-24T06:46:32.000Z" + }, + "end": { + "$date": "2022-02-24T07:29:52.000Z" + }, + "events": [ + { + "uuid": "0dee6518-27c1-4100-aaed-ab6e110827cd", + "start": { + "$date": "2022-02-24T06:46:32.000Z" + }, + "end": { + "$date": "2022-02-24T07:29:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "168b5945-d4eb-4590-810d-31ca29bb80f2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-24T06:54:28.000Z" + }, + "end": { + "$date": "2022-02-24T07:08:20.000Z" + }, + "events": [ + { + "uuid": "9fe25245-3942-4e36-bef7-c0839e86fc17", + "start": { + "$date": "2022-02-24T06:54:28.000Z" + }, + "end": { + "$date": "2022-02-24T07:08:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcaf6bc2-516b-433b-937f-b4ab494b00c5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-24T06:54:41.000Z" + }, + "end": { + "$date": "2022-02-24T07:17:01.000Z" + }, + "events": [ + { + "uuid": "2dec9d49-ad48-49a5-8e0a-6d8495adb814", + "start": { + "$date": "2022-02-24T06:54:41.000Z" + }, + "end": { + "$date": "2022-02-24T07:17:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de13d4b0-e650-464f-9feb-52ca32635ae1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-24T07:19:31.000Z" + }, + "end": { + "$date": "2022-02-24T07:42:17.000Z" + }, + "events": [ + { + "uuid": "c92f1fd2-3242-43c9-a3c0-5692ac20c688", + "start": { + "$date": "2022-02-24T07:19:31.000Z" + }, + "end": { + "$date": "2022-02-24T07:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56548df7-8672-4ecf-b80b-3207ed3c2498", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-24T07:47:28.000Z" + }, + "end": { + "$date": "2022-02-24T08:02:03.000Z" + }, + "events": [ + { + "uuid": "2f542951-477c-464a-a412-1c5df65c8840", + "start": { + "$date": "2022-02-24T07:47:28.000Z" + }, + "end": { + "$date": "2022-02-24T08:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "9d48e4b7-0871-4909-9b93-5ca8e0933a9b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-24T07:48:53.000Z" + }, + "end": { + "$date": "2022-02-24T08:26:57.000Z" + }, + "events": [ + { + "uuid": "6c5c8713-33b3-4e6c-8737-9f515fcdc2f0", + "start": { + "$date": "2022-02-24T07:48:53.000Z" + }, + "end": { + "$date": "2022-02-24T08:26:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "3628e663-7c4f-4d60-8fe5-7c6b47596a6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-24T16:54:12.000Z" + }, + "end": { + "$date": "2022-02-24T18:27:03.000Z" + }, + "events": [ + { + "uuid": "835ae806-f11c-4f07-9b19-65f76a666643", + "start": { + "$date": "2022-02-24T16:54:12.000Z" + }, + "end": { + "$date": "2022-02-24T18:27:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb97a464-122a-438a-b6ef-afe2afd8eb9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-24T17:06:04.000Z" + }, + "end": { + "$date": "2022-02-24T17:26:59.000Z" + }, + "events": [ + { + "uuid": "f59bb538-8ac7-433d-a86e-9595f3ebab53", + "start": { + "$date": "2022-02-24T17:06:04.000Z" + }, + "end": { + "$date": "2022-02-24T17:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b6dac8bb-26a5-4d3a-b48a-cba88c00338c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-24T17:39:32.000Z" + }, + "end": { + "$date": "2022-02-24T17:55:51.000Z" + }, + "events": [ + { + "uuid": "4e7303ef-c3ab-4399-9872-3b9674234f4f", + "start": { + "$date": "2022-02-24T17:39:32.000Z" + }, + "end": { + "$date": "2022-02-24T17:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "af5e622f-398f-437c-aee4-df854856e558", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-24T17:42:27.000Z" + }, + "end": { + "$date": "2022-02-24T19:17:04.000Z" + }, + "events": [ + { + "uuid": "0498b37b-e354-45dd-812b-264189fc13b1", + "start": { + "$date": "2022-02-24T17:42:27.000Z" + }, + "end": { + "$date": "2022-02-24T19:17:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "755c3b8d-73d7-4653-b6c8-37abbc619528", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-24T18:28:04.000Z" + }, + "end": { + "$date": "2022-02-24T18:49:19.000Z" + }, + "events": [ + { + "uuid": "fd4e27d4-a166-4aeb-b874-c934b5d3d4ab", + "start": { + "$date": "2022-02-24T18:28:04.000Z" + }, + "end": { + "$date": "2022-02-24T18:49:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "262458a5-e3d7-41df-84e9-86bb87d4fd6b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-24T21:37:11.000Z" + }, + "end": { + "$date": "2022-02-25T00:05:19.000Z" + }, + "events": [ + { + "uuid": "80d94716-41cf-4f3e-bb35-278b23a8d839", + "start": { + "$date": "2022-02-24T21:37:11.000Z" + }, + "end": { + "$date": "2022-02-25T00:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "06a44f16-2d6d-4cc4-86b8-bc50d97a10b8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-24T22:23:57.000Z" + }, + "end": { + "$date": "2022-02-24T23:00:12.000Z" + }, + "events": [ + { + "uuid": "f1cc4c6f-9dcb-4c35-9486-3f26df8cb54a", + "start": { + "$date": "2022-02-24T22:23:57.000Z" + }, + "end": { + "$date": "2022-02-24T23:00:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fddbf37d-bcab-4dd7-82d1-70d9cc8b6a14", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-24T23:01:32.000Z" + }, + "end": { + "$date": "2022-02-25T01:26:47.000Z" + }, + "events": [ + { + "uuid": "4db0cf9e-215c-4ea0-8104-7afc2113f13a", + "start": { + "$date": "2022-02-24T23:01:32.000Z" + }, + "end": { + "$date": "2022-02-25T01:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "28d1983a-0cdb-4c35-a488-af85c13360da", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-24T23:20:30.000Z" + }, + "end": { + "$date": "2022-02-24T23:43:19.000Z" + }, + "events": [ + { + "uuid": "60c086ac-9ffd-44af-bb7c-6429959a6321", + "start": { + "$date": "2022-02-24T23:20:30.000Z" + }, + "end": { + "$date": "2022-02-24T23:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a3867b94-a1b1-426a-8c1c-46dd0299a365", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-24T22:09:39.000Z" + }, + "end": { + "$date": "2022-02-25T01:04:05.000Z" + }, + "events": [ + { + "uuid": "9b30cffd-82a7-4b11-9cdf-c174b9ad8a50", + "start": { + "$date": "2022-02-24T22:09:39.000Z" + }, + "end": { + "$date": "2022-02-24T22:48:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9f52be15-0a43-4526-99f8-cea605b628bb", + "start": { + "$date": "2022-02-24T22:48:39.000Z" + }, + "end": { + "$date": "2022-02-24T22:53:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c046624-f072-4830-bbae-83435971a683", + "start": { + "$date": "2022-02-24T22:53:39.000Z" + }, + "end": { + "$date": "2022-02-24T23:03:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9b3bdcde-8421-4470-8ca2-82d2ae5b34f5", + "start": { + "$date": "2022-02-24T23:03:39.000Z" + }, + "end": { + "$date": "2022-02-25T01:04:05.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "28727517-8179-470f-88a2-f8c642481d6b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-25T00:18:16.000Z" + }, + "end": { + "$date": "2022-02-25T03:03:07.000Z" + }, + "events": [ + { + "uuid": "7d96f1ac-37e2-4cd2-b702-2c008f0570f1", + "start": { + "$date": "2022-02-25T00:18:16.000Z" + }, + "end": { + "$date": "2022-02-25T03:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", + "uuid": "3d8e7380-4404-4843-9109-eeccf716f8c9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-25T00:24:33.000Z" + }, + "end": { + "$date": "2022-02-25T00:40:06.000Z" + }, + "events": [ + { + "uuid": "19642bcd-ff9e-4b54-821c-35e5e176ae2f", + "start": { + "$date": "2022-02-25T00:24:33.000Z" + }, + "end": { + "$date": "2022-02-25T00:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "4cf00e29-7f93-4445-adfa-623e16032a27", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-25T00:42:05.000Z" + }, + "end": { + "$date": "2022-02-25T01:23:13.000Z" + }, + "events": [ + { + "uuid": "1cb9e599-fd78-4aff-868e-a8a88ee7e197", + "start": { + "$date": "2022-02-25T00:42:05.000Z" + }, + "end": { + "$date": "2022-02-25T01:23:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f770ab76-bdf4-45df-abbb-e503236763d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-25T01:12:52.000Z" + }, + "end": { + "$date": "2022-02-25T04:36:58.000Z" + }, + "events": [ + { + "uuid": "12d344bf-7cf6-4992-ac21-d14433c74fcc", + "start": { + "$date": "2022-02-25T01:12:52.000Z" + }, + "end": { + "$date": "2022-02-25T04:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "95def494-258a-4c03-a192-fe37e075ede6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-25T01:23:26.000Z" + }, + "end": { + "$date": "2022-02-25T01:25:31.000Z" + }, + "events": [ + { + "uuid": "8eee2fc4-03cb-48bc-acf4-24dd265e3f22", + "start": { + "$date": "2022-02-25T01:23:26.000Z" + }, + "end": { + "$date": "2022-02-25T01:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a79612fc-c738-4746-b032-e8df13f63e3b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-25T01:23:43.000Z" + }, + "end": { + "$date": "2022-02-25T03:35:40.000Z" + }, + "events": [ + { + "uuid": "d90fc1d1-5d1f-48a5-9793-ec0c52676ac3", + "start": { + "$date": "2022-02-25T01:23:43.000Z" + }, + "end": { + "$date": "2022-02-25T03:35:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "125f427f-addf-4f09-ab98-2b9a61cf7742", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-02-25T01:24:38.000Z" + }, + "end": { + "$date": "2022-02-25T01:59:22.000Z" + }, + "events": [ + { + "uuid": "307b8a3e-5732-4312-8eb1-597ff38ed830", + "start": { + "$date": "2022-02-25T01:24:38.000Z" + }, + "end": { + "$date": "2022-02-25T01:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c2fda9b7-ecc6-4ded-842b-08ebdcd17d25", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T01:27:22.000Z" + }, + "end": { + "$date": "2022-02-25T04:45:01.000Z" + }, + "events": [ + { + "uuid": "b479077a-f26d-47c9-a531-2e28fdd766ba", + "start": { + "$date": "2022-02-25T01:27:22.000Z" + }, + "end": { + "$date": "2022-02-25T04:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "5c6245d2-642f-44d5-8daa-4222771645cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-25T02:21:44.000Z" + }, + "end": { + "$date": "2022-02-25T03:37:35.000Z" + }, + "events": [ + { + "uuid": "5459b80e-5d29-4827-8b90-3a7ddf0d6b52", + "start": { + "$date": "2022-02-25T02:21:44.000Z" + }, + "end": { + "$date": "2022-02-25T03:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "18364d4b-cc2b-4be9-a13d-81db6e542939", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-25T00:18:16.000Z" + }, + "end": { + "$date": "2022-02-25T06:26:01.000Z" + }, + "events": [ + { + "uuid": "e6db5725-2340-4f3c-9e9f-10597a8b4540", + "start": { + "$date": "2022-02-25T00:18:16.000Z" + }, + "end": { + "$date": "2022-02-25T02:21:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "defacfc7-b7b6-462b-b963-6cbfb76fa4c9", + "start": { + "$date": "2022-02-25T02:21:16.000Z" + }, + "end": { + "$date": "2022-02-25T02:22:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2411a573-979b-4c9c-bcc6-864a81a1a58e", + "start": { + "$date": "2022-02-25T02:22:16.000Z" + }, + "end": { + "$date": "2022-02-25T02:32:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4eab1bf4-dd23-4732-89e8-83146a559cfc", + "start": { + "$date": "2022-02-25T02:32:16.000Z" + }, + "end": { + "$date": "2022-02-25T02:56:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "37f18c24-d936-42cb-8788-a2cfa4d65b6a", + "start": { + "$date": "2022-02-25T02:56:16.000Z" + }, + "end": { + "$date": "2022-02-25T06:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb8809ac-cc94-43d1-a03d-f466f849e41f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T03:28:27.000Z" + }, + "end": { + "$date": "2022-02-25T03:52:33.000Z" + }, + "events": [ + { + "uuid": "29c438de-fdb9-4301-bb40-5db181b44527", + "start": { + "$date": "2022-02-25T03:28:27.000Z" + }, + "end": { + "$date": "2022-02-25T03:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "f4d8281f-8cce-4561-9676-49268138827a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-25T03:43:31.000Z" + }, + "end": { + "$date": "2022-02-25T05:05:46.000Z" + }, + "events": [ + { + "uuid": "8dd75093-9fa6-4060-ae74-e7c08a2b6d7b", + "start": { + "$date": "2022-02-25T03:43:31.000Z" + }, + "end": { + "$date": "2022-02-25T05:05:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "190cb565-3da7-4320-b8c6-836d577b6b11", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T03:53:28.000Z" + }, + "end": { + "$date": "2022-02-25T04:39:21.000Z" + }, + "events": [ + { + "uuid": "847ed4dc-7f15-4aa1-8998-11e6e422a7cc", + "start": { + "$date": "2022-02-25T03:53:28.000Z" + }, + "end": { + "$date": "2022-02-25T04:18:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2310110-9efc-4503-9aa8-da32be1b6c85", + "start": { + "$date": "2022-02-25T04:18:28.000Z" + }, + "end": { + "$date": "2022-02-25T04:30:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04ab09ce-bae1-43b6-85cf-bfc518776eea", + "start": { + "$date": "2022-02-25T04:30:28.000Z" + }, + "end": { + "$date": "2022-02-25T04:32:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f864397-ebd6-45bf-9ee3-8e37dd166187", + "start": { + "$date": "2022-02-25T04:32:28.000Z" + }, + "end": { + "$date": "2022-02-25T04:37:28.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dbad8b6d-ba88-4afd-848e-01cca1ae3b03", + "start": { + "$date": "2022-02-25T04:37:28.000Z" + }, + "end": { + "$date": "2022-02-25T04:39:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ebed3fd5-0b0d-4256-bc0a-359ac5bd0a32", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T03:56:07.000Z" + }, + "end": { + "$date": "2022-02-25T04:31:59.000Z" + }, + "events": [ + { + "uuid": "72be73f8-5269-4082-b3bd-865a1b33f21c", + "start": { + "$date": "2022-02-25T03:56:07.000Z" + }, + "end": { + "$date": "2022-02-25T04:31:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05f3bd1e-9119-4f1b-b7c4-a70eec60d9ac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-25T04:11:57.000Z" + }, + "end": { + "$date": "2022-02-25T04:39:28.000Z" + }, + "events": [ + { + "uuid": "09d1f86e-13a8-4b8d-9751-b74be9d6c361", + "start": { + "$date": "2022-02-25T04:11:57.000Z" + }, + "end": { + "$date": "2022-02-25T04:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ad2440df-2943-4631-9a75-4ac8cf60e273", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-25T04:34:03.000Z" + }, + "end": { + "$date": "2022-02-25T04:35:38.000Z" + }, + "events": [ + { + "uuid": "e1a1b1c6-41f4-4840-94f6-006847abd131", + "start": { + "$date": "2022-02-25T04:34:03.000Z" + }, + "end": { + "$date": "2022-02-25T04:35:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65266a7a-0e9e-4f4b-8e2b-bf85e5beb024", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T04:48:03.000Z" + }, + "end": { + "$date": "2022-02-25T04:56:33.000Z" + }, + "events": [ + { + "uuid": "d8923a79-2d29-4e66-8c17-05a214e56b4d", + "start": { + "$date": "2022-02-25T04:48:03.000Z" + }, + "end": { + "$date": "2022-02-25T04:56:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0338e311-e246-4529-8f09-11978a70253d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-25T04:40:42.000Z" + }, + "end": { + "$date": "2022-02-25T05:19:28.000Z" + }, + "events": [ + { + "uuid": "cf1937d3-2a18-42c3-8ed0-b859e677a44c", + "start": { + "$date": "2022-02-25T04:40:42.000Z" + }, + "end": { + "$date": "2022-02-25T05:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "692abab0-e2db-42e1-b97d-20d9c75f3fb5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-25T04:40:27.000Z" + }, + "end": { + "$date": "2022-02-25T06:46:53.000Z" + }, + "events": [ + { + "uuid": "256d6723-80bc-4ac1-8898-baf7d3fdbc93", + "start": { + "$date": "2022-02-25T04:40:27.000Z" + }, + "end": { + "$date": "2022-02-25T06:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "51d575ef-72ee-42ba-91ff-a88e084280c2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-25T04:42:49.000Z" + }, + "end": { + "$date": "2022-02-25T07:15:59.000Z" + }, + "events": [ + { + "uuid": "726118ea-3c05-4536-80d9-aa142359c6b4", + "start": { + "$date": "2022-02-25T04:42:49.000Z" + }, + "end": { + "$date": "2022-02-25T07:15:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9b833467-4191-4db6-91f3-dc7479c302be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T04:54:41.000Z" + }, + "end": { + "$date": "2022-02-25T05:11:13.000Z" + }, + "events": [ + { + "uuid": "921d854a-b493-4c11-a527-0a5eecc0adb1", + "start": { + "$date": "2022-02-25T04:54:41.000Z" + }, + "end": { + "$date": "2022-02-25T05:11:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d95c80a7-ab47-4132-b77a-f976083e214d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T04:59:23.000Z" + }, + "end": { + "$date": "2022-02-25T05:19:04.000Z" + }, + "events": [ + { + "uuid": "521de68b-0794-48b2-811f-c9fa4128365b", + "start": { + "$date": "2022-02-25T04:59:23.000Z" + }, + "end": { + "$date": "2022-02-25T05:19:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0092e312-1b56-4f22-bf5b-ba62cb98cf77", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T05:21:09.000Z" + }, + "end": { + "$date": "2022-02-25T05:35:50.000Z" + }, + "events": [ + { + "uuid": "8455026d-56ea-40a1-89e3-96c02a8fd713", + "start": { + "$date": "2022-02-25T05:21:09.000Z" + }, + "end": { + "$date": "2022-02-25T05:35:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2886db33-494b-4358-b70b-0524d3d5db8f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-25T05:20:44.000Z" + }, + "end": { + "$date": "2022-02-25T06:00:20.000Z" + }, + "events": [ + { + "uuid": "a4e605d1-9126-40f3-8195-c0f28fb2003e", + "start": { + "$date": "2022-02-25T05:20:44.000Z" + }, + "end": { + "$date": "2022-02-25T06:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df6eefc0-2c47-47cb-a64b-e556184b6c58", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T05:37:49.000Z" + }, + "end": { + "$date": "2022-02-25T06:01:40.000Z" + }, + "events": [ + { + "uuid": "1ca1a03f-25a2-4ea3-bda8-26e5c7538791", + "start": { + "$date": "2022-02-25T05:37:49.000Z" + }, + "end": { + "$date": "2022-02-25T06:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ee7379c-1e63-4ff6-8554-7249ed59fc60", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-25T05:52:56.000Z" + }, + "end": { + "$date": "2022-02-25T10:05:55.000Z" + }, + "events": [ + { + "uuid": "5a669f2d-6181-4663-ab02-26e9c816c462", + "start": { + "$date": "2022-02-25T05:52:56.000Z" + }, + "end": { + "$date": "2022-02-25T10:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f56d98d0-3534-4b77-bffb-32383046af05", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-25T05:59:48.000Z" + }, + "end": { + "$date": "2022-02-25T08:28:11.000Z" + }, + "events": [ + { + "uuid": "2a78486f-2c34-41ce-b369-e053f468c60f", + "start": { + "$date": "2022-02-25T05:59:48.000Z" + }, + "end": { + "$date": "2022-02-25T06:05:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d1a9ef6a-7ff8-4252-8a14-7069393580a6", + "start": { + "$date": "2022-02-25T06:05:48.000Z" + }, + "end": { + "$date": "2022-02-25T06:10:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f0f72e24-5e76-4d90-87a7-5728846cbf5b", + "start": { + "$date": "2022-02-25T06:10:48.000Z" + }, + "end": { + "$date": "2022-02-25T07:51:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "18d232de-3d7f-4dbb-835e-cb1bf6dc342a", + "start": { + "$date": "2022-02-25T07:51:48.000Z" + }, + "end": { + "$date": "2022-02-25T07:58:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c106c91-2378-4802-b42a-8787f8d20aed", + "start": { + "$date": "2022-02-25T07:58:48.000Z" + }, + "end": { + "$date": "2022-02-25T08:28:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "829bf290-a8a2-4ead-8658-996a25cb9543", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-25T06:00:50.000Z" + }, + "end": { + "$date": "2022-02-25T06:04:40.000Z" + }, + "events": [ + { + "uuid": "5a17d397-6f1a-4c1a-8268-374e66353b97", + "start": { + "$date": "2022-02-25T06:00:50.000Z" + }, + "end": { + "$date": "2022-02-25T06:04:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f801a84-1148-4124-8e76-453864dbe6cb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-25T06:07:05.000Z" + }, + "end": { + "$date": "2022-02-25T06:28:01.000Z" + }, + "events": [ + { + "uuid": "2656e97a-991a-452b-a6d0-ee610d5ff3ed", + "start": { + "$date": "2022-02-25T06:07:05.000Z" + }, + "end": { + "$date": "2022-02-25T06:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "92f1497e-6e6c-49bb-9f51-6bc8970b44ec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T06:11:49.000Z" + }, + "end": { + "$date": "2022-02-25T06:48:57.000Z" + }, + "events": [ + { + "uuid": "dca71237-5765-4feb-90b8-a74859befcea", + "start": { + "$date": "2022-02-25T06:11:49.000Z" + }, + "end": { + "$date": "2022-02-25T06:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2dd3c1da-4945-4781-8545-7251f4a27729", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T06:50:06.000Z" + }, + "end": { + "$date": "2022-02-25T06:57:33.000Z" + }, + "events": [ + { + "uuid": "1ada71be-f40a-4b25-9f00-cb03e00abff0", + "start": { + "$date": "2022-02-25T06:50:06.000Z" + }, + "end": { + "$date": "2022-02-25T06:57:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0327cf4e-9f34-4ab8-bc12-e148b5afcde7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T06:58:48.000Z" + }, + "end": { + "$date": "2022-02-25T07:09:44.000Z" + }, + "events": [ + { + "uuid": "c534d81e-b4e4-4293-b44b-69cebee3cada", + "start": { + "$date": "2022-02-25T06:58:48.000Z" + }, + "end": { + "$date": "2022-02-25T07:09:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1844910f-b185-4a09-bb62-a15507018edd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-25T05:59:48.000Z" + }, + "end": { + "$date": "2022-02-25T10:10:09.000Z" + }, + "events": [ + { + "uuid": "62e50408-be4d-4853-b03a-440edb5a23f7", + "start": { + "$date": "2022-02-25T05:59:48.000Z" + }, + "end": { + "$date": "2022-02-25T10:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f2668e8-55e7-4278-8fdd-d261950c19d0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T17:01:44.000Z" + }, + "end": { + "$date": "2022-02-25T17:20:55.000Z" + }, + "events": [ + { + "uuid": "f9cfb0f8-c49a-4250-a4bd-22d3d75f413f", + "start": { + "$date": "2022-02-25T17:01:44.000Z" + }, + "end": { + "$date": "2022-02-25T17:20:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6885c25e-c922-4552-984b-3114f0e5ecce", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T17:22:35.000Z" + }, + "end": { + "$date": "2022-02-25T17:39:01.000Z" + }, + "events": [ + { + "uuid": "32cca158-cc57-47ad-9ae3-5f4aa385d3ca", + "start": { + "$date": "2022-02-25T17:22:35.000Z" + }, + "end": { + "$date": "2022-02-25T17:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95a4e6a3-b9c8-4740-afa4-d563b3bd83eb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T17:41:05.000Z" + }, + "end": { + "$date": "2022-02-25T17:58:07.000Z" + }, + "events": [ + { + "uuid": "cb095483-0a60-486d-89ab-447ec81e15a6", + "start": { + "$date": "2022-02-25T17:41:05.000Z" + }, + "end": { + "$date": "2022-02-25T17:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f6f5649-bb42-4eb3-af29-a7645c4102ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T18:07:27.000Z" + }, + "end": { + "$date": "2022-02-25T18:26:23.000Z" + }, + "events": [ + { + "uuid": "ad443c76-a903-4229-a16c-17bfb2ab1049", + "start": { + "$date": "2022-02-25T18:07:27.000Z" + }, + "end": { + "$date": "2022-02-25T18:26:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c26daf3c-fc72-4cf7-85c0-9863813d07d5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-25T19:17:35.000Z" + }, + "end": { + "$date": "2022-02-25T22:26:47.000Z" + }, + "events": [ + { + "uuid": "2fc29070-3f06-4c53-8b56-2461352772da", + "start": { + "$date": "2022-02-25T19:17:35.000Z" + }, + "end": { + "$date": "2022-02-25T19:59:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "382edecc-17f2-49d8-bb32-a91a12ba3961", + "start": { + "$date": "2022-02-25T19:59:35.000Z" + }, + "end": { + "$date": "2022-02-25T20:14:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61322652-e738-4cbc-ae43-1b45f1dcc1c5", + "start": { + "$date": "2022-02-25T20:14:35.000Z" + }, + "end": { + "$date": "2022-02-25T20:24:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c52d74ae-619e-4367-9d9e-d1da5e8f0e46", + "start": { + "$date": "2022-02-25T20:24:35.000Z" + }, + "end": { + "$date": "2022-02-25T20:53:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "27db8ad2-b6e4-423f-aa44-b83aa04475f6", + "start": { + "$date": "2022-02-25T20:53:35.000Z" + }, + "end": { + "$date": "2022-02-25T21:03:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6357275d-4534-4ad2-9572-68733a4cbf00", + "start": { + "$date": "2022-02-25T21:03:35.000Z" + }, + "end": { + "$date": "2022-02-25T22:26:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "5a7fb495-31a8-407f-84a4-e16b2bb53e12", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T19:47:19.000Z" + }, + "end": { + "$date": "2022-02-25T20:03:30.000Z" + }, + "events": [ + { + "uuid": "2c7579ff-8b4a-4b34-b1e1-5a038ef699c2", + "start": { + "$date": "2022-02-25T19:47:19.000Z" + }, + "end": { + "$date": "2022-02-25T20:03:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b6a9a5b0-e4b6-4db2-9d3c-e0b915e1fa4d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-25T21:05:53.000Z" + }, + "end": { + "$date": "2022-02-25T22:14:44.000Z" + }, + "events": [ + { + "uuid": "2741e58c-fc89-41e3-96e5-13cf9b2399f0", + "start": { + "$date": "2022-02-25T21:05:53.000Z" + }, + "end": { + "$date": "2022-02-25T22:14:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eb9c9655-49f5-4d32-93d4-d8de56b11a50", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T22:24:57.000Z" + }, + "end": { + "$date": "2022-02-25T23:03:26.000Z" + }, + "events": [ + { + "uuid": "27090954-7e4c-46ec-b392-839867ca294f", + "start": { + "$date": "2022-02-25T22:24:57.000Z" + }, + "end": { + "$date": "2022-02-25T23:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "2d3bd672-384d-4949-8bdd-b7c62563f770", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T23:03:46.000Z" + }, + "end": { + "$date": "2022-02-25T23:14:52.000Z" + }, + "events": [ + { + "uuid": "d6cccfa8-847c-4487-8578-e8fb08b026a4", + "start": { + "$date": "2022-02-25T23:03:46.000Z" + }, + "end": { + "$date": "2022-02-25T23:14:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2d5f8e7b-db1b-4028-bbce-ff73f134a808", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-25T23:15:03.000Z" + }, + "end": { + "$date": "2022-02-26T00:22:00.000Z" + }, + "events": [ + { + "uuid": "659ea72d-7104-4393-973a-903b11b11b15", + "start": { + "$date": "2022-02-25T23:15:03.000Z" + }, + "end": { + "$date": "2022-02-26T00:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "16f89b41-fc3c-468f-af5c-3767d20b2797", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T00:22:36.000Z" + }, + "end": { + "$date": "2022-02-26T00:43:47.000Z" + }, + "events": [ + { + "uuid": "9bf99367-ce41-4380-874f-aeff3eeb9ccc", + "start": { + "$date": "2022-02-26T00:22:36.000Z" + }, + "end": { + "$date": "2022-02-26T00:43:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "390fea3e-e9cc-4ed2-b2c3-cf086bf51727", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T00:25:10.000Z" + }, + "end": { + "$date": "2022-02-26T01:43:40.000Z" + }, + "events": [ + { + "uuid": "6cfe7093-6290-4f3f-b0db-93e60a5c3f51", + "start": { + "$date": "2022-02-26T00:25:10.000Z" + }, + "end": { + "$date": "2022-02-26T01:27:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aed566dd-a808-476b-88f8-08857c1c8efb", + "start": { + "$date": "2022-02-26T01:27:10.000Z" + }, + "end": { + "$date": "2022-02-26T01:32:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "71894467-9339-4d7e-b390-c4e0cf714ba0", + "start": { + "$date": "2022-02-26T01:32:10.000Z" + }, + "end": { + "$date": "2022-02-26T01:42:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4462b4ac-7eb5-4500-a9ec-b32f904a157e", + "start": { + "$date": "2022-02-26T01:42:10.000Z" + }, + "end": { + "$date": "2022-02-26T01:43:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", + "uuid": "0489e066-889f-4b6b-853a-2c2abbfc1ac8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T00:45:42.000Z" + }, + "end": { + "$date": "2022-02-26T00:52:32.000Z" + }, + "events": [ + { + "uuid": "962793b9-38b0-4079-a506-6d348ae54577", + "start": { + "$date": "2022-02-26T00:45:42.000Z" + }, + "end": { + "$date": "2022-02-26T00:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", + "uuid": "fa7c3317-cac7-4e36-b9f5-78f8b3f86cdb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-26T00:46:48.000Z" + }, + "end": { + "$date": "2022-02-26T01:05:59.000Z" + }, + "events": [ + { + "uuid": "2a6ae41b-6c83-4260-9c9e-f7bd74dbed93", + "start": { + "$date": "2022-02-26T00:46:48.000Z" + }, + "end": { + "$date": "2022-02-26T01:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "eb6c4091-3ab5-47ba-98a6-524b012bd0c1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-26T00:47:04.000Z" + }, + "end": { + "$date": "2022-02-26T06:24:08.000Z" + }, + "events": [ + { + "uuid": "1acd518d-af1f-4d98-9765-037c131a616c", + "start": { + "$date": "2022-02-26T00:47:04.000Z" + }, + "end": { + "$date": "2022-02-26T03:49:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ee3248cd-b72e-4d1a-b43c-11636328e300", + "start": { + "$date": "2022-02-26T03:49:04.000Z" + }, + "end": { + "$date": "2022-02-26T04:05:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "76c403ee-9832-45d8-af70-940629b52dfe", + "start": { + "$date": "2022-02-26T04:05:04.000Z" + }, + "end": { + "$date": "2022-02-26T04:15:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "131fbdc9-f303-4a17-ac76-e6298d6e69ca", + "start": { + "$date": "2022-02-26T04:15:04.000Z" + }, + "end": { + "$date": "2022-02-26T04:16:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "936ca5bb-1627-4a3a-aa27-24bb26ce71c1", + "start": { + "$date": "2022-02-26T04:16:04.000Z" + }, + "end": { + "$date": "2022-02-26T04:27:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c702258e-d745-4352-bfc5-50939d057fab", + "start": { + "$date": "2022-02-26T04:27:04.000Z" + }, + "end": { + "$date": "2022-02-26T05:01:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cb844448-4bcc-44f6-8fc7-e7baa84f4cc7", + "start": { + "$date": "2022-02-26T05:01:04.000Z" + }, + "end": { + "$date": "2022-02-26T06:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e3ce614d-cffe-41fb-84a4-1014b5187d2b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-26T01:07:36.000Z" + }, + "end": { + "$date": "2022-02-26T02:38:00.000Z" + }, + "events": [ + { + "uuid": "34715624-36df-4c29-912c-af74f4124592", + "start": { + "$date": "2022-02-26T01:07:36.000Z" + }, + "end": { + "$date": "2022-02-26T02:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "98d56a04-dd9b-476f-bb60-a3596910a136", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T01:15:14.000Z" + }, + "end": { + "$date": "2022-02-26T01:19:49.000Z" + }, + "events": [ + { + "uuid": "9bf880ea-effa-4e1e-b665-77c5d5774927", + "start": { + "$date": "2022-02-26T01:15:14.000Z" + }, + "end": { + "$date": "2022-02-26T01:19:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e4f65a0e-d69e-4308-b9eb-4f15d896d191", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T01:18:12.000Z" + }, + "end": { + "$date": "2022-02-26T01:25:08.000Z" + }, + "events": [ + { + "uuid": "59a08c89-4b12-4c42-b72b-f566bd426574", + "start": { + "$date": "2022-02-26T01:18:12.000Z" + }, + "end": { + "$date": "2022-02-26T01:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "141ab70c-5fac-47f6-8e01-39aba9c61593", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T01:26:45.000Z" + }, + "end": { + "$date": "2022-02-26T02:23:52.000Z" + }, + "events": [ + { + "uuid": "a48e5527-8301-40b8-9664-4829f5ca8fac", + "start": { + "$date": "2022-02-26T01:26:45.000Z" + }, + "end": { + "$date": "2022-02-26T02:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "b66031fa-922c-466c-8c13-50fbcdc87aef", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T01:26:53.000Z" + }, + "end": { + "$date": "2022-02-26T01:30:39.000Z" + }, + "events": [ + { + "uuid": "703c2386-d298-464a-a6e8-653735452b9e", + "start": { + "$date": "2022-02-26T01:26:53.000Z" + }, + "end": { + "$date": "2022-02-26T01:30:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff1da608-99d0-4206-a435-c65560240e08", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T01:31:09.000Z" + }, + "end": { + "$date": "2022-02-26T02:00:48.000Z" + }, + "events": [ + { + "uuid": "ec0c8b1e-a48f-4abe-8ed9-23645f98e3df", + "start": { + "$date": "2022-02-26T01:31:09.000Z" + }, + "end": { + "$date": "2022-02-26T02:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bd999bed-f895-4545-8e96-f7a8a88c5ecb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T01:38:47.000Z" + }, + "end": { + "$date": "2022-02-26T02:51:00.000Z" + }, + "events": [ + { + "uuid": "3e229f28-b742-4460-ac5e-a8a81d7cdacc", + "start": { + "$date": "2022-02-26T01:38:47.000Z" + }, + "end": { + "$date": "2022-02-26T02:51:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "945a8f00-24e3-4018-81e2-a3ed16ceda04", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-26T01:45:52.000Z" + }, + "end": { + "$date": "2022-02-26T02:00:54.000Z" + }, + "events": [ + { + "uuid": "75eb9fc9-45f8-4c7a-9073-136c4360246a", + "start": { + "$date": "2022-02-26T01:45:52.000Z" + }, + "end": { + "$date": "2022-02-26T02:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4830082c-32fc-4f6c-a727-330ab7a2d85f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T01:47:32.000Z" + }, + "end": { + "$date": "2022-02-26T04:14:02.000Z" + }, + "events": [ + { + "uuid": "95bb183b-179f-49fc-a916-d82733f3b3c2", + "start": { + "$date": "2022-02-26T01:47:32.000Z" + }, + "end": { + "$date": "2022-02-26T04:14:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b233bfe3-2dc2-4f12-a265-834b44809a8b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T02:32:03.000Z" + }, + "end": { + "$date": "2022-02-26T02:36:28.000Z" + }, + "events": [ + { + "uuid": "b1871c82-a4f9-4fa8-8cd7-7092f73839f8", + "start": { + "$date": "2022-02-26T02:32:03.000Z" + }, + "end": { + "$date": "2022-02-26T02:36:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "7a0ed8f9-5f9b-4746-81f3-d9840e6bbcb2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-26T02:39:14.000Z" + }, + "end": { + "$date": "2022-02-26T03:21:23.000Z" + }, + "events": [ + { + "uuid": "b966d2a1-67a5-4fbc-bb36-246c3b72dded", + "start": { + "$date": "2022-02-26T02:39:14.000Z" + }, + "end": { + "$date": "2022-02-26T03:21:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "05408ac0-4605-47ef-a2d1-60d49ca195c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-26T02:39:18.000Z" + }, + "end": { + "$date": "2022-02-26T03:19:40.000Z" + }, + "events": [ + { + "uuid": "f8dc69c3-3efb-4089-b482-f840402c049e", + "start": { + "$date": "2022-02-26T02:39:18.000Z" + }, + "end": { + "$date": "2022-02-26T03:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e1a472ce-d7b3-46b3-a2d7-3aa1a16258f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-26T02:53:15.000Z" + }, + "end": { + "$date": "2022-02-26T06:06:57.000Z" + }, + "events": [ + { + "uuid": "960fe18e-c04e-4ba3-b3b2-de2166354754", + "start": { + "$date": "2022-02-26T02:53:15.000Z" + }, + "end": { + "$date": "2022-02-26T06:06:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "16e32b83-06a7-44fa-b15e-b0475c8f6a0d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T02:57:31.000Z" + }, + "end": { + "$date": "2022-02-26T03:14:17.000Z" + }, + "events": [ + { + "uuid": "3bddbbca-1724-47dd-a104-3cfa073cb83c", + "start": { + "$date": "2022-02-26T02:57:31.000Z" + }, + "end": { + "$date": "2022-02-26T03:14:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fda453a-9cb4-4c5c-b03c-6ec65113f381", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T03:15:21.000Z" + }, + "end": { + "$date": "2022-02-26T03:29:02.000Z" + }, + "events": [ + { + "uuid": "3d8f5eab-1bf2-4a4f-a407-b781edcf0a6f", + "start": { + "$date": "2022-02-26T03:15:21.000Z" + }, + "end": { + "$date": "2022-02-26T03:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "360d4866-2ccd-41bb-a98c-d7acb1c6771f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-26T03:19:54.000Z" + }, + "end": { + "$date": "2022-02-26T07:48:39.000Z" + }, + "events": [ + { + "uuid": "8428bbef-aa1f-4240-8711-381426ed7613", + "start": { + "$date": "2022-02-26T03:19:54.000Z" + }, + "end": { + "$date": "2022-02-26T07:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "002c6c05-82d6-494d-879f-d2c26327919f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-26T03:21:36.000Z" + }, + "end": { + "$date": "2022-02-26T05:49:12.000Z" + }, + "events": [ + { + "uuid": "362a3145-065f-4fc9-9343-0e921f0325d8", + "start": { + "$date": "2022-02-26T03:21:36.000Z" + }, + "end": { + "$date": "2022-02-26T05:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68b29e64-9a3a-44ab-a3ae-326a75737ff0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T03:29:27.000Z" + }, + "end": { + "$date": "2022-02-26T04:22:35.000Z" + }, + "events": [ + { + "uuid": "bbd99b5c-9f15-49fb-b3ba-89ad9d794401", + "start": { + "$date": "2022-02-26T03:29:27.000Z" + }, + "end": { + "$date": "2022-02-26T04:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f98be40a-bb81-4a60-8b05-d542a2bb8b51", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-26T03:32:41.000Z" + }, + "end": { + "$date": "2022-02-26T03:59:37.000Z" + }, + "events": [ + { + "uuid": "48c345e4-02cb-449a-bde7-b9e3a25f7189", + "start": { + "$date": "2022-02-26T03:32:41.000Z" + }, + "end": { + "$date": "2022-02-26T03:59:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4eb2c0e5-de84-40eb-b4e5-f1695308a3e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-26T03:36:47.000Z" + }, + "end": { + "$date": "2022-02-26T04:29:54.000Z" + }, + "events": [ + { + "uuid": "ca537e88-b2ca-4c47-acfb-77f300809f15", + "start": { + "$date": "2022-02-26T03:36:47.000Z" + }, + "end": { + "$date": "2022-02-26T04:29:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "863c3fd8-8a36-45a4-a694-c01595391c13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T03:44:29.000Z" + }, + "end": { + "$date": "2022-02-26T06:06:28.000Z" + }, + "events": [ + { + "uuid": "8674a801-1575-4d3c-ad63-75ec28a00915", + "start": { + "$date": "2022-02-26T03:44:29.000Z" + }, + "end": { + "$date": "2022-02-26T06:06:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "52128173-3d79-49c1-a581-391b2034cb3d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T04:15:02.000Z" + }, + "end": { + "$date": "2022-02-26T04:55:09.000Z" + }, + "events": [ + { + "uuid": "a101eadc-bbdd-4139-82c0-ca2708da103d", + "start": { + "$date": "2022-02-26T04:15:02.000Z" + }, + "end": { + "$date": "2022-02-26T04:55:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f28fb286-8552-4eea-ad7b-92899d5cf6ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T04:55:15.000Z" + }, + "end": { + "$date": "2022-02-26T05:00:10.000Z" + }, + "events": [ + { + "uuid": "46eec712-74a7-4aca-8792-09c1f97e90fc", + "start": { + "$date": "2022-02-26T04:55:15.000Z" + }, + "end": { + "$date": "2022-02-26T05:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d111c0ef-c5c2-4cf9-824a-7abda3ed6519", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T05:00:21.000Z" + }, + "end": { + "$date": "2022-02-26T08:09:26.000Z" + }, + "events": [ + { + "uuid": "200feec5-529b-42ac-9b11-a70b1f869747", + "start": { + "$date": "2022-02-26T05:00:21.000Z" + }, + "end": { + "$date": "2022-02-26T08:09:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c03c1554-7d61-4119-acaa-249bf6b94545", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T05:07:31.000Z" + }, + "end": { + "$date": "2022-02-26T05:40:12.000Z" + }, + "events": [ + { + "uuid": "8affbe7e-40ad-4734-bbda-f716cd918b0e", + "start": { + "$date": "2022-02-26T05:07:31.000Z" + }, + "end": { + "$date": "2022-02-26T05:40:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bc0b1fd9-01c2-4cbe-9095-869ebc250f3b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T05:41:08.000Z" + }, + "end": { + "$date": "2022-02-26T06:12:55.000Z" + }, + "events": [ + { + "uuid": "8deee2b9-1731-4de1-8373-2128cdb8dfaa", + "start": { + "$date": "2022-02-26T05:41:08.000Z" + }, + "end": { + "$date": "2022-02-26T06:12:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "369d19f6-2eca-4236-85e7-f7a64d963a75", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-02-26T05:51:32.000Z" + }, + "end": { + "$date": "2022-02-26T06:29:55.000Z" + }, + "events": [ + { + "uuid": "5e00a860-daef-4792-8b61-6595f7730ef1", + "start": { + "$date": "2022-02-26T05:51:32.000Z" + }, + "end": { + "$date": "2022-02-26T06:29:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5562b957-ff36-4e6e-a076-e0b3006d3921", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-26T06:03:25.000Z" + }, + "end": { + "$date": "2022-02-26T07:44:43.000Z" + }, + "events": [ + { + "uuid": "7d9e372e-8952-4aef-a6ee-5be7b9b14f1f", + "start": { + "$date": "2022-02-26T06:03:25.000Z" + }, + "end": { + "$date": "2022-02-26T07:44:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7271a2c4-64f4-4a23-ab07-977ba892ebac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T06:15:36.000Z" + }, + "end": { + "$date": "2022-02-26T06:32:29.000Z" + }, + "events": [ + { + "uuid": "2fc38518-e929-438d-8971-ce5ae55fdb9b", + "start": { + "$date": "2022-02-26T06:15:36.000Z" + }, + "end": { + "$date": "2022-02-26T06:32:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "6ed72bd4-aa70-4428-a963-5ab4e9a9c509", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-26T06:24:23.000Z" + }, + "end": { + "$date": "2022-02-26T06:25:54.000Z" + }, + "events": [ + { + "uuid": "e99d0d76-54e7-44ef-8c80-c1d9e7f1d7ab", + "start": { + "$date": "2022-02-26T06:24:23.000Z" + }, + "end": { + "$date": "2022-02-26T06:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d1685421-b046-4753-93f0-cd52687678a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-26T06:26:18.000Z" + }, + "end": { + "$date": "2022-02-26T07:18:41.000Z" + }, + "events": [ + { + "uuid": "00dab864-0edf-4122-b39f-30368550f2f5", + "start": { + "$date": "2022-02-26T06:26:18.000Z" + }, + "end": { + "$date": "2022-02-26T07:08:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8bbecc40-0737-452f-9c22-a5be9d0d62f7", + "start": { + "$date": "2022-02-26T07:08:18.000Z" + }, + "end": { + "$date": "2022-02-26T07:17:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9d0c8e9a-2cb8-4e2b-a066-ed5d04740b92", + "start": { + "$date": "2022-02-26T07:17:18.000Z" + }, + "end": { + "$date": "2022-02-26T07:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "62029a28-eced-44ed-a38a-55c7d84b9d70", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T06:33:46.000Z" + }, + "end": { + "$date": "2022-02-26T07:24:40.000Z" + }, + "events": [ + { + "uuid": "1cff7701-c853-4661-9259-55de0b46df17", + "start": { + "$date": "2022-02-26T06:33:46.000Z" + }, + "end": { + "$date": "2022-02-26T07:24:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b992b050-8ffc-48de-8a4b-b976043be2d0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-26T07:00:31.000Z" + }, + "end": { + "$date": "2022-02-26T10:34:06.000Z" + }, + "events": [ + { + "uuid": "3cd8aca6-56f9-4c19-827a-64a37c1bff95", + "start": { + "$date": "2022-02-26T07:00:31.000Z" + }, + "end": { + "$date": "2022-02-26T10:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "4809ad33-4866-463b-a65e-cf06dc1361c3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T15:09:16.000Z" + }, + "end": { + "$date": "2022-02-26T15:10:44.000Z" + }, + "events": [ + { + "uuid": "4ecf8fc9-7c27-4f2f-b9ad-7683e7cf167f", + "start": { + "$date": "2022-02-26T15:09:16.000Z" + }, + "end": { + "$date": "2022-02-26T15:10:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "bc76ad81-83ad-4db3-a2ec-f3b32d4cc006", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T15:10:56.000Z" + }, + "end": { + "$date": "2022-02-26T15:46:34.000Z" + }, + "events": [ + { + "uuid": "9e4588f3-56f3-4d8b-a1ef-4b4c41f64771", + "start": { + "$date": "2022-02-26T15:10:56.000Z" + }, + "end": { + "$date": "2022-02-26T15:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b4e865fb-72da-43ee-ad43-eef521ade238", + "uuid": "f76b4dec-9e03-44c0-9914-12c2c74a833e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T15:50:54.000Z" + }, + "end": { + "$date": "2022-02-26T16:06:05.000Z" + }, + "events": [ + { + "uuid": "16d22b92-d720-434b-a648-39b1ba9404ab", + "start": { + "$date": "2022-02-26T15:50:54.000Z" + }, + "end": { + "$date": "2022-02-26T16:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75a8d338-a1c2-432b-ad58-b7ac74ed58d9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T16:24:24.000Z" + }, + "end": { + "$date": "2022-02-26T16:51:46.000Z" + }, + "events": [ + { + "uuid": "dac089bd-15b5-4a52-bf3d-2d2f114ea425", + "start": { + "$date": "2022-02-26T16:24:24.000Z" + }, + "end": { + "$date": "2022-02-26T16:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7c664e88-8e13-474e-9a26-71490cb16835", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-26T16:30:58.000Z" + }, + "end": { + "$date": "2022-02-26T17:45:39.000Z" + }, + "events": [ + { + "uuid": "91c267e8-7c4a-4551-9bf3-6d56979c2b3c", + "start": { + "$date": "2022-02-26T16:30:58.000Z" + }, + "end": { + "$date": "2022-02-26T17:45:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "798eb481-1427-4d05-a500-ddf32cd006a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T16:40:33.000Z" + }, + "end": { + "$date": "2022-02-26T17:08:00.000Z" + }, + "events": [ + { + "uuid": "a4a32f6e-ac94-4d3e-8d9b-48ce6c5c6113", + "start": { + "$date": "2022-02-26T16:40:33.000Z" + }, + "end": { + "$date": "2022-02-26T17:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2053935-1fc2-47e0-9a1d-2de819939e24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T16:56:30.000Z" + }, + "end": { + "$date": "2022-02-26T17:28:23.000Z" + }, + "events": [ + { + "uuid": "40b1ea23-4dbe-47d0-b37b-4c51daaa5de2", + "start": { + "$date": "2022-02-26T16:56:30.000Z" + }, + "end": { + "$date": "2022-02-26T17:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "59dd2f6b-9395-4a5f-ac77-fa1e29c27ef6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-26T17:23:46.000Z" + }, + "end": { + "$date": "2022-02-26T17:34:27.000Z" + }, + "events": [ + { + "uuid": "e2a903ba-cbd7-450b-b25a-df11b657239f", + "start": { + "$date": "2022-02-26T17:23:46.000Z" + }, + "end": { + "$date": "2022-02-26T17:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a63502d5-58ad-4f92-9a09-f4d2e4c0593c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T17:46:52.000Z" + }, + "end": { + "$date": "2022-02-26T18:06:53.000Z" + }, + "events": [ + { + "uuid": "9c8d943c-fe66-4a2d-842f-85184797c44b", + "start": { + "$date": "2022-02-26T17:46:52.000Z" + }, + "end": { + "$date": "2022-02-26T18:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "31f60bf9-511a-43e7-aa92-e317bddb6ecd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T18:39:52.000Z" + }, + "end": { + "$date": "2022-02-26T19:00:29.000Z" + }, + "events": [ + { + "uuid": "d289f151-a0ab-4f03-b220-63e5df0a9365", + "start": { + "$date": "2022-02-26T18:39:52.000Z" + }, + "end": { + "$date": "2022-02-26T19:00:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75a2a85c-8f99-4a62-982c-43a46a859192", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T20:03:38.000Z" + }, + "end": { + "$date": "2022-02-26T20:27:55.000Z" + }, + "events": [ + { + "uuid": "39585f1f-bce7-4cbb-b802-c052d6d8ed83", + "start": { + "$date": "2022-02-26T20:03:38.000Z" + }, + "end": { + "$date": "2022-02-26T20:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "535d2ecd-f282-4e57-b1b0-f9e26fb5a37d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-26T20:07:24.000Z" + }, + "end": { + "$date": "2022-02-27T20:42:28.000Z" + }, + "events": [ + { + "uuid": "9174aa58-a91c-4dd2-9ca8-9fd5aff5335b", + "start": { + "$date": "2022-02-26T20:07:24.000Z" + }, + "end": { + "$date": "2022-02-26T21:26:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "203720df-ccff-44ea-b9db-9f2f10e7778d", + "start": { + "$date": "2022-02-26T21:26:24.000Z" + }, + "end": { + "$date": "2022-02-26T21:31:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f0eee4a9-6fc4-45e4-9c84-b47c9c00605f", + "start": { + "$date": "2022-02-26T21:31:24.000Z" + }, + "end": { + "$date": "2022-02-26T21:57:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "52608e4b-bd90-4f4f-8077-6de9b59281b3", + "start": { + "$date": "2022-02-26T21:57:24.000Z" + }, + "end": { + "$date": "2022-02-26T22:11:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d14f2bd2-bd9b-48e2-8ea9-6eba3d8cd32d", + "start": { + "$date": "2022-02-26T22:11:24.000Z" + }, + "end": { + "$date": "2022-02-26T22:33:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77237d93-af38-4174-b095-9d4f24c252c0", + "start": { + "$date": "2022-02-26T22:33:24.000Z" + }, + "end": { + "$date": "2022-02-27T05:00:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f67b5b3-4311-4e24-a29c-abdc6e9e6a06", + "start": { + "$date": "2022-02-27T05:00:24.000Z" + }, + "end": { + "$date": "2022-02-27T05:03:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "739cd900-2a7b-4092-8c9e-deb753e78cf8", + "start": { + "$date": "2022-02-27T05:03:24.000Z" + }, + "end": { + "$date": "2022-02-27T05:24:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb8556a6-9236-4acd-8b09-bb8b64b0c462", + "start": { + "$date": "2022-02-27T05:24:24.000Z" + }, + "end": { + "$date": "2022-02-27T05:41:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55d7ce04-15e3-4769-bd84-442cb96b49ba", + "start": { + "$date": "2022-02-27T05:41:24.000Z" + }, + "end": { + "$date": "2022-02-27T09:02:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8de83195-af9e-4e5f-afa6-1127cf13965d", + "start": { + "$date": "2022-02-27T09:02:24.000Z" + }, + "end": { + "$date": "2022-02-27T09:18:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "90eb75e5-3472-4489-bfa8-9637fefbbf1e", + "start": { + "$date": "2022-02-27T09:18:24.000Z" + }, + "end": { + "$date": "2022-02-27T18:13:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2ccae413-0c1f-4310-92b6-606ad368304f", + "start": { + "$date": "2022-02-27T18:13:24.000Z" + }, + "end": { + "$date": "2022-02-27T20:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ff425fd8-ba70-4529-b518-81f605de3be3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T20:28:09.000Z" + }, + "end": { + "$date": "2022-02-26T20:57:34.000Z" + }, + "events": [ + { + "uuid": "6144d765-ca2e-4dc6-86b5-4c0aa1e74612", + "start": { + "$date": "2022-02-26T20:28:09.000Z" + }, + "end": { + "$date": "2022-02-26T20:57:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4088d8b3-6262-4a40-8815-399ad8a02ad7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-26T20:38:10.000Z" + }, + "end": { + "$date": "2022-02-27T00:58:56.000Z" + }, + "events": [ + { + "uuid": "15402b28-d90a-4928-a1b4-7af832927703", + "start": { + "$date": "2022-02-26T20:38:10.000Z" + }, + "end": { + "$date": "2022-02-26T22:49:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67c1c936-5101-43c1-a079-6a09daf706ef", + "start": { + "$date": "2022-02-26T22:49:10.000Z" + }, + "end": { + "$date": "2022-02-26T23:19:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b23ab060-b61b-400a-ad43-43c465a9a02c", + "start": { + "$date": "2022-02-26T23:19:10.000Z" + }, + "end": { + "$date": "2022-02-26T23:38:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "166b0fbc-a1cb-4fb4-a578-6238f159d797", + "start": { + "$date": "2022-02-26T23:38:10.000Z" + }, + "end": { + "$date": "2022-02-26T23:44:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "30c322a3-e3b6-4ece-9abc-12f55e58a91b", + "start": { + "$date": "2022-02-26T23:44:10.000Z" + }, + "end": { + "$date": "2022-02-27T00:06:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a4126a9-c4e8-412b-994a-a2c2d826f358", + "start": { + "$date": "2022-02-27T00:06:10.000Z" + }, + "end": { + "$date": "2022-02-27T00:08:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6541e920-d5d6-4c51-865c-c8d90d88ef9f", + "start": { + "$date": "2022-02-27T00:08:10.000Z" + }, + "end": { + "$date": "2022-02-27T00:58:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bde090f9-7a3a-4c8f-a0d4-7677db42d479", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-26T20:39:23.000Z" + }, + "end": { + "$date": "2022-02-27T01:47:29.000Z" + }, + "events": [ + { + "uuid": "6a8343ac-b0f7-432c-9ccf-cdd7289c02d6", + "start": { + "$date": "2022-02-26T20:39:23.000Z" + }, + "end": { + "$date": "2022-02-27T01:47:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eeba5ad4-9a12-4f79-bf44-b71eae45de41", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-26T20:43:13.000Z" + }, + "end": { + "$date": "2022-02-27T01:47:55.000Z" + }, + "events": [ + { + "uuid": "2c0b20e9-c76a-4e05-a728-0b308e5d9513", + "start": { + "$date": "2022-02-26T20:43:13.000Z" + }, + "end": { + "$date": "2022-02-27T01:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6f71090b-a835-4d54-bc2c-e64797d907a8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T22:23:10.000Z" + }, + "end": { + "$date": "2022-02-26T22:30:51.000Z" + }, + "events": [ + { + "uuid": "e4c995a9-cb9f-450d-90aa-30df06bde754", + "start": { + "$date": "2022-02-26T22:23:10.000Z" + }, + "end": { + "$date": "2022-02-26T22:30:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "291cb2b1-53f2-4b24-ad25-c2bb78652129", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T23:27:09.000Z" + }, + "end": { + "$date": "2022-02-26T23:29:02.000Z" + }, + "events": [ + { + "uuid": "610fbef8-e303-43d5-ad6e-752dda77f8c1", + "start": { + "$date": "2022-02-26T23:27:09.000Z" + }, + "end": { + "$date": "2022-02-26T23:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fd895eb6-dd8e-48d9-9bfa-e9d86444dbb4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-26T22:59:19.000Z" + }, + "end": { + "$date": "2022-02-27T01:16:12.000Z" + }, + "events": [ + { + "uuid": "34db275c-fc7b-42d8-8b80-da288f788376", + "start": { + "$date": "2022-02-26T22:59:19.000Z" + }, + "end": { + "$date": "2022-02-27T01:16:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8a66af18-2d8e-4257-a127-8c4fcfcb0587", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-26T23:02:34.000Z" + }, + "end": { + "$date": "2022-02-27T00:14:24.000Z" + }, + "events": [ + { + "uuid": "240cb3d9-547f-416a-83c0-66c1babaa151", + "start": { + "$date": "2022-02-26T23:02:34.000Z" + }, + "end": { + "$date": "2022-02-27T00:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "2f12cbd8-17e2-4914-9ff2-e89ea2170c13", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-26T23:29:27.000Z" + }, + "end": { + "$date": "2022-02-26T23:32:03.000Z" + }, + "events": [ + { + "uuid": "c9303182-6349-406e-b76e-ea39dfa15adf", + "start": { + "$date": "2022-02-26T23:29:27.000Z" + }, + "end": { + "$date": "2022-02-26T23:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "219d4312-8f90-4f8f-bdc2-070561609f9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T00:59:10.000Z" + }, + "end": { + "$date": "2022-02-27T01:47:27.000Z" + }, + "events": [ + { + "uuid": "b6cf9e32-0b6d-4e82-8100-8b30d96ca35e", + "start": { + "$date": "2022-02-27T00:59:10.000Z" + }, + "end": { + "$date": "2022-02-27T01:47:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5c0aed3a-bf81-456f-a4b0-e30114dc60fb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T01:13:16.000Z" + }, + "end": { + "$date": "2022-02-27T01:44:51.000Z" + }, + "events": [ + { + "uuid": "f9f03c21-8f88-4046-89f3-396730b5bde7", + "start": { + "$date": "2022-02-27T01:13:16.000Z" + }, + "end": { + "$date": "2022-02-27T01:44:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "481261bd-854a-43d4-b7b9-e8d5db7cc5bf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-27T01:17:12.000Z" + }, + "end": { + "$date": "2022-02-27T02:06:09.000Z" + }, + "events": [ + { + "uuid": "d82eb0d1-741d-4ead-a25c-6dd2ccca5f81", + "start": { + "$date": "2022-02-27T01:17:12.000Z" + }, + "end": { + "$date": "2022-02-27T01:46:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e850822d-5888-40a7-adbe-24b10652fe0a", + "start": { + "$date": "2022-02-27T01:46:12.000Z" + }, + "end": { + "$date": "2022-02-27T02:06:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbe0e1df-1a55-47de-b230-b9519898f4d4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T02:50:11.000Z" + }, + "end": { + "$date": "2022-02-27T03:14:11.000Z" + }, + "events": [ + { + "uuid": "b90aa1de-1f77-4898-a98d-91c4ebf797e6", + "start": { + "$date": "2022-02-27T02:50:11.000Z" + }, + "end": { + "$date": "2022-02-27T03:02:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f391b6a-1571-4b0a-b4ac-b8b73073d2b0", + "start": { + "$date": "2022-02-27T03:02:11.000Z" + }, + "end": { + "$date": "2022-02-27T03:19:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "96140734-ccbc-4563-a116-ca21313fb8ac", + "start": { + "$date": "2022-02-27T03:19:11.000Z" + }, + "end": { + "$date": "2022-02-27T03:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba8d4821-23fc-496f-9180-cfe32b4f2f97", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-27T02:27:14.000Z" + }, + "end": { + "$date": "2022-02-27T04:23:50.000Z" + }, + "events": [ + { + "uuid": "f318cce9-6a79-4c3a-806a-a9a854485fdf", + "start": { + "$date": "2022-02-27T02:27:14.000Z" + }, + "end": { + "$date": "2022-02-27T04:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "adcb0cf6-0a1b-412f-862b-ee613ca367d0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-27T02:27:17.000Z" + }, + "end": { + "$date": "2022-02-27T04:23:48.000Z" + }, + "events": [ + { + "uuid": "e540e354-cfe6-4bff-a6ca-8b8fff822fc8", + "start": { + "$date": "2022-02-27T02:27:17.000Z" + }, + "end": { + "$date": "2022-02-27T04:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cf68798b-ea73-4f7c-922e-32cafe9ea198", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-27T02:29:52.000Z" + }, + "end": { + "$date": "2022-02-27T03:35:27.000Z" + }, + "events": [ + { + "uuid": "b1a51671-8201-4c4d-b2c1-bfb88c68d974", + "start": { + "$date": "2022-02-27T02:29:52.000Z" + }, + "end": { + "$date": "2022-02-27T02:42:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5153c82-9c74-4b56-ad7d-51ff6db9c022", + "start": { + "$date": "2022-02-27T02:42:52.000Z" + }, + "end": { + "$date": "2022-02-27T02:44:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "247d8796-1db6-4ed3-8a20-b589659cc644", + "start": { + "$date": "2022-02-27T02:44:52.000Z" + }, + "end": { + "$date": "2022-02-27T03:35:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "43370401-df43-4f0e-a34b-71240674c5ce", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-27T03:04:40.000Z" + }, + "end": { + "$date": "2022-02-27T06:43:15.000Z" + }, + "events": [ + { + "uuid": "71c804e2-51a7-4d68-99db-2ab450c423e7", + "start": { + "$date": "2022-02-27T03:04:40.000Z" + }, + "end": { + "$date": "2022-02-27T04:41:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95bc55de-9767-43a5-b398-59eb1a67f761", + "start": { + "$date": "2022-02-27T04:41:40.000Z" + }, + "end": { + "$date": "2022-02-27T05:03:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f82b21df-5be8-4e58-82d0-cd9bfd586165", + "start": { + "$date": "2022-02-27T05:03:40.000Z" + }, + "end": { + "$date": "2022-02-27T05:16:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9992e03-9ac4-4b01-b37d-23941d8c4cd7", + "start": { + "$date": "2022-02-27T05:16:40.000Z" + }, + "end": { + "$date": "2022-02-27T06:29:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f416460d-5070-4b52-8d38-2dcb1758f03a", + "start": { + "$date": "2022-02-27T06:29:40.000Z" + }, + "end": { + "$date": "2022-02-27T06:43:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a020986-13c9-4acf-a912-bdffe911f014", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T03:15:10.000Z" + }, + "end": { + "$date": "2022-02-27T03:44:36.000Z" + }, + "events": [ + { + "uuid": "f098754f-e7a7-4d51-9d07-8c73dfa63cd6", + "start": { + "$date": "2022-02-27T03:15:10.000Z" + }, + "end": { + "$date": "2022-02-27T03:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b8a4779d-fb54-4f35-a2a2-ed91be8c1ae9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-27T03:14:39.000Z" + }, + "end": { + "$date": "2022-02-27T07:09:17.000Z" + }, + "events": [ + { + "uuid": "33875b44-4d4d-4ec3-93f0-f3068ad6e6a2", + "start": { + "$date": "2022-02-27T03:14:39.000Z" + }, + "end": { + "$date": "2022-02-27T07:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3a70190d-f0d8-411c-ac91-b2ddf074a226", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-27T03:19:14.000Z" + }, + "end": { + "$date": "2022-02-27T08:04:35.000Z" + }, + "events": [ + { + "uuid": "13f12e4e-b816-4b83-b0d1-d96c761e8828", + "start": { + "$date": "2022-02-27T03:19:14.000Z" + }, + "end": { + "$date": "2022-02-27T03:32:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fe9b3f26-b492-493d-ac66-9d75f7c373f6", + "start": { + "$date": "2022-02-27T03:32:14.000Z" + }, + "end": { + "$date": "2022-02-27T03:43:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3d3635a4-1d0a-4ffa-8371-6f3856e2bb16", + "start": { + "$date": "2022-02-27T03:43:14.000Z" + }, + "end": { + "$date": "2022-02-27T08:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3620d1ab-5347-4f0c-a26f-1edbbb6a0059", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T05:27:13.000Z" + }, + "end": { + "$date": "2022-02-27T06:00:40.000Z" + }, + "events": [ + { + "uuid": "3e5a0db1-bc35-4491-b098-3a7743780f42", + "start": { + "$date": "2022-02-27T05:27:13.000Z" + }, + "end": { + "$date": "2022-02-27T06:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "dcc9e4c1-2837-4670-83b3-e86301a59b77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T04:29:09.000Z" + }, + "end": { + "$date": "2022-02-27T04:36:25.000Z" + }, + "events": [ + { + "uuid": "b38e9c93-d47d-4f97-a232-201a7a049310", + "start": { + "$date": "2022-02-27T04:29:09.000Z" + }, + "end": { + "$date": "2022-02-27T04:36:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7ff69d04-f32f-4a98-95b0-1281d91448da", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T04:45:42.000Z" + }, + "end": { + "$date": "2022-02-27T05:17:33.000Z" + }, + "events": [ + { + "uuid": "c1b0a033-62cf-4b8f-bbce-8f8615f06d72", + "start": { + "$date": "2022-02-27T04:45:42.000Z" + }, + "end": { + "$date": "2022-02-27T05:17:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "35c3ab03-b6a0-49d6-8325-d41340040965", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-02-27T05:03:47.000Z" + }, + "end": { + "$date": "2022-02-27T07:22:14.000Z" + }, + "events": [ + { + "uuid": "71f98642-5da7-42f3-90c2-c1a2c67239a6", + "start": { + "$date": "2022-02-27T05:03:47.000Z" + }, + "end": { + "$date": "2022-02-27T07:22:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "4618755e-10f5-4aee-bcbf-8b86eb3f18b9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T05:19:03.000Z" + }, + "end": { + "$date": "2022-02-27T05:38:45.000Z" + }, + "events": [ + { + "uuid": "bb1b44b4-f444-400e-aab3-b076dc607857", + "start": { + "$date": "2022-02-27T05:19:03.000Z" + }, + "end": { + "$date": "2022-02-27T05:38:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "776981d7-8280-43c7-a309-a59b354a0222", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T06:02:25.000Z" + }, + "end": { + "$date": "2022-02-27T06:33:18.000Z" + }, + "events": [ + { + "uuid": "d5243151-40fa-4c4a-ae57-92cb98bcd241", + "start": { + "$date": "2022-02-27T06:02:25.000Z" + }, + "end": { + "$date": "2022-02-27T06:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "707729cc-6980-40a7-afe9-c57de716acf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-27T06:02:22.000Z" + }, + "end": { + "$date": "2022-02-27T08:27:54.000Z" + }, + "events": [ + { + "uuid": "2b92da77-41f9-4283-a01b-330c29d7f733", + "start": { + "$date": "2022-02-27T06:02:22.000Z" + }, + "end": { + "$date": "2022-02-27T08:27:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3420b953-172a-4ea7-9fcb-8f78d2d7cfbc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-27T09:06:54.000Z" + }, + "end": { + "$date": "2022-02-27T11:09:09.000Z" + }, + "events": [ + { + "uuid": "1b7d2ab3-4fbc-412c-b709-174fe7001411", + "start": { + "$date": "2022-02-27T09:06:54.000Z" + }, + "end": { + "$date": "2022-02-27T11:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5d9944bf-ca69-44c5-8c92-109f89557bb1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T15:29:58.000Z" + }, + "end": { + "$date": "2022-02-27T15:47:19.000Z" + }, + "events": [ + { + "uuid": "302f43d1-2351-41b3-84b9-bddc79a14c1b", + "start": { + "$date": "2022-02-27T15:29:58.000Z" + }, + "end": { + "$date": "2022-02-27T15:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "825c0b2c-09d3-4431-8b69-b965481cde6b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T15:40:38.000Z" + }, + "end": { + "$date": "2022-02-27T16:04:00.000Z" + }, + "events": [ + { + "uuid": "0bdce7a1-ab46-4af9-a8e6-5e9218bbfa2a", + "start": { + "$date": "2022-02-27T15:40:38.000Z" + }, + "end": { + "$date": "2022-02-27T16:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "ba659a41-cac7-4bf5-822c-5579793188e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-27T16:05:35.000Z" + }, + "end": { + "$date": "2022-02-27T17:56:06.000Z" + }, + "events": [ + { + "uuid": "039ab289-6621-4193-af0c-ca02b00719b5", + "start": { + "$date": "2022-02-27T16:05:35.000Z" + }, + "end": { + "$date": "2022-02-27T17:56:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "88ba8913-a663-4b62-a408-779a567aad2d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-27T16:17:27.000Z" + }, + "end": { + "$date": "2022-02-27T16:20:32.000Z" + }, + "events": [ + { + "uuid": "1595a41e-e9a5-465b-96e0-50659e96fb35", + "start": { + "$date": "2022-02-27T16:17:27.000Z" + }, + "end": { + "$date": "2022-02-27T16:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab46be02-89f9-46da-beb5-8c7fe1db836e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T16:17:10.000Z" + }, + "end": { + "$date": "2022-02-27T17:01:17.000Z" + }, + "events": [ + { + "uuid": "9fa99750-2ad9-444d-a7ad-8bbc1f9c0d9e", + "start": { + "$date": "2022-02-27T16:17:10.000Z" + }, + "end": { + "$date": "2022-02-27T17:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "913a9d43-3db0-41e4-85ae-a34cd4e2859d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-27T16:21:57.000Z" + }, + "end": { + "$date": "2022-02-27T16:23:37.000Z" + }, + "events": [ + { + "uuid": "a565a3e1-a574-4e4c-931c-07dcbd2633c5", + "start": { + "$date": "2022-02-27T16:21:57.000Z" + }, + "end": { + "$date": "2022-02-27T16:23:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7157f6b9-83cf-4e4a-9a45-360514327f34", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T16:22:55.000Z" + }, + "end": { + "$date": "2022-02-27T16:28:06.000Z" + }, + "events": [ + { + "uuid": "cd4d1dda-e760-48da-a040-5529b01c6fbb", + "start": { + "$date": "2022-02-27T16:22:55.000Z" + }, + "end": { + "$date": "2022-02-27T16:28:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "90041385-55e3-41e8-8087-dfb41819bd23", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-27T16:33:23.000Z" + }, + "end": { + "$date": "2022-02-27T19:18:00.000Z" + }, + "events": [ + { + "uuid": "c97eafec-c935-4ab6-b9f7-8af33fd9ded2", + "start": { + "$date": "2022-02-27T16:33:23.000Z" + }, + "end": { + "$date": "2022-02-27T19:18:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", + "uuid": "c983ba9b-857f-43d3-a2b7-04118870728d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T16:42:16.000Z" + }, + "end": { + "$date": "2022-02-27T16:43:27.000Z" + }, + "events": [ + { + "uuid": "1bbd1513-b423-4669-93ea-e6dd82e893f4", + "start": { + "$date": "2022-02-27T16:42:16.000Z" + }, + "end": { + "$date": "2022-02-27T16:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "86c205c8-e743-4956-8e06-89d08d96e6bd", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T16:50:02.000Z" + }, + "end": { + "$date": "2022-02-27T17:25:23.000Z" + }, + "events": [ + { + "uuid": "33651de1-cd1c-488a-81a7-df852fcc7885", + "start": { + "$date": "2022-02-27T16:50:02.000Z" + }, + "end": { + "$date": "2022-02-27T17:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b1daeb1a-f15b-4c5c-b562-ce7ef7232f74", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T17:25:58.000Z" + }, + "end": { + "$date": "2022-02-27T19:09:38.000Z" + }, + "events": [ + { + "uuid": "8ae0633f-4817-48b6-bbbb-86e9b70259cf", + "start": { + "$date": "2022-02-27T17:25:58.000Z" + }, + "end": { + "$date": "2022-02-27T19:01:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "366f7903-510c-4038-859d-ea77e49efd20", + "start": { + "$date": "2022-02-27T19:01:58.000Z" + }, + "end": { + "$date": "2022-02-27T19:05:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2208733-f838-4d52-8c37-569b30204552", + "start": { + "$date": "2022-02-27T19:05:58.000Z" + }, + "end": { + "$date": "2022-02-27T19:09:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d77d3332-0f52-4ee5-bacb-de7feafa3619", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T17:55:22.000Z" + }, + "end": { + "$date": "2022-02-27T18:38:29.000Z" + }, + "events": [ + { + "uuid": "7f992c54-3ebb-4268-84c8-eef813589a99", + "start": { + "$date": "2022-02-27T17:55:22.000Z" + }, + "end": { + "$date": "2022-02-27T18:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d279dce4-8f17-4701-a4db-def832c965cb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-27T17:56:57.000Z" + }, + "end": { + "$date": "2022-02-27T18:41:29.000Z" + }, + "events": [ + { + "uuid": "04d870ef-7419-4ee4-a9b1-e208a94d4ef2", + "start": { + "$date": "2022-02-27T17:56:57.000Z" + }, + "end": { + "$date": "2022-02-27T18:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "6ffee2fe-e7ca-4382-8038-e1e26f350a80", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-02-27T18:42:39.000Z" + }, + "end": { + "$date": "2022-02-27T21:56:51.000Z" + }, + "events": [ + { + "uuid": "e5835715-52cd-4fd5-9518-38a3aea95650", + "start": { + "$date": "2022-02-27T18:42:39.000Z" + }, + "end": { + "$date": "2022-02-27T21:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "b5db73d3-0a69-4a0c-9313-2c640488cb58", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-27T19:03:05.000Z" + }, + "end": { + "$date": "2022-02-27T19:15:37.000Z" + }, + "events": [ + { + "uuid": "e7f61e67-82ee-49be-817b-21afee8decd0", + "start": { + "$date": "2022-02-27T19:03:05.000Z" + }, + "end": { + "$date": "2022-02-27T19:15:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "169cb1a4-07e3-4972-bd5e-09b7237eaf73", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-27T19:04:31.000Z" + }, + "end": { + "$date": "2022-02-27T19:54:26.000Z" + }, + "events": [ + { + "uuid": "bf38d600-dcbf-4d19-9766-33af7fe166b2", + "start": { + "$date": "2022-02-27T19:04:31.000Z" + }, + "end": { + "$date": "2022-02-27T19:54:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d72b3c7a-f532-4fba-a0e4-979660947aa6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T19:19:16.000Z" + }, + "end": { + "$date": "2022-02-27T19:31:37.000Z" + }, + "events": [ + { + "uuid": "78494f0f-1d72-415b-935e-e78cec197c10", + "start": { + "$date": "2022-02-27T19:19:16.000Z" + }, + "end": { + "$date": "2022-02-27T19:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "92985d38-bb3a-49f9-b217-bbfb3ff7b298", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-27T19:22:47.000Z" + }, + "end": { + "$date": "2022-02-27T19:27:53.000Z" + }, + "events": [ + { + "uuid": "b431907f-be62-46d9-899a-b3ef6cd3a9a1", + "start": { + "$date": "2022-02-27T19:22:47.000Z" + }, + "end": { + "$date": "2022-02-27T19:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "075f8fe5-077a-4be1-b688-c838af60c32a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-02-27T20:02:43.000Z" + }, + "end": { + "$date": "2022-02-27T21:44:37.000Z" + }, + "events": [ + { + "uuid": "3b2d3e41-e45a-4484-83ec-afb350a8b38e", + "start": { + "$date": "2022-02-27T20:02:43.000Z" + }, + "end": { + "$date": "2022-02-27T21:44:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5157ee19-81b1-4349-9c5b-03c633a502cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T20:29:40.000Z" + }, + "end": { + "$date": "2022-02-27T22:04:31.000Z" + }, + "events": [ + { + "uuid": "104f7af5-a837-48bd-9485-183dc20053f8", + "start": { + "$date": "2022-02-27T20:29:40.000Z" + }, + "end": { + "$date": "2022-02-27T22:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40565e58-fd26-48ba-aa6a-58a0b083bada", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-27T20:36:21.000Z" + }, + "end": { + "$date": "2022-02-27T21:44:44.000Z" + }, + "events": [ + { + "uuid": "b599e605-18d8-4c28-9fc5-3800dabaf544", + "start": { + "$date": "2022-02-27T20:36:21.000Z" + }, + "end": { + "$date": "2022-02-27T21:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "173e9bd9-009e-46b4-a078-61972c9c9453", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-27T20:43:18.000Z" + }, + "end": { + "$date": "2022-02-28T03:29:23.000Z" + }, + "events": [ + { + "uuid": "816de22f-2c76-4c90-831f-01ce59f83df1", + "start": { + "$date": "2022-02-27T20:43:18.000Z" + }, + "end": { + "$date": "2022-02-28T03:29:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "92359081-1034-49f8-936e-eb96cbdb24c7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T00:29:37.000Z" + }, + "end": { + "$date": "2022-02-28T01:20:40.000Z" + }, + "events": [ + { + "uuid": "349a2440-c6ad-4a2d-bba8-141f3a53ac42", + "start": { + "$date": "2022-02-28T00:29:37.000Z" + }, + "end": { + "$date": "2022-02-28T01:47:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a70e26fe-dabd-49a1-ae69-79b3fbbe560b", + "start": { + "$date": "2022-02-28T01:47:37.000Z" + }, + "end": { + "$date": "2022-02-28T01:50:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c5db965-ca7b-44f9-b3fe-b31e4edaa7cd", + "start": { + "$date": "2022-02-28T01:50:37.000Z" + }, + "end": { + "$date": "2022-02-28T01:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17d65949-43a3-4451-8a57-964a92c7bd99", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T21:32:39.000Z" + }, + "end": { + "$date": "2022-02-27T22:00:44.000Z" + }, + "events": [ + { + "uuid": "89791b05-7949-422b-b69c-5c628a8e83e9", + "start": { + "$date": "2022-02-27T21:32:39.000Z" + }, + "end": { + "$date": "2022-02-27T22:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "854f03b1-5ed1-4662-9742-7ca04cf6bbab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-27T22:29:34.000Z" + }, + "end": { + "$date": "2022-02-28T01:03:02.000Z" + }, + "events": [ + { + "uuid": "a42c48af-b34f-4bc3-b40e-8e82f5eed41d", + "start": { + "$date": "2022-02-27T22:29:34.000Z" + }, + "end": { + "$date": "2022-02-28T00:29:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "24444209-5b44-422b-bdef-26f792684b9f", + "start": { + "$date": "2022-02-28T00:29:34.000Z" + }, + "end": { + "$date": "2022-02-28T00:34:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8836b02-19d3-4ea5-9c02-b8bec40d7ddd", + "start": { + "$date": "2022-02-28T00:34:34.000Z" + }, + "end": { + "$date": "2022-02-28T01:03:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b783fda3-d592-485d-987d-536a0210c501", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T22:34:33.000Z" + }, + "end": { + "$date": "2022-02-27T22:39:35.000Z" + }, + "events": [ + { + "uuid": "b4873a52-2960-4c85-88ac-964c80ceeb7f", + "start": { + "$date": "2022-02-27T22:34:33.000Z" + }, + "end": { + "$date": "2022-02-27T22:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7e16c27b-9879-4daf-a49b-7a2379591ed5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T22:39:44.000Z" + }, + "end": { + "$date": "2022-02-27T22:59:52.000Z" + }, + "events": [ + { + "uuid": "86c2262e-7ef4-4280-82b7-5b7f1cc0926b", + "start": { + "$date": "2022-02-27T22:39:44.000Z" + }, + "end": { + "$date": "2022-02-27T22:59:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "79d0fec0-920a-4ebe-9dc0-593498624c99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-27T23:00:16.000Z" + }, + "end": { + "$date": "2022-02-27T23:10:02.000Z" + }, + "events": [ + { + "uuid": "68a69ace-5f25-4645-b702-3bd47ef432c3", + "start": { + "$date": "2022-02-27T23:00:16.000Z" + }, + "end": { + "$date": "2022-02-27T23:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "44c570ad-3cf5-48fe-99a0-8e29706dbaeb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-27T23:18:01.000Z" + }, + "end": { + "$date": "2022-02-27T23:56:47.000Z" + }, + "events": [ + { + "uuid": "cb788719-3de2-4a9a-94c0-c55bfe0cc104", + "start": { + "$date": "2022-02-27T23:18:01.000Z" + }, + "end": { + "$date": "2022-02-27T23:56:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d72174b5-1449-4dc0-9d59-f342c96e362e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-27T23:52:10.000Z" + }, + "end": { + "$date": "2022-02-28T00:14:12.000Z" + }, + "events": [ + { + "uuid": "3399998f-5cc3-47f0-a2ff-403c71c3ba33", + "start": { + "$date": "2022-02-27T23:52:10.000Z" + }, + "end": { + "$date": "2022-02-28T00:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb8475d8-8e94-46fb-b78c-88ee7bb7deb8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T00:20:07.000Z" + }, + "end": { + "$date": "2022-02-28T00:38:04.000Z" + }, + "events": [ + { + "uuid": "bc3595df-0561-44a1-a687-79311017c693", + "start": { + "$date": "2022-02-28T00:20:07.000Z" + }, + "end": { + "$date": "2022-02-28T00:38:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "63f57eea-7bde-4ba7-9542-a34937dfe13e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-28T00:15:44.000Z" + }, + "end": { + "$date": "2022-02-28T01:35:49.000Z" + }, + "events": [ + { + "uuid": "6438929b-5939-45b3-8c3a-05a1f3b74a77", + "start": { + "$date": "2022-02-28T00:15:44.000Z" + }, + "end": { + "$date": "2022-02-28T01:35:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e05464db-15e5-4818-9ef9-0992932f0aa9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-28T01:05:47.000Z" + }, + "end": { + "$date": "2022-02-28T01:40:30.000Z" + }, + "events": [ + { + "uuid": "bca497a9-6b60-4202-b16a-9d7d3825d5c1", + "start": { + "$date": "2022-02-28T01:05:47.000Z" + }, + "end": { + "$date": "2022-02-28T01:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf30aebd-a7e0-485c-b4cd-0796611ff09a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-28T01:07:08.000Z" + }, + "end": { + "$date": "2022-02-28T01:59:44.000Z" + }, + "events": [ + { + "uuid": "9e9e556d-ce8f-4459-90bc-f60f3bebd62c", + "start": { + "$date": "2022-02-28T01:07:08.000Z" + }, + "end": { + "$date": "2022-02-28T01:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "63c44f59-10a3-4c07-a892-12732e42c365", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T01:36:50.000Z" + }, + "end": { + "$date": "2022-02-28T02:04:58.000Z" + }, + "events": [ + { + "uuid": "6546b262-12f0-4bb8-a2c4-3227d7d9b513", + "start": { + "$date": "2022-02-28T01:36:50.000Z" + }, + "end": { + "$date": "2022-02-28T02:04:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c450af01-e8ba-4408-a6e4-9eddfab8f03e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T01:24:05.000Z" + }, + "end": { + "$date": "2022-02-28T01:28:05.000Z" + }, + "events": [ + { + "uuid": "9e14dcd2-e642-404c-8ade-1747adc15a18", + "start": { + "$date": "2022-02-28T01:24:05.000Z" + }, + "end": { + "$date": "2022-02-28T01:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3834fd27-23a3-44b1-8269-719f634c8185", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T01:38:42.000Z" + }, + "end": { + "$date": "2022-02-28T01:40:17.000Z" + }, + "events": [ + { + "uuid": "a8f220d7-1f3a-4567-af96-9fee834f4c66", + "start": { + "$date": "2022-02-28T01:38:42.000Z" + }, + "end": { + "$date": "2022-02-28T01:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5531c535-31cd-410e-a536-8632297d0b81", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T01:40:47.000Z" + }, + "end": { + "$date": "2022-02-28T02:25:14.000Z" + }, + "events": [ + { + "uuid": "5ccecfb2-8c0a-43e9-9361-1782d8c40361", + "start": { + "$date": "2022-02-28T01:40:47.000Z" + }, + "end": { + "$date": "2022-02-28T02:25:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "ce126ba8-1ba0-42b3-bb5e-33b6865b4e67", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T02:25:29.000Z" + }, + "end": { + "$date": "2022-02-28T03:33:07.000Z" + }, + "events": [ + { + "uuid": "27a3f079-3ee0-4919-b256-c9bec1075dbf", + "start": { + "$date": "2022-02-28T02:25:29.000Z" + }, + "end": { + "$date": "2022-02-28T03:33:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce777df2-9683-4cf0-be9a-20a1e10f91d5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-28T02:48:05.000Z" + }, + "end": { + "$date": "2022-02-28T03:02:25.000Z" + }, + "events": [ + { + "uuid": "6101a087-a98a-465a-bfa2-d426ddb36cf4", + "start": { + "$date": "2022-02-28T02:48:05.000Z" + }, + "end": { + "$date": "2022-02-28T03:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "90342a2c-2eb1-4c42-9a75-e9974dd50c2b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-02-28T02:46:20.000Z" + }, + "end": { + "$date": "2022-02-28T02:56:01.000Z" + }, + "events": [ + { + "uuid": "0ae992e4-8edf-4e2c-bdf9-b65da3c1f7c0", + "start": { + "$date": "2022-02-28T02:46:20.000Z" + }, + "end": { + "$date": "2022-02-28T02:56:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "07f3c381-72c6-4f99-8fe9-a3e39424a75c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-28T03:05:50.000Z" + }, + "end": { + "$date": "2022-02-28T03:10:36.000Z" + }, + "events": [ + { + "uuid": "6be9df34-ad18-4001-b5e9-3bd498b85260", + "start": { + "$date": "2022-02-28T03:05:50.000Z" + }, + "end": { + "$date": "2022-02-28T03:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bb04f2d6-8871-418c-9650-ef6ac354cf91", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-28T03:10:51.000Z" + }, + "end": { + "$date": "2022-02-28T05:13:45.000Z" + }, + "events": [ + { + "uuid": "c5195193-8ce1-4f5c-9ea5-46e6b88d950c", + "start": { + "$date": "2022-02-28T03:10:51.000Z" + }, + "end": { + "$date": "2022-02-28T05:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "399afd53-2e61-4fc5-beb4-8c5e93bdf80d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T03:35:28.000Z" + }, + "end": { + "$date": "2022-02-28T03:49:08.000Z" + }, + "events": [ + { + "uuid": "647e89c3-1480-4ff9-b103-a2cf9ed47a75", + "start": { + "$date": "2022-02-28T03:35:28.000Z" + }, + "end": { + "$date": "2022-02-28T03:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "21d1d475-3308-48a0-bf18-fd8e55a7421e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-28T03:46:53.000Z" + }, + "end": { + "$date": "2022-02-28T05:16:26.000Z" + }, + "events": [ + { + "uuid": "78874a9d-3768-4273-8568-a63aa84303ca", + "start": { + "$date": "2022-02-28T03:46:53.000Z" + }, + "end": { + "$date": "2022-02-28T05:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5f23787c-7679-4318-a39f-3dfdc2e15e91", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T03:49:18.000Z" + }, + "end": { + "$date": "2022-02-28T05:18:16.000Z" + }, + "events": [ + { + "uuid": "529d1e0b-b46b-4a67-97c6-6515e336e9b9", + "start": { + "$date": "2022-02-28T03:49:18.000Z" + }, + "end": { + "$date": "2022-02-28T05:18:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34619fa7-edd5-40c7-92b3-f6c99b232a73", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T05:08:32.000Z" + }, + "end": { + "$date": "2022-02-28T05:37:01.000Z" + }, + "events": [ + { + "uuid": "2dfccd43-0ba0-4f17-a438-3da9be7a07e9", + "start": { + "$date": "2022-02-28T05:08:32.000Z" + }, + "end": { + "$date": "2022-02-28T05:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "25eb490a-37f7-416e-9ff2-e242288ac2cd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T05:18:22.000Z" + }, + "end": { + "$date": "2022-02-28T05:57:23.000Z" + }, + "events": [ + { + "uuid": "f585ffb2-6a80-4cca-8a70-d3dec6c31dee", + "start": { + "$date": "2022-02-28T05:18:22.000Z" + }, + "end": { + "$date": "2022-02-28T05:57:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "713ca220-d261-4228-966e-ba2ebff68874", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-02-28T02:05:33.000Z" + }, + "end": { + "$date": "2022-02-28T06:52:53.000Z" + }, + "events": [ + { + "uuid": "83f892be-fb19-4ba9-b93b-2e37c69618c9", + "start": { + "$date": "2022-02-28T02:05:33.000Z" + }, + "end": { + "$date": "2022-02-28T06:52:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d0593b2-a8c9-4ea9-8367-b1ed39c20776", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T05:47:32.000Z" + }, + "end": { + "$date": "2022-02-28T06:19:31.000Z" + }, + "events": [ + { + "uuid": "b09bb5a6-5327-4a1a-adae-017a69b738aa", + "start": { + "$date": "2022-02-28T05:47:32.000Z" + }, + "end": { + "$date": "2022-02-28T06:19:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "137d60c1-8a27-435e-b376-71e8ddd1a7cb", + "uuid": "f5f5758e-d0eb-4228-9853-6cec1916fa1a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-02-28T05:57:47.000Z" + }, + "end": { + "$date": "2022-02-28T06:18:28.000Z" + }, + "events": [ + { + "uuid": "540b8dcc-7a18-475b-ba3a-2fc736e54fa7", + "start": { + "$date": "2022-02-28T05:57:47.000Z" + }, + "end": { + "$date": "2022-02-28T06:18:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "915c72fe-7a90-4540-872b-1ef9f8664ae0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T06:14:46.000Z" + }, + "end": { + "$date": "2022-02-28T07:24:29.000Z" + }, + "events": [ + { + "uuid": "ab620c59-192f-455f-8a83-cd08ebdc9c7c", + "start": { + "$date": "2022-02-28T06:14:46.000Z" + }, + "end": { + "$date": "2022-02-28T07:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "486a12c2-1e2a-4d90-a3d9-8d3de51ebf6f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T06:21:22.000Z" + }, + "end": { + "$date": "2022-02-28T06:56:28.000Z" + }, + "events": [ + { + "uuid": "f5619d02-ffd3-47f1-971b-032104c8efee", + "start": { + "$date": "2022-02-28T06:21:22.000Z" + }, + "end": { + "$date": "2022-02-28T06:56:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "2a92d3e5-ecaf-428c-a303-568c4f81188f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-02-28T06:53:47.000Z" + }, + "end": { + "$date": "2022-02-28T07:51:08.000Z" + }, + "events": [ + { + "uuid": "ca75a6b9-c291-46ca-b35b-1b6ec9b1ed13", + "start": { + "$date": "2022-02-28T06:53:47.000Z" + }, + "end": { + "$date": "2022-02-28T07:51:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "334acbc1-eff5-42d7-af98-216244d9cfdc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T07:25:54.000Z" + }, + "end": { + "$date": "2022-02-28T07:44:10.000Z" + }, + "events": [ + { + "uuid": "77fe2ba3-bc1e-42e4-b198-a2c492c21e07", + "start": { + "$date": "2022-02-28T07:25:54.000Z" + }, + "end": { + "$date": "2022-02-28T07:44:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c6bd1c82-634d-46f4-a261-82393b319ff8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-28T15:51:48.000Z" + }, + "end": { + "$date": "2022-02-28T21:18:09.000Z" + }, + "events": [ + { + "uuid": "8ade6520-8451-47ed-8e79-b35ba5a2b094", + "start": { + "$date": "2022-02-28T15:51:48.000Z" + }, + "end": { + "$date": "2022-02-28T20:08:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1ff0cd4-5459-480a-b3bb-6846d1f02beb", + "start": { + "$date": "2022-02-28T20:08:48.000Z" + }, + "end": { + "$date": "2022-02-28T20:11:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb92b224-becc-47d0-8ba4-df3af971d17d", + "start": { + "$date": "2022-02-28T20:11:48.000Z" + }, + "end": { + "$date": "2022-02-28T20:44:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14c79d83-e2a2-4a25-ad7e-896262460168", + "start": { + "$date": "2022-02-28T20:44:48.000Z" + }, + "end": { + "$date": "2022-02-28T20:54:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e64263fc-a144-4886-a18e-f9b90fda8f32", + "start": { + "$date": "2022-02-28T20:54:48.000Z" + }, + "end": { + "$date": "2022-02-28T21:18:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1ac6f124-d9b9-4abe-8b28-77ff07027094", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-28T16:15:50.000Z" + }, + "end": { + "$date": "2022-02-28T19:02:05.000Z" + }, + "events": [ + { + "uuid": "d1398558-9ae6-4936-9e66-fc78f325219b", + "start": { + "$date": "2022-02-28T16:15:50.000Z" + }, + "end": { + "$date": "2022-02-28T19:02:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "f20cd454-447c-4662-a1fd-9f31bdd8a9d6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T17:06:23.000Z" + }, + "end": { + "$date": "2022-02-28T17:08:48.000Z" + }, + "events": [ + { + "uuid": "22a5e32c-6a73-4e86-a6ff-b9d3925230cc", + "start": { + "$date": "2022-02-28T17:06:23.000Z" + }, + "end": { + "$date": "2022-02-28T17:08:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d76f0748-7b47-49c4-b8e5-136563d8ef29", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T17:10:58.000Z" + }, + "end": { + "$date": "2022-02-28T17:13:49.000Z" + }, + "events": [ + { + "uuid": "a463193a-5c5a-4221-b8b7-1e9e9909b621", + "start": { + "$date": "2022-02-28T17:10:58.000Z" + }, + "end": { + "$date": "2022-02-28T17:13:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "41769a02-c1be-41a2-91b1-db5763dba9ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-02-28T17:13:54.000Z" + }, + "end": { + "$date": "2022-02-28T22:31:35.000Z" + }, + "events": [ + { + "uuid": "fca7eba5-c5e2-402a-b40f-b2318d875303", + "start": { + "$date": "2022-02-28T17:13:54.000Z" + }, + "end": { + "$date": "2022-02-28T17:40:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0a5aa373-fc27-4ff4-b809-b55aebe3d1fe", + "start": { + "$date": "2022-02-28T17:40:54.000Z" + }, + "end": { + "$date": "2022-02-28T18:06:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2fa9d226-e78d-486a-9c01-3098e1cdfb5a", + "start": { + "$date": "2022-02-28T18:06:54.000Z" + }, + "end": { + "$date": "2022-02-28T21:07:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "48de6744-37c5-417e-886e-122723dcc119", + "start": { + "$date": "2022-02-28T21:07:54.000Z" + }, + "end": { + "$date": "2022-02-28T21:08:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d5f6f24-0a17-4c8c-b90e-9bdb27607ada", + "start": { + "$date": "2022-02-28T21:08:54.000Z" + }, + "end": { + "$date": "2022-02-28T22:31:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bef4797-7bdd-4c42-be02-86fec0d6286a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T18:37:14.000Z" + }, + "end": { + "$date": "2022-02-28T19:09:28.000Z" + }, + "events": [ + { + "uuid": "40b3f7b9-239f-44f0-9fbc-8a42abe0900c", + "start": { + "$date": "2022-02-28T18:37:14.000Z" + }, + "end": { + "$date": "2022-02-28T19:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a06a4b81-13c7-4a9c-90eb-1cb3fde08ef9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T19:10:48.000Z" + }, + "end": { + "$date": "2022-02-28T19:43:57.000Z" + }, + "events": [ + { + "uuid": "b21948cf-5525-4c5c-b7ad-110126001918", + "start": { + "$date": "2022-02-28T19:10:48.000Z" + }, + "end": { + "$date": "2022-02-28T19:43:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf12b2cf-c96f-4476-824b-a6b903c13f07", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T19:55:24.000Z" + }, + "end": { + "$date": "2022-02-28T20:31:53.000Z" + }, + "events": [ + { + "uuid": "26069fee-d55e-4728-93a1-dc34d0ae7f98", + "start": { + "$date": "2022-02-28T19:55:24.000Z" + }, + "end": { + "$date": "2022-02-28T20:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "50622601-7a07-4129-b95e-bc244caa72cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T20:39:50.000Z" + }, + "end": { + "$date": "2022-02-28T21:06:38.000Z" + }, + "events": [ + { + "uuid": "21df51c2-7074-4772-949f-14ae0515697a", + "start": { + "$date": "2022-02-28T20:39:50.000Z" + }, + "end": { + "$date": "2022-02-28T21:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9f407ac4-a262-4ba3-a9d3-b00a9ad9a893", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-02-28T22:38:18.000Z" + }, + "end": { + "$date": "2022-02-28T22:59:15.000Z" + }, + "events": [ + { + "uuid": "9c015605-2f90-417c-b495-ab65053f2822", + "start": { + "$date": "2022-02-28T22:38:18.000Z" + }, + "end": { + "$date": "2022-02-28T22:59:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4cddba47-8cd7-470c-99e3-439ad0dcb449", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-02-28T23:22:10.000Z" + }, + "end": { + "$date": "2022-03-01T02:58:34.000Z" + }, + "events": [ + { + "uuid": "3d28626a-ec42-4488-b2a5-382b4406a20d", + "start": { + "$date": "2022-02-28T23:22:10.000Z" + }, + "end": { + "$date": "2022-03-01T02:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "444ba787-a72b-4c6b-b1c4-9e92239756c1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-02-28T23:32:36.000Z" + }, + "end": { + "$date": "2022-03-01T00:12:33.000Z" + }, + "events": [ + { + "uuid": "34205dd8-d5e7-4267-958b-87482924267d", + "start": { + "$date": "2022-02-28T23:32:36.000Z" + }, + "end": { + "$date": "2022-03-01T00:12:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52af96dc-5e03-46d2-9c98-fea472035742", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-02-28T23:58:15.000Z" + }, + "end": { + "$date": "2022-03-01T00:18:02.000Z" + }, + "events": [ + { + "uuid": "0e63e486-113d-411b-a859-444fd947e602", + "start": { + "$date": "2022-02-28T23:58:15.000Z" + }, + "end": { + "$date": "2022-03-01T00:18:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c538fe6-5ea0-4d6c-9bd1-94bf66abfa8d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T00:17:56.000Z" + }, + "end": { + "$date": "2022-03-01T01:49:43.000Z" + }, + "events": [ + { + "uuid": "737e9fa7-c996-4b1c-8bed-381c17d2687d", + "start": { + "$date": "2022-03-01T00:17:56.000Z" + }, + "end": { + "$date": "2022-03-01T01:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "68226415-5e34-4b63-a35f-52a08a4edc61", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T00:21:58.000Z" + }, + "end": { + "$date": "2022-03-01T00:24:39.000Z" + }, + "events": [ + { + "uuid": "f786c67f-1c5d-4561-801f-866a3fd386e7", + "start": { + "$date": "2022-03-01T00:21:58.000Z" + }, + "end": { + "$date": "2022-03-01T00:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "fa3630a3-d9ec-4ec3-a1bb-15dee13cc2c8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-01T00:26:44.000Z" + }, + "end": { + "$date": "2022-03-01T02:39:15.000Z" + }, + "events": [ + { + "uuid": "31e699e3-8866-4a73-8c51-dc4fd8ab3057", + "start": { + "$date": "2022-03-01T00:26:44.000Z" + }, + "end": { + "$date": "2022-03-01T02:07:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bfec3e66-903a-4cfe-8e45-1e5816bd0a53", + "start": { + "$date": "2022-03-01T02:07:44.000Z" + }, + "end": { + "$date": "2022-03-01T02:27:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1df72759-d89f-461e-befa-9dc7afaa489e", + "start": { + "$date": "2022-03-01T02:27:44.000Z" + }, + "end": { + "$date": "2022-03-01T02:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "dc233018-bf27-4159-9c41-0cd63c4029a4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-01T00:33:31.000Z" + }, + "end": { + "$date": "2022-03-01T02:53:03.000Z" + }, + "events": [ + { + "uuid": "bca5ebc5-a4e8-4711-91e4-12f42469107a", + "start": { + "$date": "2022-03-01T00:33:31.000Z" + }, + "end": { + "$date": "2022-03-01T02:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c5957514-0ff3-491e-a7e0-daf4f071ab14", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T00:45:10.000Z" + }, + "end": { + "$date": "2022-03-01T01:02:35.000Z" + }, + "events": [ + { + "uuid": "4f6ad4ce-a95e-42b2-8196-00bf9357f1ef", + "start": { + "$date": "2022-03-01T00:45:10.000Z" + }, + "end": { + "$date": "2022-03-01T01:02:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee45650e-568d-483d-a26f-f4fa99f15807", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-01T00:49:23.000Z" + }, + "end": { + "$date": "2022-03-01T00:55:28.000Z" + }, + "events": [ + { + "uuid": "14aa998b-52b3-489c-b90b-84b3e0ccb021", + "start": { + "$date": "2022-03-01T00:49:23.000Z" + }, + "end": { + "$date": "2022-03-01T00:55:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d03b5d86-55d9-4c12-a3fe-7528d63462f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T01:04:16.000Z" + }, + "end": { + "$date": "2022-03-01T01:44:44.000Z" + }, + "events": [ + { + "uuid": "56a6d176-df03-4e24-a015-51afd847d91c", + "start": { + "$date": "2022-03-01T01:04:16.000Z" + }, + "end": { + "$date": "2022-03-01T01:44:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "75a5751c-4faf-4183-96bc-6dd0fb85f665", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-01T01:20:51.000Z" + }, + "end": { + "$date": "2022-03-01T06:51:44.000Z" + }, + "events": [ + { + "uuid": "c8c265b7-1b96-4c43-a890-101e29c578d4", + "start": { + "$date": "2022-03-01T01:20:51.000Z" + }, + "end": { + "$date": "2022-03-01T06:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ed1b1ee3-f859-4af0-b471-9d7320d5b220", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T01:50:04.000Z" + }, + "end": { + "$date": "2022-03-01T02:27:56.000Z" + }, + "events": [ + { + "uuid": "063c515e-2a4c-4200-86f3-fb2fb7373530", + "start": { + "$date": "2022-03-01T01:50:04.000Z" + }, + "end": { + "$date": "2022-03-01T02:27:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "133a29ac-efd6-4b3e-b478-565af34627b0", + "uuid": "040ad284-cbc4-49a5-bf6b-20ab0b87b6c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T01:52:43.000Z" + }, + "end": { + "$date": "2022-03-01T01:53:08.000Z" + }, + "events": [ + { + "uuid": "352a6aec-1279-4b3c-8281-eebc6d4134d2", + "start": { + "$date": "2022-03-01T01:52:43.000Z" + }, + "end": { + "$date": "2022-03-01T01:53:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "133a29ac-efd6-4b3e-b478-565af34627b0", + "uuid": "a12f5f55-82b6-40fc-b12d-24f724e8e3ec", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T02:14:51.000Z" + }, + "end": { + "$date": "2022-03-01T02:20:11.000Z" + }, + "events": [ + { + "uuid": "0f9bda01-27be-4e86-b101-cb7cbf4b62f3", + "start": { + "$date": "2022-03-01T02:14:51.000Z" + }, + "end": { + "$date": "2022-03-01T02:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "acf018f0-7da5-484d-a27c-8ac1c106cab5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-01T02:27:37.000Z" + }, + "end": { + "$date": "2022-03-01T02:29:11.000Z" + }, + "events": [ + { + "uuid": "e7f5cc35-d981-44ab-ad9b-05949295876e", + "start": { + "$date": "2022-03-01T02:27:37.000Z" + }, + "end": { + "$date": "2022-03-01T02:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d917b6da-c8db-444b-a60b-66bf11c66b26", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T02:28:03.000Z" + }, + "end": { + "$date": "2022-03-01T02:31:03.000Z" + }, + "events": [ + { + "uuid": "c1082cda-bed9-41f6-9edd-20ebdacdaa58", + "start": { + "$date": "2022-03-01T02:28:03.000Z" + }, + "end": { + "$date": "2022-03-01T02:31:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "beeb5b33-6d17-4079-90a6-14ee07ec1be5", + "uuid": "cb2081c1-c744-4e34-a2d1-6da1ab8dc52b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-01T02:31:10.000Z" + }, + "end": { + "$date": "2022-03-01T03:12:57.000Z" + }, + "events": [ + { + "uuid": "f099e7e7-1120-4195-9562-8816836c108c", + "start": { + "$date": "2022-03-01T02:31:10.000Z" + }, + "end": { + "$date": "2022-03-01T03:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f96d6238-fe5c-406b-a72d-331c945a56bf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T02:32:29.000Z" + }, + "end": { + "$date": "2022-03-01T02:34:55.000Z" + }, + "events": [ + { + "uuid": "039b4950-250d-4ffb-b5be-84c4881c42d1", + "start": { + "$date": "2022-03-01T02:32:29.000Z" + }, + "end": { + "$date": "2022-03-01T02:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c7296d97-8a34-4115-add5-033614520d01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-01T03:13:07.000Z" + }, + "end": { + "$date": "2022-03-01T03:29:42.000Z" + }, + "events": [ + { + "uuid": "2074eea5-1b2c-49eb-9146-f5883d652635", + "start": { + "$date": "2022-03-01T03:13:07.000Z" + }, + "end": { + "$date": "2022-03-01T03:29:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "79dc962d-d50c-4355-a177-38f0a23c026d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-01T03:29:52.000Z" + }, + "end": { + "$date": "2022-03-01T04:02:38.000Z" + }, + "events": [ + { + "uuid": "93f1865d-d1b6-4cb5-86c4-8a5757d34724", + "start": { + "$date": "2022-03-01T03:29:52.000Z" + }, + "end": { + "$date": "2022-03-01T04:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "10c5916f-c810-496d-bc58-ad5559c72a9c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T03:34:26.000Z" + }, + "end": { + "$date": "2022-03-01T05:40:56.000Z" + }, + "events": [ + { + "uuid": "1372ec88-d7ad-408f-902a-2816be0b7f2c", + "start": { + "$date": "2022-03-01T03:34:26.000Z" + }, + "end": { + "$date": "2022-03-01T05:40:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "da380253-b86a-425b-bc36-2db9f0491ed7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T03:36:42.000Z" + }, + "end": { + "$date": "2022-03-01T04:09:15.000Z" + }, + "events": [ + { + "uuid": "0ac4bee3-47a6-459d-b2d0-0631e17b535e", + "start": { + "$date": "2022-03-01T03:36:42.000Z" + }, + "end": { + "$date": "2022-03-01T04:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0521f9d1-d030-4ff7-ba9f-af1254d821e5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-01T03:36:34.000Z" + }, + "end": { + "$date": "2022-03-01T04:18:26.000Z" + }, + "events": [ + { + "uuid": "bd5b1e94-a4b3-4e9e-a674-12356de02f5f", + "start": { + "$date": "2022-03-01T03:36:34.000Z" + }, + "end": { + "$date": "2022-03-01T04:18:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be0f3840-a8ab-450c-bc81-20773670636a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T04:09:57.000Z" + }, + "end": { + "$date": "2022-03-01T04:41:00.000Z" + }, + "events": [ + { + "uuid": "45caf588-a0e2-4a5d-84bc-126801211618", + "start": { + "$date": "2022-03-01T04:09:57.000Z" + }, + "end": { + "$date": "2022-03-01T04:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de900908-b1fd-4a1e-8821-3b9149477aba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-01T04:30:53.000Z" + }, + "end": { + "$date": "2022-03-01T04:43:58.000Z" + }, + "events": [ + { + "uuid": "38663d0b-e2d3-434b-904f-44f8bfc62f7c", + "start": { + "$date": "2022-03-01T04:30:53.000Z" + }, + "end": { + "$date": "2022-03-01T04:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b300ff6e-56de-4e91-b4a4-dd30936fe1e1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T05:23:40.000Z" + }, + "end": { + "$date": "2022-03-01T05:23:48.000Z" + }, + "events": [ + { + "uuid": "b92c2636-c253-461c-bf5b-87183e760a52", + "start": { + "$date": "2022-03-01T05:23:40.000Z" + }, + "end": { + "$date": "2022-03-01T05:23:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c6456b37-26eb-458d-9b45-49ec1576cdd2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T06:21:23.000Z" + }, + "end": { + "$date": "2022-03-01T06:21:45.000Z" + }, + "events": [ + { + "uuid": "d3d1c5a6-f930-4e73-81e6-e3be46a286fa", + "start": { + "$date": "2022-03-01T06:21:23.000Z" + }, + "end": { + "$date": "2022-03-01T06:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a5e71373-ec94-425d-82f5-42cc40f1a003", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T05:30:16.000Z" + }, + "end": { + "$date": "2022-03-01T05:32:46.000Z" + }, + "events": [ + { + "uuid": "1f662d81-126f-45c7-a684-b29869d80d6a", + "start": { + "$date": "2022-03-01T05:30:16.000Z" + }, + "end": { + "$date": "2022-03-01T05:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e258d56-fdcd-4457-8de6-81ba16a84c0c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-01T05:32:48.000Z" + }, + "end": { + "$date": "2022-03-01T05:49:08.000Z" + }, + "events": [ + { + "uuid": "4d35fd8b-92af-4178-8120-8d0704a9e0b0", + "start": { + "$date": "2022-03-01T05:32:48.000Z" + }, + "end": { + "$date": "2022-03-01T05:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "89f0aafe-4552-4e64-9929-91e7e6e3c44e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T05:36:17.000Z" + }, + "end": { + "$date": "2022-03-01T05:39:52.000Z" + }, + "events": [ + { + "uuid": "7a3a5e05-6387-427b-bc41-2cc1462a1061", + "start": { + "$date": "2022-03-01T05:36:17.000Z" + }, + "end": { + "$date": "2022-03-01T05:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83faad41-8c18-4ee2-8c73-d5c070d38640", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-01T05:52:19.000Z" + }, + "end": { + "$date": "2022-03-01T06:11:53.000Z" + }, + "events": [ + { + "uuid": "d1f2184a-e603-4db2-9069-bb8b820b5f30", + "start": { + "$date": "2022-03-01T05:52:19.000Z" + }, + "end": { + "$date": "2022-03-01T06:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1dfd0a8-d2f0-42c1-a777-fd5e32aa3424", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-01T05:50:57.000Z" + }, + "end": { + "$date": "2022-03-01T06:31:22.000Z" + }, + "events": [ + { + "uuid": "429c4075-0ca6-4d0a-baca-b5bcc72e1a13", + "start": { + "$date": "2022-03-01T05:50:57.000Z" + }, + "end": { + "$date": "2022-03-01T06:31:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "094e1e3d-a19d-44a5-822f-8f30394b30b5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-01T06:15:44.000Z" + }, + "end": { + "$date": "2022-03-01T06:43:14.000Z" + }, + "events": [ + { + "uuid": "3ad4cb43-905d-42ca-b023-0b4b98e0d09b", + "start": { + "$date": "2022-03-01T06:15:44.000Z" + }, + "end": { + "$date": "2022-03-01T06:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "130e68c3-bdda-4a05-8508-178fec41382e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-01T06:31:33.000Z" + }, + "end": { + "$date": "2022-03-01T06:48:28.000Z" + }, + "events": [ + { + "uuid": "c4a51fef-6f7b-4707-8d22-a32fc0e77a54", + "start": { + "$date": "2022-03-01T06:31:33.000Z" + }, + "end": { + "$date": "2022-03-01T06:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "13df55c7-990d-4460-bfae-23b43bdd59d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T06:31:33.000Z" + }, + "end": { + "$date": "2022-03-01T06:48:29.000Z" + }, + "events": [ + { + "uuid": "75c99453-bf5e-424d-860f-74d12ca4e967", + "start": { + "$date": "2022-03-01T06:31:33.000Z" + }, + "end": { + "$date": "2022-03-01T06:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfc5cfea-303b-456c-9336-fa5bf8955d39", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-01T06:49:00.000Z" + }, + "end": { + "$date": "2022-03-01T07:00:45.000Z" + }, + "events": [ + { + "uuid": "143a3df5-d8a0-4671-96f8-d1b068ae567a", + "start": { + "$date": "2022-03-01T06:49:00.000Z" + }, + "end": { + "$date": "2022-03-01T07:00:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "2db3fc45-e33d-4886-ba87-945b3c64367a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T06:49:49.000Z" + }, + "end": { + "$date": "2022-03-01T08:49:14.000Z" + }, + "events": [ + { + "uuid": "b4bc4564-cd57-42eb-a1f9-0e1c0e56085a", + "start": { + "$date": "2022-03-01T06:49:49.000Z" + }, + "end": { + "$date": "2022-03-01T08:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2967b9a-5226-4da6-96fb-7637b63613b3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-01T07:04:21.000Z" + }, + "end": { + "$date": "2022-03-01T07:29:40.000Z" + }, + "events": [ + { + "uuid": "a84ffd35-6211-4438-88f0-05feb4b1f6c8", + "start": { + "$date": "2022-03-01T07:04:21.000Z" + }, + "end": { + "$date": "2022-03-01T07:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "00ec3f89-4cf5-4431-9f01-c91985a6520b", + "uuid": "9873768e-2836-4c8f-b8be-215fd7225118", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-01T09:38:25.000Z" + }, + "end": { + "$date": "2022-03-01T11:50:37.000Z" + }, + "events": [ + { + "uuid": "8b739922-18ae-4ca3-9ff9-779e5f48e838", + "start": { + "$date": "2022-03-01T09:38:25.000Z" + }, + "end": { + "$date": "2022-03-01T11:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0497f17b-fbd4-4d3f-a45e-750d0cfb82df", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-01T10:33:59.000Z" + }, + "end": { + "$date": "2022-03-01T10:52:43.000Z" + }, + "events": [ + { + "uuid": "4abce257-fdea-4d9b-a234-00e78f4a7aaf", + "start": { + "$date": "2022-03-01T10:33:59.000Z" + }, + "end": { + "$date": "2022-03-01T10:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91ccc2ec-e47e-42fc-88d0-6fe09974fb9f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-01T16:41:17.000Z" + }, + "end": { + "$date": "2022-03-01T17:17:48.000Z" + }, + "events": [ + { + "uuid": "2d577f81-eade-463f-8976-1b34002cab7e", + "start": { + "$date": "2022-03-01T16:41:17.000Z" + }, + "end": { + "$date": "2022-03-01T17:17:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "6346fd05-42be-4ff5-af5a-6ccfe27aa28d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T16:41:17.000Z" + }, + "end": { + "$date": "2022-03-01T17:47:59.000Z" + }, + "events": [ + { + "uuid": "c4d55a4f-e266-49a4-9f3c-4031ddec55e3", + "start": { + "$date": "2022-03-01T16:41:17.000Z" + }, + "end": { + "$date": "2022-03-01T17:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fda7220-d468-4a08-99db-a1598f0378de", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-01T17:19:18.000Z" + }, + "end": { + "$date": "2022-03-01T17:56:34.000Z" + }, + "events": [ + { + "uuid": "b224a4ab-b318-4552-b383-f43a22b6f232", + "start": { + "$date": "2022-03-01T17:19:18.000Z" + }, + "end": { + "$date": "2022-03-01T17:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5190427-8df1-4e9b-875a-cdce69e57109", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-01T17:40:57.000Z" + }, + "end": { + "$date": "2022-03-01T17:56:42.000Z" + }, + "events": [ + { + "uuid": "ec99dd83-08a1-4105-8ae7-71751f8fa23f", + "start": { + "$date": "2022-03-01T17:40:57.000Z" + }, + "end": { + "$date": "2022-03-01T17:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2195e979-bb7d-4358-b04c-104e14b6e2f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-01T17:41:24.000Z" + }, + "end": { + "$date": "2022-03-01T18:44:33.000Z" + }, + "events": [ + { + "uuid": "5c9d8f9f-e0da-443a-be65-2de379751d37", + "start": { + "$date": "2022-03-01T17:41:24.000Z" + }, + "end": { + "$date": "2022-03-01T18:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fdacf4ac-bb2c-40ef-ad4b-b3904ee4912c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-01T18:26:45.000Z" + }, + "end": { + "$date": "2022-03-01T20:59:04.000Z" + }, + "events": [ + { + "uuid": "57d2d208-3937-46da-a7a2-81fe760c2e8d", + "start": { + "$date": "2022-03-01T18:26:45.000Z" + }, + "end": { + "$date": "2022-03-01T19:00:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a122856a-43d1-46ca-890e-d878265e9b09", + "start": { + "$date": "2022-03-01T19:00:45.000Z" + }, + "end": { + "$date": "2022-03-01T19:23:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a15ff4a-d665-49b6-bed8-4bd65c1f3af5", + "start": { + "$date": "2022-03-01T19:23:45.000Z" + }, + "end": { + "$date": "2022-03-01T20:59:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "37c8f56b-1517-4bd0-85a0-972439999a73", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-01T18:39:38.000Z" + }, + "end": { + "$date": "2022-03-01T19:38:30.000Z" + }, + "events": [ + { + "uuid": "e94ab135-b906-40f7-ad35-2f9c57528706", + "start": { + "$date": "2022-03-01T18:39:38.000Z" + }, + "end": { + "$date": "2022-03-01T19:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3e877651-e85e-4503-bf2c-67bd1b986acc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-01T20:20:09.000Z" + }, + "end": { + "$date": "2022-03-01T21:28:48.000Z" + }, + "events": [ + { + "uuid": "c7ac4151-c364-45f4-9b57-231509e06974", + "start": { + "$date": "2022-03-01T20:20:09.000Z" + }, + "end": { + "$date": "2022-03-01T21:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "1b07b941-8250-4d6a-8007-6d0ae5777952", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T21:03:08.000Z" + }, + "end": { + "$date": "2022-03-01T21:29:31.000Z" + }, + "events": [ + { + "uuid": "6b9f2bae-3d40-4a6e-ace1-10468fdddc19", + "start": { + "$date": "2022-03-01T21:03:08.000Z" + }, + "end": { + "$date": "2022-03-01T21:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "512f0f3c-f8ad-41ed-94f6-feae47fa0c71", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T21:57:39.000Z" + }, + "end": { + "$date": "2022-03-01T22:09:35.000Z" + }, + "events": [ + { + "uuid": "4637651a-3ec2-42a5-936e-0d68eb417313", + "start": { + "$date": "2022-03-01T21:57:39.000Z" + }, + "end": { + "$date": "2022-03-01T22:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "e9be2748-1c27-4bac-b147-a9388539a312", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T22:41:49.000Z" + }, + "end": { + "$date": "2022-03-01T22:43:19.000Z" + }, + "events": [ + { + "uuid": "e0378639-fffe-4503-a51f-a50238847c7a", + "start": { + "$date": "2022-03-01T22:41:49.000Z" + }, + "end": { + "$date": "2022-03-01T22:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "25eb6dda-9215-45d9-ac26-935cd839dd64", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-01T22:43:54.000Z" + }, + "end": { + "$date": "2022-03-01T22:49:41.000Z" + }, + "events": [ + { + "uuid": "660752bb-833d-4528-ac85-eb31c3a7abb1", + "start": { + "$date": "2022-03-01T22:43:54.000Z" + }, + "end": { + "$date": "2022-03-01T22:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "6115fddd-8506-4121-b157-a46c0e857005", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T22:47:19.000Z" + }, + "end": { + "$date": "2022-03-01T22:51:38.000Z" + }, + "events": [ + { + "uuid": "0331c94d-88cc-4061-9d12-2fbea4d21887", + "start": { + "$date": "2022-03-01T22:47:19.000Z" + }, + "end": { + "$date": "2022-03-01T22:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c262d2b8-019c-4440-9e06-a3c7a3d288aa", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-01T22:51:54.000Z" + }, + "end": { + "$date": "2022-03-02T02:13:28.000Z" + }, + "events": [ + { + "uuid": "6cbfd312-342c-4537-af57-19eb4c157c43", + "start": { + "$date": "2022-03-01T22:51:54.000Z" + }, + "end": { + "$date": "2022-03-02T02:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "39bb1132-d7fd-4296-be75-cbdbd33f88e9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-01T22:55:35.000Z" + }, + "end": { + "$date": "2022-03-02T01:07:36.000Z" + }, + "events": [ + { + "uuid": "cf8bd0a0-4ba1-43a7-af45-478d4df74bde", + "start": { + "$date": "2022-03-01T22:55:35.000Z" + }, + "end": { + "$date": "2022-03-02T01:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "519aad53-d6c3-43c9-bae3-35c503cef9e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-01T22:57:40.000Z" + }, + "end": { + "$date": "2022-03-02T00:09:52.000Z" + }, + "events": [ + { + "uuid": "3e19eb4b-5212-4658-9417-704ce68eda57", + "start": { + "$date": "2022-03-01T22:57:40.000Z" + }, + "end": { + "$date": "2022-03-02T00:09:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a20842d5-1cbd-4d82-8999-cd37844e5a02", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-01T23:31:30.000Z" + }, + "end": { + "$date": "2022-03-02T00:55:40.000Z" + }, + "events": [ + { + "uuid": "a406f9ca-359b-4df6-953a-8d33701955fd", + "start": { + "$date": "2022-03-01T23:31:30.000Z" + }, + "end": { + "$date": "2022-03-02T00:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c7874d5f-3511-42dd-8cd6-7fcc92b6c363", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-01T23:48:06.000Z" + }, + "end": { + "$date": "2022-03-02T01:30:05.000Z" + }, + "events": [ + { + "uuid": "c8b29d67-ec1f-4a36-9f82-40582ba90882", + "start": { + "$date": "2022-03-01T23:48:06.000Z" + }, + "end": { + "$date": "2022-03-02T01:30:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c102f34-0114-4272-9cf4-bd834d5423d4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-02T00:19:21.000Z" + }, + "end": { + "$date": "2022-03-02T00:47:46.000Z" + }, + "events": [ + { + "uuid": "4ba229bf-7fd6-42cd-81e4-dfab57ad1305", + "start": { + "$date": "2022-03-02T00:19:21.000Z" + }, + "end": { + "$date": "2022-03-02T00:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9d1bcd53-4c7c-40eb-a466-4f6692f46acd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-02T00:26:29.000Z" + }, + "end": { + "$date": "2022-03-02T04:56:28.000Z" + }, + "events": [ + { + "uuid": "eca6c69c-916a-4e5e-8f19-694f15c9d1fa", + "start": { + "$date": "2022-03-02T00:26:29.000Z" + }, + "end": { + "$date": "2022-03-02T04:56:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "80a4d255-781d-4bd7-8e20-a686bfab1ce5", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-02T00:56:25.000Z" + }, + "end": { + "$date": "2022-03-02T00:57:30.000Z" + }, + "events": [ + { + "uuid": "833b5643-9b47-41fc-88d6-502c4fa5d63d", + "start": { + "$date": "2022-03-02T00:56:25.000Z" + }, + "end": { + "$date": "2022-03-02T00:57:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d866c67e-2148-4cfb-88eb-40848fd80e60", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-02T01:00:25.000Z" + }, + "end": { + "$date": "2022-03-02T03:56:34.000Z" + }, + "events": [ + { + "uuid": "7bf0a775-10b2-458d-8837-9ab3fb62e2cc", + "start": { + "$date": "2022-03-02T01:00:25.000Z" + }, + "end": { + "$date": "2022-03-02T01:07:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d52405da-15d1-4933-8c6a-b1cb97b4440c", + "start": { + "$date": "2022-03-02T01:07:25.000Z" + }, + "end": { + "$date": "2022-03-02T01:09:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "890085a1-9072-43fd-bc76-f3d0942679f1", + "start": { + "$date": "2022-03-02T01:09:25.000Z" + }, + "end": { + "$date": "2022-03-02T02:48:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f83c458f-c5d0-47aa-b58f-f60910de9426", + "start": { + "$date": "2022-03-02T02:48:25.000Z" + }, + "end": { + "$date": "2022-03-02T02:59:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "72972797-bdee-4a0d-ab06-65c68f58aa48", + "start": { + "$date": "2022-03-02T02:59:25.000Z" + }, + "end": { + "$date": "2022-03-02T03:01:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cae131a8-3a8e-4fba-a023-b11c1e01257f", + "start": { + "$date": "2022-03-02T03:01:25.000Z" + }, + "end": { + "$date": "2022-03-02T03:32:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5020c472-4d7e-4a17-8412-9878b3269f95", + "start": { + "$date": "2022-03-02T03:32:25.000Z" + }, + "end": { + "$date": "2022-03-02T03:34:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "733145d6-a4f7-4be7-8271-2a8eba83a79c", + "start": { + "$date": "2022-03-02T03:34:25.000Z" + }, + "end": { + "$date": "2022-03-02T03:48:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cd317c72-e90d-459c-84c6-dbb9de5fea75", + "start": { + "$date": "2022-03-02T03:48:25.000Z" + }, + "end": { + "$date": "2022-03-02T03:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5568b5e8-dd55-4613-baeb-056fbd7d9be6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-02T01:09:27.000Z" + }, + "end": { + "$date": "2022-03-02T02:12:05.000Z" + }, + "events": [ + { + "uuid": "8995f75f-cbdc-46b7-abe8-7fd8250a2f32", + "start": { + "$date": "2022-03-02T01:09:27.000Z" + }, + "end": { + "$date": "2022-03-02T01:43:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3a1e2303-521d-4949-8ac0-a4aee20c6642", + "start": { + "$date": "2022-03-02T01:43:27.000Z" + }, + "end": { + "$date": "2022-03-02T01:44:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39baa1ce-ebc0-467e-8af1-7d19b8ce82f0", + "start": { + "$date": "2022-03-02T01:44:27.000Z" + }, + "end": { + "$date": "2022-03-02T02:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c170f691-10aa-4d22-b7d0-18345dad2422", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-02T01:30:18.000Z" + }, + "end": { + "$date": "2022-03-02T02:13:29.000Z" + }, + "events": [ + { + "uuid": "b8640ef8-f98a-4e58-9760-b2f5d38660a1", + "start": { + "$date": "2022-03-02T01:30:18.000Z" + }, + "end": { + "$date": "2022-03-02T02:13:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "61ec7148-5ea2-42bd-b148-2b886c50ff19", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-02T01:51:32.000Z" + }, + "end": { + "$date": "2022-03-02T02:11:04.000Z" + }, + "events": [ + { + "uuid": "d8591efb-2203-4aa9-a616-f897b3e057b0", + "start": { + "$date": "2022-03-02T01:51:32.000Z" + }, + "end": { + "$date": "2022-03-02T02:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "49b6cf97-3db4-4620-ad40-ab480053d811", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-02T02:12:34.000Z" + }, + "end": { + "$date": "2022-03-02T05:02:34.000Z" + }, + "events": [ + { + "uuid": "207a1155-02f2-4b47-94b9-b76ad780688e", + "start": { + "$date": "2022-03-02T02:12:34.000Z" + }, + "end": { + "$date": "2022-03-02T05:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "34474d4b-93ab-4dd4-a1b3-b0f518acdfc5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-02T02:17:51.000Z" + }, + "end": { + "$date": "2022-03-02T02:51:37.000Z" + }, + "events": [ + { + "uuid": "629a1eb1-4b3b-45e6-bf5a-f4780c914617", + "start": { + "$date": "2022-03-02T02:17:51.000Z" + }, + "end": { + "$date": "2022-03-02T02:51:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a7ff86a5-42ac-474f-b6ff-27aa49aa9e77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-02T02:53:27.000Z" + }, + "end": { + "$date": "2022-03-02T04:23:58.000Z" + }, + "events": [ + { + "uuid": "73028796-7a35-41b9-9e56-ce54ac43ede0", + "start": { + "$date": "2022-03-02T02:53:27.000Z" + }, + "end": { + "$date": "2022-03-02T04:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c445af7c-1766-45b4-a250-f19b54a9b7c3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-02T03:53:33.000Z" + }, + "end": { + "$date": "2022-03-02T05:11:22.000Z" + }, + "events": [ + { + "uuid": "e99b402a-e9da-4f18-82fd-50225fad75dd", + "start": { + "$date": "2022-03-02T03:53:33.000Z" + }, + "end": { + "$date": "2022-03-02T04:34:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a54dba6-c31d-44e1-8676-ed51957fe24e", + "start": { + "$date": "2022-03-02T04:34:33.000Z" + }, + "end": { + "$date": "2022-03-02T04:44:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "773334ae-8a77-418e-8c3e-dc5d95142dc5", + "start": { + "$date": "2022-03-02T04:44:33.000Z" + }, + "end": { + "$date": "2022-03-02T05:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "3ab8dd56-e5e1-40ca-b135-a7f8341ace75", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-02T04:25:17.000Z" + }, + "end": { + "$date": "2022-03-02T04:26:33.000Z" + }, + "events": [ + { + "uuid": "251a8d5c-5379-4cf8-99e1-9796c3736650", + "start": { + "$date": "2022-03-02T04:25:17.000Z" + }, + "end": { + "$date": "2022-03-02T04:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cf20a32-e1b5-4094-9471-55f186864632", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-02T04:30:13.000Z" + }, + "end": { + "$date": "2022-03-02T05:03:34.000Z" + }, + "events": [ + { + "uuid": "0e71c3a8-87fd-4147-bdb3-2971f03c0d98", + "start": { + "$date": "2022-03-02T04:30:13.000Z" + }, + "end": { + "$date": "2022-03-02T05:03:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ceb77175-3d37-4958-a06f-4613518688ed", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-02T04:38:19.000Z" + }, + "end": { + "$date": "2022-03-03T02:29:10.000Z" + }, + "events": [ + { + "uuid": "c231f661-a1be-429e-b5e3-1b3092c9f7cf", + "start": { + "$date": "2022-03-02T04:38:19.000Z" + }, + "end": { + "$date": "2022-03-02T09:31:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a6a6cea2-7de2-4169-ab17-4eba7ecd3d13", + "start": { + "$date": "2022-03-02T09:31:19.000Z" + }, + "end": { + "$date": "2022-03-02T11:41:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de61ee22-b293-4557-8afc-6a517508d32c", + "start": { + "$date": "2022-03-02T11:41:19.000Z" + }, + "end": { + "$date": "2022-03-02T11:43:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d64169b-b661-44d5-87a7-d325e291f7d9", + "start": { + "$date": "2022-03-02T11:43:19.000Z" + }, + "end": { + "$date": "2022-03-03T00:10:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f733144a-9c29-4d24-aad7-52a729e147d2", + "start": { + "$date": "2022-03-03T00:10:19.000Z" + }, + "end": { + "$date": "2022-03-03T01:14:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33fd8df8-f822-43b6-9b30-edca66008c04", + "start": { + "$date": "2022-03-03T01:14:19.000Z" + }, + "end": { + "$date": "2022-03-03T01:36:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "497e0e1e-4d53-4412-a1f0-1fb8ac7594df", + "start": { + "$date": "2022-03-03T01:36:19.000Z" + }, + "end": { + "$date": "2022-03-03T02:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "79fe80b2-fdcd-411f-a7e0-a573cf2d8a82", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-02T04:40:00.000Z" + }, + "end": { + "$date": "2022-03-02T09:21:40.000Z" + }, + "events": [ + { + "uuid": "4cb8b1ad-6f75-49c8-86ab-06aff790e82d", + "start": { + "$date": "2022-03-02T04:40:00.000Z" + }, + "end": { + "$date": "2022-03-02T09:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6ae20c82-32e8-471b-bb6d-ce4419c1c011", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-02T04:56:48.000Z" + }, + "end": { + "$date": "2022-03-02T06:18:21.000Z" + }, + "events": [ + { + "uuid": "c5b7f1b0-ce80-40be-bc94-709f797f4795", + "start": { + "$date": "2022-03-02T04:56:48.000Z" + }, + "end": { + "$date": "2022-03-02T06:18:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "703e7dbb-f76e-4ea2-8f79-0a687d6e7062", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-02T05:06:54.000Z" + }, + "end": { + "$date": "2022-03-02T05:26:24.000Z" + }, + "events": [ + { + "uuid": "e5933fe8-6009-4090-8e3d-93f603886161", + "start": { + "$date": "2022-03-02T05:06:54.000Z" + }, + "end": { + "$date": "2022-03-02T05:26:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "3634bfb6-e3bd-4292-a656-317ceba30ed3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-02T05:19:58.000Z" + }, + "end": { + "$date": "2022-03-02T05:33:08.000Z" + }, + "events": [ + { + "uuid": "e761d96f-bc57-4f6a-8998-8dedb1024caf", + "start": { + "$date": "2022-03-02T05:19:58.000Z" + }, + "end": { + "$date": "2022-03-02T05:33:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "b6ae4109-eb85-4cae-b3bb-bd26023ff97b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-02T05:28:06.000Z" + }, + "end": { + "$date": "2022-03-02T07:09:56.000Z" + }, + "events": [ + { + "uuid": "280d507d-f177-4ce8-ba93-35a8ea6baa28", + "start": { + "$date": "2022-03-02T05:28:06.000Z" + }, + "end": { + "$date": "2022-03-02T07:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81f51224-24e6-474e-a2ab-06853565cbaf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-02T05:46:05.000Z" + }, + "end": { + "$date": "2022-03-02T07:03:07.000Z" + }, + "events": [ + { + "uuid": "43296ec1-b1fb-4dd9-a37c-9afd9cfdbc8e", + "start": { + "$date": "2022-03-02T05:46:05.000Z" + }, + "end": { + "$date": "2022-03-02T07:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e7aea01-aff6-4f4b-87c9-18a288e8d88b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-02T06:06:07.000Z" + }, + "end": { + "$date": "2022-03-02T06:32:33.000Z" + }, + "events": [ + { + "uuid": "644bb153-f2b5-412a-a032-ef818faee489", + "start": { + "$date": "2022-03-02T06:06:07.000Z" + }, + "end": { + "$date": "2022-03-02T06:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cf8261d-00d1-461b-b745-1d011e63d930", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-02T06:35:32.000Z" + }, + "end": { + "$date": "2022-03-02T06:53:24.000Z" + }, + "events": [ + { + "uuid": "dc32dd51-6534-4056-bb58-df7c5e8d9727", + "start": { + "$date": "2022-03-02T06:35:32.000Z" + }, + "end": { + "$date": "2022-03-02T06:53:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7b731a27-1df9-4735-8dc7-7f16f5bf0f5f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-02T06:34:22.000Z" + }, + "end": { + "$date": "2022-03-02T07:27:33.000Z" + }, + "events": [ + { + "uuid": "bac43533-cd58-47ad-af00-4e44d72267bd", + "start": { + "$date": "2022-03-02T06:34:22.000Z" + }, + "end": { + "$date": "2022-03-02T07:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f08381e0-1d96-420f-85ea-57f8166be4a8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-02T06:55:33.000Z" + }, + "end": { + "$date": "2022-03-02T07:19:22.000Z" + }, + "events": [ + { + "uuid": "9c674fee-e287-4c1c-be73-d75e20a2be92", + "start": { + "$date": "2022-03-02T06:55:33.000Z" + }, + "end": { + "$date": "2022-03-02T07:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "786c7439-bf29-45d0-8c9b-fbb7274c2153", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-02T07:03:34.000Z" + }, + "end": { + "$date": "2022-03-02T07:37:36.000Z" + }, + "events": [ + { + "uuid": "cd6dc380-43ee-4a06-95b7-82194ccfe8d1", + "start": { + "$date": "2022-03-02T07:03:34.000Z" + }, + "end": { + "$date": "2022-03-02T07:37:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7b0da505-e362-4267-bc93-5780c1094221", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-02T07:21:14.000Z" + }, + "end": { + "$date": "2022-03-02T07:39:35.000Z" + }, + "events": [ + { + "uuid": "abe27b63-0bb2-472e-ad35-49990b3ebd3c", + "start": { + "$date": "2022-03-02T07:21:14.000Z" + }, + "end": { + "$date": "2022-03-02T07:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e40bb298-14da-4d30-9db1-8e3ffeb247c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-02T15:29:09.000Z" + }, + "end": { + "$date": "2022-03-02T16:09:10.000Z" + }, + "events": [ + { + "uuid": "e3236534-1afc-4ec7-b474-ea70726d35d3", + "start": { + "$date": "2022-03-02T15:29:09.000Z" + }, + "end": { + "$date": "2022-03-02T16:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dc43fdc6-4a78-469f-a718-fa1dd75c9f7e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-02T17:23:20.000Z" + }, + "end": { + "$date": "2022-03-02T18:45:41.000Z" + }, + "events": [ + { + "uuid": "73d4d433-bc45-4eed-902f-95157b30557c", + "start": { + "$date": "2022-03-02T17:23:20.000Z" + }, + "end": { + "$date": "2022-03-02T18:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "91172013-4daa-4c09-afe7-688682085656", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-02T17:59:00.000Z" + }, + "end": { + "$date": "2022-03-02T18:15:15.000Z" + }, + "events": [ + { + "uuid": "ee15f2f0-55eb-4f74-9f1e-9ca4c918181d", + "start": { + "$date": "2022-03-02T17:59:00.000Z" + }, + "end": { + "$date": "2022-03-02T18:15:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f0357cc6-8376-4a9d-8b6d-1f54a12c6550", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-02T18:53:48.000Z" + }, + "end": { + "$date": "2022-03-02T19:11:28.000Z" + }, + "events": [ + { + "uuid": "c6741a11-bd8d-4df1-b318-1cf3539b567e", + "start": { + "$date": "2022-03-02T18:53:48.000Z" + }, + "end": { + "$date": "2022-03-02T19:11:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "c348b5d5-edec-48ea-a138-4a9e38a24ccf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-02T22:52:33.000Z" + }, + "end": { + "$date": "2022-03-03T00:11:40.000Z" + }, + "events": [ + { + "uuid": "43975d84-af1a-416a-a008-ed46a358b09a", + "start": { + "$date": "2022-03-02T22:52:33.000Z" + }, + "end": { + "$date": "2022-03-03T00:11:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "cc45f158-59f1-41bc-84aa-ab14aa82e8bf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-02T22:53:21.000Z" + }, + "end": { + "$date": "2022-03-02T22:57:01.000Z" + }, + "events": [ + { + "uuid": "6334c33d-8e74-46b4-944a-85e66c26fd0c", + "start": { + "$date": "2022-03-02T22:53:21.000Z" + }, + "end": { + "$date": "2022-03-02T22:57:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "0b11a3b5-2634-468b-9c73-c456139e809a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-02T23:09:22.000Z" + }, + "end": { + "$date": "2022-03-03T00:43:44.000Z" + }, + "events": [ + { + "uuid": "a10d0bf0-84ce-4d2a-af82-4a20ae78c675", + "start": { + "$date": "2022-03-02T23:09:22.000Z" + }, + "end": { + "$date": "2022-03-03T00:43:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2c3dadaa-5847-4c75-9e47-bc501ba40504", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-02T23:14:45.000Z" + }, + "end": { + "$date": "2022-03-02T23:19:03.000Z" + }, + "events": [ + { + "uuid": "54ccb344-b4fd-4b99-8b5a-d56ca75f26f3", + "start": { + "$date": "2022-03-02T23:14:45.000Z" + }, + "end": { + "$date": "2022-03-02T23:19:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8f5d11f-3006-4416-98d1-58ac2cee9195", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-02T23:25:42.000Z" + }, + "end": { + "$date": "2022-03-03T00:07:03.000Z" + }, + "events": [ + { + "uuid": "b3a497b1-a8ea-457d-9353-eaafb94e18e3", + "start": { + "$date": "2022-03-02T23:25:42.000Z" + }, + "end": { + "$date": "2022-03-03T00:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "beeb5b33-6d17-4079-90a6-14ee07ec1be5", + "uuid": "32938320-d001-4e6f-97ab-26e89ccc2ac3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T00:10:13.000Z" + }, + "end": { + "$date": "2022-03-03T00:15:33.000Z" + }, + "events": [ + { + "uuid": "05e12e55-5538-4354-8ad2-d10a49daa6cf", + "start": { + "$date": "2022-03-03T00:10:13.000Z" + }, + "end": { + "$date": "2022-03-03T00:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "46a489e6-abfb-4709-8f32-7db704e1816f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-03T00:12:11.000Z" + }, + "end": { + "$date": "2022-03-03T01:51:41.000Z" + }, + "events": [ + { + "uuid": "979a1cbb-6dd9-4475-9d86-8ce55f4dd333", + "start": { + "$date": "2022-03-03T00:12:11.000Z" + }, + "end": { + "$date": "2022-03-03T01:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d86c0aa7-3e25-4304-9ef7-724f718855be", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-03T00:12:43.000Z" + }, + "end": { + "$date": "2022-03-03T02:21:54.000Z" + }, + "events": [ + { + "uuid": "e3aeeead-7880-4a6c-823d-9575cf10bf72", + "start": { + "$date": "2022-03-03T00:12:43.000Z" + }, + "end": { + "$date": "2022-03-03T02:21:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8b3d2dd0-36ae-4176-be89-b45c1a59a3cc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T00:15:49.000Z" + }, + "end": { + "$date": "2022-03-03T00:16:58.000Z" + }, + "events": [ + { + "uuid": "9eaf383b-83f9-474a-a651-4e6fef916118", + "start": { + "$date": "2022-03-03T00:15:49.000Z" + }, + "end": { + "$date": "2022-03-03T00:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "48b1893e-210c-4c05-8927-87f7ed39e12b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T00:17:14.000Z" + }, + "end": { + "$date": "2022-03-03T00:40:04.000Z" + }, + "events": [ + { + "uuid": "412f9b4d-dce4-4224-a8ed-b980d9b59757", + "start": { + "$date": "2022-03-03T00:17:14.000Z" + }, + "end": { + "$date": "2022-03-03T00:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "bae53dbf-8c57-4540-9912-c04661ccef6f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-03T01:52:16.000Z" + }, + "end": { + "$date": "2022-03-03T03:07:02.000Z" + }, + "events": [ + { + "uuid": "a6c0b4cf-ec7b-42a9-98f4-d46a185a11d3", + "start": { + "$date": "2022-03-03T01:52:16.000Z" + }, + "end": { + "$date": "2022-03-03T03:07:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f744c055-b75f-4b6e-b3ce-e51c1a1ca7f8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-03T02:22:00.000Z" + }, + "end": { + "$date": "2022-03-03T02:24:25.000Z" + }, + "events": [ + { + "uuid": "83ac95dd-d324-4838-8e7c-afcf06e7171d", + "start": { + "$date": "2022-03-03T02:22:00.000Z" + }, + "end": { + "$date": "2022-03-03T02:24:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "87b822db-b741-45ce-b1e9-99b73d94de7f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-03T02:47:24.000Z" + }, + "end": { + "$date": "2022-03-03T04:47:24.000Z" + }, + "events": [ + { + "uuid": "2956c417-7bf7-4b00-b13e-3480a244371c", + "start": { + "$date": "2022-03-03T02:47:24.000Z" + }, + "end": { + "$date": "2022-03-03T04:47:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c63b7a96-2eea-4db5-ad47-6ac4b6dafe35", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-03T03:07:32.000Z" + }, + "end": { + "$date": "2022-03-03T03:46:58.000Z" + }, + "events": [ + { + "uuid": "0b4fd703-da0a-4370-b7af-5f19a56694c0", + "start": { + "$date": "2022-03-03T03:07:32.000Z" + }, + "end": { + "$date": "2022-03-03T03:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c19a005-b093-44a5-a2a3-98f87c52dea6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T03:09:39.000Z" + }, + "end": { + "$date": "2022-03-03T03:21:38.000Z" + }, + "events": [ + { + "uuid": "25cdc58f-1a0c-454d-9173-090d5780844a", + "start": { + "$date": "2022-03-03T03:09:39.000Z" + }, + "end": { + "$date": "2022-03-03T03:21:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5c8bee5d-ceb0-4c1c-8886-5c50cd3bb0c4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-03T03:13:58.000Z" + }, + "end": { + "$date": "2022-03-03T04:09:23.000Z" + }, + "events": [ + { + "uuid": "321990dc-35aa-46a0-bf01-be4b44e4295a", + "start": { + "$date": "2022-03-03T03:13:58.000Z" + }, + "end": { + "$date": "2022-03-03T03:42:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3d585882-89ab-4375-837a-21298431958f", + "start": { + "$date": "2022-03-03T03:42:58.000Z" + }, + "end": { + "$date": "2022-03-03T03:52:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "adfaa1fe-849d-4724-8eb8-01b9cdabd469", + "start": { + "$date": "2022-03-03T03:52:58.000Z" + }, + "end": { + "$date": "2022-03-03T03:54:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b4ef3089-914c-4495-a6ee-049524af740d", + "start": { + "$date": "2022-03-03T03:54:58.000Z" + }, + "end": { + "$date": "2022-03-03T04:05:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd130c59-ff4f-42bf-8836-8ee09525f29a", + "start": { + "$date": "2022-03-03T04:05:58.000Z" + }, + "end": { + "$date": "2022-03-03T04:09:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f97aa035-d091-4df7-93ff-140ceeb469a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-03T03:24:42.000Z" + }, + "end": { + "$date": "2022-03-03T03:45:28.000Z" + }, + "events": [ + { + "uuid": "4be1862c-e5bd-4597-9be5-6d8eea679e1f", + "start": { + "$date": "2022-03-03T03:24:42.000Z" + }, + "end": { + "$date": "2022-03-03T03:45:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0aa15dfc-0166-47ce-814e-575dae861012", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T03:33:30.000Z" + }, + "end": { + "$date": "2022-03-03T03:56:01.000Z" + }, + "events": [ + { + "uuid": "d231be84-9ec4-4f7d-bd3b-99eba7fd9bf9", + "start": { + "$date": "2022-03-03T03:33:30.000Z" + }, + "end": { + "$date": "2022-03-03T03:56:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fc17b71-8ed0-474d-a95c-94e276ed4398", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-03T05:22:53.000Z" + }, + "end": { + "$date": "2022-03-03T05:24:58.000Z" + }, + "events": [ + { + "uuid": "def29e48-d263-4fb9-b7a3-7bdae3320dab", + "start": { + "$date": "2022-03-03T05:22:53.000Z" + }, + "end": { + "$date": "2022-03-03T05:24:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "25fc93dd-58f8-4e15-b35f-2008f223fcd8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T04:11:44.000Z" + }, + "end": { + "$date": "2022-03-03T04:32:19.000Z" + }, + "events": [ + { + "uuid": "dddcf02b-2948-4dbd-b598-4be57fea432c", + "start": { + "$date": "2022-03-03T04:11:44.000Z" + }, + "end": { + "$date": "2022-03-03T04:32:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c0eb793d-0a5c-475f-b243-22deda06c1ef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-03T04:07:56.000Z" + }, + "end": { + "$date": "2022-03-03T04:59:28.000Z" + }, + "events": [ + { + "uuid": "72871cb7-5808-46b7-bc21-b968947e72af", + "start": { + "$date": "2022-03-03T04:07:56.000Z" + }, + "end": { + "$date": "2022-03-03T04:59:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c7a12068-5011-40a8-bbd0-5f2fb67b1937", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-03T02:27:01.000Z" + }, + "end": { + "$date": "2022-03-03T06:42:46.000Z" + }, + "events": [ + { + "uuid": "85673056-fc56-4e2d-a716-660a24135104", + "start": { + "$date": "2022-03-03T02:27:01.000Z" + }, + "end": { + "$date": "2022-03-03T06:42:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "55b2030d-2659-485a-98b3-73a662e02027", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-03T04:19:24.000Z" + }, + "end": { + "$date": "2022-03-03T04:55:53.000Z" + }, + "events": [ + { + "uuid": "8bc50e34-6b5a-4f61-9353-b664bd6eaa41", + "start": { + "$date": "2022-03-03T04:19:24.000Z" + }, + "end": { + "$date": "2022-03-03T04:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99929ae6-3b3b-4e8a-99e7-f425850d6e89", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T04:25:05.000Z" + }, + "end": { + "$date": "2022-03-03T04:49:20.000Z" + }, + "events": [ + { + "uuid": "86d9b056-126b-4d92-b79e-b3dcf89f430b", + "start": { + "$date": "2022-03-03T04:25:05.000Z" + }, + "end": { + "$date": "2022-03-03T04:49:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c6a477ac-ec2c-4992-8e40-5ab9d33d4624", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-03T04:28:58.000Z" + }, + "end": { + "$date": "2022-03-03T05:02:10.000Z" + }, + "events": [ + { + "uuid": "c0ed4297-98b6-412d-9419-4e18bd1be539", + "start": { + "$date": "2022-03-03T04:28:58.000Z" + }, + "end": { + "$date": "2022-03-03T05:02:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dd024ea6-68d3-4dbd-8368-40d394132863", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-03T04:29:56.000Z" + }, + "end": { + "$date": "2022-03-03T05:52:12.000Z" + }, + "events": [ + { + "uuid": "b06d660f-046a-4a75-be3c-cc080cfb7cda", + "start": { + "$date": "2022-03-03T04:29:56.000Z" + }, + "end": { + "$date": "2022-03-03T05:52:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6684834e-41a6-4d24-ab9e-edbacda77e5d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T04:32:35.000Z" + }, + "end": { + "$date": "2022-03-03T05:25:31.000Z" + }, + "events": [ + { + "uuid": "c7184a12-cf63-4678-b9b7-72ceb9cd645b", + "start": { + "$date": "2022-03-03T04:32:35.000Z" + }, + "end": { + "$date": "2022-03-03T05:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d39d1cb-b8a6-4ea1-9ebf-16b4f850e3f4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T04:51:35.000Z" + }, + "end": { + "$date": "2022-03-03T05:13:26.000Z" + }, + "events": [ + { + "uuid": "700a8158-e7ae-4970-8a5f-4e2dc9f7a3ec", + "start": { + "$date": "2022-03-03T04:51:35.000Z" + }, + "end": { + "$date": "2022-03-03T05:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a64c5334-9bf1-4e06-b416-e031f3eb5027", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T05:17:36.000Z" + }, + "end": { + "$date": "2022-03-03T05:33:21.000Z" + }, + "events": [ + { + "uuid": "ae564f1e-9db3-4b80-902a-daa58d4d11af", + "start": { + "$date": "2022-03-03T05:17:36.000Z" + }, + "end": { + "$date": "2022-03-03T05:33:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f466312-2831-4d2e-b2b6-c3f3f9b2af9f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T05:35:16.000Z" + }, + "end": { + "$date": "2022-03-03T06:04:02.000Z" + }, + "events": [ + { + "uuid": "988e621f-c2a8-4f55-8b83-a7303b2d278c", + "start": { + "$date": "2022-03-03T05:35:16.000Z" + }, + "end": { + "$date": "2022-03-03T06:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be98ffd9-84e4-4cc7-864b-f78a18a31495", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T06:06:17.000Z" + }, + "end": { + "$date": "2022-03-03T06:27:52.000Z" + }, + "events": [ + { + "uuid": "55bddf70-0c2b-4e8e-adb6-248a0b889669", + "start": { + "$date": "2022-03-03T06:06:17.000Z" + }, + "end": { + "$date": "2022-03-03T06:27:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a8fb754-8b0f-4d93-9f48-b4f2eea46ffb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-03T06:29:47.000Z" + }, + "end": { + "$date": "2022-03-03T06:51:08.000Z" + }, + "events": [ + { + "uuid": "f3b6c2b0-c7c3-43ae-83dc-8d0ba247d6fc", + "start": { + "$date": "2022-03-03T06:29:47.000Z" + }, + "end": { + "$date": "2022-03-03T06:51:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df0528ed-5516-4473-9c72-ed25cf13e80d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-03T15:24:41.000Z" + }, + "end": { + "$date": "2022-03-03T16:32:18.000Z" + }, + "events": [ + { + "uuid": "76ca7ba0-4dbb-4f2b-9a3e-cc3d1ef82057", + "start": { + "$date": "2022-03-03T15:24:41.000Z" + }, + "end": { + "$date": "2022-03-03T16:32:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ece59c49-84de-4a96-9160-a4fc8016ddb3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T17:29:32.000Z" + }, + "end": { + "$date": "2022-03-03T17:54:48.000Z" + }, + "events": [ + { + "uuid": "16328de0-11fe-4dc5-ae2e-bd3a08983661", + "start": { + "$date": "2022-03-03T17:29:32.000Z" + }, + "end": { + "$date": "2022-03-03T17:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97312fe0-b4a9-40fb-898c-7d38e7e6d00e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-03T17:44:14.000Z" + }, + "end": { + "$date": "2022-03-03T18:06:15.000Z" + }, + "events": [ + { + "uuid": "a7535f9a-a117-4e30-99ce-5ad24b2c01c9", + "start": { + "$date": "2022-03-03T17:44:14.000Z" + }, + "end": { + "$date": "2022-03-03T18:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b7e7c439-8b7c-4b43-a99a-df3743a6d9fe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T18:19:57.000Z" + }, + "end": { + "$date": "2022-03-03T18:28:37.000Z" + }, + "events": [ + { + "uuid": "31d1f35a-5bd6-4fdf-8a9f-5bbda8b37afc", + "start": { + "$date": "2022-03-03T18:19:57.000Z" + }, + "end": { + "$date": "2022-03-03T18:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fc5c38fa-a9f8-4231-8996-132ee584dcac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-03T18:47:57.000Z" + }, + "end": { + "$date": "2022-03-03T18:49:41.000Z" + }, + "events": [ + { + "uuid": "5aa79858-1405-4a37-82d1-dafb95c922eb", + "start": { + "$date": "2022-03-03T18:47:57.000Z" + }, + "end": { + "$date": "2022-03-03T18:49:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8fecfbc0-d152-46a4-aeaa-10dc3a3a4248", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-03T18:59:02.000Z" + }, + "end": { + "$date": "2022-03-03T20:35:04.000Z" + }, + "events": [ + { + "uuid": "de7eef83-d471-4629-aae5-2da889bd690c", + "start": { + "$date": "2022-03-03T18:59:02.000Z" + }, + "end": { + "$date": "2022-03-03T20:35:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e99e2611-1afa-4aac-8975-29c1600e65a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-03T19:25:58.000Z" + }, + "end": { + "$date": "2022-03-03T20:06:29.000Z" + }, + "events": [ + { + "uuid": "3dd6a383-41a2-4b8e-ade4-7c82efe9a00a", + "start": { + "$date": "2022-03-03T19:25:58.000Z" + }, + "end": { + "$date": "2022-03-03T20:06:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e1465fc5-7037-4aec-9d65-f33a88e404a6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T19:29:23.000Z" + }, + "end": { + "$date": "2022-03-03T19:46:59.000Z" + }, + "events": [ + { + "uuid": "ed7bb21f-4092-42e7-a43a-73475eb69c31", + "start": { + "$date": "2022-03-03T19:29:23.000Z" + }, + "end": { + "$date": "2022-03-03T19:46:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "b5bdf74a-b55f-4a0b-b56b-dfa92381573a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-03T21:58:44.000Z" + }, + "end": { + "$date": "2022-03-03T22:06:39.000Z" + }, + "events": [ + { + "uuid": "adaaf3a7-e72a-4625-93d7-c1a0e453a8fa", + "start": { + "$date": "2022-03-03T21:58:44.000Z" + }, + "end": { + "$date": "2022-03-03T22:06:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "887096a5-be42-4ddd-b425-e55da7f355d0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-03T22:08:30.000Z" + }, + "end": { + "$date": "2022-03-03T23:27:53.000Z" + }, + "events": [ + { + "uuid": "00e867d8-1a1b-4279-a211-28b9708a680b", + "start": { + "$date": "2022-03-03T22:08:30.000Z" + }, + "end": { + "$date": "2022-03-03T23:26:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0efd71d3-de66-4cc6-9ecc-34d7d08fbc1d", + "start": { + "$date": "2022-03-03T23:26:30.000Z" + }, + "end": { + "$date": "2022-03-03T23:27:53.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d004a2af-6a85-4d63-823d-58a6453d7069", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-03T22:38:11.000Z" + }, + "end": { + "$date": "2022-03-03T23:22:20.000Z" + }, + "events": [ + { + "uuid": "e465fb0e-43ec-4844-a254-0028804d3bae", + "start": { + "$date": "2022-03-03T22:38:11.000Z" + }, + "end": { + "$date": "2022-03-03T23:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ace6bb08-89e1-4578-95a3-e6a0aeb2d9dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-03T22:57:35.000Z" + }, + "end": { + "$date": "2022-03-04T00:38:25.000Z" + }, + "events": [ + { + "uuid": "87391323-3b8d-4ca6-84ce-0973661d59dd", + "start": { + "$date": "2022-03-03T22:57:35.000Z" + }, + "end": { + "$date": "2022-03-04T00:13:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de112996-e1b8-4cc5-8994-a3e06b75d6cb", + "start": { + "$date": "2022-03-04T00:13:35.000Z" + }, + "end": { + "$date": "2022-03-04T00:24:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "58bee9d2-f5b1-49dc-b1fe-9fa673ab41ea", + "start": { + "$date": "2022-03-04T00:24:35.000Z" + }, + "end": { + "$date": "2022-03-04T00:38:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "08c1b692-3712-4f7e-86b2-8eba62dcdcbc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-03T23:32:39.000Z" + }, + "end": { + "$date": "2022-03-04T00:13:05.000Z" + }, + "events": [ + { + "uuid": "e50a0949-80c3-400e-81ad-c9eeb2490479", + "start": { + "$date": "2022-03-03T23:32:39.000Z" + }, + "end": { + "$date": "2022-03-04T00:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "c1515c37-05cb-4193-b92e-031070f2ea42", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-04T00:25:52.000Z" + }, + "end": { + "$date": "2022-03-04T03:05:45.000Z" + }, + "events": [ + { + "uuid": "5b9fd8dd-64e6-4e3b-9e81-c6807d3d5dfd", + "start": { + "$date": "2022-03-04T00:25:52.000Z" + }, + "end": { + "$date": "2022-03-04T03:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1bdba9f4-da50-451f-a4a5-04b2a4e8e32e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-04T02:20:17.000Z" + }, + "end": { + "$date": "2022-03-04T08:29:01.000Z" + }, + "events": [ + { + "uuid": "d4da56d4-1fb6-4b61-a06a-dc6e10cc31db", + "start": { + "$date": "2022-03-04T02:20:17.000Z" + }, + "end": { + "$date": "2022-03-04T08:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a58eabcc-01a5-4363-b8b1-feeb8dacc3ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-04T02:44:45.000Z" + }, + "end": { + "$date": "2022-03-04T04:33:18.000Z" + }, + "events": [ + { + "uuid": "15d61cfd-ed37-4347-afbe-b1da2c95583f", + "start": { + "$date": "2022-03-04T02:44:45.000Z" + }, + "end": { + "$date": "2022-03-04T04:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "a669e073-1346-4ee7-ad3b-97a7af639463", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-04T02:49:31.000Z" + }, + "end": { + "$date": "2022-03-04T05:21:44.000Z" + }, + "events": [ + { + "uuid": "85d17761-c8ce-4ea8-8f27-8974a553e3dd", + "start": { + "$date": "2022-03-04T02:49:31.000Z" + }, + "end": { + "$date": "2022-03-04T05:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "28656c7f-37b2-4639-abed-f7ea6303b921", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-04T03:06:06.000Z" + }, + "end": { + "$date": "2022-03-04T03:10:30.000Z" + }, + "events": [ + { + "uuid": "944bf141-c806-4eaa-b084-d2aa4a363367", + "start": { + "$date": "2022-03-04T03:06:06.000Z" + }, + "end": { + "$date": "2022-03-04T03:10:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "87856a1c-24fe-47a5-9fc7-401cda8db1cf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-04T03:10:56.000Z" + }, + "end": { + "$date": "2022-03-04T03:59:41.000Z" + }, + "events": [ + { + "uuid": "0f87127b-7872-4f9e-a013-af5016e0bc82", + "start": { + "$date": "2022-03-04T03:10:56.000Z" + }, + "end": { + "$date": "2022-03-04T03:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "af5b369d-515c-40fa-ac7e-e8418882fd58", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-04T03:53:29.000Z" + }, + "end": { + "$date": "2022-03-04T04:29:35.000Z" + }, + "events": [ + { + "uuid": "1ac5d62d-bcb2-403c-8cea-35d70c889fb5", + "start": { + "$date": "2022-03-04T03:53:29.000Z" + }, + "end": { + "$date": "2022-03-04T04:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "604664f4-3483-451e-acd8-96fc5bca785b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-04T05:01:25.000Z" + }, + "end": { + "$date": "2022-03-04T06:32:17.000Z" + }, + "events": [ + { + "uuid": "e5b353d0-127f-4b28-b285-b5586382c88b", + "start": { + "$date": "2022-03-04T05:01:25.000Z" + }, + "end": { + "$date": "2022-03-04T06:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "a71012a1-6df3-4666-aff1-18c79a759cd3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-04T05:18:29.000Z" + }, + "end": { + "$date": "2022-03-04T05:58:19.000Z" + }, + "events": [ + { + "uuid": "8438ed15-2458-4420-a862-d5a77f99eec3", + "start": { + "$date": "2022-03-04T05:18:29.000Z" + }, + "end": { + "$date": "2022-03-04T05:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", + "uuid": "a69cc366-53ca-4288-bb3a-b8942d81c13a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-04T05:19:22.000Z" + }, + "end": { + "$date": "2022-03-04T05:30:16.000Z" + }, + "events": [ + { + "uuid": "0da62115-e5be-4d02-94ab-bc585c4342b3", + "start": { + "$date": "2022-03-04T05:19:22.000Z" + }, + "end": { + "$date": "2022-03-04T05:30:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "44b46f32-fb40-4f0c-981b-c6b65011e4cb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-04T05:36:45.000Z" + }, + "end": { + "$date": "2022-03-04T06:37:42.000Z" + }, + "events": [ + { + "uuid": "dad838ab-34cb-4595-a4f5-79197da8bb9b", + "start": { + "$date": "2022-03-04T05:36:45.000Z" + }, + "end": { + "$date": "2022-03-04T06:37:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "6a9c591f-89c9-4002-888e-4f4a15649276", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-04T07:22:24.000Z" + }, + "end": { + "$date": "2022-03-04T07:52:16.000Z" + }, + "events": [ + { + "uuid": "8ec9164d-5af4-4a50-a797-04faf827f124", + "start": { + "$date": "2022-03-04T07:22:24.000Z" + }, + "end": { + "$date": "2022-03-04T07:52:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "5755f210-3166-4a94-b3fe-0ba29d6f4aa7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-04T07:26:33.000Z" + }, + "end": { + "$date": "2022-03-04T09:33:21.000Z" + }, + "events": [ + { + "uuid": "67a83c33-aae5-4ac5-82ed-a905d54d404b", + "start": { + "$date": "2022-03-04T07:26:33.000Z" + }, + "end": { + "$date": "2022-03-04T09:33:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "adcd9f47-0d4b-4245-9029-7a54bd486716", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-04T16:25:29.000Z" + }, + "end": { + "$date": "2022-03-04T17:05:26.000Z" + }, + "events": [ + { + "uuid": "0724430c-cfb3-44b9-b512-49b5ea95fa46", + "start": { + "$date": "2022-03-04T16:25:29.000Z" + }, + "end": { + "$date": "2022-03-04T17:05:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5283e538-d323-41df-8f18-f36ccfd61ca1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-04T16:51:26.000Z" + }, + "end": { + "$date": "2022-03-04T17:14:57.000Z" + }, + "events": [ + { + "uuid": "1457ab8c-83c1-49ef-9d0f-3feb66ca3864", + "start": { + "$date": "2022-03-04T16:51:26.000Z" + }, + "end": { + "$date": "2022-03-04T17:14:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ee2d0a6e-3c90-44d8-a279-92c38cad9f6e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-04T17:04:56.000Z" + }, + "end": { + "$date": "2022-03-04T18:11:22.000Z" + }, + "events": [ + { + "uuid": "3781e51b-0736-4b4b-90d7-8712e7f2aa50", + "start": { + "$date": "2022-03-04T17:04:56.000Z" + }, + "end": { + "$date": "2022-03-04T18:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "da1aa0e8-1630-4695-b3e7-ac678b825c0d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-04T17:17:23.000Z" + }, + "end": { + "$date": "2022-03-04T23:58:51.000Z" + }, + "events": [ + { + "uuid": "f7cd9a76-ff13-4187-b9f7-18221b8aa3f3", + "start": { + "$date": "2022-03-04T17:17:23.000Z" + }, + "end": { + "$date": "2022-03-04T23:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5361e2fa-dcb5-4809-b813-6296cf602c1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-04T17:29:28.000Z" + }, + "end": { + "$date": "2022-03-04T17:52:19.000Z" + }, + "events": [ + { + "uuid": "729e20a0-f0d1-49fd-9c33-3624dd23cf97", + "start": { + "$date": "2022-03-04T17:29:28.000Z" + }, + "end": { + "$date": "2022-03-04T17:52:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0d7715de-875f-46aa-a19f-a83eefaac337", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-04T18:02:30.000Z" + }, + "end": { + "$date": "2022-03-04T18:28:45.000Z" + }, + "events": [ + { + "uuid": "c6ef2e84-f915-47df-b0c1-9d8bff399c09", + "start": { + "$date": "2022-03-04T18:02:30.000Z" + }, + "end": { + "$date": "2022-03-04T18:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "59b2e953-927c-4a52-a555-2cd34c42493a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-04T19:17:09.000Z" + }, + "end": { + "$date": "2022-03-04T19:47:04.000Z" + }, + "events": [ + { + "uuid": "7c2acb09-cfad-4a67-98de-33755655f2d4", + "start": { + "$date": "2022-03-04T19:17:09.000Z" + }, + "end": { + "$date": "2022-03-04T19:47:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8f2819d5-efbe-4261-b1af-96021e865a05", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-04T19:36:22.000Z" + }, + "end": { + "$date": "2022-03-05T00:54:44.000Z" + }, + "events": [ + { + "uuid": "c2a45725-670b-4975-9824-e11a447dc752", + "start": { + "$date": "2022-03-04T19:36:22.000Z" + }, + "end": { + "$date": "2022-03-05T00:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2d98c0cf-87b2-4ad7-adc5-5522fad1f7e2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-04T22:43:26.000Z" + }, + "end": { + "$date": "2022-03-04T22:47:16.000Z" + }, + "events": [ + { + "uuid": "f56bfba0-4052-4045-aaf7-0dddc4e1f0d2", + "start": { + "$date": "2022-03-04T22:43:26.000Z" + }, + "end": { + "$date": "2022-03-04T22:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "277b6ef3-9f0e-4f7c-8f85-d791a434cd98", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-04T22:52:52.000Z" + }, + "end": { + "$date": "2022-03-04T23:12:27.000Z" + }, + "events": [ + { + "uuid": "3e7097f5-5cd5-4b7e-978a-4e32b4ebb2ad", + "start": { + "$date": "2022-03-04T22:52:52.000Z" + }, + "end": { + "$date": "2022-03-04T23:12:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "092cb89e-5878-4468-a63f-7be3dde65343", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-04T23:03:41.000Z" + }, + "end": { + "$date": "2022-03-05T00:36:10.000Z" + }, + "events": [ + { + "uuid": "2c97f00f-d9f1-4abd-aec3-b88bb526e381", + "start": { + "$date": "2022-03-04T23:03:41.000Z" + }, + "end": { + "$date": "2022-03-05T00:36:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "908ed23a-ce21-47ea-b668-8bcfdf6123a7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T00:39:55.000Z" + }, + "end": { + "$date": "2022-03-05T04:13:40.000Z" + }, + "events": [ + { + "uuid": "f2312fcf-3c6a-43dc-ab64-6ab54d977c15", + "start": { + "$date": "2022-03-05T00:39:55.000Z" + }, + "end": { + "$date": "2022-03-05T01:00:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1f3961d4-804e-4bc2-b047-12acbec4b128", + "start": { + "$date": "2022-03-05T01:00:55.000Z" + }, + "end": { + "$date": "2022-03-05T01:05:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6026da62-0a63-47f3-8e27-7855b5784d65", + "start": { + "$date": "2022-03-05T01:05:55.000Z" + }, + "end": { + "$date": "2022-03-05T01:15:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "07b9edb8-c0e0-4309-bb80-ef8e178d9c63", + "start": { + "$date": "2022-03-05T01:15:55.000Z" + }, + "end": { + "$date": "2022-03-05T01:17:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be13c3a2-d090-44f3-99dc-a760506ee40c", + "start": { + "$date": "2022-03-05T01:17:55.000Z" + }, + "end": { + "$date": "2022-03-05T04:13:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4bd59e0c-8ffc-43f3-849f-3c19ecb4294e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-04T23:57:08.000Z" + }, + "end": { + "$date": "2022-03-05T08:15:48.000Z" + }, + "events": [ + { + "uuid": "387e3938-e24f-4de6-811d-ab778af29b07", + "start": { + "$date": "2022-03-04T23:57:08.000Z" + }, + "end": { + "$date": "2022-03-05T03:15:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "334b260a-2e85-429c-ac07-eedeab1f34a8", + "start": { + "$date": "2022-03-05T03:15:08.000Z" + }, + "end": { + "$date": "2022-03-05T03:25:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a490e839-1f66-475c-b35d-d8d9637386a8", + "start": { + "$date": "2022-03-05T03:25:08.000Z" + }, + "end": { + "$date": "2022-03-05T03:44:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04ee59e7-7fe9-4b46-a300-c8f0a30bfa03", + "start": { + "$date": "2022-03-05T03:44:08.000Z" + }, + "end": { + "$date": "2022-03-05T03:49:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5b5ba21-dcea-482c-8de2-2ce8febc61bb", + "start": { + "$date": "2022-03-05T03:49:08.000Z" + }, + "end": { + "$date": "2022-03-05T08:15:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "143cc34d-4e06-46cb-ab88-98f8fa0575d2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-05T01:36:01.000Z" + }, + "end": { + "$date": "2022-03-05T02:26:43.000Z" + }, + "events": [ + { + "uuid": "4286d249-e5f8-4324-b0e7-9ffc038785f8", + "start": { + "$date": "2022-03-05T01:36:01.000Z" + }, + "end": { + "$date": "2022-03-05T02:26:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "111345af-e312-426b-9d89-a1a17bcada4f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T02:46:28.000Z" + }, + "end": { + "$date": "2022-03-05T04:36:56.000Z" + }, + "events": [ + { + "uuid": "20fa0f46-dbad-4fdb-b03f-0094b9cf5235", + "start": { + "$date": "2022-03-05T02:46:28.000Z" + }, + "end": { + "$date": "2022-03-05T04:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "56e0d16b-3f23-49ad-8fd1-998c943e0e8c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-05T02:47:59.000Z" + }, + "end": { + "$date": "2022-03-05T05:11:00.000Z" + }, + "events": [ + { + "uuid": "0e005d6b-1e7e-44f5-b021-7d1e5dc4eb53", + "start": { + "$date": "2022-03-05T02:47:59.000Z" + }, + "end": { + "$date": "2022-03-05T05:11:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9a1bef1e-ebba-43ec-8cf8-848d7e64868f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T02:47:57.000Z" + }, + "end": { + "$date": "2022-03-05T04:11:06.000Z" + }, + "events": [ + { + "uuid": "06306c7f-ca3f-498f-a1b4-05ae71db5a59", + "start": { + "$date": "2022-03-05T02:47:57.000Z" + }, + "end": { + "$date": "2022-03-05T04:11:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a4522e1-d763-4f6b-bcc1-a06d65b2d3c6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T02:59:44.000Z" + }, + "end": { + "$date": "2022-03-05T03:12:48.000Z" + }, + "events": [ + { + "uuid": "ef63c813-907b-43a4-b4ed-e35509bc01b2", + "start": { + "$date": "2022-03-05T02:59:44.000Z" + }, + "end": { + "$date": "2022-03-05T03:12:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "b9095cae-a213-4dfb-8ea8-0c114d7bc649", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-05T03:07:12.000Z" + }, + "end": { + "$date": "2022-03-05T05:51:42.000Z" + }, + "events": [ + { + "uuid": "efadd609-e5cc-4fd1-9602-cd55b291ff11", + "start": { + "$date": "2022-03-05T03:07:12.000Z" + }, + "end": { + "$date": "2022-03-05T05:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb689ab9-7361-4d5b-9164-4df755b4b28c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T03:15:52.000Z" + }, + "end": { + "$date": "2022-03-05T03:30:25.000Z" + }, + "events": [ + { + "uuid": "83058d0a-dde1-4fb3-9f48-27ba03bc2cb2", + "start": { + "$date": "2022-03-05T03:15:52.000Z" + }, + "end": { + "$date": "2022-03-05T03:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f0e77bbb-8dfc-4dcd-83db-b61c1b361616", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-05T03:21:33.000Z" + }, + "end": { + "$date": "2022-03-05T09:55:22.000Z" + }, + "events": [ + { + "uuid": "f9f84b77-1749-4637-9ab3-4d989a41bf07", + "start": { + "$date": "2022-03-05T03:21:33.000Z" + }, + "end": { + "$date": "2022-03-05T09:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "59d55fd2-d30a-497e-af47-9ad5dc9d68dd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-05T03:22:40.000Z" + }, + "end": { + "$date": "2022-03-05T09:55:13.000Z" + }, + "events": [ + { + "uuid": "91c79271-3096-4af8-bd65-5ad0c342f11d", + "start": { + "$date": "2022-03-05T03:22:40.000Z" + }, + "end": { + "$date": "2022-03-05T09:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b5281157-a439-472d-a240-f95e531b9532", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-05T03:29:36.000Z" + }, + "end": { + "$date": "2022-03-05T07:13:08.000Z" + }, + "events": [ + { + "uuid": "aadbab89-8b6b-46c2-867b-968b0d42013c", + "start": { + "$date": "2022-03-05T03:29:36.000Z" + }, + "end": { + "$date": "2022-03-05T07:13:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4dd47289-de6b-4943-9f26-ed9a1fafdf44", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T03:30:35.000Z" + }, + "end": { + "$date": "2022-03-05T05:36:43.000Z" + }, + "events": [ + { + "uuid": "8617923f-799b-4ce4-a85b-1da8becfc194", + "start": { + "$date": "2022-03-05T03:30:35.000Z" + }, + "end": { + "$date": "2022-03-05T05:36:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "15c91c0b-d5d8-4e3a-b974-789bdb7d33c4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-05T03:51:01.000Z" + }, + "end": { + "$date": "2022-03-05T08:13:11.000Z" + }, + "events": [ + { + "uuid": "81044b86-6522-44aa-8a20-e4158f1c6608", + "start": { + "$date": "2022-03-05T03:51:01.000Z" + }, + "end": { + "$date": "2022-03-05T08:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9296ffe3-6223-4f5a-b71e-78b41b687282", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T04:11:16.000Z" + }, + "end": { + "$date": "2022-03-05T04:13:42.000Z" + }, + "events": [ + { + "uuid": "303527c8-bdf9-490f-be26-1543c9bf8883", + "start": { + "$date": "2022-03-05T04:11:16.000Z" + }, + "end": { + "$date": "2022-03-05T04:13:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "ddc22baf-c8d2-45ed-addb-3b8022ef0be0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T04:44:34.000Z" + }, + "end": { + "$date": "2022-03-05T06:00:53.000Z" + }, + "events": [ + { + "uuid": "7b575e59-0d6f-4790-934b-c18fc1e76863", + "start": { + "$date": "2022-03-05T04:44:34.000Z" + }, + "end": { + "$date": "2022-03-05T06:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "26a2cac5-fa87-451e-acc3-e00d554c93f7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T05:06:15.000Z" + }, + "end": { + "$date": "2022-03-05T05:09:35.000Z" + }, + "events": [ + { + "uuid": "bb1e200d-5146-461c-a0b8-dff21d479fbf", + "start": { + "$date": "2022-03-05T05:06:15.000Z" + }, + "end": { + "$date": "2022-03-05T05:09:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f4e4224e-32ae-40f3-8fe0-99d561880d80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-05T05:16:14.000Z" + }, + "end": { + "$date": "2022-03-05T10:01:35.000Z" + }, + "events": [ + { + "uuid": "15edc30e-c562-400b-a841-5ad0a89e1dbd", + "start": { + "$date": "2022-03-05T05:16:14.000Z" + }, + "end": { + "$date": "2022-03-05T10:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "18e2087a-d6db-4bfe-9496-c8c726a6dfb8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-05T05:38:23.000Z" + }, + "end": { + "$date": "2022-03-05T06:27:11.000Z" + }, + "events": [ + { + "uuid": "98bd1c8f-4eee-401d-a2a1-3861ede9157e", + "start": { + "$date": "2022-03-05T05:38:23.000Z" + }, + "end": { + "$date": "2022-03-05T06:27:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "a3284f5d-4a7c-4726-86c4-b75287d0431d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T05:56:53.000Z" + }, + "end": { + "$date": "2022-03-05T06:53:40.000Z" + }, + "events": [ + { + "uuid": "be56d100-7251-4703-9dba-387cfe428be7", + "start": { + "$date": "2022-03-05T05:56:53.000Z" + }, + "end": { + "$date": "2022-03-05T06:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "49746206-93c3-4598-8926-4591c6ed8167", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T06:01:48.000Z" + }, + "end": { + "$date": "2022-03-05T06:53:42.000Z" + }, + "events": [ + { + "uuid": "f5ed279b-beba-47a5-ada4-45138667f164", + "start": { + "$date": "2022-03-05T06:01:48.000Z" + }, + "end": { + "$date": "2022-03-05T06:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "8ff377af-7e7b-4c38-a5a3-5e5b4b8ce28a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T06:37:18.000Z" + }, + "end": { + "$date": "2022-03-05T07:49:27.000Z" + }, + "events": [ + { + "uuid": "24b8a434-5f26-425b-874f-283b960bfda5", + "start": { + "$date": "2022-03-05T06:37:18.000Z" + }, + "end": { + "$date": "2022-03-05T07:11:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f7bbfa12-bc23-4dbb-a024-fdfdcdcf33ea", + "start": { + "$date": "2022-03-05T07:11:18.000Z" + }, + "end": { + "$date": "2022-03-05T07:12:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2b1b15d4-3e8d-4b50-867d-c67ee96a2315", + "start": { + "$date": "2022-03-05T07:12:18.000Z" + }, + "end": { + "$date": "2022-03-05T07:49:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "5e5b2f5c-549a-40c1-8fe0-bc5249f27585", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T06:55:36.000Z" + }, + "end": { + "$date": "2022-03-05T07:46:57.000Z" + }, + "events": [ + { + "uuid": "b33e602b-b1d6-4b79-9797-6c190a7db766", + "start": { + "$date": "2022-03-05T06:55:36.000Z" + }, + "end": { + "$date": "2022-03-05T07:46:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a95f75a6-a078-4bd2-a71c-1b1f11fd6193", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T06:55:51.000Z" + }, + "end": { + "$date": "2022-03-05T07:36:41.000Z" + }, + "events": [ + { + "uuid": "9d7fa721-8158-46c9-afd0-b9e94dc40e9a", + "start": { + "$date": "2022-03-05T06:55:51.000Z" + }, + "end": { + "$date": "2022-03-05T07:36:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "305aee25-428e-4a3c-b68c-77cba38d6784", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-05T07:29:57.000Z" + }, + "end": { + "$date": "2022-03-05T07:49:33.000Z" + }, + "events": [ + { + "uuid": "6436c41e-0d65-498c-8f7a-4bac5013c2dc", + "start": { + "$date": "2022-03-05T07:29:57.000Z" + }, + "end": { + "$date": "2022-03-05T07:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66c85b74-f864-4a36-b5a1-2289aef6667b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-05T07:51:33.000Z" + }, + "end": { + "$date": "2022-03-05T08:12:30.000Z" + }, + "events": [ + { + "uuid": "4d0e898e-b1c3-4884-a874-32c280a8a136", + "start": { + "$date": "2022-03-05T07:51:33.000Z" + }, + "end": { + "$date": "2022-03-05T08:12:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "326b7d7e-8d69-4293-8487-7f9ea2a7fbc4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T07:49:57.000Z" + }, + "end": { + "$date": "2022-03-05T07:54:23.000Z" + }, + "events": [ + { + "uuid": "a7a23333-c4b7-4646-8a26-3df1ecf09331", + "start": { + "$date": "2022-03-05T07:49:57.000Z" + }, + "end": { + "$date": "2022-03-05T07:54:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "ec3f8fb9-dd15-4429-a56b-cd2e737a016d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T08:06:08.000Z" + }, + "end": { + "$date": "2022-03-05T08:43:09.000Z" + }, + "events": [ + { + "uuid": "9d69bccd-ce91-4069-af03-27c18088d7ab", + "start": { + "$date": "2022-03-05T08:06:08.000Z" + }, + "end": { + "$date": "2022-03-05T08:43:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "86bc56c2-be14-4639-ada4-a6bc25e4955b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-05T08:18:44.000Z" + }, + "end": { + "$date": "2022-03-05T08:39:35.000Z" + }, + "events": [ + { + "uuid": "2618d688-a223-4bba-bcdf-4663d6f72590", + "start": { + "$date": "2022-03-05T08:18:44.000Z" + }, + "end": { + "$date": "2022-03-05T08:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4cfce7d1-bfc4-4e50-b5bf-bcbb21b151cc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-05T08:41:49.000Z" + }, + "end": { + "$date": "2022-03-05T09:06:20.000Z" + }, + "events": [ + { + "uuid": "01e09a7f-e834-484e-845e-be9388a56aa8", + "start": { + "$date": "2022-03-05T08:41:49.000Z" + }, + "end": { + "$date": "2022-03-05T09:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9c0ae9f2-4e7d-48d8-951d-faaa3cdc35b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T08:43:29.000Z" + }, + "end": { + "$date": "2022-03-05T08:47:20.000Z" + }, + "events": [ + { + "uuid": "f0ea0ce1-0af5-452a-865c-c503853ede31", + "start": { + "$date": "2022-03-05T08:43:29.000Z" + }, + "end": { + "$date": "2022-03-05T08:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "e9713ceb-4ed8-4063-a3b2-3890ddd365a6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T15:30:42.000Z" + }, + "end": { + "$date": "2022-03-05T16:56:14.000Z" + }, + "events": [ + { + "uuid": "85d77f4a-e388-45dc-9786-f1ea6ad63fc1", + "start": { + "$date": "2022-03-05T15:30:42.000Z" + }, + "end": { + "$date": "2022-03-05T16:56:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "630c060f-13bb-4dfd-bc46-f87efb14902a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T16:20:02.000Z" + }, + "end": { + "$date": "2022-03-05T16:41:26.000Z" + }, + "events": [ + { + "uuid": "0d6167e9-b9f5-45f6-938c-83259317e81f", + "start": { + "$date": "2022-03-05T16:20:02.000Z" + }, + "end": { + "$date": "2022-03-05T16:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9edfdadc-028b-413f-8d16-10812eff2ee3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T16:43:33.000Z" + }, + "end": { + "$date": "2022-03-05T17:06:07.000Z" + }, + "events": [ + { + "uuid": "9dafb699-78bf-4e86-82ae-a1b07dd4cd29", + "start": { + "$date": "2022-03-05T16:43:33.000Z" + }, + "end": { + "$date": "2022-03-05T17:06:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "66b23ee6-5024-465b-ac40-3a475ca4b7ec", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T16:56:19.000Z" + }, + "end": { + "$date": "2022-03-05T18:41:25.000Z" + }, + "events": [ + { + "uuid": "a534027e-e78f-45dd-b5bf-71b948753819", + "start": { + "$date": "2022-03-05T16:56:19.000Z" + }, + "end": { + "$date": "2022-03-05T18:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7399c067-6139-44ad-950b-6b22a3307f58", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T16:56:59.000Z" + }, + "end": { + "$date": "2022-03-05T18:40:13.000Z" + }, + "events": [ + { + "uuid": "9f86567c-eca5-47c6-97d7-0d8afdc43731", + "start": { + "$date": "2022-03-05T16:56:59.000Z" + }, + "end": { + "$date": "2022-03-05T18:37:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a9ea2546-6ba2-415d-b674-0f9e8219ae0a", + "start": { + "$date": "2022-03-05T18:37:59.000Z" + }, + "end": { + "$date": "2022-03-05T18:40:13.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5296b61f-8ed9-4c49-95cf-d53f25771657", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-05T17:21:44.000Z" + }, + "end": { + "$date": "2022-03-05T17:46:58.000Z" + }, + "events": [ + { + "uuid": "34067e9c-460c-469d-b3cf-4ce84254aad2", + "start": { + "$date": "2022-03-05T17:21:44.000Z" + }, + "end": { + "$date": "2022-03-05T17:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "65018954-93d3-41ee-9d59-1127031dfba9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-05T18:17:10.000Z" + }, + "end": { + "$date": "2022-03-06T04:19:54.000Z" + }, + "events": [ + { + "uuid": "7aed43cc-d59b-4a47-bb64-589f62ee7143", + "start": { + "$date": "2022-03-05T18:17:10.000Z" + }, + "end": { + "$date": "2022-03-06T04:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "52e26a1b-934e-41b1-ab72-1eac132a65bd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-05T18:32:07.000Z" + }, + "end": { + "$date": "2022-03-05T18:40:58.000Z" + }, + "events": [ + { + "uuid": "1b870f0b-1e58-4e00-9642-3fe180bd5a9f", + "start": { + "$date": "2022-03-05T18:32:07.000Z" + }, + "end": { + "$date": "2022-03-05T18:40:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c3a65d17-e8c0-4d01-a293-8e6a9c25ab23", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-05T18:44:50.000Z" + }, + "end": { + "$date": "2022-03-05T23:36:36.000Z" + }, + "events": [ + { + "uuid": "ed7d5e3a-a270-4f8b-871e-a4741514ed01", + "start": { + "$date": "2022-03-05T18:44:50.000Z" + }, + "end": { + "$date": "2022-03-05T23:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9d942e9b-432e-475f-b695-2d0b14a4c9c9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T18:45:36.000Z" + }, + "end": { + "$date": "2022-03-05T20:39:35.000Z" + }, + "events": [ + { + "uuid": "52a8ca0f-289b-4ec1-a88d-5f45795e7f4b", + "start": { + "$date": "2022-03-05T18:45:36.000Z" + }, + "end": { + "$date": "2022-03-05T20:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "3d971ebf-09c7-486c-b869-e6b22b7f88ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T18:59:49.000Z" + }, + "end": { + "$date": "2022-03-05T19:45:54.000Z" + }, + "events": [ + { + "uuid": "6344eb6f-ac28-4f5a-9326-827109cf6941", + "start": { + "$date": "2022-03-05T18:59:49.000Z" + }, + "end": { + "$date": "2022-03-05T19:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "d96fabcf-eb38-4901-9428-3120f0f20975", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-05T19:14:18.000Z" + }, + "end": { + "$date": "2022-03-05T20:11:22.000Z" + }, + "events": [ + { + "uuid": "91af8cde-ea3a-430b-88fe-bdebcd2bb0d1", + "start": { + "$date": "2022-03-05T19:14:18.000Z" + }, + "end": { + "$date": "2022-03-05T20:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b9b358e8-be29-4eb0-af3e-4760b08509c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-05T19:32:48.000Z" + }, + "end": { + "$date": "2022-03-05T19:38:15.000Z" + }, + "events": [ + { + "uuid": "59845d68-75c1-4343-8781-07f04fece3ed", + "start": { + "$date": "2022-03-05T19:32:48.000Z" + }, + "end": { + "$date": "2022-03-05T19:38:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a70f078c-062c-47a3-b38c-debf4bd216b0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-05T20:08:26.000Z" + }, + "end": { + "$date": "2022-03-05T23:42:37.000Z" + }, + "events": [ + { + "uuid": "44fcddc6-abfd-46d1-842d-feef5c7d3de5", + "start": { + "$date": "2022-03-05T20:08:26.000Z" + }, + "end": { + "$date": "2022-03-05T23:42:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "17e47c12-0d68-47d2-ba94-7347bf736a24", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T20:17:03.000Z" + }, + "end": { + "$date": "2022-03-05T22:04:04.000Z" + }, + "events": [ + { + "uuid": "7f385ab1-14be-46e7-bcb7-47132a77f701", + "start": { + "$date": "2022-03-05T20:17:03.000Z" + }, + "end": { + "$date": "2022-03-05T22:04:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8ad6564a-3c97-438b-aa45-14f6c848ef9f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-05T20:29:14.000Z" + }, + "end": { + "$date": "2022-03-05T20:45:54.000Z" + }, + "events": [ + { + "uuid": "397e7a6d-88d2-4650-bbca-b1eda60c8261", + "start": { + "$date": "2022-03-05T20:29:14.000Z" + }, + "end": { + "$date": "2022-03-05T20:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a200fc1b-7776-43f0-a1b6-cba6c4803d26", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T20:47:20.000Z" + }, + "end": { + "$date": "2022-03-05T21:10:11.000Z" + }, + "events": [ + { + "uuid": "ca3e10c9-1d75-4f2f-a682-e865721f1d2c", + "start": { + "$date": "2022-03-05T20:47:20.000Z" + }, + "end": { + "$date": "2022-03-05T21:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8a83fa1f-0ba8-4bec-892e-772a912b2435", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-05T21:03:51.000Z" + }, + "end": { + "$date": "2022-03-05T21:10:12.000Z" + }, + "events": [ + { + "uuid": "b8d644d5-0164-4473-bc23-906a5bda8e52", + "start": { + "$date": "2022-03-05T21:03:51.000Z" + }, + "end": { + "$date": "2022-03-05T21:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7fa3a390-2e7c-4a9b-adb3-33a61ae7da47", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-05T21:30:45.000Z" + }, + "end": { + "$date": "2022-03-05T21:53:50.000Z" + }, + "events": [ + { + "uuid": "2f6431a0-f208-411f-9b17-9f049f33aa3a", + "start": { + "$date": "2022-03-05T21:30:45.000Z" + }, + "end": { + "$date": "2022-03-05T21:53:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "89e50d16-0356-4143-8d50-c2760748dfa8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-05T22:18:07.000Z" + }, + "end": { + "$date": "2022-03-05T23:36:44.000Z" + }, + "events": [ + { + "uuid": "f75d188a-a567-4510-b991-c53558cd2c92", + "start": { + "$date": "2022-03-05T22:18:07.000Z" + }, + "end": { + "$date": "2022-03-05T23:36:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "92466f9b-aad3-4378-82fa-771c60a79c9e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-05T22:45:40.000Z" + }, + "end": { + "$date": "2022-03-05T23:27:50.000Z" + }, + "events": [ + { + "uuid": "7eb93b1c-739f-4c72-b24c-72b895e0322c", + "start": { + "$date": "2022-03-05T22:45:40.000Z" + }, + "end": { + "$date": "2022-03-05T23:27:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "ade470b3-a261-43cf-9b78-430470d76402", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-05T23:27:50.000Z" + }, + "end": { + "$date": "2022-03-06T02:38:25.000Z" + }, + "events": [ + { + "uuid": "0bbd2926-0c8b-4f46-9aa7-af738fb83a39", + "start": { + "$date": "2022-03-05T23:27:50.000Z" + }, + "end": { + "$date": "2022-03-06T02:38:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7dc3f20e-a1c8-4299-9756-48a4e2fbeb76", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-05T23:27:55.000Z" + }, + "end": { + "$date": "2022-03-06T00:16:44.000Z" + }, + "events": [ + { + "uuid": "add24ef3-a539-4fa2-8ab0-1b21e8ed98fb", + "start": { + "$date": "2022-03-05T23:27:55.000Z" + }, + "end": { + "$date": "2022-03-06T00:12:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95fffc01-a9a2-4c32-b0f8-9ac13b54242d", + "start": { + "$date": "2022-03-06T00:12:55.000Z" + }, + "end": { + "$date": "2022-03-06T00:13:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5f535d7-d035-4d01-b491-e4ea7d1a872d", + "start": { + "$date": "2022-03-06T00:13:55.000Z" + }, + "end": { + "$date": "2022-03-06T00:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e88228cb-c019-4438-a429-082db659d928", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-06T00:01:41.000Z" + }, + "end": { + "$date": "2022-03-06T01:08:56.000Z" + }, + "events": [ + { + "uuid": "956332eb-eb87-4dbe-a58c-9d46865edab8", + "start": { + "$date": "2022-03-06T00:01:41.000Z" + }, + "end": { + "$date": "2022-03-06T00:24:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "32a39415-0193-49d6-a18a-b78ac25db26e", + "start": { + "$date": "2022-03-06T00:24:41.000Z" + }, + "end": { + "$date": "2022-03-06T00:37:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6ef5a2dc-a9f5-4a36-b850-6547da6aee1f", + "start": { + "$date": "2022-03-06T00:37:41.000Z" + }, + "end": { + "$date": "2022-03-06T00:48:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6f1f705-bf4c-474c-8712-73e8f602ccbe", + "start": { + "$date": "2022-03-06T00:48:41.000Z" + }, + "end": { + "$date": "2022-03-06T00:52:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c3178b50-0097-4ca3-a99c-afa839e49e24", + "start": { + "$date": "2022-03-06T00:52:41.000Z" + }, + "end": { + "$date": "2022-03-06T01:08:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c4478a84-2204-4924-a737-4cd4c5c89c03", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T00:17:24.000Z" + }, + "end": { + "$date": "2022-03-06T00:54:40.000Z" + }, + "events": [ + { + "uuid": "f8782cbd-b427-4dbf-a2e4-4c713d7ffeba", + "start": { + "$date": "2022-03-06T00:17:24.000Z" + }, + "end": { + "$date": "2022-03-06T00:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "93254cfe-f865-4f63-b3b9-66c6f9d36a82", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T00:32:18.000Z" + }, + "end": { + "$date": "2022-03-06T01:32:54.000Z" + }, + "events": [ + { + "uuid": "bdc73acc-e1d2-427a-91b9-3d81bb14559e", + "start": { + "$date": "2022-03-06T00:32:18.000Z" + }, + "end": { + "$date": "2022-03-06T01:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b85faf47-34b2-4051-81dc-f4cd27007145", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-06T00:35:08.000Z" + }, + "end": { + "$date": "2022-03-06T01:32:51.000Z" + }, + "events": [ + { + "uuid": "b7865dcb-9c45-4fbc-88bb-22cd1b9590d6", + "start": { + "$date": "2022-03-06T00:35:08.000Z" + }, + "end": { + "$date": "2022-03-06T01:32:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a2d61903-6d55-416a-b148-be602f2bf681", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-06T00:41:47.000Z" + }, + "end": { + "$date": "2022-03-06T01:32:50.000Z" + }, + "events": [ + { + "uuid": "6a09c084-d781-4e8f-ba4e-8d102e8c4e7b", + "start": { + "$date": "2022-03-06T00:41:47.000Z" + }, + "end": { + "$date": "2022-03-06T01:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eae42e8c-e3bb-4dae-bcf4-53d20772fe77", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T00:54:50.000Z" + }, + "end": { + "$date": "2022-03-06T01:03:26.000Z" + }, + "events": [ + { + "uuid": "2e654ca0-9f37-403b-a23e-79c35b034748", + "start": { + "$date": "2022-03-06T00:54:50.000Z" + }, + "end": { + "$date": "2022-03-06T01:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4d47b730-376c-4654-b6dc-b3eb7a036f78", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T01:03:31.000Z" + }, + "end": { + "$date": "2022-03-06T02:58:53.000Z" + }, + "events": [ + { + "uuid": "0ae4a939-892a-45bd-88a4-9610247d9440", + "start": { + "$date": "2022-03-06T01:03:31.000Z" + }, + "end": { + "$date": "2022-03-06T02:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e3e94146-3f46-4c67-a6ba-9589c3170fed", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-06T01:55:12.000Z" + }, + "end": { + "$date": "2022-03-06T06:13:16.000Z" + }, + "events": [ + { + "uuid": "86964b8b-1f36-474f-b01e-cd5c3a195665", + "start": { + "$date": "2022-03-06T01:55:12.000Z" + }, + "end": { + "$date": "2022-03-06T06:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81661f54-deb0-4d46-9333-95c519a2c103", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T02:35:03.000Z" + }, + "end": { + "$date": "2022-03-06T02:51:35.000Z" + }, + "events": [ + { + "uuid": "38b0b5ea-420f-4ef2-a168-9c41ecf71925", + "start": { + "$date": "2022-03-06T02:35:03.000Z" + }, + "end": { + "$date": "2022-03-06T02:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "2571a5b3-11db-4d54-8669-1351922d1537", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-06T02:38:55.000Z" + }, + "end": { + "$date": "2022-03-06T03:16:58.000Z" + }, + "events": [ + { + "uuid": "1e3a105d-06f5-4a66-90bb-3f69a3a74db7", + "start": { + "$date": "2022-03-06T02:38:55.000Z" + }, + "end": { + "$date": "2022-03-06T03:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e69df78a-51e1-4e87-ad53-61f0524e04e4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T03:02:56.000Z" + }, + "end": { + "$date": "2022-03-06T03:17:17.000Z" + }, + "events": [ + { + "uuid": "6f202ca0-284e-463d-b2f4-acb8ef23caae", + "start": { + "$date": "2022-03-06T03:02:56.000Z" + }, + "end": { + "$date": "2022-03-06T03:17:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb9547ea-0914-4e41-8075-c1a03da35d53", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T03:14:25.000Z" + }, + "end": { + "$date": "2022-03-06T03:49:57.000Z" + }, + "events": [ + { + "uuid": "158c222a-e9bb-45dc-b368-31b266472b7a", + "start": { + "$date": "2022-03-06T03:14:25.000Z" + }, + "end": { + "$date": "2022-03-06T03:49:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b9b1a1bd-3844-43ca-838c-66f2fc71ec19", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T03:30:59.000Z" + }, + "end": { + "$date": "2022-03-06T04:55:02.000Z" + }, + "events": [ + { + "uuid": "027f07a9-88ea-4d73-b9ae-cf4db4184f56", + "start": { + "$date": "2022-03-06T03:30:59.000Z" + }, + "end": { + "$date": "2022-03-06T04:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ac306b69-04a7-4b21-aa4f-8399c9e8556c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-06T03:31:43.000Z" + }, + "end": { + "$date": "2022-03-06T04:59:32.000Z" + }, + "events": [ + { + "uuid": "1bf5c091-ad63-4ea6-ba0f-622dc1af79b7", + "start": { + "$date": "2022-03-06T03:31:43.000Z" + }, + "end": { + "$date": "2022-03-06T04:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0ce669ce-fc5e-49c9-add9-d0f785cd2459", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-06T03:40:38.000Z" + }, + "end": { + "$date": "2022-03-06T05:36:00.000Z" + }, + "events": [ + { + "uuid": "0d67b0e1-5aeb-453b-b7bf-4e3b4ae4fd0c", + "start": { + "$date": "2022-03-06T03:40:38.000Z" + }, + "end": { + "$date": "2022-03-06T05:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "e56adbde-7efd-46ed-9245-1b68204018f0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-06T03:48:38.000Z" + }, + "end": { + "$date": "2022-03-06T05:13:43.000Z" + }, + "events": [ + { + "uuid": "489c4660-ca5b-49b3-98be-9f7bbdddc8a8", + "start": { + "$date": "2022-03-06T03:48:38.000Z" + }, + "end": { + "$date": "2022-03-06T05:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "e7fc5966-2b32-4400-8524-f0d5e5eeb1ac", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T04:02:18.000Z" + }, + "end": { + "$date": "2022-03-06T04:39:20.000Z" + }, + "events": [ + { + "uuid": "a0e66162-4d81-480e-bda3-5feacaa919a8", + "start": { + "$date": "2022-03-06T04:02:18.000Z" + }, + "end": { + "$date": "2022-03-06T04:39:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "eb11e68b-eac8-483a-8791-8d0562530d70", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-06T04:20:14.000Z" + }, + "end": { + "$date": "2022-03-06T10:15:34.000Z" + }, + "events": [ + { + "uuid": "510effb3-4f05-4695-ba90-9cdd157ff8fe", + "start": { + "$date": "2022-03-06T04:20:14.000Z" + }, + "end": { + "$date": "2022-03-06T10:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "b2b4ab79-76ae-45e0-ad4b-c8631493bc13", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T05:08:42.000Z" + }, + "end": { + "$date": "2022-03-06T07:30:14.000Z" + }, + "events": [ + { + "uuid": "c02e5e6f-76ee-469c-a17f-024b32e31704", + "start": { + "$date": "2022-03-06T05:08:42.000Z" + }, + "end": { + "$date": "2022-03-06T07:05:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9557c2e-880f-49da-99ad-0876625a8ca1", + "start": { + "$date": "2022-03-06T07:05:42.000Z" + }, + "end": { + "$date": "2022-03-06T07:10:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "73825a4b-5708-483e-b9cf-73ef1498358a", + "start": { + "$date": "2022-03-06T07:10:42.000Z" + }, + "end": { + "$date": "2022-03-06T07:20:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a89b40f-351e-4c33-89fe-c0b4459c3c30", + "start": { + "$date": "2022-03-06T07:20:42.000Z" + }, + "end": { + "$date": "2022-03-06T07:30:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "23083a0f-8739-4413-850c-5115966a3536", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T05:26:16.000Z" + }, + "end": { + "$date": "2022-03-06T05:48:54.000Z" + }, + "events": [ + { + "uuid": "beef8374-a00b-47bc-b6a7-3e4adb631d9a", + "start": { + "$date": "2022-03-06T05:26:16.000Z" + }, + "end": { + "$date": "2022-03-06T05:48:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "a195b618-7e27-462a-857f-299f29477863", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-06T05:47:25.000Z" + }, + "end": { + "$date": "2022-03-06T06:54:50.000Z" + }, + "events": [ + { + "uuid": "eb59f4f5-38d6-4e30-98c5-b577898c6191", + "start": { + "$date": "2022-03-06T05:47:25.000Z" + }, + "end": { + "$date": "2022-03-06T06:54:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7ef9397-29e2-4544-934f-ffdbe7ddbd32", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T05:55:07.000Z" + }, + "end": { + "$date": "2022-03-06T06:23:52.000Z" + }, + "events": [ + { + "uuid": "70336839-bf51-4ee6-bea5-992b38c36367", + "start": { + "$date": "2022-03-06T05:55:07.000Z" + }, + "end": { + "$date": "2022-03-06T06:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bcf01ab7-f9c4-4d33-b204-953df269bbad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-06T06:13:26.000Z" + }, + "end": { + "$date": "2022-03-06T08:09:21.000Z" + }, + "events": [ + { + "uuid": "c4614804-5404-42a4-bd47-d5c07c4990f6", + "start": { + "$date": "2022-03-06T06:13:26.000Z" + }, + "end": { + "$date": "2022-03-06T08:09:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "859725ae-58a2-4a6a-bd78-38201420dcaa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-06T06:13:40.000Z" + }, + "end": { + "$date": "2022-03-06T06:22:42.000Z" + }, + "events": [ + { + "uuid": "ba70ca0b-67d0-4504-ac5c-27c1a93f1548", + "start": { + "$date": "2022-03-06T06:13:40.000Z" + }, + "end": { + "$date": "2022-03-06T06:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a3cb24f7-c9ef-4428-b89c-249ce69e6cc1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T06:32:19.000Z" + }, + "end": { + "$date": "2022-03-06T06:55:54.000Z" + }, + "events": [ + { + "uuid": "f7e5f13d-efb1-494b-aee1-d14b12a51807", + "start": { + "$date": "2022-03-06T06:32:19.000Z" + }, + "end": { + "$date": "2022-03-06T06:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "759556b4-66d5-41bc-ae69-006ca30da425", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-06T06:25:51.000Z" + }, + "end": { + "$date": "2022-03-06T07:18:28.000Z" + }, + "events": [ + { + "uuid": "151b7840-0451-4570-8367-8425006f25cb", + "start": { + "$date": "2022-03-06T06:25:51.000Z" + }, + "end": { + "$date": "2022-03-06T07:18:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1e80c4b-4041-4326-b86e-382d0c423f72", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T07:02:05.000Z" + }, + "end": { + "$date": "2022-03-06T07:32:55.000Z" + }, + "events": [ + { + "uuid": "541afd8b-2c1c-44a0-9a1e-a56f623e85b1", + "start": { + "$date": "2022-03-06T07:02:05.000Z" + }, + "end": { + "$date": "2022-03-06T07:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28ae80d2-79d4-4535-875a-87a37484e1fa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T07:44:47.000Z" + }, + "end": { + "$date": "2022-03-06T08:09:42.000Z" + }, + "events": [ + { + "uuid": "fd2b7eef-4c2f-4faa-b7d8-c0d9520e9de8", + "start": { + "$date": "2022-03-06T07:44:47.000Z" + }, + "end": { + "$date": "2022-03-06T08:09:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5125212-d7e7-40ec-b18c-5befe665b431", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T08:22:04.000Z" + }, + "end": { + "$date": "2022-03-06T08:57:09.000Z" + }, + "events": [ + { + "uuid": "3c66dad2-fae7-4387-b6bd-107288d90d10", + "start": { + "$date": "2022-03-06T08:22:04.000Z" + }, + "end": { + "$date": "2022-03-06T08:57:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d4ff9358-c457-4fa9-a9b4-3f622dba1f3f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-06T08:38:13.000Z" + }, + "end": { + "$date": "2022-03-06T11:40:28.000Z" + }, + "events": [ + { + "uuid": "c4884571-ff5a-48b3-acac-7eed83ae3c8b", + "start": { + "$date": "2022-03-06T08:38:13.000Z" + }, + "end": { + "$date": "2022-03-06T11:40:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce230caa-e7d8-44db-aa03-10368ea0ae6e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-06T09:03:35.000Z" + }, + "end": { + "$date": "2022-03-06T09:17:25.000Z" + }, + "events": [ + { + "uuid": "0132f8fe-8902-4eb9-947c-91764590b9a7", + "start": { + "$date": "2022-03-06T09:03:35.000Z" + }, + "end": { + "$date": "2022-03-06T09:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9120974c-3c69-47f7-ae49-159de43968e7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-06T17:47:54.000Z" + }, + "end": { + "$date": "2022-03-06T17:47:59.000Z" + }, + "events": [ + { + "uuid": "e6d2789d-4f7a-4581-bf25-5cee5b116213", + "start": { + "$date": "2022-03-06T17:47:54.000Z" + }, + "end": { + "$date": "2022-03-06T18:28:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b315257a-a1db-4165-a61c-37a71d1d22dc", + "start": { + "$date": "2022-03-06T18:28:54.000Z" + }, + "end": { + "$date": "2022-03-06T18:34:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "649b7eb1-86bb-4bce-bb56-83dabd1394aa", + "start": { + "$date": "2022-03-06T18:34:54.000Z" + }, + "end": { + "$date": "2022-03-06T17:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f16525c5-174b-4880-8973-da6b790d054a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T15:57:19.000Z" + }, + "end": { + "$date": "2022-03-06T16:40:23.000Z" + }, + "events": [ + { + "uuid": "db0a1f26-29f6-4cf2-855a-ec0e8eff0cbe", + "start": { + "$date": "2022-03-06T15:57:19.000Z" + }, + "end": { + "$date": "2022-03-06T16:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ed8d28ed-b8f7-4f0b-a478-52ce592b6e46", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T15:57:19.000Z" + }, + "end": { + "$date": "2022-03-06T17:08:32.000Z" + }, + "events": [ + { + "uuid": "13f20c89-5628-4adf-b383-62216063b5b6", + "start": { + "$date": "2022-03-06T15:57:19.000Z" + }, + "end": { + "$date": "2022-03-06T17:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d82cf9b8-ac20-44df-957a-ccf513d51fea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T16:41:44.000Z" + }, + "end": { + "$date": "2022-03-06T16:43:08.000Z" + }, + "events": [ + { + "uuid": "f1bd31ea-dc3a-4a08-89e3-83df858f04d5", + "start": { + "$date": "2022-03-06T16:41:44.000Z" + }, + "end": { + "$date": "2022-03-06T16:43:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "259009a7-b0ff-48cc-874c-87df5399bbfc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T17:09:17.000Z" + }, + "end": { + "$date": "2022-03-06T18:16:13.000Z" + }, + "events": [ + { + "uuid": "c979e0f7-8189-40f9-8848-36e3b984cd18", + "start": { + "$date": "2022-03-06T17:09:17.000Z" + }, + "end": { + "$date": "2022-03-06T18:16:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ffc35f4f-23d7-4e79-b4ed-7f7d42dd567b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T17:31:45.000Z" + }, + "end": { + "$date": "2022-03-06T17:52:35.000Z" + }, + "events": [ + { + "uuid": "911142d2-fc71-478d-a125-b85115f906a4", + "start": { + "$date": "2022-03-06T17:31:45.000Z" + }, + "end": { + "$date": "2022-03-06T17:52:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e2bf9fbd-1242-4e1f-9ac1-5301c1576075", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-06T17:48:29.000Z" + }, + "end": { + "$date": "2022-03-06T17:56:55.000Z" + }, + "events": [ + { + "uuid": "820c693b-8a68-429b-b626-61ea7fb768b5", + "start": { + "$date": "2022-03-06T17:48:29.000Z" + }, + "end": { + "$date": "2022-03-06T17:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0210107b-062c-47e5-94e4-2beefd4d744c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T18:04:27.000Z" + }, + "end": { + "$date": "2022-03-06T18:24:47.000Z" + }, + "events": [ + { + "uuid": "b1b5abaf-94b6-4854-8045-34ef3e79665c", + "start": { + "$date": "2022-03-06T18:04:27.000Z" + }, + "end": { + "$date": "2022-03-06T18:24:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2343ec57-8edc-401e-b82b-019f9282d640", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-06T18:13:18.000Z" + }, + "end": { + "$date": "2022-03-06T18:21:53.000Z" + }, + "events": [ + { + "uuid": "eb6e71cd-424c-4b62-b4ec-95b5ee1cccf6", + "start": { + "$date": "2022-03-06T18:13:18.000Z" + }, + "end": { + "$date": "2022-03-06T18:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f88858ef-3460-483a-b645-c41cfdc824ba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T18:28:28.000Z" + }, + "end": { + "$date": "2022-03-06T18:49:59.000Z" + }, + "events": [ + { + "uuid": "2ae1732b-4bb7-4f3f-9c00-2a7344698e69", + "start": { + "$date": "2022-03-06T18:28:28.000Z" + }, + "end": { + "$date": "2022-03-06T18:49:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0e253533-26a7-4845-b791-5705cb0fab41", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-06T18:37:55.000Z" + }, + "end": { + "$date": "2022-03-06T20:04:46.000Z" + }, + "events": [ + { + "uuid": "9d85839b-d1c4-4d99-a2b5-b26219701abb", + "start": { + "$date": "2022-03-06T18:37:55.000Z" + }, + "end": { + "$date": "2022-03-06T20:04:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c8794fb-2bdb-4d42-ba07-d108e88159f7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T18:51:40.000Z" + }, + "end": { + "$date": "2022-03-06T19:09:05.000Z" + }, + "events": [ + { + "uuid": "48b13771-303a-40bc-a51c-8845c163f3ac", + "start": { + "$date": "2022-03-06T18:51:40.000Z" + }, + "end": { + "$date": "2022-03-06T19:09:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e74f53df-0f2c-4fa2-b969-f910b3623c57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-06T18:58:42.000Z" + }, + "end": { + "$date": "2022-03-06T20:13:35.000Z" + }, + "events": [ + { + "uuid": "47408e4b-37d1-4dc0-9174-210bb1f2c714", + "start": { + "$date": "2022-03-06T18:58:42.000Z" + }, + "end": { + "$date": "2022-03-06T20:13:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1f18872f-6060-42d0-a33e-593cd55baae3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-06T20:11:51.000Z" + }, + "end": { + "$date": "2022-03-06T20:22:36.000Z" + }, + "events": [ + { + "uuid": "6dbba6f7-c32c-4296-b9df-7eadfee08871", + "start": { + "$date": "2022-03-06T20:11:51.000Z" + }, + "end": { + "$date": "2022-03-06T20:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "fa70bc50-9e85-4905-9b8e-267a6330c366", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-06T20:27:36.000Z" + }, + "end": { + "$date": "2022-03-06T22:04:48.000Z" + }, + "events": [ + { + "uuid": "0229f97f-de89-4f3b-8ce1-74dd60b77b01", + "start": { + "$date": "2022-03-06T20:27:36.000Z" + }, + "end": { + "$date": "2022-03-06T22:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "3b2a7d3d-5784-443f-b280-1a61f18a34ed", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-06T20:35:38.000Z" + }, + "end": { + "$date": "2022-03-06T21:33:24.000Z" + }, + "events": [ + { + "uuid": "f0f69bf9-6080-4fa2-96e2-c9538da23754", + "start": { + "$date": "2022-03-06T20:35:38.000Z" + }, + "end": { + "$date": "2022-03-06T21:33:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c968500d-0bfe-4200-bc86-72039491d06b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-06T21:08:13.000Z" + }, + "end": { + "$date": "2022-03-06T23:19:14.000Z" + }, + "events": [ + { + "uuid": "8939af83-467e-4c13-a56b-c0aa24a993e0", + "start": { + "$date": "2022-03-06T21:08:13.000Z" + }, + "end": { + "$date": "2022-03-06T23:19:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3278484-821e-4bad-bb2a-b951bf0d8fc0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T21:17:11.000Z" + }, + "end": { + "$date": "2022-03-06T21:33:51.000Z" + }, + "events": [ + { + "uuid": "e3ac60e3-4d7d-4084-a987-ead4d23e8a30", + "start": { + "$date": "2022-03-06T21:17:11.000Z" + }, + "end": { + "$date": "2022-03-06T21:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62172133-deb3-4db0-ae79-e4ebfee6ebf5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-06T21:34:53.000Z" + }, + "end": { + "$date": "2022-03-06T21:56:53.000Z" + }, + "events": [ + { + "uuid": "cf274677-ee9e-4aa1-a518-6d01f556b94d", + "start": { + "$date": "2022-03-06T21:34:53.000Z" + }, + "end": { + "$date": "2022-03-06T21:56:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "05acbd5c-79d7-411e-a4d2-b3ed698ba970", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-06T21:44:56.000Z" + }, + "end": { + "$date": "2022-03-06T22:07:52.000Z" + }, + "events": [ + { + "uuid": "7b71c282-5175-42df-a9e8-f83e771e7ea4", + "start": { + "$date": "2022-03-06T21:44:56.000Z" + }, + "end": { + "$date": "2022-03-06T22:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "54f58409-f93b-4e9d-9d08-7865fbb3a1d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-06T23:20:40.000Z" + }, + "end": { + "$date": "2022-03-07T06:28:39.000Z" + }, + "events": [ + { + "uuid": "d0142983-42bf-4e86-b927-bd7d28b59a13", + "start": { + "$date": "2022-03-06T23:20:40.000Z" + }, + "end": { + "$date": "2022-03-07T06:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b262bf33-74c7-48b3-b9e7-559ffe759fad", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-07T00:18:37.000Z" + }, + "end": { + "$date": "2022-03-07T00:35:12.000Z" + }, + "events": [ + { + "uuid": "953bc0c3-c475-4973-9eaf-aa5f27af42ca", + "start": { + "$date": "2022-03-07T00:18:37.000Z" + }, + "end": { + "$date": "2022-03-07T00:35:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a6b2901-140c-4502-b36a-188990f63cf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-07T01:45:45.000Z" + }, + "end": { + "$date": "2022-03-07T02:07:35.000Z" + }, + "events": [ + { + "uuid": "982e734c-f1f5-4e32-8a65-f03075f49d5c", + "start": { + "$date": "2022-03-07T01:45:45.000Z" + }, + "end": { + "$date": "2022-03-07T02:07:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f04635fc-4a62-457e-be4f-9bfbcd52e92d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T00:44:04.000Z" + }, + "end": { + "$date": "2022-03-07T00:47:10.000Z" + }, + "events": [ + { + "uuid": "e1db90a5-b274-454b-8228-837a5afc29c5", + "start": { + "$date": "2022-03-07T00:44:04.000Z" + }, + "end": { + "$date": "2022-03-07T00:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "71c58844-668f-4cf0-a506-a327bc7ada1c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T00:49:20.000Z" + }, + "end": { + "$date": "2022-03-07T00:55:33.000Z" + }, + "events": [ + { + "uuid": "eec22d7b-dc02-472f-ba77-0dd9abfc3d9c", + "start": { + "$date": "2022-03-07T00:49:20.000Z" + }, + "end": { + "$date": "2022-03-07T00:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1f796950-b1dd-4576-8884-8a49386df4af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-07T00:49:55.000Z" + }, + "end": { + "$date": "2022-03-07T00:56:05.000Z" + }, + "events": [ + { + "uuid": "d6232bbe-b34b-4a46-9439-b1eb2ed6c1c2", + "start": { + "$date": "2022-03-07T00:49:55.000Z" + }, + "end": { + "$date": "2022-03-07T00:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "c6c2d8fa-8063-43ec-a233-98a9396b6ff1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-07T00:56:30.000Z" + }, + "end": { + "$date": "2022-03-07T02:01:52.000Z" + }, + "events": [ + { + "uuid": "b1f0bdc7-cae9-461b-b7db-4a1189e53387", + "start": { + "$date": "2022-03-07T00:56:30.000Z" + }, + "end": { + "$date": "2022-03-07T02:01:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "7de06715-c3bb-4cbf-a550-e93535b5cd1d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T00:58:41.000Z" + }, + "end": { + "$date": "2022-03-07T02:04:39.000Z" + }, + "events": [ + { + "uuid": "b8804d24-69ff-4e60-82d1-ac288f3698be", + "start": { + "$date": "2022-03-07T00:58:41.000Z" + }, + "end": { + "$date": "2022-03-07T02:04:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d376fd46-f0f5-4865-865d-ace08cd8eeab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-07T03:31:35.000Z" + }, + "end": { + "$date": "2022-03-07T07:25:07.000Z" + }, + "events": [ + { + "uuid": "b4816f59-617a-45f6-ba6f-bbe2cd4afa6a", + "start": { + "$date": "2022-03-07T03:31:35.000Z" + }, + "end": { + "$date": "2022-03-07T07:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b4b8d755-62d2-4602-9b61-c424f18628d4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T03:53:47.000Z" + }, + "end": { + "$date": "2022-03-07T03:57:59.000Z" + }, + "events": [ + { + "uuid": "f2f83ccd-209f-4343-bdf9-4d5b37e3c190", + "start": { + "$date": "2022-03-07T03:53:47.000Z" + }, + "end": { + "$date": "2022-03-07T03:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "68e6d42e-5d22-4981-ba5c-3a8e5a2183c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T03:58:07.000Z" + }, + "end": { + "$date": "2022-03-07T04:13:25.000Z" + }, + "events": [ + { + "uuid": "d2da3950-a823-49c4-bc40-48ae5473ed4d", + "start": { + "$date": "2022-03-07T03:58:07.000Z" + }, + "end": { + "$date": "2022-03-07T04:13:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "f9f43108-3a9b-47df-8e85-21109ce04cef", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T04:09:38.000Z" + }, + "end": { + "$date": "2022-03-07T04:47:07.000Z" + }, + "events": [ + { + "uuid": "962f5f52-36e5-44e4-9409-4f12ebb75e38", + "start": { + "$date": "2022-03-07T04:09:38.000Z" + }, + "end": { + "$date": "2022-03-07T04:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "276245ae-e9fe-45bc-ae7e-266f39592e28", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T04:20:59.000Z" + }, + "end": { + "$date": "2022-03-07T04:50:49.000Z" + }, + "events": [ + { + "uuid": "513e25ce-3daa-4f04-93f7-909880101e53", + "start": { + "$date": "2022-03-07T04:20:59.000Z" + }, + "end": { + "$date": "2022-03-07T04:45:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5aa0ea93-789e-4944-a74f-c7d1eb271577", + "start": { + "$date": "2022-03-07T04:45:59.000Z" + }, + "end": { + "$date": "2022-03-07T04:50:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7e99a480-306d-4458-9028-d9be8c1973f8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-07T04:21:28.000Z" + }, + "end": { + "$date": "2022-03-07T04:22:50.000Z" + }, + "events": [ + { + "uuid": "c645ee1c-fa0d-4f79-8623-04c8e10ab8f8", + "start": { + "$date": "2022-03-07T04:21:28.000Z" + }, + "end": { + "$date": "2022-03-07T04:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "4be16d2b-778e-4265-b2bd-1817dce8e9f8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-07T04:24:37.000Z" + }, + "end": { + "$date": "2022-03-07T04:41:06.000Z" + }, + "events": [ + { + "uuid": "036528bc-02c3-498f-b65e-72d7162bb4fb", + "start": { + "$date": "2022-03-07T04:24:37.000Z" + }, + "end": { + "$date": "2022-03-07T04:41:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4fde9457-506d-4e74-abb7-64becf470ea2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-07T04:39:51.000Z" + }, + "end": { + "$date": "2022-03-07T06:24:01.000Z" + }, + "events": [ + { + "uuid": "d25f3482-a72c-46d8-a03e-85c14441acd2", + "start": { + "$date": "2022-03-07T04:39:51.000Z" + }, + "end": { + "$date": "2022-03-07T06:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "227b0dce-388a-4073-b5d1-ac5d194d35f1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T04:53:51.000Z" + }, + "end": { + "$date": "2022-03-07T04:55:07.000Z" + }, + "events": [ + { + "uuid": "d794ee87-144b-44d2-9ea8-da4e5b427cde", + "start": { + "$date": "2022-03-07T04:53:51.000Z" + }, + "end": { + "$date": "2022-03-07T04:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ece93f81-b5a3-41dd-9eaf-95daa136674d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T04:55:42.000Z" + }, + "end": { + "$date": "2022-03-07T05:00:16.000Z" + }, + "events": [ + { + "uuid": "59f275a7-7937-4ab0-91f0-5cda33bce6da", + "start": { + "$date": "2022-03-07T04:55:42.000Z" + }, + "end": { + "$date": "2022-03-07T05:00:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f91d96d5-0356-41d4-b500-b14962518b37", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T05:00:40.000Z" + }, + "end": { + "$date": "2022-03-07T05:23:30.000Z" + }, + "events": [ + { + "uuid": "59082737-e75e-4e54-94f8-aaa7e3c45d37", + "start": { + "$date": "2022-03-07T05:00:40.000Z" + }, + "end": { + "$date": "2022-03-07T05:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49b4a2b9-d8e5-4221-930b-22ddc96ab66f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T05:37:24.000Z" + }, + "end": { + "$date": "2022-03-07T06:18:59.000Z" + }, + "events": [ + { + "uuid": "7d81f8d0-f7c2-4cb2-9daa-7ad1e16835e1", + "start": { + "$date": "2022-03-07T05:37:24.000Z" + }, + "end": { + "$date": "2022-03-07T06:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1077d779-04f0-4396-8bc1-df3730721e3e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-07T05:52:48.000Z" + }, + "end": { + "$date": "2022-03-07T06:11:53.000Z" + }, + "events": [ + { + "uuid": "0241f9fb-64b7-4cdc-9e6f-97628e89666b", + "start": { + "$date": "2022-03-07T05:52:48.000Z" + }, + "end": { + "$date": "2022-03-07T06:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb8391f4-e8b5-4a40-ad5d-6a7c5face570", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-07T06:16:09.000Z" + }, + "end": { + "$date": "2022-03-07T06:39:14.000Z" + }, + "events": [ + { + "uuid": "729081ac-afde-47a1-aba5-bc26efe9b52c", + "start": { + "$date": "2022-03-07T06:16:09.000Z" + }, + "end": { + "$date": "2022-03-07T06:39:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eb3f184f-cf05-41a6-b419-364d5131cca7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T06:56:55.000Z" + }, + "end": { + "$date": "2022-03-07T06:57:00.000Z" + }, + "events": [ + { + "uuid": "0ce7e68b-8001-4f59-9c19-d95b29566f06", + "start": { + "$date": "2022-03-07T06:56:55.000Z" + }, + "end": { + "$date": "2022-03-07T06:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aeeb4cc4-8036-4496-acfb-8ba57029ed6b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-07T06:38:15.000Z" + }, + "end": { + "$date": "2022-03-07T08:56:43.000Z" + }, + "events": [ + { + "uuid": "827c2154-e48e-4a4c-9fc7-5b4ba04560c2", + "start": { + "$date": "2022-03-07T06:38:15.000Z" + }, + "end": { + "$date": "2022-03-07T08:56:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "50f18518-dc4f-46bd-8004-be741ffa2c28", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T06:58:28.000Z" + }, + "end": { + "$date": "2022-03-07T07:26:20.000Z" + }, + "events": [ + { + "uuid": "7880418b-0107-423b-9319-dfd70361ecc2", + "start": { + "$date": "2022-03-07T06:58:28.000Z" + }, + "end": { + "$date": "2022-03-07T07:26:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c539a30c-3be6-4347-8b1c-b0c55fa72c98", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-07T07:46:19.000Z" + }, + "end": { + "$date": "2022-03-07T08:56:23.000Z" + }, + "events": [ + { + "uuid": "5104d79b-2850-4275-9948-64a5b0dbbf7c", + "start": { + "$date": "2022-03-07T07:46:19.000Z" + }, + "end": { + "$date": "2022-03-07T08:56:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "70b78214-8e9b-480d-97a5-f2a2453b6801", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-07T07:47:41.000Z" + }, + "end": { + "$date": "2022-03-07T09:00:50.000Z" + }, + "events": [ + { + "uuid": "4d7d5348-85a3-41b4-9ccb-0fe145753627", + "start": { + "$date": "2022-03-07T07:47:41.000Z" + }, + "end": { + "$date": "2022-03-07T09:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "bbf6dda7-b01b-4d74-b135-20e4c59148fc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-07T16:03:16.000Z" + }, + "end": { + "$date": "2022-03-07T19:27:29.000Z" + }, + "events": [ + { + "uuid": "b41d548a-a7de-4fdb-8b18-2786ec9cbe28", + "start": { + "$date": "2022-03-07T16:03:16.000Z" + }, + "end": { + "$date": "2022-03-07T19:27:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a81c8f54-a2c1-4731-afa3-791eb9675fb3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-07T16:07:43.000Z" + }, + "end": { + "$date": "2022-03-07T16:29:40.000Z" + }, + "events": [ + { + "uuid": "73fc2130-c703-4321-8e3d-1d3ebeae3589", + "start": { + "$date": "2022-03-07T16:07:43.000Z" + }, + "end": { + "$date": "2022-03-07T16:29:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "488f208b-5a43-4279-b805-3e15da8ccb60", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-07T16:30:50.000Z" + }, + "end": { + "$date": "2022-03-07T16:46:35.000Z" + }, + "events": [ + { + "uuid": "9772c917-a688-4ec7-bf7f-163dbe23813c", + "start": { + "$date": "2022-03-07T16:30:50.000Z" + }, + "end": { + "$date": "2022-03-07T16:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19849746-b251-4233-bdad-a7c359c12204", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-07T17:22:34.000Z" + }, + "end": { + "$date": "2022-03-07T17:40:31.000Z" + }, + "events": [ + { + "uuid": "5c4f0399-6f8c-41bf-99c5-4af2f9a76971", + "start": { + "$date": "2022-03-07T17:22:34.000Z" + }, + "end": { + "$date": "2022-03-07T17:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4a59b17b-8eda-4127-9716-096e5cb23c49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-07T17:49:07.000Z" + }, + "end": { + "$date": "2022-03-07T18:04:13.000Z" + }, + "events": [ + { + "uuid": "94734c5a-9a14-40fb-84be-33e42de4a209", + "start": { + "$date": "2022-03-07T17:49:07.000Z" + }, + "end": { + "$date": "2022-03-07T18:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "654d90a1-e996-483b-b25b-703b5570fedd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-07T18:21:50.000Z" + }, + "end": { + "$date": "2022-03-08T00:40:17.000Z" + }, + "events": [ + { + "uuid": "e069f0ac-e834-4a72-b00b-7ce32ef6b439", + "start": { + "$date": "2022-03-07T18:21:50.000Z" + }, + "end": { + "$date": "2022-03-07T19:08:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eed14061-4b13-4b3d-b7cd-6cac70fbd7fa", + "start": { + "$date": "2022-03-07T19:08:50.000Z" + }, + "end": { + "$date": "2022-03-08T00:30:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cee3ba7b-e0f7-4617-90ac-e73d4fb11f51", + "start": { + "$date": "2022-03-08T00:30:50.000Z" + }, + "end": { + "$date": "2022-03-08T00:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09e20845-38bc-43e4-98b3-bb2b95c36867", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T22:15:21.000Z" + }, + "end": { + "$date": "2022-03-07T22:15:34.000Z" + }, + "events": [ + { + "uuid": "4366afc6-e513-48c0-b089-9075a11a2077", + "start": { + "$date": "2022-03-07T22:15:21.000Z" + }, + "end": { + "$date": "2022-03-07T22:15:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "422bf74c-deb3-461f-ba73-648bd7a943c8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T22:16:33.000Z" + }, + "end": { + "$date": "2022-03-07T22:48:18.000Z" + }, + "events": [ + { + "uuid": "a1ffb452-ef39-4e94-a568-3fa5c5d012b7", + "start": { + "$date": "2022-03-07T22:16:33.000Z" + }, + "end": { + "$date": "2022-03-07T22:48:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27d707f1-8f3e-4c7d-8cec-41985b400a6d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T22:56:54.000Z" + }, + "end": { + "$date": "2022-03-07T23:33:38.000Z" + }, + "events": [ + { + "uuid": "a4c6aa8d-8eb8-4b65-86bc-00cb3a49bb63", + "start": { + "$date": "2022-03-07T22:56:54.000Z" + }, + "end": { + "$date": "2022-03-07T23:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3465df2-bd2b-4d23-8a53-1e1a1ff7a016", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-07T23:33:57.000Z" + }, + "end": { + "$date": "2022-03-07T23:42:53.000Z" + }, + "events": [ + { + "uuid": "0475e954-be56-4773-b4a7-daa6bcfa12c0", + "start": { + "$date": "2022-03-07T23:33:57.000Z" + }, + "end": { + "$date": "2022-03-07T23:42:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fe283859-66d9-4a05-8d55-104d4ceaedab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-08T00:31:06.000Z" + }, + "end": { + "$date": "2022-03-08T01:12:52.000Z" + }, + "events": [ + { + "uuid": "2199644a-e28c-49fc-80ca-8eb1ad7f5aa7", + "start": { + "$date": "2022-03-08T00:31:06.000Z" + }, + "end": { + "$date": "2022-03-08T01:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "498cd3ec-7287-45d9-9234-e898579b0ef6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T00:56:38.000Z" + }, + "end": { + "$date": "2022-03-08T01:33:17.000Z" + }, + "events": [ + { + "uuid": "cbb7e117-0f58-4a19-af62-962c424ca756", + "start": { + "$date": "2022-03-08T00:56:38.000Z" + }, + "end": { + "$date": "2022-03-08T01:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "79da8e0b-614a-4fed-9b8e-db708fd1c3b9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-08T01:08:13.000Z" + }, + "end": { + "$date": "2022-03-08T02:25:47.000Z" + }, + "events": [ + { + "uuid": "4546d14e-e930-4e65-ada0-93eced598a94", + "start": { + "$date": "2022-03-08T01:08:13.000Z" + }, + "end": { + "$date": "2022-03-08T01:33:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "818e2a1b-7a12-486d-9446-ca483ead6c8e", + "start": { + "$date": "2022-03-08T01:33:13.000Z" + }, + "end": { + "$date": "2022-03-08T01:36:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61b856bf-b0b3-4f5f-9314-f47897bf0044", + "start": { + "$date": "2022-03-08T01:36:13.000Z" + }, + "end": { + "$date": "2022-03-08T01:46:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1faf198-5a24-4a69-998e-b3f391013383", + "start": { + "$date": "2022-03-08T01:46:13.000Z" + }, + "end": { + "$date": "2022-03-08T01:51:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "74172a22-0e64-4dc6-ba17-e80e31c10609", + "start": { + "$date": "2022-03-08T01:51:13.000Z" + }, + "end": { + "$date": "2022-03-08T02:06:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3e17bcb-b08b-4400-a157-75d9dbd8ffa4", + "start": { + "$date": "2022-03-08T02:06:13.000Z" + }, + "end": { + "$date": "2022-03-08T02:25:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0f0ceaf1-636a-4ddc-9756-202a5fab719d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-08T01:17:35.000Z" + }, + "end": { + "$date": "2022-03-08T01:35:29.000Z" + }, + "events": [ + { + "uuid": "5a62d7e1-f60b-4b33-a900-0ff4a3427fa1", + "start": { + "$date": "2022-03-08T01:17:35.000Z" + }, + "end": { + "$date": "2022-03-08T01:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "b89b5de7-6e5f-48fc-b916-643c4240e010", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-08T01:19:02.000Z" + }, + "end": { + "$date": "2022-03-08T03:55:40.000Z" + }, + "events": [ + { + "uuid": "ae4dc380-01e5-41a2-9993-33d7844c458f", + "start": { + "$date": "2022-03-08T01:19:02.000Z" + }, + "end": { + "$date": "2022-03-08T03:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a52aff72-267f-403e-9cde-7dc4b0931915", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T01:35:39.000Z" + }, + "end": { + "$date": "2022-03-08T02:13:39.000Z" + }, + "events": [ + { + "uuid": "172bac39-a8ee-47cb-ac33-777b67fc7c9b", + "start": { + "$date": "2022-03-08T01:35:39.000Z" + }, + "end": { + "$date": "2022-03-08T02:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02d4d344-1498-4a66-be7c-bea15d561dbb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T02:14:04.000Z" + }, + "end": { + "$date": "2022-03-08T02:26:15.000Z" + }, + "events": [ + { + "uuid": "ba0f84c6-d064-4442-a29c-bc56fc5f1ec9", + "start": { + "$date": "2022-03-08T02:14:04.000Z" + }, + "end": { + "$date": "2022-03-08T02:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "e5480d75-21c2-4b0a-aa4b-490f7d41ea72", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T02:26:19.000Z" + }, + "end": { + "$date": "2022-03-08T05:15:09.000Z" + }, + "events": [ + { + "uuid": "9ddcf069-1a56-422d-85fd-f7c7eeb6b8a6", + "start": { + "$date": "2022-03-08T02:26:19.000Z" + }, + "end": { + "$date": "2022-03-08T02:48:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "92305eac-5c3c-4ef9-98cf-20facc6472d2", + "start": { + "$date": "2022-03-08T02:48:19.000Z" + }, + "end": { + "$date": "2022-03-08T02:56:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "17513e32-cc00-4b19-84ba-2a1a4cee6020", + "start": { + "$date": "2022-03-08T02:56:19.000Z" + }, + "end": { + "$date": "2022-03-08T05:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "86e863b4-755b-4dca-8dd5-d647275b569e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-08T02:38:52.000Z" + }, + "end": { + "$date": "2022-03-08T03:13:43.000Z" + }, + "events": [ + { + "uuid": "c9135d00-b303-4c99-b3e2-d2caf887c016", + "start": { + "$date": "2022-03-08T02:38:52.000Z" + }, + "end": { + "$date": "2022-03-08T03:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "509886f1-af7a-4f15-8e63-7bdee330cd8a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-08T02:41:59.000Z" + }, + "end": { + "$date": "2022-03-08T03:47:06.000Z" + }, + "events": [ + { + "uuid": "ea873325-0299-4ac3-a8b8-fda2c577f9ef", + "start": { + "$date": "2022-03-08T02:41:59.000Z" + }, + "end": { + "$date": "2022-03-08T03:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "101a8ab4-4eea-4185-aee1-f96904beaa60", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-08T03:20:52.000Z" + }, + "end": { + "$date": "2022-03-08T04:01:12.000Z" + }, + "events": [ + { + "uuid": "719e725b-9c41-497e-aeb1-ec6b3225fd40", + "start": { + "$date": "2022-03-08T03:20:52.000Z" + }, + "end": { + "$date": "2022-03-08T04:01:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "54d989d9-859b-4dd4-a18f-41de49dc8736", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-08T03:17:14.000Z" + }, + "end": { + "$date": "2022-03-08T06:36:01.000Z" + }, + "events": [ + { + "uuid": "5bc9f05c-7dd0-4f0a-9ca9-7b860383177e", + "start": { + "$date": "2022-03-08T03:17:14.000Z" + }, + "end": { + "$date": "2022-03-08T06:36:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b6352ba7-ac16-4cf3-a258-23269a28ce29", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-08T03:37:11.000Z" + }, + "end": { + "$date": "2022-03-08T03:46:27.000Z" + }, + "events": [ + { + "uuid": "0ce157f9-b9a7-41f8-904e-085a161036fe", + "start": { + "$date": "2022-03-08T03:37:11.000Z" + }, + "end": { + "$date": "2022-03-08T03:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7ed484c7-fd3d-4387-a49f-73fecf3beddd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-08T03:40:53.000Z" + }, + "end": { + "$date": "2022-03-08T05:32:26.000Z" + }, + "events": [ + { + "uuid": "c5f602ae-6449-455a-8605-5ab122e8bd0a", + "start": { + "$date": "2022-03-08T03:40:53.000Z" + }, + "end": { + "$date": "2022-03-08T05:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4902c6ae-94c9-4144-81b1-896a04a0757e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-08T03:47:16.000Z" + }, + "end": { + "$date": "2022-03-08T04:19:53.000Z" + }, + "events": [ + { + "uuid": "63a2d1e7-4e91-4adf-858a-b8103f685a7d", + "start": { + "$date": "2022-03-08T03:47:16.000Z" + }, + "end": { + "$date": "2022-03-08T04:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7adbd299-bf87-4033-9362-907914e9d294", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-08T03:47:51.000Z" + }, + "end": { + "$date": "2022-03-08T09:32:32.000Z" + }, + "events": [ + { + "uuid": "ac73cafd-4bc8-470a-ae1a-0d2dbfd67884", + "start": { + "$date": "2022-03-08T03:47:51.000Z" + }, + "end": { + "$date": "2022-03-08T09:32:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c48c2026-535f-402b-8168-06505b4a479c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-08T03:58:38.000Z" + }, + "end": { + "$date": "2022-03-08T04:06:58.000Z" + }, + "events": [ + { + "uuid": "fe2ad081-5215-4430-99a4-28554720e61b", + "start": { + "$date": "2022-03-08T03:58:38.000Z" + }, + "end": { + "$date": "2022-03-08T04:06:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18ac49ac-cff9-49e1-ae1b-4d95ef25fb41", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-08T04:10:23.000Z" + }, + "end": { + "$date": "2022-03-08T04:40:29.000Z" + }, + "events": [ + { + "uuid": "45eb113c-8c21-4bff-83f8-6bb27a230894", + "start": { + "$date": "2022-03-08T04:10:23.000Z" + }, + "end": { + "$date": "2022-03-08T04:40:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "339e4fd2-7e54-4d92-90f2-5829987a6937", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T04:11:10.000Z" + }, + "end": { + "$date": "2022-03-08T06:21:44.000Z" + }, + "events": [ + { + "uuid": "77988611-bb08-411d-b5da-f7b9269dcb0d", + "start": { + "$date": "2022-03-08T04:11:10.000Z" + }, + "end": { + "$date": "2022-03-08T06:21:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "212fa1a7-8f8c-4bf8-ae98-b8fd79e70956", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-08T04:12:32.000Z" + }, + "end": { + "$date": "2022-03-08T05:22:39.000Z" + }, + "events": [ + { + "uuid": "40f56cf8-2470-4138-b391-18ec69cc5dc0", + "start": { + "$date": "2022-03-08T04:12:32.000Z" + }, + "end": { + "$date": "2022-03-08T05:22:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "74ba5ecc-9deb-4bd9-acc1-c3996b6b6261", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-08T04:20:09.000Z" + }, + "end": { + "$date": "2022-03-08T06:17:44.000Z" + }, + "events": [ + { + "uuid": "7a5f5306-491e-4d1c-a229-24a53dfe8908", + "start": { + "$date": "2022-03-08T04:20:09.000Z" + }, + "end": { + "$date": "2022-03-08T06:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b34a9556-dfeb-4279-ad7c-54f42088456d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-08T04:33:19.000Z" + }, + "end": { + "$date": "2022-03-08T05:08:28.000Z" + }, + "events": [ + { + "uuid": "26dbb7d0-de73-4f6a-b315-ab8e38d220fa", + "start": { + "$date": "2022-03-08T04:33:19.000Z" + }, + "end": { + "$date": "2022-03-08T05:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61cde7ac-6918-438f-8a96-f41067aafe55", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-08T04:49:25.000Z" + }, + "end": { + "$date": "2022-03-08T05:38:21.000Z" + }, + "events": [ + { + "uuid": "57cf9285-cd80-4bf9-9522-ae8886e1f883", + "start": { + "$date": "2022-03-08T04:49:25.000Z" + }, + "end": { + "$date": "2022-03-08T05:38:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4dfe2724-ffcd-457f-9307-e58c406a94ea", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T05:23:07.000Z" + }, + "end": { + "$date": "2022-03-08T05:24:59.000Z" + }, + "events": [ + { + "uuid": "270388bb-2aac-4b03-9707-a4218f74304a", + "start": { + "$date": "2022-03-08T05:23:07.000Z" + }, + "end": { + "$date": "2022-03-08T05:24:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "bd03f5f1-c8e7-42a7-a741-60d60e3172e5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-08T06:03:59.000Z" + }, + "end": { + "$date": "2022-03-08T06:32:49.000Z" + }, + "events": [ + { + "uuid": "9f25dd8e-59c7-498e-aa3d-607c27982070", + "start": { + "$date": "2022-03-08T06:03:59.000Z" + }, + "end": { + "$date": "2022-03-08T06:32:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d0fd4b45-14d0-4a7b-b1f2-3e834dba4d1d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T05:25:27.000Z" + }, + "end": { + "$date": "2022-03-08T06:00:22.000Z" + }, + "events": [ + { + "uuid": "64bdb198-6ea9-49b8-af89-13330df272d1", + "start": { + "$date": "2022-03-08T05:25:27.000Z" + }, + "end": { + "$date": "2022-03-08T06:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "861e8179-765e-42c9-9cc6-0a47ceb5a54e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-08T05:34:20.000Z" + }, + "end": { + "$date": "2022-03-08T09:33:35.000Z" + }, + "events": [ + { + "uuid": "4378244e-ca00-41fa-94ec-e46f725ddd8d", + "start": { + "$date": "2022-03-08T05:34:20.000Z" + }, + "end": { + "$date": "2022-03-08T09:33:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5faa053-327e-4e7e-8d05-d15e53cf6908", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-08T05:43:51.000Z" + }, + "end": { + "$date": "2022-03-08T06:11:17.000Z" + }, + "events": [ + { + "uuid": "ef4e38af-d1dd-4bf3-8b5e-d9d53e9972d8", + "start": { + "$date": "2022-03-08T05:43:51.000Z" + }, + "end": { + "$date": "2022-03-08T06:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "756222ab-d28a-471d-971f-14d1d997e82d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-08T06:18:32.000Z" + }, + "end": { + "$date": "2022-03-08T06:50:23.000Z" + }, + "events": [ + { + "uuid": "24ed2a01-09a5-4033-b193-19257136deca", + "start": { + "$date": "2022-03-08T06:18:32.000Z" + }, + "end": { + "$date": "2022-03-08T06:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b573f2d8-5dc0-441f-b57a-b833ff3adac9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-08T07:13:51.000Z" + }, + "end": { + "$date": "2022-03-08T07:35:21.000Z" + }, + "events": [ + { + "uuid": "be1228b6-23e1-479d-a688-086e73d64696", + "start": { + "$date": "2022-03-08T07:13:51.000Z" + }, + "end": { + "$date": "2022-03-08T07:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "00ec3f89-4cf5-4431-9f01-c91985a6520b", + "uuid": "e222606a-babc-4b09-a951-7814e644f508", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-08T11:47:36.000Z" + }, + "end": { + "$date": "2022-03-08T14:56:20.000Z" + }, + "events": [ + { + "uuid": "9877618e-6d33-4055-9be8-c71dab332802", + "start": { + "$date": "2022-03-08T11:47:36.000Z" + }, + "end": { + "$date": "2022-03-08T14:56:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c4fe629-d9dd-47d1-b7aa-dd221a079eed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T16:36:31.000Z" + }, + "end": { + "$date": "2022-03-08T16:50:27.000Z" + }, + "events": [ + { + "uuid": "e659e09d-6e5e-456b-ac10-c6566672a500", + "start": { + "$date": "2022-03-08T16:36:31.000Z" + }, + "end": { + "$date": "2022-03-08T16:50:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "132e783f-81f4-4cac-ac23-d9e4da0bf951", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T16:51:27.000Z" + }, + "end": { + "$date": "2022-03-08T17:08:43.000Z" + }, + "events": [ + { + "uuid": "1341aa02-10f0-4000-8391-c0e69890c7f0", + "start": { + "$date": "2022-03-08T16:51:27.000Z" + }, + "end": { + "$date": "2022-03-08T17:08:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43762621-ace0-4b20-87e2-f5c08201e1b1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T17:25:40.000Z" + }, + "end": { + "$date": "2022-03-08T17:48:57.000Z" + }, + "events": [ + { + "uuid": "172935e4-af59-4582-8dd4-c29c7d3b7bb8", + "start": { + "$date": "2022-03-08T17:25:40.000Z" + }, + "end": { + "$date": "2022-03-08T17:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8fabc7f7-20f8-4aaf-8e64-bb334c06fb3b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T18:21:15.000Z" + }, + "end": { + "$date": "2022-03-08T18:35:36.000Z" + }, + "events": [ + { + "uuid": "ba59ae32-bf71-440c-9778-4f0df989e07c", + "start": { + "$date": "2022-03-08T18:21:15.000Z" + }, + "end": { + "$date": "2022-03-08T18:35:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2561034f-56c4-43b1-9832-f2f3f5bb8b08", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T18:37:06.000Z" + }, + "end": { + "$date": "2022-03-08T18:53:12.000Z" + }, + "events": [ + { + "uuid": "c2b5903a-5387-4ae3-bc21-280f86f9ebe1", + "start": { + "$date": "2022-03-08T18:37:06.000Z" + }, + "end": { + "$date": "2022-03-08T18:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b6acc5b2-a77d-4eb2-aa6d-67598c5e07bc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T19:37:42.000Z" + }, + "end": { + "$date": "2022-03-08T20:51:39.000Z" + }, + "events": [ + { + "uuid": "f41258ed-fe52-47f1-a959-989622c52953", + "start": { + "$date": "2022-03-08T19:37:42.000Z" + }, + "end": { + "$date": "2022-03-08T20:51:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "cf323aa2-ff81-4f61-b516-efbf1c6ebfa6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-08T21:53:26.000Z" + }, + "end": { + "$date": "2022-03-08T21:53:27.000Z" + }, + "events": [ + { + "uuid": "d7549d91-6bb6-44e7-bd49-315cb12cfdc2", + "start": { + "$date": "2022-03-08T21:53:26.000Z" + }, + "end": { + "$date": "2022-03-08T21:53:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b86578cf-1788-475d-8dba-b65201effa90", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T22:10:07.000Z" + }, + "end": { + "$date": "2022-03-08T22:22:03.000Z" + }, + "events": [ + { + "uuid": "989efc65-7d21-49cf-bd51-cd4c14f82295", + "start": { + "$date": "2022-03-08T22:10:07.000Z" + }, + "end": { + "$date": "2022-03-08T22:22:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "647f4855-d9ea-46b3-b024-beee1d6592c9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-08T22:30:06.000Z" + }, + "end": { + "$date": "2022-03-09T00:52:48.000Z" + }, + "events": [ + { + "uuid": "fbbdb902-9f31-4dde-8ba3-9d7ceffb2ba4", + "start": { + "$date": "2022-03-08T22:30:06.000Z" + }, + "end": { + "$date": "2022-03-09T00:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "192b3df9-e337-494a-a0d5-9394e38eb977", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-08T22:33:51.000Z" + }, + "end": { + "$date": "2022-03-08T22:49:07.000Z" + }, + "events": [ + { + "uuid": "67a04b9b-f2a6-4ebf-83e7-be540a55183e", + "start": { + "$date": "2022-03-08T22:33:51.000Z" + }, + "end": { + "$date": "2022-03-08T22:49:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1a08d39-ec7c-4aab-83bb-cfb08cf2cee2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T22:36:00.000Z" + }, + "end": { + "$date": "2022-03-08T22:50:31.000Z" + }, + "events": [ + { + "uuid": "cd8ee3de-ca62-42f3-ab62-18fae114fd6e", + "start": { + "$date": "2022-03-08T22:36:00.000Z" + }, + "end": { + "$date": "2022-03-08T22:50:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78f1808c-9b4c-4dba-8e41-b4f9d8d165ea", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T22:42:29.000Z" + }, + "end": { + "$date": "2022-03-08T23:21:40.000Z" + }, + "events": [ + { + "uuid": "9909c3c0-0d9b-4324-84e9-fb17e9e11a4f", + "start": { + "$date": "2022-03-08T22:42:29.000Z" + }, + "end": { + "$date": "2022-03-08T23:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "d16609dd-a07d-4cf3-9204-41399d6a200b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-08T22:50:43.000Z" + }, + "end": { + "$date": "2022-03-09T00:14:58.000Z" + }, + "events": [ + { + "uuid": "154f7a02-2122-4e08-a128-d3eb975e9362", + "start": { + "$date": "2022-03-08T22:50:43.000Z" + }, + "end": { + "$date": "2022-03-09T00:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7d33a64c-dbba-4cf6-b799-42221e7ceb7f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T23:02:32.000Z" + }, + "end": { + "$date": "2022-03-08T23:40:45.000Z" + }, + "events": [ + { + "uuid": "543f78c4-7a61-45bf-96bd-f7a797d85b71", + "start": { + "$date": "2022-03-08T23:02:32.000Z" + }, + "end": { + "$date": "2022-03-08T23:40:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2a88a06d-982c-4d40-82b6-54a7b678c532", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-08T23:30:24.000Z" + }, + "end": { + "$date": "2022-03-09T00:08:24.000Z" + }, + "events": [ + { + "uuid": "97850c26-df65-4296-ac48-eaf4d038857d", + "start": { + "$date": "2022-03-08T23:30:24.000Z" + }, + "end": { + "$date": "2022-03-09T00:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d68af8b8-ab0a-4de7-a6a5-6f2d7dc8b3cc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-08T23:42:09.000Z" + }, + "end": { + "$date": "2022-03-09T00:12:02.000Z" + }, + "events": [ + { + "uuid": "a7d21523-6772-415c-bae5-6d50416892bf", + "start": { + "$date": "2022-03-08T23:42:09.000Z" + }, + "end": { + "$date": "2022-03-09T00:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "84cab14b-6bec-49ff-997e-fbbb2142e46f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-08T23:49:53.000Z" + }, + "end": { + "$date": "2022-03-09T00:12:00.000Z" + }, + "events": [ + { + "uuid": "29d35e5d-cd4e-46f5-8d5c-40e80ef71afa", + "start": { + "$date": "2022-03-08T23:49:53.000Z" + }, + "end": { + "$date": "2022-03-09T00:12:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fda02176-f654-4466-9565-366d19b690a2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T00:13:11.000Z" + }, + "end": { + "$date": "2022-03-09T00:27:17.000Z" + }, + "events": [ + { + "uuid": "f11400a0-2296-4418-868d-a157476c8d82", + "start": { + "$date": "2022-03-09T00:13:11.000Z" + }, + "end": { + "$date": "2022-03-09T00:27:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9bf2347c-dcb7-4688-9d62-4879412328bf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T00:15:34.000Z" + }, + "end": { + "$date": "2022-03-09T01:04:00.000Z" + }, + "events": [ + { + "uuid": "d2e39dec-2f29-4023-9a46-9b404332d047", + "start": { + "$date": "2022-03-09T00:15:34.000Z" + }, + "end": { + "$date": "2022-03-09T01:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5c17f072-150c-4119-9fe4-fde60e18dfae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T00:28:37.000Z" + }, + "end": { + "$date": "2022-03-09T00:36:33.000Z" + }, + "events": [ + { + "uuid": "94793fed-6d27-4b61-a9ce-b3eebbaf5791", + "start": { + "$date": "2022-03-09T00:28:37.000Z" + }, + "end": { + "$date": "2022-03-09T00:36:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "fa724397-74f4-4de4-aea1-325d585350e1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-09T00:52:09.000Z" + }, + "end": { + "$date": "2022-03-09T03:25:27.000Z" + }, + "events": [ + { + "uuid": "d922bc69-ec36-4180-9d0e-0573d7fbf662", + "start": { + "$date": "2022-03-09T00:52:09.000Z" + }, + "end": { + "$date": "2022-03-09T03:25:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a3da76b9-857d-43f0-900b-5fe033912726", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T01:04:41.000Z" + }, + "end": { + "$date": "2022-03-09T01:37:27.000Z" + }, + "events": [ + { + "uuid": "18148cf6-b5fe-47a1-a9a3-07aac0803cbc", + "start": { + "$date": "2022-03-09T01:04:41.000Z" + }, + "end": { + "$date": "2022-03-09T01:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "a0905014-105c-4af2-a6c6-6bb97de3b9dd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-09T01:12:47.000Z" + }, + "end": { + "$date": "2022-03-09T01:37:31.000Z" + }, + "events": [ + { + "uuid": "ddeb2103-cde1-45ca-9e4e-8a1331364371", + "start": { + "$date": "2022-03-09T01:12:47.000Z" + }, + "end": { + "$date": "2022-03-09T01:37:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "877fe595-af94-4c85-950e-aba9d240d30e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T03:15:21.000Z" + }, + "end": { + "$date": "2022-03-09T05:55:59.000Z" + }, + "events": [ + { + "uuid": "d298e1e7-23e4-44c9-933e-3b0a2945fd65", + "start": { + "$date": "2022-03-09T03:15:21.000Z" + }, + "end": { + "$date": "2022-03-09T05:55:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8dd75225-6eee-4e64-b24f-710278df46ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-09T01:33:13.000Z" + }, + "end": { + "$date": "2022-03-09T01:39:49.000Z" + }, + "events": [ + { + "uuid": "7b79d307-b1fc-4c84-a900-cc735bdd0dea", + "start": { + "$date": "2022-03-09T01:33:13.000Z" + }, + "end": { + "$date": "2022-03-09T01:39:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "521cb5ae-29d0-433e-8a20-a3abc38c3c1f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-09T01:35:24.000Z" + }, + "end": { + "$date": "2022-03-09T01:42:06.000Z" + }, + "events": [ + { + "uuid": "d08e1dc6-4d46-46ec-b62b-5035ffeb0186", + "start": { + "$date": "2022-03-09T01:35:24.000Z" + }, + "end": { + "$date": "2022-03-09T01:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bd008b3-c440-40d5-b351-5af1b2dc527a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T01:37:57.000Z" + }, + "end": { + "$date": "2022-03-09T01:45:38.000Z" + }, + "events": [ + { + "uuid": "d5baf669-44e1-4965-89bf-4e8657c53a4b", + "start": { + "$date": "2022-03-09T01:37:57.000Z" + }, + "end": { + "$date": "2022-03-09T01:45:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "826c0be4-dcd0-4bac-87e3-b065ca104020", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-09T01:48:01.000Z" + }, + "end": { + "$date": "2022-03-09T03:02:57.000Z" + }, + "events": [ + { + "uuid": "7547a646-75a1-4591-9563-048196360b57", + "start": { + "$date": "2022-03-09T01:48:01.000Z" + }, + "end": { + "$date": "2022-03-09T03:02:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "fcb1d54d-2665-4e67-b71c-d9bb7d023e5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T01:57:14.000Z" + }, + "end": { + "$date": "2022-03-09T02:12:40.000Z" + }, + "events": [ + { + "uuid": "1d40d027-3bf1-44f4-9bde-0f12aa00685e", + "start": { + "$date": "2022-03-09T01:57:14.000Z" + }, + "end": { + "$date": "2022-03-09T02:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b7ecb71-1ac1-4309-bdc5-c79a27959c47", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-09T02:49:42.000Z" + }, + "end": { + "$date": "2022-03-09T03:20:54.000Z" + }, + "events": [ + { + "uuid": "c312c7bc-2fe7-4216-94cc-7ab09aa7389d", + "start": { + "$date": "2022-03-09T02:49:42.000Z" + }, + "end": { + "$date": "2022-03-09T03:20:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "12d16521-fbd2-4442-9a32-7a39417d40ea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-09T02:50:00.000Z" + }, + "end": { + "$date": "2022-03-09T04:12:52.000Z" + }, + "events": [ + { + "uuid": "e6be5d81-3c0e-4bec-b1fb-37af8df93eb6", + "start": { + "$date": "2022-03-09T02:50:00.000Z" + }, + "end": { + "$date": "2022-03-09T04:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fb01aea7-c097-4e24-b53a-87fe39d60513", + "uuid": "5a85c899-535a-49cd-8875-23d5ecfd2c15", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-09T02:54:09.000Z" + }, + "end": { + "$date": "2022-03-09T02:56:55.000Z" + }, + "events": [ + { + "uuid": "5fffe664-08be-45f2-9679-ee750feb0617", + "start": { + "$date": "2022-03-09T02:54:09.000Z" + }, + "end": { + "$date": "2022-03-09T02:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "77f2a4f2-d555-47bf-a0f4-fe71e9696963", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-09T02:58:05.000Z" + }, + "end": { + "$date": "2022-03-09T03:00:59.000Z" + }, + "events": [ + { + "uuid": "4bc2b40f-19eb-43e2-b243-af8bf412cad0", + "start": { + "$date": "2022-03-09T02:58:05.000Z" + }, + "end": { + "$date": "2022-03-09T03:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "84461194-cea2-4b94-8ddf-e9e31661686a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-09T02:58:05.000Z" + }, + "end": { + "$date": "2022-03-09T03:19:40.000Z" + }, + "events": [ + { + "uuid": "3129f0fe-c9c9-45a3-ab78-e73bd589c585", + "start": { + "$date": "2022-03-09T02:58:05.000Z" + }, + "end": { + "$date": "2022-03-09T03:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f9010416-cd06-493f-9265-c36c7d477899", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-09T03:28:29.000Z" + }, + "end": { + "$date": "2022-03-09T04:06:56.000Z" + }, + "events": [ + { + "uuid": "c06a847e-db86-437a-9508-e35fd91cd63d", + "start": { + "$date": "2022-03-09T03:28:29.000Z" + }, + "end": { + "$date": "2022-03-09T04:06:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ded51f6d-7011-4a2e-a082-c3e464891bd4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-09T03:29:35.000Z" + }, + "end": { + "$date": "2022-03-09T07:17:00.000Z" + }, + "events": [ + { + "uuid": "d3a09f3f-2c47-474e-bab4-1688e1f79426", + "start": { + "$date": "2022-03-09T03:29:35.000Z" + }, + "end": { + "$date": "2022-03-09T07:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", + "uuid": "08b645af-e605-4d2d-b9a6-f4491fbf7fd1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T03:35:51.000Z" + }, + "end": { + "$date": "2022-03-09T04:54:48.000Z" + }, + "events": [ + { + "uuid": "df208288-a002-4e8d-8a61-75591a65304b", + "start": { + "$date": "2022-03-09T03:35:51.000Z" + }, + "end": { + "$date": "2022-03-09T03:57:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0eb1280f-ee3b-46f6-ad0b-2435a7f12058", + "start": { + "$date": "2022-03-09T03:57:51.000Z" + }, + "end": { + "$date": "2022-03-09T04:02:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1861a531-d739-45a5-a225-f50614576354", + "start": { + "$date": "2022-03-09T04:02:51.000Z" + }, + "end": { + "$date": "2022-03-09T04:18:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea7cc161-04b6-4e25-bfdd-2b606fab18cd", + "start": { + "$date": "2022-03-09T04:18:51.000Z" + }, + "end": { + "$date": "2022-03-09T04:25:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d788f112-33ac-48df-87cd-dc363a2eef6f", + "start": { + "$date": "2022-03-09T04:25:51.000Z" + }, + "end": { + "$date": "2022-03-09T04:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "179b1314-ee0e-4f1c-82d7-70091af431b6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-09T03:51:36.000Z" + }, + "end": { + "$date": "2022-03-09T04:16:02.000Z" + }, + "events": [ + { + "uuid": "8d45224f-293b-442c-9b88-52819cfbee0e", + "start": { + "$date": "2022-03-09T03:51:36.000Z" + }, + "end": { + "$date": "2022-03-09T04:16:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2a3b2e80-bc9d-4bea-ba3e-1e0b2c296c1a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T04:10:35.000Z" + }, + "end": { + "$date": "2022-03-09T04:26:12.000Z" + }, + "events": [ + { + "uuid": "4591b07c-ebd4-48a3-bc61-8aad7b726dcf", + "start": { + "$date": "2022-03-09T04:10:35.000Z" + }, + "end": { + "$date": "2022-03-09T04:26:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", + "uuid": "8af3f744-b55e-4321-a743-5d504b4e1024", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-09T04:22:04.000Z" + }, + "end": { + "$date": "2022-03-09T05:28:27.000Z" + }, + "events": [ + { + "uuid": "7f102af3-056f-46ff-8ce1-aaa665cd23e3", + "start": { + "$date": "2022-03-09T04:22:04.000Z" + }, + "end": { + "$date": "2022-03-09T05:28:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "103be402-38c7-4b36-8032-d7c6ed1fbdc5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-09T04:23:32.000Z" + }, + "end": { + "$date": "2022-03-09T07:14:12.000Z" + }, + "events": [ + { + "uuid": "f3ad3ee8-19b8-4b48-84b2-922da03b5355", + "start": { + "$date": "2022-03-09T04:23:32.000Z" + }, + "end": { + "$date": "2022-03-09T07:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "877e38cf-4a92-4821-a393-540c3e439958", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-09T04:25:03.000Z" + }, + "end": { + "$date": "2022-03-09T05:36:12.000Z" + }, + "events": [ + { + "uuid": "8d94eb01-f6ca-4301-a2b3-0798de5457b9", + "start": { + "$date": "2022-03-09T04:25:03.000Z" + }, + "end": { + "$date": "2022-03-09T05:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "987b47e2-45e0-479e-bd4d-fc92e2965475", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T04:30:37.000Z" + }, + "end": { + "$date": "2022-03-09T05:00:55.000Z" + }, + "events": [ + { + "uuid": "40530e35-cd7f-4778-a67e-3f5af1d15912", + "start": { + "$date": "2022-03-09T04:30:37.000Z" + }, + "end": { + "$date": "2022-03-09T05:00:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "61e9f41b-95e4-4774-948e-107161ebdd8d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-09T04:33:39.000Z" + }, + "end": { + "$date": "2022-03-09T07:16:47.000Z" + }, + "events": [ + { + "uuid": "5fd43308-2b41-4d8a-a3ee-ba6816defe6d", + "start": { + "$date": "2022-03-09T04:33:39.000Z" + }, + "end": { + "$date": "2022-03-09T07:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09b7f689-dfd4-46c3-b41a-186fae3207f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T05:02:12.000Z" + }, + "end": { + "$date": "2022-03-09T06:21:16.000Z" + }, + "events": [ + { + "uuid": "1efde4db-83ac-45dd-8f4b-4f2990b71ab3", + "start": { + "$date": "2022-03-09T05:02:12.000Z" + }, + "end": { + "$date": "2022-03-09T06:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "4f798f8f-d759-4757-bae4-a8fe1dd16ff4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T05:09:05.000Z" + }, + "end": { + "$date": "2022-03-09T07:07:10.000Z" + }, + "events": [ + { + "uuid": "fc34cc53-1b08-4a4c-acee-e83628041e71", + "start": { + "$date": "2022-03-09T05:09:05.000Z" + }, + "end": { + "$date": "2022-03-09T07:07:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c2ac1f07-c12a-41d7-b0f9-22c66731f01c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-09T05:30:53.000Z" + }, + "end": { + "$date": "2022-03-09T07:09:09.000Z" + }, + "events": [ + { + "uuid": "834d5034-bfd6-44f6-bba4-9734a22e8817", + "start": { + "$date": "2022-03-09T05:30:53.000Z" + }, + "end": { + "$date": "2022-03-09T07:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "aff8138b-31a3-49d0-bde9-906ba3d654d2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-09T05:38:07.000Z" + }, + "end": { + "$date": "2022-03-09T05:46:14.000Z" + }, + "events": [ + { + "uuid": "3acdef35-4b75-4293-bd13-1ed05c28b155", + "start": { + "$date": "2022-03-09T05:38:07.000Z" + }, + "end": { + "$date": "2022-03-09T05:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d292ef3-308a-4b26-b486-52a39813e743", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-09T05:50:12.000Z" + }, + "end": { + "$date": "2022-03-09T06:19:38.000Z" + }, + "events": [ + { + "uuid": "8df46290-c970-496b-b4a8-eb5bf8b5b78a", + "start": { + "$date": "2022-03-09T05:50:12.000Z" + }, + "end": { + "$date": "2022-03-09T06:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ec8201af-7e5a-48d7-98aa-79443231fc15", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-09T05:51:27.000Z" + }, + "end": { + "$date": "2022-03-09T05:54:13.000Z" + }, + "events": [ + { + "uuid": "223694a9-22ea-4c2a-b946-22dc27b0499a", + "start": { + "$date": "2022-03-09T05:51:27.000Z" + }, + "end": { + "$date": "2022-03-09T05:54:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0fba3574-4fa2-4b73-9438-48f428c75cb8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-09T05:54:47.000Z" + }, + "end": { + "$date": "2022-03-09T06:24:55.000Z" + }, + "events": [ + { + "uuid": "8dbb90c5-d82b-4103-817c-85650784c17d", + "start": { + "$date": "2022-03-09T05:54:47.000Z" + }, + "end": { + "$date": "2022-03-09T06:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "738b530e-c061-45ca-90be-28d03aa4266e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T05:56:27.000Z" + }, + "end": { + "$date": "2022-03-09T06:18:02.000Z" + }, + "events": [ + { + "uuid": "6d0b1497-f771-435b-8bbc-1dfd93306cc1", + "start": { + "$date": "2022-03-09T05:56:27.000Z" + }, + "end": { + "$date": "2022-03-09T06:18:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04995f43-e2ca-4de4-9030-dd3bc26e6f0e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-09T06:27:04.000Z" + }, + "end": { + "$date": "2022-03-09T06:57:40.000Z" + }, + "events": [ + { + "uuid": "3b3f57f1-92d1-42aa-afe2-952db36a3a00", + "start": { + "$date": "2022-03-09T06:27:04.000Z" + }, + "end": { + "$date": "2022-03-09T06:57:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "275232f1-615b-41a6-9843-c80dcbe7aa84", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-09T06:34:12.000Z" + }, + "end": { + "$date": "2022-03-09T07:14:14.000Z" + }, + "events": [ + { + "uuid": "c26a954c-f998-439b-ba66-8faa57cddad5", + "start": { + "$date": "2022-03-09T06:34:12.000Z" + }, + "end": { + "$date": "2022-03-09T07:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b812688-cd57-4b5e-bce7-aeca822d72ea", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-09T07:22:13.000Z" + }, + "end": { + "$date": "2022-03-09T07:52:29.000Z" + }, + "events": [ + { + "uuid": "6fbe9b3b-42f9-4466-9708-9fd5b6975368", + "start": { + "$date": "2022-03-09T07:22:13.000Z" + }, + "end": { + "$date": "2022-03-09T07:52:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4828aee2-01f9-4107-b78f-6f5deba0cb22", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-09T07:35:49.000Z" + }, + "end": { + "$date": "2022-03-09T07:54:44.000Z" + }, + "events": [ + { + "uuid": "8ec9e7cf-1d11-4794-8fee-a3c1d39fdfd2", + "start": { + "$date": "2022-03-09T07:35:49.000Z" + }, + "end": { + "$date": "2022-03-09T07:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "56902e0c-91d2-4078-8482-411937c570a0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T15:31:19.000Z" + }, + "end": { + "$date": "2022-03-09T16:28:41.000Z" + }, + "events": [ + { + "uuid": "1ed31ba1-b0a6-4f95-a17b-7adf14baf69c", + "start": { + "$date": "2022-03-09T15:31:19.000Z" + }, + "end": { + "$date": "2022-03-09T16:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "26752c08-8389-459e-bae7-f2d43b5e70a0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T16:29:19.000Z" + }, + "end": { + "$date": "2022-03-09T16:55:46.000Z" + }, + "events": [ + { + "uuid": "2c457edf-531e-4b36-8ed1-492e5820a1be", + "start": { + "$date": "2022-03-09T16:29:19.000Z" + }, + "end": { + "$date": "2022-03-09T16:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e55b1853-234a-471f-8585-94fce4f0656b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-09T16:29:45.000Z" + }, + "end": { + "$date": "2022-03-09T16:44:26.000Z" + }, + "events": [ + { + "uuid": "511bb0a1-9191-4206-9b1e-61fea234e788", + "start": { + "$date": "2022-03-09T16:29:45.000Z" + }, + "end": { + "$date": "2022-03-09T16:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "425068c3-4a99-430a-800d-457895a15744", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-09T17:08:13.000Z" + }, + "end": { + "$date": "2022-03-09T17:25:28.000Z" + }, + "events": [ + { + "uuid": "ebfb874e-5f8a-4259-91c1-b4987b75c72e", + "start": { + "$date": "2022-03-09T17:08:13.000Z" + }, + "end": { + "$date": "2022-03-09T17:25:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "5b25d084-bb26-455c-bf9c-949a415eb141", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-03-09T17:13:19.000Z" + }, + "end": { + "$date": "2022-03-09T18:18:35.000Z" + }, + "events": [ + { + "uuid": "578a7e47-33b7-4660-a01d-dae19981e613", + "start": { + "$date": "2022-03-09T17:13:19.000Z" + }, + "end": { + "$date": "2022-03-09T18:18:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c52187ee-b53c-4943-b4c9-94294d6b822d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-09T17:54:33.000Z" + }, + "end": { + "$date": "2022-03-09T18:15:30.000Z" + }, + "events": [ + { + "uuid": "c7d8708a-fb78-40ca-89a6-3bc82126ba1a", + "start": { + "$date": "2022-03-09T17:54:33.000Z" + }, + "end": { + "$date": "2022-03-09T18:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ad2b5735-2b0f-40e9-bf5f-71fbb729cb68", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T18:12:50.000Z" + }, + "end": { + "$date": "2022-03-09T18:24:02.000Z" + }, + "events": [ + { + "uuid": "47342531-9d83-4e7a-8225-7a35aa14100d", + "start": { + "$date": "2022-03-09T18:12:50.000Z" + }, + "end": { + "$date": "2022-03-09T18:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee48cf4d-1d35-4f21-8105-ce26c35d5a14", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T20:19:20.000Z" + }, + "end": { + "$date": "2022-03-09T20:37:27.000Z" + }, + "events": [ + { + "uuid": "358d9a49-a628-49d0-854a-ad5fb89a7719", + "start": { + "$date": "2022-03-09T20:19:20.000Z" + }, + "end": { + "$date": "2022-03-09T20:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1c9e416c-f334-4315-8f3b-7037be9e1cee", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-09T21:03:06.000Z" + }, + "end": { + "$date": "2022-03-09T23:00:27.000Z" + }, + "events": [ + { + "uuid": "2ed5527e-452c-4913-8b0f-b3d52a7931eb", + "start": { + "$date": "2022-03-09T21:03:06.000Z" + }, + "end": { + "$date": "2022-03-09T23:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8aca16ee-ba68-4346-838b-5bca28bab763", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T22:01:58.000Z" + }, + "end": { + "$date": "2022-03-09T22:02:03.000Z" + }, + "events": [ + { + "uuid": "e94deef4-016a-4d72-a01f-a6c206b1e871", + "start": { + "$date": "2022-03-09T22:01:58.000Z" + }, + "end": { + "$date": "2022-03-09T22:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "53b47067-a2f0-41c0-8482-153e7fade53c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T22:02:06.000Z" + }, + "end": { + "$date": "2022-03-09T22:03:10.000Z" + }, + "events": [ + { + "uuid": "11bb0419-75f2-4cb4-a9a0-850b6d0e95e2", + "start": { + "$date": "2022-03-09T22:02:06.000Z" + }, + "end": { + "$date": "2022-03-09T22:03:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b35e128d-2abc-48b1-a044-a4c96ab4cfeb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T22:04:55.000Z" + }, + "end": { + "$date": "2022-03-09T22:23:51.000Z" + }, + "events": [ + { + "uuid": "f9526698-daca-484f-963f-b5ded25b8e44", + "start": { + "$date": "2022-03-09T22:04:55.000Z" + }, + "end": { + "$date": "2022-03-09T22:23:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c46b0025-2707-43e9-9feb-a2899d1dadf1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-09T22:27:56.000Z" + }, + "end": { + "$date": "2022-03-09T22:44:43.000Z" + }, + "events": [ + { + "uuid": "8b77c248-9a05-4509-a338-36c287884e00", + "start": { + "$date": "2022-03-09T22:27:56.000Z" + }, + "end": { + "$date": "2022-03-09T22:44:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "83a625f0-95f4-4872-bafd-92ff11bbe0a1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-09T23:00:49.000Z" + }, + "end": { + "$date": "2022-03-10T00:02:04.000Z" + }, + "events": [ + { + "uuid": "f431eadd-02d5-47dc-8768-d0a5bca3b355", + "start": { + "$date": "2022-03-09T23:00:49.000Z" + }, + "end": { + "$date": "2022-03-10T00:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "727f36a7-05cb-477a-99dd-7bfad25d7a27", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-09T23:08:30.000Z" + }, + "end": { + "$date": "2022-03-09T23:41:14.000Z" + }, + "events": [ + { + "uuid": "e170d3e9-ebf4-4466-a0cb-d0181bfe867c", + "start": { + "$date": "2022-03-09T23:08:30.000Z" + }, + "end": { + "$date": "2022-03-09T23:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5d7ae71e-6e33-4afc-8c5e-2bb809fcc9ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T23:29:59.000Z" + }, + "end": { + "$date": "2022-03-09T23:32:34.000Z" + }, + "events": [ + { + "uuid": "9d8c378f-2afd-4005-aa0c-6d1e89681e77", + "start": { + "$date": "2022-03-09T23:29:59.000Z" + }, + "end": { + "$date": "2022-03-09T23:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8df3a027-4e0f-44a3-be8b-873d9ed5301f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-09T23:35:39.000Z" + }, + "end": { + "$date": "2022-03-10T01:18:52.000Z" + }, + "events": [ + { + "uuid": "ec12c892-70dd-4d10-b6f0-8867ddd6a923", + "start": { + "$date": "2022-03-09T23:35:39.000Z" + }, + "end": { + "$date": "2022-03-10T01:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2da8a12e-8e83-43e8-92df-003219dcbc18", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-10T00:37:39.000Z" + }, + "end": { + "$date": "2022-03-10T04:07:15.000Z" + }, + "events": [ + { + "uuid": "09db631b-e56f-4483-904d-94c0fea76cea", + "start": { + "$date": "2022-03-10T00:37:39.000Z" + }, + "end": { + "$date": "2022-03-10T03:19:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8d2e6cb7-61da-4a17-9a81-68794e744042", + "start": { + "$date": "2022-03-10T03:19:39.000Z" + }, + "end": { + "$date": "2022-03-10T03:33:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "181a8b1f-f709-4b7f-b8bb-e64702859372", + "start": { + "$date": "2022-03-10T03:33:39.000Z" + }, + "end": { + "$date": "2022-03-10T03:35:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f90be1de-55c1-480c-a709-49f930afb0d0", + "start": { + "$date": "2022-03-10T03:35:39.000Z" + }, + "end": { + "$date": "2022-03-10T04:07:15.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6e8e8ed2-4458-4c07-9aac-d69cf3957321", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-10T00:38:58.000Z" + }, + "end": { + "$date": "2022-03-10T01:20:15.000Z" + }, + "events": [ + { + "uuid": "7dd50bcb-b903-4a06-9add-f9f830d2b60f", + "start": { + "$date": "2022-03-10T00:38:58.000Z" + }, + "end": { + "$date": "2022-03-10T01:20:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "202d1333-d001-411e-9138-a90cecb6e720", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-10T00:45:49.000Z" + }, + "end": { + "$date": "2022-03-10T00:50:54.000Z" + }, + "events": [ + { + "uuid": "4886e83a-6f5d-4510-ad2f-882f7fb0ebbc", + "start": { + "$date": "2022-03-10T00:45:49.000Z" + }, + "end": { + "$date": "2022-03-10T00:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "49a96d3d-d020-43d3-8664-cd437bb5516e", + "uuid": "88d01c37-b9b9-4c86-b090-be2428ebe68f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-10T00:52:50.000Z" + }, + "end": { + "$date": "2022-03-10T01:10:00.000Z" + }, + "events": [ + { + "uuid": "c6aa2d79-3737-4fc6-b8ca-533b71974646", + "start": { + "$date": "2022-03-10T00:52:50.000Z" + }, + "end": { + "$date": "2022-03-10T01:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "49a96d3d-d020-43d3-8664-cd437bb5516e", + "uuid": "2ff4c58d-12d0-41ed-a232-9e794ed1e762", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-10T00:56:05.000Z" + }, + "end": { + "$date": "2022-03-10T01:09:45.000Z" + }, + "events": [ + { + "uuid": "2f192701-4ba5-4577-a950-d4435792bf7a", + "start": { + "$date": "2022-03-10T00:56:05.000Z" + }, + "end": { + "$date": "2022-03-10T01:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ff9d7e70-1b3a-4139-9a77-034bd5427e15", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-10T00:57:47.000Z" + }, + "end": { + "$date": "2022-03-10T02:16:18.000Z" + }, + "events": [ + { + "uuid": "e5ddddb1-e31d-4738-b673-543b28457f6b", + "start": { + "$date": "2022-03-10T00:57:47.000Z" + }, + "end": { + "$date": "2022-03-10T02:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "98bf1df3-fcdc-45c0-90a7-acc5e1717137", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-10T01:11:10.000Z" + }, + "end": { + "$date": "2022-03-10T01:29:55.000Z" + }, + "events": [ + { + "uuid": "96e8bbff-30fa-4683-b232-0882f60de237", + "start": { + "$date": "2022-03-10T01:11:10.000Z" + }, + "end": { + "$date": "2022-03-10T01:29:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "7798bc02-5d6c-4a8c-af83-ba745a21550c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-10T01:15:08.000Z" + }, + "end": { + "$date": "2022-03-10T01:35:07.000Z" + }, + "events": [ + { + "uuid": "b57fb47a-e06d-4d56-b859-ee579cede963", + "start": { + "$date": "2022-03-10T01:15:08.000Z" + }, + "end": { + "$date": "2022-03-10T01:35:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "86f2eac7-2028-4498-b4c5-2be33bf436cc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-10T01:36:52.000Z" + }, + "end": { + "$date": "2022-03-10T01:45:45.000Z" + }, + "events": [ + { + "uuid": "6cd70555-41ae-4f2d-922f-aa11e33e8b6d", + "start": { + "$date": "2022-03-10T01:36:52.000Z" + }, + "end": { + "$date": "2022-03-10T01:45:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3a44933f-7f5c-4aa5-94c5-966eb3de1b65", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-10T01:46:50.000Z" + }, + "end": { + "$date": "2022-03-10T01:53:31.000Z" + }, + "events": [ + { + "uuid": "e3a53421-1df9-44fb-9a56-0e891d7dbe82", + "start": { + "$date": "2022-03-10T01:46:50.000Z" + }, + "end": { + "$date": "2022-03-10T01:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "07a86b71-2993-4917-b4f2-b51e878b43c2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-10T01:57:12.000Z" + }, + "end": { + "$date": "2022-03-10T02:35:16.000Z" + }, + "events": [ + { + "uuid": "fc748386-2c2d-41c9-ad98-726d13538bcc", + "start": { + "$date": "2022-03-10T01:57:12.000Z" + }, + "end": { + "$date": "2022-03-10T02:35:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "958ec16a-9eb9-4835-ac54-ab7c339eb350", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-10T01:58:03.000Z" + }, + "end": { + "$date": "2022-03-10T02:09:50.000Z" + }, + "events": [ + { + "uuid": "48577e98-3905-4d12-a039-5b4288f9df22", + "start": { + "$date": "2022-03-10T01:58:03.000Z" + }, + "end": { + "$date": "2022-03-10T02:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c1839ef9-049f-4a0b-b043-2f6ffb60eeb9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-10T02:34:51.000Z" + }, + "end": { + "$date": "2022-03-10T06:21:30.000Z" + }, + "events": [ + { + "uuid": "7b9c43b7-8f7c-4fed-a016-beee6a0cbb5a", + "start": { + "$date": "2022-03-10T02:34:51.000Z" + }, + "end": { + "$date": "2022-03-10T06:21:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "77e715e6-4621-4617-842f-73ea1f9ade9f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T03:00:03.000Z" + }, + "end": { + "$date": "2022-03-10T04:53:18.000Z" + }, + "events": [ + { + "uuid": "eb626e04-bc1e-43b7-9fff-fb9fd48bf25c", + "start": { + "$date": "2022-03-10T03:00:03.000Z" + }, + "end": { + "$date": "2022-03-10T04:53:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c40fe559-bd88-4486-baff-8e124f219369", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-10T03:19:43.000Z" + }, + "end": { + "$date": "2022-03-10T03:31:50.000Z" + }, + "events": [ + { + "uuid": "8040f7c7-927d-4f06-a9a8-a893681b9147", + "start": { + "$date": "2022-03-10T03:19:43.000Z" + }, + "end": { + "$date": "2022-03-10T03:31:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c8a20055-94db-4718-af54-2a09b8a3e6b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-10T03:38:30.000Z" + }, + "end": { + "$date": "2022-03-10T03:40:20.000Z" + }, + "events": [ + { + "uuid": "f690ec36-04db-49d3-bfe5-c51a017527f2", + "start": { + "$date": "2022-03-10T03:38:30.000Z" + }, + "end": { + "$date": "2022-03-10T03:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbdf2b49-753b-44b3-a90b-73c72f7842af", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-10T05:16:51.000Z" + }, + "end": { + "$date": "2022-03-10T05:51:36.000Z" + }, + "events": [ + { + "uuid": "dac776d8-a72a-48d5-9c71-f290f0b7c4bf", + "start": { + "$date": "2022-03-10T05:16:51.000Z" + }, + "end": { + "$date": "2022-03-10T05:51:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "763f6bc0-b3de-42ab-a3a8-6762eea31771", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-10T05:29:24.000Z" + }, + "end": { + "$date": "2022-03-10T05:50:25.000Z" + }, + "events": [ + { + "uuid": "9c9b14e8-a549-4e09-b8dc-81e333855fad", + "start": { + "$date": "2022-03-10T05:29:24.000Z" + }, + "end": { + "$date": "2022-03-10T05:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4fc9e536-6f95-4a47-9d96-dfd272b5f6d7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T05:54:00.000Z" + }, + "end": { + "$date": "2022-03-10T06:13:06.000Z" + }, + "events": [ + { + "uuid": "28796ae1-126a-458f-b2b1-4ea66ad150c6", + "start": { + "$date": "2022-03-10T05:54:00.000Z" + }, + "end": { + "$date": "2022-03-10T06:13:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5be01294-14f1-4147-9adc-3b7a1f1d6651", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T06:18:11.000Z" + }, + "end": { + "$date": "2022-03-10T06:30:46.000Z" + }, + "events": [ + { + "uuid": "3da2d8bf-8ba0-486c-96dd-79299e25d488", + "start": { + "$date": "2022-03-10T06:18:11.000Z" + }, + "end": { + "$date": "2022-03-10T06:30:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09e2e306-65b3-41d2-ae3e-d55746f8d90f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-10T06:17:28.000Z" + }, + "end": { + "$date": "2022-03-10T06:20:33.000Z" + }, + "events": [ + { + "uuid": "a7534c53-0f74-42b5-8199-4f7da610c007", + "start": { + "$date": "2022-03-10T06:17:28.000Z" + }, + "end": { + "$date": "2022-03-10T06:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b69ce10-7e06-458b-ad71-10c86826388d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T06:40:47.000Z" + }, + "end": { + "$date": "2022-03-10T07:04:43.000Z" + }, + "events": [ + { + "uuid": "8c9b2128-fab2-4f92-b911-63191f3269dd", + "start": { + "$date": "2022-03-10T06:40:47.000Z" + }, + "end": { + "$date": "2022-03-10T07:04:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25d1b927-b770-4221-acc6-1902e37b95a0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T07:12:49.000Z" + }, + "end": { + "$date": "2022-03-10T07:33:20.000Z" + }, + "events": [ + { + "uuid": "5677ba62-186d-4da0-b250-11581f43fc2b", + "start": { + "$date": "2022-03-10T07:12:49.000Z" + }, + "end": { + "$date": "2022-03-10T07:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "771fc9ef-540f-4055-a7fb-415071ebc08b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T07:39:35.000Z" + }, + "end": { + "$date": "2022-03-10T08:02:32.000Z" + }, + "events": [ + { + "uuid": "fb5a8072-edb5-4b3a-821f-24ee9f6dd636", + "start": { + "$date": "2022-03-10T07:39:35.000Z" + }, + "end": { + "$date": "2022-03-10T08:02:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "00ec3f89-4cf5-4431-9f01-c91985a6520b", + "uuid": "49d0895a-00ae-4312-8f0a-3cae28a40536", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-10T07:47:30.000Z" + }, + "end": { + "$date": "2022-03-10T11:40:23.000Z" + }, + "events": [ + { + "uuid": "89008c5c-fd90-4f87-8e98-dc822fa3c0f5", + "start": { + "$date": "2022-03-10T07:47:30.000Z" + }, + "end": { + "$date": "2022-03-10T11:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "af609a39-25d9-4152-af0f-33f801c1d565", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-10T08:07:11.000Z" + }, + "end": { + "$date": "2022-03-10T08:30:22.000Z" + }, + "events": [ + { + "uuid": "5fc70be9-8854-4a3d-999c-4e41594962bb", + "start": { + "$date": "2022-03-10T08:07:11.000Z" + }, + "end": { + "$date": "2022-03-10T08:30:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5b284945-5429-4226-9de3-1e7522eeec9e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-08T04:55:20.000Z" + }, + "end": { + "$date": "2022-06-08T05:37:17.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-06-08T04:55:20.000Z" + }, + "end": { + "$date": "2022-06-08T05:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "28257cbb-284f-440b-bd9f-06fc3ec367c2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-10T18:05:42.000Z" + }, + "end": { + "$date": "2022-03-10T19:00:49.000Z" + }, + "events": [ + { + "uuid": "a0bd8595-ca33-4a62-95a2-a0406d7c883f", + "start": { + "$date": "2022-03-10T18:05:42.000Z" + }, + "end": { + "$date": "2022-03-10T19:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "717176b6-aec6-415f-96c7-ccc48e6ad7b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-10T22:03:13.000Z" + }, + "end": { + "$date": "2022-03-10T22:32:34.000Z" + }, + "events": [ + { + "uuid": "9907885d-f85d-4bcd-aa08-f888ff87ab78", + "start": { + "$date": "2022-03-10T22:03:13.000Z" + }, + "end": { + "$date": "2022-03-10T22:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "caf5c6b5-6f60-4f82-9759-2ac5e9ecfdd2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-10T22:35:48.000Z" + }, + "end": { + "$date": "2022-03-10T22:37:53.000Z" + }, + "events": [ + { + "uuid": "5d0edbd3-5439-4e0b-8c31-514498202ebd", + "start": { + "$date": "2022-03-10T22:35:48.000Z" + }, + "end": { + "$date": "2022-03-10T22:37:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "b2347c9b-004b-4fbe-ac48-f31fe549ff9f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-10T22:38:28.000Z" + }, + "end": { + "$date": "2022-03-10T22:42:43.000Z" + }, + "events": [ + { + "uuid": "61c2f637-7b09-4981-8374-4acc60ce0984", + "start": { + "$date": "2022-03-10T22:38:28.000Z" + }, + "end": { + "$date": "2022-03-10T22:42:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44204463-eba4-4e31-b9c6-2748db291f27", + "uuid": "1db43d00-d8f4-4c78-a29e-e6b5a80b1e98", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-10T22:43:58.000Z" + }, + "end": { + "$date": "2022-03-10T23:52:28.000Z" + }, + "events": [ + { + "uuid": "750a3b64-fa1f-4d72-b267-92b574f9a748", + "start": { + "$date": "2022-03-10T22:43:58.000Z" + }, + "end": { + "$date": "2022-03-10T23:29:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa831288-549d-43de-a1dd-cbfbb7e2e5ee", + "start": { + "$date": "2022-03-10T23:29:58.000Z" + }, + "end": { + "$date": "2022-03-10T23:34:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92200ed0-141e-4f04-9792-66e95ea23664", + "start": { + "$date": "2022-03-10T23:34:58.000Z" + }, + "end": { + "$date": "2022-03-10T23:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a71990b1-e396-4418-9b91-98d794b59fb4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-10T23:01:51.000Z" + }, + "end": { + "$date": "2022-03-10T23:56:15.000Z" + }, + "events": [ + { + "uuid": "5ad039a4-4f27-4773-8b8a-1e2dbdb9fa1d", + "start": { + "$date": "2022-03-10T23:01:51.000Z" + }, + "end": { + "$date": "2022-03-10T23:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", + "uuid": "ad93d465-19d3-4f3b-bc2c-224168c894b1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T00:06:54.000Z" + }, + "end": { + "$date": "2022-03-11T00:49:05.000Z" + }, + "events": [ + { + "uuid": "29c72c3f-460c-42d5-a05d-533673aca117", + "start": { + "$date": "2022-03-11T00:06:54.000Z" + }, + "end": { + "$date": "2022-03-11T00:49:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "245ac76c-b032-4778-a165-90bc994ad8c9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T01:00:26.000Z" + }, + "end": { + "$date": "2022-03-11T01:56:38.000Z" + }, + "events": [ + { + "uuid": "1032633b-8f63-4773-8690-db94dd40fdff", + "start": { + "$date": "2022-03-11T01:00:26.000Z" + }, + "end": { + "$date": "2022-03-11T01:56:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "9e9bc435-011e-4efc-88ac-47089e9eab8e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-11T01:22:55.000Z" + }, + "end": { + "$date": "2022-03-11T02:54:43.000Z" + }, + "events": [ + { + "uuid": "4b436e81-bcc2-4bcf-88a8-cd701b4ed012", + "start": { + "$date": "2022-03-11T01:22:55.000Z" + }, + "end": { + "$date": "2022-03-11T02:54:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "63f85319-cbd8-43c2-9514-2eac87983260", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-11T01:27:03.000Z" + }, + "end": { + "$date": "2022-03-11T01:41:03.000Z" + }, + "events": [ + { + "uuid": "d6e2156a-9ef9-4aa4-b690-0ea1a4dab5e6", + "start": { + "$date": "2022-03-11T01:27:03.000Z" + }, + "end": { + "$date": "2022-03-11T01:41:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f1eede85-d588-4d34-a642-daf80558a5ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-10T23:56:10.000Z" + }, + "end": { + "$date": "2022-03-11T01:57:00.000Z" + }, + "events": [ + { + "uuid": "3ab41be8-36f4-4e97-8829-97f57391416f", + "start": { + "$date": "2022-03-10T23:56:10.000Z" + }, + "end": { + "$date": "2022-03-11T01:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "2cba59dd-43a6-4ee5-9339-d40484720714", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T01:57:27.000Z" + }, + "end": { + "$date": "2022-03-11T02:06:08.000Z" + }, + "events": [ + { + "uuid": "95b9a3fe-e9d0-44b7-bb03-a149420712a0", + "start": { + "$date": "2022-03-11T01:57:27.000Z" + }, + "end": { + "$date": "2022-03-11T02:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "765c5afb-ea71-4ffe-bed8-1011ef983c82", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-11T02:11:21.000Z" + }, + "end": { + "$date": "2022-03-11T04:09:25.000Z" + }, + "events": [ + { + "uuid": "dd4ab648-4ec9-4655-a6d5-f5fea3067790", + "start": { + "$date": "2022-03-11T02:11:21.000Z" + }, + "end": { + "$date": "2022-03-11T02:28:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4381e513-35be-49eb-9c0d-b88945c781c4", + "start": { + "$date": "2022-03-11T02:28:21.000Z" + }, + "end": { + "$date": "2022-03-11T02:30:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e1cf74bd-7be1-4c98-b470-59e132a89ebb", + "start": { + "$date": "2022-03-11T02:30:21.000Z" + }, + "end": { + "$date": "2022-03-11T04:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "33e4669d-ffb6-46aa-b0ef-19b8012dae44", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T02:48:02.000Z" + }, + "end": { + "$date": "2022-03-11T02:52:17.000Z" + }, + "events": [ + { + "uuid": "739c0e63-f6d0-4b4a-90f6-7f0f9a7d2e27", + "start": { + "$date": "2022-03-11T02:48:02.000Z" + }, + "end": { + "$date": "2022-03-11T02:52:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "e00351c7-a768-443a-9da2-bb86ec45b9ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T02:52:22.000Z" + }, + "end": { + "$date": "2022-03-11T03:03:32.000Z" + }, + "events": [ + { + "uuid": "3371faa5-0804-48e9-8ffb-c07f4585c97b", + "start": { + "$date": "2022-03-11T02:52:22.000Z" + }, + "end": { + "$date": "2022-03-11T03:03:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "49ec3343-f8dd-4814-a00f-58b6c9c482ef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T03:04:02.000Z" + }, + "end": { + "$date": "2022-03-11T04:02:28.000Z" + }, + "events": [ + { + "uuid": "f77ae985-a8d7-4329-9e12-472be566208e", + "start": { + "$date": "2022-03-11T03:04:02.000Z" + }, + "end": { + "$date": "2022-03-11T04:02:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ab149fc2-ff84-4d62-97a8-0c082b8344ef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-11T03:10:51.000Z" + }, + "end": { + "$date": "2022-03-11T07:39:15.000Z" + }, + "events": [ + { + "uuid": "eeda6528-29b5-454a-91dc-30510ba3f670", + "start": { + "$date": "2022-03-11T03:10:51.000Z" + }, + "end": { + "$date": "2022-03-11T07:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "59fa8bea-f444-4140-9a07-b92384aad8ee", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-11T03:17:43.000Z" + }, + "end": { + "$date": "2022-03-11T04:12:57.000Z" + }, + "events": [ + { + "uuid": "7811d065-1d66-464f-be17-d5fb4aadda04", + "start": { + "$date": "2022-03-11T03:17:43.000Z" + }, + "end": { + "$date": "2022-03-11T04:12:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "682f5c12-1266-4802-887e-635db4a6228c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T04:02:41.000Z" + }, + "end": { + "$date": "2022-03-11T04:33:47.000Z" + }, + "events": [ + { + "uuid": "da695eb5-8358-4700-9924-c1afe59c9dc4", + "start": { + "$date": "2022-03-11T04:02:41.000Z" + }, + "end": { + "$date": "2022-03-11T04:33:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", + "uuid": "45e37060-6cab-4796-be70-e1e6d710d8a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-11T04:08:15.000Z" + }, + "end": { + "$date": "2022-03-11T04:31:36.000Z" + }, + "events": [ + { + "uuid": "0eced19b-9a6a-441d-b291-22aee06f8652", + "start": { + "$date": "2022-03-11T04:08:15.000Z" + }, + "end": { + "$date": "2022-03-11T04:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "4321ecc8-b8e1-4184-9eab-2cafaca7d525", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T04:08:23.000Z" + }, + "end": { + "$date": "2022-03-11T04:15:08.000Z" + }, + "events": [ + { + "uuid": "b1769b90-ae4e-4d4c-be04-c035f2501621", + "start": { + "$date": "2022-03-11T04:08:23.000Z" + }, + "end": { + "$date": "2022-03-11T04:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "802e5141-f2cf-415a-82b9-bba21642806e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T04:20:33.000Z" + }, + "end": { + "$date": "2022-03-11T04:26:54.000Z" + }, + "events": [ + { + "uuid": "a268d5d2-147f-463b-b6c7-036b1c6a197f", + "start": { + "$date": "2022-03-11T04:20:33.000Z" + }, + "end": { + "$date": "2022-03-11T04:26:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0092665b-64e9-4f20-91eb-cce12af4a1ab", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-11T04:24:23.000Z" + }, + "end": { + "$date": "2022-03-11T07:03:29.000Z" + }, + "events": [ + { + "uuid": "00f319d1-5621-4158-bdc2-9b6bba559937", + "start": { + "$date": "2022-03-11T04:24:23.000Z" + }, + "end": { + "$date": "2022-03-11T07:03:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "607039b5-25e3-4cef-9091-d632d6b9243c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-11T04:25:03.000Z" + }, + "end": { + "$date": "2022-03-11T06:14:58.000Z" + }, + "events": [ + { + "uuid": "0eea5e48-7961-4f77-80f1-1460abd756f8", + "start": { + "$date": "2022-03-11T04:25:03.000Z" + }, + "end": { + "$date": "2022-03-11T06:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cf3fba86-c443-43a2-bf77-4331abb245c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T04:27:24.000Z" + }, + "end": { + "$date": "2022-03-11T05:37:43.000Z" + }, + "events": [ + { + "uuid": "6ac4fbd7-5da9-4cb8-9130-cc4c14bc284b", + "start": { + "$date": "2022-03-11T04:27:24.000Z" + }, + "end": { + "$date": "2022-03-11T05:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1cb9557c-cc47-4aa5-ad36-ea0a74aed977", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T04:40:22.000Z" + }, + "end": { + "$date": "2022-03-11T05:05:33.000Z" + }, + "events": [ + { + "uuid": "4f0ea39a-49f1-41b6-8163-81744bbaed55", + "start": { + "$date": "2022-03-11T04:40:22.000Z" + }, + "end": { + "$date": "2022-03-11T05:05:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "348e6bd7-b844-4230-88e7-fde7dfd694d0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-11T04:36:25.000Z" + }, + "end": { + "$date": "2022-03-11T06:39:16.000Z" + }, + "events": [ + { + "uuid": "c2ad754d-006f-4913-9d60-18496a157186", + "start": { + "$date": "2022-03-11T04:36:25.000Z" + }, + "end": { + "$date": "2022-03-11T06:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d97aaaad-efb1-4f27-a98c-5e7b1295f68b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-11T04:43:11.000Z" + }, + "end": { + "$date": "2022-03-11T07:06:05.000Z" + }, + "events": [ + { + "uuid": "6086bc64-f3fb-4b3c-b144-e1a31e006a45", + "start": { + "$date": "2022-03-11T04:43:11.000Z" + }, + "end": { + "$date": "2022-03-11T07:06:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "addbd8ab-36d2-4e1a-a8a0-f0004d2be8d8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-11T04:44:47.000Z" + }, + "end": { + "$date": "2022-03-11T07:04:27.000Z" + }, + "events": [ + { + "uuid": "b1322142-6d29-49b5-9bce-d0dc81e346c6", + "start": { + "$date": "2022-03-11T04:44:47.000Z" + }, + "end": { + "$date": "2022-03-11T07:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0012f400-07d4-4e49-9eaf-cdca66a55caf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-11T04:51:37.000Z" + }, + "end": { + "$date": "2022-03-11T06:15:20.000Z" + }, + "events": [ + { + "uuid": "5b8e5c5f-3e2a-4949-9cfa-09efd8a3ba6f", + "start": { + "$date": "2022-03-11T04:51:37.000Z" + }, + "end": { + "$date": "2022-03-11T06:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a329f86f-9e1f-4b37-992d-e2dbbfa1a534", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-11T04:57:02.000Z" + }, + "end": { + "$date": "2022-03-11T04:58:57.000Z" + }, + "events": [ + { + "uuid": "0e26e541-7c10-4e32-957c-98377ffdde5e", + "start": { + "$date": "2022-03-11T04:57:02.000Z" + }, + "end": { + "$date": "2022-03-11T04:58:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14061919-5655-496a-a69f-8b17580fe770", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T05:09:43.000Z" + }, + "end": { + "$date": "2022-03-11T05:32:24.000Z" + }, + "events": [ + { + "uuid": "0c9f4042-348e-46c4-b0b4-3e57ae6c24b3", + "start": { + "$date": "2022-03-11T05:09:43.000Z" + }, + "end": { + "$date": "2022-03-11T05:32:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5376efca-ffda-432b-8cd7-c5bd5a8c8f3c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-11T05:11:14.000Z" + }, + "end": { + "$date": "2022-03-11T05:13:44.000Z" + }, + "events": [ + { + "uuid": "9e47a1b5-869e-4dee-947c-e5833fe23698", + "start": { + "$date": "2022-03-11T05:11:14.000Z" + }, + "end": { + "$date": "2022-03-11T05:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "a8691e9e-f263-487f-9be9-3068ac4581f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-11T05:23:46.000Z" + }, + "end": { + "$date": "2022-03-11T05:53:06.000Z" + }, + "events": [ + { + "uuid": "6c4abd4c-022e-4db7-a802-95a6bb8537ca", + "start": { + "$date": "2022-03-11T05:23:46.000Z" + }, + "end": { + "$date": "2022-03-11T05:33:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1bd9a8dc-9ec3-4632-9f4d-1c8216e84314", + "start": { + "$date": "2022-03-11T05:33:46.000Z" + }, + "end": { + "$date": "2022-03-11T05:50:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "941a7249-9e2c-4e91-aa1a-bf6d962d7e6c", + "start": { + "$date": "2022-03-11T05:50:46.000Z" + }, + "end": { + "$date": "2022-03-11T05:53:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d149d6a-efcd-4c3d-bb8e-fc1d9b704ec6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T05:42:10.000Z" + }, + "end": { + "$date": "2022-03-11T06:29:36.000Z" + }, + "events": [ + { + "uuid": "a8294e45-80d1-4837-bcb9-41189f682b98", + "start": { + "$date": "2022-03-11T05:42:10.000Z" + }, + "end": { + "$date": "2022-03-11T06:29:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3b43288-a5b3-4e2b-95f3-f285eadb37d6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T06:38:07.000Z" + }, + "end": { + "$date": "2022-03-11T07:21:48.000Z" + }, + "events": [ + { + "uuid": "64df4cec-9f6c-4a03-a77f-94c4b1bce3fd", + "start": { + "$date": "2022-03-11T06:38:07.000Z" + }, + "end": { + "$date": "2022-03-11T07:21:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcc6249a-c717-4050-9e8b-d4f40606e43c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T07:26:13.000Z" + }, + "end": { + "$date": "2022-03-11T07:50:54.000Z" + }, + "events": [ + { + "uuid": "54650865-1f96-4a08-aa4a-0d9b36fe6f5b", + "start": { + "$date": "2022-03-11T07:26:13.000Z" + }, + "end": { + "$date": "2022-03-11T07:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "947a1a92-3dc8-4613-a371-30f58b5a836b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-11T08:17:53.000Z" + }, + "end": { + "$date": "2022-03-11T08:47:39.000Z" + }, + "events": [ + { + "uuid": "93ea3aac-bbac-48bd-b84e-19f2aff358e0", + "start": { + "$date": "2022-03-11T08:17:53.000Z" + }, + "end": { + "$date": "2022-03-11T08:47:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "77366eac-97f3-49a7-a148-3090da1a0db0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-11T08:53:07.000Z" + }, + "end": { + "$date": "2022-03-11T09:16:42.000Z" + }, + "events": [ + { + "uuid": "db1dc6ee-0274-4601-8963-c76045563d8b", + "start": { + "$date": "2022-03-11T08:53:07.000Z" + }, + "end": { + "$date": "2022-03-11T09:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5cdc5d5c-899d-4196-8227-c762ce5a19a4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-11T16:04:25.000Z" + }, + "end": { + "$date": "2022-03-11T17:25:53.000Z" + }, + "events": [ + { + "uuid": "535e9455-7f16-47f9-ae0c-b09afee85a63", + "start": { + "$date": "2022-03-11T16:04:25.000Z" + }, + "end": { + "$date": "2022-03-11T17:25:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "88bd433e-5d1c-4dda-b737-2d89df33ab93", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-11T20:10:04.000Z" + }, + "end": { + "$date": "2022-03-11T21:07:41.000Z" + }, + "events": [ + { + "uuid": "72fc6e74-72b1-4d2e-b9cf-c41b27d52949", + "start": { + "$date": "2022-03-11T20:10:04.000Z" + }, + "end": { + "$date": "2022-03-11T21:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dcdad86a-ccb6-4498-9194-d42d5d995ee6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-11T20:30:22.000Z" + }, + "end": { + "$date": "2022-03-11T20:32:43.000Z" + }, + "events": [ + { + "uuid": "72191859-c8ff-4eda-be5f-59796735edf2", + "start": { + "$date": "2022-03-11T20:30:22.000Z" + }, + "end": { + "$date": "2022-03-11T20:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0dd1e689-1af1-4ca4-842a-f2528f1904c5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-11T21:10:52.000Z" + }, + "end": { + "$date": "2022-03-11T21:10:59.000Z" + }, + "events": [ + { + "uuid": "882ae6d7-a210-4f11-9d83-914b3a7b5e5d", + "start": { + "$date": "2022-03-11T21:10:52.000Z" + }, + "end": { + "$date": "2022-03-11T21:10:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6fec0d9-949b-4f20-bdcf-69b8f64989ef", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-11T20:43:13.000Z" + }, + "end": { + "$date": "2022-03-11T21:00:38.000Z" + }, + "events": [ + { + "uuid": "d14bd4e6-6c1a-4e30-bf1f-97080cdb9303", + "start": { + "$date": "2022-03-11T20:43:13.000Z" + }, + "end": { + "$date": "2022-03-11T21:00:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a7375b7-2205-4553-b90e-ab2834bf9aa2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-11T21:02:04.000Z" + }, + "end": { + "$date": "2022-03-11T21:19:39.000Z" + }, + "events": [ + { + "uuid": "ed3cf9b3-b57f-4648-aaca-260cafb1b694", + "start": { + "$date": "2022-03-11T21:02:04.000Z" + }, + "end": { + "$date": "2022-03-11T21:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "496beaf9-3065-445a-a737-f9daaff5e8fc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-11T21:12:57.000Z" + }, + "end": { + "$date": "2022-03-11T21:43:56.000Z" + }, + "events": [ + { + "uuid": "57ebc1a9-201b-42f9-a885-73829907e862", + "start": { + "$date": "2022-03-11T21:12:57.000Z" + }, + "end": { + "$date": "2022-03-11T21:43:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad348789-be07-4493-b856-7ca080ce1beb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-11T21:20:45.000Z" + }, + "end": { + "$date": "2022-03-11T21:41:00.000Z" + }, + "events": [ + { + "uuid": "b1b1ea7e-0e38-4bdf-b4a3-0e9247e3bb0c", + "start": { + "$date": "2022-03-11T21:20:45.000Z" + }, + "end": { + "$date": "2022-03-11T21:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "dbf55373-31b3-471f-adcd-1cd133d79194", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-11T21:36:23.000Z" + }, + "end": { + "$date": "2022-03-11T22:46:00.000Z" + }, + "events": [ + { + "uuid": "e2957c00-5c7f-4d2a-98a5-9cfec9e925cc", + "start": { + "$date": "2022-03-11T21:36:23.000Z" + }, + "end": { + "$date": "2022-03-11T22:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "902526c7-1cc5-4794-9ae7-2575a2a79eba", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-11T21:41:46.000Z" + }, + "end": { + "$date": "2022-03-11T22:03:51.000Z" + }, + "events": [ + { + "uuid": "d348cbcc-530c-40db-a16a-d7a09d03c6ef", + "start": { + "$date": "2022-03-11T21:41:46.000Z" + }, + "end": { + "$date": "2022-03-11T22:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "a1c94ad7-a078-4198-b3ae-7d46f4003c7d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T22:09:35.000Z" + }, + "end": { + "$date": "2022-03-11T22:34:16.000Z" + }, + "events": [ + { + "uuid": "d622ea15-3b62-4791-bc47-ce8d9a68460f", + "start": { + "$date": "2022-03-11T22:09:35.000Z" + }, + "end": { + "$date": "2022-03-11T22:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "19ac0036-2c7a-4483-b720-badd753d8a2f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-11T22:15:13.000Z" + }, + "end": { + "$date": "2022-03-12T03:10:12.000Z" + }, + "events": [ + { + "uuid": "52b03461-a44c-4717-bcf4-73804cf07f34", + "start": { + "$date": "2022-03-11T22:15:13.000Z" + }, + "end": { + "$date": "2022-03-11T23:05:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b582b33-b80b-42a9-9c8b-d1dda0c5c190", + "start": { + "$date": "2022-03-11T23:05:13.000Z" + }, + "end": { + "$date": "2022-03-11T23:32:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "366c4676-e46e-46f9-9c4a-6dc27f85dbd5", + "start": { + "$date": "2022-03-11T23:32:13.000Z" + }, + "end": { + "$date": "2022-03-12T00:08:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cc222817-d53e-4418-b88b-9c8a63432512", + "start": { + "$date": "2022-03-12T00:08:13.000Z" + }, + "end": { + "$date": "2022-03-12T01:01:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "16c37223-f29a-4e0f-b9ad-b3dd84b01900", + "start": { + "$date": "2022-03-12T01:01:13.000Z" + }, + "end": { + "$date": "2022-03-12T01:26:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "34233697-3741-4626-a4a3-04d4f57a645f", + "start": { + "$date": "2022-03-12T01:26:13.000Z" + }, + "end": { + "$date": "2022-03-12T01:44:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f1ad799f-f5ec-44a0-a962-7c7af10c8380", + "start": { + "$date": "2022-03-12T01:44:13.000Z" + }, + "end": { + "$date": "2022-03-12T01:54:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5dc3b0c4-72d7-45f0-bfbd-ef3b66cd5963", + "start": { + "$date": "2022-03-12T01:54:13.000Z" + }, + "end": { + "$date": "2022-03-12T02:11:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d128d29-fd4d-4356-a5d8-d3b7fdb38c5d", + "start": { + "$date": "2022-03-12T02:11:13.000Z" + }, + "end": { + "$date": "2022-03-12T02:39:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d14f7f0-b9dc-42fd-ac68-82f71e5fbe6c", + "start": { + "$date": "2022-03-12T02:39:13.000Z" + }, + "end": { + "$date": "2022-03-12T02:49:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79baf60f-dda8-44a5-9316-6de02023ee1d", + "start": { + "$date": "2022-03-12T02:49:13.000Z" + }, + "end": { + "$date": "2022-03-12T03:07:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e7b5e5e6-ef84-4b7a-8637-c338c9277542", + "start": { + "$date": "2022-03-12T03:07:13.000Z" + }, + "end": { + "$date": "2022-03-12T03:08:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc779515-e441-4ced-8416-fea16de95427", + "start": { + "$date": "2022-03-12T03:08:13.000Z" + }, + "end": { + "$date": "2022-03-12T03:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "915a870c-5660-4b38-9239-088a74720039", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-11T22:18:29.000Z" + }, + "end": { + "$date": "2022-03-11T22:41:34.000Z" + }, + "events": [ + { + "uuid": "2806cf8e-9819-4b62-945b-89a8a93e352b", + "start": { + "$date": "2022-03-11T22:18:29.000Z" + }, + "end": { + "$date": "2022-03-11T22:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "22cb36e8-263f-4baf-aa4c-b2e7cba7cd28", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T22:37:41.000Z" + }, + "end": { + "$date": "2022-03-11T23:05:47.000Z" + }, + "events": [ + { + "uuid": "e16ec303-03e0-42db-9667-9e9734003932", + "start": { + "$date": "2022-03-11T22:37:41.000Z" + }, + "end": { + "$date": "2022-03-11T23:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b1125b04-3f9c-4baf-bbbf-db3b6e1b98c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-11T22:47:37.000Z" + }, + "end": { + "$date": "2022-03-12T00:25:16.000Z" + }, + "events": [ + { + "uuid": "ab46c434-584c-49e1-a8e1-9c1977f8afbc", + "start": { + "$date": "2022-03-11T22:47:37.000Z" + }, + "end": { + "$date": "2022-03-12T00:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9b3226cb-1288-4cd8-8073-f5b9766c144d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T23:07:12.000Z" + }, + "end": { + "$date": "2022-03-11T23:11:07.000Z" + }, + "events": [ + { + "uuid": "03d50919-c01e-44be-9747-5817944e5e08", + "start": { + "$date": "2022-03-11T23:07:12.000Z" + }, + "end": { + "$date": "2022-03-11T23:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "685f13b9-6f87-43e8-9444-cce33764d383", + "uuid": "e1ec6636-0619-4af6-afeb-fcef3e4e51d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T23:22:53.000Z" + }, + "end": { + "$date": "2022-03-11T23:24:09.000Z" + }, + "events": [ + { + "uuid": "b2c3eace-ed15-416e-a964-79ff424a3422", + "start": { + "$date": "2022-03-11T23:22:53.000Z" + }, + "end": { + "$date": "2022-03-11T23:24:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "6ad0bdf1-72b6-4358-8c57-a5803c5a705c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T23:24:23.000Z" + }, + "end": { + "$date": "2022-03-11T23:49:51.000Z" + }, + "events": [ + { + "uuid": "2840e33f-f18a-4fa0-9fbf-6742d44500ea", + "start": { + "$date": "2022-03-11T23:24:23.000Z" + }, + "end": { + "$date": "2022-03-11T23:49:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "1ecb0c97-5ef3-43ab-8851-61d8670f44d9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-11T23:54:34.000Z" + }, + "end": { + "$date": "2022-03-12T00:23:20.000Z" + }, + "events": [ + { + "uuid": "e1247fca-fd8c-48b4-a314-d61ab749e0c4", + "start": { + "$date": "2022-03-11T23:54:34.000Z" + }, + "end": { + "$date": "2022-03-12T00:23:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", + "uuid": "e60dcb53-32f1-4538-b1bd-c47bb2b8785e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-12T00:24:10.000Z" + }, + "end": { + "$date": "2022-03-12T00:44:06.000Z" + }, + "events": [ + { + "uuid": "b607845f-4619-4163-9650-ef9f2c28f179", + "start": { + "$date": "2022-03-12T00:24:10.000Z" + }, + "end": { + "$date": "2022-03-12T00:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ee9e8e8d-92a0-4a14-85f9-ba13be02fb5b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-12T00:46:50.000Z" + }, + "end": { + "$date": "2022-03-12T01:10:57.000Z" + }, + "events": [ + { + "uuid": "b925c76c-f481-49fa-9ed4-ea9d16680d8d", + "start": { + "$date": "2022-03-12T00:46:50.000Z" + }, + "end": { + "$date": "2022-03-12T01:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8aede5a1-807d-46fc-afd7-fcd73b46d2a5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T01:31:38.000Z" + }, + "end": { + "$date": "2022-03-12T02:08:42.000Z" + }, + "events": [ + { + "uuid": "cbb350a3-b338-49d4-84ba-362c8c9a537f", + "start": { + "$date": "2022-03-12T01:31:38.000Z" + }, + "end": { + "$date": "2022-03-12T02:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "60c9e2c8-b1f7-4b3a-acde-a28ae9242b07", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-12T01:03:10.000Z" + }, + "end": { + "$date": "2022-03-12T04:20:14.000Z" + }, + "events": [ + { + "uuid": "46cf1168-7593-4e62-b25d-c84be47cac62", + "start": { + "$date": "2022-03-12T01:03:10.000Z" + }, + "end": { + "$date": "2022-03-12T03:03:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "216b57a4-4d2c-4ae9-bee8-daa9a1e44a13", + "start": { + "$date": "2022-03-12T03:03:10.000Z" + }, + "end": { + "$date": "2022-03-12T03:08:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "90b56f02-9225-4834-903a-b351357e2533", + "start": { + "$date": "2022-03-12T03:08:10.000Z" + }, + "end": { + "$date": "2022-03-12T03:18:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "66f773d0-ef0e-4c69-82e7-4e71c44a57aa", + "start": { + "$date": "2022-03-12T03:18:10.000Z" + }, + "end": { + "$date": "2022-03-12T03:23:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7157bfea-697b-4626-92df-86ebf315a64e", + "start": { + "$date": "2022-03-12T03:23:10.000Z" + }, + "end": { + "$date": "2022-03-12T04:20:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "dee81b6e-9806-46c1-9bbc-e11b8c9744d5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-12T01:11:42.000Z" + }, + "end": { + "$date": "2022-03-12T01:14:22.000Z" + }, + "events": [ + { + "uuid": "623a3fc3-61fc-47da-9ddc-935b2f37bece", + "start": { + "$date": "2022-03-12T01:11:42.000Z" + }, + "end": { + "$date": "2022-03-12T01:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "357fa6d3-a4e1-4dbf-9ef8-823b920c09a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-12T01:14:27.000Z" + }, + "end": { + "$date": "2022-03-12T01:17:08.000Z" + }, + "events": [ + { + "uuid": "6b48dbfd-5fae-4e87-a574-27e7bd8409de", + "start": { + "$date": "2022-03-12T01:14:27.000Z" + }, + "end": { + "$date": "2022-03-12T01:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "febf854a-8a66-4c43-9276-f065daf4352e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-12T01:17:12.000Z" + }, + "end": { + "$date": "2022-03-12T01:46:03.000Z" + }, + "events": [ + { + "uuid": "ae95ee0d-5cc3-4f1d-8d06-d1efa0483845", + "start": { + "$date": "2022-03-12T01:17:12.000Z" + }, + "end": { + "$date": "2022-03-12T01:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "56afd445-97ec-4469-842a-9791f109fef1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T01:27:35.000Z" + }, + "end": { + "$date": "2022-03-12T01:38:27.000Z" + }, + "events": [ + { + "uuid": "5a2c0354-ba41-49d4-8ae4-e1653b4fc1bf", + "start": { + "$date": "2022-03-12T01:27:35.000Z" + }, + "end": { + "$date": "2022-03-12T01:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "557e7ae7-a637-4196-af9e-4c3b44d3eeb3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-12T02:21:06.000Z" + }, + "end": { + "$date": "2022-03-12T02:48:26.000Z" + }, + "events": [ + { + "uuid": "50ecbad6-1f24-4277-9f68-a5fac9936118", + "start": { + "$date": "2022-03-12T02:21:06.000Z" + }, + "end": { + "$date": "2022-03-12T02:48:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba7b7018-3264-4515-bbde-91575d31f3df", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T03:10:10.000Z" + }, + "end": { + "$date": "2022-03-12T03:48:52.000Z" + }, + "events": [ + { + "uuid": "122cdc16-a780-4aee-a55b-42f13d4ecc19", + "start": { + "$date": "2022-03-12T03:10:10.000Z" + }, + "end": { + "$date": "2022-03-12T03:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8634b8e4-8394-4273-94df-742b36177f73", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-12T02:42:04.000Z" + }, + "end": { + "$date": "2022-03-12T02:59:24.000Z" + }, + "events": [ + { + "uuid": "c3662237-19b4-4d19-b786-0dbfabaf810e", + "start": { + "$date": "2022-03-12T02:42:04.000Z" + }, + "end": { + "$date": "2022-03-12T02:59:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2446dcb2-bc55-46ca-a314-2501691be53f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T03:50:40.000Z" + }, + "end": { + "$date": "2022-03-12T03:56:16.000Z" + }, + "events": [ + { + "uuid": "471a53c4-a2ee-4925-ad75-75f40cbb6aeb", + "start": { + "$date": "2022-03-12T03:50:40.000Z" + }, + "end": { + "$date": "2022-03-12T03:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "494b46ba-7094-43f3-b1ae-e08eaa25e387", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T03:57:56.000Z" + }, + "end": { + "$date": "2022-03-12T04:33:43.000Z" + }, + "events": [ + { + "uuid": "ab02f876-5c72-47a9-88d8-7d66d923b810", + "start": { + "$date": "2022-03-12T03:57:56.000Z" + }, + "end": { + "$date": "2022-03-12T04:33:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3cd7fa84-a011-4df6-9163-de1ddadde591", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T04:00:06.000Z" + }, + "end": { + "$date": "2022-03-12T05:34:29.000Z" + }, + "events": [ + { + "uuid": "d11e5246-9f09-4beb-965e-58e3f6615227", + "start": { + "$date": "2022-03-12T04:00:06.000Z" + }, + "end": { + "$date": "2022-03-12T05:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "11854d02-d7dd-406d-85b3-045b75c203b0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-12T04:20:25.000Z" + }, + "end": { + "$date": "2022-03-12T07:35:52.000Z" + }, + "events": [ + { + "uuid": "4c44a6b8-4c13-4b96-b441-1dec1be4c540", + "start": { + "$date": "2022-03-12T04:20:25.000Z" + }, + "end": { + "$date": "2022-03-12T07:35:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc713218-e0f3-4e86-ab8c-203f54cd6ad5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T04:36:52.000Z" + }, + "end": { + "$date": "2022-03-12T04:38:54.000Z" + }, + "events": [ + { + "uuid": "a67a992d-41c5-414d-96e3-a0a7aeab04e0", + "start": { + "$date": "2022-03-12T04:36:52.000Z" + }, + "end": { + "$date": "2022-03-12T04:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b42c4a74-6bb7-4a2a-85ab-07c0b4afce2a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T04:39:33.000Z" + }, + "end": { + "$date": "2022-03-12T05:15:17.000Z" + }, + "events": [ + { + "uuid": "bdcd5ced-2a0f-4436-9c3d-51f657c8b2a5", + "start": { + "$date": "2022-03-12T04:39:33.000Z" + }, + "end": { + "$date": "2022-03-12T05:15:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "935f5d30-3458-4436-8c18-c40c8b447c9f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-12T05:05:24.000Z" + }, + "end": { + "$date": "2022-03-12T05:06:33.000Z" + }, + "events": [ + { + "uuid": "64997636-73d2-4f1b-be5c-b36bdcfbd28b", + "start": { + "$date": "2022-03-12T05:05:24.000Z" + }, + "end": { + "$date": "2022-03-12T05:06:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0385f2bd-ffd7-4a90-9efe-19cc6d8be05f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-12T05:07:33.000Z" + }, + "end": { + "$date": "2022-03-12T09:47:19.000Z" + }, + "events": [ + { + "uuid": "a00ac91b-bc3f-46b5-97b5-6f1082ae0f15", + "start": { + "$date": "2022-03-12T05:07:33.000Z" + }, + "end": { + "$date": "2022-03-12T09:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "155956c1-4903-4bc2-a959-0c0a8d2905cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T05:18:12.000Z" + }, + "end": { + "$date": "2022-03-12T05:48:20.000Z" + }, + "events": [ + { + "uuid": "bbacc95f-8e93-4999-b552-f7c0e0ba0386", + "start": { + "$date": "2022-03-12T05:18:12.000Z" + }, + "end": { + "$date": "2022-03-12T05:48:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b7326a69-5f37-42fb-a510-c5df98b43059", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-12T05:18:14.000Z" + }, + "end": { + "$date": "2022-03-12T09:40:22.000Z" + }, + "events": [ + { + "uuid": "9054d5e4-a2b4-4e18-90c1-9055061893cf", + "start": { + "$date": "2022-03-12T05:18:14.000Z" + }, + "end": { + "$date": "2022-03-12T09:40:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5e4924f-5b28-427c-a5e6-553678162049", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-12T05:35:33.000Z" + }, + "end": { + "$date": "2022-03-12T10:11:36.000Z" + }, + "events": [ + { + "uuid": "a911f820-dd74-488d-951d-7c936643f048", + "start": { + "$date": "2022-03-12T05:35:33.000Z" + }, + "end": { + "$date": "2022-03-12T10:11:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "5d21816a-c9bd-4f04-91e9-5a74575d17e0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-12T05:37:13.000Z" + }, + "end": { + "$date": "2022-03-12T05:40:13.000Z" + }, + "events": [ + { + "uuid": "0027f5d4-aa55-45fe-b2a2-1d7428d2fdc4", + "start": { + "$date": "2022-03-12T05:37:13.000Z" + }, + "end": { + "$date": "2022-03-12T05:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1faa0cb6-5e87-4c4e-ab87-7436d7d877ae", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-12T05:40:32.000Z" + }, + "end": { + "$date": "2022-03-12T06:52:59.000Z" + }, + "events": [ + { + "uuid": "e8854cd3-ae81-4da8-b569-dd9344ed80a6", + "start": { + "$date": "2022-03-12T05:40:32.000Z" + }, + "end": { + "$date": "2022-03-12T06:52:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6663eb69-dfcb-4b31-a444-39f78c28aab2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-12T05:42:03.000Z" + }, + "end": { + "$date": "2022-03-12T06:53:06.000Z" + }, + "events": [ + { + "uuid": "246641f7-e596-42db-b74f-05deeb07563a", + "start": { + "$date": "2022-03-12T05:42:03.000Z" + }, + "end": { + "$date": "2022-03-12T06:53:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "99d435b9-2fea-4b9a-8994-3b5957adff98", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T05:48:09.000Z" + }, + "end": { + "$date": "2022-03-12T07:07:22.000Z" + }, + "events": [ + { + "uuid": "65b57298-d20a-4ae6-b596-5c59e26300d8", + "start": { + "$date": "2022-03-12T05:48:09.000Z" + }, + "end": { + "$date": "2022-03-12T07:07:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "888c75ba-a816-4012-b698-ce526b2e2325", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T05:48:40.000Z" + }, + "end": { + "$date": "2022-03-12T05:52:22.000Z" + }, + "events": [ + { + "uuid": "5149b7c1-ff77-4166-ba79-89fa90bfa916", + "start": { + "$date": "2022-03-12T05:48:40.000Z" + }, + "end": { + "$date": "2022-03-12T05:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbb521b4-e488-43cb-8bd2-c9e039a31b96", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T05:58:26.000Z" + }, + "end": { + "$date": "2022-03-12T06:20:08.000Z" + }, + "events": [ + { + "uuid": "3062ba27-e5fb-402b-8c90-c456257da7a4", + "start": { + "$date": "2022-03-12T05:58:26.000Z" + }, + "end": { + "$date": "2022-03-12T06:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "548e7597-df30-4516-bb4a-dd398a868bab", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-12T06:05:49.000Z" + }, + "end": { + "$date": "2022-03-12T07:31:49.000Z" + }, + "events": [ + { + "uuid": "40798f7d-daca-4ac5-a717-6932ecfa2b4a", + "start": { + "$date": "2022-03-12T06:05:49.000Z" + }, + "end": { + "$date": "2022-03-12T07:31:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1988f06-8355-4539-ab4f-276823b31717", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T06:22:12.000Z" + }, + "end": { + "$date": "2022-03-12T06:40:03.000Z" + }, + "events": [ + { + "uuid": "d13fc2fd-8325-4905-9b6d-549cfee034f1", + "start": { + "$date": "2022-03-12T06:22:12.000Z" + }, + "end": { + "$date": "2022-03-12T06:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75c8a983-b2ab-4d86-bce6-632ea15ba1c1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-12T06:30:24.000Z" + }, + "end": { + "$date": "2022-03-12T06:51:44.000Z" + }, + "events": [ + { + "uuid": "2a92505f-b59e-4572-95a1-8ade6ada8575", + "start": { + "$date": "2022-03-12T06:30:24.000Z" + }, + "end": { + "$date": "2022-03-12T06:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "206365d4-16ed-47ea-9941-9ff52a2c075a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-12T06:42:38.000Z" + }, + "end": { + "$date": "2022-03-12T07:12:56.000Z" + }, + "events": [ + { + "uuid": "b60442e8-0354-4723-9432-a7e69d002da2", + "start": { + "$date": "2022-03-12T06:42:38.000Z" + }, + "end": { + "$date": "2022-03-12T07:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e325759-3929-4295-b3f1-728921c256a7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-12T06:58:54.000Z" + }, + "end": { + "$date": "2022-03-12T07:13:41.000Z" + }, + "events": [ + { + "uuid": "600210d3-8056-466e-8f98-f60aad426cca", + "start": { + "$date": "2022-03-12T06:58:54.000Z" + }, + "end": { + "$date": "2022-03-12T07:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "6f873150-b995-4faf-a83e-8a8e514f7871", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-12T06:53:14.000Z" + }, + "end": { + "$date": "2022-03-12T07:17:36.000Z" + }, + "events": [ + { + "uuid": "01d0779e-4b33-434f-ae39-ae43c662a619", + "start": { + "$date": "2022-03-12T06:53:14.000Z" + }, + "end": { + "$date": "2022-03-12T07:17:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d318d278-326d-459c-809c-ead201458746", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T07:18:48.000Z" + }, + "end": { + "$date": "2022-03-12T08:40:55.000Z" + }, + "events": [ + { + "uuid": "abdb971f-7d37-473d-808b-547c53ddf74a", + "start": { + "$date": "2022-03-12T07:18:48.000Z" + }, + "end": { + "$date": "2022-03-12T08:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "b406bcb4-727b-43be-a7e7-4ecaf05ddcea", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-12T07:37:58.000Z" + }, + "end": { + "$date": "2022-03-12T08:53:20.000Z" + }, + "events": [ + { + "uuid": "b99dacd2-941f-40f6-959b-e1a13c3486c4", + "start": { + "$date": "2022-03-12T07:37:58.000Z" + }, + "end": { + "$date": "2022-03-12T08:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77212221-9b90-4682-bc7d-f59f85cc23ff", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-12T09:37:08.000Z" + }, + "end": { + "$date": "2022-03-12T09:37:21.000Z" + }, + "events": [ + { + "uuid": "13e2c142-189d-4e08-8066-7971c0ed22c2", + "start": { + "$date": "2022-03-12T09:37:08.000Z" + }, + "end": { + "$date": "2022-03-12T09:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "ffea64ca-8320-479a-a125-c526729cff4e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-12T11:59:22.000Z" + }, + "end": { + "$date": "2022-03-12T13:06:55.000Z" + }, + "events": [ + { + "uuid": "03d8842c-12d9-4e26-b8d8-bd989e3ec143", + "start": { + "$date": "2022-03-12T11:59:22.000Z" + }, + "end": { + "$date": "2022-03-12T13:06:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dbbaf083-a57e-4b19-a937-19528e3f2402", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-12T16:30:32.000Z" + }, + "end": { + "$date": "2022-03-12T16:44:38.000Z" + }, + "events": [ + { + "uuid": "f8d0029b-cab0-4c3c-b4ef-6b624124aa5a", + "start": { + "$date": "2022-03-12T16:30:32.000Z" + }, + "end": { + "$date": "2022-03-12T16:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b268b31f-e4ca-4602-9e5b-32583ebb2f38", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-12T16:45:43.000Z" + }, + "end": { + "$date": "2022-03-12T17:05:59.000Z" + }, + "events": [ + { + "uuid": "954063d9-25f1-4b71-a80e-1314b21603c8", + "start": { + "$date": "2022-03-12T16:45:43.000Z" + }, + "end": { + "$date": "2022-03-12T17:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "087fdf5f-5a62-482f-bb4f-3eedd81f9e61", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-12T17:40:32.000Z" + }, + "end": { + "$date": "2022-03-12T19:00:31.000Z" + }, + "events": [ + { + "uuid": "e258d8da-9aa3-44ee-85e8-8c2a8687e8ce", + "start": { + "$date": "2022-03-12T17:40:32.000Z" + }, + "end": { + "$date": "2022-03-12T19:00:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "23a97812-dca8-411d-b08f-b13fc0ef1142", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-12T18:26:57.000Z" + }, + "end": { + "$date": "2022-03-12T20:57:48.000Z" + }, + "events": [ + { + "uuid": "b08354b8-730e-42ea-8b5e-7bb00f38cfd3", + "start": { + "$date": "2022-03-12T18:26:57.000Z" + }, + "end": { + "$date": "2022-03-12T20:57:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "6e9d90fe-377e-48a5-8b3d-6fe2a5a8e7db", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-12T19:04:11.000Z" + }, + "end": { + "$date": "2022-03-12T19:37:47.000Z" + }, + "events": [ + { + "uuid": "a32ca502-6dc3-4669-9d77-098b3c919676", + "start": { + "$date": "2022-03-12T19:04:11.000Z" + }, + "end": { + "$date": "2022-03-12T19:37:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "07390b75-cac7-48d1-87e6-71522fbcd64b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-12T19:55:55.000Z" + }, + "end": { + "$date": "2022-03-12T20:01:31.000Z" + }, + "events": [ + { + "uuid": "ee049668-6682-4fc0-9a3b-863934c371a4", + "start": { + "$date": "2022-03-12T19:55:55.000Z" + }, + "end": { + "$date": "2022-03-12T20:01:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "db2f70de-1162-4c9b-bdbc-90e361ac8c24", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T19:57:48.000Z" + }, + "end": { + "$date": "2022-03-12T20:00:20.000Z" + }, + "events": [ + { + "uuid": "451054de-c598-4521-aeb9-47f1a8b227d0", + "start": { + "$date": "2022-03-12T19:57:48.000Z" + }, + "end": { + "$date": "2022-03-12T20:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e9251c4-505e-4b5c-8623-fdada96e4078", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-12T20:04:15.000Z" + }, + "end": { + "$date": "2022-03-12T20:12:01.000Z" + }, + "events": [ + { + "uuid": "3a3bc642-542d-4448-b9c1-97183515e401", + "start": { + "$date": "2022-03-12T20:04:15.000Z" + }, + "end": { + "$date": "2022-03-12T20:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "096e9fca-f2bd-4be5-97b7-c4f638b0906b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T20:04:28.000Z" + }, + "end": { + "$date": "2022-03-12T22:26:04.000Z" + }, + "events": [ + { + "uuid": "5a4e5783-7664-4d57-8145-8759c29ac97f", + "start": { + "$date": "2022-03-12T20:04:28.000Z" + }, + "end": { + "$date": "2022-03-12T22:26:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "2d81fc45-aae2-4d13-9166-67ebf22b7251", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-12T20:06:21.000Z" + }, + "end": { + "$date": "2022-03-12T22:40:57.000Z" + }, + "events": [ + { + "uuid": "8ef596bd-d4e4-46cc-b971-96003e5ce3c9", + "start": { + "$date": "2022-03-12T20:06:21.000Z" + }, + "end": { + "$date": "2022-03-12T22:40:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "932c3c44-6b79-4b3d-85bf-fc20310a5e5d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-12T20:13:15.000Z" + }, + "end": { + "$date": "2022-03-12T20:14:34.000Z" + }, + "events": [ + { + "uuid": "743420ce-5ff4-4789-9b1c-736097773972", + "start": { + "$date": "2022-03-12T20:13:15.000Z" + }, + "end": { + "$date": "2022-03-12T20:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fe37aaa2-57d9-4c48-abf5-fefaccb86b24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-12T20:21:52.000Z" + }, + "end": { + "$date": "2022-03-12T23:44:23.000Z" + }, + "events": [ + { + "uuid": "50209f80-3407-4530-b60f-ee01b2118b55", + "start": { + "$date": "2022-03-12T20:21:52.000Z" + }, + "end": { + "$date": "2022-03-12T23:24:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "960bb0bc-008c-46da-81e6-230ea593f6a3", + "start": { + "$date": "2022-03-12T23:24:52.000Z" + }, + "end": { + "$date": "2022-03-12T23:44:23.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "25e6ace8-2672-419b-8854-346cddd37b85", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-12T22:26:47.000Z" + }, + "end": { + "$date": "2022-03-12T22:37:29.000Z" + }, + "events": [ + { + "uuid": "2b31810e-1eb0-4648-a1ec-5fe035a68d68", + "start": { + "$date": "2022-03-12T22:26:47.000Z" + }, + "end": { + "$date": "2022-03-12T22:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "626e0f2a-fd6f-4056-b33b-7ca5e3e51ff7", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-12T22:49:08.000Z" + }, + "end": { + "$date": "2022-03-12T23:19:52.000Z" + }, + "events": [ + { + "uuid": "e7479a01-cfad-4d8c-a2e6-a8645f4b2dc4", + "start": { + "$date": "2022-03-12T22:49:08.000Z" + }, + "end": { + "$date": "2022-03-12T23:19:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "70d74c30-8e1a-4aed-9817-921b9eed2e03", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-12T23:30:02.000Z" + }, + "end": { + "$date": "2022-03-13T00:20:39.000Z" + }, + "events": [ + { + "uuid": "b4865e74-906c-4329-8c75-58ae8d5b91b8", + "start": { + "$date": "2022-03-12T23:30:02.000Z" + }, + "end": { + "$date": "2022-03-12T23:33:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d3877582-0463-4d02-b071-dc1309d83fbd", + "start": { + "$date": "2022-03-12T23:33:02.000Z" + }, + "end": { + "$date": "2022-03-13T00:20:39.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5220ea77-8e1e-4f83-a2be-feb2a2a19c4f", + "uuid": "52c6cf2f-5333-428b-9965-5019ca3f8f66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-13T00:27:05.000Z" + }, + "end": { + "$date": "2022-03-13T00:38:16.000Z" + }, + "events": [ + { + "uuid": "c7f2e037-9619-425f-b79a-4786688c0a5b", + "start": { + "$date": "2022-03-13T00:27:05.000Z" + }, + "end": { + "$date": "2022-03-13T00:38:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", + "uuid": "eedf2897-a9ba-4597-b6d1-a2a062fa2b52", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-13T00:43:22.000Z" + }, + "end": { + "$date": "2022-03-13T01:23:24.000Z" + }, + "events": [ + { + "uuid": "9066a4fc-465d-4d04-97e8-df7da7bdc419", + "start": { + "$date": "2022-03-13T00:43:22.000Z" + }, + "end": { + "$date": "2022-03-13T01:23:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7b082320-5dce-48d7-abc5-642e19aeaf62", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-13T00:56:56.000Z" + }, + "end": { + "$date": "2022-03-13T03:07:37.000Z" + }, + "events": [ + { + "uuid": "de9a3a7f-9d4f-49ba-ad94-090998b90494", + "start": { + "$date": "2022-03-13T00:56:56.000Z" + }, + "end": { + "$date": "2022-03-13T03:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "705399d1-eaa4-4a1d-a7c5-bcb9c1621dec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-13T04:32:11.000Z" + }, + "end": { + "$date": "2022-03-13T07:40:14.000Z" + }, + "events": [ + { + "uuid": "9c5856f1-8492-45de-84b0-b7c8b3cb5db2", + "start": { + "$date": "2022-03-13T04:32:11.000Z" + }, + "end": { + "$date": "2022-03-13T07:40:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a25c278-3ac8-47f4-8b2c-b7ae8d274bfc", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-13T02:46:06.000Z" + }, + "end": { + "$date": "2022-03-13T03:02:50.000Z" + }, + "events": [ + { + "uuid": "c5126f3f-21b9-41be-b2cb-6674fe32732d", + "start": { + "$date": "2022-03-13T02:46:06.000Z" + }, + "end": { + "$date": "2022-03-13T03:02:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e3176e74-c70b-497b-b903-3e3f4fe87ce3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-13T02:55:11.000Z" + }, + "end": { + "$date": "2022-03-13T08:16:10.000Z" + }, + "events": [ + { + "uuid": "3f5ebaf1-6ea1-4c95-a70f-30200aa86d23", + "start": { + "$date": "2022-03-13T02:55:11.000Z" + }, + "end": { + "$date": "2022-03-13T08:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d9a9267-619d-4009-b573-bf6ea17d6842", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-13T03:09:43.000Z" + }, + "end": { + "$date": "2022-03-13T03:53:09.000Z" + }, + "events": [ + { + "uuid": "9afcad37-4f09-40cb-9c7c-b4f94508a618", + "start": { + "$date": "2022-03-13T03:09:43.000Z" + }, + "end": { + "$date": "2022-03-13T03:53:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "744fc4b4-6114-4222-920d-4e43d91fbe1f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-13T04:18:34.000Z" + }, + "end": { + "$date": "2022-03-13T10:20:26.000Z" + }, + "events": [ + { + "uuid": "e52ebf3c-87ac-4b93-8e63-3d77d69eed75", + "start": { + "$date": "2022-03-13T04:18:34.000Z" + }, + "end": { + "$date": "2022-03-13T10:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2b2c2294-e576-45f3-909b-18f493757778", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-13T03:37:45.000Z" + }, + "end": { + "$date": "2022-03-13T03:49:34.000Z" + }, + "events": [ + { + "uuid": "7c127eb5-35c8-457c-bed6-2cf43d92d99a", + "start": { + "$date": "2022-03-13T03:37:45.000Z" + }, + "end": { + "$date": "2022-03-13T03:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "84dba2b8-f231-4b03-886b-bb3ed16ca434", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-13T03:39:08.000Z" + }, + "end": { + "$date": "2022-03-13T05:33:54.000Z" + }, + "events": [ + { + "uuid": "0767a20b-2c6e-475a-9f95-7c355b4d4560", + "start": { + "$date": "2022-03-13T03:39:08.000Z" + }, + "end": { + "$date": "2022-03-13T04:07:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2458aa84-e87d-417c-815e-fb2a5fc0bc1c", + "start": { + "$date": "2022-03-13T04:07:08.000Z" + }, + "end": { + "$date": "2022-03-13T04:13:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea12fda1-e15f-4c0b-a320-4f94f324f09c", + "start": { + "$date": "2022-03-13T04:13:08.000Z" + }, + "end": { + "$date": "2022-03-13T05:33:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dd3f2493-2d26-4c8b-8765-da02309723c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-13T04:28:09.000Z" + }, + "end": { + "$date": "2022-03-13T05:03:45.000Z" + }, + "events": [ + { + "uuid": "2e909405-0857-481a-9c11-86ec58ad6f98", + "start": { + "$date": "2022-03-13T04:28:09.000Z" + }, + "end": { + "$date": "2022-03-13T05:03:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8d76ec5d-151a-4636-91da-8fcd18e0be87", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-13T03:53:48.000Z" + }, + "end": { + "$date": "2022-03-13T09:05:38.000Z" + }, + "events": [ + { + "uuid": "d95fddef-aec3-4c5d-9ba2-5b503dfb7710", + "start": { + "$date": "2022-03-13T03:53:48.000Z" + }, + "end": { + "$date": "2022-03-13T04:45:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1b4f1e42-a006-4b75-bfc4-1fbb014feccd", + "start": { + "$date": "2022-03-13T04:45:48.000Z" + }, + "end": { + "$date": "2022-03-13T04:58:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb04d51c-dd64-48d3-b136-6abaeb4a856e", + "start": { + "$date": "2022-03-13T04:58:48.000Z" + }, + "end": { + "$date": "2022-03-13T05:08:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80aa2599-7f1c-4f9f-befa-2da327ccb0be", + "start": { + "$date": "2022-03-13T05:08:48.000Z" + }, + "end": { + "$date": "2022-03-13T05:14:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d372390c-e4a4-4075-92cf-54be5da08324", + "start": { + "$date": "2022-03-13T05:14:48.000Z" + }, + "end": { + "$date": "2022-03-13T09:05:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae91edca-e742-4311-9609-eb6ec7c91c6a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-13T03:57:09.000Z" + }, + "end": { + "$date": "2022-03-13T10:20:33.000Z" + }, + "events": [ + { + "uuid": "0d4903f9-3ff5-4036-a5fb-ac858ea50f37", + "start": { + "$date": "2022-03-13T03:57:09.000Z" + }, + "end": { + "$date": "2022-03-13T05:30:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "806212cf-5fcf-4428-9e7e-ffbed16e2ad7", + "start": { + "$date": "2022-03-13T05:30:09.000Z" + }, + "end": { + "$date": "2022-03-13T06:10:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "61e50749-ff7d-4ec2-87d2-6c678516faec", + "start": { + "$date": "2022-03-13T06:10:09.000Z" + }, + "end": { + "$date": "2022-03-13T10:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "54ee3697-4b4d-4e2e-86a1-36c390ae0d8f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-13T04:01:09.000Z" + }, + "end": { + "$date": "2022-03-13T10:17:42.000Z" + }, + "events": [ + { + "uuid": "8c559f83-6e6d-4d34-ae06-b4637f7ea4c1", + "start": { + "$date": "2022-03-13T04:01:09.000Z" + }, + "end": { + "$date": "2022-03-13T10:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "eff185ae-79ed-4e90-95b6-8b43dc836bc3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-13T00:56:56.000Z" + }, + "end": { + "$date": "2022-03-13T07:13:57.000Z" + }, + "events": [ + { + "uuid": "a49ed25f-12f9-4379-8e28-e36534d186d5", + "start": { + "$date": "2022-03-13T00:56:56.000Z" + }, + "end": { + "$date": "2022-03-13T07:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "597b76b4-05e3-4b93-aa77-34491c0e2349", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-13T04:33:19.000Z" + }, + "end": { + "$date": "2022-03-13T08:12:40.000Z" + }, + "events": [ + { + "uuid": "7ad0e1dc-0281-495d-8e03-960454062a28", + "start": { + "$date": "2022-03-13T04:33:19.000Z" + }, + "end": { + "$date": "2022-03-13T08:12:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "543af40c-8910-4270-a2cd-d9d29c2bb7f1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-13T05:05:35.000Z" + }, + "end": { + "$date": "2022-03-13T05:16:34.000Z" + }, + "events": [ + { + "uuid": "7467cdc5-1e0d-414b-812d-04d68a8ad2cc", + "start": { + "$date": "2022-03-13T05:05:35.000Z" + }, + "end": { + "$date": "2022-03-13T05:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "19991912-f0fa-43da-8cb5-c10a64fa3fdc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-13T05:05:48.000Z" + }, + "end": { + "$date": "2022-03-13T05:25:59.000Z" + }, + "events": [ + { + "uuid": "cb9759f1-788b-4f31-92fc-3a4682b3bf7d", + "start": { + "$date": "2022-03-13T05:05:48.000Z" + }, + "end": { + "$date": "2022-03-13T05:25:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9372cc1-7e30-4ac9-bdcd-f5479e9f3f4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-13T05:27:02.000Z" + }, + "end": { + "$date": "2022-03-13T05:28:44.000Z" + }, + "events": [ + { + "uuid": "a52811a5-9839-49b3-b675-b3229b03782f", + "start": { + "$date": "2022-03-13T05:27:02.000Z" + }, + "end": { + "$date": "2022-03-13T05:28:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8719f994-83f9-424c-ae39-57b49a730ee6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-13T05:56:14.000Z" + }, + "end": { + "$date": "2022-03-13T06:46:46.000Z" + }, + "events": [ + { + "uuid": "f50716d2-4dbd-460f-b92c-c83733c78902", + "start": { + "$date": "2022-03-13T05:56:14.000Z" + }, + "end": { + "$date": "2022-03-13T06:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e3a40afc-1299-47d1-bcca-6229ae6f992b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-13T06:01:07.000Z" + }, + "end": { + "$date": "2022-03-13T06:44:26.000Z" + }, + "events": [ + { + "uuid": "01f0180b-2385-4d47-a54b-b38792d34ad1", + "start": { + "$date": "2022-03-13T06:01:07.000Z" + }, + "end": { + "$date": "2022-03-13T06:44:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "4292c5e7-0fba-4bfb-b3a9-629aeaaf8112", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-13T06:07:18.000Z" + }, + "end": { + "$date": "2022-03-13T06:13:03.000Z" + }, + "events": [ + { + "uuid": "2000978b-653a-47ac-a8c5-15744969fa16", + "start": { + "$date": "2022-03-13T06:07:18.000Z" + }, + "end": { + "$date": "2022-03-13T06:13:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "c070a466-51f6-4024-9b8a-18a1b1588372", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-13T06:33:38.000Z" + }, + "end": { + "$date": "2022-03-13T07:01:39.000Z" + }, + "events": [ + { + "uuid": "f354c40d-2ba7-4364-a2d0-ae820d89de1c", + "start": { + "$date": "2022-03-13T06:33:38.000Z" + }, + "end": { + "$date": "2022-03-13T07:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d1bc8483-8811-4ec4-97fe-14ea27f73a84", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-13T06:47:11.000Z" + }, + "end": { + "$date": "2022-03-13T07:39:08.000Z" + }, + "events": [ + { + "uuid": "8d547639-6b76-43f6-b586-6231409055f0", + "start": { + "$date": "2022-03-13T06:47:11.000Z" + }, + "end": { + "$date": "2022-03-13T07:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ddfc5a9b-78b6-4e9b-80c7-7c120f38f29a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-13T07:14:07.000Z" + }, + "end": { + "$date": "2022-03-13T08:23:22.000Z" + }, + "events": [ + { + "uuid": "7c8749f8-4998-4596-94ec-edbfbc6a1d0a", + "start": { + "$date": "2022-03-13T07:14:07.000Z" + }, + "end": { + "$date": "2022-03-13T08:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "71a40095-e3b9-472e-a734-d56b1f06ea7d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-13T17:24:57.000Z" + }, + "end": { + "$date": "2022-03-13T17:25:02.000Z" + }, + "events": [ + { + "uuid": "01cdabb2-b537-4884-a824-d4f934f42aad", + "start": { + "$date": "2022-03-13T17:24:57.000Z" + }, + "end": { + "$date": "2022-03-13T17:25:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", + "uuid": "985767e0-3d30-4e5f-bc81-e5277d3e7df0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-13T17:25:12.000Z" + }, + "end": { + "$date": "2022-03-13T20:11:34.000Z" + }, + "events": [ + { + "uuid": "b439d0cc-2e8f-4328-b082-2bed1096510d", + "start": { + "$date": "2022-03-13T17:25:12.000Z" + }, + "end": { + "$date": "2022-03-13T20:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2ec9ffb7-562a-4a45-b2c6-68ab0f12ac26", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-13T18:22:03.000Z" + }, + "end": { + "$date": "2022-03-13T18:45:00.000Z" + }, + "events": [ + { + "uuid": "d80ac9dc-32b9-4d58-984b-4f1d540c7885", + "start": { + "$date": "2022-03-13T18:22:03.000Z" + }, + "end": { + "$date": "2022-03-13T18:45:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "382c58ad-7f9e-4355-a44c-5ac589ecf299", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-13T18:25:34.000Z" + }, + "end": { + "$date": "2022-03-13T19:47:43.000Z" + }, + "events": [ + { + "uuid": "5aed628d-6c6c-43b7-967e-6b40180ee0d8", + "start": { + "$date": "2022-03-13T18:25:34.000Z" + }, + "end": { + "$date": "2022-03-13T19:47:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d6cc6c4b-7315-47c9-a323-dd4282716e30", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-13T19:56:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:50:28.000Z" + }, + "events": [ + { + "uuid": "8d9607fe-b7d1-4ac0-876e-4eeb64cf8a46", + "start": { + "$date": "2022-03-13T19:56:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:18:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a654abfe-d54d-41fd-b186-c0886f19ad5f", + "start": { + "$date": "2022-03-13T21:18:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:19:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5af4ae80-80a8-40c4-b524-da805dad0c79", + "start": { + "$date": "2022-03-13T21:19:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:30:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3549812-d48a-42b3-8ce0-15667373e0bc", + "start": { + "$date": "2022-03-13T21:30:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:35:18.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e7ed9c5d-5f5e-4e0a-8d72-40cc67125698", + "start": { + "$date": "2022-03-13T21:35:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:45:18.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b25c3792-f401-4818-a5b7-31303eca6967", + "start": { + "$date": "2022-03-13T21:45:18.000Z" + }, + "end": { + "$date": "2022-03-13T21:50:28.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e18d681d-c583-46f7-95b5-dc6710bffce3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-13T20:10:50.000Z" + }, + "end": { + "$date": "2022-03-13T20:37:01.000Z" + }, + "events": [ + { + "uuid": "7bf49dda-a474-46b3-ad17-8fcabc9ae5b1", + "start": { + "$date": "2022-03-13T20:10:50.000Z" + }, + "end": { + "$date": "2022-03-13T20:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", + "uuid": "3a40766f-245f-433c-8023-8adcc2b5c2cc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-13T20:38:21.000Z" + }, + "end": { + "$date": "2022-03-13T21:43:07.000Z" + }, + "events": [ + { + "uuid": "4e129034-b80c-4d7a-a2a6-14af3c82b52d", + "start": { + "$date": "2022-03-13T20:38:21.000Z" + }, + "end": { + "$date": "2022-03-13T21:43:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "04b37fc0-2bc8-4670-99b5-fe7e03091a89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-13T21:58:59.000Z" + }, + "end": { + "$date": "2022-03-13T22:44:48.000Z" + }, + "events": [ + { + "uuid": "d01c9bad-7cda-4bd9-a0c0-aa11c21998f5", + "start": { + "$date": "2022-03-13T21:58:59.000Z" + }, + "end": { + "$date": "2022-03-13T22:24:59.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2392522c-9434-4f06-a344-23ac4d26d129", + "start": { + "$date": "2022-03-13T22:24:59.000Z" + }, + "end": { + "$date": "2022-03-13T22:44:48.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b0d09816-a9ef-4698-a36d-0f4ff59106a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-13T22:06:56.000Z" + }, + "end": { + "$date": "2022-03-13T23:39:41.000Z" + }, + "events": [ + { + "uuid": "623b917f-96e5-4ebf-b0f5-974193e6ea06", + "start": { + "$date": "2022-03-13T22:06:56.000Z" + }, + "end": { + "$date": "2022-03-13T23:39:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7aff41b0-7b72-475b-b15d-b05b290f3c92", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-13T22:20:21.000Z" + }, + "end": { + "$date": "2022-03-14T00:20:52.000Z" + }, + "events": [ + { + "uuid": "0abfa451-c03a-4671-8e1c-add01622fffb", + "start": { + "$date": "2022-03-13T22:20:21.000Z" + }, + "end": { + "$date": "2022-03-14T00:20:52.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "510c6616-0828-4e12-8d57-7b0efcd5e51b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-13T22:37:47.000Z" + }, + "end": { + "$date": "2022-03-13T23:07:54.000Z" + }, + "events": [ + { + "uuid": "3de30a99-e14e-4b15-bb10-df2af094014b", + "start": { + "$date": "2022-03-13T22:37:47.000Z" + }, + "end": { + "$date": "2022-03-13T23:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6ce05c3f-9b2d-4171-8988-3e7f35c01088", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-13T23:15:47.000Z" + }, + "end": { + "$date": "2022-03-14T03:40:31.000Z" + }, + "events": [ + { + "uuid": "e361d40f-1dd3-431c-8794-96f9300bd1a1", + "start": { + "$date": "2022-03-13T23:15:47.000Z" + }, + "end": { + "$date": "2022-03-14T03:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd69193a-9c43-4471-9de2-c65bd1bb1396", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-13T23:24:34.000Z" + }, + "end": { + "$date": "2022-03-14T00:01:55.000Z" + }, + "events": [ + { + "uuid": "a0091469-6136-42d6-9efc-28d2708a4f70", + "start": { + "$date": "2022-03-13T23:24:34.000Z" + }, + "end": { + "$date": "2022-03-14T00:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "d925dacd-a751-4f67-b7a4-fdb2923f3dba", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-13T23:47:32.000Z" + }, + "end": { + "$date": "2022-03-14T00:57:14.000Z" + }, + "events": [ + { + "uuid": "d6cd5649-d7c2-49b6-aafb-097114493e88", + "start": { + "$date": "2022-03-13T23:47:32.000Z" + }, + "end": { + "$date": "2022-03-14T00:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "5591c929-7f42-422e-805c-26924e2cc359", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-14T00:09:01.000Z" + }, + "end": { + "$date": "2022-03-14T07:58:14.000Z" + }, + "events": [ + { + "uuid": "49f1baf3-536b-4711-a953-92a2fabfe561", + "start": { + "$date": "2022-03-14T00:09:01.000Z" + }, + "end": { + "$date": "2022-03-14T06:20:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "09dccb41-8382-426a-baa4-63b0d7370e5a", + "start": { + "$date": "2022-03-14T06:20:01.000Z" + }, + "end": { + "$date": "2022-03-14T06:21:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4864ac8d-57f5-4b5d-a079-d4860a5af159", + "start": { + "$date": "2022-03-14T06:21:01.000Z" + }, + "end": { + "$date": "2022-03-14T07:58:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "23f28e0d-c266-4a2a-9b51-0b69256cf196", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-14T00:44:42.000Z" + }, + "end": { + "$date": "2022-03-14T00:51:54.000Z" + }, + "events": [ + { + "uuid": "a9c4dff7-bf82-40db-894a-dd68c313a676", + "start": { + "$date": "2022-03-14T00:44:42.000Z" + }, + "end": { + "$date": "2022-03-14T00:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ca0196b0-d3c4-4f24-95b7-b1916191a01a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T01:00:16.000Z" + }, + "end": { + "$date": "2022-03-14T02:06:53.000Z" + }, + "events": [ + { + "uuid": "a077656c-4e75-4670-ad7c-e24d393fa480", + "start": { + "$date": "2022-03-14T01:00:16.000Z" + }, + "end": { + "$date": "2022-03-14T02:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "63a47b26-0529-4bf4-a3a4-c182f11899b8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-14T01:27:27.000Z" + }, + "end": { + "$date": "2022-03-14T01:38:12.000Z" + }, + "events": [ + { + "uuid": "ce8abfd4-5dc9-452f-8e63-c08b0f3e4cc7", + "start": { + "$date": "2022-03-14T01:27:27.000Z" + }, + "end": { + "$date": "2022-03-14T01:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dbbbc457-fea5-455d-be85-64fad982bcfc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-14T01:41:58.000Z" + }, + "end": { + "$date": "2022-03-14T03:11:14.000Z" + }, + "events": [ + { + "uuid": "670d965d-fa87-48ba-a509-395864d2a5ba", + "start": { + "$date": "2022-03-14T01:41:58.000Z" + }, + "end": { + "$date": "2022-03-14T03:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9532cb7-e735-4bd1-b2a5-f2069e55a5cf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-14T02:24:06.000Z" + }, + "end": { + "$date": "2022-03-14T02:29:51.000Z" + }, + "events": [ + { + "uuid": "7ba149dd-6bf2-47b3-9ed1-6150fb0da7fb", + "start": { + "$date": "2022-03-14T02:24:06.000Z" + }, + "end": { + "$date": "2022-03-14T02:29:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1d6e7c7-52df-4651-b31c-51f3b3277fa5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T02:32:51.000Z" + }, + "end": { + "$date": "2022-03-14T02:49:17.000Z" + }, + "events": [ + { + "uuid": "cc0df75c-f423-4929-80b2-49d0bf9e4136", + "start": { + "$date": "2022-03-14T02:32:51.000Z" + }, + "end": { + "$date": "2022-03-14T02:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3932c9c6-f4e8-4003-bc9f-89ddb3aa62ab", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T03:16:46.000Z" + }, + "end": { + "$date": "2022-03-14T03:39:57.000Z" + }, + "events": [ + { + "uuid": "2d17d32b-af3b-4195-aed5-37699a71df81", + "start": { + "$date": "2022-03-14T03:16:46.000Z" + }, + "end": { + "$date": "2022-03-14T03:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "60be5906-85f0-468b-a8bc-a4a182deb9b0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-14T03:34:39.000Z" + }, + "end": { + "$date": "2022-03-14T05:58:16.000Z" + }, + "events": [ + { + "uuid": "b6c4c669-c77e-4910-a140-9f1926486c0f", + "start": { + "$date": "2022-03-14T03:34:39.000Z" + }, + "end": { + "$date": "2022-03-14T05:58:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "805fc565-7f19-4ad1-8fd2-096a03d762c0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T03:57:09.000Z" + }, + "end": { + "$date": "2022-03-14T05:21:46.000Z" + }, + "events": [ + { + "uuid": "31db34ba-e6df-4f61-b897-8c15562b14a7", + "start": { + "$date": "2022-03-14T03:57:09.000Z" + }, + "end": { + "$date": "2022-03-14T05:21:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9a762e8f-2ebc-4e33-a5ad-f84664946ddc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-14T04:07:40.000Z" + }, + "end": { + "$date": "2022-03-14T10:57:33.000Z" + }, + "events": [ + { + "uuid": "d524909e-7d40-450b-872a-e9d1f1777c8a", + "start": { + "$date": "2022-03-14T04:07:40.000Z" + }, + "end": { + "$date": "2022-03-14T04:23:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ebfa5fba-c9f2-4beb-bc56-53e93bcb5f9a", + "start": { + "$date": "2022-03-14T04:23:40.000Z" + }, + "end": { + "$date": "2022-03-14T04:45:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de159aaf-c003-4310-9a7d-8c9d9d6b685c", + "start": { + "$date": "2022-03-14T04:45:40.000Z" + }, + "end": { + "$date": "2022-03-14T04:55:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2cc2adf6-b8eb-4101-931b-73a519fe5fe8", + "start": { + "$date": "2022-03-14T04:55:40.000Z" + }, + "end": { + "$date": "2022-03-14T10:57:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "897bc105-434f-4297-987f-f59624f9d9d9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-14T04:15:10.000Z" + }, + "end": { + "$date": "2022-03-14T04:40:51.000Z" + }, + "events": [ + { + "uuid": "16ef92c1-1e13-4ee7-8155-5b410acf2529", + "start": { + "$date": "2022-03-14T04:15:10.000Z" + }, + "end": { + "$date": "2022-03-14T04:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5cf7e327-7a43-4b89-b88b-8cdea4c2b8f7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-14T04:40:56.000Z" + }, + "end": { + "$date": "2022-03-14T07:28:41.000Z" + }, + "events": [ + { + "uuid": "9af03acc-0026-499e-9d5c-6bb5c138c562", + "start": { + "$date": "2022-03-14T04:40:56.000Z" + }, + "end": { + "$date": "2022-03-14T07:28:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "572c501c-8cfd-4d2e-9736-a2083f4a0844", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-14T06:05:29.000Z" + }, + "end": { + "$date": "2022-03-14T06:36:12.000Z" + }, + "events": [ + { + "uuid": "60d58b0f-ba00-4016-bbd6-2a7291153dd4", + "start": { + "$date": "2022-03-14T06:05:29.000Z" + }, + "end": { + "$date": "2022-03-14T06:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46a4a3ac-7c49-46c0-910d-ab5b8d8f32c5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-14T06:36:41.000Z" + }, + "end": { + "$date": "2022-03-14T06:44:08.000Z" + }, + "events": [ + { + "uuid": "f2453f1b-3eb3-4083-98f0-8d759f749e43", + "start": { + "$date": "2022-03-14T06:36:41.000Z" + }, + "end": { + "$date": "2022-03-14T06:44:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a894bf36-41b8-4237-8cd6-09572c2bdb19", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-14T07:25:55.000Z" + }, + "end": { + "$date": "2022-03-14T07:43:00.000Z" + }, + "events": [ + { + "uuid": "9f8991cf-fcd2-4045-a8e8-f55c8780b812", + "start": { + "$date": "2022-03-14T07:25:55.000Z" + }, + "end": { + "$date": "2022-03-14T07:43:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e88fea58-000b-4baa-9b33-ba0e0fc7a085", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-14T07:45:20.000Z" + }, + "end": { + "$date": "2022-03-14T08:03:51.000Z" + }, + "events": [ + { + "uuid": "1b988884-3740-46c8-87c2-cfae6a082bfb", + "start": { + "$date": "2022-03-14T07:45:20.000Z" + }, + "end": { + "$date": "2022-03-14T08:03:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "43cda167-af20-42f8-833e-c586ca444f97", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-14T09:36:46.000Z" + }, + "end": { + "$date": "2022-03-14T11:48:17.000Z" + }, + "events": [ + { + "uuid": "6883b610-bac0-47f3-8d00-abb6fbdb7b04", + "start": { + "$date": "2022-03-14T09:36:46.000Z" + }, + "end": { + "$date": "2022-03-14T11:48:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e13d8f85-67f7-4e8a-9bcc-f375679276b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T16:02:18.000Z" + }, + "end": { + "$date": "2022-03-14T18:24:53.000Z" + }, + "events": [ + { + "uuid": "04421925-8889-4cb3-8a81-717f21208241", + "start": { + "$date": "2022-03-14T16:02:18.000Z" + }, + "end": { + "$date": "2022-03-14T18:24:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "abe86312-84bd-4514-a3df-0aa67bf53a10", + "uuid": "ff8a3f3a-6578-40c2-9d30-8b6a493740e4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-14T18:29:36.000Z" + }, + "end": { + "$date": "2022-03-14T18:41:01.000Z" + }, + "events": [ + { + "uuid": "75faee72-f247-47be-a939-fa8c3933c034", + "start": { + "$date": "2022-03-14T18:29:36.000Z" + }, + "end": { + "$date": "2022-03-14T18:41:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "211c6246-5b38-4847-a018-d92314e5e189", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T18:56:05.000Z" + }, + "end": { + "$date": "2022-03-14T20:42:57.000Z" + }, + "events": [ + { + "uuid": "35912e7e-4acc-44f9-9ca1-8aeab2f075f2", + "start": { + "$date": "2022-03-14T18:56:05.000Z" + }, + "end": { + "$date": "2022-03-14T19:10:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a6c734a1-88a0-481b-9411-368f1f1d257b", + "start": { + "$date": "2022-03-14T19:10:05.000Z" + }, + "end": { + "$date": "2022-03-14T19:22:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23fafa4b-f075-4370-b6de-fb8acd527a3f", + "start": { + "$date": "2022-03-14T19:22:05.000Z" + }, + "end": { + "$date": "2022-03-14T20:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ab2463d4-15ef-4f02-9fd6-5b99012c5afb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-14T21:29:22.000Z" + }, + "end": { + "$date": "2022-03-14T21:40:48.000Z" + }, + "events": [ + { + "uuid": "607f4f9f-3b48-4144-b1dc-6c32644da2f8", + "start": { + "$date": "2022-03-14T21:29:22.000Z" + }, + "end": { + "$date": "2022-03-14T21:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5afca7d9-4fbb-4c33-8801-84cf3afe2766", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-14T23:00:46.000Z" + }, + "end": { + "$date": "2022-03-14T23:31:58.000Z" + }, + "events": [ + { + "uuid": "bbeae3d2-c308-4e46-9557-5bf170b6331c", + "start": { + "$date": "2022-03-14T23:00:46.000Z" + }, + "end": { + "$date": "2022-03-14T23:31:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "59ba21d6-a74d-40a7-8b34-dc05d6e3b10a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-14T23:18:24.000Z" + }, + "end": { + "$date": "2022-03-15T00:26:09.000Z" + }, + "events": [ + { + "uuid": "ced72381-f34a-4324-a557-15752af0342d", + "start": { + "$date": "2022-03-14T23:18:24.000Z" + }, + "end": { + "$date": "2022-03-15T00:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "16e4ebce-6091-49c1-9dd7-a85e23025916", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T00:19:52.000Z" + }, + "end": { + "$date": "2022-03-15T00:26:28.000Z" + }, + "events": [ + { + "uuid": "e831dd8e-997f-49c4-a912-2634d036933e", + "start": { + "$date": "2022-03-15T00:19:52.000Z" + }, + "end": { + "$date": "2022-03-15T00:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0bd65602-7864-4693-9dea-12bb58e076cb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-15T01:54:38.000Z" + }, + "end": { + "$date": "2022-03-15T02:04:30.000Z" + }, + "events": [ + { + "uuid": "6456dbca-1eca-4743-b36b-b92498cffe24", + "start": { + "$date": "2022-03-15T01:54:38.000Z" + }, + "end": { + "$date": "2022-03-15T02:04:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "814a2df8-3b32-4ceb-8190-a7ebac9fad73", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T01:55:36.000Z" + }, + "end": { + "$date": "2022-03-15T02:32:17.000Z" + }, + "events": [ + { + "uuid": "675b599b-0276-4bad-8789-bfd0bd21abdd", + "start": { + "$date": "2022-03-15T01:55:36.000Z" + }, + "end": { + "$date": "2022-03-15T02:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fc15ff40-ffa4-46a7-b070-22e07e260c3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-15T02:41:31.000Z" + }, + "end": { + "$date": "2022-03-15T03:33:38.000Z" + }, + "events": [ + { + "uuid": "041e3116-4a3e-4a3b-91e3-e12ed4cba652", + "start": { + "$date": "2022-03-15T02:41:31.000Z" + }, + "end": { + "$date": "2022-03-15T03:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d57c1b19-31ab-4887-87a4-9298cd241edf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-15T03:14:48.000Z" + }, + "end": { + "$date": "2022-03-15T04:47:30.000Z" + }, + "events": [ + { + "uuid": "0a1f4109-bdfd-4a03-8bf0-065cd0c19425", + "start": { + "$date": "2022-03-15T03:14:48.000Z" + }, + "end": { + "$date": "2022-03-15T04:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9cbd6a2f-aa35-42ec-a90a-0f880965fdc7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-15T04:24:37.000Z" + }, + "end": { + "$date": "2022-03-15T04:24:43.000Z" + }, + "events": [ + { + "uuid": "38359af6-5404-48cc-80cd-f42357da78ca", + "start": { + "$date": "2022-03-15T04:24:37.000Z" + }, + "end": { + "$date": "2022-03-15T04:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "6de2335a-ee1d-4c27-80c5-8afce0980c71", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-15T04:22:34.000Z" + }, + "end": { + "$date": "2022-03-15T05:55:27.000Z" + }, + "events": [ + { + "uuid": "762c7f1f-af73-4eeb-87e5-30176502587a", + "start": { + "$date": "2022-03-15T04:22:34.000Z" + }, + "end": { + "$date": "2022-03-15T05:47:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "efdab13c-ab82-4dc4-b189-7d4b87b0ac65", + "start": { + "$date": "2022-03-15T05:47:34.000Z" + }, + "end": { + "$date": "2022-03-15T05:55:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", + "uuid": "ed0a1295-a687-49d1-aec7-aad8095defcf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-15T04:29:07.000Z" + }, + "end": { + "$date": "2022-03-15T04:59:40.000Z" + }, + "events": [ + { + "uuid": "51f5112b-d7d8-4e5f-b748-861449f3ab58", + "start": { + "$date": "2022-03-15T04:29:07.000Z" + }, + "end": { + "$date": "2022-03-15T04:59:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2155b79f-9fff-4d85-ac9e-9565e7c12359", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T04:34:19.000Z" + }, + "end": { + "$date": "2022-03-15T05:08:45.000Z" + }, + "events": [ + { + "uuid": "a0760258-517d-4deb-9b18-427eb075a7c3", + "start": { + "$date": "2022-03-15T04:34:19.000Z" + }, + "end": { + "$date": "2022-03-15T05:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "8647513c-291e-41a7-ba35-7c7cd779b87e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-15T04:35:46.000Z" + }, + "end": { + "$date": "2022-03-15T07:07:51.000Z" + }, + "events": [ + { + "uuid": "c32e73d1-9f69-449e-879e-45f3f6c780de", + "start": { + "$date": "2022-03-15T04:35:46.000Z" + }, + "end": { + "$date": "2022-03-15T07:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "639a3417-4b5e-4fa6-ab78-7faa3188ec5a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-15T05:26:43.000Z" + }, + "end": { + "$date": "2022-03-15T05:40:49.000Z" + }, + "events": [ + { + "uuid": "627f8224-7054-4107-93f0-b559c2a47eb0", + "start": { + "$date": "2022-03-15T05:26:43.000Z" + }, + "end": { + "$date": "2022-03-15T05:40:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "8a6cc327-1a5e-4451-8b8a-dd2e1550f5b3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-15T07:07:56.000Z" + }, + "end": { + "$date": "2022-03-15T08:36:24.000Z" + }, + "events": [ + { + "uuid": "9a95e4c4-37a6-4acf-ab96-10ff946c3377", + "start": { + "$date": "2022-03-15T07:07:56.000Z" + }, + "end": { + "$date": "2022-03-15T08:36:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "c37427f8-bb0c-4970-869d-a0b96581858e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-15T10:25:51.000Z" + }, + "end": { + "$date": "2022-03-15T11:30:41.000Z" + }, + "events": [ + { + "uuid": "97767fe2-9683-4604-9304-c39908fceb63", + "start": { + "$date": "2022-03-15T10:25:51.000Z" + }, + "end": { + "$date": "2022-03-15T11:30:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "70146b5d-730c-4a6f-b9c8-d834fcada2e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T15:38:33.000Z" + }, + "end": { + "$date": "2022-03-15T17:04:34.000Z" + }, + "events": [ + { + "uuid": "f162094c-b8a9-46d6-bee2-d9806321ed93", + "start": { + "$date": "2022-03-15T15:38:33.000Z" + }, + "end": { + "$date": "2022-03-15T17:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f234253-9e16-44a5-a7a1-1887381678d2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T17:11:40.000Z" + }, + "end": { + "$date": "2022-03-15T17:30:55.000Z" + }, + "events": [ + { + "uuid": "444ad267-d16d-47df-a7e5-5c3d77169be3", + "start": { + "$date": "2022-03-15T17:11:40.000Z" + }, + "end": { + "$date": "2022-03-15T17:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "19d1c008-6c93-4875-ab00-5ffe32e6bdda", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T18:18:55.000Z" + }, + "end": { + "$date": "2022-03-15T18:32:39.000Z" + }, + "events": [ + { + "uuid": "d5745d77-ebe7-44fd-94bb-7667a473a72f", + "start": { + "$date": "2022-03-15T18:18:55.000Z" + }, + "end": { + "$date": "2022-03-15T18:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3138410b-3e02-483f-8c70-76acea08fd5c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-15T19:01:36.000Z" + }, + "end": { + "$date": "2022-03-15T20:43:06.000Z" + }, + "events": [ + { + "uuid": "406282c8-747f-4343-a074-4fc10db6eec0", + "start": { + "$date": "2022-03-15T19:01:36.000Z" + }, + "end": { + "$date": "2022-03-15T20:08:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74a764bd-9a99-4170-ac0b-075fa5ac7e78", + "start": { + "$date": "2022-03-15T20:08:36.000Z" + }, + "end": { + "$date": "2022-03-15T20:28:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8411569e-7ecf-41a6-a6d4-f4e7e8255869", + "start": { + "$date": "2022-03-15T20:28:36.000Z" + }, + "end": { + "$date": "2022-03-15T20:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "776547e8-1494-46be-934f-7614d1b53a2d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-15T21:07:34.000Z" + }, + "end": { + "$date": "2022-03-15T21:38:34.000Z" + }, + "events": [ + { + "uuid": "c50e3bc7-233f-4533-a57c-7c99d17aa012", + "start": { + "$date": "2022-03-15T21:07:34.000Z" + }, + "end": { + "$date": "2022-03-15T21:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4281236a-60fe-4011-878c-a7f9e61822e8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-15T21:18:50.000Z" + }, + "end": { + "$date": "2022-03-15T22:10:01.000Z" + }, + "events": [ + { + "uuid": "fa6ec68f-b920-4941-b60a-2d64b5dc17bb", + "start": { + "$date": "2022-03-15T21:18:50.000Z" + }, + "end": { + "$date": "2022-03-15T22:10:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2f86dc3e-f10b-4986-9bad-55b106245d78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-15T21:33:01.000Z" + }, + "end": { + "$date": "2022-03-15T21:36:36.000Z" + }, + "events": [ + { + "uuid": "fd53f7f2-e521-4737-b066-acd3b21c3ae5", + "start": { + "$date": "2022-03-15T21:33:01.000Z" + }, + "end": { + "$date": "2022-03-15T21:36:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4f278798-ff67-404e-a3f8-04b2d75367eb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-15T22:07:40.000Z" + }, + "end": { + "$date": "2022-03-15T22:15:55.000Z" + }, + "events": [ + { + "uuid": "3fde1271-396b-404f-94b6-1aa4d1c0486c", + "start": { + "$date": "2022-03-15T22:07:40.000Z" + }, + "end": { + "$date": "2022-03-15T22:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e345489d-6a36-413d-b01e-b6e7672f148b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-15T22:57:10.000Z" + }, + "end": { + "$date": "2022-03-15T23:12:16.000Z" + }, + "events": [ + { + "uuid": "3b944788-1fc7-4242-ab78-1c74abef9523", + "start": { + "$date": "2022-03-15T22:57:10.000Z" + }, + "end": { + "$date": "2022-03-15T23:12:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "8655de17-b617-4011-81b8-b7856fdbdb15", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-15T23:02:19.000Z" + }, + "end": { + "$date": "2022-03-15T23:50:28.000Z" + }, + "events": [ + { + "uuid": "6202dfb1-4d9a-474f-8ad8-4d79a78ccea4", + "start": { + "$date": "2022-03-15T23:02:19.000Z" + }, + "end": { + "$date": "2022-03-15T23:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8e02bebf-5718-44d4-ac4a-b70ec1afd8ef", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-15T23:42:39.000Z" + }, + "end": { + "$date": "2022-03-16T00:08:40.000Z" + }, + "events": [ + { + "uuid": "1c86772b-634d-4ca0-be2a-b474c4070b0f", + "start": { + "$date": "2022-03-15T23:42:39.000Z" + }, + "end": { + "$date": "2022-03-16T00:08:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88a877f8-9a67-47e3-a772-770abb026b04", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-15T23:55:06.000Z" + }, + "end": { + "$date": "2022-03-16T00:27:23.000Z" + }, + "events": [ + { + "uuid": "91efaf8e-8b9a-4c70-a145-dcbeb0f4c67e", + "start": { + "$date": "2022-03-15T23:55:06.000Z" + }, + "end": { + "$date": "2022-03-16T00:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "111f5b53-be6b-4bbd-8029-274f1face07a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-16T00:30:24.000Z" + }, + "end": { + "$date": "2022-03-16T06:22:29.000Z" + }, + "events": [ + { + "uuid": "c452b1fa-f335-4060-b1c5-474aee0501b5", + "start": { + "$date": "2022-03-16T00:30:24.000Z" + }, + "end": { + "$date": "2022-03-16T06:22:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "57543631-5496-44f1-ae41-a6cf2bef2cbb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-16T01:08:16.000Z" + }, + "end": { + "$date": "2022-03-16T01:29:07.000Z" + }, + "events": [ + { + "uuid": "093bcfa1-9000-49fc-a4fe-26ad91e3be8a", + "start": { + "$date": "2022-03-16T01:08:16.000Z" + }, + "end": { + "$date": "2022-03-16T01:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "82f2f0f5-34b6-4498-9858-994e7ef84b2e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-16T02:16:12.000Z" + }, + "end": { + "$date": "2022-03-16T03:43:53.000Z" + }, + "events": [ + { + "uuid": "c78860b3-6f09-4040-89d1-c4258bcd6872", + "start": { + "$date": "2022-03-16T02:16:12.000Z" + }, + "end": { + "$date": "2022-03-16T03:43:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "46534101-c722-4dab-b70b-aaa72721bc37", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-16T02:37:46.000Z" + }, + "end": { + "$date": "2022-03-16T03:39:28.000Z" + }, + "events": [ + { + "uuid": "12c04ec8-023a-4733-889d-7bd170dfd3c3", + "start": { + "$date": "2022-03-16T02:37:46.000Z" + }, + "end": { + "$date": "2022-03-16T03:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "514733a7-ee6d-4241-83e5-0d9e5bdbad26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-16T03:33:38.000Z" + }, + "end": { + "$date": "2022-03-16T04:53:44.000Z" + }, + "events": [ + { + "uuid": "c6068da2-a212-48ac-9d07-b81ef7d9ddc5", + "start": { + "$date": "2022-03-16T03:33:38.000Z" + }, + "end": { + "$date": "2022-03-16T04:53:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9677eb46-e028-4802-92f7-bdda8fd718e0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-16T03:47:15.000Z" + }, + "end": { + "$date": "2022-03-16T03:55:21.000Z" + }, + "events": [ + { + "uuid": "dc9d991c-586a-46ba-9c99-09c1549067e0", + "start": { + "$date": "2022-03-16T03:47:15.000Z" + }, + "end": { + "$date": "2022-03-16T03:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "81a0bcd7-6e0a-4c17-8de7-3a47dd18494e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-16T03:47:19.000Z" + }, + "end": { + "$date": "2022-03-16T04:26:15.000Z" + }, + "events": [ + { + "uuid": "4f01ce6f-eb01-4f61-80be-5c1af00e9b4c", + "start": { + "$date": "2022-03-16T03:47:19.000Z" + }, + "end": { + "$date": "2022-03-16T04:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9e55b365-2228-4032-b8d3-b71e371bee7e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-16T03:56:01.000Z" + }, + "end": { + "$date": "2022-03-16T05:25:14.000Z" + }, + "events": [ + { + "uuid": "7faceb8e-9ca8-477e-a759-6b720b66a70d", + "start": { + "$date": "2022-03-16T03:56:01.000Z" + }, + "end": { + "$date": "2022-03-16T05:05:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "93885cfb-7cc0-435c-9af4-cd2ee801f47f", + "start": { + "$date": "2022-03-16T05:05:01.000Z" + }, + "end": { + "$date": "2022-03-16T05:25:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "13e2054a-dca8-4ac0-9d60-57c911b11e79", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-16T04:38:57.000Z" + }, + "end": { + "$date": "2022-03-16T05:37:37.000Z" + }, + "events": [ + { + "uuid": "196480a0-ad69-4290-a2e8-84b0e49afbf0", + "start": { + "$date": "2022-03-16T04:38:57.000Z" + }, + "end": { + "$date": "2022-03-16T05:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6adde40-4573-456c-9d77-8297f210a288", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-16T04:48:14.000Z" + }, + "end": { + "$date": "2022-03-16T05:03:46.000Z" + }, + "events": [ + { + "uuid": "990b7004-3be0-42e0-8ae0-0aceca6a578f", + "start": { + "$date": "2022-03-16T04:48:14.000Z" + }, + "end": { + "$date": "2022-03-16T05:03:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "839d7fe7-e093-4a61-b04a-270c885c377f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-16T05:37:41.000Z" + }, + "end": { + "$date": "2022-03-16T06:05:35.000Z" + }, + "events": [ + { + "uuid": "39e812c3-e3a3-43c3-b353-7c65e22d6759", + "start": { + "$date": "2022-03-16T05:37:41.000Z" + }, + "end": { + "$date": "2022-03-16T06:05:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c8965f49-2223-4d5e-b0bc-c973795f54a9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-16T06:15:48.000Z" + }, + "end": { + "$date": "2022-03-16T06:36:48.000Z" + }, + "events": [ + { + "uuid": "e470ce74-5d00-4ab5-a8d4-f9c5e25c4733", + "start": { + "$date": "2022-03-16T06:15:48.000Z" + }, + "end": { + "$date": "2022-03-16T06:36:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "1ad970d8-9365-432b-aeef-c4575115b816", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-16T07:53:12.000Z" + }, + "end": { + "$date": "2022-03-16T08:50:11.000Z" + }, + "events": [ + { + "uuid": "565689ec-8c7d-4b9c-9376-481b98fe95b0", + "start": { + "$date": "2022-03-16T07:53:12.000Z" + }, + "end": { + "$date": "2022-03-16T08:50:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "ce573076-a90c-4234-b7b9-3630b4b6b87c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-16T12:22:07.000Z" + }, + "end": { + "$date": "2022-03-16T13:38:54.000Z" + }, + "events": [ + { + "uuid": "45ded062-8d0b-4afe-af8d-0e20da47d171", + "start": { + "$date": "2022-03-16T12:22:07.000Z" + }, + "end": { + "$date": "2022-03-16T13:38:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "97c59b94-127f-4425-9fa4-de8a22d15329", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-16T15:23:25.000Z" + }, + "end": { + "$date": "2022-03-16T17:28:48.000Z" + }, + "events": [ + { + "uuid": "432682d5-8e1d-44d3-aef7-b8bc7b93799b", + "start": { + "$date": "2022-03-16T15:23:25.000Z" + }, + "end": { + "$date": "2022-03-16T17:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e759f186-058b-4973-b28d-29a9157efd8b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-16T18:35:34.000Z" + }, + "end": { + "$date": "2022-03-16T18:50:41.000Z" + }, + "events": [ + { + "uuid": "c2428b20-a21d-4bd2-afb4-6007f59189e3", + "start": { + "$date": "2022-03-16T18:35:34.000Z" + }, + "end": { + "$date": "2022-03-16T18:50:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "00b849ef-dae8-4c2b-97c8-4b6f49495741", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-16T20:22:31.000Z" + }, + "end": { + "$date": "2022-03-16T20:25:42.000Z" + }, + "events": [ + { + "uuid": "1a047cf8-de2f-4ca7-a265-ce04e2a89d77", + "start": { + "$date": "2022-03-16T20:22:31.000Z" + }, + "end": { + "$date": "2022-03-16T20:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f7bdfb5e-2161-4c9c-b146-0cf5fde5f1d1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-16T21:06:13.000Z" + }, + "end": { + "$date": "2022-03-16T21:23:52.000Z" + }, + "events": [ + { + "uuid": "c74ad40e-ba16-4a61-bca3-ed149ff52705", + "start": { + "$date": "2022-03-16T21:06:13.000Z" + }, + "end": { + "$date": "2022-03-16T21:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1daa6eb-d356-4592-8478-380a2e16047a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-16T21:24:33.000Z" + }, + "end": { + "$date": "2022-03-16T21:42:33.000Z" + }, + "events": [ + { + "uuid": "825ef59b-dd18-45cd-a746-3d94b3cf83cb", + "start": { + "$date": "2022-03-16T21:24:33.000Z" + }, + "end": { + "$date": "2022-03-16T21:42:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1c3f23d-c2cc-466c-badf-00d4bcfca7de", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-16T21:44:03.000Z" + }, + "end": { + "$date": "2022-03-16T22:21:08.000Z" + }, + "events": [ + { + "uuid": "26f50131-a8a2-4a21-884d-705a0d38fd96", + "start": { + "$date": "2022-03-16T21:44:03.000Z" + }, + "end": { + "$date": "2022-03-16T22:21:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c490cd3b-aa15-4091-868f-1fa5906bd4f9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-16T21:45:39.000Z" + }, + "end": { + "$date": "2022-03-16T22:01:39.000Z" + }, + "events": [ + { + "uuid": "aec98501-5558-4fd8-bf6c-aeb2a401bab2", + "start": { + "$date": "2022-03-16T21:45:39.000Z" + }, + "end": { + "$date": "2022-03-16T22:01:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "afdc8640-dd96-4c79-901b-2411f0cdaa5b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-16T22:02:00.000Z" + }, + "end": { + "$date": "2022-03-16T23:03:36.000Z" + }, + "events": [ + { + "uuid": "8d85ae4b-962d-4f87-9921-89810454a53c", + "start": { + "$date": "2022-03-16T22:02:00.000Z" + }, + "end": { + "$date": "2022-03-16T23:03:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "17f60428-62ad-4953-8a28-b98615297d8d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-16T22:21:21.000Z" + }, + "end": { + "$date": "2022-03-16T22:35:20.000Z" + }, + "events": [ + { + "uuid": "ce552a99-9afc-49e2-beeb-6f7cf5aa6431", + "start": { + "$date": "2022-03-16T22:21:21.000Z" + }, + "end": { + "$date": "2022-03-16T22:35:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "97d00a99-6038-4759-9d9d-ea8656e1ddea", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-17T01:33:10.000Z" + }, + "end": { + "$date": "2022-03-17T02:25:41.000Z" + }, + "events": [ + { + "uuid": "fdd5c1fd-2d42-4436-9a3e-353a80d58926", + "start": { + "$date": "2022-03-17T01:33:10.000Z" + }, + "end": { + "$date": "2022-03-17T02:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "814bba62-8f9f-4e9b-afc6-924880dda983", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T01:51:12.000Z" + }, + "end": { + "$date": "2022-03-17T02:08:53.000Z" + }, + "events": [ + { + "uuid": "21e2d0c7-5715-42b2-82de-fcae4b4fd99e", + "start": { + "$date": "2022-03-17T01:51:12.000Z" + }, + "end": { + "$date": "2022-03-17T02:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9dff8c41-8132-459b-9aa5-24fdeadb04f4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-17T02:25:57.000Z" + }, + "end": { + "$date": "2022-03-17T03:59:23.000Z" + }, + "events": [ + { + "uuid": "b55777b4-24f5-4841-a411-a59b2052e868", + "start": { + "$date": "2022-03-17T02:25:57.000Z" + }, + "end": { + "$date": "2022-03-17T03:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96b66150-2beb-4945-b778-447503a11191", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-17T02:39:02.000Z" + }, + "end": { + "$date": "2022-03-17T04:06:53.000Z" + }, + "events": [ + { + "uuid": "bdf5097f-34f7-439e-9a3c-1def9e63dcc0", + "start": { + "$date": "2022-03-17T02:39:02.000Z" + }, + "end": { + "$date": "2022-03-17T04:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "0bce1ef7-ec60-4fc1-8064-5348ea7f18a6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-17T02:52:16.000Z" + }, + "end": { + "$date": "2022-03-17T04:58:12.000Z" + }, + "events": [ + { + "uuid": "dbddebbc-9bcb-46ed-a021-1ca4eb9fa15e", + "start": { + "$date": "2022-03-17T02:52:16.000Z" + }, + "end": { + "$date": "2022-03-17T04:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "86e07ec8-aa55-4b03-a325-24a26e50dc4f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T03:03:04.000Z" + }, + "end": { + "$date": "2022-03-17T05:07:54.000Z" + }, + "events": [ + { + "uuid": "ceb301d6-321e-465f-97a4-6b2889d5f228", + "start": { + "$date": "2022-03-17T03:03:04.000Z" + }, + "end": { + "$date": "2022-03-17T05:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "467820bb-60cf-4313-8834-82d0f87da043", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-17T01:58:29.000Z" + }, + "end": { + "$date": "2022-03-17T07:27:53.000Z" + }, + "events": [ + { + "uuid": "0a714f1d-9876-4a9c-89ea-b341c17befa6", + "start": { + "$date": "2022-03-17T01:58:29.000Z" + }, + "end": { + "$date": "2022-03-17T07:27:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "356f5344-62c6-4526-b0f5-97f028263d11", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-17T04:02:10.000Z" + }, + "end": { + "$date": "2022-03-17T04:09:28.000Z" + }, + "events": [ + { + "uuid": "c5140101-9aba-4b9c-8c33-ce4dcb63bab4", + "start": { + "$date": "2022-03-17T04:02:10.000Z" + }, + "end": { + "$date": "2022-03-17T04:09:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "18e81024-270a-4be6-b85c-efd16cdab8d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-17T04:07:04.000Z" + }, + "end": { + "$date": "2022-03-17T04:31:33.000Z" + }, + "events": [ + { + "uuid": "aa0759db-2501-4145-8c2c-1290a9503669", + "start": { + "$date": "2022-03-17T04:07:04.000Z" + }, + "end": { + "$date": "2022-03-17T04:31:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2c14d92f-7a08-49a8-807b-c95e2b2cd4ba", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-17T04:21:46.000Z" + }, + "end": { + "$date": "2022-03-17T05:48:23.000Z" + }, + "events": [ + { + "uuid": "8fec4a3a-f402-4b10-8baa-39365a105cac", + "start": { + "$date": "2022-03-17T04:21:46.000Z" + }, + "end": { + "$date": "2022-03-17T05:48:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c50e4445-d09a-4c76-b5e0-45f9a6f4e5c1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-17T04:51:59.000Z" + }, + "end": { + "$date": "2022-03-17T05:31:51.000Z" + }, + "events": [ + { + "uuid": "17102cf2-2e63-4cfe-9443-f2bb22f525c0", + "start": { + "$date": "2022-03-17T04:51:59.000Z" + }, + "end": { + "$date": "2022-03-17T05:31:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d3b34c34-fdee-4e72-be7c-2369114e36d2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-17T05:29:12.000Z" + }, + "end": { + "$date": "2022-03-17T06:05:19.000Z" + }, + "events": [ + { + "uuid": "4a92052f-ef0d-43ce-9dff-cd245df041b9", + "start": { + "$date": "2022-03-17T05:29:12.000Z" + }, + "end": { + "$date": "2022-03-17T06:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d15a7258-fb84-4c36-aac8-e58fdcfc8f43", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-17T05:33:05.000Z" + }, + "end": { + "$date": "2022-03-17T05:34:16.000Z" + }, + "events": [ + { + "uuid": "0e2df643-3e01-4510-bf36-b983bbdc56eb", + "start": { + "$date": "2022-03-17T05:33:05.000Z" + }, + "end": { + "$date": "2022-03-17T05:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8b6485e-27c1-4a6e-814e-51f42be251fe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-17T05:48:33.000Z" + }, + "end": { + "$date": "2022-03-17T08:23:27.000Z" + }, + "events": [ + { + "uuid": "9646041a-a08c-4ea2-bb4c-21108e42f2ad", + "start": { + "$date": "2022-03-17T05:48:33.000Z" + }, + "end": { + "$date": "2022-03-17T08:21:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f6cd76f-8e72-4933-864e-eaa2200d0847", + "start": { + "$date": "2022-03-17T08:21:33.000Z" + }, + "end": { + "$date": "2022-03-17T08:23:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1f58e831-55f3-4ce1-bb23-449112ca00aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-17T05:57:01.000Z" + }, + "end": { + "$date": "2022-03-17T06:26:18.000Z" + }, + "events": [ + { + "uuid": "6cdeaf49-0d11-4c39-9ff6-33e78816b72e", + "start": { + "$date": "2022-03-17T05:57:01.000Z" + }, + "end": { + "$date": "2022-03-17T06:26:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d6b32669-7545-4b92-bbfc-225232a6277e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-17T06:05:35.000Z" + }, + "end": { + "$date": "2022-03-17T07:42:08.000Z" + }, + "events": [ + { + "uuid": "ae45c1c4-c1a8-444f-b6fd-8a2aa11aadd4", + "start": { + "$date": "2022-03-17T06:05:35.000Z" + }, + "end": { + "$date": "2022-03-17T07:42:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "115d3dc7-585f-4a76-b863-f17837deec16", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-17T12:01:55.000Z" + }, + "end": { + "$date": "2022-03-17T12:58:17.000Z" + }, + "events": [ + { + "uuid": "7b1257a7-4bad-4a8c-9ffa-38eb7a40cba6", + "start": { + "$date": "2022-03-17T12:01:55.000Z" + }, + "end": { + "$date": "2022-03-17T12:58:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ac177c77-62cf-49be-a903-427610eef692", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T14:59:14.000Z" + }, + "end": { + "$date": "2022-03-17T15:26:58.000Z" + }, + "events": [ + { + "uuid": "681520ed-cd89-427b-80fd-3d8faa544adc", + "start": { + "$date": "2022-03-17T14:59:14.000Z" + }, + "end": { + "$date": "2022-03-17T15:09:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1d05207-eda7-41d7-8b96-aa70ce150fe2", + "start": { + "$date": "2022-03-17T15:09:14.000Z" + }, + "end": { + "$date": "2022-03-17T15:12:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "76ca00e7-1fd8-4974-a05f-3dd5059250be", + "start": { + "$date": "2022-03-17T15:12:14.000Z" + }, + "end": { + "$date": "2022-03-17T15:22:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd1a96c7-dd13-46a6-8a34-52c0773ee01a", + "start": { + "$date": "2022-03-17T15:22:14.000Z" + }, + "end": { + "$date": "2022-03-17T15:26:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c1fb7f03-c8ee-4ee7-9900-ea2ad5992ce9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T15:45:05.000Z" + }, + "end": { + "$date": "2022-03-17T16:32:22.000Z" + }, + "events": [ + { + "uuid": "900f9d55-e630-4670-b886-66c7005d5382", + "start": { + "$date": "2022-03-17T15:45:05.000Z" + }, + "end": { + "$date": "2022-03-17T16:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57700e70-0c8b-4ef2-b4ef-713aca798013", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T16:38:58.000Z" + }, + "end": { + "$date": "2022-03-17T17:00:18.000Z" + }, + "events": [ + { + "uuid": "ca7d93a7-ada4-4137-9b4b-dadea2890074", + "start": { + "$date": "2022-03-17T16:38:58.000Z" + }, + "end": { + "$date": "2022-03-17T17:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60fef30a-1265-467c-b43e-221c3fd51ac7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T17:10:49.000Z" + }, + "end": { + "$date": "2022-03-17T17:31:05.000Z" + }, + "events": [ + { + "uuid": "42810080-fa8a-4ed4-9656-1c7552bbbb0d", + "start": { + "$date": "2022-03-17T17:10:49.000Z" + }, + "end": { + "$date": "2022-03-17T17:31:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d53c538-641b-4d1f-8d93-7a2ba18b5106", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-17T18:12:20.000Z" + }, + "end": { + "$date": "2022-03-17T20:17:07.000Z" + }, + "events": [ + { + "uuid": "c625ef0d-b701-449a-a48b-ebcaa8bb0eaa", + "start": { + "$date": "2022-03-17T18:12:20.000Z" + }, + "end": { + "$date": "2022-03-17T18:42:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5c06fdd-934b-4780-b4f7-4bd92c92ceb2", + "start": { + "$date": "2022-03-17T18:42:20.000Z" + }, + "end": { + "$date": "2022-03-17T20:07:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "662198c8-a00a-4766-95f9-c0239bcf3cec", + "start": { + "$date": "2022-03-17T20:07:20.000Z" + }, + "end": { + "$date": "2022-03-17T20:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d0ddefd-30e9-453b-b947-604b1a5edcbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T20:42:06.000Z" + }, + "end": { + "$date": "2022-03-17T21:23:03.000Z" + }, + "events": [ + { + "uuid": "fb1c2277-82ad-4dff-82f9-483c634e94d4", + "start": { + "$date": "2022-03-17T20:42:06.000Z" + }, + "end": { + "$date": "2022-03-17T21:02:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "824b06d6-d826-48c1-80c2-2ef3547cb302", + "start": { + "$date": "2022-03-17T21:02:06.000Z" + }, + "end": { + "$date": "2022-03-17T21:16:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c377cb5f-5b0e-4a6e-aaa5-a6a343a08990", + "start": { + "$date": "2022-03-17T21:16:06.000Z" + }, + "end": { + "$date": "2022-03-17T21:23:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "50ab0816-1c8d-4175-b4b7-0f2d9d574478", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-17T21:51:42.000Z" + }, + "end": { + "$date": "2022-03-17T22:00:28.000Z" + }, + "events": [ + { + "uuid": "b44236b6-b5ee-4446-8a16-e0dddb0a6127", + "start": { + "$date": "2022-03-17T21:51:42.000Z" + }, + "end": { + "$date": "2022-03-17T22:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b1733a32-bfa8-449b-9f65-03c17f6bb070", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T21:58:03.000Z" + }, + "end": { + "$date": "2022-03-17T21:59:18.000Z" + }, + "events": [ + { + "uuid": "93883f46-c694-4a22-9d02-cb54003778df", + "start": { + "$date": "2022-03-17T21:58:03.000Z" + }, + "end": { + "$date": "2022-03-17T21:59:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d2b4adfd-0da2-41da-b655-c6ecee1505b5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-17T22:21:25.000Z" + }, + "end": { + "$date": "2022-03-17T23:29:59.000Z" + }, + "events": [ + { + "uuid": "5ac4d34f-fe81-4ea9-9f21-756cea1aecb2", + "start": { + "$date": "2022-03-17T22:21:25.000Z" + }, + "end": { + "$date": "2022-03-17T23:18:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0e4a0bbb-5136-422d-aaab-6f1dd0dcb288", + "start": { + "$date": "2022-03-17T23:18:25.000Z" + }, + "end": { + "$date": "2022-03-17T23:29:59.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "29ae445c-4a59-48db-95b5-22f7d45a0be8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-17T22:25:59.000Z" + }, + "end": { + "$date": "2022-03-17T22:41:26.000Z" + }, + "events": [ + { + "uuid": "7fc19342-b05c-48a8-a50a-030fd975cf06", + "start": { + "$date": "2022-03-17T22:25:59.000Z" + }, + "end": { + "$date": "2022-03-17T22:41:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "7d5b529c-d8cf-4e92-ac32-c2661ed205d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-17T22:42:07.000Z" + }, + "end": { + "$date": "2022-03-17T23:12:12.000Z" + }, + "events": [ + { + "uuid": "0a21e5eb-168b-4f8c-814a-862ccbaeb184", + "start": { + "$date": "2022-03-17T22:42:07.000Z" + }, + "end": { + "$date": "2022-03-17T23:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7f94cf8c-324b-429c-abb4-ebef616ed897", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T00:42:17.000Z" + }, + "end": { + "$date": "2022-03-18T01:35:47.000Z" + }, + "events": [ + { + "uuid": "d1a4bb84-2a2d-40b9-b388-a46e96c6c9bb", + "start": { + "$date": "2022-03-18T00:42:17.000Z" + }, + "end": { + "$date": "2022-03-18T01:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "b311ece6-9e5a-4ae8-80b7-9c3eed526fae", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-18T01:49:09.000Z" + }, + "end": { + "$date": "2022-03-18T02:20:28.000Z" + }, + "events": [ + { + "uuid": "bc69bc8f-2d75-4e8d-8605-f922b33266a3", + "start": { + "$date": "2022-03-18T01:49:09.000Z" + }, + "end": { + "$date": "2022-03-18T01:57:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7bd99483-8ab6-4c54-870b-c8c22cd5518c", + "start": { + "$date": "2022-03-18T01:57:09.000Z" + }, + "end": { + "$date": "2022-03-18T02:20:28.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7f1dc378-ecb5-4b64-847d-179f92956173", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-17T05:48:33.000Z" + }, + "end": { + "$date": "2022-03-18T02:10:19.000Z" + }, + "events": [ + { + "uuid": "0398eba1-f053-4334-8edb-4b4ab713cdca", + "start": { + "$date": "2022-03-17T05:48:33.000Z" + }, + "end": { + "$date": "2022-03-17T05:49:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e902f83-1b06-4a33-bf78-06f4c558624a", + "start": { + "$date": "2022-03-17T05:49:33.000Z" + }, + "end": { + "$date": "2022-03-18T02:10:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4c13e4e7-0dc6-46b8-ae81-0a806e593ef3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-18T02:10:59.000Z" + }, + "end": { + "$date": "2022-03-18T02:38:05.000Z" + }, + "events": [ + { + "uuid": "8f47ac72-516f-4a28-ba96-1defcd31579b", + "start": { + "$date": "2022-03-18T02:10:59.000Z" + }, + "end": { + "$date": "2022-03-18T02:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d73796c-6517-4609-ba02-6db0c634bcc3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T02:42:55.000Z" + }, + "end": { + "$date": "2022-03-18T03:02:41.000Z" + }, + "events": [ + { + "uuid": "fd7f039c-490a-42da-b5c7-8053d4626c15", + "start": { + "$date": "2022-03-18T02:42:55.000Z" + }, + "end": { + "$date": "2022-03-18T03:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "50d21c44-ed0f-4b92-b71f-a4119344193a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-18T02:46:41.000Z" + }, + "end": { + "$date": "2022-03-18T02:49:36.000Z" + }, + "events": [ + { + "uuid": "4f3242e9-1000-4068-960c-c6e7548b3c0a", + "start": { + "$date": "2022-03-18T02:46:41.000Z" + }, + "end": { + "$date": "2022-03-18T02:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "474f638e-edf1-44a6-abab-589df9a35948", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-18T02:50:10.000Z" + }, + "end": { + "$date": "2022-03-18T03:27:28.000Z" + }, + "events": [ + { + "uuid": "d2193a8a-f620-4ef8-b00d-d52a7b3ae8b6", + "start": { + "$date": "2022-03-18T02:50:10.000Z" + }, + "end": { + "$date": "2022-03-18T03:27:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a724a670-eae8-4dd9-9a5d-e8839bf3b5be", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-18T02:50:46.000Z" + }, + "end": { + "$date": "2022-03-18T03:08:46.000Z" + }, + "events": [ + { + "uuid": "40911fb2-7aed-4073-ac21-cc7c25dc52b7", + "start": { + "$date": "2022-03-18T02:50:46.000Z" + }, + "end": { + "$date": "2022-03-18T03:08:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "704d1a5a-6075-46d5-92b9-cd1884c71982", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T03:04:47.000Z" + }, + "end": { + "$date": "2022-03-18T03:20:46.000Z" + }, + "events": [ + { + "uuid": "0f5f1275-f937-4403-867b-55405352950e", + "start": { + "$date": "2022-03-18T03:04:47.000Z" + }, + "end": { + "$date": "2022-03-18T03:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "35ff58f6-e8cc-4ee2-83d1-bc4e3a2ad9e7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-18T03:09:02.000Z" + }, + "end": { + "$date": "2022-03-18T05:58:54.000Z" + }, + "events": [ + { + "uuid": "67cfec4c-0611-49e5-9a6d-cbf354c2e8d6", + "start": { + "$date": "2022-03-18T03:09:02.000Z" + }, + "end": { + "$date": "2022-03-18T05:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "ead0d940-0c4b-4b10-849f-07e503605e8a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-18T03:33:46.000Z" + }, + "end": { + "$date": "2022-03-18T03:39:20.000Z" + }, + "events": [ + { + "uuid": "7073a425-e1ef-44d1-8a21-81eecc3b85fe", + "start": { + "$date": "2022-03-18T03:33:46.000Z" + }, + "end": { + "$date": "2022-03-18T03:39:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6e059954-7a4a-4e08-bbcb-67fb33ee6cca", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-18T03:36:23.000Z" + }, + "end": { + "$date": "2022-03-18T06:49:54.000Z" + }, + "events": [ + { + "uuid": "df45f81b-e31d-49a0-a8d7-6abeda58d355", + "start": { + "$date": "2022-03-18T03:36:23.000Z" + }, + "end": { + "$date": "2022-03-18T06:49:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "21352952-e8a0-48a1-9314-c97f1b37a68b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-18T03:38:16.000Z" + }, + "end": { + "$date": "2022-03-18T05:17:11.000Z" + }, + "events": [ + { + "uuid": "fd6391a1-495e-4a9f-b905-6aa892603353", + "start": { + "$date": "2022-03-18T03:38:16.000Z" + }, + "end": { + "$date": "2022-03-18T05:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ae0c1b48-1ea7-4d23-9f52-e642757c8dbe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-18T01:55:15.000Z" + }, + "end": { + "$date": "2022-03-18T07:31:50.000Z" + }, + "events": [ + { + "uuid": "79916c29-9df0-4922-8c1b-04b0ddc85b76", + "start": { + "$date": "2022-03-18T01:55:15.000Z" + }, + "end": { + "$date": "2022-03-18T07:31:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "7af6e24f-1c54-4edc-8b7d-19093366cbf9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-18T04:33:37.000Z" + }, + "end": { + "$date": "2022-03-18T06:30:49.000Z" + }, + "events": [ + { + "uuid": "0d4df4a3-9de3-4cdc-b58f-e1e5dccb218b", + "start": { + "$date": "2022-03-18T04:33:37.000Z" + }, + "end": { + "$date": "2022-03-18T06:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "29e5fde2-a17f-4e4a-b5ea-3bf20a8daf83", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-18T04:33:59.000Z" + }, + "end": { + "$date": "2022-03-18T11:13:45.000Z" + }, + "events": [ + { + "uuid": "cefd43ce-755d-4e93-9827-584181ecd805", + "start": { + "$date": "2022-03-18T04:33:59.000Z" + }, + "end": { + "$date": "2022-03-18T11:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "6053910c-138e-4577-88fb-d78f434b5c9f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-18T05:22:12.000Z" + }, + "end": { + "$date": "2022-03-18T05:24:46.000Z" + }, + "events": [ + { + "uuid": "9268cdf6-9692-4cca-be8d-db59c42adf1c", + "start": { + "$date": "2022-03-18T05:22:12.000Z" + }, + "end": { + "$date": "2022-03-18T05:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "9adcd91e-06e0-4b77-9d0d-0396ca8ca994", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-18T05:27:47.000Z" + }, + "end": { + "$date": "2022-03-18T05:42:45.000Z" + }, + "events": [ + { + "uuid": "fc9ed365-2973-45ca-81e0-274a8fbcbaa8", + "start": { + "$date": "2022-03-18T05:27:47.000Z" + }, + "end": { + "$date": "2022-03-18T05:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e3da658e-5be4-4828-b2ee-6ba535d5a301", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-18T05:48:01.000Z" + }, + "end": { + "$date": "2022-03-18T06:04:44.000Z" + }, + "events": [ + { + "uuid": "9b347fcd-4785-42bf-b167-8dd7bc368281", + "start": { + "$date": "2022-03-18T05:48:01.000Z" + }, + "end": { + "$date": "2022-03-18T06:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "27a02d6f-858b-47ea-9857-46d551052d00", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-18T05:48:40.000Z" + }, + "end": { + "$date": "2022-03-18T06:41:08.000Z" + }, + "events": [ + { + "uuid": "0b93c6c3-ce53-4377-be10-a96f13b5de53", + "start": { + "$date": "2022-03-18T05:48:40.000Z" + }, + "end": { + "$date": "2022-03-18T06:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5f80f068-70ac-4964-8af5-275ba00e72d7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-18T06:33:23.000Z" + }, + "end": { + "$date": "2022-03-18T06:45:44.000Z" + }, + "events": [ + { + "uuid": "73df9276-f73e-4161-9d99-0b8a54cb22cd", + "start": { + "$date": "2022-03-18T06:33:23.000Z" + }, + "end": { + "$date": "2022-03-18T06:45:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "3d95d451-82ab-4fbb-8596-146da80b880f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-18T06:48:19.000Z" + }, + "end": { + "$date": "2022-03-18T07:39:47.000Z" + }, + "events": [ + { + "uuid": "c508709c-50d6-463e-a789-14c946213e66", + "start": { + "$date": "2022-03-18T06:48:19.000Z" + }, + "end": { + "$date": "2022-03-18T07:39:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b450930e-c676-4521-94fe-da3e804ff499", + "uuid": "23acf740-5f93-41c6-a7cd-858636e27c80", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-18T08:06:12.000Z" + }, + "end": { + "$date": "2022-03-18T08:14:40.000Z" + }, + "events": [ + { + "uuid": "8f34dd43-2e53-4778-9301-1c0ab42c1284", + "start": { + "$date": "2022-03-18T08:06:12.000Z" + }, + "end": { + "$date": "2022-03-18T08:14:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "3f0347a8-e798-40ff-a864-01e552eaa69f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-18T14:38:55.000Z" + }, + "end": { + "$date": "2022-03-18T16:25:51.000Z" + }, + "events": [ + { + "uuid": "1d4c277e-0b97-4895-a63f-3bd86cdcc4a0", + "start": { + "$date": "2022-03-18T14:38:55.000Z" + }, + "end": { + "$date": "2022-03-18T16:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3eb4c884-7b94-4342-8dd4-67c0e7b18176", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T16:10:45.000Z" + }, + "end": { + "$date": "2022-03-18T16:29:10.000Z" + }, + "events": [ + { + "uuid": "a8e4527f-b0cc-4aff-9a25-81d5cfdd6b9f", + "start": { + "$date": "2022-03-18T16:10:45.000Z" + }, + "end": { + "$date": "2022-03-18T16:29:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d50ab65-7358-4a36-9a37-e68cdaf659f0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T16:30:21.000Z" + }, + "end": { + "$date": "2022-03-18T16:46:01.000Z" + }, + "events": [ + { + "uuid": "e161559d-8788-452b-8e8e-22378f038dd8", + "start": { + "$date": "2022-03-18T16:30:21.000Z" + }, + "end": { + "$date": "2022-03-18T16:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14090ba3-ac2a-449d-b294-9fd5ca7e8d20", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T16:46:31.000Z" + }, + "end": { + "$date": "2022-03-18T17:35:42.000Z" + }, + "events": [ + { + "uuid": "63aafdce-0c16-4919-abeb-82152cbd7ea6", + "start": { + "$date": "2022-03-18T16:46:31.000Z" + }, + "end": { + "$date": "2022-03-18T17:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfa7074b-89fe-4b9f-b83e-712a7a81c2be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-18T17:38:33.000Z" + }, + "end": { + "$date": "2022-03-18T17:52:23.000Z" + }, + "events": [ + { + "uuid": "e0e1a1e7-3d40-4429-b386-704b4bb10e45", + "start": { + "$date": "2022-03-18T17:38:33.000Z" + }, + "end": { + "$date": "2022-03-18T17:52:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4b31f2c7-034f-476e-9694-73a02cdbb01e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-18T18:14:12.000Z" + }, + "end": { + "$date": "2022-03-18T19:03:37.000Z" + }, + "events": [ + { + "uuid": "8cb035d2-644d-404e-ac41-c12ea461cd52", + "start": { + "$date": "2022-03-18T18:14:12.000Z" + }, + "end": { + "$date": "2022-03-18T19:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "06e0ddaf-8280-439e-8c6e-2bc785abadbf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-18T19:43:42.000Z" + }, + "end": { + "$date": "2022-03-18T19:52:24.000Z" + }, + "events": [ + { + "uuid": "13f42af7-6ce4-4c82-9df2-5afa2806345a", + "start": { + "$date": "2022-03-18T19:43:42.000Z" + }, + "end": { + "$date": "2022-03-18T19:52:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a7689402-2503-40c5-a245-5f2064939e49", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-18T20:10:27.000Z" + }, + "end": { + "$date": "2022-03-18T21:28:54.000Z" + }, + "events": [ + { + "uuid": "1967faf9-5b38-45f8-8776-7902819f516d", + "start": { + "$date": "2022-03-18T20:10:27.000Z" + }, + "end": { + "$date": "2022-03-18T21:28:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "85ed829c-627c-4c98-aa75-84fded080965", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-18T21:07:33.000Z" + }, + "end": { + "$date": "2022-03-18T21:29:55.000Z" + }, + "events": [ + { + "uuid": "e2f25ab0-fc62-45eb-ad40-54276b5660d9", + "start": { + "$date": "2022-03-18T21:07:33.000Z" + }, + "end": { + "$date": "2022-03-18T21:29:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b5b479c4-f096-4c4b-89e5-88f9fe452552", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-18T21:55:36.000Z" + }, + "end": { + "$date": "2022-03-18T22:24:55.000Z" + }, + "events": [ + { + "uuid": "4d8a2844-b245-4f37-a0d4-a687c81cb37b", + "start": { + "$date": "2022-03-18T21:55:36.000Z" + }, + "end": { + "$date": "2022-03-18T22:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "46ab5ed6-e2e5-4b83-b6c2-0acd4085f442", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-18T22:34:25.000Z" + }, + "end": { + "$date": "2022-03-19T01:06:02.000Z" + }, + "events": [ + { + "uuid": "2d971534-5fe3-4835-8ecb-1907a1436948", + "start": { + "$date": "2022-03-18T22:34:25.000Z" + }, + "end": { + "$date": "2022-03-19T01:06:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", + "uuid": "f3af0f62-5dbb-4066-b091-08483dbcd4e4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-18T21:47:48.000Z" + }, + "end": { + "$date": "2022-03-18T23:19:03.000Z" + }, + "events": [ + { + "uuid": "12e52089-ff79-47fb-a4f4-b444fe22a7ed", + "start": { + "$date": "2022-03-18T21:47:48.000Z" + }, + "end": { + "$date": "2022-03-18T22:07:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e886141b-98f7-4d03-ab58-136471d0d7b2", + "start": { + "$date": "2022-03-18T22:07:48.000Z" + }, + "end": { + "$date": "2022-03-18T22:08:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "82390c7b-2d7d-4e0a-8398-e6cf3a40333e", + "start": { + "$date": "2022-03-18T22:08:48.000Z" + }, + "end": { + "$date": "2022-03-18T23:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "959f1e39-fa39-4fab-9446-e9097077aa9a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-18T23:49:38.000Z" + }, + "end": { + "$date": "2022-03-18T23:51:18.000Z" + }, + "events": [ + { + "uuid": "0e08981a-9c38-4e63-8ad0-0489ac63f065", + "start": { + "$date": "2022-03-18T23:49:38.000Z" + }, + "end": { + "$date": "2022-03-18T23:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "6a2db36d-0212-4f0d-83b4-b9e83e300991", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-18T23:51:38.000Z" + }, + "end": { + "$date": "2022-03-19T05:31:48.000Z" + }, + "events": [ + { + "uuid": "f25daec3-34eb-4d38-9ef4-c9580fd2586c", + "start": { + "$date": "2022-03-18T23:51:38.000Z" + }, + "end": { + "$date": "2022-03-19T05:31:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "09bf7441-60f1-4328-b6de-5001abe80317", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-18T23:52:59.000Z" + }, + "end": { + "$date": "2022-03-19T01:20:11.000Z" + }, + "events": [ + { + "uuid": "a07c71c4-5981-470c-ae33-36424fd59b21", + "start": { + "$date": "2022-03-18T23:52:59.000Z" + }, + "end": { + "$date": "2022-03-19T01:20:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "2c6026bb-7f31-41c6-b375-dc360b8f5289", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-18T22:34:25.000Z" + }, + "end": { + "$date": "2022-03-19T03:48:05.000Z" + }, + "events": [ + { + "uuid": "4ddfd844-64b1-4d9c-88b3-6edb83aa8bfd", + "start": { + "$date": "2022-03-18T22:34:25.000Z" + }, + "end": { + "$date": "2022-03-19T03:48:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2b974bc8-db6c-49f1-b1e2-a9619fa39f13", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-19T02:23:23.000Z" + }, + "end": { + "$date": "2022-03-19T03:32:39.000Z" + }, + "events": [ + { + "uuid": "83f196f0-69b1-43ca-945c-d1b536b4161f", + "start": { + "$date": "2022-03-19T02:23:23.000Z" + }, + "end": { + "$date": "2022-03-19T03:32:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "402a2308-2c26-4168-87b2-8e18f19879b4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-19T02:32:06.000Z" + }, + "end": { + "$date": "2022-03-19T02:43:23.000Z" + }, + "events": [ + { + "uuid": "7c546164-20c5-47ad-9364-59b1bb144392", + "start": { + "$date": "2022-03-19T02:32:06.000Z" + }, + "end": { + "$date": "2022-03-19T02:43:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "622cd277-5971-4b85-badb-556f1daf31c8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-19T02:35:17.000Z" + }, + "end": { + "$date": "2022-03-19T02:40:06.000Z" + }, + "events": [ + { + "uuid": "2a0006fa-17e3-4657-897a-1933dbe83f5a", + "start": { + "$date": "2022-03-19T02:35:17.000Z" + }, + "end": { + "$date": "2022-03-19T02:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "921c1e70-ab5a-4b59-a1fe-86d85453f04e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-19T02:40:37.000Z" + }, + "end": { + "$date": "2022-03-19T08:33:11.000Z" + }, + "events": [ + { + "uuid": "bb8d0300-e16e-4c24-a46c-f25614b9eb9b", + "start": { + "$date": "2022-03-19T02:40:37.000Z" + }, + "end": { + "$date": "2022-03-19T08:33:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "8be013d7-78c3-48f4-9a86-e5b1868e231c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-19T02:43:33.000Z" + }, + "end": { + "$date": "2022-03-19T07:34:03.000Z" + }, + "events": [ + { + "uuid": "116a5e98-bcb8-4535-9945-3be237d0493a", + "start": { + "$date": "2022-03-19T02:43:33.000Z" + }, + "end": { + "$date": "2022-03-19T07:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "8eb014e9-1dc2-42a0-b1cb-746ede62500d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-19T03:24:34.000Z" + }, + "end": { + "$date": "2022-03-19T06:32:33.000Z" + }, + "events": [ + { + "uuid": "8c11119a-3cb2-4448-9872-5ba9ebc4f62b", + "start": { + "$date": "2022-03-19T03:24:34.000Z" + }, + "end": { + "$date": "2022-03-19T06:32:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "fbf61494-29be-4b0a-b2f2-0a2ab50ad6c5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-19T04:57:46.000Z" + }, + "end": { + "$date": "2022-03-19T05:06:46.000Z" + }, + "events": [ + { + "uuid": "4a949def-0a31-4317-8bbc-527e9c6d072e", + "start": { + "$date": "2022-03-19T04:57:46.000Z" + }, + "end": { + "$date": "2022-03-19T05:06:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "9adcad2e-244f-49b8-b644-f68a2a290384", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-19T05:44:04.000Z" + }, + "end": { + "$date": "2022-03-19T07:50:47.000Z" + }, + "events": [ + { + "uuid": "b0f35d3e-7f0e-48e5-b11e-b1576e04e671", + "start": { + "$date": "2022-03-19T05:44:04.000Z" + }, + "end": { + "$date": "2022-03-19T07:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "7d45ef25-2ac6-4914-b7ff-49b01aa42678", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-19T07:14:57.000Z" + }, + "end": { + "$date": "2022-03-19T07:56:37.000Z" + }, + "events": [ + { + "uuid": "82ef3a17-3119-480a-abbb-76b279aa66f7", + "start": { + "$date": "2022-03-19T07:14:57.000Z" + }, + "end": { + "$date": "2022-03-19T07:56:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "27793ac3-f6ea-4d76-b68a-50eba4b21185", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-19T14:39:39.000Z" + }, + "end": { + "$date": "2022-03-19T15:17:26.000Z" + }, + "events": [ + { + "uuid": "3fb513c1-f4ce-47f3-8220-89217c3d8699", + "start": { + "$date": "2022-03-19T14:39:39.000Z" + }, + "end": { + "$date": "2022-03-19T15:17:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "86d2c506-247a-44cb-b559-e8968b0891fb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-19T15:19:53.000Z" + }, + "end": { + "$date": "2022-03-19T16:04:32.000Z" + }, + "events": [ + { + "uuid": "cb08e3f3-ba8b-4c40-b2eb-1b30f8453a63", + "start": { + "$date": "2022-03-19T15:19:53.000Z" + }, + "end": { + "$date": "2022-03-19T16:04:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "67303f24-aa63-42c3-9e19-6237c83f4e34", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-19T16:54:49.000Z" + }, + "end": { + "$date": "2022-03-19T16:59:40.000Z" + }, + "events": [ + { + "uuid": "9420e444-f0b9-4e43-b9fd-485433493684", + "start": { + "$date": "2022-03-19T16:54:49.000Z" + }, + "end": { + "$date": "2022-03-19T16:59:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4b56c508-7f9a-4cee-bebd-905e4343ef2f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-19T17:22:43.000Z" + }, + "end": { + "$date": "2022-03-19T17:43:33.000Z" + }, + "events": [ + { + "uuid": "722bacc8-d37b-4b16-a92b-8e3d5d728ade", + "start": { + "$date": "2022-03-19T17:22:43.000Z" + }, + "end": { + "$date": "2022-03-19T17:43:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "1f8745d1-0409-4475-af65-b94055f50be9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-19T17:29:12.000Z" + }, + "end": { + "$date": "2022-03-19T17:52:04.000Z" + }, + "events": [ + { + "uuid": "cbe090e9-6222-413a-8f8c-ea9d431c0f20", + "start": { + "$date": "2022-03-19T17:29:12.000Z" + }, + "end": { + "$date": "2022-03-19T17:52:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "062cd841-34f4-486c-8404-1e1b0acf87de", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-19T17:55:44.000Z" + }, + "end": { + "$date": "2022-03-19T18:08:17.000Z" + }, + "events": [ + { + "uuid": "098bcb38-aadf-452b-8125-0e231854a73b", + "start": { + "$date": "2022-03-19T17:55:44.000Z" + }, + "end": { + "$date": "2022-03-19T18:08:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e449cbc2-f800-4ed6-8550-2e27188d77cd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-19T18:10:40.000Z" + }, + "end": { + "$date": "2022-03-19T18:26:55.000Z" + }, + "events": [ + { + "uuid": "1ab25d0a-4ba9-45b0-934a-e242ac0c9ce0", + "start": { + "$date": "2022-03-19T18:10:40.000Z" + }, + "end": { + "$date": "2022-03-19T18:26:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "222e5636-3854-44e0-b695-7b64cab418bc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-19T18:29:16.000Z" + }, + "end": { + "$date": "2022-03-19T18:41:32.000Z" + }, + "events": [ + { + "uuid": "62bd6b11-70ed-4311-a5d0-3ab36286c9c5", + "start": { + "$date": "2022-03-19T18:29:16.000Z" + }, + "end": { + "$date": "2022-03-19T18:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d2cf094-b7d5-43e5-ab10-987f692a6c7d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-19T18:53:30.000Z" + }, + "end": { + "$date": "2022-03-19T19:07:34.000Z" + }, + "events": [ + { + "uuid": "43017bac-a9fc-4655-a288-912600046fb5", + "start": { + "$date": "2022-03-19T18:53:30.000Z" + }, + "end": { + "$date": "2022-03-19T19:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "4ee77ab9-940a-458c-8911-4718a8ece6d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-19T19:27:22.000Z" + }, + "end": { + "$date": "2022-03-20T07:17:30.000Z" + }, + "events": [ + { + "uuid": "d3993de8-fcef-499f-b905-5f0a0f6278b2", + "start": { + "$date": "2022-03-19T19:27:22.000Z" + }, + "end": { + "$date": "2022-03-20T07:17:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f8a62d24-1b14-4a86-856c-522660e720c3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-19T19:36:26.000Z" + }, + "end": { + "$date": "2022-03-19T19:43:46.000Z" + }, + "events": [ + { + "uuid": "d7f5cfad-3ef6-4ec8-a50a-2b46accd3b2e", + "start": { + "$date": "2022-03-19T19:36:26.000Z" + }, + "end": { + "$date": "2022-03-19T19:43:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0b46183e-df36-408b-b27a-4632e2dc9486", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-19T20:25:28.000Z" + }, + "end": { + "$date": "2022-03-19T21:31:03.000Z" + }, + "events": [ + { + "uuid": "cb28bb65-7de6-4fe0-915b-c73a099131e1", + "start": { + "$date": "2022-03-19T20:25:28.000Z" + }, + "end": { + "$date": "2022-03-19T21:31:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "231b28ec-58ca-4045-9b65-fcab63c87a3a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-19T22:12:59.000Z" + }, + "end": { + "$date": "2022-03-20T00:47:59.000Z" + }, + "events": [ + { + "uuid": "f854e8c0-eefa-44f2-a962-29fb1b13e6f2", + "start": { + "$date": "2022-03-19T22:12:59.000Z" + }, + "end": { + "$date": "2022-03-20T00:47:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c12423b-aaed-43b3-9d2e-ddf9e557e2b7", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-19T23:57:50.000Z" + }, + "end": { + "$date": "2022-03-20T00:36:35.000Z" + }, + "events": [ + { + "uuid": "4380a8d8-8277-4b56-b18c-debbcca312ca", + "start": { + "$date": "2022-03-19T23:57:50.000Z" + }, + "end": { + "$date": "2022-03-20T00:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e70c7bc5-695a-491a-8c44-39aaf3d8e204", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-20T00:20:24.000Z" + }, + "end": { + "$date": "2022-03-20T01:00:15.000Z" + }, + "events": [ + { + "uuid": "6bd28c8a-10b6-4942-aea0-4471bd1a9de1", + "start": { + "$date": "2022-03-20T00:20:24.000Z" + }, + "end": { + "$date": "2022-03-20T01:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa15b1b6-f7dc-47ef-9a73-9cf72bbe6be3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T00:44:31.000Z" + }, + "end": { + "$date": "2022-03-20T01:10:12.000Z" + }, + "events": [ + { + "uuid": "0db22225-5761-4bd7-819a-9ed649b33eb2", + "start": { + "$date": "2022-03-20T00:44:31.000Z" + }, + "end": { + "$date": "2022-03-20T01:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "78484ba1-d9b7-491f-bcda-3468a97842a4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-20T01:26:26.000Z" + }, + "end": { + "$date": "2022-03-20T01:54:58.000Z" + }, + "events": [ + { + "uuid": "5251d8ad-6142-4ce1-9062-75fd2d56f1f2", + "start": { + "$date": "2022-03-20T01:26:26.000Z" + }, + "end": { + "$date": "2022-03-20T01:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "93b42391-a255-47ab-8090-78a836afdeee", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T02:32:51.000Z" + }, + "end": { + "$date": "2022-03-20T06:25:25.000Z" + }, + "events": [ + { + "uuid": "8830713b-3e6a-435d-bc2c-a5b46c084df7", + "start": { + "$date": "2022-03-20T02:32:51.000Z" + }, + "end": { + "$date": "2022-03-20T06:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cc621f0c-c8df-4098-bcd0-d121069a80b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-20T02:58:50.000Z" + }, + "end": { + "$date": "2022-03-20T03:13:26.000Z" + }, + "events": [ + { + "uuid": "7ac434c6-da03-4f4d-823f-2bffe69b4e66", + "start": { + "$date": "2022-03-20T02:58:50.000Z" + }, + "end": { + "$date": "2022-03-20T03:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fc46e942-b414-4913-84bb-c762f58aefb5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-20T03:05:49.000Z" + }, + "end": { + "$date": "2022-03-20T04:09:32.000Z" + }, + "events": [ + { + "uuid": "ec993bc6-8bbe-491c-a5e0-bd918d998150", + "start": { + "$date": "2022-03-20T03:05:49.000Z" + }, + "end": { + "$date": "2022-03-20T04:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6301e356-08f3-4d81-8083-a3c85a92136e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-20T02:29:29.000Z" + }, + "end": { + "$date": "2022-03-20T07:39:55.000Z" + }, + "events": [ + { + "uuid": "9bc3f8e9-1f0f-4023-96cc-6b3882809bef", + "start": { + "$date": "2022-03-20T02:29:29.000Z" + }, + "end": { + "$date": "2022-03-20T07:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe8d95a6-7a0d-4060-aef5-dc5ec9870712", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-20T03:39:32.000Z" + }, + "end": { + "$date": "2022-03-20T04:00:04.000Z" + }, + "events": [ + { + "uuid": "e79fcfe2-27ee-43af-b249-69bca35f6549", + "start": { + "$date": "2022-03-20T03:39:32.000Z" + }, + "end": { + "$date": "2022-03-20T04:00:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3b765d2a-3020-45cc-be92-82d60b3d37b6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-20T03:56:28.000Z" + }, + "end": { + "$date": "2022-03-20T04:06:54.000Z" + }, + "events": [ + { + "uuid": "cb8e94a3-7297-41ba-8aa0-861d47e5914c", + "start": { + "$date": "2022-03-20T03:56:28.000Z" + }, + "end": { + "$date": "2022-03-20T04:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c7d1e991-02ca-4d34-a8b2-7491c893a353", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-20T04:00:23.000Z" + }, + "end": { + "$date": "2022-03-20T05:25:38.000Z" + }, + "events": [ + { + "uuid": "ef374913-3739-4e34-a123-69d0cc697a52", + "start": { + "$date": "2022-03-20T04:00:23.000Z" + }, + "end": { + "$date": "2022-03-20T05:25:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a15863d4-379d-45c0-9d3c-823129be65a1", + "uuid": "ca29f8cb-fe01-4323-afed-8e7c1460a16a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-20T04:20:10.000Z" + }, + "end": { + "$date": "2022-03-20T04:21:45.000Z" + }, + "events": [ + { + "uuid": "f8b88b4a-0310-468b-812a-2c0cf4d7cf46", + "start": { + "$date": "2022-03-20T04:20:10.000Z" + }, + "end": { + "$date": "2022-03-20T04:21:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "04182885-1e41-404c-bc79-a39be27e196c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-20T04:29:19.000Z" + }, + "end": { + "$date": "2022-03-20T07:00:00.000Z" + }, + "events": [ + { + "uuid": "519eb293-af5b-4ea1-a391-df66c7598925", + "start": { + "$date": "2022-03-20T04:29:19.000Z" + }, + "end": { + "$date": "2022-03-20T07:00:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2a499cfb-fb45-48c4-bfcb-4d3196db4606", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-20T04:29:30.000Z" + }, + "end": { + "$date": "2022-03-20T05:27:22.000Z" + }, + "events": [ + { + "uuid": "a34c151f-2490-4a06-8bef-b0dfd2b83f28", + "start": { + "$date": "2022-03-20T04:29:30.000Z" + }, + "end": { + "$date": "2022-03-20T05:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "07bfbcb0-122b-4fbb-a151-3f055722ecce", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-20T04:41:02.000Z" + }, + "end": { + "$date": "2022-03-20T07:01:17.000Z" + }, + "events": [ + { + "uuid": "11c28933-2df3-47cf-a441-b318b8b6d0f9", + "start": { + "$date": "2022-03-20T04:41:02.000Z" + }, + "end": { + "$date": "2022-03-20T07:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0b1a3b1b-fdf5-4fa3-99a5-5a0b33bcefea", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-20T05:27:42.000Z" + }, + "end": { + "$date": "2022-03-20T06:17:34.000Z" + }, + "events": [ + { + "uuid": "cbbdfb40-7c59-4c8b-b51e-d3ca93018690", + "start": { + "$date": "2022-03-20T05:27:42.000Z" + }, + "end": { + "$date": "2022-03-20T06:17:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "29379961-d10f-4bb5-bf33-8ae184cee219", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-20T05:27:37.000Z" + }, + "end": { + "$date": "2022-03-20T06:57:20.000Z" + }, + "events": [ + { + "uuid": "e99d5889-c23f-4680-85d4-9a31e138e0d2", + "start": { + "$date": "2022-03-20T05:27:37.000Z" + }, + "end": { + "$date": "2022-03-20T06:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9798c424-5f93-4f1a-b79c-aee0d0e82c75", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T06:43:05.000Z" + }, + "end": { + "$date": "2022-03-20T07:16:57.000Z" + }, + "events": [ + { + "uuid": "12177256-57d1-4cb3-b003-95bf09257550", + "start": { + "$date": "2022-03-20T06:43:05.000Z" + }, + "end": { + "$date": "2022-03-20T07:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be2c1e65-b3d3-4a32-af07-bc7476e17fde", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T07:27:27.000Z" + }, + "end": { + "$date": "2022-03-20T07:47:03.000Z" + }, + "events": [ + { + "uuid": "ddb362c7-2bc9-49e8-b127-421583b0bee7", + "start": { + "$date": "2022-03-20T07:27:27.000Z" + }, + "end": { + "$date": "2022-03-20T07:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cb39f147-87b8-49da-ae32-0df8c5a5a5e1", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T07:49:38.000Z" + }, + "end": { + "$date": "2022-03-20T08:12:54.000Z" + }, + "events": [ + { + "uuid": "6a46f277-ef1a-49c5-ab3a-93bc744d0626", + "start": { + "$date": "2022-03-20T07:49:38.000Z" + }, + "end": { + "$date": "2022-03-20T08:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "c936612d-bd69-4e83-92d7-78a5b724af2a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-20T07:50:31.000Z" + }, + "end": { + "$date": "2022-03-20T10:14:04.000Z" + }, + "events": [ + { + "uuid": "1713027e-b225-4f63-8dda-cb3d158d5530", + "start": { + "$date": "2022-03-20T07:50:31.000Z" + }, + "end": { + "$date": "2022-03-20T10:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9d7aeb6-e166-491b-b2fb-99faf425ea9d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T08:16:03.000Z" + }, + "end": { + "$date": "2022-03-20T08:43:34.000Z" + }, + "events": [ + { + "uuid": "e7b1ab7f-fc10-47ac-b10d-4a24667f6f30", + "start": { + "$date": "2022-03-20T08:16:03.000Z" + }, + "end": { + "$date": "2022-03-20T08:43:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83ad32a9-469c-4c4e-89fa-9039e38763eb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-20T08:45:39.000Z" + }, + "end": { + "$date": "2022-03-20T09:01:20.000Z" + }, + "events": [ + { + "uuid": "64134a45-e7ca-4096-bae9-9b6ddcfefda2", + "start": { + "$date": "2022-03-20T08:45:39.000Z" + }, + "end": { + "$date": "2022-03-20T09:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5bf9b7de-9412-45d1-9e29-9d8b0ae7740b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-20T17:25:01.000Z" + }, + "end": { + "$date": "2022-03-20T17:55:13.000Z" + }, + "events": [ + { + "uuid": "dd32c4c6-e075-49a2-b782-1b46c06afcb7", + "start": { + "$date": "2022-03-20T17:25:01.000Z" + }, + "end": { + "$date": "2022-03-20T17:55:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "396ca943-7ea2-4f26-a853-10ee68299a6b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-20T17:58:14.000Z" + }, + "end": { + "$date": "2022-03-20T18:38:18.000Z" + }, + "events": [ + { + "uuid": "dc35414f-4830-4486-9085-9cdb895c822f", + "start": { + "$date": "2022-03-20T17:58:14.000Z" + }, + "end": { + "$date": "2022-03-20T18:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "aefd4f52-7de1-44a0-b25d-8cafbf398b5d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-20T19:51:44.000Z" + }, + "end": { + "$date": "2022-03-21T09:01:16.000Z" + }, + "events": [ + { + "uuid": "281ffa35-3aa7-491c-ab7f-9eda10f80022", + "start": { + "$date": "2022-03-20T19:51:44.000Z" + }, + "end": { + "$date": "2022-03-21T00:37:44.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49e8cef2-3398-48d4-964a-5a586eb0c62a", + "start": { + "$date": "2022-03-21T00:37:44.000Z" + }, + "end": { + "$date": "2022-03-21T00:49:44.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a1e5080d-98db-4ac9-b642-9ad7996bc1d5", + "start": { + "$date": "2022-03-21T00:49:44.000Z" + }, + "end": { + "$date": "2022-03-21T09:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "f06d89cd-b0cb-4890-8543-d52ec759a5d6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-20T21:21:06.000Z" + }, + "end": { + "$date": "2022-03-20T23:31:56.000Z" + }, + "events": [ + { + "uuid": "197c894c-d24d-4d84-8016-5c14396b1916", + "start": { + "$date": "2022-03-20T21:21:06.000Z" + }, + "end": { + "$date": "2022-03-20T23:31:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "e16f9f3e-7e43-44af-a793-72e4c4806309", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-20T22:29:49.000Z" + }, + "end": { + "$date": "2022-03-20T23:03:57.000Z" + }, + "events": [ + { + "uuid": "7536eacd-c1f7-44a9-b228-e021372017e5", + "start": { + "$date": "2022-03-20T22:29:49.000Z" + }, + "end": { + "$date": "2022-03-20T23:03:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3eed326f-cbc1-45a0-8c11-f222d4715a22", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-21T00:36:07.000Z" + }, + "end": { + "$date": "2022-03-21T02:18:31.000Z" + }, + "events": [ + { + "uuid": "c94955fe-b360-4fb2-b0fe-3da567188a35", + "start": { + "$date": "2022-03-21T00:36:07.000Z" + }, + "end": { + "$date": "2022-03-21T02:18:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5dc9408b-de1a-439e-bcdc-d89267864da8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-21T00:36:07.000Z" + }, + "end": { + "$date": "2022-03-21T05:40:56.000Z" + }, + "events": [ + { + "uuid": "51426074-38b8-42cc-8473-d4946ad414f4", + "start": { + "$date": "2022-03-21T00:36:07.000Z" + }, + "end": { + "$date": "2022-03-21T05:40:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5a066417-9d6c-495e-bd0e-53b2637521eb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-21T03:46:06.000Z" + }, + "end": { + "$date": "2022-03-21T04:05:54.000Z" + }, + "events": [ + { + "uuid": "ff234f19-d164-4036-9ae9-91afb95551d7", + "start": { + "$date": "2022-03-21T03:46:06.000Z" + }, + "end": { + "$date": "2022-03-21T04:05:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9db436c-f98a-4665-880f-9ea0dbb7b93c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-21T03:55:18.000Z" + }, + "end": { + "$date": "2022-03-21T04:29:59.000Z" + }, + "events": [ + { + "uuid": "4658d187-304d-41ff-a40f-bf3448c64a08", + "start": { + "$date": "2022-03-21T03:55:18.000Z" + }, + "end": { + "$date": "2022-03-21T04:29:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c485dbde-ae07-4555-80f1-0c6b20b4baa7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-21T04:12:23.000Z" + }, + "end": { + "$date": "2022-03-21T05:35:40.000Z" + }, + "events": [ + { + "uuid": "5e1f5f5a-ac72-431d-b168-9b5a723c59bf", + "start": { + "$date": "2022-03-21T04:12:23.000Z" + }, + "end": { + "$date": "2022-03-21T05:35:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e8a1dbcf-745d-45da-9384-077421756d66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-21T04:30:35.000Z" + }, + "end": { + "$date": "2022-03-21T04:48:08.000Z" + }, + "events": [ + { + "uuid": "4d5e2d2f-9456-4036-851c-08f3f73219f1", + "start": { + "$date": "2022-03-21T04:30:35.000Z" + }, + "end": { + "$date": "2022-03-21T04:48:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "91abe2a8-204d-4ab9-aaae-7148fbd85d26", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-21T04:49:18.000Z" + }, + "end": { + "$date": "2022-03-21T05:22:48.000Z" + }, + "events": [ + { + "uuid": "d9df042e-b49b-4fc0-bbf3-406026aac485", + "start": { + "$date": "2022-03-21T04:49:18.000Z" + }, + "end": { + "$date": "2022-03-21T05:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "30bbb1bc-b02a-4ce8-aa38-843c034be755", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-21T04:49:45.000Z" + }, + "end": { + "$date": "2022-03-21T05:49:44.000Z" + }, + "events": [ + { + "uuid": "7c18a7ac-4ce6-43e9-91cd-32f58cbd7c9a", + "start": { + "$date": "2022-03-21T04:49:45.000Z" + }, + "end": { + "$date": "2022-03-21T05:49:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df1d5e15-4879-4a84-b51d-0faf34f4019e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-21T04:53:08.000Z" + }, + "end": { + "$date": "2022-03-21T05:49:25.000Z" + }, + "events": [ + { + "uuid": "b79f8225-7c5f-4e80-9731-bc3c2cf5fc93", + "start": { + "$date": "2022-03-21T04:53:08.000Z" + }, + "end": { + "$date": "2022-03-21T05:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdfa2c2d-a2ea-40ec-8a7d-78b25017853e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-21T05:07:23.000Z" + }, + "end": { + "$date": "2022-03-21T05:31:13.000Z" + }, + "events": [ + { + "uuid": "0df20ac1-6591-4a98-83e5-282eb99676fb", + "start": { + "$date": "2022-03-21T05:07:23.000Z" + }, + "end": { + "$date": "2022-03-21T05:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f4e2ff38-1e6c-4d5c-afdb-0751e91b1b79", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-21T05:22:54.000Z" + }, + "end": { + "$date": "2022-03-21T05:48:51.000Z" + }, + "events": [ + { + "uuid": "2a03dfa0-41f4-48e5-adba-924bb449abe1", + "start": { + "$date": "2022-03-21T05:22:54.000Z" + }, + "end": { + "$date": "2022-03-21T05:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "25ed2341-509d-47a5-9844-4a17efb606aa", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-21T05:27:40.000Z" + }, + "end": { + "$date": "2022-03-21T06:42:57.000Z" + }, + "events": [ + { + "uuid": "3a39a2c7-50eb-4039-9e10-1eee2ac43005", + "start": { + "$date": "2022-03-21T05:27:40.000Z" + }, + "end": { + "$date": "2022-03-21T06:42:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d195f5d5-fe47-48ee-8a55-62852da4d200", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-21T05:34:13.000Z" + }, + "end": { + "$date": "2022-03-21T05:48:23.000Z" + }, + "events": [ + { + "uuid": "91fd23d1-7e7f-44c4-bab1-219feb6f20b6", + "start": { + "$date": "2022-03-21T05:34:13.000Z" + }, + "end": { + "$date": "2022-03-21T05:48:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "89fba417-204a-4d84-85bc-653ae6e566a1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-21T05:42:12.000Z" + }, + "end": { + "$date": "2022-03-21T06:12:17.000Z" + }, + "events": [ + { + "uuid": "6fb4c109-7f94-45e4-b3af-1cc6810326e6", + "start": { + "$date": "2022-03-21T05:42:12.000Z" + }, + "end": { + "$date": "2022-03-21T06:12:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5af169eb-c027-4db7-a84c-1eb609c38c8c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-21T05:50:29.000Z" + }, + "end": { + "$date": "2022-03-21T06:26:21.000Z" + }, + "events": [ + { + "uuid": "79cf4d1b-8273-48af-8a32-ae682974d6f7", + "start": { + "$date": "2022-03-21T05:50:29.000Z" + }, + "end": { + "$date": "2022-03-21T06:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55cf7173-820f-482e-a6ad-b72f41ad1c75", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-21T06:28:19.000Z" + }, + "end": { + "$date": "2022-03-21T06:46:20.000Z" + }, + "events": [ + { + "uuid": "ff43597b-e16c-48ee-94d5-0b3ee1e450ef", + "start": { + "$date": "2022-03-21T06:28:19.000Z" + }, + "end": { + "$date": "2022-03-21T06:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "910caeaf-85de-4ab3-a3f6-e377320765e3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-21T15:37:47.000Z" + }, + "end": { + "$date": "2022-03-21T17:14:41.000Z" + }, + "events": [ + { + "uuid": "858a58ea-8b5a-4f6d-95fa-db787437ee5d", + "start": { + "$date": "2022-03-21T15:37:47.000Z" + }, + "end": { + "$date": "2022-03-21T17:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "bd0eb30c-d93d-473b-926b-c62091e70bed", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-21T17:20:51.000Z" + }, + "end": { + "$date": "2022-03-21T19:20:59.000Z" + }, + "events": [ + { + "uuid": "19d1c6ca-91c0-4a78-900b-d9bc2fc5454b", + "start": { + "$date": "2022-03-21T17:20:51.000Z" + }, + "end": { + "$date": "2022-03-21T19:10:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9d9ec080-8240-41cc-b688-5910db55d19c", + "start": { + "$date": "2022-03-21T19:10:51.000Z" + }, + "end": { + "$date": "2022-03-21T19:20:59.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "3f31786c-3bdd-4923-9422-c458de604384", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-21T18:55:18.000Z" + }, + "end": { + "$date": "2022-03-21T20:13:39.000Z" + }, + "events": [ + { + "uuid": "24d681a4-c619-4b97-8b65-4460055263b1", + "start": { + "$date": "2022-03-21T18:55:18.000Z" + }, + "end": { + "$date": "2022-03-21T20:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "21dffcf9-916d-438a-89be-12b5ca426694", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-21T20:52:31.000Z" + }, + "end": { + "$date": "2022-03-21T21:47:58.000Z" + }, + "events": [ + { + "uuid": "d48c2a37-2196-4b24-accc-f22ec59d2053", + "start": { + "$date": "2022-03-21T20:52:31.000Z" + }, + "end": { + "$date": "2022-03-21T21:47:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "47af3716-8ac3-42bf-8263-5cfdf3d200e8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-21T21:48:52.000Z" + }, + "end": { + "$date": "2022-03-21T22:16:25.000Z" + }, + "events": [ + { + "uuid": "da238569-4f5d-45e3-ac4e-acb525041b25", + "start": { + "$date": "2022-03-21T21:48:52.000Z" + }, + "end": { + "$date": "2022-03-21T22:16:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6dfe88ea-5970-45de-b49b-c0ab248e2109", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-03-21T21:54:58.000Z" + }, + "end": { + "$date": "2022-03-21T22:51:02.000Z" + }, + "events": [ + { + "uuid": "e45b7e6f-f833-473e-8b76-dff85edbec5b", + "start": { + "$date": "2022-03-21T21:54:58.000Z" + }, + "end": { + "$date": "2022-03-21T22:51:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "57a67048-c1ad-4a15-a0a1-ac3e6b3412e5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-21T22:04:55.000Z" + }, + "end": { + "$date": "2022-03-21T22:37:30.000Z" + }, + "events": [ + { + "uuid": "c0dcea21-65df-4f61-97fb-e5dda6105766", + "start": { + "$date": "2022-03-21T22:04:55.000Z" + }, + "end": { + "$date": "2022-03-21T22:17:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "40203a5b-549c-4f7f-9ed7-d09cab5da123", + "start": { + "$date": "2022-03-21T22:17:55.000Z" + }, + "end": { + "$date": "2022-03-21T22:37:30.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ed0d6906-f954-487b-8ebc-991f8af76744", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-21T22:07:20.000Z" + }, + "end": { + "$date": "2022-03-21T22:08:30.000Z" + }, + "events": [ + { + "uuid": "4a6d0fcf-dabb-4134-ad09-8a0ba08a84ed", + "start": { + "$date": "2022-03-21T22:07:20.000Z" + }, + "end": { + "$date": "2022-03-21T22:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "ca51e864-dcd1-4834-9210-613be19a04dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-21T22:14:50.000Z" + }, + "end": { + "$date": "2022-03-22T09:53:50.000Z" + }, + "events": [ + { + "uuid": "4d4259fb-a619-478b-bcd5-d02a44b86835", + "start": { + "$date": "2022-03-21T22:14:50.000Z" + }, + "end": { + "$date": "2022-03-22T00:59:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "87e7bfcd-1625-472e-b1a7-8f8cf5c9f29b", + "start": { + "$date": "2022-03-22T00:59:50.000Z" + }, + "end": { + "$date": "2022-03-22T01:07:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c682189f-227f-47b6-852e-6ab5098409d6", + "start": { + "$date": "2022-03-22T01:07:50.000Z" + }, + "end": { + "$date": "2022-03-22T09:53:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "d45443d5-ac36-483a-a678-f00e84c4c856", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-21T22:14:56.000Z" + }, + "end": { + "$date": "2022-03-21T22:17:14.000Z" + }, + "events": [ + { + "uuid": "6b9b6390-33b8-4561-9168-923d7aa22f30", + "start": { + "$date": "2022-03-21T22:14:56.000Z" + }, + "end": { + "$date": "2022-03-21T22:17:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "37da1bd4-3172-47c0-a18a-ce8560f2a3f4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-21T22:47:35.000Z" + }, + "end": { + "$date": "2022-03-21T22:50:23.000Z" + }, + "events": [ + { + "uuid": "29676fc5-2a2b-4d6d-8810-264d7e820437", + "start": { + "$date": "2022-03-21T22:47:35.000Z" + }, + "end": { + "$date": "2022-03-21T22:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b450930e-c676-4521-94fe-da3e804ff499", + "uuid": "5b067c3d-48bb-4bfa-a1d5-1cf9ecdeb4f4", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-21T22:52:25.000Z" + }, + "end": { + "$date": "2022-03-21T22:56:10.000Z" + }, + "events": [ + { + "uuid": "5c32dcd7-2e04-46b8-8dc2-c0fbeecf138c", + "start": { + "$date": "2022-03-21T22:52:25.000Z" + }, + "end": { + "$date": "2022-03-21T22:56:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b450930e-c676-4521-94fe-da3e804ff499", + "uuid": "ee5ab3d2-68cb-4836-a784-dbc34a01a954", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-21T22:56:22.000Z" + }, + "end": { + "$date": "2022-03-21T23:27:15.000Z" + }, + "events": [ + { + "uuid": "1bed325d-2730-4f44-891c-10eedb622da7", + "start": { + "$date": "2022-03-21T22:56:22.000Z" + }, + "end": { + "$date": "2022-03-21T23:27:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "207f368a-d799-4615-9f34-fdb82c09e162", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-21T22:59:18.000Z" + }, + "end": { + "$date": "2022-03-21T23:20:05.000Z" + }, + "events": [ + { + "uuid": "6cdd6166-b0ce-4ded-a60a-fc7b1e7c82ea", + "start": { + "$date": "2022-03-21T22:59:18.000Z" + }, + "end": { + "$date": "2022-03-21T23:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c623f9d1-4ba0-4a5d-a31f-a1552297f235", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-21T23:05:40.000Z" + }, + "end": { + "$date": "2022-03-21T23:28:01.000Z" + }, + "events": [ + { + "uuid": "125644fa-907b-4e48-9b28-987e7eef300c", + "start": { + "$date": "2022-03-21T23:05:40.000Z" + }, + "end": { + "$date": "2022-03-21T23:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76afab99-c1d6-4b19-81d8-12210a8cb579", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-21T23:17:07.000Z" + }, + "end": { + "$date": "2022-03-21T23:47:33.000Z" + }, + "events": [ + { + "uuid": "7d44dff2-ad45-41dc-95ba-18abdecae6f5", + "start": { + "$date": "2022-03-21T23:17:07.000Z" + }, + "end": { + "$date": "2022-03-21T23:47:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "888c9bb2-2b11-4011-81cb-e9cba68c8280", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-21T23:47:14.000Z" + }, + "end": { + "$date": "2022-03-22T01:36:21.000Z" + }, + "events": [ + { + "uuid": "b8bdc6c5-cd90-455d-888b-1ad1fdfc5e12", + "start": { + "$date": "2022-03-21T23:47:14.000Z" + }, + "end": { + "$date": "2022-03-22T00:20:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8a97624a-8d54-41fe-8c09-272dac4864f0", + "start": { + "$date": "2022-03-22T00:20:14.000Z" + }, + "end": { + "$date": "2022-03-22T00:31:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d39bc5c2-b4dc-4843-8555-c274322b22aa", + "start": { + "$date": "2022-03-22T00:31:14.000Z" + }, + "end": { + "$date": "2022-03-22T00:57:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b814b1bb-2b72-42c0-82f0-e793b8e3cdc5", + "start": { + "$date": "2022-03-22T00:57:14.000Z" + }, + "end": { + "$date": "2022-03-22T01:03:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2eeb0fce-2ebb-4bd8-90a8-b13a6f2237da", + "start": { + "$date": "2022-03-22T01:03:14.000Z" + }, + "end": { + "$date": "2022-03-22T01:16:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c4177c8-ed5a-4f7d-915d-9097a2e07e62", + "start": { + "$date": "2022-03-22T01:16:14.000Z" + }, + "end": { + "$date": "2022-03-22T01:36:21.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "ace07279-d4e3-4012-9a7c-44d1a8024391", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-21T23:58:19.000Z" + }, + "end": { + "$date": "2022-03-22T00:00:47.000Z" + }, + "events": [ + { + "uuid": "ff2031ca-420a-45e4-ae83-39ec5682f348", + "start": { + "$date": "2022-03-21T23:58:19.000Z" + }, + "end": { + "$date": "2022-03-22T00:00:47.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "2a60186a-e65b-426a-81c0-177d9268c084", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-22T00:03:48.000Z" + }, + "end": { + "$date": "2022-03-22T00:06:35.000Z" + }, + "events": [ + { + "uuid": "a4ee8852-5d97-477c-b41d-16c0dac40d21", + "start": { + "$date": "2022-03-22T00:03:48.000Z" + }, + "end": { + "$date": "2022-03-22T00:06:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "fd1ca3eb-4894-4847-bfa0-7819874c1f9d", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-22T00:06:45.000Z" + }, + "end": { + "$date": "2022-03-22T02:50:01.000Z" + }, + "events": [ + { + "uuid": "dda0face-649a-482f-bbbc-8643934c6e65", + "start": { + "$date": "2022-03-22T00:06:45.000Z" + }, + "end": { + "$date": "2022-03-22T02:50:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "0f833b57-7700-4e30-811c-d01b0db0cd6e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-22T01:57:17.000Z" + }, + "end": { + "$date": "2022-03-22T03:46:21.000Z" + }, + "events": [ + { + "uuid": "2a320832-9e1d-46d2-97f9-177bb9162922", + "start": { + "$date": "2022-03-22T01:57:17.000Z" + }, + "end": { + "$date": "2022-03-22T03:46:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8b2b050c-4bd9-44db-97b3-4be24bc16a7f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-22T01:59:29.000Z" + }, + "end": { + "$date": "2022-03-22T04:39:26.000Z" + }, + "events": [ + { + "uuid": "155a791d-4548-44dc-b5ee-8f1f9d95aee2", + "start": { + "$date": "2022-03-22T01:59:29.000Z" + }, + "end": { + "$date": "2022-03-22T04:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "722d270e-4ea8-40ec-9500-175adcabdd1e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-22T02:08:01.000Z" + }, + "end": { + "$date": "2022-03-22T05:50:23.000Z" + }, + "events": [ + { + "uuid": "fc22c39f-fee9-4e34-9865-875232446bbb", + "start": { + "$date": "2022-03-22T02:08:01.000Z" + }, + "end": { + "$date": "2022-03-22T05:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8d685710-c2a6-4f5f-9e07-bdcb8c7675c8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-22T02:10:23.000Z" + }, + "end": { + "$date": "2022-03-22T04:04:47.000Z" + }, + "events": [ + { + "uuid": "88146056-8ca3-47c5-a57d-c801b873d60b", + "start": { + "$date": "2022-03-22T02:10:23.000Z" + }, + "end": { + "$date": "2022-03-22T04:04:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fef1d0b4-afbe-4596-b45f-506f1fd07ea3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-22T02:12:28.000Z" + }, + "end": { + "$date": "2022-03-22T04:01:04.000Z" + }, + "events": [ + { + "uuid": "46597814-7af2-4d0c-93f8-20317e4cc945", + "start": { + "$date": "2022-03-22T02:12:28.000Z" + }, + "end": { + "$date": "2022-03-22T04:01:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e7f2f8da-da22-406a-a970-3961b594278a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-22T03:11:20.000Z" + }, + "end": { + "$date": "2022-03-22T04:20:31.000Z" + }, + "events": [ + { + "uuid": "1d5b08a7-9cb8-41ba-b497-b765197df054", + "start": { + "$date": "2022-03-22T03:11:20.000Z" + }, + "end": { + "$date": "2022-03-22T04:20:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "78afdc1a-aa4c-41f9-b266-ed1788df2422", + "uuid": "a52b9eea-f179-49f1-a919-30348e2adb5a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-22T03:45:03.000Z" + }, + "end": { + "$date": "2022-03-22T04:08:49.000Z" + }, + "events": [ + { + "uuid": "967c3332-967a-4748-8c2e-c16aebbaadaa", + "start": { + "$date": "2022-03-22T03:45:03.000Z" + }, + "end": { + "$date": "2022-03-22T04:08:49.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "8e537bf3-d149-46a0-b3d6-1f6eb9e21e04", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-22T07:30:39.000Z" + }, + "end": { + "$date": "2022-03-22T07:30:54.000Z" + }, + "events": [ + { + "uuid": "6b302ac3-c8dd-4034-943a-46220dd183b0", + "start": { + "$date": "2022-03-22T07:30:39.000Z" + }, + "end": { + "$date": "2022-03-22T07:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "5b40c10b-4dcf-4905-926b-be62163d87a4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-22T04:05:29.000Z" + }, + "end": { + "$date": "2022-03-22T08:21:33.000Z" + }, + "events": [ + { + "uuid": "05c6f85d-3621-41b3-bff3-b9a4a53cd7bc", + "start": { + "$date": "2022-03-22T04:05:29.000Z" + }, + "end": { + "$date": "2022-03-22T08:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "550efd67-79dc-4d13-8561-c176007aa8d3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-22T04:09:42.000Z" + }, + "end": { + "$date": "2022-03-22T06:20:19.000Z" + }, + "events": [ + { + "uuid": "381a8f3f-ee5a-4a0d-b12e-64024ef64c7a", + "start": { + "$date": "2022-03-22T04:09:42.000Z" + }, + "end": { + "$date": "2022-03-22T06:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6b259e92-a09d-42f1-b44d-77554470f849", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-22T04:52:59.000Z" + }, + "end": { + "$date": "2022-03-22T05:02:12.000Z" + }, + "events": [ + { + "uuid": "958cf503-c9b9-457b-ab58-29b773c11cc7", + "start": { + "$date": "2022-03-22T04:52:59.000Z" + }, + "end": { + "$date": "2022-03-22T05:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a86a74a9-ebbd-4bac-a04f-e4572ca45472", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-22T05:14:20.000Z" + }, + "end": { + "$date": "2022-03-22T05:42:35.000Z" + }, + "events": [ + { + "uuid": "9b274714-6839-4f77-85d1-792fef5cd942", + "start": { + "$date": "2022-03-22T05:14:20.000Z" + }, + "end": { + "$date": "2022-03-22T05:42:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "66670bb9-f193-4f09-885e-d4c400eafed5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-22T05:18:37.000Z" + }, + "end": { + "$date": "2022-03-22T06:48:24.000Z" + }, + "events": [ + { + "uuid": "20fa9bb1-2021-4ea6-9158-07277fd374e6", + "start": { + "$date": "2022-03-22T05:18:37.000Z" + }, + "end": { + "$date": "2022-03-22T06:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3348e7c0-8885-409e-9b70-03ae28c19c57", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-22T05:43:45.000Z" + }, + "end": { + "$date": "2022-03-22T05:46:23.000Z" + }, + "events": [ + { + "uuid": "24d9cb7e-1391-4084-bbc1-f4a8e6e04a2a", + "start": { + "$date": "2022-03-22T05:43:45.000Z" + }, + "end": { + "$date": "2022-03-22T05:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a8299f5-0888-4516-b8e5-29e4173bd8fa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-22T05:51:36.000Z" + }, + "end": { + "$date": "2022-03-22T06:09:56.000Z" + }, + "events": [ + { + "uuid": "8e12e278-4155-404d-b675-95154c1379a7", + "start": { + "$date": "2022-03-22T05:51:36.000Z" + }, + "end": { + "$date": "2022-03-22T06:09:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ce1040cb-68ee-44d3-84de-cd30be34f549", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-22T06:51:35.000Z" + }, + "end": { + "$date": "2022-03-22T06:55:15.000Z" + }, + "events": [ + { + "uuid": "fdf9b97b-7710-4359-b129-ff468fbe109b", + "start": { + "$date": "2022-03-22T06:51:35.000Z" + }, + "end": { + "$date": "2022-03-22T06:55:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3efaf24d-6e25-4cf9-8796-07f4f974ace4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-22T06:59:40.000Z" + }, + "end": { + "$date": "2022-03-22T08:49:29.000Z" + }, + "events": [ + { + "uuid": "648ab7ea-5175-4ac2-a200-dc23691b334f", + "start": { + "$date": "2022-03-22T06:59:40.000Z" + }, + "end": { + "$date": "2022-03-22T08:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "504d71c8-b456-484d-b18f-114e47f8760d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-22T14:03:55.000Z" + }, + "end": { + "$date": "2022-03-22T14:04:05.000Z" + }, + "events": [ + { + "uuid": "3da2e7fa-c996-4557-a6a0-7b3103ff4921", + "start": { + "$date": "2022-03-22T14:03:55.000Z" + }, + "end": { + "$date": "2022-03-22T14:04:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "ba0ce67f-da61-4596-9d7f-22c949d34ce6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-22T15:32:20.000Z" + }, + "end": { + "$date": "2022-03-22T16:03:52.000Z" + }, + "events": [ + { + "uuid": "3ffc9782-1ca6-4e13-8990-b39332bf215a", + "start": { + "$date": "2022-03-22T15:32:20.000Z" + }, + "end": { + "$date": "2022-03-22T16:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "87d02ed0-1b68-4fea-b571-f7929ca06615", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-22T15:47:32.000Z" + }, + "end": { + "$date": "2022-03-22T21:23:35.000Z" + }, + "events": [ + { + "uuid": "a14a9128-d54f-4942-b859-a2fe13834e69", + "start": { + "$date": "2022-03-22T15:47:32.000Z" + }, + "end": { + "$date": "2022-03-22T18:19:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9552bc99-7319-46ba-a122-ce3acdb7a7a1", + "start": { + "$date": "2022-03-22T18:19:32.000Z" + }, + "end": { + "$date": "2022-03-22T18:38:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1263159d-4786-4dab-96f9-b8a254203f1c", + "start": { + "$date": "2022-03-22T18:38:32.000Z" + }, + "end": { + "$date": "2022-03-22T21:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "73af9202-8235-4436-a102-2ceca61535ca", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-22T17:31:55.000Z" + }, + "end": { + "$date": "2022-03-22T17:32:10.000Z" + }, + "events": [ + { + "uuid": "c6e14210-6531-44a7-aa26-821dd54c7ce4", + "start": { + "$date": "2022-03-22T17:31:55.000Z" + }, + "end": { + "$date": "2022-03-22T17:32:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "9186b651-9298-4b44-9b41-4fad153d1a50", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-22T20:09:01.000Z" + }, + "end": { + "$date": "2022-03-22T20:18:47.000Z" + }, + "events": [ + { + "uuid": "d83a9aae-9bb6-4f5c-b67c-4ea54b0774cf", + "start": { + "$date": "2022-03-22T20:09:01.000Z" + }, + "end": { + "$date": "2022-03-22T20:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "eb847d4b-6940-440a-876e-3438f51680d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-22T20:19:43.000Z" + }, + "end": { + "$date": "2022-03-22T23:03:52.000Z" + }, + "events": [ + { + "uuid": "9f2562a8-fd13-48a7-9422-6c4430dd169a", + "start": { + "$date": "2022-03-22T20:19:43.000Z" + }, + "end": { + "$date": "2022-03-22T23:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9f1cc861-b7a6-4724-a3c0-beb413b6a6de", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-22T21:09:11.000Z" + }, + "end": { + "$date": "2022-03-22T21:25:36.000Z" + }, + "events": [ + { + "uuid": "a1a86610-9d3b-4ee2-8a78-9ab002cb3e76", + "start": { + "$date": "2022-03-22T21:09:11.000Z" + }, + "end": { + "$date": "2022-03-22T21:25:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "69bc50ec-ea4b-448d-85e4-482d5eade987", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-22T22:07:08.000Z" + }, + "end": { + "$date": "2022-03-23T01:01:32.000Z" + }, + "events": [ + { + "uuid": "6ee59445-761f-4f80-ba19-efa269422449", + "start": { + "$date": "2022-03-22T22:07:08.000Z" + }, + "end": { + "$date": "2022-03-23T01:01:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7658ec2d-ecd3-44a1-bce8-1e96c3514dd2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-22T22:50:04.000Z" + }, + "end": { + "$date": "2022-03-22T23:18:06.000Z" + }, + "events": [ + { + "uuid": "00220f80-3c9e-4e74-987d-8bab2ce87b9a", + "start": { + "$date": "2022-03-22T22:50:04.000Z" + }, + "end": { + "$date": "2022-03-22T23:18:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "918bd6fc-0b67-48ad-b8e0-a1cf0914753e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-22T23:06:44.000Z" + }, + "end": { + "$date": "2022-03-23T00:33:27.000Z" + }, + "events": [ + { + "uuid": "143c1e6d-2013-478d-97e2-e96955fa5067", + "start": { + "$date": "2022-03-22T23:06:44.000Z" + }, + "end": { + "$date": "2022-03-23T00:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "7719a24d-8ec0-4da1-bb84-1f77d09dc781", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-22T23:52:04.000Z" + }, + "end": { + "$date": "2022-03-22T23:54:10.000Z" + }, + "events": [ + { + "uuid": "8ae396c1-2d05-4e84-a16e-7f1f95b5a56a", + "start": { + "$date": "2022-03-22T23:52:04.000Z" + }, + "end": { + "$date": "2022-03-22T23:54:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1eb3f873-f7dd-4dba-b4bd-3a5b01b5d7cf", + "uuid": "62718bbd-f3f8-4b3a-a0e2-dfad0715d92f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-22T23:54:40.000Z" + }, + "end": { + "$date": "2022-03-23T00:16:00.000Z" + }, + "events": [ + { + "uuid": "b5ddd0e2-ffdd-4f8e-8591-f32346318885", + "start": { + "$date": "2022-03-22T23:54:40.000Z" + }, + "end": { + "$date": "2022-03-23T00:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ca57e8b0-e051-4270-8db5-12f10d89ac28", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-23T00:08:27.000Z" + }, + "end": { + "$date": "2022-03-23T00:12:52.000Z" + }, + "events": [ + { + "uuid": "04255414-95dc-41ec-9be7-3074eaf0819c", + "start": { + "$date": "2022-03-23T00:08:27.000Z" + }, + "end": { + "$date": "2022-03-23T00:12:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5fad0345-b195-4027-875f-822c3145a4ca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-23T00:13:03.000Z" + }, + "end": { + "$date": "2022-03-23T00:14:28.000Z" + }, + "events": [ + { + "uuid": "0e4f76ee-e170-46a4-9048-05619c072d42", + "start": { + "$date": "2022-03-23T00:13:03.000Z" + }, + "end": { + "$date": "2022-03-23T00:14:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "40fb99bc-989e-4691-add1-f0552a48741f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-23T00:15:33.000Z" + }, + "end": { + "$date": "2022-03-23T00:24:58.000Z" + }, + "events": [ + { + "uuid": "1e9c1f89-003e-4b5e-9feb-e08ebb42f8a7", + "start": { + "$date": "2022-03-23T00:15:33.000Z" + }, + "end": { + "$date": "2022-03-23T00:24:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c32f71c6-f383-4a6f-86d5-f1a645eb626b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-23T00:16:15.000Z" + }, + "end": { + "$date": "2022-03-23T00:29:01.000Z" + }, + "events": [ + { + "uuid": "dcd92814-847d-49cf-a188-3529a1634efe", + "start": { + "$date": "2022-03-23T00:16:15.000Z" + }, + "end": { + "$date": "2022-03-23T00:29:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c81b601-39a0-4b49-8140-25eb962178d4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-23T00:25:14.000Z" + }, + "end": { + "$date": "2022-03-23T01:23:57.000Z" + }, + "events": [ + { + "uuid": "36f8eb66-aeb7-47fe-9f40-5b946d586b2b", + "start": { + "$date": "2022-03-23T00:25:14.000Z" + }, + "end": { + "$date": "2022-03-23T01:23:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0e3f6388-7561-4847-959f-fe7ddb3610f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T00:39:09.000Z" + }, + "end": { + "$date": "2022-03-23T00:40:48.000Z" + }, + "events": [ + { + "uuid": "91ae464d-47de-4982-8753-a1ae4ff4a0b6", + "start": { + "$date": "2022-03-23T00:39:09.000Z" + }, + "end": { + "$date": "2022-03-23T00:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "dbb009d1-5f24-4028-b0a3-50502d9dd582", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T00:41:25.000Z" + }, + "end": { + "$date": "2022-03-23T02:55:04.000Z" + }, + "events": [ + { + "uuid": "05fddb56-64f8-46e4-84bf-39d298d4d417", + "start": { + "$date": "2022-03-23T00:41:25.000Z" + }, + "end": { + "$date": "2022-03-23T01:40:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e03c4f42-aac5-439d-a6cd-b7ea91012bfb", + "start": { + "$date": "2022-03-23T01:40:25.000Z" + }, + "end": { + "$date": "2022-03-23T01:55:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3114b0a8-ade3-4c28-9441-4bb7fef56650", + "start": { + "$date": "2022-03-23T01:55:25.000Z" + }, + "end": { + "$date": "2022-03-23T02:55:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "972f6135-38a7-4ec3-94f5-5dad3c612d11", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-23T01:40:47.000Z" + }, + "end": { + "$date": "2022-03-23T03:43:43.000Z" + }, + "events": [ + { + "uuid": "21e5ed2b-8b32-4f7c-b28c-542ed1614154", + "start": { + "$date": "2022-03-23T01:40:47.000Z" + }, + "end": { + "$date": "2022-03-23T03:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "e1ff705f-b10a-449c-b984-178c76f3da64", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-23T05:27:44.000Z" + }, + "end": { + "$date": "2022-03-23T05:27:55.000Z" + }, + "events": [ + { + "uuid": "685209d6-a3a6-4e91-b51a-d9ea727584c6", + "start": { + "$date": "2022-03-23T05:27:44.000Z" + }, + "end": { + "$date": "2022-03-23T05:27:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6eed09cc-5448-4bff-aa80-2db517f8e715", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-23T01:52:28.000Z" + }, + "end": { + "$date": "2022-03-23T06:38:05.000Z" + }, + "events": [ + { + "uuid": "d9628e8e-0c86-48c6-85c2-87b8ffbfb545", + "start": { + "$date": "2022-03-23T01:52:28.000Z" + }, + "end": { + "$date": "2022-03-23T06:38:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5efcaf39-84ac-49e4-9609-fb5ab084f0c4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-23T02:08:58.000Z" + }, + "end": { + "$date": "2022-03-23T02:35:00.000Z" + }, + "events": [ + { + "uuid": "e369439c-fc42-4f8d-873d-0016d1e8cb43", + "start": { + "$date": "2022-03-23T02:08:58.000Z" + }, + "end": { + "$date": "2022-03-23T02:35:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7b69fcb-3761-4c70-83fa-289d5d23208a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-23T02:42:29.000Z" + }, + "end": { + "$date": "2022-03-23T03:08:01.000Z" + }, + "events": [ + { + "uuid": "4a33afd5-9e95-4369-b0ec-fc894c60ee92", + "start": { + "$date": "2022-03-23T02:42:29.000Z" + }, + "end": { + "$date": "2022-03-23T03:08:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d0c01417-39de-428a-bd16-d79b719d7b9d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T03:08:29.000Z" + }, + "end": { + "$date": "2022-03-23T05:39:03.000Z" + }, + "events": [ + { + "uuid": "56a2eca0-0144-4fdd-9857-d85465fca6a8", + "start": { + "$date": "2022-03-23T03:08:29.000Z" + }, + "end": { + "$date": "2022-03-23T05:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe46e439-c8d9-4906-b9ac-acb192b29149", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-23T03:15:51.000Z" + }, + "end": { + "$date": "2022-03-23T03:42:48.000Z" + }, + "events": [ + { + "uuid": "239dc160-37fe-4c8b-85ec-3647df5adc16", + "start": { + "$date": "2022-03-23T03:15:51.000Z" + }, + "end": { + "$date": "2022-03-23T03:42:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "84a93701-d9fe-4822-8ea7-25bb25b1d01d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-23T03:55:51.000Z" + }, + "end": { + "$date": "2022-03-23T06:35:24.000Z" + }, + "events": [ + { + "uuid": "93f38992-6f2a-4db5-8fae-cb721ceea45f", + "start": { + "$date": "2022-03-23T03:55:51.000Z" + }, + "end": { + "$date": "2022-03-23T06:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "074faff1-dade-4bd4-bda0-779744287fd0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-23T04:24:54.000Z" + }, + "end": { + "$date": "2022-03-23T04:57:39.000Z" + }, + "events": [ + { + "uuid": "b788a69b-8ac1-4aaf-84e8-0949ab32a85f", + "start": { + "$date": "2022-03-23T04:24:54.000Z" + }, + "end": { + "$date": "2022-03-23T04:57:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "18f49e04-07c7-4b83-9d08-b244b6f0689f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-23T04:53:04.000Z" + }, + "end": { + "$date": "2022-03-23T05:33:51.000Z" + }, + "events": [ + { + "uuid": "32dab360-75c4-43d5-b95b-b7607b21172b", + "start": { + "$date": "2022-03-23T04:53:04.000Z" + }, + "end": { + "$date": "2022-03-23T05:33:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cbf40467-b053-410b-8fbf-3e0dd8a5dc57", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-23T05:09:41.000Z" + }, + "end": { + "$date": "2022-03-23T05:40:11.000Z" + }, + "events": [ + { + "uuid": "1f67edef-18de-4b4e-8a91-92c2bd70e64d", + "start": { + "$date": "2022-03-23T05:09:41.000Z" + }, + "end": { + "$date": "2022-03-23T05:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "559bede2-9647-4a45-b216-6d559cd3452e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-23T05:45:12.000Z" + }, + "end": { + "$date": "2022-03-23T06:18:18.000Z" + }, + "events": [ + { + "uuid": "24b32e8e-ff40-4b6b-b1e3-841fd08d28ba", + "start": { + "$date": "2022-03-23T05:45:12.000Z" + }, + "end": { + "$date": "2022-03-23T06:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "ce3df34f-1190-433b-b8a6-65288d9f4803", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-23T06:09:38.000Z" + }, + "end": { + "$date": "2022-03-23T06:43:19.000Z" + }, + "events": [ + { + "uuid": "8972348a-0a63-45bf-81c5-8233ed4144f3", + "start": { + "$date": "2022-03-23T06:09:38.000Z" + }, + "end": { + "$date": "2022-03-23T06:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "87f31f02-c931-40a2-8708-fde303c7d170", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T09:03:41.000Z" + }, + "end": { + "$date": "2022-03-23T09:04:48.000Z" + }, + "events": [ + { + "uuid": "488e3f89-a38a-4708-989c-f693989f34f8", + "start": { + "$date": "2022-03-23T09:03:41.000Z" + }, + "end": { + "$date": "2022-03-23T09:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "c04ae9ab-bb8c-49f7-bf9b-ef2d22d3848f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T09:05:51.000Z" + }, + "end": { + "$date": "2022-03-23T09:07:14.000Z" + }, + "events": [ + { + "uuid": "0f2b719c-dfdb-4d7f-97af-e6479ff94012", + "start": { + "$date": "2022-03-23T09:05:51.000Z" + }, + "end": { + "$date": "2022-03-23T09:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "acd964c3-612a-43f4-8772-72490365f7e6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T09:07:57.000Z" + }, + "end": { + "$date": "2022-03-23T10:32:41.000Z" + }, + "events": [ + { + "uuid": "560733d0-10f7-42dd-ba93-a2268a70fe12", + "start": { + "$date": "2022-03-23T09:07:57.000Z" + }, + "end": { + "$date": "2022-03-23T10:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "96678108-c4d7-45cf-ae51-a1438757c14b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-23T15:54:03.000Z" + }, + "end": { + "$date": "2022-03-23T18:49:14.000Z" + }, + "events": [ + { + "uuid": "b5cf9ae7-f10d-476b-9245-a7e7d1f0bea3", + "start": { + "$date": "2022-03-23T15:54:03.000Z" + }, + "end": { + "$date": "2022-03-23T18:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "a3a1a255-dbdd-4124-9f3c-007d682b8ae0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-23T19:50:46.000Z" + }, + "end": { + "$date": "2022-03-23T22:19:09.000Z" + }, + "events": [ + { + "uuid": "780d0bab-53a8-477d-898a-570ae6da612d", + "start": { + "$date": "2022-03-23T19:50:46.000Z" + }, + "end": { + "$date": "2022-03-23T21:35:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7812cf9a-0b52-49f0-a605-bebf0bd2287b", + "start": { + "$date": "2022-03-23T21:35:46.000Z" + }, + "end": { + "$date": "2022-03-23T21:38:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c6c7b68b-8a2b-41b5-b930-b080f8fc3269", + "start": { + "$date": "2022-03-23T21:38:46.000Z" + }, + "end": { + "$date": "2022-03-23T22:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "ca3eb2c8-055d-4d71-b94a-f1ea5bae0755", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-23T19:51:58.000Z" + }, + "end": { + "$date": "2022-03-23T22:22:38.000Z" + }, + "events": [ + { + "uuid": "1eb274ef-ec0b-42f0-9aa7-1dcf5bbfb44c", + "start": { + "$date": "2022-03-23T19:51:58.000Z" + }, + "end": { + "$date": "2022-03-23T22:22:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "a0911429-a213-4ad0-bcf4-d32ec73bc996", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-23T22:30:35.000Z" + }, + "end": { + "$date": "2022-03-24T14:32:10.000Z" + }, + "events": [ + { + "uuid": "6ed7f7a1-689f-41c4-acc7-302ae8e8dfd7", + "start": { + "$date": "2022-03-23T22:30:35.000Z" + }, + "end": { + "$date": "2022-03-24T00:47:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "59212710-0af8-4997-bacf-189e220a5a5a", + "start": { + "$date": "2022-03-24T00:47:35.000Z" + }, + "end": { + "$date": "2022-03-24T01:59:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1da5dc71-115a-4875-9084-f92b46432c9e", + "start": { + "$date": "2022-03-24T01:59:35.000Z" + }, + "end": { + "$date": "2022-03-24T02:01:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4963232b-8a4b-4e76-83ca-fad92bc0ccc9", + "start": { + "$date": "2022-03-24T02:01:35.000Z" + }, + "end": { + "$date": "2022-03-24T02:04:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fba4e027-41c2-499f-8a9f-ff03bda40ee3", + "start": { + "$date": "2022-03-24T02:04:35.000Z" + }, + "end": { + "$date": "2022-03-24T02:06:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1ed09a8-6d52-4aa5-b68c-e262c87d9327", + "start": { + "$date": "2022-03-24T02:06:35.000Z" + }, + "end": { + "$date": "2022-03-24T03:10:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fee93383-712b-4cb1-889e-9db2d6671a73", + "start": { + "$date": "2022-03-24T03:10:35.000Z" + }, + "end": { + "$date": "2022-03-24T03:12:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60ae9b26-1df1-442b-8e60-9220176b78cd", + "start": { + "$date": "2022-03-24T03:12:35.000Z" + }, + "end": { + "$date": "2022-03-24T05:09:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "478cd40c-f708-4223-8ca2-806ab07f3818", + "start": { + "$date": "2022-03-24T05:09:35.000Z" + }, + "end": { + "$date": "2022-03-24T05:11:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8cfdb685-6943-466a-91a6-259c5acdca38", + "start": { + "$date": "2022-03-24T05:11:35.000Z" + }, + "end": { + "$date": "2022-03-24T14:32:10.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0f72edeb-f65f-4054-9201-ccb833df75f3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-23T20:22:38.000Z" + }, + "end": { + "$date": "2022-03-23T21:50:06.000Z" + }, + "events": [ + { + "uuid": "afc5d9d7-79e0-4188-beca-217a8d1db23b", + "start": { + "$date": "2022-03-23T20:22:38.000Z" + }, + "end": { + "$date": "2022-03-23T21:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "40008838-b232-4646-8da7-b87134037ea2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-23T21:54:32.000Z" + }, + "end": { + "$date": "2022-03-23T22:39:51.000Z" + }, + "events": [ + { + "uuid": "b4fdb71d-a828-4849-90eb-2063a708ea61", + "start": { + "$date": "2022-03-23T21:54:32.000Z" + }, + "end": { + "$date": "2022-03-23T22:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e49cfe1f-4c53-4671-9ec1-1b014e0885e2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-23T23:03:08.000Z" + }, + "end": { + "$date": "2022-03-23T23:29:06.000Z" + }, + "events": [ + { + "uuid": "66b3c84f-28a7-49b6-b651-030f84b03025", + "start": { + "$date": "2022-03-23T23:03:08.000Z" + }, + "end": { + "$date": "2022-03-23T23:29:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8cc3f542-d67d-417c-8799-5a6ce49d6a03", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-23T23:31:54.000Z" + }, + "end": { + "$date": "2022-03-23T23:57:27.000Z" + }, + "events": [ + { + "uuid": "2eab6bd7-10c8-4394-8638-c2e7528a310e", + "start": { + "$date": "2022-03-23T23:31:54.000Z" + }, + "end": { + "$date": "2022-03-23T23:57:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "03cef292-59db-4a16-9267-94dba5b44d6e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-24T00:22:44.000Z" + }, + "end": { + "$date": "2022-03-24T05:27:23.000Z" + }, + "events": [ + { + "uuid": "b00fd771-bd43-4851-a3c6-383ebba67fbe", + "start": { + "$date": "2022-03-24T00:22:44.000Z" + }, + "end": { + "$date": "2022-03-24T05:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f17bcd03-611b-439d-86d2-ecc5d0303aaf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-24T03:15:11.000Z" + }, + "end": { + "$date": "2022-03-24T04:27:41.000Z" + }, + "events": [ + { + "uuid": "8f5a3f25-e60f-4b95-af17-d87a3f55fe32", + "start": { + "$date": "2022-03-24T03:15:11.000Z" + }, + "end": { + "$date": "2022-03-24T04:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8a830a96-e628-4700-aecc-189f61d89282", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-24T03:18:30.000Z" + }, + "end": { + "$date": "2022-03-24T05:46:27.000Z" + }, + "events": [ + { + "uuid": "537d2724-9931-4744-bdb8-21044b4389de", + "start": { + "$date": "2022-03-24T03:18:30.000Z" + }, + "end": { + "$date": "2022-03-24T05:46:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "fa51753b-defb-4d46-b948-93a314ad4a0a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-24T03:27:23.000Z" + }, + "end": { + "$date": "2022-03-24T03:50:20.000Z" + }, + "events": [ + { + "uuid": "f8d9047c-47e6-41d6-98c2-c846a23d6a9a", + "start": { + "$date": "2022-03-24T03:27:23.000Z" + }, + "end": { + "$date": "2022-03-24T03:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bc282e86-19ed-45c7-a0e0-31cf5bd8efed", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-24T04:22:54.000Z" + }, + "end": { + "$date": "2022-03-24T06:07:27.000Z" + }, + "events": [ + { + "uuid": "74cbb9d7-2b7c-40d7-a96c-5af07da86492", + "start": { + "$date": "2022-03-24T04:22:54.000Z" + }, + "end": { + "$date": "2022-03-24T06:07:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb1d5659-298b-4971-8e56-6a2e02ecb3e9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-24T04:33:30.000Z" + }, + "end": { + "$date": "2022-03-24T04:34:57.000Z" + }, + "events": [ + { + "uuid": "8fd9f4a3-f019-448b-973e-6f2932ac443e", + "start": { + "$date": "2022-03-24T04:33:30.000Z" + }, + "end": { + "$date": "2022-03-24T04:34:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9384c2ad-c402-4523-92a7-868604703e1d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-24T05:35:57.000Z" + }, + "end": { + "$date": "2022-03-24T06:09:07.000Z" + }, + "events": [ + { + "uuid": "b4042da1-c2bd-44f6-a957-c8a3261fcdcf", + "start": { + "$date": "2022-03-24T05:35:57.000Z" + }, + "end": { + "$date": "2022-03-24T06:09:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "adefca53-0331-4ecb-aabe-7612f889eba5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-24T05:46:43.000Z" + }, + "end": { + "$date": "2022-03-24T06:33:17.000Z" + }, + "events": [ + { + "uuid": "5cd2a12f-b5b1-4198-a78a-da4c775b358d", + "start": { + "$date": "2022-03-24T05:46:43.000Z" + }, + "end": { + "$date": "2022-03-24T06:33:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44105510-6c9c-4d67-a7e0-41a434e5498c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-24T06:12:07.000Z" + }, + "end": { + "$date": "2022-03-24T06:36:13.000Z" + }, + "events": [ + { + "uuid": "e4bc2351-496d-4df5-acb7-64f16c6245f4", + "start": { + "$date": "2022-03-24T06:12:07.000Z" + }, + "end": { + "$date": "2022-03-24T06:36:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "009fff54-4d11-45f2-85d3-4b70f908b115", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-24T06:33:37.000Z" + }, + "end": { + "$date": "2022-03-24T09:03:06.000Z" + }, + "events": [ + { + "uuid": "4090e108-64e3-4c8d-9499-adb8bb23984d", + "start": { + "$date": "2022-03-24T06:33:37.000Z" + }, + "end": { + "$date": "2022-03-24T09:03:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "716ea806-8336-4a88-b190-b652c438396b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-24T07:37:38.000Z" + }, + "end": { + "$date": "2022-03-24T09:20:38.000Z" + }, + "events": [ + { + "uuid": "d03cab30-ed37-4d47-b847-2060005338c9", + "start": { + "$date": "2022-03-24T07:37:38.000Z" + }, + "end": { + "$date": "2022-03-24T09:20:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c153a25a-c352-48c9-9e51-793599b23f3c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-24T14:15:01.000Z" + }, + "end": { + "$date": "2022-03-24T14:25:18.000Z" + }, + "events": [ + { + "uuid": "b0b84a5e-f62c-421d-9caf-a0a7a3769f36", + "start": { + "$date": "2022-03-24T14:15:01.000Z" + }, + "end": { + "$date": "2022-03-24T14:25:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "b9a62f4d-2398-467e-8c17-996995241797", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-24T14:27:28.000Z" + }, + "end": { + "$date": "2022-03-24T14:37:25.000Z" + }, + "events": [ + { + "uuid": "8b44e1d5-0f8e-4779-935c-a184fadf78e7", + "start": { + "$date": "2022-03-24T14:27:28.000Z" + }, + "end": { + "$date": "2022-03-24T14:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "8d488946-b658-4c88-8455-e10ea979224f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-24T15:48:45.000Z" + }, + "end": { + "$date": "2022-03-24T18:07:07.000Z" + }, + "events": [ + { + "uuid": "9c875f2c-f2f1-41cf-9b55-58036eb31882", + "start": { + "$date": "2022-03-24T15:48:45.000Z" + }, + "end": { + "$date": "2022-03-24T18:07:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "5108501f-2e36-4351-9fc1-2e892f656afa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-24T16:14:34.000Z" + }, + "end": { + "$date": "2022-03-24T19:17:18.000Z" + }, + "events": [ + { + "uuid": "14af1aa3-23b2-4904-8996-90d96124c330", + "start": { + "$date": "2022-03-24T16:14:34.000Z" + }, + "end": { + "$date": "2022-03-24T19:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8ee20c25-310f-49fc-9072-8dd4fb1e643a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-24T18:06:00.000Z" + }, + "end": { + "$date": "2022-03-24T19:45:33.000Z" + }, + "events": [ + { + "uuid": "a741416d-7af9-45d5-b2a8-4f8c8ccc7461", + "start": { + "$date": "2022-03-24T18:06:00.000Z" + }, + "end": { + "$date": "2022-03-24T19:45:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "54a13836-f6a2-44ac-9496-f9057435e069", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-24T18:46:16.000Z" + }, + "end": { + "$date": "2022-03-24T23:50:47.000Z" + }, + "events": [ + { + "uuid": "b20de8e3-82c6-4943-b85c-3aa7dc2a227a", + "start": { + "$date": "2022-03-24T18:46:16.000Z" + }, + "end": { + "$date": "2022-03-24T20:44:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "11275a9f-a5d5-4c39-925c-e1c5f2bbd2c4", + "start": { + "$date": "2022-03-24T20:44:16.000Z" + }, + "end": { + "$date": "2022-03-24T20:55:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1f785326-82a8-48e2-8c34-7f0e67665480", + "start": { + "$date": "2022-03-24T20:55:16.000Z" + }, + "end": { + "$date": "2022-03-24T23:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "01134f32-8790-44a6-a055-89a48b4a5d00", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-24T20:03:29.000Z" + }, + "end": { + "$date": "2022-03-24T21:11:27.000Z" + }, + "events": [ + { + "uuid": "0168dd3d-213e-4b1d-99a0-311e42d86389", + "start": { + "$date": "2022-03-24T20:03:29.000Z" + }, + "end": { + "$date": "2022-03-24T21:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "1e9c1329-22cb-4673-a135-d33d022e2016", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-25T01:39:39.000Z" + }, + "end": { + "$date": "2022-03-25T03:11:05.000Z" + }, + "events": [ + { + "uuid": "f83bf9f6-44ec-4252-b1f3-dbd313664d1e", + "start": { + "$date": "2022-03-25T01:39:39.000Z" + }, + "end": { + "$date": "2022-03-25T03:11:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b0df554-cf99-44b4-b541-9cc085924162", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-25T01:57:38.000Z" + }, + "end": { + "$date": "2022-03-25T02:47:49.000Z" + }, + "events": [ + { + "uuid": "e923771a-1139-4769-904e-ee17668af801", + "start": { + "$date": "2022-03-25T01:57:38.000Z" + }, + "end": { + "$date": "2022-03-25T02:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be463629-6378-4b0e-94ad-990a9797280c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-25T02:59:55.000Z" + }, + "end": { + "$date": "2022-03-25T03:26:06.000Z" + }, + "events": [ + { + "uuid": "eb43d196-0455-40c8-84de-8c78183476b3", + "start": { + "$date": "2022-03-25T02:59:55.000Z" + }, + "end": { + "$date": "2022-03-25T03:26:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "29fad79e-f273-49a2-bb0c-b2089b81e62f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-25T02:57:27.000Z" + }, + "end": { + "$date": "2022-03-25T06:17:32.000Z" + }, + "events": [ + { + "uuid": "043546ff-612e-4628-9a1e-f1089bb6fbb8", + "start": { + "$date": "2022-03-25T02:57:27.000Z" + }, + "end": { + "$date": "2022-03-25T03:53:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "295eb5d1-da9c-461f-bfab-6b56c5a85f67", + "start": { + "$date": "2022-03-25T03:53:27.000Z" + }, + "end": { + "$date": "2022-03-25T03:58:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d5963984-9be4-4a47-ad7f-630fe6c16a6f", + "start": { + "$date": "2022-03-25T03:58:27.000Z" + }, + "end": { + "$date": "2022-03-25T06:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "0e62e6bd-0fde-4ebc-a866-8e8aa92d6f4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-25T03:13:06.000Z" + }, + "end": { + "$date": "2022-03-25T04:17:29.000Z" + }, + "events": [ + { + "uuid": "cffa7b5a-87dd-4b59-b927-50bb081a12cc", + "start": { + "$date": "2022-03-25T03:13:06.000Z" + }, + "end": { + "$date": "2022-03-25T04:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "39a4f761-c808-493c-aa5a-ca766bcf9923", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-25T03:40:10.000Z" + }, + "end": { + "$date": "2022-03-25T06:12:36.000Z" + }, + "events": [ + { + "uuid": "9c2e1e0c-7c93-400f-8c99-275768de1a65", + "start": { + "$date": "2022-03-25T03:40:10.000Z" + }, + "end": { + "$date": "2022-03-25T06:12:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c0626304-f2c1-4069-bedc-1b91bc722efb", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-25T04:12:52.000Z" + }, + "end": { + "$date": "2022-03-25T04:35:13.000Z" + }, + "events": [ + { + "uuid": "48950638-9f52-4618-aba5-8db04a281d45", + "start": { + "$date": "2022-03-25T04:12:52.000Z" + }, + "end": { + "$date": "2022-03-25T04:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "40f5c1fe-082c-4507-bc62-67404217a241", + "uuid": "514513e0-c868-4588-b9d0-297ab0037f03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-25T04:19:50.000Z" + }, + "end": { + "$date": "2022-03-25T04:23:36.000Z" + }, + "events": [ + { + "uuid": "b2c82474-382e-4b8d-83ae-73e5bed0ef5e", + "start": { + "$date": "2022-03-25T04:19:50.000Z" + }, + "end": { + "$date": "2022-03-25T04:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3bb81c3-47d4-4547-b73e-ad0e3642fda3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-25T04:39:17.000Z" + }, + "end": { + "$date": "2022-03-25T05:14:24.000Z" + }, + "events": [ + { + "uuid": "36ecef24-32dd-44b3-9844-30cbb682e38d", + "start": { + "$date": "2022-03-25T04:39:17.000Z" + }, + "end": { + "$date": "2022-03-25T05:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "81070ab4-60f7-470f-9fa7-33200e059ea0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-25T04:47:35.000Z" + }, + "end": { + "$date": "2022-03-25T10:53:55.000Z" + }, + "events": [ + { + "uuid": "94e14ec8-358d-40ee-bf88-55e07f902cb0", + "start": { + "$date": "2022-03-25T04:47:35.000Z" + }, + "end": { + "$date": "2022-03-25T10:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "0fa0e3dd-d873-408e-9c43-5cd55f0a1fad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-25T04:57:56.000Z" + }, + "end": { + "$date": "2022-03-25T05:24:39.000Z" + }, + "events": [ + { + "uuid": "4882adc7-00af-499d-8f75-73f35cb6c571", + "start": { + "$date": "2022-03-25T04:57:56.000Z" + }, + "end": { + "$date": "2022-03-25T05:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "07bbd2ae-76c4-4048-b1dc-ef289e861e7b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-25T04:58:07.000Z" + }, + "end": { + "$date": "2022-03-25T10:46:34.000Z" + }, + "events": [ + { + "uuid": "7eda5e85-e12a-4c9d-a3ce-fad4d9a4c21d", + "start": { + "$date": "2022-03-25T04:58:07.000Z" + }, + "end": { + "$date": "2022-03-25T05:47:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e78cd816-a1cd-41b8-8b71-db396a051e17", + "start": { + "$date": "2022-03-25T05:47:07.000Z" + }, + "end": { + "$date": "2022-03-25T09:28:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2cbb0f1-df0d-4853-a417-f7f9b1973857", + "start": { + "$date": "2022-03-25T09:28:07.000Z" + }, + "end": { + "$date": "2022-03-25T09:38:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a66a2633-8464-456e-adb9-b056f1d7e359", + "start": { + "$date": "2022-03-25T09:38:07.000Z" + }, + "end": { + "$date": "2022-03-25T10:42:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "741ae80f-a735-4d70-a6b7-c845ea38a1d9", + "start": { + "$date": "2022-03-25T10:42:07.000Z" + }, + "end": { + "$date": "2022-03-25T10:46:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d77343b-c875-4539-bd4d-bc9515bdaca8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-25T05:22:04.000Z" + }, + "end": { + "$date": "2022-03-25T05:55:40.000Z" + }, + "events": [ + { + "uuid": "fe77d391-6925-4de5-813a-8efc6000bb8d", + "start": { + "$date": "2022-03-25T05:22:04.000Z" + }, + "end": { + "$date": "2022-03-25T05:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "131927f0-e903-4cd0-8734-29b110c93ac2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-25T05:59:00.000Z" + }, + "end": { + "$date": "2022-03-25T06:25:41.000Z" + }, + "events": [ + { + "uuid": "1b358225-697c-428b-8e48-5a03ca776124", + "start": { + "$date": "2022-03-25T05:59:00.000Z" + }, + "end": { + "$date": "2022-03-25T06:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "e87b7b35-210c-45c8-87c2-22bba25120e8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-25T10:06:05.000Z" + }, + "end": { + "$date": "2022-03-25T12:16:56.000Z" + }, + "events": [ + { + "uuid": "c1454645-b7db-477c-b9cf-f2fa81d481f3", + "start": { + "$date": "2022-03-25T10:06:05.000Z" + }, + "end": { + "$date": "2022-03-25T12:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "761978d3-9f71-4929-827c-5faafbdae9d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-25T10:57:17.000Z" + }, + "end": { + "$date": "2022-03-25T13:08:42.000Z" + }, + "events": [ + { + "uuid": "05f61f2e-020e-4f2f-9041-e3aea990fd4c", + "start": { + "$date": "2022-03-25T10:57:17.000Z" + }, + "end": { + "$date": "2022-03-25T13:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1d620ef6-3a9b-4e92-b17b-4793d46c52ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-25T14:02:32.000Z" + }, + "end": { + "$date": "2022-03-25T14:35:25.000Z" + }, + "events": [ + { + "uuid": "ecca9f67-0f37-4a79-aeb6-bdd2f4b7b618", + "start": { + "$date": "2022-03-25T14:02:32.000Z" + }, + "end": { + "$date": "2022-03-25T14:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "61869bef-dda3-462a-ac75-d1f437db0f48", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-25T15:32:12.000Z" + }, + "end": { + "$date": "2022-03-25T15:33:18.000Z" + }, + "events": [ + { + "uuid": "81fdce54-0f32-4e72-8249-58c52bef3068", + "start": { + "$date": "2022-03-25T15:32:12.000Z" + }, + "end": { + "$date": "2022-03-25T15:33:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad26a851-07f7-49b7-ba99-3c937c32a8cd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-25T15:39:38.000Z" + }, + "end": { + "$date": "2022-03-25T16:38:07.000Z" + }, + "events": [ + { + "uuid": "4a4ac08e-b379-4049-8be0-cf06c66869c5", + "start": { + "$date": "2022-03-25T15:39:38.000Z" + }, + "end": { + "$date": "2022-03-25T16:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "e3eff8bd-30f5-4852-b827-b037ac45ace7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-25T17:15:01.000Z" + }, + "end": { + "$date": "2022-03-25T17:38:27.000Z" + }, + "events": [ + { + "uuid": "e6153bd5-82b2-4afa-878c-28d038849a27", + "start": { + "$date": "2022-03-25T17:15:01.000Z" + }, + "end": { + "$date": "2022-03-25T17:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "d694ce9c-8934-471a-96c0-60809ab885fa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-25T18:28:47.000Z" + }, + "end": { + "$date": "2022-03-25T19:04:28.000Z" + }, + "events": [ + { + "uuid": "1f55cc17-6f58-4784-9610-cf4421c4d27b", + "start": { + "$date": "2022-03-25T18:28:47.000Z" + }, + "end": { + "$date": "2022-03-25T19:04:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "12db6a58-31a3-4abe-a7e7-36df5326574d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-25T21:42:41.000Z" + }, + "end": { + "$date": "2022-03-25T22:08:34.000Z" + }, + "events": [ + { + "uuid": "b3a4a3b8-ab0d-4370-85c0-2c5ac0e491d5", + "start": { + "$date": "2022-03-25T21:42:41.000Z" + }, + "end": { + "$date": "2022-03-25T22:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "796d3ca4-ab05-4979-973c-42f9f86e2a59", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-25T22:11:22.000Z" + }, + "end": { + "$date": "2022-03-25T22:31:01.000Z" + }, + "events": [ + { + "uuid": "02e2db3e-b35f-434c-b720-ec6962f8c11a", + "start": { + "$date": "2022-03-25T22:11:22.000Z" + }, + "end": { + "$date": "2022-03-25T22:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06669762-cade-4077-825f-f62bb41e5aa2", + "uuid": "6d21df4e-b5db-4ac8-986e-42794a4093e8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-25T22:23:12.000Z" + }, + "end": { + "$date": "2022-03-25T23:18:26.000Z" + }, + "events": [ + { + "uuid": "e1f99802-fd4e-4747-8fe1-1cce1a17c26d", + "start": { + "$date": "2022-03-25T22:23:12.000Z" + }, + "end": { + "$date": "2022-03-25T23:18:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "ef46f159-33f0-4bdf-a46b-e1bbfcc0ca5f", + "uuid": "6599b318-2e80-4593-ac9a-49c9ec5265ec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-25T22:36:23.000Z" + }, + "end": { + "$date": "2022-03-25T22:39:36.000Z" + }, + "events": [ + { + "uuid": "64a7270d-0ae7-476d-8521-a47d1dbd7a6f", + "start": { + "$date": "2022-03-25T22:36:23.000Z" + }, + "end": { + "$date": "2022-03-25T22:39:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "83b979ec-3016-48d6-ba71-b7851198b521", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-25T22:42:25.000Z" + }, + "end": { + "$date": "2022-03-26T03:26:03.000Z" + }, + "events": [ + { + "uuid": "8aad2e8b-718c-4873-861d-42d7b21aaada", + "start": { + "$date": "2022-03-25T22:42:25.000Z" + }, + "end": { + "$date": "2022-03-25T23:35:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce517138-e0e7-4cea-802e-a5533bda2271", + "start": { + "$date": "2022-03-25T23:35:25.000Z" + }, + "end": { + "$date": "2022-03-26T00:12:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0549b55e-5c9a-475d-9897-9c4fc4c8f5e3", + "start": { + "$date": "2022-03-26T00:12:25.000Z" + }, + "end": { + "$date": "2022-03-26T03:26:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06669762-cade-4077-825f-f62bb41e5aa2", + "uuid": "b3ef6269-8f0c-49c9-81f9-18c38835c6df", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-25T23:21:33.000Z" + }, + "end": { + "$date": "2022-03-25T23:57:44.000Z" + }, + "events": [ + { + "uuid": "5f88c441-c071-4921-90fb-e16909afcadf", + "start": { + "$date": "2022-03-25T23:21:33.000Z" + }, + "end": { + "$date": "2022-03-25T23:57:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b304f530-7487-4045-a05c-1f55ded2f014", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-26T00:06:55.000Z" + }, + "end": { + "$date": "2022-03-26T00:54:18.000Z" + }, + "events": [ + { + "uuid": "bd304576-31bf-4f17-892e-fe5b8966921f", + "start": { + "$date": "2022-03-26T00:06:55.000Z" + }, + "end": { + "$date": "2022-03-26T00:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "84aa82cb-a8eb-421d-a0b0-a15e507c0863", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-26T00:08:45.000Z" + }, + "end": { + "$date": "2022-03-26T00:52:28.000Z" + }, + "events": [ + { + "uuid": "e22f4df4-b1d9-4e83-bdd3-f209132f2f47", + "start": { + "$date": "2022-03-26T00:08:45.000Z" + }, + "end": { + "$date": "2022-03-26T00:52:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cc550d4a-e850-44b7-8276-1f3ab474f143", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-26T00:10:42.000Z" + }, + "end": { + "$date": "2022-03-26T01:23:03.000Z" + }, + "events": [ + { + "uuid": "8463a8e9-16cc-4e66-8e6b-ad03aa74f545", + "start": { + "$date": "2022-03-26T00:10:42.000Z" + }, + "end": { + "$date": "2022-03-26T01:02:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6df0e5b-42f4-4dd1-8931-6ca3a2abe2d5", + "start": { + "$date": "2022-03-26T01:02:42.000Z" + }, + "end": { + "$date": "2022-03-26T01:23:03.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f1488108-24fe-4ad5-a403-44bc642f3e5a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-26T06:40:46.000Z" + }, + "end": { + "$date": "2022-03-26T06:41:11.000Z" + }, + "events": [ + { + "uuid": "88f0ce37-a8ce-489a-a3c1-367fde9e7fdb", + "start": { + "$date": "2022-03-26T06:40:46.000Z" + }, + "end": { + "$date": "2022-03-26T06:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f45009a9-7bb5-4a0e-be01-de49f092fae8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-26T01:45:25.000Z" + }, + "end": { + "$date": "2022-03-26T06:37:34.000Z" + }, + "events": [ + { + "uuid": "cc384813-68e8-4842-a30f-3eaec81f4add", + "start": { + "$date": "2022-03-26T01:45:25.000Z" + }, + "end": { + "$date": "2022-03-26T06:37:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "fd4965d6-3874-4e3c-9d23-27a1922c038f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-26T01:49:09.000Z" + }, + "end": { + "$date": "2022-03-26T06:04:14.000Z" + }, + "events": [ + { + "uuid": "25c40b7f-b541-493b-8ae5-2a26ed5d342e", + "start": { + "$date": "2022-03-26T01:49:09.000Z" + }, + "end": { + "$date": "2022-03-26T06:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0d0828f3-4c63-4fb2-bb2d-469d4abc5525", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-26T01:58:51.000Z" + }, + "end": { + "$date": "2022-03-26T02:47:55.000Z" + }, + "events": [ + { + "uuid": "cfa4a081-b387-44a9-b44b-5d25beda2e61", + "start": { + "$date": "2022-03-26T01:58:51.000Z" + }, + "end": { + "$date": "2022-03-26T02:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "68cfb2a2-69eb-4868-bf0d-8fd5fa2b6d93", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-26T02:10:46.000Z" + }, + "end": { + "$date": "2022-03-26T02:16:58.000Z" + }, + "events": [ + { + "uuid": "8937b681-7990-43c0-bead-146ea4f48669", + "start": { + "$date": "2022-03-26T02:10:46.000Z" + }, + "end": { + "$date": "2022-03-26T02:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "91a6614d-ffe3-4ff9-a339-fed830d1e6fb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-26T02:17:13.000Z" + }, + "end": { + "$date": "2022-03-26T06:20:08.000Z" + }, + "events": [ + { + "uuid": "49bbaf36-b91c-45e9-9d9d-d9704d1d0db0", + "start": { + "$date": "2022-03-26T02:17:13.000Z" + }, + "end": { + "$date": "2022-03-26T02:34:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d4f6425-f0b1-4e2e-b60f-376cba22ec2c", + "start": { + "$date": "2022-03-26T02:34:13.000Z" + }, + "end": { + "$date": "2022-03-26T02:36:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fdc04497-6146-4426-a9fa-b7db22299086", + "start": { + "$date": "2022-03-26T02:36:13.000Z" + }, + "end": { + "$date": "2022-03-26T06:20:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4b12ace8-018f-48a4-b6aa-b630eba94abe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-26T02:21:08.000Z" + }, + "end": { + "$date": "2022-03-26T07:38:43.000Z" + }, + "events": [ + { + "uuid": "a086b58f-a86f-43f9-b986-c958794445b8", + "start": { + "$date": "2022-03-26T02:21:08.000Z" + }, + "end": { + "$date": "2022-03-26T07:38:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "58266d34-12e7-4e9b-ae5b-184d904b0340", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-26T03:22:45.000Z" + }, + "end": { + "$date": "2022-03-26T05:01:54.000Z" + }, + "events": [ + { + "uuid": "8515dce7-dd18-4b9d-80dd-bb1de82338ec", + "start": { + "$date": "2022-03-26T03:22:45.000Z" + }, + "end": { + "$date": "2022-03-26T05:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "13c7871c-e2e9-4fd4-af97-ef346afa8116", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-26T03:35:49.000Z" + }, + "end": { + "$date": "2022-03-26T06:24:59.000Z" + }, + "events": [ + { + "uuid": "83fd8166-2863-4f46-85c4-cb7e881f5200", + "start": { + "$date": "2022-03-26T03:35:49.000Z" + }, + "end": { + "$date": "2022-03-26T06:24:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ed911115-9f4a-49e8-8213-a589a01bc6c6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-26T03:42:12.000Z" + }, + "end": { + "$date": "2022-03-26T06:20:23.000Z" + }, + "events": [ + { + "uuid": "6b5ba44b-43b5-48e4-a066-2c27a7152246", + "start": { + "$date": "2022-03-26T03:42:12.000Z" + }, + "end": { + "$date": "2022-03-26T06:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "75857899-d040-4341-aa2c-042fc797c6ff", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-26T04:14:06.000Z" + }, + "end": { + "$date": "2022-03-26T07:06:08.000Z" + }, + "events": [ + { + "uuid": "a2f17917-d4e9-412f-ab6a-79e5f71e76ca", + "start": { + "$date": "2022-03-26T04:14:06.000Z" + }, + "end": { + "$date": "2022-03-26T07:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4b2c50f9-e811-428c-951a-36bdeb9f893c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-26T04:16:43.000Z" + }, + "end": { + "$date": "2022-03-26T07:06:50.000Z" + }, + "events": [ + { + "uuid": "93b72768-a284-42f9-8255-f5d96a00728b", + "start": { + "$date": "2022-03-26T04:16:43.000Z" + }, + "end": { + "$date": "2022-03-26T07:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "06669762-cade-4077-825f-f62bb41e5aa2", + "uuid": "998bf3be-d3ae-4a77-83ea-9ec8fc0554d0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-03-26T06:39:17.000Z" + }, + "end": { + "$date": "2022-03-26T11:35:38.000Z" + }, + "events": [ + { + "uuid": "925b7301-cd58-4c50-be91-0f8c8afd68a1", + "start": { + "$date": "2022-03-26T06:39:17.000Z" + }, + "end": { + "$date": "2022-03-26T06:58:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6afc6dcc-7879-459d-a26c-59fb45a1a343", + "start": { + "$date": "2022-03-26T06:58:17.000Z" + }, + "end": { + "$date": "2022-03-26T07:09:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f17cf272-a0bf-46dc-9caa-1ec4aa03190f", + "start": { + "$date": "2022-03-26T07:09:17.000Z" + }, + "end": { + "$date": "2022-03-26T07:19:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4a0447f-1539-40c5-8dcb-6704a7e6d759", + "start": { + "$date": "2022-03-26T07:19:17.000Z" + }, + "end": { + "$date": "2022-03-26T07:28:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc7e74b5-fda7-4fdd-86dd-915a370ab33a", + "start": { + "$date": "2022-03-26T07:28:17.000Z" + }, + "end": { + "$date": "2022-03-26T08:55:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9283ccc8-330b-4e4c-bc8f-9dd1969ef7da", + "start": { + "$date": "2022-03-26T08:55:17.000Z" + }, + "end": { + "$date": "2022-03-26T11:35:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "674d9699-c1c0-4b2e-8a04-e5c299084eb9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-26T07:46:16.000Z" + }, + "end": { + "$date": "2022-03-26T08:08:23.000Z" + }, + "events": [ + { + "uuid": "9228c83f-4bc2-47ca-978e-6d17eaf58e23", + "start": { + "$date": "2022-03-26T07:46:16.000Z" + }, + "end": { + "$date": "2022-03-26T08:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "61f461d3-3e69-40d1-8611-dfa2b80d39ad", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-26T08:16:22.000Z" + }, + "end": { + "$date": "2022-03-26T08:55:29.000Z" + }, + "events": [ + { + "uuid": "f0275879-4274-428d-9526-805d44cd8ff9", + "start": { + "$date": "2022-03-26T08:16:22.000Z" + }, + "end": { + "$date": "2022-03-26T08:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bb544a95-5a12-421f-a179-8f8a99bccaff", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-26T13:33:29.000Z" + }, + "end": { + "$date": "2022-03-26T16:12:12.000Z" + }, + "events": [ + { + "uuid": "270d155e-1618-4612-ade7-6ffcdba391e7", + "start": { + "$date": "2022-03-26T13:33:29.000Z" + }, + "end": { + "$date": "2022-03-26T16:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ef46f159-33f0-4bdf-a46b-e1bbfcc0ca5f", + "uuid": "bd2310de-7107-4ee4-ab5e-0da7fc30e524", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-26T15:12:10.000Z" + }, + "end": { + "$date": "2022-03-26T15:24:15.000Z" + }, + "events": [ + { + "uuid": "3b2f9cfa-c8ff-42ac-885c-34e52df5a77f", + "start": { + "$date": "2022-03-26T15:12:10.000Z" + }, + "end": { + "$date": "2022-03-26T15:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec77d807-e1cf-43fe-ae89-ea1c78d685eb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-26T19:38:26.000Z" + }, + "end": { + "$date": "2022-03-26T20:08:26.000Z" + }, + "events": [ + { + "uuid": "b0f01a20-4bee-4987-860a-5c7bf58c4630", + "start": { + "$date": "2022-03-26T19:38:26.000Z" + }, + "end": { + "$date": "2022-03-26T20:08:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7a0ee0b-279c-4477-a309-4abfb5695731", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-26T20:15:56.000Z" + }, + "end": { + "$date": "2022-03-26T20:50:27.000Z" + }, + "events": [ + { + "uuid": "41f2ac9d-52b9-4fa0-9885-d0f0e61015db", + "start": { + "$date": "2022-03-26T20:15:56.000Z" + }, + "end": { + "$date": "2022-03-26T20:50:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a10b5e9a-a323-47df-b0e8-11235f830909", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-26T21:30:58.000Z" + }, + "end": { + "$date": "2022-03-26T21:51:29.000Z" + }, + "events": [ + { + "uuid": "0f6a3985-7b71-4486-b33b-b957546809f8", + "start": { + "$date": "2022-03-26T21:30:58.000Z" + }, + "end": { + "$date": "2022-03-26T21:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2157808b-185c-429d-b6ac-12f06b8d56c4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-26T21:46:03.000Z" + }, + "end": { + "$date": "2022-03-26T21:51:56.000Z" + }, + "events": [ + { + "uuid": "9addf1d1-9a50-4e03-987b-19f3ca909145", + "start": { + "$date": "2022-03-26T21:46:03.000Z" + }, + "end": { + "$date": "2022-03-26T21:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "8bea6db2-c01e-4cf8-aad3-15edfd09aa36", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-26T21:54:59.000Z" + }, + "end": { + "$date": "2022-03-26T23:31:21.000Z" + }, + "events": [ + { + "uuid": "66c99f0e-60ab-4ef7-b54a-fd625cb788a8", + "start": { + "$date": "2022-03-26T21:54:59.000Z" + }, + "end": { + "$date": "2022-03-26T23:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a15863d4-379d-45c0-9d3c-823129be65a1", + "uuid": "57f0d950-6f62-4bf9-89fb-a59f61d446f0", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-26T22:36:14.000Z" + }, + "end": { + "$date": "2022-03-26T23:21:26.000Z" + }, + "events": [ + { + "uuid": "856b2d25-1688-4ddb-8c9b-84bba233f43b", + "start": { + "$date": "2022-03-26T22:36:14.000Z" + }, + "end": { + "$date": "2022-03-26T23:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b15d5927-6fa8-44d9-a4b5-a13f9e8e6051", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-26T23:32:45.000Z" + }, + "end": { + "$date": "2022-03-26T23:34:01.000Z" + }, + "events": [ + { + "uuid": "1b793d3f-a9dd-4234-9435-0c2f49a4de26", + "start": { + "$date": "2022-03-26T23:32:45.000Z" + }, + "end": { + "$date": "2022-03-26T23:34:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c9b721e-5314-4bc1-b98b-5b70d75c3e6e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-26T23:41:33.000Z" + }, + "end": { + "$date": "2022-03-27T00:15:19.000Z" + }, + "events": [ + { + "uuid": "13e13ae8-af55-4482-8f60-6e7415f4a492", + "start": { + "$date": "2022-03-26T23:41:33.000Z" + }, + "end": { + "$date": "2022-03-27T00:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "df23631d-3b69-43fe-8f8d-4e4b1fae8915", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-26T23:38:56.000Z" + }, + "end": { + "$date": "2022-03-26T23:44:47.000Z" + }, + "events": [ + { + "uuid": "3cd76806-9aa7-46e7-b7b5-04463d41d013", + "start": { + "$date": "2022-03-26T23:38:56.000Z" + }, + "end": { + "$date": "2022-03-26T23:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "995a704d-8746-4571-b165-be72d28092b5", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-27T00:21:19.000Z" + }, + "end": { + "$date": "2022-03-27T01:00:47.000Z" + }, + "events": [ + { + "uuid": "13d46257-7084-47fb-af53-9db751efc9cf", + "start": { + "$date": "2022-03-27T00:21:19.000Z" + }, + "end": { + "$date": "2022-03-27T01:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ae8c44d-3873-4eab-98e4-03fda7f88054", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-27T00:24:41.000Z" + }, + "end": { + "$date": "2022-03-27T00:58:52.000Z" + }, + "events": [ + { + "uuid": "8fdc8fad-10e2-4d24-b2cd-4b8de364d7fb", + "start": { + "$date": "2022-03-27T00:24:41.000Z" + }, + "end": { + "$date": "2022-03-27T00:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "76887ea5-8ce2-4b6b-a4e0-896dc978182e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T01:24:23.000Z" + }, + "end": { + "$date": "2022-03-27T01:25:41.000Z" + }, + "events": [ + { + "uuid": "de99f923-e350-443c-9ed1-026e13468ed0", + "start": { + "$date": "2022-03-27T01:24:23.000Z" + }, + "end": { + "$date": "2022-03-27T01:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "6c093802-f969-44a5-a814-172949b76308", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T01:26:03.000Z" + }, + "end": { + "$date": "2022-03-27T01:51:38.000Z" + }, + "events": [ + { + "uuid": "520243f1-de4e-4aac-b671-d5ff188c83c1", + "start": { + "$date": "2022-03-27T01:26:03.000Z" + }, + "end": { + "$date": "2022-03-27T01:51:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0e6a11ca-61d5-464c-af26-77926fae16dd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T01:51:55.000Z" + }, + "end": { + "$date": "2022-03-27T03:39:28.000Z" + }, + "events": [ + { + "uuid": "e5798a0b-97d1-40c9-81b4-17e9d2eff3e8", + "start": { + "$date": "2022-03-27T01:51:55.000Z" + }, + "end": { + "$date": "2022-03-27T03:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7339c41b-d1d2-42c9-bf26-8c4239a16bda", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T02:00:55.000Z" + }, + "end": { + "$date": "2022-03-27T03:52:29.000Z" + }, + "events": [ + { + "uuid": "94477dc6-d777-428b-bf3e-d23076261fe2", + "start": { + "$date": "2022-03-27T02:00:55.000Z" + }, + "end": { + "$date": "2022-03-27T02:58:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2840f05-118d-4b26-9cfd-d4c4030b2881", + "start": { + "$date": "2022-03-27T02:58:55.000Z" + }, + "end": { + "$date": "2022-03-27T03:04:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d67fd9d2-b8bb-4636-93f8-5e975d78f2b4", + "start": { + "$date": "2022-03-27T03:04:55.000Z" + }, + "end": { + "$date": "2022-03-27T03:14:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e6d23b1-84c2-4241-9497-876526d5d7e3", + "start": { + "$date": "2022-03-27T03:14:55.000Z" + }, + "end": { + "$date": "2022-03-27T03:52:29.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ca2b542d-bb90-42cf-8653-5e8497714873", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-27T02:01:38.000Z" + }, + "end": { + "$date": "2022-03-27T03:54:26.000Z" + }, + "events": [ + { + "uuid": "be0072c1-468d-4345-bc05-f56ad03855bd", + "start": { + "$date": "2022-03-27T02:01:38.000Z" + }, + "end": { + "$date": "2022-03-27T03:54:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "09b87d11-cf2c-4fdf-9aef-8c02e60523c1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-27T02:03:32.000Z" + }, + "end": { + "$date": "2022-03-27T02:28:48.000Z" + }, + "events": [ + { + "uuid": "ede26f92-f637-4401-bdbb-bc24269b265a", + "start": { + "$date": "2022-03-27T02:03:32.000Z" + }, + "end": { + "$date": "2022-03-27T02:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4461f04f-7619-4964-9717-0632e5d0d98d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-27T02:07:10.000Z" + }, + "end": { + "$date": "2022-03-27T02:52:10.000Z" + }, + "events": [ + { + "uuid": "a6ebf0ad-7bad-4827-910b-d7baad9eb7a1", + "start": { + "$date": "2022-03-27T02:07:10.000Z" + }, + "end": { + "$date": "2022-03-27T02:52:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c1dfc53c-12be-4b1e-b089-68c02bb72b91", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T03:44:44.000Z" + }, + "end": { + "$date": "2022-03-27T03:56:11.000Z" + }, + "events": [ + { + "uuid": "32e53cc0-a4fe-40b0-8ddc-b99eaa4227bb", + "start": { + "$date": "2022-03-27T03:44:44.000Z" + }, + "end": { + "$date": "2022-03-27T03:56:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", + "uuid": "d0e8d5c0-5a8a-43af-b7d6-477a52b94912", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-27T04:05:43.000Z" + }, + "end": { + "$date": "2022-03-27T06:28:34.000Z" + }, + "events": [ + { + "uuid": "9e1f9b6e-1c29-4dd0-b4f6-11b71643410b", + "start": { + "$date": "2022-03-27T04:05:43.000Z" + }, + "end": { + "$date": "2022-03-27T06:28:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c434c48b-5deb-4aa1-b13d-59fb1a79c192", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T04:09:15.000Z" + }, + "end": { + "$date": "2022-03-27T04:45:05.000Z" + }, + "events": [ + { + "uuid": "63027f9b-e7d3-41ea-87d7-e45da07c362b", + "start": { + "$date": "2022-03-27T04:09:15.000Z" + }, + "end": { + "$date": "2022-03-27T04:45:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "c289c970-9d29-4c34-82e3-758cad8688af", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T04:45:27.000Z" + }, + "end": { + "$date": "2022-03-27T05:45:10.000Z" + }, + "events": [ + { + "uuid": "b343c5d2-2a96-4f1d-9d83-e955eeed5b3d", + "start": { + "$date": "2022-03-27T04:45:27.000Z" + }, + "end": { + "$date": "2022-03-27T05:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6d6ff525-afc7-42f4-a9bc-63f93d09b3d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-27T04:56:13.000Z" + }, + "end": { + "$date": "2022-03-27T05:36:19.000Z" + }, + "events": [ + { + "uuid": "246bb277-8571-4398-8b2f-aaa458155b9a", + "start": { + "$date": "2022-03-27T04:56:13.000Z" + }, + "end": { + "$date": "2022-03-27T05:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "71b63581-c2a4-4ed6-b947-d4dcf165d48c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-27T05:37:19.000Z" + }, + "end": { + "$date": "2022-03-27T07:49:51.000Z" + }, + "events": [ + { + "uuid": "99edb23f-ee9a-4a8e-aa91-9b4c3ad949f6", + "start": { + "$date": "2022-03-27T05:37:19.000Z" + }, + "end": { + "$date": "2022-03-27T07:49:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "bedb89c3-1992-401a-8683-4e4a49d99c70", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-27T05:41:10.000Z" + }, + "end": { + "$date": "2022-03-27T07:49:48.000Z" + }, + "events": [ + { + "uuid": "c21ac6b0-5318-45e7-8d6c-fd0df37926f0", + "start": { + "$date": "2022-03-27T05:41:10.000Z" + }, + "end": { + "$date": "2022-03-27T07:20:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "743123a0-8436-46b7-bfd1-e13f6e918989", + "start": { + "$date": "2022-03-27T07:20:10.000Z" + }, + "end": { + "$date": "2022-03-27T07:25:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69da4b3b-4489-4e70-a1f3-02d661c46cf3", + "start": { + "$date": "2022-03-27T07:25:10.000Z" + }, + "end": { + "$date": "2022-03-27T07:49:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b0eb1747-3401-4b65-96b5-480f0bf0ecab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-27T05:45:50.000Z" + }, + "end": { + "$date": "2022-03-27T06:43:08.000Z" + }, + "events": [ + { + "uuid": "60feab5c-19c5-40e2-9144-2d2c1ccfcb95", + "start": { + "$date": "2022-03-27T05:45:50.000Z" + }, + "end": { + "$date": "2022-03-27T06:43:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5e0491ef-a269-4f09-aa52-feb1fd615a8d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-27T08:00:28.000Z" + }, + "end": { + "$date": "2022-03-27T08:01:13.000Z" + }, + "events": [ + { + "uuid": "03f7b830-47fc-4a8a-a702-52d7567ca6bf", + "start": { + "$date": "2022-03-27T08:00:28.000Z" + }, + "end": { + "$date": "2022-03-27T08:01:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cf52dcbb-3482-4eaf-b2f4-b5981ac2a0b0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-27T07:21:57.000Z" + }, + "end": { + "$date": "2022-03-27T09:25:22.000Z" + }, + "events": [ + { + "uuid": "5067db02-2284-4457-9172-1c0e27e6f06e", + "start": { + "$date": "2022-03-27T07:21:57.000Z" + }, + "end": { + "$date": "2022-03-27T09:25:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d62e5614-45e4-4964-8bdb-b475103b952f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-27T07:25:49.000Z" + }, + "end": { + "$date": "2022-03-27T09:25:25.000Z" + }, + "events": [ + { + "uuid": "b83a3026-1f67-40da-96c6-448d2a44920f", + "start": { + "$date": "2022-03-27T07:25:49.000Z" + }, + "end": { + "$date": "2022-03-27T09:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4afab16c-284e-4ea5-88a4-c2902705462c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-27T07:58:15.000Z" + }, + "end": { + "$date": "2022-03-27T08:43:24.000Z" + }, + "events": [ + { + "uuid": "78ad2501-4c40-4ee1-a272-0cdda7d4e915", + "start": { + "$date": "2022-03-27T07:58:15.000Z" + }, + "end": { + "$date": "2022-03-27T08:43:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "65be909a-c6d5-4939-9966-5cbe8f81b959", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-27T08:22:29.000Z" + }, + "end": { + "$date": "2022-03-27T08:23:50.000Z" + }, + "events": [ + { + "uuid": "11ce4b7c-1e92-42d0-a69c-3c6c40c3bc68", + "start": { + "$date": "2022-03-27T08:22:29.000Z" + }, + "end": { + "$date": "2022-03-27T08:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9db1eb62-fc2f-4662-a4cc-0391e610163a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T14:18:05.000Z" + }, + "end": { + "$date": "2022-03-27T15:27:07.000Z" + }, + "events": [ + { + "uuid": "45c139c5-fa0b-4ba0-b8ef-3781dcff0da8", + "start": { + "$date": "2022-03-27T14:18:05.000Z" + }, + "end": { + "$date": "2022-03-27T15:27:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "05d204ab-8c31-4165-ab6f-ec64a62afeb9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T15:28:57.000Z" + }, + "end": { + "$date": "2022-03-27T15:31:23.000Z" + }, + "events": [ + { + "uuid": "5b8503d3-0860-41d0-9782-bf9035a720c7", + "start": { + "$date": "2022-03-27T15:28:57.000Z" + }, + "end": { + "$date": "2022-03-27T15:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "e3214ecb-c675-4348-b4a4-52f95c883ee2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T15:45:03.000Z" + }, + "end": { + "$date": "2022-03-27T15:52:00.000Z" + }, + "events": [ + { + "uuid": "7daf7699-f65a-4069-ae11-bc1c92b2cf3c", + "start": { + "$date": "2022-03-27T15:45:03.000Z" + }, + "end": { + "$date": "2022-03-27T15:52:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "45141b81-5998-460e-8ab0-29916cf1db66", + "uuid": "951e025d-5be1-4280-89e4-705939f5a06f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T19:40:05.000Z" + }, + "end": { + "$date": "2022-03-27T21:18:03.000Z" + }, + "events": [ + { + "uuid": "1f2e1251-9f5d-44ea-9c1e-0d7cd5a6722b", + "start": { + "$date": "2022-03-27T19:40:05.000Z" + }, + "end": { + "$date": "2022-03-27T23:32:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bec45c61-0ca2-4317-a183-c831b4f28a66", + "start": { + "$date": "2022-03-27T23:32:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:16:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "60e7ba06-e093-425c-a885-efa20edfa5d4", + "start": { + "$date": "2022-03-28T00:16:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:23:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "510ee6f7-5eaa-4599-acad-5236737bc55e", + "start": { + "$date": "2022-03-28T00:23:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:26:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dbdbbca1-6418-429d-b544-6335fad65478", + "start": { + "$date": "2022-03-28T00:26:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:28:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4e19ca5-8de6-45de-9ace-ea2405e8b8c2", + "start": { + "$date": "2022-03-28T00:28:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:36:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "592283df-67f0-43be-9e7c-3416458d28f2", + "start": { + "$date": "2022-03-28T00:36:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:42:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9b8750f-9b07-455f-a6b3-0431d54b0cc6", + "start": { + "$date": "2022-03-28T00:42:05.000Z" + }, + "end": { + "$date": "2022-03-28T00:50:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8de92eaf-166e-4dd3-83e4-73bcadba6ab7", + "start": { + "$date": "2022-03-28T00:50:05.000Z" + }, + "end": { + "$date": "2022-03-27T21:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "ba82e98f-4add-4642-a143-9ff2e74490ea", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-27T21:29:17.000Z" + }, + "end": { + "$date": "2022-03-27T21:56:00.000Z" + }, + "events": [ + { + "uuid": "c832b3e9-929e-4b19-aa20-82e3fd6d0ae7", + "start": { + "$date": "2022-03-27T21:29:17.000Z" + }, + "end": { + "$date": "2022-03-27T21:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "2c3d5c49-24b6-4123-ae20-2b709f69785f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T21:32:44.000Z" + }, + "end": { + "$date": "2022-03-27T21:39:25.000Z" + }, + "events": [ + { + "uuid": "0084c3be-62de-43c5-b158-468bef454674", + "start": { + "$date": "2022-03-27T21:32:44.000Z" + }, + "end": { + "$date": "2022-03-27T21:39:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "9cf9a826-73f9-4e07-9895-ad9df83d280e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T21:40:45.000Z" + }, + "end": { + "$date": "2022-03-27T21:53:17.000Z" + }, + "events": [ + { + "uuid": "52179961-0a05-4722-bc88-d895a5d43f34", + "start": { + "$date": "2022-03-27T21:40:45.000Z" + }, + "end": { + "$date": "2022-03-27T21:53:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02907f28-8072-4fb5-bbbc-923845a2e23c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-27T22:11:14.000Z" + }, + "end": { + "$date": "2022-03-27T22:56:32.000Z" + }, + "events": [ + { + "uuid": "202851ad-3fac-4e2d-904d-c77b32ecdb42", + "start": { + "$date": "2022-03-27T22:11:14.000Z" + }, + "end": { + "$date": "2022-03-27T22:56:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d53f82e4-1bab-4a26-8226-543b6a4443e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-27T22:22:29.000Z" + }, + "end": { + "$date": "2022-03-27T22:53:45.000Z" + }, + "events": [ + { + "uuid": "f336bcb1-6703-42c5-913d-1b35b30a7689", + "start": { + "$date": "2022-03-27T22:22:29.000Z" + }, + "end": { + "$date": "2022-03-27T22:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fd0c0f6a-7e2b-4cc0-9e6c-a4aa5e7ef83b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-28T00:29:04.000Z" + }, + "end": { + "$date": "2022-03-28T01:24:34.000Z" + }, + "events": [ + { + "uuid": "06763827-b689-4f28-b18d-4567f971a182", + "start": { + "$date": "2022-03-28T00:29:04.000Z" + }, + "end": { + "$date": "2022-03-28T01:24:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ceb0ab48-f836-45e3-afc4-e1d367000f6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-28T00:38:08.000Z" + }, + "end": { + "$date": "2022-03-28T00:41:49.000Z" + }, + "events": [ + { + "uuid": "a63fbb6b-2f0b-4367-88d0-8816d0a2433c", + "start": { + "$date": "2022-03-28T00:38:08.000Z" + }, + "end": { + "$date": "2022-03-28T00:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "de113930-a285-436d-b329-21cc6e03be89", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-28T01:30:42.000Z" + }, + "end": { + "$date": "2022-03-28T01:32:02.000Z" + }, + "events": [ + { + "uuid": "d08c6783-24d6-481a-bb3c-43b9ea3f1abd", + "start": { + "$date": "2022-03-28T01:30:42.000Z" + }, + "end": { + "$date": "2022-03-28T01:32:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "1d7188b6-74c8-4904-928b-94feccdb47eb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-28T01:38:04.000Z" + }, + "end": { + "$date": "2022-03-28T02:08:24.000Z" + }, + "events": [ + { + "uuid": "115660c3-7ca4-43e5-9c17-bfd54aa2455f", + "start": { + "$date": "2022-03-28T01:38:04.000Z" + }, + "end": { + "$date": "2022-03-28T02:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "295aa34f-1e67-4fb6-ab73-8674abf52882", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-28T01:41:23.000Z" + }, + "end": { + "$date": "2022-03-28T01:42:29.000Z" + }, + "events": [ + { + "uuid": "f69d2ef7-de64-4bba-b2df-cb9daecc9013", + "start": { + "$date": "2022-03-28T01:41:23.000Z" + }, + "end": { + "$date": "2022-03-28T01:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ecfdc5b3-ba0a-4393-9961-e39f868c2c53", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-28T01:44:09.000Z" + }, + "end": { + "$date": "2022-03-28T02:07:55.000Z" + }, + "events": [ + { + "uuid": "231e1419-b24e-42d7-9da9-2a57bfe3139a", + "start": { + "$date": "2022-03-28T01:44:09.000Z" + }, + "end": { + "$date": "2022-03-28T02:07:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "b60a8d4c-ca5e-49bb-9c5c-368fda4c40f5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-28T01:56:47.000Z" + }, + "end": { + "$date": "2022-03-28T02:04:14.000Z" + }, + "events": [ + { + "uuid": "bb1afe41-0421-4a25-a651-93bdb175ae65", + "start": { + "$date": "2022-03-28T01:56:47.000Z" + }, + "end": { + "$date": "2022-03-28T02:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2e4d9095-7794-42b1-afba-41ca253f524c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-28T02:07:14.000Z" + }, + "end": { + "$date": "2022-03-28T04:22:11.000Z" + }, + "events": [ + { + "uuid": "47c4e77b-92ef-438f-922a-15474bb96ea1", + "start": { + "$date": "2022-03-28T02:07:14.000Z" + }, + "end": { + "$date": "2022-03-28T04:22:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81a8f02e-5359-4f01-947f-8a8fe321bca5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-28T02:09:00.000Z" + }, + "end": { + "$date": "2022-03-28T02:58:13.000Z" + }, + "events": [ + { + "uuid": "47071355-06e0-4748-bd74-b92046f3a277", + "start": { + "$date": "2022-03-28T02:09:00.000Z" + }, + "end": { + "$date": "2022-03-28T02:58:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68559b6c-8b2e-422a-9853-41fe92b725e3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-28T02:11:39.000Z" + }, + "end": { + "$date": "2022-03-28T02:30:20.000Z" + }, + "events": [ + { + "uuid": "d84e267f-748e-499d-8517-325955586196", + "start": { + "$date": "2022-03-28T02:11:39.000Z" + }, + "end": { + "$date": "2022-03-28T02:30:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14723bdd-789f-437b-848f-e29f2d07e9d4", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-28T03:23:08.000Z" + }, + "end": { + "$date": "2022-03-28T03:45:54.000Z" + }, + "events": [ + { + "uuid": "73b1a4d2-b19d-41de-b748-56311f3c8a66", + "start": { + "$date": "2022-03-28T03:23:08.000Z" + }, + "end": { + "$date": "2022-03-28T03:45:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2d7a0b92-3615-442e-9850-ffba9eefb76d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-28T03:20:05.000Z" + }, + "end": { + "$date": "2022-03-28T03:39:57.000Z" + }, + "events": [ + { + "uuid": "173ea166-54f4-4c78-8dab-61c22b61984d", + "start": { + "$date": "2022-03-28T03:20:05.000Z" + }, + "end": { + "$date": "2022-03-28T03:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08b939af-83cb-4ee2-86b0-b156f0acfa74", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-28T03:51:30.000Z" + }, + "end": { + "$date": "2022-03-28T04:23:45.000Z" + }, + "events": [ + { + "uuid": "dbd3ffd9-7e54-49c5-949e-e7b193b4c74c", + "start": { + "$date": "2022-03-28T03:51:30.000Z" + }, + "end": { + "$date": "2022-03-28T04:23:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "83c2fb05-04c3-40ba-ac34-7e7b29f16e40", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-28T04:00:06.000Z" + }, + "end": { + "$date": "2022-03-28T05:39:22.000Z" + }, + "events": [ + { + "uuid": "cace7515-3dce-4d87-b6e8-7eae15a74919", + "start": { + "$date": "2022-03-28T04:00:06.000Z" + }, + "end": { + "$date": "2022-03-28T05:39:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1fe7c5e2-afac-4a7d-887c-d230654687a5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-28T04:01:04.000Z" + }, + "end": { + "$date": "2022-03-28T05:39:24.000Z" + }, + "events": [ + { + "uuid": "6d2ba92c-1c47-4cad-9558-c59f8f361d82", + "start": { + "$date": "2022-03-28T04:01:04.000Z" + }, + "end": { + "$date": "2022-03-28T05:39:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "45141b81-5998-460e-8ab0-29916cf1db66", + "uuid": "168a9fc7-3983-4d7d-8a4d-f2dc77d962f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-28T05:14:59.000Z" + }, + "end": { + "$date": "2022-03-28T05:17:10.000Z" + }, + "events": [ + { + "uuid": "1d84fb7d-aad3-45ad-9c70-6006258ad15b", + "start": { + "$date": "2022-03-28T05:14:59.000Z" + }, + "end": { + "$date": "2022-03-28T05:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "7a804574-870c-41d3-aaad-2b53f7ce9154", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-28T04:29:28.000Z" + }, + "end": { + "$date": "2022-03-28T05:48:30.000Z" + }, + "events": [ + { + "uuid": "54116c62-7e4b-44b3-85f9-a334de2ad621", + "start": { + "$date": "2022-03-28T04:29:28.000Z" + }, + "end": { + "$date": "2022-03-28T05:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1f347a2-f9cf-4f7b-a6e5-640871008405", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-28T04:49:49.000Z" + }, + "end": { + "$date": "2022-03-28T05:12:26.000Z" + }, + "events": [ + { + "uuid": "8a50aa2f-e8db-4596-b47c-f624552c94b8", + "start": { + "$date": "2022-03-28T04:49:49.000Z" + }, + "end": { + "$date": "2022-03-28T05:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "463b3270-46db-4d23-b080-416dfdf75f23", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-28T05:14:20.000Z" + }, + "end": { + "$date": "2022-03-28T05:34:28.000Z" + }, + "events": [ + { + "uuid": "da0df313-37ea-4c6f-ac30-98da65d85190", + "start": { + "$date": "2022-03-28T05:14:20.000Z" + }, + "end": { + "$date": "2022-03-28T05:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bff36695-e5e8-4e3a-a4c4-d827d3ed3257", + "uuid": "3a72177b-3581-47f6-af55-255c1df3e5e3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-28T05:17:24.000Z" + }, + "end": { + "$date": "2022-03-28T05:34:58.000Z" + }, + "events": [ + { + "uuid": "12cc7a8d-6165-4202-8df3-bbce2feea859", + "start": { + "$date": "2022-03-28T05:17:24.000Z" + }, + "end": { + "$date": "2022-03-28T05:34:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "822b7813-fdc0-4545-8122-e06263ab61c7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-28T05:50:56.000Z" + }, + "end": { + "$date": "2022-03-28T05:53:56.000Z" + }, + "events": [ + { + "uuid": "d92b6abb-7976-4bd6-9e42-a16eda798d1a", + "start": { + "$date": "2022-03-28T05:50:56.000Z" + }, + "end": { + "$date": "2022-03-28T05:53:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "4ff20554-c36d-4567-88f5-da717f4933ea", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-28T16:23:25.000Z" + }, + "end": { + "$date": "2022-03-28T16:23:35.000Z" + }, + "events": [ + { + "uuid": "a318b1bd-a876-421b-a4fe-4a913796c720", + "start": { + "$date": "2022-03-28T16:23:25.000Z" + }, + "end": { + "$date": "2022-03-28T16:23:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "4f29d5e7-2feb-4549-a6ad-c72e43238f86", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-28T16:33:51.000Z" + }, + "end": { + "$date": "2022-03-28T17:18:29.000Z" + }, + "events": [ + { + "uuid": "5949e802-1196-4ce3-8a82-d5c960ebc3d1", + "start": { + "$date": "2022-03-28T16:33:51.000Z" + }, + "end": { + "$date": "2022-03-28T17:18:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "6d836ba9-48d6-4781-a18c-00951a4bfb0a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-28T16:46:58.000Z" + }, + "end": { + "$date": "2022-03-28T18:45:31.000Z" + }, + "events": [ + { + "uuid": "cd49e880-ab22-4f58-bf23-4adf1c9c90e5", + "start": { + "$date": "2022-03-28T16:46:58.000Z" + }, + "end": { + "$date": "2022-03-28T18:45:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "3b5053d5-166d-4afb-9279-22249037e9e0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-28T21:13:45.000Z" + }, + "end": { + "$date": "2022-03-28T22:38:27.000Z" + }, + "events": [ + { + "uuid": "24ca3720-c440-4b78-8fba-67bbe21393b6", + "start": { + "$date": "2022-03-28T21:13:45.000Z" + }, + "end": { + "$date": "2022-03-28T22:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "0179ad18-3ba9-4797-9b89-49f19c72f7ba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-29T02:18:40.000Z" + }, + "end": { + "$date": "2022-03-29T02:29:27.000Z" + }, + "events": [ + { + "uuid": "8d559e20-6fff-4f40-948f-d16f831ba853", + "start": { + "$date": "2022-03-29T02:18:40.000Z" + }, + "end": { + "$date": "2022-03-29T02:33:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7c503d3a-d76e-4339-bed8-e3761a84f87a", + "start": { + "$date": "2022-03-29T02:33:40.000Z" + }, + "end": { + "$date": "2022-03-29T05:16:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d26220b2-2b33-4602-9ad2-70e7ed92ffe4", + "start": { + "$date": "2022-03-29T05:16:40.000Z" + }, + "end": { + "$date": "2022-03-29T02:29:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "78afdc1a-aa4c-41f9-b266-ed1788df2422", + "uuid": "021752ff-7ce1-4d7c-8eb0-d482d8f6c008", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-28T21:42:47.000Z" + }, + "end": { + "$date": "2022-03-29T01:10:53.000Z" + }, + "events": [ + { + "uuid": "9d28e773-ddb8-4a22-b47f-963039ef9977", + "start": { + "$date": "2022-03-28T21:42:47.000Z" + }, + "end": { + "$date": "2022-03-29T01:10:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8c67e0dd-4970-4de2-9d88-d9af0a6dd20c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-28T23:20:34.000Z" + }, + "end": { + "$date": "2022-03-28T23:26:26.000Z" + }, + "events": [ + { + "uuid": "35a9e36e-3695-480c-a3ad-fea98ce9f4b9", + "start": { + "$date": "2022-03-28T23:20:34.000Z" + }, + "end": { + "$date": "2022-03-28T23:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "766d86fa-c521-4378-821a-c53255df6846", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-28T23:54:35.000Z" + }, + "end": { + "$date": "2022-03-28T23:59:34.000Z" + }, + "events": [ + { + "uuid": "4e269346-8c00-4d5f-ad92-42869fe48869", + "start": { + "$date": "2022-03-28T23:54:35.000Z" + }, + "end": { + "$date": "2022-03-28T23:59:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "baacb09d-0d29-47d6-95a1-302b4e9b66a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-28T23:59:55.000Z" + }, + "end": { + "$date": "2022-03-29T00:03:19.000Z" + }, + "events": [ + { + "uuid": "eb989577-b8f5-4a8f-b93b-a4c9068d563a", + "start": { + "$date": "2022-03-28T23:59:55.000Z" + }, + "end": { + "$date": "2022-03-29T00:03:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "75b8d66e-dd24-42b2-800d-f87122f258b5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-29T00:04:15.000Z" + }, + "end": { + "$date": "2022-03-29T00:07:54.000Z" + }, + "events": [ + { + "uuid": "2390a817-84e7-40ad-be3e-0ceb25a84af8", + "start": { + "$date": "2022-03-29T00:04:15.000Z" + }, + "end": { + "$date": "2022-03-29T00:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "26f75df7-d307-42a6-8a8c-925159bc3de9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-29T00:08:21.000Z" + }, + "end": { + "$date": "2022-03-29T00:13:19.000Z" + }, + "events": [ + { + "uuid": "84d25acd-c6f2-425f-bf8a-9a3813e46c27", + "start": { + "$date": "2022-03-29T00:08:21.000Z" + }, + "end": { + "$date": "2022-03-29T00:13:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "46fc761c-a396-4445-9865-6afcbb697b98", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-29T00:14:36.000Z" + }, + "end": { + "$date": "2022-03-29T00:44:06.000Z" + }, + "events": [ + { + "uuid": "64c36677-4907-4d09-87f7-45deb668ceb0", + "start": { + "$date": "2022-03-29T00:14:36.000Z" + }, + "end": { + "$date": "2022-03-29T00:44:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "27bca10b-4aee-493d-9112-4ca2c1c45f3f", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-03-29T00:15:36.000Z" + }, + "end": { + "$date": "2022-03-29T03:19:44.000Z" + }, + "events": [ + { + "uuid": "ad1cbf98-4a7b-43f6-b4d0-c5245c681994", + "start": { + "$date": "2022-03-29T00:15:36.000Z" + }, + "end": { + "$date": "2022-03-29T03:19:44.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "37a8401b-d344-4055-8060-ea9b596bb3f5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-29T00:37:55.000Z" + }, + "end": { + "$date": "2022-03-29T00:43:42.000Z" + }, + "events": [ + { + "uuid": "a33acbad-3292-4584-992d-5413d66d7657", + "start": { + "$date": "2022-03-29T00:37:55.000Z" + }, + "end": { + "$date": "2022-03-29T00:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5000c550-43ab-4425-999e-9903428b8ed7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-29T01:00:03.000Z" + }, + "end": { + "$date": "2022-03-29T01:31:46.000Z" + }, + "events": [ + { + "uuid": "7ebd2d5e-ac6a-4b4f-ab69-9316199391d5", + "start": { + "$date": "2022-03-29T01:00:03.000Z" + }, + "end": { + "$date": "2022-03-29T01:31:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "447f385d-42fe-4190-a03e-cab01d0b1d54", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-29T01:32:36.000Z" + }, + "end": { + "$date": "2022-03-29T01:55:23.000Z" + }, + "events": [ + { + "uuid": "6fdfe4d3-fa4d-4001-8401-04c02f2d40ca", + "start": { + "$date": "2022-03-29T01:32:36.000Z" + }, + "end": { + "$date": "2022-03-29T01:55:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "31ab3d61-5828-4f79-82e3-abffd172c1bd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-29T01:32:35.000Z" + }, + "end": { + "$date": "2022-03-29T04:27:00.000Z" + }, + "events": [ + { + "uuid": "329a460c-fe42-402d-b58d-0ca737f09c8c", + "start": { + "$date": "2022-03-29T01:32:35.000Z" + }, + "end": { + "$date": "2022-03-29T04:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "404b51e6-aa97-4c21-839d-6a3b5612b122", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-29T02:11:41.000Z" + }, + "end": { + "$date": "2022-03-29T02:32:31.000Z" + }, + "events": [ + { + "uuid": "8ae49b79-708f-48f2-a5b5-be61c1b1ead2", + "start": { + "$date": "2022-03-29T02:11:41.000Z" + }, + "end": { + "$date": "2022-03-29T02:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "5f0d0654-4df3-4c78-b9a0-e171f0fc238c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-29T02:12:14.000Z" + }, + "end": { + "$date": "2022-03-29T02:27:10.000Z" + }, + "events": [ + { + "uuid": "b9bd56a5-eb6d-4c49-af57-ae79bd2da260", + "start": { + "$date": "2022-03-29T02:12:14.000Z" + }, + "end": { + "$date": "2022-03-29T02:27:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f0bc8dbf-69ac-4eb8-b693-29c0f8abd4cc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-29T02:27:44.000Z" + }, + "end": { + "$date": "2022-03-29T04:20:56.000Z" + }, + "events": [ + { + "uuid": "4c83b2a1-cbca-4a6c-beb0-c9395621b4f4", + "start": { + "$date": "2022-03-29T02:27:44.000Z" + }, + "end": { + "$date": "2022-03-29T04:20:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "b65a6593-1659-42bc-bf69-dcf2d0ebf50d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-29T02:33:07.000Z" + }, + "end": { + "$date": "2022-03-29T05:15:43.000Z" + }, + "events": [ + { + "uuid": "95f41ece-5853-4382-a7e7-fa7da92bd63b", + "start": { + "$date": "2022-03-29T02:33:07.000Z" + }, + "end": { + "$date": "2022-03-29T05:15:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0ba283b0-2572-4bc7-bcce-d26da8b61173", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-29T02:37:46.000Z" + }, + "end": { + "$date": "2022-03-29T03:11:27.000Z" + }, + "events": [ + { + "uuid": "8b683f96-3b98-44e3-a784-2a09d946d137", + "start": { + "$date": "2022-03-29T02:37:46.000Z" + }, + "end": { + "$date": "2022-03-29T03:11:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "78afdc1a-aa4c-41f9-b266-ed1788df2422", + "uuid": "7c151018-30a8-423e-8c56-fbce91f3af72", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-29T03:11:09.000Z" + }, + "end": { + "$date": "2022-03-29T04:17:44.000Z" + }, + "events": [ + { + "uuid": "e4d5b9e5-ea74-4365-ae58-a42e7342ea1e", + "start": { + "$date": "2022-03-29T03:11:09.000Z" + }, + "end": { + "$date": "2022-03-29T04:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "066948c9-6cfe-4cf2-8047-d09198c94012", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-29T03:15:02.000Z" + }, + "end": { + "$date": "2022-03-29T03:55:53.000Z" + }, + "events": [ + { + "uuid": "e0d974a2-caf5-434f-b5cb-d444e7b2f10e", + "start": { + "$date": "2022-03-29T03:15:02.000Z" + }, + "end": { + "$date": "2022-03-29T03:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1e5c2821-daa1-4d39-b58e-cc9a7867accb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-29T03:39:08.000Z" + }, + "end": { + "$date": "2022-03-29T06:41:00.000Z" + }, + "events": [ + { + "uuid": "b8ef5f5e-2aae-4547-aa91-bce01dc1ec7a", + "start": { + "$date": "2022-03-29T03:39:08.000Z" + }, + "end": { + "$date": "2022-03-29T06:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4d7cbce-2620-4dce-acb3-541a961d10ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-29T03:49:11.000Z" + }, + "end": { + "$date": "2022-03-29T04:12:50.000Z" + }, + "events": [ + { + "uuid": "1dda7de3-c94f-4abc-8cb8-eb2ae7237c2f", + "start": { + "$date": "2022-03-29T03:49:11.000Z" + }, + "end": { + "$date": "2022-03-29T04:12:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3dfef2b9-11f5-4120-a2fe-85878f2c015e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-29T04:14:24.000Z" + }, + "end": { + "$date": "2022-03-29T04:47:16.000Z" + }, + "events": [ + { + "uuid": "6d17712f-3675-45d9-bc02-83dd6cd3b4a8", + "start": { + "$date": "2022-03-29T04:14:24.000Z" + }, + "end": { + "$date": "2022-03-29T04:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e3062d0c-ac34-43d2-91a3-3d81c1eeca36", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-29T04:48:24.000Z" + }, + "end": { + "$date": "2022-03-29T05:01:00.000Z" + }, + "events": [ + { + "uuid": "04d844a7-1993-446c-9f99-6be3d2cec803", + "start": { + "$date": "2022-03-29T04:48:24.000Z" + }, + "end": { + "$date": "2022-03-29T05:01:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f4cfc76-d3ae-4096-92a3-85ce49268697", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-29T04:59:29.000Z" + }, + "end": { + "$date": "2022-03-29T05:37:24.000Z" + }, + "events": [ + { + "uuid": "ada26df3-c2b8-4f11-bbbe-a1f70ba0e82c", + "start": { + "$date": "2022-03-29T04:59:29.000Z" + }, + "end": { + "$date": "2022-03-29T05:37:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "a75112eb-1009-402f-bc46-8163e39c676d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-29T09:32:05.000Z" + }, + "end": { + "$date": "2022-03-29T11:02:43.000Z" + }, + "events": [ + { + "uuid": "66cc60c5-cfe2-4bce-86f1-78615816eee2", + "start": { + "$date": "2022-03-29T09:32:05.000Z" + }, + "end": { + "$date": "2022-03-29T11:02:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "a56258b2-6c38-4e6e-854a-44aa50602d92", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-29T18:33:43.000Z" + }, + "end": { + "$date": "2022-03-29T18:56:34.000Z" + }, + "events": [ + { + "uuid": "c3556eb7-54d6-4c57-9a07-07bfe99bf5a7", + "start": { + "$date": "2022-03-29T18:33:43.000Z" + }, + "end": { + "$date": "2022-03-29T18:56:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "27a3112c-690d-45da-866c-7504e2c35659", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-29T20:00:44.000Z" + }, + "end": { + "$date": "2022-03-29T21:17:52.000Z" + }, + "events": [ + { + "uuid": "669de147-5e5a-448a-a3ab-0d615d6c0fda", + "start": { + "$date": "2022-03-29T20:00:44.000Z" + }, + "end": { + "$date": "2022-03-29T21:17:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "1a60a582-24a0-4222-9f95-ebd99fc6b67d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-29T21:33:40.000Z" + }, + "end": { + "$date": "2022-03-30T01:18:40.000Z" + }, + "events": [ + { + "uuid": "19b9d758-e888-4acb-acd5-b262ec38df71", + "start": { + "$date": "2022-03-29T21:33:40.000Z" + }, + "end": { + "$date": "2022-03-30T01:03:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0f47534f-3607-480b-8ce3-bd3eb9a87193", + "start": { + "$date": "2022-03-30T01:03:40.000Z" + }, + "end": { + "$date": "2022-03-30T01:08:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca8762f4-389c-4f47-96a4-35de99d219c3", + "start": { + "$date": "2022-03-30T01:08:40.000Z" + }, + "end": { + "$date": "2022-03-30T01:18:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6caa34c1-5352-4637-8ed5-9fcc5de9cb04", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-29T23:33:00.000Z" + }, + "end": { + "$date": "2022-03-30T00:37:22.000Z" + }, + "events": [ + { + "uuid": "4d2ea411-025c-4dec-8e42-ce0e630b4779", + "start": { + "$date": "2022-03-29T23:33:00.000Z" + }, + "end": { + "$date": "2022-03-30T00:37:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "da0301d6-bcf7-4fec-9af1-63f444691f59", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-30T00:27:38.000Z" + }, + "end": { + "$date": "2022-03-30T04:19:09.000Z" + }, + "events": [ + { + "uuid": "82548bbb-c07a-4b85-a794-026401558954", + "start": { + "$date": "2022-03-30T00:27:38.000Z" + }, + "end": { + "$date": "2022-03-30T04:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "00e56ef0-3ee5-41e5-b6bf-16aeb6fdb210", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-30T01:46:23.000Z" + }, + "end": { + "$date": "2022-03-30T05:49:13.000Z" + }, + "events": [ + { + "uuid": "0c624b63-1738-4769-adef-63c7fe58586d", + "start": { + "$date": "2022-03-30T01:46:23.000Z" + }, + "end": { + "$date": "2022-03-30T05:49:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "93fd7732-3bda-47f6-9e2e-d95ad237268d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-03-30T01:50:09.000Z" + }, + "end": { + "$date": "2022-03-30T03:01:54.000Z" + }, + "events": [ + { + "uuid": "cf7a0606-13ea-4e7d-8105-68a5912af160", + "start": { + "$date": "2022-03-30T01:50:09.000Z" + }, + "end": { + "$date": "2022-03-30T03:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1bf1050d-5eb8-4833-bb2e-108f6c5664a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-30T02:58:29.000Z" + }, + "end": { + "$date": "2022-03-30T04:11:07.000Z" + }, + "events": [ + { + "uuid": "9eb72e89-faa7-4d35-86be-abd41f24909c", + "start": { + "$date": "2022-03-30T02:58:29.000Z" + }, + "end": { + "$date": "2022-03-30T04:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "290b3c23-0ded-449a-becb-df2f81dafc34", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-30T03:23:27.000Z" + }, + "end": { + "$date": "2022-03-30T03:25:52.000Z" + }, + "events": [ + { + "uuid": "45c8c5c9-4d7f-415b-92c4-0294180e7c27", + "start": { + "$date": "2022-03-30T03:23:27.000Z" + }, + "end": { + "$date": "2022-03-30T03:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0075e032-b4be-44e8-96e3-62ee9ab4f217", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-30T03:26:07.000Z" + }, + "end": { + "$date": "2022-03-30T04:21:19.000Z" + }, + "events": [ + { + "uuid": "beb1e087-5b63-4377-aacb-9c1a4b036302", + "start": { + "$date": "2022-03-30T03:26:07.000Z" + }, + "end": { + "$date": "2022-03-30T04:21:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "554caff6-6966-486f-8c03-98c1c5f484c8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-30T03:32:48.000Z" + }, + "end": { + "$date": "2022-03-30T05:53:51.000Z" + }, + "events": [ + { + "uuid": "f95a6cfa-6b23-4eb3-843c-20c73d81bbf6", + "start": { + "$date": "2022-03-30T03:32:48.000Z" + }, + "end": { + "$date": "2022-03-30T05:53:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bae6949-707f-4091-8bf4-5ac555c46972", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-30T03:39:57.000Z" + }, + "end": { + "$date": "2022-03-30T04:03:58.000Z" + }, + "events": [ + { + "uuid": "9f4b328b-c9c9-4df9-90fe-cba389bfdb5d", + "start": { + "$date": "2022-03-30T03:39:57.000Z" + }, + "end": { + "$date": "2022-03-30T04:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "3af7c431-0fc1-4af7-844b-ec7dc0fd75ad", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-03-30T03:50:52.000Z" + }, + "end": { + "$date": "2022-03-30T06:11:43.000Z" + }, + "events": [ + { + "uuid": "56ae0543-5fe0-4fd9-9b8c-dbe89bc3cd8d", + "start": { + "$date": "2022-03-30T03:50:52.000Z" + }, + "end": { + "$date": "2022-03-30T06:11:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a2231619-01fc-4c5a-a0da-9e8e82d53e7b", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-30T04:08:49.000Z" + }, + "end": { + "$date": "2022-03-30T04:25:14.000Z" + }, + "events": [ + { + "uuid": "90c08a8b-23c4-4139-8665-d380cf33120d", + "start": { + "$date": "2022-03-30T04:08:49.000Z" + }, + "end": { + "$date": "2022-03-30T04:25:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c53d2f7b-a288-4339-afb6-30ec1a3d5853", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-30T04:23:24.000Z" + }, + "end": { + "$date": "2022-03-30T06:42:01.000Z" + }, + "events": [ + { + "uuid": "8fff08fe-bd81-421e-9182-76513ca15e24", + "start": { + "$date": "2022-03-30T04:23:24.000Z" + }, + "end": { + "$date": "2022-03-30T06:42:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe1f323c-8461-4782-8479-9609febc21ac", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-30T04:47:38.000Z" + }, + "end": { + "$date": "2022-03-30T05:24:39.000Z" + }, + "events": [ + { + "uuid": "4e4404e7-6597-4574-9d46-f195e7d68213", + "start": { + "$date": "2022-03-30T04:47:38.000Z" + }, + "end": { + "$date": "2022-03-30T05:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fe0b6d6-ae04-4c85-8e9a-13632cc01694", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-30T05:29:39.000Z" + }, + "end": { + "$date": "2022-03-30T05:59:15.000Z" + }, + "events": [ + { + "uuid": "7bc4104e-8649-4362-b512-8962ae9e57d7", + "start": { + "$date": "2022-03-30T05:29:39.000Z" + }, + "end": { + "$date": "2022-03-30T05:59:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "5238fe19-1e89-4efc-9068-cce62acc0476", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-30T06:49:28.000Z" + }, + "end": { + "$date": "2022-03-30T06:58:16.000Z" + }, + "events": [ + { + "uuid": "d6b76dc9-ecc0-4124-a84e-ec3dcd6e7cb7", + "start": { + "$date": "2022-03-30T06:49:28.000Z" + }, + "end": { + "$date": "2022-03-30T06:58:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "694799ee-b793-4387-9985-885b85cf9f56", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-30T16:04:34.000Z" + }, + "end": { + "$date": "2022-03-30T16:42:29.000Z" + }, + "events": [ + { + "uuid": "4bd6b9a9-2a37-48af-ab69-9bd41158dbe1", + "start": { + "$date": "2022-03-30T16:04:34.000Z" + }, + "end": { + "$date": "2022-03-30T16:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "4f73567a-669a-4407-964c-4839488f88ac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-30T16:38:27.000Z" + }, + "end": { + "$date": "2022-03-30T16:41:10.000Z" + }, + "events": [ + { + "uuid": "0a3962e1-49a4-46b2-8ed4-c55179afc5a2", + "start": { + "$date": "2022-03-30T16:38:27.000Z" + }, + "end": { + "$date": "2022-03-30T16:41:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "3452671e-a69d-4bdb-970a-a0eb24ad55f3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-30T16:41:36.000Z" + }, + "end": { + "$date": "2022-03-30T17:00:59.000Z" + }, + "events": [ + { + "uuid": "2fcbc55d-0804-4a92-8e5c-b7f50d5b8740", + "start": { + "$date": "2022-03-30T16:41:36.000Z" + }, + "end": { + "$date": "2022-03-30T17:00:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "4f3f95eb-0881-4203-8f55-6574c5efa5be", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-30T17:01:32.000Z" + }, + "end": { + "$date": "2022-03-30T20:04:26.000Z" + }, + "events": [ + { + "uuid": "ba813234-2923-4a85-aead-dcfdfca60328", + "start": { + "$date": "2022-03-30T17:01:32.000Z" + }, + "end": { + "$date": "2022-03-30T17:14:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2c826c2-3dce-45c4-9d43-327bc47e87c0", + "start": { + "$date": "2022-03-30T17:14:32.000Z" + }, + "end": { + "$date": "2022-03-30T17:17:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48ead909-6058-407d-8848-215063955139", + "start": { + "$date": "2022-03-30T17:17:32.000Z" + }, + "end": { + "$date": "2022-03-30T20:04:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "dbfc4461-126c-4305-99c8-a8eb059c5c22", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-03-30T17:02:26.000Z" + }, + "end": { + "$date": "2022-03-30T17:05:36.000Z" + }, + "events": [ + { + "uuid": "ae72b085-6b3b-4937-ba8d-61e3e23f42a5", + "start": { + "$date": "2022-03-30T17:02:26.000Z" + }, + "end": { + "$date": "2022-03-30T17:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "adbc0112-2f66-4acc-b827-38fdace7ab2a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-30T23:25:30.000Z" + }, + "end": { + "$date": "2022-03-31T00:50:36.000Z" + }, + "events": [ + { + "uuid": "17648a6b-3094-4c9e-a1d1-c73bb47c7c35", + "start": { + "$date": "2022-03-30T23:25:30.000Z" + }, + "end": { + "$date": "2022-03-31T00:50:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ad68112e-9625-4de6-b677-3d646bd7377a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-30T23:27:48.000Z" + }, + "end": { + "$date": "2022-03-31T01:25:24.000Z" + }, + "events": [ + { + "uuid": "d37c917c-b745-4200-bc35-dd5b1adb4a99", + "start": { + "$date": "2022-03-30T23:27:48.000Z" + }, + "end": { + "$date": "2022-03-31T00:05:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "97d90288-cb07-43b8-aa31-1416ecae6978", + "start": { + "$date": "2022-03-31T00:05:48.000Z" + }, + "end": { + "$date": "2022-03-31T00:10:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23438f96-6642-4cfe-b434-f35dda1c347a", + "start": { + "$date": "2022-03-31T00:10:48.000Z" + }, + "end": { + "$date": "2022-03-31T00:20:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d9056e1a-e3f9-4260-8096-252be4bd272b", + "start": { + "$date": "2022-03-31T00:20:48.000Z" + }, + "end": { + "$date": "2022-03-31T01:09:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d03648ff-6394-4ab9-9412-03349f4b4601", + "start": { + "$date": "2022-03-31T01:09:48.000Z" + }, + "end": { + "$date": "2022-03-31T01:25:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "a24280f2-d7e2-4e21-a1a2-ebec28399831", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-30T23:39:53.000Z" + }, + "end": { + "$date": "2022-03-31T02:08:16.000Z" + }, + "events": [ + { + "uuid": "e9e7e2e8-ed1e-42b0-a0eb-9810e3144fe6", + "start": { + "$date": "2022-03-30T23:39:53.000Z" + }, + "end": { + "$date": "2022-03-31T02:08:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "72c0cf03-df23-48d3-8597-e06fd494565d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-31T00:29:45.000Z" + }, + "end": { + "$date": "2022-03-31T01:37:19.000Z" + }, + "events": [ + { + "uuid": "0322a7f6-9278-473c-9f4b-9de1d08d16a9", + "start": { + "$date": "2022-03-31T00:29:45.000Z" + }, + "end": { + "$date": "2022-03-31T01:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "16846856-e724-484e-a09b-a85617e16659", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-31T01:58:26.000Z" + }, + "end": { + "$date": "2022-03-31T02:09:25.000Z" + }, + "events": [ + { + "uuid": "96e41c62-840b-4e94-a383-3c9345e7a65e", + "start": { + "$date": "2022-03-31T01:58:26.000Z" + }, + "end": { + "$date": "2022-03-31T02:09:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "eafd97fe-0666-48b7-a1da-492c280c13f7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-31T02:09:30.000Z" + }, + "end": { + "$date": "2022-03-31T02:10:36.000Z" + }, + "events": [ + { + "uuid": "1430f1a2-d765-4ea2-a91f-1d2f09227ef4", + "start": { + "$date": "2022-03-31T02:09:30.000Z" + }, + "end": { + "$date": "2022-03-31T02:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e73f143a-d8ae-4bad-910f-f8f1aeabd141", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-31T02:11:26.000Z" + }, + "end": { + "$date": "2022-03-31T03:37:14.000Z" + }, + "events": [ + { + "uuid": "a6c993d9-00dc-433d-aec3-449bd5724ee5", + "start": { + "$date": "2022-03-31T02:11:26.000Z" + }, + "end": { + "$date": "2022-03-31T03:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6d049c2b-0cf7-45b0-83f8-4e1323d7e753", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-03-31T02:11:58.000Z" + }, + "end": { + "$date": "2022-03-31T04:10:28.000Z" + }, + "events": [ + { + "uuid": "dec78528-b4ba-4d92-9eaa-21d73e415f4c", + "start": { + "$date": "2022-03-31T02:11:58.000Z" + }, + "end": { + "$date": "2022-03-31T04:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87f694d5-7df3-45cc-b002-e1268f899f0f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-31T04:20:22.000Z" + }, + "end": { + "$date": "2022-03-31T05:01:31.000Z" + }, + "events": [ + { + "uuid": "eb95ca78-ecb6-499f-a40c-f8b5e4480f3f", + "start": { + "$date": "2022-03-31T04:20:22.000Z" + }, + "end": { + "$date": "2022-03-31T05:01:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "078c3932-cde1-41ad-b098-cf351e9b6791", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-31T02:31:16.000Z" + }, + "end": { + "$date": "2022-03-31T04:42:33.000Z" + }, + "events": [ + { + "uuid": "a7037102-02c4-4544-8e7e-1414d473e8a5", + "start": { + "$date": "2022-03-31T02:31:16.000Z" + }, + "end": { + "$date": "2022-03-31T04:42:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6a78daea-eff8-44eb-8919-53dd59b9ff05", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-31T02:50:42.000Z" + }, + "end": { + "$date": "2022-03-31T04:38:29.000Z" + }, + "events": [ + { + "uuid": "0d8ee44b-0332-4bf3-9c58-3815f77c8710", + "start": { + "$date": "2022-03-31T02:50:42.000Z" + }, + "end": { + "$date": "2022-03-31T04:38:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "4a2e7487-6646-4dfb-8da5-14b90d6c88b9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-31T02:56:37.000Z" + }, + "end": { + "$date": "2022-03-31T03:06:17.000Z" + }, + "events": [ + { + "uuid": "f30b95a4-49b9-403b-8f14-dc5f9a916dd7", + "start": { + "$date": "2022-03-31T02:56:37.000Z" + }, + "end": { + "$date": "2022-03-31T03:06:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "98f8bf77-6d1e-42d3-8a36-d9cde3ad3bee", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-31T03:06:32.000Z" + }, + "end": { + "$date": "2022-03-31T03:12:53.000Z" + }, + "events": [ + { + "uuid": "f32808e1-9a46-492a-a986-76dc0ea561d6", + "start": { + "$date": "2022-03-31T03:06:32.000Z" + }, + "end": { + "$date": "2022-03-31T03:12:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "76b53588-0fdb-4d8b-b381-5ac42e6bcce8", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-31T03:12:58.000Z" + }, + "end": { + "$date": "2022-03-31T04:08:56.000Z" + }, + "events": [ + { + "uuid": "320635aa-7fba-4d9b-b7e2-1eb42793f7e8", + "start": { + "$date": "2022-03-31T03:12:58.000Z" + }, + "end": { + "$date": "2022-03-31T04:08:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4e4cc30d-ab36-4d2b-891a-5b2d96b52563", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-03-31T03:38:19.000Z" + }, + "end": { + "$date": "2022-03-31T05:01:10.000Z" + }, + "events": [ + { + "uuid": "214b54de-ce4f-4842-8701-bf74964b0ffb", + "start": { + "$date": "2022-03-31T03:38:19.000Z" + }, + "end": { + "$date": "2022-03-31T05:01:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "825bac33-616c-490e-8f20-ca07c3c64bba", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-31T04:00:50.000Z" + }, + "end": { + "$date": "2022-03-31T04:29:25.000Z" + }, + "events": [ + { + "uuid": "81d9188f-b321-410f-a732-5b37e899eda2", + "start": { + "$date": "2022-03-31T04:00:50.000Z" + }, + "end": { + "$date": "2022-03-31T04:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46c6ed67-6dd3-4a49-a41b-2c3e07e6f1b7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-03-31T04:41:14.000Z" + }, + "end": { + "$date": "2022-03-31T05:16:37.000Z" + }, + "events": [ + { + "uuid": "941c5ba1-7a57-4133-a722-2cb6c33b2c9d", + "start": { + "$date": "2022-03-31T04:41:14.000Z" + }, + "end": { + "$date": "2022-03-31T05:16:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "efa9ef7f-29f5-46bc-99f7-7bdca728ed50", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-31T04:55:00.000Z" + }, + "end": { + "$date": "2022-03-31T04:57:20.000Z" + }, + "events": [ + { + "uuid": "382b9e8e-2e4d-4515-bdbb-8075d2f6306a", + "start": { + "$date": "2022-03-31T04:55:00.000Z" + }, + "end": { + "$date": "2022-03-31T04:57:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "546ba82e-e770-482e-8ebe-c6d2838cfe5e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-31T04:57:39.000Z" + }, + "end": { + "$date": "2022-03-31T05:06:21.000Z" + }, + "events": [ + { + "uuid": "2f91eb48-f15f-4a02-8013-823f2130370b", + "start": { + "$date": "2022-03-31T04:57:39.000Z" + }, + "end": { + "$date": "2022-03-31T05:06:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b1641e8a-c780-4c00-bd1f-700f45f8bdc4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-31T05:08:40.000Z" + }, + "end": { + "$date": "2022-03-31T05:48:52.000Z" + }, + "events": [ + { + "uuid": "5cacf342-1716-4f9e-b714-dffa87abfb0f", + "start": { + "$date": "2022-03-31T05:08:40.000Z" + }, + "end": { + "$date": "2022-03-31T05:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "c03198fe-f092-462d-95ce-3bfe4de30fe4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-31T05:10:51.000Z" + }, + "end": { + "$date": "2022-03-31T05:14:47.000Z" + }, + "events": [ + { + "uuid": "a3a0a33b-bc7d-4394-9cf2-3fc242687019", + "start": { + "$date": "2022-03-31T05:10:51.000Z" + }, + "end": { + "$date": "2022-03-31T05:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f9d18394-3816-49c9-809a-5d5389bc9e19", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-31T05:24:12.000Z" + }, + "end": { + "$date": "2022-03-31T06:06:48.000Z" + }, + "events": [ + { + "uuid": "7eb6152d-ebe7-4e19-880c-2843aec06a50", + "start": { + "$date": "2022-03-31T05:24:12.000Z" + }, + "end": { + "$date": "2022-03-31T06:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "bff36695-e5e8-4e3a-a4c4-d827d3ed3257", + "uuid": "3bd6bb16-68b8-4bec-994a-598b4c8e3f60", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-03-31T05:20:07.000Z" + }, + "end": { + "$date": "2022-03-31T05:39:51.000Z" + }, + "events": [ + { + "uuid": "f8573745-9a81-41c8-b9fb-3707d863aec9", + "start": { + "$date": "2022-03-31T05:20:07.000Z" + }, + "end": { + "$date": "2022-03-31T05:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "fe9ccd73-6901-4ee2-8db4-071f71fe13e2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-31T05:32:28.000Z" + }, + "end": { + "$date": "2022-03-31T06:58:33.000Z" + }, + "events": [ + { + "uuid": "2d4217ab-abdf-430f-b701-79a3c12df085", + "start": { + "$date": "2022-03-31T05:32:28.000Z" + }, + "end": { + "$date": "2022-03-31T06:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d4269070-707a-4998-9b8d-141d3737bf26", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-31T06:00:29.000Z" + }, + "end": { + "$date": "2022-03-31T06:35:18.000Z" + }, + "events": [ + { + "uuid": "dfdc26ee-a1bf-4004-8dc5-d76e91f566e2", + "start": { + "$date": "2022-03-31T06:00:29.000Z" + }, + "end": { + "$date": "2022-03-31T06:35:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2cfc9b69-836d-4861-9e74-1318133c23b3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-31T06:18:04.000Z" + }, + "end": { + "$date": "2022-03-31T06:50:00.000Z" + }, + "events": [ + { + "uuid": "00b52428-9eec-4393-91d2-76951d124451", + "start": { + "$date": "2022-03-31T06:18:04.000Z" + }, + "end": { + "$date": "2022-03-31T06:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "1a6d31e6-7dc9-4e35-8098-f23b181de869", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-31T06:38:19.000Z" + }, + "end": { + "$date": "2022-03-31T07:03:40.000Z" + }, + "events": [ + { + "uuid": "a6c818c5-ed07-43b0-94a1-f8b77230e73f", + "start": { + "$date": "2022-03-31T06:38:19.000Z" + }, + "end": { + "$date": "2022-03-31T07:03:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "85cae43a-0ddc-47bd-991a-a458fce47422", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-03-31T06:51:49.000Z" + }, + "end": { + "$date": "2022-03-31T07:14:46.000Z" + }, + "events": [ + { + "uuid": "d01b87b2-92a0-41e7-864c-f40f4745b250", + "start": { + "$date": "2022-03-31T06:51:49.000Z" + }, + "end": { + "$date": "2022-03-31T07:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9f6740b5-fd83-44d4-bb8a-65d06b69a4fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-03-31T07:04:16.000Z" + }, + "end": { + "$date": "2022-03-31T07:35:08.000Z" + }, + "events": [ + { + "uuid": "654afb5e-777f-4758-a88b-f0f14ee792de", + "start": { + "$date": "2022-03-31T07:04:16.000Z" + }, + "end": { + "$date": "2022-03-31T07:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bc97a21b-af36-40f9-a4f0-990825a7e08c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-03-31T07:14:38.000Z" + }, + "end": { + "$date": "2022-03-31T07:17:31.000Z" + }, + "events": [ + { + "uuid": "796028dc-5f2c-4619-942a-79182558cbce", + "start": { + "$date": "2022-03-31T07:14:38.000Z" + }, + "end": { + "$date": "2022-03-31T07:17:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2ce087c0-6dc3-4430-a0b5-f53d5296b168", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-31T18:06:14.000Z" + }, + "end": { + "$date": "2022-03-31T18:32:20.000Z" + }, + "events": [ + { + "uuid": "1a5e4f60-8d6b-4ae1-b1e1-f97d5737955e", + "start": { + "$date": "2022-03-31T18:06:14.000Z" + }, + "end": { + "$date": "2022-03-31T18:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "98154ff1-2439-4d5b-b313-3b3190d6b86e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-31T18:35:20.000Z" + }, + "end": { + "$date": "2022-03-31T18:41:11.000Z" + }, + "events": [ + { + "uuid": "6bc263cf-e0a5-4111-85c9-5fc91413714e", + "start": { + "$date": "2022-03-31T18:35:20.000Z" + }, + "end": { + "$date": "2022-03-31T18:41:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "a2217917-10c2-432a-ab92-23cd68e7696b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-31T18:41:15.000Z" + }, + "end": { + "$date": "2022-03-31T18:46:11.000Z" + }, + "events": [ + { + "uuid": "57cb7b1a-25bf-44df-876b-c74dd799f5ec", + "start": { + "$date": "2022-03-31T18:41:15.000Z" + }, + "end": { + "$date": "2022-03-31T18:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "f728acb7-ee68-4a45-8242-15e72ade0c38", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-31T18:46:16.000Z" + }, + "end": { + "$date": "2022-03-31T22:03:48.000Z" + }, + "events": [ + { + "uuid": "5625b978-ec14-4813-ac05-31d6f7251b7a", + "start": { + "$date": "2022-03-31T18:46:16.000Z" + }, + "end": { + "$date": "2022-03-31T22:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "776492c7-fef6-4187-b0e8-a805d1760af2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-03-31T22:10:04.000Z" + }, + "end": { + "$date": "2022-04-01T00:36:03.000Z" + }, + "events": [ + { + "uuid": "8f71001b-66ad-4c2f-9f2d-b9ab35d3a410", + "start": { + "$date": "2022-03-31T22:10:04.000Z" + }, + "end": { + "$date": "2022-04-01T00:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4390b26c-30ce-44e3-9129-489d8668ece2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-03-31T23:39:32.000Z" + }, + "end": { + "$date": "2022-04-01T00:57:44.000Z" + }, + "events": [ + { + "uuid": "ca288338-0e55-4aa9-b0ee-b80e4f809475", + "start": { + "$date": "2022-03-31T23:39:32.000Z" + }, + "end": { + "$date": "2022-04-01T00:57:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "3e5da0f5-5922-42a8-b2d6-01409b9763c6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-01T01:15:13.000Z" + }, + "end": { + "$date": "2022-04-01T11:05:59.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-01T01:15:13.000Z" + }, + "end": { + "$date": "2022-04-01T11:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "cd1dfa70-acac-4ad6-a743-edb6b6bacf7d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-01T01:48:10.000Z" + }, + "end": { + "$date": "2022-04-01T02:05:47.000Z" + }, + "events": [ + { + "uuid": "82b534f3-c6f0-4416-80d5-558b821133ba", + "start": { + "$date": "2022-04-01T01:48:10.000Z" + }, + "end": { + "$date": "2022-04-01T02:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8a8c690f-1557-4bcf-8d19-6c5ae773cdd1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-01T02:42:20.000Z" + }, + "end": { + "$date": "2022-04-01T05:02:38.000Z" + }, + "events": [ + { + "uuid": "ec49737b-ad5d-4103-a3c0-ef7539dbedce", + "start": { + "$date": "2022-04-01T02:42:20.000Z" + }, + "end": { + "$date": "2022-04-01T05:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f8513df-3435-4637-b288-3e53c6f56b2a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-01T04:05:48.000Z" + }, + "end": { + "$date": "2022-04-01T04:46:04.000Z" + }, + "events": [ + { + "uuid": "8b2655c0-e9f6-4477-86e1-a1f747731695", + "start": { + "$date": "2022-04-01T04:05:48.000Z" + }, + "end": { + "$date": "2022-04-01T04:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a84ed042-8e98-43ab-a37d-cb340464bdfb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-01T04:05:58.000Z" + }, + "end": { + "$date": "2022-04-01T06:46:43.000Z" + }, + "events": [ + { + "uuid": "adfd0570-6d7c-409e-b837-ace78db3daed", + "start": { + "$date": "2022-04-01T04:05:58.000Z" + }, + "end": { + "$date": "2022-04-01T06:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff66cb5b-8439-43c1-9fec-837ca8d4121f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-01T04:06:23.000Z" + }, + "end": { + "$date": "2022-04-01T05:21:30.000Z" + }, + "events": [ + { + "uuid": "d69ca686-0f23-4c0e-84e5-39186ec4a858", + "start": { + "$date": "2022-04-01T04:06:23.000Z" + }, + "end": { + "$date": "2022-04-01T05:21:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0050e9a0-3ea7-41bd-89ca-75e8f4a47523", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-01T04:08:11.000Z" + }, + "end": { + "$date": "2022-04-01T05:22:20.000Z" + }, + "events": [ + { + "uuid": "a0fc7fb5-24d4-449d-9cb4-45c0f4f4324e", + "start": { + "$date": "2022-04-01T04:08:11.000Z" + }, + "end": { + "$date": "2022-04-01T05:22:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "3efdcd8c-e10b-4e00-a080-825bb80502c1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-01T04:10:27.000Z" + }, + "end": { + "$date": "2022-04-01T10:58:11.000Z" + }, + "events": [ + { + "uuid": "149fe8ff-eedd-4b64-9ac6-594bc7552ba8", + "start": { + "$date": "2022-04-01T04:10:27.000Z" + }, + "end": { + "$date": "2022-04-01T10:58:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "41078d37-3307-4d3a-8410-d390f89d52cf", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-04-01T04:17:00.000Z" + }, + "end": { + "$date": "2022-04-01T06:26:16.000Z" + }, + "events": [ + { + "uuid": "80f4a472-76b9-4e93-aba2-5cc28912564a", + "start": { + "$date": "2022-04-01T04:17:00.000Z" + }, + "end": { + "$date": "2022-04-01T06:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "487318e4-a94a-4917-9967-8655e06de910", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-01T04:51:50.000Z" + }, + "end": { + "$date": "2022-04-01T05:20:51.000Z" + }, + "events": [ + { + "uuid": "ef52448c-4abb-4cbb-b322-f983c354ee6e", + "start": { + "$date": "2022-04-01T04:51:50.000Z" + }, + "end": { + "$date": "2022-04-01T05:20:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ed873321-f2b8-4b9a-a449-a3771a534fa7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-01T05:02:56.000Z" + }, + "end": { + "$date": "2022-04-01T05:04:17.000Z" + }, + "events": [ + { + "uuid": "6184d847-3b80-4e2b-ba29-c22c38e536d3", + "start": { + "$date": "2022-04-01T05:02:56.000Z" + }, + "end": { + "$date": "2022-04-01T05:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "802dcc1b-9536-4f14-a076-74def341fdc0", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-01T05:46:40.000Z" + }, + "end": { + "$date": "2022-04-01T06:28:21.000Z" + }, + "events": [ + { + "uuid": "7ea17cb3-020d-4ef3-95c9-af9c0c3623d5", + "start": { + "$date": "2022-04-01T05:46:40.000Z" + }, + "end": { + "$date": "2022-04-01T06:28:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ddcd7f6e-293a-44c3-b0fb-af57eec3b40e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-01T06:34:12.000Z" + }, + "end": { + "$date": "2022-04-01T07:00:27.000Z" + }, + "events": [ + { + "uuid": "9c8a3f53-436a-42b0-8633-53318b49529d", + "start": { + "$date": "2022-04-01T06:34:12.000Z" + }, + "end": { + "$date": "2022-04-01T07:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e049af5-d418-48be-9b4f-83b4a5583838", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-01T07:05:08.000Z" + }, + "end": { + "$date": "2022-04-01T07:39:18.000Z" + }, + "events": [ + { + "uuid": "18e81244-bfc3-4bb6-9158-66c74365bb44", + "start": { + "$date": "2022-04-01T07:05:08.000Z" + }, + "end": { + "$date": "2022-04-01T07:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "db9637ec-c846-48d6-ac96-fdb17e4fb201", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-01T12:27:57.000Z" + }, + "end": { + "$date": "2022-04-01T12:42:18.000Z" + }, + "events": [ + { + "uuid": "012309a0-8233-49aa-a7ae-d3b0ca72946f", + "start": { + "$date": "2022-04-01T12:27:57.000Z" + }, + "end": { + "$date": "2022-04-01T12:42:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "745a709c-59ae-45ad-957d-277f61f440ce", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T18:07:16.000Z" + }, + "end": { + "$date": "2022-04-01T18:17:18.000Z" + }, + "events": [ + { + "uuid": "5f059392-5d29-4e92-9eab-d17614b44503", + "start": { + "$date": "2022-04-01T18:07:16.000Z" + }, + "end": { + "$date": "2022-04-01T18:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "892de8dc-215f-4c1d-8b29-558cef971095", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T18:44:09.000Z" + }, + "end": { + "$date": "2022-04-01T18:57:08.000Z" + }, + "events": [ + { + "uuid": "567ce090-a65c-4626-8251-3ed5d4ccb33f", + "start": { + "$date": "2022-04-01T18:44:09.000Z" + }, + "end": { + "$date": "2022-04-01T18:57:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "18c1dc52-031d-4072-ae50-f4afdedfffe6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T19:00:58.000Z" + }, + "end": { + "$date": "2022-04-01T19:07:32.000Z" + }, + "events": [ + { + "uuid": "e7f0e46f-f789-47e2-939b-03ccef4836c8", + "start": { + "$date": "2022-04-01T19:00:58.000Z" + }, + "end": { + "$date": "2022-04-01T19:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3ad97d29-8645-4141-a48c-e659f61f6696", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T20:35:45.000Z" + }, + "end": { + "$date": "2022-04-01T21:15:04.000Z" + }, + "events": [ + { + "uuid": "f9ba3cc4-2113-487b-891b-a37c22276af2", + "start": { + "$date": "2022-04-01T20:35:45.000Z" + }, + "end": { + "$date": "2022-04-01T21:15:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "3f24903a-f128-44c5-8c07-5bb9c78c916a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T21:15:07.000Z" + }, + "end": { + "$date": "2022-04-01T21:23:10.000Z" + }, + "events": [ + { + "uuid": "7a748c06-4b2f-4105-a25f-d75e93ab1438", + "start": { + "$date": "2022-04-01T21:15:07.000Z" + }, + "end": { + "$date": "2022-04-01T21:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faa51a83-658b-4a8a-91ba-e0dd83f24110", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T21:31:36.000Z" + }, + "end": { + "$date": "2022-04-01T21:59:22.000Z" + }, + "events": [ + { + "uuid": "96b337d5-3cad-44f8-8970-a96d0db3a8aa", + "start": { + "$date": "2022-04-01T21:31:36.000Z" + }, + "end": { + "$date": "2022-04-01T21:59:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6408683c-e347-4c14-8606-7d2c8660518f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-01T21:37:02.000Z" + }, + "end": { + "$date": "2022-04-01T21:49:23.000Z" + }, + "events": [ + { + "uuid": "fd0b3749-bab8-4c07-90f5-b9ecbfd1fdf7", + "start": { + "$date": "2022-04-01T21:37:02.000Z" + }, + "end": { + "$date": "2022-04-01T21:49:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "aa0ebefc-1cda-4d49-b525-c25651c80253", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-01T21:54:05.000Z" + }, + "end": { + "$date": "2022-04-01T22:28:45.000Z" + }, + "events": [ + { + "uuid": "7a84651d-cc59-4a48-abe8-fa2f14715265", + "start": { + "$date": "2022-04-01T21:54:05.000Z" + }, + "end": { + "$date": "2022-04-01T22:09:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b219795b-0c2b-47ac-a7fe-0f3d0d1f0c53", + "start": { + "$date": "2022-04-01T22:09:05.000Z" + }, + "end": { + "$date": "2022-04-01T22:28:45.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dca1a75d-c253-4282-8859-f1cc590e1a0a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T22:01:18.000Z" + }, + "end": { + "$date": "2022-04-01T22:45:40.000Z" + }, + "events": [ + { + "uuid": "1df56798-35ec-472a-afd2-73aebd656e1d", + "start": { + "$date": "2022-04-01T22:01:18.000Z" + }, + "end": { + "$date": "2022-04-01T22:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77d5276c-6ecc-470f-a084-4db0a1839ca6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T22:47:00.000Z" + }, + "end": { + "$date": "2022-04-01T23:15:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-01T22:47:00.000Z" + }, + "end": { + "$date": "2022-04-01T23:15:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2d5dfc40-cc92-4b50-ba2c-77541d479651", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-01T22:50:17.000Z" + }, + "end": { + "$date": "2022-04-02T01:31:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-01T22:50:17.000Z" + }, + "end": { + "$date": "2022-04-02T01:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f099c0d-4aee-4f47-9285-d461f9857a25", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T23:17:34.000Z" + }, + "end": { + "$date": "2022-04-01T23:45:49.000Z" + }, + "events": [ + { + "uuid": "7664cf32-b1cb-490d-a1e0-c1e416111306", + "start": { + "$date": "2022-04-01T23:17:34.000Z" + }, + "end": { + "$date": "2022-04-01T23:45:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48c70654-f130-482a-b3d0-7eda6922870c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-01T23:47:13.000Z" + }, + "end": { + "$date": "2022-04-02T00:24:28.000Z" + }, + "events": [ + { + "uuid": "c2fc6a67-6a4a-4b79-94b1-c539675dae17", + "start": { + "$date": "2022-04-01T23:47:13.000Z" + }, + "end": { + "$date": "2022-04-02T00:24:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7c85fe34-7a00-4d44-b370-44d08b8a0a9c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T00:26:33.000Z" + }, + "end": { + "$date": "2022-04-02T01:00:44.000Z" + }, + "events": [ + { + "uuid": "9fa9d1c6-57f3-4509-ab84-ba7b79da4e3a", + "start": { + "$date": "2022-04-02T00:26:33.000Z" + }, + "end": { + "$date": "2022-04-02T01:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "412226e8-aaba-4c0a-adb7-d34029705d59", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T01:03:38.000Z" + }, + "end": { + "$date": "2022-04-02T01:36:45.000Z" + }, + "events": [ + { + "uuid": "92f2097b-c0b7-400d-84a3-ac46774f457c", + "start": { + "$date": "2022-04-02T01:03:38.000Z" + }, + "end": { + "$date": "2022-04-02T01:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "92231138-5901-453f-b538-8428c6b03eae", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-02T01:07:50.000Z" + }, + "end": { + "$date": "2022-04-02T01:12:30.000Z" + }, + "events": [ + { + "uuid": "e2c72f89-2256-45d0-bdd4-ae960db95741", + "start": { + "$date": "2022-04-02T01:07:50.000Z" + }, + "end": { + "$date": "2022-04-02T01:12:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "392d50c0-fe93-4072-8d26-7c09fb8c46f4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-02T01:11:05.000Z" + }, + "end": { + "$date": "2022-04-02T04:02:15.000Z" + }, + "events": [ + { + "uuid": "6028fbe7-edcc-4f1d-b1d9-9a4d1b38bf84", + "start": { + "$date": "2022-04-02T01:11:05.000Z" + }, + "end": { + "$date": "2022-04-02T04:02:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "30d77b9c-8abb-473b-84a1-a4df1a1c33c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-02T01:13:00.000Z" + }, + "end": { + "$date": "2022-04-02T06:13:19.000Z" + }, + "events": [ + { + "uuid": "820775eb-2d8b-459d-aaa5-5c3e9d00fa58", + "start": { + "$date": "2022-04-02T01:13:00.000Z" + }, + "end": { + "$date": "2022-04-02T06:13:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "722be013-8ab2-4a50-b8fa-88c0942b3d7f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T01:39:20.000Z" + }, + "end": { + "$date": "2022-04-02T02:09:45.000Z" + }, + "events": [ + { + "uuid": "b731fa40-ff57-4c1f-bf9e-88227a9a4e43", + "start": { + "$date": "2022-04-02T01:39:20.000Z" + }, + "end": { + "$date": "2022-04-02T02:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "47efbe77-65d9-49c2-ac32-22f5693c845a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-02T02:00:32.000Z" + }, + "end": { + "$date": "2022-04-02T02:06:23.000Z" + }, + "events": [ + { + "uuid": "15e4b9de-e075-490c-8cd2-90b48a2d9319", + "start": { + "$date": "2022-04-02T02:00:32.000Z" + }, + "end": { + "$date": "2022-04-02T02:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4a97dd8c-04ab-47b1-9fde-8fb43329dcc4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T02:14:47.000Z" + }, + "end": { + "$date": "2022-04-02T02:48:41.000Z" + }, + "events": [ + { + "uuid": "c95eb308-2650-4616-8302-3a703795ce43", + "start": { + "$date": "2022-04-02T02:14:47.000Z" + }, + "end": { + "$date": "2022-04-02T02:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "539aca1d-acd4-4758-91c3-8836cf8d08ce", + "uuid": "ac5f6113-48e5-4963-8f8b-0ae953e469b4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-02T02:17:49.000Z" + }, + "end": { + "$date": "2022-04-02T02:19:39.000Z" + }, + "events": [ + { + "uuid": "030bd72e-46f8-4824-ba09-9509632a7fc6", + "start": { + "$date": "2022-04-02T02:17:49.000Z" + }, + "end": { + "$date": "2022-04-02T02:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "336178df-7d20-40f9-8e57-2d95f351ef09", + "uuid": "489ea154-a0a9-495f-be25-693fc73e1e72", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-02T02:21:05.000Z" + }, + "end": { + "$date": "2022-04-02T02:55:33.000Z" + }, + "events": [ + { + "uuid": "31081177-544b-43b2-bc0e-7731385726fb", + "start": { + "$date": "2022-04-02T02:21:05.000Z" + }, + "end": { + "$date": "2022-04-02T02:55:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", + "uuid": "9ec2c7eb-2339-4f5a-bcf6-4e8cb386d8b3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-02T02:23:49.000Z" + }, + "end": { + "$date": "2022-04-02T05:39:42.000Z" + }, + "events": [ + { + "uuid": "139ee9ff-f1b5-4929-9715-66ee828f2cf7", + "start": { + "$date": "2022-04-02T02:23:49.000Z" + }, + "end": { + "$date": "2022-04-02T05:39:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d9cfe07-1abf-4d9d-9cfc-1c5e693ddeea", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T02:49:57.000Z" + }, + "end": { + "$date": "2022-04-02T02:59:23.000Z" + }, + "events": [ + { + "uuid": "7dd99f94-a8ae-4334-a42a-386df7a8189f", + "start": { + "$date": "2022-04-02T02:49:57.000Z" + }, + "end": { + "$date": "2022-04-02T02:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "8d26a9bc-72ca-4e8e-a04b-38115c114daf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-02T05:11:21.000Z" + }, + "end": { + "$date": "2022-04-02T05:11:41.000Z" + }, + "events": [ + { + "uuid": "cd8ce44f-89b4-4c4b-a7da-60775d1fa987", + "start": { + "$date": "2022-04-02T05:11:21.000Z" + }, + "end": { + "$date": "2022-04-02T05:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b82179b-33e2-4f62-ad33-b4706243fd9e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-02T03:51:55.000Z" + }, + "end": { + "$date": "2022-04-02T03:53:30.000Z" + }, + "events": [ + { + "uuid": "53c594bb-8fb6-49f1-a257-49257b40d43c", + "start": { + "$date": "2022-04-02T03:51:55.000Z" + }, + "end": { + "$date": "2022-04-02T03:53:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3ff5ed28-d40f-4d5f-b70d-7ca8c22a5a30", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-02T04:02:45.000Z" + }, + "end": { + "$date": "2022-04-02T04:46:52.000Z" + }, + "events": [ + { + "uuid": "fd30425f-9d7d-4f21-8aa0-8bd4ab884e10", + "start": { + "$date": "2022-04-02T04:02:45.000Z" + }, + "end": { + "$date": "2022-04-02T04:46:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "66771500-3b32-41f2-a5ad-8acfd65a5e92", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-02T04:02:58.000Z" + }, + "end": { + "$date": "2022-04-02T04:55:41.000Z" + }, + "events": [ + { + "uuid": "2576beb4-d508-4efe-a49c-8c27f620f92e", + "start": { + "$date": "2022-04-02T04:02:58.000Z" + }, + "end": { + "$date": "2022-04-02T04:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "b50bf5e0-67b7-4dcb-aae1-bd8dfd56cc14", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-04-02T04:03:03.000Z" + }, + "end": { + "$date": "2022-04-02T04:05:34.000Z" + }, + "events": [ + { + "uuid": "5b56830a-9bd7-4574-9aaa-ae2d79bf0b5c", + "start": { + "$date": "2022-04-02T04:03:03.000Z" + }, + "end": { + "$date": "2022-04-02T04:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0fbb91b9-3bb7-4d71-9625-af77444cde0f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-04-02T04:06:09.000Z" + }, + "end": { + "$date": "2022-04-02T04:46:00.000Z" + }, + "events": [ + { + "uuid": "dc9bf4b3-9a30-4426-957e-f6c391df62c3", + "start": { + "$date": "2022-04-02T04:06:09.000Z" + }, + "end": { + "$date": "2022-04-02T04:46:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7abb30b7-bb00-426b-8ffe-a01362fd925a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-02T04:19:12.000Z" + }, + "end": { + "$date": "2022-04-02T04:45:03.000Z" + }, + "events": [ + { + "uuid": "43bf78af-fd3c-49b5-8e7f-f58c6b52e49d", + "start": { + "$date": "2022-04-02T04:19:12.000Z" + }, + "end": { + "$date": "2022-04-02T04:45:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "c628264b-69e1-4a5e-8b9a-84c7f8adf079", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-04-02T04:47:55.000Z" + }, + "end": { + "$date": "2022-04-02T06:31:42.000Z" + }, + "events": [ + { + "uuid": "15351b35-4530-43dc-b98a-a9b141700ad9", + "start": { + "$date": "2022-04-02T04:47:55.000Z" + }, + "end": { + "$date": "2022-04-02T06:31:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7eac7c2f-0cb1-4f43-90d3-d38f3c5d2411", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T05:05:25.000Z" + }, + "end": { + "$date": "2022-04-02T05:50:14.000Z" + }, + "events": [ + { + "uuid": "f26121a7-af44-4c8a-bc48-8ca80be7ea9e", + "start": { + "$date": "2022-04-02T05:05:25.000Z" + }, + "end": { + "$date": "2022-04-02T05:50:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8ae0ebca-e9c6-4704-96d0-537355a0824c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-02T06:17:49.000Z" + }, + "end": { + "$date": "2022-04-02T06:18:19.000Z" + }, + "events": [ + { + "uuid": "8502ae76-737b-4683-9479-df3a4777b99d", + "start": { + "$date": "2022-04-02T06:17:49.000Z" + }, + "end": { + "$date": "2022-04-02T06:18:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "867a5e50-1deb-42f4-859b-faeed7bb312b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-02T05:40:56.000Z" + }, + "end": { + "$date": "2022-04-02T06:56:23.000Z" + }, + "events": [ + { + "uuid": "6670d7b0-34dd-4a15-a409-7bedf780f25c", + "start": { + "$date": "2022-04-02T05:40:56.000Z" + }, + "end": { + "$date": "2022-04-02T06:56:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cd260c1b-ee2f-4cdd-9855-24740ac4c2c6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T06:01:36.000Z" + }, + "end": { + "$date": "2022-04-02T06:40:06.000Z" + }, + "events": [ + { + "uuid": "b8239b27-096f-4b9f-a5fd-043b18a77bfd", + "start": { + "$date": "2022-04-02T06:01:36.000Z" + }, + "end": { + "$date": "2022-04-02T06:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dc4cf8d9-ddd9-421a-b1c2-bda8e2a5e5fb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-02T06:05:03.000Z" + }, + "end": { + "$date": "2022-04-02T08:26:16.000Z" + }, + "events": [ + { + "uuid": "b926c1f7-5bc2-4d09-891f-9018c8110b0e", + "start": { + "$date": "2022-04-02T06:05:03.000Z" + }, + "end": { + "$date": "2022-04-02T08:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c108a52b-2696-4121-82bd-dfc2ff2c8a99", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-02T08:47:08.000Z" + }, + "end": { + "$date": "2022-04-02T08:47:10.000Z" + }, + "events": [ + { + "uuid": "3b893b91-ebfc-4beb-ab42-b74c6f8858a7", + "start": { + "$date": "2022-04-02T08:47:08.000Z" + }, + "end": { + "$date": "2022-04-02T08:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "23459b32-685b-457e-919e-69588b95ffb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-02T06:23:03.000Z" + }, + "end": { + "$date": "2022-04-02T07:17:21.000Z" + }, + "events": [ + { + "uuid": "37f79a00-cfb5-4faa-8a0c-afdd5fc941ba", + "start": { + "$date": "2022-04-02T06:23:03.000Z" + }, + "end": { + "$date": "2022-04-02T07:17:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "181112e3-65f6-4876-a13b-731f5be495f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-02T12:44:36.000Z" + }, + "end": { + "$date": "2022-04-02T13:13:27.000Z" + }, + "events": [ + { + "uuid": "758571e4-7408-4ab9-bf90-2e8529675c6b", + "start": { + "$date": "2022-04-02T12:44:36.000Z" + }, + "end": { + "$date": "2022-04-02T13:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5c314657-355e-4e34-b65a-32137074be6d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-02T15:06:50.000Z" + }, + "end": { + "$date": "2022-04-02T16:04:55.000Z" + }, + "events": [ + { + "uuid": "7ab6b508-a9e4-4777-b27d-0ae22d3dfc15", + "start": { + "$date": "2022-04-02T15:06:50.000Z" + }, + "end": { + "$date": "2022-04-02T16:04:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "9a0f522f-d223-4c81-b47f-a736e36ff482", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-02T16:20:11.000Z" + }, + "end": { + "$date": "2022-04-02T16:34:27.000Z" + }, + "events": [ + { + "uuid": "60678aec-2471-4fe9-823d-b9b0bd4c462d", + "start": { + "$date": "2022-04-02T16:20:11.000Z" + }, + "end": { + "$date": "2022-04-02T16:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fa11b798-2191-450b-a666-e4da3c6d6469", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-02T16:35:07.000Z" + }, + "end": { + "$date": "2022-04-02T18:32:16.000Z" + }, + "events": [ + { + "uuid": "9a486bf8-5503-4adb-9998-390e6913478e", + "start": { + "$date": "2022-04-02T16:35:07.000Z" + }, + "end": { + "$date": "2022-04-02T18:32:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "d0632ab1-6f7e-4cbb-a7fd-a792c225c5d7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-02T18:35:21.000Z" + }, + "end": { + "$date": "2022-04-02T18:51:42.000Z" + }, + "events": [ + { + "uuid": "8ea53603-fbeb-4f02-abd9-95f57689b14d", + "start": { + "$date": "2022-04-02T18:35:21.000Z" + }, + "end": { + "$date": "2022-04-02T18:51:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "66c09b2e-9a55-4770-a66e-fbf9873461d6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-02T19:23:27.000Z" + }, + "end": { + "$date": "2022-04-02T19:38:23.000Z" + }, + "events": [ + { + "uuid": "701fb75f-d3ef-48d4-be83-aa574b880ca4", + "start": { + "$date": "2022-04-02T19:23:27.000Z" + }, + "end": { + "$date": "2022-04-02T19:38:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "0798194d-5537-4050-bfff-d02e819d3cef", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-02T20:35:35.000Z" + }, + "end": { + "$date": "2022-04-02T22:03:33.000Z" + }, + "events": [ + { + "uuid": "ffd13432-e961-4d53-b732-5beac34f638d", + "start": { + "$date": "2022-04-02T20:35:35.000Z" + }, + "end": { + "$date": "2022-04-02T22:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f0dec9b8-d945-49a9-accb-0f69e07b3251", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-02T20:40:51.000Z" + }, + "end": { + "$date": "2022-04-02T21:49:39.000Z" + }, + "events": [ + { + "uuid": "71ae35a3-4a54-4bcb-a8e5-39b748e2b006", + "start": { + "$date": "2022-04-02T20:40:51.000Z" + }, + "end": { + "$date": "2022-04-02T21:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3e4da1b8-eda5-4237-b56b-e8dc4ff8103f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-02T21:48:38.000Z" + }, + "end": { + "$date": "2022-04-02T23:56:59.000Z" + }, + "events": [ + { + "uuid": "46f2732c-b848-4d04-a3c1-4cc5ad77dd40", + "start": { + "$date": "2022-04-02T21:48:38.000Z" + }, + "end": { + "$date": "2022-04-02T23:56:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "42d2965f-8d47-47d2-85fb-299c5c437b8a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-02T21:49:16.000Z" + }, + "end": { + "$date": "2022-04-02T22:29:50.000Z" + }, + "events": [ + { + "uuid": "335a6c51-7a36-40d2-89cb-ca9387135b00", + "start": { + "$date": "2022-04-02T21:49:16.000Z" + }, + "end": { + "$date": "2022-04-02T22:29:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d313cd4f-c1a3-46f7-8250-a3d4ce93c385", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-02T21:49:47.000Z" + }, + "end": { + "$date": "2022-04-02T23:56:42.000Z" + }, + "events": [ + { + "uuid": "df078a63-a44a-42e6-9727-b36148a99dec", + "start": { + "$date": "2022-04-02T21:49:47.000Z" + }, + "end": { + "$date": "2022-04-02T23:56:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "495b2996-8b1f-4dc4-91b1-d53ad780aec1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-02T22:06:28.000Z" + }, + "end": { + "$date": "2022-04-02T22:31:02.000Z" + }, + "events": [ + { + "uuid": "8c4afbf8-de14-4227-b486-ada4a7acfddf", + "start": { + "$date": "2022-04-02T22:06:28.000Z" + }, + "end": { + "$date": "2022-04-02T22:31:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "eba67143-376a-48ee-baf1-65b61f7e3d93", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-02T22:08:28.000Z" + }, + "end": { + "$date": "2022-04-03T00:12:31.000Z" + }, + "events": [ + { + "uuid": "355da9c6-a5cf-44cc-a9a0-efb568bc632b", + "start": { + "$date": "2022-04-02T22:08:28.000Z" + }, + "end": { + "$date": "2022-04-03T00:10:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "167ffdbe-8d81-4a23-b72c-487619d62bbe", + "start": { + "$date": "2022-04-03T00:10:28.000Z" + }, + "end": { + "$date": "2022-04-03T00:12:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0dee057f-897d-4a52-87fd-106f7c3c85e5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-02T22:10:30.000Z" + }, + "end": { + "$date": "2022-04-02T23:53:29.000Z" + }, + "events": [ + { + "uuid": "1d6103a4-feae-4b34-a8ca-0d957fbf8e13", + "start": { + "$date": "2022-04-02T22:10:30.000Z" + }, + "end": { + "$date": "2022-04-02T23:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "721c569c-ed7b-41f0-b01a-ae31bd98c975", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-02T23:13:13.000Z" + }, + "end": { + "$date": "2022-04-02T23:13:58.000Z" + }, + "events": [ + { + "uuid": "f0b21ed6-be29-49a3-b62c-a383f7d21cbb", + "start": { + "$date": "2022-04-02T23:13:13.000Z" + }, + "end": { + "$date": "2022-04-02T23:13:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "7df4610e-73c4-462e-8cbb-ed7f431fec0a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-02T22:31:33.000Z" + }, + "end": { + "$date": "2022-04-03T01:02:26.000Z" + }, + "events": [ + { + "uuid": "ac104bdd-0d05-4109-aa18-837f9d01b5eb", + "start": { + "$date": "2022-04-02T22:31:33.000Z" + }, + "end": { + "$date": "2022-04-02T23:32:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "831a4434-657f-4683-bdfa-ba2e1bc252f0", + "start": { + "$date": "2022-04-02T23:32:33.000Z" + }, + "end": { + "$date": "2022-04-02T23:59:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "65c43d76-74a1-4c33-834f-c05243d8c412", + "start": { + "$date": "2022-04-02T23:59:33.000Z" + }, + "end": { + "$date": "2022-04-03T01:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b2b27881-6650-4831-8984-f466f393761a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-02T22:32:06.000Z" + }, + "end": { + "$date": "2022-04-02T23:56:49.000Z" + }, + "events": [ + { + "uuid": "d267413c-fa62-481f-bb12-735f9c6c3876", + "start": { + "$date": "2022-04-02T22:32:06.000Z" + }, + "end": { + "$date": "2022-04-02T23:56:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "b9f24a43-0f08-4ffa-a6b1-57a211b09f3f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-03T00:54:52.000Z" + }, + "end": { + "$date": "2022-04-03T00:55:12.000Z" + }, + "events": [ + { + "uuid": "3cf4726a-6cf8-4d4c-8acc-2fa64bd7b477", + "start": { + "$date": "2022-04-03T00:54:52.000Z" + }, + "end": { + "$date": "2022-04-03T02:07:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a42c457-efb4-4b0b-8f95-e601e5d44285", + "start": { + "$date": "2022-04-03T02:07:52.000Z" + }, + "end": { + "$date": "2022-04-03T02:29:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c7805ed9-4d60-405f-adb6-e5164384b517", + "start": { + "$date": "2022-04-03T02:29:52.000Z" + }, + "end": { + "$date": "2022-04-03T00:55:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "9192f86a-9c29-4b13-8cd0-bc467169b4cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-02T22:17:35.000Z" + }, + "end": { + "$date": "2022-04-03T00:48:05.000Z" + }, + "events": [ + { + "uuid": "99b9c268-0cb2-48f8-a4b2-82174d1982b9", + "start": { + "$date": "2022-04-02T22:17:35.000Z" + }, + "end": { + "$date": "2022-04-03T00:48:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "79f08108-8022-4a11-aaf1-5edcaecb9a95", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-02T23:56:59.000Z" + }, + "end": { + "$date": "2022-04-03T02:12:58.000Z" + }, + "events": [ + { + "uuid": "f1e7cfd5-dba3-4b96-85f0-188d8f771bbf", + "start": { + "$date": "2022-04-02T23:56:59.000Z" + }, + "end": { + "$date": "2022-04-03T02:12:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "076569eb-fe13-44ba-bc44-3708ee5f0ecd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-03T00:50:05.000Z" + }, + "end": { + "$date": "2022-04-03T00:54:30.000Z" + }, + "events": [ + { + "uuid": "f2afd4fc-2fc6-49ce-94ff-9ba06f12b394", + "start": { + "$date": "2022-04-03T00:50:05.000Z" + }, + "end": { + "$date": "2022-04-03T00:54:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "9c77339f-b22c-46d7-a2b2-c4a9469df7fa", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-03T00:55:15.000Z" + }, + "end": { + "$date": "2022-04-03T02:16:44.000Z" + }, + "events": [ + { + "uuid": "b93f5917-ea98-43fc-9867-0d0adce181ca", + "start": { + "$date": "2022-04-03T00:55:15.000Z" + }, + "end": { + "$date": "2022-04-03T02:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "c96475c2-ce4c-4cb3-9462-d143002aa0cb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-03T01:27:57.000Z" + }, + "end": { + "$date": "2022-04-03T01:28:08.000Z" + }, + "events": [ + { + "uuid": "5e0be521-2974-4b8d-9aa3-f2ab344cdd09", + "start": { + "$date": "2022-04-03T01:27:57.000Z" + }, + "end": { + "$date": "2022-04-03T01:28:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "f93bd6af-4be1-4237-a1ee-c1d8303fa58e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-03T01:15:00.000Z" + }, + "end": { + "$date": "2022-04-03T02:45:18.000Z" + }, + "events": [ + { + "uuid": "7f7730a4-afab-4634-8347-1789bc606eb6", + "start": { + "$date": "2022-04-03T01:15:00.000Z" + }, + "end": { + "$date": "2022-04-03T02:45:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "146699f3-1ce0-4404-8c7a-877349d7e269", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T02:14:35.000Z" + }, + "end": { + "$date": "2022-04-03T02:37:23.000Z" + }, + "events": [ + { + "uuid": "c3c30dda-cc64-4778-bcb9-e2003d464a72", + "start": { + "$date": "2022-04-03T02:14:35.000Z" + }, + "end": { + "$date": "2022-04-03T02:37:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1e5eb751-b1c8-4459-9410-ffd4e4994637", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-03T02:17:34.000Z" + }, + "end": { + "$date": "2022-04-03T05:41:49.000Z" + }, + "events": [ + { + "uuid": "9e9c2c01-baa9-42cc-af98-f68bd11834f8", + "start": { + "$date": "2022-04-03T02:17:34.000Z" + }, + "end": { + "$date": "2022-04-03T05:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff359ed4-f045-4c67-9b44-9112fac83443", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-03T02:26:00.000Z" + }, + "end": { + "$date": "2022-04-03T07:42:07.000Z" + }, + "events": [ + { + "uuid": "e7a32c6e-b64e-49b5-b102-45e1fa8cb04f", + "start": { + "$date": "2022-04-03T02:26:00.000Z" + }, + "end": { + "$date": "2022-04-03T07:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "786d4efa-b2b5-4d51-b3b7-721c702f615d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T02:40:08.000Z" + }, + "end": { + "$date": "2022-04-03T03:10:41.000Z" + }, + "events": [ + { + "uuid": "f430424e-c763-4d0f-9699-2827ff348172", + "start": { + "$date": "2022-04-03T02:40:08.000Z" + }, + "end": { + "$date": "2022-04-03T03:10:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4214dc2a-b7bf-4a2c-a692-046ee89c6462", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T03:13:31.000Z" + }, + "end": { + "$date": "2022-04-03T03:29:33.000Z" + }, + "events": [ + { + "uuid": "af206975-2553-45a0-86ab-f38c7b9a5713", + "start": { + "$date": "2022-04-03T03:13:31.000Z" + }, + "end": { + "$date": "2022-04-03T03:29:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ea304a6-e41b-496b-a654-7ab9c43f1b95", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T03:32:08.000Z" + }, + "end": { + "$date": "2022-04-03T03:46:09.000Z" + }, + "events": [ + { + "uuid": "80854a7a-b3f6-4a67-bc0d-3e116ec4583d", + "start": { + "$date": "2022-04-03T03:32:08.000Z" + }, + "end": { + "$date": "2022-04-03T03:46:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "650cd0a1-16a2-4bb4-88a3-f41d872a57c2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T03:48:49.000Z" + }, + "end": { + "$date": "2022-04-03T04:07:53.000Z" + }, + "events": [ + { + "uuid": "4be1bb39-e66e-4162-a650-2409217aac3c", + "start": { + "$date": "2022-04-03T03:48:49.000Z" + }, + "end": { + "$date": "2022-04-03T04:07:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9c637d57-96f4-4ff7-9a4e-cd7a33c4576f", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T04:05:19.000Z" + }, + "end": { + "$date": "2022-04-03T04:34:50.000Z" + }, + "events": [ + { + "uuid": "c430d6f9-653f-4444-a8c9-4141181b371a", + "start": { + "$date": "2022-04-03T04:05:19.000Z" + }, + "end": { + "$date": "2022-04-03T04:34:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "17432c55-26d3-44a0-8e35-bb62f5cf2738", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T04:17:37.000Z" + }, + "end": { + "$date": "2022-04-03T04:25:29.000Z" + }, + "events": [ + { + "uuid": "b75ad7c1-3a3a-4cf3-b1fd-3752b5d41888", + "start": { + "$date": "2022-04-03T04:17:37.000Z" + }, + "end": { + "$date": "2022-04-03T04:25:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05b5555b-cddf-4095-bd34-4559ea5369fc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T04:31:00.000Z" + }, + "end": { + "$date": "2022-04-03T05:00:43.000Z" + }, + "events": [ + { + "uuid": "4f9b9536-b328-47ca-8c1e-af5876f082b8", + "start": { + "$date": "2022-04-03T04:31:00.000Z" + }, + "end": { + "$date": "2022-04-03T05:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d562e752-a1c3-4e7f-abcd-e6977cec200a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T04:40:15.000Z" + }, + "end": { + "$date": "2022-04-03T05:13:41.000Z" + }, + "events": [ + { + "uuid": "9c20f3fd-13ec-4cd7-bab0-6a73c9870fe3", + "start": { + "$date": "2022-04-03T04:40:15.000Z" + }, + "end": { + "$date": "2022-04-03T05:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "20807f98-15ca-4808-8f8e-ff490f9df4d7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T05:02:54.000Z" + }, + "end": { + "$date": "2022-04-03T05:34:36.000Z" + }, + "events": [ + { + "uuid": "00510158-d236-4053-983d-d39c9d7c9ee4", + "start": { + "$date": "2022-04-03T05:02:54.000Z" + }, + "end": { + "$date": "2022-04-03T05:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", + "uuid": "212975c0-bde8-47c2-8b63-326b94ffcf6b", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-04-03T05:04:49.000Z" + }, + "end": { + "$date": "2022-04-03T07:12:49.000Z" + }, + "events": [ + { + "uuid": "e2dc023d-125e-49df-b870-0f6a56afbf25", + "start": { + "$date": "2022-04-03T05:04:49.000Z" + }, + "end": { + "$date": "2022-04-03T07:12:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d7f47b7-e39e-44de-87ae-a9959d07faf6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T06:31:18.000Z" + }, + "end": { + "$date": "2022-04-03T06:32:38.000Z" + }, + "events": [ + { + "uuid": "6ddaf2f5-702f-431c-8f35-4c6159c3aa86", + "start": { + "$date": "2022-04-03T06:31:18.000Z" + }, + "end": { + "$date": "2022-04-03T06:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b421ec4-1e54-4000-b63a-9f588701d170", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T05:36:26.000Z" + }, + "end": { + "$date": "2022-04-03T06:07:58.000Z" + }, + "events": [ + { + "uuid": "de7dbf3e-9342-48f3-8d8a-2cd6614d1aa0", + "start": { + "$date": "2022-04-03T05:36:26.000Z" + }, + "end": { + "$date": "2022-04-03T06:07:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0eba017a-bb5f-48b6-9d18-1c6d4af63510", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-03T05:35:52.000Z" + }, + "end": { + "$date": "2022-04-03T07:42:24.000Z" + }, + "events": [ + { + "uuid": "2c0fa63c-ca15-4c4e-8752-194568f511e6", + "start": { + "$date": "2022-04-03T05:35:52.000Z" + }, + "end": { + "$date": "2022-04-03T05:57:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c45b8803-5ac7-4663-b932-fdc874b44332", + "start": { + "$date": "2022-04-03T05:57:52.000Z" + }, + "end": { + "$date": "2022-04-03T06:02:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b7e4344-1ee8-4aeb-8a69-d4b3039d3b95", + "start": { + "$date": "2022-04-03T06:02:52.000Z" + }, + "end": { + "$date": "2022-04-03T07:42:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6dc3238f-0621-4ee4-938a-4ab2f29c09ba", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-03T05:41:54.000Z" + }, + "end": { + "$date": "2022-04-03T07:20:23.000Z" + }, + "events": [ + { + "uuid": "5f5737f8-5c3f-4e07-a6d7-118eb21c0486", + "start": { + "$date": "2022-04-03T05:41:54.000Z" + }, + "end": { + "$date": "2022-04-03T07:20:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5036e4b-d4c8-4187-af3c-21a7ae9f81f4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T06:09:48.000Z" + }, + "end": { + "$date": "2022-04-03T06:47:41.000Z" + }, + "events": [ + { + "uuid": "11695b20-e10f-4601-88de-e25248528e02", + "start": { + "$date": "2022-04-03T06:09:48.000Z" + }, + "end": { + "$date": "2022-04-03T06:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "960e7d41-9024-4f3c-8d1e-e35cdad3289e", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T07:49:53.000Z" + }, + "end": { + "$date": "2022-04-03T07:53:16.000Z" + }, + "events": [ + { + "uuid": "b664ea85-6d63-44bd-8a1b-f5a99c26b0d8", + "start": { + "$date": "2022-04-03T07:49:53.000Z" + }, + "end": { + "$date": "2022-04-03T07:53:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "574b5566-48f6-471e-9721-79a662b26052", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T06:49:15.000Z" + }, + "end": { + "$date": "2022-04-03T07:19:54.000Z" + }, + "events": [ + { + "uuid": "7a863717-ed10-4486-a8d8-aa55f59a1d48", + "start": { + "$date": "2022-04-03T06:49:15.000Z" + }, + "end": { + "$date": "2022-04-03T07:19:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98916197-56ab-4885-9cb7-a8f7180cc388", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T07:21:45.000Z" + }, + "end": { + "$date": "2022-04-03T07:49:18.000Z" + }, + "events": [ + { + "uuid": "82e35c82-f4d4-4dd6-9dfb-8e2fed71bc8a", + "start": { + "$date": "2022-04-03T07:21:45.000Z" + }, + "end": { + "$date": "2022-04-03T07:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5cf8f23-99dd-41c2-b4df-e2c0f1fa2dda", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-03T07:50:02.000Z" + }, + "end": { + "$date": "2022-04-03T08:27:47.000Z" + }, + "events": [ + { + "uuid": "44bafa90-7da5-40e9-8003-faa32f422096", + "start": { + "$date": "2022-04-03T07:50:02.000Z" + }, + "end": { + "$date": "2022-04-03T08:27:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "57515faf-416b-4399-b73b-5c0502a7a2f9", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T07:49:53.000Z" + }, + "end": { + "$date": "2022-04-03T07:59:50.000Z" + }, + "events": [ + { + "uuid": "99f5012c-bd3c-45ad-a4db-479e0e43b577", + "start": { + "$date": "2022-04-03T07:49:53.000Z" + }, + "end": { + "$date": "2022-04-03T07:59:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b731addc-b4e0-4885-8456-2b123f378b81", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T07:49:53.000Z" + }, + "end": { + "$date": "2022-04-03T08:38:01.000Z" + }, + "events": [ + { + "uuid": "c01f4416-a89f-4819-87b2-cecc3d6360c2", + "start": { + "$date": "2022-04-03T07:49:53.000Z" + }, + "end": { + "$date": "2022-04-03T08:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "74c1395a-afc1-496b-a990-7c259131e9d2", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-03T08:40:13.000Z" + }, + "end": { + "$date": "2022-04-03T09:07:43.000Z" + }, + "events": [ + { + "uuid": "bd8e539a-5b53-4a5f-9fb1-0bb95099d743", + "start": { + "$date": "2022-04-03T08:40:13.000Z" + }, + "end": { + "$date": "2022-04-03T09:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c377a848-21aa-422f-9714-ba614b8493a2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-03T13:56:55.000Z" + }, + "end": { + "$date": "2022-04-03T16:01:44.000Z" + }, + "events": [ + { + "uuid": "2a866d13-e841-40a7-8eb5-261b00f5981f", + "start": { + "$date": "2022-04-03T13:56:55.000Z" + }, + "end": { + "$date": "2022-04-03T16:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9780ffef-8cb6-49ee-88c5-2f571a4042b6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-03T16:57:02.000Z" + }, + "end": { + "$date": "2022-04-03T18:47:54.000Z" + }, + "events": [ + { + "uuid": "333772cf-dccb-43a3-af9e-7c1558382f35", + "start": { + "$date": "2022-04-03T16:57:02.000Z" + }, + "end": { + "$date": "2022-04-03T18:47:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c8f5933b-1897-4307-a6be-175a93408247", + "uuid": "254603f8-a8dd-4b0e-af3c-6ac93adbc8b5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-03T18:14:31.000Z" + }, + "end": { + "$date": "2022-04-03T18:38:12.000Z" + }, + "events": [ + { + "uuid": "1642387b-3957-4738-afc0-bdf4d6d88450", + "start": { + "$date": "2022-04-03T18:14:31.000Z" + }, + "end": { + "$date": "2022-04-03T18:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "826872fa-ff9f-4231-9e52-50304d444715", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-03T18:45:03.000Z" + }, + "end": { + "$date": "2022-04-03T18:56:48.000Z" + }, + "events": [ + { + "uuid": "3b4d5e81-9107-4b99-946e-d8b649b6a18a", + "start": { + "$date": "2022-04-03T18:45:03.000Z" + }, + "end": { + "$date": "2022-04-03T18:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "188e8e3a-6edb-45d7-952c-4ca1b8a2f18f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-03T19:00:31.000Z" + }, + "end": { + "$date": "2022-04-03T19:03:16.000Z" + }, + "events": [ + { + "uuid": "5b1826f1-cbed-4938-941a-75d7b7bcf0c0", + "start": { + "$date": "2022-04-03T19:00:31.000Z" + }, + "end": { + "$date": "2022-04-03T19:03:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9ab5f9a0-089f-4b27-a019-0395bd3bc3cf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-03T19:12:12.000Z" + }, + "end": { + "$date": "2022-04-03T19:30:38.000Z" + }, + "events": [ + { + "uuid": "2d499642-ff8e-4ae8-a764-2abb29b2a72a", + "start": { + "$date": "2022-04-03T19:12:12.000Z" + }, + "end": { + "$date": "2022-04-03T19:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6d25e952-7ae0-49ee-8cf8-8e6397a619d9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-03T20:35:18.000Z" + }, + "end": { + "$date": "2022-04-03T21:22:56.000Z" + }, + "events": [ + { + "uuid": "c4b17e7c-4f7a-40a4-ac25-03abf26b22f9", + "start": { + "$date": "2022-04-03T20:35:18.000Z" + }, + "end": { + "$date": "2022-04-03T21:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "07250634-828b-469b-bde2-f9a2294f8285", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-03T22:25:13.000Z" + }, + "end": { + "$date": "2022-04-03T23:26:16.000Z" + }, + "events": [ + { + "uuid": "45d109ef-4760-427b-a669-37fff3d2ee93", + "start": { + "$date": "2022-04-03T22:25:13.000Z" + }, + "end": { + "$date": "2022-04-03T23:26:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "2f2da198-c725-4e3b-93c8-1f8b99c213aa", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-04T01:13:03.000Z" + }, + "end": { + "$date": "2022-04-04T01:56:30.000Z" + }, + "events": [ + { + "uuid": "ec82b3b7-8dd2-4ba9-9d01-923e565548ac", + "start": { + "$date": "2022-04-04T01:13:03.000Z" + }, + "end": { + "$date": "2022-04-04T01:56:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "f9b37c3a-7391-4379-9688-10f70f015b74", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-04T01:18:40.000Z" + }, + "end": { + "$date": "2022-04-04T02:17:27.000Z" + }, + "events": [ + { + "uuid": "033f2c4c-4178-485d-9ed3-72d1ff9fd26c", + "start": { + "$date": "2022-04-04T01:18:40.000Z" + }, + "end": { + "$date": "2022-04-04T02:17:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "91da69f2-ea1e-4a3e-82bb-1fc7b5961bcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-04T01:54:18.000Z" + }, + "end": { + "$date": "2022-04-04T02:59:21.000Z" + }, + "events": [ + { + "uuid": "50b0c050-492e-4f86-9bfb-e43c58283b28", + "start": { + "$date": "2022-04-04T01:54:18.000Z" + }, + "end": { + "$date": "2022-04-04T02:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "9cd791c4-2b52-43b9-8173-8b829e7442bc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-04T02:18:07.000Z" + }, + "end": { + "$date": "2022-04-04T03:09:39.000Z" + }, + "events": [ + { + "uuid": "e1dff01e-a2e8-4acb-a4af-75a0e05d73fc", + "start": { + "$date": "2022-04-04T02:18:07.000Z" + }, + "end": { + "$date": "2022-04-04T03:09:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "b6d87ff5-2cc5-4715-ae11-1bdc8af9001c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-04T03:32:31.000Z" + }, + "end": { + "$date": "2022-04-04T03:32:50.000Z" + }, + "events": [ + { + "uuid": "02be81d8-be29-42e2-83b0-3503a9863fb1", + "start": { + "$date": "2022-04-04T03:32:31.000Z" + }, + "end": { + "$date": "2022-04-04T03:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "909d9218-1b54-4141-9df7-26ad36a8fb0e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-04T03:08:06.000Z" + }, + "end": { + "$date": "2022-04-04T03:16:07.000Z" + }, + "events": [ + { + "uuid": "20db57a2-57fd-41f8-90ac-fb751b8b0da4", + "start": { + "$date": "2022-04-04T03:08:06.000Z" + }, + "end": { + "$date": "2022-04-04T03:16:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c303d162-44d5-43e1-87e3-dbb60e23cf2f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-04T03:11:50.000Z" + }, + "end": { + "$date": "2022-04-04T03:23:07.000Z" + }, + "events": [ + { + "uuid": "adb4f49a-e2f2-4ffa-a922-96e7a6438ce5", + "start": { + "$date": "2022-04-04T03:11:50.000Z" + }, + "end": { + "$date": "2022-04-04T03:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3559ab6d-68fd-4942-8f65-4ffd8e486542", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-04T03:23:12.000Z" + }, + "end": { + "$date": "2022-04-04T03:47:45.000Z" + }, + "events": [ + { + "uuid": "cd5d69ec-5e64-4b9f-973c-bb53fe9b6f33", + "start": { + "$date": "2022-04-04T03:23:12.000Z" + }, + "end": { + "$date": "2022-04-04T03:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "25593548-6f17-4690-bdb0-4886d00f6295", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-04T03:51:37.000Z" + }, + "end": { + "$date": "2022-04-04T04:28:25.000Z" + }, + "events": [ + { + "uuid": "24734bed-6c84-48af-8317-20037746ca76", + "start": { + "$date": "2022-04-04T03:51:37.000Z" + }, + "end": { + "$date": "2022-04-04T04:28:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "f954e72e-d753-45b5-b1e2-83c44d7179f6", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-04T04:54:59.000Z" + }, + "end": { + "$date": "2022-04-04T04:55:58.000Z" + }, + "events": [ + { + "uuid": "dbd34ff6-500f-4510-882e-373a98d63bba", + "start": { + "$date": "2022-04-04T04:54:59.000Z" + }, + "end": { + "$date": "2022-04-04T04:55:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4afcd80f-799a-49d2-9cba-fac61a86d4a3", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-04T05:13:56.000Z" + }, + "end": { + "$date": "2022-04-04T05:44:36.000Z" + }, + "events": [ + { + "uuid": "ca8dee2b-4989-41ff-bcc5-f10c652a9989", + "start": { + "$date": "2022-04-04T05:13:56.000Z" + }, + "end": { + "$date": "2022-04-04T05:44:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2a79f20b-362e-4f02-ab11-9b09eac9ce05", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-04T05:24:19.000Z" + }, + "end": { + "$date": "2022-04-04T07:13:41.000Z" + }, + "events": [ + { + "uuid": "22051c7b-d5e3-4fb4-afe9-ab95a38a4d0f", + "start": { + "$date": "2022-04-04T05:24:19.000Z" + }, + "end": { + "$date": "2022-04-04T07:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a73950a0-107f-400f-9bc0-8dbba62e1d26", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-04T05:51:47.000Z" + }, + "end": { + "$date": "2022-04-04T06:17:08.000Z" + }, + "events": [ + { + "uuid": "79eb816e-9262-4508-8322-b37c6fb9f5a5", + "start": { + "$date": "2022-04-04T05:51:47.000Z" + }, + "end": { + "$date": "2022-04-04T06:17:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "3adb764d-dad4-43d0-a085-d4b58d0b6414", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-04T06:45:53.000Z" + }, + "end": { + "$date": "2022-04-04T07:03:24.000Z" + }, + "events": [ + { + "uuid": "fa52568a-8f17-4ffc-a70f-fe878fc58022", + "start": { + "$date": "2022-04-04T06:45:53.000Z" + }, + "end": { + "$date": "2022-04-04T07:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "606ab04d-a942-4f47-9ffb-6dd23fdee979", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-04T08:49:48.000Z" + }, + "end": { + "$date": "2022-04-04T10:08:39.000Z" + }, + "events": [ + { + "uuid": "b0b9d4dc-ed8c-43c6-a343-9eeb75cb9877", + "start": { + "$date": "2022-04-04T08:49:48.000Z" + }, + "end": { + "$date": "2022-04-04T10:08:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "b50d08ad-78d8-4f76-b2d8-e4e3697e1338", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-04T19:08:58.000Z" + }, + "end": { + "$date": "2022-04-04T22:39:33.000Z" + }, + "events": [ + { + "uuid": "523371b0-c6d6-4f01-b18d-cc708b8e201b", + "start": { + "$date": "2022-04-04T19:08:58.000Z" + }, + "end": { + "$date": "2022-04-04T22:39:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9bef4f95-f7d7-412e-a4e5-713871ee5fdf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-04T19:12:51.000Z" + }, + "end": { + "$date": "2022-04-04T19:49:35.000Z" + }, + "events": [ + { + "uuid": "a50d6230-7a97-471a-8e40-4ac78c9a6f79", + "start": { + "$date": "2022-04-04T19:12:51.000Z" + }, + "end": { + "$date": "2022-04-04T19:49:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "5132a97e-64f8-4bb1-b4bd-d66ff36e96db", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-04T22:47:14.000Z" + }, + "end": { + "$date": "2022-04-04T23:45:19.000Z" + }, + "events": [ + { + "uuid": "1ac14089-2a63-4aaf-982c-55d018ca1997", + "start": { + "$date": "2022-04-04T22:47:14.000Z" + }, + "end": { + "$date": "2022-04-04T23:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "564d42c0-4ceb-4a34-870d-3a9f51e2669f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-05T00:15:09.000Z" + }, + "end": { + "$date": "2022-04-05T00:40:38.000Z" + }, + "events": [ + { + "uuid": "7684bde1-fa2c-406b-ae9b-16dd488ea00b", + "start": { + "$date": "2022-04-05T00:15:09.000Z" + }, + "end": { + "$date": "2022-04-05T00:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "5bb8180f-bb81-4c14-b330-c61b68f73c37", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-05T00:30:35.000Z" + }, + "end": { + "$date": "2022-04-05T02:19:48.000Z" + }, + "events": [ + { + "uuid": "0af0c0aa-a772-45bc-991c-296492867d39", + "start": { + "$date": "2022-04-05T00:30:35.000Z" + }, + "end": { + "$date": "2022-04-05T02:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "13370e87-9a80-4ee2-ac5e-380022ff42af", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-04-05T00:31:29.000Z" + }, + "end": { + "$date": "2022-04-05T02:44:41.000Z" + }, + "events": [ + { + "uuid": "61c66c18-655f-4ea9-9b23-173a57e0bb46", + "start": { + "$date": "2022-04-05T00:31:29.000Z" + }, + "end": { + "$date": "2022-04-05T02:44:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a389f0d4-b6c2-4a2b-883f-8b341f17dec5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-05T03:17:52.000Z" + }, + "end": { + "$date": "2022-04-05T03:50:01.000Z" + }, + "events": [ + { + "uuid": "3c667434-fcbe-4fcc-b3dd-76164d67fe2a", + "start": { + "$date": "2022-04-05T03:17:52.000Z" + }, + "end": { + "$date": "2022-04-05T03:50:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e3ed3fde-8d5b-4f07-8117-969cd1590b8b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-05T02:54:36.000Z" + }, + "end": { + "$date": "2022-04-05T05:20:45.000Z" + }, + "events": [ + { + "uuid": "2f08e187-6eff-4562-b145-41fdb611af1a", + "start": { + "$date": "2022-04-05T02:54:36.000Z" + }, + "end": { + "$date": "2022-04-05T05:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc918b55-a030-4767-a35d-4bc7cd96cf57", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-05T03:19:08.000Z" + }, + "end": { + "$date": "2022-04-05T09:31:24.000Z" + }, + "events": [ + { + "uuid": "e9532ac8-f03d-4a3e-9da2-3243f0edd202", + "start": { + "$date": "2022-04-05T03:19:08.000Z" + }, + "end": { + "$date": "2022-04-05T03:44:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d758df1b-bfed-4e31-8017-d40276a58f57", + "start": { + "$date": "2022-04-05T03:44:08.000Z" + }, + "end": { + "$date": "2022-04-05T03:52:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce8fa20d-06ed-4cc7-9a0c-f959e212c1b5", + "start": { + "$date": "2022-04-05T03:52:08.000Z" + }, + "end": { + "$date": "2022-04-05T05:06:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0d6d66c-14ad-4e38-96f3-2ad3eead8257", + "start": { + "$date": "2022-04-05T05:06:08.000Z" + }, + "end": { + "$date": "2022-04-05T05:07:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c66f91ad-24c4-45a2-be16-05b722e0289c", + "start": { + "$date": "2022-04-05T05:07:08.000Z" + }, + "end": { + "$date": "2022-04-05T05:45:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c235fe0a-265f-4b72-bb2d-77aa43269785", + "start": { + "$date": "2022-04-05T05:45:08.000Z" + }, + "end": { + "$date": "2022-04-05T05:54:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "525aa21a-b058-4284-9dea-8c164f532323", + "start": { + "$date": "2022-04-05T05:54:08.000Z" + }, + "end": { + "$date": "2022-04-05T06:05:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e6726f40-58ca-4725-87c1-7ce9c2469776", + "start": { + "$date": "2022-04-05T06:05:08.000Z" + }, + "end": { + "$date": "2022-04-05T06:09:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "00775d4b-3c01-4334-b551-7f1d5428e19e", + "start": { + "$date": "2022-04-05T06:09:08.000Z" + }, + "end": { + "$date": "2022-04-05T06:20:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "828f9a09-e220-4d06-bcfe-beefaee97d06", + "start": { + "$date": "2022-04-05T06:20:08.000Z" + }, + "end": { + "$date": "2022-04-05T09:31:24.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5eccbd97-64b6-404b-8025-c96dbf58ab21", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-05T03:41:15.000Z" + }, + "end": { + "$date": "2022-04-05T04:11:53.000Z" + }, + "events": [ + { + "uuid": "b9676c9c-baba-410b-a206-bab27b044a8a", + "start": { + "$date": "2022-04-05T03:41:15.000Z" + }, + "end": { + "$date": "2022-04-05T04:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f5b4dd6f-6b62-4231-874d-a81b62f64ac1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-05T04:30:29.000Z" + }, + "end": { + "$date": "2022-04-05T04:30:38.000Z" + }, + "events": [ + { + "uuid": "5a4850b6-5a8d-48cb-ac0a-1b0496d8f5fe", + "start": { + "$date": "2022-04-05T04:30:29.000Z" + }, + "end": { + "$date": "2022-04-05T04:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "188e07cb-fb1d-4efa-b65f-dea2248fed65", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-05T04:37:40.000Z" + }, + "end": { + "$date": "2022-04-05T05:10:02.000Z" + }, + "events": [ + { + "uuid": "142efb15-f1cb-4ab9-ac85-1e6939476986", + "start": { + "$date": "2022-04-05T04:37:40.000Z" + }, + "end": { + "$date": "2022-04-05T05:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8f698e4-bbed-4521-971c-85e8ec6e035c", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-05T05:01:34.000Z" + }, + "end": { + "$date": "2022-04-05T05:14:22.000Z" + }, + "events": [ + { + "uuid": "ed4ebf28-a336-481c-9165-0be1312c0329", + "start": { + "$date": "2022-04-05T05:01:34.000Z" + }, + "end": { + "$date": "2022-04-05T05:14:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a05d399-9939-4c34-90a8-2f59b8ab05ba", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-05T05:17:14.000Z" + }, + "end": { + "$date": "2022-04-05T05:41:30.000Z" + }, + "events": [ + { + "uuid": "20fd889e-4614-458e-a21d-5b3a629054f8", + "start": { + "$date": "2022-04-05T05:17:14.000Z" + }, + "end": { + "$date": "2022-04-05T05:41:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6cad273f-688e-46ee-85da-d9924ccdab8e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-05T05:20:55.000Z" + }, + "end": { + "$date": "2022-04-05T06:27:47.000Z" + }, + "events": [ + { + "uuid": "db22f5c6-89ec-4eda-8657-76534c45ff64", + "start": { + "$date": "2022-04-05T05:20:55.000Z" + }, + "end": { + "$date": "2022-04-05T06:27:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7435e6ae-984e-4a88-afa6-1fae39f2b98f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-05T07:07:33.000Z" + }, + "end": { + "$date": "2022-04-05T07:39:23.000Z" + }, + "events": [ + { + "uuid": "bc8a25dc-e884-42d3-b0f9-3d21a57dee68", + "start": { + "$date": "2022-04-05T07:07:33.000Z" + }, + "end": { + "$date": "2022-04-05T07:39:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1221317-98c4-4032-ada5-d8bc3dd246e3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-05T07:39:49.000Z" + }, + "end": { + "$date": "2022-04-05T07:47:32.000Z" + }, + "events": [ + { + "uuid": "c0a344d3-674d-4fd3-948e-d489854e92f4", + "start": { + "$date": "2022-04-05T07:39:49.000Z" + }, + "end": { + "$date": "2022-04-05T07:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "588a3096-4787-4226-998e-28094537e67a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-05T09:03:40.000Z" + }, + "end": { + "$date": "2022-04-05T09:05:05.000Z" + }, + "events": [ + { + "uuid": "e6e3b12b-3039-4ce9-8c0c-a580c9baebc2", + "start": { + "$date": "2022-04-05T09:03:40.000Z" + }, + "end": { + "$date": "2022-04-05T09:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5eca0cd4-a7d3-4924-b2ce-eb617f137b7a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-05T12:10:37.000Z" + }, + "end": { + "$date": "2022-04-05T12:47:19.000Z" + }, + "events": [ + { + "uuid": "3933c5a5-5ccf-4e6b-9e17-4ddafc023552", + "start": { + "$date": "2022-04-05T12:10:37.000Z" + }, + "end": { + "$date": "2022-04-05T12:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "45fbc714-823b-4bbe-864c-5ec323d90d43", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-05T20:51:32.000Z" + }, + "end": { + "$date": "2022-04-05T21:49:06.000Z" + }, + "events": [ + { + "uuid": "a43bf24a-6d67-42ec-9968-86e73670a33e", + "start": { + "$date": "2022-04-05T20:51:32.000Z" + }, + "end": { + "$date": "2022-04-05T21:49:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "c989559b-f87f-4c16-984c-c9276736a770", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-06T05:58:36.000Z" + }, + "end": { + "$date": "2022-04-06T05:58:56.000Z" + }, + "events": [ + { + "uuid": "5fdc3325-f016-416d-b68d-e802931cb385", + "start": { + "$date": "2022-04-06T05:58:36.000Z" + }, + "end": { + "$date": "2022-04-06T07:19:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f452b99a-f77d-413b-82df-3a50faeffb71", + "start": { + "$date": "2022-04-06T07:19:36.000Z" + }, + "end": { + "$date": "2022-04-06T07:29:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d55f92b-87ba-474f-9bbb-c3253fc940e6", + "start": { + "$date": "2022-04-06T07:29:36.000Z" + }, + "end": { + "$date": "2022-04-06T07:38:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c1e33287-3496-497b-a2ef-b9355fe5426d", + "start": { + "$date": "2022-04-06T07:38:36.000Z" + }, + "end": { + "$date": "2022-04-06T10:06:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e6863797-0eaf-4f3d-a92d-bf0690e7c137", + "start": { + "$date": "2022-04-06T10:06:36.000Z" + }, + "end": { + "$date": "2022-04-06T10:09:36.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30437cb0-3a8d-45bd-82cb-b2a0c08a68b2", + "start": { + "$date": "2022-04-06T10:09:36.000Z" + }, + "end": { + "$date": "2022-04-06T10:24:36.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f327da81-2617-4dcd-bd16-8f30e02b421f", + "start": { + "$date": "2022-04-06T10:24:36.000Z" + }, + "end": { + "$date": "2022-04-06T05:58:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a8522af6-171e-4d7e-98ba-a3ea5f7795d4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-05T22:56:48.000Z" + }, + "end": { + "$date": "2022-04-06T01:01:06.000Z" + }, + "events": [ + { + "uuid": "5e953684-0726-4fc1-abae-d7d0221f57d8", + "start": { + "$date": "2022-04-05T22:56:48.000Z" + }, + "end": { + "$date": "2022-04-06T01:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "cf5704f4-fc45-424d-9578-98c0c512f59d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-05T23:18:00.000Z" + }, + "end": { + "$date": "2022-04-06T08:11:10.000Z" + }, + "events": [ + { + "uuid": "589f6cbf-8762-4314-9593-3c18803ed9b3", + "start": { + "$date": "2022-04-05T23:18:00.000Z" + }, + "end": { + "$date": "2022-04-06T08:11:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8da2cf74-f6ab-4064-ba8b-69ef32306d05", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-05T23:25:44.000Z" + }, + "end": { + "$date": "2022-04-05T23:58:34.000Z" + }, + "events": [ + { + "uuid": "84252709-adcc-4d93-877d-3dfd117f4a8d", + "start": { + "$date": "2022-04-05T23:25:44.000Z" + }, + "end": { + "$date": "2022-04-05T23:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "088bb13d-3b94-4ea3-8abb-e2d95a951720", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-06T00:01:02.000Z" + }, + "end": { + "$date": "2022-04-06T00:34:18.000Z" + }, + "events": [ + { + "uuid": "24fd5031-cf96-484b-82d0-9244e30ff408", + "start": { + "$date": "2022-04-06T00:01:02.000Z" + }, + "end": { + "$date": "2022-04-06T00:34:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ddd298e-3a33-42c6-a1fb-85b2c505a684", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-06T01:41:31.000Z" + }, + "end": { + "$date": "2022-04-06T02:29:41.000Z" + }, + "events": [ + { + "uuid": "e59982be-e162-4598-92a5-3c510c4b33ac", + "start": { + "$date": "2022-04-06T01:41:31.000Z" + }, + "end": { + "$date": "2022-04-06T02:29:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9438b74b-fb0b-4f46-b2a8-fd94f6c604f6", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-06T02:07:21.000Z" + }, + "end": { + "$date": "2022-04-06T02:33:52.000Z" + }, + "events": [ + { + "uuid": "a0a1e3d9-e51f-4a07-aa44-713aeea0a0ae", + "start": { + "$date": "2022-04-06T02:07:21.000Z" + }, + "end": { + "$date": "2022-04-06T02:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "67668dcc-4978-4e7c-8565-27a4007a521b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-06T02:27:08.000Z" + }, + "end": { + "$date": "2022-04-06T03:41:06.000Z" + }, + "events": [ + { + "uuid": "ea027a74-4418-4c07-898b-2a2b66ea5c6e", + "start": { + "$date": "2022-04-06T02:27:08.000Z" + }, + "end": { + "$date": "2022-04-06T03:41:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f353717a-1cac-4338-81a6-9b31580fa4de", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-06T02:42:33.000Z" + }, + "end": { + "$date": "2022-04-06T03:10:30.000Z" + }, + "events": [ + { + "uuid": "9a5e793e-5f2e-48e7-bb2a-d8e840380143", + "start": { + "$date": "2022-04-06T02:42:33.000Z" + }, + "end": { + "$date": "2022-04-06T03:10:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4eed8cb1-d094-4788-baf5-a0620c94ce01", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-06T03:16:05.000Z" + }, + "end": { + "$date": "2022-04-06T03:50:11.000Z" + }, + "events": [ + { + "uuid": "21eee7cf-64fb-44d2-82eb-160955d8e570", + "start": { + "$date": "2022-04-06T03:16:05.000Z" + }, + "end": { + "$date": "2022-04-06T03:50:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d6486dff-1ea2-4a48-b5f2-54527835aee3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-06T03:36:34.000Z" + }, + "end": { + "$date": "2022-04-06T05:29:35.000Z" + }, + "events": [ + { + "uuid": "0474d41b-dcf4-44c3-86d6-52f07511fa1a", + "start": { + "$date": "2022-04-06T03:36:34.000Z" + }, + "end": { + "$date": "2022-04-06T05:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "742038eb-0363-41be-857f-765bc16a4263", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-06T03:45:38.000Z" + }, + "end": { + "$date": "2022-04-06T05:36:46.000Z" + }, + "events": [ + { + "uuid": "d486a64b-15e2-4ad0-96be-0ef80c8a220a", + "start": { + "$date": "2022-04-06T03:45:38.000Z" + }, + "end": { + "$date": "2022-04-06T05:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f338ce4-9e22-4b16-819b-e57552d3e056", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-06T03:55:45.000Z" + }, + "end": { + "$date": "2022-04-06T04:19:59.000Z" + }, + "events": [ + { + "uuid": "4a24202e-7890-43f4-b1fd-c4c050ff7a09", + "start": { + "$date": "2022-04-06T03:55:45.000Z" + }, + "end": { + "$date": "2022-04-06T04:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2393a550-31ef-467c-a6bd-8ea14142a71d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-06T04:28:11.000Z" + }, + "end": { + "$date": "2022-04-06T05:53:14.000Z" + }, + "events": [ + { + "uuid": "43c1e93f-7471-499a-a52e-bc9ca195041a", + "start": { + "$date": "2022-04-06T04:28:11.000Z" + }, + "end": { + "$date": "2022-04-06T05:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cdf9c122-4e4a-436c-a4d4-5d770bc9989c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-06T04:50:06.000Z" + }, + "end": { + "$date": "2022-04-06T05:23:15.000Z" + }, + "events": [ + { + "uuid": "9e1bff3c-718f-4764-95c0-de8dc61c9d91", + "start": { + "$date": "2022-04-06T04:50:06.000Z" + }, + "end": { + "$date": "2022-04-06T05:23:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "49697d5b-ae1a-472b-939e-772dbc6d3b13", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-06T05:43:29.000Z" + }, + "end": { + "$date": "2022-04-06T05:58:31.000Z" + }, + "events": [ + { + "uuid": "4ea3c86c-a52d-4626-a2cf-77195f00d333", + "start": { + "$date": "2022-04-06T05:43:29.000Z" + }, + "end": { + "$date": "2022-04-06T05:58:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c0c3d09-3792-44dc-9da8-a1a9cd6e071e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-06T05:57:14.000Z" + }, + "end": { + "$date": "2022-04-06T06:20:49.000Z" + }, + "events": [ + { + "uuid": "d9e78c69-1a17-4cac-8438-1a1f5078245c", + "start": { + "$date": "2022-04-06T05:57:14.000Z" + }, + "end": { + "$date": "2022-04-06T06:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "e0e68dc8-3b82-4ff3-bb8d-22ba44ee14ff", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-06T08:44:39.000Z" + }, + "end": { + "$date": "2022-04-06T09:20:13.000Z" + }, + "events": [ + { + "uuid": "950bb21b-380a-4825-a1ae-419bb5c228c6", + "start": { + "$date": "2022-04-06T08:44:39.000Z" + }, + "end": { + "$date": "2022-04-06T09:20:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "dee7414e-c240-4093-96fb-5ceb53cd4d8a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-06T14:56:56.000Z" + }, + "end": { + "$date": "2022-04-06T15:02:34.000Z" + }, + "events": [ + { + "uuid": "73796be6-c43d-4609-a8f1-05b356785862", + "start": { + "$date": "2022-04-06T14:56:56.000Z" + }, + "end": { + "$date": "2022-04-06T15:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "683e376b-b92e-46e3-ab7f-1a8234099c2d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-06T18:57:45.000Z" + }, + "end": { + "$date": "2022-04-06T19:18:05.000Z" + }, + "events": [ + { + "uuid": "b2ed3f71-94e8-400f-93a2-ca1514376710", + "start": { + "$date": "2022-04-06T18:57:45.000Z" + }, + "end": { + "$date": "2022-04-06T19:18:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "730dcd07-9733-41ef-90e6-d002f863feb4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-06T17:36:58.000Z" + }, + "end": { + "$date": "2022-04-06T21:47:17.000Z" + }, + "events": [ + { + "uuid": "19f306b8-c5eb-4e8d-88ac-e76a651e9f98", + "start": { + "$date": "2022-04-06T17:36:58.000Z" + }, + "end": { + "$date": "2022-04-06T21:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "705cfa0a-af67-42b2-ab9d-82a30fd5ef20", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-06T19:57:19.000Z" + }, + "end": { + "$date": "2022-04-06T20:34:06.000Z" + }, + "events": [ + { + "uuid": "03b1564a-b05b-41d5-a96d-a1ffa13ed6ff", + "start": { + "$date": "2022-04-06T19:57:19.000Z" + }, + "end": { + "$date": "2022-04-06T20:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3bd23eff-4a4b-4918-8edc-624d6fca5b8b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-06T22:23:52.000Z" + }, + "end": { + "$date": "2022-04-06T23:00:53.000Z" + }, + "events": [ + { + "uuid": "b25fbf10-112a-413c-8edb-f2ae645e110d", + "start": { + "$date": "2022-04-06T22:23:52.000Z" + }, + "end": { + "$date": "2022-04-06T23:00:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a080dfd6-d0e5-4839-aed7-a1f89d400469", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-06T23:49:39.000Z" + }, + "end": { + "$date": "2022-04-07T00:12:05.000Z" + }, + "events": [ + { + "uuid": "7876f6ed-c1dc-4a41-b4ac-224cc1a3f16f", + "start": { + "$date": "2022-04-06T23:49:39.000Z" + }, + "end": { + "$date": "2022-04-07T00:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4e1da60e-8cef-4aff-a5e9-e2057d90e358", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-07T00:17:56.000Z" + }, + "end": { + "$date": "2022-04-07T00:58:52.000Z" + }, + "events": [ + { + "uuid": "c86d71a7-80f1-44d7-a8e2-85cdf9f9d3d3", + "start": { + "$date": "2022-04-07T00:17:56.000Z" + }, + "end": { + "$date": "2022-04-07T00:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "37c0ed3a-91cf-45ba-97d1-ce03d46afc83", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-07T00:32:54.000Z" + }, + "end": { + "$date": "2022-04-07T04:30:27.000Z" + }, + "events": [ + { + "uuid": "f07b1149-2cd1-4530-8793-95a45124b777", + "start": { + "$date": "2022-04-07T00:32:54.000Z" + }, + "end": { + "$date": "2022-04-07T04:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "5df32051-f7d6-4afb-90fb-40302db185be", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-07T01:17:09.000Z" + }, + "end": { + "$date": "2022-04-07T01:43:35.000Z" + }, + "events": [ + { + "uuid": "e5286287-b8fc-4702-a371-c68e6b9638af", + "start": { + "$date": "2022-04-07T01:17:09.000Z" + }, + "end": { + "$date": "2022-04-07T01:43:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "be039dd1-9794-4882-a91d-a9bddfa441e7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-07T03:27:00.000Z" + }, + "end": { + "$date": "2022-04-07T03:27:22.000Z" + }, + "events": [ + { + "uuid": "f5841d3e-ca29-414e-a619-26f63c46f1cc", + "start": { + "$date": "2022-04-07T03:27:00.000Z" + }, + "end": { + "$date": "2022-04-07T03:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "853b2d52-42f6-43d6-81c4-ff06ce37e879", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-07T01:44:01.000Z" + }, + "end": { + "$date": "2022-04-07T02:07:23.000Z" + }, + "events": [ + { + "uuid": "3386beea-2500-4f85-8b62-fbba09a7d97c", + "start": { + "$date": "2022-04-07T01:44:01.000Z" + }, + "end": { + "$date": "2022-04-07T02:07:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6421bbce-3d6c-4c66-9dba-82d3f9cd286f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-07T02:07:36.000Z" + }, + "end": { + "$date": "2022-04-07T04:00:13.000Z" + }, + "events": [ + { + "uuid": "2e19e5d1-6d5d-448f-9f47-00d9dba8de43", + "start": { + "$date": "2022-04-07T02:07:36.000Z" + }, + "end": { + "$date": "2022-04-07T04:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "c3b0ecb1-6ac9-4247-91ce-8080c1b862e6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-07T02:08:23.000Z" + }, + "end": { + "$date": "2022-04-07T03:13:45.000Z" + }, + "events": [ + { + "uuid": "96e017f0-3594-464c-8df3-4febcf246b80", + "start": { + "$date": "2022-04-07T02:08:23.000Z" + }, + "end": { + "$date": "2022-04-07T03:13:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "50f69bd6-61c7-44e0-9356-b52c431c16a6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-07T02:57:32.000Z" + }, + "end": { + "$date": "2022-04-07T03:01:18.000Z" + }, + "events": [ + { + "uuid": "d827bae9-3d3a-45ee-a352-0400054f6914", + "start": { + "$date": "2022-04-07T02:57:32.000Z" + }, + "end": { + "$date": "2022-04-07T03:01:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f936d571-e2f3-4591-b150-a98556075e61", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-07T03:14:21.000Z" + }, + "end": { + "$date": "2022-04-07T05:48:15.000Z" + }, + "events": [ + { + "uuid": "991c7490-dbcb-4fb6-9f3d-c10228f7f277", + "start": { + "$date": "2022-04-07T03:14:21.000Z" + }, + "end": { + "$date": "2022-04-07T05:48:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d26883f8-6265-4fa4-9e2d-f32e07777cfa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-07T03:30:22.000Z" + }, + "end": { + "$date": "2022-04-07T06:46:23.000Z" + }, + "events": [ + { + "uuid": "e408d5e7-7991-46ff-9078-e3579317b826", + "start": { + "$date": "2022-04-07T03:30:22.000Z" + }, + "end": { + "$date": "2022-04-07T06:46:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67a5b033-1120-420b-9a59-85d66b587ac5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T03:53:56.000Z" + }, + "end": { + "$date": "2022-04-07T04:19:59.000Z" + }, + "events": [ + { + "uuid": "4b325232-e7bd-494c-9a69-076a0e74c674", + "start": { + "$date": "2022-04-07T03:53:56.000Z" + }, + "end": { + "$date": "2022-04-07T04:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e285b195-60a9-473b-81b4-20a59a5a1fcb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T04:28:10.000Z" + }, + "end": { + "$date": "2022-04-07T05:00:49.000Z" + }, + "events": [ + { + "uuid": "f0dce967-26c7-47b7-914d-50c12b5c4dd7", + "start": { + "$date": "2022-04-07T04:28:10.000Z" + }, + "end": { + "$date": "2022-04-07T05:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "d0d248f4-7a3a-41dc-b1a1-e88a848da6b3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-07T04:38:53.000Z" + }, + "end": { + "$date": "2022-04-07T04:53:08.000Z" + }, + "events": [ + { + "uuid": "d16229bd-a68c-4d8f-a3c8-13c03d979caa", + "start": { + "$date": "2022-04-07T04:38:53.000Z" + }, + "end": { + "$date": "2022-04-07T04:53:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eff1acfa-8216-44bd-bce0-bff6a429e876", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-07T04:51:31.000Z" + }, + "end": { + "$date": "2022-04-07T05:22:27.000Z" + }, + "events": [ + { + "uuid": "852d06ca-4da5-49cd-ab5e-9aca0ea884e4", + "start": { + "$date": "2022-04-07T04:51:31.000Z" + }, + "end": { + "$date": "2022-04-07T05:22:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "e73231e3-2297-4c47-93d3-a3e6a1951ee4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-07T04:54:18.000Z" + }, + "end": { + "$date": "2022-04-07T05:33:58.000Z" + }, + "events": [ + { + "uuid": "773dc8e7-03c2-4bbc-a14b-89d9a35a4409", + "start": { + "$date": "2022-04-07T04:54:18.000Z" + }, + "end": { + "$date": "2022-04-07T05:33:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c340229a-2b22-4b71-ae41-2e37acf53166", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T05:02:48.000Z" + }, + "end": { + "$date": "2022-04-07T05:35:53.000Z" + }, + "events": [ + { + "uuid": "305ca81a-436c-4946-8b45-97c0dfe495ab", + "start": { + "$date": "2022-04-07T05:02:48.000Z" + }, + "end": { + "$date": "2022-04-07T05:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "9da88fec-06f4-46c2-8e04-28045a9bb62d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-07T05:31:34.000Z" + }, + "end": { + "$date": "2022-04-07T07:36:38.000Z" + }, + "events": [ + { + "uuid": "a344e6a6-b4b9-463f-ba07-163fce1b0304", + "start": { + "$date": "2022-04-07T05:31:34.000Z" + }, + "end": { + "$date": "2022-04-07T07:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8aa740ce-21d8-4f12-8433-1a9ef682e23d", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-07T05:34:17.000Z" + }, + "end": { + "$date": "2022-04-07T05:54:54.000Z" + }, + "events": [ + { + "uuid": "fc68cbb1-22dc-4416-9135-41d09d5921f7", + "start": { + "$date": "2022-04-07T05:34:17.000Z" + }, + "end": { + "$date": "2022-04-07T05:54:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "559b64ec-974b-4a1c-9c97-8dbab7a3ec80", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T05:39:31.000Z" + }, + "end": { + "$date": "2022-04-07T06:12:51.000Z" + }, + "events": [ + { + "uuid": "448441bf-3209-4b71-a005-c9a2a7578f82", + "start": { + "$date": "2022-04-07T05:39:31.000Z" + }, + "end": { + "$date": "2022-04-07T06:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5393946-f282-4816-b121-dd24a0bfc348", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-07T05:54:43.000Z" + }, + "end": { + "$date": "2022-04-07T06:19:40.000Z" + }, + "events": [ + { + "uuid": "c5b4921a-0008-4895-99f3-b48dfbda9cdf", + "start": { + "$date": "2022-04-07T05:54:43.000Z" + }, + "end": { + "$date": "2022-04-07T06:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c342141-9b93-464f-8172-61cffd47e01a", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-07T05:57:18.000Z" + }, + "end": { + "$date": "2022-04-07T06:29:35.000Z" + }, + "events": [ + { + "uuid": "abb5fa04-af3b-472b-b870-a0e532f8436c", + "start": { + "$date": "2022-04-07T05:57:18.000Z" + }, + "end": { + "$date": "2022-04-07T06:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24994b2a-2286-4a17-9b87-6e00d29e060f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T06:15:44.000Z" + }, + "end": { + "$date": "2022-04-07T06:16:57.000Z" + }, + "events": [ + { + "uuid": "fbc6396b-625d-4024-a38b-b24a484633c5", + "start": { + "$date": "2022-04-07T06:15:44.000Z" + }, + "end": { + "$date": "2022-04-07T06:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1df5fd97-d8e1-4af1-a52e-25907dc1f47a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T06:18:40.000Z" + }, + "end": { + "$date": "2022-04-07T06:48:43.000Z" + }, + "events": [ + { + "uuid": "3411841c-1ad2-41a3-88e6-0e50a93d53b6", + "start": { + "$date": "2022-04-07T06:18:40.000Z" + }, + "end": { + "$date": "2022-04-07T06:48:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "403b9a15-ba19-4547-92fb-d445496dc3f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-07T06:24:59.000Z" + }, + "end": { + "$date": "2022-04-07T07:15:42.000Z" + }, + "events": [ + { + "uuid": "81dd6525-3b25-4b57-b5a0-c73fd1e9baf6", + "start": { + "$date": "2022-04-07T06:24:59.000Z" + }, + "end": { + "$date": "2022-04-07T07:15:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0670bae5-14a2-4117-87b4-a7e4d1185bef", + "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "start": { + "$date": "2022-04-07T06:34:09.000Z" + }, + "end": { + "$date": "2022-04-07T06:55:01.000Z" + }, + "events": [ + { + "uuid": "8d4c8d0d-9ab4-4fb1-bd0f-ae9447b6e575", + "start": { + "$date": "2022-04-07T06:34:09.000Z" + }, + "end": { + "$date": "2022-04-07T06:55:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b5edbaca-7131-4c52-bd6a-4e8b74f6cf9b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-07T07:35:25.000Z" + }, + "end": { + "$date": "2022-04-07T07:49:21.000Z" + }, + "events": [ + { + "uuid": "da14a02a-ed1a-46a6-8fa3-ccb821f9086c", + "start": { + "$date": "2022-04-07T07:35:25.000Z" + }, + "end": { + "$date": "2022-04-07T07:45:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6beb3c25-8a8d-472b-b456-5e63a792148d", + "start": { + "$date": "2022-04-07T07:45:25.000Z" + }, + "end": { + "$date": "2022-04-07T07:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "944506ec-536e-42da-b7da-008438ad8c3d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-07T12:59:55.000Z" + }, + "end": { + "$date": "2022-04-07T13:13:58.000Z" + }, + "events": [ + { + "uuid": "0e36908c-fd52-446f-a3b3-d0c9d9362672", + "start": { + "$date": "2022-04-07T12:59:55.000Z" + }, + "end": { + "$date": "2022-04-07T13:13:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "c8e40835-579f-455c-8b6d-a30eac11b667", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-07T16:51:02.000Z" + }, + "end": { + "$date": "2022-04-08T04:26:39.000Z" + }, + "events": [ + { + "uuid": "1fa71a03-020e-47a9-a473-838dab9bea61", + "start": { + "$date": "2022-04-07T16:51:02.000Z" + }, + "end": { + "$date": "2022-04-08T04:26:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c688a564-3bab-43e4-a3da-07074d1d6447", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-08T00:06:01.000Z" + }, + "end": { + "$date": "2022-04-08T00:57:36.000Z" + }, + "events": [ + { + "uuid": "39ddc8e6-b324-4487-87e4-c77d23afecff", + "start": { + "$date": "2022-04-08T00:06:01.000Z" + }, + "end": { + "$date": "2022-04-08T00:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "825e8f05-0781-4f55-86c1-45a5b5feb2e3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-08T00:57:57.000Z" + }, + "end": { + "$date": "2022-04-08T03:40:42.000Z" + }, + "events": [ + { + "uuid": "8821dfd4-4f2f-42c2-a9fd-2f2bce1f687b", + "start": { + "$date": "2022-04-08T00:57:57.000Z" + }, + "end": { + "$date": "2022-04-08T03:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ea2381d3-5f4c-4656-80fb-e07fd19acef6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-08T01:15:00.000Z" + }, + "end": { + "$date": "2022-04-08T01:54:52.000Z" + }, + "events": [ + { + "uuid": "fe989035-8107-43df-853f-f776560150cf", + "start": { + "$date": "2022-04-08T01:15:00.000Z" + }, + "end": { + "$date": "2022-04-08T01:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a5e09928-7454-4909-8f77-470c108690d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-08T01:55:22.000Z" + }, + "end": { + "$date": "2022-04-08T01:56:45.000Z" + }, + "events": [ + { + "uuid": "5ab15eed-0433-4ae4-a96d-7159c414204e", + "start": { + "$date": "2022-04-08T01:55:22.000Z" + }, + "end": { + "$date": "2022-04-08T01:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "418aebc8-a0a9-4ff8-8513-a5737c6bbca5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-08T02:31:18.000Z" + }, + "end": { + "$date": "2022-04-08T03:02:37.000Z" + }, + "events": [ + { + "uuid": "3cff6de8-318c-4d8e-81a0-317e33739282", + "start": { + "$date": "2022-04-08T02:31:18.000Z" + }, + "end": { + "$date": "2022-04-08T03:02:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "25b6fe3a-97cd-43c6-a8bc-963213ba7f71", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-08T02:37:54.000Z" + }, + "end": { + "$date": "2022-04-08T04:40:06.000Z" + }, + "events": [ + { + "uuid": "6428d690-dde6-4d7d-86f8-a94171cc91c3", + "start": { + "$date": "2022-04-08T02:37:54.000Z" + }, + "end": { + "$date": "2022-04-08T04:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e11eb85d-d84b-4423-aba1-bbf9fcaf000e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T02:43:37.000Z" + }, + "end": { + "$date": "2022-04-08T03:05:19.000Z" + }, + "events": [ + { + "uuid": "cf21c299-a4af-4553-b481-06c57486b6ec", + "start": { + "$date": "2022-04-08T02:43:37.000Z" + }, + "end": { + "$date": "2022-04-08T03:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5067fa86-9572-4180-ad4d-d9f7b4479c5f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-08T03:00:57.000Z" + }, + "end": { + "$date": "2022-04-08T05:54:49.000Z" + }, + "events": [ + { + "uuid": "3daba608-cc5e-4d0c-8b96-55a708a5bcdf", + "start": { + "$date": "2022-04-08T03:00:57.000Z" + }, + "end": { + "$date": "2022-04-08T05:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a68ea29-3832-416b-953d-0a6e7eee0fb3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-08T03:03:47.000Z" + }, + "end": { + "$date": "2022-04-08T03:35:31.000Z" + }, + "events": [ + { + "uuid": "3d5d11d9-e4ed-4501-804c-6d7a9e011ac1", + "start": { + "$date": "2022-04-08T03:03:47.000Z" + }, + "end": { + "$date": "2022-04-08T03:35:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1702bf36-b590-41ce-9f62-cd48d3863e49", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T03:06:10.000Z" + }, + "end": { + "$date": "2022-04-08T03:43:14.000Z" + }, + "events": [ + { + "uuid": "81698503-9a68-4965-a10a-452470519c74", + "start": { + "$date": "2022-04-08T03:06:10.000Z" + }, + "end": { + "$date": "2022-04-08T03:43:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9326d7a6-cba9-476c-af29-cd01ddf12eca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-08T03:37:11.000Z" + }, + "end": { + "$date": "2022-04-08T04:13:29.000Z" + }, + "events": [ + { + "uuid": "7575c4a9-dbe7-4230-ba70-495c92383304", + "start": { + "$date": "2022-04-08T03:37:11.000Z" + }, + "end": { + "$date": "2022-04-08T04:13:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "58535ee6-a85d-4a08-afa9-0c24abc2afd4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T03:45:47.000Z" + }, + "end": { + "$date": "2022-04-08T04:13:23.000Z" + }, + "events": [ + { + "uuid": "d009ab42-055d-4694-b7b0-a2e7b1346669", + "start": { + "$date": "2022-04-08T03:45:47.000Z" + }, + "end": { + "$date": "2022-04-08T04:13:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "569f6680-1a6a-46c2-8848-c188a7d73641", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T04:29:07.000Z" + }, + "end": { + "$date": "2022-04-08T04:41:28.000Z" + }, + "events": [ + { + "uuid": "6b8e4034-666a-4597-b8b2-5e9b67046101", + "start": { + "$date": "2022-04-08T04:29:07.000Z" + }, + "end": { + "$date": "2022-04-08T04:41:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "03fd11cb-a2c7-48a8-acb2-34dd2ebb1bec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T04:42:55.000Z" + }, + "end": { + "$date": "2022-04-08T05:15:10.000Z" + }, + "events": [ + { + "uuid": "dac9a909-bd95-433d-bd20-4207dd480db2", + "start": { + "$date": "2022-04-08T04:42:55.000Z" + }, + "end": { + "$date": "2022-04-08T05:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "46bdcf84-92f9-4fce-ade6-04408d5056b7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T05:22:31.000Z" + }, + "end": { + "$date": "2022-04-08T05:44:20.000Z" + }, + "events": [ + { + "uuid": "f78f6733-ec63-4892-a361-aa45c7975dd7", + "start": { + "$date": "2022-04-08T05:22:31.000Z" + }, + "end": { + "$date": "2022-04-08T05:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e59fd391-daa8-4732-bc0d-02eff13b54ca", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T05:46:28.000Z" + }, + "end": { + "$date": "2022-04-08T06:05:59.000Z" + }, + "events": [ + { + "uuid": "003fc53c-7cd6-4f79-80b8-459b1347e01a", + "start": { + "$date": "2022-04-08T05:46:28.000Z" + }, + "end": { + "$date": "2022-04-08T06:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b79680dc-cb80-445c-8488-602fab466723", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T06:08:14.000Z" + }, + "end": { + "$date": "2022-04-08T06:43:03.000Z" + }, + "events": [ + { + "uuid": "016964f3-c3d0-4c3f-adaa-5c476c9e6fc7", + "start": { + "$date": "2022-04-08T06:08:14.000Z" + }, + "end": { + "$date": "2022-04-08T06:43:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "5bf7c26f-a0cd-4d55-9373-4549e684b244", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-08T07:12:55.000Z" + }, + "end": { + "$date": "2022-04-08T08:43:17.000Z" + }, + "events": [ + { + "uuid": "c929ee24-e94f-4b22-b4ea-8c4cd8225c29", + "start": { + "$date": "2022-04-08T07:12:55.000Z" + }, + "end": { + "$date": "2022-04-08T08:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "06d39b95-07fc-4a88-903c-0b5a80f16cb1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T19:15:50.000Z" + }, + "end": { + "$date": "2022-04-08T19:48:34.000Z" + }, + "events": [ + { + "uuid": "4999a373-1329-4676-82ca-6208d2f9b9a4", + "start": { + "$date": "2022-04-08T19:15:50.000Z" + }, + "end": { + "$date": "2022-04-08T19:48:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "75beaec5-ea68-43e1-bcb0-50ead2b7681d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-08T22:44:03.000Z" + }, + "end": { + "$date": "2022-04-09T04:24:44.000Z" + }, + "events": [ + { + "uuid": "7fdf82ca-c85a-4144-99c3-5cc5a36d1eab", + "start": { + "$date": "2022-04-08T22:44:03.000Z" + }, + "end": { + "$date": "2022-04-09T03:34:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1a7964a-fece-4f5d-8617-8972961a84d0", + "start": { + "$date": "2022-04-09T03:34:03.000Z" + }, + "end": { + "$date": "2022-04-09T03:58:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f55e028-6eaa-4487-a2f9-0737356b2f8b", + "start": { + "$date": "2022-04-09T03:58:03.000Z" + }, + "end": { + "$date": "2022-04-09T04:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d2fe222c-d612-41c2-84e2-02b21e35ee0b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-08T23:23:06.000Z" + }, + "end": { + "$date": "2022-04-09T04:07:51.000Z" + }, + "events": [ + { + "uuid": "b780806d-7788-4568-9f52-7f267286502a", + "start": { + "$date": "2022-04-08T23:23:06.000Z" + }, + "end": { + "$date": "2022-04-09T04:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2a644e4-d84a-4fc8-a4c0-94f1e8c65b75", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-08T23:28:32.000Z" + }, + "end": { + "$date": "2022-04-08T23:57:39.000Z" + }, + "events": [ + { + "uuid": "e47b108c-4f88-4900-918f-866ce6df0b92", + "start": { + "$date": "2022-04-08T23:28:32.000Z" + }, + "end": { + "$date": "2022-04-08T23:57:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9207647d-2347-4235-88c9-838a51fcbd75", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-08T23:45:29.000Z" + }, + "end": { + "$date": "2022-04-09T00:50:47.000Z" + }, + "events": [ + { + "uuid": "553b7a8f-2645-4f71-aa0f-fbd1019ffdc5", + "start": { + "$date": "2022-04-08T23:45:29.000Z" + }, + "end": { + "$date": "2022-04-09T00:50:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "338b6698-24c5-460f-b6cf-5d387d0eb4e3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-09T00:17:10.000Z" + }, + "end": { + "$date": "2022-04-09T00:23:40.000Z" + }, + "events": [ + { + "uuid": "f4340c37-ce40-44e3-b785-3ee91fdece77", + "start": { + "$date": "2022-04-09T00:17:10.000Z" + }, + "end": { + "$date": "2022-04-09T00:23:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "eeccaf3b-c84b-4643-8192-5d2a6ebc6b09", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-09T00:26:39.000Z" + }, + "end": { + "$date": "2022-04-09T01:51:23.000Z" + }, + "events": [ + { + "uuid": "98cd31e1-d5a0-499a-8188-42a765dcc009", + "start": { + "$date": "2022-04-09T00:26:39.000Z" + }, + "end": { + "$date": "2022-04-09T01:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bcb9019-e6ee-4532-9046-91749b11bcad", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T01:02:33.000Z" + }, + "end": { + "$date": "2022-04-09T01:30:06.000Z" + }, + "events": [ + { + "uuid": "0410d73a-5cb6-495b-98c5-6d4e3ea489a4", + "start": { + "$date": "2022-04-09T01:02:33.000Z" + }, + "end": { + "$date": "2022-04-09T01:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "986f3079-aba4-4525-8aa0-fbaa3d2983c0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T01:33:21.000Z" + }, + "end": { + "$date": "2022-04-09T01:48:17.000Z" + }, + "events": [ + { + "uuid": "d74bc3b3-9db7-48e4-937d-576e809388b2", + "start": { + "$date": "2022-04-09T01:33:21.000Z" + }, + "end": { + "$date": "2022-04-09T01:48:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9bc42a47-691b-445a-96d4-724d5742db02", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T01:53:33.000Z" + }, + "end": { + "$date": "2022-04-09T02:06:29.000Z" + }, + "events": [ + { + "uuid": "e9173471-3349-48ac-b33d-eae460878182", + "start": { + "$date": "2022-04-09T01:53:33.000Z" + }, + "end": { + "$date": "2022-04-09T02:06:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "6d0aded2-a5a0-4cec-bd53-b4c401603df4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-09T01:51:53.000Z" + }, + "end": { + "$date": "2022-04-09T02:13:21.000Z" + }, + "events": [ + { + "uuid": "60848eb4-e3d4-40dc-9765-2e7dafc3ca78", + "start": { + "$date": "2022-04-09T01:51:53.000Z" + }, + "end": { + "$date": "2022-04-09T02:05:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "78d1d276-4c9d-44c7-b069-4257883a6dbe", + "start": { + "$date": "2022-04-09T02:05:53.000Z" + }, + "end": { + "$date": "2022-04-09T02:10:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f150459e-e386-4e1d-bbbc-f6f0d961196b", + "start": { + "$date": "2022-04-09T02:10:53.000Z" + }, + "end": { + "$date": "2022-04-09T02:13:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b789a7bc-1587-43a4-8677-35fdabca3111", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-09T02:03:41.000Z" + }, + "end": { + "$date": "2022-04-09T03:06:43.000Z" + }, + "events": [ + { + "uuid": "ef3fa42f-1ea7-4b88-abba-e72910bbb37a", + "start": { + "$date": "2022-04-09T02:03:41.000Z" + }, + "end": { + "$date": "2022-04-09T03:06:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8c3ee94f-2b7d-43bb-9ef8-852367cbec25", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T02:03:43.000Z" + }, + "end": { + "$date": "2022-04-09T03:09:00.000Z" + }, + "events": [ + { + "uuid": "7ee95dca-8a3f-4719-b65d-27380f645926", + "start": { + "$date": "2022-04-09T02:03:43.000Z" + }, + "end": { + "$date": "2022-04-09T03:09:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b9cd5f6d-c042-4e3c-9db9-ba02513646c1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T02:42:57.000Z" + }, + "end": { + "$date": "2022-04-09T02:58:48.000Z" + }, + "events": [ + { + "uuid": "c8d73ea1-a8ed-4240-be11-f6a5fad07457", + "start": { + "$date": "2022-04-09T02:42:57.000Z" + }, + "end": { + "$date": "2022-04-09T02:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "5fe13952-8d41-4275-97aa-a4be15c3439c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-09T02:44:04.000Z" + }, + "end": { + "$date": "2022-04-09T04:34:34.000Z" + }, + "events": [ + { + "uuid": "8e931347-a2f1-4329-b7e5-a3570bacc664", + "start": { + "$date": "2022-04-09T02:44:04.000Z" + }, + "end": { + "$date": "2022-04-09T04:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "db22d267-0e11-42b1-8010-f7e34cd44a47", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T03:13:35.000Z" + }, + "end": { + "$date": "2022-04-09T03:42:28.000Z" + }, + "events": [ + { + "uuid": "68cf2348-de76-482c-9c6c-d84e63bc49c1", + "start": { + "$date": "2022-04-09T03:13:35.000Z" + }, + "end": { + "$date": "2022-04-09T03:42:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4d09c85d-79b3-4079-bdd1-dfde026035b0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-09T03:29:24.000Z" + }, + "end": { + "$date": "2022-04-09T03:34:49.000Z" + }, + "events": [ + { + "uuid": "4a732e2d-08fe-42e8-a225-0ade79c0e9b3", + "start": { + "$date": "2022-04-09T03:29:24.000Z" + }, + "end": { + "$date": "2022-04-09T03:34:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "45ff620c-f77d-4bc5-a019-a8d2c9eb1964", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-09T03:36:09.000Z" + }, + "end": { + "$date": "2022-04-09T05:42:09.000Z" + }, + "events": [ + { + "uuid": "404ddaf6-6719-4517-8f41-b7b3715e1a5e", + "start": { + "$date": "2022-04-09T03:36:09.000Z" + }, + "end": { + "$date": "2022-04-09T05:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d9da87dc-c057-4d3d-a487-df14f24dd9f8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T03:43:03.000Z" + }, + "end": { + "$date": "2022-04-09T04:29:57.000Z" + }, + "events": [ + { + "uuid": "be51df9a-847f-413b-b35e-ca382df01d5e", + "start": { + "$date": "2022-04-09T03:43:03.000Z" + }, + "end": { + "$date": "2022-04-09T04:29:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "4aa21d2c-d30c-4154-a372-c4161a4e5b34", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-09T04:08:35.000Z" + }, + "end": { + "$date": "2022-04-09T04:10:32.000Z" + }, + "events": [ + { + "uuid": "69b5c090-6d75-44fd-81e0-3307e1ac22ad", + "start": { + "$date": "2022-04-09T04:08:35.000Z" + }, + "end": { + "$date": "2022-04-09T04:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "9c4512a3-0f06-4c7f-874f-7a1c074ea004", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-09T04:11:16.000Z" + }, + "end": { + "$date": "2022-04-09T04:12:12.000Z" + }, + "events": [ + { + "uuid": "f0c63b1c-f384-4c42-a3a4-38cc062c41c9", + "start": { + "$date": "2022-04-09T04:11:16.000Z" + }, + "end": { + "$date": "2022-04-09T04:12:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cccb8082-1a02-4d4f-b082-a76f4e57bf2b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T04:32:57.000Z" + }, + "end": { + "$date": "2022-04-09T05:07:47.000Z" + }, + "events": [ + { + "uuid": "9f68b338-0472-41c4-a449-7fbb33e5e446", + "start": { + "$date": "2022-04-09T04:32:57.000Z" + }, + "end": { + "$date": "2022-04-09T05:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "26c703ed-2e18-4003-946c-3b1433c89f1d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-09T04:34:03.000Z" + }, + "end": { + "$date": "2022-04-09T04:36:05.000Z" + }, + "events": [ + { + "uuid": "3b301c4a-f771-4c3b-b4fd-bfd1dfe9af1c", + "start": { + "$date": "2022-04-09T04:34:03.000Z" + }, + "end": { + "$date": "2022-04-09T04:36:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "12c3b029-d5da-4735-b6c3-75946df230cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-09T04:35:14.000Z" + }, + "end": { + "$date": "2022-04-09T04:55:40.000Z" + }, + "events": [ + { + "uuid": "e1ddd345-718c-4798-b89c-22f42f34c108", + "start": { + "$date": "2022-04-09T04:35:14.000Z" + }, + "end": { + "$date": "2022-04-09T04:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "36ffb974-533e-47dd-9b3a-c8862327aafa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-09T04:36:38.000Z" + }, + "end": { + "$date": "2022-04-09T04:43:06.000Z" + }, + "events": [ + { + "uuid": "bf79dd21-683a-408b-af68-242d024e215d", + "start": { + "$date": "2022-04-09T04:36:38.000Z" + }, + "end": { + "$date": "2022-04-09T04:43:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a954ccdf-5acd-43e9-bbf1-a3c447c0c59f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-09T04:56:00.000Z" + }, + "end": { + "$date": "2022-04-09T07:30:15.000Z" + }, + "events": [ + { + "uuid": "743e6bc3-ccdb-47e8-83b2-9d016e7d0495", + "start": { + "$date": "2022-04-09T04:56:00.000Z" + }, + "end": { + "$date": "2022-04-09T07:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a9d19c13-7153-4c2c-baf4-443b6ded41b5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-09T05:16:28.000Z" + }, + "end": { + "$date": "2022-04-09T05:20:34.000Z" + }, + "events": [ + { + "uuid": "12d5fc46-6a20-422a-b47b-ba9cb3abbf18", + "start": { + "$date": "2022-04-09T05:16:28.000Z" + }, + "end": { + "$date": "2022-04-09T05:20:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "50e8c650-03d3-4b46-9cc0-7b7921e90295", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-09T05:20:49.000Z" + }, + "end": { + "$date": "2022-04-09T08:08:32.000Z" + }, + "events": [ + { + "uuid": "b2a76b88-5a58-455a-b81e-008d2241c34e", + "start": { + "$date": "2022-04-09T05:20:49.000Z" + }, + "end": { + "$date": "2022-04-09T08:08:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3e8186b4-df1d-4b52-90c6-96d3463f1e33", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T05:39:50.000Z" + }, + "end": { + "$date": "2022-04-09T06:04:41.000Z" + }, + "events": [ + { + "uuid": "8f84d7b4-efd1-4a7f-bf05-7b220088726c", + "start": { + "$date": "2022-04-09T05:39:50.000Z" + }, + "end": { + "$date": "2022-04-09T06:04:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "753a1874-9198-4b34-b6fb-930243781227", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-09T05:43:00.000Z" + }, + "end": { + "$date": "2022-04-09T07:07:25.000Z" + }, + "events": [ + { + "uuid": "70283cfd-7347-4c03-94ad-5409cbc4b554", + "start": { + "$date": "2022-04-09T05:43:00.000Z" + }, + "end": { + "$date": "2022-04-09T07:07:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e68d7f79-7e02-4b9c-be64-d3cff51c4fe2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-09T06:12:17.000Z" + }, + "end": { + "$date": "2022-04-09T06:46:11.000Z" + }, + "events": [ + { + "uuid": "791f5dd8-9e41-40bb-89ed-fdaf95257a34", + "start": { + "$date": "2022-04-09T06:12:17.000Z" + }, + "end": { + "$date": "2022-04-09T06:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "70ed60be-8be2-47c8-b84b-4be0916250a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T06:11:57.000Z" + }, + "end": { + "$date": "2022-04-09T07:08:09.000Z" + }, + "events": [ + { + "uuid": "413170da-d55a-4179-9a40-0ff2c38d8319", + "start": { + "$date": "2022-04-09T06:11:57.000Z" + }, + "end": { + "$date": "2022-04-09T07:08:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "2f92f499-fe28-4861-bc2e-0909908d7e8c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-09T06:41:52.000Z" + }, + "end": { + "$date": "2022-04-09T08:43:38.000Z" + }, + "events": [ + { + "uuid": "f82ae600-da8c-4f76-a8c2-48fa10c8a6f5", + "start": { + "$date": "2022-04-09T06:41:52.000Z" + }, + "end": { + "$date": "2022-04-09T08:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7d38a8a-5147-435d-aed0-53f2bea86a34", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-09T07:21:13.000Z" + }, + "end": { + "$date": "2022-04-09T08:49:06.000Z" + }, + "events": [ + { + "uuid": "de380524-5547-4acd-b384-0e8678f3bc6a", + "start": { + "$date": "2022-04-09T07:21:13.000Z" + }, + "end": { + "$date": "2022-04-09T08:49:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "91c94be0-a45e-4ba8-9914-98ec50f407e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T07:40:50.000Z" + }, + "end": { + "$date": "2022-04-09T08:08:45.000Z" + }, + "events": [ + { + "uuid": "67b3a180-9456-410f-92d2-3ff2c5d235a0", + "start": { + "$date": "2022-04-09T07:40:50.000Z" + }, + "end": { + "$date": "2022-04-09T08:08:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "98291d7f-9624-495e-8a0c-61e175cb1fb6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-09T15:25:20.000Z" + }, + "end": { + "$date": "2022-04-09T21:12:55.000Z" + }, + "events": [ + { + "uuid": "f630669c-07f8-4b32-9e70-31610e10282b", + "start": { + "$date": "2022-04-09T15:25:20.000Z" + }, + "end": { + "$date": "2022-04-09T21:12:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f7c763ea-f86a-4a5e-bec9-8c233fb64dec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T15:43:25.000Z" + }, + "end": { + "$date": "2022-04-09T16:11:46.000Z" + }, + "events": [ + { + "uuid": "f70268fe-a28c-4e72-93c1-e3d421416a57", + "start": { + "$date": "2022-04-09T15:43:25.000Z" + }, + "end": { + "$date": "2022-04-09T16:11:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e0e4a13f-de55-4e87-8488-817251eaf412", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-09T20:13:58.000Z" + }, + "end": { + "$date": "2022-04-09T21:50:55.000Z" + }, + "events": [ + { + "uuid": "5a52caff-dcfb-44c6-9ca4-e9a98ac257e0", + "start": { + "$date": "2022-04-09T20:13:58.000Z" + }, + "end": { + "$date": "2022-04-09T21:50:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "af6690ae-1c10-4553-bf00-73bec1101cc9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T20:21:05.000Z" + }, + "end": { + "$date": "2022-04-09T21:12:47.000Z" + }, + "events": [ + { + "uuid": "1e164845-f476-476d-a428-b968e18ee7a1", + "start": { + "$date": "2022-04-09T20:21:05.000Z" + }, + "end": { + "$date": "2022-04-09T21:12:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "27db9039-686d-458d-8aae-b1b0e113d35c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T21:13:01.000Z" + }, + "end": { + "$date": "2022-04-09T21:51:03.000Z" + }, + "events": [ + { + "uuid": "32e54d9f-43a9-45fd-a608-5d679062597d", + "start": { + "$date": "2022-04-09T21:13:01.000Z" + }, + "end": { + "$date": "2022-04-09T21:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "542041ef-9044-4ba3-b8a3-83d02c909a84", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T22:42:50.000Z" + }, + "end": { + "$date": "2022-04-09T22:53:51.000Z" + }, + "events": [ + { + "uuid": "d3936bf8-e7a2-49e8-805d-573ff8dbc025", + "start": { + "$date": "2022-04-09T22:42:50.000Z" + }, + "end": { + "$date": "2022-04-09T22:53:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e5bd88d2-50eb-4193-85a2-44159e583129", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-09T22:53:13.000Z" + }, + "end": { + "$date": "2022-04-10T01:03:23.000Z" + }, + "events": [ + { + "uuid": "898e6244-80c4-4959-adfe-a274d1a18f7b", + "start": { + "$date": "2022-04-09T22:53:13.000Z" + }, + "end": { + "$date": "2022-04-10T01:03:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ee52a32a-9f70-4ae0-91e4-2b325bcf023c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-09T22:54:46.000Z" + }, + "end": { + "$date": "2022-04-10T01:03:07.000Z" + }, + "events": [ + { + "uuid": "b9f8e8e5-e9fd-4135-ad75-c053d24f0ded", + "start": { + "$date": "2022-04-09T22:54:46.000Z" + }, + "end": { + "$date": "2022-04-10T01:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "080ca69b-d7e0-44f1-a689-e1f0ede46cdf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-09T23:12:01.000Z" + }, + "end": { + "$date": "2022-04-10T01:39:54.000Z" + }, + "events": [ + { + "uuid": "bdafb35d-b6aa-4063-9826-af5170318dbd", + "start": { + "$date": "2022-04-09T23:12:01.000Z" + }, + "end": { + "$date": "2022-04-09T23:32:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "62a35e76-08f2-41b4-88bc-9681529215bc", + "start": { + "$date": "2022-04-09T23:32:01.000Z" + }, + "end": { + "$date": "2022-04-09T23:37:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa9884f1-a827-4cd9-8980-b88aaa49a73a", + "start": { + "$date": "2022-04-09T23:37:01.000Z" + }, + "end": { + "$date": "2022-04-09T23:49:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "049b3609-74ce-452b-a53d-fc7ae1013799", + "start": { + "$date": "2022-04-09T23:49:01.000Z" + }, + "end": { + "$date": "2022-04-10T00:06:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c9bcf37-9e37-48dc-a400-b2e42c34d9cc", + "start": { + "$date": "2022-04-10T00:06:01.000Z" + }, + "end": { + "$date": "2022-04-10T00:17:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb231a5e-9000-45e9-a078-613728e63b1d", + "start": { + "$date": "2022-04-10T00:17:01.000Z" + }, + "end": { + "$date": "2022-04-10T00:30:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff645637-4d7e-4a20-b973-a8651c311f83", + "start": { + "$date": "2022-04-10T00:30:01.000Z" + }, + "end": { + "$date": "2022-04-10T01:39:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "2b4b0361-5fb3-489d-b52f-68de3323e845", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-10T01:19:24.000Z" + }, + "end": { + "$date": "2022-04-10T04:05:34.000Z" + }, + "events": [ + { + "uuid": "9bab259a-767c-43bb-a7f7-8fb08139a0f7", + "start": { + "$date": "2022-04-10T01:19:24.000Z" + }, + "end": { + "$date": "2022-04-10T04:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "659baae2-45b3-4f31-ac78-010420b73979", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T01:29:20.000Z" + }, + "end": { + "$date": "2022-04-10T01:55:32.000Z" + }, + "events": [ + { + "uuid": "e09ca9bf-67aa-409f-b7da-bbc55de84dbb", + "start": { + "$date": "2022-04-10T01:29:20.000Z" + }, + "end": { + "$date": "2022-04-10T01:55:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "52d7d328-6f03-4aaf-ab1f-80a2f5ffc046", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T01:38:03.000Z" + }, + "end": { + "$date": "2022-04-10T02:32:05.000Z" + }, + "events": [ + { + "uuid": "d375da10-1e44-4834-995b-bb97b00cffb7", + "start": { + "$date": "2022-04-10T01:38:03.000Z" + }, + "end": { + "$date": "2022-04-10T02:32:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4606beee-3ae9-42b4-96b3-1443dd2177a0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-10T01:42:02.000Z" + }, + "end": { + "$date": "2022-04-10T02:21:16.000Z" + }, + "events": [ + { + "uuid": "0b7f0a86-797e-4c6b-ac14-53cba58e6c57", + "start": { + "$date": "2022-04-10T01:42:02.000Z" + }, + "end": { + "$date": "2022-04-10T02:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7fcfc0df-ba59-4d67-9dfe-c7278c86f72b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T01:55:57.000Z" + }, + "end": { + "$date": "2022-04-10T02:32:03.000Z" + }, + "events": [ + { + "uuid": "06eb16a3-9f43-4549-953d-42bda3f32884", + "start": { + "$date": "2022-04-10T01:55:57.000Z" + }, + "end": { + "$date": "2022-04-10T02:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "fb5661f5-af79-4799-8c36-f1c9813816d6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-10T02:22:26.000Z" + }, + "end": { + "$date": "2022-04-10T04:15:09.000Z" + }, + "events": [ + { + "uuid": "4d8dcb28-4dc3-4230-ab81-0cbc80b185b6", + "start": { + "$date": "2022-04-10T02:22:26.000Z" + }, + "end": { + "$date": "2022-04-10T03:09:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1fcacf55-d6ac-4f20-8df9-e3aaf4386a01", + "start": { + "$date": "2022-04-10T03:09:26.000Z" + }, + "end": { + "$date": "2022-04-10T03:14:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "038ab74d-032b-46f4-99ad-0fe0490149b4", + "start": { + "$date": "2022-04-10T03:14:26.000Z" + }, + "end": { + "$date": "2022-04-10T03:24:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da80760d-b3fe-483c-8bb0-7e6f8362e0b3", + "start": { + "$date": "2022-04-10T03:24:26.000Z" + }, + "end": { + "$date": "2022-04-10T03:29:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6a877d15-8100-4aa9-b325-51a70447e102", + "start": { + "$date": "2022-04-10T03:29:26.000Z" + }, + "end": { + "$date": "2022-04-10T04:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "37145748-5b51-40c9-9ad2-7c0274399c6f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T02:34:38.000Z" + }, + "end": { + "$date": "2022-04-10T03:00:20.000Z" + }, + "events": [ + { + "uuid": "d04cfe3d-335e-4179-86f4-5fe51526034e", + "start": { + "$date": "2022-04-10T02:34:38.000Z" + }, + "end": { + "$date": "2022-04-10T03:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4c05024c-7666-493f-9c67-95c37c30fb5d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T02:42:45.000Z" + }, + "end": { + "$date": "2022-04-10T03:00:22.000Z" + }, + "events": [ + { + "uuid": "51b18db2-7d90-4a4c-9f1a-f0bf880db2ea", + "start": { + "$date": "2022-04-10T02:42:45.000Z" + }, + "end": { + "$date": "2022-04-10T03:00:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "6af173bf-0667-4548-92ac-ddd2ddaf977e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T03:00:30.000Z" + }, + "end": { + "$date": "2022-04-10T03:14:46.000Z" + }, + "events": [ + { + "uuid": "8794be93-344a-4848-9e6b-84fc2e717890", + "start": { + "$date": "2022-04-10T03:00:30.000Z" + }, + "end": { + "$date": "2022-04-10T03:14:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be3160c9-c3fd-4afc-aa55-ecdb062a2ac5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T04:13:40.000Z" + }, + "end": { + "$date": "2022-04-10T04:30:18.000Z" + }, + "events": [ + { + "uuid": "d4f5cbad-3a22-457f-ae9a-f3a67c3e9782", + "start": { + "$date": "2022-04-10T04:13:40.000Z" + }, + "end": { + "$date": "2022-04-10T04:30:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3f65dee2-0fb1-46f9-9b8d-21269c0ae968", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-10T04:15:29.000Z" + }, + "end": { + "$date": "2022-04-10T06:39:45.000Z" + }, + "events": [ + { + "uuid": "54e985e9-504b-4d5a-8770-b5384216be55", + "start": { + "$date": "2022-04-10T04:15:29.000Z" + }, + "end": { + "$date": "2022-04-10T06:39:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbd7202e-7ce8-4c92-ba2d-f799cbd0027c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T04:32:32.000Z" + }, + "end": { + "$date": "2022-04-10T04:50:08.000Z" + }, + "events": [ + { + "uuid": "5b5ca457-5523-40c5-96e3-ac1235dea7ee", + "start": { + "$date": "2022-04-10T04:32:32.000Z" + }, + "end": { + "$date": "2022-04-10T04:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "cb24aa19-adb9-49a2-b306-1f34fd96f8f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T04:39:34.000Z" + }, + "end": { + "$date": "2022-04-10T05:12:50.000Z" + }, + "events": [ + { + "uuid": "787d3f34-bfab-4002-990c-faa9a63f2b4f", + "start": { + "$date": "2022-04-10T04:39:34.000Z" + }, + "end": { + "$date": "2022-04-10T05:12:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c371b2f-97a1-4b46-9e33-031c9d49dfa0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T04:52:53.000Z" + }, + "end": { + "$date": "2022-04-10T05:13:41.000Z" + }, + "events": [ + { + "uuid": "e8ad7a25-01eb-46d1-ab5b-77e2d6967198", + "start": { + "$date": "2022-04-10T04:52:53.000Z" + }, + "end": { + "$date": "2022-04-10T05:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0e5ea8a8-1bed-418a-b919-560570a79c13", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T05:09:39.000Z" + }, + "end": { + "$date": "2022-04-10T05:44:19.000Z" + }, + "events": [ + { + "uuid": "45e10ee4-776e-4b51-93ee-4238e689963f", + "start": { + "$date": "2022-04-10T05:09:39.000Z" + }, + "end": { + "$date": "2022-04-10T05:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e76b913d-6bc8-4a83-b460-1f00cdac2aa4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T05:16:09.000Z" + }, + "end": { + "$date": "2022-04-10T05:35:25.000Z" + }, + "events": [ + { + "uuid": "8e28954d-f4fb-48d1-88d6-ca4209812f82", + "start": { + "$date": "2022-04-10T05:16:09.000Z" + }, + "end": { + "$date": "2022-04-10T05:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "ee178811-95cd-4dc5-bdcc-317733ce8e70", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-10T05:26:12.000Z" + }, + "end": { + "$date": "2022-04-10T07:36:14.000Z" + }, + "events": [ + { + "uuid": "bce5dd86-2ca2-4f87-8448-d8c54eea7918", + "start": { + "$date": "2022-04-10T05:26:12.000Z" + }, + "end": { + "$date": "2022-04-10T07:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "31d20143-1a15-4dff-ab38-6eadb962c3ba", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T05:39:31.000Z" + }, + "end": { + "$date": "2022-04-10T06:13:00.000Z" + }, + "events": [ + { + "uuid": "808f15c1-1e94-4d39-8504-4d996a1ea9b3", + "start": { + "$date": "2022-04-10T05:39:31.000Z" + }, + "end": { + "$date": "2022-04-10T06:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a49f4f38-57f2-4ce5-834d-ce3037e89b5f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T06:15:42.000Z" + }, + "end": { + "$date": "2022-04-10T06:44:34.000Z" + }, + "events": [ + { + "uuid": "124add90-c6a2-4ecb-8b61-77c72eb7f5bb", + "start": { + "$date": "2022-04-10T06:15:42.000Z" + }, + "end": { + "$date": "2022-04-10T06:44:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "817760d4-e1ad-42b4-82c8-bedc8d35e807", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T06:15:38.000Z" + }, + "end": { + "$date": "2022-04-10T06:37:33.000Z" + }, + "events": [ + { + "uuid": "6cbc77ff-15cf-47e4-8eb8-1a7a1dc42555", + "start": { + "$date": "2022-04-10T06:15:38.000Z" + }, + "end": { + "$date": "2022-04-10T06:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c073084b-a329-42e8-a318-feba51319a76", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T06:37:48.000Z" + }, + "end": { + "$date": "2022-04-10T06:57:53.000Z" + }, + "events": [ + { + "uuid": "f18747cb-686a-43b7-9dec-e9931ac946a5", + "start": { + "$date": "2022-04-10T06:37:48.000Z" + }, + "end": { + "$date": "2022-04-10T06:57:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "6c16100a-d249-40de-a745-318b6923dfc1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-10T06:42:50.000Z" + }, + "end": { + "$date": "2022-04-10T07:31:47.000Z" + }, + "events": [ + { + "uuid": "6e3520d6-864a-4c73-9bdc-f9289fc3e312", + "start": { + "$date": "2022-04-10T06:42:50.000Z" + }, + "end": { + "$date": "2022-04-10T07:31:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4f9c441-7fcc-4142-bc75-38b0595c2cf3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T06:51:29.000Z" + }, + "end": { + "$date": "2022-04-10T06:51:44.000Z" + }, + "events": [ + { + "uuid": "ccb5d625-543b-45f2-bd59-7dc92787c314", + "start": { + "$date": "2022-04-10T06:51:29.000Z" + }, + "end": { + "$date": "2022-04-10T06:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8901421-512e-4db6-aa6e-032789a6bb21", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T06:53:55.000Z" + }, + "end": { + "$date": "2022-04-10T07:23:56.000Z" + }, + "events": [ + { + "uuid": "9ebf0360-adf8-4f37-ba28-4d4957fa51f4", + "start": { + "$date": "2022-04-10T06:53:55.000Z" + }, + "end": { + "$date": "2022-04-10T07:23:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eef89bdc-033a-4b0e-ada6-ac1c55ce5c73", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-10T06:59:28.000Z" + }, + "end": { + "$date": "2022-04-10T08:37:33.000Z" + }, + "events": [ + { + "uuid": "b109c9f4-081b-4f8d-8613-7d41b50cdfe1", + "start": { + "$date": "2022-04-10T06:59:28.000Z" + }, + "end": { + "$date": "2022-04-10T08:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4a75252d-7a68-42ae-995b-3b0c902ff43a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T07:15:55.000Z" + }, + "end": { + "$date": "2022-04-10T09:00:18.000Z" + }, + "events": [ + { + "uuid": "a0532522-7e19-4ef4-812f-f95859363312", + "start": { + "$date": "2022-04-10T07:15:55.000Z" + }, + "end": { + "$date": "2022-04-10T09:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "57f58c09-05db-466b-b761-9c8a34e3cf17", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T09:07:09.000Z" + }, + "end": { + "$date": "2022-04-10T09:10:59.000Z" + }, + "events": [ + { + "uuid": "3a9d6f2b-d766-44df-b07f-047803b1bf6f", + "start": { + "$date": "2022-04-10T09:07:09.000Z" + }, + "end": { + "$date": "2022-04-10T09:10:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "45d54529-6e30-4bcb-8362-a2af33db8470", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T07:24:25.000Z" + }, + "end": { + "$date": "2022-04-10T07:25:41.000Z" + }, + "events": [ + { + "uuid": "37a08976-7617-44ab-8a9b-2e710c7f2990", + "start": { + "$date": "2022-04-10T07:24:25.000Z" + }, + "end": { + "$date": "2022-04-10T07:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3666fc8d-9ea7-4a3f-ab15-19395dd15b05", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-10T15:07:05.000Z" + }, + "end": { + "$date": "2022-04-10T19:00:37.000Z" + }, + "events": [ + { + "uuid": "7996a145-3288-4bdc-bb4d-8a6259bd7a66", + "start": { + "$date": "2022-04-10T15:07:05.000Z" + }, + "end": { + "$date": "2022-04-10T18:28:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0c909ff4-55ef-41ad-9b63-45d31722069c", + "start": { + "$date": "2022-04-10T18:28:05.000Z" + }, + "end": { + "$date": "2022-04-10T18:33:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28fc7ee1-b55d-45f2-9a20-8f177b27c3b4", + "start": { + "$date": "2022-04-10T18:33:05.000Z" + }, + "end": { + "$date": "2022-04-10T18:53:05.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "543223db-2e5f-452c-a1ac-41858782b0af", + "start": { + "$date": "2022-04-10T18:53:05.000Z" + }, + "end": { + "$date": "2022-04-10T18:59:05.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a888df72-d9d0-4cb9-ad18-1dccc6faf858", + "start": { + "$date": "2022-04-10T18:59:05.000Z" + }, + "end": { + "$date": "2022-04-10T19:00:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b6caf3f9-2940-4d5b-9f42-d11cdbc7e05e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T16:26:26.000Z" + }, + "end": { + "$date": "2022-04-10T16:44:13.000Z" + }, + "events": [ + { + "uuid": "48299358-e977-4910-b70f-a64945ed10b0", + "start": { + "$date": "2022-04-10T16:26:26.000Z" + }, + "end": { + "$date": "2022-04-10T16:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "368a78db-37ae-4522-8c03-5e9e0e79ee75", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-10T18:07:51.000Z" + }, + "end": { + "$date": "2022-04-10T18:48:17.000Z" + }, + "events": [ + { + "uuid": "d900eaa5-62e8-453a-9614-d48abdb26085", + "start": { + "$date": "2022-04-10T18:07:51.000Z" + }, + "end": { + "$date": "2022-04-10T18:48:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7e9336fb-2d81-40c0-8ad4-bd276c801ef0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T19:01:50.000Z" + }, + "end": { + "$date": "2022-04-10T19:06:55.000Z" + }, + "events": [ + { + "uuid": "6625f764-afdb-4cfa-a177-15e62ac9f9d9", + "start": { + "$date": "2022-04-10T19:01:50.000Z" + }, + "end": { + "$date": "2022-04-10T19:06:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bc713e5a-c308-4f34-ba8b-297a13e30323", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T19:09:36.000Z" + }, + "end": { + "$date": "2022-04-10T20:01:58.000Z" + }, + "events": [ + { + "uuid": "07eaa482-4692-4f80-b9b4-0123a6e3a124", + "start": { + "$date": "2022-04-10T19:09:36.000Z" + }, + "end": { + "$date": "2022-04-10T20:01:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2035a666-f1ec-4254-b079-a10089441f6f", + "uuid": "0cf96788-64e4-44ef-8bfa-9dbca44d392f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-10T20:49:20.000Z" + }, + "end": { + "$date": "2022-04-11T04:39:37.000Z" + }, + "events": [ + { + "uuid": "7d6097d2-7f24-4287-88fc-82dcf6cb6ae0", + "start": { + "$date": "2022-04-10T20:49:20.000Z" + }, + "end": { + "$date": "2022-04-11T02:35:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "625aae23-d267-4f9f-aa8c-084278faa181", + "start": { + "$date": "2022-04-11T02:35:20.000Z" + }, + "end": { + "$date": "2022-04-11T02:37:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1b78340d-7431-4305-95d6-18fe29b8ce0f", + "start": { + "$date": "2022-04-11T02:37:20.000Z" + }, + "end": { + "$date": "2022-04-11T02:47:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58d01ba0-a0c2-4786-957c-9640e26f2b48", + "start": { + "$date": "2022-04-11T02:47:20.000Z" + }, + "end": { + "$date": "2022-04-11T03:33:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0353a4ed-ab03-445a-8978-88899b6e1a07", + "start": { + "$date": "2022-04-11T03:33:20.000Z" + }, + "end": { + "$date": "2022-04-11T04:39:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "169b4ef3-88a7-42de-a54e-7a5bf19c11e3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T20:50:29.000Z" + }, + "end": { + "$date": "2022-04-10T21:07:29.000Z" + }, + "events": [ + { + "uuid": "9155900a-aa23-4176-8a93-c31d03d9f303", + "start": { + "$date": "2022-04-10T20:50:29.000Z" + }, + "end": { + "$date": "2022-04-10T21:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "322efb88-ec8c-409a-aa31-f8d66ce71e22", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-10T22:37:41.000Z" + }, + "end": { + "$date": "2022-04-11T00:47:45.000Z" + }, + "events": [ + { + "uuid": "407059ca-8ad1-4370-b8ce-d1bf1423849b", + "start": { + "$date": "2022-04-10T22:37:41.000Z" + }, + "end": { + "$date": "2022-04-11T00:47:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f75d4b3f-e508-44cc-a969-ee64d85f6a4d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T00:34:53.000Z" + }, + "end": { + "$date": "2022-04-11T00:42:19.000Z" + }, + "events": [ + { + "uuid": "51561e11-e186-4176-b612-4da8c02055ee", + "start": { + "$date": "2022-04-11T00:34:53.000Z" + }, + "end": { + "$date": "2022-04-11T00:42:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "987a52e7-cc42-4ec7-aa41-a104c9edc8b8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-10T23:42:08.000Z" + }, + "end": { + "$date": "2022-04-11T00:27:19.000Z" + }, + "events": [ + { + "uuid": "f3ecf571-c8c3-4478-a160-ff62331a9195", + "start": { + "$date": "2022-04-10T23:42:08.000Z" + }, + "end": { + "$date": "2022-04-11T00:27:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "a09f8407-2e08-470d-bf5e-d3b1477e8ac5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T01:34:31.000Z" + }, + "end": { + "$date": "2022-04-11T01:37:46.000Z" + }, + "events": [ + { + "uuid": "26374084-785d-4d0b-9cc1-789f3a54153b", + "start": { + "$date": "2022-04-11T01:34:31.000Z" + }, + "end": { + "$date": "2022-04-11T01:37:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e35e8c4b-aaf3-45ac-a45a-8a4f3b12ab15", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T01:35:56.000Z" + }, + "end": { + "$date": "2022-04-11T02:53:03.000Z" + }, + "events": [ + { + "uuid": "c0660a37-3af7-4019-b8d7-5eadf4cb4a6e", + "start": { + "$date": "2022-04-11T01:35:56.000Z" + }, + "end": { + "$date": "2022-04-11T02:53:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "578f6cca-d0f8-410b-982e-73ef5fffc8c2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-11T02:51:15.000Z" + }, + "end": { + "$date": "2022-04-11T04:12:41.000Z" + }, + "events": [ + { + "uuid": "e5ff7d70-ad36-438a-a429-c48c0f577503", + "start": { + "$date": "2022-04-11T02:51:15.000Z" + }, + "end": { + "$date": "2022-04-11T04:12:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c7f0ca57-4885-4586-bd6e-3eb7516cd841", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T03:04:25.000Z" + }, + "end": { + "$date": "2022-04-11T03:07:45.000Z" + }, + "events": [ + { + "uuid": "b1c30e07-197c-4542-af6e-2663481fe3e8", + "start": { + "$date": "2022-04-11T03:04:25.000Z" + }, + "end": { + "$date": "2022-04-11T03:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "66646c7f-6100-403e-9dbc-c74ba00fd6f2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T03:08:20.000Z" + }, + "end": { + "$date": "2022-04-11T03:26:41.000Z" + }, + "events": [ + { + "uuid": "b1ca9fa9-b775-4b34-93ad-c22ab73c1934", + "start": { + "$date": "2022-04-11T03:08:20.000Z" + }, + "end": { + "$date": "2022-04-11T03:26:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "56a11bd1-1ae0-45b8-aab7-34ee2e32bd9f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-11T02:18:12.000Z" + }, + "end": { + "$date": "2022-04-11T05:54:11.000Z" + }, + "events": [ + { + "uuid": "49853559-519e-411d-8d41-daaac9923741", + "start": { + "$date": "2022-04-11T02:18:12.000Z" + }, + "end": { + "$date": "2022-04-11T05:54:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "99530964-0370-4b33-8f22-cb78763d0b12", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-11T04:12:20.000Z" + }, + "end": { + "$date": "2022-04-11T04:55:02.000Z" + }, + "events": [ + { + "uuid": "e7f3b840-0af5-47b6-beb3-fe452864e2ce", + "start": { + "$date": "2022-04-11T04:12:20.000Z" + }, + "end": { + "$date": "2022-04-11T04:55:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08fce8d7-d802-4af8-a5fe-b1fff7f28c48", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T04:43:01.000Z" + }, + "end": { + "$date": "2022-04-11T05:14:32.000Z" + }, + "events": [ + { + "uuid": "33c113ce-cce6-4fb3-b941-9e17ace448d1", + "start": { + "$date": "2022-04-11T04:43:01.000Z" + }, + "end": { + "$date": "2022-04-11T05:14:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4df52ab-d872-43a5-a695-0707a966de8a", + "uuid": "8cf99106-b202-475c-8aee-7c88b16c43d9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-11T04:50:49.000Z" + }, + "end": { + "$date": "2022-04-11T05:14:24.000Z" + }, + "events": [ + { + "uuid": "e7a13094-b807-46d8-9ff4-0f59135f1774", + "start": { + "$date": "2022-04-11T04:50:49.000Z" + }, + "end": { + "$date": "2022-04-11T05:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "2066de1b-9d1e-4eb6-81cd-fb939f9c32f7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-11T04:55:27.000Z" + }, + "end": { + "$date": "2022-04-11T10:13:51.000Z" + }, + "events": [ + { + "uuid": "764d67f5-7158-4f4e-acba-d95b34e8a8ce", + "start": { + "$date": "2022-04-11T04:55:27.000Z" + }, + "end": { + "$date": "2022-04-11T08:36:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b32caa77-ece9-4f0b-aa0a-2f7d3c3f02f3", + "start": { + "$date": "2022-04-11T08:36:27.000Z" + }, + "end": { + "$date": "2022-04-11T08:54:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "990a38ac-4885-483f-93b2-4d6531a7f36a", + "start": { + "$date": "2022-04-11T08:54:27.000Z" + }, + "end": { + "$date": "2022-04-11T09:04:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33a8f26b-c348-4ee9-80b9-9945828b021b", + "start": { + "$date": "2022-04-11T09:04:27.000Z" + }, + "end": { + "$date": "2022-04-11T09:36:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b4688014-ee3a-4297-9928-d0af1b931fb7", + "start": { + "$date": "2022-04-11T09:36:27.000Z" + }, + "end": { + "$date": "2022-04-11T09:46:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f175a088-1266-472e-a800-3abb16607d73", + "start": { + "$date": "2022-04-11T09:46:27.000Z" + }, + "end": { + "$date": "2022-04-11T10:11:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ee5aa6f3-d98a-431e-9f94-cfb7fb99c660", + "start": { + "$date": "2022-04-11T10:11:27.000Z" + }, + "end": { + "$date": "2022-04-11T10:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "97223f76-b3f2-469d-a09b-034be40c5d96", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-11T05:10:45.000Z" + }, + "end": { + "$date": "2022-04-11T05:40:11.000Z" + }, + "events": [ + { + "uuid": "855b992d-8ae3-492f-b389-b6093d9032cc", + "start": { + "$date": "2022-04-11T05:10:45.000Z" + }, + "end": { + "$date": "2022-04-11T05:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1bdf2d94-0272-475b-818a-c5fea97f6a6a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-11T05:14:34.000Z" + }, + "end": { + "$date": "2022-04-11T05:46:09.000Z" + }, + "events": [ + { + "uuid": "7e8479df-9a7a-4295-9b59-3863b6758322", + "start": { + "$date": "2022-04-11T05:14:34.000Z" + }, + "end": { + "$date": "2022-04-11T05:46:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ec107908-d23a-42bf-b06b-ec1109e2dd18", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T05:19:38.000Z" + }, + "end": { + "$date": "2022-04-11T05:47:10.000Z" + }, + "events": [ + { + "uuid": "75ab152d-dcd4-4cb3-83df-19dfcad572bd", + "start": { + "$date": "2022-04-11T05:19:38.000Z" + }, + "end": { + "$date": "2022-04-11T05:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6594c285-b724-441a-b1b6-382d1c49c94d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-11T05:40:25.000Z" + }, + "end": { + "$date": "2022-04-11T05:41:53.000Z" + }, + "events": [ + { + "uuid": "8801b45a-0828-4d12-8be0-5fe328122550", + "start": { + "$date": "2022-04-11T05:40:25.000Z" + }, + "end": { + "$date": "2022-04-11T05:41:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5846c119-b8d1-4373-8ad0-e7b46f9a93d1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T05:50:25.000Z" + }, + "end": { + "$date": "2022-04-11T06:34:00.000Z" + }, + "events": [ + { + "uuid": "dc556f1e-33e6-4136-86a6-9f0f4cfbc349", + "start": { + "$date": "2022-04-11T05:50:25.000Z" + }, + "end": { + "$date": "2022-04-11T06:34:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b577d13-5ff6-4a66-b544-eed703287e1c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T07:28:54.000Z" + }, + "end": { + "$date": "2022-04-11T07:59:05.000Z" + }, + "events": [ + { + "uuid": "7a7379f9-dc2c-4351-a5ec-b069265acc8d", + "start": { + "$date": "2022-04-11T07:28:54.000Z" + }, + "end": { + "$date": "2022-04-11T07:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "99a6c085-8578-4530-8d0b-c170f5f4b2ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T08:01:10.000Z" + }, + "end": { + "$date": "2022-04-11T08:07:38.000Z" + }, + "events": [ + { + "uuid": "abac92f2-64bf-4382-9680-05c83d304027", + "start": { + "$date": "2022-04-11T08:01:10.000Z" + }, + "end": { + "$date": "2022-04-11T08:07:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8af725e6-e1de-4f58-a36d-016c0b35eb29", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T08:07:47.000Z" + }, + "end": { + "$date": "2022-04-11T08:19:19.000Z" + }, + "events": [ + { + "uuid": "252b7852-f868-4b6b-b585-f1913e79ccb1", + "start": { + "$date": "2022-04-11T08:07:47.000Z" + }, + "end": { + "$date": "2022-04-11T08:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dbfbb49c-07e0-4e55-83d0-5ecb818703be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T15:49:05.000Z" + }, + "end": { + "$date": "2022-04-11T15:54:12.000Z" + }, + "events": [ + { + "uuid": "98636125-1fe2-4f1a-80b3-f38d1a1aa75b", + "start": { + "$date": "2022-04-11T15:49:05.000Z" + }, + "end": { + "$date": "2022-04-11T15:54:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5b1f6a2f-7360-4dc7-97d8-3df45a506e0c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T16:11:09.000Z" + }, + "end": { + "$date": "2022-04-11T16:49:31.000Z" + }, + "events": [ + { + "uuid": "de9aa5b1-e960-4c21-ab95-9ca436686dca", + "start": { + "$date": "2022-04-11T16:11:09.000Z" + }, + "end": { + "$date": "2022-04-11T16:49:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "5712e487-3379-47a4-9fa0-382ad3465042", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T19:16:12.000Z" + }, + "end": { + "$date": "2022-04-11T19:33:33.000Z" + }, + "events": [ + { + "uuid": "de0d011c-3167-4d9f-b28b-1528c2539684", + "start": { + "$date": "2022-04-11T19:16:12.000Z" + }, + "end": { + "$date": "2022-04-11T19:33:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "657565b3-950f-4d42-af2c-2105e7512e2b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-11T19:59:21.000Z" + }, + "end": { + "$date": "2022-04-12T01:46:04.000Z" + }, + "events": [ + { + "uuid": "1f1ade16-7c60-4c6d-ba40-01ba2f84306c", + "start": { + "$date": "2022-04-11T19:59:21.000Z" + }, + "end": { + "$date": "2022-04-11T20:37:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c036c2c5-5288-4646-9cef-2dc0da61c427", + "start": { + "$date": "2022-04-11T20:37:21.000Z" + }, + "end": { + "$date": "2022-04-11T22:27:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "920f5307-0f46-41f2-8cdd-843ab6947483", + "start": { + "$date": "2022-04-11T22:27:21.000Z" + }, + "end": { + "$date": "2022-04-11T22:29:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72532ef0-3e0a-48e1-bace-f36594f2d103", + "start": { + "$date": "2022-04-11T22:29:21.000Z" + }, + "end": { + "$date": "2022-04-11T22:31:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e388e4d6-e87c-4ce3-9595-287f6ee52e76", + "start": { + "$date": "2022-04-11T22:31:21.000Z" + }, + "end": { + "$date": "2022-04-11T22:33:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "acfab3d7-bf82-4c53-af9b-fcdde8a6e205", + "start": { + "$date": "2022-04-11T22:33:21.000Z" + }, + "end": { + "$date": "2022-04-12T00:40:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c3c7991-33d4-4a28-8a3f-de2077efeeeb", + "start": { + "$date": "2022-04-12T00:40:21.000Z" + }, + "end": { + "$date": "2022-04-12T00:43:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9ab27687-0684-44f4-a873-c4d978ef5fe8", + "start": { + "$date": "2022-04-12T00:43:21.000Z" + }, + "end": { + "$date": "2022-04-12T01:19:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d141b47a-1faa-4b00-ab7f-ad2b45a060ae", + "start": { + "$date": "2022-04-12T01:19:21.000Z" + }, + "end": { + "$date": "2022-04-12T01:23:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "43e56875-5b9d-4ec0-a042-49cbea047b1c", + "start": { + "$date": "2022-04-12T01:23:21.000Z" + }, + "end": { + "$date": "2022-04-12T02:06:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8aec0221-d4c6-4410-9453-545bce93c557", + "start": { + "$date": "2022-04-12T02:06:21.000Z" + }, + "end": { + "$date": "2022-04-12T02:08:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1296607-463b-4a68-a81a-ba9d41e93c34", + "start": { + "$date": "2022-04-12T02:08:21.000Z" + }, + "end": { + "$date": "2022-04-12T01:46:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b549a70c-4920-4abc-92c9-e8e9721c1632", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-11T19:34:23.000Z" + }, + "end": { + "$date": "2022-04-11T19:51:34.000Z" + }, + "events": [ + { + "uuid": "9a2209cc-1981-4e18-b7e5-e471664b3a08", + "start": { + "$date": "2022-04-11T19:34:23.000Z" + }, + "end": { + "$date": "2022-04-11T19:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "bee49c84-9f16-4ffa-b32f-1533172cce32", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-11T19:47:05.000Z" + }, + "end": { + "$date": "2022-04-11T20:38:59.000Z" + }, + "events": [ + { + "uuid": "169de391-8708-47e4-b736-e24254763970", + "start": { + "$date": "2022-04-11T19:47:05.000Z" + }, + "end": { + "$date": "2022-04-11T20:38:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6981a8db-cd34-49a3-b16a-5d59821c1578", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-11T22:49:11.000Z" + }, + "end": { + "$date": "2022-04-11T23:22:06.000Z" + }, + "events": [ + { + "uuid": "41e619c5-bff1-4c04-8229-5b42579873d1", + "start": { + "$date": "2022-04-11T22:49:11.000Z" + }, + "end": { + "$date": "2022-04-11T23:14:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0d4a6582-e811-4171-8180-88de863df289", + "start": { + "$date": "2022-04-11T23:14:11.000Z" + }, + "end": { + "$date": "2022-04-11T23:19:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0127b9c2-91a3-49bf-99d7-c8acddf73373", + "start": { + "$date": "2022-04-11T23:19:11.000Z" + }, + "end": { + "$date": "2022-04-11T23:22:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8c8a251e-ee97-43c9-8630-0002c73e2bc5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-12T00:54:01.000Z" + }, + "end": { + "$date": "2022-04-12T02:34:22.000Z" + }, + "events": [ + { + "uuid": "73c10dd0-2380-4e93-97e0-cfb523f51d2d", + "start": { + "$date": "2022-04-12T00:54:01.000Z" + }, + "end": { + "$date": "2022-04-12T02:16:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c8c64b5-9321-4941-853c-b5d282665426", + "start": { + "$date": "2022-04-12T02:16:01.000Z" + }, + "end": { + "$date": "2022-04-12T02:31:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "378b1297-c2a3-4d90-9fbb-92b11f74ae3d", + "start": { + "$date": "2022-04-12T02:31:01.000Z" + }, + "end": { + "$date": "2022-04-12T02:34:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "bda63132-3e91-497c-90be-a97d3a938b19", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-12T01:39:11.000Z" + }, + "end": { + "$date": "2022-04-12T02:17:10.000Z" + }, + "events": [ + { + "uuid": "96a75ec8-9a6f-45d7-8bd4-e2b94cb7b629", + "start": { + "$date": "2022-04-12T01:39:11.000Z" + }, + "end": { + "$date": "2022-04-12T02:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "3c0a3b45-c6ba-4d50-ac62-bc9adcbcafbe", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-04-12T01:53:56.000Z" + }, + "end": { + "$date": "2022-04-12T01:54:53.000Z" + }, + "events": [ + { + "uuid": "20698567-8449-412d-ba5a-5cab630dc2d0", + "start": { + "$date": "2022-04-12T01:53:56.000Z" + }, + "end": { + "$date": "2022-04-12T01:54:53.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "7cf3a934-0665-47ba-a359-c33f36ab0114", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-04-12T01:55:28.000Z" + }, + "end": { + "$date": "2022-04-12T03:12:40.000Z" + }, + "events": [ + { + "uuid": "447fb334-6b7e-4fee-996b-483dc03b3f06", + "start": { + "$date": "2022-04-12T01:55:28.000Z" + }, + "end": { + "$date": "2022-04-12T03:12:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "99d4790b-9782-4f42-8f43-ed4af136f6be", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-12T01:57:22.000Z" + }, + "end": { + "$date": "2022-04-12T08:23:18.000Z" + }, + "events": [ + { + "uuid": "99ca8101-2814-49fa-ab1f-499ffe701547", + "start": { + "$date": "2022-04-12T01:57:22.000Z" + }, + "end": { + "$date": "2022-04-12T08:23:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "efbde912-9a3a-4cba-836c-8ba955e8aba2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-12T02:03:02.000Z" + }, + "end": { + "$date": "2022-04-12T03:52:14.000Z" + }, + "events": [ + { + "uuid": "973a9775-11c3-4775-8b8a-fb09c0b73eb2", + "start": { + "$date": "2022-04-12T02:03:02.000Z" + }, + "end": { + "$date": "2022-04-12T03:52:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6aa7996b-81ce-45c6-810f-46a5ff9cc8d3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-12T02:16:01.000Z" + }, + "end": { + "$date": "2022-04-12T02:20:42.000Z" + }, + "events": [ + { + "uuid": "2cc774f0-5564-4ac4-9191-cadf174c4abd", + "start": { + "$date": "2022-04-12T02:16:01.000Z" + }, + "end": { + "$date": "2022-04-12T02:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "39d75647-7c56-4e7d-b29b-628ba311a5aa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-12T02:19:54.000Z" + }, + "end": { + "$date": "2022-04-12T02:36:51.000Z" + }, + "events": [ + { + "uuid": "9b64a3fa-f150-477a-b05f-f2437a58ba49", + "start": { + "$date": "2022-04-12T02:19:54.000Z" + }, + "end": { + "$date": "2022-04-12T02:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "775a1a6b-5911-419b-931c-3f00c128c696", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-12T02:49:23.000Z" + }, + "end": { + "$date": "2022-04-12T05:24:51.000Z" + }, + "events": [ + { + "uuid": "8b5625fb-e34d-4d0c-b40e-d515f277f26e", + "start": { + "$date": "2022-04-12T02:49:23.000Z" + }, + "end": { + "$date": "2022-04-12T05:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "daa0fed5-f3cd-4b05-80d1-2160d881d405", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-12T03:12:38.000Z" + }, + "end": { + "$date": "2022-04-12T07:41:14.000Z" + }, + "events": [ + { + "uuid": "93b3935b-0b4f-40a9-bc50-44b42350154d", + "start": { + "$date": "2022-04-12T03:12:38.000Z" + }, + "end": { + "$date": "2022-04-12T07:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "98464675-562d-4e6f-ab56-78e7fcb3e1e5", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-12T04:52:45.000Z" + }, + "end": { + "$date": "2022-04-12T14:16:31.000Z" + }, + "events": [ + { + "uuid": "b72c45a3-e53e-4e3a-81ea-0eb9663a40a3", + "start": { + "$date": "2022-04-12T04:52:45.000Z" + }, + "end": { + "$date": "2022-04-12T05:58:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e9029a2f-9ac7-4d0f-a8d8-0baeead82cd0", + "start": { + "$date": "2022-04-12T05:58:45.000Z" + }, + "end": { + "$date": "2022-04-12T06:01:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "721c003d-5505-4a56-8cca-585d7e06d285", + "start": { + "$date": "2022-04-12T06:01:45.000Z" + }, + "end": { + "$date": "2022-04-12T06:03:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc49e079-7761-4b6d-8183-c215f2f4132e", + "start": { + "$date": "2022-04-12T06:03:45.000Z" + }, + "end": { + "$date": "2022-04-12T14:16:31.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf99c6cf-a03d-4145-908d-9310a7eec053", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-12T04:28:04.000Z" + }, + "end": { + "$date": "2022-04-12T04:50:16.000Z" + }, + "events": [ + { + "uuid": "ede2c582-d8cf-48a0-95d8-5094f7ff50d2", + "start": { + "$date": "2022-04-12T04:28:04.000Z" + }, + "end": { + "$date": "2022-04-12T04:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "4dfc737b-24e3-47fe-a4d3-48384942acb4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-12T04:44:36.000Z" + }, + "end": { + "$date": "2022-04-12T05:51:12.000Z" + }, + "events": [ + { + "uuid": "afe70ae6-1231-47da-af26-25b16ce92e4a", + "start": { + "$date": "2022-04-12T04:44:36.000Z" + }, + "end": { + "$date": "2022-04-12T05:51:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "39a6b993-8f32-4610-ae84-cbe3089cb43c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-12T04:56:46.000Z" + }, + "end": { + "$date": "2022-04-12T05:15:08.000Z" + }, + "events": [ + { + "uuid": "97fa99c1-0a7e-4e9c-a127-27975ae83102", + "start": { + "$date": "2022-04-12T04:56:46.000Z" + }, + "end": { + "$date": "2022-04-12T05:15:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "565993fc-9a22-4ed3-8ed1-54e3e545a849", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-12T08:45:07.000Z" + }, + "end": { + "$date": "2022-04-12T10:52:56.000Z" + }, + "events": [ + { + "uuid": "2f76c109-d670-49dd-b768-bd8c4717b7b9", + "start": { + "$date": "2022-04-12T08:45:07.000Z" + }, + "end": { + "$date": "2022-04-12T10:52:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "c352157e-5ab9-40c5-94b8-226e58bb6db9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-12T15:25:18.000Z" + }, + "end": { + "$date": "2022-04-12T15:39:13.000Z" + }, + "events": [ + { + "uuid": "1d9b5cfc-ea3e-497c-9f48-33a0a63beace", + "start": { + "$date": "2022-04-12T15:25:18.000Z" + }, + "end": { + "$date": "2022-04-12T15:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "fc7a413f-b319-4740-ba75-3172c62dd42f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-12T16:35:45.000Z" + }, + "end": { + "$date": "2022-04-12T16:36:14.000Z" + }, + "events": [ + { + "uuid": "a3473228-b63f-4b67-aa0b-56c491df5230", + "start": { + "$date": "2022-04-12T16:35:45.000Z" + }, + "end": { + "$date": "2022-04-12T16:36:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "461fad1a-ab0c-479b-82ef-8ca1b04ebf28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-12T20:48:04.000Z" + }, + "end": { + "$date": "2022-04-12T20:54:37.000Z" + }, + "events": [ + { + "uuid": "2806107c-a4bf-4303-b14d-abb05bd5bfd8", + "start": { + "$date": "2022-04-12T20:48:04.000Z" + }, + "end": { + "$date": "2022-04-12T20:54:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3f7eec0-4341-4f08-be65-8921c5ea6b4b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-12T21:03:36.000Z" + }, + "end": { + "$date": "2022-04-12T21:20:09.000Z" + }, + "events": [ + { + "uuid": "f83aa739-0cef-4ef3-bd14-5fc5be423eb4", + "start": { + "$date": "2022-04-12T21:03:36.000Z" + }, + "end": { + "$date": "2022-04-12T21:20:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "994b1a6b-4dba-4a64-b4dc-507eeb4ed73c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-12T21:26:58.000Z" + }, + "end": { + "$date": "2022-04-12T21:50:03.000Z" + }, + "events": [ + { + "uuid": "e63cecd9-bc2d-46c4-a772-bd3289935ca4", + "start": { + "$date": "2022-04-12T21:26:58.000Z" + }, + "end": { + "$date": "2022-04-12T21:50:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "1d14f733-6308-4c88-8f47-923aabc2e2be", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-12T22:20:49.000Z" + }, + "end": { + "$date": "2022-04-12T22:27:24.000Z" + }, + "events": [ + { + "uuid": "be3fa920-6167-4bb5-a92c-b7ef12d35deb", + "start": { + "$date": "2022-04-12T22:20:49.000Z" + }, + "end": { + "$date": "2022-04-12T22:27:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "36775b47-5208-4d37-9ad7-36e8226a31f3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-12T22:54:03.000Z" + }, + "end": { + "$date": "2022-04-13T00:39:00.000Z" + }, + "events": [ + { + "uuid": "61c9a7b7-43c4-449d-aaed-6c24683fbd99", + "start": { + "$date": "2022-04-12T22:54:03.000Z" + }, + "end": { + "$date": "2022-04-13T00:39:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "17a3caa4-a9be-48e8-ac08-fc3965ac4714", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-12T22:55:48.000Z" + }, + "end": { + "$date": "2022-04-12T23:11:18.000Z" + }, + "events": [ + { + "uuid": "ab02496f-b553-447e-9a0e-700fa438f941", + "start": { + "$date": "2022-04-12T22:55:48.000Z" + }, + "end": { + "$date": "2022-04-12T23:11:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "58ab6456-472d-48c5-b329-2dcc581b9fe1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-12T23:46:13.000Z" + }, + "end": { + "$date": "2022-04-13T03:19:28.000Z" + }, + "events": [ + { + "uuid": "83a92ea1-f365-40fe-b431-0740e03ccb68", + "start": { + "$date": "2022-04-12T23:46:13.000Z" + }, + "end": { + "$date": "2022-04-13T00:01:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ede84cb-c537-4271-84b6-6b79ec6dccd0", + "start": { + "$date": "2022-04-13T00:01:13.000Z" + }, + "end": { + "$date": "2022-04-13T00:23:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4eebc311-4d74-4e2b-94e8-0cc3e2c2399d", + "start": { + "$date": "2022-04-13T00:23:13.000Z" + }, + "end": { + "$date": "2022-04-13T00:43:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b743b0f9-d969-4a16-98af-32a3a76eee40", + "start": { + "$date": "2022-04-13T00:43:13.000Z" + }, + "end": { + "$date": "2022-04-13T01:33:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "13770727-1291-427c-8190-92cdfc024bbb", + "start": { + "$date": "2022-04-13T01:33:13.000Z" + }, + "end": { + "$date": "2022-04-13T02:04:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d15d88f9-36d0-47d4-aaef-e5b1d1907110", + "start": { + "$date": "2022-04-13T02:04:13.000Z" + }, + "end": { + "$date": "2022-04-13T02:09:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39330589-5efa-43fe-9855-57fdc51b1e43", + "start": { + "$date": "2022-04-13T02:09:13.000Z" + }, + "end": { + "$date": "2022-04-13T02:28:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d8fa67bb-ded3-4e7a-9326-c44b7f9205fd", + "start": { + "$date": "2022-04-13T02:28:13.000Z" + }, + "end": { + "$date": "2022-04-13T02:39:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fbbb1dcf-ae6f-4d9d-8dfd-44d2bfc41880", + "start": { + "$date": "2022-04-13T02:39:13.000Z" + }, + "end": { + "$date": "2022-04-13T03:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1b3f2cd8-f193-42d6-a388-837a3fadaffe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-13T00:43:34.000Z" + }, + "end": { + "$date": "2022-04-13T02:03:05.000Z" + }, + "events": [ + { + "uuid": "c83b3e90-e2d6-4fcc-a2cb-34cec803a5b8", + "start": { + "$date": "2022-04-13T00:43:34.000Z" + }, + "end": { + "$date": "2022-04-13T02:03:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "de03c41f-4500-4337-943a-5adf008375aa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-13T00:44:08.000Z" + }, + "end": { + "$date": "2022-04-13T04:57:16.000Z" + }, + "events": [ + { + "uuid": "29f73179-6c47-4b63-a500-cec5afe5f6c7", + "start": { + "$date": "2022-04-13T00:44:08.000Z" + }, + "end": { + "$date": "2022-04-13T04:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e36ee8bb-0687-42fd-9367-999ce2d9f6e1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-13T02:13:07.000Z" + }, + "end": { + "$date": "2022-04-13T05:02:26.000Z" + }, + "events": [ + { + "uuid": "f131659c-3578-49c3-987d-211e6e033968", + "start": { + "$date": "2022-04-13T02:13:07.000Z" + }, + "end": { + "$date": "2022-04-13T05:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "69cb8868-b827-43ee-a7fd-a46416c3fcd8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-13T02:20:13.000Z" + }, + "end": { + "$date": "2022-04-13T03:16:37.000Z" + }, + "events": [ + { + "uuid": "2623b661-9008-4084-ad28-1dc120ee602f", + "start": { + "$date": "2022-04-13T02:20:13.000Z" + }, + "end": { + "$date": "2022-04-13T03:16:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "df504c21-903d-4075-b7f6-45ed19be2963", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-13T02:40:36.000Z" + }, + "end": { + "$date": "2022-04-13T03:27:46.000Z" + }, + "events": [ + { + "uuid": "32825bd2-62c0-4cbb-8f39-de4bc89016fe", + "start": { + "$date": "2022-04-13T02:40:36.000Z" + }, + "end": { + "$date": "2022-04-13T03:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cce84c60-3972-459f-ba90-cb37278002b8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-13T03:21:54.000Z" + }, + "end": { + "$date": "2022-04-13T06:21:21.000Z" + }, + "events": [ + { + "uuid": "1c24ae42-3e4b-42ba-8b73-adac336782d8", + "start": { + "$date": "2022-04-13T03:21:54.000Z" + }, + "end": { + "$date": "2022-04-13T06:21:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f3a1829c-68a5-4246-ac0f-fa38c1070d88", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-13T03:29:43.000Z" + }, + "end": { + "$date": "2022-04-13T04:07:41.000Z" + }, + "events": [ + { + "uuid": "7e607e2c-8d6c-4ea4-98cc-42ae0a433bbb", + "start": { + "$date": "2022-04-13T03:29:43.000Z" + }, + "end": { + "$date": "2022-04-13T04:07:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "de6ff2a1-8bd3-4b72-9fcd-7fd0d5446f9e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-13T04:12:22.000Z" + }, + "end": { + "$date": "2022-04-13T04:29:32.000Z" + }, + "events": [ + { + "uuid": "5d5d7f56-a20d-4db5-aeca-883b7cefd6b6", + "start": { + "$date": "2022-04-13T04:12:22.000Z" + }, + "end": { + "$date": "2022-04-13T04:29:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "cd80b4fd-f9a1-40ca-b97e-dfb716187e2f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-13T04:33:23.000Z" + }, + "end": { + "$date": "2022-04-13T06:18:24.000Z" + }, + "events": [ + { + "uuid": "5c8d2978-cbb5-434b-9e32-7e6ef799459a", + "start": { + "$date": "2022-04-13T04:33:23.000Z" + }, + "end": { + "$date": "2022-04-13T06:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "bddf02ef-f45c-433f-ba63-749d273c8d4a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-13T04:54:20.000Z" + }, + "end": { + "$date": "2022-04-13T05:00:15.000Z" + }, + "events": [ + { + "uuid": "5817c126-7a88-4f85-8372-ec9d5a855a5d", + "start": { + "$date": "2022-04-13T04:54:20.000Z" + }, + "end": { + "$date": "2022-04-13T05:00:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "78353070-bb13-433e-b7c9-29418b616bf7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-13T04:57:14.000Z" + }, + "end": { + "$date": "2022-04-13T07:02:34.000Z" + }, + "events": [ + { + "uuid": "39bfbf38-1111-43e8-aa46-7f82867d0b9b", + "start": { + "$date": "2022-04-13T04:57:14.000Z" + }, + "end": { + "$date": "2022-04-13T07:02:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c1f2ee85-6909-4e32-b1de-fb444e501068", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-13T05:06:07.000Z" + }, + "end": { + "$date": "2022-04-13T07:02:21.000Z" + }, + "events": [ + { + "uuid": "efa0b50a-dbf3-477b-836e-35c51c053958", + "start": { + "$date": "2022-04-13T05:06:07.000Z" + }, + "end": { + "$date": "2022-04-13T07:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "387447ef-ff33-405f-8d03-c43a58d8b2f7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-13T05:36:06.000Z" + }, + "end": { + "$date": "2022-04-13T05:58:07.000Z" + }, + "events": [ + { + "uuid": "85a1971d-5237-49d9-87c7-7b688a10f290", + "start": { + "$date": "2022-04-13T05:36:06.000Z" + }, + "end": { + "$date": "2022-04-13T05:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "ced14e0f-8179-42be-bb04-e7b0167fc3b7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-13T07:42:38.000Z" + }, + "end": { + "$date": "2022-04-13T10:52:58.000Z" + }, + "events": [ + { + "uuid": "1b28d20b-b106-47e3-8ae7-d983df2a3f3b", + "start": { + "$date": "2022-04-13T07:42:38.000Z" + }, + "end": { + "$date": "2022-04-13T10:52:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48b78258-7812-4a57-bd14-9705be646718", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-13T16:05:07.000Z" + }, + "end": { + "$date": "2022-04-13T16:36:43.000Z" + }, + "events": [ + { + "uuid": "9fe546e2-5916-497b-bf75-f481f923b74f", + "start": { + "$date": "2022-04-13T16:05:07.000Z" + }, + "end": { + "$date": "2022-04-13T16:36:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c4e9c50d-345b-4eff-8a35-3637f6afc72a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-13T16:59:00.000Z" + }, + "end": { + "$date": "2022-04-13T17:21:33.000Z" + }, + "events": [ + { + "uuid": "ac0209ee-6b80-45bf-b59b-db5fcb3e6a07", + "start": { + "$date": "2022-04-13T16:59:00.000Z" + }, + "end": { + "$date": "2022-04-13T17:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fc0a180b-f31e-4979-8236-f5f40d940cbf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-13T20:38:44.000Z" + }, + "end": { + "$date": "2022-04-13T20:41:14.000Z" + }, + "events": [ + { + "uuid": "e6d94d89-6963-4ece-afdd-b0e9a956fc67", + "start": { + "$date": "2022-04-13T20:38:44.000Z" + }, + "end": { + "$date": "2022-04-13T20:41:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "169e70d8-40a1-409d-a3ff-14267008f7a0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-13T21:27:24.000Z" + }, + "end": { + "$date": "2022-04-13T21:53:12.000Z" + }, + "events": [ + { + "uuid": "e1eab132-4cad-4d23-9047-cfd61d88183b", + "start": { + "$date": "2022-04-13T21:27:24.000Z" + }, + "end": { + "$date": "2022-04-13T21:53:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7010215b-7645-4111-84ca-78afd4d26024", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-13T21:41:25.000Z" + }, + "end": { + "$date": "2022-04-14T01:12:03.000Z" + }, + "events": [ + { + "uuid": "fa9325db-336b-4ea8-bbdf-6e88b554c635", + "start": { + "$date": "2022-04-13T21:41:25.000Z" + }, + "end": { + "$date": "2022-04-14T01:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "72eee066-7a9a-4dad-b386-6e87dc37b280", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-13T22:45:11.000Z" + }, + "end": { + "$date": "2022-04-13T23:51:17.000Z" + }, + "events": [ + { + "uuid": "9ce6c415-bfc6-44a4-9b50-af090764053e", + "start": { + "$date": "2022-04-13T22:45:11.000Z" + }, + "end": { + "$date": "2022-04-13T23:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1400b3d7-c9c6-402b-913f-126ebd32ec6b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-13T22:58:16.000Z" + }, + "end": { + "$date": "2022-04-14T00:33:31.000Z" + }, + "events": [ + { + "uuid": "56030628-0674-4d5e-917c-351209ef3c31", + "start": { + "$date": "2022-04-13T22:58:16.000Z" + }, + "end": { + "$date": "2022-04-14T00:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "d43e6daf-64c8-445e-8dce-376facd66bec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-13T23:52:01.000Z" + }, + "end": { + "$date": "2022-04-14T03:55:24.000Z" + }, + "events": [ + { + "uuid": "6426ec1a-a8ac-4bc8-9392-58c05824e8e8", + "start": { + "$date": "2022-04-13T23:52:01.000Z" + }, + "end": { + "$date": "2022-04-14T03:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c2da45cf-bb09-4450-9cb2-a93b18aad9dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-14T00:50:02.000Z" + }, + "end": { + "$date": "2022-04-14T01:27:30.000Z" + }, + "events": [ + { + "uuid": "ec0ab0bc-97af-41d3-a7c5-8916e5399d09", + "start": { + "$date": "2022-04-14T00:50:02.000Z" + }, + "end": { + "$date": "2022-04-14T01:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "504297b1-c243-4a53-b984-0aba5aa6799f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T01:12:23.000Z" + }, + "end": { + "$date": "2022-04-14T01:16:44.000Z" + }, + "events": [ + { + "uuid": "fd55c4ff-34a1-4b75-ba39-13e8d37366e5", + "start": { + "$date": "2022-04-14T01:12:23.000Z" + }, + "end": { + "$date": "2022-04-14T01:16:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "6101b344-f1f1-4b83-91b1-380d053344eb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T01:16:59.000Z" + }, + "end": { + "$date": "2022-04-14T01:22:59.000Z" + }, + "events": [ + { + "uuid": "c6e38ec0-3975-4929-a30d-09445f208001", + "start": { + "$date": "2022-04-14T01:16:59.000Z" + }, + "end": { + "$date": "2022-04-14T01:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "567390a3-fc14-4bc2-bf8e-c7864e9f33d4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-14T01:20:54.000Z" + }, + "end": { + "$date": "2022-04-14T01:29:56.000Z" + }, + "events": [ + { + "uuid": "19b74f1a-d6c9-4ea1-9e2a-cf2e5a255c5b", + "start": { + "$date": "2022-04-14T01:20:54.000Z" + }, + "end": { + "$date": "2022-04-14T01:29:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cde8b760-8eb6-4217-a8dc-7120822fa033", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T01:23:39.000Z" + }, + "end": { + "$date": "2022-04-14T06:07:13.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-14T01:23:39.000Z" + }, + "end": { + "$date": "2022-04-14T06:07:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "e5b3521f-20dc-461b-aba5-161b962c61bf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-14T01:30:15.000Z" + }, + "end": { + "$date": "2022-04-14T01:49:14.000Z" + }, + "events": [ + { + "uuid": "79163634-06b7-4550-8dc0-60b3ecd679a6", + "start": { + "$date": "2022-04-14T01:30:15.000Z" + }, + "end": { + "$date": "2022-04-14T01:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8600e9ea-b5c7-49ae-91bc-acc02dc7d8ab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-14T01:34:41.000Z" + }, + "end": { + "$date": "2022-04-14T02:48:12.000Z" + }, + "events": [ + { + "uuid": "c0600be3-d6f4-4ced-b223-506c2a2113cd", + "start": { + "$date": "2022-04-14T01:34:41.000Z" + }, + "end": { + "$date": "2022-04-14T02:48:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "27dbfa2e-3b7e-45c2-91b9-c51844fe3b8b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-14T01:49:37.000Z" + }, + "end": { + "$date": "2022-04-14T02:49:00.000Z" + }, + "events": [ + { + "uuid": "ce3ad4de-6560-4061-a0cb-99112edc13e0", + "start": { + "$date": "2022-04-14T01:49:37.000Z" + }, + "end": { + "$date": "2022-04-14T02:01:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "013a3b5f-32af-4038-82d8-ba0cb530a358", + "start": { + "$date": "2022-04-14T02:01:37.000Z" + }, + "end": { + "$date": "2022-04-14T02:05:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99caed75-a04b-40a1-958f-e88895fbd4ed", + "start": { + "$date": "2022-04-14T02:05:37.000Z" + }, + "end": { + "$date": "2022-04-14T02:18:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c61d0551-f1b3-42b6-8513-682c315efc62", + "start": { + "$date": "2022-04-14T02:18:37.000Z" + }, + "end": { + "$date": "2022-04-14T02:20:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e4a916d1-c021-4c85-881e-fefdfd45d614", + "start": { + "$date": "2022-04-14T02:20:37.000Z" + }, + "end": { + "$date": "2022-04-14T02:49:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ba014545-0cdb-455e-bae1-af4c936c94e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-14T01:58:56.000Z" + }, + "end": { + "$date": "2022-04-14T02:30:48.000Z" + }, + "events": [ + { + "uuid": "f0d5a70c-7de8-41c2-b9a0-1fb3f4b0f635", + "start": { + "$date": "2022-04-14T01:58:56.000Z" + }, + "end": { + "$date": "2022-04-14T02:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "3ba25fe8-2a32-4ab0-8a54-c3a030b84e77", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-14T02:31:30.000Z" + }, + "end": { + "$date": "2022-04-14T05:02:45.000Z" + }, + "events": [ + { + "uuid": "b868b9d6-f8b7-4abe-a968-3e4ae39f619c", + "start": { + "$date": "2022-04-14T02:31:30.000Z" + }, + "end": { + "$date": "2022-04-14T05:02:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "ac143e45-dd34-4886-af58-63c03eaedd14", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-14T02:49:07.000Z" + }, + "end": { + "$date": "2022-04-14T03:36:47.000Z" + }, + "events": [ + { + "uuid": "4231762c-ea8e-4f45-b40b-53f08abef941", + "start": { + "$date": "2022-04-14T02:49:07.000Z" + }, + "end": { + "$date": "2022-04-14T03:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "068b2496-b12d-4453-80e6-241f79c741b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-14T03:04:17.000Z" + }, + "end": { + "$date": "2022-04-14T03:15:23.000Z" + }, + "events": [ + { + "uuid": "9732cbee-5e45-4370-9ff3-2b172b2aa714", + "start": { + "$date": "2022-04-14T03:04:17.000Z" + }, + "end": { + "$date": "2022-04-14T03:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "de7daaa2-aa13-454c-9402-0ac99d7dc1a1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-14T03:15:38.000Z" + }, + "end": { + "$date": "2022-04-14T06:04:44.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-14T03:15:38.000Z" + }, + "end": { + "$date": "2022-04-14T06:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "941f3bd9-838a-4de0-9a7b-1f3363f5e899", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-14T03:18:19.000Z" + }, + "end": { + "$date": "2022-04-14T04:12:18.000Z" + }, + "events": [ + { + "uuid": "2eb89879-c028-41f5-8bf3-c2da92f7f55f", + "start": { + "$date": "2022-04-14T03:18:19.000Z" + }, + "end": { + "$date": "2022-04-14T04:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "fc4e6d99-16d8-4adc-b68f-d43fe6ee708f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-14T04:11:16.000Z" + }, + "end": { + "$date": "2022-04-14T04:25:08.000Z" + }, + "events": [ + { + "uuid": "138c087a-8b63-49cd-8cd2-f8e570188f0f", + "start": { + "$date": "2022-04-14T04:11:16.000Z" + }, + "end": { + "$date": "2022-04-14T04:25:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7a881dd3-5c99-42e1-af1d-2e7e150cfc11", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-14T04:28:38.000Z" + }, + "end": { + "$date": "2022-04-14T05:09:32.000Z" + }, + "events": [ + { + "uuid": "47731b66-1e40-4d38-bbb0-86072609f67e", + "start": { + "$date": "2022-04-14T04:28:38.000Z" + }, + "end": { + "$date": "2022-04-14T05:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c05e1132-de23-4f6a-a573-dd57e1b69765", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-14T05:20:16.000Z" + }, + "end": { + "$date": "2022-04-14T05:56:21.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-14T05:20:16.000Z" + }, + "end": { + "$date": "2022-04-14T05:56:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d96db441-22ca-4b73-88f4-e13618d0f538", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-14T05:15:42.000Z" + }, + "end": { + "$date": "2022-04-14T07:29:46.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-04-14T05:15:42.000Z" + }, + "end": { + "$date": "2022-04-14T07:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "aa9b245e-e6bd-4352-a5cf-ce95990633c2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-14T05:52:57.000Z" + }, + "end": { + "$date": "2022-04-14T07:59:14.000Z" + }, + "events": [ + { + "uuid": "b099e535-beb7-4b2d-9d07-5bfec4e99e58", + "start": { + "$date": "2022-04-14T05:52:57.000Z" + }, + "end": { + "$date": "2022-04-14T07:59:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6d354e19-c096-4dd5-8f0b-fdcb5f28b65e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-14T06:22:39.000Z" + }, + "end": { + "$date": "2022-04-14T06:44:04.000Z" + }, + "events": [ + { + "uuid": "799c9cdf-75f1-4b0a-aeb0-a43436e7f7c4", + "start": { + "$date": "2022-04-14T06:22:39.000Z" + }, + "end": { + "$date": "2022-04-14T06:44:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a11d6852-55f9-40c1-acef-b18be9452c1d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-14T06:20:25.000Z" + }, + "end": { + "$date": "2022-04-14T07:38:55.000Z" + }, + "events": [ + { + "uuid": "07607599-014f-455f-b76d-91c86f7ea62f", + "start": { + "$date": "2022-04-14T06:20:25.000Z" + }, + "end": { + "$date": "2022-04-14T07:38:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b269c046-ece2-47a0-861f-5da6dc5031ae", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T19:13:28.000Z" + }, + "end": { + "$date": "2022-04-14T19:14:58.000Z" + }, + "events": [ + { + "uuid": "7e384572-a953-424a-8a32-61d268af877d", + "start": { + "$date": "2022-04-14T19:13:28.000Z" + }, + "end": { + "$date": "2022-04-14T19:14:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "68365ee8-58a1-45f8-94b2-e3cc2a37a712", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T19:19:59.000Z" + }, + "end": { + "$date": "2022-04-14T19:53:42.000Z" + }, + "events": [ + { + "uuid": "722b1ab4-e5b1-4027-9a0c-24301e06310b", + "start": { + "$date": "2022-04-14T19:19:59.000Z" + }, + "end": { + "$date": "2022-04-14T19:53:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1975a305-3179-4245-95d1-b3a192399b81", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-14T21:13:33.000Z" + }, + "end": { + "$date": "2022-04-14T22:13:11.000Z" + }, + "events": [ + { + "uuid": "1231ca09-557c-4dca-a388-54580a5498ca", + "start": { + "$date": "2022-04-14T21:13:33.000Z" + }, + "end": { + "$date": "2022-04-14T22:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "15228558-70ff-4553-9a82-e96f15d61821", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T21:51:29.000Z" + }, + "end": { + "$date": "2022-04-14T22:11:11.000Z" + }, + "events": [ + { + "uuid": "8592b9d6-9978-4c6a-9747-7213738dd317", + "start": { + "$date": "2022-04-14T21:51:29.000Z" + }, + "end": { + "$date": "2022-04-14T22:11:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "3f72363d-53d8-41b1-9097-230d4b5bb935", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T22:11:46.000Z" + }, + "end": { + "$date": "2022-04-14T22:27:12.000Z" + }, + "events": [ + { + "uuid": "15b413f0-0ea6-423f-8bea-aee24bbc624d", + "start": { + "$date": "2022-04-14T22:11:46.000Z" + }, + "end": { + "$date": "2022-04-14T22:27:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "32780a50-5503-4511-aab9-597e46b2244e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-14T23:02:03.000Z" + }, + "end": { + "$date": "2022-04-15T01:06:08.000Z" + }, + "events": [ + { + "uuid": "cfebbf8f-a6b4-4008-9e8b-0bf8b3a3dec5", + "start": { + "$date": "2022-04-14T23:02:03.000Z" + }, + "end": { + "$date": "2022-04-15T01:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f5c74d46-258c-4e19-8245-2a7388a0a867", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-14T23:04:43.000Z" + }, + "end": { + "$date": "2022-04-15T00:37:41.000Z" + }, + "events": [ + { + "uuid": "426ddbfd-78be-4b73-8db1-eaa7a84aa89a", + "start": { + "$date": "2022-04-14T23:04:43.000Z" + }, + "end": { + "$date": "2022-04-15T00:37:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d09a1b0a-a229-4804-9f4f-046af8d378a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-14T23:14:56.000Z" + }, + "end": { + "$date": "2022-04-15T05:57:12.000Z" + }, + "events": [ + { + "uuid": "09658287-7755-4173-a16d-68b1546f12c0", + "start": { + "$date": "2022-04-14T23:14:56.000Z" + }, + "end": { + "$date": "2022-04-15T05:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c37b16b4-cea4-4160-81c0-3d514dcc86b3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T00:37:21.000Z" + }, + "end": { + "$date": "2022-04-15T01:39:32.000Z" + }, + "events": [ + { + "uuid": "2c5bbf6f-0f46-46aa-ab23-81b9f5e5ddbc", + "start": { + "$date": "2022-04-15T00:37:21.000Z" + }, + "end": { + "$date": "2022-04-15T00:47:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f450b29-e860-4cca-8965-a72ab8d92556", + "start": { + "$date": "2022-04-15T00:47:21.000Z" + }, + "end": { + "$date": "2022-04-15T00:52:21.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aaa711ca-68be-4b64-99c3-4ca56843d2e1", + "start": { + "$date": "2022-04-15T00:52:21.000Z" + }, + "end": { + "$date": "2022-04-15T01:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cf6c53f1-653f-4b07-be37-f5c5335907f0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-15T00:52:48.000Z" + }, + "end": { + "$date": "2022-04-15T00:57:14.000Z" + }, + "events": [ + { + "uuid": "3391535d-687b-4ca4-817b-7c8872b045e5", + "start": { + "$date": "2022-04-15T00:52:48.000Z" + }, + "end": { + "$date": "2022-04-15T00:57:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "a00344fb-5b0d-455d-b083-fa9fe3109ef8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-15T01:08:35.000Z" + }, + "end": { + "$date": "2022-04-15T12:42:24.000Z" + }, + "events": [ + { + "uuid": "f486ea4c-1c85-476c-9e62-01215718aa10", + "start": { + "$date": "2022-04-15T01:08:35.000Z" + }, + "end": { + "$date": "2022-04-15T01:11:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "35ddb942-23be-4c86-84fa-e0cc61b6e276", + "start": { + "$date": "2022-04-15T01:11:35.000Z" + }, + "end": { + "$date": "2022-04-15T12:42:24.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "dfd0583f-3548-4efd-afdb-7e5a7913c506", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-15T01:09:08.000Z" + }, + "end": { + "$date": "2022-04-15T02:57:46.000Z" + }, + "events": [ + { + "uuid": "63f2503d-3fc2-43b5-b844-04c6118fce75", + "start": { + "$date": "2022-04-15T01:09:08.000Z" + }, + "end": { + "$date": "2022-04-15T02:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2aa9266d-2ce6-44e7-ad10-407f27229e4e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T01:39:43.000Z" + }, + "end": { + "$date": "2022-04-15T01:54:43.000Z" + }, + "events": [ + { + "uuid": "4d6d745e-37bd-4107-a422-8f5b73b3bac5", + "start": { + "$date": "2022-04-15T01:39:43.000Z" + }, + "end": { + "$date": "2022-04-15T01:54:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1779cf58-9dee-4abe-8104-cf1dc3793cc2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-15T03:59:16.000Z" + }, + "end": { + "$date": "2022-04-15T03:59:32.000Z" + }, + "events": [ + { + "uuid": "e9ce0e12-f860-46eb-9a44-0174f0d4f422", + "start": { + "$date": "2022-04-15T03:59:16.000Z" + }, + "end": { + "$date": "2022-04-15T03:59:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd3213b3-2417-459d-9d6f-92450e8191ce", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-15T01:59:48.000Z" + }, + "end": { + "$date": "2022-04-15T05:11:53.000Z" + }, + "events": [ + { + "uuid": "f7fdbf03-8c1a-4120-a044-e73006c11b8f", + "start": { + "$date": "2022-04-15T01:59:48.000Z" + }, + "end": { + "$date": "2022-04-15T05:11:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "5e263966-94e2-45c3-bc65-359b89da50a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-15T03:05:12.000Z" + }, + "end": { + "$date": "2022-04-15T03:18:54.000Z" + }, + "events": [ + { + "uuid": "a9f631fc-4630-4b77-8f2d-38cc10accefd", + "start": { + "$date": "2022-04-15T03:05:12.000Z" + }, + "end": { + "$date": "2022-04-15T03:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "d814231f-0d9d-4a56-88ba-a18a6bc4f7d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T03:09:18.000Z" + }, + "end": { + "$date": "2022-04-15T03:53:26.000Z" + }, + "events": [ + { + "uuid": "572711e6-b57f-44ba-b8d4-7ce4160ca420", + "start": { + "$date": "2022-04-15T03:09:18.000Z" + }, + "end": { + "$date": "2022-04-15T03:53:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a1807bc7-67e1-49de-bd91-bdea6dbd13d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T03:54:06.000Z" + }, + "end": { + "$date": "2022-04-15T04:32:12.000Z" + }, + "events": [ + { + "uuid": "78993fc1-0f32-4bd3-ab9d-29ced639e43a", + "start": { + "$date": "2022-04-15T03:54:06.000Z" + }, + "end": { + "$date": "2022-04-15T04:32:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0be8ed39-0116-452c-b096-ce5b6a7f7316", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T04:32:21.000Z" + }, + "end": { + "$date": "2022-04-15T04:34:50.000Z" + }, + "events": [ + { + "uuid": "e45e95ef-046d-4c37-bbd2-ce6de0bf88bf", + "start": { + "$date": "2022-04-15T04:32:21.000Z" + }, + "end": { + "$date": "2022-04-15T04:34:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "24be9dbe-b68b-464b-83cc-d2ed2443b044", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T04:35:03.000Z" + }, + "end": { + "$date": "2022-04-15T06:42:27.000Z" + }, + "events": [ + { + "uuid": "20a70a57-c01d-4097-8357-55f031a9ec78", + "start": { + "$date": "2022-04-15T04:35:03.000Z" + }, + "end": { + "$date": "2022-04-15T06:42:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4cf36dc1-92c0-4c22-ad83-ca6c27c530f2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-15T05:00:40.000Z" + }, + "end": { + "$date": "2022-04-15T07:06:50.000Z" + }, + "events": [ + { + "uuid": "64ddcea5-63aa-42e3-b95a-03f3002351de", + "start": { + "$date": "2022-04-15T05:00:40.000Z" + }, + "end": { + "$date": "2022-04-15T07:06:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c7b89720-e17e-4d36-855f-8cf184707870", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-15T06:40:21.000Z" + }, + "end": { + "$date": "2022-04-15T06:42:51.000Z" + }, + "events": [ + { + "uuid": "edd542c0-b020-4a28-a6d1-e22676e7bb24", + "start": { + "$date": "2022-04-15T06:40:21.000Z" + }, + "end": { + "$date": "2022-04-15T06:42:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9dad2d7b-7f85-4bf3-8b73-050a36f2513c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-15T06:43:01.000Z" + }, + "end": { + "$date": "2022-04-15T07:11:38.000Z" + }, + "events": [ + { + "uuid": "937a953f-6f86-4d70-a49a-2409926e6e9f", + "start": { + "$date": "2022-04-15T06:43:01.000Z" + }, + "end": { + "$date": "2022-04-15T07:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a84556d9-45af-4172-9af9-ef008d798446", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-15T07:22:29.000Z" + }, + "end": { + "$date": "2022-04-15T07:59:35.000Z" + }, + "events": [ + { + "uuid": "f573a558-0470-4a8f-9682-be908859a6ac", + "start": { + "$date": "2022-04-15T07:22:29.000Z" + }, + "end": { + "$date": "2022-04-15T07:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "6f61290c-b00b-419d-9967-be42a36af526", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-15T07:52:26.000Z" + }, + "end": { + "$date": "2022-04-15T11:45:48.000Z" + }, + "events": [ + { + "uuid": "ce7a5bd8-3ce9-40fb-9e35-afea488a24c8", + "start": { + "$date": "2022-04-15T07:52:26.000Z" + }, + "end": { + "$date": "2022-04-15T11:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "21e8e2bf-8759-482a-bf2c-4d7d61fdfcc7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-15T18:51:16.000Z" + }, + "end": { + "$date": "2022-04-15T19:46:45.000Z" + }, + "events": [ + { + "uuid": "e48556dc-c843-42dd-9f86-c84382f8dfed", + "start": { + "$date": "2022-04-15T18:51:16.000Z" + }, + "end": { + "$date": "2022-04-15T19:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "63a131eb-f88e-4377-9c20-622a6db82d5a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-15T19:48:30.000Z" + }, + "end": { + "$date": "2022-04-15T21:42:44.000Z" + }, + "events": [ + { + "uuid": "1809242a-4462-4b68-b817-7b9f371c02be", + "start": { + "$date": "2022-04-15T19:48:30.000Z" + }, + "end": { + "$date": "2022-04-15T21:42:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "477cef7c-d5d5-4cc3-8850-df247e05baa7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-15T20:42:57.000Z" + }, + "end": { + "$date": "2022-04-16T00:15:20.000Z" + }, + "events": [ + { + "uuid": "169657e5-3db9-4bf5-a38c-730575bad466", + "start": { + "$date": "2022-04-15T20:42:57.000Z" + }, + "end": { + "$date": "2022-04-16T00:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "96786fc3-ddc0-4a75-a1a9-e08d0bfc7211", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-15T22:09:46.000Z" + }, + "end": { + "$date": "2022-04-16T01:38:50.000Z" + }, + "events": [ + { + "uuid": "76fdcfb7-5b86-4e23-b227-44ab5a390157", + "start": { + "$date": "2022-04-15T22:09:46.000Z" + }, + "end": { + "$date": "2022-04-15T22:47:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39f9bf53-240b-40fd-8b58-97ed2f4653f8", + "start": { + "$date": "2022-04-15T22:47:46.000Z" + }, + "end": { + "$date": "2022-04-15T23:18:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0247ecd3-d14a-4e1f-8c22-31f025fccd21", + "start": { + "$date": "2022-04-15T23:18:46.000Z" + }, + "end": { + "$date": "2022-04-16T01:38:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "e8516d6f-c254-48af-ac16-6570a8b161eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-15T22:56:01.000Z" + }, + "end": { + "$date": "2022-04-16T03:09:09.000Z" + }, + "events": [ + { + "uuid": "1fe2297a-e110-461c-9c77-dbce8558d598", + "start": { + "$date": "2022-04-15T22:56:01.000Z" + }, + "end": { + "$date": "2022-04-16T03:09:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f6d2288e-8141-4506-8841-e52abc011995", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-16T00:18:20.000Z" + }, + "end": { + "$date": "2022-04-16T02:20:57.000Z" + }, + "events": [ + { + "uuid": "603d0cfd-cab8-4635-9215-7417987456e5", + "start": { + "$date": "2022-04-16T00:18:20.000Z" + }, + "end": { + "$date": "2022-04-16T00:28:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "44855893-e611-4910-ae92-10e49441bbb7", + "start": { + "$date": "2022-04-16T00:28:20.000Z" + }, + "end": { + "$date": "2022-04-16T01:08:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c434d94f-8050-403a-b6e4-ae3e95b6b03b", + "start": { + "$date": "2022-04-16T01:08:20.000Z" + }, + "end": { + "$date": "2022-04-16T01:19:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30982de5-1e40-4230-a780-98a2c1627bff", + "start": { + "$date": "2022-04-16T01:19:20.000Z" + }, + "end": { + "$date": "2022-04-16T01:41:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f10735ce-1e59-4ca5-8ca4-3c46fcbc551d", + "start": { + "$date": "2022-04-16T01:41:20.000Z" + }, + "end": { + "$date": "2022-04-16T02:20:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08404583-c934-4dda-b4a7-b0b690b9731f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-16T00:48:52.000Z" + }, + "end": { + "$date": "2022-04-16T02:58:25.000Z" + }, + "events": [ + { + "uuid": "19c4eab1-f1a1-4e3f-8312-4407f507b923", + "start": { + "$date": "2022-04-16T00:48:52.000Z" + }, + "end": { + "$date": "2022-04-16T02:58:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "289d392e-0cbc-4b7d-95f5-7725eef2bbdd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-16T00:48:53.000Z" + }, + "end": { + "$date": "2022-04-16T02:58:32.000Z" + }, + "events": [ + { + "uuid": "e485d806-86e1-4f65-b49b-a64a435e93de", + "start": { + "$date": "2022-04-16T00:48:53.000Z" + }, + "end": { + "$date": "2022-04-16T02:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9675865d-f90a-4471-a95b-b44ece72a38a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T00:54:24.000Z" + }, + "end": { + "$date": "2022-04-16T01:29:16.000Z" + }, + "events": [ + { + "uuid": "3965ae83-2cbe-4a12-a03f-650aa501d91a", + "start": { + "$date": "2022-04-16T00:54:24.000Z" + }, + "end": { + "$date": "2022-04-16T01:29:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6a379d1a-4977-4fbe-aa91-925f83947594", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T01:31:47.000Z" + }, + "end": { + "$date": "2022-04-16T02:09:32.000Z" + }, + "events": [ + { + "uuid": "7962ebc5-4c0f-4b88-8e69-ed2b63787ab0", + "start": { + "$date": "2022-04-16T01:31:47.000Z" + }, + "end": { + "$date": "2022-04-16T02:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5bd82009-df45-4dac-a6cd-6e8bcb2710b0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T02:20:58.000Z" + }, + "end": { + "$date": "2022-04-16T02:39:18.000Z" + }, + "events": [ + { + "uuid": "9d9114c3-2afd-439f-865e-facf43e40ae0", + "start": { + "$date": "2022-04-16T02:20:58.000Z" + }, + "end": { + "$date": "2022-04-16T02:39:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8199694d-6e66-4998-bca8-c2c62c376eaf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-16T02:22:12.000Z" + }, + "end": { + "$date": "2022-04-16T06:54:40.000Z" + }, + "events": [ + { + "uuid": "4596c08e-ab5c-4f91-ad21-cd708e754223", + "start": { + "$date": "2022-04-16T02:22:12.000Z" + }, + "end": { + "$date": "2022-04-16T06:54:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bff5f037-0721-4212-a36d-00e4f542ddca", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T02:41:54.000Z" + }, + "end": { + "$date": "2022-04-16T03:10:24.000Z" + }, + "events": [ + { + "uuid": "6c0afaa4-8c4d-4235-806a-810425f1f2d4", + "start": { + "$date": "2022-04-16T02:41:54.000Z" + }, + "end": { + "$date": "2022-04-16T03:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d862f56-4798-48e9-8d5b-d38dfb7a4e4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T03:13:15.000Z" + }, + "end": { + "$date": "2022-04-16T03:50:39.000Z" + }, + "events": [ + { + "uuid": "93f7bb8c-9b2a-46e6-8807-f1c53e73049f", + "start": { + "$date": "2022-04-16T03:13:15.000Z" + }, + "end": { + "$date": "2022-04-16T03:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4ab18fe6-8fc8-466e-8693-ed065d8d518c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-16T03:57:49.000Z" + }, + "end": { + "$date": "2022-04-16T04:50:54.000Z" + }, + "events": [ + { + "uuid": "d6dcf7d4-aad0-4608-b95f-fc262e01caea", + "start": { + "$date": "2022-04-16T03:57:49.000Z" + }, + "end": { + "$date": "2022-04-16T04:50:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d87d3105-3b06-4dbe-8eb9-963dd58d563a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-16T04:33:24.000Z" + }, + "end": { + "$date": "2022-04-16T05:53:45.000Z" + }, + "events": [ + { + "uuid": "addf5c03-544a-4650-933e-c64e06bc5c1f", + "start": { + "$date": "2022-04-16T04:33:24.000Z" + }, + "end": { + "$date": "2022-04-16T05:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "07e9fd3d-fdbb-4239-b521-4706d2e7d237", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T04:54:23.000Z" + }, + "end": { + "$date": "2022-04-16T05:28:56.000Z" + }, + "events": [ + { + "uuid": "7ba3dcb2-f35b-43cc-9025-62c4897a06c8", + "start": { + "$date": "2022-04-16T04:54:23.000Z" + }, + "end": { + "$date": "2022-04-16T05:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "794934c1-a61c-4196-8740-6fa3715b0202", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-16T04:52:53.000Z" + }, + "end": { + "$date": "2022-04-16T06:30:30.000Z" + }, + "events": [ + { + "uuid": "96eea63c-b369-40ac-9696-2f0be5911912", + "start": { + "$date": "2022-04-16T04:52:53.000Z" + }, + "end": { + "$date": "2022-04-16T06:30:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "97ca0fbd-a16b-4e94-a827-b39d27d7b08a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-16T04:53:38.000Z" + }, + "end": { + "$date": "2022-04-16T07:08:49.000Z" + }, + "events": [ + { + "uuid": "f459b2dc-e467-4279-bff8-af62814aea56", + "start": { + "$date": "2022-04-16T04:53:38.000Z" + }, + "end": { + "$date": "2022-04-16T07:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6270b952-e620-44cb-8543-982e85f7941b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T05:30:47.000Z" + }, + "end": { + "$date": "2022-04-16T05:34:06.000Z" + }, + "events": [ + { + "uuid": "220d3f63-2530-4e7a-9e69-cf306d36fd3d", + "start": { + "$date": "2022-04-16T05:30:47.000Z" + }, + "end": { + "$date": "2022-04-16T05:34:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e9321235-f12b-41c3-b83e-30205c1472fe", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T05:37:06.000Z" + }, + "end": { + "$date": "2022-04-16T05:39:12.000Z" + }, + "events": [ + { + "uuid": "f2773074-0ae3-4913-963e-6ad9849210ae", + "start": { + "$date": "2022-04-16T05:37:06.000Z" + }, + "end": { + "$date": "2022-04-16T05:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2b2f6c70-0234-47e4-a412-8a62b82338ca", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T05:41:25.000Z" + }, + "end": { + "$date": "2022-04-16T05:58:11.000Z" + }, + "events": [ + { + "uuid": "74b6166e-45e6-4066-864e-3060347370db", + "start": { + "$date": "2022-04-16T05:41:25.000Z" + }, + "end": { + "$date": "2022-04-16T05:58:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "51d95ab2-d687-41da-8c6c-fab1743739fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-16T05:42:26.000Z" + }, + "end": { + "$date": "2022-04-16T06:22:41.000Z" + }, + "events": [ + { + "uuid": "e52683c8-fa47-4959-83cd-f72b285da334", + "start": { + "$date": "2022-04-16T05:42:26.000Z" + }, + "end": { + "$date": "2022-04-16T06:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8b045c98-ed7d-4883-bc49-bcbfea004ee7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-16T05:54:09.000Z" + }, + "end": { + "$date": "2022-04-16T06:23:10.000Z" + }, + "events": [ + { + "uuid": "cd2015a4-8b5a-4511-b21b-fe27c3629ca2", + "start": { + "$date": "2022-04-16T05:54:09.000Z" + }, + "end": { + "$date": "2022-04-16T06:23:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "f6cb50dc-e499-4613-b0ae-5c9265e28be1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-16T05:54:25.000Z" + }, + "end": { + "$date": "2022-04-16T11:16:24.000Z" + }, + "events": [ + { + "uuid": "a5a4b58d-6d04-412e-8bd7-3a0757093793", + "start": { + "$date": "2022-04-16T05:54:25.000Z" + }, + "end": { + "$date": "2022-04-16T11:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f20bf0b0-58c9-42f8-93c5-87a5864cf5b2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T06:00:51.000Z" + }, + "end": { + "$date": "2022-04-16T06:31:17.000Z" + }, + "events": [ + { + "uuid": "46bc59e4-2c72-4117-9bdb-781ba41405a9", + "start": { + "$date": "2022-04-16T06:00:51.000Z" + }, + "end": { + "$date": "2022-04-16T06:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "19c0b522-9346-4bad-b94e-1dfbe26ee44a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-16T06:24:12.000Z" + }, + "end": { + "$date": "2022-04-16T07:00:19.000Z" + }, + "events": [ + { + "uuid": "fa6176cb-af14-42e3-a073-3bff22d58ff1", + "start": { + "$date": "2022-04-16T06:24:12.000Z" + }, + "end": { + "$date": "2022-04-16T07:00:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8dc67e8f-c6bd-4845-add2-570bb24ab581", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T06:34:13.000Z" + }, + "end": { + "$date": "2022-04-16T07:00:40.000Z" + }, + "events": [ + { + "uuid": "1fe6b999-74a1-4ee0-94fc-f20ff2bfd44e", + "start": { + "$date": "2022-04-16T06:34:13.000Z" + }, + "end": { + "$date": "2022-04-16T07:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9fc2577f-2f46-4e74-aaea-4721a0ad31d5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T07:03:14.000Z" + }, + "end": { + "$date": "2022-04-16T07:35:29.000Z" + }, + "events": [ + { + "uuid": "d4991696-2891-4c5b-9e4c-6d67a6b077d8", + "start": { + "$date": "2022-04-16T07:03:14.000Z" + }, + "end": { + "$date": "2022-04-16T07:35:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b3b1731-e0c3-4454-97b8-191bf3619a59", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-16T07:13:35.000Z" + }, + "end": { + "$date": "2022-04-16T07:38:46.000Z" + }, + "events": [ + { + "uuid": "027b8bc4-a19b-426c-aee9-72cf146d2164", + "start": { + "$date": "2022-04-16T07:13:35.000Z" + }, + "end": { + "$date": "2022-04-16T07:38:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa90c169-21d4-41ca-83f1-b8a2de5727f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-16T07:13:31.000Z" + }, + "end": { + "$date": "2022-04-16T07:38:47.000Z" + }, + "events": [ + { + "uuid": "19d5107a-dcab-4d05-a13f-6b56e02ec706", + "start": { + "$date": "2022-04-16T07:13:31.000Z" + }, + "end": { + "$date": "2022-04-16T07:38:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7073897c-28a8-49f9-8845-bd3ec57d7de0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T07:36:49.000Z" + }, + "end": { + "$date": "2022-04-16T07:37:10.000Z" + }, + "events": [ + { + "uuid": "79610870-3647-4534-8e87-fd712fc5ee7c", + "start": { + "$date": "2022-04-16T07:36:49.000Z" + }, + "end": { + "$date": "2022-04-16T07:37:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0b659674-6041-4d47-b2a4-8b20b2a34e19", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T07:42:07.000Z" + }, + "end": { + "$date": "2022-04-16T08:03:58.000Z" + }, + "events": [ + { + "uuid": "92888d17-16a4-4b4e-b2f0-8cf1df0d08d5", + "start": { + "$date": "2022-04-16T07:42:07.000Z" + }, + "end": { + "$date": "2022-04-16T08:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96c60129-d02c-4da6-ac48-b76fc8f03a18", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-16T07:43:08.000Z" + }, + "end": { + "$date": "2022-04-16T08:06:18.000Z" + }, + "events": [ + { + "uuid": "875e51c7-46f7-4440-b206-ca39c324bd8f", + "start": { + "$date": "2022-04-16T07:43:08.000Z" + }, + "end": { + "$date": "2022-04-16T08:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "eda689f7-2341-4c1b-9847-e3fa95da9879", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-16T07:43:06.000Z" + }, + "end": { + "$date": "2022-04-16T08:06:16.000Z" + }, + "events": [ + { + "uuid": "62ef985a-e88f-4a9e-a591-e8dae4d3e931", + "start": { + "$date": "2022-04-16T07:43:06.000Z" + }, + "end": { + "$date": "2022-04-16T08:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c98553ea-3f9e-4bd7-8bf0-740d8e8c2e95", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T08:04:27.000Z" + }, + "end": { + "$date": "2022-04-16T08:06:03.000Z" + }, + "events": [ + { + "uuid": "1016c942-4420-47dd-af08-d9d11ed5ddee", + "start": { + "$date": "2022-04-16T08:04:27.000Z" + }, + "end": { + "$date": "2022-04-16T08:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2888b678-fa67-409f-b07e-376d6268c82f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-16T14:27:25.000Z" + }, + "end": { + "$date": "2022-04-16T17:53:20.000Z" + }, + "events": [ + { + "uuid": "455aa50b-53de-408d-b32a-1432b0c0d937", + "start": { + "$date": "2022-04-16T14:27:25.000Z" + }, + "end": { + "$date": "2022-04-16T17:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "21f484cd-ce44-4b90-b656-7410cf392a7f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-16T15:55:25.000Z" + }, + "end": { + "$date": "2022-04-16T15:57:15.000Z" + }, + "events": [ + { + "uuid": "c8a4e29b-0b32-42ff-b618-26b6a66f5bbb", + "start": { + "$date": "2022-04-16T15:55:25.000Z" + }, + "end": { + "$date": "2022-04-16T15:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d539e655-791f-47a1-9ca4-c208377df19b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-16T16:01:00.000Z" + }, + "end": { + "$date": "2022-04-16T16:02:16.000Z" + }, + "events": [ + { + "uuid": "30a0089f-5042-46f8-a734-23a59e35b7d1", + "start": { + "$date": "2022-04-16T16:01:00.000Z" + }, + "end": { + "$date": "2022-04-16T16:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fdae2598-9813-4ece-9458-fb523ee0fe1e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-16T16:38:54.000Z" + }, + "end": { + "$date": "2022-04-16T17:16:31.000Z" + }, + "events": [ + { + "uuid": "6e341a39-43eb-48b6-b9e7-cce6efc7d188", + "start": { + "$date": "2022-04-16T16:38:54.000Z" + }, + "end": { + "$date": "2022-04-16T17:16:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5c92c0d9-9d2a-48ac-bb46-268ff6dc5ab6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-16T18:21:50.000Z" + }, + "end": { + "$date": "2022-04-17T04:04:51.000Z" + }, + "events": [ + { + "uuid": "f74175f0-ff90-42d5-8120-9ccc0014b86f", + "start": { + "$date": "2022-04-16T18:21:50.000Z" + }, + "end": { + "$date": "2022-04-16T19:18:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7bbbfd70-4197-4d71-aefb-efc2432f7094", + "start": { + "$date": "2022-04-16T19:18:50.000Z" + }, + "end": { + "$date": "2022-04-16T19:28:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "edcce3a7-9e4b-41a9-b98e-ba1a527b72be", + "start": { + "$date": "2022-04-16T19:28:50.000Z" + }, + "end": { + "$date": "2022-04-16T19:38:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "710f67bd-763f-48e5-abbc-c7276478cf96", + "start": { + "$date": "2022-04-16T19:38:50.000Z" + }, + "end": { + "$date": "2022-04-16T20:28:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c9e28ff7-ce8e-4cbb-8760-c293a00219a9", + "start": { + "$date": "2022-04-16T20:28:50.000Z" + }, + "end": { + "$date": "2022-04-16T20:30:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffc5aa93-005f-4c49-892e-24ee70dcddea", + "start": { + "$date": "2022-04-16T20:30:50.000Z" + }, + "end": { + "$date": "2022-04-16T21:31:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "345f1cab-61c9-4d0a-a667-91cf5c5df48b", + "start": { + "$date": "2022-04-16T21:31:50.000Z" + }, + "end": { + "$date": "2022-04-16T21:33:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80c90918-0bd3-4293-8526-94f5dcab1fac", + "start": { + "$date": "2022-04-16T21:33:50.000Z" + }, + "end": { + "$date": "2022-04-16T22:07:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e78915a-f402-4733-ae90-2ebfa4d748b3", + "start": { + "$date": "2022-04-16T22:07:50.000Z" + }, + "end": { + "$date": "2022-04-16T22:09:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "151b7015-ca40-404a-867f-2341be9f969c", + "start": { + "$date": "2022-04-16T22:09:50.000Z" + }, + "end": { + "$date": "2022-04-16T22:27:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47272b01-98ba-44a9-ab3c-16294beeb1d0", + "start": { + "$date": "2022-04-16T22:27:50.000Z" + }, + "end": { + "$date": "2022-04-16T22:29:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46c57791-9acb-40a9-9ee5-cc05e9b1dadf", + "start": { + "$date": "2022-04-16T22:29:50.000Z" + }, + "end": { + "$date": "2022-04-16T23:24:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c92a4596-fe86-4ea1-9e20-cdaa845ce4b6", + "start": { + "$date": "2022-04-16T23:24:50.000Z" + }, + "end": { + "$date": "2022-04-16T23:33:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72a65e2c-596b-41d5-8751-4c2cd6b8c7e2", + "start": { + "$date": "2022-04-16T23:33:50.000Z" + }, + "end": { + "$date": "2022-04-16T23:52:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd2906aa-9b01-4977-b128-b84807801e42", + "start": { + "$date": "2022-04-16T23:52:50.000Z" + }, + "end": { + "$date": "2022-04-17T00:08:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1ba5857e-b055-434c-ba79-f9cb7bbb58d4", + "start": { + "$date": "2022-04-17T00:08:50.000Z" + }, + "end": { + "$date": "2022-04-17T00:25:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ceedda1-aad0-4792-81dc-f6f0a6390d9d", + "start": { + "$date": "2022-04-17T00:25:50.000Z" + }, + "end": { + "$date": "2022-04-17T00:27:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b3b69a0-7e98-4767-b64f-12a412916f09", + "start": { + "$date": "2022-04-17T00:27:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:05:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52ddad26-eee3-4c3e-ab21-cdfc4f6f5996", + "start": { + "$date": "2022-04-17T01:05:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:09:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8fe0e236-49c5-4f50-97b5-c3cc7bc08f39", + "start": { + "$date": "2022-04-17T01:09:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:12:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8c87f8b-c48c-4b2c-a60b-bfa0ecde69e0", + "start": { + "$date": "2022-04-17T01:12:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:14:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7264649f-7875-4a3a-a148-9a21eecac0ff", + "start": { + "$date": "2022-04-17T01:14:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:15:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5216601-db20-4466-84ca-2b7061f67bea", + "start": { + "$date": "2022-04-17T01:15:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:17:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "91b42347-72ed-4e5a-9aa1-8ccffb36144d", + "start": { + "$date": "2022-04-17T01:17:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:22:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a6e6b170-0f32-436b-81c6-de6ecc7997d0", + "start": { + "$date": "2022-04-17T01:22:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:24:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f9cde4a0-ee8c-4cd5-b415-648cd7169a6c", + "start": { + "$date": "2022-04-17T01:24:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:30:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "abe77c55-9fc1-4735-873f-5733f05552e8", + "start": { + "$date": "2022-04-17T01:30:50.000Z" + }, + "end": { + "$date": "2022-04-17T01:32:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b2c8c3c-b1d1-407d-ba80-73c53bd09637", + "start": { + "$date": "2022-04-17T01:32:50.000Z" + }, + "end": { + "$date": "2022-04-17T04:04:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "af27036e-aa08-4e2f-b8db-523f5708baa3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-16T19:25:47.000Z" + }, + "end": { + "$date": "2022-04-16T19:27:42.000Z" + }, + "events": [ + { + "uuid": "060b5273-8a3c-4d34-abaa-64ae8461beea", + "start": { + "$date": "2022-04-16T19:25:47.000Z" + }, + "end": { + "$date": "2022-04-16T19:27:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9a8e285d-9b72-449c-85ca-5074ccaa1430", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-16T21:41:55.000Z" + }, + "end": { + "$date": "2022-04-16T22:22:56.000Z" + }, + "events": [ + { + "uuid": "cfc7e743-7406-4620-88e0-99137d6b7bcd", + "start": { + "$date": "2022-04-16T21:41:55.000Z" + }, + "end": { + "$date": "2022-04-16T22:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "41d176b8-5436-411b-9358-6fe3929ebd92", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-16T22:11:35.000Z" + }, + "end": { + "$date": "2022-04-17T00:22:17.000Z" + }, + "events": [ + { + "uuid": "330de335-78a1-45ab-ae09-27cf035b5f0a", + "start": { + "$date": "2022-04-16T22:11:35.000Z" + }, + "end": { + "$date": "2022-04-16T23:49:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d028ce2-b354-4225-95c3-9689c49898f5", + "start": { + "$date": "2022-04-16T23:49:35.000Z" + }, + "end": { + "$date": "2022-04-17T00:03:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48fe7c6b-ea0a-4231-8976-ba758ff11254", + "start": { + "$date": "2022-04-17T00:03:35.000Z" + }, + "end": { + "$date": "2022-04-17T00:18:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5727cf4-2066-4804-9b3c-0e37c3fd3e07", + "start": { + "$date": "2022-04-17T00:18:35.000Z" + }, + "end": { + "$date": "2022-04-17T00:20:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "97bfcc3d-4a39-4f62-a33c-f223d0262a37", + "start": { + "$date": "2022-04-17T00:20:35.000Z" + }, + "end": { + "$date": "2022-04-17T00:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5724d631-3b39-4106-ad6f-4a283dd0bd9d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-16T22:17:41.000Z" + }, + "end": { + "$date": "2022-04-17T02:09:51.000Z" + }, + "events": [ + { + "uuid": "41a9202c-59eb-4797-a67b-8e20ec2715d4", + "start": { + "$date": "2022-04-16T22:17:41.000Z" + }, + "end": { + "$date": "2022-04-17T02:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40cb332d-2547-4bbe-bda0-a8d20e2067a8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-16T22:36:27.000Z" + }, + "end": { + "$date": "2022-04-17T02:10:02.000Z" + }, + "events": [ + { + "uuid": "e5bc1812-50a9-4229-a66b-ed4140df9011", + "start": { + "$date": "2022-04-16T22:36:27.000Z" + }, + "end": { + "$date": "2022-04-17T02:10:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "017b1b7a-6c61-47e4-855d-798a806b687e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-16T22:46:06.000Z" + }, + "end": { + "$date": "2022-04-16T22:47:52.000Z" + }, + "events": [ + { + "uuid": "41164c0e-0e5e-4a18-8de3-9b1852835c88", + "start": { + "$date": "2022-04-16T22:46:06.000Z" + }, + "end": { + "$date": "2022-04-16T22:47:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "41fe6946-a7f8-448a-b937-0f270d8f7e17", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-16T22:46:50.000Z" + }, + "end": { + "$date": "2022-04-17T00:49:25.000Z" + }, + "events": [ + { + "uuid": "61cff527-f819-48ed-ade1-dffdcb22691d", + "start": { + "$date": "2022-04-16T22:46:50.000Z" + }, + "end": { + "$date": "2022-04-17T00:49:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "709104f2-d627-4f49-9fab-52d0c6f51eb1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-16T23:08:26.000Z" + }, + "end": { + "$date": "2022-04-16T23:46:01.000Z" + }, + "events": [ + { + "uuid": "26529cbb-8069-4b8c-a5ce-21943f30b5fe", + "start": { + "$date": "2022-04-16T23:08:26.000Z" + }, + "end": { + "$date": "2022-04-16T23:46:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dd180994-8f6d-4704-9bae-7a63f69a13b9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-17T00:28:55.000Z" + }, + "end": { + "$date": "2022-04-17T01:22:46.000Z" + }, + "events": [ + { + "uuid": "8e2bf95e-bd53-41a7-b79d-400ce5f76014", + "start": { + "$date": "2022-04-17T00:28:55.000Z" + }, + "end": { + "$date": "2022-04-17T01:22:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0e09abf6-8df5-471e-a4b4-6ff2d93bc15b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-17T00:55:21.000Z" + }, + "end": { + "$date": "2022-04-17T02:10:09.000Z" + }, + "events": [ + { + "uuid": "6567e616-685a-4615-95e2-3cafee5eb0db", + "start": { + "$date": "2022-04-17T00:55:21.000Z" + }, + "end": { + "$date": "2022-04-17T02:10:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7cfe6cef-bd9a-4351-acf6-5aee77802eee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-17T01:23:11.000Z" + }, + "end": { + "$date": "2022-04-17T06:51:44.000Z" + }, + "events": [ + { + "uuid": "86483b0a-6916-42b8-8e80-a7e84774e513", + "start": { + "$date": "2022-04-17T01:23:11.000Z" + }, + "end": { + "$date": "2022-04-17T06:51:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ab630bf-8fcd-411a-bbbc-ef0146f9ae59", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-17T02:17:00.000Z" + }, + "end": { + "$date": "2022-04-17T04:03:01.000Z" + }, + "events": [ + { + "uuid": "d3f4eeda-3bbd-482d-86c8-96837fcfcbd1", + "start": { + "$date": "2022-04-17T02:17:00.000Z" + }, + "end": { + "$date": "2022-04-17T04:03:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "675c1644-48c9-4fd3-825f-c02568e95d23", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-04-17T04:54:40.000Z" + }, + "end": { + "$date": "2022-04-17T04:54:52.000Z" + }, + "events": [ + { + "uuid": "2a60f5a8-cf3a-4842-b613-f45439436d8f", + "start": { + "$date": "2022-04-17T04:54:40.000Z" + }, + "end": { + "$date": "2022-04-17T04:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "81592376-4032-41da-883e-b7e324976fb7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-17T05:10:53.000Z" + }, + "end": { + "$date": "2022-04-17T09:07:32.000Z" + }, + "events": [ + { + "uuid": "43686542-0f01-4e7b-8251-f3a6ffc88221", + "start": { + "$date": "2022-04-17T05:10:53.000Z" + }, + "end": { + "$date": "2022-04-17T09:07:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c9cbcf53-dc60-4f88-9df1-6c950b364d87", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-17T05:14:27.000Z" + }, + "end": { + "$date": "2022-04-17T09:07:29.000Z" + }, + "events": [ + { + "uuid": "c00f8268-c63d-427d-93e1-fa331781508a", + "start": { + "$date": "2022-04-17T05:14:27.000Z" + }, + "end": { + "$date": "2022-04-17T09:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "839c20e3-1818-48af-950a-e27612593213", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T05:33:36.000Z" + }, + "end": { + "$date": "2022-04-17T05:43:38.000Z" + }, + "events": [ + { + "uuid": "9163810d-90e9-4691-9c51-77a243b781dd", + "start": { + "$date": "2022-04-17T05:33:36.000Z" + }, + "end": { + "$date": "2022-04-17T05:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "254a5c27-c6a5-4bd6-ab95-6487de2da09a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-17T05:43:47.000Z" + }, + "end": { + "$date": "2022-04-17T09:07:48.000Z" + }, + "events": [ + { + "uuid": "167047c6-4e01-4f5a-a5ab-bb2ea0664a7b", + "start": { + "$date": "2022-04-17T05:43:47.000Z" + }, + "end": { + "$date": "2022-04-17T09:07:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "85111267-f77b-4b4a-92f9-0bae55fd21e9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T05:45:28.000Z" + }, + "end": { + "$date": "2022-04-17T06:22:01.000Z" + }, + "events": [ + { + "uuid": "0a989d80-dd5b-48ef-935f-0a40cc8be0cd", + "start": { + "$date": "2022-04-17T05:45:28.000Z" + }, + "end": { + "$date": "2022-04-17T06:22:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0b45e258-f04c-4a88-bf40-fe4f2799d247", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-17T05:50:33.000Z" + }, + "end": { + "$date": "2022-04-17T05:56:33.000Z" + }, + "events": [ + { + "uuid": "5e858431-fd0c-4e6b-aa5c-0e0bb0fdc4c4", + "start": { + "$date": "2022-04-17T05:50:33.000Z" + }, + "end": { + "$date": "2022-04-17T05:56:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5eb11fa2-ef23-4b72-bac3-b2b97b7a2497", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T06:49:01.000Z" + }, + "end": { + "$date": "2022-04-17T07:12:27.000Z" + }, + "events": [ + { + "uuid": "eb35549a-8248-4e1e-be2b-664ad6d6fc6c", + "start": { + "$date": "2022-04-17T06:49:01.000Z" + }, + "end": { + "$date": "2022-04-17T07:12:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fcc97069-742f-4a9c-9878-e37c51d3cdae", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T07:12:47.000Z" + }, + "end": { + "$date": "2022-04-17T07:37:01.000Z" + }, + "events": [ + { + "uuid": "fc802e93-03bd-47fe-9d80-5231f1112a2e", + "start": { + "$date": "2022-04-17T07:12:47.000Z" + }, + "end": { + "$date": "2022-04-17T07:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "181da444-a617-4054-8a45-f85193779963", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T08:36:51.000Z" + }, + "end": { + "$date": "2022-04-17T11:46:04.000Z" + }, + "events": [ + { + "uuid": "9f4ddda3-21ad-4f06-a3d9-7c0222dfc2b1", + "start": { + "$date": "2022-04-17T08:36:51.000Z" + }, + "end": { + "$date": "2022-04-17T09:42:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7f0c3257-521d-4ce7-8d43-f143ea5cadac", + "start": { + "$date": "2022-04-17T09:42:51.000Z" + }, + "end": { + "$date": "2022-04-17T09:45:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dfff8356-ed5e-40a6-a3d0-5fc34440ddec", + "start": { + "$date": "2022-04-17T09:45:51.000Z" + }, + "end": { + "$date": "2022-04-17T10:39:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "64a993f4-9dba-43ab-92c3-05086d82d9bb", + "start": { + "$date": "2022-04-17T10:39:51.000Z" + }, + "end": { + "$date": "2022-04-17T11:12:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5198774b-c9bc-4125-8ad9-e058f29a9a8f", + "start": { + "$date": "2022-04-17T11:12:51.000Z" + }, + "end": { + "$date": "2022-04-17T11:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2d111d00-191e-43e6-a8e6-5d3ec3c6a96b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-17T15:52:42.000Z" + }, + "end": { + "$date": "2022-04-17T17:29:43.000Z" + }, + "events": [ + { + "uuid": "5ee03292-6f88-4d04-9d40-697a40217799", + "start": { + "$date": "2022-04-17T15:52:42.000Z" + }, + "end": { + "$date": "2022-04-17T17:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d7c17316-f440-42c0-9cf9-ac8e5f673287", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-17T16:11:39.000Z" + }, + "end": { + "$date": "2022-04-17T16:27:26.000Z" + }, + "events": [ + { + "uuid": "35f6b6a4-226e-418f-b869-d89b4c6a2f55", + "start": { + "$date": "2022-04-17T16:11:39.000Z" + }, + "end": { + "$date": "2022-04-17T16:22:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "47f33847-aeed-4e4a-826e-236bdfe47f07", + "start": { + "$date": "2022-04-17T16:22:39.000Z" + }, + "end": { + "$date": "2022-04-17T16:24:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bd226048-1984-4a58-9f55-7d2bbf42d8e2", + "start": { + "$date": "2022-04-17T16:24:39.000Z" + }, + "end": { + "$date": "2022-04-17T16:27:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ca611239-d507-4669-bf33-6a2c559c6de8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-17T17:07:25.000Z" + }, + "end": { + "$date": "2022-04-17T17:29:46.000Z" + }, + "events": [ + { + "uuid": "298958a7-962a-4ccb-bf4e-b3a180b49a14", + "start": { + "$date": "2022-04-17T17:07:25.000Z" + }, + "end": { + "$date": "2022-04-17T17:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "556120b7-cd02-4b68-bdb2-7a5d6d00da38", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-17T17:28:50.000Z" + }, + "end": { + "$date": "2022-04-17T19:19:12.000Z" + }, + "events": [ + { + "uuid": "5e50c2c7-335a-48d2-8817-26414fc2716e", + "start": { + "$date": "2022-04-17T17:28:50.000Z" + }, + "end": { + "$date": "2022-04-17T19:19:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f4fb4b7b-a590-4270-bc57-9738285a1a9f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-17T17:33:58.000Z" + }, + "end": { + "$date": "2022-04-17T17:44:33.000Z" + }, + "events": [ + { + "uuid": "cea1de1b-aa6c-4574-a88e-381dfbc827b6", + "start": { + "$date": "2022-04-17T17:33:58.000Z" + }, + "end": { + "$date": "2022-04-17T17:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2c18172e-da59-4c1b-85a3-3fc26f8094fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-17T17:50:56.000Z" + }, + "end": { + "$date": "2022-04-17T19:13:40.000Z" + }, + "events": [ + { + "uuid": "0bcca709-2cab-45d4-8485-7ccfc215b461", + "start": { + "$date": "2022-04-17T17:50:56.000Z" + }, + "end": { + "$date": "2022-04-17T18:58:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e692c214-d48a-4833-86c4-a2177a24c621", + "start": { + "$date": "2022-04-17T18:58:56.000Z" + }, + "end": { + "$date": "2022-04-17T19:02:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e852057-58c2-49e2-b7bf-b41980fa323b", + "start": { + "$date": "2022-04-17T19:02:56.000Z" + }, + "end": { + "$date": "2022-04-17T19:13:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5b2523c6-ac7e-4355-a155-d304ae362459", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T22:02:08.000Z" + }, + "end": { + "$date": "2022-04-17T22:48:10.000Z" + }, + "events": [ + { + "uuid": "53c05602-061a-4317-8471-b5704806bf70", + "start": { + "$date": "2022-04-17T22:02:08.000Z" + }, + "end": { + "$date": "2022-04-17T22:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "376caea2-2036-4354-81a8-a34775638bb1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-17T23:36:24.000Z" + }, + "end": { + "$date": "2022-04-18T00:41:05.000Z" + }, + "events": [ + { + "uuid": "cbf89146-d611-4ed1-ad40-f4a03963d9a9", + "start": { + "$date": "2022-04-17T23:36:24.000Z" + }, + "end": { + "$date": "2022-04-18T00:41:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0dcc9338-c1bf-4fd1-92f0-6d5d03663e7e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-18T00:25:50.000Z" + }, + "end": { + "$date": "2022-04-18T00:54:35.000Z" + }, + "events": [ + { + "uuid": "09dd486a-bab2-429f-9a3d-3a9d71804e8a", + "start": { + "$date": "2022-04-18T00:25:50.000Z" + }, + "end": { + "$date": "2022-04-18T00:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b8aff84d-b223-4d26-a412-8aa993d05e39", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-18T02:49:14.000Z" + }, + "end": { + "$date": "2022-04-18T03:58:56.000Z" + }, + "events": [ + { + "uuid": "e6dfb96c-5b67-4a9a-ade5-29c1e8bda988", + "start": { + "$date": "2022-04-18T02:49:14.000Z" + }, + "end": { + "$date": "2022-04-18T03:58:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a51bd96b-42ab-4e5c-a19d-9e527322066f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-18T00:58:23.000Z" + }, + "end": { + "$date": "2022-04-18T02:23:52.000Z" + }, + "events": [ + { + "uuid": "8ed2b6f9-30d0-40c8-8d8d-592c91acc214", + "start": { + "$date": "2022-04-18T00:58:23.000Z" + }, + "end": { + "$date": "2022-04-18T02:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d9092e65-048c-418a-82e6-b5ca180e4917", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-18T02:19:53.000Z" + }, + "end": { + "$date": "2022-04-18T05:47:40.000Z" + }, + "events": [ + { + "uuid": "0178304d-83f3-4096-9a23-e86c9de70860", + "start": { + "$date": "2022-04-18T02:19:53.000Z" + }, + "end": { + "$date": "2022-04-18T05:47:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3824fae7-a0d6-4e9e-9754-d6971791d4ad", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-18T03:26:16.000Z" + }, + "end": { + "$date": "2022-04-18T04:13:51.000Z" + }, + "events": [ + { + "uuid": "c5c020d2-00d8-4887-8320-d1336e63277b", + "start": { + "$date": "2022-04-18T03:26:16.000Z" + }, + "end": { + "$date": "2022-04-18T04:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28d8629f-a8fe-4fff-9694-1f456d140539", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-18T05:25:33.000Z" + }, + "end": { + "$date": "2022-04-18T05:29:17.000Z" + }, + "events": [ + { + "uuid": "0209689b-095d-4391-bfdb-1025c447cc55", + "start": { + "$date": "2022-04-18T05:25:33.000Z" + }, + "end": { + "$date": "2022-04-18T05:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "08ac29da-7c8d-4ee8-9d80-a241ee9e56aa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-18T05:45:52.000Z" + }, + "end": { + "$date": "2022-04-18T06:21:41.000Z" + }, + "events": [ + { + "uuid": "e8688aa4-c944-4794-bb98-f53310ca8cef", + "start": { + "$date": "2022-04-18T05:45:52.000Z" + }, + "end": { + "$date": "2022-04-18T06:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "b4cafc57-267c-4149-9e67-e0b7f4c9342d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-18T06:43:21.000Z" + }, + "end": { + "$date": "2022-04-18T10:26:09.000Z" + }, + "events": [ + { + "uuid": "626fa964-0aca-4e24-97bf-04eef599f600", + "start": { + "$date": "2022-04-18T06:43:21.000Z" + }, + "end": { + "$date": "2022-04-18T10:26:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "11275f79-6ee0-461d-b9a9-225ef72138fc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-18T17:51:50.000Z" + }, + "end": { + "$date": "2022-04-18T17:56:20.000Z" + }, + "events": [ + { + "uuid": "eba4a26c-3039-4ff3-943c-6f2d272b0296", + "start": { + "$date": "2022-04-18T17:51:50.000Z" + }, + "end": { + "$date": "2022-04-18T17:56:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "aaab2358-62d3-4099-8742-dc37ee8393b5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-18T20:09:54.000Z" + }, + "end": { + "$date": "2022-04-18T21:49:05.000Z" + }, + "events": [ + { + "uuid": "1a0a86d0-e1bc-4498-9662-d4842a5fafad", + "start": { + "$date": "2022-04-18T20:09:54.000Z" + }, + "end": { + "$date": "2022-04-18T21:49:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faa7162f-60b8-457b-aefb-52df09dea54e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-18T22:03:54.000Z" + }, + "end": { + "$date": "2022-04-18T22:37:54.000Z" + }, + "events": [ + { + "uuid": "702faf40-37ed-47c1-8286-2ca6c0eb9349", + "start": { + "$date": "2022-04-18T22:03:54.000Z" + }, + "end": { + "$date": "2022-04-18T22:37:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0eb62b78-69b7-445c-bcb1-b31a66af732e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-18T23:04:36.000Z" + }, + "end": { + "$date": "2022-04-18T23:28:37.000Z" + }, + "events": [ + { + "uuid": "e9053233-318c-4833-80ae-7cae91212829", + "start": { + "$date": "2022-04-18T23:04:36.000Z" + }, + "end": { + "$date": "2022-04-18T23:28:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c27428ac-bc77-4d38-8e01-8798648d5bd0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-18T23:57:10.000Z" + }, + "end": { + "$date": "2022-04-19T00:08:44.000Z" + }, + "events": [ + { + "uuid": "56d5cf1f-80ce-4d25-8db7-9175c2942909", + "start": { + "$date": "2022-04-18T23:57:10.000Z" + }, + "end": { + "$date": "2022-04-19T00:08:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6ef8dc78-40db-4604-8db5-38b4df9d96a3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T00:05:48.000Z" + }, + "end": { + "$date": "2022-04-19T00:43:30.000Z" + }, + "events": [ + { + "uuid": "9a07bf49-3fc9-4233-a6e1-3dbaa8d382bd", + "start": { + "$date": "2022-04-19T00:05:48.000Z" + }, + "end": { + "$date": "2022-04-19T00:43:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b50f8d02-9a13-426d-af94-19147ea107fd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-19T00:40:16.000Z" + }, + "end": { + "$date": "2022-04-19T02:25:10.000Z" + }, + "events": [ + { + "uuid": "ef749c60-4af1-45cd-93b2-be00907629be", + "start": { + "$date": "2022-04-19T00:40:16.000Z" + }, + "end": { + "$date": "2022-04-19T00:51:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6ec8d92e-e216-4bd1-bd10-13743135d4a5", + "start": { + "$date": "2022-04-19T00:51:16.000Z" + }, + "end": { + "$date": "2022-04-19T00:52:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "401ab76e-bc5b-41d3-8570-ba42efe86850", + "start": { + "$date": "2022-04-19T00:52:16.000Z" + }, + "end": { + "$date": "2022-04-19T02:25:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5710eaaf-2d02-4558-88be-24abd73fd157", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T00:45:53.000Z" + }, + "end": { + "$date": "2022-04-19T01:07:44.000Z" + }, + "events": [ + { + "uuid": "46ba375c-ce5a-4a88-bc7c-f77d2528a05e", + "start": { + "$date": "2022-04-19T00:45:53.000Z" + }, + "end": { + "$date": "2022-04-19T01:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "36775452-5a70-4e82-ac1c-893efc064d80", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-19T01:26:04.000Z" + }, + "end": { + "$date": "2022-04-19T02:04:14.000Z" + }, + "events": [ + { + "uuid": "d78c5e8e-a005-4afd-8ceb-1f07306ceb16", + "start": { + "$date": "2022-04-19T01:26:04.000Z" + }, + "end": { + "$date": "2022-04-19T01:44:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "29f28cbd-6b6f-4096-b15a-e592e1fc61fa", + "start": { + "$date": "2022-04-19T01:44:04.000Z" + }, + "end": { + "$date": "2022-04-19T02:04:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8067eb75-05b0-46fc-b387-c1a1e7267d63", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T02:19:56.000Z" + }, + "end": { + "$date": "2022-04-19T02:59:34.000Z" + }, + "events": [ + { + "uuid": "b106a56f-9bf0-4b9d-9499-fde261c652df", + "start": { + "$date": "2022-04-19T02:19:56.000Z" + }, + "end": { + "$date": "2022-04-19T02:59:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6fcd52e2-0d94-43b2-83bf-e59c87baacfd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-19T02:44:21.000Z" + }, + "end": { + "$date": "2022-04-19T04:47:57.000Z" + }, + "events": [ + { + "uuid": "2de7ad64-ca52-4921-a17f-e40c5363901c", + "start": { + "$date": "2022-04-19T02:44:21.000Z" + }, + "end": { + "$date": "2022-04-19T04:47:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "2748be92-5d68-4e9f-956d-4e2a61debfe0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-19T02:45:18.000Z" + }, + "end": { + "$date": "2022-04-19T04:55:20.000Z" + }, + "events": [ + { + "uuid": "05c9a0d7-7013-4421-9a8f-471d2df183b8", + "start": { + "$date": "2022-04-19T02:45:18.000Z" + }, + "end": { + "$date": "2022-04-19T04:55:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fe211198-a4c8-4fcf-bb95-863b4e8d81a2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-19T02:56:01.000Z" + }, + "end": { + "$date": "2022-04-19T04:29:28.000Z" + }, + "events": [ + { + "uuid": "a50cf741-10fd-4db9-8c7c-57a165c1b599", + "start": { + "$date": "2022-04-19T02:56:01.000Z" + }, + "end": { + "$date": "2022-04-19T04:29:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", + "uuid": "d3f9339f-b1b3-4a5b-a799-7548c16e39f8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T03:02:14.000Z" + }, + "end": { + "$date": "2022-04-19T04:45:37.000Z" + }, + "events": [ + { + "uuid": "421be646-b72c-422a-ad89-9558eb663492", + "start": { + "$date": "2022-04-19T03:02:14.000Z" + }, + "end": { + "$date": "2022-04-19T04:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "beb90192-1ffa-4a27-8554-3fb3257cee3f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-19T04:44:51.000Z" + }, + "end": { + "$date": "2022-04-19T05:47:31.000Z" + }, + "events": [ + { + "uuid": "dd2057e9-5db3-41a2-aa15-6bee8e585995", + "start": { + "$date": "2022-04-19T04:44:51.000Z" + }, + "end": { + "$date": "2022-04-19T05:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efd72850-0b9b-4824-a343-73212ca9d7a0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T05:13:15.000Z" + }, + "end": { + "$date": "2022-04-19T05:43:33.000Z" + }, + "events": [ + { + "uuid": "700078cd-769d-4ad2-bdbf-abed80ad00a4", + "start": { + "$date": "2022-04-19T05:13:15.000Z" + }, + "end": { + "$date": "2022-04-19T05:43:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e95ad8de-7703-40e3-b960-daaba687a062", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-19T05:40:34.000Z" + }, + "end": { + "$date": "2022-04-19T07:58:59.000Z" + }, + "events": [ + { + "uuid": "05c59bb9-15f7-4b45-a338-f0656de2f70c", + "start": { + "$date": "2022-04-19T05:40:34.000Z" + }, + "end": { + "$date": "2022-04-19T07:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ecbf04e0-0973-411b-aaa6-9379aad5fcd5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-19T05:43:38.000Z" + }, + "end": { + "$date": "2022-04-19T08:00:03.000Z" + }, + "events": [ + { + "uuid": "ddf1e8f9-e638-44a8-9ca7-6091feb524b1", + "start": { + "$date": "2022-04-19T05:43:38.000Z" + }, + "end": { + "$date": "2022-04-19T08:00:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "386bf579-1b1b-4f42-8bb1-771f86f96fe8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T05:45:00.000Z" + }, + "end": { + "$date": "2022-04-19T06:07:02.000Z" + }, + "events": [ + { + "uuid": "66dc122d-7acc-4708-abc3-429d4df1d66b", + "start": { + "$date": "2022-04-19T05:45:00.000Z" + }, + "end": { + "$date": "2022-04-19T06:07:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4c49bf2b-e5cb-4b21-bc35-54ff66d443cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T06:10:12.000Z" + }, + "end": { + "$date": "2022-04-19T06:49:27.000Z" + }, + "events": [ + { + "uuid": "4cbd8b57-378b-4fa6-bf5a-578ce8f43f3c", + "start": { + "$date": "2022-04-19T06:10:12.000Z" + }, + "end": { + "$date": "2022-04-19T06:49:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3b3154f4-756d-4f11-8802-39d5007fb2a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-19T06:34:10.000Z" + }, + "end": { + "$date": "2022-04-19T08:00:18.000Z" + }, + "events": [ + { + "uuid": "842020ff-999f-4e42-8695-a0e47b42a3dd", + "start": { + "$date": "2022-04-19T06:34:10.000Z" + }, + "end": { + "$date": "2022-04-19T08:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0123022f-fb21-484e-a4ef-de4615c3e2ce", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T06:49:49.000Z" + }, + "end": { + "$date": "2022-04-19T06:51:59.000Z" + }, + "events": [ + { + "uuid": "bb637c38-2bc3-4542-9aca-490bc3093c00", + "start": { + "$date": "2022-04-19T06:49:49.000Z" + }, + "end": { + "$date": "2022-04-19T06:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "76ab6be1-5de1-4427-87c9-f61f4f883257", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T06:52:04.000Z" + }, + "end": { + "$date": "2022-04-19T07:06:55.000Z" + }, + "events": [ + { + "uuid": "d14c4105-f23a-486a-a4aa-5e85c74559c8", + "start": { + "$date": "2022-04-19T06:52:04.000Z" + }, + "end": { + "$date": "2022-04-19T07:06:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "91777417-b778-40f3-a157-b7d3981cf6a7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-19T11:01:18.000Z" + }, + "end": { + "$date": "2022-04-19T18:03:37.000Z" + }, + "events": [ + { + "uuid": "b7b37538-eddc-4363-bd28-29a82ec9139e", + "start": { + "$date": "2022-04-19T11:01:18.000Z" + }, + "end": { + "$date": "2022-04-19T18:03:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ae171304-0a42-4fbb-99bb-215b04c93095", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T18:57:53.000Z" + }, + "end": { + "$date": "2022-04-19T20:36:45.000Z" + }, + "events": [ + { + "uuid": "ebb7b0ee-3398-48e7-900e-010a7dc7ad3c", + "start": { + "$date": "2022-04-19T18:57:53.000Z" + }, + "end": { + "$date": "2022-04-19T20:36:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8cd2197e-4403-490e-a5fd-84fdab247a7f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-19T21:38:20.000Z" + }, + "end": { + "$date": "2022-04-19T21:49:16.000Z" + }, + "events": [ + { + "uuid": "243e609f-a78e-4823-892d-4a2f84e38917", + "start": { + "$date": "2022-04-19T21:38:20.000Z" + }, + "end": { + "$date": "2022-04-19T21:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09d0944e-136c-49ad-9a8a-d98bb3fc7a24", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T22:24:46.000Z" + }, + "end": { + "$date": "2022-04-19T23:03:07.000Z" + }, + "events": [ + { + "uuid": "40182b97-9362-434e-b9ea-f236d42b23fb", + "start": { + "$date": "2022-04-19T22:24:46.000Z" + }, + "end": { + "$date": "2022-04-19T23:03:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3f05f5d0-dc14-44f6-b847-d8f2cdd87c21", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T23:09:23.000Z" + }, + "end": { + "$date": "2022-04-19T23:48:03.000Z" + }, + "events": [ + { + "uuid": "661dbf7c-b39e-47f9-9c98-7c2b21716403", + "start": { + "$date": "2022-04-19T23:09:23.000Z" + }, + "end": { + "$date": "2022-04-19T23:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afaa6dad-d8ff-4c21-a4b9-de9cfd752fe8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-19T23:48:22.000Z" + }, + "end": { + "$date": "2022-04-19T23:55:03.000Z" + }, + "events": [ + { + "uuid": "ff6c9f78-7617-479e-8880-9929adc8bf57", + "start": { + "$date": "2022-04-19T23:48:22.000Z" + }, + "end": { + "$date": "2022-04-19T23:55:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "34c97ee6-d8fb-4b71-827c-29fa41e1f008", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-20T00:16:09.000Z" + }, + "end": { + "$date": "2022-04-20T00:49:32.000Z" + }, + "events": [ + { + "uuid": "51796442-1c2d-4ec9-a42b-0a1487c5de78", + "start": { + "$date": "2022-04-20T00:16:09.000Z" + }, + "end": { + "$date": "2022-04-20T00:49:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c193cfd3-04ff-461b-9e34-ec365b3e4ccd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-20T00:37:43.000Z" + }, + "end": { + "$date": "2022-04-20T02:06:12.000Z" + }, + "events": [ + { + "uuid": "d4948cdc-4442-4d28-9734-94052b1c4a42", + "start": { + "$date": "2022-04-20T00:37:43.000Z" + }, + "end": { + "$date": "2022-04-20T02:06:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "786d53f8-39ec-43e5-a468-5dacdb130a2e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-20T01:34:07.000Z" + }, + "end": { + "$date": "2022-04-20T07:02:16.000Z" + }, + "events": [ + { + "uuid": "0784275d-7a52-481a-8034-0b5d57934116", + "start": { + "$date": "2022-04-20T01:34:07.000Z" + }, + "end": { + "$date": "2022-04-20T07:02:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c09d0a7d-d805-44b4-aa11-b406fe9c4582", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-20T02:30:48.000Z" + }, + "end": { + "$date": "2022-04-20T03:54:49.000Z" + }, + "events": [ + { + "uuid": "0eea37e1-c44e-4670-b580-d17f47f57d3c", + "start": { + "$date": "2022-04-20T02:30:48.000Z" + }, + "end": { + "$date": "2022-04-20T03:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "44d93875-7285-44c2-a263-1dddeafc3711", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-20T03:09:30.000Z" + }, + "end": { + "$date": "2022-04-20T05:12:03.000Z" + }, + "events": [ + { + "uuid": "6492bd14-ad8e-4f19-8398-92b8f2635e28", + "start": { + "$date": "2022-04-20T03:09:30.000Z" + }, + "end": { + "$date": "2022-04-20T03:39:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c537c2e3-70d9-4293-bd98-17301e85b65e", + "start": { + "$date": "2022-04-20T03:39:30.000Z" + }, + "end": { + "$date": "2022-04-20T03:44:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0b467f27-9418-4111-8bf3-f59e3e34b0ca", + "start": { + "$date": "2022-04-20T03:44:30.000Z" + }, + "end": { + "$date": "2022-04-20T05:12:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9a4779c3-8028-4a4a-964e-461c36afd555", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-20T03:02:25.000Z" + }, + "end": { + "$date": "2022-04-20T05:44:55.000Z" + }, + "events": [ + { + "uuid": "d2c4ed93-9720-48cf-9e7a-8ff72825b5f1", + "start": { + "$date": "2022-04-20T03:02:25.000Z" + }, + "end": { + "$date": "2022-04-20T05:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dd949f19-f02a-4d81-9f06-dfe207c81ac0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-20T03:34:29.000Z" + }, + "end": { + "$date": "2022-04-20T07:55:56.000Z" + }, + "events": [ + { + "uuid": "002273bd-aa2f-4d40-bf5e-fcc846d274ba", + "start": { + "$date": "2022-04-20T03:34:29.000Z" + }, + "end": { + "$date": "2022-04-20T07:55:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d34dbefe-9711-4e0f-a2cf-65bae40e7a1c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-20T03:49:52.000Z" + }, + "end": { + "$date": "2022-04-20T05:32:42.000Z" + }, + "events": [ + { + "uuid": "b742c79e-bb96-4bb9-9afd-bdce7607f633", + "start": { + "$date": "2022-04-20T03:49:52.000Z" + }, + "end": { + "$date": "2022-04-20T05:32:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "48121ecc-9f11-42f8-8544-3d4240a49e65", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-20T03:55:00.000Z" + }, + "end": { + "$date": "2022-04-20T05:01:01.000Z" + }, + "events": [ + { + "uuid": "5e777bed-ff33-4844-ad61-06452d045507", + "start": { + "$date": "2022-04-20T03:55:00.000Z" + }, + "end": { + "$date": "2022-04-20T05:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "10b25c0c-77c3-45cc-89aa-5eaffa986ed4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-20T05:01:42.000Z" + }, + "end": { + "$date": "2022-04-20T05:21:34.000Z" + }, + "events": [ + { + "uuid": "0f02b7ee-9cb4-4b1f-98a3-f7508fd7b3a1", + "start": { + "$date": "2022-04-20T05:01:42.000Z" + }, + "end": { + "$date": "2022-04-20T05:21:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5dd7b962-3256-4d75-a05a-30f85cabec58", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-20T05:16:34.000Z" + }, + "end": { + "$date": "2022-04-20T05:44:41.000Z" + }, + "events": [ + { + "uuid": "561032dc-edf4-4196-b1a1-fbd4f295f634", + "start": { + "$date": "2022-04-20T05:16:34.000Z" + }, + "end": { + "$date": "2022-04-20T05:44:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "900b9f66-306a-4c7a-b0ad-2eb3a4f07d48", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-20T05:24:34.000Z" + }, + "end": { + "$date": "2022-04-20T05:48:03.000Z" + }, + "events": [ + { + "uuid": "8f7c2dc2-3ffc-424c-a8b1-c1636f12e857", + "start": { + "$date": "2022-04-20T05:24:34.000Z" + }, + "end": { + "$date": "2022-04-20T05:48:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d14cb3a5-bed6-4032-a244-e01c6310b2c9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-04-20T05:28:36.000Z" + }, + "end": { + "$date": "2022-04-20T07:06:21.000Z" + }, + "events": [ + { + "uuid": "e2f21136-1b7e-4f72-a3c4-a9d243247275", + "start": { + "$date": "2022-04-20T05:28:36.000Z" + }, + "end": { + "$date": "2022-04-20T07:06:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ee786eff-6bfd-4e7c-a1b3-1ca7a845a140", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-20T05:32:52.000Z" + }, + "end": { + "$date": "2022-04-20T06:20:45.000Z" + }, + "events": [ + { + "uuid": "4bfb9394-a0d0-43d7-b426-4294a8dbe58a", + "start": { + "$date": "2022-04-20T05:32:52.000Z" + }, + "end": { + "$date": "2022-04-20T06:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cf5fa00-7c31-4dcd-948b-4558f2767897", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-20T05:48:37.000Z" + }, + "end": { + "$date": "2022-04-20T05:50:07.000Z" + }, + "events": [ + { + "uuid": "35c53f50-8e52-4c80-9ef5-7b2866a9a433", + "start": { + "$date": "2022-04-20T05:48:37.000Z" + }, + "end": { + "$date": "2022-04-20T05:50:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "20e2cee3-3df5-4fc3-ac3f-9145b996a2d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-20T06:17:01.000Z" + }, + "end": { + "$date": "2022-04-20T06:57:49.000Z" + }, + "events": [ + { + "uuid": "63d74390-2a1d-4fb7-9c04-c65155df2757", + "start": { + "$date": "2022-04-20T06:17:01.000Z" + }, + "end": { + "$date": "2022-04-20T06:57:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e9e0ce59-1756-4151-9150-c18a9fa6bb35", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-20T06:57:28.000Z" + }, + "end": { + "$date": "2022-04-20T07:56:06.000Z" + }, + "events": [ + { + "uuid": "37cd8156-1f9e-4969-8f18-bf6ef8e7e817", + "start": { + "$date": "2022-04-20T06:57:28.000Z" + }, + "end": { + "$date": "2022-04-20T07:56:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "28472541-ae9d-414c-b7c6-cc796d71451b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-20T07:01:30.000Z" + }, + "end": { + "$date": "2022-04-20T07:55:59.000Z" + }, + "events": [ + { + "uuid": "c4260fe6-e9a1-4f66-8568-b1b2d7c42eac", + "start": { + "$date": "2022-04-20T07:01:30.000Z" + }, + "end": { + "$date": "2022-04-20T07:55:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "284726cd-1a0f-4c1a-a43c-5e972b115c5e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-20T07:03:52.000Z" + }, + "end": { + "$date": "2022-04-20T07:56:24.000Z" + }, + "events": [ + { + "uuid": "41549d30-3884-4020-a7ad-969393641ade", + "start": { + "$date": "2022-04-20T07:03:52.000Z" + }, + "end": { + "$date": "2022-04-20T07:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f0733879-1b1c-46bf-bf15-00bbd8fbdcc5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-04-20T07:07:16.000Z" + }, + "end": { + "$date": "2022-04-20T07:55:53.000Z" + }, + "events": [ + { + "uuid": "e53e97c9-155b-4a4c-903c-b5c1889bbc17", + "start": { + "$date": "2022-04-20T07:07:16.000Z" + }, + "end": { + "$date": "2022-04-20T07:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "f6c73b9e-d154-4d05-bfd5-6681f3a394d3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-20T08:19:38.000Z" + }, + "end": { + "$date": "2022-04-20T11:05:47.000Z" + }, + "events": [ + { + "uuid": "361f684d-2c0a-4a78-b6bc-59d3600d2ca3", + "start": { + "$date": "2022-04-20T08:19:38.000Z" + }, + "end": { + "$date": "2022-04-20T11:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0e82c052-af7e-45e9-9b30-1eb7c6749103", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-20T18:34:57.000Z" + }, + "end": { + "$date": "2022-04-20T19:15:36.000Z" + }, + "events": [ + { + "uuid": "aff0ffa6-e04d-4d2c-8d06-ddadb90884c8", + "start": { + "$date": "2022-04-20T18:34:57.000Z" + }, + "end": { + "$date": "2022-04-20T19:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "3df738d8-f4cf-4d75-a806-86453d9cc486", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-20T19:31:35.000Z" + }, + "end": { + "$date": "2022-04-20T21:20:33.000Z" + }, + "events": [ + { + "uuid": "6fb5f7f9-14c7-4c08-8be6-c33b78529335", + "start": { + "$date": "2022-04-20T19:31:35.000Z" + }, + "end": { + "$date": "2022-04-20T19:43:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb6dd4fe-c94b-4d00-9faf-5bcd6ef73233", + "start": { + "$date": "2022-04-20T19:43:35.000Z" + }, + "end": { + "$date": "2022-04-20T21:20:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "16b846cb-9485-4518-929f-6e00694784ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-20T20:30:32.000Z" + }, + "end": { + "$date": "2022-04-20T21:40:04.000Z" + }, + "events": [ + { + "uuid": "35ad4d96-3d01-4739-941a-34da0a3d9cea", + "start": { + "$date": "2022-04-20T20:30:32.000Z" + }, + "end": { + "$date": "2022-04-20T21:40:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "dbc47f08-7dd8-4a20-8856-ddadd659a6d6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-20T22:16:06.000Z" + }, + "end": { + "$date": "2022-04-21T04:28:00.000Z" + }, + "events": [ + { + "uuid": "52e46801-ef52-4ac5-b0ba-f924311b587a", + "start": { + "$date": "2022-04-20T22:16:06.000Z" + }, + "end": { + "$date": "2022-04-21T04:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "776dbc59-6f74-457e-b452-ae5f54275eae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-20T23:16:40.000Z" + }, + "end": { + "$date": "2022-04-20T23:28:31.000Z" + }, + "events": [ + { + "uuid": "46e7a304-b9f7-4e39-9e0c-4ae4688bd1a1", + "start": { + "$date": "2022-04-20T23:16:40.000Z" + }, + "end": { + "$date": "2022-04-20T23:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f857b240-b27b-4ea2-a72a-e664c0bdf2c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T00:07:57.000Z" + }, + "end": { + "$date": "2022-04-21T01:03:38.000Z" + }, + "events": [ + { + "uuid": "03883e70-8061-49ef-8da6-9cad878fd8b4", + "start": { + "$date": "2022-04-21T00:07:57.000Z" + }, + "end": { + "$date": "2022-04-21T00:43:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fc267398-7cd6-41cf-8a33-a87a15d6189c", + "start": { + "$date": "2022-04-21T00:43:57.000Z" + }, + "end": { + "$date": "2022-04-21T01:03:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "764e7824-8d0d-4016-9367-6705e27b761b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-21T00:15:55.000Z" + }, + "end": { + "$date": "2022-04-21T00:48:51.000Z" + }, + "events": [ + { + "uuid": "69d20798-360e-43bb-a71e-66c1ec256fed", + "start": { + "$date": "2022-04-21T00:15:55.000Z" + }, + "end": { + "$date": "2022-04-21T00:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8edf7b0f-0a18-47d6-a1f2-ba9d8d151101", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-21T00:50:24.000Z" + }, + "end": { + "$date": "2022-04-21T01:30:05.000Z" + }, + "events": [ + { + "uuid": "de7aea4e-6d76-4b0c-8990-ce02de643cea", + "start": { + "$date": "2022-04-21T00:50:24.000Z" + }, + "end": { + "$date": "2022-04-21T01:30:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "39c92d06-d767-4a81-b61f-d6be298bd568", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-21T01:03:54.000Z" + }, + "end": { + "$date": "2022-04-21T08:17:00.000Z" + }, + "events": [ + { + "uuid": "c287b978-d1b0-47aa-afae-746bf6f544df", + "start": { + "$date": "2022-04-21T01:03:54.000Z" + }, + "end": { + "$date": "2022-04-21T08:17:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4854997d-15bd-4dd2-b94b-fcabc9c45918", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-21T01:06:13.000Z" + }, + "end": { + "$date": "2022-04-21T08:16:57.000Z" + }, + "events": [ + { + "uuid": "4ee6be1f-d1b9-4c3b-8b60-0ba8fa50e9a5", + "start": { + "$date": "2022-04-21T01:06:13.000Z" + }, + "end": { + "$date": "2022-04-21T08:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6fd3378-5e75-406c-acbb-2aec56be9b7e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-21T01:31:34.000Z" + }, + "end": { + "$date": "2022-04-21T02:08:23.000Z" + }, + "events": [ + { + "uuid": "1f42c32a-17ac-45c1-9a91-b4475566be6a", + "start": { + "$date": "2022-04-21T01:31:34.000Z" + }, + "end": { + "$date": "2022-04-21T02:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0ddcb45b-7c6c-4b57-b521-88e4715068a1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T01:55:31.000Z" + }, + "end": { + "$date": "2022-04-21T02:13:44.000Z" + }, + "events": [ + { + "uuid": "3cf07dd2-fe1a-4baa-96e1-307180300023", + "start": { + "$date": "2022-04-21T01:55:31.000Z" + }, + "end": { + "$date": "2022-04-21T02:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fd7310f3-774e-47c2-abe1-7efe53063082", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T02:17:49.000Z" + }, + "end": { + "$date": "2022-04-21T03:41:27.000Z" + }, + "events": [ + { + "uuid": "8594e6ea-d2d3-4a0c-b465-b8c44b75b661", + "start": { + "$date": "2022-04-21T02:17:49.000Z" + }, + "end": { + "$date": "2022-04-21T03:41:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c38c2386-cb87-4280-bf33-74aaaf4a281d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-21T02:48:22.000Z" + }, + "end": { + "$date": "2022-04-21T04:50:16.000Z" + }, + "events": [ + { + "uuid": "d9bad06d-4b3a-4eb8-910e-9f45f3a36b3a", + "start": { + "$date": "2022-04-21T02:48:22.000Z" + }, + "end": { + "$date": "2022-04-21T04:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "df95933d-9424-4254-af76-a2a9e9eda03b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-21T02:58:21.000Z" + }, + "end": { + "$date": "2022-04-21T05:35:41.000Z" + }, + "events": [ + { + "uuid": "45adfdd4-ac8a-4dfd-99bd-3fafba2bfed8", + "start": { + "$date": "2022-04-21T02:58:21.000Z" + }, + "end": { + "$date": "2022-04-21T05:35:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "0796d182-6de7-4918-b780-418b245ef90b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T03:47:55.000Z" + }, + "end": { + "$date": "2022-04-21T03:49:11.000Z" + }, + "events": [ + { + "uuid": "0d85a0ed-cd05-468c-af47-09b0f0f765c5", + "start": { + "$date": "2022-04-21T03:47:55.000Z" + }, + "end": { + "$date": "2022-04-21T03:49:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "21c666e9-6b03-42a8-9ab1-035aca3c7efe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T03:49:28.000Z" + }, + "end": { + "$date": "2022-04-21T03:56:41.000Z" + }, + "events": [ + { + "uuid": "613060da-bc76-4500-8ffd-2ee0380ba0c4", + "start": { + "$date": "2022-04-21T03:49:28.000Z" + }, + "end": { + "$date": "2022-04-21T03:56:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "98e368ef-5e53-4c2e-aab5-8b6fe358ad4a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T03:57:03.000Z" + }, + "end": { + "$date": "2022-04-21T03:58:29.000Z" + }, + "events": [ + { + "uuid": "d20843b4-34b9-44a8-904c-6d4e656cf707", + "start": { + "$date": "2022-04-21T03:57:03.000Z" + }, + "end": { + "$date": "2022-04-21T03:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "aa95ed4a-7429-4fb1-bc6d-ef27006c153c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-21T03:58:51.000Z" + }, + "end": { + "$date": "2022-04-21T05:08:27.000Z" + }, + "events": [ + { + "uuid": "51b8c584-2adb-4052-9022-f00517480782", + "start": { + "$date": "2022-04-21T03:58:51.000Z" + }, + "end": { + "$date": "2022-04-21T05:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "7c19e045-9485-4558-98ba-ffb779562449", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-21T04:28:25.000Z" + }, + "end": { + "$date": "2022-04-21T05:50:59.000Z" + }, + "events": [ + { + "uuid": "2f0ca03d-5bcf-4272-92a6-696fffe27e3a", + "start": { + "$date": "2022-04-21T04:28:25.000Z" + }, + "end": { + "$date": "2022-04-21T05:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e5b4bed5-3bba-4f92-ad5f-16bce441e8fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-21T04:35:11.000Z" + }, + "end": { + "$date": "2022-04-21T05:21:12.000Z" + }, + "events": [ + { + "uuid": "6a065def-1457-42c5-8428-28fe886734c5", + "start": { + "$date": "2022-04-21T04:35:11.000Z" + }, + "end": { + "$date": "2022-04-21T05:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b57733c-346d-4b3b-9800-6fecbeb82e4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-21T05:15:06.000Z" + }, + "end": { + "$date": "2022-04-21T05:52:20.000Z" + }, + "events": [ + { + "uuid": "53e84cb6-2fdb-4c58-9c9a-f16e8fa379fb", + "start": { + "$date": "2022-04-21T05:15:06.000Z" + }, + "end": { + "$date": "2022-04-21T05:52:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bd2fe81-49be-465e-b398-65e3bb6b2927", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-21T05:54:43.000Z" + }, + "end": { + "$date": "2022-04-21T06:30:14.000Z" + }, + "events": [ + { + "uuid": "a87c041b-7893-4fff-8b4a-6a93cdeed9e0", + "start": { + "$date": "2022-04-21T05:54:43.000Z" + }, + "end": { + "$date": "2022-04-21T06:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "bba89ace-063c-404d-a314-ce016c88a48c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-21T06:32:59.000Z" + }, + "end": { + "$date": "2022-04-21T07:12:06.000Z" + }, + "events": [ + { + "uuid": "feb40b47-8f26-49a0-a003-602d1e9deeca", + "start": { + "$date": "2022-04-21T06:32:59.000Z" + }, + "end": { + "$date": "2022-04-21T07:12:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "57c85cd8-dbbf-458e-86cc-d810685029fe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-21T07:46:00.000Z" + }, + "end": { + "$date": "2022-04-21T08:00:47.000Z" + }, + "events": [ + { + "uuid": "e527d5b9-424c-4198-a63f-1164a786e26b", + "start": { + "$date": "2022-04-21T07:46:00.000Z" + }, + "end": { + "$date": "2022-04-21T08:00:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "45cbb8f1-a16c-4a72-97d1-5c777b41149c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-21T10:18:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:41:02.000Z" + }, + "events": [ + { + "uuid": "225b64a5-8a5f-48c4-9b83-79ffde029e1d", + "start": { + "$date": "2022-04-21T10:18:40.000Z" + }, + "end": { + "$date": "2022-04-21T10:40:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f01e53d5-34f8-4984-870e-7d8f15e50f36", + "start": { + "$date": "2022-04-21T10:40:40.000Z" + }, + "end": { + "$date": "2022-04-21T10:55:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "30d675bc-eed4-4197-933e-527259efe17c", + "start": { + "$date": "2022-04-21T10:55:40.000Z" + }, + "end": { + "$date": "2022-04-21T10:57:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8e53e6ea-7bba-4c34-9d07-855b7c6bf10b", + "start": { + "$date": "2022-04-21T10:57:40.000Z" + }, + "end": { + "$date": "2022-04-21T10:58:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c3b65850-2297-45ca-9e8e-69811e4bef94", + "start": { + "$date": "2022-04-21T10:58:40.000Z" + }, + "end": { + "$date": "2022-04-21T11:32:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83d19fdb-c56d-46b4-b44e-7f58bf917d33", + "start": { + "$date": "2022-04-21T11:32:40.000Z" + }, + "end": { + "$date": "2022-04-21T20:41:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1803045a-5953-4cd3-b239-29ade1975f4f", + "start": { + "$date": "2022-04-21T20:41:40.000Z" + }, + "end": { + "$date": "2022-04-21T20:44:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39014527-8899-4676-bce2-4d44b54427fc", + "start": { + "$date": "2022-04-21T20:44:40.000Z" + }, + "end": { + "$date": "2022-04-21T20:49:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fd7abc03-d7cb-49c4-8be7-a4c69d6db3ee", + "start": { + "$date": "2022-04-21T20:49:40.000Z" + }, + "end": { + "$date": "2022-04-21T20:51:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c1d8ff9-459d-4de1-9bbd-1abc237defea", + "start": { + "$date": "2022-04-21T20:51:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:07:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "709b1f88-304f-4ec1-8e29-b98d7a133dec", + "start": { + "$date": "2022-04-21T21:07:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:18:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eeda7c23-7c0b-42e0-8445-c60f8d7a3ad0", + "start": { + "$date": "2022-04-21T21:18:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:20:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8af571c5-2cfa-441c-bdc2-8f4c4c77cbeb", + "start": { + "$date": "2022-04-21T21:20:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:26:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5999af2-ca66-4039-8eeb-7d650fef1752", + "start": { + "$date": "2022-04-21T21:26:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:27:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f03f6f0c-e871-4872-9674-ab40a794d8dc", + "start": { + "$date": "2022-04-21T21:27:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:29:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70433b61-d256-43df-a7d6-f543afc0d9e7", + "start": { + "$date": "2022-04-21T21:29:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:30:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d069abaf-6908-430a-a3d9-bbd7dafca7fc", + "start": { + "$date": "2022-04-21T21:30:40.000Z" + }, + "end": { + "$date": "2022-04-21T21:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "efe51a97-f13e-44e5-8b7f-636abe0522b7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-04-21T16:15:19.000Z" + }, + "end": { + "$date": "2022-04-21T16:20:18.000Z" + }, + "events": [ + { + "uuid": "566f648a-a5d7-42a1-818c-8dc421c2fc75", + "start": { + "$date": "2022-04-21T16:15:19.000Z" + }, + "end": { + "$date": "2022-04-21T16:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "a5167173-a81f-4cef-97a4-4921edfb6368", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-22T01:02:22.000Z" + }, + "end": { + "$date": "2022-04-22T06:51:48.000Z" + }, + "events": [ + { + "uuid": "95811764-9dad-4965-8d92-892becc64994", + "start": { + "$date": "2022-04-22T01:02:22.000Z" + }, + "end": { + "$date": "2022-04-22T06:51:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "21c72a2c-40f0-4e4d-b545-b9ec04bce32a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-22T01:37:22.000Z" + }, + "end": { + "$date": "2022-04-22T05:09:17.000Z" + }, + "events": [ + { + "uuid": "9c462bb6-a679-4d9b-b2e7-4672bafe73f9", + "start": { + "$date": "2022-04-22T01:37:22.000Z" + }, + "end": { + "$date": "2022-04-22T05:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a09b39dc-9a3e-4bcc-98ab-bb92886c4354", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-22T01:54:03.000Z" + }, + "end": { + "$date": "2022-04-22T05:24:43.000Z" + }, + "events": [ + { + "uuid": "732592bd-c98e-49d3-a37b-8a9e8ae5bc92", + "start": { + "$date": "2022-04-22T01:54:03.000Z" + }, + "end": { + "$date": "2022-04-22T04:29:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "70868cb6-6d7b-481f-baee-3a0a81a25176", + "start": { + "$date": "2022-04-22T04:29:03.000Z" + }, + "end": { + "$date": "2022-04-22T04:34:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e2d9b611-ea09-4270-88f2-40f972cde48f", + "start": { + "$date": "2022-04-22T04:34:03.000Z" + }, + "end": { + "$date": "2022-04-22T04:44:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2474128-5a12-43f5-9aa4-e9df5c015ff0", + "start": { + "$date": "2022-04-22T04:44:03.000Z" + }, + "end": { + "$date": "2022-04-22T04:47:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5097c4c-9e5a-4a0f-bed0-af0cfa87b3a3", + "start": { + "$date": "2022-04-22T04:47:03.000Z" + }, + "end": { + "$date": "2022-04-22T05:03:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "293d4f92-bcb4-467f-b4d3-b97c1bd1ebc0", + "start": { + "$date": "2022-04-22T05:03:03.000Z" + }, + "end": { + "$date": "2022-04-22T05:23:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c1943134-6663-4bb0-a660-2ff4870d7126", + "start": { + "$date": "2022-04-22T05:23:03.000Z" + }, + "end": { + "$date": "2022-04-22T05:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "551ecfd0-36bd-4f38-a709-6e5ef4d717fe", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-22T02:20:54.000Z" + }, + "end": { + "$date": "2022-04-22T06:29:37.000Z" + }, + "events": [ + { + "uuid": "3290853c-96cb-4c12-b0d7-0da6957595b0", + "start": { + "$date": "2022-04-22T02:20:54.000Z" + }, + "end": { + "$date": "2022-04-22T06:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0d6f85ad-5d05-44c8-a357-5c409f496efd", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-22T02:21:43.000Z" + }, + "end": { + "$date": "2022-04-22T06:29:39.000Z" + }, + "events": [ + { + "uuid": "2fc3e0c4-c58c-4625-a5a6-706c21977345", + "start": { + "$date": "2022-04-22T02:21:43.000Z" + }, + "end": { + "$date": "2022-04-22T06:29:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "e5b4e433-e5b0-4a77-ac65-cbeef9a3a1c0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-22T03:43:48.000Z" + }, + "end": { + "$date": "2022-04-22T04:00:54.000Z" + }, + "events": [ + { + "uuid": "9bc69493-2023-413a-bbf4-0a47987eda3e", + "start": { + "$date": "2022-04-22T03:43:48.000Z" + }, + "end": { + "$date": "2022-04-22T04:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4a5c190e-37b0-4eae-9b33-52bb16c8aac0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-22T04:01:44.000Z" + }, + "end": { + "$date": "2022-04-22T05:32:43.000Z" + }, + "events": [ + { + "uuid": "d6a8d0ce-fd1d-4a66-82a0-40110ce3d185", + "start": { + "$date": "2022-04-22T04:01:44.000Z" + }, + "end": { + "$date": "2022-04-22T05:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f92402b8-f3d1-4f54-8da0-b628f6f20a38", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-22T04:21:43.000Z" + }, + "end": { + "$date": "2022-04-22T07:21:06.000Z" + }, + "events": [ + { + "uuid": "dbd7fc10-38f3-4406-a479-de0ee240a734", + "start": { + "$date": "2022-04-22T04:21:43.000Z" + }, + "end": { + "$date": "2022-04-22T07:21:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "358534a7-3afc-4a60-99af-0bbd1543df18", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-22T06:55:36.000Z" + }, + "end": { + "$date": "2022-04-22T10:22:00.000Z" + }, + "events": [ + { + "uuid": "9793d776-f5da-42bc-8e1e-ae3f7dab4ee6", + "start": { + "$date": "2022-04-22T06:55:36.000Z" + }, + "end": { + "$date": "2022-04-22T10:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "43fbce5a-5b3b-4e47-b5c8-28ee82bd7020", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-22T10:12:45.000Z" + }, + "end": { + "$date": "2022-04-22T11:31:26.000Z" + }, + "events": [ + { + "uuid": "978f270a-5348-412f-ba9a-b6ba3027f0c1", + "start": { + "$date": "2022-04-22T10:12:45.000Z" + }, + "end": { + "$date": "2022-04-22T11:31:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "95ecf139-e8c3-4e92-ad19-47a708c39fa6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-22T21:51:15.000Z" + }, + "end": { + "$date": "2022-04-22T21:52:58.000Z" + }, + "events": [ + { + "uuid": "f38d11ef-d96c-47b3-89f2-8bf67e086185", + "start": { + "$date": "2022-04-22T21:51:15.000Z" + }, + "end": { + "$date": "2022-04-22T21:52:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "17b1884c-3392-4b38-b9fd-4b170d30cdaa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-22T21:59:02.000Z" + }, + "end": { + "$date": "2022-04-22T22:39:21.000Z" + }, + "events": [ + { + "uuid": "b22e31d6-d865-4a0f-9c3f-16c2c02eebda", + "start": { + "$date": "2022-04-22T21:59:02.000Z" + }, + "end": { + "$date": "2022-04-22T22:39:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "6c672d1f-5ac2-46f9-8661-917c3e4cde77", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-22T22:03:26.000Z" + }, + "end": { + "$date": "2022-04-23T00:52:40.000Z" + }, + "events": [ + { + "uuid": "4af0f58a-b45c-4d0f-8298-1e8242524098", + "start": { + "$date": "2022-04-22T22:03:26.000Z" + }, + "end": { + "$date": "2022-04-23T00:52:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "530b4625-b207-45e0-9f4f-1ce2d34dad45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-22T23:20:57.000Z" + }, + "end": { + "$date": "2022-04-23T02:00:33.000Z" + }, + "events": [ + { + "uuid": "ab75d557-cb02-4e5c-aab8-a3218f2d36e2", + "start": { + "$date": "2022-04-22T23:20:57.000Z" + }, + "end": { + "$date": "2022-04-23T02:00:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b0df7ebb-6a78-40db-8df3-340a2872d70d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-23T00:02:45.000Z" + }, + "end": { + "$date": "2022-04-23T04:36:47.000Z" + }, + "events": [ + { + "uuid": "f5874dd9-c652-4090-9822-4fd5396fee3e", + "start": { + "$date": "2022-04-23T00:02:45.000Z" + }, + "end": { + "$date": "2022-04-23T04:36:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bb122d2e-324c-46f3-9da9-2750a38aeef3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-23T00:25:29.000Z" + }, + "end": { + "$date": "2022-04-23T01:20:10.000Z" + }, + "events": [ + { + "uuid": "50a72321-67e6-44d2-8751-bce5af34ddcf", + "start": { + "$date": "2022-04-23T00:25:29.000Z" + }, + "end": { + "$date": "2022-04-23T01:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a76494d0-96da-4ce0-b117-f885fe63fe2a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-23T00:31:43.000Z" + }, + "end": { + "$date": "2022-04-23T01:20:21.000Z" + }, + "events": [ + { + "uuid": "7f5771b5-78bc-48ca-955d-e04c0720efe4", + "start": { + "$date": "2022-04-23T00:31:43.000Z" + }, + "end": { + "$date": "2022-04-23T01:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dfa696d5-d82f-4c0a-94eb-d001c258af94", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-23T01:56:03.000Z" + }, + "end": { + "$date": "2022-04-23T07:56:02.000Z" + }, + "events": [ + { + "uuid": "266e5344-48d8-4cf9-9b94-e229f512b557", + "start": { + "$date": "2022-04-23T01:56:03.000Z" + }, + "end": { + "$date": "2022-04-23T07:56:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "046df6a6-e36e-4895-ac5b-ed31d06def45", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-23T01:56:23.000Z" + }, + "end": { + "$date": "2022-04-23T07:56:05.000Z" + }, + "events": [ + { + "uuid": "548133b1-0a70-4858-b506-fb3c07c2361c", + "start": { + "$date": "2022-04-23T01:56:23.000Z" + }, + "end": { + "$date": "2022-04-23T07:56:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5c49090b-1ad6-4879-8951-82af4304e124", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-23T02:30:44.000Z" + }, + "end": { + "$date": "2022-04-23T03:05:02.000Z" + }, + "events": [ + { + "uuid": "404a0ea5-1e5a-4f0b-bdaf-9038e2ba8ec7", + "start": { + "$date": "2022-04-23T02:30:44.000Z" + }, + "end": { + "$date": "2022-04-23T03:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3c0c0f13-4768-466e-b34b-a7acce9d62ad", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T03:14:22.000Z" + }, + "end": { + "$date": "2022-04-23T15:21:20.000Z" + }, + "events": [ + { + "uuid": "40694c6e-3811-4eb7-b470-e71ba6f59668", + "start": { + "$date": "2022-04-23T03:14:22.000Z" + }, + "end": { + "$date": "2022-04-23T03:37:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "55b64e51-8bf8-4cb6-b112-d478cf27be1c", + "start": { + "$date": "2022-04-23T03:37:22.000Z" + }, + "end": { + "$date": "2022-04-23T04:13:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "88f64c38-2683-4a4d-b523-fae60465ba72", + "start": { + "$date": "2022-04-23T04:13:22.000Z" + }, + "end": { + "$date": "2022-04-23T04:44:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4d347a2d-0060-4526-8079-efbd833f624d", + "start": { + "$date": "2022-04-23T04:44:22.000Z" + }, + "end": { + "$date": "2022-04-23T15:19:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "12adae51-1a71-40ff-bea8-667ad2d7c13d", + "start": { + "$date": "2022-04-23T15:19:22.000Z" + }, + "end": { + "$date": "2022-04-23T15:21:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68bfc93f-3320-4836-9f70-779a7841a550", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-23T03:27:49.000Z" + }, + "end": { + "$date": "2022-04-23T04:08:23.000Z" + }, + "events": [ + { + "uuid": "c77ff20f-ab54-4dd7-bb7b-f0a468e8b897", + "start": { + "$date": "2022-04-23T03:27:49.000Z" + }, + "end": { + "$date": "2022-04-23T04:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5cca16d0-61b9-49ed-b21b-fee56b61299f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-23T03:58:35.000Z" + }, + "end": { + "$date": "2022-04-23T07:56:10.000Z" + }, + "events": [ + { + "uuid": "c0da54f5-3a34-4f0b-b225-db36c96edd04", + "start": { + "$date": "2022-04-23T03:58:35.000Z" + }, + "end": { + "$date": "2022-04-23T07:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "569e71ab-4d6b-4ce7-b122-8087e3c5776a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-23T04:00:41.000Z" + }, + "end": { + "$date": "2022-04-23T05:27:48.000Z" + }, + "events": [ + { + "uuid": "27c2abac-5f98-450a-b23a-b880024c30d2", + "start": { + "$date": "2022-04-23T04:00:41.000Z" + }, + "end": { + "$date": "2022-04-23T05:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "36c068fe-aac2-4d56-a9b0-f4a0aead84d5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-23T04:09:13.000Z" + }, + "end": { + "$date": "2022-04-23T04:40:06.000Z" + }, + "events": [ + { + "uuid": "29171fb2-b185-4c33-ad7e-a3d7197d9a8a", + "start": { + "$date": "2022-04-23T04:09:13.000Z" + }, + "end": { + "$date": "2022-04-23T04:40:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2430f3dc-c34e-4de0-a958-1003dce1ddb3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-23T04:42:26.000Z" + }, + "end": { + "$date": "2022-04-23T05:21:40.000Z" + }, + "events": [ + { + "uuid": "9e7752af-9fb2-47c6-8f48-7a94a737744f", + "start": { + "$date": "2022-04-23T04:42:26.000Z" + }, + "end": { + "$date": "2022-04-23T05:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1ed25a17-8b9b-43f1-8e0d-5558beba76bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-23T05:29:41.000Z" + }, + "end": { + "$date": "2022-04-23T10:00:30.000Z" + }, + "events": [ + { + "uuid": "2998b5d2-f583-4ee4-afcb-bd840d6bf314", + "start": { + "$date": "2022-04-23T05:29:41.000Z" + }, + "end": { + "$date": "2022-04-23T10:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2d2e5ed9-a3be-4003-91a7-8cc695c1969b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-23T05:37:01.000Z" + }, + "end": { + "$date": "2022-04-23T06:22:12.000Z" + }, + "events": [ + { + "uuid": "1def9f3f-c72b-45ff-95b2-b8d2d4ec9458", + "start": { + "$date": "2022-04-23T05:37:01.000Z" + }, + "end": { + "$date": "2022-04-23T06:22:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2729f88f-2aaf-4538-9739-91fa51513d77", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-23T05:39:29.000Z" + }, + "end": { + "$date": "2022-04-23T08:07:47.000Z" + }, + "events": [ + { + "uuid": "ef7f9f8a-0a30-4317-bbe8-dc4c323817c9", + "start": { + "$date": "2022-04-23T05:39:29.000Z" + }, + "end": { + "$date": "2022-04-23T08:07:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d7d9322e-4f82-4b0b-8f26-e11dea77d05a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-23T06:04:30.000Z" + }, + "end": { + "$date": "2022-04-23T07:27:48.000Z" + }, + "events": [ + { + "uuid": "022d45b8-e65a-4524-8a75-f6ef3ae07eac", + "start": { + "$date": "2022-04-23T06:04:30.000Z" + }, + "end": { + "$date": "2022-04-23T07:27:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "6d94c398-fa6b-4ec6-a189-8d7e68a795eb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-23T07:29:10.000Z" + }, + "end": { + "$date": "2022-04-23T07:44:22.000Z" + }, + "events": [ + { + "uuid": "5ede0573-3ce8-4108-88a0-ce06def23731", + "start": { + "$date": "2022-04-23T07:29:10.000Z" + }, + "end": { + "$date": "2022-04-23T07:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "e272251b-de08-4002-bd46-03f0bfdbadeb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-23T08:20:27.000Z" + }, + "end": { + "$date": "2022-04-23T09:12:25.000Z" + }, + "events": [ + { + "uuid": "f89a615a-bff5-4b49-ab0b-95f358a96a02", + "start": { + "$date": "2022-04-23T08:20:27.000Z" + }, + "end": { + "$date": "2022-04-23T09:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "77b2c112-1b51-4447-a016-b5f53ea8f2b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-23T14:54:15.000Z" + }, + "end": { + "$date": "2022-04-23T15:20:41.000Z" + }, + "events": [ + { + "uuid": "f5a2c69e-2b59-4c3a-90f6-10f498bf188e", + "start": { + "$date": "2022-04-23T14:54:15.000Z" + }, + "end": { + "$date": "2022-04-23T15:20:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1916d2c0-213e-467e-998b-46bd7af45198", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T15:41:33.000Z" + }, + "end": { + "$date": "2022-04-23T16:10:06.000Z" + }, + "events": [ + { + "uuid": "58c6f66a-96cf-4474-8f53-0461d80b5dcf", + "start": { + "$date": "2022-04-23T15:41:33.000Z" + }, + "end": { + "$date": "2022-04-23T16:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7b15eae1-bc39-4b57-befa-c51a06924102", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T16:13:02.000Z" + }, + "end": { + "$date": "2022-04-23T16:17:17.000Z" + }, + "events": [ + { + "uuid": "592cb023-2201-4f48-ab10-79a9996db2bc", + "start": { + "$date": "2022-04-23T16:13:02.000Z" + }, + "end": { + "$date": "2022-04-23T16:17:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "baa633bc-ed61-4bac-98ee-c726ecfabb61", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T16:17:38.000Z" + }, + "end": { + "$date": "2022-04-23T16:18:47.000Z" + }, + "events": [ + { + "uuid": "f558e74b-16ed-422e-bf2e-a57985a6238d", + "start": { + "$date": "2022-04-23T16:17:38.000Z" + }, + "end": { + "$date": "2022-04-23T16:18:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "7c9b2af6-3ab5-4129-8037-631eac8cd0fc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T16:19:13.000Z" + }, + "end": { + "$date": "2022-04-23T18:05:49.000Z" + }, + "events": [ + { + "uuid": "20588ecc-0566-42df-9614-ef2131251dc2", + "start": { + "$date": "2022-04-23T16:19:13.000Z" + }, + "end": { + "$date": "2022-04-23T18:05:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "80a45091-b2b5-4db1-bef8-f97b1db08c0d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-23T18:34:00.000Z" + }, + "end": { + "$date": "2022-04-23T19:23:50.000Z" + }, + "events": [ + { + "uuid": "2a6c7c85-5844-4f6d-ba3e-5b38d0841038", + "start": { + "$date": "2022-04-23T18:34:00.000Z" + }, + "end": { + "$date": "2022-04-23T19:23:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0f3cf8b9-4315-490d-bcf1-dda5c02c0f7d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T19:03:02.000Z" + }, + "end": { + "$date": "2022-04-23T19:04:12.000Z" + }, + "events": [ + { + "uuid": "7c7d55d7-4aff-4ee0-b3f7-0c7c659c2eaa", + "start": { + "$date": "2022-04-23T19:03:02.000Z" + }, + "end": { + "$date": "2022-04-23T19:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "14959548-20b1-4b42-8cad-1ec923a974d1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T19:04:17.000Z" + }, + "end": { + "$date": "2022-04-23T19:31:40.000Z" + }, + "events": [ + { + "uuid": "ae5e978d-3631-42bc-a2c2-b3c5dcd42c0e", + "start": { + "$date": "2022-04-23T19:04:17.000Z" + }, + "end": { + "$date": "2022-04-23T19:31:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "06dff574-1ec5-4053-ac23-f2d75f0fef0f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T19:32:00.000Z" + }, + "end": { + "$date": "2022-04-23T20:59:21.000Z" + }, + "events": [ + { + "uuid": "121d2c92-3968-4bad-8951-5dd13b1fa188", + "start": { + "$date": "2022-04-23T19:32:00.000Z" + }, + "end": { + "$date": "2022-04-23T20:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "4f1e688d-be09-4c28-a6bc-394025c33386", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-23T20:57:57.000Z" + }, + "end": { + "$date": "2022-04-23T21:05:22.000Z" + }, + "events": [ + { + "uuid": "9b29d18c-4e25-48dc-aef7-2e76323d7586", + "start": { + "$date": "2022-04-23T20:57:57.000Z" + }, + "end": { + "$date": "2022-04-23T21:05:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "d9837c57-16e5-45e3-ba4f-192f0d47925c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-23T21:05:28.000Z" + }, + "end": { + "$date": "2022-04-23T22:18:15.000Z" + }, + "events": [ + { + "uuid": "aabd8f47-fcd6-4752-bc07-a2bae02e6cbf", + "start": { + "$date": "2022-04-23T21:05:28.000Z" + }, + "end": { + "$date": "2022-04-23T22:18:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1bebc86e-ddb6-4149-8f8f-e2ca2f79c1b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-23T21:59:19.000Z" + }, + "end": { + "$date": "2022-04-23T22:16:25.000Z" + }, + "events": [ + { + "uuid": "85483a3d-89a0-49cc-8eec-5bf6bcae7b2e", + "start": { + "$date": "2022-04-23T21:59:19.000Z" + }, + "end": { + "$date": "2022-04-23T22:16:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ccd0442e-4a07-4b87-b98f-2d6ac039a64a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-23T22:21:21.000Z" + }, + "end": { + "$date": "2022-04-23T22:36:17.000Z" + }, + "events": [ + { + "uuid": "9100ad1e-f8b1-4de9-a259-bc8a409d014d", + "start": { + "$date": "2022-04-23T22:21:21.000Z" + }, + "end": { + "$date": "2022-04-23T22:36:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "170f3c34-ff82-40ea-b0e2-4c28a87ec091", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-23T22:29:46.000Z" + }, + "end": { + "$date": "2022-04-24T11:05:28.000Z" + }, + "events": [ + { + "uuid": "454a38f8-cf1b-4368-997a-239288282b55", + "start": { + "$date": "2022-04-23T22:29:46.000Z" + }, + "end": { + "$date": "2022-04-24T01:11:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dd7da549-f6b4-4a6a-9863-968f97db663d", + "start": { + "$date": "2022-04-24T01:11:46.000Z" + }, + "end": { + "$date": "2022-04-24T01:13:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "22459eb8-2855-4c8e-b857-081a0d513038", + "start": { + "$date": "2022-04-24T01:13:46.000Z" + }, + "end": { + "$date": "2022-04-24T02:45:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "820ff07e-fea1-46c0-9549-5eb0e0a60ca5", + "start": { + "$date": "2022-04-24T02:45:46.000Z" + }, + "end": { + "$date": "2022-04-24T03:36:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2c2d8c81-f82d-4dbe-84cb-ae766cfb5ebb", + "start": { + "$date": "2022-04-24T03:36:46.000Z" + }, + "end": { + "$date": "2022-04-24T06:17:46.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "626aa715-ad7f-417a-b106-476a1388f391", + "start": { + "$date": "2022-04-24T06:17:46.000Z" + }, + "end": { + "$date": "2022-04-24T06:28:46.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7ea78af4-875f-4138-8428-15bd9778bdab", + "start": { + "$date": "2022-04-24T06:28:46.000Z" + }, + "end": { + "$date": "2022-04-24T11:05:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b58952cd-3653-4fbf-9d78-39a6af047b5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-23T22:36:40.000Z" + }, + "end": { + "$date": "2022-04-24T01:12:35.000Z" + }, + "events": [ + { + "uuid": "34525f43-eb0b-4e83-ad3a-740e802690d9", + "start": { + "$date": "2022-04-23T22:36:40.000Z" + }, + "end": { + "$date": "2022-04-24T01:12:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "69b33cc0-2c50-498c-8aff-76554ccc205e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-23T23:07:33.000Z" + }, + "end": { + "$date": "2022-04-23T23:57:38.000Z" + }, + "events": [ + { + "uuid": "2c1a775a-5af0-4e07-9dc0-1bc221fee824", + "start": { + "$date": "2022-04-23T23:07:33.000Z" + }, + "end": { + "$date": "2022-04-23T23:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "529329a2-abb1-4542-8140-6821d9dd1183", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-24T00:19:26.000Z" + }, + "end": { + "$date": "2022-04-24T00:44:17.000Z" + }, + "events": [ + { + "uuid": "3d098ca7-1bda-4304-bcdc-c3025bccd9aa", + "start": { + "$date": "2022-04-24T00:19:26.000Z" + }, + "end": { + "$date": "2022-04-24T00:44:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6aa99077-9d2b-4bb3-b5d4-43a70bf3bc49", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-24T00:23:25.000Z" + }, + "end": { + "$date": "2022-04-24T00:50:29.000Z" + }, + "events": [ + { + "uuid": "7a7eee18-03f0-43e2-bbe9-0286d15c39c7", + "start": { + "$date": "2022-04-24T00:23:25.000Z" + }, + "end": { + "$date": "2022-04-24T00:50:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", + "uuid": "a170cdee-1d04-4dd1-96c6-78ffbcfac335", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T01:22:20.000Z" + }, + "end": { + "$date": "2022-04-24T01:42:12.000Z" + }, + "events": [ + { + "uuid": "2478cd8e-97a9-40d6-9ec2-71620007887e", + "start": { + "$date": "2022-04-24T01:22:20.000Z" + }, + "end": { + "$date": "2022-04-24T01:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4e81db9c-c5f4-4cf0-87fc-8a8687fb11af", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-24T02:09:56.000Z" + }, + "end": { + "$date": "2022-04-24T04:56:23.000Z" + }, + "events": [ + { + "uuid": "a65f5bed-b7da-4f21-b7fe-8e7f4ebd2a96", + "start": { + "$date": "2022-04-24T02:09:56.000Z" + }, + "end": { + "$date": "2022-04-24T04:12:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7396762c-93c8-4f8e-84b6-0996804b317b", + "start": { + "$date": "2022-04-24T04:12:56.000Z" + }, + "end": { + "$date": "2022-04-24T04:17:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df70864f-9bbf-452e-8340-76acf4a19e67", + "start": { + "$date": "2022-04-24T04:17:56.000Z" + }, + "end": { + "$date": "2022-04-24T04:56:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bddb30ae-e140-4782-bcba-9b0dcb24e1aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T02:18:57.000Z" + }, + "end": { + "$date": "2022-04-24T03:48:29.000Z" + }, + "events": [ + { + "uuid": "6950f343-edf0-44b7-9fd5-906fedb95833", + "start": { + "$date": "2022-04-24T02:18:57.000Z" + }, + "end": { + "$date": "2022-04-24T03:48:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", + "uuid": "cf7ec668-623e-462f-956f-faced864464a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T03:49:34.000Z" + }, + "end": { + "$date": "2022-04-24T03:51:19.000Z" + }, + "events": [ + { + "uuid": "9ad153c8-16be-4386-a366-c16710594ee2", + "start": { + "$date": "2022-04-24T03:49:34.000Z" + }, + "end": { + "$date": "2022-04-24T03:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "567faf61-74dc-4bc0-839d-19553732d331", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-24T04:02:51.000Z" + }, + "end": { + "$date": "2022-04-24T08:39:45.000Z" + }, + "events": [ + { + "uuid": "1ace75e2-93ef-4428-8129-a21e37c3bac0", + "start": { + "$date": "2022-04-24T04:02:51.000Z" + }, + "end": { + "$date": "2022-04-24T08:39:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0def6d8f-d80c-44b6-90dc-fdbd3c69aa1f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-24T04:06:51.000Z" + }, + "end": { + "$date": "2022-04-24T08:39:52.000Z" + }, + "events": [ + { + "uuid": "5078b665-0b82-4889-a9bd-735057d6199a", + "start": { + "$date": "2022-04-24T04:06:51.000Z" + }, + "end": { + "$date": "2022-04-24T08:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "348e9cce-7ca7-4bec-8178-f8c355dcf0d2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-24T04:14:22.000Z" + }, + "end": { + "$date": "2022-04-24T04:15:52.000Z" + }, + "events": [ + { + "uuid": "b77b0786-96f3-4fb8-a0fc-c80936917394", + "start": { + "$date": "2022-04-24T04:14:22.000Z" + }, + "end": { + "$date": "2022-04-24T04:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "05940f3a-955c-4bc5-8a26-c72b6dd44594", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-24T05:00:15.000Z" + }, + "end": { + "$date": "2022-04-24T07:19:01.000Z" + }, + "events": [ + { + "uuid": "2ef9ea0a-f51c-458d-b6bd-ff516ec826af", + "start": { + "$date": "2022-04-24T05:00:15.000Z" + }, + "end": { + "$date": "2022-04-24T07:19:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "739ea62c-0b32-432e-bdcd-a6964a244233", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-24T05:36:03.000Z" + }, + "end": { + "$date": "2022-04-24T08:40:01.000Z" + }, + "events": [ + { + "uuid": "6106bbf1-a963-4dcb-ad6f-4db247d06f58", + "start": { + "$date": "2022-04-24T05:36:03.000Z" + }, + "end": { + "$date": "2022-04-24T08:40:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "46909902-d99f-4a32-a5c3-eb3dbebb4ad6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-24T02:09:56.000Z" + }, + "end": { + "$date": "2022-04-24T07:19:10.000Z" + }, + "events": [ + { + "uuid": "00617810-852a-4150-a53e-66ede58fe4be", + "start": { + "$date": "2022-04-24T02:09:56.000Z" + }, + "end": { + "$date": "2022-04-24T07:19:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", + "uuid": "3595d082-87c4-48ca-9370-b8010fbf9891", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T14:02:02.000Z" + }, + "end": { + "$date": "2022-04-24T14:14:49.000Z" + }, + "events": [ + { + "uuid": "405041cc-1f61-4e1b-baae-e88cf8b84f31", + "start": { + "$date": "2022-04-24T14:02:02.000Z" + }, + "end": { + "$date": "2022-04-24T14:14:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "34b890b5-1d81-4cdc-a6f8-7d4fb4fca46f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T14:15:14.000Z" + }, + "end": { + "$date": "2022-04-24T14:17:09.000Z" + }, + "events": [ + { + "uuid": "86c3156a-79b9-40e5-990a-06236b14003e", + "start": { + "$date": "2022-04-24T14:15:14.000Z" + }, + "end": { + "$date": "2022-04-24T14:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", + "uuid": "70cfa77d-594e-47f6-a563-0e0e6434ff5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T14:17:44.000Z" + }, + "end": { + "$date": "2022-04-24T15:19:44.000Z" + }, + "events": [ + { + "uuid": "0e66e0eb-c9f2-428c-80a7-cff5b4bb02c1", + "start": { + "$date": "2022-04-24T14:17:44.000Z" + }, + "end": { + "$date": "2022-04-24T15:19:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bcab562f-17f4-4edd-995b-65cd909abe29", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-24T14:32:25.000Z" + }, + "end": { + "$date": "2022-04-24T16:06:23.000Z" + }, + "events": [ + { + "uuid": "6e2c3a4b-eb1b-4d6d-b0c4-ac2b6d174489", + "start": { + "$date": "2022-04-24T14:32:25.000Z" + }, + "end": { + "$date": "2022-04-24T16:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "948eb717-2e68-4002-a65c-0295ec10a963", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-24T23:56:25.000Z" + }, + "end": { + "$date": "2022-04-25T00:12:56.000Z" + }, + "events": [ + { + "uuid": "2e00776b-c45e-466d-b959-e9674f83e0d6", + "start": { + "$date": "2022-04-24T23:56:25.000Z" + }, + "end": { + "$date": "2022-04-25T04:08:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "41e21c58-a143-487c-b510-8d4212adfd45", + "start": { + "$date": "2022-04-25T04:08:25.000Z" + }, + "end": { + "$date": "2022-04-25T04:13:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "724ac1b1-a4a2-4ee6-b9b9-596766679527", + "start": { + "$date": "2022-04-25T04:13:25.000Z" + }, + "end": { + "$date": "2022-04-25T04:23:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8795ba2b-0a61-4789-aaef-1041917da084", + "start": { + "$date": "2022-04-25T04:23:25.000Z" + }, + "end": { + "$date": "2022-04-25T05:11:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d1da0656-6b0b-43c5-8b21-19428bfadd8e", + "start": { + "$date": "2022-04-25T05:11:25.000Z" + }, + "end": { + "$date": "2022-04-25T00:12:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "4a2b72ba-1fbf-4b24-8a13-89b7db67b561", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-24T16:09:03.000Z" + }, + "end": { + "$date": "2022-04-24T16:16:34.000Z" + }, + "events": [ + { + "uuid": "ba022e8e-7586-4cb6-8b14-c30f60f49e92", + "start": { + "$date": "2022-04-24T16:09:03.000Z" + }, + "end": { + "$date": "2022-04-24T16:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b77e5b62-16a1-4aae-bfdd-a24298e4a7ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-24T19:50:30.000Z" + }, + "end": { + "$date": "2022-04-24T23:14:48.000Z" + }, + "events": [ + { + "uuid": "bfa42e7b-9cc1-4982-a408-a3a65f5629e5", + "start": { + "$date": "2022-04-24T19:50:30.000Z" + }, + "end": { + "$date": "2022-04-24T23:14:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "025cdcad-a8b1-4b33-9270-0a2796132a1e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-24T21:13:12.000Z" + }, + "end": { + "$date": "2022-04-24T23:51:34.000Z" + }, + "events": [ + { + "uuid": "3e80c09e-a6e5-4b75-92a2-af0cfd41f854", + "start": { + "$date": "2022-04-24T21:13:12.000Z" + }, + "end": { + "$date": "2022-04-24T23:51:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "55b8e011-055e-481f-8d27-460ab6f5e7fe", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-04-24T22:03:25.000Z" + }, + "end": { + "$date": "2022-04-24T22:14:53.000Z" + }, + "events": [ + { + "uuid": "47c979f0-feb3-4838-b9c2-5c43e6273df4", + "start": { + "$date": "2022-04-24T22:03:25.000Z" + }, + "end": { + "$date": "2022-04-24T22:14:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "d144f6fd-2a23-4081-98c6-79c634e3c4a2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-04-24T22:50:52.000Z" + }, + "end": { + "$date": "2022-04-24T23:15:09.000Z" + }, + "events": [ + { + "uuid": "322dd8d5-3c10-4c56-a4dc-4cbc31c8de82", + "start": { + "$date": "2022-04-24T22:50:52.000Z" + }, + "end": { + "$date": "2022-04-24T23:15:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6d96b3f9-e429-4b1b-a518-1a496b818fd2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-24T23:15:13.000Z" + }, + "end": { + "$date": "2022-04-25T00:13:54.000Z" + }, + "events": [ + { + "uuid": "f736c441-b787-477e-8f1a-2ebe9aa07657", + "start": { + "$date": "2022-04-24T23:15:13.000Z" + }, + "end": { + "$date": "2022-04-25T00:13:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "399caaf7-929d-45a8-91e9-65d41ec28578", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-04-24T23:15:34.000Z" + }, + "end": { + "$date": "2022-04-25T01:15:40.000Z" + }, + "events": [ + { + "uuid": "020b0aa2-3a26-472c-be47-9f23bdf59917", + "start": { + "$date": "2022-04-24T23:15:34.000Z" + }, + "end": { + "$date": "2022-04-25T01:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8834d4fa-0fae-4f15-b8ae-db3e2012c569", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-25T00:10:15.000Z" + }, + "end": { + "$date": "2022-04-25T01:18:32.000Z" + }, + "events": [ + { + "uuid": "675ecd1b-5ce8-486b-a568-78fc5743d3d0", + "start": { + "$date": "2022-04-25T00:10:15.000Z" + }, + "end": { + "$date": "2022-04-25T01:18:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "64a00fce-c5f0-478b-af96-ecdc8d99e9e6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-25T00:14:56.000Z" + }, + "end": { + "$date": "2022-04-25T00:20:35.000Z" + }, + "events": [ + { + "uuid": "bb04912d-9c6d-48f6-9913-210c7ac4bf29", + "start": { + "$date": "2022-04-25T00:14:56.000Z" + }, + "end": { + "$date": "2022-04-25T00:20:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "df055f11-0a6c-4583-b533-9d833d0060cc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-25T00:44:32.000Z" + }, + "end": { + "$date": "2022-04-25T01:02:07.000Z" + }, + "events": [ + { + "uuid": "7fa14008-693d-49e0-a3e1-240e3d89c5a2", + "start": { + "$date": "2022-04-25T00:44:32.000Z" + }, + "end": { + "$date": "2022-04-25T01:02:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "25263638-fd0c-4c92-969c-1ed2e0cbb706", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-25T00:48:41.000Z" + }, + "end": { + "$date": "2022-04-25T11:16:33.000Z" + }, + "events": [ + { + "uuid": "c81c1540-68c9-4bbe-9b6e-b02973197511", + "start": { + "$date": "2022-04-25T00:48:41.000Z" + }, + "end": { + "$date": "2022-04-25T11:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6e67153f-fec2-4813-aa58-dd9da0f9938b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-25T02:04:57.000Z" + }, + "end": { + "$date": "2022-04-25T02:06:54.000Z" + }, + "events": [ + { + "uuid": "0d2c31f9-faa5-491e-98a6-a49728e37a17", + "start": { + "$date": "2022-04-25T02:04:57.000Z" + }, + "end": { + "$date": "2022-04-25T02:53:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a1142b6-8eb5-4aaf-8ec9-70f1170ba518", + "start": { + "$date": "2022-04-25T02:53:57.000Z" + }, + "end": { + "$date": "2022-04-25T02:06:54.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "96e53293-d883-4725-8ce8-dd1fbf897fb3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-25T03:34:22.000Z" + }, + "end": { + "$date": "2022-04-25T05:54:04.000Z" + }, + "events": [ + { + "uuid": "68b0f330-14b2-4695-8cbf-c2454accea87", + "start": { + "$date": "2022-04-25T03:34:22.000Z" + }, + "end": { + "$date": "2022-04-25T05:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "20b4009f-ff46-4c39-9127-29893acbb154", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-25T03:56:47.000Z" + }, + "end": { + "$date": "2022-04-25T04:00:28.000Z" + }, + "events": [ + { + "uuid": "8d157cfb-eb91-4701-b51c-7a5142183586", + "start": { + "$date": "2022-04-25T03:56:47.000Z" + }, + "end": { + "$date": "2022-04-25T04:00:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "15ab04bb-6035-4ac1-b850-25accb175ec1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-25T04:29:24.000Z" + }, + "end": { + "$date": "2022-04-25T06:11:40.000Z" + }, + "events": [ + { + "uuid": "545cbb62-6fec-4a9f-9189-5b95f3969eb0", + "start": { + "$date": "2022-04-25T04:29:24.000Z" + }, + "end": { + "$date": "2022-04-25T06:11:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "67daf8b8-6fae-4057-867c-61e6d13fb368", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-25T04:33:38.000Z" + }, + "end": { + "$date": "2022-04-25T05:54:18.000Z" + }, + "events": [ + { + "uuid": "d3a401a4-8664-400e-bcb6-f539267bffff", + "start": { + "$date": "2022-04-25T04:33:38.000Z" + }, + "end": { + "$date": "2022-04-25T05:54:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1793a55a-4a0c-4db5-ae6d-34519945724b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T05:08:23.000Z" + }, + "end": { + "$date": "2022-04-25T05:09:36.000Z" + }, + "events": [ + { + "uuid": "015975ff-d739-4c5d-93c3-37e7afc9eef0", + "start": { + "$date": "2022-04-25T05:08:23.000Z" + }, + "end": { + "$date": "2022-04-25T05:09:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb199b71-ce23-4218-92d7-b3272f379d96", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T05:13:36.000Z" + }, + "end": { + "$date": "2022-04-25T05:44:24.000Z" + }, + "events": [ + { + "uuid": "d51d7a17-805b-4b11-a11c-2335a015d463", + "start": { + "$date": "2022-04-25T05:13:36.000Z" + }, + "end": { + "$date": "2022-04-25T05:44:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cf7700ed-d648-4361-a231-7a4fe363d93d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-25T05:22:42.000Z" + }, + "end": { + "$date": "2022-04-25T06:25:16.000Z" + }, + "events": [ + { + "uuid": "139f0d0c-6657-4c54-81fc-817eaa4f66cd", + "start": { + "$date": "2022-04-25T05:22:42.000Z" + }, + "end": { + "$date": "2022-04-25T06:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3d4d93e-0b4d-4e0c-b017-70e92358c617", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T05:45:24.000Z" + }, + "end": { + "$date": "2022-04-25T06:22:34.000Z" + }, + "events": [ + { + "uuid": "9ad45437-1a17-40b9-acec-0fb8989439a8", + "start": { + "$date": "2022-04-25T05:45:24.000Z" + }, + "end": { + "$date": "2022-04-25T06:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24aa4e3d-14ea-4053-b31e-8992d88ac51b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T06:23:50.000Z" + }, + "end": { + "$date": "2022-04-25T06:53:34.000Z" + }, + "events": [ + { + "uuid": "6f87105d-4600-4618-8684-edc43f294dfd", + "start": { + "$date": "2022-04-25T06:23:50.000Z" + }, + "end": { + "$date": "2022-04-25T06:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efb85850-c3a9-4fad-97c4-e0e9f22cf4e5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T06:54:48.000Z" + }, + "end": { + "$date": "2022-04-25T07:31:45.000Z" + }, + "events": [ + { + "uuid": "2a56bd3c-f58b-494f-8c10-6dfc2ada3f8e", + "start": { + "$date": "2022-04-25T06:54:48.000Z" + }, + "end": { + "$date": "2022-04-25T07:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4aab793d-965a-4047-ae38-8ead1a0db342", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-25T06:58:37.000Z" + }, + "end": { + "$date": "2022-04-25T08:50:19.000Z" + }, + "events": [ + { + "uuid": "f42c1988-89a7-4355-b35b-cb9ad63144b8", + "start": { + "$date": "2022-04-25T06:58:37.000Z" + }, + "end": { + "$date": "2022-04-25T08:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad298c43-9c26-4616-8688-141d89e29d50", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T07:33:38.000Z" + }, + "end": { + "$date": "2022-04-25T07:59:42.000Z" + }, + "events": [ + { + "uuid": "f500cfa3-f3a6-42e3-a249-938644300894", + "start": { + "$date": "2022-04-25T07:33:38.000Z" + }, + "end": { + "$date": "2022-04-25T07:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d7faf77c-782a-49c6-9052-a593b3eb4901", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T08:01:22.000Z" + }, + "end": { + "$date": "2022-04-25T08:35:24.000Z" + }, + "events": [ + { + "uuid": "04b41fbf-993e-4737-9d30-2b7ca5e60632", + "start": { + "$date": "2022-04-25T08:01:22.000Z" + }, + "end": { + "$date": "2022-04-25T08:35:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "25d8ac9e-eada-4507-8122-1f1ea5d39aa0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-25T09:25:05.000Z" + }, + "end": { + "$date": "2022-04-25T09:37:22.000Z" + }, + "events": [ + { + "uuid": "e53e8a4e-ff5f-4841-9a60-292348bb4069", + "start": { + "$date": "2022-04-25T09:25:05.000Z" + }, + "end": { + "$date": "2022-04-25T09:37:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a29773ac-d333-434c-ac25-759b50eba6ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-25T15:58:55.000Z" + }, + "end": { + "$date": "2022-04-25T23:42:11.000Z" + }, + "events": [ + { + "uuid": "6c3d437a-bb28-4df1-a112-23de78e3dff4", + "start": { + "$date": "2022-04-25T15:58:55.000Z" + }, + "end": { + "$date": "2022-04-25T16:14:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "160a2a00-c569-4c29-bf3f-81da9a0ee2b7", + "start": { + "$date": "2022-04-25T16:14:55.000Z" + }, + "end": { + "$date": "2022-04-25T16:18:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1eb5e088-babd-42f0-b5cf-cd5c2185d756", + "start": { + "$date": "2022-04-25T16:18:55.000Z" + }, + "end": { + "$date": "2022-04-25T17:38:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dde57a47-9508-4530-b331-260780cdf884", + "start": { + "$date": "2022-04-25T17:38:55.000Z" + }, + "end": { + "$date": "2022-04-25T18:12:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f9a0abdc-93c1-454e-8c44-ef677ae48c81", + "start": { + "$date": "2022-04-25T18:12:55.000Z" + }, + "end": { + "$date": "2022-04-25T23:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ee8d3302-7bbe-49be-9f27-debed59e0707", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-25T22:40:49.000Z" + }, + "end": { + "$date": "2022-04-26T00:01:54.000Z" + }, + "events": [ + { + "uuid": "ad78cb13-761f-4124-813e-c49e16b67cbb", + "start": { + "$date": "2022-04-25T22:40:49.000Z" + }, + "end": { + "$date": "2022-04-26T00:01:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "12b2693e-1812-40d2-b3d0-5c9961b92d1d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-25T23:59:22.000Z" + }, + "end": { + "$date": "2022-04-26T00:15:38.000Z" + }, + "events": [ + { + "uuid": "74005198-1c7c-4655-9619-938a70263935", + "start": { + "$date": "2022-04-25T23:59:22.000Z" + }, + "end": { + "$date": "2022-04-26T00:15:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "4dc385fb-ba5d-43e6-a277-e049ae3168f5", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-04-26T00:10:09.000Z" + }, + "end": { + "$date": "2022-04-26T02:53:05.000Z" + }, + "events": [ + { + "uuid": "c3b49801-fd91-4a80-adfe-418a1804b6d3", + "start": { + "$date": "2022-04-26T00:10:09.000Z" + }, + "end": { + "$date": "2022-04-26T02:53:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c7336b1a-6827-4f22-bda0-1546471effdf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-26T00:56:34.000Z" + }, + "end": { + "$date": "2022-04-26T01:00:54.000Z" + }, + "events": [ + { + "uuid": "7add2dd0-0849-42ef-9b1e-3a3701296cf1", + "start": { + "$date": "2022-04-26T00:56:34.000Z" + }, + "end": { + "$date": "2022-04-26T01:00:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57f2865c-e587-43de-94a3-714adaef9fb4", + "uuid": "30a0e63a-76c7-4330-9fbd-514c7ecbd4f6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-26T01:28:00.000Z" + }, + "end": { + "$date": "2022-04-26T01:31:20.000Z" + }, + "events": [ + { + "uuid": "b9d79d90-1977-448d-b643-fbb4fee6ab12", + "start": { + "$date": "2022-04-26T01:28:00.000Z" + }, + "end": { + "$date": "2022-04-26T01:31:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "637ec669-da1d-4590-a921-feb798d306c5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-26T01:41:07.000Z" + }, + "end": { + "$date": "2022-04-26T04:55:54.000Z" + }, + "events": [ + { + "uuid": "8588cc62-3717-4193-b523-db3301a63361", + "start": { + "$date": "2022-04-26T01:41:07.000Z" + }, + "end": { + "$date": "2022-04-26T04:55:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4d1baed-68fb-45fd-afdc-b9e487068fb6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-26T02:24:04.000Z" + }, + "end": { + "$date": "2022-04-26T02:52:01.000Z" + }, + "events": [ + { + "uuid": "d1d4080e-5cf2-4a5a-ac98-5d1e0d2e192f", + "start": { + "$date": "2022-04-26T02:24:04.000Z" + }, + "end": { + "$date": "2022-04-26T02:52:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "79a3cc15-e712-45f0-8bea-5465a525bd97", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-26T02:37:04.000Z" + }, + "end": { + "$date": "2022-04-26T04:31:29.000Z" + }, + "events": [ + { + "uuid": "de6154bd-7c36-4f0d-a74e-69296ed04063", + "start": { + "$date": "2022-04-26T02:37:04.000Z" + }, + "end": { + "$date": "2022-04-26T04:31:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70f60f12-391a-4d54-bd3d-27e6e1e59504", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-26T02:52:42.000Z" + }, + "end": { + "$date": "2022-04-26T03:27:03.000Z" + }, + "events": [ + { + "uuid": "3e4c9a37-8af0-4d31-bf1e-8ccc1e59525e", + "start": { + "$date": "2022-04-26T02:52:42.000Z" + }, + "end": { + "$date": "2022-04-26T03:27:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e7836133-8798-4dcc-b7fd-bdb5e6122364", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-26T03:09:49.000Z" + }, + "end": { + "$date": "2022-04-26T04:31:25.000Z" + }, + "events": [ + { + "uuid": "52e4ff00-9962-466a-803b-4e07d2261624", + "start": { + "$date": "2022-04-26T03:09:49.000Z" + }, + "end": { + "$date": "2022-04-26T04:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f11bc614-07bb-4f22-97b9-c8138dd23c3e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-26T03:28:03.000Z" + }, + "end": { + "$date": "2022-04-26T04:03:47.000Z" + }, + "events": [ + { + "uuid": "a4fa72f0-fe18-47d8-826d-ac687de02263", + "start": { + "$date": "2022-04-26T03:28:03.000Z" + }, + "end": { + "$date": "2022-04-26T04:03:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f56332b5-8ffe-4e86-bfea-c15662dda254", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-26T04:10:50.000Z" + }, + "end": { + "$date": "2022-04-26T04:47:41.000Z" + }, + "events": [ + { + "uuid": "711d5a9c-6767-4ef5-b27e-8ebd1cec9f3b", + "start": { + "$date": "2022-04-26T04:10:50.000Z" + }, + "end": { + "$date": "2022-04-26T04:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "139ea24e-2a62-42e3-8e12-a48186d0b0e0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-26T04:49:14.000Z" + }, + "end": { + "$date": "2022-04-26T05:30:53.000Z" + }, + "events": [ + { + "uuid": "8c762992-656d-4e60-9e77-d2fa964cad79", + "start": { + "$date": "2022-04-26T04:49:14.000Z" + }, + "end": { + "$date": "2022-04-26T05:30:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "078d28bf-a0b0-4416-a6df-5b23bcc43606", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-26T05:32:21.000Z" + }, + "end": { + "$date": "2022-04-26T06:05:19.000Z" + }, + "events": [ + { + "uuid": "0136b32a-bbee-4130-b958-9923dc2c00a9", + "start": { + "$date": "2022-04-26T05:32:21.000Z" + }, + "end": { + "$date": "2022-04-26T06:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8363228c-08f9-459a-9610-7b96f6a3712e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-26T06:28:23.000Z" + }, + "end": { + "$date": "2022-04-26T06:32:34.000Z" + }, + "events": [ + { + "uuid": "04d0aceb-8944-40c4-a6c7-a96fee27c466", + "start": { + "$date": "2022-04-26T06:28:23.000Z" + }, + "end": { + "$date": "2022-04-26T06:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "97bae26d-b02f-4889-8563-cfef030a9e43", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-26T06:57:58.000Z" + }, + "end": { + "$date": "2022-04-26T08:08:50.000Z" + }, + "events": [ + { + "uuid": "063f3d19-fa35-448a-9ed3-2796d0c0b294", + "start": { + "$date": "2022-04-26T06:57:58.000Z" + }, + "end": { + "$date": "2022-04-26T08:08:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e6c08153-a6dc-4ccf-87c6-e11460a18c68", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-26T14:56:14.000Z" + }, + "end": { + "$date": "2022-04-26T17:19:57.000Z" + }, + "events": [ + { + "uuid": "04b383de-3daa-44ca-b728-79c229542c7a", + "start": { + "$date": "2022-04-26T14:56:14.000Z" + }, + "end": { + "$date": "2022-04-26T16:02:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e363f79-65ea-4a4e-a0c1-b78f906f5887", + "start": { + "$date": "2022-04-26T16:02:14.000Z" + }, + "end": { + "$date": "2022-04-26T16:07:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9957daba-e09c-443f-9152-e318b9983ad2", + "start": { + "$date": "2022-04-26T16:07:14.000Z" + }, + "end": { + "$date": "2022-04-26T17:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0b843db5-4bb1-4bb2-991e-7dc7d8784c9f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-26T18:23:37.000Z" + }, + "end": { + "$date": "2022-04-26T18:57:42.000Z" + }, + "events": [ + { + "uuid": "811d62ef-0e6a-4141-9ffd-ae2ede0bd0a6", + "start": { + "$date": "2022-04-26T18:23:37.000Z" + }, + "end": { + "$date": "2022-04-26T18:57:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1db6fdf3-1788-49d0-b75d-3659cccdf2ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-26T22:06:06.000Z" + }, + "end": { + "$date": "2022-04-26T22:13:00.000Z" + }, + "events": [ + { + "uuid": "7c957a32-58d9-4c88-b5d9-989d1b80e9aa", + "start": { + "$date": "2022-04-26T22:06:06.000Z" + }, + "end": { + "$date": "2022-04-26T22:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2ee9ab23-8c6a-4f87-b959-d0f05ec3e0c2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-26T22:14:06.000Z" + }, + "end": { + "$date": "2022-04-26T22:23:37.000Z" + }, + "events": [ + { + "uuid": "3cf3d055-c2b9-44a2-95d7-a5e5412c1280", + "start": { + "$date": "2022-04-26T22:14:06.000Z" + }, + "end": { + "$date": "2022-04-26T22:23:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ce1368a7-2f27-445b-8e6a-97578f02ac74", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-27T00:31:50.000Z" + }, + "end": { + "$date": "2022-04-27T01:15:52.000Z" + }, + "events": [ + { + "uuid": "da56cf75-7c7c-4c7a-85a0-9ad18d366c16", + "start": { + "$date": "2022-04-27T00:31:50.000Z" + }, + "end": { + "$date": "2022-04-27T00:48:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "dc2f1766-b4d5-4792-ad6d-02892ef136f2", + "start": { + "$date": "2022-04-27T00:48:50.000Z" + }, + "end": { + "$date": "2022-04-27T00:52:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "344db202-ed5b-4f58-821d-1091a8ba5c5e", + "start": { + "$date": "2022-04-27T00:52:50.000Z" + }, + "end": { + "$date": "2022-04-27T01:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c73e17cd-c519-469b-9f7c-a2e5ee8a638b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-27T01:05:58.000Z" + }, + "end": { + "$date": "2022-04-27T02:18:50.000Z" + }, + "events": [ + { + "uuid": "28e30037-b446-488e-b98c-7dae64134ee6", + "start": { + "$date": "2022-04-27T01:05:58.000Z" + }, + "end": { + "$date": "2022-04-27T02:18:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1a75fd21-81a9-4af5-8376-ab46117367f5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-27T01:44:06.000Z" + }, + "end": { + "$date": "2022-04-27T04:07:27.000Z" + }, + "events": [ + { + "uuid": "0b4261fe-ab18-42e5-8fd5-ec3b11a389ce", + "start": { + "$date": "2022-04-27T01:44:06.000Z" + }, + "end": { + "$date": "2022-04-27T04:07:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c932b01e-338b-4131-814f-60609fd209c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-27T01:57:19.000Z" + }, + "end": { + "$date": "2022-04-27T03:20:17.000Z" + }, + "events": [ + { + "uuid": "d66d909e-35b9-42e5-b5b4-d8be192580f5", + "start": { + "$date": "2022-04-27T01:57:19.000Z" + }, + "end": { + "$date": "2022-04-27T02:50:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a5ddd0fb-a2b6-4be0-98d0-955b8fbf2edb", + "start": { + "$date": "2022-04-27T02:50:19.000Z" + }, + "end": { + "$date": "2022-04-27T02:55:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5bb52c34-9ad5-4dea-b7c4-804372f330e7", + "start": { + "$date": "2022-04-27T02:55:19.000Z" + }, + "end": { + "$date": "2022-04-27T03:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "e18e71b7-d94c-4157-81b6-4408b81f8e3b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-27T05:22:51.000Z" + }, + "end": { + "$date": "2022-04-27T07:04:40.000Z" + }, + "events": [ + { + "uuid": "5fa0e2b2-578e-400b-a011-cbd64687dd35", + "start": { + "$date": "2022-04-27T05:22:51.000Z" + }, + "end": { + "$date": "2022-04-27T07:04:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3776f590-6c3f-4e17-8035-0a37afbf2079", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-27T02:58:28.000Z" + }, + "end": { + "$date": "2022-04-27T07:01:35.000Z" + }, + "events": [ + { + "uuid": "3c49dd15-748f-4422-b980-79422e7e1ec2", + "start": { + "$date": "2022-04-27T02:58:28.000Z" + }, + "end": { + "$date": "2022-04-27T07:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e9851611-9849-45bc-a461-c96a20266475", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T03:02:57.000Z" + }, + "end": { + "$date": "2022-04-27T03:12:21.000Z" + }, + "events": [ + { + "uuid": "428cd8f0-45be-48a6-baa1-2943401125b9", + "start": { + "$date": "2022-04-27T03:02:57.000Z" + }, + "end": { + "$date": "2022-04-27T03:12:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6ac6446d-6d76-47e4-b240-9ef9ab82b19f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T03:12:27.000Z" + }, + "end": { + "$date": "2022-04-27T05:05:19.000Z" + }, + "events": [ + { + "uuid": "f14eabd9-d04e-4359-aada-4e1c2c7708cd", + "start": { + "$date": "2022-04-27T03:12:27.000Z" + }, + "end": { + "$date": "2022-04-27T05:05:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "da5b323c-cd83-4495-94f4-693879551ae2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-27T03:13:51.000Z" + }, + "end": { + "$date": "2022-04-27T04:15:49.000Z" + }, + "events": [ + { + "uuid": "f73e51de-5403-4ff4-8f02-ff82354d55fc", + "start": { + "$date": "2022-04-27T03:13:51.000Z" + }, + "end": { + "$date": "2022-04-27T04:15:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a89ec982-52eb-4a3f-aab4-ef8a15cb7f8c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-27T03:21:26.000Z" + }, + "end": { + "$date": "2022-04-27T06:01:16.000Z" + }, + "events": [ + { + "uuid": "f7f5fb8f-7096-4ee9-b996-05266eb793f3", + "start": { + "$date": "2022-04-27T03:21:26.000Z" + }, + "end": { + "$date": "2022-04-27T06:01:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "6e5f14c4-7285-4c7a-8637-99c79a48ca5e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-27T05:10:21.000Z" + }, + "end": { + "$date": "2022-04-27T06:53:30.000Z" + }, + "events": [ + { + "uuid": "d7ae7ca6-5805-4671-8a03-949da8e1570c", + "start": { + "$date": "2022-04-27T05:10:21.000Z" + }, + "end": { + "$date": "2022-04-27T06:53:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "bbc9bf19-3fab-465a-9831-63bc3493407b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-27T07:16:37.000Z" + }, + "end": { + "$date": "2022-04-27T08:42:33.000Z" + }, + "events": [ + { + "uuid": "6dec9b9e-86cb-48c8-9788-43c273c870ee", + "start": { + "$date": "2022-04-27T07:16:37.000Z" + }, + "end": { + "$date": "2022-04-27T08:42:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b1e089c2-e636-4c31-9a44-af5e0a6cbd28", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-27T09:44:55.000Z" + }, + "end": { + "$date": "2022-04-27T10:51:10.000Z" + }, + "events": [ + { + "uuid": "3cde9def-c825-47fd-ba4f-f0135e79d655", + "start": { + "$date": "2022-04-27T09:44:55.000Z" + }, + "end": { + "$date": "2022-04-27T10:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "98b553a9-a34d-4832-aaea-963bbbc8639b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-27T16:37:36.000Z" + }, + "end": { + "$date": "2022-04-27T17:06:13.000Z" + }, + "events": [ + { + "uuid": "56e4fb99-3482-49b2-a828-89d847a66096", + "start": { + "$date": "2022-04-27T16:37:36.000Z" + }, + "end": { + "$date": "2022-04-27T17:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "914c313b-6cd0-4c70-902d-141db57059c3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-27T21:20:54.000Z" + }, + "end": { + "$date": "2022-04-27T21:24:35.000Z" + }, + "events": [ + { + "uuid": "3cb583aa-5b3c-48e8-a61a-74c2ae86d9c7", + "start": { + "$date": "2022-04-27T21:20:54.000Z" + }, + "end": { + "$date": "2022-04-27T21:24:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "79126cb4-5d51-4f9a-a902-1c323f141fbf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T21:29:01.000Z" + }, + "end": { + "$date": "2022-04-27T21:35:11.000Z" + }, + "events": [ + { + "uuid": "d005dc58-4f9e-4b9f-98e3-b486e3d9178c", + "start": { + "$date": "2022-04-27T21:29:01.000Z" + }, + "end": { + "$date": "2022-04-27T21:35:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c5c1a694-d912-405c-ac3b-af20982ae433", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T21:40:07.000Z" + }, + "end": { + "$date": "2022-04-27T21:40:41.000Z" + }, + "events": [ + { + "uuid": "37459a78-8234-4d40-ba32-31e00435e9cc", + "start": { + "$date": "2022-04-27T21:40:07.000Z" + }, + "end": { + "$date": "2022-04-27T21:40:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "4d8062b2-8c8f-4161-9ad7-0ef6675d2db2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T21:42:07.000Z" + }, + "end": { + "$date": "2022-04-27T21:43:27.000Z" + }, + "events": [ + { + "uuid": "3864a206-4d91-4178-9f13-c94092208cde", + "start": { + "$date": "2022-04-27T21:42:07.000Z" + }, + "end": { + "$date": "2022-04-27T21:43:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5dd9f06d-90e4-4ff0-8854-5aedd2a8789b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T21:45:07.000Z" + }, + "end": { + "$date": "2022-04-27T21:46:19.000Z" + }, + "events": [ + { + "uuid": "655a435e-79f6-473c-aadd-294cd3c99835", + "start": { + "$date": "2022-04-27T21:45:07.000Z" + }, + "end": { + "$date": "2022-04-27T21:46:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1e89f76d-9339-4cb9-8be4-76175648bbf8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T21:46:37.000Z" + }, + "end": { + "$date": "2022-04-27T21:48:13.000Z" + }, + "events": [ + { + "uuid": "7ca0bbdd-053d-44cd-b621-894023b23c1f", + "start": { + "$date": "2022-04-27T21:46:37.000Z" + }, + "end": { + "$date": "2022-04-27T21:48:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "83005588-c176-48a2-ae3f-e89c76d7e887", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T23:56:48.000Z" + }, + "end": { + "$date": "2022-04-27T23:59:12.000Z" + }, + "events": [ + { + "uuid": "4990f129-ec39-45dd-a456-ba49fbfd1921", + "start": { + "$date": "2022-04-27T23:56:48.000Z" + }, + "end": { + "$date": "2022-04-27T23:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e457c74e-8bf5-439f-b8fe-9dc4ecc46696", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-27T23:59:18.000Z" + }, + "end": { + "$date": "2022-04-28T00:04:37.000Z" + }, + "events": [ + { + "uuid": "393613c9-f4f3-42fc-8465-9c1e77025432", + "start": { + "$date": "2022-04-27T23:59:18.000Z" + }, + "end": { + "$date": "2022-04-28T00:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7acf5825-24f6-441d-8832-6550e1168665", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T00:25:04.000Z" + }, + "end": { + "$date": "2022-04-28T00:47:18.000Z" + }, + "events": [ + { + "uuid": "d932dff9-fe37-4442-bf5a-27361fb6a68b", + "start": { + "$date": "2022-04-28T00:25:04.000Z" + }, + "end": { + "$date": "2022-04-28T00:47:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "caa4946c-0d68-4b54-87b6-d28ddb2026a5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T00:50:33.000Z" + }, + "end": { + "$date": "2022-04-28T02:39:33.000Z" + }, + "events": [ + { + "uuid": "431cbab6-83d9-4b23-8ead-eda2a6b48397", + "start": { + "$date": "2022-04-28T00:50:33.000Z" + }, + "end": { + "$date": "2022-04-28T02:39:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "cf2761dd-d418-474c-96d2-3639eed8bf6c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-28T00:53:50.000Z" + }, + "end": { + "$date": "2022-04-28T02:36:37.000Z" + }, + "events": [ + { + "uuid": "cedd6409-b55b-4334-af24-85add21f1523", + "start": { + "$date": "2022-04-28T00:53:50.000Z" + }, + "end": { + "$date": "2022-04-28T02:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0c8d70b7-892a-4b9a-b778-b0fa59838329", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-28T01:26:23.000Z" + }, + "end": { + "$date": "2022-04-28T06:35:16.000Z" + }, + "events": [ + { + "uuid": "8788c2cf-a670-4d8b-9b89-6a2af5cb6b90", + "start": { + "$date": "2022-04-28T01:26:23.000Z" + }, + "end": { + "$date": "2022-04-28T06:35:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "982e4c18-419a-49fa-97cf-fc19596514e8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-28T01:47:23.000Z" + }, + "end": { + "$date": "2022-04-28T04:19:39.000Z" + }, + "events": [ + { + "uuid": "ffabaffc-a988-448f-9f55-6c355748c927", + "start": { + "$date": "2022-04-28T01:47:23.000Z" + }, + "end": { + "$date": "2022-04-28T04:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4f01dfaf-8055-494d-9c1c-ff0dc2aad69d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T02:39:57.000Z" + }, + "end": { + "$date": "2022-04-28T02:43:37.000Z" + }, + "events": [ + { + "uuid": "33ca64cb-502a-4d8a-8e7d-19a4c70f1153", + "start": { + "$date": "2022-04-28T02:39:57.000Z" + }, + "end": { + "$date": "2022-04-28T02:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "d9c36089-318d-4225-ac2b-a1cc24b6ab5e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T02:44:23.000Z" + }, + "end": { + "$date": "2022-04-28T03:49:05.000Z" + }, + "events": [ + { + "uuid": "46b10edc-a3aa-4570-aa7b-fa6f3be7c613", + "start": { + "$date": "2022-04-28T02:44:23.000Z" + }, + "end": { + "$date": "2022-04-28T03:49:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "5ef0087f-fefb-4879-ad8a-0851db0ce06e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-28T03:39:33.000Z" + }, + "end": { + "$date": "2022-04-28T06:39:05.000Z" + }, + "events": [ + { + "uuid": "b2d8690f-96b9-4a6a-92f5-05d7e94b3c03", + "start": { + "$date": "2022-04-28T03:39:33.000Z" + }, + "end": { + "$date": "2022-04-28T06:39:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f2843cde-a928-481a-939c-a80924e957f1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T03:49:25.000Z" + }, + "end": { + "$date": "2022-04-28T05:33:44.000Z" + }, + "events": [ + { + "uuid": "f5395844-29f3-4fac-9ed3-0f9105b85551", + "start": { + "$date": "2022-04-28T03:49:25.000Z" + }, + "end": { + "$date": "2022-04-28T05:33:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c82c6244-8b1d-413a-bfa5-bfc89c37c63e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-28T04:53:36.000Z" + }, + "end": { + "$date": "2022-04-28T07:08:52.000Z" + }, + "events": [ + { + "uuid": "9d403575-51ec-41fe-909c-364eb88d5ffd", + "start": { + "$date": "2022-04-28T04:53:36.000Z" + }, + "end": { + "$date": "2022-04-28T07:08:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "34a52f37-eee9-4e79-929d-56f7ea1480e4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-28T11:09:35.000Z" + }, + "end": { + "$date": "2022-04-28T13:23:28.000Z" + }, + "events": [ + { + "uuid": "e8f4fe60-eb3c-4f5b-926f-2d863f2aefaa", + "start": { + "$date": "2022-04-28T11:09:35.000Z" + }, + "end": { + "$date": "2022-04-28T13:23:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "744178cb-72fb-4002-b9b1-cee314811005", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-28T14:30:10.000Z" + }, + "end": { + "$date": "2022-04-28T15:21:22.000Z" + }, + "events": [ + { + "uuid": "97d1ef44-2eff-44b1-9645-c66c0ecdbc9a", + "start": { + "$date": "2022-04-28T14:30:10.000Z" + }, + "end": { + "$date": "2022-04-28T15:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b131a3a9-fd44-4954-b110-a57d951ae0fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-28T15:50:49.000Z" + }, + "end": { + "$date": "2022-04-28T16:31:25.000Z" + }, + "events": [ + { + "uuid": "a7379c12-8737-446d-ad3a-5c72b324694d", + "start": { + "$date": "2022-04-28T15:50:49.000Z" + }, + "end": { + "$date": "2022-04-28T16:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2f07c823-f4e7-4b7a-b53d-c7724d010e84", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-28T17:53:07.000Z" + }, + "end": { + "$date": "2022-04-28T18:07:43.000Z" + }, + "events": [ + { + "uuid": "67e979dc-e2a5-4b09-a711-c13e12130110", + "start": { + "$date": "2022-04-28T17:53:07.000Z" + }, + "end": { + "$date": "2022-04-28T18:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "33a5e047-3e26-4fbd-bc0d-31fac5854ff2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T22:15:57.000Z" + }, + "end": { + "$date": "2022-04-28T22:43:40.000Z" + }, + "events": [ + { + "uuid": "d76b3799-13cb-4a33-aa25-a8978c5a3c2a", + "start": { + "$date": "2022-04-28T22:15:57.000Z" + }, + "end": { + "$date": "2022-04-28T22:43:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7c78c068-bec7-46bf-b241-ab09071f95b2", + "uuid": "85cefd52-22df-466a-bc80-e8bb289d8d7e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-28T22:41:39.000Z" + }, + "end": { + "$date": "2022-04-28T22:45:59.000Z" + }, + "events": [ + { + "uuid": "fe224c21-4a74-4cd0-9e49-88dc6ce10337", + "start": { + "$date": "2022-04-28T22:41:39.000Z" + }, + "end": { + "$date": "2022-04-28T22:45:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ddd80ad0-08aa-4aa4-98d7-25e2333be080", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-28T22:44:41.000Z" + }, + "end": { + "$date": "2022-04-29T01:18:12.000Z" + }, + "events": [ + { + "uuid": "65a28a65-0869-423f-bd66-6b34ec9f1c23", + "start": { + "$date": "2022-04-28T22:44:41.000Z" + }, + "end": { + "$date": "2022-04-28T23:29:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a835a8a-b240-453b-9ab0-a8207b017ba1", + "start": { + "$date": "2022-04-28T23:29:41.000Z" + }, + "end": { + "$date": "2022-04-29T01:18:12.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7c78c068-bec7-46bf-b241-ab09071f95b2", + "uuid": "178e1099-4c19-4b80-a22b-af6b3a854f9d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-28T22:55:45.000Z" + }, + "end": { + "$date": "2022-04-28T22:55:50.000Z" + }, + "events": [ + { + "uuid": "fadce887-ea1e-49d6-8e0c-d207e6369e5f", + "start": { + "$date": "2022-04-28T22:55:45.000Z" + }, + "end": { + "$date": "2022-04-28T22:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "f4a62369-b721-4d39-8eb7-cd5206e40da2", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-28T23:10:13.000Z" + }, + "end": { + "$date": "2022-04-29T03:54:58.000Z" + }, + "events": [ + { + "uuid": "5a91f410-32a5-4152-aa28-a1804e1a41c6", + "start": { + "$date": "2022-04-28T23:10:13.000Z" + }, + "end": { + "$date": "2022-04-29T03:54:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "551c2b8f-85b7-4f76-8456-37c8de67b9e3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-28T23:12:12.000Z" + }, + "end": { + "$date": "2022-04-28T23:17:32.000Z" + }, + "events": [ + { + "uuid": "165c664b-263d-4473-b1e8-f4762d9772bd", + "start": { + "$date": "2022-04-28T23:12:12.000Z" + }, + "end": { + "$date": "2022-04-28T23:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c2b03525-0f97-46df-85bb-f795da5bfb16", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-28T23:29:48.000Z" + }, + "end": { + "$date": "2022-04-28T23:31:43.000Z" + }, + "events": [ + { + "uuid": "014d82e6-13ed-4a45-8e12-0b507cbef431", + "start": { + "$date": "2022-04-28T23:29:48.000Z" + }, + "end": { + "$date": "2022-04-28T23:31:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "50c0806a-3cd7-48c1-bb6a-30c742507fc4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-28T23:35:08.000Z" + }, + "end": { + "$date": "2022-04-28T23:36:33.000Z" + }, + "events": [ + { + "uuid": "c560ad6a-fd18-48e6-90eb-db0398e7bfb9", + "start": { + "$date": "2022-04-28T23:35:08.000Z" + }, + "end": { + "$date": "2022-04-28T23:36:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bec370d3-2860-40d9-b4c4-3e022ca3abeb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-29T02:04:00.000Z" + }, + "end": { + "$date": "2022-04-29T05:37:02.000Z" + }, + "events": [ + { + "uuid": "1595e27d-14a0-418d-96d6-f323fb2c7138", + "start": { + "$date": "2022-04-29T02:04:00.000Z" + }, + "end": { + "$date": "2022-04-29T05:37:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "32730f47-e927-49c1-96e6-73a16240aa2b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T02:20:15.000Z" + }, + "end": { + "$date": "2022-04-29T02:34:10.000Z" + }, + "events": [ + { + "uuid": "b0638eae-4fbd-4a20-9af0-dec52ea99f77", + "start": { + "$date": "2022-04-29T02:20:15.000Z" + }, + "end": { + "$date": "2022-04-29T02:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "dd7e01eb-f10f-49b0-9af3-d59025aac9e9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T02:59:09.000Z" + }, + "end": { + "$date": "2022-04-29T03:37:33.000Z" + }, + "events": [ + { + "uuid": "91322f29-120c-40ae-9ba3-a8a7db763820", + "start": { + "$date": "2022-04-29T02:59:09.000Z" + }, + "end": { + "$date": "2022-04-29T03:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "41a3064f-7322-4369-8b1d-62fcc88f0ead", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-29T03:02:28.000Z" + }, + "end": { + "$date": "2022-04-29T03:05:54.000Z" + }, + "events": [ + { + "uuid": "44623af7-5779-4214-9b09-a905f243786c", + "start": { + "$date": "2022-04-29T03:02:28.000Z" + }, + "end": { + "$date": "2022-04-29T03:05:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8e8aac20-c5ff-4e5b-95ba-c871b3aec249", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-29T03:06:09.000Z" + }, + "end": { + "$date": "2022-04-29T04:38:28.000Z" + }, + "events": [ + { + "uuid": "50e1f85d-e129-40a4-a94f-70da5324d8ae", + "start": { + "$date": "2022-04-29T03:06:09.000Z" + }, + "end": { + "$date": "2022-04-29T04:38:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1fe3835a-d0ba-415e-9e12-56d53b3855dd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T03:38:29.000Z" + }, + "end": { + "$date": "2022-04-29T03:56:20.000Z" + }, + "events": [ + { + "uuid": "2979d699-36f9-4379-84f2-9cd592465a2e", + "start": { + "$date": "2022-04-29T03:38:29.000Z" + }, + "end": { + "$date": "2022-04-29T03:56:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "d022ac47-c30b-43bb-80f9-d165dcf16374", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T03:57:55.000Z" + }, + "end": { + "$date": "2022-04-29T04:04:30.000Z" + }, + "events": [ + { + "uuid": "3aa569be-c52c-4831-9a32-1cba9e7d797c", + "start": { + "$date": "2022-04-29T03:57:55.000Z" + }, + "end": { + "$date": "2022-04-29T04:04:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "32052fa5-ad94-45db-974c-cbc11310cf94", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T04:05:41.000Z" + }, + "end": { + "$date": "2022-04-29T04:06:45.000Z" + }, + "events": [ + { + "uuid": "93adfe24-6713-4ad6-b68b-27836f62362f", + "start": { + "$date": "2022-04-29T04:05:41.000Z" + }, + "end": { + "$date": "2022-04-29T04:06:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "8518313d-9f0f-40bd-8105-f6ae1a908e0f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T04:07:26.000Z" + }, + "end": { + "$date": "2022-04-29T04:11:36.000Z" + }, + "events": [ + { + "uuid": "b1ab877b-9a1d-4c66-8ca8-a0a2c03b314d", + "start": { + "$date": "2022-04-29T04:07:26.000Z" + }, + "end": { + "$date": "2022-04-29T04:11:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "48a9bde7-9ac9-46da-84b9-1a513c34b47e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T04:12:11.000Z" + }, + "end": { + "$date": "2022-04-29T05:26:42.000Z" + }, + "events": [ + { + "uuid": "10fc8d69-ee14-4bde-8e67-58008cef625a", + "start": { + "$date": "2022-04-29T04:12:11.000Z" + }, + "end": { + "$date": "2022-04-29T05:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "e622f59b-f715-4944-b161-05d03801b5ae", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-04-29T05:33:43.000Z" + }, + "end": { + "$date": "2022-04-29T05:57:19.000Z" + }, + "events": [ + { + "uuid": "ecb71408-f4ff-4e86-b285-3d17a316745e", + "start": { + "$date": "2022-04-29T05:33:43.000Z" + }, + "end": { + "$date": "2022-04-29T05:57:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8965476-80f2-4cce-b332-e193fdccc016", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-29T06:45:04.000Z" + }, + "end": { + "$date": "2022-04-29T09:36:52.000Z" + }, + "events": [ + { + "uuid": "0e5b2f8f-0a17-4b4b-bdc0-051119bcaa65", + "start": { + "$date": "2022-04-29T06:45:04.000Z" + }, + "end": { + "$date": "2022-04-29T09:36:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40e5d108-510c-4706-99ab-6a4178188c50", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-29T06:45:43.000Z" + }, + "end": { + "$date": "2022-04-29T08:39:05.000Z" + }, + "events": [ + { + "uuid": "84d6e988-04cd-438e-a456-b3465de4f418", + "start": { + "$date": "2022-04-29T06:45:43.000Z" + }, + "end": { + "$date": "2022-04-29T08:39:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "48faf3a5-34e6-4899-9b29-257cea691537", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-29T06:48:40.000Z" + }, + "end": { + "$date": "2022-04-29T09:06:44.000Z" + }, + "events": [ + { + "uuid": "b0731ace-f277-4784-9a1f-883195fbcd95", + "start": { + "$date": "2022-04-29T06:48:40.000Z" + }, + "end": { + "$date": "2022-04-29T09:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fe2d1d40-0285-43aa-92e9-f10267093f20", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-29T09:07:12.000Z" + }, + "end": { + "$date": "2022-04-29T09:16:04.000Z" + }, + "events": [ + { + "uuid": "88ceae61-2b01-409c-83fa-d2338a4c4377", + "start": { + "$date": "2022-04-29T09:07:12.000Z" + }, + "end": { + "$date": "2022-04-29T09:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "efb2b5b6-1808-450b-8428-eb5dfdf5a20c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-29T09:16:24.000Z" + }, + "end": { + "$date": "2022-04-29T09:36:35.000Z" + }, + "events": [ + { + "uuid": "830aa2b6-66f8-41b0-badc-6d36450f02ef", + "start": { + "$date": "2022-04-29T09:16:24.000Z" + }, + "end": { + "$date": "2022-04-29T09:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a3997a70-48bd-4d6e-8c04-88c703e3e4fa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-04-29T13:12:11.000Z" + }, + "end": { + "$date": "2022-04-29T13:18:42.000Z" + }, + "events": [ + { + "uuid": "67a7f454-7793-4ebe-83ac-d525b802e37c", + "start": { + "$date": "2022-04-29T13:12:11.000Z" + }, + "end": { + "$date": "2022-04-29T13:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e49b6dbb-9679-4ab8-aeab-01bad0a1b5f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-29T15:22:32.000Z" + }, + "end": { + "$date": "2022-04-29T15:48:28.000Z" + }, + "events": [ + { + "uuid": "1a708f36-b03a-4fe1-8a83-9962765ca5cf", + "start": { + "$date": "2022-04-29T15:22:32.000Z" + }, + "end": { + "$date": "2022-04-29T15:48:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "e11fe0ea-e8dd-4a71-8dca-a35a84f62d78", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-29T16:48:00.000Z" + }, + "end": { + "$date": "2022-04-29T16:51:40.000Z" + }, + "events": [ + { + "uuid": "c4ea79a8-737f-4162-8458-0330a2a54c12", + "start": { + "$date": "2022-04-29T16:48:00.000Z" + }, + "end": { + "$date": "2022-04-29T16:51:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dc3a802d-7e0c-4f20-be9b-a9bc73058fc3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-29T16:53:13.000Z" + }, + "end": { + "$date": "2022-04-29T18:10:00.000Z" + }, + "events": [ + { + "uuid": "ac429fbe-0861-4964-9354-d687509e3a28", + "start": { + "$date": "2022-04-29T16:53:13.000Z" + }, + "end": { + "$date": "2022-04-29T18:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "98220acd-1e7b-4cf9-9159-57a69e5b0a37", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-29T16:53:25.000Z" + }, + "end": { + "$date": "2022-04-29T18:29:22.000Z" + }, + "events": [ + { + "uuid": "5320510b-0787-46fc-96db-6c98337a2499", + "start": { + "$date": "2022-04-29T16:53:25.000Z" + }, + "end": { + "$date": "2022-04-29T18:29:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6eb75a21-c045-4b6c-aa68-68b95e74f02a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-29T20:47:34.000Z" + }, + "end": { + "$date": "2022-04-30T00:33:19.000Z" + }, + "events": [ + { + "uuid": "412e6339-c146-4aa2-ac1b-dd5e8b6d17e0", + "start": { + "$date": "2022-04-29T20:47:34.000Z" + }, + "end": { + "$date": "2022-04-30T00:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "59acf1a2-9eb4-4003-93b4-62ee6c50ab1c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-29T20:58:10.000Z" + }, + "end": { + "$date": "2022-04-30T00:33:20.000Z" + }, + "events": [ + { + "uuid": "cb9490e6-0e86-4cfa-bfa5-3dee648d1734", + "start": { + "$date": "2022-04-29T20:58:10.000Z" + }, + "end": { + "$date": "2022-04-30T00:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5b9d50d1-182b-48e5-a338-506bc5d81197", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-29T22:15:43.000Z" + }, + "end": { + "$date": "2022-04-30T00:12:51.000Z" + }, + "events": [ + { + "uuid": "3e16a4fb-da4b-41b8-9d01-b664198c6da0", + "start": { + "$date": "2022-04-29T22:15:43.000Z" + }, + "end": { + "$date": "2022-04-30T00:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "81efe916-a7f7-4086-86a9-b67dcc6ef72f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-29T23:49:23.000Z" + }, + "end": { + "$date": "2022-04-30T06:11:13.000Z" + }, + "events": [ + { + "uuid": "718a482c-8a53-4e8f-981e-51b3dcb2d2ca", + "start": { + "$date": "2022-04-29T23:49:23.000Z" + }, + "end": { + "$date": "2022-04-30T00:39:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "76ece20e-c486-4f0f-bf1a-333bb65ae7fe", + "start": { + "$date": "2022-04-30T00:39:23.000Z" + }, + "end": { + "$date": "2022-04-30T01:13:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0f13fd91-fde7-4b8c-8ba0-036e7313789a", + "start": { + "$date": "2022-04-30T01:13:23.000Z" + }, + "end": { + "$date": "2022-04-30T05:01:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8ff0fbcc-10f3-4563-ad50-9502bb052ea8", + "start": { + "$date": "2022-04-30T05:01:23.000Z" + }, + "end": { + "$date": "2022-04-30T05:12:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eef2c66c-2d19-4c69-8fbe-2f0baf911d3f", + "start": { + "$date": "2022-04-30T05:12:23.000Z" + }, + "end": { + "$date": "2022-04-30T05:17:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb6429df-de08-434c-a1b9-b5a21e28fe1d", + "start": { + "$date": "2022-04-30T05:17:23.000Z" + }, + "end": { + "$date": "2022-04-30T05:23:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "78ded33f-7c0b-4536-b197-98ef2cbee90e", + "start": { + "$date": "2022-04-30T05:23:23.000Z" + }, + "end": { + "$date": "2022-04-30T06:11:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9454fc48-19d8-45c7-82f7-cf2fd9f60c73", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-04-30T01:00:27.000Z" + }, + "end": { + "$date": "2022-04-30T04:43:33.000Z" + }, + "events": [ + { + "uuid": "e7409bf9-9c14-42ee-842e-cb6fc56d0fbc", + "start": { + "$date": "2022-04-30T01:00:27.000Z" + }, + "end": { + "$date": "2022-04-30T04:43:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3b036f80-1df7-44ef-b504-9277c39d6cb5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-30T01:01:27.000Z" + }, + "end": { + "$date": "2022-04-30T04:41:41.000Z" + }, + "events": [ + { + "uuid": "f5ddef4b-603e-42fc-9e0b-4c19986967e5", + "start": { + "$date": "2022-04-30T01:01:27.000Z" + }, + "end": { + "$date": "2022-04-30T04:41:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b2ef4e3f-62e0-4e7b-8326-1f03e851ecb5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-30T01:38:13.000Z" + }, + "end": { + "$date": "2022-04-30T03:56:12.000Z" + }, + "events": [ + { + "uuid": "420b2631-8572-433d-8801-8168c4161882", + "start": { + "$date": "2022-04-30T01:38:13.000Z" + }, + "end": { + "$date": "2022-04-30T03:56:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "96948127-a2a0-4080-8d65-94c34635a63c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-30T02:49:51.000Z" + }, + "end": { + "$date": "2022-04-30T03:29:19.000Z" + }, + "events": [ + { + "uuid": "633fb6c7-c504-4604-9c9b-94f8d40224bc", + "start": { + "$date": "2022-04-30T02:49:51.000Z" + }, + "end": { + "$date": "2022-04-30T03:29:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88b5990f-7367-454a-8268-f8998963f175", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-30T03:36:39.000Z" + }, + "end": { + "$date": "2022-04-30T04:08:18.000Z" + }, + "events": [ + { + "uuid": "4de4224e-744b-4f21-9906-49e261eafae0", + "start": { + "$date": "2022-04-30T03:36:39.000Z" + }, + "end": { + "$date": "2022-04-30T04:08:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ad882aa6-aa36-43f9-b782-5651c9e1ce33", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-30T04:13:17.000Z" + }, + "end": { + "$date": "2022-04-30T04:16:57.000Z" + }, + "events": [ + { + "uuid": "d0913130-b5a9-45c2-a22e-b724996df805", + "start": { + "$date": "2022-04-30T04:13:17.000Z" + }, + "end": { + "$date": "2022-04-30T04:16:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c3e02d4-fc0a-4ca4-a44e-4868c4ef6cfd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-30T05:51:14.000Z" + }, + "end": { + "$date": "2022-04-30T06:17:36.000Z" + }, + "events": [ + { + "uuid": "5aa9dcd2-bc53-4c53-87cf-6f3bd5e2484f", + "start": { + "$date": "2022-04-30T05:51:14.000Z" + }, + "end": { + "$date": "2022-04-30T06:17:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e960abe7-bc99-4000-922e-f9c9f6f4846c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-30T06:35:17.000Z" + }, + "end": { + "$date": "2022-04-30T06:35:37.000Z" + }, + "events": [ + { + "uuid": "53c3c4f7-9d8a-4ad0-9e16-4c87cedcaa39", + "start": { + "$date": "2022-04-30T06:35:17.000Z" + }, + "end": { + "$date": "2022-04-30T06:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "447031b2-016c-48df-9c0d-1ff10465661d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-30T06:49:49.000Z" + }, + "end": { + "$date": "2022-04-30T07:38:55.000Z" + }, + "events": [ + { + "uuid": "0bd404d6-17f6-46b4-9396-15ac01b11c8c", + "start": { + "$date": "2022-04-30T06:49:49.000Z" + }, + "end": { + "$date": "2022-04-30T07:38:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "48244615-6270-42a4-8022-4c3463db97f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-30T06:38:52.000Z" + }, + "end": { + "$date": "2022-04-30T07:13:50.000Z" + }, + "events": [ + { + "uuid": "7da7eda9-3725-4081-8403-e6b2757f2736", + "start": { + "$date": "2022-04-30T06:38:52.000Z" + }, + "end": { + "$date": "2022-04-30T07:13:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8d7cf9d5-a021-4593-bcd3-ae024fc1abb1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-30T06:49:35.000Z" + }, + "end": { + "$date": "2022-04-30T07:25:52.000Z" + }, + "events": [ + { + "uuid": "6eecdccb-fd9d-4220-b36f-150edeabd49a", + "start": { + "$date": "2022-04-30T06:49:35.000Z" + }, + "end": { + "$date": "2022-04-30T07:25:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "3af38d4f-152c-4538-aafe-cb31b69df76b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-04-30T07:35:46.000Z" + }, + "end": { + "$date": "2022-04-30T10:40:54.000Z" + }, + "events": [ + { + "uuid": "79a1c151-1cde-459a-bbf5-83b1d86b1035", + "start": { + "$date": "2022-04-30T07:35:46.000Z" + }, + "end": { + "$date": "2022-04-30T10:40:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "199b7f0c-b6b8-4121-8cc7-0fafe00bab1c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-04-30T09:17:48.000Z" + }, + "end": { + "$date": "2022-04-30T09:20:03.000Z" + }, + "events": [ + { + "uuid": "a6ba465f-4a2d-4e5c-8f10-55bbf3e83d04", + "start": { + "$date": "2022-04-30T09:17:48.000Z" + }, + "end": { + "$date": "2022-04-30T09:20:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b623902f-7e28-4225-a877-781dcb12cb43", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-30T14:40:32.000Z" + }, + "end": { + "$date": "2022-04-30T14:49:33.000Z" + }, + "events": [ + { + "uuid": "f730a4b5-dcd3-46ac-86dd-7eeca9e6647c", + "start": { + "$date": "2022-04-30T14:40:32.000Z" + }, + "end": { + "$date": "2022-04-30T14:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc820e32-affd-42e4-9522-e18e5096efb2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-30T15:04:20.000Z" + }, + "end": { + "$date": "2022-04-30T16:41:08.000Z" + }, + "events": [ + { + "uuid": "0d98fbbf-0f54-43cd-8273-5f1ebf9ce179", + "start": { + "$date": "2022-04-30T15:04:20.000Z" + }, + "end": { + "$date": "2022-04-30T16:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "b7e4749e-cc6e-4aa5-bab0-c8a0ed65f4e4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-04-30T17:56:04.000Z" + }, + "end": { + "$date": "2022-04-30T20:13:39.000Z" + }, + "events": [ + { + "uuid": "28fe442f-5bfd-4347-8a87-e402cb348337", + "start": { + "$date": "2022-04-30T17:56:04.000Z" + }, + "end": { + "$date": "2022-04-30T21:00:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2d77691-380a-45e2-addf-7a3f72b9fb7b", + "start": { + "$date": "2022-04-30T21:00:04.000Z" + }, + "end": { + "$date": "2022-04-30T21:05:04.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8f66635d-4f53-489d-a598-368c73da71bd", + "start": { + "$date": "2022-04-30T21:05:04.000Z" + }, + "end": { + "$date": "2022-04-30T21:15:04.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e05966af-c102-4679-b2ff-f03241d95fb9", + "start": { + "$date": "2022-04-30T21:15:04.000Z" + }, + "end": { + "$date": "2022-04-30T20:13:39.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7565702a-de27-43ce-9632-07130f77ccbf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-04-30T18:54:15.000Z" + }, + "end": { + "$date": "2022-04-30T18:55:24.000Z" + }, + "events": [ + { + "uuid": "da3adaaa-fc24-4d8d-85ee-7447c6340662", + "start": { + "$date": "2022-04-30T18:54:15.000Z" + }, + "end": { + "$date": "2022-04-30T18:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "50c919c4-1322-4298-9afa-4cc2c106223e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-04-30T19:23:50.000Z" + }, + "end": { + "$date": "2022-05-01T00:08:03.000Z" + }, + "events": [ + { + "uuid": "6f475017-a584-4bda-ab81-629d5bc26909", + "start": { + "$date": "2022-04-30T19:23:50.000Z" + }, + "end": { + "$date": "2022-04-30T20:54:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6a7fd98a-b335-4581-8d32-bcaad9d230c8", + "start": { + "$date": "2022-04-30T20:54:50.000Z" + }, + "end": { + "$date": "2022-04-30T20:59:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3fc46e20-303b-4dc7-87c7-bb1c2c5c6e2a", + "start": { + "$date": "2022-04-30T20:59:50.000Z" + }, + "end": { + "$date": "2022-05-01T00:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2b4aded5-345f-4105-a901-e206660aeba0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-01T02:46:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:34:07.000Z" + }, + "events": [ + { + "uuid": "1cb6ea36-7eb8-42f0-a8e3-9609d394d520", + "start": { + "$date": "2022-05-01T02:46:03.000Z" + }, + "end": { + "$date": "2022-05-01T04:44:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a18ddfdb-2b05-47d8-80cc-46c2aa6a29c2", + "start": { + "$date": "2022-05-01T04:44:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:12:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f5e61c4e-1498-444c-9028-45efdd19bf6a", + "start": { + "$date": "2022-05-01T05:12:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:22:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "130dcae8-08eb-48f9-959e-c36431ae74b3", + "start": { + "$date": "2022-05-01T05:22:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:31:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9d165770-fec1-4785-93e8-169add27a17a", + "start": { + "$date": "2022-05-01T05:31:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:44:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "94d911af-08d1-434c-97bd-fc4041221633", + "start": { + "$date": "2022-05-01T05:44:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:55:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "47f8c587-eed5-4f5e-95a8-96b3d787daf7", + "start": { + "$date": "2022-05-01T05:55:03.000Z" + }, + "end": { + "$date": "2022-05-01T07:08:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddf27c89-34de-4650-9f7e-193a44bdc50c", + "start": { + "$date": "2022-05-01T07:08:03.000Z" + }, + "end": { + "$date": "2022-05-01T07:11:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1e7ec9b1-6205-4c6b-8726-a9ad65b35fc6", + "start": { + "$date": "2022-05-01T07:11:03.000Z" + }, + "end": { + "$date": "2022-05-01T07:27:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67612d12-d4fd-41d4-90d3-7afbd11c2bb3", + "start": { + "$date": "2022-05-01T07:27:03.000Z" + }, + "end": { + "$date": "2022-05-01T07:32:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a840ed3a-90bc-4625-a418-01c732ec37f0", + "start": { + "$date": "2022-05-01T07:32:03.000Z" + }, + "end": { + "$date": "2022-05-01T07:42:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7dea775f-69d7-4540-9d9f-823d6f7d3bb3", + "start": { + "$date": "2022-05-01T07:42:03.000Z" + }, + "end": { + "$date": "2022-05-01T08:18:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "03ec2e6b-25bb-4585-b501-8cf545a20ded", + "start": { + "$date": "2022-05-01T08:18:03.000Z" + }, + "end": { + "$date": "2022-05-01T08:36:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1e07acad-e5a7-4f44-bdc5-b240bbda941c", + "start": { + "$date": "2022-05-01T08:36:03.000Z" + }, + "end": { + "$date": "2022-05-01T08:53:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d7c7cecf-00c3-4a40-a61f-830e937937ae", + "start": { + "$date": "2022-05-01T08:53:03.000Z" + }, + "end": { + "$date": "2022-05-01T05:34:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "52932d68-94f7-49ce-9733-7ba32a8d9f49", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-04-30T23:24:40.000Z" + }, + "end": { + "$date": "2022-05-01T02:49:33.000Z" + }, + "events": [ + { + "uuid": "3404ad30-3c1f-4321-a31f-4111d014ec00", + "start": { + "$date": "2022-04-30T23:24:40.000Z" + }, + "end": { + "$date": "2022-05-01T02:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e68785f1-57b8-461c-a7b9-56efc160cb2a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-01T00:00:35.000Z" + }, + "end": { + "$date": "2022-05-01T01:47:28.000Z" + }, + "events": [ + { + "uuid": "a6636fcb-e384-4db6-a77e-234b48c0794a", + "start": { + "$date": "2022-05-01T00:00:35.000Z" + }, + "end": { + "$date": "2022-05-01T01:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fdaee91d-6d1b-4dec-b50d-b6d9e393e58a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-01T00:06:39.000Z" + }, + "end": { + "$date": "2022-05-01T01:47:34.000Z" + }, + "events": [ + { + "uuid": "fdca955b-67c3-4c60-966e-35eeafbd67c1", + "start": { + "$date": "2022-05-01T00:06:39.000Z" + }, + "end": { + "$date": "2022-05-01T01:47:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "903a730b-e4df-4c74-85fa-55d414121474", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T02:00:12.000Z" + }, + "end": { + "$date": "2022-05-01T02:01:17.000Z" + }, + "events": [ + { + "uuid": "d07775cf-5a5f-4256-8a66-d3554749f006", + "start": { + "$date": "2022-05-01T02:00:12.000Z" + }, + "end": { + "$date": "2022-05-01T02:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bd2187de-920e-48a3-acf8-c023b6f03838", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T02:01:57.000Z" + }, + "end": { + "$date": "2022-05-01T02:02:22.000Z" + }, + "events": [ + { + "uuid": "4721a102-958c-4693-ba9c-1708ce4d1607", + "start": { + "$date": "2022-05-01T02:01:57.000Z" + }, + "end": { + "$date": "2022-05-01T02:02:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8504b1d5-077b-4a31-8515-704bd100bcf3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T02:03:17.000Z" + }, + "end": { + "$date": "2022-05-01T03:38:00.000Z" + }, + "events": [ + { + "uuid": "f1009a6b-00ad-47a1-9c98-fd1b37a92a77", + "start": { + "$date": "2022-05-01T02:03:17.000Z" + }, + "end": { + "$date": "2022-05-01T03:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "1da1fff8-4c0a-4211-bce5-3b00dcbbe3aa", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-01T02:47:40.000Z" + }, + "end": { + "$date": "2022-05-01T03:45:13.000Z" + }, + "events": [ + { + "uuid": "36c84c00-6692-44e5-b877-9eb6846af742", + "start": { + "$date": "2022-05-01T02:47:40.000Z" + }, + "end": { + "$date": "2022-05-01T03:45:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "ff350bd7-372b-499c-8cf6-eaefbed3ce96", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-01T02:53:31.000Z" + }, + "end": { + "$date": "2022-05-01T05:18:50.000Z" + }, + "events": [ + { + "uuid": "4708a201-772c-4273-ae23-d50f50257d47", + "start": { + "$date": "2022-05-01T02:53:31.000Z" + }, + "end": { + "$date": "2022-05-01T03:57:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "00662644-d679-4bef-a401-f9c0fbdc604f", + "start": { + "$date": "2022-05-01T03:57:31.000Z" + }, + "end": { + "$date": "2022-05-01T04:41:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "faffa952-f1cd-4ff9-8d51-d79957653d41", + "start": { + "$date": "2022-05-01T04:41:31.000Z" + }, + "end": { + "$date": "2022-05-01T04:43:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed7a4240-234e-45d3-918b-75f68ffb8e20", + "start": { + "$date": "2022-05-01T04:43:31.000Z" + }, + "end": { + "$date": "2022-05-01T05:18:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "a5db7720-b400-4bb8-a418-3c32e3ac6308", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T03:42:16.000Z" + }, + "end": { + "$date": "2022-05-01T07:10:27.000Z" + }, + "events": [ + { + "uuid": "bea892e7-1bc6-4749-861f-d2db42103a6d", + "start": { + "$date": "2022-05-01T03:42:16.000Z" + }, + "end": { + "$date": "2022-05-01T07:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "9ba5bc12-d8db-4369-be6c-a90ddf91104a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-01T04:17:40.000Z" + }, + "end": { + "$date": "2022-05-01T04:47:06.000Z" + }, + "events": [ + { + "uuid": "fc873772-e115-486e-a5a6-95969f7a6201", + "start": { + "$date": "2022-05-01T04:17:40.000Z" + }, + "end": { + "$date": "2022-05-01T04:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1cfcd249-eb1e-435a-8036-3ce818179831", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-01T04:47:11.000Z" + }, + "end": { + "$date": "2022-05-01T06:26:33.000Z" + }, + "events": [ + { + "uuid": "ce5c14cc-8388-40b5-91a1-cd028e02c988", + "start": { + "$date": "2022-05-01T04:47:11.000Z" + }, + "end": { + "$date": "2022-05-01T06:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fbfbc7ea-44ab-417e-9a04-fee6fabbd3e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-01T04:52:28.000Z" + }, + "end": { + "$date": "2022-05-01T05:40:32.000Z" + }, + "events": [ + { + "uuid": "fbf9ebc3-cbf1-4f90-98e8-30540a93a8d6", + "start": { + "$date": "2022-05-01T04:52:28.000Z" + }, + "end": { + "$date": "2022-05-01T05:40:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ae1615e3-18be-426a-86f5-892be54ded8a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-01T06:55:26.000Z" + }, + "end": { + "$date": "2022-05-01T09:25:04.000Z" + }, + "events": [ + { + "uuid": "4c5d0f16-0201-4fc2-ba6e-de9e6735f0a0", + "start": { + "$date": "2022-05-01T06:55:26.000Z" + }, + "end": { + "$date": "2022-05-01T09:25:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "99451ccc-095d-4dc4-aeda-847ae383db7b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T08:01:39.000Z" + }, + "end": { + "$date": "2022-05-01T08:06:24.000Z" + }, + "events": [ + { + "uuid": "1bbf5cc2-f041-4db3-8731-ef62c15183da", + "start": { + "$date": "2022-05-01T08:01:39.000Z" + }, + "end": { + "$date": "2022-05-01T08:06:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "5ebeafb8-7c52-4d5b-aa0a-b100f1c7eea1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T08:06:59.000Z" + }, + "end": { + "$date": "2022-05-01T09:32:26.000Z" + }, + "events": [ + { + "uuid": "99937b97-5538-44b9-ba8c-0cbf57d6f789", + "start": { + "$date": "2022-05-01T08:06:59.000Z" + }, + "end": { + "$date": "2022-05-01T09:32:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d74636b2-f56e-42fc-be77-fb09b35a0da0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-01T13:55:25.000Z" + }, + "end": { + "$date": "2022-05-01T16:31:48.000Z" + }, + "events": [ + { + "uuid": "7185f98f-0b3c-4382-87a8-038c14e8153e", + "start": { + "$date": "2022-05-01T13:55:25.000Z" + }, + "end": { + "$date": "2022-05-01T16:31:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7ad5aaf5-d30a-4f30-a7cd-b80534e4f7a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-01T16:31:05.000Z" + }, + "end": { + "$date": "2022-05-01T17:31:31.000Z" + }, + "events": [ + { + "uuid": "a4f66d86-f209-4b6a-94bf-b9b038bfdb35", + "start": { + "$date": "2022-05-01T16:31:05.000Z" + }, + "end": { + "$date": "2022-05-01T17:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "19aa876d-a7dc-455d-af71-7e2a15e35689", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-01T18:24:57.000Z" + }, + "end": { + "$date": "2022-05-01T18:37:42.000Z" + }, + "events": [ + { + "uuid": "86c2b708-c23c-41ed-9e26-bb18e9e81c45", + "start": { + "$date": "2022-05-01T18:24:57.000Z" + }, + "end": { + "$date": "2022-05-01T18:37:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dfa2d16e-b14e-4432-baeb-5f2051056bc1", + "uuid": "5573b525-1a06-430e-8e10-1935578275a5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-01T21:11:58.000Z" + }, + "end": { + "$date": "2022-05-01T21:14:19.000Z" + }, + "events": [ + { + "uuid": "ad2f9e3e-8e6d-4dca-8ad3-cc88e0a66dd7", + "start": { + "$date": "2022-05-01T21:11:58.000Z" + }, + "end": { + "$date": "2022-05-01T21:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96f34943-7e5e-4f62-becc-5bfdffa8f7e8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-01T22:02:37.000Z" + }, + "end": { + "$date": "2022-05-01T22:34:40.000Z" + }, + "events": [ + { + "uuid": "9a5a641f-a916-4200-8555-324e12aeb5be", + "start": { + "$date": "2022-05-01T22:02:37.000Z" + }, + "end": { + "$date": "2022-05-01T22:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a88f076-612f-4b59-a99b-81e45470234d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-01T22:25:39.000Z" + }, + "end": { + "$date": "2022-05-01T22:36:37.000Z" + }, + "events": [ + { + "uuid": "301f7459-b832-4991-8529-e269b1432573", + "start": { + "$date": "2022-05-01T22:25:39.000Z" + }, + "end": { + "$date": "2022-05-01T22:36:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7ee2d7dd-4d7a-49d9-9ed0-080e4999f60b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-01T22:34:54.000Z" + }, + "end": { + "$date": "2022-05-02T04:59:12.000Z" + }, + "events": [ + { + "uuid": "491fda78-b4a7-4884-bb63-655655f0c038", + "start": { + "$date": "2022-05-01T22:34:54.000Z" + }, + "end": { + "$date": "2022-05-02T00:36:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d46aba81-7b70-420c-9a97-7761833891f9", + "start": { + "$date": "2022-05-02T00:36:54.000Z" + }, + "end": { + "$date": "2022-05-02T00:39:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5e464e8-d2a0-4696-928c-21d2de6175e8", + "start": { + "$date": "2022-05-02T00:39:54.000Z" + }, + "end": { + "$date": "2022-05-02T00:44:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3382ddc0-9ab6-464f-a185-3337aa9e2dbe", + "start": { + "$date": "2022-05-02T00:44:54.000Z" + }, + "end": { + "$date": "2022-05-02T00:49:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c527116f-626c-4258-a230-872b162d191a", + "start": { + "$date": "2022-05-02T00:49:54.000Z" + }, + "end": { + "$date": "2022-05-02T00:51:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20b65569-22b7-4e6d-b98a-278e691f065c", + "start": { + "$date": "2022-05-02T00:51:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:26:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "434265f2-8331-4035-9c96-d2ba7a7af225", + "start": { + "$date": "2022-05-02T01:26:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:28:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9f8eb047-7379-4e18-9028-73ba2cd53ae7", + "start": { + "$date": "2022-05-02T01:28:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:40:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a483c6d7-dd11-4fe0-a935-505ad7eafea9", + "start": { + "$date": "2022-05-02T01:40:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:45:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8258b8c2-7824-4e27-92fd-0f95f6ebf348", + "start": { + "$date": "2022-05-02T01:45:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:46:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "21ae84fb-ad1a-4825-87ac-40be0b71b733", + "start": { + "$date": "2022-05-02T01:46:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:48:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d47c3591-7277-4960-ba92-e7abb6fdcf90", + "start": { + "$date": "2022-05-02T01:48:54.000Z" + }, + "end": { + "$date": "2022-05-02T01:58:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "abb9eb92-538a-4018-8850-17299aedab5d", + "start": { + "$date": "2022-05-02T01:58:54.000Z" + }, + "end": { + "$date": "2022-05-02T02:00:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d0cd09b6-bea4-42b9-963f-2e49e33c1e1f", + "start": { + "$date": "2022-05-02T02:00:54.000Z" + }, + "end": { + "$date": "2022-05-02T02:25:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8c7fb2dc-9c80-493b-bd4d-b9faad4f8d60", + "start": { + "$date": "2022-05-02T02:25:54.000Z" + }, + "end": { + "$date": "2022-05-02T02:27:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25669b9b-7da4-45a2-a55c-1b3727b3a31d", + "start": { + "$date": "2022-05-02T02:27:54.000Z" + }, + "end": { + "$date": "2022-05-02T03:20:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "33976d26-e434-4edf-a2dc-4660c0fe6121", + "start": { + "$date": "2022-05-02T03:20:54.000Z" + }, + "end": { + "$date": "2022-05-02T03:22:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "03e7ee59-0a5e-48e4-8545-3950f2e09952", + "start": { + "$date": "2022-05-02T03:22:54.000Z" + }, + "end": { + "$date": "2022-05-02T04:44:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6b278b3-f3ac-4c36-8009-bc2fe081a087", + "start": { + "$date": "2022-05-02T04:44:54.000Z" + }, + "end": { + "$date": "2022-05-02T04:48:54.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4cd97888-1bf6-42da-8eb6-c8438854e3bf", + "start": { + "$date": "2022-05-02T04:48:54.000Z" + }, + "end": { + "$date": "2022-05-02T04:57:54.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b94cfd51-4826-459e-9fee-e7ff958785ca", + "start": { + "$date": "2022-05-02T04:57:54.000Z" + }, + "end": { + "$date": "2022-05-02T04:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fea5980a-5db6-4a1f-92e8-236707e1cef5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-01T22:36:42.000Z" + }, + "end": { + "$date": "2022-05-01T23:17:55.000Z" + }, + "events": [ + { + "uuid": "6fb58303-a841-4667-8b18-e8e1be9204b6", + "start": { + "$date": "2022-05-01T22:36:42.000Z" + }, + "end": { + "$date": "2022-05-01T23:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "0e93ac13-4f9d-40fe-986d-040d9f845c78", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-02T00:58:13.000Z" + }, + "end": { + "$date": "2022-05-02T01:13:45.000Z" + }, + "events": [ + { + "uuid": "7f42767c-4597-463a-9dc1-f7e17a8f909e", + "start": { + "$date": "2022-05-02T00:58:13.000Z" + }, + "end": { + "$date": "2022-05-02T01:10:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6707f2d6-163a-429e-b773-a05163f434d5", + "start": { + "$date": "2022-05-02T01:10:13.000Z" + }, + "end": { + "$date": "2022-05-02T01:13:45.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", + "uuid": "302eee3c-0047-44ee-a3a6-8249aef4d67b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-02T01:14:25.000Z" + }, + "end": { + "$date": "2022-05-02T01:22:00.000Z" + }, + "events": [ + { + "uuid": "1d190b0d-2314-47cb-991b-b5846dd2a09c", + "start": { + "$date": "2022-05-02T01:14:25.000Z" + }, + "end": { + "$date": "2022-05-02T01:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", + "uuid": "346c431d-c345-4f5e-a8e4-3dd41794a3a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-02T01:27:25.000Z" + }, + "end": { + "$date": "2022-05-02T03:59:23.000Z" + }, + "events": [ + { + "uuid": "4121b5ad-7148-4dcb-a4b3-ca4877a1024f", + "start": { + "$date": "2022-05-02T01:27:25.000Z" + }, + "end": { + "$date": "2022-05-02T03:46:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a6f84b97-cab8-467d-a997-618d697c6a1c", + "start": { + "$date": "2022-05-02T03:46:25.000Z" + }, + "end": { + "$date": "2022-05-02T03:50:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "605153cc-aff7-468d-87f6-d92dbc335bc0", + "start": { + "$date": "2022-05-02T03:50:25.000Z" + }, + "end": { + "$date": "2022-05-02T03:59:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", + "uuid": "b0b86566-6ac3-458d-9fac-0ad82885553e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-02T01:31:00.000Z" + }, + "end": { + "$date": "2022-05-02T03:41:08.000Z" + }, + "events": [ + { + "uuid": "d01677d0-d53c-4447-8466-dd7b5b23f078", + "start": { + "$date": "2022-05-02T01:31:00.000Z" + }, + "end": { + "$date": "2022-05-02T03:41:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "870559e5-9bff-4d34-9cd9-2f6fc8fab205", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-02T01:36:40.000Z" + }, + "end": { + "$date": "2022-05-02T03:55:29.000Z" + }, + "events": [ + { + "uuid": "9e43ff49-2669-4abc-a30a-6581a41487ff", + "start": { + "$date": "2022-05-02T01:36:40.000Z" + }, + "end": { + "$date": "2022-05-02T03:55:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "15f279ae-e804-4a35-8827-303154777c9e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-02T01:57:47.000Z" + }, + "end": { + "$date": "2022-05-02T04:34:49.000Z" + }, + "events": [ + { + "uuid": "dbfa1c15-638a-46bb-9e3e-b5d87577ea0a", + "start": { + "$date": "2022-05-02T01:57:47.000Z" + }, + "end": { + "$date": "2022-05-02T04:34:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "ad04cfad-622d-466e-8abd-4dd02c33c4c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-02T03:41:48.000Z" + }, + "end": { + "$date": "2022-05-02T05:42:16.000Z" + }, + "events": [ + { + "uuid": "c2afcd47-a448-4f46-a512-32c0c886b228", + "start": { + "$date": "2022-05-02T03:41:48.000Z" + }, + "end": { + "$date": "2022-05-02T05:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "70203a97-82cd-40a1-abf3-5a06ac357858", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-02T04:56:17.000Z" + }, + "end": { + "$date": "2022-05-02T05:48:59.000Z" + }, + "events": [ + { + "uuid": "3ee85d5b-1aa6-4654-af20-fb124747ce61", + "start": { + "$date": "2022-05-02T04:56:17.000Z" + }, + "end": { + "$date": "2022-05-02T05:48:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8067fc8c-a9d3-422a-8cfb-39df1589b083", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-02T05:00:07.000Z" + }, + "end": { + "$date": "2022-05-02T05:47:34.000Z" + }, + "events": [ + { + "uuid": "0332295f-2228-4110-b1b0-e8872c055048", + "start": { + "$date": "2022-05-02T05:00:07.000Z" + }, + "end": { + "$date": "2022-05-02T05:47:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fe8301d0-e57d-46d0-b4c2-c5c3fd50769b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-02T06:24:46.000Z" + }, + "end": { + "$date": "2022-05-02T07:07:43.000Z" + }, + "events": [ + { + "uuid": "79d06a33-d054-4f17-abf7-6ca9812b31c9", + "start": { + "$date": "2022-05-02T06:24:46.000Z" + }, + "end": { + "$date": "2022-05-02T07:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "ac6071de-c835-416f-977a-cc2a1aa6c877", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-02T06:58:54.000Z" + }, + "end": { + "$date": "2022-05-02T11:24:12.000Z" + }, + "events": [ + { + "uuid": "220cb207-8fe8-42d8-89c6-c9a0eb6485a9", + "start": { + "$date": "2022-05-02T06:58:54.000Z" + }, + "end": { + "$date": "2022-05-02T11:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "e392a548-f7b5-46c8-9e9a-b9e0f312c414", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-02T18:49:26.000Z" + }, + "end": { + "$date": "2022-05-03T00:24:18.000Z" + }, + "events": [ + { + "uuid": "16bed6a6-105b-40a9-9463-9a5d2801f9bd", + "start": { + "$date": "2022-05-02T18:49:26.000Z" + }, + "end": { + "$date": "2022-05-03T00:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "52a728b4-3599-4243-8d8c-6875a7cb227f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-03T00:45:12.000Z" + }, + "end": { + "$date": "2022-05-03T03:24:55.000Z" + }, + "events": [ + { + "uuid": "33a8a38c-8b1b-4aa2-a042-33145d9ebe52", + "start": { + "$date": "2022-05-03T00:45:12.000Z" + }, + "end": { + "$date": "2022-05-03T03:24:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c8d30599-87e1-4796-8def-0bf14611c580", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-03T01:36:16.000Z" + }, + "end": { + "$date": "2022-05-03T01:38:32.000Z" + }, + "events": [ + { + "uuid": "99e5a55c-92c8-406a-a121-59126a1af641", + "start": { + "$date": "2022-05-03T01:36:16.000Z" + }, + "end": { + "$date": "2022-05-03T01:38:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bf352c83-148f-406d-8c61-28f220bbb436", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-03T01:45:48.000Z" + }, + "end": { + "$date": "2022-05-03T04:16:34.000Z" + }, + "events": [ + { + "uuid": "63e81700-6659-42b6-b701-ea42928763c8", + "start": { + "$date": "2022-05-03T01:45:48.000Z" + }, + "end": { + "$date": "2022-05-03T04:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "b3564253-f2e0-46dd-9489-fcdaefd7983d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-03T01:59:14.000Z" + }, + "end": { + "$date": "2022-05-03T03:29:25.000Z" + }, + "events": [ + { + "uuid": "62271866-eb81-448f-8a20-ae58d592e14d", + "start": { + "$date": "2022-05-03T01:59:14.000Z" + }, + "end": { + "$date": "2022-05-03T03:29:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "b928a78c-7a7b-4eb3-9f41-7c307a44fa88", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-03T02:41:41.000Z" + }, + "end": { + "$date": "2022-05-03T04:01:11.000Z" + }, + "events": [ + { + "uuid": "342722cb-4671-4ef3-8672-5aa298c31106", + "start": { + "$date": "2022-05-03T02:41:41.000Z" + }, + "end": { + "$date": "2022-05-03T04:01:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4cb9417b-a7ee-4d79-8659-4bdfe4c79de4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-03T03:26:01.000Z" + }, + "end": { + "$date": "2022-05-03T05:04:38.000Z" + }, + "events": [ + { + "uuid": "1ce4c22e-e91e-4063-a7c1-5becdd390aba", + "start": { + "$date": "2022-05-03T03:26:01.000Z" + }, + "end": { + "$date": "2022-05-03T05:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "db04958b-a2fd-4968-8c8f-9c94c7353fb3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-03T03:41:52.000Z" + }, + "end": { + "$date": "2022-05-03T06:10:12.000Z" + }, + "events": [ + { + "uuid": "007c9cc9-dbeb-4103-a0a6-6300482c4588", + "start": { + "$date": "2022-05-03T03:41:52.000Z" + }, + "end": { + "$date": "2022-05-03T06:10:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "a560c241-7a8a-43c4-8a12-0ac4ca1cf092", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-03T05:11:49.000Z" + }, + "end": { + "$date": "2022-05-03T05:58:04.000Z" + }, + "events": [ + { + "uuid": "a6f3e821-1de8-45a5-b959-cd12f1a390ef", + "start": { + "$date": "2022-05-03T05:11:49.000Z" + }, + "end": { + "$date": "2022-05-03T05:58:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "11874baa-9f59-493d-8c32-c67586fe62c9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-03T06:06:26.000Z" + }, + "end": { + "$date": "2022-05-03T10:15:21.000Z" + }, + "events": [ + { + "uuid": "4eaabd70-9e0c-49f3-ab07-b893abe113d0", + "start": { + "$date": "2022-05-03T06:06:26.000Z" + }, + "end": { + "$date": "2022-05-03T10:15:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f862d147-3bfc-45b7-8ee4-1c1c02b060d9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-03T06:40:40.000Z" + }, + "end": { + "$date": "2022-05-03T06:42:16.000Z" + }, + "events": [ + { + "uuid": "1ef641d5-a3a9-43c6-aaf2-c0472743cc22", + "start": { + "$date": "2022-05-03T06:40:40.000Z" + }, + "end": { + "$date": "2022-05-03T06:42:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bf43f02b-d5a1-46bb-a7ef-8f396591d088", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-03T06:43:46.000Z" + }, + "end": { + "$date": "2022-05-03T07:15:11.000Z" + }, + "events": [ + { + "uuid": "415f03b9-07a0-4d06-ba02-9af2b332fe85", + "start": { + "$date": "2022-05-03T06:43:46.000Z" + }, + "end": { + "$date": "2022-05-03T07:15:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "9d7d7779-083b-41cc-a346-0c7b57394fc4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-03T22:03:33.000Z" + }, + "end": { + "$date": "2022-05-03T22:19:08.000Z" + }, + "events": [ + { + "uuid": "bbac00f0-bcf6-4b7a-b479-db9e68cca5d1", + "start": { + "$date": "2022-05-03T22:03:33.000Z" + }, + "end": { + "$date": "2022-05-03T22:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "97474e12-8daa-4a7b-8e13-c9ce6763d370", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-03T22:27:24.000Z" + }, + "end": { + "$date": "2022-05-03T22:36:44.000Z" + }, + "events": [ + { + "uuid": "09fd7e32-ba7c-4c3d-a47a-e8d2e24f1c61", + "start": { + "$date": "2022-05-03T22:27:24.000Z" + }, + "end": { + "$date": "2022-05-03T22:36:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3dc187d3-5d8a-44d8-aa8b-683836952acd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-03T22:49:51.000Z" + }, + "end": { + "$date": "2022-05-04T00:49:40.000Z" + }, + "events": [ + { + "uuid": "aeb0f5c0-351b-4758-a462-89b47bde0109", + "start": { + "$date": "2022-05-03T22:49:51.000Z" + }, + "end": { + "$date": "2022-05-04T00:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "2e10569d-21de-4f8e-a571-d589c093cb38", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-04T00:03:48.000Z" + }, + "end": { + "$date": "2022-05-04T01:02:14.000Z" + }, + "events": [ + { + "uuid": "cce5f8d4-1465-4dd8-91ad-0ec1e9644933", + "start": { + "$date": "2022-05-04T00:03:48.000Z" + }, + "end": { + "$date": "2022-05-04T01:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "a446d033-9b39-4c52-b8d9-0c9d57c292f5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-04T00:50:55.000Z" + }, + "end": { + "$date": "2022-05-04T01:23:55.000Z" + }, + "events": [ + { + "uuid": "9e54c057-6b3f-47ef-ab77-d8f30d2ad6fa", + "start": { + "$date": "2022-05-04T00:50:55.000Z" + }, + "end": { + "$date": "2022-05-04T01:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "3d64136c-4c81-46e2-b0d3-b8c4296203ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-04T01:34:38.000Z" + }, + "end": { + "$date": "2022-05-04T05:38:01.000Z" + }, + "events": [ + { + "uuid": "1114b028-3546-4c97-8df4-fb195876911c", + "start": { + "$date": "2022-05-04T01:34:38.000Z" + }, + "end": { + "$date": "2022-05-04T05:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99a3065f-f39b-4dbb-ba18-988b5f32c5aa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-04T01:44:46.000Z" + }, + "end": { + "$date": "2022-05-04T04:33:40.000Z" + }, + "events": [ + { + "uuid": "409885cd-6ec0-4d78-b227-992cef350e75", + "start": { + "$date": "2022-05-04T01:44:46.000Z" + }, + "end": { + "$date": "2022-05-04T04:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "2c85224c-b38c-42ba-ae5a-074768a117be", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-04T02:30:17.000Z" + }, + "end": { + "$date": "2022-05-04T05:01:10.000Z" + }, + "events": [ + { + "uuid": "a836f933-1bdd-44d8-888c-9ca3194571ca", + "start": { + "$date": "2022-05-04T02:30:17.000Z" + }, + "end": { + "$date": "2022-05-04T05:01:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "018bc186-2eee-4163-bf60-ee887d8e72d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-04T02:56:40.000Z" + }, + "end": { + "$date": "2022-05-04T04:51:31.000Z" + }, + "events": [ + { + "uuid": "8b15bf51-b701-45cf-be79-72d78ef0f93d", + "start": { + "$date": "2022-05-04T02:56:40.000Z" + }, + "end": { + "$date": "2022-05-04T04:51:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "967cb789-9c0c-4ba9-8e03-610e0c14fdd5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-04T04:36:27.000Z" + }, + "end": { + "$date": "2022-05-04T07:09:13.000Z" + }, + "events": [ + { + "uuid": "3d55cc31-f461-4a9e-8d5e-cbe4b16f719f", + "start": { + "$date": "2022-05-04T04:36:27.000Z" + }, + "end": { + "$date": "2022-05-04T07:09:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "255ad922-421b-4b7b-9eca-33d5afc2fda7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-04T04:54:18.000Z" + }, + "end": { + "$date": "2022-05-04T05:31:45.000Z" + }, + "events": [ + { + "uuid": "75f0a701-6f51-47bf-b350-dbb72001f4d4", + "start": { + "$date": "2022-05-04T04:54:18.000Z" + }, + "end": { + "$date": "2022-05-04T05:31:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cced8cd0-74a9-4213-94d4-b3e13a070ddf", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-04T05:28:40.000Z" + }, + "end": { + "$date": "2022-05-04T07:09:20.000Z" + }, + "events": [ + { + "uuid": "da0de2b7-25c9-4807-829e-6cf0b6389a3b", + "start": { + "$date": "2022-05-04T05:28:40.000Z" + }, + "end": { + "$date": "2022-05-04T07:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "48a74a28-f8b1-4113-9727-614619ab0d53", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-04T08:27:11.000Z" + }, + "end": { + "$date": "2022-05-04T15:37:06.000Z" + }, + "events": [ + { + "uuid": "df89045c-21f8-4074-b9ee-66956d0e3996", + "start": { + "$date": "2022-05-04T08:27:11.000Z" + }, + "end": { + "$date": "2022-05-04T15:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2075383b-cc34-4494-ba6d-d01568fb865a", + "uuid": "39992e71-e6a3-4b2d-a1a8-b4558d1099e7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-04T15:44:18.000Z" + }, + "end": { + "$date": "2022-05-04T15:56:22.000Z" + }, + "events": [ + { + "uuid": "c04464f2-1147-46a9-888e-dea40ec448b8", + "start": { + "$date": "2022-05-04T15:44:18.000Z" + }, + "end": { + "$date": "2022-05-04T15:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2075383b-cc34-4494-ba6d-d01568fb865a", + "uuid": "e379b11b-c24d-43bc-83b3-7005df593de6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-04T15:57:52.000Z" + }, + "end": { + "$date": "2022-05-04T19:28:53.000Z" + }, + "events": [ + { + "uuid": "d1b7d417-83d8-4c41-9489-bef79edae79e", + "start": { + "$date": "2022-05-04T15:57:52.000Z" + }, + "end": { + "$date": "2022-05-04T17:15:52.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14ea08af-abcf-4c22-b198-af33e2908853", + "start": { + "$date": "2022-05-04T17:15:52.000Z" + }, + "end": { + "$date": "2022-05-04T17:20:52.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9a334100-a997-4dd6-876d-425bb72f6e15", + "start": { + "$date": "2022-05-04T17:20:52.000Z" + }, + "end": { + "$date": "2022-05-04T19:28:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "291cea53-d4db-46b1-823a-a55feb4e9241", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-04T22:24:30.000Z" + }, + "end": { + "$date": "2022-05-05T03:10:43.000Z" + }, + "events": [ + { + "uuid": "380c437d-8e13-4ed4-91c8-914d30dfe2ee", + "start": { + "$date": "2022-05-04T22:24:30.000Z" + }, + "end": { + "$date": "2022-05-04T22:46:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5cf475d5-f3c7-46f7-8c4d-8d0134097202", + "start": { + "$date": "2022-05-04T22:46:30.000Z" + }, + "end": { + "$date": "2022-05-04T22:50:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "adb5475d-1d3b-4261-a6e4-4b1cbd3518ce", + "start": { + "$date": "2022-05-04T22:50:30.000Z" + }, + "end": { + "$date": "2022-05-04T23:00:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "910265c3-0d03-4d65-b9c4-70d42473cf0e", + "start": { + "$date": "2022-05-04T23:00:30.000Z" + }, + "end": { + "$date": "2022-05-04T23:29:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4f6bc085-dc2c-47bd-8390-33ba19ee3379", + "start": { + "$date": "2022-05-04T23:29:30.000Z" + }, + "end": { + "$date": "2022-05-04T23:32:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "280becbe-a9dd-47d0-906b-41e15ed78787", + "start": { + "$date": "2022-05-04T23:32:30.000Z" + }, + "end": { + "$date": "2022-05-04T23:50:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "073f0e39-82ae-43a7-a2fb-c4d5b278cc9d", + "start": { + "$date": "2022-05-04T23:50:30.000Z" + }, + "end": { + "$date": "2022-05-05T03:10:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "e38a856e-0228-47e0-bdbc-adb6045dd42f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-04T22:26:45.000Z" + }, + "end": { + "$date": "2022-05-05T07:04:17.000Z" + }, + "events": [ + { + "uuid": "b58303fc-4a58-4c4d-8e87-759d8ee81a1c", + "start": { + "$date": "2022-05-04T22:26:45.000Z" + }, + "end": { + "$date": "2022-05-05T07:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "2baae6a8-0ab6-495f-a971-260e81874c6e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-04T23:05:49.000Z" + }, + "end": { + "$date": "2022-05-05T00:53:20.000Z" + }, + "events": [ + { + "uuid": "a598213e-18d8-486b-8f3a-b0d6a04375a0", + "start": { + "$date": "2022-05-04T23:05:49.000Z" + }, + "end": { + "$date": "2022-05-05T00:53:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ba937a78-a78e-4b4c-a8f4-82816e852b4c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-05T00:54:41.000Z" + }, + "end": { + "$date": "2022-05-05T01:10:37.000Z" + }, + "events": [ + { + "uuid": "5c8a3b4d-0061-4d37-92b3-291791d7622f", + "start": { + "$date": "2022-05-05T00:54:41.000Z" + }, + "end": { + "$date": "2022-05-05T01:10:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "4dda9d9a-3078-4a8d-a362-ef69b4118cb3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-05T02:01:36.000Z" + }, + "end": { + "$date": "2022-05-05T03:21:22.000Z" + }, + "events": [ + { + "uuid": "82df8f60-d4a5-4c41-a2b6-3c6c6fc7492e", + "start": { + "$date": "2022-05-05T02:01:36.000Z" + }, + "end": { + "$date": "2022-05-05T03:21:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "63d3ddf3-9565-4151-a254-1163c48e2188", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-05T02:33:38.000Z" + }, + "end": { + "$date": "2022-05-05T07:06:43.000Z" + }, + "events": [ + { + "uuid": "0853efec-5d5d-42f8-8b4d-66c5d0a459b9", + "start": { + "$date": "2022-05-05T02:33:38.000Z" + }, + "end": { + "$date": "2022-05-05T07:06:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "033003d8-733c-4bb5-b3ba-4008c2bd3c95", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-05T03:18:44.000Z" + }, + "end": { + "$date": "2022-05-05T06:32:59.000Z" + }, + "events": [ + { + "uuid": "6006aefe-cf31-4836-959e-58a80d2ddf3e", + "start": { + "$date": "2022-05-05T03:18:44.000Z" + }, + "end": { + "$date": "2022-05-05T06:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "344aaea0-2930-48a9-9d0d-4f76183621d8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-05T03:21:12.000Z" + }, + "end": { + "$date": "2022-05-05T06:32:57.000Z" + }, + "events": [ + { + "uuid": "eb891682-6149-4722-8858-b155cf69d9fe", + "start": { + "$date": "2022-05-05T03:21:12.000Z" + }, + "end": { + "$date": "2022-05-05T06:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d62ea13d-e765-462a-a448-41d2b895a09a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-05T03:22:33.000Z" + }, + "end": { + "$date": "2022-05-05T03:26:53.000Z" + }, + "events": [ + { + "uuid": "9491c4d9-b3fd-4168-9193-9043fb1dabfd", + "start": { + "$date": "2022-05-05T03:22:33.000Z" + }, + "end": { + "$date": "2022-05-05T03:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "2bc768d1-9ca7-4aa0-be6f-b669883a8184", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-05T03:27:24.000Z" + }, + "end": { + "$date": "2022-05-05T05:24:31.000Z" + }, + "events": [ + { + "uuid": "0eff8508-280b-4859-b3cb-1a44d72cacfe", + "start": { + "$date": "2022-05-05T03:27:24.000Z" + }, + "end": { + "$date": "2022-05-05T05:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "14247694-47fd-4a3c-bcfa-490c7d580a5d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-05T05:25:27.000Z" + }, + "end": { + "$date": "2022-05-05T05:26:31.000Z" + }, + "events": [ + { + "uuid": "236d1747-5e3e-4a65-bfed-3434aa2ac5e9", + "start": { + "$date": "2022-05-05T05:25:27.000Z" + }, + "end": { + "$date": "2022-05-05T05:26:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2075383b-cc34-4494-ba6d-d01568fb865a", + "uuid": "cd6ed81d-04f2-4236-b928-639d8294f539", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-05T05:39:26.000Z" + }, + "end": { + "$date": "2022-05-05T06:42:36.000Z" + }, + "events": [ + { + "uuid": "b07e912f-c712-40d5-9130-b9751301220b", + "start": { + "$date": "2022-05-05T05:39:26.000Z" + }, + "end": { + "$date": "2022-05-05T06:42:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "034bf62b-a945-4669-82ba-2fa21f966e80", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-05T18:41:08.000Z" + }, + "end": { + "$date": "2022-05-05T18:43:48.000Z" + }, + "events": [ + { + "uuid": "be6f0f69-8ecb-45da-bd74-2595db5bb067", + "start": { + "$date": "2022-05-05T18:41:08.000Z" + }, + "end": { + "$date": "2022-05-05T18:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b3512789-d2be-4c91-a975-450e036c40f8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-05T22:11:25.000Z" + }, + "end": { + "$date": "2022-05-05T22:41:01.000Z" + }, + "events": [ + { + "uuid": "dea4936e-9c61-4241-bf3e-b3258a98ffe6", + "start": { + "$date": "2022-05-05T22:11:25.000Z" + }, + "end": { + "$date": "2022-05-05T22:41:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "2c37f814-28e9-407d-9039-18070ac7ebd6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-05T22:26:08.000Z" + }, + "end": { + "$date": "2022-05-06T02:13:50.000Z" + }, + "events": [ + { + "uuid": "5f953084-ce3d-4671-8b3c-c59cb21aabdf", + "start": { + "$date": "2022-05-05T22:26:08.000Z" + }, + "end": { + "$date": "2022-05-06T02:13:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e008deb-b3aa-47bc-b663-5c1dcfc845cf", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-05T22:42:27.000Z" + }, + "end": { + "$date": "2022-05-05T23:15:13.000Z" + }, + "events": [ + { + "uuid": "a7c20e10-92dc-43d6-89d9-b74df384809e", + "start": { + "$date": "2022-05-05T22:42:27.000Z" + }, + "end": { + "$date": "2022-05-05T23:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca95e734-2cb9-4483-a4b2-23ee8e7400ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-05T23:17:53.000Z" + }, + "end": { + "$date": "2022-05-05T23:51:14.000Z" + }, + "events": [ + { + "uuid": "16cc8444-b4ea-496e-8e34-05888daa5450", + "start": { + "$date": "2022-05-05T23:17:53.000Z" + }, + "end": { + "$date": "2022-05-05T23:51:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2e6a2cc0-5d99-4108-a3a4-b8b1a568c5a5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-05T23:42:24.000Z" + }, + "end": { + "$date": "2022-05-06T00:04:51.000Z" + }, + "events": [ + { + "uuid": "0be95e5a-ba55-4ca2-b885-67f3b9415970", + "start": { + "$date": "2022-05-05T23:42:24.000Z" + }, + "end": { + "$date": "2022-05-06T00:04:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "df6c0423-765c-4788-95b2-07b0c4386b52", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-05T23:56:45.000Z" + }, + "end": { + "$date": "2022-05-06T00:18:46.000Z" + }, + "events": [ + { + "uuid": "a5818638-103f-4b9b-a3ed-18f6b5adfdfe", + "start": { + "$date": "2022-05-05T23:56:45.000Z" + }, + "end": { + "$date": "2022-05-06T00:18:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "23bfe13f-57f9-4d32-a840-2776fcb5c21d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T00:05:26.000Z" + }, + "end": { + "$date": "2022-05-06T00:07:26.000Z" + }, + "events": [ + { + "uuid": "238dec1c-d926-4285-aea8-7f0edeb596a9", + "start": { + "$date": "2022-05-06T00:05:26.000Z" + }, + "end": { + "$date": "2022-05-06T00:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "91903afd-ea97-45e7-bb97-8c8af26240f0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T00:12:52.000Z" + }, + "end": { + "$date": "2022-05-06T00:28:50.000Z" + }, + "events": [ + { + "uuid": "b299cd85-aab8-4848-beea-88fea7307729", + "start": { + "$date": "2022-05-06T00:12:52.000Z" + }, + "end": { + "$date": "2022-05-06T00:28:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60f5dfaa-c652-4011-a776-88e65216384c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-06T00:22:46.000Z" + }, + "end": { + "$date": "2022-05-06T00:46:18.000Z" + }, + "events": [ + { + "uuid": "e0ea3242-a766-40b4-a834-8d277dcd48df", + "start": { + "$date": "2022-05-06T00:22:46.000Z" + }, + "end": { + "$date": "2022-05-06T00:46:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "0699af67-45f7-4ac2-8c7a-101e1cbfc46a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T00:29:09.000Z" + }, + "end": { + "$date": "2022-05-06T01:50:10.000Z" + }, + "events": [ + { + "uuid": "a222cf89-7dc3-49dc-a910-2c1a34410d96", + "start": { + "$date": "2022-05-06T00:29:09.000Z" + }, + "end": { + "$date": "2022-05-06T01:50:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ef7b85a-9d63-4320-8df0-409bd54f5e09", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-06T00:51:39.000Z" + }, + "end": { + "$date": "2022-05-06T01:13:44.000Z" + }, + "events": [ + { + "uuid": "a9d0a113-8361-444a-a01b-53b4daf40214", + "start": { + "$date": "2022-05-06T00:51:39.000Z" + }, + "end": { + "$date": "2022-05-06T01:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "543da688-fdf3-442a-839a-67f71ffb27b2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-06T01:14:55.000Z" + }, + "end": { + "$date": "2022-05-06T01:54:48.000Z" + }, + "events": [ + { + "uuid": "34ee6de2-460b-4f6e-9e25-04e4318ba251", + "start": { + "$date": "2022-05-06T01:14:55.000Z" + }, + "end": { + "$date": "2022-05-06T01:54:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "bd84b097-e34a-4d38-b3e9-35fcc0dc0d38", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-06T02:14:11.000Z" + }, + "end": { + "$date": "2022-05-06T07:46:38.000Z" + }, + "events": [ + { + "uuid": "dcffeddc-f073-4ccc-9da1-1770766a70e4", + "start": { + "$date": "2022-05-06T02:14:11.000Z" + }, + "end": { + "$date": "2022-05-06T07:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "8433b286-4d74-4d65-ac8c-de48be493765", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T02:14:54.000Z" + }, + "end": { + "$date": "2022-05-06T02:15:59.000Z" + }, + "events": [ + { + "uuid": "dc70f0ce-fda0-41c1-92b4-6ce737ab41b4", + "start": { + "$date": "2022-05-06T02:14:54.000Z" + }, + "end": { + "$date": "2022-05-06T02:15:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "6a6c518a-0c60-4ecb-b228-643b1258c875", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T02:16:29.000Z" + }, + "end": { + "$date": "2022-05-06T02:20:10.000Z" + }, + "events": [ + { + "uuid": "f5408687-d768-47f2-8ce9-2a4986b091b6", + "start": { + "$date": "2022-05-06T02:16:29.000Z" + }, + "end": { + "$date": "2022-05-06T02:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "fbad4171-53f7-4961-96a9-e440b4dd440b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T02:41:54.000Z" + }, + "end": { + "$date": "2022-05-06T03:26:34.000Z" + }, + "events": [ + { + "uuid": "4a7f93c4-c2b4-4a7a-b5b8-97fb5f03dec4", + "start": { + "$date": "2022-05-06T02:41:54.000Z" + }, + "end": { + "$date": "2022-05-06T03:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "89613e6a-7f97-4bd7-b489-f0e63be9d1bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-06T05:01:13.000Z" + }, + "end": { + "$date": "2022-05-06T11:59:27.000Z" + }, + "events": [ + { + "uuid": "a942c96f-baf0-41ea-91e0-86ef415db1f7", + "start": { + "$date": "2022-05-06T05:01:13.000Z" + }, + "end": { + "$date": "2022-05-06T08:45:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4e815f72-18e1-4088-bed6-96492934f835", + "start": { + "$date": "2022-05-06T08:45:13.000Z" + }, + "end": { + "$date": "2022-05-06T11:59:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3a23c0dc-36ef-41f0-93d7-b75e52ac5a63", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T03:31:25.000Z" + }, + "end": { + "$date": "2022-05-06T05:32:57.000Z" + }, + "events": [ + { + "uuid": "1a07c920-f296-4f0e-9944-fda040152e4b", + "start": { + "$date": "2022-05-06T03:31:25.000Z" + }, + "end": { + "$date": "2022-05-06T05:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1c4c4c8d-c0c2-4df6-a8a2-82559e2c94b3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-06T03:44:30.000Z" + }, + "end": { + "$date": "2022-05-06T04:17:51.000Z" + }, + "events": [ + { + "uuid": "3efefc42-3388-4140-ae05-a5b9833c59ed", + "start": { + "$date": "2022-05-06T03:44:30.000Z" + }, + "end": { + "$date": "2022-05-06T04:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "73fc69a9-d2fd-4775-ae3b-c150e6eaf75e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-06T04:30:15.000Z" + }, + "end": { + "$date": "2022-05-06T05:14:39.000Z" + }, + "events": [ + { + "uuid": "1ff62596-b74c-4b7e-a42b-49e5ee97e24e", + "start": { + "$date": "2022-05-06T04:30:15.000Z" + }, + "end": { + "$date": "2022-05-06T05:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "647f2d65-03ae-411d-85d2-3afaf99efd8e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-06T07:47:00.000Z" + }, + "end": { + "$date": "2022-05-06T08:28:00.000Z" + }, + "events": [ + { + "uuid": "e0735d07-ff7c-4f9d-b3a7-464ea8b95120", + "start": { + "$date": "2022-05-06T07:47:00.000Z" + }, + "end": { + "$date": "2022-05-06T08:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "a4acd7f0-c1e2-4529-b02b-874102a7282a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-06T11:34:13.000Z" + }, + "end": { + "$date": "2022-05-06T13:03:13.000Z" + }, + "events": [ + { + "uuid": "0130ca0f-1d31-4e79-9f5c-5ac2c5216422", + "start": { + "$date": "2022-05-06T11:34:13.000Z" + }, + "end": { + "$date": "2022-05-06T13:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "1a6b1116-bc28-424a-9572-415ed5c6885b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-06T22:13:10.000Z" + }, + "end": { + "$date": "2022-05-07T02:38:59.000Z" + }, + "events": [ + { + "uuid": "2ebebe81-c6c4-432c-ad14-a3c7c1487e0b", + "start": { + "$date": "2022-05-06T22:13:10.000Z" + }, + "end": { + "$date": "2022-05-06T22:28:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "90f1414b-03c5-4202-ac2a-770b6aa891e0", + "start": { + "$date": "2022-05-06T22:28:10.000Z" + }, + "end": { + "$date": "2022-05-06T22:33:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b5c32094-22f7-4005-936c-732d8989ed79", + "start": { + "$date": "2022-05-06T22:33:10.000Z" + }, + "end": { + "$date": "2022-05-07T00:06:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "47d45714-6d13-4d66-88fd-42378b1b50db", + "start": { + "$date": "2022-05-07T00:06:10.000Z" + }, + "end": { + "$date": "2022-05-07T00:11:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "de5e41e5-5327-40d4-a27e-4ac03a7bda88", + "start": { + "$date": "2022-05-07T00:11:10.000Z" + }, + "end": { + "$date": "2022-05-07T00:21:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7cb6c7ed-7cd7-4507-b257-7c5611f8a2ef", + "start": { + "$date": "2022-05-07T00:21:10.000Z" + }, + "end": { + "$date": "2022-05-07T00:23:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f552b02d-ccd2-4f4b-a4ba-43b183404182", + "start": { + "$date": "2022-05-07T00:23:10.000Z" + }, + "end": { + "$date": "2022-05-07T00:33:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5564217-51cf-4362-99f2-77ebd4f3f34c", + "start": { + "$date": "2022-05-07T00:33:10.000Z" + }, + "end": { + "$date": "2022-05-07T00:38:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fbceaf90-6495-44f3-b948-77647a1d25da", + "start": { + "$date": "2022-05-07T00:38:10.000Z" + }, + "end": { + "$date": "2022-05-07T01:07:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4a476d52-fbac-49c0-b28f-328aa2b2cd9c", + "start": { + "$date": "2022-05-07T01:07:10.000Z" + }, + "end": { + "$date": "2022-05-07T01:12:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "121d53d2-c97b-4bab-b0cc-6825dd2bc70a", + "start": { + "$date": "2022-05-07T01:12:10.000Z" + }, + "end": { + "$date": "2022-05-07T01:34:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "681c8d44-1dac-4656-8dfb-3294fbfc472c", + "start": { + "$date": "2022-05-07T01:34:10.000Z" + }, + "end": { + "$date": "2022-05-07T01:59:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d2dc8f0a-f7bc-46ec-8540-a1b5de715343", + "start": { + "$date": "2022-05-07T01:59:10.000Z" + }, + "end": { + "$date": "2022-05-07T02:34:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "006f2cea-855e-46ae-8565-868517824a3f", + "start": { + "$date": "2022-05-07T02:34:10.000Z" + }, + "end": { + "$date": "2022-05-07T02:38:59.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c87c81a7-c9c9-49f8-abda-bac63c29ed6f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T00:08:19.000Z" + }, + "end": { + "$date": "2022-05-07T00:53:56.000Z" + }, + "events": [ + { + "uuid": "55670afc-1868-48c3-af4b-4c1bc43eea72", + "start": { + "$date": "2022-05-07T00:08:19.000Z" + }, + "end": { + "$date": "2022-05-07T00:53:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "867c85f6-ef03-4494-a3c4-cb2eca6a84c7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-07T01:38:26.000Z" + }, + "end": { + "$date": "2022-05-07T07:53:05.000Z" + }, + "events": [ + { + "uuid": "9facb49f-6b06-4eca-a739-bebcd53f548b", + "start": { + "$date": "2022-05-07T01:38:26.000Z" + }, + "end": { + "$date": "2022-05-07T07:53:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8991fdf2-abdc-472a-9bb6-1125344d4bab", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-07T02:38:47.000Z" + }, + "end": { + "$date": "2022-05-07T05:54:01.000Z" + }, + "events": [ + { + "uuid": "432bdd30-ea41-46fa-a04c-afcb019c38a3", + "start": { + "$date": "2022-05-07T02:38:47.000Z" + }, + "end": { + "$date": "2022-05-07T05:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "0e9d9d4c-8211-40ce-82b4-0ee139d22d2e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-07T02:39:35.000Z" + }, + "end": { + "$date": "2022-05-07T04:26:45.000Z" + }, + "events": [ + { + "uuid": "5b060315-ea5a-455a-9e56-765401f20357", + "start": { + "$date": "2022-05-07T02:39:35.000Z" + }, + "end": { + "$date": "2022-05-07T04:26:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "079a288d-91ac-47d9-9983-2dad480949e1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-07T02:41:12.000Z" + }, + "end": { + "$date": "2022-05-07T03:33:38.000Z" + }, + "events": [ + { + "uuid": "f25b0041-2b47-4ce2-b5c2-08a70f5f86e2", + "start": { + "$date": "2022-05-07T02:41:12.000Z" + }, + "end": { + "$date": "2022-05-07T03:33:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8a1adad-7e54-48f5-89df-f780f9e72189", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T02:59:04.000Z" + }, + "end": { + "$date": "2022-05-07T03:28:23.000Z" + }, + "events": [ + { + "uuid": "7b770062-4d99-4e0b-ac69-c275cefcc172", + "start": { + "$date": "2022-05-07T02:59:04.000Z" + }, + "end": { + "$date": "2022-05-07T03:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6130460-7b9a-4af9-be7b-f383ebd33689", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T03:29:43.000Z" + }, + "end": { + "$date": "2022-05-07T04:01:17.000Z" + }, + "events": [ + { + "uuid": "b450fd85-058c-41a1-92d8-139d6e2b9812", + "start": { + "$date": "2022-05-07T03:29:43.000Z" + }, + "end": { + "$date": "2022-05-07T04:01:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0ae80214-096c-4656-b508-91926b1cd170", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-07T03:34:09.000Z" + }, + "end": { + "$date": "2022-05-07T08:38:43.000Z" + }, + "events": [ + { + "uuid": "5c14dc6d-99a4-4208-a2e8-9b492f531b3d", + "start": { + "$date": "2022-05-07T03:34:09.000Z" + }, + "end": { + "$date": "2022-05-07T08:38:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9d64172a-f9f6-426d-aa9f-68da39328d5e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-07T04:27:16.000Z" + }, + "end": { + "$date": "2022-05-07T05:45:33.000Z" + }, + "events": [ + { + "uuid": "8085b190-7c95-4703-b411-d5cbf298c789", + "start": { + "$date": "2022-05-07T04:27:16.000Z" + }, + "end": { + "$date": "2022-05-07T05:45:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2c6ac4b0-acd2-40b2-a552-f98faad74100", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T04:32:26.000Z" + }, + "end": { + "$date": "2022-05-07T06:19:19.000Z" + }, + "events": [ + { + "uuid": "9939d625-6ad4-4300-af8c-1c9b56f515c8", + "start": { + "$date": "2022-05-07T04:32:26.000Z" + }, + "end": { + "$date": "2022-05-07T06:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "76662f2f-ce08-46b6-8b4a-64d6c4526cb1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-07T04:34:34.000Z" + }, + "end": { + "$date": "2022-05-07T13:39:06.000Z" + }, + "events": [ + { + "uuid": "530aecaa-0a74-4a59-8f1d-084aa9aa1f4d", + "start": { + "$date": "2022-05-07T04:34:34.000Z" + }, + "end": { + "$date": "2022-05-07T08:10:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "965d65b2-c71d-4564-974b-3d600888472a", + "start": { + "$date": "2022-05-07T08:10:34.000Z" + }, + "end": { + "$date": "2022-05-07T13:37:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "204745ba-e717-4cf4-b5d8-b5dc87ea271d", + "start": { + "$date": "2022-05-07T13:37:34.000Z" + }, + "end": { + "$date": "2022-05-07T13:39:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "60dea58d-4486-40dc-9cab-c5669069786b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-07T05:46:14.000Z" + }, + "end": { + "$date": "2022-05-07T07:55:07.000Z" + }, + "events": [ + { + "uuid": "0662cbc7-fae9-4064-a066-1e4d262e1a0d", + "start": { + "$date": "2022-05-07T05:46:14.000Z" + }, + "end": { + "$date": "2022-05-07T07:55:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdf0076d-25f6-4f71-bec6-4c1f0a7dc9cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T06:01:42.000Z" + }, + "end": { + "$date": "2022-05-07T06:25:32.000Z" + }, + "events": [ + { + "uuid": "d7ef87d2-4071-4cfc-8654-be53f4f9e76a", + "start": { + "$date": "2022-05-07T06:01:42.000Z" + }, + "end": { + "$date": "2022-05-07T06:25:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2429e867-5840-4193-bb73-7533dd5bb281", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T06:19:35.000Z" + }, + "end": { + "$date": "2022-05-07T08:38:41.000Z" + }, + "events": [ + { + "uuid": "3420b6ba-1c95-4c7e-ab85-c83b7301671b", + "start": { + "$date": "2022-05-07T06:19:35.000Z" + }, + "end": { + "$date": "2022-05-07T08:38:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "68951783-d6c1-460a-a35c-5fa35349abf6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T06:27:59.000Z" + }, + "end": { + "$date": "2022-05-07T06:50:32.000Z" + }, + "events": [ + { + "uuid": "23200b38-6e7f-469b-9544-0c422b6c7ffc", + "start": { + "$date": "2022-05-07T06:27:59.000Z" + }, + "end": { + "$date": "2022-05-07T06:50:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3479b8e8-06b3-4cae-a6ea-0c459b95f8ce", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T06:50:57.000Z" + }, + "end": { + "$date": "2022-05-07T06:53:34.000Z" + }, + "events": [ + { + "uuid": "ab53aa9d-8fc0-4394-acb8-421f65b76ba1", + "start": { + "$date": "2022-05-07T06:50:57.000Z" + }, + "end": { + "$date": "2022-05-07T06:53:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b8aae00f-54ef-4504-9a1c-5bee36c53c93", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T08:12:38.000Z" + }, + "end": { + "$date": "2022-05-07T08:13:10.000Z" + }, + "events": [ + { + "uuid": "f5bcb32c-e25d-44bf-a37d-b7a439384a23", + "start": { + "$date": "2022-05-07T08:12:38.000Z" + }, + "end": { + "$date": "2022-05-07T08:13:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "90c15380-0748-4cf9-b5c5-c8a5d3bfa5c4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T09:59:07.000Z" + }, + "end": { + "$date": "2022-05-07T10:25:42.000Z" + }, + "events": [ + { + "uuid": "7b8ac1ed-0bc6-4c28-a110-496971a127cf", + "start": { + "$date": "2022-05-07T09:59:07.000Z" + }, + "end": { + "$date": "2022-05-07T10:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "66ef59cc-dd75-46c4-9d17-a6dd3032d6d8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T10:26:06.000Z" + }, + "end": { + "$date": "2022-05-07T10:30:38.000Z" + }, + "events": [ + { + "uuid": "a7b55f70-da3b-413f-bb70-d44f28b1a0d0", + "start": { + "$date": "2022-05-07T10:26:06.000Z" + }, + "end": { + "$date": "2022-05-07T10:30:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "4c582273-3e12-425f-b69a-3784616ebf7a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T10:31:57.000Z" + }, + "end": { + "$date": "2022-05-07T10:44:25.000Z" + }, + "events": [ + { + "uuid": "2baaaa39-77b9-45ea-a8e9-495e945bb65d", + "start": { + "$date": "2022-05-07T10:31:57.000Z" + }, + "end": { + "$date": "2022-05-07T10:44:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "cf60cbb6-625e-457b-af93-719a30f7e7e7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T10:44:44.000Z" + }, + "end": { + "$date": "2022-05-07T11:14:24.000Z" + }, + "events": [ + { + "uuid": "84d42635-dc47-46fa-9c1e-a72c9d380b20", + "start": { + "$date": "2022-05-07T10:44:44.000Z" + }, + "end": { + "$date": "2022-05-07T11:14:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "89040950-54ad-4672-9674-a2dd8b4dbd58", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T11:15:14.000Z" + }, + "end": { + "$date": "2022-05-07T11:22:15.000Z" + }, + "events": [ + { + "uuid": "9124e146-a6c4-493e-b3cd-724b2ed09d16", + "start": { + "$date": "2022-05-07T11:15:14.000Z" + }, + "end": { + "$date": "2022-05-07T11:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "41e014fa-deed-4f85-9696-b6883261827a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-07T11:37:27.000Z" + }, + "end": { + "$date": "2022-05-07T15:15:13.000Z" + }, + "events": [ + { + "uuid": "1da94b10-0c9b-40b3-9054-6aba02675a88", + "start": { + "$date": "2022-05-07T11:37:27.000Z" + }, + "end": { + "$date": "2022-05-07T15:15:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "47e566c0-f626-4b96-b01b-d40611545f42", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-07T13:57:10.000Z" + }, + "end": { + "$date": "2022-05-07T15:21:41.000Z" + }, + "events": [ + { + "uuid": "c89ce158-7596-4651-8690-7f891ed3b505", + "start": { + "$date": "2022-05-07T13:57:10.000Z" + }, + "end": { + "$date": "2022-05-07T15:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "e26be617-9ee9-4f8f-8fbb-715c2ae3068a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T14:55:38.000Z" + }, + "end": { + "$date": "2022-05-07T15:05:18.000Z" + }, + "events": [ + { + "uuid": "0cf38d11-a324-4b00-8da2-2ef36d7b5d0b", + "start": { + "$date": "2022-05-07T14:55:38.000Z" + }, + "end": { + "$date": "2022-05-07T15:05:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "80a380f2-feb5-4996-8c0a-3f25b8148ae5", + "uuid": "1364607c-7e0f-40a0-8e76-822783f8589b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T15:20:05.000Z" + }, + "end": { + "$date": "2022-05-07T15:36:20.000Z" + }, + "events": [ + { + "uuid": "8764dcef-b686-465c-b653-a8acf29d602b", + "start": { + "$date": "2022-05-07T15:20:05.000Z" + }, + "end": { + "$date": "2022-05-07T15:36:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ba9037cf-9de4-4373-a2bf-25eb011eb64c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T16:20:00.000Z" + }, + "end": { + "$date": "2022-05-07T16:21:36.000Z" + }, + "events": [ + { + "uuid": "496f4768-f115-4be5-befd-2797081304f5", + "start": { + "$date": "2022-05-07T16:20:00.000Z" + }, + "end": { + "$date": "2022-05-07T16:21:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "576b48b2-4f0f-47df-8c62-c0d4666e39be", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T16:21:40.000Z" + }, + "end": { + "$date": "2022-05-07T16:44:57.000Z" + }, + "events": [ + { + "uuid": "e5ad8c5f-0dd8-4e5a-a087-0c95be86021d", + "start": { + "$date": "2022-05-07T16:21:40.000Z" + }, + "end": { + "$date": "2022-05-07T16:44:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "844c5f22-7690-402a-85ce-fbf0b7061702", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T17:24:08.000Z" + }, + "end": { + "$date": "2022-05-07T18:31:34.000Z" + }, + "events": [ + { + "uuid": "6c3b8f2a-f46e-4476-a611-5617e6362159", + "start": { + "$date": "2022-05-07T17:24:08.000Z" + }, + "end": { + "$date": "2022-05-07T18:28:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9e8f7942-ad26-4eb9-87ed-e4ae8eb330fd", + "start": { + "$date": "2022-05-07T18:28:08.000Z" + }, + "end": { + "$date": "2022-05-07T18:31:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c580ffa-b357-4b49-9192-6944c6243267", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-07T18:13:34.000Z" + }, + "end": { + "$date": "2022-05-07T18:49:24.000Z" + }, + "events": [ + { + "uuid": "f87abcba-51fe-4b75-bd94-3c0507df4a24", + "start": { + "$date": "2022-05-07T18:13:34.000Z" + }, + "end": { + "$date": "2022-05-07T18:49:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a4718b3d-b677-47cb-8108-b4aa19da9a7d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-07T18:50:17.000Z" + }, + "end": { + "$date": "2022-05-07T20:24:15.000Z" + }, + "events": [ + { + "uuid": "2d3c4ecb-0bfb-4de0-8849-33e62c02b4ac", + "start": { + "$date": "2022-05-07T18:50:17.000Z" + }, + "end": { + "$date": "2022-05-07T20:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5ccff48d-08f1-47bb-bee7-9a8e00933217", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-07T18:55:07.000Z" + }, + "end": { + "$date": "2022-05-07T19:02:30.000Z" + }, + "events": [ + { + "uuid": "75137c4b-4936-49ee-bee4-8df53616cf2f", + "start": { + "$date": "2022-05-07T18:55:07.000Z" + }, + "end": { + "$date": "2022-05-07T19:02:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd71f009-29aa-4bc5-90e6-798f3082c6b8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T18:59:07.000Z" + }, + "end": { + "$date": "2022-05-07T19:29:46.000Z" + }, + "events": [ + { + "uuid": "d88980da-c54c-49c3-b140-e50619950d79", + "start": { + "$date": "2022-05-07T18:59:07.000Z" + }, + "end": { + "$date": "2022-05-07T19:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "94ef4f92-70d7-4d75-b0db-84f368e68930", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-07T19:03:07.000Z" + }, + "end": { + "$date": "2022-05-07T21:14:40.000Z" + }, + "events": [ + { + "uuid": "80c3c28f-74c1-43f7-88b6-2b92cc55745b", + "start": { + "$date": "2022-05-07T19:03:07.000Z" + }, + "end": { + "$date": "2022-05-07T21:14:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "b19d802d-6b66-4024-a37c-49677c2bed90", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T19:03:37.000Z" + }, + "end": { + "$date": "2022-05-07T19:05:02.000Z" + }, + "events": [ + { + "uuid": "072d3def-fdef-496e-9aad-c9b9b0d9ea3d", + "start": { + "$date": "2022-05-07T19:03:37.000Z" + }, + "end": { + "$date": "2022-05-07T19:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "a26c92fb-175a-4ece-807c-0bed6e64127e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-07T19:24:21.000Z" + }, + "end": { + "$date": "2022-05-07T20:00:23.000Z" + }, + "events": [ + { + "uuid": "159a1fb8-a260-4d7c-b1e2-f85fa7b5d57f", + "start": { + "$date": "2022-05-07T19:24:21.000Z" + }, + "end": { + "$date": "2022-05-07T20:00:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "9fbeab98-f098-40cf-b120-c6fc0b9f4440", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-07T19:54:03.000Z" + }, + "end": { + "$date": "2022-05-07T20:51:54.000Z" + }, + "events": [ + { + "uuid": "face0b77-c886-488b-a767-fd42d1784bae", + "start": { + "$date": "2022-05-07T19:54:03.000Z" + }, + "end": { + "$date": "2022-05-07T20:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "5d7f5258-be14-430b-8ffa-5dcee9708bd8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-07T20:09:29.000Z" + }, + "end": { + "$date": "2022-05-07T20:24:20.000Z" + }, + "events": [ + { + "uuid": "93d53cc1-5eba-4cbf-b3ca-f6ca2e5ad1cc", + "start": { + "$date": "2022-05-07T20:09:29.000Z" + }, + "end": { + "$date": "2022-05-07T20:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "9dc5dff7-ea88-4026-bd06-b5d5249546f9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T20:18:21.000Z" + }, + "end": { + "$date": "2022-05-07T22:03:56.000Z" + }, + "events": [ + { + "uuid": "3d6d8be8-f3b3-4a8a-838d-cd38c6d8e95e", + "start": { + "$date": "2022-05-07T20:18:21.000Z" + }, + "end": { + "$date": "2022-05-07T21:26:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3b01ccb7-a84b-4500-833e-eac51409fb17", + "start": { + "$date": "2022-05-07T21:26:21.000Z" + }, + "end": { + "$date": "2022-05-07T22:03:56.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "196d2973-1360-4fd2-9353-7858c678f186", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-07T20:24:21.000Z" + }, + "end": { + "$date": "2022-05-07T21:01:58.000Z" + }, + "events": [ + { + "uuid": "ef58286c-6c2b-419e-a44a-c70d1632c654", + "start": { + "$date": "2022-05-07T20:24:21.000Z" + }, + "end": { + "$date": "2022-05-07T21:01:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "b5d13729-19f1-4aa8-a43e-9f5cd6ab301e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-07T20:44:48.000Z" + }, + "end": { + "$date": "2022-05-07T20:50:53.000Z" + }, + "events": [ + { + "uuid": "1f1f2241-9ffb-4c53-8374-177d121da637", + "start": { + "$date": "2022-05-07T20:44:48.000Z" + }, + "end": { + "$date": "2022-05-07T20:50:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ae4ff60c-3aa1-4f75-a118-8d7436556764", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-07T21:15:35.000Z" + }, + "end": { + "$date": "2022-05-08T06:45:56.000Z" + }, + "events": [ + { + "uuid": "5246c320-f04e-45a2-9d8c-4679491c39b2", + "start": { + "$date": "2022-05-07T21:15:35.000Z" + }, + "end": { + "$date": "2022-05-07T22:12:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a79b72c1-b2ac-4996-b1ad-8bc4a7eaa758", + "start": { + "$date": "2022-05-07T22:12:35.000Z" + }, + "end": { + "$date": "2022-05-07T22:16:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ce9407aa-1023-4251-a011-4ca7e3d1e98a", + "start": { + "$date": "2022-05-07T22:16:35.000Z" + }, + "end": { + "$date": "2022-05-07T22:27:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b20553d6-7ac2-4fc3-9cb2-fb20d66e62ac", + "start": { + "$date": "2022-05-07T22:27:35.000Z" + }, + "end": { + "$date": "2022-05-07T23:47:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4438b1f3-c461-43c4-90f2-31ba3089065d", + "start": { + "$date": "2022-05-07T23:47:35.000Z" + }, + "end": { + "$date": "2022-05-07T23:49:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a77d921-ef11-4bf1-9ab7-e1df75a028d8", + "start": { + "$date": "2022-05-07T23:49:35.000Z" + }, + "end": { + "$date": "2022-05-07T23:55:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3ec27464-6753-4380-bb4a-8c56c83fa2dd", + "start": { + "$date": "2022-05-07T23:55:35.000Z" + }, + "end": { + "$date": "2022-05-07T23:57:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6258757e-3474-4270-9b81-4381cbec8658", + "start": { + "$date": "2022-05-07T23:57:35.000Z" + }, + "end": { + "$date": "2022-05-08T00:35:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eb5600ef-5329-4239-a352-920face65afb", + "start": { + "$date": "2022-05-08T00:35:35.000Z" + }, + "end": { + "$date": "2022-05-08T00:38:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "67acb20a-6448-44b4-a06d-f6192e3c2489", + "start": { + "$date": "2022-05-08T00:38:35.000Z" + }, + "end": { + "$date": "2022-05-08T00:49:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3a45af2f-f54a-4b66-bb81-4756491c3313", + "start": { + "$date": "2022-05-08T00:49:35.000Z" + }, + "end": { + "$date": "2022-05-08T00:55:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6d2f96a3-0da2-46c3-ab3e-925c7f278534", + "start": { + "$date": "2022-05-08T00:55:35.000Z" + }, + "end": { + "$date": "2022-05-08T03:27:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "64d84550-95a7-494b-8a94-eabfd1bc7194", + "start": { + "$date": "2022-05-08T03:27:35.000Z" + }, + "end": { + "$date": "2022-05-08T03:37:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5115f6b1-fde1-44b6-926e-004aa2c83f92", + "start": { + "$date": "2022-05-08T03:37:35.000Z" + }, + "end": { + "$date": "2022-05-08T06:30:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "592e6b2d-d4c4-4900-ad29-f21800d034ec", + "start": { + "$date": "2022-05-08T06:30:35.000Z" + }, + "end": { + "$date": "2022-05-08T06:41:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e439970f-d735-46bf-a586-01c315847c79", + "start": { + "$date": "2022-05-08T06:41:35.000Z" + }, + "end": { + "$date": "2022-05-08T06:44:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "086299a5-e1c9-4e39-9a29-e69c8b2a09b0", + "start": { + "$date": "2022-05-08T06:44:35.000Z" + }, + "end": { + "$date": "2022-05-08T06:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "fc3d92ff-57af-44d1-805e-e01d5ada3a7e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T22:04:25.000Z" + }, + "end": { + "$date": "2022-05-07T22:27:52.000Z" + }, + "events": [ + { + "uuid": "09a9b810-e139-4b4a-85a5-5f2d79af7dd7", + "start": { + "$date": "2022-05-07T22:04:25.000Z" + }, + "end": { + "$date": "2022-05-07T22:27:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "3d46f9cd-b25e-426c-afcf-5fb30c019f2a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T22:28:32.000Z" + }, + "end": { + "$date": "2022-05-07T22:32:17.000Z" + }, + "events": [ + { + "uuid": "c0739f3c-5fdb-47b4-bdba-5c7275f0b857", + "start": { + "$date": "2022-05-07T22:28:32.000Z" + }, + "end": { + "$date": "2022-05-07T22:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "2b8248b8-24fb-44da-b7a3-0938e4af8c57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-07T22:35:03.000Z" + }, + "end": { + "$date": "2022-05-07T22:44:38.000Z" + }, + "events": [ + { + "uuid": "d3ef5a2d-b6b7-4fc9-b2d3-84c7a1c578eb", + "start": { + "$date": "2022-05-07T22:35:03.000Z" + }, + "end": { + "$date": "2022-05-07T22:44:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "84a9713a-e718-4d15-8c0e-fbb2d3d972b6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-08T00:10:08.000Z" + }, + "end": { + "$date": "2022-05-08T00:41:52.000Z" + }, + "events": [ + { + "uuid": "50ce7e31-699a-48c5-a738-a33d079b374b", + "start": { + "$date": "2022-05-08T00:10:08.000Z" + }, + "end": { + "$date": "2022-05-08T00:31:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4500933a-0aa4-4bd5-a01e-e818a3ebd375", + "start": { + "$date": "2022-05-08T00:31:08.000Z" + }, + "end": { + "$date": "2022-05-08T00:41:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68b73f46-d502-4407-a48c-02b5efd8366c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-08T01:15:50.000Z" + }, + "end": { + "$date": "2022-05-08T01:52:26.000Z" + }, + "events": [ + { + "uuid": "fc075bf4-09f3-4135-9a31-a64c2bf65905", + "start": { + "$date": "2022-05-08T01:15:50.000Z" + }, + "end": { + "$date": "2022-05-08T01:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "e2a2ea46-e38c-4db6-b600-97996c727d68", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-08T02:28:24.000Z" + }, + "end": { + "$date": "2022-05-08T03:02:14.000Z" + }, + "events": [ + { + "uuid": "2ddee48a-b929-438f-9128-622563568b7d", + "start": { + "$date": "2022-05-08T02:28:24.000Z" + }, + "end": { + "$date": "2022-05-08T03:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ddac3d54-ce83-4815-9a47-6ee72b16c927", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-08T02:40:06.000Z" + }, + "end": { + "$date": "2022-05-08T04:14:09.000Z" + }, + "events": [ + { + "uuid": "80bcf162-4ff6-48f3-9916-51cda7d24923", + "start": { + "$date": "2022-05-08T02:40:06.000Z" + }, + "end": { + "$date": "2022-05-08T04:14:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5e965665-3115-4053-98fd-f6015b6a957f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-08T02:40:09.000Z" + }, + "end": { + "$date": "2022-05-08T05:04:11.000Z" + }, + "events": [ + { + "uuid": "04e622b6-e95b-43ca-a119-dfe811f126c1", + "start": { + "$date": "2022-05-08T02:40:09.000Z" + }, + "end": { + "$date": "2022-05-08T05:04:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c1a295d4-dc39-4ad5-b1bf-4ff41b8057e7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-08T03:02:55.000Z" + }, + "end": { + "$date": "2022-05-08T06:17:25.000Z" + }, + "events": [ + { + "uuid": "f80c4423-fed2-4e7b-a522-efd7bf2dda47", + "start": { + "$date": "2022-05-08T03:02:55.000Z" + }, + "end": { + "$date": "2022-05-08T06:17:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b79433e4-6829-4d33-bddc-7d8e5f57ac9c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-08T03:27:36.000Z" + }, + "end": { + "$date": "2022-05-08T05:04:09.000Z" + }, + "events": [ + { + "uuid": "7033b4bf-a913-4fd4-be24-71bcfea6f623", + "start": { + "$date": "2022-05-08T03:27:36.000Z" + }, + "end": { + "$date": "2022-05-08T05:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b91238ed-4574-4e3c-81b2-12ee8432060b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-08T04:15:05.000Z" + }, + "end": { + "$date": "2022-05-08T05:04:17.000Z" + }, + "events": [ + { + "uuid": "dbf7d8cf-a531-4caf-abe1-6cdac85acd55", + "start": { + "$date": "2022-05-08T04:15:05.000Z" + }, + "end": { + "$date": "2022-05-08T05:04:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "2a141eeb-e395-4b3a-a464-892d9b700d95", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-08T06:18:20.000Z" + }, + "end": { + "$date": "2022-05-08T06:40:20.000Z" + }, + "events": [ + { + "uuid": "2b54b0d8-87b6-4715-9e8c-bc94d634df85", + "start": { + "$date": "2022-05-08T06:18:20.000Z" + }, + "end": { + "$date": "2022-05-08T06:40:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "afb59356-e45f-493a-bee3-019fd498f500", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-08T14:56:17.000Z" + }, + "end": { + "$date": "2022-05-08T16:21:59.000Z" + }, + "events": [ + { + "uuid": "c40ee1b3-18ac-4d70-aedf-91d48ca1dedf", + "start": { + "$date": "2022-05-08T14:56:17.000Z" + }, + "end": { + "$date": "2022-05-08T16:21:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "b83fcd75-08a3-4e0c-81c2-d9a21bc8c824", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-08T16:25:02.000Z" + }, + "end": { + "$date": "2022-05-08T16:27:23.000Z" + }, + "events": [ + { + "uuid": "9b8db353-eb36-4162-a6a4-bfc7ea06b8dd", + "start": { + "$date": "2022-05-08T16:25:02.000Z" + }, + "end": { + "$date": "2022-05-08T16:27:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "52d7ed95-429c-4a33-a783-04a8664bd242", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-08T16:27:57.000Z" + }, + "end": { + "$date": "2022-05-08T16:38:08.000Z" + }, + "events": [ + { + "uuid": "a477fd9e-9253-4f2b-b843-5f6d3a0e6889", + "start": { + "$date": "2022-05-08T16:27:57.000Z" + }, + "end": { + "$date": "2022-05-08T16:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "10bd2994-917f-4466-b537-eca73f5e9dd2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-08T16:35:06.000Z" + }, + "end": { + "$date": "2022-05-08T16:37:01.000Z" + }, + "events": [ + { + "uuid": "9b7c388a-2f45-42b0-bc47-27b0d8c522f6", + "start": { + "$date": "2022-05-08T16:35:06.000Z" + }, + "end": { + "$date": "2022-05-08T16:37:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "2cb4bfe0-4602-4b48-977c-a489edb464a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-08T16:39:37.000Z" + }, + "end": { + "$date": "2022-05-08T17:23:33.000Z" + }, + "events": [ + { + "uuid": "b75dd519-fb59-4c20-b0fd-228b84354dcc", + "start": { + "$date": "2022-05-08T16:39:37.000Z" + }, + "end": { + "$date": "2022-05-08T17:23:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "c1e8fff2-b090-47a7-8143-826ceaf30999", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-08T16:39:43.000Z" + }, + "end": { + "$date": "2022-05-08T17:26:19.000Z" + }, + "events": [ + { + "uuid": "68e717f7-2962-45cb-87c1-f265cc45cfae", + "start": { + "$date": "2022-05-08T16:39:43.000Z" + }, + "end": { + "$date": "2022-05-08T17:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "106fa82a-ab8b-432b-9718-f0061b04319e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-08T16:45:22.000Z" + }, + "end": { + "$date": "2022-05-08T17:19:11.000Z" + }, + "events": [ + { + "uuid": "381faa82-a3ad-4274-b300-c37007d3f308", + "start": { + "$date": "2022-05-08T16:45:22.000Z" + }, + "end": { + "$date": "2022-05-08T17:19:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "a8e6cfe1-bb2f-42b9-ab8d-61c6cd99db78", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-09T02:43:30.000Z" + }, + "end": { + "$date": "2022-05-09T03:01:59.000Z" + }, + "events": [ + { + "uuid": "d8b227ea-2764-4cef-9c74-c74ba75b01c9", + "start": { + "$date": "2022-05-09T02:43:30.000Z" + }, + "end": { + "$date": "2022-05-09T03:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "72260e54-79b5-4096-a99b-a8b6da052859", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-09T03:02:35.000Z" + }, + "end": { + "$date": "2022-05-09T05:22:18.000Z" + }, + "events": [ + { + "uuid": "681f5aea-af60-437f-af06-84be5004aba6", + "start": { + "$date": "2022-05-09T03:02:35.000Z" + }, + "end": { + "$date": "2022-05-09T05:22:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "d504e3e5-feca-406b-bcfe-977d3f8a8a0e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-09T03:22:47.000Z" + }, + "end": { + "$date": "2022-05-09T04:05:48.000Z" + }, + "events": [ + { + "uuid": "6a6a4778-565f-400e-9bc2-b017a92300ad", + "start": { + "$date": "2022-05-09T03:22:47.000Z" + }, + "end": { + "$date": "2022-05-09T04:05:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "57efc54b-a6d4-4230-95c2-385238bbd203", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-09T03:43:32.000Z" + }, + "end": { + "$date": "2022-05-09T09:26:59.000Z" + }, + "events": [ + { + "uuid": "6bc87b1f-f255-46ed-89a5-9cbcf28b6f97", + "start": { + "$date": "2022-05-09T03:43:32.000Z" + }, + "end": { + "$date": "2022-05-09T09:26:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "29763274-0f55-449d-aeeb-5bff30443519", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-09T04:06:11.000Z" + }, + "end": { + "$date": "2022-05-09T04:17:55.000Z" + }, + "events": [ + { + "uuid": "ba5954a7-fc02-4bb7-9996-490b7691738a", + "start": { + "$date": "2022-05-09T04:06:11.000Z" + }, + "end": { + "$date": "2022-05-09T04:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "15c6dcfe-90d6-4f9c-ad32-8aca98948632", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-09T04:19:59.000Z" + }, + "end": { + "$date": "2022-05-09T05:01:55.000Z" + }, + "events": [ + { + "uuid": "88318ded-b6db-42fd-8834-03e87ae4471a", + "start": { + "$date": "2022-05-09T04:19:59.000Z" + }, + "end": { + "$date": "2022-05-09T05:01:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "7c94bfeb-c948-479f-b4b6-817855806bea", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-09T05:25:59.000Z" + }, + "end": { + "$date": "2022-05-09T06:21:16.000Z" + }, + "events": [ + { + "uuid": "7fdf4a2e-30cb-41c1-a342-2893433f9801", + "start": { + "$date": "2022-05-09T05:25:59.000Z" + }, + "end": { + "$date": "2022-05-09T06:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dc16bea3-d226-4cc2-a706-fdabd7f19565", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-09T15:11:04.000Z" + }, + "end": { + "$date": "2022-05-09T16:36:59.000Z" + }, + "events": [ + { + "uuid": "bd824f33-241b-4a35-9106-57787a474b01", + "start": { + "$date": "2022-05-09T15:11:04.000Z" + }, + "end": { + "$date": "2022-05-09T16:36:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6285845a-82d0-48f1-8048-34e4355aede9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-09T15:18:23.000Z" + }, + "end": { + "$date": "2022-05-09T16:37:19.000Z" + }, + "events": [ + { + "uuid": "03c5227d-78f1-494b-92d0-041157eea498", + "start": { + "$date": "2022-05-09T15:18:23.000Z" + }, + "end": { + "$date": "2022-05-09T16:34:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "147723d3-3baf-4e81-90a5-b16495ee61b9", + "start": { + "$date": "2022-05-09T16:34:23.000Z" + }, + "end": { + "$date": "2022-05-09T16:37:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9f5e33db-4a5b-430e-aeef-7948b9ccecb8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-09T16:50:05.000Z" + }, + "end": { + "$date": "2022-05-09T17:18:07.000Z" + }, + "events": [ + { + "uuid": "ca86eedd-bb91-477b-a6ed-03c2745e4633", + "start": { + "$date": "2022-05-09T16:50:05.000Z" + }, + "end": { + "$date": "2022-05-09T17:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "40d35e72-1e9d-462d-917f-2c5d70798dcc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-09T17:18:48.000Z" + }, + "end": { + "$date": "2022-05-09T19:23:08.000Z" + }, + "events": [ + { + "uuid": "858da6e6-89c0-41a6-8880-2a8dd84e85da", + "start": { + "$date": "2022-05-09T17:18:48.000Z" + }, + "end": { + "$date": "2022-05-09T19:12:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "afc1c474-962e-49a4-a77d-916c6154d198", + "start": { + "$date": "2022-05-09T19:12:48.000Z" + }, + "end": { + "$date": "2022-05-09T19:17:48.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5486a770-bc65-4bb4-a408-e75c0e70176d", + "start": { + "$date": "2022-05-09T19:17:48.000Z" + }, + "end": { + "$date": "2022-05-09T19:23:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9539a950-d7be-4010-aa45-d914784f9bae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-09T17:20:27.000Z" + }, + "end": { + "$date": "2022-05-09T17:44:49.000Z" + }, + "events": [ + { + "uuid": "7a55d3ac-0ed5-4910-aa11-2100dc111fb4", + "start": { + "$date": "2022-05-09T17:20:27.000Z" + }, + "end": { + "$date": "2022-05-09T17:38:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e1f1c85e-5cb9-4ded-8bb4-1e1b639ba9ca", + "start": { + "$date": "2022-05-09T17:38:27.000Z" + }, + "end": { + "$date": "2022-05-09T17:44:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fd709669-121f-40da-9b2e-34a549608bf0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-09T18:37:48.000Z" + }, + "end": { + "$date": "2022-05-09T18:40:50.000Z" + }, + "events": [ + { + "uuid": "4d01a559-6263-4d55-908b-62d52a661eb7", + "start": { + "$date": "2022-05-09T18:37:48.000Z" + }, + "end": { + "$date": "2022-05-09T18:40:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c181f3d6-be09-45b5-8fec-e5f1e91a467f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-09T18:43:00.000Z" + }, + "end": { + "$date": "2022-05-09T18:43:04.000Z" + }, + "events": [ + { + "uuid": "50556355-2be2-4492-bad9-f71a860a5caa", + "start": { + "$date": "2022-05-09T18:43:00.000Z" + }, + "end": { + "$date": "2022-05-09T18:43:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fceeaa5-bcfc-4a3f-b6cc-8bbe5983926c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-09T18:43:07.000Z" + }, + "end": { + "$date": "2022-05-09T18:44:54.000Z" + }, + "events": [ + { + "uuid": "7e861ffa-c3dd-44ed-8a99-f7bccccf53cb", + "start": { + "$date": "2022-05-09T18:43:07.000Z" + }, + "end": { + "$date": "2022-05-09T18:44:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9aa859c-5f23-4bc2-ad30-c83f961c11b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-09T18:48:26.000Z" + }, + "end": { + "$date": "2022-05-09T18:59:45.000Z" + }, + "events": [ + { + "uuid": "6daeb236-cdcd-4d73-9878-8c83d5a9e556", + "start": { + "$date": "2022-05-09T18:48:26.000Z" + }, + "end": { + "$date": "2022-05-09T18:59:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "81f060b3-a05c-4365-a933-91ddb2e823cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-09T19:05:01.000Z" + }, + "end": { + "$date": "2022-05-09T19:43:13.000Z" + }, + "events": [ + { + "uuid": "913953ff-9cd3-4448-b161-2774dfedf7b9", + "start": { + "$date": "2022-05-09T19:05:01.000Z" + }, + "end": { + "$date": "2022-05-09T19:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7b3a22b-4d45-434a-8a6d-6a6962c13857", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-09T21:30:41.000Z" + }, + "end": { + "$date": "2022-05-09T22:55:24.000Z" + }, + "events": [ + { + "uuid": "2b775987-c1b2-490d-ae77-683ea4ec6ab9", + "start": { + "$date": "2022-05-09T21:30:41.000Z" + }, + "end": { + "$date": "2022-05-09T22:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "75a429d2-93f4-40ef-8e76-443b8d9ad423", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-10T00:21:35.000Z" + }, + "end": { + "$date": "2022-05-10T00:23:41.000Z" + }, + "events": [ + { + "uuid": "aef508a1-c9cc-4067-8b0a-4daf0c0597d4", + "start": { + "$date": "2022-05-10T00:21:35.000Z" + }, + "end": { + "$date": "2022-05-10T00:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "198ee351-25af-434f-be9c-ae5892ddd72a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-10T00:41:19.000Z" + }, + "end": { + "$date": "2022-05-10T01:35:42.000Z" + }, + "events": [ + { + "uuid": "bea15ee7-07f9-485c-a838-c69c7eab0dd7", + "start": { + "$date": "2022-05-10T00:41:19.000Z" + }, + "end": { + "$date": "2022-05-10T01:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9ce0adcd-a4b4-4e3c-bc97-85a099d5b90d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-10T00:55:37.000Z" + }, + "end": { + "$date": "2022-05-10T04:02:02.000Z" + }, + "events": [ + { + "uuid": "96fd66de-be6d-444e-ad12-eae7ceace3dc", + "start": { + "$date": "2022-05-10T00:55:37.000Z" + }, + "end": { + "$date": "2022-05-10T04:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "cd58f12d-69a3-4c1e-a404-223d2e6afe22", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-10T01:37:27.000Z" + }, + "end": { + "$date": "2022-05-10T02:39:08.000Z" + }, + "events": [ + { + "uuid": "165611d6-f59e-4e67-8a27-77b5d8e63593", + "start": { + "$date": "2022-05-10T01:37:27.000Z" + }, + "end": { + "$date": "2022-05-10T02:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "581ab147-7e3c-47dc-b2fb-945a11fb3c4b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-10T02:39:58.000Z" + }, + "end": { + "$date": "2022-05-10T04:10:34.000Z" + }, + "events": [ + { + "uuid": "1df7695b-62b4-4fea-a90c-20fcff30dc1a", + "start": { + "$date": "2022-05-10T02:39:58.000Z" + }, + "end": { + "$date": "2022-05-10T04:10:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "f52eaaad-d70a-472e-88c2-775cd748dbdc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-10T03:57:42.000Z" + }, + "end": { + "$date": "2022-05-10T04:04:13.000Z" + }, + "events": [ + { + "uuid": "267244c7-e7d3-414c-8858-38a33fe2c359", + "start": { + "$date": "2022-05-10T03:57:42.000Z" + }, + "end": { + "$date": "2022-05-10T04:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e3458ef0-c983-4aa8-87ec-79445ff11fe8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-10T04:05:50.000Z" + }, + "end": { + "$date": "2022-05-10T04:46:58.000Z" + }, + "events": [ + { + "uuid": "c5c15e21-1435-4aac-a355-a54971c33df8", + "start": { + "$date": "2022-05-10T04:05:50.000Z" + }, + "end": { + "$date": "2022-05-10T04:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e8238a05-b4c7-4a1d-b138-94629b2a4b15", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-10T04:34:39.000Z" + }, + "end": { + "$date": "2022-05-10T05:06:55.000Z" + }, + "events": [ + { + "uuid": "e6272fbb-1eab-40c7-9412-dc0b676a4fd4", + "start": { + "$date": "2022-05-10T04:34:39.000Z" + }, + "end": { + "$date": "2022-05-10T05:06:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "02173651-bd02-4d52-9c9f-ca8f28685b26", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-10T05:09:15.000Z" + }, + "end": { + "$date": "2022-05-10T05:39:32.000Z" + }, + "events": [ + { + "uuid": "6f125c3c-b10e-44df-8713-0e9d9ed7524a", + "start": { + "$date": "2022-05-10T05:09:15.000Z" + }, + "end": { + "$date": "2022-05-10T05:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "473b1909-277b-47be-93ca-ee0bd1d98517", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-10T05:40:48.000Z" + }, + "end": { + "$date": "2022-05-10T06:16:20.000Z" + }, + "events": [ + { + "uuid": "125916e7-7f2c-4ceb-ab18-d3c587a98d2d", + "start": { + "$date": "2022-05-10T05:40:48.000Z" + }, + "end": { + "$date": "2022-05-10T06:16:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "55f9598a-7fbb-4159-b820-af84957ed4d1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-10T14:49:36.000Z" + }, + "end": { + "$date": "2022-05-10T16:05:47.000Z" + }, + "events": [ + { + "uuid": "ee1d4f41-bedd-48cf-8364-2167aa04ab13", + "start": { + "$date": "2022-05-10T14:49:36.000Z" + }, + "end": { + "$date": "2022-05-10T16:05:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "845477e2-321e-48f2-8377-c55c66337379", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-10T16:33:50.000Z" + }, + "end": { + "$date": "2022-05-10T17:16:29.000Z" + }, + "events": [ + { + "uuid": "b919f69a-ef7b-485f-b455-b94c41d0a98c", + "start": { + "$date": "2022-05-10T16:33:50.000Z" + }, + "end": { + "$date": "2022-05-10T17:16:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "20e0f718-e21b-4543-adfd-774b465fc622", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-10T17:17:50.000Z" + }, + "end": { + "$date": "2022-05-10T17:19:20.000Z" + }, + "events": [ + { + "uuid": "eb7851df-34dd-40dc-8c62-226c8f9ed0b2", + "start": { + "$date": "2022-05-10T17:17:50.000Z" + }, + "end": { + "$date": "2022-05-10T17:19:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e83f006b-2028-4b82-ba26-8c7eb88cf88c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-10T17:25:05.000Z" + }, + "end": { + "$date": "2022-05-10T17:32:55.000Z" + }, + "events": [ + { + "uuid": "76dd6e94-8164-4775-87db-a569c8cc9325", + "start": { + "$date": "2022-05-10T17:25:05.000Z" + }, + "end": { + "$date": "2022-05-10T17:32:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "e4ee063f-1a2b-4e6b-ab7d-47585af6a8ce", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-10T18:23:26.000Z" + }, + "end": { + "$date": "2022-05-10T18:40:36.000Z" + }, + "events": [ + { + "uuid": "a94353eb-8274-4f0e-ab08-becd229f9139", + "start": { + "$date": "2022-05-10T18:23:26.000Z" + }, + "end": { + "$date": "2022-05-10T18:40:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "566a3bfb-dac8-4573-9a1f-3d3226fb1dbc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-10T22:24:19.000Z" + }, + "end": { + "$date": "2022-05-10T22:59:07.000Z" + }, + "events": [ + { + "uuid": "d959bb0a-b90b-405b-a858-f88a72771230", + "start": { + "$date": "2022-05-10T22:24:19.000Z" + }, + "end": { + "$date": "2022-05-10T22:59:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a6000b85-6e01-43ad-9ed4-90c7f874292c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-10T23:24:58.000Z" + }, + "end": { + "$date": "2022-05-10T23:27:01.000Z" + }, + "events": [ + { + "uuid": "5b4e67b4-97f3-467d-ae32-bd13192ffb5f", + "start": { + "$date": "2022-05-10T23:24:58.000Z" + }, + "end": { + "$date": "2022-05-10T23:27:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b867c2b2-5df2-4901-8474-c7a197a77e84", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-11T00:35:27.000Z" + }, + "end": { + "$date": "2022-05-11T02:37:06.000Z" + }, + "events": [ + { + "uuid": "f0ec5aa4-8849-400f-8615-d7b8ed6958cf", + "start": { + "$date": "2022-05-11T00:35:27.000Z" + }, + "end": { + "$date": "2022-05-11T02:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "339a9c00-8aa5-49aa-b028-d345bcd6fdc4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-11T02:37:26.000Z" + }, + "end": { + "$date": "2022-05-11T02:39:31.000Z" + }, + "events": [ + { + "uuid": "10d9c872-eade-46d8-a544-e3fe94be21a6", + "start": { + "$date": "2022-05-11T02:37:26.000Z" + }, + "end": { + "$date": "2022-05-11T02:39:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "56dc1240-9394-49e2-9366-67209dd72f33", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-11T02:40:01.000Z" + }, + "end": { + "$date": "2022-05-11T02:41:12.000Z" + }, + "events": [ + { + "uuid": "e73bf5fe-05cf-4f9b-bda0-b15f38093204", + "start": { + "$date": "2022-05-11T02:40:01.000Z" + }, + "end": { + "$date": "2022-05-11T02:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "1806624e-5872-49e3-8430-546d17aef3c9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-11T02:42:42.000Z" + }, + "end": { + "$date": "2022-05-11T03:03:52.000Z" + }, + "events": [ + { + "uuid": "83ab70e8-1c5f-46d8-8a1a-6615f9c61061", + "start": { + "$date": "2022-05-11T02:42:42.000Z" + }, + "end": { + "$date": "2022-05-11T03:03:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0fb5b797-3d3e-41f6-a77d-92d38574d99d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-11T03:09:08.000Z" + }, + "end": { + "$date": "2022-05-11T05:08:37.000Z" + }, + "events": [ + { + "uuid": "19b788ba-9d63-4f06-a951-6a0ef9583bb3", + "start": { + "$date": "2022-05-11T03:09:08.000Z" + }, + "end": { + "$date": "2022-05-11T05:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0ef7c3b0-aa18-4e56-b30c-9aa72828e25a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-11T06:24:09.000Z" + }, + "end": { + "$date": "2022-05-11T07:38:31.000Z" + }, + "events": [ + { + "uuid": "b95b1680-cdbb-416e-827b-0f6dc273b7d3", + "start": { + "$date": "2022-05-11T06:24:09.000Z" + }, + "end": { + "$date": "2022-05-11T07:38:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e0e0dcc9-1d07-4131-8afb-0aa5927257ee", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-11T06:25:43.000Z" + }, + "end": { + "$date": "2022-05-11T07:38:13.000Z" + }, + "events": [ + { + "uuid": "34774757-5a09-4de4-b398-20ad19c77c41", + "start": { + "$date": "2022-05-11T06:25:43.000Z" + }, + "end": { + "$date": "2022-05-11T07:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "97136a95-7016-4fac-abcc-d690a269ec5f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-11T13:24:09.000Z" + }, + "end": { + "$date": "2022-05-11T15:40:02.000Z" + }, + "events": [ + { + "uuid": "34f8bf9f-129b-4ec7-b2dd-1ba692977b09", + "start": { + "$date": "2022-05-11T13:24:09.000Z" + }, + "end": { + "$date": "2022-05-11T15:40:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "50b2b6cf-bed9-4aae-9495-adfef237dec1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-11T15:47:19.000Z" + }, + "end": { + "$date": "2022-05-11T16:45:58.000Z" + }, + "events": [ + { + "uuid": "9d0855ea-ed81-43dc-874c-f147128641a5", + "start": { + "$date": "2022-05-11T15:47:19.000Z" + }, + "end": { + "$date": "2022-05-11T16:37:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "aa807943-6d0a-428e-8a9c-e1b0a35e5a44", + "start": { + "$date": "2022-05-11T16:37:19.000Z" + }, + "end": { + "$date": "2022-05-11T16:38:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa12bfcf-8689-4c93-bdd4-1b45736ee021", + "start": { + "$date": "2022-05-11T16:38:19.000Z" + }, + "end": { + "$date": "2022-05-11T16:45:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3fa01222-c19f-4677-851e-ef7ca697049a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-11T16:46:13.000Z" + }, + "end": { + "$date": "2022-05-11T17:31:25.000Z" + }, + "events": [ + { + "uuid": "44a74e76-f3d3-48c9-bb40-cb7477a5e969", + "start": { + "$date": "2022-05-11T16:46:13.000Z" + }, + "end": { + "$date": "2022-05-11T17:31:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "442b127c-20ce-4057-90c4-3af950b160a0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-11T17:32:25.000Z" + }, + "end": { + "$date": "2022-05-11T17:43:26.000Z" + }, + "events": [ + { + "uuid": "a1d5aa40-388d-410d-ba24-bd35e1c06747", + "start": { + "$date": "2022-05-11T17:32:25.000Z" + }, + "end": { + "$date": "2022-05-11T17:43:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d0887e89-1d57-49ae-961e-4846a3e8fa04", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-11T18:37:06.000Z" + }, + "end": { + "$date": "2022-05-11T18:40:57.000Z" + }, + "events": [ + { + "uuid": "6927c0b1-4862-4f01-a6de-745bc2b7fb4f", + "start": { + "$date": "2022-05-11T18:37:06.000Z" + }, + "end": { + "$date": "2022-05-11T18:40:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", + "uuid": "e24e830c-1efe-4a0c-bd8d-244cec064aff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-11T23:52:29.000Z" + }, + "end": { + "$date": "2022-05-12T02:46:12.000Z" + }, + "events": [ + { + "uuid": "7c86dfff-00a3-43e9-8b89-83b1ca476780", + "start": { + "$date": "2022-05-11T23:52:29.000Z" + }, + "end": { + "$date": "2022-05-12T02:46:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "77cb5919-fc7e-404e-8713-882dd4b1af64", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-12T00:31:58.000Z" + }, + "end": { + "$date": "2022-05-12T00:36:53.000Z" + }, + "events": [ + { + "uuid": "c366b6ef-ec29-490e-af8a-7e503f18d81e", + "start": { + "$date": "2022-05-12T00:31:58.000Z" + }, + "end": { + "$date": "2022-05-12T00:36:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "024837d0-4c34-457b-a557-e24d11a0ecd2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-12T01:10:34.000Z" + }, + "end": { + "$date": "2022-05-12T03:01:25.000Z" + }, + "events": [ + { + "uuid": "4bcee286-0d50-4e91-acdf-080af4905d95", + "start": { + "$date": "2022-05-12T01:10:34.000Z" + }, + "end": { + "$date": "2022-05-12T02:25:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb2372da-e98d-41ed-9e16-f05e5089b7f1", + "start": { + "$date": "2022-05-12T02:25:34.000Z" + }, + "end": { + "$date": "2022-05-12T02:45:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc0456cc-5d76-4eb8-b48a-4a9e446ef9aa", + "start": { + "$date": "2022-05-12T02:45:34.000Z" + }, + "end": { + "$date": "2022-05-12T03:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "10c0034c-6fd2-4f34-863b-ba6dccd7fb3e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-12T02:55:25.000Z" + }, + "end": { + "$date": "2022-05-12T04:10:07.000Z" + }, + "events": [ + { + "uuid": "36b458c4-91b4-4be5-ac33-15592a3209e8", + "start": { + "$date": "2022-05-12T02:55:25.000Z" + }, + "end": { + "$date": "2022-05-12T04:10:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "cb552e04-cb68-49eb-b06f-d040c344b705", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-12T03:05:50.000Z" + }, + "end": { + "$date": "2022-05-12T03:34:16.000Z" + }, + "events": [ + { + "uuid": "220e870a-30f6-4db4-b5b8-a13ec0e58b98", + "start": { + "$date": "2022-05-12T03:05:50.000Z" + }, + "end": { + "$date": "2022-05-12T03:34:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e64ae686-5acf-48e2-af52-2706738a1948", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-12T03:35:06.000Z" + }, + "end": { + "$date": "2022-05-12T05:58:50.000Z" + }, + "events": [ + { + "uuid": "9abafeba-5774-4511-9332-0cf0c166736a", + "start": { + "$date": "2022-05-12T03:35:06.000Z" + }, + "end": { + "$date": "2022-05-12T05:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1aee125a-235f-4f59-91d1-780e8339e9b6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-12T04:57:35.000Z" + }, + "end": { + "$date": "2022-05-12T05:08:28.000Z" + }, + "events": [ + { + "uuid": "cb0f7270-0081-4e95-ad21-e3dae5ac31e5", + "start": { + "$date": "2022-05-12T04:57:35.000Z" + }, + "end": { + "$date": "2022-05-12T05:08:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "66096c5c-faa0-423b-8111-2bfebb91385f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-12T05:08:43.000Z" + }, + "end": { + "$date": "2022-05-12T05:37:42.000Z" + }, + "events": [ + { + "uuid": "238f6fb9-095e-40ed-9e3c-f7d216e191a2", + "start": { + "$date": "2022-05-12T05:08:43.000Z" + }, + "end": { + "$date": "2022-05-12T05:37:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f1cc85dc-cf5b-4273-9ecd-29f54e89f953", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-12T05:14:47.000Z" + }, + "end": { + "$date": "2022-05-12T07:30:47.000Z" + }, + "events": [ + { + "uuid": "a5f324f8-22f7-4a66-a1ca-a8f8466b93c5", + "start": { + "$date": "2022-05-12T05:14:47.000Z" + }, + "end": { + "$date": "2022-05-12T07:30:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "37cf25fa-5d92-4eb8-bfea-35ebbfc2814f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-12T05:15:30.000Z" + }, + "end": { + "$date": "2022-05-12T07:30:46.000Z" + }, + "events": [ + { + "uuid": "2f964b75-2930-40e8-be4a-6c6890d9d58d", + "start": { + "$date": "2022-05-12T05:15:30.000Z" + }, + "end": { + "$date": "2022-05-12T07:30:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "765de535-2a88-4958-824b-b46ced5e29ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-12T05:19:27.000Z" + }, + "end": { + "$date": "2022-05-12T07:34:28.000Z" + }, + "events": [ + { + "uuid": "8d698621-a96c-428b-b9ab-41ced3d7b5b3", + "start": { + "$date": "2022-05-12T05:19:27.000Z" + }, + "end": { + "$date": "2022-05-12T07:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "519b8177-46a5-42b5-bf7c-8663a2a4904c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-12T06:13:04.000Z" + }, + "end": { + "$date": "2022-05-12T06:30:17.000Z" + }, + "events": [ + { + "uuid": "dd3c8fca-81d7-431a-827f-fc71446defe3", + "start": { + "$date": "2022-05-12T06:13:04.000Z" + }, + "end": { + "$date": "2022-05-12T06:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "7a6337bd-fdf2-4ff7-a435-1280fb948d2b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T14:27:30.000Z" + }, + "end": { + "$date": "2022-05-12T14:47:01.000Z" + }, + "events": [ + { + "uuid": "a5ef0732-cde3-4426-a10b-fd73a5fb5c7a", + "start": { + "$date": "2022-05-12T14:27:30.000Z" + }, + "end": { + "$date": "2022-05-12T14:47:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "988295a9-0e06-4fa4-b0d9-a9be027e9cd6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T14:47:51.000Z" + }, + "end": { + "$date": "2022-05-12T15:22:09.000Z" + }, + "events": [ + { + "uuid": "63f9adc0-3cb9-4255-bf56-7c1677c31370", + "start": { + "$date": "2022-05-12T14:47:51.000Z" + }, + "end": { + "$date": "2022-05-12T15:22:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "73289126-2f60-49a9-816c-0cd7d77edbc0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T15:22:24.000Z" + }, + "end": { + "$date": "2022-05-12T16:15:56.000Z" + }, + "events": [ + { + "uuid": "2d1fb152-0189-46bb-b0e0-36b76aced38c", + "start": { + "$date": "2022-05-12T15:22:24.000Z" + }, + "end": { + "$date": "2022-05-12T16:15:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b540ad84-9ef8-4508-8af9-ea6312b0e060", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T16:16:21.000Z" + }, + "end": { + "$date": "2022-05-12T16:52:38.000Z" + }, + "events": [ + { + "uuid": "f9ad9a7f-d054-4731-a038-81b3d59bdf6a", + "start": { + "$date": "2022-05-12T16:16:21.000Z" + }, + "end": { + "$date": "2022-05-12T16:52:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", + "uuid": "a0a1585c-9265-4ee7-89de-74c36e16e2b3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T17:05:44.000Z" + }, + "end": { + "$date": "2022-05-12T17:12:54.000Z" + }, + "events": [ + { + "uuid": "8fba7b8f-3989-46c4-ac4d-44e8662fd32a", + "start": { + "$date": "2022-05-12T17:05:44.000Z" + }, + "end": { + "$date": "2022-05-12T17:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f68cdff0-f1ac-4c3c-b583-311a13b10fba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T17:13:54.000Z" + }, + "end": { + "$date": "2022-05-12T17:31:35.000Z" + }, + "events": [ + { + "uuid": "1e644971-f06d-4f22-ba12-834091c84bc4", + "start": { + "$date": "2022-05-12T17:13:54.000Z" + }, + "end": { + "$date": "2022-05-12T17:31:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cb396e8b-3f45-492a-a3cb-8e7fe03f2b02", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-12T17:31:55.000Z" + }, + "end": { + "$date": "2022-05-12T18:02:57.000Z" + }, + "events": [ + { + "uuid": "d169bfbb-1731-4f62-a091-94ef97180865", + "start": { + "$date": "2022-05-12T17:31:55.000Z" + }, + "end": { + "$date": "2022-05-12T18:02:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e0e3fc94-5bae-4db6-98bc-b9f1a35ab107", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-12T22:05:08.000Z" + }, + "end": { + "$date": "2022-05-12T22:53:29.000Z" + }, + "events": [ + { + "uuid": "1a499410-b4b5-4ed1-926d-7a7c0c58c179", + "start": { + "$date": "2022-05-12T22:05:08.000Z" + }, + "end": { + "$date": "2022-05-12T22:53:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e7edf65e-9817-467b-aceb-3fc7542091e9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-12T22:26:37.000Z" + }, + "end": { + "$date": "2022-05-12T22:50:48.000Z" + }, + "events": [ + { + "uuid": "50bbdb77-0d80-47af-92e6-4cb63c86ebd6", + "start": { + "$date": "2022-05-12T22:26:37.000Z" + }, + "end": { + "$date": "2022-05-12T22:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "809edae6-1319-4d1e-a702-3f228216a49f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-12T22:58:19.000Z" + }, + "end": { + "$date": "2022-05-12T23:48:50.000Z" + }, + "events": [ + { + "uuid": "40e9fadb-26ec-485f-995a-47cdf020ae60", + "start": { + "$date": "2022-05-12T22:58:19.000Z" + }, + "end": { + "$date": "2022-05-12T23:48:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5ae414fb-2ab5-4962-a1e3-dd32ae06a0a1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-13T00:03:03.000Z" + }, + "end": { + "$date": "2022-05-13T00:58:35.000Z" + }, + "events": [ + { + "uuid": "fec2f807-6583-42f7-8069-d3708a129ec6", + "start": { + "$date": "2022-05-13T00:03:03.000Z" + }, + "end": { + "$date": "2022-05-13T00:44:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "34d8e199-fcfe-430b-be51-f6c612357da8", + "start": { + "$date": "2022-05-13T00:44:03.000Z" + }, + "end": { + "$date": "2022-05-13T00:58:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "77ec44f4-5c28-4ece-9e0b-6d2cba3d622b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-13T01:16:37.000Z" + }, + "end": { + "$date": "2022-05-13T01:17:51.000Z" + }, + "events": [ + { + "uuid": "1c6de335-b1df-416e-a16e-64f6c2330d3a", + "start": { + "$date": "2022-05-13T01:16:37.000Z" + }, + "end": { + "$date": "2022-05-13T01:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "13079f35-021c-4687-b578-3634e826c9b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-13T01:18:11.000Z" + }, + "end": { + "$date": "2022-05-13T01:24:28.000Z" + }, + "events": [ + { + "uuid": "99c6f98e-a726-40af-ba25-e9c5235b6761", + "start": { + "$date": "2022-05-13T01:18:11.000Z" + }, + "end": { + "$date": "2022-05-13T01:24:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "38ee2db4-4e1b-415a-9aa6-6f3ab666e624", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-13T01:28:09.000Z" + }, + "end": { + "$date": "2022-05-13T03:20:19.000Z" + }, + "events": [ + { + "uuid": "2d63900e-975f-4436-bcd7-b4b3a58f4097", + "start": { + "$date": "2022-05-13T01:28:09.000Z" + }, + "end": { + "$date": "2022-05-13T03:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "bb2e8d82-dfe5-43ce-bc86-ee81eee5578c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-13T01:53:56.000Z" + }, + "end": { + "$date": "2022-05-13T03:08:06.000Z" + }, + "events": [ + { + "uuid": "40bb9277-5068-4072-80f0-99808d567078", + "start": { + "$date": "2022-05-13T01:53:56.000Z" + }, + "end": { + "$date": "2022-05-13T03:08:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1392e98a-b7ba-4a02-b9af-df3614c54142", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-13T03:21:42.000Z" + }, + "end": { + "$date": "2022-05-13T04:59:34.000Z" + }, + "events": [ + { + "uuid": "6983635d-e30b-4388-83e7-4b1578cb04aa", + "start": { + "$date": "2022-05-13T03:21:42.000Z" + }, + "end": { + "$date": "2022-05-13T04:59:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0c1a0611-4d87-451c-ac7a-64712a78d2ff", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-13T03:41:36.000Z" + }, + "end": { + "$date": "2022-05-13T04:18:39.000Z" + }, + "events": [ + { + "uuid": "d0628c49-5ce4-41f9-a645-fcc6f28eb6bb", + "start": { + "$date": "2022-05-13T03:41:36.000Z" + }, + "end": { + "$date": "2022-05-13T04:18:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "613e6e62-6565-4a87-aacb-6bcbe55a5d9f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-13T05:16:52.000Z" + }, + "end": { + "$date": "2022-05-13T06:12:04.000Z" + }, + "events": [ + { + "uuid": "7f7802e8-7292-42c3-9fea-f35d1d88c1e6", + "start": { + "$date": "2022-05-13T05:16:52.000Z" + }, + "end": { + "$date": "2022-05-13T06:12:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "668c3f04-881f-4032-a2ff-b56a58cbdb3d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-13T14:41:03.000Z" + }, + "end": { + "$date": "2022-05-13T21:09:27.000Z" + }, + "events": [ + { + "uuid": "da0944f6-e55a-4a22-bec6-71e04cc74869", + "start": { + "$date": "2022-05-13T14:41:03.000Z" + }, + "end": { + "$date": "2022-05-13T21:09:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "c6a1d7f8-0473-4840-afe0-c4a25c684c39", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T15:00:38.000Z" + }, + "end": { + "$date": "2022-05-13T15:09:33.000Z" + }, + "events": [ + { + "uuid": "83805c85-9d98-424f-8756-dbb2cbaa5a8a", + "start": { + "$date": "2022-05-13T15:00:38.000Z" + }, + "end": { + "$date": "2022-05-13T15:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9b53ba18-66b8-448c-b243-a952d9938815", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T15:12:28.000Z" + }, + "end": { + "$date": "2022-05-13T15:46:35.000Z" + }, + "events": [ + { + "uuid": "43301524-1857-4b96-83a0-0565e0cd6591", + "start": { + "$date": "2022-05-13T15:12:28.000Z" + }, + "end": { + "$date": "2022-05-13T15:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fc3fb96a-31ce-4025-a891-ff1e6de7fb18", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T15:56:46.000Z" + }, + "end": { + "$date": "2022-05-13T16:25:23.000Z" + }, + "events": [ + { + "uuid": "9cbf8e3a-71c6-454e-b6f4-113017fb21df", + "start": { + "$date": "2022-05-13T15:56:46.000Z" + }, + "end": { + "$date": "2022-05-13T16:25:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "b19b5d8d-a7fc-4110-a2ab-62bd0332dd98", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T16:25:53.000Z" + }, + "end": { + "$date": "2022-05-13T16:29:08.000Z" + }, + "events": [ + { + "uuid": "8d0a813f-2755-499c-bc14-941de330ab2e", + "start": { + "$date": "2022-05-13T16:25:53.000Z" + }, + "end": { + "$date": "2022-05-13T16:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "f1e053a9-7087-466d-ad8b-550fbcc505cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T16:41:35.000Z" + }, + "end": { + "$date": "2022-05-13T17:50:09.000Z" + }, + "events": [ + { + "uuid": "627d29e4-abe3-4ba6-b774-f19f2dbe9027", + "start": { + "$date": "2022-05-13T16:41:35.000Z" + }, + "end": { + "$date": "2022-05-13T17:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fcc9d647-4c6b-4bd9-89f6-d8a1464ca89a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T17:50:14.000Z" + }, + "end": { + "$date": "2022-05-13T18:11:56.000Z" + }, + "events": [ + { + "uuid": "4759c5e6-9ce0-47a7-b273-28c70e708c83", + "start": { + "$date": "2022-05-13T17:50:14.000Z" + }, + "end": { + "$date": "2022-05-13T18:11:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "0eaaf7ec-7cfd-4594-94d1-5b552236c996", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-13T18:12:31.000Z" + }, + "end": { + "$date": "2022-05-13T18:17:42.000Z" + }, + "events": [ + { + "uuid": "74bf130a-a7ba-453a-b99a-1c6599870252", + "start": { + "$date": "2022-05-13T18:12:31.000Z" + }, + "end": { + "$date": "2022-05-13T18:17:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e0126ff-bb1d-4967-9c6c-b55d416eabb7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-13T21:18:04.000Z" + }, + "end": { + "$date": "2022-05-13T22:02:03.000Z" + }, + "events": [ + { + "uuid": "48212989-f187-4279-86ba-b2b6a544996d", + "start": { + "$date": "2022-05-13T21:18:04.000Z" + }, + "end": { + "$date": "2022-05-13T22:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "720ff3ec-9648-4807-bda4-9b7dbdfe4861", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-13T22:12:36.000Z" + }, + "end": { + "$date": "2022-05-13T22:39:01.000Z" + }, + "events": [ + { + "uuid": "82503ffb-054e-4fb2-b7c2-2f54247f95f1", + "start": { + "$date": "2022-05-13T22:12:36.000Z" + }, + "end": { + "$date": "2022-05-13T22:39:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "1791185b-24b9-4f34-977d-03d0c105f1d3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-13T22:18:37.000Z" + }, + "end": { + "$date": "2022-05-14T00:32:48.000Z" + }, + "events": [ + { + "uuid": "d6de435c-1f28-45a1-b84b-1318c1a3dd0e", + "start": { + "$date": "2022-05-13T22:18:37.000Z" + }, + "end": { + "$date": "2022-05-14T00:32:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "57fcecbc-fc15-4b43-8c1f-eeb0558aa053", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-14T00:10:59.000Z" + }, + "end": { + "$date": "2022-05-14T03:18:24.000Z" + }, + "events": [ + { + "uuid": "60d4848b-33be-4f7b-94ad-940908b8ee31", + "start": { + "$date": "2022-05-14T00:10:59.000Z" + }, + "end": { + "$date": "2022-05-14T03:18:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "20780538-ae81-4488-a974-3119f3f7f17d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-14T01:04:19.000Z" + }, + "end": { + "$date": "2022-05-14T01:22:15.000Z" + }, + "events": [ + { + "uuid": "5db3611f-a194-4a95-b49a-8dbce0f6aecf", + "start": { + "$date": "2022-05-14T01:04:19.000Z" + }, + "end": { + "$date": "2022-05-14T01:22:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "78f62c01-656e-45f0-94d6-e771cc973194", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-14T02:22:37.000Z" + }, + "end": { + "$date": "2022-05-14T02:47:53.000Z" + }, + "events": [ + { + "uuid": "471207a1-2a4d-4c48-abdb-ddbb7eb066ae", + "start": { + "$date": "2022-05-14T02:22:37.000Z" + }, + "end": { + "$date": "2022-05-14T02:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6c5a2bb1-ab1f-496d-8878-68a2cfe9d9dd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-14T02:57:30.000Z" + }, + "end": { + "$date": "2022-05-14T04:04:02.000Z" + }, + "events": [ + { + "uuid": "f744286d-66c2-40c2-a6c7-1ea0f9097631", + "start": { + "$date": "2022-05-14T02:57:30.000Z" + }, + "end": { + "$date": "2022-05-14T04:04:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "c276bdc8-a3b4-482a-82b0-16c1e1c364b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-14T02:58:57.000Z" + }, + "end": { + "$date": "2022-05-14T06:22:09.000Z" + }, + "events": [ + { + "uuid": "5f05ebff-8369-4a26-8f72-095ce3112c6f", + "start": { + "$date": "2022-05-14T02:58:57.000Z" + }, + "end": { + "$date": "2022-05-14T06:22:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b739a999-b622-4d5e-b15d-20e1aefcf1d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-14T03:29:19.000Z" + }, + "end": { + "$date": "2022-05-14T03:49:30.000Z" + }, + "events": [ + { + "uuid": "b72bc552-5873-42a9-8b79-4ad4efa54f7f", + "start": { + "$date": "2022-05-14T03:29:19.000Z" + }, + "end": { + "$date": "2022-05-14T03:49:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c56c79b3-1b3e-4baa-9480-a2381f9d2721", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-14T03:30:34.000Z" + }, + "end": { + "$date": "2022-05-14T05:40:39.000Z" + }, + "events": [ + { + "uuid": "06e75e41-9147-410a-8615-1bfd113b6ed5", + "start": { + "$date": "2022-05-14T03:30:34.000Z" + }, + "end": { + "$date": "2022-05-14T05:40:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c5f1ee95-8198-4b75-ad10-155f5183ffcc", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-14T03:31:47.000Z" + }, + "end": { + "$date": "2022-05-14T05:13:26.000Z" + }, + "events": [ + { + "uuid": "c8b43e90-e969-4738-ace8-0e8e6f6c9710", + "start": { + "$date": "2022-05-14T03:31:47.000Z" + }, + "end": { + "$date": "2022-05-14T05:13:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a90e60ef-88cf-42e2-8f7b-df6c526d71ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-05-14T03:31:41.000Z" + }, + "end": { + "$date": "2022-05-14T04:32:53.000Z" + }, + "events": [ + { + "uuid": "2d569953-b3a2-463b-9685-15630e2c6dae", + "start": { + "$date": "2022-05-14T03:31:41.000Z" + }, + "end": { + "$date": "2022-05-14T04:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8a27192b-10a3-4a27-a32b-35c5afd39edb", + "uuid": "9014e564-5695-4092-b538-ddc736d45860", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-14T03:44:48.000Z" + }, + "end": { + "$date": "2022-05-14T05:48:04.000Z" + }, + "events": [ + { + "uuid": "3f7219f5-5d6f-462a-8a0a-dae87d4fb1c8", + "start": { + "$date": "2022-05-14T03:44:48.000Z" + }, + "end": { + "$date": "2022-05-14T05:48:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", + "uuid": "d1458d34-1dc9-4887-868a-2469cdddfaa0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-14T03:59:50.000Z" + }, + "end": { + "$date": "2022-05-14T04:49:39.000Z" + }, + "events": [ + { + "uuid": "8e2d2e4f-42dd-4d94-aa28-da0c41ba7a2e", + "start": { + "$date": "2022-05-14T03:59:50.000Z" + }, + "end": { + "$date": "2022-05-14T04:49:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "61663f50-81e2-45ac-8ba7-089e206cd148", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-14T05:01:00.000Z" + }, + "end": { + "$date": "2022-05-14T06:39:32.000Z" + }, + "events": [ + { + "uuid": "5af362d0-4cda-4493-8117-f042b27e3fcc", + "start": { + "$date": "2022-05-14T05:01:00.000Z" + }, + "end": { + "$date": "2022-05-14T06:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1515b8c2-ed76-4da1-99d1-d10d3c728265", + "uuid": "8f6e55d6-b21f-4cd6-94a8-0de8e83bf5b1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-14T05:16:56.000Z" + }, + "end": { + "$date": "2022-05-14T05:40:11.000Z" + }, + "events": [ + { + "uuid": "c02275ce-da25-4cb5-ab26-e3471c2d13e3", + "start": { + "$date": "2022-05-14T05:16:56.000Z" + }, + "end": { + "$date": "2022-05-14T05:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "bf00860e-f281-46ca-818a-219e25054a41", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-14T05:31:02.000Z" + }, + "end": { + "$date": "2022-05-14T05:40:47.000Z" + }, + "events": [ + { + "uuid": "f19430e6-8689-4471-bf61-447a001edef6", + "start": { + "$date": "2022-05-14T05:31:02.000Z" + }, + "end": { + "$date": "2022-05-14T05:40:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c6622ae-2861-4b10-b486-2e63f5c19c22", + "uuid": "e9fa3e11-4d10-4396-bf1e-12d167a1f715", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-14T05:48:02.000Z" + }, + "end": { + "$date": "2022-05-14T05:59:42.000Z" + }, + "events": [ + { + "uuid": "76651e1a-0b10-4f2c-83e9-ef24a8afa74d", + "start": { + "$date": "2022-05-14T05:48:02.000Z" + }, + "end": { + "$date": "2022-05-14T05:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1701af3b-7b02-43f6-90b5-d245fa807401", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-14T05:55:48.000Z" + }, + "end": { + "$date": "2022-05-14T08:45:11.000Z" + }, + "events": [ + { + "uuid": "3833f558-5a0d-48dc-bcd8-c36a110c33e4", + "start": { + "$date": "2022-05-14T05:55:48.000Z" + }, + "end": { + "$date": "2022-05-14T08:45:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "9354a150-3645-4c6e-b1c8-3e5fe2010d06", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T06:06:07.000Z" + }, + "end": { + "$date": "2022-05-14T06:40:31.000Z" + }, + "events": [ + { + "uuid": "adc08b95-920a-4fa2-b297-18d5b5ba959e", + "start": { + "$date": "2022-05-14T06:06:07.000Z" + }, + "end": { + "$date": "2022-05-14T06:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "9438a169-7c8a-4767-880f-ed137ff857b7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-14T06:08:36.000Z" + }, + "end": { + "$date": "2022-05-14T06:33:20.000Z" + }, + "events": [ + { + "uuid": "6b6f67ca-8817-4875-8523-e2641c7e9295", + "start": { + "$date": "2022-05-14T06:08:36.000Z" + }, + "end": { + "$date": "2022-05-14T06:33:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a0df844f-432f-4c1a-99f8-77f8347c915c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T14:59:45.000Z" + }, + "end": { + "$date": "2022-05-14T15:00:50.000Z" + }, + "events": [ + { + "uuid": "b99adca1-8ffc-445f-aeaa-b20eebc33431", + "start": { + "$date": "2022-05-14T14:59:45.000Z" + }, + "end": { + "$date": "2022-05-14T15:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4655fa89-125e-45f8-97aa-a9a65090600c", + "uuid": "f9e85d4f-1b71-4066-b4f6-529ff75e2f1e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T15:10:30.000Z" + }, + "end": { + "$date": "2022-05-14T15:12:46.000Z" + }, + "events": [ + { + "uuid": "8909f4f1-dfb4-4d3e-87b9-1bbe9f9cb34a", + "start": { + "$date": "2022-05-14T15:10:30.000Z" + }, + "end": { + "$date": "2022-05-14T15:12:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "b9110692-7e39-48fa-98e0-b81e760f2224", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T15:13:06.000Z" + }, + "end": { + "$date": "2022-05-14T16:08:23.000Z" + }, + "events": [ + { + "uuid": "25d4011a-b449-44e0-901c-9d891d8200d9", + "start": { + "$date": "2022-05-14T15:13:06.000Z" + }, + "end": { + "$date": "2022-05-14T16:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "8937085b-4bf5-4707-a6fe-6d0e80622a80", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-14T16:08:07.000Z" + }, + "end": { + "$date": "2022-05-14T17:55:05.000Z" + }, + "events": [ + { + "uuid": "0a8fa140-11d9-4440-93ee-a3e4bd937c54", + "start": { + "$date": "2022-05-14T16:08:07.000Z" + }, + "end": { + "$date": "2022-05-14T17:55:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "93f7cd4d-66e6-4c31-b592-688fe941f6ce", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T16:31:01.000Z" + }, + "end": { + "$date": "2022-05-14T19:12:22.000Z" + }, + "events": [ + { + "uuid": "f3b5d5c0-72dc-4c36-89d2-2dc202dd33a2", + "start": { + "$date": "2022-05-14T16:31:01.000Z" + }, + "end": { + "$date": "2022-05-14T19:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bec12315-5dea-41c6-8d03-0555cd14721c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T19:30:09.000Z" + }, + "end": { + "$date": "2022-05-14T20:01:25.000Z" + }, + "events": [ + { + "uuid": "d57416dc-c1d9-4671-b38d-6ea4e5294a69", + "start": { + "$date": "2022-05-14T19:30:09.000Z" + }, + "end": { + "$date": "2022-05-14T20:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "4752669a-74f1-49c3-aa33-0e70696e0aa2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-14T19:49:08.000Z" + }, + "end": { + "$date": "2022-05-14T21:29:02.000Z" + }, + "events": [ + { + "uuid": "40c0bf41-4179-4dab-86c1-39011fa2bb7b", + "start": { + "$date": "2022-05-14T19:49:08.000Z" + }, + "end": { + "$date": "2022-05-14T21:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "f0542d87-f75c-4c53-9c7b-078902a43a55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T20:05:55.000Z" + }, + "end": { + "$date": "2022-05-14T20:46:39.000Z" + }, + "events": [ + { + "uuid": "2373ac9c-7bdf-4355-928c-280de15f0903", + "start": { + "$date": "2022-05-14T20:05:55.000Z" + }, + "end": { + "$date": "2022-05-14T20:22:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c5e43a79-e412-4661-9b77-00fbdff6245a", + "start": { + "$date": "2022-05-14T20:22:55.000Z" + }, + "end": { + "$date": "2022-05-14T20:27:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "735f38d0-fa3c-4b1d-a07c-b7636e6238fc", + "start": { + "$date": "2022-05-14T20:27:55.000Z" + }, + "end": { + "$date": "2022-05-14T20:46:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "4b2234e4-7203-468b-876c-ad977e1c3bf4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-14T21:38:39.000Z" + }, + "end": { + "$date": "2022-05-14T22:46:51.000Z" + }, + "events": [ + { + "uuid": "e3dd4538-56c7-4e75-b98f-4b4a083bcc9f", + "start": { + "$date": "2022-05-14T21:38:39.000Z" + }, + "end": { + "$date": "2022-05-14T22:46:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "286b1bdf-3605-475e-8904-39659870285d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-14T21:08:41.000Z" + }, + "end": { + "$date": "2022-05-14T23:02:21.000Z" + }, + "events": [ + { + "uuid": "76a6cc32-6d0f-4d94-b936-5a406b074424", + "start": { + "$date": "2022-05-14T21:08:41.000Z" + }, + "end": { + "$date": "2022-05-14T23:02:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "1fb1c5f5-ca3d-4ca3-86c4-4833b514deb2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-14T23:23:57.000Z" + }, + "end": { + "$date": "2022-05-15T02:01:07.000Z" + }, + "events": [ + { + "uuid": "82a0a192-7cf3-4659-8746-bde413f2b9b9", + "start": { + "$date": "2022-05-14T23:23:57.000Z" + }, + "end": { + "$date": "2022-05-15T02:01:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bedba623-817e-4f05-b42b-1d61112d80cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-15T01:33:53.000Z" + }, + "end": { + "$date": "2022-05-15T01:35:08.000Z" + }, + "events": [ + { + "uuid": "56cc84e5-1c74-408a-a959-66d706e8e2d5", + "start": { + "$date": "2022-05-15T01:33:53.000Z" + }, + "end": { + "$date": "2022-05-15T01:35:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b5fabd68-d08b-4a86-931b-36193cb09b62", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-15T01:35:34.000Z" + }, + "end": { + "$date": "2022-05-15T01:37:43.000Z" + }, + "events": [ + { + "uuid": "30b2f9e0-df47-4409-b891-e8a281d62507", + "start": { + "$date": "2022-05-15T01:35:34.000Z" + }, + "end": { + "$date": "2022-05-15T01:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "fe33211f-ba3b-4e8b-b1b9-3636f214747f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-15T01:56:05.000Z" + }, + "end": { + "$date": "2022-05-15T02:03:35.000Z" + }, + "events": [ + { + "uuid": "dcfdb46d-e0ea-4498-aebf-be933a89b961", + "start": { + "$date": "2022-05-15T01:56:05.000Z" + }, + "end": { + "$date": "2022-05-15T02:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "e4781c57-b162-46d2-bb03-8d8a7a670fca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-15T02:15:45.000Z" + }, + "end": { + "$date": "2022-05-15T03:28:15.000Z" + }, + "events": [ + { + "uuid": "a2b6b869-1387-4fa2-bae7-a019871c2d57", + "start": { + "$date": "2022-05-15T02:15:45.000Z" + }, + "end": { + "$date": "2022-05-15T03:28:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "db00d05e-bd6c-4b19-82a3-90f2b1fe2c5a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-15T02:52:37.000Z" + }, + "end": { + "$date": "2022-05-15T03:29:22.000Z" + }, + "events": [ + { + "uuid": "ac299a96-867e-4e8c-b36d-31311c76f01c", + "start": { + "$date": "2022-05-15T02:52:37.000Z" + }, + "end": { + "$date": "2022-05-15T03:29:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "f9e0bc4f-6447-451e-b8d4-849e3d374fb6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-15T03:43:31.000Z" + }, + "end": { + "$date": "2022-05-15T05:24:42.000Z" + }, + "events": [ + { + "uuid": "44cad582-05f4-4914-998c-54237598ce1a", + "start": { + "$date": "2022-05-15T03:43:31.000Z" + }, + "end": { + "$date": "2022-05-15T05:24:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fb57d78a-3976-4639-a32c-fd40aaa736e4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-15T04:03:07.000Z" + }, + "end": { + "$date": "2022-05-15T04:05:01.000Z" + }, + "events": [ + { + "uuid": "145b0767-4a45-4a36-89dd-aacf5d914712", + "start": { + "$date": "2022-05-15T04:03:07.000Z" + }, + "end": { + "$date": "2022-05-15T04:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "de4bcbbc-2544-40e0-8afe-ba48070dc436", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-15T04:05:22.000Z" + }, + "end": { + "$date": "2022-05-15T06:56:58.000Z" + }, + "events": [ + { + "uuid": "364d8ea4-4c34-4892-8c1d-1a258b15f737", + "start": { + "$date": "2022-05-15T04:05:22.000Z" + }, + "end": { + "$date": "2022-05-15T06:56:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3eae377b-ddc0-49ae-91dd-4f871979567b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-15T04:14:41.000Z" + }, + "end": { + "$date": "2022-05-15T07:02:04.000Z" + }, + "events": [ + { + "uuid": "ed00879f-ef5f-4264-960a-8718f40ea26d", + "start": { + "$date": "2022-05-15T04:14:41.000Z" + }, + "end": { + "$date": "2022-05-15T07:02:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "043c02aa-bb44-408f-bb23-42e83f37533b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-15T04:16:22.000Z" + }, + "end": { + "$date": "2022-05-15T09:40:31.000Z" + }, + "events": [ + { + "uuid": "b86a4e27-c26d-4ce1-8950-ce50896f8eee", + "start": { + "$date": "2022-05-15T04:16:22.000Z" + }, + "end": { + "$date": "2022-05-15T09:40:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a79f9042-29e5-47b0-b210-b0f737d9698f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-15T05:25:42.000Z" + }, + "end": { + "$date": "2022-05-15T09:42:29.000Z" + }, + "events": [ + { + "uuid": "78c9215c-8891-4a88-bffb-2fa4cf244756", + "start": { + "$date": "2022-05-15T05:25:42.000Z" + }, + "end": { + "$date": "2022-05-15T09:42:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c321b2e0-7c9b-4f95-867a-b8a530ab615b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-15T05:26:17.000Z" + }, + "end": { + "$date": "2022-05-15T08:18:56.000Z" + }, + "events": [ + { + "uuid": "ed37832e-edae-4048-bec7-61624b10af96", + "start": { + "$date": "2022-05-15T05:26:17.000Z" + }, + "end": { + "$date": "2022-05-15T08:18:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a04d35a4-cc0a-4346-a0f3-2a484885b4f7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-15T06:00:13.000Z" + }, + "end": { + "$date": "2022-05-15T06:51:58.000Z" + }, + "events": [ + { + "uuid": "e5895367-5251-4a19-98ee-21e8057d6806", + "start": { + "$date": "2022-05-15T06:00:13.000Z" + }, + "end": { + "$date": "2022-05-15T06:51:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "8857afdc-8ed1-4890-bb0b-15a45ec8b7cc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-15T06:28:40.000Z" + }, + "end": { + "$date": "2022-05-15T07:32:00.000Z" + }, + "events": [ + { + "uuid": "349f4e8e-0a60-4252-a777-eeaa2eea278b", + "start": { + "$date": "2022-05-15T06:28:40.000Z" + }, + "end": { + "$date": "2022-05-15T07:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "e5ad244c-c117-4d76-a53a-c2550c314deb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-15T12:04:14.000Z" + }, + "end": { + "$date": "2022-05-15T14:17:41.000Z" + }, + "events": [ + { + "uuid": "5808a8de-e671-407b-8ab2-aa0c59abe5e2", + "start": { + "$date": "2022-05-15T12:04:14.000Z" + }, + "end": { + "$date": "2022-05-15T14:17:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "15bb5edc-9c50-4624-9ab6-590b9890f97c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-15T13:58:38.000Z" + }, + "end": { + "$date": "2022-05-15T14:03:13.000Z" + }, + "events": [ + { + "uuid": "593a1ec4-97e5-4115-a995-8ef64232a20f", + "start": { + "$date": "2022-05-15T13:58:38.000Z" + }, + "end": { + "$date": "2022-05-15T14:03:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "d7775805-ad88-4b05-bfb7-97d773286cea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-15T14:03:38.000Z" + }, + "end": { + "$date": "2022-05-15T14:08:54.000Z" + }, + "events": [ + { + "uuid": "d979372c-4f1b-4646-a5fb-d429192b0ed5", + "start": { + "$date": "2022-05-15T14:03:38.000Z" + }, + "end": { + "$date": "2022-05-15T14:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "59f5797a-e6f8-4e1b-bcec-cd1e3943dc9b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-15T14:05:51.000Z" + }, + "end": { + "$date": "2022-05-15T15:32:25.000Z" + }, + "events": [ + { + "uuid": "c2143ea9-e452-46f8-9b44-a3a92212c74b", + "start": { + "$date": "2022-05-15T14:05:51.000Z" + }, + "end": { + "$date": "2022-05-15T15:32:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "137994c2-7f34-4caf-8d60-ac07cb980d9d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-15T14:09:29.000Z" + }, + "end": { + "$date": "2022-05-15T15:32:06.000Z" + }, + "events": [ + { + "uuid": "919a38c9-d9a8-4038-935b-610e37307211", + "start": { + "$date": "2022-05-15T14:09:29.000Z" + }, + "end": { + "$date": "2022-05-15T15:32:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2075383b-cc34-4494-ba6d-d01568fb865a", + "uuid": "232ef688-0739-48e9-8ed5-99063e8aa24f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-15T15:33:40.000Z" + }, + "end": { + "$date": "2022-05-15T16:08:55.000Z" + }, + "events": [ + { + "uuid": "f45f47a1-4063-4591-8399-129df446595e", + "start": { + "$date": "2022-05-15T15:33:40.000Z" + }, + "end": { + "$date": "2022-05-15T16:08:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "29e847ed-f965-4533-be56-5d7e6968b234", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-15T15:37:47.000Z" + }, + "end": { + "$date": "2022-05-15T17:28:01.000Z" + }, + "events": [ + { + "uuid": "4ee3d3bf-7410-4b12-9b61-e093753b13f4", + "start": { + "$date": "2022-05-15T15:37:47.000Z" + }, + "end": { + "$date": "2022-05-15T17:28:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a897345f-0868-4bff-a051-4e3c7aa7676f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-15T18:19:54.000Z" + }, + "end": { + "$date": "2022-05-15T19:12:01.000Z" + }, + "events": [ + { + "uuid": "d397bfaf-bcce-4d3f-bb6e-98b7afcb0741", + "start": { + "$date": "2022-05-15T18:19:54.000Z" + }, + "end": { + "$date": "2022-05-15T19:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "18a171e2-5b49-4e16-8e0c-e458cf625f09", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-15T18:30:55.000Z" + }, + "end": { + "$date": "2022-05-15T19:17:26.000Z" + }, + "events": [ + { + "uuid": "6d22fcf9-9e53-4de7-8c68-92cb5d34dc19", + "start": { + "$date": "2022-05-15T18:30:55.000Z" + }, + "end": { + "$date": "2022-05-15T19:17:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "a2e1611b-ce89-4be7-b306-216f85dcd66b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-15T18:53:39.000Z" + }, + "end": { + "$date": "2022-05-15T23:13:51.000Z" + }, + "events": [ + { + "uuid": "e1bd42c3-3557-443c-91d5-778c48ba201d", + "start": { + "$date": "2022-05-15T18:53:39.000Z" + }, + "end": { + "$date": "2022-05-15T23:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a22abc1-c1a9-46a2-974b-090fe5960c6c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-15T23:20:39.000Z" + }, + "end": { + "$date": "2022-05-16T02:19:01.000Z" + }, + "events": [ + { + "uuid": "1b2ae120-59e6-4e71-a84a-44d1b4ae5dfd", + "start": { + "$date": "2022-05-15T23:20:39.000Z" + }, + "end": { + "$date": "2022-05-16T02:19:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4bceab8d-c99b-42da-a400-2938ae2c47a0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-15T23:25:34.000Z" + }, + "end": { + "$date": "2022-05-16T02:19:08.000Z" + }, + "events": [ + { + "uuid": "3845364d-ebae-4250-ac4c-c1c640032817", + "start": { + "$date": "2022-05-15T23:25:34.000Z" + }, + "end": { + "$date": "2022-05-16T02:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "7c03766e-4575-4b8f-bd39-9d56d6426556", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-16T01:27:45.000Z" + }, + "end": { + "$date": "2022-05-16T03:24:44.000Z" + }, + "events": [ + { + "uuid": "272d104e-742b-4447-9cd1-861aa46d09c5", + "start": { + "$date": "2022-05-16T01:27:45.000Z" + }, + "end": { + "$date": "2022-05-16T03:24:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "f516158e-0eed-4a18-9f6d-52d4e96e4ff8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-16T01:30:54.000Z" + }, + "end": { + "$date": "2022-05-16T01:41:36.000Z" + }, + "events": [ + { + "uuid": "eef55801-404e-4c63-8a66-65a0b4bcd69c", + "start": { + "$date": "2022-05-16T01:30:54.000Z" + }, + "end": { + "$date": "2022-05-16T01:41:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "c888682b-f7f0-4ab0-8660-2637008587b2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-16T01:52:21.000Z" + }, + "end": { + "$date": "2022-05-16T03:24:46.000Z" + }, + "events": [ + { + "uuid": "ed8a748f-f03e-4bdf-9b27-ea44d832f90f", + "start": { + "$date": "2022-05-16T01:52:21.000Z" + }, + "end": { + "$date": "2022-05-16T03:24:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0902d455-ec4b-4128-93e6-0265a6402ac7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-16T02:38:56.000Z" + }, + "end": { + "$date": "2022-05-16T05:16:10.000Z" + }, + "events": [ + { + "uuid": "776a32b8-3de7-4993-b866-e26ce89e445a", + "start": { + "$date": "2022-05-16T02:38:56.000Z" + }, + "end": { + "$date": "2022-05-16T05:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "1b6357bd-3439-43a7-b8a0-b7bf54ca4eb1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-16T02:39:47.000Z" + }, + "end": { + "$date": "2022-05-16T06:56:48.000Z" + }, + "events": [ + { + "uuid": "b3248c07-9a9f-4f24-a84b-3f050f1613bf", + "start": { + "$date": "2022-05-16T02:39:47.000Z" + }, + "end": { + "$date": "2022-05-16T06:56:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "38e42464-dc99-4e7e-b582-8a2f199a575c", + "uuid": "75f6ca15-7544-40c1-9762-7cec0adfe3a8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-16T03:42:48.000Z" + }, + "end": { + "$date": "2022-05-16T04:03:24.000Z" + }, + "events": [ + { + "uuid": "d9dff385-b434-4311-b0a2-22e551b6bfe7", + "start": { + "$date": "2022-05-16T03:42:48.000Z" + }, + "end": { + "$date": "2022-05-16T04:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "0ea48ed1-cd0b-41c2-b90a-073674b7a7c7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-16T03:48:16.000Z" + }, + "end": { + "$date": "2022-05-16T05:51:03.000Z" + }, + "events": [ + { + "uuid": "d7f78c9d-9d09-4106-963c-6ff8af4a13dd", + "start": { + "$date": "2022-05-16T03:48:16.000Z" + }, + "end": { + "$date": "2022-05-16T05:51:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1edf8f39-dc39-4b23-a10f-3a523a658a23", + "uuid": "1c4d6c88-1d61-435d-a4f5-ce94ac254e7a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-16T04:03:34.000Z" + }, + "end": { + "$date": "2022-05-16T04:08:44.000Z" + }, + "events": [ + { + "uuid": "21be8afd-c675-4654-beb5-3726713799c7", + "start": { + "$date": "2022-05-16T04:03:34.000Z" + }, + "end": { + "$date": "2022-05-16T04:08:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "c38a71d6-21ca-4610-b754-5d0dad2acdda", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-16T04:58:42.000Z" + }, + "end": { + "$date": "2022-05-16T04:58:52.000Z" + }, + "events": [ + { + "uuid": "51a90ef9-aeaa-4895-a1c7-1e3d9f00b0d9", + "start": { + "$date": "2022-05-16T04:58:42.000Z" + }, + "end": { + "$date": "2022-05-16T04:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "8ac8d9b9-7ef5-4a4c-aee4-9892c3b890db", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-16T04:59:37.000Z" + }, + "end": { + "$date": "2022-05-16T05:35:53.000Z" + }, + "events": [ + { + "uuid": "e9142e8f-a00a-4db9-a326-5c8e6b162860", + "start": { + "$date": "2022-05-16T04:59:37.000Z" + }, + "end": { + "$date": "2022-05-16T05:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dcd24f65-8e0f-4e2a-9e8d-4143dfb4af6a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-16T06:51:45.000Z" + }, + "end": { + "$date": "2022-05-16T07:28:23.000Z" + }, + "events": [ + { + "uuid": "d8f86cdf-37a3-496f-a254-de47eb33c628", + "start": { + "$date": "2022-05-16T06:51:45.000Z" + }, + "end": { + "$date": "2022-05-16T07:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ce22349c-47a1-4ddd-b564-c6b5bde668a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-16T06:53:48.000Z" + }, + "end": { + "$date": "2022-05-16T08:04:53.000Z" + }, + "events": [ + { + "uuid": "3628c88f-8525-4887-b32c-159568ac8cfb", + "start": { + "$date": "2022-05-16T06:53:48.000Z" + }, + "end": { + "$date": "2022-05-16T08:04:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "997b39be-06d1-4701-9227-4b77b9927721", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-16T06:54:04.000Z" + }, + "end": { + "$date": "2022-05-16T08:07:37.000Z" + }, + "events": [ + { + "uuid": "82b4ee0a-b929-41b0-bfcb-1aa52f0c6167", + "start": { + "$date": "2022-05-16T06:54:04.000Z" + }, + "end": { + "$date": "2022-05-16T08:07:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "373d0482-8399-4fae-8b72-7f37b299daf6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-16T14:59:10.000Z" + }, + "end": { + "$date": "2022-05-16T16:44:47.000Z" + }, + "events": [ + { + "uuid": "a5cda113-0b60-498b-a93a-a02bc5832fc0", + "start": { + "$date": "2022-05-16T14:59:10.000Z" + }, + "end": { + "$date": "2022-05-16T16:44:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "b042ad7a-06cf-4aec-8a94-dbea898f4992", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-16T16:23:15.000Z" + }, + "end": { + "$date": "2022-05-16T16:26:15.000Z" + }, + "events": [ + { + "uuid": "5d6ba688-33a7-4ed0-891d-0e9c55c7baf5", + "start": { + "$date": "2022-05-16T16:23:15.000Z" + }, + "end": { + "$date": "2022-05-16T16:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "48b5d73d-3ae3-4350-83b4-8e25fae4ca1d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-16T16:37:01.000Z" + }, + "end": { + "$date": "2022-05-16T16:37:06.000Z" + }, + "events": [ + { + "uuid": "03e56267-6ff4-4c98-aec4-1855dc14348d", + "start": { + "$date": "2022-05-16T16:37:01.000Z" + }, + "end": { + "$date": "2022-05-16T16:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "b3792c78-a4dd-4e8c-9fe8-4734e6309e97", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-16T16:37:41.000Z" + }, + "end": { + "$date": "2022-05-16T20:47:52.000Z" + }, + "events": [ + { + "uuid": "973f7404-02d9-4a33-a885-2e430827c3d4", + "start": { + "$date": "2022-05-16T16:37:41.000Z" + }, + "end": { + "$date": "2022-05-16T20:47:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "22d448da-6347-459d-bb6b-e61f21f025cb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-16T16:44:57.000Z" + }, + "end": { + "$date": "2022-05-16T17:35:09.000Z" + }, + "events": [ + { + "uuid": "66e42d5e-1bd8-4498-9519-c16436d1ec67", + "start": { + "$date": "2022-05-16T16:44:57.000Z" + }, + "end": { + "$date": "2022-05-16T17:35:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "906e11be-807f-4043-86d2-5d5190f2b808", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-16T17:38:49.000Z" + }, + "end": { + "$date": "2022-05-16T20:08:37.000Z" + }, + "events": [ + { + "uuid": "335de239-42dc-4182-8fe0-b60525f2417e", + "start": { + "$date": "2022-05-16T17:38:49.000Z" + }, + "end": { + "$date": "2022-05-16T19:13:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a1c4328f-7162-4dc0-aedf-fd6c903c5180", + "start": { + "$date": "2022-05-16T19:13:49.000Z" + }, + "end": { + "$date": "2022-05-16T19:18:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "33f07104-5c37-47f8-a16c-bc3ce02a9a9b", + "start": { + "$date": "2022-05-16T19:18:49.000Z" + }, + "end": { + "$date": "2022-05-16T19:28:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddb38f9a-4e3a-4fed-b990-a9d6bf9c7623", + "start": { + "$date": "2022-05-16T19:28:49.000Z" + }, + "end": { + "$date": "2022-05-16T19:39:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09a4aa0e-1b26-4520-aacf-0af7e629e8b1", + "start": { + "$date": "2022-05-16T19:39:49.000Z" + }, + "end": { + "$date": "2022-05-16T20:08:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "d351e714-09fa-4bcd-9c97-7e196c106315", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-16T18:37:18.000Z" + }, + "end": { + "$date": "2022-05-16T18:55:55.000Z" + }, + "events": [ + { + "uuid": "416e7262-65e0-4602-9152-9ef09a0e9b4e", + "start": { + "$date": "2022-05-16T18:37:18.000Z" + }, + "end": { + "$date": "2022-05-16T18:55:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "78d0a3eb-4382-450f-a2a4-f16aad021f4e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-16T23:21:11.000Z" + }, + "end": { + "$date": "2022-05-16T23:29:21.000Z" + }, + "events": [ + { + "uuid": "a155e1a4-1670-4609-a9b0-003b05efc641", + "start": { + "$date": "2022-05-16T23:21:11.000Z" + }, + "end": { + "$date": "2022-05-16T23:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "8fb680d8-aba8-4f4a-ac2a-2703e271950c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-16T23:29:01.000Z" + }, + "end": { + "$date": "2022-05-17T03:02:47.000Z" + }, + "events": [ + { + "uuid": "c353ecc8-a767-411e-af26-b772c492cea9", + "start": { + "$date": "2022-05-16T23:29:01.000Z" + }, + "end": { + "$date": "2022-05-17T03:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "b1bfd8fe-7ea3-469f-9bb8-462898654c52", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-16T23:46:09.000Z" + }, + "end": { + "$date": "2022-05-17T02:23:23.000Z" + }, + "events": [ + { + "uuid": "dee858a2-ca8a-4f63-a742-35c4511a5e7b", + "start": { + "$date": "2022-05-16T23:46:09.000Z" + }, + "end": { + "$date": "2022-05-17T02:23:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1d3ab6a7-323f-4f8f-a84b-f50180060b26", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T00:24:50.000Z" + }, + "end": { + "$date": "2022-05-17T00:59:00.000Z" + }, + "events": [ + { + "uuid": "77cb833e-bb93-40c5-99d4-f4d4039d2fd2", + "start": { + "$date": "2022-05-17T00:24:50.000Z" + }, + "end": { + "$date": "2022-05-17T00:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c5617465-a95b-471b-917b-055db49faaf9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T01:27:33.000Z" + }, + "end": { + "$date": "2022-05-17T01:35:32.000Z" + }, + "events": [ + { + "uuid": "12ed9357-34a0-4c99-8242-64cdcbfda263", + "start": { + "$date": "2022-05-17T01:27:33.000Z" + }, + "end": { + "$date": "2022-05-17T01:35:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "da3c9ffc-5d91-43ca-9d12-5bb94dc1abb6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T01:29:20.000Z" + }, + "end": { + "$date": "2022-05-17T02:30:25.000Z" + }, + "events": [ + { + "uuid": "a1105acf-dd6f-45a6-8751-f9dc7d303154", + "start": { + "$date": "2022-05-17T01:29:20.000Z" + }, + "end": { + "$date": "2022-05-17T02:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "05690f3c-b020-4494-b1d7-0d1cf5b0cae4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T01:35:39.000Z" + }, + "end": { + "$date": "2022-05-17T01:41:42.000Z" + }, + "events": [ + { + "uuid": "1c0b6841-57c7-45b5-a693-c3cc2d0baa3f", + "start": { + "$date": "2022-05-17T01:35:39.000Z" + }, + "end": { + "$date": "2022-05-17T01:41:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "aa5e26da-e402-44ec-b7af-a1aa975402ed", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T01:42:49.000Z" + }, + "end": { + "$date": "2022-05-17T01:44:34.000Z" + }, + "events": [ + { + "uuid": "0851fa70-a7e4-4329-8121-72987074bfb7", + "start": { + "$date": "2022-05-17T01:42:49.000Z" + }, + "end": { + "$date": "2022-05-17T01:44:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "58c2a410-5778-4a4c-9ffa-c5250f6b4fe9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T01:44:49.000Z" + }, + "end": { + "$date": "2022-05-17T03:04:14.000Z" + }, + "events": [ + { + "uuid": "89cd31ee-cb94-42a0-a9d1-d9dfd26f4ef6", + "start": { + "$date": "2022-05-17T01:44:49.000Z" + }, + "end": { + "$date": "2022-05-17T03:04:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b2f09d9c-cef4-4dab-945e-a50d9f6d0471", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-17T02:24:09.000Z" + }, + "end": { + "$date": "2022-05-17T05:21:39.000Z" + }, + "events": [ + { + "uuid": "a4b35942-6bf2-412c-b81c-f3d6b6fcbdde", + "start": { + "$date": "2022-05-17T02:24:09.000Z" + }, + "end": { + "$date": "2022-05-17T05:06:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d5bd394f-caf5-4115-b16f-f5a29ab3c591", + "start": { + "$date": "2022-05-17T05:06:09.000Z" + }, + "end": { + "$date": "2022-05-17T05:19:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "16af11c1-3914-4c7a-8338-bc21161e63cb", + "start": { + "$date": "2022-05-17T05:19:09.000Z" + }, + "end": { + "$date": "2022-05-17T05:21:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "ee2839dd-e475-47f3-ab78-7a9e5e87292e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T03:07:57.000Z" + }, + "end": { + "$date": "2022-05-17T03:20:33.000Z" + }, + "events": [ + { + "uuid": "bef5d74e-7c86-4ae4-8ce4-b5d5c4aa0ff1", + "start": { + "$date": "2022-05-17T03:07:57.000Z" + }, + "end": { + "$date": "2022-05-17T03:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ab0c3941-3d03-4b77-ad4c-93b6bc5f9926", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-17T03:11:48.000Z" + }, + "end": { + "$date": "2022-05-17T07:34:07.000Z" + }, + "events": [ + { + "uuid": "2710bc78-93c5-49e4-a519-31e51b47cc00", + "start": { + "$date": "2022-05-17T03:11:48.000Z" + }, + "end": { + "$date": "2022-05-17T07:34:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "61f6ca63-39b0-405f-a040-7b7478ae95f7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-17T03:17:32.000Z" + }, + "end": { + "$date": "2022-05-17T07:34:14.000Z" + }, + "events": [ + { + "uuid": "8062c1d0-b09b-481b-834c-9cde217f6eb5", + "start": { + "$date": "2022-05-17T03:17:32.000Z" + }, + "end": { + "$date": "2022-05-17T07:34:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "161a243b-1105-49c7-87f0-699cf10dbc5d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T03:28:39.000Z" + }, + "end": { + "$date": "2022-05-17T04:12:54.000Z" + }, + "events": [ + { + "uuid": "9a6e9390-8bd5-4a86-845a-5169d177733e", + "start": { + "$date": "2022-05-17T03:28:39.000Z" + }, + "end": { + "$date": "2022-05-17T04:12:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "6fd92d44-883b-4540-b4f7-dbdf76bcef0a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T03:30:20.000Z" + }, + "end": { + "$date": "2022-05-17T04:09:46.000Z" + }, + "events": [ + { + "uuid": "0b95a9ea-813b-41e1-8c58-761cf13733b1", + "start": { + "$date": "2022-05-17T03:30:20.000Z" + }, + "end": { + "$date": "2022-05-17T04:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", + "uuid": "9ef84caa-13e0-4813-b981-047529dff457", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T04:10:51.000Z" + }, + "end": { + "$date": "2022-05-17T04:14:12.000Z" + }, + "events": [ + { + "uuid": "c6dae9f7-c115-4d58-ad51-4b412fdddc0b", + "start": { + "$date": "2022-05-17T04:10:51.000Z" + }, + "end": { + "$date": "2022-05-17T04:14:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "ccc5eb38-0ece-4352-8d25-c1a2d186eb04", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T04:32:28.000Z" + }, + "end": { + "$date": "2022-05-17T05:32:17.000Z" + }, + "events": [ + { + "uuid": "4eaee12d-e3a0-4e61-ab4e-322ded60ce7c", + "start": { + "$date": "2022-05-17T04:32:28.000Z" + }, + "end": { + "$date": "2022-05-17T05:32:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a1c733c1-3514-436a-8888-3b15bdad1195", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T05:47:34.000Z" + }, + "end": { + "$date": "2022-05-17T06:08:13.000Z" + }, + "events": [ + { + "uuid": "2307f8d6-40b6-43b1-86ce-cd7b0d8d9058", + "start": { + "$date": "2022-05-17T05:47:34.000Z" + }, + "end": { + "$date": "2022-05-17T06:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "7dbf877a-5b6f-46be-9e49-85aad0fa36d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-17T06:22:30.000Z" + }, + "end": { + "$date": "2022-05-17T07:32:28.000Z" + }, + "events": [ + { + "uuid": "a9de85a3-f894-46a3-b61e-762db710c167", + "start": { + "$date": "2022-05-17T06:22:30.000Z" + }, + "end": { + "$date": "2022-05-17T07:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ea32c52d-ea0e-4df4-94c2-5b360bb3b813", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T15:22:27.000Z" + }, + "end": { + "$date": "2022-05-17T15:30:27.000Z" + }, + "events": [ + { + "uuid": "9c5b67e6-d47c-4fbd-8bde-d4b51db61d8c", + "start": { + "$date": "2022-05-17T15:22:27.000Z" + }, + "end": { + "$date": "2022-05-17T15:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "eaebee0b-78a1-46bf-9e0e-77ed85b7a677", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T15:40:34.000Z" + }, + "end": { + "$date": "2022-05-17T15:47:49.000Z" + }, + "events": [ + { + "uuid": "4c090ead-6d10-436e-82ea-7f435d27cd1e", + "start": { + "$date": "2022-05-17T15:40:34.000Z" + }, + "end": { + "$date": "2022-05-17T15:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", + "uuid": "73e27cce-8ef0-4696-be9e-d25e34d131f4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T15:53:15.000Z" + }, + "end": { + "$date": "2022-05-17T15:55:15.000Z" + }, + "events": [ + { + "uuid": "d17a67b0-8a4b-4e37-a776-8f701dba4de1", + "start": { + "$date": "2022-05-17T15:53:15.000Z" + }, + "end": { + "$date": "2022-05-17T15:55:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "39f84efd-77cc-41ec-a488-5de820632f6b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T15:55:30.000Z" + }, + "end": { + "$date": "2022-05-17T16:36:51.000Z" + }, + "events": [ + { + "uuid": "db8981e6-4588-46ae-8a3a-3f78176c9207", + "start": { + "$date": "2022-05-17T15:55:30.000Z" + }, + "end": { + "$date": "2022-05-17T16:36:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "0d9a3c6c-1299-4658-bf4a-f44a41d22c1d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T17:46:34.000Z" + }, + "end": { + "$date": "2022-05-17T17:51:10.000Z" + }, + "events": [ + { + "uuid": "809e040d-ba22-4776-9578-ad7da20acaa0", + "start": { + "$date": "2022-05-17T17:46:34.000Z" + }, + "end": { + "$date": "2022-05-17T17:51:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9fd10a60-3d64-483a-8da7-aefa6a4e3e0d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T17:12:06.000Z" + }, + "end": { + "$date": "2022-05-17T17:15:55.000Z" + }, + "events": [ + { + "uuid": "c7bf4f27-289b-49ec-b58f-f713ee8354f9", + "start": { + "$date": "2022-05-17T17:12:06.000Z" + }, + "end": { + "$date": "2022-05-17T17:15:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "cf443c67-160a-4869-bcb4-117ec07e3f94", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T18:15:57.000Z" + }, + "end": { + "$date": "2022-05-17T18:36:42.000Z" + }, + "events": [ + { + "uuid": "8a3cdf12-3f9f-4d54-8b8d-bb7d13075ac0", + "start": { + "$date": "2022-05-17T18:15:57.000Z" + }, + "end": { + "$date": "2022-05-17T18:36:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "5004dace-7bfe-45d4-8f8b-8c15ada0b8a3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-17T18:40:37.000Z" + }, + "end": { + "$date": "2022-05-17T18:46:38.000Z" + }, + "events": [ + { + "uuid": "d5146059-3435-4d76-9db3-91c4337a312f", + "start": { + "$date": "2022-05-17T18:40:37.000Z" + }, + "end": { + "$date": "2022-05-17T18:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f3e61fe3-a374-443f-9dd3-c1a316145cbd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-17T19:30:20.000Z" + }, + "end": { + "$date": "2022-05-17T19:32:00.000Z" + }, + "events": [ + { + "uuid": "29cff68a-883e-4dcd-a2c8-4448f5c80cbc", + "start": { + "$date": "2022-05-17T19:30:20.000Z" + }, + "end": { + "$date": "2022-05-17T19:32:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc78f18b-4498-446d-ad6f-557f0df19e4c", + "uuid": "008d21cd-8678-4aa3-8ec7-e06edc42bea7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T21:15:14.000Z" + }, + "end": { + "$date": "2022-05-17T21:22:00.000Z" + }, + "events": [ + { + "uuid": "6448abbe-bbc2-45a8-b5a7-6d127fd79988", + "start": { + "$date": "2022-05-17T21:15:14.000Z" + }, + "end": { + "$date": "2022-05-17T21:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "79f9e8a6-05a8-4d3a-9326-4132459f562a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T21:22:10.000Z" + }, + "end": { + "$date": "2022-05-17T21:53:07.000Z" + }, + "events": [ + { + "uuid": "92a11ae9-c249-426c-838a-5894b9b7b520", + "start": { + "$date": "2022-05-17T21:22:10.000Z" + }, + "end": { + "$date": "2022-05-17T21:53:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "9686abe2-2d34-4b59-b680-92489f619439", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T21:53:37.000Z" + }, + "end": { + "$date": "2022-05-17T21:55:42.000Z" + }, + "events": [ + { + "uuid": "19beca67-f047-40f7-9d70-05c748b91abf", + "start": { + "$date": "2022-05-17T21:53:37.000Z" + }, + "end": { + "$date": "2022-05-17T21:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "fa45d209-8f98-4c2c-849b-da78e2ed9ca0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T21:57:17.000Z" + }, + "end": { + "$date": "2022-05-17T22:08:53.000Z" + }, + "events": [ + { + "uuid": "c4f29287-1394-4ed2-bc18-3fde2c09e93c", + "start": { + "$date": "2022-05-17T21:57:17.000Z" + }, + "end": { + "$date": "2022-05-17T22:08:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "067cfc1b-a882-45ac-8e02-0434d71e47d5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-17T22:01:02.000Z" + }, + "end": { + "$date": "2022-05-17T22:08:51.000Z" + }, + "events": [ + { + "uuid": "2a635ed4-8865-4447-9643-156c62ed3237", + "start": { + "$date": "2022-05-17T22:01:02.000Z" + }, + "end": { + "$date": "2022-05-17T22:08:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "7a5b77a9-7f61-4cff-b76b-5d86775a9585", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-17T22:30:45.000Z" + }, + "end": { + "$date": "2022-05-17T22:52:46.000Z" + }, + "events": [ + { + "uuid": "6e82f00b-7ed1-438f-bf08-9853f039c7fa", + "start": { + "$date": "2022-05-17T22:30:45.000Z" + }, + "end": { + "$date": "2022-05-17T22:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "4c02aabc-0356-4b15-936c-68b0876d6265", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-17T22:35:55.000Z" + }, + "end": { + "$date": "2022-05-17T23:20:45.000Z" + }, + "events": [ + { + "uuid": "b6185be8-0174-4a84-bd1c-beefc1a4c6c1", + "start": { + "$date": "2022-05-17T22:35:55.000Z" + }, + "end": { + "$date": "2022-05-17T23:20:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "110b0ea6-f5ff-474a-9a5f-d1cae01889cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-17T23:22:07.000Z" + }, + "end": { + "$date": "2022-05-17T23:32:27.000Z" + }, + "events": [ + { + "uuid": "72cb82ca-23f6-49ba-ae13-36a37738b65f", + "start": { + "$date": "2022-05-17T23:22:07.000Z" + }, + "end": { + "$date": "2022-05-17T23:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "e278eef5-ca58-43c9-92ee-b3ad0e527d24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-17T23:59:50.000Z" + }, + "end": { + "$date": "2022-05-18T00:40:23.000Z" + }, + "events": [ + { + "uuid": "e2028e6a-1f98-42fa-a416-88b8902c4a37", + "start": { + "$date": "2022-05-17T23:59:50.000Z" + }, + "end": { + "$date": "2022-05-18T00:40:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "529f12fa-eebd-45d5-b374-a48ed373ba70", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-18T00:41:00.000Z" + }, + "end": { + "$date": "2022-05-18T02:21:17.000Z" + }, + "events": [ + { + "uuid": "a2264996-8053-4c17-b612-d1411bb05e84", + "start": { + "$date": "2022-05-18T00:41:00.000Z" + }, + "end": { + "$date": "2022-05-18T00:56:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff7406e0-fd31-4f2d-9bf3-115f6d54002f", + "start": { + "$date": "2022-05-18T00:56:00.000Z" + }, + "end": { + "$date": "2022-05-18T00:57:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef2eec22-d2e2-4579-b278-24561a711c00", + "start": { + "$date": "2022-05-18T00:57:00.000Z" + }, + "end": { + "$date": "2022-05-18T02:21:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "0fa861b9-26a4-45e0-99a3-5353b3790e6a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-18T02:00:29.000Z" + }, + "end": { + "$date": "2022-05-18T02:02:49.000Z" + }, + "events": [ + { + "uuid": "d883da47-472e-4495-b3d1-5921eaabec4a", + "start": { + "$date": "2022-05-18T02:00:29.000Z" + }, + "end": { + "$date": "2022-05-18T02:02:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "29cfc2fe-b67d-4bcf-8596-08df8ae13685", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-18T02:03:04.000Z" + }, + "end": { + "$date": "2022-05-18T02:05:29.000Z" + }, + "events": [ + { + "uuid": "5f9e06a4-b8fe-4c14-9d3b-bd7adfe15775", + "start": { + "$date": "2022-05-18T02:03:04.000Z" + }, + "end": { + "$date": "2022-05-18T02:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", + "uuid": "a247694f-cdeb-4958-b4ec-04b7b6a7e13c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-18T02:05:50.000Z" + }, + "end": { + "$date": "2022-05-18T02:06:55.000Z" + }, + "events": [ + { + "uuid": "dc77a77b-b86d-472b-addf-46c8e87b1885", + "start": { + "$date": "2022-05-18T02:05:50.000Z" + }, + "end": { + "$date": "2022-05-18T02:06:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5a5b54d8-67aa-410b-b073-fe2ed4f27e1a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-18T03:10:07.000Z" + }, + "end": { + "$date": "2022-05-18T03:45:15.000Z" + }, + "events": [ + { + "uuid": "e60aa8b8-89f2-4cf1-a6e8-39b011346dd9", + "start": { + "$date": "2022-05-18T03:10:07.000Z" + }, + "end": { + "$date": "2022-05-18T03:45:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "9c99a08b-f815-471c-a942-378c253774fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-18T03:44:13.000Z" + }, + "end": { + "$date": "2022-05-18T05:06:27.000Z" + }, + "events": [ + { + "uuid": "31ad2989-ef3b-4b47-ba54-8f61c20261c3", + "start": { + "$date": "2022-05-18T03:44:13.000Z" + }, + "end": { + "$date": "2022-05-18T05:06:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ad1176c0-2d62-40d5-93b1-353bd674f2cd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-18T03:53:59.000Z" + }, + "end": { + "$date": "2022-05-18T03:56:09.000Z" + }, + "events": [ + { + "uuid": "e76bbaa4-9e0d-4c2c-873e-cdd1767538a9", + "start": { + "$date": "2022-05-18T03:53:59.000Z" + }, + "end": { + "$date": "2022-05-18T03:56:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d93a8e1e-f363-427c-86d0-1f8e98483c09", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-18T04:25:13.000Z" + }, + "end": { + "$date": "2022-05-18T04:39:09.000Z" + }, + "events": [ + { + "uuid": "72b94d47-588b-47f9-b41a-1a48d18bf955", + "start": { + "$date": "2022-05-18T04:25:13.000Z" + }, + "end": { + "$date": "2022-05-18T04:39:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c038590d-ab18-4893-8977-94be81846fc9", + "uuid": "91d0fc8e-af2b-4690-b3ae-6c2d7f00dedb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-18T04:40:04.000Z" + }, + "end": { + "$date": "2022-05-18T05:15:20.000Z" + }, + "events": [ + { + "uuid": "897eec17-323a-4318-b9af-cc659c8bdc92", + "start": { + "$date": "2022-05-18T04:40:04.000Z" + }, + "end": { + "$date": "2022-05-18T05:15:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f8145bb8-b6eb-4ece-972d-f5de82e4869b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-18T06:24:31.000Z" + }, + "end": { + "$date": "2022-05-18T06:26:44.000Z" + }, + "events": [ + { + "uuid": "f6a71487-5a23-4715-b7d0-460cd4053df5", + "start": { + "$date": "2022-05-18T06:24:31.000Z" + }, + "end": { + "$date": "2022-05-18T06:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "917c7d2c-11b9-419c-99b7-769400a23547", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T15:26:03.000Z" + }, + "end": { + "$date": "2022-05-18T15:27:09.000Z" + }, + "events": [ + { + "uuid": "1ef1c59e-3ca4-4e5f-8f01-e1abd6fea8a6", + "start": { + "$date": "2022-05-18T15:26:03.000Z" + }, + "end": { + "$date": "2022-05-18T15:27:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "d7550d12-e276-4753-841e-bee0312d6b7c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T15:27:18.000Z" + }, + "end": { + "$date": "2022-05-18T16:58:00.000Z" + }, + "events": [ + { + "uuid": "95c21064-f69e-45ee-b34d-4e5e44af2182", + "start": { + "$date": "2022-05-18T15:27:18.000Z" + }, + "end": { + "$date": "2022-05-18T16:58:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "6e0069f5-ba09-45a3-bdbd-35717a30da06", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T16:58:10.000Z" + }, + "end": { + "$date": "2022-05-18T17:43:42.000Z" + }, + "events": [ + { + "uuid": "5aa3f80e-e536-4a0a-a7d6-03f8d5fb6ddb", + "start": { + "$date": "2022-05-18T16:58:10.000Z" + }, + "end": { + "$date": "2022-05-18T17:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "5315c7f0-f05b-432c-b277-b8cd92517045", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T17:59:03.000Z" + }, + "end": { + "$date": "2022-05-18T18:00:13.000Z" + }, + "events": [ + { + "uuid": "8c7481c6-1520-4714-9403-413d4d684982", + "start": { + "$date": "2022-05-18T17:59:03.000Z" + }, + "end": { + "$date": "2022-05-18T18:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "3c05bf9b-3a38-42ab-a411-ee0ae0fb0b57", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T18:04:24.000Z" + }, + "end": { + "$date": "2022-05-18T18:06:04.000Z" + }, + "events": [ + { + "uuid": "cf76b14e-0fc3-4724-bdc5-daba0507760e", + "start": { + "$date": "2022-05-18T18:04:24.000Z" + }, + "end": { + "$date": "2022-05-18T18:06:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "6d359a5a-6edf-4e76-9074-e049b43adaaa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T18:06:09.000Z" + }, + "end": { + "$date": "2022-05-18T18:07:29.000Z" + }, + "events": [ + { + "uuid": "3611f2c8-2dc5-44a9-aaec-4b75da2b21a9", + "start": { + "$date": "2022-05-18T18:06:09.000Z" + }, + "end": { + "$date": "2022-05-18T18:07:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "18ae66b3-1314-4bbf-be6b-903e88a36169", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T18:08:29.000Z" + }, + "end": { + "$date": "2022-05-18T18:10:14.000Z" + }, + "events": [ + { + "uuid": "b81e6dd7-54e3-47af-9a99-e06c223ee6ef", + "start": { + "$date": "2022-05-18T18:08:29.000Z" + }, + "end": { + "$date": "2022-05-18T18:10:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "8fc42c33-2450-4f58-832b-499c1aea52ae", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T18:21:11.000Z" + }, + "end": { + "$date": "2022-05-18T18:21:16.000Z" + }, + "events": [ + { + "uuid": "7a23d468-ce6a-4a5a-b651-5ec58ddaf6b2", + "start": { + "$date": "2022-05-18T18:21:11.000Z" + }, + "end": { + "$date": "2022-05-18T18:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "c4758587-4157-4f39-b78d-257058a84ffc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T18:22:11.000Z" + }, + "end": { + "$date": "2022-05-18T18:24:08.000Z" + }, + "events": [ + { + "uuid": "cbcb09f4-4255-4fb0-a806-0dc3fe74f936", + "start": { + "$date": "2022-05-18T18:22:11.000Z" + }, + "end": { + "$date": "2022-05-18T18:24:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "db2cd3fa-8c72-4fab-bc31-226a95415584", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T18:25:07.000Z" + }, + "end": { + "$date": "2022-05-18T18:26:22.000Z" + }, + "events": [ + { + "uuid": "29a141bd-c13f-459e-b6f9-2883de8c2177", + "start": { + "$date": "2022-05-18T18:25:07.000Z" + }, + "end": { + "$date": "2022-05-18T18:26:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "d3de7705-6bfd-4e00-b695-0a4ab9e36548", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-18T19:06:08.000Z" + }, + "end": { + "$date": "2022-05-18T19:06:18.000Z" + }, + "events": [ + { + "uuid": "d5561bd1-6292-48d5-ab4f-b42979455aaf", + "start": { + "$date": "2022-05-18T19:06:08.000Z" + }, + "end": { + "$date": "2022-05-18T19:21:08.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a3ff2cb2-fddc-461e-a8ae-34105bcaa131", + "start": { + "$date": "2022-05-18T19:21:08.000Z" + }, + "end": { + "$date": "2022-05-18T19:24:08.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8001b6a5-e35c-471d-8895-33a122cd7a5c", + "start": { + "$date": "2022-05-18T19:24:08.000Z" + }, + "end": { + "$date": "2022-05-18T19:06:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "277e08a0-abe8-4a59-b289-166acf4c97b8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-18T19:06:14.000Z" + }, + "end": { + "$date": "2022-05-18T20:18:18.000Z" + }, + "events": [ + { + "uuid": "a89c418c-c35a-4e5c-bf16-9686c594263d", + "start": { + "$date": "2022-05-18T19:06:14.000Z" + }, + "end": { + "$date": "2022-05-18T20:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "f11621f8-0a3d-4f17-a004-29a417d38121", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-18T19:30:10.000Z" + }, + "end": { + "$date": "2022-05-18T19:32:20.000Z" + }, + "events": [ + { + "uuid": "af813538-dce7-4672-a79b-b418a582344a", + "start": { + "$date": "2022-05-18T19:30:10.000Z" + }, + "end": { + "$date": "2022-05-18T19:32:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "7066402c-b645-43e0-8634-b2ccf7f460fd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-18T19:33:06.000Z" + }, + "end": { + "$date": "2022-05-18T19:34:55.000Z" + }, + "events": [ + { + "uuid": "0fc590ae-0d4f-43ec-a29b-4f306ea2010b", + "start": { + "$date": "2022-05-18T19:33:06.000Z" + }, + "end": { + "$date": "2022-05-18T19:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", + "uuid": "c05d5329-0b28-433d-a43a-d0dcd904cca1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-18T19:36:16.000Z" + }, + "end": { + "$date": "2022-05-18T19:37:56.000Z" + }, + "events": [ + { + "uuid": "222a3fe8-dc6c-467b-b3b0-7c8af80f1934", + "start": { + "$date": "2022-05-18T19:36:16.000Z" + }, + "end": { + "$date": "2022-05-18T19:37:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "3a130e10-1129-414a-a167-7961db251978", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-18T21:30:21.000Z" + }, + "end": { + "$date": "2022-05-18T22:58:40.000Z" + }, + "events": [ + { + "uuid": "dfe67bb6-1aed-4dc4-af56-4497f4156560", + "start": { + "$date": "2022-05-18T21:30:21.000Z" + }, + "end": { + "$date": "2022-05-18T22:58:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "22b28563-7833-48d9-8fe4-fd392fc81365", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-18T23:32:37.000Z" + }, + "end": { + "$date": "2022-05-18T23:52:43.000Z" + }, + "events": [ + { + "uuid": "c6479e78-0171-47a5-940d-6e357b7e6ed9", + "start": { + "$date": "2022-05-18T23:32:37.000Z" + }, + "end": { + "$date": "2022-05-18T23:52:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2910900f-fb48-4db3-884b-3c77c1da95a3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-19T00:37:50.000Z" + }, + "end": { + "$date": "2022-05-19T03:14:41.000Z" + }, + "events": [ + { + "uuid": "76ba387d-62af-46a6-8d46-038e197ad2a8", + "start": { + "$date": "2022-05-19T00:37:50.000Z" + }, + "end": { + "$date": "2022-05-19T01:56:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "021db5bd-7e4f-4bdb-852d-83a8f374421c", + "start": { + "$date": "2022-05-19T01:56:50.000Z" + }, + "end": { + "$date": "2022-05-19T02:00:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f9e932be-fccc-42ad-a51e-7c52146ed69d", + "start": { + "$date": "2022-05-19T02:00:50.000Z" + }, + "end": { + "$date": "2022-05-19T03:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bf04a4f4-c54c-4408-8dcc-e1abe546a40e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-19T03:18:16.000Z" + }, + "end": { + "$date": "2022-05-19T05:18:51.000Z" + }, + "events": [ + { + "uuid": "1bcb5128-3aec-4eed-a77b-29025684ecc2", + "start": { + "$date": "2022-05-19T03:18:16.000Z" + }, + "end": { + "$date": "2022-05-19T05:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "0b9cf5f9-c4ef-4764-af70-a22ce90c9fa9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-19T04:03:00.000Z" + }, + "end": { + "$date": "2022-05-19T06:14:26.000Z" + }, + "events": [ + { + "uuid": "a9ebc61b-e73d-48d0-a5bd-03b3dd18d608", + "start": { + "$date": "2022-05-19T04:03:00.000Z" + }, + "end": { + "$date": "2022-05-19T06:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "91f44f4b-11e0-4cd3-9a53-d5bba854e657", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-19T04:22:08.000Z" + }, + "end": { + "$date": "2022-05-19T06:22:36.000Z" + }, + "events": [ + { + "uuid": "3574b89f-cef0-4e92-9460-88bf56aa2689", + "start": { + "$date": "2022-05-19T04:22:08.000Z" + }, + "end": { + "$date": "2022-05-19T06:22:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "8c351fca-9b35-45d9-8ae8-f27174219e03", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-19T14:10:02.000Z" + }, + "end": { + "$date": "2022-05-19T15:37:06.000Z" + }, + "events": [ + { + "uuid": "f651aa13-2ea7-470e-aa17-962e137ea283", + "start": { + "$date": "2022-05-19T14:10:02.000Z" + }, + "end": { + "$date": "2022-05-19T15:37:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "898e2925-28c4-46f9-825d-dae8f45449d2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-19T15:38:26.000Z" + }, + "end": { + "$date": "2022-05-19T17:14:20.000Z" + }, + "events": [ + { + "uuid": "ed32858a-c081-4ff7-956f-eb5945cf4887", + "start": { + "$date": "2022-05-19T15:38:26.000Z" + }, + "end": { + "$date": "2022-05-19T17:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "4ab92e88-1730-48e1-a32f-a7c862a9d104", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-19T17:15:25.000Z" + }, + "end": { + "$date": "2022-05-19T17:19:15.000Z" + }, + "events": [ + { + "uuid": "cac7bfbe-cd65-4131-b031-3f422ce82855", + "start": { + "$date": "2022-05-19T17:15:25.000Z" + }, + "end": { + "$date": "2022-05-19T17:19:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9d8758f-fa54-472f-b9f0-576994c58a44", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-19T17:20:25.000Z" + }, + "end": { + "$date": "2022-05-19T17:58:18.000Z" + }, + "events": [ + { + "uuid": "69e3a16c-277c-4428-bf71-f1ea5d461fdc", + "start": { + "$date": "2022-05-19T17:20:25.000Z" + }, + "end": { + "$date": "2022-05-19T17:58:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "4446e25d-2986-49f7-ac1e-6566d8846327", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-19T18:01:08.000Z" + }, + "end": { + "$date": "2022-05-19T18:47:06.000Z" + }, + "events": [ + { + "uuid": "96434036-1743-4b4a-b2d3-89ff8aea8b08", + "start": { + "$date": "2022-05-19T18:01:08.000Z" + }, + "end": { + "$date": "2022-05-19T18:47:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "fa72e7ec-9ac8-4979-9a68-0745230e51d7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-19T20:04:43.000Z" + }, + "end": { + "$date": "2022-05-19T21:38:21.000Z" + }, + "events": [ + { + "uuid": "70c2f2bd-472e-4071-aa9e-2dda718738a7", + "start": { + "$date": "2022-05-19T20:04:43.000Z" + }, + "end": { + "$date": "2022-05-19T21:38:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fa83e74b-5591-45e1-b987-c8bfd502fd88", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-19T21:46:05.000Z" + }, + "end": { + "$date": "2022-05-19T21:50:00.000Z" + }, + "events": [ + { + "uuid": "7e9b30cf-958e-4d4e-a192-f9e2c5c8c0da", + "start": { + "$date": "2022-05-19T21:46:05.000Z" + }, + "end": { + "$date": "2022-05-19T21:50:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "327b748e-5821-4ebf-a740-d0dca86e1ffd", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-19T22:40:41.000Z" + }, + "end": { + "$date": "2022-05-19T22:54:16.000Z" + }, + "events": [ + { + "uuid": "0d9c28b4-7332-40dc-913b-fe3909c1b0aa", + "start": { + "$date": "2022-05-19T22:40:41.000Z" + }, + "end": { + "$date": "2022-05-19T22:54:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", + "uuid": "057f0947-5ef8-4488-b01d-e3cb05c5274d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-19T23:01:39.000Z" + }, + "end": { + "$date": "2022-05-19T23:02:02.000Z" + }, + "events": [ + { + "uuid": "61360b11-a9ff-4dc8-b7a5-9dab1d9a97da", + "start": { + "$date": "2022-05-19T23:01:39.000Z" + }, + "end": { + "$date": "2022-05-19T23:02:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "86261349-f691-4df4-b149-7b01a474c33d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-19T23:02:14.000Z" + }, + "end": { + "$date": "2022-05-19T23:15:58.000Z" + }, + "events": [ + { + "uuid": "c3fbe2d9-2791-437b-9e44-07f9c8429c1f", + "start": { + "$date": "2022-05-19T23:02:14.000Z" + }, + "end": { + "$date": "2022-05-19T23:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "520865b3-57d0-494b-976a-973feab428b5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-19T23:08:04.000Z" + }, + "end": { + "$date": "2022-05-19T23:13:55.000Z" + }, + "events": [ + { + "uuid": "849d7542-fc77-4b33-bd2d-c0648e5456da", + "start": { + "$date": "2022-05-19T23:08:04.000Z" + }, + "end": { + "$date": "2022-05-19T23:13:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "caafe411-c64f-45ec-a093-c97a4e9f2089", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-19T23:20:35.000Z" + }, + "end": { + "$date": "2022-05-19T23:32:14.000Z" + }, + "events": [ + { + "uuid": "68c3f0bb-f277-4c43-9ec2-8d3bd0db212f", + "start": { + "$date": "2022-05-19T23:20:35.000Z" + }, + "end": { + "$date": "2022-05-19T23:32:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "2261f769-0990-49c6-86a7-efe92e388bd3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-19T23:38:31.000Z" + }, + "end": { + "$date": "2022-05-19T23:44:05.000Z" + }, + "events": [ + { + "uuid": "179a1a13-17dc-4524-a688-cae21a9c69c1", + "start": { + "$date": "2022-05-19T23:38:31.000Z" + }, + "end": { + "$date": "2022-05-19T23:44:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "8fe4bcdc-afae-4d3f-ac50-590a77dc4c8b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-20T00:25:30.000Z" + }, + "end": { + "$date": "2022-05-20T01:49:15.000Z" + }, + "events": [ + { + "uuid": "6bceaf18-0a02-4146-86df-01df3caec3f4", + "start": { + "$date": "2022-05-20T00:25:30.000Z" + }, + "end": { + "$date": "2022-05-20T01:49:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3a5b8d12-7fa0-4314-bbf4-f20097518c97", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-20T01:31:22.000Z" + }, + "end": { + "$date": "2022-05-20T04:55:50.000Z" + }, + "events": [ + { + "uuid": "5c3dffd0-005c-48db-b88e-a5f7a1ddbc1b", + "start": { + "$date": "2022-05-20T01:31:22.000Z" + }, + "end": { + "$date": "2022-05-20T04:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f73edfe1-0ccd-4b31-8b92-1856beaa2f4a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-20T02:06:32.000Z" + }, + "end": { + "$date": "2022-05-20T03:11:51.000Z" + }, + "events": [ + { + "uuid": "5ba709d8-014e-48d0-a2c1-fbb6f1d2e545", + "start": { + "$date": "2022-05-20T02:06:32.000Z" + }, + "end": { + "$date": "2022-05-20T03:11:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "59b07668-8783-4a78-9e44-4900705c3ec3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-20T02:11:48.000Z" + }, + "end": { + "$date": "2022-05-20T05:53:44.000Z" + }, + "events": [ + { + "uuid": "dba2df2a-ffe5-4618-9a0c-43fa118774b2", + "start": { + "$date": "2022-05-20T02:11:48.000Z" + }, + "end": { + "$date": "2022-05-20T05:53:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f1872dd7-2dc5-4856-83f8-09c2453a2d90", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-20T02:12:54.000Z" + }, + "end": { + "$date": "2022-05-20T05:50:37.000Z" + }, + "events": [ + { + "uuid": "93ff95dd-d5d2-44da-8e5a-644473567456", + "start": { + "$date": "2022-05-20T02:12:54.000Z" + }, + "end": { + "$date": "2022-05-20T05:50:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c570f597-9422-40b8-9c32-e62116e0a9ad", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-20T02:26:11.000Z" + }, + "end": { + "$date": "2022-05-21T04:18:47.000Z" + }, + "events": [ + { + "uuid": "62c5e5e7-c542-4525-8f35-83bcf7cc773c", + "start": { + "$date": "2022-05-20T02:26:11.000Z" + }, + "end": { + "$date": "2022-05-20T06:00:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0825b202-4cc3-4a51-bcfd-25cae286a8c9", + "start": { + "$date": "2022-05-20T06:00:11.000Z" + }, + "end": { + "$date": "2022-05-20T06:13:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "00d9daa0-719f-4d54-b769-e1572821f458", + "start": { + "$date": "2022-05-20T06:13:11.000Z" + }, + "end": { + "$date": "2022-05-20T06:15:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f1cf9d19-bd62-4665-bdaa-a844ac4dabd8", + "start": { + "$date": "2022-05-20T06:15:11.000Z" + }, + "end": { + "$date": "2022-05-20T06:21:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8080a6c0-ed2a-40f2-9a29-81e903390985", + "start": { + "$date": "2022-05-20T06:21:11.000Z" + }, + "end": { + "$date": "2022-05-20T06:23:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1eea3de2-afb4-4a20-a2b8-6997e5068528", + "start": { + "$date": "2022-05-20T06:23:11.000Z" + }, + "end": { + "$date": "2022-05-20T07:03:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2b4e2e37-2bd2-40d1-8345-34743062167a", + "start": { + "$date": "2022-05-20T07:03:11.000Z" + }, + "end": { + "$date": "2022-05-20T08:31:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f2d72490-f1b7-41e8-a6f9-ea942cbd59c9", + "start": { + "$date": "2022-05-20T08:31:11.000Z" + }, + "end": { + "$date": "2022-05-20T09:29:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "571d4ca5-a073-495f-8afe-2dbed009bf00", + "start": { + "$date": "2022-05-20T09:29:11.000Z" + }, + "end": { + "$date": "2022-05-20T13:52:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bbbfbe1b-f536-4057-b3e5-c55d3c60199a", + "start": { + "$date": "2022-05-20T13:52:11.000Z" + }, + "end": { + "$date": "2022-05-20T16:43:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fc0be0f2-d74e-40bc-812a-17499adbe034", + "start": { + "$date": "2022-05-20T16:43:11.000Z" + }, + "end": { + "$date": "2022-05-20T16:45:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0907db95-5673-4867-88b8-9bfd543caa2e", + "start": { + "$date": "2022-05-20T16:45:11.000Z" + }, + "end": { + "$date": "2022-05-20T16:46:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2d89ef19-ac24-434c-ab23-04fb6f2c7125", + "start": { + "$date": "2022-05-20T16:46:11.000Z" + }, + "end": { + "$date": "2022-05-20T16:48:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7243bad6-28d1-47af-8abe-60961803a5e2", + "start": { + "$date": "2022-05-20T16:48:11.000Z" + }, + "end": { + "$date": "2022-05-20T16:50:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7585e847-868d-4fac-ac9c-60c68b121fd0", + "start": { + "$date": "2022-05-20T16:50:11.000Z" + }, + "end": { + "$date": "2022-05-20T16:53:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff742cea-259b-47a1-83a4-4dcd95631da9", + "start": { + "$date": "2022-05-20T16:53:11.000Z" + }, + "end": { + "$date": "2022-05-21T02:26:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d1697ca-5907-4a21-9616-74dc1ef073e2", + "start": { + "$date": "2022-05-21T02:26:11.000Z" + }, + "end": { + "$date": "2022-05-21T02:30:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e38e521-1848-49c7-a045-79d167c7519d", + "start": { + "$date": "2022-05-21T02:30:11.000Z" + }, + "end": { + "$date": "2022-05-21T03:08:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5c9a3923-886f-493b-af06-2158d456558b", + "start": { + "$date": "2022-05-21T03:08:11.000Z" + }, + "end": { + "$date": "2022-05-21T03:10:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e38d37bc-c6b9-42df-8c62-af7bdc704ebf", + "start": { + "$date": "2022-05-21T03:10:11.000Z" + }, + "end": { + "$date": "2022-05-21T03:17:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a77095d1-1dc8-4124-95e5-33a4e27b0f27", + "start": { + "$date": "2022-05-21T03:17:11.000Z" + }, + "end": { + "$date": "2022-05-21T03:19:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ca8374b-3847-414a-a866-1a2a07ef0a99", + "start": { + "$date": "2022-05-21T03:19:11.000Z" + }, + "end": { + "$date": "2022-05-21T03:25:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "77e8e654-7bf4-4a93-8b7f-8bb2f6b392a7", + "start": { + "$date": "2022-05-21T03:25:11.000Z" + }, + "end": { + "$date": "2022-05-21T03:27:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2f319bdc-f9c1-4f87-8391-2175307884b8", + "start": { + "$date": "2022-05-21T03:27:11.000Z" + }, + "end": { + "$date": "2022-05-21T04:15:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c9b8139-80a1-4090-a738-2c05610e997a", + "start": { + "$date": "2022-05-21T04:15:11.000Z" + }, + "end": { + "$date": "2022-05-21T04:17:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e07c1361-c864-471f-97b2-641a3909243a", + "start": { + "$date": "2022-05-21T04:17:11.000Z" + }, + "end": { + "$date": "2022-05-21T04:18:47.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3f139d30-04a4-4543-a95c-3f6155246d86", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-20T03:12:56.000Z" + }, + "end": { + "$date": "2022-05-20T03:44:27.000Z" + }, + "events": [ + { + "uuid": "e9d5974e-46ca-4eb3-a82e-bba14533c965", + "start": { + "$date": "2022-05-20T03:12:56.000Z" + }, + "end": { + "$date": "2022-05-20T03:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "08f50ca4-1f18-48cd-b01d-f09e797f4816", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-20T03:56:39.000Z" + }, + "end": { + "$date": "2022-05-20T04:38:00.000Z" + }, + "events": [ + { + "uuid": "6444d388-49b8-4ec5-ba8d-b7b87a5f4477", + "start": { + "$date": "2022-05-20T03:56:39.000Z" + }, + "end": { + "$date": "2022-05-20T04:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6a89f902-9e12-4443-a7d9-531cfaa5313b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-20T04:02:40.000Z" + }, + "end": { + "$date": "2022-05-20T04:54:35.000Z" + }, + "events": [ + { + "uuid": "caa9c20f-d360-4647-9f48-14c7dbb3b3bf", + "start": { + "$date": "2022-05-20T04:02:40.000Z" + }, + "end": { + "$date": "2022-05-20T04:54:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "edc39068-15de-46b5-8071-35b0db291333", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-20T04:04:29.000Z" + }, + "end": { + "$date": "2022-05-20T04:04:48.000Z" + }, + "events": [ + { + "uuid": "086d1a57-7795-46de-8836-f5bf076d502f", + "start": { + "$date": "2022-05-20T04:04:29.000Z" + }, + "end": { + "$date": "2022-05-20T04:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "52e3298d-d3d6-4f2c-9232-11edae210e4e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-20T04:05:39.000Z" + }, + "end": { + "$date": "2022-05-20T04:49:34.000Z" + }, + "events": [ + { + "uuid": "753fe987-3c94-46bf-9ac0-42fb800a03fd", + "start": { + "$date": "2022-05-20T04:05:39.000Z" + }, + "end": { + "$date": "2022-05-20T04:49:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "a0ee68e8-a536-4f27-9ed3-42e46ba57603", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-20T04:49:45.000Z" + }, + "end": { + "$date": "2022-05-20T05:06:00.000Z" + }, + "events": [ + { + "uuid": "5c0092e7-f8a3-485d-96f7-22c2b91d61b5", + "start": { + "$date": "2022-05-20T04:49:45.000Z" + }, + "end": { + "$date": "2022-05-20T05:06:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "33ccd056-8876-4938-9d26-ea0ed1d9271c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-20T05:06:11.000Z" + }, + "end": { + "$date": "2022-05-20T05:39:26.000Z" + }, + "events": [ + { + "uuid": "87fcbeb8-9d39-4aef-821b-f0deecf050fb", + "start": { + "$date": "2022-05-20T05:06:11.000Z" + }, + "end": { + "$date": "2022-05-20T05:39:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "96740874-e8ab-46bf-affc-6b95c26b2549", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-20T05:33:06.000Z" + }, + "end": { + "$date": "2022-05-20T06:31:24.000Z" + }, + "events": [ + { + "uuid": "b084f891-3380-4dc7-91d9-f1e8a8af9b13", + "start": { + "$date": "2022-05-20T05:33:06.000Z" + }, + "end": { + "$date": "2022-05-20T06:31:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "6985e8b4-1db6-4227-ab35-db868f2c51f9", + "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", + "start": { + "$date": "2022-05-20T21:12:16.000Z" + }, + "end": { + "$date": "2022-05-20T21:14:41.000Z" + }, + "events": [ + { + "uuid": "dda77628-bd80-44e0-af26-e8c43bcf034a", + "start": { + "$date": "2022-05-20T21:12:16.000Z" + }, + "end": { + "$date": "2022-05-20T22:19:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "667f43d6-39a0-4855-b906-7b016600fe59", + "start": { + "$date": "2022-05-20T22:19:16.000Z" + }, + "end": { + "$date": "2022-05-20T22:32:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4d7bb1cf-8ffc-4676-8dcf-87c499a6974b", + "start": { + "$date": "2022-05-20T22:32:16.000Z" + }, + "end": { + "$date": "2022-05-20T22:47:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f01631b-1220-47a0-80c4-a105f37b11ae", + "start": { + "$date": "2022-05-20T22:47:16.000Z" + }, + "end": { + "$date": "2022-05-20T22:57:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0e4d1bb0-3913-44fc-b0b3-34ba81c7a060", + "start": { + "$date": "2022-05-20T22:57:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:02:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e80a0b0a-a29e-418b-a843-41feab56b1d6", + "start": { + "$date": "2022-05-20T23:02:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:10:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e1d3fcba-64ff-4a28-928f-c79913ece892", + "start": { + "$date": "2022-05-20T23:10:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:12:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e9106be-3805-4628-900a-8bd25c2fcbc5", + "start": { + "$date": "2022-05-20T23:12:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:38:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "123114a6-e5e1-4946-9867-6845208e799c", + "start": { + "$date": "2022-05-20T23:38:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:40:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc255c7a-226c-47ef-b651-6f74dd8dcb5c", + "start": { + "$date": "2022-05-20T23:40:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:46:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e704bfc6-72c2-4c84-8a59-855138542c59", + "start": { + "$date": "2022-05-20T23:46:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:48:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "174d1291-0798-4802-95e4-edc4366ad40e", + "start": { + "$date": "2022-05-20T23:48:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:52:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3c0e5560-3761-4683-afdf-6ceb9ae1f429", + "start": { + "$date": "2022-05-20T23:52:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:54:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ca06dd80-f615-429d-90f5-f62a0da50699", + "start": { + "$date": "2022-05-20T23:54:16.000Z" + }, + "end": { + "$date": "2022-05-20T23:59:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca648395-4da0-45d2-9bc8-9cf22c4a1b6e", + "start": { + "$date": "2022-05-20T23:59:16.000Z" + }, + "end": { + "$date": "2022-05-21T00:01:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b41a6fd-9d6e-4301-887a-707fd9329c8a", + "start": { + "$date": "2022-05-21T00:01:16.000Z" + }, + "end": { + "$date": "2022-05-21T00:05:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e6411823-2f61-462d-a358-f70162b2abe5", + "start": { + "$date": "2022-05-21T00:05:16.000Z" + }, + "end": { + "$date": "2022-05-20T21:14:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "58f39446-2639-4b2f-be6a-ad363c76d44d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-20T16:58:41.000Z" + }, + "end": { + "$date": "2022-05-20T17:23:52.000Z" + }, + "events": [ + { + "uuid": "c2f1868b-dfb3-46e6-a83c-d89fcfb1784e", + "start": { + "$date": "2022-05-20T16:58:41.000Z" + }, + "end": { + "$date": "2022-05-20T17:23:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "579361e3-f96b-4170-8071-77976fc8af5c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-20T17:27:02.000Z" + }, + "end": { + "$date": "2022-05-20T18:53:40.000Z" + }, + "events": [ + { + "uuid": "61453a6f-c44e-4316-bc9e-0659f2da9bcb", + "start": { + "$date": "2022-05-20T17:27:02.000Z" + }, + "end": { + "$date": "2022-05-20T18:53:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "52ccd1e9-c59c-4c21-b5c8-77a2c88736bb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-20T18:46:15.000Z" + }, + "end": { + "$date": "2022-05-20T19:48:42.000Z" + }, + "events": [ + { + "uuid": "ed18cd21-d218-42bd-a722-5bbbdc540fe6", + "start": { + "$date": "2022-05-20T18:46:15.000Z" + }, + "end": { + "$date": "2022-05-20T19:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "92f3b278-8191-4aef-8843-bbd339911b96", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-20T20:43:02.000Z" + }, + "end": { + "$date": "2022-05-20T22:46:58.000Z" + }, + "events": [ + { + "uuid": "e90e04c3-5fc5-4624-876f-8500affef305", + "start": { + "$date": "2022-05-20T20:43:02.000Z" + }, + "end": { + "$date": "2022-05-20T22:46:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "af74806e-ca11-4a30-ab45-b98a0b3f1925", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-20T21:14:09.000Z" + }, + "end": { + "$date": "2022-05-20T21:19:34.000Z" + }, + "events": [ + { + "uuid": "d68a06ff-d1e6-4b26-a9e5-825943079fb3", + "start": { + "$date": "2022-05-20T21:14:09.000Z" + }, + "end": { + "$date": "2022-05-20T21:19:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5fd7970f-8fb6-42c6-887e-d20b8abfca77", + "uuid": "c40e485b-63ff-4f56-bd69-1e6036787e11", + "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", + "start": { + "$date": "2022-05-20T21:53:15.000Z" + }, + "end": { + "$date": "2022-05-20T23:29:51.000Z" + }, + "events": [ + { + "uuid": "536f1026-cde7-4bcf-9289-484c040b53dd", + "start": { + "$date": "2022-05-20T21:53:15.000Z" + }, + "end": { + "$date": "2022-05-20T23:29:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f5c18cea-6e16-4adb-9a68-712710f8fe67", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-20T22:50:53.000Z" + }, + "end": { + "$date": "2022-05-21T01:16:30.000Z" + }, + "events": [ + { + "uuid": "711f1df3-a036-4387-966e-91f6bb1d16cf", + "start": { + "$date": "2022-05-20T22:50:53.000Z" + }, + "end": { + "$date": "2022-05-21T01:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "c4cf0358-97a2-41c3-b677-a2d95c41e80f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-21T02:56:45.000Z" + }, + "end": { + "$date": "2022-05-21T03:00:44.000Z" + }, + "events": [ + { + "uuid": "6f7170f7-0491-488f-87ba-e47097bd16d1", + "start": { + "$date": "2022-05-21T02:56:45.000Z" + }, + "end": { + "$date": "2022-05-21T03:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "63d8302b-0ce2-47ca-a407-81a7a77b7076", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-21T03:01:05.000Z" + }, + "end": { + "$date": "2022-05-21T03:05:00.000Z" + }, + "events": [ + { + "uuid": "eeb26fb2-d726-440d-b148-ad1975646327", + "start": { + "$date": "2022-05-21T03:01:05.000Z" + }, + "end": { + "$date": "2022-05-21T03:05:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "728dcefe-4c41-4cc3-b18a-d83e2a18bffd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-21T03:05:20.000Z" + }, + "end": { + "$date": "2022-05-21T06:02:27.000Z" + }, + "events": [ + { + "uuid": "1df27d0b-6276-4c45-8249-8a65b61d0302", + "start": { + "$date": "2022-05-21T03:05:20.000Z" + }, + "end": { + "$date": "2022-05-21T06:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1898e613-684f-4444-a675-1e0586acf3a5", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-21T03:28:33.000Z" + }, + "end": { + "$date": "2022-05-21T07:30:06.000Z" + }, + "events": [ + { + "uuid": "1a786ab5-e037-484f-953d-ebc2358561e2", + "start": { + "$date": "2022-05-21T03:28:33.000Z" + }, + "end": { + "$date": "2022-05-21T07:30:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "55af7e40-c39a-4519-b648-50c2530d2419", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-21T03:30:14.000Z" + }, + "end": { + "$date": "2022-05-21T07:49:25.000Z" + }, + "events": [ + { + "uuid": "2a377f31-b18e-47c5-af10-d3461bfef7b1", + "start": { + "$date": "2022-05-21T03:30:14.000Z" + }, + "end": { + "$date": "2022-05-21T07:48:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "efeb94f6-0cdb-44ba-9bd2-ed3c32f2494d", + "start": { + "$date": "2022-05-21T07:48:14.000Z" + }, + "end": { + "$date": "2022-05-21T07:49:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7db7d17c-3b96-46fd-98d2-9a418d8862f4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-21T04:20:08.000Z" + }, + "end": { + "$date": "2022-05-21T07:32:38.000Z" + }, + "events": [ + { + "uuid": "71a820c7-dc47-435e-a56e-77970031a232", + "start": { + "$date": "2022-05-21T04:20:08.000Z" + }, + "end": { + "$date": "2022-05-21T07:32:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "32708deb-eba5-4561-9b1d-c57025e952f3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-21T04:25:52.000Z" + }, + "end": { + "$date": "2022-05-21T04:27:21.000Z" + }, + "events": [ + { + "uuid": "86fcc2d0-6eaf-42eb-8ac6-ec6e9bc1ea86", + "start": { + "$date": "2022-05-21T04:25:52.000Z" + }, + "end": { + "$date": "2022-05-21T04:27:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "7acbccfd-f3e7-437d-bf2a-629107a67d8e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-21T04:28:12.000Z" + }, + "end": { + "$date": "2022-05-21T04:34:47.000Z" + }, + "events": [ + { + "uuid": "cbf3ff1e-2ef4-4c74-b6f4-fbcf683e6358", + "start": { + "$date": "2022-05-21T04:28:12.000Z" + }, + "end": { + "$date": "2022-05-21T04:34:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "30558e3d-5d01-47f9-8758-b13a695a178e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-21T04:36:53.000Z" + }, + "end": { + "$date": "2022-05-21T05:29:08.000Z" + }, + "events": [ + { + "uuid": "3a7e70e4-1d8d-4067-b96e-b75fb6c5b578", + "start": { + "$date": "2022-05-21T04:36:53.000Z" + }, + "end": { + "$date": "2022-05-21T05:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7ebf5fed-89f1-41d8-98fc-180a2b53efee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-21T05:30:21.000Z" + }, + "end": { + "$date": "2022-05-21T05:43:41.000Z" + }, + "events": [ + { + "uuid": "7aade89c-5585-48a5-adab-7762897f11bf", + "start": { + "$date": "2022-05-21T05:30:21.000Z" + }, + "end": { + "$date": "2022-05-21T05:43:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "f7b1f66a-0f3f-4d5e-82b7-2b6e679cbe89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-21T05:46:37.000Z" + }, + "end": { + "$date": "2022-05-21T06:19:27.000Z" + }, + "events": [ + { + "uuid": "35500ae9-99e3-4fb6-b7ca-cb34b1346277", + "start": { + "$date": "2022-05-21T05:46:37.000Z" + }, + "end": { + "$date": "2022-05-21T06:19:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "369641b3-2aec-4de1-9110-92afbe9f6939", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-21T05:54:37.000Z" + }, + "end": { + "$date": "2022-05-21T06:47:03.000Z" + }, + "events": [ + { + "uuid": "4772263c-fca5-4162-b51c-3c1b530d05f7", + "start": { + "$date": "2022-05-21T05:54:37.000Z" + }, + "end": { + "$date": "2022-05-21T06:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9697b0c8-5309-4797-a68e-c3f279d85044", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-21T06:11:33.000Z" + }, + "end": { + "$date": "2022-05-21T06:50:19.000Z" + }, + "events": [ + { + "uuid": "557820ae-f8c4-4531-92a4-d5e60cf27653", + "start": { + "$date": "2022-05-21T06:11:33.000Z" + }, + "end": { + "$date": "2022-05-21T06:50:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7b8a23a6-28a2-4690-833e-f9a1d9d8208f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-21T05:46:37.000Z" + }, + "end": { + "$date": "2022-05-21T07:26:00.000Z" + }, + "events": [ + { + "uuid": "074b732c-88bf-49c5-b6c2-07b43db39f87", + "start": { + "$date": "2022-05-21T05:46:37.000Z" + }, + "end": { + "$date": "2022-05-21T07:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "53ad0ebc-beb8-4378-8c91-71aee1df8cb1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-21T07:39:27.000Z" + }, + "end": { + "$date": "2022-05-21T07:57:05.000Z" + }, + "events": [ + { + "uuid": "34472534-adcc-4d4c-b814-4effa217140d", + "start": { + "$date": "2022-05-21T07:39:27.000Z" + }, + "end": { + "$date": "2022-05-21T07:57:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "055d0098-1285-4ad5-ad08-694210f089f7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-21T12:37:46.000Z" + }, + "end": { + "$date": "2022-05-21T13:11:12.000Z" + }, + "events": [ + { + "uuid": "1e6adc33-0738-4a42-8e53-4c86933bcaf6", + "start": { + "$date": "2022-05-21T12:37:46.000Z" + }, + "end": { + "$date": "2022-05-21T13:11:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "32465e4b-108e-446d-afd8-3df1505e8711", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-21T14:22:04.000Z" + }, + "end": { + "$date": "2022-05-21T14:40:26.000Z" + }, + "events": [ + { + "uuid": "1a5f75e2-0fe6-4248-9fac-c765207a3074", + "start": { + "$date": "2022-05-21T14:22:04.000Z" + }, + "end": { + "$date": "2022-05-21T14:40:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "1c09b604-eded-4348-a8c4-6df0d8612235", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T14:56:04.000Z" + }, + "end": { + "$date": "2022-05-21T16:03:11.000Z" + }, + "events": [ + { + "uuid": "ffca1553-580c-42a3-b439-16be716d2047", + "start": { + "$date": "2022-05-21T14:56:04.000Z" + }, + "end": { + "$date": "2022-05-21T16:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4dc1ec00-8a59-430d-be4e-5f54dd17b11f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T18:40:56.000Z" + }, + "end": { + "$date": "2022-05-21T19:17:18.000Z" + }, + "events": [ + { + "uuid": "c89b3926-0bd8-4b5d-9ba6-5de30044c26d", + "start": { + "$date": "2022-05-21T18:40:56.000Z" + }, + "end": { + "$date": "2022-05-21T19:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "9be5f1b7-6a66-4654-b2a3-3812f35acf49", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T19:17:43.000Z" + }, + "end": { + "$date": "2022-05-21T19:25:33.000Z" + }, + "events": [ + { + "uuid": "7fbd6e98-e70f-46ed-937f-f231101055df", + "start": { + "$date": "2022-05-21T19:17:43.000Z" + }, + "end": { + "$date": "2022-05-21T19:25:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f720b1ba-3ab2-4a06-9de3-c53a1b881dc1", + "uuid": "49eb4058-3c51-4baf-b597-2de2b83cd7aa", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-21T19:44:57.000Z" + }, + "end": { + "$date": "2022-05-21T19:51:57.000Z" + }, + "events": [ + { + "uuid": "f61fee8a-b4ec-45bb-a88e-72359347e1cb", + "start": { + "$date": "2022-05-21T19:44:57.000Z" + }, + "end": { + "$date": "2022-05-21T19:51:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "726c35d3-3fae-42f2-a495-e0bce5f3a051", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-21T20:01:59.000Z" + }, + "end": { + "$date": "2022-05-21T20:30:29.000Z" + }, + "events": [ + { + "uuid": "74b77e01-fc1d-4a0e-b120-4bfd48fc4b40", + "start": { + "$date": "2022-05-21T20:01:59.000Z" + }, + "end": { + "$date": "2022-05-21T20:30:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1db936f0-12f9-4747-a118-cd4cc1ff8e3e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T20:04:01.000Z" + }, + "end": { + "$date": "2022-05-21T20:30:37.000Z" + }, + "events": [ + { + "uuid": "1ae8edaa-570e-46a0-94b8-0464f78e45bb", + "start": { + "$date": "2022-05-21T20:04:01.000Z" + }, + "end": { + "$date": "2022-05-21T20:30:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "04b82c7e-18cc-4567-a903-9b2601aeac79", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T20:31:27.000Z" + }, + "end": { + "$date": "2022-05-21T21:27:30.000Z" + }, + "events": [ + { + "uuid": "8ccff681-0f5d-4fe3-b052-b0ab4f03e578", + "start": { + "$date": "2022-05-21T20:31:27.000Z" + }, + "end": { + "$date": "2022-05-21T21:27:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "01fe0b56-351d-4740-a763-affa3fd41ad4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-21T20:31:40.000Z" + }, + "end": { + "$date": "2022-05-21T21:27:43.000Z" + }, + "events": [ + { + "uuid": "382242c3-4872-4763-9aad-53dae275b9db", + "start": { + "$date": "2022-05-21T20:31:40.000Z" + }, + "end": { + "$date": "2022-05-21T21:27:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c0d578bd-6b0f-4893-ae5c-a1738797c08f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-21T21:10:37.000Z" + }, + "end": { + "$date": "2022-05-21T21:11:51.000Z" + }, + "events": [ + { + "uuid": "d7efc7af-93f6-4b00-96cd-7d69b5c8d704", + "start": { + "$date": "2022-05-21T21:10:37.000Z" + }, + "end": { + "$date": "2022-05-21T21:11:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f690d1d6-e43f-4596-b6df-3384807120b9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-21T21:21:50.000Z" + }, + "end": { + "$date": "2022-05-21T23:15:31.000Z" + }, + "events": [ + { + "uuid": "277a9e9c-9e8d-43d7-a4cc-9c92c4b37a69", + "start": { + "$date": "2022-05-21T21:21:50.000Z" + }, + "end": { + "$date": "2022-05-21T23:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6983871c-0842-40a0-a9db-b7c54e012181", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T22:20:31.000Z" + }, + "end": { + "$date": "2022-05-21T22:24:12.000Z" + }, + "events": [ + { + "uuid": "4962a5ba-01a5-4f2e-a3aa-af227658bbd1", + "start": { + "$date": "2022-05-21T22:20:31.000Z" + }, + "end": { + "$date": "2022-05-21T22:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fc1171bc-9a09-418a-af03-ff802d294a9b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-21T23:11:58.000Z" + }, + "end": { + "$date": "2022-05-22T00:50:57.000Z" + }, + "events": [ + { + "uuid": "65292e96-e4e6-40c2-8698-ec12f812e0f1", + "start": { + "$date": "2022-05-21T23:11:58.000Z" + }, + "end": { + "$date": "2022-05-22T00:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "240d95ee-626b-444a-b103-4589c498ad87", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-21T22:26:48.000Z" + }, + "end": { + "$date": "2022-05-22T00:24:20.000Z" + }, + "events": [ + { + "uuid": "d0f575c7-e64b-437e-a6ae-4399270ebb84", + "start": { + "$date": "2022-05-21T22:26:48.000Z" + }, + "end": { + "$date": "2022-05-22T00:24:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "b90f47c9-eb45-4ed1-ae9c-23fc6489707d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-21T22:31:51.000Z" + }, + "end": { + "$date": "2022-05-22T00:50:49.000Z" + }, + "events": [ + { + "uuid": "d2093554-2380-499e-892b-c75865df2a79", + "start": { + "$date": "2022-05-21T22:31:51.000Z" + }, + "end": { + "$date": "2022-05-22T00:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "b20a3f3f-91a3-4039-9f5f-d169eb41c416", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-21T23:46:46.000Z" + }, + "end": { + "$date": "2022-05-22T00:26:02.000Z" + }, + "events": [ + { + "uuid": "9d691683-ad88-4dc7-8b12-f226f87293b3", + "start": { + "$date": "2022-05-21T23:46:46.000Z" + }, + "end": { + "$date": "2022-05-22T00:26:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1807dd5b-1b73-474c-826e-85c9871ed972", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-22T00:26:30.000Z" + }, + "end": { + "$date": "2022-05-22T00:36:00.000Z" + }, + "events": [ + { + "uuid": "9a060568-1120-4483-bfd4-cdbf8ea5a825", + "start": { + "$date": "2022-05-22T00:26:30.000Z" + }, + "end": { + "$date": "2022-05-22T00:36:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "c7f16819-3e61-4f6e-80e3-225d9ef4f0f7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T00:51:57.000Z" + }, + "end": { + "$date": "2022-05-22T01:15:33.000Z" + }, + "events": [ + { + "uuid": "89f72aed-42f2-47df-ae28-73ce9daebd33", + "start": { + "$date": "2022-05-22T00:51:57.000Z" + }, + "end": { + "$date": "2022-05-22T01:15:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f7c5c6bc-9de3-4022-81aa-4afe234c9da1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T01:23:23.000Z" + }, + "end": { + "$date": "2022-05-22T01:31:20.000Z" + }, + "events": [ + { + "uuid": "8e2c9061-c28f-4e68-ac90-08c89a836814", + "start": { + "$date": "2022-05-22T01:23:23.000Z" + }, + "end": { + "$date": "2022-05-22T01:31:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b51d7c87-95b7-4b3d-a352-237320af65fc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T02:01:21.000Z" + }, + "end": { + "$date": "2022-05-22T03:05:37.000Z" + }, + "events": [ + { + "uuid": "2b7af325-a6c6-42cb-97fe-314e6b755c0d", + "start": { + "$date": "2022-05-22T02:01:21.000Z" + }, + "end": { + "$date": "2022-05-22T03:05:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8019555f-f2d2-4a30-8099-b7f727f151be", + "uuid": "803ce526-031c-48e9-8290-3569e23159a3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T02:09:57.000Z" + }, + "end": { + "$date": "2022-05-22T02:37:17.000Z" + }, + "events": [ + { + "uuid": "eb67230f-5ccd-4262-9c7c-a83c23078d99", + "start": { + "$date": "2022-05-22T02:09:57.000Z" + }, + "end": { + "$date": "2022-05-22T02:37:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6fe110ae-f8c4-4604-a072-2ac5d72ff94c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-22T03:00:41.000Z" + }, + "end": { + "$date": "2022-05-22T03:18:37.000Z" + }, + "events": [ + { + "uuid": "03b5d833-9a3a-4f4d-b4d3-079194964d8f", + "start": { + "$date": "2022-05-22T03:00:41.000Z" + }, + "end": { + "$date": "2022-05-22T03:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "fcb499af-65f2-4e7a-b000-4e619a34a073", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-22T03:20:07.000Z" + }, + "end": { + "$date": "2022-05-22T03:36:12.000Z" + }, + "events": [ + { + "uuid": "225c28a4-b11b-48b3-9dd9-be5e4f756b3b", + "start": { + "$date": "2022-05-22T03:20:07.000Z" + }, + "end": { + "$date": "2022-05-22T03:36:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "17271a27-1ead-4900-9c8b-476339205de7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T03:24:20.000Z" + }, + "end": { + "$date": "2022-05-22T03:29:35.000Z" + }, + "events": [ + { + "uuid": "0ccbd395-3eb9-4972-a28d-288864aee073", + "start": { + "$date": "2022-05-22T03:24:20.000Z" + }, + "end": { + "$date": "2022-05-22T03:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "ef0985ed-3f5d-46dd-a255-4b325df6760e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-22T03:28:05.000Z" + }, + "end": { + "$date": "2022-05-22T03:38:49.000Z" + }, + "events": [ + { + "uuid": "0302a70d-aeca-4043-aa32-d0cf16c199fa", + "start": { + "$date": "2022-05-22T03:28:05.000Z" + }, + "end": { + "$date": "2022-05-22T03:38:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3fd84611-9559-4dd7-b63f-b73f57d43038", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T03:29:41.000Z" + }, + "end": { + "$date": "2022-05-22T05:43:58.000Z" + }, + "events": [ + { + "uuid": "10f3426a-b12b-41d1-b6bf-b84ef05ae0c7", + "start": { + "$date": "2022-05-22T03:29:41.000Z" + }, + "end": { + "$date": "2022-05-22T05:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "775088bc-7ae0-4811-b3fc-b078ccf54f1c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-22T03:39:08.000Z" + }, + "end": { + "$date": "2022-05-22T04:19:25.000Z" + }, + "events": [ + { + "uuid": "de2fd2b9-efde-4c8e-b5e3-ad98330f4373", + "start": { + "$date": "2022-05-22T03:39:08.000Z" + }, + "end": { + "$date": "2022-05-22T04:19:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "efdd165c-5a68-438a-aaa2-d31ce3c1de81", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-22T03:39:15.000Z" + }, + "end": { + "$date": "2022-05-22T03:59:55.000Z" + }, + "events": [ + { + "uuid": "f73e0956-c7aa-4ba3-a6e5-6cec7f8ea501", + "start": { + "$date": "2022-05-22T03:39:15.000Z" + }, + "end": { + "$date": "2022-05-22T03:59:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7928cec8-43c2-4f9e-8eb0-38ad2d75d90e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-22T04:20:20.000Z" + }, + "end": { + "$date": "2022-05-22T06:27:21.000Z" + }, + "events": [ + { + "uuid": "39b3c6fa-9a01-4a51-bb45-3ffe662aa4e9", + "start": { + "$date": "2022-05-22T04:20:20.000Z" + }, + "end": { + "$date": "2022-05-22T06:27:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37ccf8d1-a267-4d36-8612-287ae4af9c7b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T04:54:48.000Z" + }, + "end": { + "$date": "2022-05-22T05:43:47.000Z" + }, + "events": [ + { + "uuid": "a44f4c89-7fbf-4021-9917-a6a21eb76e7f", + "start": { + "$date": "2022-05-22T04:54:48.000Z" + }, + "end": { + "$date": "2022-05-22T05:43:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "6a0e5fb4-ce85-4dbe-90c5-58cf3939b309", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T05:50:08.000Z" + }, + "end": { + "$date": "2022-05-22T06:39:02.000Z" + }, + "events": [ + { + "uuid": "0f2f8941-6c85-456f-8b8e-00ada9e5b0f9", + "start": { + "$date": "2022-05-22T05:50:08.000Z" + }, + "end": { + "$date": "2022-05-22T06:39:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "5a794fbf-72a1-464b-8dbd-43a9547d45b4", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T05:50:25.000Z" + }, + "end": { + "$date": "2022-05-22T06:39:23.000Z" + }, + "events": [ + { + "uuid": "0fe1f108-774b-4e9d-904c-575f603fc836", + "start": { + "$date": "2022-05-22T05:50:25.000Z" + }, + "end": { + "$date": "2022-05-22T06:39:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b575d480-c2f1-4b7c-a35e-81f156f09741", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-22T06:27:36.000Z" + }, + "end": { + "$date": "2022-05-22T06:31:01.000Z" + }, + "events": [ + { + "uuid": "0f0b7da1-f839-4402-b51a-781a101c6464", + "start": { + "$date": "2022-05-22T06:27:36.000Z" + }, + "end": { + "$date": "2022-05-22T06:31:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "731d521c-b6d0-408c-aeaf-68c7b1a7e6ed", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T06:39:42.000Z" + }, + "end": { + "$date": "2022-05-22T07:57:04.000Z" + }, + "events": [ + { + "uuid": "d136961b-fafa-461a-a343-fc2d263a6da2", + "start": { + "$date": "2022-05-22T06:39:42.000Z" + }, + "end": { + "$date": "2022-05-22T07:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "47486ee5-1ec9-4e97-8cdd-1a10e2140bdc", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T06:40:09.000Z" + }, + "end": { + "$date": "2022-05-22T08:21:40.000Z" + }, + "events": [ + { + "uuid": "b352be93-c0cc-4f2d-aa37-85d637818f97", + "start": { + "$date": "2022-05-22T06:40:09.000Z" + }, + "end": { + "$date": "2022-05-22T08:21:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "7971d1cd-1534-4590-9f9c-aef897243a99", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-22T11:21:20.000Z" + }, + "end": { + "$date": "2022-05-22T15:06:25.000Z" + }, + "events": [ + { + "uuid": "97d00430-5ae0-48cb-b1ae-b7f93aca6635", + "start": { + "$date": "2022-05-22T11:21:20.000Z" + }, + "end": { + "$date": "2022-05-22T15:06:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e76731be-fed4-4846-92d8-d828ba7ecae5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T16:36:34.000Z" + }, + "end": { + "$date": "2022-05-22T16:39:25.000Z" + }, + "events": [ + { + "uuid": "138dde5b-b181-408d-b032-210300044b0e", + "start": { + "$date": "2022-05-22T16:36:34.000Z" + }, + "end": { + "$date": "2022-05-22T16:39:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "5afd8aed-02a7-4d84-b736-0f3b16751ec6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T16:39:45.000Z" + }, + "end": { + "$date": "2022-05-22T16:58:51.000Z" + }, + "events": [ + { + "uuid": "61ece9d6-4402-4ab5-b4e0-36e168c4cdd0", + "start": { + "$date": "2022-05-22T16:39:45.000Z" + }, + "end": { + "$date": "2022-05-22T16:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "62dbda30-03ec-45a0-bc2f-1d1a892979a4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T17:17:23.000Z" + }, + "end": { + "$date": "2022-05-22T18:53:39.000Z" + }, + "events": [ + { + "uuid": "c8ba90b5-77a4-42db-aaf0-51348d1cd8ca", + "start": { + "$date": "2022-05-22T17:17:23.000Z" + }, + "end": { + "$date": "2022-05-22T18:53:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2ef4bdbe-f955-4cfd-bbf5-b8a88ac92081", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T19:56:35.000Z" + }, + "end": { + "$date": "2022-05-22T21:17:32.000Z" + }, + "events": [ + { + "uuid": "4753bcb4-4e55-4a38-bbb2-6a5620876cf5", + "start": { + "$date": "2022-05-22T19:56:35.000Z" + }, + "end": { + "$date": "2022-05-22T21:17:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "6995e7e6-054a-48ed-9d27-af9ef90f66f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T21:10:19.000Z" + }, + "end": { + "$date": "2022-05-22T22:03:53.000Z" + }, + "events": [ + { + "uuid": "9277f61c-0a23-4937-8d32-842d2a49b9f3", + "start": { + "$date": "2022-05-22T21:10:19.000Z" + }, + "end": { + "$date": "2022-05-22T22:03:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "56f20bfc-890d-40d2-b252-1d4faac7c108", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-22T22:22:39.000Z" + }, + "end": { + "$date": "2022-05-22T23:58:22.000Z" + }, + "events": [ + { + "uuid": "a3692e27-ff31-491f-8109-71884d716f89", + "start": { + "$date": "2022-05-22T22:22:39.000Z" + }, + "end": { + "$date": "2022-05-22T23:58:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "adac0d59-fc6f-410d-bb38-66a083cd9e76", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-22T22:20:39.000Z" + }, + "end": { + "$date": "2022-05-23T00:13:37.000Z" + }, + "events": [ + { + "uuid": "9d26b27a-4580-4f75-863d-e8894f81491f", + "start": { + "$date": "2022-05-22T22:20:39.000Z" + }, + "end": { + "$date": "2022-05-23T00:13:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "cd82d4df-da0e-40cd-b9ee-2af905dc1841", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-22T22:34:14.000Z" + }, + "end": { + "$date": "2022-05-22T23:11:34.000Z" + }, + "events": [ + { + "uuid": "4cc18f73-27fc-462c-8933-47bdee819d3b", + "start": { + "$date": "2022-05-22T22:34:14.000Z" + }, + "end": { + "$date": "2022-05-22T23:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c8781e00-e859-4636-997b-49d7c85ea212", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-23T00:13:52.000Z" + }, + "end": { + "$date": "2022-05-23T01:15:31.000Z" + }, + "events": [ + { + "uuid": "d727f4ac-d2ce-43b4-99eb-f4e30520b732", + "start": { + "$date": "2022-05-23T00:13:52.000Z" + }, + "end": { + "$date": "2022-05-23T01:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "2068329e-36a2-4fc7-b0ee-3e7e0b26a540", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-23T00:33:16.000Z" + }, + "end": { + "$date": "2022-05-23T02:08:07.000Z" + }, + "events": [ + { + "uuid": "d63f63a6-4868-4dbb-a7f9-edaa5acc965a", + "start": { + "$date": "2022-05-23T00:33:16.000Z" + }, + "end": { + "$date": "2022-05-23T01:55:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2744d9b-e02f-44b8-9e56-1354a9b474fb", + "start": { + "$date": "2022-05-23T01:55:16.000Z" + }, + "end": { + "$date": "2022-05-23T02:08:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "7033e685-e570-4434-95d7-859067c011b9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T00:40:11.000Z" + }, + "end": { + "$date": "2022-05-23T00:45:32.000Z" + }, + "events": [ + { + "uuid": "f8b64ec1-e14c-4ae0-b737-de54df7c149d", + "start": { + "$date": "2022-05-23T00:40:11.000Z" + }, + "end": { + "$date": "2022-05-23T00:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "cd33c7c3-0237-4bd1-ac01-4de90c4e2100", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T00:54:22.000Z" + }, + "end": { + "$date": "2022-05-23T02:07:44.000Z" + }, + "events": [ + { + "uuid": "0eda6816-ad54-43a9-83d7-d2f7b15b5873", + "start": { + "$date": "2022-05-23T00:54:22.000Z" + }, + "end": { + "$date": "2022-05-23T02:07:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "4531e26c-d4c4-425f-98a7-40f958cd41c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-23T01:21:57.000Z" + }, + "end": { + "$date": "2022-05-23T02:30:54.000Z" + }, + "events": [ + { + "uuid": "8548e2d1-cfff-4dd8-8684-c2d7bcaf5c14", + "start": { + "$date": "2022-05-23T01:21:57.000Z" + }, + "end": { + "$date": "2022-05-23T02:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03539e31-298c-4c19-9815-226144f13804", + "uuid": "41b61fda-872b-4055-810c-19cc0d6d47e8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T02:07:49.000Z" + }, + "end": { + "$date": "2022-05-23T02:38:30.000Z" + }, + "events": [ + { + "uuid": "15b816c8-65a7-4722-87f3-075c6d201e61", + "start": { + "$date": "2022-05-23T02:07:49.000Z" + }, + "end": { + "$date": "2022-05-23T02:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "6676d0de-f5a7-44c6-ad97-7f4ebfa9e443", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-23T02:08:58.000Z" + }, + "end": { + "$date": "2022-05-23T02:19:53.000Z" + }, + "events": [ + { + "uuid": "4133fd6e-ad11-4eaa-b2eb-d03616e0f228", + "start": { + "$date": "2022-05-23T02:08:58.000Z" + }, + "end": { + "$date": "2022-05-23T02:19:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "5df3380e-5124-45e2-a52b-b49eedfd3af8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T02:38:35.000Z" + }, + "end": { + "$date": "2022-05-23T04:32:28.000Z" + }, + "events": [ + { + "uuid": "cd381a05-0bce-4f42-b7a1-837b63da70b3", + "start": { + "$date": "2022-05-23T02:38:35.000Z" + }, + "end": { + "$date": "2022-05-23T04:32:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "02682ca5-82c6-4d85-8824-84f80833aecd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-23T02:56:41.000Z" + }, + "end": { + "$date": "2022-05-23T05:13:28.000Z" + }, + "events": [ + { + "uuid": "282cb94f-afad-4525-baca-001ec4f619ce", + "start": { + "$date": "2022-05-23T02:56:41.000Z" + }, + "end": { + "$date": "2022-05-23T05:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "357df372-91ad-4ed5-a791-512ee573f594", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-23T03:43:42.000Z" + }, + "end": { + "$date": "2022-05-23T05:38:38.000Z" + }, + "events": [ + { + "uuid": "0980ac3a-e79f-4850-8627-3af5bbfc8987", + "start": { + "$date": "2022-05-23T03:43:42.000Z" + }, + "end": { + "$date": "2022-05-23T05:38:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "931ffdb0-6191-41bd-b88a-4b94e958a8e6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T05:57:15.000Z" + }, + "end": { + "$date": "2022-05-23T07:15:31.000Z" + }, + "events": [ + { + "uuid": "325851e4-476c-4c2a-98cd-e85096b4bde6", + "start": { + "$date": "2022-05-23T05:57:15.000Z" + }, + "end": { + "$date": "2022-05-23T07:15:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "245d2845-6471-4c14-823d-496f60c34113", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-23T06:27:21.000Z" + }, + "end": { + "$date": "2022-05-23T06:40:42.000Z" + }, + "events": [ + { + "uuid": "fbb67585-a4a3-4079-8474-eb96cda27c0b", + "start": { + "$date": "2022-05-23T06:27:21.000Z" + }, + "end": { + "$date": "2022-05-23T06:40:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "d7ad2b6d-7098-4afa-aff5-a6979d6d2a26", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-23T11:17:44.000Z" + }, + "end": { + "$date": "2022-05-23T12:48:55.000Z" + }, + "events": [ + { + "uuid": "6adeb0df-d1c2-41f5-ac0b-be1cb3cb85ee", + "start": { + "$date": "2022-05-23T11:17:44.000Z" + }, + "end": { + "$date": "2022-05-23T12:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ffdcce51-02e7-4466-aef5-07b7821be61c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-23T16:33:34.000Z" + }, + "end": { + "$date": "2022-05-23T17:12:51.000Z" + }, + "events": [ + { + "uuid": "b0807cc6-8bb5-4039-b4cc-e62edb2ad7d0", + "start": { + "$date": "2022-05-23T16:33:34.000Z" + }, + "end": { + "$date": "2022-05-23T17:12:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "57d8a277-c67b-48e2-ae77-69b0eab4d766", + "uuid": "eacb39dc-5099-474c-ade5-d7b073929cf7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-23T17:13:46.000Z" + }, + "end": { + "$date": "2022-05-23T17:16:11.000Z" + }, + "events": [ + { + "uuid": "095ba4b9-4f73-4971-87fa-20c1db41d05f", + "start": { + "$date": "2022-05-23T17:13:46.000Z" + }, + "end": { + "$date": "2022-05-23T17:16:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "093e4c67-ed19-4bf4-8881-fad2009d8cd9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T18:30:41.000Z" + }, + "end": { + "$date": "2022-05-23T19:34:04.000Z" + }, + "events": [ + { + "uuid": "a3b9b765-08f1-4151-b9aa-23afdf7c926d", + "start": { + "$date": "2022-05-23T18:30:41.000Z" + }, + "end": { + "$date": "2022-05-23T19:34:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "0822e10e-78b2-4640-8c3c-e921aa544215", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-23T22:06:22.000Z" + }, + "end": { + "$date": "2022-05-23T23:38:48.000Z" + }, + "events": [ + { + "uuid": "10cb0f40-3905-45c4-ab83-7dda312a695b", + "start": { + "$date": "2022-05-23T22:06:22.000Z" + }, + "end": { + "$date": "2022-05-23T23:38:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8402e513-5ecd-4aa9-a5cf-9422f146cc06", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-23T23:36:21.000Z" + }, + "end": { + "$date": "2022-05-24T00:55:08.000Z" + }, + "events": [ + { + "uuid": "3f21242f-40ba-484d-a4ef-e977eb1f5695", + "start": { + "$date": "2022-05-23T23:36:21.000Z" + }, + "end": { + "$date": "2022-05-24T00:55:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "0b67b7c0-b0d7-49f5-a167-7f20404a2142", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T00:43:00.000Z" + }, + "end": { + "$date": "2022-05-24T00:54:28.000Z" + }, + "events": [ + { + "uuid": "f60b7653-ed42-41b2-a48a-af53c9a410a9", + "start": { + "$date": "2022-05-24T00:43:00.000Z" + }, + "end": { + "$date": "2022-05-24T00:54:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1ba181ea-9a7b-40f5-a928-ab3bf06cc41f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T00:55:23.000Z" + }, + "end": { + "$date": "2022-05-24T03:37:59.000Z" + }, + "events": [ + { + "uuid": "9f5b896b-8cac-4a36-a3fb-747d50e2f737", + "start": { + "$date": "2022-05-24T00:55:23.000Z" + }, + "end": { + "$date": "2022-05-24T02:05:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8365994b-f8cc-42cc-a404-8141933e8eab", + "start": { + "$date": "2022-05-24T02:05:23.000Z" + }, + "end": { + "$date": "2022-05-24T02:43:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be378323-0bea-4b00-8c1d-cb3d63f6c23f", + "start": { + "$date": "2022-05-24T02:43:23.000Z" + }, + "end": { + "$date": "2022-05-24T03:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "551f8617-a58b-4df5-9af6-16583bcfd422", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-24T01:26:11.000Z" + }, + "end": { + "$date": "2022-05-24T02:00:48.000Z" + }, + "events": [ + { + "uuid": "8157bda2-9d01-4907-9e00-7ddea1ced1f1", + "start": { + "$date": "2022-05-24T01:26:11.000Z" + }, + "end": { + "$date": "2022-05-24T02:00:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "26b63fa7-58cb-4b36-b1a9-3e6a8ef6edb9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-24T02:14:20.000Z" + }, + "end": { + "$date": "2022-05-24T05:59:11.000Z" + }, + "events": [ + { + "uuid": "bc63f0c3-a5cd-4fbd-bd8d-979ecf2786fb", + "start": { + "$date": "2022-05-24T02:14:20.000Z" + }, + "end": { + "$date": "2022-05-24T05:59:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "55918a52-a6b6-4ca2-b201-120ed5d3b02d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-24T02:33:16.000Z" + }, + "end": { + "$date": "2022-05-24T03:06:59.000Z" + }, + "events": [ + { + "uuid": "b9833403-b31c-4d94-9fda-7f3fe7f3444f", + "start": { + "$date": "2022-05-24T02:33:16.000Z" + }, + "end": { + "$date": "2022-05-24T03:06:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ba1d699c-f1de-4c85-922a-7d51ef3a7427", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-24T02:43:43.000Z" + }, + "end": { + "$date": "2022-05-24T04:12:02.000Z" + }, + "events": [ + { + "uuid": "263679cf-a63a-46f3-9830-a91e278e288b", + "start": { + "$date": "2022-05-24T02:43:43.000Z" + }, + "end": { + "$date": "2022-05-24T04:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8ea5dc2-2e63-4dd1-a5b6-a823b5562c78", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-24T03:05:19.000Z" + }, + "end": { + "$date": "2022-05-24T04:45:36.000Z" + }, + "events": [ + { + "uuid": "99b4b154-a5a1-4acd-9d01-e28ea227b803", + "start": { + "$date": "2022-05-24T03:05:19.000Z" + }, + "end": { + "$date": "2022-05-24T04:45:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f871fc1f-f280-4733-aaf1-e33060285c25", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T03:38:29.000Z" + }, + "end": { + "$date": "2022-05-24T03:56:51.000Z" + }, + "events": [ + { + "uuid": "4d4972ff-6560-4b08-a756-9f6ca833477a", + "start": { + "$date": "2022-05-24T03:38:29.000Z" + }, + "end": { + "$date": "2022-05-24T03:56:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "162a6cfe-9db8-43df-825e-dfe96518c4f9", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-24T03:40:37.000Z" + }, + "end": { + "$date": "2022-05-24T05:32:32.000Z" + }, + "events": [ + { + "uuid": "8a46c9ac-fd01-4933-a051-c6dfc5809c79", + "start": { + "$date": "2022-05-24T03:40:37.000Z" + }, + "end": { + "$date": "2022-05-24T03:42:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4e0e0317-d5b5-446b-aab8-579571e4df7c", + "start": { + "$date": "2022-05-24T03:42:37.000Z" + }, + "end": { + "$date": "2022-05-24T03:44:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9af3000-4a07-4fb1-a5bc-d7926199b19b", + "start": { + "$date": "2022-05-24T03:44:37.000Z" + }, + "end": { + "$date": "2022-05-24T05:28:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33c6db1e-0b60-4cc2-960c-c0f97b84d977", + "start": { + "$date": "2022-05-24T05:28:37.000Z" + }, + "end": { + "$date": "2022-05-24T05:32:32.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "abdad557-3bac-42a7-ad72-1cff46da68f5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-24T04:02:36.000Z" + }, + "end": { + "$date": "2022-05-24T04:30:56.000Z" + }, + "events": [ + { + "uuid": "478a5f9f-3a37-4ba3-bd08-b8802476c731", + "start": { + "$date": "2022-05-24T04:02:36.000Z" + }, + "end": { + "$date": "2022-05-24T04:30:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "64b8f13f-0054-4153-b8f6-e75d7b9582cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T04:11:34.000Z" + }, + "end": { + "$date": "2022-05-24T04:33:02.000Z" + }, + "events": [ + { + "uuid": "f8570563-59dc-4f88-92e0-dc2d9e29a54f", + "start": { + "$date": "2022-05-24T04:11:34.000Z" + }, + "end": { + "$date": "2022-05-24T04:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "0e57810c-3922-4f81-afbc-291e39b56b11", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T04:35:03.000Z" + }, + "end": { + "$date": "2022-05-24T05:03:56.000Z" + }, + "events": [ + { + "uuid": "36122d1a-31db-49c5-8c3b-a50988522828", + "start": { + "$date": "2022-05-24T04:35:03.000Z" + }, + "end": { + "$date": "2022-05-24T05:03:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2cb3bc66-75b3-411d-87f6-b3bcde1d3630", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-24T05:00:56.000Z" + }, + "end": { + "$date": "2022-05-24T05:44:01.000Z" + }, + "events": [ + { + "uuid": "ee231a20-b22c-4ee7-8f51-157ec4ea79ba", + "start": { + "$date": "2022-05-24T05:00:56.000Z" + }, + "end": { + "$date": "2022-05-24T05:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0dc3f722-336d-40eb-93ff-ff29d419e8eb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-24T15:04:41.000Z" + }, + "end": { + "$date": "2022-05-24T16:17:44.000Z" + }, + "events": [ + { + "uuid": "7f8fb8cd-e756-47d4-9da8-43fada2c2059", + "start": { + "$date": "2022-05-24T15:04:41.000Z" + }, + "end": { + "$date": "2022-05-24T16:17:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "493a3439-b466-44fe-8159-758856b48d86", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-24T15:39:08.000Z" + }, + "end": { + "$date": "2022-05-24T15:44:25.000Z" + }, + "events": [ + { + "uuid": "abea99cc-9c05-4409-8e61-54f2e2bcab6f", + "start": { + "$date": "2022-05-24T15:39:08.000Z" + }, + "end": { + "$date": "2022-05-24T15:44:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9873e8d1-cbc1-46f3-9cfa-1577aeb78659", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-24T16:40:21.000Z" + }, + "end": { + "$date": "2022-05-24T17:16:18.000Z" + }, + "events": [ + { + "uuid": "0749b021-a3a4-460d-a96d-da4022b2c223", + "start": { + "$date": "2022-05-24T16:40:21.000Z" + }, + "end": { + "$date": "2022-05-24T17:16:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "9d0a2317-0692-4d50-a7b4-04f486d26255", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-24T17:02:20.000Z" + }, + "end": { + "$date": "2022-05-24T17:06:20.000Z" + }, + "events": [ + { + "uuid": "5a9e53cb-f2fb-4a4a-a44d-7b988409019e", + "start": { + "$date": "2022-05-24T17:02:20.000Z" + }, + "end": { + "$date": "2022-05-24T17:06:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "18295547-dab8-41b5-906b-ee24f2078ae8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-24T20:27:21.000Z" + }, + "end": { + "$date": "2022-05-24T21:08:49.000Z" + }, + "events": [ + { + "uuid": "047de119-2993-45ce-aea3-4711962e2219", + "start": { + "$date": "2022-05-24T20:27:21.000Z" + }, + "end": { + "$date": "2022-05-24T21:08:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dc7257bb-0c6b-4e3f-aff7-008f4d8d07bd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T20:50:37.000Z" + }, + "end": { + "$date": "2022-05-24T21:04:48.000Z" + }, + "events": [ + { + "uuid": "684b946e-93c6-491b-851f-6a55bd75d2e7", + "start": { + "$date": "2022-05-24T20:50:37.000Z" + }, + "end": { + "$date": "2022-05-24T21:04:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "dfa32d4c-a298-4de5-981d-2f3ab29b0083", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-24T21:20:24.000Z" + }, + "end": { + "$date": "2022-05-24T21:50:20.000Z" + }, + "events": [ + { + "uuid": "aee2ebff-1c50-44c1-93f0-5fc5567668d1", + "start": { + "$date": "2022-05-24T21:20:24.000Z" + }, + "end": { + "$date": "2022-05-24T21:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c30e6fb4-3130-4f4a-b981-8868750141b8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-24T21:25:02.000Z" + }, + "end": { + "$date": "2022-05-24T23:06:31.000Z" + }, + "events": [ + { + "uuid": "24a514c4-c0e4-4130-bcb0-a821dd369786", + "start": { + "$date": "2022-05-24T21:25:02.000Z" + }, + "end": { + "$date": "2022-05-24T21:37:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a68130e-9624-4988-b9b3-7745d1e8e2e7", + "start": { + "$date": "2022-05-24T21:37:02.000Z" + }, + "end": { + "$date": "2022-05-24T22:08:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "689f0bf6-240e-4c46-8a19-b54e4c0ddc38", + "start": { + "$date": "2022-05-24T22:08:02.000Z" + }, + "end": { + "$date": "2022-05-24T22:28:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "15edc21d-92c5-4993-9e87-956370469fe8", + "start": { + "$date": "2022-05-24T22:28:02.000Z" + }, + "end": { + "$date": "2022-05-24T22:32:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "52889a8f-d5f0-47f3-ad33-a05e59bcaa25", + "start": { + "$date": "2022-05-24T22:32:02.000Z" + }, + "end": { + "$date": "2022-05-24T23:06:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "89eb2d17-41a0-4961-bc34-055fa51a69a9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-24T22:12:31.000Z" + }, + "end": { + "$date": "2022-05-24T23:01:14.000Z" + }, + "events": [ + { + "uuid": "8df1479e-04f3-43d8-b6b9-ca88018200ca", + "start": { + "$date": "2022-05-24T22:12:31.000Z" + }, + "end": { + "$date": "2022-05-24T23:01:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "3ad7e5f3-7d0a-4b7c-94ef-c927b245b7bc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-24T22:57:50.000Z" + }, + "end": { + "$date": "2022-05-25T01:41:19.000Z" + }, + "events": [ + { + "uuid": "9c1b3cff-101c-49e0-af78-ac7125cc1898", + "start": { + "$date": "2022-05-24T22:57:50.000Z" + }, + "end": { + "$date": "2022-05-24T23:47:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d4c16dae-a53f-4af4-8271-77f5c6c2f548", + "start": { + "$date": "2022-05-24T23:47:50.000Z" + }, + "end": { + "$date": "2022-05-24T23:53:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0dc01129-55e1-4634-94f0-e518fcc26dd6", + "start": { + "$date": "2022-05-24T23:53:50.000Z" + }, + "end": { + "$date": "2022-05-25T01:41:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "858510c5-ad63-48a9-ae9d-2c0163b83dd7", + "uuid": "c064d39f-f802-4789-8c44-f34a62003215", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-24T23:09:15.000Z" + }, + "end": { + "$date": "2022-05-24T23:20:50.000Z" + }, + "events": [ + { + "uuid": "f8032e40-ddaf-4a15-9100-f1130fa6424b", + "start": { + "$date": "2022-05-24T23:09:15.000Z" + }, + "end": { + "$date": "2022-05-24T23:20:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "252b1fed-34f4-4c66-a5f2-22deceb7bac0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-21T03:30:14.000Z" + }, + "end": { + "$date": "2022-05-24T23:31:23.000Z" + }, + "events": [ + { + "uuid": "94bf7145-578f-43cd-9385-d6cadd5a1373", + "start": { + "$date": "2022-05-21T03:30:14.000Z" + }, + "end": { + "$date": "2022-05-24T23:31:23.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff444bd5-a83b-4e2a-b140-150465796409", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-25T00:05:15.000Z" + }, + "end": { + "$date": "2022-05-25T00:06:35.000Z" + }, + "events": [ + { + "uuid": "b1efadc7-3697-4715-a356-8c999d7033d6", + "start": { + "$date": "2022-05-25T00:05:15.000Z" + }, + "end": { + "$date": "2022-05-25T00:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bede66ad-acec-42e7-b843-af885869b882", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-25T00:06:45.000Z" + }, + "end": { + "$date": "2022-05-25T01:48:52.000Z" + }, + "events": [ + { + "uuid": "a82eb1ee-8fa2-4bb2-bee8-2502024d5a9d", + "start": { + "$date": "2022-05-25T00:06:45.000Z" + }, + "end": { + "$date": "2022-05-25T01:48:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0e78003-5ddd-4354-804b-df6234439767", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-25T01:45:26.000Z" + }, + "end": { + "$date": "2022-05-25T02:26:44.000Z" + }, + "events": [ + { + "uuid": "16a672ec-3c24-4a28-bf0c-a36b1ae38995", + "start": { + "$date": "2022-05-25T01:45:26.000Z" + }, + "end": { + "$date": "2022-05-25T02:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "51145704-58c4-4721-97e5-1a5f7b1c462a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-25T01:45:45.000Z" + }, + "end": { + "$date": "2022-05-25T06:03:17.000Z" + }, + "events": [ + { + "uuid": "b733ac71-29f0-486c-a997-ada149ac021d", + "start": { + "$date": "2022-05-25T01:45:45.000Z" + }, + "end": { + "$date": "2022-05-25T06:03:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "564c0598-0088-4caa-bd08-1c6730190241", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-25T01:48:22.000Z" + }, + "end": { + "$date": "2022-05-25T03:45:05.000Z" + }, + "events": [ + { + "uuid": "4d27cd40-c0dd-42c6-8555-1cc125387d3d", + "start": { + "$date": "2022-05-25T01:48:22.000Z" + }, + "end": { + "$date": "2022-05-25T02:41:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7af5c313-8911-4b5b-9bfd-4b36bde3c7e5", + "start": { + "$date": "2022-05-25T02:41:22.000Z" + }, + "end": { + "$date": "2022-05-25T03:00:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "800ecacf-010b-428d-a27e-676cae56028e", + "start": { + "$date": "2022-05-25T03:00:22.000Z" + }, + "end": { + "$date": "2022-05-25T03:20:22.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7524cdbc-8a8e-4e2b-b0ab-bfcf9f1416fd", + "start": { + "$date": "2022-05-25T03:20:22.000Z" + }, + "end": { + "$date": "2022-05-25T03:22:22.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4497c112-240e-4eff-9b18-7378a8ccbada", + "start": { + "$date": "2022-05-25T03:22:22.000Z" + }, + "end": { + "$date": "2022-05-25T03:45:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "23a16412-500e-446a-a339-9f26bc3f571f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-25T01:49:06.000Z" + }, + "end": { + "$date": "2022-05-25T04:44:59.000Z" + }, + "events": [ + { + "uuid": "2ec0ec6b-5309-443d-ab56-93c91c20470e", + "start": { + "$date": "2022-05-25T01:49:06.000Z" + }, + "end": { + "$date": "2022-05-25T04:44:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "cee87696-2862-4e8a-a411-300ecd12fbb4", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-25T01:53:48.000Z" + }, + "end": { + "$date": "2022-05-25T01:55:08.000Z" + }, + "events": [ + { + "uuid": "d84c96ce-0c40-4206-ba16-b77053ff9b9d", + "start": { + "$date": "2022-05-25T01:53:48.000Z" + }, + "end": { + "$date": "2022-05-25T01:55:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "31087020-715a-4274-8318-2da6ec410169", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-25T02:35:29.000Z" + }, + "end": { + "$date": "2022-05-25T02:36:38.000Z" + }, + "events": [ + { + "uuid": "c090e9bd-6436-4160-b14e-609b2dcffd3a", + "start": { + "$date": "2022-05-25T02:35:29.000Z" + }, + "end": { + "$date": "2022-05-25T02:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "db3bf57c-93bd-49eb-a077-ee48734cc008", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-25T02:37:09.000Z" + }, + "end": { + "$date": "2022-05-25T03:28:47.000Z" + }, + "events": [ + { + "uuid": "2891393a-7403-4243-b0d5-ced892d485d9", + "start": { + "$date": "2022-05-25T02:37:09.000Z" + }, + "end": { + "$date": "2022-05-25T03:28:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "069ac6a0-d352-4850-9fb2-bb331769b035", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-25T03:46:01.000Z" + }, + "end": { + "$date": "2022-05-25T04:21:02.000Z" + }, + "events": [ + { + "uuid": "67241c04-c991-4e82-aa62-12a59605b66c", + "start": { + "$date": "2022-05-25T03:46:01.000Z" + }, + "end": { + "$date": "2022-05-25T04:21:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "adc45b92-8576-4f9f-9f07-b51ad8299dc8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-25T03:47:38.000Z" + }, + "end": { + "$date": "2022-05-25T03:50:15.000Z" + }, + "events": [ + { + "uuid": "613eab11-d3f4-45fe-b40e-3e2d7951dd71", + "start": { + "$date": "2022-05-25T03:47:38.000Z" + }, + "end": { + "$date": "2022-05-25T03:50:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7096ea22-b1d0-4682-b617-fe4bb3c9223b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-25T04:05:26.000Z" + }, + "end": { + "$date": "2022-05-25T04:48:10.000Z" + }, + "events": [ + { + "uuid": "74b54056-bef7-453b-97a6-7c450c2b7744", + "start": { + "$date": "2022-05-25T04:05:26.000Z" + }, + "end": { + "$date": "2022-05-25T04:48:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dcb3dc76-e62d-4737-ab33-3f326f3ef454", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-25T04:06:21.000Z" + }, + "end": { + "$date": "2022-05-25T04:10:18.000Z" + }, + "events": [ + { + "uuid": "cdcc6e08-29fc-417c-ade4-81e011d18854", + "start": { + "$date": "2022-05-25T04:06:21.000Z" + }, + "end": { + "$date": "2022-05-25T04:10:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "091c819d-2ab6-4f8f-87af-57b23ac6599b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-25T04:13:26.000Z" + }, + "end": { + "$date": "2022-05-25T05:14:19.000Z" + }, + "events": [ + { + "uuid": "6525103c-8e0a-4d51-bd80-7b77e5d951c4", + "start": { + "$date": "2022-05-25T04:13:26.000Z" + }, + "end": { + "$date": "2022-05-25T05:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "226bc906-9bec-4b7f-bb4e-ff911036a1f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-25T04:57:11.000Z" + }, + "end": { + "$date": "2022-05-25T05:03:28.000Z" + }, + "events": [ + { + "uuid": "978bdf85-f89a-413b-b79a-91483cf0024b", + "start": { + "$date": "2022-05-25T04:57:11.000Z" + }, + "end": { + "$date": "2022-05-25T05:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "448b43d3-45ea-48bc-a54a-c76700df223f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-25T05:03:43.000Z" + }, + "end": { + "$date": "2022-05-25T06:03:24.000Z" + }, + "events": [ + { + "uuid": "2b5ef562-0206-491a-b888-e38918b1a045", + "start": { + "$date": "2022-05-25T05:03:43.000Z" + }, + "end": { + "$date": "2022-05-25T06:03:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "e3dfb090-0969-438c-89db-de9c03790dc2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-25T05:20:37.000Z" + }, + "end": { + "$date": "2022-05-25T05:22:42.000Z" + }, + "events": [ + { + "uuid": "468455e4-4d60-48ef-ac7c-155b54ecaa99", + "start": { + "$date": "2022-05-25T05:20:37.000Z" + }, + "end": { + "$date": "2022-05-25T05:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "4212e3fb-d97b-4312-a904-a8a2a9d0cf18", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-25T05:23:32.000Z" + }, + "end": { + "$date": "2022-05-25T06:03:28.000Z" + }, + "events": [ + { + "uuid": "a5dc20ef-b78c-4365-9268-11bb1997c77d", + "start": { + "$date": "2022-05-25T05:23:32.000Z" + }, + "end": { + "$date": "2022-05-25T06:03:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "778573aa-631c-469c-bfa7-5ff472eecabb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-25T06:14:13.000Z" + }, + "end": { + "$date": "2022-05-25T07:05:10.000Z" + }, + "events": [ + { + "uuid": "2d4ff487-dc56-4bca-9d37-fdbeef90cba1", + "start": { + "$date": "2022-05-25T06:14:13.000Z" + }, + "end": { + "$date": "2022-05-25T07:05:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "8c6f2142-4f5e-4c24-b793-2f73346d398f", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-25T13:48:54.000Z" + }, + "end": { + "$date": "2022-05-25T14:01:21.000Z" + }, + "events": [ + { + "uuid": "c3e206a5-1059-4401-924f-f6e560e626b1", + "start": { + "$date": "2022-05-25T13:48:54.000Z" + }, + "end": { + "$date": "2022-05-25T14:01:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "c2f9794e-4edc-4ce3-9eb0-5342ff21b534", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-25T14:22:02.000Z" + }, + "end": { + "$date": "2022-05-25T14:31:38.000Z" + }, + "events": [ + { + "uuid": "4285c5dd-453c-4f81-a74c-edc19e9f49cc", + "start": { + "$date": "2022-05-25T14:22:02.000Z" + }, + "end": { + "$date": "2022-05-25T14:31:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "365c3bed-a62a-43c2-8aad-02690c0f8e29", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-25T14:43:03.000Z" + }, + "end": { + "$date": "2022-05-25T17:24:31.000Z" + }, + "events": [ + { + "uuid": "a5c786a5-25b1-4f56-a5ae-7f4f090d3e8f", + "start": { + "$date": "2022-05-25T14:43:03.000Z" + }, + "end": { + "$date": "2022-05-25T17:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "9d5bff8f-9b5b-41ca-b7f6-48be0f6f2bd9", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-25T15:09:47.000Z" + }, + "end": { + "$date": "2022-05-25T15:13:58.000Z" + }, + "events": [ + { + "uuid": "75a2236a-fe09-42f4-bdc5-fb0289b7ba40", + "start": { + "$date": "2022-05-25T15:09:47.000Z" + }, + "end": { + "$date": "2022-05-25T15:13:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "41222ba4-4d34-44bf-8f6f-c6117ff63c66", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-25T16:14:26.000Z" + }, + "end": { + "$date": "2022-05-25T16:18:07.000Z" + }, + "events": [ + { + "uuid": "ad83e8e2-8668-476f-a745-3eefaea23f5d", + "start": { + "$date": "2022-05-25T16:14:26.000Z" + }, + "end": { + "$date": "2022-05-25T16:18:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "4bafda8b-49bf-4254-9fbd-120bf2f4f828", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-25T16:37:58.000Z" + }, + "end": { + "$date": "2022-05-25T16:51:45.000Z" + }, + "events": [ + { + "uuid": "4b4c0674-5150-452c-a5a4-097f3e0296c6", + "start": { + "$date": "2022-05-25T16:37:58.000Z" + }, + "end": { + "$date": "2022-05-25T16:51:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "dcc3dfcd-8e47-41f0-8980-24231cfdc8ff", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-25T16:52:20.000Z" + }, + "end": { + "$date": "2022-05-25T18:18:03.000Z" + }, + "events": [ + { + "uuid": "58590daf-068d-4d63-b1dd-64626a0e70f6", + "start": { + "$date": "2022-05-25T16:52:20.000Z" + }, + "end": { + "$date": "2022-05-25T17:03:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "72ec8479-5b7d-4ed6-932f-e1950facb301", + "start": { + "$date": "2022-05-25T17:03:20.000Z" + }, + "end": { + "$date": "2022-05-25T17:04:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "56fcffd6-f071-410f-a17d-9858fab11b2c", + "start": { + "$date": "2022-05-25T17:04:20.000Z" + }, + "end": { + "$date": "2022-05-25T18:18:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "74129e22-775a-4a70-879e-a8d585872fde", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-25T17:14:58.000Z" + }, + "end": { + "$date": "2022-05-25T17:54:45.000Z" + }, + "events": [ + { + "uuid": "6054ee82-1830-4057-b71c-4270d15e3434", + "start": { + "$date": "2022-05-25T17:14:58.000Z" + }, + "end": { + "$date": "2022-05-25T17:54:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "af334027-d938-46f4-9bda-c8d8d7accc88", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-25T19:55:54.000Z" + }, + "end": { + "$date": "2022-05-25T20:55:52.000Z" + }, + "events": [ + { + "uuid": "756d7327-1029-4c68-a7ca-977f98f5ac6a", + "start": { + "$date": "2022-05-25T19:55:54.000Z" + }, + "end": { + "$date": "2022-05-25T20:55:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "1ed8b0fb-9adc-4f63-a485-ace4db7473fb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-25T21:26:33.000Z" + }, + "end": { + "$date": "2022-05-25T22:42:11.000Z" + }, + "events": [ + { + "uuid": "c6fca3be-12d3-4dc5-9b79-e2e32d4ff3e5", + "start": { + "$date": "2022-05-25T21:26:33.000Z" + }, + "end": { + "$date": "2022-05-25T21:50:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a46b745b-b815-4ce8-9b88-d8ffa6c485b4", + "start": { + "$date": "2022-05-25T21:50:33.000Z" + }, + "end": { + "$date": "2022-05-25T21:55:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "430718d5-2f2c-47c4-a6d1-f33c7ae1da23", + "start": { + "$date": "2022-05-25T21:55:33.000Z" + }, + "end": { + "$date": "2022-05-25T22:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "21fab3ba-14da-4071-a555-1129b73dd252", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-25T22:46:34.000Z" + }, + "end": { + "$date": "2022-05-25T22:56:13.000Z" + }, + "events": [ + { + "uuid": "1b2e5f1a-f755-449f-afba-36909878fa6d", + "start": { + "$date": "2022-05-25T22:46:34.000Z" + }, + "end": { + "$date": "2022-05-25T22:56:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "2a4ca3a3-f176-4a36-9cd4-dd9f26447c0f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-25T23:02:35.000Z" + }, + "end": { + "$date": "2022-05-25T23:08:42.000Z" + }, + "events": [ + { + "uuid": "46553f47-e7ce-4c92-8264-714197affd6d", + "start": { + "$date": "2022-05-25T23:02:35.000Z" + }, + "end": { + "$date": "2022-05-25T23:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "dbf4d827-e62d-4a31-a439-657fa5026eb9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T01:09:07.000Z" + }, + "end": { + "$date": "2022-05-26T01:10:28.000Z" + }, + "events": [ + { + "uuid": "645c1acf-e846-47d8-8e1f-7ba87e1c902d", + "start": { + "$date": "2022-05-26T01:09:07.000Z" + }, + "end": { + "$date": "2022-05-26T01:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "f3bf03fa-2e1a-4a06-9abf-933c2280b8b0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T01:10:52.000Z" + }, + "end": { + "$date": "2022-05-26T01:26:44.000Z" + }, + "events": [ + { + "uuid": "64f5842f-5ce5-4394-ae25-1e4451ae6a51", + "start": { + "$date": "2022-05-26T01:10:52.000Z" + }, + "end": { + "$date": "2022-05-26T01:26:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", + "uuid": "d54a4a1b-cec9-4aae-b35e-596ed26dff56", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-26T01:34:19.000Z" + }, + "end": { + "$date": "2022-05-26T02:28:42.000Z" + }, + "events": [ + { + "uuid": "a0b840b7-8ca0-4255-b441-b3e58683f314", + "start": { + "$date": "2022-05-26T01:34:19.000Z" + }, + "end": { + "$date": "2022-05-26T02:28:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "486cea16-cd8f-4b65-ab1e-7205ba266924", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-26T02:02:39.000Z" + }, + "end": { + "$date": "2022-05-26T03:05:29.000Z" + }, + "events": [ + { + "uuid": "63f62b91-7694-4780-87d8-f000b2d6d331", + "start": { + "$date": "2022-05-26T02:02:39.000Z" + }, + "end": { + "$date": "2022-05-26T03:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "8e72038d-4f54-4389-9434-8677f69ae76f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T02:08:56.000Z" + }, + "end": { + "$date": "2022-05-26T02:10:28.000Z" + }, + "events": [ + { + "uuid": "34bee490-5ba4-4f8e-aac6-13bbfd4c63d1", + "start": { + "$date": "2022-05-26T02:08:56.000Z" + }, + "end": { + "$date": "2022-05-26T02:10:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "d21c8ecb-b418-403b-9745-8bd9b98dff1c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T04:28:05.000Z" + }, + "events": [ + { + "uuid": "e3248128-b243-4ea5-a7f7-cdccdcd7094c", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T06:10:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e1933fa-020e-400f-93f2-1be0ec3656d4", + "start": { + "$date": "2022-05-26T06:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T06:18:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "320b3651-9457-488e-8a6c-2c6ed6e02ff2", + "start": { + "$date": "2022-05-26T06:18:26.000Z" + }, + "end": { + "$date": "2022-05-26T04:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "25e824e6-c747-4cd7-81dd-20ddf2927e01", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-26T02:38:50.000Z" + }, + "end": { + "$date": "2022-05-26T03:42:40.000Z" + }, + "events": [ + { + "uuid": "ae71972b-b7ee-4f48-8888-b1e31151a2ec", + "start": { + "$date": "2022-05-26T02:38:50.000Z" + }, + "end": { + "$date": "2022-05-26T03:42:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fce3de4e-b02d-4168-90b0-c3270bff2f2e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T02:53:03.000Z" + }, + "end": { + "$date": "2022-05-26T04:24:13.000Z" + }, + "events": [ + { + "uuid": "cd7063cb-1804-49b3-9402-9dcff32253c6", + "start": { + "$date": "2022-05-26T02:53:03.000Z" + }, + "end": { + "$date": "2022-05-26T04:24:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f7bac11d-f867-4f8e-afc1-a0d99026cec6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-26T02:56:53.000Z" + }, + "end": { + "$date": "2022-05-26T04:23:32.000Z" + }, + "events": [ + { + "uuid": "31b05aba-2736-4108-850d-d23f669409de", + "start": { + "$date": "2022-05-26T02:56:53.000Z" + }, + "end": { + "$date": "2022-05-26T04:23:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7c42951f-bc93-435b-a427-1a632fc91d37", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T03:07:29.000Z" + }, + "end": { + "$date": "2022-05-26T03:47:20.000Z" + }, + "events": [ + { + "uuid": "f808f3c5-df1f-4e49-9b44-134b2dd75005", + "start": { + "$date": "2022-05-26T03:07:29.000Z" + }, + "end": { + "$date": "2022-05-26T03:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "bcef1450-15dd-4a09-968e-702e9383ac20", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-26T03:10:55.000Z" + }, + "end": { + "$date": "2022-05-26T04:00:10.000Z" + }, + "events": [ + { + "uuid": "060c7790-cbb8-4776-9829-54ff7e0c22b0", + "start": { + "$date": "2022-05-26T03:10:55.000Z" + }, + "end": { + "$date": "2022-05-26T04:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "854aecdf-bc57-40e7-9557-4be8555b79a0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-26T03:27:06.000Z" + }, + "end": { + "$date": "2022-05-26T03:39:28.000Z" + }, + "events": [ + { + "uuid": "e7c4b397-3c9a-414d-ae7d-29a0c4038fca", + "start": { + "$date": "2022-05-26T03:27:06.000Z" + }, + "end": { + "$date": "2022-05-26T03:39:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8fcaa166-896f-48b4-a34e-f9aff8bc4f6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T03:50:11.000Z" + }, + "end": { + "$date": "2022-05-26T06:46:44.000Z" + }, + "events": [ + { + "uuid": "8545e31a-4393-4df4-aea8-8cd96f3fadf8", + "start": { + "$date": "2022-05-26T03:50:11.000Z" + }, + "end": { + "$date": "2022-05-26T06:46:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "fd4ea975-d83c-4ed1-b1ee-4d7e1bf4ac24", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-26T04:02:10.000Z" + }, + "end": { + "$date": "2022-05-26T05:43:17.000Z" + }, + "events": [ + { + "uuid": "59433738-4e8f-412e-9702-97a2cbfce130", + "start": { + "$date": "2022-05-26T04:02:10.000Z" + }, + "end": { + "$date": "2022-05-26T05:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "24f304ff-fb14-4bcb-9a4e-b5c377fb4311", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T04:41:15.000Z" + }, + "end": { + "$date": "2022-05-26T06:00:20.000Z" + }, + "events": [ + { + "uuid": "54473c29-a8a8-46ef-9500-e015960942e6", + "start": { + "$date": "2022-05-26T04:41:15.000Z" + }, + "end": { + "$date": "2022-05-26T06:00:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "9c4eacb2-5683-47fd-be79-7c30ba29f418", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-26T07:49:43.000Z" + }, + "end": { + "$date": "2022-05-26T10:44:13.000Z" + }, + "events": [ + { + "uuid": "e6cd4683-97fe-4570-8d6c-c1d3d68b42c2", + "start": { + "$date": "2022-05-26T07:49:43.000Z" + }, + "end": { + "$date": "2022-05-26T10:44:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "8bd39682-4ef2-4f14-9b86-f6b00d62cdd7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T14:53:25.000Z" + }, + "events": [ + { + "uuid": "eeee5b14-7a0a-49f6-aa2f-3f52e3860f39", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T04:11:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d5431b32-84a1-413b-8a56-b5f0884867d2", + "start": { + "$date": "2022-05-26T04:11:26.000Z" + }, + "end": { + "$date": "2022-05-26T04:59:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b77e73e1-aa41-47e3-a6c5-24516620d740", + "start": { + "$date": "2022-05-26T04:59:26.000Z" + }, + "end": { + "$date": "2022-05-26T14:53:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "82b9af0e-c915-4493-8d09-46f0f5cc21ef", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-26T14:03:03.000Z" + }, + "end": { + "$date": "2022-05-26T14:04:13.000Z" + }, + "events": [ + { + "uuid": "476f64d8-1f67-401a-9eba-e747ec5e48c0", + "start": { + "$date": "2022-05-26T14:03:03.000Z" + }, + "end": { + "$date": "2022-05-26T14:04:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "478a79d6-95c9-47bd-b310-78abb080f672", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-26T14:04:33.000Z" + }, + "end": { + "$date": "2022-05-26T18:50:08.000Z" + }, + "events": [ + { + "uuid": "e9767fde-9adf-4963-8fb5-f67349181302", + "start": { + "$date": "2022-05-26T14:04:33.000Z" + }, + "end": { + "$date": "2022-05-26T18:50:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d9be398d-4f28-4bbc-9cce-94648b8d99d9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-26T14:19:11.000Z" + }, + "end": { + "$date": "2022-05-26T14:20:10.000Z" + }, + "events": [ + { + "uuid": "cae7c40c-c7e7-4647-b341-9b8cc3801728", + "start": { + "$date": "2022-05-26T14:19:11.000Z" + }, + "end": { + "$date": "2022-05-26T14:20:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9f0d046d-40b6-445e-bc8f-762cbb04d51e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-26T14:20:31.000Z" + }, + "end": { + "$date": "2022-05-26T14:59:13.000Z" + }, + "events": [ + { + "uuid": "2c7928c2-507d-4edb-b22e-837e73955879", + "start": { + "$date": "2022-05-26T14:20:31.000Z" + }, + "end": { + "$date": "2022-05-26T14:59:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "644d8c73-7e67-445c-a556-c77f14c976ed", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T17:07:05.000Z" + }, + "events": [ + { + "uuid": "fbeaedb9-be0b-48b4-a8dd-d51b65e8ec0e", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T04:11:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b922ae21-e7d3-4187-b0f0-1653cf846835", + "start": { + "$date": "2022-05-26T04:11:26.000Z" + }, + "end": { + "$date": "2022-05-26T05:51:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1a6355e2-8fd6-4894-aeac-fc2e765a995f", + "start": { + "$date": "2022-05-26T05:51:26.000Z" + }, + "end": { + "$date": "2022-05-26T05:52:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e61ff004-1a28-4cfe-9530-880fe184d737", + "start": { + "$date": "2022-05-26T05:52:26.000Z" + }, + "end": { + "$date": "2022-05-26T06:07:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ee322cbf-b6eb-4d26-bcd6-87b87b346cb8", + "start": { + "$date": "2022-05-26T06:07:26.000Z" + }, + "end": { + "$date": "2022-05-26T17:07:05.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a1023b23-2d51-465b-a0e9-0aff90a0eb45", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T16:43:16.000Z" + }, + "end": { + "$date": "2022-05-26T17:28:45.000Z" + }, + "events": [ + { + "uuid": "660022a3-8c64-4470-bcc8-c3d08a0884a0", + "start": { + "$date": "2022-05-26T16:43:16.000Z" + }, + "end": { + "$date": "2022-05-26T17:28:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "09971952-22ea-4074-8080-cc538a1397a8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-26T16:50:45.000Z" + }, + "end": { + "$date": "2022-05-26T17:17:02.000Z" + }, + "events": [ + { + "uuid": "9efb01ec-9ef5-4c88-bc26-09952525bf01", + "start": { + "$date": "2022-05-26T16:50:45.000Z" + }, + "end": { + "$date": "2022-05-26T17:17:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "8f17109b-5b6e-4395-b953-91b670dfa6d2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-26T16:52:03.000Z" + }, + "end": { + "$date": "2022-05-26T17:09:11.000Z" + }, + "events": [ + { + "uuid": "094869f6-dc2b-49b0-b8f0-09b0d596ccba", + "start": { + "$date": "2022-05-26T16:52:03.000Z" + }, + "end": { + "$date": "2022-05-26T17:09:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "78df7faa-58c6-4050-93f5-2b6827e5150a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-26T17:23:07.000Z" + }, + "end": { + "$date": "2022-05-26T18:57:38.000Z" + }, + "events": [ + { + "uuid": "0f2f13cd-06a3-4a0b-9f4d-d9f8332eb7f2", + "start": { + "$date": "2022-05-26T17:23:07.000Z" + }, + "end": { + "$date": "2022-05-26T18:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "bfebba93-17e5-4d4c-9ffe-b26a2073b635", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-26T17:31:03.000Z" + }, + "end": { + "$date": "2022-05-26T17:32:08.000Z" + }, + "events": [ + { + "uuid": "ea6c4d1a-52ec-47f1-b656-e9b1eea48c47", + "start": { + "$date": "2022-05-26T17:31:03.000Z" + }, + "end": { + "$date": "2022-05-26T17:32:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "e203aa58-a2d2-4897-963d-4905ae5c949f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-26T17:52:26.000Z" + }, + "end": { + "$date": "2022-05-26T17:55:41.000Z" + }, + "events": [ + { + "uuid": "e172aae3-ec16-4193-8374-619cacf2497a", + "start": { + "$date": "2022-05-26T17:52:26.000Z" + }, + "end": { + "$date": "2022-05-26T17:55:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "104f807a-6eec-4414-878a-bccd87269cd6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-26T18:03:21.000Z" + }, + "end": { + "$date": "2022-05-26T18:05:02.000Z" + }, + "events": [ + { + "uuid": "e47f56b6-6083-4211-9c0b-af2daa4d0794", + "start": { + "$date": "2022-05-26T18:03:21.000Z" + }, + "end": { + "$date": "2022-05-26T18:05:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "a47719b5-3f63-461a-b78a-5409b02eeaad", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T19:31:17.000Z" + }, + "events": [ + { + "uuid": "fe3b3386-bf76-4077-b9db-696174d65d8c", + "start": { + "$date": "2022-05-26T04:10:26.000Z" + }, + "end": { + "$date": "2022-05-26T04:11:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "38bdc7d1-1027-4e0f-80a8-d6a0bfd2ef63", + "start": { + "$date": "2022-05-26T04:11:26.000Z" + }, + "end": { + "$date": "2022-05-26T05:15:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b1dbad77-b8ea-4d96-96e9-b4f3a14cc0a2", + "start": { + "$date": "2022-05-26T05:15:26.000Z" + }, + "end": { + "$date": "2022-05-26T05:16:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7025739f-573f-438f-93c5-57880ec04b79", + "start": { + "$date": "2022-05-26T05:16:26.000Z" + }, + "end": { + "$date": "2022-05-26T19:31:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6a83794e-02c3-444f-9477-7b4095451e0b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-26T18:18:28.000Z" + }, + "end": { + "$date": "2022-05-26T18:55:15.000Z" + }, + "events": [ + { + "uuid": "4a0f14bb-ab36-43be-a150-ef8800c9764a", + "start": { + "$date": "2022-05-26T18:18:28.000Z" + }, + "end": { + "$date": "2022-05-26T18:55:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cc63154c-f1c0-49a8-82c4-7289e6a57fe5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-26T18:35:04.000Z" + }, + "end": { + "$date": "2022-05-26T19:21:41.000Z" + }, + "events": [ + { + "uuid": "a4f3d2f0-d2fc-4d81-b1ab-12e7a3075b49", + "start": { + "$date": "2022-05-26T18:35:04.000Z" + }, + "end": { + "$date": "2022-05-26T19:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "a8418cca-ffa0-407d-a3c7-871dda4072dc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T18:36:49.000Z" + }, + "end": { + "$date": "2022-05-26T18:39:12.000Z" + }, + "events": [ + { + "uuid": "529bd4e0-a68d-45b1-8b90-c30aa854cfcc", + "start": { + "$date": "2022-05-26T18:36:49.000Z" + }, + "end": { + "$date": "2022-05-26T18:39:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "710b6d3e-6ee8-46c4-9122-9080a45613a3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T18:39:40.000Z" + }, + "end": { + "$date": "2022-05-26T18:40:52.000Z" + }, + "events": [ + { + "uuid": "2e8eecc3-a0f1-4803-9d1c-17fc37c38363", + "start": { + "$date": "2022-05-26T18:39:40.000Z" + }, + "end": { + "$date": "2022-05-26T18:40:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "b8fd17ad-9531-4a75-b9fa-01601c504036", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T18:43:30.000Z" + }, + "end": { + "$date": "2022-05-26T19:57:53.000Z" + }, + "events": [ + { + "uuid": "0a29b250-b115-47c5-9a74-ce36b36cb784", + "start": { + "$date": "2022-05-26T18:43:30.000Z" + }, + "end": { + "$date": "2022-05-26T19:57:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", + "uuid": "531518f4-7237-4410-ba90-d98af2ba8008", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T18:43:54.000Z" + }, + "end": { + "$date": "2022-05-26T19:58:53.000Z" + }, + "events": [ + { + "uuid": "abba8e9c-5231-4b0b-b957-0621ebfc4871", + "start": { + "$date": "2022-05-26T18:43:54.000Z" + }, + "end": { + "$date": "2022-05-26T19:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "2cc5b2ba-3fa4-4972-b28e-04ee390cfd72", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-26T19:35:58.000Z" + }, + "end": { + "$date": "2022-05-26T20:13:04.000Z" + }, + "events": [ + { + "uuid": "9d0c5e1d-a83c-462d-9efb-b4d0836e16af", + "start": { + "$date": "2022-05-26T19:35:58.000Z" + }, + "end": { + "$date": "2022-05-26T20:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e5779782-f9e1-4dec-ad7f-2104db320535", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-26T19:39:49.000Z" + }, + "end": { + "$date": "2022-05-26T20:14:21.000Z" + }, + "events": [ + { + "uuid": "4ccf112b-0a4c-443c-b70c-0beaa284d0da", + "start": { + "$date": "2022-05-26T19:39:49.000Z" + }, + "end": { + "$date": "2022-05-26T20:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "515e3faa-2876-4fcd-a92d-1a06a4ea2511", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T20:00:46.000Z" + }, + "end": { + "$date": "2022-05-26T20:24:36.000Z" + }, + "events": [ + { + "uuid": "2a208cfa-f684-4981-a423-624058a82e1d", + "start": { + "$date": "2022-05-26T20:00:46.000Z" + }, + "end": { + "$date": "2022-05-26T20:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e5c3b87b-0a7e-48a3-a70d-1dd979195c19", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T20:50:02.000Z" + }, + "end": { + "$date": "2022-05-26T21:24:48.000Z" + }, + "events": [ + { + "uuid": "1243d412-799a-4b2d-bce2-24ae8adf0b76", + "start": { + "$date": "2022-05-26T20:50:02.000Z" + }, + "end": { + "$date": "2022-05-26T21:24:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fdf54123-7f5c-40da-91be-5de3c6ac1b61", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T20:50:12.000Z" + }, + "end": { + "$date": "2022-05-26T21:19:59.000Z" + }, + "events": [ + { + "uuid": "59fe27b4-7c01-49fd-864f-703d154095cb", + "start": { + "$date": "2022-05-26T20:50:12.000Z" + }, + "end": { + "$date": "2022-05-26T21:19:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6729a448-680b-447b-b5f0-2708c754f87f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T21:27:47.000Z" + }, + "end": { + "$date": "2022-05-26T21:57:58.000Z" + }, + "events": [ + { + "uuid": "525ea29d-5857-4f64-b23e-a694e577c281", + "start": { + "$date": "2022-05-26T21:27:47.000Z" + }, + "end": { + "$date": "2022-05-26T21:57:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "01428f84-8078-4c15-97d6-f2c3a249d089", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T21:26:43.000Z" + }, + "end": { + "$date": "2022-05-26T21:27:00.000Z" + }, + "events": [ + { + "uuid": "197cfdfd-be98-44dd-9007-339a519ffe5d", + "start": { + "$date": "2022-05-26T21:26:43.000Z" + }, + "end": { + "$date": "2022-05-26T21:27:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1837d15-0370-4a71-b80b-57cb17f94c78", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-26T21:27:47.000Z" + }, + "end": { + "$date": "2022-05-26T22:02:41.000Z" + }, + "events": [ + { + "uuid": "eb2b16de-ecdd-4ac4-9810-5b87a8877837", + "start": { + "$date": "2022-05-26T21:27:47.000Z" + }, + "end": { + "$date": "2022-05-26T22:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b86c8dd1-2014-4852-934f-1368cd49ce5d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T21:27:45.000Z" + }, + "end": { + "$date": "2022-05-26T22:06:52.000Z" + }, + "events": [ + { + "uuid": "4084ff17-acbb-4507-bdac-4aeb183959ce", + "start": { + "$date": "2022-05-26T21:27:45.000Z" + }, + "end": { + "$date": "2022-05-26T22:06:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e1078e92-048a-423c-93e6-f33f76f779c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-26T21:28:31.000Z" + }, + "end": { + "$date": "2022-05-26T22:09:04.000Z" + }, + "events": [ + { + "uuid": "85d25b10-e52c-4f42-a426-4e0393997365", + "start": { + "$date": "2022-05-26T21:28:31.000Z" + }, + "end": { + "$date": "2022-05-26T22:09:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b738ae0-2622-4847-819a-7f1cf5391a20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T22:08:28.000Z" + }, + "end": { + "$date": "2022-05-26T22:30:52.000Z" + }, + "events": [ + { + "uuid": "8369496c-945d-4e00-960a-f4eb11171916", + "start": { + "$date": "2022-05-26T22:08:28.000Z" + }, + "end": { + "$date": "2022-05-26T22:30:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b0ebc8f6-df05-48b1-a3b1-451e02366adf", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-26T22:08:17.000Z" + }, + "end": { + "$date": "2022-05-26T22:30:48.000Z" + }, + "events": [ + { + "uuid": "3068c1d1-90e9-4841-b6ed-24fa67627b12", + "start": { + "$date": "2022-05-26T22:08:17.000Z" + }, + "end": { + "$date": "2022-05-26T22:30:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "55a98384-b434-47f6-b027-69aa804116a5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-26T22:08:23.000Z" + }, + "end": { + "$date": "2022-05-26T22:30:54.000Z" + }, + "events": [ + { + "uuid": "6cb06782-904a-4002-8297-34f1f5c5e054", + "start": { + "$date": "2022-05-26T22:08:23.000Z" + }, + "end": { + "$date": "2022-05-26T22:30:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f9b5bd3e-bf83-40bd-b6e2-e55331d6ff03", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-26T22:33:35.000Z" + }, + "end": { + "$date": "2022-05-26T22:40:33.000Z" + }, + "events": [ + { + "uuid": "5ed84248-184c-4211-825d-3cbc52f2ee73", + "start": { + "$date": "2022-05-26T22:33:35.000Z" + }, + "end": { + "$date": "2022-05-26T22:40:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "345cb07c-4953-4733-a5d9-4b98b255bf33", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-26T23:01:06.000Z" + }, + "end": { + "$date": "2022-05-26T23:26:08.000Z" + }, + "events": [ + { + "uuid": "e87552c0-071c-43ed-a2aa-807fd54b50c0", + "start": { + "$date": "2022-05-26T23:01:06.000Z" + }, + "end": { + "$date": "2022-05-26T23:26:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "12350e6d-3c1e-4f0b-a957-9eea62a8f1a7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-26T23:37:35.000Z" + }, + "end": { + "$date": "2022-05-27T00:35:51.000Z" + }, + "events": [ + { + "uuid": "34850ce8-b1fb-41df-94dc-5642265401f8", + "start": { + "$date": "2022-05-26T23:37:35.000Z" + }, + "end": { + "$date": "2022-05-27T00:20:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0abb241a-e3ce-4fa0-80cb-e5a1e70a4a49", + "start": { + "$date": "2022-05-27T00:20:35.000Z" + }, + "end": { + "$date": "2022-05-27T00:25:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9b97db87-d2c4-43b7-bf94-42201c4ad10e", + "start": { + "$date": "2022-05-27T00:25:35.000Z" + }, + "end": { + "$date": "2022-05-27T00:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dc86d5db-7a39-4716-bad8-2d524ee10c24", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-27T01:24:50.000Z" + }, + "end": { + "$date": "2022-05-27T02:58:14.000Z" + }, + "events": [ + { + "uuid": "5f0739d3-7f21-4f96-b8dd-e677012fa3db", + "start": { + "$date": "2022-05-27T01:24:50.000Z" + }, + "end": { + "$date": "2022-05-27T02:58:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ba1e38a7-35df-4554-a6e3-bf726c7a6d6c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-27T01:52:49.000Z" + }, + "end": { + "$date": "2022-05-27T03:08:00.000Z" + }, + "events": [ + { + "uuid": "69b7d40e-d1bb-474e-8beb-6890307ff39c", + "start": { + "$date": "2022-05-27T01:52:49.000Z" + }, + "end": { + "$date": "2022-05-27T03:08:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "2501070c-5544-4d0a-a100-fc827feea1b4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-27T02:05:49.000Z" + }, + "end": { + "$date": "2022-05-27T05:30:45.000Z" + }, + "events": [ + { + "uuid": "827c577e-d077-44ed-8845-16ae04c57327", + "start": { + "$date": "2022-05-27T02:05:49.000Z" + }, + "end": { + "$date": "2022-05-27T05:30:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5ba4cc3f-ed7d-409b-8ed3-f2ece338f319", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-27T02:11:56.000Z" + }, + "end": { + "$date": "2022-05-27T04:47:22.000Z" + }, + "events": [ + { + "uuid": "28fa0be0-296d-4513-a178-6faad1b88250", + "start": { + "$date": "2022-05-27T02:11:56.000Z" + }, + "end": { + "$date": "2022-05-27T04:47:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4df6de2b-26b9-4ca9-977b-6b0c37643123", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-27T03:03:30.000Z" + }, + "end": { + "$date": "2022-05-27T04:47:24.000Z" + }, + "events": [ + { + "uuid": "c8e8dcfc-7c68-4d99-9208-80d278f13ecc", + "start": { + "$date": "2022-05-27T03:03:30.000Z" + }, + "end": { + "$date": "2022-05-27T04:47:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "335d3213-0aa0-4bc2-a00b-a983c70acf2e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T04:07:59.000Z" + }, + "end": { + "$date": "2022-05-27T04:14:30.000Z" + }, + "events": [ + { + "uuid": "fd6eb833-b98a-4cdc-81f9-db2a69ed0942", + "start": { + "$date": "2022-05-27T04:07:59.000Z" + }, + "end": { + "$date": "2022-05-27T04:14:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "e3849032-1abe-4ed0-959e-f779a27f7607", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-27T04:09:19.000Z" + }, + "end": { + "$date": "2022-05-27T08:24:31.000Z" + }, + "events": [ + { + "uuid": "7443112f-9825-4c8e-9c39-580a2dde805d", + "start": { + "$date": "2022-05-27T04:09:19.000Z" + }, + "end": { + "$date": "2022-05-27T08:24:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "646df686-aeac-40cc-9233-490b80a07bee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T04:15:45.000Z" + }, + "end": { + "$date": "2022-05-27T04:17:55.000Z" + }, + "events": [ + { + "uuid": "8df5fbe5-5c89-49e7-a639-c8daf067f388", + "start": { + "$date": "2022-05-27T04:15:45.000Z" + }, + "end": { + "$date": "2022-05-27T04:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "827f6e01-fcec-44d1-8913-96061404ce59", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-27T04:16:26.000Z" + }, + "end": { + "$date": "2022-05-27T04:42:25.000Z" + }, + "events": [ + { + "uuid": "90915c04-07b0-4098-923c-045e76f31318", + "start": { + "$date": "2022-05-27T04:16:26.000Z" + }, + "end": { + "$date": "2022-05-27T04:42:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "f8ec4aba-0ae8-4f57-8d86-c83ac937cc90", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T04:18:40.000Z" + }, + "end": { + "$date": "2022-05-27T04:20:50.000Z" + }, + "events": [ + { + "uuid": "732650ec-c86b-432a-9268-81f20c703a54", + "start": { + "$date": "2022-05-27T04:18:40.000Z" + }, + "end": { + "$date": "2022-05-27T04:20:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "da183bb7-5da0-4a11-9beb-f3d77ddef68f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T04:22:04.000Z" + }, + "end": { + "$date": "2022-05-27T08:36:35.000Z" + }, + "events": [ + { + "uuid": "48297adc-3215-42e6-ad4c-6ba2fa56e5e2", + "start": { + "$date": "2022-05-27T04:22:04.000Z" + }, + "end": { + "$date": "2022-05-27T08:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "5ad61f8a-04ac-4386-8233-bcbb954fcf9e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-27T04:42:32.000Z" + }, + "end": { + "$date": "2022-05-27T07:52:57.000Z" + }, + "events": [ + { + "uuid": "a244e834-012f-4402-9dfd-4cd3f8916686", + "start": { + "$date": "2022-05-27T04:42:32.000Z" + }, + "end": { + "$date": "2022-05-27T07:52:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "39e5ecc3-32b1-4b75-bc7e-deaa8ccdadb0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-27T04:44:59.000Z" + }, + "end": { + "$date": "2022-05-27T06:20:25.000Z" + }, + "events": [ + { + "uuid": "7ca9df3a-3534-4b00-aca8-5711445a6887", + "start": { + "$date": "2022-05-27T04:44:59.000Z" + }, + "end": { + "$date": "2022-05-27T06:20:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "14210160-6fd5-40cc-82aa-3b9afd6373c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T15:46:36.000Z" + }, + "end": { + "$date": "2022-05-27T15:47:36.000Z" + }, + "events": [ + { + "uuid": "bca2b4f0-5407-49ad-a1d9-081e6c05c0a8", + "start": { + "$date": "2022-05-27T15:46:36.000Z" + }, + "end": { + "$date": "2022-05-27T15:47:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2f8ce8a9-0be7-458b-b1d0-e749ff06da28", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T16:06:28.000Z" + }, + "end": { + "$date": "2022-05-27T16:29:47.000Z" + }, + "events": [ + { + "uuid": "31f7998d-3b60-4c76-905d-6e4b6bb7d9c7", + "start": { + "$date": "2022-05-27T16:06:28.000Z" + }, + "end": { + "$date": "2022-05-27T16:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "437eb3d1-3773-4405-95b2-b3c5b3a4959c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T16:08:53.000Z" + }, + "end": { + "$date": "2022-05-27T16:19:04.000Z" + }, + "events": [ + { + "uuid": "4c5c386a-08ab-4cc2-a725-195a8fdedc2f", + "start": { + "$date": "2022-05-27T16:08:53.000Z" + }, + "end": { + "$date": "2022-05-27T16:19:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "37e7ddd0-9b79-4db3-8577-dc45b0bad975", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T16:20:19.000Z" + }, + "end": { + "$date": "2022-05-27T16:26:34.000Z" + }, + "events": [ + { + "uuid": "cf349094-30bf-46c0-a1a3-8e6db73c5890", + "start": { + "$date": "2022-05-27T16:20:19.000Z" + }, + "end": { + "$date": "2022-05-27T16:26:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71c8b646-a3fa-437a-a7a6-17ec0e574bb0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T16:38:35.000Z" + }, + "end": { + "$date": "2022-05-27T16:57:04.000Z" + }, + "events": [ + { + "uuid": "e5bea075-b29a-48fc-b862-089c7ef21fc2", + "start": { + "$date": "2022-05-27T16:38:35.000Z" + }, + "end": { + "$date": "2022-05-27T16:57:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76cf5c55-5d61-4e25-8eda-0ddf4454951a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T16:59:21.000Z" + }, + "end": { + "$date": "2022-05-27T17:19:30.000Z" + }, + "events": [ + { + "uuid": "88756e28-5345-406d-901d-919baeabb894", + "start": { + "$date": "2022-05-27T16:59:21.000Z" + }, + "end": { + "$date": "2022-05-27T17:19:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "70b7f7e6-2c18-48ec-b710-48b1e32507ec", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T17:44:17.000Z" + }, + "end": { + "$date": "2022-05-27T17:58:19.000Z" + }, + "events": [ + { + "uuid": "d6b5a544-8c3f-4acb-ae19-5c116b957958", + "start": { + "$date": "2022-05-27T17:44:17.000Z" + }, + "end": { + "$date": "2022-05-27T17:58:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "eb2df17a-30f8-44d0-8a0a-37d2fd3bee0f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T17:35:33.000Z" + }, + "end": { + "$date": "2022-05-27T17:37:52.000Z" + }, + "events": [ + { + "uuid": "65f8e842-d81f-4ce4-aa2b-fb6acc822de0", + "start": { + "$date": "2022-05-27T17:35:33.000Z" + }, + "end": { + "$date": "2022-05-27T17:37:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1598b47-f311-41e8-ac6e-5cb889f9ccc6", + "uuid": "f1d90e34-01a0-47bc-8ee7-72cd57aad9e0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-27T18:19:06.000Z" + }, + "end": { + "$date": "2022-05-27T18:19:11.000Z" + }, + "events": [ + { + "uuid": "e4bf9eb5-6c04-46a4-a831-9abc8229600d", + "start": { + "$date": "2022-05-27T18:19:06.000Z" + }, + "end": { + "$date": "2022-05-27T18:19:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", + "uuid": "f4735491-f03a-423a-a40b-c645215a7065", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-27T17:38:06.000Z" + }, + "end": { + "$date": "2022-05-27T17:41:12.000Z" + }, + "events": [ + { + "uuid": "4b75b2c8-4669-473a-8264-cfa6fd143090", + "start": { + "$date": "2022-05-27T17:38:06.000Z" + }, + "end": { + "$date": "2022-05-27T17:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "9f61db32-1604-49b5-ade1-3f600561c1ba", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-27T17:41:36.000Z" + }, + "end": { + "$date": "2022-05-27T17:54:01.000Z" + }, + "events": [ + { + "uuid": "98914299-4572-405f-aa3d-7c928767870e", + "start": { + "$date": "2022-05-27T17:41:36.000Z" + }, + "end": { + "$date": "2022-05-27T17:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "ef86c7ac-a2c1-45f5-9ef2-3791fa25dc7d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T18:01:26.000Z" + }, + "end": { + "$date": "2022-05-27T18:53:22.000Z" + }, + "events": [ + { + "uuid": "bc51899e-5d66-42b7-b35b-5e2333221e96", + "start": { + "$date": "2022-05-27T18:01:26.000Z" + }, + "end": { + "$date": "2022-05-27T18:53:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a1495a11-4aba-4c6c-874d-1194f86a0a1a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-27T18:20:41.000Z" + }, + "end": { + "$date": "2022-05-27T18:34:28.000Z" + }, + "events": [ + { + "uuid": "d0de1b45-c1b5-4b74-8216-fd29d5448f2f", + "start": { + "$date": "2022-05-27T18:20:41.000Z" + }, + "end": { + "$date": "2022-05-27T18:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "2e34b4cf-53ca-4f4d-b02c-bf3a8ea11c81", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-27T18:28:23.000Z" + }, + "end": { + "$date": "2022-05-27T18:59:15.000Z" + }, + "events": [ + { + "uuid": "a47676c0-3fae-41dc-af57-fa784c076a88", + "start": { + "$date": "2022-05-27T18:28:23.000Z" + }, + "end": { + "$date": "2022-05-27T18:59:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "851299b2-00be-466c-8c90-f4fb2842eee1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-27T18:54:16.000Z" + }, + "end": { + "$date": "2022-05-27T22:34:38.000Z" + }, + "events": [ + { + "uuid": "f9f34a4a-edac-4a68-8e34-5d61fdb1e1d6", + "start": { + "$date": "2022-05-27T18:54:16.000Z" + }, + "end": { + "$date": "2022-05-27T22:34:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "55db8752-076c-4abb-b67f-9f2430f76911", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-27T19:06:06.000Z" + }, + "end": { + "$date": "2022-05-27T19:09:46.000Z" + }, + "events": [ + { + "uuid": "f89a1766-1b19-45e4-a65a-404f937d3586", + "start": { + "$date": "2022-05-27T19:06:06.000Z" + }, + "end": { + "$date": "2022-05-27T19:09:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "67205c4a-301c-4869-b418-abdad5c52e34", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-27T19:10:24.000Z" + }, + "end": { + "$date": "2022-05-27T20:10:31.000Z" + }, + "events": [ + { + "uuid": "7905264b-cb0d-46c2-b90b-07c4047f16a6", + "start": { + "$date": "2022-05-27T19:10:24.000Z" + }, + "end": { + "$date": "2022-05-27T20:10:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c5263b53-891a-492e-a235-7480aef30b7c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T19:10:56.000Z" + }, + "end": { + "$date": "2022-05-27T20:00:27.000Z" + }, + "events": [ + { + "uuid": "9202d84a-92d3-42a1-b120-f70d58b8504f", + "start": { + "$date": "2022-05-27T19:10:56.000Z" + }, + "end": { + "$date": "2022-05-27T20:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "3d9f5f8c-df28-4652-9595-e641ab350806", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-27T19:14:27.000Z" + }, + "end": { + "$date": "2022-05-27T19:56:26.000Z" + }, + "events": [ + { + "uuid": "756820d0-1d5f-4622-939d-eb7f642c2659", + "start": { + "$date": "2022-05-27T19:14:27.000Z" + }, + "end": { + "$date": "2022-05-27T19:56:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "aaaed2b4-b7c0-4899-b108-add082da4059", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T20:16:35.000Z" + }, + "end": { + "$date": "2022-05-27T20:51:11.000Z" + }, + "events": [ + { + "uuid": "65d6851d-2000-423d-946a-60b5f27df96e", + "start": { + "$date": "2022-05-27T20:16:35.000Z" + }, + "end": { + "$date": "2022-05-27T20:51:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9ae4e0f2-f923-4007-a9dc-7f0ce4abfcbb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T21:29:59.000Z" + }, + "end": { + "$date": "2022-05-27T21:51:06.000Z" + }, + "events": [ + { + "uuid": "22e6277e-b657-44e5-8f78-3e03bffb94c8", + "start": { + "$date": "2022-05-27T21:29:59.000Z" + }, + "end": { + "$date": "2022-05-27T21:51:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fe89230a-3816-40d9-9e31-52a845169bf3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-27T21:31:59.000Z" + }, + "end": { + "$date": "2022-05-27T23:11:07.000Z" + }, + "events": [ + { + "uuid": "43b49f15-8e76-4567-86be-4d7d027d9d6e", + "start": { + "$date": "2022-05-27T21:31:59.000Z" + }, + "end": { + "$date": "2022-05-27T23:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "21474419-2fac-4939-a5d3-2d7d12ba8208", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-27T22:06:42.000Z" + }, + "end": { + "$date": "2022-05-27T22:25:42.000Z" + }, + "events": [ + { + "uuid": "ca3833b1-aaef-4744-a2ac-9c979737e13a", + "start": { + "$date": "2022-05-27T22:06:42.000Z" + }, + "end": { + "$date": "2022-05-27T22:25:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "424d3c90-5e98-4b12-9c8b-24a9d56519cc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-27T22:30:28.000Z" + }, + "end": { + "$date": "2022-05-28T00:26:26.000Z" + }, + "events": [ + { + "uuid": "ebe5b83e-74f7-4b01-974f-24960e7b5255", + "start": { + "$date": "2022-05-27T22:30:28.000Z" + }, + "end": { + "$date": "2022-05-28T00:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1ae89806-d99e-4864-8301-b41dd26f586c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-27T23:22:05.000Z" + }, + "end": { + "$date": "2022-05-27T23:54:33.000Z" + }, + "events": [ + { + "uuid": "e835859f-2d9a-4301-af58-a47178ff7bbf", + "start": { + "$date": "2022-05-27T23:22:05.000Z" + }, + "end": { + "$date": "2022-05-27T23:54:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "8f2f34e3-e16b-4217-9eed-ccda4b6408ba", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T00:14:40.000Z" + }, + "end": { + "$date": "2022-05-28T01:21:10.000Z" + }, + "events": [ + { + "uuid": "4b702253-1085-48dd-93c3-71be67079140", + "start": { + "$date": "2022-05-28T00:14:40.000Z" + }, + "end": { + "$date": "2022-05-28T01:21:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "9ab068ed-3886-4e01-b8b9-7657baf65784", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T00:32:07.000Z" + }, + "end": { + "$date": "2022-05-28T00:35:32.000Z" + }, + "events": [ + { + "uuid": "c286709c-c366-4e70-a680-bf1010bf4e2d", + "start": { + "$date": "2022-05-28T00:32:07.000Z" + }, + "end": { + "$date": "2022-05-28T00:35:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "fd820503-56d1-4722-9ecf-5e58b7c26aa1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T00:37:23.000Z" + }, + "end": { + "$date": "2022-05-28T01:47:30.000Z" + }, + "events": [ + { + "uuid": "63a455ff-1b48-46b0-8341-d12ad4ee8b83", + "start": { + "$date": "2022-05-28T00:37:23.000Z" + }, + "end": { + "$date": "2022-05-28T01:47:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "d57d76fe-bfa7-4da0-98d2-cd384aca8f60", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T01:23:15.000Z" + }, + "end": { + "$date": "2022-05-28T02:30:21.000Z" + }, + "events": [ + { + "uuid": "a1ec7acf-1e06-4d03-8318-28cf555e3a68", + "start": { + "$date": "2022-05-28T01:23:15.000Z" + }, + "end": { + "$date": "2022-05-28T02:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "58536ae7-3da0-4f4c-8157-aba0b92c79a9", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-28T03:10:37.000Z" + }, + "end": { + "$date": "2022-05-28T04:24:18.000Z" + }, + "events": [ + { + "uuid": "c08a178d-33d0-4c00-9d6d-e950297aacf0", + "start": { + "$date": "2022-05-28T03:10:37.000Z" + }, + "end": { + "$date": "2022-05-28T04:24:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "3db35b3e-f11f-4620-a689-3effaee27452", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-28T03:12:27.000Z" + }, + "end": { + "$date": "2022-05-28T05:49:04.000Z" + }, + "events": [ + { + "uuid": "e4f3a170-f243-4004-b9f5-99154c2da042", + "start": { + "$date": "2022-05-28T03:12:27.000Z" + }, + "end": { + "$date": "2022-05-28T04:04:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6ef3b94f-a2de-4d47-b66f-27b101616c38", + "start": { + "$date": "2022-05-28T04:04:27.000Z" + }, + "end": { + "$date": "2022-05-28T04:10:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "15c23a61-53cc-49f8-b8de-0379be67e3ae", + "start": { + "$date": "2022-05-28T04:10:27.000Z" + }, + "end": { + "$date": "2022-05-28T04:24:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "83315e97-6f08-4ec9-89da-1714f4f5f625", + "start": { + "$date": "2022-05-28T04:24:27.000Z" + }, + "end": { + "$date": "2022-05-28T05:49:04.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a8119bf5-73bd-4b30-8418-bf953487abb8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T03:23:11.000Z" + }, + "end": { + "$date": "2022-05-28T03:45:01.000Z" + }, + "events": [ + { + "uuid": "b8bf8561-5602-46b6-86cd-0901ca015c3c", + "start": { + "$date": "2022-05-28T03:23:11.000Z" + }, + "end": { + "$date": "2022-05-28T03:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "b9ff37d6-d36a-421f-9c35-be46131e4a9b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T03:49:33.000Z" + }, + "end": { + "$date": "2022-05-28T03:55:53.000Z" + }, + "events": [ + { + "uuid": "91075ded-269e-414a-ba8e-b2090857a3de", + "start": { + "$date": "2022-05-28T03:49:33.000Z" + }, + "end": { + "$date": "2022-05-28T03:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "23b6b80a-6748-4010-8481-49bd1165424a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T03:57:53.000Z" + }, + "end": { + "$date": "2022-05-28T04:49:40.000Z" + }, + "events": [ + { + "uuid": "dad1c95e-fd3d-4e78-a5da-a51781929679", + "start": { + "$date": "2022-05-28T03:57:53.000Z" + }, + "end": { + "$date": "2022-05-28T04:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "fbaf70f9-b654-43f0-bbae-49c5f940ce67", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-28T04:00:04.000Z" + }, + "end": { + "$date": "2022-05-28T08:31:23.000Z" + }, + "events": [ + { + "uuid": "724e80d7-1f5a-4d68-8a38-6792c7827c4a", + "start": { + "$date": "2022-05-28T04:00:04.000Z" + }, + "end": { + "$date": "2022-05-28T08:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "8f1f0125-f94b-4bdf-98da-7c2210ded1cf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-28T04:00:41.000Z" + }, + "end": { + "$date": "2022-05-28T08:31:09.000Z" + }, + "events": [ + { + "uuid": "1bdfd66e-38a7-4fb7-9723-5acb5a7a372c", + "start": { + "$date": "2022-05-28T04:00:41.000Z" + }, + "end": { + "$date": "2022-05-28T08:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "76de6f10-e6cc-4ee5-a17c-9b51a65cae27", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-28T04:01:06.000Z" + }, + "end": { + "$date": "2022-05-28T08:24:58.000Z" + }, + "events": [ + { + "uuid": "d50b1be1-d986-44fa-9c63-868107464ad5", + "start": { + "$date": "2022-05-28T04:01:06.000Z" + }, + "end": { + "$date": "2022-05-28T08:24:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cfcfdcfa-5ce3-4fae-85e6-a0651aef5910", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T04:49:55.000Z" + }, + "end": { + "$date": "2022-05-28T06:58:46.000Z" + }, + "events": [ + { + "uuid": "90575ab5-1311-4948-929f-543872200dbf", + "start": { + "$date": "2022-05-28T04:49:55.000Z" + }, + "end": { + "$date": "2022-05-28T06:58:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "b8a96721-b398-4518-a7ad-02ae470ab509", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T09:47:01.000Z" + }, + "end": { + "$date": "2022-05-28T10:22:43.000Z" + }, + "events": [ + { + "uuid": "f7032930-2015-4d85-8733-c92ca4f8da51", + "start": { + "$date": "2022-05-28T09:47:01.000Z" + }, + "end": { + "$date": "2022-05-28T10:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6002a5f8-5a22-418e-b8d6-65c9836a4a47", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T13:30:54.000Z" + }, + "end": { + "$date": "2022-05-28T13:42:09.000Z" + }, + "events": [ + { + "uuid": "f6ef9047-b3cd-4f28-9855-03086b0227b8", + "start": { + "$date": "2022-05-28T13:30:54.000Z" + }, + "end": { + "$date": "2022-05-28T13:42:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", + "uuid": "6c2b92fe-975c-4b62-bfcc-13704c11bae4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T13:42:25.000Z" + }, + "end": { + "$date": "2022-05-28T15:01:06.000Z" + }, + "events": [ + { + "uuid": "36d66261-9ba5-48ff-8655-8e39c7355047", + "start": { + "$date": "2022-05-28T13:42:25.000Z" + }, + "end": { + "$date": "2022-05-28T15:01:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3a35cf45-2960-4c88-93e2-179c26d9dab4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T15:43:38.000Z" + }, + "end": { + "$date": "2022-05-28T16:01:49.000Z" + }, + "events": [ + { + "uuid": "1e6acfa6-39da-48ba-904d-2368f41ffc02", + "start": { + "$date": "2022-05-28T15:43:38.000Z" + }, + "end": { + "$date": "2022-05-28T16:01:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4d001570-9545-42e6-b358-cba655c0131a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-28T16:37:24.000Z" + }, + "end": { + "$date": "2022-05-28T18:02:31.000Z" + }, + "events": [ + { + "uuid": "8038493f-ca82-473e-801e-5e667b21af3c", + "start": { + "$date": "2022-05-28T16:37:24.000Z" + }, + "end": { + "$date": "2022-05-28T18:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "57a8fdad-03a8-4e94-ae3f-c1bf75de44de", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-28T17:19:09.000Z" + }, + "end": { + "$date": "2022-05-28T18:33:38.000Z" + }, + "events": [ + { + "uuid": "803fe29e-96d3-4661-a92d-9badcf71d69c", + "start": { + "$date": "2022-05-28T17:19:09.000Z" + }, + "end": { + "$date": "2022-05-28T18:33:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76c02bfe-6b31-4ebc-b625-630e0dbc31c5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T17:31:14.000Z" + }, + "end": { + "$date": "2022-05-28T20:53:31.000Z" + }, + "events": [ + { + "uuid": "23d73d6e-7224-410d-a9ae-98a79c65d6b8", + "start": { + "$date": "2022-05-28T17:31:14.000Z" + }, + "end": { + "$date": "2022-05-28T20:53:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "aec55728-5866-4943-af5e-016a52923b33", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T17:40:24.000Z" + }, + "end": { + "$date": "2022-05-28T21:02:53.000Z" + }, + "events": [ + { + "uuid": "aa94ebc7-6a45-4d8a-9486-1c18e976f5f7", + "start": { + "$date": "2022-05-28T17:40:24.000Z" + }, + "end": { + "$date": "2022-05-28T21:02:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "afdfb9ce-1439-47dd-9d60-9fa167dec8f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-28T18:03:17.000Z" + }, + "end": { + "$date": "2022-05-28T20:45:00.000Z" + }, + "events": [ + { + "uuid": "3c06fe0f-7b33-4842-9a30-36e5ce04f2f6", + "start": { + "$date": "2022-05-28T18:03:17.000Z" + }, + "end": { + "$date": "2022-05-28T20:32:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cb6eb3dd-ef2e-4a98-ba77-233ed2eb0e33", + "start": { + "$date": "2022-05-28T20:32:17.000Z" + }, + "end": { + "$date": "2022-05-28T20:37:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c95bbdfa-ad4a-4df1-b953-badd9c1cb9cb", + "start": { + "$date": "2022-05-28T20:37:17.000Z" + }, + "end": { + "$date": "2022-05-28T20:45:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7570e46e-7bb1-48fd-915c-69a8d3b19da6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-28T18:25:19.000Z" + }, + "end": { + "$date": "2022-05-28T20:51:29.000Z" + }, + "events": [ + { + "uuid": "ffa76166-8b5c-43ec-b737-cd65f8bb960f", + "start": { + "$date": "2022-05-28T18:25:19.000Z" + }, + "end": { + "$date": "2022-05-28T20:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "525dcfb1-5fd3-400d-872d-6ed56e3a64a3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-28T18:26:43.000Z" + }, + "end": { + "$date": "2022-05-28T20:51:40.000Z" + }, + "events": [ + { + "uuid": "dd6e123a-2d90-4a70-a0bc-0fa93d37f06c", + "start": { + "$date": "2022-05-28T18:26:43.000Z" + }, + "end": { + "$date": "2022-05-28T20:51:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "ca3dc7a4-5701-443a-802e-36c95e07a039", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-28T20:45:06.000Z" + }, + "end": { + "$date": "2022-05-28T20:55:36.000Z" + }, + "events": [ + { + "uuid": "044bf8a3-d6ac-4d7d-99ee-9075076dfd24", + "start": { + "$date": "2022-05-28T20:45:06.000Z" + }, + "end": { + "$date": "2022-05-28T20:55:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "62a1ec48-4122-4ed2-a5ff-d3993a674d47", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T20:54:39.000Z" + }, + "end": { + "$date": "2022-05-28T21:30:42.000Z" + }, + "events": [ + { + "uuid": "0931482a-22d6-4233-91f5-9c714c5e7368", + "start": { + "$date": "2022-05-28T20:54:39.000Z" + }, + "end": { + "$date": "2022-05-28T21:30:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2faba61c-d47a-4876-b775-083fbf8fd00d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T21:14:30.000Z" + }, + "end": { + "$date": "2022-05-28T21:29:09.000Z" + }, + "events": [ + { + "uuid": "170267e8-ccb6-4e64-a369-6d78dd43012e", + "start": { + "$date": "2022-05-28T21:14:30.000Z" + }, + "end": { + "$date": "2022-05-28T21:29:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e13fc15d-0e61-4e49-9dc2-77269fd69bc5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-28T21:31:22.000Z" + }, + "end": { + "$date": "2022-05-28T21:50:34.000Z" + }, + "events": [ + { + "uuid": "63347b1a-1e62-44c4-9da6-1cfe1a4c4c62", + "start": { + "$date": "2022-05-28T21:31:22.000Z" + }, + "end": { + "$date": "2022-05-28T21:50:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "96992389-d1d5-49f4-8041-67257325dc4e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-28T21:51:41.000Z" + }, + "end": { + "$date": "2022-05-28T21:57:21.000Z" + }, + "events": [ + { + "uuid": "d08a862c-84fa-4eeb-bbb3-010c6a394288", + "start": { + "$date": "2022-05-28T21:51:41.000Z" + }, + "end": { + "$date": "2022-05-28T21:57:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "339b6326-db63-4922-b282-0099c77dd878", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-28T21:56:43.000Z" + }, + "end": { + "$date": "2022-05-28T23:30:34.000Z" + }, + "events": [ + { + "uuid": "cd61b456-23c2-4360-bffb-ccace06e19e4", + "start": { + "$date": "2022-05-28T21:56:43.000Z" + }, + "end": { + "$date": "2022-05-28T23:30:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ed007e09-62b2-404e-8960-5d700e06dca9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-28T21:58:28.000Z" + }, + "end": { + "$date": "2022-05-28T23:39:55.000Z" + }, + "events": [ + { + "uuid": "ddabc652-ed4b-48b4-a6b3-ba9ab37ef480", + "start": { + "$date": "2022-05-28T21:58:28.000Z" + }, + "end": { + "$date": "2022-05-28T23:39:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "c33ea010-0b74-4be6-ab16-abc375fce46e", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-28T21:59:44.000Z" + }, + "end": { + "$date": "2022-05-28T23:39:51.000Z" + }, + "events": [ + { + "uuid": "ad84cee9-0d0e-4fba-8e3a-f2395e0c5c2b", + "start": { + "$date": "2022-05-28T21:59:44.000Z" + }, + "end": { + "$date": "2022-05-28T23:39:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "da38f08e-0d79-4edd-8455-a7ad7e3fe78f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-28T22:00:42.000Z" + }, + "end": { + "$date": "2022-05-28T23:33:49.000Z" + }, + "events": [ + { + "uuid": "d3c1bd36-1279-46ff-9d0f-014db838c750", + "start": { + "$date": "2022-05-28T22:00:42.000Z" + }, + "end": { + "$date": "2022-05-28T23:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e534466d-31cc-4f4a-8637-e89d19d30f87", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T22:42:54.000Z" + }, + "end": { + "$date": "2022-05-28T22:44:29.000Z" + }, + "events": [ + { + "uuid": "c11e6d39-ddda-40fd-8991-077c38402e5c", + "start": { + "$date": "2022-05-28T22:42:54.000Z" + }, + "end": { + "$date": "2022-05-28T22:44:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "475e798d-9399-4a08-b603-a8ca35e64db1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T22:47:20.000Z" + }, + "end": { + "$date": "2022-05-28T22:57:10.000Z" + }, + "events": [ + { + "uuid": "63fa9f43-55fa-474b-9b8d-62d326598cf5", + "start": { + "$date": "2022-05-28T22:47:20.000Z" + }, + "end": { + "$date": "2022-05-28T22:57:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e2b875dd-01d1-403e-87f5-5f42d7709e3c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-29T00:22:28.000Z" + }, + "end": { + "$date": "2022-05-29T00:43:49.000Z" + }, + "events": [ + { + "uuid": "5623197f-cc5f-4c18-a3e8-d2d4e05db84c", + "start": { + "$date": "2022-05-29T00:22:28.000Z" + }, + "end": { + "$date": "2022-05-29T00:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "954a1c94-b133-4871-a4c0-6a1c3f3b61e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T22:58:15.000Z" + }, + "end": { + "$date": "2022-05-28T23:10:10.000Z" + }, + "events": [ + { + "uuid": "6c5c65d1-7c99-4322-9c45-e9292ddf10cb", + "start": { + "$date": "2022-05-28T22:58:15.000Z" + }, + "end": { + "$date": "2022-05-28T23:10:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "b1238392-3dd4-4efd-a017-eda39857315c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T23:10:26.000Z" + }, + "end": { + "$date": "2022-05-28T23:12:01.000Z" + }, + "events": [ + { + "uuid": "2a841779-8a64-4021-9611-b873e4f38cf8", + "start": { + "$date": "2022-05-28T23:10:26.000Z" + }, + "end": { + "$date": "2022-05-28T23:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5f6ab6f4-0310-45b9-b8bd-2437c3506229", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T23:12:21.000Z" + }, + "end": { + "$date": "2022-05-28T23:17:06.000Z" + }, + "events": [ + { + "uuid": "dea67d59-185a-476e-ba15-5c8a0abd0514", + "start": { + "$date": "2022-05-28T23:12:21.000Z" + }, + "end": { + "$date": "2022-05-28T23:17:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", + "uuid": "a91705db-2194-4d20-97b8-2b90e5493219", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T23:27:02.000Z" + }, + "end": { + "$date": "2022-05-28T23:30:12.000Z" + }, + "events": [ + { + "uuid": "03658872-d18a-4343-be2d-af435fab2636", + "start": { + "$date": "2022-05-28T23:27:02.000Z" + }, + "end": { + "$date": "2022-05-28T23:30:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0c610844-c16e-477d-9ed3-786edfc33d88", + "uuid": "98c916eb-8a8f-4b15-98c3-9091bbe25c33", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-28T23:34:19.000Z" + }, + "end": { + "$date": "2022-05-28T23:42:49.000Z" + }, + "events": [ + { + "uuid": "3cea49c4-4eca-41a5-985c-4c6be5383322", + "start": { + "$date": "2022-05-28T23:34:19.000Z" + }, + "end": { + "$date": "2022-05-28T23:42:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "07e8ff76-9557-4774-ab52-c691706f8d37", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-28T23:38:18.000Z" + }, + "end": { + "$date": "2022-05-29T01:35:03.000Z" + }, + "events": [ + { + "uuid": "748d3e73-5155-4857-baa5-72031d469e44", + "start": { + "$date": "2022-05-28T23:38:18.000Z" + }, + "end": { + "$date": "2022-05-29T01:35:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2f29f8f9-e272-409d-9f3a-9f1b78b254fa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T01:14:45.000Z" + }, + "end": { + "$date": "2022-05-29T02:26:19.000Z" + }, + "events": [ + { + "uuid": "1903c82e-95d5-4fb4-9106-5f441c55084b", + "start": { + "$date": "2022-05-29T01:14:45.000Z" + }, + "end": { + "$date": "2022-05-29T02:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "26c20b2e-3a07-4197-9088-88f79caf143a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-29T01:27:21.000Z" + }, + "end": { + "$date": "2022-05-29T02:07:09.000Z" + }, + "events": [ + { + "uuid": "c1862109-3723-42e9-a1d8-98952e65895d", + "start": { + "$date": "2022-05-29T01:27:21.000Z" + }, + "end": { + "$date": "2022-05-29T02:07:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "159c9023-4d12-43b6-9f6b-521b8267df45", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T01:37:34.000Z" + }, + "end": { + "$date": "2022-05-29T02:17:19.000Z" + }, + "events": [ + { + "uuid": "63983c3b-9c2e-4782-8f93-d5fda739619b", + "start": { + "$date": "2022-05-29T01:37:34.000Z" + }, + "end": { + "$date": "2022-05-29T02:17:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "819f5688-ad23-4dec-beba-d5daa531faa6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-29T02:10:43.000Z" + }, + "end": { + "$date": "2022-05-29T02:35:05.000Z" + }, + "events": [ + { + "uuid": "bb885524-dbc7-4549-a109-16756c3f161c", + "start": { + "$date": "2022-05-29T02:10:43.000Z" + }, + "end": { + "$date": "2022-05-29T02:35:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0c569d02-738d-4022-9e1d-cc3950745f52", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-29T02:10:53.000Z" + }, + "end": { + "$date": "2022-05-29T02:26:28.000Z" + }, + "events": [ + { + "uuid": "56e007e8-4288-42bf-98d9-3b6036077489", + "start": { + "$date": "2022-05-29T02:10:53.000Z" + }, + "end": { + "$date": "2022-05-29T02:26:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "3e56839d-a219-41e7-9984-1e1911486ae4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-29T02:26:59.000Z" + }, + "end": { + "$date": "2022-05-29T06:20:29.000Z" + }, + "events": [ + { + "uuid": "11bb2452-6934-45a9-8d18-bdc4bc7d24ae", + "start": { + "$date": "2022-05-29T02:26:59.000Z" + }, + "end": { + "$date": "2022-05-29T06:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "bad3b876-e246-42b6-84f3-16866fd75500", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T02:29:14.000Z" + }, + "end": { + "$date": "2022-05-29T06:41:56.000Z" + }, + "events": [ + { + "uuid": "4a75355a-3e81-4767-bb7b-2beacdce5ac4", + "start": { + "$date": "2022-05-29T02:29:14.000Z" + }, + "end": { + "$date": "2022-05-29T06:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "3fff536f-de3b-4569-972f-4f7050ae0494", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-29T02:30:45.000Z" + }, + "end": { + "$date": "2022-05-29T06:20:13.000Z" + }, + "events": [ + { + "uuid": "87cf89bf-0f1b-459b-81b0-7ea064c76189", + "start": { + "$date": "2022-05-29T02:30:45.000Z" + }, + "end": { + "$date": "2022-05-29T06:20:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "0e41e3fc-2d41-44c3-b6d7-b7abeb6cbd84", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-29T03:16:53.000Z" + }, + "end": { + "$date": "2022-05-29T06:38:10.000Z" + }, + "events": [ + { + "uuid": "2e1e5eee-d8b2-4a5d-b4de-c8ad662949ad", + "start": { + "$date": "2022-05-29T03:16:53.000Z" + }, + "end": { + "$date": "2022-05-29T06:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "35cbb574-ca5a-49ca-b35c-4431cf46167d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-29T03:24:03.000Z" + }, + "end": { + "$date": "2022-05-29T04:04:26.000Z" + }, + "events": [ + { + "uuid": "c434f6bc-05e5-4981-945f-6712a35646fa", + "start": { + "$date": "2022-05-29T03:24:03.000Z" + }, + "end": { + "$date": "2022-05-29T04:04:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "771928ba-88ce-4ab0-a140-965e60b807ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T04:09:31.000Z" + }, + "end": { + "$date": "2022-05-29T04:21:07.000Z" + }, + "events": [ + { + "uuid": "d4e4a2f0-d53b-4327-b7f3-162fc51b9d6a", + "start": { + "$date": "2022-05-29T04:09:31.000Z" + }, + "end": { + "$date": "2022-05-29T04:21:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e2533804-d7fa-4f97-adf1-e5af12185c1e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T04:12:38.000Z" + }, + "end": { + "$date": "2022-05-29T04:17:47.000Z" + }, + "events": [ + { + "uuid": "1e6db113-5f08-4d2f-86ab-e632fa2eaebe", + "start": { + "$date": "2022-05-29T04:12:38.000Z" + }, + "end": { + "$date": "2022-05-29T04:17:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "a4a6d186-9983-4d9f-8690-85921e98f97c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-29T04:13:40.000Z" + }, + "end": { + "$date": "2022-05-29T06:17:40.000Z" + }, + "events": [ + { + "uuid": "e9bc5a64-9dce-475d-ac12-0374eb41619d", + "start": { + "$date": "2022-05-29T04:13:40.000Z" + }, + "end": { + "$date": "2022-05-29T06:17:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "99f55805-c43b-4dcf-a84a-18680e200e68", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T04:25:52.000Z" + }, + "end": { + "$date": "2022-05-29T04:30:08.000Z" + }, + "events": [ + { + "uuid": "d1127961-6305-4420-9eb5-092f9def647c", + "start": { + "$date": "2022-05-29T04:25:52.000Z" + }, + "end": { + "$date": "2022-05-29T04:30:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "ae8d418e-97d6-430a-9443-5065f3d5de5c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T04:26:49.000Z" + }, + "end": { + "$date": "2022-05-29T06:08:24.000Z" + }, + "events": [ + { + "uuid": "9afa5908-be15-4bee-8b54-5faf923f73f7", + "start": { + "$date": "2022-05-29T04:26:49.000Z" + }, + "end": { + "$date": "2022-05-29T06:08:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "b11f888f-7013-49b4-bb2e-0a96b0b73bdc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T04:30:23.000Z" + }, + "end": { + "$date": "2022-05-29T06:20:19.000Z" + }, + "events": [ + { + "uuid": "f8d25b87-58b2-4519-b9e6-2e651e17db1c", + "start": { + "$date": "2022-05-29T04:30:23.000Z" + }, + "end": { + "$date": "2022-05-29T06:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "2858626b-466e-47d8-ba76-04f7f9f9cdf0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T06:13:50.000Z" + }, + "end": { + "$date": "2022-05-29T06:22:31.000Z" + }, + "events": [ + { + "uuid": "894d418e-c19d-4b06-a1b6-0240954fd3c0", + "start": { + "$date": "2022-05-29T06:13:50.000Z" + }, + "end": { + "$date": "2022-05-29T06:22:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "49b74d79-2870-4c72-be55-8824979304b0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T06:20:29.000Z" + }, + "end": { + "$date": "2022-05-29T10:17:14.000Z" + }, + "events": [ + { + "uuid": "4f9ea001-e247-47af-a572-c2cdd6817d3b", + "start": { + "$date": "2022-05-29T06:20:29.000Z" + }, + "end": { + "$date": "2022-05-29T06:41:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "73f2a3df-35d7-4898-ab7c-58a23f073068", + "start": { + "$date": "2022-05-29T06:41:29.000Z" + }, + "end": { + "$date": "2022-05-29T06:46:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f466c45e-7453-4608-9682-5087f96f3fe2", + "start": { + "$date": "2022-05-29T06:46:29.000Z" + }, + "end": { + "$date": "2022-05-29T06:56:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "12375b75-9206-426a-8dee-c2c72f6a9591", + "start": { + "$date": "2022-05-29T06:56:29.000Z" + }, + "end": { + "$date": "2022-05-29T07:13:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bc8fab80-70e1-4fad-a6b1-42be97c68c30", + "start": { + "$date": "2022-05-29T07:13:29.000Z" + }, + "end": { + "$date": "2022-05-29T07:23:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4ad372f1-4ecc-46c4-8fd6-2417abcc893e", + "start": { + "$date": "2022-05-29T07:23:29.000Z" + }, + "end": { + "$date": "2022-05-29T10:17:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1c7f6d76-f15c-43d1-9cab-c02b58a09207", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T06:24:57.000Z" + }, + "end": { + "$date": "2022-05-29T06:29:52.000Z" + }, + "events": [ + { + "uuid": "2c48b27f-dce1-4cf9-a432-de887080cf2e", + "start": { + "$date": "2022-05-29T06:24:57.000Z" + }, + "end": { + "$date": "2022-05-29T06:29:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3af5f7a1-0cfa-4b6a-b508-aa2f84f17b16", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-29T14:35:27.000Z" + }, + "end": { + "$date": "2022-05-29T15:37:35.000Z" + }, + "events": [ + { + "uuid": "9a202ca5-415f-4661-bc82-b29a3050f9db", + "start": { + "$date": "2022-05-29T14:35:27.000Z" + }, + "end": { + "$date": "2022-05-29T15:37:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "fe259929-dc24-4bb1-8cc7-1409b5235915", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T14:55:45.000Z" + }, + "end": { + "$date": "2022-05-29T15:08:30.000Z" + }, + "events": [ + { + "uuid": "2396bf1d-cb49-4f48-baab-a1206569c9b3", + "start": { + "$date": "2022-05-29T14:55:45.000Z" + }, + "end": { + "$date": "2022-05-29T15:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "73559065-e17c-41c9-8560-a8ff2188479d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T15:08:40.000Z" + }, + "end": { + "$date": "2022-05-29T15:30:47.000Z" + }, + "events": [ + { + "uuid": "a3d93479-2296-44bb-886a-9f51966dd570", + "start": { + "$date": "2022-05-29T15:08:40.000Z" + }, + "end": { + "$date": "2022-05-29T15:30:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "b7fd9313-1792-4013-978d-dea10bde428d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-29T15:31:27.000Z" + }, + "end": { + "$date": "2022-05-29T17:59:36.000Z" + }, + "events": [ + { + "uuid": "e0404f19-b746-4a49-9c0c-6acfd9197ed5", + "start": { + "$date": "2022-05-29T15:31:27.000Z" + }, + "end": { + "$date": "2022-05-29T17:59:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", + "uuid": "c499dc09-398a-466e-82c7-7f797d50a2c1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-29T15:47:14.000Z" + }, + "end": { + "$date": "2022-05-29T20:34:09.000Z" + }, + "events": [ + { + "uuid": "91f72f94-167e-40fe-b546-4b9ec4114d43", + "start": { + "$date": "2022-05-29T15:47:14.000Z" + }, + "end": { + "$date": "2022-05-29T20:34:09.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b747aeb3-0758-4783-88b9-049fe227fc8f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-29T16:21:40.000Z" + }, + "end": { + "$date": "2022-05-29T20:33:31.000Z" + }, + "events": [ + { + "uuid": "2d90f78b-aefe-41a5-aaf8-88280e014381", + "start": { + "$date": "2022-05-29T16:21:40.000Z" + }, + "end": { + "$date": "2022-05-29T17:49:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "68e4e3c2-c494-408c-8f29-6777a3e1d36a", + "start": { + "$date": "2022-05-29T17:49:40.000Z" + }, + "end": { + "$date": "2022-05-29T17:54:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9687d1eb-436d-4ba5-b7b9-e3a94f9cd9be", + "start": { + "$date": "2022-05-29T17:54:40.000Z" + }, + "end": { + "$date": "2022-05-29T18:04:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "661a9da5-9ea8-4866-b824-85437915ed3a", + "start": { + "$date": "2022-05-29T18:04:40.000Z" + }, + "end": { + "$date": "2022-05-29T19:23:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d90f3a20-3e6e-4460-9682-bf935d41b923", + "start": { + "$date": "2022-05-29T19:23:40.000Z" + }, + "end": { + "$date": "2022-05-29T19:33:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ec8d92fa-8456-44b1-8388-f6a086a1d38b", + "start": { + "$date": "2022-05-29T19:33:40.000Z" + }, + "end": { + "$date": "2022-05-29T19:36:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "92aceec1-4060-40ed-8348-0649e3a0b069", + "start": { + "$date": "2022-05-29T19:36:40.000Z" + }, + "end": { + "$date": "2022-05-29T19:46:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ffd5d58b-046e-4186-9936-f289c986128c", + "start": { + "$date": "2022-05-29T19:46:40.000Z" + }, + "end": { + "$date": "2022-05-29T20:30:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aaa04370-8b6e-40c8-b33e-4c74a5678370", + "start": { + "$date": "2022-05-29T20:30:40.000Z" + }, + "end": { + "$date": "2022-05-29T20:33:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "de154159-cb28-49a6-a3bb-776451581cf2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-29T17:03:45.000Z" + }, + "end": { + "$date": "2022-05-29T18:07:46.000Z" + }, + "events": [ + { + "uuid": "643401d0-66f6-44cc-9be8-38298f30e020", + "start": { + "$date": "2022-05-29T17:03:45.000Z" + }, + "end": { + "$date": "2022-05-29T18:07:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f81054d2-6308-4e46-810b-69c794610629", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T17:31:09.000Z" + }, + "end": { + "$date": "2022-05-29T21:52:30.000Z" + }, + "events": [ + { + "uuid": "0182cce7-4a12-4fab-8c57-67c065501a0c", + "start": { + "$date": "2022-05-29T17:31:09.000Z" + }, + "end": { + "$date": "2022-05-29T19:55:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8c8f94be-0963-4fc4-85fe-d922f8f06ca4", + "start": { + "$date": "2022-05-29T19:55:09.000Z" + }, + "end": { + "$date": "2022-05-29T19:58:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b0626380-346f-4e0a-b3ff-d057b5902171", + "start": { + "$date": "2022-05-29T19:58:09.000Z" + }, + "end": { + "$date": "2022-05-29T21:52:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "d49e95a1-cbde-4ee8-a2f8-b7f426207ad8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-29T17:49:28.000Z" + }, + "end": { + "$date": "2022-05-29T18:53:52.000Z" + }, + "events": [ + { + "uuid": "3440753d-a346-4b20-9912-8dcf6d8bfc20", + "start": { + "$date": "2022-05-29T17:49:28.000Z" + }, + "end": { + "$date": "2022-05-29T18:53:52.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e0d83fb-03df-41c9-88f8-677318913107", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-29T18:49:21.000Z" + }, + "end": { + "$date": "2022-05-29T19:03:30.000Z" + }, + "events": [ + { + "uuid": "4ec58b4e-1dd8-43b9-a0bf-a04a871b114c", + "start": { + "$date": "2022-05-29T18:49:21.000Z" + }, + "end": { + "$date": "2022-05-29T19:03:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "a5b8e09a-15a3-40c4-8fd5-ea6c962b6ce3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-29T19:14:12.000Z" + }, + "end": { + "$date": "2022-05-29T22:01:25.000Z" + }, + "events": [ + { + "uuid": "9db87572-e9a7-432c-b7be-1e365758c37a", + "start": { + "$date": "2022-05-29T19:14:12.000Z" + }, + "end": { + "$date": "2022-05-29T22:01:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "c89d192b-ec28-40dc-8c6d-a2038f806608", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T20:00:26.000Z" + }, + "end": { + "$date": "2022-05-29T21:10:06.000Z" + }, + "events": [ + { + "uuid": "6f78096b-366c-4f62-84da-14446ae7cfd1", + "start": { + "$date": "2022-05-29T20:00:26.000Z" + }, + "end": { + "$date": "2022-05-29T21:10:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "7026a2f7-d1f2-4e6e-a105-a99fc4bc6e3f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-29T20:59:41.000Z" + }, + "end": { + "$date": "2022-05-29T21:31:56.000Z" + }, + "events": [ + { + "uuid": "6ebd3529-b873-481f-a39a-ffab5d0b97a5", + "start": { + "$date": "2022-05-29T20:59:41.000Z" + }, + "end": { + "$date": "2022-05-29T21:31:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0d8beb21-1b3f-4409-b03c-03a3893236c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-29T23:45:12.000Z" + }, + "end": { + "$date": "2022-05-29T23:45:17.000Z" + }, + "events": [ + { + "uuid": "97a00b6e-008b-4352-9f98-c0c596c8868f", + "start": { + "$date": "2022-05-29T23:45:12.000Z" + }, + "end": { + "$date": "2022-05-29T23:45:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f362198c-81dd-4adb-881e-eb954610abf8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T21:12:49.000Z" + }, + "end": { + "$date": "2022-05-29T23:22:10.000Z" + }, + "events": [ + { + "uuid": "7a4f51af-faab-4ab0-aba2-ce56f0e07a15", + "start": { + "$date": "2022-05-29T21:12:49.000Z" + }, + "end": { + "$date": "2022-05-29T22:23:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80971e51-ba81-4b4d-9cae-4610625151b2", + "start": { + "$date": "2022-05-29T22:23:49.000Z" + }, + "end": { + "$date": "2022-05-29T22:28:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "04d5d6ea-1ba6-4843-ae59-474d963b0990", + "start": { + "$date": "2022-05-29T22:28:49.000Z" + }, + "end": { + "$date": "2022-05-29T23:22:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "19a1fed5-a0f8-4846-94fd-8adcf732d2b9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-29T21:34:11.000Z" + }, + "end": { + "$date": "2022-05-30T01:11:14.000Z" + }, + "events": [ + { + "uuid": "24b92b8c-91bc-4959-b648-2819772f94e5", + "start": { + "$date": "2022-05-29T21:34:11.000Z" + }, + "end": { + "$date": "2022-05-30T01:11:14.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c621d5c5-5ad2-44f9-91ac-f1be93d4f5ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-29T21:57:07.000Z" + }, + "end": { + "$date": "2022-05-29T23:01:03.000Z" + }, + "events": [ + { + "uuid": "db188ea0-29b5-4705-b80d-d130845bfc7a", + "start": { + "$date": "2022-05-29T21:57:07.000Z" + }, + "end": { + "$date": "2022-05-29T22:49:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7e60fbea-3ded-4cfa-8bd4-4fdff07607ac", + "start": { + "$date": "2022-05-29T22:49:07.000Z" + }, + "end": { + "$date": "2022-05-29T22:54:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4490c7c2-26b2-40ad-aeab-ad5d0b2f4060", + "start": { + "$date": "2022-05-29T22:54:07.000Z" + }, + "end": { + "$date": "2022-05-29T23:01:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "64127be1-59c2-42e4-9ece-0a553334e617", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-29T22:04:25.000Z" + }, + "end": { + "$date": "2022-05-29T22:57:13.000Z" + }, + "events": [ + { + "uuid": "c5257f2f-6f48-4a90-87cd-9d78a7f4ddfc", + "start": { + "$date": "2022-05-29T22:04:25.000Z" + }, + "end": { + "$date": "2022-05-29T22:57:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "95371b0c-2115-4515-adb6-b83e09be37e7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T23:38:10.000Z" + }, + "end": { + "$date": "2022-05-29T23:38:12.000Z" + }, + "events": [ + { + "uuid": "0bb8d7e5-6efc-469f-abc7-d6e8772bc702", + "start": { + "$date": "2022-05-29T23:38:10.000Z" + }, + "end": { + "$date": "2022-05-29T23:38:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b3c8a207-23b8-4407-93e3-6c21fff06279", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T23:39:05.000Z" + }, + "end": { + "$date": "2022-05-29T23:45:34.000Z" + }, + "events": [ + { + "uuid": "975e10ef-5a46-4059-9886-3fe7e00b38b6", + "start": { + "$date": "2022-05-29T23:39:05.000Z" + }, + "end": { + "$date": "2022-05-29T23:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08c549ed-6686-422c-947d-dad12553d161", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-29T23:40:15.000Z" + }, + "end": { + "$date": "2022-05-30T02:49:30.000Z" + }, + "events": [ + { + "uuid": "d810487e-d18a-45e7-a17c-d12f46254cb2", + "start": { + "$date": "2022-05-29T23:40:15.000Z" + }, + "end": { + "$date": "2022-05-30T02:49:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "698e7afc-738a-4f70-b6f0-249e114a5c26", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-29T23:53:12.000Z" + }, + "end": { + "$date": "2022-05-30T02:49:21.000Z" + }, + "events": [ + { + "uuid": "a4d0a7ef-3637-47d2-a248-c10b67b3201a", + "start": { + "$date": "2022-05-29T23:53:12.000Z" + }, + "end": { + "$date": "2022-05-30T02:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ac453a6c-dcf8-4372-877d-e152c1f8a1f4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-29T23:54:33.000Z" + }, + "end": { + "$date": "2022-05-30T01:09:51.000Z" + }, + "events": [ + { + "uuid": "3d770e32-2296-4856-a1b1-2c450dfbe242", + "start": { + "$date": "2022-05-29T23:54:33.000Z" + }, + "end": { + "$date": "2022-05-30T01:09:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "03e61102-97bb-4027-a9e7-3cf3383877bf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-29T23:54:42.000Z" + }, + "end": { + "$date": "2022-05-30T02:49:14.000Z" + }, + "events": [ + { + "uuid": "fe2ecd62-bf16-4a24-9450-9c66d3811836", + "start": { + "$date": "2022-05-29T23:54:42.000Z" + }, + "end": { + "$date": "2022-05-30T02:49:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "a431007e-38f5-4dec-8040-1059752c6646", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-30T00:02:39.000Z" + }, + "end": { + "$date": "2022-05-30T02:13:25.000Z" + }, + "events": [ + { + "uuid": "1662c5b3-98ac-4805-9c30-11cbf5a0ae46", + "start": { + "$date": "2022-05-30T00:02:39.000Z" + }, + "end": { + "$date": "2022-05-30T01:21:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae2ec5df-f21b-49b5-b23b-9989a6f4f347", + "start": { + "$date": "2022-05-30T01:21:39.000Z" + }, + "end": { + "$date": "2022-05-30T02:13:25.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "abaf07e9-c822-47e0-ac7c-1ac22b3b498d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T00:33:23.000Z" + }, + "end": { + "$date": "2022-05-30T01:34:29.000Z" + }, + "events": [ + { + "uuid": "26b4bf66-0b1c-46ac-ba8b-5626d06a9b6b", + "start": { + "$date": "2022-05-30T00:33:23.000Z" + }, + "end": { + "$date": "2022-05-30T01:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "77e2d6ee-aa43-4e9b-9da5-db003fccc007", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-30T00:35:50.000Z" + }, + "end": { + "$date": "2022-05-30T01:35:13.000Z" + }, + "events": [ + { + "uuid": "edda9ad1-428e-46f3-99ec-5af66e4d04b8", + "start": { + "$date": "2022-05-30T00:35:50.000Z" + }, + "end": { + "$date": "2022-05-30T01:35:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7c04a2e4-c3f8-4563-84d0-dc8643d298cf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-30T01:35:53.000Z" + }, + "end": { + "$date": "2022-05-30T06:48:41.000Z" + }, + "events": [ + { + "uuid": "7309367d-9e3e-4a18-ab45-ab9d4954c9c6", + "start": { + "$date": "2022-05-30T01:35:53.000Z" + }, + "end": { + "$date": "2022-05-30T06:48:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "4809cbd8-bfec-4e68-9f52-fb5202a90754", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-30T01:37:04.000Z" + }, + "end": { + "$date": "2022-05-30T04:36:12.000Z" + }, + "events": [ + { + "uuid": "779d61b5-7b71-47a1-948a-f6361a49821f", + "start": { + "$date": "2022-05-30T01:37:04.000Z" + }, + "end": { + "$date": "2022-05-30T04:36:12.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d210811a-ef1e-4b8e-9040-f095170ca084", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T01:37:25.000Z" + }, + "end": { + "$date": "2022-05-30T02:35:47.000Z" + }, + "events": [ + { + "uuid": "b40296b7-4349-41af-b961-cb57d0366fed", + "start": { + "$date": "2022-05-30T01:37:25.000Z" + }, + "end": { + "$date": "2022-05-30T02:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2075383b-cc34-4494-ba6d-d01568fb865a", + "uuid": "c8c65840-4f7f-4e68-aed4-5b399dc3a44f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-05-30T01:51:35.000Z" + }, + "end": { + "$date": "2022-05-30T02:21:05.000Z" + }, + "events": [ + { + "uuid": "617d5edb-8ed8-4d98-b164-246ca9ebab8a", + "start": { + "$date": "2022-05-30T01:51:35.000Z" + }, + "end": { + "$date": "2022-05-30T02:21:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "6543a553-41f7-4504-aef5-348e21aac784", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-30T02:28:07.000Z" + }, + "end": { + "$date": "2022-05-30T03:15:36.000Z" + }, + "events": [ + { + "uuid": "d8f9003f-8779-4fb5-a23e-34f4be39c235", + "start": { + "$date": "2022-05-30T02:28:07.000Z" + }, + "end": { + "$date": "2022-05-30T03:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "f2f43b64-4558-4ce9-8d96-2da55942912c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-30T02:39:31.000Z" + }, + "end": { + "$date": "2022-05-30T08:17:06.000Z" + }, + "events": [ + { + "uuid": "e8e93539-c10b-42b9-bdfb-35dd8cdb5846", + "start": { + "$date": "2022-05-30T02:39:31.000Z" + }, + "end": { + "$date": "2022-05-30T08:17:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "3b3df829-c6fd-4604-af10-f0fe06e13cb6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T06:13:45.000Z" + }, + "end": { + "$date": "2022-05-30T06:15:18.000Z" + }, + "events": [ + { + "uuid": "88f98c13-6207-420b-9478-93ba853c59ae", + "start": { + "$date": "2022-05-30T06:13:45.000Z" + }, + "end": { + "$date": "2022-05-30T06:15:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "a7c10741-0e91-4cbd-9748-1b42660806bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-30T03:09:12.000Z" + }, + "end": { + "$date": "2022-05-30T08:18:48.000Z" + }, + "events": [ + { + "uuid": "b71eada4-2dca-4ace-b53a-f7264d6444ee", + "start": { + "$date": "2022-05-30T03:09:12.000Z" + }, + "end": { + "$date": "2022-05-30T08:18:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ba0af1d0-bdb2-44e9-adff-ae6388081709", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-30T03:20:22.000Z" + }, + "end": { + "$date": "2022-05-30T06:25:11.000Z" + }, + "events": [ + { + "uuid": "7d017952-1bbd-4282-973f-8c70eb0944ad", + "start": { + "$date": "2022-05-30T03:20:22.000Z" + }, + "end": { + "$date": "2022-05-30T06:25:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "963e2b83-3103-4003-aff9-70d4a5b52eef", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-30T04:30:47.000Z" + }, + "end": { + "$date": "2022-05-30T05:49:08.000Z" + }, + "events": [ + { + "uuid": "478f8ea9-775d-460d-accb-a0f6c4b9b328", + "start": { + "$date": "2022-05-30T04:30:47.000Z" + }, + "end": { + "$date": "2022-05-30T05:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0e642297-18f7-4eb4-b77a-cfcf143c80ec", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-30T04:07:59.000Z" + }, + "end": { + "$date": "2022-05-30T05:49:33.000Z" + }, + "events": [ + { + "uuid": "0de86630-63b2-410c-992c-859e3018462a", + "start": { + "$date": "2022-05-30T04:07:59.000Z" + }, + "end": { + "$date": "2022-05-30T05:49:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9a74eb56-f533-48cf-a62b-be94b07a70c2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-30T04:09:04.000Z" + }, + "end": { + "$date": "2022-05-30T05:49:09.000Z" + }, + "events": [ + { + "uuid": "404a0106-82a1-44d1-bee9-54677b52bc9f", + "start": { + "$date": "2022-05-30T04:09:04.000Z" + }, + "end": { + "$date": "2022-05-30T05:49:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "61106d08-1d8a-4d3f-80a2-b0f24a480e1a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-30T04:16:44.000Z" + }, + "end": { + "$date": "2022-05-30T06:24:29.000Z" + }, + "events": [ + { + "uuid": "423298ad-77f3-4a13-b53c-d4e1ef534c3d", + "start": { + "$date": "2022-05-30T04:16:44.000Z" + }, + "end": { + "$date": "2022-05-30T06:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "37e6dfd7-6494-465f-b29a-9a0685c2c21c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-30T05:53:02.000Z" + }, + "end": { + "$date": "2022-05-30T08:13:43.000Z" + }, + "events": [ + { + "uuid": "61685b34-b3c7-45dc-9155-57af2f5887dd", + "start": { + "$date": "2022-05-30T05:53:02.000Z" + }, + "end": { + "$date": "2022-05-30T08:13:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "9403973f-b334-4f9c-bd95-41e8bbcb37a1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T13:27:03.000Z" + }, + "end": { + "$date": "2022-05-30T13:35:44.000Z" + }, + "events": [ + { + "uuid": "dcf0d72c-cb90-44b1-aa34-912b5a07a828", + "start": { + "$date": "2022-05-30T13:27:03.000Z" + }, + "end": { + "$date": "2022-05-30T13:35:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4cd1d404-142f-4ef3-b155-162ed13a905b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T13:39:34.000Z" + }, + "end": { + "$date": "2022-05-30T15:04:16.000Z" + }, + "events": [ + { + "uuid": "5fab616e-c394-4bcc-bfc7-d5161fe9a8a9", + "start": { + "$date": "2022-05-30T13:39:34.000Z" + }, + "end": { + "$date": "2022-05-30T15:04:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "4d0311ea-7d58-49c5-994c-07f882df8f1d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T15:04:21.000Z" + }, + "end": { + "$date": "2022-05-30T15:09:12.000Z" + }, + "events": [ + { + "uuid": "fd28faa7-2de1-4f4b-a538-561a0b39c407", + "start": { + "$date": "2022-05-30T15:04:21.000Z" + }, + "end": { + "$date": "2022-05-30T15:09:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22998825-29f0-46c0-b237-7b93d39d8c81", + "uuid": "7d38a52e-c239-48a1-b8cf-6c6241d7c083", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-30T17:38:46.000Z" + }, + "end": { + "$date": "2022-05-30T20:20:24.000Z" + }, + "events": [ + { + "uuid": "78ed87c8-6e79-46e4-814e-ca6128f29a15", + "start": { + "$date": "2022-05-30T17:38:46.000Z" + }, + "end": { + "$date": "2022-05-30T20:20:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "20c1eca9-e05d-409c-b45a-1bf3ed19ff4d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-30T17:42:54.000Z" + }, + "end": { + "$date": "2022-05-30T18:43:17.000Z" + }, + "events": [ + { + "uuid": "d2ea42f4-e44c-40f6-97cc-cd583dc13025", + "start": { + "$date": "2022-05-30T17:42:54.000Z" + }, + "end": { + "$date": "2022-05-30T18:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3ec76306-3878-4cf7-8903-7f174f766dc2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-30T18:22:50.000Z" + }, + "end": { + "$date": "2022-05-30T18:43:19.000Z" + }, + "events": [ + { + "uuid": "ef82416b-c855-41d5-b0b1-bdcf55cda994", + "start": { + "$date": "2022-05-30T18:22:50.000Z" + }, + "end": { + "$date": "2022-05-30T18:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "283bb496-c1f0-433f-b0fc-adecf1c2c420", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-30T18:47:07.000Z" + }, + "end": { + "$date": "2022-05-30T18:48:35.000Z" + }, + "events": [ + { + "uuid": "b7c30ae6-2ae5-479e-b29a-cf84717bf94c", + "start": { + "$date": "2022-05-30T18:47:07.000Z" + }, + "end": { + "$date": "2022-05-30T18:48:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a8fd1e38-030d-462e-8986-7c5c7445494a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-30T18:53:37.000Z" + }, + "end": { + "$date": "2022-05-30T19:20:29.000Z" + }, + "events": [ + { + "uuid": "07d51691-b3a4-4ce6-8543-83979534b906", + "start": { + "$date": "2022-05-30T18:53:37.000Z" + }, + "end": { + "$date": "2022-05-30T19:20:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eeeb73bd-e1c9-4379-bc0f-62ce93ff0856", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-30T19:46:17.000Z" + }, + "end": { + "$date": "2022-05-30T21:02:25.000Z" + }, + "events": [ + { + "uuid": "17c6ee8f-fe91-486d-977b-040637822f6c", + "start": { + "$date": "2022-05-30T19:46:17.000Z" + }, + "end": { + "$date": "2022-05-30T21:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2f6535af-3c03-44ce-9c08-5bd63e6ed3f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-30T19:51:38.000Z" + }, + "end": { + "$date": "2022-05-30T20:43:43.000Z" + }, + "events": [ + { + "uuid": "b0026cda-5961-4f9d-ba97-4e997e068602", + "start": { + "$date": "2022-05-30T19:51:38.000Z" + }, + "end": { + "$date": "2022-05-30T20:15:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8aaa5475-f668-4298-8141-bd7d39a9bde7", + "start": { + "$date": "2022-05-30T20:15:38.000Z" + }, + "end": { + "$date": "2022-05-30T20:32:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e144b61b-766e-48d9-ae41-11b84306830e", + "start": { + "$date": "2022-05-30T20:32:38.000Z" + }, + "end": { + "$date": "2022-05-30T20:43:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "81bfc6b4-d37b-4b8b-98fe-3c2015019ba7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-30T20:16:49.000Z" + }, + "end": { + "$date": "2022-05-30T20:17:57.000Z" + }, + "events": [ + { + "uuid": "e1693952-addf-4cff-8456-f9c8b71efc2a", + "start": { + "$date": "2022-05-30T20:16:49.000Z" + }, + "end": { + "$date": "2022-05-30T20:17:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c793281e-3f4d-47dd-9258-3d0e6e904529", + "uuid": "46c8c233-c06a-46c7-bd20-b249b798165d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-30T20:29:01.000Z" + }, + "end": { + "$date": "2022-05-30T20:29:03.000Z" + }, + "events": [ + { + "uuid": "2e0d4f1c-6da9-4002-99ac-04c32ac02cae", + "start": { + "$date": "2022-05-30T20:29:01.000Z" + }, + "end": { + "$date": "2022-05-30T20:29:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "998a4dc3-9d5e-4db0-910f-c564efe4f002", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-30T20:31:46.000Z" + }, + "end": { + "$date": "2022-05-30T20:56:55.000Z" + }, + "events": [ + { + "uuid": "734e81bc-0a87-4d8b-956e-f57e049fa75a", + "start": { + "$date": "2022-05-30T20:31:46.000Z" + }, + "end": { + "$date": "2022-05-30T20:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4254480-bdcd-4e7c-9e66-d0a2f06e229a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-30T21:22:37.000Z" + }, + "end": { + "$date": "2022-05-30T23:32:40.000Z" + }, + "events": [ + { + "uuid": "39ee8388-559d-44e3-9353-059342b886d6", + "start": { + "$date": "2022-05-30T21:22:37.000Z" + }, + "end": { + "$date": "2022-05-30T23:32:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "1f74d349-8fcc-4058-9574-1b24c2ed796f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-30T21:24:15.000Z" + }, + "end": { + "$date": "2022-05-30T22:14:34.000Z" + }, + "events": [ + { + "uuid": "5f32a963-2ad0-481c-ba52-e870f48cd148", + "start": { + "$date": "2022-05-30T21:24:15.000Z" + }, + "end": { + "$date": "2022-05-30T22:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0d12ccf5-c8b5-4acb-9bba-9797c951cc60", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-05-30T21:24:45.000Z" + }, + "end": { + "$date": "2022-05-30T23:32:43.000Z" + }, + "events": [ + { + "uuid": "899fdfb1-3855-4b38-b9cc-49c1b38de15b", + "start": { + "$date": "2022-05-30T21:24:45.000Z" + }, + "end": { + "$date": "2022-05-30T23:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "592df172-af2f-4113-a894-b413860fc1ac", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-30T21:25:46.000Z" + }, + "end": { + "$date": "2022-05-30T21:58:05.000Z" + }, + "events": [ + { + "uuid": "274a6f5f-0529-48f0-bf18-c9ea3ca198f3", + "start": { + "$date": "2022-05-30T21:25:46.000Z" + }, + "end": { + "$date": "2022-05-30T21:58:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "34c686a7-f158-4cf9-9924-69fe0a7d6496", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-05-30T21:27:32.000Z" + }, + "end": { + "$date": "2022-05-30T23:32:53.000Z" + }, + "events": [ + { + "uuid": "c53c6784-c325-4b5c-bd01-f07604953e99", + "start": { + "$date": "2022-05-30T21:27:32.000Z" + }, + "end": { + "$date": "2022-05-30T23:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e88693f4-5a5e-42a3-9916-5442c0464ec8", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-05-30T21:28:27.000Z" + }, + "end": { + "$date": "2022-05-31T02:02:32.000Z" + }, + "events": [ + { + "uuid": "50678a48-21ed-425f-86f5-c8e8a9cef0c1", + "start": { + "$date": "2022-05-30T21:28:27.000Z" + }, + "end": { + "$date": "2022-05-31T02:02:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f00851f6-1f29-4f90-ae78-a6a8d6fd196a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-30T21:35:44.000Z" + }, + "end": { + "$date": "2022-05-30T22:10:36.000Z" + }, + "events": [ + { + "uuid": "c3923578-b1b3-4837-8650-4182f09a7364", + "start": { + "$date": "2022-05-30T21:35:44.000Z" + }, + "end": { + "$date": "2022-05-30T22:10:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "f2c6fba4-9722-4b0e-b39b-109b3461242b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T21:46:58.000Z" + }, + "end": { + "$date": "2022-05-30T22:03:58.000Z" + }, + "events": [ + { + "uuid": "6e240ec5-7581-41b6-b2ce-3bb91e855434", + "start": { + "$date": "2022-05-30T21:46:58.000Z" + }, + "end": { + "$date": "2022-05-30T22:03:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "785354d1-cab8-42b8-b713-9bd75cb88a16", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-05-30T21:58:55.000Z" + }, + "end": { + "$date": "2022-05-31T01:58:19.000Z" + }, + "events": [ + { + "uuid": "745ed77e-3ec1-4437-b00a-612a2d9fe599", + "start": { + "$date": "2022-05-30T21:58:55.000Z" + }, + "end": { + "$date": "2022-05-31T01:58:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "ebf5401e-e746-48b8-9315-306f72c85078", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T22:32:20.000Z" + }, + "end": { + "$date": "2022-05-30T22:32:50.000Z" + }, + "events": [ + { + "uuid": "881fce3c-e264-4059-9b4a-df94beabd021", + "start": { + "$date": "2022-05-30T22:32:20.000Z" + }, + "end": { + "$date": "2022-05-30T22:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "a9e7c86c-0288-426c-b1ca-0c282fbbca6c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-30T22:07:43.000Z" + }, + "end": { + "$date": "2022-05-30T23:02:57.000Z" + }, + "events": [ + { + "uuid": "35cfac9e-b8c8-43a8-a215-22711ec88922", + "start": { + "$date": "2022-05-30T22:07:43.000Z" + }, + "end": { + "$date": "2022-05-30T23:02:57.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09c8dd22-9c4f-49c1-8baa-a3d646918bb5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-30T23:55:23.000Z" + }, + "end": { + "$date": "2022-05-31T03:25:20.000Z" + }, + "events": [ + { + "uuid": "5f4118b3-31ac-4b9c-996e-b826e76fbf72", + "start": { + "$date": "2022-05-30T23:55:23.000Z" + }, + "end": { + "$date": "2022-05-31T04:26:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f7d729b-5eea-4507-a634-bc451d15afbd", + "start": { + "$date": "2022-05-31T04:26:23.000Z" + }, + "end": { + "$date": "2022-05-31T04:29:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "783cdd67-32db-4f92-b992-ae63ec36089c", + "start": { + "$date": "2022-05-31T04:29:23.000Z" + }, + "end": { + "$date": "2022-05-31T04:39:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "94465921-0550-4c5b-a405-67992837a9c4", + "start": { + "$date": "2022-05-31T04:39:23.000Z" + }, + "end": { + "$date": "2022-05-31T04:44:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea127259-050b-4c05-94fb-ec4154993678", + "start": { + "$date": "2022-05-31T04:44:23.000Z" + }, + "end": { + "$date": "2022-05-31T03:25:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "418d255e-1ec1-4717-ae09-96547ebba706", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-05-31T00:59:48.000Z" + }, + "end": { + "$date": "2022-05-31T04:59:02.000Z" + }, + "events": [ + { + "uuid": "1c8e4aed-464a-46ae-9a9c-851142314742", + "start": { + "$date": "2022-05-31T00:59:48.000Z" + }, + "end": { + "$date": "2022-05-31T04:59:02.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "fedb6249-75d2-45ac-bebc-77ab6ae4cf94", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-31T02:27:35.000Z" + }, + "end": { + "$date": "2022-05-31T03:32:59.000Z" + }, + "events": [ + { + "uuid": "ce8d92d1-e7c0-4d96-9b8c-4da64df8790a", + "start": { + "$date": "2022-05-31T02:27:35.000Z" + }, + "end": { + "$date": "2022-05-31T03:32:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "2237f209-18cf-4935-a739-4e4b762a552f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-31T02:59:16.000Z" + }, + "end": { + "$date": "2022-05-31T04:08:02.000Z" + }, + "events": [ + { + "uuid": "3f9491d0-2492-49ae-9ad7-8040d9578610", + "start": { + "$date": "2022-05-31T02:59:16.000Z" + }, + "end": { + "$date": "2022-05-31T04:08:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "b8851435-a0bf-47e8-9d07-b1d0d4fc5b9b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-31T03:06:06.000Z" + }, + "end": { + "$date": "2022-05-31T07:27:45.000Z" + }, + "events": [ + { + "uuid": "a07a65f4-f12a-435d-8baf-4f7a002b6888", + "start": { + "$date": "2022-05-31T03:06:06.000Z" + }, + "end": { + "$date": "2022-05-31T03:31:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5f30070d-6464-4790-9730-f5e4386c312a", + "start": { + "$date": "2022-05-31T03:31:06.000Z" + }, + "end": { + "$date": "2022-05-31T07:08:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "736d3ba4-5bea-4a1f-a427-313521e35af3", + "start": { + "$date": "2022-05-31T07:08:06.000Z" + }, + "end": { + "$date": "2022-05-31T07:23:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "26ec39ab-aed7-49f3-8e4e-fbbb01fc7144", + "start": { + "$date": "2022-05-31T07:23:06.000Z" + }, + "end": { + "$date": "2022-05-31T07:27:45.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ceedff6b-8449-440d-bd83-e5e10ee6e596", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-05-31T03:13:55.000Z" + }, + "end": { + "$date": "2022-05-31T06:20:21.000Z" + }, + "events": [ + { + "uuid": "56ca6e73-dcf2-499f-a1a1-9da90b0341ad", + "start": { + "$date": "2022-05-31T03:13:55.000Z" + }, + "end": { + "$date": "2022-05-31T06:20:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "11c90e11-dac6-41b0-a648-97eb1454a433", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-31T03:26:45.000Z" + }, + "end": { + "$date": "2022-05-31T04:00:01.000Z" + }, + "events": [ + { + "uuid": "0ccfbce1-4e45-493e-bf7f-2c2753377fb9", + "start": { + "$date": "2022-05-31T03:26:45.000Z" + }, + "end": { + "$date": "2022-05-31T04:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "4ebfde93-25a8-45b5-8a1b-a1db4690498a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-31T04:19:24.000Z" + }, + "end": { + "$date": "2022-05-31T04:29:43.000Z" + }, + "events": [ + { + "uuid": "551a7e47-2022-4d99-b4f1-2bcdb34e1369", + "start": { + "$date": "2022-05-31T04:19:24.000Z" + }, + "end": { + "$date": "2022-05-31T04:29:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "aada9c14-b930-4d6c-bd11-034e2c4c45ed", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-05-31T04:49:58.000Z" + }, + "end": { + "$date": "2022-05-31T06:26:00.000Z" + }, + "events": [ + { + "uuid": "d7a4dd2f-b7c1-4c22-8434-606bf8b51577", + "start": { + "$date": "2022-05-31T04:49:58.000Z" + }, + "end": { + "$date": "2022-05-31T06:26:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "ade78c65-00f1-40eb-92e7-25d8df2c9092", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-31T15:20:26.000Z" + }, + "end": { + "$date": "2022-05-31T15:26:01.000Z" + }, + "events": [ + { + "uuid": "5d99bdb1-cd42-4b97-8aa0-0b7dee38bb8f", + "start": { + "$date": "2022-05-31T15:20:26.000Z" + }, + "end": { + "$date": "2022-05-31T15:26:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "dbe80666-d009-4ab9-9060-8b05b03cf703", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-05-31T15:50:08.000Z" + }, + "end": { + "$date": "2022-05-31T18:56:57.000Z" + }, + "events": [ + { + "uuid": "a58240c0-7352-4fc6-9fa2-281bc7cfe8b1", + "start": { + "$date": "2022-05-31T15:50:08.000Z" + }, + "end": { + "$date": "2022-05-31T18:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dab3938b-1ee1-4f97-a8d7-bf0a0169bc61", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-31T16:09:59.000Z" + }, + "end": { + "$date": "2022-05-31T16:31:09.000Z" + }, + "events": [ + { + "uuid": "15d27f90-f0eb-48f4-9443-d6b8f5d757c4", + "start": { + "$date": "2022-05-31T16:09:59.000Z" + }, + "end": { + "$date": "2022-05-31T16:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c65a133f-14ab-4bfd-90ea-2b09221cc567", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-31T16:57:04.000Z" + }, + "end": { + "$date": "2022-05-31T17:14:03.000Z" + }, + "events": [ + { + "uuid": "4e3a7ec8-fb5b-4144-86df-f5eada642c41", + "start": { + "$date": "2022-05-31T16:57:04.000Z" + }, + "end": { + "$date": "2022-05-31T17:14:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "ac1a9580-c7c5-4068-ae16-fb9e12fed9c0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-05-31T17:07:42.000Z" + }, + "end": { + "$date": "2022-05-31T17:18:42.000Z" + }, + "events": [ + { + "uuid": "f91f3d66-859d-4046-93cd-c7603788ec30", + "start": { + "$date": "2022-05-31T17:07:42.000Z" + }, + "end": { + "$date": "2022-05-31T17:18:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "fbb036c3-0361-45f5-9177-458f91c82ef0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-05-31T17:32:31.000Z" + }, + "end": { + "$date": "2022-05-31T18:58:42.000Z" + }, + "events": [ + { + "uuid": "1da3d3d6-e044-4580-ac08-e1b6dffd039e", + "start": { + "$date": "2022-05-31T17:32:31.000Z" + }, + "end": { + "$date": "2022-05-31T18:58:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "773249fe-4789-438f-adfd-48740d19048b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-05-31T19:25:14.000Z" + }, + "end": { + "$date": "2022-05-31T22:13:27.000Z" + }, + "events": [ + { + "uuid": "7825e731-9e61-484d-b596-d79c430414dc", + "start": { + "$date": "2022-05-31T19:25:14.000Z" + }, + "end": { + "$date": "2022-05-31T20:34:14.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f5392645-ee47-440d-8995-7fcb32bea3d7", + "start": { + "$date": "2022-05-31T20:34:14.000Z" + }, + "end": { + "$date": "2022-05-31T21:06:14.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b208fbc5-e84a-475b-98d6-5f5a03f13cb9", + "start": { + "$date": "2022-05-31T21:06:14.000Z" + }, + "end": { + "$date": "2022-05-31T22:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "22e6596b-dd79-4315-9279-59ae0e80aed9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-31T21:58:29.000Z" + }, + "end": { + "$date": "2022-05-31T22:14:43.000Z" + }, + "events": [ + { + "uuid": "7b592dde-9167-4256-a29e-a0b638fa6a24", + "start": { + "$date": "2022-05-31T21:58:29.000Z" + }, + "end": { + "$date": "2022-05-31T22:14:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08cc6d81-b0f4-4cd4-93cf-9fc8cbc58bf1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-05-31T22:16:45.000Z" + }, + "end": { + "$date": "2022-05-31T22:34:09.000Z" + }, + "events": [ + { + "uuid": "d6d14bfc-49a8-42f3-823d-ffc3f2ec71e2", + "start": { + "$date": "2022-05-31T22:16:45.000Z" + }, + "end": { + "$date": "2022-05-31T22:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "716bc0bc-3251-42d5-b180-3e38e9566f08", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-01T02:23:56.000Z" + }, + "end": { + "$date": "2022-06-02T02:45:19.000Z" + }, + "events": [ + { + "uuid": "7207b8bc-aa2f-4299-8489-130519fe6ed9", + "start": { + "$date": "2022-06-01T02:23:56.000Z" + }, + "end": { + "$date": "2022-06-01T05:37:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b6ffc830-2106-47e9-ab37-db6d607f2a66", + "start": { + "$date": "2022-06-01T05:37:56.000Z" + }, + "end": { + "$date": "2022-06-01T14:42:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "13b8660d-103c-42d6-b6c5-d7dea411388f", + "start": { + "$date": "2022-06-01T14:42:56.000Z" + }, + "end": { + "$date": "2022-06-01T14:46:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a631211a-24fb-4b9d-bcc9-bb2ca62a5f53", + "start": { + "$date": "2022-06-01T14:46:56.000Z" + }, + "end": { + "$date": "2022-06-01T17:40:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "db4bcd5c-4a1b-4783-a648-d475c00839bc", + "start": { + "$date": "2022-06-01T17:40:56.000Z" + }, + "end": { + "$date": "2022-06-01T17:43:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c5deb663-99e8-48fb-be80-26301e7360e6", + "start": { + "$date": "2022-06-01T17:43:56.000Z" + }, + "end": { + "$date": "2022-06-01T19:37:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aa0a64ca-a309-4e69-a600-2e0cafb876d5", + "start": { + "$date": "2022-06-01T19:37:56.000Z" + }, + "end": { + "$date": "2022-06-01T19:39:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "54cf006a-a2d1-4706-bf11-70c178bb9269", + "start": { + "$date": "2022-06-01T19:39:56.000Z" + }, + "end": { + "$date": "2022-06-02T02:34:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3bb1ad77-d9f4-4b11-ae9a-7ab003b3564a", + "start": { + "$date": "2022-06-02T02:34:56.000Z" + }, + "end": { + "$date": "2022-06-02T02:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "35f7d63d-b10b-4be3-b8f2-9c3fea05f3e3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-01T02:15:10.000Z" + }, + "end": { + "$date": "2022-06-01T05:33:19.000Z" + }, + "events": [ + { + "uuid": "dd706bbc-5996-49af-991b-8f3e9bc1f020", + "start": { + "$date": "2022-06-01T02:15:10.000Z" + }, + "end": { + "$date": "2022-06-01T05:33:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "9eb30207-47ab-498b-860a-31937f6d5e4a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-01T03:16:00.000Z" + }, + "end": { + "$date": "2022-06-01T03:42:04.000Z" + }, + "events": [ + { + "uuid": "acc1c7d0-120a-4283-8a9b-c0355c98a218", + "start": { + "$date": "2022-06-01T03:16:00.000Z" + }, + "end": { + "$date": "2022-06-01T03:42:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "5839e6ee-adba-4e19-a72f-00247d3e32f7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-01T04:37:11.000Z" + }, + "end": { + "$date": "2022-06-01T04:58:36.000Z" + }, + "events": [ + { + "uuid": "2de975dc-4478-4647-bf9d-23b1438c1ea5", + "start": { + "$date": "2022-06-01T04:37:11.000Z" + }, + "end": { + "$date": "2022-06-01T04:58:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b14cca6c-3834-425e-a563-7de017c2d6db", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-01T03:41:44.000Z" + }, + "end": { + "$date": "2022-06-01T08:18:45.000Z" + }, + "events": [ + { + "uuid": "4d15d12f-6964-4c3f-b960-d36e9b894930", + "start": { + "$date": "2022-06-01T03:41:44.000Z" + }, + "end": { + "$date": "2022-06-01T08:18:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", + "uuid": "986b9901-8ffa-4d82-bd19-0e65eec57afb", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-01T03:47:51.000Z" + }, + "end": { + "$date": "2022-06-01T03:49:45.000Z" + }, + "events": [ + { + "uuid": "2bf4d4d3-05bf-4fed-b813-fc6733c2a657", + "start": { + "$date": "2022-06-01T03:47:51.000Z" + }, + "end": { + "$date": "2022-06-01T03:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "63735280-e2ab-4381-982a-d381ab81ab3a", + "uuid": "2e23547f-5308-47e0-9739-fea4e8b6fd50", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-01T03:59:42.000Z" + }, + "end": { + "$date": "2022-06-01T04:13:51.000Z" + }, + "events": [ + { + "uuid": "637e921e-0adb-40cc-a42f-1f37874c1250", + "start": { + "$date": "2022-06-01T03:59:42.000Z" + }, + "end": { + "$date": "2022-06-01T04:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c4bd37d0-5b15-409d-a33f-950164eeaba1", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-01T04:20:34.000Z" + }, + "end": { + "$date": "2022-06-01T08:18:38.000Z" + }, + "events": [ + { + "uuid": "a4841f6b-0fa9-42f4-8b8e-a09527c962db", + "start": { + "$date": "2022-06-01T04:20:34.000Z" + }, + "end": { + "$date": "2022-06-01T08:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "2d4d58bd-cfb7-4008-ab22-d8ca21dade4f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-01T04:59:28.000Z" + }, + "end": { + "$date": "2022-06-01T05:40:09.000Z" + }, + "events": [ + { + "uuid": "04164ddb-41a1-4002-a3c7-75361d45eb19", + "start": { + "$date": "2022-06-01T04:59:28.000Z" + }, + "end": { + "$date": "2022-06-01T05:40:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "305918ac-ff53-40ac-802b-924d22f03d7f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-01T14:13:54.000Z" + }, + "end": { + "$date": "2022-06-01T14:33:59.000Z" + }, + "events": [ + { + "uuid": "cb6375d2-964e-40de-8792-c4476eabe610", + "start": { + "$date": "2022-06-01T14:13:54.000Z" + }, + "end": { + "$date": "2022-06-01T14:33:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "cc36a35e-c3fc-476f-810c-d72fe804eaeb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-01T14:59:35.000Z" + }, + "end": { + "$date": "2022-06-01T15:30:55.000Z" + }, + "events": [ + { + "uuid": "421ca6dc-b3c3-4b83-ba1b-e3ec2c1cdfa3", + "start": { + "$date": "2022-06-01T14:59:35.000Z" + }, + "end": { + "$date": "2022-06-01T15:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c50197d2-fdd7-49c8-a0b9-6c526ce151e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-01T15:54:38.000Z" + }, + "end": { + "$date": "2022-06-01T17:08:56.000Z" + }, + "events": [ + { + "uuid": "25c912c7-4bbc-41ee-be51-1b6f94907174", + "start": { + "$date": "2022-06-01T15:54:38.000Z" + }, + "end": { + "$date": "2022-06-01T17:08:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "86b91f72-afbe-40a3-814a-526a54f2c0d7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-01T16:19:36.000Z" + }, + "end": { + "$date": "2022-06-01T17:02:25.000Z" + }, + "events": [ + { + "uuid": "2b2757bc-680a-40b3-8aa1-fcaf5e2f62e4", + "start": { + "$date": "2022-06-01T16:19:36.000Z" + }, + "end": { + "$date": "2022-06-01T17:02:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b32a6a0a-7b89-4bea-b6b6-d593ad4a0f0a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-01T17:17:22.000Z" + }, + "end": { + "$date": "2022-06-01T17:39:07.000Z" + }, + "events": [ + { + "uuid": "17d17d56-d8d5-4e4e-ad65-b00340fa4422", + "start": { + "$date": "2022-06-01T17:17:22.000Z" + }, + "end": { + "$date": "2022-06-01T17:39:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "537093fc-a18e-437f-8da6-498b19090ab0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-01T17:36:22.000Z" + }, + "end": { + "$date": "2022-06-01T23:41:12.000Z" + }, + "events": [ + { + "uuid": "4b404839-f0cb-41f3-af04-21d4034f3ad3", + "start": { + "$date": "2022-06-01T17:36:22.000Z" + }, + "end": { + "$date": "2022-06-01T23:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e90f2f5b-d6a4-4700-850c-f1e7ee8cfe87", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-01T17:40:19.000Z" + }, + "end": { + "$date": "2022-06-01T17:43:42.000Z" + }, + "events": [ + { + "uuid": "9e54a321-b8bd-44a2-9592-c325782de562", + "start": { + "$date": "2022-06-01T17:40:19.000Z" + }, + "end": { + "$date": "2022-06-01T17:42:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "31d6b02a-5cc1-4d59-9e25-ceafdaf70478", + "start": { + "$date": "2022-06-01T17:42:19.000Z" + }, + "end": { + "$date": "2022-06-01T17:43:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "44a8d660-f335-4e64-9871-817f654c2d17", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-01T17:44:44.000Z" + }, + "end": { + "$date": "2022-06-01T17:49:40.000Z" + }, + "events": [ + { + "uuid": "227f0fa0-4bca-49d8-aa40-1477892bddc5", + "start": { + "$date": "2022-06-01T17:44:44.000Z" + }, + "end": { + "$date": "2022-06-01T17:49:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "cbb31412-6720-4cab-8031-e49002c1ab79", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-01T19:50:02.000Z" + }, + "end": { + "$date": "2022-06-01T19:56:57.000Z" + }, + "events": [ + { + "uuid": "d6a4083b-ba1e-4532-b86e-8e4fa52c614e", + "start": { + "$date": "2022-06-01T19:50:02.000Z" + }, + "end": { + "$date": "2022-06-01T19:56:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f41eae52-4309-4bcc-afa6-903f7b7c12c9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-01T20:46:25.000Z" + }, + "end": { + "$date": "2022-06-01T20:48:26.000Z" + }, + "events": [ + { + "uuid": "cc68219d-0bd4-4726-b13b-952dfd0f6d61", + "start": { + "$date": "2022-06-01T20:46:25.000Z" + }, + "end": { + "$date": "2022-06-01T20:48:26.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "4d2433b3-b485-412e-8127-08ee4b7a148a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-01T21:07:01.000Z" + }, + "end": { + "$date": "2022-06-01T21:26:10.000Z" + }, + "events": [ + { + "uuid": "c9b8dc16-79e5-4e56-bfbb-b75f7c0c9cb9", + "start": { + "$date": "2022-06-01T21:07:01.000Z" + }, + "end": { + "$date": "2022-06-01T21:26:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3a2bfa22-ba6f-4e7b-a2c5-597d850da81b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-01T21:30:47.000Z" + }, + "end": { + "$date": "2022-06-01T22:19:13.000Z" + }, + "events": [ + { + "uuid": "f86ff9ae-90c4-4fc1-bb46-99ccf24afe93", + "start": { + "$date": "2022-06-01T21:30:47.000Z" + }, + "end": { + "$date": "2022-06-01T22:19:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ed4a9130-64da-4979-beb4-df1ac0451e9a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-01T22:22:53.000Z" + }, + "end": { + "$date": "2022-06-02T00:29:27.000Z" + }, + "events": [ + { + "uuid": "e1b17131-24cb-4acf-af59-1a4e46701dbc", + "start": { + "$date": "2022-06-01T22:22:53.000Z" + }, + "end": { + "$date": "2022-06-02T00:29:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "0aca3aed-217a-4cb2-9909-ea6fd0a5e6c4", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-01T23:57:26.000Z" + }, + "end": { + "$date": "2022-06-02T00:14:14.000Z" + }, + "events": [ + { + "uuid": "ba0d928b-f058-4258-ae35-ccb245581538", + "start": { + "$date": "2022-06-01T23:57:26.000Z" + }, + "end": { + "$date": "2022-06-02T00:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "77e99c4b-7a10-471e-85c3-9407c4a81fe1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-02T00:00:30.000Z" + }, + "end": { + "$date": "2022-06-02T03:00:09.000Z" + }, + "events": [ + { + "uuid": "df795487-7009-45c5-a339-dfb54306dc4e", + "start": { + "$date": "2022-06-02T00:00:30.000Z" + }, + "end": { + "$date": "2022-06-02T01:51:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e92d4ecb-fef4-409f-896c-3663894a1213", + "start": { + "$date": "2022-06-02T01:51:30.000Z" + }, + "end": { + "$date": "2022-06-02T02:03:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bec70f65-d279-46aa-baf6-f2a0e4c2855e", + "start": { + "$date": "2022-06-02T02:03:30.000Z" + }, + "end": { + "$date": "2022-06-02T03:00:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "98e850bc-0a48-4751-9bbd-2c73adc8d469", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-02T00:40:23.000Z" + }, + "end": { + "$date": "2022-06-02T02:54:41.000Z" + }, + "events": [ + { + "uuid": "881ab008-1367-46af-9790-aef92c90dbe4", + "start": { + "$date": "2022-06-02T00:40:23.000Z" + }, + "end": { + "$date": "2022-06-02T02:54:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e5f2ee14-e193-40c5-8e2a-0c5d49fc5ef2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-02T02:44:53.000Z" + }, + "end": { + "$date": "2022-06-02T06:30:21.000Z" + }, + "events": [ + { + "uuid": "6b729941-3bd1-4371-9c93-0beed00405c4", + "start": { + "$date": "2022-06-02T02:44:53.000Z" + }, + "end": { + "$date": "2022-06-02T06:30:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fb8acf-f46f-4df7-9330-aa48ec5da7d6", + "uuid": "e3abe7df-0c7a-4e1f-9c1d-a2a6648b2147", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-02T03:19:04.000Z" + }, + "end": { + "$date": "2022-06-02T03:34:13.000Z" + }, + "events": [ + { + "uuid": "92c81e58-e2c3-4c77-9819-b519bfa5af9a", + "start": { + "$date": "2022-06-02T03:19:04.000Z" + }, + "end": { + "$date": "2022-06-02T03:34:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "a978123a-84c4-48ed-bd2b-146872ecda1f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-02T03:44:37.000Z" + }, + "end": { + "$date": "2022-06-02T06:08:42.000Z" + }, + "events": [ + { + "uuid": "7f38a329-de6a-4c4d-a2c6-9c19919ecda6", + "start": { + "$date": "2022-06-02T03:44:37.000Z" + }, + "end": { + "$date": "2022-06-02T06:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "5a2f6670-14ac-4ffa-8028-053b8935d6f3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-02T04:27:47.000Z" + }, + "end": { + "$date": "2022-06-02T04:29:31.000Z" + }, + "events": [ + { + "uuid": "acb5bf19-ac1d-4b4e-897c-97c0b01597d3", + "start": { + "$date": "2022-06-02T04:27:47.000Z" + }, + "end": { + "$date": "2022-06-02T04:29:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "de93fba9-256c-4183-863d-38b81619d862", + "uuid": "31cfcf34-ea05-4e5b-b623-d05bbe216228", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-02T04:29:38.000Z" + }, + "end": { + "$date": "2022-06-02T04:51:12.000Z" + }, + "events": [ + { + "uuid": "fb497af3-5bf4-4ea7-96ec-1b300389408d", + "start": { + "$date": "2022-06-02T04:29:38.000Z" + }, + "end": { + "$date": "2022-06-02T04:51:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a9fb8acf-f46f-4df7-9330-aa48ec5da7d6", + "uuid": "087c284d-66b5-4943-a1f1-cac85ebfb4d8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-02T04:52:48.000Z" + }, + "end": { + "$date": "2022-06-02T05:11:54.000Z" + }, + "events": [ + { + "uuid": "d5f6be61-76ea-4458-906e-38b9a76eee95", + "start": { + "$date": "2022-06-02T04:52:48.000Z" + }, + "end": { + "$date": "2022-06-02T05:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aaaedf94-994c-4767-ba72-cbdfc9588229", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T05:56:05.000Z" + }, + "end": { + "$date": "2022-06-02T06:11:19.000Z" + }, + "events": [ + { + "uuid": "f1f81aa7-d40b-424d-bde9-0244e9eb21a8", + "start": { + "$date": "2022-06-02T05:56:05.000Z" + }, + "end": { + "$date": "2022-06-02T06:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5aefd776-d401-4ae4-bdc9-57757be21b27", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T06:15:57.000Z" + }, + "end": { + "$date": "2022-06-02T06:32:46.000Z" + }, + "events": [ + { + "uuid": "248940a1-ab94-4a26-87fa-07fc80694ebd", + "start": { + "$date": "2022-06-02T06:15:57.000Z" + }, + "end": { + "$date": "2022-06-02T06:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0bb58e5b-0b4f-4e1c-8802-03cca32fa887", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-02T06:25:07.000Z" + }, + "end": { + "$date": "2022-06-02T07:02:58.000Z" + }, + "events": [ + { + "uuid": "92a6c41f-26a7-413a-b848-3943a14bff3d", + "start": { + "$date": "2022-06-02T06:25:07.000Z" + }, + "end": { + "$date": "2022-06-02T07:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "1ecd5b06-2f54-4783-b9fd-0ba19c7afcb5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-02T06:26:03.000Z" + }, + "end": { + "$date": "2022-06-02T07:02:29.000Z" + }, + "events": [ + { + "uuid": "5bf34abb-7e55-4200-8514-38f554233653", + "start": { + "$date": "2022-06-02T06:26:03.000Z" + }, + "end": { + "$date": "2022-06-02T07:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f13c043b-f507-4c2a-bb8c-8f8eaf059f1f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T06:35:12.000Z" + }, + "end": { + "$date": "2022-06-02T06:47:41.000Z" + }, + "events": [ + { + "uuid": "1aa14224-4338-4ca3-9ac7-05a2707a2250", + "start": { + "$date": "2022-06-02T06:35:12.000Z" + }, + "end": { + "$date": "2022-06-02T06:47:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ddb4d6d-974b-4713-8c95-1b4d782a567e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T06:48:48.000Z" + }, + "end": { + "$date": "2022-06-02T07:03:12.000Z" + }, + "events": [ + { + "uuid": "21b7a17b-9e0d-4d52-ae71-eea8d00758d9", + "start": { + "$date": "2022-06-02T06:48:48.000Z" + }, + "end": { + "$date": "2022-06-02T07:03:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1fa66b58-50ab-4f6f-8640-621d196b3b18", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T07:04:19.000Z" + }, + "end": { + "$date": "2022-06-02T07:19:28.000Z" + }, + "events": [ + { + "uuid": "4342b21b-6bed-4c41-a26e-b6fcc0c18981", + "start": { + "$date": "2022-06-02T07:04:19.000Z" + }, + "end": { + "$date": "2022-06-02T07:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be3806e9-9d4a-4df9-a229-a37cbe9478d8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T07:22:45.000Z" + }, + "end": { + "$date": "2022-06-02T08:00:56.000Z" + }, + "events": [ + { + "uuid": "684693e8-e6b2-4f84-be7c-92ef923b5be2", + "start": { + "$date": "2022-06-02T07:22:45.000Z" + }, + "end": { + "$date": "2022-06-02T08:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bdc626ef-892e-45e9-9d4e-5d11fb746cf3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T08:04:42.000Z" + }, + "end": { + "$date": "2022-06-02T08:34:28.000Z" + }, + "events": [ + { + "uuid": "cbd2ef63-c275-46c9-ae88-6f0d724da734", + "start": { + "$date": "2022-06-02T08:04:42.000Z" + }, + "end": { + "$date": "2022-06-02T08:34:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ab9b8cbe-c9d6-40ee-a081-937a70b715b8", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T08:35:19.000Z" + }, + "end": { + "$date": "2022-06-02T09:06:30.000Z" + }, + "events": [ + { + "uuid": "bada38ae-7a0b-472f-85f6-d426131cac00", + "start": { + "$date": "2022-06-02T08:35:19.000Z" + }, + "end": { + "$date": "2022-06-02T09:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a18b3d8d-6d9b-48f8-91da-5b9f1ff0679f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T14:11:26.000Z" + }, + "end": { + "$date": "2022-06-02T14:29:05.000Z" + }, + "events": [ + { + "uuid": "948bb38c-0ec9-47e5-92c7-0183c1da8c22", + "start": { + "$date": "2022-06-02T14:11:26.000Z" + }, + "end": { + "$date": "2022-06-02T14:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b53d0936-188e-4d2d-ad98-bbe81c302dea", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T14:29:42.000Z" + }, + "end": { + "$date": "2022-06-02T14:50:30.000Z" + }, + "events": [ + { + "uuid": "8b3d9430-642d-4d51-af94-d2831305d902", + "start": { + "$date": "2022-06-02T14:29:42.000Z" + }, + "end": { + "$date": "2022-06-02T14:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8dcf87b8-a5c3-4013-9fd0-185c6b5d1e08", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-02T14:47:51.000Z" + }, + "end": { + "$date": "2022-06-02T17:07:14.000Z" + }, + "events": [ + { + "uuid": "167072a4-270e-49f4-ba25-5ab0f5cf8d2b", + "start": { + "$date": "2022-06-02T14:47:51.000Z" + }, + "end": { + "$date": "2022-06-02T16:25:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ede8398-c9d9-4e3e-b439-e138982ddb13", + "start": { + "$date": "2022-06-02T16:25:51.000Z" + }, + "end": { + "$date": "2022-06-02T16:30:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f23fa8b2-9e76-46a9-b6de-2a3e2373a254", + "start": { + "$date": "2022-06-02T16:30:51.000Z" + }, + "end": { + "$date": "2022-06-02T16:40:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "48249c45-e573-4ccb-8a4a-2c07494c4fb6", + "start": { + "$date": "2022-06-02T16:40:51.000Z" + }, + "end": { + "$date": "2022-06-02T17:05:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cc9a4eaf-350f-4c8c-8962-049a1497f35d", + "start": { + "$date": "2022-06-02T17:05:51.000Z" + }, + "end": { + "$date": "2022-06-02T17:07:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a672b6ff-b4b6-4bf0-b90c-15680c609716", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-02T14:52:43.000Z" + }, + "end": { + "$date": "2022-06-02T17:29:47.000Z" + }, + "events": [ + { + "uuid": "92322a97-ab7e-4504-a038-7fb3751ccce8", + "start": { + "$date": "2022-06-02T14:52:43.000Z" + }, + "end": { + "$date": "2022-06-02T17:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "0feafbb0-5594-43fa-88fa-41d346af367f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-02T17:07:13.000Z" + }, + "end": { + "$date": "2022-06-02T17:43:54.000Z" + }, + "events": [ + { + "uuid": "8605ce6c-9d6d-4617-afd5-748153de19eb", + "start": { + "$date": "2022-06-02T17:07:13.000Z" + }, + "end": { + "$date": "2022-06-02T17:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c6c837fc-7bf1-4b6e-b4b8-0708e63efb0b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-02T17:09:43.000Z" + }, + "end": { + "$date": "2022-06-02T17:52:55.000Z" + }, + "events": [ + { + "uuid": "383df40d-27a7-47a3-a817-1b639f12f703", + "start": { + "$date": "2022-06-02T17:09:43.000Z" + }, + "end": { + "$date": "2022-06-02T17:52:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", + "uuid": "60cf9862-38bd-47b5-ba54-213bb4140e67", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-02T19:33:00.000Z" + }, + "end": { + "$date": "2022-06-02T19:38:01.000Z" + }, + "events": [ + { + "uuid": "abbe202a-b15e-4327-8c83-f77e180cee46", + "start": { + "$date": "2022-06-02T19:33:00.000Z" + }, + "end": { + "$date": "2022-06-02T19:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "47abb2ea-66d8-4570-b952-98bcc0080485", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-08T12:56:38.000Z" + }, + "end": { + "$date": "2022-06-08T13:44:10.000Z" + }, + "events": [ + { + "uuid": "0562996a-dde1-49e9-a105-1c22ecdba283", + "start": { + "$date": "2022-06-08T12:56:38.000Z" + }, + "end": { + "$date": "2022-06-08T13:44:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e25ac528-502f-4ab1-ac00-cdcbdebf705d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-08T18:46:20.000Z" + }, + "end": { + "$date": "2022-06-08T18:47:31.000Z" + }, + "events": [ + { + "uuid": "f95d5283-2439-464b-8207-a4096c379d1b", + "start": { + "$date": "2022-06-08T18:46:20.000Z" + }, + "end": { + "$date": "2022-06-08T18:47:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "252e99c0-f62f-4000-a566-0876e1163771", + "uuid": "c48ca010-3064-4f49-b164-181e7f558f12", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-08T22:59:53.000Z" + }, + "end": { + "$date": "2022-06-08T23:06:14.000Z" + }, + "events": [ + { + "uuid": "875c6cb4-577d-4112-8c73-44e49d24d545", + "start": { + "$date": "2022-06-08T22:59:53.000Z" + }, + "end": { + "$date": "2022-06-08T23:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5086dcdf-73e1-482e-adb9-a54b9cf7dbce", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-08T23:24:05.000Z" + }, + "end": { + "$date": "2022-06-09T00:06:16.000Z" + }, + "events": [ + { + "uuid": "86ecf79c-108e-4999-8606-ce0997ee21c7", + "start": { + "$date": "2022-06-08T23:24:05.000Z" + }, + "end": { + "$date": "2022-06-09T00:06:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "9c344169-3a41-4bf7-9ceb-4b0ff4453004", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-08T23:55:10.000Z" + }, + "end": { + "$date": "2022-06-09T01:24:49.000Z" + }, + "events": [ + { + "uuid": "c0c7324a-6a2f-49a9-bc68-8a20db7bd561", + "start": { + "$date": "2022-06-08T23:55:10.000Z" + }, + "end": { + "$date": "2022-06-09T01:24:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "f1780c8a-06b5-41ef-a40b-5ee1350f3329", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-09T01:34:15.000Z" + }, + "end": { + "$date": "2022-06-09T03:19:37.000Z" + }, + "events": [ + { + "uuid": "5a584bd0-d6e9-4b44-96bb-e6cc2472315d", + "start": { + "$date": "2022-06-09T01:34:15.000Z" + }, + "end": { + "$date": "2022-06-09T03:11:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "da35e91f-10ca-4d8a-b5cb-009dc18b315a", + "start": { + "$date": "2022-06-09T03:11:15.000Z" + }, + "end": { + "$date": "2022-06-09T03:16:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "79024166-7780-4bb3-b0ac-7776ca36b24e", + "start": { + "$date": "2022-06-09T03:16:15.000Z" + }, + "end": { + "$date": "2022-06-09T03:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e2e1ab8a-d352-444b-b790-c33afd93f77a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-09T01:37:43.000Z" + }, + "end": { + "$date": "2022-06-09T01:54:04.000Z" + }, + "events": [ + { + "uuid": "7622814f-7886-48cc-8805-9d8c117f1a63", + "start": { + "$date": "2022-06-09T01:37:43.000Z" + }, + "end": { + "$date": "2022-06-09T01:54:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "e2f35767-6395-46c7-9666-221d09d35bc5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-09T02:25:53.000Z" + }, + "end": { + "$date": "2022-06-09T06:19:45.000Z" + }, + "events": [ + { + "uuid": "80f28a37-d4fd-442d-9e76-d37b425bcb96", + "start": { + "$date": "2022-06-09T02:25:53.000Z" + }, + "end": { + "$date": "2022-06-09T06:19:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0ed33a58-5d7d-4f65-a3a4-4c8915495c10", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-09T03:10:00.000Z" + }, + "end": { + "$date": "2022-06-09T04:48:47.000Z" + }, + "events": [ + { + "uuid": "b0c80c5f-bf07-48e6-9c66-4ac600784ca3", + "start": { + "$date": "2022-06-09T03:10:00.000Z" + }, + "end": { + "$date": "2022-06-09T04:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4394e4c4-345c-4784-9e14-bf6394fe411a", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-09T03:21:24.000Z" + }, + "end": { + "$date": "2022-06-09T04:44:34.000Z" + }, + "events": [ + { + "uuid": "af7a1673-4008-4012-a14d-10969f6fbc8d", + "start": { + "$date": "2022-06-09T03:21:24.000Z" + }, + "end": { + "$date": "2022-06-09T04:44:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1e411a46-d1a1-4f64-a979-b9172c6cecb3", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-09T03:41:57.000Z" + }, + "end": { + "$date": "2022-06-09T06:21:57.000Z" + }, + "events": [ + { + "uuid": "7b7a4e6e-3e72-404b-aed4-2ef65d2933b9", + "start": { + "$date": "2022-06-09T03:41:57.000Z" + }, + "end": { + "$date": "2022-06-09T06:21:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eef247cf-92c5-49fe-b0b3-d2b526528369", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-09T03:44:36.000Z" + }, + "end": { + "$date": "2022-06-09T05:37:29.000Z" + }, + "events": [ + { + "uuid": "baa87ab6-c883-4074-ad65-ff80070aaf7b", + "start": { + "$date": "2022-06-09T03:44:36.000Z" + }, + "end": { + "$date": "2022-06-09T05:37:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4e460a11-d21d-4a0d-a46c-62db72940fdb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-09T03:47:00.000Z" + }, + "end": { + "$date": "2022-06-09T06:22:07.000Z" + }, + "events": [ + { + "uuid": "c0f1fa02-6004-4ec6-af7e-93c362d1dfdc", + "start": { + "$date": "2022-06-09T03:47:00.000Z" + }, + "end": { + "$date": "2022-06-09T06:22:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7aa8fdb6-6a9c-4004-8b31-8262c2ba8e88", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-09T03:50:41.000Z" + }, + "end": { + "$date": "2022-06-09T06:33:50.000Z" + }, + "events": [ + { + "uuid": "1a884704-737c-4c52-bc30-d3c72985d128", + "start": { + "$date": "2022-06-09T03:50:41.000Z" + }, + "end": { + "$date": "2022-06-09T06:33:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2556b491-3b9c-4fde-ae4b-cbcb2bcc7a15", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-09T04:25:04.000Z" + }, + "end": { + "$date": "2022-06-09T04:26:29.000Z" + }, + "events": [ + { + "uuid": "30e10441-4584-4802-948f-8eeb2970f2f6", + "start": { + "$date": "2022-06-09T04:25:04.000Z" + }, + "end": { + "$date": "2022-06-09T04:26:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "db54605d-b0b6-491d-bfee-b8055f894c8c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-09T05:02:34.000Z" + }, + "end": { + "$date": "2022-06-09T05:37:32.000Z" + }, + "events": [ + { + "uuid": "d91a2a34-5bb4-43a3-9006-5227d9c86b40", + "start": { + "$date": "2022-06-09T05:02:34.000Z" + }, + "end": { + "$date": "2022-06-09T05:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "ad725250-e398-40dd-a710-07c483497355", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-09T04:37:35.000Z" + }, + "end": { + "$date": "2022-06-09T05:11:04.000Z" + }, + "events": [ + { + "uuid": "2f8d6cd3-90ee-4cc0-82b9-c81f90194805", + "start": { + "$date": "2022-06-09T04:37:35.000Z" + }, + "end": { + "$date": "2022-06-09T05:11:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1d29d104-47e8-4115-a379-c212af5e68cf", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-09T15:34:35.000Z" + }, + "end": { + "$date": "2022-06-09T15:53:43.000Z" + }, + "events": [ + { + "uuid": "f7b9db70-a034-4aef-8cde-078ced9281e0", + "start": { + "$date": "2022-06-09T15:34:35.000Z" + }, + "end": { + "$date": "2022-06-09T15:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d3fab6d0-f62a-486e-aca2-2706623170f8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-09T15:54:21.000Z" + }, + "end": { + "$date": "2022-06-09T16:13:57.000Z" + }, + "events": [ + { + "uuid": "dd6788e2-d6ee-4af9-a1f2-6b5a26339ab3", + "start": { + "$date": "2022-06-09T15:54:21.000Z" + }, + "end": { + "$date": "2022-06-09T16:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "3c905d19-8693-48ca-9662-0e5a4d4b696c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-09T16:58:41.000Z" + }, + "end": { + "$date": "2022-06-09T17:36:19.000Z" + }, + "events": [ + { + "uuid": "60a2e681-f188-48d2-b0a8-fb4e6afd97be", + "start": { + "$date": "2022-06-09T16:58:41.000Z" + }, + "end": { + "$date": "2022-06-09T17:36:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c4d243f8-7f88-4253-9eda-95e4438a5c17", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T17:09:38.000Z" + }, + "end": { + "$date": "2022-06-09T17:10:55.000Z" + }, + "events": [ + { + "uuid": "d8773004-a30a-4caa-91b4-de920aef33dc", + "start": { + "$date": "2022-06-09T17:09:38.000Z" + }, + "end": { + "$date": "2022-06-09T17:10:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "638a98d4-8f22-4be2-a4f7-322f7c2c806c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T17:11:38.000Z" + }, + "end": { + "$date": "2022-06-09T17:42:07.000Z" + }, + "events": [ + { + "uuid": "a25be5a4-a949-4c86-8e76-86d8f3f64c6e", + "start": { + "$date": "2022-06-09T17:11:38.000Z" + }, + "end": { + "$date": "2022-06-09T17:42:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dcdba418-b9cc-4968-93d3-49bb5bb01673", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-09T19:51:20.000Z" + }, + "end": { + "$date": "2022-06-09T20:09:50.000Z" + }, + "events": [ + { + "uuid": "c2aeea3a-1050-4484-92c1-bfaab1f11d8c", + "start": { + "$date": "2022-06-09T19:51:20.000Z" + }, + "end": { + "$date": "2022-06-09T20:09:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5b15d6e8-edfe-49bf-a121-57be8e6d8ee5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T21:29:42.000Z" + }, + "end": { + "$date": "2022-06-09T21:56:31.000Z" + }, + "events": [ + { + "uuid": "47eb56dd-565f-4131-b726-cb916761327d", + "start": { + "$date": "2022-06-09T21:29:42.000Z" + }, + "end": { + "$date": "2022-06-09T21:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ae841509-423c-4d74-a15e-c28e721ea5a6", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T21:57:04.000Z" + }, + "end": { + "$date": "2022-06-09T22:00:51.000Z" + }, + "events": [ + { + "uuid": "4a5ce439-97f8-45c1-9783-83b9e1d8c67c", + "start": { + "$date": "2022-06-09T21:57:04.000Z" + }, + "end": { + "$date": "2022-06-09T22:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7fd5ad07-e854-402a-8d51-d7bfe87f21f7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T22:15:21.000Z" + }, + "end": { + "$date": "2022-06-09T22:50:59.000Z" + }, + "events": [ + { + "uuid": "47202cc8-8382-4dcd-b8e6-a8dde20b70b2", + "start": { + "$date": "2022-06-09T22:15:21.000Z" + }, + "end": { + "$date": "2022-06-09T22:50:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "9dcb966f-0baf-47f3-bffb-942de30959a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-09T22:48:52.000Z" + }, + "end": { + "$date": "2022-06-09T23:05:29.000Z" + }, + "events": [ + { + "uuid": "d10492cd-fe0f-4ba0-bcae-73453c5cfd8c", + "start": { + "$date": "2022-06-09T22:48:52.000Z" + }, + "end": { + "$date": "2022-06-09T23:05:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87b0d254-801a-4dc4-a37a-d9d67382d163", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T22:54:13.000Z" + }, + "end": { + "$date": "2022-06-09T23:23:55.000Z" + }, + "events": [ + { + "uuid": "45742208-4373-448d-894e-c27c70977104", + "start": { + "$date": "2022-06-09T22:54:13.000Z" + }, + "end": { + "$date": "2022-06-09T23:23:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "73d28c86-08ad-494c-9179-65ff5e0aa588", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-09T23:09:58.000Z" + }, + "end": { + "$date": "2022-06-09T23:52:32.000Z" + }, + "events": [ + { + "uuid": "8d92a96a-f48e-46ad-aba9-61344399f997", + "start": { + "$date": "2022-06-09T23:09:58.000Z" + }, + "end": { + "$date": "2022-06-09T23:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f23c73d2-ea55-4b5c-8e0d-81c78938c506", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-09T23:28:39.000Z" + }, + "end": { + "$date": "2022-06-10T00:02:12.000Z" + }, + "events": [ + { + "uuid": "1ac36605-bb7c-43a5-bde1-8fb5cdb1db21", + "start": { + "$date": "2022-06-09T23:28:39.000Z" + }, + "end": { + "$date": "2022-06-10T00:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87ca50d3-267e-497d-8c0f-b7e55730f9f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-09T23:27:51.000Z" + }, + "end": { + "$date": "2022-06-10T00:08:42.000Z" + }, + "events": [ + { + "uuid": "bc89a1b9-f944-4742-b03c-f9659150ddcd", + "start": { + "$date": "2022-06-09T23:27:51.000Z" + }, + "end": { + "$date": "2022-06-10T00:08:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c07dcae3-1781-45a9-a977-45088504483f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T00:12:15.000Z" + }, + "end": { + "$date": "2022-06-10T00:46:29.000Z" + }, + "events": [ + { + "uuid": "2ce97732-0fea-4be6-99c2-bb20262a4de3", + "start": { + "$date": "2022-06-10T00:12:15.000Z" + }, + "end": { + "$date": "2022-06-10T00:46:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e212345-bbb3-4378-8f37-e171115e54f2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-10T00:10:10.000Z" + }, + "end": { + "$date": "2022-06-10T00:44:13.000Z" + }, + "events": [ + { + "uuid": "d69ea294-2e37-4e5f-86d4-77bd16460566", + "start": { + "$date": "2022-06-10T00:10:10.000Z" + }, + "end": { + "$date": "2022-06-10T00:44:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d954803d-ad49-48fe-b375-6e937068af8e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T00:12:16.000Z" + }, + "end": { + "$date": "2022-06-10T00:46:20.000Z" + }, + "events": [ + { + "uuid": "ba10fab3-6330-4aae-8535-add994077fa5", + "start": { + "$date": "2022-06-10T00:12:16.000Z" + }, + "end": { + "$date": "2022-06-10T00:46:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1e27aa2b-9229-4161-b453-dbcc3256d700", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T00:47:26.000Z" + }, + "end": { + "$date": "2022-06-10T01:12:22.000Z" + }, + "events": [ + { + "uuid": "ebb77974-d0df-475a-90a3-6200412fc061", + "start": { + "$date": "2022-06-10T00:47:26.000Z" + }, + "end": { + "$date": "2022-06-10T01:12:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f14c8fb-29fa-46b7-bb40-e2c4ceaa0a67", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T00:47:23.000Z" + }, + "end": { + "$date": "2022-06-10T01:12:45.000Z" + }, + "events": [ + { + "uuid": "6067e89c-8d92-4530-bad9-183cb5ad72a6", + "start": { + "$date": "2022-06-10T00:47:23.000Z" + }, + "end": { + "$date": "2022-06-10T01:12:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "1c9dff56-baa7-4ae2-83a9-b6a5f6a4fb99", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-10T01:44:15.000Z" + }, + "end": { + "$date": "2022-06-10T01:46:03.000Z" + }, + "events": [ + { + "uuid": "179f2b61-1fa2-4a55-b978-f4fecab52655", + "start": { + "$date": "2022-06-10T01:44:15.000Z" + }, + "end": { + "$date": "2022-06-10T01:46:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "2165625a-114e-4e67-b4d0-b2ac75f72868", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T01:46:58.000Z" + }, + "end": { + "$date": "2022-06-10T02:54:47.000Z" + }, + "events": [ + { + "uuid": "6bb5ba3d-1f7a-4b79-9dab-3d4f947dfa64", + "start": { + "$date": "2022-06-10T01:46:58.000Z" + }, + "end": { + "$date": "2022-06-10T02:54:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "fd86f493-945b-4cab-9436-14897c65ea1f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-10T01:46:55.000Z" + }, + "end": { + "$date": "2022-06-10T03:01:51.000Z" + }, + "events": [ + { + "uuid": "827abb46-627d-406b-96cb-77889e645c08", + "start": { + "$date": "2022-06-10T01:46:55.000Z" + }, + "end": { + "$date": "2022-06-10T03:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "5380fd48-c8c0-4716-9e80-c1f87ac9b224", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-10T02:03:50.000Z" + }, + "end": { + "$date": "2022-06-10T09:13:02.000Z" + }, + "events": [ + { + "uuid": "4372cfba-aac0-4808-8bc5-6f7abb056997", + "start": { + "$date": "2022-06-10T02:03:50.000Z" + }, + "end": { + "$date": "2022-06-10T02:43:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "63038905-d871-46b1-b793-d2133d89a324", + "start": { + "$date": "2022-06-10T02:43:50.000Z" + }, + "end": { + "$date": "2022-06-10T02:46:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8e48779f-511e-4432-9b9a-28ae6d945d54", + "start": { + "$date": "2022-06-10T02:46:50.000Z" + }, + "end": { + "$date": "2022-06-10T07:20:50.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25b80de1-301a-4a7f-8a74-86809f09efe4", + "start": { + "$date": "2022-06-10T07:20:50.000Z" + }, + "end": { + "$date": "2022-06-10T07:34:50.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4f038df3-4561-405a-b1c6-b403cd60e18e", + "start": { + "$date": "2022-06-10T07:34:50.000Z" + }, + "end": { + "$date": "2022-06-10T09:13:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7ee8c082-eafa-4342-b94c-2ae1ade7edcb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-10T03:33:08.000Z" + }, + "end": { + "$date": "2022-06-10T03:45:48.000Z" + }, + "events": [ + { + "uuid": "d204f0fd-ffac-4c25-8521-b3566965407e", + "start": { + "$date": "2022-06-10T03:33:08.000Z" + }, + "end": { + "$date": "2022-06-10T03:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "712a8356-cd36-4009-b610-606af6efc468", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T03:26:12.000Z" + }, + "end": { + "$date": "2022-06-10T04:15:36.000Z" + }, + "events": [ + { + "uuid": "53cbdaff-05d7-4aa4-ae64-90147fa60175", + "start": { + "$date": "2022-06-10T03:26:12.000Z" + }, + "end": { + "$date": "2022-06-10T04:15:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bade846d-7d53-456e-8c85-018091ec09b8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T03:49:35.000Z" + }, + "end": { + "$date": "2022-06-10T04:34:09.000Z" + }, + "events": [ + { + "uuid": "8414e1a7-925a-4145-a26e-e8a11fbf7602", + "start": { + "$date": "2022-06-10T03:49:35.000Z" + }, + "end": { + "$date": "2022-06-10T04:34:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "457be214-103d-400c-a569-67755371eeb0", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-10T03:58:22.000Z" + }, + "end": { + "$date": "2022-06-10T05:55:06.000Z" + }, + "events": [ + { + "uuid": "d773c53f-a951-446e-ab7d-466ee6199b18", + "start": { + "$date": "2022-06-10T03:58:22.000Z" + }, + "end": { + "$date": "2022-06-10T05:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0813b5a9-c090-40e7-b2ba-ad3afb0b9ab8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T04:17:03.000Z" + }, + "end": { + "$date": "2022-06-10T04:25:48.000Z" + }, + "events": [ + { + "uuid": "39b0700c-83e0-46ae-9f2b-afec5cca71b9", + "start": { + "$date": "2022-06-10T04:17:03.000Z" + }, + "end": { + "$date": "2022-06-10T04:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a73e7ba8-7262-4c9a-819c-fe4c4c4a0ce1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T04:35:51.000Z" + }, + "end": { + "$date": "2022-06-10T05:02:39.000Z" + }, + "events": [ + { + "uuid": "34c15617-d43b-4200-b876-aa47928bfeb4", + "start": { + "$date": "2022-06-10T04:35:51.000Z" + }, + "end": { + "$date": "2022-06-10T05:02:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "165c87f5-5155-443b-bbd8-55387ff6bdf9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T05:04:02.000Z" + }, + "end": { + "$date": "2022-06-10T05:31:09.000Z" + }, + "events": [ + { + "uuid": "3c881d5d-d494-4e97-8425-f1406884654c", + "start": { + "$date": "2022-06-10T05:04:02.000Z" + }, + "end": { + "$date": "2022-06-10T05:31:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "402507e6-fd45-4754-a333-2adfeb49f4f4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-10T12:30:16.000Z" + }, + "end": { + "$date": "2022-06-10T12:57:36.000Z" + }, + "events": [ + { + "uuid": "98d289f9-ec24-4936-bc54-fe97c5ad9147", + "start": { + "$date": "2022-06-10T12:30:16.000Z" + }, + "end": { + "$date": "2022-06-10T12:57:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac295c5a-aafd-47d7-a646-467558628f60", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-10T15:25:10.000Z" + }, + "end": { + "$date": "2022-06-10T15:45:07.000Z" + }, + "events": [ + { + "uuid": "96aba858-16b9-442c-b624-5b9b94fb11b0", + "start": { + "$date": "2022-06-10T15:25:10.000Z" + }, + "end": { + "$date": "2022-06-10T15:45:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "008f0f86-304d-48e2-872c-0cc10bffad52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T17:40:19.000Z" + }, + "end": { + "$date": "2022-06-10T18:06:30.000Z" + }, + "events": [ + { + "uuid": "fb05eb5a-38a3-4a24-94da-49c8207fdfd0", + "start": { + "$date": "2022-06-10T17:40:19.000Z" + }, + "end": { + "$date": "2022-06-10T18:06:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "36ede672-d275-47ed-ab47-8e1bd9026fac", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T19:57:48.000Z" + }, + "end": { + "$date": "2022-06-10T21:55:48.000Z" + }, + "events": [ + { + "uuid": "f72bac5c-eb67-44f8-bcbc-04714fe836a0", + "start": { + "$date": "2022-06-10T19:57:48.000Z" + }, + "end": { + "$date": "2022-06-10T21:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "00b3b976-9642-4751-a7a4-edee2015bca0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-10T20:33:44.000Z" + }, + "end": { + "$date": "2022-06-10T21:10:24.000Z" + }, + "events": [ + { + "uuid": "33497881-29cf-4bbb-ba32-802d96fd547c", + "start": { + "$date": "2022-06-10T20:33:44.000Z" + }, + "end": { + "$date": "2022-06-10T21:10:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a96d712-b1c5-4f7b-a50f-e6687990f9e1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-10T21:12:22.000Z" + }, + "end": { + "$date": "2022-06-10T21:34:29.000Z" + }, + "events": [ + { + "uuid": "e59fb589-3957-49c7-99bf-ab117afdd2ba", + "start": { + "$date": "2022-06-10T21:12:22.000Z" + }, + "end": { + "$date": "2022-06-10T21:34:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c328306d-f9f3-4076-9612-0179f2a7258b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-10T21:35:33.000Z" + }, + "end": { + "$date": "2022-06-10T22:01:20.000Z" + }, + "events": [ + { + "uuid": "633e0279-a6bc-4cdf-9b35-11ef479d4ef2", + "start": { + "$date": "2022-06-10T21:35:33.000Z" + }, + "end": { + "$date": "2022-06-10T22:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bb40ff5b-5eb4-43bd-a4f1-1d8e6463f027", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T21:35:34.000Z" + }, + "end": { + "$date": "2022-06-10T22:01:27.000Z" + }, + "events": [ + { + "uuid": "46f751c0-dac4-4510-90dc-7b736104139a", + "start": { + "$date": "2022-06-10T21:35:34.000Z" + }, + "end": { + "$date": "2022-06-10T22:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9851ca7-a8aa-4d4e-800e-11fcdecff315", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T22:02:21.000Z" + }, + "end": { + "$date": "2022-06-10T22:30:19.000Z" + }, + "events": [ + { + "uuid": "ffd81551-c060-42a9-9414-1a3129a62c62", + "start": { + "$date": "2022-06-10T22:02:21.000Z" + }, + "end": { + "$date": "2022-06-10T22:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d46c017b-798a-4c53-a1ff-cabde649765a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T22:01:42.000Z" + }, + "end": { + "$date": "2022-06-10T22:42:10.000Z" + }, + "events": [ + { + "uuid": "126b041a-7a2f-44c1-aae7-a81e34faa470", + "start": { + "$date": "2022-06-10T22:01:42.000Z" + }, + "end": { + "$date": "2022-06-10T22:35:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4c607325-b205-49ab-850b-8320f0ec5a8e", + "start": { + "$date": "2022-06-10T22:35:42.000Z" + }, + "end": { + "$date": "2022-06-10T22:38:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "93e0e469-623d-4c2a-9dae-1509403847bc", + "start": { + "$date": "2022-06-10T22:38:42.000Z" + }, + "end": { + "$date": "2022-06-10T22:42:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "150e6540-37b1-4a7e-9e25-9f7caa7f0afb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-10T22:35:42.000Z" + }, + "end": { + "$date": "2022-06-10T23:17:56.000Z" + }, + "events": [ + { + "uuid": "c52aa46a-c5da-4277-b530-cbd741f2d841", + "start": { + "$date": "2022-06-10T22:35:42.000Z" + }, + "end": { + "$date": "2022-06-10T23:17:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f91fc5e3-003b-4330-8f60-471c9b191d3d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-10T22:38:14.000Z" + }, + "end": { + "$date": "2022-06-10T23:21:06.000Z" + }, + "events": [ + { + "uuid": "35019398-f9fd-4b5f-a102-0e0b3104f69a", + "start": { + "$date": "2022-06-10T22:38:14.000Z" + }, + "end": { + "$date": "2022-06-10T23:21:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "e76f8139-65a0-4dc9-a70d-64a61b900f25", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-10T22:42:29.000Z" + }, + "end": { + "$date": "2022-06-10T23:16:42.000Z" + }, + "events": [ + { + "uuid": "e5603b15-fbeb-4e17-955c-7aebc1c0a4f3", + "start": { + "$date": "2022-06-10T22:42:29.000Z" + }, + "end": { + "$date": "2022-06-10T23:16:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60d7e7f3-ff5e-45da-93ca-f840617c097a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T00:32:33.000Z" + }, + "end": { + "$date": "2022-06-11T00:57:15.000Z" + }, + "events": [ + { + "uuid": "3a37b7a7-fc95-44c5-a1fd-cdea09ad505a", + "start": { + "$date": "2022-06-11T00:32:33.000Z" + }, + "end": { + "$date": "2022-06-11T00:57:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "c0128dd3-bfa5-4e50-bb24-e99ab9035a52", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T01:39:29.000Z" + }, + "end": { + "$date": "2022-06-11T02:21:27.000Z" + }, + "events": [ + { + "uuid": "1611431c-8d62-4d62-940b-a747df70ab4f", + "start": { + "$date": "2022-06-11T01:39:29.000Z" + }, + "end": { + "$date": "2022-06-11T02:21:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1b9d6b2e-c412-4365-8484-8f7a6d0d942a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T01:50:29.000Z" + }, + "end": { + "$date": "2022-06-11T02:13:57.000Z" + }, + "events": [ + { + "uuid": "e0d51225-5d1e-42e5-821a-6abe4b316e87", + "start": { + "$date": "2022-06-11T01:50:29.000Z" + }, + "end": { + "$date": "2022-06-11T02:13:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d4b8df46-7ae7-4c11-851a-4fb775851170", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T02:04:14.000Z" + }, + "end": { + "$date": "2022-06-11T02:06:19.000Z" + }, + "events": [ + { + "uuid": "e6b6c47a-8d53-4034-883a-761fd806e738", + "start": { + "$date": "2022-06-11T02:04:14.000Z" + }, + "end": { + "$date": "2022-06-11T02:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e81331fc-3ca1-457f-a34c-afaaad0758dc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T02:06:45.000Z" + }, + "end": { + "$date": "2022-06-11T02:10:00.000Z" + }, + "events": [ + { + "uuid": "697a24e1-05f2-488f-b5a4-8155f08118c1", + "start": { + "$date": "2022-06-11T02:06:45.000Z" + }, + "end": { + "$date": "2022-06-11T02:10:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5f2a3f8a-d99c-4510-af49-7810803eeffb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T02:15:22.000Z" + }, + "end": { + "$date": "2022-06-11T02:43:31.000Z" + }, + "events": [ + { + "uuid": "35239877-c12d-4b89-9613-b779441e205d", + "start": { + "$date": "2022-06-11T02:15:22.000Z" + }, + "end": { + "$date": "2022-06-11T02:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b517c52b-81b3-4be0-ab8c-bc9783084f9b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-11T02:14:34.000Z" + }, + "end": { + "$date": "2022-06-11T03:25:30.000Z" + }, + "events": [ + { + "uuid": "de497a2d-e8ea-4d28-8f83-cb11d3b701b2", + "start": { + "$date": "2022-06-11T02:14:34.000Z" + }, + "end": { + "$date": "2022-06-11T03:25:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efe6c4a3-d6b4-4c55-9b64-ca0dd8ff1dd5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T02:22:51.000Z" + }, + "end": { + "$date": "2022-06-11T02:40:38.000Z" + }, + "events": [ + { + "uuid": "0bbf64aa-8317-4928-ac67-65090c67cd5b", + "start": { + "$date": "2022-06-11T02:22:51.000Z" + }, + "end": { + "$date": "2022-06-11T02:40:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "fe5b89a9-c0a1-4f19-8ef1-32d7232bd1e8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-11T02:31:28.000Z" + }, + "end": { + "$date": "2022-06-11T05:47:15.000Z" + }, + "events": [ + { + "uuid": "7ef32747-526b-4960-95be-52539171a6a2", + "start": { + "$date": "2022-06-11T02:31:28.000Z" + }, + "end": { + "$date": "2022-06-11T05:47:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "8af22e73-804e-4fd0-9352-ff22c3fd1fac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T02:37:38.000Z" + }, + "end": { + "$date": "2022-06-11T02:39:08.000Z" + }, + "events": [ + { + "uuid": "af4464ce-f490-4e68-81b2-b1bbae2a9deb", + "start": { + "$date": "2022-06-11T02:37:38.000Z" + }, + "end": { + "$date": "2022-06-11T02:39:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "25a2f126-57f9-456c-b235-050814d7dc9c", + "uuid": "ef7985b5-82ff-4cae-a941-54277ee380d2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T02:39:23.000Z" + }, + "end": { + "$date": "2022-06-11T03:07:15.000Z" + }, + "events": [ + { + "uuid": "e9140c0f-4527-4d04-bd27-9fd26c6da724", + "start": { + "$date": "2022-06-11T02:39:23.000Z" + }, + "end": { + "$date": "2022-06-11T03:07:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "470f557b-c170-4111-875a-e31a24b7ef6d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-11T02:40:06.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:32.000Z" + }, + "events": [ + { + "uuid": "15076fc1-b4c9-4ae7-b0cd-b9b46209caa1", + "start": { + "$date": "2022-06-11T02:40:06.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:32.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "be8176f4-c55e-4af6-86cf-8d465327fae2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-11T02:40:25.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:47.000Z" + }, + "events": [ + { + "uuid": "d369a55b-2dde-4839-b9bc-a94772347ad9", + "start": { + "$date": "2022-06-11T02:40:25.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "22075790-9d77-42f5-bda8-f92b1bdb8605", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T02:40:54.000Z" + }, + "end": { + "$date": "2022-06-11T03:25:46.000Z" + }, + "events": [ + { + "uuid": "76170bce-be96-4d3a-917a-8e5715076cb4", + "start": { + "$date": "2022-06-11T02:40:54.000Z" + }, + "end": { + "$date": "2022-06-11T03:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e122e456-1161-47ac-9a65-a94f3c1a3380", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T02:44:20.000Z" + }, + "end": { + "$date": "2022-06-11T03:19:03.000Z" + }, + "events": [ + { + "uuid": "84402cb3-a53e-48a1-8b49-cf7e6a4fb2a4", + "start": { + "$date": "2022-06-11T02:44:20.000Z" + }, + "end": { + "$date": "2022-06-11T03:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7404c9b2-cb93-48e2-8aeb-bc536d47f127", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-11T02:45:07.000Z" + }, + "end": { + "$date": "2022-06-11T02:46:39.000Z" + }, + "events": [ + { + "uuid": "d587867b-ecb4-4f7d-b31e-41ca49b02a28", + "start": { + "$date": "2022-06-11T02:45:07.000Z" + }, + "end": { + "$date": "2022-06-11T02:46:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b585c36f-77a4-4442-9931-fb0a49857f86", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-11T02:47:17.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:53.000Z" + }, + "events": [ + { + "uuid": "056dfd2c-c1e6-43c9-906c-d792543cdcb3", + "start": { + "$date": "2022-06-11T02:47:17.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "c281657f-268d-4613-89eb-41a43624d006", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T03:19:21.000Z" + }, + "end": { + "$date": "2022-06-11T04:01:40.000Z" + }, + "events": [ + { + "uuid": "65fbfaa5-d316-4dd7-b6be-25ac0650eebf", + "start": { + "$date": "2022-06-11T03:19:21.000Z" + }, + "end": { + "$date": "2022-06-11T04:01:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1b32738a-aa63-4af7-bad1-3cf26294df28", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-11T03:23:08.000Z" + }, + "end": { + "$date": "2022-06-11T03:26:38.000Z" + }, + "events": [ + { + "uuid": "b1cfe23e-1fe6-457c-9ce9-f7a014dc68fe", + "start": { + "$date": "2022-06-11T03:23:08.000Z" + }, + "end": { + "$date": "2022-06-11T03:26:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "182fec41-8a8d-4cf7-93be-ddd84c1c8811", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-11T03:34:24.000Z" + }, + "end": { + "$date": "2022-06-11T07:13:58.000Z" + }, + "events": [ + { + "uuid": "ac935496-29a9-46a8-899e-d8e905aaf53e", + "start": { + "$date": "2022-06-11T03:34:24.000Z" + }, + "end": { + "$date": "2022-06-11T07:13:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "831af437-34a1-4d58-b996-b9c1c97bed8c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T03:27:30.000Z" + }, + "end": { + "$date": "2022-06-11T04:05:03.000Z" + }, + "events": [ + { + "uuid": "a758447e-41bd-4e38-b9ec-20cb9aec57af", + "start": { + "$date": "2022-06-11T03:27:30.000Z" + }, + "end": { + "$date": "2022-06-11T04:05:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "171bfa2c-f21b-4de1-aff1-5a354e82bd63", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T03:27:35.000Z" + }, + "end": { + "$date": "2022-06-11T04:04:27.000Z" + }, + "events": [ + { + "uuid": "91b86417-b4e2-4de5-8c85-4113ff9a6d7c", + "start": { + "$date": "2022-06-11T03:27:35.000Z" + }, + "end": { + "$date": "2022-06-11T04:04:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "70d5bd73-b283-45b7-a2ee-6c7d9473f3c7", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-11T03:27:59.000Z" + }, + "end": { + "$date": "2022-06-11T07:14:34.000Z" + }, + "events": [ + { + "uuid": "2f649dc5-d4dc-45fa-848f-4694e85c3642", + "start": { + "$date": "2022-06-11T03:27:59.000Z" + }, + "end": { + "$date": "2022-06-11T07:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "b585de3b-d975-47d0-948a-7bf93fe510ed", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T04:06:44.000Z" + }, + "end": { + "$date": "2022-06-11T04:42:12.000Z" + }, + "events": [ + { + "uuid": "12b41eb4-e40c-4c13-8863-6ff1fef63351", + "start": { + "$date": "2022-06-11T04:06:44.000Z" + }, + "end": { + "$date": "2022-06-11T04:42:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "026231a9-8b50-4243-a72e-13bfc99423fc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T04:11:06.000Z" + }, + "end": { + "$date": "2022-06-11T10:49:45.000Z" + }, + "events": [ + { + "uuid": "5e250b8d-2c67-45ef-99bb-f59819f768cf", + "start": { + "$date": "2022-06-11T04:11:06.000Z" + }, + "end": { + "$date": "2022-06-11T05:16:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b5869c40-a1c6-449e-87d4-4781158937cd", + "start": { + "$date": "2022-06-11T05:16:06.000Z" + }, + "end": { + "$date": "2022-06-11T05:20:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ad7cb2b-52a0-4b03-94df-ca61beab86b8", + "start": { + "$date": "2022-06-11T05:20:06.000Z" + }, + "end": { + "$date": "2022-06-11T08:21:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5ff573e0-cd33-4e3f-93ca-646a027644e1", + "start": { + "$date": "2022-06-11T08:21:06.000Z" + }, + "end": { + "$date": "2022-06-11T08:23:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dd46fd6c-7339-41e5-8d9c-5f8e85663861", + "start": { + "$date": "2022-06-11T08:23:06.000Z" + }, + "end": { + "$date": "2022-06-11T10:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "09613e2d-79a4-4518-8836-067eeba093fe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T04:20:29.000Z" + }, + "end": { + "$date": "2022-06-11T05:30:25.000Z" + }, + "events": [ + { + "uuid": "90c56dc9-7e1f-47c7-84be-7c15345d9dad", + "start": { + "$date": "2022-06-11T04:20:29.000Z" + }, + "end": { + "$date": "2022-06-11T05:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d166ca90-8e17-41d5-a4dd-959ec5efad79", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-11T04:20:49.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:51.000Z" + }, + "events": [ + { + "uuid": "6c773756-77ac-4831-882c-c6ca0f08acc7", + "start": { + "$date": "2022-06-11T04:20:49.000Z" + }, + "end": { + "$date": "2022-06-11T04:29:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "61b795e4-457a-482a-8524-dc16dbda8185", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T10:51:31.000Z" + }, + "end": { + "$date": "2022-06-11T12:34:48.000Z" + }, + "events": [ + { + "uuid": "5029a33d-e053-4242-8923-8d4e5336ddb5", + "start": { + "$date": "2022-06-11T10:51:31.000Z" + }, + "end": { + "$date": "2022-06-11T12:34:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6001234f-d5b1-4374-bfee-c6cb633feb30", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T15:36:17.000Z" + }, + "end": { + "$date": "2022-06-11T15:54:25.000Z" + }, + "events": [ + { + "uuid": "6d4ed058-e37b-44ee-80e5-b72f5dd822db", + "start": { + "$date": "2022-06-11T15:36:17.000Z" + }, + "end": { + "$date": "2022-06-11T15:54:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ee70dc36-9ba6-4ac9-b18b-cfc4d96e2bf7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T16:32:49.000Z" + }, + "end": { + "$date": "2022-06-11T16:50:39.000Z" + }, + "events": [ + { + "uuid": "994eba3a-03e7-42d6-9d93-0a0442026f17", + "start": { + "$date": "2022-06-11T16:32:49.000Z" + }, + "end": { + "$date": "2022-06-11T16:50:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0bee9126-3be4-432e-83e1-7e938ab5f984", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T16:58:00.000Z" + }, + "end": { + "$date": "2022-06-11T17:17:31.000Z" + }, + "events": [ + { + "uuid": "163a27ae-975e-44e5-bd21-1a0c34c2b000", + "start": { + "$date": "2022-06-11T16:58:00.000Z" + }, + "end": { + "$date": "2022-06-11T17:17:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "04e1adf4-23bc-46e9-8c06-564666dd3376", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T19:17:47.000Z" + }, + "end": { + "$date": "2022-06-11T19:44:42.000Z" + }, + "events": [ + { + "uuid": "1b569fd4-3ce9-4463-887a-511551a0089c", + "start": { + "$date": "2022-06-11T19:17:47.000Z" + }, + "end": { + "$date": "2022-06-11T19:44:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c4514f18-f888-4fa6-af2b-d6424c354770", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-11T20:00:11.000Z" + }, + "end": { + "$date": "2022-06-11T20:00:26.000Z" + }, + "events": [ + { + "uuid": "cca1a83e-d42a-40dd-a24e-4b2bd04a03e9", + "start": { + "$date": "2022-06-11T20:00:11.000Z" + }, + "end": { + "$date": "2022-06-11T20:31:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88939d41-9d36-4429-8840-c6ceb43f698c", + "start": { + "$date": "2022-06-11T20:31:11.000Z" + }, + "end": { + "$date": "2022-06-11T20:00:26.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "1a840b3b-beb8-4398-84ee-81bf6cf90476", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T19:43:15.000Z" + }, + "end": { + "$date": "2022-06-11T20:01:46.000Z" + }, + "events": [ + { + "uuid": "1ebe6363-c5ea-458e-8d11-e3db716af04c", + "start": { + "$date": "2022-06-11T19:43:15.000Z" + }, + "end": { + "$date": "2022-06-11T20:01:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "a4033a2a-a358-4b59-aafc-bbcb6d5c2d4f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T19:50:35.000Z" + }, + "end": { + "$date": "2022-06-11T23:14:21.000Z" + }, + "events": [ + { + "uuid": "7bb18042-ac3a-4e66-84cb-4d949721d4c5", + "start": { + "$date": "2022-06-11T19:50:35.000Z" + }, + "end": { + "$date": "2022-06-11T23:14:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "82252672-5f36-464e-ac58-cd1ab5df4c25", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T20:10:09.000Z" + }, + "end": { + "$date": "2022-06-11T20:30:19.000Z" + }, + "events": [ + { + "uuid": "35bb2c86-3a3e-4013-9ce6-6ffcb2a5eff8", + "start": { + "$date": "2022-06-11T20:10:09.000Z" + }, + "end": { + "$date": "2022-06-11T20:30:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", + "uuid": "5d15077a-ec51-4c96-83ce-694228e35836", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-12T00:44:29.000Z" + }, + "end": { + "$date": "2022-06-12T00:58:35.000Z" + }, + "events": [ + { + "uuid": "3f61db8d-af5f-4106-a97f-94c2cfe48cc2", + "start": { + "$date": "2022-06-12T00:44:29.000Z" + }, + "end": { + "$date": "2022-06-12T04:52:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "60fcc0a3-a524-4641-a362-8c1fa6a3343a", + "start": { + "$date": "2022-06-12T04:52:29.000Z" + }, + "end": { + "$date": "2022-06-12T04:53:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6c52af00-267d-40c3-be84-c9ecce9448ea", + "start": { + "$date": "2022-06-12T04:53:29.000Z" + }, + "end": { + "$date": "2022-06-12T00:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3aea0d0f-634b-45c6-a366-da7f8a928783", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T20:49:16.000Z" + }, + "end": { + "$date": "2022-06-11T21:09:47.000Z" + }, + "events": [ + { + "uuid": "6878e814-f745-4087-9a9a-644ed09f8cf0", + "start": { + "$date": "2022-06-11T20:49:16.000Z" + }, + "end": { + "$date": "2022-06-11T21:09:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4a93640e-cc5b-44bf-9b0f-8cacb4cad093", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-11T20:58:57.000Z" + }, + "end": { + "$date": "2022-06-11T22:58:09.000Z" + }, + "events": [ + { + "uuid": "32086f21-f66b-4808-978e-d74afeebff31", + "start": { + "$date": "2022-06-11T20:58:57.000Z" + }, + "end": { + "$date": "2022-06-11T22:58:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "599bcae2-df27-4183-8a8f-e9bdbea843d6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-11T23:05:03.000Z" + }, + "end": { + "$date": "2022-06-12T03:07:12.000Z" + }, + "events": [ + { + "uuid": "2a48e375-13c9-4896-a10b-62a29f11a0e4", + "start": { + "$date": "2022-06-11T23:05:03.000Z" + }, + "end": { + "$date": "2022-06-12T01:39:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fb98d281-fc68-4f25-9075-2f3013f212e0", + "start": { + "$date": "2022-06-12T01:39:03.000Z" + }, + "end": { + "$date": "2022-06-12T01:57:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "714ab0ea-5fe8-4c6b-832a-a25ba3e0372e", + "start": { + "$date": "2022-06-12T01:57:03.000Z" + }, + "end": { + "$date": "2022-06-12T02:13:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c7f0a679-c219-4a3d-a06b-7aa081235327", + "start": { + "$date": "2022-06-12T02:13:03.000Z" + }, + "end": { + "$date": "2022-06-12T02:17:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "31614d5e-4aca-4154-9da7-31b743de8ffd", + "start": { + "$date": "2022-06-12T02:17:03.000Z" + }, + "end": { + "$date": "2022-06-12T02:32:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "75be1757-4b20-4208-9f32-b1f7e21544dc", + "start": { + "$date": "2022-06-12T02:32:03.000Z" + }, + "end": { + "$date": "2022-06-12T02:35:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "474ac760-c25b-4b56-8b04-abe9d5c618eb", + "start": { + "$date": "2022-06-12T02:35:03.000Z" + }, + "end": { + "$date": "2022-06-12T03:07:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "1bd88c79-1604-48bb-9bcc-e98a8a41888d", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-11T23:14:21.000Z" + }, + "end": { + "$date": "2022-06-12T00:18:45.000Z" + }, + "events": [ + { + "uuid": "f2414f76-0b58-41a3-a621-e00ad5130644", + "start": { + "$date": "2022-06-11T23:14:21.000Z" + }, + "end": { + "$date": "2022-06-12T00:18:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "f1f798d7-cae6-41a9-868e-1546ca77cb7e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T23:14:25.000Z" + }, + "end": { + "$date": "2022-06-11T23:32:54.000Z" + }, + "events": [ + { + "uuid": "f0f669ff-c1d4-47c5-8aa4-18b2632898bf", + "start": { + "$date": "2022-06-11T23:14:25.000Z" + }, + "end": { + "$date": "2022-06-11T23:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "bb1a77d0-e7cb-4ced-8676-2d0784e0bdad", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-11T23:18:32.000Z" + }, + "end": { + "$date": "2022-06-12T00:53:13.000Z" + }, + "events": [ + { + "uuid": "759512e0-5b39-49dc-b5a3-1a104ace4248", + "start": { + "$date": "2022-06-11T23:18:32.000Z" + }, + "end": { + "$date": "2022-06-12T00:53:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", + "uuid": "b443db86-5f41-4b5b-afb9-963ecda04bc5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-11T23:33:00.000Z" + }, + "end": { + "$date": "2022-06-11T23:59:00.000Z" + }, + "events": [ + { + "uuid": "5118f37f-50b8-42cd-b092-504dac86651c", + "start": { + "$date": "2022-06-11T23:33:00.000Z" + }, + "end": { + "$date": "2022-06-11T23:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7e71f8ff-6e7f-42b2-8ab9-0b617370f31c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-12T00:09:51.000Z" + }, + "end": { + "$date": "2022-06-12T00:36:11.000Z" + }, + "events": [ + { + "uuid": "b272c27d-c9c5-4d95-8e6c-4e12591521f2", + "start": { + "$date": "2022-06-12T00:09:51.000Z" + }, + "end": { + "$date": "2022-06-12T00:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4d33134d-c4ea-4cc3-a23a-2ed9c1462cc9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T00:20:55.000Z" + }, + "end": { + "$date": "2022-06-12T00:37:18.000Z" + }, + "events": [ + { + "uuid": "48992982-7c02-4ba4-9f36-d0bd06f00d9b", + "start": { + "$date": "2022-06-12T00:20:55.000Z" + }, + "end": { + "$date": "2022-06-12T00:37:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "a7a25d72-9258-48ec-8712-2f90b44710f4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-12T02:28:51.000Z" + }, + "end": { + "$date": "2022-06-12T02:35:46.000Z" + }, + "events": [ + { + "uuid": "c104652b-88d6-4179-9f6c-a7c1145d6221", + "start": { + "$date": "2022-06-12T02:28:51.000Z" + }, + "end": { + "$date": "2022-06-12T02:35:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "ec5d0dd2-29e9-4b6b-86ef-669874940ca8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-12T02:41:42.000Z" + }, + "end": { + "$date": "2022-06-12T04:00:40.000Z" + }, + "events": [ + { + "uuid": "23cdb24d-f976-4f37-bc9d-7c8ed9e7a08b", + "start": { + "$date": "2022-06-12T02:41:42.000Z" + }, + "end": { + "$date": "2022-06-12T04:00:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a70e9345-cbaf-4ba1-af87-f69a859da969", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-12T03:16:48.000Z" + }, + "end": { + "$date": "2022-06-12T04:59:02.000Z" + }, + "events": [ + { + "uuid": "679dbb95-8184-4e93-ba9f-5218db6fd99a", + "start": { + "$date": "2022-06-12T03:16:48.000Z" + }, + "end": { + "$date": "2022-06-12T04:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "facc86aa-15a5-4a06-b628-b4a019365b01", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-12T07:36:05.000Z" + }, + "end": { + "$date": "2022-06-12T07:39:04.000Z" + }, + "events": [ + { + "uuid": "fd72d721-a2ce-411d-9ea2-0323b86468d4", + "start": { + "$date": "2022-06-12T07:36:05.000Z" + }, + "end": { + "$date": "2022-06-12T07:39:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a569f0a6-e529-4a8c-9fc2-c8ef66b8d572", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-12T03:27:42.000Z" + }, + "end": { + "$date": "2022-06-12T07:36:02.000Z" + }, + "events": [ + { + "uuid": "969916f0-7e07-41db-8dbc-9fdcf71ef8cd", + "start": { + "$date": "2022-06-12T03:27:42.000Z" + }, + "end": { + "$date": "2022-06-12T07:36:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "bc4d9671-51c4-4ee0-8e3c-21a806ba015e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-12T03:47:11.000Z" + }, + "end": { + "$date": "2022-06-12T04:42:17.000Z" + }, + "events": [ + { + "uuid": "f314402a-cd6b-4dfa-832a-1ba0e5224f00", + "start": { + "$date": "2022-06-12T03:47:11.000Z" + }, + "end": { + "$date": "2022-06-12T04:42:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9ff5544a-811d-4048-8cd2-80c37a9a8cc9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-12T04:01:16.000Z" + }, + "end": { + "$date": "2022-06-12T07:01:57.000Z" + }, + "events": [ + { + "uuid": "64748d24-b4a2-488a-ab95-cab338fbac20", + "start": { + "$date": "2022-06-12T04:01:16.000Z" + }, + "end": { + "$date": "2022-06-12T07:01:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2f7e5bf5-0c1c-47ab-bb4d-b34cf2bf997b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T04:01:24.000Z" + }, + "end": { + "$date": "2022-06-12T04:47:55.000Z" + }, + "events": [ + { + "uuid": "d5f64913-dab0-4c7f-8a91-7869b19bc6a5", + "start": { + "$date": "2022-06-12T04:01:24.000Z" + }, + "end": { + "$date": "2022-06-12T04:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "4419201f-5500-4abe-88de-699371fbb49d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-12T04:07:38.000Z" + }, + "end": { + "$date": "2022-06-12T05:20:37.000Z" + }, + "events": [ + { + "uuid": "271ba0c0-6d60-4b05-8cf0-578eebf1aa35", + "start": { + "$date": "2022-06-12T04:07:38.000Z" + }, + "end": { + "$date": "2022-06-12T05:20:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "df57b486-f4f2-477c-b87e-9f4df3917405", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T04:48:25.000Z" + }, + "end": { + "$date": "2022-06-12T04:59:05.000Z" + }, + "events": [ + { + "uuid": "37dc9b9c-323c-4dfc-ac00-c603609442ab", + "start": { + "$date": "2022-06-12T04:48:25.000Z" + }, + "end": { + "$date": "2022-06-12T04:59:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f214ec62-6a9e-47cd-af04-28fc32f20dc0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T05:05:36.000Z" + }, + "end": { + "$date": "2022-06-12T05:43:37.000Z" + }, + "events": [ + { + "uuid": "f7b056cb-258d-43d4-a13e-1667a89cf41e", + "start": { + "$date": "2022-06-12T05:05:36.000Z" + }, + "end": { + "$date": "2022-06-12T05:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08de7be0-f790-4487-a1b8-e9fa75a874ed", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-12T05:05:33.000Z" + }, + "end": { + "$date": "2022-06-12T05:44:46.000Z" + }, + "events": [ + { + "uuid": "5eb99ed4-78dd-4d46-89e4-f20eaee9891f", + "start": { + "$date": "2022-06-12T05:05:33.000Z" + }, + "end": { + "$date": "2022-06-12T05:44:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0380d7a4-fb2a-49dc-a933-4d7eaed8ed8a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T05:43:41.000Z" + }, + "end": { + "$date": "2022-06-12T05:46:46.000Z" + }, + "events": [ + { + "uuid": "c0fc0051-2ede-4531-bb51-6c1ab97caf53", + "start": { + "$date": "2022-06-12T05:43:41.000Z" + }, + "end": { + "$date": "2022-06-12T05:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b4243b1d-995e-497b-8655-8895a30248a5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-12T06:13:47.000Z" + }, + "end": { + "$date": "2022-06-12T06:37:22.000Z" + }, + "events": [ + { + "uuid": "2b55ca05-8895-4cec-8929-4ae6bb48855f", + "start": { + "$date": "2022-06-12T06:13:47.000Z" + }, + "end": { + "$date": "2022-06-12T06:37:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c618c63-8604-4039-b409-914576884c8f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T06:18:54.000Z" + }, + "end": { + "$date": "2022-06-12T06:38:18.000Z" + }, + "events": [ + { + "uuid": "d76b9850-73e8-4547-b5d7-7be76935d357", + "start": { + "$date": "2022-06-12T06:18:54.000Z" + }, + "end": { + "$date": "2022-06-12T06:38:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2dc7a752-00eb-42f7-9e3b-70a040054a0c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-12T16:45:16.000Z" + }, + "end": { + "$date": "2022-06-12T16:45:35.000Z" + }, + "events": [ + { + "uuid": "6bde9252-5e95-4a14-a2e9-c7667aad0eb1", + "start": { + "$date": "2022-06-12T16:45:16.000Z" + }, + "end": { + "$date": "2022-06-12T16:45:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d89a5a8-6efc-4765-9f3a-75b672eca658", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T16:06:22.000Z" + }, + "end": { + "$date": "2022-06-12T16:25:12.000Z" + }, + "events": [ + { + "uuid": "479b73cb-5871-4a33-9d2a-b466aaec88ab", + "start": { + "$date": "2022-06-12T16:06:22.000Z" + }, + "end": { + "$date": "2022-06-12T16:25:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "fad8e7b3-2fe9-463c-9da5-14ee9a98425c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T16:39:24.000Z" + }, + "end": { + "$date": "2022-06-12T16:51:23.000Z" + }, + "events": [ + { + "uuid": "7edd01aa-4b63-43e4-8f8d-5bd36ab6cc20", + "start": { + "$date": "2022-06-12T16:39:24.000Z" + }, + "end": { + "$date": "2022-06-12T16:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "673b8a87-585a-4ff9-ae60-26eeb276fcc6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-12T16:45:47.000Z" + }, + "end": { + "$date": "2022-06-12T17:11:19.000Z" + }, + "events": [ + { + "uuid": "e8cce0c2-16d8-4334-b8f7-b6781fe2aea5", + "start": { + "$date": "2022-06-12T16:45:47.000Z" + }, + "end": { + "$date": "2022-06-12T17:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "903015a1-22e7-4c82-83f3-2565f954fd90", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-12T16:52:27.000Z" + }, + "end": { + "$date": "2022-06-12T17:04:37.000Z" + }, + "events": [ + { + "uuid": "9d5e3334-71de-43c6-b2ae-e6d4c5d41ddb", + "start": { + "$date": "2022-06-12T16:52:27.000Z" + }, + "end": { + "$date": "2022-06-12T17:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "64c33614-86fa-4e74-b517-a5306ac1c696", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T16:53:54.000Z" + }, + "end": { + "$date": "2022-06-12T17:18:30.000Z" + }, + "events": [ + { + "uuid": "23fa386f-42c8-46d8-a150-e880f118536b", + "start": { + "$date": "2022-06-12T16:53:54.000Z" + }, + "end": { + "$date": "2022-06-12T17:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "679eb07c-4524-47f1-b4bf-eb0377fec0dd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-12T17:04:53.000Z" + }, + "end": { + "$date": "2022-06-12T21:00:17.000Z" + }, + "events": [ + { + "uuid": "e5cc2cfc-268f-4497-9725-c0f5e2da866f", + "start": { + "$date": "2022-06-12T17:04:53.000Z" + }, + "end": { + "$date": "2022-06-12T21:00:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "6c2fc904-a12a-4bf5-90fb-416c5cbee913", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-12T18:12:23.000Z" + }, + "end": { + "$date": "2022-06-12T19:30:55.000Z" + }, + "events": [ + { + "uuid": "b823f5ce-94ec-4bbe-b354-aea2e11385d5", + "start": { + "$date": "2022-06-12T18:12:23.000Z" + }, + "end": { + "$date": "2022-06-12T19:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02b43ca0-c397-42b4-ba36-10610736b2dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-12T18:27:04.000Z" + }, + "end": { + "$date": "2022-06-12T19:06:40.000Z" + }, + "events": [ + { + "uuid": "767e10ab-f5fa-4a9b-a178-b846a453eea1", + "start": { + "$date": "2022-06-12T18:27:04.000Z" + }, + "end": { + "$date": "2022-06-12T19:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "de15dde9-c953-4a7d-b945-10af9c749275", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-12T19:04:03.000Z" + }, + "end": { + "$date": "2022-06-12T19:48:11.000Z" + }, + "events": [ + { + "uuid": "f1e80b81-6200-4a9b-bf6b-d0d74995d381", + "start": { + "$date": "2022-06-12T19:04:03.000Z" + }, + "end": { + "$date": "2022-06-12T19:48:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8f0544a1-203f-4f65-aa5e-4d58357590d3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-12T20:27:48.000Z" + }, + "end": { + "$date": "2022-06-12T20:41:29.000Z" + }, + "events": [ + { + "uuid": "b2a38e8f-aeb8-49e5-9aab-666c0c72112d", + "start": { + "$date": "2022-06-12T20:27:48.000Z" + }, + "end": { + "$date": "2022-06-12T20:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5c95a43c-8bf8-47a4-9f24-38c2017188f0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-12T20:25:18.000Z" + }, + "end": { + "$date": "2022-06-12T21:16:32.000Z" + }, + "events": [ + { + "uuid": "7d56714e-d517-46f8-a359-1ea0e7b0327c", + "start": { + "$date": "2022-06-12T20:25:18.000Z" + }, + "end": { + "$date": "2022-06-12T21:16:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "638719e0-4266-4e39-affb-7d773b6d950e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-12T20:57:11.000Z" + }, + "end": { + "$date": "2022-06-12T21:54:03.000Z" + }, + "events": [ + { + "uuid": "3db73566-08fc-40b5-bbb2-b0124712b7ca", + "start": { + "$date": "2022-06-12T20:57:11.000Z" + }, + "end": { + "$date": "2022-06-12T21:54:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b0ffcd34-13d4-49b4-8cc8-deba8fe52391", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-13T01:02:34.000Z" + }, + "end": { + "$date": "2022-06-13T01:05:05.000Z" + }, + "events": [ + { + "uuid": "a13dcb2e-bcfd-4349-b0d0-f1cd989908e6", + "start": { + "$date": "2022-06-13T01:02:34.000Z" + }, + "end": { + "$date": "2022-06-13T01:05:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "70642b9a-9e6a-4113-9bdd-246a18c90b4a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-12T22:26:47.000Z" + }, + "end": { + "$date": "2022-06-12T22:33:37.000Z" + }, + "events": [ + { + "uuid": "45cc267d-a3bc-45a8-8b75-192d88973a42", + "start": { + "$date": "2022-06-12T22:26:47.000Z" + }, + "end": { + "$date": "2022-06-12T22:33:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "199c3be2-c897-43ed-b0bf-e21abc526ccc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-12T22:35:03.000Z" + }, + "end": { + "$date": "2022-06-12T22:53:15.000Z" + }, + "events": [ + { + "uuid": "05564fe7-e6cd-4016-a0bd-841ebd426964", + "start": { + "$date": "2022-06-12T22:35:03.000Z" + }, + "end": { + "$date": "2022-06-12T22:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", + "uuid": "3b1899ae-b990-4c49-bedc-56c4b8d38fb6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-12T22:53:35.000Z" + }, + "end": { + "$date": "2022-06-12T23:04:01.000Z" + }, + "events": [ + { + "uuid": "2ad48c88-7286-4528-998b-a5c922dc01bd", + "start": { + "$date": "2022-06-12T22:53:35.000Z" + }, + "end": { + "$date": "2022-06-12T23:04:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "003a834e-0493-4d5d-a092-570fe44f5507", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-13T02:13:27.000Z" + }, + "end": { + "$date": "2022-06-13T02:19:08.000Z" + }, + "events": [ + { + "uuid": "28742c84-83e4-4010-a696-8d8253224d7f", + "start": { + "$date": "2022-06-13T02:13:27.000Z" + }, + "end": { + "$date": "2022-06-13T02:19:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "50581ffc-7f08-4ea5-87b5-67ebbdbefdbe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-13T02:25:24.000Z" + }, + "end": { + "$date": "2022-06-13T02:43:05.000Z" + }, + "events": [ + { + "uuid": "ef1b0e67-b122-4163-8aeb-17f768e3d20f", + "start": { + "$date": "2022-06-13T02:25:24.000Z" + }, + "end": { + "$date": "2022-06-13T02:43:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "61024c38-8d3c-484f-aacc-a3e759bec556", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-13T02:37:25.000Z" + }, + "end": { + "$date": "2022-06-13T03:50:48.000Z" + }, + "events": [ + { + "uuid": "a16e7775-1ac8-47eb-9059-3f717d231dd2", + "start": { + "$date": "2022-06-13T02:37:25.000Z" + }, + "end": { + "$date": "2022-06-13T03:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c3c66a4-5ba2-4924-9c48-aaef15be251d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-13T03:04:43.000Z" + }, + "end": { + "$date": "2022-06-13T04:56:46.000Z" + }, + "events": [ + { + "uuid": "54e8ef46-7466-4435-a72d-7aa5f63416e7", + "start": { + "$date": "2022-06-13T03:04:43.000Z" + }, + "end": { + "$date": "2022-06-13T04:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "275266fd-ddf3-44bf-9060-3c5b149981ee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-13T03:32:24.000Z" + }, + "end": { + "$date": "2022-06-13T03:32:50.000Z" + }, + "events": [ + { + "uuid": "fd953bec-0ead-4fe8-823a-a4e89f0efc78", + "start": { + "$date": "2022-06-13T03:32:24.000Z" + }, + "end": { + "$date": "2022-06-13T03:32:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "42652b02-f6a0-46be-aa89-04587c13cac4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-13T03:28:00.000Z" + }, + "end": { + "$date": "2022-06-13T04:40:18.000Z" + }, + "events": [ + { + "uuid": "e5497ad0-7967-46ac-b219-3986282a7bfe", + "start": { + "$date": "2022-06-13T03:28:00.000Z" + }, + "end": { + "$date": "2022-06-13T04:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "bea1f852-3d13-47be-8ef0-cc41455fa752", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-13T03:33:18.000Z" + }, + "end": { + "$date": "2022-06-13T07:03:44.000Z" + }, + "events": [ + { + "uuid": "f6d93a26-961c-4c13-93fe-545db0954ea7", + "start": { + "$date": "2022-06-13T03:33:18.000Z" + }, + "end": { + "$date": "2022-06-13T07:03:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "419405cc-8f7e-4926-8f0e-f35e524889b6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-13T04:10:45.000Z" + }, + "end": { + "$date": "2022-06-13T04:26:51.000Z" + }, + "events": [ + { + "uuid": "1e8f2d07-7ace-48f2-8406-96facf8f383b", + "start": { + "$date": "2022-06-13T04:10:45.000Z" + }, + "end": { + "$date": "2022-06-13T04:26:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "52553c2f-0c96-491f-81a3-2884b858a810", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-13T04:27:26.000Z" + }, + "end": { + "$date": "2022-06-13T04:51:47.000Z" + }, + "events": [ + { + "uuid": "4fef2998-0911-4e70-89f7-b734c2ee6f0a", + "start": { + "$date": "2022-06-13T04:27:26.000Z" + }, + "end": { + "$date": "2022-06-13T04:51:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "02160113-6f5f-4611-9a3a-7522c79508d3", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-13T04:41:04.000Z" + }, + "end": { + "$date": "2022-06-13T06:56:24.000Z" + }, + "events": [ + { + "uuid": "8e7c9fcc-5a7a-4b5a-9148-0d48a1f906a9", + "start": { + "$date": "2022-06-13T04:41:04.000Z" + }, + "end": { + "$date": "2022-06-13T06:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "5ca5776a-6e8a-4ee3-9ced-dd01ab874825", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-13T04:59:32.000Z" + }, + "end": { + "$date": "2022-06-13T05:43:54.000Z" + }, + "events": [ + { + "uuid": "3cfd8875-9523-454b-9021-fc59670712f4", + "start": { + "$date": "2022-06-13T04:59:32.000Z" + }, + "end": { + "$date": "2022-06-13T05:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3bccc992-b9de-471f-aa9c-6eb33aa366cc", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-13T05:53:18.000Z" + }, + "end": { + "$date": "2022-06-13T11:48:25.000Z" + }, + "events": [ + { + "uuid": "6e3542a2-5e35-402a-9815-f1c5cb1389e8", + "start": { + "$date": "2022-06-13T05:53:18.000Z" + }, + "end": { + "$date": "2022-06-13T11:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7c99e331-22ec-4c69-9611-ae07af37a711", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-13T06:38:02.000Z" + }, + "end": { + "$date": "2022-06-13T06:38:07.000Z" + }, + "events": [ + { + "uuid": "062fb6ce-fa4f-442c-96a6-3c266f7fcfe7", + "start": { + "$date": "2022-06-13T06:38:02.000Z" + }, + "end": { + "$date": "2022-06-13T06:38:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d07aa915-98ee-4a2d-87e7-e4e7f18ba766", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-13T06:30:27.000Z" + }, + "end": { + "$date": "2022-06-13T07:45:04.000Z" + }, + "events": [ + { + "uuid": "0b2528d8-6dd4-4761-a385-64581f69a6c8", + "start": { + "$date": "2022-06-13T06:30:27.000Z" + }, + "end": { + "$date": "2022-06-13T07:45:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "42bd6193-bb81-4304-8ea2-e0ed200c52d1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-13T15:12:05.000Z" + }, + "end": { + "$date": "2022-06-13T16:37:57.000Z" + }, + "events": [ + { + "uuid": "f601a156-40c7-4d7b-8e37-ed3ce0969088", + "start": { + "$date": "2022-06-13T15:12:05.000Z" + }, + "end": { + "$date": "2022-06-13T16:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "e39a7ad4-2322-4c19-9279-0cbcf2ed629c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-13T18:52:25.000Z" + }, + "end": { + "$date": "2022-06-13T19:18:23.000Z" + }, + "events": [ + { + "uuid": "a1841d3c-8035-4a95-b55b-b583182102b1", + "start": { + "$date": "2022-06-13T18:52:25.000Z" + }, + "end": { + "$date": "2022-06-13T19:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f953a2e8-3283-4111-929e-b0139ba0475e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-13T18:57:53.000Z" + }, + "end": { + "$date": "2022-06-13T19:51:18.000Z" + }, + "events": [ + { + "uuid": "d4dd010a-e866-4637-81dd-69aa8147ad71", + "start": { + "$date": "2022-06-13T18:57:53.000Z" + }, + "end": { + "$date": "2022-06-13T19:41:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4938e5d-c180-44a4-8d8d-238ad60f37bf", + "start": { + "$date": "2022-06-13T19:41:53.000Z" + }, + "end": { + "$date": "2022-06-13T19:53:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28f9720f-4122-46ff-a9a3-3e40428aebfc", + "start": { + "$date": "2022-06-13T19:53:53.000Z" + }, + "end": { + "$date": "2022-06-13T19:51:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3bf6f488-d5ad-40e2-b704-ee5ad8d2d0aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-13T20:24:56.000Z" + }, + "end": { + "$date": "2022-06-13T22:35:39.000Z" + }, + "events": [ + { + "uuid": "af154d5d-9439-4cde-b1b6-d7805d313208", + "start": { + "$date": "2022-06-13T20:24:56.000Z" + }, + "end": { + "$date": "2022-06-13T22:35:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "6ace552b-2170-4b6b-becc-38af471dc618", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-13T20:33:20.000Z" + }, + "end": { + "$date": "2022-06-13T23:51:23.000Z" + }, + "events": [ + { + "uuid": "edb33d0b-25d1-49c6-807a-31c4bfdf9d87", + "start": { + "$date": "2022-06-13T20:33:20.000Z" + }, + "end": { + "$date": "2022-06-13T23:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3ee4b3ab-4c10-4096-af01-0b9263780ccf", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-13T21:26:21.000Z" + }, + "end": { + "$date": "2022-06-13T23:14:11.000Z" + }, + "events": [ + { + "uuid": "728d3d95-22e5-440c-9ce2-cf3061509cef", + "start": { + "$date": "2022-06-13T21:26:21.000Z" + }, + "end": { + "$date": "2022-06-13T23:14:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "c3a0651a-1a70-4746-b5bf-421fb2362280", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-13T22:58:35.000Z" + }, + "end": { + "$date": "2022-06-13T22:58:55.000Z" + }, + "events": [ + { + "uuid": "90907e37-a2e2-4401-8207-a7126b868025", + "start": { + "$date": "2022-06-13T22:58:35.000Z" + }, + "end": { + "$date": "2022-06-13T22:58:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "daa49bdd-5bce-40d0-816b-a221c9f53dd1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-13T23:52:38.000Z" + }, + "end": { + "$date": "2022-06-14T07:59:51.000Z" + }, + "events": [ + { + "uuid": "1dead797-aff2-4298-b823-1d4f14e40552", + "start": { + "$date": "2022-06-13T23:52:38.000Z" + }, + "end": { + "$date": "2022-06-14T04:09:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7a74ec3e-19aa-4825-b21f-28b396b1d24b", + "start": { + "$date": "2022-06-14T04:09:38.000Z" + }, + "end": { + "$date": "2022-06-14T04:22:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d969850d-2f35-41c9-9ba7-234219eddc25", + "start": { + "$date": "2022-06-14T04:22:38.000Z" + }, + "end": { + "$date": "2022-06-14T07:59:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "080051f7-881f-40d2-816e-59cd6bcf0a6a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-14T00:53:09.000Z" + }, + "end": { + "$date": "2022-06-14T01:58:48.000Z" + }, + "events": [ + { + "uuid": "46ad6836-136c-43c2-b0ca-db1967ac5645", + "start": { + "$date": "2022-06-14T00:53:09.000Z" + }, + "end": { + "$date": "2022-06-14T01:58:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "02bd01ef-0a5c-4daa-a838-331a2886e04f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-14T00:58:29.000Z" + }, + "end": { + "$date": "2022-06-14T03:26:12.000Z" + }, + "events": [ + { + "uuid": "1e112472-7f96-4d73-b6a6-8f1062a916a9", + "start": { + "$date": "2022-06-14T00:58:29.000Z" + }, + "end": { + "$date": "2022-06-14T03:26:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", + "uuid": "3868b348-7297-47da-a479-3b577cfa0c79", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-14T01:14:15.000Z" + }, + "end": { + "$date": "2022-06-14T03:58:35.000Z" + }, + "events": [ + { + "uuid": "350d520a-c883-485d-8c4a-332f254b7d06", + "start": { + "$date": "2022-06-14T01:14:15.000Z" + }, + "end": { + "$date": "2022-06-14T03:58:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "a42a899f-5b28-429d-ae2e-41dddcb24980", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-06-14T01:19:35.000Z" + }, + "end": { + "$date": "2022-06-14T02:22:50.000Z" + }, + "events": [ + { + "uuid": "8ab10709-c6b8-433f-a147-e42c9be71c14", + "start": { + "$date": "2022-06-14T01:19:35.000Z" + }, + "end": { + "$date": "2022-06-14T02:22:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", + "uuid": "2c412e28-397c-44d7-abef-bd93f3469cd9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-14T01:38:14.000Z" + }, + "end": { + "$date": "2022-06-14T03:59:02.000Z" + }, + "events": [ + { + "uuid": "aa2463da-a099-46ec-87ad-284a6263f8bc", + "start": { + "$date": "2022-06-14T01:38:14.000Z" + }, + "end": { + "$date": "2022-06-14T03:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "998c7bec-34bd-4b8b-8761-26134703f4a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-14T03:10:45.000Z" + }, + "end": { + "$date": "2022-06-14T03:24:43.000Z" + }, + "events": [ + { + "uuid": "cfdffc8b-13fc-437c-b5b0-360cc3a5a6bd", + "start": { + "$date": "2022-06-14T03:10:45.000Z" + }, + "end": { + "$date": "2022-06-14T03:24:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "172743a8-0c65-4e68-a925-e710da17ddd3", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-14T03:12:01.000Z" + }, + "end": { + "$date": "2022-06-14T04:20:42.000Z" + }, + "events": [ + { + "uuid": "6cddc4db-836e-42ac-b352-9dfb658eb571", + "start": { + "$date": "2022-06-14T03:12:01.000Z" + }, + "end": { + "$date": "2022-06-14T04:20:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "f0f9d4c9-78ef-4e1d-95b6-5204b778f471", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-14T03:26:01.000Z" + }, + "end": { + "$date": "2022-06-14T03:27:09.000Z" + }, + "events": [ + { + "uuid": "5084003b-1e4d-4c99-86be-90a9b7490797", + "start": { + "$date": "2022-06-14T03:26:01.000Z" + }, + "end": { + "$date": "2022-06-14T03:27:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f81e410f-4f03-4cfb-8470-c273ce00cfcc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-14T03:27:08.000Z" + }, + "end": { + "$date": "2022-06-14T03:48:05.000Z" + }, + "events": [ + { + "uuid": "c89a89b9-c685-452a-aaca-96f496bd0dae", + "start": { + "$date": "2022-06-14T03:27:08.000Z" + }, + "end": { + "$date": "2022-06-14T03:48:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "7e948f3b-40ef-41a0-b982-46b1207ed28c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-14T03:27:31.000Z" + }, + "end": { + "$date": "2022-06-14T04:23:07.000Z" + }, + "events": [ + { + "uuid": "12afad87-d1bf-4461-92e9-afa6ac8d239a", + "start": { + "$date": "2022-06-14T03:27:31.000Z" + }, + "end": { + "$date": "2022-06-14T04:23:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", + "uuid": "628e8fe9-9fa7-472b-baa1-308f11cc0f7f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-14T03:38:24.000Z" + }, + "end": { + "$date": "2022-06-14T03:58:24.000Z" + }, + "events": [ + { + "uuid": "a31dfb6b-dbe7-4698-b7da-eda9948cb662", + "start": { + "$date": "2022-06-14T03:38:24.000Z" + }, + "end": { + "$date": "2022-06-14T03:58:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "2b9955ae-3708-4c17-b8b5-a06a69a882cb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-14T03:40:58.000Z" + }, + "end": { + "$date": "2022-06-14T04:26:15.000Z" + }, + "events": [ + { + "uuid": "3b87ef36-9f6d-4069-a638-aefd779f9b87", + "start": { + "$date": "2022-06-14T03:40:58.000Z" + }, + "end": { + "$date": "2022-06-14T04:26:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "78ef7f85-1f57-4a61-904f-4b20f418e558", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-14T03:50:00.000Z" + }, + "end": { + "$date": "2022-06-14T06:45:46.000Z" + }, + "events": [ + { + "uuid": "8af55a26-607f-496b-a5c6-aff0a6864d5e", + "start": { + "$date": "2022-06-14T03:50:00.000Z" + }, + "end": { + "$date": "2022-06-14T06:06:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2052a8b-c8bc-457c-a2de-bf743c227fd4", + "start": { + "$date": "2022-06-14T06:06:00.000Z" + }, + "end": { + "$date": "2022-06-14T06:18:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "df2ff127-b25a-492b-8d11-eae70da26460", + "start": { + "$date": "2022-06-14T06:18:00.000Z" + }, + "end": { + "$date": "2022-06-14T06:45:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "d9224da3-8a0a-4053-acff-da4c80b17a3d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-14T04:21:27.000Z" + }, + "end": { + "$date": "2022-06-14T06:33:12.000Z" + }, + "events": [ + { + "uuid": "f8d04755-4451-47e9-b99a-69ad30afeff6", + "start": { + "$date": "2022-06-14T04:21:27.000Z" + }, + "end": { + "$date": "2022-06-14T06:33:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "6df5584c-247a-4b6d-b390-6284df866cc0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-14T04:24:07.000Z" + }, + "end": { + "$date": "2022-06-14T04:43:58.000Z" + }, + "events": [ + { + "uuid": "377e1a31-5419-49f3-80b6-b4a720e43809", + "start": { + "$date": "2022-06-14T04:24:07.000Z" + }, + "end": { + "$date": "2022-06-14T04:43:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a12b61c8-87b2-4451-841c-0415e012ad5b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-14T06:15:06.000Z" + }, + "end": { + "$date": "2022-06-14T06:44:52.000Z" + }, + "events": [ + { + "uuid": "30dfac12-f50d-4381-8c88-17f8aa612d08", + "start": { + "$date": "2022-06-14T06:15:06.000Z" + }, + "end": { + "$date": "2022-06-14T06:44:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "156f2d37-b261-45b8-9f92-2c0447a52b1b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-14T18:37:00.000Z" + }, + "end": { + "$date": "2022-06-14T20:00:49.000Z" + }, + "events": [ + { + "uuid": "f2cc4d39-ec99-4824-b63b-3c36b75bcc61", + "start": { + "$date": "2022-06-14T18:37:00.000Z" + }, + "end": { + "$date": "2022-06-14T20:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "349107eb-105d-4cbb-9aea-5a315e2298b2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-14T19:22:28.000Z" + }, + "end": { + "$date": "2022-06-14T19:39:46.000Z" + }, + "events": [ + { + "uuid": "466b58de-d92a-479f-a25e-72a9d4d97e3d", + "start": { + "$date": "2022-06-14T19:22:28.000Z" + }, + "end": { + "$date": "2022-06-14T19:39:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "6b5caa06-1547-48f9-a325-36febdf3cfcf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-14T19:00:28.000Z" + }, + "end": { + "$date": "2022-06-14T20:25:25.000Z" + }, + "events": [ + { + "uuid": "c963d014-6ba5-4ee1-99f2-1d8a15ae66c8", + "start": { + "$date": "2022-06-14T19:00:28.000Z" + }, + "end": { + "$date": "2022-06-14T20:25:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "71e4c248-23fc-40ad-8cb7-18752e5de47f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-14T20:48:38.000Z" + }, + "end": { + "$date": "2022-06-14T21:15:05.000Z" + }, + "events": [ + { + "uuid": "e6a97b7e-a868-4ce5-8f3a-8d73e70dd813", + "start": { + "$date": "2022-06-14T20:48:38.000Z" + }, + "end": { + "$date": "2022-06-14T21:15:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "baefdd54-5bcf-402a-b635-7c1a48fe4229", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-14T21:25:16.000Z" + }, + "end": { + "$date": "2022-06-14T23:55:16.000Z" + }, + "events": [ + { + "uuid": "bd74530f-582e-4103-b360-a4c29a59bb19", + "start": { + "$date": "2022-06-14T21:25:16.000Z" + }, + "end": { + "$date": "2022-06-14T23:55:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "27227fb5-aff5-4324-8c7b-fe2d17016f0f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-15T00:06:01.000Z" + }, + "end": { + "$date": "2022-06-15T00:43:36.000Z" + }, + "events": [ + { + "uuid": "f879a77f-30a0-40b3-8bf9-74bbf31c5cc9", + "start": { + "$date": "2022-06-15T00:06:01.000Z" + }, + "end": { + "$date": "2022-06-15T00:43:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "9d3cfd87-a6b6-407e-b721-297a4745c06d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-15T00:03:54.000Z" + }, + "end": { + "$date": "2022-06-15T01:08:59.000Z" + }, + "events": [ + { + "uuid": "847c5477-3061-41a0-b5b5-fff2251f977a", + "start": { + "$date": "2022-06-15T00:03:54.000Z" + }, + "end": { + "$date": "2022-06-15T01:08:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3e42b660-e8bb-4134-add8-b6d8024003bc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T00:38:53.000Z" + }, + "end": { + "$date": "2022-06-15T00:40:28.000Z" + }, + "events": [ + { + "uuid": "7b5ac120-5375-48ea-b1b9-f7b084490725", + "start": { + "$date": "2022-06-15T00:38:53.000Z" + }, + "end": { + "$date": "2022-06-15T00:40:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ce94b2be-57d8-4783-a78e-eb3a3d5db275", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-15T00:39:13.000Z" + }, + "end": { + "$date": "2022-06-15T00:59:30.000Z" + }, + "events": [ + { + "uuid": "a325fab4-e5ee-4935-a053-268550ca03e6", + "start": { + "$date": "2022-06-15T00:39:13.000Z" + }, + "end": { + "$date": "2022-06-15T00:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "9c27056a-02e5-4cc1-a828-4258706d7be3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-15T00:44:06.000Z" + }, + "end": { + "$date": "2022-06-15T01:06:47.000Z" + }, + "events": [ + { + "uuid": "62fcbc23-9f43-469d-b85c-9965773874bd", + "start": { + "$date": "2022-06-15T00:44:06.000Z" + }, + "end": { + "$date": "2022-06-15T01:06:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6d9b0c9a-52d7-41c9-9965-f53c965a40bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-15T03:34:51.000Z" + }, + "end": { + "$date": "2022-06-15T03:34:58.000Z" + }, + "events": [ + { + "uuid": "a6483f5d-a069-44ba-bfe2-c806ddf0f9de", + "start": { + "$date": "2022-06-15T03:34:51.000Z" + }, + "end": { + "$date": "2022-06-15T03:34:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "24f1ec46-6466-4a97-982c-99c8472837f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T01:48:03.000Z" + }, + "end": { + "$date": "2022-06-15T02:15:39.000Z" + }, + "events": [ + { + "uuid": "a0d7ecf4-0723-4128-b26c-f7d56bb0f06a", + "start": { + "$date": "2022-06-15T01:48:03.000Z" + }, + "end": { + "$date": "2022-06-15T02:15:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bd1a2178-9432-4dfe-8e69-821c0ce56d4f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-15T02:01:09.000Z" + }, + "end": { + "$date": "2022-06-15T02:14:30.000Z" + }, + "events": [ + { + "uuid": "36c319a7-af10-4bab-a68a-426450f1a357", + "start": { + "$date": "2022-06-15T02:01:09.000Z" + }, + "end": { + "$date": "2022-06-15T02:14:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "e0fe6b4e-4140-4948-b82f-9238fe6b6c6f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T02:12:46.000Z" + }, + "end": { + "$date": "2022-06-15T02:14:47.000Z" + }, + "events": [ + { + "uuid": "8035392e-5491-44f7-b2d2-99bc8b9136ec", + "start": { + "$date": "2022-06-15T02:12:46.000Z" + }, + "end": { + "$date": "2022-06-15T02:14:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "c1baa161-c14b-4af2-a5d2-1cc8ac845ccc", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T02:15:01.000Z" + }, + "end": { + "$date": "2022-06-15T02:18:23.000Z" + }, + "events": [ + { + "uuid": "613ef9db-eedd-4b9f-bbec-6388ca8d326a", + "start": { + "$date": "2022-06-15T02:15:01.000Z" + }, + "end": { + "$date": "2022-06-15T02:18:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "6024d654-52f9-440b-a955-87ac30479caf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T02:18:46.000Z" + }, + "end": { + "$date": "2022-06-15T03:01:15.000Z" + }, + "events": [ + { + "uuid": "3659937c-0612-4c6d-9fb8-3bfaac712c89", + "start": { + "$date": "2022-06-15T02:18:46.000Z" + }, + "end": { + "$date": "2022-06-15T03:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0f8d6565-3b27-42a6-9069-24c2d0a0560d", + "uuid": "408bfeba-4420-4575-81d4-8235ebd5c878", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T02:29:49.000Z" + }, + "end": { + "$date": "2022-06-15T03:34:55.000Z" + }, + "events": [ + { + "uuid": "ac9869b6-840e-4ab0-87c2-660eabf70031", + "start": { + "$date": "2022-06-15T02:29:49.000Z" + }, + "end": { + "$date": "2022-06-15T03:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", + "uuid": "557ace08-3fad-4c52-b8d8-900344d5adf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-15T02:33:13.000Z" + }, + "end": { + "$date": "2022-06-15T03:07:18.000Z" + }, + "events": [ + { + "uuid": "74f70ff5-1021-40b6-9917-cc004afdb40d", + "start": { + "$date": "2022-06-15T02:33:13.000Z" + }, + "end": { + "$date": "2022-06-15T03:07:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "aa882690-bbc5-4909-9f26-545e03f5634f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T03:01:18.000Z" + }, + "end": { + "$date": "2022-06-15T03:03:25.000Z" + }, + "events": [ + { + "uuid": "63620f6a-0e67-4477-8002-b1213d483088", + "start": { + "$date": "2022-06-15T03:01:18.000Z" + }, + "end": { + "$date": "2022-06-15T03:03:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "0c1eab08-55ad-4348-9acf-5a148ef770e0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T03:04:33.000Z" + }, + "end": { + "$date": "2022-06-15T03:05:35.000Z" + }, + "events": [ + { + "uuid": "3c0686b9-8d68-4762-afa3-d31a4c9d2968", + "start": { + "$date": "2022-06-15T03:04:33.000Z" + }, + "end": { + "$date": "2022-06-15T03:05:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "beea58de-7ce4-4bff-b514-52615d680096", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-15T03:05:24.000Z" + }, + "end": { + "$date": "2022-06-15T04:34:39.000Z" + }, + "events": [ + { + "uuid": "335db8c9-39f7-4620-b434-1a14c5a354f9", + "start": { + "$date": "2022-06-15T03:05:24.000Z" + }, + "end": { + "$date": "2022-06-15T04:34:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "f052f4e2-c658-45f1-8a5b-5ce42bfc5dec", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T03:07:42.000Z" + }, + "end": { + "$date": "2022-06-15T03:48:47.000Z" + }, + "events": [ + { + "uuid": "6dd7ce0a-d461-43f8-a950-947b8dc56d05", + "start": { + "$date": "2022-06-15T03:07:42.000Z" + }, + "end": { + "$date": "2022-06-15T03:48:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f86e3b2b-b911-434b-bb5f-2308662c541e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-15T03:55:56.000Z" + }, + "end": { + "$date": "2022-06-15T03:56:22.000Z" + }, + "events": [ + { + "uuid": "54522ee9-7738-476c-a299-bd0212a18b47", + "start": { + "$date": "2022-06-15T03:55:56.000Z" + }, + "end": { + "$date": "2022-06-15T03:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3196f7cf-d671-4eed-b0d8-df76238daf3d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-15T03:51:38.000Z" + }, + "end": { + "$date": "2022-06-15T04:03:35.000Z" + }, + "events": [ + { + "uuid": "7cec801d-f9a2-4112-8e54-0a1cd88d417b", + "start": { + "$date": "2022-06-15T03:51:38.000Z" + }, + "end": { + "$date": "2022-06-15T04:03:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "20e98ff8-ea52-41a0-a5c2-03823ba1628c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-15T04:19:11.000Z" + }, + "end": { + "$date": "2022-06-15T05:49:21.000Z" + }, + "events": [ + { + "uuid": "5a8bc5b7-c307-4d54-a93c-9f0579108df3", + "start": { + "$date": "2022-06-15T04:19:11.000Z" + }, + "end": { + "$date": "2022-06-15T05:49:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "c80d6162-45f7-4db4-9dac-3dcb01033cd5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-15T04:20:51.000Z" + }, + "end": { + "$date": "2022-06-15T05:05:06.000Z" + }, + "events": [ + { + "uuid": "e42f7053-eabc-44e8-98c3-a44f8f67819f", + "start": { + "$date": "2022-06-15T04:20:51.000Z" + }, + "end": { + "$date": "2022-06-15T05:05:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "575a85bb-2739-4f0a-b8d4-68cac1dcc05f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-15T04:35:03.000Z" + }, + "end": { + "$date": "2022-06-15T06:05:41.000Z" + }, + "events": [ + { + "uuid": "572be37a-5d98-4ddb-b57b-52852fa335e0", + "start": { + "$date": "2022-06-15T04:35:03.000Z" + }, + "end": { + "$date": "2022-06-15T06:05:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "e4cde190-6618-437f-9d6f-9406c31728df", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-15T04:35:45.000Z" + }, + "end": { + "$date": "2022-06-15T04:45:01.000Z" + }, + "events": [ + { + "uuid": "9d1c06a5-22ec-4c34-9be0-917c26a8f461", + "start": { + "$date": "2022-06-15T04:35:45.000Z" + }, + "end": { + "$date": "2022-06-15T04:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7c0bff80-6b01-42b3-8df5-e97585336253", + "uuid": "cbf6d1a8-36d3-4c93-85fd-a2dd52e4e169", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T04:42:56.000Z" + }, + "end": { + "$date": "2022-06-15T04:50:57.000Z" + }, + "events": [ + { + "uuid": "3d27accf-bc6c-4355-a2c4-2e6579329122", + "start": { + "$date": "2022-06-15T04:42:56.000Z" + }, + "end": { + "$date": "2022-06-15T04:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5d5923b8-c1a0-4838-99ca-3b03b04038e1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-15T04:58:04.000Z" + }, + "end": { + "$date": "2022-06-15T05:50:57.000Z" + }, + "events": [ + { + "uuid": "85975d6a-f78a-407b-b47c-613b54785bb1", + "start": { + "$date": "2022-06-15T04:58:04.000Z" + }, + "end": { + "$date": "2022-06-15T05:50:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "97072ff7-3fc0-4c9b-a4e9-a8cca2e0ea66", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-15T05:01:45.000Z" + }, + "end": { + "$date": "2022-06-15T05:57:38.000Z" + }, + "events": [ + { + "uuid": "e3966092-d2f0-4185-9e4a-d552f289e773", + "start": { + "$date": "2022-06-15T05:01:45.000Z" + }, + "end": { + "$date": "2022-06-15T05:57:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b60e5dde-5496-48d3-b211-85a8e7fffd0d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-15T05:02:24.000Z" + }, + "end": { + "$date": "2022-06-15T07:17:07.000Z" + }, + "events": [ + { + "uuid": "20ee5469-74e1-4c6e-8171-cd29286eaa15", + "start": { + "$date": "2022-06-15T05:02:24.000Z" + }, + "end": { + "$date": "2022-06-15T07:17:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "d4e4b483-ae6a-4976-a19f-f52d8c451c19", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-15T05:05:36.000Z" + }, + "end": { + "$date": "2022-06-15T05:52:33.000Z" + }, + "events": [ + { + "uuid": "aff206b0-89b0-49b5-b470-978be25b5163", + "start": { + "$date": "2022-06-15T05:05:36.000Z" + }, + "end": { + "$date": "2022-06-15T05:52:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "71305bce-9625-4250-8ec8-c3d51ff759f7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-15T05:07:22.000Z" + }, + "end": { + "$date": "2022-06-15T05:14:42.000Z" + }, + "events": [ + { + "uuid": "eda4cb4c-d5b1-41f6-b87a-6998491c92fa", + "start": { + "$date": "2022-06-15T05:07:22.000Z" + }, + "end": { + "$date": "2022-06-15T05:14:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "6c11d307-d620-4cff-b3e3-7b351fb7750a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T05:24:39.000Z" + }, + "end": { + "$date": "2022-06-15T06:00:05.000Z" + }, + "events": [ + { + "uuid": "80bff82f-e65a-4254-9ae2-8d5e4f8ce705", + "start": { + "$date": "2022-06-15T05:24:39.000Z" + }, + "end": { + "$date": "2022-06-15T06:00:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "dae7bcb1-377e-45c0-979b-944d77a9c6e9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-15T05:24:58.000Z" + }, + "end": { + "$date": "2022-06-15T05:59:40.000Z" + }, + "events": [ + { + "uuid": "b448f2e6-aece-4dd8-a266-9408b7f46206", + "start": { + "$date": "2022-06-15T05:24:58.000Z" + }, + "end": { + "$date": "2022-06-15T05:59:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7414dafd-00f5-4317-8b63-997015b0747a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-15T05:51:17.000Z" + }, + "end": { + "$date": "2022-06-15T07:17:16.000Z" + }, + "events": [ + { + "uuid": "91df715a-0760-4486-90d5-2a08740bc4f5", + "start": { + "$date": "2022-06-15T05:51:17.000Z" + }, + "end": { + "$date": "2022-06-15T07:17:16.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3a3b2bb3-363b-413e-a259-59924a7afe2a", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-15T05:55:47.000Z" + }, + "end": { + "$date": "2022-06-15T06:51:59.000Z" + }, + "events": [ + { + "uuid": "402bbae1-3612-45bf-b90c-8497b1abb43f", + "start": { + "$date": "2022-06-15T05:55:47.000Z" + }, + "end": { + "$date": "2022-06-15T06:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "b36dd8e6-d385-42d9-8a1b-0b81707b4443", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-15T12:59:07.000Z" + }, + "end": { + "$date": "2022-06-15T13:10:57.000Z" + }, + "events": [ + { + "uuid": "af30c66f-835b-4218-a2dc-833af35c770a", + "start": { + "$date": "2022-06-15T12:59:07.000Z" + }, + "end": { + "$date": "2022-06-15T13:10:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", + "uuid": "ea8e76f3-9cb9-42f2-ab59-5bf79dc40f79", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-15T13:19:38.000Z" + }, + "end": { + "$date": "2022-06-15T13:24:03.000Z" + }, + "events": [ + { + "uuid": "c9a22b28-e6ff-491c-92e8-ffb5b46d4b42", + "start": { + "$date": "2022-06-15T13:19:38.000Z" + }, + "end": { + "$date": "2022-06-15T13:24:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2cd75f09-f296-4b04-8470-ab7147118132", + "uuid": "a084771d-555d-4237-be6f-4c1d386ecdd2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T15:00:19.000Z" + }, + "end": { + "$date": "2022-06-15T15:02:29.000Z" + }, + "events": [ + { + "uuid": "422e1005-5f97-4d97-a119-df2afd3a0037", + "start": { + "$date": "2022-06-15T15:00:19.000Z" + }, + "end": { + "$date": "2022-06-15T15:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "eb9ed561-6df8-4d1d-b3a9-d9296b5bf56b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-15T16:04:38.000Z" + }, + "end": { + "$date": "2022-06-15T16:55:08.000Z" + }, + "events": [ + { + "uuid": "3cbbc368-bdc1-4f0b-992f-93a7dd6f871f", + "start": { + "$date": "2022-06-15T16:04:38.000Z" + }, + "end": { + "$date": "2022-06-15T16:55:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "1073e0dc-d4ef-4823-940c-38520af2566b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-15T16:34:10.000Z" + }, + "end": { + "$date": "2022-06-15T20:42:37.000Z" + }, + "events": [ + { + "uuid": "a9a8adf0-413b-40fb-a9ea-d345c62f0bf4", + "start": { + "$date": "2022-06-15T16:34:10.000Z" + }, + "end": { + "$date": "2022-06-15T18:59:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1c9b3817-5aa7-4b2c-8e58-a60bc7627f4c", + "start": { + "$date": "2022-06-15T18:59:10.000Z" + }, + "end": { + "$date": "2022-06-15T19:13:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2f4f2c5b-9d10-4766-b25a-830b5ea21d13", + "start": { + "$date": "2022-06-15T19:13:10.000Z" + }, + "end": { + "$date": "2022-06-15T20:23:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e2ccabcb-bf25-4ebf-8d0d-413c13ca9af9", + "start": { + "$date": "2022-06-15T20:23:10.000Z" + }, + "end": { + "$date": "2022-06-15T20:42:37.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "0f8d6565-3b27-42a6-9069-24c2d0a0560d", + "uuid": "769a771f-a502-430c-9afd-e42766ae9eb0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T20:01:31.000Z" + }, + "end": { + "$date": "2022-06-15T20:14:06.000Z" + }, + "events": [ + { + "uuid": "3df368b9-0dec-4aa8-a0d1-a048e4d2a58f", + "start": { + "$date": "2022-06-15T20:01:31.000Z" + }, + "end": { + "$date": "2022-06-15T20:14:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d885b882-8c1b-4748-b32b-3fa1c19f4fe8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-15T20:09:16.000Z" + }, + "end": { + "$date": "2022-06-15T20:44:23.000Z" + }, + "events": [ + { + "uuid": "2c36dfa7-fb22-49ec-9eeb-2659372fc813", + "start": { + "$date": "2022-06-15T20:09:16.000Z" + }, + "end": { + "$date": "2022-06-15T20:44:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "39781da9-0e86-430d-9982-01d38c987e05", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-16T00:45:46.000Z" + }, + "end": { + "$date": "2022-06-16T00:45:50.000Z" + }, + "events": [ + { + "uuid": "bc051834-bc2f-4bfb-bed5-9310e5f7f4ae", + "start": { + "$date": "2022-06-16T00:45:46.000Z" + }, + "end": { + "$date": "2022-06-16T00:45:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "043cdd15-2ed1-4638-9405-848e300e507a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T20:32:32.000Z" + }, + "end": { + "$date": "2022-06-15T22:17:50.000Z" + }, + "events": [ + { + "uuid": "d3319f6f-a355-40b8-b8f7-adf2230cffa3", + "start": { + "$date": "2022-06-15T20:32:32.000Z" + }, + "end": { + "$date": "2022-06-15T22:17:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c276baee-09fd-4dd8-95dd-cbddaaf9bc8f", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-15T20:47:35.000Z" + }, + "end": { + "$date": "2022-06-15T21:47:49.000Z" + }, + "events": [ + { + "uuid": "c78edbc1-37ce-41ff-a1df-c39126ec0dbd", + "start": { + "$date": "2022-06-15T20:47:35.000Z" + }, + "end": { + "$date": "2022-06-15T21:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c9e14fba-4710-4b33-ad49-9f6c7b696737", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-15T21:50:13.000Z" + }, + "end": { + "$date": "2022-06-15T22:24:01.000Z" + }, + "events": [ + { + "uuid": "81b68bdf-a19a-48fc-8c48-9b1421e37842", + "start": { + "$date": "2022-06-15T21:50:13.000Z" + }, + "end": { + "$date": "2022-06-15T22:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "4f07ef7e-ea72-447b-8135-0650e1b70c37", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-15T23:03:02.000Z" + }, + "end": { + "$date": "2022-06-16T00:33:39.000Z" + }, + "events": [ + { + "uuid": "457e4326-10ab-4d0a-8b89-c4fa852c6302", + "start": { + "$date": "2022-06-15T23:03:02.000Z" + }, + "end": { + "$date": "2022-06-16T00:33:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "050866e3-cb1c-4174-8fa9-fe8ab9e34003", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-15T23:26:19.000Z" + }, + "end": { + "$date": "2022-06-15T23:55:55.000Z" + }, + "events": [ + { + "uuid": "6031530c-6387-4cb7-8a29-c456c56719df", + "start": { + "$date": "2022-06-15T23:26:19.000Z" + }, + "end": { + "$date": "2022-06-15T23:55:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "79bad863-006b-43a0-b703-35ca5e90e5f7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-15T23:46:37.000Z" + }, + "end": { + "$date": "2022-06-16T00:03:39.000Z" + }, + "events": [ + { + "uuid": "d6448d57-03e7-459b-9363-a4da349cff09", + "start": { + "$date": "2022-06-15T23:46:37.000Z" + }, + "end": { + "$date": "2022-06-16T00:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0e76b406-c0d5-4876-b041-054d1cc368e8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-16T00:51:06.000Z" + }, + "end": { + "$date": "2022-06-16T01:17:22.000Z" + }, + "events": [ + { + "uuid": "2df0f192-e5b4-4205-8f46-53cbbfecacbb", + "start": { + "$date": "2022-06-16T00:51:06.000Z" + }, + "end": { + "$date": "2022-06-16T01:17:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "86107fdd-e691-413a-92ad-f4b7e05e84a9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-16T01:07:16.000Z" + }, + "end": { + "$date": "2022-06-16T06:31:37.000Z" + }, + "events": [ + { + "uuid": "a31945fe-fbe7-4a1c-a245-410e316800ef", + "start": { + "$date": "2022-06-16T01:07:16.000Z" + }, + "end": { + "$date": "2022-06-16T01:54:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "69517aad-9fd9-4cf4-b524-5d43fb5b60de", + "start": { + "$date": "2022-06-16T01:54:16.000Z" + }, + "end": { + "$date": "2022-06-16T02:06:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "eccd5daf-da0b-495d-aa59-8de6bee82ac2", + "start": { + "$date": "2022-06-16T02:06:16.000Z" + }, + "end": { + "$date": "2022-06-16T02:16:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ef9ce93c-e31d-4599-920b-d93614769a8d", + "start": { + "$date": "2022-06-16T02:16:16.000Z" + }, + "end": { + "$date": "2022-06-16T02:18:16.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "be2d3515-d0c1-4109-aae0-23201620257b", + "start": { + "$date": "2022-06-16T02:18:16.000Z" + }, + "end": { + "$date": "2022-06-16T06:31:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c00e60f3-e483-456a-afae-18852b41b344", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T01:18:57.000Z" + }, + "end": { + "$date": "2022-06-16T01:19:57.000Z" + }, + "events": [ + { + "uuid": "3a739c5d-97ca-46c4-93c3-5d58bb3a6d87", + "start": { + "$date": "2022-06-16T01:18:57.000Z" + }, + "end": { + "$date": "2022-06-16T01:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "0e35d01b-57cc-4ad7-8248-d1958d563a61", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T01:21:18.000Z" + }, + "end": { + "$date": "2022-06-16T01:24:38.000Z" + }, + "events": [ + { + "uuid": "24c6b1a7-590a-470b-9c14-55b0f2ce740d", + "start": { + "$date": "2022-06-16T01:21:18.000Z" + }, + "end": { + "$date": "2022-06-16T01:24:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "0a275d7b-5aa5-490a-8357-69e7f06f4227", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T01:47:30.000Z" + }, + "end": { + "$date": "2022-06-16T02:45:34.000Z" + }, + "events": [ + { + "uuid": "b62d0b6d-84b5-435a-aa52-fe0e5f5bbbe5", + "start": { + "$date": "2022-06-16T01:47:30.000Z" + }, + "end": { + "$date": "2022-06-16T02:45:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "411cdbbd-1c0e-4901-b01d-00ef56077962", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-16T01:52:06.000Z" + }, + "end": { + "$date": "2022-06-16T02:59:12.000Z" + }, + "events": [ + { + "uuid": "9d5bd731-a538-4fcd-9dfc-31ec40f4da47", + "start": { + "$date": "2022-06-16T01:52:06.000Z" + }, + "end": { + "$date": "2022-06-16T02:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "be224a78-92dd-4a0a-a271-649a8cf317b5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-16T02:41:28.000Z" + }, + "end": { + "$date": "2022-06-16T02:50:58.000Z" + }, + "events": [ + { + "uuid": "e73a5220-690a-4615-981f-e207de2f44e8", + "start": { + "$date": "2022-06-16T02:41:28.000Z" + }, + "end": { + "$date": "2022-06-16T02:50:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "3b613243-90e0-4c8f-9ac6-d8e5f4fcaede", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-16T04:52:58.000Z" + }, + "end": { + "$date": "2022-06-16T05:05:54.000Z" + }, + "events": [ + { + "uuid": "95e0ef3d-7645-46ae-be90-37fccd7acc5e", + "start": { + "$date": "2022-06-16T04:52:58.000Z" + }, + "end": { + "$date": "2022-06-16T05:05:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a95c77d8-dfe8-4b3b-9e32-af1459d5b140", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-16T03:08:54.000Z" + }, + "end": { + "$date": "2022-06-16T04:22:35.000Z" + }, + "events": [ + { + "uuid": "c51b3d40-b413-4a05-b0b2-547453085a88", + "start": { + "$date": "2022-06-16T03:08:54.000Z" + }, + "end": { + "$date": "2022-06-16T04:22:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "16a21c00-0fbe-484e-9c42-ec5a950c011e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T03:11:57.000Z" + }, + "end": { + "$date": "2022-06-16T03:39:44.000Z" + }, + "events": [ + { + "uuid": "5f853ebd-b142-4840-99a3-3256eab8237e", + "start": { + "$date": "2022-06-16T03:11:57.000Z" + }, + "end": { + "$date": "2022-06-16T03:39:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "5c8972cd-2462-4f04-be88-ba6f23b818d8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-16T01:57:02.000Z" + }, + "end": { + "$date": "2022-06-16T05:39:34.000Z" + }, + "events": [ + { + "uuid": "8237900d-9ee1-4cfe-946b-c3957ad5038f", + "start": { + "$date": "2022-06-16T01:57:02.000Z" + }, + "end": { + "$date": "2022-06-16T05:39:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b322e8b4-e614-4c1b-96dd-eeb3c4e6c5ce", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T03:55:26.000Z" + }, + "end": { + "$date": "2022-06-16T04:44:01.000Z" + }, + "events": [ + { + "uuid": "b61ec14b-2c9a-4411-a292-46d3167a171e", + "start": { + "$date": "2022-06-16T03:55:26.000Z" + }, + "end": { + "$date": "2022-06-16T04:44:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "e1c09b51-2b77-4067-a245-a92473f96eef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-16T04:48:38.000Z" + }, + "end": { + "$date": "2022-06-16T04:53:08.000Z" + }, + "events": [ + { + "uuid": "765186af-5f97-47c6-ba5c-a9a5665c827b", + "start": { + "$date": "2022-06-16T04:48:38.000Z" + }, + "end": { + "$date": "2022-06-16T04:53:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "6545cfbe-1e03-41d2-91c7-ecabc39a101c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-16T05:06:10.000Z" + }, + "end": { + "$date": "2022-06-16T05:14:20.000Z" + }, + "events": [ + { + "uuid": "02ff41db-828b-4c7e-afcc-d8abbda78590", + "start": { + "$date": "2022-06-16T05:06:10.000Z" + }, + "end": { + "$date": "2022-06-16T05:14:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "95b00366-b054-4233-98bb-6dc1587c653f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-16T05:18:09.000Z" + }, + "end": { + "$date": "2022-06-16T05:36:56.000Z" + }, + "events": [ + { + "uuid": "8a4b0d4d-e2e5-4777-b913-c21263fd2cc9", + "start": { + "$date": "2022-06-16T05:18:09.000Z" + }, + "end": { + "$date": "2022-06-16T05:36:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3d988a18-e335-419b-8e3d-20bb0401de55", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T12:55:41.000Z" + }, + "end": { + "$date": "2022-06-16T13:01:37.000Z" + }, + "events": [ + { + "uuid": "5670df72-6ad5-4209-b51c-a800e1b8490b", + "start": { + "$date": "2022-06-16T12:55:41.000Z" + }, + "end": { + "$date": "2022-06-16T13:01:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "74371e59-bb85-4fab-8a83-70400605c595", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-16T13:03:12.000Z" + }, + "end": { + "$date": "2022-06-16T13:20:53.000Z" + }, + "events": [ + { + "uuid": "c1526bff-e8c5-4c08-b427-8ae904284b55", + "start": { + "$date": "2022-06-16T13:03:12.000Z" + }, + "end": { + "$date": "2022-06-16T13:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "63e0c218-69bc-4563-abac-3afe481586fc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-16T17:04:30.000Z" + }, + "end": { + "$date": "2022-06-16T17:25:21.000Z" + }, + "events": [ + { + "uuid": "e8241b27-c742-4e1a-a8c9-1b28df0e15c5", + "start": { + "$date": "2022-06-16T17:04:30.000Z" + }, + "end": { + "$date": "2022-06-16T17:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "90e3d822-637e-44f4-844d-4045d06c0e6b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-16T17:25:46.000Z" + }, + "end": { + "$date": "2022-06-16T17:30:01.000Z" + }, + "events": [ + { + "uuid": "9a4f1149-27cd-4766-b23d-c57d378d3b0f", + "start": { + "$date": "2022-06-16T17:25:46.000Z" + }, + "end": { + "$date": "2022-06-16T17:30:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dc64c7fa-7887-4403-994e-bc5c2ec60574", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-16T17:30:12.000Z" + }, + "end": { + "$date": "2022-06-16T18:39:58.000Z" + }, + "events": [ + { + "uuid": "f289cfe1-4643-4233-b014-6a2f16f19bba", + "start": { + "$date": "2022-06-16T17:30:12.000Z" + }, + "end": { + "$date": "2022-06-16T18:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "8e017bfe-5a01-4d01-8a85-03a901f39cc3", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-16T20:28:43.000Z" + }, + "end": { + "$date": "2022-06-16T20:51:17.000Z" + }, + "events": [ + { + "uuid": "da3f627d-7c87-41be-baf7-2510d3e6b14d", + "start": { + "$date": "2022-06-16T20:28:43.000Z" + }, + "end": { + "$date": "2022-06-16T20:51:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a08e41ad-c990-4899-ab73-a9d184be4d6d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-16T20:33:43.000Z" + }, + "end": { + "$date": "2022-06-16T20:58:52.000Z" + }, + "events": [ + { + "uuid": "4890029b-e5d0-4fda-8ee6-570d565b4e56", + "start": { + "$date": "2022-06-16T20:33:43.000Z" + }, + "end": { + "$date": "2022-06-16T20:58:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e584e07e-a06b-489b-bc39-7178208ac1ad", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-16T20:52:30.000Z" + }, + "end": { + "$date": "2022-06-16T21:40:17.000Z" + }, + "events": [ + { + "uuid": "c257d171-6695-4f34-9afa-3363a4a36091", + "start": { + "$date": "2022-06-16T20:52:30.000Z" + }, + "end": { + "$date": "2022-06-16T21:40:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "843fef3d-ee8e-45d2-857e-2da3f03274f9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-16T21:06:00.000Z" + }, + "end": { + "$date": "2022-06-16T21:51:23.000Z" + }, + "events": [ + { + "uuid": "51d9d5c0-10af-4fd0-9b46-737b597ab0a3", + "start": { + "$date": "2022-06-16T21:06:00.000Z" + }, + "end": { + "$date": "2022-06-16T21:51:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08144d17-a37c-4011-99b7-80a5afaf3762", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-16T21:58:31.000Z" + }, + "end": { + "$date": "2022-06-16T22:34:40.000Z" + }, + "events": [ + { + "uuid": "9c58b975-e110-4fe5-923b-c7306dc558e1", + "start": { + "$date": "2022-06-16T21:58:31.000Z" + }, + "end": { + "$date": "2022-06-16T22:34:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "82d5457e-91f9-4592-95ac-e9ea16fd7c53", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-16T22:57:37.000Z" + }, + "end": { + "$date": "2022-06-16T23:58:59.000Z" + }, + "events": [ + { + "uuid": "365fd404-cfc3-4719-b4db-d87c4d2a78c2", + "start": { + "$date": "2022-06-16T22:57:37.000Z" + }, + "end": { + "$date": "2022-06-16T23:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4b77caf3-c1d3-4de5-95e6-64ae9ef9ecd6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-16T23:36:15.000Z" + }, + "end": { + "$date": "2022-06-17T00:31:21.000Z" + }, + "events": [ + { + "uuid": "9af7a2f1-778e-4239-aa2b-6524d6ab487c", + "start": { + "$date": "2022-06-16T23:36:15.000Z" + }, + "end": { + "$date": "2022-06-17T00:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2e90c3b-2bf0-4fb0-a5f8-2ab5a2ad2367", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-17T00:31:21.000Z" + }, + "end": { + "$date": "2022-06-17T00:32:27.000Z" + }, + "events": [ + { + "uuid": "0aaf26c9-91fe-4e9d-8801-4a22750789ef", + "start": { + "$date": "2022-06-17T00:31:21.000Z" + }, + "end": { + "$date": "2022-06-17T00:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bd78bf25-0368-4005-9520-7892a5ea7b8a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T00:41:43.000Z" + }, + "end": { + "$date": "2022-06-17T01:23:36.000Z" + }, + "events": [ + { + "uuid": "c4241b9b-5f83-41fa-9a71-4cbabd1856d6", + "start": { + "$date": "2022-06-17T00:41:43.000Z" + }, + "end": { + "$date": "2022-06-17T01:23:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5c70a0b6-5f4d-4103-ae13-a78bed580028", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-17T01:00:58.000Z" + }, + "end": { + "$date": "2022-06-17T01:01:59.000Z" + }, + "events": [ + { + "uuid": "9270d6c1-e2ef-4cbc-a3a7-852f49003da2", + "start": { + "$date": "2022-06-17T01:00:58.000Z" + }, + "end": { + "$date": "2022-06-17T01:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f732872d-a884-4d5b-9ce1-5eb18cfe80dd", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T01:29:04.000Z" + }, + "end": { + "$date": "2022-06-17T05:07:45.000Z" + }, + "events": [ + { + "uuid": "636d4f10-eb9b-4e32-87f2-51b839780d58", + "start": { + "$date": "2022-06-17T01:29:04.000Z" + }, + "end": { + "$date": "2022-06-17T05:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6ed209f-1382-4892-b18b-929340506a75", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-17T01:43:11.000Z" + }, + "end": { + "$date": "2022-06-17T03:11:28.000Z" + }, + "events": [ + { + "uuid": "83507aad-ccca-432d-8ca4-fcdefe9db58c", + "start": { + "$date": "2022-06-17T01:43:11.000Z" + }, + "end": { + "$date": "2022-06-17T03:11:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6b339348-fdaa-4c27-bcdb-ed2c00dac9fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-17T01:42:55.000Z" + }, + "end": { + "$date": "2022-06-17T02:23:19.000Z" + }, + "events": [ + { + "uuid": "88df317c-ec96-4526-9e9f-41858eb8c3db", + "start": { + "$date": "2022-06-17T01:42:55.000Z" + }, + "end": { + "$date": "2022-06-17T02:23:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "159c7293-9dbe-485b-889f-43590a834795", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-17T02:23:05.000Z" + }, + "end": { + "$date": "2022-06-17T05:08:10.000Z" + }, + "events": [ + { + "uuid": "fc0caff9-e03d-4115-b940-faec9f30c4cd", + "start": { + "$date": "2022-06-17T02:23:05.000Z" + }, + "end": { + "$date": "2022-06-17T05:08:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "30820674-c017-42e3-a3c8-651f3e25fbaa", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-17T02:26:36.000Z" + }, + "end": { + "$date": "2022-06-17T07:33:23.000Z" + }, + "events": [ + { + "uuid": "b5eae50f-4307-4ccc-bc2a-f6a966ed7eaf", + "start": { + "$date": "2022-06-17T02:26:36.000Z" + }, + "end": { + "$date": "2022-06-17T07:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8a811b85-39bf-4906-a6cd-6339bdbd6d97", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-17T02:29:59.000Z" + }, + "end": { + "$date": "2022-06-17T04:31:18.000Z" + }, + "events": [ + { + "uuid": "f390adf2-e1a7-40b5-9519-dd77058bc357", + "start": { + "$date": "2022-06-17T02:29:59.000Z" + }, + "end": { + "$date": "2022-06-17T04:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6923092b-6423-4e4c-a281-55e433bccdcb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-17T02:31:24.000Z" + }, + "end": { + "$date": "2022-06-17T05:08:06.000Z" + }, + "events": [ + { + "uuid": "5377226e-eacf-4a43-aed6-cecc192009b8", + "start": { + "$date": "2022-06-17T02:31:24.000Z" + }, + "end": { + "$date": "2022-06-17T05:08:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ddafe998-95cb-463e-b4cd-e6267b24235c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-17T02:40:27.000Z" + }, + "end": { + "$date": "2022-06-17T02:44:22.000Z" + }, + "events": [ + { + "uuid": "29aa4613-6d29-4f02-bc0d-398cdfd0cf23", + "start": { + "$date": "2022-06-17T02:40:27.000Z" + }, + "end": { + "$date": "2022-06-17T02:44:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "a414ab87-47d6-4fb8-827e-73a7a0785aea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-17T02:54:26.000Z" + }, + "end": { + "$date": "2022-06-17T03:07:34.000Z" + }, + "events": [ + { + "uuid": "95e9a078-ded2-49ae-a863-62806a4ef027", + "start": { + "$date": "2022-06-17T02:54:26.000Z" + }, + "end": { + "$date": "2022-06-17T03:07:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "104872f9-ecfd-4e6b-b9de-1217ab9a6d2e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-17T03:07:04.000Z" + }, + "end": { + "$date": "2022-06-17T07:14:05.000Z" + }, + "events": [ + { + "uuid": "9fc6557f-a5f0-4a9b-92cd-a13deac06edf", + "start": { + "$date": "2022-06-17T03:07:04.000Z" + }, + "end": { + "$date": "2022-06-17T07:14:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ee2b887f-9ab9-4093-87a1-ffbfb361a50c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-17T03:08:39.000Z" + }, + "end": { + "$date": "2022-06-17T04:13:17.000Z" + }, + "events": [ + { + "uuid": "f9c7ca94-b4e0-4e8f-906d-52bc2ec0e199", + "start": { + "$date": "2022-06-17T03:08:39.000Z" + }, + "end": { + "$date": "2022-06-17T04:13:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6f2081aa-755b-47e8-8aa3-a94c556117bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-17T03:11:42.000Z" + }, + "end": { + "$date": "2022-06-17T04:13:14.000Z" + }, + "events": [ + { + "uuid": "3513fcaa-aa31-4884-83cb-11c1861346c1", + "start": { + "$date": "2022-06-17T03:11:42.000Z" + }, + "end": { + "$date": "2022-06-17T04:13:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "16a651f9-1581-4579-a81b-40cc2e53b5f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-17T03:32:00.000Z" + }, + "end": { + "$date": "2022-06-17T04:29:21.000Z" + }, + "events": [ + { + "uuid": "fc9aed24-84b8-4060-8880-5245900fd7e7", + "start": { + "$date": "2022-06-17T03:32:00.000Z" + }, + "end": { + "$date": "2022-06-17T04:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "d998d1f9-c5bf-4228-8e94-95d834f4c004", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-17T03:49:55.000Z" + }, + "end": { + "$date": "2022-06-17T06:06:03.000Z" + }, + "events": [ + { + "uuid": "e605c8a2-f70e-4c17-bdbb-5b24dfcf1c79", + "start": { + "$date": "2022-06-17T03:49:55.000Z" + }, + "end": { + "$date": "2022-06-17T06:06:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "6e76d746-fd73-445f-924f-89eb1b617b3d", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-17T04:02:57.000Z" + }, + "end": { + "$date": "2022-06-17T07:52:32.000Z" + }, + "events": [ + { + "uuid": "fe231f7c-6652-4fad-a6cb-c441ce459f81", + "start": { + "$date": "2022-06-17T04:02:57.000Z" + }, + "end": { + "$date": "2022-06-17T07:52:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2d114f0b-6809-4571-86b1-951b512d1c68", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-17T04:14:14.000Z" + }, + "end": { + "$date": "2022-06-17T06:15:10.000Z" + }, + "events": [ + { + "uuid": "a3c49728-aa77-40f1-b2b5-c5bdf9520970", + "start": { + "$date": "2022-06-17T04:14:14.000Z" + }, + "end": { + "$date": "2022-06-17T06:15:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "640927d7-dcbb-4fff-981e-62e3fb548421", + "uuid": "ec40ae6d-7671-4290-803b-f471df74fd39", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-17T04:45:08.000Z" + }, + "end": { + "$date": "2022-06-17T06:01:09.000Z" + }, + "events": [ + { + "uuid": "964d0f22-d9cb-44fb-bee5-346b2c2dee6f", + "start": { + "$date": "2022-06-17T04:45:08.000Z" + }, + "end": { + "$date": "2022-06-17T06:01:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "397904e1-7738-446d-9906-80f81b0ed5ba", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T05:23:21.000Z" + }, + "end": { + "$date": "2022-06-17T05:33:02.000Z" + }, + "events": [ + { + "uuid": "cd82c783-7db7-4d97-b98a-281eebf31933", + "start": { + "$date": "2022-06-17T05:23:21.000Z" + }, + "end": { + "$date": "2022-06-17T05:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "74c9cb26-105a-42b9-909c-71146a212c6f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T05:33:47.000Z" + }, + "end": { + "$date": "2022-06-17T05:37:08.000Z" + }, + "events": [ + { + "uuid": "98574e73-8736-464a-bc49-045a237a75ad", + "start": { + "$date": "2022-06-17T05:33:47.000Z" + }, + "end": { + "$date": "2022-06-17T05:37:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "333c770a-90c3-44bd-96f7-ff5951f65011", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T05:39:28.000Z" + }, + "end": { + "$date": "2022-06-17T06:32:46.000Z" + }, + "events": [ + { + "uuid": "63624eb6-d3aa-458e-beae-31ca3707ff0d", + "start": { + "$date": "2022-06-17T05:39:28.000Z" + }, + "end": { + "$date": "2022-06-17T06:32:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c89ed61-3f07-42df-a633-1272d7f37472", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-17T18:05:45.000Z" + }, + "end": { + "$date": "2022-06-17T18:44:20.000Z" + }, + "events": [ + { + "uuid": "8d861b30-de65-4cc0-8083-466ef099a78d", + "start": { + "$date": "2022-06-17T18:05:45.000Z" + }, + "end": { + "$date": "2022-06-17T18:44:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "850f553f-725e-4e82-b7c9-c2026a2b1799", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T18:33:49.000Z" + }, + "end": { + "$date": "2022-06-17T18:50:32.000Z" + }, + "events": [ + { + "uuid": "7aa262bc-6e23-4ac4-b178-4f07af3fb4a8", + "start": { + "$date": "2022-06-17T18:33:49.000Z" + }, + "end": { + "$date": "2022-06-17T18:50:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "0cf7fcc0-110f-4ceb-a72c-037d8185b8b7", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T19:02:21.000Z" + }, + "end": { + "$date": "2022-06-17T19:26:49.000Z" + }, + "events": [ + { + "uuid": "3e1155af-e5a5-4912-bfef-35a0a56f0b99", + "start": { + "$date": "2022-06-17T19:02:21.000Z" + }, + "end": { + "$date": "2022-06-17T19:26:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3db7502d-d83e-4965-9a87-269eb34f7b38", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T20:20:08.000Z" + }, + "end": { + "$date": "2022-06-17T21:19:48.000Z" + }, + "events": [ + { + "uuid": "a17c754d-d0ad-4a07-802f-92c37f0e2b35", + "start": { + "$date": "2022-06-17T20:20:08.000Z" + }, + "end": { + "$date": "2022-06-17T21:19:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ced8d1dd-fc84-47f8-93bf-e3d952fb7f40", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-17T20:53:39.000Z" + }, + "end": { + "$date": "2022-06-17T21:05:52.000Z" + }, + "events": [ + { + "uuid": "1f9a8f20-3f23-49c8-8d1d-dc46991674b1", + "start": { + "$date": "2022-06-17T20:53:39.000Z" + }, + "end": { + "$date": "2022-06-17T21:05:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "508fc03f-a510-4279-abd0-c46813de950a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-17T21:45:35.000Z" + }, + "end": { + "$date": "2022-06-17T21:45:40.000Z" + }, + "events": [ + { + "uuid": "5f94d7f6-248a-4ac4-b4de-315efdc1a488", + "start": { + "$date": "2022-06-17T21:45:35.000Z" + }, + "end": { + "$date": "2022-06-17T21:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "9e8ce7f0-3629-490f-a014-891f64907c08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-17T23:04:58.000Z" + }, + "end": { + "$date": "2022-06-18T00:06:15.000Z" + }, + "events": [ + { + "uuid": "764e785c-6383-4dda-87fe-4f01badb7fe2", + "start": { + "$date": "2022-06-17T23:04:58.000Z" + }, + "end": { + "$date": "2022-06-17T23:20:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "80c3fb94-3f06-4e51-9617-2ffb2c3fcdfc", + "start": { + "$date": "2022-06-17T23:20:58.000Z" + }, + "end": { + "$date": "2022-06-17T23:32:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fb7d4fe4-d09b-4333-8167-a57dfb06456f", + "start": { + "$date": "2022-06-17T23:32:58.000Z" + }, + "end": { + "$date": "2022-06-18T00:06:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "6d283781-63d1-4743-971e-04def26dee59", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-17T23:17:32.000Z" + }, + "end": { + "$date": "2022-06-18T00:09:43.000Z" + }, + "events": [ + { + "uuid": "7cd29b2a-ad46-430a-afbb-26b7d7ff5984", + "start": { + "$date": "2022-06-17T23:17:32.000Z" + }, + "end": { + "$date": "2022-06-18T00:09:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "14ded2e9-641e-4de7-a160-ec143d9e60f2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T00:04:48.000Z" + }, + "end": { + "$date": "2022-06-18T01:22:56.000Z" + }, + "events": [ + { + "uuid": "344a8d36-a353-46b1-ac67-741a6ef27a69", + "start": { + "$date": "2022-06-18T00:04:48.000Z" + }, + "end": { + "$date": "2022-06-18T01:22:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "52a69ca7-4dd0-4914-8999-b8acc26c2017", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-18T00:09:58.000Z" + }, + "end": { + "$date": "2022-06-18T01:13:04.000Z" + }, + "events": [ + { + "uuid": "0b471779-c49c-4c62-9416-9c011821c082", + "start": { + "$date": "2022-06-18T00:09:58.000Z" + }, + "end": { + "$date": "2022-06-18T01:13:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7952bc91-773c-4220-a309-716531ff2551", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-18T01:28:51.000Z" + }, + "end": { + "$date": "2022-06-18T02:04:44.000Z" + }, + "events": [ + { + "uuid": "2262e1f1-2857-4c71-abfa-40138189bb5f", + "start": { + "$date": "2022-06-18T01:28:51.000Z" + }, + "end": { + "$date": "2022-06-18T02:04:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "e7319655-31de-4478-84f3-4356f12d0d1a", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-18T01:59:32.000Z" + }, + "end": { + "$date": "2022-06-18T02:05:36.000Z" + }, + "events": [ + { + "uuid": "1b6b2824-703a-4f7a-86a9-5a753695b6bf", + "start": { + "$date": "2022-06-18T01:59:32.000Z" + }, + "end": { + "$date": "2022-06-18T02:05:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "756c5dca-43cf-44d1-b949-721f6e7fd49b", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-18T02:07:29.000Z" + }, + "end": { + "$date": "2022-06-18T02:11:07.000Z" + }, + "events": [ + { + "uuid": "0ec23164-a9b3-4061-90f3-f19d05c38f09", + "start": { + "$date": "2022-06-18T02:07:29.000Z" + }, + "end": { + "$date": "2022-06-18T02:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "dab313fb-85ad-488a-a9ee-7f0da7bd714c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-18T02:32:34.000Z" + }, + "end": { + "$date": "2022-06-18T02:49:51.000Z" + }, + "events": [ + { + "uuid": "a789dac3-a6f5-47d0-bf88-548616529815", + "start": { + "$date": "2022-06-18T02:32:34.000Z" + }, + "end": { + "$date": "2022-06-18T02:49:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "2050feb7-a9a1-4b7c-bff5-cbd0b63cd7ec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-18T02:42:41.000Z" + }, + "end": { + "$date": "2022-06-18T04:12:26.000Z" + }, + "events": [ + { + "uuid": "f04fec40-6a7d-469e-b08c-1397a87d7d9a", + "start": { + "$date": "2022-06-18T02:42:41.000Z" + }, + "end": { + "$date": "2022-06-18T04:12:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "8f4fdec0-de2d-4f9b-8eb9-0b447b073bee", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-18T03:43:28.000Z" + }, + "end": { + "$date": "2022-06-18T06:28:58.000Z" + }, + "events": [ + { + "uuid": "26cc7887-e219-4cee-83ee-91d0eb52b57f", + "start": { + "$date": "2022-06-18T03:43:28.000Z" + }, + "end": { + "$date": "2022-06-18T06:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "b161ddf3-5129-486f-a1c5-af719fc238ba", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-18T03:52:14.000Z" + }, + "end": { + "$date": "2022-06-18T06:24:21.000Z" + }, + "events": [ + { + "uuid": "2adc23c6-60c6-4771-821b-f0339ba59ecd", + "start": { + "$date": "2022-06-18T03:52:14.000Z" + }, + "end": { + "$date": "2022-06-18T06:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "c73a82cb-cdcc-4316-8c61-776522b3e9ec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-18T04:27:16.000Z" + }, + "end": { + "$date": "2022-06-18T04:47:47.000Z" + }, + "events": [ + { + "uuid": "7004510f-afdf-498e-afeb-77202f8b5f99", + "start": { + "$date": "2022-06-18T04:27:16.000Z" + }, + "end": { + "$date": "2022-06-18T04:47:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "b63dc53f-8353-4616-89c3-7a7bc272da5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-18T04:47:52.000Z" + }, + "end": { + "$date": "2022-06-18T05:05:28.000Z" + }, + "events": [ + { + "uuid": "d1ff2552-a108-450c-bdd5-3af5dbfdf759", + "start": { + "$date": "2022-06-18T04:47:52.000Z" + }, + "end": { + "$date": "2022-06-18T05:05:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "3bc93a29-12cf-40e6-86bd-1779ffa3177c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-18T04:53:05.000Z" + }, + "end": { + "$date": "2022-06-18T05:25:06.000Z" + }, + "events": [ + { + "uuid": "20da8f1f-9c36-4c15-b084-d732cc9659a7", + "start": { + "$date": "2022-06-18T04:53:05.000Z" + }, + "end": { + "$date": "2022-06-18T05:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "d4525117-51cd-4993-b489-e6ea0e8a86c5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-18T06:29:28.000Z" + }, + "end": { + "$date": "2022-06-18T06:47:23.000Z" + }, + "events": [ + { + "uuid": "7dd2da2e-890b-484d-b9a6-c3ba9cc3172b", + "start": { + "$date": "2022-06-18T06:29:28.000Z" + }, + "end": { + "$date": "2022-06-18T06:47:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a64aa1a1-5a39-467e-8b05-753b57b039c1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-18T12:59:07.000Z" + }, + "end": { + "$date": "2022-06-18T13:32:34.000Z" + }, + "events": [ + { + "uuid": "9b589afe-ad74-49c0-9ac6-31173e05dccc", + "start": { + "$date": "2022-06-18T12:59:07.000Z" + }, + "end": { + "$date": "2022-06-18T13:32:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "da32f743-6f23-48c6-b735-dd8f9c42ae81", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-18T13:35:34.000Z" + }, + "end": { + "$date": "2022-06-18T13:56:25.000Z" + }, + "events": [ + { + "uuid": "408fc3c7-b798-4c84-8227-b622a8843355", + "start": { + "$date": "2022-06-18T13:35:34.000Z" + }, + "end": { + "$date": "2022-06-18T13:56:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "95d9c21c-250a-4007-b2aa-01fa43fc464e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T18:29:12.000Z" + }, + "end": { + "$date": "2022-06-18T18:29:21.000Z" + }, + "events": [ + { + "uuid": "2359f405-aa67-4622-b82f-da1c35256cf7", + "start": { + "$date": "2022-06-18T18:29:12.000Z" + }, + "end": { + "$date": "2022-06-18T18:29:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "f5418e8c-e51b-4278-a1c3-d90716fe761c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-18T14:51:19.000Z" + }, + "end": { + "$date": "2022-06-18T18:57:53.000Z" + }, + "events": [ + { + "uuid": "2a47b1e6-752d-491e-947a-93b64b88a6d3", + "start": { + "$date": "2022-06-18T14:51:19.000Z" + }, + "end": { + "$date": "2022-06-18T18:57:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "3ae44568-12df-479d-b576-42a3eb28f4d3", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-18T15:01:44.000Z" + }, + "end": { + "$date": "2022-06-18T17:57:13.000Z" + }, + "events": [ + { + "uuid": "c29e48ec-978d-4556-a5e6-6755bbb6cdc6", + "start": { + "$date": "2022-06-18T15:01:44.000Z" + }, + "end": { + "$date": "2022-06-18T17:57:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03a31878-f452-407c-8fcb-50532c23c03e", + "uuid": "c70ac263-4ec7-453b-b8e5-0641d4dcccb0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-18T15:55:00.000Z" + }, + "end": { + "$date": "2022-06-18T16:26:17.000Z" + }, + "events": [ + { + "uuid": "26facf68-57c6-41fd-b9b5-5c3cb1c5a517", + "start": { + "$date": "2022-06-18T15:55:00.000Z" + }, + "end": { + "$date": "2022-06-18T16:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "51c2cc17-53c5-4360-8ed6-14f2ca1b071b", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-18T18:26:20.000Z" + }, + "end": { + "$date": "2022-06-18T19:04:49.000Z" + }, + "events": [ + { + "uuid": "4fae8b9b-53fa-4749-b86c-679e8f175e05", + "start": { + "$date": "2022-06-18T18:26:20.000Z" + }, + "end": { + "$date": "2022-06-18T19:04:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c7c253e3-f0e6-446e-aaa4-ed082ecab669", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-18T18:27:03.000Z" + }, + "end": { + "$date": "2022-06-18T18:49:28.000Z" + }, + "events": [ + { + "uuid": "ca245a51-f1fd-42e5-a902-e75dccce3936", + "start": { + "$date": "2022-06-18T18:27:03.000Z" + }, + "end": { + "$date": "2022-06-18T18:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b6cf9da0-f0a8-4c7c-a624-b7db16a33d1d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T19:43:19.000Z" + }, + "end": { + "$date": "2022-06-18T20:22:17.000Z" + }, + "events": [ + { + "uuid": "24aad97b-adda-486c-a8aa-f86feaf0e850", + "start": { + "$date": "2022-06-18T19:43:19.000Z" + }, + "end": { + "$date": "2022-06-18T20:22:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c812521a-1b3c-4dd7-8db0-dd2b192efeb0", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-18T20:27:26.000Z" + }, + "end": { + "$date": "2022-06-18T21:33:52.000Z" + }, + "events": [ + { + "uuid": "27f49755-7c46-45de-905d-3f33be7015cc", + "start": { + "$date": "2022-06-18T20:27:26.000Z" + }, + "end": { + "$date": "2022-06-18T21:33:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1268c14d-9687-4fbb-a529-3b8495ba854b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-06-18T20:40:40.000Z" + }, + "end": { + "$date": "2022-06-18T21:34:45.000Z" + }, + "events": [ + { + "uuid": "f2a55e94-0cc6-42bd-b013-c66ff4af6d8a", + "start": { + "$date": "2022-06-18T20:40:40.000Z" + }, + "end": { + "$date": "2022-06-18T21:34:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "dd206226-3570-4f84-96b2-e3b207b551f6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-18T21:09:15.000Z" + }, + "end": { + "$date": "2022-06-18T21:45:19.000Z" + }, + "events": [ + { + "uuid": "a949c35e-3427-46b9-9f25-207664e7d50e", + "start": { + "$date": "2022-06-18T21:09:15.000Z" + }, + "end": { + "$date": "2022-06-18T21:45:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "53dab6c5-38c2-459c-a6b5-f18b4c3ebd49", + "uuid": "9b848baa-1ec5-4bc0-9332-c274155194e2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T22:07:59.000Z" + }, + "end": { + "$date": "2022-06-18T22:16:33.000Z" + }, + "events": [ + { + "uuid": "6ae26725-4bf8-43ac-b227-3d34684062b7", + "start": { + "$date": "2022-06-18T22:07:59.000Z" + }, + "end": { + "$date": "2022-06-18T22:16:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a473d4f0-8290-41db-8c11-f854f96a0c52", + "uuid": "75ad2e50-5730-46c8-a588-72fb24cfb936", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T22:18:34.000Z" + }, + "end": { + "$date": "2022-06-18T22:32:45.000Z" + }, + "events": [ + { + "uuid": "27557841-b61c-4d2f-8966-9adce93d15e6", + "start": { + "$date": "2022-06-18T22:18:34.000Z" + }, + "end": { + "$date": "2022-06-18T22:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a473d4f0-8290-41db-8c11-f854f96a0c52", + "uuid": "4fe203f6-6e20-41cd-88fa-db5020b750bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T22:42:57.000Z" + }, + "end": { + "$date": "2022-06-18T23:24:12.000Z" + }, + "events": [ + { + "uuid": "bd6e0bb5-ed94-4125-8bb2-d6fabc2c7482", + "start": { + "$date": "2022-06-18T22:42:57.000Z" + }, + "end": { + "$date": "2022-06-18T23:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "58479688-27e4-4e31-b906-5be07b5d889b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-18T23:16:12.000Z" + }, + "end": { + "$date": "2022-06-18T23:43:48.000Z" + }, + "events": [ + { + "uuid": "34a96c32-fe0d-43e6-b4d0-ed6c2f82cab8", + "start": { + "$date": "2022-06-18T23:16:12.000Z" + }, + "end": { + "$date": "2022-06-18T23:43:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cc908208-e345-4578-b524-03d13f0e823a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-18T23:25:58.000Z" + }, + "end": { + "$date": "2022-06-19T00:45:44.000Z" + }, + "events": [ + { + "uuid": "d8312ea8-f508-4a9f-b1d7-83828f481cff", + "start": { + "$date": "2022-06-18T23:25:58.000Z" + }, + "end": { + "$date": "2022-06-19T00:45:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", + "uuid": "7680816c-7622-4407-9c21-76820975f6b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-18T23:52:59.000Z" + }, + "end": { + "$date": "2022-06-18T23:57:59.000Z" + }, + "events": [ + { + "uuid": "de5d65ca-ff29-4f42-9a24-b40e801c69b9", + "start": { + "$date": "2022-06-18T23:52:59.000Z" + }, + "end": { + "$date": "2022-06-18T23:57:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "bf6301c4-251a-4c76-9671-6ee4f15c65fd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-19T00:57:16.000Z" + }, + "end": { + "$date": "2022-06-19T01:28:39.000Z" + }, + "events": [ + { + "uuid": "549230e7-250c-4f78-b8eb-d020fcd11bd3", + "start": { + "$date": "2022-06-19T00:57:16.000Z" + }, + "end": { + "$date": "2022-06-19T01:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "34fb58f8-df77-422d-ac2e-59eda415ab42", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-19T00:21:24.000Z" + }, + "end": { + "$date": "2022-06-19T00:22:55.000Z" + }, + "events": [ + { + "uuid": "884da841-7a0d-4faf-a8d6-32f73a0e7030", + "start": { + "$date": "2022-06-19T00:21:24.000Z" + }, + "end": { + "$date": "2022-06-19T00:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "282179e4-6f49-4378-bbd5-18541d880c29", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-19T00:24:24.000Z" + }, + "end": { + "$date": "2022-06-19T00:56:17.000Z" + }, + "events": [ + { + "uuid": "be5dfe2b-269a-4693-b219-be4e367abc94", + "start": { + "$date": "2022-06-19T00:24:24.000Z" + }, + "end": { + "$date": "2022-06-19T00:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "0f1544ba-5a6a-4ee6-8e44-a270d50ec994", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-19T00:47:32.000Z" + }, + "end": { + "$date": "2022-06-19T01:26:32.000Z" + }, + "events": [ + { + "uuid": "f62e4432-9202-416e-b891-c508357c9b34", + "start": { + "$date": "2022-06-19T00:47:32.000Z" + }, + "end": { + "$date": "2022-06-19T01:26:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8aba43fe-5075-4481-b5c1-414314978bf8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-19T00:49:37.000Z" + }, + "end": { + "$date": "2022-06-19T01:29:09.000Z" + }, + "events": [ + { + "uuid": "c087ad0a-e9f5-4430-bfcd-9c088a665169", + "start": { + "$date": "2022-06-19T00:49:37.000Z" + }, + "end": { + "$date": "2022-06-19T01:29:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3ce6a1b2-2a67-4377-8ed2-7974ad321630", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-19T00:57:51.000Z" + }, + "end": { + "$date": "2022-06-19T00:59:12.000Z" + }, + "events": [ + { + "uuid": "cc70e57a-831d-4a18-9ed6-55fd04d6fea5", + "start": { + "$date": "2022-06-19T00:57:51.000Z" + }, + "end": { + "$date": "2022-06-19T00:59:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "05e0ba22-b934-46a5-9392-5118aaa95d64", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-19T00:59:36.000Z" + }, + "end": { + "$date": "2022-06-19T01:28:38.000Z" + }, + "events": [ + { + "uuid": "ebe210d2-3f14-41a2-aa9c-9bb01386c9cf", + "start": { + "$date": "2022-06-19T00:59:36.000Z" + }, + "end": { + "$date": "2022-06-19T01:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51f84cce-755a-495b-970f-7a886c01186d", + "uuid": "713570f8-24d3-4bca-838c-997cd157f1ee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T01:32:49.000Z" + }, + "end": { + "$date": "2022-06-19T01:32:54.000Z" + }, + "events": [ + { + "uuid": "c25587ff-bcdd-478f-a9b2-664e40f45456", + "start": { + "$date": "2022-06-19T01:32:49.000Z" + }, + "end": { + "$date": "2022-06-19T01:32:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "debf2e4e-2426-4c18-ab57-babb02387272", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-19T01:29:03.000Z" + }, + "end": { + "$date": "2022-06-19T01:36:38.000Z" + }, + "events": [ + { + "uuid": "d87474d2-46f6-4026-898c-35ea148bf6f7", + "start": { + "$date": "2022-06-19T01:29:03.000Z" + }, + "end": { + "$date": "2022-06-19T01:36:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "933658ba-3ec9-4709-ba8a-132845b69719", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-19T01:29:17.000Z" + }, + "end": { + "$date": "2022-06-19T01:39:40.000Z" + }, + "events": [ + { + "uuid": "6db28e95-5371-4ec2-9ea0-d3ea72cc6426", + "start": { + "$date": "2022-06-19T01:29:17.000Z" + }, + "end": { + "$date": "2022-06-19T01:39:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f778bcc6-099e-42cd-930d-df100979a4f7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-19T01:29:44.000Z" + }, + "end": { + "$date": "2022-06-19T01:39:35.000Z" + }, + "events": [ + { + "uuid": "d330a829-6c96-432a-8ee1-967489ff88c7", + "start": { + "$date": "2022-06-19T01:29:44.000Z" + }, + "end": { + "$date": "2022-06-19T01:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "51f84cce-755a-495b-970f-7a886c01186d", + "uuid": "a102fb15-8fe8-49c0-b2a5-04636040d58d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T01:33:04.000Z" + }, + "end": { + "$date": "2022-06-19T02:37:31.000Z" + }, + "events": [ + { + "uuid": "18347ad9-5ccf-48e9-ac76-4697865a4c31", + "start": { + "$date": "2022-06-19T01:33:04.000Z" + }, + "end": { + "$date": "2022-06-19T02:37:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "33a416de-5c63-429f-b4eb-b560741f79d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-19T01:33:34.000Z" + }, + "end": { + "$date": "2022-06-19T01:51:54.000Z" + }, + "events": [ + { + "uuid": "1565a861-5ff5-4530-8491-d56c8891f05d", + "start": { + "$date": "2022-06-19T01:33:34.000Z" + }, + "end": { + "$date": "2022-06-19T01:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "c57ccd53-700b-4424-ae27-68be0228f589", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-19T01:36:58.000Z" + }, + "end": { + "$date": "2022-06-19T02:27:36.000Z" + }, + "events": [ + { + "uuid": "5782c427-cf4e-4090-ad97-87b4ded1fdea", + "start": { + "$date": "2022-06-19T01:36:58.000Z" + }, + "end": { + "$date": "2022-06-19T02:27:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "83f1e167-db4e-4b0d-88fe-e8545f84927b", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-19T03:30:06.000Z" + }, + "end": { + "$date": "2022-06-19T04:03:08.000Z" + }, + "events": [ + { + "uuid": "44c6e324-30de-417c-ad39-dde53ff3bb21", + "start": { + "$date": "2022-06-19T03:30:06.000Z" + }, + "end": { + "$date": "2022-06-19T04:03:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "987a4fed-9b09-4331-a5c5-a3a3b0adb1ab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-19T05:08:47.000Z" + }, + "end": { + "$date": "2022-06-19T06:03:00.000Z" + }, + "events": [ + { + "uuid": "09cb785f-5c1e-428a-9764-87eeafb40cad", + "start": { + "$date": "2022-06-19T05:08:47.000Z" + }, + "end": { + "$date": "2022-06-19T06:03:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "750ea45e-fcee-4666-b0c3-578818f4b8a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T13:29:06.000Z" + }, + "end": { + "$date": "2022-06-19T14:00:27.000Z" + }, + "events": [ + { + "uuid": "828742d7-2386-4efb-a55c-a6079eaba28a", + "start": { + "$date": "2022-06-19T13:29:06.000Z" + }, + "end": { + "$date": "2022-06-19T14:00:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "9cadba19-8b05-4dda-a2ea-35b6806c3793", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T14:03:28.000Z" + }, + "end": { + "$date": "2022-06-19T15:33:49.000Z" + }, + "events": [ + { + "uuid": "5c80ec50-5bcb-4bc3-b7b8-187e21d4cf5f", + "start": { + "$date": "2022-06-19T14:03:28.000Z" + }, + "end": { + "$date": "2022-06-19T15:22:28.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7942f031-6c30-4d81-8eee-75311d2b954a", + "start": { + "$date": "2022-06-19T15:22:28.000Z" + }, + "end": { + "$date": "2022-06-19T15:33:49.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "ce74925e-bd51-47c0-b69d-436f07c0e274", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-19T14:26:34.000Z" + }, + "end": { + "$date": "2022-06-19T14:37:00.000Z" + }, + "events": [ + { + "uuid": "22fcadd2-f9a5-4d8c-9821-445bd46e34dd", + "start": { + "$date": "2022-06-19T14:26:34.000Z" + }, + "end": { + "$date": "2022-06-19T14:37:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "5eeba362-9f2b-470b-ba37-69017d79f6f4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-19T16:54:58.000Z" + }, + "end": { + "$date": "2022-06-19T17:22:13.000Z" + }, + "events": [ + { + "uuid": "d94fc1ce-946d-4367-ae70-71f181bf8ae3", + "start": { + "$date": "2022-06-19T16:54:58.000Z" + }, + "end": { + "$date": "2022-06-19T17:22:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d2af80fa-7b2a-4ebb-8a4e-1ef572c58bf0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T17:07:35.000Z" + }, + "end": { + "$date": "2022-06-19T18:39:13.000Z" + }, + "events": [ + { + "uuid": "6fc07b67-51de-4b21-8428-df85224b9961", + "start": { + "$date": "2022-06-19T17:07:35.000Z" + }, + "end": { + "$date": "2022-06-19T18:39:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d1e9b128-4d5d-45de-8572-a8046bb4e350", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-19T17:20:48.000Z" + }, + "end": { + "$date": "2022-06-19T18:07:21.000Z" + }, + "events": [ + { + "uuid": "ef4907bf-dc0e-44bb-b9c3-31d16278a8f7", + "start": { + "$date": "2022-06-19T17:20:48.000Z" + }, + "end": { + "$date": "2022-06-19T18:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "ee8cd4e9-6fec-4482-9ac8-c2e98b648e99", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-19T17:26:14.000Z" + }, + "end": { + "$date": "2022-06-19T17:46:30.000Z" + }, + "events": [ + { + "uuid": "fb1e5f28-7360-4628-b3be-aa11f36c1db7", + "start": { + "$date": "2022-06-19T17:26:14.000Z" + }, + "end": { + "$date": "2022-06-19T17:46:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "73827b04-36f4-4264-a45f-04119d0905c2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T18:55:00.000Z" + }, + "end": { + "$date": "2022-06-19T20:29:07.000Z" + }, + "events": [ + { + "uuid": "b5c9a32b-7ce2-4c33-a98a-3c53fb75edba", + "start": { + "$date": "2022-06-19T18:55:00.000Z" + }, + "end": { + "$date": "2022-06-19T19:23:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8e7deab3-61e3-4708-b835-2384486c02b4", + "start": { + "$date": "2022-06-19T19:23:00.000Z" + }, + "end": { + "$date": "2022-06-19T20:21:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "107d5f42-d2b5-4a94-9d67-d76a7a00c982", + "start": { + "$date": "2022-06-19T20:21:00.000Z" + }, + "end": { + "$date": "2022-06-19T20:29:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "606fa2ae-888e-4c6d-bfd0-ac89e32454a3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T20:32:23.000Z" + }, + "end": { + "$date": "2022-06-19T20:35:02.000Z" + }, + "events": [ + { + "uuid": "fa0150c1-5983-4d91-844a-18ee945318b7", + "start": { + "$date": "2022-06-19T20:32:23.000Z" + }, + "end": { + "$date": "2022-06-19T20:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", + "uuid": "95086b3d-54c4-433a-be2a-4a24b0153bf4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T20:35:08.000Z" + }, + "end": { + "$date": "2022-06-19T20:39:32.000Z" + }, + "events": [ + { + "uuid": "32992c12-64fd-4f22-8e01-90fbb0473568", + "start": { + "$date": "2022-06-19T20:35:08.000Z" + }, + "end": { + "$date": "2022-06-19T20:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", + "uuid": "a8892df6-dc19-41bc-9e1d-cffbfaeca298", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T20:47:14.000Z" + }, + "end": { + "$date": "2022-06-19T20:58:50.000Z" + }, + "events": [ + { + "uuid": "d500b45d-7b5d-472f-9b57-b75df9a96be2", + "start": { + "$date": "2022-06-19T20:47:14.000Z" + }, + "end": { + "$date": "2022-06-19T20:58:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "45e95c12-ad1d-4d3d-ab1c-2e94d7a3996e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T21:09:17.000Z" + }, + "end": { + "$date": "2022-06-19T21:10:32.000Z" + }, + "events": [ + { + "uuid": "bd5f36dc-ea14-4c66-bedb-060dfe18491b", + "start": { + "$date": "2022-06-19T21:09:17.000Z" + }, + "end": { + "$date": "2022-06-19T21:10:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "a611c736-8b81-46da-b996-65bb8c3e2005", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T21:11:18.000Z" + }, + "end": { + "$date": "2022-06-19T21:37:14.000Z" + }, + "events": [ + { + "uuid": "bcfe3f2f-afc2-4e92-a485-8c97f32aa7b7", + "start": { + "$date": "2022-06-19T21:11:18.000Z" + }, + "end": { + "$date": "2022-06-19T21:37:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "5fea64c9-4e56-4b6e-989d-05d4f929b066", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T21:37:30.000Z" + }, + "end": { + "$date": "2022-06-19T23:46:45.000Z" + }, + "events": [ + { + "uuid": "15581e03-48a3-4805-9b4f-098611cce9bf", + "start": { + "$date": "2022-06-19T21:37:30.000Z" + }, + "end": { + "$date": "2022-06-19T23:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "69c8c8c7-02e4-4f1b-a0c4-4849c85fe090", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-19T22:19:08.000Z" + }, + "end": { + "$date": "2022-06-20T00:12:19.000Z" + }, + "events": [ + { + "uuid": "8ef93d9b-90cc-467b-ba99-262968a2f6a4", + "start": { + "$date": "2022-06-19T22:19:08.000Z" + }, + "end": { + "$date": "2022-06-20T00:12:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "01913dcd-d5f9-4de6-85f5-26e597aa5559", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-19T22:23:17.000Z" + }, + "end": { + "$date": "2022-06-20T00:23:43.000Z" + }, + "events": [ + { + "uuid": "74866c40-5d7a-4a8a-af42-49d0330c68db", + "start": { + "$date": "2022-06-19T22:23:17.000Z" + }, + "end": { + "$date": "2022-06-20T00:23:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "632acf28-c860-48e0-9d4d-ce972d3b22a8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-19T23:25:29.000Z" + }, + "end": { + "$date": "2022-06-19T23:47:07.000Z" + }, + "events": [ + { + "uuid": "c9c5f7c6-1f80-4a82-a947-d83339f7a146", + "start": { + "$date": "2022-06-19T23:25:29.000Z" + }, + "end": { + "$date": "2022-06-19T23:47:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "3bbe79eb-769d-4a33-954b-2fe752a53424", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-19T23:53:02.000Z" + }, + "end": { + "$date": "2022-06-20T00:24:56.000Z" + }, + "events": [ + { + "uuid": "f8aba800-c1b1-4666-ae1f-60695f1866e6", + "start": { + "$date": "2022-06-19T23:53:02.000Z" + }, + "end": { + "$date": "2022-06-20T00:24:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "84a2bd81-5675-45eb-bc40-79336acebb57", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-19T23:53:32.000Z" + }, + "end": { + "$date": "2022-06-20T00:06:54.000Z" + }, + "events": [ + { + "uuid": "f5f6d201-777c-4fe7-94bd-a7b6e327e77d", + "start": { + "$date": "2022-06-19T23:53:32.000Z" + }, + "end": { + "$date": "2022-06-20T00:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "64177d32-0097-4a02-9f5f-895930ec18af", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-19T23:56:31.000Z" + }, + "end": { + "$date": "2022-06-20T00:16:34.000Z" + }, + "events": [ + { + "uuid": "ea497ad4-9235-4991-b00e-5cd59cf45a00", + "start": { + "$date": "2022-06-19T23:56:31.000Z" + }, + "end": { + "$date": "2022-06-20T00:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "61f3fae3-dd0b-430d-a68d-f25bf21d629b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-20T00:13:09.000Z" + }, + "end": { + "$date": "2022-06-20T00:22:34.000Z" + }, + "events": [ + { + "uuid": "216e3cd2-93cc-4c50-b33a-e6c293012a35", + "start": { + "$date": "2022-06-20T00:13:09.000Z" + }, + "end": { + "$date": "2022-06-20T00:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "e59a40e6-3b10-4763-86c5-f0324d10e83a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-20T00:25:00.000Z" + }, + "end": { + "$date": "2022-06-20T01:59:00.000Z" + }, + "events": [ + { + "uuid": "6839adf0-5325-4f96-9cef-5f50ad3a695d", + "start": { + "$date": "2022-06-20T00:25:00.000Z" + }, + "end": { + "$date": "2022-06-20T01:59:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "21f3015a-a47b-4f13-96d3-3f2edac3166f", + "uuid": "7b156826-25ab-44df-a0df-5d90a63316e1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-20T01:01:47.000Z" + }, + "end": { + "$date": "2022-06-20T02:20:01.000Z" + }, + "events": [ + { + "uuid": "cb319628-2d6e-4be3-afde-2448fd998fda", + "start": { + "$date": "2022-06-20T01:01:47.000Z" + }, + "end": { + "$date": "2022-06-20T02:20:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "8803bc94-9c62-41d4-8106-9fb5e60ace9f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-20T02:24:27.000Z" + }, + "end": { + "$date": "2022-06-20T03:28:03.000Z" + }, + "events": [ + { + "uuid": "024d7d95-6834-4089-a9bb-ac1bf966e202", + "start": { + "$date": "2022-06-20T02:24:27.000Z" + }, + "end": { + "$date": "2022-06-20T03:28:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "30f37cd3-0d4d-42d4-9fc0-ad720b310567", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-20T02:30:31.000Z" + }, + "end": { + "$date": "2022-06-20T03:28:04.000Z" + }, + "events": [ + { + "uuid": "b8fb216b-b6f5-494a-b088-0d91bff8f7a4", + "start": { + "$date": "2022-06-20T02:30:31.000Z" + }, + "end": { + "$date": "2022-06-20T03:28:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", + "uuid": "122e2551-4a24-4bf3-8afe-7cfbb6561ddc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-20T02:45:33.000Z" + }, + "end": { + "$date": "2022-06-20T02:55:44.000Z" + }, + "events": [ + { + "uuid": "a4a2c18f-6111-48ee-abca-3694649639a6", + "start": { + "$date": "2022-06-20T02:45:33.000Z" + }, + "end": { + "$date": "2022-06-20T02:55:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "450d7d6e-7f96-4a7d-b757-f7ec219d0a7d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-20T02:51:36.000Z" + }, + "end": { + "$date": "2022-06-20T05:02:26.000Z" + }, + "events": [ + { + "uuid": "1a634532-3cad-4cdf-842d-7b88812e4b71", + "start": { + "$date": "2022-06-20T02:51:36.000Z" + }, + "end": { + "$date": "2022-06-20T05:02:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff591f22-64ce-4b2b-854d-4c984614461b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-20T02:55:59.000Z" + }, + "end": { + "$date": "2022-06-20T03:00:50.000Z" + }, + "events": [ + { + "uuid": "3057650d-6cc8-4f78-b341-e42a35cb6987", + "start": { + "$date": "2022-06-20T02:55:59.000Z" + }, + "end": { + "$date": "2022-06-20T03:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7768e775-0130-4279-a8c4-10601454ea2b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-20T03:00:59.000Z" + }, + "end": { + "$date": "2022-06-20T03:28:00.000Z" + }, + "events": [ + { + "uuid": "ad3f5ae2-4c2f-46c5-a58a-e7dee2bec379", + "start": { + "$date": "2022-06-20T03:00:59.000Z" + }, + "end": { + "$date": "2022-06-20T03:28:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "0bbb1ba4-80d0-473c-b28c-04e11d47bb55", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-20T03:29:58.000Z" + }, + "end": { + "$date": "2022-06-20T04:22:41.000Z" + }, + "events": [ + { + "uuid": "604fae7b-e84a-4f07-9987-57162c756662", + "start": { + "$date": "2022-06-20T03:29:58.000Z" + }, + "end": { + "$date": "2022-06-20T04:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "8405cdd9-5a43-418b-a570-1d51d12c3fb8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-20T03:30:00.000Z" + }, + "end": { + "$date": "2022-06-20T04:11:46.000Z" + }, + "events": [ + { + "uuid": "4d45d29d-2115-4a5d-81f8-77bd5b9443d4", + "start": { + "$date": "2022-06-20T03:30:00.000Z" + }, + "end": { + "$date": "2022-06-20T04:11:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "d0082bfb-296b-4080-97c9-c45abe0d393b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-20T03:30:02.000Z" + }, + "end": { + "$date": "2022-06-20T04:12:01.000Z" + }, + "events": [ + { + "uuid": "b683c580-5e9d-4a12-8198-d131f3d9df80", + "start": { + "$date": "2022-06-20T03:30:02.000Z" + }, + "end": { + "$date": "2022-06-20T04:12:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", + "uuid": "69b35b43-3b96-4e3c-a9c1-835f2c36609d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-20T03:36:20.000Z" + }, + "end": { + "$date": "2022-06-20T04:11:41.000Z" + }, + "events": [ + { + "uuid": "346304b4-ce3f-4b6f-95d0-6017615fb6f0", + "start": { + "$date": "2022-06-20T03:36:20.000Z" + }, + "end": { + "$date": "2022-06-20T04:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "af009f83-3088-4a6f-9618-2609e4b9ab60", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-20T04:15:27.000Z" + }, + "end": { + "$date": "2022-06-20T07:59:46.000Z" + }, + "events": [ + { + "uuid": "d0620e3e-212f-495e-aea9-66ba6ed36e53", + "start": { + "$date": "2022-06-20T04:15:27.000Z" + }, + "end": { + "$date": "2022-06-20T07:59:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e3b488e2-ea99-4c73-a456-7faeab8309af", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-20T07:02:04.000Z" + }, + "end": { + "$date": "2022-06-20T07:02:23.000Z" + }, + "events": [ + { + "uuid": "9b2b9f63-1fb3-4683-ade4-c2d7ff3a2547", + "start": { + "$date": "2022-06-20T07:02:04.000Z" + }, + "end": { + "$date": "2022-06-20T07:02:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0a888e1e-f66f-4b2c-ab64-fe37e7ea919f", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-20T04:35:30.000Z" + }, + "end": { + "$date": "2022-06-20T07:03:49.000Z" + }, + "events": [ + { + "uuid": "dd8cb3c5-94ee-4c25-86c0-f5665193c841", + "start": { + "$date": "2022-06-20T04:35:30.000Z" + }, + "end": { + "$date": "2022-06-20T07:03:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "98f4fa32-ea1a-45fe-bcf9-5df5b740c88d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-20T04:39:19.000Z" + }, + "end": { + "$date": "2022-06-20T05:16:50.000Z" + }, + "events": [ + { + "uuid": "3cffcabe-12f5-4207-90c0-3f6983522761", + "start": { + "$date": "2022-06-20T04:39:19.000Z" + }, + "end": { + "$date": "2022-06-20T05:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a9ba3279-bd62-4293-b99b-6ae3c9223486", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-20T13:54:37.000Z" + }, + "end": { + "$date": "2022-06-20T14:29:28.000Z" + }, + "events": [ + { + "uuid": "a803ab98-b124-4666-80d7-53420d77f525", + "start": { + "$date": "2022-06-20T13:54:37.000Z" + }, + "end": { + "$date": "2022-06-20T14:29:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "1298afa5-f063-4914-96aa-d947941ea84f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-20T22:13:01.000Z" + }, + "end": { + "$date": "2022-06-20T22:17:51.000Z" + }, + "events": [ + { + "uuid": "15344741-bc71-45c0-9af3-3f42de30a66d", + "start": { + "$date": "2022-06-20T22:13:01.000Z" + }, + "end": { + "$date": "2022-06-20T22:53:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c04f50b7-5615-49b9-bf1a-94f1f8dc3de6", + "start": { + "$date": "2022-06-20T22:53:01.000Z" + }, + "end": { + "$date": "2022-06-20T23:46:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dfa2fb17-42d3-4f94-81e4-098b1db13a6f", + "start": { + "$date": "2022-06-20T23:46:01.000Z" + }, + "end": { + "$date": "2022-06-21T00:49:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8818bbf2-76dd-45f1-aec2-fcd6532ac88b", + "start": { + "$date": "2022-06-21T00:49:01.000Z" + }, + "end": { + "$date": "2022-06-21T00:51:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5ba7f27-541c-4ee2-9846-7dda2acb6d8c", + "start": { + "$date": "2022-06-21T00:51:01.000Z" + }, + "end": { + "$date": "2022-06-20T22:17:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "11a4715e-d84e-4864-98c7-069bc9add935", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-20T17:28:14.000Z" + }, + "end": { + "$date": "2022-06-20T18:17:10.000Z" + }, + "events": [ + { + "uuid": "feacb4e3-0f9b-40a4-b9d4-cc97dd2316aa", + "start": { + "$date": "2022-06-20T17:28:14.000Z" + }, + "end": { + "$date": "2022-06-20T18:17:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f0ddd47b-32c9-4644-87ec-9e4daf11c924", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-20T20:12:57.000Z" + }, + "end": { + "$date": "2022-06-20T23:19:22.000Z" + }, + "events": [ + { + "uuid": "3a59ee15-7eb4-4ff2-bb37-62919ecf47c7", + "start": { + "$date": "2022-06-20T20:12:57.000Z" + }, + "end": { + "$date": "2022-06-20T23:19:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "3d590705-9430-4420-a9b6-b045b2b21f8c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-20T20:55:18.000Z" + }, + "end": { + "$date": "2022-06-20T22:27:32.000Z" + }, + "events": [ + { + "uuid": "dcebc4c0-e9ce-4f82-bf05-d1797f8db3dd", + "start": { + "$date": "2022-06-20T20:55:18.000Z" + }, + "end": { + "$date": "2022-06-20T22:27:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7e130ad5-33aa-4d01-9d9d-a7002e3c7fda", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-21T01:01:16.000Z" + }, + "end": { + "$date": "2022-06-21T01:01:20.000Z" + }, + "events": [ + { + "uuid": "912c1b78-9de3-4579-86c2-8c7b76abca7f", + "start": { + "$date": "2022-06-21T01:01:16.000Z" + }, + "end": { + "$date": "2022-06-21T01:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1a26d644-5ad9-4ece-ac48-00529970b485", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-21T00:22:25.000Z" + }, + "end": { + "$date": "2022-06-21T01:35:21.000Z" + }, + "events": [ + { + "uuid": "7abe05ae-afde-417f-b1e5-beb25d325653", + "start": { + "$date": "2022-06-21T00:22:25.000Z" + }, + "end": { + "$date": "2022-06-21T01:35:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "93c4d52b-ec84-4ccd-b371-eeef49ad1259", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-21T01:19:05.000Z" + }, + "end": { + "$date": "2022-06-21T01:44:52.000Z" + }, + "events": [ + { + "uuid": "641615e4-a2e6-47cc-a64d-4bc4a469bd1a", + "start": { + "$date": "2022-06-21T01:19:05.000Z" + }, + "end": { + "$date": "2022-06-21T01:44:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "20e0303d-5dd6-4ab6-ac71-bd203345a093", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-21T04:42:43.000Z" + }, + "end": { + "$date": "2022-06-21T04:43:37.000Z" + }, + "events": [ + { + "uuid": "797c6804-a470-4cf7-ab1b-87d77577c321", + "start": { + "$date": "2022-06-21T04:42:43.000Z" + }, + "end": { + "$date": "2022-06-21T05:10:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50de8473-cc37-4e30-9f7e-477af5b120d1", + "start": { + "$date": "2022-06-21T05:10:43.000Z" + }, + "end": { + "$date": "2022-06-21T05:20:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "40ca913d-dd34-433d-9cd5-23fb8d04a1a6", + "start": { + "$date": "2022-06-21T05:20:43.000Z" + }, + "end": { + "$date": "2022-06-21T06:34:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f598b2c-9ef7-4107-b6d4-d3a87e63864c", + "start": { + "$date": "2022-06-21T06:34:43.000Z" + }, + "end": { + "$date": "2022-06-21T06:47:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "421928d4-2da4-4285-9474-80efd35b868e", + "start": { + "$date": "2022-06-21T06:47:43.000Z" + }, + "end": { + "$date": "2022-06-21T07:34:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "253855fc-3a6e-4834-a835-7bd69a32ebbc", + "start": { + "$date": "2022-06-21T07:34:43.000Z" + }, + "end": { + "$date": "2022-06-21T07:39:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "21158c94-78cc-443a-91e8-2139083b3852", + "start": { + "$date": "2022-06-21T07:39:43.000Z" + }, + "end": { + "$date": "2022-06-21T04:43:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "2adfa6bb-e174-47ce-b9b5-f95c90a6dca8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-21T02:11:24.000Z" + }, + "end": { + "$date": "2022-06-21T04:38:27.000Z" + }, + "events": [ + { + "uuid": "30a78294-199b-4fe1-b0cf-f1f34e22ded1", + "start": { + "$date": "2022-06-21T02:11:24.000Z" + }, + "end": { + "$date": "2022-06-21T04:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "27a08ac2-09d4-4ca0-b0ba-66abc405ba3a", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-21T02:33:01.000Z" + }, + "end": { + "$date": "2022-06-21T03:59:35.000Z" + }, + "events": [ + { + "uuid": "64794eaa-b240-4a53-af02-4eb6e367eda6", + "start": { + "$date": "2022-06-21T02:33:01.000Z" + }, + "end": { + "$date": "2022-06-21T03:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cd7f3835-6fa7-43f7-9bcd-0df74fac1753", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-21T02:34:46.000Z" + }, + "end": { + "$date": "2022-06-21T03:12:32.000Z" + }, + "events": [ + { + "uuid": "95e84bdb-5c53-4dac-a7df-832ac9da7c02", + "start": { + "$date": "2022-06-21T02:34:46.000Z" + }, + "end": { + "$date": "2022-06-21T03:12:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "6f3b6d27-f1a8-411b-8061-fa6bd4365cbf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-21T02:46:17.000Z" + }, + "end": { + "$date": "2022-06-21T03:31:53.000Z" + }, + "events": [ + { + "uuid": "ccfa345d-5e87-4195-ad05-67f91ce68182", + "start": { + "$date": "2022-06-21T02:46:17.000Z" + }, + "end": { + "$date": "2022-06-21T03:31:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "b2c09e50-e785-461f-9816-1c5095d83a8e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-21T03:12:48.000Z" + }, + "end": { + "$date": "2022-06-21T04:00:49.000Z" + }, + "events": [ + { + "uuid": "040193f4-e130-4d13-81a7-ca1d884e0cfd", + "start": { + "$date": "2022-06-21T03:12:48.000Z" + }, + "end": { + "$date": "2022-06-21T04:00:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "46b7edee-906c-4e7b-bb96-d3bb3b8eb6c9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-21T03:36:29.000Z" + }, + "end": { + "$date": "2022-06-21T06:09:57.000Z" + }, + "events": [ + { + "uuid": "9fdf0028-40be-4195-96da-ad0ccb863da4", + "start": { + "$date": "2022-06-21T03:36:29.000Z" + }, + "end": { + "$date": "2022-06-21T06:09:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "020d012f-b8f7-4846-ada0-82eae722d624", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-21T04:22:21.000Z" + }, + "end": { + "$date": "2022-06-21T04:36:26.000Z" + }, + "events": [ + { + "uuid": "aaa78d49-f603-44d0-b13c-85cf0dc72855", + "start": { + "$date": "2022-06-21T04:22:21.000Z" + }, + "end": { + "$date": "2022-06-21T04:36:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7f3308b2-3ef0-41a1-ada7-7b5c06927582", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-21T04:32:35.000Z" + }, + "end": { + "$date": "2022-06-21T05:11:38.000Z" + }, + "events": [ + { + "uuid": "5f6b1877-0724-40d4-90ab-83afa6e06fa2", + "start": { + "$date": "2022-06-21T04:32:35.000Z" + }, + "end": { + "$date": "2022-06-21T05:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2176a52f-1471-4c46-81f6-759294ce790c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-21T04:36:36.000Z" + }, + "end": { + "$date": "2022-06-21T05:22:26.000Z" + }, + "events": [ + { + "uuid": "06d1b901-2c58-4c04-bb94-af9364bd4403", + "start": { + "$date": "2022-06-21T04:36:36.000Z" + }, + "end": { + "$date": "2022-06-21T05:22:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "45df833b-53fb-42ce-ba65-566b8636ab44", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-21T06:12:30.000Z" + }, + "end": { + "$date": "2022-06-21T06:48:22.000Z" + }, + "events": [ + { + "uuid": "1f768dea-dca2-49df-b43a-8e80842fd025", + "start": { + "$date": "2022-06-21T06:12:30.000Z" + }, + "end": { + "$date": "2022-06-21T06:48:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "14232844-b1a6-439d-b3fb-19bbdea85990", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-21T06:12:41.000Z" + }, + "end": { + "$date": "2022-06-21T06:49:16.000Z" + }, + "events": [ + { + "uuid": "4806d833-3616-4eca-9c7b-e9682baba35c", + "start": { + "$date": "2022-06-21T06:12:41.000Z" + }, + "end": { + "$date": "2022-06-21T06:49:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fb4c288d-fc02-4917-ae85-b63198fff84a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-21T06:18:53.000Z" + }, + "end": { + "$date": "2022-06-21T06:30:50.000Z" + }, + "events": [ + { + "uuid": "d0ef5aa2-f83f-4da0-b86c-5fcf86d9a269", + "start": { + "$date": "2022-06-21T06:18:53.000Z" + }, + "end": { + "$date": "2022-06-21T06:30:50.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", + "uuid": "c6aa9a7a-2cb3-4a47-adc4-343d09ec5f98", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-21T07:08:28.000Z" + }, + "end": { + "$date": "2022-06-21T07:20:48.000Z" + }, + "events": [ + { + "uuid": "4b1cdc9e-f172-49bf-91e5-17812d81f85f", + "start": { + "$date": "2022-06-21T07:08:28.000Z" + }, + "end": { + "$date": "2022-06-21T07:20:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c59f81bc-c225-41ca-a6de-1466068ddd30", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-21T07:39:30.000Z" + }, + "end": { + "$date": "2022-06-21T07:41:12.000Z" + }, + "events": [ + { + "uuid": "580d0a2c-6fc2-42ff-bf71-a81d89c7ac36", + "start": { + "$date": "2022-06-21T07:39:30.000Z" + }, + "end": { + "$date": "2022-06-21T07:41:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "80120f5c-da16-45ca-b167-0b46c696bcfe", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-21T17:50:49.000Z" + }, + "end": { + "$date": "2022-06-21T17:52:14.000Z" + }, + "events": [ + { + "uuid": "7c6fd3ca-39b1-4b29-b977-cde436bed406", + "start": { + "$date": "2022-06-21T17:50:49.000Z" + }, + "end": { + "$date": "2022-06-21T17:52:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "96177773-fc9f-40db-85a6-ad1f3a36dedf", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-21T21:43:29.000Z" + }, + "end": { + "$date": "2022-06-21T21:43:34.000Z" + }, + "events": [ + { + "uuid": "66f2adff-1f39-44e6-a8bc-4a7605474fd5", + "start": { + "$date": "2022-06-21T21:43:29.000Z" + }, + "end": { + "$date": "2022-06-21T22:28:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a250224a-0304-4cf1-a991-1d9ba60900d9", + "start": { + "$date": "2022-06-21T22:28:29.000Z" + }, + "end": { + "$date": "2022-06-21T22:31:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2efd75f5-4754-492a-a3aa-285880983209", + "start": { + "$date": "2022-06-21T22:31:29.000Z" + }, + "end": { + "$date": "2022-06-21T23:00:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2cd6f97b-1450-4eff-87e3-5a35db596499", + "start": { + "$date": "2022-06-21T23:00:29.000Z" + }, + "end": { + "$date": "2022-06-21T23:07:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8952f8cc-6cf2-42fe-be3a-c21e3e0fbcdb", + "start": { + "$date": "2022-06-21T23:07:29.000Z" + }, + "end": { + "$date": "2022-06-21T23:58:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "184564c3-7419-402b-92cf-19b63ce21ee4", + "start": { + "$date": "2022-06-21T23:58:29.000Z" + }, + "end": { + "$date": "2022-06-22T00:02:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f3aedf5-6a65-4e97-831d-d6f0dcc9b44f", + "start": { + "$date": "2022-06-22T00:02:29.000Z" + }, + "end": { + "$date": "2022-06-22T00:13:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "489ae78e-6d9e-4331-80f0-00c0f0557494", + "start": { + "$date": "2022-06-22T00:13:29.000Z" + }, + "end": { + "$date": "2022-06-22T00:14:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f6999034-c30e-46bd-94ea-9a1794701821", + "start": { + "$date": "2022-06-22T00:14:29.000Z" + }, + "end": { + "$date": "2022-06-21T21:43:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "ba0c528a-3c92-48a0-be7a-67edb2a7ec4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-21T18:16:21.000Z" + }, + "end": { + "$date": "2022-06-21T19:51:59.000Z" + }, + "events": [ + { + "uuid": "6d4a9ad8-22de-42f7-b7aa-110b81a8100b", + "start": { + "$date": "2022-06-21T18:16:21.000Z" + }, + "end": { + "$date": "2022-06-21T19:51:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "338532e1-be57-4950-8701-3b4d65bc4de8", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-21T18:16:20.000Z" + }, + "end": { + "$date": "2022-06-21T18:21:15.000Z" + }, + "events": [ + { + "uuid": "a6372881-c985-46fd-9e44-7d9febe0da85", + "start": { + "$date": "2022-06-21T18:16:20.000Z" + }, + "end": { + "$date": "2022-06-21T18:21:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "d794983f-f1fc-4ae9-bf00-820ee50d9600", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-21T18:26:01.000Z" + }, + "end": { + "$date": "2022-06-21T18:33:07.000Z" + }, + "events": [ + { + "uuid": "51b5706b-9a11-4e6d-9193-78b9e4afb145", + "start": { + "$date": "2022-06-21T18:26:01.000Z" + }, + "end": { + "$date": "2022-06-21T18:33:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "58215d94-94aa-42c9-8ac5-5003aa0d77db", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-21T18:36:02.000Z" + }, + "end": { + "$date": "2022-06-21T18:37:27.000Z" + }, + "events": [ + { + "uuid": "d7937a9d-8d70-4d66-a82a-9347f33c0a0d", + "start": { + "$date": "2022-06-21T18:36:02.000Z" + }, + "end": { + "$date": "2022-06-21T18:37:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "a73a70cc-4f35-4261-9b12-059f1f21fccb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-21T19:05:04.000Z" + }, + "end": { + "$date": "2022-06-21T19:34:27.000Z" + }, + "events": [ + { + "uuid": "15615ae5-07bb-4661-b465-8c6eb4f59b8f", + "start": { + "$date": "2022-06-21T19:05:04.000Z" + }, + "end": { + "$date": "2022-06-21T19:34:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8f809f7a-58af-49e1-b2bd-d9378c40e1a7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-21T21:15:53.000Z" + }, + "end": { + "$date": "2022-06-22T02:01:51.000Z" + }, + "events": [ + { + "uuid": "6bacc3c1-dcc5-4ccf-b11b-5f0499bd6968", + "start": { + "$date": "2022-06-21T21:15:53.000Z" + }, + "end": { + "$date": "2022-06-22T02:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2a32394f-2346-4926-b15f-3a4754331ffb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-21T23:01:26.000Z" + }, + "end": { + "$date": "2022-06-21T23:35:25.000Z" + }, + "events": [ + { + "uuid": "15a596d7-e95c-453e-9b73-f1c681a36154", + "start": { + "$date": "2022-06-21T23:01:26.000Z" + }, + "end": { + "$date": "2022-06-21T23:35:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "5029b61b-9e52-43b2-aef9-3f467350ec01", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-22T00:02:49.000Z" + }, + "end": { + "$date": "2022-06-22T00:47:05.000Z" + }, + "events": [ + { + "uuid": "b01e7656-6d2f-4d11-b695-c7532246182f", + "start": { + "$date": "2022-06-22T00:02:49.000Z" + }, + "end": { + "$date": "2022-06-22T00:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "a9ad97c8-aecb-447d-bb39-d91214ee3c5a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-22T01:05:37.000Z" + }, + "end": { + "$date": "2022-06-22T02:02:51.000Z" + }, + "events": [ + { + "uuid": "47211843-e291-43be-a8ef-61c309e8ca1f", + "start": { + "$date": "2022-06-22T01:05:37.000Z" + }, + "end": { + "$date": "2022-06-22T02:02:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a210332-6526-4f8b-b554-d278cea6cc2a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-22T01:10:38.000Z" + }, + "end": { + "$date": "2022-06-22T02:00:13.000Z" + }, + "events": [ + { + "uuid": "d7073538-9767-4407-b234-5fd1e383fa48", + "start": { + "$date": "2022-06-22T01:10:38.000Z" + }, + "end": { + "$date": "2022-06-22T02:00:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "76477254-d51b-4356-b141-7bd17ad229e4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T01:37:54.000Z" + }, + "end": { + "$date": "2022-06-22T01:44:54.000Z" + }, + "events": [ + { + "uuid": "5e358947-fb49-4057-9c1e-207f45062dc6", + "start": { + "$date": "2022-06-22T01:37:54.000Z" + }, + "end": { + "$date": "2022-06-22T01:44:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f5af39ad-06cc-4aab-8257-c1d5dc3ca0ec", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-22T02:53:17.000Z" + }, + "end": { + "$date": "2022-06-22T02:58:32.000Z" + }, + "events": [ + { + "uuid": "0e44bf85-b1a9-4893-93bf-50eb1f1787dd", + "start": { + "$date": "2022-06-22T02:53:17.000Z" + }, + "end": { + "$date": "2022-06-22T02:58:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2eb9c411-983e-457c-afa0-b0152e6b3384", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-22T02:03:16.000Z" + }, + "end": { + "$date": "2022-06-22T04:35:16.000Z" + }, + "events": [ + { + "uuid": "a0c29246-7e57-4d9c-9d4b-73e8fda274c9", + "start": { + "$date": "2022-06-22T02:03:16.000Z" + }, + "end": { + "$date": "2022-06-22T04:35:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5e0a9820-951e-434f-969e-0e436d0b038a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T03:58:49.000Z" + }, + "end": { + "$date": "2022-06-22T05:03:57.000Z" + }, + "events": [ + { + "uuid": "2c8bd3e9-ebc0-4e16-9ca3-386f8d2bb899", + "start": { + "$date": "2022-06-22T03:58:49.000Z" + }, + "end": { + "$date": "2022-06-22T06:01:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "37eed9cc-4ced-4972-88ff-d829f1ac3903", + "start": { + "$date": "2022-06-22T06:01:49.000Z" + }, + "end": { + "$date": "2022-06-22T06:29:49.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e155bc69-4415-4311-b3c3-8233b8f33b74", + "start": { + "$date": "2022-06-22T06:29:49.000Z" + }, + "end": { + "$date": "2022-06-22T06:32:49.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "49b7bee5-cd86-4488-b026-7571fb04b679", + "start": { + "$date": "2022-06-22T06:32:49.000Z" + }, + "end": { + "$date": "2022-06-22T05:03:57.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "61f7eec4-4858-4a0a-b8a5-5a613853b5ab", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-22T02:47:29.000Z" + }, + "end": { + "$date": "2022-06-22T03:58:51.000Z" + }, + "events": [ + { + "uuid": "dd9a3972-1e20-4e6d-a451-01d93a431ca4", + "start": { + "$date": "2022-06-22T02:47:29.000Z" + }, + "end": { + "$date": "2022-06-22T03:58:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "82009845-d787-4da1-9b3d-e7276363d368", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-22T02:19:53.000Z" + }, + "end": { + "$date": "2022-06-22T02:22:32.000Z" + }, + "events": [ + { + "uuid": "14148c31-6129-4201-8887-119296f56a55", + "start": { + "$date": "2022-06-22T02:19:53.000Z" + }, + "end": { + "$date": "2022-06-22T02:22:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "f456a2a5-674b-4a0a-b88b-c8e2e1c021c2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-22T03:19:19.000Z" + }, + "end": { + "$date": "2022-06-22T03:32:53.000Z" + }, + "events": [ + { + "uuid": "1817e882-e224-4225-880e-5ce5c7026680", + "start": { + "$date": "2022-06-22T03:19:19.000Z" + }, + "end": { + "$date": "2022-06-22T03:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4815c391-92e4-402f-a3bf-a091e3c21ee7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-22T03:33:44.000Z" + }, + "end": { + "$date": "2022-06-22T03:50:49.000Z" + }, + "events": [ + { + "uuid": "edc32b5d-b678-4c57-86e6-c014c3c1390f", + "start": { + "$date": "2022-06-22T03:33:44.000Z" + }, + "end": { + "$date": "2022-06-22T03:50:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "bc3e6366-a2d3-4d32-a4f6-e36b383a79fd", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-22T03:42:48.000Z" + }, + "end": { + "$date": "2022-06-22T06:19:39.000Z" + }, + "events": [ + { + "uuid": "4127372f-be75-4f43-ae54-4c0b1718fc08", + "start": { + "$date": "2022-06-22T03:42:48.000Z" + }, + "end": { + "$date": "2022-06-22T06:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "463595fe-a1a6-486a-ad60-0070c5b0e63b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-22T04:54:02.000Z" + }, + "end": { + "$date": "2022-06-22T06:20:33.000Z" + }, + "events": [ + { + "uuid": "342ef133-88cb-4f70-8c4e-945c39c4e6f2", + "start": { + "$date": "2022-06-22T04:54:02.000Z" + }, + "end": { + "$date": "2022-06-22T06:20:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "c5225e15-2e3e-4f4d-9a55-572a4bc3d806", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-22T06:04:25.000Z" + }, + "end": { + "$date": "2022-06-22T06:26:23.000Z" + }, + "events": [ + { + "uuid": "db8898dc-274f-4810-8a8c-ddda47ed9702", + "start": { + "$date": "2022-06-22T06:04:25.000Z" + }, + "end": { + "$date": "2022-06-22T06:26:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fb17f4cf-e6de-4a0c-944f-6900fe29bcac", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T13:34:52.000Z" + }, + "end": { + "$date": "2022-06-22T15:11:37.000Z" + }, + "events": [ + { + "uuid": "79fe7a76-c2f6-416e-a14b-8179b68616fe", + "start": { + "$date": "2022-06-22T13:34:52.000Z" + }, + "end": { + "$date": "2022-06-22T15:11:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "24d77d05-8649-40c1-9b22-66dff4007dd5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-22T14:37:07.000Z" + }, + "end": { + "$date": "2022-06-22T16:22:51.000Z" + }, + "events": [ + { + "uuid": "77d1db5a-8743-43fc-b457-64d4613d6563", + "start": { + "$date": "2022-06-22T14:37:07.000Z" + }, + "end": { + "$date": "2022-06-22T16:22:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "38f87481-d75b-439e-ad9d-f7156e010c04", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T15:33:00.000Z" + }, + "end": { + "$date": "2022-06-22T15:46:31.000Z" + }, + "events": [ + { + "uuid": "6469a4a1-926e-4740-9f3e-5cdc4a995171", + "start": { + "$date": "2022-06-22T15:33:00.000Z" + }, + "end": { + "$date": "2022-06-22T15:46:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "09a71f97-551c-4bc5-b6b1-d7d0768a6ac2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T18:10:53.000Z" + }, + "end": { + "$date": "2022-06-22T18:22:09.000Z" + }, + "events": [ + { + "uuid": "321f2067-e937-4923-97e4-1b854a60219d", + "start": { + "$date": "2022-06-22T18:10:53.000Z" + }, + "end": { + "$date": "2022-06-22T18:22:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e6bc1b22-fad7-4465-b7b3-d57aad790c0e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-22T16:25:26.000Z" + }, + "end": { + "$date": "2022-06-22T16:46:46.000Z" + }, + "events": [ + { + "uuid": "08939025-6a9b-4203-892a-31ffed90d7e1", + "start": { + "$date": "2022-06-22T16:25:26.000Z" + }, + "end": { + "$date": "2022-06-22T16:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "8926681e-7342-4769-8e58-528a5409b404", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-22T16:27:03.000Z" + }, + "end": { + "$date": "2022-06-23T00:48:57.000Z" + }, + "events": [ + { + "uuid": "42577493-dc41-4399-8afc-6b827f81a75f", + "start": { + "$date": "2022-06-22T16:27:03.000Z" + }, + "end": { + "$date": "2022-06-22T18:54:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce25d368-066d-4dff-a17c-f0bde1306f03", + "start": { + "$date": "2022-06-22T18:54:03.000Z" + }, + "end": { + "$date": "2022-06-22T18:58:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d858107d-d430-4945-9bcb-a9dc052ed4bd", + "start": { + "$date": "2022-06-22T18:58:03.000Z" + }, + "end": { + "$date": "2022-06-22T19:08:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cf66112a-09a1-4c3a-b11e-510278967299", + "start": { + "$date": "2022-06-22T19:08:03.000Z" + }, + "end": { + "$date": "2022-06-22T19:50:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9bfab7da-3706-4e39-b80a-f235e8f537fd", + "start": { + "$date": "2022-06-22T19:50:03.000Z" + }, + "end": { + "$date": "2022-06-23T00:48:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c2082f42-5dc3-471c-91e0-4906adbe3880", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-22T16:48:32.000Z" + }, + "end": { + "$date": "2022-06-22T17:09:58.000Z" + }, + "events": [ + { + "uuid": "485bec03-6ca5-4564-a07a-d06ebc35a7bf", + "start": { + "$date": "2022-06-22T16:48:32.000Z" + }, + "end": { + "$date": "2022-06-22T17:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "615c81a3-53ab-450f-88a6-436d1d3d2bc9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-22T18:48:06.000Z" + }, + "end": { + "$date": "2022-06-23T02:36:46.000Z" + }, + "events": [ + { + "uuid": "91143653-3184-4181-9ff3-fda6d32688ce", + "start": { + "$date": "2022-06-22T18:48:06.000Z" + }, + "end": { + "$date": "2022-06-22T19:51:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4439e519-8903-496d-86bb-37e162b38eb2", + "start": { + "$date": "2022-06-22T19:51:06.000Z" + }, + "end": { + "$date": "2022-06-22T21:04:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "68db1f97-592d-49ce-a4f2-08cfc51da2eb", + "start": { + "$date": "2022-06-22T21:04:06.000Z" + }, + "end": { + "$date": "2022-06-22T21:08:06.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b7632ff4-12f7-4d9e-a868-4987d2ccb726", + "start": { + "$date": "2022-06-22T21:08:06.000Z" + }, + "end": { + "$date": "2022-06-22T22:35:06.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f967cbdc-c072-4595-ae98-443e9450ba99", + "start": { + "$date": "2022-06-22T22:35:06.000Z" + }, + "end": { + "$date": "2022-06-23T02:36:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "02921f5c-f2c2-4f96-ad0d-cc49a0968b78", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T19:04:04.000Z" + }, + "end": { + "$date": "2022-06-22T19:07:30.000Z" + }, + "events": [ + { + "uuid": "f49ece66-0b95-442f-a8b7-14f7d3e6ac70", + "start": { + "$date": "2022-06-22T19:04:04.000Z" + }, + "end": { + "$date": "2022-06-22T19:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "9031294d-0890-4c0f-b70c-fbed9086c98c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T21:37:02.000Z" + }, + "end": { + "$date": "2022-06-22T22:19:37.000Z" + }, + "events": [ + { + "uuid": "b0ac1ab2-cc48-45c2-b8c1-1d99a7ecf6c5", + "start": { + "$date": "2022-06-22T21:37:02.000Z" + }, + "end": { + "$date": "2022-06-22T22:19:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "cebe62a3-750f-4aab-afdf-a4b5641a7f66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-22T22:04:05.000Z" + }, + "end": { + "$date": "2022-06-22T23:05:48.000Z" + }, + "events": [ + { + "uuid": "5ac688c3-f55d-4585-a1a1-7c2d9cf38786", + "start": { + "$date": "2022-06-22T22:04:05.000Z" + }, + "end": { + "$date": "2022-06-22T23:05:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9450e475-9751-409a-b6a2-4fa88240b964", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-22T22:48:11.000Z" + }, + "end": { + "$date": "2022-06-23T01:43:16.000Z" + }, + "events": [ + { + "uuid": "9f88c1d8-057f-4340-ad97-a6cb16d33887", + "start": { + "$date": "2022-06-22T22:48:11.000Z" + }, + "end": { + "$date": "2022-06-23T01:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "670feb4a-631d-4f11-8eed-7a292223bfa4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T23:40:53.000Z" + }, + "end": { + "$date": "2022-06-22T23:43:13.000Z" + }, + "events": [ + { + "uuid": "4398e1e5-5652-47a6-b1b5-37968303fc13", + "start": { + "$date": "2022-06-22T23:40:53.000Z" + }, + "end": { + "$date": "2022-06-22T23:43:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "ac4963c6-835d-4fc4-8a46-5f4ecd9bd102", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-22T23:43:54.000Z" + }, + "end": { + "$date": "2022-06-23T01:18:55.000Z" + }, + "events": [ + { + "uuid": "f1514177-d8e2-4689-8629-7b23387eff32", + "start": { + "$date": "2022-06-22T23:43:54.000Z" + }, + "end": { + "$date": "2022-06-23T01:18:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "815b8985-3086-42ba-911e-21ec5af08ad0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-23T00:26:48.000Z" + }, + "end": { + "$date": "2022-06-23T00:54:34.000Z" + }, + "events": [ + { + "uuid": "3d9339a4-c71b-4a14-bd5b-ba1de01490c6", + "start": { + "$date": "2022-06-23T00:26:48.000Z" + }, + "end": { + "$date": "2022-06-23T00:54:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c439429d-11ba-469a-b6d3-e023076adc35", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-23T01:00:29.000Z" + }, + "end": { + "$date": "2022-06-23T01:38:13.000Z" + }, + "events": [ + { + "uuid": "3f45954f-56f7-460c-ae18-1cd1f2ad72a5", + "start": { + "$date": "2022-06-23T01:00:29.000Z" + }, + "end": { + "$date": "2022-06-23T01:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "daa72c18-ca0b-4952-a1f4-1477e1198081", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-23T01:13:06.000Z" + }, + "end": { + "$date": "2022-06-23T01:14:26.000Z" + }, + "events": [ + { + "uuid": "59483629-2a21-4ab4-bfb6-781b6a63ece8", + "start": { + "$date": "2022-06-23T01:13:06.000Z" + }, + "end": { + "$date": "2022-06-23T01:14:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "f07f84eb-ff74-44ed-b60b-657cc27b700e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-23T01:38:28.000Z" + }, + "end": { + "$date": "2022-06-23T02:19:32.000Z" + }, + "events": [ + { + "uuid": "dc59c01a-9648-4a03-8a5c-008bdf85e006", + "start": { + "$date": "2022-06-23T01:38:28.000Z" + }, + "end": { + "$date": "2022-06-23T02:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "34052143-f180-42f8-b642-7460e1e046bb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-23T01:52:44.000Z" + }, + "end": { + "$date": "2022-06-23T03:12:50.000Z" + }, + "events": [ + { + "uuid": "cb343ed0-96c9-4cc0-a452-c463ebb11da1", + "start": { + "$date": "2022-06-23T01:52:44.000Z" + }, + "end": { + "$date": "2022-06-23T03:12:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "b93029b2-e26f-4d0c-a6c7-31d43325ec55", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-23T02:11:14.000Z" + }, + "end": { + "$date": "2022-06-23T03:00:01.000Z" + }, + "events": [ + { + "uuid": "e0e97243-d659-4206-a248-364c72c266bc", + "start": { + "$date": "2022-06-23T02:11:14.000Z" + }, + "end": { + "$date": "2022-06-23T03:00:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "a032e4f7-9d59-47b8-aaf7-eaf3296d6e38", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-23T02:20:12.000Z" + }, + "end": { + "$date": "2022-06-23T03:58:49.000Z" + }, + "events": [ + { + "uuid": "f90718dc-3c03-4ef2-b2a8-3d28ecb8c013", + "start": { + "$date": "2022-06-23T02:20:12.000Z" + }, + "end": { + "$date": "2022-06-23T03:58:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "503dc540-8add-49b4-9b1b-2c5ef33096c8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-23T02:30:58.000Z" + }, + "end": { + "$date": "2022-06-23T03:06:36.000Z" + }, + "events": [ + { + "uuid": "0d76c72c-de78-4b05-9ac8-312d83f4faeb", + "start": { + "$date": "2022-06-23T02:30:58.000Z" + }, + "end": { + "$date": "2022-06-23T03:06:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fbc04401-43bf-429d-bd3d-777654c3b796", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-23T03:13:05.000Z" + }, + "end": { + "$date": "2022-06-23T03:49:42.000Z" + }, + "events": [ + { + "uuid": "1e6250c4-770c-4926-899d-bdf842743c86", + "start": { + "$date": "2022-06-23T03:13:05.000Z" + }, + "end": { + "$date": "2022-06-23T03:49:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "273e3ee4-7645-4458-bb2f-778f6025cc9c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-23T03:48:34.000Z" + }, + "end": { + "$date": "2022-06-23T06:48:30.000Z" + }, + "events": [ + { + "uuid": "5682968c-6b04-4cdd-a061-2d451ad4ec98", + "start": { + "$date": "2022-06-23T03:48:34.000Z" + }, + "end": { + "$date": "2022-06-23T06:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "c7518075-a7d4-423b-a049-1799eb209905", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-23T03:59:09.000Z" + }, + "end": { + "$date": "2022-06-23T05:10:49.000Z" + }, + "events": [ + { + "uuid": "18181a6b-5ff8-4642-8bbc-4a344f13eaaf", + "start": { + "$date": "2022-06-23T03:59:09.000Z" + }, + "end": { + "$date": "2022-06-23T05:10:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4d8d9414-a6fa-4cc4-8858-fde3b9d2cb42", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-23T04:23:56.000Z" + }, + "end": { + "$date": "2022-06-23T06:48:39.000Z" + }, + "events": [ + { + "uuid": "80c9f2c2-0556-4d1c-9547-5482cb1d1b22", + "start": { + "$date": "2022-06-23T04:23:56.000Z" + }, + "end": { + "$date": "2022-06-23T06:48:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "a5cb1647-7b11-43dc-b569-aff283732029", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-23T06:06:05.000Z" + }, + "end": { + "$date": "2022-06-23T06:15:30.000Z" + }, + "events": [ + { + "uuid": "07f73326-aa88-403d-b2f0-0e2c1c071974", + "start": { + "$date": "2022-06-23T06:06:05.000Z" + }, + "end": { + "$date": "2022-06-23T06:15:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "30e3bf1d-c7ac-4ea0-9979-9b01290dda60", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-23T05:11:54.000Z" + }, + "end": { + "$date": "2022-06-23T06:29:48.000Z" + }, + "events": [ + { + "uuid": "5e94562f-348f-4637-b987-db4881147d56", + "start": { + "$date": "2022-06-23T05:11:54.000Z" + }, + "end": { + "$date": "2022-06-23T06:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7b0f0a8a-6ea9-4f64-8538-07722954ba11", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-23T17:09:23.000Z" + }, + "end": { + "$date": "2022-06-23T18:47:05.000Z" + }, + "events": [ + { + "uuid": "8b1bd092-b232-4626-b37e-6f6868e6ba06", + "start": { + "$date": "2022-06-23T17:09:23.000Z" + }, + "end": { + "$date": "2022-06-23T18:47:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "597da8c8-8ff9-4d6a-b87c-538a45c6586e", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-23T16:36:49.000Z" + }, + "end": { + "$date": "2022-06-23T17:49:17.000Z" + }, + "events": [ + { + "uuid": "9ce9deeb-3321-47f7-ae1f-d4796d63581a", + "start": { + "$date": "2022-06-23T16:36:49.000Z" + }, + "end": { + "$date": "2022-06-23T17:49:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "fce22dd4-fce2-4f50-8fdb-aec8d459dc34", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-23T16:48:56.000Z" + }, + "end": { + "$date": "2022-06-23T16:55:05.000Z" + }, + "events": [ + { + "uuid": "79797174-87ba-4634-a222-2dba1f7b1d76", + "start": { + "$date": "2022-06-23T16:48:56.000Z" + }, + "end": { + "$date": "2022-06-23T16:55:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df9316ce-72cf-49d9-86a8-453d801da4d1", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-23T18:09:02.000Z" + }, + "end": { + "$date": "2022-06-23T18:14:56.000Z" + }, + "events": [ + { + "uuid": "53b4c6f4-75c2-4ac8-8171-e62fc7a10107", + "start": { + "$date": "2022-06-23T18:09:02.000Z" + }, + "end": { + "$date": "2022-06-23T18:14:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "39e9f0d3-73c7-4406-9875-f2a2718c1d79", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-23T18:15:07.000Z" + }, + "end": { + "$date": "2022-06-23T18:55:19.000Z" + }, + "events": [ + { + "uuid": "c7556f48-2465-4b57-8c04-a88d4ed5ecae", + "start": { + "$date": "2022-06-23T18:15:07.000Z" + }, + "end": { + "$date": "2022-06-23T18:55:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "5150dd26-9d0c-4482-b14e-807b669897d2", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-23T21:48:08.000Z" + }, + "end": { + "$date": "2022-06-23T22:55:03.000Z" + }, + "events": [ + { + "uuid": "76ae5783-a170-4a02-a079-d2f3f10d2f74", + "start": { + "$date": "2022-06-23T21:48:08.000Z" + }, + "end": { + "$date": "2022-06-23T22:55:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "7ff0a2bb-3f5f-4b86-a3b2-7978c51e5d58", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-23T21:49:53.000Z" + }, + "end": { + "$date": "2022-06-23T22:09:58.000Z" + }, + "events": [ + { + "uuid": "642be861-e9e1-447e-8b15-00c4acf8e9b6", + "start": { + "$date": "2022-06-23T21:49:53.000Z" + }, + "end": { + "$date": "2022-06-23T22:09:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "f0974e0d-c660-4996-97b5-34ff73649158", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-23T22:13:44.000Z" + }, + "end": { + "$date": "2022-06-23T22:24:01.000Z" + }, + "events": [ + { + "uuid": "a3fbca14-db1f-4973-aa09-8a3f3f48914d", + "start": { + "$date": "2022-06-23T22:13:44.000Z" + }, + "end": { + "$date": "2022-06-23T22:24:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "848de920-c28d-41c7-8fb2-1f46596f4db8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-23T22:45:14.000Z" + }, + "end": { + "$date": "2022-06-24T00:13:00.000Z" + }, + "events": [ + { + "uuid": "bad501f8-7553-4126-86ca-6e6dfe8a167a", + "start": { + "$date": "2022-06-23T22:45:14.000Z" + }, + "end": { + "$date": "2022-06-24T00:13:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a4b20f07-c3eb-4b01-8e80-f49d5f82c999", + "uuid": "f5fffe78-78cb-468d-9b26-996726d1eba4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-23T22:50:49.000Z" + }, + "end": { + "$date": "2022-06-24T02:03:29.000Z" + }, + "events": [ + { + "uuid": "ebb256c4-46c6-4330-a266-f952bf8b3ad9", + "start": { + "$date": "2022-06-23T22:50:49.000Z" + }, + "end": { + "$date": "2022-06-24T02:03:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "59e4baaf-de0e-4854-b3a7-7b350018defb", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-23T23:57:02.000Z" + }, + "end": { + "$date": "2022-06-24T00:45:17.000Z" + }, + "events": [ + { + "uuid": "15545c83-d391-4f85-96b4-44af01f065d0", + "start": { + "$date": "2022-06-23T23:57:02.000Z" + }, + "end": { + "$date": "2022-06-24T00:25:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f97cdf94-24c9-444b-8608-6c37c4a8d50f", + "start": { + "$date": "2022-06-24T00:25:02.000Z" + }, + "end": { + "$date": "2022-06-24T00:32:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ff80eb03-a0e3-48e7-a38f-02fa1bf9e821", + "start": { + "$date": "2022-06-24T00:32:02.000Z" + }, + "end": { + "$date": "2022-06-24T00:45:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "5f47fde0-1173-44ea-b16b-ef238193ea51", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-24T00:18:50.000Z" + }, + "end": { + "$date": "2022-06-24T00:45:27.000Z" + }, + "events": [ + { + "uuid": "3abfd4b7-2811-40a1-a58c-d5f7bb9458ec", + "start": { + "$date": "2022-06-24T00:18:50.000Z" + }, + "end": { + "$date": "2022-06-24T00:45:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "17c9efc9-a45d-4e00-bbc1-9d1a707d53bc", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-24T01:03:29.000Z" + }, + "end": { + "$date": "2022-06-24T03:15:40.000Z" + }, + "events": [ + { + "uuid": "1eb3721a-f329-47ef-88ab-ea38debe6fb2", + "start": { + "$date": "2022-06-24T01:03:29.000Z" + }, + "end": { + "$date": "2022-06-24T03:15:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "48ea52b9-e8d2-40e5-b4a1-c6a7292a4e7e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-24T01:55:13.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:40.000Z" + }, + "events": [ + { + "uuid": "68da77d0-0264-4e88-ac18-b10e35ad5d5b", + "start": { + "$date": "2022-06-24T01:55:13.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3bece736-1f11-4e33-9b06-1dcdfd502941", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-24T01:58:50.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:22.000Z" + }, + "events": [ + { + "uuid": "325635e3-5cb2-4dd4-a898-06161e8f0f4a", + "start": { + "$date": "2022-06-24T01:58:50.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3ca5635c-2a49-4169-bd91-c54397dc1dc3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-24T02:22:04.000Z" + }, + "end": { + "$date": "2022-06-24T04:02:47.000Z" + }, + "events": [ + { + "uuid": "f8ce81e0-9080-4983-b2fb-880632f0c80a", + "start": { + "$date": "2022-06-24T02:22:04.000Z" + }, + "end": { + "$date": "2022-06-24T04:02:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "b9cc95ee-5430-4db2-84fe-77c4c6c12692", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-24T02:49:01.000Z" + }, + "end": { + "$date": "2022-06-24T03:07:12.000Z" + }, + "events": [ + { + "uuid": "4231e539-22e9-45af-b703-5b3e36b410f3", + "start": { + "$date": "2022-06-24T02:49:01.000Z" + }, + "end": { + "$date": "2022-06-24T03:07:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "fdcc2886-e47c-477c-86cc-e798a64dcf35", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-24T03:07:57.000Z" + }, + "end": { + "$date": "2022-06-24T06:03:02.000Z" + }, + "events": [ + { + "uuid": "8895438a-41b2-4548-8ba1-dc1728a91199", + "start": { + "$date": "2022-06-24T03:07:57.000Z" + }, + "end": { + "$date": "2022-06-24T06:03:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a7629671-b865-4158-9c03-a1ec49f77561", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-24T03:19:41.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:32.000Z" + }, + "events": [ + { + "uuid": "289276ca-75f2-4d58-a2d8-7577402177a5", + "start": { + "$date": "2022-06-24T03:19:41.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a9f2fc12-6ad6-4837-91da-ce351cb5f9bf", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-24T03:28:01.000Z" + }, + "end": { + "$date": "2022-06-24T05:58:33.000Z" + }, + "events": [ + { + "uuid": "4d7bf309-5ab4-40cd-a303-bda9284895ad", + "start": { + "$date": "2022-06-24T03:28:01.000Z" + }, + "end": { + "$date": "2022-06-24T05:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0a9aab4d-71cb-43ac-a8d9-0c04da277d17", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-24T03:32:11.000Z" + }, + "end": { + "$date": "2022-06-24T03:56:56.000Z" + }, + "events": [ + { + "uuid": "76f8bb08-7eeb-4d40-9040-173b495fe26f", + "start": { + "$date": "2022-06-24T03:32:11.000Z" + }, + "end": { + "$date": "2022-06-24T03:56:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "bab02299-dcd3-4028-a50b-f8590e208359", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-24T03:57:41.000Z" + }, + "end": { + "$date": "2022-06-24T04:37:33.000Z" + }, + "events": [ + { + "uuid": "f579ae3f-245b-4e58-b22b-c3665dfc5ce7", + "start": { + "$date": "2022-06-24T03:57:41.000Z" + }, + "end": { + "$date": "2022-06-24T04:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dcf71bdc-8d5b-4cdf-96ff-3873f9c86e8c", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-24T04:16:24.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:38.000Z" + }, + "events": [ + { + "uuid": "ea71e306-02b9-4c99-8d53-cde38eade415", + "start": { + "$date": "2022-06-24T04:16:24.000Z" + }, + "end": { + "$date": "2022-06-24T06:41:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "66fd24d5-8d8c-4de0-98c7-92a9b949fceb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-24T06:41:34.000Z" + }, + "end": { + "$date": "2022-06-24T06:48:25.000Z" + }, + "events": [ + { + "uuid": "93d19e2c-96d1-43af-8128-5227f7bc15b2", + "start": { + "$date": "2022-06-24T06:41:34.000Z" + }, + "end": { + "$date": "2022-06-24T06:48:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "85e70bb0-d93a-410e-82a1-74f4b79a2298", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-24T05:59:44.000Z" + }, + "end": { + "$date": "2022-06-24T06:02:24.000Z" + }, + "events": [ + { + "uuid": "00fda765-9936-473a-ba85-ec83eae1c69d", + "start": { + "$date": "2022-06-24T05:59:44.000Z" + }, + "end": { + "$date": "2022-06-24T06:02:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "7dcbd9b1-4128-4396-8c57-87d7b02fa154", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-24T06:09:45.000Z" + }, + "end": { + "$date": "2022-06-24T06:13:09.000Z" + }, + "events": [ + { + "uuid": "e3259148-ca4c-4bb2-8ef7-a9e2f8d75c74", + "start": { + "$date": "2022-06-24T06:09:45.000Z" + }, + "end": { + "$date": "2022-06-24T06:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "687abd32-77a5-4b49-93d0-793f8190807d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-24T06:19:56.000Z" + }, + "end": { + "$date": "2022-06-24T06:32:31.000Z" + }, + "events": [ + { + "uuid": "8584eb20-c06e-4963-8e9d-20b5cc074ce8", + "start": { + "$date": "2022-06-24T06:19:56.000Z" + }, + "end": { + "$date": "2022-06-24T06:32:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", + "uuid": "f0d24b19-4bef-47d3-b7d0-d5fe149407dd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-24T09:46:45.000Z" + }, + "end": { + "$date": "2022-06-24T11:23:58.000Z" + }, + "events": [ + { + "uuid": "179bee6c-d78c-4913-93d0-cdeccef31e10", + "start": { + "$date": "2022-06-24T09:46:45.000Z" + }, + "end": { + "$date": "2022-06-24T11:23:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "88df6fd9-8be6-41c4-b520-61530183dcab", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-24T17:00:15.000Z" + }, + "end": { + "$date": "2022-06-25T05:08:31.000Z" + }, + "events": [ + { + "uuid": "d31c9e6c-eb18-476e-9d5b-427350883ab9", + "start": { + "$date": "2022-06-24T17:00:15.000Z" + }, + "end": { + "$date": "2022-06-25T00:42:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6f184ba0-551f-484a-a3e8-c31b16b543eb", + "start": { + "$date": "2022-06-25T00:42:15.000Z" + }, + "end": { + "$date": "2022-06-25T00:56:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1a4fdcb9-4114-42f2-ba47-6b6a4d5fcaed", + "start": { + "$date": "2022-06-25T00:56:15.000Z" + }, + "end": { + "$date": "2022-06-25T01:09:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "368b2909-19cf-4b6b-9991-8756691ce2dd", + "start": { + "$date": "2022-06-25T01:09:15.000Z" + }, + "end": { + "$date": "2022-06-25T01:13:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8031f1d3-a5b2-4a66-8ec1-f2ed211edd4e", + "start": { + "$date": "2022-06-25T01:13:15.000Z" + }, + "end": { + "$date": "2022-06-25T02:18:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a4ef1c1c-d675-4c76-b858-da5ca4b809ec", + "start": { + "$date": "2022-06-25T02:18:15.000Z" + }, + "end": { + "$date": "2022-06-25T02:46:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c93c471-d145-4c17-891c-05600cfaf17e", + "start": { + "$date": "2022-06-25T02:46:15.000Z" + }, + "end": { + "$date": "2022-06-25T05:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "dfa044ea-fc4e-4301-b229-9c2dc7c11108", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-24T17:33:34.000Z" + }, + "end": { + "$date": "2022-06-24T20:01:28.000Z" + }, + "events": [ + { + "uuid": "0f36cc76-da1b-40a4-91c2-aa470ecc106d", + "start": { + "$date": "2022-06-24T17:33:34.000Z" + }, + "end": { + "$date": "2022-06-24T20:01:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "e7fc14bd-6d51-42e0-ac30-0532abf70585", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-24T18:19:58.000Z" + }, + "end": { + "$date": "2022-06-24T18:36:39.000Z" + }, + "events": [ + { + "uuid": "49414f3e-76c0-4a5e-8070-40c5ac8a9ff2", + "start": { + "$date": "2022-06-24T18:19:58.000Z" + }, + "end": { + "$date": "2022-06-24T18:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "f0c5f434-9f8c-4484-afae-15b709fed66e", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-24T20:12:12.000Z" + }, + "end": { + "$date": "2022-06-24T20:17:43.000Z" + }, + "events": [ + { + "uuid": "f135a525-7e0b-4497-a475-0ee440cc63ee", + "start": { + "$date": "2022-06-24T20:12:12.000Z" + }, + "end": { + "$date": "2022-06-24T20:17:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "9c2182ca-376d-4f55-a5a3-8f21e7c7eaa4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-24T22:31:04.000Z" + }, + "end": { + "$date": "2022-06-25T01:54:42.000Z" + }, + "events": [ + { + "uuid": "dc875bc0-f84f-447b-bb72-ba771d4852da", + "start": { + "$date": "2022-06-24T22:31:04.000Z" + }, + "end": { + "$date": "2022-06-25T01:54:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8aa4660d-5860-408b-a2d6-4bc2d3fb7cf8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-24T23:55:06.000Z" + }, + "end": { + "$date": "2022-06-25T01:00:55.000Z" + }, + "events": [ + { + "uuid": "28ba5d27-1cb4-41c6-a45b-7e710c0fdb83", + "start": { + "$date": "2022-06-24T23:55:06.000Z" + }, + "end": { + "$date": "2022-06-25T01:00:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "27517206-ef19-441a-aed6-d41cef531ac0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-25T00:30:43.000Z" + }, + "end": { + "$date": "2022-06-25T01:53:18.000Z" + }, + "events": [ + { + "uuid": "f04daa06-971c-4cfc-9a77-907a0f2f2d45", + "start": { + "$date": "2022-06-25T00:30:43.000Z" + }, + "end": { + "$date": "2022-06-25T01:53:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fcf881e7-cce9-4934-8bd8-16ee38482443", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-25T01:40:09.000Z" + }, + "end": { + "$date": "2022-06-25T02:03:39.000Z" + }, + "events": [ + { + "uuid": "ddd6f8fb-5f25-4102-b815-1db1f6d5a623", + "start": { + "$date": "2022-06-25T01:40:09.000Z" + }, + "end": { + "$date": "2022-06-25T02:03:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "947fa04c-4528-46e3-bb1c-261d4441a3da", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-25T01:43:54.000Z" + }, + "end": { + "$date": "2022-06-25T06:45:33.000Z" + }, + "events": [ + { + "uuid": "8a19590c-f059-43e9-b4cf-7143204be9b5", + "start": { + "$date": "2022-06-25T01:43:54.000Z" + }, + "end": { + "$date": "2022-06-25T06:45:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "64b5dfa9-16b8-489c-bfbc-a9e6af75f416", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-25T02:03:48.000Z" + }, + "end": { + "$date": "2022-06-25T06:45:37.000Z" + }, + "events": [ + { + "uuid": "25bd3cfe-8727-4382-b4da-9553020c0ef4", + "start": { + "$date": "2022-06-25T02:03:48.000Z" + }, + "end": { + "$date": "2022-06-25T06:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "daab98b7-908b-446d-b779-38a7549564d5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-25T02:28:26.000Z" + }, + "end": { + "$date": "2022-06-25T02:55:48.000Z" + }, + "events": [ + { + "uuid": "4f3c2f56-c0ba-43e4-ba28-0ea02bd17d9b", + "start": { + "$date": "2022-06-25T02:28:26.000Z" + }, + "end": { + "$date": "2022-06-25T02:55:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bdef0b75-003d-47a0-ab67-5cc12e6085cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-25T03:09:00.000Z" + }, + "end": { + "$date": "2022-06-25T06:06:40.000Z" + }, + "events": [ + { + "uuid": "9a143ba3-7a90-47c1-8d3f-7cb040b6f326", + "start": { + "$date": "2022-06-25T03:09:00.000Z" + }, + "end": { + "$date": "2022-06-25T06:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "12a2e6a1-d363-44d7-b6c2-d8ea262ba45a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-25T03:49:30.000Z" + }, + "end": { + "$date": "2022-06-25T06:20:19.000Z" + }, + "events": [ + { + "uuid": "2cc42d8c-241e-4da0-b463-160309e77d93", + "start": { + "$date": "2022-06-25T03:49:30.000Z" + }, + "end": { + "$date": "2022-06-25T06:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "01b427e6-5789-4b90-86ce-9d1e277af926", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-25T05:10:40.000Z" + }, + "end": { + "$date": "2022-06-25T06:27:34.000Z" + }, + "events": [ + { + "uuid": "4a3cb25d-aafd-44ef-89ef-e0d4b5dea06d", + "start": { + "$date": "2022-06-25T05:10:40.000Z" + }, + "end": { + "$date": "2022-06-25T06:27:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c743cd14-7504-4b38-a05d-97fbe06cd783", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-25T05:17:49.000Z" + }, + "end": { + "$date": "2022-06-25T06:19:40.000Z" + }, + "events": [ + { + "uuid": "bf29786e-220e-49dc-bced-3e98e24887da", + "start": { + "$date": "2022-06-25T05:17:49.000Z" + }, + "end": { + "$date": "2022-06-25T06:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "197f27c8-dac3-4847-ae99-37a320977d3e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-25T06:28:29.000Z" + }, + "end": { + "$date": "2022-06-25T06:31:10.000Z" + }, + "events": [ + { + "uuid": "ccac8a41-8b7e-42f2-9576-9aa660c3a767", + "start": { + "$date": "2022-06-25T06:28:29.000Z" + }, + "end": { + "$date": "2022-06-25T06:31:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "efa85d62-71cd-49a9-9a3d-d57e77dccb4c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-25T06:34:55.000Z" + }, + "end": { + "$date": "2022-06-25T07:04:38.000Z" + }, + "events": [ + { + "uuid": "e5aa1e8c-829f-420a-b232-a7361a8120ec", + "start": { + "$date": "2022-06-25T06:34:55.000Z" + }, + "end": { + "$date": "2022-06-25T07:04:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "2831794c-82ee-4625-84ef-9f3bae459221", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-25T06:57:10.000Z" + }, + "end": { + "$date": "2022-06-25T07:06:23.000Z" + }, + "events": [ + { + "uuid": "2eafe445-b1c6-4dbe-af00-f8a62817c548", + "start": { + "$date": "2022-06-25T06:57:10.000Z" + }, + "end": { + "$date": "2022-06-25T07:06:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "c56af16d-84d2-4c4d-8bfc-b1fd16f9a208", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-25T06:58:29.000Z" + }, + "end": { + "$date": "2022-06-25T07:06:10.000Z" + }, + "events": [ + { + "uuid": "c972b660-07a6-4dff-978d-d740ee24c399", + "start": { + "$date": "2022-06-25T06:58:29.000Z" + }, + "end": { + "$date": "2022-06-25T07:06:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3d27dfe3-1770-4b78-b10b-494c66a8e63f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-25T07:05:43.000Z" + }, + "end": { + "$date": "2022-06-25T07:36:50.000Z" + }, + "events": [ + { + "uuid": "05911d32-fc77-4f2c-9ebb-f66864359156", + "start": { + "$date": "2022-06-25T07:05:43.000Z" + }, + "end": { + "$date": "2022-06-25T07:36:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "4361348c-7f22-400e-93e7-328674b58603", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-25T07:20:47.000Z" + }, + "end": { + "$date": "2022-06-25T08:46:07.000Z" + }, + "events": [ + { + "uuid": "d9d6c314-5c0a-4195-a584-bd207f3b9b68", + "start": { + "$date": "2022-06-25T07:20:47.000Z" + }, + "end": { + "$date": "2022-06-25T08:46:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "e76eb15c-0447-4076-a2a5-8285196caf08", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-25T07:37:35.000Z" + }, + "end": { + "$date": "2022-06-25T07:47:17.000Z" + }, + "events": [ + { + "uuid": "984cb3a2-7f61-42f3-b729-5795529bc3c6", + "start": { + "$date": "2022-06-25T07:37:35.000Z" + }, + "end": { + "$date": "2022-06-25T07:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "3ec483bf-4656-4ff2-9e93-212cc29e8193", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-25T11:33:04.000Z" + }, + "end": { + "$date": "2022-06-25T12:36:28.000Z" + }, + "events": [ + { + "uuid": "d6249516-c53a-45e7-a70d-f4e955bd06bd", + "start": { + "$date": "2022-06-25T11:33:04.000Z" + }, + "end": { + "$date": "2022-06-25T12:36:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7ebce693-dafe-4c0d-9ec6-80ccf2d5fd8b", + "uuid": "25350a8a-16d6-44cd-a5dc-557abc2890c6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-25T13:56:33.000Z" + }, + "end": { + "$date": "2022-06-25T14:22:34.000Z" + }, + "events": [ + { + "uuid": "c0340e66-b75e-4c4d-87ca-a3dfa947c2c3", + "start": { + "$date": "2022-06-25T13:56:33.000Z" + }, + "end": { + "$date": "2022-06-25T14:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "5ec2d32b-b79b-457d-835a-92b64e51750d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-25T14:32:29.000Z" + }, + "end": { + "$date": "2022-06-25T14:38:00.000Z" + }, + "events": [ + { + "uuid": "4ff00553-31c8-463c-af48-3c7e0998599d", + "start": { + "$date": "2022-06-25T14:32:29.000Z" + }, + "end": { + "$date": "2022-06-25T14:38:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "88e69321-beae-483d-8773-624ab3c99d55", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-25T14:48:55.000Z" + }, + "end": { + "$date": "2022-06-25T17:44:58.000Z" + }, + "events": [ + { + "uuid": "63ef47f5-2d94-4272-a286-14b92087e079", + "start": { + "$date": "2022-06-25T14:48:55.000Z" + }, + "end": { + "$date": "2022-06-25T17:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", + "uuid": "a53e815a-262d-41bc-ad3b-1c600d4d962a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-25T16:31:15.000Z" + }, + "end": { + "$date": "2022-06-25T21:14:39.000Z" + }, + "events": [ + { + "uuid": "06a2734a-92a2-4fbf-a87c-24ddd6bcebfc", + "start": { + "$date": "2022-06-25T16:31:15.000Z" + }, + "end": { + "$date": "2022-06-25T21:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7c8f0564-5751-4824-a9a0-f48d4a684bec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-25T16:53:24.000Z" + }, + "end": { + "$date": "2022-06-25T17:08:47.000Z" + }, + "events": [ + { + "uuid": "6b514c8e-2426-43bc-a525-837cc0f0ee72", + "start": { + "$date": "2022-06-25T16:53:24.000Z" + }, + "end": { + "$date": "2022-06-25T17:08:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "23fa87fa-6769-43d6-9469-6e322e4e5184", + "uuid": "0a42631e-2751-40ff-90a5-21b3a52e3938", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-25T18:42:22.000Z" + }, + "end": { + "$date": "2022-06-25T18:49:12.000Z" + }, + "events": [ + { + "uuid": "db657a3a-418e-46b8-a5a5-91d34921d8a9", + "start": { + "$date": "2022-06-25T18:42:22.000Z" + }, + "end": { + "$date": "2022-06-25T18:49:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3bd30fee-0bd5-41f1-a118-c692959cae5c", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-25T19:02:34.000Z" + }, + "end": { + "$date": "2022-06-25T20:18:34.000Z" + }, + "events": [ + { + "uuid": "22daf264-f1f7-4fea-9f8c-1fa1e0e446b7", + "start": { + "$date": "2022-06-25T19:02:34.000Z" + }, + "end": { + "$date": "2022-06-25T19:34:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4567b58e-a4dc-4884-9280-736a814fe691", + "start": { + "$date": "2022-06-25T19:34:34.000Z" + }, + "end": { + "$date": "2022-06-25T19:47:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ca5fb3c0-6f45-4dc0-bc80-b1885d11f196", + "start": { + "$date": "2022-06-25T19:47:34.000Z" + }, + "end": { + "$date": "2022-06-25T20:18:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "12752e0a-c244-4e07-80b7-4fd97c9443e1", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-25T19:47:33.000Z" + }, + "end": { + "$date": "2022-06-25T19:48:38.000Z" + }, + "events": [ + { + "uuid": "9a3d1fc9-86c2-4695-ab02-6293ab74facf", + "start": { + "$date": "2022-06-25T19:47:33.000Z" + }, + "end": { + "$date": "2022-06-25T19:48:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "01eb4ef6-a596-4083-8765-ccefb842c3d0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-25T19:57:34.000Z" + }, + "end": { + "$date": "2022-06-25T20:03:35.000Z" + }, + "events": [ + { + "uuid": "905f5624-9914-4fb0-b144-9ecb75419ed6", + "start": { + "$date": "2022-06-25T19:57:34.000Z" + }, + "end": { + "$date": "2022-06-25T20:03:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "f69f5859-f202-4003-b09c-aa505bac4627", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-25T19:02:34.000Z" + }, + "end": { + "$date": "2022-06-25T20:31:32.000Z" + }, + "events": [ + { + "uuid": "25ca7888-06f8-4e58-8bd5-241ac3e40e31", + "start": { + "$date": "2022-06-25T19:02:34.000Z" + }, + "end": { + "$date": "2022-06-25T19:04:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "714f7844-e099-4ebd-866b-593791f279f1", + "start": { + "$date": "2022-06-25T19:04:34.000Z" + }, + "end": { + "$date": "2022-06-25T20:31:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "abb8f99a-690e-4f5c-aeba-5b99ab7ff5df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-25T20:59:31.000Z" + }, + "end": { + "$date": "2022-06-25T22:20:26.000Z" + }, + "events": [ + { + "uuid": "46349775-76b9-4f92-ab78-913f2dfcaf96", + "start": { + "$date": "2022-06-25T20:59:31.000Z" + }, + "end": { + "$date": "2022-06-25T22:20:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "64525b47-76ac-4753-bfb8-ef0dc4231714", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-25T21:14:59.000Z" + }, + "end": { + "$date": "2022-06-25T21:17:54.000Z" + }, + "events": [ + { + "uuid": "51af2e75-5674-468c-80c6-033ea5055509", + "start": { + "$date": "2022-06-25T21:14:59.000Z" + }, + "end": { + "$date": "2022-06-25T21:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "bcc25273-b508-4cb8-be61-ff0b51d7bf89", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-25T21:18:04.000Z" + }, + "end": { + "$date": "2022-06-25T22:08:10.000Z" + }, + "events": [ + { + "uuid": "135b28ad-c3ef-4f0c-b175-ec3418607c29", + "start": { + "$date": "2022-06-25T21:18:04.000Z" + }, + "end": { + "$date": "2022-06-25T22:08:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8f31195b-d02d-443a-a66c-d5f1ea498fc8", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-25T23:20:02.000Z" + }, + "end": { + "$date": "2022-06-25T23:40:55.000Z" + }, + "events": [ + { + "uuid": "ff06b4f8-9aae-4223-8a9b-5060f1024832", + "start": { + "$date": "2022-06-25T23:20:02.000Z" + }, + "end": { + "$date": "2022-06-25T23:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cb92eba3-625b-4855-a597-d3aa40b20fa3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-25T23:45:03.000Z" + }, + "end": { + "$date": "2022-06-25T23:50:40.000Z" + }, + "events": [ + { + "uuid": "4ed917b9-c3fc-4e92-8ddc-43273f1b746d", + "start": { + "$date": "2022-06-25T23:45:03.000Z" + }, + "end": { + "$date": "2022-06-25T23:50:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "f5692c5d-b321-400c-b74e-1a62ab1d8b62", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-25T23:55:42.000Z" + }, + "end": { + "$date": "2022-06-26T01:17:12.000Z" + }, + "events": [ + { + "uuid": "6ea87b2e-0413-4c24-beef-4d3636dad807", + "start": { + "$date": "2022-06-25T23:55:42.000Z" + }, + "end": { + "$date": "2022-06-26T01:17:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "206515bc-a55d-4164-abf7-359f330b4cbd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-26T00:02:12.000Z" + }, + "end": { + "$date": "2022-06-26T01:55:40.000Z" + }, + "events": [ + { + "uuid": "58bec1d4-2673-460f-823d-f942ed339434", + "start": { + "$date": "2022-06-26T00:02:12.000Z" + }, + "end": { + "$date": "2022-06-26T01:55:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "62b975ed-b40a-4c74-9c07-3bed9193783c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-26T00:02:23.000Z" + }, + "end": { + "$date": "2022-06-26T01:47:17.000Z" + }, + "events": [ + { + "uuid": "abd11c55-d940-494b-9b7f-a55c6c3622f7", + "start": { + "$date": "2022-06-26T00:02:23.000Z" + }, + "end": { + "$date": "2022-06-26T01:47:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "0ee3e44e-f88f-460f-beb5-71197ac9a52d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-26T00:56:58.000Z" + }, + "end": { + "$date": "2022-06-26T01:01:28.000Z" + }, + "events": [ + { + "uuid": "6c5a9f21-84fb-4135-9eff-1719dc19b057", + "start": { + "$date": "2022-06-26T00:56:58.000Z" + }, + "end": { + "$date": "2022-06-26T01:01:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2c5f6998-321d-4e7e-aeab-b5619c60d27e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-26T01:13:28.000Z" + }, + "end": { + "$date": "2022-06-26T03:43:49.000Z" + }, + "events": [ + { + "uuid": "0d72fa7f-4177-4bad-8ad3-528ded20654b", + "start": { + "$date": "2022-06-26T01:13:28.000Z" + }, + "end": { + "$date": "2022-06-26T03:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "6ced1f2f-b317-40d7-a622-e008761b93d4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-26T01:36:49.000Z" + }, + "end": { + "$date": "2022-06-26T09:22:08.000Z" + }, + "events": [ + { + "uuid": "b0f46f17-b019-4329-a73d-b871a94adb53", + "start": { + "$date": "2022-06-26T01:36:49.000Z" + }, + "end": { + "$date": "2022-06-26T09:22:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "f7604a9c-cf2f-4f24-a637-d64eec5a8be2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-26T01:56:10.000Z" + }, + "end": { + "$date": "2022-06-26T05:52:50.000Z" + }, + "events": [ + { + "uuid": "0432b932-0496-4f0c-a4d3-5bc3b326ab02", + "start": { + "$date": "2022-06-26T01:56:10.000Z" + }, + "end": { + "$date": "2022-06-26T05:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6267a5e8-bc0e-4527-b887-b837da94d63f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-26T03:43:08.000Z" + }, + "end": { + "$date": "2022-06-26T04:40:44.000Z" + }, + "events": [ + { + "uuid": "3154704d-e911-46b1-9019-806faee05411", + "start": { + "$date": "2022-06-26T03:43:08.000Z" + }, + "end": { + "$date": "2022-06-26T04:40:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0696f3a0-318f-46b0-a080-a26368ed1080", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-26T03:22:19.000Z" + }, + "end": { + "$date": "2022-06-26T06:10:25.000Z" + }, + "events": [ + { + "uuid": "eb50dc96-daf5-4c6a-84cb-cf956eb79c4a", + "start": { + "$date": "2022-06-26T03:22:19.000Z" + }, + "end": { + "$date": "2022-06-26T06:10:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a92fa771-acba-4762-bbd0-cdaed27fd777", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-26T03:26:39.000Z" + }, + "end": { + "$date": "2022-06-26T03:30:49.000Z" + }, + "events": [ + { + "uuid": "4fde8a09-e562-458e-bb10-a4b868d87e36", + "start": { + "$date": "2022-06-26T03:26:39.000Z" + }, + "end": { + "$date": "2022-06-26T03:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "378485f7-515a-4465-930a-3f76f62240ad", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-26T03:31:25.000Z" + }, + "end": { + "$date": "2022-06-26T07:13:59.000Z" + }, + "events": [ + { + "uuid": "a5ca14f9-da2d-4532-9f16-a6e3aadc1fd8", + "start": { + "$date": "2022-06-26T03:31:25.000Z" + }, + "end": { + "$date": "2022-06-26T07:13:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "1ddb3900-b8ce-4f84-a90e-d01d46a2e2e1", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-06-26T04:20:25.000Z" + }, + "end": { + "$date": "2022-06-26T05:43:31.000Z" + }, + "events": [ + { + "uuid": "f37be7a0-f575-4b34-8f5e-05e90691d208", + "start": { + "$date": "2022-06-26T04:20:25.000Z" + }, + "end": { + "$date": "2022-06-26T05:43:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e428ae87-dfc2-49ca-bba0-0edbc384aaf2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-26T04:23:51.000Z" + }, + "end": { + "$date": "2022-06-26T05:20:36.000Z" + }, + "events": [ + { + "uuid": "c8379d5d-0b70-4ab7-b80f-299af4ce7cb7", + "start": { + "$date": "2022-06-26T04:23:51.000Z" + }, + "end": { + "$date": "2022-06-26T05:20:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d536f5b9-f3a5-448b-99f9-7bc6567491d2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-26T04:55:01.000Z" + }, + "end": { + "$date": "2022-06-26T05:11:22.000Z" + }, + "events": [ + { + "uuid": "f2e7a873-88a0-43f6-a005-41f63d7a29ba", + "start": { + "$date": "2022-06-26T04:55:01.000Z" + }, + "end": { + "$date": "2022-06-26T05:11:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "62a2c0f0-5342-49e5-9b52-0f6cba14a41a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-26T06:07:26.000Z" + }, + "end": { + "$date": "2022-06-26T06:35:51.000Z" + }, + "events": [ + { + "uuid": "43bd169b-7274-48a1-b28b-db82b8e45d6a", + "start": { + "$date": "2022-06-26T06:07:26.000Z" + }, + "end": { + "$date": "2022-06-26T06:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4f88371-0745-4e4d-a349-5427411c0cdc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-26T06:08:55.000Z" + }, + "end": { + "$date": "2022-06-26T07:00:56.000Z" + }, + "events": [ + { + "uuid": "52d8c4bd-6107-45b4-bb79-46c8196ef3a1", + "start": { + "$date": "2022-06-26T06:08:55.000Z" + }, + "end": { + "$date": "2022-06-26T07:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "256da817-b4f9-440c-a357-adaf00a6edba", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-26T06:11:04.000Z" + }, + "end": { + "$date": "2022-06-26T08:07:52.000Z" + }, + "events": [ + { + "uuid": "2fd6cc64-8d68-4b11-9873-8339f4a13066", + "start": { + "$date": "2022-06-26T06:11:04.000Z" + }, + "end": { + "$date": "2022-06-26T08:07:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "9aedf7d1-8eb1-4dd4-b7ff-91976d133a9a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-26T06:30:01.000Z" + }, + "end": { + "$date": "2022-06-26T07:08:54.000Z" + }, + "events": [ + { + "uuid": "90a1fb9a-15ee-4faf-81e0-0fdd458643a2", + "start": { + "$date": "2022-06-26T06:30:01.000Z" + }, + "end": { + "$date": "2022-06-26T07:08:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "b52752b7-f231-4343-a1e7-d87f7a1878f2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-26T06:53:35.000Z" + }, + "end": { + "$date": "2022-06-26T07:24:15.000Z" + }, + "events": [ + { + "uuid": "42049dc3-cec9-4875-a864-ca6a95f2034e", + "start": { + "$date": "2022-06-26T06:53:35.000Z" + }, + "end": { + "$date": "2022-06-26T07:24:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0eb17cf5-c260-4d82-a4c7-33eefe9538b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-26T07:14:48.000Z" + }, + "end": { + "$date": "2022-06-26T08:05:25.000Z" + }, + "events": [ + { + "uuid": "f7b9442d-5a45-4a8b-a117-9ff4d3797183", + "start": { + "$date": "2022-06-26T07:14:48.000Z" + }, + "end": { + "$date": "2022-06-26T08:05:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "c036aac2-d0d2-4a11-87ba-7a64f8d4ef30", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-26T01:36:49.000Z" + }, + "end": { + "$date": "2022-06-26T14:59:30.000Z" + }, + "events": [ + { + "uuid": "e9cb70c6-cece-4378-bbf7-f42940b08d3e", + "start": { + "$date": "2022-06-26T01:36:49.000Z" + }, + "end": { + "$date": "2022-06-26T14:59:30.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a02c325-4d71-4bdd-9233-204cf524bd1e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-26T12:24:03.000Z" + }, + "end": { + "$date": "2022-06-26T13:27:22.000Z" + }, + "events": [ + { + "uuid": "7ce71202-74ab-4255-8bb5-01e150c69f27", + "start": { + "$date": "2022-06-26T12:24:03.000Z" + }, + "end": { + "$date": "2022-06-26T13:20:03.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ae058686-1253-4aa2-b45a-05e7beb3e8a0", + "start": { + "$date": "2022-06-26T13:20:03.000Z" + }, + "end": { + "$date": "2022-06-26T13:23:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4e143769-8ba4-4615-a02e-6557a1be27cb", + "start": { + "$date": "2022-06-26T13:23:03.000Z" + }, + "end": { + "$date": "2022-06-26T13:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5da36a17-26f7-4b35-931a-ae1112ffe11a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-26T13:29:13.000Z" + }, + "end": { + "$date": "2022-06-26T14:14:14.000Z" + }, + "events": [ + { + "uuid": "583292db-63b5-47f8-9fa2-cacf7d5be412", + "start": { + "$date": "2022-06-26T13:29:13.000Z" + }, + "end": { + "$date": "2022-06-26T14:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "ae56e2ac-dda7-4278-92c3-a4405a817548", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-26T19:06:18.000Z" + }, + "end": { + "$date": "2022-06-26T19:31:36.000Z" + }, + "events": [ + { + "uuid": "98e20a89-3f51-4085-bf0c-3cb8bbb70e0c", + "start": { + "$date": "2022-06-26T19:06:18.000Z" + }, + "end": { + "$date": "2022-06-26T19:31:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "59f06f97-a97f-48d2-aa60-ca0a8e8b5bb7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-26T19:32:05.000Z" + }, + "end": { + "$date": "2022-06-26T22:23:43.000Z" + }, + "events": [ + { + "uuid": "e5f68d20-4732-433f-9f40-07e7755b8c50", + "start": { + "$date": "2022-06-26T19:32:05.000Z" + }, + "end": { + "$date": "2022-06-26T22:23:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "0cf94666-4edf-4517-9d10-793e2d2db388", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-26T20:21:03.000Z" + }, + "end": { + "$date": "2022-06-26T22:22:44.000Z" + }, + "events": [ + { + "uuid": "208694d6-e9c9-4139-9316-c7aa64b1373a", + "start": { + "$date": "2022-06-26T20:21:03.000Z" + }, + "end": { + "$date": "2022-06-26T22:22:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "28f1683f-9137-4f45-9965-ebfc1a527c71", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-26T20:59:02.000Z" + }, + "end": { + "$date": "2022-06-27T00:59:07.000Z" + }, + "events": [ + { + "uuid": "a13bf13c-5fa8-4a1c-8e2e-fbd60d6d7f69", + "start": { + "$date": "2022-06-26T20:59:02.000Z" + }, + "end": { + "$date": "2022-06-27T00:59:07.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "4e95d443-1b3e-4cbe-a5df-c4a68b65b510", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-26T21:08:57.000Z" + }, + "end": { + "$date": "2022-06-27T00:58:12.000Z" + }, + "events": [ + { + "uuid": "4085ff0f-8df7-4f24-98c7-2b2c3da7899a", + "start": { + "$date": "2022-06-26T21:08:57.000Z" + }, + "end": { + "$date": "2022-06-27T00:58:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "4a7d000f-894a-47e1-8683-50f9f23eac78", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-26T21:09:55.000Z" + }, + "end": { + "$date": "2022-06-27T00:58:10.000Z" + }, + "events": [ + { + "uuid": "44bddce6-5900-458f-8f7c-8b68b0e73e8c", + "start": { + "$date": "2022-06-26T21:09:55.000Z" + }, + "end": { + "$date": "2022-06-27T00:58:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a6ba3e7f-b451-4045-bfc0-6f7cb489e11f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-26T21:56:27.000Z" + }, + "end": { + "$date": "2022-06-26T22:26:07.000Z" + }, + "events": [ + { + "uuid": "8762192b-2199-4ca6-90c1-7491afb21aa1", + "start": { + "$date": "2022-06-26T21:56:27.000Z" + }, + "end": { + "$date": "2022-06-26T22:26:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7ca40993-6507-471e-90eb-21fa11d3d5c8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-26T21:58:34.000Z" + }, + "end": { + "$date": "2022-06-26T22:01:44.000Z" + }, + "events": [ + { + "uuid": "1fd7e0cf-2973-471b-8ced-fdd7fd87ceb2", + "start": { + "$date": "2022-06-26T21:58:34.000Z" + }, + "end": { + "$date": "2022-06-26T22:01:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "d67c5b32-e00a-4246-bb11-f60ed2b1faf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-26T22:09:44.000Z" + }, + "end": { + "$date": "2022-06-26T23:19:38.000Z" + }, + "events": [ + { + "uuid": "89463a6b-98cb-4249-965e-20452cf5b620", + "start": { + "$date": "2022-06-26T22:09:44.000Z" + }, + "end": { + "$date": "2022-06-26T23:19:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6e024cf-54cc-4b33-90a1-5960436ffcec", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-26T22:45:47.000Z" + }, + "end": { + "$date": "2022-06-26T22:47:28.000Z" + }, + "events": [ + { + "uuid": "14f7160e-4383-46c8-a3b2-a45c60acc5e6", + "start": { + "$date": "2022-06-26T22:45:47.000Z" + }, + "end": { + "$date": "2022-06-26T22:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "60bce0c6-974e-4088-bbf5-a188d205b5d6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-26T23:07:50.000Z" + }, + "end": { + "$date": "2022-06-26T23:09:45.000Z" + }, + "events": [ + { + "uuid": "79f00572-9d8e-4235-be14-13698a86d469", + "start": { + "$date": "2022-06-26T23:07:50.000Z" + }, + "end": { + "$date": "2022-06-26T23:09:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "40649b52-072f-4e1b-9a3b-732b94caf006", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-26T23:09:55.000Z" + }, + "end": { + "$date": "2022-06-26T23:12:10.000Z" + }, + "events": [ + { + "uuid": "7fcbd4e2-9ea7-4740-918c-771386e66906", + "start": { + "$date": "2022-06-26T23:09:55.000Z" + }, + "end": { + "$date": "2022-06-26T23:12:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "48ce7ca2-d832-498d-86eb-7bb2e149fbef", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-26T23:15:28.000Z" + }, + "end": { + "$date": "2022-06-26T23:23:38.000Z" + }, + "events": [ + { + "uuid": "bfccf9a0-21dc-4596-8f4e-094e7c5e56fc", + "start": { + "$date": "2022-06-26T23:15:28.000Z" + }, + "end": { + "$date": "2022-06-26T23:23:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d8ea56dd-c586-419d-950d-5ebfdfe08be1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-26T23:25:33.000Z" + }, + "end": { + "$date": "2022-06-27T00:16:38.000Z" + }, + "events": [ + { + "uuid": "ae100fef-7243-42ad-8836-f2d9a1d1a8c2", + "start": { + "$date": "2022-06-26T23:25:33.000Z" + }, + "end": { + "$date": "2022-06-26T23:39:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2ddfcc7e-44ef-4b77-b2fc-38c9c2945898", + "start": { + "$date": "2022-06-26T23:39:33.000Z" + }, + "end": { + "$date": "2022-06-26T23:44:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d5373b4a-e0d3-4730-bea5-4fec066a6de0", + "start": { + "$date": "2022-06-26T23:44:33.000Z" + }, + "end": { + "$date": "2022-06-27T00:00:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2bea3b3f-6bd3-495f-934a-fcb9527347af", + "start": { + "$date": "2022-06-27T00:00:33.000Z" + }, + "end": { + "$date": "2022-06-27T00:16:38.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "07894d24-31a3-4885-ab6c-3864cb586cd9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-27T00:25:10.000Z" + }, + "end": { + "$date": "2022-06-27T00:49:56.000Z" + }, + "events": [ + { + "uuid": "0a74f554-e110-4685-aefb-60df62cacba9", + "start": { + "$date": "2022-06-27T00:25:10.000Z" + }, + "end": { + "$date": "2022-06-27T00:49:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "bb24df38-45cf-4d12-b023-3dd1316bc642", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-27T00:52:02.000Z" + }, + "end": { + "$date": "2022-06-27T02:15:53.000Z" + }, + "events": [ + { + "uuid": "3ff14c60-48ba-4506-94e0-4f28a1cf8a75", + "start": { + "$date": "2022-06-27T00:52:02.000Z" + }, + "end": { + "$date": "2022-06-27T02:15:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "867c00aa-f308-4854-9e62-273ccfb11946", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-27T01:48:24.000Z" + }, + "end": { + "$date": "2022-06-27T08:07:41.000Z" + }, + "events": [ + { + "uuid": "06904551-cc20-4a63-b0bd-9502ea767f7a", + "start": { + "$date": "2022-06-27T01:48:24.000Z" + }, + "end": { + "$date": "2022-06-27T08:07:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6d5b1fcd-21a2-4585-a2a8-c41b91d83f8d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-27T02:00:48.000Z" + }, + "end": { + "$date": "2022-06-27T02:46:43.000Z" + }, + "events": [ + { + "uuid": "8ca8b2b9-81e4-4709-af0b-f8dd9944c9af", + "start": { + "$date": "2022-06-27T02:00:48.000Z" + }, + "end": { + "$date": "2022-06-27T02:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "06fbee21-6370-496b-9b30-22403e66998b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-27T02:19:44.000Z" + }, + "end": { + "$date": "2022-06-27T05:17:55.000Z" + }, + "events": [ + { + "uuid": "4ed82e95-3cf4-491f-8d8b-c1609c58d85d", + "start": { + "$date": "2022-06-27T02:19:44.000Z" + }, + "end": { + "$date": "2022-06-27T05:17:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "098be574-48e5-4d77-81e8-9cec7433802e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-27T02:38:03.000Z" + }, + "end": { + "$date": "2022-06-27T02:57:24.000Z" + }, + "events": [ + { + "uuid": "b986506f-d3b6-4b41-8c58-5ea0745e98bb", + "start": { + "$date": "2022-06-27T02:38:03.000Z" + }, + "end": { + "$date": "2022-06-27T02:57:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cbc1cc24-c621-4b22-9e28-fa82ee13ce72", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-27T03:00:57.000Z" + }, + "end": { + "$date": "2022-06-27T03:28:18.000Z" + }, + "events": [ + { + "uuid": "c4fb2ee6-37ec-47b4-92d6-ebfd624846a0", + "start": { + "$date": "2022-06-27T03:00:57.000Z" + }, + "end": { + "$date": "2022-06-27T03:28:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1a11d46c-6ca1-4ae6-a6b6-1a8b0b44ac4f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-27T03:47:42.000Z" + }, + "end": { + "$date": "2022-06-27T05:18:20.000Z" + }, + "events": [ + { + "uuid": "4b10ebdf-0ec8-4f19-b745-29dd9e1c8b1f", + "start": { + "$date": "2022-06-27T03:47:42.000Z" + }, + "end": { + "$date": "2022-06-27T05:18:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "892efb13-bbd3-46d3-8ad4-ef4cde2e49c0", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-27T04:27:46.000Z" + }, + "end": { + "$date": "2022-06-27T04:29:11.000Z" + }, + "events": [ + { + "uuid": "32d704e6-7c37-4502-8d36-be478d8e4e6a", + "start": { + "$date": "2022-06-27T04:27:46.000Z" + }, + "end": { + "$date": "2022-06-27T04:29:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "adf8a6dd-a26e-4fca-99d5-b2305b0e82fa", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-27T04:29:26.000Z" + }, + "end": { + "$date": "2022-06-27T05:13:28.000Z" + }, + "events": [ + { + "uuid": "2122e46e-fccc-41d3-af50-5d5bd6d6da6b", + "start": { + "$date": "2022-06-27T04:29:26.000Z" + }, + "end": { + "$date": "2022-06-27T05:13:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "95af1c0f-d6d7-4f66-887a-1b6a57d21db1", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-27T04:38:54.000Z" + }, + "end": { + "$date": "2022-06-27T07:11:38.000Z" + }, + "events": [ + { + "uuid": "f9f3391c-07dc-449f-820b-970a18b6dce2", + "start": { + "$date": "2022-06-27T04:38:54.000Z" + }, + "end": { + "$date": "2022-06-27T07:11:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "49744945-1cf9-4f8c-b1d1-4325b290c072", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-27T04:40:21.000Z" + }, + "end": { + "$date": "2022-06-27T05:03:57.000Z" + }, + "events": [ + { + "uuid": "f898d94f-c654-4e60-8619-752afa2dee5e", + "start": { + "$date": "2022-06-27T04:40:21.000Z" + }, + "end": { + "$date": "2022-06-27T05:02:21.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "92b4361f-f8ca-4e15-bba9-ad9878e8b9ba", + "start": { + "$date": "2022-06-27T05:02:21.000Z" + }, + "end": { + "$date": "2022-06-27T05:03:57.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a36116d8-9301-41ba-abf0-cb77562e81fb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-27T05:01:19.000Z" + }, + "end": { + "$date": "2022-06-27T06:16:54.000Z" + }, + "events": [ + { + "uuid": "eee80a56-8aab-4442-acc5-b48ef02486b6", + "start": { + "$date": "2022-06-27T05:01:19.000Z" + }, + "end": { + "$date": "2022-06-27T06:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b0a3a200-0f4e-4bdb-b549-2a6aae7129ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-27T05:04:14.000Z" + }, + "end": { + "$date": "2022-06-27T07:11:45.000Z" + }, + "events": [ + { + "uuid": "fda33bd3-e7d6-4e77-aad7-6124e424d914", + "start": { + "$date": "2022-06-27T05:04:14.000Z" + }, + "end": { + "$date": "2022-06-27T07:11:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1e700cf2-bed6-4d8d-b3d1-946316567fee", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-27T05:27:58.000Z" + }, + "end": { + "$date": "2022-06-27T06:18:33.000Z" + }, + "events": [ + { + "uuid": "e46557c7-2b35-4dca-a919-66e2dbc9f08b", + "start": { + "$date": "2022-06-27T05:27:58.000Z" + }, + "end": { + "$date": "2022-06-27T06:18:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cc03e2ab-864d-4fba-8a04-ca499a8e0e6e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-27T06:44:11.000Z" + }, + "end": { + "$date": "2022-06-27T06:47:26.000Z" + }, + "events": [ + { + "uuid": "efb57e5d-8bda-4458-b626-be11f6dcd7db", + "start": { + "$date": "2022-06-27T06:44:11.000Z" + }, + "end": { + "$date": "2022-06-27T06:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "f208d5b2-a093-4cfa-a220-5cf8f7e935a0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-27T07:20:56.000Z" + }, + "end": { + "$date": "2022-06-27T08:21:26.000Z" + }, + "events": [ + { + "uuid": "c89584d4-294d-4032-a8cb-735c55934e54", + "start": { + "$date": "2022-06-27T07:20:56.000Z" + }, + "end": { + "$date": "2022-06-27T08:21:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "53da7369-6ec5-4bc2-adc0-ed0e96e417bc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-27T11:41:06.000Z" + }, + "end": { + "$date": "2022-06-27T12:01:52.000Z" + }, + "events": [ + { + "uuid": "86f40cb5-40cc-4c0e-9ffb-51783a7bcc25", + "start": { + "$date": "2022-06-27T11:41:06.000Z" + }, + "end": { + "$date": "2022-06-27T12:01:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e3514f54-7f15-44ff-86cd-339322d6f5ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-27T12:02:28.000Z" + }, + "end": { + "$date": "2022-06-27T12:38:14.000Z" + }, + "events": [ + { + "uuid": "05b8f7e0-9f2b-4ac5-a5dd-11e4f58088cf", + "start": { + "$date": "2022-06-27T12:02:28.000Z" + }, + "end": { + "$date": "2022-06-27T12:38:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "ec308307-b804-4161-a9c8-482aba6837d0", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-27T12:17:10.000Z" + }, + "end": { + "$date": "2022-06-27T13:42:38.000Z" + }, + "events": [ + { + "uuid": "df82d86b-29ad-413f-8447-5b4aecfc6b20", + "start": { + "$date": "2022-06-27T12:17:10.000Z" + }, + "end": { + "$date": "2022-06-27T13:42:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8375fc51-0c58-433c-b0ac-5341c90a66c1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-27T13:07:13.000Z" + }, + "end": { + "$date": "2022-06-27T13:33:53.000Z" + }, + "events": [ + { + "uuid": "7dc99492-63fb-4b96-8462-920e7fe1f4cf", + "start": { + "$date": "2022-06-27T13:07:13.000Z" + }, + "end": { + "$date": "2022-06-27T13:33:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "933fce29-2368-4867-b7b9-df87690b540e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-27T17:53:42.000Z" + }, + "end": { + "$date": "2022-06-27T18:29:02.000Z" + }, + "events": [ + { + "uuid": "4d7e59a6-b3a2-44cf-a4ba-11bbfe5788e4", + "start": { + "$date": "2022-06-27T17:53:42.000Z" + }, + "end": { + "$date": "2022-06-27T18:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3403a7ea-fa66-4d15-b361-ac440193880e", + "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "start": { + "$date": "2022-06-27T20:39:13.000Z" + }, + "end": { + "$date": "2022-06-27T23:05:03.000Z" + }, + "events": [ + { + "uuid": "be9696e9-cdee-4abe-a2a3-f27f12029208", + "start": { + "$date": "2022-06-27T20:39:13.000Z" + }, + "end": { + "$date": "2022-06-27T23:05:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "dd8df158-1ebd-4b39-85a8-39c7d9da6b79", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-27T20:40:45.000Z" + }, + "end": { + "$date": "2022-06-27T23:04:47.000Z" + }, + "events": [ + { + "uuid": "3fbaf9ed-b3d7-4448-9afd-88ecef7040a4", + "start": { + "$date": "2022-06-27T20:40:45.000Z" + }, + "end": { + "$date": "2022-06-27T23:04:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "20a57125-ff6a-465b-b269-137ec7c3d04d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-27T23:38:59.000Z" + }, + "end": { + "$date": "2022-06-28T00:14:57.000Z" + }, + "events": [ + { + "uuid": "ecbf748e-62b6-44e3-8860-386e2ecf3cb2", + "start": { + "$date": "2022-06-27T23:38:59.000Z" + }, + "end": { + "$date": "2022-06-28T00:14:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "004ace15-60b0-4ed0-9c53-59d5818b8c21", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-28T01:24:29.000Z" + }, + "end": { + "$date": "2022-06-28T03:16:15.000Z" + }, + "events": [ + { + "uuid": "003cd9ff-01c8-4ee4-bfab-78bb5138229c", + "start": { + "$date": "2022-06-28T01:24:29.000Z" + }, + "end": { + "$date": "2022-06-28T03:16:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "ce9de2fc-418c-436c-9871-a23c31a305c2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-28T01:35:16.000Z" + }, + "end": { + "$date": "2022-06-28T03:16:00.000Z" + }, + "events": [ + { + "uuid": "159d88e8-7893-4f31-8fe0-50f404734bd5", + "start": { + "$date": "2022-06-28T01:35:16.000Z" + }, + "end": { + "$date": "2022-06-28T03:16:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "19959d65-4674-44e2-8c36-f66abd8ebdd6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-28T01:38:29.000Z" + }, + "end": { + "$date": "2022-06-28T05:32:30.000Z" + }, + "events": [ + { + "uuid": "875551cc-ce81-4abf-9f6e-af7ebb27e491", + "start": { + "$date": "2022-06-28T01:38:29.000Z" + }, + "end": { + "$date": "2022-06-28T05:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "203982b0-aea4-4000-92e2-ee776443557c", + "uuid": "e0808e7c-55c7-48ec-b76e-0008eed18e04", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-28T01:55:21.000Z" + }, + "end": { + "$date": "2022-06-28T02:18:50.000Z" + }, + "events": [ + { + "uuid": "cf0ca45d-2357-4781-8579-63e4d74ce237", + "start": { + "$date": "2022-06-28T01:55:21.000Z" + }, + "end": { + "$date": "2022-06-28T02:18:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "c0adc64c-1c2a-4ce5-9c16-42ed282592e6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-28T02:29:20.000Z" + }, + "end": { + "$date": "2022-06-28T02:46:41.000Z" + }, + "events": [ + { + "uuid": "ed08f825-8f7f-4425-9eae-6ec8066aed58", + "start": { + "$date": "2022-06-28T02:29:20.000Z" + }, + "end": { + "$date": "2022-06-28T02:46:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "7d18196a-fe92-457d-9f65-eac9138c4422", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-28T02:46:56.000Z" + }, + "end": { + "$date": "2022-06-28T03:15:58.000Z" + }, + "events": [ + { + "uuid": "940194c0-6557-421e-9756-63a4a91bec30", + "start": { + "$date": "2022-06-28T02:46:56.000Z" + }, + "end": { + "$date": "2022-06-28T03:15:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b9006ceb-0ff0-4398-a6a2-863aba566b06", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T03:05:39.000Z" + }, + "end": { + "$date": "2022-06-28T03:41:32.000Z" + }, + "events": [ + { + "uuid": "caec5125-3124-4c72-bcaf-02eeea3df7e7", + "start": { + "$date": "2022-06-28T03:05:39.000Z" + }, + "end": { + "$date": "2022-06-28T03:41:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "30e5e51d-93c4-4a5f-8d26-4ae796a60d02", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-28T03:17:41.000Z" + }, + "end": { + "$date": "2022-06-28T06:52:22.000Z" + }, + "events": [ + { + "uuid": "724203e0-b00f-4f73-89b0-93ed9acdcd0a", + "start": { + "$date": "2022-06-28T03:17:41.000Z" + }, + "end": { + "$date": "2022-06-28T06:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7142bba4-1321-45e9-b6eb-4d93117933cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T03:41:48.000Z" + }, + "end": { + "$date": "2022-06-28T04:00:40.000Z" + }, + "events": [ + { + "uuid": "072f2a69-0e85-417a-a9af-f465f16b16fb", + "start": { + "$date": "2022-06-28T03:41:48.000Z" + }, + "end": { + "$date": "2022-06-28T03:53:48.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "175bc081-22f8-4733-9421-07ba0c4f4f2f", + "start": { + "$date": "2022-06-28T03:53:48.000Z" + }, + "end": { + "$date": "2022-06-28T04:00:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "214d8b1c-59c0-4bc3-b866-83c5f1890739", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T04:00:44.000Z" + }, + "end": { + "$date": "2022-06-28T04:02:03.000Z" + }, + "events": [ + { + "uuid": "e886993f-a6ff-4d81-8aca-19c8c7179aec", + "start": { + "$date": "2022-06-28T04:00:44.000Z" + }, + "end": { + "$date": "2022-06-28T04:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dfc3d17e-70fe-4287-a7ff-ec38f3faeef1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T04:02:54.000Z" + }, + "end": { + "$date": "2022-06-28T04:06:53.000Z" + }, + "events": [ + { + "uuid": "e00c51c2-6e3e-4c6e-8a64-255c268f9809", + "start": { + "$date": "2022-06-28T04:02:54.000Z" + }, + "end": { + "$date": "2022-06-28T04:06:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ca961a0a-1c8f-45aa-bb59-bb4a334b87ee", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-28T04:06:41.000Z" + }, + "end": { + "$date": "2022-06-28T04:53:45.000Z" + }, + "events": [ + { + "uuid": "238b8b00-0bcb-4891-8fb8-bd66c07e6dc3", + "start": { + "$date": "2022-06-28T04:06:41.000Z" + }, + "end": { + "$date": "2022-06-28T04:53:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "be59707a-fc66-41d1-a027-d45dcca1998c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T04:11:06.000Z" + }, + "end": { + "$date": "2022-06-28T04:51:29.000Z" + }, + "events": [ + { + "uuid": "6729dbd7-f31d-4de8-aa9b-6b029882887d", + "start": { + "$date": "2022-06-28T04:11:06.000Z" + }, + "end": { + "$date": "2022-06-28T04:51:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "469d35f1-a807-4527-9f83-c4e828545b77", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T04:52:45.000Z" + }, + "end": { + "$date": "2022-06-28T05:24:42.000Z" + }, + "events": [ + { + "uuid": "bbb0f3a7-d04c-48e5-8822-941f3561dd24", + "start": { + "$date": "2022-06-28T04:52:45.000Z" + }, + "end": { + "$date": "2022-06-28T05:24:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "ec2777a1-5ea5-4bdf-b4b5-4a941fdf0104", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T05:25:18.000Z" + }, + "end": { + "$date": "2022-06-28T05:38:34.000Z" + }, + "events": [ + { + "uuid": "e6bf94fc-6863-4e1c-80b2-1c8b91a542d0", + "start": { + "$date": "2022-06-28T05:25:18.000Z" + }, + "end": { + "$date": "2022-06-28T05:38:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fd554875-c4c5-404a-ac3a-b58526a3123a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-28T05:44:23.000Z" + }, + "end": { + "$date": "2022-06-28T06:35:42.000Z" + }, + "events": [ + { + "uuid": "4cfffe90-0ba8-43c7-a1bb-718a761dae64", + "start": { + "$date": "2022-06-28T05:44:23.000Z" + }, + "end": { + "$date": "2022-06-28T06:35:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", + "uuid": "23c8952d-b981-4cd5-b80b-17c211666db7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-28T06:40:20.000Z" + }, + "end": { + "$date": "2022-06-28T06:48:30.000Z" + }, + "events": [ + { + "uuid": "ec05feef-345e-4dd4-93b3-9adeae54ed56", + "start": { + "$date": "2022-06-28T06:40:20.000Z" + }, + "end": { + "$date": "2022-06-28T06:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "38436b9c-effb-44ed-ae63-d4ac961083dc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-28T11:52:21.000Z" + }, + "end": { + "$date": "2022-06-28T13:09:32.000Z" + }, + "events": [ + { + "uuid": "08cff7ea-9642-445f-ac10-5828091f9686", + "start": { + "$date": "2022-06-28T11:52:21.000Z" + }, + "end": { + "$date": "2022-06-28T13:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "30e7cdb6-7cce-4538-9740-89b786a10e08", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-28T13:18:35.000Z" + }, + "end": { + "$date": "2022-06-28T15:18:09.000Z" + }, + "events": [ + { + "uuid": "c3255b46-61f5-4337-a54b-da4e299d7ebe", + "start": { + "$date": "2022-06-28T13:18:35.000Z" + }, + "end": { + "$date": "2022-06-28T14:39:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "08ec3575-f2c8-47aa-bf08-91127f7b0894", + "start": { + "$date": "2022-06-28T14:39:35.000Z" + }, + "end": { + "$date": "2022-06-28T14:41:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "becec223-9d6a-44a2-a80d-6279f56f689b", + "start": { + "$date": "2022-06-28T14:41:35.000Z" + }, + "end": { + "$date": "2022-06-28T14:51:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bef34d35-56a1-42dc-81d3-eae476d797aa", + "start": { + "$date": "2022-06-28T14:51:35.000Z" + }, + "end": { + "$date": "2022-06-28T14:55:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "33252694-bc6b-4b99-b09a-8f840f0b4acb", + "start": { + "$date": "2022-06-28T14:55:35.000Z" + }, + "end": { + "$date": "2022-06-28T15:13:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "eb352554-12a6-45ff-b5a7-0691fab0cd31", + "start": { + "$date": "2022-06-28T15:13:35.000Z" + }, + "end": { + "$date": "2022-06-28T15:18:09.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "09d030f9-6be5-415b-9427-a5e641e5a7df", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-28T16:41:08.000Z" + }, + "end": { + "$date": "2022-06-28T17:15:13.000Z" + }, + "events": [ + { + "uuid": "0c2e5798-9f45-4fc7-9340-754e2de58cf7", + "start": { + "$date": "2022-06-28T16:41:08.000Z" + }, + "end": { + "$date": "2022-06-28T17:15:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4e93f072-1ff7-4cad-97d7-a5527f64f12d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-28T19:54:10.000Z" + }, + "end": { + "$date": "2022-06-28T21:43:46.000Z" + }, + "events": [ + { + "uuid": "db58c363-532c-4f2b-9e52-4b18cf26b603", + "start": { + "$date": "2022-06-28T19:54:10.000Z" + }, + "end": { + "$date": "2022-06-28T21:43:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "6f4e3a53-1c69-4650-8bdb-a6843e6e9787", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-29T00:12:37.000Z" + }, + "end": { + "$date": "2022-06-29T01:32:45.000Z" + }, + "events": [ + { + "uuid": "dac37f14-56f1-4731-aeac-02551b923952", + "start": { + "$date": "2022-06-29T00:12:37.000Z" + }, + "end": { + "$date": "2022-06-29T01:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "27ce72c8-76ae-4461-9ab3-194b1174915e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-29T00:56:37.000Z" + }, + "end": { + "$date": "2022-06-29T01:32:43.000Z" + }, + "events": [ + { + "uuid": "c36d384f-d771-4513-8666-317d62e97398", + "start": { + "$date": "2022-06-29T00:56:37.000Z" + }, + "end": { + "$date": "2022-06-29T01:32:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "67914be7-eaf9-49d2-9798-85187526aa09", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T01:54:32.000Z" + }, + "end": { + "$date": "2022-06-29T02:29:08.000Z" + }, + "events": [ + { + "uuid": "2430e091-55bc-41d3-8826-9520bfbb2cfc", + "start": { + "$date": "2022-06-29T01:54:32.000Z" + }, + "end": { + "$date": "2022-06-29T02:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "8a7336a2-a423-4e90-b313-376fe457ed29", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-29T02:05:02.000Z" + }, + "end": { + "$date": "2022-06-29T03:11:58.000Z" + }, + "events": [ + { + "uuid": "1f07d68a-e775-4cfd-820d-440c63d46a66", + "start": { + "$date": "2022-06-29T02:05:02.000Z" + }, + "end": { + "$date": "2022-06-29T03:11:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9cf55256-bc21-4287-8466-3f1a9c0187da", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-29T02:42:59.000Z" + }, + "end": { + "$date": "2022-06-29T03:16:36.000Z" + }, + "events": [ + { + "uuid": "9aebe757-4043-4987-b7e9-107ccec87272", + "start": { + "$date": "2022-06-29T02:42:59.000Z" + }, + "end": { + "$date": "2022-06-29T03:16:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "66e62724-e207-4687-8e23-48bde94f9447", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-29T02:46:43.000Z" + }, + "end": { + "$date": "2022-06-29T03:52:36.000Z" + }, + "events": [ + { + "uuid": "e51457b6-752d-43e3-b59a-2a7a04b4dddc", + "start": { + "$date": "2022-06-29T02:46:43.000Z" + }, + "end": { + "$date": "2022-06-29T03:52:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "a35b500b-0279-4e06-a281-d231b1ffafe5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-29T02:59:12.000Z" + }, + "end": { + "$date": "2022-06-29T04:38:22.000Z" + }, + "events": [ + { + "uuid": "8c61a199-3cc1-4984-b4c4-0b5672ca8bd6", + "start": { + "$date": "2022-06-29T02:59:12.000Z" + }, + "end": { + "$date": "2022-06-29T04:38:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edfb230c-0bce-41f8-99f3-5e16e46a9af3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T03:00:25.000Z" + }, + "end": { + "$date": "2022-06-29T03:33:23.000Z" + }, + "events": [ + { + "uuid": "3a53647b-5c5e-40bb-a601-8473773ac39a", + "start": { + "$date": "2022-06-29T03:00:25.000Z" + }, + "end": { + "$date": "2022-06-29T03:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "987ee92b-e77c-4403-99c7-7caec9de95fc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-29T03:09:29.000Z" + }, + "end": { + "$date": "2022-06-29T03:51:46.000Z" + }, + "events": [ + { + "uuid": "406f2e6a-0591-4a84-82b5-a5e209d6bf16", + "start": { + "$date": "2022-06-29T03:09:29.000Z" + }, + "end": { + "$date": "2022-06-29T03:51:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c6aae026-6d09-486b-9b68-0b7b7120416c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-29T03:09:47.000Z" + }, + "end": { + "$date": "2022-06-29T03:51:25.000Z" + }, + "events": [ + { + "uuid": "ad3b6981-b44f-4840-939d-1c341f325432", + "start": { + "$date": "2022-06-29T03:09:47.000Z" + }, + "end": { + "$date": "2022-06-29T03:51:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d9fbf58b-9a07-4b52-95a2-71db4109ebdb", + "uuid": "0fb2cab2-2c8d-4fed-a5bf-ad15f6b3f804", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-29T03:17:32.000Z" + }, + "end": { + "$date": "2022-06-29T04:38:08.000Z" + }, + "events": [ + { + "uuid": "44d8d2af-5851-4631-9961-e926ccfd6d81", + "start": { + "$date": "2022-06-29T03:17:32.000Z" + }, + "end": { + "$date": "2022-06-29T04:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "57b74658-403c-4cdf-b18d-92d5bc2789e1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-29T03:23:55.000Z" + }, + "end": { + "$date": "2022-06-29T03:52:06.000Z" + }, + "events": [ + { + "uuid": "9d311229-bf82-4c45-bd3a-0a475735b317", + "start": { + "$date": "2022-06-29T03:23:55.000Z" + }, + "end": { + "$date": "2022-06-29T03:52:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1a54ba6-0aa6-4ca7-9cbf-d5287b39a6ae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T03:34:25.000Z" + }, + "end": { + "$date": "2022-06-29T04:10:08.000Z" + }, + "events": [ + { + "uuid": "c5359bf2-31e3-4b9c-af5a-51926c46576b", + "start": { + "$date": "2022-06-29T03:34:25.000Z" + }, + "end": { + "$date": "2022-06-29T04:10:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "48b659bd-01b5-441f-a4a0-63ddfdc79342", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-29T03:34:47.000Z" + }, + "end": { + "$date": "2022-06-29T03:56:19.000Z" + }, + "events": [ + { + "uuid": "61cc5325-4274-4bd8-b828-5d73ed393bcc", + "start": { + "$date": "2022-06-29T03:34:47.000Z" + }, + "end": { + "$date": "2022-06-29T03:56:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "5e8f144b-2d75-4c29-a6d9-7fe2407aada5", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-06-29T03:37:47.000Z" + }, + "end": { + "$date": "2022-06-29T07:01:26.000Z" + }, + "events": [ + { + "uuid": "734e862d-7543-4a77-b338-bf57f2f3d219", + "start": { + "$date": "2022-06-29T03:37:47.000Z" + }, + "end": { + "$date": "2022-06-29T07:01:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8cc96c20-8258-44c2-b632-433a90231eb4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-06-29T03:51:53.000Z" + }, + "end": { + "$date": "2022-06-29T05:09:11.000Z" + }, + "events": [ + { + "uuid": "0d484a79-744b-4d66-98cf-c487e4ad879d", + "start": { + "$date": "2022-06-29T03:51:53.000Z" + }, + "end": { + "$date": "2022-06-29T05:09:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fac7ff37-847c-4494-9972-a2282e2d81ec", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-06-29T03:52:30.000Z" + }, + "end": { + "$date": "2022-06-29T07:27:17.000Z" + }, + "events": [ + { + "uuid": "35941bdc-1974-4220-a904-2380754be4eb", + "start": { + "$date": "2022-06-29T03:52:30.000Z" + }, + "end": { + "$date": "2022-06-29T07:27:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8dc1f09a-122c-4a77-b39e-6e33408c54ff", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-29T04:07:23.000Z" + }, + "end": { + "$date": "2022-06-29T05:41:13.000Z" + }, + "events": [ + { + "uuid": "e10c4431-314b-441a-b1d1-b0a9ca8ee286", + "start": { + "$date": "2022-06-29T04:07:23.000Z" + }, + "end": { + "$date": "2022-06-29T05:41:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9853a269-2f76-4f00-b5c5-b911966a0ca6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-29T04:22:05.000Z" + }, + "end": { + "$date": "2022-06-29T05:00:02.000Z" + }, + "events": [ + { + "uuid": "84b7e34c-f5b7-4efb-a301-8e68fd70ef2b", + "start": { + "$date": "2022-06-29T04:22:05.000Z" + }, + "end": { + "$date": "2022-06-29T05:00:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1292917c-0e92-4679-94c1-f028ebbb1a4f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T04:25:08.000Z" + }, + "end": { + "$date": "2022-06-29T04:58:53.000Z" + }, + "events": [ + { + "uuid": "5c025811-3617-40bb-80e7-870532ae669b", + "start": { + "$date": "2022-06-29T04:25:08.000Z" + }, + "end": { + "$date": "2022-06-29T04:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "711aa385-837e-48f1-8a14-0d5be0f22260", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T05:09:24.000Z" + }, + "end": { + "$date": "2022-06-29T05:50:16.000Z" + }, + "events": [ + { + "uuid": "4d4addc9-8ada-4269-a719-ea3b377b78a9", + "start": { + "$date": "2022-06-29T05:09:24.000Z" + }, + "end": { + "$date": "2022-06-29T05:50:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "53d3d467-dede-4896-96a1-fc6a23e71765", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-29T05:10:50.000Z" + }, + "end": { + "$date": "2022-06-29T05:41:02.000Z" + }, + "events": [ + { + "uuid": "7f447381-4433-43ae-8598-da0a0b12d9f2", + "start": { + "$date": "2022-06-29T05:10:50.000Z" + }, + "end": { + "$date": "2022-06-29T05:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "9400caf2-1ad5-4771-b8fd-a17c2b7578b8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-29T05:47:49.000Z" + }, + "end": { + "$date": "2022-06-29T06:00:05.000Z" + }, + "events": [ + { + "uuid": "f1f51631-d956-4ba7-b06e-2995627c56bd", + "start": { + "$date": "2022-06-29T05:47:49.000Z" + }, + "end": { + "$date": "2022-06-29T06:00:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76345bb3-21e7-492e-b1e9-f0fef588336c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T05:51:58.000Z" + }, + "end": { + "$date": "2022-06-29T06:23:41.000Z" + }, + "events": [ + { + "uuid": "a211d8ea-0963-499a-9d46-51029b442094", + "start": { + "$date": "2022-06-29T05:51:58.000Z" + }, + "end": { + "$date": "2022-06-29T06:23:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "27c0947b-d11d-4c41-97cb-d756dd202822", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T06:28:47.000Z" + }, + "end": { + "$date": "2022-06-29T08:08:19.000Z" + }, + "events": [ + { + "uuid": "83b67101-4e2e-4d5d-a34d-6cdf374ad38d", + "start": { + "$date": "2022-06-29T06:28:47.000Z" + }, + "end": { + "$date": "2022-06-29T08:08:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a5607bc-ec58-48a8-bb48-0ad716b6c7a3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-29T08:14:56.000Z" + }, + "end": { + "$date": "2022-06-29T08:16:14.000Z" + }, + "events": [ + { + "uuid": "f2af5954-6b30-41cd-ae0f-f91c4136a97f", + "start": { + "$date": "2022-06-29T08:14:56.000Z" + }, + "end": { + "$date": "2022-06-29T08:16:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "80c207d0-615b-48cb-9d39-82c111fe550d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-29T12:45:07.000Z" + }, + "end": { + "$date": "2022-06-29T13:22:34.000Z" + }, + "events": [ + { + "uuid": "0d93ffae-524d-44e9-ac90-b520465e94d7", + "start": { + "$date": "2022-06-29T12:45:07.000Z" + }, + "end": { + "$date": "2022-06-29T13:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "814f1ce6-3d48-46a7-8e87-54e1f7e2be34", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-29T13:14:51.000Z" + }, + "end": { + "$date": "2022-06-29T13:47:42.000Z" + }, + "events": [ + { + "uuid": "5d48c1fc-d1c4-4143-94d0-194e91cbacde", + "start": { + "$date": "2022-06-29T13:14:51.000Z" + }, + "end": { + "$date": "2022-06-29T13:47:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "45352917-f7b6-48a8-81a9-2c4db32227c7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-06-29T17:51:16.000Z" + }, + "end": { + "$date": "2022-06-29T18:13:27.000Z" + }, + "events": [ + { + "uuid": "ca9041ec-5b71-4d8f-8d23-ad18c7811152", + "start": { + "$date": "2022-06-29T17:51:16.000Z" + }, + "end": { + "$date": "2022-06-29T18:13:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "38c9c741-2b8b-4b45-ab2c-d8809d420219", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-06-29T20:04:31.000Z" + }, + "end": { + "$date": "2022-06-29T21:19:39.000Z" + }, + "events": [ + { + "uuid": "c986fe24-7df1-4795-8d08-6b13e5e50c68", + "start": { + "$date": "2022-06-29T20:04:31.000Z" + }, + "end": { + "$date": "2022-06-29T21:19:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9d8caef2-5d75-4a11-95ac-2c7f72e75311", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T00:15:34.000Z" + }, + "end": { + "$date": "2022-06-30T00:26:19.000Z" + }, + "events": [ + { + "uuid": "89e7a27d-15bb-43b1-863a-c6f25cc0e8dc", + "start": { + "$date": "2022-06-30T00:15:34.000Z" + }, + "end": { + "$date": "2022-06-30T00:26:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fc9819a2-d5be-422a-8eb6-4cdc17c9f88e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-30T00:18:32.000Z" + }, + "end": { + "$date": "2022-06-30T02:25:32.000Z" + }, + "events": [ + { + "uuid": "dc7b1250-3c89-49c8-aa59-d8822113df94", + "start": { + "$date": "2022-06-30T00:18:32.000Z" + }, + "end": { + "$date": "2022-06-30T02:25:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3100970c-11b4-4fe2-8c10-f5cb0c79642d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-06-30T00:56:52.000Z" + }, + "end": { + "$date": "2022-06-30T02:25:31.000Z" + }, + "events": [ + { + "uuid": "7d3e7624-4e13-4d5d-97fb-b93212d62b70", + "start": { + "$date": "2022-06-30T00:56:52.000Z" + }, + "end": { + "$date": "2022-06-30T02:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "6ed8a2a9-cec8-43e0-9149-83c0037fe79c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-30T02:12:52.000Z" + }, + "end": { + "$date": "2022-06-30T03:22:43.000Z" + }, + "events": [ + { + "uuid": "5547a349-3772-45e0-a175-3f48b56e7b36", + "start": { + "$date": "2022-06-30T02:12:52.000Z" + }, + "end": { + "$date": "2022-06-30T03:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "ce6a0dc2-5206-446d-8562-7aa706efb91d", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-30T02:54:20.000Z" + }, + "end": { + "$date": "2022-06-30T03:25:51.000Z" + }, + "events": [ + { + "uuid": "4a5cf6cf-a6d8-4270-8a48-5ff1ab36454f", + "start": { + "$date": "2022-06-30T02:54:20.000Z" + }, + "end": { + "$date": "2022-06-30T03:25:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a479eb72-c6ba-4372-a929-74b3032001d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-30T04:13:10.000Z" + }, + "end": { + "$date": "2022-06-30T06:22:48.000Z" + }, + "events": [ + { + "uuid": "fd09769a-0751-49a8-9a9b-674c6a170790", + "start": { + "$date": "2022-06-30T04:13:10.000Z" + }, + "end": { + "$date": "2022-06-30T06:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ccd537c6-ce2f-432e-b6d6-ff80cfac69a5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T04:21:06.000Z" + }, + "end": { + "$date": "2022-06-30T04:50:23.000Z" + }, + "events": [ + { + "uuid": "4473bc4e-ac81-49d5-b472-aeff362243fa", + "start": { + "$date": "2022-06-30T04:21:06.000Z" + }, + "end": { + "$date": "2022-06-30T04:50:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aed0302e-e64e-4040-9871-f0a0bf68f041", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T06:18:09.000Z" + }, + "end": { + "$date": "2022-06-30T06:57:28.000Z" + }, + "events": [ + { + "uuid": "3e416ec6-a277-427b-8250-6600fbb03dff", + "start": { + "$date": "2022-06-30T06:18:09.000Z" + }, + "end": { + "$date": "2022-06-30T06:57:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a37df9cc-fe4e-4327-b8bd-2b4863c001cc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T07:00:04.000Z" + }, + "end": { + "$date": "2022-06-30T07:22:50.000Z" + }, + "events": [ + { + "uuid": "bd39ba31-f5ff-4e25-ac57-90d496a5fe10", + "start": { + "$date": "2022-06-30T07:00:04.000Z" + }, + "end": { + "$date": "2022-06-30T07:22:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2879404b-216b-467d-a805-37cd0b9a01f6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T07:25:05.000Z" + }, + "end": { + "$date": "2022-06-30T07:53:04.000Z" + }, + "events": [ + { + "uuid": "46b37745-1383-48d3-8314-8b6af7f1b211", + "start": { + "$date": "2022-06-30T07:25:05.000Z" + }, + "end": { + "$date": "2022-06-30T07:53:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "9b449dd4-4946-45f7-af36-b6e676f2aafe", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-06-30T08:29:39.000Z" + }, + "end": { + "$date": "2022-06-30T14:22:01.000Z" + }, + "events": [ + { + "uuid": "804a578d-2c0b-49cd-9e6d-f9b21ca00fa9", + "start": { + "$date": "2022-06-30T08:29:39.000Z" + }, + "end": { + "$date": "2022-06-30T14:22:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "96dc194c-6942-47c7-a3fc-c64a50e90b13", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-06-30T12:41:01.000Z" + }, + "end": { + "$date": "2022-06-30T12:45:16.000Z" + }, + "events": [ + { + "uuid": "e648cdc4-334a-42f2-835e-c1542c79f318", + "start": { + "$date": "2022-06-30T12:41:01.000Z" + }, + "end": { + "$date": "2022-06-30T12:45:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ac89cb65-c9ea-44b8-aa3e-bef33621adbd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T22:55:39.000Z" + }, + "end": { + "$date": "2022-06-30T23:31:39.000Z" + }, + "events": [ + { + "uuid": "67e7b3a3-709f-4e65-9c16-7c3650e1545a", + "start": { + "$date": "2022-06-30T22:55:39.000Z" + }, + "end": { + "$date": "2022-06-30T23:31:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "00214788-06f5-46c4-845f-a897fa19ed61", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-06-30T23:01:50.000Z" + }, + "end": { + "$date": "2022-06-30T23:19:56.000Z" + }, + "events": [ + { + "uuid": "f5e5290b-88f7-4136-b634-3f53f49ea981", + "start": { + "$date": "2022-06-30T23:01:50.000Z" + }, + "end": { + "$date": "2022-06-30T23:19:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "4cae3b71-ef82-40b4-b125-e5c81d919c67", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-30T23:30:17.000Z" + }, + "end": { + "$date": "2022-06-30T23:44:58.000Z" + }, + "events": [ + { + "uuid": "847634ba-a5d6-40a2-94a6-1c147cbf4185", + "start": { + "$date": "2022-06-30T23:30:17.000Z" + }, + "end": { + "$date": "2022-06-30T23:44:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "456368a2-42d2-4e1f-9c61-78925608d10b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-06-30T23:40:10.000Z" + }, + "end": { + "$date": "2022-07-01T00:09:10.000Z" + }, + "events": [ + { + "uuid": "790f8d75-d49b-406c-8627-9865c1ea21ce", + "start": { + "$date": "2022-06-30T23:40:10.000Z" + }, + "end": { + "$date": "2022-07-01T00:09:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d696b505-45f1-46de-9e7e-3152a841e7ab", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-06-30T23:41:58.000Z" + }, + "end": { + "$date": "2022-07-01T00:10:58.000Z" + }, + "events": [ + { + "uuid": "262fe8c1-0ca9-4e6d-a3ae-b90dd58e634f", + "start": { + "$date": "2022-06-30T23:41:58.000Z" + }, + "end": { + "$date": "2022-07-01T00:10:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "bbddc1cf-3cd9-4d53-90d9-ad4c07d429da", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-06-30T23:45:27.000Z" + }, + "end": { + "$date": "2022-07-01T01:50:19.000Z" + }, + "events": [ + { + "uuid": "c3c34e95-c1ac-4c20-8e76-2dedac973a4e", + "start": { + "$date": "2022-06-30T23:45:27.000Z" + }, + "end": { + "$date": "2022-07-01T00:14:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "04605d9c-1391-45a3-806c-1c8bd138184a", + "start": { + "$date": "2022-07-01T00:14:27.000Z" + }, + "end": { + "$date": "2022-07-01T00:19:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6db88fef-aed4-4e05-b662-47db3ae0f657", + "start": { + "$date": "2022-07-01T00:19:27.000Z" + }, + "end": { + "$date": "2022-07-01T00:29:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d18f5863-ce8e-4f9e-9d73-082ed3fe2bb8", + "start": { + "$date": "2022-07-01T00:29:27.000Z" + }, + "end": { + "$date": "2022-07-01T00:33:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "dc4e0c3e-6e7f-4f99-aad9-0b2246a431ea", + "start": { + "$date": "2022-07-01T00:33:27.000Z" + }, + "end": { + "$date": "2022-07-01T00:44:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a44f584b-0ada-462f-ac12-216939b76475", + "start": { + "$date": "2022-07-01T00:44:27.000Z" + }, + "end": { + "$date": "2022-07-01T01:50:19.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ff928abe-3094-4748-9103-d7dfb36877fe", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-01T00:11:05.000Z" + }, + "end": { + "$date": "2022-07-01T00:40:56.000Z" + }, + "events": [ + { + "uuid": "63b01b7c-0abf-4c4a-bbc7-967c3753c5a7", + "start": { + "$date": "2022-07-01T00:11:05.000Z" + }, + "end": { + "$date": "2022-07-01T00:40:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2609eebb-afe1-4dd7-8d84-ab87b597885c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T00:13:33.000Z" + }, + "end": { + "$date": "2022-07-01T01:14:05.000Z" + }, + "events": [ + { + "uuid": "92800a25-abc2-4b27-bea1-5a1f76e758af", + "start": { + "$date": "2022-07-01T00:13:33.000Z" + }, + "end": { + "$date": "2022-07-01T01:14:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "cd5c10f2-0529-439e-9936-227d5a838bec", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T00:20:34.000Z" + }, + "end": { + "$date": "2022-07-01T01:02:13.000Z" + }, + "events": [ + { + "uuid": "094a2f73-1660-43d8-95e0-cb91f4caf168", + "start": { + "$date": "2022-07-01T00:20:34.000Z" + }, + "end": { + "$date": "2022-07-01T01:02:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", + "uuid": "306cec4f-8014-47a7-b9fa-2adf33167a3d", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-01T00:47:52.000Z" + }, + "end": { + "$date": "2022-07-01T01:16:30.000Z" + }, + "events": [ + { + "uuid": "12425ac6-95bc-4569-b49e-a215432e91a2", + "start": { + "$date": "2022-07-01T00:47:52.000Z" + }, + "end": { + "$date": "2022-07-01T01:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "a7d469e4-12e7-40cb-9fde-e032322f2b9c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T01:03:34.000Z" + }, + "end": { + "$date": "2022-07-01T01:04:59.000Z" + }, + "events": [ + { + "uuid": "52a1da55-9ff6-48f9-83cd-7a39af583f38", + "start": { + "$date": "2022-07-01T01:03:34.000Z" + }, + "end": { + "$date": "2022-07-01T01:04:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "73c004ae-4869-4aa3-9c97-53a5374d590b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T01:53:49.000Z" + }, + "end": { + "$date": "2022-07-01T02:25:31.000Z" + }, + "events": [ + { + "uuid": "b54e2443-2a41-46c3-a894-50a00a1dd9dc", + "start": { + "$date": "2022-07-01T01:53:49.000Z" + }, + "end": { + "$date": "2022-07-01T02:25:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f1f1a520-414b-4af3-8dd5-38d3e64138ce", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-01T02:14:29.000Z" + }, + "end": { + "$date": "2022-07-01T03:13:44.000Z" + }, + "events": [ + { + "uuid": "f7b27ed5-bdd2-4e7c-8ef7-7ea21e5466ca", + "start": { + "$date": "2022-07-01T02:14:29.000Z" + }, + "end": { + "$date": "2022-07-01T03:13:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6d8740c9-9324-4582-a77d-254cbca9f286", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-01T02:16:12.000Z" + }, + "end": { + "$date": "2022-07-01T07:15:16.000Z" + }, + "events": [ + { + "uuid": "1df21fa9-89e9-4aa6-a30e-0c4945b17dd6", + "start": { + "$date": "2022-07-01T02:16:12.000Z" + }, + "end": { + "$date": "2022-07-01T07:15:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1650fa9e-4b14-4cac-bc66-1c7c163aeaf5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T02:45:14.000Z" + }, + "end": { + "$date": "2022-07-01T03:03:48.000Z" + }, + "events": [ + { + "uuid": "d2daa19e-d9f2-45da-abcd-191904fd4ece", + "start": { + "$date": "2022-07-01T02:45:14.000Z" + }, + "end": { + "$date": "2022-07-01T03:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ebea4d21-e95f-4774-b32f-d143253db14b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T02:48:17.000Z" + }, + "end": { + "$date": "2022-07-01T04:24:24.000Z" + }, + "events": [ + { + "uuid": "0c269065-a60f-43a2-8663-cd24003873dd", + "start": { + "$date": "2022-07-01T02:48:17.000Z" + }, + "end": { + "$date": "2022-07-01T04:24:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fe54ce58-1b18-460f-91a2-db38e203af2c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-01T03:20:01.000Z" + }, + "end": { + "$date": "2022-07-01T03:54:47.000Z" + }, + "events": [ + { + "uuid": "4ff0807c-4ee9-44e7-80cf-708001e3affc", + "start": { + "$date": "2022-07-01T03:20:01.000Z" + }, + "end": { + "$date": "2022-07-01T03:54:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa1bf24a-ba54-412e-8fa8-4d4c0c354d0c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T03:21:35.000Z" + }, + "end": { + "$date": "2022-07-01T03:37:19.000Z" + }, + "events": [ + { + "uuid": "de87d585-e1f4-410e-b83c-3c625c63dd7d", + "start": { + "$date": "2022-07-01T03:21:35.000Z" + }, + "end": { + "$date": "2022-07-01T03:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2e62857-5715-4be6-a539-31383fdb9d55", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-01T03:27:17.000Z" + }, + "end": { + "$date": "2022-07-01T03:38:01.000Z" + }, + "events": [ + { + "uuid": "e243c11a-d986-48d5-a27a-b57a0a0ea982", + "start": { + "$date": "2022-07-01T03:27:17.000Z" + }, + "end": { + "$date": "2022-07-01T03:38:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "dd6ad84f-7754-435a-aafa-bfd9b15aca3f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-01T03:30:29.000Z" + }, + "end": { + "$date": "2022-07-01T05:57:13.000Z" + }, + "events": [ + { + "uuid": "7c66bc6e-ebe3-4506-b32d-96806953fd67", + "start": { + "$date": "2022-07-01T03:30:29.000Z" + }, + "end": { + "$date": "2022-07-01T05:57:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2879f47b-d397-45b8-80bb-837483c3c992", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-01T03:27:17.000Z" + }, + "end": { + "$date": "2022-07-01T04:17:53.000Z" + }, + "events": [ + { + "uuid": "8998c938-86d1-4846-a29c-c7f6b7b43926", + "start": { + "$date": "2022-07-01T03:27:17.000Z" + }, + "end": { + "$date": "2022-07-01T04:17:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "449fe542-3275-49a0-ac5a-76c76de97cd2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-01T04:25:32.000Z" + }, + "end": { + "$date": "2022-07-01T04:43:52.000Z" + }, + "events": [ + { + "uuid": "fc081036-e549-4c41-b677-d0a578ca3df8", + "start": { + "$date": "2022-07-01T04:25:32.000Z" + }, + "end": { + "$date": "2022-07-01T04:37:32.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d66042ab-094e-4700-af27-2f1b5f8138fd", + "start": { + "$date": "2022-07-01T04:37:32.000Z" + }, + "end": { + "$date": "2022-07-01T04:51:32.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "960e5a3d-5919-498c-ba3c-4e917da6561e", + "start": { + "$date": "2022-07-01T04:51:32.000Z" + }, + "end": { + "$date": "2022-07-01T04:43:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8bc938c8-c49d-4707-8347-85efb642bb5f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-01T03:59:25.000Z" + }, + "end": { + "$date": "2022-07-01T04:49:18.000Z" + }, + "events": [ + { + "uuid": "c23e9ec4-cf20-4c34-a136-8087433cb90a", + "start": { + "$date": "2022-07-01T03:59:25.000Z" + }, + "end": { + "$date": "2022-07-01T04:49:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "72b06110-078f-4c0e-84f9-ebbdd642acfc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T04:00:47.000Z" + }, + "end": { + "$date": "2022-07-01T04:47:32.000Z" + }, + "events": [ + { + "uuid": "a91aca35-f3a1-411a-be27-adbf28329750", + "start": { + "$date": "2022-07-01T04:00:47.000Z" + }, + "end": { + "$date": "2022-07-01T04:47:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "615c85f9-ab37-4ee5-b4ed-562674dd4bfd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-01T04:01:42.000Z" + }, + "end": { + "$date": "2022-07-01T04:49:28.000Z" + }, + "events": [ + { + "uuid": "4618970a-8e46-49e7-8f9d-7391235c3d74", + "start": { + "$date": "2022-07-01T04:01:42.000Z" + }, + "end": { + "$date": "2022-07-01T04:49:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0ba1bfac-e4a1-4ebf-a5c6-111888dba0c5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-01T04:32:58.000Z" + }, + "end": { + "$date": "2022-07-01T06:07:08.000Z" + }, + "events": [ + { + "uuid": "ebbeaf8c-656e-47d1-ae98-6492842f61b2", + "start": { + "$date": "2022-07-01T04:32:58.000Z" + }, + "end": { + "$date": "2022-07-01T06:07:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "e1ec1e34-e81a-4b5c-98d9-8d7127f3cd4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-01T04:44:23.000Z" + }, + "end": { + "$date": "2022-07-01T05:05:35.000Z" + }, + "events": [ + { + "uuid": "db837e30-b21c-4f93-9541-a72a1f977f56", + "start": { + "$date": "2022-07-01T04:44:23.000Z" + }, + "end": { + "$date": "2022-07-01T05:05:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", + "uuid": "1a5d8559-730d-49af-972e-5f96b71a879a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T04:46:23.000Z" + }, + "end": { + "$date": "2022-07-01T05:10:50.000Z" + }, + "events": [ + { + "uuid": "95b6c2f0-817c-4a4d-860f-bffd52f3c6e2", + "start": { + "$date": "2022-07-01T04:46:23.000Z" + }, + "end": { + "$date": "2022-07-01T05:10:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "85aea4d0-7557-4a5d-b16a-d4614b7786de", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-01T04:49:41.000Z" + }, + "end": { + "$date": "2022-07-01T06:10:11.000Z" + }, + "events": [ + { + "uuid": "c893604b-31aa-4562-8a4d-9a5ccc6382a2", + "start": { + "$date": "2022-07-01T04:49:41.000Z" + }, + "end": { + "$date": "2022-07-01T06:10:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "02234a4d-7c40-49ad-a769-293b8bf562b6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-01T04:50:08.000Z" + }, + "end": { + "$date": "2022-07-01T06:09:55.000Z" + }, + "events": [ + { + "uuid": "782e0eec-19e7-43cf-8765-d2bbe77ff1ed", + "start": { + "$date": "2022-07-01T04:50:08.000Z" + }, + "end": { + "$date": "2022-07-01T06:09:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2d6b7833-f7cb-4e6b-9063-9f7ba2386c24", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-01T05:48:00.000Z" + }, + "end": { + "$date": "2022-07-01T06:19:25.000Z" + }, + "events": [ + { + "uuid": "289f9efe-e8c9-42cf-ae0a-91ab72f87819", + "start": { + "$date": "2022-07-01T05:48:00.000Z" + }, + "end": { + "$date": "2022-07-01T06:19:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a7c77d7f-43c1-455a-9be8-0426cae89a93", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-01T06:20:22.000Z" + }, + "end": { + "$date": "2022-07-01T06:58:23.000Z" + }, + "events": [ + { + "uuid": "764d7080-98ca-4207-a15e-a44bba8159ea", + "start": { + "$date": "2022-07-01T06:20:22.000Z" + }, + "end": { + "$date": "2022-07-01T06:58:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0d01a79d-2fe2-4253-ad81-342eded39332", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-01T06:59:24.000Z" + }, + "end": { + "$date": "2022-07-01T07:39:53.000Z" + }, + "events": [ + { + "uuid": "5c2e3afa-93da-40b2-a54d-2b75db92e394", + "start": { + "$date": "2022-07-01T06:59:24.000Z" + }, + "end": { + "$date": "2022-07-01T07:39:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "5988801c-a9e7-4a75-8a63-4a9e562da167", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-01T08:48:39.000Z" + }, + "end": { + "$date": "2022-07-01T10:01:20.000Z" + }, + "events": [ + { + "uuid": "02d538d5-0ada-462e-b016-7fc79e3698e9", + "start": { + "$date": "2022-07-01T08:48:39.000Z" + }, + "end": { + "$date": "2022-07-01T10:01:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "ccc1350b-3123-418a-88db-1cbe4293bb66", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T13:30:51.000Z" + }, + "end": { + "$date": "2022-07-01T13:48:07.000Z" + }, + "events": [ + { + "uuid": "11e438aa-4dd5-4f21-983d-003c37323d93", + "start": { + "$date": "2022-07-01T13:30:51.000Z" + }, + "end": { + "$date": "2022-07-01T13:48:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "1a706e02-91f0-4974-a230-1e45e69c7509", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-01T13:42:46.000Z" + }, + "end": { + "$date": "2022-07-01T16:24:41.000Z" + }, + "events": [ + { + "uuid": "2a4e6d6f-ffcd-4fea-a7b7-e401f9067507", + "start": { + "$date": "2022-07-01T13:42:46.000Z" + }, + "end": { + "$date": "2022-07-01T16:24:41.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "bc34c5b9-02af-4d00-b263-a38c3e07fa31", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T14:23:51.000Z" + }, + "end": { + "$date": "2022-07-01T14:43:38.000Z" + }, + "events": [ + { + "uuid": "f69e1a17-7e85-4655-a8e3-21d9bd584af3", + "start": { + "$date": "2022-07-01T14:23:51.000Z" + }, + "end": { + "$date": "2022-07-01T14:43:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "957bab9e-7e40-43c3-b205-8cc8b0c45225", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T14:43:53.000Z" + }, + "end": { + "$date": "2022-07-01T16:00:58.000Z" + }, + "events": [ + { + "uuid": "75a43b64-42bc-4a1d-bc74-ec3d1145a067", + "start": { + "$date": "2022-07-01T14:43:53.000Z" + }, + "end": { + "$date": "2022-07-01T16:00:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96d12c4a-3f61-4847-ad5c-dfe793df3aa4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-01T17:11:39.000Z" + }, + "end": { + "$date": "2022-07-01T18:41:37.000Z" + }, + "events": [ + { + "uuid": "eccf5fa9-004b-4a68-8748-1b2634524e4a", + "start": { + "$date": "2022-07-01T17:11:39.000Z" + }, + "end": { + "$date": "2022-07-01T18:41:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d460b81a-b6b6-4825-8aa1-99d96709f6d1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-01T17:32:19.000Z" + }, + "end": { + "$date": "2022-07-01T18:37:38.000Z" + }, + "events": [ + { + "uuid": "869e02cd-23a1-43e6-b841-b6588f900f71", + "start": { + "$date": "2022-07-01T17:32:19.000Z" + }, + "end": { + "$date": "2022-07-01T18:37:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "387fbd2f-4995-4dca-bdc3-6307379ca595", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-01T18:32:33.000Z" + }, + "end": { + "$date": "2022-07-01T19:05:39.000Z" + }, + "events": [ + { + "uuid": "6882766f-7df3-4253-a8b0-392b5556bee1", + "start": { + "$date": "2022-07-01T18:32:33.000Z" + }, + "end": { + "$date": "2022-07-01T19:05:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "4ded40be-30bb-4493-800b-e56a7a377ad2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-01T20:26:47.000Z" + }, + "end": { + "$date": "2022-07-01T20:31:55.000Z" + }, + "events": [ + { + "uuid": "b53224c7-af4b-4a24-8d1b-591036d58e66", + "start": { + "$date": "2022-07-01T20:26:47.000Z" + }, + "end": { + "$date": "2022-07-01T20:31:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7b9861d9-347a-4f07-b295-7ff3ced28aec", + "uuid": "94c5a863-b17e-47d8-b67b-556f71f6390f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-01T20:32:03.000Z" + }, + "end": { + "$date": "2022-07-01T20:34:10.000Z" + }, + "events": [ + { + "uuid": "310ec7d6-71ae-4ad7-959d-6a8455602b21", + "start": { + "$date": "2022-07-01T20:32:03.000Z" + }, + "end": { + "$date": "2022-07-01T20:34:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "0a3f1e2e-bb7c-4f6f-b469-6619581a5295", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-01T20:45:44.000Z" + }, + "end": { + "$date": "2022-07-01T20:45:57.000Z" + }, + "events": [ + { + "uuid": "d0ce91e4-5cbf-4d6a-985a-7c562ac50e79", + "start": { + "$date": "2022-07-01T20:45:44.000Z" + }, + "end": { + "$date": "2022-07-01T20:45:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "119bdeb6-9fae-4e9e-82d3-c322d5595697", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-01T23:53:10.000Z" + }, + "end": { + "$date": "2022-07-02T00:07:01.000Z" + }, + "events": [ + { + "uuid": "d66cb375-8149-4e6c-91fa-00ab2a34df23", + "start": { + "$date": "2022-07-01T23:53:10.000Z" + }, + "end": { + "$date": "2022-07-02T00:07:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "5195d576-0e40-40ad-80c9-b160730d12a7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-02T00:35:40.000Z" + }, + "end": { + "$date": "2022-07-02T00:36:03.000Z" + }, + "events": [ + { + "uuid": "da04008b-5251-4ad9-aa1c-57a47f72ac2c", + "start": { + "$date": "2022-07-02T00:35:40.000Z" + }, + "end": { + "$date": "2022-07-02T00:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "efe93842-47c4-4ced-ae26-088c6b4fcb31", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-02T00:09:20.000Z" + }, + "end": { + "$date": "2022-07-02T02:09:15.000Z" + }, + "events": [ + { + "uuid": "7aa37337-7ae0-498d-b0d6-ae4c9bd952fc", + "start": { + "$date": "2022-07-02T00:09:20.000Z" + }, + "end": { + "$date": "2022-07-02T02:09:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "259c7575-1228-41b2-b9b1-546d2a61ac18", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-02T01:55:51.000Z" + }, + "end": { + "$date": "2022-07-02T02:24:37.000Z" + }, + "events": [ + { + "uuid": "8a4978d1-37cb-4599-a913-99ae4a0e4820", + "start": { + "$date": "2022-07-02T01:55:51.000Z" + }, + "end": { + "$date": "2022-07-02T02:24:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "16058471-1f49-4700-a266-1801a58abb6f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-02T02:29:25.000Z" + }, + "end": { + "$date": "2022-07-02T02:30:35.000Z" + }, + "events": [ + { + "uuid": "79f079e4-2e28-4754-a17d-0365779312f1", + "start": { + "$date": "2022-07-02T02:29:25.000Z" + }, + "end": { + "$date": "2022-07-02T02:30:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "fc814e9b-d44e-4103-b5d5-bb5420d93c09", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-02T02:30:45.000Z" + }, + "end": { + "$date": "2022-07-02T03:39:59.000Z" + }, + "events": [ + { + "uuid": "92443fd2-4d99-4ddc-bba5-47ad2160c024", + "start": { + "$date": "2022-07-02T02:30:45.000Z" + }, + "end": { + "$date": "2022-07-02T03:39:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "35384f00-76df-43dc-9ac8-b817cb89a8e1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-02T03:33:31.000Z" + }, + "end": { + "$date": "2022-07-02T07:55:48.000Z" + }, + "events": [ + { + "uuid": "118f942a-9653-41d6-a1cd-239019735cb5", + "start": { + "$date": "2022-07-02T03:33:31.000Z" + }, + "end": { + "$date": "2022-07-02T07:55:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "00312f2a-0179-4e03-bd07-e8dd012c405e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-02T03:43:24.000Z" + }, + "end": { + "$date": "2022-07-02T03:45:10.000Z" + }, + "events": [ + { + "uuid": "57830283-ae50-47b1-b491-a01e46d40a7c", + "start": { + "$date": "2022-07-02T03:43:24.000Z" + }, + "end": { + "$date": "2022-07-02T03:45:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "35f36d7c-b02e-4d1b-932b-dbae156f06fe", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-02T03:47:47.000Z" + }, + "end": { + "$date": "2022-07-02T09:33:40.000Z" + }, + "events": [ + { + "uuid": "cc07838f-2794-4e87-abd0-04d9984feee0", + "start": { + "$date": "2022-07-02T03:47:47.000Z" + }, + "end": { + "$date": "2022-07-02T09:33:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3a797415-ab7e-4d44-8dd6-270442c2aebd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-02T03:53:37.000Z" + }, + "end": { + "$date": "2022-07-02T06:06:38.000Z" + }, + "events": [ + { + "uuid": "6e9c2fe3-26e7-41ea-abe1-445dceeabef6", + "start": { + "$date": "2022-07-02T03:53:37.000Z" + }, + "end": { + "$date": "2022-07-02T06:06:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3f319ad8-c672-4a97-82c7-3d04c1d43927", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-02T03:54:41.000Z" + }, + "end": { + "$date": "2022-07-02T06:52:22.000Z" + }, + "events": [ + { + "uuid": "e248a951-e098-4119-bdcc-2dff31a40eab", + "start": { + "$date": "2022-07-02T03:54:41.000Z" + }, + "end": { + "$date": "2022-07-02T06:52:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "3ea9063c-af94-4c07-9529-e0f01aba4d28", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-02T04:35:14.000Z" + }, + "end": { + "$date": "2022-07-02T05:46:38.000Z" + }, + "events": [ + { + "uuid": "7701a841-3d30-4c21-b095-91615805c066", + "start": { + "$date": "2022-07-02T04:35:14.000Z" + }, + "end": { + "$date": "2022-07-02T05:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2e71fff2-c49f-415e-9bbd-c5222c5d060d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-02T04:41:52.000Z" + }, + "end": { + "$date": "2022-07-02T05:37:43.000Z" + }, + "events": [ + { + "uuid": "bc683632-3df0-4f6a-9f7e-8b2f59b7343b", + "start": { + "$date": "2022-07-02T04:41:52.000Z" + }, + "end": { + "$date": "2022-07-02T05:37:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ef2a7771-d081-4b87-90f7-08f12933e69a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-02T05:30:27.000Z" + }, + "end": { + "$date": "2022-07-02T07:16:59.000Z" + }, + "events": [ + { + "uuid": "85e3937d-e36c-465e-afff-02910d2c32e3", + "start": { + "$date": "2022-07-02T05:30:27.000Z" + }, + "end": { + "$date": "2022-07-02T07:16:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e701fd99-9aa7-40be-ac52-ed88ac558a3a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-02T05:37:58.000Z" + }, + "end": { + "$date": "2022-07-02T05:39:03.000Z" + }, + "events": [ + { + "uuid": "e92787da-5092-425c-9cdd-8f8f24b3ca5a", + "start": { + "$date": "2022-07-02T05:37:58.000Z" + }, + "end": { + "$date": "2022-07-02T05:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "71820bb6-0479-4392-9f12-4974685f101b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-02T05:42:13.000Z" + }, + "end": { + "$date": "2022-07-02T06:49:45.000Z" + }, + "events": [ + { + "uuid": "9aafa0ed-c89c-447c-94bc-11fb33d1ad00", + "start": { + "$date": "2022-07-02T05:42:13.000Z" + }, + "end": { + "$date": "2022-07-02T06:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "54835718-719e-44ea-83f1-a8baeed6d9e6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-02T06:50:10.000Z" + }, + "end": { + "$date": "2022-07-02T07:58:37.000Z" + }, + "events": [ + { + "uuid": "e8f2e320-bc0b-497e-bbc4-1ac96f1b7d7a", + "start": { + "$date": "2022-07-02T06:50:10.000Z" + }, + "end": { + "$date": "2022-07-02T07:35:10.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "274b7377-f786-441c-a1b6-8aec34abae3d", + "start": { + "$date": "2022-07-02T07:35:10.000Z" + }, + "end": { + "$date": "2022-07-02T07:38:10.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9d71260-c916-4fb2-8a99-6bc8ce0b7c7e", + "start": { + "$date": "2022-07-02T07:38:10.000Z" + }, + "end": { + "$date": "2022-07-02T07:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "a2e58bd0-cfc3-4097-b5bf-001515b1697b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-02T07:22:41.000Z" + }, + "end": { + "$date": "2022-07-02T07:28:17.000Z" + }, + "events": [ + { + "uuid": "817038f0-6f17-422e-9a39-656dd44bbad3", + "start": { + "$date": "2022-07-02T07:22:41.000Z" + }, + "end": { + "$date": "2022-07-02T07:28:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", + "uuid": "3d182ecc-35c7-4e17-af0e-5a8280e49b7c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-02T07:30:52.000Z" + }, + "end": { + "$date": "2022-07-02T07:45:39.000Z" + }, + "events": [ + { + "uuid": "4b976b3e-879e-471f-837a-bc2c6330bbe0", + "start": { + "$date": "2022-07-02T07:30:52.000Z" + }, + "end": { + "$date": "2022-07-02T07:45:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "baffda15-430a-441a-8bfe-e2ba79f573a6", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-02T08:17:11.000Z" + }, + "end": { + "$date": "2022-07-02T09:56:13.000Z" + }, + "events": [ + { + "uuid": "047d17d9-2df0-429c-ae91-e7a84cf66f27", + "start": { + "$date": "2022-07-02T08:17:11.000Z" + }, + "end": { + "$date": "2022-07-02T09:56:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", + "uuid": "e4c5c0e6-576b-4aa5-9cf5-e71b80e02a32", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-02T16:03:31.000Z" + }, + "end": { + "$date": "2022-07-02T16:20:32.000Z" + }, + "events": [ + { + "uuid": "b469d6fc-9eb1-4e53-9d9b-90e167ea973a", + "start": { + "$date": "2022-07-02T16:03:31.000Z" + }, + "end": { + "$date": "2022-07-02T16:20:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "80a9c763-a8fb-43f3-941f-9ad9045924e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-02T16:55:35.000Z" + }, + "end": { + "$date": "2022-07-02T17:01:20.000Z" + }, + "events": [ + { + "uuid": "3aa07eab-48dc-4a7e-9490-f827b124ff4a", + "start": { + "$date": "2022-07-02T16:55:35.000Z" + }, + "end": { + "$date": "2022-07-02T17:01:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "74d2268c-9856-48a8-82cd-6d673a126685", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-02T17:10:41.000Z" + }, + "end": { + "$date": "2022-07-02T17:17:31.000Z" + }, + "events": [ + { + "uuid": "e36f8652-00e4-4c83-b76b-094bc0ca0f45", + "start": { + "$date": "2022-07-02T17:10:41.000Z" + }, + "end": { + "$date": "2022-07-02T17:17:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0f3c51ae-ce5f-4d42-80b8-96d8bd1487fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-02T17:17:41.000Z" + }, + "end": { + "$date": "2022-07-02T23:04:25.000Z" + }, + "events": [ + { + "uuid": "c260a53c-71bd-4635-b010-c806433cd85e", + "start": { + "$date": "2022-07-02T17:17:41.000Z" + }, + "end": { + "$date": "2022-07-02T22:01:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c9d7d250-67ac-4ea1-a8a7-044ab1b6a764", + "start": { + "$date": "2022-07-02T22:01:41.000Z" + }, + "end": { + "$date": "2022-07-02T22:17:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "23881a76-21b2-4859-bf07-06f3c7570b56", + "start": { + "$date": "2022-07-02T22:17:41.000Z" + }, + "end": { + "$date": "2022-07-02T22:35:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "00e297ca-894c-413f-94ec-8693b79cfdda", + "start": { + "$date": "2022-07-02T22:35:41.000Z" + }, + "end": { + "$date": "2022-07-02T22:49:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5331628d-bcf8-40f4-84ad-0b6805d7ce17", + "start": { + "$date": "2022-07-02T22:49:41.000Z" + }, + "end": { + "$date": "2022-07-02T23:04:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6b82414-c7fa-4c62-89ec-adba4b617ec0", + "uuid": "b456b444-1dee-487d-8381-1d61490e9649", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-02T17:23:31.000Z" + }, + "end": { + "$date": "2022-07-02T19:37:32.000Z" + }, + "events": [ + { + "uuid": "3e01409d-149f-4eae-8479-7d65cc9de083", + "start": { + "$date": "2022-07-02T17:23:31.000Z" + }, + "end": { + "$date": "2022-07-02T17:37:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0df9a745-e4fa-47e5-b251-a210b551db53", + "start": { + "$date": "2022-07-02T17:37:31.000Z" + }, + "end": { + "$date": "2022-07-02T17:39:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "88dbcc0e-c077-4e3d-ac20-98f88398cc5a", + "start": { + "$date": "2022-07-02T17:39:31.000Z" + }, + "end": { + "$date": "2022-07-02T17:50:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3f2df4c6-aef7-4694-9850-b3c3a45bbf94", + "start": { + "$date": "2022-07-02T17:50:31.000Z" + }, + "end": { + "$date": "2022-07-02T19:25:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d7fcd69-dea1-4b49-adc9-11974097cb8c", + "start": { + "$date": "2022-07-02T19:25:31.000Z" + }, + "end": { + "$date": "2022-07-02T19:37:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ad8f96e5-ba46-4014-9bec-b9d985c5c205", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-02T19:28:40.000Z" + }, + "end": { + "$date": "2022-07-02T19:35:51.000Z" + }, + "events": [ + { + "uuid": "fe62d204-e2fd-432b-a5b1-16528aba8495", + "start": { + "$date": "2022-07-02T19:28:40.000Z" + }, + "end": { + "$date": "2022-07-02T19:35:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "2c6995bd-9ef9-4899-bb37-47a381cef9f8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-02T19:48:12.000Z" + }, + "end": { + "$date": "2022-07-02T20:47:16.000Z" + }, + "events": [ + { + "uuid": "0a9af543-2080-4335-8e6a-56e5231ed20a", + "start": { + "$date": "2022-07-02T19:48:12.000Z" + }, + "end": { + "$date": "2022-07-02T20:36:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "261c3179-35e7-479b-8544-288c8763e31f", + "start": { + "$date": "2022-07-02T20:36:12.000Z" + }, + "end": { + "$date": "2022-07-02T20:44:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e5d977bd-362f-4289-8792-4115b9242918", + "start": { + "$date": "2022-07-02T20:44:12.000Z" + }, + "end": { + "$date": "2022-07-02T20:47:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "80a6572e-fe1b-4280-a38b-daa0e91faa7b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-02T19:50:10.000Z" + }, + "end": { + "$date": "2022-07-02T20:53:01.000Z" + }, + "events": [ + { + "uuid": "03a7d5c2-bb61-45a6-b92a-5c76a10562bc", + "start": { + "$date": "2022-07-02T19:50:10.000Z" + }, + "end": { + "$date": "2022-07-02T20:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "e9f7c884-a9e4-4d7b-949c-d44615f05a64", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-02T21:02:48.000Z" + }, + "end": { + "$date": "2022-07-03T00:56:54.000Z" + }, + "events": [ + { + "uuid": "a3163c2a-3dfc-491b-841e-4d2dadd773ca", + "start": { + "$date": "2022-07-02T21:02:48.000Z" + }, + "end": { + "$date": "2022-07-03T00:56:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "50826ef5-0c45-4803-a242-edb9fb54d200", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-02T21:07:25.000Z" + }, + "end": { + "$date": "2022-07-03T01:00:45.000Z" + }, + "events": [ + { + "uuid": "8b88e196-cdf2-4508-9e3f-8d0d8ee63c97", + "start": { + "$date": "2022-07-02T21:07:25.000Z" + }, + "end": { + "$date": "2022-07-03T01:00:45.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "c985901b-6161-4036-9c4c-04618fdfd660", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-02T21:08:29.000Z" + }, + "end": { + "$date": "2022-07-03T00:58:29.000Z" + }, + "events": [ + { + "uuid": "2469701f-99ba-4633-94af-b34f50f52f96", + "start": { + "$date": "2022-07-02T21:08:29.000Z" + }, + "end": { + "$date": "2022-07-03T00:58:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a6c0a0f4-ae39-4e73-ad4a-f2ae5d962cb5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-02T22:05:28.000Z" + }, + "end": { + "$date": "2022-07-02T22:06:44.000Z" + }, + "events": [ + { + "uuid": "32ffc902-55a1-4f71-8f75-4cdd76ae84f0", + "start": { + "$date": "2022-07-02T22:05:28.000Z" + }, + "end": { + "$date": "2022-07-02T22:06:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4533d467-876a-408c-a412-c8b128a0695c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T03:06:17.000Z" + }, + "end": { + "$date": "2022-07-03T03:40:03.000Z" + }, + "events": [ + { + "uuid": "13e8a7a2-4abb-4869-8254-c8b211727ad3", + "start": { + "$date": "2022-07-03T03:06:17.000Z" + }, + "end": { + "$date": "2022-07-03T03:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a9d9297e-e8fc-4fb9-a58c-c1cc652bacf5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T03:43:15.000Z" + }, + "end": { + "$date": "2022-07-03T04:12:46.000Z" + }, + "events": [ + { + "uuid": "5f8f8229-d710-4cc9-9a75-05677e6c6288", + "start": { + "$date": "2022-07-03T03:43:15.000Z" + }, + "end": { + "$date": "2022-07-03T04:12:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "72a68b49-0386-4094-bc34-0354dfcfcdd4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-03T03:44:51.000Z" + }, + "end": { + "$date": "2022-07-03T07:11:19.000Z" + }, + "events": [ + { + "uuid": "793eb9a2-dd7d-4dbf-b5e8-93488c9c79b4", + "start": { + "$date": "2022-07-03T03:44:51.000Z" + }, + "end": { + "$date": "2022-07-03T07:11:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "0acedf88-5a57-4551-8bd2-e98112650409", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-03T03:53:02.000Z" + }, + "end": { + "$date": "2022-07-03T07:50:35.000Z" + }, + "events": [ + { + "uuid": "9e666000-36d6-4c2c-a205-14ab2009ec17", + "start": { + "$date": "2022-07-03T03:53:02.000Z" + }, + "end": { + "$date": "2022-07-03T07:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "ad001949-8fe7-4068-aba0-1ea16bb31cb5", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-03T04:02:14.000Z" + }, + "end": { + "$date": "2022-07-03T07:47:49.000Z" + }, + "events": [ + { + "uuid": "f9b9a806-7329-497b-b444-07c53a69cd86", + "start": { + "$date": "2022-07-03T04:02:14.000Z" + }, + "end": { + "$date": "2022-07-03T07:47:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a0e0d37c-32c0-4283-adbc-2307e2d897f2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T04:14:18.000Z" + }, + "end": { + "$date": "2022-07-03T04:53:36.000Z" + }, + "events": [ + { + "uuid": "4f17784d-26fa-47f7-9b6c-bdc3af349a2e", + "start": { + "$date": "2022-07-03T04:14:18.000Z" + }, + "end": { + "$date": "2022-07-03T04:53:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c9881b51-bacb-4bd3-9563-6311114b64a5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-03T04:49:48.000Z" + }, + "end": { + "$date": "2022-07-03T05:13:54.000Z" + }, + "events": [ + { + "uuid": "40348f31-3838-4fa8-a636-d966e21f5b8a", + "start": { + "$date": "2022-07-03T04:49:48.000Z" + }, + "end": { + "$date": "2022-07-03T05:13:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bbde747a-10d6-460b-aa12-fa005788f6ff", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T04:55:51.000Z" + }, + "end": { + "$date": "2022-07-03T05:23:16.000Z" + }, + "events": [ + { + "uuid": "03f3bb85-b783-48e7-bbd4-ca0f96680a61", + "start": { + "$date": "2022-07-03T04:55:51.000Z" + }, + "end": { + "$date": "2022-07-03T05:23:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c53e6fda-f3bc-497b-a6ff-d2d75f02f577", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T05:24:39.000Z" + }, + "end": { + "$date": "2022-07-03T06:01:35.000Z" + }, + "events": [ + { + "uuid": "501e30e2-60ea-4a8d-81c8-30fcc6c6fd6a", + "start": { + "$date": "2022-07-03T05:24:39.000Z" + }, + "end": { + "$date": "2022-07-03T06:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "0fa67d08-a935-4b11-a8e7-a665354990ac", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-03T05:35:31.000Z" + }, + "end": { + "$date": "2022-07-03T05:46:36.000Z" + }, + "events": [ + { + "uuid": "3427feb3-9857-4422-b3b5-8378218676dc", + "start": { + "$date": "2022-07-03T05:35:31.000Z" + }, + "end": { + "$date": "2022-07-03T05:46:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1902a166-315e-429a-a618-d13f066ba663", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T06:03:22.000Z" + }, + "end": { + "$date": "2022-07-03T06:30:46.000Z" + }, + "events": [ + { + "uuid": "51a54373-25b2-49c9-b14e-7405e2ae562a", + "start": { + "$date": "2022-07-03T06:03:22.000Z" + }, + "end": { + "$date": "2022-07-03T06:30:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e1f3015b-3612-4828-9a94-eb97deaf1686", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-03T06:31:46.000Z" + }, + "end": { + "$date": "2022-07-03T07:01:35.000Z" + }, + "events": [ + { + "uuid": "64b6607d-354e-47c0-a3eb-1791766ac87f", + "start": { + "$date": "2022-07-03T06:31:46.000Z" + }, + "end": { + "$date": "2022-07-03T07:01:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f3455b77-8208-479a-8244-34516b0e5816", + "uuid": "af0df7c7-35d8-4ea0-94fb-a12b8fad41cd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-03T06:32:22.000Z" + }, + "end": { + "$date": "2022-07-03T06:38:53.000Z" + }, + "events": [ + { + "uuid": "291dbef0-8856-4c28-9db6-986810e01d88", + "start": { + "$date": "2022-07-03T06:32:22.000Z" + }, + "end": { + "$date": "2022-07-03T06:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35f84e81-1f0a-4a40-b954-30225c142db7", + "uuid": "3a4e1a78-0016-45f2-9806-65547b71e32b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-03T06:51:54.000Z" + }, + "end": { + "$date": "2022-07-03T07:10:23.000Z" + }, + "events": [ + { + "uuid": "677e47a0-e54a-45e5-b04b-d0d542876dac", + "start": { + "$date": "2022-07-03T06:51:54.000Z" + }, + "end": { + "$date": "2022-07-03T07:10:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "49d485a1-55bb-49ff-b74c-9df00a06c058", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-03T16:37:11.000Z" + }, + "end": { + "$date": "2022-07-03T17:23:22.000Z" + }, + "events": [ + { + "uuid": "6aa8f594-31b1-4eba-b594-1ddc2a0846ff", + "start": { + "$date": "2022-07-03T16:37:11.000Z" + }, + "end": { + "$date": "2022-07-03T17:23:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e5d5940d-7514-4242-b4a9-9b4498da7cf4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-03T17:05:44.000Z" + }, + "end": { + "$date": "2022-07-03T19:18:26.000Z" + }, + "events": [ + { + "uuid": "fd65d56c-9829-4bf2-8675-b324fa39ab86", + "start": { + "$date": "2022-07-03T17:05:44.000Z" + }, + "end": { + "$date": "2022-07-03T19:18:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "366c0cf5-8262-449b-abed-07e2185a9ca2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-03T18:12:26.000Z" + }, + "end": { + "$date": "2022-07-03T21:28:23.000Z" + }, + "events": [ + { + "uuid": "a0fcb5d7-bf3f-4c00-a906-8ec20ca2a739", + "start": { + "$date": "2022-07-03T18:12:26.000Z" + }, + "end": { + "$date": "2022-07-03T18:51:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d56b39e9-a727-4ed0-bc77-e0db08e8af50", + "start": { + "$date": "2022-07-03T18:51:26.000Z" + }, + "end": { + "$date": "2022-07-03T18:55:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4aafef34-fff2-47b6-a204-1e3d320f4ae3", + "start": { + "$date": "2022-07-03T18:55:26.000Z" + }, + "end": { + "$date": "2022-07-03T21:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "9cd484a9-b660-4fea-a084-19be88fb3d51", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-03T18:13:48.000Z" + }, + "end": { + "$date": "2022-07-03T18:15:28.000Z" + }, + "events": [ + { + "uuid": "dcfae5c0-7e33-49d4-8f47-6c631f103e6b", + "start": { + "$date": "2022-07-03T18:13:48.000Z" + }, + "end": { + "$date": "2022-07-03T18:15:28.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "f2e32432-2882-431c-8751-d92e7ade7f1c", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-03T18:16:29.000Z" + }, + "end": { + "$date": "2022-07-03T22:01:19.000Z" + }, + "events": [ + { + "uuid": "29677b03-7594-4282-b563-b937eccf95a8", + "start": { + "$date": "2022-07-03T18:16:29.000Z" + }, + "end": { + "$date": "2022-07-03T22:01:19.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "715b7047-f449-4763-a766-0f3b302e3071", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-03T19:44:40.000Z" + }, + "end": { + "$date": "2022-07-03T23:47:51.000Z" + }, + "events": [ + { + "uuid": "5cb3930a-1e67-4fe4-99f6-969a000e3cac", + "start": { + "$date": "2022-07-03T19:44:40.000Z" + }, + "end": { + "$date": "2022-07-03T23:47:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "491c7e72-b649-452a-bd58-3806eabe517f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-03T20:12:55.000Z" + }, + "end": { + "$date": "2022-07-04T01:50:38.000Z" + }, + "events": [ + { + "uuid": "687dac43-9bc0-4f55-87ce-ce135120e466", + "start": { + "$date": "2022-07-03T20:12:55.000Z" + }, + "end": { + "$date": "2022-07-04T01:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "10493974-3568-4e39-a021-4cfdfcf20c44", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-03T20:20:56.000Z" + }, + "end": { + "$date": "2022-07-03T22:58:21.000Z" + }, + "events": [ + { + "uuid": "423b5cd2-96e0-4c79-b542-6b3712ec01ed", + "start": { + "$date": "2022-07-03T20:20:56.000Z" + }, + "end": { + "$date": "2022-07-03T22:58:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "10be1d1a-163f-4505-92de-d2533c108a7c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-03T21:23:13.000Z" + }, + "end": { + "$date": "2022-07-03T23:54:26.000Z" + }, + "events": [ + { + "uuid": "642655a9-c1a0-4a28-ba16-b2e3ee59bd1e", + "start": { + "$date": "2022-07-03T21:23:13.000Z" + }, + "end": { + "$date": "2022-07-03T23:54:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "9e47b72b-4702-40f5-84ed-435c150c9c7f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-03T22:00:17.000Z" + }, + "end": { + "$date": "2022-07-03T23:55:51.000Z" + }, + "events": [ + { + "uuid": "2be0ccf7-0ea5-4d08-825d-540478281783", + "start": { + "$date": "2022-07-03T22:00:17.000Z" + }, + "end": { + "$date": "2022-07-03T23:55:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "98b14fcd-7e70-495b-99d4-c279867ab8ac", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-03T22:44:12.000Z" + }, + "end": { + "$date": "2022-07-03T22:56:57.000Z" + }, + "events": [ + { + "uuid": "c7cfbbd1-e49c-4a60-afad-20520dfdf575", + "start": { + "$date": "2022-07-03T22:44:12.000Z" + }, + "end": { + "$date": "2022-07-03T22:56:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "e395bfbe-2de2-47bf-ba5c-cbb1317bf386", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-03T22:58:38.000Z" + }, + "end": { + "$date": "2022-07-04T01:51:13.000Z" + }, + "events": [ + { + "uuid": "0194f3f1-f7d3-442b-9dd8-260033f6fa3e", + "start": { + "$date": "2022-07-03T22:58:38.000Z" + }, + "end": { + "$date": "2022-07-04T01:51:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "32bc7552-f46f-4f84-9e65-2e1d1f0a32da", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-03T22:58:56.000Z" + }, + "end": { + "$date": "2022-07-04T04:31:33.000Z" + }, + "events": [ + { + "uuid": "e135888b-3679-4cc1-a663-4049d2e64158", + "start": { + "$date": "2022-07-03T22:58:56.000Z" + }, + "end": { + "$date": "2022-07-04T02:09:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a2558f90-e8e2-41f7-ae21-484dadea2443", + "start": { + "$date": "2022-07-04T02:09:56.000Z" + }, + "end": { + "$date": "2022-07-04T02:56:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "69d5c2a5-af76-4ed5-81bf-6d1275e0ff4a", + "start": { + "$date": "2022-07-04T02:56:56.000Z" + }, + "end": { + "$date": "2022-07-04T02:57:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58ff3b26-49e8-48e4-b3ce-dd2e0db95a7c", + "start": { + "$date": "2022-07-04T02:57:56.000Z" + }, + "end": { + "$date": "2022-07-04T03:09:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e8f620bc-ff44-44dd-ba83-786870adda85", + "start": { + "$date": "2022-07-04T03:09:56.000Z" + }, + "end": { + "$date": "2022-07-04T03:10:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bf658a50-d434-4771-a8a0-0b79adc8c9c7", + "start": { + "$date": "2022-07-04T03:10:56.000Z" + }, + "end": { + "$date": "2022-07-04T03:43:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8d96caca-2dab-43dd-8034-cf62b1d95fbc", + "start": { + "$date": "2022-07-04T03:43:56.000Z" + }, + "end": { + "$date": "2022-07-04T03:44:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bca7eec2-f2c6-4c9e-ae81-ca7a289694dd", + "start": { + "$date": "2022-07-04T03:44:56.000Z" + }, + "end": { + "$date": "2022-07-04T03:45:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "70f4b373-ec35-4a0a-9e0c-fd312c082d76", + "start": { + "$date": "2022-07-04T03:45:56.000Z" + }, + "end": { + "$date": "2022-07-04T03:46:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "39cd0b92-e272-4089-8086-0d66d670dca2", + "start": { + "$date": "2022-07-04T03:46:56.000Z" + }, + "end": { + "$date": "2022-07-04T04:31:33.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b80d0b49-db8e-4975-963a-61867a9fd909", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-04T00:03:09.000Z" + }, + "end": { + "$date": "2022-07-04T00:34:36.000Z" + }, + "events": [ + { + "uuid": "006fc764-d07c-4d01-b5ce-eba5428d5449", + "start": { + "$date": "2022-07-04T00:03:09.000Z" + }, + "end": { + "$date": "2022-07-04T00:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4827288b-a0ad-4f28-87b7-d4dfc9136d9a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-04T00:35:39.000Z" + }, + "end": { + "$date": "2022-07-04T06:44:59.000Z" + }, + "events": [ + { + "uuid": "a5c98070-e207-4d2b-9aa3-398cfbc47c16", + "start": { + "$date": "2022-07-04T00:35:39.000Z" + }, + "end": { + "$date": "2022-07-04T00:47:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "14768756-d173-4a68-bace-5aaba1e4356d", + "start": { + "$date": "2022-07-04T00:47:39.000Z" + }, + "end": { + "$date": "2022-07-04T00:52:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea7aed07-d561-42e1-a1fd-2d2394001395", + "start": { + "$date": "2022-07-04T00:52:39.000Z" + }, + "end": { + "$date": "2022-07-04T01:02:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2e927774-7ea1-429f-9616-818488f3a4a9", + "start": { + "$date": "2022-07-04T01:02:39.000Z" + }, + "end": { + "$date": "2022-07-04T01:05:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0dc84261-a421-49e3-8ed1-4fcb6fab7467", + "start": { + "$date": "2022-07-04T01:05:39.000Z" + }, + "end": { + "$date": "2022-07-04T06:44:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "92ce015c-6171-4b2c-bc26-aa095be62c63", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-04T00:46:23.000Z" + }, + "end": { + "$date": "2022-07-04T02:05:34.000Z" + }, + "events": [ + { + "uuid": "35eecd84-fa01-4905-b89b-344b5470c3c8", + "start": { + "$date": "2022-07-04T00:46:23.000Z" + }, + "end": { + "$date": "2022-07-04T02:05:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "6dfe246b-0c05-4add-83cd-5740f476aa1b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T01:24:59.000Z" + }, + "end": { + "$date": "2022-07-04T01:47:55.000Z" + }, + "events": [ + { + "uuid": "e9e3d34c-6820-40ec-a516-4bf6dc3c0e4a", + "start": { + "$date": "2022-07-04T01:24:59.000Z" + }, + "end": { + "$date": "2022-07-04T01:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35f84e81-1f0a-4a40-b954-30225c142db7", + "uuid": "1529e097-3444-4cf1-8dc3-02bb658f0338", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-04T02:24:16.000Z" + }, + "end": { + "$date": "2022-07-04T02:55:38.000Z" + }, + "events": [ + { + "uuid": "48e9f057-69e1-44c2-8637-08956b197c96", + "start": { + "$date": "2022-07-04T02:24:16.000Z" + }, + "end": { + "$date": "2022-07-04T02:55:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35f84e81-1f0a-4a40-b954-30225c142db7", + "uuid": "b500618d-6d1d-44de-b404-d068ef13bef1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-04T02:57:44.000Z" + }, + "end": { + "$date": "2022-07-04T03:18:30.000Z" + }, + "events": [ + { + "uuid": "5214af43-47e6-4d77-acce-e87f489d2bd3", + "start": { + "$date": "2022-07-04T02:57:44.000Z" + }, + "end": { + "$date": "2022-07-04T03:18:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "504366eb-8d03-4ed5-88b2-0c8bdfe4dcf9", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-04T03:47:50.000Z" + }, + "end": { + "$date": "2022-07-04T06:44:55.000Z" + }, + "events": [ + { + "uuid": "c38ff87c-0318-4756-96f5-253f2238840a", + "start": { + "$date": "2022-07-04T03:47:50.000Z" + }, + "end": { + "$date": "2022-07-04T06:44:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "b6a1dcb6-db5d-4384-8ef1-ef0db50f0e57", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-04T04:22:04.000Z" + }, + "end": { + "$date": "2022-07-04T04:22:13.000Z" + }, + "events": [ + { + "uuid": "36e96f5c-5e54-435e-b491-f538f53e5690", + "start": { + "$date": "2022-07-04T04:22:04.000Z" + }, + "end": { + "$date": "2022-07-04T04:22:13.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "c148cc9c-6a16-4edf-aec0-f0334911a03c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-04T03:50:58.000Z" + }, + "end": { + "$date": "2022-07-04T06:41:48.000Z" + }, + "events": [ + { + "uuid": "c524b18d-148e-4b93-80f9-f0fc037a1e27", + "start": { + "$date": "2022-07-04T03:50:58.000Z" + }, + "end": { + "$date": "2022-07-04T06:41:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "bfecf17b-f7d5-4706-8e55-7367c4de6b66", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-04T04:22:34.000Z" + }, + "end": { + "$date": "2022-07-04T06:42:51.000Z" + }, + "events": [ + { + "uuid": "9065c750-638c-4232-b9a7-8bec7872aa5a", + "start": { + "$date": "2022-07-04T04:22:34.000Z" + }, + "end": { + "$date": "2022-07-04T06:42:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7609bb59-549a-4ebc-b750-4cac6e9f0779", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-04T05:12:05.000Z" + }, + "end": { + "$date": "2022-07-04T05:48:30.000Z" + }, + "events": [ + { + "uuid": "a28744b3-b4a1-461b-aba6-03dd450003f9", + "start": { + "$date": "2022-07-04T05:12:05.000Z" + }, + "end": { + "$date": "2022-07-04T05:48:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9a612ec7-0d02-4036-a9e6-3654938cb615", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-04T05:49:58.000Z" + }, + "end": { + "$date": "2022-07-04T06:18:36.000Z" + }, + "events": [ + { + "uuid": "0ce6d215-ad32-49e5-8def-753bfb329504", + "start": { + "$date": "2022-07-04T05:49:58.000Z" + }, + "end": { + "$date": "2022-07-04T06:18:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "35f84e81-1f0a-4a40-b954-30225c142db7", + "uuid": "30903392-a5e4-4340-a5de-c2348fee5f13", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-04T06:15:34.000Z" + }, + "end": { + "$date": "2022-07-04T06:55:06.000Z" + }, + "events": [ + { + "uuid": "b8f45086-3f4c-48de-bd95-df150298360f", + "start": { + "$date": "2022-07-04T06:15:34.000Z" + }, + "end": { + "$date": "2022-07-04T06:55:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "71dee02c-949a-4f88-8536-154a73696977", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-04T06:19:31.000Z" + }, + "end": { + "$date": "2022-07-04T07:03:45.000Z" + }, + "events": [ + { + "uuid": "c3840992-b14a-4d30-8ad1-e7d0d78efb4b", + "start": { + "$date": "2022-07-04T06:19:31.000Z" + }, + "end": { + "$date": "2022-07-04T07:03:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "8cc23ff8-f03b-4035-895e-bb34ad3dbf3b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-04T06:49:19.000Z" + }, + "end": { + "$date": "2022-07-04T07:14:31.000Z" + }, + "events": [ + { + "uuid": "d55ca9ba-06de-43e5-9066-bd131ee8f387", + "start": { + "$date": "2022-07-04T06:49:19.000Z" + }, + "end": { + "$date": "2022-07-04T07:14:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "8179b391-1f68-4715-94d2-defaed845a69", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-04T08:29:53.000Z" + }, + "end": { + "$date": "2022-07-04T14:35:35.000Z" + }, + "events": [ + { + "uuid": "47dc7c7c-0b77-4333-8081-ee0359b4c66a", + "start": { + "$date": "2022-07-04T08:29:53.000Z" + }, + "end": { + "$date": "2022-07-04T14:35:35.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8a6a4b10-dd5c-489a-b01c-a8dc09f8fb56", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T15:39:12.000Z" + }, + "end": { + "$date": "2022-07-04T16:21:12.000Z" + }, + "events": [ + { + "uuid": "6fc1d452-8d11-4e6e-b26d-04aa421cc304", + "start": { + "$date": "2022-07-04T15:39:12.000Z" + }, + "end": { + "$date": "2022-07-04T16:21:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "457808ab-84bf-4557-98e0-169239773578", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T16:37:49.000Z" + }, + "end": { + "$date": "2022-07-04T16:42:44.000Z" + }, + "events": [ + { + "uuid": "9beb96e7-06c2-4053-acc0-aa2165bf713a", + "start": { + "$date": "2022-07-04T16:37:49.000Z" + }, + "end": { + "$date": "2022-07-04T16:42:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "85a44397-831e-40dc-bd73-e65e9a785398", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T16:50:30.000Z" + }, + "end": { + "$date": "2022-07-04T18:01:30.000Z" + }, + "events": [ + { + "uuid": "ae94cde3-e1ba-4bc6-81ef-48d4c0cecd27", + "start": { + "$date": "2022-07-04T16:50:30.000Z" + }, + "end": { + "$date": "2022-07-04T18:01:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "5057b21b-f227-4a3a-b1af-1f4f5eb3d633", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-04T17:59:54.000Z" + }, + "end": { + "$date": "2022-07-04T19:17:54.000Z" + }, + "events": [ + { + "uuid": "f4dd379b-7493-4826-a4a3-a5c7e0952273", + "start": { + "$date": "2022-07-04T17:59:54.000Z" + }, + "end": { + "$date": "2022-07-04T19:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c6de08f-5938-4b2e-81f6-d68e102e5880", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T18:01:50.000Z" + }, + "end": { + "$date": "2022-07-04T20:02:54.000Z" + }, + "events": [ + { + "uuid": "9f0a5c05-5391-4bb3-a8ec-5121e28d5705", + "start": { + "$date": "2022-07-04T18:01:50.000Z" + }, + "end": { + "$date": "2022-07-04T20:02:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "5763a35d-c586-47e2-a194-c81c0d75808c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-04T19:05:12.000Z" + }, + "end": { + "$date": "2022-07-04T23:31:27.000Z" + }, + "events": [ + { + "uuid": "0695829f-d845-4c1d-a398-73760c3bdec0", + "start": { + "$date": "2022-07-04T19:05:12.000Z" + }, + "end": { + "$date": "2022-07-04T23:31:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "ab38ef2a-ccef-4e82-ad30-615c1c172956", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-04T19:13:29.000Z" + }, + "end": { + "$date": "2022-07-04T23:31:23.000Z" + }, + "events": [ + { + "uuid": "6a6e5963-bb39-4ab7-9260-46b7deb2be82", + "start": { + "$date": "2022-07-04T19:13:29.000Z" + }, + "end": { + "$date": "2022-07-04T23:31:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "c8545285-1f7c-41a4-b5bf-3b210efee1f1", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-04T19:18:15.000Z" + }, + "end": { + "$date": "2022-07-04T23:30:55.000Z" + }, + "events": [ + { + "uuid": "4c1d3935-28ca-44fe-89a0-78484474d113", + "start": { + "$date": "2022-07-04T19:18:15.000Z" + }, + "end": { + "$date": "2022-07-04T23:30:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "c1d8a339-9271-4aa3-adda-4977c29416c8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-04T19:54:10.000Z" + }, + "end": { + "$date": "2022-07-04T21:03:59.000Z" + }, + "events": [ + { + "uuid": "7bb2755a-7fbd-444b-82d6-c1c17f84215a", + "start": { + "$date": "2022-07-04T19:54:10.000Z" + }, + "end": { + "$date": "2022-07-04T21:03:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "faf9ab30-e331-41f5-b2aa-11143e0d4634", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-04T21:17:56.000Z" + }, + "end": { + "$date": "2022-07-04T23:53:15.000Z" + }, + "events": [ + { + "uuid": "dbfe6ceb-56f5-4018-ae9c-ed1e51d6b542", + "start": { + "$date": "2022-07-04T21:17:56.000Z" + }, + "end": { + "$date": "2022-07-04T23:53:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ee81ec22-4c86-4be0-8d80-0e8033092707", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T21:44:56.000Z" + }, + "end": { + "$date": "2022-07-04T22:00:31.000Z" + }, + "events": [ + { + "uuid": "6b4cc472-edd5-4bd4-ade9-137d12b5206d", + "start": { + "$date": "2022-07-04T21:44:56.000Z" + }, + "end": { + "$date": "2022-07-04T22:00:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d3a393cd-a875-447f-a86a-9da062411ca6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-04T22:00:41.000Z" + }, + "end": { + "$date": "2022-07-05T00:04:22.000Z" + }, + "events": [ + { + "uuid": "67e57153-53bb-41c6-be8e-d266763a3269", + "start": { + "$date": "2022-07-04T22:00:41.000Z" + }, + "end": { + "$date": "2022-07-05T00:04:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "40bff37b-d065-4487-8256-c984dd80078d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-05T01:14:17.000Z" + }, + "end": { + "$date": "2022-07-05T01:46:02.000Z" + }, + "events": [ + { + "uuid": "cd5a1640-48f1-4030-aafc-c23018a7d9f5", + "start": { + "$date": "2022-07-05T01:14:17.000Z" + }, + "end": { + "$date": "2022-07-05T01:46:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d782bb3c-e4c4-4de6-bf14-3770a4297bd0", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-05T01:46:09.000Z" + }, + "end": { + "$date": "2022-07-05T02:45:43.000Z" + }, + "events": [ + { + "uuid": "002458b3-54d5-46c3-aa0c-2d7a26340a23", + "start": { + "$date": "2022-07-05T01:46:09.000Z" + }, + "end": { + "$date": "2022-07-05T02:45:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a15cf604-9c44-41f2-ac65-8c1f3a25e2e6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-05T02:41:51.000Z" + }, + "end": { + "$date": "2022-07-05T03:13:51.000Z" + }, + "events": [ + { + "uuid": "c9656105-2173-47a6-a49b-5a2a8f2f1280", + "start": { + "$date": "2022-07-05T02:41:51.000Z" + }, + "end": { + "$date": "2022-07-05T03:13:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "c7722239-6507-468e-9f76-fc3e5a6dc75f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-05T02:47:01.000Z" + }, + "end": { + "$date": "2022-07-05T07:50:48.000Z" + }, + "events": [ + { + "uuid": "131c5734-1e27-4841-b7a3-db50c28f9538", + "start": { + "$date": "2022-07-05T02:47:01.000Z" + }, + "end": { + "$date": "2022-07-05T07:50:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "ae2b68d1-cce4-4c04-8c50-a3b9ac03708d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-05T02:48:20.000Z" + }, + "end": { + "$date": "2022-07-05T07:58:03.000Z" + }, + "events": [ + { + "uuid": "75f39bbc-b4d3-4068-8b04-0664f60ff312", + "start": { + "$date": "2022-07-05T02:48:20.000Z" + }, + "end": { + "$date": "2022-07-05T07:58:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bcb9b1af-5cf9-42bf-b0a5-c389c6938167", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-05T03:08:02.000Z" + }, + "end": { + "$date": "2022-07-05T05:02:58.000Z" + }, + "events": [ + { + "uuid": "b60020ab-b6fd-439f-b85f-1a92f60295f1", + "start": { + "$date": "2022-07-05T03:08:02.000Z" + }, + "end": { + "$date": "2022-07-05T05:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "56e18210-c6ee-4eb7-9332-7c035dd2aa5a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-05T03:15:10.000Z" + }, + "end": { + "$date": "2022-07-05T03:46:46.000Z" + }, + "events": [ + { + "uuid": "1fec60f8-df06-46f3-9538-e70529deb3c2", + "start": { + "$date": "2022-07-05T03:15:10.000Z" + }, + "end": { + "$date": "2022-07-05T03:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "256a4c57-c456-4dc1-8cf9-e89a85fe4dfb", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-05T03:29:22.000Z" + }, + "end": { + "$date": "2022-07-05T07:56:55.000Z" + }, + "events": [ + { + "uuid": "0ebe382c-89eb-4b23-85bf-a371bee24359", + "start": { + "$date": "2022-07-05T03:29:22.000Z" + }, + "end": { + "$date": "2022-07-05T07:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "3fe6ed66-7289-4bf4-b796-eb2384564767", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-05T03:30:33.000Z" + }, + "end": { + "$date": "2022-07-05T07:50:09.000Z" + }, + "events": [ + { + "uuid": "3d21b9dd-6873-4cdc-a2d2-98ee8b012bb8", + "start": { + "$date": "2022-07-05T03:30:33.000Z" + }, + "end": { + "$date": "2022-07-05T07:50:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "c398ac0e-5cd3-4218-a85b-ec821b59848e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-05T03:31:05.000Z" + }, + "end": { + "$date": "2022-07-05T07:51:27.000Z" + }, + "events": [ + { + "uuid": "4aabf09c-3fc6-4a44-8313-64e5ae839a31", + "start": { + "$date": "2022-07-05T03:31:05.000Z" + }, + "end": { + "$date": "2022-07-05T07:51:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d49c4e8-8ca1-47ff-aacd-52c40819892b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-05T03:48:14.000Z" + }, + "end": { + "$date": "2022-07-05T04:25:19.000Z" + }, + "events": [ + { + "uuid": "70eb35b2-2595-4f40-8838-63888bc2ef21", + "start": { + "$date": "2022-07-05T03:48:14.000Z" + }, + "end": { + "$date": "2022-07-05T04:25:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "44ab1c10-d8cf-42ba-ac48-fffc4c215dbc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-05T04:27:51.000Z" + }, + "end": { + "$date": "2022-07-05T05:59:25.000Z" + }, + "events": [ + { + "uuid": "41d9d99a-1be8-44b3-9ef2-aeab7c9abf20", + "start": { + "$date": "2022-07-05T04:27:51.000Z" + }, + "end": { + "$date": "2022-07-05T05:59:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dbc75b5a-9d67-4f4a-ac1e-79e9660ad18e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-05T05:04:14.000Z" + }, + "end": { + "$date": "2022-07-05T07:04:37.000Z" + }, + "events": [ + { + "uuid": "f301a73f-215c-4dd8-b28e-08277bd57792", + "start": { + "$date": "2022-07-05T05:04:14.000Z" + }, + "end": { + "$date": "2022-07-05T07:04:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "d598888d-8acc-483a-bf8d-c5ac4dc39f41", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-05T08:36:12.000Z" + }, + "end": { + "$date": "2022-07-05T15:49:42.000Z" + }, + "events": [ + { + "uuid": "0420c966-05fa-4200-98b2-148111dbf7f6", + "start": { + "$date": "2022-07-05T08:36:12.000Z" + }, + "end": { + "$date": "2022-07-05T15:49:42.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "d9500e81-d889-423d-aadf-7dacda890d42", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-05T17:09:25.000Z" + }, + "end": { + "$date": "2022-07-05T18:12:06.000Z" + }, + "events": [ + { + "uuid": "8748f408-816c-4f3e-a89f-23e8af27dffd", + "start": { + "$date": "2022-07-05T17:09:25.000Z" + }, + "end": { + "$date": "2022-07-05T18:12:06.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", + "uuid": "c0ce9020-91d2-4cad-b307-f3a1369c3c31", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-05T17:24:51.000Z" + }, + "end": { + "$date": "2022-07-05T17:27:22.000Z" + }, + "events": [ + { + "uuid": "350dc93b-358b-43be-9b00-dc0e6c23d4d8", + "start": { + "$date": "2022-07-05T17:24:51.000Z" + }, + "end": { + "$date": "2022-07-05T17:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", + "uuid": "3853a556-0236-4879-ae98-1223332aa4b4", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-05T17:27:31.000Z" + }, + "end": { + "$date": "2022-07-05T17:30:27.000Z" + }, + "events": [ + { + "uuid": "091e127c-7612-454f-b149-ab5c14d2d4a1", + "start": { + "$date": "2022-07-05T17:27:31.000Z" + }, + "end": { + "$date": "2022-07-05T17:30:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", + "uuid": "6fdc3707-476e-4251-b040-6b161987a9dc", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-05T17:30:51.000Z" + }, + "end": { + "$date": "2022-07-05T18:20:46.000Z" + }, + "events": [ + { + "uuid": "c68bc30e-deba-45e5-b15a-032a381fe8fe", + "start": { + "$date": "2022-07-05T17:30:51.000Z" + }, + "end": { + "$date": "2022-07-05T18:20:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a43a855b-55ef-40d5-a167-dde4fe594792", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-05T18:24:51.000Z" + }, + "end": { + "$date": "2022-07-05T19:37:13.000Z" + }, + "events": [ + { + "uuid": "052cdba3-11bd-464d-8f02-314e47d79dd6", + "start": { + "$date": "2022-07-05T18:24:51.000Z" + }, + "end": { + "$date": "2022-07-05T19:37:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0a3f1032-797e-41ee-9271-b33e5e0c1d33", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-05T18:54:38.000Z" + }, + "end": { + "$date": "2022-07-05T19:57:46.000Z" + }, + "events": [ + { + "uuid": "8694f70b-be23-4dd3-9d2b-b9c484e3192f", + "start": { + "$date": "2022-07-05T18:54:38.000Z" + }, + "end": { + "$date": "2022-07-05T19:24:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7ee6091-cc35-49cc-956f-29c92dcebac2", + "start": { + "$date": "2022-07-05T19:24:38.000Z" + }, + "end": { + "$date": "2022-07-05T19:25:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d60f7f5e-ccc3-4e9c-8405-712ff6e7c4db", + "start": { + "$date": "2022-07-05T19:25:38.000Z" + }, + "end": { + "$date": "2022-07-05T19:57:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0377e24c-c010-4515-a23b-8dbd1baa94a0", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-05T19:20:21.000Z" + }, + "end": { + "$date": "2022-07-05T19:25:41.000Z" + }, + "events": [ + { + "uuid": "1ef63d0e-7b4d-4e98-8406-2768048839ce", + "start": { + "$date": "2022-07-05T19:20:21.000Z" + }, + "end": { + "$date": "2022-07-05T19:25:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7f19b80c-4e7e-44cf-b822-8a19b463987c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-06T00:05:01.000Z" + }, + "end": { + "$date": "2022-07-06T00:35:39.000Z" + }, + "events": [ + { + "uuid": "21c7d8dc-ef5c-48c5-bb1e-9bc505ad5662", + "start": { + "$date": "2022-07-06T00:05:01.000Z" + }, + "end": { + "$date": "2022-07-06T00:20:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e4fb1fff-70ba-4f22-b117-5d2ec8393a9b", + "start": { + "$date": "2022-07-06T00:20:01.000Z" + }, + "end": { + "$date": "2022-07-06T00:35:39.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "efc167c1-807b-4603-a398-0981fc8c87a8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T00:11:24.000Z" + }, + "end": { + "$date": "2022-07-06T00:27:20.000Z" + }, + "events": [ + { + "uuid": "84daf9aa-0f97-4ab3-a857-eaeec5d52f70", + "start": { + "$date": "2022-07-06T00:11:24.000Z" + }, + "end": { + "$date": "2022-07-06T00:27:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "732e2129-7fea-46ce-beac-b469998ff956", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-06T00:15:56.000Z" + }, + "end": { + "$date": "2022-07-06T00:20:17.000Z" + }, + "events": [ + { + "uuid": "1dd1239e-d0be-4248-acfd-3cdb71f0dea8", + "start": { + "$date": "2022-07-06T00:15:56.000Z" + }, + "end": { + "$date": "2022-07-06T00:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "71f5ab19-5e85-449a-9a62-5606373bcdc5", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-06T00:21:22.000Z" + }, + "end": { + "$date": "2022-07-06T00:57:12.000Z" + }, + "events": [ + { + "uuid": "c4e3692a-10d0-4ad4-b82a-4a9b07829b54", + "start": { + "$date": "2022-07-06T00:21:22.000Z" + }, + "end": { + "$date": "2022-07-06T00:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6386f5be-e439-4bde-9a50-1b49be5fc836", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T00:29:21.000Z" + }, + "end": { + "$date": "2022-07-06T01:11:17.000Z" + }, + "events": [ + { + "uuid": "b0c845c4-cee7-46fa-86f8-d184e7ed075a", + "start": { + "$date": "2022-07-06T00:29:21.000Z" + }, + "end": { + "$date": "2022-07-06T01:11:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9903b3c9-3ff6-493f-bd56-1b95e533a0c6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T01:19:11.000Z" + }, + "end": { + "$date": "2022-07-06T02:43:25.000Z" + }, + "events": [ + { + "uuid": "4092e23d-eb45-4094-8218-ea677e3e6114", + "start": { + "$date": "2022-07-06T01:19:11.000Z" + }, + "end": { + "$date": "2022-07-06T02:43:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b4277e0b-707f-4ec9-a80c-97bd7aa429a0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-06T01:50:25.000Z" + }, + "end": { + "$date": "2022-07-06T07:37:57.000Z" + }, + "events": [ + { + "uuid": "7d0be9a8-0604-4838-b0ca-f37971fb58e0", + "start": { + "$date": "2022-07-06T01:50:25.000Z" + }, + "end": { + "$date": "2022-07-06T02:04:25.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "502d21a2-7a18-4fa8-b285-4db80d331bff", + "start": { + "$date": "2022-07-06T02:04:25.000Z" + }, + "end": { + "$date": "2022-07-06T02:09:25.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5c79e534-6f88-4e72-95f1-68484d183989", + "start": { + "$date": "2022-07-06T02:09:25.000Z" + }, + "end": { + "$date": "2022-07-06T07:37:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f1d9645a-4961-493f-950e-1f4e20186c67", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T03:15:22.000Z" + }, + "end": { + "$date": "2022-07-06T03:45:56.000Z" + }, + "events": [ + { + "uuid": "9b3256b1-cd92-41d8-8d3e-fa64cd82cfe7", + "start": { + "$date": "2022-07-06T03:15:22.000Z" + }, + "end": { + "$date": "2022-07-06T03:45:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72530e10-5405-487b-bb65-86e90877dc69", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T03:47:59.000Z" + }, + "end": { + "$date": "2022-07-06T04:32:37.000Z" + }, + "events": [ + { + "uuid": "2faee1b4-a4f1-4425-901e-21617c5c4f9a", + "start": { + "$date": "2022-07-06T03:47:59.000Z" + }, + "end": { + "$date": "2022-07-06T04:32:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "bf319494-3aed-40e9-b271-56d6da0de50c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T04:33:56.000Z" + }, + "end": { + "$date": "2022-07-06T05:19:03.000Z" + }, + "events": [ + { + "uuid": "631d2809-8ecb-4ab9-a850-6b03bc631498", + "start": { + "$date": "2022-07-06T04:33:56.000Z" + }, + "end": { + "$date": "2022-07-06T05:19:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b30285cc-7955-44d7-9963-7e644b5341da", + "uuid": "31dc54f6-0060-411e-b053-9201d75a3b8d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-06T04:38:53.000Z" + }, + "end": { + "$date": "2022-07-06T06:06:19.000Z" + }, + "events": [ + { + "uuid": "f70e6304-c10e-46fb-b201-4138c1413d73", + "start": { + "$date": "2022-07-06T04:38:53.000Z" + }, + "end": { + "$date": "2022-07-06T06:06:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dc3c50ff-b0e0-49f4-886c-c6612ee6482e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T05:20:03.000Z" + }, + "end": { + "$date": "2022-07-06T05:44:27.000Z" + }, + "events": [ + { + "uuid": "42a7a46d-e74b-4116-bc0e-797ce07057d9", + "start": { + "$date": "2022-07-06T05:20:03.000Z" + }, + "end": { + "$date": "2022-07-06T05:44:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ebe7b05a-4b90-4f5c-91ad-877d29a07a7b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T05:45:05.000Z" + }, + "end": { + "$date": "2022-07-06T06:24:37.000Z" + }, + "events": [ + { + "uuid": "59bc24fc-08d0-4593-a4bd-18ed58f2cce0", + "start": { + "$date": "2022-07-06T05:45:05.000Z" + }, + "end": { + "$date": "2022-07-06T06:24:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ca9dee58-11e7-4343-a986-bcf19cc97665", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-06T06:29:42.000Z" + }, + "end": { + "$date": "2022-07-06T06:49:58.000Z" + }, + "events": [ + { + "uuid": "f99e4a5b-0a9a-43e1-b875-018eb5f15584", + "start": { + "$date": "2022-07-06T06:29:42.000Z" + }, + "end": { + "$date": "2022-07-06T06:49:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "17be7b5f-b04a-4d0f-a65e-fbae06cb14b2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-06T20:01:59.000Z" + }, + "end": { + "$date": "2022-07-06T20:42:56.000Z" + }, + "events": [ + { + "uuid": "5585822c-a78c-4d95-b038-9292f2d273f5", + "start": { + "$date": "2022-07-06T20:01:59.000Z" + }, + "end": { + "$date": "2022-07-06T20:42:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "0d3e32a2-9a7f-4b81-a2d6-76d9d27107bf", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-06T22:23:11.000Z" + }, + "end": { + "$date": "2022-07-06T22:38:36.000Z" + }, + "events": [ + { + "uuid": "a0547707-32b1-4079-ab43-8fdf1e6bcb20", + "start": { + "$date": "2022-07-06T22:23:11.000Z" + }, + "end": { + "$date": "2022-07-06T22:38:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b6df992a-f21f-4d39-a35f-0b3989bafeaf", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-06T22:27:16.000Z" + }, + "end": { + "$date": "2022-07-06T22:42:06.000Z" + }, + "events": [ + { + "uuid": "5da58e6a-8d6e-4c68-a02c-a77e7be86d1d", + "start": { + "$date": "2022-07-06T22:27:16.000Z" + }, + "end": { + "$date": "2022-07-06T22:42:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a41814e1-70c8-4c63-a0ad-51574a28e18f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-06T22:39:07.000Z" + }, + "end": { + "$date": "2022-07-07T04:04:09.000Z" + }, + "events": [ + { + "uuid": "74b549c2-c1c4-4452-980a-0c87d93ebae5", + "start": { + "$date": "2022-07-06T22:39:07.000Z" + }, + "end": { + "$date": "2022-07-07T04:04:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "938b470d-0af1-4f35-aab2-220700aa9440", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-06T23:09:30.000Z" + }, + "end": { + "$date": "2022-07-06T23:11:29.000Z" + }, + "events": [ + { + "uuid": "e9125825-32a2-48cc-a443-f0d34a111c2f", + "start": { + "$date": "2022-07-06T23:09:30.000Z" + }, + "end": { + "$date": "2022-07-06T23:11:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7670f14c-3c10-442d-ac59-dd33af4273e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-06T23:48:21.000Z" + }, + "end": { + "$date": "2022-07-06T23:55:21.000Z" + }, + "events": [ + { + "uuid": "7a0392b3-6aeb-4dc9-a6a6-4cc718965387", + "start": { + "$date": "2022-07-06T23:48:21.000Z" + }, + "end": { + "$date": "2022-07-06T23:55:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b36aba44-c5a8-49ea-b3ad-9e1e00142bef", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-07T00:50:01.000Z" + }, + "end": { + "$date": "2022-07-07T02:36:39.000Z" + }, + "events": [ + { + "uuid": "4db81675-e025-4690-9af5-23f74ee2762e", + "start": { + "$date": "2022-07-07T00:50:01.000Z" + }, + "end": { + "$date": "2022-07-07T02:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "06dae10e-d19f-40bc-978e-a60cf86cbb2e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-07T00:52:44.000Z" + }, + "end": { + "$date": "2022-07-07T00:53:46.000Z" + }, + "events": [ + { + "uuid": "e853c047-9af1-4bc2-96a3-68053a7eb069", + "start": { + "$date": "2022-07-07T00:52:44.000Z" + }, + "end": { + "$date": "2022-07-07T00:53:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "56c214c7-82bf-4b9c-83ae-569d99a666da", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-07T00:54:29.000Z" + }, + "end": { + "$date": "2022-07-07T02:35:26.000Z" + }, + "events": [ + { + "uuid": "66c3c8d9-ab48-4c3e-aa09-c58da62fed1a", + "start": { + "$date": "2022-07-07T00:54:29.000Z" + }, + "end": { + "$date": "2022-07-07T02:35:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "4bc4bb91-2ffa-4e17-b35b-995ddaeba29a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-07T01:30:50.000Z" + }, + "end": { + "$date": "2022-07-07T01:43:42.000Z" + }, + "events": [ + { + "uuid": "3c20784e-ad2e-48fe-9351-ad37338d89d2", + "start": { + "$date": "2022-07-07T01:30:50.000Z" + }, + "end": { + "$date": "2022-07-07T01:43:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "9694a61b-cc51-4e1a-8eda-92d04f13ebdd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-07T01:49:23.000Z" + }, + "end": { + "$date": "2022-07-07T02:29:29.000Z" + }, + "events": [ + { + "uuid": "b47bed25-110d-4246-94b1-d259c4464751", + "start": { + "$date": "2022-07-07T01:49:23.000Z" + }, + "end": { + "$date": "2022-07-07T02:29:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5f71842e-7b97-4a1b-989d-58ef5790613c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-07T02:30:13.000Z" + }, + "end": { + "$date": "2022-07-07T05:13:37.000Z" + }, + "events": [ + { + "uuid": "4dd18fa5-b2ae-4c88-824f-9fa3d279ff22", + "start": { + "$date": "2022-07-07T02:30:13.000Z" + }, + "end": { + "$date": "2022-07-07T05:13:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1d1821c7-9321-419c-945c-8d99d3b20f20", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-07T03:25:09.000Z" + }, + "end": { + "$date": "2022-07-07T03:47:19.000Z" + }, + "events": [ + { + "uuid": "1a0a288a-d156-461f-b9e1-0ac67f8d271f", + "start": { + "$date": "2022-07-07T03:25:09.000Z" + }, + "end": { + "$date": "2022-07-07T03:47:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2e963176-f0e3-464b-8336-abb0eedb7cdb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-07T04:04:24.000Z" + }, + "end": { + "$date": "2022-07-07T04:49:45.000Z" + }, + "events": [ + { + "uuid": "1ee961f0-c194-4ce6-a9f0-ea7129dceba0", + "start": { + "$date": "2022-07-07T04:04:24.000Z" + }, + "end": { + "$date": "2022-07-07T04:49:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c29e45b8-a528-48d2-be91-28e0f64918ee", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-07T04:22:41.000Z" + }, + "end": { + "$date": "2022-07-07T04:40:13.000Z" + }, + "events": [ + { + "uuid": "9cdbcbfe-46f7-4e62-b03d-2f2c07ece35f", + "start": { + "$date": "2022-07-07T04:22:41.000Z" + }, + "end": { + "$date": "2022-07-07T04:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2921d8f2-be92-4e94-b4f1-1e3332bfebf0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-07T04:33:41.000Z" + }, + "end": { + "$date": "2022-07-07T07:14:07.000Z" + }, + "events": [ + { + "uuid": "430d3cf9-43c0-4fce-8289-6f03ee901804", + "start": { + "$date": "2022-07-07T04:33:41.000Z" + }, + "end": { + "$date": "2022-07-07T07:14:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "5e2a306b-1839-431e-880c-3737bbf61804", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-07T16:07:15.000Z" + }, + "end": { + "$date": "2022-07-07T16:07:20.000Z" + }, + "events": [ + { + "uuid": "ab8639c4-c77f-4e48-b99d-13b52ebcb3fe", + "start": { + "$date": "2022-07-07T16:07:15.000Z" + }, + "end": { + "$date": "2022-07-07T16:07:20.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "c027f5c2-f26e-4cb9-9bf5-509ddc268dc1", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-07T16:07:40.000Z" + }, + "end": { + "$date": "2022-07-07T17:21:37.000Z" + }, + "events": [ + { + "uuid": "cd14b314-223b-4630-ada4-9465424dc328", + "start": { + "$date": "2022-07-07T16:07:40.000Z" + }, + "end": { + "$date": "2022-07-07T17:21:37.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "9b681c80-80f9-4d54-a9b2-74fcec35df69", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-07T17:26:39.000Z" + }, + "end": { + "$date": "2022-07-07T20:49:38.000Z" + }, + "events": [ + { + "uuid": "5077359d-1e59-4a24-b48b-4a878df6b6c9", + "start": { + "$date": "2022-07-07T17:26:39.000Z" + }, + "end": { + "$date": "2022-07-07T20:49:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "772e1079-c718-4aa3-b3c2-a34917f9185c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-07T19:43:15.000Z" + }, + "end": { + "$date": "2022-07-07T20:40:08.000Z" + }, + "events": [ + { + "uuid": "d7503311-6758-4e8e-b9d0-8c35e67b638f", + "start": { + "$date": "2022-07-07T19:43:15.000Z" + }, + "end": { + "$date": "2022-07-07T20:40:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "250d0169-6c57-4a4e-ba91-7cc486bd95d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-07T20:42:01.000Z" + }, + "end": { + "$date": "2022-07-07T22:01:59.000Z" + }, + "events": [ + { + "uuid": "4619463a-6cd6-43f4-adce-8935d54a7039", + "start": { + "$date": "2022-07-07T20:42:01.000Z" + }, + "end": { + "$date": "2022-07-07T22:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1710e0c-5e43-41b7-a969-ffc16b0d44be", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-08T00:10:42.000Z" + }, + "end": { + "$date": "2022-07-08T00:29:08.000Z" + }, + "events": [ + { + "uuid": "d40eba4d-2798-4e46-ba36-a04253a34b70", + "start": { + "$date": "2022-07-08T00:10:42.000Z" + }, + "end": { + "$date": "2022-07-08T00:29:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "8ea33d27-a8f0-4044-ab29-d3f313a9cdd9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-08T00:31:43.000Z" + }, + "end": { + "$date": "2022-07-08T00:53:14.000Z" + }, + "events": [ + { + "uuid": "7231a991-9ec0-48aa-988a-c032025bcdfa", + "start": { + "$date": "2022-07-08T00:31:43.000Z" + }, + "end": { + "$date": "2022-07-08T00:53:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "c923734c-dc1a-4e3f-91ff-bf4f3abf492e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-08T01:04:44.000Z" + }, + "end": { + "$date": "2022-07-08T04:06:51.000Z" + }, + "events": [ + { + "uuid": "9186ef25-18dc-4026-ba26-c72271b5cc5a", + "start": { + "$date": "2022-07-08T01:04:44.000Z" + }, + "end": { + "$date": "2022-07-08T04:06:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "fdbd92cc-c4d7-41a9-8257-6e0efd414cc4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-08T01:04:45.000Z" + }, + "end": { + "$date": "2022-07-08T04:07:58.000Z" + }, + "events": [ + { + "uuid": "9b9a3f9d-2e70-458e-afca-6307aa979ffc", + "start": { + "$date": "2022-07-08T01:04:45.000Z" + }, + "end": { + "$date": "2022-07-08T04:07:58.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "14f95beb-6e8a-4db5-828c-8a92e2f91da7", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-08T01:04:52.000Z" + }, + "end": { + "$date": "2022-07-08T07:30:13.000Z" + }, + "events": [ + { + "uuid": "98a792af-3d35-4172-a790-91af14030373", + "start": { + "$date": "2022-07-08T01:04:52.000Z" + }, + "end": { + "$date": "2022-07-08T07:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "be2a1056-2945-4751-a98e-cc64128c9041", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-08T01:07:41.000Z" + }, + "end": { + "$date": "2022-07-08T04:09:17.000Z" + }, + "events": [ + { + "uuid": "3b129979-2b10-4788-8a2f-47f16becbfb3", + "start": { + "$date": "2022-07-08T01:07:41.000Z" + }, + "end": { + "$date": "2022-07-08T04:09:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "63386784-b882-42a3-a89c-13eac48f8748", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-08T01:09:43.000Z" + }, + "end": { + "$date": "2022-07-08T03:47:24.000Z" + }, + "events": [ + { + "uuid": "14706448-db8f-430a-9fe7-cef7a064def3", + "start": { + "$date": "2022-07-08T01:09:43.000Z" + }, + "end": { + "$date": "2022-07-08T03:47:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "80d1fd3b-1a81-4180-8af6-eb636ede3099", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-08T01:30:27.000Z" + }, + "end": { + "$date": "2022-07-08T03:47:26.000Z" + }, + "events": [ + { + "uuid": "5eed7771-b76e-4aa9-ab6a-4aa24ba07ffd", + "start": { + "$date": "2022-07-08T01:30:27.000Z" + }, + "end": { + "$date": "2022-07-08T03:40:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7972f0e1-9e12-4dae-88e7-74ce6efa4813", + "start": { + "$date": "2022-07-08T03:40:27.000Z" + }, + "end": { + "$date": "2022-07-08T03:43:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fe843a13-cac9-4e6f-a81a-0166cefcb570", + "start": { + "$date": "2022-07-08T03:43:27.000Z" + }, + "end": { + "$date": "2022-07-08T03:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "72561aca-ea10-4c23-8fdc-f77f31826697", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-08T01:45:12.000Z" + }, + "end": { + "$date": "2022-07-08T02:21:50.000Z" + }, + "events": [ + { + "uuid": "8c49f3df-2a99-4911-9909-ade83afdd60b", + "start": { + "$date": "2022-07-08T01:45:12.000Z" + }, + "end": { + "$date": "2022-07-08T02:21:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "dfd6d4bf-5b0f-4886-8053-09f188e1c9b2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-08T02:21:59.000Z" + }, + "end": { + "$date": "2022-07-08T07:19:23.000Z" + }, + "events": [ + { + "uuid": "02b1c69d-c2ee-4341-b21c-3520efbfce7b", + "start": { + "$date": "2022-07-08T02:21:59.000Z" + }, + "end": { + "$date": "2022-07-08T07:19:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "b1a36785-88c5-4b70-8312-b98b09f2b507", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-08T02:26:13.000Z" + }, + "end": { + "$date": "2022-07-08T03:39:06.000Z" + }, + "events": [ + { + "uuid": "de409d8d-c464-4f6a-aa03-365d2eddf6f7", + "start": { + "$date": "2022-07-08T02:26:13.000Z" + }, + "end": { + "$date": "2022-07-08T03:39:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "6a809513-e1ac-4003-b308-0ec73e0f95bf", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-08T03:58:36.000Z" + }, + "end": { + "$date": "2022-07-08T08:04:52.000Z" + }, + "events": [ + { + "uuid": "d21e61ee-3f96-49ed-869a-bb1d7756016a", + "start": { + "$date": "2022-07-08T03:58:36.000Z" + }, + "end": { + "$date": "2022-07-08T08:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "2125f2df-4356-4c89-94da-af9257347de5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-08T03:59:22.000Z" + }, + "end": { + "$date": "2022-07-08T08:03:16.000Z" + }, + "events": [ + { + "uuid": "64be4c44-c28b-4627-a1ae-dea0fef2f391", + "start": { + "$date": "2022-07-08T03:59:22.000Z" + }, + "end": { + "$date": "2022-07-08T08:03:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "afaaac31-914f-4e30-b16d-a17b79923432", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-08T06:15:10.000Z" + }, + "end": { + "$date": "2022-07-08T06:47:46.000Z" + }, + "events": [ + { + "uuid": "e8be79a8-1010-444a-a659-13eef508f724", + "start": { + "$date": "2022-07-08T06:15:10.000Z" + }, + "end": { + "$date": "2022-07-08T06:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dea3dc06-cce2-4570-b06d-644989d31b68", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-08T06:49:13.000Z" + }, + "end": { + "$date": "2022-07-08T07:19:01.000Z" + }, + "events": [ + { + "uuid": "bd9b7703-1a14-4b1e-96a2-3d1755321df2", + "start": { + "$date": "2022-07-08T06:49:13.000Z" + }, + "end": { + "$date": "2022-07-08T07:19:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "200d132d-a2ab-48fa-ab8b-b369077d1823", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-08T07:20:24.000Z" + }, + "end": { + "$date": "2022-07-08T08:02:20.000Z" + }, + "events": [ + { + "uuid": "60351533-70fe-4151-8f14-e43f208583dc", + "start": { + "$date": "2022-07-08T07:20:24.000Z" + }, + "end": { + "$date": "2022-07-08T08:02:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e47be6f2-06b1-41e1-83de-61c5f2886a46", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-08T08:03:47.000Z" + }, + "end": { + "$date": "2022-07-08T08:46:15.000Z" + }, + "events": [ + { + "uuid": "c3bdee50-2a59-400b-9395-480f026580d6", + "start": { + "$date": "2022-07-08T08:03:47.000Z" + }, + "end": { + "$date": "2022-07-08T08:46:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "67aba76a-688c-48da-ba00-560da999f330", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-08T15:54:37.000Z" + }, + "end": { + "$date": "2022-07-08T16:16:22.000Z" + }, + "events": [ + { + "uuid": "effd538a-eb20-4eb1-80b4-ff3c9d3149a3", + "start": { + "$date": "2022-07-08T15:54:37.000Z" + }, + "end": { + "$date": "2022-07-08T16:16:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "018e72f1-643c-4d1e-83a3-20a12221ad6c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-08T16:16:52.000Z" + }, + "end": { + "$date": "2022-07-08T16:27:22.000Z" + }, + "events": [ + { + "uuid": "6e8d1b80-bd9e-4fb6-9383-df8b2e8c4eb6", + "start": { + "$date": "2022-07-08T16:16:52.000Z" + }, + "end": { + "$date": "2022-07-08T16:27:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "3d5e7d31-0526-42ff-8e08-6528666e87a2", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-08T16:33:53.000Z" + }, + "end": { + "$date": "2022-07-08T17:08:34.000Z" + }, + "events": [ + { + "uuid": "44f8bbdb-f51c-443b-9bc0-42362edbf08c", + "start": { + "$date": "2022-07-08T16:33:53.000Z" + }, + "end": { + "$date": "2022-07-08T17:08:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7b9861d9-347a-4f07-b295-7ff3ced28aec", + "uuid": "684fc5f8-2fa9-4349-b6f6-3586c0d3c8d2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-08T22:24:41.000Z" + }, + "end": { + "$date": "2022-07-08T22:24:54.000Z" + }, + "events": [ + { + "uuid": "c46eabfa-0169-4f16-a2b4-453c3b692837", + "start": { + "$date": "2022-07-08T22:24:41.000Z" + }, + "end": { + "$date": "2022-07-08T22:24:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "dda8ee4b-8ab6-4cd6-9db2-4d156031306f", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-08T22:22:48.000Z" + }, + "end": { + "$date": "2022-07-09T00:39:32.000Z" + }, + "events": [ + { + "uuid": "52e8ea1e-4ca9-4554-8e9f-9e04996da97d", + "start": { + "$date": "2022-07-08T22:22:48.000Z" + }, + "end": { + "$date": "2022-07-09T00:39:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "eb1878e3-60ea-4898-bf59-d405d083cdd7", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-08T22:41:14.000Z" + }, + "end": { + "$date": "2022-07-08T22:41:47.000Z" + }, + "events": [ + { + "uuid": "707d14c8-b9ab-4560-a0e6-cb94d66e6e11", + "start": { + "$date": "2022-07-08T22:41:14.000Z" + }, + "end": { + "$date": "2022-07-08T22:41:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6bc1452e-63e7-42e4-8642-fc5f73305882", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-08T22:33:13.000Z" + }, + "end": { + "$date": "2022-07-09T00:39:17.000Z" + }, + "events": [ + { + "uuid": "5bc3a376-463c-4ac2-b620-cbb8e5f75ce6", + "start": { + "$date": "2022-07-08T22:33:13.000Z" + }, + "end": { + "$date": "2022-07-09T00:39:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b2585e13-40d2-4cd4-87e9-8a7e6fb191ce", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-09T00:41:27.000Z" + }, + "end": { + "$date": "2022-07-09T00:43:17.000Z" + }, + "events": [ + { + "uuid": "d6a6ebd3-8487-46b5-b62a-3b16ebd7e879", + "start": { + "$date": "2022-07-09T00:41:27.000Z" + }, + "end": { + "$date": "2022-07-09T00:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9dc7c185-6a1d-49dc-ac4e-95b203443938", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T01:29:54.000Z" + }, + "end": { + "$date": "2022-07-09T02:05:03.000Z" + }, + "events": [ + { + "uuid": "5486dfc8-a8ca-4d08-beb8-2294be135d24", + "start": { + "$date": "2022-07-09T01:29:54.000Z" + }, + "end": { + "$date": "2022-07-09T02:05:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "257ef2bd-c8bf-4a88-945e-5c12463bc3d5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-09T01:38:03.000Z" + }, + "end": { + "$date": "2022-07-09T07:29:37.000Z" + }, + "events": [ + { + "uuid": "cf7c58b9-2107-4f4a-a6cd-cf04506e60d4", + "start": { + "$date": "2022-07-09T01:38:03.000Z" + }, + "end": { + "$date": "2022-07-09T07:29:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6a3de672-0dbc-4863-916c-4658cb9dfe3d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-09T01:39:17.000Z" + }, + "end": { + "$date": "2022-07-09T07:29:30.000Z" + }, + "events": [ + { + "uuid": "37b8d429-3aa1-43bc-b8fa-8b49d043432b", + "start": { + "$date": "2022-07-09T01:39:17.000Z" + }, + "end": { + "$date": "2022-07-09T07:29:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "41b0b499-4821-4032-946c-712189626125", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T01:46:41.000Z" + }, + "end": { + "$date": "2022-07-09T02:26:34.000Z" + }, + "events": [ + { + "uuid": "1884930f-e747-48ce-a91b-81dec361e1b4", + "start": { + "$date": "2022-07-09T01:46:41.000Z" + }, + "end": { + "$date": "2022-07-09T02:06:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4fdd98fe-6ec5-4a7c-a913-5e8243a6fbc3", + "start": { + "$date": "2022-07-09T02:06:41.000Z" + }, + "end": { + "$date": "2022-07-09T02:11:41.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af9549d3-c61a-43f1-9844-0b051df8681b", + "start": { + "$date": "2022-07-09T02:11:41.000Z" + }, + "end": { + "$date": "2022-07-09T02:21:41.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2a6958eb-fa8a-487c-9a8f-3775e093b6df", + "start": { + "$date": "2022-07-09T02:21:41.000Z" + }, + "end": { + "$date": "2022-07-09T02:26:34.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5637febc-2697-4c27-af08-8a0a423d8989", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T02:14:29.000Z" + }, + "end": { + "$date": "2022-07-09T03:09:32.000Z" + }, + "events": [ + { + "uuid": "e90a6da5-75ca-45e3-9da4-1152171e39cf", + "start": { + "$date": "2022-07-09T02:14:29.000Z" + }, + "end": { + "$date": "2022-07-09T03:09:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a9d04516-bab7-47be-9fea-2d65fde1b23d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T02:49:56.000Z" + }, + "end": { + "$date": "2022-07-09T07:33:02.000Z" + }, + "events": [ + { + "uuid": "33e590b3-b714-48fc-997f-d0ad592ef41d", + "start": { + "$date": "2022-07-09T02:49:56.000Z" + }, + "end": { + "$date": "2022-07-09T07:33:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "3385ab44-e7c2-43f4-bea5-8ae2f886a4e0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T03:13:55.000Z" + }, + "end": { + "$date": "2022-07-09T03:18:59.000Z" + }, + "events": [ + { + "uuid": "8d33377c-b06d-4626-bb3d-abc32c9f87a4", + "start": { + "$date": "2022-07-09T03:13:55.000Z" + }, + "end": { + "$date": "2022-07-09T03:18:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4aa91481-571a-461e-9be3-2147bba2db7f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T03:21:06.000Z" + }, + "end": { + "$date": "2022-07-09T04:13:34.000Z" + }, + "events": [ + { + "uuid": "99c4ed69-e117-4d7d-8ce8-cadfdab72e36", + "start": { + "$date": "2022-07-09T03:21:06.000Z" + }, + "end": { + "$date": "2022-07-09T04:13:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "731b4947-945b-4cd7-bd25-3b363d1493d5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T03:39:51.000Z" + }, + "end": { + "$date": "2022-07-09T04:24:45.000Z" + }, + "events": [ + { + "uuid": "591caa26-c1ab-4229-957b-70cb45d2d05c", + "start": { + "$date": "2022-07-09T03:39:51.000Z" + }, + "end": { + "$date": "2022-07-09T04:24:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "86b6eecf-0cc8-465a-ac8f-ef3456b1d6b4", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-09T03:57:49.000Z" + }, + "end": { + "$date": "2022-07-09T07:00:30.000Z" + }, + "events": [ + { + "uuid": "c1421324-8425-450b-9fd6-e252ce03cc73", + "start": { + "$date": "2022-07-09T03:57:49.000Z" + }, + "end": { + "$date": "2022-07-09T07:00:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "c2f45190-04b5-4c93-bf5a-0ad5e5e6919f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-09T04:05:56.000Z" + }, + "end": { + "$date": "2022-07-09T05:10:27.000Z" + }, + "events": [ + { + "uuid": "21e54234-f32a-457b-bfbd-7ec9e0c1fd14", + "start": { + "$date": "2022-07-09T04:05:56.000Z" + }, + "end": { + "$date": "2022-07-09T05:10:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "f1e7e5d7-163a-4f04-9ff6-c4574e784a02", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T04:15:15.000Z" + }, + "end": { + "$date": "2022-07-09T04:49:36.000Z" + }, + "events": [ + { + "uuid": "1fa44aa0-2250-4a86-8f4b-eea7772290a8", + "start": { + "$date": "2022-07-09T04:15:15.000Z" + }, + "end": { + "$date": "2022-07-09T04:49:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b22d106d-834d-4c6c-8646-709f799cc0cb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T04:30:21.000Z" + }, + "end": { + "$date": "2022-07-09T05:06:32.000Z" + }, + "events": [ + { + "uuid": "30f2c8ea-df99-47a1-874a-e3363aa8b939", + "start": { + "$date": "2022-07-09T04:30:21.000Z" + }, + "end": { + "$date": "2022-07-09T05:06:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "29a5d0c5-8c90-4741-88c0-df1050989a4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T05:07:39.000Z" + }, + "end": { + "$date": "2022-07-09T05:35:54.000Z" + }, + "events": [ + { + "uuid": "89ff06ea-ee39-4f62-8e00-e79363fe4297", + "start": { + "$date": "2022-07-09T05:07:39.000Z" + }, + "end": { + "$date": "2022-07-09T05:35:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "21d57ac0-496f-4d67-a619-2d62814afc17", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-09T05:11:48.000Z" + }, + "end": { + "$date": "2022-07-09T05:13:17.000Z" + }, + "events": [ + { + "uuid": "864f3df9-4633-46ae-acff-402353bb9fcb", + "start": { + "$date": "2022-07-09T05:11:48.000Z" + }, + "end": { + "$date": "2022-07-09T05:13:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dff0a34d-8d22-4679-a5a2-7a33fe0a1935", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-09T05:44:47.000Z" + }, + "end": { + "$date": "2022-07-09T07:31:21.000Z" + }, + "events": [ + { + "uuid": "27de53c3-d7dc-4be1-ad90-afc0dd854e31", + "start": { + "$date": "2022-07-09T05:44:47.000Z" + }, + "end": { + "$date": "2022-07-09T07:31:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "faae8a9f-81cd-479c-b652-26e2fea3f996", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T06:56:26.000Z" + }, + "end": { + "$date": "2022-07-09T07:05:00.000Z" + }, + "events": [ + { + "uuid": "fa3dcfbf-defc-49e5-91d9-e442f5dba83e", + "start": { + "$date": "2022-07-09T06:56:26.000Z" + }, + "end": { + "$date": "2022-07-09T07:05:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "5155be85-2c32-4c07-a63f-01b7ab3479c5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T07:06:15.000Z" + }, + "end": { + "$date": "2022-07-09T07:33:22.000Z" + }, + "events": [ + { + "uuid": "c1d94cb2-804c-44ff-a8be-a23863f354be", + "start": { + "$date": "2022-07-09T07:06:15.000Z" + }, + "end": { + "$date": "2022-07-09T07:33:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "92c183f8-6071-4476-8abf-65b17d5cad78", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T07:34:21.000Z" + }, + "end": { + "$date": "2022-07-09T07:38:38.000Z" + }, + "events": [ + { + "uuid": "9fa568d3-2b40-4fad-a978-25de6fe4079f", + "start": { + "$date": "2022-07-09T07:34:21.000Z" + }, + "end": { + "$date": "2022-07-09T07:38:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "190080be-5661-4b7d-99e9-968142493f30", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T07:43:07.000Z" + }, + "end": { + "$date": "2022-07-09T08:00:44.000Z" + }, + "events": [ + { + "uuid": "980f867b-fa05-403f-a5ff-c36e8165035e", + "start": { + "$date": "2022-07-09T07:43:07.000Z" + }, + "end": { + "$date": "2022-07-09T08:00:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d693f2df-2e6a-4e96-b7a7-27ba3f38f478", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T08:02:38.000Z" + }, + "end": { + "$date": "2022-07-09T08:40:11.000Z" + }, + "events": [ + { + "uuid": "b867adc4-5bdb-4b18-a8b1-e563766deae8", + "start": { + "$date": "2022-07-09T08:02:38.000Z" + }, + "end": { + "$date": "2022-07-09T08:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "afaabf94-5ab6-4726-93dd-eabe9c3429d1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-09T08:42:26.000Z" + }, + "end": { + "$date": "2022-07-09T09:14:04.000Z" + }, + "events": [ + { + "uuid": "cb1ec70b-1aba-4f6a-bd0f-dbff7794f05f", + "start": { + "$date": "2022-07-09T08:42:26.000Z" + }, + "end": { + "$date": "2022-07-09T09:14:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "7b1f5264-9aba-435b-a48f-7f8bb3021c34", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-09T10:06:49.000Z" + }, + "end": { + "$date": "2022-07-09T14:26:57.000Z" + }, + "events": [ + { + "uuid": "f233ac4a-0b7d-440b-9cf4-938ec8f51120", + "start": { + "$date": "2022-07-09T10:06:49.000Z" + }, + "end": { + "$date": "2022-07-09T14:26:57.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "554b78d9-e9f5-426b-8ee1-2f01016a0398", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T12:42:46.000Z" + }, + "end": { + "$date": "2022-07-09T13:02:13.000Z" + }, + "events": [ + { + "uuid": "0ebaaa50-c993-4d72-8295-0a962482e2be", + "start": { + "$date": "2022-07-09T12:42:46.000Z" + }, + "end": { + "$date": "2022-07-09T13:02:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9bb9fa35-4eed-4b88-b16d-b237539f290b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T13:06:41.000Z" + }, + "end": { + "$date": "2022-07-09T13:07:51.000Z" + }, + "events": [ + { + "uuid": "ea96ae0f-3270-4463-ad30-5687dafe802b", + "start": { + "$date": "2022-07-09T13:06:41.000Z" + }, + "end": { + "$date": "2022-07-09T13:07:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "7bd9254e-87ea-45b2-be3b-6f44eaf65c9b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T15:48:29.000Z" + }, + "end": { + "$date": "2022-07-09T16:14:01.000Z" + }, + "events": [ + { + "uuid": "6658fe11-5728-40b3-a190-55a4484cc107", + "start": { + "$date": "2022-07-09T15:48:29.000Z" + }, + "end": { + "$date": "2022-07-09T16:14:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "100d2759-aaaf-42d3-a217-c01991f357a9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-09T13:11:27.000Z" + }, + "end": { + "$date": "2022-07-09T13:24:36.000Z" + }, + "events": [ + { + "uuid": "a069d312-ab52-4b3a-be03-1ad42ef5fec6", + "start": { + "$date": "2022-07-09T13:11:27.000Z" + }, + "end": { + "$date": "2022-07-09T13:24:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "988048b0-2173-448d-bdaa-d5cc401d08fc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-09T14:24:56.000Z" + }, + "end": { + "$date": "2022-07-09T15:24:59.000Z" + }, + "events": [ + { + "uuid": "7650fb55-fb1a-4d63-94e7-6ba06dee09dc", + "start": { + "$date": "2022-07-09T14:24:56.000Z" + }, + "end": { + "$date": "2022-07-09T15:24:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "369c830f-8bee-432e-ac48-117c74b854a5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T16:15:41.000Z" + }, + "end": { + "$date": "2022-07-09T17:44:04.000Z" + }, + "events": [ + { + "uuid": "f1b9a274-2ad8-4bd3-8f74-59d44d459b4f", + "start": { + "$date": "2022-07-09T16:15:41.000Z" + }, + "end": { + "$date": "2022-07-09T17:44:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "6b33b6f2-a705-4492-9ff4-17e4aeb7c434", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T16:15:47.000Z" + }, + "end": { + "$date": "2022-07-09T17:46:11.000Z" + }, + "events": [ + { + "uuid": "95893a74-92e0-4516-9eed-3690a1b64409", + "start": { + "$date": "2022-07-09T16:15:47.000Z" + }, + "end": { + "$date": "2022-07-09T17:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "433e2e45-c51d-4625-af60-0819e27eadfb", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-09T17:38:04.000Z" + }, + "end": { + "$date": "2022-07-09T19:40:55.000Z" + }, + "events": [ + { + "uuid": "b65f65dd-f743-446a-8cc7-edfbfccce5ae", + "start": { + "$date": "2022-07-09T17:38:04.000Z" + }, + "end": { + "$date": "2022-07-09T19:40:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "a31b64ba-d158-4ee7-93cf-05dc507a1170", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T17:43:00.000Z" + }, + "end": { + "$date": "2022-07-09T20:03:33.000Z" + }, + "events": [ + { + "uuid": "083f5237-d301-48b8-8bc1-f184ee642267", + "start": { + "$date": "2022-07-09T17:43:00.000Z" + }, + "end": { + "$date": "2022-07-09T19:24:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "30c3ff42-e398-479f-9f63-1891122e0263", + "start": { + "$date": "2022-07-09T19:24:00.000Z" + }, + "end": { + "$date": "2022-07-09T19:28:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "14f64a54-67d0-4c9d-9cbd-f8180ed141c8", + "start": { + "$date": "2022-07-09T19:28:00.000Z" + }, + "end": { + "$date": "2022-07-09T19:39:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e98fadcb-66b7-4816-8ea8-0f751035601a", + "start": { + "$date": "2022-07-09T19:39:00.000Z" + }, + "end": { + "$date": "2022-07-09T19:45:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "482cec3b-64a4-4c08-a2bd-e7b10810a720", + "start": { + "$date": "2022-07-09T19:45:00.000Z" + }, + "end": { + "$date": "2022-07-09T20:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "8ba50a4f-aca7-4c65-9403-cf4f33fe7489", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T17:45:10.000Z" + }, + "end": { + "$date": "2022-07-09T17:55:10.000Z" + }, + "events": [ + { + "uuid": "0135b807-0ca8-467d-aea9-e14da6f7c77f", + "start": { + "$date": "2022-07-09T17:45:10.000Z" + }, + "end": { + "$date": "2022-07-09T17:55:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "a7fe2899-f539-4c30-88eb-58cad8950815", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T17:52:46.000Z" + }, + "end": { + "$date": "2022-07-09T17:56:31.000Z" + }, + "events": [ + { + "uuid": "c2aa04e5-9b7f-418a-8027-b7db57a9cdef", + "start": { + "$date": "2022-07-09T17:52:46.000Z" + }, + "end": { + "$date": "2022-07-09T17:56:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "d822bfc7-2b67-4318-ab37-8bf9c626ea2c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-09T17:57:41.000Z" + }, + "end": { + "$date": "2022-07-09T20:26:22.000Z" + }, + "events": [ + { + "uuid": "aa8cb9c0-d515-4e46-9f14-3fca68d28060", + "start": { + "$date": "2022-07-09T17:57:41.000Z" + }, + "end": { + "$date": "2022-07-09T20:26:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "7b9861d9-347a-4f07-b295-7ff3ced28aec", + "uuid": "982fe5fd-5a87-4cd4-92ca-26a9a4eaf941", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-09T18:40:44.000Z" + }, + "end": { + "$date": "2022-07-09T18:40:51.000Z" + }, + "events": [ + { + "uuid": "861d6ccd-2e99-47f9-a863-bf12d09d67ee", + "start": { + "$date": "2022-07-09T18:40:44.000Z" + }, + "end": { + "$date": "2022-07-09T18:40:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", + "uuid": "61027b28-b598-4028-8d78-12a359b8f321", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T19:10:27.000Z" + }, + "end": { + "$date": "2022-07-09T19:45:25.000Z" + }, + "events": [ + { + "uuid": "5548c195-af6c-4590-bc1a-c8043384cb26", + "start": { + "$date": "2022-07-09T19:10:27.000Z" + }, + "end": { + "$date": "2022-07-09T19:45:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "6d7f263e-d437-47ca-bd26-e3474927254c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T20:04:19.000Z" + }, + "end": { + "$date": "2022-07-09T21:00:21.000Z" + }, + "events": [ + { + "uuid": "235c1294-7317-4a05-ab9e-d32c55afb98d", + "start": { + "$date": "2022-07-09T20:04:19.000Z" + }, + "end": { + "$date": "2022-07-09T21:00:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "396c6e59-b341-4513-b0a0-a45afbdc1e07", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T20:19:57.000Z" + }, + "end": { + "$date": "2022-07-09T20:29:58.000Z" + }, + "events": [ + { + "uuid": "2783c65b-643b-495d-9e6a-d031614625a7", + "start": { + "$date": "2022-07-09T20:19:57.000Z" + }, + "end": { + "$date": "2022-07-09T20:29:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "c424053e-6f2a-45a4-8260-b35d56ff86a2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-09T20:30:56.000Z" + }, + "end": { + "$date": "2022-07-09T20:34:02.000Z" + }, + "events": [ + { + "uuid": "eb32854f-6b23-40e1-8ac3-2bf681e4abae", + "start": { + "$date": "2022-07-09T20:30:56.000Z" + }, + "end": { + "$date": "2022-07-09T20:34:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "06a9e189-e171-4be2-ba0e-57c137c8976d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T21:01:38.000Z" + }, + "end": { + "$date": "2022-07-09T21:53:42.000Z" + }, + "events": [ + { + "uuid": "2c9f40f5-5f89-4f2d-8712-e6de46bcea04", + "start": { + "$date": "2022-07-09T21:01:38.000Z" + }, + "end": { + "$date": "2022-07-09T21:36:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "89ae68dc-04a8-4d78-8cf1-0b1f7eded67a", + "start": { + "$date": "2022-07-09T21:36:38.000Z" + }, + "end": { + "$date": "2022-07-09T21:41:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f2f179d0-1a52-463e-9a9a-9781090f278b", + "start": { + "$date": "2022-07-09T21:41:38.000Z" + }, + "end": { + "$date": "2022-07-09T21:51:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "22e0511b-35f7-4cfc-aa5b-4dfa25c135ac", + "start": { + "$date": "2022-07-09T21:51:38.000Z" + }, + "end": { + "$date": "2022-07-09T21:53:42.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4af70b09-c2a9-46a8-9f84-3fb1aad5ee09", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T21:36:52.000Z" + }, + "end": { + "$date": "2022-07-09T21:59:44.000Z" + }, + "events": [ + { + "uuid": "4dfa7e99-4ce3-487a-b262-21ab133ccd8b", + "start": { + "$date": "2022-07-09T21:36:52.000Z" + }, + "end": { + "$date": "2022-07-09T21:59:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "c2f221a7-ad56-4866-a39d-da71136cd175", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T21:56:47.000Z" + }, + "end": { + "$date": "2022-07-09T22:09:47.000Z" + }, + "events": [ + { + "uuid": "884990e7-a841-4f50-a34f-8ef5672e9b2a", + "start": { + "$date": "2022-07-09T21:56:47.000Z" + }, + "end": { + "$date": "2022-07-09T22:09:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "cb5674fc-260e-4832-b2ac-cf8bbbb4ec5d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T21:59:57.000Z" + }, + "end": { + "$date": "2022-07-09T22:01:01.000Z" + }, + "events": [ + { + "uuid": "329ac48c-aa77-45a5-8ed3-f10655b786bf", + "start": { + "$date": "2022-07-09T21:59:57.000Z" + }, + "end": { + "$date": "2022-07-09T22:01:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "80ee68fd-362d-4350-8da4-5369833b6050", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-09T22:10:03.000Z" + }, + "end": { + "$date": "2022-07-09T23:16:10.000Z" + }, + "events": [ + { + "uuid": "cccdea9e-9f1c-41b0-8324-fc5a7a916b3c", + "start": { + "$date": "2022-07-09T22:10:03.000Z" + }, + "end": { + "$date": "2022-07-09T23:16:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d86a2156-9c2d-49fc-832e-0e6f7ccd457d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-09T22:11:07.000Z" + }, + "end": { + "$date": "2022-07-09T23:12:14.000Z" + }, + "events": [ + { + "uuid": "a096a823-6c04-4234-aeee-4e63a469814d", + "start": { + "$date": "2022-07-09T22:11:07.000Z" + }, + "end": { + "$date": "2022-07-09T23:12:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c9e2a1e4-84da-4f16-9d22-0d0618786497", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T00:31:40.000Z" + }, + "end": { + "$date": "2022-07-10T01:00:38.000Z" + }, + "events": [ + { + "uuid": "8db94d30-349d-41a9-8107-fe4593f8f93b", + "start": { + "$date": "2022-07-10T00:31:40.000Z" + }, + "end": { + "$date": "2022-07-10T00:44:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b2e71b9e-121f-48fc-b2b3-e926fa8476e3", + "start": { + "$date": "2022-07-10T00:44:40.000Z" + }, + "end": { + "$date": "2022-07-10T00:48:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c42f62f0-6a28-4cca-a984-0bf2b0234c5d", + "start": { + "$date": "2022-07-10T00:48:40.000Z" + }, + "end": { + "$date": "2022-07-10T01:00:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d8ddaa46-77b7-4e24-a311-a9d7958ccbd7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T00:40:46.000Z" + }, + "end": { + "$date": "2022-07-10T01:12:00.000Z" + }, + "events": [ + { + "uuid": "30a0afb4-f6c0-4571-99a6-0c9ccbc9aa31", + "start": { + "$date": "2022-07-10T00:40:46.000Z" + }, + "end": { + "$date": "2022-07-10T01:12:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "f15cfa54-ab4f-41a2-9302-d8113daa9af6", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-10T01:10:54.000Z" + }, + "end": { + "$date": "2022-07-10T01:39:44.000Z" + }, + "events": [ + { + "uuid": "4fe5f34c-62de-41c1-97fd-242040c5be18", + "start": { + "$date": "2022-07-10T01:10:54.000Z" + }, + "end": { + "$date": "2022-07-10T01:39:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "76d87fe6-1a10-4d51-a9f5-06d1fb979305", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T01:13:45.000Z" + }, + "end": { + "$date": "2022-07-10T01:48:55.000Z" + }, + "events": [ + { + "uuid": "e6b94b90-a30a-4ea2-80c0-4820da50723f", + "start": { + "$date": "2022-07-10T01:13:45.000Z" + }, + "end": { + "$date": "2022-07-10T01:48:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "88292e69-d7ba-4e3c-9888-42b2bb3206e2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T01:20:19.000Z" + }, + "end": { + "$date": "2022-07-10T01:51:56.000Z" + }, + "events": [ + { + "uuid": "66192a3b-dd8e-4879-be5d-36c06a8b51aa", + "start": { + "$date": "2022-07-10T01:20:19.000Z" + }, + "end": { + "$date": "2022-07-10T01:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6216c68f-41d1-4292-b9e4-9805a4aaf3d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-10T01:47:54.000Z" + }, + "end": { + "$date": "2022-07-10T07:07:26.000Z" + }, + "events": [ + { + "uuid": "641eb424-2db2-4870-a1ed-2cb16bfeeb12", + "start": { + "$date": "2022-07-10T01:47:54.000Z" + }, + "end": { + "$date": "2022-07-10T07:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "d88dcaf0-2f5b-4296-8d18-a4db34a49549", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T01:52:56.000Z" + }, + "end": { + "$date": "2022-07-10T02:19:32.000Z" + }, + "events": [ + { + "uuid": "fcddccf9-d82e-4707-80c0-f77f1b098213", + "start": { + "$date": "2022-07-10T01:52:56.000Z" + }, + "end": { + "$date": "2022-07-10T02:19:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "246b26e7-115f-4189-9626-335e670f0590", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T01:53:34.000Z" + }, + "end": { + "$date": "2022-07-10T06:56:55.000Z" + }, + "events": [ + { + "uuid": "a467516a-6fb9-46fe-9ded-c67fcb8fbeeb", + "start": { + "$date": "2022-07-10T01:53:34.000Z" + }, + "end": { + "$date": "2022-07-10T02:13:34.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d89a9f88-09b4-41a9-b526-ee268009d6c5", + "start": { + "$date": "2022-07-10T02:13:34.000Z" + }, + "end": { + "$date": "2022-07-10T05:53:34.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4c4d1e3f-cc96-425c-9cc2-e47aa1f46a9b", + "start": { + "$date": "2022-07-10T05:53:34.000Z" + }, + "end": { + "$date": "2022-07-10T06:56:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d625ea2f-a30d-4d35-bfda-36c39ee2feb6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T02:53:09.000Z" + }, + "end": { + "$date": "2022-07-10T03:07:50.000Z" + }, + "events": [ + { + "uuid": "d9df3200-d2ea-4fb5-8cb9-d11ec19034e8", + "start": { + "$date": "2022-07-10T02:53:09.000Z" + }, + "end": { + "$date": "2022-07-10T03:07:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "a2656c38-0925-45d4-96f2-11749fe630ca", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T03:17:26.000Z" + }, + "end": { + "$date": "2022-07-10T03:37:21.000Z" + }, + "events": [ + { + "uuid": "e371286c-0f96-4218-8f36-a9d468770bbb", + "start": { + "$date": "2022-07-10T03:17:26.000Z" + }, + "end": { + "$date": "2022-07-10T03:37:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0460283f-04a0-485f-932a-03ff1c7bccf9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-10T04:01:04.000Z" + }, + "end": { + "$date": "2022-07-10T04:34:34.000Z" + }, + "events": [ + { + "uuid": "ebb44fc2-c1fe-4318-991a-dcf2bd1fc783", + "start": { + "$date": "2022-07-10T04:01:04.000Z" + }, + "end": { + "$date": "2022-07-10T04:34:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c0c1cc02-219a-483d-a0d7-eeb19deb952a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-10T04:46:42.000Z" + }, + "end": { + "$date": "2022-07-10T08:39:50.000Z" + }, + "events": [ + { + "uuid": "fbda9502-7cfa-4ccc-a3bc-65b4762ad592", + "start": { + "$date": "2022-07-10T04:46:42.000Z" + }, + "end": { + "$date": "2022-07-10T08:39:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9cae4ecd-a1c9-40b5-bf6c-e2d80fa933b2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-10T05:05:37.000Z" + }, + "end": { + "$date": "2022-07-10T09:24:51.000Z" + }, + "events": [ + { + "uuid": "41706b1b-87bb-40f4-8be4-6f0d24657d2a", + "start": { + "$date": "2022-07-10T05:05:37.000Z" + }, + "end": { + "$date": "2022-07-10T09:24:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "e002ec09-95c2-488b-ab83-474b08de9541", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-10T05:22:27.000Z" + }, + "end": { + "$date": "2022-07-10T06:12:30.000Z" + }, + "events": [ + { + "uuid": "f1332e02-26e0-4315-9c79-d33df8ddc837", + "start": { + "$date": "2022-07-10T05:22:27.000Z" + }, + "end": { + "$date": "2022-07-10T06:12:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "6b1bc8fc-cd7d-4cd8-a220-6cc79ad70dd3", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-10T05:22:56.000Z" + }, + "end": { + "$date": "2022-07-10T05:28:22.000Z" + }, + "events": [ + { + "uuid": "140d704a-f46a-43ae-ad9f-8af45d18e3fa", + "start": { + "$date": "2022-07-10T05:22:56.000Z" + }, + "end": { + "$date": "2022-07-10T05:28:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "86be1772-db12-4011-b8f2-c86b10e6b3d4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-10T05:29:29.000Z" + }, + "end": { + "$date": "2022-07-10T06:12:28.000Z" + }, + "events": [ + { + "uuid": "806c43f6-7d5e-40a4-b37e-6e86a6fb0c1c", + "start": { + "$date": "2022-07-10T05:29:29.000Z" + }, + "end": { + "$date": "2022-07-10T06:12:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", + "uuid": "e92039ba-784a-469b-b048-15e0d9cd1db6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-10T06:14:55.000Z" + }, + "end": { + "$date": "2022-07-10T06:16:40.000Z" + }, + "events": [ + { + "uuid": "73d949ab-a97e-4954-8b63-47af0c57ba22", + "start": { + "$date": "2022-07-10T06:14:55.000Z" + }, + "end": { + "$date": "2022-07-10T06:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "890c7b52-59b0-4748-b815-06718477b92b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T06:58:55.000Z" + }, + "end": { + "$date": "2022-07-10T07:31:38.000Z" + }, + "events": [ + { + "uuid": "a1d596cd-b58a-44f8-92c7-dd27c9f20c65", + "start": { + "$date": "2022-07-10T06:58:55.000Z" + }, + "end": { + "$date": "2022-07-10T07:31:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "5c58374e-1a4a-4409-966a-50dfe8f6cb47", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-10T07:07:46.000Z" + }, + "end": { + "$date": "2022-07-10T07:55:22.000Z" + }, + "events": [ + { + "uuid": "fab52a7f-a98c-4e2a-b4f3-f2290073fc9c", + "start": { + "$date": "2022-07-10T07:07:46.000Z" + }, + "end": { + "$date": "2022-07-10T07:55:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2c5549c4-9fc9-403c-8d71-b9537be01071", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T07:34:43.000Z" + }, + "end": { + "$date": "2022-07-10T07:55:04.000Z" + }, + "events": [ + { + "uuid": "8aba3ef2-04ef-448a-a4c1-e23d960b50a7", + "start": { + "$date": "2022-07-10T07:34:43.000Z" + }, + "end": { + "$date": "2022-07-10T07:55:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "15121e77-3744-4441-b0f2-ee8f026c8b1a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T07:58:10.000Z" + }, + "end": { + "$date": "2022-07-10T08:18:41.000Z" + }, + "events": [ + { + "uuid": "364fada2-ea87-44b8-bc49-4440c6a6da19", + "start": { + "$date": "2022-07-10T07:58:10.000Z" + }, + "end": { + "$date": "2022-07-10T08:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5a0b328f-e0dc-4fa8-974f-7bca16df853c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T08:21:31.000Z" + }, + "end": { + "$date": "2022-07-10T08:58:53.000Z" + }, + "events": [ + { + "uuid": "8d7fef10-f102-4ac0-ab17-1192db69918e", + "start": { + "$date": "2022-07-10T08:21:31.000Z" + }, + "end": { + "$date": "2022-07-10T08:58:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "48791a2a-81c9-487c-bc80-5785ef3cc905", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-10T08:28:54.000Z" + }, + "end": { + "$date": "2022-07-10T08:45:46.000Z" + }, + "events": [ + { + "uuid": "e28ed0f1-83fa-4ed1-a3d1-35b2a85496ba", + "start": { + "$date": "2022-07-10T08:28:54.000Z" + }, + "end": { + "$date": "2022-07-10T08:45:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3e38c0bb-7da8-417d-a195-4dcfbb56b7c4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T14:44:28.000Z" + }, + "end": { + "$date": "2022-07-10T15:37:33.000Z" + }, + "events": [ + { + "uuid": "e149c1c8-befa-46f4-b90e-5b30091862c2", + "start": { + "$date": "2022-07-10T14:44:28.000Z" + }, + "end": { + "$date": "2022-07-10T15:37:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "63ad9818-a0c4-4c1c-b9cb-5077f003023a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-10T17:33:48.000Z" + }, + "end": { + "$date": "2022-07-10T17:48:24.000Z" + }, + "events": [ + { + "uuid": "31f49d17-9992-4d07-8107-c45e44de8e9b", + "start": { + "$date": "2022-07-10T17:33:48.000Z" + }, + "end": { + "$date": "2022-07-10T17:48:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5548bec0-20a3-4232-8d06-e4a3f4a855a9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T15:54:45.000Z" + }, + "end": { + "$date": "2022-07-10T17:07:17.000Z" + }, + "events": [ + { + "uuid": "19b5da2e-1a8c-40d8-bf9a-5dd9bee706e0", + "start": { + "$date": "2022-07-10T15:54:45.000Z" + }, + "end": { + "$date": "2022-07-10T16:58:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "94c6a40c-f0c9-48a6-89d0-6b54ab9a602c", + "start": { + "$date": "2022-07-10T16:58:45.000Z" + }, + "end": { + "$date": "2022-07-10T17:02:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b30f135c-0837-42a7-b13b-87f7dfe7465f", + "start": { + "$date": "2022-07-10T17:02:45.000Z" + }, + "end": { + "$date": "2022-07-10T17:07:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6447ee68-8364-4f34-83dc-d038b6756a6a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-10T16:47:31.000Z" + }, + "end": { + "$date": "2022-07-10T17:55:24.000Z" + }, + "events": [ + { + "uuid": "c3e5c414-ed7f-4294-b5f8-352f08ff1eb4", + "start": { + "$date": "2022-07-10T16:47:31.000Z" + }, + "end": { + "$date": "2022-07-10T17:55:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d1171052-98dc-4ddf-9789-b65923e2e478", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-10T18:32:11.000Z" + }, + "end": { + "$date": "2022-07-10T19:49:07.000Z" + }, + "events": [ + { + "uuid": "6491f173-022f-4d3e-bbdf-c5e39f6fa62a", + "start": { + "$date": "2022-07-10T18:32:11.000Z" + }, + "end": { + "$date": "2022-07-10T19:31:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fa0acae4-cb74-47cf-bdf0-e5a8ab03e37f", + "start": { + "$date": "2022-07-10T19:31:11.000Z" + }, + "end": { + "$date": "2022-07-10T19:36:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "80e4e4ad-cbe7-4f4c-ba86-5b9b69b03727", + "start": { + "$date": "2022-07-10T19:36:11.000Z" + }, + "end": { + "$date": "2022-07-10T19:46:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "36c7ddec-c36a-4cb9-8ea9-8952456fc9a8", + "start": { + "$date": "2022-07-10T19:46:11.000Z" + }, + "end": { + "$date": "2022-07-10T19:49:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "8d441d15-225e-4dd9-b993-891d265cb32c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-10T19:32:16.000Z" + }, + "end": { + "$date": "2022-07-10T20:35:35.000Z" + }, + "events": [ + { + "uuid": "2d0a920a-b5e9-4fa7-9e79-7f8ed2e3e751", + "start": { + "$date": "2022-07-10T19:32:16.000Z" + }, + "end": { + "$date": "2022-07-10T20:34:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "46df1046-25ee-4b88-ad15-b4e47412974f", + "start": { + "$date": "2022-07-10T20:34:16.000Z" + }, + "end": { + "$date": "2022-07-10T20:35:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2ceb3923-0dae-4967-9c1d-f1f8e00840fd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-10T21:24:26.000Z" + }, + "end": { + "$date": "2022-07-11T05:30:25.000Z" + }, + "events": [ + { + "uuid": "d761312a-52ba-48b4-bf1c-37466368e607", + "start": { + "$date": "2022-07-10T21:24:26.000Z" + }, + "end": { + "$date": "2022-07-10T23:05:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ede5b8ca-5674-4da9-a8e3-4bb575f3a5bf", + "start": { + "$date": "2022-07-10T23:05:26.000Z" + }, + "end": { + "$date": "2022-07-10T23:10:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5ba3f19b-f87e-43ee-b5da-c170b558550c", + "start": { + "$date": "2022-07-10T23:10:26.000Z" + }, + "end": { + "$date": "2022-07-11T05:30:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", + "uuid": "78280594-b943-4643-9285-2460772fb9cc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T21:25:42.000Z" + }, + "end": { + "$date": "2022-07-10T21:28:13.000Z" + }, + "events": [ + { + "uuid": "8054a6ef-5106-4b1e-8e33-b0b659769a3b", + "start": { + "$date": "2022-07-10T21:25:42.000Z" + }, + "end": { + "$date": "2022-07-10T21:28:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2cfa9aeb-7bf3-4890-8cab-b07158ab4414", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T21:36:43.000Z" + }, + "end": { + "$date": "2022-07-10T22:16:40.000Z" + }, + "events": [ + { + "uuid": "16803c5e-805d-49bd-8042-79023643565a", + "start": { + "$date": "2022-07-10T21:36:43.000Z" + }, + "end": { + "$date": "2022-07-10T22:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", + "uuid": "1bd3d23c-4957-46aa-b9b8-21daf613db4c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-10T22:25:40.000Z" + }, + "end": { + "$date": "2022-07-10T22:34:20.000Z" + }, + "events": [ + { + "uuid": "34461123-8ce4-45c0-9f39-7a7d02933232", + "start": { + "$date": "2022-07-10T22:25:40.000Z" + }, + "end": { + "$date": "2022-07-10T22:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43d6436e-7ad7-4d16-99e4-2bb0985aae01", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T23:21:28.000Z" + }, + "end": { + "$date": "2022-07-10T23:51:41.000Z" + }, + "events": [ + { + "uuid": "68cfc652-db45-4f14-b93f-82a7a9aae792", + "start": { + "$date": "2022-07-10T23:21:28.000Z" + }, + "end": { + "$date": "2022-07-10T23:51:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "14e1f534-4b97-4740-a902-40b69fed02a8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-10T23:52:51.000Z" + }, + "end": { + "$date": "2022-07-11T00:31:31.000Z" + }, + "events": [ + { + "uuid": "e17491d5-696f-48c9-9b4b-74f5fcc3c1a9", + "start": { + "$date": "2022-07-10T23:52:51.000Z" + }, + "end": { + "$date": "2022-07-11T00:31:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2cbb3161-3768-4b14-ad4f-15458d79188f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-11T00:19:53.000Z" + }, + "end": { + "$date": "2022-07-11T01:11:35.000Z" + }, + "events": [ + { + "uuid": "cc61c3ed-f629-4969-87e1-cc1ba3186688", + "start": { + "$date": "2022-07-11T00:19:53.000Z" + }, + "end": { + "$date": "2022-07-11T01:11:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0c1a99b0-08e5-4a30-aab7-f6740453960f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-11T00:32:30.000Z" + }, + "end": { + "$date": "2022-07-11T00:51:53.000Z" + }, + "events": [ + { + "uuid": "a9aca333-160d-4ba3-867e-7549cc67f0a4", + "start": { + "$date": "2022-07-11T00:32:30.000Z" + }, + "end": { + "$date": "2022-07-11T00:51:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "f5e78cb3-ade0-41c0-bd1d-955e194da8b9", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-11T00:45:22.000Z" + }, + "end": { + "$date": "2022-07-11T02:00:41.000Z" + }, + "events": [ + { + "uuid": "634e11ef-89b3-4f10-98ed-01c0f2b9e3ba", + "start": { + "$date": "2022-07-11T00:45:22.000Z" + }, + "end": { + "$date": "2022-07-11T02:00:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "22a589cd-759d-44c6-99ad-fecc19c41ad9", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-11T00:56:08.000Z" + }, + "end": { + "$date": "2022-07-11T01:55:35.000Z" + }, + "events": [ + { + "uuid": "a358a845-0c5b-4c29-90ae-76ed7f9c00f6", + "start": { + "$date": "2022-07-11T00:56:08.000Z" + }, + "end": { + "$date": "2022-07-11T01:55:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "ec9aef35-c936-4bdb-9b71-32e959751916", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-11T00:57:04.000Z" + }, + "end": { + "$date": "2022-07-11T01:56:40.000Z" + }, + "events": [ + { + "uuid": "ab36cc18-26b4-4bc3-ba08-0af04c242f57", + "start": { + "$date": "2022-07-11T00:57:04.000Z" + }, + "end": { + "$date": "2022-07-11T01:56:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "d8fe40cd-a6ad-464b-acd1-2e9305349654", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-11T01:05:28.000Z" + }, + "end": { + "$date": "2022-07-11T01:55:37.000Z" + }, + "events": [ + { + "uuid": "98c2b824-6d2a-4fac-8070-29bbdce8412d", + "start": { + "$date": "2022-07-11T01:05:28.000Z" + }, + "end": { + "$date": "2022-07-11T01:55:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "68b02e2c-06dd-48f4-9331-bfa633a0982c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-11T02:00:27.000Z" + }, + "end": { + "$date": "2022-07-11T02:35:37.000Z" + }, + "events": [ + { + "uuid": "8b71bb96-9e82-449b-9663-bb541920b26d", + "start": { + "$date": "2022-07-11T02:00:27.000Z" + }, + "end": { + "$date": "2022-07-11T02:35:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "44e6d1a5-e64d-42d6-b931-367129ff063a", + "uuid": "df8bd801-23d2-4b51-8729-71c2c8f68dba", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-11T02:28:16.000Z" + }, + "end": { + "$date": "2022-07-11T02:36:40.000Z" + }, + "events": [ + { + "uuid": "a2b0b578-64d9-408e-95cf-a46227563092", + "start": { + "$date": "2022-07-11T02:28:16.000Z" + }, + "end": { + "$date": "2022-07-11T02:36:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", + "uuid": "c560c980-0259-4d5c-ad8c-646ddae7db38", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-11T03:59:54.000Z" + }, + "end": { + "$date": "2022-07-11T04:35:59.000Z" + }, + "events": [ + { + "uuid": "b1fdd8ab-19d2-4a79-8465-9e6229705e80", + "start": { + "$date": "2022-07-11T03:59:54.000Z" + }, + "end": { + "$date": "2022-07-11T04:35:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "8ad0bd0b-2690-42fd-840c-c896e71f236d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-11T05:37:10.000Z" + }, + "end": { + "$date": "2022-07-11T06:25:15.000Z" + }, + "events": [ + { + "uuid": "5ccf2892-f6dc-4105-bdf9-2d061c88bf7d", + "start": { + "$date": "2022-07-11T05:37:10.000Z" + }, + "end": { + "$date": "2022-07-11T06:25:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1f8994c1-5c55-4a7b-9d1a-e4513bcfc57d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-11T07:36:07.000Z" + }, + "end": { + "$date": "2022-07-11T07:36:11.000Z" + }, + "events": [ + { + "uuid": "bc7529f4-7d65-4447-a6ad-f6e961fbca19", + "start": { + "$date": "2022-07-11T07:36:07.000Z" + }, + "end": { + "$date": "2022-07-11T08:27:07.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cdafbacc-1277-4345-a231-4d3dd38694a9", + "start": { + "$date": "2022-07-11T08:27:07.000Z" + }, + "end": { + "$date": "2022-07-11T08:36:07.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a2bc4ba3-ded1-4aab-ac80-6323b960d775", + "start": { + "$date": "2022-07-11T08:36:07.000Z" + }, + "end": { + "$date": "2022-07-11T07:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "60bd373b-dd8f-4684-9701-c2c8d49c7d21", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-11T08:26:43.000Z" + }, + "end": { + "$date": "2022-07-11T08:32:03.000Z" + }, + "events": [ + { + "uuid": "d82adb91-e8e6-4353-98d8-93f6ab019e0c", + "start": { + "$date": "2022-07-11T08:26:43.000Z" + }, + "end": { + "$date": "2022-07-11T08:32:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3172663d-4586-47c2-8a72-c70e194475ed", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-11T08:33:21.000Z" + }, + "end": { + "$date": "2022-07-11T08:58:07.000Z" + }, + "events": [ + { + "uuid": "54b88477-ed2d-4d84-9f49-ebaf5e688f77", + "start": { + "$date": "2022-07-11T08:33:21.000Z" + }, + "end": { + "$date": "2022-07-11T08:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "2f28912f-9550-441e-a9c6-a097bbb42019", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-11T10:21:11.000Z" + }, + "end": { + "$date": "2022-07-11T10:56:26.000Z" + }, + "events": [ + { + "uuid": "032cb78d-50af-45e3-8f7a-09005217dcb4", + "start": { + "$date": "2022-07-11T10:21:11.000Z" + }, + "end": { + "$date": "2022-07-11T10:56:26.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5cfc35f2-1f39-4b24-8887-5a85d7561488", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-11T15:53:24.000Z" + }, + "end": { + "$date": "2022-07-11T15:58:34.000Z" + }, + "events": [ + { + "uuid": "bcbda2dc-17b1-47e4-b2f1-0fa7c97ae5ad", + "start": { + "$date": "2022-07-11T15:53:24.000Z" + }, + "end": { + "$date": "2022-07-11T15:58:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "bafc4f9b-6288-4b37-b5cb-6c13162b8166", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-11T16:08:50.000Z" + }, + "end": { + "$date": "2022-07-11T16:51:40.000Z" + }, + "events": [ + { + "uuid": "bf7da818-e2f1-41be-bca3-1c8a8e8d25d5", + "start": { + "$date": "2022-07-11T16:08:50.000Z" + }, + "end": { + "$date": "2022-07-11T16:51:40.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "8654f212-4d67-4583-a49f-c818bd61dcfc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-11T16:18:02.000Z" + }, + "end": { + "$date": "2022-07-11T17:13:39.000Z" + }, + "events": [ + { + "uuid": "77cfaca4-0e8b-4dcb-a9d7-aca4a4a5d699", + "start": { + "$date": "2022-07-11T16:18:02.000Z" + }, + "end": { + "$date": "2022-07-11T17:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4cb6bf93-2da6-42c6-82e9-2f914d61ac24", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-11T21:03:26.000Z" + }, + "end": { + "$date": "2022-07-11T21:03:26.000Z" + }, + "events": [ + { + "uuid": "2fcebfcd-c392-4388-afda-674297322f6e", + "start": { + "$date": "2022-07-11T21:03:26.000Z" + }, + "end": { + "$date": "2022-07-11T21:03:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2a57404f-936d-4bde-83ae-49881352b3c1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-11T20:45:29.000Z" + }, + "end": { + "$date": "2022-07-11T21:51:51.000Z" + }, + "events": [ + { + "uuid": "e5418e59-5250-49eb-abf3-107f257577c6", + "start": { + "$date": "2022-07-11T20:45:29.000Z" + }, + "end": { + "$date": "2022-07-11T21:01:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5c5b5237-aeb2-44eb-b0ed-f84ba13a2b19", + "start": { + "$date": "2022-07-11T21:01:29.000Z" + }, + "end": { + "$date": "2022-07-11T21:14:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ea1ed814-152d-4b29-9e3c-4868797dc138", + "start": { + "$date": "2022-07-11T21:14:29.000Z" + }, + "end": { + "$date": "2022-07-11T21:50:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "25ad224d-7ada-408a-a7ac-3ff67a606e9e", + "start": { + "$date": "2022-07-11T21:50:29.000Z" + }, + "end": { + "$date": "2022-07-11T21:51:51.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4559f531-322f-422a-81f7-dd38cb24ac48", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-11T21:50:19.000Z" + }, + "end": { + "$date": "2022-07-11T22:17:56.000Z" + }, + "events": [ + { + "uuid": "f0cebba6-8e89-47e4-917c-aee9ed67d480", + "start": { + "$date": "2022-07-11T21:50:19.000Z" + }, + "end": { + "$date": "2022-07-11T22:17:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "uuid": "7215a9f9-0e0a-4649-8b6f-d37ed58ea4b5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-11T21:54:16.000Z" + }, + "end": { + "$date": "2022-07-11T22:24:41.000Z" + }, + "events": [ + { + "uuid": "8652feec-c5c2-4a99-8208-3ce20c7ce493", + "start": { + "$date": "2022-07-11T21:54:16.000Z" + }, + "end": { + "$date": "2022-07-11T22:24:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c44f63b4-2b7b-46b8-a183-3f396cce7b00", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-11T22:04:37.000Z" + }, + "end": { + "$date": "2022-07-11T23:05:45.000Z" + }, + "events": [ + { + "uuid": "2c7f4b38-9e49-418f-b35c-4178446edfea", + "start": { + "$date": "2022-07-11T22:04:37.000Z" + }, + "end": { + "$date": "2022-07-11T23:05:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "c2bde31c-0dda-4f7d-92de-0a8343294df6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-11T22:37:22.000Z" + }, + "end": { + "$date": "2022-07-11T22:45:32.000Z" + }, + "events": [ + { + "uuid": "1760be80-ab6d-41b1-bf80-39f70d357d3d", + "start": { + "$date": "2022-07-11T22:37:22.000Z" + }, + "end": { + "$date": "2022-07-11T22:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d945b512-33a6-4dc6-95c7-0a50e36c7619", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-11T22:56:11.000Z" + }, + "end": { + "$date": "2022-07-11T23:11:41.000Z" + }, + "events": [ + { + "uuid": "4fa694e5-0f89-414a-94af-4d9a012fea00", + "start": { + "$date": "2022-07-11T22:56:11.000Z" + }, + "end": { + "$date": "2022-07-11T23:11:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "45141b81-5998-460e-8ab0-29916cf1db66", + "uuid": "6e93f3e4-a0fc-4077-85af-a882517cbc25", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-12T00:17:13.000Z" + }, + "end": { + "$date": "2022-07-12T00:24:04.000Z" + }, + "events": [ + { + "uuid": "af92fb84-0a5b-47a4-99f0-9bdb0e03a8ff", + "start": { + "$date": "2022-07-12T00:17:13.000Z" + }, + "end": { + "$date": "2022-07-12T00:24:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "030106c3-dd09-46b0-95d2-b4895305a1e3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-11T23:10:16.000Z" + }, + "end": { + "$date": "2022-07-11T23:29:26.000Z" + }, + "events": [ + { + "uuid": "c0606d02-f15f-468e-aa74-923fc1c6c267", + "start": { + "$date": "2022-07-11T23:10:16.000Z" + }, + "end": { + "$date": "2022-07-11T23:29:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "e01b4741-f702-4554-b902-5316abc2c2d8", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-11T23:13:02.000Z" + }, + "end": { + "$date": "2022-07-11T23:24:17.000Z" + }, + "events": [ + { + "uuid": "16914d15-fc0e-4ab8-b688-b5e2d937d556", + "start": { + "$date": "2022-07-11T23:13:02.000Z" + }, + "end": { + "$date": "2022-07-11T23:24:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "2e320af0-1bc1-434a-8718-ff6ab25bd038", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-11T23:28:27.000Z" + }, + "end": { + "$date": "2022-07-12T01:50:56.000Z" + }, + "events": [ + { + "uuid": "b166a5a6-fc3b-453e-bbd5-300d99dae645", + "start": { + "$date": "2022-07-11T23:28:27.000Z" + }, + "end": { + "$date": "2022-07-12T01:50:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "0256296f-8854-493c-b2f9-fcda25a5776f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-11T23:33:37.000Z" + }, + "end": { + "$date": "2022-07-12T01:50:46.000Z" + }, + "events": [ + { + "uuid": "7ab0ccb8-c5df-4eb6-bfe3-a683eaff1c37", + "start": { + "$date": "2022-07-11T23:33:37.000Z" + }, + "end": { + "$date": "2022-07-12T01:50:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ac2ffe50-d784-42cf-8aca-62bbf2480c18", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-12T00:29:15.000Z" + }, + "end": { + "$date": "2022-07-12T00:43:17.000Z" + }, + "events": [ + { + "uuid": "3583b9fa-8f84-4f85-8d46-3b922e096e7b", + "start": { + "$date": "2022-07-12T00:29:15.000Z" + }, + "end": { + "$date": "2022-07-12T00:43:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5f0fe7c6-1c43-4ee6-bdf2-deacc023b6fb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T00:30:03.000Z" + }, + "end": { + "$date": "2022-07-12T00:47:26.000Z" + }, + "events": [ + { + "uuid": "6b17caff-edb6-41d6-89e0-5f65ddca978c", + "start": { + "$date": "2022-07-12T00:30:03.000Z" + }, + "end": { + "$date": "2022-07-12T00:47:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "797e1016-b84c-4212-a647-e52b7fe5a7ba", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-12T00:34:08.000Z" + }, + "end": { + "$date": "2022-07-12T01:16:05.000Z" + }, + "events": [ + { + "uuid": "78b3fba9-0ceb-4a73-84cd-c70bb5326945", + "start": { + "$date": "2022-07-12T00:34:08.000Z" + }, + "end": { + "$date": "2022-07-12T01:16:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "0b14c50e-9da8-4a98-bb93-82aa34d8c0ff", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-12T00:43:42.000Z" + }, + "end": { + "$date": "2022-07-12T02:09:20.000Z" + }, + "events": [ + { + "uuid": "8a2ee1b9-98fc-43c4-a5f6-9227d947d82d", + "start": { + "$date": "2022-07-12T00:43:42.000Z" + }, + "end": { + "$date": "2022-07-12T01:04:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "028d4e97-cf27-47b4-9929-8451f3a11871", + "start": { + "$date": "2022-07-12T01:04:42.000Z" + }, + "end": { + "$date": "2022-07-12T01:09:42.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6e09fa75-5066-4c00-b370-0cb3689d6615", + "start": { + "$date": "2022-07-12T01:09:42.000Z" + }, + "end": { + "$date": "2022-07-12T02:09:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "506b3900-f250-4940-b9f9-02bd9dedc96e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T00:57:17.000Z" + }, + "end": { + "$date": "2022-07-12T01:39:29.000Z" + }, + "events": [ + { + "uuid": "327f8f1a-a45b-4da7-9575-c7438c02c76a", + "start": { + "$date": "2022-07-12T00:57:17.000Z" + }, + "end": { + "$date": "2022-07-12T01:39:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0f5d6943-f28e-4931-8777-aef8ded01668", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-12T01:51:31.000Z" + }, + "end": { + "$date": "2022-07-12T06:33:50.000Z" + }, + "events": [ + { + "uuid": "1b4d4ae3-26b9-4fdb-8786-6ac94a4342e4", + "start": { + "$date": "2022-07-12T01:51:31.000Z" + }, + "end": { + "$date": "2022-07-12T02:19:31.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "886f383a-a367-44c1-97c3-8f03c38e15d4", + "start": { + "$date": "2022-07-12T02:19:31.000Z" + }, + "end": { + "$date": "2022-07-12T02:20:31.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "670596fc-6a90-4ae2-ab4d-bd57a2c7868a", + "start": { + "$date": "2022-07-12T02:20:31.000Z" + }, + "end": { + "$date": "2022-07-12T06:33:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "01edda9a-6847-4f03-b11f-5cac3383c378", + "uuid": "f81d6d1a-65dc-41d6-8038-aa04078f53d3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T02:01:06.000Z" + }, + "end": { + "$date": "2022-07-12T02:11:07.000Z" + }, + "events": [ + { + "uuid": "f5fe3833-1c87-434b-a810-91b5471a1278", + "start": { + "$date": "2022-07-12T02:01:06.000Z" + }, + "end": { + "$date": "2022-07-12T02:11:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4880e707-4781-466f-9d19-d05ef429a9e4", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-12T02:30:05.000Z" + }, + "end": { + "$date": "2022-07-12T05:58:58.000Z" + }, + "events": [ + { + "uuid": "c4c366b8-e665-4a03-a6d3-27c5e77e3bfa", + "start": { + "$date": "2022-07-12T02:30:05.000Z" + }, + "end": { + "$date": "2022-07-12T05:58:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0ac38a0b-c701-43e8-9061-ab5aad00cc0b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-12T02:30:18.000Z" + }, + "end": { + "$date": "2022-07-12T06:22:47.000Z" + }, + "events": [ + { + "uuid": "b77857cf-5658-4f1e-b26e-851ab1e5e4f1", + "start": { + "$date": "2022-07-12T02:30:18.000Z" + }, + "end": { + "$date": "2022-07-12T06:22:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "69f9d08f-7187-42f4-befa-08fda15dafeb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-12T02:56:26.000Z" + }, + "end": { + "$date": "2022-07-12T05:48:50.000Z" + }, + "events": [ + { + "uuid": "01d72e3f-ea74-4c74-9dd1-a94095b2e8c5", + "start": { + "$date": "2022-07-12T02:56:26.000Z" + }, + "end": { + "$date": "2022-07-12T05:48:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6f603b0a-206e-47d2-a080-3f5f84df1277", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T03:13:04.000Z" + }, + "end": { + "$date": "2022-07-12T03:27:13.000Z" + }, + "events": [ + { + "uuid": "f3c6177d-25e2-4531-ae03-c188b8179ef2", + "start": { + "$date": "2022-07-12T03:13:04.000Z" + }, + "end": { + "$date": "2022-07-12T03:27:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f3ab73e7-9d9c-483f-90d9-cee38a609865", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T03:28:51.000Z" + }, + "end": { + "$date": "2022-07-12T04:04:20.000Z" + }, + "events": [ + { + "uuid": "f9af7c3a-5f45-4ab2-8d84-e97d0d032fcf", + "start": { + "$date": "2022-07-12T03:28:51.000Z" + }, + "end": { + "$date": "2022-07-12T04:04:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9837862d-86f6-418c-af2a-bb9fcc5337f4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T04:06:29.000Z" + }, + "end": { + "$date": "2022-07-12T04:44:33.000Z" + }, + "events": [ + { + "uuid": "7478f202-ab41-456a-9ad3-ac07927e099f", + "start": { + "$date": "2022-07-12T04:06:29.000Z" + }, + "end": { + "$date": "2022-07-12T04:44:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "bf25e483-25c7-41c0-8c09-ffea084596ed", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-12T04:13:22.000Z" + }, + "end": { + "$date": "2022-07-12T04:26:33.000Z" + }, + "events": [ + { + "uuid": "d4985d4b-677d-4cb3-96f4-7f02b9f7800e", + "start": { + "$date": "2022-07-12T04:13:22.000Z" + }, + "end": { + "$date": "2022-07-12T04:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "c29ca40b-eb5b-4716-9ef3-298180d7244a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-12T04:27:08.000Z" + }, + "end": { + "$date": "2022-07-12T05:14:14.000Z" + }, + "events": [ + { + "uuid": "d5b7beaa-a64b-4bc8-b471-eb58a6f318d8", + "start": { + "$date": "2022-07-12T04:27:08.000Z" + }, + "end": { + "$date": "2022-07-12T05:14:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d1c9123e-ef22-4800-b491-29c2304dd7b6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T04:47:03.000Z" + }, + "end": { + "$date": "2022-07-12T05:01:15.000Z" + }, + "events": [ + { + "uuid": "fd1e7ca2-b0b8-41b9-885d-450e215fa69e", + "start": { + "$date": "2022-07-12T04:47:03.000Z" + }, + "end": { + "$date": "2022-07-12T05:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aa268412-360e-4dc9-8329-0dbd1f2c35e5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T05:06:59.000Z" + }, + "end": { + "$date": "2022-07-12T05:47:55.000Z" + }, + "events": [ + { + "uuid": "3aeecfb1-8914-4a01-80fd-3688cb152209", + "start": { + "$date": "2022-07-12T05:06:59.000Z" + }, + "end": { + "$date": "2022-07-12T05:47:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "16fd3848-c4b7-49d7-aba2-d57a7edd3467", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T05:52:04.000Z" + }, + "end": { + "$date": "2022-07-12T06:16:47.000Z" + }, + "events": [ + { + "uuid": "6251f1b4-b8dd-4895-8941-9923025f66dc", + "start": { + "$date": "2022-07-12T05:52:04.000Z" + }, + "end": { + "$date": "2022-07-12T06:16:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7ba0ee46-aaee-4c06-b632-a88cb5340a92", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-12T07:07:37.000Z" + }, + "end": { + "$date": "2022-07-12T07:12:08.000Z" + }, + "events": [ + { + "uuid": "3266385f-2f14-42ae-860b-d3cf98caedc5", + "start": { + "$date": "2022-07-12T07:07:37.000Z" + }, + "end": { + "$date": "2022-07-12T07:12:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "718f8e87-56bf-4854-9d28-3215a2b159e6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-12T07:19:04.000Z" + }, + "end": { + "$date": "2022-07-12T07:44:28.000Z" + }, + "events": [ + { + "uuid": "b4014d52-9f13-49da-9c91-d3dadd27ba6d", + "start": { + "$date": "2022-07-12T07:19:04.000Z" + }, + "end": { + "$date": "2022-07-12T07:44:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "603f95e5-0116-4603-912a-9d5212978fdc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-12T07:54:05.000Z" + }, + "end": { + "$date": "2022-07-12T08:24:09.000Z" + }, + "events": [ + { + "uuid": "7ea2c6ad-d72a-4a7b-b1a7-274672eca4e2", + "start": { + "$date": "2022-07-12T07:54:05.000Z" + }, + "end": { + "$date": "2022-07-12T08:24:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9b4d69c9-a38a-45b0-9a90-d3c14e630550", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-12T08:24:47.000Z" + }, + "end": { + "$date": "2022-07-12T08:26:04.000Z" + }, + "events": [ + { + "uuid": "b0d0ac92-dd9d-4a59-a6e1-429091990ac9", + "start": { + "$date": "2022-07-12T08:24:47.000Z" + }, + "end": { + "$date": "2022-07-12T08:26:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "eb3c0227-4bec-4052-93a1-4710cb43a9ca", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-12T09:02:45.000Z" + }, + "end": { + "$date": "2022-07-12T09:54:28.000Z" + }, + "events": [ + { + "uuid": "ac9a9439-6801-4ffd-b030-53d883561f61", + "start": { + "$date": "2022-07-12T09:02:45.000Z" + }, + "end": { + "$date": "2022-07-12T09:54:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "337f01b5-16fa-47d2-8db9-056f3b3b2f6f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-12T10:06:51.000Z" + }, + "end": { + "$date": "2022-07-12T11:43:01.000Z" + }, + "events": [ + { + "uuid": "d783a45a-6c23-4996-8be0-344abf4b748a", + "start": { + "$date": "2022-07-12T10:06:51.000Z" + }, + "end": { + "$date": "2022-07-12T11:43:01.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "1391b6a1-bd91-45f7-92ad-0e4a6d9c0078", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-12T15:40:39.000Z" + }, + "end": { + "$date": "2022-07-12T16:29:33.000Z" + }, + "events": [ + { + "uuid": "142692d5-9f1b-40e2-bd0c-6a56e76549b2", + "start": { + "$date": "2022-07-12T15:40:39.000Z" + }, + "end": { + "$date": "2022-07-12T16:29:33.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "317a5fcd-7506-409f-9f7e-8c23c308da9a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-12T18:57:41.000Z" + }, + "end": { + "$date": "2022-07-12T19:28:40.000Z" + }, + "events": [ + { + "uuid": "d1f31ce0-e523-49d8-9fe7-9e23d61cc0ca", + "start": { + "$date": "2022-07-12T18:57:41.000Z" + }, + "end": { + "$date": "2022-07-12T19:28:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2a27b752-09f8-4102-a750-6689f8716129", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-12T20:03:57.000Z" + }, + "end": { + "$date": "2022-07-12T21:28:11.000Z" + }, + "events": [ + { + "uuid": "0e2bd2e6-35b1-422b-8839-fa918b572e08", + "start": { + "$date": "2022-07-12T20:03:57.000Z" + }, + "end": { + "$date": "2022-07-12T21:28:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "d5657978-fdd8-47eb-bf6c-f7ce56e3936e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-12T21:39:10.000Z" + }, + "end": { + "$date": "2022-07-12T23:05:15.000Z" + }, + "events": [ + { + "uuid": "1a31a42f-079e-4340-b765-a4962c2fd2d3", + "start": { + "$date": "2022-07-12T21:39:10.000Z" + }, + "end": { + "$date": "2022-07-12T23:05:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "18176c6a-5ee7-4e9f-82fd-b3c0073a6b69", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-12T22:25:34.000Z" + }, + "end": { + "$date": "2022-07-12T22:26:42.000Z" + }, + "events": [ + { + "uuid": "71c9b65b-a310-4a04-a530-f7e24036e5b9", + "start": { + "$date": "2022-07-12T22:25:34.000Z" + }, + "end": { + "$date": "2022-07-12T22:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "417e6772-9db9-47b8-b387-e66227bdc226", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-12T22:27:52.000Z" + }, + "end": { + "$date": "2022-07-12T22:33:04.000Z" + }, + "events": [ + { + "uuid": "c5b57352-36b1-4201-b8ba-f772b0c0ede6", + "start": { + "$date": "2022-07-12T22:27:52.000Z" + }, + "end": { + "$date": "2022-07-12T22:33:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "c2e30851-bdba-4e0e-8b28-d614d2f7a324", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T01:42:09.000Z" + }, + "end": { + "$date": "2022-07-13T01:59:59.000Z" + }, + "events": [ + { + "uuid": "b10d0112-f843-4d58-8111-916a27b93849", + "start": { + "$date": "2022-07-13T01:42:09.000Z" + }, + "end": { + "$date": "2022-07-13T01:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "c3272ca3-fce9-4507-9a93-ffd25fe1e3dd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T02:00:54.000Z" + }, + "end": { + "$date": "2022-07-13T02:02:14.000Z" + }, + "events": [ + { + "uuid": "0a173f2a-5dfb-49bc-b37b-7021eebd060b", + "start": { + "$date": "2022-07-13T02:00:54.000Z" + }, + "end": { + "$date": "2022-07-13T02:02:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "4632e1fc-df53-4241-aed8-e96645e0df1a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T02:02:29.000Z" + }, + "end": { + "$date": "2022-07-13T02:14:10.000Z" + }, + "events": [ + { + "uuid": "806b0799-c9c4-4816-8193-09171a84d254", + "start": { + "$date": "2022-07-13T02:02:29.000Z" + }, + "end": { + "$date": "2022-07-13T02:14:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "0d9ebfcd-dc7b-4c4c-a5b4-c6672e8adc34", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T02:15:15.000Z" + }, + "end": { + "$date": "2022-07-13T02:16:30.000Z" + }, + "events": [ + { + "uuid": "2eace910-e285-4aef-a4b3-9bffb8a896f1", + "start": { + "$date": "2022-07-13T02:15:15.000Z" + }, + "end": { + "$date": "2022-07-13T02:16:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "68b8e28d-c05f-43b0-80c7-af5dd8e5f953", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T02:26:36.000Z" + }, + "end": { + "$date": "2022-07-13T07:00:52.000Z" + }, + "events": [ + { + "uuid": "8af589c9-9ef4-4ef7-836c-9c7a5033a845", + "start": { + "$date": "2022-07-13T02:26:36.000Z" + }, + "end": { + "$date": "2022-07-13T07:00:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8aa43cb6-f2cd-4615-9024-8b433aad7298", + "uuid": "c41538d2-0203-462e-96be-4113c15fae93", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-13T02:46:13.000Z" + }, + "end": { + "$date": "2022-07-13T04:21:01.000Z" + }, + "events": [ + { + "uuid": "71354ca3-ea4a-4506-a615-bf7d5cfa8b6d", + "start": { + "$date": "2022-07-13T02:46:13.000Z" + }, + "end": { + "$date": "2022-07-13T03:26:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d7b9a79b-791b-4a66-a841-09144e6a4e57", + "start": { + "$date": "2022-07-13T03:26:13.000Z" + }, + "end": { + "$date": "2022-07-13T03:28:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5110627d-dcbb-475f-93a3-9ff9ede31061", + "start": { + "$date": "2022-07-13T03:28:13.000Z" + }, + "end": { + "$date": "2022-07-13T04:21:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "74f425e3-581a-42b4-9dd2-c1e824934fb1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-13T03:44:47.000Z" + }, + "end": { + "$date": "2022-07-13T04:27:01.000Z" + }, + "events": [ + { + "uuid": "b994795d-9652-4abf-8ca1-8188d85b442c", + "start": { + "$date": "2022-07-13T03:44:47.000Z" + }, + "end": { + "$date": "2022-07-13T04:27:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "2c1cc39a-b648-4659-b77f-78a44f57196e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-13T04:11:18.000Z" + }, + "end": { + "$date": "2022-07-13T06:24:45.000Z" + }, + "events": [ + { + "uuid": "f97c8e6d-8aeb-4f18-9b3a-6af7010e8c0d", + "start": { + "$date": "2022-07-13T04:11:18.000Z" + }, + "end": { + "$date": "2022-07-13T06:24:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "36ff681f-f825-42f4-bae6-d5ff7e6d191c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-13T04:25:46.000Z" + }, + "end": { + "$date": "2022-07-13T04:40:07.000Z" + }, + "events": [ + { + "uuid": "faee98bd-8f92-4c1e-8ffc-4b449e455182", + "start": { + "$date": "2022-07-13T04:25:46.000Z" + }, + "end": { + "$date": "2022-07-13T04:40:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1c0de08f-b525-40f3-93fe-3b2282bf236d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-13T04:32:43.000Z" + }, + "end": { + "$date": "2022-07-13T04:37:37.000Z" + }, + "events": [ + { + "uuid": "0fbf2156-b4d6-4ef1-834b-b6e787bcffc4", + "start": { + "$date": "2022-07-13T04:32:43.000Z" + }, + "end": { + "$date": "2022-07-13T04:37:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "50a696d1-dcdb-46f9-b22b-c3718bab02cf", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-13T04:38:08.000Z" + }, + "end": { + "$date": "2022-07-13T06:47:46.000Z" + }, + "events": [ + { + "uuid": "0500f7b3-5990-4649-ab6f-63b9701a7d7f", + "start": { + "$date": "2022-07-13T04:38:08.000Z" + }, + "end": { + "$date": "2022-07-13T06:47:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "d32955e3-c93f-433e-8ac1-73bc324cd500", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-13T05:00:21.000Z" + }, + "end": { + "$date": "2022-07-13T05:34:19.000Z" + }, + "events": [ + { + "uuid": "c7f77492-626c-4265-bbf0-3bd001e002c7", + "start": { + "$date": "2022-07-13T05:00:21.000Z" + }, + "end": { + "$date": "2022-07-13T05:34:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1099c680-a4ad-4993-b289-fe854b5bcd8a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-13T05:13:35.000Z" + }, + "end": { + "$date": "2022-07-13T06:43:19.000Z" + }, + "events": [ + { + "uuid": "3e37cc98-6066-456b-9c83-7240ef4e8b26", + "start": { + "$date": "2022-07-13T05:13:35.000Z" + }, + "end": { + "$date": "2022-07-13T06:43:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "9b49b635-4a76-451b-a251-31a1e1664712", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-13T06:42:11.000Z" + }, + "end": { + "$date": "2022-07-13T08:04:54.000Z" + }, + "events": [ + { + "uuid": "048dd4e2-9dd4-40fb-80a7-7a8caf479377", + "start": { + "$date": "2022-07-13T06:42:11.000Z" + }, + "end": { + "$date": "2022-07-13T08:04:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "93b7a4cf-67a8-43bf-afca-9c7626967fda", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-13T11:36:47.000Z" + }, + "end": { + "$date": "2022-07-13T13:06:43.000Z" + }, + "events": [ + { + "uuid": "b1b33de5-668c-46fd-b9ca-65add2f517b4", + "start": { + "$date": "2022-07-13T11:36:47.000Z" + }, + "end": { + "$date": "2022-07-13T13:06:43.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0e0b0420-1e30-4a5c-aeee-fc6e85c50dee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T17:08:09.000Z" + }, + "end": { + "$date": "2022-07-13T17:29:46.000Z" + }, + "events": [ + { + "uuid": "57e07a80-8f97-49f1-aa4a-cca073a9b30a", + "start": { + "$date": "2022-07-13T17:08:09.000Z" + }, + "end": { + "$date": "2022-07-13T17:29:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "b1f74e8e-0988-4900-a32c-739846969fbc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-13T18:41:29.000Z" + }, + "end": { + "$date": "2022-07-13T19:24:12.000Z" + }, + "events": [ + { + "uuid": "b510ab5b-8f02-4392-86a2-06748ef59275", + "start": { + "$date": "2022-07-13T18:41:29.000Z" + }, + "end": { + "$date": "2022-07-13T19:24:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "714a8a9c-9d62-48dd-b338-06000d7b824e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-13T18:45:23.000Z" + }, + "end": { + "$date": "2022-07-13T19:25:59.000Z" + }, + "events": [ + { + "uuid": "b4046dfa-cebd-4549-accc-d5a775dd84e3", + "start": { + "$date": "2022-07-13T18:45:23.000Z" + }, + "end": { + "$date": "2022-07-13T19:25:59.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "2ce1ac53-5c15-4e39-8df2-e2a494d7a41f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-13T18:49:38.000Z" + }, + "end": { + "$date": "2022-07-13T19:29:27.000Z" + }, + "events": [ + { + "uuid": "66ff9e38-76a3-49fb-8ff1-4b571d09c63b", + "start": { + "$date": "2022-07-13T18:49:38.000Z" + }, + "end": { + "$date": "2022-07-13T19:29:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "23f5b50b-2d8b-4b98-8af8-9ba8609a1cc9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-13T19:00:17.000Z" + }, + "end": { + "$date": "2022-07-13T19:20:48.000Z" + }, + "events": [ + { + "uuid": "26293f2b-ccdd-4cc9-a8eb-034d42255e20", + "start": { + "$date": "2022-07-13T19:00:17.000Z" + }, + "end": { + "$date": "2022-07-13T19:20:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d4913921-40e8-45aa-af09-c352b002aafa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-13T21:23:12.000Z" + }, + "end": { + "$date": "2022-07-13T21:55:50.000Z" + }, + "events": [ + { + "uuid": "343e3985-86a7-4b76-8c80-584aec928130", + "start": { + "$date": "2022-07-13T21:23:12.000Z" + }, + "end": { + "$date": "2022-07-13T21:55:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2d66a4e9-766b-48a2-bb90-3035c91f76e4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-13T21:43:14.000Z" + }, + "end": { + "$date": "2022-07-13T21:46:04.000Z" + }, + "events": [ + { + "uuid": "df1ac599-acb4-4462-9986-86688efa28ef", + "start": { + "$date": "2022-07-13T21:43:14.000Z" + }, + "end": { + "$date": "2022-07-13T21:46:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "438fe9cd-2e2d-4db0-8eae-42d24ef89262", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-13T21:46:19.000Z" + }, + "end": { + "$date": "2022-07-13T22:48:49.000Z" + }, + "events": [ + { + "uuid": "3d8b4d28-5caf-4505-8a80-993a4cfa6b04", + "start": { + "$date": "2022-07-13T21:46:19.000Z" + }, + "end": { + "$date": "2022-07-13T22:48:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "7f8bbb80-f791-4811-b959-d411c66606fe", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-13T22:37:41.000Z" + }, + "end": { + "$date": "2022-07-13T23:48:16.000Z" + }, + "events": [ + { + "uuid": "deac46b4-8d8c-4066-aa69-f3dc944d322e", + "start": { + "$date": "2022-07-13T22:37:41.000Z" + }, + "end": { + "$date": "2022-07-13T23:48:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "4d5fd5f1-0654-4d1d-85d3-dd81fee07080", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T00:19:32.000Z" + }, + "end": { + "$date": "2022-07-14T01:13:01.000Z" + }, + "events": [ + { + "uuid": "cf05cadd-57e3-40c7-9caa-dadf06bf5088", + "start": { + "$date": "2022-07-14T00:19:32.000Z" + }, + "end": { + "$date": "2022-07-14T01:13:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "8199d29c-73d5-41ba-a0ce-c023a29c74c8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T01:14:01.000Z" + }, + "end": { + "$date": "2022-07-14T01:23:02.000Z" + }, + "events": [ + { + "uuid": "21425e2f-804c-4b24-bfa7-cf450a8dce7c", + "start": { + "$date": "2022-07-14T01:14:01.000Z" + }, + "end": { + "$date": "2022-07-14T01:23:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "4a890421-69cb-4a7f-98f0-42ae07996aa3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T01:23:12.000Z" + }, + "end": { + "$date": "2022-07-14T02:36:23.000Z" + }, + "events": [ + { + "uuid": "1399d96c-8630-422b-88dd-83246d158015", + "start": { + "$date": "2022-07-14T01:23:12.000Z" + }, + "end": { + "$date": "2022-07-14T02:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "b19828a3-4ab5-4fe7-b8ce-712baf68e19e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-14T01:44:50.000Z" + }, + "end": { + "$date": "2022-07-14T04:01:59.000Z" + }, + "events": [ + { + "uuid": "c298a32e-1028-40a7-956c-00d4d0c09c21", + "start": { + "$date": "2022-07-14T01:44:50.000Z" + }, + "end": { + "$date": "2022-07-14T04:01:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "a6a8c9da-71b4-4ef6-a3cf-d566914a4b66", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-14T03:06:47.000Z" + }, + "end": { + "$date": "2022-07-14T03:31:44.000Z" + }, + "events": [ + { + "uuid": "9a44760e-37df-4421-bb3b-03e533450353", + "start": { + "$date": "2022-07-14T03:06:47.000Z" + }, + "end": { + "$date": "2022-07-14T03:31:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "37c73c1f-d912-440d-ba33-9e06f413913c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-14T03:11:29.000Z" + }, + "end": { + "$date": "2022-07-14T03:51:19.000Z" + }, + "events": [ + { + "uuid": "41c48caa-28e4-4248-9ad0-560db8eff70b", + "start": { + "$date": "2022-07-14T03:11:29.000Z" + }, + "end": { + "$date": "2022-07-14T03:51:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8abddea4-b75f-4c42-87ac-23c4372f437d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T03:27:14.000Z" + }, + "end": { + "$date": "2022-07-14T04:58:59.000Z" + }, + "events": [ + { + "uuid": "0e265a91-b619-4a31-8bfe-5dee0ef94a6f", + "start": { + "$date": "2022-07-14T03:27:14.000Z" + }, + "end": { + "$date": "2022-07-14T04:58:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", + "uuid": "4913666d-b69e-462d-837d-cf2a14f89acb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-14T04:07:35.000Z" + }, + "end": { + "$date": "2022-07-14T04:12:16.000Z" + }, + "events": [ + { + "uuid": "c7f5a89a-4a56-4846-847b-95aaded8a3dd", + "start": { + "$date": "2022-07-14T04:07:35.000Z" + }, + "end": { + "$date": "2022-07-14T04:12:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "uuid": "ecfe9d90-fe37-4747-be93-116c41bba585", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-14T04:12:46.000Z" + }, + "end": { + "$date": "2022-07-14T05:09:40.000Z" + }, + "events": [ + { + "uuid": "ef6cd4d0-9af2-4150-8c9c-1df471c4ac99", + "start": { + "$date": "2022-07-14T04:12:46.000Z" + }, + "end": { + "$date": "2022-07-14T05:09:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "00371edc-e4a7-44e3-85cc-b1a2f197000a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-14T04:17:59.000Z" + }, + "end": { + "$date": "2022-07-14T05:00:10.000Z" + }, + "events": [ + { + "uuid": "82df683d-8cd8-48f5-bb2f-8cac5994c5b5", + "start": { + "$date": "2022-07-14T04:17:59.000Z" + }, + "end": { + "$date": "2022-07-14T05:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "uuid": "1653f7ff-899b-4944-92bb-8acc5a31dea7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-14T04:33:24.000Z" + }, + "end": { + "$date": "2022-07-14T05:55:00.000Z" + }, + "events": [ + { + "uuid": "2a7baf5e-0445-4cf1-80a3-80e7dc7d1e71", + "start": { + "$date": "2022-07-14T04:33:24.000Z" + }, + "end": { + "$date": "2022-07-14T05:55:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "869c8bb4-50f2-4340-8839-c93ac66c3bab", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T04:59:19.000Z" + }, + "end": { + "$date": "2022-07-14T05:18:51.000Z" + }, + "events": [ + { + "uuid": "5c3a07c1-2d5f-4672-ad6b-e43f146d9b5e", + "start": { + "$date": "2022-07-14T04:59:19.000Z" + }, + "end": { + "$date": "2022-07-14T05:18:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e53e412-db41-4a0f-bc58-62cfb65797a4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T05:19:12.000Z" + }, + "end": { + "$date": "2022-07-14T05:52:50.000Z" + }, + "events": [ + { + "uuid": "1be30565-a4ea-4c0f-8290-53eebad6458c", + "start": { + "$date": "2022-07-14T05:19:12.000Z" + }, + "end": { + "$date": "2022-07-14T05:52:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d3ee0986-9558-402c-a66f-b0ac7ca77b46", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T05:19:06.000Z" + }, + "end": { + "$date": "2022-07-14T06:29:20.000Z" + }, + "events": [ + { + "uuid": "de6dea58-4608-447f-9a23-6fc67eaba5bf", + "start": { + "$date": "2022-07-14T05:19:06.000Z" + }, + "end": { + "$date": "2022-07-14T06:29:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "316b98a4-b01f-4ebf-8b8e-e0b2f8b2d884", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T05:53:55.000Z" + }, + "end": { + "$date": "2022-07-14T06:21:33.000Z" + }, + "events": [ + { + "uuid": "ace85f91-ab36-4874-af4e-dd9a326a4cfe", + "start": { + "$date": "2022-07-14T05:53:55.000Z" + }, + "end": { + "$date": "2022-07-14T06:21:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3525843f-cca0-497f-9836-20a1adf2ba30", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-14T06:08:02.000Z" + }, + "end": { + "$date": "2022-07-14T07:02:38.000Z" + }, + "events": [ + { + "uuid": "edbfe307-6c24-4080-a9af-c39c749e0443", + "start": { + "$date": "2022-07-14T06:08:02.000Z" + }, + "end": { + "$date": "2022-07-14T07:02:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "3f639536-6b2a-4676-910e-7bc988489f1d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-14T06:09:08.000Z" + }, + "end": { + "$date": "2022-07-14T07:02:52.000Z" + }, + "events": [ + { + "uuid": "11e3c34c-ba20-4ec1-8610-993e5de57ebb", + "start": { + "$date": "2022-07-14T06:09:08.000Z" + }, + "end": { + "$date": "2022-07-14T07:02:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3acc6916-8b7f-43c2-a256-4cdd12dcec78", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T06:22:43.000Z" + }, + "end": { + "$date": "2022-07-14T06:59:41.000Z" + }, + "events": [ + { + "uuid": "b299f0e7-6ba5-43ae-89a9-475cf4c4a79e", + "start": { + "$date": "2022-07-14T06:22:43.000Z" + }, + "end": { + "$date": "2022-07-14T06:59:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "8512560a-74c3-402c-a82d-7e3b003e8e8f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T06:37:15.000Z" + }, + "end": { + "$date": "2022-07-14T06:48:06.000Z" + }, + "events": [ + { + "uuid": "542f88ee-987d-41e3-b67a-133c49ecf83b", + "start": { + "$date": "2022-07-14T06:37:15.000Z" + }, + "end": { + "$date": "2022-07-14T06:48:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "5fa925d0-70f8-4fb4-a2c1-6551869b382e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T06:48:40.000Z" + }, + "end": { + "$date": "2022-07-14T07:18:41.000Z" + }, + "events": [ + { + "uuid": "303db13c-40e3-4941-b6bb-283e3d6406b9", + "start": { + "$date": "2022-07-14T06:48:40.000Z" + }, + "end": { + "$date": "2022-07-14T07:18:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e90b313e-0de6-4ae9-b3c6-b7bcbf48483c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T07:01:03.000Z" + }, + "end": { + "$date": "2022-07-14T07:31:46.000Z" + }, + "events": [ + { + "uuid": "5d350e55-5532-426b-a8c1-7694df5b4e93", + "start": { + "$date": "2022-07-14T07:01:03.000Z" + }, + "end": { + "$date": "2022-07-14T07:31:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e16955df-2d56-46c2-85fe-c0d3e4c6b16c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T07:33:27.000Z" + }, + "end": { + "$date": "2022-07-14T08:07:30.000Z" + }, + "events": [ + { + "uuid": "55427203-eb54-433a-b3af-f12ed0a50025", + "start": { + "$date": "2022-07-14T07:33:27.000Z" + }, + "end": { + "$date": "2022-07-14T08:07:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d14be324-48c1-43f6-81ca-8f5c73be6188", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-14T20:16:18.000Z" + }, + "end": { + "$date": "2022-07-14T20:29:48.000Z" + }, + "events": [ + { + "uuid": "2e635139-c1e3-464a-a785-6cd6610d2506", + "start": { + "$date": "2022-07-14T20:16:18.000Z" + }, + "end": { + "$date": "2022-07-14T20:29:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "13c72825-f70e-44c8-9c8a-11ef807ae968", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-14T22:05:34.000Z" + }, + "end": { + "$date": "2022-07-14T22:42:20.000Z" + }, + "events": [ + { + "uuid": "da082fef-6f82-480b-afa7-20f1f5561d40", + "start": { + "$date": "2022-07-14T22:05:34.000Z" + }, + "end": { + "$date": "2022-07-14T22:42:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9613cc15-f79b-4e39-93d7-c059cd84e33e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-14T22:06:30.000Z" + }, + "end": { + "$date": "2022-07-14T22:11:14.000Z" + }, + "events": [ + { + "uuid": "8c1be38d-53e8-4265-a07e-010d0f3d8c5e", + "start": { + "$date": "2022-07-14T22:06:30.000Z" + }, + "end": { + "$date": "2022-07-14T22:11:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "f5b5121f-8ead-4d0f-8c28-87cddb000f56", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-14T22:16:27.000Z" + }, + "end": { + "$date": "2022-07-14T22:21:35.000Z" + }, + "events": [ + { + "uuid": "c388ec4b-7e4d-4d04-92c3-ac3aef80b4fb", + "start": { + "$date": "2022-07-14T22:16:27.000Z" + }, + "end": { + "$date": "2022-07-14T22:21:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9725835e-cfc2-4de2-a021-b9cb282775e9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-14T22:17:36.000Z" + }, + "end": { + "$date": "2022-07-14T23:07:45.000Z" + }, + "events": [ + { + "uuid": "ad8be5cd-1e91-4047-8761-ae41caf9c249", + "start": { + "$date": "2022-07-14T22:17:36.000Z" + }, + "end": { + "$date": "2022-07-14T23:07:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "b5c0ebc3-fcb3-47e8-831b-f9460cadc71c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-14T22:22:38.000Z" + }, + "end": { + "$date": "2022-07-15T04:45:37.000Z" + }, + "events": [ + { + "uuid": "2345eeca-5272-4218-be94-e96e921a16e6", + "start": { + "$date": "2022-07-14T22:22:38.000Z" + }, + "end": { + "$date": "2022-07-15T01:07:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ddb53cb6-e04e-4785-b60d-eb314b84df05", + "start": { + "$date": "2022-07-15T01:07:38.000Z" + }, + "end": { + "$date": "2022-07-15T01:11:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b3ef564f-69dc-483b-8925-b66cb0bcd7dd", + "start": { + "$date": "2022-07-15T01:11:38.000Z" + }, + "end": { + "$date": "2022-07-15T01:16:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d8de9f28-d2cb-4a70-bc37-57bd8583a006", + "start": { + "$date": "2022-07-15T01:16:38.000Z" + }, + "end": { + "$date": "2022-07-15T01:59:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "13048647-372f-4976-8ec4-ec40fb6a6e7a", + "start": { + "$date": "2022-07-15T01:59:38.000Z" + }, + "end": { + "$date": "2022-07-15T04:45:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "944c38e2-04d1-4919-954f-307c8e1c14de", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-14T22:42:45.000Z" + }, + "end": { + "$date": "2022-07-15T03:03:03.000Z" + }, + "events": [ + { + "uuid": "5ee2598f-85c1-4002-8a8d-0b31ca63b457", + "start": { + "$date": "2022-07-14T22:42:45.000Z" + }, + "end": { + "$date": "2022-07-15T03:03:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "321f7008-beba-4180-a577-14286d375e19", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T22:55:05.000Z" + }, + "end": { + "$date": "2022-07-14T23:15:38.000Z" + }, + "events": [ + { + "uuid": "41bce735-a788-4656-ac8a-0d100e268cfd", + "start": { + "$date": "2022-07-14T22:55:05.000Z" + }, + "end": { + "$date": "2022-07-14T23:15:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "272e20df-3550-48d0-9d8e-6268afd16b0c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-14T23:45:37.000Z" + }, + "end": { + "$date": "2022-07-15T00:21:14.000Z" + }, + "events": [ + { + "uuid": "ccd31881-ddfe-43c3-bcda-0fc2e34aa402", + "start": { + "$date": "2022-07-14T23:45:37.000Z" + }, + "end": { + "$date": "2022-07-15T00:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9618fd23-4003-4ac5-bd26-502b3e52027b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-15T00:09:21.000Z" + }, + "end": { + "$date": "2022-07-15T01:09:19.000Z" + }, + "events": [ + { + "uuid": "d5da186e-5879-4686-9d81-ee75036957d5", + "start": { + "$date": "2022-07-15T00:09:21.000Z" + }, + "end": { + "$date": "2022-07-15T01:09:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "92253803-c231-4bb1-b863-118e73ff0c0b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-15T00:22:40.000Z" + }, + "end": { + "$date": "2022-07-15T01:01:04.000Z" + }, + "events": [ + { + "uuid": "3de82236-2365-45e6-932b-775239d8c349", + "start": { + "$date": "2022-07-15T00:22:40.000Z" + }, + "end": { + "$date": "2022-07-15T01:01:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8aa43cb6-f2cd-4615-9024-8b433aad7298", + "uuid": "52dae9a7-11fa-4336-aafd-5b18266772e2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-15T01:03:27.000Z" + }, + "end": { + "$date": "2022-07-15T02:01:23.000Z" + }, + "events": [ + { + "uuid": "81128970-42b2-4d01-826e-394b1050427d", + "start": { + "$date": "2022-07-15T01:03:27.000Z" + }, + "end": { + "$date": "2022-07-15T02:01:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "cc881936-75ba-4b9c-9dbf-3551da84860a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-15T01:09:34.000Z" + }, + "end": { + "$date": "2022-07-15T01:17:09.000Z" + }, + "events": [ + { + "uuid": "a9c63c7b-adb5-43eb-8d8b-b0a4c6db1574", + "start": { + "$date": "2022-07-15T01:09:34.000Z" + }, + "end": { + "$date": "2022-07-15T01:17:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "cd9c6102-3b7b-48a3-bcf2-b0e5146b68fe", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-15T01:17:05.000Z" + }, + "end": { + "$date": "2022-07-15T01:26:27.000Z" + }, + "events": [ + { + "uuid": "9a1467ce-dc73-4de5-a1fb-f282b3f20f80", + "start": { + "$date": "2022-07-15T01:17:05.000Z" + }, + "end": { + "$date": "2022-07-15T01:26:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "f8b21502-1145-4fea-88f6-a1290cee40f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-15T01:21:50.000Z" + }, + "end": { + "$date": "2022-07-15T02:34:47.000Z" + }, + "events": [ + { + "uuid": "be1e504e-4bff-4c3c-989d-872c19fea853", + "start": { + "$date": "2022-07-15T01:21:50.000Z" + }, + "end": { + "$date": "2022-07-15T02:34:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6503da3a-5b0c-470c-ab57-71b0939356ef", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-15T01:24:07.000Z" + }, + "end": { + "$date": "2022-07-15T03:02:58.000Z" + }, + "events": [ + { + "uuid": "ff7cbc68-18e1-4931-b809-eb2e51d691b4", + "start": { + "$date": "2022-07-15T01:24:07.000Z" + }, + "end": { + "$date": "2022-07-15T03:02:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "uuid": "69395e64-99d6-41c0-b162-4d36e90f4312", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T01:30:21.000Z" + }, + "end": { + "$date": "2022-07-15T01:49:05.000Z" + }, + "events": [ + { + "uuid": "023b01a0-a82e-4189-afb7-51eb547330b5", + "start": { + "$date": "2022-07-15T01:30:21.000Z" + }, + "end": { + "$date": "2022-07-15T01:49:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "b39bdcd1-7f3c-4ccd-876c-a5fa1b5f9fd6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-15T01:31:02.000Z" + }, + "end": { + "$date": "2022-07-15T02:33:49.000Z" + }, + "events": [ + { + "uuid": "e3ddbf78-b19c-478b-9cb4-4ca5c467b848", + "start": { + "$date": "2022-07-15T01:31:02.000Z" + }, + "end": { + "$date": "2022-07-15T02:33:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e1b33ac3-a805-494e-9af8-98dad890b5c5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-15T03:04:57.000Z" + }, + "end": { + "$date": "2022-07-15T03:05:01.000Z" + }, + "events": [ + { + "uuid": "273fb23d-07c2-4c41-bfa8-23cdac06fef3", + "start": { + "$date": "2022-07-15T03:04:57.000Z" + }, + "end": { + "$date": "2022-07-15T03:05:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b739e56d-aefd-4932-820a-3b119a296c37", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-15T02:51:26.000Z" + }, + "end": { + "$date": "2022-07-15T03:58:54.000Z" + }, + "events": [ + { + "uuid": "2e02c5df-2e6c-4fc1-8303-fe371f0e209b", + "start": { + "$date": "2022-07-15T02:51:26.000Z" + }, + "end": { + "$date": "2022-07-15T03:45:26.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e22764f-bb26-48aa-b260-c84de813bf36", + "start": { + "$date": "2022-07-15T03:45:26.000Z" + }, + "end": { + "$date": "2022-07-15T03:50:26.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e1c08ffe-4e57-4426-8cc9-4dad0b6a3ba6", + "start": { + "$date": "2022-07-15T03:50:26.000Z" + }, + "end": { + "$date": "2022-07-15T03:58:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a8325c01-9254-424c-a18c-1254eed8fac3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-15T03:05:12.000Z" + }, + "end": { + "$date": "2022-07-15T06:14:05.000Z" + }, + "events": [ + { + "uuid": "d697f97e-6962-4e6f-8094-e9c1b2042642", + "start": { + "$date": "2022-07-15T03:05:12.000Z" + }, + "end": { + "$date": "2022-07-15T06:14:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "509466cb-db63-4d2d-a1b7-2ce70e8dbb06", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-15T03:19:22.000Z" + }, + "end": { + "$date": "2022-07-15T04:13:05.000Z" + }, + "events": [ + { + "uuid": "733cce18-867d-42ed-96ea-c0c3f9333c97", + "start": { + "$date": "2022-07-15T03:19:22.000Z" + }, + "end": { + "$date": "2022-07-15T04:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b9e29216-e1b6-4a82-8ab7-6b4107483b14", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-15T03:23:59.000Z" + }, + "end": { + "$date": "2022-07-15T03:59:54.000Z" + }, + "events": [ + { + "uuid": "d3eb7bfc-ddd1-4d6e-a4ce-b376eb9f7b74", + "start": { + "$date": "2022-07-15T03:23:59.000Z" + }, + "end": { + "$date": "2022-07-15T03:59:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "fae0bb30-4e0c-49a8-b323-80b02bb9a14f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-15T03:24:50.000Z" + }, + "end": { + "$date": "2022-07-15T03:59:21.000Z" + }, + "events": [ + { + "uuid": "78548914-b728-4820-a61c-44fa34e28020", + "start": { + "$date": "2022-07-15T03:24:50.000Z" + }, + "end": { + "$date": "2022-07-15T03:59:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "32393811-3975-4c11-a2a2-8432608b6707", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-15T03:25:47.000Z" + }, + "end": { + "$date": "2022-07-15T04:00:51.000Z" + }, + "events": [ + { + "uuid": "d40ba8f1-1a81-4a19-99a1-b2f2fb80a8bb", + "start": { + "$date": "2022-07-15T03:25:47.000Z" + }, + "end": { + "$date": "2022-07-15T04:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "ed1f29a5-8e61-4f0f-b589-22be6c57f19c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-15T03:59:58.000Z" + }, + "end": { + "$date": "2022-07-15T04:00:04.000Z" + }, + "events": [ + { + "uuid": "193f10eb-4a39-418d-abdf-ed10d7bfb8d0", + "start": { + "$date": "2022-07-15T03:59:58.000Z" + }, + "end": { + "$date": "2022-07-15T04:00:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", + "uuid": "fb5f95c4-774c-427d-b5ea-10a01357543f", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-15T04:07:09.000Z" + }, + "end": { + "$date": "2022-07-15T04:07:20.000Z" + }, + "events": [ + { + "uuid": "d51e8520-eae5-4df7-b71a-1e7e806b2005", + "start": { + "$date": "2022-07-15T04:07:09.000Z" + }, + "end": { + "$date": "2022-07-15T04:07:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "270a4f67-a5c6-47d5-8e94-f122c326f053", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T04:19:21.000Z" + }, + "end": { + "$date": "2022-07-15T05:54:55.000Z" + }, + "events": [ + { + "uuid": "138dd8cf-a690-488e-af01-785494ca5aad", + "start": { + "$date": "2022-07-15T04:19:21.000Z" + }, + "end": { + "$date": "2022-07-15T05:54:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "36325d30-df18-4cc9-8308-0ffb446028af", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-15T04:21:43.000Z" + }, + "end": { + "$date": "2022-07-15T07:07:42.000Z" + }, + "events": [ + { + "uuid": "bb70c149-bf26-4884-80d8-f7fce98d37af", + "start": { + "$date": "2022-07-15T04:21:43.000Z" + }, + "end": { + "$date": "2022-07-15T07:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "89c24eb5-55d8-4520-86bc-6c2a92d563e1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-15T04:46:51.000Z" + }, + "end": { + "$date": "2022-07-15T07:19:57.000Z" + }, + "events": [ + { + "uuid": "40e7f55b-6a7a-4545-95e2-3015b4bcf957", + "start": { + "$date": "2022-07-15T04:46:51.000Z" + }, + "end": { + "$date": "2022-07-15T07:19:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "40a1bc39-efdc-465e-b351-9321d6f42900", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-15T05:17:54.000Z" + }, + "end": { + "$date": "2022-07-15T06:17:01.000Z" + }, + "events": [ + { + "uuid": "e0375aad-27a2-4fbe-a627-f2a38be0bbe2", + "start": { + "$date": "2022-07-15T05:17:54.000Z" + }, + "end": { + "$date": "2022-07-15T06:17:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "c6c2db41-a9bd-4e9c-bd10-d9df1fe8f9ff", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-15T11:06:06.000Z" + }, + "end": { + "$date": "2022-07-15T11:46:46.000Z" + }, + "events": [ + { + "uuid": "6dc7b318-64d7-42b4-b1e2-7486d5b03710", + "start": { + "$date": "2022-07-15T11:06:06.000Z" + }, + "end": { + "$date": "2022-07-15T11:46:46.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "e5e7632c-8101-44bc-8140-96b51a5a823e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-15T13:46:48.000Z" + }, + "end": { + "$date": "2022-07-15T16:29:48.000Z" + }, + "events": [ + { + "uuid": "f7f6c2a2-71c1-4da7-8420-ad1026d74a66", + "start": { + "$date": "2022-07-15T13:46:48.000Z" + }, + "end": { + "$date": "2022-07-15T16:29:48.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ac2a02a2-7285-4da0-ad6a-719cf8556115", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T14:53:38.000Z" + }, + "end": { + "$date": "2022-07-15T14:54:52.000Z" + }, + "events": [ + { + "uuid": "4d556e41-2216-4100-a18c-8940d0809af4", + "start": { + "$date": "2022-07-15T14:53:38.000Z" + }, + "end": { + "$date": "2022-07-15T14:54:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "dcdb88be-3ad9-4248-af46-ed38cfc3cccd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T17:11:12.000Z" + }, + "end": { + "$date": "2022-07-15T17:30:13.000Z" + }, + "events": [ + { + "uuid": "b4307fa8-5990-4953-86f6-d99d2f4c0c47", + "start": { + "$date": "2022-07-15T17:11:12.000Z" + }, + "end": { + "$date": "2022-07-15T17:30:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "dd5b8061-f673-4d8d-992d-6b4e87b0b309", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-15T19:10:16.000Z" + }, + "end": { + "$date": "2022-07-15T19:21:27.000Z" + }, + "events": [ + { + "uuid": "c19a0bce-2b61-4935-832e-dd1ff64fc9c8", + "start": { + "$date": "2022-07-15T19:10:16.000Z" + }, + "end": { + "$date": "2022-07-15T19:21:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "7b72edc3-501d-444f-86a9-66d1b2dcb015", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-15T19:29:22.000Z" + }, + "end": { + "$date": "2022-07-15T20:13:11.000Z" + }, + "events": [ + { + "uuid": "45559d77-c7d2-4c6c-a792-8c60fce3e28a", + "start": { + "$date": "2022-07-15T19:29:22.000Z" + }, + "end": { + "$date": "2022-07-15T20:13:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "471f7c68-b4a9-482a-ad49-261120e80878", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-15T21:01:58.000Z" + }, + "end": { + "$date": "2022-07-15T21:12:18.000Z" + }, + "events": [ + { + "uuid": "91fbd760-e767-4082-93c5-76b9a7726fc0", + "start": { + "$date": "2022-07-15T21:01:58.000Z" + }, + "end": { + "$date": "2022-07-15T21:12:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "567e264a-4e57-413e-8cbe-e98df4a2eca0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T21:55:28.000Z" + }, + "end": { + "$date": "2022-07-15T21:58:07.000Z" + }, + "events": [ + { + "uuid": "64cebdbb-fe20-4f71-8cd9-66d993938fa2", + "start": { + "$date": "2022-07-15T21:55:28.000Z" + }, + "end": { + "$date": "2022-07-15T21:58:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "49963080-89bd-48ba-a754-fe337f89a997", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T22:03:13.000Z" + }, + "end": { + "$date": "2022-07-15T22:46:35.000Z" + }, + "events": [ + { + "uuid": "82975cff-01c3-4307-af4c-d61bc3787852", + "start": { + "$date": "2022-07-15T22:03:13.000Z" + }, + "end": { + "$date": "2022-07-15T22:46:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", + "uuid": "d44bd1bc-197a-43f1-811b-0b76d0fa329d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-15T23:39:58.000Z" + }, + "end": { + "$date": "2022-07-15T23:59:47.000Z" + }, + "events": [ + { + "uuid": "c8d18852-b9d7-43c5-ad38-45896b717ffc", + "start": { + "$date": "2022-07-15T23:39:58.000Z" + }, + "end": { + "$date": "2022-07-15T23:59:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a03c577b-013d-44ac-be55-616037f91b8d", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-16T01:00:38.000Z" + }, + "end": { + "$date": "2022-07-16T06:40:40.000Z" + }, + "events": [ + { + "uuid": "fc442538-cedb-48f1-8bc3-0a613d122571", + "start": { + "$date": "2022-07-16T01:00:38.000Z" + }, + "end": { + "$date": "2022-07-16T06:40:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "96e952bd-1f97-456f-baf2-b6b74fead6f2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T00:25:27.000Z" + }, + "end": { + "$date": "2022-07-16T06:42:11.000Z" + }, + "events": [ + { + "uuid": "22d1e9ac-2bff-48d8-8dd6-795d08e84f3c", + "start": { + "$date": "2022-07-16T00:25:27.000Z" + }, + "end": { + "$date": "2022-07-16T06:42:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c0f955c7-0da1-46ca-90c6-e46b57558788", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-16T01:42:07.000Z" + }, + "end": { + "$date": "2022-07-16T01:47:34.000Z" + }, + "events": [ + { + "uuid": "48c0dcc4-9335-4af8-9d83-67241ccac628", + "start": { + "$date": "2022-07-16T01:42:07.000Z" + }, + "end": { + "$date": "2022-07-16T01:47:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "bb2f220d-a75f-452b-ae2b-77fd5f223e9b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-16T01:54:09.000Z" + }, + "end": { + "$date": "2022-07-16T08:43:16.000Z" + }, + "events": [ + { + "uuid": "4a342e53-be1a-42cd-8241-a0cd76fe8595", + "start": { + "$date": "2022-07-16T01:54:09.000Z" + }, + "end": { + "$date": "2022-07-16T08:43:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "05bce7ae-f7e3-4c17-9850-a31893639eec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-16T02:55:37.000Z" + }, + "end": { + "$date": "2022-07-16T02:55:53.000Z" + }, + "events": [ + { + "uuid": "3413e034-a072-4ff3-9182-c484df5dcf59", + "start": { + "$date": "2022-07-16T02:55:37.000Z" + }, + "end": { + "$date": "2022-07-16T02:55:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2432ffe1-adee-4983-83d4-b60eedf0119a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-16T03:01:46.000Z" + }, + "end": { + "$date": "2022-07-16T05:20:17.000Z" + }, + "events": [ + { + "uuid": "30b14f26-cf8d-4608-a160-8f7a1156b228", + "start": { + "$date": "2022-07-16T03:01:46.000Z" + }, + "end": { + "$date": "2022-07-16T05:20:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "bb0bbddc-c618-46da-8d33-8af71b1db788", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-16T03:01:46.000Z" + }, + "end": { + "$date": "2022-07-16T03:10:52.000Z" + }, + "events": [ + { + "uuid": "70a5d3e4-cfdb-4ce4-b763-3e62653f3940", + "start": { + "$date": "2022-07-16T03:01:46.000Z" + }, + "end": { + "$date": "2022-07-16T03:10:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", + "uuid": "d27c695e-d687-4cf2-abe8-2cf2d17bcc98", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-16T03:12:57.000Z" + }, + "end": { + "$date": "2022-07-16T03:51:35.000Z" + }, + "events": [ + { + "uuid": "edf34a6e-ca7d-464b-ade0-4e64fa5442c7", + "start": { + "$date": "2022-07-16T03:12:57.000Z" + }, + "end": { + "$date": "2022-07-16T03:51:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "uuid": "ecfdac87-201a-4345-87b8-2baefe8e109a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-16T04:37:47.000Z" + }, + "end": { + "$date": "2022-07-16T04:42:27.000Z" + }, + "events": [ + { + "uuid": "713692ec-5a80-4fee-9f41-3135c1e68b34", + "start": { + "$date": "2022-07-16T04:37:47.000Z" + }, + "end": { + "$date": "2022-07-16T04:42:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "uuid": "a2ed5081-c58a-4ed3-88c2-c04177c93eda", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-16T04:43:03.000Z" + }, + "end": { + "$date": "2022-07-16T04:46:42.000Z" + }, + "events": [ + { + "uuid": "c9d1de9e-4ab9-4237-aa75-0adff7eb8ee7", + "start": { + "$date": "2022-07-16T04:43:03.000Z" + }, + "end": { + "$date": "2022-07-16T04:46:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "uuid": "b2eafbe5-1127-471d-9d33-035fdd45bc50", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-16T04:47:58.000Z" + }, + "end": { + "$date": "2022-07-16T04:49:53.000Z" + }, + "events": [ + { + "uuid": "558dbd89-a774-4ba7-9cb1-55d8aea812d6", + "start": { + "$date": "2022-07-16T04:47:58.000Z" + }, + "end": { + "$date": "2022-07-16T04:49:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "uuid": "7b736851-fc7f-409c-a3e3-d7a90bf4f184", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-16T04:49:58.000Z" + }, + "end": { + "$date": "2022-07-16T04:55:43.000Z" + }, + "events": [ + { + "uuid": "6852e3e0-ab0b-4cb2-8775-1096d275133a", + "start": { + "$date": "2022-07-16T04:49:58.000Z" + }, + "end": { + "$date": "2022-07-16T04:55:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "uuid": "a91c43e6-87d8-45bb-8f52-fa5a0ac46e33", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-16T04:56:14.000Z" + }, + "end": { + "$date": "2022-07-16T05:35:45.000Z" + }, + "events": [ + { + "uuid": "b139f9e7-302e-4e55-9590-edc235ec6877", + "start": { + "$date": "2022-07-16T04:56:14.000Z" + }, + "end": { + "$date": "2022-07-16T05:35:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7a88c2fa-ea27-46a5-8b6f-8fddb70e45f9", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-16T05:26:49.000Z" + }, + "end": { + "$date": "2022-07-16T05:34:33.000Z" + }, + "events": [ + { + "uuid": "39455c20-3b16-4e8d-a37b-22b9ba2b34cf", + "start": { + "$date": "2022-07-16T05:26:49.000Z" + }, + "end": { + "$date": "2022-07-16T05:34:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "eb9bc2bb-cc8e-4aa9-9ad2-ddfa59e3d234", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-16T05:34:39.000Z" + }, + "end": { + "$date": "2022-07-16T05:51:55.000Z" + }, + "events": [ + { + "uuid": "cd5cf7ed-4210-41ea-a44a-97d2df0ddbd2", + "start": { + "$date": "2022-07-16T05:34:39.000Z" + }, + "end": { + "$date": "2022-07-16T05:51:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "bd4439d9-3c18-484b-953e-5472c1e22f7c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T06:55:43.000Z" + }, + "end": { + "$date": "2022-07-16T07:02:12.000Z" + }, + "events": [ + { + "uuid": "6d5e742f-219b-4bb8-88e5-07b8883212a7", + "start": { + "$date": "2022-07-16T06:55:43.000Z" + }, + "end": { + "$date": "2022-07-16T07:02:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "49dcc3a3-a6f5-4b71-86aa-9279e4d8952b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T07:03:58.000Z" + }, + "end": { + "$date": "2022-07-16T07:04:58.000Z" + }, + "events": [ + { + "uuid": "bcc869ff-d700-4c98-a74c-ad4a465ab14c", + "start": { + "$date": "2022-07-16T07:03:58.000Z" + }, + "end": { + "$date": "2022-07-16T07:04:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "6e67f1fe-6abd-465e-9f76-ebae37783826", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T07:05:39.000Z" + }, + "end": { + "$date": "2022-07-16T07:46:49.000Z" + }, + "events": [ + { + "uuid": "edca3fc9-d27d-4177-9964-7e21bb051a4b", + "start": { + "$date": "2022-07-16T07:05:39.000Z" + }, + "end": { + "$date": "2022-07-16T07:46:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "9f3f0fd5-112d-4dff-8647-ec1941999105", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T07:48:55.000Z" + }, + "end": { + "$date": "2022-07-16T09:05:55.000Z" + }, + "events": [ + { + "uuid": "50d17d7e-9526-41c3-91a1-50f87f48f24f", + "start": { + "$date": "2022-07-16T07:48:55.000Z" + }, + "end": { + "$date": "2022-07-16T08:02:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ea2ceb9e-35a0-44c1-b598-2dccdc49801d", + "start": { + "$date": "2022-07-16T08:02:55.000Z" + }, + "end": { + "$date": "2022-07-16T08:14:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7c1f309b-b6b2-40cf-a3bb-ae18a34f255e", + "start": { + "$date": "2022-07-16T08:14:55.000Z" + }, + "end": { + "$date": "2022-07-16T08:17:55.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c3293a7c-5557-4ed7-b0a2-d98acc48d84f", + "start": { + "$date": "2022-07-16T08:17:55.000Z" + }, + "end": { + "$date": "2022-07-16T08:49:55.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "07a05188-b137-4db8-b0f1-754ae2335ef1", + "start": { + "$date": "2022-07-16T08:49:55.000Z" + }, + "end": { + "$date": "2022-07-16T09:05:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "2525bbc9-e8e4-4d21-8b24-82297f24ff90", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-16T14:35:15.000Z" + }, + "end": { + "$date": "2022-07-16T15:31:06.000Z" + }, + "events": [ + { + "uuid": "f31b458a-3154-4b32-834f-0f553dfdbd0b", + "start": { + "$date": "2022-07-16T14:35:15.000Z" + }, + "end": { + "$date": "2022-07-16T15:31:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "0fdfdf57-0438-4fc4-9e32-ba3aead1039b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-16T15:51:38.000Z" + }, + "end": { + "$date": "2022-07-16T15:58:33.000Z" + }, + "events": [ + { + "uuid": "c5e8258c-9117-4520-9fce-0a44792bd372", + "start": { + "$date": "2022-07-16T15:51:38.000Z" + }, + "end": { + "$date": "2022-07-16T15:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", + "uuid": "3c24d14f-e28e-468e-9911-3c5aaa4fc254", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-16T16:02:13.000Z" + }, + "end": { + "$date": "2022-07-16T16:41:21.000Z" + }, + "events": [ + { + "uuid": "8df40ec9-1289-4689-86a5-c83f47aa45a4", + "start": { + "$date": "2022-07-16T16:02:13.000Z" + }, + "end": { + "$date": "2022-07-16T16:41:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a6ffd751-0f0b-470f-8160-0f760d6847e3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-16T16:34:28.000Z" + }, + "end": { + "$date": "2022-07-16T17:13:40.000Z" + }, + "events": [ + { + "uuid": "34c6675b-ea2c-465e-9a79-22ee375cfa86", + "start": { + "$date": "2022-07-16T16:34:28.000Z" + }, + "end": { + "$date": "2022-07-16T17:13:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "482f3a66-14e7-4ab3-b2aa-e15f0dce0328", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-16T18:02:01.000Z" + }, + "end": { + "$date": "2022-07-16T19:20:18.000Z" + }, + "events": [ + { + "uuid": "0310a1b9-cba5-434a-84b2-9c926e47154f", + "start": { + "$date": "2022-07-16T18:02:01.000Z" + }, + "end": { + "$date": "2022-07-16T19:20:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a414d1b6-08ca-4fd4-9b2c-8f56243b620d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-16T18:16:27.000Z" + }, + "end": { + "$date": "2022-07-16T20:30:35.000Z" + }, + "events": [ + { + "uuid": "323b6e13-078f-45c0-b0c2-ecdff08f9841", + "start": { + "$date": "2022-07-16T18:16:27.000Z" + }, + "end": { + "$date": "2022-07-16T20:10:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e4d4629-8375-4d38-8db0-a484f5509ec0", + "start": { + "$date": "2022-07-16T20:10:27.000Z" + }, + "end": { + "$date": "2022-07-16T20:15:27.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9d3857ba-b92a-40bd-b5cb-ee4263939e21", + "start": { + "$date": "2022-07-16T20:15:27.000Z" + }, + "end": { + "$date": "2022-07-16T20:25:27.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "475207df-4d2b-4d16-b1f5-342647faa6d1", + "start": { + "$date": "2022-07-16T20:25:27.000Z" + }, + "end": { + "$date": "2022-07-16T20:30:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "8a7f22ae-27dc-488e-889a-526fa387c961", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-16T18:51:12.000Z" + }, + "end": { + "$date": "2022-07-16T20:18:27.000Z" + }, + "events": [ + { + "uuid": "ae926913-33fc-40e4-87b1-6bed10b55259", + "start": { + "$date": "2022-07-16T18:51:12.000Z" + }, + "end": { + "$date": "2022-07-16T20:18:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "da07ab0a-e67a-45e3-b7ad-f3c7a8c60485", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-16T19:29:57.000Z" + }, + "end": { + "$date": "2022-07-16T21:05:42.000Z" + }, + "events": [ + { + "uuid": "e267ea62-1eaf-4868-9063-b1931599b5d1", + "start": { + "$date": "2022-07-16T19:29:57.000Z" + }, + "end": { + "$date": "2022-07-16T21:05:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "725c9a51-4e99-4738-89a1-c048d2838371", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-16T19:46:23.000Z" + }, + "end": { + "$date": "2022-07-16T21:57:16.000Z" + }, + "events": [ + { + "uuid": "b7cef112-341a-4e3d-be38-368cbea687ec", + "start": { + "$date": "2022-07-16T19:46:23.000Z" + }, + "end": { + "$date": "2022-07-16T21:57:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "3b88a13d-0d58-4450-852f-afe7d322bf35", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T22:32:36.000Z" + }, + "end": { + "$date": "2022-07-16T22:44:31.000Z" + }, + "events": [ + { + "uuid": "a83ef44c-0361-41d6-b78b-9b31969085bf", + "start": { + "$date": "2022-07-16T22:32:36.000Z" + }, + "end": { + "$date": "2022-07-16T22:44:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "ee3a040d-f9cf-4beb-8165-d38ad7a3b94f", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-16T22:44:37.000Z" + }, + "end": { + "$date": "2022-07-17T00:26:53.000Z" + }, + "events": [ + { + "uuid": "c71f4dc6-5c0e-467b-863d-b381149478b6", + "start": { + "$date": "2022-07-16T22:44:37.000Z" + }, + "end": { + "$date": "2022-07-16T23:06:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f12391ad-07fd-411e-8f84-64a1a5b5edab", + "start": { + "$date": "2022-07-16T23:06:37.000Z" + }, + "end": { + "$date": "2022-07-16T23:47:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5b70cd3f-4c84-4029-b9c4-8ef6aee38c9a", + "start": { + "$date": "2022-07-16T23:47:37.000Z" + }, + "end": { + "$date": "2022-07-16T23:49:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6ec7deea-8eae-4411-928a-d28c68f490c5", + "start": { + "$date": "2022-07-16T23:49:37.000Z" + }, + "end": { + "$date": "2022-07-17T00:00:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ef49a476-67bc-48ed-bb52-105ed2cacfe5", + "start": { + "$date": "2022-07-17T00:00:37.000Z" + }, + "end": { + "$date": "2022-07-17T00:03:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "898efcbf-b814-4dcc-a53b-c2e44527eda6", + "start": { + "$date": "2022-07-17T00:03:37.000Z" + }, + "end": { + "$date": "2022-07-17T00:17:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c4204ee8-10b1-4b68-903b-d1ee0ce80990", + "start": { + "$date": "2022-07-17T00:17:37.000Z" + }, + "end": { + "$date": "2022-07-17T00:26:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8c9d2b8f-e9a5-448e-a7a0-beab3ca3b7ec", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-16T23:03:24.000Z" + }, + "end": { + "$date": "2022-07-16T23:43:50.000Z" + }, + "events": [ + { + "uuid": "9de9898c-a3ba-4935-b840-2801c3a883db", + "start": { + "$date": "2022-07-16T23:03:24.000Z" + }, + "end": { + "$date": "2022-07-16T23:43:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a514ace7-27a8-4969-88fa-b6d3e56dc419", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-17T00:01:35.000Z" + }, + "end": { + "$date": "2022-07-17T00:07:26.000Z" + }, + "events": [ + { + "uuid": "7b43810d-848e-4686-a00f-f942464d6ae8", + "start": { + "$date": "2022-07-17T00:01:35.000Z" + }, + "end": { + "$date": "2022-07-17T00:07:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "29275bdd-2798-4344-ad41-31e4fa0f76db", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-17T00:27:13.000Z" + }, + "end": { + "$date": "2022-07-17T00:34:08.000Z" + }, + "events": [ + { + "uuid": "36ac9268-8bc6-4e82-a483-5a2ec076caf1", + "start": { + "$date": "2022-07-17T00:27:13.000Z" + }, + "end": { + "$date": "2022-07-17T00:34:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "ae46f9b4-fb16-40e4-8606-c56613811934", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-17T00:28:38.000Z" + }, + "end": { + "$date": "2022-07-17T02:22:55.000Z" + }, + "events": [ + { + "uuid": "9b43560a-e1fe-4665-ad74-89f183c6d835", + "start": { + "$date": "2022-07-17T00:28:38.000Z" + }, + "end": { + "$date": "2022-07-17T01:35:38.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ee5401bf-ac1e-4ced-b3e5-583367f864c0", + "start": { + "$date": "2022-07-17T01:35:38.000Z" + }, + "end": { + "$date": "2022-07-17T01:37:38.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e9344b1d-f1a6-4e76-b1b2-241f116a7f05", + "start": { + "$date": "2022-07-17T01:37:38.000Z" + }, + "end": { + "$date": "2022-07-17T02:22:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "6de0da33-b2f7-4ca4-929e-a3ee51f5ee95", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-17T00:34:14.000Z" + }, + "end": { + "$date": "2022-07-17T01:20:31.000Z" + }, + "events": [ + { + "uuid": "83da0679-3403-4cac-a769-d9e37dae4754", + "start": { + "$date": "2022-07-17T00:34:14.000Z" + }, + "end": { + "$date": "2022-07-17T01:20:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0e516b96-2820-4ec7-b28b-65d692d3faa9", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-17T02:27:28.000Z" + }, + "end": { + "$date": "2022-07-17T05:22:48.000Z" + }, + "events": [ + { + "uuid": "b71adb0d-97cd-4825-bd0c-ba527fab748a", + "start": { + "$date": "2022-07-17T02:27:28.000Z" + }, + "end": { + "$date": "2022-07-17T05:22:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "73669deb-228e-46b4-b3ad-3ac4ce441d49", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-17T02:35:51.000Z" + }, + "end": { + "$date": "2022-07-17T04:57:25.000Z" + }, + "events": [ + { + "uuid": "5acac7be-192a-4d06-8cd5-43824479105a", + "start": { + "$date": "2022-07-17T02:35:51.000Z" + }, + "end": { + "$date": "2022-07-17T02:49:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2c42aa09-3ac6-4dc4-aa59-0b50d15e9854", + "start": { + "$date": "2022-07-17T02:49:51.000Z" + }, + "end": { + "$date": "2022-07-17T02:52:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c5dc4141-91f8-4e9a-8930-0a4f8d0c3ceb", + "start": { + "$date": "2022-07-17T02:52:51.000Z" + }, + "end": { + "$date": "2022-07-17T02:54:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c14995cd-0a2a-4a17-90d8-adf60aee4355", + "start": { + "$date": "2022-07-17T02:54:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:00:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1436318d-1a35-4400-a868-e4fc63fc6b9a", + "start": { + "$date": "2022-07-17T03:00:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:02:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4aa6fbc3-c9ae-45ec-9872-9ef2ff1a2569", + "start": { + "$date": "2022-07-17T03:02:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:05:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f9728e67-b496-403f-9880-0cd6511f8004", + "start": { + "$date": "2022-07-17T03:05:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:17:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "33279e12-489e-4390-970b-ac02b77b5e87", + "start": { + "$date": "2022-07-17T03:17:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:28:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0afd63ae-7db7-4097-865e-08f9b6e6438c", + "start": { + "$date": "2022-07-17T03:28:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:30:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f9819b78-717b-4cd2-8ee0-57274df4997a", + "start": { + "$date": "2022-07-17T03:30:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:42:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e66b6a8f-a055-4ad8-84b9-df4d1e45cf57", + "start": { + "$date": "2022-07-17T03:42:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:44:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1870bd07-8415-4678-8669-a2585dee460b", + "start": { + "$date": "2022-07-17T03:44:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:54:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "3dc32ee5-1a2a-4cfa-82a8-152540778e3a", + "start": { + "$date": "2022-07-17T03:54:51.000Z" + }, + "end": { + "$date": "2022-07-17T03:56:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "abf26bd6-d1fa-43c2-99df-d82f18d4673d", + "start": { + "$date": "2022-07-17T03:56:51.000Z" + }, + "end": { + "$date": "2022-07-17T04:32:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4385abca-2dce-4450-bade-87d2ecb5f67a", + "start": { + "$date": "2022-07-17T04:32:51.000Z" + }, + "end": { + "$date": "2022-07-17T04:34:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "11a5a345-cdbb-452a-bac8-40ed4b63ff86", + "start": { + "$date": "2022-07-17T04:34:51.000Z" + }, + "end": { + "$date": "2022-07-17T04:51:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "09f74e24-40b0-494a-8b84-654200ae2b88", + "start": { + "$date": "2022-07-17T04:51:51.000Z" + }, + "end": { + "$date": "2022-07-17T04:57:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "4dabbf10-1129-46d7-8eb0-0af075ab3975", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-17T05:44:58.000Z" + }, + "end": { + "$date": "2022-07-17T13:08:55.000Z" + }, + "events": [ + { + "uuid": "34c55a05-bc66-4bf3-bdce-6a6b063962eb", + "start": { + "$date": "2022-07-17T05:44:58.000Z" + }, + "end": { + "$date": "2022-07-17T08:12:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "45d66238-4c52-4c91-bc95-d0e6e2db3ed9", + "start": { + "$date": "2022-07-17T08:12:58.000Z" + }, + "end": { + "$date": "2022-07-17T08:17:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8b889c6d-e0e5-48fb-b7c2-efb381b16fc9", + "start": { + "$date": "2022-07-17T08:17:58.000Z" + }, + "end": { + "$date": "2022-07-17T08:27:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c51b57aa-0f74-40c3-b24a-50b03fdee61c", + "start": { + "$date": "2022-07-17T08:27:58.000Z" + }, + "end": { + "$date": "2022-07-17T13:27:58.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cbfd53e7-048c-492d-bc03-3ab08bd32e7f", + "start": { + "$date": "2022-07-17T13:27:58.000Z" + }, + "end": { + "$date": "2022-07-17T13:37:58.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "61ebb623-2877-430b-ab36-f498dea08cb7", + "start": { + "$date": "2022-07-17T13:37:58.000Z" + }, + "end": { + "$date": "2022-07-17T13:08:55.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", + "uuid": "f7403a74-0e02-42ab-a78f-9e87f0574c4c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-17T03:56:01.000Z" + }, + "end": { + "$date": "2022-07-17T04:22:00.000Z" + }, + "events": [ + { + "uuid": "e76dc8bb-bbd2-4b11-9ccf-e41302b65a8e", + "start": { + "$date": "2022-07-17T03:56:01.000Z" + }, + "end": { + "$date": "2022-07-17T04:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "54bbae5f-e88a-4713-ad4c-21f756f180de", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-17T04:59:11.000Z" + }, + "end": { + "$date": "2022-07-17T05:00:51.000Z" + }, + "events": [ + { + "uuid": "f230baf4-8fb0-4890-9200-4fefb1f7144a", + "start": { + "$date": "2022-07-17T04:59:11.000Z" + }, + "end": { + "$date": "2022-07-17T05:00:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "af326eef-b325-44f1-aab0-01e434988731", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-17T05:00:58.000Z" + }, + "end": { + "$date": "2022-07-17T05:02:03.000Z" + }, + "events": [ + { + "uuid": "5e1dc14f-2b45-4c2a-b44a-225d061f858a", + "start": { + "$date": "2022-07-17T05:00:58.000Z" + }, + "end": { + "$date": "2022-07-17T05:02:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "02ad3665-4986-4655-82d2-fccdabe9c12d", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-17T05:01:26.000Z" + }, + "end": { + "$date": "2022-07-17T08:44:19.000Z" + }, + "events": [ + { + "uuid": "457a9b30-1d3f-48d3-9f9c-bb947d63679e", + "start": { + "$date": "2022-07-17T05:01:26.000Z" + }, + "end": { + "$date": "2022-07-17T08:44:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a16bd5c9-8949-4eca-a06c-b3cd318461bd", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-17T05:02:28.000Z" + }, + "end": { + "$date": "2022-07-17T05:03:33.000Z" + }, + "events": [ + { + "uuid": "78b9efa5-a93f-4968-88a7-b5d5e7387b77", + "start": { + "$date": "2022-07-17T05:02:28.000Z" + }, + "end": { + "$date": "2022-07-17T05:03:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "2ad0368a-78d3-4009-9b92-016e8f11f68a", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-17T05:04:53.000Z" + }, + "end": { + "$date": "2022-07-17T08:42:45.000Z" + }, + "events": [ + { + "uuid": "a8a92bac-e7d7-4513-af4e-3150b066c871", + "start": { + "$date": "2022-07-17T05:04:53.000Z" + }, + "end": { + "$date": "2022-07-17T08:42:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "e60a502a-c371-4523-9c8f-90cda671b025", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-17T05:23:03.000Z" + }, + "end": { + "$date": "2022-07-17T06:30:31.000Z" + }, + "events": [ + { + "uuid": "2ce89ada-a952-4c99-9e4f-6e9d831f9484", + "start": { + "$date": "2022-07-17T05:23:03.000Z" + }, + "end": { + "$date": "2022-07-17T06:30:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "72833576-c4f8-4b3b-8b82-c68841ad95df", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-17T06:50:50.000Z" + }, + "end": { + "$date": "2022-07-17T07:05:42.000Z" + }, + "events": [ + { + "uuid": "aff51a0f-ce7a-45e7-bf30-b822ebf49389", + "start": { + "$date": "2022-07-17T06:50:50.000Z" + }, + "end": { + "$date": "2022-07-17T07:05:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f60f89a1-9d0e-4b08-8fa0-105381e977af", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-17T07:08:50.000Z" + }, + "end": { + "$date": "2022-07-17T07:40:18.000Z" + }, + "events": [ + { + "uuid": "511457a1-ab16-4d40-9f2f-8e0452318cf8", + "start": { + "$date": "2022-07-17T07:08:50.000Z" + }, + "end": { + "$date": "2022-07-17T07:40:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a2b6132c-eb18-4735-bb92-c7a8933319ce", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-17T13:09:15.000Z" + }, + "end": { + "$date": "2022-07-17T15:12:02.000Z" + }, + "events": [ + { + "uuid": "731c2d51-3286-43be-95c2-7aea58f7071e", + "start": { + "$date": "2022-07-17T13:09:15.000Z" + }, + "end": { + "$date": "2022-07-17T15:12:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1cc985f6-95fc-4bf1-bc71-d3944e1ca911", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-17T13:43:05.000Z" + }, + "end": { + "$date": "2022-07-17T15:11:54.000Z" + }, + "events": [ + { + "uuid": "98e9c5f1-453f-4968-8c63-cbc0518acdf9", + "start": { + "$date": "2022-07-17T13:43:05.000Z" + }, + "end": { + "$date": "2022-07-17T15:11:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dcaa64d2-828a-4860-8f6b-72385a7631d0", + "uuid": "2a25229b-ce09-4378-84e8-8fff7b63eca5", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-17T15:20:34.000Z" + }, + "end": { + "$date": "2022-07-17T15:25:24.000Z" + }, + "events": [ + { + "uuid": "8994f028-8488-4aef-be17-fb3a6546b579", + "start": { + "$date": "2022-07-17T15:20:34.000Z" + }, + "end": { + "$date": "2022-07-17T15:25:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", + "uuid": "3010f6a2-7acf-455e-b0c3-603d53e242f8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-17T15:41:39.000Z" + }, + "end": { + "$date": "2022-07-17T16:15:46.000Z" + }, + "events": [ + { + "uuid": "63952e42-f5f5-40af-8cc2-aa6cfd0d70a1", + "start": { + "$date": "2022-07-17T15:41:39.000Z" + }, + "end": { + "$date": "2022-07-17T16:15:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "626fe1c2-9d3c-427c-afa5-3fa2cae3c7fd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-17T17:19:12.000Z" + }, + "end": { + "$date": "2022-07-17T18:01:15.000Z" + }, + "events": [ + { + "uuid": "3ed7f0f3-7269-4e34-a29e-b5226626843d", + "start": { + "$date": "2022-07-17T17:19:12.000Z" + }, + "end": { + "$date": "2022-07-17T17:33:12.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "a72dae14-3fb4-47d2-8bc3-c313014f203a", + "start": { + "$date": "2022-07-17T17:33:12.000Z" + }, + "end": { + "$date": "2022-07-17T17:36:12.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "43034320-5ae6-4728-aa86-28ed781fc3e2", + "start": { + "$date": "2022-07-17T17:36:12.000Z" + }, + "end": { + "$date": "2022-07-17T18:01:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dd280b7c-f3d6-4cdc-b2ed-71f43608dd72", + "uuid": "b6bfbfa9-f645-4e1b-bf72-6372f45084d4", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-17T19:01:45.000Z" + }, + "end": { + "$date": "2022-07-17T19:07:16.000Z" + }, + "events": [ + { + "uuid": "15fef2fc-8e44-42d0-b424-4b022c45ffa3", + "start": { + "$date": "2022-07-17T19:01:45.000Z" + }, + "end": { + "$date": "2022-07-17T19:07:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2e7888bc-037c-48b4-ba15-4b8b105f2180", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-17T19:19:27.000Z" + }, + "end": { + "$date": "2022-07-17T19:47:40.000Z" + }, + "events": [ + { + "uuid": "9b72b450-07aa-47ca-8c58-4c2cc7d6013c", + "start": { + "$date": "2022-07-17T19:19:27.000Z" + }, + "end": { + "$date": "2022-07-17T19:47:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "9ef9bc16-19d7-4e90-946d-9ac54a1a41ce", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-17T19:20:08.000Z" + }, + "end": { + "$date": "2022-07-18T00:31:00.000Z" + }, + "events": [ + { + "uuid": "49efcf2d-62ea-476f-9f1d-5cc9cf41db18", + "start": { + "$date": "2022-07-17T19:20:08.000Z" + }, + "end": { + "$date": "2022-07-18T00:31:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "76d392b4-3adf-4b17-afb6-620b98639d4a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-17T21:14:57.000Z" + }, + "end": { + "$date": "2022-07-17T22:11:32.000Z" + }, + "events": [ + { + "uuid": "f096d553-c9aa-4062-b6dc-3b7b7e4c7ba0", + "start": { + "$date": "2022-07-17T21:14:57.000Z" + }, + "end": { + "$date": "2022-07-17T22:11:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9ddf20af-03dd-4fbd-9c85-0f90932e7671", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-17T21:18:33.000Z" + }, + "end": { + "$date": "2022-07-17T21:22:43.000Z" + }, + "events": [ + { + "uuid": "e7a71dfc-079a-4c01-b97a-d0997d638992", + "start": { + "$date": "2022-07-17T21:18:33.000Z" + }, + "end": { + "$date": "2022-07-17T21:22:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "8ba29ddf-0e36-4d10-8330-6a17186da052", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-17T21:58:35.000Z" + }, + "end": { + "$date": "2022-07-17T22:00:09.000Z" + }, + "events": [ + { + "uuid": "a773a05c-013a-4a8c-b0c4-907f7fea89a9", + "start": { + "$date": "2022-07-17T21:58:35.000Z" + }, + "end": { + "$date": "2022-07-17T22:00:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7f8d7b26-6444-4aca-8cd2-fead884f8f32", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-18T00:26:40.000Z" + }, + "events": [ + { + "uuid": "c09cfb33-d0f8-467f-af01-6f723ebbfd7c", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-18T00:16:20.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fbf9326e-68e6-4515-9d64-3a7b2e08d788", + "start": { + "$date": "2022-07-18T00:16:20.000Z" + }, + "end": { + "$date": "2022-07-18T00:26:40.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4abe7fd8-322d-4992-8921-0f6b14b583ca", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-17T22:02:07.000Z" + }, + "end": { + "$date": "2022-07-18T00:15:16.000Z" + }, + "events": [ + { + "uuid": "20634820-992d-4351-87c9-197dd57c5e50", + "start": { + "$date": "2022-07-17T22:02:07.000Z" + }, + "end": { + "$date": "2022-07-18T00:15:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "3d3a286f-3578-4598-9c01-76563bb3eb06", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-17T23:11:36.000Z" + }, + "end": { + "$date": "2022-07-18T00:20:47.000Z" + }, + "events": [ + { + "uuid": "d6f5f3ef-1286-462e-9740-edbc3c81da49", + "start": { + "$date": "2022-07-17T23:11:36.000Z" + }, + "end": { + "$date": "2022-07-18T00:20:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "471c3db6-1c4a-46b1-b666-d8adde784386", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-18T00:17:57.000Z" + }, + "end": { + "$date": "2022-07-18T01:14:03.000Z" + }, + "events": [ + { + "uuid": "793f95ac-a2c3-476c-a0a6-d99597a81a47", + "start": { + "$date": "2022-07-18T00:17:57.000Z" + }, + "end": { + "$date": "2022-07-18T01:14:03.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "cfbfdc6f-d626-4c76-bcee-d4003526657f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-18T00:32:00.000Z" + }, + "end": { + "$date": "2022-07-18T00:56:16.000Z" + }, + "events": [ + { + "uuid": "708cefc2-ddfe-4d62-832d-6d3e7d877d49", + "start": { + "$date": "2022-07-18T00:32:00.000Z" + }, + "end": { + "$date": "2022-07-18T00:56:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "901b07e0-658c-4903-8312-86aa17b9229d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-18T01:35:48.000Z" + }, + "end": { + "$date": "2022-07-18T02:00:50.000Z" + }, + "events": [ + { + "uuid": "b227e9eb-dec7-4446-a205-f3c59734deb1", + "start": { + "$date": "2022-07-18T01:35:48.000Z" + }, + "end": { + "$date": "2022-07-18T02:00:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "5606810e-44c0-497b-b9b2-5f19f89f3458", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-18T02:02:05.000Z" + }, + "end": { + "$date": "2022-07-18T02:04:00.000Z" + }, + "events": [ + { + "uuid": "7068b317-717c-418a-a288-bbd3f29fd585", + "start": { + "$date": "2022-07-18T02:02:05.000Z" + }, + "end": { + "$date": "2022-07-18T02:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7cad2619-079a-40a0-9b2f-8b213a01b2c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-18T02:04:31.000Z" + }, + "end": { + "$date": "2022-07-18T02:08:25.000Z" + }, + "events": [ + { + "uuid": "8fe54df5-2dfb-4a3b-8c74-4f4d382d2255", + "start": { + "$date": "2022-07-18T02:04:31.000Z" + }, + "end": { + "$date": "2022-07-18T02:08:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a0180fe4-39f2-4c82-a255-d8723e34a2af", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-18T02:08:46.000Z" + }, + "end": { + "$date": "2022-07-18T06:35:53.000Z" + }, + "events": [ + { + "uuid": "163c389c-75bf-428c-b59c-313d1674ceed", + "start": { + "$date": "2022-07-18T02:08:46.000Z" + }, + "end": { + "$date": "2022-07-18T06:35:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1c1c85e3-1627-4ca7-84ba-8874609c1e91", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-18T02:12:04.000Z" + }, + "end": { + "$date": "2022-07-18T02:36:03.000Z" + }, + "events": [ + { + "uuid": "a1fff1f0-ac31-47c3-b397-5d00907ac4bb", + "start": { + "$date": "2022-07-18T02:12:04.000Z" + }, + "end": { + "$date": "2022-07-18T02:36:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "2cd43b24-7379-441b-936c-9d6f1dc909f2", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-18T04:09:01.000Z" + }, + "end": { + "$date": "2022-07-18T05:41:25.000Z" + }, + "events": [ + { + "uuid": "40479f6f-c654-4612-8ba7-a15d6c4e4504", + "start": { + "$date": "2022-07-18T04:09:01.000Z" + }, + "end": { + "$date": "2022-07-18T05:41:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "c5f923b1-d4a8-4e9f-8e62-26d20376634f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-18T05:09:59.000Z" + }, + "end": { + "$date": "2022-07-18T05:56:24.000Z" + }, + "events": [ + { + "uuid": "51bbe781-812e-4077-b218-5b74650daa9c", + "start": { + "$date": "2022-07-18T05:09:59.000Z" + }, + "end": { + "$date": "2022-07-18T05:56:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "2806a299-eb6a-4fb0-8517-6c1f555fe48c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-18T05:12:05.000Z" + }, + "end": { + "$date": "2022-07-18T05:50:08.000Z" + }, + "events": [ + { + "uuid": "a4275b5e-04b6-4aec-87f0-1f7cc4bb8286", + "start": { + "$date": "2022-07-18T05:12:05.000Z" + }, + "end": { + "$date": "2022-07-18T05:50:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "5d832a27-834b-4f57-97ae-bc1678d86a46", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-18T05:54:29.000Z" + }, + "end": { + "$date": "2022-07-18T08:04:31.000Z" + }, + "events": [ + { + "uuid": "97121be4-a482-40c8-9b86-bcb2ddae58ae", + "start": { + "$date": "2022-07-18T05:54:29.000Z" + }, + "end": { + "$date": "2022-07-18T08:04:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "671dbe12-daf6-4c0d-bfec-a713eb082f06", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-18T07:53:54.000Z" + }, + "end": { + "$date": "2022-07-18T08:45:40.000Z" + }, + "events": [ + { + "uuid": "04138892-c1bb-4be9-950d-2ad391ebae27", + "start": { + "$date": "2022-07-18T07:53:54.000Z" + }, + "end": { + "$date": "2022-07-18T08:45:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b9af93fd-51a8-4f9e-aba6-b240129fc256", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-18T14:30:29.000Z" + }, + "end": { + "$date": "2022-07-18T15:15:52.000Z" + }, + "events": [ + { + "uuid": "0a86e448-7978-4f95-b335-488528b791dd", + "start": { + "$date": "2022-07-18T14:30:29.000Z" + }, + "end": { + "$date": "2022-07-18T15:15:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ff5468f7-1f41-4627-bb1b-46c0ea7e0f4e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-18T18:20:49.000Z" + }, + "events": [ + { + "uuid": "7f08744b-66e2-4953-9f34-863b6e5cfea0", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-17T22:01:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "22d87cdc-e9b7-4a89-9dfa-c35f0666cdb8", + "start": { + "$date": "2022-07-17T22:01:20.000Z" + }, + "end": { + "$date": "2022-07-18T18:20:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "0f3d46e9-d0af-42d3-bf28-61ef8df4d29e", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-18T20:37:19.000Z" + }, + "events": [ + { + "uuid": "d09ebbcf-2f47-4cde-9ae5-b38e0f94c27e", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-17T22:01:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "cac2bcc9-e329-4e58-9f89-87ac1d128b12", + "start": { + "$date": "2022-07-17T22:01:20.000Z" + }, + "end": { + "$date": "2022-07-18T20:37:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f570c011-07ae-4885-8248-77baa52fa346", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-18T21:54:44.000Z" + }, + "events": [ + { + "uuid": "125b08c1-df4f-42cd-9642-d7621c8d278a", + "start": { + "$date": "2022-07-17T22:00:20.000Z" + }, + "end": { + "$date": "2022-07-17T22:01:20.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f74e8be0-35e4-416f-9297-89e89958563f", + "start": { + "$date": "2022-07-17T22:01:20.000Z" + }, + "end": { + "$date": "2022-07-18T21:54:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "4864d57f-c2d9-4a94-a6d1-aac38b52ae41", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-18T22:11:34.000Z" + }, + "end": { + "$date": "2022-07-18T23:16:38.000Z" + }, + "events": [ + { + "uuid": "4ba22bf5-6003-432e-9f73-82471adc1a80", + "start": { + "$date": "2022-07-18T22:11:34.000Z" + }, + "end": { + "$date": "2022-07-18T23:16:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", + "uuid": "4665706e-91f3-4d72-885f-c76856ab3729", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-19T00:12:02.000Z" + }, + "end": { + "$date": "2022-07-19T01:02:00.000Z" + }, + "events": [ + { + "uuid": "9a3cdbd2-ea27-4354-92e2-ab28eecb3eeb", + "start": { + "$date": "2022-07-19T00:12:02.000Z" + }, + "end": { + "$date": "2022-07-19T01:02:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "ca6a03cb-adde-468b-b89a-fe076dd9fdc4", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-07-19T00:35:45.000Z" + }, + "end": { + "$date": "2022-07-19T03:04:05.000Z" + }, + "events": [ + { + "uuid": "ae89051c-a97b-4927-96e1-a5ef69d127ba", + "start": { + "$date": "2022-07-19T00:35:45.000Z" + }, + "end": { + "$date": "2022-07-19T03:04:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c30315c2-1ea4-43e5-84fa-1cb3c78e20c0", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-19T01:16:47.000Z" + }, + "end": { + "$date": "2022-07-19T08:57:03.000Z" + }, + "events": [ + { + "uuid": "0c6b268c-2c53-45f0-a337-0721dd6fed61", + "start": { + "$date": "2022-07-19T01:16:47.000Z" + }, + "end": { + "$date": "2022-07-19T08:57:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "05cc4450-376b-4df2-b42b-429e7071ad0c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-19T01:33:41.000Z" + }, + "end": { + "$date": "2022-07-19T03:14:34.000Z" + }, + "events": [ + { + "uuid": "a356fa93-239d-4db5-88ab-9a60e1a95ba5", + "start": { + "$date": "2022-07-19T01:33:41.000Z" + }, + "end": { + "$date": "2022-07-19T03:14:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "9ab0f776-9939-420a-9205-927863a5ac85", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-19T03:42:12.000Z" + }, + "end": { + "$date": "2022-07-19T03:57:39.000Z" + }, + "events": [ + { + "uuid": "fa3524f3-da86-4a6a-b9e9-42fae97ea106", + "start": { + "$date": "2022-07-19T03:42:12.000Z" + }, + "end": { + "$date": "2022-07-19T03:57:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3c499804-2567-4fc0-a3fa-2d3243c99657", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-19T03:46:04.000Z" + }, + "end": { + "$date": "2022-07-19T04:13:46.000Z" + }, + "events": [ + { + "uuid": "48b28385-2efa-4158-9627-457417a68b99", + "start": { + "$date": "2022-07-19T03:46:04.000Z" + }, + "end": { + "$date": "2022-07-19T04:13:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", + "uuid": "0dd0ccd1-3241-4335-ae6f-9903814cfbaa", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-19T03:58:40.000Z" + }, + "end": { + "$date": "2022-07-19T04:51:07.000Z" + }, + "events": [ + { + "uuid": "1b0cd750-2259-4b2a-8072-e3ecdf6c6287", + "start": { + "$date": "2022-07-19T03:58:40.000Z" + }, + "end": { + "$date": "2022-07-19T04:41:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4dee7428-277a-4a79-a7ec-553554b975fa", + "start": { + "$date": "2022-07-19T04:41:40.000Z" + }, + "end": { + "$date": "2022-07-19T04:51:07.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "608165c9-c76f-4506-b4d8-0773668de927", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-19T04:15:55.000Z" + }, + "end": { + "$date": "2022-07-19T04:35:16.000Z" + }, + "events": [ + { + "uuid": "ed3250c7-9acc-429c-95a4-a0681ec9dca3", + "start": { + "$date": "2022-07-19T04:15:55.000Z" + }, + "end": { + "$date": "2022-07-19T04:35:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2931f021-d124-4f25-a4b8-3de34982dced", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-19T04:31:15.000Z" + }, + "end": { + "$date": "2022-07-19T04:53:01.000Z" + }, + "events": [ + { + "uuid": "cf14f9b3-9791-4e0f-aefe-80f33af87714", + "start": { + "$date": "2022-07-19T04:31:15.000Z" + }, + "end": { + "$date": "2022-07-19T04:53:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a8d3eb5f-e4b8-46bb-9e4d-c8ddf908fd07", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-19T04:54:41.000Z" + }, + "end": { + "$date": "2022-07-19T05:30:30.000Z" + }, + "events": [ + { + "uuid": "f4f1b502-d7b0-44a9-8563-48ae51bac6c2", + "start": { + "$date": "2022-07-19T04:54:41.000Z" + }, + "end": { + "$date": "2022-07-19T05:30:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e4ac763-cccd-425b-a8e1-278f8c544f97", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-19T05:31:15.000Z" + }, + "end": { + "$date": "2022-07-19T06:07:38.000Z" + }, + "events": [ + { + "uuid": "214b92ed-278f-43a9-82cc-184652f2a7c6", + "start": { + "$date": "2022-07-19T05:31:15.000Z" + }, + "end": { + "$date": "2022-07-19T06:07:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a4e5bb7f-2099-438b-81cd-41d45ce502e5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-19T06:21:25.000Z" + }, + "end": { + "$date": "2022-07-19T07:07:43.000Z" + }, + "events": [ + { + "uuid": "ee951357-79e4-4f00-a847-c2aeab476515", + "start": { + "$date": "2022-07-19T06:21:25.000Z" + }, + "end": { + "$date": "2022-07-19T07:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "fb68dd34-d626-4762-b0ca-48c75d7cfa20", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-19T22:21:40.000Z" + }, + "end": { + "$date": "2022-07-19T23:26:17.000Z" + }, + "events": [ + { + "uuid": "a359271f-9997-427a-8acb-77b19e26025e", + "start": { + "$date": "2022-07-19T22:21:40.000Z" + }, + "end": { + "$date": "2022-07-19T23:26:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "9f6c3650-ff63-4cac-aa6b-28bfa4bc4fe3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-19T23:51:47.000Z" + }, + "end": { + "$date": "2022-07-19T23:53:47.000Z" + }, + "events": [ + { + "uuid": "1366d95e-1984-4b2b-99ea-c89fd30ff4f5", + "start": { + "$date": "2022-07-19T23:51:47.000Z" + }, + "end": { + "$date": "2022-07-19T23:53:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "4dfb8dce-1244-49d9-9608-f26434de1b8b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-19T23:54:07.000Z" + }, + "end": { + "$date": "2022-07-20T01:00:18.000Z" + }, + "events": [ + { + "uuid": "20296bf0-9064-49f1-a6d8-68228c28d799", + "start": { + "$date": "2022-07-19T23:54:07.000Z" + }, + "end": { + "$date": "2022-07-20T01:00:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f57e0934-6b66-4860-bc34-cb6524776ebf", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-20T00:29:13.000Z" + }, + "end": { + "$date": "2022-07-20T04:57:54.000Z" + }, + "events": [ + { + "uuid": "64400217-ecdf-4d34-bd90-bac1dd95c31e", + "start": { + "$date": "2022-07-20T00:29:13.000Z" + }, + "end": { + "$date": "2022-07-20T04:57:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "ecdadf25-ac24-4184-a223-cf319cd5f6f3", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-20T00:31:35.000Z" + }, + "end": { + "$date": "2022-07-20T01:12:05.000Z" + }, + "events": [ + { + "uuid": "30b645b8-2bea-4619-8890-a3c886dfe2c6", + "start": { + "$date": "2022-07-20T00:31:35.000Z" + }, + "end": { + "$date": "2022-07-20T01:12:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "f06be249-8ac7-437c-9a5a-5cbf148c2686", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-20T01:01:03.000Z" + }, + "end": { + "$date": "2022-07-20T01:13:39.000Z" + }, + "events": [ + { + "uuid": "5a6ad1bd-0090-4aed-b97a-00ab62e38c22", + "start": { + "$date": "2022-07-20T01:01:03.000Z" + }, + "end": { + "$date": "2022-07-20T01:13:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "8ac8c2f2-6f2e-4fdd-b3a5-b53e88a51e25", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-20T01:43:02.000Z" + }, + "end": { + "$date": "2022-07-20T01:46:46.000Z" + }, + "events": [ + { + "uuid": "2a5d5382-f300-4596-a913-88567ff10f13", + "start": { + "$date": "2022-07-20T01:43:02.000Z" + }, + "end": { + "$date": "2022-07-20T01:46:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6acc904e-8e39-4b9f-984f-ae6000f57d02", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-20T01:47:06.000Z" + }, + "end": { + "$date": "2022-07-20T04:58:02.000Z" + }, + "events": [ + { + "uuid": "740dffa3-e690-4b55-bf39-1fdd402ef269", + "start": { + "$date": "2022-07-20T01:47:06.000Z" + }, + "end": { + "$date": "2022-07-20T04:58:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9b0071bf-4d77-492d-94e3-df578895c2c4", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-20T01:47:17.000Z" + }, + "end": { + "$date": "2022-07-20T03:18:31.000Z" + }, + "events": [ + { + "uuid": "36f9d33f-abac-4039-9ae7-fc15da956fe8", + "start": { + "$date": "2022-07-20T01:47:17.000Z" + }, + "end": { + "$date": "2022-07-20T03:18:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "469960bb-1a52-443e-8360-c44cbeccd01a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-20T01:48:19.000Z" + }, + "end": { + "$date": "2022-07-20T01:51:52.000Z" + }, + "events": [ + { + "uuid": "7d2ecb85-0e5e-4853-92a2-0ac8b44303f2", + "start": { + "$date": "2022-07-20T01:48:19.000Z" + }, + "end": { + "$date": "2022-07-20T01:51:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "361ebaf4-7238-47e3-8996-98ebccf53f37", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-20T01:52:04.000Z" + }, + "end": { + "$date": "2022-07-20T03:23:30.000Z" + }, + "events": [ + { + "uuid": "08b23168-4005-4ab8-943b-c1df4062c37e", + "start": { + "$date": "2022-07-20T01:52:04.000Z" + }, + "end": { + "$date": "2022-07-20T03:23:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "a831e6bf-b53e-408f-8524-77b450bc6262", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-20T02:07:15.000Z" + }, + "end": { + "$date": "2022-07-20T03:48:56.000Z" + }, + "events": [ + { + "uuid": "9b67d337-1c08-41e2-b79d-ce196670439d", + "start": { + "$date": "2022-07-20T02:07:15.000Z" + }, + "end": { + "$date": "2022-07-20T03:48:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3366b538-b877-404b-9e58-d54a77925e28", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T02:48:10.000Z" + }, + "end": { + "$date": "2022-07-20T04:01:29.000Z" + }, + "events": [ + { + "uuid": "a8dc0223-955d-4fd8-a2b8-18e4ebb89843", + "start": { + "$date": "2022-07-20T02:48:10.000Z" + }, + "end": { + "$date": "2022-07-20T04:01:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "7af1a215-dc22-41ea-a04a-50a6f82262bb", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-20T04:00:15.000Z" + }, + "end": { + "$date": "2022-07-20T06:07:49.000Z" + }, + "events": [ + { + "uuid": "54a465ed-1c4b-4796-b0da-e66560cf7a46", + "start": { + "$date": "2022-07-20T04:00:15.000Z" + }, + "end": { + "$date": "2022-07-20T06:07:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ff743a5c-42ca-4585-9559-0bf470cf321d", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T04:01:44.000Z" + }, + "end": { + "$date": "2022-07-20T07:15:25.000Z" + }, + "events": [ + { + "uuid": "8f40a986-3b48-40a7-becf-a55d0d34035f", + "start": { + "$date": "2022-07-20T04:01:44.000Z" + }, + "end": { + "$date": "2022-07-20T07:15:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c5d03e64-8354-4fee-a388-120696017912", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-20T04:04:38.000Z" + }, + "end": { + "$date": "2022-07-20T04:25:14.000Z" + }, + "events": [ + { + "uuid": "fd90516c-9f85-4ce0-88f6-91cdb9a49be2", + "start": { + "$date": "2022-07-20T04:04:38.000Z" + }, + "end": { + "$date": "2022-07-20T04:25:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98a9868c-a6a8-43bc-a912-5ea0ccb1acbc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-20T04:28:13.000Z" + }, + "end": { + "$date": "2022-07-20T04:52:54.000Z" + }, + "events": [ + { + "uuid": "9d6d128d-8433-41ce-ab46-329e21bde2da", + "start": { + "$date": "2022-07-20T04:28:13.000Z" + }, + "end": { + "$date": "2022-07-20T04:52:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d84ac4e8-5984-4b04-9673-b50e00aeeeef", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-20T04:44:02.000Z" + }, + "end": { + "$date": "2022-07-20T05:53:06.000Z" + }, + "events": [ + { + "uuid": "986971ac-8eca-475a-b60f-08ab83b83fd8", + "start": { + "$date": "2022-07-20T04:44:02.000Z" + }, + "end": { + "$date": "2022-07-20T05:53:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "b75b3909-a633-428b-9f8e-4fcb8cd6ed18", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-20T04:44:26.000Z" + }, + "end": { + "$date": "2022-07-20T05:48:51.000Z" + }, + "events": [ + { + "uuid": "914ca981-7b9b-4d91-a3ea-8717422f7dc9", + "start": { + "$date": "2022-07-20T04:44:26.000Z" + }, + "end": { + "$date": "2022-07-20T05:48:51.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "dd49f487-6b3c-40d5-8d50-bda879ad49b6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-20T04:50:28.000Z" + }, + "end": { + "$date": "2022-07-20T06:54:05.000Z" + }, + "events": [ + { + "uuid": "1b63f3fb-05d2-4ef2-b389-d6f609e8ae16", + "start": { + "$date": "2022-07-20T04:50:28.000Z" + }, + "end": { + "$date": "2022-07-20T06:54:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9df06298-77cc-4168-b00f-a8107e777345", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-20T04:56:39.000Z" + }, + "end": { + "$date": "2022-07-20T05:16:54.000Z" + }, + "events": [ + { + "uuid": "9cca1309-0af6-466a-9417-6b1eed028bcd", + "start": { + "$date": "2022-07-20T04:56:39.000Z" + }, + "end": { + "$date": "2022-07-20T05:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "6c0396f8-0dcb-4c48-b44d-38458d9baae0", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-20T05:25:24.000Z" + }, + "end": { + "$date": "2022-07-20T05:34:03.000Z" + }, + "events": [ + { + "uuid": "4b5ddfc6-d3b7-44a6-852c-b3ed5904d292", + "start": { + "$date": "2022-07-20T05:25:24.000Z" + }, + "end": { + "$date": "2022-07-20T05:34:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "10d5396b-cde1-4def-a3e4-e1627db48208", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-20T05:53:51.000Z" + }, + "end": { + "$date": "2022-07-20T07:24:42.000Z" + }, + "events": [ + { + "uuid": "bf577e25-7149-4b31-baf4-0934b5207c6f", + "start": { + "$date": "2022-07-20T05:53:51.000Z" + }, + "end": { + "$date": "2022-07-20T07:24:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "71a6f356-ac68-476b-a198-d10e07d5cbe7", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-20T06:28:22.000Z" + }, + "end": { + "$date": "2022-07-20T06:53:27.000Z" + }, + "events": [ + { + "uuid": "4434af16-f560-43e6-b596-b7628cdbe27f", + "start": { + "$date": "2022-07-20T06:28:22.000Z" + }, + "end": { + "$date": "2022-07-20T06:53:27.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "8ceea534-46d7-4431-8f51-ba6f33fa32bb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T07:22:48.000Z" + }, + "end": { + "$date": "2022-07-20T07:53:16.000Z" + }, + "events": [ + { + "uuid": "9c7915e5-6e98-412d-9c42-deed71836f59", + "start": { + "$date": "2022-07-20T07:22:48.000Z" + }, + "end": { + "$date": "2022-07-20T07:53:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "73791899-39a0-4c0d-ad28-e01d6db9d0f2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T07:54:03.000Z" + }, + "end": { + "$date": "2022-07-20T08:09:07.000Z" + }, + "events": [ + { + "uuid": "cc3299f2-80e6-44e4-849d-53841f57113b", + "start": { + "$date": "2022-07-20T07:54:03.000Z" + }, + "end": { + "$date": "2022-07-20T08:09:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "3c6aea58-5b72-4c99-99b2-e3cee4fb61b1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T08:09:57.000Z" + }, + "end": { + "$date": "2022-07-20T08:14:39.000Z" + }, + "events": [ + { + "uuid": "bf8cbb21-2e2e-46fd-8914-25e1f9789250", + "start": { + "$date": "2022-07-20T08:09:57.000Z" + }, + "end": { + "$date": "2022-07-20T08:14:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8e529bf1-011d-4b92-beb5-fbb766596430", + "uuid": "adef8499-f367-4408-8a07-29bcc9b10ca2", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T08:17:27.000Z" + }, + "end": { + "$date": "2022-07-20T08:38:53.000Z" + }, + "events": [ + { + "uuid": "0d0cbb53-a1c2-4c14-ac34-be7c1497dbfd", + "start": { + "$date": "2022-07-20T08:17:27.000Z" + }, + "end": { + "$date": "2022-07-20T08:38:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "c26d1321-c40e-4668-87ac-ae74b83dee69", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-20T14:28:59.000Z" + }, + "end": { + "$date": "2022-07-20T14:30:00.000Z" + }, + "events": [ + { + "uuid": "3b1a9115-1061-4654-bdff-271d50101e6a", + "start": { + "$date": "2022-07-20T14:28:59.000Z" + }, + "end": { + "$date": "2022-07-20T14:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81d5d470-fba9-487f-bbb6-10a4a4604c19", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-20T14:59:50.000Z" + }, + "end": { + "$date": "2022-07-20T15:01:19.000Z" + }, + "events": [ + { + "uuid": "2272a21c-5600-403d-90dc-9b79e19088ee", + "start": { + "$date": "2022-07-20T14:59:50.000Z" + }, + "end": { + "$date": "2022-07-20T15:01:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "4af8bbe5-0e23-4b1f-b206-98393f3728d2", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-20T18:10:30.000Z" + }, + "end": { + "$date": "2022-07-20T18:27:25.000Z" + }, + "events": [ + { + "uuid": "53c5bbb8-9b09-4884-ae4f-785178dfeaeb", + "start": { + "$date": "2022-07-20T18:10:30.000Z" + }, + "end": { + "$date": "2022-07-20T18:27:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1087ffc8-0d6c-482a-92a8-7badb65cca41", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T19:23:16.000Z" + }, + "end": { + "$date": "2022-07-20T20:06:13.000Z" + }, + "events": [ + { + "uuid": "b815e13b-88f6-48f7-9f5f-8ac32f97ecf6", + "start": { + "$date": "2022-07-20T19:23:16.000Z" + }, + "end": { + "$date": "2022-07-20T20:06:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "4b7c08ef-9b00-40de-a526-45d588b7b48d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-20T20:35:24.000Z" + }, + "end": { + "$date": "2022-07-20T22:13:41.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-07-20T20:35:24.000Z" + }, + "end": { + "$date": "2022-07-20T22:13:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2fd6b687-7024-4a07-80c6-8e4961c3a2f5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T22:36:29.000Z" + }, + "end": { + "$date": "2022-07-20T23:03:11.000Z" + }, + "events": [ + { + "uuid": "7606dd75-d356-4c78-8476-a2bedc8a690c", + "start": { + "$date": "2022-07-20T22:36:29.000Z" + }, + "end": { + "$date": "2022-07-20T23:03:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "87407c03-5214-4a9e-bea2-a1272e4eca9d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-20T22:59:43.000Z" + }, + "end": { + "$date": "2022-07-20T23:48:31.000Z" + }, + "events": [ + { + "uuid": "6bf4e1e5-8ba0-4f2c-a832-681d5527d7bb", + "start": { + "$date": "2022-07-20T22:59:43.000Z" + }, + "end": { + "$date": "2022-07-20T23:37:43.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "95c65d10-79cf-4db1-8a61-923b98947b2b", + "start": { + "$date": "2022-07-20T23:37:43.000Z" + }, + "end": { + "$date": "2022-07-20T23:40:43.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "420fef1e-0e88-4091-9dde-de8fcbc20bfa", + "start": { + "$date": "2022-07-20T23:40:43.000Z" + }, + "end": { + "$date": "2022-07-20T23:48:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "20f1c244-e53b-4e3f-8c1e-f11960b9065e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-20T22:36:29.000Z" + }, + "end": { + "$date": "2022-07-21T03:40:13.000Z" + }, + "events": [ + { + "uuid": "65273fd3-b96f-499e-b40d-2d0f07a4e419", + "start": { + "$date": "2022-07-20T22:36:29.000Z" + }, + "end": { + "$date": "2022-07-21T03:40:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "8a4c4f2a-7fd6-4f84-a0cd-2216f3301909", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T01:11:49.000Z" + }, + "end": { + "$date": "2022-07-21T01:12:58.000Z" + }, + "events": [ + { + "uuid": "c11f8c87-f155-4a72-af5e-a8a7ca1a77c1", + "start": { + "$date": "2022-07-21T01:11:49.000Z" + }, + "end": { + "$date": "2022-07-21T01:12:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "dc232501-5102-4d33-8225-0766aa865980", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T03:00:35.000Z" + }, + "end": { + "$date": "2022-07-21T04:04:21.000Z" + }, + "events": [ + { + "uuid": "b4ef1403-2d73-47c7-a629-9cb79da4842c", + "start": { + "$date": "2022-07-21T03:00:35.000Z" + }, + "end": { + "$date": "2022-07-21T04:04:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "79d69f50-3200-4bb1-a757-2f88d1c55d6b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-21T03:40:28.000Z" + }, + "end": { + "$date": "2022-07-21T05:22:34.000Z" + }, + "events": [ + { + "uuid": "84600d9b-366a-4a72-87e4-ca09e7d8e836", + "start": { + "$date": "2022-07-21T03:40:28.000Z" + }, + "end": { + "$date": "2022-07-21T05:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "55022842-6143-4c9c-8b44-aa3a15608226", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-21T03:42:16.000Z" + }, + "end": { + "$date": "2022-07-21T05:53:55.000Z" + }, + "events": [ + { + "uuid": "977512c8-0b03-49cb-b047-1618c32d2f73", + "start": { + "$date": "2022-07-21T03:42:16.000Z" + }, + "end": { + "$date": "2022-07-21T05:53:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "bbd5a720-3459-4bd7-a119-7a35851f9a62", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-21T03:43:28.000Z" + }, + "end": { + "$date": "2022-07-21T04:22:08.000Z" + }, + "events": [ + { + "uuid": "55f757c2-f839-4ca0-b440-13d2b979771f", + "start": { + "$date": "2022-07-21T03:43:28.000Z" + }, + "end": { + "$date": "2022-07-21T04:22:08.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d1b5b7c4-fe03-4980-aa9c-7ad1163978d2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-21T03:52:12.000Z" + }, + "end": { + "$date": "2022-07-21T04:21:53.000Z" + }, + "events": [ + { + "uuid": "48cadbf6-0be2-4551-b39b-eedbe081bbf4", + "start": { + "$date": "2022-07-21T03:52:12.000Z" + }, + "end": { + "$date": "2022-07-21T04:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "671f77cc-ea03-46a5-8f5e-1fb73218fad0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T04:10:13.000Z" + }, + "end": { + "$date": "2022-07-21T04:15:14.000Z" + }, + "events": [ + { + "uuid": "8506746e-e290-48db-bbb0-c5c19bc9b411", + "start": { + "$date": "2022-07-21T04:10:13.000Z" + }, + "end": { + "$date": "2022-07-21T04:15:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "192cb7c3-46ea-4697-9c8b-44d38bd22875", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T04:20:03.000Z" + }, + "end": { + "$date": "2022-07-21T05:45:20.000Z" + }, + "events": [ + { + "uuid": "42f543c3-d59d-45a8-afc0-85f4542e3ee1", + "start": { + "$date": "2022-07-21T04:20:03.000Z" + }, + "end": { + "$date": "2022-07-21T05:45:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "5bd19aa0-b6e0-4ad6-9d01-45e3a8995ca3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-21T04:22:08.000Z" + }, + "end": { + "$date": "2022-07-21T05:28:04.000Z" + }, + "events": [ + { + "uuid": "a9d13da9-f1ad-4a3b-9939-3e974035b3c6", + "start": { + "$date": "2022-07-21T04:22:08.000Z" + }, + "end": { + "$date": "2022-07-21T05:28:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6bd63d51-1d9c-49a8-8d39-870b0cee40bc", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-21T04:43:04.000Z" + }, + "end": { + "$date": "2022-07-21T04:45:09.000Z" + }, + "events": [ + { + "uuid": "a6a4cbb4-f380-4a12-8108-79d759ad1c65", + "start": { + "$date": "2022-07-21T04:43:04.000Z" + }, + "end": { + "$date": "2022-07-21T04:45:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b8cfc004-ee8d-4b24-9ed7-836a2671b476", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-21T04:45:54.000Z" + }, + "end": { + "$date": "2022-07-21T06:28:23.000Z" + }, + "events": [ + { + "uuid": "492a5bec-c16f-4ea7-b9e1-40e3cecf55a5", + "start": { + "$date": "2022-07-21T04:45:54.000Z" + }, + "end": { + "$date": "2022-07-21T06:28:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "99a2fe5e-6b87-4818-8193-eb5ed1bc7100", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-21T04:46:59.000Z" + }, + "end": { + "$date": "2022-07-21T06:28:19.000Z" + }, + "events": [ + { + "uuid": "af47e400-c8a8-409a-919e-29540960e6ae", + "start": { + "$date": "2022-07-21T04:46:59.000Z" + }, + "end": { + "$date": "2022-07-21T06:28:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "4336eb1f-4667-4df1-8864-2d9d18a976b4", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-21T05:00:44.000Z" + }, + "end": { + "$date": "2022-07-21T06:28:48.000Z" + }, + "events": [ + { + "uuid": "8b371af3-fac9-4c72-9e2f-eb024f0520d4", + "start": { + "$date": "2022-07-21T05:00:44.000Z" + }, + "end": { + "$date": "2022-07-21T06:28:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "043cee5b-0f72-46be-baea-74636e192c1b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-21T03:40:28.000Z" + }, + "end": { + "$date": "2022-07-21T07:59:42.000Z" + }, + "events": [ + { + "uuid": "bbacccec-b993-4da3-a336-923e5aa5a985", + "start": { + "$date": "2022-07-21T03:40:28.000Z" + }, + "end": { + "$date": "2022-07-21T07:59:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "8640f9a7-dd03-4deb-ae56-29f71933afe5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-21T06:28:58.000Z" + }, + "end": { + "$date": "2022-07-21T06:41:34.000Z" + }, + "events": [ + { + "uuid": "85ef8682-14c9-49ca-a12a-76ec76d07649", + "start": { + "$date": "2022-07-21T06:28:58.000Z" + }, + "end": { + "$date": "2022-07-21T06:41:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a219993d-72ef-41e6-b9f0-752eb5bd23e2", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-21T06:42:09.000Z" + }, + "end": { + "$date": "2022-07-21T07:20:00.000Z" + }, + "events": [ + { + "uuid": "dd34792f-05a7-44f9-8978-e59246a29308", + "start": { + "$date": "2022-07-21T06:42:09.000Z" + }, + "end": { + "$date": "2022-07-21T07:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "08c6c652-f9c0-4050-8824-7f6cd9ff0e08", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-21T06:42:36.000Z" + }, + "end": { + "$date": "2022-07-21T07:19:33.000Z" + }, + "events": [ + { + "uuid": "9fc463bb-fdb2-4150-bd8f-5819c50d5c22", + "start": { + "$date": "2022-07-21T06:42:36.000Z" + }, + "end": { + "$date": "2022-07-21T07:19:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "1b8da0f3-327a-4875-b080-3713793659b5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-21T07:35:11.000Z" + }, + "end": { + "$date": "2022-07-21T08:08:07.000Z" + }, + "events": [ + { + "uuid": "6845636d-85ad-4070-96e4-be4eb938c3d2", + "start": { + "$date": "2022-07-21T07:35:11.000Z" + }, + "end": { + "$date": "2022-07-21T08:08:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7193c2aa-9a38-49f9-a231-0987c9bcb8ee", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-21T08:02:57.000Z" + }, + "end": { + "$date": "2022-07-21T08:04:12.000Z" + }, + "events": [ + { + "uuid": "6f442fcc-2f47-4b21-9d83-ec4241cc2e97", + "start": { + "$date": "2022-07-21T08:02:57.000Z" + }, + "end": { + "$date": "2022-07-21T08:04:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "30b0e4a3-4381-4168-a4e8-6e3d36a3cc03", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T16:38:47.000Z" + }, + "end": { + "$date": "2022-07-21T17:06:34.000Z" + }, + "events": [ + { + "uuid": "c3a91374-fa8c-4d39-8af8-f138447e3ba2", + "start": { + "$date": "2022-07-21T16:38:47.000Z" + }, + "end": { + "$date": "2022-07-21T17:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "f890e52d-3258-4e6f-a997-e5ec7cfd9a82", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-21T17:50:06.000Z" + }, + "end": { + "$date": "2022-07-21T18:25:07.000Z" + }, + "events": [ + { + "uuid": "bda4852a-70d4-40b1-a136-99ddc561aca6", + "start": { + "$date": "2022-07-21T17:50:06.000Z" + }, + "end": { + "$date": "2022-07-21T18:25:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "f1b51ec2-5f93-4b58-80a4-bfa46f8ba51d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T17:52:32.000Z" + }, + "end": { + "$date": "2022-07-21T18:22:34.000Z" + }, + "events": [ + { + "uuid": "b4dba322-4eff-4b40-b653-7eeb2babb02a", + "start": { + "$date": "2022-07-21T17:52:32.000Z" + }, + "end": { + "$date": "2022-07-21T18:22:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "92347f17-02f1-46a9-b697-80b963e3cddb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T19:27:37.000Z" + }, + "end": { + "$date": "2022-07-21T19:46:43.000Z" + }, + "events": [ + { + "uuid": "b54466d0-bb0c-4b20-bf93-86a3c5a5ea2d", + "start": { + "$date": "2022-07-21T19:27:37.000Z" + }, + "end": { + "$date": "2022-07-21T19:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "cad90329-9d19-484d-b6b1-81f2e0dd69d5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-21T22:16:28.000Z" + }, + "end": { + "$date": "2022-07-22T00:19:28.000Z" + }, + "events": [ + { + "uuid": "f9fa0676-bd48-4e02-aaec-9838f08996ab", + "start": { + "$date": "2022-07-21T22:16:28.000Z" + }, + "end": { + "$date": "2022-07-22T00:19:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "fc3328fe-b4db-4757-9fdb-b3ce173ed8c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-22T01:07:45.000Z" + }, + "end": { + "$date": "2022-07-22T03:30:28.000Z" + }, + "events": [ + { + "uuid": "9467e7da-c919-4f4d-84ad-b3267e191463", + "start": { + "$date": "2022-07-22T01:07:45.000Z" + }, + "end": { + "$date": "2022-07-22T02:49:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ff973495-a9e6-47be-90c8-e1cb45d8f3d4", + "start": { + "$date": "2022-07-22T02:49:45.000Z" + }, + "end": { + "$date": "2022-07-22T02:54:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "2e6a959e-264c-4144-8c82-a8955f7a61bc", + "start": { + "$date": "2022-07-22T02:54:45.000Z" + }, + "end": { + "$date": "2022-07-22T03:04:45.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "58a9339f-87e7-48bd-94bf-2fc3f0751d8e", + "start": { + "$date": "2022-07-22T03:04:45.000Z" + }, + "end": { + "$date": "2022-07-22T03:26:45.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4fa11371-82b3-437d-9a4b-f380e08ddaa5", + "start": { + "$date": "2022-07-22T03:26:45.000Z" + }, + "end": { + "$date": "2022-07-22T03:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a6387561-95f2-4fd5-9eae-4519a7e5811a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-22T00:41:15.000Z" + }, + "end": { + "$date": "2022-07-22T07:15:12.000Z" + }, + "events": [ + { + "uuid": "e022f5ba-8fa2-4d5a-9eb1-06ead7880c2a", + "start": { + "$date": "2022-07-22T00:41:15.000Z" + }, + "end": { + "$date": "2022-07-22T01:30:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1dc405d2-b1e1-482c-ac56-bcb134bc65cb", + "start": { + "$date": "2022-07-22T01:30:15.000Z" + }, + "end": { + "$date": "2022-07-22T01:34:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "984358d8-fca3-44c5-b400-87ef5630cc9d", + "start": { + "$date": "2022-07-22T01:34:15.000Z" + }, + "end": { + "$date": "2022-07-22T07:15:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "406eac1b-d53f-4d7c-b976-27da800ae6d4", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-22T01:22:24.000Z" + }, + "end": { + "$date": "2022-07-22T04:16:06.000Z" + }, + "events": [ + { + "uuid": "3b896bc5-f87f-48bb-ade6-5a161a90d619", + "start": { + "$date": "2022-07-22T01:22:24.000Z" + }, + "end": { + "$date": "2022-07-22T04:16:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "a5ffbfcd-3d0f-48b5-8251-a8e5c8d63fda", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-22T01:57:45.000Z" + }, + "end": { + "$date": "2022-07-22T02:52:21.000Z" + }, + "events": [ + { + "uuid": "0fe1bc08-300a-4499-8f41-02f95bd66dfe", + "start": { + "$date": "2022-07-22T01:57:45.000Z" + }, + "end": { + "$date": "2022-07-22T02:52:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6dda40f2-9713-4a7c-9cfe-e59cea7aee6c", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-22T02:23:40.000Z" + }, + "end": { + "$date": "2022-07-22T04:16:26.000Z" + }, + "events": [ + { + "uuid": "ce956eb6-5fd9-4eec-8f65-1c5944a37a53", + "start": { + "$date": "2022-07-22T02:23:40.000Z" + }, + "end": { + "$date": "2022-07-22T04:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "09c7880f-2bb4-4800-ac76-630dcf59170f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T02:57:29.000Z" + }, + "end": { + "$date": "2022-07-22T03:18:37.000Z" + }, + "events": [ + { + "uuid": "7d1d0e4d-4560-41e2-abd7-5b7bc94435b4", + "start": { + "$date": "2022-07-22T02:57:29.000Z" + }, + "end": { + "$date": "2022-07-22T03:18:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "498a7c86-7896-450a-94f7-38b92e26def9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-22T03:06:19.000Z" + }, + "end": { + "$date": "2022-07-22T04:24:56.000Z" + }, + "events": [ + { + "uuid": "5744ad78-c6bd-41fd-b84d-65996b27ba78", + "start": { + "$date": "2022-07-22T03:06:19.000Z" + }, + "end": { + "$date": "2022-07-22T04:24:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "f3cc1c81-afbe-491f-bab9-97a6b6cded05", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-22T03:18:32.000Z" + }, + "end": { + "$date": "2022-07-22T04:35:34.000Z" + }, + "events": [ + { + "uuid": "4f45243d-d0df-48e1-af76-6218b5adaad0", + "start": { + "$date": "2022-07-22T03:18:32.000Z" + }, + "end": { + "$date": "2022-07-22T04:35:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "9b37c6f7-6a99-44ac-8022-297fa5ee2e79", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T03:18:51.000Z" + }, + "end": { + "$date": "2022-07-22T04:36:23.000Z" + }, + "events": [ + { + "uuid": "ee77aaf0-130d-475c-9d1b-6f0748c0cf24", + "start": { + "$date": "2022-07-22T03:18:51.000Z" + }, + "end": { + "$date": "2022-07-22T04:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c876ab7d-273e-4224-9086-363034f0e8c0", + "uuid": "b27ca7c6-d82f-4ab6-8164-ddfbfd302015", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-22T03:23:39.000Z" + }, + "end": { + "$date": "2022-07-22T04:25:01.000Z" + }, + "events": [ + { + "uuid": "21868a2d-b636-4e99-8da5-710c285d1752", + "start": { + "$date": "2022-07-22T03:23:39.000Z" + }, + "end": { + "$date": "2022-07-22T04:25:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", + "uuid": "d556aea9-271c-4807-ac41-b9dd5adfc025", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-22T04:05:17.000Z" + }, + "end": { + "$date": "2022-07-22T05:02:27.000Z" + }, + "events": [ + { + "uuid": "f972a25b-a2d0-489b-a778-2cc48691a544", + "start": { + "$date": "2022-07-22T04:05:17.000Z" + }, + "end": { + "$date": "2022-07-22T05:02:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "1491a29f-9478-4175-afe0-b87d6ee9cc42", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-22T04:26:43.000Z" + }, + "end": { + "$date": "2022-07-22T05:49:49.000Z" + }, + "events": [ + { + "uuid": "1156fa80-c7b5-4189-a926-b41be43dd60e", + "start": { + "$date": "2022-07-22T04:26:43.000Z" + }, + "end": { + "$date": "2022-07-22T05:49:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "33c2e292-5028-43f6-85e7-8e48967b239c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T05:02:16.000Z" + }, + "end": { + "$date": "2022-07-22T07:26:11.000Z" + }, + "events": [ + { + "uuid": "ed7bc81e-12e7-4505-8f16-76374ef71979", + "start": { + "$date": "2022-07-22T05:02:16.000Z" + }, + "end": { + "$date": "2022-07-22T07:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "01291738-9655-4c0d-a5ed-5d359470d7e6", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-22T05:09:41.000Z" + }, + "end": { + "$date": "2022-07-22T06:15:29.000Z" + }, + "events": [ + { + "uuid": "ef313f2d-4659-40e8-b1f5-d0bd4eb00698", + "start": { + "$date": "2022-07-22T05:09:41.000Z" + }, + "end": { + "$date": "2022-07-22T06:15:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "fdbba47d-969a-44b3-beb3-bc93a1fda925", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-22T07:41:06.000Z" + }, + "end": { + "$date": "2022-07-22T08:03:15.000Z" + }, + "events": [ + { + "uuid": "e9a64487-adcf-4763-8c53-bc72d0e6cf43", + "start": { + "$date": "2022-07-22T07:41:06.000Z" + }, + "end": { + "$date": "2022-07-22T08:03:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "49d0aac6-f7c4-44a3-bec7-9f6d5299eaf9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-22T14:03:27.000Z" + }, + "end": { + "$date": "2022-07-22T14:18:34.000Z" + }, + "events": [ + { + "uuid": "9687c16c-1874-483c-afed-b8a1e1a3e11a", + "start": { + "$date": "2022-07-22T14:03:27.000Z" + }, + "end": { + "$date": "2022-07-22T14:18:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "58f54f99-1a86-43a1-895a-6e985744b58a", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T16:15:01.000Z" + }, + "end": { + "$date": "2022-07-22T16:42:44.000Z" + }, + "events": [ + { + "uuid": "6ecf64d0-0fb4-4e94-bbfd-23a6e6455938", + "start": { + "$date": "2022-07-22T16:15:01.000Z" + }, + "end": { + "$date": "2022-07-22T16:42:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "7b338349-758d-4e49-b3e7-94383f19a1d7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-22T16:32:40.000Z" + }, + "end": { + "$date": "2022-07-23T23:43:58.000Z" + }, + "events": [ + { + "uuid": "a70a9a01-e218-44a7-a2f2-a985070366d9", + "start": { + "$date": "2022-07-22T16:32:40.000Z" + }, + "end": { + "$date": "2022-07-23T09:37:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "1dfccfe3-eecd-4da0-908a-4bffe474d455", + "start": { + "$date": "2022-07-23T09:37:40.000Z" + }, + "end": { + "$date": "2022-07-23T09:42:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "029cea9d-5c18-4fbc-babe-2481adadbbc6", + "start": { + "$date": "2022-07-23T09:42:40.000Z" + }, + "end": { + "$date": "2022-07-23T09:52:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5b4f034c-0760-4f25-9ec8-cad86cb4cfc3", + "start": { + "$date": "2022-07-23T09:52:40.000Z" + }, + "end": { + "$date": "2022-07-23T14:39:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "6b972de1-2b7d-4a3b-bab7-4bcca8abfddd", + "start": { + "$date": "2022-07-23T14:39:40.000Z" + }, + "end": { + "$date": "2022-07-23T14:49:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cae59f73-0a86-4c17-86e3-781c9f0ae932", + "start": { + "$date": "2022-07-23T14:49:40.000Z" + }, + "end": { + "$date": "2022-07-23T14:50:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f25582c5-d3ed-4993-a660-bcb883b75598", + "start": { + "$date": "2022-07-23T14:50:40.000Z" + }, + "end": { + "$date": "2022-07-23T15:06:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5924498f-d10e-49f9-959a-186eca041fe1", + "start": { + "$date": "2022-07-23T15:06:40.000Z" + }, + "end": { + "$date": "2022-07-23T15:08:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "d6dc33db-9f3d-409d-ad0b-4186bcaf96a0", + "start": { + "$date": "2022-07-23T15:08:40.000Z" + }, + "end": { + "$date": "2022-07-23T19:14:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b45e2bc0-3061-4f38-8f9a-eac82d8d1afb", + "start": { + "$date": "2022-07-23T19:14:40.000Z" + }, + "end": { + "$date": "2022-07-23T19:27:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a8cb1dda-406f-4717-b9a2-27d3f7971f89", + "start": { + "$date": "2022-07-23T19:27:40.000Z" + }, + "end": { + "$date": "2022-07-23T19:39:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8f7aa5f8-5184-4828-906e-833e46d4d62c", + "start": { + "$date": "2022-07-23T19:39:40.000Z" + }, + "end": { + "$date": "2022-07-23T20:16:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c1c1155a-8c14-4436-9415-3467fc559669", + "start": { + "$date": "2022-07-23T20:16:40.000Z" + }, + "end": { + "$date": "2022-07-23T20:27:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0b6b3a64-040d-4100-beaf-31ceebbe20c4", + "start": { + "$date": "2022-07-23T20:27:40.000Z" + }, + "end": { + "$date": "2022-07-23T20:58:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b6314c11-a45c-411d-aa16-3271e4692f75", + "start": { + "$date": "2022-07-23T20:58:40.000Z" + }, + "end": { + "$date": "2022-07-23T21:15:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "74108a64-d8af-4493-a7ba-ac3ffa15c5e5", + "start": { + "$date": "2022-07-23T21:15:40.000Z" + }, + "end": { + "$date": "2022-07-23T21:55:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7175024b-0152-46e4-bc13-34d25029420d", + "start": { + "$date": "2022-07-23T21:55:40.000Z" + }, + "end": { + "$date": "2022-07-23T22:05:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "cd3863e6-428b-4748-99a8-aae7381d3cb1", + "start": { + "$date": "2022-07-23T22:05:40.000Z" + }, + "end": { + "$date": "2022-07-23T22:22:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f838caee-2339-403d-b0ae-d7837386ae20", + "start": { + "$date": "2022-07-23T22:22:40.000Z" + }, + "end": { + "$date": "2022-07-23T22:32:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ee6893dd-f961-46bc-9b96-56e2c6b48451", + "start": { + "$date": "2022-07-23T22:32:40.000Z" + }, + "end": { + "$date": "2022-07-23T23:04:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "099c0a9f-3831-4543-a158-e50832203770", + "start": { + "$date": "2022-07-23T23:04:40.000Z" + }, + "end": { + "$date": "2022-07-23T23:14:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b439e923-145f-4dec-b1ac-21bbc195644a", + "start": { + "$date": "2022-07-23T23:14:40.000Z" + }, + "end": { + "$date": "2022-07-23T23:43:58.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "46c4e9be-faf7-4805-8241-6bf54fe433c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T17:27:43.000Z" + }, + "end": { + "$date": "2022-07-22T17:30:17.000Z" + }, + "events": [ + { + "uuid": "c71fdd21-0ead-488a-87bd-fe88f8dcd4ea", + "start": { + "$date": "2022-07-22T17:27:43.000Z" + }, + "end": { + "$date": "2022-07-22T17:30:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1baf5f34-bc72-4e56-ab3d-7a9520bcef86", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-22T19:34:07.000Z" + }, + "end": { + "$date": "2022-07-22T20:02:30.000Z" + }, + "events": [ + { + "uuid": "11e6ce52-d079-4e28-9105-48d2c95d4417", + "start": { + "$date": "2022-07-22T19:34:07.000Z" + }, + "end": { + "$date": "2022-07-22T20:02:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "5aae76e7-ea06-4c70-ad0e-bf36cb9b5b9c", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-22T20:08:29.000Z" + }, + "end": { + "$date": "2022-07-22T20:52:52.000Z" + }, + "events": [ + { + "uuid": "36490c6e-fcc2-40ce-9e57-82ad1c453ee5", + "start": { + "$date": "2022-07-22T20:08:29.000Z" + }, + "end": { + "$date": "2022-07-22T20:52:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "f4153324-3c3d-466c-ba1f-ae29b347a509", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T20:28:56.000Z" + }, + "end": { + "$date": "2022-07-22T21:08:12.000Z" + }, + "events": [ + { + "uuid": "48a42660-9e69-4671-b560-ee84805803c7", + "start": { + "$date": "2022-07-22T20:28:56.000Z" + }, + "end": { + "$date": "2022-07-22T21:08:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "b74fb26b-4b15-4653-a849-49280ea3a226", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-22T21:10:07.000Z" + }, + "end": { + "$date": "2022-07-22T23:59:26.000Z" + }, + "events": [ + { + "uuid": "43faa914-803b-4e8e-b8a7-4af6777f47dd", + "start": { + "$date": "2022-07-22T21:10:07.000Z" + }, + "end": { + "$date": "2022-07-22T23:59:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "426f74e1-c79d-4e80-9c5e-9e684c7fd4ae", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-22T22:21:35.000Z" + }, + "end": { + "$date": "2022-07-22T23:22:00.000Z" + }, + "events": [ + { + "uuid": "f4f146c6-7395-4513-92cf-2b4fe3b017ac", + "start": { + "$date": "2022-07-22T22:21:35.000Z" + }, + "end": { + "$date": "2022-07-22T23:22:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e90326f-c031-47de-a81f-077fc442aa5b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-22T23:29:51.000Z" + }, + "end": { + "$date": "2022-07-23T00:07:21.000Z" + }, + "events": [ + { + "uuid": "100f0f76-71f4-44fd-9d76-a97342934a48", + "start": { + "$date": "2022-07-22T23:29:51.000Z" + }, + "end": { + "$date": "2022-07-23T00:07:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "4d99b687-106b-4314-865a-89863ac5b2d7", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-22T23:59:42.000Z" + }, + "end": { + "$date": "2022-07-23T01:15:27.000Z" + }, + "events": [ + { + "uuid": "f989990a-310d-4a5e-b6d1-487b613514d1", + "start": { + "$date": "2022-07-22T23:59:42.000Z" + }, + "end": { + "$date": "2022-07-23T00:55:42.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "060b6d4d-323b-42bb-b56f-48ab83ba9db6", + "start": { + "$date": "2022-07-23T00:55:42.000Z" + }, + "end": { + "$date": "2022-07-23T01:15:27.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "012b8834-f46b-4b6f-87e6-29cb9449e08e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T00:10:40.000Z" + }, + "end": { + "$date": "2022-07-23T00:32:30.000Z" + }, + "events": [ + { + "uuid": "a8a6257d-782d-49fa-9302-0e12e7451f20", + "start": { + "$date": "2022-07-23T00:10:40.000Z" + }, + "end": { + "$date": "2022-07-23T00:32:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "79474215-b2bc-4850-97b7-54686d7031d5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T00:40:25.000Z" + }, + "end": { + "$date": "2022-07-23T01:11:50.000Z" + }, + "events": [ + { + "uuid": "51995461-fb8b-4974-a120-84fdc32fa1eb", + "start": { + "$date": "2022-07-23T00:40:25.000Z" + }, + "end": { + "$date": "2022-07-23T01:11:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "66ecf597-6f2a-429e-a672-86d659bf5227", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T01:13:24.000Z" + }, + "end": { + "$date": "2022-07-23T01:48:42.000Z" + }, + "events": [ + { + "uuid": "4367acf1-9518-4200-8a49-83eacfcd528e", + "start": { + "$date": "2022-07-23T01:13:24.000Z" + }, + "end": { + "$date": "2022-07-23T01:48:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "49644a7e-39d5-4508-ba81-ee42606bd32a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T01:34:59.000Z" + }, + "end": { + "$date": "2022-07-23T01:47:44.000Z" + }, + "events": [ + { + "uuid": "763e2cac-330f-4017-b6b9-fe7c18c8e84f", + "start": { + "$date": "2022-07-23T01:34:59.000Z" + }, + "end": { + "$date": "2022-07-23T01:47:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "bc5a1406-4ae6-4de2-aab1-dec70a6527fe", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T02:18:45.000Z" + }, + "end": { + "$date": "2022-07-23T02:55:45.000Z" + }, + "events": [ + { + "uuid": "16b7d0a5-e398-4f63-8d2b-6e6c65be6aee", + "start": { + "$date": "2022-07-23T02:18:45.000Z" + }, + "end": { + "$date": "2022-07-23T02:55:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "74e3190d-c2fc-48ad-ad03-291e9a733962", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T02:35:51.000Z" + }, + "end": { + "$date": "2022-07-23T02:40:15.000Z" + }, + "events": [ + { + "uuid": "9b88ca53-3fbf-4c95-8c36-6c8160f7b81c", + "start": { + "$date": "2022-07-23T02:35:51.000Z" + }, + "end": { + "$date": "2022-07-23T02:40:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "48ed3cef-ac82-4469-8e1b-3d2b4723a310", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T02:56:03.000Z" + }, + "end": { + "$date": "2022-07-23T04:22:41.000Z" + }, + "events": [ + { + "uuid": "b547d764-cd9c-464b-8633-a7d67194031b", + "start": { + "$date": "2022-07-23T02:56:03.000Z" + }, + "end": { + "$date": "2022-07-23T04:22:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "1c17dd52-f703-49b0-b34f-a6b54151d89e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T02:57:00.000Z" + }, + "end": { + "$date": "2022-07-23T04:20:53.000Z" + }, + "events": [ + { + "uuid": "1a941f2b-b344-4cd8-ae01-ba2de69fcbe4", + "start": { + "$date": "2022-07-23T02:57:00.000Z" + }, + "end": { + "$date": "2022-07-23T04:20:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "69f406ff-abe1-4c82-acf8-1b42ca81ddf7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T02:58:07.000Z" + }, + "end": { + "$date": "2022-07-23T03:11:57.000Z" + }, + "events": [ + { + "uuid": "97e51360-2c03-4392-bf88-42d9a56d1d86", + "start": { + "$date": "2022-07-23T02:58:07.000Z" + }, + "end": { + "$date": "2022-07-23T03:11:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "4c51b9e1-2a74-43a2-819a-1cff540c70dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T03:12:12.000Z" + }, + "end": { + "$date": "2022-07-23T04:20:55.000Z" + }, + "events": [ + { + "uuid": "baecd4cf-6b56-438f-9e47-7be32132ee4b", + "start": { + "$date": "2022-07-23T03:12:12.000Z" + }, + "end": { + "$date": "2022-07-23T04:20:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "e2b3734d-0046-4fb7-b0ba-26b501c34bff", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-23T03:29:50.000Z" + }, + "end": { + "$date": "2022-07-23T06:08:23.000Z" + }, + "events": [ + { + "uuid": "01fa83e5-3d0f-46c8-8f8b-ad6dd10ca6ae", + "start": { + "$date": "2022-07-23T03:29:50.000Z" + }, + "end": { + "$date": "2022-07-23T06:08:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "670c9d89-5bd3-405d-99c8-75afe78b2475", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-23T03:39:40.000Z" + }, + "end": { + "$date": "2022-07-23T03:41:46.000Z" + }, + "events": [ + { + "uuid": "67d6fde7-c1ff-409d-af8b-fe44617929a3", + "start": { + "$date": "2022-07-23T03:39:40.000Z" + }, + "end": { + "$date": "2022-07-23T03:41:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "014f3bf9-1dde-4e47-b4d3-f8db16915120", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-23T03:42:15.000Z" + }, + "end": { + "$date": "2022-07-23T06:08:27.000Z" + }, + "events": [ + { + "uuid": "b34de223-3b91-46ff-afed-896ca9b60a30", + "start": { + "$date": "2022-07-23T03:42:15.000Z" + }, + "end": { + "$date": "2022-07-23T06:08:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "027cabdb-f1d1-4399-8548-cab47d25f23a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-23T04:02:53.000Z" + }, + "end": { + "$date": "2022-07-23T06:23:47.000Z" + }, + "events": [ + { + "uuid": "5d1e17ca-9990-4978-be9b-5fb8ff4d100e", + "start": { + "$date": "2022-07-23T04:02:53.000Z" + }, + "end": { + "$date": "2022-07-23T06:23:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "c6250432-dc99-4ca4-96e4-d4375a815360", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T04:23:07.000Z" + }, + "end": { + "$date": "2022-07-23T05:17:53.000Z" + }, + "events": [ + { + "uuid": "d29fd51b-51dc-47de-9ef5-942d070a12b6", + "start": { + "$date": "2022-07-23T04:23:07.000Z" + }, + "end": { + "$date": "2022-07-23T05:17:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "5bb5b906-74f8-4b89-9269-14e5898b522c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T04:23:19.000Z" + }, + "end": { + "$date": "2022-07-23T04:25:24.000Z" + }, + "events": [ + { + "uuid": "a190ad3e-3072-469f-b0cd-b8b452582b50", + "start": { + "$date": "2022-07-23T04:23:19.000Z" + }, + "end": { + "$date": "2022-07-23T04:25:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "baeee821-ffd5-4c45-b712-fe05295b88f8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T04:25:50.000Z" + }, + "end": { + "$date": "2022-07-23T05:18:06.000Z" + }, + "events": [ + { + "uuid": "1c6686d1-ccb2-4913-8b3a-7e4a8cd0465f", + "start": { + "$date": "2022-07-23T04:25:50.000Z" + }, + "end": { + "$date": "2022-07-23T05:18:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "95e747a5-4e2f-4482-9705-ebbdced9f569", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T04:28:30.000Z" + }, + "end": { + "$date": "2022-07-23T04:52:31.000Z" + }, + "events": [ + { + "uuid": "1ae1220b-4f40-4b43-8eb1-943be5d026dc", + "start": { + "$date": "2022-07-23T04:28:30.000Z" + }, + "end": { + "$date": "2022-07-23T04:52:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9c6fd030-a0c8-4d3b-be1a-e44e3db02675", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-23T04:41:17.000Z" + }, + "end": { + "$date": "2022-07-23T04:43:12.000Z" + }, + "events": [ + { + "uuid": "751918fd-6bbb-4a35-afef-ccf0ed13a5b9", + "start": { + "$date": "2022-07-23T04:41:17.000Z" + }, + "end": { + "$date": "2022-07-23T04:43:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "304576df-e51f-4122-a19b-7cc6411de002", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-23T04:43:38.000Z" + }, + "end": { + "$date": "2022-07-23T06:08:31.000Z" + }, + "events": [ + { + "uuid": "f9aefb59-92d1-47b0-a487-444a0d6b539c", + "start": { + "$date": "2022-07-23T04:43:38.000Z" + }, + "end": { + "$date": "2022-07-23T06:08:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "16dd9e8a-16cb-4db4-a7bf-96d095cc03c6", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T05:19:36.000Z" + }, + "end": { + "$date": "2022-07-23T05:31:46.000Z" + }, + "events": [ + { + "uuid": "ade2bbea-57fc-4a9f-a041-f9b77518dafa", + "start": { + "$date": "2022-07-23T05:19:36.000Z" + }, + "end": { + "$date": "2022-07-23T05:31:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6c58c0a-95bd-46bf-a6e0-b150f9bd87d4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T05:35:55.000Z" + }, + "end": { + "$date": "2022-07-23T06:16:04.000Z" + }, + "events": [ + { + "uuid": "aa60ea58-004d-4672-97e6-86bc35bfd5c9", + "start": { + "$date": "2022-07-23T05:35:55.000Z" + }, + "end": { + "$date": "2022-07-23T06:16:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "c76d35fe-787d-4fb8-b368-35f3f467ac45", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T05:36:40.000Z" + }, + "end": { + "$date": "2022-07-23T05:58:33.000Z" + }, + "events": [ + { + "uuid": "d533808f-a1f3-4743-bb88-e4136f694e33", + "start": { + "$date": "2022-07-23T05:36:40.000Z" + }, + "end": { + "$date": "2022-07-23T05:58:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "16a00b54-130d-497c-b759-b79969fe41cd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-23T05:40:33.000Z" + }, + "end": { + "$date": "2022-07-23T06:56:21.000Z" + }, + "events": [ + { + "uuid": "10a14d2c-4669-491e-a8dd-18fbc0d0fd4e", + "start": { + "$date": "2022-07-23T05:40:33.000Z" + }, + "end": { + "$date": "2022-07-23T06:56:21.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "591433d5-e886-4601-a9c2-d698a8022687", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T05:46:40.000Z" + }, + "end": { + "$date": "2022-07-23T13:48:50.000Z" + }, + "events": [ + { + "uuid": "e88b72c3-7393-4a4f-8f83-7f556db23730", + "start": { + "$date": "2022-07-23T05:46:40.000Z" + }, + "end": { + "$date": "2022-07-23T08:01:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c716d3bd-8b3d-4efc-88c7-fb25da23682f", + "start": { + "$date": "2022-07-23T08:01:40.000Z" + }, + "end": { + "$date": "2022-07-23T08:06:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "b28ca4de-cf8d-4195-83e5-d29c753ac92a", + "start": { + "$date": "2022-07-23T08:06:40.000Z" + }, + "end": { + "$date": "2022-07-23T08:16:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "50e1e576-c300-4530-b42c-26c41300f203", + "start": { + "$date": "2022-07-23T08:16:40.000Z" + }, + "end": { + "$date": "2022-07-23T13:16:40.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c637640c-5e8a-4125-b05a-26f3a49c6cd8", + "start": { + "$date": "2022-07-23T13:16:40.000Z" + }, + "end": { + "$date": "2022-07-23T13:26:40.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "c856061e-9047-4a2e-bd14-4d3e5b2d908a", + "start": { + "$date": "2022-07-23T13:26:40.000Z" + }, + "end": { + "$date": "2022-07-23T13:48:50.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "fbbf0f9c-7d3a-45d9-9639-0aa9c44e2a2e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T05:46:48.000Z" + }, + "end": { + "$date": "2022-07-23T08:36:15.000Z" + }, + "events": [ + { + "uuid": "f9bf0ad4-3c3d-4b52-90ef-d55b5d648899", + "start": { + "$date": "2022-07-23T05:46:48.000Z" + }, + "end": { + "$date": "2022-07-23T08:36:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "3fbe56c7-6fb3-4692-97d8-976567d3342b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T06:00:50.000Z" + }, + "end": { + "$date": "2022-07-23T08:38:30.000Z" + }, + "events": [ + { + "uuid": "d89a7f69-6287-4e5e-b775-1e8d0e38fa3c", + "start": { + "$date": "2022-07-23T06:00:50.000Z" + }, + "end": { + "$date": "2022-07-23T08:38:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "304f4bd6-11a8-49f5-9289-3ad0f85ace8e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T06:17:45.000Z" + }, + "end": { + "$date": "2022-07-23T06:53:41.000Z" + }, + "events": [ + { + "uuid": "53e92365-552f-4722-a14d-f83cea51b511", + "start": { + "$date": "2022-07-23T06:17:45.000Z" + }, + "end": { + "$date": "2022-07-23T06:53:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "f1042f73-519f-44c4-9788-b091b7097818", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-23T06:23:56.000Z" + }, + "end": { + "$date": "2022-07-23T07:26:21.000Z" + }, + "events": [ + { + "uuid": "64571750-11fd-41de-ac01-ee74d13ae619", + "start": { + "$date": "2022-07-23T06:23:56.000Z" + }, + "end": { + "$date": "2022-07-23T07:26:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32178b7f-3293-435d-8397-878aaa164ee6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T06:55:29.000Z" + }, + "end": { + "$date": "2022-07-23T07:32:27.000Z" + }, + "events": [ + { + "uuid": "6054db79-0663-4524-a4ca-1ac07cdba21e", + "start": { + "$date": "2022-07-23T06:55:29.000Z" + }, + "end": { + "$date": "2022-07-23T07:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "afd253e9-0d12-46a2-9502-ad220e71473b", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-23T06:56:46.000Z" + }, + "end": { + "$date": "2022-07-23T09:30:24.000Z" + }, + "events": [ + { + "uuid": "7a636b8b-22da-47b9-a445-128451c76726", + "start": { + "$date": "2022-07-23T06:56:46.000Z" + }, + "end": { + "$date": "2022-07-23T09:30:24.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "cc99bc68-e058-43b4-b97c-ecc7bdc9ec61", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T07:33:02.000Z" + }, + "end": { + "$date": "2022-07-23T08:42:38.000Z" + }, + "events": [ + { + "uuid": "81efa881-d03f-4cdf-ac94-4c9c019e0975", + "start": { + "$date": "2022-07-23T07:33:02.000Z" + }, + "end": { + "$date": "2022-07-23T08:42:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "d673fe21-9c94-4f84-aec6-dd1d143e5cb0", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-23T10:32:18.000Z" + }, + "end": { + "$date": "2022-07-23T10:32:22.000Z" + }, + "events": [ + { + "uuid": "1e996719-64de-4ffd-8be8-879815796613", + "start": { + "$date": "2022-07-23T10:32:18.000Z" + }, + "end": { + "$date": "2022-07-23T10:32:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "259d1da5-0598-44d6-a9b6-7e0d4a302118", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T13:12:38.000Z" + }, + "end": { + "$date": "2022-07-23T13:18:52.000Z" + }, + "events": [ + { + "uuid": "6c3e5ffb-4d79-4281-859b-e866516c6925", + "start": { + "$date": "2022-07-23T13:12:38.000Z" + }, + "end": { + "$date": "2022-07-23T13:18:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "2895f2ec-2332-408f-a871-502d86e70bda", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T14:38:40.000Z" + }, + "end": { + "$date": "2022-07-23T14:44:14.000Z" + }, + "events": [ + { + "uuid": "a84b281d-8a50-4931-af98-c2192fbbdf66", + "start": { + "$date": "2022-07-23T14:38:40.000Z" + }, + "end": { + "$date": "2022-07-23T14:44:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", + "uuid": "8fc337f8-1ce0-452d-a2e5-c5e0c7fdc196", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T15:52:59.000Z" + }, + "end": { + "$date": "2022-07-23T16:15:00.000Z" + }, + "events": [ + { + "uuid": "d625b5aa-30b5-4d77-aca1-ec64e316c0b6", + "start": { + "$date": "2022-07-23T15:52:59.000Z" + }, + "end": { + "$date": "2022-07-23T16:15:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "5d6167e3-3edd-4733-958c-e6b8df80a33d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T16:42:32.000Z" + }, + "end": { + "$date": "2022-07-23T17:11:34.000Z" + }, + "events": [ + { + "uuid": "d27194eb-eb26-41ef-9354-a22379bb6dd9", + "start": { + "$date": "2022-07-23T16:42:32.000Z" + }, + "end": { + "$date": "2022-07-23T17:11:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "d1a0c15c-7791-455f-926d-e509bbe8c935", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T17:11:54.000Z" + }, + "end": { + "$date": "2022-07-23T17:25:50.000Z" + }, + "events": [ + { + "uuid": "72d1a904-8301-4edc-8d0a-588b6ccf68a2", + "start": { + "$date": "2022-07-23T17:11:54.000Z" + }, + "end": { + "$date": "2022-07-23T17:25:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "72a5bc11-5b09-4612-88ef-bfa45b54bb39", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T17:39:11.000Z" + }, + "end": { + "$date": "2022-07-23T19:04:24.000Z" + }, + "events": [ + { + "uuid": "9030bb1d-5316-4108-b979-36d3cfb9770e", + "start": { + "$date": "2022-07-23T17:39:11.000Z" + }, + "end": { + "$date": "2022-07-23T17:50:11.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9a5c4dad-d1f9-49cd-9b60-9d733e55692e", + "start": { + "$date": "2022-07-23T17:50:11.000Z" + }, + "end": { + "$date": "2022-07-23T17:51:11.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "41896331-fb63-4671-9164-bed15598fe70", + "start": { + "$date": "2022-07-23T17:51:11.000Z" + }, + "end": { + "$date": "2022-07-23T19:04:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "8449f7b9-cb78-49d0-adeb-7728d2b8426d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T19:26:11.000Z" + }, + "end": { + "$date": "2022-07-23T19:33:27.000Z" + }, + "events": [ + { + "uuid": "80c3ff16-f522-4fd6-8d61-3012b7bd85c3", + "start": { + "$date": "2022-07-23T19:26:11.000Z" + }, + "end": { + "$date": "2022-07-23T19:33:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d4c1c1e6-1135-46f1-b413-bd23d2e0005c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T19:31:47.000Z" + }, + "end": { + "$date": "2022-07-23T20:29:05.000Z" + }, + "events": [ + { + "uuid": "aff36f93-829e-4d21-90fb-2957462bd979", + "start": { + "$date": "2022-07-23T19:31:47.000Z" + }, + "end": { + "$date": "2022-07-23T20:29:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "98285237-bc32-4bca-92b1-f7e755136541", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T19:33:36.000Z" + }, + "end": { + "$date": "2022-07-23T20:29:02.000Z" + }, + "events": [ + { + "uuid": "695584e7-aaf8-406e-b696-44eae4ac5ce5", + "start": { + "$date": "2022-07-23T19:33:36.000Z" + }, + "end": { + "$date": "2022-07-23T20:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "cbe282b2-ec80-41ba-ac17-c7d79a5dcae1", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T19:41:02.000Z" + }, + "end": { + "$date": "2022-07-23T20:58:37.000Z" + }, + "events": [ + { + "uuid": "1e41df8d-3602-4c88-91f1-c5a613f9f524", + "start": { + "$date": "2022-07-23T19:41:02.000Z" + }, + "end": { + "$date": "2022-07-23T20:58:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "d72107cf-e5c5-47eb-8e6c-7fcd75a715c8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-23T20:29:07.000Z" + }, + "end": { + "$date": "2022-07-23T21:07:43.000Z" + }, + "events": [ + { + "uuid": "4360c3eb-3115-442f-b458-46ee67815351", + "start": { + "$date": "2022-07-23T20:29:07.000Z" + }, + "end": { + "$date": "2022-07-23T21:07:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "62c2ce71-c29c-4049-89e0-7a511701fb4c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-23T20:29:09.000Z" + }, + "end": { + "$date": "2022-07-23T22:00:23.000Z" + }, + "events": [ + { + "uuid": "038d8d43-967b-4ac4-bf86-283b96fb9df4", + "start": { + "$date": "2022-07-23T20:29:09.000Z" + }, + "end": { + "$date": "2022-07-23T21:16:09.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "faec7aef-bc0b-440e-9d1e-beb4a3d91faf", + "start": { + "$date": "2022-07-23T21:16:09.000Z" + }, + "end": { + "$date": "2022-07-23T21:21:09.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "36e758fd-0a0e-46b7-8bee-078f0d80c3a9", + "start": { + "$date": "2022-07-23T21:21:09.000Z" + }, + "end": { + "$date": "2022-07-23T22:00:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "ebda77e0-d280-4df5-bc7f-8ed2245a27b3", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-23T21:05:35.000Z" + }, + "end": { + "$date": "2022-07-23T21:11:15.000Z" + }, + "events": [ + { + "uuid": "618e4000-51ad-45f2-b250-77e7665c7a4f", + "start": { + "$date": "2022-07-23T21:05:35.000Z" + }, + "end": { + "$date": "2022-07-23T21:11:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "a6a3fe7f-c49b-4edd-bfc2-30c62a089749", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-23T21:43:54.000Z" + }, + "end": { + "$date": "2022-07-23T22:58:18.000Z" + }, + "events": [ + { + "uuid": "fee80e22-ea90-47e9-9d03-b447ddc82680", + "start": { + "$date": "2022-07-23T21:43:54.000Z" + }, + "end": { + "$date": "2022-07-23T22:58:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "2cc923d2-7693-4393-b6e9-f4e0f828ae39", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-23T21:55:28.000Z" + }, + "end": { + "$date": "2022-07-23T23:10:45.000Z" + }, + "events": [ + { + "uuid": "0bcd724e-a3b2-492a-9150-5d594f6fd961", + "start": { + "$date": "2022-07-23T21:55:28.000Z" + }, + "end": { + "$date": "2022-07-23T23:10:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "67fa937d-7078-424d-b091-5f345f1388a9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-23T23:51:26.000Z" + }, + "end": { + "$date": "2022-07-24T00:31:56.000Z" + }, + "events": [ + { + "uuid": "08d77b0f-5314-4fbb-b7d8-8cbd22218346", + "start": { + "$date": "2022-07-23T23:51:26.000Z" + }, + "end": { + "$date": "2022-07-24T00:31:56.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "75e2b5c3-dba2-4e99-a1e8-0f9b8f790e5f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T00:01:24.000Z" + }, + "end": { + "$date": "2022-07-24T00:40:11.000Z" + }, + "events": [ + { + "uuid": "68449983-560e-4219-b628-4d314c4d5885", + "start": { + "$date": "2022-07-24T00:01:24.000Z" + }, + "end": { + "$date": "2022-07-24T00:40:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ad4e2b26-0810-4b93-869f-a85126d78a3c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T00:41:27.000Z" + }, + "end": { + "$date": "2022-07-24T01:16:09.000Z" + }, + "events": [ + { + "uuid": "2288421f-0ac4-4969-9d9a-ed9ede6a5240", + "start": { + "$date": "2022-07-24T00:41:27.000Z" + }, + "end": { + "$date": "2022-07-24T01:16:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2ad75faa-2f73-4209-adc2-0ec9a5b5a9af", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T01:42:03.000Z" + }, + "end": { + "$date": "2022-07-24T02:17:15.000Z" + }, + "events": [ + { + "uuid": "1f00409a-c29a-4348-bf97-4c6d9c79c0c0", + "start": { + "$date": "2022-07-24T01:42:03.000Z" + }, + "end": { + "$date": "2022-07-24T01:43:03.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "4b4f3739-1e75-40a7-ab68-52cc4e533682", + "start": { + "$date": "2022-07-24T01:43:03.000Z" + }, + "end": { + "$date": "2022-07-24T02:17:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "146cbaf7-729a-423d-8190-c36b065210c7", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T02:29:42.000Z" + }, + "end": { + "$date": "2022-07-24T02:52:14.000Z" + }, + "events": [ + { + "uuid": "7ecf9b4e-81ce-4d2d-90f6-9f778b3d0c7f", + "start": { + "$date": "2022-07-24T02:29:42.000Z" + }, + "end": { + "$date": "2022-07-24T02:52:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "738b6dce-8fb4-4a1f-8ac8-85c0589f8607", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-24T02:36:00.000Z" + }, + "end": { + "$date": "2022-07-24T07:27:11.000Z" + }, + "events": [ + { + "uuid": "72cd756f-51fd-409a-8c7f-9c54099c300a", + "start": { + "$date": "2022-07-24T02:36:00.000Z" + }, + "end": { + "$date": "2022-07-24T07:27:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a701afb0-dfa6-42ef-bd10-d8c6fe2a14e1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T02:57:59.000Z" + }, + "end": { + "$date": "2022-07-24T03:15:27.000Z" + }, + "events": [ + { + "uuid": "c777996d-78d6-40d0-adcb-ba697cd5e0ba", + "start": { + "$date": "2022-07-24T02:57:59.000Z" + }, + "end": { + "$date": "2022-07-24T03:15:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "d90be827-9d67-4d00-8d30-542066615810", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-24T03:02:04.000Z" + }, + "end": { + "$date": "2022-07-24T03:07:00.000Z" + }, + "events": [ + { + "uuid": "69204d58-db32-4c7f-96d1-e79cd60d39a0", + "start": { + "$date": "2022-07-24T03:02:04.000Z" + }, + "end": { + "$date": "2022-07-24T03:07:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "287048ed-2355-433e-8840-8ae62bf5b16a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-24T03:07:31.000Z" + }, + "end": { + "$date": "2022-07-24T03:09:33.000Z" + }, + "events": [ + { + "uuid": "80957e82-a2ef-42cb-a3e8-184947bfc90b", + "start": { + "$date": "2022-07-24T03:07:31.000Z" + }, + "end": { + "$date": "2022-07-24T03:09:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "3232ddf5-3f96-4942-87c9-40add182534a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-24T03:12:47.000Z" + }, + "end": { + "$date": "2022-07-24T07:01:51.000Z" + }, + "events": [ + { + "uuid": "5ed35969-5ea6-4292-977a-141a708a1d67", + "start": { + "$date": "2022-07-24T03:12:47.000Z" + }, + "end": { + "$date": "2022-07-24T07:01:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fb2ed1b2-0533-4b77-9fb2-0ccec6ea844c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T03:18:36.000Z" + }, + "end": { + "$date": "2022-07-24T03:51:21.000Z" + }, + "events": [ + { + "uuid": "c048f6ea-7c7a-43fe-adb3-04909f287921", + "start": { + "$date": "2022-07-24T03:18:36.000Z" + }, + "end": { + "$date": "2022-07-24T03:51:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "6097db5e-34d3-46ac-85d6-83e1b117e797", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-24T03:33:06.000Z" + }, + "end": { + "$date": "2022-07-24T06:16:01.000Z" + }, + "events": [ + { + "uuid": "734e532a-6b76-499b-a163-49f8ead7e63b", + "start": { + "$date": "2022-07-24T03:33:06.000Z" + }, + "end": { + "$date": "2022-07-24T06:16:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b25c4122-8d90-4557-b8d6-3c29fdd88d5a", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T03:53:53.000Z" + }, + "end": { + "$date": "2022-07-24T04:19:19.000Z" + }, + "events": [ + { + "uuid": "635e6c40-6b60-4c24-aef2-c1e49161bbde", + "start": { + "$date": "2022-07-24T03:53:53.000Z" + }, + "end": { + "$date": "2022-07-24T04:19:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "76e2d0fb-fb6c-4bde-bed6-9dc0f7e449d6", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-24T04:06:44.000Z" + }, + "end": { + "$date": "2022-07-24T07:04:35.000Z" + }, + "events": [ + { + "uuid": "d4a450d6-b4a0-4354-a96e-72674d7ad8e5", + "start": { + "$date": "2022-07-24T04:06:44.000Z" + }, + "end": { + "$date": "2022-07-24T07:04:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "df49eb13-7a00-4feb-bfd6-ad4fc2bf9da6", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-24T04:07:40.000Z" + }, + "end": { + "$date": "2022-07-24T07:12:58.000Z" + }, + "events": [ + { + "uuid": "c3e5c34e-8975-403c-8c94-dfcd700816a6", + "start": { + "$date": "2022-07-24T04:07:40.000Z" + }, + "end": { + "$date": "2022-07-24T07:12:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5d81af95-c66a-4884-aee2-ddb76cd91bcc", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T04:21:34.000Z" + }, + "end": { + "$date": "2022-07-24T04:50:52.000Z" + }, + "events": [ + { + "uuid": "ba544d66-2475-4f1a-92c0-c5ad2db09616", + "start": { + "$date": "2022-07-24T04:21:34.000Z" + }, + "end": { + "$date": "2022-07-24T04:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f2201048-06e9-4b4e-88b4-86a8babb7701", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T04:53:25.000Z" + }, + "end": { + "$date": "2022-07-24T05:11:48.000Z" + }, + "events": [ + { + "uuid": "3b1eeabf-9d09-4562-9b67-b78559ed1d49", + "start": { + "$date": "2022-07-24T04:53:25.000Z" + }, + "end": { + "$date": "2022-07-24T05:11:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "341eb99c-f5da-4bdb-a7e0-de8e7a90b8a6", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-24T07:03:01.000Z" + }, + "end": { + "$date": "2022-07-24T07:31:12.000Z" + }, + "events": [ + { + "uuid": "4a264d9d-9238-4be8-b712-9ff32006e483", + "start": { + "$date": "2022-07-24T07:03:01.000Z" + }, + "end": { + "$date": "2022-07-24T07:31:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "2e086d09-b237-4ea0-b29d-78a7bfa2e48f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-24T07:33:02.000Z" + }, + "end": { + "$date": "2022-07-24T08:17:12.000Z" + }, + "events": [ + { + "uuid": "b140161d-a615-4c70-af21-2d8cbb34636b", + "start": { + "$date": "2022-07-24T07:33:02.000Z" + }, + "end": { + "$date": "2022-07-24T08:17:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "7f99656a-f116-4d3b-bac0-2276e5a19d1c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-24T15:05:14.000Z" + }, + "end": { + "$date": "2022-07-24T15:29:45.000Z" + }, + "events": [ + { + "uuid": "b15ed8a4-9e50-4c89-b6e3-5b512b124f3e", + "start": { + "$date": "2022-07-24T15:05:14.000Z" + }, + "end": { + "$date": "2022-07-24T15:29:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "698dd77e-a27d-4fc3-9f0a-fc6a07b3a14c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-24T17:30:00.000Z" + }, + "end": { + "$date": "2022-07-24T17:37:50.000Z" + }, + "events": [ + { + "uuid": "f3cc2b78-112e-4ba9-b077-71e388c460a5", + "start": { + "$date": "2022-07-24T17:30:00.000Z" + }, + "end": { + "$date": "2022-07-24T18:24:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "617e625c-6436-4069-9f34-ca5b976195cf", + "start": { + "$date": "2022-07-24T18:24:00.000Z" + }, + "end": { + "$date": "2022-07-24T18:29:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0f0309d8-2f96-46e3-a789-78758c161277", + "start": { + "$date": "2022-07-24T18:29:00.000Z" + }, + "end": { + "$date": "2022-07-24T18:39:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ce50b1eb-fba1-4909-9cb8-9f1cd1ceba1e", + "start": { + "$date": "2022-07-24T18:39:00.000Z" + }, + "end": { + "$date": "2022-07-24T18:46:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "fbc0e66d-0c8f-4cf9-8fc8-15ff44ef1141", + "start": { + "$date": "2022-07-24T18:46:00.000Z" + }, + "end": { + "$date": "2022-07-24T17:37:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "b403883b-08d2-4287-ac18-d58e0f995ac1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-24T17:42:32.000Z" + }, + "end": { + "$date": "2022-07-24T17:47:38.000Z" + }, + "events": [ + { + "uuid": "9fd0caf5-1030-42ea-81dc-46ce21f38dcb", + "start": { + "$date": "2022-07-24T17:42:32.000Z" + }, + "end": { + "$date": "2022-07-24T17:47:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", + "uuid": "62bd0446-715e-448c-98f9-f3916762d26f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-24T17:50:08.000Z" + }, + "end": { + "$date": "2022-07-24T19:04:52.000Z" + }, + "events": [ + { + "uuid": "083e0178-6dc5-4230-ac99-23881e17b508", + "start": { + "$date": "2022-07-24T17:50:08.000Z" + }, + "end": { + "$date": "2022-07-24T19:04:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "fbd10ef0-50da-48b6-8573-3e73af6804eb", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-24T19:06:45.000Z" + }, + "end": { + "$date": "2022-07-24T19:36:10.000Z" + }, + "events": [ + { + "uuid": "ed636a1b-f7db-419b-acbc-8a15ec81f766", + "start": { + "$date": "2022-07-24T19:06:45.000Z" + }, + "end": { + "$date": "2022-07-24T19:36:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "74be76eb-3253-4cc1-ab03-cdc8fca376aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-24T19:17:28.000Z" + }, + "end": { + "$date": "2022-07-24T20:16:26.000Z" + }, + "events": [ + { + "uuid": "a4a240ca-0655-4862-9b74-ea6a3e0b7cdf", + "start": { + "$date": "2022-07-24T19:17:28.000Z" + }, + "end": { + "$date": "2022-07-24T20:16:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "18c36d26-78c2-4e71-b88f-b75d97b8f007", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-24T19:30:15.000Z" + }, + "end": { + "$date": "2022-07-24T23:01:42.000Z" + }, + "events": [ + { + "uuid": "9c6a6394-05c0-4fdd-b48c-1a84421fbea9", + "start": { + "$date": "2022-07-24T19:30:15.000Z" + }, + "end": { + "$date": "2022-07-24T23:01:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "a372096d-827a-4d18-97dd-9dc3bfe7b97b", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-24T19:47:09.000Z" + }, + "end": { + "$date": "2022-07-24T20:25:48.000Z" + }, + "events": [ + { + "uuid": "3ae89245-3f89-444d-86ca-f1784b2a0645", + "start": { + "$date": "2022-07-24T19:47:09.000Z" + }, + "end": { + "$date": "2022-07-24T20:25:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "50577421-407c-4aa0-9566-d399e14eb319", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-24T20:25:56.000Z" + }, + "end": { + "$date": "2022-07-24T22:15:16.000Z" + }, + "events": [ + { + "uuid": "e5d05cdb-1338-4cdd-87f3-b9f6dcf2ad76", + "start": { + "$date": "2022-07-24T20:25:56.000Z" + }, + "end": { + "$date": "2022-07-24T22:15:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "c4c8ec03-fa10-4f1a-8811-f738230a3c0c", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-24T21:07:19.000Z" + }, + "end": { + "$date": "2022-07-24T21:43:09.000Z" + }, + "events": [ + { + "uuid": "78d1a15a-30c6-4bcb-a9f9-f8f76ae7a5b3", + "start": { + "$date": "2022-07-24T21:07:19.000Z" + }, + "end": { + "$date": "2022-07-24T21:43:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "17e4446a-53c8-4ec0-8ef1-263254daf5d2", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-24T21:10:09.000Z" + }, + "end": { + "$date": "2022-07-24T22:47:20.000Z" + }, + "events": [ + { + "uuid": "2562fdf8-112d-4260-a6c2-c01dbd77546d", + "start": { + "$date": "2022-07-24T21:10:09.000Z" + }, + "end": { + "$date": "2022-07-24T22:47:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ffa2eb04-643b-40ae-a0c6-e92598d69d65", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-24T21:18:51.000Z" + }, + "end": { + "$date": "2022-07-24T22:57:06.000Z" + }, + "events": [ + { + "uuid": "ea839bab-7a74-4e73-a63d-550c1938f8e9", + "start": { + "$date": "2022-07-24T21:18:51.000Z" + }, + "end": { + "$date": "2022-07-24T21:41:51.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "795f0e7e-8fcc-4ec3-86ec-5207b0d6eae8", + "start": { + "$date": "2022-07-24T21:41:51.000Z" + }, + "end": { + "$date": "2022-07-24T22:02:51.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5f3c344f-5e98-457d-acec-55a402449faf", + "start": { + "$date": "2022-07-24T22:02:51.000Z" + }, + "end": { + "$date": "2022-07-24T22:57:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7d1c548e-b7a1-4156-8fa1-2222d9d98310", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T21:43:57.000Z" + }, + "end": { + "$date": "2022-07-24T22:48:21.000Z" + }, + "events": [ + { + "uuid": "33b7dd70-ff87-498e-a44a-6c5153647ee2", + "start": { + "$date": "2022-07-24T21:43:57.000Z" + }, + "end": { + "$date": "2022-07-24T22:48:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3ca17c00-8e0f-41fd-896e-320bebf095ac", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-24T22:56:23.000Z" + }, + "end": { + "$date": "2022-07-25T01:08:30.000Z" + }, + "events": [ + { + "uuid": "745085b4-1ff4-4cbd-bd08-2b92d4f0e19c", + "start": { + "$date": "2022-07-24T22:56:23.000Z" + }, + "end": { + "$date": "2022-07-25T00:54:23.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "ed7b1f71-ad87-4a73-82a4-3ad6ef04640d", + "start": { + "$date": "2022-07-25T00:54:23.000Z" + }, + "end": { + "$date": "2022-07-25T00:59:23.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "71006a5c-e68f-47c3-b2f7-77abfc56b9e7", + "start": { + "$date": "2022-07-25T00:59:23.000Z" + }, + "end": { + "$date": "2022-07-25T01:08:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a5f5004-c9e8-4974-b1db-183dbe5ae01d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-24T23:20:56.000Z" + }, + "end": { + "$date": "2022-07-24T23:52:13.000Z" + }, + "events": [ + { + "uuid": "7d2e01e3-301c-43aa-a688-3bd0f77a7a60", + "start": { + "$date": "2022-07-24T23:20:56.000Z" + }, + "end": { + "$date": "2022-07-24T23:52:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "22c89b69-1208-4aa8-b22c-b393f06a7652", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-25T00:23:02.000Z" + }, + "end": { + "$date": "2022-07-25T01:26:52.000Z" + }, + "events": [ + { + "uuid": "175de9f9-904d-47e8-9aef-51c325ecf4d4", + "start": { + "$date": "2022-07-25T00:23:02.000Z" + }, + "end": { + "$date": "2022-07-25T01:10:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "43ea118a-d797-45a5-9431-8ef32347a136", + "start": { + "$date": "2022-07-25T01:10:02.000Z" + }, + "end": { + "$date": "2022-07-25T01:16:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "aeefe7dd-e9d3-4cc2-a541-8f66be5e4682", + "start": { + "$date": "2022-07-25T01:16:02.000Z" + }, + "end": { + "$date": "2022-07-25T01:26:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "88ac9736-1870-4dc8-a6f3-c0d282b6a2c5", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-25T01:06:52.000Z" + }, + "end": { + "$date": "2022-07-25T01:35:47.000Z" + }, + "events": [ + { + "uuid": "88620b08-f944-4e40-ba9c-27989208a78c", + "start": { + "$date": "2022-07-25T01:06:52.000Z" + }, + "end": { + "$date": "2022-07-25T01:35:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "fcb7955d-ebef-47ba-be6e-e0c0c51078d4", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-25T01:36:02.000Z" + }, + "end": { + "$date": "2022-07-25T03:31:08.000Z" + }, + "events": [ + { + "uuid": "91dec17f-6341-4e55-a8b5-0e187faa758c", + "start": { + "$date": "2022-07-25T01:36:02.000Z" + }, + "end": { + "$date": "2022-07-25T03:31:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "69bc31f7-6c5c-4404-bb8b-5aa262e7463c", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-25T01:43:34.000Z" + }, + "end": { + "$date": "2022-07-25T04:51:22.000Z" + }, + "events": [ + { + "uuid": "543a57ce-8fc3-4366-a51a-08224c9e19f8", + "start": { + "$date": "2022-07-25T01:43:34.000Z" + }, + "end": { + "$date": "2022-07-25T04:51:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "c61d3368-4041-46c6-9af5-84ac81bf8e51", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-25T01:53:28.000Z" + }, + "end": { + "$date": "2022-07-25T02:09:38.000Z" + }, + "events": [ + { + "uuid": "ef0d0ab3-3fe6-4eda-b2ad-9a82dc2aa9a4", + "start": { + "$date": "2022-07-25T01:53:28.000Z" + }, + "end": { + "$date": "2022-07-25T02:09:38.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", + "uuid": "a10eb8ca-a215-49c4-88af-d71f0fa93560", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-25T02:14:33.000Z" + }, + "end": { + "$date": "2022-07-25T02:19:40.000Z" + }, + "events": [ + { + "uuid": "ade49041-fb86-4b70-948d-c052496abc91", + "start": { + "$date": "2022-07-25T02:14:33.000Z" + }, + "end": { + "$date": "2022-07-25T02:19:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "2aa6a9a7-cbee-4fc4-b27f-a087db968b8f", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-25T03:34:05.000Z" + }, + "end": { + "$date": "2022-07-25T04:14:59.000Z" + }, + "events": [ + { + "uuid": "996cc06f-5d53-4ab3-8940-8fb23c5418b2", + "start": { + "$date": "2022-07-25T03:34:05.000Z" + }, + "end": { + "$date": "2022-07-25T04:14:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "fc0b4c9d-304b-4e86-88be-04b75a6c774b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-25T03:31:38.000Z" + }, + "end": { + "$date": "2022-07-25T05:07:22.000Z" + }, + "events": [ + { + "uuid": "24d0a362-be13-4639-ac9c-0e9ddc113019", + "start": { + "$date": "2022-07-25T03:31:38.000Z" + }, + "end": { + "$date": "2022-07-25T05:07:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "b8930ec5-610d-4854-a0bd-eb30ad0591f7", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-25T03:42:59.000Z" + }, + "end": { + "$date": "2022-07-25T03:49:38.000Z" + }, + "events": [ + { + "uuid": "e1613376-5fc8-417e-8b3c-ba4370c16429", + "start": { + "$date": "2022-07-25T03:42:59.000Z" + }, + "end": { + "$date": "2022-07-25T03:49:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "88757df2-4731-458e-99d0-68e74f1fae01", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-25T03:50:43.000Z" + }, + "end": { + "$date": "2022-07-25T04:17:18.000Z" + }, + "events": [ + { + "uuid": "3fd82871-46cd-4458-86b8-9f63a17aa591", + "start": { + "$date": "2022-07-25T03:50:43.000Z" + }, + "end": { + "$date": "2022-07-25T04:17:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "fd3b65d3-45e8-4a74-ba4a-24fb2c711846", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-25T03:51:44.000Z" + }, + "end": { + "$date": "2022-07-25T03:54:28.000Z" + }, + "events": [ + { + "uuid": "e4f43d80-147c-40fc-a544-366a8b190778", + "start": { + "$date": "2022-07-25T03:51:44.000Z" + }, + "end": { + "$date": "2022-07-25T03:54:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "f7c1a6c1-61d0-45e5-bbd1-ab3663cb823a", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-25T03:59:05.000Z" + }, + "end": { + "$date": "2022-07-25T05:30:28.000Z" + }, + "events": [ + { + "uuid": "83dcea5f-0b4b-4ebe-94dc-825b9030e7a8", + "start": { + "$date": "2022-07-25T03:59:05.000Z" + }, + "end": { + "$date": "2022-07-25T05:30:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e06f12c-60f4-4c2b-b98f-d84f6c3d82aa", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-25T04:21:49.000Z" + }, + "end": { + "$date": "2022-07-25T04:42:24.000Z" + }, + "events": [ + { + "uuid": "ae0dc890-0eab-482e-8ff8-0fcdcd39f415", + "start": { + "$date": "2022-07-25T04:21:49.000Z" + }, + "end": { + "$date": "2022-07-25T04:42:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "663c42cf-a844-40c0-bbfc-ab7ef0d86ad6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-25T04:44:34.000Z" + }, + "end": { + "$date": "2022-07-25T05:10:15.000Z" + }, + "events": [ + { + "uuid": "0fd5c69d-413c-4077-ac98-71f935fcce40", + "start": { + "$date": "2022-07-25T04:44:34.000Z" + }, + "end": { + "$date": "2022-07-25T05:10:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9a0c884-aa86-4a97-9e7b-498504213854", + "uuid": "45fa9d7a-4888-47e1-87ae-9c751090a438", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-25T05:14:28.000Z" + }, + "end": { + "$date": "2022-07-25T06:50:06.000Z" + }, + "events": [ + { + "uuid": "d887e26f-8088-45e8-8976-9a996c032f8e", + "start": { + "$date": "2022-07-25T05:14:28.000Z" + }, + "end": { + "$date": "2022-07-25T06:50:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4f923288-c36d-4426-a974-9a5b948aedaa", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-25T05:26:55.000Z" + }, + "end": { + "$date": "2022-07-25T06:02:41.000Z" + }, + "events": [ + { + "uuid": "407f37eb-f20e-4344-b121-eb90fedd7523", + "start": { + "$date": "2022-07-25T05:26:55.000Z" + }, + "end": { + "$date": "2022-07-25T06:02:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3785c04a-3b3c-4eb5-9add-f045f6a57e34", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-25T09:18:22.000Z" + }, + "end": { + "$date": "2022-07-25T09:22:42.000Z" + }, + "events": [ + { + "uuid": "4af71d66-2e88-49b3-971a-d24a04c6e082", + "start": { + "$date": "2022-07-25T09:18:22.000Z" + }, + "end": { + "$date": "2022-07-25T09:22:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "3464c73f-df04-40e6-8e6f-5f524d53e379", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-25T16:33:39.000Z" + }, + "end": { + "$date": "2022-07-25T16:34:59.000Z" + }, + "events": [ + { + "uuid": "d265293a-19d6-4ec0-84e6-9b6139f43f78", + "start": { + "$date": "2022-07-25T16:33:39.000Z" + }, + "end": { + "$date": "2022-07-25T16:34:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "f8770258-39a2-4b83-be9a-f387485fd904", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-25T18:26:42.000Z" + }, + "end": { + "$date": "2022-07-25T18:31:14.000Z" + }, + "events": [ + { + "uuid": "b02cadcf-610d-4740-abb2-9a084e825a7c", + "start": { + "$date": "2022-07-25T18:26:42.000Z" + }, + "end": { + "$date": "2022-07-25T18:31:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "43adc112-1c3e-4c5c-b2dd-69e4609da136", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-25T18:56:55.000Z" + }, + "end": { + "$date": "2022-07-25T19:19:15.000Z" + }, + "events": [ + { + "uuid": "0e2a2f4a-69ea-47c2-b623-4a7673980d7d", + "start": { + "$date": "2022-07-25T18:56:55.000Z" + }, + "end": { + "$date": "2022-07-25T19:19:15.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "62d4a693-6dbb-4f11-9993-485a7e392308", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-25T22:10:23.000Z" + }, + "end": { + "$date": "2022-07-25T23:47:28.000Z" + }, + "events": [ + { + "uuid": "75729ea7-9241-41a1-8b15-208b17a23900", + "start": { + "$date": "2022-07-25T22:10:23.000Z" + }, + "end": { + "$date": "2022-07-25T23:47:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "3e60181d-8e10-4544-9063-0b02cb4ee3aa", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-25T23:16:45.000Z" + }, + "end": { + "$date": "2022-07-26T01:01:21.000Z" + }, + "events": [ + { + "uuid": "937d712d-1a15-4af3-8b56-ba7f395b44b4", + "start": { + "$date": "2022-07-25T23:16:45.000Z" + }, + "end": { + "$date": "2022-07-26T01:01:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "32e61632-0ad1-4fe0-a1b3-2610aa9052ea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-25T23:28:47.000Z" + }, + "end": { + "$date": "2022-07-25T23:43:54.000Z" + }, + "events": [ + { + "uuid": "d45bfd15-afd1-434d-85ac-2a61c6e9e636", + "start": { + "$date": "2022-07-25T23:28:47.000Z" + }, + "end": { + "$date": "2022-07-25T23:43:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "03f949fe-3521-476c-b2b1-d6f0339f368b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-25T23:44:05.000Z" + }, + "end": { + "$date": "2022-07-25T23:59:35.000Z" + }, + "events": [ + { + "uuid": "5d45e264-8c76-49e9-97ef-e0233826b8d2", + "start": { + "$date": "2022-07-25T23:44:05.000Z" + }, + "end": { + "$date": "2022-07-25T23:59:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "12fdbb18-051e-42c1-8a0f-eabe03f07f79", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-25T23:48:36.000Z" + }, + "end": { + "$date": "2022-07-26T00:15:57.000Z" + }, + "events": [ + { + "uuid": "8f68fc4c-5194-41e4-ab6b-653d7f8d04ed", + "start": { + "$date": "2022-07-25T23:48:36.000Z" + }, + "end": { + "$date": "2022-07-26T00:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b06f1a82-b91b-498e-ae30-6cef22b4a051", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-26T00:00:20.000Z" + }, + "end": { + "$date": "2022-07-26T00:32:41.000Z" + }, + "events": [ + { + "uuid": "bded701e-4aff-47e5-809c-52cc98d498f8", + "start": { + "$date": "2022-07-26T00:00:20.000Z" + }, + "end": { + "$date": "2022-07-26T00:32:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "de2385ac-3dcd-4b59-ad4a-7d4d673121e4", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-07-26T00:10:18.000Z" + }, + "end": { + "$date": "2022-07-26T02:54:29.000Z" + }, + "events": [ + { + "uuid": "a7d3e10c-28be-4d83-8299-aac7e09446d8", + "start": { + "$date": "2022-07-26T00:10:18.000Z" + }, + "end": { + "$date": "2022-07-26T02:54:29.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ada7b9ef-aaae-45eb-be6a-5b802dc239e5", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-26T00:13:09.000Z" + }, + "end": { + "$date": "2022-07-26T00:39:03.000Z" + }, + "events": [ + { + "uuid": "0e49310f-8fec-4bd1-a894-1bebbfe4f24b", + "start": { + "$date": "2022-07-26T00:13:09.000Z" + }, + "end": { + "$date": "2022-07-26T00:39:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "d1b20aa1-f0d6-4091-98ab-932f38454e63", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-26T00:17:09.000Z" + }, + "end": { + "$date": "2022-07-26T00:41:06.000Z" + }, + "events": [ + { + "uuid": "9d73c860-a848-420f-8b35-c824bad9ab91", + "start": { + "$date": "2022-07-26T00:17:09.000Z" + }, + "end": { + "$date": "2022-07-26T00:41:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "41a20038-744d-4986-aea7-1048fc94e92e", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-26T00:33:51.000Z" + }, + "end": { + "$date": "2022-07-26T00:42:41.000Z" + }, + "events": [ + { + "uuid": "abbb34f2-9633-45a4-bd79-00f0b86c98c4", + "start": { + "$date": "2022-07-26T00:33:51.000Z" + }, + "end": { + "$date": "2022-07-26T00:42:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "134291fc-1b2c-4130-88e7-12954569d84e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-26T00:41:40.000Z" + }, + "end": { + "$date": "2022-07-26T05:47:21.000Z" + }, + "events": [ + { + "uuid": "ea426d91-e05b-4511-a97a-0325a818a9b2", + "start": { + "$date": "2022-07-26T00:41:40.000Z" + }, + "end": { + "$date": "2022-07-26T05:47:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "225f873c-331a-471e-9263-8264edb5f443", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-26T00:42:47.000Z" + }, + "end": { + "$date": "2022-07-26T01:28:13.000Z" + }, + "events": [ + { + "uuid": "8a869701-201f-4e5e-814f-d135ce732ab3", + "start": { + "$date": "2022-07-26T00:42:47.000Z" + }, + "end": { + "$date": "2022-07-26T01:28:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "01863e34-c126-4afd-b1ac-156569c6171e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-26T01:26:56.000Z" + }, + "end": { + "$date": "2022-07-26T02:13:01.000Z" + }, + "events": [ + { + "uuid": "566c80ab-5cfa-439d-9abc-6c9817345027", + "start": { + "$date": "2022-07-26T01:26:56.000Z" + }, + "end": { + "$date": "2022-07-26T02:13:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "31b370e8-268e-4fc5-9143-a4f43101ba61", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-26T01:38:33.000Z" + }, + "end": { + "$date": "2022-07-26T02:13:37.000Z" + }, + "events": [ + { + "uuid": "deb8b6fc-2169-4b5b-a00c-d00c8da68807", + "start": { + "$date": "2022-07-26T01:38:33.000Z" + }, + "end": { + "$date": "2022-07-26T02:04:33.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "210fce6a-97ef-4619-9279-90445bbffae7", + "start": { + "$date": "2022-07-26T02:04:33.000Z" + }, + "end": { + "$date": "2022-07-26T02:09:33.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "5d49350f-75c4-4387-b0f5-d4215e068b5a", + "start": { + "$date": "2022-07-26T02:09:33.000Z" + }, + "end": { + "$date": "2022-07-26T02:13:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d60f61e1-3a64-48eb-a223-29e27dbec162", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-26T02:26:48.000Z" + }, + "end": { + "$date": "2022-07-26T03:26:11.000Z" + }, + "events": [ + { + "uuid": "a2fbe319-6082-4a13-80c4-80a616e71a79", + "start": { + "$date": "2022-07-26T02:26:48.000Z" + }, + "end": { + "$date": "2022-07-26T03:26:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "3cbc326a-bcd4-4fc5-8d97-fdf44a3265a2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-26T02:55:22.000Z" + }, + "end": { + "$date": "2022-07-26T03:24:29.000Z" + }, + "events": [ + { + "uuid": "135d09a0-73b8-466a-b763-15bbcc18c8a9", + "start": { + "$date": "2022-07-26T02:55:22.000Z" + }, + "end": { + "$date": "2022-07-26T03:24:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43e95712-c9f8-41bf-8c8b-0a4091d05025", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-26T03:17:49.000Z" + }, + "end": { + "$date": "2022-07-26T03:30:49.000Z" + }, + "events": [ + { + "uuid": "8669989a-b776-4ff9-8895-ce9d11aa8c68", + "start": { + "$date": "2022-07-26T03:17:49.000Z" + }, + "end": { + "$date": "2022-07-26T03:30:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9013425b-c3d0-42b2-acee-a09ce1262051", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-26T03:26:24.000Z" + }, + "end": { + "$date": "2022-07-26T05:05:59.000Z" + }, + "events": [ + { + "uuid": "f070b64d-544a-468a-a966-60917e08b3dc", + "start": { + "$date": "2022-07-26T03:26:24.000Z" + }, + "end": { + "$date": "2022-07-26T04:12:24.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "faaaeb5a-60dc-4a26-9c96-105af8792f54", + "start": { + "$date": "2022-07-26T04:12:24.000Z" + }, + "end": { + "$date": "2022-07-26T04:19:24.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "814fd9ee-af8a-44a8-9734-58be79d1c5fa", + "start": { + "$date": "2022-07-26T04:19:24.000Z" + }, + "end": { + "$date": "2022-07-26T05:05:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e3d29c4-cf40-4650-88a5-e0969a80b47f", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-26T03:33:49.000Z" + }, + "end": { + "$date": "2022-07-26T03:56:45.000Z" + }, + "events": [ + { + "uuid": "60ca1afe-ad8d-45dc-9319-a576c26016c2", + "start": { + "$date": "2022-07-26T03:33:49.000Z" + }, + "end": { + "$date": "2022-07-26T03:56:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "1efde7aa-815d-4cc3-bbdf-cf19b111c44a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-26T03:49:02.000Z" + }, + "end": { + "$date": "2022-07-26T05:58:43.000Z" + }, + "events": [ + { + "uuid": "05cf6b6c-ca28-45eb-8039-cc72ffafec63", + "start": { + "$date": "2022-07-26T03:49:02.000Z" + }, + "end": { + "$date": "2022-07-26T05:58:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "65482349-f51c-4901-90f9-1e5b1efa1358", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-26T04:04:55.000Z" + }, + "end": { + "$date": "2022-07-26T04:43:12.000Z" + }, + "events": [ + { + "uuid": "5493f8ef-ac05-482d-9492-611770a9ad34", + "start": { + "$date": "2022-07-26T04:04:55.000Z" + }, + "end": { + "$date": "2022-07-26T04:43:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "806d5bbc-adc4-4518-9d58-116c71e1683c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-26T04:38:51.000Z" + }, + "end": { + "$date": "2022-07-26T04:41:56.000Z" + }, + "events": [ + { + "uuid": "89c4ef37-2343-453a-ae74-55a3278701cb", + "start": { + "$date": "2022-07-26T04:38:51.000Z" + }, + "end": { + "$date": "2022-07-26T04:41:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "392b38e3-2d32-4d08-b187-59fb5bca7e3c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-26T04:44:11.000Z" + }, + "end": { + "$date": "2022-07-26T05:39:23.000Z" + }, + "events": [ + { + "uuid": "535b00e6-1f60-4939-b15f-449c2f125db5", + "start": { + "$date": "2022-07-26T04:44:11.000Z" + }, + "end": { + "$date": "2022-07-26T05:39:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "deb980b9-4378-4ddb-b4dc-2136ba248e66", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-26T04:47:01.000Z" + }, + "end": { + "$date": "2022-07-26T05:54:49.000Z" + }, + "events": [ + { + "uuid": "eb2d9c69-9afe-4511-9cbd-637add27e483", + "start": { + "$date": "2022-07-26T04:47:01.000Z" + }, + "end": { + "$date": "2022-07-26T05:54:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "34e09e11-72f1-40ec-b36b-29c2de7b1347", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-26T05:24:55.000Z" + }, + "end": { + "$date": "2022-07-26T05:38:49.000Z" + }, + "events": [ + { + "uuid": "d3356667-3c70-4857-aed3-4fc4ff74627b", + "start": { + "$date": "2022-07-26T05:24:55.000Z" + }, + "end": { + "$date": "2022-07-26T05:38:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "80486f33-c4e5-48e1-9dad-05c720d1d2d1", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-26T06:24:40.000Z" + }, + "end": { + "$date": "2022-07-26T06:46:53.000Z" + }, + "events": [ + { + "uuid": "d60bf8d6-f96e-4dff-a121-40d35e410449", + "start": { + "$date": "2022-07-26T06:24:40.000Z" + }, + "end": { + "$date": "2022-07-26T06:46:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "656b8161-582c-495e-ba56-8a190403c63f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-26T16:46:29.000Z" + }, + "end": { + "$date": "2022-07-26T16:53:19.000Z" + }, + "events": [ + { + "uuid": "e33f0fcf-a9da-49f2-9eb6-8cea6d245664", + "start": { + "$date": "2022-07-26T16:46:29.000Z" + }, + "end": { + "$date": "2022-07-26T16:53:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "f700947a-3d5b-4872-81e7-8219b7b06946", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-26T21:03:31.000Z" + }, + "end": { + "$date": "2022-07-26T21:40:48.000Z" + }, + "events": [ + { + "uuid": "c28ef7b7-758c-4171-83ff-502c69817f46", + "start": { + "$date": "2022-07-26T21:03:31.000Z" + }, + "end": { + "$date": "2022-07-26T21:40:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", + "uuid": "68a4d83d-0159-44e4-b72e-a9e560a2cdcf", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-26T22:51:53.000Z" + }, + "end": { + "$date": "2022-07-27T00:51:01.000Z" + }, + "events": [ + { + "uuid": "8a23508c-5a7f-4927-bc09-2efa717faf47", + "start": { + "$date": "2022-07-26T22:51:53.000Z" + }, + "end": { + "$date": "2022-07-26T23:56:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "01abd543-d982-48d8-8fa2-ce0abf093607", + "start": { + "$date": "2022-07-26T23:56:53.000Z" + }, + "end": { + "$date": "2022-07-27T00:18:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0884b9ef-3c31-4256-b506-24b5a4cb139a", + "start": { + "$date": "2022-07-27T00:18:53.000Z" + }, + "end": { + "$date": "2022-07-27T00:19:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "86e5564d-baa3-4c3e-8fdb-5024bc5168cb", + "start": { + "$date": "2022-07-27T00:19:53.000Z" + }, + "end": { + "$date": "2022-07-27T00:36:53.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "666ca7f7-cdcd-4e50-ab91-be5f9d907232", + "start": { + "$date": "2022-07-27T00:36:53.000Z" + }, + "end": { + "$date": "2022-07-27T00:37:53.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "f4c8ee6a-b9fc-4b0c-af77-1543b49f8da9", + "start": { + "$date": "2022-07-27T00:37:53.000Z" + }, + "end": { + "$date": "2022-07-27T00:51:01.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "d3009cbb-da3b-4302-a8a5-f5042d19d62d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-26T22:57:43.000Z" + }, + "end": { + "$date": "2022-07-27T00:19:35.000Z" + }, + "events": [ + { + "uuid": "7da9d996-3744-405f-91bb-98b96326262f", + "start": { + "$date": "2022-07-26T22:57:43.000Z" + }, + "end": { + "$date": "2022-07-27T00:19:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "bf2d5721-9c32-47c0-a3a5-8260f7b539c8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-26T23:23:50.000Z" + }, + "end": { + "$date": "2022-07-26T23:48:51.000Z" + }, + "events": [ + { + "uuid": "98f9e1e5-9427-4388-9de3-88717af0ba44", + "start": { + "$date": "2022-07-26T23:23:50.000Z" + }, + "end": { + "$date": "2022-07-26T23:48:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "1dadb0bb-2628-4035-8a5d-62a49f85369a", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-27T00:44:42.000Z" + }, + "end": { + "$date": "2022-07-27T01:47:23.000Z" + }, + "events": [ + { + "start": { + "$date": "2022-07-27T00:44:42.000Z" + }, + "end": { + "$date": "2022-07-27T01:47:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "d22bb3bc-7875-4901-91b5-6ee7f2357d5c", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-27T00:53:23.000Z" + }, + "end": { + "$date": "2022-07-27T00:57:12.000Z" + }, + "events": [ + { + "uuid": "556ca7df-c0c7-4f3b-a274-a9f0d8015247", + "start": { + "$date": "2022-07-27T00:53:23.000Z" + }, + "end": { + "$date": "2022-07-27T00:57:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", + "uuid": "f54e42fb-479a-4583-9ff1-9ef52766a4d2", + "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "start": { + "$date": "2022-07-27T00:59:44.000Z" + }, + "end": { + "$date": "2022-07-27T01:01:52.000Z" + }, + "events": [ + { + "uuid": "9b9d1a1d-de34-4b35-8afb-5a95dfe7680a", + "start": { + "$date": "2022-07-27T00:59:44.000Z" + }, + "end": { + "$date": "2022-07-27T01:01:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "56644f06-3baf-4042-9477-1a8b3661a4de", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-27T01:27:17.000Z" + }, + "end": { + "$date": "2022-07-27T02:01:41.000Z" + }, + "events": [ + { + "uuid": "a637b92b-360c-4b8d-b27a-66e064366e5a", + "start": { + "$date": "2022-07-27T01:27:17.000Z" + }, + "end": { + "$date": "2022-07-27T02:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8a27192b-10a3-4a27-a32b-35c5afd39edb", + "uuid": "24d661fd-c67a-474b-9335-489d910875ac", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-27T01:29:50.000Z" + }, + "end": { + "$date": "2022-07-27T03:20:00.000Z" + }, + "events": [ + { + "uuid": "0bad280f-f359-4062-8e89-c6fc21983092", + "start": { + "$date": "2022-07-27T01:29:50.000Z" + }, + "end": { + "$date": "2022-07-27T03:20:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "8b5ab818-7e3b-4c7b-8e0e-843a015b9284", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-27T02:02:10.000Z" + }, + "end": { + "$date": "2022-07-27T05:17:59.000Z" + }, + "events": [ + { + "uuid": "ceb80cae-6dea-4e9a-ad30-df3af37cd2a7", + "start": { + "$date": "2022-07-27T02:02:10.000Z" + }, + "end": { + "$date": "2022-07-27T05:17:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "756629c4-869a-457d-82c1-a3dacc354c03", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-27T02:39:18.000Z" + }, + "end": { + "$date": "2022-07-27T02:41:02.000Z" + }, + "events": [ + { + "uuid": "781fd820-1d34-46f8-894d-61898c12a342", + "start": { + "$date": "2022-07-27T02:39:18.000Z" + }, + "end": { + "$date": "2022-07-27T02:41:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "fcd960a8-2e86-4d29-bdb6-057d27c7a5ec", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T03:13:39.000Z" + }, + "end": { + "$date": "2022-07-27T03:19:45.000Z" + }, + "events": [ + { + "uuid": "bf6e4355-6837-4746-af9a-dfa0eb9530dc", + "start": { + "$date": "2022-07-27T03:13:39.000Z" + }, + "end": { + "$date": "2022-07-27T03:19:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "14245659-d779-46e9-9f8b-d992833e8087", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T03:20:03.000Z" + }, + "end": { + "$date": "2022-07-27T05:18:46.000Z" + }, + "events": [ + { + "uuid": "72a5e2f6-f697-4399-8489-b4b601828c49", + "start": { + "$date": "2022-07-27T03:20:03.000Z" + }, + "end": { + "$date": "2022-07-27T05:18:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "0dcdb593-d858-4a76-ae9f-173c5ef01620", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-27T03:24:59.000Z" + }, + "end": { + "$date": "2022-07-27T05:36:06.000Z" + }, + "events": [ + { + "uuid": "4e646703-9d3f-4bb3-94cb-0e853ee73a45", + "start": { + "$date": "2022-07-27T03:24:59.000Z" + }, + "end": { + "$date": "2022-07-27T05:36:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "7994d6d5-f7f8-46d1-a856-244d50c78b4e", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-27T03:29:23.000Z" + }, + "end": { + "$date": "2022-07-27T05:34:24.000Z" + }, + "events": [ + { + "uuid": "fa918843-e4b8-4bb6-82a5-25879a8ae1b4", + "start": { + "$date": "2022-07-27T03:29:23.000Z" + }, + "end": { + "$date": "2022-07-27T05:34:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d7517fa-da1a-4dcc-b0b4-f97db53b30d2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-27T03:31:29.000Z" + }, + "end": { + "$date": "2022-07-27T04:00:34.000Z" + }, + "events": [ + { + "uuid": "3667c2c8-c622-49b6-b800-d201645d0937", + "start": { + "$date": "2022-07-27T03:31:29.000Z" + }, + "end": { + "$date": "2022-07-27T04:00:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "278d2bf3-aa61-4aee-94e5-6eed888f644a", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-27T03:36:31.000Z" + }, + "end": { + "$date": "2022-07-27T05:20:56.000Z" + }, + "events": [ + { + "uuid": "dc6a3bc1-81a4-432a-9bbf-a59cd6e78d1e", + "start": { + "$date": "2022-07-27T03:36:31.000Z" + }, + "end": { + "$date": "2022-07-27T05:20:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "b4401e07-7599-40df-a55c-a072d72dd83f", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-27T03:37:10.000Z" + }, + "end": { + "$date": "2022-07-27T05:34:20.000Z" + }, + "events": [ + { + "uuid": "2aee88e0-7897-42fb-b161-cd4d5bc2116b", + "start": { + "$date": "2022-07-27T03:37:10.000Z" + }, + "end": { + "$date": "2022-07-27T05:34:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "2f567c6c-3704-40c9-a063-05ca6477ea10", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T03:47:13.000Z" + }, + "end": { + "$date": "2022-07-27T05:35:10.000Z" + }, + "events": [ + { + "uuid": "aa19a3d2-89a5-480d-a6da-9da7ac02653f", + "start": { + "$date": "2022-07-27T03:47:13.000Z" + }, + "end": { + "$date": "2022-07-27T05:35:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "d1464a84-13fa-42b5-b53f-d34b4e5ad3dd", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-27T04:10:50.000Z" + }, + "end": { + "$date": "2022-07-27T04:14:55.000Z" + }, + "events": [ + { + "uuid": "61486475-6455-48f4-9aa3-a14558e2e32b", + "start": { + "$date": "2022-07-27T04:10:50.000Z" + }, + "end": { + "$date": "2022-07-27T04:14:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "9f9f7ebd-7f52-4eef-8474-591826be6661", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-27T04:15:26.000Z" + }, + "end": { + "$date": "2022-07-27T04:51:47.000Z" + }, + "events": [ + { + "uuid": "c15ce12a-686f-4ded-88be-04c86a319693", + "start": { + "$date": "2022-07-27T04:15:26.000Z" + }, + "end": { + "$date": "2022-07-27T04:51:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "ca915fcf-e20f-4878-83a6-dbc5d4c0b6c8", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-27T04:52:18.000Z" + }, + "end": { + "$date": "2022-07-27T04:53:32.000Z" + }, + "events": [ + { + "uuid": "4baf341e-98c0-48de-b63b-fbed0e8ab67e", + "start": { + "$date": "2022-07-27T04:52:18.000Z" + }, + "end": { + "$date": "2022-07-27T04:53:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "e498ffde-a01a-4616-854f-ff5b5818e9c9", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T05:19:02.000Z" + }, + "end": { + "$date": "2022-07-27T05:33:57.000Z" + }, + "events": [ + { + "uuid": "043715c8-46b6-48f2-9d12-7d108615bbc9", + "start": { + "$date": "2022-07-27T05:19:02.000Z" + }, + "end": { + "$date": "2022-07-27T05:33:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8e1380c-8fbe-4076-917b-3e7238554751", + "uuid": "b02716b4-e792-4f8b-94c3-03c5dd969d27", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T05:34:02.000Z" + }, + "end": { + "$date": "2022-07-27T06:07:54.000Z" + }, + "events": [ + { + "uuid": "ac3a6643-5c64-4199-ae43-dc3b4223d950", + "start": { + "$date": "2022-07-27T05:34:02.000Z" + }, + "end": { + "$date": "2022-07-27T06:07:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8e1380c-8fbe-4076-917b-3e7238554751", + "uuid": "ac115cdd-5f18-49df-9738-937eb3a4781c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-27T05:34:40.000Z" + }, + "end": { + "$date": "2022-07-27T06:05:06.000Z" + }, + "events": [ + { + "uuid": "632147c4-8bf1-4a1a-9e93-07edc330ce96", + "start": { + "$date": "2022-07-27T05:34:40.000Z" + }, + "end": { + "$date": "2022-07-27T06:05:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8e1380c-8fbe-4076-917b-3e7238554751", + "uuid": "cad5dbc2-134c-4ba1-bd37-a4d9c54c37f7", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-27T05:34:41.000Z" + }, + "end": { + "$date": "2022-07-27T06:08:05.000Z" + }, + "events": [ + { + "uuid": "979c985f-968d-438e-9f89-3e77e9881f45", + "start": { + "$date": "2022-07-27T05:34:41.000Z" + }, + "end": { + "$date": "2022-07-27T06:08:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8e1380c-8fbe-4076-917b-3e7238554751", + "uuid": "a80a3412-34e8-4b75-91e3-b1e86fd80d1b", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-27T05:38:21.000Z" + }, + "end": { + "$date": "2022-07-27T06:08:03.000Z" + }, + "events": [ + { + "uuid": "1255dac6-108e-42c9-a4c8-5e0bd575ec8f", + "start": { + "$date": "2022-07-27T05:38:21.000Z" + }, + "end": { + "$date": "2022-07-27T06:08:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e8e1380c-8fbe-4076-917b-3e7238554751", + "uuid": "8f9ca20e-6256-44d3-9a9b-f7fbec7dff8d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T05:42:46.000Z" + }, + "end": { + "$date": "2022-07-27T06:04:56.000Z" + }, + "events": [ + { + "uuid": "932b63ec-808a-4b56-bf91-542276828ad2", + "start": { + "$date": "2022-07-27T05:42:46.000Z" + }, + "end": { + "$date": "2022-07-27T06:04:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "09da5eef-f5f0-4ca1-b2ca-209a4e2436c3", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T06:10:04.000Z" + }, + "end": { + "$date": "2022-07-27T06:30:14.000Z" + }, + "events": [ + { + "uuid": "8de370da-cc62-48f7-85f8-3cc1f60bee74", + "start": { + "$date": "2022-07-27T06:10:04.000Z" + }, + "end": { + "$date": "2022-07-27T06:30:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "98debffd-a070-483b-90a6-7acd45fd25b6", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T06:35:05.000Z" + }, + "end": { + "$date": "2022-07-27T06:59:20.000Z" + }, + "events": [ + { + "uuid": "47611949-1c90-4597-bd27-5548eb148340", + "start": { + "$date": "2022-07-27T06:35:05.000Z" + }, + "end": { + "$date": "2022-07-27T06:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4ab73d0e-4528-4ced-a2c9-0582f44eea7a", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T07:01:31.000Z" + }, + "end": { + "$date": "2022-07-27T07:16:50.000Z" + }, + "events": [ + { + "uuid": "6b582f55-4818-430c-b95d-1d5ce0497c7e", + "start": { + "$date": "2022-07-27T07:01:31.000Z" + }, + "end": { + "$date": "2022-07-27T07:16:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "24e06e18-30f8-49fb-b34e-f7747018e380", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T07:01:39.000Z" + }, + "end": { + "$date": "2022-07-27T07:16:54.000Z" + }, + "events": [ + { + "uuid": "38eda294-a4e3-4dcc-a6c3-f63c07b56642", + "start": { + "$date": "2022-07-27T07:01:39.000Z" + }, + "end": { + "$date": "2022-07-27T07:16:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ba13d68c-eec8-40f8-84b5-20af6cfe9c7b", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-27T08:36:33.000Z" + }, + "end": { + "$date": "2022-07-27T08:36:58.000Z" + }, + "events": [ + { + "uuid": "cee3cd61-04eb-4b2b-9c9a-6546407e7b3e", + "start": { + "$date": "2022-07-27T08:36:33.000Z" + }, + "end": { + "$date": "2022-07-27T08:36:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "49c5705a-5ce9-4da9-990e-604c89b8a3ec", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T07:19:31.000Z" + }, + "end": { + "$date": "2022-07-27T07:45:48.000Z" + }, + "events": [ + { + "uuid": "2d5b2755-b8ba-4a39-843f-649578f7814b", + "start": { + "$date": "2022-07-27T07:19:31.000Z" + }, + "end": { + "$date": "2022-07-27T07:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de101971-a8bb-4f68-9f43-bc802668370a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T07:51:27.000Z" + }, + "end": { + "$date": "2022-07-27T08:13:07.000Z" + }, + "events": [ + { + "uuid": "edcf1c9f-9309-4041-8311-dc6ab2a5b0c7", + "start": { + "$date": "2022-07-27T07:51:27.000Z" + }, + "end": { + "$date": "2022-07-27T08:13:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "d6394a0d-8d1a-49d3-a0a5-ea8cee4260d1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T08:19:23.000Z" + }, + "end": { + "$date": "2022-07-27T08:36:39.000Z" + }, + "events": [ + { + "uuid": "55272194-8d8e-478b-98f3-f37474d9fd00", + "start": { + "$date": "2022-07-27T08:19:23.000Z" + }, + "end": { + "$date": "2022-07-27T08:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "2b8bb651-f96f-4e85-8bf0-ddc9a20582c8", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-27T18:37:39.000Z" + }, + "end": { + "$date": "2022-07-27T19:25:05.000Z" + }, + "events": [ + { + "uuid": "efbc0349-107f-46c1-8bd5-4b500ed9b541", + "start": { + "$date": "2022-07-27T18:37:39.000Z" + }, + "end": { + "$date": "2022-07-27T18:57:39.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6e9dcf2a-e0aa-49bc-b299-c0fd5d96bab6", + "start": { + "$date": "2022-07-27T18:57:39.000Z" + }, + "end": { + "$date": "2022-07-27T19:05:39.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1c7a513e-87bd-4142-8605-360cb5227940", + "start": { + "$date": "2022-07-27T19:05:39.000Z" + }, + "end": { + "$date": "2022-07-27T19:25:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "cdd12b86-c71f-4c1c-884e-f689816962de", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-27T20:23:49.000Z" + }, + "end": { + "$date": "2022-07-27T21:26:26.000Z" + }, + "events": [ + { + "uuid": "11c2deb6-5933-4075-9619-1c431c341dfd", + "start": { + "$date": "2022-07-27T20:23:49.000Z" + }, + "end": { + "$date": "2022-07-27T21:26:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "ecfd5f25-5484-4e95-91ba-55337bd09190", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-27T23:17:53.000Z" + }, + "end": { + "$date": "2022-07-27T23:40:25.000Z" + }, + "events": [ + { + "uuid": "17bc64d0-54c7-4ff4-896d-b7ad37dd5de5", + "start": { + "$date": "2022-07-27T23:17:53.000Z" + }, + "end": { + "$date": "2022-07-27T23:40:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3ece8098-d942-47ef-907f-43b4e01cc29f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-27T23:40:40.000Z" + }, + "end": { + "$date": "2022-07-28T02:23:31.000Z" + }, + "events": [ + { + "uuid": "599a885c-3edc-4034-b7f4-c9b62f32f0ef", + "start": { + "$date": "2022-07-27T23:40:40.000Z" + }, + "end": { + "$date": "2022-07-28T02:23:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8133784c-766c-42ca-a135-64063f7e3878", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-28T00:11:36.000Z" + }, + "end": { + "$date": "2022-07-28T01:11:55.000Z" + }, + "events": [ + { + "uuid": "5d0c5114-a1c2-4b5d-a1c1-adb8e6d6a521", + "start": { + "$date": "2022-07-28T00:11:36.000Z" + }, + "end": { + "$date": "2022-07-28T01:11:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "9fdec5f5-be40-4817-a434-a468c3de84f5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-28T01:06:27.000Z" + }, + "end": { + "$date": "2022-07-28T01:06:42.000Z" + }, + "events": [ + { + "uuid": "56c06fa0-8809-49ff-923f-acaeea17150d", + "start": { + "$date": "2022-07-28T01:06:27.000Z" + }, + "end": { + "$date": "2022-07-28T01:06:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "c4ccc5f8-9c6b-4264-bae2-3b0f952fde85", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-28T01:06:52.000Z" + }, + "end": { + "$date": "2022-07-28T02:23:58.000Z" + }, + "events": [ + { + "uuid": "fe5ec620-337e-4d4f-b10d-11073bb0e2e9", + "start": { + "$date": "2022-07-28T01:06:52.000Z" + }, + "end": { + "$date": "2022-07-28T02:23:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "d74a14a9-756b-486f-9d66-cd8b9b98f923", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-28T01:54:44.000Z" + }, + "end": { + "$date": "2022-07-28T02:04:00.000Z" + }, + "events": [ + { + "uuid": "0931e1c8-a3c4-43a9-9969-8e2c79f96c9e", + "start": { + "$date": "2022-07-28T01:54:44.000Z" + }, + "end": { + "$date": "2022-07-28T02:04:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "7c18e810-14cb-4433-b668-b0bc1a43bca8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-28T02:04:41.000Z" + }, + "end": { + "$date": "2022-07-28T06:24:16.000Z" + }, + "events": [ + { + "uuid": "399b890c-9093-4971-a83a-9a72aad5ebed", + "start": { + "$date": "2022-07-28T02:04:41.000Z" + }, + "end": { + "$date": "2022-07-28T06:24:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "248463ef-3212-4f0e-893b-e3a4afec18c3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-28T02:37:55.000Z" + }, + "end": { + "$date": "2022-07-28T03:17:29.000Z" + }, + "events": [ + { + "uuid": "303ce808-9b6b-413d-a8e2-b16eeffb269e", + "start": { + "$date": "2022-07-28T02:37:55.000Z" + }, + "end": { + "$date": "2022-07-28T03:17:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "322fd928-0921-49ab-9db2-609bc287ad0f", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-28T03:09:20.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:17.000Z" + }, + "events": [ + { + "uuid": "b3ee1e0a-f20e-4a27-a466-ccb29e523430", + "start": { + "$date": "2022-07-28T03:09:20.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "fb1ca44d-3161-4594-b21f-3139253d6c82", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-28T03:09:39.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:46.000Z" + }, + "events": [ + { + "uuid": "7d5fbdf4-50cc-4af2-87b9-2744d90fb80d", + "start": { + "$date": "2022-07-28T03:09:39.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "13afba4d-501d-4058-9a7a-787e5cba0f45", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-28T03:11:40.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:15.000Z" + }, + "events": [ + { + "uuid": "7f5a6b12-7145-4181-aa78-e50355af85c3", + "start": { + "$date": "2022-07-28T03:11:40.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "16e274c1-c85f-4238-9c89-38637131e3a7", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-28T03:21:56.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:22.000Z" + }, + "events": [ + { + "uuid": "ff22e8a8-617b-40f3-8ade-0fdba2a86ea1", + "start": { + "$date": "2022-07-28T03:21:56.000Z" + }, + "end": { + "$date": "2022-07-28T04:56:22.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", + "uuid": "d9892c18-dfb4-4ae9-a200-479d7ae76bf8", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-28T03:26:06.000Z" + }, + "end": { + "$date": "2022-07-28T04:58:26.000Z" + }, + "events": [ + { + "uuid": "c00514bc-8794-4812-91f7-7a5c3c0bedc4", + "start": { + "$date": "2022-07-28T03:26:06.000Z" + }, + "end": { + "$date": "2022-07-28T04:58:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40c06ce1-8073-4f41-a3db-f415273dba4b", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-28T04:24:07.000Z" + }, + "end": { + "$date": "2022-07-28T05:04:34.000Z" + }, + "events": [ + { + "uuid": "3605c316-6dc1-4c94-a61b-3687fdd8f27d", + "start": { + "$date": "2022-07-28T04:24:07.000Z" + }, + "end": { + "$date": "2022-07-28T05:04:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "05d894cf-efbe-4e3a-95bc-980c545c1a9c", + "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "start": { + "$date": "2022-07-28T04:59:08.000Z" + }, + "end": { + "$date": "2022-07-28T05:45:12.000Z" + }, + "events": [ + { + "uuid": "8fb0e45e-7264-4c3b-b7e6-16a7e4c51fe9", + "start": { + "$date": "2022-07-28T04:59:08.000Z" + }, + "end": { + "$date": "2022-07-28T05:45:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "bd90031d-908c-415f-bf70-76c8d04cc7b8", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-28T05:01:10.000Z" + }, + "end": { + "$date": "2022-07-28T05:45:39.000Z" + }, + "events": [ + { + "uuid": "b32bd8d5-4f62-4145-9cb8-3cf9f6e71317", + "start": { + "$date": "2022-07-28T05:01:10.000Z" + }, + "end": { + "$date": "2022-07-28T05:45:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "302e95a7-202f-4761-87a9-f213046331d3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-28T05:06:15.000Z" + }, + "end": { + "$date": "2022-07-28T05:41:58.000Z" + }, + "events": [ + { + "uuid": "c7c872a3-678a-4f8f-a4a0-f58faae07f4b", + "start": { + "$date": "2022-07-28T05:06:15.000Z" + }, + "end": { + "$date": "2022-07-28T05:41:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "f11845d9-4000-40e7-9add-77adee41f74c", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-28T05:06:36.000Z" + }, + "end": { + "$date": "2022-07-28T05:45:01.000Z" + }, + "events": [ + { + "uuid": "4313ed62-18c9-424a-9338-4141b2a4c8d7", + "start": { + "$date": "2022-07-28T05:06:36.000Z" + }, + "end": { + "$date": "2022-07-28T05:45:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0cf86543-222d-4ed8-8a48-a8177021cd4d", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-28T05:43:03.000Z" + }, + "end": { + "$date": "2022-07-28T06:07:03.000Z" + }, + "events": [ + { + "uuid": "b3e9199d-cc6e-4eff-b2f5-2223a37898b0", + "start": { + "$date": "2022-07-28T05:43:03.000Z" + }, + "end": { + "$date": "2022-07-28T06:07:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "587e1793-a176-4be7-97ff-fb4affe645a2", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-28T06:08:06.000Z" + }, + "end": { + "$date": "2022-07-28T06:50:04.000Z" + }, + "events": [ + { + "uuid": "134b3b4d-87fa-48fb-8ba9-7830444dccff", + "start": { + "$date": "2022-07-28T06:08:06.000Z" + }, + "end": { + "$date": "2022-07-28T06:50:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a6865e2e-9835-4514-a5ac-dff4a6ec5b99", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-28T06:54:55.000Z" + }, + "end": { + "$date": "2022-07-28T07:35:54.000Z" + }, + "events": [ + { + "uuid": "32f80d38-6fdb-469f-b239-8c8b32d512a9", + "start": { + "$date": "2022-07-28T06:54:55.000Z" + }, + "end": { + "$date": "2022-07-28T07:35:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "8a27192b-10a3-4a27-a32b-35c5afd39edb", + "uuid": "1f16e6ce-3907-4c8c-9859-1842ac034b6a", + "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "start": { + "$date": "2022-07-28T09:19:05.000Z" + }, + "end": { + "$date": "2022-07-28T10:56:17.000Z" + }, + "events": [ + { + "uuid": "db3c601f-3850-4891-8106-0f285e629d32", + "start": { + "$date": "2022-07-28T09:19:05.000Z" + }, + "end": { + "$date": "2022-07-28T10:56:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "88211474-aef4-40e6-8a00-e337760f7396", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-28T14:31:04.000Z" + }, + "end": { + "$date": "2022-07-28T14:36:23.000Z" + }, + "events": [ + { + "uuid": "c87e48f5-5c7a-492e-9945-db8909a88a62", + "start": { + "$date": "2022-07-28T14:31:04.000Z" + }, + "end": { + "$date": "2022-07-28T14:36:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "f4095ae0-5fb5-46e5-8f94-856a86a3dfa2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-29T00:03:59.000Z" + }, + "end": { + "$date": "2022-07-29T00:46:45.000Z" + }, + "events": [ + { + "uuid": "b5e65c50-0615-4eb3-9d39-041fd4d37b04", + "start": { + "$date": "2022-07-29T00:03:59.000Z" + }, + "end": { + "$date": "2022-07-29T00:46:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "98cd1851-dbe0-4f51-9b31-3772258c8f99", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T00:22:15.000Z" + }, + "end": { + "$date": "2022-07-29T00:28:05.000Z" + }, + "events": [ + { + "uuid": "fca7ce53-6e37-4468-9632-6fcefa60ecf5", + "start": { + "$date": "2022-07-29T00:22:15.000Z" + }, + "end": { + "$date": "2022-07-29T00:28:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1a2a1be8-947f-4496-8488-0807c9d81838", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-29T01:17:00.000Z" + }, + "end": { + "$date": "2022-07-29T01:31:54.000Z" + }, + "events": [ + { + "uuid": "5823afdb-0d3d-492b-8064-b445043ad2b9", + "start": { + "$date": "2022-07-29T01:17:00.000Z" + }, + "end": { + "$date": "2022-07-29T01:31:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b41d7597-d0a4-42d2-b10d-656ecb4eb347", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-29T00:47:10.000Z" + }, + "end": { + "$date": "2022-07-29T01:27:52.000Z" + }, + "events": [ + { + "uuid": "01ab9170-c7ed-4495-9a30-ff0050a96d3c", + "start": { + "$date": "2022-07-29T00:47:10.000Z" + }, + "end": { + "$date": "2022-07-29T01:27:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "ed5a0548-b392-449c-8c6f-3f75d6368b3d", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T00:58:25.000Z" + }, + "end": { + "$date": "2022-07-29T01:06:26.000Z" + }, + "events": [ + { + "uuid": "1be3df79-2ed1-4c12-a95f-82ea2c29e2f3", + "start": { + "$date": "2022-07-29T00:58:25.000Z" + }, + "end": { + "$date": "2022-07-29T01:06:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "08e0ec4a-cd88-472a-a818-b5aa9ca303dd", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T01:32:01.000Z" + }, + "end": { + "$date": "2022-07-29T01:32:16.000Z" + }, + "events": [ + { + "uuid": "95445065-4e78-4838-8481-98253a2a6463", + "start": { + "$date": "2022-07-29T01:32:01.000Z" + }, + "end": { + "$date": "2022-07-29T01:32:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "3005746f-4a1b-4f66-a121-6e4a95095fa6", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-29T01:30:52.000Z" + }, + "end": { + "$date": "2022-07-29T03:51:11.000Z" + }, + "events": [ + { + "uuid": "5c87d658-f00e-4d86-828b-4b7cbef96a8c", + "start": { + "$date": "2022-07-29T01:30:52.000Z" + }, + "end": { + "$date": "2022-07-29T03:51:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f0355f17-b433-4477-862e-715cc43df3dc", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-29T01:35:10.000Z" + }, + "end": { + "$date": "2022-07-29T01:50:50.000Z" + }, + "events": [ + { + "uuid": "e4f7953c-4442-46e9-853f-e0df24e55867", + "start": { + "$date": "2022-07-29T01:35:10.000Z" + }, + "end": { + "$date": "2022-07-29T01:50:50.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "edf9235b-5419-41bc-a969-dd3151624e63", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T01:50:47.000Z" + }, + "end": { + "$date": "2022-07-29T01:50:57.000Z" + }, + "events": [ + { + "uuid": "380fe737-5a7b-4d28-9f79-ce5d855e5cbe", + "start": { + "$date": "2022-07-29T01:50:47.000Z" + }, + "end": { + "$date": "2022-07-29T01:50:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6b1c41f-7b5c-4c05-932d-18c4f6147841", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-29T01:52:46.000Z" + }, + "end": { + "$date": "2022-07-29T02:07:36.000Z" + }, + "events": [ + { + "uuid": "cf5780fe-c44d-4417-b072-400bb3ae2bd6", + "start": { + "$date": "2022-07-29T01:52:46.000Z" + }, + "end": { + "$date": "2022-07-29T02:07:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "43a5a170-5f1a-4f27-a2f6-2b2055baee58", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T02:07:32.000Z" + }, + "end": { + "$date": "2022-07-29T02:07:42.000Z" + }, + "events": [ + { + "uuid": "e4b57ada-dff3-49c7-a423-9757bc1202e5", + "start": { + "$date": "2022-07-29T02:07:32.000Z" + }, + "end": { + "$date": "2022-07-29T02:07:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d99e320d-df73-484e-acbb-a7c5be757a4f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-29T02:04:39.000Z" + }, + "end": { + "$date": "2022-07-29T06:06:08.000Z" + }, + "events": [ + { + "uuid": "0ff3405b-1a7e-409f-adeb-f61d4c46de65", + "start": { + "$date": "2022-07-29T02:04:39.000Z" + }, + "end": { + "$date": "2022-07-29T06:06:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "a0a98500-f18b-4e62-a844-bcda6c6d8fe2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T02:31:53.000Z" + }, + "end": { + "$date": "2022-07-29T02:32:13.000Z" + }, + "events": [ + { + "uuid": "6fc5fef0-dedc-458b-9fd0-8d50162b18e9", + "start": { + "$date": "2022-07-29T02:31:53.000Z" + }, + "end": { + "$date": "2022-07-29T02:32:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "390c8641-ba8e-4d03-87e1-162f99ab1f27", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-07-29T02:13:17.000Z" + }, + "end": { + "$date": "2022-07-29T02:31:47.000Z" + }, + "events": [ + { + "uuid": "e73228fa-6f28-4779-a0f5-18ec792bd7e0", + "start": { + "$date": "2022-07-29T02:13:17.000Z" + }, + "end": { + "$date": "2022-07-29T02:31:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2270ff71-aa83-4d5a-99af-943f3c6c8680", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-07-29T02:12:27.000Z" + }, + "end": { + "$date": "2022-07-29T03:14:19.000Z" + }, + "events": [ + { + "uuid": "f473ed7c-a693-4298-8d8c-3833d061766b", + "start": { + "$date": "2022-07-29T02:12:27.000Z" + }, + "end": { + "$date": "2022-07-29T03:14:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "72e93d5f-e1ed-40ab-9e05-3e6605309183", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-29T02:14:03.000Z" + }, + "end": { + "$date": "2022-07-29T03:14:18.000Z" + }, + "events": [ + { + "uuid": "93ccc14a-4b4a-4ff3-bc1b-a7b6f704b826", + "start": { + "$date": "2022-07-29T02:14:03.000Z" + }, + "end": { + "$date": "2022-07-29T03:14:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "57bbceef-943c-4bec-9798-54adbe65408c", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-29T02:26:58.000Z" + }, + "end": { + "$date": "2022-07-29T03:20:20.000Z" + }, + "events": [ + { + "uuid": "7a1151a2-b9e5-4688-883e-eba95529fee2", + "start": { + "$date": "2022-07-29T02:26:58.000Z" + }, + "end": { + "$date": "2022-07-29T03:20:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1edefaf7-2fdb-450e-9659-d4c80201dd19", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T02:32:14.000Z" + }, + "end": { + "$date": "2022-07-29T02:33:23.000Z" + }, + "events": [ + { + "uuid": "09210465-4296-4c10-a570-60c33a5e72c3", + "start": { + "$date": "2022-07-29T02:32:14.000Z" + }, + "end": { + "$date": "2022-07-29T02:33:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "b5eaa757-7f4f-4164-8658-5bac3063c0cc", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-07-29T03:15:13.000Z" + }, + "end": { + "$date": "2022-07-29T04:18:04.000Z" + }, + "events": [ + { + "uuid": "fa90b008-2cac-45cf-b6ac-c5d3148a8cd2", + "start": { + "$date": "2022-07-29T03:15:13.000Z" + }, + "end": { + "$date": "2022-07-29T04:18:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "1f5d048e-4cbb-4174-8a5c-69ba9ab01897", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-29T03:15:28.000Z" + }, + "end": { + "$date": "2022-07-29T04:20:19.000Z" + }, + "events": [ + { + "uuid": "7f82a5e0-1687-45cf-85e7-469d8cc3f0e4", + "start": { + "$date": "2022-07-29T03:15:28.000Z" + }, + "end": { + "$date": "2022-07-29T04:20:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "40cbbb5a-3dfc-4047-a531-827d193b7c8e", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-29T03:24:39.000Z" + }, + "end": { + "$date": "2022-07-29T06:54:10.000Z" + }, + "events": [ + { + "uuid": "a498ef13-4496-48f5-a6b0-0460b6dc5500", + "start": { + "$date": "2022-07-29T03:24:39.000Z" + }, + "end": { + "$date": "2022-07-29T06:54:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "8c984338-529e-4a77-b761-d68b0df94609", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-29T05:47:57.000Z" + }, + "end": { + "$date": "2022-07-29T05:48:02.000Z" + }, + "events": [ + { + "uuid": "5a4ea0dc-9425-4aef-9377-b5e37a557ab0", + "start": { + "$date": "2022-07-29T05:47:57.000Z" + }, + "end": { + "$date": "2022-07-29T05:48:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "33e28b1a-f83b-4e77-b451-71938273054a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-29T07:20:24.000Z" + }, + "end": { + "$date": "2022-07-29T07:20:28.000Z" + }, + "events": [ + { + "uuid": "05045469-d8d4-4c66-849b-3b0056c328a5", + "start": { + "$date": "2022-07-29T07:20:24.000Z" + }, + "end": { + "$date": "2022-07-29T07:20:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "6941c41c-7c6f-46ab-9af7-a78b55c800dc", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T17:52:13.000Z" + }, + "end": { + "$date": "2022-07-29T18:06:14.000Z" + }, + "events": [ + { + "uuid": "e63f40f7-fd2c-4a43-9837-38b784b44f60", + "start": { + "$date": "2022-07-29T17:52:13.000Z" + }, + "end": { + "$date": "2022-07-29T18:06:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "fcd173e5-e3a2-46fd-aa65-79143f21f28f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-29T18:41:12.000Z" + }, + "end": { + "$date": "2022-07-29T19:34:36.000Z" + }, + "events": [ + { + "uuid": "c112dc87-cccf-4088-a39c-24dd1d12b7bb", + "start": { + "$date": "2022-07-29T18:41:12.000Z" + }, + "end": { + "$date": "2022-07-29T19:34:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "cd8dcbb2-b6fc-4e98-a851-f4af9150361a", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-29T19:04:21.000Z" + }, + "end": { + "$date": "2022-07-29T19:36:07.000Z" + }, + "events": [ + { + "uuid": "f260a0ee-aee4-49f0-99fe-92665e9b6b12", + "start": { + "$date": "2022-07-29T19:04:21.000Z" + }, + "end": { + "$date": "2022-07-29T19:36:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "72ff16ef-1c1b-4f48-aaa3-7038d7684b74", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-29T21:16:19.000Z" + }, + "end": { + "$date": "2022-07-29T21:45:41.000Z" + }, + "events": [ + { + "uuid": "10286e41-f640-4f8b-8c3c-cc78246686fc", + "start": { + "$date": "2022-07-29T21:16:19.000Z" + }, + "end": { + "$date": "2022-07-29T21:45:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "828c9ec0-5a05-406b-836b-3ca8485ce1bd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-29T21:50:37.000Z" + }, + "end": { + "$date": "2022-07-29T22:20:05.000Z" + }, + "events": [ + { + "uuid": "fe50c84d-1cc6-4ed9-9b63-6b5ede8106a6", + "start": { + "$date": "2022-07-29T21:50:37.000Z" + }, + "end": { + "$date": "2022-07-29T22:20:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f93e8d85-57b3-4f72-8f33-792dd1a333a8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-29T22:23:01.000Z" + }, + "end": { + "$date": "2022-07-29T22:52:46.000Z" + }, + "events": [ + { + "uuid": "4d1e52e7-7a7c-47e7-9803-35651a5e8ef3", + "start": { + "$date": "2022-07-29T22:23:01.000Z" + }, + "end": { + "$date": "2022-07-29T22:52:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "b0da8467-414c-4def-a8cf-483af2dd0223", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-29T22:23:37.000Z" + }, + "end": { + "$date": "2022-07-29T22:38:27.000Z" + }, + "events": [ + { + "uuid": "2e351e74-b244-4c8b-b465-cac19dc580d7", + "start": { + "$date": "2022-07-29T22:23:37.000Z" + }, + "end": { + "$date": "2022-07-29T22:38:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "45c72b7f-4693-48d2-9423-dd6860362034", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-29T22:37:15.000Z" + }, + "end": { + "$date": "2022-07-30T12:07:59.000Z" + }, + "events": [ + { + "uuid": "68aa523c-dd04-453c-b115-e930f09f7754", + "start": { + "$date": "2022-07-29T22:37:15.000Z" + }, + "end": { + "$date": "2022-07-30T07:39:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "20115764-7b1c-44e1-9ba7-5a95781953d7", + "start": { + "$date": "2022-07-30T07:39:15.000Z" + }, + "end": { + "$date": "2022-07-30T07:41:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "00a5cfc5-378f-4529-898a-069dfd857969", + "start": { + "$date": "2022-07-30T07:41:15.000Z" + }, + "end": { + "$date": "2022-07-30T12:07:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9e7576c5-71e4-48a6-9b11-7f505a49233e", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-29T22:58:17.000Z" + }, + "end": { + "$date": "2022-07-29T23:15:19.000Z" + }, + "events": [ + { + "uuid": "084a88d4-b8e5-4b72-88f4-31025bbcdec6", + "start": { + "$date": "2022-07-29T22:58:17.000Z" + }, + "end": { + "$date": "2022-07-29T23:15:19.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "698fc759-3aa1-4282-b866-1cb028c378bd", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T00:37:17.000Z" + }, + "end": { + "$date": "2022-07-30T00:41:12.000Z" + }, + "events": [ + { + "uuid": "7e131654-32b8-4236-b34f-d37ab35d0d2b", + "start": { + "$date": "2022-07-30T00:37:17.000Z" + }, + "end": { + "$date": "2022-07-30T00:41:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "477e0712-5cc8-4c3a-8c71-d20ec913ef6c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-30T01:32:44.000Z" + }, + "end": { + "$date": "2022-07-30T01:33:15.000Z" + }, + "events": [ + { + "uuid": "9b59f90b-5299-407b-a948-1416d321a2ae", + "start": { + "$date": "2022-07-30T01:32:44.000Z" + }, + "end": { + "$date": "2022-07-30T01:33:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "339cbad5-5f51-4f7b-a74c-30e42707b190", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T01:13:53.000Z" + }, + "end": { + "$date": "2022-07-30T01:39:15.000Z" + }, + "events": [ + { + "uuid": "06281bda-ff79-4d09-938a-14b18827111a", + "start": { + "$date": "2022-07-30T01:13:53.000Z" + }, + "end": { + "$date": "2022-07-30T01:39:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "0f719fd9-6135-4b2b-8a2e-55495b61f632", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T01:41:13.000Z" + }, + "end": { + "$date": "2022-07-30T02:49:27.000Z" + }, + "events": [ + { + "uuid": "54d38962-1340-4e0e-823d-b8ea0cd2ee5a", + "start": { + "$date": "2022-07-30T01:41:13.000Z" + }, + "end": { + "$date": "2022-07-30T02:49:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "892fda9e-1b72-4fa5-89a4-21e8cf620c74", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T02:08:18.000Z" + }, + "end": { + "$date": "2022-07-30T02:46:08.000Z" + }, + "events": [ + { + "uuid": "2ad6416f-8c80-4f3d-9595-62515a4ffc86", + "start": { + "$date": "2022-07-30T02:08:18.000Z" + }, + "end": { + "$date": "2022-07-30T02:46:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "677ddd43-d31e-4593-b895-7c6b23133dd5", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T02:50:37.000Z" + }, + "end": { + "$date": "2022-07-30T03:40:30.000Z" + }, + "events": [ + { + "uuid": "92a860ca-c52b-4f41-9170-9f42be9b7399", + "start": { + "$date": "2022-07-30T02:50:37.000Z" + }, + "end": { + "$date": "2022-07-30T03:40:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3f1fde15-e27b-4334-b874-7cb166ac30d4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T03:40:45.000Z" + }, + "end": { + "$date": "2022-07-30T07:12:43.000Z" + }, + "events": [ + { + "uuid": "4932a3c1-7035-4cff-9d9e-22f8c714afd7", + "start": { + "$date": "2022-07-30T03:40:45.000Z" + }, + "end": { + "$date": "2022-07-30T07:12:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ab1d39c1-ae73-4cd7-990f-ff1298df178b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T04:08:00.000Z" + }, + "end": { + "$date": "2022-07-30T05:39:52.000Z" + }, + "events": [ + { + "uuid": "cf9b04db-eabe-40bd-bc79-bef7e319124a", + "start": { + "$date": "2022-07-30T04:08:00.000Z" + }, + "end": { + "$date": "2022-07-30T05:39:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "83ce3140-48a8-4fc6-a589-b9d650983f88", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-30T04:22:48.000Z" + }, + "end": { + "$date": "2022-07-30T04:56:46.000Z" + }, + "events": [ + { + "uuid": "4ed2eee7-2433-46a0-ae54-986b803418e5", + "start": { + "$date": "2022-07-30T04:22:48.000Z" + }, + "end": { + "$date": "2022-07-30T04:56:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e48d07ec-b456-432a-bdc2-fc4962cce9ac", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-07-30T04:57:46.000Z" + }, + "end": { + "$date": "2022-07-30T05:30:11.000Z" + }, + "events": [ + { + "uuid": "0672916f-789a-4793-b215-5eaee6309829", + "start": { + "$date": "2022-07-30T04:57:46.000Z" + }, + "end": { + "$date": "2022-07-30T05:30:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "1c5222d7-e307-437e-9c4b-59e0342ed846", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T05:42:18.000Z" + }, + "end": { + "$date": "2022-07-30T06:46:40.000Z" + }, + "events": [ + { + "uuid": "b4658a4f-a285-4b7f-bed4-916f854a038a", + "start": { + "$date": "2022-07-30T05:42:18.000Z" + }, + "end": { + "$date": "2022-07-30T06:46:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "a0e27f66-bff8-4073-be00-601110a9118f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T05:43:33.000Z" + }, + "end": { + "$date": "2022-07-30T05:45:48.000Z" + }, + "events": [ + { + "uuid": "dce89899-d488-48b0-becf-55c2d3977675", + "start": { + "$date": "2022-07-30T05:43:33.000Z" + }, + "end": { + "$date": "2022-07-30T05:45:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "401f8829-6e45-48d3-b683-5e846a4ea8b8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T05:47:19.000Z" + }, + "end": { + "$date": "2022-07-30T06:47:00.000Z" + }, + "events": [ + { + "uuid": "1e75b5ab-95f8-4e91-86bf-fd0c53498632", + "start": { + "$date": "2022-07-30T05:47:19.000Z" + }, + "end": { + "$date": "2022-07-30T06:47:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "9e1e801d-9792-4620-98fd-c99af75efb4d", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-30T05:52:43.000Z" + }, + "end": { + "$date": "2022-07-30T07:00:10.000Z" + }, + "events": [ + { + "uuid": "9b268ab5-1414-46c7-915f-816ca9318ede", + "start": { + "$date": "2022-07-30T05:52:43.000Z" + }, + "end": { + "$date": "2022-07-30T07:00:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3dd28255-e2a2-4cb0-a064-e14ad7c334c3", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T07:08:16.000Z" + }, + "end": { + "$date": "2022-07-30T07:24:02.000Z" + }, + "events": [ + { + "uuid": "e8f174c0-2ae3-4c31-89c3-5f5afc4c05da", + "start": { + "$date": "2022-07-30T07:08:16.000Z" + }, + "end": { + "$date": "2022-07-30T07:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0e1b0797-c344-42d2-9dd2-a6a2dd3f8911", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T07:13:03.000Z" + }, + "end": { + "$date": "2022-07-30T07:15:23.000Z" + }, + "events": [ + { + "uuid": "0f3b39ea-531d-496b-b698-29bec4224d0f", + "start": { + "$date": "2022-07-30T07:13:03.000Z" + }, + "end": { + "$date": "2022-07-30T07:15:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "361fa809-7271-4b7e-a692-0648378e699e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-07-30T09:48:54.000Z" + }, + "end": { + "$date": "2022-07-30T09:48:58.000Z" + }, + "events": [ + { + "uuid": "b46ab886-0f32-4e03-b91d-1996dc920b44", + "start": { + "$date": "2022-07-30T09:48:54.000Z" + }, + "end": { + "$date": "2022-07-30T09:48:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "28a0b669-103e-4066-ae54-c6e0dd929f43", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T16:23:34.000Z" + }, + "end": { + "$date": "2022-07-30T16:42:00.000Z" + }, + "events": [ + { + "uuid": "16b876ae-6b4a-48d0-8b1c-ff3936645970", + "start": { + "$date": "2022-07-30T16:23:34.000Z" + }, + "end": { + "$date": "2022-07-30T16:42:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "a2e17078-0c70-4ac1-b59c-e19658b3f9fb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T16:54:01.000Z" + }, + "end": { + "$date": "2022-07-30T17:26:33.000Z" + }, + "events": [ + { + "uuid": "96ccc5c7-0b88-475e-a735-dffc8e0a3bbe", + "start": { + "$date": "2022-07-30T16:54:01.000Z" + }, + "end": { + "$date": "2022-07-30T17:04:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "3280f006-c10e-440f-8017-6d3827b1d9dc", + "start": { + "$date": "2022-07-30T17:04:01.000Z" + }, + "end": { + "$date": "2022-07-30T17:09:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "9e8a1e10-8ea7-4a25-8683-8c808d2403de", + "start": { + "$date": "2022-07-30T17:09:01.000Z" + }, + "end": { + "$date": "2022-07-30T17:26:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "e05c1d95-ff83-4476-af30-ed66a02a6bbb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-30T17:11:46.000Z" + }, + "end": { + "$date": "2022-07-30T18:09:02.000Z" + }, + "events": [ + { + "uuid": "39f88fa2-2050-42b1-8d97-f0d426748658", + "start": { + "$date": "2022-07-30T17:11:46.000Z" + }, + "end": { + "$date": "2022-07-30T18:09:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "9081179e-91f1-4014-af5c-37b8895a4f3b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T17:27:23.000Z" + }, + "end": { + "$date": "2022-07-30T18:41:40.000Z" + }, + "events": [ + { + "uuid": "038c73a1-7fc3-4548-a1f1-7d533757eb94", + "start": { + "$date": "2022-07-30T17:27:23.000Z" + }, + "end": { + "$date": "2022-07-30T18:41:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "cb161313-5515-4fce-9fbb-0b6138c894ba", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T18:42:55.000Z" + }, + "end": { + "$date": "2022-07-30T19:21:56.000Z" + }, + "events": [ + { + "uuid": "653ddd92-aad8-4bb1-b6b4-1eae91143097", + "start": { + "$date": "2022-07-30T18:42:55.000Z" + }, + "end": { + "$date": "2022-07-30T19:21:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "97b9198a-b736-4021-805d-2c50047386aa", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T19:22:41.000Z" + }, + "end": { + "$date": "2022-07-30T19:34:23.000Z" + }, + "events": [ + { + "uuid": "44911167-8876-455f-a78e-28709eb3103b", + "start": { + "$date": "2022-07-30T19:22:41.000Z" + }, + "end": { + "$date": "2022-07-30T19:34:23.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", + "uuid": "381d79a5-b46e-4022-8a4d-75ebdfae2212", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-30T19:35:12.000Z" + }, + "end": { + "$date": "2022-07-30T20:31:29.000Z" + }, + "events": [ + { + "uuid": "5b93f144-8d87-4de4-aee4-6930c92fafe2", + "start": { + "$date": "2022-07-30T19:35:12.000Z" + }, + "end": { + "$date": "2022-07-30T20:31:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "b3dd996c-1004-4ee1-9364-a4d13957e3c4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T20:33:48.000Z" + }, + "end": { + "$date": "2022-07-30T21:49:08.000Z" + }, + "events": [ + { + "uuid": "4be4f0f1-0514-4e95-a45c-a6c203d5ce66", + "start": { + "$date": "2022-07-30T20:33:48.000Z" + }, + "end": { + "$date": "2022-07-30T21:49:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "e997b06e-8117-42a0-b117-322173eb4f7b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-30T21:34:19.000Z" + }, + "end": { + "$date": "2022-07-30T23:49:00.000Z" + }, + "events": [ + { + "uuid": "0ff327a7-de6d-4148-9afc-1a33d64792e9", + "start": { + "$date": "2022-07-30T21:34:19.000Z" + }, + "end": { + "$date": "2022-07-30T22:21:19.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "77917c27-555c-419d-9e30-c26bc62f26e0", + "start": { + "$date": "2022-07-30T22:21:19.000Z" + }, + "end": { + "$date": "2022-07-30T22:25:19.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0c020a88-0aa8-4884-85b8-69da0b65f007", + "start": { + "$date": "2022-07-30T22:25:19.000Z" + }, + "end": { + "$date": "2022-07-30T23:49:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "c9e3f240-d1e2-444d-af11-fd91aff8848b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T21:55:31.000Z" + }, + "end": { + "$date": "2022-07-30T21:58:45.000Z" + }, + "events": [ + { + "uuid": "b044d457-e8a9-4367-9527-bc9f0eed539f", + "start": { + "$date": "2022-07-30T21:55:31.000Z" + }, + "end": { + "$date": "2022-07-30T21:58:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "3cb19779-ffe9-43f9-a166-80c7ac9af1a4", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-30T21:59:01.000Z" + }, + "end": { + "$date": "2022-07-31T01:40:03.000Z" + }, + "events": [ + { + "uuid": "1fcfe127-e32a-4d22-8456-b23b68203308", + "start": { + "$date": "2022-07-30T21:59:01.000Z" + }, + "end": { + "$date": "2022-07-31T01:26:01.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "0db330c3-cab6-4940-a32d-ce0e2b4c532b", + "start": { + "$date": "2022-07-31T01:26:01.000Z" + }, + "end": { + "$date": "2022-07-31T01:31:01.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "28d5bcb0-cc76-4dd9-a979-9859f1b2fff4", + "start": { + "$date": "2022-07-31T01:31:01.000Z" + }, + "end": { + "$date": "2022-07-31T01:40:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "71c949ae-9a14-40cc-aea3-5bfa62a92184", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-30T22:06:20.000Z" + }, + "end": { + "$date": "2022-07-30T22:30:15.000Z" + }, + "events": [ + { + "uuid": "05d01489-468b-4d41-b766-229e5e01253f", + "start": { + "$date": "2022-07-30T22:06:20.000Z" + }, + "end": { + "$date": "2022-07-30T22:30:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "ce73f85a-4ad0-4be6-8116-55fefe13970b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-31T00:43:05.000Z" + }, + "end": { + "$date": "2022-07-31T01:01:05.000Z" + }, + "events": [ + { + "uuid": "d815f4d9-2df7-4a09-9ffb-9d05e6734e83", + "start": { + "$date": "2022-07-31T00:43:05.000Z" + }, + "end": { + "$date": "2022-07-31T01:01:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "2fd0bf12-264b-4291-b00f-dbac98c269b3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-30T23:49:58.000Z" + }, + "end": { + "$date": "2022-07-31T01:00:43.000Z" + }, + "events": [ + { + "uuid": "7506fbf4-256f-4723-85ee-230c7c5b2211", + "start": { + "$date": "2022-07-30T23:49:58.000Z" + }, + "end": { + "$date": "2022-07-31T01:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "124192b5-7003-477f-b35f-6534ca3d069c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T00:06:30.000Z" + }, + "end": { + "$date": "2022-07-31T00:41:00.000Z" + }, + "events": [ + { + "uuid": "0bc8d46d-cd94-4632-99fe-56ac141cb161", + "start": { + "$date": "2022-07-31T00:06:30.000Z" + }, + "end": { + "$date": "2022-07-31T00:41:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e03fd54f-5027-4633-b731-a74d71e81f25", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T00:43:16.000Z" + }, + "end": { + "$date": "2022-07-31T01:01:10.000Z" + }, + "events": [ + { + "uuid": "71cf2ef0-af21-46fb-b8ba-368bce7bb93a", + "start": { + "$date": "2022-07-31T00:43:16.000Z" + }, + "end": { + "$date": "2022-07-31T00:56:16.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7400ae4f-eff8-4895-9553-05804b93120a", + "start": { + "$date": "2022-07-31T00:56:16.000Z" + }, + "end": { + "$date": "2022-07-31T01:01:10.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "09dc7926-f42c-424d-8523-e80341465c22", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-31T00:55:15.000Z" + }, + "end": { + "$date": "2022-07-31T04:21:35.000Z" + }, + "events": [ + { + "uuid": "d20b1c63-62a8-4a0f-8e24-d8ccf78f012b", + "start": { + "$date": "2022-07-31T00:55:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:21:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d66111f5-2fdb-47af-b29b-f0563e4759e2", + "start": { + "$date": "2022-07-31T03:21:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:25:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "af07a440-eee6-4cd7-8801-75a319010a58", + "start": { + "$date": "2022-07-31T03:25:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:26:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "88b4f04c-69d6-49bd-a326-d546c0e466fd", + "start": { + "$date": "2022-07-31T03:26:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:36:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "1ca17f85-f7f6-4593-a3ac-29918995fa60", + "start": { + "$date": "2022-07-31T03:36:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:37:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "437e8af0-fc9e-4ba2-8c48-917d90274a3f", + "start": { + "$date": "2022-07-31T03:37:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:38:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "f8353d3a-554b-4ebb-bb94-8ad7ba4f9118", + "start": { + "$date": "2022-07-31T03:38:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:39:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e3ad3d25-c996-45bc-a04b-9700b3abb57e", + "start": { + "$date": "2022-07-31T03:39:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:55:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "83c5827f-47ef-4f76-8f64-b1ceba3fd366", + "start": { + "$date": "2022-07-31T03:55:15.000Z" + }, + "end": { + "$date": "2022-07-31T03:56:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "296db0eb-f71b-4b76-be8b-416d07e4e62a", + "start": { + "$date": "2022-07-31T03:56:15.000Z" + }, + "end": { + "$date": "2022-07-31T04:06:15.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "99359f98-1abc-40de-847e-deaa52c0b815", + "start": { + "$date": "2022-07-31T04:06:15.000Z" + }, + "end": { + "$date": "2022-07-31T04:07:15.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "8bdc6151-69fb-4223-8d36-e71a6a172440", + "start": { + "$date": "2022-07-31T04:07:15.000Z" + }, + "end": { + "$date": "2022-07-31T04:21:35.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "b72edef2-f61c-4b6e-875a-06e3fbd4bcb9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-31T01:11:36.000Z" + }, + "end": { + "$date": "2022-07-31T02:32:58.000Z" + }, + "events": [ + { + "uuid": "ca727ec7-9b80-4238-9fa6-0abadd459704", + "start": { + "$date": "2022-07-31T01:11:36.000Z" + }, + "end": { + "$date": "2022-07-31T02:32:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "56d11f16-8ae5-4a1f-b10b-d3c4779c7ecb", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-31T01:27:50.000Z" + }, + "end": { + "$date": "2022-07-31T04:24:02.000Z" + }, + "events": [ + { + "uuid": "8ace4cc2-fddd-480a-93f4-6e48a0287e29", + "start": { + "$date": "2022-07-31T01:27:50.000Z" + }, + "end": { + "$date": "2022-07-31T04:24:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "5923bfd0-3e5d-438f-97b2-1b15c0cece2f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T01:32:49.000Z" + }, + "end": { + "$date": "2022-07-31T01:43:49.000Z" + }, + "events": [ + { + "uuid": "e4cf7197-3f09-4416-a8b8-a0a8a9db7797", + "start": { + "$date": "2022-07-31T01:32:49.000Z" + }, + "end": { + "$date": "2022-07-31T01:43:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "f5bfad0c-b9db-43b6-9be6-f2d84dac09ff", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T01:43:55.000Z" + }, + "end": { + "$date": "2022-07-31T01:52:09.000Z" + }, + "events": [ + { + "uuid": "7b60f2a7-1b23-455d-82a6-16cba6ba31f2", + "start": { + "$date": "2022-07-31T01:43:55.000Z" + }, + "end": { + "$date": "2022-07-31T01:52:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "44be8b28-6a82-4119-823a-2c15bf430086", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T01:55:36.000Z" + }, + "end": { + "$date": "2022-07-31T02:24:21.000Z" + }, + "events": [ + { + "uuid": "8a913c79-fbb6-4dde-87a3-c0895b3dd67b", + "start": { + "$date": "2022-07-31T01:55:36.000Z" + }, + "end": { + "$date": "2022-07-31T02:24:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "92b4cd53-1341-4da5-b5ce-5121f68c3ae8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-31T02:10:27.000Z" + }, + "end": { + "$date": "2022-07-31T05:20:40.000Z" + }, + "events": [ + { + "uuid": "8234a6d9-feb5-484c-8435-6af644a06d51", + "start": { + "$date": "2022-07-31T02:10:27.000Z" + }, + "end": { + "$date": "2022-07-31T05:20:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "c7397d6f-fdd7-401d-98c7-32c1910fa51d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T02:25:32.000Z" + }, + "end": { + "$date": "2022-07-31T03:53:43.000Z" + }, + "events": [ + { + "uuid": "d6b74487-3ea8-4674-b8b9-4f3fdc4e3bad", + "start": { + "$date": "2022-07-31T02:25:32.000Z" + }, + "end": { + "$date": "2022-07-31T03:53:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "9866402c-8056-48fb-bfda-061d290131de", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-07-31T03:03:17.000Z" + }, + "end": { + "$date": "2022-07-31T06:43:12.000Z" + }, + "events": [ + { + "uuid": "8fdedd4f-c0c1-46c9-8ff7-9d75b91608ee", + "start": { + "$date": "2022-07-31T03:03:17.000Z" + }, + "end": { + "$date": "2022-07-31T06:43:12.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "ddd97e88-0f11-4348-86f4-d32867f56ed6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T05:01:22.000Z" + }, + "end": { + "$date": "2022-07-31T05:29:17.000Z" + }, + "events": [ + { + "uuid": "e6163e4b-95a1-4148-9175-33848d8b6cba", + "start": { + "$date": "2022-07-31T05:01:22.000Z" + }, + "end": { + "$date": "2022-07-31T05:29:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "b74bc9e7-20a2-4da8-ac0d-77f654da57a5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-31T05:02:00.000Z" + }, + "end": { + "$date": "2022-07-31T10:39:35.000Z" + }, + "events": [ + { + "uuid": "d279089c-1c77-45bf-86fa-f66cde125807", + "start": { + "$date": "2022-07-31T05:02:00.000Z" + }, + "end": { + "$date": "2022-07-31T10:39:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0abe3c85-b2d6-469a-992d-f80a3f15c079", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-31T05:20:55.000Z" + }, + "end": { + "$date": "2022-07-31T07:04:06.000Z" + }, + "events": [ + { + "uuid": "b7768be9-e6f6-4ea5-8f04-5aeff5f594e3", + "start": { + "$date": "2022-07-31T05:20:55.000Z" + }, + "end": { + "$date": "2022-07-31T07:04:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "dbcf7530-89de-411c-91e5-415814dfe218", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-31T06:33:35.000Z" + }, + "end": { + "$date": "2022-07-31T09:09:06.000Z" + }, + "events": [ + { + "uuid": "34bc2cdb-d7a2-4777-a122-a218cacf74fe", + "start": { + "$date": "2022-07-31T06:33:35.000Z" + }, + "end": { + "$date": "2022-07-31T07:30:35.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "4b6b7f72-bba9-4a3b-b887-95a2e4ccc1c7", + "start": { + "$date": "2022-07-31T07:30:35.000Z" + }, + "end": { + "$date": "2022-07-31T08:59:35.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "48e4a4c8-25ce-4628-83ed-09dbafbc2b05", + "start": { + "$date": "2022-07-31T08:59:35.000Z" + }, + "end": { + "$date": "2022-07-31T09:09:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9e3ff18b-6315-458c-a6dc-28d850884d21", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T06:44:09.000Z" + }, + "end": { + "$date": "2022-07-31T07:06:34.000Z" + }, + "events": [ + { + "uuid": "894a899d-40ef-44eb-93e9-ee87d8d0f4a1", + "start": { + "$date": "2022-07-31T06:44:09.000Z" + }, + "end": { + "$date": "2022-07-31T07:06:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "1baf6dcb-f673-4dfd-b7d0-07d835a1f29b", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-31T10:21:46.000Z" + }, + "end": { + "$date": "2022-07-31T11:27:46.000Z" + }, + "events": [ + { + "uuid": "dae03ca3-5d7c-4644-89c6-bddb97d96643", + "start": { + "$date": "2022-07-31T10:21:46.000Z" + }, + "end": { + "$date": "2022-07-31T11:27:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "20acbc52-06cf-4a23-8054-e781e50ecefd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-31T14:14:18.000Z" + }, + "end": { + "$date": "2022-07-31T17:17:11.000Z" + }, + "events": [ + { + "uuid": "5b5e33ef-c202-4d60-84c6-8f1e0e589130", + "start": { + "$date": "2022-07-31T14:14:18.000Z" + }, + "end": { + "$date": "2022-07-31T17:17:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", + "uuid": "49a99bbb-4b02-4968-98e4-56494590c115", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-31T15:03:10.000Z" + }, + "end": { + "$date": "2022-07-31T16:11:57.000Z" + }, + "events": [ + { + "uuid": "da0efdab-fd8c-4e53-9b74-f9278baad6a2", + "start": { + "$date": "2022-07-31T15:03:10.000Z" + }, + "end": { + "$date": "2022-07-31T16:11:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0a45a288-83ce-4fb0-ad9f-8db80fa2ff53", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-07-31T15:09:57.000Z" + }, + "end": { + "$date": "2022-07-31T15:13:05.000Z" + }, + "events": [ + { + "uuid": "2323f37a-3cbd-4386-9439-be66da837c32", + "start": { + "$date": "2022-07-31T15:09:57.000Z" + }, + "end": { + "$date": "2022-07-31T15:13:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "3232fd9b-19f1-40d6-8ba5-13fb423dcaea", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-07-31T16:14:12.000Z" + }, + "end": { + "$date": "2022-07-31T17:32:53.000Z" + }, + "events": [ + { + "uuid": "1bd8ffd6-c272-454c-9fad-6ea0a981cdef", + "start": { + "$date": "2022-07-31T16:14:12.000Z" + }, + "end": { + "$date": "2022-07-31T17:32:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b771006f-809d-474f-bc58-90087c3fb96f", + "uuid": "9b6fcad9-5422-4bc3-8716-1ae6b6df742b", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-31T17:21:21.000Z" + }, + "end": { + "$date": "2022-07-31T17:29:02.000Z" + }, + "events": [ + { + "uuid": "fd632165-6ed3-488e-9165-0bcc4b539680", + "start": { + "$date": "2022-07-31T17:21:21.000Z" + }, + "end": { + "$date": "2022-07-31T17:29:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "5d4804bf-c046-415d-88ea-cd6345124e7e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-31T17:35:18.000Z" + }, + "end": { + "$date": "2022-07-31T21:27:27.000Z" + }, + "events": [ + { + "uuid": "7c159d8f-7b11-4f57-bcad-a1bbc586e145", + "start": { + "$date": "2022-07-31T17:35:18.000Z" + }, + "end": { + "$date": "2022-07-31T21:27:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "719249ae-bce1-4fc5-bfe1-ebb62a060037", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T20:24:29.000Z" + }, + "end": { + "$date": "2022-07-31T21:21:41.000Z" + }, + "events": [ + { + "uuid": "3f9ff3d2-bae5-423a-b890-f0c22888154c", + "start": { + "$date": "2022-07-31T20:24:29.000Z" + }, + "end": { + "$date": "2022-07-31T21:04:29.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "9c3e6950-fa10-4e2d-92e3-36c9c67f5dc3", + "start": { + "$date": "2022-07-31T21:04:29.000Z" + }, + "end": { + "$date": "2022-07-31T21:09:29.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8951515c-1daf-4138-ac3f-ec93be066702", + "start": { + "$date": "2022-07-31T21:09:29.000Z" + }, + "end": { + "$date": "2022-07-31T21:21:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "0a7aae18-7b5c-4f64-93c7-9af9cfac776a", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-07-31T19:18:13.000Z" + }, + "end": { + "$date": "2022-08-01T06:59:02.000Z" + }, + "events": [ + { + "uuid": "857cedd6-7a40-45ab-a258-acdff0c14879", + "start": { + "$date": "2022-07-31T19:18:13.000Z" + }, + "end": { + "$date": "2022-08-01T00:06:13.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "e5782582-4b20-42db-87eb-035d9551e774", + "start": { + "$date": "2022-08-01T00:06:13.000Z" + }, + "end": { + "$date": "2022-08-01T00:11:13.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "8a0462a9-8fec-40ee-b416-1c77439468be", + "start": { + "$date": "2022-08-01T00:11:13.000Z" + }, + "end": { + "$date": "2022-08-01T06:59:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "23b7ae05-8c1b-41cf-8cfe-52746de5a925", + "uuid": "43372346-31b1-49ba-9908-d87a7178d417", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-07-31T23:29:55.000Z" + }, + "end": { + "$date": "2022-07-31T23:30:00.000Z" + }, + "events": [ + { + "uuid": "cbdb5ecb-795e-4229-b56a-a74207a95b1b", + "start": { + "$date": "2022-07-31T23:29:55.000Z" + }, + "end": { + "$date": "2022-07-31T23:30:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2341297f-e0de-4aff-9a70-a452eab32bcb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T21:43:24.000Z" + }, + "end": { + "$date": "2022-07-31T22:25:54.000Z" + }, + "events": [ + { + "uuid": "954ebc78-e75f-42a0-a349-2677a8623785", + "start": { + "$date": "2022-07-31T21:43:24.000Z" + }, + "end": { + "$date": "2022-07-31T22:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "bf40cade-76a6-43cf-9ba1-c56f2c7222af", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-07-31T22:31:10.000Z" + }, + "end": { + "$date": "2022-07-31T23:02:01.000Z" + }, + "events": [ + { + "uuid": "fb6c8d8a-a390-4109-a4ba-f303a746738d", + "start": { + "$date": "2022-07-31T22:31:10.000Z" + }, + "end": { + "$date": "2022-07-31T23:02:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", + "uuid": "c00f9281-689c-4cc9-b3f6-cd8c6dddcb18", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-07-31T23:22:58.000Z" + }, + "end": { + "$date": "2022-08-01T00:06:35.000Z" + }, + "events": [ + { + "uuid": "60dfa4b5-962f-4623-b9e2-0e70bd0e9a1f", + "start": { + "$date": "2022-07-31T23:22:58.000Z" + }, + "end": { + "$date": "2022-08-01T00:06:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "7d3d3990-175c-443a-905e-5028abc71d36", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-07-31T23:40:12.000Z" + }, + "end": { + "$date": "2022-08-01T00:24:39.000Z" + }, + "events": [ + { + "uuid": "80477c11-4ac0-4bb9-9319-d57a4e02f934", + "start": { + "$date": "2022-07-31T23:40:12.000Z" + }, + "end": { + "$date": "2022-08-01T00:24:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "afec22d4-f962-46de-9102-406c0cb54ec4", + "uuid": "8fcd84ea-69e0-48a2-a499-b1de76a872bd", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T00:07:40.000Z" + }, + "end": { + "$date": "2022-08-01T04:06:54.000Z" + }, + "events": [ + { + "uuid": "6a43c4ed-8987-49d6-8a51-2a5572fafd33", + "start": { + "$date": "2022-08-01T00:07:40.000Z" + }, + "end": { + "$date": "2022-08-01T04:06:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b17acf75-ebc0-4764-b171-ea47786bed9b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-01T01:16:49.000Z" + }, + "end": { + "$date": "2022-08-01T02:05:06.000Z" + }, + "events": [ + { + "uuid": "01c2a9be-3536-495a-9a54-c149dd6d1b6c", + "start": { + "$date": "2022-08-01T01:16:49.000Z" + }, + "end": { + "$date": "2022-08-01T02:05:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b292d1e0-c3a1-485e-b6fb-d1707ab95247", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-01T02:32:59.000Z" + }, + "end": { + "$date": "2022-08-01T02:47:10.000Z" + }, + "events": [ + { + "uuid": "b8851fea-2822-4421-bdd4-b04d25b85bf7", + "start": { + "$date": "2022-08-01T02:32:59.000Z" + }, + "end": { + "$date": "2022-08-01T02:47:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "485b30a1-d9a9-431d-a55b-05010b2b089b", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-08-01T01:30:07.000Z" + }, + "end": { + "$date": "2022-08-01T01:32:57.000Z" + }, + "events": [ + { + "uuid": "6713e564-f349-4793-a0b4-650393ffc966", + "start": { + "$date": "2022-08-01T01:30:07.000Z" + }, + "end": { + "$date": "2022-08-01T01:32:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "9727d2c9-2678-41f4-8a56-1fbd16b62f95", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T01:40:46.000Z" + }, + "end": { + "$date": "2022-08-01T02:02:31.000Z" + }, + "events": [ + { + "uuid": "f156ffdb-2ddd-4ffd-9c91-93ce3e77f8bd", + "start": { + "$date": "2022-08-01T01:40:46.000Z" + }, + "end": { + "$date": "2022-08-01T02:02:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", + "uuid": "1743e4d6-8243-461c-a641-c5adf2c57f96", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-08-01T01:42:42.000Z" + }, + "end": { + "$date": "2022-08-01T03:13:30.000Z" + }, + "events": [ + { + "uuid": "ae10c444-1ea2-46bc-afcc-290177a13897", + "start": { + "$date": "2022-08-01T01:42:42.000Z" + }, + "end": { + "$date": "2022-08-01T03:13:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "499ba08c-1117-462b-800e-1f1c0720142e", + "uuid": "86ec8507-f4a8-4cfd-b0fe-09c7b3ee336e", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T02:02:42.000Z" + }, + "end": { + "$date": "2022-08-01T02:04:56.000Z" + }, + "events": [ + { + "uuid": "e4c39455-ea19-4647-ae87-65ea0ca2bfd0", + "start": { + "$date": "2022-08-01T02:02:42.000Z" + }, + "end": { + "$date": "2022-08-01T02:04:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "55b46a16-5839-4881-921e-cd799c30b6e1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-01T02:07:21.000Z" + }, + "end": { + "$date": "2022-08-01T02:46:38.000Z" + }, + "events": [ + { + "uuid": "17097e1d-3206-4964-a2cc-ac0d36897883", + "start": { + "$date": "2022-08-01T02:07:21.000Z" + }, + "end": { + "$date": "2022-08-01T02:46:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", + "uuid": "bed6d3c0-2155-40d2-aa8f-cea3ca1c8983", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T02:08:42.000Z" + }, + "end": { + "$date": "2022-08-01T02:47:53.000Z" + }, + "events": [ + { + "uuid": "fba6b350-17ef-4b2e-9caa-b47dfec215c0", + "start": { + "$date": "2022-08-01T02:08:42.000Z" + }, + "end": { + "$date": "2022-08-01T02:47:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "53eef4b3-6934-4f2f-99fa-7eea06566e21", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-01T02:47:13.000Z" + }, + "end": { + "$date": "2022-08-01T02:50:33.000Z" + }, + "events": [ + { + "uuid": "947bd77f-35f3-46cd-aeba-cd71959c00c8", + "start": { + "$date": "2022-08-01T02:47:13.000Z" + }, + "end": { + "$date": "2022-08-01T02:50:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "3413e239-00a2-4f42-ac37-00cb2db7ca94", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-01T02:50:53.000Z" + }, + "end": { + "$date": "2022-08-01T03:50:20.000Z" + }, + "events": [ + { + "uuid": "1c8cd47f-9586-428e-bc35-dbbd0eff3e4c", + "start": { + "$date": "2022-08-01T02:50:53.000Z" + }, + "end": { + "$date": "2022-08-01T03:50:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e2082dcd-1c66-4bda-ba00-878699924009", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T02:50:58.000Z" + }, + "end": { + "$date": "2022-08-01T03:50:24.000Z" + }, + "events": [ + { + "uuid": "85eddac7-0daa-4bce-8809-b9073cd8b80c", + "start": { + "$date": "2022-08-01T02:50:58.000Z" + }, + "end": { + "$date": "2022-08-01T03:50:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "96f58641-db8c-4373-90ff-3c91acec7fdb", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T04:45:49.000Z" + }, + "end": { + "$date": "2022-08-01T06:37:04.000Z" + }, + "events": [ + { + "uuid": "af8148fc-3427-458d-a4b7-fb8bd879ec1b", + "start": { + "$date": "2022-08-01T04:45:49.000Z" + }, + "end": { + "$date": "2022-08-01T06:37:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6462e349-004a-40e7-92a2-a78a3fa26631", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-01T05:26:58.000Z" + }, + "end": { + "$date": "2022-08-01T05:46:33.000Z" + }, + "events": [ + { + "uuid": "a97feb32-361e-4fc2-b9fe-e94c11a07782", + "start": { + "$date": "2022-08-01T05:26:58.000Z" + }, + "end": { + "$date": "2022-08-01T05:46:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e9aa5c7-2f14-4811-848f-596fa1f9b89a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T05:27:05.000Z" + }, + "end": { + "$date": "2022-08-01T05:46:31.000Z" + }, + "events": [ + { + "uuid": "b8d0d645-3990-4d4d-903d-e22ff17d1c72", + "start": { + "$date": "2022-08-01T05:27:05.000Z" + }, + "end": { + "$date": "2022-08-01T05:46:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "de3bae76-78c6-4a7b-a0b5-300e2ecbebfb", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-01T05:50:08.000Z" + }, + "end": { + "$date": "2022-08-01T06:08:13.000Z" + }, + "events": [ + { + "uuid": "6c0feb6a-c5b5-4cb9-a102-e13e98d69d07", + "start": { + "$date": "2022-08-01T05:50:08.000Z" + }, + "end": { + "$date": "2022-08-01T06:08:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dce0cea5-e43c-451b-96ba-3e9cd2b3d4fc", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T05:50:11.000Z" + }, + "end": { + "$date": "2022-08-01T06:08:29.000Z" + }, + "events": [ + { + "uuid": "d24a7e59-6a86-4a52-ae86-174e2d01e7bd", + "start": { + "$date": "2022-08-01T05:50:11.000Z" + }, + "end": { + "$date": "2022-08-01T06:08:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "44157d00-65d9-4e78-9846-7572c4a0960d", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-01T06:10:28.000Z" + }, + "end": { + "$date": "2022-08-01T06:37:59.000Z" + }, + "events": [ + { + "uuid": "d68228ed-2c0d-46a8-b733-4c1a6db4891c", + "start": { + "$date": "2022-08-01T06:10:28.000Z" + }, + "end": { + "$date": "2022-08-01T06:37:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c3476b70-200d-4161-ae1a-3526bf914358", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T06:10:32.000Z" + }, + "end": { + "$date": "2022-08-01T06:38:08.000Z" + }, + "events": [ + { + "uuid": "ee24e279-dd35-480a-a238-76433b6b0569", + "start": { + "$date": "2022-08-01T06:10:32.000Z" + }, + "end": { + "$date": "2022-08-01T06:38:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e4e6426b-4e45-4ba5-9c17-07c46cd056e2", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-01T06:41:49.000Z" + }, + "end": { + "$date": "2022-08-01T06:59:54.000Z" + }, + "events": [ + { + "uuid": "d9fa52e4-6d20-44ce-8141-a0a82d29d90b", + "start": { + "$date": "2022-08-01T06:41:49.000Z" + }, + "end": { + "$date": "2022-08-01T06:59:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "28a8aa52-e234-40fc-81a8-41c33da63afe", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T06:39:14.000Z" + }, + "end": { + "$date": "2022-08-01T06:39:57.000Z" + }, + "events": [ + { + "uuid": "72fe27d9-dc0c-4077-b608-bf586a64d2b4", + "start": { + "$date": "2022-08-01T06:39:14.000Z" + }, + "end": { + "$date": "2022-08-01T06:39:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a4bc3816-7896-42e3-b712-4dbb5953afb9", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T06:41:53.000Z" + }, + "end": { + "$date": "2022-08-01T06:59:59.000Z" + }, + "events": [ + { + "uuid": "417faf0a-6796-4ab3-88f3-fbcb12603d4d", + "start": { + "$date": "2022-08-01T06:41:53.000Z" + }, + "end": { + "$date": "2022-08-01T06:59:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "0a2e0014-b277-4e22-87bb-6a9b7c14613c", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T07:02:34.000Z" + }, + "end": { + "$date": "2022-08-01T07:26:47.000Z" + }, + "events": [ + { + "uuid": "77034c77-43d8-4480-bbe8-50de6f039d13", + "start": { + "$date": "2022-08-01T07:02:34.000Z" + }, + "end": { + "$date": "2022-08-01T07:26:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "04c20c6c-7e87-4495-8db0-7a31fafaff80", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-01T07:02:29.000Z" + }, + "end": { + "$date": "2022-08-01T07:26:35.000Z" + }, + "events": [ + { + "uuid": "78510e6d-e393-48f6-a4b9-7b6a6d49455d", + "start": { + "$date": "2022-08-01T07:02:29.000Z" + }, + "end": { + "$date": "2022-08-01T07:26:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "7bff3123-9abc-46e8-b65a-4a25254b6d94", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-01T07:27:19.000Z" + }, + "end": { + "$date": "2022-08-01T07:28:31.000Z" + }, + "events": [ + { + "uuid": "99d577cc-5717-45b3-bf15-531c247cc1c9", + "start": { + "$date": "2022-08-01T07:27:19.000Z" + }, + "end": { + "$date": "2022-08-01T07:28:31.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "17082fe0-7607-47c2-b6e7-e28121ad1ad0", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-01T15:09:13.000Z" + }, + "end": { + "$date": "2022-08-01T15:28:49.000Z" + }, + "events": [ + { + "uuid": "3802740b-a23a-4826-9fa3-8a1c7cc88e86", + "start": { + "$date": "2022-08-01T15:09:13.000Z" + }, + "end": { + "$date": "2022-08-01T15:28:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", + "uuid": "9b5082b3-da91-4861-b752-976836803920", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-01T15:34:00.000Z" + }, + "end": { + "$date": "2022-08-01T18:10:17.000Z" + }, + "events": [ + { + "uuid": "3e1609c0-0f7d-4a9f-b5a4-31398198dd3e", + "start": { + "$date": "2022-08-01T15:34:00.000Z" + }, + "end": { + "$date": "2022-08-01T16:44:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fccbc53b-ab70-4bb8-99f2-580677fe318d", + "start": { + "$date": "2022-08-01T16:44:00.000Z" + }, + "end": { + "$date": "2022-08-01T16:49:00.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "c2560d4d-d8f0-4635-92ff-dbd4b57f61c2", + "start": { + "$date": "2022-08-01T16:49:00.000Z" + }, + "end": { + "$date": "2022-08-01T16:59:00.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "320d8b53-ed5c-4a29-9595-d3bda8480eb4", + "start": { + "$date": "2022-08-01T16:59:00.000Z" + }, + "end": { + "$date": "2022-08-01T18:10:17.000Z" + }, + "state": "IDLE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "60553832-4317-44d6-82f2-fc4aa63f23b8", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T16:04:14.000Z" + }, + "end": { + "$date": "2022-08-01T16:32:27.000Z" + }, + "events": [ + { + "uuid": "8480b8fa-43b5-4801-9358-d3834e8d7024", + "start": { + "$date": "2022-08-01T16:04:14.000Z" + }, + "end": { + "$date": "2022-08-01T16:32:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "3eb972a4-0957-4a23-9318-66d5ae1fe8ef", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T17:08:48.000Z" + }, + "end": { + "$date": "2022-08-01T17:44:56.000Z" + }, + "events": [ + { + "uuid": "fc456866-dc1c-444a-89c8-3a4e6eb6e332", + "start": { + "$date": "2022-08-01T17:08:48.000Z" + }, + "end": { + "$date": "2022-08-01T17:44:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "26bfeb55-5470-44e1-a48a-5e35a5cb80c0", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T17:22:04.000Z" + }, + "end": { + "$date": "2022-08-01T18:10:40.000Z" + }, + "events": [ + { + "uuid": "025ae31e-01a4-41f2-9aa6-2865b1de5443", + "start": { + "$date": "2022-08-01T17:22:04.000Z" + }, + "end": { + "$date": "2022-08-01T18:10:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "1fea6b69-b2a0-456f-8b22-ef9304b6d922", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T17:45:21.000Z" + }, + "end": { + "$date": "2022-08-01T19:19:18.000Z" + }, + "events": [ + { + "uuid": "92e53fd5-2223-4f60-8e1f-94a32a9cd754", + "start": { + "$date": "2022-08-01T17:45:21.000Z" + }, + "end": { + "$date": "2022-08-01T19:19:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "daa96ff4-5277-4fd9-b36d-b6267446e5ab", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-01T18:11:27.000Z" + }, + "end": { + "$date": "2022-08-01T18:49:33.000Z" + }, + "events": [ + { + "uuid": "15791ee6-d260-4f55-914c-7f5a57bf3898", + "start": { + "$date": "2022-08-01T18:11:27.000Z" + }, + "end": { + "$date": "2022-08-01T18:49:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "f5964e23-29a4-43e4-8e9e-36918a93bb0f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T18:19:35.000Z" + }, + "end": { + "$date": "2022-08-01T18:34:55.000Z" + }, + "events": [ + { + "uuid": "cbf93ca8-6e16-4b49-8360-48767cd3ec56", + "start": { + "$date": "2022-08-01T18:19:35.000Z" + }, + "end": { + "$date": "2022-08-01T18:34:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "d1503209-d924-4a29-904e-4ff4249b0b0c", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-01T18:55:28.000Z" + }, + "end": { + "$date": "2022-08-01T19:25:49.000Z" + }, + "events": [ + { + "uuid": "d4c598ba-be98-40fa-ade9-109c4f67dc24", + "start": { + "$date": "2022-08-01T18:55:28.000Z" + }, + "end": { + "$date": "2022-08-01T19:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "03101ffe-d8b8-4316-b5fc-5320e5fb20da", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T19:19:44.000Z" + }, + "end": { + "$date": "2022-08-01T19:25:54.000Z" + }, + "events": [ + { + "uuid": "b3b00f1d-0456-4e74-a684-a3b1084457ec", + "start": { + "$date": "2022-08-01T19:19:44.000Z" + }, + "end": { + "$date": "2022-08-01T19:25:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "64ac248c-8d42-4a27-9a53-812db9c79089", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-01T19:22:37.000Z" + }, + "end": { + "$date": "2022-08-01T22:21:47.000Z" + }, + "events": [ + { + "uuid": "1a527a78-3380-4f16-abcc-87cf20233c5a", + "start": { + "$date": "2022-08-01T19:22:37.000Z" + }, + "end": { + "$date": "2022-08-01T19:49:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "5529d217-a62d-4651-be1e-1575f61a2910", + "start": { + "$date": "2022-08-01T19:49:37.000Z" + }, + "end": { + "$date": "2022-08-01T19:57:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "39b67321-6825-4da1-b98a-1ec28e97d1c8", + "start": { + "$date": "2022-08-01T19:57:37.000Z" + }, + "end": { + "$date": "2022-08-01T20:46:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "864fbbc1-c237-4833-b245-735079df0060", + "start": { + "$date": "2022-08-01T20:46:37.000Z" + }, + "end": { + "$date": "2022-08-01T20:56:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "bb7e5f3b-7794-4fee-8450-57c6c44bd34b", + "start": { + "$date": "2022-08-01T20:56:37.000Z" + }, + "end": { + "$date": "2022-08-01T22:21:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "dd8a8d0d-437d-43e7-a308-a9d2551bc3d4", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T19:25:59.000Z" + }, + "end": { + "$date": "2022-08-01T21:18:18.000Z" + }, + "events": [ + { + "uuid": "3ead94e9-0df6-4b33-bcce-ca663a73f015", + "start": { + "$date": "2022-08-01T19:25:59.000Z" + }, + "end": { + "$date": "2022-08-01T21:18:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "b929cbed-719f-412a-bebf-dafdc75a733f", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T21:18:24.000Z" + }, + "end": { + "$date": "2022-08-01T21:46:30.000Z" + }, + "events": [ + { + "uuid": "beaf7fa9-b8c1-4ed0-8b0e-ee786db5e522", + "start": { + "$date": "2022-08-01T21:18:24.000Z" + }, + "end": { + "$date": "2022-08-01T21:46:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "65eb429f-cff4-4762-91d6-62567ced382d", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T21:59:08.000Z" + }, + "end": { + "$date": "2022-08-01T22:26:25.000Z" + }, + "events": [ + { + "uuid": "3cd0f307-9e0d-4547-abb2-c42f85235950", + "start": { + "$date": "2022-08-01T21:59:08.000Z" + }, + "end": { + "$date": "2022-08-01T22:26:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "acfec586-5443-4588-a0dd-a258d9a46c1e", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T22:26:35.000Z" + }, + "end": { + "$date": "2022-08-01T22:33:00.000Z" + }, + "events": [ + { + "uuid": "4d9a33cc-2b19-4cea-9987-06a981140310", + "start": { + "$date": "2022-08-01T22:26:35.000Z" + }, + "end": { + "$date": "2022-08-01T22:33:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "7b7dec02-4c7d-4f80-82e5-9a40e9065fcc", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T22:33:06.000Z" + }, + "end": { + "$date": "2022-08-01T22:36:11.000Z" + }, + "events": [ + { + "uuid": "ed51c1b1-0908-4f63-a4a6-2ac2033bcfb9", + "start": { + "$date": "2022-08-01T22:33:06.000Z" + }, + "end": { + "$date": "2022-08-01T22:36:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "9f9d542d-42d1-47bb-b404-68fa50116d96", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T22:37:11.000Z" + }, + "end": { + "$date": "2022-08-01T22:57:07.000Z" + }, + "events": [ + { + "uuid": "ec9a02f8-3861-4ab6-bc82-2ec4944a0a66", + "start": { + "$date": "2022-08-01T22:37:11.000Z" + }, + "end": { + "$date": "2022-08-01T22:57:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", + "uuid": "72bc3250-436d-459b-a329-651af8401c9b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-01T22:58:26.000Z" + }, + "end": { + "$date": "2022-08-01T22:59:47.000Z" + }, + "events": [ + { + "uuid": "9522bd92-3865-4d0d-8fd2-85d4b46f0b26", + "start": { + "$date": "2022-08-01T22:58:26.000Z" + }, + "end": { + "$date": "2022-08-01T22:59:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "fdd2fbda-ec74-4cbf-953d-9eef71fdc9f3", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T22:59:23.000Z" + }, + "end": { + "$date": "2022-08-01T23:09:08.000Z" + }, + "events": [ + { + "uuid": "64499f46-4477-4e22-8804-4dcea655cbaf", + "start": { + "$date": "2022-08-01T22:59:23.000Z" + }, + "end": { + "$date": "2022-08-01T23:09:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "e24c9775-e3d0-4158-94bf-b5bc085eeb16", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-01T23:00:21.000Z" + }, + "end": { + "$date": "2022-08-02T02:03:48.000Z" + }, + "events": [ + { + "uuid": "ec1b4730-c14b-4d79-81be-e93a5db6c2bf", + "start": { + "$date": "2022-08-01T23:00:21.000Z" + }, + "end": { + "$date": "2022-08-02T02:03:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "2d54fcf8-6196-4175-beb2-dbb652de492a", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-01T23:09:38.000Z" + }, + "end": { + "$date": "2022-08-02T00:16:24.000Z" + }, + "events": [ + { + "uuid": "8b627ba7-a4ee-415f-bc38-127423b1c536", + "start": { + "$date": "2022-08-01T23:09:38.000Z" + }, + "end": { + "$date": "2022-08-02T00:16:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "115beb9d-23be-46e0-b3bc-6aceeb83b5e0", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-08-01T23:26:51.000Z" + }, + "end": { + "$date": "2022-08-01T23:50:15.000Z" + }, + "events": [ + { + "uuid": "1c0e678c-509a-4847-8459-716bb9f2c19a", + "start": { + "$date": "2022-08-01T23:26:51.000Z" + }, + "end": { + "$date": "2022-08-01T23:50:15.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "d8fe473b-485c-46c0-bc10-2d002d6d0b6f", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-01T23:16:06.000Z" + }, + "end": { + "$date": "2022-08-02T03:26:42.000Z" + }, + "events": [ + { + "uuid": "f46b58d8-cf0d-4640-81bf-0447e9c42a36", + "start": { + "$date": "2022-08-01T23:16:06.000Z" + }, + "end": { + "$date": "2022-08-02T03:26:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "ba9a64b0-20a8-431f-bc96-3d1b4c2798ab", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-02T00:16:40.000Z" + }, + "end": { + "$date": "2022-08-02T00:50:38.000Z" + }, + "events": [ + { + "uuid": "995e9521-c2c6-4394-b400-fb639c5af167", + "start": { + "$date": "2022-08-02T00:16:40.000Z" + }, + "end": { + "$date": "2022-08-02T00:50:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "d3571ae4-cfdb-43ef-8b36-a35d3225ea00", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-08-02T00:22:08.000Z" + }, + "end": { + "$date": "2022-08-02T00:26:12.000Z" + }, + "events": [ + { + "uuid": "f490818a-e712-42ff-a631-217e85fd031c", + "start": { + "$date": "2022-08-02T00:22:08.000Z" + }, + "end": { + "$date": "2022-08-02T00:26:12.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", + "uuid": "cebe93a0-1489-4fa0-a99e-fc6f19d9d33c", + "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "start": { + "$date": "2022-08-02T00:26:55.000Z" + }, + "end": { + "$date": "2022-08-02T02:50:05.000Z" + }, + "events": [ + { + "uuid": "b48a5013-8478-4c38-b063-74906349465e", + "start": { + "$date": "2022-08-02T00:26:55.000Z" + }, + "end": { + "$date": "2022-08-02T02:50:05.000Z" + }, + "state": "DO_NOT_DISTURB" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "c5c86969-8c59-4d3d-a843-dd84ff35a932", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-02T00:50:48.000Z" + }, + "end": { + "$date": "2022-08-02T01:29:16.000Z" + }, + "events": [ + { + "uuid": "c97391cc-f0b8-4332-b8e4-9b3f06d7d90a", + "start": { + "$date": "2022-08-02T00:50:48.000Z" + }, + "end": { + "$date": "2022-08-02T01:29:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "d59a2ad0-dc52-4d8c-a851-456c64a8cb68", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-02T01:29:31.000Z" + }, + "end": { + "$date": "2022-08-02T01:45:32.000Z" + }, + "events": [ + { + "uuid": "a0460b13-a9d7-4e7e-8e69-31c705dbe745", + "start": { + "$date": "2022-08-02T01:29:31.000Z" + }, + "end": { + "$date": "2022-08-02T01:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", + "uuid": "e1b59872-3588-480a-9914-4d5fae6f1ad9", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-02T01:45:43.000Z" + }, + "end": { + "$date": "2022-08-02T01:46:43.000Z" + }, + "events": [ + { + "uuid": "00424158-5463-4d43-a623-f4a99618eaef", + "start": { + "$date": "2022-08-02T01:45:43.000Z" + }, + "end": { + "$date": "2022-08-02T01:46:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "b607503b-75a1-48e0-afa0-879ac5ee17ad", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-08-02T02:54:18.000Z" + }, + "end": { + "$date": "2022-08-02T06:29:09.000Z" + }, + "events": [ + { + "uuid": "a349e362-8f5f-4bc9-81c5-4272566fc875", + "start": { + "$date": "2022-08-02T02:54:18.000Z" + }, + "end": { + "$date": "2022-08-02T06:29:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "40882bb5-2497-4fb6-826d-992fd935492f", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-02T03:44:51.000Z" + }, + "end": { + "$date": "2022-08-02T04:04:13.000Z" + }, + "events": [ + { + "uuid": "5968a05e-98a0-4096-bd31-d3975e67047c", + "start": { + "$date": "2022-08-02T03:44:51.000Z" + }, + "end": { + "$date": "2022-08-02T04:04:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6c6ae6b0-b2d2-4425-ad65-1d43c9f8a1cf", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T04:04:58.000Z" + }, + "end": { + "$date": "2022-08-02T04:31:13.000Z" + }, + "events": [ + { + "uuid": "955282f2-9d18-4a4e-a27b-63abca0d0592", + "start": { + "$date": "2022-08-02T04:04:58.000Z" + }, + "end": { + "$date": "2022-08-02T04:31:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5833b4a4-3e51-4448-83ac-7e63fbddf449", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T04:05:07.000Z" + }, + "end": { + "$date": "2022-08-02T04:31:18.000Z" + }, + "events": [ + { + "uuid": "58bea50a-ca1f-4802-9c0b-ded40189cd8e", + "start": { + "$date": "2022-08-02T04:05:07.000Z" + }, + "end": { + "$date": "2022-08-02T04:31:18.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "75f188d4-9988-49be-9c80-6d6d05810bc7", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-02T04:04:21.000Z" + }, + "end": { + "$date": "2022-08-02T04:33:55.000Z" + }, + "events": [ + { + "uuid": "bfd807b9-544a-42b6-b2af-e201bdf4b3b8", + "start": { + "$date": "2022-08-02T04:04:21.000Z" + }, + "end": { + "$date": "2022-08-02T04:33:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4894af97-f273-4e38-9d2c-de19ce10b4c4", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T04:33:59.000Z" + }, + "end": { + "$date": "2022-08-02T04:51:49.000Z" + }, + "events": [ + { + "uuid": "aa254e79-37a5-463b-bab4-6d70bf613cc3", + "start": { + "$date": "2022-08-02T04:33:59.000Z" + }, + "end": { + "$date": "2022-08-02T04:51:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6490270a-d9d9-49e2-9e76-0fe7a4d4e33d", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T04:34:08.000Z" + }, + "end": { + "$date": "2022-08-02T04:51:56.000Z" + }, + "events": [ + { + "uuid": "ad848322-c5b0-4326-ba50-77aea24faf64", + "start": { + "$date": "2022-08-02T04:34:08.000Z" + }, + "end": { + "$date": "2022-08-02T04:51:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "9ecc809f-3f00-4692-9c61-b62dacc92357", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-02T04:39:44.000Z" + }, + "end": { + "$date": "2022-08-02T04:45:32.000Z" + }, + "events": [ + { + "uuid": "a4873ef5-b6c9-424c-8a9c-b494fbc90ba7", + "start": { + "$date": "2022-08-02T04:39:44.000Z" + }, + "end": { + "$date": "2022-08-02T04:45:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", + "uuid": "63656676-9a54-4ae1-8238-bc5f28853acd", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-02T04:47:59.000Z" + }, + "end": { + "$date": "2022-08-02T05:57:32.000Z" + }, + "events": [ + { + "uuid": "bdba25d7-0f6b-43c3-84e2-67729e11ea46", + "start": { + "$date": "2022-08-02T04:47:59.000Z" + }, + "end": { + "$date": "2022-08-02T05:57:32.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b4387e20-b04e-44bd-b86e-d3bf793d2b0e", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T04:57:28.000Z" + }, + "end": { + "$date": "2022-08-02T05:21:06.000Z" + }, + "events": [ + { + "uuid": "b375a4f9-f05b-453e-9e1d-132fe7a6752b", + "start": { + "$date": "2022-08-02T04:57:28.000Z" + }, + "end": { + "$date": "2022-08-02T05:21:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1890330d-d79a-463d-868c-3a98ff1da1b5", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T04:57:19.000Z" + }, + "end": { + "$date": "2022-08-02T05:20:59.000Z" + }, + "events": [ + { + "uuid": "acb520f9-6f6a-40dd-a9ee-b36ca766c0fa", + "start": { + "$date": "2022-08-02T04:57:19.000Z" + }, + "end": { + "$date": "2022-08-02T05:20:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "5ab9b834-b072-4fb0-8362-5be8f488c979", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T05:29:55.000Z" + }, + "end": { + "$date": "2022-08-02T05:50:25.000Z" + }, + "events": [ + { + "uuid": "e4769e34-04a5-4da1-8ee5-fd2dfc580c7c", + "start": { + "$date": "2022-08-02T05:29:55.000Z" + }, + "end": { + "$date": "2022-08-02T05:50:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "77a6dc2f-1d7f-45bd-88da-07502980be89", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T05:29:54.000Z" + }, + "end": { + "$date": "2022-08-02T05:50:36.000Z" + }, + "events": [ + { + "uuid": "0a068012-4c06-4c46-9c75-b41019a2da88", + "start": { + "$date": "2022-08-02T05:29:54.000Z" + }, + "end": { + "$date": "2022-08-02T05:50:36.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "48f94698-00a1-4570-b1cf-618b804ea949", + "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "start": { + "$date": "2022-08-02T05:44:56.000Z" + }, + "end": { + "$date": "2022-08-02T06:00:56.000Z" + }, + "events": [ + { + "uuid": "179eae7f-b1df-4031-833d-027664b1df86", + "start": { + "$date": "2022-08-02T05:44:56.000Z" + }, + "end": { + "$date": "2022-08-02T06:00:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b38f94e6-5f83-4150-8dcf-477a495be373", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T05:51:10.000Z" + }, + "end": { + "$date": "2022-08-02T05:52:48.000Z" + }, + "events": [ + { + "uuid": "ecd969fd-6434-4d6a-ae36-c195ec4fcd82", + "start": { + "$date": "2022-08-02T05:51:10.000Z" + }, + "end": { + "$date": "2022-08-02T05:52:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "dacbae7b-75c5-4d54-b191-e3998194207a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T05:55:55.000Z" + }, + "end": { + "$date": "2022-08-02T06:21:16.000Z" + }, + "events": [ + { + "uuid": "e940f64c-5744-4e9c-b1a6-46b6483f82d5", + "start": { + "$date": "2022-08-02T05:55:55.000Z" + }, + "end": { + "$date": "2022-08-02T06:21:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8e4a7b61-ca68-4a4e-b4b8-211c5514bad8", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T05:55:51.000Z" + }, + "end": { + "$date": "2022-08-02T06:21:14.000Z" + }, + "events": [ + { + "uuid": "aa8e19ae-1c58-49ea-968f-9b5ef5052066", + "start": { + "$date": "2022-08-02T05:55:51.000Z" + }, + "end": { + "$date": "2022-08-02T06:21:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "2bdc2036-641e-4f8e-869a-762705d8e409", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-02T06:26:07.000Z" + }, + "end": { + "$date": "2022-08-02T06:55:42.000Z" + }, + "events": [ + { + "uuid": "8d9bfc38-fec4-4fca-8faf-ebbcbe8b4520", + "start": { + "$date": "2022-08-02T06:26:07.000Z" + }, + "end": { + "$date": "2022-08-02T06:55:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "4e9d598f-f7f5-42ab-ae0e-7cb0d6cc740a", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T06:26:11.000Z" + }, + "end": { + "$date": "2022-08-02T06:55:46.000Z" + }, + "events": [ + { + "uuid": "b199c969-8911-45b7-b7f2-e36637333f33", + "start": { + "$date": "2022-08-02T06:26:11.000Z" + }, + "end": { + "$date": "2022-08-02T06:55:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "90f87963-8758-4db3-ac3d-8ebc177bd172", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-02T06:56:17.000Z" + }, + "end": { + "$date": "2022-08-02T08:38:10.000Z" + }, + "events": [ + { + "uuid": "773ddb23-d031-4894-8140-d0322a170c53", + "start": { + "$date": "2022-08-02T06:56:17.000Z" + }, + "end": { + "$date": "2022-08-02T08:38:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "5c07b150-efac-41a9-ba59-d30078ad5187", + "uuid": "a64f5276-c07e-41f1-9516-1bcb6d96df89", + "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "start": { + "$date": "2022-08-02T07:42:44.000Z" + }, + "end": { + "$date": "2022-08-02T08:51:54.000Z" + }, + "events": [ + { + "uuid": "fc03a452-8ecf-4a48-87bd-1020e9172834", + "start": { + "$date": "2022-08-02T07:42:44.000Z" + }, + "end": { + "$date": "2022-08-02T08:51:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "4d31b0a7-6385-4629-868a-2cd39c689f1f", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T14:52:15.000Z" + }, + "end": { + "$date": "2022-08-02T17:19:09.000Z" + }, + "events": [ + { + "uuid": "6c9dca4c-66f5-4f6f-8d3d-5ab4f2601c6b", + "start": { + "$date": "2022-08-02T14:52:15.000Z" + }, + "end": { + "$date": "2022-08-02T17:19:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "d77dccf3-0451-48b0-aaec-bc8f67964a63", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-02T16:37:43.000Z" + }, + "end": { + "$date": "2022-08-02T16:49:52.000Z" + }, + "events": [ + { + "uuid": "6957b7f0-7d50-48e6-a3b7-7bec71c762d9", + "start": { + "$date": "2022-08-02T16:37:43.000Z" + }, + "end": { + "$date": "2022-08-02T16:49:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "d1009c41-2984-4502-a0f9-c85e501bb260", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T17:22:54.000Z" + }, + "end": { + "$date": "2022-08-02T17:57:00.000Z" + }, + "events": [ + { + "uuid": "f3f8c8fe-6f52-4728-b765-861d163529cd", + "start": { + "$date": "2022-08-02T17:22:54.000Z" + }, + "end": { + "$date": "2022-08-02T17:57:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "688863bf-e333-448d-ac6f-533a40cf8881", + "uuid": "cf317071-c9d5-4ebe-a46d-322a05927fb1", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T19:12:39.000Z" + }, + "end": { + "$date": "2022-08-02T19:17:54.000Z" + }, + "events": [ + { + "uuid": "d37cdf0f-5f75-4073-9da6-541f20f6ec41", + "start": { + "$date": "2022-08-02T19:12:39.000Z" + }, + "end": { + "$date": "2022-08-02T19:17:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "a7b177d3-ab4c-46ce-90cf-eda9d6b67ddb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-02T22:51:08.000Z" + }, + "end": { + "$date": "2022-08-02T23:05:37.000Z" + }, + "events": [ + { + "uuid": "6b4e9dba-2ac4-480f-aa98-ea5792d3b095", + "start": { + "$date": "2022-08-02T22:51:08.000Z" + }, + "end": { + "$date": "2022-08-02T23:05:37.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "d9c40fa8-cb2c-4580-b87e-01a2dc9d6e38", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-02T23:05:48.000Z" + }, + "end": { + "$date": "2022-08-02T23:25:49.000Z" + }, + "events": [ + { + "uuid": "11ba8282-526f-43de-82a0-643b0fec49a3", + "start": { + "$date": "2022-08-02T23:05:48.000Z" + }, + "end": { + "$date": "2022-08-02T23:25:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "c1653bce-4de0-47bd-a341-2d7595afa098", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T23:26:17.000Z" + }, + "end": { + "$date": "2022-08-02T23:28:58.000Z" + }, + "events": [ + { + "uuid": "805d7486-46a6-4d03-bc6f-105b8b6e7c48", + "start": { + "$date": "2022-08-02T23:26:17.000Z" + }, + "end": { + "$date": "2022-08-02T23:28:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "11c995dd-919c-45ce-97f2-23e09d562aec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-02T23:26:49.000Z" + }, + "end": { + "$date": "2022-08-02T23:36:39.000Z" + }, + "events": [ + { + "uuid": "1b17c1b2-b14c-4d9c-9877-557a32d82b2a", + "start": { + "$date": "2022-08-02T23:26:49.000Z" + }, + "end": { + "$date": "2022-08-02T23:36:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "eb25aeca-755a-4dc2-b743-788576ab5d71", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-02T23:36:49.000Z" + }, + "end": { + "$date": "2022-08-03T00:18:54.000Z" + }, + "events": [ + { + "uuid": "a6e53b4f-8596-48a7-a05e-e4cbde73c78f", + "start": { + "$date": "2022-08-02T23:36:49.000Z" + }, + "end": { + "$date": "2022-08-03T00:18:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", + "uuid": "779c9707-2acc-4a47-bc7d-ed96374cd664", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T23:36:51.000Z" + }, + "end": { + "$date": "2022-08-02T23:42:24.000Z" + }, + "events": [ + { + "uuid": "feb8988e-c397-470d-938f-9db099275c63", + "start": { + "$date": "2022-08-02T23:36:51.000Z" + }, + "end": { + "$date": "2022-08-02T23:42:24.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "59e8b28e-8858-4cdf-a684-f7a9aa95ad90", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T23:42:51.000Z" + }, + "end": { + "$date": "2022-08-02T23:43:59.000Z" + }, + "events": [ + { + "uuid": "98393dc5-6af3-4b42-85f6-bc7ce200dbe7", + "start": { + "$date": "2022-08-02T23:42:51.000Z" + }, + "end": { + "$date": "2022-08-02T23:43:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "b785182e-0e93-452a-a54f-95a39a413ca7", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T23:54:52.000Z" + }, + "end": { + "$date": "2022-08-02T23:56:00.000Z" + }, + "events": [ + { + "uuid": "1e950734-458a-45a2-ab1a-4beeca9c2fc8", + "start": { + "$date": "2022-08-02T23:54:52.000Z" + }, + "end": { + "$date": "2022-08-02T23:56:00.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "516b32ff-e1ea-48a3-9cc2-8adccf2785cc", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-02T23:56:28.000Z" + }, + "end": { + "$date": "2022-08-03T00:00:26.000Z" + }, + "events": [ + { + "uuid": "ddaae6a5-4da2-466b-8543-123dd78becba", + "start": { + "$date": "2022-08-02T23:56:28.000Z" + }, + "end": { + "$date": "2022-08-03T00:00:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "96879f55-476b-498f-a86f-141d9e78d951", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T00:00:29.000Z" + }, + "end": { + "$date": "2022-08-03T00:03:42.000Z" + }, + "events": [ + { + "uuid": "d9d0dc65-dffe-4262-bb99-c647a927a338", + "start": { + "$date": "2022-08-03T00:00:29.000Z" + }, + "end": { + "$date": "2022-08-03T00:03:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "26ae6d43-b7b0-4ece-8020-b710ae2fdd9c", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T00:02:43.000Z" + }, + "end": { + "$date": "2022-08-03T00:51:11.000Z" + }, + "events": [ + { + "uuid": "7b8e3e45-cb79-41ea-8574-f987f74cb680", + "start": { + "$date": "2022-08-03T00:02:43.000Z" + }, + "end": { + "$date": "2022-08-03T00:51:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "5a182566-4e66-4f43-90ca-b50843a3055e", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T00:05:39.000Z" + }, + "end": { + "$date": "2022-08-03T00:08:57.000Z" + }, + "events": [ + { + "uuid": "1bd20b4e-10a7-4aa6-ba08-e8e8884f0c00", + "start": { + "$date": "2022-08-03T00:05:39.000Z" + }, + "end": { + "$date": "2022-08-03T00:08:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "b37ad9cf-0c04-4ae0-bcd5-582cbab09e26", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T00:11:30.000Z" + }, + "end": { + "$date": "2022-08-03T00:16:58.000Z" + }, + "events": [ + { + "uuid": "577350aa-24f6-40e9-a8cb-a8b557c03c23", + "start": { + "$date": "2022-08-03T00:11:30.000Z" + }, + "end": { + "$date": "2022-08-03T00:16:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "81c65f27-eed5-4bb6-83a3-4fa91fccade2", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T00:17:15.000Z" + }, + "end": { + "$date": "2022-08-03T00:56:10.000Z" + }, + "events": [ + { + "uuid": "f85e81e8-f681-4c75-af97-0b93017cb55f", + "start": { + "$date": "2022-08-03T00:17:15.000Z" + }, + "end": { + "$date": "2022-08-03T00:56:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "09ec6e7e-33ad-4d38-b304-9d1818dacd9c", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-03T00:21:17.000Z" + }, + "end": { + "$date": "2022-08-03T00:52:03.000Z" + }, + "events": [ + { + "uuid": "62a1f3d0-952d-48ab-ae0c-9dfe407dc394", + "start": { + "$date": "2022-08-03T00:21:17.000Z" + }, + "end": { + "$date": "2022-08-03T00:45:17.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "b88e20cf-24ff-4287-a2e2-dc976bc75884", + "start": { + "$date": "2022-08-03T00:45:17.000Z" + }, + "end": { + "$date": "2022-08-03T00:46:17.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "a13691b2-795f-477f-a4ea-c394c5526247", + "start": { + "$date": "2022-08-03T00:46:17.000Z" + }, + "end": { + "$date": "2022-08-03T00:52:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "61b99f7e-fadf-417e-a849-13c13cab94f9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T00:54:22.000Z" + }, + "end": { + "$date": "2022-08-03T00:55:26.000Z" + }, + "events": [ + { + "uuid": "8cbbfc52-7ac6-4598-bbee-4f3e4f681c03", + "start": { + "$date": "2022-08-03T00:54:22.000Z" + }, + "end": { + "$date": "2022-08-03T00:55:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "21992a23-0713-4708-a623-aae931eacdb9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-03T00:56:49.000Z" + }, + "end": { + "$date": "2022-08-03T02:13:16.000Z" + }, + "events": [ + { + "uuid": "68f201ce-8342-4a08-962a-da2da56ff4d5", + "start": { + "$date": "2022-08-03T00:56:49.000Z" + }, + "end": { + "$date": "2022-08-03T02:13:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "9f7ce3dd-8de5-403a-8f99-ed6cf289aec3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T01:14:04.000Z" + }, + "end": { + "$date": "2022-08-03T01:24:45.000Z" + }, + "events": [ + { + "uuid": "faf1ab26-1e71-47a1-b03f-4759047e94b7", + "start": { + "$date": "2022-08-03T01:14:04.000Z" + }, + "end": { + "$date": "2022-08-03T01:24:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "0c79909c-d63e-46e9-ad48-f6eaf1af817f", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T01:25:41.000Z" + }, + "end": { + "$date": "2022-08-03T01:29:35.000Z" + }, + "events": [ + { + "uuid": "a7b67ab6-ade6-4f66-a06f-e325888d5d90", + "start": { + "$date": "2022-08-03T01:25:41.000Z" + }, + "end": { + "$date": "2022-08-03T01:29:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "2035a666-f1ec-4254-b079-a10089441f6f", + "uuid": "a58b181f-b902-48cb-a92b-37d5d0354c77", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T01:59:50.000Z" + }, + "end": { + "$date": "2022-08-03T04:07:05.000Z" + }, + "events": [ + { + "uuid": "57796f68-c1f4-448e-916b-ec535773d1dd", + "start": { + "$date": "2022-08-03T01:59:50.000Z" + }, + "end": { + "$date": "2022-08-03T04:07:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ff9e5a8e-cdff-4a8d-bb94-06aaed5393e6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T02:21:03.000Z" + }, + "end": { + "$date": "2022-08-03T02:57:02.000Z" + }, + "events": [ + { + "uuid": "c8a138c2-b69a-4c50-b525-52be476ab0f4", + "start": { + "$date": "2022-08-03T02:21:03.000Z" + }, + "end": { + "$date": "2022-08-03T02:57:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "99a983d6-6d71-4920-9aa6-79815766c1f3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-03T02:22:56.000Z" + }, + "end": { + "$date": "2022-08-03T02:25:06.000Z" + }, + "events": [ + { + "uuid": "9dd3664d-80f0-4e69-a1c9-c972687234fa", + "start": { + "$date": "2022-08-03T02:22:56.000Z" + }, + "end": { + "$date": "2022-08-03T02:25:06.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "aad37e12-be23-4671-bdbb-188f410a2df2", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-03T02:25:16.000Z" + }, + "end": { + "$date": "2022-08-03T02:33:47.000Z" + }, + "events": [ + { + "uuid": "ceaa9476-8826-4487-b4d0-ae1c5e946859", + "start": { + "$date": "2022-08-03T02:25:16.000Z" + }, + "end": { + "$date": "2022-08-03T02:33:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "43aaafe9-27b1-4fd8-ab86-8c8f12d30f32", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T02:37:32.000Z" + }, + "end": { + "$date": "2022-08-03T02:59:20.000Z" + }, + "events": [ + { + "uuid": "59467f56-e706-447b-9730-7bd489447d8f", + "start": { + "$date": "2022-08-03T02:37:32.000Z" + }, + "end": { + "$date": "2022-08-03T02:59:20.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "7eb9d50f-a2a1-4416-91c2-bbb2304a1c20", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-08-03T02:51:28.000Z" + }, + "end": { + "$date": "2022-08-03T05:39:58.000Z" + }, + "events": [ + { + "uuid": "b3cda219-a8ac-4b07-94fe-0a6de7a4cc53", + "start": { + "$date": "2022-08-03T02:51:28.000Z" + }, + "end": { + "$date": "2022-08-03T05:39:58.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "a1a8ccee-1a34-4961-a727-938e55033fde", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T02:58:13.000Z" + }, + "end": { + "$date": "2022-08-03T03:35:48.000Z" + }, + "events": [ + { + "uuid": "50e76211-d953-4fbc-acd3-286e37727ba9", + "start": { + "$date": "2022-08-03T02:58:13.000Z" + }, + "end": { + "$date": "2022-08-03T03:35:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "87431b5a-8d07-4ac6-9337-1ab70b539091", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-03T02:59:58.000Z" + }, + "end": { + "$date": "2022-08-03T03:18:38.000Z" + }, + "events": [ + { + "uuid": "bb1e1f1d-fe04-4fb8-8646-f77b809b3522", + "start": { + "$date": "2022-08-03T02:59:58.000Z" + }, + "end": { + "$date": "2022-08-03T03:18:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "45f024b0-4bf3-44a4-b6b1-e80c851cece7", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T02:59:47.000Z" + }, + "end": { + "$date": "2022-08-03T03:01:41.000Z" + }, + "events": [ + { + "uuid": "4ddc7af1-4b9b-4977-88c6-27b5250b5256", + "start": { + "$date": "2022-08-03T02:59:47.000Z" + }, + "end": { + "$date": "2022-08-03T03:01:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "448ca2ae-fc23-49a6-9c23-653b9af9ffdd", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-03T03:19:09.000Z" + }, + "end": { + "$date": "2022-08-03T03:26:08.000Z" + }, + "events": [ + { + "uuid": "3da0846f-c4b8-4285-a290-e0b10391718d", + "start": { + "$date": "2022-08-03T03:19:09.000Z" + }, + "end": { + "$date": "2022-08-03T03:26:08.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c4c038cc-ef1b-4e27-a45a-a9c1e5e1a294", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T03:39:55.000Z" + }, + "end": { + "$date": "2022-08-03T03:59:30.000Z" + }, + "events": [ + { + "uuid": "1fa3d78c-86a6-467a-8725-2cb46d969086", + "start": { + "$date": "2022-08-03T03:39:55.000Z" + }, + "end": { + "$date": "2022-08-03T03:59:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "e5ae531b-980b-45d8-a841-fe375d6ecce1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T03:41:17.000Z" + }, + "end": { + "$date": "2022-08-03T03:54:25.000Z" + }, + "events": [ + { + "uuid": "a7b83159-ca91-4d44-9045-1230e70df135", + "start": { + "$date": "2022-08-03T03:41:17.000Z" + }, + "end": { + "$date": "2022-08-03T03:54:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f6009ff7-7197-4fbc-9b7e-7dfd3da90dd9", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T04:02:46.000Z" + }, + "end": { + "$date": "2022-08-03T04:39:16.000Z" + }, + "events": [ + { + "uuid": "84ff4608-8f8b-4b3e-951d-6221d91a4d42", + "start": { + "$date": "2022-08-03T04:02:46.000Z" + }, + "end": { + "$date": "2022-08-03T04:39:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "0f3db62d-f8b0-4b52-accb-e1c84a8eac7d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-03T04:08:08.000Z" + }, + "end": { + "$date": "2022-08-03T04:33:59.000Z" + }, + "events": [ + { + "uuid": "4e9d5a5c-f8ed-4202-8328-135cde2a4c75", + "start": { + "$date": "2022-08-03T04:08:08.000Z" + }, + "end": { + "$date": "2022-08-03T04:33:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "61238e38-2ff3-4c83-be94-8b64829b50cb", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-03T01:53:39.000Z" + }, + "end": { + "$date": "2022-08-03T07:27:41.000Z" + }, + "events": [ + { + "uuid": "98e20f95-07c4-4ae8-85de-6b674cac5f37", + "start": { + "$date": "2022-08-03T01:53:39.000Z" + }, + "end": { + "$date": "2022-08-03T07:27:41.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "17dd093b-da5f-4aea-a4c2-26070a17289f", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T04:27:40.000Z" + }, + "end": { + "$date": "2022-08-03T05:12:25.000Z" + }, + "events": [ + { + "uuid": "f683d01e-d093-4069-b99e-95833c998518", + "start": { + "$date": "2022-08-03T04:27:40.000Z" + }, + "end": { + "$date": "2022-08-03T05:12:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "c7a32c2b-14eb-4f2e-9c84-35769213b770", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T04:43:03.000Z" + }, + "end": { + "$date": "2022-08-03T05:17:45.000Z" + }, + "events": [ + { + "uuid": "721d7e55-4631-442c-971a-0193abbaa974", + "start": { + "$date": "2022-08-03T04:43:03.000Z" + }, + "end": { + "$date": "2022-08-03T05:17:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "32e6844b-0788-4175-8728-7cf67d67d2fd", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T05:19:25.000Z" + }, + "end": { + "$date": "2022-08-03T05:54:01.000Z" + }, + "events": [ + { + "uuid": "8db8defd-1833-4e1f-a38c-3f8f25dcec7e", + "start": { + "$date": "2022-08-03T05:19:25.000Z" + }, + "end": { + "$date": "2022-08-03T05:54:01.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", + "uuid": "2419a75b-2e65-4a5a-b9c6-2ea3a22dfcc6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T05:33:12.000Z" + }, + "end": { + "$date": "2022-08-03T05:46:11.000Z" + }, + "events": [ + { + "uuid": "2612fd9b-93b1-4200-90cc-b2e7185e2b22", + "start": { + "$date": "2022-08-03T05:33:12.000Z" + }, + "end": { + "$date": "2022-08-03T05:46:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "90a2afcb-3935-4a0b-a382-17363ce722ad", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-03T07:29:11.000Z" + }, + "end": { + "$date": "2022-08-03T08:18:55.000Z" + }, + "events": [ + { + "uuid": "2e55a111-1617-4721-8873-1cf933bb553d", + "start": { + "$date": "2022-08-03T07:29:11.000Z" + }, + "end": { + "$date": "2022-08-03T08:18:55.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "0d08253c-6f5e-40db-b7cc-12ea0cdf47a9", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T14:05:40.000Z" + }, + "end": { + "$date": "2022-08-03T15:08:21.000Z" + }, + "events": [ + { + "uuid": "4022b0c2-c002-4463-baf2-68b8cf919b3c", + "start": { + "$date": "2022-08-03T14:05:40.000Z" + }, + "end": { + "$date": "2022-08-03T15:08:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e935301f-2115-4dd9-ad3a-07f74edede79", + "uuid": "da9d9826-0854-4c34-91eb-4a22550496f3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T15:45:05.000Z" + }, + "end": { + "$date": "2022-08-03T16:49:49.000Z" + }, + "events": [ + { + "uuid": "9f73dfcf-c674-4276-b709-f72208aab030", + "start": { + "$date": "2022-08-03T15:45:05.000Z" + }, + "end": { + "$date": "2022-08-03T16:49:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b1f5f3bd-2377-4ead-bb71-f74f0f3dc2cb", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T16:44:34.000Z" + }, + "end": { + "$date": "2022-08-03T17:24:26.000Z" + }, + "events": [ + { + "uuid": "707448dc-c6ce-476b-8878-11c6409ed0d2", + "start": { + "$date": "2022-08-03T16:44:34.000Z" + }, + "end": { + "$date": "2022-08-03T17:24:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9029ecf5-c5f1-4e21-817e-52b4457144ef", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T17:36:09.000Z" + }, + "end": { + "$date": "2022-08-03T17:36:35.000Z" + }, + "events": [ + { + "uuid": "1b02b1de-31fb-4a95-b5c3-896eb5c46236", + "start": { + "$date": "2022-08-03T17:36:09.000Z" + }, + "end": { + "$date": "2022-08-03T17:36:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "b7130e0a-2fa8-4508-876e-bf0a40d861ae", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T17:37:19.000Z" + }, + "end": { + "$date": "2022-08-03T17:49:43.000Z" + }, + "events": [ + { + "uuid": "c63bede0-10aa-4fc5-b119-84c36bda718c", + "start": { + "$date": "2022-08-03T17:37:19.000Z" + }, + "end": { + "$date": "2022-08-03T17:49:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "e238d20d-c9a2-408a-a9f9-5470e673fff6", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T17:52:46.000Z" + }, + "end": { + "$date": "2022-08-03T18:15:54.000Z" + }, + "events": [ + { + "uuid": "3296b4b4-51ec-4058-b4f1-b1b2c57c4d63", + "start": { + "$date": "2022-08-03T17:52:46.000Z" + }, + "end": { + "$date": "2022-08-03T18:15:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", + "uuid": "638f2d41-c317-43e8-906c-245d855805da", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T19:35:28.000Z" + }, + "end": { + "$date": "2022-08-03T19:35:33.000Z" + }, + "events": [ + { + "uuid": "5235b702-41da-44ff-a522-1c6465393a11", + "start": { + "$date": "2022-08-03T19:35:28.000Z" + }, + "end": { + "$date": "2022-08-03T19:35:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7119a0d8-3339-4e6b-93d7-1e3b5dc53c17", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T19:00:59.000Z" + }, + "end": { + "$date": "2022-08-03T19:28:38.000Z" + }, + "events": [ + { + "uuid": "334328cb-9904-47b6-a16d-73a81cbaa164", + "start": { + "$date": "2022-08-03T19:00:59.000Z" + }, + "end": { + "$date": "2022-08-03T19:28:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "cfe9cbdd-9c09-4ec5-94fe-304952af21f1", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-03T19:37:04.000Z" + }, + "end": { + "$date": "2022-08-03T20:14:54.000Z" + }, + "events": [ + { + "uuid": "68a49236-2de9-4ac2-ad35-89ba0903b65b", + "start": { + "$date": "2022-08-03T19:37:04.000Z" + }, + "end": { + "$date": "2022-08-03T20:14:54.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", + "uuid": "44fbdec5-967f-46cc-9e81-e7c1c2884fbd", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T20:03:33.000Z" + }, + "end": { + "$date": "2022-08-03T20:03:38.000Z" + }, + "events": [ + { + "uuid": "9b5df316-7955-4d4b-8a2d-5210209842fc", + "start": { + "$date": "2022-08-03T20:03:33.000Z" + }, + "end": { + "$date": "2022-08-03T20:03:38.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "007c017b-5c91-4286-aee2-52272d946cc6", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-03T20:03:53.000Z" + }, + "end": { + "$date": "2022-08-03T22:34:46.000Z" + }, + "events": [ + { + "uuid": "811dc009-2842-477c-9ead-d344d941f899", + "start": { + "$date": "2022-08-03T20:03:53.000Z" + }, + "end": { + "$date": "2022-08-03T22:34:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "fd5b308d-7bf9-404e-af97-9248e597e690", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T21:10:54.000Z" + }, + "end": { + "$date": "2022-08-03T21:13:09.000Z" + }, + "events": [ + { + "uuid": "554776ab-ca0c-438f-9e2d-d0cd8b590a44", + "start": { + "$date": "2022-08-03T21:10:54.000Z" + }, + "end": { + "$date": "2022-08-03T21:13:09.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "66896e06-e8b3-44c3-afbf-d8fe0730ea7d", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-03T21:16:34.000Z" + }, + "end": { + "$date": "2022-08-03T22:34:51.000Z" + }, + "events": [ + { + "uuid": "f1d6145d-5aa8-4742-bbf2-823093dff766", + "start": { + "$date": "2022-08-03T21:16:34.000Z" + }, + "end": { + "$date": "2022-08-03T22:34:51.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "711fdcbb-3a4c-4c73-bf57-890dbbf30609", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T00:12:53.000Z" + }, + "end": { + "$date": "2022-08-04T00:43:21.000Z" + }, + "events": [ + { + "uuid": "f4235764-7190-43f2-a2b8-e40ca623cc1f", + "start": { + "$date": "2022-08-04T00:12:53.000Z" + }, + "end": { + "$date": "2022-08-04T00:43:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "a70fd03b-2c44-46d1-b9a0-78b1383bb5e8", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-04T00:10:58.000Z" + }, + "end": { + "$date": "2022-08-04T03:38:13.000Z" + }, + "events": [ + { + "uuid": "1bcc92f5-2993-4456-abd9-d629ecd15533", + "start": { + "$date": "2022-08-04T00:10:58.000Z" + }, + "end": { + "$date": "2022-08-04T03:38:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "b568886b-4bf7-43ac-b63e-03f4ac293a48", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T00:43:31.000Z" + }, + "end": { + "$date": "2022-08-04T01:21:53.000Z" + }, + "events": [ + { + "uuid": "fa9b5439-47ce-465e-b19e-d1f1d7719fb4", + "start": { + "$date": "2022-08-04T00:43:31.000Z" + }, + "end": { + "$date": "2022-08-04T01:21:53.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9df5a4d7-6388-45fc-b64d-5a885ee436d3", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-04T01:20:00.000Z" + }, + "end": { + "$date": "2022-08-04T01:41:49.000Z" + }, + "events": [ + { + "uuid": "51eae540-e4dc-4de4-a09f-947ac626e074", + "start": { + "$date": "2022-08-04T01:20:00.000Z" + }, + "end": { + "$date": "2022-08-04T01:41:49.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "7880cc4b-a338-4f8a-82d6-be199329b764", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T01:30:29.000Z" + }, + "end": { + "$date": "2022-08-04T01:41:29.000Z" + }, + "events": [ + { + "uuid": "cd80c3b6-11e6-4611-8e40-fb7b8047eef6", + "start": { + "$date": "2022-08-04T01:30:29.000Z" + }, + "end": { + "$date": "2022-08-04T01:41:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "648b50f1-6019-455d-9282-193c783cd6e3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T01:41:50.000Z" + }, + "end": { + "$date": "2022-08-04T02:08:05.000Z" + }, + "events": [ + { + "uuid": "399dbb10-7c5d-4911-b407-cb0a301dd804", + "start": { + "$date": "2022-08-04T01:41:50.000Z" + }, + "end": { + "$date": "2022-08-04T02:08:05.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "aef8beea-ee71-4db1-80f5-d6f184fa7579", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-04T01:44:11.000Z" + }, + "end": { + "$date": "2022-08-04T02:18:44.000Z" + }, + "events": [ + { + "uuid": "f7e3a3f5-a457-4de3-a6df-04b20c56d799", + "start": { + "$date": "2022-08-04T01:44:11.000Z" + }, + "end": { + "$date": "2022-08-04T02:18:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "ce0783c7-3cef-4cf8-8b6f-42194446c2c8", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-04T02:19:46.000Z" + }, + "end": { + "$date": "2022-08-04T02:47:52.000Z" + }, + "events": [ + { + "uuid": "f99582a0-12d1-4f36-a352-253774acc730", + "start": { + "$date": "2022-08-04T02:19:46.000Z" + }, + "end": { + "$date": "2022-08-04T02:47:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "f18e5510-4340-4825-b6b9-7b6814b2e0dc", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T02:38:33.000Z" + }, + "end": { + "$date": "2022-08-04T02:39:47.000Z" + }, + "events": [ + { + "uuid": "662220fe-6894-4593-8b3a-c93d897185a3", + "start": { + "$date": "2022-08-04T02:38:33.000Z" + }, + "end": { + "$date": "2022-08-04T02:39:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "7c159f23-c2c0-4e1f-93e0-ef4012781dcb", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T02:39:53.000Z" + }, + "end": { + "$date": "2022-08-04T02:50:52.000Z" + }, + "events": [ + { + "uuid": "92167eb8-5495-4645-ae09-8a7bba45bf5e", + "start": { + "$date": "2022-08-04T02:39:53.000Z" + }, + "end": { + "$date": "2022-08-04T02:50:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "9d71f1cf-30c0-4299-b4de-8b9fa0e61767", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-04T02:49:45.000Z" + }, + "end": { + "$date": "2022-08-04T03:27:33.000Z" + }, + "events": [ + { + "uuid": "f8a28e40-9e33-42f8-8a25-5a326d8f34d7", + "start": { + "$date": "2022-08-04T02:49:45.000Z" + }, + "end": { + "$date": "2022-08-04T03:27:33.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "fa95f986-699f-4d77-9f0e-a577a89de16d", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T05:22:01.000Z" + }, + "end": { + "$date": "2022-08-04T05:28:56.000Z" + }, + "events": [ + { + "uuid": "10eed83b-bd46-4233-b322-5671d13c7907", + "start": { + "$date": "2022-08-04T05:22:01.000Z" + }, + "end": { + "$date": "2022-08-04T05:28:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "e40ab159-1d75-42c1-b0bc-2b6823c822a5", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-08-04T03:17:47.000Z" + }, + "end": { + "$date": "2022-08-04T06:09:42.000Z" + }, + "events": [ + { + "uuid": "2abed309-3618-4b73-bb04-46f64a23cdc7", + "start": { + "$date": "2022-08-04T03:17:47.000Z" + }, + "end": { + "$date": "2022-08-04T06:09:42.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "daa6d16f-03d4-4607-a3be-0f51835af3e5", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-04T03:30:10.000Z" + }, + "end": { + "$date": "2022-08-04T03:50:35.000Z" + }, + "events": [ + { + "uuid": "c2c09208-375e-4920-b715-ebf36fe3c757", + "start": { + "$date": "2022-08-04T03:30:10.000Z" + }, + "end": { + "$date": "2022-08-04T03:50:35.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "4f47461d-4aaf-46a6-a8a2-35f32412e918", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-04T03:40:59.000Z" + }, + "end": { + "$date": "2022-08-04T05:48:13.000Z" + }, + "events": [ + { + "uuid": "995c1ba4-45fa-46a2-b86c-f1790a300dbe", + "start": { + "$date": "2022-08-04T03:40:59.000Z" + }, + "end": { + "$date": "2022-08-04T05:48:13.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "7f892b72-024b-4a6e-b68f-3643504e4206", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-08-04T03:41:51.000Z" + }, + "end": { + "$date": "2022-08-04T04:35:02.000Z" + }, + "events": [ + { + "uuid": "48922222-f212-4470-bd01-4ae2608862cb", + "start": { + "$date": "2022-08-04T03:41:51.000Z" + }, + "end": { + "$date": "2022-08-04T04:35:02.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "506725d7-fe0e-4578-aa72-48690cc8bfd4", + "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "start": { + "$date": "2022-08-04T04:08:38.000Z" + }, + "end": { + "$date": "2022-08-04T05:00:43.000Z" + }, + "events": [ + { + "uuid": "0b6e20b7-78b0-4261-8461-79f7ee53d8a4", + "start": { + "$date": "2022-08-04T04:08:38.000Z" + }, + "end": { + "$date": "2022-08-04T05:00:43.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", + "uuid": "67f022d6-8d80-409b-88e7-c90ff09dbd34", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-04T05:48:39.000Z" + }, + "end": { + "$date": "2022-08-04T07:32:45.000Z" + }, + "events": [ + { + "uuid": "b8323909-90cd-4491-bdf1-8761643bba13", + "start": { + "$date": "2022-08-04T05:48:39.000Z" + }, + "end": { + "$date": "2022-08-04T07:32:45.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "5cbc25b3-2474-4ee8-95de-45118f94bbc3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T06:05:48.000Z" + }, + "end": { + "$date": "2022-08-04T06:16:34.000Z" + }, + "events": [ + { + "uuid": "15b0a7d3-a871-46af-ba04-7c94a546ae9c", + "start": { + "$date": "2022-08-04T06:05:48.000Z" + }, + "end": { + "$date": "2022-08-04T06:16:34.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "84644afd-817e-4ba7-ab47-594274790be3", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-04T13:16:50.000Z" + }, + "end": { + "$date": "2022-08-04T15:39:07.000Z" + }, + "events": [ + { + "uuid": "aa1b9221-6b1b-41ea-9497-6ad457b12ed4", + "start": { + "$date": "2022-08-04T13:16:50.000Z" + }, + "end": { + "$date": "2022-08-04T15:39:07.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "bb77ef78-1a92-4aea-982e-df950c21680b", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-04T14:05:00.000Z" + }, + "end": { + "$date": "2022-08-04T14:38:52.000Z" + }, + "events": [ + { + "uuid": "a346edfd-b230-4f64-914f-adac2837da5d", + "start": { + "$date": "2022-08-04T14:05:00.000Z" + }, + "end": { + "$date": "2022-08-04T14:38:52.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", + "uuid": "2389b0f8-9ca5-4b0e-ae47-2402b1962937", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-04T16:56:51.000Z" + }, + "end": { + "$date": "2022-08-04T17:38:17.000Z" + }, + "events": [ + { + "uuid": "98c12d24-8fcc-42b9-8acf-d0d8d68b6bf1", + "start": { + "$date": "2022-08-04T16:56:51.000Z" + }, + "end": { + "$date": "2022-08-04T17:38:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "c4fdc1e7-45bf-4d41-a71c-4c62122b2e71", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T22:21:25.000Z" + }, + "end": { + "$date": "2022-08-04T23:25:46.000Z" + }, + "events": [ + { + "uuid": "a53de936-ca54-4ed8-9af7-94a84c65bd60", + "start": { + "$date": "2022-08-04T22:21:25.000Z" + }, + "end": { + "$date": "2022-08-04T23:25:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "72150d65-1399-4465-b774-1beca2220244", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-04T22:19:37.000Z" + }, + "end": { + "$date": "2022-08-05T04:15:57.000Z" + }, + "events": [ + { + "uuid": "e28e1d8c-7456-4268-9b34-4ef0df147621", + "start": { + "$date": "2022-08-04T22:19:37.000Z" + }, + "end": { + "$date": "2022-08-04T22:31:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "846d54e2-5c7d-4d7f-95ef-bfb991d33fdb", + "start": { + "$date": "2022-08-04T22:31:37.000Z" + }, + "end": { + "$date": "2022-08-04T22:36:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "e94a6013-bd99-4249-a719-3f8cbc2e10a7", + "start": { + "$date": "2022-08-04T22:36:37.000Z" + }, + "end": { + "$date": "2022-08-04T22:46:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "6ff6e81e-4681-456f-9832-08963fade613", + "start": { + "$date": "2022-08-04T22:46:37.000Z" + }, + "end": { + "$date": "2022-08-04T22:51:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ae2a257c-2f3f-4f03-b6d1-ab21e31760a4", + "start": { + "$date": "2022-08-04T22:51:37.000Z" + }, + "end": { + "$date": "2022-08-04T23:11:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "2601d535-e1cb-441a-9e40-a25f3d506558", + "start": { + "$date": "2022-08-04T23:11:37.000Z" + }, + "end": { + "$date": "2022-08-04T23:16:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "225451e9-56d3-4699-b73c-41872d334663", + "start": { + "$date": "2022-08-04T23:16:37.000Z" + }, + "end": { + "$date": "2022-08-05T00:20:37.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "fda014c7-a9c4-4cb0-a0c3-40689f5145f0", + "start": { + "$date": "2022-08-05T00:20:37.000Z" + }, + "end": { + "$date": "2022-08-05T00:21:37.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "956bd461-a658-4470-9add-eba01f641742", + "start": { + "$date": "2022-08-05T00:21:37.000Z" + }, + "end": { + "$date": "2022-08-05T04:15:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", + "uuid": "d2369bd5-823a-41ad-9500-a54b6ecfddeb", + "user": "236b4fc4-5ae1-4bae-9335-28138935433a", + "start": { + "$date": "2022-08-04T22:38:15.000Z" + }, + "end": { + "$date": "2022-08-04T23:21:11.000Z" + }, + "events": [ + { + "uuid": "645984f6-b6cd-465e-81b6-4f741886a6be", + "start": { + "$date": "2022-08-04T22:38:15.000Z" + }, + "end": { + "$date": "2022-08-04T23:21:11.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "9326c7b2-1557-4cf8-b9a4-377c56019ffe", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T23:29:31.000Z" + }, + "end": { + "$date": "2022-08-04T23:40:47.000Z" + }, + "events": [ + { + "uuid": "f811e069-d8be-45e2-ada1-bfd53fadd718", + "start": { + "$date": "2022-08-04T23:29:31.000Z" + }, + "end": { + "$date": "2022-08-04T23:40:47.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "b0d053d3-49c0-49da-a628-75bd826852df", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-04T23:40:57.000Z" + }, + "end": { + "$date": "2022-08-05T00:16:40.000Z" + }, + "events": [ + { + "uuid": "e764f695-56a7-4eac-8f0e-d01450b0653c", + "start": { + "$date": "2022-08-04T23:40:57.000Z" + }, + "end": { + "$date": "2022-08-04T23:52:57.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "de6a324b-6f2a-403c-bf5a-03d4ebc3782f", + "start": { + "$date": "2022-08-04T23:52:57.000Z" + }, + "end": { + "$date": "2022-08-05T00:14:57.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "ceaea2b3-efd1-451c-a385-f0d1cf4e0f7e", + "start": { + "$date": "2022-08-05T00:14:57.000Z" + }, + "end": { + "$date": "2022-08-05T00:16:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "30ad2127-e83c-403a-9129-be0c6e6f0d16", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-08-05T00:43:10.000Z" + }, + "end": { + "$date": "2022-08-05T01:02:29.000Z" + }, + "events": [ + { + "uuid": "c8b28733-695b-4277-ade5-3bd81931d093", + "start": { + "$date": "2022-08-05T00:43:10.000Z" + }, + "end": { + "$date": "2022-08-05T01:02:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "73bb9b65-8f91-43df-bdc0-0fd88e614dd7", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-08-05T01:05:42.000Z" + }, + "end": { + "$date": "2022-08-05T01:25:21.000Z" + }, + "events": [ + { + "uuid": "52224767-b834-4295-8ae9-718a4641286d", + "start": { + "$date": "2022-08-05T01:05:42.000Z" + }, + "end": { + "$date": "2022-08-05T01:25:21.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "6cba8393-5a6b-452d-a694-bbc1fb7751b0", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-05T01:05:51.000Z" + }, + "end": { + "$date": "2022-08-05T01:25:16.000Z" + }, + "events": [ + { + "uuid": "cfd2d60a-b133-4e2e-b83b-3957a8eee048", + "start": { + "$date": "2022-08-05T01:05:51.000Z" + }, + "end": { + "$date": "2022-08-05T01:25:16.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "8594a479-30c4-47a5-a017-bbc32b63008c", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-05T01:30:12.000Z" + }, + "end": { + "$date": "2022-08-05T01:46:57.000Z" + }, + "events": [ + { + "uuid": "064c56d5-edb1-44e9-abfd-9524c6b9d279", + "start": { + "$date": "2022-08-05T01:30:12.000Z" + }, + "end": { + "$date": "2022-08-05T01:46:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "f450f93c-cfba-4af4-8c3d-a46328adb6af", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-08-05T01:30:23.000Z" + }, + "end": { + "$date": "2022-08-05T01:47:03.000Z" + }, + "events": [ + { + "uuid": "855ff81a-ec5d-4539-9db5-0121aa0b3f1c", + "start": { + "$date": "2022-08-05T01:30:23.000Z" + }, + "end": { + "$date": "2022-08-05T01:47:03.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", + "uuid": "7142aaf6-d69a-458b-aa79-b296bbd78ed5", + "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "start": { + "$date": "2022-08-05T01:46:54.000Z" + }, + "end": { + "$date": "2022-08-05T02:52:26.000Z" + }, + "events": [ + { + "uuid": "2c9dde74-a198-4fff-9b72-d48a3cf2eb52", + "start": { + "$date": "2022-08-05T01:46:54.000Z" + }, + "end": { + "$date": "2022-08-05T02:52:26.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "40b92519-2ea1-432f-9d69-f2a09e817f87", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-08-05T01:49:33.000Z" + }, + "end": { + "$date": "2022-08-05T02:06:40.000Z" + }, + "events": [ + { + "uuid": "eefb27f1-94d4-48db-a14a-63768108c70d", + "start": { + "$date": "2022-08-05T01:49:33.000Z" + }, + "end": { + "$date": "2022-08-05T02:06:40.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", + "uuid": "1936ed50-c885-43f1-b3f3-2c52ce85df00", + "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "start": { + "$date": "2022-08-05T01:49:32.000Z" + }, + "end": { + "$date": "2022-08-05T02:06:48.000Z" + }, + "events": [ + { + "uuid": "a7da25f7-6bfa-406d-9c91-fb0d61d9b38c", + "start": { + "$date": "2022-08-05T01:49:32.000Z" + }, + "end": { + "$date": "2022-08-05T02:06:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "7ed8928e-2180-4d87-bd23-b3f555a106a2", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-08-05T02:07:58.000Z" + }, + "end": { + "$date": "2022-08-05T03:22:59.000Z" + }, + "events": [ + { + "uuid": "df56c55d-441e-4ea6-9b5a-7811fbccc93b", + "start": { + "$date": "2022-08-05T02:07:58.000Z" + }, + "end": { + "$date": "2022-08-05T03:22:59.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", + "uuid": "9dc80078-ce4b-4d1d-93f3-8cc5425c5b6b", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T02:08:30.000Z" + }, + "end": { + "$date": "2022-08-05T02:33:48.000Z" + }, + "events": [ + { + "uuid": "abae7c33-837a-4e3b-84a5-41dbfb568c47", + "start": { + "$date": "2022-08-05T02:08:30.000Z" + }, + "end": { + "$date": "2022-08-05T02:19:30.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "d38263af-fdb5-4423-8d08-e5fcec217d83", + "start": { + "$date": "2022-08-05T02:19:30.000Z" + }, + "end": { + "$date": "2022-08-05T02:26:30.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "02a7347b-e396-458e-9b96-6cabe6e64fc6", + "start": { + "$date": "2022-08-05T02:26:30.000Z" + }, + "end": { + "$date": "2022-08-05T02:33:48.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "8f784f64-3675-4d10-bde4-bb6406ccb1f1", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T02:35:59.000Z" + }, + "end": { + "$date": "2022-08-05T02:37:44.000Z" + }, + "events": [ + { + "uuid": "1976364d-58e1-4a6e-9db7-a5107f387578", + "start": { + "$date": "2022-08-05T02:35:59.000Z" + }, + "end": { + "$date": "2022-08-05T02:37:44.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "8d526cbe-780c-436e-897a-6c847ceb7299", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T02:37:59.000Z" + }, + "end": { + "$date": "2022-08-05T03:23:17.000Z" + }, + "events": [ + { + "uuid": "5f968914-2d3b-4804-b2ec-3d4822651317", + "start": { + "$date": "2022-08-05T02:37:59.000Z" + }, + "end": { + "$date": "2022-08-05T03:23:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "46e9a3ff-bdde-4ae6-bed3-7c7d78627d78", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T03:37:13.000Z" + }, + "end": { + "$date": "2022-08-05T03:46:14.000Z" + }, + "events": [ + { + "uuid": "812658eb-b5e8-4dd2-a784-e0c79c5e8bbd", + "start": { + "$date": "2022-08-05T03:37:13.000Z" + }, + "end": { + "$date": "2022-08-05T03:46:14.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", + "uuid": "c69846dd-3aa2-431d-ae23-01c105348cc3", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T03:51:24.000Z" + }, + "end": { + "$date": "2022-08-05T04:18:10.000Z" + }, + "events": [ + { + "uuid": "3a824cbb-9429-440b-bd4a-bb7d6e8ccdbd", + "start": { + "$date": "2022-08-05T03:51:24.000Z" + }, + "end": { + "$date": "2022-08-05T04:18:10.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", + "uuid": "440d28dc-d3ca-4ca6-9b76-7d2d31de9b9e", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-05T04:17:02.000Z" + }, + "end": { + "$date": "2022-08-05T05:50:30.000Z" + }, + "events": [ + { + "uuid": "2edbb7f8-9b0b-4cef-b503-5d6ca1d57e91", + "start": { + "$date": "2022-08-05T04:17:02.000Z" + }, + "end": { + "$date": "2022-08-05T05:18:02.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "7d6b6d28-cdb8-47ab-a52d-6219113ead4c", + "start": { + "$date": "2022-08-05T05:18:02.000Z" + }, + "end": { + "$date": "2022-08-05T05:21:02.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "0d650740-3f3b-4e4a-bc2c-931039f3958e", + "start": { + "$date": "2022-08-05T05:21:02.000Z" + }, + "end": { + "$date": "2022-08-05T05:50:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "fc9823b2-8515-4998-b096-bc7e4ba6dd29", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T04:45:46.000Z" + }, + "end": { + "$date": "2022-08-05T05:01:27.000Z" + }, + "events": [ + { + "uuid": "35eff0d1-32c0-4365-963a-b98ff3c22e9f", + "start": { + "$date": "2022-08-05T04:45:46.000Z" + }, + "end": { + "$date": "2022-08-05T05:01:27.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", + "uuid": "993b563e-33fc-4a76-aa3c-c8afb4bfbfef", + "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "start": { + "$date": "2022-08-05T05:49:43.000Z" + }, + "end": { + "$date": "2022-08-05T06:49:29.000Z" + }, + "events": [ + { + "uuid": "b3610ce5-5608-46a9-ae2f-bbf4711a3113", + "start": { + "$date": "2022-08-05T05:49:43.000Z" + }, + "end": { + "$date": "2022-08-05T06:49:29.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "d54024ee-1b75-4d79-a7f1-95028f08bdd1", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-05T07:31:13.000Z" + }, + "end": { + "$date": "2022-08-05T08:08:04.000Z" + }, + "events": [ + { + "uuid": "e46fcd49-da86-4239-89b9-0e70200d7710", + "start": { + "$date": "2022-08-05T07:31:13.000Z" + }, + "end": { + "$date": "2022-08-05T08:08:04.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", + "uuid": "6b4bcf96-2148-4aa6-a9bb-b64480a740ca", + "user": "624e0127-9b4e-456a-87cf-916e22b8e621", + "start": { + "$date": "2022-08-05T05:55:04.000Z" + }, + "end": { + "$date": "2022-08-05T07:54:17.000Z" + }, + "events": [ + { + "uuid": "2d3573d4-8a25-41c8-bd66-df6d75597939", + "start": { + "$date": "2022-08-05T05:55:04.000Z" + }, + "end": { + "$date": "2022-08-05T07:54:17.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", + "uuid": "44bf5c08-2bf0-47d6-8dfe-d9c02dfee542", + "user": "b2511594-7085-474f-8ff5-959897f7d8d0", + "start": { + "$date": "2022-08-05T15:57:57.000Z" + }, + "end": { + "$date": "2022-08-05T16:16:56.000Z" + }, + "events": [ + { + "uuid": "a7b51115-84d8-45f0-a2ab-34f4381fb78a", + "start": { + "$date": "2022-08-05T15:57:57.000Z" + }, + "end": { + "$date": "2022-08-05T16:16:56.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", + "uuid": "13fb1fe9-665b-4223-a256-8a651c151601", + "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "start": { + "$date": "2022-08-05T20:58:47.000Z" + }, + "end": { + "$date": "2022-08-05T22:18:46.000Z" + }, + "events": [ + { + "uuid": "00a19362-3245-4f77-b3ec-c2f978653d72", + "start": { + "$date": "2022-08-05T20:58:47.000Z" + }, + "end": { + "$date": "2022-08-05T22:18:46.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "5d55b014-3273-4e3c-9cb6-96bb71ff6fc1", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-05T21:37:48.000Z" + }, + "end": { + "$date": "2022-08-05T21:50:28.000Z" + }, + "events": [ + { + "uuid": "a88be5c4-7b7d-43ba-a3e9-8525473f4b99", + "start": { + "$date": "2022-08-05T21:37:48.000Z" + }, + "end": { + "$date": "2022-08-05T21:50:28.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", + "uuid": "cfca85b0-352b-45e7-a647-17f6eee84786", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-05T22:26:14.000Z" + }, + "end": { + "$date": "2022-08-05T22:37:25.000Z" + }, + "events": [ + { + "uuid": "fa4078cd-ed35-4112-bdcd-6cdabf34258d", + "start": { + "$date": "2022-08-05T22:26:14.000Z" + }, + "end": { + "$date": "2022-08-05T22:37:25.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "518d0d88-5f84-4b31-872c-404a031efa43", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-06T00:00:56.000Z" + }, + "end": { + "$date": "2022-08-06T00:28:39.000Z" + }, + "events": [ + { + "uuid": "c9318616-276a-4571-851d-5fc5046d27cf", + "start": { + "$date": "2022-08-06T00:00:56.000Z" + }, + "end": { + "$date": "2022-08-06T00:17:56.000Z" + }, + "state": "ACTIVE" + }, + { + "uuid": "bc96c850-9a2d-490e-b600-43b42caa61fd", + "start": { + "$date": "2022-08-06T00:17:56.000Z" + }, + "end": { + "$date": "2022-08-06T00:22:56.000Z" + }, + "state": "IDLE" + }, + { + "uuid": "7cd208d1-c1f1-4397-a502-40732a7bc90b", + "start": { + "$date": "2022-08-06T00:22:56.000Z" + }, + "end": { + "$date": "2022-08-06T00:28:39.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "d37341d1-3892-4c86-92db-45a9333a5fca", + "uuid": "5c0f1f29-0df7-4a08-832a-240db2c43ee9", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-06T00:30:09.000Z" + }, + "end": { + "$date": "2022-08-06T00:44:30.000Z" + }, + "events": [ + { + "uuid": "88499b02-d998-4e62-ac67-273dfce0914f", + "start": { + "$date": "2022-08-06T00:30:09.000Z" + }, + "end": { + "$date": "2022-08-06T00:44:30.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", + "uuid": "ba014ce2-75f1-43e2-8d8e-d4681627a8c6", + "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "start": { + "$date": "2022-08-06T00:40:09.000Z" + }, + "end": { + "$date": "2022-08-06T01:26:57.000Z" + }, + "events": [ + { + "uuid": "c0b8ed09-2aad-4f7d-9439-1ef4160f513c", + "start": { + "$date": "2022-08-06T00:40:09.000Z" + }, + "end": { + "$date": "2022-08-06T01:26:57.000Z" + }, + "state": "ACTIVE" + } + ] + }, + { + "game": "dc697244-04f1-4bab-9699-8bdec13ec441", + "uuid": "d0421874-0116-4860-af3f-d40207a3aeec", + "user": "f38588a9-b024-451e-a464-7e32d0bd915c", + "start": { + "$date": "2022-08-06T00:44:50.000Z" + }, + "end": { + "$date": "2022-08-06T01:28:36.000Z" + }, + "events": [ + { + "uuid": "00eee995-95b1-499e-bfbe-8042de7164e6", + "start": { + "$date": "2022-08-06T00:44:50.000Z" + }, + "end": { + "$date": "2022-08-06T01:28:36.000Z" + }, + "state": "ACTIVE" + } + ] + } +] \ No newline at end of file diff --git a/users.json b/users.json new file mode 100644 index 0000000..411672a --- /dev/null +++ b/users.json @@ -0,0 +1,159 @@ +[ + { + "uuid": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", + "discordId": "126559113210626048", + "username": "lobabob", + "displayName": "lobabob", + "aliases": [] + }, + { + "uuid": "f38588a9-b024-451e-a464-7e32d0bd915c", + "discordId": "205379374852210689", + "username": "Gandalf", + "displayName": "Gandalf", + "aliases": [] + }, + { + "uuid": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", + "discordId": "127643344376430592", + "username": "Silver Pews", + "displayName": "Silver Pews", + "aliases": [ + "jarkyll" + ] + }, + { + "uuid": "624e0127-9b4e-456a-87cf-916e22b8e621", + "discordId": "367506979263873034", + "username": "Acidn420", + "displayName": "Acidn420", + "aliases": [] + }, + { + "uuid": "5a7d6367-64d5-448b-b850-8b64b8bc8122", + "discordId": "248592148708982784", + "username": "chirs", + "displayName": "chirs", + "aliases": [ + "Ion" + ] + }, + { + "uuid": "9941d522-ea9d-4758-9ff9-7dbb075278eb", + "discordId": "134134771763773443", + "username": "KangMu", + "displayName": "KangMu", + "aliases": [] + }, + { + "uuid": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", + "discordId": "118908014634729474", + "username": "solewolf", + "displayName": "solewolf", + "aliases": [] + }, + { + "uuid": "236b4fc4-5ae1-4bae-9335-28138935433a", + "discordId": "660258246078103585", + "username": "bobninjasub1", + "displayName": "bobninjasub1", + "aliases": [ + "bobninjasub11" + ] + }, + { + "uuid": "b2511594-7085-474f-8ff5-959897f7d8d0", + "discordId": "128717865598713856", + "username": "alikhanx12", + "displayName": "alikhanx12", + "aliases": [] + }, + { + "uuid": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", + "discordId": "297179725808271360", + "username": "Janix", + "displayName": "Janix", + "aliases": [] + }, + { + "uuid": "15d53af1-2454-443f-a3a2-32ea43b032f4", + "discordId": "236334683330314240", + "username": "DekuNiichan", + "displayName": "DekuNiichan", + "aliases": [] + }, + { + "uuid": "f559bf10-db18-4e1c-9ef2-c98e305626fa", + "discordId": "422491117087490059", + "username": "foobarbazhogafuga", + "displayName": "foobarbazhogafuga", + "aliases": [ + "hackerman" + ] + }, + { + "uuid": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", + "discordId": "439599334540181506", + "username": "Ralph", + "displayName": "Ralph", + "aliases": [] + }, + { + "uuid": "9432d19a-aae4-472c-ae38-13b5be06cfc0", + "discordId": "138423257719242752", + "username": "Not Kevin", + "displayName": "Not Kevin", + "aliases": [] + }, + { + "uuid": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", + "discordId": "291405991772422144", + "username": "M3M0214", + "displayName": "M3M0214", + "aliases": [] + }, + { + "uuid": "ad48d8a3-a632-43a1-9809-56a73597d54a", + "discordId": "528738137556385793", + "username": "wedemmoez", + "displayName": "wedemmoez", + "aliases": [ + "eat the rich" + ] + }, + { + "uuid": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", + "discordId": "173312061508550656", + "username": "Aly", + "displayName": "Aly", + "aliases": [] + }, + { + "uuid": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", + "discordId": "370668834723594241", + "username": "AshenOne", + "displayName": "AshenOne", + "aliases": [] + }, + { + "uuid": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", + "discordId": "170227855282667521", + "username": "Ari", + "displayName": "Ari", + "aliases": [] + }, + { + "uuid": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", + "discordId": "317845859020570624", + "username": "ZSR", + "displayName": "ZSR", + "aliases": [] + }, + { + "uuid": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", + "discordId": "746226534502760509", + "username": "bloodaudiocontent", + "displayName": "bloodaudiocontent", + "aliases": [] + } +] \ No newline at end of file From 0150b4a321a5a3fa1027777f4e35effeaa7aa087 Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Tue, 9 Aug 2022 11:27:29 -0500 Subject: [PATCH 10/14] Complete resolvers and add MongoDataSource/compression --- package-lock.json | 1328 ++++++++++++++++++++++++-- package.json | 5 +- src/dataSources/Game/index.js | 26 +- src/dataSources/Session/index.js | 34 +- src/dataSources/StatusEvent/index.js | 18 + src/dataSources/User/index.js | 26 +- src/index.js | 6 +- src/schema/Game.js | 15 +- src/schema/Session.js | 12 + src/schema/StatusEvent.js | 1 - src/schema/User.js | 15 +- src/schema/index.js | 6 +- 12 files changed, 1361 insertions(+), 131 deletions(-) create mode 100644 src/dataSources/StatusEvent/index.js diff --git a/package-lock.json b/package-lock.json index d50e34e..772f092 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,9 @@ "license": "ISC", "dependencies": { "@graphql-tools/schema": "^8.5.1", + "apollo-datasource-mongodb": "^0.5.4", "apollo-server": "^3.10.0", + "compression": "^1.7.4", "dotenv": "^16.0.1", "express": "^4.18.1", "graphql": "^16.5.0", @@ -295,6 +297,15 @@ "@types/node": "*" } }, + "node_modules/@types/bson": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.2.0.tgz", + "integrity": "sha512-ELCPqAdroMdcuxqwMgUpifQyRoTpyYCNr1V9xKyF40VsBobsj+BbWNRvwGchMgBPGqkw655ypkjj2MEF5ywVwg==", + "deprecated": "This is a stub types definition. bson provides its own type definitions, so you do not need this installed.", + "dependencies": { + "bson": "*" + } + }, "node_modules/@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", @@ -339,10 +350,19 @@ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, + "node_modules/@types/mongodb": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.20.tgz", + "integrity": "sha512-WcdpPJCakFzcWWD9juKoZbRtQxKIMYF/JIAM4JrNHrMcnJL6/a2NWjXxW7fo9hxboxxkg+icff8d7+WIEvKgYQ==", + "dependencies": { + "@types/bson": "*", + "@types/node": "*" + } + }, "node_modules/@types/node": { - "version": "18.6.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.4.tgz", - "integrity": "sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==" + "version": "18.6.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.5.tgz", + "integrity": "sha512-Xjt5ZGUa5WusGZJ4WJPbOT8QOqp6nDynVFRKcUt32bOgvXEoc6o085WNkYTMO7ifAj2isEfQQ2cseE+wT6jsRw==" }, "node_modules/@types/qs": { "version": "6.9.7", @@ -418,6 +438,74 @@ "node": ">=12.0" } }, + "node_modules/apollo-datasource-mongodb": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/apollo-datasource-mongodb/-/apollo-datasource-mongodb-0.5.4.tgz", + "integrity": "sha512-XXbBoyBQ21kGp/oNUupAF5F7LK50Nt7FIRp0MclaabpeAkiBOkp2QtcYrfhehKoxI/wysCvY3IDedey7wSLWXA==", + "dependencies": { + "@types/mongodb": "^3.5.27", + "apollo-datasource": "^0.3.1", + "apollo-server-caching": "^0.3.1", + "apollo-server-errors": "^2.4.1", + "bson": "^4.1.0", + "dataloader": "^1.4.0" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "mongoose": "*" + } + }, + "node_modules/apollo-datasource-mongodb/node_modules/apollo-datasource": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.3.1.tgz", + "integrity": "sha512-qdEUeonc9pPZvYwXK36h2NZoT7Pddmy0HYOzdV0ON5pcG1YtNmUyyYi83Q60V5wTWjuaCjyJ9hOY6wr0BMvQuA==", + "dependencies": { + "apollo-server-caching": "0.3.1", + "apollo-server-env": "2.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/apollo-datasource-mongodb/node_modules/apollo-server-env": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.2.0.tgz", + "integrity": "sha512-wjJiI5nQWPBpNmpiLP389Ezpstp71szS6DHAeTgYLb/ulCw3CTuuA+0/E1bsThVWiQaDeHZE0sE3yI8q2zrYiA==", + "dependencies": { + "node-fetch": "^2.1.2", + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/apollo-datasource-mongodb/node_modules/apollo-server-errors": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.5.0.tgz", + "integrity": "sha512-lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } + }, + "node_modules/apollo-datasource-mongodb/node_modules/dataloader": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz", + "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==" + }, + "node_modules/apollo-datasource-mongodb/node_modules/graphql": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", + "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "peer": true, + "engines": { + "node": ">= 10.x" + } + }, "node_modules/apollo-reporting-protobuf": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz", @@ -440,6 +528,30 @@ "graphql": "^15.3.0 || ^16.0.0" } }, + "node_modules/apollo-server-caching": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.3.1.tgz", + "integrity": "sha512-mfxzikYXbB/OoEms77AGYwRh7FF3Oim5v5XWAL+VL49FrkbZt5lopVa4bABi7Mz8Nt3Htl9EBJN8765s/yh8IA==", + "dependencies": { + "lru-cache": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/apollo-server-caching/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/apollo-server-caching/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, "node_modules/apollo-server-core": { "version": "3.10.0", "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.0.tgz", @@ -568,6 +680,24 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "node_modules/array.prototype.reduce": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", + "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/async-retry": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", @@ -736,6 +866,47 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -798,6 +969,21 @@ "ms": "2.0.0" } }, + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", @@ -844,6 +1030,63 @@ "node": ">= 0.8" } }, + "node_modules/es-abstract": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", + "integrity": "sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -931,6 +1174,14 @@ "node": ">= 0.8" } }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -965,6 +1216,31 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-intrinsic": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", @@ -978,6 +1254,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", @@ -1022,6 +1313,14 @@ "node": ">= 0.4.0" } }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -1030,6 +1329,17 @@ "node": ">=4" } }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", @@ -1041,6 +1351,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", @@ -1096,6 +1420,19 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ip": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", @@ -1109,6 +1446,17 @@ "node": ">= 0.10" } }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -1120,6 +1468,46 @@ "node": ">=8" } }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -1139,6 +1527,17 @@ "node": ">=0.10.0" } }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -1147,6 +1546,91 @@ "node": ">=0.12.0" } }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/kareem": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.4.1.tgz", + "integrity": "sha512-aJ9opVoXroQUPfovYP5kaj2lM7Jn02Gw13bL0lg9v0V7SaUc0qavPs0Eue7d2DcC3NjqI6QAUElXNsuZSeM+EA==", + "peer": true + }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", @@ -1279,37 +1763,78 @@ "whatwg-url": "^11.0.0" } }, - "node_modules/mongodb-connection-string-url/node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "node_modules/mongoose": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.5.1.tgz", + "integrity": "sha512-8C0213y279nrSp6Au+WB+l/VczcotMU65jalTJJxU6KYf/Kd8gNW9+B3giWNJOVd8VvKvUQG0suWv/Vngp/83A==", + "peer": true, "dependencies": { - "punycode": "^2.1.1" + "bson": "^4.6.5", + "kareem": "2.4.1", + "mongodb": "4.8.1", + "mpath": "0.9.0", + "mquery": "4.0.3", + "ms": "2.1.3", + "sift": "16.0.0" }, "engines": { - "node": ">=12" + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mongoose" } }, - "node_modules/mongodb-connection-string-url/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "node_modules/mongoose/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "peer": true + }, + "node_modules/mpath": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", + "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", + "peer": true, "engines": { - "node": ">=12" + "node": ">=4.0.0" } }, - "node_modules/mongodb-connection-string-url/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "node_modules/mquery": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/mquery/-/mquery-4.0.3.tgz", + "integrity": "sha512-J5heI+P08I6VJ2Ky3+33IpCdAvlYGTSUjwTPxkAr8i8EoduPMBX2OY/wa3IKZIQl7MU4SbFk8ndgSKyB/cl1zA==", + "peer": true, "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" + "debug": "4.x" }, "engines": { - "node": ">=12" + "node": ">=12.0.0" } }, + "node_modules/mquery/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "peer": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/mquery/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "peer": true + }, "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -1342,6 +1867,25 @@ } } }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/nodemon": { "version": "2.0.19", "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", @@ -1421,6 +1965,48 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.3.tgz", + "integrity": "sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", + "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", + "dependencies": { + "array.prototype.reduce": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", @@ -1432,6 +2018,14 @@ "node": ">= 0.8" } }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -1528,6 +2122,22 @@ "node": ">=8.10.0" } }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -1652,6 +2262,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/sift": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.0.tgz", + "integrity": "sha512-ILTjdP2Mv9V1kIxWMXeMTIRbOBrqKc4JAXmFMnFq3fKeyQ2Qwa3Dw1ubcye3vR+Y6ofA0b9gNDr/y2t6eUeIzQ==", + "peer": true + }, "node_modules/simple-update-notifier": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", @@ -1710,6 +2326,32 @@ "node": ">= 0.8" } }, + "node_modules/string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -1752,9 +2394,15 @@ } }, "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } }, "node_modules/tslib": { "version": "2.4.0", @@ -1773,6 +2421,20 @@ "node": ">= 0.6" } }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", @@ -1786,6 +2448,21 @@ "node": ">= 0.8" } }, + "node_modules/util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", + "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -1819,9 +2496,12 @@ } }, "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } }, "node_modules/whatwg-mimetype": { "version": "3.0.0", @@ -1832,12 +2512,30 @@ } }, "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/xss": { @@ -2084,6 +2782,14 @@ "@types/node": "*" } }, + "@types/bson": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.2.0.tgz", + "integrity": "sha512-ELCPqAdroMdcuxqwMgUpifQyRoTpyYCNr1V9xKyF40VsBobsj+BbWNRvwGchMgBPGqkw655ypkjj2MEF5ywVwg==", + "requires": { + "bson": "*" + } + }, "@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", @@ -2128,10 +2834,19 @@ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, + "@types/mongodb": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.20.tgz", + "integrity": "sha512-WcdpPJCakFzcWWD9juKoZbRtQxKIMYF/JIAM4JrNHrMcnJL6/a2NWjXxW7fo9hxboxxkg+icff8d7+WIEvKgYQ==", + "requires": { + "@types/bson": "*", + "@types/node": "*" + } + }, "@types/node": { - "version": "18.6.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.4.tgz", - "integrity": "sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==" + "version": "18.6.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.5.tgz", + "integrity": "sha512-Xjt5ZGUa5WusGZJ4WJPbOT8QOqp6nDynVFRKcUt32bOgvXEoc6o085WNkYTMO7ifAj2isEfQQ2cseE+wT6jsRw==" }, "@types/qs": { "version": "6.9.7", @@ -2198,6 +2913,56 @@ "apollo-server-env": "^4.2.1" } }, + "apollo-datasource-mongodb": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/apollo-datasource-mongodb/-/apollo-datasource-mongodb-0.5.4.tgz", + "integrity": "sha512-XXbBoyBQ21kGp/oNUupAF5F7LK50Nt7FIRp0MclaabpeAkiBOkp2QtcYrfhehKoxI/wysCvY3IDedey7wSLWXA==", + "requires": { + "@types/mongodb": "^3.5.27", + "apollo-datasource": "^0.3.1", + "apollo-server-caching": "^0.3.1", + "apollo-server-errors": "^2.4.1", + "bson": "^4.1.0", + "dataloader": "^1.4.0" + }, + "dependencies": { + "apollo-datasource": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.3.1.tgz", + "integrity": "sha512-qdEUeonc9pPZvYwXK36h2NZoT7Pddmy0HYOzdV0ON5pcG1YtNmUyyYi83Q60V5wTWjuaCjyJ9hOY6wr0BMvQuA==", + "requires": { + "apollo-server-caching": "0.3.1", + "apollo-server-env": "2.2.0" + } + }, + "apollo-server-env": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.2.0.tgz", + "integrity": "sha512-wjJiI5nQWPBpNmpiLP389Ezpstp71szS6DHAeTgYLb/ulCw3CTuuA+0/E1bsThVWiQaDeHZE0sE3yI8q2zrYiA==", + "requires": { + "node-fetch": "^2.1.2", + "util.promisify": "^1.0.0" + } + }, + "apollo-server-errors": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.5.0.tgz", + "integrity": "sha512-lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA==", + "requires": {} + }, + "dataloader": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz", + "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==" + }, + "graphql": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", + "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "peer": true + } + } + }, "apollo-reporting-protobuf": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz", @@ -2217,6 +2982,29 @@ "express": "^4.17.1" } }, + "apollo-server-caching": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.3.1.tgz", + "integrity": "sha512-mfxzikYXbB/OoEms77AGYwRh7FF3Oim5v5XWAL+VL49FrkbZt5lopVa4bABi7Mz8Nt3Htl9EBJN8765s/yh8IA==", + "requires": { + "lru-cache": "^5.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } + }, "apollo-server-core": { "version": "3.10.0", "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.0.tgz", @@ -2314,6 +3102,18 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "array.prototype.reduce": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", + "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, "async-retry": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", @@ -2424,6 +3224,40 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -2474,6 +3308,15 @@ "ms": "2.0.0" } }, + "define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, "denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", @@ -2504,6 +3347,51 @@ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" }, + "es-abstract": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", + "integrity": "sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", @@ -2579,6 +3467,14 @@ "unpipe": "~1.0.0" } }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -2600,6 +3496,22 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, "get-intrinsic": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", @@ -2610,6 +3522,15 @@ "has-symbols": "^1.0.3" } }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", @@ -2639,16 +3560,37 @@ "function-bind": "^1.1.1" } }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, "http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", @@ -2684,6 +3626,16 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, "ip": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", @@ -2694,6 +3646,14 @@ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -2702,6 +3662,28 @@ "binary-extensions": "^2.0.0" } }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -2715,11 +3697,71 @@ "is-extglob": "^2.1.1" } }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "kareem": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.4.1.tgz", + "integrity": "sha512-aJ9opVoXroQUPfovYP5kaj2lM7Jn02Gw13bL0lg9v0V7SaUc0qavPs0Eue7d2DcC3NjqI6QAUElXNsuZSeM+EA==", + "peer": true + }, "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", @@ -2814,29 +3856,60 @@ "requires": { "@types/whatwg-url": "^8.2.1", "whatwg-url": "^11.0.0" + } + }, + "mongoose": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.5.1.tgz", + "integrity": "sha512-8C0213y279nrSp6Au+WB+l/VczcotMU65jalTJJxU6KYf/Kd8gNW9+B3giWNJOVd8VvKvUQG0suWv/Vngp/83A==", + "peer": true, + "requires": { + "bson": "^4.6.5", + "kareem": "2.4.1", + "mongodb": "4.8.1", + "mpath": "0.9.0", + "mquery": "4.0.3", + "ms": "2.1.3", + "sift": "16.0.0" }, "dependencies": { - "tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "peer": true + } + } + }, + "mpath": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", + "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", + "peer": true + }, + "mquery": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/mquery/-/mquery-4.0.3.tgz", + "integrity": "sha512-J5heI+P08I6VJ2Ky3+33IpCdAvlYGTSUjwTPxkAr8i8EoduPMBX2OY/wa3IKZIQl7MU4SbFk8ndgSKyB/cl1zA==", + "peer": true, + "requires": { + "debug": "4.x" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "peer": true, "requires": { - "punycode": "^2.1.1" + "ms": "2.1.2" } }, - "webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - }, - "whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "requires": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - } + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "peer": true } } }, @@ -2856,6 +3929,27 @@ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "requires": { "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } } }, "nodemon": { @@ -2913,6 +4007,33 @@ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.3.tgz", + "integrity": "sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", + "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", + "requires": { + "array.prototype.reduce": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.1" + } + }, "on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", @@ -2921,6 +4042,11 @@ "ee-first": "1.1.1" } }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -2987,6 +4113,16 @@ "picomatch": "^2.2.1" } }, + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, "retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -3078,6 +4214,12 @@ "object-inspect": "^1.9.0" } }, + "sift": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.0.tgz", + "integrity": "sha512-ILTjdP2Mv9V1kIxWMXeMTIRbOBrqKc4JAXmFMnFq3fKeyQ2Qwa3Dw1ubcye3vR+Y6ofA0b9gNDr/y2t6eUeIzQ==", + "peer": true + }, "simple-update-notifier": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.0.7.tgz", @@ -3121,6 +4263,26 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" }, + "string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -3151,9 +4313,12 @@ } }, "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "requires": { + "punycode": "^2.1.1" + } }, "tslib": { "version": "2.4.0", @@ -3169,6 +4334,17 @@ "mime-types": "~2.1.24" } }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, "undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", @@ -3179,6 +4355,18 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, + "util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", + "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + } + }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -3200,9 +4388,9 @@ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" }, "whatwg-mimetype": { "version": "3.0.0", @@ -3210,12 +4398,24 @@ "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" }, "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" } }, "xss": { diff --git a/package.json b/package.json index 3d640ce..cc19dca 100644 --- a/package.json +++ b/package.json @@ -20,13 +20,14 @@ "homepage": "https://github.com/gabriel-discord/gabriel-api#readme", "dependencies": { "@graphql-tools/schema": "^8.5.1", + "apollo-datasource-mongodb": "^0.5.4", "apollo-server": "^3.10.0", + "compression": "^1.7.4", "dotenv": "^16.0.1", "express": "^4.18.1", "graphql": "^16.5.0", "lodash": "^4.17.21", "mongodb": "^4.8.1", - "nodemon": "^2.0.19", - "uuid": "^8.3.2" + "nodemon": "^2.0.19" } } diff --git a/src/dataSources/Game/index.js b/src/dataSources/Game/index.js index 6f8a8c8..1d70216 100644 --- a/src/dataSources/Game/index.js +++ b/src/dataSources/Game/index.js @@ -1,29 +1,27 @@ -const { Db, Collection } = require('mongodb'); +const { MongoDataSource } = require('apollo-datasource-mongodb'); -class Game { +class Game extends MongoDataSource { constructor(config) { - this.mongo = config.MongoDB; + super(config.MongoDB.client.db().collection(config.MongoDB.gameCollection)); + this.transformGame = this.transformGame.bind(this); } async initialize({ context }) { + super.initialize(); this.context = context; - await this.mongo.client.connect(); - - this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, 'game'); - } - - async getGame({ id }) { - return this.transformGame(id); } - async getGameById(id) { - return this.transformGame(id); + async games(args) { + const docs = await this.findByFields(args); + return docs.map(this.transformGame); } transformGame(game) { + if (!game) return null; + return { - id: this.context.utils.generateId('Game', game), + id: this.context.utils.generateId('Game', game.uuid), + ...game, }; } } diff --git a/src/dataSources/Session/index.js b/src/dataSources/Session/index.js index 6aee723..dc2c973 100644 --- a/src/dataSources/Session/index.js +++ b/src/dataSources/Session/index.js @@ -1,41 +1,31 @@ -const { Db, Collection } = require("mongodb"); +const { MongoDataSource } = require('apollo-datasource-mongodb'); -class Session { +class Session extends MongoDataSource { constructor(config) { - this.mongo = config.MongoDB; + super(config.MongoDB.client.db().collection(config.MongoDB.sessionCollection)); this.transformSession = this.transformSession.bind(this); } async initialize({ context }) { + super.initialize(); this.context = context; - await this.mongo.client.connect(); - - this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, "session"); } async sessions({ from, to }) { - const findArgs = {}; - if (from) { - findArgs.start = findArgs.start ?? {}; - findArgs.start.$gte = new Date(from); - } - if (to) { - findArgs.start = findArgs.start ?? {}; - findArgs.start.$lte = new Date(to); - } + const findArgs = { + start: { + $gte: new Date(from ?? 0), + $lte: new Date(to ?? Date.now()), + } + }; - const docs = await this.collection.find(findArgs).toArray(); + const docs = await this.collection.find(findArgs).sort({ start: 1 }).toArray(); return docs.map(this.transformSession); } - async getSessionById(id) { - return this.transformSession(id); - } - transformSession(session) { return { - id: this.context.utils.generateId("Session", session._id), + id: this.context.utils.generateId("Session", session.uuid), ...session, }; } diff --git a/src/dataSources/StatusEvent/index.js b/src/dataSources/StatusEvent/index.js new file mode 100644 index 0000000..328e7aa --- /dev/null +++ b/src/dataSources/StatusEvent/index.js @@ -0,0 +1,18 @@ +class StatusEvent{ + constructor(config) { + this.transformStatusEvent = this.transformStatusEvent.bind(this); + } + + async initialize({ context }) { + this.context = context; + } + + transformStatusEvent(statusEvent) { + return { + id: this.context.utils.generateId("StatusEvent", statusEvent.uuid), + ...statusEvent, + }; + } +} + +module.exports = StatusEvent; diff --git a/src/dataSources/User/index.js b/src/dataSources/User/index.js index fbb03e0..eb3e795 100644 --- a/src/dataSources/User/index.js +++ b/src/dataSources/User/index.js @@ -1,29 +1,27 @@ -const { Db, Collection } = require('mongodb'); +const { MongoDataSource } = require('apollo-datasource-mongodb'); -class User { +class User extends MongoDataSource { constructor(config) { - this.mongo = config.MongoDB; + super(config.MongoDB.client.db().collection(config.MongoDB.userCollection)); + this.transformUser = this.transformUser.bind(this); } async initialize({ context }) { + super.initialize(); this.context = context; - await this.mongo.client.connect(); - - this.db = new Db(this.mongo.client, this.mongo.dbName); - this.collection = new Collection(this.db, 'user'); - } - - async getUser({ id }) { - return this.transformUser(id); } - async getUserById(id) { - return this.transformUser(id); + async users(args) { + const docs = await this.findByFields(args); + return docs.map(this.transformUser); } transformUser(user) { + if (!user) return null; + return { - id: this.context.utils.generateId('User', user), + id: this.context.utils.generateId('User', user.uuid), + ...user, }; } } diff --git a/src/index.js b/src/index.js index bfc98e8..f503da8 100644 --- a/src/index.js +++ b/src/index.js @@ -1,11 +1,14 @@ const express = require('express'); const { ApolloServer } = require('apollo-server-express'); const { ApolloServerPluginLandingPageGraphQLPlayground } = require('apollo-server-core'); +const compression = require('compression'); const utils = require('./lib/utils'); const config = require('./config'); +const { MongoClient } = require('mongodb'); try { - config.MongoDB.client = utils.createMongoClient(config.MongoDB.url); + config.MongoDB.client = new MongoClient(`${config.MongoDB.url}/${config.MongoDB.dbName}`) + config.MongoDB.client.connect(); } catch (error) { throw new Error(`Error connecting to MongoDB @ ${config.MongoDB.url}`); } @@ -28,6 +31,7 @@ const server = new ApolloServer({ }); const app = express(); +app.use(compression()); app.use(express.json()); app.use(express.urlencoded({ extended: false })); diff --git a/src/schema/Game.js b/src/schema/Game.js index 6d2bc85..7981737 100644 --- a/src/schema/Game.js +++ b/src/schema/Game.js @@ -8,10 +8,15 @@ const typeDefs = gql` aliases: [String!]! } + input GameSearch { + name: String + uuid: UUID + } + extend type Query { - getGame( - id: Int! - ): Game! + games( + search: GameSearch + ): [Game!]! } # extend type Mutation {} # extend type Subscription {} @@ -19,8 +24,8 @@ const typeDefs = gql` const resolvers = { Query: { - getGame: async (_, args, context) => { - return await context.dataSources.Game.getGame(args); + games: async (_, {search}, context) => { + return await context.dataSources.Game.games(search); }, }, // Mutation: {}, diff --git a/src/schema/Session.js b/src/schema/Session.js index 15fa182..e92b4af 100644 --- a/src/schema/Session.js +++ b/src/schema/Session.js @@ -27,6 +27,18 @@ const resolvers = { return await context.dataSources.Session.sessions(args); }, }, + + Session: { + user: async (session, args, context) => { + return (await context.dataSources.User.users({uuid: session.user}))[0]; + }, + game: async (session, args, context) => { + return (await context.dataSources.Game.games({uuid: session.game}))[0]; + }, + events: async (session, args, context) => { + return session.events.map(context.dataSources.StatusEvent.transformStatusEvent); + }, + }, // Mutation: {}, // Subscription: {}, }; diff --git a/src/schema/StatusEvent.js b/src/schema/StatusEvent.js index 0c409fe..6649825 100644 --- a/src/schema/StatusEvent.js +++ b/src/schema/StatusEvent.js @@ -4,7 +4,6 @@ const typeDefs = gql` type StatusEvent implements nodeInterface { id: ID! uuid: UUID! - session: Session! start: DateTime! end: DateTime! state: DiscordState! diff --git a/src/schema/User.js b/src/schema/User.js index 3f18974..e3301fa 100644 --- a/src/schema/User.js +++ b/src/schema/User.js @@ -10,10 +10,15 @@ const typeDefs = gql` aliases: [String!]! } + input UserSearch { + username: String + uuid: UUID + } + extend type Query { - getUser( - id: Int! - ): User! + users( + search: UserSearch + ): [User!]! } # extend type Mutation {} # extend type Subscription {} @@ -21,8 +26,8 @@ const typeDefs = gql` const resolvers = { Query: { - getUser: async (_, args, context) => { - return await context.dataSources.User.getUser(args); + users: async (_, {search}, context) => { + return await context.dataSources.User.users(search); }, }, // Mutation: {}, diff --git a/src/schema/index.js b/src/schema/index.js index 0aa1fc0..d78013f 100644 --- a/src/schema/index.js +++ b/src/schema/index.js @@ -27,11 +27,11 @@ const resolvers = [{ const { type, id, data } = resolveId(args.id); switch (type) { case 'Session': - return await context.dataSources.Session.getSessionById(id); + return (await context.dataSources.Session.getSessions({uuid: id}))?.[0]; case 'Game': - return await context.dataSources.Game.getGameById(id); + return (await context.dataSources.Game.getGames({uuid: id}))?.[0]; case 'User': - return await context.dataSources.User.getUserById(id); + return (await context.dataSources.User.getUsers({uuid: id}))?.[0]; } }, }, From 99652c0bc63e2b97e449c07f872189d9274c3fd9 Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Tue, 9 Aug 2022 11:38:21 -0500 Subject: [PATCH 11/14] Fix undefined args error --- src/dataSources/Game/index.js | 2 +- src/dataSources/User/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dataSources/Game/index.js b/src/dataSources/Game/index.js index 1d70216..90b148e 100644 --- a/src/dataSources/Game/index.js +++ b/src/dataSources/Game/index.js @@ -11,7 +11,7 @@ class Game extends MongoDataSource { this.context = context; } - async games(args) { + async games(args = {}) { const docs = await this.findByFields(args); return docs.map(this.transformGame); } diff --git a/src/dataSources/User/index.js b/src/dataSources/User/index.js index eb3e795..7085667 100644 --- a/src/dataSources/User/index.js +++ b/src/dataSources/User/index.js @@ -11,7 +11,7 @@ class User extends MongoDataSource { this.context = context; } - async users(args) { + async users(args = {}) { const docs = await this.findByFields(args); return docs.map(this.transformUser); } From 8ce186626478a820c4ca6c67703ff5e29a74e5fb Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Tue, 9 Aug 2022 12:43:15 -0500 Subject: [PATCH 12/14] Remove ported data --- games.json | 2217 - sessions.json | 701273 ----------------------------------------------- users.json | 159 - 3 files changed, 703649 deletions(-) delete mode 100644 games.json delete mode 100644 sessions.json delete mode 100644 users.json diff --git a/games.json b/games.json deleted file mode 100644 index 08a3e54..0000000 --- a/games.json +++ /dev/null @@ -1,2217 +0,0 @@ -[ - { - "uuid": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "name": "Overwatch", - "aliases": [] - }, - { - "uuid": "8e529bf1-011d-4b92-beb5-fbb766596430", - "name": "Tom Clancy's Rainbow Six Siege", - "aliases": [] - }, - { - "uuid": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "name": "League of Legends", - "aliases": [] - }, - { - "uuid": "dc697244-04f1-4bab-9699-8bdec13ec441", - "name": "Company of Heroes 2", - "aliases": [] - }, - { - "uuid": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "name": "Craftopia", - "aliases": [] - }, - { - "uuid": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "name": "Crysis 3", - "aliases": [] - }, - { - "uuid": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "name": "Rocket League", - "aliases": [] - }, - { - "uuid": "25a2f126-57f9-456c-b235-050814d7dc9c", - "name": "Call of Duty®: Modern Warfare®", - "aliases": [] - }, - { - "uuid": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "name": "Genshin Impact", - "aliases": [] - }, - { - "uuid": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "name": "Team Fortress 2", - "aliases": [] - }, - { - "uuid": "0c610844-c16e-477d-9ed3-786edfc33d88", - "name": "Heroes of the Storm", - "aliases": [] - }, - { - "uuid": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "name": "Day of Defeat: Source", - "aliases": [] - }, - { - "uuid": "688863bf-e333-448d-ac6f-533a40cf8881", - "name": "Minecraft", - "aliases": [] - }, - { - "uuid": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "name": "Call of Duty: Black Ops III", - "aliases": [] - }, - { - "uuid": "d37341d1-3892-4c86-92db-45a9333a5fca", - "name": "War Thunder", - "aliases": [] - }, - { - "uuid": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "name": "Roboquest", - "aliases": [] - }, - { - "uuid": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "name": "VALORANT", - "aliases": [] - }, - { - "uuid": "b771006f-809d-474f-bc58-90087c3fb96f", - "name": "Wallpaper Engine", - "aliases": [] - }, - { - "uuid": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "name": "Persona 4 Golden", - "aliases": [] - }, - { - "uuid": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "name": "Rising Storm 2: Vietnam", - "aliases": [] - }, - { - "uuid": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "name": "Terraria", - "aliases": [] - }, - { - "uuid": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "name": "SteamVR", - "aliases": [] - }, - { - "uuid": "8019555f-f2d2-4a30-8099-b7f727f151be", - "name": "Satisfactory", - "aliases": [] - }, - { - "uuid": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "name": "Call of Duty®: Black Ops Cold War", - "aliases": [] - }, - { - "uuid": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "name": "Risk of Rain 2", - "aliases": [] - }, - { - "uuid": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "name": "Age of Empires III: Definitive Edition", - "aliases": [] - }, - { - "uuid": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "name": "tModLoader", - "aliases": [] - }, - { - "uuid": "f6ee516d-5efa-4ec8-a780-72a969618904", - "name": "Total War: SHOGUN 2", - "aliases": [] - }, - { - "uuid": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "name": "Assassin's Creed Odyssey", - "aliases": [] - }, - { - "uuid": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "name": "Rust", - "aliases": [] - }, - { - "uuid": "d2fb9420-4f4e-44e4-9529-186ebdf2e4e9", - "name": "Heroes of the West", - "aliases": [] - }, - { - "uuid": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "name": "Beyond The Wire", - "aliases": [] - }, - { - "uuid": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "name": "Spelunky", - "aliases": [] - }, - { - "uuid": "c876ab7d-273e-4224-9086-363034f0e8c0", - "name": "Apex Legends", - "aliases": [] - }, - { - "uuid": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", - "name": "Mirror's Edge™ Catalyst", - "aliases": [] - }, - { - "uuid": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "name": "Project CARS 2", - "aliases": [] - }, - { - "uuid": "94f0b819-f513-4355-958a-8debe06fa2d0", - "name": "Post Scriptum", - "aliases": [] - }, - { - "uuid": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "name": "MTGArena", - "aliases": [] - }, - { - "uuid": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "name": "Golf With Your Friends", - "aliases": [] - }, - { - "uuid": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "name": "Gunfire Reborn", - "aliases": [] - }, - { - "uuid": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", - "name": "Danganronpa: Trigger Happy Havoc", - "aliases": [] - }, - { - "uuid": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "name": "Among Us", - "aliases": [] - }, - { - "uuid": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "name": "Halo: The Master Chief Collection", - "aliases": [] - }, - { - "uuid": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "name": "Teardown", - "aliases": [] - }, - { - "uuid": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "name": "Remnant: From the Ashes", - "aliases": [] - }, - { - "uuid": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "name": "Visual Studio Code", - "aliases": [] - }, - { - "uuid": "1c0a54e2-ead9-4add-974f-1deb56574e4c", - "name": "Slender: The Arrival", - "aliases": [] - }, - { - "uuid": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "name": "Hollow Knight", - "aliases": [] - }, - { - "uuid": "2e5c07e5-103c-4ada-a5f3-55f2f80c3d64", - "name": "Remnant ", - "aliases": [] - }, - { - "uuid": "2a9dc858-c5a5-4bf8-8cf7-09569d15fb72", - "name": "RESIDENT EVIL 7 biohazard / BIOHAZARD 7 resident evil", - "aliases": [] - }, - { - "uuid": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "name": "Hell Let Loose", - "aliases": [] - }, - { - "uuid": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "name": "Fall Guys: Ultimate Knockout", - "aliases": [] - }, - { - "uuid": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "name": "Phasmophobia", - "aliases": [] - }, - { - "uuid": "2a8a3fb5-3803-43e5-8260-295c8419e009", - "name": "In Silence", - "aliases": [] - }, - { - "uuid": "766a3663-af92-4b51-a33b-601baf4631db", - "name": "Outlast", - "aliases": [] - }, - { - "uuid": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "name": "Borderlands 3", - "aliases": [] - }, - { - "uuid": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", - "name": "RuneScape", - "aliases": [] - }, - { - "uuid": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "name": "OSBuddy", - "aliases": [] - }, - { - "uuid": "923d0192-b735-42cd-94a7-44fca0fca38d", - "name": "The Evil Within", - "aliases": [] - }, - { - "uuid": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "name": "DARK SOULS III", - "aliases": [] - }, - { - "uuid": "73dd1b78-995d-4a3d-99e6-f980a46c334e", - "name": "Assassin's Creed Valhalla", - "aliases": [] - }, - { - "uuid": "57f2865c-e587-43de-94a3-714adaef9fb4", - "name": "Red Dead Redemption 2", - "aliases": [] - }, - { - "uuid": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "name": "KovaaK 2.0", - "aliases": [] - }, - { - "uuid": "84cabe1b-ed02-4655-8b8e-beda38e46fdb", - "name": "SpyParty", - "aliases": [] - }, - { - "uuid": "51f84cce-755a-495b-970f-7a886c01186d", - "name": "ePSXe", - "aliases": [] - }, - { - "uuid": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "name": "Cuphead", - "aliases": [] - }, - { - "uuid": "5c07b150-efac-41a9-ba59-d30078ad5187", - "name": "Muse Dash", - "aliases": [] - }, - { - "uuid": "3ef63864-2280-45d1-9216-cbe3a0f82c58", - "name": "Forts", - "aliases": [] - }, - { - "uuid": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "name": "Pavlov VR", - "aliases": [] - }, - { - "uuid": "5fbbe0ca-7057-48f2-8ada-e7962cb8ac4b", - "name": "Super Hexagon", - "aliases": [] - }, - { - "uuid": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "name": "Counter-Strike: Global Offensive", - "aliases": [] - }, - { - "uuid": "d8fa4a28-268f-46c0-a986-d3fccec2993f", - "name": "test'; DROP TABLE *;", - "aliases": [] - }, - { - "uuid": "e30b3d01-07fb-4704-97d1-a16359c492fd", - "name": "Becastled Demo", - "aliases": [] - }, - { - "uuid": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", - "name": "Watch Dogs Legion", - "aliases": [] - }, - { - "uuid": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", - "name": "The Witcher 3: Wild Hunt", - "aliases": [] - }, - { - "uuid": "daba0308-7766-4260-ae6b-65feede17bed", - "name": "Immortals Fenyx Rising™", - "aliases": [] - }, - { - "uuid": "4655fa89-125e-45f8-97aa-a9a65090600c", - "name": "Squad", - "aliases": [] - }, - { - "uuid": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", - "name": "Celeste", - "aliases": [] - }, - { - "uuid": "22998825-29f0-46c0-b237-7b93d39d8c81", - "name": "Dolphin", - "aliases": [] - }, - { - "uuid": "3cee9521-e8c9-486d-9e67-5a648525085f", - "name": "3DMark Demo", - "aliases": [] - }, - { - "uuid": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "name": "iRacing.com Simulator", - "aliases": [] - }, - { - "uuid": "0883df51-a18d-48b4-b471-09dac938bf24", - "name": "Legends of Runeterra", - "aliases": [] - }, - { - "uuid": "5d9d0f2d-f348-4dde-8096-de47f3737973", - "name": "Dolphin Emulator", - "aliases": [] - }, - { - "uuid": "252e99c0-f62f-4000-a566-0876e1163771", - "name": "Cyberpunk 2077", - "aliases": [] - }, - { - "uuid": "e8ac3b09-3081-41ab-a4cc-049c927c1e90", - "name": "HYPER SCAPE™", - "aliases": [] - }, - { - "uuid": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "name": "Dungeon of the Endless", - "aliases": [] - }, - { - "uuid": "9adb316e-622e-4b31-9de5-aea3497513a0", - "name": "Divinity: Original Sin 2", - "aliases": [] - }, - { - "uuid": "4b52f343-eb67-4bde-a8aa-6fb929969369", - "name": "lobabob@server.cockatrice.us", - "aliases": [] - }, - { - "uuid": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "name": "Cockatrice", - "aliases": [] - }, - { - "uuid": "e86ec698-4de6-48cd-a464-3ae87a75f201", - "name": "STAR WARS Battlefront II", - "aliases": [] - }, - { - "uuid": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "name": "Hades", - "aliases": [] - }, - { - "uuid": "977f6948-9c08-4b0b-820e-3f7d5c547911", - "name": "Tony Hawk's Pro Skater 1 + 2 ", - "aliases": [] - }, - { - "uuid": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "name": "Left 4 Dead 2", - "aliases": [] - }, - { - "uuid": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "name": "Killing Floor 2", - "aliases": [] - }, - { - "uuid": "63735280-e2ab-4381-982a-d381ab81ab3a", - "name": "STAR WARS™ Battlefront™ II", - "aliases": [] - }, - { - "uuid": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "name": "Tabletop Simulator", - "aliases": [] - }, - { - "uuid": "fa6ffbdb-817e-498f-8d04-7a27fc3f5166", - "name": "Age of Empires II (2013)", - "aliases": [] - }, - { - "uuid": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "name": "The Forest", - "aliases": [] - }, - { - "uuid": "ec32f732-81d2-4737-9731-7d87edb23c7d", - "name": "A Summer's End - Hong Kong 1986", - "aliases": [] - }, - { - "uuid": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "name": "Grand Theft Auto V", - "aliases": [] - }, - { - "uuid": "456adc4a-463d-46f3-8760-f1bb8206b79d", - "name": "Hypnospace Outlaw", - "aliases": [] - }, - { - "uuid": "5faccedb-a85a-4000-b979-a9eafca2b313", - "name": "Spelunky 2", - "aliases": [] - }, - { - "uuid": "384499e1-6071-4da5-86ee-94ffaf56ea1c", - "name": "Phoenix Wright: Ace Attorney Trilogy", - "aliases": [] - }, - { - "uuid": "ceeb5bef-5093-420e-a66d-38887e3dbd5a", - "name": "Kingdoms and Castles", - "aliases": [] - }, - { - "uuid": "17d06d5c-9619-477c-b557-dd24b5e6a7e0", - "name": "Oddworld: Abe's Oddysee", - "aliases": [] - }, - { - "uuid": "8b6875f3-c326-4738-8d0b-6b3f366a97d0", - "name": "PlanetSide 2", - "aliases": [] - }, - { - "uuid": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "name": "Resident Evil 3", - "aliases": [] - }, - { - "uuid": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "name": "Catan Universe", - "aliases": [] - }, - { - "uuid": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "name": "Mortal Kombat X", - "aliases": [] - }, - { - "uuid": "71187ff6-168e-47dc-bb08-84f6d964b767", - "name": "Raft", - "aliases": [] - }, - { - "uuid": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "name": "Tom Clancy's Ghost Recon Wildlands", - "aliases": [] - }, - { - "uuid": "d03ea2f5-f4b7-45c5-b9d6-1803ce5a4709", - "name": "RCT3", - "aliases": [] - }, - { - "uuid": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "name": "Sea of Thieves", - "aliases": [] - }, - { - "uuid": "7b75f888-8023-4669-98a0-5567efc2c09d", - "name": "Jet Set Radio", - "aliases": [] - }, - { - "uuid": "b447c3e1-43d8-4ba2-9881-e09994d09767", - "name": "Battlefield: Bad Company 2", - "aliases": [] - }, - { - "uuid": "27922aac-cba1-464d-9ed4-9fbb11c135e3", - "name": "RESIDENT EVIL RESISTANCE", - "aliases": [] - }, - { - "uuid": "ddf86c27-07ff-4c93-be94-1758fe5cfd30", - "name": "Just Shapes & Beats", - "aliases": [] - }, - { - "uuid": "096c184c-fe93-4207-8cfe-66def06d1199", - "name": "Stonehearth", - "aliases": [] - }, - { - "uuid": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "name": "Rainbow Six Siege", - "aliases": [] - }, - { - "uuid": "0843751a-6347-4050-bed5-92fa7e8dd35e", - "name": "Endless Space 2", - "aliases": [] - }, - { - "uuid": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", - "name": "Grand Theft Auto IV", - "aliases": [] - }, - { - "uuid": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "name": "Deep Rock Galactic", - "aliases": [] - }, - { - "uuid": "3a18a362-0813-4589-8f61-9ce45b23599a", - "name": "Men of War: Assault Squad 2", - "aliases": [] - }, - { - "uuid": "c8f5933b-1897-4307-a6be-175a93408247", - "name": "Call to Arms", - "aliases": [] - }, - { - "uuid": "05a91701-f1e6-4609-95dc-00d50df82e11", - "name": "Insurgency: Sandstorm", - "aliases": [] - }, - { - "uuid": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "name": "Battlefield 4", - "aliases": [] - }, - { - "uuid": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "name": "Foxhole", - "aliases": [] - }, - { - "uuid": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "name": "Ori and the Will of the Wisps", - "aliases": [] - }, - { - "uuid": "da9a2363-aa4b-4013-9ef7-f51e7e58b978", - "name": "Crysis 2", - "aliases": [] - }, - { - "uuid": "d6904be0-173a-494f-98b7-efcaf9fb9740", - "name": "Deadside", - "aliases": [] - }, - { - "uuid": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "name": "Escape from Tarkov", - "aliases": [] - }, - { - "uuid": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", - "name": "GTFO", - "aliases": [] - }, - { - "uuid": "92144774-b196-4849-8c29-3be0e0e93825", - "name": "yuzu", - "aliases": [] - }, - { - "uuid": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "name": "PLAYERUNKNOWN'S BATTLEGROUNDS", - "aliases": [] - }, - { - "uuid": "908e5333-5693-4986-81ae-edca46741f99", - "name": "Watch Dogs", - "aliases": [] - }, - { - "uuid": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "name": "Warhammer: Vermintide 2", - "aliases": [] - }, - { - "uuid": "bf7adaa1-b828-48cb-9041-393d26d2ddf4", - "name": "Cemu", - "aliases": [] - }, - { - "uuid": "2b88d65e-6dc9-4d7e-921b-13099d079d17", - "name": "Warhammer 40,000: Inquisitor - Martyr", - "aliases": [] - }, - { - "uuid": "621a8269-f650-4b39-b74a-c282d9313e65", - "name": "SnowRunner", - "aliases": [] - }, - { - "uuid": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "name": "Path of Exile", - "aliases": [] - }, - { - "uuid": "d8468ec6-da3d-437e-be70-4df9a5f80137", - "name": "TrenchesWIP", - "aliases": [] - }, - { - "uuid": "6b418e18-094c-421d-9c96-d288fc3cad0b", - "name": "Divinity Original Sin 2", - "aliases": [] - }, - { - "uuid": "b3b9b21e-fb25-46f7-908c-415591441b8c", - "name": "Age of Empires II: Definitive Edition", - "aliases": [] - }, - { - "uuid": "03539e31-298c-4c19-9815-226144f13804", - "name": "VRChat", - "aliases": [] - }, - { - "uuid": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "name": "PAYDAY 2", - "aliases": [] - }, - { - "uuid": "e0f355a4-854b-473f-afa2-98a0bc20ffd9", - "name": "OMORI", - "aliases": [] - }, - { - "uuid": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "name": "Kerbal Space Program", - "aliases": [] - }, - { - "uuid": "94ea758e-df20-485f-b37d-305c137f5fe4", - "name": "No Man's Sky", - "aliases": [] - }, - { - "uuid": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "name": "Borderlands 2", - "aliases": [] - }, - { - "uuid": "01ad2063-abba-476a-8282-ccd7f6982efb", - "name": "Days of War", - "aliases": [] - }, - { - "uuid": "685f13b9-6f87-43e8-9444-cce33764d383", - "name": "Day of Infamy", - "aliases": [] - }, - { - "uuid": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "name": "Battlefield™ V", - "aliases": [] - }, - { - "uuid": "2b2d0c7f-9575-4620-8d8d-32cfb499fbfe", - "name": "DwarfHeim", - "aliases": [] - }, - { - "uuid": "c2c55756-ae07-4771-86d2-bba19006baa0", - "name": "Total War: ROME II - Emperor Edition", - "aliases": [] - }, - { - "uuid": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "name": "Total War: Rome 2", - "aliases": [] - }, - { - "uuid": "1c30e47a-17c1-47ad-9980-3304d3875c33", - "name": "Command and Conquer 3: Tiberium Wars", - "aliases": [] - }, - { - "uuid": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", - "name": "30XX", - "aliases": [] - }, - { - "uuid": "3f3a2721-fc93-489b-b576-deca01389dfe", - "name": "StarCraft II", - "aliases": [] - }, - { - "uuid": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "name": "Valheim", - "aliases": [] - }, - { - "uuid": "a51446f8-9fa1-43e9-92a2-2cd55ea1dcba", - "name": "Absolute Drift", - "aliases": [] - }, - { - "uuid": "71363baf-24ad-4183-9f19-7cba8ef6ab2d", - "name": "WGT Golf", - "aliases": [] - }, - { - "uuid": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", - "name": "Garry's Mod", - "aliases": [] - }, - { - "uuid": "81724aa4-926e-492c-a454-22ba9b21346c", - "name": "WORLD OF HORROR", - "aliases": [] - }, - { - "uuid": "884d4916-7882-4868-914d-17c3c3857f77", - "name": "There Is No Game: Wrong Dimension", - "aliases": [] - }, - { - "uuid": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "name": "Wasteland 2: Director's Cut", - "aliases": [] - }, - { - "uuid": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "name": "Slay the Spire", - "aliases": [] - }, - { - "uuid": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", - "name": "Her Story", - "aliases": [] - }, - { - "uuid": "230b15e4-43dc-4f53-b99e-6fd86914352e", - "name": "Zero Escape: The Nonary Games", - "aliases": [] - }, - { - "uuid": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", - "name": "For The King", - "aliases": [] - }, - { - "uuid": "83ccb4f4-cec0-4c5e-ae75-059db5f039b0", - "name": "Control", - "aliases": [] - }, - { - "uuid": "32238787-81ba-47a4-89cf-5d8b0e2552c3", - "name": "Miscreated", - "aliases": [] - }, - { - "uuid": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "name": "Dota 2", - "aliases": [] - }, - { - "uuid": "eb514df2-5696-426a-842a-4924e28b802b", - "name": "MapleStory", - "aliases": [] - }, - { - "uuid": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "name": "Fortnite", - "aliases": [] - }, - { - "uuid": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "name": "Resident Evil / biohazard HD REMASTER", - "aliases": [] - }, - { - "uuid": "71dd54d2-1b64-4a22-8f06-02c5560d571b", - "name": "Disco Elysium", - "aliases": [] - }, - { - "uuid": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "name": "Rhythm Doctor", - "aliases": [] - }, - { - "uuid": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "name": "Distance", - "aliases": [] - }, - { - "uuid": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", - "name": "Alien Swarm", - "aliases": [] - }, - { - "uuid": "04fc1df1-a977-48ac-a381-e65c8d991a01", - "name": "UNO", - "aliases": [] - }, - { - "uuid": "44204463-eba4-4e31-b9c6-2748db291f27", - "name": "Call of Duty®: WWII", - "aliases": [] - }, - { - "uuid": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "name": "BattleBlock Theater", - "aliases": [] - }, - { - "uuid": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "name": "Pummel Party", - "aliases": [] - }, - { - "uuid": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "name": "Sid Meier's Civilization VI", - "aliases": [] - }, - { - "uuid": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "name": "Aim Lab", - "aliases": [] - }, - { - "uuid": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "name": "StarCraft", - "aliases": [] - }, - { - "uuid": "58bb0cd0-f94c-4b94-af1f-504042ef4c4d", - "name": "RetroArch", - "aliases": [] - }, - { - "uuid": "f3538a11-aaaf-47a2-8499-2d8d06b53088", - "name": "Half-Life 2", - "aliases": [] - }, - { - "uuid": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "name": "Steel Division 2", - "aliases": [] - }, - { - "uuid": "7a38edea-7b08-4567-9c53-6203fac1f64c", - "name": "GeForce NOW", - "aliases": [] - }, - { - "uuid": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", - "name": "The Jackbox Party Pack 7", - "aliases": [] - }, - { - "uuid": "371e2100-9f71-4afb-9577-7330fe9cc7b0", - "name": "Worms W.M.D", - "aliases": [] - }, - { - "uuid": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "name": "FINAL FANTASY VII", - "aliases": [] - }, - { - "uuid": "d133cada-9d45-44f7-a110-7e5ef55b50a6", - "name": "Rising Storm/Red Orchestra 2 Multiplayer", - "aliases": [] - }, - { - "uuid": "71ef092a-ea41-462a-b4a0-c4de3396bf75", - "name": "za4", - "aliases": [] - }, - { - "uuid": "7c78c068-bec7-46bf-b241-ab09071f95b2", - "name": "Synergy", - "aliases": [] - }, - { - "uuid": "f1a801ba-22f3-4340-8f3a-da3632a06e6b", - "name": "Escape the Ayuwoki", - "aliases": [] - }, - { - "uuid": "5a31cc37-bbcf-4a79-9e28-7e1e5fcc35ad", - "name": "Zombie Army 4", - "aliases": [] - }, - { - "uuid": "b63c2021-12b2-42d6-8294-c042018280b3", - "name": "Options", - "aliases": [] - }, - { - "uuid": "fd252e0b-6733-4e4b-a44f-ae84ce13376b", - "name": "WWZ", - "aliases": [] - }, - { - "uuid": "e935301f-2115-4dd9-ad3a-07f74edede79", - "name": "Resident Evil Village", - "aliases": [] - }, - { - "uuid": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "name": "Subnautica", - "aliases": [] - }, - { - "uuid": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "name": "Titanfall 2", - "aliases": [] - }, - { - "uuid": "12e0c4ed-ef87-4c1e-ae9f-01ebd29250c5", - "name": "Zombie Army Trilogy", - "aliases": [] - }, - { - "uuid": "e6ae8afb-60dc-4c3d-b580-850ec35f4364", - "name": "Human: Fall Flat", - "aliases": [] - }, - { - "uuid": "056c2d24-d9c1-4649-881c-b588849addc0", - "name": "DEADBOLT", - "aliases": [] - }, - { - "uuid": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "name": "Dead by Daylight", - "aliases": [] - }, - { - "uuid": "256c57f7-071f-4140-afa3-b0a727532b55", - "name": "SimCity 4 Deluxe", - "aliases": [] - }, - { - "uuid": "6867837e-8854-4713-a62a-7e184aa1554a", - "name": "Minecraft: BlockFront", - "aliases": [] - }, - { - "uuid": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "name": "World of Tanks", - "aliases": [] - }, - { - "uuid": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", - "name": "Phantasy Star Online 2 New Genesis", - "aliases": [] - }, - { - "uuid": "b0f46871-7511-411e-a341-e2eb690e7182", - "name": "PHANTASY STAR ONLINE 2", - "aliases": [] - }, - { - "uuid": "38bfa758-17f1-436c-b3b2-1204c3e45c70", - "name": "BioShock™ Remastered", - "aliases": [] - }, - { - "uuid": "9c056897-b024-40cc-824d-53fc5ac555da", - "name": "World of Warplanes", - "aliases": [] - }, - { - "uuid": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "name": "DARK SOULS™: REMASTERED", - "aliases": [] - }, - { - "uuid": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "name": "SimCity™", - "aliases": [] - }, - { - "uuid": "901cc764-5949-4d35-96da-200a0d92bef5", - "name": "Call to Arms - Gates of Hell: Ostfront", - "aliases": [] - }, - { - "uuid": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "name": "Mindustry", - "aliases": [] - }, - { - "uuid": "de93fba9-256c-4183-863d-38b81619d862", - "name": "Factorio", - "aliases": [] - }, - { - "uuid": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "name": "MC Eternal", - "aliases": [] - }, - { - "uuid": "73d76484-85cb-4681-be75-0903f3eeccbd", - "name": "Rogue Heroes: Ruins of Tasos", - "aliases": [] - }, - { - "uuid": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "name": "Mass Effect™ Legendary Edition", - "aliases": [] - }, - { - "uuid": "fef4cec1-35fe-4ef1-b5d1-9f2497e910e0", - "name": "Warpips", - "aliases": [] - }, - { - "uuid": "84c95629-7b5b-4260-af2c-377e4b3d3a3f", - "name": "World of Warships", - "aliases": [] - }, - { - "uuid": "94330410-830c-48da-982c-802f2c682400", - "name": "Generation Zero®", - "aliases": [] - }, - { - "uuid": "cfca967e-d933-4f66-b420-560ff2e0e841", - "name": "Enigmatica 6", - "aliases": [] - }, - { - "uuid": "7ebce693-dafe-4c0d-9ec6-80ccf2d5fd8b", - "name": "Natural Selection 2", - "aliases": [] - }, - { - "uuid": "516c8045-97c5-4666-baba-b14db6007763", - "name": "Industries of Titan ", - "aliases": [] - }, - { - "uuid": "2991c7d3-a21c-4094-8b23-2dfac7c17a29", - "name": "One Step From Eden", - "aliases": [] - }, - { - "uuid": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "name": "Bloons TD 6", - "aliases": [] - }, - { - "uuid": "8b8389e5-ca27-443e-bd3b-288fba926590", - "name": "Ultimate Marvel vs. Capcom 3", - "aliases": [] - }, - { - "uuid": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "name": "Rogue Company", - "aliases": [] - }, - { - "uuid": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "name": "Company of Heroes 3 - Pre-Alpha Preview", - "aliases": [] - }, - { - "uuid": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "name": "Vindictus", - "aliases": [] - }, - { - "uuid": "e9440141-798a-42b6-8b92-7757316e4e17", - "name": "SCP: Secret Laboratory", - "aliases": [] - }, - { - "uuid": "d3c6234d-601e-4a70-a8bd-6f65d87b089b", - "name": "Trepang2 Demo", - "aliases": [] - }, - { - "uuid": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "name": "Mini Motorways", - "aliases": [] - }, - { - "uuid": "5cbb7fa9-d33a-4172-9029-0706a46936ca", - "name": "Call of Duty: Black Ops Cold War", - "aliases": [] - }, - { - "uuid": "8b8cf1da-4fbc-449b-a932-df8c269f60d2", - "name": "Mass Effect™ 3", - "aliases": [] - }, - { - "uuid": "a0f1cc74-a97a-48fa-b8b6-69ac061072b8", - "name": "Viscera Cleanup Detail", - "aliases": [] - }, - { - "uuid": "86e41b36-d860-479d-9443-f9299d051eba", - "name": "Shadow Tactics: Blades of the Shogun", - "aliases": [] - }, - { - "uuid": "2c1f1d47-16cc-4222-9910-05096d638470", - "name": "Keep Talking and Nobody Explodes", - "aliases": [] - }, - { - "uuid": "8626fe98-8835-4028-a5dd-5aecdbb5557a", - "name": "Back 4 Blood Beta", - "aliases": [] - }, - { - "uuid": "ef388677-2e4d-479d-b095-e393e2fbc99e", - "name": "Far Cry 5", - "aliases": [] - }, - { - "uuid": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "name": "Undertale", - "aliases": [] - }, - { - "uuid": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", - "name": "GUILTY GEAR -STRIVE-", - "aliases": [] - }, - { - "uuid": "65ef5805-5c46-44e5-971a-b10c3e432fa6", - "name": "Wargroove", - "aliases": [] - }, - { - "uuid": "64a511f2-1c0e-4994-9132-c3cfb83d5ffc", - "name": "FINAL FANTASY XIV", - "aliases": [] - }, - { - "uuid": "501f368f-9e92-46d0-8647-774256d0351e", - "name": "Papers, Please", - "aliases": [] - }, - { - "uuid": "525d3056-71ca-4222-b4d5-b345c50d04d6", - "name": "Chicory: A Colorful Tale", - "aliases": [] - }, - { - "uuid": "6e0b90d4-c0af-4e20-84ef-7d6e04631d71", - "name": "Dysfunctional Systems: Learning to Manage Chaos", - "aliases": [] - }, - { - "uuid": "52b2cc5c-2406-418e-aa39-33db0cae4f0c", - "name": "START AGAIN: a prologue", - "aliases": [] - }, - { - "uuid": "e70487c7-e598-4be7-ad6f-8440a59b258f", - "name": "Superliminal", - "aliases": [] - }, - { - "uuid": "f9b199be-fe1b-4906-b62e-1086a19fd4ca", - "name": "Stigmatized Property | 事故物件", - "aliases": [] - }, - { - "uuid": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "name": "Battlefield 1", - "aliases": [] - }, - { - "uuid": "70fb1704-1ac3-4f5d-af8d-2d1f4a76ab6c", - "name": "Emily is Away <3", - "aliases": [] - }, - { - "uuid": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", - "name": "Return of the Obra Dinn", - "aliases": [] - }, - { - "uuid": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", - "name": "Outer Wilds", - "aliases": [] - }, - { - "uuid": "5afe54d1-03d8-49fe-bea2-d61a22b60cbb", - "name": "Helltaker", - "aliases": [] - }, - { - "uuid": "afec22d4-f962-46de-9102-406c0cb54ec4", - "name": "Titan Souls", - "aliases": [] - }, - { - "uuid": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "name": "PICO PARK", - "aliases": [] - }, - { - "uuid": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "name": "Death's Door", - "aliases": [] - }, - { - "uuid": "c29a0e30-62be-4471-ad40-959f89f4091f", - "name": "Smile For Me", - "aliases": [] - }, - { - "uuid": "a4b20f07-c3eb-4b01-8e80-f49d5f82c999", - "name": "Little Nightmares", - "aliases": [] - }, - { - "uuid": "d563bf02-54cf-49af-ba40-11defad74ecd", - "name": "Don't Starve", - "aliases": [] - }, - { - "uuid": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "name": "Don't Starve Together", - "aliases": [] - }, - { - "uuid": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "name": "Splitgate", - "aliases": [] - }, - { - "uuid": "22ed4e4a-9a24-4122-a87c-d74896740f9f", - "name": "Multiplayer (3rd-party Server)", - "aliases": [] - }, - { - "uuid": "beeb5b33-6d17-4079-90a6-14ee07ec1be5", - "name": "Minecraft Launcher", - "aliases": [] - }, - { - "uuid": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "name": "Destiny 2", - "aliases": [] - }, - { - "uuid": "ec016105-107d-4ad4-8ed6-ab69a81af8f4", - "name": "Hellblade", - "aliases": [] - }, - { - "uuid": "1366ebae-59d0-4467-91ed-cf6683878303", - "name": "PICO PARK:Classic Edition", - "aliases": [] - }, - { - "uuid": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "name": "Gang Beasts", - "aliases": [] - }, - { - "uuid": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "name": "Resident Evil 2", - "aliases": [] - }, - { - "uuid": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "name": "Darkest Dungeon", - "aliases": [] - }, - { - "uuid": "c7a67716-8fcf-4c4e-a480-4ac06254d2fc", - "name": "​C​a​l​l​ ​o​f​ ​D​u​t​y​®​:​ ​V​a​n​g​u​a​r​d​®​ ​P​u​b​l​i​c​ ​B​e​t​a​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​", - "aliases": [] - }, - { - "uuid": "7d115c2c-a713-4e4f-bc36-af784d853c9f", - "name": "Poker Night 2", - "aliases": [] - }, - { - "uuid": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", - "name": "DELTARUNE (Chapter 1 & 2 DEMO)", - "aliases": [] - }, - { - "uuid": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "name": "The Sims 4", - "aliases": [] - }, - { - "uuid": "db802d20-e3e2-496d-9121-8dfc25313e22", - "name": "Eastward", - "aliases": [] - }, - { - "uuid": "0e1890df-0783-4a12-b4f3-05d0acb984a6", - "name": "Caesar 3", - "aliases": [] - }, - { - "uuid": "18c7e385-f0ca-47b9-803f-5cc8256f585e", - "name": "RollerCoaster Tycoon Classic", - "aliases": [] - }, - { - "uuid": "37021b26-464e-4265-bbfd-05843d7d5b71", - "name": "Diablo III", - "aliases": [] - }, - { - "uuid": "c1f0d25b-bbe1-4174-bd4b-5855e536c16b", - "name": "Pathfinder: Kingmaker", - "aliases": [] - }, - { - "uuid": "98f0895d-a9f5-4844-9c88-dd45ad350395", - "name": "Game Dev Tycoon", - "aliases": [] - }, - { - "uuid": "cf33f67b-3cad-4ca7-8820-b993fedd27c3", - "name": "Dead Frontier 2", - "aliases": [] - }, - { - "uuid": "dab0664e-abf2-41bf-8391-d7ae995e8b38", - "name": "Lost Ember", - "aliases": [] - }, - { - "uuid": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "name": "New World", - "aliases": [] - }, - { - "uuid": "913441a0-e764-4710-982f-278c32fc58bd", - "name": "Old School RuneScape", - "aliases": [] - }, - { - "uuid": "72f7c8ee-e486-4a30-a51a-3b4af2c70e99", - "name": "Battlefield 3", - "aliases": [] - }, - { - "uuid": "d776f868-3fbd-4bc0-8d9d-e16dfdcf75e0", - "name": "FEZ", - "aliases": [] - }, - { - "uuid": "e0bbd018-d20f-4904-9fe9-133c85ae7167", - "name": "bf", - "aliases": [] - }, - { - "uuid": "b788795b-992e-4047-81c9-6f0b39d54192", - "name": "Battlefield™ 2042 Open Beta", - "aliases": [] - }, - { - "uuid": "c6c3b58f-9cb7-4016-810d-600cb511003b", - "name": "Spyro™ Reignited Trilogy", - "aliases": [] - }, - { - "uuid": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "name": "Back 4 Blood", - "aliases": [] - }, - { - "uuid": "bb945ea1-9efa-4be4-ba00-023cd52ec9f1", - "name": "Tetris® Effect: Connected ", - "aliases": [] - }, - { - "uuid": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", - "name": "Death Road to Canada", - "aliases": [] - }, - { - "uuid": "6cf0a158-82e8-44ea-bb00-04746210b216", - "name": "Back 4 Blood ", - "aliases": [] - }, - { - "uuid": "26dfa694-5246-4f4f-adbc-d72b0b419ce2", - "name": "Turnip Boy Commits Tax Evasion", - "aliases": [] - }, - { - "uuid": "90e1549d-6d52-4041-9fa9-c4a6daaca49a", - "name": "The Cycle Playtest", - "aliases": [] - }, - { - "uuid": "b8774862-86d5-440c-98e7-8d908f021e4a", - "name": "Inside", - "aliases": [] - }, - { - "uuid": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", - "name": "Portal 2", - "aliases": [] - }, - { - "uuid": "99e76b5c-44a2-4235-9491-f9220ba39819", - "name": "Stardew Valley", - "aliases": [] - }, - { - "uuid": "99ab3574-4042-4eec-a415-d3a32a1573ff", - "name": "Crypt of the NecroDancer", - "aliases": [] - }, - { - "uuid": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", - "name": "Microsoft Flight Simulator", - "aliases": [] - }, - { - "uuid": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", - "name": "Wreckfest", - "aliases": [] - }, - { - "uuid": "9ad8b47b-76f1-4c34-8ca6-5383a0b27234", - "name": "Clustertruck", - "aliases": [] - }, - { - "uuid": "baa6f026-d128-47d0-9855-b93d68c0d9e8", - "name": "Anthem™", - "aliases": [] - }, - { - "uuid": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "name": "Call of Duty®: Vanguard", - "aliases": [] - }, - { - "uuid": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "name": "Forza Horizon 5", - "aliases": [] - }, - { - "uuid": "ad01a8c6-441c-4965-9c8b-4af5226e6281", - "name": "ASTRONEER", - "aliases": [] - }, - { - "uuid": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "name": "Battlefield™ 2042", - "aliases": [] - }, - { - "uuid": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "name": "Halo Infinite", - "aliases": [] - }, - { - "uuid": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "name": "DOOM Eternal", - "aliases": [] - }, - { - "uuid": "1e3a0e33-2d87-49b7-9959-f4795671b33b", - "name": "Sekiro™: Shadows Die Twice", - "aliases": [] - }, - { - "uuid": "9fb61456-ba83-445c-93d6-af0f63af3f27", - "name": "Tom Clancy's The Division 2", - "aliases": [] - }, - { - "uuid": "76d12d4b-033d-4182-84b8-b603e44ed424", - "name": "Gods Unchained", - "aliases": [] - }, - { - "uuid": "9a3c197b-176e-415e-81c2-1131d55acc87", - "name": "Company of Heroes 3 - Multiplayer Pre-Alpha", - "aliases": [] - }, - { - "uuid": "79ed4b94-4e81-41bd-970a-9bb024738003", - "name": "SYNTHETIK", - "aliases": [] - }, - { - "uuid": "5b8eea46-c605-44e8-98d3-def0b20746ad", - "name": "Ninja Frog", - "aliases": [] - }, - { - "uuid": "f792caf9-f47b-4dec-9e20-039ced231441", - "name": "KovaaK's", - "aliases": [] - }, - { - "uuid": "12411488-a54b-4ac5-b4d6-bd82d9a42039", - "name": "Star Wars: Battlefront 2 (Classic, 2005)", - "aliases": [] - }, - { - "uuid": "51a7c681-3c9c-4fee-8cd8-54d24167adc4", - "name": "Monster Sanctuary", - "aliases": [] - }, - { - "uuid": "85e1ddb3-bb79-4f15-b2bb-53ecfab8034a", - "name": "Batman: Arkham City GOTY", - "aliases": [] - }, - { - "uuid": "81eed0f3-0974-48c7-bedd-4a25d9bedf4e", - "name": "Sven Co-op", - "aliases": [] - }, - { - "uuid": "12c4485e-3697-4a51-982b-75af6bd7e566", - "name": "Barotrauma", - "aliases": [] - }, - { - "uuid": "a2972c2e-2e1c-419b-95d2-331871b05f74", - "name": "Chill Corner", - "aliases": [] - }, - { - "uuid": "30eeb7b0-551b-4cde-831a-93ddc2f2ad2e", - "name": "Dreadnought", - "aliases": [] - }, - { - "uuid": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", - "name": "Escape Simulator", - "aliases": [] - }, - { - "uuid": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "name": "Call of Duty: World at War", - "aliases": [] - }, - { - "uuid": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "name": "Project Zomboid", - "aliases": [] - }, - { - "uuid": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "name": "Inscryption", - "aliases": [] - }, - { - "uuid": "7240c500-cb5a-476c-801b-8f3959c5c494", - "name": "DEATH STRANDING", - "aliases": [] - }, - { - "uuid": "7fee0f53-4ae6-46d0-a407-c3dff4bc4251", - "name": "Warframe", - "aliases": [] - }, - { - "uuid": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "name": "Totally Reliable Delivery Service", - "aliases": [] - }, - { - "uuid": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "name": "Crab Game", - "aliases": [] - }, - { - "uuid": "3fe70687-ce8f-4023-b1d6-839de8b793a9", - "name": "Overcooked! 2", - "aliases": [] - }, - { - "uuid": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "name": "Magicka", - "aliases": [] - }, - { - "uuid": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "name": "Wildermyth", - "aliases": [] - }, - { - "uuid": "20d58e65-6d33-41a1-9c2b-2e5965b1f70b", - "name": "The Haunted Island, a Frog Detective Game", - "aliases": [] - }, - { - "uuid": "f0c1cc2b-d8aa-4968-83a9-40ee58994414", - "name": "Pony Island", - "aliases": [] - }, - { - "uuid": "c9a0c884-aa86-4a97-9e7b-498504213854", - "name": "Legends of Idleon MMO", - "aliases": [] - }, - { - "uuid": "019ed376-fd1d-48e2-bd70-1ae67d38521c", - "name": "Momodora III", - "aliases": [] - }, - { - "uuid": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", - "name": "Portal", - "aliases": [] - }, - { - "uuid": "543a7738-111b-4af9-a3ef-37b3f0f50f95", - "name": "Momodora: Reverie Under the Moonlight", - "aliases": [] - }, - { - "uuid": "a431de70-56b4-4b16-aa6c-6b1a5fb9b01e", - "name": "Warhammer 40,000: Dawn of War III", - "aliases": [] - }, - { - "uuid": "b1a9005e-73a2-49a3-bdd7-2533ba8ddd20", - "name": "Poly Bridge", - "aliases": [] - }, - { - "uuid": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", - "name": "Resident Evil 5 / Biohazard 5", - "aliases": [] - }, - { - "uuid": "80a380f2-feb5-4996-8c0a-3f25b8148ae5", - "name": "Talvisota - Winter War", - "aliases": [] - }, - { - "uuid": "06669762-cade-4077-825f-f62bb41e5aa2", - "name": "CHRONO TRIGGER", - "aliases": [] - }, - { - "uuid": "074dae53-3fe4-47fc-86a7-d53a4cddae24", - "name": "FiveM", - "aliases": [] - }, - { - "uuid": "9e6f31d9-b8ba-4a83-a81a-a8b1342a9d38", - "name": "RSM Freeroam", - "aliases": [] - }, - { - "uuid": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "name": "MONSTER HUNTER RISE", - "aliases": [] - }, - { - "uuid": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "name": "Company of Heroes", - "aliases": [] - }, - { - "uuid": "91e18845-c2ed-40dd-9158-46f8366c2199", - "name": "Contractors VR", - "aliases": [] - }, - { - "uuid": "371ae7e0-4624-46f4-b794-42c2e417f1b6", - "name": "Clownfield 2042", - "aliases": [] - }, - { - "uuid": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "name": "American Truck Simulator", - "aliases": [] - }, - { - "uuid": "c1bc61ad-cfc5-405a-848f-6e59a4f51be8", - "name": "The Typing of The Dead: Overkill", - "aliases": [] - }, - { - "uuid": "a6d77f68-9a95-4fe8-8049-744b429c38ee", - "name": "Space Engineers", - "aliases": [] - }, - { - "uuid": "f075129c-25cb-4847-830a-9f73034629c4", - "name": "art of rally", - "aliases": [] - }, - { - "uuid": "40f5c1fe-082c-4507-bc62-67404217a241", - "name": "Lost Ark", - "aliases": [] - }, - { - "uuid": "b00f7047-82f7-4b7e-9635-8d6b8c0b8e37", - "name": "Train Sim World® 2", - "aliases": [] - }, - { - "uuid": "fb01aea7-c097-4e24-b53a-87fe39d60513", - "name": "ABRISS Demo", - "aliases": [] - }, - { - "uuid": "a420c4a5-bcb2-4330-9164-9e998ec927c4", - "name": "Fallout 4", - "aliases": [] - }, - { - "uuid": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "name": "ELDEN RING", - "aliases": [] - }, - { - "uuid": "4b394edf-55a8-496b-b3c2-e780f96dce9c", - "name": "BattleBit Remastered Playtest", - "aliases": [] - }, - { - "uuid": "b4e865fb-72da-43ee-ad43-eef521ade238", - "name": "Crossout", - "aliases": [] - }, - { - "uuid": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "name": "Age of Empires IV", - "aliases": [] - }, - { - "uuid": "137d60c1-8a27-435e-b376-71e8ddd1a7cb", - "name": "Holdfast: Nations At War", - "aliases": [] - }, - { - "uuid": "133a29ac-efd6-4b3e-b478-565af34627b0", - "name": "DashPanel", - "aliases": [] - }, - { - "uuid": "00ec3f89-4cf5-4431-9f01-c91985a6520b", - "name": "Ori and the Blind Forest: Definitive Edition", - "aliases": [] - }, - { - "uuid": "7c0bff80-6b01-42b3-8df5-e97585336253", - "name": "Call of Duty 2", - "aliases": [] - }, - { - "uuid": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", - "name": "Backbone ", - "aliases": [] - }, - { - "uuid": "49a96d3d-d020-43d3-8664-cd437bb5516e", - "name": "POLYGON", - "aliases": [] - }, - { - "uuid": "5220ea77-8e1e-4f83-a2be-feb2a2a19c4f", - "name": "Loop Hero", - "aliases": [] - }, - { - "uuid": "abe86312-84bd-4514-a3df-0aa67bf53a10", - "name": "Drift21", - "aliases": [] - }, - { - "uuid": "a4df52ab-d872-43a5-a695-0707a966de8a", - "name": "TUNIC", - "aliases": [] - }, - { - "uuid": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "name": "LOOP HERO 1.105 (win)", - "aliases": [] - }, - { - "uuid": "b450930e-c676-4521-94fe-da3e804ff499", - "name": "Persona 4 Arena Ultimax", - "aliases": [] - }, - { - "uuid": "a15863d4-379d-45c0-9d3c-823129be65a1", - "name": "Shredders", - "aliases": [] - }, - { - "uuid": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "name": "Elite Dangerous", - "aliases": [] - }, - { - "uuid": "2141b664-ba09-4762-84a7-13aa046d4003", - "name": "Dominion", - "aliases": [] - }, - { - "uuid": "78afdc1a-aa4c-41f9-b266-ed1788df2422", - "name": "Pawnbarian", - "aliases": [] - }, - { - "uuid": "1eb3f873-f7dd-4dba-b4bd-3a5b01b5d7cf", - "name": "Horizon Zero Dawn", - "aliases": [] - }, - { - "uuid": "ef46f159-33f0-4bdf-a46b-e1bbfcc0ca5f", - "name": "God of War", - "aliases": [] - }, - { - "uuid": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "name": "TaleSpire", - "aliases": [] - }, - { - "uuid": "45141b81-5998-460e-8ab0-29916cf1db66", - "name": "FIFA 22", - "aliases": [] - }, - { - "uuid": "bff36695-e5e8-4e3a-a4c4-d827d3ed3257", - "name": "Visage", - "aliases": [] - }, - { - "uuid": "539aca1d-acd4-4758-91c3-8836cf8d08ce", - "name": "Call of Duty®: Vanguard®", - "aliases": [] - }, - { - "uuid": "336178df-7d20-40f9-8e57-2d95f351ef09", - "name": "​C​a​l​l​ ​o​f​ ​D​u​t​y​®​:​ ​V​a​n​g​u​a​r​d​®​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​", - "aliases": [] - }, - { - "uuid": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", - "name": "Core Keeper", - "aliases": [] - }, - { - "uuid": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "name": "Ready or Not", - "aliases": [] - }, - { - "uuid": "2035a666-f1ec-4254-b079-a10089441f6f", - "name": "LEGO® Star Wars™: The Skywalker Saga", - "aliases": [] - }, - { - "uuid": "c038590d-ab18-4893-8977-94be81846fc9", - "name": "7 Days to Die", - "aliases": [] - }, - { - "uuid": "dfa2d16e-b14e-4432-baeb-5f2051056bc1", - "name": "VisualBoyAdvance", - "aliases": [] - }, - { - "uuid": "2075383b-cc34-4494-ba6d-d01568fb865a", - "name": "PCSX2", - "aliases": [] - }, - { - "uuid": "8a27192b-10a3-4a27-a32b-35c5afd39edb", - "name": "Stacklands", - "aliases": [] - }, - { - "uuid": "1515b8c2-ed76-4da1-99d1-d10d3c728265", - "name": "Vampire Survivors", - "aliases": [] - }, - { - "uuid": "4c6622ae-2861-4b10-b486-2e63f5c19c22", - "name": "Dorfromantik", - "aliases": [] - }, - { - "uuid": "38e42464-dc99-4e7e-b582-8a2f199a575c", - "name": "Superhot", - "aliases": [] - }, - { - "uuid": "1edf8f39-dc39-4b23-a10f-3a523a658a23", - "name": "Get To The Orange Door", - "aliases": [] - }, - { - "uuid": "dc78f18b-4498-446d-ad6f-557f0df19e4c", - "name": "Going Under", - "aliases": [] - }, - { - "uuid": "5fd7970f-8fb6-42c6-887e-d20b8abfca77", - "name": "V Rising", - "aliases": [] - }, - { - "uuid": "f720b1ba-3ab2-4a06-9de3-c53a1b881dc1", - "name": "BF1942 (Ver: Mon, 08 Oct 2012 19:38:50)", - "aliases": [] - }, - { - "uuid": "57d8a277-c67b-48e2-ae77-69b0eab4d766", - "name": "GUNS UP!", - "aliases": [] - }, - { - "uuid": "858510c5-ad63-48a9-ae9d-2c0163b83dd7", - "name": "Mini Metro", - "aliases": [] - }, - { - "uuid": "a1598b47-f311-41e8-ac6e-5cb889f9ccc6", - "name": "Sniper Elite 5", - "aliases": [] - }, - { - "uuid": "755ebccc-1d77-482a-972a-86c29ed814a7", - "name": "Spec Ops: The Line", - "aliases": [] - }, - { - "uuid": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "name": "Shadow of the Tomb Raider", - "aliases": [] - }, - { - "uuid": "c793281e-3f4d-47dd-9258-3d0e6e904529", - "name": "Unturned", - "aliases": [] - }, - { - "uuid": "a9fb8acf-f46f-4df7-9330-aa48ec5da7d6", - "name": "Retail Royale", - "aliases": [] - }, - { - "uuid": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "name": "Vampire: The Masquerade - Bloodhunt", - "aliases": [] - }, - { - "uuid": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", - "name": "Green Hell", - "aliases": [] - }, - { - "uuid": "b30285cc-7955-44d7-9963-7e644b5341da", - "name": "20 Minutes Till Dawn", - "aliases": [] - }, - { - "uuid": "203982b0-aea4-4000-92e2-ee776443557c", - "name": "STAR WARS Jedi: Fallen Order™", - "aliases": [] - }, - { - "uuid": "0f8d6565-3b27-42a6-9069-24c2d0a0560d", - "name": "Reflex Arena", - "aliases": [] - }, - { - "uuid": "2cd75f09-f296-4b04-8470-ab7147118132", - "name": "Quake Champions", - "aliases": [] - }, - { - "uuid": "640927d7-dcbb-4fff-981e-62e3fb548421", - "name": "Audiosurf 2", - "aliases": [] - }, - { - "uuid": "03a31878-f452-407c-8fcb-50532c23c03e", - "name": "Project Wingman", - "aliases": [] - }, - { - "uuid": "53dab6c5-38c2-459c-a6b5-f18b4c3ebd49", - "name": "Call of Duty: Black Ops", - "aliases": [] - }, - { - "uuid": "a473d4f0-8290-41db-8c11-f854f96a0c52", - "name": "Brawlhalla", - "aliases": [] - }, - { - "uuid": "21f3015a-a47b-4f13-96d3-3f2edac3166f", - "name": "BattlEye Launcher", - "aliases": [] - }, - { - "uuid": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "name": "Gloomhaven", - "aliases": [] - }, - { - "uuid": "23fa87fa-6769-43d6-9469-6e322e4e5184", - "name": "Missile Command: Recharged", - "aliases": [] - }, - { - "uuid": "d9fbf58b-9a07-4b52-95a2-71db4109ebdb", - "name": "Intruder", - "aliases": [] - }, - { - "uuid": "7b9861d9-347a-4f07-b295-7ff3ced28aec", - "name": "F1® 22", - "aliases": [] - }, - { - "uuid": "a6b82414-c7fa-4c62-89ec-adba4b617ec0", - "name": "Iratus", - "aliases": [] - }, - { - "uuid": "f3455b77-8208-479a-8244-34516b0e5816", - "name": "Assassin's Creed II", - "aliases": [] - }, - { - "uuid": "35f84e81-1f0a-4a40-b954-30225c142db7", - "name": "Assassin's Creed Brotherhood", - "aliases": [] - }, - { - "uuid": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", - "name": "Tomb Raider", - "aliases": [] - }, - { - "uuid": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", - "name": "Tales of the Black Forest", - "aliases": [] - }, - { - "uuid": "44e6d1a5-e64d-42d6-b931-367129ff063a", - "name": "The Looker", - "aliases": [] - }, - { - "uuid": "01edda9a-6847-4f03-b11f-5cac3383c378", - "name": "Game Master Engine", - "aliases": [] - }, - { - "uuid": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "name": "Planet Coaster", - "aliases": [] - }, - { - "uuid": "8aa43cb6-f2cd-4615-9024-8b433aad7298", - "name": "Company of Heroes 3: Mission Alpha", - "aliases": [] - }, - { - "uuid": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "name": "Dead Island Definitive Edition", - "aliases": [] - }, - { - "uuid": "dcaa64d2-828a-4860-8f6b-72385a7631d0", - "name": "Wolfenstein: Enemy Territory", - "aliases": [] - }, - { - "uuid": "dd280b7c-f3d6-4cdc-b2ed-71f43608dd72", - "name": "For Honor", - "aliases": [] - }, - { - "uuid": "499ba08c-1117-462b-800e-1f1c0720142e", - "name": "Stray", - "aliases": [] - }, - { - "uuid": "e8e1380c-8fbe-4076-917b-3e7238554751", - "name": "Just Act Natural", - "aliases": [] - }, - { - "uuid": "23b7ae05-8c1b-41cf-8cfe-52746de5a925", - "name": "Escape Room - The Sick Colleague", - "aliases": [] - }, - { - "uuid": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "name": "OneShot", - "aliases": [] - }, - { - "uuid": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", - "name": "BeamNG.drive", - "aliases": [] - } -] \ No newline at end of file diff --git a/sessions.json b/sessions.json deleted file mode 100644 index 5b7d82e..0000000 --- a/sessions.json +++ /dev/null @@ -1,701273 +0,0 @@ -[ - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "87fa6a20-cc01-477a-8f10-99a6e60fce19", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T00:21:48.000Z" - }, - "end": { - "$date": "2020-10-10T00:37:47.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T00:21:48.000Z" - }, - "end": { - "$date": "2020-10-10T00:37:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3669b6b3-1493-430d-b186-aaefb188c009", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T02:22:29.000Z" - }, - "end": { - "$date": "2020-10-10T02:25:58.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T02:22:29.000Z" - }, - "end": { - "$date": "2020-10-10T02:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "405a8fc3-b025-44bf-9ac0-e1b371c78984", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-10T01:23:19.000Z" - }, - "end": { - "$date": "2020-10-10T01:24:18.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T01:23:19.000Z" - }, - "end": { - "$date": "2020-10-10T01:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6be92f89-518e-46a4-9fec-703bd90a5abb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T01:25:12.000Z" - }, - "end": { - "$date": "2020-10-10T02:52:29.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T01:25:12.000Z" - }, - "end": { - "$date": "2020-10-10T02:52:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8bae1c50-1264-4db8-896a-f53136292444", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-10T01:31:45.000Z" - }, - "end": { - "$date": "2020-10-10T04:14:59.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T01:31:45.000Z" - }, - "end": { - "$date": "2020-10-10T04:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de23b4e9-46eb-4ada-b5b9-248bc6ec0c58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T02:22:29.000Z" - }, - "end": { - "$date": "2020-10-10T03:07:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T02:22:29.000Z" - }, - "end": { - "$date": "2020-10-10T03:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "ca5ddcf5-bebd-4ed3-903c-1449ef11abf9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T02:54:44.000Z" - }, - "end": { - "$date": "2020-10-10T03:08:53.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T02:54:44.000Z" - }, - "end": { - "$date": "2020-10-10T03:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "806a53b0-da9f-4748-99e2-7a45a0543510", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T02:57:46.000Z" - }, - "end": { - "$date": "2020-10-10T03:03:47.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T02:57:46.000Z" - }, - "end": { - "$date": "2020-10-10T03:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "ba91dd9b-63ad-4e11-8d6d-e60bdc296d01", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T03:03:51.000Z" - }, - "end": { - "$date": "2020-10-10T03:05:27.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:03:51.000Z" - }, - "end": { - "$date": "2020-10-10T03:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "d431fa28-85c3-4cea-9a59-d40a318382e9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T03:06:01.000Z" - }, - "end": { - "$date": "2020-10-10T03:11:03.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:06:01.000Z" - }, - "end": { - "$date": "2020-10-10T03:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "1455ad1e-1015-4fc8-94ff-b52de9dc4c21", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T03:09:03.000Z" - }, - "end": { - "$date": "2020-10-10T03:09:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:09:03.000Z" - }, - "end": { - "$date": "2020-10-10T03:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "d0cb95dc-96b1-47a6-b4db-7046b33b309a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T03:14:44.000Z" - }, - "end": { - "$date": "2020-10-10T03:15:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:14:44.000Z" - }, - "end": { - "$date": "2020-10-10T03:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "aba3bae3-a793-4488-a286-68d5dd000e60", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T03:14:46.000Z" - }, - "end": { - "$date": "2020-10-10T03:15:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:14:46.000Z" - }, - "end": { - "$date": "2020-10-10T03:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "ec924358-7a62-457a-90ca-904f19bd9984", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T03:16:29.000Z" - }, - "end": { - "$date": "2020-10-10T03:17:34.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:16:29.000Z" - }, - "end": { - "$date": "2020-10-10T03:17:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a86d05fc-da18-44a2-bf0d-aea71e4085bf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T03:27:25.000Z" - }, - "end": { - "$date": "2020-10-10T03:56:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:27:25.000Z" - }, - "end": { - "$date": "2020-10-10T03:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07cee757-3cab-41ba-ae59-8d77c1f3c767", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-10T06:57:19.000Z" - }, - "end": { - "$date": "2020-10-10T06:57:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T06:57:19.000Z" - }, - "end": { - "$date": "2020-10-10T06:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "11c40d5d-624b-440f-93d4-ab359f8db16c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T03:23:02.000Z" - }, - "end": { - "$date": "2020-10-10T03:24:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:23:02.000Z" - }, - "end": { - "$date": "2020-10-10T03:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "fb808872-99be-46bb-9b5c-bcffda1441af", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T03:24:42.000Z" - }, - "end": { - "$date": "2020-10-10T03:25:03.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:24:42.000Z" - }, - "end": { - "$date": "2020-10-10T03:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "be21f3f3-6156-41c7-97f3-a89926bf58a0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T03:24:51.000Z" - }, - "end": { - "$date": "2020-10-10T03:25:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:24:51.000Z" - }, - "end": { - "$date": "2020-10-10T03:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "774ebeca-d5d3-4a73-a0f7-98ced544208b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T03:25:12.000Z" - }, - "end": { - "$date": "2020-10-10T06:08:12.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:25:12.000Z" - }, - "end": { - "$date": "2020-10-10T06:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "9fbd058c-7c32-4d9f-9f5d-878ec868bb4b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T03:26:06.000Z" - }, - "end": { - "$date": "2020-10-10T06:08:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:26:06.000Z" - }, - "end": { - "$date": "2020-10-10T06:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "d0e00f7e-60b3-4c8f-ad04-d7ea0d243073", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-10T03:34:53.000Z" - }, - "end": { - "$date": "2020-10-10T04:01:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T03:34:53.000Z" - }, - "end": { - "$date": "2020-10-10T04:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3796bcd-9229-46a5-b27d-03b65dea19bc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T04:42:26.000Z" - }, - "end": { - "$date": "2020-10-10T05:18:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:42:26.000Z" - }, - "end": { - "$date": "2020-10-10T05:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f03a2e5-972e-4438-96ba-9120adab6a15", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-10T04:03:44.000Z" - }, - "end": { - "$date": "2020-10-10T04:41:16.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:03:44.000Z" - }, - "end": { - "$date": "2020-10-10T04:41:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "5e8d18de-a2d3-4572-8cff-4fffee683dec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T04:11:03.000Z" - }, - "end": { - "$date": "2020-10-10T04:11:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:11:03.000Z" - }, - "end": { - "$date": "2020-10-10T04:11:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e53c0499-5388-4cc4-a181-2191fec73c3f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-10T04:27:16.000Z" - }, - "end": { - "$date": "2020-10-10T04:31:11.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:27:16.000Z" - }, - "end": { - "$date": "2020-10-10T04:31:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5d703851-1af3-4a97-bc93-794580db2e01", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T04:44:35.000Z" - }, - "end": { - "$date": "2020-10-10T04:44:49.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:44:35.000Z" - }, - "end": { - "$date": "2020-10-10T04:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "406d3645-4e69-4f99-954f-e6d7913cbb16", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-10T04:31:47.000Z" - }, - "end": { - "$date": "2020-10-10T07:18:08.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:31:47.000Z" - }, - "end": { - "$date": "2020-10-10T07:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdf3c512-197b-40f0-803a-aaca233f556b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-10T04:47:56.000Z" - }, - "end": { - "$date": "2020-10-10T05:09:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T04:47:56.000Z" - }, - "end": { - "$date": "2020-10-10T05:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e323a0c-fd6d-424f-b660-0b0b14928aab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T05:20:29.000Z" - }, - "end": { - "$date": "2020-10-10T05:40:39.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T05:20:29.000Z" - }, - "end": { - "$date": "2020-10-10T05:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42217b1d-1a08-482b-bdaf-e892b719d84c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T05:44:15.000Z" - }, - "end": { - "$date": "2020-10-10T06:16:45.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T05:44:15.000Z" - }, - "end": { - "$date": "2020-10-10T06:16:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "56e3a158-04bc-4224-9e93-16b52f25660f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T06:08:20.000Z" - }, - "end": { - "$date": "2020-10-10T08:09:49.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T06:08:20.000Z" - }, - "end": { - "$date": "2020-10-10T08:09:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "52f6261c-e0e8-4144-ab66-bd7e799d314b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T06:08:23.000Z" - }, - "end": { - "$date": "2020-10-10T08:09:58.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T06:08:23.000Z" - }, - "end": { - "$date": "2020-10-10T08:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f38fee97-1b5b-4241-8088-b1e446fa3fb2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-10T06:19:41.000Z" - }, - "end": { - "$date": "2020-10-10T06:57:16.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T06:19:41.000Z" - }, - "end": { - "$date": "2020-10-10T06:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f670bbe2-7c50-466b-bd62-54e5921bcca2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "1970-01-01T00:00:00.000Z" - }, - "end": { - "$date": "2020-10-10T07:02:10.000Z" - }, - "events": [ - { - "start": { - "$date": "1970-01-01T00:00:00.000Z" - }, - "end": { - "$date": "2020-10-10T07:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff0d1c1d-a16b-4bde-b279-0baf6f06c886", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-10T06:59:57.000Z" - }, - "end": { - "$date": "2020-10-10T06:59:58.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T06:59:57.000Z" - }, - "end": { - "$date": "2020-10-10T06:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "11e3f472-1413-4728-8d21-b0ce09459c0b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-10T07:23:41.000Z" - }, - "end": { - "$date": "2020-10-10T08:46:53.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T07:23:41.000Z" - }, - "end": { - "$date": "2020-10-10T08:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8591f7c9-1c59-4bb1-b9cb-485f2f97cbf6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-10T08:09:57.000Z" - }, - "end": { - "$date": "2020-10-10T09:00:15.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T08:09:57.000Z" - }, - "end": { - "$date": "2020-10-10T09:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d321324b-685e-4fe7-8341-ad7b08240dd5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T15:29:09.000Z" - }, - "end": { - "$date": "2020-10-10T15:59:19.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T15:29:09.000Z" - }, - "end": { - "$date": "2020-10-10T15:59:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d653b13d-207d-4b2a-90ec-cd2ccb9d1e15", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T16:01:04.000Z" - }, - "end": { - "$date": "2020-10-10T16:17:30.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T16:01:04.000Z" - }, - "end": { - "$date": "2020-10-10T16:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "237249ed-a589-4d46-936f-fc13bbae6e50", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T16:19:45.000Z" - }, - "end": { - "$date": "2020-10-10T16:27:05.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T16:19:45.000Z" - }, - "end": { - "$date": "2020-10-10T16:27:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "783f18db-abf6-4327-9482-86a96e6d8be3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T16:38:32.000Z" - }, - "end": { - "$date": "2020-10-10T17:33:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T16:38:32.000Z" - }, - "end": { - "$date": "2020-10-10T17:33:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "7f18b659-6c8a-458a-b002-74de4c4ea815", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T17:48:00.000Z" - }, - "end": { - "$date": "2020-10-10T18:07:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T17:48:00.000Z" - }, - "end": { - "$date": "2020-10-10T18:07:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fe9f369b-32ca-419b-9061-fd7ac279dbc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T20:05:52.000Z" - }, - "end": { - "$date": "2020-10-10T21:17:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T20:05:52.000Z" - }, - "end": { - "$date": "2020-10-10T21:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "728039b1-509b-4be0-9605-bd293b875809", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T20:08:32.000Z" - }, - "end": { - "$date": "2020-10-10T21:04:08.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T20:08:32.000Z" - }, - "end": { - "$date": "2020-10-10T21:04:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d2cdbb01-db95-4fb2-992c-089a4f621f27", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-10T21:27:47.000Z" - }, - "end": { - "$date": "2020-10-10T21:48:12.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T21:27:47.000Z" - }, - "end": { - "$date": "2020-10-10T21:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "655a40df-d102-41d2-aec1-75d761595e0b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-10T23:05:11.000Z" - }, - "end": { - "$date": "2020-10-11T01:42:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T23:05:11.000Z" - }, - "end": { - "$date": "2020-10-11T01:42:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "598bfe49-0b28-4ed8-8cf1-75fd5f0092c2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-10T23:24:01.000Z" - }, - "end": { - "$date": "2020-10-11T01:27:37.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-10T23:24:01.000Z" - }, - "end": { - "$date": "2020-10-11T01:27:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "7014c6b1-7158-43c7-b425-113ecac35953", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T01:42:55.000Z" - }, - "end": { - "$date": "2020-10-11T01:48:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T01:42:55.000Z" - }, - "end": { - "$date": "2020-10-11T01:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "16d58bd1-ab16-4e17-9b23-89c0517ad3c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-11T01:45:47.000Z" - }, - "end": { - "$date": "2020-10-11T01:48:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T01:45:47.000Z" - }, - "end": { - "$date": "2020-10-11T01:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "9d62d21c-a20f-43fb-a2c7-3f11aa1d3c59", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T01:54:31.000Z" - }, - "end": { - "$date": "2020-10-11T02:01:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T01:54:31.000Z" - }, - "end": { - "$date": "2020-10-11T02:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "1691a9c0-23fd-41bd-977f-4084b215a0ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T02:01:28.000Z" - }, - "end": { - "$date": "2020-10-11T03:44:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T02:01:28.000Z" - }, - "end": { - "$date": "2020-10-11T03:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00381831-b99f-4888-b2f7-42b5668998f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T03:35:46.000Z" - }, - "end": { - "$date": "2020-10-11T04:13:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T03:35:46.000Z" - }, - "end": { - "$date": "2020-10-11T04:13:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d4cf30ab-32f8-4667-85ae-9bae96a04a76", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-11T03:12:37.000Z" - }, - "end": { - "$date": "2020-10-11T06:02:39.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T03:12:37.000Z" - }, - "end": { - "$date": "2020-10-11T06:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ad84b8c2-0daa-436f-b85c-30143fa7d77e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-11T03:15:31.000Z" - }, - "end": { - "$date": "2020-10-11T04:03:11.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T03:15:31.000Z" - }, - "end": { - "$date": "2020-10-11T04:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4af1e0ea-6be1-48a1-a2f0-c6608e7ad410", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T03:55:49.000Z" - }, - "end": { - "$date": "2020-10-11T07:53:08.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T03:55:49.000Z" - }, - "end": { - "$date": "2020-10-11T07:53:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "444681dc-1a88-4e32-8bdc-2b9ef3b29eea", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-11T04:03:52.000Z" - }, - "end": { - "$date": "2020-10-11T07:49:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T04:03:52.000Z" - }, - "end": { - "$date": "2020-10-11T07:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c08efb-a555-4dcb-b871-94b04fc9e08d", - "uuid": "b7c88023-258d-425f-9485-821fad5ec26e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-11T04:05:35.000Z" - }, - "end": { - "$date": "2020-10-11T07:50:08.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T04:05:35.000Z" - }, - "end": { - "$date": "2020-10-11T07:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d9dd791-c117-43c9-9086-2bd193b02850", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T04:14:14.000Z" - }, - "end": { - "$date": "2020-10-11T04:50:37.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T04:14:14.000Z" - }, - "end": { - "$date": "2020-10-11T04:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "68245887-eba1-42a0-bfc8-97d84f840574", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-11T04:24:38.000Z" - }, - "end": { - "$date": "2020-10-11T04:27:58.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T04:24:38.000Z" - }, - "end": { - "$date": "2020-10-11T04:27:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "60fa6e21-189b-4ec6-b838-0feed117c985", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-11T04:29:18.000Z" - }, - "end": { - "$date": "2020-10-11T04:40:09.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T04:29:18.000Z" - }, - "end": { - "$date": "2020-10-11T04:40:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "256e4005-b73a-49dc-866d-6375123788f4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-11T04:47:10.000Z" - }, - "end": { - "$date": "2020-10-11T05:31:21.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T04:47:10.000Z" - }, - "end": { - "$date": "2020-10-11T05:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d18893d9-0e9e-4035-8750-909326f81a1c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T05:24:15.000Z" - }, - "end": { - "$date": "2020-10-11T06:06:59.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T05:24:15.000Z" - }, - "end": { - "$date": "2020-10-11T06:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf1b97d8-bdd8-414a-9181-28414bab0cac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T06:14:49.000Z" - }, - "end": { - "$date": "2020-10-11T06:57:07.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T06:14:49.000Z" - }, - "end": { - "$date": "2020-10-11T06:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "785455e8-6e01-467a-ae5c-b216d56609ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T07:06:41.000Z" - }, - "end": { - "$date": "2020-10-11T07:40:56.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T07:06:41.000Z" - }, - "end": { - "$date": "2020-10-11T07:40:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "925c27d8-f9fe-4e90-80c8-954898471770", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-11T06:58:59.000Z" - }, - "end": { - "$date": "2020-10-11T06:59:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T06:58:59.000Z" - }, - "end": { - "$date": "2020-10-11T06:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "851d40f4-c116-417d-808f-60a11b894608", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-11T06:59:41.000Z" - }, - "end": { - "$date": "2020-10-11T08:26:33.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T06:59:41.000Z" - }, - "end": { - "$date": "2020-10-11T08:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06f21edc-d145-4300-a3f3-20415be3bd23", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-11T07:07:44.000Z" - }, - "end": { - "$date": "2020-10-11T07:40:49.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T07:07:44.000Z" - }, - "end": { - "$date": "2020-10-11T07:40:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efd4a3bd-abda-44ce-832f-9d23ab9a6d90", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T07:43:11.000Z" - }, - "end": { - "$date": "2020-10-11T08:23:30.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T07:43:11.000Z" - }, - "end": { - "$date": "2020-10-11T08:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "748c7392-79eb-40d4-8d13-72c97c35c1d1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-11T07:43:15.000Z" - }, - "end": { - "$date": "2020-10-11T08:23:20.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T07:43:15.000Z" - }, - "end": { - "$date": "2020-10-11T08:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "0eafbc70-fac8-4726-b11a-deb84cbcacc8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-11T07:56:05.000Z" - }, - "end": { - "$date": "2020-10-11T09:06:45.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T07:56:05.000Z" - }, - "end": { - "$date": "2020-10-11T09:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "8146ed42-7315-4a5d-838e-b8b748084101", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-11T07:59:46.000Z" - }, - "end": { - "$date": "2020-10-11T08:32:08.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T07:59:46.000Z" - }, - "end": { - "$date": "2020-10-11T08:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fc228ce2-1af3-493e-bcd3-16acd782f815", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T08:03:10.000Z" - }, - "end": { - "$date": "2020-10-11T08:25:54.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T08:03:10.000Z" - }, - "end": { - "$date": "2020-10-11T08:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e063837-3bdd-41d9-84d2-a875057fe7d2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T08:23:35.000Z" - }, - "end": { - "$date": "2020-10-11T08:24:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T08:23:35.000Z" - }, - "end": { - "$date": "2020-10-11T08:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "97cbe10d-8a0e-4e8d-a2cc-d46f9a5b59b1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-11T08:32:14.000Z" - }, - "end": { - "$date": "2020-10-11T09:06:40.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T08:32:14.000Z" - }, - "end": { - "$date": "2020-10-11T09:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "41bf2558-da3e-416e-9319-557d3abde0e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-11T08:43:03.000Z" - }, - "end": { - "$date": "2020-10-11T09:51:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T08:43:03.000Z" - }, - "end": { - "$date": "2020-10-11T09:51:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ac6ee3e5-2c4f-44dc-bce7-a0ec172e4c8f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-11T09:06:51.000Z" - }, - "end": { - "$date": "2020-10-11T09:53:09.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T09:06:51.000Z" - }, - "end": { - "$date": "2020-10-11T09:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79b76057-c13f-4bb9-be7e-70965f63729a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-11T16:49:15.000Z" - }, - "end": { - "$date": "2020-10-11T17:20:12.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T16:49:15.000Z" - }, - "end": { - "$date": "2020-10-11T17:20:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "15519ce0-4747-4cc8-9c35-e1aa58abee0d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-11T18:20:06.000Z" - }, - "end": { - "$date": "2020-10-11T19:11:04.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T18:20:06.000Z" - }, - "end": { - "$date": "2020-10-11T19:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e58baecd-d524-4e9f-a0ef-4fac0d67e638", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T18:49:03.000Z" - }, - "end": { - "$date": "2020-10-11T19:21:47.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T18:49:03.000Z" - }, - "end": { - "$date": "2020-10-11T19:21:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fc19e64-99f5-457b-b2ab-f94f1483fb32", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-11T19:23:06.000Z" - }, - "end": { - "$date": "2020-10-11T19:57:49.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T19:23:06.000Z" - }, - "end": { - "$date": "2020-10-11T19:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "6440a8a4-2e4f-494b-981f-82112d68ec4e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-11T19:33:02.000Z" - }, - "end": { - "$date": "2020-10-11T19:52:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T19:33:02.000Z" - }, - "end": { - "$date": "2020-10-11T19:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "243822f0-8367-43a0-9ee2-bef15f30fa60", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-11T19:43:10.000Z" - }, - "end": { - "$date": "2020-10-11T20:42:32.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T19:43:10.000Z" - }, - "end": { - "$date": "2020-10-11T20:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6597c836-a766-4829-be59-3649a67e20d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-11T19:57:48.000Z" - }, - "end": { - "$date": "2020-10-11T20:12:48.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T19:57:48.000Z" - }, - "end": { - "$date": "2020-10-11T20:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bed25f4e-31cf-4080-9c8e-d881fa774b5a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-11T20:32:40.000Z" - }, - "end": { - "$date": "2020-10-11T20:47:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T20:32:40.000Z" - }, - "end": { - "$date": "2020-10-11T20:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "44cd6076-c797-40fd-b930-f4cbb44df6ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-11T20:53:03.000Z" - }, - "end": { - "$date": "2020-10-11T23:12:15.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T20:53:03.000Z" - }, - "end": { - "$date": "2020-10-11T23:12:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6bb2a381-fbdf-4918-8528-46b11eecef89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T21:01:59.000Z" - }, - "end": { - "$date": "2020-10-11T22:56:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T21:01:59.000Z" - }, - "end": { - "$date": "2020-10-11T22:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d0bd3e82-cfdf-4b9e-a73d-30267b8d1488", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-11T21:07:42.000Z" - }, - "end": { - "$date": "2020-10-12T00:13:33.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T21:07:42.000Z" - }, - "end": { - "$date": "2020-10-12T00:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bc25b654-4171-4a75-8e1c-a54aa2893b5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-11T21:09:04.000Z" - }, - "end": { - "$date": "2020-10-11T22:19:16.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T21:09:04.000Z" - }, - "end": { - "$date": "2020-10-11T22:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b54feb7-ec57-4d09-abe3-eb9b9aa53037", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-11T21:24:05.000Z" - }, - "end": { - "$date": "2020-10-11T21:27:31.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T21:24:05.000Z" - }, - "end": { - "$date": "2020-10-11T21:27:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "dd5e3232-156a-47b2-a50a-3a1340ebcfee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-11T21:28:54.000Z" - }, - "end": { - "$date": "2020-10-11T21:30:00.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T21:28:54.000Z" - }, - "end": { - "$date": "2020-10-11T21:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c3de643f-8270-4a9c-8139-270164c0cce3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-11T22:19:39.000Z" - }, - "end": { - "$date": "2020-10-12T01:59:45.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T22:19:39.000Z" - }, - "end": { - "$date": "2020-10-12T01:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e8f501f3-874d-4315-b7c5-ebf985462432", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-10-11T22:21:27.000Z" - }, - "end": { - "$date": "2020-10-12T02:00:03.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T22:21:27.000Z" - }, - "end": { - "$date": "2020-10-12T02:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "eb3cc83a-e5df-49f9-b43a-a4697e7f7df9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-11T23:07:48.000Z" - }, - "end": { - "$date": "2020-10-12T01:29:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T23:07:48.000Z" - }, - "end": { - "$date": "2020-10-12T01:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac993efb-064f-4ffd-a8ec-a6165f310abf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-11T23:16:34.000Z" - }, - "end": { - "$date": "2020-10-11T23:53:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T23:16:34.000Z" - }, - "end": { - "$date": "2020-10-11T23:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "111ecf73-d2ed-4516-b67a-3765c087ded8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-11T23:57:16.000Z" - }, - "end": { - "$date": "2020-10-12T00:36:34.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-11T23:57:16.000Z" - }, - "end": { - "$date": "2020-10-12T00:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "84c72d09-dfab-4c27-9baa-69b1e328c083", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-12T00:08:09.000Z" - }, - "end": { - "$date": "2020-10-12T00:28:34.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T00:08:09.000Z" - }, - "end": { - "$date": "2020-10-12T00:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20d422f7-006c-4210-9274-1c7b124e3aac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-12T00:27:49.000Z" - }, - "end": { - "$date": "2020-10-12T00:51:00.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T00:27:49.000Z" - }, - "end": { - "$date": "2020-10-12T00:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ea208d9-90c0-48b4-9f9b-96dfa8402762", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-12T00:56:37.000Z" - }, - "end": { - "$date": "2020-10-12T00:57:01.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T00:56:37.000Z" - }, - "end": { - "$date": "2020-10-12T00:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "a8605801-8a3d-4ae8-a011-323ec9b6c4dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-12T01:03:27.000Z" - }, - "end": { - "$date": "2020-10-12T02:36:55.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T01:03:27.000Z" - }, - "end": { - "$date": "2020-10-12T02:36:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "208d745d-0877-4abe-97ee-fcb29824862d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-12T01:28:02.000Z" - }, - "end": { - "$date": "2020-10-12T02:00:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T01:28:02.000Z" - }, - "end": { - "$date": "2020-10-12T02:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "fd51502e-a39a-4631-8040-32aaf6fe8fee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T01:54:13.000Z" - }, - "end": { - "$date": "2020-10-12T02:00:39.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T01:54:13.000Z" - }, - "end": { - "$date": "2020-10-12T02:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "167eaaad-e29f-4685-a9be-c2b48f48f412", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T02:01:15.000Z" - }, - "end": { - "$date": "2020-10-12T02:25:12.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:01:15.000Z" - }, - "end": { - "$date": "2020-10-12T02:25:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "3a46ff10-0386-4c55-b571-b6ffbf01e421", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-12T02:01:50.000Z" - }, - "end": { - "$date": "2020-10-12T02:47:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:01:50.000Z" - }, - "end": { - "$date": "2020-10-12T02:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "9e5c9630-36ce-4aeb-8813-e8978cc06380", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-12T02:02:54.000Z" - }, - "end": { - "$date": "2020-10-12T02:03:08.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:02:54.000Z" - }, - "end": { - "$date": "2020-10-12T02:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "8a380985-61f8-4f3b-b85d-25d38988e8c7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-12T02:03:39.000Z" - }, - "end": { - "$date": "2020-10-12T02:47:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:03:39.000Z" - }, - "end": { - "$date": "2020-10-12T02:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "704fd50d-f03e-4360-90bc-763ead397a14", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T02:26:03.000Z" - }, - "end": { - "$date": "2020-10-12T02:26:53.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:26:03.000Z" - }, - "end": { - "$date": "2020-10-12T02:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "20f9dd1a-0ee6-4006-98f6-2bd23454d822", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T02:27:33.000Z" - }, - "end": { - "$date": "2020-10-12T02:40:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:27:33.000Z" - }, - "end": { - "$date": "2020-10-12T02:40:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "3ed304f8-c7b1-4234-a05c-01cdbd3f8927", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T02:42:55.000Z" - }, - "end": { - "$date": "2020-10-12T02:46:10.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:42:55.000Z" - }, - "end": { - "$date": "2020-10-12T02:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6374f7ff-5060-4925-8812-80d5bd579162", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T02:47:26.000Z" - }, - "end": { - "$date": "2020-10-12T02:58:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T02:47:26.000Z" - }, - "end": { - "$date": "2020-10-12T02:58:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "18ade822-97f4-4e95-8eea-257dad0e3168", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T03:03:27.000Z" - }, - "end": { - "$date": "2020-10-12T03:37:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T03:03:27.000Z" - }, - "end": { - "$date": "2020-10-12T03:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "8faddcfb-4b0b-4722-8ce1-82cb02bcf320", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T03:17:47.000Z" - }, - "end": { - "$date": "2020-10-12T04:11:34.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T03:17:47.000Z" - }, - "end": { - "$date": "2020-10-12T04:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "576b63da-78d5-4d82-af3a-c2a2f40e6690", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-12T03:30:16.000Z" - }, - "end": { - "$date": "2020-10-12T05:05:28.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T03:30:16.000Z" - }, - "end": { - "$date": "2020-10-12T05:05:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cfa4b348-7178-4700-9724-0647074be9b2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-12T03:41:21.000Z" - }, - "end": { - "$date": "2020-10-12T05:09:29.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T03:41:21.000Z" - }, - "end": { - "$date": "2020-10-12T05:09:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "799a6c45-ae7a-4567-ad9c-a09a82891151", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-12T05:06:33.000Z" - }, - "end": { - "$date": "2020-10-12T05:07:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T05:06:33.000Z" - }, - "end": { - "$date": "2020-10-12T05:07:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "73b8fb5f-c315-445f-b474-9dbf89e61ad9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-12T05:07:38.000Z" - }, - "end": { - "$date": "2020-10-12T05:11:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T05:07:38.000Z" - }, - "end": { - "$date": "2020-10-12T05:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dcb72550-2aa7-4562-8b09-a1782ea4950d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-12T05:58:11.000Z" - }, - "end": { - "$date": "2020-10-12T08:03:15.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T05:58:11.000Z" - }, - "end": { - "$date": "2020-10-12T08:03:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "56e61c75-670e-4f36-995d-a1e767bd128a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T16:31:47.000Z" - }, - "end": { - "$date": "2020-10-12T17:27:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T16:31:47.000Z" - }, - "end": { - "$date": "2020-10-12T17:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ce60bc6-21e1-473b-9195-5672a3e0e939", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T19:52:32.000Z" - }, - "end": { - "$date": "2020-10-12T20:27:25.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T19:52:32.000Z" - }, - "end": { - "$date": "2020-10-12T20:27:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "9e0224b9-8805-4f5c-a3fd-f1314a8fa8b9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-12T19:57:06.000Z" - }, - "end": { - "$date": "2020-10-12T19:57:21.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T19:57:06.000Z" - }, - "end": { - "$date": "2020-10-12T19:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "35598d4b-5549-449a-b4c8-13c94cb5fb9d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-12T19:58:36.000Z" - }, - "end": { - "$date": "2020-10-12T22:49:55.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T19:58:36.000Z" - }, - "end": { - "$date": "2020-10-12T22:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "469555e7-16bf-4b47-9e99-85ce8d31974e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-12T20:00:33.000Z" - }, - "end": { - "$date": "2020-10-12T20:50:56.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T20:00:33.000Z" - }, - "end": { - "$date": "2020-10-12T20:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7b20dfe1-d590-408d-92f3-33f302bc94bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-12T21:03:18.000Z" - }, - "end": { - "$date": "2020-10-13T00:50:32.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T21:03:18.000Z" - }, - "end": { - "$date": "2020-10-13T00:50:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11a1988a-7f72-4b08-9f94-8c583bd890ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T21:20:59.000Z" - }, - "end": { - "$date": "2020-10-12T21:22:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T21:20:59.000Z" - }, - "end": { - "$date": "2020-10-12T21:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b021ade0-3a08-4be3-a0d2-c296d2b6919c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T21:22:49.000Z" - }, - "end": { - "$date": "2020-10-12T21:24:10.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T21:22:49.000Z" - }, - "end": { - "$date": "2020-10-12T21:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3993486f-70c9-462f-baab-436144b0a35e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T21:24:24.000Z" - }, - "end": { - "$date": "2020-10-12T22:03:03.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T21:24:24.000Z" - }, - "end": { - "$date": "2020-10-12T22:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "46fd650c-401e-443e-ad54-0d370602a6b4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-12T21:37:53.000Z" - }, - "end": { - "$date": "2020-10-12T22:16:39.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T21:37:53.000Z" - }, - "end": { - "$date": "2020-10-12T22:16:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "89897c74-f8bf-481f-8c30-bf591653b2c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T00:04:32.000Z" - }, - "end": { - "$date": "2020-10-13T01:20:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T00:04:32.000Z" - }, - "end": { - "$date": "2020-10-13T01:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "44dee2b1-a58d-4e5a-9ce7-6b60ec33485a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-12T22:36:33.000Z" - }, - "end": { - "$date": "2020-10-13T00:31:10.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T22:36:33.000Z" - }, - "end": { - "$date": "2020-10-13T00:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a944b47-41c0-4c87-acdd-58004bb6bf9a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-12T22:46:58.000Z" - }, - "end": { - "$date": "2020-10-12T23:20:36.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T22:46:58.000Z" - }, - "end": { - "$date": "2020-10-12T23:20:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0788dbc7-aec4-4682-872d-a6d965789591", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-12T23:46:46.000Z" - }, - "end": { - "$date": "2020-10-13T00:26:36.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-12T23:46:46.000Z" - }, - "end": { - "$date": "2020-10-13T00:26:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6dc578a6-54e0-441e-9652-c5f73eb6fe14", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-13T00:03:55.000Z" - }, - "end": { - "$date": "2020-10-13T00:20:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T00:03:55.000Z" - }, - "end": { - "$date": "2020-10-13T00:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af3959ad-46e6-43d3-ab85-667135d63049", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-13T00:56:22.000Z" - }, - "end": { - "$date": "2020-10-13T01:33:11.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T00:56:22.000Z" - }, - "end": { - "$date": "2020-10-13T01:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "356c2f0b-8698-4ee1-98cd-b2b5f626ec7e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-13T00:53:02.000Z" - }, - "end": { - "$date": "2020-10-13T04:13:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T00:53:02.000Z" - }, - "end": { - "$date": "2020-10-13T04:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d939a0b-e054-42fb-850a-320c684c4309", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-13T00:56:53.000Z" - }, - "end": { - "$date": "2020-10-13T01:32:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T00:56:53.000Z" - }, - "end": { - "$date": "2020-10-13T01:32:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7b0f0f14-83e3-4e95-b4bb-7db8c0a17299", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T01:21:19.000Z" - }, - "end": { - "$date": "2020-10-13T02:16:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T01:21:19.000Z" - }, - "end": { - "$date": "2020-10-13T02:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cdec9ed-fe88-45fa-b4b3-9b520677151d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-13T02:33:47.000Z" - }, - "end": { - "$date": "2020-10-13T03:09:12.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T02:33:47.000Z" - }, - "end": { - "$date": "2020-10-13T03:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6569ee8a-2565-45c4-915c-7e1f48a78ee3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T02:17:57.000Z" - }, - "end": { - "$date": "2020-10-13T02:32:18.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T02:17:57.000Z" - }, - "end": { - "$date": "2020-10-13T02:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8e92b489-7568-44f8-a361-ac43ee0ccc69", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-13T02:25:28.000Z" - }, - "end": { - "$date": "2020-10-13T03:00:25.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T02:25:28.000Z" - }, - "end": { - "$date": "2020-10-13T03:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8ba15e5b-3708-486d-8b0e-062b4c0a4d00", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T02:34:53.000Z" - }, - "end": { - "$date": "2020-10-13T04:24:11.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T02:34:53.000Z" - }, - "end": { - "$date": "2020-10-13T04:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "093e0b42-6ba9-49e4-84ff-a6a536457992", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-13T03:09:46.000Z" - }, - "end": { - "$date": "2020-10-13T03:48:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T03:09:46.000Z" - }, - "end": { - "$date": "2020-10-13T03:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "346d1aeb-0cfe-4c99-9c70-8b7c5abce0b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-13T04:18:52.000Z" - }, - "end": { - "$date": "2020-10-13T04:32:00.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T04:18:52.000Z" - }, - "end": { - "$date": "2020-10-13T04:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "abe043b8-c6cf-4115-aea9-f5a8063b6d6d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T04:26:21.000Z" - }, - "end": { - "$date": "2020-10-13T04:31:36.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T04:26:21.000Z" - }, - "end": { - "$date": "2020-10-13T04:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6524b4ee-5f0b-498c-b4f1-d17b6e8e3673", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-13T04:39:32.000Z" - }, - "end": { - "$date": "2020-10-13T04:48:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T04:39:32.000Z" - }, - "end": { - "$date": "2020-10-13T04:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "96577e2b-5ba1-48ef-86af-8aa10670b514", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-13T05:19:25.000Z" - }, - "end": { - "$date": "2020-10-13T07:36:36.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-13T05:19:25.000Z" - }, - "end": { - "$date": "2020-10-13T07:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6991c1cf-6e9f-4d9a-8dcd-f66194bf1a9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-13T13:52:31.000Z" - }, - "end": { - "$date": "2020-10-13T14:31:59.000Z" - }, - "events": [ - { - "uuid": "23ca256d-7932-492f-8711-27dddcbbc8af", - "start": { - "$date": "2020-10-13T13:52:31.000Z" - }, - "end": { - "$date": "2020-10-13T14:31:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "dd351f62-6dca-44d2-8b3b-60f1f17814e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-13T16:35:51.000Z" - }, - "end": { - "$date": "2020-10-13T17:34:29.000Z" - }, - "events": [ - { - "uuid": "28e479e7-c8a5-483e-b045-1425dfbde34e", - "start": { - "$date": "2020-10-13T16:35:51.000Z" - }, - "end": { - "$date": "2020-10-13T17:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d5b338de-b922-4948-bae3-e853da4365e1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-13T19:30:13.000Z" - }, - "end": { - "$date": "2020-10-13T20:50:38.000Z" - }, - "events": [ - { - "uuid": "dba89b9c-28e1-46e7-b434-52d581bf2a32", - "start": { - "$date": "2020-10-13T19:30:13.000Z" - }, - "end": { - "$date": "2020-10-13T20:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "081a50ff-3b5e-4b80-beb3-b0e3c01fa3f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T21:17:19.000Z" - }, - "end": { - "$date": "2020-10-13T21:18:18.000Z" - }, - "events": [ - { - "uuid": "b740622f-ddf8-49c0-91ff-5e6aa7c598d3", - "start": { - "$date": "2020-10-13T21:17:19.000Z" - }, - "end": { - "$date": "2020-10-13T21:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7ba4be38-9421-471c-9a39-8dd0a030921c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T21:19:04.000Z" - }, - "end": { - "$date": "2020-10-13T21:35:09.000Z" - }, - "events": [ - { - "uuid": "d1feae34-01dc-478a-9e91-3e609d56eab0", - "start": { - "$date": "2020-10-13T21:19:04.000Z" - }, - "end": { - "$date": "2020-10-13T21:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "36eb1b83-591d-4c26-befc-9a6104f4381a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T21:37:05.000Z" - }, - "end": { - "$date": "2020-10-13T22:29:40.000Z" - }, - "events": [ - { - "uuid": "cf5a3fc9-e291-413f-9295-bf83f0e9333a", - "start": { - "$date": "2020-10-13T21:37:05.000Z" - }, - "end": { - "$date": "2020-10-13T22:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9ba4e282-bb6c-458c-b57e-c299a43a0310", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-13T22:03:15.000Z" - }, - "end": { - "$date": "2020-10-13T22:25:45.000Z" - }, - "events": [ - { - "uuid": "ddd6299f-f0cc-4256-a5f3-d32a62c2085f", - "start": { - "$date": "2020-10-13T22:03:15.000Z" - }, - "end": { - "$date": "2020-10-13T22:25:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "8470c0a1-6b7d-4d54-89e4-757c7fcad90d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-13T22:41:12.000Z" - }, - "end": { - "$date": "2020-10-13T22:57:21.000Z" - }, - "events": [ - { - "uuid": "7e56a376-148d-457e-be31-25f5e87f1c37", - "start": { - "$date": "2020-10-13T22:41:12.000Z" - }, - "end": { - "$date": "2020-10-13T22:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "df5f0325-8ee0-4fc9-826b-f4f319fe2d5a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-13T23:01:43.000Z" - }, - "end": { - "$date": "2020-10-14T00:03:25.000Z" - }, - "events": [ - { - "uuid": "29e4b78c-b371-4eec-b39f-3e3025251d44", - "start": { - "$date": "2020-10-13T23:01:43.000Z" - }, - "end": { - "$date": "2020-10-14T00:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d4f28709-1ef4-41ee-a48d-ae0e232f6ad2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T00:10:09.000Z" - }, - "end": { - "$date": "2020-10-14T00:20:29.000Z" - }, - "events": [ - { - "uuid": "99ed1896-77a7-45dd-a8f2-33825ae3220d", - "start": { - "$date": "2020-10-14T00:10:09.000Z" - }, - "end": { - "$date": "2020-10-14T00:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "024d220d-1d7d-49a6-8a2f-3cb7f2fb60d4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-14T00:03:36.000Z" - }, - "end": { - "$date": "2020-10-14T00:08:27.000Z" - }, - "events": [ - { - "uuid": "99084247-b013-42c1-9517-4f16b2130990", - "start": { - "$date": "2020-10-14T00:03:36.000Z" - }, - "end": { - "$date": "2020-10-14T00:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "34a8e257-34f8-4efc-b613-5ca6b1faee11", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T00:20:55.000Z" - }, - "end": { - "$date": "2020-10-14T00:39:00.000Z" - }, - "events": [ - { - "uuid": "3a7124f7-74f0-492e-b06e-2625ab9e44dd", - "start": { - "$date": "2020-10-14T00:20:55.000Z" - }, - "end": { - "$date": "2020-10-14T00:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d579984d-5840-4e0d-bd8d-a8ea757214a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T00:56:27.000Z" - }, - "end": { - "$date": "2020-10-14T02:24:29.000Z" - }, - "events": [ - { - "uuid": "d1ddca99-9359-4fdb-8144-d894d17de274", - "start": { - "$date": "2020-10-14T00:56:27.000Z" - }, - "end": { - "$date": "2020-10-14T01:38:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97625545-ad70-417a-8fba-600756062272", - "start": { - "$date": "2020-10-14T01:38:27.000Z" - }, - "end": { - "$date": "2020-10-14T01:43:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "813f476a-dc1c-45f9-a4c8-a94006e1f07c", - "start": { - "$date": "2020-10-14T01:43:27.000Z" - }, - "end": { - "$date": "2020-10-14T01:53:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cff4f9f1-969f-4862-83a1-62994984562a", - "start": { - "$date": "2020-10-14T01:53:27.000Z" - }, - "end": { - "$date": "2020-10-14T02:20:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "40e9a980-3fc3-4491-a998-405e1a2f88a2", - "start": { - "$date": "2020-10-14T02:20:27.000Z" - }, - "end": { - "$date": "2020-10-14T02:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2dad2ba7-f2ae-4199-86c2-dab2f7b5bf00", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-14T01:03:27.000Z" - }, - "end": { - "$date": "2020-10-14T02:07:41.000Z" - }, - "events": [ - { - "uuid": "be3f8fcf-fc16-48b6-9a83-f52241abb6e1", - "start": { - "$date": "2020-10-14T01:03:27.000Z" - }, - "end": { - "$date": "2020-10-14T02:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0ce20da7-7305-4517-b422-e5cc457eedfe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-14T01:50:48.000Z" - }, - "end": { - "$date": "2020-10-14T03:51:23.000Z" - }, - "events": [ - { - "uuid": "a2c7f7f0-cb8f-4e75-bd4c-837b90d17aa6", - "start": { - "$date": "2020-10-14T01:50:48.000Z" - }, - "end": { - "$date": "2020-10-14T03:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "25420a80-a46b-41ae-b498-3e70212810f0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-14T02:20:42.000Z" - }, - "end": { - "$date": "2020-10-14T02:44:11.000Z" - }, - "events": [ - { - "uuid": "7104178a-86c9-4ec9-a4c4-9772e5345383", - "start": { - "$date": "2020-10-14T02:20:42.000Z" - }, - "end": { - "$date": "2020-10-14T02:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c138b876-1c04-4872-a237-c779d97ce68b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T02:24:50.000Z" - }, - "end": { - "$date": "2020-10-14T02:52:36.000Z" - }, - "events": [ - { - "uuid": "c8447019-12bb-45d7-890e-03852c12a4ae", - "start": { - "$date": "2020-10-14T02:24:50.000Z" - }, - "end": { - "$date": "2020-10-14T02:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b3984f1f-e200-43d2-8fe1-7b04f74bba79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-14T02:59:17.000Z" - }, - "end": { - "$date": "2020-10-14T03:38:56.000Z" - }, - "events": [ - { - "uuid": "59b05f5f-e5cc-4413-9435-5cb847007ee1", - "start": { - "$date": "2020-10-14T02:59:17.000Z" - }, - "end": { - "$date": "2020-10-14T03:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3665461b-eadc-45dd-b166-8f8ddf2c12ed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-14T03:44:06.000Z" - }, - "end": { - "$date": "2020-10-14T04:49:47.000Z" - }, - "events": [ - { - "uuid": "6e805c91-0863-4284-965b-3c8d301636c1", - "start": { - "$date": "2020-10-14T03:44:06.000Z" - }, - "end": { - "$date": "2020-10-14T04:49:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2bb928b3-fd67-45bb-b6a6-c2a9e0053045", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T03:54:52.000Z" - }, - "end": { - "$date": "2020-10-14T03:58:02.000Z" - }, - "events": [ - { - "uuid": "ba2b811a-100c-4692-8bdf-ac3c24ab1d79", - "start": { - "$date": "2020-10-14T03:54:52.000Z" - }, - "end": { - "$date": "2020-10-14T03:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "ec8aa272-0a60-4f6e-ba4c-67b4f47f3095", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-14T04:58:14.000Z" - }, - "end": { - "$date": "2020-10-14T06:32:43.000Z" - }, - "events": [ - { - "uuid": "48df0186-5b8e-4600-97f2-b9e3a080c7e1", - "start": { - "$date": "2020-10-14T04:58:14.000Z" - }, - "end": { - "$date": "2020-10-14T06:32:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bcbcdf39-a18d-4f90-a5f7-88d037f5056f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-14T05:36:07.000Z" - }, - "end": { - "$date": "2020-10-14T05:40:48.000Z" - }, - "events": [ - { - "uuid": "6542db59-e2ef-4c24-a167-4ab2d579b0c7", - "start": { - "$date": "2020-10-14T05:36:07.000Z" - }, - "end": { - "$date": "2020-10-14T05:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d0b22a8f-ffd2-4b91-a73e-d1e4f6eb9008", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-14T14:39:07.000Z" - }, - "end": { - "$date": "2020-10-14T14:40:25.000Z" - }, - "events": [ - { - "uuid": "6731abe5-f7cb-41eb-963e-55dc4b264161", - "start": { - "$date": "2020-10-14T14:39:07.000Z" - }, - "end": { - "$date": "2020-10-14T14:40:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "330e5e77-f34b-41a2-89f7-53dfb900f7ec", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-14T14:40:38.000Z" - }, - "end": { - "$date": "2020-10-14T14:43:45.000Z" - }, - "events": [ - { - "uuid": "ec792f43-fa61-43b8-9560-988af1bfcba3", - "start": { - "$date": "2020-10-14T14:40:38.000Z" - }, - "end": { - "$date": "2020-10-14T14:43:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ea2c56cb-7d3d-48f6-9f52-e764a9e12fdd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-14T14:44:13.000Z" - }, - "end": { - "$date": "2020-10-14T17:04:43.000Z" - }, - "events": [ - { - "uuid": "a9892428-6721-4402-9cf8-972108f132ff", - "start": { - "$date": "2020-10-14T14:44:13.000Z" - }, - "end": { - "$date": "2020-10-14T17:04:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "4b804cd3-9821-44f0-bb6b-cd54c706995d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-14T17:06:33.000Z" - }, - "end": { - "$date": "2020-10-14T17:26:59.000Z" - }, - "events": [ - { - "uuid": "e16c6d24-6458-4e5c-bcb6-045ea8ea381d", - "start": { - "$date": "2020-10-14T17:06:33.000Z" - }, - "end": { - "$date": "2020-10-14T17:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "2b84402d-5e23-427a-9e20-4c05cf2acd81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-14T19:41:01.000Z" - }, - "end": { - "$date": "2020-10-14T19:44:16.000Z" - }, - "events": [ - { - "uuid": "9cbd8df4-7e71-49f5-aa01-e279f6906163", - "start": { - "$date": "2020-10-14T19:41:01.000Z" - }, - "end": { - "$date": "2020-10-14T19:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c1f27f12-a2de-4643-b2d8-c13f5d7b7dd9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T21:19:28.000Z" - }, - "end": { - "$date": "2020-10-14T21:38:06.000Z" - }, - "events": [ - { - "uuid": "c42e01c1-6384-4694-9ca4-e9764486484e", - "start": { - "$date": "2020-10-14T21:19:28.000Z" - }, - "end": { - "$date": "2020-10-14T21:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "beecd677-88f9-43f0-9262-1681e3ce2b7b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T21:56:10.000Z" - }, - "end": { - "$date": "2020-10-14T22:38:39.000Z" - }, - "events": [ - { - "uuid": "b5d1b01f-6be2-40bd-8ad3-13274565bc76", - "start": { - "$date": "2020-10-14T21:56:10.000Z" - }, - "end": { - "$date": "2020-10-14T22:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af63dd9e-624e-4afd-8d96-665acf81e6e6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-14T22:21:01.000Z" - }, - "end": { - "$date": "2020-10-14T22:21:08.000Z" - }, - "events": [ - { - "uuid": "bd3273b5-c488-46ae-a527-eee11d85e802", - "start": { - "$date": "2020-10-14T22:21:01.000Z" - }, - "end": { - "$date": "2020-10-14T22:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "794be415-3137-4072-93b0-4cda941e8372", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-14T22:58:04.000Z" - }, - "end": { - "$date": "2020-10-14T23:35:08.000Z" - }, - "events": [ - { - "uuid": "4e9e6cad-7ebf-40c4-af53-28845ad021da", - "start": { - "$date": "2020-10-14T22:58:04.000Z" - }, - "end": { - "$date": "2020-10-14T23:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59962565-de67-417a-9681-35fe488fb1fc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-14T22:23:24.000Z" - }, - "end": { - "$date": "2020-10-14T22:56:32.000Z" - }, - "events": [ - { - "uuid": "fa7a8882-efcd-4168-95b2-f17d41e925f2", - "start": { - "$date": "2020-10-14T22:23:24.000Z" - }, - "end": { - "$date": "2020-10-14T22:56:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5968dee2-d2db-480c-bda8-b0c4ff161a88", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-14T22:57:26.000Z" - }, - "end": { - "$date": "2020-10-14T23:35:10.000Z" - }, - "events": [ - { - "uuid": "00525c21-8805-4997-add3-72b07805cca4", - "start": { - "$date": "2020-10-14T22:57:26.000Z" - }, - "end": { - "$date": "2020-10-14T23:35:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "36acd9ba-aaed-4dd2-9fbc-e12d5b23cdce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-14T23:17:54.000Z" - }, - "end": { - "$date": "2020-10-14T23:19:49.000Z" - }, - "events": [ - { - "uuid": "8c50571c-ae3a-43c3-bdb8-eae486c81d30", - "start": { - "$date": "2020-10-14T23:17:54.000Z" - }, - "end": { - "$date": "2020-10-14T23:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0f7334e4-bd4b-4843-8d9a-e2fa2d091eed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-14T23:20:09.000Z" - }, - "end": { - "$date": "2020-10-15T02:23:27.000Z" - }, - "events": [ - { - "uuid": "79facb52-2b09-45ca-a27f-af68a68e7316", - "start": { - "$date": "2020-10-14T23:20:09.000Z" - }, - "end": { - "$date": "2020-10-14T23:56:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "482bcb0a-c7e5-4328-bbd5-9a1f201404e1", - "start": { - "$date": "2020-10-14T23:56:09.000Z" - }, - "end": { - "$date": "2020-10-15T00:00:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a26031c1-252e-45b0-9418-6843ab13f2b9", - "start": { - "$date": "2020-10-15T00:00:09.000Z" - }, - "end": { - "$date": "2020-10-15T01:39:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f40de8a-721d-4eed-812c-5cb130d033fa", - "start": { - "$date": "2020-10-15T01:39:09.000Z" - }, - "end": { - "$date": "2020-10-15T01:44:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0130ae8e-163e-4b75-9fea-c5d0c0ae2956", - "start": { - "$date": "2020-10-15T01:44:09.000Z" - }, - "end": { - "$date": "2020-10-15T02:23:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "87c1e358-db20-44d4-86aa-c48a1fd55bb3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T23:21:40.000Z" - }, - "end": { - "$date": "2020-10-14T23:24:08.000Z" - }, - "events": [ - { - "uuid": "5d9108a7-23b5-488b-9513-f91695a262b4", - "start": { - "$date": "2020-10-14T23:21:40.000Z" - }, - "end": { - "$date": "2020-10-14T23:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cd927c76-defe-44a6-bc6c-1dff6422322a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T23:24:20.000Z" - }, - "end": { - "$date": "2020-10-14T23:36:24.000Z" - }, - "events": [ - { - "uuid": "baef0c1d-36c0-4a5a-a639-fd3afcbe8071", - "start": { - "$date": "2020-10-14T23:24:20.000Z" - }, - "end": { - "$date": "2020-10-14T23:36:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfdb8c9d-68fb-4457-a55e-cb4347116970", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-14T23:38:13.000Z" - }, - "end": { - "$date": "2020-10-15T00:05:24.000Z" - }, - "events": [ - { - "uuid": "43ca8724-85d3-46bf-93d9-64fe1b7aaf5d", - "start": { - "$date": "2020-10-14T23:38:13.000Z" - }, - "end": { - "$date": "2020-10-15T00:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac859969-37c9-41ea-b400-ce8547f51d06", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-14T23:37:39.000Z" - }, - "end": { - "$date": "2020-10-15T00:05:15.000Z" - }, - "events": [ - { - "uuid": "76039fb2-4eea-4874-badd-5e3750fce1da", - "start": { - "$date": "2020-10-14T23:37:39.000Z" - }, - "end": { - "$date": "2020-10-15T00:05:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8d0e102a-7e19-4e13-8c55-fdb4a59d780e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-14T23:43:38.000Z" - }, - "end": { - "$date": "2020-10-15T00:22:01.000Z" - }, - "events": [ - { - "uuid": "5df706c8-db57-42a9-822c-988222260ea5", - "start": { - "$date": "2020-10-14T23:43:38.000Z" - }, - "end": { - "$date": "2020-10-15T00:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6eeecde3-9087-4ef8-a6a3-0b8caddce50d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-14T23:50:54.000Z" - }, - "end": { - "$date": "2020-10-15T00:23:19.000Z" - }, - "events": [ - { - "uuid": "98ece0d8-ad32-42cb-b7e8-0daf86c0a1ee", - "start": { - "$date": "2020-10-14T23:50:54.000Z" - }, - "end": { - "$date": "2020-10-15T00:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "46e60496-346e-4cf2-9ad7-eb8ae8e9874d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-14T23:58:28.000Z" - }, - "end": { - "$date": "2020-10-15T01:55:48.000Z" - }, - "events": [ - { - "uuid": "ac1958d0-a5ae-4f4b-85ae-e28bf04d9a12", - "start": { - "$date": "2020-10-14T23:58:28.000Z" - }, - "end": { - "$date": "2020-10-15T00:42:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0bfc20a6-cc43-4e6b-bb5f-995adb8083f5", - "start": { - "$date": "2020-10-15T00:42:28.000Z" - }, - "end": { - "$date": "2020-10-15T00:47:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d0192e8-2553-48d6-ae6c-12002d96c056", - "start": { - "$date": "2020-10-15T00:47:28.000Z" - }, - "end": { - "$date": "2020-10-15T00:57:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c79a9163-7c4b-4a50-b31f-cf9db84a2839", - "start": { - "$date": "2020-10-15T00:57:28.000Z" - }, - "end": { - "$date": "2020-10-15T01:14:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "89dec968-38c5-4ae5-8d3d-e493da79bed2", - "start": { - "$date": "2020-10-15T01:14:28.000Z" - }, - "end": { - "$date": "2020-10-15T01:24:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "775ee93c-a9c9-415c-b80f-b6b96a05a86e", - "start": { - "$date": "2020-10-15T01:24:28.000Z" - }, - "end": { - "$date": "2020-10-15T01:50:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "401483df-12eb-4f64-9f7f-cf129fce2e04", - "start": { - "$date": "2020-10-15T01:50:28.000Z" - }, - "end": { - "$date": "2020-10-15T01:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64a24987-b249-4f04-8da1-3f905807acbd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-15T00:08:13.000Z" - }, - "end": { - "$date": "2020-10-15T00:25:59.000Z" - }, - "events": [ - { - "uuid": "3069eb46-af0f-4407-bce8-425920f6a482", - "start": { - "$date": "2020-10-15T00:08:13.000Z" - }, - "end": { - "$date": "2020-10-15T00:25:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbdd23a4-28dc-4001-9bab-7c5205b61efe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-15T00:08:10.000Z" - }, - "end": { - "$date": "2020-10-15T00:26:02.000Z" - }, - "events": [ - { - "uuid": "9cf1c689-7c12-4bd0-a4c7-32738b2168a2", - "start": { - "$date": "2020-10-15T00:08:10.000Z" - }, - "end": { - "$date": "2020-10-15T00:26:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1359d6c-867b-4a15-8268-d342b3a7e66a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-15T00:28:34.000Z" - }, - "end": { - "$date": "2020-10-15T00:45:20.000Z" - }, - "events": [ - { - "uuid": "32160339-fda0-4090-b102-8ff847620d49", - "start": { - "$date": "2020-10-15T00:28:34.000Z" - }, - "end": { - "$date": "2020-10-15T00:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "231ecf89-1042-47e6-ba9c-dad480486c42", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-15T00:28:30.000Z" - }, - "end": { - "$date": "2020-10-15T00:45:22.000Z" - }, - "events": [ - { - "uuid": "5f9277c7-8608-4942-ab6a-a7f9ad587e51", - "start": { - "$date": "2020-10-15T00:28:30.000Z" - }, - "end": { - "$date": "2020-10-15T00:45:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "75071964-5263-4916-8fe9-5d6bdeacbbc4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-15T01:58:15.000Z" - }, - "end": { - "$date": "2020-10-15T04:28:02.000Z" - }, - "events": [ - { - "uuid": "5dc4bf99-6b71-4fa6-8d2a-0df9621376b1", - "start": { - "$date": "2020-10-15T01:58:15.000Z" - }, - "end": { - "$date": "2020-10-15T04:28:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "06c89c3b-3a30-4d73-bb9f-30158c88391f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-15T02:00:18.000Z" - }, - "end": { - "$date": "2020-10-15T04:28:08.000Z" - }, - "events": [ - { - "uuid": "8b6efec9-fefd-433b-a584-f7e54f69aedd", - "start": { - "$date": "2020-10-15T02:00:18.000Z" - }, - "end": { - "$date": "2020-10-15T04:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30a277f3-6db7-42b8-b33c-38d0e57e4613", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-15T02:14:29.000Z" - }, - "end": { - "$date": "2020-10-15T02:50:41.000Z" - }, - "events": [ - { - "uuid": "54f110f1-4110-47d2-bf0e-1d57a9e506f3", - "start": { - "$date": "2020-10-15T02:14:29.000Z" - }, - "end": { - "$date": "2020-10-15T02:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "de5b625b-6f68-4bb1-95a1-4f1157176dd8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-15T02:28:14.000Z" - }, - "end": { - "$date": "2020-10-15T04:04:59.000Z" - }, - "events": [ - { - "uuid": "3113969b-ddd9-4f98-9807-ec962cb5fbd1", - "start": { - "$date": "2020-10-15T02:28:14.000Z" - }, - "end": { - "$date": "2020-10-15T04:04:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "6bff872f-e42a-4984-a156-b2e8f2559c03", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-15T02:31:13.000Z" - }, - "end": { - "$date": "2020-10-15T02:39:58.000Z" - }, - "events": [ - { - "uuid": "34fd6d58-a85b-4373-8529-6e3ea7274002", - "start": { - "$date": "2020-10-15T02:31:13.000Z" - }, - "end": { - "$date": "2020-10-15T02:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04819407-8fe1-46d5-a109-666e1f2bbfae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-15T03:01:06.000Z" - }, - "end": { - "$date": "2020-10-15T03:36:42.000Z" - }, - "events": [ - { - "uuid": "34f6724e-00a7-40a1-abd7-d41544c8c4ae", - "start": { - "$date": "2020-10-15T03:01:06.000Z" - }, - "end": { - "$date": "2020-10-15T03:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a9daad0-0473-42ba-a0dd-c71d1aa3355f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-15T03:36:40.000Z" - }, - "end": { - "$date": "2020-10-15T03:38:11.000Z" - }, - "events": [ - { - "uuid": "906b98c1-2088-4472-840a-7f1b5f582ce2", - "start": { - "$date": "2020-10-15T03:36:40.000Z" - }, - "end": { - "$date": "2020-10-15T03:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b456f2e-a816-450d-885f-78ad13d5256b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-15T03:37:07.000Z" - }, - "end": { - "$date": "2020-10-15T04:13:09.000Z" - }, - "events": [ - { - "uuid": "3b67e7bf-5f7b-4359-a30c-71ecd1b0cb1b", - "start": { - "$date": "2020-10-15T03:37:07.000Z" - }, - "end": { - "$date": "2020-10-15T04:02:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6fa10744-046c-4085-a830-3f75a70a1b41", - "start": { - "$date": "2020-10-15T04:02:07.000Z" - }, - "end": { - "$date": "2020-10-15T04:03:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4993d8f5-af88-47e4-a08a-998fd39fcf14", - "start": { - "$date": "2020-10-15T04:03:07.000Z" - }, - "end": { - "$date": "2020-10-15T04:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ae35599-4854-42ab-b46f-0f5e6505cf72", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-15T03:38:22.000Z" - }, - "end": { - "$date": "2020-10-15T06:09:49.000Z" - }, - "events": [ - { - "uuid": "8d87d9cf-78fd-42dd-97ab-43158fd2ad08", - "start": { - "$date": "2020-10-15T03:38:22.000Z" - }, - "end": { - "$date": "2020-10-15T06:09:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da99fbb8-c0e8-467c-8d6f-97e6c858432d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-15T05:39:49.000Z" - }, - "end": { - "$date": "2020-10-15T06:14:01.000Z" - }, - "events": [ - { - "uuid": "9c188fa1-3094-4c05-b31c-0d5fd9b72220", - "start": { - "$date": "2020-10-15T05:39:49.000Z" - }, - "end": { - "$date": "2020-10-15T06:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec8263b0-d942-4a12-9f7c-4abbb872e1b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-15T06:14:04.000Z" - }, - "end": { - "$date": "2020-10-15T06:39:00.000Z" - }, - "events": [ - { - "uuid": "18472503-8761-4e27-9a03-ae3c60804267", - "start": { - "$date": "2020-10-15T06:14:04.000Z" - }, - "end": { - "$date": "2020-10-15T06:39:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dfb2d71e-d77d-4fa9-856d-e6428d8c3e26", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-15T06:18:56.000Z" - }, - "end": { - "$date": "2020-10-15T06:39:30.000Z" - }, - "events": [ - { - "uuid": "cf55f1d9-272d-484f-af80-f897ced39312", - "start": { - "$date": "2020-10-15T06:18:56.000Z" - }, - "end": { - "$date": "2020-10-15T06:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "c788900a-bd19-41bd-b246-51174b06efee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-15T14:47:49.000Z" - }, - "end": { - "$date": "2020-10-15T14:50:46.000Z" - }, - "events": [ - { - "uuid": "416cc019-9b40-480d-9716-b1084ae13374", - "start": { - "$date": "2020-10-15T14:47:49.000Z" - }, - "end": { - "$date": "2020-10-15T14:50:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "63ea6d71-9e26-4923-a34c-92b4a917d027", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-15T16:11:22.000Z" - }, - "end": { - "$date": "2020-10-15T16:43:33.000Z" - }, - "events": [ - { - "uuid": "d505b775-4cc7-4a86-b3af-849c9b35c25d", - "start": { - "$date": "2020-10-15T16:11:22.000Z" - }, - "end": { - "$date": "2020-10-15T16:43:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "fdea33b1-7587-4193-84c7-994cb58a52eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-15T20:48:30.000Z" - }, - "end": { - "$date": "2020-10-15T21:00:28.000Z" - }, - "events": [ - { - "uuid": "95d63dcc-f83b-4de8-b160-46992e6e37e8", - "start": { - "$date": "2020-10-15T20:48:30.000Z" - }, - "end": { - "$date": "2020-10-15T21:00:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6c2357cb-1fc9-4233-9b45-d35b4d0ac5f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-15T21:38:18.000Z" - }, - "end": { - "$date": "2020-10-15T21:54:57.000Z" - }, - "events": [ - { - "uuid": "eb2d5d74-08e2-4d3c-8e33-1652a65d6fef", - "start": { - "$date": "2020-10-15T21:38:18.000Z" - }, - "end": { - "$date": "2020-10-15T21:54:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "bd899c9b-3ae4-49cc-b639-fb253b5c1511", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-15T21:39:41.000Z" - }, - "end": { - "$date": "2020-10-15T22:54:47.000Z" - }, - "events": [ - { - "uuid": "ed33fec9-488e-4aaa-afbf-1888d6b8198c", - "start": { - "$date": "2020-10-15T21:39:41.000Z" - }, - "end": { - "$date": "2020-10-15T22:54:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f9fdf7a4-645f-4434-b265-060feeb105f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-15T22:24:16.000Z" - }, - "end": { - "$date": "2020-10-15T23:03:51.000Z" - }, - "events": [ - { - "uuid": "2053b559-d18f-437e-abb6-3cda0792f538", - "start": { - "$date": "2020-10-15T22:24:16.000Z" - }, - "end": { - "$date": "2020-10-15T23:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "657ffdbe-ff08-417d-b12f-abd2c459b622", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-15T23:24:16.000Z" - }, - "end": { - "$date": "2020-10-15T23:25:30.000Z" - }, - "events": [ - { - "uuid": "2c3d0621-ddf6-48a4-b486-e312f94e45ec", - "start": { - "$date": "2020-10-15T23:24:16.000Z" - }, - "end": { - "$date": "2020-10-15T23:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "064499af-df1d-4cc4-96ef-702efe24edaa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-15T23:46:59.000Z" - }, - "end": { - "$date": "2020-10-16T00:10:21.000Z" - }, - "events": [ - { - "uuid": "4e2e566a-d1b1-4f64-ac3a-0740b71f0bfd", - "start": { - "$date": "2020-10-15T23:46:59.000Z" - }, - "end": { - "$date": "2020-10-16T00:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0f32ede2-ae1c-4d2c-9c46-4abde40c3565", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-15T23:47:33.000Z" - }, - "end": { - "$date": "2020-10-16T00:17:47.000Z" - }, - "events": [ - { - "uuid": "9344a266-6f3a-411e-9365-610b6d437248", - "start": { - "$date": "2020-10-15T23:47:33.000Z" - }, - "end": { - "$date": "2020-10-16T00:17:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "86c4f2ac-48b0-44e9-b73a-485b8cf27b02", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-15T23:59:51.000Z" - }, - "end": { - "$date": "2020-10-16T00:17:00.000Z" - }, - "events": [ - { - "uuid": "6dcbfce4-b009-4e09-b531-339ed73fd4cb", - "start": { - "$date": "2020-10-15T23:59:51.000Z" - }, - "end": { - "$date": "2020-10-16T00:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d618cb2d-12ca-4617-beb7-2070d9eef143", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-16T00:15:46.000Z" - }, - "end": { - "$date": "2020-10-16T00:37:27.000Z" - }, - "events": [ - { - "uuid": "7643b87e-9b27-4521-8721-cd1d78b59718", - "start": { - "$date": "2020-10-16T00:15:46.000Z" - }, - "end": { - "$date": "2020-10-16T00:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7c1fb7e6-9429-4798-8d41-742a0cf0b0a7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-16T00:47:55.000Z" - }, - "end": { - "$date": "2020-10-16T01:16:01.000Z" - }, - "events": [ - { - "uuid": "a777f783-5b54-43bf-8a8b-55f5c0abad23", - "start": { - "$date": "2020-10-16T00:47:55.000Z" - }, - "end": { - "$date": "2020-10-16T01:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e411e078-8ecb-450c-a5a9-3376dfe574db", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-16T00:48:31.000Z" - }, - "end": { - "$date": "2020-10-16T01:19:20.000Z" - }, - "events": [ - { - "uuid": "4f9e2424-3801-46f6-abe1-96d59596aeea", - "start": { - "$date": "2020-10-16T00:48:31.000Z" - }, - "end": { - "$date": "2020-10-16T01:19:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2a42e31f-666a-4f08-81f4-0ea2c313948e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-16T01:29:33.000Z" - }, - "end": { - "$date": "2020-10-16T04:17:35.000Z" - }, - "events": [ - { - "uuid": "9ea78832-de71-4869-8b01-86dcd2e7557a", - "start": { - "$date": "2020-10-16T01:29:33.000Z" - }, - "end": { - "$date": "2020-10-16T04:17:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ebff2da8-2c45-4e71-9b00-2935aaa59402", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-16T01:43:59.000Z" - }, - "end": { - "$date": "2020-10-16T02:16:42.000Z" - }, - "events": [ - { - "uuid": "d17ffb48-df08-4f45-b78e-a9bada0bae9d", - "start": { - "$date": "2020-10-16T01:43:59.000Z" - }, - "end": { - "$date": "2020-10-16T02:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "684e0ede-b40c-4da4-b9b7-5ba5cf38c6c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T02:15:59.000Z" - }, - "end": { - "$date": "2020-10-16T02:17:44.000Z" - }, - "events": [ - { - "uuid": "96052f3b-a0ec-4226-9683-c988088e2a99", - "start": { - "$date": "2020-10-16T02:15:59.000Z" - }, - "end": { - "$date": "2020-10-16T02:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f01fe7d-73ab-4b7f-9c35-78214269fce6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T02:48:14.000Z" - }, - "end": { - "$date": "2020-10-16T03:22:14.000Z" - }, - "events": [ - { - "uuid": "3ed32915-11cc-4768-be92-64ebf8f4b900", - "start": { - "$date": "2020-10-16T02:48:14.000Z" - }, - "end": { - "$date": "2020-10-16T03:22:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ba10b7c9-380a-4862-a11d-a480dbef092c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-16T02:40:42.000Z" - }, - "end": { - "$date": "2020-10-16T02:46:18.000Z" - }, - "events": [ - { - "uuid": "60eff568-be9f-4274-926f-22bc8dd25590", - "start": { - "$date": "2020-10-16T02:40:42.000Z" - }, - "end": { - "$date": "2020-10-16T02:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6ffeae94-5d3b-4914-81f9-afa0652e3541", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-16T02:48:16.000Z" - }, - "end": { - "$date": "2020-10-16T04:39:54.000Z" - }, - "events": [ - { - "uuid": "051f01c3-758d-413d-ac40-9c9f74f775f3", - "start": { - "$date": "2020-10-16T02:48:16.000Z" - }, - "end": { - "$date": "2020-10-16T04:39:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bb68308e-ef4a-47af-aee7-86b052706ed2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-16T02:49:37.000Z" - }, - "end": { - "$date": "2020-10-16T04:37:58.000Z" - }, - "events": [ - { - "uuid": "835813ba-690d-4cc4-b8f7-7256311c1f5c", - "start": { - "$date": "2020-10-16T02:49:37.000Z" - }, - "end": { - "$date": "2020-10-16T04:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65184d21-f033-451c-b1f9-8f692954aae2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-16T03:13:09.000Z" - }, - "end": { - "$date": "2020-10-16T03:30:34.000Z" - }, - "events": [ - { - "uuid": "df7ebfeb-677b-4cbf-96c3-72439c32b80d", - "start": { - "$date": "2020-10-16T03:13:09.000Z" - }, - "end": { - "$date": "2020-10-16T03:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3cb9203-7eff-48da-93c4-19c0b2684d85", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T03:30:35.000Z" - }, - "end": { - "$date": "2020-10-16T04:12:06.000Z" - }, - "events": [ - { - "uuid": "290d333c-30ec-4038-b139-3ea9053a5c1c", - "start": { - "$date": "2020-10-16T03:30:35.000Z" - }, - "end": { - "$date": "2020-10-16T04:12:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dafb709b-87c6-4212-9430-69a02d130bb6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-16T03:30:28.000Z" - }, - "end": { - "$date": "2020-10-16T04:12:09.000Z" - }, - "events": [ - { - "uuid": "957ed795-cae0-4cc1-8d59-c87d08bfd525", - "start": { - "$date": "2020-10-16T03:30:28.000Z" - }, - "end": { - "$date": "2020-10-16T04:12:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d7c73e5-b65c-4624-b8e3-006f9e23cff1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-16T03:38:01.000Z" - }, - "end": { - "$date": "2020-10-16T04:01:26.000Z" - }, - "events": [ - { - "uuid": "9aec2c45-9d57-41a3-8d0a-b3bc11a0f95f", - "start": { - "$date": "2020-10-16T03:38:01.000Z" - }, - "end": { - "$date": "2020-10-16T04:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d43b8f9-d7ae-40ad-8c5f-beb04910ba86", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-16T04:05:01.000Z" - }, - "end": { - "$date": "2020-10-16T04:23:36.000Z" - }, - "events": [ - { - "uuid": "86c2e924-a382-49c9-ab91-b1d1f2c4202e", - "start": { - "$date": "2020-10-16T04:05:01.000Z" - }, - "end": { - "$date": "2020-10-16T04:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f7f0628-12de-476c-9c4b-7c61b2df223b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T04:12:21.000Z" - }, - "end": { - "$date": "2020-10-16T04:13:27.000Z" - }, - "events": [ - { - "uuid": "4820f813-d077-454e-add9-338d9fdd8929", - "start": { - "$date": "2020-10-16T04:12:21.000Z" - }, - "end": { - "$date": "2020-10-16T04:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f9fd943-44f7-47f9-affe-0584eb67bec5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-16T04:13:27.000Z" - }, - "end": { - "$date": "2020-10-16T04:15:31.000Z" - }, - "events": [ - { - "uuid": "6a394b67-0974-4dfa-8e25-639cb856bed7", - "start": { - "$date": "2020-10-16T04:13:27.000Z" - }, - "end": { - "$date": "2020-10-16T04:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b3311a5-3987-4500-9668-080023767623", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-16T04:27:58.000Z" - }, - "end": { - "$date": "2020-10-16T04:46:53.000Z" - }, - "events": [ - { - "uuid": "a1b09997-fc60-4647-8c5e-0d32e1ad736b", - "start": { - "$date": "2020-10-16T04:27:58.000Z" - }, - "end": { - "$date": "2020-10-16T04:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c875ffe5-4acf-4a79-82dd-c38282054144", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-16T04:25:47.000Z" - }, - "end": { - "$date": "2020-10-16T05:06:38.000Z" - }, - "events": [ - { - "uuid": "18d06764-af57-40b6-88fc-23a0dca26ac1", - "start": { - "$date": "2020-10-16T04:25:47.000Z" - }, - "end": { - "$date": "2020-10-16T05:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9ba72edc-4255-40b6-b868-f2617e5b4ec3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-16T04:39:50.000Z" - }, - "end": { - "$date": "2020-10-16T06:59:43.000Z" - }, - "events": [ - { - "uuid": "a1fa593f-5d1a-4503-b0e8-d59075698d9d", - "start": { - "$date": "2020-10-16T04:39:50.000Z" - }, - "end": { - "$date": "2020-10-16T06:59:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b2be7d5-6007-45fb-b3af-24a0f21c5173", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-16T05:12:51.000Z" - }, - "end": { - "$date": "2020-10-16T05:40:57.000Z" - }, - "events": [ - { - "uuid": "7e0d394b-a6c0-4159-a1c2-febba18cacc3", - "start": { - "$date": "2020-10-16T05:12:51.000Z" - }, - "end": { - "$date": "2020-10-16T05:40:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e841b145-82c8-4a16-bb4a-c64857f740ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-16T05:07:10.000Z" - }, - "end": { - "$date": "2020-10-16T05:08:58.000Z" - }, - "events": [ - { - "uuid": "c0bf14b5-447e-4c6c-bf96-702993fc5ceb", - "start": { - "$date": "2020-10-16T05:07:10.000Z" - }, - "end": { - "$date": "2020-10-16T05:08:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ef823fe8-407f-4a30-8b59-2caaee14d0ca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-16T06:10:32.000Z" - }, - "end": { - "$date": "2020-10-16T07:35:04.000Z" - }, - "events": [ - { - "uuid": "b3133002-e525-42b7-9dd7-47d6ac108291", - "start": { - "$date": "2020-10-16T06:10:32.000Z" - }, - "end": { - "$date": "2020-10-16T07:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74a7c481-e22e-44a6-a088-3520237f1b9f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T13:51:10.000Z" - }, - "end": { - "$date": "2020-10-16T14:39:46.000Z" - }, - "events": [ - { - "uuid": "faa661c2-96c7-4728-9a99-e89d6e8aca03", - "start": { - "$date": "2020-10-16T13:51:10.000Z" - }, - "end": { - "$date": "2020-10-16T14:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2734a1c6-d4ff-45c8-9a0a-d4d52f793bbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T15:04:58.000Z" - }, - "end": { - "$date": "2020-10-16T15:30:29.000Z" - }, - "events": [ - { - "uuid": "760f5db7-eac5-4b72-a660-8d84ab57f838", - "start": { - "$date": "2020-10-16T15:04:58.000Z" - }, - "end": { - "$date": "2020-10-16T15:30:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "149306fe-74fc-4df7-9040-7c8f424ce444", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T15:33:04.000Z" - }, - "end": { - "$date": "2020-10-16T15:56:43.000Z" - }, - "events": [ - { - "uuid": "e907eb07-ed8a-4144-b57d-5be14c051192", - "start": { - "$date": "2020-10-16T15:33:04.000Z" - }, - "end": { - "$date": "2020-10-16T15:56:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d65bda8-1981-4f57-a6f9-b949ec3deefc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T16:08:44.000Z" - }, - "end": { - "$date": "2020-10-16T18:47:25.000Z" - }, - "events": [ - { - "uuid": "e22b992c-8606-40b0-ab3d-e110e036e760", - "start": { - "$date": "2020-10-16T16:08:44.000Z" - }, - "end": { - "$date": "2020-10-16T18:02:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d95f271-a0de-41a6-8fa1-60076f0eb27f", - "start": { - "$date": "2020-10-16T18:02:44.000Z" - }, - "end": { - "$date": "2020-10-16T18:20:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6852fd72-d849-4a50-a26a-c0fcef272765", - "start": { - "$date": "2020-10-16T18:20:44.000Z" - }, - "end": { - "$date": "2020-10-16T18:47:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "dba7092d-7043-4d91-bf43-0f7e87ad7c6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-16T16:35:19.000Z" - }, - "end": { - "$date": "2020-10-16T19:52:24.000Z" - }, - "events": [ - { - "uuid": "f5e9ec43-6890-4994-a99e-22f235b599ab", - "start": { - "$date": "2020-10-16T16:35:19.000Z" - }, - "end": { - "$date": "2020-10-16T19:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "ba029332-4f51-4afc-9931-89cc8faf74fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T18:56:39.000Z" - }, - "end": { - "$date": "2020-10-16T18:58:15.000Z" - }, - "events": [ - { - "uuid": "a4ea94ff-0e88-4bb7-8f7f-c5892f34d20b", - "start": { - "$date": "2020-10-16T18:56:39.000Z" - }, - "end": { - "$date": "2020-10-16T18:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "1f3b6453-cbc1-45bd-a619-54d10e61a317", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T20:09:50.000Z" - }, - "end": { - "$date": "2020-10-16T20:36:03.000Z" - }, - "events": [ - { - "uuid": "8b6f5c2e-ea6a-4498-ab82-053286eeb84d", - "start": { - "$date": "2020-10-16T20:09:50.000Z" - }, - "end": { - "$date": "2020-10-16T20:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44f1ff02-6341-42dc-a81b-cea4182e9fdc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T20:58:55.000Z" - }, - "end": { - "$date": "2020-10-16T21:37:51.000Z" - }, - "events": [ - { - "uuid": "c067c92a-36ef-4410-8a02-59d38bf28884", - "start": { - "$date": "2020-10-16T20:58:55.000Z" - }, - "end": { - "$date": "2020-10-16T21:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ced41e28-f033-4e4c-a1fb-097c33ceae18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-16T21:03:17.000Z" - }, - "end": { - "$date": "2020-10-16T21:08:08.000Z" - }, - "events": [ - { - "uuid": "a3f17ff6-7976-435c-a15d-cdd704e442e9", - "start": { - "$date": "2020-10-16T21:03:17.000Z" - }, - "end": { - "$date": "2020-10-16T21:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e9c280a3-5bab-470e-b1ee-a9626e364c55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-16T21:13:58.000Z" - }, - "end": { - "$date": "2020-10-17T01:48:59.000Z" - }, - "events": [ - { - "uuid": "2d7caeb6-618d-455c-8a42-928a5380cedd", - "start": { - "$date": "2020-10-16T21:13:58.000Z" - }, - "end": { - "$date": "2020-10-17T01:48:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "535b47ef-450d-4acf-a634-aa85620805bb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-16T22:02:45.000Z" - }, - "end": { - "$date": "2020-10-16T23:24:37.000Z" - }, - "events": [ - { - "uuid": "b76de52f-82a6-407c-83d1-ff55db6c5fa8", - "start": { - "$date": "2020-10-16T22:02:45.000Z" - }, - "end": { - "$date": "2020-10-16T23:24:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cb1bee9-ba32-40d3-8761-327b398ea974", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-16T22:43:49.000Z" - }, - "end": { - "$date": "2020-10-16T23:05:49.000Z" - }, - "events": [ - { - "uuid": "f05a556f-2b3c-4a7a-865e-f497569ffc5d", - "start": { - "$date": "2020-10-16T22:43:49.000Z" - }, - "end": { - "$date": "2020-10-16T23:05:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "1e98a9a8-a42d-47c1-b24b-2a3da2350214", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T22:47:59.000Z" - }, - "end": { - "$date": "2020-10-16T23:04:30.000Z" - }, - "events": [ - { - "uuid": "41eabf98-ce44-4cb4-9ab1-0f885547ac62", - "start": { - "$date": "2020-10-16T22:47:59.000Z" - }, - "end": { - "$date": "2020-10-16T23:04:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10d11a8e-e732-4676-8eec-944ad7f35253", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-16T23:20:35.000Z" - }, - "end": { - "$date": "2020-10-16T23:33:46.000Z" - }, - "events": [ - { - "uuid": "bab698b7-d6ca-4102-9aed-252402ecfc31", - "start": { - "$date": "2020-10-16T23:20:35.000Z" - }, - "end": { - "$date": "2020-10-16T23:33:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7603535-38aa-4575-93bc-610c66a2b4c0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-16T23:08:58.000Z" - }, - "end": { - "$date": "2020-10-16T23:40:40.000Z" - }, - "events": [ - { - "uuid": "037b6b72-f03e-4db1-af5e-b9a3abcd4d5a", - "start": { - "$date": "2020-10-16T23:08:58.000Z" - }, - "end": { - "$date": "2020-10-16T23:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbeb4c45-88fd-4bf2-b3eb-27ead81598ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-16T23:09:00.000Z" - }, - "end": { - "$date": "2020-10-16T23:40:41.000Z" - }, - "events": [ - { - "uuid": "f91b2fac-564e-41e0-a133-756b1eb98584", - "start": { - "$date": "2020-10-16T23:09:00.000Z" - }, - "end": { - "$date": "2020-10-16T23:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "7abde27a-5f22-47dc-b7a8-ffbf3c20937f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-16T23:25:02.000Z" - }, - "end": { - "$date": "2020-10-17T00:15:39.000Z" - }, - "events": [ - { - "uuid": "7374d03a-918d-4eb3-9a13-2f3587ed4960", - "start": { - "$date": "2020-10-16T23:25:02.000Z" - }, - "end": { - "$date": "2020-10-17T00:15:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8782df8d-1c9f-4649-a9fc-ea1d86ec9229", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-17T00:03:01.000Z" - }, - "end": { - "$date": "2020-10-17T01:06:36.000Z" - }, - "events": [ - { - "uuid": "5db84f0e-886e-4c27-a197-b3707523f1ad", - "start": { - "$date": "2020-10-17T00:03:01.000Z" - }, - "end": { - "$date": "2020-10-17T01:02:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "65f013f8-1350-4af5-84ed-0e1c1d6e644b", - "start": { - "$date": "2020-10-17T01:02:01.000Z" - }, - "end": { - "$date": "2020-10-17T01:06:36.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "619764db-3e91-4202-8a17-debc4598653d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-17T00:48:24.000Z" - }, - "end": { - "$date": "2020-10-17T01:35:36.000Z" - }, - "events": [ - { - "uuid": "c8804301-e824-4cc9-9bc2-5c18fd107def", - "start": { - "$date": "2020-10-17T00:48:24.000Z" - }, - "end": { - "$date": "2020-10-17T01:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "5e8601e4-0f7c-4381-a71c-932efcde5205", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T00:58:37.000Z" - }, - "end": { - "$date": "2020-10-17T01:05:53.000Z" - }, - "events": [ - { - "uuid": "15c826b9-b5e4-4522-be68-9823914a24a9", - "start": { - "$date": "2020-10-17T00:58:37.000Z" - }, - "end": { - "$date": "2020-10-17T01:05:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f2374f58-e4c0-4ee6-8e50-009c427a7ff4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-17T02:05:43.000Z" - }, - "end": { - "$date": "2020-10-17T06:04:51.000Z" - }, - "events": [ - { - "uuid": "c99ae664-91db-4a87-b344-441bb3b4c2f5", - "start": { - "$date": "2020-10-17T02:05:43.000Z" - }, - "end": { - "$date": "2020-10-17T06:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6307b6c5-2677-48ee-849f-37cd7f885a67", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T04:15:59.000Z" - }, - "end": { - "$date": "2020-10-17T04:41:36.000Z" - }, - "events": [ - { - "uuid": "31a2dfaa-d2ae-4c28-8414-73aa1e833cee", - "start": { - "$date": "2020-10-17T04:15:59.000Z" - }, - "end": { - "$date": "2020-10-17T04:58:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "96b5d950-a0b4-4d0a-95eb-c9fc8f9d205d", - "start": { - "$date": "2020-10-17T04:58:59.000Z" - }, - "end": { - "$date": "2020-10-17T05:35:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3020a2fc-30de-4714-ab72-9201f04acda9", - "start": { - "$date": "2020-10-17T05:35:59.000Z" - }, - "end": { - "$date": "2020-10-17T05:37:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09624dae-7c4d-48b4-ad41-2bba24f93e2f", - "start": { - "$date": "2020-10-17T05:37:59.000Z" - }, - "end": { - "$date": "2020-10-17T05:53:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "71fac0e2-e087-4262-85e1-9d29b200eab8", - "start": { - "$date": "2020-10-17T05:53:59.000Z" - }, - "end": { - "$date": "2020-10-17T05:58:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7077c498-f7a9-4a21-b13a-34992055f6c9", - "start": { - "$date": "2020-10-17T05:58:59.000Z" - }, - "end": { - "$date": "2020-10-17T06:03:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41405ece-64f6-450c-956b-9b57d7566247", - "start": { - "$date": "2020-10-17T06:03:59.000Z" - }, - "end": { - "$date": "2020-10-17T06:07:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d76ae01-4449-4ffd-88fe-019be0df47a5", - "start": { - "$date": "2020-10-17T06:07:59.000Z" - }, - "end": { - "$date": "2020-10-17T06:08:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6fc7158-9185-4f17-a52c-2167b536d060", - "start": { - "$date": "2020-10-17T06:08:59.000Z" - }, - "end": { - "$date": "2020-10-17T06:10:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5c9e929-abe0-4be3-ad89-e920a7d91141", - "start": { - "$date": "2020-10-17T06:10:59.000Z" - }, - "end": { - "$date": "2020-10-17T06:14:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "304639c8-0b72-4bda-8de6-b0fc4c4bfd74", - "start": { - "$date": "2020-10-17T06:14:59.000Z" - }, - "end": { - "$date": "2020-10-17T04:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b6e18e3e-17ce-4665-b02b-83f3239ecb98", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-17T02:16:54.000Z" - }, - "end": { - "$date": "2020-10-17T05:04:28.000Z" - }, - "events": [ - { - "uuid": "3a879ac9-f323-4339-9a68-f3c4e331ccf1", - "start": { - "$date": "2020-10-17T02:16:54.000Z" - }, - "end": { - "$date": "2020-10-17T05:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "01b7f191-06f6-4f5f-9bdb-0c601b51074c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T02:47:58.000Z" - }, - "end": { - "$date": "2020-10-17T02:48:59.000Z" - }, - "events": [ - { - "uuid": "08d9cd44-3936-4903-903d-8aa2bfea672e", - "start": { - "$date": "2020-10-17T02:47:58.000Z" - }, - "end": { - "$date": "2020-10-17T02:48:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d6d26755-73a6-4669-a3db-3c7db9e81528", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T02:49:28.000Z" - }, - "end": { - "$date": "2020-10-17T03:34:12.000Z" - }, - "events": [ - { - "uuid": "2f7b81c1-1809-46f3-bc4d-852382b00301", - "start": { - "$date": "2020-10-17T02:49:28.000Z" - }, - "end": { - "$date": "2020-10-17T03:34:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e33d3241-0001-4c32-9c32-28a05d5477e4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-17T03:21:34.000Z" - }, - "end": { - "$date": "2020-10-17T04:28:31.000Z" - }, - "events": [ - { - "uuid": "4480b7da-3345-4aac-8146-294d90609783", - "start": { - "$date": "2020-10-17T03:21:34.000Z" - }, - "end": { - "$date": "2020-10-17T04:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "28f9cbd5-ced5-422d-8e09-40f4e741e012", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T04:01:49.000Z" - }, - "end": { - "$date": "2020-10-17T04:47:08.000Z" - }, - "events": [ - { - "uuid": "8d4fce90-b02d-446a-8860-9d7a759caa24", - "start": { - "$date": "2020-10-17T04:01:49.000Z" - }, - "end": { - "$date": "2020-10-17T04:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "88fae9cc-5a02-480a-a02d-34a4de668c7c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-17T04:26:13.000Z" - }, - "end": { - "$date": "2020-10-17T05:04:21.000Z" - }, - "events": [ - { - "uuid": "cedaf31e-76af-4593-b296-c4da7d18151e", - "start": { - "$date": "2020-10-17T04:26:13.000Z" - }, - "end": { - "$date": "2020-10-17T05:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a10ff3e1-f470-4019-b555-3d999e51400b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T04:47:35.000Z" - }, - "end": { - "$date": "2020-10-17T05:14:43.000Z" - }, - "events": [ - { - "uuid": "1e12cb3f-dbcb-4502-9974-0cd28a8c5832", - "start": { - "$date": "2020-10-17T04:47:35.000Z" - }, - "end": { - "$date": "2020-10-17T05:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7755427-fd14-461c-a42a-be3659901499", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T04:47:28.000Z" - }, - "end": { - "$date": "2020-10-17T05:14:45.000Z" - }, - "events": [ - { - "uuid": "bfe0aa77-2cc6-4141-ac75-2a0bf4318301", - "start": { - "$date": "2020-10-17T04:47:28.000Z" - }, - "end": { - "$date": "2020-10-17T05:14:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9bc93f8e-fe14-4589-9821-5e77ac3c2d58", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T04:47:14.000Z" - }, - "end": { - "$date": "2020-10-17T05:03:16.000Z" - }, - "events": [ - { - "uuid": "a34a1aaf-7348-4e51-9f19-bf3bebc14999", - "start": { - "$date": "2020-10-17T04:47:14.000Z" - }, - "end": { - "$date": "2020-10-17T05:03:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "70fd371b-acc8-4aeb-9d64-8f47343c6850", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T05:03:22.000Z" - }, - "end": { - "$date": "2020-10-17T05:15:30.000Z" - }, - "events": [ - { - "uuid": "49021167-183e-4e74-85a7-6d222c69b150", - "start": { - "$date": "2020-10-17T05:03:22.000Z" - }, - "end": { - "$date": "2020-10-17T05:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "23611fb9-5a21-42d2-9fb9-ec4669e6941f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-17T05:04:35.000Z" - }, - "end": { - "$date": "2020-10-17T05:23:26.000Z" - }, - "events": [ - { - "uuid": "8e494944-3acd-422b-89c6-378c44f1bc78", - "start": { - "$date": "2020-10-17T05:04:35.000Z" - }, - "end": { - "$date": "2020-10-17T05:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "babab41b-cbcf-4cff-b649-b65302d93ad8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-17T05:04:54.000Z" - }, - "end": { - "$date": "2020-10-17T05:23:06.000Z" - }, - "events": [ - { - "uuid": "37817ba2-2c37-41f8-9a9f-6e71d846add7", - "start": { - "$date": "2020-10-17T05:04:54.000Z" - }, - "end": { - "$date": "2020-10-17T05:23:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf05e07d-8f2f-44f2-93f5-4b969a9c1abe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T05:21:37.000Z" - }, - "end": { - "$date": "2020-10-17T06:00:10.000Z" - }, - "events": [ - { - "uuid": "4486a52a-1fc4-4821-bb53-8c399d9b0283", - "start": { - "$date": "2020-10-17T05:21:37.000Z" - }, - "end": { - "$date": "2020-10-17T06:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9ab8273f-df2d-48bb-8813-1cabbc08e136", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T05:44:58.000Z" - }, - "end": { - "$date": "2020-10-17T06:00:02.000Z" - }, - "events": [ - { - "uuid": "d1168823-e35c-4fe7-8795-9c43df34ee4e", - "start": { - "$date": "2020-10-17T05:44:58.000Z" - }, - "end": { - "$date": "2020-10-17T06:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27237044-6e8d-4754-b5f3-685a6fa85f00", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T05:16:20.000Z" - }, - "end": { - "$date": "2020-10-17T05:17:23.000Z" - }, - "events": [ - { - "uuid": "60093835-c7e8-4b89-8617-70ada9f717bd", - "start": { - "$date": "2020-10-17T05:16:20.000Z" - }, - "end": { - "$date": "2020-10-17T05:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "123f8f3f-f8ba-469e-a55b-a2fd7b1c4617", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T05:21:17.000Z" - }, - "end": { - "$date": "2020-10-17T06:00:03.000Z" - }, - "events": [ - { - "uuid": "27910509-001f-416b-aa1e-8a06f9bfc215", - "start": { - "$date": "2020-10-17T05:21:17.000Z" - }, - "end": { - "$date": "2020-10-17T06:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2152712-097a-45de-8ccc-9247cd7471a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-17T05:23:35.000Z" - }, - "end": { - "$date": "2020-10-17T05:54:52.000Z" - }, - "events": [ - { - "uuid": "6c8dbd33-481c-4595-84c3-134c18b1af10", - "start": { - "$date": "2020-10-17T05:23:35.000Z" - }, - "end": { - "$date": "2020-10-17T05:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "585ad135-e82d-4938-9c1c-b98990bb94d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-17T05:23:47.000Z" - }, - "end": { - "$date": "2020-10-17T05:54:59.000Z" - }, - "events": [ - { - "uuid": "a89fbdac-d26c-4598-82b9-47a9b3dac7be", - "start": { - "$date": "2020-10-17T05:23:47.000Z" - }, - "end": { - "$date": "2020-10-17T05:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20ac567d-4fbb-413d-9b25-ac925001efab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T06:02:34.000Z" - }, - "end": { - "$date": "2020-10-17T06:20:11.000Z" - }, - "events": [ - { - "uuid": "641acc49-a02f-473c-afe1-99176017b298", - "start": { - "$date": "2020-10-17T06:02:34.000Z" - }, - "end": { - "$date": "2020-10-17T06:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc831776-3189-40d1-bdce-946cd52a098d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T06:04:09.000Z" - }, - "end": { - "$date": "2020-10-17T06:20:08.000Z" - }, - "events": [ - { - "uuid": "30572a0e-fd93-4d6f-a769-dfb34fed108e", - "start": { - "$date": "2020-10-17T06:04:09.000Z" - }, - "end": { - "$date": "2020-10-17T06:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d384b487-e724-431c-a3c1-4d96d00769af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T06:03:33.000Z" - }, - "end": { - "$date": "2020-10-17T06:20:09.000Z" - }, - "events": [ - { - "uuid": "27ecafb9-3658-4864-9a39-f18599d12442", - "start": { - "$date": "2020-10-17T06:03:33.000Z" - }, - "end": { - "$date": "2020-10-17T06:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fed3c2e-404b-4df4-9750-8ca4c19fc5e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T06:20:22.000Z" - }, - "end": { - "$date": "2020-10-17T06:40:11.000Z" - }, - "events": [ - { - "uuid": "111857f9-35fd-4a57-9b8d-01edd39fe833", - "start": { - "$date": "2020-10-17T06:20:22.000Z" - }, - "end": { - "$date": "2020-10-17T06:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4b28fbf9-fdaa-4155-91f5-c624dd0e7072", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-17T06:30:19.000Z" - }, - "end": { - "$date": "2020-10-17T06:55:41.000Z" - }, - "events": [ - { - "uuid": "4e8d4b46-c9bd-4388-82c4-206d96ac11ab", - "start": { - "$date": "2020-10-17T06:30:19.000Z" - }, - "end": { - "$date": "2020-10-17T06:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4b01088-0e53-4f56-bac7-af44c4d3fef1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T06:45:00.000Z" - }, - "end": { - "$date": "2020-10-17T07:07:52.000Z" - }, - "events": [ - { - "uuid": "7c4995a0-f9bc-48cc-9ba8-79697ef27b7b", - "start": { - "$date": "2020-10-17T06:45:00.000Z" - }, - "end": { - "$date": "2020-10-17T07:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4d37dad-2e5a-47ab-a635-ef70dbdba5af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T06:44:57.000Z" - }, - "end": { - "$date": "2020-10-17T07:07:53.000Z" - }, - "events": [ - { - "uuid": "f9470895-198d-49da-bb8b-09f94e2af430", - "start": { - "$date": "2020-10-17T06:44:57.000Z" - }, - "end": { - "$date": "2020-10-17T07:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32a496c1-2e5e-4bdc-a9eb-78542e775825", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T07:10:21.000Z" - }, - "end": { - "$date": "2020-10-17T07:34:17.000Z" - }, - "events": [ - { - "uuid": "30a98de5-dffa-4299-9601-58964c8ec4fc", - "start": { - "$date": "2020-10-17T07:10:21.000Z" - }, - "end": { - "$date": "2020-10-17T07:34:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f43392cd-6a80-4fae-9934-205195db8cdf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T07:10:17.000Z" - }, - "end": { - "$date": "2020-10-17T07:34:09.000Z" - }, - "events": [ - { - "uuid": "99576500-0ceb-4417-9556-6cac0fc03ea5", - "start": { - "$date": "2020-10-17T07:10:17.000Z" - }, - "end": { - "$date": "2020-10-17T07:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "25657c75-e1d2-451a-b898-571cf6dfc062", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-17T07:50:30.000Z" - }, - "end": { - "$date": "2020-10-17T08:06:47.000Z" - }, - "events": [ - { - "uuid": "587ab3b7-bcf5-46c4-b226-05f64005179b", - "start": { - "$date": "2020-10-17T07:50:30.000Z" - }, - "end": { - "$date": "2020-10-17T08:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c9881d35-4590-4167-baa0-835c4084cfc3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-17T14:41:02.000Z" - }, - "end": { - "$date": "2020-10-17T16:49:49.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-17T14:41:02.000Z" - }, - "end": { - "$date": "2020-10-17T16:49:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69604f55-a283-422f-a3eb-e77682ffffac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T17:11:11.000Z" - }, - "end": { - "$date": "2020-10-17T17:50:24.000Z" - }, - "events": [ - { - "uuid": "3a00f4a1-e3fe-4a1e-82a3-e9a668ef3dba", - "start": { - "$date": "2020-10-17T17:11:11.000Z" - }, - "end": { - "$date": "2020-10-17T17:50:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abca565f-9219-4b37-90e2-b13e8ed0b2f1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-17T17:11:07.000Z" - }, - "end": { - "$date": "2020-10-17T17:50:25.000Z" - }, - "events": [ - { - "uuid": "3cf69407-32c2-486b-8a82-787ddaf58d7d", - "start": { - "$date": "2020-10-17T17:11:07.000Z" - }, - "end": { - "$date": "2020-10-17T17:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b72860d-b8cf-485d-8944-79e33c43737c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T17:11:05.000Z" - }, - "end": { - "$date": "2020-10-17T17:50:25.000Z" - }, - "events": [ - { - "uuid": "2d82608c-d8e3-453a-80cf-e79bde08a2c2", - "start": { - "$date": "2020-10-17T17:11:05.000Z" - }, - "end": { - "$date": "2020-10-17T17:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f902c903-7867-42a5-babb-08a79c6eddec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-17T17:21:29.000Z" - }, - "end": { - "$date": "2020-10-17T18:28:56.000Z" - }, - "events": [ - { - "uuid": "f2ea3dd0-c2ce-4d97-b53e-efbf4610628c", - "start": { - "$date": "2020-10-17T17:21:29.000Z" - }, - "end": { - "$date": "2020-10-17T18:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a74590d-f3ec-4b9f-8775-a9e25c918057", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T17:51:28.000Z" - }, - "end": { - "$date": "2020-10-17T18:27:11.000Z" - }, - "events": [ - { - "uuid": "8b912fc7-3c59-4325-b192-35af2d250d48", - "start": { - "$date": "2020-10-17T17:51:28.000Z" - }, - "end": { - "$date": "2020-10-17T18:27:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36efe5c1-28df-47f2-85a3-06e0695c79aa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-17T17:51:35.000Z" - }, - "end": { - "$date": "2020-10-17T18:27:13.000Z" - }, - "events": [ - { - "uuid": "31f5b61e-8a5b-4215-82d6-12365a25ba3d", - "start": { - "$date": "2020-10-17T17:51:35.000Z" - }, - "end": { - "$date": "2020-10-17T18:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "887f77dc-3b93-4a58-84f7-876e82960cd9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T17:51:14.000Z" - }, - "end": { - "$date": "2020-10-17T18:27:29.000Z" - }, - "events": [ - { - "uuid": "d4e14d26-6486-446b-80c1-3a11e7a9a254", - "start": { - "$date": "2020-10-17T17:51:14.000Z" - }, - "end": { - "$date": "2020-10-17T18:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "209dd8f1-d054-4972-88ae-d6130f443e46", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T18:36:09.000Z" - }, - "end": { - "$date": "2020-10-17T19:42:36.000Z" - }, - "events": [ - { - "uuid": "ddde6f52-dba0-4e2f-9f7d-418452ffd343", - "start": { - "$date": "2020-10-17T18:36:09.000Z" - }, - "end": { - "$date": "2020-10-17T19:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fab8da94-52b8-48a9-8bb8-36e0505ba184", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T18:27:16.000Z" - }, - "end": { - "$date": "2020-10-17T18:31:24.000Z" - }, - "events": [ - { - "uuid": "62369ac5-61a8-44b2-86b0-6d2286723b2f", - "start": { - "$date": "2020-10-17T18:27:16.000Z" - }, - "end": { - "$date": "2020-10-17T18:31:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "ef374c47-705e-49eb-9667-545079ba6119", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T18:32:20.000Z" - }, - "end": { - "$date": "2020-10-17T19:05:31.000Z" - }, - "events": [ - { - "uuid": "92565228-9e9b-4ba3-8642-78a9c7878716", - "start": { - "$date": "2020-10-17T18:32:20.000Z" - }, - "end": { - "$date": "2020-10-17T19:05:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3767e0c-de00-47e3-892f-ad6b03d2b769", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-17T18:34:51.000Z" - }, - "end": { - "$date": "2020-10-17T18:36:03.000Z" - }, - "events": [ - { - "uuid": "6e20ffe7-a8f8-4a66-9248-ba3f1844ff52", - "start": { - "$date": "2020-10-17T18:34:51.000Z" - }, - "end": { - "$date": "2020-10-17T18:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "d1a80e92-04ce-4353-b586-e927fb7f4a22", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T18:52:23.000Z" - }, - "end": { - "$date": "2020-10-17T19:15:30.000Z" - }, - "events": [ - { - "uuid": "966b0e1a-b614-49d2-b00b-fba897dc7e5d", - "start": { - "$date": "2020-10-17T18:52:23.000Z" - }, - "end": { - "$date": "2020-10-17T19:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0f8dbca6-6a97-4d3c-b6f5-d8369e912612", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-17T18:55:12.000Z" - }, - "end": { - "$date": "2020-10-17T18:59:58.000Z" - }, - "events": [ - { - "uuid": "9b3bd269-7593-4ba2-9676-8ba2ba6d9da0", - "start": { - "$date": "2020-10-17T18:55:12.000Z" - }, - "end": { - "$date": "2020-10-17T18:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "9251dc60-c269-42b1-a2d6-3825fda03f6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T19:15:55.000Z" - }, - "end": { - "$date": "2020-10-17T19:30:51.000Z" - }, - "events": [ - { - "uuid": "5c019c12-dcdd-440f-b848-b62f9e3a8295", - "start": { - "$date": "2020-10-17T19:15:55.000Z" - }, - "end": { - "$date": "2020-10-17T19:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f83f4f1b-3066-4f81-b0db-5f8b339e3abb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-17T19:18:52.000Z" - }, - "end": { - "$date": "2020-10-17T21:15:01.000Z" - }, - "events": [ - { - "uuid": "c5302ff8-c7fe-42e0-aa89-2d6c5c7c5f4f", - "start": { - "$date": "2020-10-17T19:18:52.000Z" - }, - "end": { - "$date": "2020-10-17T19:55:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8001b598-bc97-4754-8c3c-4eacb3ee5108", - "start": { - "$date": "2020-10-17T19:55:52.000Z" - }, - "end": { - "$date": "2020-10-17T19:59:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28ea786b-3b27-4f27-9e9d-2532db503000", - "start": { - "$date": "2020-10-17T19:59:52.000Z" - }, - "end": { - "$date": "2020-10-17T21:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "015532ab-4d49-428a-bf57-b9e3ea053334", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T19:38:21.000Z" - }, - "end": { - "$date": "2020-10-17T19:50:17.000Z" - }, - "events": [ - { - "uuid": "6bc4316d-800e-4589-b02b-ce05ddf099b3", - "start": { - "$date": "2020-10-17T19:38:21.000Z" - }, - "end": { - "$date": "2020-10-17T19:50:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b07019e1-36e7-49aa-9909-92c5553fb95c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T19:38:14.000Z" - }, - "end": { - "$date": "2020-10-17T19:50:26.000Z" - }, - "events": [ - { - "uuid": "60e32e67-7344-40d6-80fc-89d6b09412fc", - "start": { - "$date": "2020-10-17T19:38:14.000Z" - }, - "end": { - "$date": "2020-10-17T19:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36ac2e60-32d9-4431-a31e-6d043b68776f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T19:38:13.000Z" - }, - "end": { - "$date": "2020-10-17T19:50:20.000Z" - }, - "events": [ - { - "uuid": "af617750-205f-4004-833f-82211a292fd1", - "start": { - "$date": "2020-10-17T19:38:13.000Z" - }, - "end": { - "$date": "2020-10-17T19:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0efe53c-937f-477f-819d-8238415f928e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T19:53:52.000Z" - }, - "end": { - "$date": "2020-10-17T20:18:33.000Z" - }, - "events": [ - { - "uuid": "355f58fa-7303-496d-a203-87063787828e", - "start": { - "$date": "2020-10-17T19:53:52.000Z" - }, - "end": { - "$date": "2020-10-17T20:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ca28176-af2e-47e7-a67c-33dcabe49fbe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-17T19:54:20.000Z" - }, - "end": { - "$date": "2020-10-17T20:18:32.000Z" - }, - "events": [ - { - "uuid": "cbf13bc9-d129-4da2-96d3-2804e0791744", - "start": { - "$date": "2020-10-17T19:54:20.000Z" - }, - "end": { - "$date": "2020-10-17T20:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b74abc5-eedf-4202-9ea9-82fa01befb15", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-17T19:53:44.000Z" - }, - "end": { - "$date": "2020-10-17T20:18:32.000Z" - }, - "events": [ - { - "uuid": "6ad04e4f-d309-4b15-a7a8-6f6931eac4ad", - "start": { - "$date": "2020-10-17T19:53:44.000Z" - }, - "end": { - "$date": "2020-10-17T20:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eca686bc-de7a-4a36-b316-ff66979a201d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-17T20:25:20.000Z" - }, - "end": { - "$date": "2020-10-17T21:26:14.000Z" - }, - "events": [ - { - "uuid": "b43997d9-8cef-4a05-8cba-654b85cbee75", - "start": { - "$date": "2020-10-17T20:25:20.000Z" - }, - "end": { - "$date": "2020-10-17T21:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7d6f6532-eb0a-4a72-bfee-391b9354e098", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-17T20:29:11.000Z" - }, - "end": { - "$date": "2020-10-17T20:37:19.000Z" - }, - "events": [ - { - "uuid": "ec3a4291-8714-4d0f-afb9-73c6f13c1086", - "start": { - "$date": "2020-10-17T20:29:11.000Z" - }, - "end": { - "$date": "2020-10-17T20:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9ed5de16-21a8-4f4a-9306-5ba59d68af0c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-17T20:52:01.000Z" - }, - "end": { - "$date": "2020-10-17T22:48:15.000Z" - }, - "events": [ - { - "uuid": "698d0850-54b6-49c7-b841-cdfae4978af8", - "start": { - "$date": "2020-10-17T20:52:01.000Z" - }, - "end": { - "$date": "2020-10-17T22:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5431ab9f-e6c6-40d6-b6dd-bf35671e00ec", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-17T20:56:03.000Z" - }, - "end": { - "$date": "2020-10-17T21:06:34.000Z" - }, - "events": [ - { - "uuid": "5f5fd8aa-6d6a-4784-a090-aa54ec89e339", - "start": { - "$date": "2020-10-17T20:56:03.000Z" - }, - "end": { - "$date": "2020-10-17T21:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "966b6834-76e5-4569-91af-cf9b17442307", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T21:02:37.000Z" - }, - "end": { - "$date": "2020-10-17T21:59:20.000Z" - }, - "events": [ - { - "uuid": "be2c2376-325c-4d50-b167-223824bf44ad", - "start": { - "$date": "2020-10-17T21:02:37.000Z" - }, - "end": { - "$date": "2020-10-17T21:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a33304b1-565e-415e-af74-157879c0e395", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-17T21:07:14.000Z" - }, - "end": { - "$date": "2020-10-17T22:29:21.000Z" - }, - "events": [ - { - "uuid": "9a3096b7-01fd-4e03-94c8-10f2f7706b24", - "start": { - "$date": "2020-10-17T21:07:14.000Z" - }, - "end": { - "$date": "2020-10-17T22:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "7a2e7526-cbe7-4d89-ae3d-690e54e488c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-17T21:08:26.000Z" - }, - "end": { - "$date": "2020-10-17T21:55:09.000Z" - }, - "events": [ - { - "uuid": "f61962fb-eb5d-433a-b3d4-f324641606a1", - "start": { - "$date": "2020-10-17T21:08:26.000Z" - }, - "end": { - "$date": "2020-10-17T21:55:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "d062e930-eb4f-4834-a079-4c5297bccba7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-17T21:10:35.000Z" - }, - "end": { - "$date": "2020-10-17T21:31:06.000Z" - }, - "events": [ - { - "uuid": "a3b071b9-776f-45e8-be5e-2b0a88b6db54", - "start": { - "$date": "2020-10-17T21:10:35.000Z" - }, - "end": { - "$date": "2020-10-17T21:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "caeba1b1-fa82-4e72-bca6-06c9ee4b2c4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-17T22:13:23.000Z" - }, - "end": { - "$date": "2020-10-17T23:21:54.000Z" - }, - "events": [ - { - "uuid": "00a2d818-930b-47ff-8bbb-9dffea1171a7", - "start": { - "$date": "2020-10-17T22:13:23.000Z" - }, - "end": { - "$date": "2020-10-17T23:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3e513185-4bbe-445f-8753-0d71f69faab7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-17T22:17:49.000Z" - }, - "end": { - "$date": "2020-10-17T22:46:05.000Z" - }, - "events": [ - { - "uuid": "b15e41b6-8b56-4d76-950c-9bf02dec3735", - "start": { - "$date": "2020-10-17T22:17:49.000Z" - }, - "end": { - "$date": "2020-10-17T22:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc17184f-3157-429e-9b25-3058bdd33db1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-17T22:32:04.000Z" - }, - "end": { - "$date": "2020-10-17T23:52:53.000Z" - }, - "events": [ - { - "uuid": "d35ceba8-c26e-4878-b4f7-0b36cf9f87b8", - "start": { - "$date": "2020-10-17T22:32:04.000Z" - }, - "end": { - "$date": "2020-10-17T23:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4ac9e64d-e4df-4aca-8d68-1bb55d7334de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T01:22:35.000Z" - }, - "end": { - "$date": "2020-10-18T01:25:56.000Z" - }, - "events": [ - { - "uuid": "9fa2a69a-6450-48cc-8b93-f0ad4a45bd0f", - "start": { - "$date": "2020-10-18T01:22:35.000Z" - }, - "end": { - "$date": "2020-10-18T01:25:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4d8a7b60-f085-42e2-9c8c-d2fd96db7cba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T01:32:31.000Z" - }, - "end": { - "$date": "2020-10-18T02:09:05.000Z" - }, - "events": [ - { - "uuid": "74815901-1293-4dfa-a4ab-2a889d11991a", - "start": { - "$date": "2020-10-18T01:32:31.000Z" - }, - "end": { - "$date": "2020-10-18T02:09:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "da4cda7b-43ca-4919-b234-b4093e619796", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T01:34:08.000Z" - }, - "end": { - "$date": "2020-10-18T04:31:25.000Z" - }, - "events": [ - { - "uuid": "59e9113c-e547-4ff6-b5b2-5f18bd609839", - "start": { - "$date": "2020-10-18T01:34:08.000Z" - }, - "end": { - "$date": "2020-10-18T04:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "11f65300-4a47-43b5-8aa1-f993acc6afb7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T01:37:36.000Z" - }, - "end": { - "$date": "2020-10-18T02:14:48.000Z" - }, - "events": [ - { - "uuid": "79e884e2-b712-4a5b-ad24-9710c1de2e53", - "start": { - "$date": "2020-10-18T01:37:36.000Z" - }, - "end": { - "$date": "2020-10-18T02:14:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "cb75033c-9eac-4a2a-884e-44d7fe6f1ad7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-18T01:38:09.000Z" - }, - "end": { - "$date": "2020-10-18T04:58:18.000Z" - }, - "events": [ - { - "uuid": "4a9ad2da-8e43-4bd2-9d15-858fb5770f43", - "start": { - "$date": "2020-10-18T01:38:09.000Z" - }, - "end": { - "$date": "2020-10-18T04:58:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "fe71e0e8-ffda-4944-97a7-a625c7702fe9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-18T02:18:18.000Z" - }, - "end": { - "$date": "2020-10-18T02:30:13.000Z" - }, - "events": [ - { - "uuid": "891bcc40-21f0-467d-9477-abbb07eb8164", - "start": { - "$date": "2020-10-18T02:18:18.000Z" - }, - "end": { - "$date": "2020-10-18T02:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29f376f2-e169-4704-8f45-1cfb267298f2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-18T02:53:19.000Z" - }, - "end": { - "$date": "2020-10-18T03:33:05.000Z" - }, - "events": [ - { - "uuid": "025c307a-544f-4c01-9b98-bddb4f5ecb5e", - "start": { - "$date": "2020-10-18T02:53:19.000Z" - }, - "end": { - "$date": "2020-10-18T03:33:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc3875b7-0ffe-4760-8f50-b4bc31134908", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-18T02:57:07.000Z" - }, - "end": { - "$date": "2020-10-18T02:59:12.000Z" - }, - "events": [ - { - "uuid": "f3b8c32e-3690-4096-854d-04aa18e7d6f5", - "start": { - "$date": "2020-10-18T02:57:07.000Z" - }, - "end": { - "$date": "2020-10-18T02:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "783f2470-dcc7-47b3-893b-d1f7bdc0f1f5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T03:03:32.000Z" - }, - "end": { - "$date": "2020-10-18T04:58:00.000Z" - }, - "events": [ - { - "uuid": "ab4fcc74-8495-4d76-b400-61f49a10eb7c", - "start": { - "$date": "2020-10-18T03:03:32.000Z" - }, - "end": { - "$date": "2020-10-18T04:58:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "uuid": "40823c81-d386-4b72-81e4-d0a54b13db32", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T03:30:33.000Z" - }, - "end": { - "$date": "2020-10-18T03:33:28.000Z" - }, - "events": [ - { - "uuid": "6eea7c06-e205-484a-acde-f389484cf48e", - "start": { - "$date": "2020-10-18T03:30:33.000Z" - }, - "end": { - "$date": "2020-10-18T03:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "uuid": "aac41a81-a798-45dd-963f-86dd83119703", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T03:34:18.000Z" - }, - "end": { - "$date": "2020-10-18T03:35:58.000Z" - }, - "events": [ - { - "uuid": "b9c272b9-fbc0-4893-bc71-ecff71e54246", - "start": { - "$date": "2020-10-18T03:34:18.000Z" - }, - "end": { - "$date": "2020-10-18T03:35:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "uuid": "7d4f2cbf-d79e-4ed1-8513-f749c9739dcc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T03:40:14.000Z" - }, - "end": { - "$date": "2020-10-18T03:45:19.000Z" - }, - "events": [ - { - "uuid": "04980c2d-a55b-4ae3-bf7c-5e5da708565f", - "start": { - "$date": "2020-10-18T03:40:14.000Z" - }, - "end": { - "$date": "2020-10-18T03:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "uuid": "23608038-c728-4afb-9a0c-4737e4a05ab0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T03:45:30.000Z" - }, - "end": { - "$date": "2020-10-18T05:47:59.000Z" - }, - "events": [ - { - "uuid": "22e2daae-7281-4832-85d8-87ad4c18f35e", - "start": { - "$date": "2020-10-18T03:45:30.000Z" - }, - "end": { - "$date": "2020-10-18T05:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7a0fb43a-e917-4062-933e-870581467ccf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T04:31:46.000Z" - }, - "end": { - "$date": "2020-10-18T07:24:19.000Z" - }, - "events": [ - { - "uuid": "abc9413d-50e5-433a-b1b9-60f7fac5f6ed", - "start": { - "$date": "2020-10-18T04:31:46.000Z" - }, - "end": { - "$date": "2020-10-18T07:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0611e096-9d42-41c9-b05b-14272c73b1a1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-18T04:46:10.000Z" - }, - "end": { - "$date": "2020-10-18T04:56:00.000Z" - }, - "events": [ - { - "uuid": "097d3596-2c98-4005-ae8e-4e4b1c43f140", - "start": { - "$date": "2020-10-18T04:46:10.000Z" - }, - "end": { - "$date": "2020-10-18T04:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "61cae649-678a-4fbd-bea9-97e9ff90caee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-18T04:59:17.000Z" - }, - "end": { - "$date": "2020-10-18T05:21:09.000Z" - }, - "events": [ - { - "uuid": "7e86b9b2-1e17-4198-b272-946317bc5a3f", - "start": { - "$date": "2020-10-18T04:59:17.000Z" - }, - "end": { - "$date": "2020-10-18T05:21:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9ff83299-cd2d-4712-b4b2-bca20ed3b6a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T05:01:25.000Z" - }, - "end": { - "$date": "2020-10-18T05:21:16.000Z" - }, - "events": [ - { - "uuid": "cd460325-4b81-41a0-9ebd-452fc701067a", - "start": { - "$date": "2020-10-18T05:01:25.000Z" - }, - "end": { - "$date": "2020-10-18T05:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "4f314c66-0547-4f40-b55c-0d11ea575cdf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T05:10:28.000Z" - }, - "end": { - "$date": "2020-10-18T05:14:03.000Z" - }, - "events": [ - { - "uuid": "56b4f46e-00d5-48e9-8caf-7a99456924d1", - "start": { - "$date": "2020-10-18T05:10:28.000Z" - }, - "end": { - "$date": "2020-10-18T05:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14f3814f-433d-444a-aa08-00df67513bfb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T05:28:49.000Z" - }, - "end": { - "$date": "2020-10-18T05:46:15.000Z" - }, - "events": [ - { - "uuid": "e208cc71-5dc1-4295-bf31-bbde2d813979", - "start": { - "$date": "2020-10-18T05:28:49.000Z" - }, - "end": { - "$date": "2020-10-18T05:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c6cf414-6c4c-4b7d-a492-c4b975e68c4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T05:28:50.000Z" - }, - "end": { - "$date": "2020-10-18T05:46:10.000Z" - }, - "events": [ - { - "uuid": "9c1688d2-cf8e-4a08-b867-1113afc9cb4a", - "start": { - "$date": "2020-10-18T05:28:50.000Z" - }, - "end": { - "$date": "2020-10-18T05:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a079b971-2019-4344-938d-3c42897fe511", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T05:56:56.000Z" - }, - "end": { - "$date": "2020-10-18T06:19:24.000Z" - }, - "events": [ - { - "uuid": "28745adb-e798-4898-9d66-aec7ec876562", - "start": { - "$date": "2020-10-18T05:56:56.000Z" - }, - "end": { - "$date": "2020-10-18T06:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "uuid": "3911118e-61cc-4bf6-833c-32d5e52cbc0c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T05:49:00.000Z" - }, - "end": { - "$date": "2020-10-18T05:58:10.000Z" - }, - "events": [ - { - "uuid": "8e70cfd5-f3af-47b2-a947-e4b2c62af6bc", - "start": { - "$date": "2020-10-18T05:49:00.000Z" - }, - "end": { - "$date": "2020-10-18T05:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "604ae49b-9f83-439e-98b6-72b0546b5985", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T05:56:48.000Z" - }, - "end": { - "$date": "2020-10-18T06:19:24.000Z" - }, - "events": [ - { - "uuid": "5a6b058e-b456-412e-a736-f8292150b4e3", - "start": { - "$date": "2020-10-18T05:56:48.000Z" - }, - "end": { - "$date": "2020-10-18T06:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "de14918a-27d1-4eab-b573-6d7e1ee5a65d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T05:55:39.000Z" - }, - "end": { - "$date": "2020-10-18T05:58:10.000Z" - }, - "events": [ - { - "uuid": "fd1e9fda-e850-449a-aaf5-69b2c925c29b", - "start": { - "$date": "2020-10-18T05:55:39.000Z" - }, - "end": { - "$date": "2020-10-18T05:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "189d6be4-64a6-45d5-8932-b50728507cdc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T06:03:06.000Z" - }, - "end": { - "$date": "2020-10-18T07:29:32.000Z" - }, - "events": [ - { - "uuid": "77df0981-695b-4d65-884f-dec4abfa0703", - "start": { - "$date": "2020-10-18T06:03:06.000Z" - }, - "end": { - "$date": "2020-10-18T07:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6f5fe706-a8f6-4a2e-b4fc-3c0e4e84e4ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-18T06:18:31.000Z" - }, - "end": { - "$date": "2020-10-18T06:53:13.000Z" - }, - "events": [ - { - "uuid": "de211f52-102a-437a-b8a6-313f666de6fa", - "start": { - "$date": "2020-10-18T06:18:31.000Z" - }, - "end": { - "$date": "2020-10-18T06:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0466f3a6-b43c-4858-a8a3-ad6a3bc26c43", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T06:23:02.000Z" - }, - "end": { - "$date": "2020-10-18T06:38:47.000Z" - }, - "events": [ - { - "uuid": "f5ae5832-4ce4-4b30-af00-ecd50da1c362", - "start": { - "$date": "2020-10-18T06:23:02.000Z" - }, - "end": { - "$date": "2020-10-18T06:38:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "567c2016-ffdb-4872-b0a8-fb13691f8afd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T06:22:57.000Z" - }, - "end": { - "$date": "2020-10-18T06:38:50.000Z" - }, - "events": [ - { - "uuid": "fa7d86fc-63f6-432d-b2ad-d682c426496c", - "start": { - "$date": "2020-10-18T06:22:57.000Z" - }, - "end": { - "$date": "2020-10-18T06:38:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d1510662-c44a-436e-a3e1-e5dc0c246d25", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T06:28:26.000Z" - }, - "end": { - "$date": "2020-10-18T08:26:50.000Z" - }, - "events": [ - { - "uuid": "3ba5facd-1c3c-4e53-a818-8d72b605d19e", - "start": { - "$date": "2020-10-18T06:28:26.000Z" - }, - "end": { - "$date": "2020-10-18T07:26:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9bc684e9-0d19-4678-978c-e5e2ed65296d", - "start": { - "$date": "2020-10-18T07:26:26.000Z" - }, - "end": { - "$date": "2020-10-18T07:32:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "625e3b3f-9357-4676-a009-475d8fbd61e9", - "start": { - "$date": "2020-10-18T07:32:26.000Z" - }, - "end": { - "$date": "2020-10-18T07:55:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6877efb-d47d-4c2e-89af-c4cd8eb0df6d", - "start": { - "$date": "2020-10-18T07:55:26.000Z" - }, - "end": { - "$date": "2020-10-18T08:26:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ccf40b0-f1dc-43e8-82a4-1880d40bfe93", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T06:43:08.000Z" - }, - "end": { - "$date": "2020-10-18T07:11:59.000Z" - }, - "events": [ - { - "uuid": "6fac6031-a5da-4e20-8826-7794c4e226f3", - "start": { - "$date": "2020-10-18T06:43:08.000Z" - }, - "end": { - "$date": "2020-10-18T07:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c5473867-5c78-4439-aaf3-7473d54b5e0d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-18T06:39:41.000Z" - }, - "end": { - "$date": "2020-10-18T06:52:02.000Z" - }, - "events": [ - { - "uuid": "785d559c-c91c-4b1f-813e-956d62c8c1db", - "start": { - "$date": "2020-10-18T06:39:41.000Z" - }, - "end": { - "$date": "2020-10-18T06:52:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1f058a0-58ff-411c-8a7c-9d9ff43239fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T06:43:08.000Z" - }, - "end": { - "$date": "2020-10-18T07:11:53.000Z" - }, - "events": [ - { - "uuid": "cf2438c7-55e7-472a-91ed-ea67c56e1b5c", - "start": { - "$date": "2020-10-18T06:43:08.000Z" - }, - "end": { - "$date": "2020-10-18T07:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca2f6664-7cf6-4ad2-9e08-9a777aa5d0a7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T07:12:22.000Z" - }, - "end": { - "$date": "2020-10-18T07:15:15.000Z" - }, - "events": [ - { - "uuid": "2277efe8-3a1a-489b-9d6d-f2571fd2b1d3", - "start": { - "$date": "2020-10-18T07:12:22.000Z" - }, - "end": { - "$date": "2020-10-18T07:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "65f3c2a4-de9b-4136-89a6-4b3fd83305b2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-18T07:41:05.000Z" - }, - "end": { - "$date": "2020-10-18T09:19:31.000Z" - }, - "events": [ - { - "uuid": "9ec9d5a6-4249-436f-b452-bdeee24500a7", - "start": { - "$date": "2020-10-18T07:41:05.000Z" - }, - "end": { - "$date": "2020-10-18T09:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "73fec381-646a-47d1-95a6-203ff750c8f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T15:13:03.000Z" - }, - "end": { - "$date": "2020-10-18T15:14:54.000Z" - }, - "events": [ - { - "uuid": "ada2e37c-0e1f-4e85-8b06-6b2b0f824bc0", - "start": { - "$date": "2020-10-18T15:13:03.000Z" - }, - "end": { - "$date": "2020-10-18T15:14:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e521d26a-10c1-4663-a1c7-4a322c072c83", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T15:13:05.000Z" - }, - "end": { - "$date": "2020-10-18T15:53:47.000Z" - }, - "events": [ - { - "uuid": "2fa3e574-68c2-4ab5-b5dc-e968e3de7d46", - "start": { - "$date": "2020-10-18T15:13:05.000Z" - }, - "end": { - "$date": "2020-10-18T15:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "e1cf79e5-e50c-4419-9afe-4b2293fc0818", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T15:22:59.000Z" - }, - "end": { - "$date": "2020-10-18T15:29:05.000Z" - }, - "events": [ - { - "uuid": "3652fa66-3740-45c4-a839-351869905f78", - "start": { - "$date": "2020-10-18T15:22:59.000Z" - }, - "end": { - "$date": "2020-10-18T15:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "6c5c3904-d240-4d1c-b5dc-a5b7af994f28", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T15:32:59.000Z" - }, - "end": { - "$date": "2020-10-18T15:34:05.000Z" - }, - "events": [ - { - "uuid": "34eeb2fd-d149-45dd-b78e-b660deee9595", - "start": { - "$date": "2020-10-18T15:32:59.000Z" - }, - "end": { - "$date": "2020-10-18T15:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "1537ea61-3e04-462c-b874-8705539090b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T15:38:15.000Z" - }, - "end": { - "$date": "2020-10-18T15:42:15.000Z" - }, - "events": [ - { - "uuid": "1d7013b8-e0cd-40d4-b858-49ddacb09982", - "start": { - "$date": "2020-10-18T15:38:15.000Z" - }, - "end": { - "$date": "2020-10-18T15:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "8fad5aad-274c-445f-827b-1337dfa7bf3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T15:44:45.000Z" - }, - "end": { - "$date": "2020-10-18T15:46:26.000Z" - }, - "events": [ - { - "uuid": "00d8054e-c541-402f-b06e-09af3de44740", - "start": { - "$date": "2020-10-18T15:44:45.000Z" - }, - "end": { - "$date": "2020-10-18T15:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "d50755f8-b45c-49ce-8374-f72b0344e3fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T15:58:26.000Z" - }, - "end": { - "$date": "2020-10-18T16:00:11.000Z" - }, - "events": [ - { - "uuid": "bc3b29eb-cc57-40f9-a91d-3f13bbb80130", - "start": { - "$date": "2020-10-18T15:58:26.000Z" - }, - "end": { - "$date": "2020-10-18T16:00:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "52780ff2-56c3-4fea-9119-c9487a93e008", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T16:14:08.000Z" - }, - "end": { - "$date": "2020-10-18T16:34:19.000Z" - }, - "events": [ - { - "uuid": "fed25d31-1633-47f6-b67b-e5b8235676ba", - "start": { - "$date": "2020-10-18T16:14:08.000Z" - }, - "end": { - "$date": "2020-10-18T16:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0ca3f43f-9ff1-45ae-874c-949c7cc1c3df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T16:41:24.000Z" - }, - "end": { - "$date": "2020-10-18T16:43:04.000Z" - }, - "events": [ - { - "uuid": "a8938785-be8e-4ca9-9e61-2cfe241f6607", - "start": { - "$date": "2020-10-18T16:41:24.000Z" - }, - "end": { - "$date": "2020-10-18T16:43:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "da5f4dfa-5efe-4982-a9ad-fa0194fda03b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T16:43:19.000Z" - }, - "end": { - "$date": "2020-10-18T16:54:25.000Z" - }, - "events": [ - { - "uuid": "358db44a-ccc9-4b1d-8aa0-9bf4ec03df1a", - "start": { - "$date": "2020-10-18T16:43:19.000Z" - }, - "end": { - "$date": "2020-10-18T16:54:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99f8e62b-58f9-4a10-b7e9-779e929d05a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T17:38:40.000Z" - }, - "end": { - "$date": "2020-10-18T17:38:49.000Z" - }, - "events": [ - { - "uuid": "8bdb1963-92fd-4dac-b6e7-b186a826eabf", - "start": { - "$date": "2020-10-18T17:38:40.000Z" - }, - "end": { - "$date": "2020-10-18T17:38:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7193221-48cf-4d5f-9f9b-16792dba1765", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T17:34:59.000Z" - }, - "end": { - "$date": "2020-10-18T17:38:46.000Z" - }, - "events": [ - { - "uuid": "82de8e3f-42d6-45d2-b2a2-73e579e7f3ac", - "start": { - "$date": "2020-10-18T17:34:59.000Z" - }, - "end": { - "$date": "2020-10-18T17:38:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "962c9ebd-668e-4b37-a70f-b102253da25f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-18T17:00:59.000Z" - }, - "end": { - "$date": "2020-10-18T17:33:36.000Z" - }, - "events": [ - { - "uuid": "61d80686-7a20-439b-a284-716de3072007", - "start": { - "$date": "2020-10-18T17:00:59.000Z" - }, - "end": { - "$date": "2020-10-18T17:33:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dec146a-da30-44c0-adff-3d2edb2e4267", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T17:37:07.000Z" - }, - "end": { - "$date": "2020-10-18T18:06:51.000Z" - }, - "events": [ - { - "uuid": "1126594e-4697-4587-a8f4-18a9c0216b85", - "start": { - "$date": "2020-10-18T17:37:07.000Z" - }, - "end": { - "$date": "2020-10-18T18:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea5814fe-38f6-4c83-aa42-f384defaae00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T17:42:11.000Z" - }, - "end": { - "$date": "2020-10-18T18:13:43.000Z" - }, - "events": [ - { - "uuid": "21957d3f-17f5-48b5-aae5-9a8205f4642d", - "start": { - "$date": "2020-10-18T17:42:11.000Z" - }, - "end": { - "$date": "2020-10-18T18:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90d15fe7-eabb-4a10-9b19-fd469728453c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T17:41:37.000Z" - }, - "end": { - "$date": "2020-10-18T18:20:28.000Z" - }, - "events": [ - { - "uuid": "bdaa6ab1-3276-42eb-8bfe-f4e1ad3a5dc8", - "start": { - "$date": "2020-10-18T17:41:37.000Z" - }, - "end": { - "$date": "2020-10-18T18:20:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9af66d54-24a0-4735-b3a7-ab99bac9a34f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T20:41:42.000Z" - }, - "end": { - "$date": "2020-10-18T20:44:01.000Z" - }, - "events": [ - { - "uuid": "fff5e9f3-cd87-4ee1-b650-e946ad68531f", - "start": { - "$date": "2020-10-18T20:41:42.000Z" - }, - "end": { - "$date": "2020-10-18T20:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7fdd6e9-4a1e-4e01-935b-14d21906ebde", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T18:09:32.000Z" - }, - "end": { - "$date": "2020-10-18T18:29:38.000Z" - }, - "events": [ - { - "uuid": "7a524da0-013d-49f1-a888-26698694e0d8", - "start": { - "$date": "2020-10-18T18:09:32.000Z" - }, - "end": { - "$date": "2020-10-18T18:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6758ca1f-9781-43d4-94bd-c44e6ea9c026", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T18:22:45.000Z" - }, - "end": { - "$date": "2020-10-18T18:49:54.000Z" - }, - "events": [ - { - "uuid": "d3ae7d5b-1818-4e62-9aee-bd2a8ea79fea", - "start": { - "$date": "2020-10-18T18:22:45.000Z" - }, - "end": { - "$date": "2020-10-18T18:49:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f6ee516d-5efa-4ec8-a780-72a969618904", - "uuid": "61edb958-1745-4ebe-a33a-5cc7a8ccdd43", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T18:22:59.000Z" - }, - "end": { - "$date": "2020-10-18T18:36:14.000Z" - }, - "events": [ - { - "uuid": "9e429a31-67d8-486e-b50d-12cdba10c45a", - "start": { - "$date": "2020-10-18T18:22:59.000Z" - }, - "end": { - "$date": "2020-10-18T18:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34678655-5333-42c0-8622-bb111544fb64", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T18:58:11.000Z" - }, - "end": { - "$date": "2020-10-18T19:43:15.000Z" - }, - "events": [ - { - "uuid": "60021a20-3b35-4509-9f30-3e2091f33751", - "start": { - "$date": "2020-10-18T18:58:11.000Z" - }, - "end": { - "$date": "2020-10-18T19:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9f88763-5c1d-4c37-9ca4-97e89d82ef66", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T18:57:33.000Z" - }, - "end": { - "$date": "2020-10-18T19:43:22.000Z" - }, - "events": [ - { - "uuid": "7411d234-ffce-4752-88df-75d89d2937d3", - "start": { - "$date": "2020-10-18T18:57:33.000Z" - }, - "end": { - "$date": "2020-10-18T19:43:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "a41f852f-f26e-4c07-9263-85cf7a00f956", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T18:57:13.000Z" - }, - "end": { - "$date": "2020-10-18T18:58:32.000Z" - }, - "events": [ - { - "uuid": "a56de603-2b9b-469e-a4a3-9ca51c407dc1", - "start": { - "$date": "2020-10-18T18:57:13.000Z" - }, - "end": { - "$date": "2020-10-18T18:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7ad9c5dd-a2ee-4e24-b0cf-7eba660b0761", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T19:00:33.000Z" - }, - "end": { - "$date": "2020-10-18T19:14:39.000Z" - }, - "events": [ - { - "uuid": "1a88cac9-5cd6-4dd4-89d1-72905c4bc1f1", - "start": { - "$date": "2020-10-18T19:00:33.000Z" - }, - "end": { - "$date": "2020-10-18T19:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "03b4e411-d241-419b-a5fa-35a15dc22b4b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T19:36:54.000Z" - }, - "end": { - "$date": "2020-10-18T20:34:05.000Z" - }, - "events": [ - { - "uuid": "6237b928-9753-494d-b5e1-a4d6d6096130", - "start": { - "$date": "2020-10-18T19:36:54.000Z" - }, - "end": { - "$date": "2020-10-18T20:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59d67fbb-6ee7-4b05-8bbb-034e0f7d2c74", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T19:47:42.000Z" - }, - "end": { - "$date": "2020-10-18T20:20:26.000Z" - }, - "events": [ - { - "uuid": "e4cdf761-e550-41fa-bfb6-2d867e2c78a5", - "start": { - "$date": "2020-10-18T19:47:42.000Z" - }, - "end": { - "$date": "2020-10-18T20:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f08b5b73-4df1-422a-aa4a-45166e3262e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T19:47:10.000Z" - }, - "end": { - "$date": "2020-10-18T20:20:33.000Z" - }, - "events": [ - { - "uuid": "6c1d8196-3777-4094-9483-ed42085dac4c", - "start": { - "$date": "2020-10-18T19:47:10.000Z" - }, - "end": { - "$date": "2020-10-18T20:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "290860f3-374e-416e-8ee7-61094ee95f2d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-18T20:16:48.000Z" - }, - "end": { - "$date": "2020-10-18T22:43:23.000Z" - }, - "events": [ - { - "uuid": "7eeab434-4fa9-477c-a617-3092d4132a49", - "start": { - "$date": "2020-10-18T20:16:48.000Z" - }, - "end": { - "$date": "2020-10-18T22:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f12b474b-bdf2-4513-8e39-213e07c7d08d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T20:23:43.000Z" - }, - "end": { - "$date": "2020-10-18T20:41:37.000Z" - }, - "events": [ - { - "uuid": "25da92ee-47c3-49a4-9604-140f9ee907f3", - "start": { - "$date": "2020-10-18T20:23:43.000Z" - }, - "end": { - "$date": "2020-10-18T20:41:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "243316d5-8512-412b-abfc-dd9fa55d36f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T20:23:41.000Z" - }, - "end": { - "$date": "2020-10-18T20:41:44.000Z" - }, - "events": [ - { - "uuid": "39cc9c3a-a031-4b9e-b766-0ed8b3b7bb56", - "start": { - "$date": "2020-10-18T20:23:41.000Z" - }, - "end": { - "$date": "2020-10-18T20:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "68eec110-b463-4442-badf-ad40b6391862", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T20:35:04.000Z" - }, - "end": { - "$date": "2020-10-18T20:39:05.000Z" - }, - "events": [ - { - "uuid": "99c3fade-7289-4c7d-842b-3d12c916ea6a", - "start": { - "$date": "2020-10-18T20:35:04.000Z" - }, - "end": { - "$date": "2020-10-18T20:39:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "23896a78-a8ca-40e0-908b-e9e3ac59423d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T20:40:07.000Z" - }, - "end": { - "$date": "2020-10-18T23:05:32.000Z" - }, - "events": [ - { - "uuid": "6a57a03f-1602-4d35-86c9-150325aa9eb8", - "start": { - "$date": "2020-10-18T20:40:07.000Z" - }, - "end": { - "$date": "2020-10-18T23:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "409a6a7e-82f2-42c3-8544-b58bacf23477", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T20:43:30.000Z" - }, - "end": { - "$date": "2020-10-18T20:46:01.000Z" - }, - "events": [ - { - "uuid": "4e23d5f2-6464-4e3e-9357-6c22568b8278", - "start": { - "$date": "2020-10-18T20:43:30.000Z" - }, - "end": { - "$date": "2020-10-18T20:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8048c610-b432-4fb7-9f51-0ad15eab4705", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-18T20:44:01.000Z" - }, - "end": { - "$date": "2020-10-18T20:47:09.000Z" - }, - "events": [ - { - "uuid": "916ed33a-ae62-4f98-b4ef-8e3f02985210", - "start": { - "$date": "2020-10-18T20:44:01.000Z" - }, - "end": { - "$date": "2020-10-18T20:47:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "b7ff6995-966b-42de-81be-8815ead6b39b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T21:31:20.000Z" - }, - "end": { - "$date": "2020-10-18T22:53:23.000Z" - }, - "events": [ - { - "uuid": "190f1200-03ec-45f2-bd4c-3cfc76dc90fb", - "start": { - "$date": "2020-10-18T21:31:20.000Z" - }, - "end": { - "$date": "2020-10-18T22:11:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "741d88ad-9782-4552-98e5-09b8f9f77fe9", - "start": { - "$date": "2020-10-18T22:11:20.000Z" - }, - "end": { - "$date": "2020-10-18T22:53:23.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "f870317b-82c3-43b9-b537-f88adf652f81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-18T22:09:51.000Z" - }, - "end": { - "$date": "2020-10-18T22:15:38.000Z" - }, - "events": [ - { - "uuid": "a0751f22-6cc3-4984-a15d-b3fa41d0a719", - "start": { - "$date": "2020-10-18T22:09:51.000Z" - }, - "end": { - "$date": "2020-10-18T22:15:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7a7fb8b-1e67-496a-8456-53dcd63934fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-18T22:14:15.000Z" - }, - "end": { - "$date": "2020-10-19T00:30:00.000Z" - }, - "events": [ - { - "uuid": "6969b0cd-8baf-489c-a203-f70ffbe702d6", - "start": { - "$date": "2020-10-18T22:14:15.000Z" - }, - "end": { - "$date": "2020-10-18T23:56:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "daefc70c-dfa8-4c7f-a73b-0486776d26dc", - "start": { - "$date": "2020-10-18T23:56:15.000Z" - }, - "end": { - "$date": "2020-10-19T00:20:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e990a0d3-f09d-422b-8a9a-1beab70e5313", - "start": { - "$date": "2020-10-19T00:20:15.000Z" - }, - "end": { - "$date": "2020-10-19T00:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4fc41e67-f9d7-45d4-9ed4-d53b56c28a03", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-18T22:42:56.000Z" - }, - "end": { - "$date": "2020-10-19T00:37:35.000Z" - }, - "events": [ - { - "uuid": "a46312a5-0c53-4876-a9bc-676c8a1b6871", - "start": { - "$date": "2020-10-18T22:42:56.000Z" - }, - "end": { - "$date": "2020-10-19T00:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a1e9c7da-6880-4c80-a9e6-71a0ae263e7c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-18T22:51:48.000Z" - }, - "end": { - "$date": "2020-10-19T05:15:59.000Z" - }, - "events": [ - { - "uuid": "5010b708-a41f-4f1d-b99b-b6d6177db7e3", - "start": { - "$date": "2020-10-18T22:51:48.000Z" - }, - "end": { - "$date": "2020-10-19T05:15:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ae1db1f4-964c-45bc-956b-a07732d69a90", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T23:31:57.000Z" - }, - "end": { - "$date": "2020-10-18T23:41:47.000Z" - }, - "events": [ - { - "uuid": "74e73be1-f125-4752-8d27-b68b4d230b32", - "start": { - "$date": "2020-10-18T23:31:57.000Z" - }, - "end": { - "$date": "2020-10-18T23:41:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "23feac28-a09c-440b-a567-f356c7518676", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-18T23:32:24.000Z" - }, - "end": { - "$date": "2020-10-19T01:36:12.000Z" - }, - "events": [ - { - "uuid": "c4992659-42d6-4e0f-88e3-5d160159f3a6", - "start": { - "$date": "2020-10-18T23:32:24.000Z" - }, - "end": { - "$date": "2020-10-19T00:01:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b3622bb-1501-4d95-9488-6db2007f8dea", - "start": { - "$date": "2020-10-19T00:01:24.000Z" - }, - "end": { - "$date": "2020-10-19T00:03:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "658f8ea5-8c3b-4cfc-95c4-adbfb450ed34", - "start": { - "$date": "2020-10-19T00:03:24.000Z" - }, - "end": { - "$date": "2020-10-19T01:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "6a9e67d9-3b4b-4191-923b-3134024698e0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-18T23:42:08.000Z" - }, - "end": { - "$date": "2020-10-19T01:03:05.000Z" - }, - "events": [ - { - "uuid": "f1f3b694-bf94-4ae5-88a1-37ea6993d6f7", - "start": { - "$date": "2020-10-18T23:42:08.000Z" - }, - "end": { - "$date": "2020-10-19T01:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ae6d3786-1830-4454-b5f2-333002a409ec", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-18T23:51:53.000Z" - }, - "end": { - "$date": "2020-10-18T23:54:18.000Z" - }, - "events": [ - { - "uuid": "a72c68b5-f988-40ef-9dc4-32b5d30c4238", - "start": { - "$date": "2020-10-18T23:51:53.000Z" - }, - "end": { - "$date": "2020-10-18T23:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1b2b6561-6454-4b96-9c45-8e6de44f567e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-19T00:05:55.000Z" - }, - "end": { - "$date": "2020-10-19T02:00:52.000Z" - }, - "events": [ - { - "uuid": "88b5a0ef-b4f8-47f4-9a8f-afd3a1594bd6", - "start": { - "$date": "2020-10-19T00:05:55.000Z" - }, - "end": { - "$date": "2020-10-19T02:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a197ef4-d685-4c1e-8cd3-46dd6b47e11b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T00:17:31.000Z" - }, - "end": { - "$date": "2020-10-19T00:30:00.000Z" - }, - "events": [ - { - "uuid": "8b5f2b46-01a6-4de2-b6d4-f72a66a3ff1e", - "start": { - "$date": "2020-10-19T00:17:31.000Z" - }, - "end": { - "$date": "2020-10-19T00:30:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1775ccb1-785d-4c03-bcd2-9ea16e955b4e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-19T00:21:32.000Z" - }, - "end": { - "$date": "2020-10-19T00:30:00.000Z" - }, - "events": [ - { - "uuid": "27888e4b-4500-4da4-bbac-4ead73d23897", - "start": { - "$date": "2020-10-19T00:21:32.000Z" - }, - "end": { - "$date": "2020-10-19T00:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2a7c7fe-0ad9-4d0d-97ce-dfd1a79bac0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T00:38:22.000Z" - }, - "end": { - "$date": "2020-10-19T00:59:35.000Z" - }, - "events": [ - { - "uuid": "72941384-2640-45d4-a6f9-96482fcde526", - "start": { - "$date": "2020-10-19T00:38:22.000Z" - }, - "end": { - "$date": "2020-10-19T00:59:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42a8ca9c-47f5-449d-9dcc-f9d3442b3ddc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-19T00:30:33.000Z" - }, - "end": { - "$date": "2020-10-19T00:32:29.000Z" - }, - "events": [ - { - "uuid": "27ae3e98-0b84-465e-9b89-36b157b3f19b", - "start": { - "$date": "2020-10-19T00:30:33.000Z" - }, - "end": { - "$date": "2020-10-19T00:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33821c2b-d2b3-45f0-8ec5-183aa678dc35", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-19T00:38:19.000Z" - }, - "end": { - "$date": "2020-10-19T00:59:35.000Z" - }, - "events": [ - { - "uuid": "cce37fb5-69a8-43df-b843-0ca2c13aff16", - "start": { - "$date": "2020-10-19T00:38:19.000Z" - }, - "end": { - "$date": "2020-10-19T00:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d2f32f2-aa3c-47eb-951a-f5b617176fe8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T01:18:11.000Z" - }, - "end": { - "$date": "2020-10-19T01:43:04.000Z" - }, - "events": [ - { - "uuid": "e7fcb5df-f9b7-4d04-88af-eeb09defcd8e", - "start": { - "$date": "2020-10-19T01:18:11.000Z" - }, - "end": { - "$date": "2020-10-19T01:43:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "9f4c4bfc-eb8a-436f-adbe-ae2bbb0ea3ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-19T01:14:03.000Z" - }, - "end": { - "$date": "2020-10-19T01:37:04.000Z" - }, - "events": [ - { - "uuid": "2e40a1af-d053-4583-b5fe-3ca12b946186", - "start": { - "$date": "2020-10-19T01:14:03.000Z" - }, - "end": { - "$date": "2020-10-19T01:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45f9f1af-78d7-41b8-9946-d6ee5cd50b0a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T01:43:46.000Z" - }, - "end": { - "$date": "2020-10-19T01:54:48.000Z" - }, - "events": [ - { - "uuid": "a9dbb5cd-07c7-459b-a11f-91dae685138b", - "start": { - "$date": "2020-10-19T01:43:46.000Z" - }, - "end": { - "$date": "2020-10-19T01:54:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "476f374e-d602-4e8c-ae4b-33aeb2146f60", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T02:50:19.000Z" - }, - "end": { - "$date": "2020-10-19T03:07:19.000Z" - }, - "events": [ - { - "uuid": "7ab65b2e-7ffa-445c-91fb-b75ae28a2f7d", - "start": { - "$date": "2020-10-19T02:50:19.000Z" - }, - "end": { - "$date": "2020-10-19T03:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "9e2e7af8-0da2-4563-9c7e-41e11480f031", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-19T02:50:08.000Z" - }, - "end": { - "$date": "2020-10-19T02:51:23.000Z" - }, - "events": [ - { - "uuid": "d2e3d7cf-e1d5-411f-bf1f-8d1f4029f95e", - "start": { - "$date": "2020-10-19T02:50:08.000Z" - }, - "end": { - "$date": "2020-10-19T02:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a61d94d-b869-404d-a80a-c82bfa4531e0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T03:12:04.000Z" - }, - "end": { - "$date": "2020-10-19T03:33:37.000Z" - }, - "events": [ - { - "uuid": "36189f3e-669d-4b27-8ccf-c1a2729829b3", - "start": { - "$date": "2020-10-19T03:12:04.000Z" - }, - "end": { - "$date": "2020-10-19T03:33:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "21806871-9069-4099-82f5-b3498e73ff5f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-19T03:27:25.000Z" - }, - "end": { - "$date": "2020-10-19T04:41:43.000Z" - }, - "events": [ - { - "uuid": "ab46ca52-68d2-4a21-80f1-dbf2012cd95d", - "start": { - "$date": "2020-10-19T03:27:25.000Z" - }, - "end": { - "$date": "2020-10-19T04:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "eb1fd504-a8d5-4fcc-89ac-c662e8130a2f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-19T03:30:23.000Z" - }, - "end": { - "$date": "2020-10-19T04:41:31.000Z" - }, - "events": [ - { - "uuid": "44d2b7c6-034a-4216-b8bc-bc8218634c9d", - "start": { - "$date": "2020-10-19T03:30:23.000Z" - }, - "end": { - "$date": "2020-10-19T04:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cb8ebee-1945-4abb-8508-7038d5bc2ddc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T03:42:55.000Z" - }, - "end": { - "$date": "2020-10-19T04:03:09.000Z" - }, - "events": [ - { - "uuid": "f6211ca7-b045-4889-bd21-f10047f312b6", - "start": { - "$date": "2020-10-19T03:42:55.000Z" - }, - "end": { - "$date": "2020-10-19T04:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fd7e1d5-919a-494c-be81-e7d0176c6805", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-19T03:42:57.000Z" - }, - "end": { - "$date": "2020-10-19T04:03:09.000Z" - }, - "events": [ - { - "uuid": "4873a09d-1aeb-46f8-a1ea-82aba1c7eaf3", - "start": { - "$date": "2020-10-19T03:42:57.000Z" - }, - "end": { - "$date": "2020-10-19T04:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9060f35-ce53-4dee-8f35-63e9aab43706", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T04:15:08.000Z" - }, - "end": { - "$date": "2020-10-19T04:45:56.000Z" - }, - "events": [ - { - "uuid": "dfc40f4d-6872-4b64-bff7-d1a1ce7c9b50", - "start": { - "$date": "2020-10-19T04:15:08.000Z" - }, - "end": { - "$date": "2020-10-19T04:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c890b4f-2168-439e-9ab1-25dae875e19d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-19T04:16:52.000Z" - }, - "end": { - "$date": "2020-10-19T04:45:53.000Z" - }, - "events": [ - { - "uuid": "13bbbed5-a35b-4896-8678-9b3dc1f6d4ae", - "start": { - "$date": "2020-10-19T04:16:52.000Z" - }, - "end": { - "$date": "2020-10-19T04:45:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2afe04a7-3de5-4a44-bfc9-3847e6227da3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-19T04:15:04.000Z" - }, - "end": { - "$date": "2020-10-19T04:46:01.000Z" - }, - "events": [ - { - "uuid": "d4021e96-b1fd-4183-8eb0-fb630b63c891", - "start": { - "$date": "2020-10-19T04:15:04.000Z" - }, - "end": { - "$date": "2020-10-19T04:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f0eb63b-a311-4a45-82e5-685f192b2256", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T04:54:59.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:43.000Z" - }, - "events": [ - { - "uuid": "a39e998c-98dd-4428-a34a-faa29c39e680", - "start": { - "$date": "2020-10-19T04:54:59.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2208274-f487-459e-9536-6edc6f80f01d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-19T04:54:56.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:37.000Z" - }, - "events": [ - { - "uuid": "29697cd2-1b08-4d48-b317-9d1537b1aaf0", - "start": { - "$date": "2020-10-19T04:54:56.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70894600-e2c6-4d15-9734-67d265eea11d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-19T04:55:33.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:43.000Z" - }, - "events": [ - { - "uuid": "4953ff27-758b-41a3-8418-73bd5dd1fc86", - "start": { - "$date": "2020-10-19T04:55:33.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73fafe44-3b6f-4309-ae56-399f84065f70", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-19T04:54:52.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:43.000Z" - }, - "events": [ - { - "uuid": "2a61fa98-5d33-4743-8f27-174cba1bc308", - "start": { - "$date": "2020-10-19T04:54:52.000Z" - }, - "end": { - "$date": "2020-10-19T05:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81961d48-0b2c-4027-ac5f-25f793f9d612", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T05:27:10.000Z" - }, - "end": { - "$date": "2020-10-19T06:06:00.000Z" - }, - "events": [ - { - "uuid": "e603ce91-e4f2-42fd-b4f9-c5f4197739c3", - "start": { - "$date": "2020-10-19T05:27:10.000Z" - }, - "end": { - "$date": "2020-10-19T06:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcea24eb-98bf-40e3-b529-a0a9b27f2e03", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-19T05:27:07.000Z" - }, - "end": { - "$date": "2020-10-19T06:05:53.000Z" - }, - "events": [ - { - "uuid": "b39bc4d0-e0d9-4ff1-8d2b-6176c82315b0", - "start": { - "$date": "2020-10-19T05:27:07.000Z" - }, - "end": { - "$date": "2020-10-19T06:05:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b46d2e07-ae45-4774-af7a-4457f7c906fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-19T05:27:08.000Z" - }, - "end": { - "$date": "2020-10-19T06:05:55.000Z" - }, - "events": [ - { - "uuid": "3ead994b-2276-4a36-b8fd-00792e1fddb2", - "start": { - "$date": "2020-10-19T05:27:08.000Z" - }, - "end": { - "$date": "2020-10-19T06:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9fa26aa-22a1-43aa-9237-d251ee709a25", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-19T05:27:14.000Z" - }, - "end": { - "$date": "2020-10-19T06:06:01.000Z" - }, - "events": [ - { - "uuid": "ba9eaff7-7c32-47d5-9149-fc7417fe3c5f", - "start": { - "$date": "2020-10-19T05:27:14.000Z" - }, - "end": { - "$date": "2020-10-19T06:06:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fe0b56a5-f01c-4a8b-b6f6-095c558674d4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-19T05:35:03.000Z" - }, - "end": { - "$date": "2020-10-19T07:06:13.000Z" - }, - "events": [ - { - "uuid": "720086eb-6699-450f-90f5-ffd9d71d66b5", - "start": { - "$date": "2020-10-19T05:35:03.000Z" - }, - "end": { - "$date": "2020-10-19T07:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "90ad4e23-63af-4ad5-a8f5-63175b17e2f9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-19T06:07:28.000Z" - }, - "end": { - "$date": "2020-10-19T07:02:41.000Z" - }, - "events": [ - { - "uuid": "e9a1db23-9414-4922-8068-a300432d2e70", - "start": { - "$date": "2020-10-19T06:07:28.000Z" - }, - "end": { - "$date": "2020-10-19T07:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a052880d-9e8f-4014-98c3-4260938c30bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T06:24:53.000Z" - }, - "end": { - "$date": "2020-10-19T07:53:29.000Z" - }, - "events": [ - { - "uuid": "43aceeff-bff9-4fa4-b852-15c4bec75221", - "start": { - "$date": "2020-10-19T06:24:53.000Z" - }, - "end": { - "$date": "2020-10-19T07:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "76910ff1-a05e-4596-aada-9c52a9019cfd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-19T15:53:15.000Z" - }, - "end": { - "$date": "2020-10-19T16:26:31.000Z" - }, - "events": [ - { - "uuid": "a2cc0179-cc55-4eee-93c6-72fe84775503", - "start": { - "$date": "2020-10-19T15:53:15.000Z" - }, - "end": { - "$date": "2020-10-19T16:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cd50db78-7ec9-4c50-9066-f26bcc412087", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-19T17:13:59.000Z" - }, - "end": { - "$date": "2020-10-19T19:44:13.000Z" - }, - "events": [ - { - "uuid": "a556b9d1-1969-464f-b353-133e04f0e0bb", - "start": { - "$date": "2020-10-19T17:13:59.000Z" - }, - "end": { - "$date": "2020-10-19T19:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "86f42964-263f-4b96-a0c4-2828b1e7a3aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-19T17:16:41.000Z" - }, - "end": { - "$date": "2020-10-19T17:33:03.000Z" - }, - "events": [ - { - "uuid": "5dc8d61e-beed-40f2-a540-1c4f64608c48", - "start": { - "$date": "2020-10-19T17:16:41.000Z" - }, - "end": { - "$date": "2020-10-19T17:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "71b6d592-e63f-48b0-96a4-9a9345cdaf4c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-19T17:20:59.000Z" - }, - "end": { - "$date": "2020-10-19T17:55:23.000Z" - }, - "events": [ - { - "uuid": "3e630651-be2c-4059-ba1e-0f69fc491fb3", - "start": { - "$date": "2020-10-19T17:20:59.000Z" - }, - "end": { - "$date": "2020-10-19T17:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "93e0fd58-3257-4ef5-9de2-11ae376e0034", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-19T17:52:26.000Z" - }, - "end": { - "$date": "2020-10-19T21:56:15.000Z" - }, - "events": [ - { - "uuid": "c1116a61-4566-440b-b654-10d2eb38739f", - "start": { - "$date": "2020-10-19T17:52:26.000Z" - }, - "end": { - "$date": "2020-10-19T21:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "17a838cf-de6f-41b8-8604-8fe028486fec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-19T19:02:18.000Z" - }, - "end": { - "$date": "2020-10-19T19:26:50.000Z" - }, - "events": [ - { - "uuid": "acfbfd4d-437b-4469-a7e7-1f4ac099cae1", - "start": { - "$date": "2020-10-19T19:02:18.000Z" - }, - "end": { - "$date": "2020-10-19T19:26:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "869b5cf0-4bc3-42b1-93f9-cb5209e8eb32", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-19T19:33:46.000Z" - }, - "end": { - "$date": "2020-10-19T20:16:07.000Z" - }, - "events": [ - { - "uuid": "e2bbc5a0-8162-45de-a12b-973549c374dc", - "start": { - "$date": "2020-10-19T19:33:46.000Z" - }, - "end": { - "$date": "2020-10-19T20:16:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "587928d1-06b0-46c4-ab06-f7bab5a6fbe7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-19T21:43:50.000Z" - }, - "end": { - "$date": "2020-10-19T23:55:51.000Z" - }, - "events": [ - { - "uuid": "a332ac1f-b6ff-418b-ad5a-1c6cc27375c4", - "start": { - "$date": "2020-10-19T21:43:50.000Z" - }, - "end": { - "$date": "2020-10-19T23:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7fd82572-3465-4567-a94d-8e288da200b6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-19T21:47:58.000Z" - }, - "end": { - "$date": "2020-10-19T23:24:03.000Z" - }, - "events": [ - { - "uuid": "4fffed4e-8ffc-469c-89cf-37a83b0b5d7b", - "start": { - "$date": "2020-10-19T21:47:58.000Z" - }, - "end": { - "$date": "2020-10-19T23:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "a8883cac-7163-4075-80fa-f6c553dcb54a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-19T21:55:56.000Z" - }, - "end": { - "$date": "2020-10-19T21:59:08.000Z" - }, - "events": [ - { - "uuid": "160b8fce-4413-4e83-bd03-5a59397dbc7a", - "start": { - "$date": "2020-10-19T21:55:56.000Z" - }, - "end": { - "$date": "2020-10-19T21:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1bb86133-5cb4-4693-9130-b7c879972ea3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-19T22:06:42.000Z" - }, - "end": { - "$date": "2020-10-19T22:46:34.000Z" - }, - "events": [ - { - "uuid": "a10b8403-697e-41ec-84b5-d98a83c9af76", - "start": { - "$date": "2020-10-19T22:06:42.000Z" - }, - "end": { - "$date": "2020-10-19T22:17:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb46c8ef-94df-45a6-9efe-22cfe63b764a", - "start": { - "$date": "2020-10-19T22:17:42.000Z" - }, - "end": { - "$date": "2020-10-19T22:19:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2b96a64-113e-4e93-9dd4-54f6f67f6ad9", - "start": { - "$date": "2020-10-19T22:19:42.000Z" - }, - "end": { - "$date": "2020-10-19T22:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2e7c949-3f6c-4610-b065-b04a3c5c088e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-19T23:08:00.000Z" - }, - "end": { - "$date": "2020-10-19T23:30:25.000Z" - }, - "events": [ - { - "uuid": "589eaf5c-eedf-420b-9ece-89fd7394a791", - "start": { - "$date": "2020-10-19T23:08:00.000Z" - }, - "end": { - "$date": "2020-10-19T23:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62ab9e3c-2ad9-425e-86e7-ed8811806360", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-19T23:34:41.000Z" - }, - "end": { - "$date": "2020-10-19T23:41:26.000Z" - }, - "events": [ - { - "uuid": "600ee004-34f0-4985-b862-397c8aa53c96", - "start": { - "$date": "2020-10-19T23:34:41.000Z" - }, - "end": { - "$date": "2020-10-19T23:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "8c5117f4-7820-4942-bc78-c0f6b3723486", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-19T23:51:07.000Z" - }, - "end": { - "$date": "2020-10-20T00:23:23.000Z" - }, - "events": [ - { - "uuid": "6611279a-d81f-4bb1-85cb-5e975ae5407a", - "start": { - "$date": "2020-10-19T23:51:07.000Z" - }, - "end": { - "$date": "2020-10-20T00:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "680f8b12-eb25-47e8-9d53-a36b2f06fb32", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-20T00:27:38.000Z" - }, - "end": { - "$date": "2020-10-20T00:38:58.000Z" - }, - "events": [ - { - "uuid": "80facbc7-c2a7-4b15-96c2-6a88118bca72", - "start": { - "$date": "2020-10-20T00:27:38.000Z" - }, - "end": { - "$date": "2020-10-20T00:38:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "028841bc-3734-40c5-873d-7b0791dc1235", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-20T00:34:21.000Z" - }, - "end": { - "$date": "2020-10-20T00:35:27.000Z" - }, - "events": [ - { - "uuid": "261dc7c3-949d-442d-8671-46be8cbcb1df", - "start": { - "$date": "2020-10-20T00:34:21.000Z" - }, - "end": { - "$date": "2020-10-20T00:35:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5652f89a-b3d2-4c83-8617-5ee9431aca66", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-20T00:37:17.000Z" - }, - "end": { - "$date": "2020-10-20T01:25:27.000Z" - }, - "events": [ - { - "uuid": "43c36775-8dca-4c3b-9f1a-abf40c882692", - "start": { - "$date": "2020-10-20T00:37:17.000Z" - }, - "end": { - "$date": "2020-10-20T01:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d873912-5239-4027-aa0b-cde3c6b2eab8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-20T00:48:27.000Z" - }, - "end": { - "$date": "2020-10-20T01:25:17.000Z" - }, - "events": [ - { - "uuid": "31f3fee2-58d9-43cf-8577-25fabbfaf22e", - "start": { - "$date": "2020-10-20T00:48:27.000Z" - }, - "end": { - "$date": "2020-10-20T01:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "195ea88c-02ba-4aff-a854-c92cfdbd04e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-20T00:45:14.000Z" - }, - "end": { - "$date": "2020-10-20T00:47:04.000Z" - }, - "events": [ - { - "uuid": "5da90fa1-f145-4d89-8f83-1d5364ba3955", - "start": { - "$date": "2020-10-20T00:45:14.000Z" - }, - "end": { - "$date": "2020-10-20T00:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "9a0abcb9-042f-45ba-a01e-8fbe29a7ffeb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-20T00:45:16.000Z" - }, - "end": { - "$date": "2020-10-20T00:46:18.000Z" - }, - "events": [ - { - "uuid": "d89c8b8f-c9f3-43ed-a03d-8a684e83cd43", - "start": { - "$date": "2020-10-20T00:45:16.000Z" - }, - "end": { - "$date": "2020-10-20T00:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28830307-0998-4b2d-a9a8-6e8feba55ff8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-20T00:47:21.000Z" - }, - "end": { - "$date": "2020-10-20T01:25:15.000Z" - }, - "events": [ - { - "uuid": "62679f82-2125-491d-a107-81a8b937de7a", - "start": { - "$date": "2020-10-20T00:47:21.000Z" - }, - "end": { - "$date": "2020-10-20T01:25:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "befc55a6-cd42-4bd1-97df-e2c9026114e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-20T01:02:51.000Z" - }, - "end": { - "$date": "2020-10-20T02:32:48.000Z" - }, - "events": [ - { - "uuid": "b48393f0-1090-4a41-852e-991b51bf0bb4", - "start": { - "$date": "2020-10-20T01:02:51.000Z" - }, - "end": { - "$date": "2020-10-20T02:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "3353a591-87be-463e-9a26-c5ecce260ae3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-20T00:47:54.000Z" - }, - "end": { - "$date": "2020-10-20T01:02:50.000Z" - }, - "events": [ - { - "uuid": "93cd283d-64de-4180-8776-fe007b1da6ff", - "start": { - "$date": "2020-10-20T00:47:54.000Z" - }, - "end": { - "$date": "2020-10-20T01:02:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9b172a4d-9243-48a8-aa52-fe299a85f33e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-20T01:03:05.000Z" - }, - "end": { - "$date": "2020-10-20T02:12:07.000Z" - }, - "events": [ - { - "uuid": "7605b396-81c7-4305-8424-b854988fc03c", - "start": { - "$date": "2020-10-20T01:03:05.000Z" - }, - "end": { - "$date": "2020-10-20T02:12:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9e6ce03c-b2c8-41f9-8951-7ef2392445f6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-20T01:21:55.000Z" - }, - "end": { - "$date": "2020-10-20T02:03:02.000Z" - }, - "events": [ - { - "uuid": "015e882d-2b7b-4b0d-b268-f43a103ce758", - "start": { - "$date": "2020-10-20T01:21:55.000Z" - }, - "end": { - "$date": "2020-10-20T02:03:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0441523-1bf4-4c23-9f8c-056023d9640d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-20T01:25:21.000Z" - }, - "end": { - "$date": "2020-10-20T01:29:41.000Z" - }, - "events": [ - { - "uuid": "5d1c1eba-ae0c-4c49-88e1-2e54b8411d8c", - "start": { - "$date": "2020-10-20T01:25:21.000Z" - }, - "end": { - "$date": "2020-10-20T01:29:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "29653fe7-ca00-4d88-802c-30995307a849", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-20T01:37:48.000Z" - }, - "end": { - "$date": "2020-10-20T02:58:45.000Z" - }, - "events": [ - { - "uuid": "055c86b5-8642-4ced-a3fa-8626f5528d64", - "start": { - "$date": "2020-10-20T01:37:48.000Z" - }, - "end": { - "$date": "2020-10-20T02:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c265ecb1-10d0-457b-9a68-e74194cf7702", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-20T02:33:23.000Z" - }, - "end": { - "$date": "2020-10-20T02:57:29.000Z" - }, - "events": [ - { - "uuid": "3204a4e7-8b28-46f3-af23-b149e51da624", - "start": { - "$date": "2020-10-20T02:33:23.000Z" - }, - "end": { - "$date": "2020-10-20T02:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "31b3c706-fb1e-4973-b186-62946569d319", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-20T02:52:31.000Z" - }, - "end": { - "$date": "2020-10-20T04:00:56.000Z" - }, - "events": [ - { - "uuid": "79801663-f197-492d-9c0d-3101b770d14a", - "start": { - "$date": "2020-10-20T02:52:31.000Z" - }, - "end": { - "$date": "2020-10-20T04:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b812df53-266b-4e0a-9cbc-c9d3997b3c31", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-20T02:54:38.000Z" - }, - "end": { - "$date": "2020-10-20T04:05:10.000Z" - }, - "events": [ - { - "uuid": "d53777c1-975e-4b18-8abc-95381ae4e0ac", - "start": { - "$date": "2020-10-20T02:54:38.000Z" - }, - "end": { - "$date": "2020-10-20T04:05:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "5ca766ff-7162-4c9e-a9c2-0dcb317f634b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-20T02:54:53.000Z" - }, - "end": { - "$date": "2020-10-20T03:03:13.000Z" - }, - "events": [ - { - "uuid": "23c87a44-db6b-4139-81b9-3cf1904a0d4d", - "start": { - "$date": "2020-10-20T02:54:53.000Z" - }, - "end": { - "$date": "2020-10-20T03:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5811f62a-2e3f-4c30-8d82-b97462a41e72", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-20T03:10:15.000Z" - }, - "end": { - "$date": "2020-10-20T07:36:13.000Z" - }, - "events": [ - { - "uuid": "e4516fd8-791f-4057-8c5c-91e1435b132b", - "start": { - "$date": "2020-10-20T03:10:15.000Z" - }, - "end": { - "$date": "2020-10-20T07:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "981d3654-2ceb-4089-b358-60207b469d3c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-20T03:22:04.000Z" - }, - "end": { - "$date": "2020-10-20T03:52:15.000Z" - }, - "events": [ - { - "uuid": "47b1039d-60e0-4e1f-abbe-385ee5ddcf15", - "start": { - "$date": "2020-10-20T03:22:04.000Z" - }, - "end": { - "$date": "2020-10-20T03:52:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e1387d9a-5af1-4299-917b-5220e5e422f0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-20T03:28:28.000Z" - }, - "end": { - "$date": "2020-10-20T05:41:50.000Z" - }, - "events": [ - { - "uuid": "7b980dd9-1f69-44ce-8f40-db4b29ebb45a", - "start": { - "$date": "2020-10-20T03:28:28.000Z" - }, - "end": { - "$date": "2020-10-20T05:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7258a4df-f694-4cd9-86b9-de35a02c6056", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-20T04:10:50.000Z" - }, - "end": { - "$date": "2020-10-20T04:58:04.000Z" - }, - "events": [ - { - "uuid": "7e80b58e-2a8c-40a3-96e1-41fd055d9b79", - "start": { - "$date": "2020-10-20T04:10:50.000Z" - }, - "end": { - "$date": "2020-10-20T04:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d9c7e42d-b308-41e4-bf22-4263ea8276b3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-20T04:17:31.000Z" - }, - "end": { - "$date": "2020-10-20T05:41:28.000Z" - }, - "events": [ - { - "uuid": "8389c058-d06b-46b9-b008-8d049fa33d8a", - "start": { - "$date": "2020-10-20T04:17:31.000Z" - }, - "end": { - "$date": "2020-10-20T05:41:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46579959-4795-4f9d-a780-2386cd7c089d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-20T04:43:20.000Z" - }, - "end": { - "$date": "2020-10-20T05:10:23.000Z" - }, - "events": [ - { - "uuid": "50fcbbaa-b101-4fe5-8a45-ede07bc8e2cf", - "start": { - "$date": "2020-10-20T04:43:20.000Z" - }, - "end": { - "$date": "2020-10-20T05:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a21e0216-c20b-4327-8037-13700543fa2d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-20T05:21:44.000Z" - }, - "end": { - "$date": "2020-10-20T05:51:10.000Z" - }, - "events": [ - { - "uuid": "a803b5ab-d564-4a37-aafa-630f0ba7ad2b", - "start": { - "$date": "2020-10-20T05:21:44.000Z" - }, - "end": { - "$date": "2020-10-20T05:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a920b01e-1208-470e-ae70-8b6ea1bc70d8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-20T05:31:36.000Z" - }, - "end": { - "$date": "2020-10-20T06:04:09.000Z" - }, - "events": [ - { - "uuid": "7e104f6c-118c-401f-83f9-b5d416fdea6a", - "start": { - "$date": "2020-10-20T05:31:36.000Z" - }, - "end": { - "$date": "2020-10-20T06:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "d56d54e8-c215-4ed5-be77-21de72d2bc82", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-20T05:41:25.000Z" - }, - "end": { - "$date": "2020-10-20T07:19:06.000Z" - }, - "events": [ - { - "uuid": "a3a4e490-7916-4ce9-85e8-2c5d3b8bd79c", - "start": { - "$date": "2020-10-20T05:41:25.000Z" - }, - "end": { - "$date": "2020-10-20T07:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "648011c9-f6da-40c6-b6d6-f9200b5be39e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-20T15:03:30.000Z" - }, - "end": { - "$date": "2020-10-20T15:11:02.000Z" - }, - "events": [ - { - "uuid": "8913383d-a1af-4c5f-a980-bacd9ac3cc96", - "start": { - "$date": "2020-10-20T15:03:30.000Z" - }, - "end": { - "$date": "2020-10-20T15:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "01bdb5b9-1943-421a-b081-f5b03153ed66", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-20T15:12:07.000Z" - }, - "end": { - "$date": "2020-10-20T15:27:20.000Z" - }, - "events": [ - { - "uuid": "a65f7309-203b-4fcb-9d4c-243d1afa1ceb", - "start": { - "$date": "2020-10-20T15:12:07.000Z" - }, - "end": { - "$date": "2020-10-20T15:27:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "59858bf9-7787-4897-97de-42cd95bb006b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-20T15:12:08.000Z" - }, - "end": { - "$date": "2020-10-20T15:14:28.000Z" - }, - "events": [ - { - "uuid": "4d1d6461-593c-455e-8627-96b69a52e498", - "start": { - "$date": "2020-10-20T15:12:08.000Z" - }, - "end": { - "$date": "2020-10-20T15:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0ca2dd9d-3c59-49ad-b858-7d14561387a8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-20T16:32:07.000Z" - }, - "end": { - "$date": "2020-10-20T16:47:53.000Z" - }, - "events": [ - { - "uuid": "027402c2-7653-43c2-94cd-ea5603bf9077", - "start": { - "$date": "2020-10-20T16:32:07.000Z" - }, - "end": { - "$date": "2020-10-20T16:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "574b5591-e7a4-4b77-bc70-f560fc104dba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-20T18:28:10.000Z" - }, - "end": { - "$date": "2020-10-20T18:51:46.000Z" - }, - "events": [ - { - "uuid": "10814571-5798-4675-b999-6d3b895f2e67", - "start": { - "$date": "2020-10-20T18:28:10.000Z" - }, - "end": { - "$date": "2020-10-20T18:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3798add-1519-40b3-b35e-818e70e9b95c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-20T20:22:39.000Z" - }, - "end": { - "$date": "2020-10-20T20:26:13.000Z" - }, - "events": [ - { - "uuid": "81cdc7ea-8bde-43d2-a886-a8442eb09564", - "start": { - "$date": "2020-10-20T20:22:39.000Z" - }, - "end": { - "$date": "2020-10-20T20:26:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "b504ee2e-d77f-43cb-aa3c-4a6f2042367a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-20T20:53:33.000Z" - }, - "end": { - "$date": "2020-10-20T23:20:22.000Z" - }, - "events": [ - { - "uuid": "829f325f-1c5c-4422-a0ee-7bb5904e6232", - "start": { - "$date": "2020-10-20T20:53:33.000Z" - }, - "end": { - "$date": "2020-10-20T23:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "9bcee310-eede-4f58-8850-b273375a1512", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-20T21:42:14.000Z" - }, - "end": { - "$date": "2020-10-20T23:11:59.000Z" - }, - "events": [ - { - "uuid": "10b52b1c-c6e8-4b2e-a05f-8deaa5b0933c", - "start": { - "$date": "2020-10-20T21:42:14.000Z" - }, - "end": { - "$date": "2020-10-20T23:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "960bfe05-2633-4977-a2d2-7a47c857acc9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-20T21:39:06.000Z" - }, - "end": { - "$date": "2020-10-21T01:53:48.000Z" - }, - "events": [ - { - "uuid": "756f0119-fdbc-462e-9c9f-2b8de7ce8136", - "start": { - "$date": "2020-10-20T21:39:06.000Z" - }, - "end": { - "$date": "2020-10-21T01:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "79cca223-3cf2-47e4-9908-22d1e29c502f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-20T22:02:12.000Z" - }, - "end": { - "$date": "2020-10-20T22:54:38.000Z" - }, - "events": [ - { - "uuid": "866902d1-d13d-411d-b4e0-94e34d8423f5", - "start": { - "$date": "2020-10-20T22:02:12.000Z" - }, - "end": { - "$date": "2020-10-20T22:54:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0a9e28bf-5fa6-45cb-9382-995da39dba0f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-20T23:05:36.000Z" - }, - "end": { - "$date": "2020-10-21T00:41:12.000Z" - }, - "events": [ - { - "uuid": "0ccaf465-3a3b-4568-b254-499d15ef7d70", - "start": { - "$date": "2020-10-20T23:05:36.000Z" - }, - "end": { - "$date": "2020-10-21T00:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f474a333-dc4d-41b9-a1ea-71517bd3cf34", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-20T23:15:25.000Z" - }, - "end": { - "$date": "2020-10-20T23:39:00.000Z" - }, - "events": [ - { - "uuid": "46183b01-8338-47c2-bee7-df33468e80c9", - "start": { - "$date": "2020-10-20T23:15:25.000Z" - }, - "end": { - "$date": "2020-10-20T23:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e0c48a11-9d63-40fc-ac16-87e7c2fa394d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-20T23:38:00.000Z" - }, - "end": { - "$date": "2020-10-21T00:56:23.000Z" - }, - "events": [ - { - "uuid": "59a691f4-04e0-4873-a236-2705ae054a47", - "start": { - "$date": "2020-10-20T23:38:00.000Z" - }, - "end": { - "$date": "2020-10-21T00:55:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6c3cc17c-bf25-46bd-84bd-1a76d2fadaf8", - "start": { - "$date": "2020-10-21T00:55:00.000Z" - }, - "end": { - "$date": "2020-10-21T00:56:23.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "7c4562cb-b1d5-4caf-bc1e-dd91149a98a1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-20T23:40:01.000Z" - }, - "end": { - "$date": "2020-10-21T01:08:28.000Z" - }, - "events": [ - { - "uuid": "a49cff28-7c3c-4b3f-b052-541ae281949b", - "start": { - "$date": "2020-10-20T23:40:01.000Z" - }, - "end": { - "$date": "2020-10-21T01:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "18672779-7388-4f48-b911-fffca1b4cf57", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-20T23:47:13.000Z" - }, - "end": { - "$date": "2020-10-21T00:44:05.000Z" - }, - "events": [ - { - "uuid": "05548f0e-e8c4-4517-ad94-890ba30adbec", - "start": { - "$date": "2020-10-20T23:47:13.000Z" - }, - "end": { - "$date": "2020-10-21T00:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "173aef65-e8ee-4daf-8f72-190a98817594", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T00:26:23.000Z" - }, - "end": { - "$date": "2020-10-21T00:53:53.000Z" - }, - "events": [ - { - "uuid": "6c35ddd1-53bc-45b6-929a-5ec22508b3ac", - "start": { - "$date": "2020-10-21T00:26:23.000Z" - }, - "end": { - "$date": "2020-10-21T00:53:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6afe840f-0396-4955-961b-8a50e267ca65", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-21T00:26:21.000Z" - }, - "end": { - "$date": "2020-10-21T00:53:52.000Z" - }, - "events": [ - { - "uuid": "8660db34-46e7-446f-b5f0-34822a11df73", - "start": { - "$date": "2020-10-21T00:26:21.000Z" - }, - "end": { - "$date": "2020-10-21T00:53:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a980224f-4f28-4cbf-9db2-184510defe42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T00:59:44.000Z" - }, - "end": { - "$date": "2020-10-21T01:17:53.000Z" - }, - "events": [ - { - "uuid": "bc3db268-d971-40a4-8a6d-3ea229feaf5e", - "start": { - "$date": "2020-10-21T00:59:44.000Z" - }, - "end": { - "$date": "2020-10-21T01:17:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac219a32-2bfd-4c76-83ae-8a72da3a4d3f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-21T00:59:43.000Z" - }, - "end": { - "$date": "2020-10-21T01:17:59.000Z" - }, - "events": [ - { - "uuid": "4a5ca07e-3aaf-43e2-8cc9-41e4f0b27833", - "start": { - "$date": "2020-10-21T00:59:43.000Z" - }, - "end": { - "$date": "2020-10-21T01:17:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24c9196c-476e-4807-9d5d-2d1628577dba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T01:21:20.000Z" - }, - "end": { - "$date": "2020-10-21T01:43:23.000Z" - }, - "events": [ - { - "uuid": "3a5d476c-c68d-4b5f-a945-0f2dc554733b", - "start": { - "$date": "2020-10-21T01:21:20.000Z" - }, - "end": { - "$date": "2020-10-21T01:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d04f4649-9694-447c-8df9-6b59c2bd9415", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-21T01:21:19.000Z" - }, - "end": { - "$date": "2020-10-21T01:43:26.000Z" - }, - "events": [ - { - "uuid": "1f0cb70b-eb6e-4e3e-95d3-57b6a39b3f95", - "start": { - "$date": "2020-10-21T01:21:19.000Z" - }, - "end": { - "$date": "2020-10-21T01:43:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "de1c127e-dad6-4215-9473-282695b30e93", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-21T01:48:19.000Z" - }, - "end": { - "$date": "2020-10-21T01:52:07.000Z" - }, - "events": [ - { - "uuid": "a58d91a8-3a05-4706-96e3-70270e724779", - "start": { - "$date": "2020-10-21T01:48:19.000Z" - }, - "end": { - "$date": "2020-10-21T01:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "beedb122-a9ff-4d73-afb4-e414fb6bbe40", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-21T01:55:06.000Z" - }, - "end": { - "$date": "2020-10-21T01:57:37.000Z" - }, - "events": [ - { - "uuid": "138c3ff3-f1cd-496f-ae6e-dd1b84bf7876", - "start": { - "$date": "2020-10-21T01:55:06.000Z" - }, - "end": { - "$date": "2020-10-21T01:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "23da636a-b52d-46d1-b4f9-38e52708616f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-21T02:13:52.000Z" - }, - "end": { - "$date": "2020-10-21T05:54:53.000Z" - }, - "events": [ - { - "uuid": "6ca506c5-deba-4afb-bc53-1361a7a71997", - "start": { - "$date": "2020-10-21T02:13:52.000Z" - }, - "end": { - "$date": "2020-10-21T05:54:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "da91d6de-b4f9-44d9-8008-f665cc9f1bf6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-21T02:21:59.000Z" - }, - "end": { - "$date": "2020-10-21T03:20:42.000Z" - }, - "events": [ - { - "uuid": "2db48d93-9c9a-4f3e-98bf-f5d4c863611c", - "start": { - "$date": "2020-10-21T02:21:59.000Z" - }, - "end": { - "$date": "2020-10-21T03:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5349c8ac-a304-4edf-ab56-169c92dc6ff6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-21T02:58:28.000Z" - }, - "end": { - "$date": "2020-10-21T03:32:31.000Z" - }, - "events": [ - { - "uuid": "09fa0cce-d1e9-4b1f-8cf2-71253e11056d", - "start": { - "$date": "2020-10-21T02:58:28.000Z" - }, - "end": { - "$date": "2020-10-21T03:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7eb5974d-7919-4877-aeb3-88b496b599de", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-21T02:30:12.000Z" - }, - "end": { - "$date": "2020-10-21T05:13:46.000Z" - }, - "events": [ - { - "uuid": "2adaff7d-97b4-4769-8dbb-efabf632eb36", - "start": { - "$date": "2020-10-21T02:30:12.000Z" - }, - "end": { - "$date": "2020-10-21T05:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "637eb0bb-739f-4008-a889-c5dad1c0fdc7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-21T02:58:00.000Z" - }, - "end": { - "$date": "2020-10-21T03:33:51.000Z" - }, - "events": [ - { - "uuid": "6401c98c-28ce-4aa3-a5f9-898f9ed38a46", - "start": { - "$date": "2020-10-21T02:58:00.000Z" - }, - "end": { - "$date": "2020-10-21T03:33:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dc89f961-930a-4a8c-9422-d744aecef762", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-21T03:21:15.000Z" - }, - "end": { - "$date": "2020-10-21T04:21:29.000Z" - }, - "events": [ - { - "uuid": "ecf411c7-eb1c-48d4-88bb-3eb020625ba4", - "start": { - "$date": "2020-10-21T03:21:15.000Z" - }, - "end": { - "$date": "2020-10-21T04:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "076defc8-9cb2-4980-979a-2bdbeac15d9e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-21T03:24:13.000Z" - }, - "end": { - "$date": "2020-10-21T04:29:36.000Z" - }, - "events": [ - { - "uuid": "e1d80637-0416-4157-af43-56aa8a3ec51d", - "start": { - "$date": "2020-10-21T03:24:13.000Z" - }, - "end": { - "$date": "2020-10-21T04:29:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6291347a-0d28-48ea-b95c-d73cfe66619d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-21T03:37:05.000Z" - }, - "end": { - "$date": "2020-10-21T04:10:53.000Z" - }, - "events": [ - { - "uuid": "e9b464f3-bcd8-49ce-a875-e8f4578b7d5a", - "start": { - "$date": "2020-10-21T03:37:05.000Z" - }, - "end": { - "$date": "2020-10-21T04:10:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1dabd631-a92f-4545-8613-1a00d83b675a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-21T03:35:04.000Z" - }, - "end": { - "$date": "2020-10-21T04:11:38.000Z" - }, - "events": [ - { - "uuid": "a6f1f0b4-443d-462e-bca3-7e26ea96ef8f", - "start": { - "$date": "2020-10-21T03:35:04.000Z" - }, - "end": { - "$date": "2020-10-21T04:11:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "c6809d13-e0a3-4a0d-9397-af1a9cb20794", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-21T04:26:10.000Z" - }, - "end": { - "$date": "2020-10-21T04:37:15.000Z" - }, - "events": [ - { - "uuid": "403b493b-3f3e-4955-bd2b-cd18606270cb", - "start": { - "$date": "2020-10-21T04:26:10.000Z" - }, - "end": { - "$date": "2020-10-21T04:37:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "468d96ed-447a-4fa4-a22e-86f45c0a1137", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-21T04:34:14.000Z" - }, - "end": { - "$date": "2020-10-21T05:05:58.000Z" - }, - "events": [ - { - "uuid": "13a684f9-11e7-4907-bb51-8a3ae0dfab33", - "start": { - "$date": "2020-10-21T04:34:14.000Z" - }, - "end": { - "$date": "2020-10-21T05:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "20aabd48-9902-4f90-a2da-7f097399c9aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-21T04:39:05.000Z" - }, - "end": { - "$date": "2020-10-21T05:13:46.000Z" - }, - "events": [ - { - "uuid": "a548d918-3ba4-4ad1-a567-8a7a235d972c", - "start": { - "$date": "2020-10-21T04:39:05.000Z" - }, - "end": { - "$date": "2020-10-21T05:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c5d8eef-2ba2-42a7-8fc7-bfb68666c170", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-21T05:20:48.000Z" - }, - "end": { - "$date": "2020-10-21T05:46:00.000Z" - }, - "events": [ - { - "uuid": "3fbdd498-af5e-4499-8fb3-69cc91094188", - "start": { - "$date": "2020-10-21T05:20:48.000Z" - }, - "end": { - "$date": "2020-10-21T05:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "b401c026-3c31-4bd3-a468-de7b1c08b500", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-21T05:14:16.000Z" - }, - "end": { - "$date": "2020-10-21T06:01:53.000Z" - }, - "events": [ - { - "uuid": "4afed7e7-d8f5-4661-88ca-9085fe113d45", - "start": { - "$date": "2020-10-21T05:14:16.000Z" - }, - "end": { - "$date": "2020-10-21T06:01:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1da807d-3353-4219-93a4-0aa917188cae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T06:10:01.000Z" - }, - "end": { - "$date": "2020-10-21T06:45:27.000Z" - }, - "events": [ - { - "uuid": "ad865bc4-f6f9-4e15-9278-39272527163f", - "start": { - "$date": "2020-10-21T06:10:01.000Z" - }, - "end": { - "$date": "2020-10-21T06:45:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "079c4ad2-da1a-47c6-a155-3b6ffec18b4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T07:07:27.000Z" - }, - "end": { - "$date": "2020-10-21T07:07:35.000Z" - }, - "events": [ - { - "uuid": "49197beb-f567-4b97-ac7b-c83f5602325a", - "start": { - "$date": "2020-10-21T07:07:27.000Z" - }, - "end": { - "$date": "2020-10-21T07:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70641483-58e3-49ae-ae15-f59b16d1788e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-21T15:20:02.000Z" - }, - "end": { - "$date": "2020-10-21T15:52:41.000Z" - }, - "events": [ - { - "uuid": "5c4bc6e5-abfc-40c6-a2d3-d8c636112afe", - "start": { - "$date": "2020-10-21T15:20:02.000Z" - }, - "end": { - "$date": "2020-10-21T15:52:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "b5c24e35-5f71-4da4-a108-e5bff73236b6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-21T15:24:04.000Z" - }, - "end": { - "$date": "2020-10-21T15:26:30.000Z" - }, - "events": [ - { - "uuid": "6d954cde-ad07-417d-8a5e-5753e94c4421", - "start": { - "$date": "2020-10-21T15:24:04.000Z" - }, - "end": { - "$date": "2020-10-21T15:26:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "17bc0c98-edb4-4cb9-ac76-0c364727a3d2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-21T15:24:04.000Z" - }, - "end": { - "$date": "2020-10-21T16:45:01.000Z" - }, - "events": [ - { - "uuid": "2188f65a-9c6e-437b-b2c8-14b9d75e34e8", - "start": { - "$date": "2020-10-21T15:24:04.000Z" - }, - "end": { - "$date": "2020-10-21T16:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1b2a01ac-a5b7-46a6-90b8-549dadaf009b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-21T17:13:16.000Z" - }, - "end": { - "$date": "2020-10-21T19:39:46.000Z" - }, - "events": [ - { - "uuid": "6a037ae3-4c50-4a58-8f4a-3f3ba2d29979", - "start": { - "$date": "2020-10-21T17:13:16.000Z" - }, - "end": { - "$date": "2020-10-21T19:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "d66ccbe6-9f33-44b6-8abc-8e72bb4733a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-21T18:30:29.000Z" - }, - "end": { - "$date": "2020-10-21T18:52:55.000Z" - }, - "events": [ - { - "uuid": "27a3db51-93f1-4711-8099-7107d1963346", - "start": { - "$date": "2020-10-21T18:30:29.000Z" - }, - "end": { - "$date": "2020-10-21T18:52:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ba35307c-dafb-42ef-a680-33a50b9d4133", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-21T19:33:32.000Z" - }, - "end": { - "$date": "2020-10-21T19:57:42.000Z" - }, - "events": [ - { - "uuid": "305a4c19-f723-48a8-b328-61af12f55ca6", - "start": { - "$date": "2020-10-21T19:33:32.000Z" - }, - "end": { - "$date": "2020-10-21T19:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ccf7f940-148d-4be4-8df3-404fc4028f2e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T20:38:52.000Z" - }, - "end": { - "$date": "2020-10-21T20:54:33.000Z" - }, - "events": [ - { - "uuid": "d892999e-8f0c-4a1a-97fe-d82b7ffb1e9b", - "start": { - "$date": "2020-10-21T20:38:52.000Z" - }, - "end": { - "$date": "2020-10-21T20:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "103a98a1-060f-4547-9111-7533012adfda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T20:58:03.000Z" - }, - "end": { - "$date": "2020-10-21T21:11:20.000Z" - }, - "events": [ - { - "uuid": "f8bf9297-8c8e-4e98-8cd9-54c9bfede204", - "start": { - "$date": "2020-10-21T20:58:03.000Z" - }, - "end": { - "$date": "2020-10-21T21:11:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b055811c-56ee-4bc0-ae34-33243354c8c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T21:14:14.000Z" - }, - "end": { - "$date": "2020-10-21T21:40:40.000Z" - }, - "events": [ - { - "uuid": "4bcfcc12-4eda-4b2c-bfdb-434792e3c009", - "start": { - "$date": "2020-10-21T21:14:14.000Z" - }, - "end": { - "$date": "2020-10-21T21:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "aed65403-00ff-4439-8066-21d277935297", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-21T21:20:53.000Z" - }, - "end": { - "$date": "2020-10-21T23:07:20.000Z" - }, - "events": [ - { - "uuid": "6cf2fe0b-db6b-4de4-b6e8-160cbe614584", - "start": { - "$date": "2020-10-21T21:20:53.000Z" - }, - "end": { - "$date": "2020-10-21T23:07:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "21ee7fbd-86e2-4ecf-9778-29feffa1123e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-21T21:41:45.000Z" - }, - "end": { - "$date": "2020-10-21T23:04:11.000Z" - }, - "events": [ - { - "uuid": "f0b65d31-0d66-476a-9dbb-2bb9ea3d3e50", - "start": { - "$date": "2020-10-21T21:41:45.000Z" - }, - "end": { - "$date": "2020-10-21T23:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "465bfb58-6bd7-4145-89fd-e64eda9928d8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-21T21:43:36.000Z" - }, - "end": { - "$date": "2020-10-21T23:01:12.000Z" - }, - "events": [ - { - "uuid": "8cbdedef-d44f-4ad2-b085-b19504e21863", - "start": { - "$date": "2020-10-21T21:43:36.000Z" - }, - "end": { - "$date": "2020-10-21T23:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d1b7301d-b3c8-4acc-aa64-a310d02b2580", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-21T21:49:01.000Z" - }, - "end": { - "$date": "2020-10-21T22:30:40.000Z" - }, - "events": [ - { - "uuid": "e6ca811d-5015-489e-8f7a-5ea34dac7790", - "start": { - "$date": "2020-10-21T21:49:01.000Z" - }, - "end": { - "$date": "2020-10-21T22:30:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0ab12e41-7d1b-4f61-9d94-00ecbbd10503", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-21T21:51:20.000Z" - }, - "end": { - "$date": "2020-10-21T22:09:11.000Z" - }, - "events": [ - { - "uuid": "b3a83c5c-52a0-4f93-8114-efbaf40782e9", - "start": { - "$date": "2020-10-21T21:51:20.000Z" - }, - "end": { - "$date": "2020-10-21T22:09:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "97ea6a7b-9263-47a3-827f-1c7901823f64", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-21T22:19:01.000Z" - }, - "end": { - "$date": "2020-10-21T23:56:18.000Z" - }, - "events": [ - { - "uuid": "879ff5b2-6a3a-4045-89bb-33e05900e933", - "start": { - "$date": "2020-10-21T22:19:01.000Z" - }, - "end": { - "$date": "2020-10-21T23:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "eb663d5c-8740-43a3-a58f-ebfbbbb849ef", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-21T22:35:55.000Z" - }, - "end": { - "$date": "2020-10-21T23:48:28.000Z" - }, - "events": [ - { - "uuid": "7ae43559-a4cc-41d1-90c7-adab4374f8e6", - "start": { - "$date": "2020-10-21T22:35:55.000Z" - }, - "end": { - "$date": "2020-10-21T23:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf206654-f02f-40bc-b42d-bf072351ca54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-21T22:57:59.000Z" - }, - "end": { - "$date": "2020-10-21T23:31:07.000Z" - }, - "events": [ - { - "uuid": "42d53e8a-e20b-4651-bc33-7b44c5618620", - "start": { - "$date": "2020-10-21T22:57:59.000Z" - }, - "end": { - "$date": "2020-10-21T23:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a88f7a11-fd8f-462f-937e-640feb03603f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-21T23:25:49.000Z" - }, - "end": { - "$date": "2020-10-22T00:02:18.000Z" - }, - "events": [ - { - "uuid": "5471c85d-df56-4260-88fc-ac11c7fd8bc1", - "start": { - "$date": "2020-10-21T23:25:49.000Z" - }, - "end": { - "$date": "2020-10-22T00:02:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "556bf92e-d905-4d0a-9b16-d9666402771d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-22T00:03:32.000Z" - }, - "end": { - "$date": "2020-10-22T00:37:40.000Z" - }, - "events": [ - { - "uuid": "47140d6c-48c6-462c-acfc-0561429ec4ec", - "start": { - "$date": "2020-10-22T00:03:32.000Z" - }, - "end": { - "$date": "2020-10-22T00:37:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c57a94b3-8779-403b-b2a7-0cb6afbaabcd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T00:03:32.000Z" - }, - "end": { - "$date": "2020-10-22T00:37:46.000Z" - }, - "events": [ - { - "uuid": "7357b3f4-9305-4acb-aab2-498311d914ff", - "start": { - "$date": "2020-10-22T00:03:32.000Z" - }, - "end": { - "$date": "2020-10-22T00:37:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "cbfb3c6f-055e-46e8-a4c3-3c1c2c989d43", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-22T00:06:23.000Z" - }, - "end": { - "$date": "2020-10-22T00:29:35.000Z" - }, - "events": [ - { - "uuid": "0811cb76-1c0f-46bd-bb3a-0a623580f680", - "start": { - "$date": "2020-10-22T00:06:23.000Z" - }, - "end": { - "$date": "2020-10-22T00:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ed5e4716-e502-461d-8692-2cc826d6de80", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-22T00:12:55.000Z" - }, - "end": { - "$date": "2020-10-22T00:15:23.000Z" - }, - "events": [ - { - "uuid": "e8f67b58-c1e7-4886-ac4c-a60713955dcc", - "start": { - "$date": "2020-10-22T00:12:55.000Z" - }, - "end": { - "$date": "2020-10-22T00:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8ca9be53-88f8-4ac3-a2f5-cc3da8cc7ee9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-22T00:47:55.000Z" - }, - "end": { - "$date": "2020-10-22T01:50:43.000Z" - }, - "events": [ - { - "uuid": "a57209c2-3653-440b-b78e-68396e22296f", - "start": { - "$date": "2020-10-22T00:47:55.000Z" - }, - "end": { - "$date": "2020-10-22T01:50:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b80477f1-6578-443e-a6fa-302bc86cd77e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T00:55:07.000Z" - }, - "end": { - "$date": "2020-10-22T01:22:02.000Z" - }, - "events": [ - { - "uuid": "5abfdd92-be73-4456-b73c-1477a5eea7d3", - "start": { - "$date": "2020-10-22T00:55:07.000Z" - }, - "end": { - "$date": "2020-10-22T01:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c75c3446-265f-41ac-ad1d-7ff47e2d2d7e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T01:04:38.000Z" - }, - "end": { - "$date": "2020-10-22T02:49:34.000Z" - }, - "events": [ - { - "uuid": "233a1357-ba51-473e-9004-cafded5a71ef", - "start": { - "$date": "2020-10-22T01:04:38.000Z" - }, - "end": { - "$date": "2020-10-22T02:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "105057d4-70ab-48ec-9a7d-e20f012fbb14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-22T01:08:28.000Z" - }, - "end": { - "$date": "2020-10-22T03:04:13.000Z" - }, - "events": [ - { - "uuid": "850eaaa9-5121-4925-8a00-dbb274c93e92", - "start": { - "$date": "2020-10-22T01:08:28.000Z" - }, - "end": { - "$date": "2020-10-22T03:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "817b7ccc-17e1-404f-b202-e6110fa91312", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T02:28:21.000Z" - }, - "end": { - "$date": "2020-10-22T02:52:30.000Z" - }, - "events": [ - { - "uuid": "58811b46-e2b8-42c5-8352-d65427234239", - "start": { - "$date": "2020-10-22T02:28:21.000Z" - }, - "end": { - "$date": "2020-10-22T02:52:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "284f06cb-9d06-42b2-9d05-16cc9d06a4f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-22T01:41:39.000Z" - }, - "end": { - "$date": "2020-10-22T05:46:43.000Z" - }, - "events": [ - { - "uuid": "5d7cc203-2f07-4f7d-a152-dc37a9714849", - "start": { - "$date": "2020-10-22T01:41:39.000Z" - }, - "end": { - "$date": "2020-10-22T05:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a85d1b41-c92a-41fd-ad35-d0fcc4d84cff", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-22T02:00:36.000Z" - }, - "end": { - "$date": "2020-10-22T03:43:21.000Z" - }, - "events": [ - { - "uuid": "5870e724-505f-4043-ac3e-b142bef4e5de", - "start": { - "$date": "2020-10-22T02:00:36.000Z" - }, - "end": { - "$date": "2020-10-22T03:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "970c7e9f-bb1e-4f35-99b2-22830dd5369a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-22T02:02:03.000Z" - }, - "end": { - "$date": "2020-10-22T02:33:00.000Z" - }, - "events": [ - { - "uuid": "41951164-285e-4511-b9db-51fda771e193", - "start": { - "$date": "2020-10-22T02:02:03.000Z" - }, - "end": { - "$date": "2020-10-22T02:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c008cb78-fe75-445f-9b5b-2d73b30298a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-22T02:33:20.000Z" - }, - "end": { - "$date": "2020-10-22T04:06:14.000Z" - }, - "events": [ - { - "uuid": "0a60c03f-6084-4406-99f7-d97e388adfed", - "start": { - "$date": "2020-10-22T02:33:20.000Z" - }, - "end": { - "$date": "2020-10-22T04:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "369ae0c9-802b-4c33-a051-b86e514af3ad", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-22T02:36:27.000Z" - }, - "end": { - "$date": "2020-10-22T03:52:35.000Z" - }, - "events": [ - { - "uuid": "7fc2400b-b708-4ffd-b3b1-b9702a57367e", - "start": { - "$date": "2020-10-22T02:36:27.000Z" - }, - "end": { - "$date": "2020-10-22T03:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7076775f-da93-4ba8-8f0a-71e2d2065791", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T03:00:11.000Z" - }, - "end": { - "$date": "2020-10-22T03:37:42.000Z" - }, - "events": [ - { - "uuid": "dd56bb27-ff97-4a2f-a202-f83c960a262d", - "start": { - "$date": "2020-10-22T03:00:11.000Z" - }, - "end": { - "$date": "2020-10-22T03:37:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83b855ec-2cb2-4b60-b3c0-924bfb4d6143", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-22T03:00:37.000Z" - }, - "end": { - "$date": "2020-10-22T03:38:15.000Z" - }, - "events": [ - { - "uuid": "43646c08-3797-470d-b013-fc17d78d3457", - "start": { - "$date": "2020-10-22T03:00:37.000Z" - }, - "end": { - "$date": "2020-10-22T03:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8ece4868-7436-401a-8908-3d52dd3a7477", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-22T03:37:05.000Z" - }, - "end": { - "$date": "2020-10-22T04:37:45.000Z" - }, - "events": [ - { - "uuid": "ea393d87-659f-4c6a-8ae9-7981af1eb41f", - "start": { - "$date": "2020-10-22T03:37:05.000Z" - }, - "end": { - "$date": "2020-10-22T04:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bda6eab6-9f88-4afb-a679-c6ba16aedf5e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T03:46:07.000Z" - }, - "end": { - "$date": "2020-10-22T04:20:45.000Z" - }, - "events": [ - { - "uuid": "2456aa43-079b-419c-a547-4c9730063848", - "start": { - "$date": "2020-10-22T03:46:07.000Z" - }, - "end": { - "$date": "2020-10-22T04:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f5d5e02-b9e2-4a5e-ac36-245e343c2f9b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-22T05:00:42.000Z" - }, - "end": { - "$date": "2020-10-22T05:01:17.000Z" - }, - "events": [ - { - "uuid": "1b372bae-93fc-475f-aadf-6e6e20046ef4", - "start": { - "$date": "2020-10-22T05:00:42.000Z" - }, - "end": { - "$date": "2020-10-22T05:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "72975776-6a5e-4b21-8c7d-c4e010f10d57", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-22T03:46:49.000Z" - }, - "end": { - "$date": "2020-10-22T04:25:43.000Z" - }, - "events": [ - { - "uuid": "083cf737-721c-4f21-a73c-286ccf104a8c", - "start": { - "$date": "2020-10-22T03:46:49.000Z" - }, - "end": { - "$date": "2020-10-22T04:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "df140804-b335-41f3-81ac-29988e4fd666", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-10-22T04:19:02.000Z" - }, - "end": { - "$date": "2020-10-22T05:07:25.000Z" - }, - "events": [ - { - "uuid": "ddc60730-8439-461b-b327-60e13a18a46a", - "start": { - "$date": "2020-10-22T04:19:02.000Z" - }, - "end": { - "$date": "2020-10-22T05:07:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c5074b7-7e31-4496-9817-d98dbada14b6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-22T04:20:12.000Z" - }, - "end": { - "$date": "2020-10-22T04:57:45.000Z" - }, - "events": [ - { - "uuid": "a1931498-cbd7-4805-9830-08d008a20306", - "start": { - "$date": "2020-10-22T04:20:12.000Z" - }, - "end": { - "$date": "2020-10-22T04:57:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7176ec0e-9c49-4a6c-95dd-df0d770ce67e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T04:24:49.000Z" - }, - "end": { - "$date": "2020-10-22T05:00:54.000Z" - }, - "events": [ - { - "uuid": "69d1daa0-c7f0-4041-8481-3192cb339d5c", - "start": { - "$date": "2020-10-22T04:24:49.000Z" - }, - "end": { - "$date": "2020-10-22T05:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06cc34fd-a40c-4a52-a760-5aa2d048342d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T04:24:55.000Z" - }, - "end": { - "$date": "2020-10-22T05:00:45.000Z" - }, - "events": [ - { - "uuid": "af00b473-d169-4edb-a338-e0885b73d38e", - "start": { - "$date": "2020-10-22T04:24:55.000Z" - }, - "end": { - "$date": "2020-10-22T05:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00d24305-cde2-4817-ad38-7cbabb006381", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-22T07:05:13.000Z" - }, - "end": { - "$date": "2020-10-22T07:42:14.000Z" - }, - "events": [ - { - "uuid": "7071169d-947f-4b8d-ba2e-24da2930f3ac", - "start": { - "$date": "2020-10-22T07:05:13.000Z" - }, - "end": { - "$date": "2020-10-22T07:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "59096b5a-e48b-46e8-8243-2ff6ed298098", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-22T13:55:32.000Z" - }, - "end": { - "$date": "2020-10-22T16:15:35.000Z" - }, - "events": [ - { - "uuid": "43c5b92d-c68c-456a-b4ce-2de6660e1145", - "start": { - "$date": "2020-10-22T13:55:32.000Z" - }, - "end": { - "$date": "2020-10-22T16:15:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "a8dc64bf-e4e2-40c0-9b5a-035a1092c85a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-22T14:03:11.000Z" - }, - "end": { - "$date": "2020-10-22T14:47:08.000Z" - }, - "events": [ - { - "uuid": "7d5826d8-2f3f-48cc-a67c-f5f0cf866684", - "start": { - "$date": "2020-10-22T14:03:11.000Z" - }, - "end": { - "$date": "2020-10-22T14:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "fd0cec1a-9579-4f9b-bc43-c2c1ed78bcbf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-22T15:16:34.000Z" - }, - "end": { - "$date": "2020-10-22T16:09:26.000Z" - }, - "events": [ - { - "uuid": "ce91904e-23d0-41c3-8e8a-21762be72e95", - "start": { - "$date": "2020-10-22T15:16:34.000Z" - }, - "end": { - "$date": "2020-10-22T16:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7e5fb98-8db7-4aa1-98e7-7d55a5b9a63c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T17:40:12.000Z" - }, - "end": { - "$date": "2020-10-22T17:57:20.000Z" - }, - "events": [ - { - "uuid": "1e35e568-1a44-4fb9-b2ba-cd4f60457292", - "start": { - "$date": "2020-10-22T17:40:12.000Z" - }, - "end": { - "$date": "2020-10-22T17:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c2741993-3158-49aa-8c42-517a613f3a4a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-22T18:57:59.000Z" - }, - "end": { - "$date": "2020-10-22T20:14:01.000Z" - }, - "events": [ - { - "uuid": "cac0ad50-6fb5-4556-9fff-3882e15d30b4", - "start": { - "$date": "2020-10-22T18:57:59.000Z" - }, - "end": { - "$date": "2020-10-22T20:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44b9896d-54db-45f3-bab4-ea84c0a85be2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T19:14:09.000Z" - }, - "end": { - "$date": "2020-10-22T19:27:16.000Z" - }, - "events": [ - { - "uuid": "4fada79b-7ea9-46eb-a9b7-1845075ebd61", - "start": { - "$date": "2020-10-22T19:14:09.000Z" - }, - "end": { - "$date": "2020-10-22T19:27:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f575fefb-ef6e-4c29-8663-77f08204f511", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T19:27:54.000Z" - }, - "end": { - "$date": "2020-10-22T19:29:48.000Z" - }, - "events": [ - { - "uuid": "f6302d5d-ccde-4a82-a9df-9f7b9b6bc18a", - "start": { - "$date": "2020-10-22T19:27:54.000Z" - }, - "end": { - "$date": "2020-10-22T19:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f9f3993-333f-4aa2-b476-4b57242e92bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-22T20:48:40.000Z" - }, - "end": { - "$date": "2020-10-22T21:21:42.000Z" - }, - "events": [ - { - "uuid": "33d0e38c-4f1f-4185-adff-6f0ce5661a74", - "start": { - "$date": "2020-10-22T20:48:40.000Z" - }, - "end": { - "$date": "2020-10-22T21:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6d74182e-8d33-4147-874d-6a9c2d076aaa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-22T20:57:32.000Z" - }, - "end": { - "$date": "2020-10-22T21:03:22.000Z" - }, - "events": [ - { - "uuid": "77b93524-2705-49ec-a386-4c88078688af", - "start": { - "$date": "2020-10-22T20:57:32.000Z" - }, - "end": { - "$date": "2020-10-22T21:03:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "401c9c2f-b12d-4be3-aae8-e7542e917e86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-22T21:03:15.000Z" - }, - "end": { - "$date": "2020-10-22T23:06:17.000Z" - }, - "events": [ - { - "uuid": "2394cd7b-e340-41d4-a359-bbf7a504d16f", - "start": { - "$date": "2020-10-22T21:03:15.000Z" - }, - "end": { - "$date": "2020-10-22T23:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "13a5aada-cb51-49cd-9341-df2865cc9394", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-22T21:14:29.000Z" - }, - "end": { - "$date": "2020-10-22T21:54:10.000Z" - }, - "events": [ - { - "uuid": "53a40eb5-be76-4edf-ade3-0662c20eca8b", - "start": { - "$date": "2020-10-22T21:14:29.000Z" - }, - "end": { - "$date": "2020-10-22T21:54:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "205f9689-f431-4ac9-a669-ab0a81e1f6a3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-22T21:22:51.000Z" - }, - "end": { - "$date": "2020-10-22T21:58:15.000Z" - }, - "events": [ - { - "uuid": "45efd5ce-4509-4ef9-9ebf-b7c55b176373", - "start": { - "$date": "2020-10-22T21:22:51.000Z" - }, - "end": { - "$date": "2020-10-22T21:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "27eb8268-8422-4e2c-b252-586535e426ef", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-22T21:37:23.000Z" - }, - "end": { - "$date": "2020-10-22T23:37:16.000Z" - }, - "events": [ - { - "uuid": "bbd3a757-46ff-4b5e-8c29-d5613d2adcac", - "start": { - "$date": "2020-10-22T21:37:23.000Z" - }, - "end": { - "$date": "2020-10-22T23:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1dc6eab-6d7b-43a4-a594-737af5b04b2f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T22:24:51.000Z" - }, - "end": { - "$date": "2020-10-22T22:48:53.000Z" - }, - "events": [ - { - "uuid": "add25c8c-2918-4060-b78c-9fb0cf374e94", - "start": { - "$date": "2020-10-22T22:24:51.000Z" - }, - "end": { - "$date": "2020-10-22T22:48:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "0c0940a6-7608-47da-84bb-9d4d58c9c353", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-22T22:49:32.000Z" - }, - "end": { - "$date": "2020-10-22T23:28:39.000Z" - }, - "events": [ - { - "uuid": "0d0a495d-d72e-45e9-9472-b80befdb8c97", - "start": { - "$date": "2020-10-22T22:49:32.000Z" - }, - "end": { - "$date": "2020-10-22T23:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3016eb4d-e0c4-4faf-ad2b-724f8f69dd7a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-23T00:15:41.000Z" - }, - "end": { - "$date": "2020-10-23T00:43:19.000Z" - }, - "events": [ - { - "uuid": "239ce278-53fd-433b-a32c-2d67f0c8e97a", - "start": { - "$date": "2020-10-23T00:15:41.000Z" - }, - "end": { - "$date": "2020-10-23T00:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82e128f6-be3d-413b-90bd-21bf1970d826", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-22T23:39:07.000Z" - }, - "end": { - "$date": "2020-10-23T00:13:28.000Z" - }, - "events": [ - { - "uuid": "e3c2b695-86e6-40d3-8508-446e96a64577", - "start": { - "$date": "2020-10-22T23:39:07.000Z" - }, - "end": { - "$date": "2020-10-23T00:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81d88b8d-118b-4295-bcee-662287327909", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-23T01:27:07.000Z" - }, - "end": { - "$date": "2020-10-23T02:15:47.000Z" - }, - "events": [ - { - "uuid": "e71eb44b-0096-4068-b0f0-28aab74c75bf", - "start": { - "$date": "2020-10-23T01:27:07.000Z" - }, - "end": { - "$date": "2020-10-23T01:43:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "485d282b-cbbd-436a-a84a-7ff896e56baa", - "start": { - "$date": "2020-10-23T01:43:07.000Z" - }, - "end": { - "$date": "2020-10-23T02:15:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea480e13-d100-4b7f-b104-473dce864915", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-23T00:14:30.000Z" - }, - "end": { - "$date": "2020-10-23T00:43:30.000Z" - }, - "events": [ - { - "uuid": "4da41578-52c5-4fc8-9136-2648ae9413f7", - "start": { - "$date": "2020-10-23T00:14:30.000Z" - }, - "end": { - "$date": "2020-10-23T00:43:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "45ef5528-81cd-4d36-9804-820df6af02e3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-23T00:15:02.000Z" - }, - "end": { - "$date": "2020-10-23T00:54:19.000Z" - }, - "events": [ - { - "uuid": "2342ffd0-b8bd-4502-a80f-981c0eac9ccf", - "start": { - "$date": "2020-10-23T00:15:02.000Z" - }, - "end": { - "$date": "2020-10-23T00:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8120db1c-c6ed-4fd5-b238-a42542eec0cd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-23T00:25:47.000Z" - }, - "end": { - "$date": "2020-10-23T00:58:37.000Z" - }, - "events": [ - { - "uuid": "70bdf5e5-066d-47c7-b7bf-d083650eb963", - "start": { - "$date": "2020-10-23T00:25:47.000Z" - }, - "end": { - "$date": "2020-10-23T00:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bcc47b3b-0de7-4004-afac-28443eb08b78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-23T00:45:41.000Z" - }, - "end": { - "$date": "2020-10-23T01:33:03.000Z" - }, - "events": [ - { - "uuid": "5b490886-b759-405f-afe2-5a6dcc0f35e1", - "start": { - "$date": "2020-10-23T00:45:41.000Z" - }, - "end": { - "$date": "2020-10-23T01:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "afeb2b00-ebde-42bb-802a-98288253ad1e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-23T01:33:35.000Z" - }, - "end": { - "$date": "2020-10-23T05:37:09.000Z" - }, - "events": [ - { - "uuid": "3ad46383-3ab7-4bad-9f1e-d84c8994eaa1", - "start": { - "$date": "2020-10-23T01:33:35.000Z" - }, - "end": { - "$date": "2020-10-23T05:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a059af44-f0da-455b-b1f9-18a06a99cff6", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-10-23T02:27:14.000Z" - }, - "end": { - "$date": "2020-10-23T03:23:35.000Z" - }, - "events": [ - { - "uuid": "ea79781b-1c04-47da-b12d-1582363428f2", - "start": { - "$date": "2020-10-23T02:27:14.000Z" - }, - "end": { - "$date": "2020-10-23T03:23:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "92101907-8ca5-4999-820e-b75a11cf042c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-23T02:31:39.000Z" - }, - "end": { - "$date": "2020-10-23T02:59:56.000Z" - }, - "events": [ - { - "uuid": "d6d9acf3-638d-4fcb-a309-72684a9c1f64", - "start": { - "$date": "2020-10-23T02:31:39.000Z" - }, - "end": { - "$date": "2020-10-23T02:59:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f4869de9-c4a0-4423-b20a-9a51fd8ae6a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-23T02:39:27.000Z" - }, - "end": { - "$date": "2020-10-23T07:02:32.000Z" - }, - "events": [ - { - "uuid": "8f10a847-f8d1-4c27-9437-159347132460", - "start": { - "$date": "2020-10-23T02:39:27.000Z" - }, - "end": { - "$date": "2020-10-23T07:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4934d897-7a9d-4c8c-8c10-bd3a7e05bd18", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-23T02:58:15.000Z" - }, - "end": { - "$date": "2020-10-23T03:32:13.000Z" - }, - "events": [ - { - "uuid": "d3078470-8ef6-462d-ab0a-445c1e8d040a", - "start": { - "$date": "2020-10-23T02:58:15.000Z" - }, - "end": { - "$date": "2020-10-23T03:32:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b1a164da-c57d-4a96-af62-d03664c36712", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-23T03:00:26.000Z" - }, - "end": { - "$date": "2020-10-23T04:15:23.000Z" - }, - "events": [ - { - "uuid": "12342f19-5b04-479c-877a-5b958eda782b", - "start": { - "$date": "2020-10-23T03:00:26.000Z" - }, - "end": { - "$date": "2020-10-23T04:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "80b44283-5c5e-42cd-9d09-8607af91b304", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-23T03:00:51.000Z" - }, - "end": { - "$date": "2020-10-23T05:28:10.000Z" - }, - "events": [ - { - "uuid": "3a4723f2-ee4f-4e31-8603-91eaa99a5e0a", - "start": { - "$date": "2020-10-23T03:00:51.000Z" - }, - "end": { - "$date": "2020-10-23T05:28:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f828044-966d-4d70-b512-261534f86c8d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-23T03:09:05.000Z" - }, - "end": { - "$date": "2020-10-23T03:38:01.000Z" - }, - "events": [ - { - "uuid": "2441ba6f-1767-4506-bbcb-d12371cda160", - "start": { - "$date": "2020-10-23T03:09:05.000Z" - }, - "end": { - "$date": "2020-10-23T03:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "fa828de8-c8db-4fb3-95cb-107b15399616", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-23T03:08:16.000Z" - }, - "end": { - "$date": "2020-10-23T04:00:46.000Z" - }, - "events": [ - { - "uuid": "5b4fdcef-f1e7-46ab-8dc3-c371519e5748", - "start": { - "$date": "2020-10-23T03:08:16.000Z" - }, - "end": { - "$date": "2020-10-23T04:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1046e1b-3ba5-4710-941b-186927271292", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-23T03:39:00.000Z" - }, - "end": { - "$date": "2020-10-23T04:57:02.000Z" - }, - "events": [ - { - "uuid": "284089a8-ee5a-4c80-81dc-fea6b80fef29", - "start": { - "$date": "2020-10-23T03:39:00.000Z" - }, - "end": { - "$date": "2020-10-23T04:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "aa6485a0-8a8a-4cad-84a4-fc54f4c7f7c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-23T03:53:24.000Z" - }, - "end": { - "$date": "2020-10-23T03:59:31.000Z" - }, - "events": [ - { - "uuid": "05a49c44-f1d7-4494-afac-5d1e2835234f", - "start": { - "$date": "2020-10-23T03:53:24.000Z" - }, - "end": { - "$date": "2020-10-23T03:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd4f336d-39ba-4010-be58-499064038af9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-23T04:35:07.000Z" - }, - "end": { - "$date": "2020-10-23T04:35:41.000Z" - }, - "events": [ - { - "uuid": "a17df5c6-ba6a-4651-8c8e-04ebb6d6efa7", - "start": { - "$date": "2020-10-23T04:35:07.000Z" - }, - "end": { - "$date": "2020-10-23T04:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c7046dbc-c4c3-4de3-92fb-bf74dd3eb72a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-23T04:14:10.000Z" - }, - "end": { - "$date": "2020-10-23T06:20:45.000Z" - }, - "events": [ - { - "uuid": "40029594-2eea-4da3-8f51-1270dc6b3203", - "start": { - "$date": "2020-10-23T04:14:10.000Z" - }, - "end": { - "$date": "2020-10-23T06:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "9f110bb9-7186-46db-9ba7-232590e45659", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-23T04:22:59.000Z" - }, - "end": { - "$date": "2020-10-23T05:30:45.000Z" - }, - "events": [ - { - "uuid": "63f60120-6cd3-4737-a33d-914b55abf291", - "start": { - "$date": "2020-10-23T04:22:59.000Z" - }, - "end": { - "$date": "2020-10-23T05:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7222d77b-cb58-4821-a83e-19e2f0e27972", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-23T04:33:21.000Z" - }, - "end": { - "$date": "2020-10-23T05:28:37.000Z" - }, - "events": [ - { - "uuid": "ffc173fb-2691-4a73-9214-8d9e793e46ee", - "start": { - "$date": "2020-10-23T04:33:21.000Z" - }, - "end": { - "$date": "2020-10-23T05:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30c42611-2798-4015-88a1-d58b7461d676", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-23T05:00:56.000Z" - }, - "end": { - "$date": "2020-10-23T05:36:52.000Z" - }, - "events": [ - { - "uuid": "49f54fc7-1462-4b9a-b7b4-d9a3143e57fd", - "start": { - "$date": "2020-10-23T05:00:56.000Z" - }, - "end": { - "$date": "2020-10-23T05:36:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e8b590f2-74c6-4766-9273-5d9566d6abff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-23T05:38:16.000Z" - }, - "end": { - "$date": "2020-10-23T06:14:07.000Z" - }, - "events": [ - { - "uuid": "c86b4b1e-dd06-4fac-9943-9393b28da86e", - "start": { - "$date": "2020-10-23T05:38:16.000Z" - }, - "end": { - "$date": "2020-10-23T06:14:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "df11decb-d945-422d-9397-daa88cf76b78", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-23T16:16:42.000Z" - }, - "end": { - "$date": "2020-10-23T19:06:30.000Z" - }, - "events": [ - { - "uuid": "52794074-d2b1-4105-a932-9f3fa7295c97", - "start": { - "$date": "2020-10-23T16:16:42.000Z" - }, - "end": { - "$date": "2020-10-23T16:32:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "377fd815-c166-4bc3-8dca-9014f4b781e7", - "start": { - "$date": "2020-10-23T16:32:42.000Z" - }, - "end": { - "$date": "2020-10-23T16:45:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e280aa6-e556-4521-a043-0e43d90dd86f", - "start": { - "$date": "2020-10-23T16:45:42.000Z" - }, - "end": { - "$date": "2020-10-23T19:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "b094fc50-7d31-4f1c-bfd8-18dd2667a0c0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-23T16:37:00.000Z" - }, - "end": { - "$date": "2020-10-23T18:30:41.000Z" - }, - "events": [ - { - "uuid": "11c38fa8-e664-4226-be1c-3b78ec3f9120", - "start": { - "$date": "2020-10-23T16:37:00.000Z" - }, - "end": { - "$date": "2020-10-23T18:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8fad107e-1678-4cd9-bce2-391698cf598d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-23T17:59:30.000Z" - }, - "end": { - "$date": "2020-10-23T19:53:33.000Z" - }, - "events": [ - { - "uuid": "6f07f6a3-c9a3-4aac-9a6e-c175c2285237", - "start": { - "$date": "2020-10-23T17:59:30.000Z" - }, - "end": { - "$date": "2020-10-23T19:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "892e652f-cd42-4fbf-9d6e-e33554cfe6d6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-23T20:19:52.000Z" - }, - "end": { - "$date": "2020-10-23T22:01:10.000Z" - }, - "events": [ - { - "uuid": "f38eeb86-315c-4cc5-a8e5-6eabeeeab220", - "start": { - "$date": "2020-10-23T20:19:52.000Z" - }, - "end": { - "$date": "2020-10-23T22:01:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2141ff4-cfd6-4f09-9ad9-5ac64a941c54", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-23T20:26:59.000Z" - }, - "end": { - "$date": "2020-10-23T20:50:23.000Z" - }, - "events": [ - { - "uuid": "3a920139-46e0-4c3a-a895-12b20b23b059", - "start": { - "$date": "2020-10-23T20:26:59.000Z" - }, - "end": { - "$date": "2020-10-23T20:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f72fc73e-4215-4e5c-b922-5c26e4bc6da3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-23T20:54:15.000Z" - }, - "end": { - "$date": "2020-10-23T21:11:59.000Z" - }, - "events": [ - { - "uuid": "4d527ed2-de03-47f8-8ba8-d3adfa585f61", - "start": { - "$date": "2020-10-23T20:54:15.000Z" - }, - "end": { - "$date": "2020-10-23T21:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f8587b4-6b17-4a52-b9b5-bcd47d7f2a6b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-23T20:58:26.000Z" - }, - "end": { - "$date": "2020-10-23T21:32:08.000Z" - }, - "events": [ - { - "uuid": "94bb0fd5-b2a2-4567-bd51-32eac03435b8", - "start": { - "$date": "2020-10-23T20:58:26.000Z" - }, - "end": { - "$date": "2020-10-23T21:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9be1998e-06da-4049-bfec-27b07670a431", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-23T21:12:55.000Z" - }, - "end": { - "$date": "2020-10-23T21:58:39.000Z" - }, - "events": [ - { - "uuid": "0cebe768-1eb6-4798-bf1a-8e0de9e33ae1", - "start": { - "$date": "2020-10-23T21:12:55.000Z" - }, - "end": { - "$date": "2020-10-23T21:58:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "852b496c-b6e1-403d-a20b-3f0ca9c4765b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-23T21:16:04.000Z" - }, - "end": { - "$date": "2020-10-23T22:18:25.000Z" - }, - "events": [ - { - "uuid": "b19b9fb7-91db-494f-b184-e6346b7d3a91", - "start": { - "$date": "2020-10-23T21:16:04.000Z" - }, - "end": { - "$date": "2020-10-23T22:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0b99c622-d5e5-449d-bdf5-3594e017353f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-23T21:39:49.000Z" - }, - "end": { - "$date": "2020-10-23T22:23:02.000Z" - }, - "events": [ - { - "uuid": "a5c87824-63ab-4e98-929b-a88b7834a41b", - "start": { - "$date": "2020-10-23T21:39:49.000Z" - }, - "end": { - "$date": "2020-10-23T22:23:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "9ab16a76-4733-4e89-b2f4-536b768bc394", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-23T22:21:50.000Z" - }, - "end": { - "$date": "2020-10-24T00:20:09.000Z" - }, - "events": [ - { - "uuid": "156123da-5820-4c1e-a76b-c44bdf3c6142", - "start": { - "$date": "2020-10-23T22:21:50.000Z" - }, - "end": { - "$date": "2020-10-24T00:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dd0a6dcd-671d-41b6-917a-59747a47745f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-23T22:27:17.000Z" - }, - "end": { - "$date": "2020-10-23T22:28:23.000Z" - }, - "events": [ - { - "uuid": "670756fb-3ebf-4749-8408-f8ebfbbaf01f", - "start": { - "$date": "2020-10-23T22:27:17.000Z" - }, - "end": { - "$date": "2020-10-23T22:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ade40d4d-1109-4966-9f7f-773bd3c32c16", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-23T22:38:09.000Z" - }, - "end": { - "$date": "2020-10-23T22:54:04.000Z" - }, - "events": [ - { - "uuid": "0c479117-7252-4143-b7ac-5419875e52c8", - "start": { - "$date": "2020-10-23T22:38:09.000Z" - }, - "end": { - "$date": "2020-10-23T22:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "30f7dfb9-9ca1-470f-ad02-a9e66decaf4b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-23T22:56:14.000Z" - }, - "end": { - "$date": "2020-10-23T23:34:35.000Z" - }, - "events": [ - { - "uuid": "7d1f6c4b-5e96-4751-a37a-1eb95d4db3ae", - "start": { - "$date": "2020-10-23T22:56:14.000Z" - }, - "end": { - "$date": "2020-10-23T23:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c8854580-5386-42cb-82c6-1d09696de43c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-23T23:36:43.000Z" - }, - "end": { - "$date": "2020-10-24T00:32:23.000Z" - }, - "events": [ - { - "uuid": "2578869d-2d0f-48aa-8735-f55b0804ade3", - "start": { - "$date": "2020-10-23T23:36:43.000Z" - }, - "end": { - "$date": "2020-10-24T00:32:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7151b5f9-c50f-4f57-afa8-6538777f3cfa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-23T23:55:13.000Z" - }, - "end": { - "$date": "2020-10-24T00:48:20.000Z" - }, - "events": [ - { - "uuid": "442a6402-5a40-4217-b1a9-d32799c21d2d", - "start": { - "$date": "2020-10-23T23:55:13.000Z" - }, - "end": { - "$date": "2020-10-24T00:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a691f7d6-b3ab-4027-b1c4-a756567583ab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-23T23:56:49.000Z" - }, - "end": { - "$date": "2020-10-24T00:10:58.000Z" - }, - "events": [ - { - "uuid": "3355579b-cb15-46dc-a5f7-4c90bc6bf2f1", - "start": { - "$date": "2020-10-23T23:56:49.000Z" - }, - "end": { - "$date": "2020-10-24T00:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de3e495f-5158-4e21-9db2-c6a3fdc7aa02", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T00:25:48.000Z" - }, - "end": { - "$date": "2020-10-24T00:50:01.000Z" - }, - "events": [ - { - "uuid": "3f271414-2748-4e7a-9537-3ff2568480ae", - "start": { - "$date": "2020-10-24T00:25:48.000Z" - }, - "end": { - "$date": "2020-10-24T00:50:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68cea8f5-a714-4637-8b82-debfd4365438", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T00:27:56.000Z" - }, - "end": { - "$date": "2020-10-24T00:50:02.000Z" - }, - "events": [ - { - "uuid": "1c9f5759-5aa3-40fe-bc6a-85f0ed10f50d", - "start": { - "$date": "2020-10-24T00:27:56.000Z" - }, - "end": { - "$date": "2020-10-24T00:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ed2f6428-7bdc-4966-b223-52d6d8d58a4d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-24T00:48:43.000Z" - }, - "end": { - "$date": "2020-10-24T03:13:11.000Z" - }, - "events": [ - { - "uuid": "0a890bb2-5e22-4923-a076-6eac09840a36", - "start": { - "$date": "2020-10-24T00:48:43.000Z" - }, - "end": { - "$date": "2020-10-24T03:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fcdcf54-60f7-46b6-b429-ee1b05063b62", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T00:53:07.000Z" - }, - "end": { - "$date": "2020-10-24T01:17:43.000Z" - }, - "events": [ - { - "uuid": "df977b71-c9f1-4404-a45b-a5c50f13f0d6", - "start": { - "$date": "2020-10-24T00:53:07.000Z" - }, - "end": { - "$date": "2020-10-24T01:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a7b86c2-7d52-4ab6-88f7-8ce6395e870c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T00:53:02.000Z" - }, - "end": { - "$date": "2020-10-24T01:17:33.000Z" - }, - "events": [ - { - "uuid": "9e62bf3e-1800-47e3-a29d-45cceccce48d", - "start": { - "$date": "2020-10-24T00:53:02.000Z" - }, - "end": { - "$date": "2020-10-24T01:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "511d889b-9515-48e3-bc67-d30d78e10f8f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-24T01:10:28.000Z" - }, - "end": { - "$date": "2020-10-24T10:55:12.000Z" - }, - "events": [ - { - "uuid": "2e70061a-9609-49e6-b351-fb541fc38251", - "start": { - "$date": "2020-10-24T01:10:28.000Z" - }, - "end": { - "$date": "2020-10-24T02:02:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d0eb1d2-4464-45ae-9bd1-0d62e514b65a", - "start": { - "$date": "2020-10-24T02:02:28.000Z" - }, - "end": { - "$date": "2020-10-24T10:55:12.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "c2781e37-b509-45e4-9a16-c011ab6f0a26", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T02:00:16.000Z" - }, - "end": { - "$date": "2020-10-24T02:49:17.000Z" - }, - "events": [ - { - "uuid": "2836a8ad-938f-425d-9245-29e24f720764", - "start": { - "$date": "2020-10-24T02:00:16.000Z" - }, - "end": { - "$date": "2020-10-24T02:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5627dff8-4f59-4e4e-afbc-fa36a44a6ead", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T01:17:33.000Z" - }, - "end": { - "$date": "2020-10-24T02:56:58.000Z" - }, - "events": [ - { - "uuid": "8c3099b5-30dc-41c8-988e-b769675617cb", - "start": { - "$date": "2020-10-24T01:17:33.000Z" - }, - "end": { - "$date": "2020-10-24T02:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "78d985dd-9cc9-469d-9567-8d482d6b8930", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-24T02:13:35.000Z" - }, - "end": { - "$date": "2020-10-24T02:14:50.000Z" - }, - "events": [ - { - "uuid": "00cb89fe-eac4-4ffe-9023-292ac3dac950", - "start": { - "$date": "2020-10-24T02:13:35.000Z" - }, - "end": { - "$date": "2020-10-24T02:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "7b7a6d77-40cb-4f9a-aef3-b84c7887ef4b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-24T02:14:56.000Z" - }, - "end": { - "$date": "2020-10-24T02:28:32.000Z" - }, - "events": [ - { - "uuid": "1f3a42d4-f24d-4d85-a790-2411715cf11a", - "start": { - "$date": "2020-10-24T02:14:56.000Z" - }, - "end": { - "$date": "2020-10-24T02:28:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "256e9796-8376-4e4e-b9e6-bb33ff2b1f68", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-24T02:42:35.000Z" - }, - "end": { - "$date": "2020-10-24T07:07:37.000Z" - }, - "events": [ - { - "uuid": "8ab0a241-0259-4f3f-bed1-fd038ddb33c6", - "start": { - "$date": "2020-10-24T02:42:35.000Z" - }, - "end": { - "$date": "2020-10-24T07:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dbbc81c9-24ad-4c7a-b352-4cabf0d37aef", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-24T03:07:45.000Z" - }, - "end": { - "$date": "2020-10-24T03:52:13.000Z" - }, - "events": [ - { - "uuid": "77f27299-8061-4c00-a463-1ee91f4f7e40", - "start": { - "$date": "2020-10-24T03:07:45.000Z" - }, - "end": { - "$date": "2020-10-24T03:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d4dd60af-a8bd-4669-930e-7b47b21075fd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-24T03:08:11.000Z" - }, - "end": { - "$date": "2020-10-24T03:20:00.000Z" - }, - "events": [ - { - "uuid": "0dd528f9-814c-4642-9562-33e5b9f656a2", - "start": { - "$date": "2020-10-24T03:08:11.000Z" - }, - "end": { - "$date": "2020-10-24T03:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "45bcd458-5ae9-4db7-8133-a3c523950fd1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-24T03:26:35.000Z" - }, - "end": { - "$date": "2020-10-24T03:28:38.000Z" - }, - "events": [ - { - "uuid": "fb679f80-ac8f-4578-9263-f0e91875e36a", - "start": { - "$date": "2020-10-24T03:26:35.000Z" - }, - "end": { - "$date": "2020-10-24T03:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0211db17-4fe6-4214-9885-4d6e4ff11962", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-24T03:32:27.000Z" - }, - "end": { - "$date": "2020-10-24T04:52:32.000Z" - }, - "events": [ - { - "uuid": "f28220fb-e592-4c61-bdc6-b0330a826583", - "start": { - "$date": "2020-10-24T03:32:27.000Z" - }, - "end": { - "$date": "2020-10-24T04:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "b4f61c2e-139f-49ca-b778-68698f815e24", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-24T03:59:08.000Z" - }, - "end": { - "$date": "2020-10-24T05:46:44.000Z" - }, - "events": [ - { - "uuid": "68f691d3-b70f-43d7-9e4e-1f830ab5e92d", - "start": { - "$date": "2020-10-24T03:59:08.000Z" - }, - "end": { - "$date": "2020-10-24T05:46:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "9dacf6a6-d351-4d0a-b189-311ccaaba233", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T03:59:28.000Z" - }, - "end": { - "$date": "2020-10-24T05:47:03.000Z" - }, - "events": [ - { - "uuid": "659cd9c9-694e-4258-bf0b-7103286430c0", - "start": { - "$date": "2020-10-24T03:59:28.000Z" - }, - "end": { - "$date": "2020-10-24T05:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92d42441-1108-45b8-b4c9-36fa554ca4a8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-24T04:00:05.000Z" - }, - "end": { - "$date": "2020-10-24T05:48:02.000Z" - }, - "events": [ - { - "uuid": "1a1a1ae9-7c3f-4dff-b838-e13d2d4e88fb", - "start": { - "$date": "2020-10-24T04:00:05.000Z" - }, - "end": { - "$date": "2020-10-24T05:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "8b214f85-eb9b-48b2-8eb8-f919fafcad76", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-24T04:05:59.000Z" - }, - "end": { - "$date": "2020-10-24T04:13:11.000Z" - }, - "events": [ - { - "uuid": "abccf933-2c84-4582-bb0f-82a3eec5d5c5", - "start": { - "$date": "2020-10-24T04:05:59.000Z" - }, - "end": { - "$date": "2020-10-24T04:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cdadc3d-43e6-4f96-bd8d-86a575d49b96", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T04:19:46.000Z" - }, - "end": { - "$date": "2020-10-24T04:25:02.000Z" - }, - "events": [ - { - "uuid": "1540f7eb-2128-4d4e-aa73-f0b561bf0e5f", - "start": { - "$date": "2020-10-24T04:19:46.000Z" - }, - "end": { - "$date": "2020-10-24T04:25:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30cc39d1-20ff-44df-9a7b-bbd618e2505f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T05:05:55.000Z" - }, - "end": { - "$date": "2020-10-24T05:06:20.000Z" - }, - "events": [ - { - "uuid": "3683437a-4ff8-4f15-8ba9-b63426efc636", - "start": { - "$date": "2020-10-24T05:05:55.000Z" - }, - "end": { - "$date": "2020-10-24T05:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "b8e165c5-095a-4f9a-ab8f-ff47c63d2e19", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-24T04:24:00.000Z" - }, - "end": { - "$date": "2020-10-24T04:53:38.000Z" - }, - "events": [ - { - "uuid": "54568b90-44e4-4a25-af49-48e3a0290020", - "start": { - "$date": "2020-10-24T04:24:00.000Z" - }, - "end": { - "$date": "2020-10-24T04:53:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e44d4499-96f3-4854-b17a-fba6f6017611", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T04:26:59.000Z" - }, - "end": { - "$date": "2020-10-24T04:41:33.000Z" - }, - "events": [ - { - "uuid": "c2ececbf-a628-4877-8446-28cefc60021e", - "start": { - "$date": "2020-10-24T04:26:59.000Z" - }, - "end": { - "$date": "2020-10-24T04:41:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58533bc8-7e67-4714-ba5f-428884784854", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-24T06:14:43.000Z" - }, - "end": { - "$date": "2020-10-24T06:14:59.000Z" - }, - "events": [ - { - "uuid": "de82fcd3-676d-4d25-8fd1-c41a337c2f7b", - "start": { - "$date": "2020-10-24T06:14:43.000Z" - }, - "end": { - "$date": "2020-10-24T06:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ca79ac5-f3e7-4d70-a91c-00663668b35d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T04:42:00.000Z" - }, - "end": { - "$date": "2020-10-24T07:58:53.000Z" - }, - "events": [ - { - "uuid": "c11d4d3e-8725-4992-bb7d-6f27838db7f1", - "start": { - "$date": "2020-10-24T04:42:00.000Z" - }, - "end": { - "$date": "2020-10-24T07:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "be7f79c0-d7bf-4955-abf2-f134ff7e15a8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-24T05:57:27.000Z" - }, - "end": { - "$date": "2020-10-24T08:23:48.000Z" - }, - "events": [ - { - "uuid": "afeff6a6-341a-4c05-9511-ce782758313c", - "start": { - "$date": "2020-10-24T05:57:27.000Z" - }, - "end": { - "$date": "2020-10-24T08:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c8f8c855-ed42-4250-8674-90e313b88abb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-24T06:00:20.000Z" - }, - "end": { - "$date": "2020-10-24T07:16:57.000Z" - }, - "events": [ - { - "uuid": "2dae8a8d-81b2-42c0-a094-89f486d9b185", - "start": { - "$date": "2020-10-24T06:00:20.000Z" - }, - "end": { - "$date": "2020-10-24T07:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37b53809-f5ae-48da-ba80-4974bde0eaa5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T06:00:26.000Z" - }, - "end": { - "$date": "2020-10-24T07:17:01.000Z" - }, - "events": [ - { - "uuid": "1fd19428-5324-469a-981f-f4d40fc9ddf0", - "start": { - "$date": "2020-10-24T06:00:26.000Z" - }, - "end": { - "$date": "2020-10-24T07:17:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ba0d73c-7bf8-4276-a569-267570333759", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-24T08:17:00.000Z" - }, - "end": { - "$date": "2020-10-24T08:38:56.000Z" - }, - "events": [ - { - "uuid": "cf0394be-ebe0-47d7-b075-a4c845e13d19", - "start": { - "$date": "2020-10-24T08:17:00.000Z" - }, - "end": { - "$date": "2020-10-24T08:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5eb5215c-40db-4acf-9405-6d71adf2c5de", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-24T13:15:25.000Z" - }, - "end": { - "$date": "2020-10-24T13:19:46.000Z" - }, - "events": [ - { - "uuid": "31e4175d-b545-46dd-88a2-cc78647df76f", - "start": { - "$date": "2020-10-24T13:15:25.000Z" - }, - "end": { - "$date": "2020-10-24T13:19:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63510146-7b08-4c1c-bed1-5aaa7775f247", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-24T13:19:50.000Z" - }, - "end": { - "$date": "2020-10-24T13:59:20.000Z" - }, - "events": [ - { - "uuid": "48ecbac1-74ea-4b77-a0de-1b182e774a10", - "start": { - "$date": "2020-10-24T13:19:50.000Z" - }, - "end": { - "$date": "2020-10-24T13:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "c678037e-23c4-4dd0-9f40-1e2437da7266", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T14:20:53.000Z" - }, - "end": { - "$date": "2020-10-24T14:24:17.000Z" - }, - "events": [ - { - "uuid": "0588deba-6d45-4feb-8031-65a6d50fdfaf", - "start": { - "$date": "2020-10-24T14:20:53.000Z" - }, - "end": { - "$date": "2020-10-24T14:24:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7118a23a-cc15-446c-9cdd-d7487485874d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T14:39:45.000Z" - }, - "end": { - "$date": "2020-10-24T15:00:14.000Z" - }, - "events": [ - { - "uuid": "24c38d95-1d73-4c71-b346-294ec519ea70", - "start": { - "$date": "2020-10-24T14:39:45.000Z" - }, - "end": { - "$date": "2020-10-24T15:00:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "f12e06b1-1459-4099-b871-6da21b6343e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T15:06:21.000Z" - }, - "end": { - "$date": "2020-10-24T15:58:31.000Z" - }, - "events": [ - { - "uuid": "25477d78-f2b9-4124-9d41-f8e12f4af26d", - "start": { - "$date": "2020-10-24T15:06:21.000Z" - }, - "end": { - "$date": "2020-10-24T15:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "c614cf01-12a0-47da-be1e-7d2d72b1123f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T15:26:40.000Z" - }, - "end": { - "$date": "2020-10-24T16:05:26.000Z" - }, - "events": [ - { - "uuid": "905b275e-5695-4b51-a46b-d35313fccbd6", - "start": { - "$date": "2020-10-24T15:26:40.000Z" - }, - "end": { - "$date": "2020-10-24T16:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "be0e477d-ff4d-4b7f-9a77-f42ac25c602b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-24T15:42:18.000Z" - }, - "end": { - "$date": "2020-10-24T16:16:48.000Z" - }, - "events": [ - { - "uuid": "ce1bb75d-219b-4001-9165-79ad32e05647", - "start": { - "$date": "2020-10-24T15:42:18.000Z" - }, - "end": { - "$date": "2020-10-24T16:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7d0fefb1-99a8-431c-9a99-d63a4dd78054", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T15:59:07.000Z" - }, - "end": { - "$date": "2020-10-24T16:05:01.000Z" - }, - "events": [ - { - "uuid": "bb82fd87-485b-4822-94b7-3b8f0f90add7", - "start": { - "$date": "2020-10-24T15:59:07.000Z" - }, - "end": { - "$date": "2020-10-24T16:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1199b19f-d52f-4e9c-a2f3-a7e256d28fa5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-24T19:08:56.000Z" - }, - "end": { - "$date": "2020-10-24T19:09:52.000Z" - }, - "events": [ - { - "uuid": "095a338f-c0a5-4da9-be5a-f556a88dcd85", - "start": { - "$date": "2020-10-24T19:08:56.000Z" - }, - "end": { - "$date": "2020-10-24T19:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42a41bd5-9cfb-4ae3-93b3-3b44cd750afc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T16:08:11.000Z" - }, - "end": { - "$date": "2020-10-24T16:37:08.000Z" - }, - "events": [ - { - "uuid": "37d85352-f89a-49ca-9c77-47201eda157c", - "start": { - "$date": "2020-10-24T16:08:11.000Z" - }, - "end": { - "$date": "2020-10-24T16:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7769e8f4-7031-4125-8bd7-3fd4f0315f58", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T16:29:25.000Z" - }, - "end": { - "$date": "2020-10-24T17:31:46.000Z" - }, - "events": [ - { - "uuid": "64dd6b26-90ca-4a2b-bd30-d64cbd910650", - "start": { - "$date": "2020-10-24T16:29:25.000Z" - }, - "end": { - "$date": "2020-10-24T17:31:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26911771-6136-450b-aea4-780554ada3f5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-24T17:09:17.000Z" - }, - "end": { - "$date": "2020-10-24T17:46:37.000Z" - }, - "events": [ - { - "uuid": "43a612d3-0ffc-4844-80ca-93414cc52859", - "start": { - "$date": "2020-10-24T17:09:17.000Z" - }, - "end": { - "$date": "2020-10-24T17:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ec91831-c45b-4c3d-be89-aa759f4cc579", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T17:10:05.000Z" - }, - "end": { - "$date": "2020-10-24T17:46:33.000Z" - }, - "events": [ - { - "uuid": "9d2cdae7-074a-4009-9f87-f23a5d938cfe", - "start": { - "$date": "2020-10-24T17:10:05.000Z" - }, - "end": { - "$date": "2020-10-24T17:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7dadf3e-fb38-4224-a5d6-6c0faf6c8778", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T17:09:39.000Z" - }, - "end": { - "$date": "2020-10-24T17:46:43.000Z" - }, - "events": [ - { - "uuid": "2a97e364-ccd5-4c9b-8dd3-29eaf11b29de", - "start": { - "$date": "2020-10-24T17:09:39.000Z" - }, - "end": { - "$date": "2020-10-24T17:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "d8957572-141a-4244-b920-92c2cf03adee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T17:32:08.000Z" - }, - "end": { - "$date": "2020-10-24T19:26:38.000Z" - }, - "events": [ - { - "uuid": "ee2cd37a-d984-4f07-b47e-862844e68d3a", - "start": { - "$date": "2020-10-24T17:32:08.000Z" - }, - "end": { - "$date": "2020-10-24T19:26:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "624d4e2b-4fe7-4b6a-80b3-f91015a1af29", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-24T17:54:46.000Z" - }, - "end": { - "$date": "2020-10-24T18:31:21.000Z" - }, - "events": [ - { - "uuid": "56e59fa2-6154-44d2-a164-c2701c43d9f9", - "start": { - "$date": "2020-10-24T17:54:46.000Z" - }, - "end": { - "$date": "2020-10-24T18:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d1bbd4b-8d09-4f2f-bce4-bae600b23ada", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T17:54:56.000Z" - }, - "end": { - "$date": "2020-10-24T18:31:25.000Z" - }, - "events": [ - { - "uuid": "8a08b459-2472-4373-be70-7ea566c9b974", - "start": { - "$date": "2020-10-24T17:54:56.000Z" - }, - "end": { - "$date": "2020-10-24T18:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55ee0cf6-d4b8-4208-a230-84b98602e7f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T17:54:17.000Z" - }, - "end": { - "$date": "2020-10-24T18:31:15.000Z" - }, - "events": [ - { - "uuid": "369809a7-5601-4406-a0a4-f432ac10eb67", - "start": { - "$date": "2020-10-24T17:54:17.000Z" - }, - "end": { - "$date": "2020-10-24T18:31:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9eca68d3-62e9-4146-aa70-68aeb2882ea6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-24T18:32:05.000Z" - }, - "end": { - "$date": "2020-10-24T19:09:06.000Z" - }, - "events": [ - { - "uuid": "2aba09d9-bfd5-4f5d-b91a-1094b9c73049", - "start": { - "$date": "2020-10-24T18:32:05.000Z" - }, - "end": { - "$date": "2020-10-24T19:09:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57c5fd29-6664-423c-8c61-683d5d89ea42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-24T18:32:54.000Z" - }, - "end": { - "$date": "2020-10-24T19:07:52.000Z" - }, - "events": [ - { - "uuid": "5c6e27d4-0f5d-462b-b5f2-98844be4ff69", - "start": { - "$date": "2020-10-24T18:32:54.000Z" - }, - "end": { - "$date": "2020-10-24T19:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76073c8c-5006-43a6-87d7-d3a383ac189d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T18:32:35.000Z" - }, - "end": { - "$date": "2020-10-24T19:06:05.000Z" - }, - "events": [ - { - "uuid": "8872df0a-9add-4b4d-bf19-5822a5727ad6", - "start": { - "$date": "2020-10-24T18:32:35.000Z" - }, - "end": { - "$date": "2020-10-24T19:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "967e0ada-e6af-4fa4-b0ae-0336d347bcff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T18:33:24.000Z" - }, - "end": { - "$date": "2020-10-24T19:06:50.000Z" - }, - "events": [ - { - "uuid": "744d9b57-b2bf-4455-9a7b-e774881de40a", - "start": { - "$date": "2020-10-24T18:33:24.000Z" - }, - "end": { - "$date": "2020-10-24T19:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3f999b0e-eff3-459e-a91f-6e2c2ec12207", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-24T18:37:07.000Z" - }, - "end": { - "$date": "2020-10-24T19:16:02.000Z" - }, - "events": [ - { - "uuid": "cccae036-a51d-4557-a40a-8dc0b6f84d47", - "start": { - "$date": "2020-10-24T18:37:07.000Z" - }, - "end": { - "$date": "2020-10-24T19:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d085a994-b0a6-4c0e-b957-9643e931e9d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T18:48:19.000Z" - }, - "end": { - "$date": "2020-10-24T19:06:46.000Z" - }, - "events": [ - { - "uuid": "e96ebede-9aee-41da-9028-b8ed1fa451d0", - "start": { - "$date": "2020-10-24T18:48:19.000Z" - }, - "end": { - "$date": "2020-10-24T19:06:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8337e5fe-3763-40db-a8e8-2696d15999dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T19:06:15.000Z" - }, - "end": { - "$date": "2020-10-24T19:11:15.000Z" - }, - "events": [ - { - "uuid": "a1c74d47-cd61-4203-b854-aed27d4c4cc7", - "start": { - "$date": "2020-10-24T19:06:15.000Z" - }, - "end": { - "$date": "2020-10-24T19:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57e76c14-1aee-4600-af0e-1e1a9552c4c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T19:10:50.000Z" - }, - "end": { - "$date": "2020-10-24T19:29:32.000Z" - }, - "events": [ - { - "uuid": "4cf14176-6ee9-46ab-98a7-bf0c0d05b53e", - "start": { - "$date": "2020-10-24T19:10:50.000Z" - }, - "end": { - "$date": "2020-10-24T19:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b79f7436-818d-48a5-91a0-f9f5e67a887e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T19:17:11.000Z" - }, - "end": { - "$date": "2020-10-24T19:43:54.000Z" - }, - "events": [ - { - "uuid": "934ecbc9-62d5-4974-a487-9c33bf5e4dd1", - "start": { - "$date": "2020-10-24T19:17:11.000Z" - }, - "end": { - "$date": "2020-10-24T19:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "245368bb-0a17-4318-bb25-f11801628ad3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-24T19:18:38.000Z" - }, - "end": { - "$date": "2020-10-24T19:44:01.000Z" - }, - "events": [ - { - "uuid": "4d646be5-d9b6-4ce1-912f-13770caf19fa", - "start": { - "$date": "2020-10-24T19:18:38.000Z" - }, - "end": { - "$date": "2020-10-24T19:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e66c41d8-5f4b-4c36-962d-231e4be03d35", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T19:33:16.000Z" - }, - "end": { - "$date": "2020-10-24T20:17:44.000Z" - }, - "events": [ - { - "uuid": "b17165e7-00d5-410c-b3cc-151ce7ecbc20", - "start": { - "$date": "2020-10-24T19:33:16.000Z" - }, - "end": { - "$date": "2020-10-24T20:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6700dfae-c868-48aa-b64d-d1acc1360f62", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T19:45:49.000Z" - }, - "end": { - "$date": "2020-10-24T20:22:17.000Z" - }, - "events": [ - { - "uuid": "b8576a22-e794-4704-9367-457a0f32e7df", - "start": { - "$date": "2020-10-24T19:45:49.000Z" - }, - "end": { - "$date": "2020-10-24T20:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bab1a8c2-525b-440f-ad72-79ce8cd0f82d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-24T19:45:51.000Z" - }, - "end": { - "$date": "2020-10-24T20:22:24.000Z" - }, - "events": [ - { - "uuid": "eb33ac18-e4d4-4628-9707-363b2c24884e", - "start": { - "$date": "2020-10-24T19:45:51.000Z" - }, - "end": { - "$date": "2020-10-24T20:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b025f030-af62-4f44-96c0-f95840d38a83", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T20:17:53.000Z" - }, - "end": { - "$date": "2020-10-24T21:08:21.000Z" - }, - "events": [ - { - "uuid": "21cbe7e0-9189-4c5d-a9d1-624f31ac9284", - "start": { - "$date": "2020-10-24T20:17:53.000Z" - }, - "end": { - "$date": "2020-10-24T21:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d7db5d10-0ef2-4104-bec2-a4b6830c9442", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T20:22:32.000Z" - }, - "end": { - "$date": "2020-10-24T21:19:30.000Z" - }, - "events": [ - { - "uuid": "d6e18f38-9257-4f88-a16a-5501c2f546d7", - "start": { - "$date": "2020-10-24T20:22:32.000Z" - }, - "end": { - "$date": "2020-10-24T21:19:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a6f9c7d8-c2d3-4cb4-a9e9-bc71896a3247", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-24T20:23:04.000Z" - }, - "end": { - "$date": "2020-10-24T21:19:33.000Z" - }, - "events": [ - { - "uuid": "10dc6470-18e0-406b-b3eb-efc5f42da70d", - "start": { - "$date": "2020-10-24T20:23:04.000Z" - }, - "end": { - "$date": "2020-10-24T21:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "592ffe42-28f8-4fef-9492-b65e29febae4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T20:49:55.000Z" - }, - "end": { - "$date": "2020-10-24T21:26:37.000Z" - }, - "events": [ - { - "uuid": "727dedd2-5e96-4b8e-85a4-1cac565b92ae", - "start": { - "$date": "2020-10-24T20:49:55.000Z" - }, - "end": { - "$date": "2020-10-24T21:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eec83563-e3ca-4db5-9fd8-8c4d7b5d3eaa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T21:24:27.000Z" - }, - "end": { - "$date": "2020-10-24T21:40:43.000Z" - }, - "events": [ - { - "uuid": "c7b5c4f6-75cd-45ec-8391-c44306361273", - "start": { - "$date": "2020-10-24T21:24:27.000Z" - }, - "end": { - "$date": "2020-10-24T21:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb2c81f1-913a-40e1-a33a-a6506bc3915d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T21:43:43.000Z" - }, - "end": { - "$date": "2020-10-24T21:59:12.000Z" - }, - "events": [ - { - "uuid": "f1265bb6-b113-4ad2-8bc0-fb245ab511fb", - "start": { - "$date": "2020-10-24T21:43:43.000Z" - }, - "end": { - "$date": "2020-10-24T21:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82807214-1eeb-4869-890c-3a44b2cc7f98", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T21:54:59.000Z" - }, - "end": { - "$date": "2020-10-24T22:34:47.000Z" - }, - "events": [ - { - "uuid": "96bca10b-d207-4bea-82d1-a68af374dc59", - "start": { - "$date": "2020-10-24T21:54:59.000Z" - }, - "end": { - "$date": "2020-10-24T22:34:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8fb93b08-c345-4e56-9bd2-63ea0fdb8cc3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-24T22:29:58.000Z" - }, - "end": { - "$date": "2020-10-24T23:08:16.000Z" - }, - "events": [ - { - "uuid": "5c0d0351-c90a-4257-9bff-e5de70d60766", - "start": { - "$date": "2020-10-24T22:29:58.000Z" - }, - "end": { - "$date": "2020-10-24T23:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a856e71a-f6b9-4e2d-9536-80c61e56f419", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-24T23:03:27.000Z" - }, - "end": { - "$date": "2020-10-25T00:58:59.000Z" - }, - "events": [ - { - "uuid": "9ebece71-152a-4be5-a008-1aaae3c860cb", - "start": { - "$date": "2020-10-24T23:03:27.000Z" - }, - "end": { - "$date": "2020-10-25T00:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aaf92eb1-7687-42c8-9348-e887536490c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-24T23:16:57.000Z" - }, - "end": { - "$date": "2020-10-25T05:23:10.000Z" - }, - "events": [ - { - "uuid": "cc02ddd9-278a-46a6-90de-20330fbdf5a5", - "start": { - "$date": "2020-10-24T23:16:57.000Z" - }, - "end": { - "$date": "2020-10-25T01:28:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5cb7ab59-8325-41c7-b175-43ad457f7790", - "start": { - "$date": "2020-10-25T01:28:57.000Z" - }, - "end": { - "$date": "2020-10-25T01:29:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32a4dfbb-1962-4145-b895-6ce1afdab4f9", - "start": { - "$date": "2020-10-25T01:29:57.000Z" - }, - "end": { - "$date": "2020-10-25T05:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0cf6ee53-e501-41a5-b448-0e6977d13106", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-24T23:26:56.000Z" - }, - "end": { - "$date": "2020-10-24T23:35:18.000Z" - }, - "events": [ - { - "uuid": "21811fd9-3f6d-4c44-befe-90b21542049b", - "start": { - "$date": "2020-10-24T23:26:56.000Z" - }, - "end": { - "$date": "2020-10-24T23:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "73f7352c-605c-4718-852f-26e7353e0a57", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-24T23:35:57.000Z" - }, - "end": { - "$date": "2020-10-24T23:58:34.000Z" - }, - "events": [ - { - "uuid": "33e4831e-442d-4077-b044-c3d7e7223a19", - "start": { - "$date": "2020-10-24T23:35:57.000Z" - }, - "end": { - "$date": "2020-10-24T23:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b8e68f3b-d3a7-40b2-b51d-2cb18bb65187", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-24T23:47:24.000Z" - }, - "end": { - "$date": "2020-10-25T00:58:59.000Z" - }, - "events": [ - { - "uuid": "4f560bf4-12d2-4621-9266-be3fd1e85011", - "start": { - "$date": "2020-10-24T23:47:24.000Z" - }, - "end": { - "$date": "2020-10-25T00:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8905ea83-7327-4ce9-9871-5f3b208f0b91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-24T23:56:44.000Z" - }, - "end": { - "$date": "2020-10-25T00:31:09.000Z" - }, - "events": [ - { - "uuid": "85f4945a-b8c5-4265-b405-ec90c32a1c3d", - "start": { - "$date": "2020-10-24T23:56:44.000Z" - }, - "end": { - "$date": "2020-10-25T00:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac1a01f2-0a7b-4b43-a2da-ac78135da49e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-24T23:56:33.000Z" - }, - "end": { - "$date": "2020-10-25T00:31:09.000Z" - }, - "events": [ - { - "uuid": "c2f4922d-3ea4-493c-b2bf-fe0e1a8026dd", - "start": { - "$date": "2020-10-24T23:56:33.000Z" - }, - "end": { - "$date": "2020-10-25T00:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d002e4a6-9fbc-45ee-99a4-9e48e09dfc6b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-24T23:53:10.000Z" - }, - "end": { - "$date": "2020-10-25T00:09:43.000Z" - }, - "events": [ - { - "uuid": "6000dc35-d3a2-4c88-96ff-b01fe88ffd2e", - "start": { - "$date": "2020-10-24T23:53:10.000Z" - }, - "end": { - "$date": "2020-10-25T00:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c09f17d8-6798-4661-bc3a-5c4a88094d17", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T00:37:36.000Z" - }, - "end": { - "$date": "2020-10-25T01:09:29.000Z" - }, - "events": [ - { - "uuid": "2cd07ec4-8896-4d63-8c87-bd76d802e3b5", - "start": { - "$date": "2020-10-25T00:37:36.000Z" - }, - "end": { - "$date": "2020-10-25T01:09:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e1ae7e9-7be3-4835-bb5e-7aa22f45f656", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-25T00:37:25.000Z" - }, - "end": { - "$date": "2020-10-25T01:09:20.000Z" - }, - "events": [ - { - "uuid": "81f21350-565d-4f72-8283-efb28724a567", - "start": { - "$date": "2020-10-25T00:37:25.000Z" - }, - "end": { - "$date": "2020-10-25T01:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "365470b5-ecd3-4232-af7b-b01d7e950405", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T00:44:31.000Z" - }, - "end": { - "$date": "2020-10-25T01:12:25.000Z" - }, - "events": [ - { - "uuid": "b3394280-9f38-46c2-9ec3-6b7193b560ae", - "start": { - "$date": "2020-10-25T00:44:31.000Z" - }, - "end": { - "$date": "2020-10-25T01:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "186e903c-90ca-4ea0-9004-7d896a1e5aad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T01:12:37.000Z" - }, - "end": { - "$date": "2020-10-25T01:42:57.000Z" - }, - "events": [ - { - "uuid": "b78f34a7-6952-4bda-b775-b56947a167e3", - "start": { - "$date": "2020-10-25T01:12:37.000Z" - }, - "end": { - "$date": "2020-10-25T01:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "fddb511a-cb93-45c9-8a7b-714d899e31ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-25T01:26:33.000Z" - }, - "end": { - "$date": "2020-10-25T03:17:52.000Z" - }, - "events": [ - { - "uuid": "f5fd071a-b7c1-4f94-b02f-a043a2f01953", - "start": { - "$date": "2020-10-25T01:26:33.000Z" - }, - "end": { - "$date": "2020-10-25T03:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fb67db76-9064-469c-b3d9-0b701a1c6359", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T01:44:54.000Z" - }, - "end": { - "$date": "2020-10-25T01:47:26.000Z" - }, - "events": [ - { - "uuid": "1208050a-3e49-4554-b1ff-03d3c2825658", - "start": { - "$date": "2020-10-25T01:44:54.000Z" - }, - "end": { - "$date": "2020-10-25T01:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "d16c5350-cfaa-426b-8b8d-e8f66cb2b89f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-25T01:47:34.000Z" - }, - "end": { - "$date": "2020-10-25T01:56:46.000Z" - }, - "events": [ - { - "uuid": "7512db57-0a1c-4895-b925-2467a05d69c8", - "start": { - "$date": "2020-10-25T01:47:34.000Z" - }, - "end": { - "$date": "2020-10-25T01:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "64e0d462-3a94-4581-8ba3-3a9e32455182", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T01:51:45.000Z" - }, - "end": { - "$date": "2020-10-25T06:01:10.000Z" - }, - "events": [ - { - "uuid": "959fc9ba-40e6-4fb4-ba45-9e91a2f997a4", - "start": { - "$date": "2020-10-25T01:51:45.000Z" - }, - "end": { - "$date": "2020-10-25T06:01:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e37c8120-6dda-4950-841a-1222ae146e07", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-25T01:57:55.000Z" - }, - "end": { - "$date": "2020-10-25T02:33:23.000Z" - }, - "events": [ - { - "uuid": "6359430e-eee6-49f2-af13-8e591d70961f", - "start": { - "$date": "2020-10-25T01:57:55.000Z" - }, - "end": { - "$date": "2020-10-25T02:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "30464e60-f8fd-45af-9070-b53414f16f01", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-25T01:58:00.000Z" - }, - "end": { - "$date": "2020-10-25T02:32:57.000Z" - }, - "events": [ - { - "uuid": "9d2c2bd5-a39c-45de-ac5d-73d7f0817b0a", - "start": { - "$date": "2020-10-25T01:58:00.000Z" - }, - "end": { - "$date": "2020-10-25T02:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", - "uuid": "e34eabcc-a9ec-420e-969a-11a329b66e8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T02:21:51.000Z" - }, - "end": { - "$date": "2020-10-25T02:24:21.000Z" - }, - "events": [ - { - "uuid": "57576880-774e-45d7-90cf-288c610fcb75", - "start": { - "$date": "2020-10-25T02:21:51.000Z" - }, - "end": { - "$date": "2020-10-25T02:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", - "uuid": "4e001cac-cbc4-4f0f-9141-e3f97b862fe8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T02:24:41.000Z" - }, - "end": { - "$date": "2020-10-25T03:14:28.000Z" - }, - "events": [ - { - "uuid": "d3cddd3f-b193-464a-9aad-c6babc9b9622", - "start": { - "$date": "2020-10-25T02:24:41.000Z" - }, - "end": { - "$date": "2020-10-25T03:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "d3382659-b67c-4f67-963d-db8a99f63645", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-25T03:11:11.000Z" - }, - "end": { - "$date": "2020-10-25T05:27:08.000Z" - }, - "events": [ - { - "uuid": "d0b19f21-a3a1-42f5-911d-cd0cdf3599de", - "start": { - "$date": "2020-10-25T03:11:11.000Z" - }, - "end": { - "$date": "2020-10-25T05:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "933e45a6-159a-40c3-88d4-4e55b0f42562", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T03:33:11.000Z" - }, - "end": { - "$date": "2020-10-25T03:52:53.000Z" - }, - "events": [ - { - "uuid": "7e359ccc-df52-4d31-92ab-6e38673fb939", - "start": { - "$date": "2020-10-25T03:33:11.000Z" - }, - "end": { - "$date": "2020-10-25T03:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eefaf046-bca0-41ad-9238-24ff75a53322", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-25T03:32:25.000Z" - }, - "end": { - "$date": "2020-10-25T05:09:53.000Z" - }, - "events": [ - { - "uuid": "a30984b4-e94f-489f-8440-078c0d2000ed", - "start": { - "$date": "2020-10-25T03:32:25.000Z" - }, - "end": { - "$date": "2020-10-25T05:09:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "763725fa-d1a0-42b8-b3f5-153afbaa6dd0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-25T03:43:54.000Z" - }, - "end": { - "$date": "2020-10-25T05:44:37.000Z" - }, - "events": [ - { - "uuid": "3a789d24-64cd-4a06-8f50-f3bbc9fff7e1", - "start": { - "$date": "2020-10-25T03:43:54.000Z" - }, - "end": { - "$date": "2020-10-25T05:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "834373e2-7872-4362-a2ec-6418050ca4b9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T06:05:31.000Z" - }, - "end": { - "$date": "2020-10-25T06:51:34.000Z" - }, - "events": [ - { - "uuid": "bb0fc22b-9b49-489a-8644-e8dfe7e88574", - "start": { - "$date": "2020-10-25T06:05:31.000Z" - }, - "end": { - "$date": "2020-10-25T06:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7bcc2d9a-0d6d-4069-b3bc-24575e00793a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T06:16:48.000Z" - }, - "end": { - "$date": "2020-10-25T06:18:59.000Z" - }, - "events": [ - { - "uuid": "78b2811b-7e00-49fc-b547-33d165ef718d", - "start": { - "$date": "2020-10-25T06:16:48.000Z" - }, - "end": { - "$date": "2020-10-25T06:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c72e37b3-0a86-4cff-a517-f7faa8dd1a38", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-25T07:22:33.000Z" - }, - "end": { - "$date": "2020-10-25T07:50:37.000Z" - }, - "events": [ - { - "uuid": "5624fa76-bc85-49fc-a346-dc665c132f75", - "start": { - "$date": "2020-10-25T07:22:33.000Z" - }, - "end": { - "$date": "2020-10-25T07:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "17834e0d-4cfa-4063-bd18-6479b7a62fe9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T07:13:53.000Z" - }, - "end": { - "$date": "2020-10-25T08:06:45.000Z" - }, - "events": [ - { - "uuid": "a3060a8c-d43f-488a-98da-02d71e5ea7d5", - "start": { - "$date": "2020-10-25T07:13:53.000Z" - }, - "end": { - "$date": "2020-10-25T08:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fc7552c-e22f-4b36-b5aa-bbd98c0b281a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-25T08:02:00.000Z" - }, - "end": { - "$date": "2020-10-25T08:29:31.000Z" - }, - "events": [ - { - "uuid": "196e35e0-62d6-4070-91b0-ec3241a8a96d", - "start": { - "$date": "2020-10-25T08:02:00.000Z" - }, - "end": { - "$date": "2020-10-25T08:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7688c387-556e-41d4-90f1-72632cd65f5a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-25T14:54:22.000Z" - }, - "end": { - "$date": "2020-10-25T18:12:53.000Z" - }, - "events": [ - { - "uuid": "9b96a863-a0f3-4510-a684-6ab1285820ba", - "start": { - "$date": "2020-10-25T14:54:22.000Z" - }, - "end": { - "$date": "2020-10-25T18:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "9c583627-7809-4f72-98bd-8abd8ab74c7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-25T15:54:13.000Z" - }, - "end": { - "$date": "2020-10-25T15:58:10.000Z" - }, - "events": [ - { - "uuid": "c38b998d-a959-4569-afa8-23e5c0544fb2", - "start": { - "$date": "2020-10-25T15:54:13.000Z" - }, - "end": { - "$date": "2020-10-25T15:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a4d0191-7906-44f0-ba7b-fd742e8255be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-25T16:01:24.000Z" - }, - "end": { - "$date": "2020-10-25T16:26:06.000Z" - }, - "events": [ - { - "uuid": "d1ee8b72-d1fb-41f6-ac3d-11d7fd091d21", - "start": { - "$date": "2020-10-25T16:01:24.000Z" - }, - "end": { - "$date": "2020-10-25T16:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e286db69-0c1e-4197-afa4-b74d0fc1f21f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-25T16:30:45.000Z" - }, - "end": { - "$date": "2020-10-25T17:03:27.000Z" - }, - "events": [ - { - "uuid": "ec4e212e-bbe7-435a-a3b4-ea25d2a6592e", - "start": { - "$date": "2020-10-25T16:30:45.000Z" - }, - "end": { - "$date": "2020-10-25T17:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7e880a6e-e4f5-4377-b8d2-24bbd90ea027", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-25T16:28:29.000Z" - }, - "end": { - "$date": "2020-10-25T18:05:09.000Z" - }, - "events": [ - { - "uuid": "1a794cfa-fece-4623-8b5f-f7c1597bf267", - "start": { - "$date": "2020-10-25T16:28:29.000Z" - }, - "end": { - "$date": "2020-10-25T17:32:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "285511bd-c9f5-4af3-a7ff-ea1eb3cef3b3", - "start": { - "$date": "2020-10-25T17:32:29.000Z" - }, - "end": { - "$date": "2020-10-25T17:37:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb7b1ad9-42fd-4f18-9e4a-78b5ac159573", - "start": { - "$date": "2020-10-25T17:37:29.000Z" - }, - "end": { - "$date": "2020-10-25T17:47:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f713a0d6-34a4-4610-bbf5-2fc24a74a698", - "start": { - "$date": "2020-10-25T17:47:29.000Z" - }, - "end": { - "$date": "2020-10-25T18:05:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "941e94cd-9354-474d-b72a-7a9d9d0b0978", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-25T17:52:08.000Z" - }, - "end": { - "$date": "2020-10-25T20:53:23.000Z" - }, - "events": [ - { - "uuid": "07e20f4c-5bbd-4973-bf5b-7c8ebe4b0bef", - "start": { - "$date": "2020-10-25T17:52:08.000Z" - }, - "end": { - "$date": "2020-10-25T20:53:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15e84139-f23e-433e-a910-ea1de7be0118", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T19:57:36.000Z" - }, - "end": { - "$date": "2020-10-25T20:21:18.000Z" - }, - "events": [ - { - "uuid": "dc98339e-ff60-49ab-9e5d-27898ba6288b", - "start": { - "$date": "2020-10-25T19:57:36.000Z" - }, - "end": { - "$date": "2020-10-25T20:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f1cc94d-3a77-437c-be01-f2bafd85ab3e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T20:24:38.000Z" - }, - "end": { - "$date": "2020-10-25T20:55:14.000Z" - }, - "events": [ - { - "uuid": "fb0ee3a5-7d1f-4211-816a-9ee6bb64ede6", - "start": { - "$date": "2020-10-25T20:24:38.000Z" - }, - "end": { - "$date": "2020-10-25T20:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f4af9887-7cc6-4dd5-ac71-b3fab42b9221", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-25T20:32:20.000Z" - }, - "end": { - "$date": "2020-10-25T22:09:18.000Z" - }, - "events": [ - { - "uuid": "f5841a91-06bc-4592-a440-8dc6ae8df91a", - "start": { - "$date": "2020-10-25T20:32:20.000Z" - }, - "end": { - "$date": "2020-10-25T22:09:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e47ceb2c-8604-4319-92d4-8a982a2960b9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T20:33:25.000Z" - }, - "end": { - "$date": "2020-10-25T20:59:38.000Z" - }, - "events": [ - { - "uuid": "356d466e-5be3-47d6-8e90-aca43dbeb35d", - "start": { - "$date": "2020-10-25T20:33:25.000Z" - }, - "end": { - "$date": "2020-10-25T20:59:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "f36270bb-e5c8-4771-a83d-e0ef65910713", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-25T20:51:13.000Z" - }, - "end": { - "$date": "2020-10-25T21:50:05.000Z" - }, - "events": [ - { - "uuid": "33bfd16d-8e37-4871-8a20-144c8d7e44a8", - "start": { - "$date": "2020-10-25T20:51:13.000Z" - }, - "end": { - "$date": "2020-10-25T21:50:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "21155e0a-3ca7-47d6-8e7e-f12fcc7d2327", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-25T21:10:49.000Z" - }, - "end": { - "$date": "2020-10-26T02:12:18.000Z" - }, - "events": [ - { - "uuid": "7035c26c-f3a6-4ebd-bbdb-6360f6162240", - "start": { - "$date": "2020-10-25T21:10:49.000Z" - }, - "end": { - "$date": "2020-10-26T02:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c48943e-a82a-474a-9cc2-6c7aeafc7c3e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T21:59:34.000Z" - }, - "end": { - "$date": "2020-10-25T22:14:50.000Z" - }, - "events": [ - { - "uuid": "a1a8dc87-5412-4dfd-90da-0f63e0505729", - "start": { - "$date": "2020-10-25T21:59:34.000Z" - }, - "end": { - "$date": "2020-10-25T22:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a23e92d-8a15-43f8-a14c-42eef68a0898", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T22:21:56.000Z" - }, - "end": { - "$date": "2020-10-25T22:38:41.000Z" - }, - "events": [ - { - "uuid": "42e821bd-2445-484a-aa5c-01f5a09bd2dc", - "start": { - "$date": "2020-10-25T22:21:56.000Z" - }, - "end": { - "$date": "2020-10-25T22:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f338037e-56ab-41cc-8253-7844f0408c0a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T22:15:38.000Z" - }, - "end": { - "$date": "2020-10-25T22:25:54.000Z" - }, - "events": [ - { - "uuid": "06a07c92-5f8d-4272-a055-802ff5c4b035", - "start": { - "$date": "2020-10-25T22:15:38.000Z" - }, - "end": { - "$date": "2020-10-25T22:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89abaabe-b73c-430c-823a-957ecaf7b634", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-25T22:45:42.000Z" - }, - "end": { - "$date": "2020-10-25T23:10:02.000Z" - }, - "events": [ - { - "uuid": "6deee4e5-18c9-49af-a15d-b96d11e141d7", - "start": { - "$date": "2020-10-25T22:45:42.000Z" - }, - "end": { - "$date": "2020-10-25T23:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3f14a96a-77c1-49a0-a7f6-a0659580d0f5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-25T22:41:04.000Z" - }, - "end": { - "$date": "2020-10-26T01:11:25.000Z" - }, - "events": [ - { - "uuid": "a455d92c-ed1d-4cdb-b485-ab4ecba428c4", - "start": { - "$date": "2020-10-25T22:41:04.000Z" - }, - "end": { - "$date": "2020-10-25T23:17:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7cb301b-1062-432a-b879-ab6e55b7a8ec", - "start": { - "$date": "2020-10-25T23:17:04.000Z" - }, - "end": { - "$date": "2020-10-25T23:22:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7091644c-ab4c-4eaf-a9dc-562d0b88e5be", - "start": { - "$date": "2020-10-25T23:22:04.000Z" - }, - "end": { - "$date": "2020-10-26T01:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaa0d2bb-50e8-4368-be89-b3cb5bcb340d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T00:20:15.000Z" - }, - "end": { - "$date": "2020-10-26T00:42:50.000Z" - }, - "events": [ - { - "uuid": "679de8fb-a74a-41dd-a761-3bbcc0c9a428", - "start": { - "$date": "2020-10-26T00:20:15.000Z" - }, - "end": { - "$date": "2020-10-26T00:42:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3df76735-eb81-4bf2-90de-e70f7993bce6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T00:47:31.000Z" - }, - "end": { - "$date": "2020-10-26T01:03:47.000Z" - }, - "events": [ - { - "uuid": "077064ac-67f8-4567-bc51-0ce513554d4a", - "start": { - "$date": "2020-10-26T00:47:31.000Z" - }, - "end": { - "$date": "2020-10-26T01:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6e542e81-9611-4a52-a3d3-1f81024fe530", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T01:06:57.000Z" - }, - "end": { - "$date": "2020-10-26T01:30:10.000Z" - }, - "events": [ - { - "uuid": "ac5892cb-e62d-42c5-a398-29f91fc40433", - "start": { - "$date": "2020-10-26T01:06:57.000Z" - }, - "end": { - "$date": "2020-10-26T01:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "29df745f-44d9-43b9-8beb-3f40f8556783", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-26T01:07:17.000Z" - }, - "end": { - "$date": "2020-10-26T02:35:54.000Z" - }, - "events": [ - { - "uuid": "7413b55a-3464-4455-910f-e6fc0eea1837", - "start": { - "$date": "2020-10-26T01:07:17.000Z" - }, - "end": { - "$date": "2020-10-26T02:35:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8a45dff0-69ef-405c-b8a2-d99e00b557f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-26T01:23:47.000Z" - }, - "end": { - "$date": "2020-10-26T01:43:53.000Z" - }, - "events": [ - { - "uuid": "262e9f0e-bb12-45c8-ad6d-a3648ff6bac6", - "start": { - "$date": "2020-10-26T01:23:47.000Z" - }, - "end": { - "$date": "2020-10-26T01:43:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5cf660a6-44cf-4ffd-a484-316460e837f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T01:37:41.000Z" - }, - "end": { - "$date": "2020-10-26T02:44:16.000Z" - }, - "events": [ - { - "uuid": "ed3f8f9d-13de-4211-94ac-d8f80a582586", - "start": { - "$date": "2020-10-26T01:37:41.000Z" - }, - "end": { - "$date": "2020-10-26T02:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "1d834e86-d2c0-4318-a5ae-e128261e6676", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-26T02:27:21.000Z" - }, - "end": { - "$date": "2020-10-26T02:33:39.000Z" - }, - "events": [ - { - "uuid": "adf64ae0-004a-485c-899b-d73f90920d40", - "start": { - "$date": "2020-10-26T02:27:21.000Z" - }, - "end": { - "$date": "2020-10-26T02:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "7e715877-95a0-488e-90e0-cce11f2fedfd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-26T02:34:03.000Z" - }, - "end": { - "$date": "2020-10-26T02:43:40.000Z" - }, - "events": [ - { - "uuid": "47750c1f-9b21-455e-a5f3-7a6c34514b9b", - "start": { - "$date": "2020-10-26T02:34:03.000Z" - }, - "end": { - "$date": "2020-10-26T02:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ce4268f2-58d1-43de-a721-6b355e124713", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-26T01:07:17.000Z" - }, - "end": { - "$date": "2020-10-26T02:43:53.000Z" - }, - "events": [ - { - "uuid": "fff483ce-9f2f-4763-bc2c-374080a5db9e", - "start": { - "$date": "2020-10-26T01:07:17.000Z" - }, - "end": { - "$date": "2020-10-26T02:43:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a8aa20fb-36a1-4cfd-ad29-a26da9019dc7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-26T02:44:14.000Z" - }, - "end": { - "$date": "2020-10-26T03:03:41.000Z" - }, - "events": [ - { - "uuid": "67ff631b-70c9-440e-b6e7-f8b72629c085", - "start": { - "$date": "2020-10-26T02:44:14.000Z" - }, - "end": { - "$date": "2020-10-26T03:03:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca2ceff7-b358-45be-a3f6-56f53372818a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-26T03:04:34.000Z" - }, - "end": { - "$date": "2020-10-26T03:27:50.000Z" - }, - "events": [ - { - "uuid": "1c0fe01d-1d00-4aed-aab8-7f1c3d15d3f6", - "start": { - "$date": "2020-10-26T03:04:34.000Z" - }, - "end": { - "$date": "2020-10-26T03:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f1d43c5b-cdf6-4256-86da-186a6c13c5cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-26T03:06:59.000Z" - }, - "end": { - "$date": "2020-10-26T04:54:58.000Z" - }, - "events": [ - { - "uuid": "f2e905cc-56d9-4eee-8496-ff5812fc8073", - "start": { - "$date": "2020-10-26T03:06:59.000Z" - }, - "end": { - "$date": "2020-10-26T04:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33b098c5-2a0c-4778-8c98-304922b1d9e6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-26T03:22:23.000Z" - }, - "end": { - "$date": "2020-10-26T03:53:46.000Z" - }, - "events": [ - { - "uuid": "92a8105b-5316-47f4-ad38-0f1b077e5a29", - "start": { - "$date": "2020-10-26T03:22:23.000Z" - }, - "end": { - "$date": "2020-10-26T03:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acabf76a-6f3e-4f05-a8f2-7cd59bf5a274", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-26T03:59:44.000Z" - }, - "end": { - "$date": "2020-10-26T04:35:21.000Z" - }, - "events": [ - { - "uuid": "bbcba5aa-1d21-4d84-9057-f5001f906cb7", - "start": { - "$date": "2020-10-26T03:59:44.000Z" - }, - "end": { - "$date": "2020-10-26T04:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8c0789d1-6cee-4659-b94c-4f3da5d67b9d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-26T04:35:52.000Z" - }, - "end": { - "$date": "2020-10-26T04:37:07.000Z" - }, - "events": [ - { - "uuid": "c3691988-3c62-4ef7-a7af-6da9ad7a6764", - "start": { - "$date": "2020-10-26T04:35:52.000Z" - }, - "end": { - "$date": "2020-10-26T04:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cadc49e-2790-404c-ba72-b6008c15b93a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-26T04:41:41.000Z" - }, - "end": { - "$date": "2020-10-26T05:11:07.000Z" - }, - "events": [ - { - "uuid": "73cd236a-73a5-4454-a6ce-3466a17752b3", - "start": { - "$date": "2020-10-26T04:41:41.000Z" - }, - "end": { - "$date": "2020-10-26T05:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4a416a36-e9a5-48ac-b7c9-3e50e70b98de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-26T04:37:27.000Z" - }, - "end": { - "$date": "2020-10-26T05:02:49.000Z" - }, - "events": [ - { - "uuid": "cb351bab-9a4c-49e5-b92d-5d34317fdc6f", - "start": { - "$date": "2020-10-26T04:37:27.000Z" - }, - "end": { - "$date": "2020-10-26T05:02:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ffa0abc-2b07-4564-a572-415f7464eb42", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-26T04:39:33.000Z" - }, - "end": { - "$date": "2020-10-26T05:30:48.000Z" - }, - "events": [ - { - "uuid": "62873330-ef0b-47f7-baf5-49e0c2eb5b28", - "start": { - "$date": "2020-10-26T04:39:33.000Z" - }, - "end": { - "$date": "2020-10-26T05:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "811ef9e9-a842-4cba-bad8-ed57f5afa198", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-26T15:36:45.000Z" - }, - "end": { - "$date": "2020-10-26T17:06:44.000Z" - }, - "events": [ - { - "uuid": "47116ca2-5cdf-484f-ba5f-72cee79287fb", - "start": { - "$date": "2020-10-26T15:36:45.000Z" - }, - "end": { - "$date": "2020-10-26T17:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "ce5cd32b-10f3-426b-a6b9-1a138992bb90", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T15:53:17.000Z" - }, - "end": { - "$date": "2020-10-26T16:02:32.000Z" - }, - "events": [ - { - "uuid": "77a100b1-3e04-41cd-a328-13af8598ed07", - "start": { - "$date": "2020-10-26T15:53:17.000Z" - }, - "end": { - "$date": "2020-10-26T16:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "6d67b128-b487-403f-963d-1b0085e9655c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T16:03:08.000Z" - }, - "end": { - "$date": "2020-10-26T16:42:13.000Z" - }, - "events": [ - { - "uuid": "1f77645d-1067-4cde-9be0-536203048221", - "start": { - "$date": "2020-10-26T16:03:08.000Z" - }, - "end": { - "$date": "2020-10-26T16:42:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "164c1e90-5dc1-417d-9a02-126cb7e0dea4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T17:01:10.000Z" - }, - "end": { - "$date": "2020-10-26T17:56:36.000Z" - }, - "events": [ - { - "uuid": "effe932c-a893-4587-b48b-6c11d491c55d", - "start": { - "$date": "2020-10-26T17:01:10.000Z" - }, - "end": { - "$date": "2020-10-26T17:56:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62ed17d7-5836-448b-86d7-b5eaae450bbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T17:59:07.000Z" - }, - "end": { - "$date": "2020-10-26T18:19:19.000Z" - }, - "events": [ - { - "uuid": "90bee209-2152-4e17-a81b-e26d0d31bc2a", - "start": { - "$date": "2020-10-26T17:59:07.000Z" - }, - "end": { - "$date": "2020-10-26T18:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1033cfac-7d9b-46d8-a58e-59cc4a4f9d65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T18:02:02.000Z" - }, - "end": { - "$date": "2020-10-26T18:14:12.000Z" - }, - "events": [ - { - "uuid": "283e26e4-b579-4c7a-bf01-48ababda37f2", - "start": { - "$date": "2020-10-26T18:02:02.000Z" - }, - "end": { - "$date": "2020-10-26T18:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "46ac9e19-23c3-47b2-a70c-e31fcf0de452", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T18:14:37.000Z" - }, - "end": { - "$date": "2020-10-26T18:36:49.000Z" - }, - "events": [ - { - "uuid": "564fe878-1938-41a3-bce8-7f3d841331b3", - "start": { - "$date": "2020-10-26T18:14:37.000Z" - }, - "end": { - "$date": "2020-10-26T18:36:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80e2e19a-a87f-448b-b04b-abb7659872ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T18:42:34.000Z" - }, - "end": { - "$date": "2020-10-26T18:43:05.000Z" - }, - "events": [ - { - "uuid": "56a816d0-90be-4868-99b0-e65946d6e189", - "start": { - "$date": "2020-10-26T18:42:34.000Z" - }, - "end": { - "$date": "2020-10-26T18:43:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "129d5621-a016-4916-8b78-cee20ea0b03d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T19:05:22.000Z" - }, - "end": { - "$date": "2020-10-26T20:14:39.000Z" - }, - "events": [ - { - "uuid": "fc5ee0ae-49c5-418a-ae3e-9f3647139ae4", - "start": { - "$date": "2020-10-26T19:05:22.000Z" - }, - "end": { - "$date": "2020-10-26T20:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "daa4473f-7afd-4420-9774-4d140fef035b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-10-26T19:11:14.000Z" - }, - "end": { - "$date": "2020-10-26T20:24:10.000Z" - }, - "events": [ - { - "uuid": "22ff1c87-7b5b-4ed2-8749-d3bf497e35f0", - "start": { - "$date": "2020-10-26T19:11:14.000Z" - }, - "end": { - "$date": "2020-10-26T20:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0f0c24bc-73e2-4b7c-a8f0-86122a7d1e0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-26T20:19:58.000Z" - }, - "end": { - "$date": "2020-10-26T20:43:54.000Z" - }, - "events": [ - { - "uuid": "cac9ea29-661e-4655-a106-84fe1076ca80", - "start": { - "$date": "2020-10-26T20:19:58.000Z" - }, - "end": { - "$date": "2020-10-26T20:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "15dd6479-b44a-4c32-b7ee-d4ec6d479b7e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T21:13:15.000Z" - }, - "end": { - "$date": "2020-10-26T21:44:56.000Z" - }, - "events": [ - { - "uuid": "b760ffbf-9807-490d-b203-c4bd8d61ce98", - "start": { - "$date": "2020-10-26T21:13:15.000Z" - }, - "end": { - "$date": "2020-10-26T21:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "f5d221b0-bc3f-4963-a4d5-bdbe7d7aa1d6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-26T21:17:42.000Z" - }, - "end": { - "$date": "2020-10-27T00:01:42.000Z" - }, - "events": [ - { - "uuid": "8830dcc0-8995-480b-97b6-f230716ccf04", - "start": { - "$date": "2020-10-26T21:17:42.000Z" - }, - "end": { - "$date": "2020-10-27T00:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "f65dfff8-f9fe-40db-93b6-84bb4d397c2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-26T21:45:22.000Z" - }, - "end": { - "$date": "2020-10-26T23:23:44.000Z" - }, - "events": [ - { - "uuid": "0f029e67-f84a-4625-9d29-960ee92db0b6", - "start": { - "$date": "2020-10-26T21:45:22.000Z" - }, - "end": { - "$date": "2020-10-26T23:23:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f83433e-1fc9-4f4e-9b92-52983b8e3cd2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T22:16:25.000Z" - }, - "end": { - "$date": "2020-10-26T22:41:31.000Z" - }, - "events": [ - { - "uuid": "4932568d-1019-4ac1-a1d0-c91dc4f8e987", - "start": { - "$date": "2020-10-26T22:16:25.000Z" - }, - "end": { - "$date": "2020-10-26T22:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0328e698-4ccf-44e4-9591-7ac8000dba4f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-26T23:39:27.000Z" - }, - "end": { - "$date": "2020-10-27T00:09:11.000Z" - }, - "events": [ - { - "uuid": "ecd8fb11-642f-4b15-a4a8-50d9cb96d832", - "start": { - "$date": "2020-10-26T23:39:27.000Z" - }, - "end": { - "$date": "2020-10-27T00:09:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d70b33e-35c7-492a-8948-a98b19041cc3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-26T23:59:45.000Z" - }, - "end": { - "$date": "2020-10-27T00:37:47.000Z" - }, - "events": [ - { - "uuid": "a9ba2a79-5fd2-43a4-9a01-fad2a81cbe73", - "start": { - "$date": "2020-10-26T23:59:45.000Z" - }, - "end": { - "$date": "2020-10-27T00:36:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0b7b6494-6f45-4689-83e8-97427920ecec", - "start": { - "$date": "2020-10-27T00:36:45.000Z" - }, - "end": { - "$date": "2020-10-27T00:37:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d94061a2-e5c6-40ec-8e6c-5cb93939f6b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-27T01:32:21.000Z" - }, - "end": { - "$date": "2020-10-27T01:34:01.000Z" - }, - "events": [ - { - "uuid": "6a7da411-1c06-4709-85fd-629b11548746", - "start": { - "$date": "2020-10-27T01:32:21.000Z" - }, - "end": { - "$date": "2020-10-27T01:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f0e95dbb-8210-40d6-8796-887db9f1bfe1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-27T01:35:06.000Z" - }, - "end": { - "$date": "2020-10-27T05:22:28.000Z" - }, - "events": [ - { - "uuid": "5b375f89-959a-47b2-89a6-9d28e683d423", - "start": { - "$date": "2020-10-27T01:35:06.000Z" - }, - "end": { - "$date": "2020-10-27T05:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ff378385-0ea6-4fb4-8356-81f9fcf314c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-27T01:53:31.000Z" - }, - "end": { - "$date": "2020-10-27T01:54:37.000Z" - }, - "events": [ - { - "uuid": "c6f77fd2-2063-48dc-90e2-e6abad4a9b31", - "start": { - "$date": "2020-10-27T01:53:31.000Z" - }, - "end": { - "$date": "2020-10-27T01:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9d616b19-c521-4bfa-8f42-5cc7721c65cc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-27T01:54:57.000Z" - }, - "end": { - "$date": "2020-10-27T01:56:02.000Z" - }, - "events": [ - { - "uuid": "8c7fc1fe-b403-459a-ad06-be350bdf48c5", - "start": { - "$date": "2020-10-27T01:54:57.000Z" - }, - "end": { - "$date": "2020-10-27T01:56:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cd0db0f3-ff9d-4f5a-9cd1-eca986143b10", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-27T01:56:12.000Z" - }, - "end": { - "$date": "2020-10-27T03:34:19.000Z" - }, - "events": [ - { - "uuid": "6f1ad945-4d3a-4431-81e4-3799f3f70d80", - "start": { - "$date": "2020-10-27T01:56:12.000Z" - }, - "end": { - "$date": "2020-10-27T03:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "6ab79714-172c-48fd-94e3-c23e9f0daf06", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T02:59:33.000Z" - }, - "end": { - "$date": "2020-10-27T03:02:04.000Z" - }, - "events": [ - { - "uuid": "067406ec-98b4-4b57-bd5d-431be5cd9f79", - "start": { - "$date": "2020-10-27T02:59:33.000Z" - }, - "end": { - "$date": "2020-10-27T03:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1b796f9e-0a9a-4a8d-ae5c-40eb8955e193", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-27T03:01:38.000Z" - }, - "end": { - "$date": "2020-10-27T03:39:15.000Z" - }, - "events": [ - { - "uuid": "ad37923c-0c86-433f-a2e7-32f7ca1bfba5", - "start": { - "$date": "2020-10-27T03:01:38.000Z" - }, - "end": { - "$date": "2020-10-27T03:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b0143962-0e09-40ad-806e-fe9ac6b57719", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T03:11:50.000Z" - }, - "end": { - "$date": "2020-10-27T03:43:33.000Z" - }, - "events": [ - { - "uuid": "89bfd710-a57d-4f4b-b45c-99b627d00f28", - "start": { - "$date": "2020-10-27T03:11:50.000Z" - }, - "end": { - "$date": "2020-10-27T03:43:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "467c9d94-3399-4d95-b91e-63337f36d1b2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T03:43:42.000Z" - }, - "end": { - "$date": "2020-10-27T03:49:33.000Z" - }, - "events": [ - { - "uuid": "8ce4f709-cfe8-4124-b7c2-bd7190761aee", - "start": { - "$date": "2020-10-27T03:43:42.000Z" - }, - "end": { - "$date": "2020-10-27T03:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6c58ef43-5359-4d8f-a7f2-619fc3f3f875", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-27T03:44:58.000Z" - }, - "end": { - "$date": "2020-10-27T06:35:34.000Z" - }, - "events": [ - { - "uuid": "3c14ee67-1799-4873-b1c3-77f093790796", - "start": { - "$date": "2020-10-27T03:44:58.000Z" - }, - "end": { - "$date": "2020-10-27T06:35:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ab71bf9-2610-4fbb-abcd-e85b7377fa2e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T04:28:21.000Z" - }, - "end": { - "$date": "2020-10-27T05:04:36.000Z" - }, - "events": [ - { - "uuid": "aec642c3-aaf0-4190-bea5-0854cf04c240", - "start": { - "$date": "2020-10-27T04:28:21.000Z" - }, - "end": { - "$date": "2020-10-27T05:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d67c1a1-675f-4354-a432-528e875b8d34", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-27T03:52:25.000Z" - }, - "end": { - "$date": "2020-10-27T04:26:53.000Z" - }, - "events": [ - { - "uuid": "5f81e19c-bbe1-4a8a-9b4b-2a7e2ab9fc24", - "start": { - "$date": "2020-10-27T03:52:25.000Z" - }, - "end": { - "$date": "2020-10-27T04:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eac12830-841c-4519-8f4b-5959fbd31b41", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-27T04:28:38.000Z" - }, - "end": { - "$date": "2020-10-27T05:04:36.000Z" - }, - "events": [ - { - "uuid": "05b7f10e-824f-435b-984e-3fe272745724", - "start": { - "$date": "2020-10-27T04:28:38.000Z" - }, - "end": { - "$date": "2020-10-27T05:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "f826bc83-f29c-47e5-b15d-dc912ec02c81", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-27T06:35:59.000Z" - }, - "end": { - "$date": "2020-10-27T08:04:14.000Z" - }, - "events": [ - { - "uuid": "4e15b1dc-048f-410e-aa99-36d4949ed241", - "start": { - "$date": "2020-10-27T06:35:59.000Z" - }, - "end": { - "$date": "2020-10-27T08:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "e42c566f-b371-4472-b120-08c1bd1cec69", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-27T14:15:34.000Z" - }, - "end": { - "$date": "2020-10-27T14:27:48.000Z" - }, - "events": [ - { - "uuid": "680cf151-dc67-4ac9-88ea-628e0a129f6a", - "start": { - "$date": "2020-10-27T14:15:34.000Z" - }, - "end": { - "$date": "2020-10-27T14:26:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "38ac5d16-6771-43d7-8442-2e6ee6581e83", - "start": { - "$date": "2020-10-27T14:26:34.000Z" - }, - "end": { - "$date": "2020-10-27T14:27:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bc4b352-53ed-4084-8f07-f49eb159ea52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-27T16:08:53.000Z" - }, - "end": { - "$date": "2020-10-27T16:47:16.000Z" - }, - "events": [ - { - "uuid": "76f24bdc-1e15-4160-9c19-7270e0869c6b", - "start": { - "$date": "2020-10-27T16:08:53.000Z" - }, - "end": { - "$date": "2020-10-27T16:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "794caaef-101a-4597-9151-075258715878", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-27T17:08:00.000Z" - }, - "end": { - "$date": "2020-10-27T19:03:46.000Z" - }, - "events": [ - { - "uuid": "74f90360-4dec-4c18-82f8-8f20d661fc1a", - "start": { - "$date": "2020-10-27T17:08:00.000Z" - }, - "end": { - "$date": "2020-10-27T19:03:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79ec4e93-f113-4fe0-b651-3e7e0bf61c4b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T19:51:03.000Z" - }, - "end": { - "$date": "2020-10-27T20:10:24.000Z" - }, - "events": [ - { - "uuid": "bd017a3c-57d1-4da4-9824-b0612fedacee", - "start": { - "$date": "2020-10-27T19:51:03.000Z" - }, - "end": { - "$date": "2020-10-27T20:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2455d88c-6ea9-4780-ba38-6b8e042336e1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T20:13:49.000Z" - }, - "end": { - "$date": "2020-10-27T20:26:45.000Z" - }, - "events": [ - { - "uuid": "ac9ea3b5-1af8-49a0-abf9-dd531dd866a7", - "start": { - "$date": "2020-10-27T20:13:49.000Z" - }, - "end": { - "$date": "2020-10-27T20:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "86ccab30-53b1-4c77-a557-46005398c860", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-27T21:05:13.000Z" - }, - "end": { - "$date": "2020-10-27T22:24:15.000Z" - }, - "events": [ - { - "uuid": "85cb2906-f503-4c5c-931c-a290b0f7e15f", - "start": { - "$date": "2020-10-27T21:05:13.000Z" - }, - "end": { - "$date": "2020-10-27T22:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "50b15e2d-8d1a-4101-808c-214c976a06ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-27T22:53:29.000Z" - }, - "end": { - "$date": "2020-10-27T23:13:53.000Z" - }, - "events": [ - { - "uuid": "3331e007-0b84-464f-b67a-f4e9fdc9cc22", - "start": { - "$date": "2020-10-27T22:53:29.000Z" - }, - "end": { - "$date": "2020-10-27T23:13:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4304de96-244c-4502-b99c-371eb05e5f74", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-27T23:15:01.000Z" - }, - "end": { - "$date": "2020-10-28T01:25:20.000Z" - }, - "events": [ - { - "uuid": "efd5e0a4-15c3-478c-ab0b-6674a44911eb", - "start": { - "$date": "2020-10-27T23:15:01.000Z" - }, - "end": { - "$date": "2020-10-28T01:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1419d9f6-ea09-4208-ab2c-4a82200f00d0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-28T00:51:31.000Z" - }, - "end": { - "$date": "2020-10-28T04:55:42.000Z" - }, - "events": [ - { - "uuid": "31fcabd4-ccc3-40d6-a076-38e08b4a3fbe", - "start": { - "$date": "2020-10-28T00:51:31.000Z" - }, - "end": { - "$date": "2020-10-28T02:18:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c4235e29-26da-4532-9fd1-75f294a6a1f3", - "start": { - "$date": "2020-10-28T02:18:31.000Z" - }, - "end": { - "$date": "2020-10-28T02:22:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b04c705-3db1-460f-a15a-61f752698794", - "start": { - "$date": "2020-10-28T02:22:31.000Z" - }, - "end": { - "$date": "2020-10-28T04:00:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98072b77-420d-4d56-b8cf-3b53343a9901", - "start": { - "$date": "2020-10-28T04:00:31.000Z" - }, - "end": { - "$date": "2020-10-28T04:02:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ecd78632-ddc1-4ac2-8989-e196843a3770", - "start": { - "$date": "2020-10-28T04:02:31.000Z" - }, - "end": { - "$date": "2020-10-28T04:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d810368b-01a2-4d95-8009-a5a144956431", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-28T01:36:05.000Z" - }, - "end": { - "$date": "2020-10-28T01:42:32.000Z" - }, - "events": [ - { - "uuid": "ba19aea5-516d-4aea-840c-6f828d1fbed1", - "start": { - "$date": "2020-10-28T01:36:05.000Z" - }, - "end": { - "$date": "2020-10-28T01:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2f3309f2-e8f4-4d0c-9ba9-9a6a37f45167", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-28T01:42:46.000Z" - }, - "end": { - "$date": "2020-10-28T01:52:32.000Z" - }, - "events": [ - { - "uuid": "c94f1143-9cb2-4450-a3a2-2af0d095fab0", - "start": { - "$date": "2020-10-28T01:42:46.000Z" - }, - "end": { - "$date": "2020-10-28T01:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a1711f0-782c-4ba2-be9c-3720d2abafe5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-28T04:08:58.000Z" - }, - "end": { - "$date": "2020-10-28T04:48:08.000Z" - }, - "events": [ - { - "uuid": "b00b3d86-c74c-4b56-ba63-97bdac5bab4c", - "start": { - "$date": "2020-10-28T04:08:58.000Z" - }, - "end": { - "$date": "2020-10-28T04:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58d403ea-ff3f-449f-aab7-cc79080be9b6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-28T03:29:08.000Z" - }, - "end": { - "$date": "2020-10-28T04:01:54.000Z" - }, - "events": [ - { - "uuid": "8e3ce6ae-ab78-4930-8106-0ef470829c54", - "start": { - "$date": "2020-10-28T03:29:08.000Z" - }, - "end": { - "$date": "2020-10-28T04:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "597a9c55-5683-49e9-9d87-cf5942920071", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-28T04:09:04.000Z" - }, - "end": { - "$date": "2020-10-28T04:48:06.000Z" - }, - "events": [ - { - "uuid": "3cfd2878-f5ca-41e3-b2f2-c073b28ac5f5", - "start": { - "$date": "2020-10-28T04:09:04.000Z" - }, - "end": { - "$date": "2020-10-28T04:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "316aeefa-98d5-4a4b-83a3-8c6ff0fe0dcb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-28T04:09:40.000Z" - }, - "end": { - "$date": "2020-10-28T04:47:57.000Z" - }, - "events": [ - { - "uuid": "c25d1c1d-13ee-42c7-abec-a7252477e773", - "start": { - "$date": "2020-10-28T04:09:40.000Z" - }, - "end": { - "$date": "2020-10-28T04:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67ba9a42-e208-43e2-8696-fbd1b7130a4f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-28T04:50:57.000Z" - }, - "end": { - "$date": "2020-10-28T05:09:53.000Z" - }, - "events": [ - { - "uuid": "f20b3e1b-72f1-4527-aa7a-186bf944060a", - "start": { - "$date": "2020-10-28T04:50:57.000Z" - }, - "end": { - "$date": "2020-10-28T05:09:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5eda35f-e4c5-4415-8001-782fd41c9d7d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-28T04:51:07.000Z" - }, - "end": { - "$date": "2020-10-28T05:09:47.000Z" - }, - "events": [ - { - "uuid": "e8f54d6b-a080-41c9-94fa-dbbb2d2b7638", - "start": { - "$date": "2020-10-28T04:51:07.000Z" - }, - "end": { - "$date": "2020-10-28T05:09:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d5770f4-967d-4699-bffa-807ce2d1c2a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-28T04:50:58.000Z" - }, - "end": { - "$date": "2020-10-28T05:09:48.000Z" - }, - "events": [ - { - "uuid": "d7bbf1ab-6fdc-4aed-b979-32256a48c781", - "start": { - "$date": "2020-10-28T04:50:58.000Z" - }, - "end": { - "$date": "2020-10-28T05:09:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "02de168f-b6df-4da7-b6c3-c58cbb285089", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-28T14:33:11.000Z" - }, - "end": { - "$date": "2020-10-28T16:07:04.000Z" - }, - "events": [ - { - "uuid": "8b85860e-089c-431e-9527-8e904c36d050", - "start": { - "$date": "2020-10-28T14:33:11.000Z" - }, - "end": { - "$date": "2020-10-28T16:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "534c5e4c-2437-4739-8264-c1e404951815", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-28T17:07:39.000Z" - }, - "end": { - "$date": "2020-10-28T17:41:01.000Z" - }, - "events": [ - { - "uuid": "9eeea64d-5c97-41d6-b5b6-af54d7acc9f5", - "start": { - "$date": "2020-10-28T17:07:39.000Z" - }, - "end": { - "$date": "2020-10-28T17:41:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "379c628f-449f-44dc-9890-486250f833a6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-28T18:15:44.000Z" - }, - "end": { - "$date": "2020-10-28T18:16:49.000Z" - }, - "events": [ - { - "uuid": "85970fb8-e8c5-4a11-a05d-41ada477ef41", - "start": { - "$date": "2020-10-28T18:15:44.000Z" - }, - "end": { - "$date": "2020-10-28T18:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "564c3263-042d-4e98-85de-561d0e0192a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-28T19:46:25.000Z" - }, - "end": { - "$date": "2020-10-28T20:14:19.000Z" - }, - "events": [ - { - "uuid": "243ee8da-6487-4895-894c-03415c9f84ee", - "start": { - "$date": "2020-10-28T19:46:25.000Z" - }, - "end": { - "$date": "2020-10-28T20:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "508ad7a4-b21f-4d21-ac84-391ef294daca", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-28T20:39:00.000Z" - }, - "end": { - "$date": "2020-10-28T20:41:30.000Z" - }, - "events": [ - { - "uuid": "5f6e6bbc-8ef8-4577-aee4-d15db735992d", - "start": { - "$date": "2020-10-28T20:39:00.000Z" - }, - "end": { - "$date": "2020-10-28T20:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a0bed433-ea6b-4d79-9178-ccfd5b8729d7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-28T20:43:22.000Z" - }, - "end": { - "$date": "2020-10-28T20:54:51.000Z" - }, - "events": [ - { - "uuid": "95e847b7-3de5-4f29-a6a1-58ab5d444c08", - "start": { - "$date": "2020-10-28T20:43:22.000Z" - }, - "end": { - "$date": "2020-10-28T20:54:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cb80b555-6acc-4b00-a956-1bda1e141115", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-28T20:55:47.000Z" - }, - "end": { - "$date": "2020-10-28T23:09:28.000Z" - }, - "events": [ - { - "uuid": "08fff3d9-3346-4ac0-a6dc-c177d495ae13", - "start": { - "$date": "2020-10-28T20:55:47.000Z" - }, - "end": { - "$date": "2020-10-28T23:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b216e4d1-a97f-4dad-954f-8f1213afb413", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-28T21:20:47.000Z" - }, - "end": { - "$date": "2020-10-28T21:32:54.000Z" - }, - "events": [ - { - "uuid": "e7d78e79-0f92-4ca8-9862-306ca0ec326c", - "start": { - "$date": "2020-10-28T21:20:47.000Z" - }, - "end": { - "$date": "2020-10-28T21:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e8f95e1-e76e-404a-8172-8dde28fb9b83", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-28T21:36:22.000Z" - }, - "end": { - "$date": "2020-10-28T21:55:50.000Z" - }, - "events": [ - { - "uuid": "771fd7e4-2581-434e-a520-dec018853e44", - "start": { - "$date": "2020-10-28T21:36:22.000Z" - }, - "end": { - "$date": "2020-10-28T21:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "da8cd4d6-7727-4375-9427-6600c22fc8aa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-28T21:50:37.000Z" - }, - "end": { - "$date": "2020-10-28T23:20:37.000Z" - }, - "events": [ - { - "uuid": "378fdfe9-d4f3-4e04-bc31-2f98624d978f", - "start": { - "$date": "2020-10-28T21:50:37.000Z" - }, - "end": { - "$date": "2020-10-28T23:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2a220358-1f63-4b18-817f-15be4b76c197", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-28T23:20:51.000Z" - }, - "end": { - "$date": "2020-10-29T00:53:06.000Z" - }, - "events": [ - { - "uuid": "64b6eb54-d6cf-4bbd-ae76-22750ecfb30c", - "start": { - "$date": "2020-10-28T23:20:51.000Z" - }, - "end": { - "$date": "2020-10-29T00:53:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4a0768f4-3146-4b69-bbff-e966d6f8f9e5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-28T23:21:07.000Z" - }, - "end": { - "$date": "2020-10-29T00:53:01.000Z" - }, - "events": [ - { - "uuid": "b0de7577-6928-41cf-a9f7-d5084b003d22", - "start": { - "$date": "2020-10-28T23:21:07.000Z" - }, - "end": { - "$date": "2020-10-29T00:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc9cc31c-6908-44d8-9f57-35bfd66275a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-29T00:57:11.000Z" - }, - "end": { - "$date": "2020-10-29T01:21:12.000Z" - }, - "events": [ - { - "uuid": "76bf7f92-1a39-42f0-b1d4-8c0eec3781cb", - "start": { - "$date": "2020-10-29T00:57:11.000Z" - }, - "end": { - "$date": "2020-10-29T00:59:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55dfbc56-394e-43bf-838f-c046034a84b5", - "start": { - "$date": "2020-10-29T00:59:11.000Z" - }, - "end": { - "$date": "2020-10-29T01:21:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "434ba286-4235-487b-a51c-5f99bfff124e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-29T01:05:09.000Z" - }, - "end": { - "$date": "2020-10-29T01:06:14.000Z" - }, - "events": [ - { - "uuid": "9aea47fd-a68e-4874-8ec6-ce3dd61914a7", - "start": { - "$date": "2020-10-29T01:05:09.000Z" - }, - "end": { - "$date": "2020-10-29T01:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1c7c670f-c946-49d9-abe0-655e8df60f28", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-29T01:06:19.000Z" - }, - "end": { - "$date": "2020-10-29T02:21:18.000Z" - }, - "events": [ - { - "uuid": "6c91404e-d3c3-4760-8d9d-eaa7bc2e52a3", - "start": { - "$date": "2020-10-29T01:06:19.000Z" - }, - "end": { - "$date": "2020-10-29T02:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3013e9f0-0cd2-43aa-9087-f068b946fa2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-29T01:13:59.000Z" - }, - "end": { - "$date": "2020-10-29T01:42:37.000Z" - }, - "events": [ - { - "uuid": "af03b61b-223e-430b-9da1-7f0d6d099e78", - "start": { - "$date": "2020-10-29T01:13:59.000Z" - }, - "end": { - "$date": "2020-10-29T01:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6660c6df-c4ee-41a4-96e7-c54611db9783", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-29T02:19:12.000Z" - }, - "end": { - "$date": "2020-10-29T04:28:38.000Z" - }, - "events": [ - { - "uuid": "893a655a-e97b-4d54-bca2-98b29b9f08d4", - "start": { - "$date": "2020-10-29T02:19:12.000Z" - }, - "end": { - "$date": "2020-10-29T04:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "23bcea3c-d362-461b-8a1d-71db9f2b0ed8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-29T02:37:46.000Z" - }, - "end": { - "$date": "2020-10-29T04:51:52.000Z" - }, - "events": [ - { - "uuid": "e1e2210c-166d-4d89-8ce6-4039847a0bb3", - "start": { - "$date": "2020-10-29T02:37:46.000Z" - }, - "end": { - "$date": "2020-10-29T04:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "74b9819c-8f84-4924-a970-67fd9613a343", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-29T03:07:34.000Z" - }, - "end": { - "$date": "2020-10-29T05:38:36.000Z" - }, - "events": [ - { - "uuid": "009a14cf-defb-4f9a-a59e-907756a5873c", - "start": { - "$date": "2020-10-29T03:07:34.000Z" - }, - "end": { - "$date": "2020-10-29T04:51:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3e565226-2c6f-426c-a89c-a4eb57bd03ef", - "start": { - "$date": "2020-10-29T04:51:34.000Z" - }, - "end": { - "$date": "2020-10-29T04:56:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae7905db-c158-4234-bb59-62c917991de1", - "start": { - "$date": "2020-10-29T04:56:34.000Z" - }, - "end": { - "$date": "2020-10-29T05:06:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f3b69a4-80c1-4f8a-a660-c95b72239a5a", - "start": { - "$date": "2020-10-29T05:06:34.000Z" - }, - "end": { - "$date": "2020-10-29T05:38:36.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ce6fb1e-bc4e-4d07-8723-4adccf5fc32a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-29T03:59:51.000Z" - }, - "end": { - "$date": "2020-10-29T04:32:29.000Z" - }, - "events": [ - { - "uuid": "0f2b7c32-e3b8-4a7f-bd77-1e93887a45ad", - "start": { - "$date": "2020-10-29T03:59:51.000Z" - }, - "end": { - "$date": "2020-10-29T04:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4757fe1-0c1e-481c-abce-a8254f82e8a2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-29T04:00:15.000Z" - }, - "end": { - "$date": "2020-10-29T04:32:21.000Z" - }, - "events": [ - { - "uuid": "5ea7ee75-8ac4-4f48-bd79-b0203aac292e", - "start": { - "$date": "2020-10-29T04:00:15.000Z" - }, - "end": { - "$date": "2020-10-29T04:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5393fb32-6b5e-45a0-9fd4-25d043e536cc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-29T04:33:57.000Z" - }, - "end": { - "$date": "2020-10-29T05:10:42.000Z" - }, - "events": [ - { - "uuid": "f95b0d34-f45f-43b5-937c-53c1ef7c401a", - "start": { - "$date": "2020-10-29T04:33:57.000Z" - }, - "end": { - "$date": "2020-10-29T05:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7defd21-32cf-4393-8549-df3bef556e2c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-29T04:34:14.000Z" - }, - "end": { - "$date": "2020-10-29T05:04:32.000Z" - }, - "events": [ - { - "uuid": "f7fd6047-a95d-4dd4-98a5-74516ab9fdc7", - "start": { - "$date": "2020-10-29T04:34:14.000Z" - }, - "end": { - "$date": "2020-10-29T05:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99dbf8e3-8afe-48a7-a25e-67e583f18d93", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-29T04:34:16.000Z" - }, - "end": { - "$date": "2020-10-29T05:10:44.000Z" - }, - "events": [ - { - "uuid": "1cec9b09-258a-4dec-8c76-be5a62c1c378", - "start": { - "$date": "2020-10-29T04:34:16.000Z" - }, - "end": { - "$date": "2020-10-29T05:10:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2a0dd609-d52c-4290-be10-0d78bcbb8b65", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-29T04:36:19.000Z" - }, - "end": { - "$date": "2020-10-29T04:50:55.000Z" - }, - "events": [ - { - "uuid": "37d3c91d-a8c7-4688-a43e-38e2cdfd7936", - "start": { - "$date": "2020-10-29T04:36:19.000Z" - }, - "end": { - "$date": "2020-10-29T04:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "81794086-e3c3-452e-967b-544ec6e11727", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-29T05:11:22.000Z" - }, - "end": { - "$date": "2020-10-29T05:27:07.000Z" - }, - "events": [ - { - "uuid": "17bd164c-377b-4889-8f99-e96fefb3c6f7", - "start": { - "$date": "2020-10-29T05:11:22.000Z" - }, - "end": { - "$date": "2020-10-29T05:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "2a25df1f-2892-4dce-9f92-90018ef92515", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-29T14:07:35.000Z" - }, - "end": { - "$date": "2020-10-29T16:54:13.000Z" - }, - "events": [ - { - "uuid": "638fe0bf-40a2-4933-9b3d-a80b18409292", - "start": { - "$date": "2020-10-29T14:07:35.000Z" - }, - "end": { - "$date": "2020-10-29T16:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "f7510d42-e050-4bdf-b162-129aeef4b2c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-29T14:51:34.000Z" - }, - "end": { - "$date": "2020-10-29T15:25:26.000Z" - }, - "events": [ - { - "uuid": "0dcacc0e-ecbe-4259-afbf-36340483e801", - "start": { - "$date": "2020-10-29T14:51:34.000Z" - }, - "end": { - "$date": "2020-10-29T15:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b3cce810-dea6-4a10-b49b-38d312217d0f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-29T15:50:13.000Z" - }, - "end": { - "$date": "2020-10-29T16:45:23.000Z" - }, - "events": [ - { - "uuid": "9939ec12-2096-4975-a4f2-470d0896212e", - "start": { - "$date": "2020-10-29T15:50:13.000Z" - }, - "end": { - "$date": "2020-10-29T16:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "931c1164-c9bf-4dc5-844d-3e52b5bd5862", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-29T16:46:10.000Z" - }, - "end": { - "$date": "2020-10-29T16:48:19.000Z" - }, - "events": [ - { - "uuid": "27aa4057-6fa0-4d39-96ea-13d77b4a3a7d", - "start": { - "$date": "2020-10-29T16:46:10.000Z" - }, - "end": { - "$date": "2020-10-29T16:48:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3e4e50f2-d121-47cf-8737-81bdbcbe87f7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-29T16:51:39.000Z" - }, - "end": { - "$date": "2020-10-29T17:05:08.000Z" - }, - "events": [ - { - "uuid": "183515b5-85f2-43d6-95b4-0c57cccc7568", - "start": { - "$date": "2020-10-29T16:51:39.000Z" - }, - "end": { - "$date": "2020-10-29T17:05:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e5aa8b01-9337-4443-9c7e-1266c37e8995", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-29T17:05:22.000Z" - }, - "end": { - "$date": "2020-10-29T17:06:58.000Z" - }, - "events": [ - { - "uuid": "b6c77a97-5ac7-4602-a573-c34454625853", - "start": { - "$date": "2020-10-29T17:05:22.000Z" - }, - "end": { - "$date": "2020-10-29T17:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "345076f1-8a87-42bb-afc2-8132717d3c01", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-29T19:52:49.000Z" - }, - "end": { - "$date": "2020-10-29T20:40:20.000Z" - }, - "events": [ - { - "uuid": "131e3d2c-3acc-4d65-9e19-4a202cb0bf79", - "start": { - "$date": "2020-10-29T19:52:49.000Z" - }, - "end": { - "$date": "2020-10-29T20:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "77eec172-fa97-4618-9248-2b7ba9d1e4aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-29T21:25:34.000Z" - }, - "end": { - "$date": "2020-10-29T22:05:06.000Z" - }, - "events": [ - { - "uuid": "9ce857ed-4d63-44bc-9c01-801680eb489b", - "start": { - "$date": "2020-10-29T21:25:34.000Z" - }, - "end": { - "$date": "2020-10-29T22:05:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "ac6d17b5-82f3-436a-98b5-3782a5ca0373", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-29T21:43:16.000Z" - }, - "end": { - "$date": "2020-10-30T00:58:50.000Z" - }, - "events": [ - { - "uuid": "11b1d515-6662-4911-9a37-4a482670e3e0", - "start": { - "$date": "2020-10-29T21:43:16.000Z" - }, - "end": { - "$date": "2020-10-30T00:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "67bd3857-bdb2-4ae4-998f-3bbee8e7171a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-29T22:15:27.000Z" - }, - "end": { - "$date": "2020-10-29T22:21:42.000Z" - }, - "events": [ - { - "uuid": "b577035c-f3cb-4259-a751-0217cb312a62", - "start": { - "$date": "2020-10-29T22:15:27.000Z" - }, - "end": { - "$date": "2020-10-29T22:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b4e8d376-f154-4f75-984e-a08d8bf98739", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-29T22:24:13.000Z" - }, - "end": { - "$date": "2020-10-29T22:35:22.000Z" - }, - "events": [ - { - "uuid": "6a0ee73a-9da7-4a6e-bb6d-4090fc30198c", - "start": { - "$date": "2020-10-29T22:24:13.000Z" - }, - "end": { - "$date": "2020-10-29T22:35:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "275ada21-a726-41ee-817f-159e71d3938c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-29T22:25:19.000Z" - }, - "end": { - "$date": "2020-10-30T00:18:51.000Z" - }, - "events": [ - { - "uuid": "3582a35c-9674-4f7d-9ceb-126cf1c505e3", - "start": { - "$date": "2020-10-29T22:25:19.000Z" - }, - "end": { - "$date": "2020-10-30T00:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "637cd1c3-561b-4436-a6e9-db6fa4c47b60", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-29T22:37:21.000Z" - }, - "end": { - "$date": "2020-10-29T23:48:33.000Z" - }, - "events": [ - { - "uuid": "b0f933e1-abc9-4c96-a9e4-e5d9492188a7", - "start": { - "$date": "2020-10-29T22:37:21.000Z" - }, - "end": { - "$date": "2020-10-29T23:48:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d2526712-16e8-4127-8f9d-b9d6375816fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-29T23:06:41.000Z" - }, - "end": { - "$date": "2020-10-30T00:32:42.000Z" - }, - "events": [ - { - "uuid": "2a1c8d82-1b13-47da-b5ac-334e1210d3cb", - "start": { - "$date": "2020-10-29T23:06:41.000Z" - }, - "end": { - "$date": "2020-10-30T00:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cd313c31-0555-4941-8fa7-0d765bf68d7c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-29T23:09:46.000Z" - }, - "end": { - "$date": "2020-10-30T01:23:00.000Z" - }, - "events": [ - { - "uuid": "e0ae828a-d531-4e21-a968-81c1245bb104", - "start": { - "$date": "2020-10-29T23:09:46.000Z" - }, - "end": { - "$date": "2020-10-30T01:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "496a708f-a607-4d40-9291-3d26ba3e372a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-29T23:21:31.000Z" - }, - "end": { - "$date": "2020-10-30T01:14:47.000Z" - }, - "events": [ - { - "uuid": "e60e12d1-6eff-4b7b-be9a-b3c832839bc8", - "start": { - "$date": "2020-10-29T23:21:31.000Z" - }, - "end": { - "$date": "2020-10-30T01:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de96230a-3981-40f9-9b9c-0c6df0f6cfda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-30T00:48:28.000Z" - }, - "end": { - "$date": "2020-10-30T01:14:29.000Z" - }, - "events": [ - { - "uuid": "e14fc350-feed-4fc5-9b70-efe48bfa4d5a", - "start": { - "$date": "2020-10-30T00:48:28.000Z" - }, - "end": { - "$date": "2020-10-30T01:14:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3744220a-5de9-4ae5-82fd-7252bd8d01bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-30T01:29:44.000Z" - }, - "end": { - "$date": "2020-10-30T03:31:34.000Z" - }, - "events": [ - { - "uuid": "7cd3cacd-7002-44b7-8707-1094443b7fd5", - "start": { - "$date": "2020-10-30T01:29:44.000Z" - }, - "end": { - "$date": "2020-10-30T03:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "294c419d-f89a-46ac-8065-6279238845e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-30T01:56:13.000Z" - }, - "end": { - "$date": "2020-10-30T02:29:31.000Z" - }, - "events": [ - { - "uuid": "0b3bc090-b193-4255-af89-a68e73c15c72", - "start": { - "$date": "2020-10-30T01:56:13.000Z" - }, - "end": { - "$date": "2020-10-30T02:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd2e517b-51aa-404e-a3a4-8df16b8c88d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-30T02:51:43.000Z" - }, - "end": { - "$date": "2020-10-30T03:12:54.000Z" - }, - "events": [ - { - "uuid": "07f6820d-47da-413c-8b13-b34651188564", - "start": { - "$date": "2020-10-30T02:51:43.000Z" - }, - "end": { - "$date": "2020-10-30T03:12:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ec323b5-1c12-47a2-8234-529ce645ce99", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-10-30T03:30:04.000Z" - }, - "end": { - "$date": "2020-10-30T04:38:14.000Z" - }, - "events": [ - { - "uuid": "58ab3d93-b23f-4bca-a903-d2eb6b049ce1", - "start": { - "$date": "2020-10-30T03:30:04.000Z" - }, - "end": { - "$date": "2020-10-30T04:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9a3748f1-8431-43ef-a4fe-1e9cada04be7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-30T03:33:18.000Z" - }, - "end": { - "$date": "2020-10-30T04:51:58.000Z" - }, - "events": [ - { - "uuid": "7efb5c3c-f793-4f2f-860c-6e3821e4a9ca", - "start": { - "$date": "2020-10-30T03:33:18.000Z" - }, - "end": { - "$date": "2020-10-30T04:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47af3259-7be4-4d56-ba05-4b8e21191b1b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-30T04:06:40.000Z" - }, - "end": { - "$date": "2020-10-30T05:25:05.000Z" - }, - "events": [ - { - "uuid": "62c81613-8271-4462-96ac-a470d2960e16", - "start": { - "$date": "2020-10-30T04:06:40.000Z" - }, - "end": { - "$date": "2020-10-30T05:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b0ee1dbf-7b52-4b2b-9ce1-2bdd3229d88d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-30T04:02:41.000Z" - }, - "end": { - "$date": "2020-10-30T05:25:07.000Z" - }, - "events": [ - { - "uuid": "219072f3-17a2-471a-b1e5-89150629829f", - "start": { - "$date": "2020-10-30T04:02:41.000Z" - }, - "end": { - "$date": "2020-10-30T05:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95785734-60fa-4e9a-b53d-4e53e3607f55", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-30T04:37:59.000Z" - }, - "end": { - "$date": "2020-10-30T05:11:43.000Z" - }, - "events": [ - { - "uuid": "f8054ce0-242b-49ac-8aa2-3a89d9d1c308", - "start": { - "$date": "2020-10-30T04:37:59.000Z" - }, - "end": { - "$date": "2020-10-30T05:11:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "af3056ec-7548-40f1-98b3-fb25a62a329b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-30T23:50:16.000Z" - }, - "end": { - "$date": "2020-10-31T02:26:37.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-10-30T23:50:16.000Z" - }, - "end": { - "$date": "2020-10-31T02:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8183d324-d4d0-429f-9b2f-7b1b8ce0bcdf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T01:23:37.000Z" - }, - "end": { - "$date": "2020-10-31T02:02:15.000Z" - }, - "events": [ - { - "uuid": "95bce0b0-68f5-4e55-9397-7fe9a18ea872", - "start": { - "$date": "2020-10-31T01:23:37.000Z" - }, - "end": { - "$date": "2020-10-31T02:02:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a878df18-b8c8-4524-83ff-f450c1c1df32", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-31T01:57:58.000Z" - }, - "end": { - "$date": "2020-10-31T03:38:39.000Z" - }, - "events": [ - { - "uuid": "137b6e55-8a75-410d-9454-f09e67ca1b5e", - "start": { - "$date": "2020-10-31T01:57:58.000Z" - }, - "end": { - "$date": "2020-10-31T03:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "1c7e1d0a-c2ef-486e-a689-91a97cdf43b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-31T02:05:54.000Z" - }, - "end": { - "$date": "2020-10-31T03:13:56.000Z" - }, - "events": [ - { - "uuid": "f97d0cb1-d12e-4bed-af9c-b7f6fb458d0e", - "start": { - "$date": "2020-10-31T02:05:54.000Z" - }, - "end": { - "$date": "2020-10-31T03:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "9f495e46-bf8e-480b-bc46-b30c8771e2d9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T02:09:49.000Z" - }, - "end": { - "$date": "2020-10-31T02:19:59.000Z" - }, - "events": [ - { - "uuid": "0715ee9c-1fcc-4ebe-bbde-357ef4a79631", - "start": { - "$date": "2020-10-31T02:09:49.000Z" - }, - "end": { - "$date": "2020-10-31T02:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8a3eac10-b42a-44e3-a3f6-76fdb19ee72c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T02:10:25.000Z" - }, - "end": { - "$date": "2020-10-31T03:12:50.000Z" - }, - "events": [ - { - "uuid": "ab1cef72-bbf1-4743-a0a1-504a803506c1", - "start": { - "$date": "2020-10-31T02:10:25.000Z" - }, - "end": { - "$date": "2020-10-31T03:12:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "48f9619f-eb2b-4422-91f5-b53126957c4c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T02:23:46.000Z" - }, - "end": { - "$date": "2020-10-31T02:50:00.000Z" - }, - "events": [ - { - "uuid": "554d641b-10b6-4fbc-b438-6c56a79b8995", - "start": { - "$date": "2020-10-31T02:23:46.000Z" - }, - "end": { - "$date": "2020-10-31T02:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "84bce6b2-28ec-44a7-8959-bed4ee1a9a42", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-31T03:10:30.000Z" - }, - "end": { - "$date": "2020-10-31T03:58:41.000Z" - }, - "events": [ - { - "uuid": "594c5f4d-e589-498f-8e49-75267a9b658a", - "start": { - "$date": "2020-10-31T03:10:30.000Z" - }, - "end": { - "$date": "2020-10-31T03:58:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3850e62f-6a21-47bf-bd6d-e5474b25e3d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-31T03:35:14.000Z" - }, - "end": { - "$date": "2020-10-31T03:38:58.000Z" - }, - "events": [ - { - "uuid": "da9fc1fc-bd29-4aad-aeda-b6a083411deb", - "start": { - "$date": "2020-10-31T03:35:14.000Z" - }, - "end": { - "$date": "2020-10-31T03:38:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "44408936-462a-4ef3-ae32-d3f4181ffa36", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-31T03:38:44.000Z" - }, - "end": { - "$date": "2020-10-31T03:42:20.000Z" - }, - "events": [ - { - "uuid": "2d79c2cd-549e-4451-aca7-345d23c3c5e3", - "start": { - "$date": "2020-10-31T03:38:44.000Z" - }, - "end": { - "$date": "2020-10-31T03:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39f35b1c-c796-4eb8-a2d0-675976e31e29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-31T03:41:33.000Z" - }, - "end": { - "$date": "2020-10-31T04:10:01.000Z" - }, - "events": [ - { - "uuid": "79374eda-ca56-43ea-89e9-420b04377096", - "start": { - "$date": "2020-10-31T03:41:33.000Z" - }, - "end": { - "$date": "2020-10-31T04:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "7ca56c0b-67d1-4df7-92da-c89244056658", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-10-31T03:45:34.000Z" - }, - "end": { - "$date": "2020-10-31T06:27:50.000Z" - }, - "events": [ - { - "uuid": "6ad4b314-6b88-474e-bd23-52b923aa2378", - "start": { - "$date": "2020-10-31T03:45:34.000Z" - }, - "end": { - "$date": "2020-10-31T06:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "147a478b-9070-4404-8c5e-8c7fb870c542", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-31T03:54:59.000Z" - }, - "end": { - "$date": "2020-10-31T07:12:45.000Z" - }, - "events": [ - { - "uuid": "c6e468c8-79ac-4555-93df-d174a58063ec", - "start": { - "$date": "2020-10-31T03:54:59.000Z" - }, - "end": { - "$date": "2020-10-31T07:12:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "7b0b0891-d794-4757-8420-20e672dda2d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-31T04:00:37.000Z" - }, - "end": { - "$date": "2020-10-31T06:27:02.000Z" - }, - "events": [ - { - "uuid": "9c7602c5-8ec6-4397-9ebb-c1e47c4d8a1c", - "start": { - "$date": "2020-10-31T04:00:37.000Z" - }, - "end": { - "$date": "2020-10-31T06:27:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "97eb75fa-4a4f-4baa-bd65-903cc72f3a6d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-31T04:24:40.000Z" - }, - "end": { - "$date": "2020-10-31T07:12:52.000Z" - }, - "events": [ - { - "uuid": "584279d9-5c1d-439f-914e-8875cb63ab6f", - "start": { - "$date": "2020-10-31T04:24:40.000Z" - }, - "end": { - "$date": "2020-10-31T07:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0a8d2383-0aaa-41d9-ae50-b09e2080030b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-10-31T05:23:29.000Z" - }, - "end": { - "$date": "2020-10-31T06:39:08.000Z" - }, - "events": [ - { - "uuid": "b64fb227-2fc1-49b5-a9ee-bd20f89302b1", - "start": { - "$date": "2020-10-31T05:23:29.000Z" - }, - "end": { - "$date": "2020-10-31T06:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "7b7b0544-2cd8-457a-aa49-bc45fc7fc3c5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-31T05:31:16.000Z" - }, - "end": { - "$date": "2020-10-31T05:55:37.000Z" - }, - "events": [ - { - "uuid": "84c28838-9646-4454-ba2a-dba033e61168", - "start": { - "$date": "2020-10-31T05:31:16.000Z" - }, - "end": { - "$date": "2020-10-31T05:55:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "9e8ca612-dbf3-4cf3-86a8-9ce222368191", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T06:01:14.000Z" - }, - "end": { - "$date": "2020-10-31T07:12:51.000Z" - }, - "events": [ - { - "uuid": "d706a711-218e-4988-8cda-9810194a9e12", - "start": { - "$date": "2020-10-31T06:01:14.000Z" - }, - "end": { - "$date": "2020-10-31T07:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "55c0db35-465f-4c5f-805d-22c5958a8c9e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-31T06:52:11.000Z" - }, - "end": { - "$date": "2020-10-31T07:51:36.000Z" - }, - "events": [ - { - "uuid": "632016a7-a52f-4c9f-9d64-02dff7c40f94", - "start": { - "$date": "2020-10-31T06:52:11.000Z" - }, - "end": { - "$date": "2020-10-31T07:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f952272f-6bb6-4827-9094-29838364cec8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T07:16:47.000Z" - }, - "end": { - "$date": "2020-10-31T07:20:57.000Z" - }, - "events": [ - { - "uuid": "eb46600e-679d-4c85-a54d-5155d150d277", - "start": { - "$date": "2020-10-31T07:16:47.000Z" - }, - "end": { - "$date": "2020-10-31T07:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d2eaca1f-1363-4abc-9a00-89949e5f70a8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T07:21:23.000Z" - }, - "end": { - "$date": "2020-10-31T07:27:13.000Z" - }, - "events": [ - { - "uuid": "c36a6c8c-fe3d-4e1d-902a-5647ee0f2a5e", - "start": { - "$date": "2020-10-31T07:21:23.000Z" - }, - "end": { - "$date": "2020-10-31T07:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d0da446d-2e97-4a27-9649-f120ef1b8e51", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T07:28:03.000Z" - }, - "end": { - "$date": "2020-10-31T07:35:53.000Z" - }, - "events": [ - { - "uuid": "cabffe73-3368-45d1-b270-71c2de94277a", - "start": { - "$date": "2020-10-31T07:28:03.000Z" - }, - "end": { - "$date": "2020-10-31T07:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81045b48-774e-43d6-92ec-724b65823a74", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-31T07:39:55.000Z" - }, - "end": { - "$date": "2020-10-31T08:16:27.000Z" - }, - "events": [ - { - "uuid": "de416a92-7e28-4cd0-b817-8cc22aefb26c", - "start": { - "$date": "2020-10-31T07:39:55.000Z" - }, - "end": { - "$date": "2020-10-31T08:16:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf9a37ab-2cb4-493b-b628-13a5afa18fe5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-31T08:22:56.000Z" - }, - "end": { - "$date": "2020-10-31T08:45:49.000Z" - }, - "events": [ - { - "uuid": "e859b019-e23f-4232-ac15-d156204108a2", - "start": { - "$date": "2020-10-31T08:22:56.000Z" - }, - "end": { - "$date": "2020-10-31T08:45:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca44e3b0-e814-41f1-88ab-ce2fb498fe22", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-10-31T09:08:28.000Z" - }, - "end": { - "$date": "2020-10-31T09:33:03.000Z" - }, - "events": [ - { - "uuid": "2a5f61f6-d9a4-4fd9-933c-a0fe49c5f346", - "start": { - "$date": "2020-10-31T09:08:28.000Z" - }, - "end": { - "$date": "2020-10-31T09:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b5477e96-fe3f-4653-be64-21623bf65aa0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T14:51:03.000Z" - }, - "end": { - "$date": "2020-10-31T14:55:23.000Z" - }, - "events": [ - { - "uuid": "e89b2b14-7a92-4c48-9894-090df07e1df8", - "start": { - "$date": "2020-10-31T14:51:03.000Z" - }, - "end": { - "$date": "2020-10-31T14:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "5efa7e0d-ab49-41c6-bc2b-4c3e3438df6b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T14:55:43.000Z" - }, - "end": { - "$date": "2020-10-31T15:09:05.000Z" - }, - "events": [ - { - "uuid": "1760ad24-7b4a-4af9-abf6-aff6b9fb53dc", - "start": { - "$date": "2020-10-31T14:55:43.000Z" - }, - "end": { - "$date": "2020-10-31T15:09:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "f5d7f8c5-4338-41da-82b2-6698978b1e08", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T15:09:40.000Z" - }, - "end": { - "$date": "2020-10-31T15:24:02.000Z" - }, - "events": [ - { - "uuid": "b99ab1c1-c83a-482d-b0e2-c4c8467cb530", - "start": { - "$date": "2020-10-31T15:09:40.000Z" - }, - "end": { - "$date": "2020-10-31T15:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d12b326e-e039-4834-8f00-e34d89db4104", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T15:24:07.000Z" - }, - "end": { - "$date": "2020-10-31T15:48:15.000Z" - }, - "events": [ - { - "uuid": "c62a51f9-74e1-4775-a0df-c6543a1002cd", - "start": { - "$date": "2020-10-31T15:24:07.000Z" - }, - "end": { - "$date": "2020-10-31T15:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0a7e4c72-6b3d-4db6-b504-074160c08e68", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-31T15:30:53.000Z" - }, - "end": { - "$date": "2020-10-31T16:21:52.000Z" - }, - "events": [ - { - "uuid": "ec2877e1-cfa3-4b91-a090-111050e39bbd", - "start": { - "$date": "2020-10-31T15:30:53.000Z" - }, - "end": { - "$date": "2020-10-31T16:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f41703b4-1fa7-45b2-8f9e-ebf2cc2281f1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T15:32:31.000Z" - }, - "end": { - "$date": "2020-10-31T16:35:25.000Z" - }, - "events": [ - { - "uuid": "11089ef0-deb6-4628-b461-fb29d44b7f09", - "start": { - "$date": "2020-10-31T15:32:31.000Z" - }, - "end": { - "$date": "2020-10-31T16:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "040e15a3-d5bb-4c8f-be3f-7aafd220bad3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T15:48:25.000Z" - }, - "end": { - "$date": "2020-10-31T16:05:55.000Z" - }, - "events": [ - { - "uuid": "bfbafd64-f8e9-472d-b8b8-404da430886a", - "start": { - "$date": "2020-10-31T15:48:25.000Z" - }, - "end": { - "$date": "2020-10-31T16:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "38ea0474-91d9-4a0c-b9b0-e2fc62244ae7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T16:06:16.000Z" - }, - "end": { - "$date": "2020-10-31T16:51:01.000Z" - }, - "events": [ - { - "uuid": "5262938e-b5f0-4328-bd2d-cfd0faff812e", - "start": { - "$date": "2020-10-31T16:06:16.000Z" - }, - "end": { - "$date": "2020-10-31T16:51:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "63319e1d-a992-4331-80bd-14846411df9a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-10-31T17:01:09.000Z" - }, - "end": { - "$date": "2020-10-31T18:59:16.000Z" - }, - "events": [ - { - "uuid": "a84b0bd6-1012-4b26-9671-5609ea9cd993", - "start": { - "$date": "2020-10-31T17:01:09.000Z" - }, - "end": { - "$date": "2020-10-31T18:59:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "e946748f-4106-4e67-b8dd-d88d890de8be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-31T17:01:24.000Z" - }, - "end": { - "$date": "2020-10-31T17:22:01.000Z" - }, - "events": [ - { - "uuid": "2966f7a0-c502-4e63-a00c-23a600a462c9", - "start": { - "$date": "2020-10-31T17:01:24.000Z" - }, - "end": { - "$date": "2020-10-31T17:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "01226de3-9ee1-402b-925d-604f320fd418", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T17:04:14.000Z" - }, - "end": { - "$date": "2020-10-31T18:59:37.000Z" - }, - "events": [ - { - "uuid": "c6e0118c-5e26-4b4b-991c-3c475f76efe0", - "start": { - "$date": "2020-10-31T17:04:14.000Z" - }, - "end": { - "$date": "2020-10-31T18:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d188e1c4-e39f-45d9-a244-ed5a102a16c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-31T17:22:30.000Z" - }, - "end": { - "$date": "2020-10-31T18:58:12.000Z" - }, - "events": [ - { - "uuid": "b90c3be8-375a-41c3-928f-326f807faaa1", - "start": { - "$date": "2020-10-31T17:22:30.000Z" - }, - "end": { - "$date": "2020-10-31T18:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e9f589a3-3506-494f-814f-f125ad4c36fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T17:27:17.000Z" - }, - "end": { - "$date": "2020-10-31T18:58:37.000Z" - }, - "events": [ - { - "uuid": "6b372c26-7cac-4830-9591-58dd9e2c166b", - "start": { - "$date": "2020-10-31T17:27:17.000Z" - }, - "end": { - "$date": "2020-10-31T17:39:17.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "7ade93f0-4b3e-4dfa-b26a-7678c6e7e9c4", - "start": { - "$date": "2020-10-31T17:39:17.000Z" - }, - "end": { - "$date": "2020-10-31T18:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "cd6501c7-0b0d-431e-a77a-1f07713b7cf7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T17:54:44.000Z" - }, - "end": { - "$date": "2020-10-31T18:58:43.000Z" - }, - "events": [ - { - "uuid": "d02d76a5-9413-4878-ad6b-ced821e3ae14", - "start": { - "$date": "2020-10-31T17:54:44.000Z" - }, - "end": { - "$date": "2020-10-31T18:31:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0ae8698-3bc8-4f08-a47a-937f991d0a9b", - "start": { - "$date": "2020-10-31T18:31:44.000Z" - }, - "end": { - "$date": "2020-10-31T18:35:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "06788631-4c21-46db-8be7-6a766249ec54", - "start": { - "$date": "2020-10-31T18:35:44.000Z" - }, - "end": { - "$date": "2020-10-31T18:58:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "51b53b6a-d440-4b05-97ad-9873ad4fda34", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T19:01:49.000Z" - }, - "end": { - "$date": "2020-10-31T19:49:25.000Z" - }, - "events": [ - { - "uuid": "1dcef2ef-012c-4cb4-ad42-b66e14069286", - "start": { - "$date": "2020-10-31T19:01:49.000Z" - }, - "end": { - "$date": "2020-10-31T19:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "532d2f66-bedb-459a-9440-7e01430a4a8e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-10-31T20:02:26.000Z" - }, - "end": { - "$date": "2020-10-31T23:36:27.000Z" - }, - "events": [ - { - "uuid": "887c4f2e-c118-42da-8681-d0e317cfda62", - "start": { - "$date": "2020-10-31T20:02:26.000Z" - }, - "end": { - "$date": "2020-10-31T23:16:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b50eae39-40e4-45a0-b9ea-00e88d1e990f", - "start": { - "$date": "2020-10-31T23:16:26.000Z" - }, - "end": { - "$date": "2020-10-31T23:19:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7eaf438f-fef4-4fe3-afcf-7c54589b12dd", - "start": { - "$date": "2020-10-31T23:19:26.000Z" - }, - "end": { - "$date": "2020-10-31T23:36:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "4d0ced93-e5a3-4f01-aaaf-cb1903daa897", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T20:04:17.000Z" - }, - "end": { - "$date": "2020-10-31T20:41:15.000Z" - }, - "events": [ - { - "uuid": "b31dfb92-34c0-4be6-a90e-eebbcd732308", - "start": { - "$date": "2020-10-31T20:04:17.000Z" - }, - "end": { - "$date": "2020-10-31T20:18:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ccb652d-2565-4b12-bd62-4a26194f0d12", - "start": { - "$date": "2020-10-31T20:18:17.000Z" - }, - "end": { - "$date": "2020-10-31T20:23:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2684bafa-7514-41a5-90d3-69debace9a61", - "start": { - "$date": "2020-10-31T20:23:17.000Z" - }, - "end": { - "$date": "2020-10-31T20:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b48bbd79-3fa3-463e-9f61-ff249176540d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T20:25:46.000Z" - }, - "end": { - "$date": "2020-10-31T20:57:29.000Z" - }, - "events": [ - { - "uuid": "eff52472-0114-491a-86ec-9f0e913bd1d9", - "start": { - "$date": "2020-10-31T20:25:46.000Z" - }, - "end": { - "$date": "2020-10-31T20:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abac6727-74ff-4ec2-8fd9-983b07688302", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-31T21:43:23.000Z" - }, - "end": { - "$date": "2020-10-31T21:54:03.000Z" - }, - "events": [ - { - "uuid": "deb6c591-8a15-42a1-b50e-6e8352cad240", - "start": { - "$date": "2020-10-31T21:43:23.000Z" - }, - "end": { - "$date": "2020-10-31T21:54:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a774d0e-d442-45e8-b607-8b9ace1813e3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T20:25:35.000Z" - }, - "end": { - "$date": "2020-10-31T20:57:35.000Z" - }, - "events": [ - { - "uuid": "cdd6b04a-eb21-471f-a587-0ac5278def05", - "start": { - "$date": "2020-10-31T20:25:35.000Z" - }, - "end": { - "$date": "2020-10-31T20:57:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c2e7bbc8-a5f8-4745-af76-476347be4eed", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-31T20:23:22.000Z" - }, - "end": { - "$date": "2020-10-31T22:52:19.000Z" - }, - "events": [ - { - "uuid": "01a61db0-951f-4f5c-846f-b144f0f4fbe4", - "start": { - "$date": "2020-10-31T20:23:22.000Z" - }, - "end": { - "$date": "2020-10-31T22:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "db015f34-4e1a-4300-ae0e-dc652e595e3b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-10-31T20:47:55.000Z" - }, - "end": { - "$date": "2020-10-31T21:11:46.000Z" - }, - "events": [ - { - "uuid": "ab198592-2876-4526-bb52-8db5d950c0c4", - "start": { - "$date": "2020-10-31T20:47:55.000Z" - }, - "end": { - "$date": "2020-10-31T21:11:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d317d0ce-84e5-46ce-ba30-b174ef62d1a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T21:07:33.000Z" - }, - "end": { - "$date": "2020-10-31T21:43:32.000Z" - }, - "events": [ - { - "uuid": "c2a83d67-4faf-4658-a97e-07658e7b736e", - "start": { - "$date": "2020-10-31T21:07:33.000Z" - }, - "end": { - "$date": "2020-10-31T21:43:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c104c4ab-5320-4095-9d96-325e92b45bf0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T20:58:34.000Z" - }, - "end": { - "$date": "2020-10-31T21:01:11.000Z" - }, - "events": [ - { - "uuid": "69e23194-73a8-4557-869c-681a6a32c224", - "start": { - "$date": "2020-10-31T20:58:34.000Z" - }, - "end": { - "$date": "2020-10-31T21:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e2d55b5-3a55-4b94-abe7-34a587e65045", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T21:07:17.000Z" - }, - "end": { - "$date": "2020-10-31T21:43:43.000Z" - }, - "events": [ - { - "uuid": "8ddb3c28-5f0f-46ac-b9c2-5f3a64d53b0b", - "start": { - "$date": "2020-10-31T21:07:17.000Z" - }, - "end": { - "$date": "2020-10-31T21:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "fad2c079-2c3e-480f-a404-773d1eebfe71", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-10-31T21:31:15.000Z" - }, - "end": { - "$date": "2020-10-31T21:55:38.000Z" - }, - "events": [ - { - "uuid": "9e0fe285-be0e-4af1-bdb8-e1fbac06afd9", - "start": { - "$date": "2020-10-31T21:31:15.000Z" - }, - "end": { - "$date": "2020-10-31T21:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0477dd6d-d2a7-444d-a29b-6ea96b9a45c4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T21:56:25.000Z" - }, - "end": { - "$date": "2020-10-31T22:10:52.000Z" - }, - "events": [ - { - "uuid": "4bd7bbb7-837c-4a8b-bb25-81fa0d1fbcca", - "start": { - "$date": "2020-10-31T21:56:25.000Z" - }, - "end": { - "$date": "2020-10-31T22:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ddcb06c-a2e3-4f93-8e6e-690a977ce1ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T21:44:32.000Z" - }, - "end": { - "$date": "2020-10-31T21:47:39.000Z" - }, - "events": [ - { - "uuid": "60a1b4d1-1218-46dc-af13-a5681c42a34e", - "start": { - "$date": "2020-10-31T21:44:32.000Z" - }, - "end": { - "$date": "2020-10-31T21:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0180a3bd-ab8c-4297-ac26-7e95a20757c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-10-31T21:49:40.000Z" - }, - "end": { - "$date": "2020-10-31T21:51:43.000Z" - }, - "events": [ - { - "uuid": "68d57fa9-b1a3-4efa-b432-c68dfa2845db", - "start": { - "$date": "2020-10-31T21:49:40.000Z" - }, - "end": { - "$date": "2020-10-31T21:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0eb0b83d-6989-467b-bdc3-755192cd8308", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-10-31T21:56:44.000Z" - }, - "end": { - "$date": "2020-10-31T22:52:21.000Z" - }, - "events": [ - { - "uuid": "6dfc67bd-eaef-43dd-acfe-65319e99c454", - "start": { - "$date": "2020-10-31T21:56:44.000Z" - }, - "end": { - "$date": "2020-10-31T22:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f39446be-b55a-4b87-bf12-8e95b7b0cf83", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T22:13:31.000Z" - }, - "end": { - "$date": "2020-10-31T22:27:55.000Z" - }, - "events": [ - { - "uuid": "af63de6e-07b8-4c34-8bdb-f5546fcca59b", - "start": { - "$date": "2020-10-31T22:13:31.000Z" - }, - "end": { - "$date": "2020-10-31T22:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4962bc06-c04f-4cf2-8c10-bd5529c07fac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-10-31T22:27:18.000Z" - }, - "end": { - "$date": "2020-10-31T22:52:00.000Z" - }, - "events": [ - { - "uuid": "1d4d91ff-84fe-487a-810f-6f95a11d1c47", - "start": { - "$date": "2020-10-31T22:27:18.000Z" - }, - "end": { - "$date": "2020-10-31T22:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a243d102-3ca0-4afb-90e6-7fa97e94c650", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-10-31T22:31:02.000Z" - }, - "end": { - "$date": "2020-10-31T22:50:29.000Z" - }, - "events": [ - { - "uuid": "96beb6fa-62bf-49a0-9dc6-f90dbabdcff1", - "start": { - "$date": "2020-10-31T22:31:02.000Z" - }, - "end": { - "$date": "2020-10-31T22:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0986bb41-c9c0-46bb-9203-6066dd71c50f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-10-31T23:59:28.000Z" - }, - "end": { - "$date": "2020-11-01T01:19:48.000Z" - }, - "events": [ - { - "uuid": "6804cc3d-511a-4963-ba34-d7eac659a315", - "start": { - "$date": "2020-10-31T23:59:28.000Z" - }, - "end": { - "$date": "2020-11-01T01:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "368870de-7776-47bf-b4ba-576a88725282", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-01T00:00:02.000Z" - }, - "end": { - "$date": "2020-11-01T01:02:09.000Z" - }, - "events": [ - { - "uuid": "d02a8154-422d-413d-8167-f77b6a3757b8", - "start": { - "$date": "2020-11-01T00:00:02.000Z" - }, - "end": { - "$date": "2020-11-01T01:02:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3712f1a2-6e40-4c2e-b9ff-fd9cf70361f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-01T00:41:49.000Z" - }, - "end": { - "$date": "2020-11-01T00:54:02.000Z" - }, - "events": [ - { - "uuid": "c1341251-961f-41f5-bf43-524eb6ed49f8", - "start": { - "$date": "2020-11-01T00:41:49.000Z" - }, - "end": { - "$date": "2020-11-01T00:54:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9482813b-9e0b-4c6a-a07d-ceb5bcaa95a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-01T01:41:26.000Z" - }, - "end": { - "$date": "2020-11-01T02:18:29.000Z" - }, - "events": [ - { - "uuid": "170a14e2-9ccc-4519-aca1-3c79d173ea5e", - "start": { - "$date": "2020-11-01T01:41:26.000Z" - }, - "end": { - "$date": "2020-11-01T02:18:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7dc92aad-1216-4180-b24c-d331d0ea3299", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-01T01:48:22.000Z" - }, - "end": { - "$date": "2020-11-01T06:57:56.000Z" - }, - "events": [ - { - "uuid": "c3e1787a-7c6e-4e03-a451-6d9ec2a67938", - "start": { - "$date": "2020-11-01T01:48:22.000Z" - }, - "end": { - "$date": "2020-11-01T02:55:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e06de040-893b-47c8-a41f-afbbee717efa", - "start": { - "$date": "2020-11-01T02:55:22.000Z" - }, - "end": { - "$date": "2020-11-01T03:00:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f32c2de7-d67e-4d6e-88be-7fbd05fa7b40", - "start": { - "$date": "2020-11-01T03:00:22.000Z" - }, - "end": { - "$date": "2020-11-01T06:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a5299df6-67c8-4aa7-b0b8-861e62e8af35", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-01T02:09:59.000Z" - }, - "end": { - "$date": "2020-11-01T05:56:20.000Z" - }, - "events": [ - { - "uuid": "62cfeee4-7846-4871-991d-194141b84571", - "start": { - "$date": "2020-11-01T02:09:59.000Z" - }, - "end": { - "$date": "2020-11-01T05:56:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "fcf097d6-81c8-4a7b-9620-666870c0bf5c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-01T03:05:20.000Z" - }, - "end": { - "$date": "2020-11-01T03:56:44.000Z" - }, - "events": [ - { - "uuid": "28713d5b-2fab-4221-8c6b-d3ea71b43e5d", - "start": { - "$date": "2020-11-01T03:05:20.000Z" - }, - "end": { - "$date": "2020-11-01T03:56:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c4d2da9e-cd97-4583-aea4-99a640b32381", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T03:32:54.000Z" - }, - "end": { - "$date": "2020-11-01T03:40:54.000Z" - }, - "events": [ - { - "uuid": "52abd3b2-88e9-462e-807e-96bd25ea05c8", - "start": { - "$date": "2020-11-01T03:32:54.000Z" - }, - "end": { - "$date": "2020-11-01T03:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9fd686f9-fcfe-4a57-96ea-a6fb475c4665", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T03:41:20.000Z" - }, - "end": { - "$date": "2020-11-01T06:14:03.000Z" - }, - "events": [ - { - "uuid": "891bdeb0-69e3-4878-adeb-8ca6cf77a3dc", - "start": { - "$date": "2020-11-01T03:41:20.000Z" - }, - "end": { - "$date": "2020-11-01T05:54:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4f3f7694-7b1e-4c2f-ba76-7f7abb415119", - "start": { - "$date": "2020-11-01T05:54:20.000Z" - }, - "end": { - "$date": "2020-11-01T05:59:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d3e9bc13-a6e9-47a6-af08-b72ba9c63b9a", - "start": { - "$date": "2020-11-01T05:59:20.000Z" - }, - "end": { - "$date": "2020-11-01T06:12:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46e77333-24fb-46b1-b64c-102c318745b4", - "start": { - "$date": "2020-11-01T06:12:20.000Z" - }, - "end": { - "$date": "2020-11-01T06:17:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c109e06-8b8a-400f-bf74-059fa0e14886", - "start": { - "$date": "2020-11-01T06:17:20.000Z" - }, - "end": { - "$date": "2020-11-01T07:05:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8e6abaa-294c-4645-8ffd-1ddc986087d4", - "start": { - "$date": "2020-11-01T07:05:20.000Z" - }, - "end": { - "$date": "2020-11-01T07:08:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2fed086-700d-4b74-8459-2095b497348e", - "start": { - "$date": "2020-11-01T07:08:20.000Z" - }, - "end": { - "$date": "2020-11-01T06:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "b8b811d4-894e-40d2-8afe-c0019a26bca5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-01T03:57:30.000Z" - }, - "end": { - "$date": "2020-11-01T06:52:15.000Z" - }, - "events": [ - { - "uuid": "ea99e44c-0fa8-401c-b556-81bb28af0aad", - "start": { - "$date": "2020-11-01T03:57:30.000Z" - }, - "end": { - "$date": "2020-11-01T06:52:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "8d18539b-6cd7-43b0-9c2f-3ef829dfa725", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-01T04:03:50.000Z" - }, - "end": { - "$date": "2020-11-01T06:53:40.000Z" - }, - "events": [ - { - "uuid": "0e2ec7ff-45db-4d2a-86a0-22e0847c20ed", - "start": { - "$date": "2020-11-01T04:03:50.000Z" - }, - "end": { - "$date": "2020-11-01T06:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "fd21bd30-bf44-4494-9ba4-352b6e16432a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-01T04:06:34.000Z" - }, - "end": { - "$date": "2020-11-01T06:52:06.000Z" - }, - "events": [ - { - "uuid": "4a6c4b84-3ca8-4483-8532-c25b1dcb7ac7", - "start": { - "$date": "2020-11-01T04:06:34.000Z" - }, - "end": { - "$date": "2020-11-01T06:52:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d34e4581-5066-4fbc-a8f7-4fb6822d5c64", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-01T04:10:25.000Z" - }, - "end": { - "$date": "2020-11-01T05:15:58.000Z" - }, - "events": [ - { - "uuid": "d8000c39-6e78-4320-9b2e-24ba51d0c707", - "start": { - "$date": "2020-11-01T04:10:25.000Z" - }, - "end": { - "$date": "2020-11-01T05:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "10c56b78-b914-4553-a231-239f9db8c4d2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T04:23:07.000Z" - }, - "end": { - "$date": "2020-11-01T05:33:06.000Z" - }, - "events": [ - { - "uuid": "5aee85ef-dbb6-4b7d-b043-2f5a2c6ab1d3", - "start": { - "$date": "2020-11-01T04:23:07.000Z" - }, - "end": { - "$date": "2020-11-01T05:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "ef30bf56-b58a-430b-8fba-bd94adc1a4ea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T05:39:36.000Z" - }, - "end": { - "$date": "2020-11-01T06:27:15.000Z" - }, - "events": [ - { - "uuid": "37b1771f-b0ca-4756-8b12-59df625675f0", - "start": { - "$date": "2020-11-01T05:39:36.000Z" - }, - "end": { - "$date": "2020-11-01T06:27:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", - "uuid": "328dd5a2-0c90-4dcd-a3aa-0d303cea9726", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T06:20:25.000Z" - }, - "end": { - "$date": "2020-11-01T06:27:50.000Z" - }, - "events": [ - { - "uuid": "34ac106a-86a7-4b73-8b43-64da91ce6293", - "start": { - "$date": "2020-11-01T06:20:25.000Z" - }, - "end": { - "$date": "2020-11-01T06:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3520290-f233-4e3f-9ba8-aa0edc2f4a98", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-01T08:25:48.000Z" - }, - "end": { - "$date": "2020-11-01T08:51:39.000Z" - }, - "events": [ - { - "uuid": "f06cf4a5-47e9-49a5-8577-fdcf26c2ad17", - "start": { - "$date": "2020-11-01T08:25:48.000Z" - }, - "end": { - "$date": "2020-11-01T08:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a585423f-b233-4ffd-80b3-8246b64df21c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-01T09:12:48.000Z" - }, - "end": { - "$date": "2020-11-01T09:45:55.000Z" - }, - "events": [ - { - "uuid": "5161469e-a21e-4e1c-8802-358eca4ef0d5", - "start": { - "$date": "2020-11-01T09:12:48.000Z" - }, - "end": { - "$date": "2020-11-01T09:45:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b8d75112-2f9e-405f-8629-85230f3700f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-01T14:43:48.000Z" - }, - "end": { - "$date": "2020-11-01T17:20:45.000Z" - }, - "events": [ - { - "uuid": "5d8d0a6f-3d4c-42ce-b6ef-5e52775ebed8", - "start": { - "$date": "2020-11-01T14:43:48.000Z" - }, - "end": { - "$date": "2020-11-01T17:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "2b852e27-af23-44da-86e7-5847ea86e9e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-01T17:00:05.000Z" - }, - "end": { - "$date": "2020-11-01T17:38:35.000Z" - }, - "events": [ - { - "uuid": "5e9442e3-1f98-47c3-9dce-3f9b051d93bb", - "start": { - "$date": "2020-11-01T17:00:05.000Z" - }, - "end": { - "$date": "2020-11-01T17:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "68c047c1-a90d-4e2c-98c8-9aa54175ce00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-01T17:20:16.000Z" - }, - "end": { - "$date": "2020-11-01T18:28:30.000Z" - }, - "events": [ - { - "uuid": "4f8fccce-e11a-4688-b650-6f1bd0b321cf", - "start": { - "$date": "2020-11-01T17:20:16.000Z" - }, - "end": { - "$date": "2020-11-01T18:28:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "de62bd77-02be-4cc3-a3ce-4f5ba653724d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T17:21:52.000Z" - }, - "end": { - "$date": "2020-11-01T18:28:44.000Z" - }, - "events": [ - { - "uuid": "4aa9a2e6-aec2-4b10-8244-021c6027eff3", - "start": { - "$date": "2020-11-01T17:21:52.000Z" - }, - "end": { - "$date": "2020-11-01T18:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9fe35827-6959-4c5e-8987-07dae98f6175", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-01T17:33:30.000Z" - }, - "end": { - "$date": "2020-11-01T20:10:14.000Z" - }, - "events": [ - { - "uuid": "742eec55-0ac2-422a-b2be-d7949703fee9", - "start": { - "$date": "2020-11-01T17:33:30.000Z" - }, - "end": { - "$date": "2020-11-01T20:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "f42f767d-a407-4600-b4f4-3255769bec25", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-01T17:57:22.000Z" - }, - "end": { - "$date": "2020-11-01T18:07:29.000Z" - }, - "events": [ - { - "uuid": "da459acc-60a4-4b78-98b3-1a0caf2b831a", - "start": { - "$date": "2020-11-01T17:57:22.000Z" - }, - "end": { - "$date": "2020-11-01T18:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ce92b573-cb36-4c78-ad10-2bf0a9b3f828", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T18:04:20.000Z" - }, - "end": { - "$date": "2020-11-01T18:28:47.000Z" - }, - "events": [ - { - "uuid": "d13b4056-4ece-48db-bf23-b5ab031f4c52", - "start": { - "$date": "2020-11-01T18:04:20.000Z" - }, - "end": { - "$date": "2020-11-01T18:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "83dea1d6-4f30-4e6f-a2c0-7fc9bbb96350", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-01T18:07:53.000Z" - }, - "end": { - "$date": "2020-11-01T18:53:48.000Z" - }, - "events": [ - { - "uuid": "5c4f50f7-457c-47b3-ae58-707489d1f4e2", - "start": { - "$date": "2020-11-01T18:07:53.000Z" - }, - "end": { - "$date": "2020-11-01T18:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5014b037-e72f-4f23-b52d-95676523f41f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T18:34:48.000Z" - }, - "end": { - "$date": "2020-11-01T19:15:01.000Z" - }, - "events": [ - { - "uuid": "82a30576-09dd-4440-a791-59e6d8c4cbb4", - "start": { - "$date": "2020-11-01T18:34:48.000Z" - }, - "end": { - "$date": "2020-11-01T19:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba016cbb-d104-4572-8bb6-73dfd8e66a7d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T18:34:47.000Z" - }, - "end": { - "$date": "2020-11-01T19:16:06.000Z" - }, - "events": [ - { - "uuid": "e33efa13-74d2-41ec-a3e4-4543bec45eb4", - "start": { - "$date": "2020-11-01T18:34:47.000Z" - }, - "end": { - "$date": "2020-11-01T19:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6a97343-6c97-49bf-95b5-7a47f3552d2f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T19:15:14.000Z" - }, - "end": { - "$date": "2020-11-01T19:18:47.000Z" - }, - "events": [ - { - "uuid": "0ad3e213-6faa-4fb7-89ca-159296632efa", - "start": { - "$date": "2020-11-01T19:15:14.000Z" - }, - "end": { - "$date": "2020-11-01T19:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "813bedf9-210f-4781-a073-a8967c660d46", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T19:19:02.000Z" - }, - "end": { - "$date": "2020-11-01T21:37:10.000Z" - }, - "events": [ - { - "uuid": "d5620bd0-d102-4764-ab3f-97cb75e862d9", - "start": { - "$date": "2020-11-01T19:19:02.000Z" - }, - "end": { - "$date": "2020-11-01T21:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c43d79be-9790-4dda-a345-bfa191c3ca60", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-01T20:19:35.000Z" - }, - "end": { - "$date": "2020-11-01T20:23:11.000Z" - }, - "events": [ - { - "uuid": "fb71eaa6-59c8-4abf-aef3-4558b80acf70", - "start": { - "$date": "2020-11-01T20:19:35.000Z" - }, - "end": { - "$date": "2020-11-01T20:23:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bef3b129-80d5-4b64-9135-31de716ee7bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-01T20:53:47.000Z" - }, - "end": { - "$date": "2020-11-01T23:17:05.000Z" - }, - "events": [ - { - "uuid": "67425dac-6854-4f12-955b-7d8e46276e9b", - "start": { - "$date": "2020-11-01T20:53:47.000Z" - }, - "end": { - "$date": "2020-11-01T22:23:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7bcf9cb-0c69-48c1-92d5-fbb25129cd1e", - "start": { - "$date": "2020-11-01T22:23:47.000Z" - }, - "end": { - "$date": "2020-11-01T23:01:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7e609d0-213e-4c53-b265-f5229bd9ec43", - "start": { - "$date": "2020-11-01T23:01:47.000Z" - }, - "end": { - "$date": "2020-11-01T23:17:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "16a5c13f-abd0-471c-a242-20e47ebed639", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-01T21:18:02.000Z" - }, - "end": { - "$date": "2020-11-01T22:55:06.000Z" - }, - "events": [ - { - "uuid": "622b48bb-8046-4347-a46c-b5ffc1ffd768", - "start": { - "$date": "2020-11-01T21:18:02.000Z" - }, - "end": { - "$date": "2020-11-01T22:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "86e830ad-9fd3-4e4a-a63f-05cad77aaa36", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-01T21:18:59.000Z" - }, - "end": { - "$date": "2020-11-01T22:54:47.000Z" - }, - "events": [ - { - "uuid": "5a84c5a2-9291-4d73-a901-354432591f42", - "start": { - "$date": "2020-11-01T21:18:59.000Z" - }, - "end": { - "$date": "2020-11-01T22:54:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a21f78d9-1033-4e55-9412-9dd84b81aff0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T21:38:15.000Z" - }, - "end": { - "$date": "2020-11-01T21:39:25.000Z" - }, - "events": [ - { - "uuid": "e2b5e6e2-d99b-4258-af8b-77b71f49888c", - "start": { - "$date": "2020-11-01T21:38:15.000Z" - }, - "end": { - "$date": "2020-11-01T21:39:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f31330d4-439c-43e3-9285-650f5ff308f5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T21:39:38.000Z" - }, - "end": { - "$date": "2020-11-01T22:48:28.000Z" - }, - "events": [ - { - "uuid": "d4b49407-28fa-4ad7-8e58-9df819bcf34b", - "start": { - "$date": "2020-11-01T21:39:38.000Z" - }, - "end": { - "$date": "2020-11-01T22:37:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97311248-cc4a-43cd-8028-06cecd81298f", - "start": { - "$date": "2020-11-01T22:37:38.000Z" - }, - "end": { - "$date": "2020-11-01T22:38:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "128fcd09-4708-4382-b263-5006fcb7f5f4", - "start": { - "$date": "2020-11-01T22:38:38.000Z" - }, - "end": { - "$date": "2020-11-01T22:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cc9ece33-dc5a-450c-bf2b-829c4b85029d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-01T21:39:45.000Z" - }, - "end": { - "$date": "2020-11-01T22:21:14.000Z" - }, - "events": [ - { - "uuid": "138ef527-445b-4842-9094-29942bfd3733", - "start": { - "$date": "2020-11-01T21:39:45.000Z" - }, - "end": { - "$date": "2020-11-01T22:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f38e897a-9cef-49de-ac75-d4dffed60c37", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-01T21:43:03.000Z" - }, - "end": { - "$date": "2020-11-01T22:26:25.000Z" - }, - "events": [ - { - "uuid": "ef16fcf6-ccd0-408a-b5ba-c8dcd9a2ec13", - "start": { - "$date": "2020-11-01T21:43:03.000Z" - }, - "end": { - "$date": "2020-11-01T22:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c4b18f9f-0d99-42a1-83c6-713e3b69d55e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-01T22:48:35.000Z" - }, - "end": { - "$date": "2020-11-01T22:56:24.000Z" - }, - "events": [ - { - "uuid": "2d4160cb-28e3-4c04-a100-06d9dc96149c", - "start": { - "$date": "2020-11-01T22:48:35.000Z" - }, - "end": { - "$date": "2020-11-01T22:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76910d05-0972-43d5-9a0f-442c2e47ef90", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-01T23:56:54.000Z" - }, - "end": { - "$date": "2020-11-02T00:20:14.000Z" - }, - "events": [ - { - "uuid": "44b30101-ecdd-4c55-beeb-244ceb08270e", - "start": { - "$date": "2020-11-01T23:56:54.000Z" - }, - "end": { - "$date": "2020-11-02T00:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ca24031f-21e6-46ad-8d6d-de7e7448d599", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-01T23:55:13.000Z" - }, - "end": { - "$date": "2020-11-02T05:41:02.000Z" - }, - "events": [ - { - "uuid": "7f0c6801-5e6e-4669-b8fc-da5009caa1d3", - "start": { - "$date": "2020-11-01T23:55:13.000Z" - }, - "end": { - "$date": "2020-11-02T01:22:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "be847731-e6b2-4281-8f2c-193b404c3a5f", - "start": { - "$date": "2020-11-02T01:22:13.000Z" - }, - "end": { - "$date": "2020-11-02T01:26:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2a74c61-9f5f-439e-bdba-863fb2ba0d62", - "start": { - "$date": "2020-11-02T01:26:13.000Z" - }, - "end": { - "$date": "2020-11-02T01:55:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8ddefbde-2b3f-4ef5-9064-6db50f78ede9", - "start": { - "$date": "2020-11-02T01:55:13.000Z" - }, - "end": { - "$date": "2020-11-02T02:03:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cbe54cb5-7043-4208-9b87-952a1c1933af", - "start": { - "$date": "2020-11-02T02:03:13.000Z" - }, - "end": { - "$date": "2020-11-02T03:45:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14603313-200d-4136-abff-2baf8c275b8b", - "start": { - "$date": "2020-11-02T03:45:13.000Z" - }, - "end": { - "$date": "2020-11-02T03:50:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04ddf891-2241-49fb-900f-89dd5c9b238d", - "start": { - "$date": "2020-11-02T03:50:13.000Z" - }, - "end": { - "$date": "2020-11-02T04:00:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "788ce415-a120-4138-8874-683f9d533e3d", - "start": { - "$date": "2020-11-02T04:00:13.000Z" - }, - "end": { - "$date": "2020-11-02T04:13:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c98c2014-27fe-40a3-a2a2-83bc2a3333a0", - "start": { - "$date": "2020-11-02T04:13:13.000Z" - }, - "end": { - "$date": "2020-11-02T05:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "188229a5-9104-43c7-969a-99c8c92b4094", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-02T01:07:14.000Z" - }, - "end": { - "$date": "2020-11-02T02:05:35.000Z" - }, - "events": [ - { - "uuid": "b56795d2-2cad-43af-97b6-8dbb46edf46c", - "start": { - "$date": "2020-11-02T01:07:14.000Z" - }, - "end": { - "$date": "2020-11-02T02:05:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c2f88c5a-0864-4f82-957a-c8a8935e9c1c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-02T02:08:49.000Z" - }, - "end": { - "$date": "2020-11-02T04:34:11.000Z" - }, - "events": [ - { - "uuid": "23211b1f-2646-4871-a02f-a51c4f02dd9d", - "start": { - "$date": "2020-11-02T02:08:49.000Z" - }, - "end": { - "$date": "2020-11-02T04:34:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "daacb50b-d81d-43fc-b090-a1bc78640f0b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-02T02:10:06.000Z" - }, - "end": { - "$date": "2020-11-02T02:40:38.000Z" - }, - "events": [ - { - "uuid": "30b5710f-019b-4618-8f11-afa1245c2ffc", - "start": { - "$date": "2020-11-02T02:10:06.000Z" - }, - "end": { - "$date": "2020-11-02T02:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4f5b489-6e8e-42ea-ba3f-8c85ea0cca52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-02T02:16:35.000Z" - }, - "end": { - "$date": "2020-11-02T02:33:13.000Z" - }, - "events": [ - { - "uuid": "19121ea7-af96-4349-a155-42983401cc0d", - "start": { - "$date": "2020-11-02T02:16:35.000Z" - }, - "end": { - "$date": "2020-11-02T02:33:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "50115c0f-72ce-4606-b601-0e57925022b2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-02T02:38:26.000Z" - }, - "end": { - "$date": "2020-11-02T06:31:22.000Z" - }, - "events": [ - { - "uuid": "9aa2f8cf-7689-4373-8e7a-270b7e612051", - "start": { - "$date": "2020-11-02T02:38:26.000Z" - }, - "end": { - "$date": "2020-11-02T06:31:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "552f487a-f162-4c6b-9559-dc767c92c9d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-02T03:57:26.000Z" - }, - "end": { - "$date": "2020-11-02T03:57:27.000Z" - }, - "events": [ - { - "uuid": "301d362c-27bb-47bf-8b5c-453c34d8fff0", - "start": { - "$date": "2020-11-02T03:57:26.000Z" - }, - "end": { - "$date": "2020-11-02T03:57:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "96c3f259-ea02-4cca-b979-ef9a7c8053dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-02T03:48:07.000Z" - }, - "end": { - "$date": "2020-11-02T03:58:43.000Z" - }, - "events": [ - { - "uuid": "1b0a87c9-bc3f-415b-a938-cb5edb77a113", - "start": { - "$date": "2020-11-02T03:48:07.000Z" - }, - "end": { - "$date": "2020-11-02T03:58:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08fc52ea-139d-4701-8fef-520ec1e213b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-02T04:03:16.000Z" - }, - "end": { - "$date": "2020-11-02T04:24:51.000Z" - }, - "events": [ - { - "uuid": "6e5ca6da-700c-4ff6-8307-24b5c40fe5a0", - "start": { - "$date": "2020-11-02T04:03:16.000Z" - }, - "end": { - "$date": "2020-11-02T04:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "920ff2b7-a18f-4fc4-b36b-a959db8d3838", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-02T04:05:29.000Z" - }, - "end": { - "$date": "2020-11-02T04:24:51.000Z" - }, - "events": [ - { - "uuid": "b35ad9f2-6067-44a8-9082-3b2a77669944", - "start": { - "$date": "2020-11-02T04:05:29.000Z" - }, - "end": { - "$date": "2020-11-02T04:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea6686ce-31aa-4927-9e43-c5125d8fc50b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-02T04:25:12.000Z" - }, - "end": { - "$date": "2020-11-02T04:27:10.000Z" - }, - "events": [ - { - "uuid": "8a5beaad-7ce1-4344-9d1f-a556fbea93b7", - "start": { - "$date": "2020-11-02T04:25:12.000Z" - }, - "end": { - "$date": "2020-11-02T04:27:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e307c6bb-050f-4f18-baa7-c51720ecbb88", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-02T04:25:55.000Z" - }, - "end": { - "$date": "2020-11-02T04:27:01.000Z" - }, - "events": [ - { - "uuid": "e4150a18-0aae-4a3d-b399-f116b593d6dc", - "start": { - "$date": "2020-11-02T04:25:55.000Z" - }, - "end": { - "$date": "2020-11-02T04:27:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3f6ebac2-f5b6-4fca-a329-789dd78aa374", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-02T04:27:05.000Z" - }, - "end": { - "$date": "2020-11-02T05:22:42.000Z" - }, - "events": [ - { - "uuid": "640cd054-703f-434f-9148-e5cef91b53e6", - "start": { - "$date": "2020-11-02T04:27:05.000Z" - }, - "end": { - "$date": "2020-11-02T05:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1787fb59-5425-409e-89ef-199ac4c3d1bb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-02T04:28:13.000Z" - }, - "end": { - "$date": "2020-11-02T05:40:02.000Z" - }, - "events": [ - { - "uuid": "237a60b5-47a1-4855-b4ce-4a8cf13493fc", - "start": { - "$date": "2020-11-02T04:28:13.000Z" - }, - "end": { - "$date": "2020-11-02T05:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9f3da904-b08f-4604-9985-5a7a0330a8fe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-02T04:34:19.000Z" - }, - "end": { - "$date": "2020-11-02T05:22:36.000Z" - }, - "events": [ - { - "uuid": "94ec61cd-b6d2-468b-a19a-ef3bbd22b6c2", - "start": { - "$date": "2020-11-02T04:34:19.000Z" - }, - "end": { - "$date": "2020-11-02T05:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18eb6273-7bdc-4647-9c3f-332917c6b1b6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-02T04:58:14.000Z" - }, - "end": { - "$date": "2020-11-02T05:30:01.000Z" - }, - "events": [ - { - "uuid": "979baddf-6254-4902-a7bc-3232812cb349", - "start": { - "$date": "2020-11-02T04:58:14.000Z" - }, - "end": { - "$date": "2020-11-02T05:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6a77260-9641-4dfa-af78-6116570e5d5f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-02T05:34:55.000Z" - }, - "end": { - "$date": "2020-11-02T06:14:39.000Z" - }, - "events": [ - { - "uuid": "954dbbfc-ab3c-4f0b-870a-eea51bcbe7d6", - "start": { - "$date": "2020-11-02T05:34:55.000Z" - }, - "end": { - "$date": "2020-11-02T06:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "38e272ff-5b43-4a1e-bbe5-e960bf355a50", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-02T06:14:47.000Z" - }, - "end": { - "$date": "2020-11-02T06:21:58.000Z" - }, - "events": [ - { - "uuid": "c2b47167-3a59-4e87-bcb5-bacd513df94b", - "start": { - "$date": "2020-11-02T06:14:47.000Z" - }, - "end": { - "$date": "2020-11-02T06:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8aaf0037-274f-472b-b441-66e15afd6540", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-02T06:23:03.000Z" - }, - "end": { - "$date": "2020-11-02T06:35:40.000Z" - }, - "events": [ - { - "uuid": "5a109e7e-0724-466b-a86c-336d4e45a689", - "start": { - "$date": "2020-11-02T06:23:03.000Z" - }, - "end": { - "$date": "2020-11-02T06:35:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01798749-71d6-42f5-ba06-2446e902bb5b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-02T06:35:38.000Z" - }, - "end": { - "$date": "2020-11-02T07:03:14.000Z" - }, - "events": [ - { - "uuid": "f9dd6ea3-7066-4c26-b6bf-1feb829b195a", - "start": { - "$date": "2020-11-02T06:35:38.000Z" - }, - "end": { - "$date": "2020-11-02T07:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8adcb7b-e8ec-4216-8e3d-21cc0f20d9c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-02T18:02:42.000Z" - }, - "end": { - "$date": "2020-11-02T18:26:54.000Z" - }, - "events": [ - { - "uuid": "c8f6b134-9199-457a-978f-df8c8fef90ed", - "start": { - "$date": "2020-11-02T18:02:42.000Z" - }, - "end": { - "$date": "2020-11-02T18:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "205f0232-5dfa-4395-81f5-4c697b20ae82", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-02T18:27:11.000Z" - }, - "end": { - "$date": "2020-11-02T18:44:31.000Z" - }, - "events": [ - { - "uuid": "6fa2e3c0-cac9-4bdb-a8cd-bfc3d5f24ff7", - "start": { - "$date": "2020-11-02T18:27:11.000Z" - }, - "end": { - "$date": "2020-11-02T18:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a92ebff6-dfe9-41e6-8388-85531f267745", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-02T19:14:05.000Z" - }, - "end": { - "$date": "2020-11-02T19:15:55.000Z" - }, - "events": [ - { - "uuid": "3ad9e3d9-4212-4d33-96e9-2e91ee0d7513", - "start": { - "$date": "2020-11-02T19:14:05.000Z" - }, - "end": { - "$date": "2020-11-02T19:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "16e53747-9861-45fc-9b41-f63006c549ec", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-02T21:48:17.000Z" - }, - "end": { - "$date": "2020-11-02T21:51:08.000Z" - }, - "events": [ - { - "uuid": "b1a27f50-100e-4fa7-bedf-e13fc539859c", - "start": { - "$date": "2020-11-02T21:48:17.000Z" - }, - "end": { - "$date": "2020-11-02T21:51:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f37dd74-5c48-4b47-8d96-a02ea7f1aaae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-02T22:01:27.000Z" - }, - "end": { - "$date": "2020-11-02T22:40:29.000Z" - }, - "events": [ - { - "uuid": "548fee86-7cc4-43e3-90cf-b5d83886da6e", - "start": { - "$date": "2020-11-02T22:01:27.000Z" - }, - "end": { - "$date": "2020-11-02T22:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "64eb9b3f-b4fa-4de3-9dd8-3fc7705b83a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-02T22:18:15.000Z" - }, - "end": { - "$date": "2020-11-03T00:23:51.000Z" - }, - "events": [ - { - "uuid": "1693ca62-c1ca-413e-af8f-cb2571976a0a", - "start": { - "$date": "2020-11-02T22:18:15.000Z" - }, - "end": { - "$date": "2020-11-03T00:23:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f9693ae7-f611-4af5-ae4c-2ad71abcc871", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-02T22:36:38.000Z" - }, - "end": { - "$date": "2020-11-02T23:06:23.000Z" - }, - "events": [ - { - "uuid": "21f5f1f8-418a-484b-b0c8-f3ffae1cc9e4", - "start": { - "$date": "2020-11-02T22:36:38.000Z" - }, - "end": { - "$date": "2020-11-02T23:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "288e20c8-dbec-4877-b0fd-6dc7f03c2849", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-02T23:23:25.000Z" - }, - "end": { - "$date": "2020-11-03T00:20:17.000Z" - }, - "events": [ - { - "uuid": "55e84502-3bcc-49d0-9226-bcdf29687347", - "start": { - "$date": "2020-11-02T23:23:25.000Z" - }, - "end": { - "$date": "2020-11-03T00:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6dddf21-2052-4b75-888a-6c2e6c5c8605", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-03T01:29:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:37.000Z" - }, - "events": [ - { - "uuid": "70041571-d49b-49c4-8192-ca7480a47164", - "start": { - "$date": "2020-11-03T01:29:41.000Z" - }, - "end": { - "$date": "2020-11-03T03:42:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "836d2e41-7937-4dde-b2b5-817fbb7ebff8", - "start": { - "$date": "2020-11-03T03:42:41.000Z" - }, - "end": { - "$date": "2020-11-03T03:47:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "168819e9-b70d-4161-a455-f62b6624e08e", - "start": { - "$date": "2020-11-03T03:47:41.000Z" - }, - "end": { - "$date": "2020-11-03T03:51:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d93ffe9-237f-4e95-b3bf-b3e06cfc49a5", - "start": { - "$date": "2020-11-03T03:51:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:01:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6dccffa9-bcb2-4fff-b256-42bd6b5eae16", - "start": { - "$date": "2020-11-03T04:01:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9134e9d-4ec1-475a-978a-bf383a01c16b", - "start": { - "$date": "2020-11-03T04:03:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:21:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09ed7d43-0eef-4f11-9da7-025fc65a850d", - "start": { - "$date": "2020-11-03T04:21:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:23:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bdd4e69c-b86d-4b91-b1f6-eba232c965ef", - "start": { - "$date": "2020-11-03T04:23:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:27:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "833c047f-d71c-4ff0-a768-d4a274eb3cfc", - "start": { - "$date": "2020-11-03T04:27:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:32:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0d9a152-6afc-47e9-a6e4-d1cd6e604fbc", - "start": { - "$date": "2020-11-03T04:32:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:34:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "62c6aaa6-0f15-42a4-8339-fd43b538ac05", - "start": { - "$date": "2020-11-03T04:34:41.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7bf72405-c774-4956-a1f3-0ef0e36cab29", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T00:27:51.000Z" - }, - "end": { - "$date": "2020-11-03T01:32:35.000Z" - }, - "events": [ - { - "uuid": "5bc52fe5-045e-4314-9893-4f58a9114e51", - "start": { - "$date": "2020-11-03T00:27:51.000Z" - }, - "end": { - "$date": "2020-11-03T00:47:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0f82ee3-30df-4a5b-b3a6-42698d58d996", - "start": { - "$date": "2020-11-03T00:47:51.000Z" - }, - "end": { - "$date": "2020-11-03T00:52:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b760118-283f-42a1-8a95-0aa1e2bbca20", - "start": { - "$date": "2020-11-03T00:52:51.000Z" - }, - "end": { - "$date": "2020-11-03T01:32:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "1a840a61-9fb3-4b1f-ba04-4b995f446cc5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-02T22:57:29.000Z" - }, - "end": { - "$date": "2020-11-03T07:12:40.000Z" - }, - "events": [ - { - "uuid": "ea2c035c-23e8-45ea-98d8-09d9ba448ccb", - "start": { - "$date": "2020-11-02T22:57:29.000Z" - }, - "end": { - "$date": "2020-11-02T23:34:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0be6332a-cf77-4629-9e5a-795b8e784f4f", - "start": { - "$date": "2020-11-02T23:34:29.000Z" - }, - "end": { - "$date": "2020-11-02T23:40:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aec5d1fc-7882-4f3f-9bb7-dee2db3200d8", - "start": { - "$date": "2020-11-02T23:40:29.000Z" - }, - "end": { - "$date": "2020-11-02T23:53:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd0c1b25-aff9-4616-8c7f-eb042aca8056", - "start": { - "$date": "2020-11-02T23:53:29.000Z" - }, - "end": { - "$date": "2020-11-02T23:59:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "463b4e15-5864-4d0a-b191-308b8eb790c5", - "start": { - "$date": "2020-11-02T23:59:29.000Z" - }, - "end": { - "$date": "2020-11-03T00:06:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "922d5faf-63d5-4329-9148-519339a4ce83", - "start": { - "$date": "2020-11-03T00:06:29.000Z" - }, - "end": { - "$date": "2020-11-03T00:41:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "33466ff1-e122-4804-ae03-e742a60e5684", - "start": { - "$date": "2020-11-03T00:41:29.000Z" - }, - "end": { - "$date": "2020-11-03T01:34:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa6d6653-5101-4c4b-9e51-965fbf69aef7", - "start": { - "$date": "2020-11-03T01:34:29.000Z" - }, - "end": { - "$date": "2020-11-03T01:59:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f43d3297-9ee3-464a-b7ab-e409c80b0d5c", - "start": { - "$date": "2020-11-03T01:59:29.000Z" - }, - "end": { - "$date": "2020-11-03T03:47:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "752576b5-8587-4439-ab48-9486c24271b1", - "start": { - "$date": "2020-11-03T03:47:29.000Z" - }, - "end": { - "$date": "2020-11-03T03:48:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0ddd42b7-dc19-47c8-82e9-91700cd608d5", - "start": { - "$date": "2020-11-03T03:48:29.000Z" - }, - "end": { - "$date": "2020-11-03T04:15:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f1fabda-d0a0-4990-b439-85088781cfcf", - "start": { - "$date": "2020-11-03T04:15:29.000Z" - }, - "end": { - "$date": "2020-11-03T04:20:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b62d7fa1-e39e-485c-9cb6-e7845308a68d", - "start": { - "$date": "2020-11-03T04:20:29.000Z" - }, - "end": { - "$date": "2020-11-03T07:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "74d3525f-004f-40be-8b90-8c49e33082a6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-03T02:06:43.000Z" - }, - "end": { - "$date": "2020-11-03T05:17:03.000Z" - }, - "events": [ - { - "uuid": "c39ecc93-be07-4ba0-bb78-8ea585b1f949", - "start": { - "$date": "2020-11-03T02:06:43.000Z" - }, - "end": { - "$date": "2020-11-03T05:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9cfdf17a-a226-4276-bcbf-68b6a0950164", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T02:41:02.000Z" - }, - "end": { - "$date": "2020-11-03T04:19:50.000Z" - }, - "events": [ - { - "uuid": "c6ac86ba-496c-496f-8023-1f7d51c2ed2b", - "start": { - "$date": "2020-11-03T02:41:02.000Z" - }, - "end": { - "$date": "2020-11-03T04:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e9e519a6-77cd-45d9-9bf8-46f1f8af85f1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T02:46:46.000Z" - }, - "end": { - "$date": "2020-11-03T02:48:37.000Z" - }, - "events": [ - { - "uuid": "f72cd304-c52b-4d87-9774-2a7037254145", - "start": { - "$date": "2020-11-03T02:46:46.000Z" - }, - "end": { - "$date": "2020-11-03T02:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "55e144c3-9572-4fe4-ba4d-eab9e35d3b08", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-03T02:50:27.000Z" - }, - "end": { - "$date": "2020-11-03T02:58:08.000Z" - }, - "events": [ - { - "uuid": "be56eeb5-da41-407f-a290-19d03b0a7acb", - "start": { - "$date": "2020-11-03T02:50:27.000Z" - }, - "end": { - "$date": "2020-11-03T02:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1698b4e2-5b3d-427f-a600-aee22131f114", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T02:52:12.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:23.000Z" - }, - "events": [ - { - "uuid": "03718694-f224-494e-9abe-1619796e09f2", - "start": { - "$date": "2020-11-03T02:52:12.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "aa1bc5bf-0f55-4819-97a9-b147b4a6f944", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-03T02:58:04.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:28.000Z" - }, - "events": [ - { - "uuid": "edff84bd-900c-4c8d-a809-6d653ec31ee3", - "start": { - "$date": "2020-11-03T02:58:04.000Z" - }, - "end": { - "$date": "2020-11-03T04:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "91623aec-bd93-43da-8779-261d7e0a6b94", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-03T03:00:53.000Z" - }, - "end": { - "$date": "2020-11-03T05:59:09.000Z" - }, - "events": [ - { - "uuid": "f30dcfac-6951-414e-91d2-c810ed68dba1", - "start": { - "$date": "2020-11-03T03:00:53.000Z" - }, - "end": { - "$date": "2020-11-03T05:59:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "191fcd45-a0cc-4bf1-ac2c-004d4b0eb070", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-03T03:05:48.000Z" - }, - "end": { - "$date": "2020-11-03T05:59:10.000Z" - }, - "events": [ - { - "uuid": "4dc5c837-325f-4da8-b09f-916802660fa6", - "start": { - "$date": "2020-11-03T03:05:48.000Z" - }, - "end": { - "$date": "2020-11-03T05:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "643419f1-f373-426b-b0ed-6ed0675e48d9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-03T03:59:19.000Z" - }, - "end": { - "$date": "2020-11-03T06:09:10.000Z" - }, - "events": [ - { - "uuid": "253f14cc-163f-4329-bccd-62bbc4dbfeec", - "start": { - "$date": "2020-11-03T03:59:19.000Z" - }, - "end": { - "$date": "2020-11-03T06:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "8211f9fd-a65a-4ff3-94b1-072ec193d3df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T04:25:21.000Z" - }, - "end": { - "$date": "2020-11-03T04:30:16.000Z" - }, - "events": [ - { - "uuid": "af06b776-849f-46a2-bc4a-bfcaf6b2d7be", - "start": { - "$date": "2020-11-03T04:25:21.000Z" - }, - "end": { - "$date": "2020-11-03T04:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0d252cb2-00b2-41ed-9b38-84fae0b90b70", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-03T04:28:28.000Z" - }, - "end": { - "$date": "2020-11-03T06:54:00.000Z" - }, - "events": [ - { - "uuid": "e292291a-1b29-4b7c-b8c3-a423b8a2096b", - "start": { - "$date": "2020-11-03T04:28:28.000Z" - }, - "end": { - "$date": "2020-11-03T06:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "a96413f3-bc33-4aea-9a86-a740c950bd8b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T04:30:41.000Z" - }, - "end": { - "$date": "2020-11-03T05:16:30.000Z" - }, - "events": [ - { - "uuid": "3087e213-c7bb-4af6-ab7e-521ede20004e", - "start": { - "$date": "2020-11-03T04:30:41.000Z" - }, - "end": { - "$date": "2020-11-03T05:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e4b2c9f-29e1-47be-8ed5-e8dd76747b88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T04:48:48.000Z" - }, - "end": { - "$date": "2020-11-03T05:11:19.000Z" - }, - "events": [ - { - "uuid": "5f4571f7-3253-49c9-bf66-43813ccb8cbe", - "start": { - "$date": "2020-11-03T04:48:48.000Z" - }, - "end": { - "$date": "2020-11-03T05:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79704673-ca45-4de7-9ffe-b920e0bc4807", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-03T04:48:43.000Z" - }, - "end": { - "$date": "2020-11-03T05:11:18.000Z" - }, - "events": [ - { - "uuid": "3047b41d-cdbd-4642-a5b9-3c23ad9ca486", - "start": { - "$date": "2020-11-03T04:48:43.000Z" - }, - "end": { - "$date": "2020-11-03T05:11:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eb536f65-74bd-4f54-b3aa-f97b2df87dea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-03T04:49:09.000Z" - }, - "end": { - "$date": "2020-11-03T04:51:20.000Z" - }, - "events": [ - { - "uuid": "34a5d91a-85ae-4d47-8c75-43afb4644744", - "start": { - "$date": "2020-11-03T04:49:09.000Z" - }, - "end": { - "$date": "2020-11-03T04:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f0715b11-9e9e-40ed-96e9-dec27eef7002", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-03T04:54:39.000Z" - }, - "end": { - "$date": "2020-11-03T04:55:56.000Z" - }, - "events": [ - { - "uuid": "d4fda238-8d0e-449c-85f5-96812b6c3cda", - "start": { - "$date": "2020-11-03T04:54:39.000Z" - }, - "end": { - "$date": "2020-11-03T04:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6368ce01-f509-442d-881b-80f6acbbcca2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-03T04:56:10.000Z" - }, - "end": { - "$date": "2020-11-03T04:57:16.000Z" - }, - "events": [ - { - "uuid": "96e64aeb-0109-4e8e-9a40-b953c7f0ab09", - "start": { - "$date": "2020-11-03T04:56:10.000Z" - }, - "end": { - "$date": "2020-11-03T04:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "73f53389-ec1e-4e7d-a583-8c3a2ae7b8b8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-03T04:57:26.000Z" - }, - "end": { - "$date": "2020-11-03T05:15:50.000Z" - }, - "events": [ - { - "uuid": "3ebc6872-e7a9-47fe-a56b-d74e67625ca4", - "start": { - "$date": "2020-11-03T04:57:26.000Z" - }, - "end": { - "$date": "2020-11-03T05:15:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bf45c90-153d-4bd9-863c-00a1eb91a38a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T05:11:36.000Z" - }, - "end": { - "$date": "2020-11-03T05:13:06.000Z" - }, - "events": [ - { - "uuid": "50237523-4205-4df7-9cfd-50b48c1a87fe", - "start": { - "$date": "2020-11-03T05:11:36.000Z" - }, - "end": { - "$date": "2020-11-03T05:13:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a437d7c0-e453-44f6-bb88-ac64547158d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T05:22:17.000Z" - }, - "end": { - "$date": "2020-11-03T06:11:34.000Z" - }, - "events": [ - { - "uuid": "18790362-6d4b-44e1-ab5f-d5faee3c44a0", - "start": { - "$date": "2020-11-03T05:22:17.000Z" - }, - "end": { - "$date": "2020-11-03T06:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fe1e9f1-3333-4192-a586-7d033faf13a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-03T06:11:38.000Z" - }, - "end": { - "$date": "2020-11-03T06:11:44.000Z" - }, - "events": [ - { - "uuid": "c1f15122-dcd8-4f41-9386-0a0355f0e8af", - "start": { - "$date": "2020-11-03T06:11:38.000Z" - }, - "end": { - "$date": "2020-11-03T06:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f96b68c-8579-489f-98f0-31c59546a4e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T06:11:59.000Z" - }, - "end": { - "$date": "2020-11-03T06:13:35.000Z" - }, - "events": [ - { - "uuid": "08a32114-e8e5-43ca-a8d6-b2e760ee9913", - "start": { - "$date": "2020-11-03T06:11:59.000Z" - }, - "end": { - "$date": "2020-11-03T06:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb60aa91-cfd0-4711-a060-d9e5f4e222ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T19:15:43.000Z" - }, - "end": { - "$date": "2020-11-03T19:37:41.000Z" - }, - "events": [ - { - "uuid": "ed71ac8b-e9d4-46c7-a8b0-dc602d42c342", - "start": { - "$date": "2020-11-03T19:15:43.000Z" - }, - "end": { - "$date": "2020-11-03T19:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78b889f5-d634-4ae3-a77e-a7bdde72b2a9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T19:40:49.000Z" - }, - "end": { - "$date": "2020-11-03T19:59:52.000Z" - }, - "events": [ - { - "uuid": "bcada2af-fb33-41c9-be38-07db7b70efd3", - "start": { - "$date": "2020-11-03T19:40:49.000Z" - }, - "end": { - "$date": "2020-11-03T19:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76cad09f-291a-45a0-82c6-e527c814ef14", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T20:04:00.000Z" - }, - "end": { - "$date": "2020-11-03T20:26:58.000Z" - }, - "events": [ - { - "uuid": "a346b246-50f4-40ba-b83c-0bfcc9778ad6", - "start": { - "$date": "2020-11-03T20:04:00.000Z" - }, - "end": { - "$date": "2020-11-03T20:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9df3a896-107a-4704-91df-6a8fa1dad05f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T20:30:21.000Z" - }, - "end": { - "$date": "2020-11-03T20:53:44.000Z" - }, - "events": [ - { - "uuid": "8834af78-d115-4b0c-adb1-327597d44f39", - "start": { - "$date": "2020-11-03T20:30:21.000Z" - }, - "end": { - "$date": "2020-11-03T20:53:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02073e0c-5bae-40d7-a97e-b86cd14e0cf6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T20:57:12.000Z" - }, - "end": { - "$date": "2020-11-03T21:20:38.000Z" - }, - "events": [ - { - "uuid": "455f77e1-846c-47c4-b249-3e4f26d73253", - "start": { - "$date": "2020-11-03T20:57:12.000Z" - }, - "end": { - "$date": "2020-11-03T21:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "258ce3e9-093f-46c4-b56a-292f85980deb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-03T21:42:44.000Z" - }, - "end": { - "$date": "2020-11-03T23:16:36.000Z" - }, - "events": [ - { - "uuid": "05a1eba9-db2e-4401-9e78-f512382ecf42", - "start": { - "$date": "2020-11-03T21:42:44.000Z" - }, - "end": { - "$date": "2020-11-03T22:06:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a024f6f-deef-4d91-984d-7ae919d646a3", - "start": { - "$date": "2020-11-03T22:06:44.000Z" - }, - "end": { - "$date": "2020-11-03T23:16:36.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "271dde01-6d86-4f55-8e65-660dd07351ce", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T22:13:07.000Z" - }, - "end": { - "$date": "2020-11-03T22:34:08.000Z" - }, - "events": [ - { - "uuid": "bde44cf3-37a6-46f1-9f7f-cab212a22e37", - "start": { - "$date": "2020-11-03T22:13:07.000Z" - }, - "end": { - "$date": "2020-11-03T22:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "52ead0a9-2d7a-400b-9116-e7be15a2c87b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-03T22:27:55.000Z" - }, - "end": { - "$date": "2020-11-03T22:29:28.000Z" - }, - "events": [ - { - "uuid": "9421f344-2918-4adf-a923-2e07d2679782", - "start": { - "$date": "2020-11-03T22:27:55.000Z" - }, - "end": { - "$date": "2020-11-03T22:29:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "edffa8a6-e4bb-4e3e-ba8a-edcd0bfe3edf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-03T22:29:50.000Z" - }, - "end": { - "$date": "2020-11-04T00:53:05.000Z" - }, - "events": [ - { - "uuid": "594ab82f-c206-401d-80ba-704e5ff3a09d", - "start": { - "$date": "2020-11-03T22:29:50.000Z" - }, - "end": { - "$date": "2020-11-03T22:30:50.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "d71eef9e-ee1c-4cff-a12d-2b39e32da372", - "start": { - "$date": "2020-11-03T22:30:50.000Z" - }, - "end": { - "$date": "2020-11-04T00:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e9211063-e2a4-4262-9b1e-d37f57b42e15", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T22:36:08.000Z" - }, - "end": { - "$date": "2020-11-03T23:30:35.000Z" - }, - "events": [ - { - "uuid": "6b522dbe-ed2c-4b57-b87c-ca93cb386057", - "start": { - "$date": "2020-11-03T22:36:08.000Z" - }, - "end": { - "$date": "2020-11-03T23:30:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7408243-c59c-4a3e-a586-3189c15b7036", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T22:43:57.000Z" - }, - "end": { - "$date": "2020-11-03T23:09:16.000Z" - }, - "events": [ - { - "uuid": "9349c6b8-b324-4bc6-8f7e-5449f62d677c", - "start": { - "$date": "2020-11-03T22:43:57.000Z" - }, - "end": { - "$date": "2020-11-03T23:09:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a5c266f-72de-42be-8da4-08f5c85e3f28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T23:36:28.000Z" - }, - "end": { - "$date": "2020-11-03T23:53:32.000Z" - }, - "events": [ - { - "uuid": "8ed1799f-9963-49bb-a9a9-265c639b0b5f", - "start": { - "$date": "2020-11-03T23:36:28.000Z" - }, - "end": { - "$date": "2020-11-03T23:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "6cf2a899-e9e1-4407-9ac8-a77bf52d18a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T23:34:10.000Z" - }, - "end": { - "$date": "2020-11-03T23:38:35.000Z" - }, - "events": [ - { - "uuid": "db94ec15-7e37-40a2-83b7-281f9da56828", - "start": { - "$date": "2020-11-03T23:34:10.000Z" - }, - "end": { - "$date": "2020-11-03T23:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dae64086-5301-403c-ad79-d5aefeea0e68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-03T23:39:05.000Z" - }, - "end": { - "$date": "2020-11-04T00:59:43.000Z" - }, - "events": [ - { - "uuid": "6400ea91-b637-4a3a-8395-3dbc6a3df0ad", - "start": { - "$date": "2020-11-03T23:39:05.000Z" - }, - "end": { - "$date": "2020-11-04T00:59:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd62ec1d-4cfc-4602-8733-e8b722e4c811", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-03T23:57:18.000Z" - }, - "end": { - "$date": "2020-11-04T00:20:56.000Z" - }, - "events": [ - { - "uuid": "7748726c-d422-40c4-97be-c70d551594ec", - "start": { - "$date": "2020-11-03T23:57:18.000Z" - }, - "end": { - "$date": "2020-11-04T00:20:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1525f9c6-f8ac-4b2b-a02f-4a4a2bd91908", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T00:44:47.000Z" - }, - "end": { - "$date": "2020-11-04T01:05:51.000Z" - }, - "events": [ - { - "uuid": "39946eac-35f2-41a9-8a42-876fb66df5e9", - "start": { - "$date": "2020-11-04T00:44:47.000Z" - }, - "end": { - "$date": "2020-11-04T01:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "80677478-acae-4bca-9a68-05c3168eb1d9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-04T00:50:08.000Z" - }, - "end": { - "$date": "2020-11-04T04:55:26.000Z" - }, - "events": [ - { - "uuid": "31f4e505-4ddb-4aac-bfae-78ee60049fea", - "start": { - "$date": "2020-11-04T00:50:08.000Z" - }, - "end": { - "$date": "2020-11-04T04:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "74ab5319-3957-4d4c-9a6f-ca933202aee5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-04T00:57:02.000Z" - }, - "end": { - "$date": "2020-11-04T00:58:49.000Z" - }, - "events": [ - { - "uuid": "38ccb07d-6f39-4d70-bed0-9884bfbc61fc", - "start": { - "$date": "2020-11-04T00:57:02.000Z" - }, - "end": { - "$date": "2020-11-04T00:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e1933cf-a673-43f9-8c69-b9be7a8fbf93", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T01:10:18.000Z" - }, - "end": { - "$date": "2020-11-04T01:30:55.000Z" - }, - "events": [ - { - "uuid": "4e6eec14-0c88-4b63-8194-29c7bed50dad", - "start": { - "$date": "2020-11-04T01:10:18.000Z" - }, - "end": { - "$date": "2020-11-04T01:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2e86791-936b-4a8c-a292-05740156c1c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T01:58:17.000Z" - }, - "end": { - "$date": "2020-11-04T02:32:05.000Z" - }, - "events": [ - { - "uuid": "a7434c24-2939-46f0-8644-f6af00a71505", - "start": { - "$date": "2020-11-04T01:58:17.000Z" - }, - "end": { - "$date": "2020-11-04T02:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97cc0899-5307-4bdf-a69b-61d4e3e1645a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-04T01:59:28.000Z" - }, - "end": { - "$date": "2020-11-04T02:32:24.000Z" - }, - "events": [ - { - "uuid": "919654c1-afc9-4509-b5f8-05f880ff1197", - "start": { - "$date": "2020-11-04T01:59:28.000Z" - }, - "end": { - "$date": "2020-11-04T02:32:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f307467c-5485-45e3-9ec6-e2d958c7e7cf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T02:41:24.000Z" - }, - "end": { - "$date": "2020-11-04T03:00:26.000Z" - }, - "events": [ - { - "uuid": "48baa1e4-c9c9-4c96-b48b-f353242542cf", - "start": { - "$date": "2020-11-04T02:41:24.000Z" - }, - "end": { - "$date": "2020-11-04T03:00:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1472ab47-fddc-4057-bc64-8f49c0b8507f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-04T02:41:15.000Z" - }, - "end": { - "$date": "2020-11-04T03:00:21.000Z" - }, - "events": [ - { - "uuid": "6693f3a3-41f4-42dd-935e-aea5c671483e", - "start": { - "$date": "2020-11-04T02:41:15.000Z" - }, - "end": { - "$date": "2020-11-04T03:00:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2710122b-8207-43bd-882a-ad4458a168c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T02:45:06.000Z" - }, - "end": { - "$date": "2020-11-04T04:55:06.000Z" - }, - "events": [ - { - "uuid": "6f5fe2a9-8b92-4ebb-bce9-226bc3ce6b96", - "start": { - "$date": "2020-11-04T02:45:06.000Z" - }, - "end": { - "$date": "2020-11-04T04:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcff521e-16ce-47c9-aa3b-e1245d571bd9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T03:05:30.000Z" - }, - "end": { - "$date": "2020-11-04T03:29:37.000Z" - }, - "events": [ - { - "uuid": "522e383a-48e2-43a7-a946-0ee31a695dd2", - "start": { - "$date": "2020-11-04T03:05:30.000Z" - }, - "end": { - "$date": "2020-11-04T03:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ae3c209-3968-46d0-849d-b5701de6de37", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-04T03:05:21.000Z" - }, - "end": { - "$date": "2020-11-04T03:29:27.000Z" - }, - "events": [ - { - "uuid": "a9bc9ca0-eb8f-49d0-8662-a9df12a3269a", - "start": { - "$date": "2020-11-04T03:05:21.000Z" - }, - "end": { - "$date": "2020-11-04T03:29:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0c2cf84a-5c0f-4179-87c0-fcff1873e605", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-04T03:37:43.000Z" - }, - "end": { - "$date": "2020-11-04T04:36:34.000Z" - }, - "events": [ - { - "uuid": "14b75cbe-7d63-4e78-92f5-b13378975273", - "start": { - "$date": "2020-11-04T03:37:43.000Z" - }, - "end": { - "$date": "2020-11-04T04:36:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4e3d1831-76b2-4dae-ad10-1659a8de79b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T03:39:42.000Z" - }, - "end": { - "$date": "2020-11-04T07:17:30.000Z" - }, - "events": [ - { - "uuid": "855e23ce-442a-4b32-94ae-deda32856dd3", - "start": { - "$date": "2020-11-04T03:39:42.000Z" - }, - "end": { - "$date": "2020-11-04T07:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "436c8afc-f9d9-4ec4-8a93-f459cd498123", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-04T04:09:55.000Z" - }, - "end": { - "$date": "2020-11-04T05:39:18.000Z" - }, - "events": [ - { - "uuid": "11d1ed0f-83ba-4930-b023-186069226c57", - "start": { - "$date": "2020-11-04T04:09:55.000Z" - }, - "end": { - "$date": "2020-11-04T04:10:55.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "0b3305e8-e107-4167-9c08-1f690f9b4096", - "start": { - "$date": "2020-11-04T04:10:55.000Z" - }, - "end": { - "$date": "2020-11-04T05:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d9376222-f568-4469-8909-2a4307c82232", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-04T04:20:39.000Z" - }, - "end": { - "$date": "2020-11-04T04:37:59.000Z" - }, - "events": [ - { - "uuid": "91591705-5ab1-40e8-a86d-505ed65402db", - "start": { - "$date": "2020-11-04T04:20:39.000Z" - }, - "end": { - "$date": "2020-11-04T04:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "080b7b29-485d-4f39-87e8-acefbae68bd6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-04T04:22:26.000Z" - }, - "end": { - "$date": "2020-11-04T06:26:13.000Z" - }, - "events": [ - { - "uuid": "af9da301-5323-48f8-93d3-356f01905941", - "start": { - "$date": "2020-11-04T04:22:26.000Z" - }, - "end": { - "$date": "2020-11-04T06:26:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "b2335552-e201-487f-83cc-5394154a7a03", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-04T04:29:16.000Z" - }, - "end": { - "$date": "2020-11-04T04:31:13.000Z" - }, - "events": [ - { - "uuid": "27abc914-b654-4d11-909c-7c05aa1073a5", - "start": { - "$date": "2020-11-04T04:29:16.000Z" - }, - "end": { - "$date": "2020-11-04T04:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "52900c1f-7c73-4e77-afe3-8808a1cf3150", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-04T04:31:21.000Z" - }, - "end": { - "$date": "2020-11-04T05:04:29.000Z" - }, - "events": [ - { - "uuid": "3bc5b9d2-d56b-4a7e-bef8-5344cefd8172", - "start": { - "$date": "2020-11-04T04:31:21.000Z" - }, - "end": { - "$date": "2020-11-04T05:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "3c4251d5-067b-4567-a184-627cfda0daf8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-04T04:39:00.000Z" - }, - "end": { - "$date": "2020-11-04T04:55:35.000Z" - }, - "events": [ - { - "uuid": "ba907fdd-70e3-42c6-84b4-781297874cab", - "start": { - "$date": "2020-11-04T04:39:00.000Z" - }, - "end": { - "$date": "2020-11-04T04:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "1ad902cc-9531-47b6-bf17-56d3c7cfc931", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-04T04:50:46.000Z" - }, - "end": { - "$date": "2020-11-04T06:31:06.000Z" - }, - "events": [ - { - "uuid": "c0497c3a-cc81-4e08-8ffe-1e713e19f371", - "start": { - "$date": "2020-11-04T04:50:46.000Z" - }, - "end": { - "$date": "2020-11-04T06:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "aaccd497-5949-46d4-90d8-ba4b5b6ea415", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T04:55:39.000Z" - }, - "end": { - "$date": "2020-11-04T05:01:56.000Z" - }, - "events": [ - { - "uuid": "48749aad-f6a3-407a-8086-b5307448800f", - "start": { - "$date": "2020-11-04T04:55:39.000Z" - }, - "end": { - "$date": "2020-11-04T05:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "a27d9957-3ba4-443d-8f0b-2cab013faee7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-04T04:55:50.000Z" - }, - "end": { - "$date": "2020-11-04T05:47:55.000Z" - }, - "events": [ - { - "uuid": "e47199b1-59a3-40f3-b552-f86f75a0b20d", - "start": { - "$date": "2020-11-04T04:55:50.000Z" - }, - "end": { - "$date": "2020-11-04T05:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "e5c28ac6-1664-4e37-89be-7b929b061a6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-04T04:59:41.000Z" - }, - "end": { - "$date": "2020-11-04T05:01:17.000Z" - }, - "events": [ - { - "uuid": "744df5d8-8cda-41d0-905e-12310321c5f0", - "start": { - "$date": "2020-11-04T04:59:41.000Z" - }, - "end": { - "$date": "2020-11-04T05:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "11012c0f-a1ed-4d49-999e-2e4c75dbc4bd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T05:02:04.000Z" - }, - "end": { - "$date": "2020-11-04T05:48:03.000Z" - }, - "events": [ - { - "uuid": "99e2de62-14fa-456b-9427-89ea4b6e4044", - "start": { - "$date": "2020-11-04T05:02:04.000Z" - }, - "end": { - "$date": "2020-11-04T05:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "bfb60ce9-7bd2-48c0-a00c-eeba99a43918", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-04T05:39:58.000Z" - }, - "end": { - "$date": "2020-11-04T05:47:10.000Z" - }, - "events": [ - { - "uuid": "d53c598f-53aa-4a57-ac6f-ca8e5e5184b7", - "start": { - "$date": "2020-11-04T05:39:58.000Z" - }, - "end": { - "$date": "2020-11-04T05:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "276193e2-e9d1-4a38-b3da-5899d6106d8b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-04T05:54:13.000Z" - }, - "end": { - "$date": "2020-11-04T06:47:28.000Z" - }, - "events": [ - { - "uuid": "eebba5a0-ad29-4f5b-bdf5-96f94878f9d5", - "start": { - "$date": "2020-11-04T05:54:13.000Z" - }, - "end": { - "$date": "2020-11-04T06:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "892ecb50-4539-4d59-818a-c49ec9ff3fc6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T06:56:48.000Z" - }, - "end": { - "$date": "2020-11-04T07:07:26.000Z" - }, - "events": [ - { - "uuid": "92336c48-c57c-4755-929e-c1429cd662dc", - "start": { - "$date": "2020-11-04T06:56:48.000Z" - }, - "end": { - "$date": "2020-11-04T07:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "4a01b563-6eee-4ebf-b906-09f9a41cf790", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-04T15:58:49.000Z" - }, - "end": { - "$date": "2020-11-04T17:29:47.000Z" - }, - "events": [ - { - "uuid": "4eaecca7-4a72-46f1-b28e-54e8aa604bf9", - "start": { - "$date": "2020-11-04T15:58:49.000Z" - }, - "end": { - "$date": "2020-11-04T17:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d500de09-4139-4782-b8ed-39148af44f5c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T17:36:10.000Z" - }, - "end": { - "$date": "2020-11-04T18:03:28.000Z" - }, - "events": [ - { - "uuid": "52f432e2-2468-4fda-85f0-44415ad4cf71", - "start": { - "$date": "2020-11-04T17:36:10.000Z" - }, - "end": { - "$date": "2020-11-04T18:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "8f42fbe7-46c8-45fc-b0ed-22dbd6602ff3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-04T17:15:49.000Z" - }, - "end": { - "$date": "2020-11-05T02:18:18.000Z" - }, - "events": [ - { - "uuid": "54d8a2a2-ab60-4340-9703-8b784aa3f12f", - "start": { - "$date": "2020-11-04T17:15:49.000Z" - }, - "end": { - "$date": "2020-11-04T18:46:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b9dfc83-7819-4353-a50e-389f088cae89", - "start": { - "$date": "2020-11-04T18:46:49.000Z" - }, - "end": { - "$date": "2020-11-04T19:34:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ccb3726-908c-4473-acb3-1c3cf42216d2", - "start": { - "$date": "2020-11-04T19:34:49.000Z" - }, - "end": { - "$date": "2020-11-04T19:36:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de27354f-0bca-4dcc-876a-8f92d9b52a9e", - "start": { - "$date": "2020-11-04T19:36:49.000Z" - }, - "end": { - "$date": "2020-11-04T19:43:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "caf3ec8b-f6e4-4c40-b4a5-2b09da5d08d9", - "start": { - "$date": "2020-11-04T19:43:49.000Z" - }, - "end": { - "$date": "2020-11-04T19:56:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0c8c501d-1ecf-4ad1-847e-5ed930fb2692", - "start": { - "$date": "2020-11-04T19:56:49.000Z" - }, - "end": { - "$date": "2020-11-04T19:58:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de3ba96e-bb1b-4eff-93ba-67f0ad7b768e", - "start": { - "$date": "2020-11-04T19:58:49.000Z" - }, - "end": { - "$date": "2020-11-04T20:42:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0b53f927-e953-451e-9d81-e6b68dd1f3be", - "start": { - "$date": "2020-11-04T20:42:49.000Z" - }, - "end": { - "$date": "2020-11-04T21:04:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd0d7198-9f2f-4e60-9d9d-ddcb40a78dde", - "start": { - "$date": "2020-11-04T21:04:49.000Z" - }, - "end": { - "$date": "2020-11-04T22:20:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "23a2f73e-a3a9-454b-b975-a77db28f89fd", - "start": { - "$date": "2020-11-04T22:20:49.000Z" - }, - "end": { - "$date": "2020-11-04T22:23:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ffd9432d-f759-4fd5-8e9b-ab79a012dd9f", - "start": { - "$date": "2020-11-04T22:23:49.000Z" - }, - "end": { - "$date": "2020-11-04T22:52:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f512e54e-9a03-43c1-b7de-c92a84daeba9", - "start": { - "$date": "2020-11-04T22:52:49.000Z" - }, - "end": { - "$date": "2020-11-04T23:05:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "85f27733-0186-4d1f-a2ec-448875376b73", - "start": { - "$date": "2020-11-04T23:05:49.000Z" - }, - "end": { - "$date": "2020-11-04T23:18:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df2e17b8-8f6a-4532-bcba-a76041804f87", - "start": { - "$date": "2020-11-04T23:18:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:04:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8cb41ab-7e2c-45e1-b645-6cd75148109c", - "start": { - "$date": "2020-11-05T01:04:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:08:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "563bca95-d859-462a-848a-e48dee32e32d", - "start": { - "$date": "2020-11-05T01:08:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:22:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf2cc007-0ebb-4e03-9a77-57f9027d58d8", - "start": { - "$date": "2020-11-05T01:22:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:24:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d518cef0-1b9d-4869-ac91-0fd27fef24b6", - "start": { - "$date": "2020-11-05T01:24:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:42:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a26f8cf4-db11-41cf-b424-dc191d564fde", - "start": { - "$date": "2020-11-05T01:42:49.000Z" - }, - "end": { - "$date": "2020-11-05T02:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f937af17-2782-4423-8cae-8e2d289f325a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T18:06:12.000Z" - }, - "end": { - "$date": "2020-11-04T18:33:38.000Z" - }, - "events": [ - { - "uuid": "2ffa448b-2ee3-44ae-b357-418be8ffdae3", - "start": { - "$date": "2020-11-04T18:06:12.000Z" - }, - "end": { - "$date": "2020-11-04T18:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0512b35a-f7a1-4fed-80ad-f3d2a75f34d8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-04T18:17:09.000Z" - }, - "end": { - "$date": "2020-11-04T18:45:01.000Z" - }, - "events": [ - { - "uuid": "7cfdb1d2-699c-4f45-8040-55d9c54f3b30", - "start": { - "$date": "2020-11-04T18:17:09.000Z" - }, - "end": { - "$date": "2020-11-04T18:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0160e80c-b4e1-46ee-9e0e-babc1e750341", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T19:33:37.000Z" - }, - "end": { - "$date": "2020-11-04T20:14:43.000Z" - }, - "events": [ - { - "uuid": "a93b3968-a05f-499a-bc42-1c4970869d6c", - "start": { - "$date": "2020-11-04T19:33:37.000Z" - }, - "end": { - "$date": "2020-11-04T20:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dddcd98-2fab-49ed-b944-6d70f7538b55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-04T20:15:24.000Z" - }, - "end": { - "$date": "2020-11-04T20:46:17.000Z" - }, - "events": [ - { - "uuid": "1615b389-bda8-40ac-a6de-d38b7bc284c3", - "start": { - "$date": "2020-11-04T20:15:24.000Z" - }, - "end": { - "$date": "2020-11-04T20:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "360fd263-89d6-4e2d-bfc9-973e83d839f1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T20:15:48.000Z" - }, - "end": { - "$date": "2020-11-04T20:42:59.000Z" - }, - "events": [ - { - "uuid": "2ef9f786-8122-46e1-98f6-a4ec4f4d94c9", - "start": { - "$date": "2020-11-04T20:15:48.000Z" - }, - "end": { - "$date": "2020-11-04T20:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbb8565d-b5b6-4ddb-be85-b3ff401dadda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T21:03:49.000Z" - }, - "end": { - "$date": "2020-11-04T21:29:51.000Z" - }, - "events": [ - { - "uuid": "2ae7eda0-5141-44fa-8258-337e1308a999", - "start": { - "$date": "2020-11-04T21:03:49.000Z" - }, - "end": { - "$date": "2020-11-04T21:29:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1c0a54e2-ead9-4add-974f-1deb56574e4c", - "uuid": "b8c09391-1f37-4e99-8774-a6c32798527d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-04T21:11:36.000Z" - }, - "end": { - "$date": "2020-11-04T22:47:49.000Z" - }, - "events": [ - { - "uuid": "e2e3f492-9687-4d52-a607-ed26c4a76ef6", - "start": { - "$date": "2020-11-04T21:11:36.000Z" - }, - "end": { - "$date": "2020-11-04T22:28:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ac632b9-4850-4b4f-baaa-e0e373b64ecb", - "start": { - "$date": "2020-11-04T22:28:36.000Z" - }, - "end": { - "$date": "2020-11-04T22:47:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f28b83c-7f97-4259-a837-4ce9268b6a56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T21:39:16.000Z" - }, - "end": { - "$date": "2020-11-04T21:59:46.000Z" - }, - "events": [ - { - "uuid": "a68d020b-783c-4924-9cd8-32a0bf3fa580", - "start": { - "$date": "2020-11-04T21:39:16.000Z" - }, - "end": { - "$date": "2020-11-04T21:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2111d50a-8f78-4e8c-aee0-2bc66acd1d09", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T22:03:12.000Z" - }, - "end": { - "$date": "2020-11-04T22:20:09.000Z" - }, - "events": [ - { - "uuid": "f4b150eb-5cdb-4d81-9a12-9ae0938002fc", - "start": { - "$date": "2020-11-04T22:03:12.000Z" - }, - "end": { - "$date": "2020-11-04T22:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4a05183b-8d8f-44fa-a97d-f687821ec342", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-04T22:02:22.000Z" - }, - "end": { - "$date": "2020-11-04T23:09:27.000Z" - }, - "events": [ - { - "uuid": "d470b35c-83c3-48e3-95ab-f75fbc47866b", - "start": { - "$date": "2020-11-04T22:02:22.000Z" - }, - "end": { - "$date": "2020-11-04T23:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f15ca71-122a-46bb-816e-b7ae3f2abdca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T22:24:33.000Z" - }, - "end": { - "$date": "2020-11-04T22:48:00.000Z" - }, - "events": [ - { - "uuid": "0ae69549-ed91-49af-9634-065bb4bedc6f", - "start": { - "$date": "2020-11-04T22:24:33.000Z" - }, - "end": { - "$date": "2020-11-04T22:48:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "377c58f0-7367-4ea6-8896-9773a7afb7c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-04T22:48:49.000Z" - }, - "end": { - "$date": "2020-11-04T22:49:59.000Z" - }, - "events": [ - { - "uuid": "0037d909-107e-4612-be1e-0ebde14b1086", - "start": { - "$date": "2020-11-04T22:48:49.000Z" - }, - "end": { - "$date": "2020-11-04T22:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "b941375c-8905-4658-b122-30c92e7ae4c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-04T23:08:06.000Z" - }, - "end": { - "$date": "2020-11-05T00:48:56.000Z" - }, - "events": [ - { - "uuid": "279a5be6-e09b-4b83-a171-4531f8d9c056", - "start": { - "$date": "2020-11-04T23:08:06.000Z" - }, - "end": { - "$date": "2020-11-05T00:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a3c94a5d-127b-49f9-82fa-611910a07e44", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-04T23:10:29.000Z" - }, - "end": { - "$date": "2020-11-04T23:57:44.000Z" - }, - "events": [ - { - "uuid": "e7571066-8ead-4e27-922c-03e8dc5abb87", - "start": { - "$date": "2020-11-04T23:10:29.000Z" - }, - "end": { - "$date": "2020-11-04T23:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2b3bc0e1-87b3-4a6f-83c1-e83d909a43ee", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-04T23:58:38.000Z" - }, - "end": { - "$date": "2020-11-05T00:33:11.000Z" - }, - "events": [ - { - "uuid": "8b295424-e641-4bf4-97e7-4676538acb77", - "start": { - "$date": "2020-11-04T23:58:38.000Z" - }, - "end": { - "$date": "2020-11-05T00:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "af8d98b9-5551-46f5-8331-868f5fb1e8e5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-05T00:47:48.000Z" - }, - "end": { - "$date": "2020-11-05T01:43:55.000Z" - }, - "events": [ - { - "uuid": "127b076d-66cc-44f6-9456-7b7b08cadc20", - "start": { - "$date": "2020-11-05T00:47:48.000Z" - }, - "end": { - "$date": "2020-11-05T01:43:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b8e6eaa6-ca07-4f7d-8178-dc3a716e45a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T00:51:17.000Z" - }, - "end": { - "$date": "2020-11-05T00:52:16.000Z" - }, - "events": [ - { - "uuid": "2a282f15-e20d-4999-9c91-b4e89d5e52c3", - "start": { - "$date": "2020-11-05T00:51:17.000Z" - }, - "end": { - "$date": "2020-11-05T00:52:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "4e139b7e-8538-439f-bc1d-7dd4f6c76012", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T00:56:13.000Z" - }, - "end": { - "$date": "2020-11-05T00:56:28.000Z" - }, - "events": [ - { - "uuid": "d1408b93-2a17-4b88-a5ab-26ccc6588123", - "start": { - "$date": "2020-11-05T00:56:13.000Z" - }, - "end": { - "$date": "2020-11-05T00:56:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "47de1db6-c77e-4e5c-bfde-d33c3e50011c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T00:56:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:30:41.000Z" - }, - "events": [ - { - "uuid": "df034ef9-9d2a-4c42-aae9-1b65b2279b21", - "start": { - "$date": "2020-11-05T00:56:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:09:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bad3c820-2650-4be6-80e6-2a34f7a0a1fc", - "start": { - "$date": "2020-11-05T01:09:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:11:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80a258d2-7a30-4a6c-90d6-14cab1686bc1", - "start": { - "$date": "2020-11-05T01:11:49.000Z" - }, - "end": { - "$date": "2020-11-05T01:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "dbaa446b-93fb-47a4-848a-7e77688a68c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T01:35:17.000Z" - }, - "end": { - "$date": "2020-11-05T02:14:23.000Z" - }, - "events": [ - { - "uuid": "cead6b6b-960d-43e3-966e-733b64029b96", - "start": { - "$date": "2020-11-05T01:35:17.000Z" - }, - "end": { - "$date": "2020-11-05T01:57:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74ab7c12-1c95-4c8c-9241-2c47d1070dec", - "start": { - "$date": "2020-11-05T01:57:17.000Z" - }, - "end": { - "$date": "2020-11-05T01:58:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb459f80-31cb-4227-b2c7-7a985ffe1296", - "start": { - "$date": "2020-11-05T01:58:17.000Z" - }, - "end": { - "$date": "2020-11-05T02:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fa536cf5-c3e1-4a55-83c6-5b804eccce56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-05T02:11:52.000Z" - }, - "end": { - "$date": "2020-11-05T02:42:01.000Z" - }, - "events": [ - { - "uuid": "6b765f42-31a8-473f-81f9-9ff264b08af8", - "start": { - "$date": "2020-11-05T02:11:52.000Z" - }, - "end": { - "$date": "2020-11-05T02:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "557a4b80-8121-4096-9639-46bae09cb7c8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T02:14:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:47:13.000Z" - }, - "events": [ - { - "uuid": "c7d4763b-bc7e-4ad2-9153-a68068bb308a", - "start": { - "$date": "2020-11-05T02:14:44.000Z" - }, - "end": { - "$date": "2020-11-05T02:45:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "960ff9d1-ba14-4672-81f3-10a48f1c0ebe", - "start": { - "$date": "2020-11-05T02:45:44.000Z" - }, - "end": { - "$date": "2020-11-05T02:49:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e517d281-ae1c-4deb-92f1-30d92c1f3f9a", - "start": { - "$date": "2020-11-05T02:49:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:00:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e768433-f278-4fc2-9e00-64650683c9db", - "start": { - "$date": "2020-11-05T03:00:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:04:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "56e4d2fd-c89a-404a-b2d9-d18e156161f4", - "start": { - "$date": "2020-11-05T03:04:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:14:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7de6c667-ac38-443b-aefd-6381b2856c3f", - "start": { - "$date": "2020-11-05T03:14:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:19:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de0add5d-c302-4e84-86e5-371fe38acbea", - "start": { - "$date": "2020-11-05T03:19:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:29:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ca41dff-4870-4f9d-8ece-7e8a7d9189f8", - "start": { - "$date": "2020-11-05T03:29:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:34:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fbdc2fc9-e962-4881-ad9a-357395fce162", - "start": { - "$date": "2020-11-05T03:34:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:44:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c25e23d-08ea-4e3f-bd63-88216ad9bc83", - "start": { - "$date": "2020-11-05T03:44:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:47:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "99473f93-df15-40e9-8a9b-d1e07252f5d4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-05T02:45:21.000Z" - }, - "end": { - "$date": "2020-11-05T03:59:51.000Z" - }, - "events": [ - { - "uuid": "e1fd0be9-7c5b-4915-ada9-30c0fa61c8b5", - "start": { - "$date": "2020-11-05T02:45:21.000Z" - }, - "end": { - "$date": "2020-11-05T03:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "972a1aa8-7fbd-4f2d-86b7-1ea7b650fdb8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-05T03:04:35.000Z" - }, - "end": { - "$date": "2020-11-05T03:52:21.000Z" - }, - "events": [ - { - "uuid": "68b546fd-ff76-4f74-a722-992efc673583", - "start": { - "$date": "2020-11-05T03:04:35.000Z" - }, - "end": { - "$date": "2020-11-05T03:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5ff9ebda-48f2-4fd2-b31f-252deee02380", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-05T03:12:29.000Z" - }, - "end": { - "$date": "2020-11-05T04:43:52.000Z" - }, - "events": [ - { - "uuid": "7e3e8e14-0d1e-4d0e-b3a7-c518f76d242e", - "start": { - "$date": "2020-11-05T03:12:29.000Z" - }, - "end": { - "$date": "2020-11-05T04:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "f9c17739-694b-4a31-ab1a-45d92fe96ea2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-05T03:17:40.000Z" - }, - "end": { - "$date": "2020-11-05T04:29:34.000Z" - }, - "events": [ - { - "uuid": "92d67470-5a17-44e7-afa9-d25387c2e68d", - "start": { - "$date": "2020-11-05T03:17:40.000Z" - }, - "end": { - "$date": "2020-11-05T04:29:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9cb40dbc-278e-4549-a2ec-115983421977", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-05T03:19:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:29:51.000Z" - }, - "events": [ - { - "uuid": "650ab529-b7bc-41e7-b90f-b5c736bc0105", - "start": { - "$date": "2020-11-05T03:19:44.000Z" - }, - "end": { - "$date": "2020-11-05T03:29:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "03130921-da7c-4c12-b08b-f2161164a143", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-05T03:24:30.000Z" - }, - "end": { - "$date": "2020-11-05T05:47:53.000Z" - }, - "events": [ - { - "uuid": "99121a4e-02d1-452c-a694-550c65b9278a", - "start": { - "$date": "2020-11-05T03:24:30.000Z" - }, - "end": { - "$date": "2020-11-05T05:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "87cae347-49f3-42d8-b09d-4d586a6d3d5b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-05T03:25:20.000Z" - }, - "end": { - "$date": "2020-11-05T04:46:06.000Z" - }, - "events": [ - { - "uuid": "96e130fd-e7d1-4f9d-8591-d9ad0d63a112", - "start": { - "$date": "2020-11-05T03:25:20.000Z" - }, - "end": { - "$date": "2020-11-05T04:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "d3e3350c-8920-4de5-8265-280797913994", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-05T03:26:39.000Z" - }, - "end": { - "$date": "2020-11-05T05:47:52.000Z" - }, - "events": [ - { - "uuid": "3cbcf671-a636-476d-bac0-e2833436500b", - "start": { - "$date": "2020-11-05T03:26:39.000Z" - }, - "end": { - "$date": "2020-11-05T05:47:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3f1e5bdf-17d5-4a33-9801-c99ea63a0831", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-05T03:29:55.000Z" - }, - "end": { - "$date": "2020-11-05T04:44:20.000Z" - }, - "events": [ - { - "uuid": "eac879e2-bf9a-4f7f-8417-17947e09a501", - "start": { - "$date": "2020-11-05T03:29:55.000Z" - }, - "end": { - "$date": "2020-11-05T04:44:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7934e3f5-7932-4ebb-899e-d91ae9c03e65", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-05T03:51:26.000Z" - }, - "end": { - "$date": "2020-11-05T04:11:24.000Z" - }, - "events": [ - { - "uuid": "9c5c03c5-3aa7-491a-8158-c6ca6c550a4a", - "start": { - "$date": "2020-11-05T03:51:26.000Z" - }, - "end": { - "$date": "2020-11-05T04:11:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "76f0e021-429f-4d9f-9d33-0ead6cfb3794", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T03:58:24.000Z" - }, - "end": { - "$date": "2020-11-05T05:56:49.000Z" - }, - "events": [ - { - "uuid": "712c013e-c765-4d3c-ba49-b7734c1d0d72", - "start": { - "$date": "2020-11-05T03:58:24.000Z" - }, - "end": { - "$date": "2020-11-05T05:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "88545a9b-375d-40a2-9808-62fb582c265a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-05T03:58:43.000Z" - }, - "end": { - "$date": "2020-11-05T05:18:56.000Z" - }, - "events": [ - { - "uuid": "6bf83e0e-dc4c-4ffb-bbf8-256070df1abe", - "start": { - "$date": "2020-11-05T03:58:43.000Z" - }, - "end": { - "$date": "2020-11-05T05:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "70fa27c8-520a-49a8-bddc-86d8e7b17b52", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-05T04:03:07.000Z" - }, - "end": { - "$date": "2020-11-05T04:41:17.000Z" - }, - "events": [ - { - "uuid": "c89af198-2899-471f-b8dc-227fa66eea3f", - "start": { - "$date": "2020-11-05T04:03:07.000Z" - }, - "end": { - "$date": "2020-11-05T04:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f84dfcdb-386a-4fd7-b8ae-456d1132e299", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-05T04:20:48.000Z" - }, - "end": { - "$date": "2020-11-05T05:53:33.000Z" - }, - "events": [ - { - "uuid": "05f00020-887f-4396-a265-8888823e0c09", - "start": { - "$date": "2020-11-05T04:20:48.000Z" - }, - "end": { - "$date": "2020-11-05T05:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f6c26fe0-f7f6-4689-954e-622432c5f909", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-05T04:30:05.000Z" - }, - "end": { - "$date": "2020-11-05T05:57:16.000Z" - }, - "events": [ - { - "uuid": "6a669025-4312-4b10-b043-a3214b198536", - "start": { - "$date": "2020-11-05T04:30:05.000Z" - }, - "end": { - "$date": "2020-11-05T04:44:05.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "adea7582-9d64-468f-86ee-286843de826a", - "start": { - "$date": "2020-11-05T04:44:05.000Z" - }, - "end": { - "$date": "2020-11-05T05:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "f30bc601-727b-4744-b6f1-5cc31ffcd41b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-05T04:43:19.000Z" - }, - "end": { - "$date": "2020-11-05T04:53:45.000Z" - }, - "events": [ - { - "uuid": "890db028-0022-4d09-bf7d-527a8adc75d7", - "start": { - "$date": "2020-11-05T04:43:19.000Z" - }, - "end": { - "$date": "2020-11-05T04:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8ed3fa75-3f81-49ae-9d47-83955e324fef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-05T05:20:19.000Z" - }, - "end": { - "$date": "2020-11-05T06:37:16.000Z" - }, - "events": [ - { - "uuid": "7228d110-734f-4fd3-ba4a-b62f9c331d65", - "start": { - "$date": "2020-11-05T05:20:19.000Z" - }, - "end": { - "$date": "2020-11-05T06:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "7ac8b367-3abc-42ac-b188-469af5104e4f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-05T05:51:05.000Z" - }, - "end": { - "$date": "2020-11-05T06:20:46.000Z" - }, - "events": [ - { - "uuid": "aa25f4f9-a9df-472a-aed0-e256d061e507", - "start": { - "$date": "2020-11-05T05:51:05.000Z" - }, - "end": { - "$date": "2020-11-05T06:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6003814e-9776-4800-a2ae-35d174a88103", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-05T06:00:20.000Z" - }, - "end": { - "$date": "2020-11-05T06:05:10.000Z" - }, - "events": [ - { - "uuid": "63258c38-b0a8-413b-9f38-869b35ba8070", - "start": { - "$date": "2020-11-05T06:00:20.000Z" - }, - "end": { - "$date": "2020-11-05T06:05:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "c8f3bd51-09b6-425f-8d54-938937319a55", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-05T15:13:47.000Z" - }, - "end": { - "$date": "2020-11-05T16:59:58.000Z" - }, - "events": [ - { - "uuid": "5c79e542-b85d-46e1-a016-4c068735272f", - "start": { - "$date": "2020-11-05T15:13:47.000Z" - }, - "end": { - "$date": "2020-11-05T16:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "36977fc7-3876-4ac7-a2f9-0411c593bca5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-05T19:15:38.000Z" - }, - "end": { - "$date": "2020-11-05T19:38:05.000Z" - }, - "events": [ - { - "uuid": "ba354bcc-155c-4824-add9-472c67d2b57d", - "start": { - "$date": "2020-11-05T19:15:38.000Z" - }, - "end": { - "$date": "2020-11-05T19:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d41c2d5-93eb-4f03-8d1c-92f427df91ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-05T21:52:21.000Z" - }, - "end": { - "$date": "2020-11-05T22:23:00.000Z" - }, - "events": [ - { - "uuid": "8c4d86c3-fc6d-459b-8de7-088de6ed17a8", - "start": { - "$date": "2020-11-05T21:52:21.000Z" - }, - "end": { - "$date": "2020-11-05T22:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "fc8daf48-1f04-404b-80bf-7a14fbb9acf5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-05T22:45:54.000Z" - }, - "end": { - "$date": "2020-11-06T00:34:39.000Z" - }, - "events": [ - { - "uuid": "a8fcf051-8e5b-4915-b678-198449067eca", - "start": { - "$date": "2020-11-05T22:45:54.000Z" - }, - "end": { - "$date": "2020-11-06T00:34:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "ec4eaa20-c7ef-4935-9f05-7111be1ae605", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-05T22:50:21.000Z" - }, - "end": { - "$date": "2020-11-05T22:59:58.000Z" - }, - "events": [ - { - "uuid": "64b18dd0-2561-4768-a937-35358ad7e617", - "start": { - "$date": "2020-11-05T22:50:21.000Z" - }, - "end": { - "$date": "2020-11-05T22:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "be057380-dd39-4049-84f3-e0529d4a51e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-06T03:58:35.000Z" - }, - "end": { - "$date": "2020-11-06T04:00:39.000Z" - }, - "events": [ - { - "uuid": "e3f5be47-5bfe-41ea-b40a-06f25a332253", - "start": { - "$date": "2020-11-06T03:58:35.000Z" - }, - "end": { - "$date": "2020-11-06T05:51:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03f0c4bd-9c02-4723-b7e5-051df126d902", - "start": { - "$date": "2020-11-06T05:51:35.000Z" - }, - "end": { - "$date": "2020-11-06T05:56:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70bbba3d-b4e5-406d-8c2a-0a1ec05b94bf", - "start": { - "$date": "2020-11-06T05:56:35.000Z" - }, - "end": { - "$date": "2020-11-06T06:06:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "476a1e51-ac56-4a0f-83d4-41220f3c8da3", - "start": { - "$date": "2020-11-06T06:06:35.000Z" - }, - "end": { - "$date": "2020-11-06T06:10:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c77bd138-6f23-4ec3-9645-3c8e23f11193", - "start": { - "$date": "2020-11-06T06:10:35.000Z" - }, - "end": { - "$date": "2020-11-06T06:28:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b86eae26-4f4d-4ed5-bd63-da7cae92befd", - "start": { - "$date": "2020-11-06T06:28:35.000Z" - }, - "end": { - "$date": "2020-11-06T06:31:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f31e56e5-1501-4c1b-bb02-ff0d581a57f1", - "start": { - "$date": "2020-11-06T06:31:35.000Z" - }, - "end": { - "$date": "2020-11-06T04:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd12df2c-36f4-4422-8a26-e790719857d8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T00:46:16.000Z" - }, - "end": { - "$date": "2020-11-06T00:50:21.000Z" - }, - "events": [ - { - "uuid": "8ca46b01-0580-41d8-9360-b1702db2ef97", - "start": { - "$date": "2020-11-06T00:46:16.000Z" - }, - "end": { - "$date": "2020-11-06T00:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bfcb29f7-8807-4e47-af3c-a71d2e70ee18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T00:51:51.000Z" - }, - "end": { - "$date": "2020-11-06T00:53:56.000Z" - }, - "events": [ - { - "uuid": "84045476-207c-446a-9081-9609f2d82008", - "start": { - "$date": "2020-11-06T00:51:51.000Z" - }, - "end": { - "$date": "2020-11-06T00:53:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "236cf442-1e38-473a-8fd3-73ac9500cd95", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T00:55:42.000Z" - }, - "end": { - "$date": "2020-11-06T01:17:17.000Z" - }, - "events": [ - { - "uuid": "a016a90d-064b-4ea0-91e2-f1adf546cf0b", - "start": { - "$date": "2020-11-06T00:55:42.000Z" - }, - "end": { - "$date": "2020-11-06T01:17:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c97fe428-527d-4dfd-b629-9395a8c66f26", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-06T01:08:57.000Z" - }, - "end": { - "$date": "2020-11-06T01:16:53.000Z" - }, - "events": [ - { - "uuid": "c4b780f5-ceb2-4442-a696-06f6327d26fc", - "start": { - "$date": "2020-11-06T01:08:57.000Z" - }, - "end": { - "$date": "2020-11-06T01:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d363922a-6bf8-4926-9d01-1335e5f072bd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-06T01:10:30.000Z" - }, - "end": { - "$date": "2020-11-06T01:11:40.000Z" - }, - "events": [ - { - "uuid": "c245d476-cdb2-46db-a458-e8f3792e3965", - "start": { - "$date": "2020-11-06T01:10:30.000Z" - }, - "end": { - "$date": "2020-11-06T01:11:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ca187665-b4f3-4859-b3dd-b7c4d51b4e74", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-06T01:55:33.000Z" - }, - "end": { - "$date": "2020-11-06T03:00:16.000Z" - }, - "events": [ - { - "uuid": "ad1b41fc-7d25-4ad0-a363-0ed0ce1de89d", - "start": { - "$date": "2020-11-06T01:55:33.000Z" - }, - "end": { - "$date": "2020-11-06T03:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8c0676bb-e4bc-49ea-8f17-c9140b4e105a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-06T02:54:10.000Z" - }, - "end": { - "$date": "2020-11-06T03:00:20.000Z" - }, - "events": [ - { - "uuid": "d304a6f8-1910-4a31-8388-9182dc5ec99c", - "start": { - "$date": "2020-11-06T02:54:10.000Z" - }, - "end": { - "$date": "2020-11-06T03:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "aafa08e3-10b4-43b3-b40f-7c0d609bb23a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-06T03:01:20.000Z" - }, - "end": { - "$date": "2020-11-06T03:06:50.000Z" - }, - "events": [ - { - "uuid": "55863a3e-966c-4873-bd3d-15ab40366655", - "start": { - "$date": "2020-11-06T03:01:20.000Z" - }, - "end": { - "$date": "2020-11-06T03:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "811ff806-f984-4d98-a995-7009beaef42f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-06T03:06:56.000Z" - }, - "end": { - "$date": "2020-11-06T03:22:51.000Z" - }, - "events": [ - { - "uuid": "cb22b092-7970-4a2d-9e01-fad813923c54", - "start": { - "$date": "2020-11-06T03:06:56.000Z" - }, - "end": { - "$date": "2020-11-06T03:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b7e2d109-9147-4aad-85ff-af08a8660b9a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-06T03:09:37.000Z" - }, - "end": { - "$date": "2020-11-06T03:42:15.000Z" - }, - "events": [ - { - "uuid": "1442e702-dfc4-4fd7-9f9f-320a2606d510", - "start": { - "$date": "2020-11-06T03:09:37.000Z" - }, - "end": { - "$date": "2020-11-06T03:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "59e3ff4b-ece7-475d-a44c-57775dca3766", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-06T03:18:03.000Z" - }, - "end": { - "$date": "2020-11-06T03:19:18.000Z" - }, - "events": [ - { - "uuid": "0ebd513c-28a9-489e-9959-0d3ada95891a", - "start": { - "$date": "2020-11-06T03:18:03.000Z" - }, - "end": { - "$date": "2020-11-06T03:19:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cab65f7e-adec-4cc3-b334-15201358374e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-06T03:18:05.000Z" - }, - "end": { - "$date": "2020-11-06T03:20:00.000Z" - }, - "events": [ - { - "uuid": "77dda65a-6cb3-40cd-bd9c-813cd7812b95", - "start": { - "$date": "2020-11-06T03:18:05.000Z" - }, - "end": { - "$date": "2020-11-06T03:20:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3de72fbb-44fc-4d2d-bd20-c3254051d911", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-06T03:22:00.000Z" - }, - "end": { - "$date": "2020-11-06T03:35:27.000Z" - }, - "events": [ - { - "uuid": "1898c89b-1e2e-4082-82cd-2a29c03e444c", - "start": { - "$date": "2020-11-06T03:22:00.000Z" - }, - "end": { - "$date": "2020-11-06T03:35:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "88aa9ae1-270c-4ffa-8a8a-6433a2b8ee60", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-06T03:24:44.000Z" - }, - "end": { - "$date": "2020-11-06T04:01:28.000Z" - }, - "events": [ - { - "uuid": "7cb94cb3-a1ac-4734-b489-d76a9d67d4d9", - "start": { - "$date": "2020-11-06T03:24:44.000Z" - }, - "end": { - "$date": "2020-11-06T04:01:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "06d017d7-4894-4a0b-9293-01b47b0f6a60", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-06T03:27:03.000Z" - }, - "end": { - "$date": "2020-11-06T03:34:29.000Z" - }, - "events": [ - { - "uuid": "82c4399c-a722-4f12-9c15-19b5bd08064d", - "start": { - "$date": "2020-11-06T03:27:03.000Z" - }, - "end": { - "$date": "2020-11-06T03:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ee885750-b398-47b1-888e-63c3799492aa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-06T03:34:54.000Z" - }, - "end": { - "$date": "2020-11-06T03:37:10.000Z" - }, - "events": [ - { - "uuid": "549f0bdb-38b0-4563-b56f-68d7e23011fd", - "start": { - "$date": "2020-11-06T03:34:54.000Z" - }, - "end": { - "$date": "2020-11-06T03:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0b4971e7-9bd5-4e31-aa70-80d499ca2e35", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-06T03:35:52.000Z" - }, - "end": { - "$date": "2020-11-06T03:41:43.000Z" - }, - "events": [ - { - "uuid": "9422cae6-39f2-4f29-acf7-eb2989dcfba3", - "start": { - "$date": "2020-11-06T03:35:52.000Z" - }, - "end": { - "$date": "2020-11-06T03:41:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5a593501-c2ad-443a-b8ce-6ee3b40bb061", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-06T03:38:19.000Z" - }, - "end": { - "$date": "2020-11-06T03:39:30.000Z" - }, - "events": [ - { - "uuid": "06e15b96-d394-40e4-b8ae-3b0748605958", - "start": { - "$date": "2020-11-06T03:38:19.000Z" - }, - "end": { - "$date": "2020-11-06T03:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "3ce15c0b-68be-4e2b-a465-d7204938a3b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-06T03:42:13.000Z" - }, - "end": { - "$date": "2020-11-06T03:56:26.000Z" - }, - "events": [ - { - "uuid": "419ecfa7-2be1-4298-82a2-92be86430866", - "start": { - "$date": "2020-11-06T03:42:13.000Z" - }, - "end": { - "$date": "2020-11-06T03:56:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "21b313a4-9416-4884-8a1f-444ded5e8a18", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-06T03:42:31.000Z" - }, - "end": { - "$date": "2020-11-06T04:52:05.000Z" - }, - "events": [ - { - "uuid": "fdef6c0c-3fdc-4a06-9dc9-baf3a261cfe7", - "start": { - "$date": "2020-11-06T03:42:31.000Z" - }, - "end": { - "$date": "2020-11-06T04:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "ccf2caad-6598-4f35-a69a-6130cd9dd778", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-06T03:44:10.000Z" - }, - "end": { - "$date": "2020-11-06T04:51:10.000Z" - }, - "events": [ - { - "uuid": "3e29b00a-32e8-448c-8d69-173c5297b152", - "start": { - "$date": "2020-11-06T03:44:10.000Z" - }, - "end": { - "$date": "2020-11-06T04:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "2d7768a5-a790-428b-9789-9b36d308d460", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T03:55:54.000Z" - }, - "end": { - "$date": "2020-11-06T04:51:10.000Z" - }, - "events": [ - { - "uuid": "f2cb1495-0bdf-4ef4-a675-a0556f23a39c", - "start": { - "$date": "2020-11-06T03:55:54.000Z" - }, - "end": { - "$date": "2020-11-06T04:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e64649fe-d1fa-426a-9fdf-5c7121ba4b48", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-06T04:16:47.000Z" - }, - "end": { - "$date": "2020-11-06T06:58:43.000Z" - }, - "events": [ - { - "uuid": "2d3f85ed-59fb-49b5-93a5-6c2bbdd4dbd3", - "start": { - "$date": "2020-11-06T04:16:47.000Z" - }, - "end": { - "$date": "2020-11-06T06:42:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b56822c0-2317-4c6c-9f09-281b981d206a", - "start": { - "$date": "2020-11-06T06:42:47.000Z" - }, - "end": { - "$date": "2020-11-06T06:45:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1321b549-7794-44ef-a23b-7f3c6cbc206c", - "start": { - "$date": "2020-11-06T06:45:47.000Z" - }, - "end": { - "$date": "2020-11-06T06:49:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bbe1016e-3763-446f-a9c9-39fda3033ec0", - "start": { - "$date": "2020-11-06T06:49:47.000Z" - }, - "end": { - "$date": "2020-11-06T06:58:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "cc1bfcb7-73b9-4481-8713-021d576f9d19", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-06T04:46:21.000Z" - }, - "end": { - "$date": "2020-11-06T06:43:06.000Z" - }, - "events": [ - { - "uuid": "3405cb9e-45e1-446a-a892-bb4ad8dd3862", - "start": { - "$date": "2020-11-06T04:46:21.000Z" - }, - "end": { - "$date": "2020-11-06T06:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "27070c6f-1854-4bee-ae81-b410c1557108", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-06T04:52:39.000Z" - }, - "end": { - "$date": "2020-11-06T06:07:33.000Z" - }, - "events": [ - { - "uuid": "4827d1af-9a7b-4d55-8082-250ece5aa438", - "start": { - "$date": "2020-11-06T04:52:39.000Z" - }, - "end": { - "$date": "2020-11-06T06:07:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f0eb30f9-26da-4805-beca-b6227b7d41d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T04:53:07.000Z" - }, - "end": { - "$date": "2020-11-06T05:24:47.000Z" - }, - "events": [ - { - "uuid": "8c77e890-e65e-4af7-951f-cd7586136c26", - "start": { - "$date": "2020-11-06T04:53:07.000Z" - }, - "end": { - "$date": "2020-11-06T05:24:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f9e4aea-85b2-4c35-bfed-caaa545b8726", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-06T04:54:00.000Z" - }, - "end": { - "$date": "2020-11-06T05:24:52.000Z" - }, - "events": [ - { - "uuid": "331072da-f5f1-4810-a2d7-21b83247f13e", - "start": { - "$date": "2020-11-06T04:54:00.000Z" - }, - "end": { - "$date": "2020-11-06T05:24:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "648cbdfd-0749-4d3d-94e4-b193f523fcc7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-06T05:04:20.000Z" - }, - "end": { - "$date": "2020-11-06T05:10:27.000Z" - }, - "events": [ - { - "uuid": "b9fd8225-ef82-4996-ad33-7124f88cda48", - "start": { - "$date": "2020-11-06T05:04:20.000Z" - }, - "end": { - "$date": "2020-11-06T05:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "a0bee0ec-7d4d-4caa-9666-275baacf1cb8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-06T16:54:00.000Z" - }, - "end": { - "$date": "2020-11-06T17:13:50.000Z" - }, - "events": [ - { - "uuid": "e78c580c-784b-46e0-889b-ab7fbe8c2f13", - "start": { - "$date": "2020-11-06T16:54:00.000Z" - }, - "end": { - "$date": "2020-11-06T17:13:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aae1ad12-4d84-48b3-9527-ba58e7d581f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-06T19:15:02.000Z" - }, - "end": { - "$date": "2020-11-06T19:41:10.000Z" - }, - "events": [ - { - "uuid": "8194f740-ea7c-4631-a929-a16fb60c3e36", - "start": { - "$date": "2020-11-06T19:15:02.000Z" - }, - "end": { - "$date": "2020-11-06T19:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92256399-b948-475b-9b60-1315c2764eb4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-06T19:44:42.000Z" - }, - "end": { - "$date": "2020-11-06T20:21:25.000Z" - }, - "events": [ - { - "uuid": "9d49566e-bf85-4f2e-8081-a5e2b29932df", - "start": { - "$date": "2020-11-06T19:44:42.000Z" - }, - "end": { - "$date": "2020-11-06T20:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "07ebcb5c-ee5d-49c0-b0ef-0f2ea4f6c33b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-06T20:39:31.000Z" - }, - "end": { - "$date": "2020-11-06T20:49:15.000Z" - }, - "events": [ - { - "uuid": "196cbf8e-8332-45cd-9bfb-ca3192ac988b", - "start": { - "$date": "2020-11-06T20:39:31.000Z" - }, - "end": { - "$date": "2020-11-06T20:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "630d69d1-d3be-4a6f-9ef8-2b1cf3782c98", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-06T21:22:29.000Z" - }, - "end": { - "$date": "2020-11-06T22:33:00.000Z" - }, - "events": [ - { - "uuid": "9dc032da-cbc2-4427-b68b-8ae63cba5216", - "start": { - "$date": "2020-11-06T21:22:29.000Z" - }, - "end": { - "$date": "2020-11-06T22:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "459661b7-38b1-497f-81e8-058f9611e920", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T22:35:32.000Z" - }, - "end": { - "$date": "2020-11-06T22:37:06.000Z" - }, - "events": [ - { - "uuid": "30fc81c8-7911-43d0-8022-7557c6737c76", - "start": { - "$date": "2020-11-06T22:35:32.000Z" - }, - "end": { - "$date": "2020-11-06T22:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e775eea7-3014-49d8-96eb-cd1fb743537e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T22:37:37.000Z" - }, - "end": { - "$date": "2020-11-06T22:58:42.000Z" - }, - "events": [ - { - "uuid": "845791f0-82bc-4bb2-be17-1e20940b80bf", - "start": { - "$date": "2020-11-06T22:37:37.000Z" - }, - "end": { - "$date": "2020-11-06T22:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "b2db9d9a-119b-4c6b-bb2c-14a267440756", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-06T22:42:26.000Z" - }, - "end": { - "$date": "2020-11-06T23:55:28.000Z" - }, - "events": [ - { - "uuid": "bcc229d2-67ae-4c3f-aa98-a9b6068b2b4c", - "start": { - "$date": "2020-11-06T22:42:26.000Z" - }, - "end": { - "$date": "2020-11-06T23:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "282ec0fe-9c1d-4425-8106-7efc14f389fe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T23:00:13.000Z" - }, - "end": { - "$date": "2020-11-06T23:45:53.000Z" - }, - "events": [ - { - "uuid": "6f634b5a-5735-4041-a248-26b9bdda592a", - "start": { - "$date": "2020-11-06T23:00:13.000Z" - }, - "end": { - "$date": "2020-11-06T23:45:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2c50ad06-e4c3-4990-9708-60015de78b62", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-06T23:14:54.000Z" - }, - "end": { - "$date": "2020-11-07T02:30:12.000Z" - }, - "events": [ - { - "uuid": "a195d85e-74fc-4746-a37c-42dda0272829", - "start": { - "$date": "2020-11-06T23:14:54.000Z" - }, - "end": { - "$date": "2020-11-06T23:39:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "751a25cd-1711-4f5f-8260-517d0cd1ac16", - "start": { - "$date": "2020-11-06T23:39:54.000Z" - }, - "end": { - "$date": "2020-11-06T23:40:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "452a7946-1248-493c-bbfd-6ea5b6f90bc7", - "start": { - "$date": "2020-11-06T23:40:54.000Z" - }, - "end": { - "$date": "2020-11-07T01:19:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b542071-e92f-4eee-97e6-7a5c2d58a8cc", - "start": { - "$date": "2020-11-07T01:19:54.000Z" - }, - "end": { - "$date": "2020-11-07T01:26:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "936c32fb-7f78-4486-b2e9-45ab469e9f2a", - "start": { - "$date": "2020-11-07T01:26:54.000Z" - }, - "end": { - "$date": "2020-11-07T02:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f6b8bf54-f29f-4364-9446-b6c2b81028a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-06T23:49:20.000Z" - }, - "end": { - "$date": "2020-11-07T00:08:59.000Z" - }, - "events": [ - { - "uuid": "7a076066-21c5-4fb9-939c-fc78edc22b02", - "start": { - "$date": "2020-11-06T23:49:20.000Z" - }, - "end": { - "$date": "2020-11-07T00:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4d4de0aa-2fad-416e-b10a-f813830b216a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-07T00:03:18.000Z" - }, - "end": { - "$date": "2020-11-07T00:21:48.000Z" - }, - "events": [ - { - "uuid": "e40ca8f5-dbd5-4960-aca8-280571786a12", - "start": { - "$date": "2020-11-07T00:03:18.000Z" - }, - "end": { - "$date": "2020-11-07T00:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "557cc0f6-d912-4491-b96b-ad0154f41269", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-07T00:06:15.000Z" - }, - "end": { - "$date": "2020-11-07T01:44:42.000Z" - }, - "events": [ - { - "uuid": "c562eef1-570e-4858-b726-452ae975f7b8", - "start": { - "$date": "2020-11-07T00:06:15.000Z" - }, - "end": { - "$date": "2020-11-07T01:44:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "38fde55f-c0a4-42d6-97b3-059de4a8d84e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-07T00:06:37.000Z" - }, - "end": { - "$date": "2020-11-07T01:00:41.000Z" - }, - "events": [ - { - "uuid": "1a3c2f96-dd41-4f64-bed6-6f9b0cd7cf21", - "start": { - "$date": "2020-11-07T00:06:37.000Z" - }, - "end": { - "$date": "2020-11-07T01:00:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7963bd75-9619-4c1f-99e6-eb5604c5f511", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T00:34:23.000Z" - }, - "end": { - "$date": "2020-11-07T00:59:38.000Z" - }, - "events": [ - { - "uuid": "cec08b50-3bc7-4173-b453-7af291d95e6c", - "start": { - "$date": "2020-11-07T00:34:23.000Z" - }, - "end": { - "$date": "2020-11-07T00:59:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "776abba0-97dd-4a30-947b-4c111ad827da", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-07T01:47:15.000Z" - }, - "end": { - "$date": "2020-11-07T02:09:21.000Z" - }, - "events": [ - { - "uuid": "326a7893-18c3-4ba4-87ca-72bb67dc5901", - "start": { - "$date": "2020-11-07T01:47:15.000Z" - }, - "end": { - "$date": "2020-11-07T02:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "7c72c3b1-af30-4d7a-aac9-0f9126431db5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-07T02:13:39.000Z" - }, - "end": { - "$date": "2020-11-07T09:33:26.000Z" - }, - "events": [ - { - "uuid": "7cbbe2f4-4bb2-42d1-b4d3-f09094218a1c", - "start": { - "$date": "2020-11-07T02:13:39.000Z" - }, - "end": { - "$date": "2020-11-07T09:33:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "c0f2d0e9-d77f-4d1c-aa1e-aa03a8902afa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-07T02:18:01.000Z" - }, - "end": { - "$date": "2020-11-07T09:30:22.000Z" - }, - "events": [ - { - "uuid": "bb98e0d2-fe23-4e48-9f2b-7cea2e9e6441", - "start": { - "$date": "2020-11-07T02:18:01.000Z" - }, - "end": { - "$date": "2020-11-07T09:30:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2e5c07e5-103c-4ada-a5f3-55f2f80c3d64", - "uuid": "758f244a-b514-43e8-8243-52c7801fe634", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-07T02:22:10.000Z" - }, - "end": { - "$date": "2020-11-07T03:47:13.000Z" - }, - "events": [ - { - "uuid": "0007e147-a15a-43f1-ac64-fc953335acc1", - "start": { - "$date": "2020-11-07T02:22:10.000Z" - }, - "end": { - "$date": "2020-11-07T03:47:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "2e8834ed-c41c-42b6-b2ec-67dfc50fcb32", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-07T02:24:55.000Z" - }, - "end": { - "$date": "2020-11-07T04:41:32.000Z" - }, - "events": [ - { - "uuid": "fe02ccd8-f157-45a0-a69d-98559d46162e", - "start": { - "$date": "2020-11-07T02:24:55.000Z" - }, - "end": { - "$date": "2020-11-07T04:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8c4f353c-e78f-4773-91a5-80b0cda292c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-07T02:38:27.000Z" - }, - "end": { - "$date": "2020-11-07T02:50:07.000Z" - }, - "events": [ - { - "uuid": "1e92ad8b-17d1-40a4-ae74-41fb934a0a7b", - "start": { - "$date": "2020-11-07T02:38:27.000Z" - }, - "end": { - "$date": "2020-11-07T02:50:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "898fda77-b7c4-4871-97c4-fce6ff95082e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T02:39:50.000Z" - }, - "end": { - "$date": "2020-11-07T03:14:41.000Z" - }, - "events": [ - { - "uuid": "b906ebb7-34cb-4197-bda7-1b0f9ac72564", - "start": { - "$date": "2020-11-07T02:39:50.000Z" - }, - "end": { - "$date": "2020-11-07T03:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "adea9775-2744-4bc7-ba55-34b79ccc69dc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-07T02:50:37.000Z" - }, - "end": { - "$date": "2020-11-07T09:30:10.000Z" - }, - "events": [ - { - "uuid": "34e2ef6c-57c6-4e76-849c-540bf1fe0cf0", - "start": { - "$date": "2020-11-07T02:50:37.000Z" - }, - "end": { - "$date": "2020-11-07T09:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "26cf415a-a032-4a36-bcb8-fbccb4a5d632", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-07T03:13:07.000Z" - }, - "end": { - "$date": "2020-11-07T07:52:16.000Z" - }, - "events": [ - { - "uuid": "9d148546-9694-4c56-a34f-77b66683d2a9", - "start": { - "$date": "2020-11-07T03:13:07.000Z" - }, - "end": { - "$date": "2020-11-07T05:21:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea7b01fe-b45a-44fb-bebc-cf6f4eb0940b", - "start": { - "$date": "2020-11-07T05:21:07.000Z" - }, - "end": { - "$date": "2020-11-07T05:28:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edff756c-d1b7-490e-9c70-e4beb1ac917d", - "start": { - "$date": "2020-11-07T05:28:07.000Z" - }, - "end": { - "$date": "2020-11-07T07:52:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2a9dc858-c5a5-4bf8-8cf7-09569d15fb72", - "uuid": "60a51081-02ab-46ca-8a8d-e0bed0d1eb03", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T03:14:51.000Z" - }, - "end": { - "$date": "2020-11-07T06:05:50.000Z" - }, - "events": [ - { - "uuid": "ffbe6e43-cfad-4cd5-bad6-9a9f5c8ac79a", - "start": { - "$date": "2020-11-07T03:14:51.000Z" - }, - "end": { - "$date": "2020-11-07T06:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "9c696a9a-ba32-4aff-be3f-def9f9dc5ea7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-07T03:50:12.000Z" - }, - "end": { - "$date": "2020-11-07T03:55:19.000Z" - }, - "events": [ - { - "uuid": "5042ca8d-25a7-47d1-80a3-485ff5d20208", - "start": { - "$date": "2020-11-07T03:50:12.000Z" - }, - "end": { - "$date": "2020-11-07T03:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d136ee51-2554-4753-82ce-b233c2a7d4f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-07T04:15:26.000Z" - }, - "end": { - "$date": "2020-11-07T06:20:15.000Z" - }, - "events": [ - { - "uuid": "5623322a-5d18-4d90-a6ed-367f65043069", - "start": { - "$date": "2020-11-07T04:15:26.000Z" - }, - "end": { - "$date": "2020-11-07T06:20:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ff365214-5535-4e6e-afa8-d11b935bf4ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-07T04:58:47.000Z" - }, - "end": { - "$date": "2020-11-07T05:13:34.000Z" - }, - "events": [ - { - "uuid": "7520e3c9-b186-4a00-b2e3-71bdf0bb767d", - "start": { - "$date": "2020-11-07T04:58:47.000Z" - }, - "end": { - "$date": "2020-11-07T05:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7120120a-af15-4dfb-b247-8342a3433585", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-07T05:14:44.000Z" - }, - "end": { - "$date": "2020-11-07T07:02:02.000Z" - }, - "events": [ - { - "uuid": "3c3ca01a-3186-413a-be4d-2d73f552e43f", - "start": { - "$date": "2020-11-07T05:14:44.000Z" - }, - "end": { - "$date": "2020-11-07T07:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cf907503-cd00-4d93-aa14-d9c815b5c5db", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-07T05:26:15.000Z" - }, - "end": { - "$date": "2020-11-07T07:06:56.000Z" - }, - "events": [ - { - "uuid": "7cd52fe9-4462-4b50-a5c1-77ae24533132", - "start": { - "$date": "2020-11-07T05:26:15.000Z" - }, - "end": { - "$date": "2020-11-07T07:06:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "50ea9a17-b9c6-48ee-81cf-9c5f12be9a7c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-07T06:20:39.000Z" - }, - "end": { - "$date": "2020-11-07T06:38:51.000Z" - }, - "events": [ - { - "uuid": "f18a580c-2e48-4058-b02f-2e8c8f36ea7c", - "start": { - "$date": "2020-11-07T06:20:39.000Z" - }, - "end": { - "$date": "2020-11-07T06:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "675bf356-af83-47f4-b411-bbbf7ba582ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-07T06:39:10.000Z" - }, - "end": { - "$date": "2020-11-07T07:01:51.000Z" - }, - "events": [ - { - "uuid": "2bb35062-8a51-4d93-95ae-512de7da8d85", - "start": { - "$date": "2020-11-07T06:39:10.000Z" - }, - "end": { - "$date": "2020-11-07T07:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "ca53f986-93f0-4633-a19d-6b182fc94431", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-07T08:41:44.000Z" - }, - "end": { - "$date": "2020-11-07T08:45:54.000Z" - }, - "events": [ - { - "uuid": "83069b1c-2aa5-4647-843e-15705838567a", - "start": { - "$date": "2020-11-07T08:41:44.000Z" - }, - "end": { - "$date": "2020-11-07T08:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "0b80acb5-63d9-450e-9889-f664f57963ed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-07T08:46:14.000Z" - }, - "end": { - "$date": "2020-11-07T08:51:14.000Z" - }, - "events": [ - { - "uuid": "9009dcbe-3949-4814-af90-718eca4e244a", - "start": { - "$date": "2020-11-07T08:46:14.000Z" - }, - "end": { - "$date": "2020-11-07T08:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5da11c2f-953e-4bc4-b894-82aa87c7ffc7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-07T08:51:54.000Z" - }, - "end": { - "$date": "2020-11-07T09:05:33.000Z" - }, - "events": [ - { - "uuid": "372a0326-3bbe-418c-84a8-9a1ea3213bff", - "start": { - "$date": "2020-11-07T08:51:54.000Z" - }, - "end": { - "$date": "2020-11-07T09:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "eb269819-d8e3-444c-81b7-1048012c4c63", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-07T09:31:01.000Z" - }, - "end": { - "$date": "2020-11-07T09:33:16.000Z" - }, - "events": [ - { - "uuid": "344982f8-4c56-49ba-9760-23a13fddda1b", - "start": { - "$date": "2020-11-07T09:31:01.000Z" - }, - "end": { - "$date": "2020-11-07T09:33:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "4f3de473-ccf4-4c66-be86-6018ba204d0f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-07T09:31:01.000Z" - }, - "end": { - "$date": "2020-11-07T09:33:06.000Z" - }, - "events": [ - { - "uuid": "e4b4fb56-d462-4c02-b77b-21f7839ce6d2", - "start": { - "$date": "2020-11-07T09:31:01.000Z" - }, - "end": { - "$date": "2020-11-07T09:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "6bdaacfb-fcb5-4277-a504-54505f8b73e4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T15:07:26.000Z" - }, - "end": { - "$date": "2020-11-07T16:59:02.000Z" - }, - "events": [ - { - "uuid": "d9dc2bcb-ab95-4cc7-a75f-9661d0a4b953", - "start": { - "$date": "2020-11-07T15:07:26.000Z" - }, - "end": { - "$date": "2020-11-07T16:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f06c766b-a874-4766-a49e-da17e58da3f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T15:22:52.000Z" - }, - "end": { - "$date": "2020-11-07T15:33:54.000Z" - }, - "events": [ - { - "uuid": "2e2834a0-9c6c-4293-99c8-4c6335193938", - "start": { - "$date": "2020-11-07T15:22:52.000Z" - }, - "end": { - "$date": "2020-11-07T15:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f2f0ba04-53ad-48dd-86eb-b5ddc427901b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T16:33:32.000Z" - }, - "end": { - "$date": "2020-11-07T16:37:57.000Z" - }, - "events": [ - { - "uuid": "f15a2f5f-b70c-4920-9759-9f9b1d5269f1", - "start": { - "$date": "2020-11-07T16:33:32.000Z" - }, - "end": { - "$date": "2020-11-07T16:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "9ebb19ce-b8d2-4d71-a579-3cddb572e594", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T16:38:52.000Z" - }, - "end": { - "$date": "2020-11-07T17:18:18.000Z" - }, - "events": [ - { - "uuid": "61b07ba9-68b8-4496-ab91-a536fd8873e2", - "start": { - "$date": "2020-11-07T16:38:52.000Z" - }, - "end": { - "$date": "2020-11-07T17:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "de161ec7-7d62-4d9a-9b09-fe91b4980521", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T17:06:04.000Z" - }, - "end": { - "$date": "2020-11-07T17:21:08.000Z" - }, - "events": [ - { - "uuid": "4a458aba-ad4b-4b78-9cae-07eeb3ddf1c2", - "start": { - "$date": "2020-11-07T17:06:04.000Z" - }, - "end": { - "$date": "2020-11-07T17:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f4c0b3b0-7d96-448f-aaa6-798f66aa668f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T17:24:38.000Z" - }, - "end": { - "$date": "2020-11-07T18:03:51.000Z" - }, - "events": [ - { - "uuid": "5dae56df-3b33-46a2-b66a-8ea01a46b281", - "start": { - "$date": "2020-11-07T17:24:38.000Z" - }, - "end": { - "$date": "2020-11-07T18:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "18947622-c833-4673-92ed-09731b5598f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T17:25:34.000Z" - }, - "end": { - "$date": "2020-11-07T17:27:49.000Z" - }, - "events": [ - { - "uuid": "8b48c6a1-46e6-41b7-8dc8-60f30719aa82", - "start": { - "$date": "2020-11-07T17:25:34.000Z" - }, - "end": { - "$date": "2020-11-07T17:27:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "739a5c29-7155-4888-b541-43130c3ff436", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T17:27:59.000Z" - }, - "end": { - "$date": "2020-11-07T18:03:25.000Z" - }, - "events": [ - { - "uuid": "aa4dbe29-81d8-48a9-b6c8-fee4d0641794", - "start": { - "$date": "2020-11-07T17:27:59.000Z" - }, - "end": { - "$date": "2020-11-07T18:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2be06229-ca73-4b8f-bd29-b3ef7b349715", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T18:36:39.000Z" - }, - "end": { - "$date": "2020-11-07T18:53:14.000Z" - }, - "events": [ - { - "uuid": "325137bb-722e-4d47-baf7-fc8636d45044", - "start": { - "$date": "2020-11-07T18:36:39.000Z" - }, - "end": { - "$date": "2020-11-07T18:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "4fc7fca0-7dfb-4fbc-a320-72f47fd98a26", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T19:09:30.000Z" - }, - "end": { - "$date": "2020-11-07T19:18:11.000Z" - }, - "events": [ - { - "uuid": "1fa83611-7a4d-4c81-9a40-a54714c1c976", - "start": { - "$date": "2020-11-07T19:09:30.000Z" - }, - "end": { - "$date": "2020-11-07T19:18:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "2f70ff45-1550-4b23-b860-28b0d26ee372", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-07T19:10:34.000Z" - }, - "end": { - "$date": "2020-11-07T19:20:26.000Z" - }, - "events": [ - { - "uuid": "443ccd3e-e943-4094-abb6-2286b56696bf", - "start": { - "$date": "2020-11-07T19:10:34.000Z" - }, - "end": { - "$date": "2020-11-07T19:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "d76c8ce3-c38e-4eaf-8361-ee2dd89405eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-07T19:34:30.000Z" - }, - "end": { - "$date": "2020-11-08T02:39:29.000Z" - }, - "events": [ - { - "uuid": "7478106c-43b1-42bd-b8b0-bbe91a9b9dfd", - "start": { - "$date": "2020-11-07T19:34:30.000Z" - }, - "end": { - "$date": "2020-11-08T02:39:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c9275b60-9401-4542-a886-e43a18d68b3a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-07T19:44:37.000Z" - }, - "end": { - "$date": "2020-11-07T20:26:36.000Z" - }, - "events": [ - { - "uuid": "191a5c84-272a-4b83-b79a-dd2e796275c4", - "start": { - "$date": "2020-11-07T19:44:37.000Z" - }, - "end": { - "$date": "2020-11-07T20:26:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c87d22ba-8c3f-47c6-8cd3-963f5de7e10e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T19:49:13.000Z" - }, - "end": { - "$date": "2020-11-07T19:50:53.000Z" - }, - "events": [ - { - "uuid": "4d2f2e90-2fbf-4995-9d9f-9a972093d6a0", - "start": { - "$date": "2020-11-07T19:49:13.000Z" - }, - "end": { - "$date": "2020-11-07T19:50:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e41bab35-2516-4548-8407-ecafaa954aa3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T20:13:05.000Z" - }, - "end": { - "$date": "2020-11-07T22:55:11.000Z" - }, - "events": [ - { - "uuid": "f3e9ffd5-2a76-465f-bfa9-4197587920ac", - "start": { - "$date": "2020-11-07T20:13:05.000Z" - }, - "end": { - "$date": "2020-11-07T22:55:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "31de04a1-9671-42b3-b817-c19ffa85d77b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-07T20:28:07.000Z" - }, - "end": { - "$date": "2020-11-07T21:15:33.000Z" - }, - "events": [ - { - "uuid": "cf3892a2-9f3b-45b3-8315-fcffbabc8c9c", - "start": { - "$date": "2020-11-07T20:28:07.000Z" - }, - "end": { - "$date": "2020-11-07T21:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "de1ec939-a35c-4f98-b49f-5867ebee3921", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-07T21:32:52.000Z" - }, - "end": { - "$date": "2020-11-08T02:12:18.000Z" - }, - "events": [ - { - "uuid": "08d7ec0b-4d50-4ea0-912f-fab7a86a1891", - "start": { - "$date": "2020-11-07T21:32:52.000Z" - }, - "end": { - "$date": "2020-11-07T23:01:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "420d5a8e-2253-43a1-86d4-96d678b7d8d1", - "start": { - "$date": "2020-11-07T23:01:52.000Z" - }, - "end": { - "$date": "2020-11-07T23:02:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53539312-efe9-4277-bdc8-bca053ab8f0b", - "start": { - "$date": "2020-11-07T23:02:52.000Z" - }, - "end": { - "$date": "2020-11-07T23:12:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "162b7d01-ac9e-4ee7-afbe-178c1aa1a2ca", - "start": { - "$date": "2020-11-07T23:12:52.000Z" - }, - "end": { - "$date": "2020-11-08T01:59:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "422b04e0-3dba-4615-8f7b-a12c1dd6a2ea", - "start": { - "$date": "2020-11-08T01:59:52.000Z" - }, - "end": { - "$date": "2020-11-08T02:03:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b08a7627-eeeb-46ce-bca3-4d6dcbed7260", - "start": { - "$date": "2020-11-08T02:03:52.000Z" - }, - "end": { - "$date": "2020-11-08T02:12:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "082854b4-6f9c-470a-88cb-8cb8da9e7cc8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-07T21:34:43.000Z" - }, - "end": { - "$date": "2020-11-07T23:29:58.000Z" - }, - "events": [ - { - "uuid": "2119ffd3-6ac0-478b-9c8b-1ac09e20525d", - "start": { - "$date": "2020-11-07T21:34:43.000Z" - }, - "end": { - "$date": "2020-11-07T23:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b8203ead-f1b8-41d5-831d-3f636d97f439", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-07T23:37:51.000Z" - }, - "end": { - "$date": "2020-11-07T23:38:06.000Z" - }, - "events": [ - { - "uuid": "f71a9f22-af8c-4521-b607-1c106e7f63d3", - "start": { - "$date": "2020-11-07T23:37:51.000Z" - }, - "end": { - "$date": "2020-11-07T23:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "533e9736-34a8-471a-81e6-3ea97d156e66", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-07T22:47:32.000Z" - }, - "end": { - "$date": "2020-11-08T00:33:29.000Z" - }, - "events": [ - { - "uuid": "3e7aab1b-8197-451d-bc66-3b8cbf59c589", - "start": { - "$date": "2020-11-07T22:47:32.000Z" - }, - "end": { - "$date": "2020-11-07T23:05:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "065c4b9e-d5c6-4480-bd8b-00ecc2a9fdbe", - "start": { - "$date": "2020-11-07T23:05:32.000Z" - }, - "end": { - "$date": "2020-11-08T00:33:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ee18464f-8cfe-47c9-8bc4-5851980df0ba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-07T23:08:03.000Z" - }, - "end": { - "$date": "2020-11-08T00:34:37.000Z" - }, - "events": [ - { - "uuid": "13f682a6-7760-4fa7-b0b0-6479ab7ded6c", - "start": { - "$date": "2020-11-07T23:08:03.000Z" - }, - "end": { - "$date": "2020-11-08T00:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "1ac343a7-9645-4534-a2ad-525176a9d738", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-07T23:16:23.000Z" - }, - "end": { - "$date": "2020-11-07T23:35:13.000Z" - }, - "events": [ - { - "uuid": "bf05ced1-8a38-4955-8314-6b0007cfb038", - "start": { - "$date": "2020-11-07T23:16:23.000Z" - }, - "end": { - "$date": "2020-11-07T23:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9daa1666-af3f-407e-94c1-810ff8add464", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-07T23:21:22.000Z" - }, - "end": { - "$date": "2020-11-08T00:24:40.000Z" - }, - "events": [ - { - "uuid": "ce815f1f-793c-446c-afb7-2b666812fafb", - "start": { - "$date": "2020-11-07T23:21:22.000Z" - }, - "end": { - "$date": "2020-11-08T00:24:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e7d69ffe-a884-458f-b51f-0413644deaaa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-07T23:38:21.000Z" - }, - "end": { - "$date": "2020-11-08T00:34:36.000Z" - }, - "events": [ - { - "uuid": "e3efd74e-8af5-4a56-b63a-dc18c13b5845", - "start": { - "$date": "2020-11-07T23:38:21.000Z" - }, - "end": { - "$date": "2020-11-08T00:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ea3408ac-29e1-4391-ae60-babc0809bc1b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-08T00:12:35.000Z" - }, - "end": { - "$date": "2020-11-08T01:29:47.000Z" - }, - "events": [ - { - "uuid": "9198da0f-e70a-4889-9b05-37a0727110c5", - "start": { - "$date": "2020-11-08T00:12:35.000Z" - }, - "end": { - "$date": "2020-11-08T01:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "1f1c9171-02b6-406e-b427-0364c117fa90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-08T00:26:27.000Z" - }, - "end": { - "$date": "2020-11-08T01:12:24.000Z" - }, - "events": [ - { - "uuid": "2146e289-5866-452f-8aa8-0d8e538a79a6", - "start": { - "$date": "2020-11-08T00:26:27.000Z" - }, - "end": { - "$date": "2020-11-08T01:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fc2428b7-294b-4964-8e06-12dc4de96f71", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T00:34:51.000Z" - }, - "end": { - "$date": "2020-11-08T01:58:49.000Z" - }, - "events": [ - { - "uuid": "9fdb938f-23fa-4d4a-8179-f9566e64c17d", - "start": { - "$date": "2020-11-08T00:34:51.000Z" - }, - "end": { - "$date": "2020-11-08T01:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "06e21d99-2438-4f53-8e93-a675b240681c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T00:35:35.000Z" - }, - "end": { - "$date": "2020-11-08T00:56:40.000Z" - }, - "events": [ - { - "uuid": "d8488004-6104-43e5-b493-e22de080f184", - "start": { - "$date": "2020-11-08T00:35:35.000Z" - }, - "end": { - "$date": "2020-11-08T00:56:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "addd2735-0e58-46f6-8d43-437560a10a82", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-08T00:42:12.000Z" - }, - "end": { - "$date": "2020-11-08T01:59:13.000Z" - }, - "events": [ - { - "uuid": "da1f62e4-850e-403a-bac4-0c921c323f5b", - "start": { - "$date": "2020-11-08T00:42:12.000Z" - }, - "end": { - "$date": "2020-11-08T01:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "31642394-8e01-42ec-bf6d-e8411079010b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T01:22:27.000Z" - }, - "end": { - "$date": "2020-11-08T01:25:33.000Z" - }, - "events": [ - { - "uuid": "c90e7cf0-5c4e-4bce-aae1-708394cb2265", - "start": { - "$date": "2020-11-08T01:22:27.000Z" - }, - "end": { - "$date": "2020-11-08T01:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3a9df56c-7e8c-49e9-8601-ebac53c30a1d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T01:25:43.000Z" - }, - "end": { - "$date": "2020-11-08T01:28:28.000Z" - }, - "events": [ - { - "uuid": "7b579e34-1085-4d78-bcb9-063abf4bf814", - "start": { - "$date": "2020-11-08T01:25:43.000Z" - }, - "end": { - "$date": "2020-11-08T01:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e9d8378f-1d90-44a5-94cf-a286fb4944b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T01:30:03.000Z" - }, - "end": { - "$date": "2020-11-08T01:53:48.000Z" - }, - "events": [ - { - "uuid": "0f300cd6-da8f-47c1-bbf1-3349c152fb8e", - "start": { - "$date": "2020-11-08T01:30:03.000Z" - }, - "end": { - "$date": "2020-11-08T01:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5ce00376-6720-4730-b876-9f206442f50c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-08T01:34:28.000Z" - }, - "end": { - "$date": "2020-11-08T02:27:19.000Z" - }, - "events": [ - { - "uuid": "a8c32129-a4e4-44ea-aae2-a8374152a3fb", - "start": { - "$date": "2020-11-08T01:34:28.000Z" - }, - "end": { - "$date": "2020-11-08T02:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d1d7365e-7650-46b2-842c-c0689dc9abac", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-08T01:44:39.000Z" - }, - "end": { - "$date": "2020-11-08T02:01:06.000Z" - }, - "events": [ - { - "uuid": "8618a7c0-d328-47f8-946a-a1c2bb83174c", - "start": { - "$date": "2020-11-08T01:44:39.000Z" - }, - "end": { - "$date": "2020-11-08T02:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b110ab2a-ec03-47ef-ac53-77f5a5ee780a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-08T02:13:09.000Z" - }, - "end": { - "$date": "2020-11-08T05:08:25.000Z" - }, - "events": [ - { - "uuid": "6c55bad9-b9f1-4460-89a7-30bb8f926d95", - "start": { - "$date": "2020-11-08T02:13:09.000Z" - }, - "end": { - "$date": "2020-11-08T05:08:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c67407b3-3acd-4c36-abc5-fad287fb934a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T02:28:16.000Z" - }, - "end": { - "$date": "2020-11-08T02:53:22.000Z" - }, - "events": [ - { - "uuid": "29af8858-b893-4f69-a4df-ef5354d74668", - "start": { - "$date": "2020-11-08T02:28:16.000Z" - }, - "end": { - "$date": "2020-11-08T02:53:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d2620f71-c969-4cd0-9627-451c951a3903", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-08T02:30:05.000Z" - }, - "end": { - "$date": "2020-11-08T05:08:37.000Z" - }, - "events": [ - { - "uuid": "b7dd937b-b79d-408b-a8ba-dc60b72b039a", - "start": { - "$date": "2020-11-08T02:30:05.000Z" - }, - "end": { - "$date": "2020-11-08T05:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5e7fecf3-e135-444a-8682-282bcfd88ca8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-08T03:01:46.000Z" - }, - "end": { - "$date": "2020-11-08T04:02:00.000Z" - }, - "events": [ - { - "uuid": "00d6b2b5-9f18-4312-bcf4-65d3ceb64d80", - "start": { - "$date": "2020-11-08T03:01:46.000Z" - }, - "end": { - "$date": "2020-11-08T04:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56bc94b5-770a-4a90-b442-83df2d075f5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T03:59:17.000Z" - }, - "end": { - "$date": "2020-11-08T03:59:24.000Z" - }, - "events": [ - { - "uuid": "7eab75b6-e8aa-4a9c-88bf-356efd7eb166", - "start": { - "$date": "2020-11-08T03:59:17.000Z" - }, - "end": { - "$date": "2020-11-08T03:59:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f2a5a609-e484-4819-89d1-6531b133b176", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-08T03:51:40.000Z" - }, - "end": { - "$date": "2020-11-08T08:22:28.000Z" - }, - "events": [ - { - "uuid": "8b767e67-006f-4805-920f-d0a5eb95a883", - "start": { - "$date": "2020-11-08T03:51:40.000Z" - }, - "end": { - "$date": "2020-11-08T07:14:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3833725d-95bd-4542-96fc-f9602f1d10e0", - "start": { - "$date": "2020-11-08T07:14:40.000Z" - }, - "end": { - "$date": "2020-11-08T07:18:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c7715d68-f493-424d-8ada-294c4690a198", - "start": { - "$date": "2020-11-08T07:18:40.000Z" - }, - "end": { - "$date": "2020-11-08T08:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "30d48110-a070-4cc7-bfda-44fc6d2a592a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T04:00:22.000Z" - }, - "end": { - "$date": "2020-11-08T04:26:05.000Z" - }, - "events": [ - { - "uuid": "6f913f87-f6fd-4f25-bc7f-f0d85d225100", - "start": { - "$date": "2020-11-08T04:00:22.000Z" - }, - "end": { - "$date": "2020-11-08T04:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "477079d5-690e-4f36-bec9-2812d37b1e25", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-08T04:00:41.000Z" - }, - "end": { - "$date": "2020-11-08T04:42:26.000Z" - }, - "events": [ - { - "uuid": "a1502fcf-315b-43dc-b901-59286ffca7d2", - "start": { - "$date": "2020-11-08T04:00:41.000Z" - }, - "end": { - "$date": "2020-11-08T04:42:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "42fa0dd0-863f-4b3c-8c5a-19c251336c9b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T04:26:58.000Z" - }, - "end": { - "$date": "2020-11-08T05:08:35.000Z" - }, - "events": [ - { - "uuid": "b2d6aa16-529d-429a-8cc2-271323d41192", - "start": { - "$date": "2020-11-08T04:26:58.000Z" - }, - "end": { - "$date": "2020-11-08T05:08:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2a9dc858-c5a5-4bf8-8cf7-09569d15fb72", - "uuid": "8d74f0ca-2bcc-46f5-aeb8-d5085c1beff5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-08T04:13:12.000Z" - }, - "end": { - "$date": "2020-11-08T04:20:32.000Z" - }, - "events": [ - { - "uuid": "de825166-7d8c-4cec-9ad9-3a64232c0fdb", - "start": { - "$date": "2020-11-08T04:13:12.000Z" - }, - "end": { - "$date": "2020-11-08T04:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b873b3e-b833-401d-9e4d-08a9bc4b534e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T04:31:40.000Z" - }, - "end": { - "$date": "2020-11-08T04:51:26.000Z" - }, - "events": [ - { - "uuid": "b6fe504d-01f0-46a5-ac7d-b8d5388e3717", - "start": { - "$date": "2020-11-08T04:31:40.000Z" - }, - "end": { - "$date": "2020-11-08T04:51:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "529f7aa5-55ca-45fb-86dd-ea03fb9b1a1d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T04:55:16.000Z" - }, - "end": { - "$date": "2020-11-08T05:16:52.000Z" - }, - "events": [ - { - "uuid": "124c5be0-5faa-4668-81ec-bd98952fd364", - "start": { - "$date": "2020-11-08T04:55:16.000Z" - }, - "end": { - "$date": "2020-11-08T05:16:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "620ec2da-b726-482a-bfeb-8750aed72736", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2020-11-08T04:58:27.000Z" - }, - "end": { - "$date": "2020-11-08T05:00:16.000Z" - }, - "events": [ - { - "uuid": "94952128-3f1c-48a1-a0b3-0f1c0a3a4d46", - "start": { - "$date": "2020-11-08T04:58:27.000Z" - }, - "end": { - "$date": "2020-11-08T05:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "d0781870-57ad-4ad8-b438-d2c02803db5b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2020-11-08T05:01:47.000Z" - }, - "end": { - "$date": "2020-11-08T05:05:56.000Z" - }, - "events": [ - { - "uuid": "4275c9f6-ee63-4414-bde8-3938414e86de", - "start": { - "$date": "2020-11-08T05:01:47.000Z" - }, - "end": { - "$date": "2020-11-08T05:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b9a6519a-e2e0-4199-bc1e-667e7f4e6b7a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T05:11:40.000Z" - }, - "end": { - "$date": "2020-11-08T07:08:55.000Z" - }, - "events": [ - { - "uuid": "5d8d49c9-c9c6-4b0e-92b9-02c1bbb6ef1c", - "start": { - "$date": "2020-11-08T05:11:40.000Z" - }, - "end": { - "$date": "2020-11-08T07:08:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d53c3b14-19bc-4e61-b432-158696be36b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-08T05:12:12.000Z" - }, - "end": { - "$date": "2020-11-08T07:08:29.000Z" - }, - "events": [ - { - "uuid": "228f4c1a-9c81-4625-9739-765ec4582283", - "start": { - "$date": "2020-11-08T05:12:12.000Z" - }, - "end": { - "$date": "2020-11-08T07:08:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c2c09fbd-8b05-4cc3-88ed-6a269a6c8b89", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-08T05:13:59.000Z" - }, - "end": { - "$date": "2020-11-08T05:24:15.000Z" - }, - "events": [ - { - "uuid": "c183834f-8b78-43a2-8ca4-0847d522c1dc", - "start": { - "$date": "2020-11-08T05:13:59.000Z" - }, - "end": { - "$date": "2020-11-08T05:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "80e6f9c1-ca02-4d7f-9703-6cf0cd6d4614", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T05:17:22.000Z" - }, - "end": { - "$date": "2020-11-08T07:08:35.000Z" - }, - "events": [ - { - "uuid": "6b5788c9-069c-4286-9730-6e429146098f", - "start": { - "$date": "2020-11-08T05:17:22.000Z" - }, - "end": { - "$date": "2020-11-08T07:08:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "b594e848-2d5a-4298-a408-5c89d6a21f3a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2020-11-08T05:31:05.000Z" - }, - "end": { - "$date": "2020-11-08T06:33:16.000Z" - }, - "events": [ - { - "uuid": "05c758de-9ce2-4846-b534-2456079b83f5", - "start": { - "$date": "2020-11-08T05:31:05.000Z" - }, - "end": { - "$date": "2020-11-08T06:33:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "fccfe61f-93ae-4386-ac56-e13eb071239e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-08T05:49:45.000Z" - }, - "end": { - "$date": "2020-11-08T08:18:09.000Z" - }, - "events": [ - { - "uuid": "87151df0-0050-4e5a-a412-6196bcbfffae", - "start": { - "$date": "2020-11-08T05:49:45.000Z" - }, - "end": { - "$date": "2020-11-08T08:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7c463560-5d51-4e15-bb2d-7f99175f6965", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-08T06:09:32.000Z" - }, - "end": { - "$date": "2020-11-08T06:27:43.000Z" - }, - "events": [ - { - "uuid": "23e992e3-a1b5-49d7-acc1-061c59f0c677", - "start": { - "$date": "2020-11-08T06:09:32.000Z" - }, - "end": { - "$date": "2020-11-08T06:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a078eb4a-8d78-4685-adfd-b7b986ebe6a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T07:14:26.000Z" - }, - "end": { - "$date": "2020-11-08T08:59:12.000Z" - }, - "events": [ - { - "uuid": "b69444d3-f782-4b5c-b668-96c662941d47", - "start": { - "$date": "2020-11-08T07:14:26.000Z" - }, - "end": { - "$date": "2020-11-08T08:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5f1293ee-fa47-4283-b960-ed7596fa04fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-08T07:17:10.000Z" - }, - "end": { - "$date": "2020-11-08T09:07:55.000Z" - }, - "events": [ - { - "uuid": "681c1675-29db-49a8-b8ad-8ddff8f3c660", - "start": { - "$date": "2020-11-08T07:17:10.000Z" - }, - "end": { - "$date": "2020-11-08T09:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "873be68d-cf2b-448d-93ee-f2a6aa318ea8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-08T07:21:01.000Z" - }, - "end": { - "$date": "2020-11-08T09:07:58.000Z" - }, - "events": [ - { - "uuid": "dc2ab9c2-7934-49c8-b76b-411d596cc1c1", - "start": { - "$date": "2020-11-08T07:21:01.000Z" - }, - "end": { - "$date": "2020-11-08T09:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd3a1c05-5d47-4c7f-8ec9-20e6e27fdd16", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T07:24:22.000Z" - }, - "end": { - "$date": "2020-11-08T08:58:29.000Z" - }, - "events": [ - { - "uuid": "20e23fd3-215c-4646-8818-7ac8de12685f", - "start": { - "$date": "2020-11-08T07:24:22.000Z" - }, - "end": { - "$date": "2020-11-08T08:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8569d736-fc50-4195-bd11-e78387a90e45", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-08T15:38:10.000Z" - }, - "end": { - "$date": "2020-11-08T18:46:27.000Z" - }, - "events": [ - { - "uuid": "e2f8d368-0a2f-453c-9556-f49b3a9bd4ef", - "start": { - "$date": "2020-11-08T15:38:10.000Z" - }, - "end": { - "$date": "2020-11-08T18:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0402eea5-1778-4a83-b49c-3349ff491f08", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-08T17:20:53.000Z" - }, - "end": { - "$date": "2020-11-08T17:54:17.000Z" - }, - "events": [ - { - "uuid": "3fb3eb01-e907-4925-9b9b-bb48174ce04d", - "start": { - "$date": "2020-11-08T17:20:53.000Z" - }, - "end": { - "$date": "2020-11-08T17:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "86da675d-0af0-456d-9f64-9b8b917e58f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T17:48:48.000Z" - }, - "end": { - "$date": "2020-11-08T18:45:40.000Z" - }, - "events": [ - { - "uuid": "d9ed68ed-29eb-442e-ae97-49cf55995b72", - "start": { - "$date": "2020-11-08T17:48:48.000Z" - }, - "end": { - "$date": "2020-11-08T18:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "0ee3bfc5-975d-4fb2-88fe-fc2b0745f010", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-08T18:13:07.000Z" - }, - "end": { - "$date": "2020-11-08T18:22:53.000Z" - }, - "events": [ - { - "uuid": "39d36b7f-db52-4cf5-aae8-af968604b1a6", - "start": { - "$date": "2020-11-08T18:13:07.000Z" - }, - "end": { - "$date": "2020-11-08T18:22:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "bca11978-1e97-4903-bd29-9a66aeaf6103", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-08T19:23:50.000Z" - }, - "end": { - "$date": "2020-11-08T21:31:56.000Z" - }, - "events": [ - { - "uuid": "58fedb02-b4a0-4f65-b227-74a965eddd25", - "start": { - "$date": "2020-11-08T19:23:50.000Z" - }, - "end": { - "$date": "2020-11-08T21:31:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e7e030f8-8801-4f4e-ab0d-a3a84257d485", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T20:03:27.000Z" - }, - "end": { - "$date": "2020-11-08T20:08:08.000Z" - }, - "events": [ - { - "uuid": "6484691a-0e6f-4248-af6a-4a84426e37ca", - "start": { - "$date": "2020-11-08T20:03:27.000Z" - }, - "end": { - "$date": "2020-11-08T20:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "70505d84-1407-45c4-b7ba-938f4ec0dbc3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-08T20:05:30.000Z" - }, - "end": { - "$date": "2020-11-08T20:49:12.000Z" - }, - "events": [ - { - "uuid": "b5d89041-b20b-43f9-9298-6fec515ba400", - "start": { - "$date": "2020-11-08T20:05:30.000Z" - }, - "end": { - "$date": "2020-11-08T20:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0dd8906d-7d10-480f-9598-fdf3db13e412", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T20:05:56.000Z" - }, - "end": { - "$date": "2020-11-08T21:39:50.000Z" - }, - "events": [ - { - "uuid": "201d4922-5b6c-4b40-9e28-461348321c23", - "start": { - "$date": "2020-11-08T20:05:56.000Z" - }, - "end": { - "$date": "2020-11-08T21:06:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0970590a-bc5e-47d9-a3f2-d6234e9192f7", - "start": { - "$date": "2020-11-08T21:06:56.000Z" - }, - "end": { - "$date": "2020-11-08T21:17:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d0a15c8-70d7-4c20-ad28-8f56fcfd2b69", - "start": { - "$date": "2020-11-08T21:17:56.000Z" - }, - "end": { - "$date": "2020-11-08T21:20:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba10f5db-f1b9-4bf9-a00c-1e589074d267", - "start": { - "$date": "2020-11-08T21:20:56.000Z" - }, - "end": { - "$date": "2020-11-08T21:37:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be6ab772-fdbc-4bcb-a282-71f63cb838ef", - "start": { - "$date": "2020-11-08T21:37:56.000Z" - }, - "end": { - "$date": "2020-11-08T21:39:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "bd4a9844-8ef7-4e09-864f-160d03114f5f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-08T20:06:18.000Z" - }, - "end": { - "$date": "2020-11-08T20:49:36.000Z" - }, - "events": [ - { - "uuid": "b97001cb-a742-4245-8150-9125eb524411", - "start": { - "$date": "2020-11-08T20:06:18.000Z" - }, - "end": { - "$date": "2020-11-08T20:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ca216e0-3b00-4322-9cc7-42398cc73f13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-08T20:08:18.000Z" - }, - "end": { - "$date": "2020-11-08T20:31:33.000Z" - }, - "events": [ - { - "uuid": "5839b644-ba02-4abc-81c6-a8a8abcd8748", - "start": { - "$date": "2020-11-08T20:08:18.000Z" - }, - "end": { - "$date": "2020-11-08T20:31:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a1d9e902-7f00-411d-a04f-2c9a2377fa53", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-08T20:47:10.000Z" - }, - "end": { - "$date": "2020-11-08T23:08:51.000Z" - }, - "events": [ - { - "uuid": "0e434f8e-640b-48d8-835e-b2a70f99f289", - "start": { - "$date": "2020-11-08T20:47:10.000Z" - }, - "end": { - "$date": "2020-11-08T23:08:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "8d8f4b6f-1897-4173-9915-904a7b0509f8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-08T21:06:53.000Z" - }, - "end": { - "$date": "2020-11-08T22:02:56.000Z" - }, - "events": [ - { - "uuid": "5193ad4f-a951-4245-aa6c-ab10f717c1fd", - "start": { - "$date": "2020-11-08T21:06:53.000Z" - }, - "end": { - "$date": "2020-11-08T22:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c3fc2dfd-4cc8-45b8-acea-41e145697ec6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T22:02:46.000Z" - }, - "end": { - "$date": "2020-11-08T22:36:15.000Z" - }, - "events": [ - { - "uuid": "00dc0ca4-b51c-4daa-a1e9-99e4282d0079", - "start": { - "$date": "2020-11-08T22:02:46.000Z" - }, - "end": { - "$date": "2020-11-08T22:36:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4d834a17-3f1c-444a-99f7-64983c7a24a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T22:03:23.000Z" - }, - "end": { - "$date": "2020-11-08T22:36:16.000Z" - }, - "events": [ - { - "uuid": "9dc9c885-a5a6-4d14-b7be-908445ac58f6", - "start": { - "$date": "2020-11-08T22:03:23.000Z" - }, - "end": { - "$date": "2020-11-08T22:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c589c300-4490-4b9c-995f-7656dd5e98fa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-08T22:03:25.000Z" - }, - "end": { - "$date": "2020-11-08T22:36:57.000Z" - }, - "events": [ - { - "uuid": "23673959-701e-4a85-9399-0bb84fe1a3c2", - "start": { - "$date": "2020-11-08T22:03:25.000Z" - }, - "end": { - "$date": "2020-11-08T22:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f378aa5f-c206-4f90-976c-17f7da1b7ff4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-08T22:30:45.000Z" - }, - "end": { - "$date": "2020-11-08T23:24:14.000Z" - }, - "events": [ - { - "uuid": "8d421e75-a688-4e89-ad41-3ec9614d7f96", - "start": { - "$date": "2020-11-08T22:30:45.000Z" - }, - "end": { - "$date": "2020-11-08T23:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3d47689f-baf1-42d2-9ff0-47491fd789aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-08T22:36:58.000Z" - }, - "end": { - "$date": "2020-11-08T23:23:47.000Z" - }, - "events": [ - { - "uuid": "3dbfd6eb-07af-4a59-9aab-f075a86488bf", - "start": { - "$date": "2020-11-08T22:36:58.000Z" - }, - "end": { - "$date": "2020-11-08T23:23:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "da7a34b3-2b42-47cc-9a20-31bda8a56cbe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-08T22:36:51.000Z" - }, - "end": { - "$date": "2020-11-08T23:24:07.000Z" - }, - "events": [ - { - "uuid": "f5ffb0c4-1810-4318-a6cd-44f0a5869952", - "start": { - "$date": "2020-11-08T22:36:51.000Z" - }, - "end": { - "$date": "2020-11-08T23:24:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "745425a7-ce0a-45f9-82fc-42655e21c9fb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-08T22:40:32.000Z" - }, - "end": { - "$date": "2020-11-08T23:24:11.000Z" - }, - "events": [ - { - "uuid": "6af91b86-c13d-4f50-a74e-cdbf3023164c", - "start": { - "$date": "2020-11-08T22:40:32.000Z" - }, - "end": { - "$date": "2020-11-08T23:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "8a57d8e4-e752-408c-b310-4108e1e855a9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-08T23:25:29.000Z" - }, - "end": { - "$date": "2020-11-09T02:11:06.000Z" - }, - "events": [ - { - "uuid": "95e1a377-1f9d-467f-894e-1f5b9bdf2bdf", - "start": { - "$date": "2020-11-08T23:25:29.000Z" - }, - "end": { - "$date": "2020-11-09T02:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "96d31f83-e61e-4e11-9265-3af9e67fee8d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-08T23:31:13.000Z" - }, - "end": { - "$date": "2020-11-09T00:22:18.000Z" - }, - "events": [ - { - "uuid": "d44dd805-c410-4c37-9a10-9f39e5475ba9", - "start": { - "$date": "2020-11-08T23:31:13.000Z" - }, - "end": { - "$date": "2020-11-09T00:22:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3903c30b-e902-4130-85a5-197cbf088b07", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-08T23:58:07.000Z" - }, - "end": { - "$date": "2020-11-09T06:11:25.000Z" - }, - "events": [ - { - "uuid": "6e92c868-342d-4ee8-a1da-5e8980ca3eff", - "start": { - "$date": "2020-11-08T23:58:07.000Z" - }, - "end": { - "$date": "2020-11-09T00:46:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "362a8438-77da-4bc0-9f00-d06093308d65", - "start": { - "$date": "2020-11-09T00:46:07.000Z" - }, - "end": { - "$date": "2020-11-09T00:52:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6af19871-fdb5-4703-8165-f032d588ac96", - "start": { - "$date": "2020-11-09T00:52:07.000Z" - }, - "end": { - "$date": "2020-11-09T01:02:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f7804e5-a22a-4918-a29f-33c3ecbc4302", - "start": { - "$date": "2020-11-09T01:02:07.000Z" - }, - "end": { - "$date": "2020-11-09T01:05:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d07bdcf-212c-4868-bf8d-6977ca9b18ac", - "start": { - "$date": "2020-11-09T01:05:07.000Z" - }, - "end": { - "$date": "2020-11-09T03:31:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d73f48c-4485-404c-ac69-e3d0ffb8e211", - "start": { - "$date": "2020-11-09T03:31:07.000Z" - }, - "end": { - "$date": "2020-11-09T03:36:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3ecd1bca-b948-42d7-8ef3-b3a278300933", - "start": { - "$date": "2020-11-09T03:36:07.000Z" - }, - "end": { - "$date": "2020-11-09T06:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c2ffed19-202e-43de-8bc5-1110b4de80ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-09T00:14:25.000Z" - }, - "end": { - "$date": "2020-11-09T00:32:31.000Z" - }, - "events": [ - { - "uuid": "c72f56b5-91fa-4178-a383-e77dd22dcdfd", - "start": { - "$date": "2020-11-09T00:14:25.000Z" - }, - "end": { - "$date": "2020-11-09T00:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9135e24a-3020-4ac9-9e5e-067c7a536df7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-09T00:29:48.000Z" - }, - "end": { - "$date": "2020-11-09T02:05:14.000Z" - }, - "events": [ - { - "uuid": "1b368eca-33c0-40ac-b872-014471446a25", - "start": { - "$date": "2020-11-09T00:29:48.000Z" - }, - "end": { - "$date": "2020-11-09T02:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4967b6a7-0520-429a-954d-aa2dd1e5305b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-09T00:32:46.000Z" - }, - "end": { - "$date": "2020-11-09T02:43:55.000Z" - }, - "events": [ - { - "uuid": "09fee750-fa6e-4b07-99c8-2a35071735c9", - "start": { - "$date": "2020-11-09T00:32:46.000Z" - }, - "end": { - "$date": "2020-11-09T02:43:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "694d8474-02d8-4538-b394-cf596fc20253", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-09T01:01:02.000Z" - }, - "end": { - "$date": "2020-11-09T01:21:22.000Z" - }, - "events": [ - { - "uuid": "768d549e-cf74-4a7d-94df-141c9026066e", - "start": { - "$date": "2020-11-09T01:01:02.000Z" - }, - "end": { - "$date": "2020-11-09T01:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "b25a681b-e51b-42b9-b2c2-90856b9d2fd9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-09T02:59:24.000Z" - }, - "end": { - "$date": "2020-11-09T05:30:03.000Z" - }, - "events": [ - { - "uuid": "d076e506-f97f-4075-ab24-93d6a8f83bd0", - "start": { - "$date": "2020-11-09T02:59:24.000Z" - }, - "end": { - "$date": "2020-11-09T05:30:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3cfa2579-c91f-46e1-ba3c-afde593c7507", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-09T03:07:39.000Z" - }, - "end": { - "$date": "2020-11-09T04:50:58.000Z" - }, - "events": [ - { - "uuid": "db8e242b-108e-4611-9295-76807ec158e5", - "start": { - "$date": "2020-11-09T03:07:39.000Z" - }, - "end": { - "$date": "2020-11-09T04:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e5608dbb-4425-441e-b994-50307544f0c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-09T03:31:26.000Z" - }, - "end": { - "$date": "2020-11-09T04:09:07.000Z" - }, - "events": [ - { - "uuid": "5f239d58-02a8-48f6-a7e6-ae5361796832", - "start": { - "$date": "2020-11-09T03:31:26.000Z" - }, - "end": { - "$date": "2020-11-09T04:09:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "7ef934bd-1775-4498-8138-96a609c450ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-09T04:02:15.000Z" - }, - "end": { - "$date": "2020-11-09T07:11:50.000Z" - }, - "events": [ - { - "uuid": "27f86dbe-1eec-41e1-a0e0-048e190a6c9b", - "start": { - "$date": "2020-11-09T04:02:15.000Z" - }, - "end": { - "$date": "2020-11-09T07:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8575a5e3-541e-438f-9817-279cb3947506", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-09T04:04:02.000Z" - }, - "end": { - "$date": "2020-11-09T04:30:37.000Z" - }, - "events": [ - { - "uuid": "c46ca802-c18b-4c64-99e6-a36678726317", - "start": { - "$date": "2020-11-09T04:04:02.000Z" - }, - "end": { - "$date": "2020-11-09T04:30:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "b5088bdb-c93c-4e1c-971f-9bd7d098442c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-09T04:51:13.000Z" - }, - "end": { - "$date": "2020-11-09T07:27:07.000Z" - }, - "events": [ - { - "uuid": "1eb5b369-2e73-4a64-8013-593fab35d49c", - "start": { - "$date": "2020-11-09T04:51:13.000Z" - }, - "end": { - "$date": "2020-11-09T07:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "49a85dc6-2b45-4495-9cf9-d5fe8dedf6a5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-09T04:53:10.000Z" - }, - "end": { - "$date": "2020-11-09T07:28:57.000Z" - }, - "events": [ - { - "uuid": "9334696a-5428-4196-b784-f1cae3be9c12", - "start": { - "$date": "2020-11-09T04:53:10.000Z" - }, - "end": { - "$date": "2020-11-09T07:28:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "cc08cbba-8019-4205-a82a-926695a79ed2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-09T04:56:24.000Z" - }, - "end": { - "$date": "2020-11-09T07:28:54.000Z" - }, - "events": [ - { - "uuid": "41bdd744-07c2-4ea3-b30e-3925f226374f", - "start": { - "$date": "2020-11-09T04:56:24.000Z" - }, - "end": { - "$date": "2020-11-09T07:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "442e0982-b67b-40ec-93e3-bce3c5bc9b9c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-09T07:02:03.000Z" - }, - "end": { - "$date": "2020-11-09T07:16:14.000Z" - }, - "events": [ - { - "uuid": "c421d453-9a33-4189-84ba-c1dc0d464888", - "start": { - "$date": "2020-11-09T07:02:03.000Z" - }, - "end": { - "$date": "2020-11-09T07:16:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "24261af9-204d-44d1-834b-21f2e1660a10", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T17:53:01.000Z" - }, - "events": [ - { - "uuid": "79b58101-06bc-4eb5-89c3-1bbbe52106e1", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T17:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "41f1e11d-8d5c-470a-8054-c43043c2c6ed", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T17:55:48.000Z" - }, - "events": [ - { - "uuid": "03e8bc1b-4785-4463-85a0-fc8b9310dd2f", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T17:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "9c9a46de-52ea-4187-8eca-9544f1e113c6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T17:57:59.000Z" - }, - "events": [ - { - "uuid": "d0e34c1c-db89-4c0d-b42c-64abeec42e40", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T17:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "e7433374-95f8-44f0-8da3-4702e063afea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T18:02:43.000Z" - }, - "events": [ - { - "uuid": "717e7c5b-8553-43dc-812d-1e0147654ba8", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T18:02:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "d2c1f6f5-1181-49aa-994e-547d0054e24c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-09T18:02:05.000Z" - }, - "end": { - "$date": "2020-11-09T18:36:26.000Z" - }, - "events": [ - { - "uuid": "cdcaf53a-2a3e-48b7-9efe-680662b14b3a", - "start": { - "$date": "2020-11-09T18:02:05.000Z" - }, - "end": { - "$date": "2020-11-09T18:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "06210ea8-59f9-4aa2-ab6a-8c3313182c89", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T18:13:08.000Z" - }, - "events": [ - { - "uuid": "24f373d3-d7bf-452d-bcab-0ac85510bd33", - "start": { - "$date": "2020-11-09T16:12:17.000Z" - }, - "end": { - "$date": "2020-11-09T18:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1f1aff4b-a0be-4393-a591-a142caecf7c4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-09T19:19:33.000Z" - }, - "end": { - "$date": "2020-11-09T20:08:24.000Z" - }, - "events": [ - { - "uuid": "4b79a10f-604c-40cd-9c7e-852ae301ee5c", - "start": { - "$date": "2020-11-09T19:19:33.000Z" - }, - "end": { - "$date": "2020-11-09T20:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "979d49b0-935a-4e66-a857-fe7f1f439e43", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-09T20:41:29.000Z" - }, - "end": { - "$date": "2020-11-09T20:46:12.000Z" - }, - "events": [ - { - "uuid": "5eabbe69-9d49-45cc-aa66-2670aaa68538", - "start": { - "$date": "2020-11-09T20:41:29.000Z" - }, - "end": { - "$date": "2020-11-09T20:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ece52112-4316-4113-ae1a-3868f4917711", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-09T22:09:46.000Z" - }, - "end": { - "$date": "2020-11-09T23:36:08.000Z" - }, - "events": [ - { - "uuid": "1857f48c-e566-46f9-8356-c19af08279d2", - "start": { - "$date": "2020-11-09T22:09:46.000Z" - }, - "end": { - "$date": "2020-11-09T23:36:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c9b4c1d8-74cd-4c29-a0b3-363482f3105d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-09T23:39:22.000Z" - }, - "end": { - "$date": "2020-11-09T23:50:34.000Z" - }, - "events": [ - { - "uuid": "c2754606-8ac7-4156-bc4f-3b6a059dcfd1", - "start": { - "$date": "2020-11-09T23:39:22.000Z" - }, - "end": { - "$date": "2020-11-09T23:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "18d4693f-cd85-4d8f-9aeb-f47e4c59ab65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-09T23:50:43.000Z" - }, - "end": { - "$date": "2020-11-10T00:31:39.000Z" - }, - "events": [ - { - "uuid": "8a8cd8b1-c981-499f-b239-23ecc0c6a30c", - "start": { - "$date": "2020-11-09T23:50:43.000Z" - }, - "end": { - "$date": "2020-11-10T00:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "21cce177-b142-49df-aa9a-525a4d7fb12b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-09T23:54:06.000Z" - }, - "end": { - "$date": "2020-11-10T00:28:35.000Z" - }, - "events": [ - { - "uuid": "1523256d-1dab-4c57-a73d-93b703f507f0", - "start": { - "$date": "2020-11-09T23:54:06.000Z" - }, - "end": { - "$date": "2020-11-10T00:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cbcf6fa-11c6-4af4-a0f7-f9d3d3036c46", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-10T00:06:03.000Z" - }, - "end": { - "$date": "2020-11-10T00:33:06.000Z" - }, - "events": [ - { - "uuid": "ae53ce9b-6deb-4861-8b13-6b16206ce79c", - "start": { - "$date": "2020-11-10T00:06:03.000Z" - }, - "end": { - "$date": "2020-11-10T00:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "9fab0a5b-3283-4e52-a0c2-938d45053cc5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-10T00:34:06.000Z" - }, - "end": { - "$date": "2020-11-10T02:01:09.000Z" - }, - "events": [ - { - "uuid": "57ba3b76-e383-4251-8651-b874b1363d16", - "start": { - "$date": "2020-11-10T00:34:06.000Z" - }, - "end": { - "$date": "2020-11-10T02:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "70bb1c9a-4dbe-40a4-848d-6bf4598af9aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-10T00:46:00.000Z" - }, - "end": { - "$date": "2020-11-10T01:08:06.000Z" - }, - "events": [ - { - "uuid": "4b9e2816-b877-4956-9f3a-094228a507a4", - "start": { - "$date": "2020-11-10T00:46:00.000Z" - }, - "end": { - "$date": "2020-11-10T01:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6f3629ea-4195-4aef-b6da-b5c47ec98466", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-10T01:24:27.000Z" - }, - "end": { - "$date": "2020-11-10T06:14:00.000Z" - }, - "events": [ - { - "uuid": "2800cca2-0aba-4575-93bc-93367db4fafe", - "start": { - "$date": "2020-11-10T01:24:27.000Z" - }, - "end": { - "$date": "2020-11-10T01:44:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5941ad1d-da49-4ad1-9ed2-fd4a4ee391ef", - "start": { - "$date": "2020-11-10T01:44:27.000Z" - }, - "end": { - "$date": "2020-11-10T01:50:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea0dcb5a-e91e-46b8-962f-d1db7eedac15", - "start": { - "$date": "2020-11-10T01:50:27.000Z" - }, - "end": { - "$date": "2020-11-10T06:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff21efd2-cc10-4331-afa2-9f6836763871", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-10T01:42:12.000Z" - }, - "end": { - "$date": "2020-11-10T01:57:18.000Z" - }, - "events": [ - { - "uuid": "9d9517d2-1126-4eec-a626-126ce06a2538", - "start": { - "$date": "2020-11-10T01:42:12.000Z" - }, - "end": { - "$date": "2020-11-10T01:57:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9903f26a-9a94-4c8e-afe4-0160e4023323", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T02:07:10.000Z" - }, - "end": { - "$date": "2020-11-10T15:53:14.000Z" - }, - "events": [ - { - "uuid": "a8463231-06c6-4ac5-8e8b-07f3e6424736", - "start": { - "$date": "2020-11-10T02:07:10.000Z" - }, - "end": { - "$date": "2020-11-10T08:22:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c271caf6-343c-49ad-a3e3-73cc5fe83905", - "start": { - "$date": "2020-11-10T08:22:10.000Z" - }, - "end": { - "$date": "2020-11-10T08:27:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ab3c82b2-a3c8-4b3a-b23a-8e1fb11e5b2e", - "start": { - "$date": "2020-11-10T08:27:10.000Z" - }, - "end": { - "$date": "2020-11-10T08:37:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d155048-5795-4c72-ae77-33aadad5d4a8", - "start": { - "$date": "2020-11-10T08:37:10.000Z" - }, - "end": { - "$date": "2020-11-10T13:37:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "845a0fe9-8f3a-425a-82db-7d600299f4c1", - "start": { - "$date": "2020-11-10T13:37:10.000Z" - }, - "end": { - "$date": "2020-11-10T13:47:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d6ad1c5e-3755-4d02-b297-4962a0256b4c", - "start": { - "$date": "2020-11-10T13:47:10.000Z" - }, - "end": { - "$date": "2020-11-10T15:50:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ea11101-5d2a-4b06-8f4a-687db26d9315", - "start": { - "$date": "2020-11-10T15:50:10.000Z" - }, - "end": { - "$date": "2020-11-10T15:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a0641698-ea08-4b62-914c-a3eae38e867d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-10T02:15:25.000Z" - }, - "end": { - "$date": "2020-11-10T03:25:04.000Z" - }, - "events": [ - { - "uuid": "24dddefd-b148-4162-bde3-1997300b3a5c", - "start": { - "$date": "2020-11-10T02:15:25.000Z" - }, - "end": { - "$date": "2020-11-10T03:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "2915640a-0a1a-4930-95b0-4bf29ff8046b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-10T03:04:10.000Z" - }, - "end": { - "$date": "2020-11-10T06:33:19.000Z" - }, - "events": [ - { - "uuid": "7a22a68d-07cd-4f5a-874b-bf34808cc1a1", - "start": { - "$date": "2020-11-10T03:04:10.000Z" - }, - "end": { - "$date": "2020-11-10T06:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "63d71539-b859-4205-992c-c8bb78de5c39", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-10T03:05:30.000Z" - }, - "end": { - "$date": "2020-11-10T06:32:55.000Z" - }, - "events": [ - { - "uuid": "b20e1e64-918b-4c1d-a62e-f866b47f3bf3", - "start": { - "$date": "2020-11-10T03:05:30.000Z" - }, - "end": { - "$date": "2020-11-10T06:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "1f0cd260-5bca-4898-8af1-c7d61e2269fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-10T03:07:41.000Z" - }, - "end": { - "$date": "2020-11-10T06:32:43.000Z" - }, - "events": [ - { - "uuid": "62199ddc-d0c3-468c-a506-7194eabe78ed", - "start": { - "$date": "2020-11-10T03:07:41.000Z" - }, - "end": { - "$date": "2020-11-10T06:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b8a1b6e9-5e75-4b68-8f0f-cf9a412888f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-10T03:30:53.000Z" - }, - "end": { - "$date": "2020-11-10T05:17:28.000Z" - }, - "events": [ - { - "uuid": "c43116a2-0f36-4f51-a878-78e396c07915", - "start": { - "$date": "2020-11-10T03:30:53.000Z" - }, - "end": { - "$date": "2020-11-10T05:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f8569040-c1af-4823-bc8b-48daba3ce131", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-10T03:33:23.000Z" - }, - "end": { - "$date": "2020-11-10T03:57:55.000Z" - }, - "events": [ - { - "uuid": "114e0280-7ee7-4ce2-981e-b16f0e66c1ae", - "start": { - "$date": "2020-11-10T03:33:23.000Z" - }, - "end": { - "$date": "2020-11-10T03:57:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0179a0b4-82f9-4b9c-b527-0c05c3caf76e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-10T04:13:18.000Z" - }, - "end": { - "$date": "2020-11-10T05:20:28.000Z" - }, - "events": [ - { - "uuid": "1e1e722e-bcf6-4c47-b861-cdddba5ccf61", - "start": { - "$date": "2020-11-10T04:13:18.000Z" - }, - "end": { - "$date": "2020-11-10T05:20:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2f7f28aa-e783-4948-aa28-5eb3b587df65", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-10T04:29:24.000Z" - }, - "end": { - "$date": "2020-11-10T04:36:40.000Z" - }, - "events": [ - { - "uuid": "b7efccef-e18d-4117-9329-408d0ff8508b", - "start": { - "$date": "2020-11-10T04:29:24.000Z" - }, - "end": { - "$date": "2020-11-10T04:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "578a0ed9-2fad-4b38-8a04-03a96c586f4f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-10T04:34:46.000Z" - }, - "end": { - "$date": "2020-11-10T07:17:42.000Z" - }, - "events": [ - { - "uuid": "1f54d61b-36a5-48ef-931a-47dc8859e16d", - "start": { - "$date": "2020-11-10T04:34:46.000Z" - }, - "end": { - "$date": "2020-11-10T07:17:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "15c4bbb1-e313-488a-8c43-4691ed25fefe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-10T04:35:52.000Z" - }, - "end": { - "$date": "2020-11-10T05:01:31.000Z" - }, - "events": [ - { - "uuid": "9760cb16-43bb-47ba-9c0e-99a1712a6cff", - "start": { - "$date": "2020-11-10T04:35:52.000Z" - }, - "end": { - "$date": "2020-11-10T05:01:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "d8397563-2636-4f4b-a753-e49850f40634", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-10T05:47:51.000Z" - }, - "end": { - "$date": "2020-11-10T10:34:04.000Z" - }, - "events": [ - { - "uuid": "0b99958b-982b-44d8-a1b4-eb4aed522207", - "start": { - "$date": "2020-11-10T05:47:51.000Z" - }, - "end": { - "$date": "2020-11-10T10:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "677142aa-afd6-47dd-be0f-090a5c096cd9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-10T06:35:09.000Z" - }, - "end": { - "$date": "2020-11-10T06:39:44.000Z" - }, - "events": [ - { - "uuid": "ad090814-0155-49da-a8ed-f582e40cbe4a", - "start": { - "$date": "2020-11-10T06:35:09.000Z" - }, - "end": { - "$date": "2020-11-10T06:39:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "22076e73-2200-49ca-a264-3b912b86668e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-11-10T15:37:41.000Z" - }, - "end": { - "$date": "2020-11-10T18:04:41.000Z" - }, - "events": [ - { - "uuid": "8cbec0af-c1ed-482e-9a08-f6a9e8482b43", - "start": { - "$date": "2020-11-10T15:37:41.000Z" - }, - "end": { - "$date": "2020-11-10T18:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5f92e169-2845-47bd-befd-f8b84d3422e7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T16:29:13.000Z" - }, - "end": { - "$date": "2020-11-10T16:31:29.000Z" - }, - "events": [ - { - "uuid": "07cf2d6d-c320-4224-83fe-04982393d119", - "start": { - "$date": "2020-11-10T16:29:13.000Z" - }, - "end": { - "$date": "2020-11-10T16:31:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "73cec713-1567-46f8-b407-25921740f5f7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-10T16:30:45.000Z" - }, - "end": { - "$date": "2020-11-10T16:32:21.000Z" - }, - "events": [ - { - "uuid": "a4107188-3771-43b1-98d4-68e535402990", - "start": { - "$date": "2020-11-10T16:30:45.000Z" - }, - "end": { - "$date": "2020-11-10T16:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "b4d009ac-916e-41af-8142-d21d97d757dc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T16:36:24.000Z" - }, - "end": { - "$date": "2020-11-10T17:34:41.000Z" - }, - "events": [ - { - "uuid": "6c996c6f-6147-4e78-b4fc-180cf5e78a85", - "start": { - "$date": "2020-11-10T16:36:24.000Z" - }, - "end": { - "$date": "2020-11-10T17:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2ef00291-2a80-491e-a071-5a4b3521c0e7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T17:54:18.000Z" - }, - "end": { - "$date": "2020-11-10T18:06:18.000Z" - }, - "events": [ - { - "uuid": "c286216d-bb40-4163-95b9-f92b60d87179", - "start": { - "$date": "2020-11-10T17:54:18.000Z" - }, - "end": { - "$date": "2020-11-10T18:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "612ce11f-58f4-4983-a9d9-b626b43ea3f5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T18:10:44.000Z" - }, - "end": { - "$date": "2020-11-10T18:57:45.000Z" - }, - "events": [ - { - "uuid": "48ef19de-8cee-42fc-841b-bd97420491e3", - "start": { - "$date": "2020-11-10T18:10:44.000Z" - }, - "end": { - "$date": "2020-11-10T18:57:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "24172929-f12a-4c27-8ac7-a02645508120", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-10T18:32:10.000Z" - }, - "end": { - "$date": "2020-11-10T19:26:37.000Z" - }, - "events": [ - { - "uuid": "0381aacd-c866-4c8b-8f79-103ca61944cd", - "start": { - "$date": "2020-11-10T18:32:10.000Z" - }, - "end": { - "$date": "2020-11-10T19:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e0e275cd-9655-4979-99bd-3d030e349b56", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-10T18:47:48.000Z" - }, - "end": { - "$date": "2020-11-10T21:53:21.000Z" - }, - "events": [ - { - "uuid": "ad8b5a6b-da59-47cf-a530-d1c84ff8841e", - "start": { - "$date": "2020-11-10T18:47:48.000Z" - }, - "end": { - "$date": "2020-11-10T21:53:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "32437dab-e7a0-42da-a6e3-6fe147d3a0a4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T19:50:57.000Z" - }, - "end": { - "$date": "2020-11-10T20:07:18.000Z" - }, - "events": [ - { - "uuid": "3c1facc4-f01f-4cef-bae8-4dbe178ea62c", - "start": { - "$date": "2020-11-10T19:50:57.000Z" - }, - "end": { - "$date": "2020-11-10T20:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "176d0cec-3401-4464-9db0-6f67004c8e07", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T20:07:58.000Z" - }, - "end": { - "$date": "2020-11-10T22:29:10.000Z" - }, - "events": [ - { - "uuid": "f254554b-ce39-4098-a6a4-f1ade45ef522", - "start": { - "$date": "2020-11-10T20:07:58.000Z" - }, - "end": { - "$date": "2020-11-10T22:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f95bfa90-5c89-4521-b71f-e893855a2bec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-10T20:15:28.000Z" - }, - "end": { - "$date": "2020-11-10T20:17:39.000Z" - }, - "events": [ - { - "uuid": "ce14a99e-ccee-4f54-a1b6-b55295eadf08", - "start": { - "$date": "2020-11-10T20:15:28.000Z" - }, - "end": { - "$date": "2020-11-10T20:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71f43f79-b865-425f-b080-ec75c13ed02a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-10T20:43:11.000Z" - }, - "end": { - "$date": "2020-11-10T21:05:24.000Z" - }, - "events": [ - { - "uuid": "c363cae9-4af2-4443-8fa6-770aac189cf3", - "start": { - "$date": "2020-11-10T20:43:11.000Z" - }, - "end": { - "$date": "2020-11-10T21:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c308d02-f050-406e-9fe7-3767c5be45cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-10T21:52:28.000Z" - }, - "end": { - "$date": "2020-11-10T21:54:59.000Z" - }, - "events": [ - { - "uuid": "b19244a5-05af-426b-9cd2-ee85446fe391", - "start": { - "$date": "2020-11-10T21:52:28.000Z" - }, - "end": { - "$date": "2020-11-10T21:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a10d5927-d7f4-406f-8fe6-8725681c25a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-10T22:14:15.000Z" - }, - "end": { - "$date": "2020-11-10T23:16:48.000Z" - }, - "events": [ - { - "uuid": "71d9f615-29e8-4899-9f45-4fc10690673a", - "start": { - "$date": "2020-11-10T22:14:15.000Z" - }, - "end": { - "$date": "2020-11-10T23:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc9e43f4-991a-41ff-bea1-9042a810a8fa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T22:29:15.000Z" - }, - "end": { - "$date": "2020-11-10T23:07:21.000Z" - }, - "events": [ - { - "uuid": "3ef55379-2805-4f80-af87-06afe24a727f", - "start": { - "$date": "2020-11-10T22:29:15.000Z" - }, - "end": { - "$date": "2020-11-10T23:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a6cf3ef6-e2ae-469e-9de5-2480583d2ece", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T00:05:34.000Z" - }, - "end": { - "$date": "2020-11-11T00:05:54.000Z" - }, - "events": [ - { - "uuid": "459977ee-6ea9-481a-b958-3d6ec5a904cd", - "start": { - "$date": "2020-11-11T00:05:34.000Z" - }, - "end": { - "$date": "2020-11-11T00:05:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "143f42b1-db8a-4fe7-a87b-52917f63aaef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T23:20:43.000Z" - }, - "end": { - "$date": "2020-11-10T23:48:54.000Z" - }, - "events": [ - { - "uuid": "74f57771-f026-4a30-8245-336eeae12817", - "start": { - "$date": "2020-11-10T23:20:43.000Z" - }, - "end": { - "$date": "2020-11-10T23:48:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "413fc5ea-e6e1-4a53-82e4-748b8ad9fd3b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-10T23:26:14.000Z" - }, - "end": { - "$date": "2020-11-10T23:44:06.000Z" - }, - "events": [ - { - "uuid": "400ad2db-cf04-42c8-b6c5-4a3d96f059c4", - "start": { - "$date": "2020-11-10T23:26:14.000Z" - }, - "end": { - "$date": "2020-11-10T23:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "512e42a6-52f5-431e-891c-e7b9a41d74f4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-10T23:38:57.000Z" - }, - "end": { - "$date": "2020-11-10T23:41:32.000Z" - }, - "events": [ - { - "uuid": "d935d99d-2a60-4f4d-9a41-7a4abe58014d", - "start": { - "$date": "2020-11-10T23:38:57.000Z" - }, - "end": { - "$date": "2020-11-10T23:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2a8a3fb5-3803-43e5-8260-295c8419e009", - "uuid": "2e13fc11-17ae-4363-9d5f-bfeb015e797c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-10T23:58:00.000Z" - }, - "end": { - "$date": "2020-11-11T00:48:10.000Z" - }, - "events": [ - { - "uuid": "b85f1d21-290f-4212-87a5-03fe9329478e", - "start": { - "$date": "2020-11-10T23:58:00.000Z" - }, - "end": { - "$date": "2020-11-11T00:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f77c00f6-f267-42d1-b4cd-c3d61e316521", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T00:33:02.000Z" - }, - "end": { - "$date": "2020-11-11T01:25:43.000Z" - }, - "events": [ - { - "uuid": "a03615f0-21ad-444a-af5a-6d1bbad84a87", - "start": { - "$date": "2020-11-11T00:33:02.000Z" - }, - "end": { - "$date": "2020-11-11T01:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "766a3663-af92-4b51-a33b-601baf4631db", - "uuid": "137ea739-797d-4176-a955-ab2d0abad3fa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T00:50:55.000Z" - }, - "end": { - "$date": "2020-11-11T04:06:34.000Z" - }, - "events": [ - { - "uuid": "e299c0fc-11ae-4f20-8639-13fecd4e80a1", - "start": { - "$date": "2020-11-11T00:50:55.000Z" - }, - "end": { - "$date": "2020-11-11T04:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "69e24f89-b551-4dde-9700-e952f82c1b03", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-11T02:15:01.000Z" - }, - "end": { - "$date": "2020-11-11T02:26:02.000Z" - }, - "events": [ - { - "uuid": "1dea73a7-a59e-4758-8b01-0f9ab10f372c", - "start": { - "$date": "2020-11-11T02:15:01.000Z" - }, - "end": { - "$date": "2020-11-11T02:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3c8f084a-53c6-4570-b0c9-879b52699942", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-11T02:58:19.000Z" - }, - "end": { - "$date": "2020-11-11T03:00:06.000Z" - }, - "events": [ - { - "uuid": "f241eb99-078b-4886-8a4f-cf8ca8bd30f7", - "start": { - "$date": "2020-11-11T02:58:19.000Z" - }, - "end": { - "$date": "2020-11-11T03:00:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fddbc863-12b0-449c-8628-5b331d366904", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-11T03:01:14.000Z" - }, - "end": { - "$date": "2020-11-11T04:52:51.000Z" - }, - "events": [ - { - "uuid": "000feca0-dbc4-425f-993e-9912f55f603d", - "start": { - "$date": "2020-11-11T03:01:14.000Z" - }, - "end": { - "$date": "2020-11-11T04:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ba42769-149d-4e2f-95b1-edc2c07afa40", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-11T03:07:04.000Z" - }, - "end": { - "$date": "2020-11-11T05:06:38.000Z" - }, - "events": [ - { - "uuid": "a208dd97-1404-4d9d-b85f-cad90c6c85bf", - "start": { - "$date": "2020-11-11T03:07:04.000Z" - }, - "end": { - "$date": "2020-11-11T05:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "40b4254e-7471-448f-bdc1-c0f0d12c2924", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-11T03:20:14.000Z" - }, - "end": { - "$date": "2020-11-11T05:06:56.000Z" - }, - "events": [ - { - "uuid": "8719890f-f072-4df0-a09d-86c67b59fe9d", - "start": { - "$date": "2020-11-11T03:20:14.000Z" - }, - "end": { - "$date": "2020-11-11T05:06:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "3b4ba031-99d0-4030-83fc-e731ce15b32e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T04:06:27.000Z" - }, - "end": { - "$date": "2020-11-11T05:10:34.000Z" - }, - "events": [ - { - "uuid": "6bf74832-fae3-43ab-a7cc-701d0f89206b", - "start": { - "$date": "2020-11-11T04:06:27.000Z" - }, - "end": { - "$date": "2020-11-11T05:10:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "ee1b0ddb-0a8c-4b41-993d-6e307eda9204", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T04:07:54.000Z" - }, - "end": { - "$date": "2020-11-11T05:10:38.000Z" - }, - "events": [ - { - "uuid": "f7640774-f33d-4335-a9eb-21a8a1532b3f", - "start": { - "$date": "2020-11-11T04:07:54.000Z" - }, - "end": { - "$date": "2020-11-11T05:10:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0cf91f5a-4689-4ff6-b922-50fecc0a99a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-11T04:11:53.000Z" - }, - "end": { - "$date": "2020-11-11T04:39:00.000Z" - }, - "events": [ - { - "uuid": "3f2daac7-7e46-49e8-9c0e-fda3b0547776", - "start": { - "$date": "2020-11-11T04:11:53.000Z" - }, - "end": { - "$date": "2020-11-11T04:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5bcaf6d5-455b-415a-8667-4346aab0c266", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-11T04:14:50.000Z" - }, - "end": { - "$date": "2020-11-11T04:37:37.000Z" - }, - "events": [ - { - "uuid": "a7ada518-ba79-42cb-9c4a-1ec273130fc6", - "start": { - "$date": "2020-11-11T04:14:50.000Z" - }, - "end": { - "$date": "2020-11-11T04:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "72e433fd-0d2f-466c-84f8-d9a7ca05b14f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-11T04:25:20.000Z" - }, - "end": { - "$date": "2020-11-11T04:34:32.000Z" - }, - "events": [ - { - "uuid": "d398f12d-4344-4655-a2e3-d6f820ff5bde", - "start": { - "$date": "2020-11-11T04:25:20.000Z" - }, - "end": { - "$date": "2020-11-11T04:34:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "03d5988e-a250-4ecc-a224-ce05c8111b2f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-11T04:38:17.000Z" - }, - "end": { - "$date": "2020-11-11T06:37:58.000Z" - }, - "events": [ - { - "uuid": "c46d2174-2b50-4e4a-ac21-8d8a499c1c75", - "start": { - "$date": "2020-11-11T04:38:17.000Z" - }, - "end": { - "$date": "2020-11-11T06:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "4958bdb4-8d9f-43a9-98b9-87e186cfaf7b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-11T04:40:30.000Z" - }, - "end": { - "$date": "2020-11-11T05:04:03.000Z" - }, - "events": [ - { - "uuid": "ff03c8f9-9f89-4bda-910f-437d4abf226c", - "start": { - "$date": "2020-11-11T04:40:30.000Z" - }, - "end": { - "$date": "2020-11-11T05:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f5cbd478-5277-4074-afe6-ea10d2ac9350", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T05:14:03.000Z" - }, - "end": { - "$date": "2020-11-11T06:09:55.000Z" - }, - "events": [ - { - "uuid": "e65d64f8-2d04-4ce9-b651-6b12fb9e1dcf", - "start": { - "$date": "2020-11-11T05:14:03.000Z" - }, - "end": { - "$date": "2020-11-11T06:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c65cfbc8-6974-4ce1-862e-08847b756e8c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-11T06:09:48.000Z" - }, - "end": { - "$date": "2020-11-11T06:55:03.000Z" - }, - "events": [ - { - "uuid": "dc0fd29a-08e8-479c-a446-f7025c979e5b", - "start": { - "$date": "2020-11-11T06:09:48.000Z" - }, - "end": { - "$date": "2020-11-11T06:52:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ef580b9-94ae-443a-af01-6be758e7e572", - "start": { - "$date": "2020-11-11T06:52:48.000Z" - }, - "end": { - "$date": "2020-11-11T06:53:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "27c7b153-62f6-4189-938f-9184b66f99a3", - "start": { - "$date": "2020-11-11T06:53:48.000Z" - }, - "end": { - "$date": "2020-11-11T06:55:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "72d11afd-6dcc-4704-bbac-ff5b3e86eed6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T06:10:56.000Z" - }, - "end": { - "$date": "2020-11-11T07:31:23.000Z" - }, - "events": [ - { - "uuid": "b2c0146a-b01b-4c21-96a5-75bba3464207", - "start": { - "$date": "2020-11-11T06:10:56.000Z" - }, - "end": { - "$date": "2020-11-11T07:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f64cb05e-8870-4218-96f9-996733438c60", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T06:12:51.000Z" - }, - "end": { - "$date": "2020-11-11T06:14:43.000Z" - }, - "events": [ - { - "uuid": "6be93af4-0383-40dd-a254-8401c252783c", - "start": { - "$date": "2020-11-11T06:12:51.000Z" - }, - "end": { - "$date": "2020-11-11T06:14:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "88b13c0e-8e89-42bf-8456-717051dbb5f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T06:14:08.000Z" - }, - "end": { - "$date": "2020-11-11T07:22:35.000Z" - }, - "events": [ - { - "uuid": "6550cdce-9ab1-4dd6-ad9a-69926c868411", - "start": { - "$date": "2020-11-11T06:14:08.000Z" - }, - "end": { - "$date": "2020-11-11T07:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ccea0df-88d5-47e2-b67c-6963aaf70cb5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T06:36:03.000Z" - }, - "end": { - "$date": "2020-11-11T07:05:09.000Z" - }, - "events": [ - { - "uuid": "b6d74f2c-9d95-4db9-a72c-01959c3f3fc2", - "start": { - "$date": "2020-11-11T06:36:03.000Z" - }, - "end": { - "$date": "2020-11-11T07:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b51bc92-01e7-4b4b-af6f-1c4d593eeb1c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T07:10:54.000Z" - }, - "end": { - "$date": "2020-11-11T07:42:34.000Z" - }, - "events": [ - { - "uuid": "7c3d1cdb-4cfc-4028-8cb3-62540c566ee9", - "start": { - "$date": "2020-11-11T07:10:54.000Z" - }, - "end": { - "$date": "2020-11-11T07:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "cf8b264f-5e7e-448c-b81e-af2ed82ef405", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-11T08:07:56.000Z" - }, - "end": { - "$date": "2020-11-11T09:49:55.000Z" - }, - "events": [ - { - "uuid": "2d419dc2-1bd8-43e7-9ab8-dc53dc7eaae6", - "start": { - "$date": "2020-11-11T08:07:56.000Z" - }, - "end": { - "$date": "2020-11-11T09:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2da566d0-6f2a-452c-820b-61ae0abfc561", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T16:16:30.000Z" - }, - "end": { - "$date": "2020-11-11T16:42:11.000Z" - }, - "events": [ - { - "uuid": "c541283b-94a0-434a-86ac-d3d3bd1c01c7", - "start": { - "$date": "2020-11-11T16:16:30.000Z" - }, - "end": { - "$date": "2020-11-11T16:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "8bbcd6c7-6d37-41fe-a367-99bc69aa2d32", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T16:53:16.000Z" - }, - "end": { - "$date": "2020-11-11T16:54:21.000Z" - }, - "events": [ - { - "uuid": "aa396b2f-beda-4642-8cbb-e1c1c435356f", - "start": { - "$date": "2020-11-11T16:53:16.000Z" - }, - "end": { - "$date": "2020-11-11T16:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "15d993dc-ecdd-4b72-80f6-2808ef0cf07c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T16:54:56.000Z" - }, - "end": { - "$date": "2020-11-11T17:34:29.000Z" - }, - "events": [ - { - "uuid": "da74a306-83b3-4769-ac38-a0ccd08b02d9", - "start": { - "$date": "2020-11-11T16:54:56.000Z" - }, - "end": { - "$date": "2020-11-11T17:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "987322d9-47f8-4ca5-8a30-e454731d5e52", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T17:13:11.000Z" - }, - "end": { - "$date": "2020-11-11T17:21:12.000Z" - }, - "events": [ - { - "uuid": "f935e1c6-db14-4e58-825c-cd07fb1a1f5f", - "start": { - "$date": "2020-11-11T17:13:11.000Z" - }, - "end": { - "$date": "2020-11-11T17:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "dacc6ed5-381e-4e79-a8e4-36bd3c71dd4e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T17:41:09.000Z" - }, - "end": { - "$date": "2020-11-11T21:01:15.000Z" - }, - "events": [ - { - "uuid": "bddfd247-1b26-4aec-af10-4ab90975a58c", - "start": { - "$date": "2020-11-11T17:41:09.000Z" - }, - "end": { - "$date": "2020-11-11T21:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "bc8c9a33-6e4a-4b6f-be51-910872a52d04", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T17:41:33.000Z" - }, - "end": { - "$date": "2020-11-11T21:00:06.000Z" - }, - "events": [ - { - "uuid": "5a2dd270-0641-4b37-be44-3e07f790d2ac", - "start": { - "$date": "2020-11-11T17:41:33.000Z" - }, - "end": { - "$date": "2020-11-11T21:00:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59215456-dfa6-475a-af56-7c384887b5da", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T19:00:03.000Z" - }, - "end": { - "$date": "2020-11-11T19:26:37.000Z" - }, - "events": [ - { - "uuid": "bae3476f-ee66-4976-a7b4-d460e2f5c979", - "start": { - "$date": "2020-11-11T19:00:03.000Z" - }, - "end": { - "$date": "2020-11-11T19:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ee4abbc-8e54-4183-be43-e3a92d69d6bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T19:27:17.000Z" - }, - "end": { - "$date": "2020-11-11T19:30:19.000Z" - }, - "events": [ - { - "uuid": "24598196-6516-43d0-9b08-8216d90f7ec3", - "start": { - "$date": "2020-11-11T19:27:17.000Z" - }, - "end": { - "$date": "2020-11-11T19:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5778a410-dec5-424a-956a-fdd80018d85b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T20:26:09.000Z" - }, - "end": { - "$date": "2020-11-11T21:08:47.000Z" - }, - "events": [ - { - "uuid": "7a27b6bd-7de0-4a25-82a0-289fe622ec0f", - "start": { - "$date": "2020-11-11T20:26:09.000Z" - }, - "end": { - "$date": "2020-11-11T21:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "25154977-8843-4604-b2af-9052953f75eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-11T20:20:56.000Z" - }, - "end": { - "$date": "2020-11-11T22:50:11.000Z" - }, - "events": [ - { - "uuid": "f469b7da-9f83-450b-8686-1961ef06f084", - "start": { - "$date": "2020-11-11T20:20:56.000Z" - }, - "end": { - "$date": "2020-11-11T22:50:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05c87f26-ef68-4002-8ae7-a59fcf8094c5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-11T20:50:07.000Z" - }, - "end": { - "$date": "2020-11-11T21:18:27.000Z" - }, - "events": [ - { - "uuid": "1a6bca79-761a-497a-9fd8-4b6942ed6085", - "start": { - "$date": "2020-11-11T20:50:07.000Z" - }, - "end": { - "$date": "2020-11-11T21:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1576e9ac-e3e5-4715-b826-4b97cefba9f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T21:09:04.000Z" - }, - "end": { - "$date": "2020-11-11T21:10:07.000Z" - }, - "events": [ - { - "uuid": "4e6beb44-b74a-4b91-a326-472731299c38", - "start": { - "$date": "2020-11-11T21:09:04.000Z" - }, - "end": { - "$date": "2020-11-11T21:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9a2855c-c6bc-42f5-86e8-00271291fb18", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T21:25:22.000Z" - }, - "end": { - "$date": "2020-11-11T21:51:15.000Z" - }, - "events": [ - { - "uuid": "53704253-1fca-44e1-a6ea-0e87a1b067dc", - "start": { - "$date": "2020-11-11T21:25:22.000Z" - }, - "end": { - "$date": "2020-11-11T21:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "633ef363-bb95-4282-987a-698f4174348a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-11T21:45:09.000Z" - }, - "end": { - "$date": "2020-11-11T23:36:50.000Z" - }, - "events": [ - { - "uuid": "8c68465f-750f-4b64-a765-b8f3943aabc8", - "start": { - "$date": "2020-11-11T21:45:09.000Z" - }, - "end": { - "$date": "2020-11-11T21:56:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b717195a-e545-4367-a37a-80039bdcb1eb", - "start": { - "$date": "2020-11-11T21:56:09.000Z" - }, - "end": { - "$date": "2020-11-11T22:00:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "046bf10c-5955-40d3-a1cc-a1371416fb5a", - "start": { - "$date": "2020-11-11T22:00:09.000Z" - }, - "end": { - "$date": "2020-11-11T23:36:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4265be77-d5b4-4650-8b3d-df2cd2e25b26", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T21:45:23.000Z" - }, - "end": { - "$date": "2020-11-11T22:00:22.000Z" - }, - "events": [ - { - "uuid": "c2c8bac0-59b9-4b94-98dc-1ce0d8e5a205", - "start": { - "$date": "2020-11-11T21:45:23.000Z" - }, - "end": { - "$date": "2020-11-11T22:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "392e8de5-b32e-4f4d-8895-a01f150e02b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-11T21:46:08.000Z" - }, - "end": { - "$date": "2020-11-11T22:08:04.000Z" - }, - "events": [ - { - "uuid": "c44309d5-3a5e-4277-876d-14504358fe6c", - "start": { - "$date": "2020-11-11T21:46:08.000Z" - }, - "end": { - "$date": "2020-11-11T22:08:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65d81415-7897-4475-bc2c-b399e5d66a44", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T21:52:22.000Z" - }, - "end": { - "$date": "2020-11-11T22:07:58.000Z" - }, - "events": [ - { - "uuid": "4012cdb1-a8e5-458d-b1a2-7c7c3ed3c142", - "start": { - "$date": "2020-11-11T21:52:22.000Z" - }, - "end": { - "$date": "2020-11-11T22:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "56cadfb1-a9b6-4676-9ef0-e982b78aec71", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-11T22:02:21.000Z" - }, - "end": { - "$date": "2020-11-11T23:36:46.000Z" - }, - "events": [ - { - "uuid": "64b4b31d-c78b-4a69-98ab-b2348ebfb1bb", - "start": { - "$date": "2020-11-11T22:02:21.000Z" - }, - "end": { - "$date": "2020-11-11T23:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1acc499f-b8b7-4b91-ad21-939e3f1b10ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-11T22:40:51.000Z" - }, - "end": { - "$date": "2020-11-11T23:13:13.000Z" - }, - "events": [ - { - "uuid": "b0e36f16-dc43-412f-ab95-b0140a05a6e8", - "start": { - "$date": "2020-11-11T22:40:51.000Z" - }, - "end": { - "$date": "2020-11-11T23:13:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7cdfe118-ab2a-4aeb-9808-826ab19bb0de", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-12T01:12:18.000Z" - }, - "end": { - "$date": "2020-11-12T02:53:26.000Z" - }, - "events": [ - { - "uuid": "83241ad5-bad3-4368-80d0-3980b0d0418c", - "start": { - "$date": "2020-11-12T01:12:18.000Z" - }, - "end": { - "$date": "2020-11-12T02:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "292c5b0c-87f3-468a-895e-b2a88b51adbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-11T23:50:39.000Z" - }, - "end": { - "$date": "2020-11-12T00:23:10.000Z" - }, - "events": [ - { - "uuid": "6d16abc2-9bc9-4d67-9812-e54ddd414460", - "start": { - "$date": "2020-11-11T23:50:39.000Z" - }, - "end": { - "$date": "2020-11-12T00:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c0fb7ef4-3eb0-4d27-9845-1f9f7f2c5312", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-12T00:01:07.000Z" - }, - "end": { - "$date": "2020-11-12T00:49:26.000Z" - }, - "events": [ - { - "uuid": "9a689b3b-b961-4dec-a773-f2a5c3d52cd6", - "start": { - "$date": "2020-11-12T00:01:07.000Z" - }, - "end": { - "$date": "2020-11-12T00:49:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f00fb514-e660-42b9-9ce5-daa97cc9c6e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-12T00:14:39.000Z" - }, - "end": { - "$date": "2020-11-12T00:41:42.000Z" - }, - "events": [ - { - "uuid": "90dfedb1-12f9-48e5-818a-770323a39823", - "start": { - "$date": "2020-11-12T00:14:39.000Z" - }, - "end": { - "$date": "2020-11-12T00:41:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dfb8ad0b-efce-44ba-be4f-824555efc4e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-12T00:21:46.000Z" - }, - "end": { - "$date": "2020-11-12T00:49:43.000Z" - }, - "events": [ - { - "uuid": "1646c088-1e02-4511-91df-57d833208044", - "start": { - "$date": "2020-11-12T00:21:46.000Z" - }, - "end": { - "$date": "2020-11-12T00:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44ad59c2-7f74-49d5-9722-1246b4c143b9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-12T00:31:57.000Z" - }, - "end": { - "$date": "2020-11-12T01:13:52.000Z" - }, - "events": [ - { - "uuid": "cd0a7939-864c-4137-887a-2adb0a3f5382", - "start": { - "$date": "2020-11-12T00:31:57.000Z" - }, - "end": { - "$date": "2020-11-12T01:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8f6f33bf-161d-4026-99c5-30cfbea56df3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-12T00:52:09.000Z" - }, - "end": { - "$date": "2020-11-12T01:14:50.000Z" - }, - "events": [ - { - "uuid": "778bad84-ba22-41c2-9a58-bd9e4971845f", - "start": { - "$date": "2020-11-12T00:52:09.000Z" - }, - "end": { - "$date": "2020-11-12T01:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b081d309-6a93-4433-9000-28a4f2edb0b1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-12T01:04:05.000Z" - }, - "end": { - "$date": "2020-11-12T01:23:16.000Z" - }, - "events": [ - { - "uuid": "941d22ad-4d23-4c36-a715-dc24f44c08ee", - "start": { - "$date": "2020-11-12T01:04:05.000Z" - }, - "end": { - "$date": "2020-11-12T01:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2635ed7c-131f-466c-ab08-0e14b4bb4ead", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T01:10:35.000Z" - }, - "end": { - "$date": "2020-11-12T01:19:26.000Z" - }, - "events": [ - { - "uuid": "19c0917b-5a6c-4f9e-a41e-c4063022fe2a", - "start": { - "$date": "2020-11-12T01:10:35.000Z" - }, - "end": { - "$date": "2020-11-12T01:19:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3a5e91a5-f076-428f-9574-ad1efbda1d77", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-12T01:18:23.000Z" - }, - "end": { - "$date": "2020-11-12T01:29:44.000Z" - }, - "events": [ - { - "uuid": "1a8f6c45-41c1-47b2-9bf4-bf8cbfa8b77b", - "start": { - "$date": "2020-11-12T01:18:23.000Z" - }, - "end": { - "$date": "2020-11-12T01:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "048493c1-7268-4caf-9759-b0a1b96c87e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-12T01:22:32.000Z" - }, - "end": { - "$date": "2020-11-12T01:52:21.000Z" - }, - "events": [ - { - "uuid": "15a8d920-7387-4df2-a8dd-3775c75f67ad", - "start": { - "$date": "2020-11-12T01:22:32.000Z" - }, - "end": { - "$date": "2020-11-12T01:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c609e0c1-aa79-4fef-a8bc-5b26ca8d112c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-12T01:24:22.000Z" - }, - "end": { - "$date": "2020-11-12T01:25:42.000Z" - }, - "events": [ - { - "uuid": "268b9a0d-6fba-4659-b2aa-3c27c12a41a8", - "start": { - "$date": "2020-11-12T01:24:22.000Z" - }, - "end": { - "$date": "2020-11-12T01:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a5a9a554-1503-4749-9d1b-e26ede5946d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-12T01:26:07.000Z" - }, - "end": { - "$date": "2020-11-12T06:02:06.000Z" - }, - "events": [ - { - "uuid": "b2de1a07-9abf-4f94-8cc9-271e068ccd4a", - "start": { - "$date": "2020-11-12T01:26:07.000Z" - }, - "end": { - "$date": "2020-11-12T04:41:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60426a6b-c8ae-42a9-b161-532dadb08bb6", - "start": { - "$date": "2020-11-12T04:41:07.000Z" - }, - "end": { - "$date": "2020-11-12T04:43:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b2c29c3-0562-4e2a-8f94-f20553a53659", - "start": { - "$date": "2020-11-12T04:43:07.000Z" - }, - "end": { - "$date": "2020-11-12T06:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "45da3ef3-8644-4829-8100-7ac3a365099d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-12T01:36:41.000Z" - }, - "end": { - "$date": "2020-11-12T02:40:43.000Z" - }, - "events": [ - { - "uuid": "aa486b49-979e-4fe2-bdeb-d9817460a36a", - "start": { - "$date": "2020-11-12T01:36:41.000Z" - }, - "end": { - "$date": "2020-11-12T02:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f5fb0235-5b15-4130-aafb-7d93988ab97d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T01:37:28.000Z" - }, - "end": { - "$date": "2020-11-12T02:24:14.000Z" - }, - "events": [ - { - "uuid": "d09b7ae4-4453-4ca0-bab5-2e83e73104f0", - "start": { - "$date": "2020-11-12T01:37:28.000Z" - }, - "end": { - "$date": "2020-11-12T02:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "72fbc361-9961-4a8d-879b-02135b2344f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-12T01:47:25.000Z" - }, - "end": { - "$date": "2020-11-12T01:58:41.000Z" - }, - "events": [ - { - "uuid": "80b2c173-817c-4fd9-a4da-a39e67b7c805", - "start": { - "$date": "2020-11-12T01:47:25.000Z" - }, - "end": { - "$date": "2020-11-12T01:58:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9f35a79e-e133-4312-aa93-a45ade8c91bf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-12T02:28:03.000Z" - }, - "end": { - "$date": "2020-11-12T03:50:10.000Z" - }, - "events": [ - { - "uuid": "ced4de7c-1011-4613-8ee1-dd8a60de44df", - "start": { - "$date": "2020-11-12T02:28:03.000Z" - }, - "end": { - "$date": "2020-11-12T03:50:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d530030a-7857-4e7a-938b-8032a4976b47", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-12T03:57:00.000Z" - }, - "end": { - "$date": "2020-11-12T04:24:00.000Z" - }, - "events": [ - { - "uuid": "3582b2a8-1e34-4350-9cfa-334317b37b85", - "start": { - "$date": "2020-11-12T03:57:00.000Z" - }, - "end": { - "$date": "2020-11-12T04:24:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7d7ee0db-840d-4c71-8759-87d676983718", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-12T04:03:47.000Z" - }, - "end": { - "$date": "2020-11-12T05:16:46.000Z" - }, - "events": [ - { - "uuid": "917b8b18-bc0f-4dc3-9879-c504e9a6dec8", - "start": { - "$date": "2020-11-12T04:03:47.000Z" - }, - "end": { - "$date": "2020-11-12T05:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "906bda55-7e15-49d2-8495-162b961fbef2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-12T05:14:56.000Z" - }, - "end": { - "$date": "2020-11-12T05:47:05.000Z" - }, - "events": [ - { - "uuid": "3e28f531-2306-441d-b137-23305b5d296e", - "start": { - "$date": "2020-11-12T05:14:56.000Z" - }, - "end": { - "$date": "2020-11-12T05:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a047e43-6729-45a3-95bd-ac9b62a73655", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-12T05:13:49.000Z" - }, - "end": { - "$date": "2020-11-12T05:47:00.000Z" - }, - "events": [ - { - "uuid": "0b02d081-2488-4bfe-97ef-36cf7a9bf998", - "start": { - "$date": "2020-11-12T05:13:49.000Z" - }, - "end": { - "$date": "2020-11-12T05:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5aa79b4f-d76f-42fe-9ca7-b79b190c19b3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-12T05:12:52.000Z" - }, - "end": { - "$date": "2020-11-12T05:18:33.000Z" - }, - "events": [ - { - "uuid": "84eda43c-6707-45d6-9d11-3c30151a3f0a", - "start": { - "$date": "2020-11-12T05:12:52.000Z" - }, - "end": { - "$date": "2020-11-12T05:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5928ae79-3868-465d-8830-e59bcb419af6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-12T05:18:37.000Z" - }, - "end": { - "$date": "2020-11-12T07:00:04.000Z" - }, - "events": [ - { - "uuid": "1d8074a4-3356-436d-9ac8-22e9b1672d9e", - "start": { - "$date": "2020-11-12T05:18:37.000Z" - }, - "end": { - "$date": "2020-11-12T05:50:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4560cb4-893d-4475-8a03-6999bd004cec", - "start": { - "$date": "2020-11-12T05:50:37.000Z" - }, - "end": { - "$date": "2020-11-12T06:02:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "206c6a68-1674-488d-983c-57514c051614", - "start": { - "$date": "2020-11-12T06:02:37.000Z" - }, - "end": { - "$date": "2020-11-12T07:00:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "587332e8-8b2e-4af3-9c52-60d2d950eee6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T05:44:29.000Z" - }, - "end": { - "$date": "2020-11-12T05:59:25.000Z" - }, - "events": [ - { - "uuid": "2dd7442a-f926-461e-a270-9dd7d5979e85", - "start": { - "$date": "2020-11-12T05:44:29.000Z" - }, - "end": { - "$date": "2020-11-12T05:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "495d975e-3f9d-438c-85ce-6ebd687f77b4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-12T05:56:04.000Z" - }, - "end": { - "$date": "2020-11-12T06:28:13.000Z" - }, - "events": [ - { - "uuid": "fa6516db-d843-4cb2-9398-d638fc2c40e7", - "start": { - "$date": "2020-11-12T05:56:04.000Z" - }, - "end": { - "$date": "2020-11-12T06:28:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4f5f186-47ae-4b40-9695-75f0f689282e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-12T05:54:16.000Z" - }, - "end": { - "$date": "2020-11-12T06:28:11.000Z" - }, - "events": [ - { - "uuid": "5bcfd2e1-dc6e-4f12-8a7d-c3142f564c03", - "start": { - "$date": "2020-11-12T05:54:16.000Z" - }, - "end": { - "$date": "2020-11-12T06:28:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b9a551b-973b-4fb5-b69f-74e1c189d569", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-12T06:40:23.000Z" - }, - "end": { - "$date": "2020-11-12T07:12:45.000Z" - }, - "events": [ - { - "uuid": "749eeba7-8948-41db-8ad5-2bd3791dd6ce", - "start": { - "$date": "2020-11-12T06:40:23.000Z" - }, - "end": { - "$date": "2020-11-12T07:12:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f42921f6-01a2-40d3-90e8-f491be351488", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-12T07:14:46.000Z" - }, - "end": { - "$date": "2020-11-12T07:24:33.000Z" - }, - "events": [ - { - "uuid": "6d9b5fc3-8abf-43a5-a1fa-e2a25a41e65a", - "start": { - "$date": "2020-11-12T07:14:46.000Z" - }, - "end": { - "$date": "2020-11-12T07:24:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cea8fecc-ddff-42ed-b9a3-36e7ce7461f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-12T16:33:33.000Z" - }, - "end": { - "$date": "2020-11-12T17:23:21.000Z" - }, - "events": [ - { - "uuid": "dbb473e7-140c-49eb-abec-879858896e86", - "start": { - "$date": "2020-11-12T16:33:33.000Z" - }, - "end": { - "$date": "2020-11-12T17:23:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "4a1134db-e88e-42fe-91d1-2f8d2b6e7df1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-12T17:27:01.000Z" - }, - "end": { - "$date": "2020-11-12T18:27:28.000Z" - }, - "events": [ - { - "uuid": "1e95641d-d1e9-4ed7-8df1-6bb5283ac7f8", - "start": { - "$date": "2020-11-12T17:27:01.000Z" - }, - "end": { - "$date": "2020-11-12T18:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d7b9aa4c-7e39-494e-842a-86440548095a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-12T20:38:49.000Z" - }, - "end": { - "$date": "2020-11-12T21:48:40.000Z" - }, - "events": [ - { - "uuid": "6817df90-d570-47ce-82d8-3c18313109b6", - "start": { - "$date": "2020-11-12T20:38:49.000Z" - }, - "end": { - "$date": "2020-11-12T21:48:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e5301d7a-184b-4f4c-9093-2787d7d0761c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-12T20:52:20.000Z" - }, - "end": { - "$date": "2020-11-12T22:28:52.000Z" - }, - "events": [ - { - "uuid": "dd72046e-105d-4d0f-8f4b-134e13a66bc7", - "start": { - "$date": "2020-11-12T20:52:20.000Z" - }, - "end": { - "$date": "2020-11-12T22:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae0abdfc-b6ae-4ade-beed-afce02361ad7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-12T21:09:18.000Z" - }, - "end": { - "$date": "2020-11-12T21:46:24.000Z" - }, - "events": [ - { - "uuid": "d7958fdc-9cf6-406e-9122-81204968cd56", - "start": { - "$date": "2020-11-12T21:09:18.000Z" - }, - "end": { - "$date": "2020-11-12T21:46:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "06dbb4ce-aca1-471e-81c5-ef7073fa6713", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T21:55:57.000Z" - }, - "end": { - "$date": "2020-11-12T21:58:47.000Z" - }, - "events": [ - { - "uuid": "ecd523e8-7951-457a-9f83-1792657318df", - "start": { - "$date": "2020-11-12T21:55:57.000Z" - }, - "end": { - "$date": "2020-11-12T21:58:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e6240fb1-478a-442a-888c-102e38332567", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T22:00:02.000Z" - }, - "end": { - "$date": "2020-11-12T22:07:08.000Z" - }, - "events": [ - { - "uuid": "eb290fd4-fb40-4541-8bfa-4d63a94a26e1", - "start": { - "$date": "2020-11-12T22:00:02.000Z" - }, - "end": { - "$date": "2020-11-12T22:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "882e624d-3157-4490-9176-73157bb5042c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-12T22:59:11.000Z" - }, - "end": { - "$date": "2020-11-12T23:01:11.000Z" - }, - "events": [ - { - "uuid": "4183deca-1f4e-4699-a247-3510cc5bbd81", - "start": { - "$date": "2020-11-12T22:59:11.000Z" - }, - "end": { - "$date": "2020-11-12T23:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0aee70ba-9f64-49c3-9e6e-10c4e5b9dc98", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T23:00:17.000Z" - }, - "end": { - "$date": "2020-11-12T23:49:03.000Z" - }, - "events": [ - { - "uuid": "800d469f-e097-4934-af42-6ec6e736da02", - "start": { - "$date": "2020-11-12T23:00:17.000Z" - }, - "end": { - "$date": "2020-11-12T23:49:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "39c69f91-9900-4bf9-8577-f6ec7a4aad6d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-12T23:00:25.000Z" - }, - "end": { - "$date": "2020-11-12T23:14:00.000Z" - }, - "events": [ - { - "uuid": "22cfd0a4-1313-4caa-b4be-1075fd8e428d", - "start": { - "$date": "2020-11-12T23:00:25.000Z" - }, - "end": { - "$date": "2020-11-12T23:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1d9c9641-dd37-4d00-a080-bcd1d1de6323", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-12T23:06:58.000Z" - }, - "end": { - "$date": "2020-11-12T23:41:27.000Z" - }, - "events": [ - { - "uuid": "9f10b8e4-9b37-440b-816d-0ec81bc11331", - "start": { - "$date": "2020-11-12T23:06:58.000Z" - }, - "end": { - "$date": "2020-11-12T23:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "80e77772-f55f-47d6-807d-84d999fb54a2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-12T23:14:49.000Z" - }, - "end": { - "$date": "2020-11-12T23:16:12.000Z" - }, - "events": [ - { - "uuid": "a863e2a6-b135-49a2-9850-411f4dfe61a9", - "start": { - "$date": "2020-11-12T23:14:49.000Z" - }, - "end": { - "$date": "2020-11-12T23:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "739c7142-21a5-49a3-ac26-3001180e75a5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-12T23:17:25.000Z" - }, - "end": { - "$date": "2020-11-13T00:28:55.000Z" - }, - "events": [ - { - "uuid": "25fa4fb5-f78e-407a-b332-2b35f2b7b1e9", - "start": { - "$date": "2020-11-12T23:17:25.000Z" - }, - "end": { - "$date": "2020-11-13T00:28:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d07a3038-1174-45ed-a3e9-3276b239695f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-12T23:17:56.000Z" - }, - "end": { - "$date": "2020-11-13T00:01:58.000Z" - }, - "events": [ - { - "uuid": "47a4f9e5-a5eb-40a2-a7b8-038d1d75275f", - "start": { - "$date": "2020-11-12T23:17:56.000Z" - }, - "end": { - "$date": "2020-11-13T00:01:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "69721678-5fc6-4577-9093-7656f152e418", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-12T23:54:59.000Z" - }, - "end": { - "$date": "2020-11-13T00:02:04.000Z" - }, - "events": [ - { - "uuid": "c54aa7ca-70f7-432b-b0d6-cc73676d46dd", - "start": { - "$date": "2020-11-12T23:54:59.000Z" - }, - "end": { - "$date": "2020-11-13T00:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "40421db0-f50e-4669-8418-c7f7531a6653", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-13T00:13:03.000Z" - }, - "end": { - "$date": "2020-11-13T01:27:59.000Z" - }, - "events": [ - { - "uuid": "bbbb5a55-cd86-4004-b6eb-6ef40ed7b92f", - "start": { - "$date": "2020-11-13T00:13:03.000Z" - }, - "end": { - "$date": "2020-11-13T01:27:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c023db11-b265-46e9-b59f-bc9478f79fe5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T00:23:37.000Z" - }, - "end": { - "$date": "2020-11-13T01:53:15.000Z" - }, - "events": [ - { - "uuid": "79baca10-e574-46c3-8dd0-06101c0265fc", - "start": { - "$date": "2020-11-13T00:23:37.000Z" - }, - "end": { - "$date": "2020-11-13T00:34:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0da1c79e-fdf3-4132-af85-e0a7e3837629", - "start": { - "$date": "2020-11-13T00:34:37.000Z" - }, - "end": { - "$date": "2020-11-13T00:57:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fcad4e4e-5ca5-4888-8893-d74120af6845", - "start": { - "$date": "2020-11-13T00:57:37.000Z" - }, - "end": { - "$date": "2020-11-13T01:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4027ee8a-018f-43b8-b48e-ffb6572b5af5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-13T00:24:49.000Z" - }, - "end": { - "$date": "2020-11-13T00:49:42.000Z" - }, - "events": [ - { - "uuid": "525b7cd0-25d8-4f44-baca-f3f66928a04e", - "start": { - "$date": "2020-11-13T00:24:49.000Z" - }, - "end": { - "$date": "2020-11-13T00:49:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2a174c38-2a85-4427-a7c2-32eff272e67b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-13T00:27:16.000Z" - }, - "end": { - "$date": "2020-11-13T00:28:52.000Z" - }, - "events": [ - { - "uuid": "e1b1a77d-1a83-4828-9c85-b8be3b831d3b", - "start": { - "$date": "2020-11-13T00:27:16.000Z" - }, - "end": { - "$date": "2020-11-13T00:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "168c6b2f-021d-46ff-b7e4-e7bd826d0aba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-13T01:45:55.000Z" - }, - "end": { - "$date": "2020-11-13T03:19:57.000Z" - }, - "events": [ - { - "uuid": "276f1694-045a-487e-92b2-1b595b73bc9a", - "start": { - "$date": "2020-11-13T01:45:55.000Z" - }, - "end": { - "$date": "2020-11-13T03:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a4035128-a060-4089-bf47-18a91c4424ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T02:00:48.000Z" - }, - "end": { - "$date": "2020-11-13T02:05:56.000Z" - }, - "events": [ - { - "uuid": "e664f06b-ae7f-42f6-aa19-b30b88db8e1a", - "start": { - "$date": "2020-11-13T02:00:48.000Z" - }, - "end": { - "$date": "2020-11-13T02:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1d9dcc02-9ebd-42dc-b784-587ffdb5aed6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-13T02:04:03.000Z" - }, - "end": { - "$date": "2020-11-13T02:05:44.000Z" - }, - "events": [ - { - "uuid": "0e23e3db-411d-41d2-a6ac-e7944298dc27", - "start": { - "$date": "2020-11-13T02:04:03.000Z" - }, - "end": { - "$date": "2020-11-13T02:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5350748a-1b0e-4788-9bed-f4cc8865131b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-13T02:05:54.000Z" - }, - "end": { - "$date": "2020-11-13T02:33:48.000Z" - }, - "events": [ - { - "uuid": "04308112-35f3-4acf-9e5d-a0e279ae4b1c", - "start": { - "$date": "2020-11-13T02:05:54.000Z" - }, - "end": { - "$date": "2020-11-13T02:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "44ce24d0-3def-41e3-a318-422894e0454a", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-11-13T02:21:48.000Z" - }, - "end": { - "$date": "2020-11-13T04:32:52.000Z" - }, - "events": [ - { - "uuid": "1eba36d4-d7b4-42e0-90c1-89383122b173", - "start": { - "$date": "2020-11-13T02:21:48.000Z" - }, - "end": { - "$date": "2020-11-13T04:32:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8e347b8d-6669-4c8a-9072-807b3b5dc12d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T02:22:02.000Z" - }, - "end": { - "$date": "2020-11-13T02:26:27.000Z" - }, - "events": [ - { - "uuid": "9b8624c0-f541-4676-a219-1bb1d49d4806", - "start": { - "$date": "2020-11-13T02:22:02.000Z" - }, - "end": { - "$date": "2020-11-13T02:26:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "852b37ca-5abf-442d-8ce6-26541e8e5288", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T02:27:57.000Z" - }, - "end": { - "$date": "2020-11-13T02:33:48.000Z" - }, - "events": [ - { - "uuid": "15080b47-6406-4df4-859b-595240a124cb", - "start": { - "$date": "2020-11-13T02:27:57.000Z" - }, - "end": { - "$date": "2020-11-13T02:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "54ab2709-46a6-48cb-8771-f048bb994433", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-13T02:29:35.000Z" - }, - "end": { - "$date": "2020-11-13T04:38:24.000Z" - }, - "events": [ - { - "uuid": "1929dfdf-94e4-491a-92a2-d6140e7c6238", - "start": { - "$date": "2020-11-13T02:29:35.000Z" - }, - "end": { - "$date": "2020-11-13T04:38:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ab0ef857-baff-4202-8e3b-ecd62fcc4feb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T02:53:05.000Z" - }, - "end": { - "$date": "2020-11-13T04:09:50.000Z" - }, - "events": [ - { - "uuid": "4c891ae9-344e-4f0e-a15c-b4fa45eb09b7", - "start": { - "$date": "2020-11-13T02:53:05.000Z" - }, - "end": { - "$date": "2020-11-13T04:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b1734930-83f5-4ff8-bf48-fa4f7d89ddc2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-13T02:55:05.000Z" - }, - "end": { - "$date": "2020-11-13T02:58:08.000Z" - }, - "events": [ - { - "uuid": "fd5a6b26-c486-4ed9-a169-c6773163ff89", - "start": { - "$date": "2020-11-13T02:55:05.000Z" - }, - "end": { - "$date": "2020-11-13T02:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "10e777a2-68f2-468a-bdbd-d3bcbba9d507", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-13T02:55:51.000Z" - }, - "end": { - "$date": "2020-11-13T04:09:54.000Z" - }, - "events": [ - { - "uuid": "e64adef2-73a8-4cec-b731-57f3661c7c13", - "start": { - "$date": "2020-11-13T02:55:51.000Z" - }, - "end": { - "$date": "2020-11-13T04:09:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1525061f-a666-4b42-82ce-7c5b3a1dcd5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-13T02:58:26.000Z" - }, - "end": { - "$date": "2020-11-13T03:14:21.000Z" - }, - "events": [ - { - "uuid": "13f0263d-71a6-4041-90a9-66fcfe88b382", - "start": { - "$date": "2020-11-13T02:58:26.000Z" - }, - "end": { - "$date": "2020-11-13T03:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "77de28d0-952d-48f4-a00b-6df6f00e4df1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-13T03:00:10.000Z" - }, - "end": { - "$date": "2020-11-13T05:05:46.000Z" - }, - "events": [ - { - "uuid": "d9b78f74-8227-456d-a077-fabae15cbb47", - "start": { - "$date": "2020-11-13T03:00:10.000Z" - }, - "end": { - "$date": "2020-11-13T05:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a173f4ea-949c-4a86-8b62-351ab1c31fa5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-13T03:21:31.000Z" - }, - "end": { - "$date": "2020-11-13T04:09:58.000Z" - }, - "events": [ - { - "uuid": "6f969ce4-4a6e-4181-ba3f-cc40fb3001db", - "start": { - "$date": "2020-11-13T03:21:31.000Z" - }, - "end": { - "$date": "2020-11-13T04:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "628e2095-f2a1-4a7d-82a1-22bc65b3927e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-13T03:49:34.000Z" - }, - "end": { - "$date": "2020-11-13T04:50:48.000Z" - }, - "events": [ - { - "uuid": "8f72f97d-e7d2-401d-a1eb-60165e3bde29", - "start": { - "$date": "2020-11-13T03:49:34.000Z" - }, - "end": { - "$date": "2020-11-13T04:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7e592bdd-81e6-43ad-a7c4-8c6da44a0051", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-13T03:58:28.000Z" - }, - "end": { - "$date": "2020-11-13T06:44:06.000Z" - }, - "events": [ - { - "uuid": "146c56cd-ad63-467e-83b9-e6ecae177daa", - "start": { - "$date": "2020-11-13T03:58:28.000Z" - }, - "end": { - "$date": "2020-11-13T06:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "c2de4041-d01d-422c-9039-8ecc98a54b10", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-13T04:32:18.000Z" - }, - "end": { - "$date": "2020-11-13T05:01:43.000Z" - }, - "events": [ - { - "uuid": "7a6d932a-d3b3-4f98-9e52-34fa7ca10347", - "start": { - "$date": "2020-11-13T04:32:18.000Z" - }, - "end": { - "$date": "2020-11-13T05:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dbef64bc-5241-4ee6-9d82-bb9a4cd15780", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-13T04:42:47.000Z" - }, - "end": { - "$date": "2020-11-13T04:56:17.000Z" - }, - "events": [ - { - "uuid": "7774d5bf-c725-4a5c-8914-421c67b58e65", - "start": { - "$date": "2020-11-13T04:42:47.000Z" - }, - "end": { - "$date": "2020-11-13T04:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "25ddb6d9-5e9b-48e8-adc4-d8cf93e85347", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-13T05:20:33.000Z" - }, - "end": { - "$date": "2020-11-13T06:41:37.000Z" - }, - "events": [ - { - "uuid": "01985ae4-6933-4cdd-a698-0d66f9cd1241", - "start": { - "$date": "2020-11-13T05:20:33.000Z" - }, - "end": { - "$date": "2020-11-13T06:41:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "766a3663-af92-4b51-a33b-601baf4631db", - "uuid": "2a12446a-6ad1-4f55-8507-c5c02246a6b4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-13T05:22:58.000Z" - }, - "end": { - "$date": "2020-11-13T05:45:13.000Z" - }, - "events": [ - { - "uuid": "999e1c00-47e9-42c1-9e54-af81d9cf0cce", - "start": { - "$date": "2020-11-13T05:22:58.000Z" - }, - "end": { - "$date": "2020-11-13T05:45:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a18e6a56-841a-4ceb-9c44-5d2033b7928a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-13T05:34:47.000Z" - }, - "end": { - "$date": "2020-11-13T07:14:01.000Z" - }, - "events": [ - { - "uuid": "aebaffd2-7b83-48bb-8d41-fdb8de8be8bd", - "start": { - "$date": "2020-11-13T05:34:47.000Z" - }, - "end": { - "$date": "2020-11-13T07:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "766a3663-af92-4b51-a33b-601baf4631db", - "uuid": "3e0be1cd-d8da-494a-a89e-2bddddf8435f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-13T05:45:17.000Z" - }, - "end": { - "$date": "2020-11-13T06:01:59.000Z" - }, - "events": [ - { - "uuid": "9151a5ce-cb7e-4bbb-abaa-8d6873ca0579", - "start": { - "$date": "2020-11-13T05:45:17.000Z" - }, - "end": { - "$date": "2020-11-13T06:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "766a3663-af92-4b51-a33b-601baf4631db", - "uuid": "a096aac3-9249-4cba-b398-954d571aeaed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-13T06:02:10.000Z" - }, - "end": { - "$date": "2020-11-13T07:15:28.000Z" - }, - "events": [ - { - "uuid": "eb750ad8-738a-4fa1-9c60-052c794fea05", - "start": { - "$date": "2020-11-13T06:02:10.000Z" - }, - "end": { - "$date": "2020-11-13T07:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "2ee2e2e1-058c-4567-919b-521b60e6225c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-13T07:37:14.000Z" - }, - "end": { - "$date": "2020-11-13T09:40:43.000Z" - }, - "events": [ - { - "uuid": "6f790fbc-ecd4-48d4-877d-46ed00150ec2", - "start": { - "$date": "2020-11-13T07:37:14.000Z" - }, - "end": { - "$date": "2020-11-13T09:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", - "uuid": "5d41a7c2-6e2e-413a-bd75-3ed38ac3046a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-13T07:46:59.000Z" - }, - "end": { - "$date": "2020-11-13T07:59:17.000Z" - }, - "events": [ - { - "uuid": "8b8b1f52-5e1c-4d36-a7bd-dfe1c1328714", - "start": { - "$date": "2020-11-13T07:46:59.000Z" - }, - "end": { - "$date": "2020-11-13T07:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fa6b7f17-230e-46da-8ded-b82ac2e7ac7c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-13T16:05:45.000Z" - }, - "end": { - "$date": "2020-11-13T17:07:13.000Z" - }, - "events": [ - { - "uuid": "dd6ffb9e-5e7c-4352-b3e6-94d67bffda64", - "start": { - "$date": "2020-11-13T16:05:45.000Z" - }, - "end": { - "$date": "2020-11-13T17:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6db40d91-646c-4879-b93b-fa8ade208b54", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-13T17:41:42.000Z" - }, - "end": { - "$date": "2020-11-13T18:11:07.000Z" - }, - "events": [ - { - "uuid": "b2276046-dc32-47fa-84a9-29133a77bc76", - "start": { - "$date": "2020-11-13T17:41:42.000Z" - }, - "end": { - "$date": "2020-11-13T18:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a3c32fd-7b59-45ee-a971-7187a91bc6f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-13T18:24:09.000Z" - }, - "end": { - "$date": "2020-11-13T18:54:33.000Z" - }, - "events": [ - { - "uuid": "8e070b9f-9a41-46d4-91c2-649bcf496324", - "start": { - "$date": "2020-11-13T18:24:09.000Z" - }, - "end": { - "$date": "2020-11-13T18:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "a88a1eb4-d99d-4c41-83d6-a626af59f058", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T18:14:33.000Z" - }, - "end": { - "$date": "2020-11-13T18:15:59.000Z" - }, - "events": [ - { - "uuid": "71b037f2-99ba-41ec-b1b8-5cef9f782abb", - "start": { - "$date": "2020-11-13T18:14:33.000Z" - }, - "end": { - "$date": "2020-11-13T18:15:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "41f3ab91-0dbe-4676-9987-e2ed67b70704", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T18:17:33.000Z" - }, - "end": { - "$date": "2020-11-13T19:09:26.000Z" - }, - "events": [ - { - "uuid": "5feae9cd-b05f-42e4-b678-92348bf99188", - "start": { - "$date": "2020-11-13T18:17:33.000Z" - }, - "end": { - "$date": "2020-11-13T19:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "886c2413-de94-47a0-b57b-eb51ed94bddd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-13T19:02:55.000Z" - }, - "end": { - "$date": "2020-11-13T19:37:00.000Z" - }, - "events": [ - { - "uuid": "2dd9f804-32bc-4b0d-b107-ff2d4d0659be", - "start": { - "$date": "2020-11-13T19:02:55.000Z" - }, - "end": { - "$date": "2020-11-13T19:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72a1572c-bf42-46dd-ab5c-bf96d4e0d5bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T19:36:23.000Z" - }, - "end": { - "$date": "2020-11-13T20:13:26.000Z" - }, - "events": [ - { - "uuid": "c210082e-74a5-403a-8a33-ad2b215f2afe", - "start": { - "$date": "2020-11-13T19:36:23.000Z" - }, - "end": { - "$date": "2020-11-13T20:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "465699a1-3895-4679-8b04-526b747f4205", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-13T19:42:17.000Z" - }, - "end": { - "$date": "2020-11-13T20:25:17.000Z" - }, - "events": [ - { - "uuid": "4b4e6b7c-7765-44d9-9cdd-702a3dd16bfc", - "start": { - "$date": "2020-11-13T19:42:17.000Z" - }, - "end": { - "$date": "2020-11-13T20:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "uuid": "401375f5-5e60-4bf2-a908-be9a52be187a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-13T20:08:00.000Z" - }, - "end": { - "$date": "2020-11-13T20:10:20.000Z" - }, - "events": [ - { - "uuid": "1aafbf05-cdd2-404a-849c-b0e12135546f", - "start": { - "$date": "2020-11-13T20:08:00.000Z" - }, - "end": { - "$date": "2020-11-13T20:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cb1f828b-c69a-4d45-a8e2-a801e7b05bb0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-13T20:16:49.000Z" - }, - "end": { - "$date": "2020-11-13T20:19:16.000Z" - }, - "events": [ - { - "uuid": "a65a43d0-23b0-4fed-8167-d6762db79ea4", - "start": { - "$date": "2020-11-13T20:16:49.000Z" - }, - "end": { - "$date": "2020-11-13T20:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "123a3530-4151-4ef6-a0b2-95af4b85afcb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-13T20:32:24.000Z" - }, - "end": { - "$date": "2020-11-13T20:59:38.000Z" - }, - "events": [ - { - "uuid": "45ecac2a-0a0e-47cd-92e4-b4db0dd8696f", - "start": { - "$date": "2020-11-13T20:32:24.000Z" - }, - "end": { - "$date": "2020-11-13T20:59:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "84cc483c-996c-4e8b-89a2-825032dcf5c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-11-13T22:32:12.000Z" - }, - "end": { - "$date": "2020-11-13T23:57:36.000Z" - }, - "events": [ - { - "uuid": "46481dd4-f1f7-4d7b-b00c-4ba634a670d5", - "start": { - "$date": "2020-11-13T22:32:12.000Z" - }, - "end": { - "$date": "2020-11-13T23:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffdb27d6-2cb7-466f-8473-fa93b5f27d34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-13T22:58:58.000Z" - }, - "end": { - "$date": "2020-11-13T23:34:31.000Z" - }, - "events": [ - { - "uuid": "56eb3b93-4c74-42d1-94f6-8e12c46575d9", - "start": { - "$date": "2020-11-13T22:58:58.000Z" - }, - "end": { - "$date": "2020-11-13T23:34:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "a6abfa40-3f21-4692-909c-5e9b9e03744e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-13T23:13:58.000Z" - }, - "end": { - "$date": "2020-11-14T00:01:39.000Z" - }, - "events": [ - { - "uuid": "136e8c3b-cc36-4e2b-9824-61eecea41635", - "start": { - "$date": "2020-11-13T23:13:58.000Z" - }, - "end": { - "$date": "2020-11-14T00:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "33d8b842-2d4b-4843-84b5-c1837d7ce136", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-13T23:57:34.000Z" - }, - "end": { - "$date": "2020-11-14T00:10:05.000Z" - }, - "events": [ - { - "uuid": "5670b491-abfc-40ae-be27-80f928fee3a0", - "start": { - "$date": "2020-11-13T23:57:34.000Z" - }, - "end": { - "$date": "2020-11-14T00:10:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "6d19c2ca-bdcf-4b0e-9bc4-9a352b6393d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T00:07:25.000Z" - }, - "end": { - "$date": "2020-11-14T00:09:22.000Z" - }, - "events": [ - { - "uuid": "4fabaf4b-2f89-42ac-a631-45ca83d42a58", - "start": { - "$date": "2020-11-14T00:07:25.000Z" - }, - "end": { - "$date": "2020-11-14T00:09:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "0da8488e-2499-4cfe-bbe2-a99f2b14a08e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T00:09:33.000Z" - }, - "end": { - "$date": "2020-11-14T00:13:33.000Z" - }, - "events": [ - { - "uuid": "ec6f27f6-823d-4614-ac68-c447c46c817f", - "start": { - "$date": "2020-11-14T00:09:33.000Z" - }, - "end": { - "$date": "2020-11-14T00:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "3caa12da-519f-401a-aca5-9af375bc8bbb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T00:19:29.000Z" - }, - "end": { - "$date": "2020-11-14T00:26:05.000Z" - }, - "events": [ - { - "uuid": "812f04e1-b058-483b-a8f3-d764ae39791f", - "start": { - "$date": "2020-11-14T00:19:29.000Z" - }, - "end": { - "$date": "2020-11-14T00:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "82c1eb84-9d66-480e-bde1-2e72708f2534", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T00:26:55.000Z" - }, - "end": { - "$date": "2020-11-14T01:07:37.000Z" - }, - "events": [ - { - "uuid": "8588235e-dccc-4a16-bee4-a0003eefb103", - "start": { - "$date": "2020-11-14T00:26:55.000Z" - }, - "end": { - "$date": "2020-11-14T01:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ed623995-feb7-4586-874e-99e21456a7c1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-14T00:40:22.000Z" - }, - "end": { - "$date": "2020-11-14T01:01:27.000Z" - }, - "events": [ - { - "uuid": "3f3d4e88-52eb-48d0-80eb-4d39d6d2b805", - "start": { - "$date": "2020-11-14T00:40:22.000Z" - }, - "end": { - "$date": "2020-11-14T01:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "65cb5a59-7991-46fb-adb3-2b2930160ee2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T01:04:22.000Z" - }, - "end": { - "$date": "2020-11-14T01:26:25.000Z" - }, - "events": [ - { - "uuid": "0d676ba3-c934-491f-b550-01e267b45d54", - "start": { - "$date": "2020-11-14T01:04:22.000Z" - }, - "end": { - "$date": "2020-11-14T01:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "ffc741a6-2099-4d53-bd72-3cddbddd1c02", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T01:07:53.000Z" - }, - "end": { - "$date": "2020-11-14T01:51:01.000Z" - }, - "events": [ - { - "uuid": "d6e8179a-3a0b-4ce6-abb7-263640f655c9", - "start": { - "$date": "2020-11-14T01:07:53.000Z" - }, - "end": { - "$date": "2020-11-14T01:51:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "49eea530-950f-4c70-aa89-bb0a61546e9f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-14T01:48:31.000Z" - }, - "end": { - "$date": "2020-11-14T04:45:57.000Z" - }, - "events": [ - { - "uuid": "6c37f404-76aa-4a45-b339-cd2743db3a32", - "start": { - "$date": "2020-11-14T01:48:31.000Z" - }, - "end": { - "$date": "2020-11-14T04:45:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "519adaa6-1614-4661-8105-0cb154813042", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-14T02:00:21.000Z" - }, - "end": { - "$date": "2020-11-14T02:35:59.000Z" - }, - "events": [ - { - "uuid": "55983289-0a4d-4281-993e-f3ac2faf2c2d", - "start": { - "$date": "2020-11-14T02:00:21.000Z" - }, - "end": { - "$date": "2020-11-14T02:35:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "4e1c6536-2f97-4d69-8d47-100d95c5edea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T02:00:22.000Z" - }, - "end": { - "$date": "2020-11-14T03:03:27.000Z" - }, - "events": [ - { - "uuid": "bd9d0145-17bc-4d6b-9785-91991977b144", - "start": { - "$date": "2020-11-14T02:00:22.000Z" - }, - "end": { - "$date": "2020-11-14T03:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "415750fe-c99c-4f2b-b602-3ca00eea28fa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-14T02:55:46.000Z" - }, - "end": { - "$date": "2020-11-14T03:30:38.000Z" - }, - "events": [ - { - "uuid": "abca7584-71ad-4662-ac0e-85805d720e13", - "start": { - "$date": "2020-11-14T02:55:46.000Z" - }, - "end": { - "$date": "2020-11-14T03:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1170a82-7d2f-4dfa-8e2d-995a2f78c5b9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T02:39:56.000Z" - }, - "end": { - "$date": "2020-11-14T02:41:31.000Z" - }, - "events": [ - { - "uuid": "10c6bd82-5b76-4772-a323-3fe69420b1eb", - "start": { - "$date": "2020-11-14T02:39:56.000Z" - }, - "end": { - "$date": "2020-11-14T02:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84b07fb5-d0c9-4ac9-aa0c-899cf7662e2c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T02:57:17.000Z" - }, - "end": { - "$date": "2020-11-14T03:30:29.000Z" - }, - "events": [ - { - "uuid": "2343eb8b-68f1-4c96-a8e0-13f60e473abc", - "start": { - "$date": "2020-11-14T02:57:17.000Z" - }, - "end": { - "$date": "2020-11-14T03:30:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8fa0e192-1f7f-46ba-ad72-2f39758fec27", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-14T03:04:02.000Z" - }, - "end": { - "$date": "2020-11-14T05:57:03.000Z" - }, - "events": [ - { - "uuid": "5a43b848-6ac1-4ce9-a9a0-2df29048ce45", - "start": { - "$date": "2020-11-14T03:04:02.000Z" - }, - "end": { - "$date": "2020-11-14T05:57:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81bdbe9e-f6b8-4a8f-b11f-7f39f466bf6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-14T03:53:12.000Z" - }, - "end": { - "$date": "2020-11-14T04:27:42.000Z" - }, - "events": [ - { - "uuid": "92f2b2ba-03a1-4155-acec-9ffb52312fdd", - "start": { - "$date": "2020-11-14T03:53:12.000Z" - }, - "end": { - "$date": "2020-11-14T04:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2bcc2ad-1079-4baf-91a0-3200c5435522", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T03:31:51.000Z" - }, - "end": { - "$date": "2020-11-14T03:37:48.000Z" - }, - "events": [ - { - "uuid": "938cfeec-7f57-4a6d-8ab8-d17631706eb0", - "start": { - "$date": "2020-11-14T03:31:51.000Z" - }, - "end": { - "$date": "2020-11-14T03:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "326fbb5d-02e2-4272-9434-dafaa42cd0ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T03:43:57.000Z" - }, - "end": { - "$date": "2020-11-14T03:47:06.000Z" - }, - "events": [ - { - "uuid": "093a7cda-96b5-4402-b4fa-6b2b22203959", - "start": { - "$date": "2020-11-14T03:43:57.000Z" - }, - "end": { - "$date": "2020-11-14T03:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ec3d667-3f71-4c26-a137-164d80a2a73d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T03:47:06.000Z" - }, - "end": { - "$date": "2020-11-14T03:50:38.000Z" - }, - "events": [ - { - "uuid": "55cbd7ac-ae9b-46e9-b1d4-813913da4410", - "start": { - "$date": "2020-11-14T03:47:06.000Z" - }, - "end": { - "$date": "2020-11-14T03:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2168679-245c-4d89-8d84-c44149d77227", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T04:27:40.000Z" - }, - "end": { - "$date": "2020-11-14T04:28:31.000Z" - }, - "events": [ - { - "uuid": "bb958d9b-ccda-497b-b393-5c12d5866972", - "start": { - "$date": "2020-11-14T04:27:40.000Z" - }, - "end": { - "$date": "2020-11-14T04:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6365e825-5800-4ae0-9560-e4e584b1bc25", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-14T04:13:13.000Z" - }, - "end": { - "$date": "2020-11-14T06:48:38.000Z" - }, - "events": [ - { - "uuid": "0b41d602-e31a-41d7-b8c2-2e4981c760d1", - "start": { - "$date": "2020-11-14T04:13:13.000Z" - }, - "end": { - "$date": "2020-11-14T06:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "f459ed47-ee34-44aa-887e-2f47a431a745", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T04:45:37.000Z" - }, - "end": { - "$date": "2020-11-14T08:04:35.000Z" - }, - "events": [ - { - "uuid": "12d9edaa-c3ed-457b-9900-29b70b8bb932", - "start": { - "$date": "2020-11-14T04:45:37.000Z" - }, - "end": { - "$date": "2020-11-14T08:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "625e6c14-2d25-45a5-bd79-19108f51ea09", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T04:59:56.000Z" - }, - "end": { - "$date": "2020-11-14T05:27:29.000Z" - }, - "events": [ - { - "uuid": "05a74dcb-1fa4-4991-94c7-9d62a01d7878", - "start": { - "$date": "2020-11-14T04:59:56.000Z" - }, - "end": { - "$date": "2020-11-14T05:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1e146baf-b241-4193-9b09-6628526205c0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T05:02:00.000Z" - }, - "end": { - "$date": "2020-11-14T05:27:34.000Z" - }, - "events": [ - { - "uuid": "bef19ca4-b963-4a1d-aa07-f592517e1612", - "start": { - "$date": "2020-11-14T05:02:00.000Z" - }, - "end": { - "$date": "2020-11-14T05:27:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa06e568-a05f-41df-9890-78a994958069", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T05:32:47.000Z" - }, - "end": { - "$date": "2020-11-14T05:51:55.000Z" - }, - "events": [ - { - "uuid": "30395792-007b-41a5-aa17-0a811f1db641", - "start": { - "$date": "2020-11-14T05:32:47.000Z" - }, - "end": { - "$date": "2020-11-14T05:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b6704b2-424c-429c-a5ac-4e9d386e7fe5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-14T05:59:00.000Z" - }, - "end": { - "$date": "2020-11-14T06:28:26.000Z" - }, - "events": [ - { - "uuid": "43fcc234-6867-4da4-ab4d-c439c8e716f0", - "start": { - "$date": "2020-11-14T05:59:00.000Z" - }, - "end": { - "$date": "2020-11-14T06:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da872cca-d954-4b14-a9cc-bb0bb86d73e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T05:58:58.000Z" - }, - "end": { - "$date": "2020-11-14T06:28:25.000Z" - }, - "events": [ - { - "uuid": "7cea8ed5-abc0-4339-a151-d5974fc7d7ab", - "start": { - "$date": "2020-11-14T05:58:58.000Z" - }, - "end": { - "$date": "2020-11-14T06:28:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3315923f-83cb-4e99-9940-ef3597a15e8d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-14T06:01:46.000Z" - }, - "end": { - "$date": "2020-11-14T07:01:24.000Z" - }, - "events": [ - { - "uuid": "7a5868bf-0dc4-4c06-940b-469484984dcb", - "start": { - "$date": "2020-11-14T06:01:46.000Z" - }, - "end": { - "$date": "2020-11-14T07:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "5e87911d-92c5-40ff-8826-5003e50db77b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-14T06:22:08.000Z" - }, - "end": { - "$date": "2020-11-14T06:52:24.000Z" - }, - "events": [ - { - "uuid": "e0063189-fa72-4a92-b9e2-d936918c54a3", - "start": { - "$date": "2020-11-14T06:22:08.000Z" - }, - "end": { - "$date": "2020-11-14T06:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2178ea07-d37c-4a25-83f2-90ebe409c503", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T06:31:15.000Z" - }, - "end": { - "$date": "2020-11-14T07:35:38.000Z" - }, - "events": [ - { - "uuid": "c4219686-1381-43e0-aa50-c4ca81c702af", - "start": { - "$date": "2020-11-14T06:31:15.000Z" - }, - "end": { - "$date": "2020-11-14T07:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "63dd7004-c75d-46c5-b061-8bc09f2769b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-14T06:38:13.000Z" - }, - "end": { - "$date": "2020-11-14T07:35:21.000Z" - }, - "events": [ - { - "uuid": "dd00ea15-199d-46c9-ba89-375201c248f2", - "start": { - "$date": "2020-11-14T06:38:13.000Z" - }, - "end": { - "$date": "2020-11-14T07:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7440662-92d4-4539-9736-28115a5c3b6b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-14T06:43:54.000Z" - }, - "end": { - "$date": "2020-11-14T07:39:17.000Z" - }, - "events": [ - { - "uuid": "fa026822-ca6e-4ef9-852c-6fcd01e0fd52", - "start": { - "$date": "2020-11-14T06:43:54.000Z" - }, - "end": { - "$date": "2020-11-14T07:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cafbdcbc-dc32-462b-adf7-e49e25eb2f37", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-14T06:49:52.000Z" - }, - "end": { - "$date": "2020-11-14T07:38:09.000Z" - }, - "events": [ - { - "uuid": "40c8e685-ead8-431e-a6a1-21383aa3d6d9", - "start": { - "$date": "2020-11-14T06:49:52.000Z" - }, - "end": { - "$date": "2020-11-14T07:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36338fe3-0689-4016-93b4-de93f10d4c0c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-14T06:52:57.000Z" - }, - "end": { - "$date": "2020-11-14T07:38:36.000Z" - }, - "events": [ - { - "uuid": "20e1855f-f109-4cd3-90c4-8744b0867f2a", - "start": { - "$date": "2020-11-14T06:52:57.000Z" - }, - "end": { - "$date": "2020-11-14T07:38:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "265ff891-2211-4340-8438-12b932ab13b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-14T07:34:42.000Z" - }, - "end": { - "$date": "2020-11-14T08:01:47.000Z" - }, - "events": [ - { - "uuid": "3f2805cc-96cf-4a61-9d29-e95747edbf2c", - "start": { - "$date": "2020-11-14T07:34:42.000Z" - }, - "end": { - "$date": "2020-11-14T08:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "0c5e2e9a-fab1-49b4-bcf0-1ecc815d5cf6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-14T07:47:09.000Z" - }, - "end": { - "$date": "2020-11-14T08:22:21.000Z" - }, - "events": [ - { - "uuid": "5ee867c9-c628-468d-a5d2-8938ba33032b", - "start": { - "$date": "2020-11-14T07:47:09.000Z" - }, - "end": { - "$date": "2020-11-14T08:22:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "7f7d9e9c-d48a-483b-938b-4575598bd502", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T17:12:50.000Z" - }, - "end": { - "$date": "2020-11-14T17:14:20.000Z" - }, - "events": [ - { - "uuid": "8c769739-f8e9-4a02-a35e-66403d67ddbf", - "start": { - "$date": "2020-11-14T17:12:50.000Z" - }, - "end": { - "$date": "2020-11-14T17:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "138c28b4-a97c-43c1-af16-6325338dbd63", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T17:14:40.000Z" - }, - "end": { - "$date": "2020-11-14T17:49:41.000Z" - }, - "events": [ - { - "uuid": "fc8d3e39-862a-4025-957c-b84378dddefc", - "start": { - "$date": "2020-11-14T17:14:40.000Z" - }, - "end": { - "$date": "2020-11-14T17:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1533a69-a5aa-49e9-8992-bb7c07a50a33", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-14T19:43:09.000Z" - }, - "end": { - "$date": "2020-11-14T20:22:23.000Z" - }, - "events": [ - { - "uuid": "691692df-f937-48a6-92f6-71744ab504fe", - "start": { - "$date": "2020-11-14T19:43:09.000Z" - }, - "end": { - "$date": "2020-11-14T20:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "bc16df75-227e-453f-8176-4a6f8126b617", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T19:44:16.000Z" - }, - "end": { - "$date": "2020-11-14T20:23:42.000Z" - }, - "events": [ - { - "uuid": "e9b324aa-a91a-405d-bd20-37bf0733f6e4", - "start": { - "$date": "2020-11-14T19:44:16.000Z" - }, - "end": { - "$date": "2020-11-14T20:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "70932b99-fdee-4508-83b8-c084685652ea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-14T20:25:13.000Z" - }, - "end": { - "$date": "2020-11-14T23:46:37.000Z" - }, - "events": [ - { - "uuid": "1bea022a-c98a-4153-b602-728fad2e9e16", - "start": { - "$date": "2020-11-14T20:25:13.000Z" - }, - "end": { - "$date": "2020-11-14T23:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c49a32dd-8707-4461-abea-e052f38bf64d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-14T21:26:14.000Z" - }, - "end": { - "$date": "2020-11-14T23:28:11.000Z" - }, - "events": [ - { - "uuid": "d21b0e88-5c8e-4d1e-93a3-74e402faa6b1", - "start": { - "$date": "2020-11-14T21:26:14.000Z" - }, - "end": { - "$date": "2020-11-14T23:28:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "3b77e19a-76c2-4b83-9833-4afd1f304121", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-14T21:58:19.000Z" - }, - "end": { - "$date": "2020-11-15T01:00:54.000Z" - }, - "events": [ - { - "uuid": "2e834d72-542c-4387-a88b-ad12fadd6d9a", - "start": { - "$date": "2020-11-14T21:58:19.000Z" - }, - "end": { - "$date": "2020-11-15T01:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "942ac0ea-9678-4b02-abed-0c27bce3b5c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T22:19:43.000Z" - }, - "end": { - "$date": "2020-11-14T22:21:10.000Z" - }, - "events": [ - { - "uuid": "ad42e895-8614-4171-801f-e5cce62b6c90", - "start": { - "$date": "2020-11-14T22:19:43.000Z" - }, - "end": { - "$date": "2020-11-14T22:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e6807d80-0b96-4e1c-a699-78f01aa0e197", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T22:21:18.000Z" - }, - "end": { - "$date": "2020-11-14T22:22:23.000Z" - }, - "events": [ - { - "uuid": "278e143e-cd30-4165-b4a4-61f5c0058441", - "start": { - "$date": "2020-11-14T22:21:18.000Z" - }, - "end": { - "$date": "2020-11-14T22:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ac1fd664-e9de-4e38-b9f5-443308d0415f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-14T22:53:16.000Z" - }, - "end": { - "$date": "2020-11-14T23:46:25.000Z" - }, - "events": [ - { - "uuid": "f3094cd6-8310-4586-9ec7-3278bfc3b9d8", - "start": { - "$date": "2020-11-14T22:53:16.000Z" - }, - "end": { - "$date": "2020-11-14T23:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "2e90a60e-b4f6-451d-b44f-fb636d5d8fa7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-14T23:18:37.000Z" - }, - "end": { - "$date": "2020-11-15T06:10:50.000Z" - }, - "events": [ - { - "uuid": "3ea59745-f483-4a79-9d94-78788f4d4311", - "start": { - "$date": "2020-11-14T23:18:37.000Z" - }, - "end": { - "$date": "2020-11-15T06:10:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "uuid": "9c1ddaa0-6c1d-465a-9003-21756dc4e67e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-14T23:30:37.000Z" - }, - "end": { - "$date": "2020-11-14T23:35:21.000Z" - }, - "events": [ - { - "uuid": "e126299f-13c3-491d-bfe4-0bfa10fc9506", - "start": { - "$date": "2020-11-14T23:30:37.000Z" - }, - "end": { - "$date": "2020-11-14T23:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "357929ff-1b10-4796-8b87-1c5cdd9781eb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-14T23:36:37.000Z" - }, - "end": { - "$date": "2020-11-14T23:42:47.000Z" - }, - "events": [ - { - "uuid": "c3f39c2d-9e9a-4788-9098-62c19a80d7fc", - "start": { - "$date": "2020-11-14T23:36:37.000Z" - }, - "end": { - "$date": "2020-11-14T23:42:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "9f097eff-a74e-4740-b4ed-922d294c9495", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-14T22:10:36.000Z" - }, - "end": { - "$date": "2020-11-15T02:47:02.000Z" - }, - "events": [ - { - "uuid": "3c006ce5-dbb2-477a-b41d-7b371f692e33", - "start": { - "$date": "2020-11-14T22:10:36.000Z" - }, - "end": { - "$date": "2020-11-14T23:11:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5310c89-158a-4582-a20e-04b88806210e", - "start": { - "$date": "2020-11-14T23:11:36.000Z" - }, - "end": { - "$date": "2020-11-14T23:20:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ffdc3e36-c2fa-498c-9b2b-5ec7a32411b3", - "start": { - "$date": "2020-11-14T23:20:36.000Z" - }, - "end": { - "$date": "2020-11-14T23:47:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3fb58351-13e7-41b2-9a71-7a87b9e10098", - "start": { - "$date": "2020-11-14T23:47:36.000Z" - }, - "end": { - "$date": "2020-11-15T00:18:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3999ce4d-620d-4d2d-b63c-ebd0a540c7af", - "start": { - "$date": "2020-11-15T00:18:36.000Z" - }, - "end": { - "$date": "2020-11-15T02:47:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b4af6f75-b016-4c66-bfd7-bf090843b259", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-15T01:37:04.000Z" - }, - "end": { - "$date": "2020-11-15T02:02:56.000Z" - }, - "events": [ - { - "uuid": "8c049dea-a6c4-4437-b392-b6b8cb7fe9bc", - "start": { - "$date": "2020-11-15T01:37:04.000Z" - }, - "end": { - "$date": "2020-11-15T02:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "6011a443-c5d0-4aad-abd8-e1a1bfaad152", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-15T02:00:03.000Z" - }, - "end": { - "$date": "2020-11-15T03:07:40.000Z" - }, - "events": [ - { - "uuid": "621f75c5-e653-4dbb-b2e2-2c5cb15f3555", - "start": { - "$date": "2020-11-15T02:00:03.000Z" - }, - "end": { - "$date": "2020-11-15T03:07:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "2994e93a-f31e-4f9c-b1bb-34e3dd98d8af", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-15T02:49:30.000Z" - }, - "end": { - "$date": "2020-11-15T07:48:31.000Z" - }, - "events": [ - { - "uuid": "2722c18b-451e-4249-943a-c8eb9790f9aa", - "start": { - "$date": "2020-11-15T02:49:30.000Z" - }, - "end": { - "$date": "2020-11-15T03:44:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85bc6fd8-689e-45cd-9dd0-1d2399a12ba9", - "start": { - "$date": "2020-11-15T03:44:30.000Z" - }, - "end": { - "$date": "2020-11-15T04:13:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd853737-d978-4b62-b0a9-0ce540cffda1", - "start": { - "$date": "2020-11-15T04:13:30.000Z" - }, - "end": { - "$date": "2020-11-15T07:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "00877909-9c78-43d5-8e9f-d6bd46874b7c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-15T03:09:12.000Z" - }, - "end": { - "$date": "2020-11-15T06:30:38.000Z" - }, - "events": [ - { - "uuid": "1ee78d75-9318-432a-a789-365b706ac857", - "start": { - "$date": "2020-11-15T03:09:12.000Z" - }, - "end": { - "$date": "2020-11-15T06:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "ff0ad6c0-f50e-49f3-8a22-250d9435a23b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-15T03:17:52.000Z" - }, - "end": { - "$date": "2020-11-15T04:15:50.000Z" - }, - "events": [ - { - "uuid": "42a6cfe8-55b7-4c0d-b11b-cb18dcbb1dc0", - "start": { - "$date": "2020-11-15T03:17:52.000Z" - }, - "end": { - "$date": "2020-11-15T04:15:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "24b1ca00-aa56-43f2-8e91-2294ad9dc058", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-15T03:35:46.000Z" - }, - "end": { - "$date": "2020-11-15T04:02:31.000Z" - }, - "events": [ - { - "uuid": "ab9337ba-7207-4627-937b-1bda042b33d3", - "start": { - "$date": "2020-11-15T03:35:46.000Z" - }, - "end": { - "$date": "2020-11-15T04:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73dd1b78-995d-4a3d-99e6-f980a46c334e", - "uuid": "06fd0b7d-d6fe-4a40-acf1-fbff4ae58205", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-15T03:58:22.000Z" - }, - "end": { - "$date": "2020-11-15T04:50:47.000Z" - }, - "events": [ - { - "uuid": "e6db3d1a-62a7-4a9c-90b5-daf7fe5c8551", - "start": { - "$date": "2020-11-15T03:58:22.000Z" - }, - "end": { - "$date": "2020-11-15T04:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a0d1a20d-72e5-4be6-ba30-88e6ea7be2d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T04:06:34.000Z" - }, - "end": { - "$date": "2020-11-15T05:23:14.000Z" - }, - "events": [ - { - "uuid": "11f0b1a3-778c-49f6-960c-1d27b2a0d942", - "start": { - "$date": "2020-11-15T04:06:34.000Z" - }, - "end": { - "$date": "2020-11-15T04:59:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c6a9f63-3b75-4788-ae4f-cd7c3d9c4c74", - "start": { - "$date": "2020-11-15T04:59:34.000Z" - }, - "end": { - "$date": "2020-11-15T05:13:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1eaccb09-97da-4402-8838-bcb5e9f67f71", - "start": { - "$date": "2020-11-15T05:13:34.000Z" - }, - "end": { - "$date": "2020-11-15T05:23:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "dd0e0892-1141-47d5-8916-64bd0d340ed3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-15T04:09:24.000Z" - }, - "end": { - "$date": "2020-11-15T05:01:22.000Z" - }, - "events": [ - { - "uuid": "1b619725-30fc-4177-8ccc-bad8dad53109", - "start": { - "$date": "2020-11-15T04:09:24.000Z" - }, - "end": { - "$date": "2020-11-15T05:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "411aaa00-ff73-4d9a-bcf6-addc9d8c7dfd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-15T04:16:37.000Z" - }, - "end": { - "$date": "2020-11-15T06:00:33.000Z" - }, - "events": [ - { - "uuid": "6783c7a0-4679-4a30-8025-61a529f59827", - "start": { - "$date": "2020-11-15T04:16:37.000Z" - }, - "end": { - "$date": "2020-11-15T06:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "72923a15-fb3c-4a2b-be36-93290fef22b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-15T05:01:51.000Z" - }, - "end": { - "$date": "2020-11-15T06:44:09.000Z" - }, - "events": [ - { - "uuid": "8c8bf3fd-aaf7-48d1-933b-73234792a137", - "start": { - "$date": "2020-11-15T05:01:51.000Z" - }, - "end": { - "$date": "2020-11-15T06:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "053cedc7-db96-43d2-a254-93a0196c6381", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-15T05:05:29.000Z" - }, - "end": { - "$date": "2020-11-15T05:15:42.000Z" - }, - "events": [ - { - "uuid": "c28049db-dd15-4373-a156-6c9500d08ea7", - "start": { - "$date": "2020-11-15T05:05:29.000Z" - }, - "end": { - "$date": "2020-11-15T05:15:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "6d3a91db-8dac-4ee5-bc6f-6ba43a454477", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-15T05:51:15.000Z" - }, - "end": { - "$date": "2020-11-15T07:12:54.000Z" - }, - "events": [ - { - "uuid": "04e8cffb-b61c-4793-84fa-2ecdb9bce2f7", - "start": { - "$date": "2020-11-15T05:51:15.000Z" - }, - "end": { - "$date": "2020-11-15T07:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "141cc898-711a-4ba0-9b78-d763d345a752", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-15T06:00:41.000Z" - }, - "end": { - "$date": "2020-11-15T06:33:06.000Z" - }, - "events": [ - { - "uuid": "cfca14ac-be42-45f3-86e3-326864569874", - "start": { - "$date": "2020-11-15T06:00:41.000Z" - }, - "end": { - "$date": "2020-11-15T06:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5303e44e-054b-4422-8d78-7b1981ef458d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-15T07:19:17.000Z" - }, - "end": { - "$date": "2020-11-15T08:29:56.000Z" - }, - "events": [ - { - "uuid": "ce213135-03a9-4652-ba3c-347a167a4984", - "start": { - "$date": "2020-11-15T07:19:17.000Z" - }, - "end": { - "$date": "2020-11-15T08:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "9c72a264-4769-4dc0-a98b-12e2bdc982d3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-15T08:30:24.000Z" - }, - "end": { - "$date": "2020-11-15T13:06:27.000Z" - }, - "events": [ - { - "uuid": "e6c052c6-4484-469b-9e50-580c46079916", - "start": { - "$date": "2020-11-15T08:30:24.000Z" - }, - "end": { - "$date": "2020-11-15T13:06:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "36999454-45f4-4df2-8c51-47dbebc5d061", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-15T15:57:01.000Z" - }, - "end": { - "$date": "2020-11-15T16:35:28.000Z" - }, - "events": [ - { - "uuid": "fc23f39b-a3d4-4e5b-8ffd-db20ebf11563", - "start": { - "$date": "2020-11-15T15:57:01.000Z" - }, - "end": { - "$date": "2020-11-15T16:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6c7e9baa-91cc-4d20-ba44-1ddd113dad22", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-15T16:31:18.000Z" - }, - "end": { - "$date": "2020-11-15T17:32:57.000Z" - }, - "events": [ - { - "uuid": "cb07ab30-e01a-4eb9-a671-4e39b0dbcd91", - "start": { - "$date": "2020-11-15T16:31:18.000Z" - }, - "end": { - "$date": "2020-11-15T17:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "b092572e-0fca-4b9a-841a-740e6b0d6b61", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-15T17:16:46.000Z" - }, - "end": { - "$date": "2020-11-15T17:57:18.000Z" - }, - "events": [ - { - "uuid": "4a58dcd9-ede2-4d93-bddd-4c17c3da343b", - "start": { - "$date": "2020-11-15T17:16:46.000Z" - }, - "end": { - "$date": "2020-11-15T17:57:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ccfdb7ba-05bb-4565-880b-a75842efb807", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-15T19:17:01.000Z" - }, - "end": { - "$date": "2020-11-15T19:32:56.000Z" - }, - "events": [ - { - "uuid": "f073f473-9fe4-4156-919a-aec2b6ee3a04", - "start": { - "$date": "2020-11-15T19:17:01.000Z" - }, - "end": { - "$date": "2020-11-15T19:32:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1d384669-717e-4ece-99e2-eee44ce499b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-15T18:27:44.000Z" - }, - "end": { - "$date": "2020-11-15T19:46:56.000Z" - }, - "events": [ - { - "uuid": "1035c942-50ef-492d-9374-e83de365385a", - "start": { - "$date": "2020-11-15T18:27:44.000Z" - }, - "end": { - "$date": "2020-11-15T19:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3d6b3bc5-3b73-4d0a-a29d-d80257bfe458", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T19:01:04.000Z" - }, - "end": { - "$date": "2020-11-15T19:07:33.000Z" - }, - "events": [ - { - "uuid": "a2a7d043-c1db-4f61-a336-b3809f0a7364", - "start": { - "$date": "2020-11-15T19:01:04.000Z" - }, - "end": { - "$date": "2020-11-15T19:07:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "036e1cc8-11d4-4e16-a2e0-1f6ce89f4d20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T19:10:01.000Z" - }, - "end": { - "$date": "2020-11-15T19:46:29.000Z" - }, - "events": [ - { - "uuid": "02fd2cd6-2252-4809-b5ae-fbe18f6b1f83", - "start": { - "$date": "2020-11-15T19:10:01.000Z" - }, - "end": { - "$date": "2020-11-15T19:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ee41412-d95a-4f5b-832f-eef190795364", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T19:54:55.000Z" - }, - "end": { - "$date": "2020-11-15T20:30:01.000Z" - }, - "events": [ - { - "uuid": "4bc586ad-ca4d-4d1e-af05-1f0061b2d4ef", - "start": { - "$date": "2020-11-15T19:54:55.000Z" - }, - "end": { - "$date": "2020-11-15T20:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3a2b79b-b136-4374-9788-8b97826c8ddb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-15T19:55:46.000Z" - }, - "end": { - "$date": "2020-11-15T20:29:56.000Z" - }, - "events": [ - { - "uuid": "02682e6a-8294-4ef8-8f28-1ba1703de5a5", - "start": { - "$date": "2020-11-15T19:55:46.000Z" - }, - "end": { - "$date": "2020-11-15T20:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3c7604ac-fdd9-4d6f-a87e-ea0bc888c8d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-15T20:21:53.000Z" - }, - "end": { - "$date": "2020-11-15T22:29:33.000Z" - }, - "events": [ - { - "uuid": "04e8705f-bc0b-4efd-8275-1219f3fa63be", - "start": { - "$date": "2020-11-15T20:21:53.000Z" - }, - "end": { - "$date": "2020-11-15T22:29:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bb01bac-5268-470f-a4dc-725464ab9bdb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T20:41:33.000Z" - }, - "end": { - "$date": "2020-11-15T21:24:05.000Z" - }, - "events": [ - { - "uuid": "80421bac-5ae7-49c5-82f1-8b1d1ca62024", - "start": { - "$date": "2020-11-15T20:41:33.000Z" - }, - "end": { - "$date": "2020-11-15T21:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a888e60c-c229-4c9a-bdc6-bdd5be5d5c87", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-15T20:42:23.000Z" - }, - "end": { - "$date": "2020-11-15T21:23:57.000Z" - }, - "events": [ - { - "uuid": "197f9723-dd22-4e1c-a72a-7d5c9963f05d", - "start": { - "$date": "2020-11-15T20:42:23.000Z" - }, - "end": { - "$date": "2020-11-15T21:23:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "646bb5cb-5a77-40d5-b163-538966180651", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-15T20:41:47.000Z" - }, - "end": { - "$date": "2020-11-15T21:24:01.000Z" - }, - "events": [ - { - "uuid": "3aa1c64a-0e3d-4383-b3e4-74b043bc7c3f", - "start": { - "$date": "2020-11-15T20:41:47.000Z" - }, - "end": { - "$date": "2020-11-15T21:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "cd2ed5d9-9ec9-4831-9a0b-ab20404ec9f9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-15T21:18:01.000Z" - }, - "end": { - "$date": "2020-11-15T21:20:27.000Z" - }, - "events": [ - { - "uuid": "b9364fdf-f387-440e-8d69-6ec6fdc1760d", - "start": { - "$date": "2020-11-15T21:18:01.000Z" - }, - "end": { - "$date": "2020-11-15T21:20:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "6431e546-e793-4abd-9acc-c316c7130a94", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-15T21:21:32.000Z" - }, - "end": { - "$date": "2020-11-16T04:24:16.000Z" - }, - "events": [ - { - "uuid": "09cc6cf9-0be4-45d5-b014-e10ae491db0f", - "start": { - "$date": "2020-11-15T21:21:32.000Z" - }, - "end": { - "$date": "2020-11-15T22:48:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de91b5f6-4050-49b6-a6d8-b0ba32fb6805", - "start": { - "$date": "2020-11-15T22:48:32.000Z" - }, - "end": { - "$date": "2020-11-15T22:58:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d82359e4-663b-41ce-8cc9-38af425ea6f0", - "start": { - "$date": "2020-11-15T22:58:32.000Z" - }, - "end": { - "$date": "2020-11-15T23:42:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20e328af-9a21-4ba2-80b4-497b15b1eba0", - "start": { - "$date": "2020-11-15T23:42:32.000Z" - }, - "end": { - "$date": "2020-11-15T23:45:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5186af77-5fda-40d0-94d3-0c69cffb3688", - "start": { - "$date": "2020-11-15T23:45:32.000Z" - }, - "end": { - "$date": "2020-11-16T00:03:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2642a71-0c20-48ff-9639-9bb30d5c4969", - "start": { - "$date": "2020-11-16T00:03:32.000Z" - }, - "end": { - "$date": "2020-11-16T00:30:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "684baf1a-b1eb-45a0-ab01-259fcc789104", - "start": { - "$date": "2020-11-16T00:30:32.000Z" - }, - "end": { - "$date": "2020-11-16T03:48:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "769bc13f-4211-439c-832d-e98b2451ae53", - "start": { - "$date": "2020-11-16T03:48:32.000Z" - }, - "end": { - "$date": "2020-11-16T03:53:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43136b81-5709-4d54-8aa0-59978a44b9df", - "start": { - "$date": "2020-11-16T03:53:32.000Z" - }, - "end": { - "$date": "2020-11-16T04:24:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e709758-58ae-48d7-a9a0-358f6cc17be0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T21:26:44.000Z" - }, - "end": { - "$date": "2020-11-15T21:59:41.000Z" - }, - "events": [ - { - "uuid": "0dd25089-1744-407e-adbc-139de1b8fb6a", - "start": { - "$date": "2020-11-15T21:26:44.000Z" - }, - "end": { - "$date": "2020-11-15T21:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8a0b131-9cac-4777-b2ac-31c744abc869", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-15T21:27:38.000Z" - }, - "end": { - "$date": "2020-11-15T21:59:43.000Z" - }, - "events": [ - { - "uuid": "e8e1ed7c-01c0-43e9-b07c-d16b7da92fac", - "start": { - "$date": "2020-11-15T21:27:38.000Z" - }, - "end": { - "$date": "2020-11-15T21:59:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2e6add2-efd2-48a9-a6d3-64b018c35c5d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-15T21:59:58.000Z" - }, - "end": { - "$date": "2020-11-15T21:59:49.000Z" - }, - "events": [ - { - "uuid": "5f9ca52e-b310-4db0-a985-cb34c2bb7139", - "start": { - "$date": "2020-11-15T21:59:58.000Z" - }, - "end": { - "$date": "2020-11-15T21:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5408dbe-ecfa-4d83-bd8c-91cb9a508350", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-15T22:08:17.000Z" - }, - "end": { - "$date": "2020-11-15T22:37:44.000Z" - }, - "events": [ - { - "uuid": "1090010f-5098-4d27-bc44-c580fafbb574", - "start": { - "$date": "2020-11-15T22:08:17.000Z" - }, - "end": { - "$date": "2020-11-15T22:37:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbbec120-b911-4aea-96bd-a51b5fc57e7d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-15T22:09:47.000Z" - }, - "end": { - "$date": "2020-11-15T22:37:41.000Z" - }, - "events": [ - { - "uuid": "64a04181-20f4-4bc8-991e-e8ddeac7f640", - "start": { - "$date": "2020-11-15T22:09:47.000Z" - }, - "end": { - "$date": "2020-11-15T22:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5fac8c7e-d6b2-4edc-866c-4d9a0c890a3e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-15T22:08:34.000Z" - }, - "end": { - "$date": "2020-11-15T22:37:49.000Z" - }, - "events": [ - { - "uuid": "8d753b47-7e2a-4a90-aec0-142878b461e8", - "start": { - "$date": "2020-11-15T22:08:34.000Z" - }, - "end": { - "$date": "2020-11-15T22:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4da219d0-4ba3-4af4-a036-68839dd33d38", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-15T22:40:24.000Z" - }, - "end": { - "$date": "2020-11-15T22:47:39.000Z" - }, - "events": [ - { - "uuid": "390b92e1-7642-48d7-8efb-f533c523ae28", - "start": { - "$date": "2020-11-15T22:40:24.000Z" - }, - "end": { - "$date": "2020-11-15T22:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a63cf9cc-6bd7-4415-aef2-f5488c54c589", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-15T23:26:26.000Z" - }, - "end": { - "$date": "2020-11-16T00:01:36.000Z" - }, - "events": [ - { - "uuid": "a5e68e80-b366-4975-973d-980ece1c2094", - "start": { - "$date": "2020-11-15T23:26:26.000Z" - }, - "end": { - "$date": "2020-11-16T00:01:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "c1a4b051-0bb2-4208-b849-efceb7e286ae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-15T23:49:07.000Z" - }, - "end": { - "$date": "2020-11-16T01:26:06.000Z" - }, - "events": [ - { - "uuid": "eb0ac2e5-911b-40c8-afa9-66f1751dd1ad", - "start": { - "$date": "2020-11-15T23:49:07.000Z" - }, - "end": { - "$date": "2020-11-16T01:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43124477-beb3-450f-8b29-4a67d2fe601c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T00:02:06.000Z" - }, - "end": { - "$date": "2020-11-16T00:09:52.000Z" - }, - "events": [ - { - "uuid": "b3cc2165-6aed-447e-b5b1-e111347b5798", - "start": { - "$date": "2020-11-16T00:02:06.000Z" - }, - "end": { - "$date": "2020-11-16T00:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "358cea73-4496-44ca-94f3-dd59123c8aa9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-16T00:04:20.000Z" - }, - "end": { - "$date": "2020-11-16T02:04:29.000Z" - }, - "events": [ - { - "uuid": "919cf8a1-bda1-4eb8-b968-df8cb6629296", - "start": { - "$date": "2020-11-16T00:04:20.000Z" - }, - "end": { - "$date": "2020-11-16T01:32:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8327ff09-0e05-4d49-b881-f85e14a40561", - "start": { - "$date": "2020-11-16T01:32:20.000Z" - }, - "end": { - "$date": "2020-11-16T01:40:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0756a5ff-4d8c-4c51-ad04-664bda6c76b6", - "start": { - "$date": "2020-11-16T01:40:20.000Z" - }, - "end": { - "$date": "2020-11-16T02:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a098773e-5871-4c4c-b835-67c99d4867d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-16T00:24:44.000Z" - }, - "end": { - "$date": "2020-11-16T00:35:01.000Z" - }, - "events": [ - { - "uuid": "2bd9f6cf-37c7-4ad2-9cce-4f014f44b056", - "start": { - "$date": "2020-11-16T00:24:44.000Z" - }, - "end": { - "$date": "2020-11-16T00:35:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "2c8ff2a2-6f77-428e-aab1-970bac8f6243", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-16T00:24:29.000Z" - }, - "end": { - "$date": "2020-11-16T01:34:02.000Z" - }, - "events": [ - { - "uuid": "e921d750-4f26-466d-9825-8ca2d9c9e264", - "start": { - "$date": "2020-11-16T00:24:29.000Z" - }, - "end": { - "$date": "2020-11-16T01:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "b11bc5fd-3a76-4efd-8a56-8b6cfcdb7bc2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-16T00:29:42.000Z" - }, - "end": { - "$date": "2020-11-16T02:11:44.000Z" - }, - "events": [ - { - "uuid": "caf2b8df-0eed-4c92-8712-94f52ab80e76", - "start": { - "$date": "2020-11-16T00:29:42.000Z" - }, - "end": { - "$date": "2020-11-16T02:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f0c4a2c1-27d0-43b0-beee-21d379ad6e9f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-16T00:35:26.000Z" - }, - "end": { - "$date": "2020-11-16T00:46:55.000Z" - }, - "events": [ - { - "uuid": "b24535ec-62c9-44c9-881a-f8fab25ea4d8", - "start": { - "$date": "2020-11-16T00:35:26.000Z" - }, - "end": { - "$date": "2020-11-16T00:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94b4e01a-88d8-4bfa-802e-3ca2d44057e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T02:09:04.000Z" - }, - "end": { - "$date": "2020-11-16T02:44:16.000Z" - }, - "events": [ - { - "uuid": "a6e861c3-6d7f-47ef-a8ea-9f89b5d57453", - "start": { - "$date": "2020-11-16T02:09:04.000Z" - }, - "end": { - "$date": "2020-11-16T02:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5cad9a3-bb83-46cf-bbd6-f0244d40dc03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T02:50:15.000Z" - }, - "end": { - "$date": "2020-11-16T03:30:39.000Z" - }, - "events": [ - { - "uuid": "78448302-3920-4aa0-8ea4-a89ee8874edd", - "start": { - "$date": "2020-11-16T02:50:15.000Z" - }, - "end": { - "$date": "2020-11-16T03:30:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "906883b4-bff5-4761-81cb-ef2b77459069", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-16T02:48:12.000Z" - }, - "end": { - "$date": "2020-11-16T03:41:59.000Z" - }, - "events": [ - { - "uuid": "3269146b-88b2-4302-b80a-d81e852418c5", - "start": { - "$date": "2020-11-16T02:48:12.000Z" - }, - "end": { - "$date": "2020-11-16T03:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5c8dd360-33c3-40c5-8f68-3564af5b4c0d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-16T03:06:45.000Z" - }, - "end": { - "$date": "2020-11-16T04:10:09.000Z" - }, - "events": [ - { - "uuid": "38bd8f94-3efd-46d7-adcb-088948f3998e", - "start": { - "$date": "2020-11-16T03:06:45.000Z" - }, - "end": { - "$date": "2020-11-16T04:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "903bb364-2bc8-44ac-973b-15d4f734a729", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-16T03:09:45.000Z" - }, - "end": { - "$date": "2020-11-16T04:01:46.000Z" - }, - "events": [ - { - "uuid": "cddd4dbc-6810-43ca-8e3f-4082eb668bb4", - "start": { - "$date": "2020-11-16T03:09:45.000Z" - }, - "end": { - "$date": "2020-11-16T04:01:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "838d1fd6-fcd3-4a77-b3a1-9d584503e586", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-16T03:22:44.000Z" - }, - "end": { - "$date": "2020-11-16T04:16:02.000Z" - }, - "events": [ - { - "uuid": "9917e096-b505-48b7-a525-1c809b5018bf", - "start": { - "$date": "2020-11-16T03:22:44.000Z" - }, - "end": { - "$date": "2020-11-16T04:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "932b43b9-ed84-4ff1-99c9-821ed5268698", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T03:31:10.000Z" - }, - "end": { - "$date": "2020-11-16T05:33:03.000Z" - }, - "events": [ - { - "uuid": "34de4cea-d98d-42ea-a5ee-d0526c9c7c95", - "start": { - "$date": "2020-11-16T03:31:10.000Z" - }, - "end": { - "$date": "2020-11-16T03:40:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc53dbed-a8fb-471e-b6fa-3b1515c13d04", - "start": { - "$date": "2020-11-16T03:40:10.000Z" - }, - "end": { - "$date": "2020-11-16T05:33:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "c4e0beca-212e-4153-99d8-aa6e96b0b322", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-16T03:55:13.000Z" - }, - "end": { - "$date": "2020-11-16T04:56:51.000Z" - }, - "events": [ - { - "uuid": "84ee9821-ad55-4633-b829-fd4eb0dbb33d", - "start": { - "$date": "2020-11-16T03:55:13.000Z" - }, - "end": { - "$date": "2020-11-16T04:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae4feafe-4103-4bdd-83dc-63a1b3ce0bb1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-16T04:21:19.000Z" - }, - "end": { - "$date": "2020-11-16T06:25:17.000Z" - }, - "events": [ - { - "uuid": "009016ed-80e2-4233-8077-a7fcc47e9c47", - "start": { - "$date": "2020-11-16T04:21:19.000Z" - }, - "end": { - "$date": "2020-11-16T06:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "4df8eb4e-9655-4841-93ce-afe4f571e764", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-16T04:27:03.000Z" - }, - "end": { - "$date": "2020-11-16T06:10:29.000Z" - }, - "events": [ - { - "uuid": "33d0e493-dd33-4965-a4d3-150eab2a03b5", - "start": { - "$date": "2020-11-16T04:27:03.000Z" - }, - "end": { - "$date": "2020-11-16T06:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7437b32c-279c-494c-835b-4275b9b070bc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-16T04:50:53.000Z" - }, - "end": { - "$date": "2020-11-16T07:11:40.000Z" - }, - "events": [ - { - "uuid": "5ed5e766-deac-4b84-b5d8-ab86801ebddd", - "start": { - "$date": "2020-11-16T04:50:53.000Z" - }, - "end": { - "$date": "2020-11-16T07:11:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a25a9213-18c4-491c-9ee9-677bce1472f5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-16T04:57:06.000Z" - }, - "end": { - "$date": "2020-11-16T07:34:58.000Z" - }, - "events": [ - { - "uuid": "a1d19338-fb30-4468-aa82-9bb3ee2c7e7d", - "start": { - "$date": "2020-11-16T04:57:06.000Z" - }, - "end": { - "$date": "2020-11-16T07:34:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3970b598-3d22-4638-a51d-c6ad5e778380", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-16T04:59:08.000Z" - }, - "end": { - "$date": "2020-11-16T08:21:58.000Z" - }, - "events": [ - { - "uuid": "801d057d-af79-4ef3-9d09-ab7e597cefef", - "start": { - "$date": "2020-11-16T04:59:08.000Z" - }, - "end": { - "$date": "2020-11-16T08:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5bf615a7-d9b4-4779-bacd-9e589b2bcb79", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T05:36:31.000Z" - }, - "end": { - "$date": "2020-11-16T07:09:33.000Z" - }, - "events": [ - { - "uuid": "a6fc603c-2168-4149-88b9-3e460f180ab9", - "start": { - "$date": "2020-11-16T05:36:31.000Z" - }, - "end": { - "$date": "2020-11-16T05:41:31.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "daf7f66f-ebc9-41ed-a4cb-27be2455bb15", - "start": { - "$date": "2020-11-16T05:41:31.000Z" - }, - "end": { - "$date": "2020-11-16T07:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "b223bb9f-c21f-4816-9d34-450c1ec5f9a5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-16T05:54:02.000Z" - }, - "end": { - "$date": "2020-11-16T07:48:26.000Z" - }, - "events": [ - { - "uuid": "7b9aac31-59e0-48d6-91ba-5e2a0603dabe", - "start": { - "$date": "2020-11-16T05:54:02.000Z" - }, - "end": { - "$date": "2020-11-16T07:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a4c31ef0-94a1-4421-895a-0e568dcced5a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-16T06:08:55.000Z" - }, - "end": { - "$date": "2020-11-16T06:21:41.000Z" - }, - "events": [ - { - "uuid": "e675982f-ec3d-46c9-816a-7245a65e02c8", - "start": { - "$date": "2020-11-16T06:08:55.000Z" - }, - "end": { - "$date": "2020-11-16T06:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fe3894a9-e3a3-4a39-a593-a85fd6782b6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-16T06:14:00.000Z" - }, - "end": { - "$date": "2020-11-16T06:27:56.000Z" - }, - "events": [ - { - "uuid": "972652b9-26ba-4315-af43-0ce2ea55ae95", - "start": { - "$date": "2020-11-16T06:14:00.000Z" - }, - "end": { - "$date": "2020-11-16T06:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "9fbb4320-be9d-484e-b59b-82299e8d18a9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-16T06:22:06.000Z" - }, - "end": { - "$date": "2020-11-16T06:23:17.000Z" - }, - "events": [ - { - "uuid": "fd88375b-1c93-4195-b6ae-322a76a35e7e", - "start": { - "$date": "2020-11-16T06:22:06.000Z" - }, - "end": { - "$date": "2020-11-16T06:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d73047e1-7540-4a55-a79e-b679cf3dc51d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-16T06:25:38.000Z" - }, - "end": { - "$date": "2020-11-16T07:11:50.000Z" - }, - "events": [ - { - "uuid": "161be11b-81ca-4610-bb0c-0fac371ce88e", - "start": { - "$date": "2020-11-16T06:25:38.000Z" - }, - "end": { - "$date": "2020-11-16T06:26:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2384f1b-570d-40e1-af47-e90de659b891", - "start": { - "$date": "2020-11-16T06:26:38.000Z" - }, - "end": { - "$date": "2020-11-16T07:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26c76286-b5cd-4a0f-80dd-9c5e40f2819b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T18:11:33.000Z" - }, - "end": { - "$date": "2020-11-16T18:29:14.000Z" - }, - "events": [ - { - "uuid": "45ee94d1-bece-43a3-a1f5-28ddb96a67b8", - "start": { - "$date": "2020-11-16T18:11:33.000Z" - }, - "end": { - "$date": "2020-11-16T18:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a7c548a1-6455-455f-842f-c999d8367063", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-16T18:13:57.000Z" - }, - "end": { - "$date": "2020-11-16T18:56:27.000Z" - }, - "events": [ - { - "uuid": "4d86fdae-cfbd-44f2-a27d-bfe3b86ac3d8", - "start": { - "$date": "2020-11-16T18:13:57.000Z" - }, - "end": { - "$date": "2020-11-16T18:34:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bdcd0c5e-5d62-4520-90c2-788f2eb6b1f0", - "start": { - "$date": "2020-11-16T18:34:57.000Z" - }, - "end": { - "$date": "2020-11-16T18:37:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92204962-c308-4d98-bd8c-557ecaac518d", - "start": { - "$date": "2020-11-16T18:37:57.000Z" - }, - "end": { - "$date": "2020-11-16T18:56:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20df3d3c-263c-4a0e-a6d0-bd40fd6670b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T18:32:33.000Z" - }, - "end": { - "$date": "2020-11-16T18:52:40.000Z" - }, - "events": [ - { - "uuid": "f2582b8d-2c2c-4810-b8e8-5d08e140e0d0", - "start": { - "$date": "2020-11-16T18:32:33.000Z" - }, - "end": { - "$date": "2020-11-16T18:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9febd245-aa03-4eeb-aebf-aad5df23c635", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-16T20:15:29.000Z" - }, - "end": { - "$date": "2020-11-16T20:52:22.000Z" - }, - "events": [ - { - "uuid": "0d45928b-1356-4d9b-a042-39b4d1e6d26e", - "start": { - "$date": "2020-11-16T20:15:29.000Z" - }, - "end": { - "$date": "2020-11-16T20:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78972fba-2dea-48ca-b84b-b34d2043bab8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-16T21:03:17.000Z" - }, - "end": { - "$date": "2020-11-16T21:35:57.000Z" - }, - "events": [ - { - "uuid": "e91409a7-41a2-4936-a5c1-f232e01d5888", - "start": { - "$date": "2020-11-16T21:03:17.000Z" - }, - "end": { - "$date": "2020-11-16T21:35:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "de515ffa-2e46-4faf-8909-d3f66c0de6f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-16T23:33:47.000Z" - }, - "end": { - "$date": "2020-11-17T00:03:04.000Z" - }, - "events": [ - { - "uuid": "c52b0451-333a-4f29-af0a-01db5528e66e", - "start": { - "$date": "2020-11-16T23:33:47.000Z" - }, - "end": { - "$date": "2020-11-17T00:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c26d28c-f67f-4e8d-8ce8-9bd913d2e5a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-17T00:16:31.000Z" - }, - "end": { - "$date": "2020-11-17T00:58:04.000Z" - }, - "events": [ - { - "uuid": "67afb95e-0a21-4223-94c5-3ec791d09d8b", - "start": { - "$date": "2020-11-17T00:16:31.000Z" - }, - "end": { - "$date": "2020-11-17T00:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "419ebba1-cfbf-42c1-873e-a2860a3bd41e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-17T00:23:39.000Z" - }, - "end": { - "$date": "2020-11-17T03:24:44.000Z" - }, - "events": [ - { - "uuid": "c05cb6aa-7e4a-466b-bca1-ca15c5854607", - "start": { - "$date": "2020-11-17T00:23:39.000Z" - }, - "end": { - "$date": "2020-11-17T01:39:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aeac69f4-e1ae-43fd-bf1d-f6c8b3bbd350", - "start": { - "$date": "2020-11-17T01:39:39.000Z" - }, - "end": { - "$date": "2020-11-17T02:12:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cfc487df-1420-467b-90a1-a115c74e33fb", - "start": { - "$date": "2020-11-17T02:12:39.000Z" - }, - "end": { - "$date": "2020-11-17T03:09:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b814f5d3-e6e1-4c32-910d-611203ea2b50", - "start": { - "$date": "2020-11-17T03:09:39.000Z" - }, - "end": { - "$date": "2020-11-17T03:14:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6fdfa513-8ab5-44f5-821b-cfaa38f55e54", - "start": { - "$date": "2020-11-17T03:14:39.000Z" - }, - "end": { - "$date": "2020-11-17T03:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "4c7522a0-3390-47dc-b1d6-2334ab98cc24", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-17T00:39:29.000Z" - }, - "end": { - "$date": "2020-11-17T03:39:08.000Z" - }, - "events": [ - { - "uuid": "12401560-02bc-4a51-8569-14a7ed771559", - "start": { - "$date": "2020-11-17T00:39:29.000Z" - }, - "end": { - "$date": "2020-11-17T03:39:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6943d353-0fbb-46e6-9176-9ee999a6c5dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T00:42:00.000Z" - }, - "end": { - "$date": "2020-11-17T00:59:05.000Z" - }, - "events": [ - { - "uuid": "c0d25e23-3a51-453d-be64-b1c708750ec5", - "start": { - "$date": "2020-11-17T00:42:00.000Z" - }, - "end": { - "$date": "2020-11-17T00:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "720ead55-9b68-49cc-b8c8-68aeee068cfc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T01:14:47.000Z" - }, - "end": { - "$date": "2020-11-17T01:51:23.000Z" - }, - "events": [ - { - "uuid": "10ea0c38-0774-48cf-b8ba-e69ee5b375f8", - "start": { - "$date": "2020-11-17T01:14:47.000Z" - }, - "end": { - "$date": "2020-11-17T01:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2597b5af-6930-4aa9-83d7-6adeb6328445", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T03:07:52.000Z" - }, - "end": { - "$date": "2020-11-17T03:07:36.000Z" - }, - "events": [ - { - "uuid": "2e450796-b6a5-4133-a622-2e7d1d716959", - "start": { - "$date": "2020-11-17T03:07:52.000Z" - }, - "end": { - "$date": "2020-11-17T03:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "baa2b73b-7fd4-458a-a9a3-e5995ac62435", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-17T02:51:57.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:09.000Z" - }, - "events": [ - { - "uuid": "f9dce5a9-9b32-45d6-ad76-fa04ac3c8d62", - "start": { - "$date": "2020-11-17T02:51:57.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "63e07531-ec81-4d0a-ba70-07a332b7bc31", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-17T03:19:09.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:13.000Z" - }, - "events": [ - { - "uuid": "9fbb3bcf-e7d3-4eec-bafb-a6d8ea2f3591", - "start": { - "$date": "2020-11-17T03:19:09.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f5dcf08d-96d3-4b47-8fae-fbcc950b7bdc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-17T02:58:22.000Z" - }, - "end": { - "$date": "2020-11-17T03:11:55.000Z" - }, - "events": [ - { - "uuid": "dbeff5f7-9a2a-4e31-8fc3-19c51fdb0e60", - "start": { - "$date": "2020-11-17T02:58:22.000Z" - }, - "end": { - "$date": "2020-11-17T03:11:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "740826d6-3f87-4208-b9fb-1e365bd4dc03", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-17T03:07:15.000Z" - }, - "end": { - "$date": "2020-11-17T03:09:04.000Z" - }, - "events": [ - { - "uuid": "a18aa9b8-79a4-43ae-9178-99631ee1efe9", - "start": { - "$date": "2020-11-17T03:07:15.000Z" - }, - "end": { - "$date": "2020-11-17T03:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6617f033-2685-435a-b291-3afee8885a24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T03:09:22.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:02.000Z" - }, - "events": [ - { - "uuid": "153faa49-96e8-4355-983b-db9619e5cfe7", - "start": { - "$date": "2020-11-17T03:09:22.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "624c9db6-6d6c-4049-b1ea-bd8b30435775", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-17T03:12:15.000Z" - }, - "end": { - "$date": "2020-11-17T04:33:57.000Z" - }, - "events": [ - { - "uuid": "2bced0c1-0520-4425-bc17-4f8c12c14ed3", - "start": { - "$date": "2020-11-17T03:12:15.000Z" - }, - "end": { - "$date": "2020-11-17T04:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df5aabc9-b36e-4c3d-8514-9c33aa6e4135", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-17T03:12:26.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:10.000Z" - }, - "events": [ - { - "uuid": "27010a07-2632-4819-bfaf-f76e91b58e5b", - "start": { - "$date": "2020-11-17T03:12:26.000Z" - }, - "end": { - "$date": "2020-11-17T04:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8b5644a8-2f37-451c-a9e4-c2b30d813cfb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-17T03:24:59.000Z" - }, - "end": { - "$date": "2020-11-17T03:28:29.000Z" - }, - "events": [ - { - "uuid": "cd8421b0-d272-4624-8637-aafd7b90e639", - "start": { - "$date": "2020-11-17T03:24:59.000Z" - }, - "end": { - "$date": "2020-11-17T03:28:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "734a92fe-d0ed-406f-8b2f-41ed8832075c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-17T03:30:49.000Z" - }, - "end": { - "$date": "2020-11-17T04:15:06.000Z" - }, - "events": [ - { - "uuid": "5568bdfe-735c-49df-9b5b-14dd2623d0e0", - "start": { - "$date": "2020-11-17T03:30:49.000Z" - }, - "end": { - "$date": "2020-11-17T04:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b1cde4e1-308a-4c1a-8fb1-1663949470c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-17T03:35:39.000Z" - }, - "end": { - "$date": "2020-11-17T04:00:45.000Z" - }, - "events": [ - { - "uuid": "4dd849a9-88ff-4066-9333-8556b20c1185", - "start": { - "$date": "2020-11-17T03:35:39.000Z" - }, - "end": { - "$date": "2020-11-17T04:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "1ef8c70e-8c2e-44c8-846c-db62b55e3422", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-17T04:11:48.000Z" - }, - "end": { - "$date": "2020-11-17T06:23:51.000Z" - }, - "events": [ - { - "uuid": "e330a62b-6b25-48b8-b97c-f90a7ef99040", - "start": { - "$date": "2020-11-17T04:11:48.000Z" - }, - "end": { - "$date": "2020-11-17T06:23:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f9b03fe0-5696-4b43-a6b3-526c272a5204", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-17T04:15:30.000Z" - }, - "end": { - "$date": "2020-11-17T05:53:32.000Z" - }, - "events": [ - { - "uuid": "a4f0a591-9755-4525-b2f4-d4cf81d5d231", - "start": { - "$date": "2020-11-17T04:15:30.000Z" - }, - "end": { - "$date": "2020-11-17T05:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "95f9c6ba-039b-40be-96cd-a1f81901c212", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-17T04:38:16.000Z" - }, - "end": { - "$date": "2020-11-17T04:58:24.000Z" - }, - "events": [ - { - "uuid": "6a43df45-645b-4c9f-b0b5-61f8790b57eb", - "start": { - "$date": "2020-11-17T04:38:16.000Z" - }, - "end": { - "$date": "2020-11-17T04:58:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d6f0ba4-2b61-420a-b0f9-5d3b635bb0b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T05:29:50.000Z" - }, - "end": { - "$date": "2020-11-17T05:45:03.000Z" - }, - "events": [ - { - "uuid": "338ca333-bd6a-41dd-b5a7-b157dbaaa431", - "start": { - "$date": "2020-11-17T05:29:50.000Z" - }, - "end": { - "$date": "2020-11-17T05:45:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b164014-3d1d-4967-b0e8-e74dab011fe4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T05:50:45.000Z" - }, - "end": { - "$date": "2020-11-17T06:26:28.000Z" - }, - "events": [ - { - "uuid": "c9317843-4368-4e6d-ab69-deb1f32bc977", - "start": { - "$date": "2020-11-17T05:50:45.000Z" - }, - "end": { - "$date": "2020-11-17T06:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "41645194-907b-4824-9cbc-5957a8e6049a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-17T05:54:12.000Z" - }, - "end": { - "$date": "2020-11-17T07:11:04.000Z" - }, - "events": [ - { - "uuid": "ea5cfea5-ad96-41af-8513-e383f0202e9b", - "start": { - "$date": "2020-11-17T05:54:12.000Z" - }, - "end": { - "$date": "2020-11-17T07:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "eed76c4c-c370-42e0-bd4e-3c8ccf97d277", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-17T06:19:08.000Z" - }, - "end": { - "$date": "2020-11-17T09:54:29.000Z" - }, - "events": [ - { - "uuid": "74465aef-0be6-4419-ae5c-a09df02a08f9", - "start": { - "$date": "2020-11-17T06:19:08.000Z" - }, - "end": { - "$date": "2020-11-17T09:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67d6606f-e825-4058-a174-f8cf37f4ecd1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T06:34:42.000Z" - }, - "end": { - "$date": "2020-11-17T07:02:17.000Z" - }, - "events": [ - { - "uuid": "eaadca82-d1cd-4d87-913d-ac6e6f2f857a", - "start": { - "$date": "2020-11-17T06:34:42.000Z" - }, - "end": { - "$date": "2020-11-17T07:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e755dfd-77d4-40a4-ae15-2b0c39d2896b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-17T21:51:57.000Z" - }, - "end": { - "$date": "2020-11-17T22:49:25.000Z" - }, - "events": [ - { - "uuid": "f15c28ff-62e8-4774-92df-dfdc59812bd2", - "start": { - "$date": "2020-11-17T21:51:57.000Z" - }, - "end": { - "$date": "2020-11-17T22:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02c9eb5d-750a-49b1-947f-d39ca9f33426", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-17T23:06:12.000Z" - }, - "end": { - "$date": "2020-11-17T23:45:19.000Z" - }, - "events": [ - { - "uuid": "0b147e9f-3e4e-40e3-9753-595bb183e2e7", - "start": { - "$date": "2020-11-17T23:06:12.000Z" - }, - "end": { - "$date": "2020-11-17T23:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ee178d6d-3626-4e3c-9b4f-248839368c3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-17T23:44:33.000Z" - }, - "end": { - "$date": "2020-11-18T00:27:17.000Z" - }, - "events": [ - { - "uuid": "73db09fd-0479-4e3b-8cb0-4a0395cc183e", - "start": { - "$date": "2020-11-17T23:44:33.000Z" - }, - "end": { - "$date": "2020-11-18T00:27:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7db4c0e4-2c25-4788-8edd-9fa8c5f2898e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T00:24:15.000Z" - }, - "end": { - "$date": "2020-11-18T00:52:36.000Z" - }, - "events": [ - { - "uuid": "fd287af5-f1c1-4e7f-8861-a46ce4e8ffda", - "start": { - "$date": "2020-11-18T00:24:15.000Z" - }, - "end": { - "$date": "2020-11-18T00:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "cb37da07-88e6-466b-8db8-22ba2a4ca4c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-18T00:27:47.000Z" - }, - "end": { - "$date": "2020-11-18T02:26:10.000Z" - }, - "events": [ - { - "uuid": "c1258d25-2415-439a-b538-c3ab0ab0cd5a", - "start": { - "$date": "2020-11-18T00:27:47.000Z" - }, - "end": { - "$date": "2020-11-18T02:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e218071f-291e-4e8a-8717-34252366fdbd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-18T01:08:57.000Z" - }, - "end": { - "$date": "2020-11-18T01:38:44.000Z" - }, - "events": [ - { - "uuid": "b0d81338-a8b8-4907-93db-bc1d6fd29bf3", - "start": { - "$date": "2020-11-18T01:08:57.000Z" - }, - "end": { - "$date": "2020-11-18T01:38:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "467ad001-9b82-47d5-b0e1-3a8f173de378", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T01:29:18.000Z" - }, - "end": { - "$date": "2020-11-18T01:47:53.000Z" - }, - "events": [ - { - "uuid": "dbbd5526-f8d9-42b3-82e7-bd3d88719308", - "start": { - "$date": "2020-11-18T01:29:18.000Z" - }, - "end": { - "$date": "2020-11-18T01:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf269259-a9d7-4109-b360-d6cbd3c6cb43", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T01:47:07.000Z" - }, - "end": { - "$date": "2020-11-18T02:13:16.000Z" - }, - "events": [ - { - "uuid": "f932e0d1-2b67-4c82-9601-c30010ccf5ec", - "start": { - "$date": "2020-11-18T01:47:07.000Z" - }, - "end": { - "$date": "2020-11-18T02:13:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24e1c223-c51a-4046-9327-8e1f4fe46b24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T02:17:19.000Z" - }, - "end": { - "$date": "2020-11-18T02:35:59.000Z" - }, - "events": [ - { - "uuid": "a16a4697-235b-45ec-92a9-2e4c03be90c0", - "start": { - "$date": "2020-11-18T02:17:19.000Z" - }, - "end": { - "$date": "2020-11-18T02:35:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "42ee4f0a-33c6-4e63-8d8e-8d742e34ed3e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T02:28:30.000Z" - }, - "end": { - "$date": "2020-11-18T02:59:27.000Z" - }, - "events": [ - { - "uuid": "6cb803c1-7b59-40fb-be59-882afcfd8514", - "start": { - "$date": "2020-11-18T02:28:30.000Z" - }, - "end": { - "$date": "2020-11-18T02:59:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1012f5b8-527d-400f-b36b-561b0e81552f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-18T02:28:35.000Z" - }, - "end": { - "$date": "2020-11-18T02:30:07.000Z" - }, - "events": [ - { - "uuid": "ba71109d-c8d1-469e-abbe-7452b02d3542", - "start": { - "$date": "2020-11-18T02:28:35.000Z" - }, - "end": { - "$date": "2020-11-18T02:30:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f158df6b-5130-4329-8faf-121e75711105", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-18T02:32:06.000Z" - }, - "end": { - "$date": "2020-11-18T04:26:47.000Z" - }, - "events": [ - { - "uuid": "b49dec5d-899d-439c-848f-992247885172", - "start": { - "$date": "2020-11-18T02:32:06.000Z" - }, - "end": { - "$date": "2020-11-18T04:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1eda09b-b607-453e-ad61-df2d3e0c2c98", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T02:40:05.000Z" - }, - "end": { - "$date": "2020-11-18T03:00:24.000Z" - }, - "events": [ - { - "uuid": "769dd6ef-ab09-4f69-b45a-fce6f344a7b6", - "start": { - "$date": "2020-11-18T02:40:05.000Z" - }, - "end": { - "$date": "2020-11-18T03:00:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "601e9371-ee40-4c01-a031-97545b6b1dca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-18T02:38:36.000Z" - }, - "end": { - "$date": "2020-11-18T03:59:30.000Z" - }, - "events": [ - { - "uuid": "77235399-2fa3-473d-8c27-b26cd6d5e765", - "start": { - "$date": "2020-11-18T02:38:36.000Z" - }, - "end": { - "$date": "2020-11-18T03:22:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c2a2b37b-4584-4bd5-858e-4c72488d60a5", - "start": { - "$date": "2020-11-18T03:22:36.000Z" - }, - "end": { - "$date": "2020-11-18T03:24:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "87f55fa2-9330-49d5-a5c9-ce02181b500f", - "start": { - "$date": "2020-11-18T03:24:36.000Z" - }, - "end": { - "$date": "2020-11-18T03:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f58f603c-4a69-40a0-9f44-10e7f4123b23", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T03:04:01.000Z" - }, - "end": { - "$date": "2020-11-18T03:36:54.000Z" - }, - "events": [ - { - "uuid": "ed732a48-ddae-465d-8d15-6c5ee31ef5b2", - "start": { - "$date": "2020-11-18T03:04:01.000Z" - }, - "end": { - "$date": "2020-11-18T03:36:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "424a355f-1bea-4989-b687-cad460a9893b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T03:32:06.000Z" - }, - "end": { - "$date": "2020-11-18T04:08:57.000Z" - }, - "events": [ - { - "uuid": "711f0b49-2637-4b07-b589-22bbdc0cf570", - "start": { - "$date": "2020-11-18T03:32:06.000Z" - }, - "end": { - "$date": "2020-11-18T04:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "e94e7e82-effc-42a6-a771-c568bd898eb7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-18T03:58:06.000Z" - }, - "end": { - "$date": "2020-11-18T06:34:35.000Z" - }, - "events": [ - { - "uuid": "12a768d5-7609-41a0-8706-0a9608eab933", - "start": { - "$date": "2020-11-18T03:58:06.000Z" - }, - "end": { - "$date": "2020-11-18T06:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bb555908-265b-47dd-9946-ea3b50c19d69", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-18T04:12:33.000Z" - }, - "end": { - "$date": "2020-11-18T05:13:08.000Z" - }, - "events": [ - { - "uuid": "6008ad23-5020-4c70-8291-3237bea90fbb", - "start": { - "$date": "2020-11-18T04:12:33.000Z" - }, - "end": { - "$date": "2020-11-18T05:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "7e82ee89-494f-4a1a-9a26-eb15fd98a381", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T04:16:53.000Z" - }, - "end": { - "$date": "2020-11-18T04:27:10.000Z" - }, - "events": [ - { - "uuid": "22480321-bd7d-4fde-aa29-ff2d22a8fd56", - "start": { - "$date": "2020-11-18T04:16:53.000Z" - }, - "end": { - "$date": "2020-11-18T04:27:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "e6fd5457-3ad5-45cd-8dd8-9ee639798e2c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T04:42:32.000Z" - }, - "end": { - "$date": "2020-11-18T04:46:47.000Z" - }, - "events": [ - { - "uuid": "2d6cdacf-6564-49e5-a5ae-5df262c7ddb9", - "start": { - "$date": "2020-11-18T04:42:32.000Z" - }, - "end": { - "$date": "2020-11-18T04:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "0c5f7402-c1dc-456f-9a21-dd651ccf6b10", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T04:47:03.000Z" - }, - "end": { - "$date": "2020-11-18T05:03:33.000Z" - }, - "events": [ - { - "uuid": "3e893293-34fc-4360-b786-dbe873ac4552", - "start": { - "$date": "2020-11-18T04:47:03.000Z" - }, - "end": { - "$date": "2020-11-18T05:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f6bca19-5da3-4d75-a9a1-13082b7adcf8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T04:58:05.000Z" - }, - "end": { - "$date": "2020-11-18T05:25:20.000Z" - }, - "events": [ - { - "uuid": "1cf03039-f809-4c6a-b5ec-d9f1e7c3b481", - "start": { - "$date": "2020-11-18T04:58:05.000Z" - }, - "end": { - "$date": "2020-11-18T05:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "810aeba0-f231-498e-a66e-8228b08ed0a0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-18T04:57:41.000Z" - }, - "end": { - "$date": "2020-11-18T05:25:28.000Z" - }, - "events": [ - { - "uuid": "8bc67b37-4973-45ea-894e-39d9dab2e977", - "start": { - "$date": "2020-11-18T04:57:41.000Z" - }, - "end": { - "$date": "2020-11-18T05:25:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8db2ca7-1da4-4fdf-93ea-0a3a7d72dd4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T05:31:11.000Z" - }, - "end": { - "$date": "2020-11-18T05:58:36.000Z" - }, - "events": [ - { - "uuid": "317f0d0e-a0ad-40be-b129-b72302f8ab2c", - "start": { - "$date": "2020-11-18T05:31:11.000Z" - }, - "end": { - "$date": "2020-11-18T05:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "e4e32de4-1c65-4aac-81bb-38667f97e5d1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T05:30:37.000Z" - }, - "end": { - "$date": "2020-11-18T05:40:58.000Z" - }, - "events": [ - { - "uuid": "867a36bb-c51a-4d4e-85fb-cd6a6e10f971", - "start": { - "$date": "2020-11-18T05:30:37.000Z" - }, - "end": { - "$date": "2020-11-18T05:40:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "a4e785cc-54b9-4b74-a1f1-827dbe8d50c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T05:41:29.000Z" - }, - "end": { - "$date": "2020-11-18T05:42:28.000Z" - }, - "events": [ - { - "uuid": "22ca869a-aff6-4e77-a3e8-fc566b3e043b", - "start": { - "$date": "2020-11-18T05:41:29.000Z" - }, - "end": { - "$date": "2020-11-18T05:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "73f17193-d30a-4655-a1a8-67a979a9220b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-18T05:47:11.000Z" - }, - "end": { - "$date": "2020-11-18T06:21:02.000Z" - }, - "events": [ - { - "uuid": "cd921b7f-c5fe-46d2-af3b-3be4fc0f3d75", - "start": { - "$date": "2020-11-18T05:47:11.000Z" - }, - "end": { - "$date": "2020-11-18T06:21:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "035d1ad8-ba88-4d99-9d59-75a623c06f40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T06:04:37.000Z" - }, - "end": { - "$date": "2020-11-18T06:47:32.000Z" - }, - "events": [ - { - "uuid": "4d9749a8-5a92-400a-97af-fb05cffaf467", - "start": { - "$date": "2020-11-18T06:04:37.000Z" - }, - "end": { - "$date": "2020-11-18T06:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73fd7c9b-b843-4fca-849e-3e67710d2c77", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-18T16:56:11.000Z" - }, - "end": { - "$date": "2020-11-18T17:08:58.000Z" - }, - "events": [ - { - "uuid": "efdef6f1-0dc1-4318-a534-0420b4d1c960", - "start": { - "$date": "2020-11-18T16:56:11.000Z" - }, - "end": { - "$date": "2020-11-18T17:08:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "21cebadf-66fb-4d72-b834-6f6420c4eb7b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-18T17:06:25.000Z" - }, - "end": { - "$date": "2020-11-18T17:59:31.000Z" - }, - "events": [ - { - "uuid": "925b6e57-131f-4094-aa1a-9a8424727726", - "start": { - "$date": "2020-11-18T17:06:25.000Z" - }, - "end": { - "$date": "2020-11-18T17:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd572849-5a81-4f42-a8aa-18b5459bb767", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T17:38:28.000Z" - }, - "end": { - "$date": "2020-11-18T18:22:59.000Z" - }, - "events": [ - { - "uuid": "23d35b83-ba0b-475d-959f-98eb3e3708af", - "start": { - "$date": "2020-11-18T17:38:28.000Z" - }, - "end": { - "$date": "2020-11-18T18:22:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aad42b02-bf64-41aa-a9aa-ec38fe0331af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T18:28:27.000Z" - }, - "end": { - "$date": "2020-11-18T18:29:46.000Z" - }, - "events": [ - { - "uuid": "05236e7c-18fc-416b-b857-0aa4c36e45b6", - "start": { - "$date": "2020-11-18T18:28:27.000Z" - }, - "end": { - "$date": "2020-11-18T18:29:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "d16716cf-59dd-4747-a7cc-dae0537c7ba1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-18T18:34:01.000Z" - }, - "end": { - "$date": "2020-11-18T19:33:03.000Z" - }, - "events": [ - { - "uuid": "626333e1-8af9-4f33-8476-c6aac3dd3d2f", - "start": { - "$date": "2020-11-18T18:34:01.000Z" - }, - "end": { - "$date": "2020-11-18T19:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0af170c7-b6da-4213-9f83-34567b792c94", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T19:56:12.000Z" - }, - "end": { - "$date": "2020-11-18T20:42:25.000Z" - }, - "events": [ - { - "uuid": "198b2e6e-62ff-4d05-800a-fa49054e2631", - "start": { - "$date": "2020-11-18T19:56:12.000Z" - }, - "end": { - "$date": "2020-11-18T20:42:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7a8d45e-43a8-4388-ac1f-f4d6ee5e65fe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-18T20:11:39.000Z" - }, - "end": { - "$date": "2020-11-18T20:38:27.000Z" - }, - "events": [ - { - "uuid": "fbc6cf38-4781-427e-8e45-1d7e36bb720d", - "start": { - "$date": "2020-11-18T20:11:39.000Z" - }, - "end": { - "$date": "2020-11-18T20:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "017b76fa-99aa-4be5-b10a-74337539ae55", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-18T21:29:24.000Z" - }, - "end": { - "$date": "2020-11-18T22:35:51.000Z" - }, - "events": [ - { - "uuid": "1420179a-1578-4de1-a8d2-58b53fe9aca0", - "start": { - "$date": "2020-11-18T21:29:24.000Z" - }, - "end": { - "$date": "2020-11-18T22:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff980396-7eb1-4c93-b9a7-8058f9b08361", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T23:03:34.000Z" - }, - "end": { - "$date": "2020-11-18T23:22:13.000Z" - }, - "events": [ - { - "uuid": "4eb76846-7a66-4b10-9b94-d3946efe8096", - "start": { - "$date": "2020-11-18T23:03:34.000Z" - }, - "end": { - "$date": "2020-11-18T23:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e75f605d-5ace-4c57-8215-8a050407fbae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-18T23:13:49.000Z" - }, - "end": { - "$date": "2020-11-18T23:32:44.000Z" - }, - "events": [ - { - "uuid": "bbe990d2-036f-41c5-b19b-d573990fa954", - "start": { - "$date": "2020-11-18T23:13:49.000Z" - }, - "end": { - "$date": "2020-11-18T23:32:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ceb847dc-0b40-40ef-abd4-ef30f55027fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-18T23:26:04.000Z" - }, - "end": { - "$date": "2020-11-19T00:07:34.000Z" - }, - "events": [ - { - "uuid": "366c6de0-0931-48e8-8176-51e14506153b", - "start": { - "$date": "2020-11-18T23:26:04.000Z" - }, - "end": { - "$date": "2020-11-19T00:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b97655c-bbbc-44d9-8428-b60bf97eee20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T01:03:15.000Z" - }, - "end": { - "$date": "2020-11-19T01:23:18.000Z" - }, - "events": [ - { - "uuid": "49ff97e3-3df2-49af-b9fd-2abcf7680a8e", - "start": { - "$date": "2020-11-19T01:03:15.000Z" - }, - "end": { - "$date": "2020-11-19T01:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2dcb51e-c509-454a-a6e7-fe8185d612e3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T01:32:57.000Z" - }, - "end": { - "$date": "2020-11-19T01:51:07.000Z" - }, - "events": [ - { - "uuid": "d315d336-67f6-4fbe-9ebe-bf19cc6dfc89", - "start": { - "$date": "2020-11-19T01:32:57.000Z" - }, - "end": { - "$date": "2020-11-19T01:51:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "964e5727-c1f0-499c-bc31-7f8a9ce9a563", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T02:03:04.000Z" - }, - "end": { - "$date": "2020-11-19T02:30:24.000Z" - }, - "events": [ - { - "uuid": "40f0d6a9-03a7-40b2-b806-a514726f5f8d", - "start": { - "$date": "2020-11-19T02:03:04.000Z" - }, - "end": { - "$date": "2020-11-19T02:30:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4a77ddaf-fa87-44a9-9c69-cb70c1103e98", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-19T01:54:49.000Z" - }, - "end": { - "$date": "2020-11-19T02:19:38.000Z" - }, - "events": [ - { - "uuid": "3292411e-87b7-46cb-9a76-c8fea61d4d82", - "start": { - "$date": "2020-11-19T01:54:49.000Z" - }, - "end": { - "$date": "2020-11-19T02:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "80705f81-ed60-4581-a5af-6e1739af68c9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-19T02:20:13.000Z" - }, - "end": { - "$date": "2020-11-19T03:41:56.000Z" - }, - "events": [ - { - "uuid": "d06cf280-3941-4f15-9354-d58df53e8ebc", - "start": { - "$date": "2020-11-19T02:20:13.000Z" - }, - "end": { - "$date": "2020-11-19T03:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "82d0ad25-8424-40ea-bfce-5270ff484b86", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T02:30:00.000Z" - }, - "end": { - "$date": "2020-11-19T04:11:16.000Z" - }, - "events": [ - { - "uuid": "12d17567-ca32-4388-9e60-7a910d25f72c", - "start": { - "$date": "2020-11-19T02:30:00.000Z" - }, - "end": { - "$date": "2020-11-19T04:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d108020e-fc7f-4a19-aa57-2fdd502248ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T02:31:08.000Z" - }, - "end": { - "$date": "2020-11-19T02:52:44.000Z" - }, - "events": [ - { - "uuid": "e3bd5917-54e1-4769-9179-55b3508e604e", - "start": { - "$date": "2020-11-19T02:31:08.000Z" - }, - "end": { - "$date": "2020-11-19T02:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "11d265b2-728a-4c1b-bf57-4c97799cc923", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-19T02:38:19.000Z" - }, - "end": { - "$date": "2020-11-19T04:11:42.000Z" - }, - "events": [ - { - "uuid": "d9c82261-f301-40d1-b7d6-f5cb98480168", - "start": { - "$date": "2020-11-19T02:38:19.000Z" - }, - "end": { - "$date": "2020-11-19T04:11:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b8c5d1a2-b9dc-4936-9257-8fe6bb7fa6b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T03:01:32.000Z" - }, - "end": { - "$date": "2020-11-19T04:11:10.000Z" - }, - "events": [ - { - "uuid": "0ca5318b-d31e-4778-b2f3-c11d867ca902", - "start": { - "$date": "2020-11-19T03:01:32.000Z" - }, - "end": { - "$date": "2020-11-19T04:11:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "73764c2c-175b-4a8f-ac73-dda67d82aa75", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-19T03:16:43.000Z" - }, - "end": { - "$date": "2020-11-19T06:22:31.000Z" - }, - "events": [ - { - "uuid": "d62fcf29-24f0-41c9-a448-39ca7776533b", - "start": { - "$date": "2020-11-19T03:16:43.000Z" - }, - "end": { - "$date": "2020-11-19T06:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4b5368f3-4fea-4bfd-8d68-ae06b1da5d15", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-19T03:27:19.000Z" - }, - "end": { - "$date": "2020-11-19T04:27:53.000Z" - }, - "events": [ - { - "uuid": "766a94b7-f324-4d57-bf06-d85e9f3bbf74", - "start": { - "$date": "2020-11-19T03:27:19.000Z" - }, - "end": { - "$date": "2020-11-19T04:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d0a13456-52be-42c7-8063-b326eef3d58b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-19T04:18:06.000Z" - }, - "end": { - "$date": "2020-11-19T06:06:54.000Z" - }, - "events": [ - { - "uuid": "b4ac6bc6-767b-4d2b-afbb-d0c70b06bb2a", - "start": { - "$date": "2020-11-19T04:18:06.000Z" - }, - "end": { - "$date": "2020-11-19T06:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c10e50e5-ce09-42ae-a190-3637b2abe3c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T04:53:16.000Z" - }, - "end": { - "$date": "2020-11-19T05:36:23.000Z" - }, - "events": [ - { - "uuid": "67598b47-f3ef-44df-ad94-a72a466c8621", - "start": { - "$date": "2020-11-19T04:53:16.000Z" - }, - "end": { - "$date": "2020-11-19T05:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c65dc50-48cc-4d10-877d-f7ee596371e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T05:47:00.000Z" - }, - "end": { - "$date": "2020-11-19T06:24:36.000Z" - }, - "events": [ - { - "uuid": "45c4d3e4-6112-4291-a758-11fd4b651924", - "start": { - "$date": "2020-11-19T05:47:00.000Z" - }, - "end": { - "$date": "2020-11-19T06:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4570b47a-1d7e-499c-831e-bc6359853022", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-19T06:09:51.000Z" - }, - "end": { - "$date": "2020-11-19T07:08:41.000Z" - }, - "events": [ - { - "uuid": "24f5c643-b220-4cb3-890f-64a5240d65ab", - "start": { - "$date": "2020-11-19T06:09:51.000Z" - }, - "end": { - "$date": "2020-11-19T07:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24bb2374-5158-4f1f-8cf8-ba1a27b8db62", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T06:30:26.000Z" - }, - "end": { - "$date": "2020-11-19T06:54:52.000Z" - }, - "events": [ - { - "uuid": "b82a8f52-3b4f-4a0e-8f99-b83df84f90fb", - "start": { - "$date": "2020-11-19T06:30:26.000Z" - }, - "end": { - "$date": "2020-11-19T06:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d95d031-8d26-434c-9963-a396b5da3ad4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T07:01:22.000Z" - }, - "end": { - "$date": "2020-11-19T07:29:58.000Z" - }, - "events": [ - { - "uuid": "449312c1-69e1-43e3-b4e3-559cbda28ccb", - "start": { - "$date": "2020-11-19T07:01:22.000Z" - }, - "end": { - "$date": "2020-11-19T07:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "ca23e2ce-c37a-42b7-aecf-5b2a8d9350fb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-19T06:59:53.000Z" - }, - "end": { - "$date": "2020-11-19T07:02:05.000Z" - }, - "events": [ - { - "uuid": "ea790652-0225-4387-aaea-94ee7637cf39", - "start": { - "$date": "2020-11-19T06:59:53.000Z" - }, - "end": { - "$date": "2020-11-19T07:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "d9d3bfc1-16f5-450e-9101-c4399f758128", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-19T07:04:58.000Z" - }, - "end": { - "$date": "2020-11-19T07:06:00.000Z" - }, - "events": [ - { - "uuid": "87cd9071-c2b2-4b43-a245-47d0eb1735dd", - "start": { - "$date": "2020-11-19T07:04:58.000Z" - }, - "end": { - "$date": "2020-11-19T07:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "6199d373-9090-4d37-bbcb-f18de0841d1a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-19T07:16:49.000Z" - }, - "end": { - "$date": "2020-11-19T08:43:56.000Z" - }, - "events": [ - { - "uuid": "922fbd07-05e6-43fd-b6f1-85da45ae59af", - "start": { - "$date": "2020-11-19T07:16:49.000Z" - }, - "end": { - "$date": "2020-11-19T08:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "89b74045-890d-4b4c-b314-3f64e9fa4351", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T17:36:30.000Z" - }, - "end": { - "$date": "2020-11-19T17:38:16.000Z" - }, - "events": [ - { - "uuid": "266c15d8-0bb3-4914-abbb-f9abcb6de02b", - "start": { - "$date": "2020-11-19T17:36:30.000Z" - }, - "end": { - "$date": "2020-11-19T17:38:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f688451f-cd1a-4694-9716-28f2eae8ec4c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T17:38:40.000Z" - }, - "end": { - "$date": "2020-11-19T17:39:41.000Z" - }, - "events": [ - { - "uuid": "2282bb15-8ef7-4ad6-8d48-b005fa2fab0a", - "start": { - "$date": "2020-11-19T17:38:40.000Z" - }, - "end": { - "$date": "2020-11-19T17:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6629abf5-c2ea-42f8-8610-2872e30657aa", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-19T17:47:28.000Z" - }, - "end": { - "$date": "2020-11-19T19:38:11.000Z" - }, - "events": [ - { - "uuid": "1435be57-0e3b-49b9-a32c-1d39c90482c5", - "start": { - "$date": "2020-11-19T17:47:28.000Z" - }, - "end": { - "$date": "2020-11-19T19:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3b90c665-2fd7-4f98-817b-3aa9f5dce045", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T17:52:26.000Z" - }, - "end": { - "$date": "2020-11-19T18:38:12.000Z" - }, - "events": [ - { - "uuid": "a46ae366-a4eb-43e8-b013-e3d95a82cdb7", - "start": { - "$date": "2020-11-19T17:52:26.000Z" - }, - "end": { - "$date": "2020-11-19T18:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9085edbe-1f55-4dd9-ba20-0faaec93050c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T18:46:46.000Z" - }, - "end": { - "$date": "2020-11-19T19:17:14.000Z" - }, - "events": [ - { - "uuid": "63c39323-c39e-4b03-9001-86af4bdcdb32", - "start": { - "$date": "2020-11-19T18:46:46.000Z" - }, - "end": { - "$date": "2020-11-19T19:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52b8c824-1739-4874-949f-d69c471ccf97", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T19:19:04.000Z" - }, - "end": { - "$date": "2020-11-19T19:57:41.000Z" - }, - "events": [ - { - "uuid": "f509e2b2-f441-4a68-bceb-cd0784015d32", - "start": { - "$date": "2020-11-19T19:19:04.000Z" - }, - "end": { - "$date": "2020-11-19T19:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e487f0d2-73f7-4ab4-9b98-910da7a4fbec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T20:24:25.000Z" - }, - "end": { - "$date": "2020-11-19T20:51:01.000Z" - }, - "events": [ - { - "uuid": "b27fa511-7080-4836-8bbf-bb41fa949461", - "start": { - "$date": "2020-11-19T20:24:25.000Z" - }, - "end": { - "$date": "2020-11-19T20:51:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "20818935-5a44-4066-a903-733747122565", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T20:51:45.000Z" - }, - "end": { - "$date": "2020-11-19T21:03:52.000Z" - }, - "events": [ - { - "uuid": "2639249a-3cf4-45be-91c5-eaf2cd8da0b9", - "start": { - "$date": "2020-11-19T20:51:45.000Z" - }, - "end": { - "$date": "2020-11-19T21:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ff51490-f74c-4f17-8a50-f26c932b4898", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T21:39:10.000Z" - }, - "end": { - "$date": "2020-11-19T22:02:42.000Z" - }, - "events": [ - { - "uuid": "8b5e9f53-f984-486b-848d-292845e42225", - "start": { - "$date": "2020-11-19T21:39:10.000Z" - }, - "end": { - "$date": "2020-11-19T22:02:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d516c42-a775-4f78-bb65-4df0052bf46a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-19T22:13:17.000Z" - }, - "end": { - "$date": "2020-11-19T22:27:09.000Z" - }, - "events": [ - { - "uuid": "657e7661-6b48-4f58-9194-dc0fe9b716c0", - "start": { - "$date": "2020-11-19T22:13:17.000Z" - }, - "end": { - "$date": "2020-11-19T22:27:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "a3202f75-8eb4-457e-ad2d-1856c19b193e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-19T23:02:03.000Z" - }, - "end": { - "$date": "2020-11-19T23:06:51.000Z" - }, - "events": [ - { - "uuid": "f5ae1568-3438-495e-a196-a4b10f7d2cc1", - "start": { - "$date": "2020-11-19T23:02:03.000Z" - }, - "end": { - "$date": "2020-11-19T23:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b3688a54-7277-4850-8ab1-2113e45fe7eb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-19T23:51:17.000Z" - }, - "end": { - "$date": "2020-11-19T23:53:28.000Z" - }, - "events": [ - { - "uuid": "0a948abc-ee87-4f50-84fe-fa51da249661", - "start": { - "$date": "2020-11-19T23:51:17.000Z" - }, - "end": { - "$date": "2020-11-19T23:53:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5d4a720c-11d1-41af-933f-a209a2331ea0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T01:05:51.000Z" - }, - "end": { - "$date": "2020-11-20T01:41:31.000Z" - }, - "events": [ - { - "uuid": "a0f6f614-100e-48c5-9c0e-6935a6771382", - "start": { - "$date": "2020-11-20T01:05:51.000Z" - }, - "end": { - "$date": "2020-11-20T01:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b52ebfe-03a0-4a8a-818b-2c1f6ebdbb33", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T01:50:08.000Z" - }, - "end": { - "$date": "2020-11-20T01:51:00.000Z" - }, - "events": [ - { - "uuid": "62135546-6ea4-471d-b3a5-2b2f0f3710d9", - "start": { - "$date": "2020-11-20T01:50:08.000Z" - }, - "end": { - "$date": "2020-11-20T01:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fb0ae63f-0fed-41c9-b112-6f603bcc0185", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T01:47:11.000Z" - }, - "end": { - "$date": "2020-11-20T02:17:39.000Z" - }, - "events": [ - { - "uuid": "6d50c3d0-84db-481e-b5c5-bf80ed032c53", - "start": { - "$date": "2020-11-20T01:47:11.000Z" - }, - "end": { - "$date": "2020-11-20T02:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "742c417d-24b7-418b-a859-3a9e0c6830bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T01:54:36.000Z" - }, - "end": { - "$date": "2020-11-20T02:33:57.000Z" - }, - "events": [ - { - "uuid": "f39272c9-ba0e-4599-9109-d29bb79ff0ec", - "start": { - "$date": "2020-11-20T01:54:36.000Z" - }, - "end": { - "$date": "2020-11-20T02:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96938efd-6a29-43e4-958b-4c6e10cf834d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T01:54:36.000Z" - }, - "end": { - "$date": "2020-11-20T02:34:04.000Z" - }, - "events": [ - { - "uuid": "8af6c907-ad6d-417f-93e9-7f831d3052a7", - "start": { - "$date": "2020-11-20T01:54:36.000Z" - }, - "end": { - "$date": "2020-11-20T02:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a976970e-ac57-4fbd-846b-f122f5791d43", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T02:39:53.000Z" - }, - "end": { - "$date": "2020-11-20T03:15:09.000Z" - }, - "events": [ - { - "uuid": "f64a9c34-dda2-4bde-94b5-46309f1a1c07", - "start": { - "$date": "2020-11-20T02:39:53.000Z" - }, - "end": { - "$date": "2020-11-20T03:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d71891b7-4436-4da3-a031-d0b0939a1514", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T02:39:55.000Z" - }, - "end": { - "$date": "2020-11-20T03:15:02.000Z" - }, - "events": [ - { - "uuid": "1ce03e4e-6b08-4adb-99e7-31cdb16685d8", - "start": { - "$date": "2020-11-20T02:39:55.000Z" - }, - "end": { - "$date": "2020-11-20T03:15:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1d5bd942-27a9-4f01-b502-367463c94cea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-20T03:07:00.000Z" - }, - "end": { - "$date": "2020-11-20T04:15:24.000Z" - }, - "events": [ - { - "uuid": "2ceebfe1-9c0b-42cf-a5a4-66328b2fbea7", - "start": { - "$date": "2020-11-20T03:07:00.000Z" - }, - "end": { - "$date": "2020-11-20T04:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8152af95-76f4-4fe1-b0ec-588aa0823d79", - "uuid": "b64694c0-c7ff-4d18-b6ff-637231c15ad2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-20T03:12:30.000Z" - }, - "end": { - "$date": "2020-11-20T03:25:28.000Z" - }, - "events": [ - { - "uuid": "ec933d14-afff-4a85-a5d6-5d562d475a09", - "start": { - "$date": "2020-11-20T03:12:30.000Z" - }, - "end": { - "$date": "2020-11-20T03:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a793155-ea80-423e-a077-350d86a3207b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T03:22:15.000Z" - }, - "end": { - "$date": "2020-11-20T03:50:35.000Z" - }, - "events": [ - { - "uuid": "83951452-9643-403e-8920-844840880104", - "start": { - "$date": "2020-11-20T03:22:15.000Z" - }, - "end": { - "$date": "2020-11-20T03:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd02e2c9-7bd3-414d-9299-07a7a22297a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T03:22:13.000Z" - }, - "end": { - "$date": "2020-11-20T03:50:41.000Z" - }, - "events": [ - { - "uuid": "e0a6df15-3452-4ff8-8c6e-826ac526239c", - "start": { - "$date": "2020-11-20T03:22:13.000Z" - }, - "end": { - "$date": "2020-11-20T03:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7ff0b43f-a836-4f8e-9c14-9c9d18cca478", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-20T03:36:42.000Z" - }, - "end": { - "$date": "2020-11-20T04:17:30.000Z" - }, - "events": [ - { - "uuid": "43ff9310-e4fd-43d6-a4f6-8256672a7c51", - "start": { - "$date": "2020-11-20T03:36:42.000Z" - }, - "end": { - "$date": "2020-11-20T04:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c92b9892-92f5-4c25-bd58-ad599f74c3af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T03:56:22.000Z" - }, - "end": { - "$date": "2020-11-20T04:26:27.000Z" - }, - "events": [ - { - "uuid": "9b23e368-d3be-45fb-bee1-885254b4f5a9", - "start": { - "$date": "2020-11-20T03:56:22.000Z" - }, - "end": { - "$date": "2020-11-20T04:26:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "302f1b40-2e2b-4899-8ab1-b2fa5a4ed17a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T03:57:01.000Z" - }, - "end": { - "$date": "2020-11-20T04:26:28.000Z" - }, - "events": [ - { - "uuid": "368ee920-e8a5-44d0-8f89-0f6d2eb14fbd", - "start": { - "$date": "2020-11-20T03:57:01.000Z" - }, - "end": { - "$date": "2020-11-20T04:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ec3e4a9-7d51-47d5-95a1-90e34ae1efe0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T04:27:53.000Z" - }, - "end": { - "$date": "2020-11-20T04:30:49.000Z" - }, - "events": [ - { - "uuid": "6ab9a5f1-6c06-433c-91b2-511b7ee40009", - "start": { - "$date": "2020-11-20T04:27:53.000Z" - }, - "end": { - "$date": "2020-11-20T04:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91a985a2-0b7f-473f-ab8a-746efc70330f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T05:13:35.000Z" - }, - "end": { - "$date": "2020-11-20T05:14:05.000Z" - }, - "events": [ - { - "uuid": "cf404476-842e-4336-8f79-fc99c27363ac", - "start": { - "$date": "2020-11-20T05:13:35.000Z" - }, - "end": { - "$date": "2020-11-20T05:14:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "846db5ed-0435-4037-b757-5f9614461971", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-20T04:57:22.000Z" - }, - "end": { - "$date": "2020-11-20T06:02:11.000Z" - }, - "events": [ - { - "uuid": "cdcdcde2-c50f-4c3c-a1e9-074e41e1b95e", - "start": { - "$date": "2020-11-20T04:57:22.000Z" - }, - "end": { - "$date": "2020-11-20T06:02:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1c30a596-bac4-4422-b707-06973a1c3500", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T05:02:36.000Z" - }, - "end": { - "$date": "2020-11-20T05:13:53.000Z" - }, - "events": [ - { - "uuid": "df07c3f3-3fe4-4883-839f-587b723e59c9", - "start": { - "$date": "2020-11-20T05:02:36.000Z" - }, - "end": { - "$date": "2020-11-20T05:13:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1b65fc4a-550a-48ec-b75f-a5a503344579", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-20T05:08:22.000Z" - }, - "end": { - "$date": "2020-11-20T05:13:57.000Z" - }, - "events": [ - { - "uuid": "2e727f2c-70b8-4d5c-a7a3-78a6ec9ffda5", - "start": { - "$date": "2020-11-20T05:08:22.000Z" - }, - "end": { - "$date": "2020-11-20T05:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "57876246-cc15-4d27-b20f-848dce69912f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T05:14:25.000Z" - }, - "end": { - "$date": "2020-11-20T05:55:32.000Z" - }, - "events": [ - { - "uuid": "3a6a000f-8baf-42f7-bf43-5fec6cc483dd", - "start": { - "$date": "2020-11-20T05:14:25.000Z" - }, - "end": { - "$date": "2020-11-20T05:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d5e0227f-181e-4b5f-b43e-0de393cbb54b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T05:14:32.000Z" - }, - "end": { - "$date": "2020-11-20T05:54:14.000Z" - }, - "events": [ - { - "uuid": "a31628b7-8886-4122-9957-3fe759f2a198", - "start": { - "$date": "2020-11-20T05:14:32.000Z" - }, - "end": { - "$date": "2020-11-20T05:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2569230e-432d-49fc-9664-081aceb60f50", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-20T05:15:22.000Z" - }, - "end": { - "$date": "2020-11-20T05:55:35.000Z" - }, - "events": [ - { - "uuid": "4d2866fd-c7b9-4f6c-8854-a1471d2411d3", - "start": { - "$date": "2020-11-20T05:15:22.000Z" - }, - "end": { - "$date": "2020-11-20T05:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "b7517215-7dd4-468a-bf81-0cbb95bc52d9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-20T05:54:07.000Z" - }, - "end": { - "$date": "2020-11-20T06:08:45.000Z" - }, - "events": [ - { - "uuid": "2fed5872-ebaa-4629-9c89-159126caa23f", - "start": { - "$date": "2020-11-20T05:54:07.000Z" - }, - "end": { - "$date": "2020-11-20T06:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9396028d-76e5-4927-9d06-9c667695c3dc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-20T06:02:41.000Z" - }, - "end": { - "$date": "2020-11-20T06:18:39.000Z" - }, - "events": [ - { - "uuid": "17161c44-09cb-4fb4-82e4-1b9a09d4e1dd", - "start": { - "$date": "2020-11-20T06:02:41.000Z" - }, - "end": { - "$date": "2020-11-20T06:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "fd945cdf-12a1-49b2-b249-98b1f68a8013", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-20T06:09:00.000Z" - }, - "end": { - "$date": "2020-11-20T06:10:31.000Z" - }, - "events": [ - { - "uuid": "a0983a14-1935-468d-a06e-4b3eb4e03543", - "start": { - "$date": "2020-11-20T06:09:00.000Z" - }, - "end": { - "$date": "2020-11-20T06:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "4faf613f-7edc-4115-8ea5-d9f8ad622848", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-20T06:10:46.000Z" - }, - "end": { - "$date": "2020-11-20T06:50:19.000Z" - }, - "events": [ - { - "uuid": "d3015901-7eed-4a7e-8544-3771c2371a6f", - "start": { - "$date": "2020-11-20T06:10:46.000Z" - }, - "end": { - "$date": "2020-11-20T06:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d598cc34-53af-407f-83c1-c27051c4c0b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T06:26:36.000Z" - }, - "end": { - "$date": "2020-11-20T07:07:49.000Z" - }, - "events": [ - { - "uuid": "363e28e3-aded-4bf1-81e2-db215834e681", - "start": { - "$date": "2020-11-20T06:26:36.000Z" - }, - "end": { - "$date": "2020-11-20T07:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fe88ef51-4f0b-42bc-bc56-c56aa73a5154", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T18:15:35.000Z" - }, - "end": { - "$date": "2020-11-20T19:01:03.000Z" - }, - "events": [ - { - "uuid": "7a5f72d2-aa6e-4163-a141-07db385ee235", - "start": { - "$date": "2020-11-20T18:15:35.000Z" - }, - "end": { - "$date": "2020-11-20T19:01:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "9deca7b9-e60b-495b-bd68-2db5a5f3bb8d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T19:09:57.000Z" - }, - "end": { - "$date": "2020-11-20T19:35:00.000Z" - }, - "events": [ - { - "uuid": "05577fbc-5dc8-4f9d-a8a8-148e51f951b9", - "start": { - "$date": "2020-11-20T19:09:57.000Z" - }, - "end": { - "$date": "2020-11-20T19:35:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "853c0704-30a6-4a5a-a2c6-633c803d5fb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T19:22:02.000Z" - }, - "end": { - "$date": "2020-11-20T19:54:45.000Z" - }, - "events": [ - { - "uuid": "b7049b85-91b3-4db0-9058-1b116b7c3769", - "start": { - "$date": "2020-11-20T19:22:02.000Z" - }, - "end": { - "$date": "2020-11-20T19:54:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e705de9-7f93-45c3-91df-5afdce40befa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T20:02:34.000Z" - }, - "end": { - "$date": "2020-11-20T20:36:43.000Z" - }, - "events": [ - { - "uuid": "c74b750f-0db6-4080-a05a-832f0c787d0c", - "start": { - "$date": "2020-11-20T20:02:34.000Z" - }, - "end": { - "$date": "2020-11-20T20:36:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "91c7edec-9591-4598-b8fe-bfa0fb7b899f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T21:04:45.000Z" - }, - "end": { - "$date": "2020-11-20T21:54:07.000Z" - }, - "events": [ - { - "uuid": "649e9959-ffdb-4473-8021-f88e9ce9ef37", - "start": { - "$date": "2020-11-20T21:04:45.000Z" - }, - "end": { - "$date": "2020-11-20T21:54:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ae99f38-7f3e-45c5-baa0-ed76897e65a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-20T21:28:11.000Z" - }, - "end": { - "$date": "2020-11-20T21:47:33.000Z" - }, - "events": [ - { - "uuid": "8eab1056-9ff0-4c2d-b851-e432a6b75efa", - "start": { - "$date": "2020-11-20T21:28:11.000Z" - }, - "end": { - "$date": "2020-11-20T21:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "78678953-f62b-420c-b96e-07c61e22fffa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-20T21:54:20.000Z" - }, - "end": { - "$date": "2020-11-20T22:16:58.000Z" - }, - "events": [ - { - "uuid": "2cee1ea6-1cb6-442a-a50f-48ac4ecd9e53", - "start": { - "$date": "2020-11-20T21:54:20.000Z" - }, - "end": { - "$date": "2020-11-20T22:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ce9760f2-ebb7-4cea-8b9f-b6cc25b83806", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-20T23:19:51.000Z" - }, - "end": { - "$date": "2020-11-20T23:41:22.000Z" - }, - "events": [ - { - "uuid": "cad9475d-36cc-4688-ac58-b93b8bc7f5d2", - "start": { - "$date": "2020-11-20T23:19:51.000Z" - }, - "end": { - "$date": "2020-11-20T23:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "4b1303e8-0563-4a01-ad4f-66f1b737c35f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-20T23:23:29.000Z" - }, - "end": { - "$date": "2020-11-21T00:42:10.000Z" - }, - "events": [ - { - "uuid": "5d5e2165-12d5-457d-a614-7b33238aaad0", - "start": { - "$date": "2020-11-20T23:23:29.000Z" - }, - "end": { - "$date": "2020-11-21T00:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "7194ea18-ac25-4f2d-a35b-501958eb21f2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-20T23:31:19.000Z" - }, - "end": { - "$date": "2020-11-21T00:04:13.000Z" - }, - "events": [ - { - "uuid": "557b32e6-bc02-40d5-8e5b-14e91d361297", - "start": { - "$date": "2020-11-20T23:31:19.000Z" - }, - "end": { - "$date": "2020-11-21T00:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e47ee00a-e37f-4113-941a-ce95b56359e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T00:08:32.000Z" - }, - "end": { - "$date": "2020-11-21T00:39:14.000Z" - }, - "events": [ - { - "uuid": "8faa04fe-7b48-46dc-bbb2-00f14d45093f", - "start": { - "$date": "2020-11-21T00:08:32.000Z" - }, - "end": { - "$date": "2020-11-21T00:39:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "80d559dc-62d7-48fc-b4ff-2af58227b954", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T00:48:52.000Z" - }, - "end": { - "$date": "2020-11-21T01:36:05.000Z" - }, - "events": [ - { - "uuid": "ad2db979-5698-4e0c-be47-3abc5725ce57", - "start": { - "$date": "2020-11-21T00:48:52.000Z" - }, - "end": { - "$date": "2020-11-21T01:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8e94760b-3a8f-493b-8379-a21de794b177", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T00:54:39.000Z" - }, - "end": { - "$date": "2020-11-21T01:36:51.000Z" - }, - "events": [ - { - "uuid": "d6d89113-d483-4e41-8a87-055cd7b19604", - "start": { - "$date": "2020-11-21T00:54:39.000Z" - }, - "end": { - "$date": "2020-11-21T01:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c0bb134a-d270-4bf5-990a-3f08aec0913f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-21T01:53:46.000Z" - }, - "end": { - "$date": "2020-11-21T02:27:59.000Z" - }, - "events": [ - { - "uuid": "dc130119-f329-4ab8-8537-0c8abfe5372c", - "start": { - "$date": "2020-11-21T01:53:46.000Z" - }, - "end": { - "$date": "2020-11-21T02:27:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cda2d447-c308-4093-83f3-4af7085f859e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-21T02:24:35.000Z" - }, - "end": { - "$date": "2020-11-21T02:49:07.000Z" - }, - "events": [ - { - "uuid": "0ceebaed-77e7-455c-b4df-6b9f4610ac43", - "start": { - "$date": "2020-11-21T02:24:35.000Z" - }, - "end": { - "$date": "2020-11-21T02:36:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed548604-1e3a-45a9-a3cb-6d04607e0fe3", - "start": { - "$date": "2020-11-21T02:36:35.000Z" - }, - "end": { - "$date": "2020-11-21T02:44:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4372bd83-2d84-43ae-9d58-74235d915926", - "start": { - "$date": "2020-11-21T02:44:35.000Z" - }, - "end": { - "$date": "2020-11-21T02:49:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0ece1beb-5ec3-4c5e-9ec4-35791b8709b3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-21T02:37:35.000Z" - }, - "end": { - "$date": "2020-11-21T05:04:51.000Z" - }, - "events": [ - { - "uuid": "9cc61e96-2e42-49d2-b75e-b7b928c470eb", - "start": { - "$date": "2020-11-21T02:37:35.000Z" - }, - "end": { - "$date": "2020-11-21T05:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "d02bae64-2153-412f-9604-8f232dc3e4ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-21T02:55:25.000Z" - }, - "end": { - "$date": "2020-11-21T06:47:44.000Z" - }, - "events": [ - { - "uuid": "7891a050-31ce-4cda-b962-028e32544159", - "start": { - "$date": "2020-11-21T02:55:25.000Z" - }, - "end": { - "$date": "2020-11-21T06:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a5573890-8084-4669-bb62-febc21f8fcf9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T02:49:25.000Z" - }, - "end": { - "$date": "2020-11-21T05:58:46.000Z" - }, - "events": [ - { - "uuid": "f02b3513-104e-41a6-9d29-ed72162e91ad", - "start": { - "$date": "2020-11-21T02:49:25.000Z" - }, - "end": { - "$date": "2020-11-21T05:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b3947947-1e6a-4e1c-9f97-8effacb7d643", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-21T02:49:26.000Z" - }, - "end": { - "$date": "2020-11-21T06:47:56.000Z" - }, - "events": [ - { - "uuid": "51d5d2d2-e33a-46f8-8c15-99cc0c87e10c", - "start": { - "$date": "2020-11-21T02:49:26.000Z" - }, - "end": { - "$date": "2020-11-21T06:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6bab8298-0504-4ef5-84bd-4a62a4bb1de5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T03:27:43.000Z" - }, - "end": { - "$date": "2020-11-21T06:47:45.000Z" - }, - "events": [ - { - "uuid": "fa8f3675-baec-46e3-85fa-7781834fa4b4", - "start": { - "$date": "2020-11-21T03:27:43.000Z" - }, - "end": { - "$date": "2020-11-21T06:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d4304e78-de5d-4b1e-984c-f36216dadf1c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-21T03:36:22.000Z" - }, - "end": { - "$date": "2020-11-21T05:16:37.000Z" - }, - "events": [ - { - "uuid": "d3e7d323-72af-4bf0-be7f-19f2f238bae5", - "start": { - "$date": "2020-11-21T03:36:22.000Z" - }, - "end": { - "$date": "2020-11-21T05:16:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8882567c-7ff5-4c78-9da1-30a089ff75dc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-21T05:20:33.000Z" - }, - "end": { - "$date": "2020-11-21T06:33:29.000Z" - }, - "events": [ - { - "uuid": "4c564d01-95ba-48d9-b313-e249a131cbdb", - "start": { - "$date": "2020-11-21T05:20:33.000Z" - }, - "end": { - "$date": "2020-11-21T06:33:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a3b48bb2-24fe-4579-a998-efa4fb00fa71", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-21T05:28:39.000Z" - }, - "end": { - "$date": "2020-11-21T06:59:47.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T05:28:39.000Z" - }, - "end": { - "$date": "2020-11-21T06:59:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6dab43b8-56c1-4007-a55f-0d6ab9f91fd3", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-21T05:44:51.000Z" - }, - "end": { - "$date": "2020-11-21T07:59:50.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T05:44:51.000Z" - }, - "end": { - "$date": "2020-11-21T07:59:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "269b88fc-2f5f-4993-bd7b-51e0e19adc04", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-21T05:50:16.000Z" - }, - "end": { - "$date": "2020-11-21T09:20:16.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T05:50:16.000Z" - }, - "end": { - "$date": "2020-11-21T09:20:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5bab5aa3-a5d1-4dde-bdf9-37f8ba1d5b7b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-21T06:35:55.000Z" - }, - "end": { - "$date": "2020-11-21T08:21:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T06:35:55.000Z" - }, - "end": { - "$date": "2020-11-21T08:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "822684c4-5e95-4541-8b3e-31f4dd72b2c4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T06:48:00.000Z" - }, - "end": { - "$date": "2020-11-21T06:55:21.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T06:48:00.000Z" - }, - "end": { - "$date": "2020-11-21T06:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9b873635-84cf-425b-b5e4-130658520503", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T06:56:32.000Z" - }, - "end": { - "$date": "2020-11-21T07:59:45.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T06:56:32.000Z" - }, - "end": { - "$date": "2020-11-21T07:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ffefe4e6-fbe5-41fa-ae55-8c429ded8edd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-21T07:04:56.000Z" - }, - "end": { - "$date": "2020-11-21T08:21:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-21T07:04:56.000Z" - }, - "end": { - "$date": "2020-11-21T08:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "c9cda120-a3dd-482c-b921-fdc4b5d86cbd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T16:49:57.000Z" - }, - "end": { - "$date": "2020-11-21T17:33:48.000Z" - }, - "events": [ - { - "uuid": "a75216d3-42d0-435e-9e16-1364c9c97087", - "start": { - "$date": "2020-11-21T16:49:57.000Z" - }, - "end": { - "$date": "2020-11-21T17:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "eb8d3ef1-f3b9-45e4-b649-6591b1a6b6e2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T17:47:41.000Z" - }, - "end": { - "$date": "2020-11-21T17:56:22.000Z" - }, - "events": [ - { - "uuid": "cb7d0997-ed17-417f-9068-3ce340451631", - "start": { - "$date": "2020-11-21T17:47:41.000Z" - }, - "end": { - "$date": "2020-11-21T17:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ffe0f85c-bc36-49b2-b8dd-a0ece9bd8ad5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T18:24:43.000Z" - }, - "end": { - "$date": "2020-11-21T18:25:23.000Z" - }, - "events": [ - { - "uuid": "858eb921-9fa1-483f-b558-9ebe6abd5007", - "start": { - "$date": "2020-11-21T18:24:43.000Z" - }, - "end": { - "$date": "2020-11-21T18:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0c3b4131-387f-4dd2-9509-ba930740b8fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T18:31:38.000Z" - }, - "end": { - "$date": "2020-11-21T19:18:54.000Z" - }, - "events": [ - { - "uuid": "fccf7203-f270-448f-8022-fc5d3ddd07c1", - "start": { - "$date": "2020-11-21T18:31:38.000Z" - }, - "end": { - "$date": "2020-11-21T18:55:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f3eaa031-49e2-47c3-81c8-ae4d72261f3e", - "start": { - "$date": "2020-11-21T18:55:38.000Z" - }, - "end": { - "$date": "2020-11-21T19:01:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca626258-5248-4337-863c-870327ab8c2e", - "start": { - "$date": "2020-11-21T19:01:38.000Z" - }, - "end": { - "$date": "2020-11-21T19:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9cd30420-3032-4048-ad45-17b47440264a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-21T19:17:40.000Z" - }, - "end": { - "$date": "2020-11-21T19:54:09.000Z" - }, - "events": [ - { - "uuid": "7bc4270d-5d1a-43de-999e-928f8ff029d8", - "start": { - "$date": "2020-11-21T19:17:40.000Z" - }, - "end": { - "$date": "2020-11-21T19:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "89e284d9-1f24-4fb4-8251-53ed3ac8766e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T19:23:56.000Z" - }, - "end": { - "$date": "2020-11-21T19:25:51.000Z" - }, - "events": [ - { - "uuid": "d3a0db53-8219-4799-bdbb-a218c4d9cb3c", - "start": { - "$date": "2020-11-21T19:23:56.000Z" - }, - "end": { - "$date": "2020-11-21T19:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4f64adac-20e9-4737-a103-e2ddf97d4ed0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T19:26:06.000Z" - }, - "end": { - "$date": "2020-11-21T19:34:27.000Z" - }, - "events": [ - { - "uuid": "e26d670c-02c3-4605-81f4-640ff27ca254", - "start": { - "$date": "2020-11-21T19:26:06.000Z" - }, - "end": { - "$date": "2020-11-21T19:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0c8584a9-a2f3-463d-b5cd-7a81ac89be00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T19:35:26.000Z" - }, - "end": { - "$date": "2020-11-21T20:47:18.000Z" - }, - "events": [ - { - "uuid": "3cfc12fd-586a-41c8-883d-b9e5d709fa9b", - "start": { - "$date": "2020-11-21T19:35:26.000Z" - }, - "end": { - "$date": "2020-11-21T20:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ade39ef7-b01a-404a-b5ba-f7d093d3c899", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-21T20:37:17.000Z" - }, - "end": { - "$date": "2020-11-21T20:39:54.000Z" - }, - "events": [ - { - "uuid": "18a19098-d35b-446d-b93c-4580790edb07", - "start": { - "$date": "2020-11-21T20:37:17.000Z" - }, - "end": { - "$date": "2020-11-21T20:39:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1485212c-ae7a-4df2-9eb4-1c53678b683e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-21T20:38:42.000Z" - }, - "end": { - "$date": "2020-11-21T20:39:52.000Z" - }, - "events": [ - { - "uuid": "d76e3179-7063-4f22-8e46-578c838603a2", - "start": { - "$date": "2020-11-21T20:38:42.000Z" - }, - "end": { - "$date": "2020-11-21T20:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7a191105-1a05-45b7-b3b9-d23f60caf83e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-21T20:50:48.000Z" - }, - "end": { - "$date": "2020-11-21T21:09:39.000Z" - }, - "events": [ - { - "uuid": "367e6fcb-4cb3-4e7c-84e9-6d1817bdd651", - "start": { - "$date": "2020-11-21T20:50:48.000Z" - }, - "end": { - "$date": "2020-11-21T21:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "59a316ab-cdde-426b-9e21-c4ab73acf830", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-21T22:23:17.000Z" - }, - "end": { - "$date": "2020-11-21T23:18:38.000Z" - }, - "events": [ - { - "uuid": "fe938373-510e-4902-b50d-67876a9156c9", - "start": { - "$date": "2020-11-21T22:23:17.000Z" - }, - "end": { - "$date": "2020-11-21T23:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8f884c36-1575-4b30-b69f-9ad801aa59a7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-21T22:56:30.000Z" - }, - "end": { - "$date": "2020-11-21T23:12:12.000Z" - }, - "events": [ - { - "uuid": "d7f75c09-ca85-410f-a431-a86797e0da91", - "start": { - "$date": "2020-11-21T22:56:30.000Z" - }, - "end": { - "$date": "2020-11-21T23:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ecb8005c-e6ad-418f-b172-3856aeefe115", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-22T01:03:40.000Z" - }, - "end": { - "$date": "2020-11-22T01:55:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T01:03:40.000Z" - }, - "end": { - "$date": "2020-11-22T01:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "d246e582-4e39-4259-a526-0c58d9ab2861", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-22T01:33:56.000Z" - }, - "end": { - "$date": "2020-11-22T03:34:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T01:33:56.000Z" - }, - "end": { - "$date": "2020-11-22T03:34:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "255e1039-bede-45dd-9bb5-34eb2ca26c4c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-22T01:58:13.000Z" - }, - "end": { - "$date": "2020-11-22T04:03:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T01:58:13.000Z" - }, - "end": { - "$date": "2020-11-22T04:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84cabe1b-ed02-4655-8b8e-beda38e46fdb", - "uuid": "2bcecf44-476c-43d5-9f12-ef373711b46a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T03:01:19.000Z" - }, - "end": { - "$date": "2020-11-22T03:06:35.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T03:01:19.000Z" - }, - "end": { - "$date": "2020-11-22T03:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4a61bf48-a6f6-4602-9ebf-35cb8b669865", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T02:09:22.000Z" - }, - "end": { - "$date": "2020-11-22T04:46:52.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T02:09:22.000Z" - }, - "end": { - "$date": "2020-11-22T04:46:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "63402b5a-e69c-47e6-b914-f79255e2a01c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-22T02:49:54.000Z" - }, - "end": { - "$date": "2020-11-22T05:59:41.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T02:49:54.000Z" - }, - "end": { - "$date": "2020-11-22T05:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "47343ba8-da82-4ede-8912-0dc45021f14a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T04:01:52.000Z" - }, - "end": { - "$date": "2020-11-22T04:27:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T04:01:52.000Z" - }, - "end": { - "$date": "2020-11-22T04:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6a8166e5-483f-422e-a498-eeda96ca5c04", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-22T04:04:05.000Z" - }, - "end": { - "$date": "2020-11-22T05:40:47.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T04:04:05.000Z" - }, - "end": { - "$date": "2020-11-22T05:40:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7df8e7ed-51c2-4172-b421-1261184e9288", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T04:48:56.000Z" - }, - "end": { - "$date": "2020-11-22T04:57:59.000Z" - }, - "events": [ - { - "uuid": "595866e6-cfd5-484f-9895-968f59d10400", - "start": { - "$date": "2020-11-22T04:48:56.000Z" - }, - "end": { - "$date": "2020-11-22T04:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0bd1586d-02bc-4893-b8a8-0aa7b32d57ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T05:21:58.000Z" - }, - "end": { - "$date": "2020-11-22T05:31:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T05:21:58.000Z" - }, - "end": { - "$date": "2020-11-22T05:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "04144b1a-5856-460a-befb-79e4d856338d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T05:22:22.000Z" - }, - "end": { - "$date": "2020-11-22T06:12:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T05:22:22.000Z" - }, - "end": { - "$date": "2020-11-22T06:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "697450b2-d162-471d-a7df-de046dd3195a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-22T05:27:37.000Z" - }, - "end": { - "$date": "2020-11-22T08:11:04.000Z" - }, - "events": [ - { - "uuid": "13ee5a11-7ded-49a5-ba39-f8a0ea6c5c72", - "start": { - "$date": "2020-11-22T05:27:37.000Z" - }, - "end": { - "$date": "2020-11-22T08:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3462b73a-5ed2-44da-9e9f-084482ec352a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-22T05:28:19.000Z" - }, - "end": { - "$date": "2020-11-22T08:11:02.000Z" - }, - "events": [ - { - "uuid": "c8a82067-b269-40a6-934f-4f6fae272e5a", - "start": { - "$date": "2020-11-22T05:28:19.000Z" - }, - "end": { - "$date": "2020-11-22T08:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6b9e982e-d71b-4d6b-a2c1-1b742b6347fa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T05:32:14.000Z" - }, - "end": { - "$date": "2020-11-22T06:00:47.000Z" - }, - "events": [ - { - "uuid": "0527b696-a658-43e9-b00d-a30a89438222", - "start": { - "$date": "2020-11-22T05:32:14.000Z" - }, - "end": { - "$date": "2020-11-22T06:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "75bdf3a6-a8c8-4db6-b011-a8951b1859ff", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-22T05:44:08.000Z" - }, - "end": { - "$date": "2020-11-22T07:14:57.000Z" - }, - "events": [ - { - "uuid": "958f8e57-faba-44b4-abbd-7e646cf8aa14", - "start": { - "$date": "2020-11-22T05:44:08.000Z" - }, - "end": { - "$date": "2020-11-22T07:14:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6418f4fd-5403-4367-8f4b-10a8d39f781f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T06:01:03.000Z" - }, - "end": { - "$date": "2020-11-22T06:26:45.000Z" - }, - "events": [ - { - "uuid": "e501b499-26ff-46a6-a718-0b8553198432", - "start": { - "$date": "2020-11-22T06:01:03.000Z" - }, - "end": { - "$date": "2020-11-22T06:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a4da9871-689b-48fe-85ed-ab4cf8277834", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-22T06:21:00.000Z" - }, - "end": { - "$date": "2020-11-22T08:11:02.000Z" - }, - "events": [ - { - "uuid": "b94a1772-c2df-449b-9799-2967e5cbb502", - "start": { - "$date": "2020-11-22T06:21:00.000Z" - }, - "end": { - "$date": "2020-11-22T08:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d36e4032-a55e-4ed0-b3ae-0cbc621b7a83", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T06:27:30.000Z" - }, - "end": { - "$date": "2020-11-22T06:57:24.000Z" - }, - "events": [ - { - "uuid": "6baf8ab1-7403-4673-9e2b-27465f2e8d14", - "start": { - "$date": "2020-11-22T06:27:30.000Z" - }, - "end": { - "$date": "2020-11-22T06:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bd9e32f0-b327-4665-9741-c296e1eddf8a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T06:57:39.000Z" - }, - "end": { - "$date": "2020-11-22T07:51:48.000Z" - }, - "events": [ - { - "uuid": "8c2b5d16-5797-4845-be42-3b46726a1b6a", - "start": { - "$date": "2020-11-22T06:57:39.000Z" - }, - "end": { - "$date": "2020-11-22T07:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "399124ae-f131-4140-9d18-3bc6186a7197", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-22T07:21:09.000Z" - }, - "end": { - "$date": "2020-11-22T07:44:20.000Z" - }, - "events": [ - { - "uuid": "cffa02ab-7813-49d9-b230-18a921dc64d4", - "start": { - "$date": "2020-11-22T07:21:09.000Z" - }, - "end": { - "$date": "2020-11-22T07:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "95be880b-3e28-42ef-9ff4-af4405e203e4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-22T07:32:58.000Z" - }, - "end": { - "$date": "2020-11-22T08:46:32.000Z" - }, - "events": [ - { - "uuid": "948c2a28-ee20-4e23-8da3-cb6cd2258d2f", - "start": { - "$date": "2020-11-22T07:32:58.000Z" - }, - "end": { - "$date": "2020-11-22T08:46:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "57219205-b7a3-4eae-b263-ffea40e7a13e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T07:52:34.000Z" - }, - "end": { - "$date": "2020-11-22T08:10:53.000Z" - }, - "events": [ - { - "uuid": "a04a91c8-269a-4a1b-b8fb-2e456e869328", - "start": { - "$date": "2020-11-22T07:52:34.000Z" - }, - "end": { - "$date": "2020-11-22T08:10:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "954e5f00-5f4c-40d5-894f-fa491d8d4366", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T16:38:13.000Z" - }, - "end": { - "$date": "2020-11-22T16:41:30.000Z" - }, - "events": [ - { - "uuid": "68e1bd60-9343-40a0-8991-a268c0cccf2f", - "start": { - "$date": "2020-11-22T16:38:13.000Z" - }, - "end": { - "$date": "2020-11-22T16:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "268e7743-255c-4a67-bff2-f2391f824566", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T16:41:58.000Z" - }, - "end": { - "$date": "2020-11-22T17:41:48.000Z" - }, - "events": [ - { - "uuid": "f9c0212d-3dac-4081-9402-3abed5c001f5", - "start": { - "$date": "2020-11-22T16:41:58.000Z" - }, - "end": { - "$date": "2020-11-22T17:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0ca2f5fb-44d8-4489-ba64-0148fd5f6f3d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T17:41:56.000Z" - }, - "end": { - "$date": "2020-11-22T17:42:58.000Z" - }, - "events": [ - { - "uuid": "5c6ecefa-2c5e-4b5d-a651-2888c4e8cb47", - "start": { - "$date": "2020-11-22T17:41:56.000Z" - }, - "end": { - "$date": "2020-11-22T17:42:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5de6ee9d-b45b-4ae5-94ea-c1abb9a68275", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T18:01:53.000Z" - }, - "end": { - "$date": "2020-11-22T19:36:31.000Z" - }, - "events": [ - { - "uuid": "09870b57-fc54-4eab-906b-ac73fb17b8ec", - "start": { - "$date": "2020-11-22T18:01:53.000Z" - }, - "end": { - "$date": "2020-11-22T19:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e47bbbeb-1427-4f47-a89f-5a8174c91cc2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-22T18:16:00.000Z" - }, - "end": { - "$date": "2020-11-22T18:54:03.000Z" - }, - "events": [ - { - "uuid": "789f1461-0a0b-4ad2-b877-8fa17675b8d2", - "start": { - "$date": "2020-11-22T18:16:00.000Z" - }, - "end": { - "$date": "2020-11-22T18:54:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "516c53b1-ba5c-4041-9999-676bc77689dc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-22T20:18:02.000Z" - }, - "end": { - "$date": "2020-11-22T20:25:03.000Z" - }, - "events": [ - { - "uuid": "225c6234-7975-452b-ba31-55fa5bced491", - "start": { - "$date": "2020-11-22T20:18:02.000Z" - }, - "end": { - "$date": "2020-11-22T20:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bccf72f4-bb79-4176-a2ae-7977d8ff3355", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-22T20:25:08.000Z" - }, - "end": { - "$date": "2020-11-22T21:19:39.000Z" - }, - "events": [ - { - "uuid": "1b1e3e95-7954-4f83-bd71-6dd00da667ca", - "start": { - "$date": "2020-11-22T20:25:08.000Z" - }, - "end": { - "$date": "2020-11-22T21:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2bc4b02c-9e77-4cb9-9a30-8296ccb130f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T20:30:24.000Z" - }, - "end": { - "$date": "2020-11-22T20:34:05.000Z" - }, - "events": [ - { - "uuid": "5084840e-82c3-4a1f-9f96-5759eacde762", - "start": { - "$date": "2020-11-22T20:30:24.000Z" - }, - "end": { - "$date": "2020-11-22T20:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "a140ad16-1453-4847-b6cd-1df6cf6e3b95", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T20:34:20.000Z" - }, - "end": { - "$date": "2020-11-22T20:36:48.000Z" - }, - "events": [ - { - "uuid": "4ea6ae7e-cd24-4cc2-961f-aefe02372feb", - "start": { - "$date": "2020-11-22T20:34:20.000Z" - }, - "end": { - "$date": "2020-11-22T20:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4faaf850-5621-49a8-b765-f68e67fcdfda", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T20:39:40.000Z" - }, - "end": { - "$date": "2020-11-22T20:42:55.000Z" - }, - "events": [ - { - "uuid": "23d76af1-39d3-4205-bb62-08e6235e27e5", - "start": { - "$date": "2020-11-22T20:39:40.000Z" - }, - "end": { - "$date": "2020-11-22T20:42:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fe51b459-95cd-47e0-bfe3-09b710d564b7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-22T20:59:25.000Z" - }, - "end": { - "$date": "2020-11-23T00:15:03.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-22T20:59:25.000Z" - }, - "end": { - "$date": "2020-11-23T00:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0869fb52-c0ff-4050-b5f5-77fe877e3f22", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T21:19:59.000Z" - }, - "end": { - "$date": "2020-11-22T21:44:22.000Z" - }, - "events": [ - { - "uuid": "e5f26535-a33e-4b4b-b1b0-4826ab0f34ad", - "start": { - "$date": "2020-11-22T21:19:59.000Z" - }, - "end": { - "$date": "2020-11-22T21:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d632424-b622-4e8b-beb9-2be5a7fc8219", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-22T21:41:52.000Z" - }, - "end": { - "$date": "2020-11-22T22:32:29.000Z" - }, - "events": [ - { - "uuid": "d7348edb-0eda-4203-9ac9-34db847a3844", - "start": { - "$date": "2020-11-22T21:41:52.000Z" - }, - "end": { - "$date": "2020-11-22T22:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2af3d452-55ea-4b99-9bae-17c8edc65384", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-22T21:55:14.000Z" - }, - "end": { - "$date": "2020-11-22T22:32:35.000Z" - }, - "events": [ - { - "uuid": "b21f5758-7771-43fc-a433-3c7d7f37cbb6", - "start": { - "$date": "2020-11-22T21:55:14.000Z" - }, - "end": { - "$date": "2020-11-22T22:32:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5110731c-7f72-4a31-85fb-93ceef05a1ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-23T00:15:14.000Z" - }, - "end": { - "$date": "2020-11-23T01:41:50.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T00:15:14.000Z" - }, - "end": { - "$date": "2020-11-23T01:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "f54b3785-2877-44ba-b6b6-62c6aa5bb40c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T23:15:08.000Z" - }, - "end": { - "$date": "2020-11-22T23:22:44.000Z" - }, - "events": [ - { - "uuid": "fa1b8d4b-4d92-4d9e-90ce-29b1aeffc80e", - "start": { - "$date": "2020-11-22T23:15:08.000Z" - }, - "end": { - "$date": "2020-11-22T23:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6c986af6-2f2c-44d9-b6f3-5138b3269844", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-22T23:17:56.000Z" - }, - "end": { - "$date": "2020-11-23T00:15:08.000Z" - }, - "events": [ - { - "uuid": "9504b428-8cae-478e-9ce7-6e6f878c5fb3", - "start": { - "$date": "2020-11-22T23:17:56.000Z" - }, - "end": { - "$date": "2020-11-23T00:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4bd9e5e2-cfec-4a3d-8122-d98455b4db43", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-22T23:22:18.000Z" - }, - "end": { - "$date": "2020-11-23T00:14:36.000Z" - }, - "events": [ - { - "uuid": "276c5911-a9b0-48d2-8a0a-eb79fd0c363d", - "start": { - "$date": "2020-11-22T23:22:18.000Z" - }, - "end": { - "$date": "2020-11-23T00:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "98848393-9f30-4e4a-8345-32f6559b79ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-22T23:22:56.000Z" - }, - "end": { - "$date": "2020-11-23T00:11:17.000Z" - }, - "events": [ - { - "uuid": "d02d1b15-d3ce-4e62-bea6-8aeafd0065a0", - "start": { - "$date": "2020-11-22T23:22:56.000Z" - }, - "end": { - "$date": "2020-11-23T00:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0419eee5-11b2-4a64-b9e9-4d4ed01ae4c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-22T23:25:17.000Z" - }, - "end": { - "$date": "2020-11-23T00:15:08.000Z" - }, - "events": [ - { - "uuid": "9a145d37-4804-4b27-819e-3d2717389eff", - "start": { - "$date": "2020-11-22T23:25:17.000Z" - }, - "end": { - "$date": "2020-11-23T00:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1fb0b821-9d1b-441b-b04b-9b5ff3b73d13", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-23T00:17:28.000Z" - }, - "end": { - "$date": "2020-11-23T01:41:59.000Z" - }, - "events": [ - { - "uuid": "ad24c72f-00f0-4e74-953a-ca1063ce1e53", - "start": { - "$date": "2020-11-23T00:17:28.000Z" - }, - "end": { - "$date": "2020-11-23T01:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4d2c3db0-bb93-4f6d-bd0b-4a24d1c1320c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-23T01:07:55.000Z" - }, - "end": { - "$date": "2020-11-23T01:37:52.000Z" - }, - "events": [ - { - "uuid": "091c981a-51b2-4481-86e2-ad2fd1e607c9", - "start": { - "$date": "2020-11-23T01:07:55.000Z" - }, - "end": { - "$date": "2020-11-23T01:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "938d966b-95cf-4457-a75a-27e8fc8f5816", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-23T02:20:59.000Z" - }, - "end": { - "$date": "2020-11-23T02:22:30.000Z" - }, - "events": [ - { - "uuid": "d5594ba5-97ae-4402-bd66-9572495f9a38", - "start": { - "$date": "2020-11-23T02:20:59.000Z" - }, - "end": { - "$date": "2020-11-23T02:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3a86e36b-3560-48bc-af4c-63032f85b4cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-23T02:49:29.000Z" - }, - "end": { - "$date": "2020-11-23T03:01:35.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T02:49:29.000Z" - }, - "end": { - "$date": "2020-11-23T03:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "90cfeceb-8833-492d-8786-6afb122d9dfd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-11-23T02:58:29.000Z" - }, - "end": { - "$date": "2020-11-23T05:50:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T02:58:29.000Z" - }, - "end": { - "$date": "2020-11-23T05:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "adc1a822-5305-46af-bc7b-be9c79bb201a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-23T03:16:19.000Z" - }, - "end": { - "$date": "2020-11-23T04:03:40.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T03:16:19.000Z" - }, - "end": { - "$date": "2020-11-23T04:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2449270e-0def-41c9-bc6f-dc582a8cd8b9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-23T03:25:24.000Z" - }, - "end": { - "$date": "2020-11-23T03:36:11.000Z" - }, - "events": [ - { - "uuid": "c23e6099-ad32-47ed-9522-dd1b001996a7", - "start": { - "$date": "2020-11-23T03:25:24.000Z" - }, - "end": { - "$date": "2020-11-23T03:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8b44944-9556-49a1-a3ba-13d573444059", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-23T03:58:09.000Z" - }, - "end": { - "$date": "2020-11-23T06:01:15.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T03:58:09.000Z" - }, - "end": { - "$date": "2020-11-23T06:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c48df78d-b254-48b9-833f-aced2935c23f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-23T04:03:12.000Z" - }, - "end": { - "$date": "2020-11-23T06:08:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T04:03:12.000Z" - }, - "end": { - "$date": "2020-11-23T06:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2e318335-12f6-4833-afd7-8cfe05187c4f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-23T04:04:38.000Z" - }, - "end": { - "$date": "2020-11-23T06:08:07.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T04:04:38.000Z" - }, - "end": { - "$date": "2020-11-23T06:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f003b91a-5712-46ea-a076-2db3e9d5e94a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-23T04:05:35.000Z" - }, - "end": { - "$date": "2020-11-23T06:07:50.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T04:05:35.000Z" - }, - "end": { - "$date": "2020-11-23T06:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "838a73c9-7ea0-405a-b91d-e8d27ecd2a89", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-23T04:05:47.000Z" - }, - "end": { - "$date": "2020-11-23T06:08:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T04:05:47.000Z" - }, - "end": { - "$date": "2020-11-23T06:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bedcfc04-bf4b-4b50-8964-f016f340dc7c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-23T04:17:45.000Z" - }, - "end": { - "$date": "2020-11-23T05:27:08.000Z" - }, - "events": [ - { - "uuid": "aafc5434-1592-46cb-b118-102dc964ad7e", - "start": { - "$date": "2020-11-23T04:17:45.000Z" - }, - "end": { - "$date": "2020-11-23T05:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9248b883-d9a4-4ff7-8197-15b3ae32fbc6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-23T04:49:42.000Z" - }, - "end": { - "$date": "2020-11-23T05:13:35.000Z" - }, - "events": [ - { - "uuid": "250659e1-bd09-4372-b21f-381970a8e444", - "start": { - "$date": "2020-11-23T04:49:42.000Z" - }, - "end": { - "$date": "2020-11-23T05:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "376c7ecf-b72f-48ab-8634-eda03e4379c1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-23T05:14:21.000Z" - }, - "end": { - "$date": "2020-11-23T05:16:16.000Z" - }, - "events": [ - { - "uuid": "d93a4c39-bd2a-4184-bf85-d344f9556a3b", - "start": { - "$date": "2020-11-23T05:14:21.000Z" - }, - "end": { - "$date": "2020-11-23T05:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "d641c17d-a277-40c7-aad5-4a5a9ade7f81", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-23T05:16:51.000Z" - }, - "end": { - "$date": "2020-11-23T06:54:21.000Z" - }, - "events": [ - { - "uuid": "d7d2f46e-f831-4a6c-a347-e36a0d247a4b", - "start": { - "$date": "2020-11-23T05:16:51.000Z" - }, - "end": { - "$date": "2020-11-23T06:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a741ab1b-cde8-41c8-b69e-8ff9fb6d126c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-23T06:01:27.000Z" - }, - "end": { - "$date": "2020-11-23T06:09:35.000Z" - }, - "events": [ - { - "uuid": "dc729f2c-30d7-402b-ae5a-8db1493a4c95", - "start": { - "$date": "2020-11-23T06:01:27.000Z" - }, - "end": { - "$date": "2020-11-23T06:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a0d040c5-f25f-48d2-bb15-2388161208ad", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-23T06:28:38.000Z" - }, - "end": { - "$date": "2020-11-23T08:01:27.000Z" - }, - "events": [ - { - "uuid": "b9c587bd-79df-49da-9dac-b62a72e1d2e1", - "start": { - "$date": "2020-11-23T06:28:38.000Z" - }, - "end": { - "$date": "2020-11-23T08:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "57f671b5-19cb-4f42-837a-ae52b5c3985e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-23T06:43:58.000Z" - }, - "end": { - "$date": "2020-11-23T08:54:12.000Z" - }, - "events": [ - { - "uuid": "7544c92e-a708-4a5a-b114-a00d3f44077c", - "start": { - "$date": "2020-11-23T06:43:58.000Z" - }, - "end": { - "$date": "2020-11-23T08:54:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "3065d0ab-5507-48a4-a7c9-410ef8f5c349", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-23T06:57:35.000Z" - }, - "end": { - "$date": "2020-11-23T08:54:42.000Z" - }, - "events": [ - { - "uuid": "1fdaabae-385d-412b-b254-8d9753858c4b", - "start": { - "$date": "2020-11-23T06:57:35.000Z" - }, - "end": { - "$date": "2020-11-23T08:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "18fa69dd-a101-4399-9ef5-7883a685bbfb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-23T08:55:01.000Z" - }, - "end": { - "$date": "2020-11-23T08:57:42.000Z" - }, - "events": [ - { - "uuid": "bd94478a-7cbd-471c-b207-adcce6070fc9", - "start": { - "$date": "2020-11-23T08:55:01.000Z" - }, - "end": { - "$date": "2020-11-23T08:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "e82c1488-f772-4450-86e8-05f7e13be9f5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-23T08:58:32.000Z" - }, - "end": { - "$date": "2020-11-23T09:14:44.000Z" - }, - "events": [ - { - "uuid": "a3d58b7b-317d-4039-adb6-ddf275db33ba", - "start": { - "$date": "2020-11-23T08:58:32.000Z" - }, - "end": { - "$date": "2020-11-23T09:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1bddd9e5-c2cb-457b-8f51-2f308191f9dc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-23T15:30:18.000Z" - }, - "end": { - "$date": "2020-11-23T15:43:41.000Z" - }, - "events": [ - { - "uuid": "ca6d65a3-3174-4555-ae4b-adfac1835595", - "start": { - "$date": "2020-11-23T15:30:18.000Z" - }, - "end": { - "$date": "2020-11-23T15:43:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "cc6c8b62-d6ef-4afc-974d-38c51005b6ca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-23T18:31:04.000Z" - }, - "end": { - "$date": "2020-11-23T19:08:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T18:31:04.000Z" - }, - "end": { - "$date": "2020-11-23T19:08:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7f73aa3e-aa2c-4d04-965f-fe20656f4d97", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-23T19:07:13.000Z" - }, - "end": { - "$date": "2020-11-24T00:40:54.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-23T19:07:13.000Z" - }, - "end": { - "$date": "2020-11-24T00:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "58be6e73-0ca8-4489-96e7-5d69aaace319", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-23T19:22:07.000Z" - }, - "end": { - "$date": "2020-11-23T21:21:38.000Z" - }, - "events": [ - { - "uuid": "bdc5433c-1284-4c66-85ba-666c719f96f7", - "start": { - "$date": "2020-11-23T19:22:07.000Z" - }, - "end": { - "$date": "2020-11-23T21:21:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "2bc27621-f66f-4b52-a38a-a4a042bce3a9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-23T20:19:09.000Z" - }, - "end": { - "$date": "2020-11-23T23:28:32.000Z" - }, - "events": [ - { - "uuid": "f604c971-bdea-4b3c-8a66-d0af99dcbf71", - "start": { - "$date": "2020-11-23T20:19:09.000Z" - }, - "end": { - "$date": "2020-11-23T23:28:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "34039511-4e9d-432a-a90e-1d1f26e460f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-23T22:08:07.000Z" - }, - "end": { - "$date": "2020-11-23T23:14:50.000Z" - }, - "events": [ - { - "uuid": "cbe2d591-7d85-43a8-84cc-c8163cec8d36", - "start": { - "$date": "2020-11-23T22:08:07.000Z" - }, - "end": { - "$date": "2020-11-23T23:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1863eb3b-527d-4c10-aca7-ab690f7ce7ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-23T22:30:29.000Z" - }, - "end": { - "$date": "2020-11-24T00:34:44.000Z" - }, - "events": [ - { - "uuid": "aec0d8d0-ccc3-4135-9ba4-c56e3f994578", - "start": { - "$date": "2020-11-23T22:30:29.000Z" - }, - "end": { - "$date": "2020-11-24T00:34:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "f4437660-326e-4f36-a7f2-438ac824e54c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-23T23:28:48.000Z" - }, - "end": { - "$date": "2020-11-24T00:52:11.000Z" - }, - "events": [ - { - "uuid": "5550e49d-922f-44f0-9715-346090471f21", - "start": { - "$date": "2020-11-23T23:28:48.000Z" - }, - "end": { - "$date": "2020-11-24T00:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e90e8255-4d00-4289-a020-d3b667ad5f45", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-24T00:52:44.000Z" - }, - "end": { - "$date": "2020-11-24T02:23:49.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T00:52:44.000Z" - }, - "end": { - "$date": "2020-11-24T02:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "830d734e-23a0-47f7-9dfb-d73f64567817", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T01:17:03.000Z" - }, - "end": { - "$date": "2020-11-24T01:46:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T01:17:03.000Z" - }, - "end": { - "$date": "2020-11-24T01:46:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "37170974-2538-4c82-b3ba-ab401f20a29d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T01:48:49.000Z" - }, - "end": { - "$date": "2020-11-24T02:04:15.000Z" - }, - "events": [ - { - "uuid": "64249f0f-5eb9-43be-bdad-e42df8ce3312", - "start": { - "$date": "2020-11-24T01:48:49.000Z" - }, - "end": { - "$date": "2020-11-24T02:04:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "756ac854-acf3-4fc4-ac26-63fee93f41bc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-24T02:06:34.000Z" - }, - "end": { - "$date": "2020-11-24T02:38:33.000Z" - }, - "events": [ - { - "uuid": "c9b65856-9782-46cd-96e1-baba1367eb0f", - "start": { - "$date": "2020-11-24T02:06:34.000Z" - }, - "end": { - "$date": "2020-11-24T02:38:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bbcf14b-712e-4cdd-912a-553ff15554d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T02:06:35.000Z" - }, - "end": { - "$date": "2020-11-24T02:38:26.000Z" - }, - "events": [ - { - "uuid": "768964fe-996a-4872-a10b-abb8ee708c64", - "start": { - "$date": "2020-11-24T02:06:35.000Z" - }, - "end": { - "$date": "2020-11-24T02:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2eb112a5-3686-425a-a539-80b7f6e6311b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-24T02:33:16.000Z" - }, - "end": { - "$date": "2020-11-24T02:50:42.000Z" - }, - "events": [ - { - "uuid": "c1ab36f8-64f0-4628-8a4d-e810ed927194", - "start": { - "$date": "2020-11-24T02:33:16.000Z" - }, - "end": { - "$date": "2020-11-24T02:50:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "522a5a6b-044c-40fd-8fff-8107b5edd418", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-24T02:45:02.000Z" - }, - "end": { - "$date": "2020-11-24T03:27:28.000Z" - }, - "events": [ - { - "uuid": "8ca498c6-f751-40f0-8631-b4310059892d", - "start": { - "$date": "2020-11-24T02:45:02.000Z" - }, - "end": { - "$date": "2020-11-24T03:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f4abca8-abb7-41be-acb2-41e63ffd8fdd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T02:40:12.000Z" - }, - "end": { - "$date": "2020-11-24T02:41:37.000Z" - }, - "events": [ - { - "uuid": "adf960f4-fa88-4dc3-9f58-a008ed8cbf3b", - "start": { - "$date": "2020-11-24T02:40:12.000Z" - }, - "end": { - "$date": "2020-11-24T02:41:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b1724bb-d856-45a0-b885-4e201d955206", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T02:45:04.000Z" - }, - "end": { - "$date": "2020-11-24T03:27:21.000Z" - }, - "events": [ - { - "uuid": "eef2e9f7-708a-46e9-a0b7-7829fa593ac1", - "start": { - "$date": "2020-11-24T02:45:04.000Z" - }, - "end": { - "$date": "2020-11-24T03:27:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "e9238978-7776-4bff-a4a7-1f5b6cf45e01", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-24T02:51:33.000Z" - }, - "end": { - "$date": "2020-11-24T04:01:16.000Z" - }, - "events": [ - { - "uuid": "c685e6b8-000e-4536-9eda-47c4bcedab45", - "start": { - "$date": "2020-11-24T02:51:33.000Z" - }, - "end": { - "$date": "2020-11-24T04:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "683b517b-85c9-42fc-9052-d0be118e8e66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-24T03:27:50.000Z" - }, - "end": { - "$date": "2020-11-24T04:24:30.000Z" - }, - "events": [ - { - "uuid": "73ab9d60-8658-4444-8acd-dd5631a009e0", - "start": { - "$date": "2020-11-24T03:27:50.000Z" - }, - "end": { - "$date": "2020-11-24T03:39:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebb087f9-7a0f-4e1c-8997-0493b0b50559", - "start": { - "$date": "2020-11-24T03:39:50.000Z" - }, - "end": { - "$date": "2020-11-24T03:51:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bcc8a1e2-5ab6-4104-8737-510b47db97ab", - "start": { - "$date": "2020-11-24T03:51:50.000Z" - }, - "end": { - "$date": "2020-11-24T03:53:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0804b160-7cd1-4478-b48f-6f048d3c9e0a", - "start": { - "$date": "2020-11-24T03:53:50.000Z" - }, - "end": { - "$date": "2020-11-24T04:06:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d13a5274-a201-4463-b729-651db0a5d2cd", - "start": { - "$date": "2020-11-24T04:06:50.000Z" - }, - "end": { - "$date": "2020-11-24T04:08:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7dc227a-6c24-4dbb-9c24-4284fc6e02e5", - "start": { - "$date": "2020-11-24T04:08:50.000Z" - }, - "end": { - "$date": "2020-11-24T04:12:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84d4f9b8-82d2-49ae-ace7-e517e006b9ed", - "start": { - "$date": "2020-11-24T04:12:50.000Z" - }, - "end": { - "$date": "2020-11-24T04:24:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9482e1c2-00ce-40a7-9442-e7cc05eec77d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-24T04:24:30.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:10.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T04:24:30.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8c6c1393-433d-41bc-be45-d1d1115d87c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-24T04:24:42.000Z" - }, - "end": { - "$date": "2020-11-24T04:50:54.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T04:24:42.000Z" - }, - "end": { - "$date": "2020-11-24T04:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d9b15c81-6951-4e1e-b757-2c94a961435c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-24T04:28:27.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T04:28:27.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9be78e3-f222-4ce9-9e31-a198013d2605", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-24T04:28:33.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T04:28:33.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e936324a-f7bb-456b-8564-088c14147629", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T04:28:42.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T04:28:42.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8fdc9084-41f9-4eb6-8e34-87f579b77d07", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-24T04:51:25.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:09.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-24T04:51:25.000Z" - }, - "end": { - "$date": "2020-11-24T05:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "ee9e6024-35e9-40da-b866-b0413c1aa36c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T05:26:12.000Z" - }, - "end": { - "$date": "2020-11-24T06:41:50.000Z" - }, - "events": [ - { - "uuid": "5750be51-a7a9-4dad-83ad-d6c8b7e38a23", - "start": { - "$date": "2020-11-24T05:26:12.000Z" - }, - "end": { - "$date": "2020-11-24T06:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d6a200b9-1ecc-484d-9be9-4ca48e3fc0f0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-24T05:45:15.000Z" - }, - "end": { - "$date": "2020-11-24T07:47:41.000Z" - }, - "events": [ - { - "uuid": "977c8a8d-4b8d-4055-8844-b0a852381332", - "start": { - "$date": "2020-11-24T05:45:15.000Z" - }, - "end": { - "$date": "2020-11-24T07:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "1cc23fc4-efa2-4478-b81f-7cd88131b404", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-24T05:52:05.000Z" - }, - "end": { - "$date": "2020-11-24T10:14:04.000Z" - }, - "events": [ - { - "uuid": "745206c2-47ed-4848-b7b2-1eb6e4d78427", - "start": { - "$date": "2020-11-24T05:52:05.000Z" - }, - "end": { - "$date": "2020-11-24T10:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "1a50cad4-17b1-4c61-aab3-2f6b0be22b26", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-24T05:59:50.000Z" - }, - "end": { - "$date": "2020-11-24T10:13:15.000Z" - }, - "events": [ - { - "uuid": "95101521-eab8-4e2c-9ee1-62297ecafb21", - "start": { - "$date": "2020-11-24T05:59:50.000Z" - }, - "end": { - "$date": "2020-11-24T10:13:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", - "uuid": "19f0169b-7e5e-454c-99d9-439e178232ff", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-24T06:01:00.000Z" - }, - "end": { - "$date": "2020-11-24T06:03:00.000Z" - }, - "events": [ - { - "uuid": "857e6f45-5d0c-4a4e-aacd-ea8475839c86", - "start": { - "$date": "2020-11-24T06:01:00.000Z" - }, - "end": { - "$date": "2020-11-24T06:03:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "c75ed313-61af-45af-be4b-f7113adf4cd3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-24T06:05:36.000Z" - }, - "end": { - "$date": "2020-11-24T10:15:45.000Z" - }, - "events": [ - { - "uuid": "08f0cc32-1068-41a5-b7fd-478ce3bc9677", - "start": { - "$date": "2020-11-24T06:05:36.000Z" - }, - "end": { - "$date": "2020-11-24T10:15:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "48bdf1cc-c347-4287-8aa8-2de637c4653b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-24T07:55:58.000Z" - }, - "end": { - "$date": "2020-11-24T09:29:40.000Z" - }, - "events": [ - { - "uuid": "15833af9-211e-420f-9638-41f541cbc63d", - "start": { - "$date": "2020-11-24T07:55:58.000Z" - }, - "end": { - "$date": "2020-11-24T09:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "dc1118e0-fd1c-4264-be08-be8850081341", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T20:59:20.000Z" - }, - "end": { - "$date": "2020-11-24T21:18:07.000Z" - }, - "events": [ - { - "uuid": "4e492bcf-5ffc-45e3-b620-9f3e2896a831", - "start": { - "$date": "2020-11-24T20:59:20.000Z" - }, - "end": { - "$date": "2020-11-24T21:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ed71109-9856-4ec3-816b-f90785ef834a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T21:16:29.000Z" - }, - "end": { - "$date": "2020-11-24T21:46:09.000Z" - }, - "events": [ - { - "uuid": "8bfe8f04-d2e5-41d9-87d8-a3345c0f2f85", - "start": { - "$date": "2020-11-24T21:16:29.000Z" - }, - "end": { - "$date": "2020-11-24T21:46:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77e1b8fa-dcd6-45ad-bae5-81e362fd52dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T21:33:41.000Z" - }, - "end": { - "$date": "2020-11-24T21:56:24.000Z" - }, - "events": [ - { - "uuid": "2181c87c-6d82-4d7f-afdd-b17fe402f381", - "start": { - "$date": "2020-11-24T21:33:41.000Z" - }, - "end": { - "$date": "2020-11-24T21:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c48eb288-779e-4887-be2c-d9dfb2820aaf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T21:53:25.000Z" - }, - "end": { - "$date": "2020-11-24T22:19:26.000Z" - }, - "events": [ - { - "uuid": "74f2141f-eaa6-4623-a741-9d98c9337f7d", - "start": { - "$date": "2020-11-24T21:53:25.000Z" - }, - "end": { - "$date": "2020-11-24T22:19:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34d33e31-0c5f-4b59-a755-876ef42a76ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T21:57:33.000Z" - }, - "end": { - "$date": "2020-11-24T22:17:51.000Z" - }, - "events": [ - { - "uuid": "176686a3-be78-46e3-94ac-66900d462347", - "start": { - "$date": "2020-11-24T21:57:33.000Z" - }, - "end": { - "$date": "2020-11-24T22:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e52648c5-a985-46ea-ac37-cf21a7e44662", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-24T22:18:49.000Z" - }, - "end": { - "$date": "2020-11-24T22:40:48.000Z" - }, - "events": [ - { - "uuid": "348062f5-a5bd-444c-ad8e-867e157e021c", - "start": { - "$date": "2020-11-24T22:18:49.000Z" - }, - "end": { - "$date": "2020-11-24T22:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9ac356c-691d-443e-abe5-3a8b4c433501", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-24T22:23:36.000Z" - }, - "end": { - "$date": "2020-11-24T22:47:36.000Z" - }, - "events": [ - { - "uuid": "3b1f3d1b-e71b-428c-b018-422ed99ce856", - "start": { - "$date": "2020-11-24T22:23:36.000Z" - }, - "end": { - "$date": "2020-11-24T22:47:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "817f23f2-d981-43e4-9259-f1aea7421319", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-24T23:30:23.000Z" - }, - "end": { - "$date": "2020-11-25T00:24:25.000Z" - }, - "events": [ - { - "uuid": "594c2bf6-5327-4e1a-9f15-b26d45790bdf", - "start": { - "$date": "2020-11-24T23:30:23.000Z" - }, - "end": { - "$date": "2020-11-25T00:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "87bc7343-8cad-4d18-be1b-81f04b1e6a94", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-24T23:31:26.000Z" - }, - "end": { - "$date": "2020-11-25T00:49:45.000Z" - }, - "events": [ - { - "uuid": "6aa4c295-20ac-4ba9-a7b1-6cc07f00512b", - "start": { - "$date": "2020-11-24T23:31:26.000Z" - }, - "end": { - "$date": "2020-11-25T00:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dc64d4f8-feec-4d4a-9e6f-72ba9a08260e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-24T23:49:38.000Z" - }, - "end": { - "$date": "2020-11-25T00:40:24.000Z" - }, - "events": [ - { - "uuid": "50a8298f-915d-4384-9d5d-d5410b531834", - "start": { - "$date": "2020-11-24T23:49:38.000Z" - }, - "end": { - "$date": "2020-11-25T00:40:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b9f46c8b-bf9a-46b0-a4bd-2fe3c0972d3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-24T23:18:05.000Z" - }, - "end": { - "$date": "2020-11-25T01:34:15.000Z" - }, - "events": [ - { - "uuid": "0e139f66-d9be-472d-95b0-759a2f1bff3f", - "start": { - "$date": "2020-11-24T23:18:05.000Z" - }, - "end": { - "$date": "2020-11-25T01:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c6783d4e-bffe-48d7-9a7a-ff2e19d25c30", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-25T01:31:13.000Z" - }, - "end": { - "$date": "2020-11-25T01:57:24.000Z" - }, - "events": [ - { - "uuid": "e5825dd9-4b30-4cae-83c5-c9ede495dd4e", - "start": { - "$date": "2020-11-25T01:31:13.000Z" - }, - "end": { - "$date": "2020-11-25T01:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9cc373b7-18c5-4cb9-9d10-96345a2747f3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-25T01:44:27.000Z" - }, - "end": { - "$date": "2020-11-25T03:12:33.000Z" - }, - "events": [ - { - "uuid": "e8fd66b3-1244-4641-94b6-e201c04b11de", - "start": { - "$date": "2020-11-25T01:44:27.000Z" - }, - "end": { - "$date": "2020-11-25T03:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0bc832a4-631f-4d54-8652-87933d0d8e5b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-25T02:35:28.000Z" - }, - "end": { - "$date": "2020-11-25T02:53:01.000Z" - }, - "events": [ - { - "uuid": "ebcf8c49-6226-4a7f-85f5-baac587b60db", - "start": { - "$date": "2020-11-25T02:35:28.000Z" - }, - "end": { - "$date": "2020-11-25T02:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "eba54cab-268a-42b3-84a2-8b466fc617fa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-25T02:56:46.000Z" - }, - "end": { - "$date": "2020-11-25T05:02:44.000Z" - }, - "events": [ - { - "uuid": "daa70bc8-75f8-4192-9111-2e94bbb279ee", - "start": { - "$date": "2020-11-25T02:56:46.000Z" - }, - "end": { - "$date": "2020-11-25T05:02:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "286bacfe-a379-4de8-9cc0-2a1f51571722", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T03:09:19.000Z" - }, - "end": { - "$date": "2020-11-25T03:58:50.000Z" - }, - "events": [ - { - "uuid": "295def18-04e9-4c25-91fe-43a2d9bd3d4c", - "start": { - "$date": "2020-11-25T03:09:19.000Z" - }, - "end": { - "$date": "2020-11-25T03:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7300247-4add-466e-a6fe-b59772818598", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-25T03:22:29.000Z" - }, - "end": { - "$date": "2020-11-25T03:58:45.000Z" - }, - "events": [ - { - "uuid": "151db36d-0435-4c1e-b8fc-f7a2b5bcc557", - "start": { - "$date": "2020-11-25T03:22:29.000Z" - }, - "end": { - "$date": "2020-11-25T03:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2219cdf5-1d48-4e92-a480-32c1f7cd8239", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T04:07:45.000Z" - }, - "end": { - "$date": "2020-11-25T04:32:30.000Z" - }, - "events": [ - { - "uuid": "63ca60f0-12df-4f09-beed-d4ed72667da0", - "start": { - "$date": "2020-11-25T04:07:45.000Z" - }, - "end": { - "$date": "2020-11-25T04:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fd48c4bd-3cff-40c1-b69b-605cce1baf1b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-25T04:05:30.000Z" - }, - "end": { - "$date": "2020-11-25T05:35:05.000Z" - }, - "events": [ - { - "uuid": "aefb1140-d90d-4c09-8407-fc99ef5449f7", - "start": { - "$date": "2020-11-25T04:05:30.000Z" - }, - "end": { - "$date": "2020-11-25T05:35:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "266cd2b3-f9cd-4c62-9e04-128a5483026c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-25T04:27:15.000Z" - }, - "end": { - "$date": "2020-11-25T06:58:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T04:27:15.000Z" - }, - "end": { - "$date": "2020-11-25T06:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42c8be4a-6569-45c5-9a62-7c2be8395868", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T04:36:56.000Z" - }, - "end": { - "$date": "2020-11-25T05:02:27.000Z" - }, - "events": [ - { - "uuid": "38068644-beb9-49b1-8866-74863beabb01", - "start": { - "$date": "2020-11-25T04:36:56.000Z" - }, - "end": { - "$date": "2020-11-25T05:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e8ae6c2-f73e-4f60-a244-40d1d58e650b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T05:08:48.000Z" - }, - "end": { - "$date": "2020-11-25T05:32:31.000Z" - }, - "events": [ - { - "uuid": "82ac90ed-a6fe-441a-86ad-c509f64bfde0", - "start": { - "$date": "2020-11-25T05:08:48.000Z" - }, - "end": { - "$date": "2020-11-25T05:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43fbcec7-0c89-41cb-8285-2133cd7b6cc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T05:38:49.000Z" - }, - "end": { - "$date": "2020-11-25T05:54:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T05:38:49.000Z" - }, - "end": { - "$date": "2020-11-25T05:54:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "66cc7d20-18e4-4e0b-8ded-a1246fbfcbd1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-25T05:34:40.000Z" - }, - "end": { - "$date": "2020-11-25T07:24:22.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T05:34:40.000Z" - }, - "end": { - "$date": "2020-11-25T07:24:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "149c33cc-ef04-4c8a-b4f1-c3623f5c6166", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-25T05:35:18.000Z" - }, - "end": { - "$date": "2020-11-25T07:32:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T05:35:18.000Z" - }, - "end": { - "$date": "2020-11-25T07:32:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "3823af1b-3bb4-42bd-8ea5-e95f2ea0da8e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-25T05:45:59.000Z" - }, - "end": { - "$date": "2020-11-25T07:23:45.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T05:45:59.000Z" - }, - "end": { - "$date": "2020-11-25T07:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e387ec7f-326d-46a1-98c6-d0b7c7aafc1d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T05:59:38.000Z" - }, - "end": { - "$date": "2020-11-25T07:39:00.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T05:59:38.000Z" - }, - "end": { - "$date": "2020-11-25T07:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "9f48ec65-93e5-45f6-8246-eb6aaa9507fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T06:00:34.000Z" - }, - "end": { - "$date": "2020-11-25T07:25:20.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-25T06:00:34.000Z" - }, - "end": { - "$date": "2020-11-25T07:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51f84cce-755a-495b-970f-7a886c01186d", - "uuid": "4f996116-e2a7-4c64-b898-0791f1b3435f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T08:03:37.000Z" - }, - "end": { - "$date": "2020-11-25T08:06:03.000Z" - }, - "events": [ - { - "uuid": "ab1639b2-be6b-4a81-9775-6e7fe54185d1", - "start": { - "$date": "2020-11-25T08:03:37.000Z" - }, - "end": { - "$date": "2020-11-25T08:06:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "84a25ee7-9fc9-4ce7-aa72-cb81604c941d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-25T08:13:42.000Z" - }, - "end": { - "$date": "2020-11-25T08:56:37.000Z" - }, - "events": [ - { - "uuid": "72f68ff7-84c1-4be8-8841-879486d26fc9", - "start": { - "$date": "2020-11-25T08:13:42.000Z" - }, - "end": { - "$date": "2020-11-25T08:56:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "369ae7a7-9f83-4bb3-9fb0-d0330909b1a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-25T15:33:52.000Z" - }, - "end": { - "$date": "2020-11-25T16:18:08.000Z" - }, - "events": [ - { - "uuid": "5fb7270a-7fea-4a4b-845d-9eb1b2eecfe1", - "start": { - "$date": "2020-11-25T15:33:52.000Z" - }, - "end": { - "$date": "2020-11-25T16:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7ad1813d-a605-459f-81cf-5be38a202d26", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-25T16:40:00.000Z" - }, - "end": { - "$date": "2020-11-25T16:56:40.000Z" - }, - "events": [ - { - "uuid": "cc3ad881-337e-4085-8ce2-f4781085d53b", - "start": { - "$date": "2020-11-25T16:40:00.000Z" - }, - "end": { - "$date": "2020-11-25T16:56:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e95ec3ef-c3ba-4d99-80bf-d7a97b176e25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T18:16:07.000Z" - }, - "end": { - "$date": "2020-11-25T18:37:30.000Z" - }, - "events": [ - { - "uuid": "74743e4e-b6fb-400e-8b86-c97ce3d8ebd8", - "start": { - "$date": "2020-11-25T18:16:07.000Z" - }, - "end": { - "$date": "2020-11-25T18:37:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97239190-6e7e-4f67-bb99-9ecd3cd863a6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T18:42:28.000Z" - }, - "end": { - "$date": "2020-11-25T19:02:00.000Z" - }, - "events": [ - { - "uuid": "618d352a-b9ac-457a-bf11-7556f00093a1", - "start": { - "$date": "2020-11-25T18:42:28.000Z" - }, - "end": { - "$date": "2020-11-25T19:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9c6bec15-b52e-4f61-b63e-4841172f7acf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T19:02:09.000Z" - }, - "end": { - "$date": "2020-11-25T19:05:05.000Z" - }, - "events": [ - { - "uuid": "9204fafe-6bf7-44bf-bb1d-da4b1c21a4a3", - "start": { - "$date": "2020-11-25T19:02:09.000Z" - }, - "end": { - "$date": "2020-11-25T19:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95136eb2-6091-42bb-9bac-c382bd4d721e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T19:04:44.000Z" - }, - "end": { - "$date": "2020-11-25T19:27:20.000Z" - }, - "events": [ - { - "uuid": "857c5bd1-c44e-4cb6-89a9-9b7b189e34c5", - "start": { - "$date": "2020-11-25T19:04:44.000Z" - }, - "end": { - "$date": "2020-11-25T19:27:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4f9c461-72e1-4f03-9936-a21284b58deb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T19:10:49.000Z" - }, - "end": { - "$date": "2020-11-25T19:50:04.000Z" - }, - "events": [ - { - "uuid": "972c197c-a941-4973-adf0-15e5f79f66ca", - "start": { - "$date": "2020-11-25T19:10:49.000Z" - }, - "end": { - "$date": "2020-11-25T19:50:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12573024-c18e-4308-9815-39860195c710", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T22:10:55.000Z" - }, - "end": { - "$date": "2020-11-25T22:19:14.000Z" - }, - "events": [ - { - "uuid": "4c213c98-fb9b-48d5-bac5-44e8125d455f", - "start": { - "$date": "2020-11-25T22:10:55.000Z" - }, - "end": { - "$date": "2020-11-25T22:19:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d590c0be-464c-481b-b343-4ea925dc6155", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-25T20:45:38.000Z" - }, - "end": { - "$date": "2020-11-25T21:23:20.000Z" - }, - "events": [ - { - "uuid": "7bd1f092-47ca-4e50-b99e-e154b16cb409", - "start": { - "$date": "2020-11-25T20:45:38.000Z" - }, - "end": { - "$date": "2020-11-25T21:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eb3801d5-3ce2-407a-8828-78a8e2c4c457", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-25T21:49:45.000Z" - }, - "end": { - "$date": "2020-11-25T22:51:57.000Z" - }, - "events": [ - { - "uuid": "be2bc6d1-fa62-44d5-9301-47eff27883bd", - "start": { - "$date": "2020-11-25T21:49:45.000Z" - }, - "end": { - "$date": "2020-11-25T22:51:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ed676cc0-d079-4e52-9e0f-c3cb64332be8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-25T21:56:40.000Z" - }, - "end": { - "$date": "2020-11-25T22:51:42.000Z" - }, - "events": [ - { - "uuid": "709c490b-c09f-4532-8867-3780940af62f", - "start": { - "$date": "2020-11-25T21:56:40.000Z" - }, - "end": { - "$date": "2020-11-25T22:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4a19197a-55b9-44ae-8184-9a8cb9ad4102", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-25T21:56:40.000Z" - }, - "end": { - "$date": "2020-11-25T23:39:42.000Z" - }, - "events": [ - { - "uuid": "c9a4151d-0e92-44bd-83cb-cd55ae564279", - "start": { - "$date": "2020-11-25T21:56:40.000Z" - }, - "end": { - "$date": "2020-11-25T23:39:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "371f9dfc-989b-4626-80fc-79c2a2e133bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-25T21:49:45.000Z" - }, - "end": { - "$date": "2020-11-25T23:37:23.000Z" - }, - "events": [ - { - "uuid": "2ab09de9-af5b-41d7-8868-47a7bf447cea", - "start": { - "$date": "2020-11-25T21:49:45.000Z" - }, - "end": { - "$date": "2020-11-25T23:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3d4d9bf-f035-4c0c-9530-867499cee96b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-25T23:57:22.000Z" - }, - "end": { - "$date": "2020-11-26T00:35:04.000Z" - }, - "events": [ - { - "uuid": "88ea6f23-f12c-4a70-9fcc-660c28ad3c69", - "start": { - "$date": "2020-11-25T23:57:22.000Z" - }, - "end": { - "$date": "2020-11-26T00:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6ad33a2-9dbd-4781-afdd-c5f78625897f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T00:40:40.000Z" - }, - "end": { - "$date": "2020-11-26T01:37:00.000Z" - }, - "events": [ - { - "uuid": "a0ff3b56-e0c3-47d2-8917-28150651223f", - "start": { - "$date": "2020-11-26T00:40:40.000Z" - }, - "end": { - "$date": "2020-11-26T01:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32041a63-46eb-4b62-9e02-bcb7aa12032e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-26T02:10:17.000Z" - }, - "end": { - "$date": "2020-11-26T02:42:51.000Z" - }, - "events": [ - { - "uuid": "5fbe116b-bdea-40d2-873d-949c19e99c44", - "start": { - "$date": "2020-11-26T02:10:17.000Z" - }, - "end": { - "$date": "2020-11-26T02:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c223e138-4e4c-4096-8587-85058ff9c368", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T02:10:16.000Z" - }, - "end": { - "$date": "2020-11-26T02:42:52.000Z" - }, - "events": [ - { - "uuid": "93b54c31-e1d8-4793-8353-b5da56e1779f", - "start": { - "$date": "2020-11-26T02:10:16.000Z" - }, - "end": { - "$date": "2020-11-26T02:42:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "386d2b04-0e02-4776-92a4-c6576f7d6cee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-26T02:11:40.000Z" - }, - "end": { - "$date": "2020-11-26T03:27:19.000Z" - }, - "events": [ - { - "uuid": "3631960c-091f-48ec-8052-d764d9d57d20", - "start": { - "$date": "2020-11-26T02:11:40.000Z" - }, - "end": { - "$date": "2020-11-26T03:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c81fba36-cb69-4d1e-8620-96db8b4f295c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-26T02:42:10.000Z" - }, - "end": { - "$date": "2020-11-26T03:08:25.000Z" - }, - "events": [ - { - "uuid": "6f8f37c8-7322-4f05-986b-78920b872c0f", - "start": { - "$date": "2020-11-26T02:42:10.000Z" - }, - "end": { - "$date": "2020-11-26T03:08:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ff13de8-aaa4-40c5-a513-ed65fbca103a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-26T02:49:44.000Z" - }, - "end": { - "$date": "2020-11-26T03:22:03.000Z" - }, - "events": [ - { - "uuid": "1211d4f0-388b-456c-979a-7aa21d2be0ef", - "start": { - "$date": "2020-11-26T02:49:44.000Z" - }, - "end": { - "$date": "2020-11-26T03:22:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f81b3db-06f4-4ff4-99d6-3c5f3042e6ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T02:49:44.000Z" - }, - "end": { - "$date": "2020-11-26T03:22:00.000Z" - }, - "events": [ - { - "uuid": "53745a91-8e3d-4d8c-83e5-b99f159f671e", - "start": { - "$date": "2020-11-26T02:49:44.000Z" - }, - "end": { - "$date": "2020-11-26T03:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0b96e8da-c521-4814-a932-0806073c0c9f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-26T02:55:17.000Z" - }, - "end": { - "$date": "2020-11-26T05:19:03.000Z" - }, - "events": [ - { - "uuid": "b9111f46-9bb5-4c69-b217-d9b5928cb1b3", - "start": { - "$date": "2020-11-26T02:55:17.000Z" - }, - "end": { - "$date": "2020-11-26T05:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c453fd2d-7caa-48a2-be74-ea2ed92f8ec5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T03:32:27.000Z" - }, - "end": { - "$date": "2020-11-26T04:13:36.000Z" - }, - "events": [ - { - "uuid": "009f27e5-9575-4da1-b1c5-e8a3481908f0", - "start": { - "$date": "2020-11-26T03:32:27.000Z" - }, - "end": { - "$date": "2020-11-26T04:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05102ead-43b8-4958-a547-afbc36e30d69", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-26T03:32:28.000Z" - }, - "end": { - "$date": "2020-11-26T04:13:23.000Z" - }, - "events": [ - { - "uuid": "ede2936b-62b7-4135-8a3d-89a7dc86caa1", - "start": { - "$date": "2020-11-26T03:32:28.000Z" - }, - "end": { - "$date": "2020-11-26T04:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "244172d6-c424-4079-b43f-b94780a27b3b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-26T04:20:30.000Z" - }, - "end": { - "$date": "2020-11-26T04:44:05.000Z" - }, - "events": [ - { - "uuid": "f415f5d4-e716-451c-a711-b9fb91ad4b93", - "start": { - "$date": "2020-11-26T04:20:30.000Z" - }, - "end": { - "$date": "2020-11-26T04:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "380b1898-033f-4c6d-8618-b4bac9b26400", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-26T04:37:21.000Z" - }, - "end": { - "$date": "2020-11-26T04:50:39.000Z" - }, - "events": [ - { - "uuid": "33880f01-0572-4bea-a96a-b143f4344a99", - "start": { - "$date": "2020-11-26T04:37:21.000Z" - }, - "end": { - "$date": "2020-11-26T04:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4aea0a95-7eab-4c77-9231-3ff3985003f6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-26T05:11:16.000Z" - }, - "end": { - "$date": "2020-11-26T06:45:29.000Z" - }, - "events": [ - { - "uuid": "0e4a6e77-74d5-460b-a1db-43e192cdd4d3", - "start": { - "$date": "2020-11-26T05:11:16.000Z" - }, - "end": { - "$date": "2020-11-26T06:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a293ee69-486a-4bb5-9ed5-4ebfc2583468", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T05:19:45.000Z" - }, - "end": { - "$date": "2020-11-26T05:45:48.000Z" - }, - "events": [ - { - "uuid": "9573a6c8-d4f1-4346-b076-657ad561f4a3", - "start": { - "$date": "2020-11-26T05:19:45.000Z" - }, - "end": { - "$date": "2020-11-26T05:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a55cc839-a09b-4574-8288-a6cdc2ef623f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-26T05:22:05.000Z" - }, - "end": { - "$date": "2020-11-26T05:23:40.000Z" - }, - "events": [ - { - "uuid": "7dee4cde-6f12-41a7-bf2a-adca580b3c8f", - "start": { - "$date": "2020-11-26T05:22:05.000Z" - }, - "end": { - "$date": "2020-11-26T05:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "711f1b7b-8215-42f1-9014-f3e80705da68", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-26T05:24:28.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:25.000Z" - }, - "events": [ - { - "uuid": "7469dfef-ae7b-4ed2-802e-e8e26e098d5a", - "start": { - "$date": "2020-11-26T05:24:28.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fc9bbbb8-b0f7-4edc-bf29-9f6f31d3f824", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-26T05:24:31.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:05.000Z" - }, - "events": [ - { - "uuid": "1d900c67-7c77-4bd5-9149-4c5958873818", - "start": { - "$date": "2020-11-26T05:24:31.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a028be2-f7e6-48a8-ac9b-aa4f3b6a5e67", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-26T05:24:43.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:27.000Z" - }, - "events": [ - { - "uuid": "b8adddc2-fbe0-4806-a395-98232b5be63f", - "start": { - "$date": "2020-11-26T05:24:43.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a0c09468-c661-4375-907e-54e2470bbcdb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-26T05:24:55.000Z" - }, - "end": { - "$date": "2020-11-26T06:59:28.000Z" - }, - "events": [ - { - "uuid": "f88a82c1-a7e2-4f4f-9717-40863344fb16", - "start": { - "$date": "2020-11-26T05:24:55.000Z" - }, - "end": { - "$date": "2020-11-26T06:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b1e6b06e-8524-45dd-9885-0f39ffa1b34e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-26T05:26:10.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:24.000Z" - }, - "events": [ - { - "uuid": "c5c7ccca-740f-4d94-8e78-435bb7473f5b", - "start": { - "$date": "2020-11-26T05:26:10.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "57485c07-7476-4e89-855a-2a013e05f0db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T05:45:58.000Z" - }, - "end": { - "$date": "2020-11-26T06:12:18.000Z" - }, - "events": [ - { - "uuid": "48ccf9cf-015c-43bd-85eb-8d8c345732a2", - "start": { - "$date": "2020-11-26T05:45:58.000Z" - }, - "end": { - "$date": "2020-11-26T06:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf149150-3e0e-453b-977e-902de62cf07a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T06:13:04.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:22.000Z" - }, - "events": [ - { - "uuid": "6fc968fe-b7ad-4d87-84a1-64b4896726f5", - "start": { - "$date": "2020-11-26T06:13:04.000Z" - }, - "end": { - "$date": "2020-11-26T07:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "acd31277-20ba-46b4-bfe7-19f10d517420", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-26T07:32:23.000Z" - }, - "end": { - "$date": "2020-11-26T08:29:13.000Z" - }, - "events": [ - { - "uuid": "8afbeef9-03e2-4a11-b825-110a4f65d28c", - "start": { - "$date": "2020-11-26T07:32:23.000Z" - }, - "end": { - "$date": "2020-11-26T08:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "366487d8-7421-4eb3-b80d-2d423b43aacf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-26T09:33:07.000Z" - }, - "end": { - "$date": "2020-11-26T09:46:29.000Z" - }, - "events": [ - { - "uuid": "d77aa472-0ada-43cb-b079-75f3cc001ac9", - "start": { - "$date": "2020-11-26T09:33:07.000Z" - }, - "end": { - "$date": "2020-11-26T09:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "23d06bf2-fd5f-47aa-ae80-71ab5a478aee", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-26T09:46:39.000Z" - }, - "end": { - "$date": "2020-11-26T11:00:42.000Z" - }, - "events": [ - { - "uuid": "af6a44dc-d7a2-428a-83c1-7f967129f3a5", - "start": { - "$date": "2020-11-26T09:46:39.000Z" - }, - "end": { - "$date": "2020-11-26T11:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f6ea731c-7d31-408d-9f81-84f403ff00bd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-26T15:17:54.000Z" - }, - "end": { - "$date": "2020-11-26T16:47:04.000Z" - }, - "events": [ - { - "uuid": "89b14a38-6a0e-4765-a823-b6d4010e6a3e", - "start": { - "$date": "2020-11-26T15:17:54.000Z" - }, - "end": { - "$date": "2020-11-26T16:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "60a03e1d-1704-427c-aec3-cf9e51f78412", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-26T16:55:21.000Z" - }, - "end": { - "$date": "2020-11-26T17:23:40.000Z" - }, - "events": [ - { - "uuid": "5fd02d8f-571b-4cbb-aa05-3dbfdf7fe212", - "start": { - "$date": "2020-11-26T16:55:21.000Z" - }, - "end": { - "$date": "2020-11-26T17:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "82fe79ee-03f6-4699-a6bf-9249bcdfce64", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-26T17:38:12.000Z" - }, - "end": { - "$date": "2020-11-26T17:45:37.000Z" - }, - "events": [ - { - "uuid": "97469baf-bbb0-478e-bc83-d1d5eca15285", - "start": { - "$date": "2020-11-26T17:38:12.000Z" - }, - "end": { - "$date": "2020-11-26T17:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d174b4b4-c6f4-4311-8ad7-a22f15bab268", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-26T17:46:33.000Z" - }, - "end": { - "$date": "2020-11-26T18:29:28.000Z" - }, - "events": [ - { - "uuid": "42404c9b-a0fa-415e-a248-0ee9b97e11e6", - "start": { - "$date": "2020-11-26T17:46:33.000Z" - }, - "end": { - "$date": "2020-11-26T18:29:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "58aa5529-dae5-423e-b743-f6e975c503c0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-26T21:07:08.000Z" - }, - "end": { - "$date": "2020-11-26T22:41:15.000Z" - }, - "events": [ - { - "uuid": "07b15dbe-d52e-403c-8ea1-1cc81dc0d391", - "start": { - "$date": "2020-11-26T21:07:08.000Z" - }, - "end": { - "$date": "2020-11-26T22:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3b57529f-6091-477a-8e75-74d4131bf0fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-26T21:34:53.000Z" - }, - "end": { - "$date": "2020-11-26T22:42:06.000Z" - }, - "events": [ - { - "uuid": "0deb1294-c0b0-49da-bc9d-8571ad5cf417", - "start": { - "$date": "2020-11-26T21:34:53.000Z" - }, - "end": { - "$date": "2020-11-26T22:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b06eda1a-ca66-4cb8-9990-62ae87d442c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T22:34:12.000Z" - }, - "end": { - "$date": "2020-11-26T22:45:09.000Z" - }, - "events": [ - { - "uuid": "ec62648d-be91-40ed-a278-63da8ef2796b", - "start": { - "$date": "2020-11-26T22:34:12.000Z" - }, - "end": { - "$date": "2020-11-26T22:45:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "541a0537-a201-484e-94c2-944705701a3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-26T22:38:11.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:58.000Z" - }, - "events": [ - { - "uuid": "4002924f-051b-4775-b396-95c1ef0061ec", - "start": { - "$date": "2020-11-26T22:38:11.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "17b0e56a-6be1-4ade-8ed3-0a3ca6b76918", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-26T22:39:11.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:50.000Z" - }, - "events": [ - { - "uuid": "389329a0-d3d1-412a-ae1d-330b019bccd0", - "start": { - "$date": "2020-11-26T22:39:11.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fd3ff379-c9fa-4397-ac9e-e119451e362a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-26T22:41:47.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:52.000Z" - }, - "events": [ - { - "uuid": "ccabc796-2f4b-4af9-93b2-db0710c54534", - "start": { - "$date": "2020-11-26T22:41:47.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "16b2367f-da3a-446f-b785-de98d6bba674", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-26T22:42:21.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:32.000Z" - }, - "events": [ - { - "uuid": "ba525794-7fcd-4bfe-9339-bf64254999cf", - "start": { - "$date": "2020-11-26T22:42:21.000Z" - }, - "end": { - "$date": "2020-11-26T23:56:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fa61a209-7638-4acf-8feb-b247b481f7fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-26T22:46:18.000Z" - }, - "end": { - "$date": "2020-11-27T00:59:13.000Z" - }, - "events": [ - { - "uuid": "ca5b92e4-5566-4063-b8ad-c996b8a0d641", - "start": { - "$date": "2020-11-26T22:46:18.000Z" - }, - "end": { - "$date": "2020-11-27T00:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "73d4a6b9-294d-4ce8-910b-4df529373726", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-26T23:14:16.000Z" - }, - "end": { - "$date": "2020-11-26T23:49:38.000Z" - }, - "events": [ - { - "uuid": "cfda7ca4-2a92-4b30-98cd-679d1d0c250a", - "start": { - "$date": "2020-11-26T23:14:16.000Z" - }, - "end": { - "$date": "2020-11-26T23:49:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f8e41917-a722-4584-ad8e-7c17d41dad0c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-26T23:56:46.000Z" - }, - "end": { - "$date": "2020-11-27T04:00:15.000Z" - }, - "events": [ - { - "uuid": "6f667b9c-95df-4494-9a97-ff9ce0fcfbab", - "start": { - "$date": "2020-11-26T23:56:46.000Z" - }, - "end": { - "$date": "2020-11-27T04:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "e463cec3-7de8-4869-8b44-5c9c04429f32", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-26T23:57:49.000Z" - }, - "end": { - "$date": "2020-11-26T23:58:50.000Z" - }, - "events": [ - { - "uuid": "b6c49c1b-3df2-418f-8206-66fd919f6f6e", - "start": { - "$date": "2020-11-26T23:57:49.000Z" - }, - "end": { - "$date": "2020-11-26T23:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6c90c8cf-6e0c-4ea1-93e2-603dd800b57b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T00:03:15.000Z" - }, - "end": { - "$date": "2020-11-27T02:32:20.000Z" - }, - "events": [ - { - "uuid": "8b764180-773a-439f-97c3-91d5aafc2555", - "start": { - "$date": "2020-11-27T00:03:15.000Z" - }, - "end": { - "$date": "2020-11-27T02:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "4bf9d367-bc58-47e6-bb6c-6de056c10868", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T01:00:18.000Z" - }, - "end": { - "$date": "2020-11-27T02:12:21.000Z" - }, - "events": [ - { - "uuid": "7def99d7-d991-4111-80db-a0fc3888ddae", - "start": { - "$date": "2020-11-27T01:00:18.000Z" - }, - "end": { - "$date": "2020-11-27T02:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a4278990-adab-4142-b6ad-287be1c9eb51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-27T01:19:40.000Z" - }, - "end": { - "$date": "2020-11-27T02:09:38.000Z" - }, - "events": [ - { - "uuid": "4dd31212-694b-41f4-88ef-3f3836e86fe2", - "start": { - "$date": "2020-11-27T01:19:40.000Z" - }, - "end": { - "$date": "2020-11-27T02:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "63cc2459-439a-4b5e-8e38-af5afb1bf513", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-27T01:48:34.000Z" - }, - "end": { - "$date": "2020-11-27T05:20:25.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-27T01:48:34.000Z" - }, - "end": { - "$date": "2020-11-27T05:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53bd0dcb-1836-4795-9b72-abbc50608c19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T02:19:21.000Z" - }, - "end": { - "$date": "2020-11-27T02:56:07.000Z" - }, - "events": [ - { - "uuid": "99c2c47f-fefa-453e-a465-0e5e48ad697c", - "start": { - "$date": "2020-11-27T02:19:21.000Z" - }, - "end": { - "$date": "2020-11-27T02:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0723e3d-3340-4d34-bc59-86032511c3ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T02:19:22.000Z" - }, - "end": { - "$date": "2020-11-27T02:56:03.000Z" - }, - "events": [ - { - "uuid": "8815f0ea-f441-4772-b79b-55fecea0df21", - "start": { - "$date": "2020-11-27T02:19:22.000Z" - }, - "end": { - "$date": "2020-11-27T02:56:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5aa086b-3d6c-4664-ad0a-3dca977937bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T03:01:18.000Z" - }, - "end": { - "$date": "2020-11-27T03:20:08.000Z" - }, - "events": [ - { - "uuid": "fd769349-d529-492c-b147-d293d687d4eb", - "start": { - "$date": "2020-11-27T03:01:18.000Z" - }, - "end": { - "$date": "2020-11-27T03:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8c60b10-e71a-44f7-ac1f-6fe12b48ee8a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T03:01:18.000Z" - }, - "end": { - "$date": "2020-11-27T03:20:05.000Z" - }, - "events": [ - { - "uuid": "25519fa9-60db-4057-84fc-fbdecd73c00e", - "start": { - "$date": "2020-11-27T03:01:18.000Z" - }, - "end": { - "$date": "2020-11-27T03:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e957a597-e944-422a-ba25-88de2a742dfe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-27T03:23:06.000Z" - }, - "end": { - "$date": "2020-11-27T03:59:29.000Z" - }, - "events": [ - { - "uuid": "28e828d2-4b04-4339-95e6-f0787a2257f9", - "start": { - "$date": "2020-11-27T03:23:06.000Z" - }, - "end": { - "$date": "2020-11-27T03:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "eaeaa1e3-9bf0-4864-90b4-797adc2361f1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T04:06:41.000Z" - }, - "end": { - "$date": "2020-11-27T05:29:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-27T04:06:41.000Z" - }, - "end": { - "$date": "2020-11-27T05:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "10766f43-3865-46cc-b00b-fbbaa3b282e9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-27T05:15:14.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:35.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-27T05:15:14.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4a7f1c09-203a-440d-896d-54434bec07ef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-27T05:30:30.000Z" - }, - "end": { - "$date": "2020-11-27T07:26:49.000Z" - }, - "events": [ - { - "uuid": "acbc3cfa-2688-47c3-b1d5-2e114c771f9f", - "start": { - "$date": "2020-11-27T05:30:30.000Z" - }, - "end": { - "$date": "2020-11-27T07:26:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "66e8e10a-756f-4fb0-b9e4-35c90f8c2b2c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T05:31:08.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:26.000Z" - }, - "events": [ - { - "uuid": "9770ea20-c0d3-44ec-b476-fae6f4d0f1da", - "start": { - "$date": "2020-11-27T05:31:08.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6925f699-2608-492f-953a-ccce3c96c0fe", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T05:31:18.000Z" - }, - "end": { - "$date": "2020-11-27T07:29:56.000Z" - }, - "events": [ - { - "uuid": "df957109-8d35-4c93-a900-38156cb965e6", - "start": { - "$date": "2020-11-27T05:31:18.000Z" - }, - "end": { - "$date": "2020-11-27T07:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd5a65dc-ac43-4e8a-b4be-86136df4a3f3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T05:32:48.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:20.000Z" - }, - "events": [ - { - "uuid": "4c5784a8-50ec-44f3-b471-8bf1aec354f7", - "start": { - "$date": "2020-11-27T05:32:48.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bd81f5e3-2146-4264-bcb5-780ce12a3e0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T06:47:07.000Z" - }, - "end": { - "$date": "2020-11-27T07:34:07.000Z" - }, - "events": [ - { - "uuid": "666a54a1-8cea-4659-9c6c-99d31e2ad884", - "start": { - "$date": "2020-11-27T06:47:07.000Z" - }, - "end": { - "$date": "2020-11-27T07:34:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eebf3c8d-2e48-4730-9a61-9b147791c55b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T07:13:30.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:06.000Z" - }, - "events": [ - { - "uuid": "c50de8ae-153c-477c-b6c2-dc554521d743", - "start": { - "$date": "2020-11-27T07:13:30.000Z" - }, - "end": { - "$date": "2020-11-27T07:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b54e8d33-3143-4d77-a032-90b1ee9670dd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-27T07:27:04.000Z" - }, - "end": { - "$date": "2020-11-27T07:55:56.000Z" - }, - "events": [ - { - "uuid": "8d8ccaac-4c98-43c5-a57b-c7175fffc26f", - "start": { - "$date": "2020-11-27T07:27:04.000Z" - }, - "end": { - "$date": "2020-11-27T07:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1ca242f9-134d-444b-bc31-51ee52aac29b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T07:30:46.000Z" - }, - "end": { - "$date": "2020-11-27T07:32:18.000Z" - }, - "events": [ - { - "uuid": "69d03ee0-d77b-45f3-bedb-96cdc510d78c", - "start": { - "$date": "2020-11-27T07:30:46.000Z" - }, - "end": { - "$date": "2020-11-27T07:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5a50515-48f8-4c66-89ba-26cc9fefdd63", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T07:41:48.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:14.000Z" - }, - "events": [ - { - "uuid": "891ccc0c-0453-40a0-8a25-00b381b08cfe", - "start": { - "$date": "2020-11-27T07:41:48.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "410a9473-2d6c-49bd-9141-b810c00ee0fd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T07:33:02.000Z" - }, - "end": { - "$date": "2020-11-27T07:39:57.000Z" - }, - "events": [ - { - "uuid": "9c6ea296-8e0f-48eb-bdf6-211ea840aab5", - "start": { - "$date": "2020-11-27T07:33:02.000Z" - }, - "end": { - "$date": "2020-11-27T07:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6e9269b-a4b3-459b-8952-c3e1751c6be6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T07:58:28.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:09.000Z" - }, - "events": [ - { - "uuid": "43453e74-4610-41b0-8688-581aec9f3708", - "start": { - "$date": "2020-11-27T07:58:28.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "797d5303-7c2d-4ee6-8697-da7b40516f27", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T07:41:47.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:12.000Z" - }, - "events": [ - { - "uuid": "8617d281-967d-43c0-9540-e966fbc18aab", - "start": { - "$date": "2020-11-27T07:41:47.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8439eb8-bd45-4116-b1b8-6795170b0ef0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-27T07:41:50.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:16.000Z" - }, - "events": [ - { - "uuid": "5de84dda-319d-4514-b632-73e25b5398aa", - "start": { - "$date": "2020-11-27T07:41:50.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ce85e3c-6a77-4fd6-9eee-fce036a5f93c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T07:41:48.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:08.000Z" - }, - "events": [ - { - "uuid": "3044dd52-aa67-41a2-ab4e-8958d4a15274", - "start": { - "$date": "2020-11-27T07:41:48.000Z" - }, - "end": { - "$date": "2020-11-27T08:10:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "847e405b-4954-4679-8948-aa90c3afcfa3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T08:11:28.000Z" - }, - "end": { - "$date": "2020-11-27T08:34:04.000Z" - }, - "events": [ - { - "uuid": "4d09c502-fe93-43c4-b144-d8df47d6c26d", - "start": { - "$date": "2020-11-27T08:11:28.000Z" - }, - "end": { - "$date": "2020-11-27T08:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "931f8e00-74ab-4432-8b53-3567597ee812", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T08:33:28.000Z" - }, - "end": { - "$date": "2020-11-27T08:36:24.000Z" - }, - "events": [ - { - "uuid": "0ce492d4-d6f5-448a-845e-d79c1529661d", - "start": { - "$date": "2020-11-27T08:33:28.000Z" - }, - "end": { - "$date": "2020-11-27T08:36:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "b53df48d-5301-44c3-8d80-989f8447fdc4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T08:37:09.000Z" - }, - "end": { - "$date": "2020-11-27T08:39:59.000Z" - }, - "events": [ - { - "uuid": "d7c922a1-4497-4ac9-9f1a-e6d43b96a6fa", - "start": { - "$date": "2020-11-27T08:37:09.000Z" - }, - "end": { - "$date": "2020-11-27T08:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "4e29428b-c826-4889-a442-558f2d47c88f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T08:40:24.000Z" - }, - "end": { - "$date": "2020-11-27T08:41:29.000Z" - }, - "events": [ - { - "uuid": "7806feca-cf0e-41ca-9829-f94a12122098", - "start": { - "$date": "2020-11-27T08:40:24.000Z" - }, - "end": { - "$date": "2020-11-27T08:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "04ea678f-fd64-470a-b754-ce2e57c8eed6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T08:41:44.000Z" - }, - "end": { - "$date": "2020-11-27T10:05:09.000Z" - }, - "events": [ - { - "uuid": "5e43bf50-8158-45ef-9b60-41361a74187a", - "start": { - "$date": "2020-11-27T08:41:44.000Z" - }, - "end": { - "$date": "2020-11-27T10:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b47bd9e1-d8fc-401d-b970-ab141d5f77a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T15:18:23.000Z" - }, - "end": { - "$date": "2020-11-27T16:59:19.000Z" - }, - "events": [ - { - "uuid": "c6547831-2661-4aaa-b91c-ebd8be1649be", - "start": { - "$date": "2020-11-27T15:18:23.000Z" - }, - "end": { - "$date": "2020-11-27T16:59:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74c1ec4f-52b5-428e-bdf3-5f1ef8c47a72", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T17:23:33.000Z" - }, - "end": { - "$date": "2020-11-27T17:50:00.000Z" - }, - "events": [ - { - "uuid": "b630dec1-4b82-48ff-b672-15afddd3862f", - "start": { - "$date": "2020-11-27T17:23:33.000Z" - }, - "end": { - "$date": "2020-11-27T17:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "aac0b518-3aa2-4ad1-826e-98e34ea58dc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T17:22:17.000Z" - }, - "end": { - "$date": "2020-11-27T17:29:26.000Z" - }, - "events": [ - { - "uuid": "2d93922f-70db-49ff-97a7-bb543fd884ef", - "start": { - "$date": "2020-11-27T17:22:17.000Z" - }, - "end": { - "$date": "2020-11-27T17:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "5913bffd-bbb4-4f3a-90ef-8bf2dbde18dd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T17:29:47.000Z" - }, - "end": { - "$date": "2020-11-27T18:34:38.000Z" - }, - "events": [ - { - "uuid": "408d5fec-b6ef-4dfd-be0c-4b41f3a54bed", - "start": { - "$date": "2020-11-27T17:29:47.000Z" - }, - "end": { - "$date": "2020-11-27T17:47:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0cb830d-09e4-4c05-94f4-b03ec1b366fc", - "start": { - "$date": "2020-11-27T17:47:47.000Z" - }, - "end": { - "$date": "2020-11-27T17:48:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e411de83-2f16-45d7-9363-08379f2c4750", - "start": { - "$date": "2020-11-27T17:48:47.000Z" - }, - "end": { - "$date": "2020-11-27T18:18:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4e1b9f8-c362-444a-bbbb-ba5cf90def4a", - "start": { - "$date": "2020-11-27T18:18:47.000Z" - }, - "end": { - "$date": "2020-11-27T18:34:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36e9b590-64b8-4a98-9bb9-7709f3dc33bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T18:08:01.000Z" - }, - "end": { - "$date": "2020-11-27T18:48:21.000Z" - }, - "events": [ - { - "uuid": "df6c1e64-81c4-4472-aaf7-5eaa647b01a7", - "start": { - "$date": "2020-11-27T18:08:01.000Z" - }, - "end": { - "$date": "2020-11-27T18:48:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fb278e5-36ec-4c6d-a76f-a479bdcdc4f3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T18:10:39.000Z" - }, - "end": { - "$date": "2020-11-27T18:48:20.000Z" - }, - "events": [ - { - "uuid": "c85bae40-4b03-4ae1-80b8-aa4f5a82bfd0", - "start": { - "$date": "2020-11-27T18:10:39.000Z" - }, - "end": { - "$date": "2020-11-27T18:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5da30ba-171f-4696-b980-8fb3724f049a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T18:53:03.000Z" - }, - "end": { - "$date": "2020-11-27T19:36:31.000Z" - }, - "events": [ - { - "uuid": "b8dd5fd2-0c2c-4e76-b19d-5d1a64291fbe", - "start": { - "$date": "2020-11-27T18:53:03.000Z" - }, - "end": { - "$date": "2020-11-27T19:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcba7cf8-9d27-4e78-8b1e-9fcf72217954", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T18:52:55.000Z" - }, - "end": { - "$date": "2020-11-27T19:36:54.000Z" - }, - "events": [ - { - "uuid": "be85dc69-b388-4d6c-b488-9da0b4673c2e", - "start": { - "$date": "2020-11-27T18:52:55.000Z" - }, - "end": { - "$date": "2020-11-27T19:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4444a253-7fc3-4bc8-9897-f70d6f3c9d2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T18:51:45.000Z" - }, - "end": { - "$date": "2020-11-27T18:53:50.000Z" - }, - "events": [ - { - "uuid": "00c90abb-3dc5-4019-a54d-536042e50ab4", - "start": { - "$date": "2020-11-27T18:51:45.000Z" - }, - "end": { - "$date": "2020-11-27T18:53:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b2fa12f7-a4fb-4667-b06f-d590561b0f63", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T18:54:00.000Z" - }, - "end": { - "$date": "2020-11-27T19:03:01.000Z" - }, - "events": [ - { - "uuid": "61b58c19-6140-41fa-be24-c9421ea43a49", - "start": { - "$date": "2020-11-27T18:54:00.000Z" - }, - "end": { - "$date": "2020-11-27T19:03:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3e9833d4-c85f-48ae-914a-c5245c8f9f5e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T19:11:32.000Z" - }, - "end": { - "$date": "2020-11-27T20:33:54.000Z" - }, - "events": [ - { - "uuid": "f3ba0cbb-fb00-4ceb-81bf-18d9693c18bf", - "start": { - "$date": "2020-11-27T19:11:32.000Z" - }, - "end": { - "$date": "2020-11-27T20:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce8bd228-9914-4001-ab47-f10643042bba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T19:45:26.000Z" - }, - "end": { - "$date": "2020-11-27T20:22:35.000Z" - }, - "events": [ - { - "uuid": "ffa39256-40ae-454e-9da3-8202e943d85f", - "start": { - "$date": "2020-11-27T19:45:26.000Z" - }, - "end": { - "$date": "2020-11-27T20:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c196015-7f75-4a6e-a070-4f9831cad86f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T19:45:22.000Z" - }, - "end": { - "$date": "2020-11-27T20:22:23.000Z" - }, - "events": [ - { - "uuid": "d4e3d9f1-6c42-478a-a1cd-4a6247c3945c", - "start": { - "$date": "2020-11-27T19:45:22.000Z" - }, - "end": { - "$date": "2020-11-27T20:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d8e8f375-6057-421b-b848-2fd86ccd605b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-27T20:13:01.000Z" - }, - "end": { - "$date": "2020-11-27T21:33:56.000Z" - }, - "events": [ - { - "uuid": "539f95bb-0661-4a2e-b00d-d5dd4940c4b5", - "start": { - "$date": "2020-11-27T20:13:01.000Z" - }, - "end": { - "$date": "2020-11-27T21:33:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efc5cdf6-b698-47bd-b5cf-a337b492d285", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T20:30:43.000Z" - }, - "end": { - "$date": "2020-11-27T21:11:09.000Z" - }, - "events": [ - { - "uuid": "86c73b18-e765-4e6e-a24c-55eb69dd0f4e", - "start": { - "$date": "2020-11-27T20:30:43.000Z" - }, - "end": { - "$date": "2020-11-27T21:11:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "7bd47d07-e438-437d-99ae-2774e831f77a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-27T20:26:51.000Z" - }, - "end": { - "$date": "2020-11-27T20:29:04.000Z" - }, - "events": [ - { - "uuid": "fc191c6f-6a29-421f-ba55-24eb750a5f73", - "start": { - "$date": "2020-11-27T20:26:51.000Z" - }, - "end": { - "$date": "2020-11-27T20:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51ca3022-ce17-4418-9450-630679d54daa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T20:30:40.000Z" - }, - "end": { - "$date": "2020-11-27T21:11:06.000Z" - }, - "events": [ - { - "uuid": "e0802ad1-e238-4d98-9a01-3ca1d3f823e2", - "start": { - "$date": "2020-11-27T20:30:40.000Z" - }, - "end": { - "$date": "2020-11-27T21:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dc0e043f-3fe4-49b5-ad5b-ca98e8152ecf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-27T20:38:22.000Z" - }, - "end": { - "$date": "2020-11-27T20:46:06.000Z" - }, - "events": [ - { - "uuid": "8297906e-106b-42fd-a51e-9545a8ffcb96", - "start": { - "$date": "2020-11-27T20:38:22.000Z" - }, - "end": { - "$date": "2020-11-27T20:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ef63864-2280-45d1-9216-cbe3a0f82c58", - "uuid": "63fcd99f-d1be-4400-b37e-1a5cbedb636d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T21:04:22.000Z" - }, - "end": { - "$date": "2020-11-27T21:17:22.000Z" - }, - "events": [ - { - "uuid": "dbb83e25-70ee-46f3-a8fa-2dba58d1c26c", - "start": { - "$date": "2020-11-27T21:04:22.000Z" - }, - "end": { - "$date": "2020-11-27T21:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36b8f278-89e9-44b0-b4e2-ed2a77951465", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T21:12:08.000Z" - }, - "end": { - "$date": "2020-11-27T21:14:11.000Z" - }, - "events": [ - { - "uuid": "396a08c2-c66e-4374-8d72-d2ca433b459f", - "start": { - "$date": "2020-11-27T21:12:08.000Z" - }, - "end": { - "$date": "2020-11-27T21:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1d42b27-77f2-479a-b7f8-b32ebc198677", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-27T21:14:11.000Z" - }, - "end": { - "$date": "2020-11-27T22:59:43.000Z" - }, - "events": [ - { - "uuid": "ef64f16c-e11e-40be-baa3-8321b238d52d", - "start": { - "$date": "2020-11-27T21:14:11.000Z" - }, - "end": { - "$date": "2020-11-27T21:25:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a72fd20-f250-47ec-9e8e-ba2430daa410", - "start": { - "$date": "2020-11-27T21:25:11.000Z" - }, - "end": { - "$date": "2020-11-27T21:27:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4aab8c14-a538-43b5-8887-d97082530ca0", - "start": { - "$date": "2020-11-27T21:27:11.000Z" - }, - "end": { - "$date": "2020-11-27T21:29:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9616a49-b846-4565-9bc2-da1829a046f4", - "start": { - "$date": "2020-11-27T21:29:11.000Z" - }, - "end": { - "$date": "2020-11-27T21:33:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f68153f-8fc6-4f90-8c54-e08d5085af31", - "start": { - "$date": "2020-11-27T21:33:11.000Z" - }, - "end": { - "$date": "2020-11-27T21:43:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e1c0ae91-244a-4299-93a6-155ac047107e", - "start": { - "$date": "2020-11-27T21:43:11.000Z" - }, - "end": { - "$date": "2020-11-27T22:36:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8512d276-423c-412a-b16f-310c1b7e2da7", - "start": { - "$date": "2020-11-27T22:36:11.000Z" - }, - "end": { - "$date": "2020-11-27T22:58:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "366716a8-8f6c-49cd-a3b6-0febadd5774f", - "start": { - "$date": "2020-11-27T22:58:11.000Z" - }, - "end": { - "$date": "2020-11-27T22:59:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "9ebf68c9-8fd1-4d4a-b604-72ce898d5e3a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T21:23:17.000Z" - }, - "end": { - "$date": "2020-11-27T21:28:03.000Z" - }, - "events": [ - { - "uuid": "0ae8349d-592e-4472-980c-59633d0f8eed", - "start": { - "$date": "2020-11-27T21:23:17.000Z" - }, - "end": { - "$date": "2020-11-27T21:28:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ef26f5fd-038b-4890-96b0-f1096725ec4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-27T21:31:39.000Z" - }, - "end": { - "$date": "2020-11-27T21:42:34.000Z" - }, - "events": [ - { - "uuid": "e991e0a5-fea5-4b59-a96e-40c7b5b32431", - "start": { - "$date": "2020-11-27T21:31:39.000Z" - }, - "end": { - "$date": "2020-11-27T21:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b2107dc-1a81-4269-9ca6-98381afcdadf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-27T21:34:06.000Z" - }, - "end": { - "$date": "2020-11-27T22:21:19.000Z" - }, - "events": [ - { - "uuid": "f0a244c7-c839-4ccc-be46-a5245ec08bfe", - "start": { - "$date": "2020-11-27T21:34:06.000Z" - }, - "end": { - "$date": "2020-11-27T22:21:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6aa766ce-e303-4bca-9791-664bf0dbd823", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-11-27T22:44:25.000Z" - }, - "end": { - "$date": "2020-11-28T05:20:04.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-27T22:44:25.000Z" - }, - "end": { - "$date": "2020-11-28T05:20:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6e9838bc-b56d-48ba-879e-e137b8d10b3a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-27T22:47:34.000Z" - }, - "end": { - "$date": "2020-11-27T23:02:43.000Z" - }, - "events": [ - { - "uuid": "c6cb02f0-b1ae-407c-abcc-f50fe7599153", - "start": { - "$date": "2020-11-27T22:47:34.000Z" - }, - "end": { - "$date": "2020-11-27T23:02:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "d53f7096-eeae-46c7-9347-e4bc9984219d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T22:48:39.000Z" - }, - "end": { - "$date": "2020-11-27T22:50:45.000Z" - }, - "events": [ - { - "uuid": "9922f6b4-9b26-4652-8fe5-3e32be40842b", - "start": { - "$date": "2020-11-27T22:48:39.000Z" - }, - "end": { - "$date": "2020-11-27T22:50:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bd1208f8-0e12-4bc2-801d-a27716f23ff9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-27T22:50:59.000Z" - }, - "end": { - "$date": "2020-11-28T01:32:45.000Z" - }, - "events": [ - { - "uuid": "48ee296c-e975-4845-b9a1-204a3f5cf224", - "start": { - "$date": "2020-11-27T22:50:59.000Z" - }, - "end": { - "$date": "2020-11-28T01:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc368ed4-cb9f-43e2-9f3b-dd73b36e871d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-27T22:59:43.000Z" - }, - "end": { - "$date": "2020-11-28T00:36:14.000Z" - }, - "events": [ - { - "uuid": "ed7b5004-2631-40c5-ba69-d61647ff57de", - "start": { - "$date": "2020-11-27T22:59:43.000Z" - }, - "end": { - "$date": "2020-11-27T23:02:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bdaa1c18-a7d1-4a29-a633-1c6da8e0d807", - "start": { - "$date": "2020-11-27T23:02:43.000Z" - }, - "end": { - "$date": "2020-11-27T23:36:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e39d774d-eb4c-474e-bcfa-db5c4d0a044f", - "start": { - "$date": "2020-11-27T23:36:43.000Z" - }, - "end": { - "$date": "2020-11-28T00:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d8a936dc-23d6-447f-9503-545df7d34f05", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-27T23:07:04.000Z" - }, - "end": { - "$date": "2020-11-28T01:33:15.000Z" - }, - "events": [ - { - "uuid": "12ae9631-0ce0-44ae-86fc-b49b81c262ed", - "start": { - "$date": "2020-11-27T23:07:04.000Z" - }, - "end": { - "$date": "2020-11-28T01:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6d1ee3f2-7f9b-4de8-a1ae-d02d95a030ae", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-27T23:38:36.000Z" - }, - "end": { - "$date": "2020-11-28T05:20:09.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-27T23:38:36.000Z" - }, - "end": { - "$date": "2020-11-28T05:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "268fb00a-d976-4dc5-ab23-970ea9bb78bd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-28T00:17:20.000Z" - }, - "end": { - "$date": "2020-11-28T00:33:28.000Z" - }, - "events": [ - { - "uuid": "5c3a009d-9405-4cb5-8f0d-914da6fd907c", - "start": { - "$date": "2020-11-28T00:17:20.000Z" - }, - "end": { - "$date": "2020-11-28T00:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "344455e2-a935-456c-b5c9-467e28718604", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-28T00:40:34.000Z" - }, - "end": { - "$date": "2020-11-28T01:27:32.000Z" - }, - "events": [ - { - "uuid": "79a20ec8-4b5a-473f-b7e9-285336dd1d6c", - "start": { - "$date": "2020-11-28T00:40:34.000Z" - }, - "end": { - "$date": "2020-11-28T01:27:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60ce557e-9680-41d5-87a0-3eeee9df7661", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T00:40:38.000Z" - }, - "end": { - "$date": "2020-11-28T01:27:23.000Z" - }, - "events": [ - { - "uuid": "079a22e4-9edf-4b8e-8475-d1c47da9d3d8", - "start": { - "$date": "2020-11-28T00:40:38.000Z" - }, - "end": { - "$date": "2020-11-28T01:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "32997b4c-4293-4c1c-93da-227f5dab550e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T01:19:51.000Z" - }, - "end": { - "$date": "2020-11-28T02:36:24.000Z" - }, - "events": [ - { - "uuid": "b6bfd899-a027-43b8-84c5-99ed62c4e96d", - "start": { - "$date": "2020-11-28T01:19:51.000Z" - }, - "end": { - "$date": "2020-11-28T02:36:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a963bf2b-8ba6-46b5-8911-ce86b63ba525", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-28T01:36:15.000Z" - }, - "end": { - "$date": "2020-11-28T01:55:02.000Z" - }, - "events": [ - { - "uuid": "2ca0e3a0-8e93-456c-9d9e-3300fdeb184d", - "start": { - "$date": "2020-11-28T01:36:15.000Z" - }, - "end": { - "$date": "2020-11-28T01:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf0b6b75-2b19-40c4-85ca-fe0170aaf200", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T02:35:03.000Z" - }, - "end": { - "$date": "2020-11-28T03:00:56.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-28T02:35:03.000Z" - }, - "end": { - "$date": "2020-11-28T03:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b541359d-9476-49a1-b394-4740015063ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-28T01:55:29.000Z" - }, - "end": { - "$date": "2020-11-28T02:24:17.000Z" - }, - "events": [ - { - "uuid": "fc7767d6-5327-44b8-bdbb-6504692694ed", - "start": { - "$date": "2020-11-28T01:55:29.000Z" - }, - "end": { - "$date": "2020-11-28T02:24:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4ed74bcb-20ac-4d4a-b8c2-5168a18f418b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-28T02:43:48.000Z" - }, - "end": { - "$date": "2020-11-28T03:09:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-11-28T02:43:48.000Z" - }, - "end": { - "$date": "2020-11-28T03:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "55ec9723-2ac1-4c0d-b525-1a00778d8ee9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-28T03:19:37.000Z" - }, - "end": { - "$date": "2020-11-28T05:33:27.000Z" - }, - "events": [ - { - "uuid": "eeaf4344-ba8d-42bc-a029-be1ee92cb66f", - "start": { - "$date": "2020-11-28T03:19:37.000Z" - }, - "end": { - "$date": "2020-11-28T05:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2d33b8f4-c559-4459-a424-7edf338cc845", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T03:50:17.000Z" - }, - "end": { - "$date": "2020-11-28T04:27:14.000Z" - }, - "events": [ - { - "uuid": "91777fc8-5fcb-455c-8aaf-a10f86b7d2dd", - "start": { - "$date": "2020-11-28T03:50:17.000Z" - }, - "end": { - "$date": "2020-11-28T04:27:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9dca9e0c-b6c3-4e88-97d3-8fbbf91202fc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T04:12:28.000Z" - }, - "end": { - "$date": "2020-11-28T06:12:53.000Z" - }, - "events": [ - { - "uuid": "31609840-54d9-41f6-a479-9ad8fc8537fc", - "start": { - "$date": "2020-11-28T04:12:28.000Z" - }, - "end": { - "$date": "2020-11-28T06:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b080a85-36c1-4939-9977-44fe17ecf059", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T05:39:23.000Z" - }, - "end": { - "$date": "2020-11-28T06:01:58.000Z" - }, - "events": [ - { - "uuid": "9fd918f7-0377-4b82-8900-e3151d20589e", - "start": { - "$date": "2020-11-28T05:39:23.000Z" - }, - "end": { - "$date": "2020-11-28T06:01:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3f421a8a-45bc-4b2c-8a8c-336ca4ead671", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-28T05:35:47.000Z" - }, - "end": { - "$date": "2020-11-28T06:25:07.000Z" - }, - "events": [ - { - "uuid": "ba6ab8d8-edee-44db-8dd9-21518558599a", - "start": { - "$date": "2020-11-28T05:35:47.000Z" - }, - "end": { - "$date": "2020-11-28T06:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "44e1de7c-899e-49e1-8146-8f74c16cfaab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-28T05:39:23.000Z" - }, - "end": { - "$date": "2020-11-28T06:01:45.000Z" - }, - "events": [ - { - "uuid": "bb86c5b9-59a7-4226-892c-ee8097da532e", - "start": { - "$date": "2020-11-28T05:39:23.000Z" - }, - "end": { - "$date": "2020-11-28T06:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ab6975d-9680-4bf4-8290-285257263d9d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T06:02:22.000Z" - }, - "end": { - "$date": "2020-11-28T06:30:08.000Z" - }, - "events": [ - { - "uuid": "8bc12c15-5b6c-4522-8d43-807bf1b46db8", - "start": { - "$date": "2020-11-28T06:02:22.000Z" - }, - "end": { - "$date": "2020-11-28T06:30:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c03e030-2964-4579-9c07-3a5edfb54561", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T06:04:41.000Z" - }, - "end": { - "$date": "2020-11-28T06:10:57.000Z" - }, - "events": [ - { - "uuid": "49b0feef-3fb5-44cb-ba15-fb2c5f57e246", - "start": { - "$date": "2020-11-28T06:04:41.000Z" - }, - "end": { - "$date": "2020-11-28T06:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5565d5a2-e46d-4b11-89c8-452eaaea2baf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T06:11:12.000Z" - }, - "end": { - "$date": "2020-11-28T06:58:40.000Z" - }, - "events": [ - { - "uuid": "f35a03c2-9a69-4c6d-aa4f-ee593b8871de", - "start": { - "$date": "2020-11-28T06:11:12.000Z" - }, - "end": { - "$date": "2020-11-28T06:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9edeb576-bf5b-4fa3-8c33-5b7619a772c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-28T06:32:17.000Z" - }, - "end": { - "$date": "2020-11-28T09:25:42.000Z" - }, - "events": [ - { - "uuid": "e1b48b30-6c72-4bfd-9dbb-5aec57a911e0", - "start": { - "$date": "2020-11-28T06:32:17.000Z" - }, - "end": { - "$date": "2020-11-28T09:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b686b882-4eec-4172-9b97-2c85a2ecfe4b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-28T06:37:34.000Z" - }, - "end": { - "$date": "2020-11-28T09:20:07.000Z" - }, - "events": [ - { - "uuid": "e04b0127-5a49-4be6-aaeb-025eeb9d825f", - "start": { - "$date": "2020-11-28T06:37:34.000Z" - }, - "end": { - "$date": "2020-11-28T09:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6e7ea3eb-cbae-47ed-b949-77701872e293", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T16:35:00.000Z" - }, - "end": { - "$date": "2020-11-28T17:09:20.000Z" - }, - "events": [ - { - "uuid": "20c082ea-5431-444d-9b8c-5b6018446ba9", - "start": { - "$date": "2020-11-28T16:35:00.000Z" - }, - "end": { - "$date": "2020-11-28T17:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "deddfac2-ceda-4aa5-b888-440df8eb6043", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T17:10:28.000Z" - }, - "end": { - "$date": "2020-11-28T18:09:41.000Z" - }, - "events": [ - { - "uuid": "27eae64c-7c0b-4212-a5e6-a7f3054ecc22", - "start": { - "$date": "2020-11-28T17:10:28.000Z" - }, - "end": { - "$date": "2020-11-28T18:09:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1d034b43-d748-4a4e-9135-17e56adb7293", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-28T17:10:29.000Z" - }, - "end": { - "$date": "2020-11-28T17:55:10.000Z" - }, - "events": [ - { - "uuid": "351a47e8-b2a6-4699-8802-2eeee83f5f7c", - "start": { - "$date": "2020-11-28T17:10:29.000Z" - }, - "end": { - "$date": "2020-11-28T17:55:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "90d8f8cc-85c1-4bd6-948e-b2588a8a8dcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-28T17:39:17.000Z" - }, - "end": { - "$date": "2020-11-28T18:20:11.000Z" - }, - "events": [ - { - "uuid": "fcd2511c-cdc1-40d6-b7ad-354b728340b2", - "start": { - "$date": "2020-11-28T17:39:17.000Z" - }, - "end": { - "$date": "2020-11-28T17:50:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "00ce44b7-dad5-4f57-9c96-a0cc6ddab568", - "start": { - "$date": "2020-11-28T17:50:17.000Z" - }, - "end": { - "$date": "2020-11-28T17:55:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "66397b6a-f2d9-4c99-a30a-6022809fd72d", - "start": { - "$date": "2020-11-28T17:55:17.000Z" - }, - "end": { - "$date": "2020-11-28T18:05:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bb0fd05-ac0b-415e-8a62-9603ce28d1da", - "start": { - "$date": "2020-11-28T18:05:17.000Z" - }, - "end": { - "$date": "2020-11-28T18:12:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fbaf6dd1-e8a7-4dea-9a51-b6c3cfc26730", - "start": { - "$date": "2020-11-28T18:12:17.000Z" - }, - "end": { - "$date": "2020-11-28T18:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b1e1cb0e-09d3-486d-9bce-72e4d9438df4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-28T18:29:17.000Z" - }, - "end": { - "$date": "2020-11-28T23:22:57.000Z" - }, - "events": [ - { - "uuid": "90ad1c29-51f1-430f-b783-b4e6f5fec453", - "start": { - "$date": "2020-11-28T18:29:17.000Z" - }, - "end": { - "$date": "2020-11-28T20:38:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aaf7efec-5725-4638-8f9e-09587946deb3", - "start": { - "$date": "2020-11-28T20:38:17.000Z" - }, - "end": { - "$date": "2020-11-28T21:06:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0836eba6-152d-40bf-ae98-b32c9c7f9428", - "start": { - "$date": "2020-11-28T21:06:17.000Z" - }, - "end": { - "$date": "2020-11-28T23:22:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c01b2393-c52f-4994-9ae7-7a98f66e7717", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-28T18:29:58.000Z" - }, - "end": { - "$date": "2020-11-28T23:17:45.000Z" - }, - "events": [ - { - "uuid": "d9644394-b989-4807-80d0-54355b30a4f3", - "start": { - "$date": "2020-11-28T18:29:58.000Z" - }, - "end": { - "$date": "2020-11-28T20:45:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9e8d5612-6460-4f2f-98dd-2c87f3f234f4", - "start": { - "$date": "2020-11-28T20:45:58.000Z" - }, - "end": { - "$date": "2020-11-28T21:05:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "07899a44-6102-4ced-b581-599c38650f97", - "start": { - "$date": "2020-11-28T21:05:58.000Z" - }, - "end": { - "$date": "2020-11-28T23:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7d8c16e3-8e90-4866-a183-27f411a9f9c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-28T18:53:34.000Z" - }, - "end": { - "$date": "2020-11-28T20:00:15.000Z" - }, - "events": [ - { - "uuid": "0fbd90cc-954a-433a-8f00-9bb8d3f488d6", - "start": { - "$date": "2020-11-28T18:53:34.000Z" - }, - "end": { - "$date": "2020-11-28T20:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "877e3fb2-4ff7-4a95-8b3d-82bebd7f18db", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T19:51:08.000Z" - }, - "end": { - "$date": "2020-11-28T20:12:39.000Z" - }, - "events": [ - { - "uuid": "be549eaa-de23-4cb0-ba20-f4dc5de07bcd", - "start": { - "$date": "2020-11-28T19:51:08.000Z" - }, - "end": { - "$date": "2020-11-28T20:12:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "884c8f1e-2116-49c1-842d-d2aca0f2eb87", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T20:21:57.000Z" - }, - "end": { - "$date": "2020-11-28T20:37:23.000Z" - }, - "events": [ - { - "uuid": "ce662ff2-611f-4f23-a55c-f9ab79a9689b", - "start": { - "$date": "2020-11-28T20:21:57.000Z" - }, - "end": { - "$date": "2020-11-28T20:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "e4336328-ca4c-4a16-a6d2-1d8b18ce4d5f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T21:06:59.000Z" - }, - "end": { - "$date": "2020-11-28T21:10:09.000Z" - }, - "events": [ - { - "uuid": "3d1779df-6454-425c-91b4-60c4b4b2857b", - "start": { - "$date": "2020-11-28T21:06:59.000Z" - }, - "end": { - "$date": "2020-11-28T21:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "8151067b-fdc7-4f77-949c-8480a419f7a3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T21:11:29.000Z" - }, - "end": { - "$date": "2020-11-28T21:13:25.000Z" - }, - "events": [ - { - "uuid": "04c38398-e8b1-4042-b677-f2eacb19c395", - "start": { - "$date": "2020-11-28T21:11:29.000Z" - }, - "end": { - "$date": "2020-11-28T21:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "994039f1-c2ba-4152-a4b8-223f9c8c46a4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-28T21:21:15.000Z" - }, - "end": { - "$date": "2020-11-28T22:11:59.000Z" - }, - "events": [ - { - "uuid": "8b62ce5f-36b6-4c04-865a-b7be41f3d26d", - "start": { - "$date": "2020-11-28T21:21:15.000Z" - }, - "end": { - "$date": "2020-11-28T22:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25f4d41a-ccd5-4258-bc4e-79d2d77af5ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T21:40:55.000Z" - }, - "end": { - "$date": "2020-11-28T22:25:11.000Z" - }, - "events": [ - { - "uuid": "61c5d194-97ae-4cf4-90b8-91d34836ef4b", - "start": { - "$date": "2020-11-28T21:40:55.000Z" - }, - "end": { - "$date": "2020-11-28T22:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39d81aba-464e-480f-870f-d263b53968bb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-28T21:40:53.000Z" - }, - "end": { - "$date": "2020-11-28T22:25:10.000Z" - }, - "events": [ - { - "uuid": "00ffa100-f089-4bc9-b3e6-61506396d517", - "start": { - "$date": "2020-11-28T21:40:53.000Z" - }, - "end": { - "$date": "2020-11-28T22:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a99ae26a-1078-4043-983a-b896f8c04dc8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T21:39:25.000Z" - }, - "end": { - "$date": "2020-11-28T21:40:31.000Z" - }, - "events": [ - { - "uuid": "b6e86160-14f6-4986-bcf8-fd12bc41417b", - "start": { - "$date": "2020-11-28T21:39:25.000Z" - }, - "end": { - "$date": "2020-11-28T21:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d5bd711c-2ff4-4763-8f92-1ab6ec84bec3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-28T21:41:21.000Z" - }, - "end": { - "$date": "2020-11-29T01:31:47.000Z" - }, - "events": [ - { - "uuid": "27d30af9-308d-4e45-9bc9-7d4314017cb3", - "start": { - "$date": "2020-11-28T21:41:21.000Z" - }, - "end": { - "$date": "2020-11-29T00:52:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "111dc12e-c627-46a7-8900-066e366043dc", - "start": { - "$date": "2020-11-29T00:52:21.000Z" - }, - "end": { - "$date": "2020-11-29T01:09:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc6b3c06-3ca9-4392-b972-98e1d3da2989", - "start": { - "$date": "2020-11-29T01:09:21.000Z" - }, - "end": { - "$date": "2020-11-29T01:31:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "755c030e-eca2-47d3-bcfd-fec7ca9e5363", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-28T21:51:47.000Z" - }, - "end": { - "$date": "2020-11-28T21:58:22.000Z" - }, - "events": [ - { - "uuid": "16af423c-a56e-4460-a903-1349d3463df0", - "start": { - "$date": "2020-11-28T21:51:47.000Z" - }, - "end": { - "$date": "2020-11-28T21:58:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d46f298-46e6-425b-a29d-cb829ba30214", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T22:29:27.000Z" - }, - "end": { - "$date": "2020-11-28T23:17:53.000Z" - }, - "events": [ - { - "uuid": "3df2c04a-cdff-4bea-9d4d-d8832d732c46", - "start": { - "$date": "2020-11-28T22:29:27.000Z" - }, - "end": { - "$date": "2020-11-28T23:17:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86cdf78e-be4d-4402-ab2c-46f339e5fe80", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-28T22:29:26.000Z" - }, - "end": { - "$date": "2020-11-28T23:17:08.000Z" - }, - "events": [ - { - "uuid": "76f90f84-b0eb-4def-bbdc-97d5dad6e8e4", - "start": { - "$date": "2020-11-28T22:29:26.000Z" - }, - "end": { - "$date": "2020-11-28T23:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dccc17f0-8329-477d-ab27-1c454ab5b545", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-28T22:47:34.000Z" - }, - "end": { - "$date": "2020-11-28T23:33:42.000Z" - }, - "events": [ - { - "uuid": "578e48fb-db7d-4cd9-ae7f-1c5482eef4f2", - "start": { - "$date": "2020-11-28T22:47:34.000Z" - }, - "end": { - "$date": "2020-11-28T23:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7007835d-599d-4bd5-8efa-7fba05908897", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-28T23:14:06.000Z" - }, - "end": { - "$date": "2020-11-29T01:23:11.000Z" - }, - "events": [ - { - "uuid": "9b73105a-1551-4a11-87fe-d1969fa33235", - "start": { - "$date": "2020-11-28T23:14:06.000Z" - }, - "end": { - "$date": "2020-11-29T01:23:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5fed068-2437-4424-9934-b709c3a879cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-28T23:18:40.000Z" - }, - "end": { - "$date": "2020-11-28T23:22:52.000Z" - }, - "events": [ - { - "uuid": "2e80fc46-8b3e-4f65-bceb-4f2bb28b77e6", - "start": { - "$date": "2020-11-28T23:18:40.000Z" - }, - "end": { - "$date": "2020-11-28T23:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fae2816f-1e8a-47d8-8e85-48b650e53a20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-28T23:22:52.000Z" - }, - "end": { - "$date": "2020-11-29T03:48:02.000Z" - }, - "events": [ - { - "uuid": "8d4cc818-c9e7-42a0-987d-42f3b0907018", - "start": { - "$date": "2020-11-28T23:22:52.000Z" - }, - "end": { - "$date": "2020-11-28T23:48:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82983473-abce-4d3c-9bbb-8d03a9325074", - "start": { - "$date": "2020-11-28T23:48:52.000Z" - }, - "end": { - "$date": "2020-11-28T23:49:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2cc97e86-d483-4ab9-8904-74b088cf38e2", - "start": { - "$date": "2020-11-28T23:49:52.000Z" - }, - "end": { - "$date": "2020-11-28T23:59:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ca614551-a4f7-4488-9836-78cc71c3e575", - "start": { - "$date": "2020-11-28T23:59:52.000Z" - }, - "end": { - "$date": "2020-11-29T00:03:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f46fee1-34f3-45db-8fe0-8aa7b37ec868", - "start": { - "$date": "2020-11-29T00:03:52.000Z" - }, - "end": { - "$date": "2020-11-29T00:18:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae655a58-5740-4485-88e7-fa9c064f4157", - "start": { - "$date": "2020-11-29T00:18:52.000Z" - }, - "end": { - "$date": "2020-11-29T00:26:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b131df2-4b8d-4f86-a000-1e7bc7adcfdb", - "start": { - "$date": "2020-11-29T00:26:52.000Z" - }, - "end": { - "$date": "2020-11-29T02:04:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85c0adb0-5ab4-471c-899f-51b0d491bec9", - "start": { - "$date": "2020-11-29T02:04:52.000Z" - }, - "end": { - "$date": "2020-11-29T02:55:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "475ef4a3-4be3-48cf-82cc-702f2808b869", - "start": { - "$date": "2020-11-29T02:55:52.000Z" - }, - "end": { - "$date": "2020-11-29T03:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "923ca6ad-0b3d-4c9e-b27a-5cad577a6b6a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-28T23:36:22.000Z" - }, - "end": { - "$date": "2020-11-29T00:21:47.000Z" - }, - "events": [ - { - "uuid": "a50e84d0-3ca8-48c6-bbf7-09b318d64362", - "start": { - "$date": "2020-11-28T23:36:22.000Z" - }, - "end": { - "$date": "2020-11-28T23:49:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aab205a5-9211-4d55-84ef-d04f9a75fdb6", - "start": { - "$date": "2020-11-28T23:49:22.000Z" - }, - "end": { - "$date": "2020-11-28T23:54:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "34040a05-37c8-46a0-a916-810d883e1687", - "start": { - "$date": "2020-11-28T23:54:22.000Z" - }, - "end": { - "$date": "2020-11-29T00:04:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7539e55-8ed6-4a61-a715-ab97603ecf49", - "start": { - "$date": "2020-11-29T00:04:22.000Z" - }, - "end": { - "$date": "2020-11-29T00:20:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6112467f-e560-41e5-8b8c-703e6b2a7f20", - "start": { - "$date": "2020-11-29T00:20:22.000Z" - }, - "end": { - "$date": "2020-11-29T00:21:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5fbbe0ca-7057-48f2-8ada-e7962cb8ac4b", - "uuid": "262a06e1-91e9-4e37-9f6f-b4cc3c4c4789", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-28T23:38:11.000Z" - }, - "end": { - "$date": "2020-11-29T00:29:25.000Z" - }, - "events": [ - { - "uuid": "0830af90-d8d1-4308-b897-e07669b85a65", - "start": { - "$date": "2020-11-28T23:38:11.000Z" - }, - "end": { - "$date": "2020-11-29T00:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d3f3535b-f137-4140-8a8e-2c1e5703eb97", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-29T00:30:09.000Z" - }, - "end": { - "$date": "2020-11-29T00:47:00.000Z" - }, - "events": [ - { - "uuid": "624aa5ce-e598-48c4-9d82-8a3a36e3d108", - "start": { - "$date": "2020-11-29T00:30:09.000Z" - }, - "end": { - "$date": "2020-11-29T00:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "581dc9fa-e2d5-4e30-84c3-0d9d2b5d2797", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-29T00:45:04.000Z" - }, - "end": { - "$date": "2020-11-29T01:23:35.000Z" - }, - "events": [ - { - "uuid": "7dc4aa8e-4782-4bf5-8db5-4a2e8960c248", - "start": { - "$date": "2020-11-29T00:45:04.000Z" - }, - "end": { - "$date": "2020-11-29T01:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "83974432-3a9d-40ac-bcc8-0bafa6cde65b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-29T01:20:12.000Z" - }, - "end": { - "$date": "2020-11-29T01:25:23.000Z" - }, - "events": [ - { - "uuid": "868220ef-adc6-413d-b66e-87224bca5a0d", - "start": { - "$date": "2020-11-29T01:20:12.000Z" - }, - "end": { - "$date": "2020-11-29T01:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "41817207-c248-42d5-b40a-699ded69942a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-29T02:10:37.000Z" - }, - "end": { - "$date": "2020-11-29T02:34:42.000Z" - }, - "events": [ - { - "uuid": "ff2eab3f-0a1a-429f-91a6-45c2b8ff94bb", - "start": { - "$date": "2020-11-29T02:10:37.000Z" - }, - "end": { - "$date": "2020-11-29T02:34:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9623b96f-b5c2-45eb-8a6f-6d8f648895ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T02:30:27.000Z" - }, - "end": { - "$date": "2020-11-29T02:48:31.000Z" - }, - "events": [ - { - "uuid": "35c3ec4e-e083-4182-89f9-4d4afba30c37", - "start": { - "$date": "2020-11-29T02:30:27.000Z" - }, - "end": { - "$date": "2020-11-29T02:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "629446dd-206c-449c-be8d-ffc5b8019221", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T02:50:12.000Z" - }, - "end": { - "$date": "2020-11-29T03:14:19.000Z" - }, - "events": [ - { - "uuid": "9f8e3c7e-5886-4a5d-bee3-d9a8fcde903c", - "start": { - "$date": "2020-11-29T02:50:12.000Z" - }, - "end": { - "$date": "2020-11-29T03:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fd7ba696-b262-407a-9262-6acefdc0d2df", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-29T03:29:22.000Z" - }, - "end": { - "$date": "2020-11-29T05:44:11.000Z" - }, - "events": [ - { - "uuid": "4d617b6b-3ad5-4d34-915e-31f4aed2dbb9", - "start": { - "$date": "2020-11-29T03:29:22.000Z" - }, - "end": { - "$date": "2020-11-29T05:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "77dbe7bb-e39c-4e16-b84a-033aca1c1a00", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-29T03:41:52.000Z" - }, - "end": { - "$date": "2020-11-29T03:55:33.000Z" - }, - "events": [ - { - "uuid": "a2eca8da-207a-4038-9408-bce9bf91364d", - "start": { - "$date": "2020-11-29T03:41:52.000Z" - }, - "end": { - "$date": "2020-11-29T03:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f1d51b8-384e-4f0b-b387-9990da183954", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T03:48:02.000Z" - }, - "end": { - "$date": "2020-11-29T06:26:03.000Z" - }, - "events": [ - { - "uuid": "04764120-f5dd-41cd-b18b-420c41001dc6", - "start": { - "$date": "2020-11-29T03:48:02.000Z" - }, - "end": { - "$date": "2020-11-29T03:59:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "608fc721-62d7-44fa-8239-61a32ed67977", - "start": { - "$date": "2020-11-29T03:59:02.000Z" - }, - "end": { - "$date": "2020-11-29T04:04:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f60aea74-2d70-47fd-b6a3-7935e8aab8d3", - "start": { - "$date": "2020-11-29T04:04:02.000Z" - }, - "end": { - "$date": "2020-11-29T04:07:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08c660b6-6311-4144-80dc-837d68aae3ee", - "start": { - "$date": "2020-11-29T04:07:02.000Z" - }, - "end": { - "$date": "2020-11-29T04:34:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f487777-3b56-40aa-b9f9-92b94eb086bd", - "start": { - "$date": "2020-11-29T04:34:02.000Z" - }, - "end": { - "$date": "2020-11-29T04:36:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "993b945a-8cd6-479c-bff2-23941e7383e1", - "start": { - "$date": "2020-11-29T04:36:02.000Z" - }, - "end": { - "$date": "2020-11-29T05:37:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1a24d93-dcb1-40e2-8242-9413394e90b4", - "start": { - "$date": "2020-11-29T05:37:02.000Z" - }, - "end": { - "$date": "2020-11-29T05:39:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "76627e7d-5c9c-4dfb-8314-0575b0f1bff6", - "start": { - "$date": "2020-11-29T05:39:02.000Z" - }, - "end": { - "$date": "2020-11-29T05:47:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0307c2a6-8fee-49c1-be15-9138f4372b93", - "start": { - "$date": "2020-11-29T05:47:02.000Z" - }, - "end": { - "$date": "2020-11-29T05:52:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83c48d8b-f314-46e1-aefc-742c77124c4d", - "start": { - "$date": "2020-11-29T05:52:02.000Z" - }, - "end": { - "$date": "2020-11-29T05:53:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "29f5cc06-7a88-4ebc-8993-da30e1f002c3", - "start": { - "$date": "2020-11-29T05:53:02.000Z" - }, - "end": { - "$date": "2020-11-29T05:55:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c61d7a30-1a5d-416d-a9a1-0129a9f0b9ef", - "start": { - "$date": "2020-11-29T05:55:02.000Z" - }, - "end": { - "$date": "2020-11-29T06:03:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e65042ad-0d74-4825-9462-acd20f2a2d92", - "start": { - "$date": "2020-11-29T06:03:02.000Z" - }, - "end": { - "$date": "2020-11-29T06:08:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b3ec8b7-0f1d-44ee-9090-c68478f9bcee", - "start": { - "$date": "2020-11-29T06:08:02.000Z" - }, - "end": { - "$date": "2020-11-29T06:26:03.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9a1bdbf6-8c53-4448-8157-85ae02f03056", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-29T03:48:09.000Z" - }, - "end": { - "$date": "2020-11-29T03:51:14.000Z" - }, - "events": [ - { - "uuid": "37eb5276-d7e3-4e60-a06b-f39622c0c7ef", - "start": { - "$date": "2020-11-29T03:48:09.000Z" - }, - "end": { - "$date": "2020-11-29T03:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "4be05ce9-c4c6-4967-b87e-66f8e40e44b5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-29T03:51:33.000Z" - }, - "end": { - "$date": "2020-11-29T06:30:48.000Z" - }, - "events": [ - { - "uuid": "13f0a2ab-d41c-41c3-a218-85bf53a57bdf", - "start": { - "$date": "2020-11-29T03:51:33.000Z" - }, - "end": { - "$date": "2020-11-29T06:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "9ef81946-45a7-4833-8443-18952a6d603b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-29T03:52:34.000Z" - }, - "end": { - "$date": "2020-11-29T04:03:14.000Z" - }, - "events": [ - { - "uuid": "3ac58aa1-fcda-4198-a4d1-1e45bea9ea0c", - "start": { - "$date": "2020-11-29T03:52:34.000Z" - }, - "end": { - "$date": "2020-11-29T04:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "82bc990f-518f-4e2e-86e6-1d3a8c5c819b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-29T03:52:40.000Z" - }, - "end": { - "$date": "2020-11-29T05:45:29.000Z" - }, - "events": [ - { - "uuid": "87861b8a-7176-4a9f-bc22-a2b583f8a07b", - "start": { - "$date": "2020-11-29T03:52:40.000Z" - }, - "end": { - "$date": "2020-11-29T05:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d73d2281-1ddb-4d1e-aa3d-3acbec1999e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-29T03:56:19.000Z" - }, - "end": { - "$date": "2020-11-29T05:45:10.000Z" - }, - "events": [ - { - "uuid": "40461330-bfc8-4168-bfef-7fae64e6aeb2", - "start": { - "$date": "2020-11-29T03:56:19.000Z" - }, - "end": { - "$date": "2020-11-29T05:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab775ee0-be0c-4b9e-a817-05c2f1c8cb21", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-29T03:59:57.000Z" - }, - "end": { - "$date": "2020-11-29T05:44:16.000Z" - }, - "events": [ - { - "uuid": "1e61fb76-bc7e-473a-a8f2-26dc610b5a8a", - "start": { - "$date": "2020-11-29T03:59:57.000Z" - }, - "end": { - "$date": "2020-11-29T05:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "02fb31c0-8326-49a2-9c4e-443d3d9ae16b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-29T04:00:58.000Z" - }, - "end": { - "$date": "2020-11-29T04:03:14.000Z" - }, - "events": [ - { - "uuid": "17b9bb75-069a-42fc-887c-dfd6c43c067c", - "start": { - "$date": "2020-11-29T04:00:58.000Z" - }, - "end": { - "$date": "2020-11-29T04:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9fc8ddac-406a-431f-b45c-215ca0970b7c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-29T04:04:28.000Z" - }, - "end": { - "$date": "2020-11-29T05:44:15.000Z" - }, - "events": [ - { - "uuid": "94d1c430-6b62-4949-996a-fd3a2965eb43", - "start": { - "$date": "2020-11-29T04:04:28.000Z" - }, - "end": { - "$date": "2020-11-29T05:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0171720c-9d6f-4eac-acb9-96e981cec332", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-29T05:44:26.000Z" - }, - "end": { - "$date": "2020-11-29T07:05:34.000Z" - }, - "events": [ - { - "uuid": "79a2f718-287e-4435-9cbb-727dc5c8f169", - "start": { - "$date": "2020-11-29T05:44:26.000Z" - }, - "end": { - "$date": "2020-11-29T07:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d0748530-06c8-4d33-9ff6-236e0f7f29a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-29T05:52:56.000Z" - }, - "end": { - "$date": "2020-11-29T06:03:27.000Z" - }, - "events": [ - { - "uuid": "99a0b0e1-c8f6-4f62-9492-f221fa956be9", - "start": { - "$date": "2020-11-29T05:52:56.000Z" - }, - "end": { - "$date": "2020-11-29T06:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c57fd120-4e8f-4a8b-acfe-97ba4110f8d3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-29T05:59:11.000Z" - }, - "end": { - "$date": "2020-11-29T07:49:21.000Z" - }, - "events": [ - { - "uuid": "198c2c3e-7a57-41d5-842b-b4423af268fc", - "start": { - "$date": "2020-11-29T05:59:11.000Z" - }, - "end": { - "$date": "2020-11-29T07:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "950f72f4-93b0-44b4-9a97-e6774be9ca28", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-29T08:43:21.000Z" - }, - "end": { - "$date": "2020-11-29T12:14:35.000Z" - }, - "events": [ - { - "uuid": "f205ed38-67db-4e62-b6d5-baf931db0384", - "start": { - "$date": "2020-11-29T08:43:21.000Z" - }, - "end": { - "$date": "2020-11-29T12:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "791505a5-f4bc-446b-a7af-3a40083b9e55", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-29T08:58:22.000Z" - }, - "end": { - "$date": "2020-11-29T09:26:40.000Z" - }, - "events": [ - { - "uuid": "128e13d9-f71a-4dce-8733-6253f3b60564", - "start": { - "$date": "2020-11-29T08:58:22.000Z" - }, - "end": { - "$date": "2020-11-29T09:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "d8634174-98b0-4153-85b8-e97c0151a941", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-29T10:09:29.000Z" - }, - "end": { - "$date": "2020-11-29T10:48:12.000Z" - }, - "events": [ - { - "uuid": "1c643587-ee9d-4c8b-a1d4-9f80e9442008", - "start": { - "$date": "2020-11-29T10:09:29.000Z" - }, - "end": { - "$date": "2020-11-29T10:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6ff72dbf-2dcd-4422-8929-540e8045e357", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-29T16:26:00.000Z" - }, - "end": { - "$date": "2020-11-29T17:00:52.000Z" - }, - "events": [ - { - "uuid": "0adc14b7-0de1-4f0c-b026-39ea3719688b", - "start": { - "$date": "2020-11-29T16:26:00.000Z" - }, - "end": { - "$date": "2020-11-29T17:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "307b68b5-4d69-413a-b872-8a64e56afc9c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-11-29T16:39:37.000Z" - }, - "end": { - "$date": "2020-11-29T16:45:28.000Z" - }, - "events": [ - { - "uuid": "f3401648-7d1a-4c99-82e0-776aa1cf6834", - "start": { - "$date": "2020-11-29T16:39:37.000Z" - }, - "end": { - "$date": "2020-11-29T16:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "29ab9a2c-1683-4d57-a0dd-ac7fc79d5b00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-29T17:22:37.000Z" - }, - "end": { - "$date": "2020-11-29T18:06:49.000Z" - }, - "events": [ - { - "uuid": "57c2f0da-8d2d-486a-bb81-949626d3d105", - "start": { - "$date": "2020-11-29T17:22:37.000Z" - }, - "end": { - "$date": "2020-11-29T18:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "f62b90f4-067a-4459-aa46-72faace6bafe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-29T18:46:00.000Z" - }, - "end": { - "$date": "2020-11-29T20:20:43.000Z" - }, - "events": [ - { - "uuid": "9a726242-e94f-43ae-8bc7-5722cb7cd508", - "start": { - "$date": "2020-11-29T18:46:00.000Z" - }, - "end": { - "$date": "2020-11-29T20:20:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5fc3b5e7-8722-4dab-9846-4a96f90216ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T19:40:27.000Z" - }, - "end": { - "$date": "2020-11-29T20:03:08.000Z" - }, - "events": [ - { - "uuid": "e473aea0-4d70-4847-a2ed-f5d512468ae6", - "start": { - "$date": "2020-11-29T19:40:27.000Z" - }, - "end": { - "$date": "2020-11-29T20:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dbf66fa2-2539-45e9-890e-ac2b7187f9c0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-29T19:40:12.000Z" - }, - "end": { - "$date": "2020-11-29T22:09:39.000Z" - }, - "events": [ - { - "uuid": "fe165a60-9bcd-473d-a754-9867e70e61f8", - "start": { - "$date": "2020-11-29T19:40:12.000Z" - }, - "end": { - "$date": "2020-11-29T22:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb05006c-207a-42f4-842a-e401fdca00ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T20:06:43.000Z" - }, - "end": { - "$date": "2020-11-29T20:30:20.000Z" - }, - "events": [ - { - "uuid": "eedc9f80-c18c-40f9-b613-ee1f94a1589d", - "start": { - "$date": "2020-11-29T20:06:43.000Z" - }, - "end": { - "$date": "2020-11-29T20:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6119f13f-4f74-499f-91b2-8d744903377d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T20:33:49.000Z" - }, - "end": { - "$date": "2020-11-29T20:51:30.000Z" - }, - "events": [ - { - "uuid": "b8ab7108-169d-486f-aa34-db6cddafe5b7", - "start": { - "$date": "2020-11-29T20:33:49.000Z" - }, - "end": { - "$date": "2020-11-29T20:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7118e5f4-2e0a-48d6-928d-fe23623d0c30", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-29T20:54:50.000Z" - }, - "end": { - "$date": "2020-11-29T21:19:36.000Z" - }, - "events": [ - { - "uuid": "2bdf76f4-ea53-4db7-92df-d7800ad54960", - "start": { - "$date": "2020-11-29T20:54:50.000Z" - }, - "end": { - "$date": "2020-11-29T21:19:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "32820e40-ff52-43fb-81c9-f84a554bbe57", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-29T22:54:03.000Z" - }, - "end": { - "$date": "2020-11-30T00:17:41.000Z" - }, - "events": [ - { - "uuid": "0cc02be6-3fdb-431f-b9d2-633a9b7a9f22", - "start": { - "$date": "2020-11-29T22:54:03.000Z" - }, - "end": { - "$date": "2020-11-30T00:17:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c2c6a482-1769-4ac2-acf1-f39956a803d0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-29T23:34:33.000Z" - }, - "end": { - "$date": "2020-11-30T00:16:32.000Z" - }, - "events": [ - { - "uuid": "62d873c6-f386-49ad-8040-2da962fb0ba5", - "start": { - "$date": "2020-11-29T23:34:33.000Z" - }, - "end": { - "$date": "2020-11-30T00:16:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "edad8491-5ea6-4895-81bb-2a02f5847131", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-29T23:44:24.000Z" - }, - "end": { - "$date": "2020-11-30T01:39:59.000Z" - }, - "events": [ - { - "uuid": "4a54f836-6d6d-476f-827b-fab611438c27", - "start": { - "$date": "2020-11-29T23:44:24.000Z" - }, - "end": { - "$date": "2020-11-30T01:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "49002adf-bdb3-488d-930a-5577084edf4c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-30T00:59:35.000Z" - }, - "end": { - "$date": "2020-11-30T06:29:58.000Z" - }, - "events": [ - { - "uuid": "6e87ad7a-e451-4b32-b17d-f49d93be7a26", - "start": { - "$date": "2020-11-30T00:59:35.000Z" - }, - "end": { - "$date": "2020-11-30T03:38:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b79a5bd-394a-4a87-9df0-970cecff0bd5", - "start": { - "$date": "2020-11-30T03:38:35.000Z" - }, - "end": { - "$date": "2020-11-30T03:57:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d22b7a66-a35f-4c61-a4ba-e27975a756ad", - "start": { - "$date": "2020-11-30T03:57:35.000Z" - }, - "end": { - "$date": "2020-11-30T06:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "803cf788-feb6-4359-9d6e-553176fe54d9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-30T01:44:04.000Z" - }, - "end": { - "$date": "2020-11-30T02:08:51.000Z" - }, - "events": [ - { - "uuid": "04bef154-430e-477d-b717-76e140162f47", - "start": { - "$date": "2020-11-30T01:44:04.000Z" - }, - "end": { - "$date": "2020-11-30T02:08:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69c2bfb6-4c7b-4c65-be87-9e9ee18d9180", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-30T02:55:31.000Z" - }, - "end": { - "$date": "2020-11-30T03:27:24.000Z" - }, - "events": [ - { - "uuid": "b58ddc15-f582-4a77-b2c8-e7d5ca22407c", - "start": { - "$date": "2020-11-30T02:55:31.000Z" - }, - "end": { - "$date": "2020-11-30T03:27:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f38f0177-d8be-45ae-9707-a98995db2b10", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-30T03:00:52.000Z" - }, - "end": { - "$date": "2020-11-30T05:34:10.000Z" - }, - "events": [ - { - "uuid": "2d9efdd8-b3d8-475d-acd6-9aeda8d27895", - "start": { - "$date": "2020-11-30T03:00:52.000Z" - }, - "end": { - "$date": "2020-11-30T05:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "33880d84-13f8-4cda-b371-d53cc5de7534", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-30T03:04:34.000Z" - }, - "end": { - "$date": "2020-11-30T04:54:44.000Z" - }, - "events": [ - { - "uuid": "aabd1bff-91f4-4f46-b082-af7fa3dd0ad3", - "start": { - "$date": "2020-11-30T03:04:34.000Z" - }, - "end": { - "$date": "2020-11-30T04:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8cb4771a-1c06-41b8-b5a3-b5810984d45a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-30T03:39:18.000Z" - }, - "end": { - "$date": "2020-11-30T03:40:34.000Z" - }, - "events": [ - { - "uuid": "bd5cf472-2d17-49b1-bcb6-39716a8eaec6", - "start": { - "$date": "2020-11-30T03:39:18.000Z" - }, - "end": { - "$date": "2020-11-30T03:40:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6c99565c-b7f7-493c-8201-3cfc072b07f4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-30T03:42:45.000Z" - }, - "end": { - "$date": "2020-11-30T05:39:20.000Z" - }, - "events": [ - { - "uuid": "ae7fbbab-4036-4821-aee3-bf296907a7fd", - "start": { - "$date": "2020-11-30T03:42:45.000Z" - }, - "end": { - "$date": "2020-11-30T05:39:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9f3c89be-8b61-4728-89a6-468821b9245b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-30T04:21:01.000Z" - }, - "end": { - "$date": "2020-11-30T06:35:48.000Z" - }, - "events": [ - { - "uuid": "696595ec-b592-4fef-b848-cb7066b54a6a", - "start": { - "$date": "2020-11-30T04:21:01.000Z" - }, - "end": { - "$date": "2020-11-30T06:35:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ef746d57-9b9e-4f8c-aec2-b90c9bd89860", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-30T04:42:14.000Z" - }, - "end": { - "$date": "2020-11-30T05:37:58.000Z" - }, - "events": [ - { - "uuid": "9f2ca1de-fb26-47f8-97ea-307f24e3de07", - "start": { - "$date": "2020-11-30T04:42:14.000Z" - }, - "end": { - "$date": "2020-11-30T05:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "ca141fa1-eca5-4cde-abfd-3e319c169e11", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-30T04:53:46.000Z" - }, - "end": { - "$date": "2020-11-30T07:57:09.000Z" - }, - "events": [ - { - "uuid": "9b87f37f-595e-48d2-be1d-4757c32f2055", - "start": { - "$date": "2020-11-30T04:53:46.000Z" - }, - "end": { - "$date": "2020-11-30T07:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e17bf933-e5ab-4d13-b14f-94076b78812d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-30T04:54:53.000Z" - }, - "end": { - "$date": "2020-11-30T05:16:15.000Z" - }, - "events": [ - { - "uuid": "222f8296-d866-45ac-aa05-249e0d69ce75", - "start": { - "$date": "2020-11-30T04:54:53.000Z" - }, - "end": { - "$date": "2020-11-30T05:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "66a44ae9-33f0-4bfb-add1-648b354d76da", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-30T05:14:10.000Z" - }, - "end": { - "$date": "2020-11-30T05:39:30.000Z" - }, - "events": [ - { - "uuid": "913f4623-acdb-423e-89af-899acf7facd0", - "start": { - "$date": "2020-11-30T05:14:10.000Z" - }, - "end": { - "$date": "2020-11-30T05:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2b9a10c2-048b-423c-b87c-d622af208244", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-30T05:39:29.000Z" - }, - "end": { - "$date": "2020-11-30T05:40:33.000Z" - }, - "events": [ - { - "uuid": "7b387a3e-8eaf-4e20-9beb-b73d4f32567b", - "start": { - "$date": "2020-11-30T05:39:29.000Z" - }, - "end": { - "$date": "2020-11-30T05:40:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6057c550-d3bd-4e74-903c-c04c4fb6943e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-11-30T05:40:20.000Z" - }, - "end": { - "$date": "2020-11-30T06:51:39.000Z" - }, - "events": [ - { - "uuid": "e1d84b5d-6809-4e24-987a-78fc429e4ae5", - "start": { - "$date": "2020-11-30T05:40:20.000Z" - }, - "end": { - "$date": "2020-11-30T06:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e6e6b9c8-2cb4-4bbc-a632-bfdc41456c8b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-11-30T05:41:04.000Z" - }, - "end": { - "$date": "2020-11-30T07:05:50.000Z" - }, - "events": [ - { - "uuid": "12238fc4-e20f-486c-81fe-64f667bb8bfc", - "start": { - "$date": "2020-11-30T05:41:04.000Z" - }, - "end": { - "$date": "2020-11-30T07:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0dd4b48a-73a8-4172-a006-408ab3bc665c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-11-30T05:41:49.000Z" - }, - "end": { - "$date": "2020-11-30T08:38:12.000Z" - }, - "events": [ - { - "uuid": "b7cdca53-9ee5-424b-8a1c-24bca0cfa18e", - "start": { - "$date": "2020-11-30T05:41:49.000Z" - }, - "end": { - "$date": "2020-11-30T07:01:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2c3e3c0-ddcf-4e62-8b7a-fb064fffecff", - "start": { - "$date": "2020-11-30T07:01:49.000Z" - }, - "end": { - "$date": "2020-11-30T07:11:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2210c6e3-1b8d-44fc-b40c-d8e7a752eee4", - "start": { - "$date": "2020-11-30T07:11:49.000Z" - }, - "end": { - "$date": "2020-11-30T07:13:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0eaacbd2-9236-4a25-b9bd-7f39bb5effd1", - "start": { - "$date": "2020-11-30T07:13:49.000Z" - }, - "end": { - "$date": "2020-11-30T07:27:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8388ddd9-9cf9-4be2-9c01-862ba9d2bce9", - "start": { - "$date": "2020-11-30T07:27:49.000Z" - }, - "end": { - "$date": "2020-11-30T07:37:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82221a89-5b02-4d5d-a523-8d25fd3c258c", - "start": { - "$date": "2020-11-30T07:37:49.000Z" - }, - "end": { - "$date": "2020-11-30T07:47:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73f5b7ee-2563-447f-8189-2dbd47871fb6", - "start": { - "$date": "2020-11-30T07:47:49.000Z" - }, - "end": { - "$date": "2020-11-30T08:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6e95168a-f106-434d-aea1-13c0a56cb188", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-11-30T05:41:51.000Z" - }, - "end": { - "$date": "2020-11-30T06:51:39.000Z" - }, - "events": [ - { - "uuid": "fc01efb3-5ead-424d-8530-56f426f10599", - "start": { - "$date": "2020-11-30T05:41:51.000Z" - }, - "end": { - "$date": "2020-11-30T06:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7aa2daab-c4a6-4ad8-b0d9-38eb0f48c5d7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-30T05:42:03.000Z" - }, - "end": { - "$date": "2020-11-30T06:50:16.000Z" - }, - "events": [ - { - "uuid": "f13d61e5-f357-45e7-a380-12cb871e439c", - "start": { - "$date": "2020-11-30T05:42:03.000Z" - }, - "end": { - "$date": "2020-11-30T06:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5bb2210-17d1-4b11-a6c3-eafe646bd7a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-30T05:43:38.000Z" - }, - "end": { - "$date": "2020-11-30T06:48:52.000Z" - }, - "events": [ - { - "uuid": "77ae3a8f-2d07-4d6e-9d87-00b6ce3095d3", - "start": { - "$date": "2020-11-30T05:43:38.000Z" - }, - "end": { - "$date": "2020-11-30T06:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db5552a4-65cd-4db2-bb85-a4eb856dd8a7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-30T06:01:39.000Z" - }, - "end": { - "$date": "2020-11-30T06:26:21.000Z" - }, - "events": [ - { - "uuid": "d0b84c5a-9cc7-4036-aa44-ad7aa28ea59b", - "start": { - "$date": "2020-11-30T06:01:39.000Z" - }, - "end": { - "$date": "2020-11-30T06:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a14ead40-61ee-44dc-93b4-ce808f09d066", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-11-30T06:30:25.000Z" - }, - "end": { - "$date": "2020-11-30T06:47:02.000Z" - }, - "events": [ - { - "uuid": "4dac9396-5c29-4b70-bc87-cb85c756eccb", - "start": { - "$date": "2020-11-30T06:30:25.000Z" - }, - "end": { - "$date": "2020-11-30T06:47:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8e384487-cbee-4c9e-9759-d413c1410303", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-11-30T06:30:39.000Z" - }, - "end": { - "$date": "2020-11-30T07:16:45.000Z" - }, - "events": [ - { - "uuid": "df902184-ebae-47f4-9cca-75d3df31f61d", - "start": { - "$date": "2020-11-30T06:30:39.000Z" - }, - "end": { - "$date": "2020-11-30T07:16:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "131ccb42-9973-4bd8-bb71-a44bd02a887f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-11-30T06:41:02.000Z" - }, - "end": { - "$date": "2020-11-30T07:15:20.000Z" - }, - "events": [ - { - "uuid": "259b9b8f-7032-4088-8460-2fbc14f76a87", - "start": { - "$date": "2020-11-30T06:41:02.000Z" - }, - "end": { - "$date": "2020-11-30T07:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "9221018c-05b5-4439-9553-dd6f2873a627", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-11-30T08:39:49.000Z" - }, - "end": { - "$date": "2020-11-30T11:30:07.000Z" - }, - "events": [ - { - "uuid": "55b26725-0c99-462b-b2eb-77ea48bf7ccb", - "start": { - "$date": "2020-11-30T08:39:49.000Z" - }, - "end": { - "$date": "2020-11-30T11:30:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ebdea884-cc36-4da8-8e0a-b48817779103", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-30T17:55:17.000Z" - }, - "end": { - "$date": "2020-11-30T18:18:07.000Z" - }, - "events": [ - { - "uuid": "101a14dd-303f-44eb-9646-a456c407ce5c", - "start": { - "$date": "2020-11-30T17:55:17.000Z" - }, - "end": { - "$date": "2020-11-30T18:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "799bc452-1e10-45fa-a87b-65ebae2dd934", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-30T20:04:50.000Z" - }, - "end": { - "$date": "2020-11-30T20:24:13.000Z" - }, - "events": [ - { - "uuid": "0aab0ecf-e40e-47e5-a77c-71b8851b22ad", - "start": { - "$date": "2020-11-30T20:04:50.000Z" - }, - "end": { - "$date": "2020-11-30T20:24:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "01fbc710-dd2a-4527-997e-ee5302f96a9c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-11-30T21:02:44.000Z" - }, - "end": { - "$date": "2020-11-30T22:05:15.000Z" - }, - "events": [ - { - "uuid": "b865a666-7049-46a3-9b53-662210d168c1", - "start": { - "$date": "2020-11-30T21:02:44.000Z" - }, - "end": { - "$date": "2020-11-30T22:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "773938af-0778-4de0-8d57-bb0a586a6fd4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-30T22:01:49.000Z" - }, - "end": { - "$date": "2020-11-30T22:10:15.000Z" - }, - "events": [ - { - "uuid": "7b5e237b-909b-4067-9893-949f7b5a181c", - "start": { - "$date": "2020-11-30T22:01:49.000Z" - }, - "end": { - "$date": "2020-11-30T22:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "63d5581b-0fae-4296-a2ea-e87535a8a152", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-11-30T22:10:50.000Z" - }, - "end": { - "$date": "2020-11-30T22:38:06.000Z" - }, - "events": [ - { - "uuid": "218d2fe0-6770-405b-8a2e-27496bc16c59", - "start": { - "$date": "2020-11-30T22:10:50.000Z" - }, - "end": { - "$date": "2020-11-30T22:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bfdbfd16-8e9d-4b62-b2f3-ba85653d1725", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-30T23:55:41.000Z" - }, - "end": { - "$date": "2020-11-30T23:57:48.000Z" - }, - "events": [ - { - "uuid": "4e3b8fc9-da86-41d2-ab26-c21e0583f117", - "start": { - "$date": "2020-11-30T23:55:41.000Z" - }, - "end": { - "$date": "2020-11-30T23:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "284e5ac9-5877-463f-87c3-33521faa4c51", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-11-30T23:58:22.000Z" - }, - "end": { - "$date": "2020-12-01T00:25:03.000Z" - }, - "events": [ - { - "uuid": "61fa9d03-0edb-424f-84e1-9d160f59a00f", - "start": { - "$date": "2020-11-30T23:58:22.000Z" - }, - "end": { - "$date": "2020-12-01T00:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8b2a9d6c-a6fb-4ea6-b691-b5449999ff0d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-01T00:06:57.000Z" - }, - "end": { - "$date": "2020-12-01T12:57:40.000Z" - }, - "events": [ - { - "uuid": "5373e5a2-12b6-42e1-9d5c-fc56ff6e00ae", - "start": { - "$date": "2020-12-01T00:06:57.000Z" - }, - "end": { - "$date": "2020-12-01T01:18:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbd9e206-b9bd-4566-8afe-0bc71b68d814", - "start": { - "$date": "2020-12-01T01:18:57.000Z" - }, - "end": { - "$date": "2020-12-01T01:56:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42e458d0-07fb-472b-8628-4c29e46efcaf", - "start": { - "$date": "2020-12-01T01:56:57.000Z" - }, - "end": { - "$date": "2020-12-01T02:02:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e360aef-7d89-494d-b01e-e8454945f4ec", - "start": { - "$date": "2020-12-01T02:02:57.000Z" - }, - "end": { - "$date": "2020-12-01T02:10:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e0ca11bf-1d8a-4b3e-915d-bfd770f3bb0b", - "start": { - "$date": "2020-12-01T02:10:57.000Z" - }, - "end": { - "$date": "2020-12-01T02:12:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e58498c-9c9f-4eb5-a1ca-5fdd2c33ee5f", - "start": { - "$date": "2020-12-01T02:12:57.000Z" - }, - "end": { - "$date": "2020-12-01T12:57:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "37b54a67-47e1-481f-ae14-2d448aaecc5b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-01T00:54:53.000Z" - }, - "end": { - "$date": "2020-12-01T02:42:38.000Z" - }, - "events": [ - { - "uuid": "645f6b1b-be77-43eb-abac-ae38f42c81f1", - "start": { - "$date": "2020-12-01T00:54:53.000Z" - }, - "end": { - "$date": "2020-12-01T01:13:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cf9b4da0-1763-48b7-8b55-a724544c10a1", - "start": { - "$date": "2020-12-01T01:13:53.000Z" - }, - "end": { - "$date": "2020-12-01T01:18:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c326d044-07a3-46ad-9f7d-93ddcbf2f94c", - "start": { - "$date": "2020-12-01T01:18:53.000Z" - }, - "end": { - "$date": "2020-12-01T02:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b581964-8dfd-498d-810c-d41417418209", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-01T01:57:39.000Z" - }, - "end": { - "$date": "2020-12-01T02:00:25.000Z" - }, - "events": [ - { - "uuid": "3e5ddbc9-b336-405c-a4d8-5ffd0f6c678b", - "start": { - "$date": "2020-12-01T01:57:39.000Z" - }, - "end": { - "$date": "2020-12-01T02:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "00c1d7e1-b037-4bf6-9be4-014ee3f9bae4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-01T01:34:46.000Z" - }, - "end": { - "$date": "2020-12-01T01:37:26.000Z" - }, - "events": [ - { - "uuid": "a2ea2820-82e5-4782-88f8-16803884050c", - "start": { - "$date": "2020-12-01T01:34:46.000Z" - }, - "end": { - "$date": "2020-12-01T01:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae00185c-07d7-4db4-a83e-d66c29a4e146", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-01T01:37:31.000Z" - }, - "end": { - "$date": "2020-12-01T02:07:56.000Z" - }, - "events": [ - { - "uuid": "2e769836-9a62-454f-b854-64bc3d4d707a", - "start": { - "$date": "2020-12-01T01:37:31.000Z" - }, - "end": { - "$date": "2020-12-01T02:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f76ad19c-a592-4f39-a860-cd20e174231d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-01T02:04:54.000Z" - }, - "end": { - "$date": "2020-12-01T02:50:05.000Z" - }, - "events": [ - { - "uuid": "bbc4d0fb-53b8-478a-a04f-56eadacf0a51", - "start": { - "$date": "2020-12-01T02:04:54.000Z" - }, - "end": { - "$date": "2020-12-01T02:50:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "969e1661-06fa-4955-b5ad-1960533320c8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-01T02:13:55.000Z" - }, - "end": { - "$date": "2020-12-01T03:01:47.000Z" - }, - "events": [ - { - "uuid": "d26e1d7e-4c0e-487a-bbb2-f6ae7ead1c20", - "start": { - "$date": "2020-12-01T02:13:55.000Z" - }, - "end": { - "$date": "2020-12-01T03:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "e5de1f44-8eba-4b13-93da-bb8a96af4acf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-01T02:13:59.000Z" - }, - "end": { - "$date": "2020-12-01T03:18:10.000Z" - }, - "events": [ - { - "uuid": "0febdbfc-65d0-45e4-b105-c01af1a43c8e", - "start": { - "$date": "2020-12-01T02:13:59.000Z" - }, - "end": { - "$date": "2020-12-01T03:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "036df565-07f6-44c6-b7b1-4924c0b4585c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-01T02:49:10.000Z" - }, - "end": { - "$date": "2020-12-01T04:16:33.000Z" - }, - "events": [ - { - "uuid": "2ae67d18-3bc9-42c1-8a87-81b23defcde4", - "start": { - "$date": "2020-12-01T02:49:10.000Z" - }, - "end": { - "$date": "2020-12-01T04:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "126adc64-77c6-43ef-a8eb-cf8ef4915ed7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-01T04:02:14.000Z" - }, - "end": { - "$date": "2020-12-01T04:40:37.000Z" - }, - "events": [ - { - "uuid": "a7391dba-c0bd-43cc-93aa-3ea800178152", - "start": { - "$date": "2020-12-01T04:02:14.000Z" - }, - "end": { - "$date": "2020-12-01T04:40:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6a7ab457-b85d-49e4-81d6-87db5b32313e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-01T04:04:35.000Z" - }, - "end": { - "$date": "2020-12-01T04:58:25.000Z" - }, - "events": [ - { - "uuid": "5badbf92-49c8-4509-8ee8-3a2599475604", - "start": { - "$date": "2020-12-01T04:04:35.000Z" - }, - "end": { - "$date": "2020-12-01T04:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82151acb-842b-48bc-b21e-9056e74d7dbb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-01T04:25:26.000Z" - }, - "end": { - "$date": "2020-12-01T04:46:26.000Z" - }, - "events": [ - { - "uuid": "6a993143-fdb8-438d-b055-90687359ffcd", - "start": { - "$date": "2020-12-01T04:25:26.000Z" - }, - "end": { - "$date": "2020-12-01T04:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7e9b354c-8d81-49d6-bf19-bfe1f7d6ab63", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-01T04:39:50.000Z" - }, - "end": { - "$date": "2020-12-01T06:12:51.000Z" - }, - "events": [ - { - "uuid": "48782773-8b27-4ac4-83e2-3f9536f6276c", - "start": { - "$date": "2020-12-01T04:39:50.000Z" - }, - "end": { - "$date": "2020-12-01T06:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fe5240d2-dcf5-4d23-b3fb-d822678e7800", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-01T04:41:32.000Z" - }, - "end": { - "$date": "2020-12-01T05:24:35.000Z" - }, - "events": [ - { - "uuid": "36e51a0f-77f8-4314-a750-06fd6fb756c6", - "start": { - "$date": "2020-12-01T04:41:32.000Z" - }, - "end": { - "$date": "2020-12-01T05:24:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "372711b4-0170-441d-b0a0-5b0ae1e5b3f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-01T04:45:34.000Z" - }, - "end": { - "$date": "2020-12-01T04:48:40.000Z" - }, - "events": [ - { - "uuid": "e26ecace-ff68-4e86-a221-36545f07039e", - "start": { - "$date": "2020-12-01T04:45:34.000Z" - }, - "end": { - "$date": "2020-12-01T04:48:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fd7e821-867b-4f53-96bf-4157fbd64c57", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-01T04:49:17.000Z" - }, - "end": { - "$date": "2020-12-01T05:09:11.000Z" - }, - "events": [ - { - "uuid": "b1e53f30-ae65-4110-8f52-b0557694e04a", - "start": { - "$date": "2020-12-01T04:49:17.000Z" - }, - "end": { - "$date": "2020-12-01T05:09:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "279bae7c-eebf-406a-a37f-eb9e0e6a0d7c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-01T04:47:35.000Z" - }, - "end": { - "$date": "2020-12-01T05:04:15.000Z" - }, - "events": [ - { - "uuid": "22d7bdaa-e835-48ca-bbea-43463e4030a5", - "start": { - "$date": "2020-12-01T04:47:35.000Z" - }, - "end": { - "$date": "2020-12-01T05:04:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a2ab1002-2610-4d4d-82bd-c7cd500cf41b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-01T04:48:34.000Z" - }, - "end": { - "$date": "2020-12-01T05:58:12.000Z" - }, - "events": [ - { - "uuid": "95face0e-0a4a-4533-8218-985c94c4643b", - "start": { - "$date": "2020-12-01T04:48:34.000Z" - }, - "end": { - "$date": "2020-12-01T05:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "38ba84ae-69d8-458c-a5dd-7191b12c9e07", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-01T05:04:32.000Z" - }, - "end": { - "$date": "2020-12-01T05:58:37.000Z" - }, - "events": [ - { - "uuid": "5d09aeb0-61eb-40c7-bcdb-232f1dd9bbaf", - "start": { - "$date": "2020-12-01T05:04:32.000Z" - }, - "end": { - "$date": "2020-12-01T05:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "123525ba-46fa-4fe7-888a-ea030333e3eb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-01T05:18:23.000Z" - }, - "end": { - "$date": "2020-12-01T05:36:19.000Z" - }, - "events": [ - { - "uuid": "ec1eae6d-5d8b-49aa-bf39-d73403219944", - "start": { - "$date": "2020-12-01T05:18:23.000Z" - }, - "end": { - "$date": "2020-12-01T05:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "3295b729-9b05-42cb-b635-6aa97964d4ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-01T05:29:31.000Z" - }, - "end": { - "$date": "2020-12-01T05:40:21.000Z" - }, - "events": [ - { - "uuid": "d4bacf7f-957a-4b52-a2ea-3aa192742382", - "start": { - "$date": "2020-12-01T05:29:31.000Z" - }, - "end": { - "$date": "2020-12-01T05:40:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "659186fc-71bc-47e1-973f-233df745cb04", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-01T05:48:12.000Z" - }, - "end": { - "$date": "2020-12-01T05:58:27.000Z" - }, - "events": [ - { - "uuid": "611b197e-a9d0-4cdf-be03-9db9363b44b0", - "start": { - "$date": "2020-12-01T05:48:12.000Z" - }, - "end": { - "$date": "2020-12-01T05:58:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "095e6f94-fa3f-48a0-acc1-b8916757505d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-01T06:13:21.000Z" - }, - "end": { - "$date": "2020-12-01T07:17:43.000Z" - }, - "events": [ - { - "uuid": "57fa51aa-a2e0-4768-aca6-92751a59c2f5", - "start": { - "$date": "2020-12-01T06:13:21.000Z" - }, - "end": { - "$date": "2020-12-01T06:15:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa5755b8-9dfc-401a-a9e3-720b9afeb6a5", - "start": { - "$date": "2020-12-01T06:15:21.000Z" - }, - "end": { - "$date": "2020-12-01T06:17:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bbe18903-67d2-4918-a2bd-5be245a4e5ac", - "start": { - "$date": "2020-12-01T06:17:21.000Z" - }, - "end": { - "$date": "2020-12-01T06:19:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "163dbe7c-d58f-4135-b49b-740fdfef3965", - "start": { - "$date": "2020-12-01T06:19:21.000Z" - }, - "end": { - "$date": "2020-12-01T06:28:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd972210-b738-4aec-bdf7-9e6c4ce9a0c6", - "start": { - "$date": "2020-12-01T06:28:21.000Z" - }, - "end": { - "$date": "2020-12-01T07:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "dd9274b7-b96f-4ee9-9d12-ca1355349f62", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-01T06:34:17.000Z" - }, - "end": { - "$date": "2020-12-01T07:02:53.000Z" - }, - "events": [ - { - "uuid": "11a8483e-152a-4c24-9a2e-7ee50d45a5d5", - "start": { - "$date": "2020-12-01T06:34:17.000Z" - }, - "end": { - "$date": "2020-12-01T07:02:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "f740f186-8663-4d49-9900-2be1a6909e74", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-01T16:26:45.000Z" - }, - "end": { - "$date": "2020-12-01T16:32:21.000Z" - }, - "events": [ - { - "uuid": "bc9f67ab-f469-42c1-a4aa-bb647017da8b", - "start": { - "$date": "2020-12-01T16:26:45.000Z" - }, - "end": { - "$date": "2020-12-01T16:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "992d9ae1-e391-45d0-9948-dfee55712cf8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-01T20:37:09.000Z" - }, - "end": { - "$date": "2020-12-01T22:23:03.000Z" - }, - "events": [ - { - "uuid": "06d6638c-46c4-4ae5-ac62-a985b0e05605", - "start": { - "$date": "2020-12-01T20:37:09.000Z" - }, - "end": { - "$date": "2020-12-01T22:23:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4201d4f2-6d50-46c7-829c-f827949f1388", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-01T22:16:42.000Z" - }, - "end": { - "$date": "2020-12-01T22:16:57.000Z" - }, - "events": [ - { - "uuid": "09881bb1-b464-4368-87b2-6691330300d9", - "start": { - "$date": "2020-12-01T22:16:42.000Z" - }, - "end": { - "$date": "2020-12-01T22:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4a4bc58f-a232-4e21-9ffa-1f3a831d4453", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-01T22:41:50.000Z" - }, - "end": { - "$date": "2020-12-01T23:38:57.000Z" - }, - "events": [ - { - "uuid": "e2713fa4-3e68-43fa-a8f9-cbd3d3fabc76", - "start": { - "$date": "2020-12-01T22:41:50.000Z" - }, - "end": { - "$date": "2020-12-01T23:38:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "eb3c7588-3171-48c8-8e55-22d40e46d561", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-01T23:53:56.000Z" - }, - "end": { - "$date": "2020-12-01T23:59:02.000Z" - }, - "events": [ - { - "uuid": "20b96466-1d2f-47ee-8852-a015ff229b10", - "start": { - "$date": "2020-12-01T23:53:56.000Z" - }, - "end": { - "$date": "2020-12-01T23:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "790d02e6-624e-4f86-9789-76f6d99af3f0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T00:10:38.000Z" - }, - "end": { - "$date": "2020-12-02T01:23:47.000Z" - }, - "events": [ - { - "uuid": "c4784501-ec83-46a8-999a-e910adbc0fef", - "start": { - "$date": "2020-12-02T00:10:38.000Z" - }, - "end": { - "$date": "2020-12-02T01:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ca9d3a05-850e-4d6a-824c-706decc97133", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-02T00:28:44.000Z" - }, - "end": { - "$date": "2020-12-02T00:58:06.000Z" - }, - "events": [ - { - "uuid": "65d9b848-776e-4a03-b990-39f98fe5e7c4", - "start": { - "$date": "2020-12-02T00:28:44.000Z" - }, - "end": { - "$date": "2020-12-02T00:58:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f83b5cbb-e021-4b57-bb79-6f2d0e155392", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-02T00:55:32.000Z" - }, - "end": { - "$date": "2020-12-02T01:10:09.000Z" - }, - "events": [ - { - "uuid": "82038530-ab7c-4709-9589-949dd178e7fb", - "start": { - "$date": "2020-12-02T00:55:32.000Z" - }, - "end": { - "$date": "2020-12-02T01:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "226c7c60-af1d-456c-a214-392464dbdc0c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-02T01:02:59.000Z" - }, - "end": { - "$date": "2020-12-02T03:42:50.000Z" - }, - "events": [ - { - "uuid": "f2aedba9-c7c6-4219-8596-48bb977c32e1", - "start": { - "$date": "2020-12-02T01:02:59.000Z" - }, - "end": { - "$date": "2020-12-02T03:42:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "104fefd3-3e04-4b80-9f79-366e2a02c632", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T01:31:58.000Z" - }, - "end": { - "$date": "2020-12-02T01:32:03.000Z" - }, - "events": [ - { - "uuid": "71d45607-2b66-464c-a3e6-0b7afe02e3e2", - "start": { - "$date": "2020-12-02T01:31:58.000Z" - }, - "end": { - "$date": "2020-12-02T01:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6e451537-7a8d-456c-bd09-c4f517bc4406", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-02T02:06:58.000Z" - }, - "end": { - "$date": "2020-12-02T03:01:22.000Z" - }, - "events": [ - { - "uuid": "edb13350-c083-4aed-b919-c14e46c606d0", - "start": { - "$date": "2020-12-02T02:06:58.000Z" - }, - "end": { - "$date": "2020-12-02T03:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "101a6f7b-dbb8-4b34-9126-5c146b8653d9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T02:25:59.000Z" - }, - "end": { - "$date": "2020-12-02T02:34:08.000Z" - }, - "events": [ - { - "uuid": "df0771e2-2dfc-40f4-ad38-2c9c65306287", - "start": { - "$date": "2020-12-02T02:25:59.000Z" - }, - "end": { - "$date": "2020-12-02T02:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "19c37f06-e128-44af-b6d2-1085db2341cf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-02T02:26:42.000Z" - }, - "end": { - "$date": "2020-12-02T03:28:03.000Z" - }, - "events": [ - { - "uuid": "2afb72f1-494a-4c50-a812-4a0d3ae4721f", - "start": { - "$date": "2020-12-02T02:26:42.000Z" - }, - "end": { - "$date": "2020-12-02T03:28:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b5fd783b-a357-42c7-ac3c-6ab4497c3ea4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T02:26:58.000Z" - }, - "end": { - "$date": "2020-12-02T04:09:09.000Z" - }, - "events": [ - { - "uuid": "03c7a6ba-0b01-4ab7-9099-b187dc6b4d69", - "start": { - "$date": "2020-12-02T02:26:58.000Z" - }, - "end": { - "$date": "2020-12-02T04:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "4e081146-a67d-489e-ae1c-361341a028ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-02T03:01:15.000Z" - }, - "end": { - "$date": "2020-12-02T05:03:40.000Z" - }, - "events": [ - { - "uuid": "93abf751-0838-473b-9fba-e05012db0af0", - "start": { - "$date": "2020-12-02T03:01:15.000Z" - }, - "end": { - "$date": "2020-12-02T05:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aec1eff0-bb23-4b02-b3de-1b3608bc5756", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-02T03:36:09.000Z" - }, - "end": { - "$date": "2020-12-02T04:08:38.000Z" - }, - "events": [ - { - "uuid": "e44c6f2a-b943-4e3a-8714-29cfc0fb47be", - "start": { - "$date": "2020-12-02T03:36:09.000Z" - }, - "end": { - "$date": "2020-12-02T04:08:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11b3f030-6af5-4689-8f64-3fa3d48e4dac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T03:36:11.000Z" - }, - "end": { - "$date": "2020-12-02T04:08:37.000Z" - }, - "events": [ - { - "uuid": "8453827d-d278-4802-9637-9f57e2b246ea", - "start": { - "$date": "2020-12-02T03:36:11.000Z" - }, - "end": { - "$date": "2020-12-02T04:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92c877a1-4d1c-401e-9ea2-9a0a514e4201", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-02T03:43:43.000Z" - }, - "end": { - "$date": "2020-12-02T03:54:23.000Z" - }, - "events": [ - { - "uuid": "65b0e844-e221-443b-9ce7-a16fcc02085a", - "start": { - "$date": "2020-12-02T03:43:43.000Z" - }, - "end": { - "$date": "2020-12-02T03:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "05a1c14d-635c-496d-86a0-1625b7edbd82", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-02T03:50:25.000Z" - }, - "end": { - "$date": "2020-12-02T04:41:08.000Z" - }, - "events": [ - { - "uuid": "70f2aa19-2efa-480c-aa41-9fbd98dedce4", - "start": { - "$date": "2020-12-02T03:50:25.000Z" - }, - "end": { - "$date": "2020-12-02T04:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "732f8caa-6b88-438b-a2a1-53f0b91365ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T03:51:54.000Z" - }, - "end": { - "$date": "2020-12-02T06:03:39.000Z" - }, - "events": [ - { - "uuid": "7d5c77e2-0da9-420c-a464-0e14669a3847", - "start": { - "$date": "2020-12-02T03:51:54.000Z" - }, - "end": { - "$date": "2020-12-02T06:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "15cd9e4c-f410-4727-87e9-2044e6a9fad6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-02T03:59:21.000Z" - }, - "end": { - "$date": "2020-12-02T04:27:44.000Z" - }, - "events": [ - { - "uuid": "f04a588d-9015-4996-9763-b14c70849989", - "start": { - "$date": "2020-12-02T03:59:21.000Z" - }, - "end": { - "$date": "2020-12-02T04:27:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "dfdac04e-32e8-4d0b-9ecb-fb9a4370caaf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-02T04:07:53.000Z" - }, - "end": { - "$date": "2020-12-02T04:25:59.000Z" - }, - "events": [ - { - "uuid": "f8dabf47-a88c-4381-abb2-b9bafb395b1d", - "start": { - "$date": "2020-12-02T04:07:53.000Z" - }, - "end": { - "$date": "2020-12-02T04:25:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebc208b2-d49e-4e64-80a1-2d753c929da1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-02T04:08:58.000Z" - }, - "end": { - "$date": "2020-12-02T06:12:21.000Z" - }, - "events": [ - { - "uuid": "f05e6ca8-5536-46ce-afd6-862390961751", - "start": { - "$date": "2020-12-02T04:08:58.000Z" - }, - "end": { - "$date": "2020-12-02T06:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8195ced8-fb65-4615-ba3a-77fdb38e0b21", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T04:10:46.000Z" - }, - "end": { - "$date": "2020-12-02T04:15:01.000Z" - }, - "events": [ - { - "uuid": "5c95a59e-c6dd-47de-ad1e-186b9136760e", - "start": { - "$date": "2020-12-02T04:10:46.000Z" - }, - "end": { - "$date": "2020-12-02T04:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10a2257a-6387-442d-8982-16d2a69e48f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T04:10:47.000Z" - }, - "end": { - "$date": "2020-12-02T04:15:01.000Z" - }, - "events": [ - { - "uuid": "cffc0990-140b-411d-a3a3-15f45ee36783", - "start": { - "$date": "2020-12-02T04:10:47.000Z" - }, - "end": { - "$date": "2020-12-02T04:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70409c17-2efd-41da-8a8b-8d9b75e2d2d9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T04:15:44.000Z" - }, - "end": { - "$date": "2020-12-02T04:22:12.000Z" - }, - "events": [ - { - "uuid": "51dfcc15-9b8c-4446-b75c-dd3b79edcde4", - "start": { - "$date": "2020-12-02T04:15:44.000Z" - }, - "end": { - "$date": "2020-12-02T04:22:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de9f306b-25df-4f18-98ef-7ca133d298b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T04:15:46.000Z" - }, - "end": { - "$date": "2020-12-02T04:22:12.000Z" - }, - "events": [ - { - "uuid": "cb2ab7b4-829a-441e-8b1e-8bcb53379523", - "start": { - "$date": "2020-12-02T04:15:46.000Z" - }, - "end": { - "$date": "2020-12-02T04:22:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9687e100-b1e7-45ae-9042-c1af11db792c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T04:22:12.000Z" - }, - "end": { - "$date": "2020-12-02T04:24:23.000Z" - }, - "events": [ - { - "uuid": "bfdd9bee-282f-45cc-bcf3-f54f9600341a", - "start": { - "$date": "2020-12-02T04:22:12.000Z" - }, - "end": { - "$date": "2020-12-02T04:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8fcb880-f3d3-4ac3-935d-fe76d88aa9cb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T04:22:13.000Z" - }, - "end": { - "$date": "2020-12-02T04:24:23.000Z" - }, - "events": [ - { - "uuid": "2a14c746-19ec-4ccc-800f-11b1b9f89f91", - "start": { - "$date": "2020-12-02T04:22:13.000Z" - }, - "end": { - "$date": "2020-12-02T04:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cfaf430-d53e-41b3-9c16-99088dc24d73", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T04:30:33.000Z" - }, - "end": { - "$date": "2020-12-02T05:03:13.000Z" - }, - "events": [ - { - "uuid": "cbbee749-8979-480e-a6ab-7df3091fb306", - "start": { - "$date": "2020-12-02T04:30:33.000Z" - }, - "end": { - "$date": "2020-12-02T05:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4edd8d1b-b880-4aa0-afd0-bcca3e0e107b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T05:03:20.000Z" - }, - "end": { - "$date": "2020-12-02T05:03:20.000Z" - }, - "events": [ - { - "uuid": "f6ab3d28-2ab8-448e-8281-c57cc0cc013f", - "start": { - "$date": "2020-12-02T05:03:20.000Z" - }, - "end": { - "$date": "2020-12-02T05:03:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6dd7c768-32d0-44cf-bcc7-41ec30835ca0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-02T04:29:58.000Z" - }, - "end": { - "$date": "2020-12-02T06:56:13.000Z" - }, - "events": [ - { - "uuid": "7049670d-65ac-49da-802b-bafb376a444e", - "start": { - "$date": "2020-12-02T04:29:58.000Z" - }, - "end": { - "$date": "2020-12-02T06:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c28c4413-069f-4265-8f0e-74c60b87f6af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-02T04:38:11.000Z" - }, - "end": { - "$date": "2020-12-02T04:56:07.000Z" - }, - "events": [ - { - "uuid": "6c1f218d-d837-4211-9480-9a27bc5c6db2", - "start": { - "$date": "2020-12-02T04:38:11.000Z" - }, - "end": { - "$date": "2020-12-02T04:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1877d76a-931d-4315-b7d3-c0280c0e3b7c", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-12-02T05:00:01.000Z" - }, - "end": { - "$date": "2020-12-02T06:41:15.000Z" - }, - "events": [ - { - "uuid": "39cc371d-6960-4ec9-bcbd-77c1ae6a9e79", - "start": { - "$date": "2020-12-02T05:00:01.000Z" - }, - "end": { - "$date": "2020-12-02T06:41:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29cf6343-b368-4c56-ad07-084f38ccf2e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T05:06:33.000Z" - }, - "end": { - "$date": "2020-12-02T05:41:30.000Z" - }, - "events": [ - { - "uuid": "5744d5e4-7a6f-4f17-8297-347472155911", - "start": { - "$date": "2020-12-02T05:06:33.000Z" - }, - "end": { - "$date": "2020-12-02T05:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51fb8115-f987-4871-b617-baab7bd22d20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T05:06:29.000Z" - }, - "end": { - "$date": "2020-12-02T05:41:29.000Z" - }, - "events": [ - { - "uuid": "706e692c-d52a-44a0-a1ce-d2bfb30ece05", - "start": { - "$date": "2020-12-02T05:06:29.000Z" - }, - "end": { - "$date": "2020-12-02T05:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f762e092-9876-4f2c-be5d-73c3bb957163", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-02T05:06:28.000Z" - }, - "end": { - "$date": "2020-12-02T05:41:30.000Z" - }, - "events": [ - { - "uuid": "d7fcac3c-e3fb-4231-9199-79dcb57dcaf7", - "start": { - "$date": "2020-12-02T05:06:28.000Z" - }, - "end": { - "$date": "2020-12-02T05:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dfef8199-f6d3-4011-9e06-4d01947d7c69", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-02T05:04:15.000Z" - }, - "end": { - "$date": "2020-12-02T06:36:42.000Z" - }, - "events": [ - { - "uuid": "7ac9ef41-3930-4dde-abbc-57ad88e37f3a", - "start": { - "$date": "2020-12-02T05:04:15.000Z" - }, - "end": { - "$date": "2020-12-02T06:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cf1a0534-bfa8-45d6-a036-04847acbd96d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-02T05:32:43.000Z" - }, - "end": { - "$date": "2020-12-02T06:56:45.000Z" - }, - "events": [ - { - "uuid": "d19e8295-7c8c-43fd-bc5b-65d95846b635", - "start": { - "$date": "2020-12-02T05:32:43.000Z" - }, - "end": { - "$date": "2020-12-02T06:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9598ee1-27a8-406e-aaf7-d66a4dca929e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T05:44:50.000Z" - }, - "end": { - "$date": "2020-12-02T06:10:20.000Z" - }, - "events": [ - { - "uuid": "3b680472-89cd-420e-a077-1a8fe7f09492", - "start": { - "$date": "2020-12-02T05:44:50.000Z" - }, - "end": { - "$date": "2020-12-02T06:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37c0593e-ddd7-46fc-a874-fea6b6c6fdfc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-02T05:43:55.000Z" - }, - "end": { - "$date": "2020-12-02T06:10:28.000Z" - }, - "events": [ - { - "uuid": "a1880f9a-3ef6-4884-941b-7a5d22f2c1be", - "start": { - "$date": "2020-12-02T05:43:55.000Z" - }, - "end": { - "$date": "2020-12-02T06:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27ade3a8-ccff-43cf-95ac-ebf89b575d29", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-02T05:45:09.000Z" - }, - "end": { - "$date": "2020-12-02T06:10:20.000Z" - }, - "events": [ - { - "uuid": "5d24f566-6069-4dbd-bc1b-713d7ccf2596", - "start": { - "$date": "2020-12-02T05:45:09.000Z" - }, - "end": { - "$date": "2020-12-02T06:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bfaadb4e-0735-4856-abb7-a3053db085e2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T06:18:06.000Z" - }, - "end": { - "$date": "2020-12-02T06:25:14.000Z" - }, - "events": [ - { - "uuid": "799238b8-4052-4d67-8e1f-7b83a541591d", - "start": { - "$date": "2020-12-02T06:18:06.000Z" - }, - "end": { - "$date": "2020-12-02T06:25:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a8520fb6-11ea-4470-910c-13d758a68ef1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T06:26:42.000Z" - }, - "end": { - "$date": "2020-12-02T06:29:39.000Z" - }, - "events": [ - { - "uuid": "69d6dfa3-973b-455c-8b38-8443c7f26c24", - "start": { - "$date": "2020-12-02T06:26:42.000Z" - }, - "end": { - "$date": "2020-12-02T06:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e61f7f7d-c05b-4ce6-8479-1611e8b0ccf5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T06:31:18.000Z" - }, - "end": { - "$date": "2020-12-02T06:33:42.000Z" - }, - "events": [ - { - "uuid": "3c96303e-618b-4d5f-8669-2a6387360ac1", - "start": { - "$date": "2020-12-02T06:31:18.000Z" - }, - "end": { - "$date": "2020-12-02T06:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fb6de590-c9fa-4949-9cda-268300f1ae3b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T06:37:28.000Z" - }, - "end": { - "$date": "2020-12-02T07:24:07.000Z" - }, - "events": [ - { - "uuid": "d3140217-7c9f-4a9c-90f5-e15e95918cdb", - "start": { - "$date": "2020-12-02T06:37:28.000Z" - }, - "end": { - "$date": "2020-12-02T07:24:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4aa2776c-dfa7-4388-9f7f-66d796f2aedf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-02T07:26:13.000Z" - }, - "end": { - "$date": "2020-12-02T07:31:38.000Z" - }, - "events": [ - { - "uuid": "d6a0feab-04a5-4d69-8729-1ac369b74ea6", - "start": { - "$date": "2020-12-02T07:26:13.000Z" - }, - "end": { - "$date": "2020-12-02T07:31:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c163c008-1b53-42ee-a952-e44d1c5b6d40", - "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", - "start": { - "$date": "2020-12-02T09:54:22.000Z" - }, - "end": { - "$date": "2020-12-02T09:54:44.000Z" - }, - "events": [ - { - "uuid": "43c59808-ed1a-4205-98c3-c8fbd266dc38", - "start": { - "$date": "2020-12-02T09:54:22.000Z" - }, - "end": { - "$date": "2020-12-02T09:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d8fa4a28-268f-46c0-a986-d3fccec2993f", - "uuid": "25a1d3ec-6c18-42bc-9480-3a4e9d20e672", - "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", - "start": { - "$date": "2020-12-02T10:06:23.000Z" - }, - "end": { - "$date": "2020-12-02T10:08:14.000Z" - }, - "events": [ - { - "uuid": "70075d18-6bdc-4ed0-b61e-39a099af247d", - "start": { - "$date": "2020-12-02T10:06:23.000Z" - }, - "end": { - "$date": "2020-12-02T10:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5bf52c34-f83b-4036-83e4-7533ed3531a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-02T17:43:29.000Z" - }, - "end": { - "$date": "2020-12-02T18:28:22.000Z" - }, - "events": [ - { - "uuid": "1288652e-9c64-4add-88be-d0fe41fb4493", - "start": { - "$date": "2020-12-02T17:43:29.000Z" - }, - "end": { - "$date": "2020-12-02T18:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a80d9cc-2fe8-4412-b75e-a8bdb8b0d876", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-02T17:59:29.000Z" - }, - "end": { - "$date": "2020-12-02T20:11:03.000Z" - }, - "events": [ - { - "uuid": "80d55074-9766-47b2-98aa-2f19ad2e5bcc", - "start": { - "$date": "2020-12-02T17:59:29.000Z" - }, - "end": { - "$date": "2020-12-02T20:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de106362-3f8b-423b-97db-73d1b46e75da", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-02T21:03:32.000Z" - }, - "end": { - "$date": "2020-12-02T21:33:25.000Z" - }, - "events": [ - { - "uuid": "0a58fb89-0d9d-4cdb-af04-c1192a7ed3d2", - "start": { - "$date": "2020-12-02T21:03:32.000Z" - }, - "end": { - "$date": "2020-12-02T21:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "31b2997a-2d7b-47df-8de1-b13faebbba6f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-02T21:24:12.000Z" - }, - "end": { - "$date": "2020-12-03T00:57:54.000Z" - }, - "events": [ - { - "uuid": "996f191c-15a0-401c-a8eb-37869e240168", - "start": { - "$date": "2020-12-02T21:24:12.000Z" - }, - "end": { - "$date": "2020-12-02T22:52:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4595f573-9546-4d98-a820-c7ffa59aded8", - "start": { - "$date": "2020-12-02T22:52:12.000Z" - }, - "end": { - "$date": "2020-12-02T23:04:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd94c7d9-6d71-486b-9a39-43a74c663e2e", - "start": { - "$date": "2020-12-02T23:04:12.000Z" - }, - "end": { - "$date": "2020-12-02T23:36:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7668cb97-3f94-4529-aaa6-843f31961dce", - "start": { - "$date": "2020-12-02T23:36:12.000Z" - }, - "end": { - "$date": "2020-12-02T23:51:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0f038fa-c10c-4706-985d-bcb09ce29198", - "start": { - "$date": "2020-12-02T23:51:12.000Z" - }, - "end": { - "$date": "2020-12-02T23:59:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69d584d2-7f6c-487b-ae62-ff74c7b2e167", - "start": { - "$date": "2020-12-02T23:59:12.000Z" - }, - "end": { - "$date": "2020-12-03T00:02:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1cae65a5-5d1b-4802-9521-20e999d3c8c3", - "start": { - "$date": "2020-12-03T00:02:12.000Z" - }, - "end": { - "$date": "2020-12-03T00:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eb5c167f-4c84-4079-b415-576c6484482b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-02T21:38:27.000Z" - }, - "end": { - "$date": "2020-12-02T22:27:10.000Z" - }, - "events": [ - { - "uuid": "b7db42d2-2682-4ef8-a512-7b14ae23127a", - "start": { - "$date": "2020-12-02T21:38:27.000Z" - }, - "end": { - "$date": "2020-12-02T22:27:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8985057-504d-41a7-934c-304234aa828e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-02T22:15:14.000Z" - }, - "end": { - "$date": "2020-12-02T22:39:09.000Z" - }, - "events": [ - { - "uuid": "fcd2f532-7df9-47b1-a638-20dfffd2970f", - "start": { - "$date": "2020-12-02T22:15:14.000Z" - }, - "end": { - "$date": "2020-12-02T22:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e30b3d01-07fb-4704-97d1-a16359c492fd", - "uuid": "2fffce5c-9cbf-4b35-9824-f26684c1a31e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-02T22:36:08.000Z" - }, - "end": { - "$date": "2020-12-02T23:49:17.000Z" - }, - "events": [ - { - "uuid": "c60a1bde-643f-4455-abdd-fb0eb45f0b04", - "start": { - "$date": "2020-12-02T22:36:08.000Z" - }, - "end": { - "$date": "2020-12-02T23:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cd975d18-113b-42b9-b94f-c945fe806065", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-02T22:55:01.000Z" - }, - "end": { - "$date": "2020-12-03T01:30:20.000Z" - }, - "events": [ - { - "uuid": "41efd660-df18-48a1-a081-8aa76cbd77c4", - "start": { - "$date": "2020-12-02T22:55:01.000Z" - }, - "end": { - "$date": "2020-12-03T01:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1ca1e270-1fc3-4a74-9d8f-550f4d27431e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-02T23:33:51.000Z" - }, - "end": { - "$date": "2020-12-02T23:34:51.000Z" - }, - "events": [ - { - "uuid": "bce9216b-8d23-48c8-b1c6-9250bbd6c9e1", - "start": { - "$date": "2020-12-02T23:33:51.000Z" - }, - "end": { - "$date": "2020-12-02T23:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6a5dabc2-689f-496d-8818-d1e4cd48adf5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-02T23:35:06.000Z" - }, - "end": { - "$date": "2020-12-02T23:36:26.000Z" - }, - "events": [ - { - "uuid": "1fd5bad2-3ef5-445c-8324-9ddc50adb737", - "start": { - "$date": "2020-12-02T23:35:06.000Z" - }, - "end": { - "$date": "2020-12-02T23:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "54a3febd-f355-4f42-b1d5-0f81af6b7bde", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-02T23:36:51.000Z" - }, - "end": { - "$date": "2020-12-03T00:34:12.000Z" - }, - "events": [ - { - "uuid": "5d31f195-92d3-4d13-965a-89916f6ca521", - "start": { - "$date": "2020-12-02T23:36:51.000Z" - }, - "end": { - "$date": "2020-12-03T00:34:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "94dd06fa-8764-4ae1-895f-ea6c453e3a76", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-02T23:49:59.000Z" - }, - "end": { - "$date": "2020-12-03T00:41:59.000Z" - }, - "events": [ - { - "uuid": "43ca1112-0ecd-41f5-b3e9-b247a90b5903", - "start": { - "$date": "2020-12-02T23:49:59.000Z" - }, - "end": { - "$date": "2020-12-03T00:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "4ae5930d-eccd-48d5-b016-0efbe64f6853", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-03T00:05:07.000Z" - }, - "end": { - "$date": "2020-12-03T00:32:19.000Z" - }, - "events": [ - { - "uuid": "ad3d85bd-d7f6-43ac-8ee9-d667dc41265d", - "start": { - "$date": "2020-12-03T00:05:07.000Z" - }, - "end": { - "$date": "2020-12-03T00:25:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46f3e436-33a2-4ce2-a235-a2285ee0e1f0", - "start": { - "$date": "2020-12-03T00:25:07.000Z" - }, - "end": { - "$date": "2020-12-03T00:30:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aae2ca82-9887-4672-ae93-32da953532ea", - "start": { - "$date": "2020-12-03T00:30:07.000Z" - }, - "end": { - "$date": "2020-12-03T00:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "4c9da6f9-5cc2-495f-a302-3c52dc6920d8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-03T00:15:58.000Z" - }, - "end": { - "$date": "2020-12-03T02:19:16.000Z" - }, - "events": [ - { - "uuid": "1fd7b265-17ee-49f7-8ad6-1b4dc557dafd", - "start": { - "$date": "2020-12-03T00:15:58.000Z" - }, - "end": { - "$date": "2020-12-03T02:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "39ba78f0-6a11-4783-96c4-592c60339a4f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-03T00:35:05.000Z" - }, - "end": { - "$date": "2020-12-03T02:18:54.000Z" - }, - "events": [ - { - "uuid": "612a7153-9f9f-408a-8b8a-59d3441142d1", - "start": { - "$date": "2020-12-03T00:35:05.000Z" - }, - "end": { - "$date": "2020-12-03T02:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84675917-02fd-4665-a41e-6907472678f1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T00:56:27.000Z" - }, - "end": { - "$date": "2020-12-03T01:35:40.000Z" - }, - "events": [ - { - "uuid": "7ac0100a-dca9-40eb-be9a-26ac8f90bd31", - "start": { - "$date": "2020-12-03T00:56:27.000Z" - }, - "end": { - "$date": "2020-12-03T01:03:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0bfcde0-1230-4544-968b-ed25bc86b39b", - "start": { - "$date": "2020-12-03T01:03:27.000Z" - }, - "end": { - "$date": "2020-12-03T01:35:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "020a916f-1d35-4354-bce2-4fc0a393a49f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T00:56:25.000Z" - }, - "end": { - "$date": "2020-12-03T01:35:44.000Z" - }, - "events": [ - { - "uuid": "cdcb0c10-c1a4-4ee2-ae3d-3c93efe0a5f0", - "start": { - "$date": "2020-12-03T00:56:25.000Z" - }, - "end": { - "$date": "2020-12-03T01:35:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3071f71a-525d-4743-965b-c933f79fd8a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T01:28:43.000Z" - }, - "end": { - "$date": "2020-12-03T02:07:59.000Z" - }, - "events": [ - { - "uuid": "ebfd11f2-c215-4a8b-9089-952df52fdd20", - "start": { - "$date": "2020-12-03T01:28:43.000Z" - }, - "end": { - "$date": "2020-12-03T02:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da2fe26f-9c6f-4a1c-bfec-6ffdd92cee87", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T01:44:09.000Z" - }, - "end": { - "$date": "2020-12-03T02:09:52.000Z" - }, - "events": [ - { - "uuid": "bfac2ebe-492c-4643-9176-182347639d14", - "start": { - "$date": "2020-12-03T01:44:09.000Z" - }, - "end": { - "$date": "2020-12-03T02:09:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc163468-3401-49cc-a81f-4697eaf14865", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T01:39:59.000Z" - }, - "end": { - "$date": "2020-12-03T01:40:05.000Z" - }, - "events": [ - { - "uuid": "0ff8ca74-a2c0-4413-b9a5-7cd999e0c3a7", - "start": { - "$date": "2020-12-03T01:39:59.000Z" - }, - "end": { - "$date": "2020-12-03T01:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "fc2b6629-9363-41ec-aafa-e68a1d0708fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T01:38:20.000Z" - }, - "end": { - "$date": "2020-12-03T01:43:09.000Z" - }, - "events": [ - { - "uuid": "a43b343d-37f5-42e5-a543-75ce060c7d3a", - "start": { - "$date": "2020-12-03T01:38:20.000Z" - }, - "end": { - "$date": "2020-12-03T01:43:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cecda78f-f401-47a2-9b52-6f3480976677", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T01:44:12.000Z" - }, - "end": { - "$date": "2020-12-03T02:09:48.000Z" - }, - "events": [ - { - "uuid": "dc2458fa-492e-4baa-a37c-b2efc19dedb9", - "start": { - "$date": "2020-12-03T01:44:12.000Z" - }, - "end": { - "$date": "2020-12-03T02:09:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a73a85bf-1689-4b0b-a032-32657f92a835", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-03T01:41:01.000Z" - }, - "end": { - "$date": "2020-12-03T03:08:50.000Z" - }, - "events": [ - { - "uuid": "646f7348-157a-4389-9201-6d527cf8c747", - "start": { - "$date": "2020-12-03T01:41:01.000Z" - }, - "end": { - "$date": "2020-12-03T03:08:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c9a41452-c37a-44da-ae53-415aa1b3ea39", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T01:43:25.000Z" - }, - "end": { - "$date": "2020-12-03T02:17:39.000Z" - }, - "events": [ - { - "uuid": "4f08aabf-d728-49b0-90af-e8ff4c18e343", - "start": { - "$date": "2020-12-03T01:43:25.000Z" - }, - "end": { - "$date": "2020-12-03T02:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "44697405-e10c-4e78-97ef-cc8b8d531c5f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T02:02:52.000Z" - }, - "end": { - "$date": "2020-12-03T02:10:42.000Z" - }, - "events": [ - { - "uuid": "6a42d315-26bf-4df3-87d7-f6cf3ceb32e5", - "start": { - "$date": "2020-12-03T02:02:52.000Z" - }, - "end": { - "$date": "2020-12-03T02:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "305890ca-e0ee-4ef9-9d6e-65317e3979a0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T02:16:11.000Z" - }, - "end": { - "$date": "2020-12-03T02:48:01.000Z" - }, - "events": [ - { - "uuid": "054cc8a6-ccb0-4d5e-901b-a4653736d2ac", - "start": { - "$date": "2020-12-03T02:16:11.000Z" - }, - "end": { - "$date": "2020-12-03T02:48:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8af8129-8ba1-4318-833f-497721c8c18e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T02:17:31.000Z" - }, - "end": { - "$date": "2020-12-03T02:47:55.000Z" - }, - "events": [ - { - "uuid": "813def33-7e09-4876-96ea-a6c33c657e84", - "start": { - "$date": "2020-12-03T02:17:31.000Z" - }, - "end": { - "$date": "2020-12-03T02:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ea265bf-9fe5-425d-98c2-4d77b9697b24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T02:16:25.000Z" - }, - "end": { - "$date": "2020-12-03T02:47:55.000Z" - }, - "events": [ - { - "uuid": "58b3a91f-9a9a-4665-85c2-16a541ac1667", - "start": { - "$date": "2020-12-03T02:16:25.000Z" - }, - "end": { - "$date": "2020-12-03T02:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11536633-aa15-4583-b300-ccb4138a00ec", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T02:16:14.000Z" - }, - "end": { - "$date": "2020-12-03T02:47:54.000Z" - }, - "events": [ - { - "uuid": "4e3a7d13-662c-4aaa-9e82-24918e6219b1", - "start": { - "$date": "2020-12-03T02:16:14.000Z" - }, - "end": { - "$date": "2020-12-03T02:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f42b7bc4-3fa6-4672-98ca-c9aa9a4fe2c7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T02:42:26.000Z" - }, - "end": { - "$date": "2020-12-03T02:42:30.000Z" - }, - "events": [ - { - "uuid": "6dc9fb8a-a963-4361-a349-402eb6d48a13", - "start": { - "$date": "2020-12-03T02:42:26.000Z" - }, - "end": { - "$date": "2020-12-03T02:42:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b5687015-1974-454b-a42a-cc8e710d0ed3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-03T02:19:30.000Z" - }, - "end": { - "$date": "2020-12-03T04:37:45.000Z" - }, - "events": [ - { - "uuid": "5d4e7d5a-52e4-4bf6-be92-9c0a2ae2ccd4", - "start": { - "$date": "2020-12-03T02:19:30.000Z" - }, - "end": { - "$date": "2020-12-03T04:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "209027bd-f034-44e7-9dc2-28ded47c263b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T02:42:46.000Z" - }, - "end": { - "$date": "2020-12-03T04:15:52.000Z" - }, - "events": [ - { - "uuid": "dc4e66a0-5878-4de9-a133-1ecd6a3ca879", - "start": { - "$date": "2020-12-03T02:42:46.000Z" - }, - "end": { - "$date": "2020-12-03T04:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bb94695-e89e-4178-b587-f55d9a34e3b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T02:57:18.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:13.000Z" - }, - "events": [ - { - "uuid": "49f8a75e-9c01-40a6-ab72-59a95e3d8c8e", - "start": { - "$date": "2020-12-03T02:57:18.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "aa896750-e14f-4f29-b2a9-dab933d33433", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T02:49:25.000Z" - }, - "end": { - "$date": "2020-12-03T03:29:02.000Z" - }, - "events": [ - { - "uuid": "b4dbefa2-f644-470c-bb9b-e9b153588b1c", - "start": { - "$date": "2020-12-03T02:49:25.000Z" - }, - "end": { - "$date": "2020-12-03T03:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32888f05-124f-4916-ad6e-c5c1d190fa91", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T02:51:44.000Z" - }, - "end": { - "$date": "2020-12-03T02:52:45.000Z" - }, - "events": [ - { - "uuid": "7117c287-a812-4be1-8aa0-cfb2c762bfc8", - "start": { - "$date": "2020-12-03T02:51:44.000Z" - }, - "end": { - "$date": "2020-12-03T02:52:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4de1ae5-99df-4e41-bd4b-f37fb1218938", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T02:51:44.000Z" - }, - "end": { - "$date": "2020-12-03T02:52:45.000Z" - }, - "events": [ - { - "uuid": "be9477bd-409d-489f-926a-87c653927eca", - "start": { - "$date": "2020-12-03T02:51:44.000Z" - }, - "end": { - "$date": "2020-12-03T02:52:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25965063-0a5b-410f-8f09-a500066ce7a0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T02:57:17.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:07.000Z" - }, - "events": [ - { - "uuid": "eab2e11e-132d-4807-bbe4-87977dab4389", - "start": { - "$date": "2020-12-03T02:57:17.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21b097ea-6e67-4a45-b188-899ea8be48f2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-03T02:57:27.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:12.000Z" - }, - "events": [ - { - "uuid": "4beb94d8-37a1-4cae-a535-fb3aa5addcaa", - "start": { - "$date": "2020-12-03T02:57:27.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b197b5c5-a950-4d45-8513-a673b59bafa1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T02:57:16.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:12.000Z" - }, - "events": [ - { - "uuid": "cefee4ef-d69d-4ae0-88a4-0ea437cf1d5f", - "start": { - "$date": "2020-12-03T02:57:16.000Z" - }, - "end": { - "$date": "2020-12-03T03:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cda2bedb-9ae9-4934-a665-133ca71a4dc2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-03T03:14:07.000Z" - }, - "end": { - "$date": "2020-12-03T03:44:11.000Z" - }, - "events": [ - { - "uuid": "dc68ab67-0cdd-4bfb-b829-ecf49d1512af", - "start": { - "$date": "2020-12-03T03:14:07.000Z" - }, - "end": { - "$date": "2020-12-03T03:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e99d01d-57be-4c9a-9087-28a91d99e1a0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T03:28:26.000Z" - }, - "end": { - "$date": "2020-12-03T03:29:49.000Z" - }, - "events": [ - { - "uuid": "59c7bea5-8303-4143-8750-210a7d20e6bc", - "start": { - "$date": "2020-12-03T03:28:26.000Z" - }, - "end": { - "$date": "2020-12-03T03:29:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "979ede14-4744-45fa-903d-2f03f37fcb61", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T03:28:46.000Z" - }, - "end": { - "$date": "2020-12-03T03:29:49.000Z" - }, - "events": [ - { - "uuid": "87a7f58f-1481-407f-9bb4-6945387502fc", - "start": { - "$date": "2020-12-03T03:28:46.000Z" - }, - "end": { - "$date": "2020-12-03T03:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76c4af1d-68f1-415e-bf9a-17549a3894db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-03T03:31:33.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:44.000Z" - }, - "events": [ - { - "uuid": "0945a153-cfb0-466b-bcff-b85805230018", - "start": { - "$date": "2020-12-03T03:31:33.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "439356f0-aceb-4579-8da4-33bf4ad2a7d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T03:31:39.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:43.000Z" - }, - "events": [ - { - "uuid": "b3ff6a54-1387-4760-b862-5fc7d09c6b26", - "start": { - "$date": "2020-12-03T03:31:39.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8bcd24b-a970-4aa9-bc8f-ea7b780f8737", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T03:31:42.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:47.000Z" - }, - "events": [ - { - "uuid": "b4ea4910-69dc-418a-b9da-46d5d10734ff", - "start": { - "$date": "2020-12-03T03:31:42.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4eca8dfe-7f96-4364-a59e-c6d4d0b7297c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T03:32:18.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:47.000Z" - }, - "events": [ - { - "uuid": "1f07d85b-d25c-417d-bdd0-b90eeca31cbe", - "start": { - "$date": "2020-12-03T03:32:18.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c3c0dc2-241e-4680-94c1-e9f7b4606d58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T03:31:37.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:48.000Z" - }, - "events": [ - { - "uuid": "069d4d13-09ac-4868-b130-62baf13cc572", - "start": { - "$date": "2020-12-03T03:31:37.000Z" - }, - "end": { - "$date": "2020-12-03T03:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "626b61fb-5e4b-445e-ac2a-f74245edb4c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T03:48:35.000Z" - }, - "end": { - "$date": "2020-12-03T03:49:53.000Z" - }, - "events": [ - { - "uuid": "441d5f53-7b4a-41ed-a6ea-eb7601495eed", - "start": { - "$date": "2020-12-03T03:48:35.000Z" - }, - "end": { - "$date": "2020-12-03T03:49:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4b324f0-d903-44a0-bbfe-4801a1cad727", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-03T03:49:53.000Z" - }, - "end": { - "$date": "2020-12-03T03:51:13.000Z" - }, - "events": [ - { - "uuid": "51e3b698-af35-4fd5-a289-080e010bade0", - "start": { - "$date": "2020-12-03T03:49:53.000Z" - }, - "end": { - "$date": "2020-12-03T03:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "127cd5fd-9826-485b-adf8-318dd622f636", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T03:51:13.000Z" - }, - "end": { - "$date": "2020-12-03T03:53:11.000Z" - }, - "events": [ - { - "uuid": "9fb9c3aa-da62-4fd2-a26e-7f0ab605a625", - "start": { - "$date": "2020-12-03T03:51:13.000Z" - }, - "end": { - "$date": "2020-12-03T03:53:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cacf57e8-438c-4091-a1a2-25aac13e0df7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T03:51:27.000Z" - }, - "end": { - "$date": "2020-12-03T04:33:15.000Z" - }, - "events": [ - { - "uuid": "872881eb-1152-41c2-9945-c9ecfa7f33a5", - "start": { - "$date": "2020-12-03T03:51:27.000Z" - }, - "end": { - "$date": "2020-12-03T04:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "55b72639-f5c4-4c84-a08d-57975d9764dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T03:54:40.000Z" - }, - "end": { - "$date": "2020-12-03T04:26:46.000Z" - }, - "events": [ - { - "uuid": "d5e020eb-5e24-47d3-ad8f-78e78209c178", - "start": { - "$date": "2020-12-03T03:54:40.000Z" - }, - "end": { - "$date": "2020-12-03T04:26:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e5699440-04f1-4b20-90d1-253124108301", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T04:26:57.000Z" - }, - "end": { - "$date": "2020-12-03T04:53:32.000Z" - }, - "events": [ - { - "uuid": "8b83848f-8318-4fa0-88c5-eef942bf8a3a", - "start": { - "$date": "2020-12-03T04:26:57.000Z" - }, - "end": { - "$date": "2020-12-03T04:53:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", - "uuid": "aea6dccf-7ae2-42f7-bf29-3e92be398ded", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-03T04:28:24.000Z" - }, - "end": { - "$date": "2020-12-03T04:30:10.000Z" - }, - "events": [ - { - "uuid": "b297b683-c20b-48e3-9661-1a6dc1c58cfb", - "start": { - "$date": "2020-12-03T04:28:24.000Z" - }, - "end": { - "$date": "2020-12-03T04:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d60c4326-1dd5-4293-9425-d2d947df6400", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-03T04:31:14.000Z" - }, - "end": { - "$date": "2020-12-03T06:06:06.000Z" - }, - "events": [ - { - "uuid": "90aa4354-58f0-4088-b515-529cd29e6706", - "start": { - "$date": "2020-12-03T04:31:14.000Z" - }, - "end": { - "$date": "2020-12-03T06:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b038fe10-0e98-4320-afca-f62d413a9106", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-03T04:34:14.000Z" - }, - "end": { - "$date": "2020-12-03T05:44:16.000Z" - }, - "events": [ - { - "uuid": "c7352c7c-8764-4342-9750-33a332a84989", - "start": { - "$date": "2020-12-03T04:34:14.000Z" - }, - "end": { - "$date": "2020-12-03T05:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "38485008-c5ff-44cd-b085-dca72b1ff4dc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T04:34:26.000Z" - }, - "end": { - "$date": "2020-12-03T06:24:31.000Z" - }, - "events": [ - { - "uuid": "0e880d46-52be-4521-a5c6-396dc5c0e26b", - "start": { - "$date": "2020-12-03T04:34:26.000Z" - }, - "end": { - "$date": "2020-12-03T06:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3971108b-334c-419f-8c3a-1b68e2593bde", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T04:34:36.000Z" - }, - "end": { - "$date": "2020-12-03T06:18:27.000Z" - }, - "events": [ - { - "uuid": "0f3167c7-f1b9-4e22-bfee-bbf7a7b121d5", - "start": { - "$date": "2020-12-03T04:34:36.000Z" - }, - "end": { - "$date": "2020-12-03T06:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9d455356-1326-4197-ad64-ff0061e30c66", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-03T04:46:57.000Z" - }, - "end": { - "$date": "2020-12-03T06:24:47.000Z" - }, - "events": [ - { - "uuid": "0c9b5fa6-0bae-4b3f-9681-7baca625732f", - "start": { - "$date": "2020-12-03T04:46:57.000Z" - }, - "end": { - "$date": "2020-12-03T06:24:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d99b9b97-178c-484d-acaf-412f9a8a356b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-03T04:54:58.000Z" - }, - "end": { - "$date": "2020-12-03T06:19:30.000Z" - }, - "events": [ - { - "uuid": "79551c4e-cf66-4f15-89cd-4795c50cadd5", - "start": { - "$date": "2020-12-03T04:54:58.000Z" - }, - "end": { - "$date": "2020-12-03T06:19:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "22ba75fb-b40e-49d3-8433-b40292a4f2cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-03T05:26:07.000Z" - }, - "end": { - "$date": "2020-12-03T06:25:39.000Z" - }, - "events": [ - { - "uuid": "65d87fc8-519d-447c-b39d-851f92b37e40", - "start": { - "$date": "2020-12-03T05:26:07.000Z" - }, - "end": { - "$date": "2020-12-03T06:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c3b5e184-6193-445b-b4fa-e4db1257af55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T05:29:58.000Z" - }, - "end": { - "$date": "2020-12-03T06:05:49.000Z" - }, - "events": [ - { - "uuid": "0e598b07-4658-4c51-8bd0-2937dec06c8d", - "start": { - "$date": "2020-12-03T05:29:58.000Z" - }, - "end": { - "$date": "2020-12-03T06:05:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "039af96c-7e5d-4bdd-bb8f-df4c972cc20d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-03T05:57:16.000Z" - }, - "end": { - "$date": "2020-12-03T06:25:03.000Z" - }, - "events": [ - { - "uuid": "752034a9-26ab-4da2-bc70-bd844e160819", - "start": { - "$date": "2020-12-03T05:57:16.000Z" - }, - "end": { - "$date": "2020-12-03T06:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", - "uuid": "6e8131bd-d712-42a3-8d7a-2edc735f337c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-03T07:14:47.000Z" - }, - "end": { - "$date": "2020-12-03T08:37:43.000Z" - }, - "events": [ - { - "uuid": "923b0876-4ebd-49cd-957a-ffad2218e9e1", - "start": { - "$date": "2020-12-03T07:14:47.000Z" - }, - "end": { - "$date": "2020-12-03T08:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "87bfc99b-c81b-420c-a8d6-aecc4762c252", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-03T07:51:10.000Z" - }, - "end": { - "$date": "2020-12-03T09:07:58.000Z" - }, - "events": [ - { - "uuid": "a6680370-3120-45f8-832a-fa2ab8d09cc7", - "start": { - "$date": "2020-12-03T07:51:10.000Z" - }, - "end": { - "$date": "2020-12-03T09:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "b02f3a9d-88d8-4645-9bea-9ece1489aa09", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-03T15:26:21.000Z" - }, - "end": { - "$date": "2020-12-03T16:41:13.000Z" - }, - "events": [ - { - "uuid": "2ec8314c-26a7-4ecd-8093-84e4f8ea6b98", - "start": { - "$date": "2020-12-03T15:26:21.000Z" - }, - "end": { - "$date": "2020-12-03T16:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "efe176f1-2c6e-4f94-bc3c-4b76bcca906c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T16:16:54.000Z" - }, - "end": { - "$date": "2020-12-03T18:10:58.000Z" - }, - "events": [ - { - "uuid": "3ae844f0-bd66-43e3-96d2-b218e8f81048", - "start": { - "$date": "2020-12-03T16:16:54.000Z" - }, - "end": { - "$date": "2020-12-03T18:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0e034985-f67c-49bb-83b9-4a843ddea3a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-03T19:52:09.000Z" - }, - "end": { - "$date": "2020-12-03T21:14:18.000Z" - }, - "events": [ - { - "uuid": "9e217d34-5c3b-4454-87fc-b9f214ddbfaa", - "start": { - "$date": "2020-12-03T19:52:09.000Z" - }, - "end": { - "$date": "2020-12-03T21:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e203e65a-18f2-40e5-91b8-344ad4812e5e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-03T20:31:30.000Z" - }, - "end": { - "$date": "2020-12-03T21:44:27.000Z" - }, - "events": [ - { - "uuid": "9adee3e6-d2e8-4e24-8574-4b6e5e8927d1", - "start": { - "$date": "2020-12-03T20:31:30.000Z" - }, - "end": { - "$date": "2020-12-03T21:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "330d03dd-1d92-4e18-a7c1-d036c74fcee5", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-03T20:55:44.000Z" - }, - "end": { - "$date": "2020-12-04T00:37:23.000Z" - }, - "events": [ - { - "uuid": "e873ead6-d7a6-4e88-9083-de77e0d8400b", - "start": { - "$date": "2020-12-03T20:55:44.000Z" - }, - "end": { - "$date": "2020-12-04T00:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3fe2ec73-0f3a-4ed5-b6ee-0fa63682df18", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-03T21:03:18.000Z" - }, - "end": { - "$date": "2020-12-03T22:19:53.000Z" - }, - "events": [ - { - "uuid": "aec52b38-d61e-471e-ac9f-fb13de1f0d6f", - "start": { - "$date": "2020-12-03T21:03:18.000Z" - }, - "end": { - "$date": "2020-12-03T22:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "c2447735-027a-4022-b502-5123de4eb3cd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-03T22:26:18.000Z" - }, - "end": { - "$date": "2020-12-03T22:41:38.000Z" - }, - "events": [ - { - "uuid": "f266a238-c5c4-4136-9be8-d773662e29bd", - "start": { - "$date": "2020-12-03T22:26:18.000Z" - }, - "end": { - "$date": "2020-12-03T22:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "e99a3925-331b-4a1c-97c5-91c168b5e1f5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T22:33:23.000Z" - }, - "end": { - "$date": "2020-12-03T22:51:48.000Z" - }, - "events": [ - { - "uuid": "a13e32df-f2c5-4acc-aa65-98cf858288e8", - "start": { - "$date": "2020-12-03T22:33:23.000Z" - }, - "end": { - "$date": "2020-12-03T22:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "85439d08-26bf-43e4-b9d2-9e9a0cd95c87", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-03T22:41:54.000Z" - }, - "end": { - "$date": "2020-12-03T23:12:55.000Z" - }, - "events": [ - { - "uuid": "144aedce-4926-41b9-9e94-1b4ae168343f", - "start": { - "$date": "2020-12-03T22:41:54.000Z" - }, - "end": { - "$date": "2020-12-03T23:12:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "943a2784-20ca-4fba-9bec-bd146761cc59", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T23:00:09.000Z" - }, - "end": { - "$date": "2020-12-03T23:05:24.000Z" - }, - "events": [ - { - "uuid": "16b83319-56fd-4942-88a9-c948898e671d", - "start": { - "$date": "2020-12-03T23:00:09.000Z" - }, - "end": { - "$date": "2020-12-03T23:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b4bc3814-1e19-40af-ba81-9ecb1f91574c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-03T23:06:04.000Z" - }, - "end": { - "$date": "2020-12-04T00:05:30.000Z" - }, - "events": [ - { - "uuid": "f8a980e9-2e26-45fb-9d0a-48f0107f575a", - "start": { - "$date": "2020-12-03T23:06:04.000Z" - }, - "end": { - "$date": "2020-12-04T00:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "c9c12d6f-b426-4eeb-b848-607228641f1d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-03T23:15:06.000Z" - }, - "end": { - "$date": "2020-12-04T02:00:25.000Z" - }, - "events": [ - { - "uuid": "ff773cf0-c55e-440d-aca8-f1b629c94f84", - "start": { - "$date": "2020-12-03T23:15:06.000Z" - }, - "end": { - "$date": "2020-12-04T02:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "de212b8e-bc8d-48ff-bec7-1325ef1c81ca", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-03T23:27:00.000Z" - }, - "end": { - "$date": "2020-12-04T00:32:41.000Z" - }, - "events": [ - { - "uuid": "c0580489-9a3f-41b0-a38f-f128443351e7", - "start": { - "$date": "2020-12-03T23:27:00.000Z" - }, - "end": { - "$date": "2020-12-04T00:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e8d582dd-bb63-476f-8699-a413ed89bd3d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T00:45:16.000Z" - }, - "end": { - "$date": "2020-12-04T00:47:01.000Z" - }, - "events": [ - { - "uuid": "3f4ee0dc-93cc-426b-90c9-626bb7329a8f", - "start": { - "$date": "2020-12-04T00:45:16.000Z" - }, - "end": { - "$date": "2020-12-04T00:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1a9ee9c6-552b-44b3-96cc-463a568be52f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T00:49:36.000Z" - }, - "end": { - "$date": "2020-12-04T03:05:09.000Z" - }, - "events": [ - { - "uuid": "8ad8fdf1-c5c4-4cd1-a4bf-65ac25fa3302", - "start": { - "$date": "2020-12-04T00:49:36.000Z" - }, - "end": { - "$date": "2020-12-04T03:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0eb27604-d453-49cf-a363-0c4a69519d56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-04T01:09:02.000Z" - }, - "end": { - "$date": "2020-12-04T02:11:06.000Z" - }, - "events": [ - { - "uuid": "12314ff7-81b2-41e6-84fa-079351b88d4a", - "start": { - "$date": "2020-12-04T01:09:02.000Z" - }, - "end": { - "$date": "2020-12-04T02:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "58545ae1-6428-4918-8a2c-4d4419bb9ac1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-04T01:17:49.000Z" - }, - "end": { - "$date": "2020-12-04T01:56:59.000Z" - }, - "events": [ - { - "uuid": "1dc2bfb3-2ccf-4fd4-b7ae-e855ac78c2af", - "start": { - "$date": "2020-12-04T01:17:49.000Z" - }, - "end": { - "$date": "2020-12-04T01:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f91175e7-f887-440a-b6cc-3e9fa0f211e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-04T02:12:15.000Z" - }, - "end": { - "$date": "2020-12-04T02:50:31.000Z" - }, - "events": [ - { - "uuid": "e28f51eb-d2a0-4a70-a064-51859216c685", - "start": { - "$date": "2020-12-04T02:12:15.000Z" - }, - "end": { - "$date": "2020-12-04T02:50:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f3bbfef0-d173-45a4-aa7d-815744bef30d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-04T02:13:50.000Z" - }, - "end": { - "$date": "2020-12-04T02:17:11.000Z" - }, - "events": [ - { - "uuid": "1201bccd-3479-486e-9473-234adf01c4f8", - "start": { - "$date": "2020-12-04T02:13:50.000Z" - }, - "end": { - "$date": "2020-12-04T02:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c509a641-6f15-4d8c-a98c-42c8d3bd0d78", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-04T02:19:27.000Z" - }, - "end": { - "$date": "2020-12-04T02:49:50.000Z" - }, - "events": [ - { - "uuid": "853c0296-d2f1-4908-a15f-09e23a248bf6", - "start": { - "$date": "2020-12-04T02:19:27.000Z" - }, - "end": { - "$date": "2020-12-04T02:49:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "045e2f0f-fa62-4edd-aa5e-23e0cee936d8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-04T02:28:04.000Z" - }, - "end": { - "$date": "2020-12-04T04:05:47.000Z" - }, - "events": [ - { - "uuid": "918c26d4-53dd-454c-9a3d-a6d1cda0d80d", - "start": { - "$date": "2020-12-04T02:28:04.000Z" - }, - "end": { - "$date": "2020-12-04T04:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c55df751-972e-41b5-9511-c0b00257e28c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-04T03:08:13.000Z" - }, - "end": { - "$date": "2020-12-04T06:19:16.000Z" - }, - "events": [ - { - "uuid": "9a1a0f58-a098-4698-a56c-2fca4dad124e", - "start": { - "$date": "2020-12-04T03:08:13.000Z" - }, - "end": { - "$date": "2020-12-04T06:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d49658c2-c9df-4d89-af5f-bd528ca3dfd6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T03:28:48.000Z" - }, - "end": { - "$date": "2020-12-04T03:46:40.000Z" - }, - "events": [ - { - "uuid": "50538312-8723-4321-877f-44847665f94e", - "start": { - "$date": "2020-12-04T03:28:48.000Z" - }, - "end": { - "$date": "2020-12-04T03:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "effc5f88-cd7c-4243-83a3-c55ad49b8755", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-04T03:52:36.000Z" - }, - "end": { - "$date": "2020-12-04T04:09:47.000Z" - }, - "events": [ - { - "uuid": "2fc39c48-ca42-4f02-b087-6b9ecb451481", - "start": { - "$date": "2020-12-04T03:52:36.000Z" - }, - "end": { - "$date": "2020-12-04T04:09:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bc1fb096-b541-495e-a8ca-4fb506fc4c10", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T03:55:46.000Z" - }, - "end": { - "$date": "2020-12-04T03:57:26.000Z" - }, - "events": [ - { - "uuid": "573ab66c-eeac-4d53-92e8-882e952a2dc0", - "start": { - "$date": "2020-12-04T03:55:46.000Z" - }, - "end": { - "$date": "2020-12-04T03:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bca4e616-b595-42f1-b1ea-6056a3b2e2e7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-04T04:05:02.000Z" - }, - "end": { - "$date": "2020-12-04T06:03:15.000Z" - }, - "events": [ - { - "uuid": "1dc3799a-4691-4a71-a660-cd4b38e940c2", - "start": { - "$date": "2020-12-04T04:05:02.000Z" - }, - "end": { - "$date": "2020-12-04T06:03:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6110d436-bd91-45a8-adae-79916ccf97b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T04:37:41.000Z" - }, - "end": { - "$date": "2020-12-04T05:59:27.000Z" - }, - "events": [ - { - "uuid": "33457957-9a6b-40eb-862e-fb83d3b334c3", - "start": { - "$date": "2020-12-04T04:37:41.000Z" - }, - "end": { - "$date": "2020-12-04T05:04:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "200bf2a9-6087-4424-8edd-08069bcd349a", - "start": { - "$date": "2020-12-04T05:04:41.000Z" - }, - "end": { - "$date": "2020-12-04T05:05:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70d9b1c1-514b-4ca2-90a1-dee3fa0f56be", - "start": { - "$date": "2020-12-04T05:05:41.000Z" - }, - "end": { - "$date": "2020-12-04T05:59:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "daba0308-7766-4260-ae6b-65feede17bed", - "uuid": "b3c8e822-3962-43d1-8137-03066489e630", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-04T04:55:28.000Z" - }, - "end": { - "$date": "2020-12-04T05:38:09.000Z" - }, - "events": [ - { - "uuid": "d5e64f78-377d-438f-88fd-f8f4528316d0", - "start": { - "$date": "2020-12-04T04:55:28.000Z" - }, - "end": { - "$date": "2020-12-04T05:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9ff95e4-19d5-4dec-ab05-e7cb8744893f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-04T05:40:16.000Z" - }, - "end": { - "$date": "2020-12-04T05:47:20.000Z" - }, - "events": [ - { - "uuid": "0b67f000-6794-472e-ab5f-e4441e170fde", - "start": { - "$date": "2020-12-04T05:40:16.000Z" - }, - "end": { - "$date": "2020-12-04T05:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9c3ba1c9-ca82-4fc3-9710-6179c6de467e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T06:00:18.000Z" - }, - "end": { - "$date": "2020-12-04T06:47:09.000Z" - }, - "events": [ - { - "uuid": "7ba44a63-7b68-4836-8bf1-6afa4c91d84d", - "start": { - "$date": "2020-12-04T06:00:18.000Z" - }, - "end": { - "$date": "2020-12-04T06:47:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0f8f94d1-463e-4be2-9b28-9d8d1d5c6368", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-04T06:03:50.000Z" - }, - "end": { - "$date": "2020-12-04T06:05:27.000Z" - }, - "events": [ - { - "uuid": "dff42da2-a87e-4346-8d9b-9026f270b98f", - "start": { - "$date": "2020-12-04T06:03:50.000Z" - }, - "end": { - "$date": "2020-12-04T06:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7114d4f7-605d-4ac4-8392-90c1b549d307", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-04T06:06:05.000Z" - }, - "end": { - "$date": "2020-12-04T06:19:22.000Z" - }, - "events": [ - { - "uuid": "25db0b42-8a9e-430e-8965-e5a7e9bdd194", - "start": { - "$date": "2020-12-04T06:06:05.000Z" - }, - "end": { - "$date": "2020-12-04T06:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9dc56b6e-d803-47b5-af04-3e3e3e206b4d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-04T06:22:07.000Z" - }, - "end": { - "$date": "2020-12-04T06:36:37.000Z" - }, - "events": [ - { - "uuid": "38f34416-8501-47f0-b5b3-5e8c447d5c88", - "start": { - "$date": "2020-12-04T06:22:07.000Z" - }, - "end": { - "$date": "2020-12-04T06:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d37ac5f7-3753-4520-a2cb-d929755479bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-04T06:43:56.000Z" - }, - "end": { - "$date": "2020-12-04T08:11:00.000Z" - }, - "events": [ - { - "uuid": "57b70d36-00e2-4f66-b96d-880c50d0cb86", - "start": { - "$date": "2020-12-04T06:43:56.000Z" - }, - "end": { - "$date": "2020-12-04T08:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", - "uuid": "4a66c479-e6b3-4bce-aabe-fe87f95a6c60", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-04T07:52:21.000Z" - }, - "end": { - "$date": "2020-12-04T09:19:05.000Z" - }, - "events": [ - { - "uuid": "d9173f5d-a843-4d23-89fd-bd1d84939822", - "start": { - "$date": "2020-12-04T07:52:21.000Z" - }, - "end": { - "$date": "2020-12-04T09:19:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "a39b22f4-a445-429a-8f39-55744abee04c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-04T15:33:21.000Z" - }, - "end": { - "$date": "2020-12-04T17:29:56.000Z" - }, - "events": [ - { - "uuid": "a3491e48-3683-4060-a933-e4c87343b894", - "start": { - "$date": "2020-12-04T15:33:21.000Z" - }, - "end": { - "$date": "2020-12-04T17:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "76bc206a-dcf5-4d44-b383-f4032ced1cae", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-04T17:30:01.000Z" - }, - "end": { - "$date": "2020-12-04T17:56:18.000Z" - }, - "events": [ - { - "uuid": "05615300-83c1-4369-9736-fe327bfcf54c", - "start": { - "$date": "2020-12-04T17:30:01.000Z" - }, - "end": { - "$date": "2020-12-04T17:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "029ccb2a-27d1-4e1d-9971-5ea1f8175d7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-04T17:47:06.000Z" - }, - "end": { - "$date": "2020-12-04T19:18:07.000Z" - }, - "events": [ - { - "uuid": "6c9b2d7c-5409-4e54-a5d2-46dc031dd074", - "start": { - "$date": "2020-12-04T17:47:06.000Z" - }, - "end": { - "$date": "2020-12-04T19:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d09a3799-6102-446d-88eb-913908531e6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-04T19:15:55.000Z" - }, - "end": { - "$date": "2020-12-04T19:45:07.000Z" - }, - "events": [ - { - "uuid": "a6f45ea2-bfef-4abc-84b4-2861655d9218", - "start": { - "$date": "2020-12-04T19:15:55.000Z" - }, - "end": { - "$date": "2020-12-04T19:45:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d26c612f-de82-4f92-9e38-bda5ca7a0ac7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-04T19:16:08.000Z" - }, - "end": { - "$date": "2020-12-04T19:45:18.000Z" - }, - "events": [ - { - "uuid": "710b8542-f1a5-4b65-a526-0007004ce3b4", - "start": { - "$date": "2020-12-04T19:16:08.000Z" - }, - "end": { - "$date": "2020-12-04T19:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "bd67acf5-c784-411b-a8ad-fe70726cc13b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-04T19:18:16.000Z" - }, - "end": { - "$date": "2020-12-04T20:08:32.000Z" - }, - "events": [ - { - "uuid": "ac1dc14c-67a9-4cc0-90e5-6c2ec16a9668", - "start": { - "$date": "2020-12-04T19:18:16.000Z" - }, - "end": { - "$date": "2020-12-04T20:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd86b115-3d1b-4815-a3da-d36123ed6c6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-04T19:47:46.000Z" - }, - "end": { - "$date": "2020-12-04T20:07:44.000Z" - }, - "events": [ - { - "uuid": "d3824b45-a5b4-49b2-9db4-d1817c71f549", - "start": { - "$date": "2020-12-04T19:47:46.000Z" - }, - "end": { - "$date": "2020-12-04T20:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3489e9aa-cc09-472f-a681-910c72d83e62", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-04T19:47:44.000Z" - }, - "end": { - "$date": "2020-12-04T20:07:58.000Z" - }, - "events": [ - { - "uuid": "74d07ea0-6fe9-414c-9c3f-c9e16b3eb5bf", - "start": { - "$date": "2020-12-04T19:47:44.000Z" - }, - "end": { - "$date": "2020-12-04T20:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c0ca778-2bf0-4351-b891-10c4a5cf0855", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-04T20:10:52.000Z" - }, - "end": { - "$date": "2020-12-04T20:33:04.000Z" - }, - "events": [ - { - "uuid": "a420f4ec-7f0b-477f-b2a3-7297d6651955", - "start": { - "$date": "2020-12-04T20:10:52.000Z" - }, - "end": { - "$date": "2020-12-04T20:33:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00b99c8a-ae23-4806-8388-83442c8674c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-04T20:35:03.000Z" - }, - "end": { - "$date": "2020-12-04T20:57:28.000Z" - }, - "events": [ - { - "uuid": "8551bbf4-fb16-41e9-a126-931e81edd980", - "start": { - "$date": "2020-12-04T20:35:03.000Z" - }, - "end": { - "$date": "2020-12-04T20:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5868518b-7bce-4870-84a6-e0cb7fb186dd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-04T22:04:52.000Z" - }, - "end": { - "$date": "2020-12-05T00:06:27.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-04T22:04:52.000Z" - }, - "end": { - "$date": "2020-12-05T00:06:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "44b0e721-65ef-4873-9c84-6c2af8cdfbc5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-04T22:21:51.000Z" - }, - "end": { - "$date": "2020-12-04T23:50:29.000Z" - }, - "events": [ - { - "uuid": "ee78e953-5171-4aa3-89dd-88f8cb5fe1e3", - "start": { - "$date": "2020-12-04T22:21:51.000Z" - }, - "end": { - "$date": "2020-12-04T23:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4665b549-0e94-4d2b-8238-53fafb744826", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-04T23:22:04.000Z" - }, - "end": { - "$date": "2020-12-05T01:25:16.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-04T23:22:04.000Z" - }, - "end": { - "$date": "2020-12-05T01:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e9a2d3e-3352-4161-9afa-a7c7027399b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T01:10:45.000Z" - }, - "end": { - "$date": "2020-12-05T01:10:41.000Z" - }, - "events": [ - { - "uuid": "ad2e5eb1-4b93-47a2-8e7b-7e7a54544762", - "start": { - "$date": "2020-12-05T01:10:45.000Z" - }, - "end": { - "$date": "2020-12-05T01:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3804e1b-3ecd-426b-bf5b-d305eacae6da", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T01:16:09.000Z" - }, - "end": { - "$date": "2020-12-05T02:07:41.000Z" - }, - "events": [ - { - "uuid": "9fd8bc7b-1ee2-416d-92cb-87ab07372fd8", - "start": { - "$date": "2020-12-05T01:16:09.000Z" - }, - "end": { - "$date": "2020-12-05T02:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d012afb3-bded-4cc5-81f6-4f342adf12ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T01:16:13.000Z" - }, - "end": { - "$date": "2020-12-05T02:07:57.000Z" - }, - "events": [ - { - "uuid": "c5479abb-709d-4bbf-8f94-7e51d1983b29", - "start": { - "$date": "2020-12-05T01:16:13.000Z" - }, - "end": { - "$date": "2020-12-05T02:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "74276f3d-bacd-4951-b39c-478164f37646", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-05T01:27:08.000Z" - }, - "end": { - "$date": "2020-12-05T07:13:27.000Z" - }, - "events": [ - { - "uuid": "613caf10-ee19-452c-af19-9d0d4b035372", - "start": { - "$date": "2020-12-05T01:27:08.000Z" - }, - "end": { - "$date": "2020-12-05T01:29:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51da626b-12cd-4879-a3e5-7cedcbf9bcca", - "start": { - "$date": "2020-12-05T01:29:08.000Z" - }, - "end": { - "$date": "2020-12-05T01:31:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9bba970-dcf7-4509-9930-d4cff32dfb19", - "start": { - "$date": "2020-12-05T01:31:08.000Z" - }, - "end": { - "$date": "2020-12-05T01:57:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "076b9a18-8d8d-4361-b592-100c1d0e235c", - "start": { - "$date": "2020-12-05T01:57:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:07:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a5c0d0f2-9e2c-4bc2-a74e-fa2bc437ccb3", - "start": { - "$date": "2020-12-05T04:07:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:09:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea155a68-0557-47a7-a4e9-eb9abde96e2c", - "start": { - "$date": "2020-12-05T04:09:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:18:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df8841c2-152e-4365-8c35-5e89bf89aefa", - "start": { - "$date": "2020-12-05T04:18:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:20:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5165610d-79c7-4f37-a5e6-f4279c295512", - "start": { - "$date": "2020-12-05T04:20:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:38:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bceabbfb-8113-4d5f-a1de-4d9df5e47b45", - "start": { - "$date": "2020-12-05T04:38:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:40:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08d88d16-f4d4-486a-b5bf-cc64d982e109", - "start": { - "$date": "2020-12-05T04:40:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:42:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf8e4826-751b-4014-9dd7-a27a3b56c698", - "start": { - "$date": "2020-12-05T04:42:08.000Z" - }, - "end": { - "$date": "2020-12-05T04:44:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aee243b9-7404-4ef0-8830-15bd95eda137", - "start": { - "$date": "2020-12-05T04:44:08.000Z" - }, - "end": { - "$date": "2020-12-05T05:27:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45021017-06ac-4d49-a8d1-881930f914aa", - "start": { - "$date": "2020-12-05T05:27:08.000Z" - }, - "end": { - "$date": "2020-12-05T05:44:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b13159e-73d7-47d4-866c-0b06ee365c67", - "start": { - "$date": "2020-12-05T05:44:08.000Z" - }, - "end": { - "$date": "2020-12-05T05:46:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3370e72f-a6f3-4457-a782-b97805cd9f2d", - "start": { - "$date": "2020-12-05T05:46:08.000Z" - }, - "end": { - "$date": "2020-12-05T07:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "daba0308-7766-4260-ae6b-65feede17bed", - "uuid": "b8281918-0fb9-4724-8fd8-e242346faebf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-05T01:54:31.000Z" - }, - "end": { - "$date": "2020-12-05T02:52:22.000Z" - }, - "events": [ - { - "uuid": "ec716bc7-b78d-44c9-ac83-8e9ff0c708c9", - "start": { - "$date": "2020-12-05T01:54:31.000Z" - }, - "end": { - "$date": "2020-12-05T02:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "106ad938-aa95-4b7f-9680-c338ca982398", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T02:14:57.000Z" - }, - "end": { - "$date": "2020-12-05T02:52:43.000Z" - }, - "events": [ - { - "uuid": "3bc7317d-d365-47f3-9433-eb0afb4a8d7e", - "start": { - "$date": "2020-12-05T02:14:57.000Z" - }, - "end": { - "$date": "2020-12-05T02:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f901af1b-8362-443d-a021-c177e83aef4a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-05T02:52:32.000Z" - }, - "end": { - "$date": "2020-12-05T02:57:02.000Z" - }, - "events": [ - { - "uuid": "df38c498-6e99-47fa-8807-3e6ebb55854a", - "start": { - "$date": "2020-12-05T02:52:32.000Z" - }, - "end": { - "$date": "2020-12-05T02:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4912ed30-6b33-46b4-8f8b-78a6bedb849d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T02:15:00.000Z" - }, - "end": { - "$date": "2020-12-05T02:52:33.000Z" - }, - "events": [ - { - "uuid": "c36ac931-7e28-4782-93e4-770b3586a4c2", - "start": { - "$date": "2020-12-05T02:15:00.000Z" - }, - "end": { - "$date": "2020-12-05T02:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "e355aae2-0afd-42bc-bc71-9df6b30654d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T02:30:25.000Z" - }, - "end": { - "$date": "2020-12-05T02:39:56.000Z" - }, - "events": [ - { - "uuid": "746af55e-5c47-47f8-97aa-7c923216207c", - "start": { - "$date": "2020-12-05T02:30:25.000Z" - }, - "end": { - "$date": "2020-12-05T02:39:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e5b88b7-12f4-42ec-976d-b2d7f2391575", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T02:53:21.000Z" - }, - "end": { - "$date": "2020-12-05T03:01:00.000Z" - }, - "events": [ - { - "uuid": "5c71196c-bdcb-4455-bf18-4b16759339b4", - "start": { - "$date": "2020-12-05T02:53:21.000Z" - }, - "end": { - "$date": "2020-12-05T03:01:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "21bd8682-ab36-489b-b7f8-27515bcf894f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T02:56:11.000Z" - }, - "end": { - "$date": "2020-12-05T02:59:06.000Z" - }, - "events": [ - { - "uuid": "7b7a1256-0454-4d12-915c-ca3753f17a8e", - "start": { - "$date": "2020-12-05T02:56:11.000Z" - }, - "end": { - "$date": "2020-12-05T02:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fa14e4e7-9b01-4609-8998-8d1230013062", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-05T02:56:57.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:41.000Z" - }, - "events": [ - { - "uuid": "4b693f79-4382-4020-906c-5264898f4418", - "start": { - "$date": "2020-12-05T02:56:57.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba1338cd-9cfe-47ec-8967-5d6bae97c5a2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T02:57:16.000Z" - }, - "end": { - "$date": "2020-12-05T03:51:26.000Z" - }, - "events": [ - { - "uuid": "fe7f2143-f1ad-45d2-835e-973cbd235adf", - "start": { - "$date": "2020-12-05T02:57:16.000Z" - }, - "end": { - "$date": "2020-12-05T03:51:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1638bfbd-067b-43cc-955a-cfc9d852cfe8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-05T05:01:47.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:56.000Z" - }, - "events": [ - { - "uuid": "74180a25-7518-49c1-bf5e-28add0989a0a", - "start": { - "$date": "2020-12-05T05:01:47.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "2b9b250b-93cc-4907-9709-09a88decf837", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T02:59:27.000Z" - }, - "end": { - "$date": "2020-12-05T03:18:42.000Z" - }, - "events": [ - { - "uuid": "5e37a312-53a3-410d-94d2-007cd3ea4f0f", - "start": { - "$date": "2020-12-05T02:59:27.000Z" - }, - "end": { - "$date": "2020-12-05T03:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "659f66f2-dac5-45b7-bdee-d2a2e66f85f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T02:59:41.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:32.000Z" - }, - "events": [ - { - "uuid": "8b39aaf0-bcde-485f-ad7a-43aaf6d5e72c", - "start": { - "$date": "2020-12-05T02:59:41.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b350874c-4ff2-4826-840c-db986d3bf1ae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T03:01:04.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:25.000Z" - }, - "events": [ - { - "uuid": "470d675b-b019-4a67-9cf5-5c0005fb620f", - "start": { - "$date": "2020-12-05T03:01:04.000Z" - }, - "end": { - "$date": "2020-12-05T05:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "bb2546d2-8017-434f-95cd-68e1b2066b34", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T03:19:08.000Z" - }, - "end": { - "$date": "2020-12-05T06:44:18.000Z" - }, - "events": [ - { - "uuid": "57547315-9eb8-400d-9092-e97602dbc8d4", - "start": { - "$date": "2020-12-05T03:19:08.000Z" - }, - "end": { - "$date": "2020-12-05T06:44:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08250624-538d-490f-8d5b-8ec26fe49dbe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T04:20:31.000Z" - }, - "end": { - "$date": "2020-12-05T05:00:44.000Z" - }, - "events": [ - { - "uuid": "a4ad2b27-34d5-4982-a124-75faa0b0925b", - "start": { - "$date": "2020-12-05T04:20:31.000Z" - }, - "end": { - "$date": "2020-12-05T05:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a602d4cc-3c91-446b-8eaa-d69abab7b524", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T05:07:14.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:37.000Z" - }, - "events": [ - { - "uuid": "0896d717-752f-485c-b0d3-242b337664a4", - "start": { - "$date": "2020-12-05T05:07:14.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d11efef-2fa1-40db-b6eb-8f0ae5d20005", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-05T05:07:06.000Z" - }, - "end": { - "$date": "2020-12-05T05:44:25.000Z" - }, - "events": [ - { - "uuid": "4048e6c5-4aa8-41f9-9650-4357ce53758a", - "start": { - "$date": "2020-12-05T05:07:06.000Z" - }, - "end": { - "$date": "2020-12-05T05:44:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "664e8a15-5709-48fd-9c29-eefaa4991ead", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-05T05:02:53.000Z" - }, - "end": { - "$date": "2020-12-05T07:54:22.000Z" - }, - "events": [ - { - "uuid": "6ec4985f-564f-423f-a9ec-b937857fa306", - "start": { - "$date": "2020-12-05T05:02:53.000Z" - }, - "end": { - "$date": "2020-12-05T07:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60fc864d-a6db-4bd4-a932-6dc8d8f23459", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T05:07:48.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:29.000Z" - }, - "events": [ - { - "uuid": "ead3aac1-0b99-47c2-8796-547175a4009d", - "start": { - "$date": "2020-12-05T05:07:48.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46d8f005-6b29-4344-a38f-93d9625c5287", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-05T05:07:11.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:36.000Z" - }, - "events": [ - { - "uuid": "00b43086-de5b-4b6d-bd33-89880b463605", - "start": { - "$date": "2020-12-05T05:07:11.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7982a125-4599-4793-a7c5-bde8d4ac454e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T05:07:16.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:39.000Z" - }, - "events": [ - { - "uuid": "124da182-8843-4d45-b50d-a13194376894", - "start": { - "$date": "2020-12-05T05:07:16.000Z" - }, - "end": { - "$date": "2020-12-05T05:42:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cbbeb078-da23-4131-a8f9-8a6ed39446eb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-05T05:03:36.000Z" - }, - "end": { - "$date": "2020-12-05T07:54:19.000Z" - }, - "events": [ - { - "uuid": "983d1f91-9060-45f7-aca2-65ddb8b4fe7d", - "start": { - "$date": "2020-12-05T05:03:36.000Z" - }, - "end": { - "$date": "2020-12-05T07:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32d92cf2-1e15-4e17-9ed9-9ca5e426fa67", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T06:03:47.000Z" - }, - "end": { - "$date": "2020-12-05T06:34:08.000Z" - }, - "events": [ - { - "uuid": "1501d3f7-51ca-41d0-93e6-b72cebb35237", - "start": { - "$date": "2020-12-05T06:03:47.000Z" - }, - "end": { - "$date": "2020-12-05T06:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b88e6aa8-f6e3-41ca-98d7-8940832be3c3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-05T05:44:37.000Z" - }, - "end": { - "$date": "2020-12-05T05:48:56.000Z" - }, - "events": [ - { - "uuid": "0f44796f-48e8-441d-9885-1443ba06b8e0", - "start": { - "$date": "2020-12-05T05:44:37.000Z" - }, - "end": { - "$date": "2020-12-05T05:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "104c96de-9832-4248-9bf2-8d28b326fc82", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T05:44:38.000Z" - }, - "end": { - "$date": "2020-12-05T05:48:55.000Z" - }, - "events": [ - { - "uuid": "6b6755ce-30d0-420c-b1c0-e659db28ee8b", - "start": { - "$date": "2020-12-05T05:44:38.000Z" - }, - "end": { - "$date": "2020-12-05T05:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57d23501-d35a-4553-a641-53e455134ea2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-05T07:17:58.000Z" - }, - "end": { - "$date": "2020-12-05T07:19:29.000Z" - }, - "events": [ - { - "uuid": "940c16e4-0b09-431b-83f4-5e07fb8aa0a6", - "start": { - "$date": "2020-12-05T07:17:58.000Z" - }, - "end": { - "$date": "2020-12-05T07:19:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "706f1c6d-5d17-4c9a-8440-4dd216a7a618", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-05T05:49:32.000Z" - }, - "end": { - "$date": "2020-12-05T05:53:37.000Z" - }, - "events": [ - { - "uuid": "2ea24ce3-13ef-4d9d-a490-e9c32519acc7", - "start": { - "$date": "2020-12-05T05:49:32.000Z" - }, - "end": { - "$date": "2020-12-05T05:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9756789-f813-4bcf-b7fc-0ec0a3fcaefc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T05:49:33.000Z" - }, - "end": { - "$date": "2020-12-05T05:53:37.000Z" - }, - "events": [ - { - "uuid": "d241862d-6192-4d31-9ece-b5bb6291dc35", - "start": { - "$date": "2020-12-05T05:49:33.000Z" - }, - "end": { - "$date": "2020-12-05T05:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cacd3866-b77d-4261-8524-913f167b20fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-05T05:53:42.000Z" - }, - "end": { - "$date": "2020-12-05T08:21:16.000Z" - }, - "events": [ - { - "uuid": "db757708-0897-41af-a3f0-fa986f1a9a85", - "start": { - "$date": "2020-12-05T05:53:42.000Z" - }, - "end": { - "$date": "2020-12-05T08:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7304908-478d-4078-af9d-ca941b19504b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-05T06:03:43.000Z" - }, - "end": { - "$date": "2020-12-05T06:34:15.000Z" - }, - "events": [ - { - "uuid": "80bc4694-8899-4965-989c-1dfe5099f655", - "start": { - "$date": "2020-12-05T06:03:43.000Z" - }, - "end": { - "$date": "2020-12-05T06:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7940d61c-c1f8-438f-b55f-178c6d5880c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T06:03:45.000Z" - }, - "end": { - "$date": "2020-12-05T06:34:11.000Z" - }, - "events": [ - { - "uuid": "b6f2f1df-6db5-4b29-8a64-da80999eaa79", - "start": { - "$date": "2020-12-05T06:03:45.000Z" - }, - "end": { - "$date": "2020-12-05T06:34:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "de274461-a5e8-477a-be99-463232477b34", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-05T06:10:17.000Z" - }, - "end": { - "$date": "2020-12-05T07:54:42.000Z" - }, - "events": [ - { - "uuid": "10a27869-e50e-4d9b-908c-f7e58cfbc464", - "start": { - "$date": "2020-12-05T06:10:17.000Z" - }, - "end": { - "$date": "2020-12-05T07:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1513aeb7-799a-48b7-a3b3-f2d54b14871e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T06:38:33.000Z" - }, - "end": { - "$date": "2020-12-05T07:17:59.000Z" - }, - "events": [ - { - "uuid": "4c469c62-9333-46da-99ba-70de3ba971b8", - "start": { - "$date": "2020-12-05T06:38:33.000Z" - }, - "end": { - "$date": "2020-12-05T07:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34d42c2c-a2c8-461d-85fb-1bf94eadc825", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-05T07:17:49.000Z" - }, - "end": { - "$date": "2020-12-05T07:18:34.000Z" - }, - "events": [ - { - "uuid": "a7a13233-2469-4f5f-9fe7-75239bc147c5", - "start": { - "$date": "2020-12-05T07:17:49.000Z" - }, - "end": { - "$date": "2020-12-05T07:18:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1a5ab4c-381f-4555-a968-3568bfc0c306", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-05T06:38:37.000Z" - }, - "end": { - "$date": "2020-12-05T07:17:55.000Z" - }, - "events": [ - { - "uuid": "1effe8c6-0c26-44bc-81cd-bde243a41c72", - "start": { - "$date": "2020-12-05T06:38:37.000Z" - }, - "end": { - "$date": "2020-12-05T07:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "93988d1b-cb3d-4524-bc68-09104043471b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T06:51:14.000Z" - }, - "end": { - "$date": "2020-12-05T06:52:49.000Z" - }, - "events": [ - { - "uuid": "84f3cc19-2751-4662-853d-a8fd9b8fe6e2", - "start": { - "$date": "2020-12-05T06:51:14.000Z" - }, - "end": { - "$date": "2020-12-05T06:52:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "63c7e3f1-a928-4efb-bbcd-60ce7039c60d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T07:16:17.000Z" - }, - "end": { - "$date": "2020-12-05T07:19:27.000Z" - }, - "events": [ - { - "uuid": "17b62b8a-768c-49ca-99cf-4735375f1237", - "start": { - "$date": "2020-12-05T07:16:17.000Z" - }, - "end": { - "$date": "2020-12-05T07:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "172e333a-de08-4f12-b776-4f1cd018e280", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-05T07:21:49.000Z" - }, - "end": { - "$date": "2020-12-05T07:46:20.000Z" - }, - "events": [ - { - "uuid": "60acfbde-1002-4583-8c59-42b20c47e5f6", - "start": { - "$date": "2020-12-05T07:21:49.000Z" - }, - "end": { - "$date": "2020-12-05T07:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "17bf78d8-2178-46a7-8a4f-412af9b69f13", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T07:33:44.000Z" - }, - "end": { - "$date": "2020-12-05T08:48:24.000Z" - }, - "events": [ - { - "uuid": "122c02a1-2410-4a57-894f-122d8c109c68", - "start": { - "$date": "2020-12-05T07:33:44.000Z" - }, - "end": { - "$date": "2020-12-05T08:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", - "uuid": "8e83949b-362f-4ca0-b1ac-555221bfb42c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-05T07:40:10.000Z" - }, - "end": { - "$date": "2020-12-05T09:36:01.000Z" - }, - "events": [ - { - "uuid": "22ccbe7c-61c2-4b42-9274-9c790aa35b38", - "start": { - "$date": "2020-12-05T07:40:10.000Z" - }, - "end": { - "$date": "2020-12-05T09:36:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "58df73b4-c24f-435a-966b-bd2cc6ad6d2c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T17:24:18.000Z" - }, - "end": { - "$date": "2020-12-05T18:28:15.000Z" - }, - "events": [ - { - "uuid": "198b7ea1-ca16-4de0-a8bc-4d3690b59b9a", - "start": { - "$date": "2020-12-05T17:24:18.000Z" - }, - "end": { - "$date": "2020-12-05T18:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e99128f6-576f-463f-b705-34ef5e864226", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-05T18:08:52.000Z" - }, - "end": { - "$date": "2020-12-05T19:05:32.000Z" - }, - "events": [ - { - "uuid": "1c8bd951-84b0-46bd-be5d-0a4035b9a395", - "start": { - "$date": "2020-12-05T18:08:52.000Z" - }, - "end": { - "$date": "2020-12-05T19:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "01ca82df-3c2b-4c3b-aaef-d86749b8c551", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-05T19:34:28.000Z" - }, - "end": { - "$date": "2020-12-05T21:35:39.000Z" - }, - "events": [ - { - "uuid": "cebde4e3-f75e-4664-9214-52940e6a955c", - "start": { - "$date": "2020-12-05T19:34:28.000Z" - }, - "end": { - "$date": "2020-12-05T21:10:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1141aedc-d02a-465d-b228-fda175d6b067", - "start": { - "$date": "2020-12-05T21:10:28.000Z" - }, - "end": { - "$date": "2020-12-05T21:20:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92292988-f4b8-4e79-a97f-d9a590e9789e", - "start": { - "$date": "2020-12-05T21:20:28.000Z" - }, - "end": { - "$date": "2020-12-05T21:35:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "100a86c1-5b52-4a9e-9aeb-fc9d95da6de8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-05T20:44:33.000Z" - }, - "end": { - "$date": "2020-12-06T03:47:57.000Z" - }, - "events": [ - { - "uuid": "69edad74-23b2-4dc5-ad23-0833a9ba594e", - "start": { - "$date": "2020-12-05T20:44:33.000Z" - }, - "end": { - "$date": "2020-12-05T22:59:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1584534-91d0-4e18-a36b-6862e4ef3bdd", - "start": { - "$date": "2020-12-05T22:59:33.000Z" - }, - "end": { - "$date": "2020-12-05T23:45:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2f6534c5-dc61-4d48-abce-607216d6b52d", - "start": { - "$date": "2020-12-05T23:45:33.000Z" - }, - "end": { - "$date": "2020-12-05T23:55:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "938e6315-2a46-418b-bf09-6a2f462b6954", - "start": { - "$date": "2020-12-05T23:55:33.000Z" - }, - "end": { - "$date": "2020-12-06T02:51:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69bf85c1-b3cf-4e34-99fc-d4cb4b1831d5", - "start": { - "$date": "2020-12-06T02:51:33.000Z" - }, - "end": { - "$date": "2020-12-06T02:53:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a419eb5-3ff7-494b-a29a-0e193ea16ba6", - "start": { - "$date": "2020-12-06T02:53:33.000Z" - }, - "end": { - "$date": "2020-12-06T03:26:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e5b5e80-3f42-4f09-a70d-71ec17b51a62", - "start": { - "$date": "2020-12-06T03:26:33.000Z" - }, - "end": { - "$date": "2020-12-06T03:28:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "435ad084-7cf9-4f1b-a104-a7c8f9d2ceb6", - "start": { - "$date": "2020-12-06T03:28:33.000Z" - }, - "end": { - "$date": "2020-12-06T03:47:57.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2c4ccfa6-cd38-4826-84cc-23fb92215946", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-05T21:32:23.000Z" - }, - "end": { - "$date": "2020-12-05T22:45:01.000Z" - }, - "events": [ - { - "uuid": "66bc65e5-3085-438d-aa0d-0c7a5c457d54", - "start": { - "$date": "2020-12-05T21:32:23.000Z" - }, - "end": { - "$date": "2020-12-05T22:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "55c7c7a7-1dca-464d-a009-6cf52366254f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-05T21:32:27.000Z" - }, - "end": { - "$date": "2020-12-05T22:32:00.000Z" - }, - "events": [ - { - "uuid": "606e9251-99d5-4016-9bae-446faa73a9ce", - "start": { - "$date": "2020-12-05T21:32:27.000Z" - }, - "end": { - "$date": "2020-12-05T22:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "aef97c8f-d1d2-419d-8d3e-b0cfec21c49e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T21:52:00.000Z" - }, - "end": { - "$date": "2020-12-05T22:34:06.000Z" - }, - "events": [ - { - "uuid": "ca7f0531-d638-4e44-8f9d-0897bed78c66", - "start": { - "$date": "2020-12-05T21:52:00.000Z" - }, - "end": { - "$date": "2020-12-05T22:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0347fe0b-5ce5-4721-8d22-65024ef44f5f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T22:09:46.000Z" - }, - "end": { - "$date": "2020-12-05T22:24:18.000Z" - }, - "events": [ - { - "uuid": "eee345bd-02d9-4422-a6cb-a4fd07e69417", - "start": { - "$date": "2020-12-05T22:09:46.000Z" - }, - "end": { - "$date": "2020-12-05T22:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1624940d-3d3a-44cf-982b-04749720c27c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T22:28:02.000Z" - }, - "end": { - "$date": "2020-12-05T22:53:31.000Z" - }, - "events": [ - { - "uuid": "917cfc3c-732b-45dd-be8e-ab0c9903bc4c", - "start": { - "$date": "2020-12-05T22:28:02.000Z" - }, - "end": { - "$date": "2020-12-05T22:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "68d63a23-9650-4861-a0ce-6a147217aac2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-05T22:28:18.000Z" - }, - "end": { - "$date": "2020-12-05T23:35:01.000Z" - }, - "events": [ - { - "uuid": "20979cbb-0f24-4975-9dab-ae83e024211d", - "start": { - "$date": "2020-12-05T22:28:18.000Z" - }, - "end": { - "$date": "2020-12-05T23:23:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6002ed2d-d010-413f-9d19-6ae102f2fdfc", - "start": { - "$date": "2020-12-05T23:23:18.000Z" - }, - "end": { - "$date": "2020-12-05T23:28:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e57f75cc-06de-4b02-be19-51201450d72e", - "start": { - "$date": "2020-12-05T23:28:18.000Z" - }, - "end": { - "$date": "2020-12-05T23:35:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "618d5599-2ef9-4f78-8270-e180263ce700", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T22:34:26.000Z" - }, - "end": { - "$date": "2020-12-05T22:37:19.000Z" - }, - "events": [ - { - "uuid": "a65bde7b-d23f-45f3-9ba8-417b7fbfb00e", - "start": { - "$date": "2020-12-05T22:34:26.000Z" - }, - "end": { - "$date": "2020-12-05T22:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "af5ff20a-e43b-4f6a-8539-c74811b25551", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-05T22:37:33.000Z" - }, - "end": { - "$date": "2020-12-05T23:06:49.000Z" - }, - "events": [ - { - "uuid": "72e5016c-d148-4fb6-8c7b-67119f7a8016", - "start": { - "$date": "2020-12-05T22:37:33.000Z" - }, - "end": { - "$date": "2020-12-05T23:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2982eda0-1982-47b3-809d-5ebefa0dcae5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-05T23:41:41.000Z" - }, - "end": { - "$date": "2020-12-06T00:06:53.000Z" - }, - "events": [ - { - "uuid": "86419f75-7aa9-4d5a-98aa-96f6ca8805e0", - "start": { - "$date": "2020-12-05T23:41:41.000Z" - }, - "end": { - "$date": "2020-12-06T00:06:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", - "uuid": "c829034a-3084-483c-bb53-e896f910b580", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-06T00:05:52.000Z" - }, - "end": { - "$date": "2020-12-06T00:14:08.000Z" - }, - "events": [ - { - "uuid": "24dffa5e-123e-4224-8e33-6994e00bec63", - "start": { - "$date": "2020-12-06T00:05:52.000Z" - }, - "end": { - "$date": "2020-12-06T00:14:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", - "uuid": "cf9ba063-2c48-4852-9933-7458ba2464c9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-06T00:16:45.000Z" - }, - "end": { - "$date": "2020-12-06T00:19:51.000Z" - }, - "events": [ - { - "uuid": "85c60ba4-0ef8-4270-bfa6-1b3c83f05863", - "start": { - "$date": "2020-12-06T00:16:45.000Z" - }, - "end": { - "$date": "2020-12-06T00:19:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", - "uuid": "9507b13b-1737-4659-a0bc-046205b3c1ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-06T00:20:00.000Z" - }, - "end": { - "$date": "2020-12-06T02:56:41.000Z" - }, - "events": [ - { - "uuid": "efa2a9ca-bf2e-4f4d-9c4d-a22e305cfd85", - "start": { - "$date": "2020-12-06T00:20:00.000Z" - }, - "end": { - "$date": "2020-12-06T02:56:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "a6dde931-87da-4641-8f28-0986f8bd3467", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T00:38:01.000Z" - }, - "end": { - "$date": "2020-12-06T00:40:11.000Z" - }, - "events": [ - { - "uuid": "6851f848-dc6e-40b5-aa9d-9176c5cf759c", - "start": { - "$date": "2020-12-06T00:38:01.000Z" - }, - "end": { - "$date": "2020-12-06T00:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "b06caba3-1eac-4ae4-ae27-5496d2e68a31", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T00:46:38.000Z" - }, - "end": { - "$date": "2020-12-06T02:07:35.000Z" - }, - "events": [ - { - "uuid": "7524a904-705c-4f32-a6b0-f7ad6d895c12", - "start": { - "$date": "2020-12-06T00:46:38.000Z" - }, - "end": { - "$date": "2020-12-06T02:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "36a7efde-97ba-45e5-a5b0-73f68aea27ca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T01:30:21.000Z" - }, - "end": { - "$date": "2020-12-06T02:19:34.000Z" - }, - "events": [ - { - "uuid": "820c5119-1dac-4164-9f59-7b1e6b367ba0", - "start": { - "$date": "2020-12-06T01:30:21.000Z" - }, - "end": { - "$date": "2020-12-06T02:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7d8ee338-206c-4d1f-8063-b20ecde46423", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T02:21:43.000Z" - }, - "end": { - "$date": "2020-12-06T06:24:33.000Z" - }, - "events": [ - { - "uuid": "effcbb43-bb32-4efe-8e53-fa9563e296e5", - "start": { - "$date": "2020-12-06T02:21:43.000Z" - }, - "end": { - "$date": "2020-12-06T05:23:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae54caa8-ec65-42db-9f59-50eec8dcc717", - "start": { - "$date": "2020-12-06T05:23:43.000Z" - }, - "end": { - "$date": "2020-12-06T05:27:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "77263303-bd1f-4aa1-a87c-8424ffcfcf76", - "start": { - "$date": "2020-12-06T05:27:43.000Z" - }, - "end": { - "$date": "2020-12-06T05:38:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e977b85-3edb-4d44-a059-5257d4db55d5", - "start": { - "$date": "2020-12-06T05:38:43.000Z" - }, - "end": { - "$date": "2020-12-06T06:24:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b77ecc62-cf96-4870-86b1-26d6bdb712ea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-06T03:14:32.000Z" - }, - "end": { - "$date": "2020-12-06T03:46:40.000Z" - }, - "events": [ - { - "uuid": "bae54199-5c3b-4401-ab11-afac558aa23c", - "start": { - "$date": "2020-12-06T03:14:32.000Z" - }, - "end": { - "$date": "2020-12-06T03:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c319291f-0279-4144-8b3b-2e4e86cca1dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T03:53:48.000Z" - }, - "end": { - "$date": "2020-12-06T04:44:42.000Z" - }, - "events": [ - { - "uuid": "ef70b2b0-4373-4b07-972b-2c16bb623b47", - "start": { - "$date": "2020-12-06T03:53:48.000Z" - }, - "end": { - "$date": "2020-12-06T04:44:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", - "uuid": "95843686-dabf-47d9-a41c-4024351ad5ab", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-06T04:02:58.000Z" - }, - "end": { - "$date": "2020-12-06T05:04:11.000Z" - }, - "events": [ - { - "uuid": "3b55c224-ee54-4999-a9a5-d7191a05b830", - "start": { - "$date": "2020-12-06T04:02:58.000Z" - }, - "end": { - "$date": "2020-12-06T05:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f1ed9a24-062d-46b6-b7d2-313be28d280d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-06T04:36:06.000Z" - }, - "end": { - "$date": "2020-12-06T07:07:12.000Z" - }, - "events": [ - { - "uuid": "677bfd09-299d-4a36-8ab0-99fc87ae718a", - "start": { - "$date": "2020-12-06T04:36:06.000Z" - }, - "end": { - "$date": "2020-12-06T07:07:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1141ce05-1da3-42be-9e29-c2efebe8770d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T04:45:35.000Z" - }, - "end": { - "$date": "2020-12-06T04:52:37.000Z" - }, - "events": [ - { - "uuid": "743d762c-8278-4273-80d8-89f27084ab36", - "start": { - "$date": "2020-12-06T04:45:35.000Z" - }, - "end": { - "$date": "2020-12-06T04:52:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd8544a6-7683-446d-896d-801032de613a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-06T04:57:29.000Z" - }, - "end": { - "$date": "2020-12-06T08:25:07.000Z" - }, - "events": [ - { - "uuid": "72079f5f-c254-4a4c-b9c0-faed2d433f80", - "start": { - "$date": "2020-12-06T04:57:29.000Z" - }, - "end": { - "$date": "2020-12-06T08:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7d4d5254-e835-4112-9657-16d39c05435f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-06T05:24:49.000Z" - }, - "end": { - "$date": "2020-12-06T08:25:04.000Z" - }, - "events": [ - { - "uuid": "0ef4e9a0-959c-4db1-a695-3fcc08bab9ea", - "start": { - "$date": "2020-12-06T05:24:49.000Z" - }, - "end": { - "$date": "2020-12-06T08:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4283b48d-f3f6-47e3-816c-6bc75b11dfee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-06T05:33:16.000Z" - }, - "end": { - "$date": "2020-12-06T07:49:13.000Z" - }, - "events": [ - { - "uuid": "462d54fb-4f3a-4d21-b6f1-e78c6e176101", - "start": { - "$date": "2020-12-06T05:33:16.000Z" - }, - "end": { - "$date": "2020-12-06T06:35:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb4c525e-89d2-4219-bd2e-7042c3765de8", - "start": { - "$date": "2020-12-06T06:35:16.000Z" - }, - "end": { - "$date": "2020-12-06T07:49:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36c49817-195b-4daf-ac59-5befcb06ff6b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-06T06:10:20.000Z" - }, - "end": { - "$date": "2020-12-06T06:26:28.000Z" - }, - "events": [ - { - "uuid": "53b3671e-30cb-491e-b9c0-e7d47ea0f1f2", - "start": { - "$date": "2020-12-06T06:10:20.000Z" - }, - "end": { - "$date": "2020-12-06T06:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b98d43e-0ffd-46c5-85f5-b8bce7a6d6bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-06T06:30:06.000Z" - }, - "end": { - "$date": "2020-12-06T06:43:05.000Z" - }, - "events": [ - { - "uuid": "d5738382-9138-4220-825e-4c3097cddcf2", - "start": { - "$date": "2020-12-06T06:30:06.000Z" - }, - "end": { - "$date": "2020-12-06T06:43:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fa576fb-4a11-407a-b9c8-0a993a3a74dd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-06T06:46:46.000Z" - }, - "end": { - "$date": "2020-12-06T07:04:37.000Z" - }, - "events": [ - { - "uuid": "c3a9ade2-40ea-452d-ab64-938791d43eda", - "start": { - "$date": "2020-12-06T06:46:46.000Z" - }, - "end": { - "$date": "2020-12-06T07:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f275bd11-cfeb-42ca-8002-408a11ed1721", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T06:51:27.000Z" - }, - "end": { - "$date": "2020-12-06T08:14:57.000Z" - }, - "events": [ - { - "uuid": "4e46e06a-8f4b-433d-b94c-309959bb45cb", - "start": { - "$date": "2020-12-06T06:51:27.000Z" - }, - "end": { - "$date": "2020-12-06T08:14:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1914078c-70fb-4ee3-83ac-ea860158846f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-06T07:14:26.000Z" - }, - "end": { - "$date": "2020-12-06T07:22:19.000Z" - }, - "events": [ - { - "uuid": "29fe462b-c5b6-45a7-beef-90ede2aa8f7b", - "start": { - "$date": "2020-12-06T07:14:26.000Z" - }, - "end": { - "$date": "2020-12-06T07:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ec7d5057-9e89-4f3c-bc8a-89555c2b7ff5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T08:16:44.000Z" - }, - "end": { - "$date": "2020-12-06T09:06:28.000Z" - }, - "events": [ - { - "uuid": "5266a7e6-7307-4960-b55e-71014d46ddeb", - "start": { - "$date": "2020-12-06T08:16:44.000Z" - }, - "end": { - "$date": "2020-12-06T08:53:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f958dd7-07da-482a-9ac5-6d98f402fbfb", - "start": { - "$date": "2020-12-06T08:53:44.000Z" - }, - "end": { - "$date": "2020-12-06T08:56:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e1158c1b-ade1-4357-847a-55c7f3c9501d", - "start": { - "$date": "2020-12-06T08:56:44.000Z" - }, - "end": { - "$date": "2020-12-06T09:06:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "acc75ae5-7c71-4e01-92b1-5d2e1f1e5b2d", - "uuid": "2b06281d-096a-4725-a4af-de4b4b827f94", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-06T08:28:34.000Z" - }, - "end": { - "$date": "2020-12-06T10:26:40.000Z" - }, - "events": [ - { - "uuid": "e3a0b756-49f5-42fb-8400-100e34e05748", - "start": { - "$date": "2020-12-06T08:28:34.000Z" - }, - "end": { - "$date": "2020-12-06T10:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8e64ab76-f1fc-441c-a0b5-39d1bd7faa7a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T09:18:24.000Z" - }, - "end": { - "$date": "2020-12-06T09:19:44.000Z" - }, - "events": [ - { - "uuid": "39711f65-e0bb-4ed7-99a4-dc16cbcf69ed", - "start": { - "$date": "2020-12-06T09:18:24.000Z" - }, - "end": { - "$date": "2020-12-06T09:19:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "402a1f9b-f7f1-4852-9225-e77e69747a51", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-06T09:20:10.000Z" - }, - "end": { - "$date": "2020-12-06T09:30:35.000Z" - }, - "events": [ - { - "uuid": "81710559-3093-4561-bc72-debff356ab17", - "start": { - "$date": "2020-12-06T09:20:10.000Z" - }, - "end": { - "$date": "2020-12-06T09:30:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4f479a31-ab00-45c2-949e-6d777144edd5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-06T15:34:41.000Z" - }, - "end": { - "$date": "2020-12-06T16:00:58.000Z" - }, - "events": [ - { - "uuid": "0125e912-4e7f-4f55-af4c-0c7404b3f54d", - "start": { - "$date": "2020-12-06T15:34:41.000Z" - }, - "end": { - "$date": "2020-12-06T16:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "bdef81a8-bbce-4dc3-aa23-075284c57faa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-06T16:28:22.000Z" - }, - "end": { - "$date": "2020-12-06T19:22:08.000Z" - }, - "events": [ - { - "uuid": "022a0f97-7050-4f7b-ba41-70e7f597a77d", - "start": { - "$date": "2020-12-06T16:28:22.000Z" - }, - "end": { - "$date": "2020-12-06T19:13:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "38f6feb8-9f1c-4146-be38-bdc4a87385c3", - "start": { - "$date": "2020-12-06T19:13:22.000Z" - }, - "end": { - "$date": "2020-12-06T19:22:08.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e5cc46cf-4f8e-4529-8d9e-5792b48c92f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T17:20:43.000Z" - }, - "end": { - "$date": "2020-12-06T19:04:54.000Z" - }, - "events": [ - { - "uuid": "e255f420-c506-4352-afa0-15bb17a461be", - "start": { - "$date": "2020-12-06T17:20:43.000Z" - }, - "end": { - "$date": "2020-12-06T19:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62736fdc-c8b4-4c3a-aaa0-242a0c4b7664", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-06T17:27:28.000Z" - }, - "end": { - "$date": "2020-12-06T17:59:41.000Z" - }, - "events": [ - { - "uuid": "e4122a18-c335-4fd8-8624-f9dbf739418b", - "start": { - "$date": "2020-12-06T17:27:28.000Z" - }, - "end": { - "$date": "2020-12-06T17:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8d21bdf9-0644-4bea-b74a-198d18bb7320", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-06T18:11:06.000Z" - }, - "end": { - "$date": "2020-12-06T19:21:13.000Z" - }, - "events": [ - { - "uuid": "ea22f6d1-bb2e-4064-9e2c-d17fdec574bf", - "start": { - "$date": "2020-12-06T18:11:06.000Z" - }, - "end": { - "$date": "2020-12-06T19:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "a8726d38-274d-4450-82f7-9ed2e87a4d66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T20:04:14.000Z" - }, - "end": { - "$date": "2020-12-06T20:28:20.000Z" - }, - "events": [ - { - "uuid": "785992ff-53e0-48e0-9a4b-d4f5863aea85", - "start": { - "$date": "2020-12-06T20:04:14.000Z" - }, - "end": { - "$date": "2020-12-06T20:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "743459ff-9a0d-44db-a98a-f084935a7abb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-06T20:12:28.000Z" - }, - "end": { - "$date": "2020-12-06T20:42:46.000Z" - }, - "events": [ - { - "uuid": "35e93a23-2f89-4e03-b38a-6c8e2905dc20", - "start": { - "$date": "2020-12-06T20:12:28.000Z" - }, - "end": { - "$date": "2020-12-06T20:42:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "77ebd0a8-59e0-4547-b8de-ac2d0ca2ac4f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T20:42:41.000Z" - }, - "end": { - "$date": "2020-12-06T21:16:03.000Z" - }, - "events": [ - { - "uuid": "a4e545d5-b362-4702-a9b4-383d7ef4c6d8", - "start": { - "$date": "2020-12-06T20:42:41.000Z" - }, - "end": { - "$date": "2020-12-06T21:16:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "20c5b381-1462-4d5e-97a8-bcfaf750ab17", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-06T20:52:11.000Z" - }, - "end": { - "$date": "2020-12-06T21:28:02.000Z" - }, - "events": [ - { - "uuid": "e69c3545-5847-4e75-a03d-265f0d4a55cc", - "start": { - "$date": "2020-12-06T20:52:11.000Z" - }, - "end": { - "$date": "2020-12-06T21:28:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "660d7d57-4d70-4e14-bcf9-22e06fb080c8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-06T21:12:41.000Z" - }, - "end": { - "$date": "2020-12-07T00:11:16.000Z" - }, - "events": [ - { - "uuid": "db3df78f-a42d-4ca8-8e3f-0ce5b62b4892", - "start": { - "$date": "2020-12-06T21:12:41.000Z" - }, - "end": { - "$date": "2020-12-07T00:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "28344c65-dd09-401c-8ce0-dd213e753aca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T21:44:34.000Z" - }, - "end": { - "$date": "2020-12-06T22:06:50.000Z" - }, - "events": [ - { - "uuid": "eec08de4-4ed0-4496-8a5e-77089545e780", - "start": { - "$date": "2020-12-06T21:44:34.000Z" - }, - "end": { - "$date": "2020-12-06T22:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "988084e5-127e-4d56-94fb-5616aeb5b1da", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-06T22:48:33.000Z" - }, - "end": { - "$date": "2020-12-06T23:43:02.000Z" - }, - "events": [ - { - "uuid": "74b83313-6d05-4432-b7dc-4ae94246131e", - "start": { - "$date": "2020-12-06T22:48:33.000Z" - }, - "end": { - "$date": "2020-12-06T23:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "c4b29af2-5fc5-40b2-8616-419972963a5a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-06T22:21:47.000Z" - }, - "end": { - "$date": "2020-12-07T00:06:51.000Z" - }, - "events": [ - { - "uuid": "580706a7-2ac0-449b-8371-7d62787d8284", - "start": { - "$date": "2020-12-06T22:21:47.000Z" - }, - "end": { - "$date": "2020-12-07T00:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "85be06b2-4ec9-4acf-aac5-ec14fa02bbeb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-06T23:14:16.000Z" - }, - "end": { - "$date": "2020-12-07T00:57:43.000Z" - }, - "events": [ - { - "uuid": "ca16bebc-1adc-4b5a-97ff-02ee94b80148", - "start": { - "$date": "2020-12-06T23:14:16.000Z" - }, - "end": { - "$date": "2020-12-07T00:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "3eefd349-dfae-447d-9817-764f552e4d3b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-06T23:36:11.000Z" - }, - "end": { - "$date": "2020-12-07T02:32:49.000Z" - }, - "events": [ - { - "uuid": "008bf4f9-fd89-479e-b794-66c7cfce2480", - "start": { - "$date": "2020-12-06T23:36:11.000Z" - }, - "end": { - "$date": "2020-12-07T00:02:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a49eec8-99d5-4bf5-8700-7358ddce6055", - "start": { - "$date": "2020-12-07T00:02:11.000Z" - }, - "end": { - "$date": "2020-12-07T00:30:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7721cdbd-2397-46f2-be43-9c8a378c5fd8", - "start": { - "$date": "2020-12-07T00:30:11.000Z" - }, - "end": { - "$date": "2020-12-07T02:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "d36d5cd8-8da8-4917-aa93-53f14fa15670", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-06T23:49:33.000Z" - }, - "end": { - "$date": "2020-12-06T23:54:58.000Z" - }, - "events": [ - { - "uuid": "915bb716-6e20-411f-b6e5-96bc22bd3fb8", - "start": { - "$date": "2020-12-06T23:49:33.000Z" - }, - "end": { - "$date": "2020-12-06T23:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "55980ca5-27b4-4510-bee9-e1106a58e0fb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-06T23:55:38.000Z" - }, - "end": { - "$date": "2020-12-06T23:56:58.000Z" - }, - "events": [ - { - "uuid": "daf0cf53-934b-4fbf-92e0-0a5262d366c7", - "start": { - "$date": "2020-12-06T23:55:38.000Z" - }, - "end": { - "$date": "2020-12-06T23:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "8972e95c-15fb-4429-8214-a5d24f6334c3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-06T23:58:48.000Z" - }, - "end": { - "$date": "2020-12-07T00:07:12.000Z" - }, - "events": [ - { - "uuid": "7a89121c-a227-4cf1-826e-05fc41b9862e", - "start": { - "$date": "2020-12-06T23:58:48.000Z" - }, - "end": { - "$date": "2020-12-07T00:07:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "8b8708b7-9f72-4b5f-861d-534528179f0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-06T23:59:02.000Z" - }, - "end": { - "$date": "2020-12-07T00:00:31.000Z" - }, - "events": [ - { - "uuid": "b679cbf2-9543-469b-bfdb-0b3a182fff62", - "start": { - "$date": "2020-12-06T23:59:02.000Z" - }, - "end": { - "$date": "2020-12-07T00:00:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e74fd3f1-f85b-4944-84f3-ac1151cbd283", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T00:07:23.000Z" - }, - "end": { - "$date": "2020-12-07T00:09:28.000Z" - }, - "events": [ - { - "uuid": "1ed4c5d7-8f6c-48fd-96ea-93efef2c356a", - "start": { - "$date": "2020-12-07T00:07:23.000Z" - }, - "end": { - "$date": "2020-12-07T00:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "f71b898e-cf9f-4c98-bad9-41e6c35a839e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T00:09:58.000Z" - }, - "end": { - "$date": "2020-12-07T00:12:18.000Z" - }, - "events": [ - { - "uuid": "a60b03bb-ab69-4b3b-9180-9f6a99c0b3fe", - "start": { - "$date": "2020-12-07T00:09:58.000Z" - }, - "end": { - "$date": "2020-12-07T00:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e544c371-dd7f-4773-bae0-732077c78f64", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2020-12-07T00:15:52.000Z" - }, - "end": { - "$date": "2020-12-07T00:24:18.000Z" - }, - "events": [ - { - "uuid": "2bd3dbfd-3ca2-4ece-a66c-88fe584b6644", - "start": { - "$date": "2020-12-07T00:15:52.000Z" - }, - "end": { - "$date": "2020-12-07T00:24:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e4c38d92-b69b-4bf7-8c0c-6e4fdebd5f1e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T00:17:34.000Z" - }, - "end": { - "$date": "2020-12-07T00:20:29.000Z" - }, - "events": [ - { - "uuid": "2b2adc1e-1a28-435d-ac8a-82eaa18bf8f7", - "start": { - "$date": "2020-12-07T00:17:34.000Z" - }, - "end": { - "$date": "2020-12-07T00:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "c894ea5d-29f6-46a0-ae89-920709bc4c63", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T00:21:14.000Z" - }, - "end": { - "$date": "2020-12-07T00:23:54.000Z" - }, - "events": [ - { - "uuid": "9069d569-eeb1-4587-85d4-30bae391fb86", - "start": { - "$date": "2020-12-07T00:21:14.000Z" - }, - "end": { - "$date": "2020-12-07T00:23:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e294e151-da1e-493c-b769-4ce60ad351b1", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2020-12-07T00:25:05.000Z" - }, - "end": { - "$date": "2020-12-07T02:02:26.000Z" - }, - "events": [ - { - "uuid": "27760de3-ddce-44f1-b754-593acc5dc7cb", - "start": { - "$date": "2020-12-07T00:25:05.000Z" - }, - "end": { - "$date": "2020-12-07T02:02:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e7bcf191-c516-45b7-a6d6-f7f614926ed0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T00:24:39.000Z" - }, - "end": { - "$date": "2020-12-07T02:02:10.000Z" - }, - "events": [ - { - "uuid": "24ff9c6c-6bd9-4b08-865e-03e7071a833a", - "start": { - "$date": "2020-12-07T00:24:39.000Z" - }, - "end": { - "$date": "2020-12-07T02:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5fd4861d-fd98-41e7-970f-aef08b4e2527", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-07T01:27:34.000Z" - }, - "end": { - "$date": "2020-12-07T02:11:51.000Z" - }, - "events": [ - { - "uuid": "84410f0e-5183-43b2-90da-b3a7604383b6", - "start": { - "$date": "2020-12-07T01:27:34.000Z" - }, - "end": { - "$date": "2020-12-07T02:11:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "2ec3013e-42e3-49b1-89b6-23b51e06a08c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T01:42:28.000Z" - }, - "end": { - "$date": "2020-12-07T01:45:53.000Z" - }, - "events": [ - { - "uuid": "95867242-9c3f-4866-85c4-7ef736c17500", - "start": { - "$date": "2020-12-07T01:42:28.000Z" - }, - "end": { - "$date": "2020-12-07T01:45:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c7aafe52-44f8-4960-9377-6bd642ab234c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T01:43:02.000Z" - }, - "end": { - "$date": "2020-12-07T01:49:38.000Z" - }, - "events": [ - { - "uuid": "56480324-7bce-40a2-b583-2bbb2517a43e", - "start": { - "$date": "2020-12-07T01:43:02.000Z" - }, - "end": { - "$date": "2020-12-07T01:49:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4eb08006-6f09-4433-ab9a-2abebad9eb93", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T01:51:48.000Z" - }, - "end": { - "$date": "2020-12-07T01:54:04.000Z" - }, - "events": [ - { - "uuid": "6fba231c-0c9f-4c48-b229-f0860a0ccb9d", - "start": { - "$date": "2020-12-07T01:51:48.000Z" - }, - "end": { - "$date": "2020-12-07T01:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "01eca40c-659e-4a74-ab16-15866293cd0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-07T02:01:39.000Z" - }, - "end": { - "$date": "2020-12-07T02:46:42.000Z" - }, - "events": [ - { - "uuid": "5246b943-7917-40ca-8f54-748bfbda5811", - "start": { - "$date": "2020-12-07T02:01:39.000Z" - }, - "end": { - "$date": "2020-12-07T02:46:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "052a6d99-1988-4071-abbb-e844c9151b1b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T02:03:31.000Z" - }, - "end": { - "$date": "2020-12-07T04:36:05.000Z" - }, - "events": [ - { - "uuid": "b277cf99-bf81-4fa6-a346-0955d06eb0cd", - "start": { - "$date": "2020-12-07T02:03:31.000Z" - }, - "end": { - "$date": "2020-12-07T04:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "84c8a3b7-aff5-45d6-bcd5-98d5d0647d26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T02:42:06.000Z" - }, - "end": { - "$date": "2020-12-07T03:47:46.000Z" - }, - "events": [ - { - "uuid": "d342e6ed-717a-408e-817d-12627ecee4d6", - "start": { - "$date": "2020-12-07T02:42:06.000Z" - }, - "end": { - "$date": "2020-12-07T03:47:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e3bf795d-21e1-45ce-8e2b-3b0296ceca85", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-07T03:18:58.000Z" - }, - "end": { - "$date": "2020-12-07T03:39:43.000Z" - }, - "events": [ - { - "uuid": "a5550ca8-1c24-4a43-be6b-7f619ae769b1", - "start": { - "$date": "2020-12-07T03:18:58.000Z" - }, - "end": { - "$date": "2020-12-07T03:39:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68d2398f-0170-4067-abb5-2d6b58cc5d77", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T03:52:57.000Z" - }, - "end": { - "$date": "2020-12-07T04:18:31.000Z" - }, - "events": [ - { - "uuid": "e9b724e0-22f2-419e-8d58-bece9b172783", - "start": { - "$date": "2020-12-07T03:52:57.000Z" - }, - "end": { - "$date": "2020-12-07T04:18:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "53d97c6d-9546-41cc-94e4-a6db190c7d79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-07T03:59:31.000Z" - }, - "end": { - "$date": "2020-12-07T04:04:37.000Z" - }, - "events": [ - { - "uuid": "486b4681-ce45-4aa2-b0c3-d1fb0ffd5444", - "start": { - "$date": "2020-12-07T03:59:31.000Z" - }, - "end": { - "$date": "2020-12-07T04:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d81ca5b5-c0d7-4ce9-94e0-42ed93ba51f3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-07T04:05:02.000Z" - }, - "end": { - "$date": "2020-12-07T04:46:55.000Z" - }, - "events": [ - { - "uuid": "1a7ecad4-b9d4-4e86-8b35-8aa7f74a4b8f", - "start": { - "$date": "2020-12-07T04:05:02.000Z" - }, - "end": { - "$date": "2020-12-07T04:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "daba0308-7766-4260-ae6b-65feede17bed", - "uuid": "bd18008b-0190-4725-8604-6a311d190fb5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T04:40:04.000Z" - }, - "end": { - "$date": "2020-12-07T05:35:09.000Z" - }, - "events": [ - { - "uuid": "0b81803b-d5ff-4b6e-82ea-5d106757f12b", - "start": { - "$date": "2020-12-07T04:40:04.000Z" - }, - "end": { - "$date": "2020-12-07T05:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "1c61d55b-b433-4a00-8de9-20657b4e6dd0", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2020-12-07T04:45:15.000Z" - }, - "end": { - "$date": "2020-12-07T06:18:57.000Z" - }, - "events": [ - { - "uuid": "b77a9515-404e-4d7f-aad7-b9c703fcc8e1", - "start": { - "$date": "2020-12-07T04:45:15.000Z" - }, - "end": { - "$date": "2020-12-07T06:18:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "d41cfd97-43d6-4150-8d43-6781839ffc07", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-07T04:52:11.000Z" - }, - "end": { - "$date": "2020-12-07T05:36:42.000Z" - }, - "events": [ - { - "uuid": "09900430-e04e-4540-9961-c7ceb02de585", - "start": { - "$date": "2020-12-07T04:52:11.000Z" - }, - "end": { - "$date": "2020-12-07T05:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eace85ea-ac09-4709-89eb-607ee95ab824", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T04:57:54.000Z" - }, - "end": { - "$date": "2020-12-07T05:25:26.000Z" - }, - "events": [ - { - "uuid": "f3e32d64-09e4-4b5d-8f0a-c5f6264435de", - "start": { - "$date": "2020-12-07T04:57:54.000Z" - }, - "end": { - "$date": "2020-12-07T05:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5cf1bd1d-c752-4ab8-87a8-cec4363492d1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-07T04:57:57.000Z" - }, - "end": { - "$date": "2020-12-07T05:24:52.000Z" - }, - "events": [ - { - "uuid": "ec90ad10-f7b6-4416-96eb-88ec86730dd9", - "start": { - "$date": "2020-12-07T04:57:57.000Z" - }, - "end": { - "$date": "2020-12-07T05:24:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b62a464e-93f7-49fc-80f6-68eae8f00d42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-07T05:05:37.000Z" - }, - "end": { - "$date": "2020-12-07T05:26:14.000Z" - }, - "events": [ - { - "uuid": "5a8da9a7-50ca-4dc9-812d-4d177f599f50", - "start": { - "$date": "2020-12-07T05:05:37.000Z" - }, - "end": { - "$date": "2020-12-07T05:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f8455df0-f75e-412f-8973-aa4ca9d2b7b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-07T05:32:08.000Z" - }, - "end": { - "$date": "2020-12-07T05:42:20.000Z" - }, - "events": [ - { - "uuid": "85180b8f-6ccd-46f5-8dc2-acfedd563e09", - "start": { - "$date": "2020-12-07T05:32:08.000Z" - }, - "end": { - "$date": "2020-12-07T05:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4db600d0-6f31-4e39-beb3-86a6ce9423e7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-07T06:27:04.000Z" - }, - "end": { - "$date": "2020-12-07T06:52:00.000Z" - }, - "events": [ - { - "uuid": "bc54bf8b-5b26-41bf-b8b3-7fcd5765a96f", - "start": { - "$date": "2020-12-07T06:27:04.000Z" - }, - "end": { - "$date": "2020-12-07T06:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d79c0b4-48e7-40ae-9e95-2d1725fce23c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T06:39:36.000Z" - }, - "end": { - "$date": "2020-12-07T07:01:31.000Z" - }, - "events": [ - { - "uuid": "e045c560-9c06-4b79-8539-6df2650c02fd", - "start": { - "$date": "2020-12-07T06:39:36.000Z" - }, - "end": { - "$date": "2020-12-07T07:01:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d7bc239-9281-438a-b970-719c5714810e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T07:04:02.000Z" - }, - "end": { - "$date": "2020-12-07T07:28:03.000Z" - }, - "events": [ - { - "uuid": "75e2c342-d84d-460b-9f4b-6a54e1259624", - "start": { - "$date": "2020-12-07T07:04:02.000Z" - }, - "end": { - "$date": "2020-12-07T07:28:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a4a5b395-4758-420f-9e5b-f1df2a84c512", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T15:45:16.000Z" - }, - "end": { - "$date": "2020-12-07T16:31:58.000Z" - }, - "events": [ - { - "uuid": "ad5574c2-c04f-4ffc-9311-cb2b401f7f36", - "start": { - "$date": "2020-12-07T15:45:16.000Z" - }, - "end": { - "$date": "2020-12-07T16:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "a7b03e0e-f9c5-4b44-b5f6-107468a494f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-07T15:49:32.000Z" - }, - "end": { - "$date": "2020-12-07T18:39:01.000Z" - }, - "events": [ - { - "uuid": "4ac1a28a-cfa7-4a45-8fe9-a8e13cb4f627", - "start": { - "$date": "2020-12-07T15:49:32.000Z" - }, - "end": { - "$date": "2020-12-07T17:00:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3a5ac2bd-cca3-4d6c-86cb-11210700e498", - "start": { - "$date": "2020-12-07T17:00:32.000Z" - }, - "end": { - "$date": "2020-12-07T17:03:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "560ad1ba-a3fd-4e3c-b323-a0e7545deefb", - "start": { - "$date": "2020-12-07T17:03:32.000Z" - }, - "end": { - "$date": "2020-12-07T18:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3551580b-ae1d-4a7e-aeeb-a6050f5f02b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T17:58:40.000Z" - }, - "end": { - "$date": "2020-12-07T18:16:26.000Z" - }, - "events": [ - { - "uuid": "9ccd515b-af00-4b60-a03b-0f80e46885b1", - "start": { - "$date": "2020-12-07T17:58:40.000Z" - }, - "end": { - "$date": "2020-12-07T18:16:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "565ed823-8911-49f4-96b5-6cd419f6578e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T18:18:45.000Z" - }, - "end": { - "$date": "2020-12-07T18:42:16.000Z" - }, - "events": [ - { - "uuid": "d003d6a0-498a-436a-867e-717d7b8012a6", - "start": { - "$date": "2020-12-07T18:18:45.000Z" - }, - "end": { - "$date": "2020-12-07T18:42:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "33e58fec-3984-45ce-ad4f-47df22792700", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-07T18:46:52.000Z" - }, - "end": { - "$date": "2020-12-07T19:18:08.000Z" - }, - "events": [ - { - "uuid": "e4f5f919-c78c-44ff-9f16-0ef4504cd80b", - "start": { - "$date": "2020-12-07T18:46:52.000Z" - }, - "end": { - "$date": "2020-12-07T19:18:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "304f9086-477a-4901-9167-68d8c6d7a962", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T20:52:53.000Z" - }, - "end": { - "$date": "2020-12-07T21:32:01.000Z" - }, - "events": [ - { - "uuid": "72e2f5bc-1d3c-4ced-bc73-59ae979e0138", - "start": { - "$date": "2020-12-07T20:52:53.000Z" - }, - "end": { - "$date": "2020-12-07T21:32:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1e58206c-08ab-4172-b1da-8716e973bd30", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T21:33:16.000Z" - }, - "end": { - "$date": "2020-12-07T21:35:51.000Z" - }, - "events": [ - { - "uuid": "96bcf0ed-401f-44d4-81e5-64147fe6ac61", - "start": { - "$date": "2020-12-07T21:33:16.000Z" - }, - "end": { - "$date": "2020-12-07T21:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "4fadae20-2686-4778-8ca0-cede1fd859e6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T21:36:06.000Z" - }, - "end": { - "$date": "2020-12-07T21:37:36.000Z" - }, - "events": [ - { - "uuid": "d1e5f9cf-568c-4985-8540-40d69c92a6f4", - "start": { - "$date": "2020-12-07T21:36:06.000Z" - }, - "end": { - "$date": "2020-12-07T21:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "0dfd0adc-c0c1-4771-8673-259775137b99", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T21:38:11.000Z" - }, - "end": { - "$date": "2020-12-07T21:39:57.000Z" - }, - "events": [ - { - "uuid": "9315d567-41d5-49ab-b510-28701be8a3e7", - "start": { - "$date": "2020-12-07T21:38:11.000Z" - }, - "end": { - "$date": "2020-12-07T21:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "cf549da5-5274-4cbb-818c-d4cc5a8476eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-07T21:40:36.000Z" - }, - "end": { - "$date": "2020-12-07T23:26:01.000Z" - }, - "events": [ - { - "uuid": "c48a81df-bd7d-4c79-bcb5-2a89a64cfac9", - "start": { - "$date": "2020-12-07T21:40:36.000Z" - }, - "end": { - "$date": "2020-12-07T22:02:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bfe1033-2b48-4266-9b18-2d2f5f510e9a", - "start": { - "$date": "2020-12-07T22:02:36.000Z" - }, - "end": { - "$date": "2020-12-07T22:05:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0084a62-0689-4b19-befa-c59392f3f3cf", - "start": { - "$date": "2020-12-07T22:05:36.000Z" - }, - "end": { - "$date": "2020-12-07T23:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "66fc969c-4979-4711-a71f-603c8e0ffa58", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T21:42:12.000Z" - }, - "end": { - "$date": "2020-12-07T21:43:52.000Z" - }, - "events": [ - { - "uuid": "054a7f85-8b7b-4702-a17b-2a5625d264f9", - "start": { - "$date": "2020-12-07T21:42:12.000Z" - }, - "end": { - "$date": "2020-12-07T21:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "929d2207-b115-4938-8613-ba65eed1c920", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T21:49:23.000Z" - }, - "end": { - "$date": "2020-12-07T21:51:04.000Z" - }, - "events": [ - { - "uuid": "b3ce4fa9-dfa5-419b-9968-50f679a6d5d5", - "start": { - "$date": "2020-12-07T21:49:23.000Z" - }, - "end": { - "$date": "2020-12-07T21:51:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "8a4cf84e-5c52-4071-8cd8-49e38bb2a7b2", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2020-12-07T21:50:49.000Z" - }, - "end": { - "$date": "2020-12-07T21:52:20.000Z" - }, - "events": [ - { - "uuid": "a612057e-2cca-461f-b2a7-f7aa73774415", - "start": { - "$date": "2020-12-07T21:50:49.000Z" - }, - "end": { - "$date": "2020-12-07T21:52:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", - "uuid": "53828205-bf31-42fe-a3fb-e69f8070d403", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2020-12-07T21:53:01.000Z" - }, - "end": { - "$date": "2020-12-07T23:08:06.000Z" - }, - "events": [ - { - "uuid": "17e3ae11-c2b6-4a2c-bd4e-8dbb9329c0e1", - "start": { - "$date": "2020-12-07T21:53:01.000Z" - }, - "end": { - "$date": "2020-12-07T23:08:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e030aba4-9ad6-4be9-a6d8-f0b0c475fa2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-07T21:54:03.000Z" - }, - "end": { - "$date": "2020-12-07T21:55:59.000Z" - }, - "events": [ - { - "uuid": "6ae5f169-457a-460e-994a-6099f8c8e7c4", - "start": { - "$date": "2020-12-07T21:54:03.000Z" - }, - "end": { - "$date": "2020-12-07T21:55:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "420bc564-90f8-4bce-9e5a-04c641074370", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T21:57:12.000Z" - }, - "end": { - "$date": "2020-12-07T22:30:13.000Z" - }, - "events": [ - { - "uuid": "36b6d453-a216-4ed9-8d9d-585bbd071fef", - "start": { - "$date": "2020-12-07T21:57:12.000Z" - }, - "end": { - "$date": "2020-12-07T22:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "67910386-dac1-41f3-babf-a7ea317bc1bb", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-07T21:59:12.000Z" - }, - "end": { - "$date": "2020-12-07T22:48:45.000Z" - }, - "events": [ - { - "uuid": "8a3b40f2-d409-4dcb-967a-d8c1fbde3ab7", - "start": { - "$date": "2020-12-07T21:59:12.000Z" - }, - "end": { - "$date": "2020-12-07T22:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dd3b18d1-3a86-4bb9-9b31-48f6163dbcbf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-07T22:18:06.000Z" - }, - "end": { - "$date": "2020-12-08T00:46:43.000Z" - }, - "events": [ - { - "uuid": "4851e31e-e417-4338-9e7c-2ce001067838", - "start": { - "$date": "2020-12-07T22:18:06.000Z" - }, - "end": { - "$date": "2020-12-08T00:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0236553d-7bc9-45d3-bbf4-bc2e3e5d0a1f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-07T22:34:32.000Z" - }, - "end": { - "$date": "2020-12-07T23:04:30.000Z" - }, - "events": [ - { - "uuid": "725f0e83-3c49-414f-a729-b106d0aa2cb0", - "start": { - "$date": "2020-12-07T22:34:32.000Z" - }, - "end": { - "$date": "2020-12-07T23:04:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b0543c3c-61f5-44f4-8a53-0b73a68ba78e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-07T22:53:49.000Z" - }, - "end": { - "$date": "2020-12-07T23:47:10.000Z" - }, - "events": [ - { - "uuid": "638cf53f-179c-4fdd-b394-c995e54c26f9", - "start": { - "$date": "2020-12-07T22:53:49.000Z" - }, - "end": { - "$date": "2020-12-07T23:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5bb4ad9e-163b-437f-bf50-f3fe305a7f7e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-07T23:28:32.000Z" - }, - "end": { - "$date": "2020-12-08T01:35:01.000Z" - }, - "events": [ - { - "uuid": "26ef276a-8ffc-440d-8fbc-c6f5d95e618f", - "start": { - "$date": "2020-12-07T23:28:32.000Z" - }, - "end": { - "$date": "2020-12-08T01:35:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "81f6b648-27f1-472a-8a75-5970a73f273b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-07T23:43:40.000Z" - }, - "end": { - "$date": "2020-12-08T04:45:55.000Z" - }, - "events": [ - { - "uuid": "99d4a65e-cc97-4862-ade7-7d151916de90", - "start": { - "$date": "2020-12-07T23:43:40.000Z" - }, - "end": { - "$date": "2020-12-08T02:44:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d5869ff-c042-4f2b-b417-c1714e3726ed", - "start": { - "$date": "2020-12-08T02:44:40.000Z" - }, - "end": { - "$date": "2020-12-08T02:48:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7c65b3e-030e-4e0a-a23e-87bbcc8e04ec", - "start": { - "$date": "2020-12-08T02:48:40.000Z" - }, - "end": { - "$date": "2020-12-08T04:45:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "fa7f0ccc-5276-4632-ac1d-82160299dd01", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T23:54:43.000Z" - }, - "end": { - "$date": "2020-12-07T23:56:39.000Z" - }, - "events": [ - { - "uuid": "ac413066-a5c1-478d-8007-ae26d7ec937c", - "start": { - "$date": "2020-12-07T23:54:43.000Z" - }, - "end": { - "$date": "2020-12-07T23:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "8e6baebc-332c-49b4-aa14-a9597af13ca0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-07T23:59:03.000Z" - }, - "end": { - "$date": "2020-12-08T00:00:19.000Z" - }, - "events": [ - { - "uuid": "47a41333-c02e-4f59-9a3d-9721a0628404", - "start": { - "$date": "2020-12-07T23:59:03.000Z" - }, - "end": { - "$date": "2020-12-08T00:00:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "63f7a713-78ff-4b8b-81a1-fc75601f1e63", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-08T00:42:56.000Z" - }, - "end": { - "$date": "2020-12-08T00:46:57.000Z" - }, - "events": [ - { - "uuid": "8e69fc61-f6df-4892-be79-8c2c81972536", - "start": { - "$date": "2020-12-08T00:42:56.000Z" - }, - "end": { - "$date": "2020-12-08T00:46:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "e252effd-254d-4441-a871-7e8964067771", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T00:44:03.000Z" - }, - "end": { - "$date": "2020-12-08T02:21:25.000Z" - }, - "events": [ - { - "uuid": "f52a18e8-87f9-4118-b333-1e804a9fdd0f", - "start": { - "$date": "2020-12-08T00:44:03.000Z" - }, - "end": { - "$date": "2020-12-08T02:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cb7a475f-ac32-475f-b9e0-c4476e9f3131", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-08T02:32:14.000Z" - }, - "end": { - "$date": "2020-12-08T02:42:07.000Z" - }, - "events": [ - { - "uuid": "58468c24-a1c2-47f4-8b41-c5d443b3ccb0", - "start": { - "$date": "2020-12-08T02:32:14.000Z" - }, - "end": { - "$date": "2020-12-08T02:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0b719a89-2ea8-42c9-b205-e6e942fe5509", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-08T02:36:21.000Z" - }, - "end": { - "$date": "2020-12-08T02:50:38.000Z" - }, - "events": [ - { - "uuid": "4c9563d7-7812-4b8d-b526-fcfd436b61b8", - "start": { - "$date": "2020-12-08T02:36:21.000Z" - }, - "end": { - "$date": "2020-12-08T02:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bec891d2-63b0-45a9-8d58-a961d3396f3e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-08T02:51:21.000Z" - }, - "end": { - "$date": "2020-12-08T03:57:28.000Z" - }, - "events": [ - { - "uuid": "c5a76565-875c-49d1-8c4d-80aef17f1acf", - "start": { - "$date": "2020-12-08T02:51:21.000Z" - }, - "end": { - "$date": "2020-12-08T03:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "deac3a1a-0a56-4df2-bc6a-647a6b3d8fc7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T03:26:38.000Z" - }, - "end": { - "$date": "2020-12-08T04:09:19.000Z" - }, - "events": [ - { - "uuid": "67756412-c14a-4c89-a742-5a11d5929731", - "start": { - "$date": "2020-12-08T03:26:38.000Z" - }, - "end": { - "$date": "2020-12-08T04:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ed3d3c12-beb9-4564-8972-9e57140ef3cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-08T03:48:05.000Z" - }, - "end": { - "$date": "2020-12-08T04:19:23.000Z" - }, - "events": [ - { - "uuid": "b55264d1-4a6e-4688-a1f0-c6c469c99f63", - "start": { - "$date": "2020-12-08T03:48:05.000Z" - }, - "end": { - "$date": "2020-12-08T04:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "179cd55b-360e-4c4a-9554-cee8d59c9737", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-08T04:02:48.000Z" - }, - "end": { - "$date": "2020-12-08T04:50:32.000Z" - }, - "events": [ - { - "uuid": "906bef11-ed52-4c04-87d2-701f0a63d16a", - "start": { - "$date": "2020-12-08T04:02:48.000Z" - }, - "end": { - "$date": "2020-12-08T04:50:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5614807b-a137-4bcb-ac19-04a950c8cb99", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-08T04:10:51.000Z" - }, - "end": { - "$date": "2020-12-08T05:27:17.000Z" - }, - "events": [ - { - "uuid": "20ca49ec-48be-494f-9ac0-63b9e8799046", - "start": { - "$date": "2020-12-08T04:10:51.000Z" - }, - "end": { - "$date": "2020-12-08T05:27:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c421f10a-a702-4c0b-9cd1-388c76bbc993", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-08T04:17:59.000Z" - }, - "end": { - "$date": "2020-12-08T05:06:36.000Z" - }, - "events": [ - { - "uuid": "bf251b9b-c9c2-4220-a3e8-ac13e5bbda11", - "start": { - "$date": "2020-12-08T04:17:59.000Z" - }, - "end": { - "$date": "2020-12-08T05:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4209ecfd-0c93-4ba7-9e89-a4cf10f0b8ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T04:22:30.000Z" - }, - "end": { - "$date": "2020-12-08T04:48:25.000Z" - }, - "events": [ - { - "uuid": "26485aab-557f-4319-8173-33062769fd14", - "start": { - "$date": "2020-12-08T04:22:30.000Z" - }, - "end": { - "$date": "2020-12-08T04:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86f034d1-743b-46eb-aaa6-dd03d80bc4dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T04:50:36.000Z" - }, - "end": { - "$date": "2020-12-08T05:17:19.000Z" - }, - "events": [ - { - "uuid": "744c1470-5b64-4ac5-95c8-3d90559eb64a", - "start": { - "$date": "2020-12-08T04:50:36.000Z" - }, - "end": { - "$date": "2020-12-08T05:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2c14196-4513-44ea-a106-6000767c02f3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-08T05:06:05.000Z" - }, - "end": { - "$date": "2020-12-08T05:32:50.000Z" - }, - "events": [ - { - "uuid": "e6542715-d0cd-4fdd-94ba-feb3e9d76bb5", - "start": { - "$date": "2020-12-08T05:06:05.000Z" - }, - "end": { - "$date": "2020-12-08T05:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1bf1314-e02d-41f9-b7ab-3f81329312b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T05:19:47.000Z" - }, - "end": { - "$date": "2020-12-08T05:38:19.000Z" - }, - "events": [ - { - "uuid": "152b4506-f53f-49f1-bc49-fa90e799ef7c", - "start": { - "$date": "2020-12-08T05:19:47.000Z" - }, - "end": { - "$date": "2020-12-08T05:38:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "086495d1-52ad-44a9-b188-d8cb870d57af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-08T05:47:52.000Z" - }, - "end": { - "$date": "2020-12-08T06:28:06.000Z" - }, - "events": [ - { - "uuid": "345a7e64-63cb-426c-a2f4-e12daa4e5980", - "start": { - "$date": "2020-12-08T05:47:52.000Z" - }, - "end": { - "$date": "2020-12-08T06:28:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7c72c95c-72b1-4109-928a-90a2989b1b22", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-08T08:55:21.000Z" - }, - "end": { - "$date": "2020-12-08T09:03:25.000Z" - }, - "events": [ - { - "uuid": "a0264828-9244-4b16-ace4-806f279b466c", - "start": { - "$date": "2020-12-08T08:55:21.000Z" - }, - "end": { - "$date": "2020-12-08T09:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "e5ba19a3-ed90-45de-b6a4-dee9e38fd1fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-08T16:27:19.000Z" - }, - "end": { - "$date": "2020-12-08T17:31:49.000Z" - }, - "events": [ - { - "uuid": "d4f82b5b-8dc0-4d52-8324-9236dfb2dca8", - "start": { - "$date": "2020-12-08T16:27:19.000Z" - }, - "end": { - "$date": "2020-12-08T17:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "24a48c3a-741d-43a5-b976-c8f76e5acf2e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-08T17:36:38.000Z" - }, - "end": { - "$date": "2020-12-08T18:46:15.000Z" - }, - "events": [ - { - "uuid": "7d2d2fce-9984-4969-882e-dad37ae9daf3", - "start": { - "$date": "2020-12-08T17:36:38.000Z" - }, - "end": { - "$date": "2020-12-08T18:39:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "be51dfa4-fed4-44aa-a6e1-c2533bbec6fe", - "start": { - "$date": "2020-12-08T18:39:38.000Z" - }, - "end": { - "$date": "2020-12-08T18:46:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "866a5fe2-9226-4905-9869-a751640bae9f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T18:10:39.000Z" - }, - "end": { - "$date": "2020-12-08T18:25:11.000Z" - }, - "events": [ - { - "uuid": "aa05d18c-9fc1-49ca-b9c7-840e1fd3a66b", - "start": { - "$date": "2020-12-08T18:10:39.000Z" - }, - "end": { - "$date": "2020-12-08T18:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16b4dabf-4203-46fe-b12e-edcddabdbcad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T18:25:45.000Z" - }, - "end": { - "$date": "2020-12-08T18:27:06.000Z" - }, - "events": [ - { - "uuid": "b8a476f7-1e79-43ec-8715-2d03b02546c9", - "start": { - "$date": "2020-12-08T18:25:45.000Z" - }, - "end": { - "$date": "2020-12-08T18:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18c7eb80-15b0-42dd-883f-180ae8db39fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T18:43:21.000Z" - }, - "end": { - "$date": "2020-12-08T19:18:52.000Z" - }, - "events": [ - { - "uuid": "389ed94c-920d-4ccf-9ce2-4c864e259805", - "start": { - "$date": "2020-12-08T18:43:21.000Z" - }, - "end": { - "$date": "2020-12-08T19:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3923daa7-f133-411f-8aeb-e79afc9f5e8d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-08T19:26:32.000Z" - }, - "end": { - "$date": "2020-12-08T19:59:38.000Z" - }, - "events": [ - { - "uuid": "8513fcf9-5b09-43f6-9c6e-a85b461c9230", - "start": { - "$date": "2020-12-08T19:26:32.000Z" - }, - "end": { - "$date": "2020-12-08T19:59:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "79e7aefb-74ec-4b84-ad4c-df17a5b6199b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-08T21:22:54.000Z" - }, - "end": { - "$date": "2020-12-08T22:32:35.000Z" - }, - "events": [ - { - "uuid": "a01f4db1-7a15-4f20-8a63-4d98c428cea5", - "start": { - "$date": "2020-12-08T21:22:54.000Z" - }, - "end": { - "$date": "2020-12-08T22:32:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed7d53ab-90ce-4814-aa1e-3154fdb59e4f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-08T22:08:42.000Z" - }, - "end": { - "$date": "2020-12-08T22:13:48.000Z" - }, - "events": [ - { - "uuid": "34d22104-ea24-4a2d-b596-cbc06bb8c390", - "start": { - "$date": "2020-12-08T22:08:42.000Z" - }, - "end": { - "$date": "2020-12-08T22:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d4ccc96b-f694-478e-9e3c-d99aaa3e486c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-08T22:42:02.000Z" - }, - "end": { - "$date": "2020-12-08T23:53:26.000Z" - }, - "events": [ - { - "uuid": "d5500bf5-cb5d-4879-ba58-6f10d711c96d", - "start": { - "$date": "2020-12-08T22:42:02.000Z" - }, - "end": { - "$date": "2020-12-08T23:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1f155fde-1b80-4e6b-a077-2732004d1684", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-08T23:52:14.000Z" - }, - "end": { - "$date": "2020-12-09T01:05:57.000Z" - }, - "events": [ - { - "uuid": "244c88ce-a7c9-4839-b091-09faacc4f378", - "start": { - "$date": "2020-12-08T23:52:14.000Z" - }, - "end": { - "$date": "2020-12-09T01:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d3cfc20f-d7b6-49d5-b4b9-ba20b3c4565b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-09T00:58:51.000Z" - }, - "end": { - "$date": "2020-12-09T03:40:41.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-09T00:58:51.000Z" - }, - "end": { - "$date": "2020-12-09T03:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "a1efa776-cf55-4587-a449-584b35d9aa2e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T01:39:07.000Z" - }, - "end": { - "$date": "2020-12-09T01:49:22.000Z" - }, - "events": [ - { - "uuid": "2111e192-0987-4066-9895-d9b0bfe8978f", - "start": { - "$date": "2020-12-09T01:39:07.000Z" - }, - "end": { - "$date": "2020-12-09T01:49:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cee99b5-03a0-423f-abf5-ac0f8c21125b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T02:13:24.000Z" - }, - "end": { - "$date": "2020-12-09T02:13:24.000Z" - }, - "events": [ - { - "uuid": "35ef9ac5-8078-48cb-b6e1-15bdc204f812", - "start": { - "$date": "2020-12-09T02:13:24.000Z" - }, - "end": { - "$date": "2020-12-09T02:13:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4b2f4477-9934-43b5-8529-308bb1e6576a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-09T01:59:47.000Z" - }, - "end": { - "$date": "2020-12-09T02:30:34.000Z" - }, - "events": [ - { - "uuid": "6a6faea0-af55-4fa0-9458-11d703d920a0", - "start": { - "$date": "2020-12-09T01:59:47.000Z" - }, - "end": { - "$date": "2020-12-09T02:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6d75b1b8-4465-4c17-81c5-d903affa0b58", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-09T02:02:04.000Z" - }, - "end": { - "$date": "2020-12-09T05:25:09.000Z" - }, - "events": [ - { - "uuid": "97d142e9-0077-465d-a448-8429e84d8a15", - "start": { - "$date": "2020-12-09T02:02:04.000Z" - }, - "end": { - "$date": "2020-12-09T03:14:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56ff2b82-f366-45a5-89e3-41d6fc05ef33", - "start": { - "$date": "2020-12-09T03:14:04.000Z" - }, - "end": { - "$date": "2020-12-09T03:30:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5c3e4a3d-91e2-4c54-b9b9-bd12a6ec85d4", - "start": { - "$date": "2020-12-09T03:30:04.000Z" - }, - "end": { - "$date": "2020-12-09T04:54:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "139ea8ee-3e08-43dc-aa22-1fde16a5c5d3", - "start": { - "$date": "2020-12-09T04:54:04.000Z" - }, - "end": { - "$date": "2020-12-09T04:56:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1dabedf3-5931-4620-aab0-7d89df31b545", - "start": { - "$date": "2020-12-09T04:56:04.000Z" - }, - "end": { - "$date": "2020-12-09T05:25:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "f2c7ea90-8e47-4d85-ba94-205c22d00633", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-09T02:07:30.000Z" - }, - "end": { - "$date": "2020-12-09T03:54:23.000Z" - }, - "events": [ - { - "uuid": "c7657733-b119-4061-aa0a-3f241bdeb378", - "start": { - "$date": "2020-12-09T02:07:30.000Z" - }, - "end": { - "$date": "2020-12-09T03:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41ab1670-8107-4c28-ad8b-0e2a3ce18578", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T02:15:18.000Z" - }, - "end": { - "$date": "2020-12-09T02:40:21.000Z" - }, - "events": [ - { - "uuid": "3b72a568-02cb-4684-96da-21e8390d37eb", - "start": { - "$date": "2020-12-09T02:15:18.000Z" - }, - "end": { - "$date": "2020-12-09T02:40:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "45066e0c-cf49-40df-8434-15497e0b5493", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T02:40:54.000Z" - }, - "end": { - "$date": "2020-12-09T03:54:09.000Z" - }, - "events": [ - { - "uuid": "a5114dd9-e426-4b23-9d5d-ac9dfd68b37e", - "start": { - "$date": "2020-12-09T02:40:54.000Z" - }, - "end": { - "$date": "2020-12-09T03:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "63166634-21e8-499b-abff-27b9001d3b42", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-09T03:17:55.000Z" - }, - "end": { - "$date": "2020-12-09T06:36:37.000Z" - }, - "events": [ - { - "uuid": "fa0a965e-60ca-4cc0-8571-316bea0aabd9", - "start": { - "$date": "2020-12-09T03:17:55.000Z" - }, - "end": { - "$date": "2020-12-09T06:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "728b9916-68bc-4a7f-ba6f-69ef42591bcf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-09T03:48:48.000Z" - }, - "end": { - "$date": "2020-12-09T04:46:28.000Z" - }, - "events": [ - { - "uuid": "30fadf41-f876-4d48-83de-155d1ecbd01d", - "start": { - "$date": "2020-12-09T03:48:48.000Z" - }, - "end": { - "$date": "2020-12-09T04:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d7ceeb57-3db4-4da8-a317-a6c9f138db07", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-09T03:56:23.000Z" - }, - "end": { - "$date": "2020-12-09T06:36:48.000Z" - }, - "events": [ - { - "uuid": "f349db09-22ec-4b68-a6de-3e6611f5cefc", - "start": { - "$date": "2020-12-09T03:56:23.000Z" - }, - "end": { - "$date": "2020-12-09T06:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "75e46ccb-5669-4c98-9f48-44d6b7e35e92", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-09T04:16:13.000Z" - }, - "end": { - "$date": "2020-12-09T04:54:37.000Z" - }, - "events": [ - { - "uuid": "6d99b631-e6ab-45c0-adba-4c5849329d2f", - "start": { - "$date": "2020-12-09T04:16:13.000Z" - }, - "end": { - "$date": "2020-12-09T04:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e45e3f75-ff94-4897-9f68-84301bbcad12", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T04:21:48.000Z" - }, - "end": { - "$date": "2020-12-09T04:47:28.000Z" - }, - "events": [ - { - "uuid": "8268ce3c-d47e-437a-8e08-d8e60d518b9a", - "start": { - "$date": "2020-12-09T04:21:48.000Z" - }, - "end": { - "$date": "2020-12-09T04:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "305b1d3c-bb96-44af-8a17-4d47e13cbcaf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-09T04:29:37.000Z" - }, - "end": { - "$date": "2020-12-09T05:14:19.000Z" - }, - "events": [ - { - "uuid": "4329cc44-a190-4b2e-b55d-eff9c08ae51a", - "start": { - "$date": "2020-12-09T04:29:37.000Z" - }, - "end": { - "$date": "2020-12-09T05:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f5a5c00e-2bea-4a9b-b61b-de43cbfd3e82", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-09T04:55:04.000Z" - }, - "end": { - "$date": "2020-12-09T06:11:44.000Z" - }, - "events": [ - { - "uuid": "349dad90-1191-4012-a424-528664bdc235", - "start": { - "$date": "2020-12-09T04:55:04.000Z" - }, - "end": { - "$date": "2020-12-09T06:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ffeb9025-7a8c-4786-aca4-494c3d579388", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-09T05:26:08.000Z" - }, - "end": { - "$date": "2020-12-09T06:20:37.000Z" - }, - "events": [ - { - "uuid": "91c51335-5cbe-40f9-afed-2e6b82fe9eff", - "start": { - "$date": "2020-12-09T05:26:08.000Z" - }, - "end": { - "$date": "2020-12-09T06:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3e1a31f3-63eb-469d-a738-90a06408f968", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-09T05:26:10.000Z" - }, - "end": { - "$date": "2020-12-09T06:11:26.000Z" - }, - "events": [ - { - "uuid": "8021c224-c583-4e48-be48-befe3278580e", - "start": { - "$date": "2020-12-09T05:26:10.000Z" - }, - "end": { - "$date": "2020-12-09T06:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "5e3739fc-d1e4-4334-881d-dbc16caf2701", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2020-12-09T07:42:08.000Z" - }, - "end": { - "$date": "2020-12-09T07:52:16.000Z" - }, - "events": [ - { - "uuid": "2ae7158f-ffd0-4c6a-8976-3e516a1459da", - "start": { - "$date": "2020-12-09T07:42:08.000Z" - }, - "end": { - "$date": "2020-12-09T07:52:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "01baed73-9862-4fc0-b8e9-0d2ae7cc3ebf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-09T18:44:43.000Z" - }, - "end": { - "$date": "2020-12-09T19:53:03.000Z" - }, - "events": [ - { - "uuid": "ded42f61-cb77-401d-bf6b-e0bfdb63cc02", - "start": { - "$date": "2020-12-09T18:44:43.000Z" - }, - "end": { - "$date": "2020-12-09T19:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "326fafa8-4519-4ca7-9ad4-193e8283864a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T19:19:36.000Z" - }, - "end": { - "$date": "2020-12-09T19:48:34.000Z" - }, - "events": [ - { - "uuid": "ac783d31-3d0b-4f99-beba-70c1e2c6303d", - "start": { - "$date": "2020-12-09T19:19:36.000Z" - }, - "end": { - "$date": "2020-12-09T19:48:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "0172a110-0f9e-48bb-a38c-af837ecb02e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-09T21:10:29.000Z" - }, - "end": { - "$date": "2020-12-09T21:55:26.000Z" - }, - "events": [ - { - "uuid": "16d6b53b-a001-4b58-8233-5492f7c4f922", - "start": { - "$date": "2020-12-09T21:10:29.000Z" - }, - "end": { - "$date": "2020-12-09T21:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "e2883ce4-1687-41ba-a396-82a082fbce65", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-09T21:19:00.000Z" - }, - "end": { - "$date": "2020-12-09T21:51:17.000Z" - }, - "events": [ - { - "uuid": "d7b589f2-5886-4c6a-ab26-9207d9b65b22", - "start": { - "$date": "2020-12-09T21:19:00.000Z" - }, - "end": { - "$date": "2020-12-09T21:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f8e8b1d7-fdc1-4042-8a9f-785d7e2fc624", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-09T22:35:09.000Z" - }, - "end": { - "$date": "2020-12-10T00:11:27.000Z" - }, - "events": [ - { - "uuid": "5f0324a6-72c2-44a1-8442-7989d9137a98", - "start": { - "$date": "2020-12-09T22:35:09.000Z" - }, - "end": { - "$date": "2020-12-10T00:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1e6e04bc-45a3-473d-920d-4e4234c4838a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-09T22:39:52.000Z" - }, - "end": { - "$date": "2020-12-09T23:36:26.000Z" - }, - "events": [ - { - "uuid": "614c62f5-ac98-4fdc-ab19-df0312f0dcf4", - "start": { - "$date": "2020-12-09T22:39:52.000Z" - }, - "end": { - "$date": "2020-12-09T23:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "c277f18f-263b-472d-98b9-d783e227a8b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-09T22:42:10.000Z" - }, - "end": { - "$date": "2020-12-09T23:35:25.000Z" - }, - "events": [ - { - "uuid": "4f75d1e7-fc37-4f82-acb0-22b18bac0aa1", - "start": { - "$date": "2020-12-09T22:42:10.000Z" - }, - "end": { - "$date": "2020-12-09T23:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "db368277-f890-4636-8434-e02d02d60af1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-09T23:36:27.000Z" - }, - "end": { - "$date": "2020-12-10T01:00:12.000Z" - }, - "events": [ - { - "uuid": "ea6702a3-cb9d-44a2-801f-4349e2c660ab", - "start": { - "$date": "2020-12-09T23:36:27.000Z" - }, - "end": { - "$date": "2020-12-10T01:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "7eadb64e-c4f8-4e3a-b598-e9badaf11c10", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-10T01:18:59.000Z" - }, - "end": { - "$date": "2020-12-10T01:24:10.000Z" - }, - "events": [ - { - "uuid": "456e2764-c5a4-4368-ba53-e6af1579cd06", - "start": { - "$date": "2020-12-10T01:18:59.000Z" - }, - "end": { - "$date": "2020-12-10T01:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ae343aaa-e101-46ca-bdeb-3b15e65887ac", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-12-10T01:42:44.000Z" - }, - "end": { - "$date": "2020-12-10T02:34:54.000Z" - }, - "events": [ - { - "uuid": "735ccb9c-3be2-4053-8ce5-4913d000e21b", - "start": { - "$date": "2020-12-10T01:42:44.000Z" - }, - "end": { - "$date": "2020-12-10T02:34:54.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bf5ca3dd-9a91-41f4-ab6a-e4f16cf52b96", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-10T01:43:20.000Z" - }, - "end": { - "$date": "2020-12-10T02:34:52.000Z" - }, - "events": [ - { - "uuid": "52889bfd-c2d7-49c1-a308-59cf2d855956", - "start": { - "$date": "2020-12-10T01:43:20.000Z" - }, - "end": { - "$date": "2020-12-10T02:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c19e48a2-8c10-420c-8f6e-20618c72a1c9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T02:03:15.000Z" - }, - "end": { - "$date": "2020-12-10T02:46:50.000Z" - }, - "events": [ - { - "uuid": "61c1f7eb-6e58-485d-8de4-c6e157e4f991", - "start": { - "$date": "2020-12-10T02:03:15.000Z" - }, - "end": { - "$date": "2020-12-10T02:46:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "fb4c8667-4163-44ea-8f8d-3b54ee5eac74", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-10T02:20:11.000Z" - }, - "end": { - "$date": "2020-12-10T03:08:25.000Z" - }, - "events": [ - { - "uuid": "dedea341-580d-4923-8897-9bad3b3ee637", - "start": { - "$date": "2020-12-10T02:20:11.000Z" - }, - "end": { - "$date": "2020-12-10T03:08:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d148e6e1-5f58-4d16-99a7-6e785fee58e1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-10T03:16:52.000Z" - }, - "end": { - "$date": "2020-12-10T03:53:12.000Z" - }, - "events": [ - { - "uuid": "aa25d110-f173-4f38-92fc-6e8df2b6a8c5", - "start": { - "$date": "2020-12-10T03:16:52.000Z" - }, - "end": { - "$date": "2020-12-10T03:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "5477cba8-299c-453a-9ec6-3e272446102f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-10T03:33:33.000Z" - }, - "end": { - "$date": "2020-12-10T06:20:29.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-10T03:33:33.000Z" - }, - "end": { - "$date": "2020-12-10T06:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02f163b5-0a8c-4589-9301-37c5e5120335", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T03:50:56.000Z" - }, - "end": { - "$date": "2020-12-10T03:50:52.000Z" - }, - "events": [ - { - "uuid": "410862aa-2560-42fe-b63e-b8020704a143", - "start": { - "$date": "2020-12-10T03:50:56.000Z" - }, - "end": { - "$date": "2020-12-10T03:50:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e45fed7f-d938-4d4b-87ea-056baa0dfe16", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-10T03:36:27.000Z" - }, - "end": { - "$date": "2020-12-10T05:32:18.000Z" - }, - "events": [ - { - "uuid": "2602c8db-e12d-4c67-8153-74596a8431e8", - "start": { - "$date": "2020-12-10T03:36:27.000Z" - }, - "end": { - "$date": "2020-12-10T05:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8982914-6a87-4cff-af0f-b161b17dd794", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T04:18:46.000Z" - }, - "end": { - "$date": "2020-12-10T04:18:57.000Z" - }, - "events": [ - { - "uuid": "a49f3976-890d-4d90-a9ab-e4fe4137664b", - "start": { - "$date": "2020-12-10T04:18:46.000Z" - }, - "end": { - "$date": "2020-12-10T04:18:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "661c3777-9ca8-4ba9-ad78-54e6c8626887", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-10T03:54:02.000Z" - }, - "end": { - "$date": "2020-12-10T05:14:01.000Z" - }, - "events": [ - { - "uuid": "50b9cf0e-7f67-40e9-a143-b5e3018a23d5", - "start": { - "$date": "2020-12-10T03:54:02.000Z" - }, - "end": { - "$date": "2020-12-10T05:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "60e6e096-4726-433f-95d4-ebd09a2af6b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T04:46:10.000Z" - }, - "end": { - "$date": "2020-12-10T06:00:28.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-10T04:46:10.000Z" - }, - "end": { - "$date": "2020-12-10T06:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "62366c0f-eac1-45fb-af2c-388ca6e9f0b2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-10T05:12:31.000Z" - }, - "end": { - "$date": "2020-12-10T05:12:37.000Z" - }, - "events": [ - { - "uuid": "cbc88631-a8dc-45f9-8834-206a79383d8b", - "start": { - "$date": "2020-12-10T05:12:31.000Z" - }, - "end": { - "$date": "2020-12-10T05:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "325dd63c-9987-43de-ae50-6ce3c8436236", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-10T04:50:11.000Z" - }, - "end": { - "$date": "2020-12-10T05:38:24.000Z" - }, - "events": [ - { - "uuid": "c932072c-9dd2-4a2a-8904-99936da887fc", - "start": { - "$date": "2020-12-10T04:50:11.000Z" - }, - "end": { - "$date": "2020-12-10T05:38:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6893bc00-f2d6-4ef9-9f12-75c5a7f55036", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-10T05:12:41.000Z" - }, - "end": { - "$date": "2020-12-10T06:36:04.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-10T05:12:41.000Z" - }, - "end": { - "$date": "2020-12-10T06:36:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c00cfae7-740b-492f-9cab-13b0b5d2aee4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T05:21:04.000Z" - }, - "end": { - "$date": "2020-12-10T05:29:44.000Z" - }, - "events": [ - { - "uuid": "44037b7f-a53f-4634-9101-8dfbc62ccb9d", - "start": { - "$date": "2020-12-10T05:21:04.000Z" - }, - "end": { - "$date": "2020-12-10T05:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "787ed1c4-4006-4cd2-a7fc-561d02a140c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-10T05:32:23.000Z" - }, - "end": { - "$date": "2020-12-10T06:57:15.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-10T05:32:23.000Z" - }, - "end": { - "$date": "2020-12-10T06:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "265b4a6a-c290-4d67-9c90-accf1e2c4d5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T05:32:30.000Z" - }, - "end": { - "$date": "2020-12-10T05:34:35.000Z" - }, - "events": [ - { - "uuid": "c2834720-2ed7-43da-a5b7-fc3449ef5acb", - "start": { - "$date": "2020-12-10T05:32:30.000Z" - }, - "end": { - "$date": "2020-12-10T05:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0fea9b85-86e2-4895-8ee5-a9d251226764", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T05:34:56.000Z" - }, - "end": { - "$date": "2020-12-10T05:35:55.000Z" - }, - "events": [ - { - "uuid": "6b550d09-fca1-4dfa-9be3-b04126ed03f6", - "start": { - "$date": "2020-12-10T05:34:56.000Z" - }, - "end": { - "$date": "2020-12-10T05:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6fe1e0bf-8622-4a8f-b56f-f3e2dd424ef7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T05:48:26.000Z" - }, - "end": { - "$date": "2020-12-10T05:50:40.000Z" - }, - "events": [ - { - "uuid": "fa20102a-47e0-4ecc-a172-eb462f10355c", - "start": { - "$date": "2020-12-10T05:48:26.000Z" - }, - "end": { - "$date": "2020-12-10T05:50:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "db93c4a1-7833-403d-859d-e2657d5bcf66", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T06:01:43.000Z" - }, - "end": { - "$date": "2020-12-10T06:57:10.000Z" - }, - "events": [ - { - "uuid": "041e97c4-5990-4da4-8d2e-df5b56eecf94", - "start": { - "$date": "2020-12-10T06:01:43.000Z" - }, - "end": { - "$date": "2020-12-10T06:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "04808716-4c5d-4de8-be9b-4ae7d8f37a26", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-10T06:37:05.000Z" - }, - "end": { - "$date": "2020-12-10T07:03:48.000Z" - }, - "events": [ - { - "uuid": "f90c664f-08d5-4166-bbfe-d04c06194fd2", - "start": { - "$date": "2020-12-10T06:37:05.000Z" - }, - "end": { - "$date": "2020-12-10T07:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c8109631-42d4-4c13-9076-c4930c7c2d6d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T06:59:01.000Z" - }, - "end": { - "$date": "2020-12-10T07:11:01.000Z" - }, - "events": [ - { - "uuid": "4f9ff49f-6282-4a1b-bd12-4735ffab3111", - "start": { - "$date": "2020-12-10T06:59:01.000Z" - }, - "end": { - "$date": "2020-12-10T07:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "72825102-0cac-4e3d-8f74-817b472545c8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-10T19:16:49.000Z" - }, - "end": { - "$date": "2020-12-10T19:24:11.000Z" - }, - "events": [ - { - "uuid": "f1b9d2d0-c3f6-478f-8195-0aee7ae54be4", - "start": { - "$date": "2020-12-10T19:16:49.000Z" - }, - "end": { - "$date": "2020-12-10T19:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef8615bc-4723-4319-823c-0ddc40785110", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T19:34:01.000Z" - }, - "end": { - "$date": "2020-12-10T19:55:21.000Z" - }, - "events": [ - { - "uuid": "c46d0179-743a-4806-af58-9ce5ce1fd503", - "start": { - "$date": "2020-12-10T19:34:01.000Z" - }, - "end": { - "$date": "2020-12-10T19:55:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "cc86c132-7d34-4493-ac27-876c1ae5b726", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-10T19:33:44.000Z" - }, - "end": { - "$date": "2020-12-10T19:51:46.000Z" - }, - "events": [ - { - "uuid": "ef5e2277-5e50-47a3-b5e6-aad655278206", - "start": { - "$date": "2020-12-10T19:33:44.000Z" - }, - "end": { - "$date": "2020-12-10T19:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "32ce5be9-6eba-4bfe-ba8b-e2ef77067b6e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-10T19:52:05.000Z" - }, - "end": { - "$date": "2020-12-10T20:46:13.000Z" - }, - "events": [ - { - "uuid": "4787b1fa-6168-4928-b563-d0ffe63d325a", - "start": { - "$date": "2020-12-10T19:52:05.000Z" - }, - "end": { - "$date": "2020-12-10T20:46:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "2abb6e8d-baa9-44ce-be92-6b93986e9b0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-10T20:46:18.000Z" - }, - "end": { - "$date": "2020-12-10T22:16:50.000Z" - }, - "events": [ - { - "uuid": "c3097f90-76e8-40cf-85c2-27feb86be030", - "start": { - "$date": "2020-12-10T20:46:18.000Z" - }, - "end": { - "$date": "2020-12-10T21:48:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12150fe5-2774-49cc-9655-2bbba7bbc99b", - "start": { - "$date": "2020-12-10T21:48:18.000Z" - }, - "end": { - "$date": "2020-12-10T22:01:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d761026e-7541-46f0-8c8d-4834c89d39db", - "start": { - "$date": "2020-12-10T22:01:18.000Z" - }, - "end": { - "$date": "2020-12-10T22:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4bc0c100-28f6-408f-a8b4-283d11cc8b2b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T21:03:24.000Z" - }, - "end": { - "$date": "2020-12-10T23:21:52.000Z" - }, - "events": [ - { - "uuid": "fb8dce50-7c9c-415d-8123-f983a21fd252", - "start": { - "$date": "2020-12-10T21:03:24.000Z" - }, - "end": { - "$date": "2020-12-10T22:01:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08a6adce-ba6f-4924-a56e-9ac34a91d3e8", - "start": { - "$date": "2020-12-10T22:01:24.000Z" - }, - "end": { - "$date": "2020-12-10T22:10:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf330034-172f-4a6b-9b14-83c64c0a8bff", - "start": { - "$date": "2020-12-10T22:10:24.000Z" - }, - "end": { - "$date": "2020-12-10T23:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6308a1b7-55a2-49e1-8cb9-982bb9de2f0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T22:20:44.000Z" - }, - "end": { - "$date": "2020-12-10T22:31:35.000Z" - }, - "events": [ - { - "uuid": "fcb09bf2-79e2-4355-a254-7139881e6bdf", - "start": { - "$date": "2020-12-10T22:20:44.000Z" - }, - "end": { - "$date": "2020-12-10T22:31:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "49b46e30-771c-4eed-8088-08dcbdc307a2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-10T22:24:45.000Z" - }, - "end": { - "$date": "2020-12-10T23:08:38.000Z" - }, - "events": [ - { - "uuid": "f9005b28-d4c4-45c4-ae86-8776e1e7562c", - "start": { - "$date": "2020-12-10T22:24:45.000Z" - }, - "end": { - "$date": "2020-12-10T23:08:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "983aafcc-b173-4fed-9c44-437f9ef25e56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T22:34:25.000Z" - }, - "end": { - "$date": "2020-12-10T22:47:42.000Z" - }, - "events": [ - { - "uuid": "628db11c-e4a8-41b9-b826-945b018e2ae5", - "start": { - "$date": "2020-12-10T22:34:25.000Z" - }, - "end": { - "$date": "2020-12-10T22:47:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98201816-436f-4dfc-b582-af1621119871", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T23:13:02.000Z" - }, - "end": { - "$date": "2020-12-10T23:13:04.000Z" - }, - "events": [ - { - "uuid": "294f8073-ec4b-4654-9636-9c1adbbb76f0", - "start": { - "$date": "2020-12-10T23:13:02.000Z" - }, - "end": { - "$date": "2020-12-10T23:13:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "7861c353-0101-450f-8e20-87b089c514e2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-10T23:09:14.000Z" - }, - "end": { - "$date": "2020-12-11T01:59:36.000Z" - }, - "events": [ - { - "uuid": "ffb6d0dc-85ad-41ec-870f-4fd705dfab65", - "start": { - "$date": "2020-12-10T23:09:14.000Z" - }, - "end": { - "$date": "2020-12-11T00:16:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cdb60cbb-10ff-4b03-9d23-118448c7b85c", - "start": { - "$date": "2020-12-11T00:16:14.000Z" - }, - "end": { - "$date": "2020-12-11T00:42:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "da16f5fd-d073-4e81-9c0e-d91c4d1442f2", - "start": { - "$date": "2020-12-11T00:42:14.000Z" - }, - "end": { - "$date": "2020-12-11T01:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8370014-17e8-4b0f-b8da-ba6c54fa566d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T23:16:41.000Z" - }, - "end": { - "$date": "2020-12-10T23:17:39.000Z" - }, - "events": [ - { - "uuid": "5d355f8d-33ea-4192-ac13-8d9cac5dded4", - "start": { - "$date": "2020-12-10T23:16:41.000Z" - }, - "end": { - "$date": "2020-12-10T23:17:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe597070-82aa-4ade-b12d-011a2e84a12f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-10T23:16:43.000Z" - }, - "end": { - "$date": "2020-12-10T23:40:19.000Z" - }, - "events": [ - { - "uuid": "6ba2116e-742a-40fb-8ae2-586af3e4522b", - "start": { - "$date": "2020-12-10T23:16:43.000Z" - }, - "end": { - "$date": "2020-12-10T23:40:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa06cfbf-1b62-4167-807e-4842833655fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T23:17:52.000Z" - }, - "end": { - "$date": "2020-12-10T23:40:19.000Z" - }, - "events": [ - { - "uuid": "c3a4091f-6e25-4dd4-814f-e22d5434f146", - "start": { - "$date": "2020-12-10T23:17:52.000Z" - }, - "end": { - "$date": "2020-12-10T23:40:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c2110643-004a-46d5-9dd2-11fb1552ad3f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-10T23:30:18.000Z" - }, - "end": { - "$date": "2020-12-10T23:44:39.000Z" - }, - "events": [ - { - "uuid": "e1110640-61ac-4e8e-b15d-9bd6b4d25ac1", - "start": { - "$date": "2020-12-10T23:30:18.000Z" - }, - "end": { - "$date": "2020-12-10T23:44:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4867ecb-5cb2-40da-a0c8-1bdc3cd5588a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-10T23:45:08.000Z" - }, - "end": { - "$date": "2020-12-11T00:03:30.000Z" - }, - "events": [ - { - "uuid": "09f5fbbb-a2d2-4406-8b31-e399b8e11f64", - "start": { - "$date": "2020-12-10T23:45:08.000Z" - }, - "end": { - "$date": "2020-12-11T00:03:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b81d9ea-a2d7-4513-943f-bdf39ab95c74", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-10T23:44:59.000Z" - }, - "end": { - "$date": "2020-12-11T00:03:29.000Z" - }, - "events": [ - { - "uuid": "eb334d96-e692-4b7e-84fb-02e910f1c039", - "start": { - "$date": "2020-12-10T23:44:59.000Z" - }, - "end": { - "$date": "2020-12-11T00:03:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4455ff38-e83e-4d2d-932a-7239bac05c49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T00:30:15.000Z" - }, - "end": { - "$date": "2020-12-11T00:30:16.000Z" - }, - "events": [ - { - "uuid": "aa6ceb19-d36f-47ce-8046-8fdcc504c9c9", - "start": { - "$date": "2020-12-11T00:30:15.000Z" - }, - "end": { - "$date": "2020-12-11T00:30:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a1d1205-f6c5-430a-97df-03cd0a16f68b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-11T00:21:15.000Z" - }, - "end": { - "$date": "2020-12-11T00:30:06.000Z" - }, - "events": [ - { - "uuid": "84cf4eb9-ba16-4a07-9f84-685abb59a7b1", - "start": { - "$date": "2020-12-11T00:21:15.000Z" - }, - "end": { - "$date": "2020-12-11T00:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "057aafd9-d5c3-4017-8b18-1cb9618b41b7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T00:10:22.000Z" - }, - "end": { - "$date": "2020-12-11T00:30:03.000Z" - }, - "events": [ - { - "uuid": "67de6bd7-2556-496b-a42e-dbd88375c466", - "start": { - "$date": "2020-12-11T00:10:22.000Z" - }, - "end": { - "$date": "2020-12-11T00:30:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a6249be-59d4-4a1d-96da-6992a50b1f6b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T01:00:26.000Z" - }, - "end": { - "$date": "2020-12-11T01:00:22.000Z" - }, - "events": [ - { - "uuid": "7e3e48f7-18a6-4482-bd85-c1c8653e86d9", - "start": { - "$date": "2020-12-11T01:00:26.000Z" - }, - "end": { - "$date": "2020-12-11T01:00:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11c42c0c-2a34-418a-82b7-ea7fcc79d814", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-11T00:32:17.000Z" - }, - "end": { - "$date": "2020-12-11T00:33:26.000Z" - }, - "events": [ - { - "uuid": "f9f994c9-94c5-4c7d-b7af-896681dc068f", - "start": { - "$date": "2020-12-11T00:32:17.000Z" - }, - "end": { - "$date": "2020-12-11T00:33:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "957318ed-3721-46ef-87ea-0f65913f8e2f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-11T00:32:16.000Z" - }, - "end": { - "$date": "2020-12-11T00:33:26.000Z" - }, - "events": [ - { - "uuid": "84c2452b-5b82-4bb3-a532-5f47b8a459ad", - "start": { - "$date": "2020-12-11T00:32:16.000Z" - }, - "end": { - "$date": "2020-12-11T00:33:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9475a910-69ba-4cb1-add3-c68d5ffcf660", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-11T00:37:11.000Z" - }, - "end": { - "$date": "2020-12-11T01:00:16.000Z" - }, - "events": [ - { - "uuid": "d4729446-f3ee-4a69-bd2b-6ac3b09032ad", - "start": { - "$date": "2020-12-11T00:37:11.000Z" - }, - "end": { - "$date": "2020-12-11T01:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5ea565c-dc8e-4094-9c64-8edf8dd2b03c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-11T00:37:31.000Z" - }, - "end": { - "$date": "2020-12-11T01:00:22.000Z" - }, - "events": [ - { - "uuid": "9c8751c5-469a-4896-92cd-5dba5b0d0078", - "start": { - "$date": "2020-12-11T00:37:31.000Z" - }, - "end": { - "$date": "2020-12-11T01:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bc8b5d0f-0d23-4404-9c0c-f25e2fb13e05", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-12-11T01:19:26.000Z" - }, - "end": { - "$date": "2020-12-11T03:25:24.000Z" - }, - "events": [ - { - "uuid": "b068a52a-27bd-4813-803c-7e19ae0c5ffd", - "start": { - "$date": "2020-12-11T01:19:26.000Z" - }, - "end": { - "$date": "2020-12-11T03:25:24.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a1fd57b5-04ad-4772-a424-171ebc163543", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-11T01:51:46.000Z" - }, - "end": { - "$date": "2020-12-11T01:53:43.000Z" - }, - "events": [ - { - "uuid": "2f26a553-bde2-4cb5-8632-ddf551f176a4", - "start": { - "$date": "2020-12-11T01:51:46.000Z" - }, - "end": { - "$date": "2020-12-11T01:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "dced6043-de91-431a-880a-39c329c1b99d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-11T02:11:56.000Z" - }, - "end": { - "$date": "2020-12-11T02:13:56.000Z" - }, - "events": [ - { - "uuid": "7d679a33-0857-4bc3-bfd3-b77388bcbd96", - "start": { - "$date": "2020-12-11T02:11:56.000Z" - }, - "end": { - "$date": "2020-12-11T02:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8ac3b09-3081-41ab-a4cc-049c927c1e90", - "uuid": "f285faba-5814-4757-ac85-56352426948c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-11T02:12:58.000Z" - }, - "end": { - "$date": "2020-12-11T02:14:51.000Z" - }, - "events": [ - { - "uuid": "ffe8dd65-5645-49f3-a4db-dad0d9de1312", - "start": { - "$date": "2020-12-11T02:12:58.000Z" - }, - "end": { - "$date": "2020-12-11T02:14:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "c52fbf50-d5c2-4188-b65a-85a686045e6a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-11T02:14:56.000Z" - }, - "end": { - "$date": "2020-12-11T02:27:18.000Z" - }, - "events": [ - { - "uuid": "87ff66d2-3adc-4aed-98d2-2058ae5725d0", - "start": { - "$date": "2020-12-11T02:14:56.000Z" - }, - "end": { - "$date": "2020-12-11T02:27:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8ac3b09-3081-41ab-a4cc-049c927c1e90", - "uuid": "097b8c58-c070-4340-808b-8c1a360884b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-11T02:20:53.000Z" - }, - "end": { - "$date": "2020-12-11T02:28:58.000Z" - }, - "events": [ - { - "uuid": "28143e92-48c1-49a2-bb0c-bb4eedd7c76e", - "start": { - "$date": "2020-12-11T02:20:53.000Z" - }, - "end": { - "$date": "2020-12-11T02:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "700ec8d1-03db-4036-9857-46a938d993c6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-11T02:28:33.000Z" - }, - "end": { - "$date": "2020-12-11T02:30:28.000Z" - }, - "events": [ - { - "uuid": "31d21b45-8a38-46bc-8183-7d5491aeb75b", - "start": { - "$date": "2020-12-11T02:28:33.000Z" - }, - "end": { - "$date": "2020-12-11T02:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "010c7e5e-dbce-4017-9398-ae764dede4e2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-11T02:33:19.000Z" - }, - "end": { - "$date": "2020-12-11T02:41:09.000Z" - }, - "events": [ - { - "uuid": "ad538c0f-0884-45ff-936d-eaf20ccb06fb", - "start": { - "$date": "2020-12-11T02:33:19.000Z" - }, - "end": { - "$date": "2020-12-11T02:41:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c85acf1c-3c93-4735-848d-f74008e07554", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-11T02:36:04.000Z" - }, - "end": { - "$date": "2020-12-11T03:20:48.000Z" - }, - "events": [ - { - "uuid": "836ad1a5-2046-488b-b209-eb4a0d4499de", - "start": { - "$date": "2020-12-11T02:36:04.000Z" - }, - "end": { - "$date": "2020-12-11T03:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4b52f343-eb67-4bde-a8aa-6fb929969369", - "uuid": "5ebd7f39-a4e7-4c67-bdbb-b5576b4d98b8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-11T03:19:25.000Z" - }, - "end": { - "$date": "2020-12-11T09:59:32.000Z" - }, - "events": [ - { - "uuid": "a03b3947-4453-4b72-8576-ddaf2d09cb98", - "start": { - "$date": "2020-12-11T03:19:25.000Z" - }, - "end": { - "$date": "2020-12-11T09:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "14e902bf-195e-4f6f-b3af-c37a1e6316e5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-11T03:26:39.000Z" - }, - "end": { - "$date": "2020-12-11T08:01:15.000Z" - }, - "events": [ - { - "uuid": "2fdb30a6-c6f3-4425-81cb-bac950bc5df3", - "start": { - "$date": "2020-12-11T03:26:39.000Z" - }, - "end": { - "$date": "2020-12-11T08:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed2ec38c-5fe2-48d1-963b-f9481cb05b83", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T03:28:00.000Z" - }, - "end": { - "$date": "2020-12-11T03:56:54.000Z" - }, - "events": [ - { - "uuid": "217c3980-24e6-4518-9472-b22299442b40", - "start": { - "$date": "2020-12-11T03:28:00.000Z" - }, - "end": { - "$date": "2020-12-11T03:56:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3f8c988e-a380-491c-b9b5-1f2ee185b0b2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-11T03:31:05.000Z" - }, - "end": { - "$date": "2020-12-11T05:50:41.000Z" - }, - "events": [ - { - "uuid": "494b2729-28cb-4eea-a4c0-e6675a1fb02c", - "start": { - "$date": "2020-12-11T03:31:05.000Z" - }, - "end": { - "$date": "2020-12-11T05:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "90d63d09-6936-473e-8212-a4eafe11b76f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T03:35:57.000Z" - }, - "end": { - "$date": "2020-12-11T04:56:02.000Z" - }, - "events": [ - { - "uuid": "80279e93-39b1-4d81-a918-735cc57da45c", - "start": { - "$date": "2020-12-11T03:35:57.000Z" - }, - "end": { - "$date": "2020-12-11T04:56:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c2011b63-c314-43a1-ac73-4c7a535e5534", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-11T03:50:56.000Z" - }, - "end": { - "$date": "2020-12-11T04:48:33.000Z" - }, - "events": [ - { - "uuid": "8a520c8c-efdd-4a7d-a640-2a7f9b403572", - "start": { - "$date": "2020-12-11T03:50:56.000Z" - }, - "end": { - "$date": "2020-12-11T04:08:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2fe529e2-dbdd-4ad5-8cea-d38d35f21d46", - "start": { - "$date": "2020-12-11T04:08:56.000Z" - }, - "end": { - "$date": "2020-12-11T04:10:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9636b05c-4ec3-4d68-bf39-70579f9e7f6c", - "start": { - "$date": "2020-12-11T04:10:56.000Z" - }, - "end": { - "$date": "2020-12-11T04:48:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7848714-7910-4c43-bfe3-5a7cee94d8ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T03:57:10.000Z" - }, - "end": { - "$date": "2020-12-11T03:58:11.000Z" - }, - "events": [ - { - "uuid": "d60ed969-2ccf-4b24-8796-e318b15f1b94", - "start": { - "$date": "2020-12-11T03:57:10.000Z" - }, - "end": { - "$date": "2020-12-11T03:58:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "a4bf1339-c68f-4bdc-bcdc-6b1fe8bb52db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T04:07:35.000Z" - }, - "end": { - "$date": "2020-12-11T05:33:20.000Z" - }, - "events": [ - { - "uuid": "62b691b7-5731-4e19-acc3-76585366e0e0", - "start": { - "$date": "2020-12-11T04:07:35.000Z" - }, - "end": { - "$date": "2020-12-11T05:33:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "32334892-c1fb-4645-ae9c-ba5b99be7f71", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-11T04:10:46.000Z" - }, - "end": { - "$date": "2020-12-11T05:26:41.000Z" - }, - "events": [ - { - "uuid": "29e85a32-98f7-4917-ba1e-e6d281c0e579", - "start": { - "$date": "2020-12-11T04:10:46.000Z" - }, - "end": { - "$date": "2020-12-11T05:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "dd6f93c1-1834-4067-875d-f04965b94703", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-11T04:56:20.000Z" - }, - "end": { - "$date": "2020-12-11T05:14:04.000Z" - }, - "events": [ - { - "uuid": "569bcff1-6766-4a22-b5e0-808797b94930", - "start": { - "$date": "2020-12-11T04:56:20.000Z" - }, - "end": { - "$date": "2020-12-11T05:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "2982a7dc-fde4-4a47-8f19-905a5ec64c87", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-11T05:28:40.000Z" - }, - "end": { - "$date": "2020-12-11T07:42:30.000Z" - }, - "events": [ - { - "uuid": "f513b9c7-5f0e-4e7d-99f0-c4c587e1d56f", - "start": { - "$date": "2020-12-11T05:28:40.000Z" - }, - "end": { - "$date": "2020-12-11T07:42:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "91dbce0a-cc8e-4e4b-8456-8fc0bb1c4b3b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-11T05:32:04.000Z" - }, - "end": { - "$date": "2020-12-11T07:15:37.000Z" - }, - "events": [ - { - "uuid": "eddf3476-b6a7-479c-9fb5-54327c392b59", - "start": { - "$date": "2020-12-11T05:32:04.000Z" - }, - "end": { - "$date": "2020-12-11T07:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "e0aa7b6c-54af-437c-9c83-a8bb1655e82b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T05:35:54.000Z" - }, - "end": { - "$date": "2020-12-11T06:10:22.000Z" - }, - "events": [ - { - "uuid": "aca6ed3d-f7cd-4340-9f11-7d642ad6522b", - "start": { - "$date": "2020-12-11T05:35:54.000Z" - }, - "end": { - "$date": "2020-12-11T06:10:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "deb83b3b-8710-4b26-a7a6-35349e42fbdd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-11T05:51:19.000Z" - }, - "end": { - "$date": "2020-12-11T05:53:34.000Z" - }, - "events": [ - { - "uuid": "32b61f21-7843-45e9-a06a-24fb41efeadb", - "start": { - "$date": "2020-12-11T05:51:19.000Z" - }, - "end": { - "$date": "2020-12-11T05:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "649c7f97-c6c3-4fb8-9a29-f6d234636f9c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T06:17:47.000Z" - }, - "end": { - "$date": "2020-12-11T06:31:46.000Z" - }, - "events": [ - { - "uuid": "dc72c375-0081-4693-b88e-8bafceafc33e", - "start": { - "$date": "2020-12-11T06:17:47.000Z" - }, - "end": { - "$date": "2020-12-11T06:31:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "81c429d7-3f1f-47be-9395-50b8e80f1897", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T16:15:45.000Z" - }, - "end": { - "$date": "2020-12-11T16:24:02.000Z" - }, - "events": [ - { - "uuid": "67b8817a-16a1-44cb-86f9-2084ddb6e3d2", - "start": { - "$date": "2020-12-11T16:15:45.000Z" - }, - "end": { - "$date": "2020-12-11T16:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c6277fe6-ed65-4cd8-96a8-413e5c2b0209", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T16:24:56.000Z" - }, - "end": { - "$date": "2020-12-11T17:25:04.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-11T16:24:56.000Z" - }, - "end": { - "$date": "2020-12-11T17:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86fb9235-7c66-449e-9498-68444ec73435", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T17:20:22.000Z" - }, - "end": { - "$date": "2020-12-11T17:39:46.000Z" - }, - "events": [ - { - "uuid": "0a59b565-2229-4bb8-8e1e-882a203ae373", - "start": { - "$date": "2020-12-11T17:20:22.000Z" - }, - "end": { - "$date": "2020-12-11T17:39:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "26e0f526-e612-45b3-801d-6cbc132609da", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T17:25:28.000Z" - }, - "end": { - "$date": "2020-12-11T18:07:26.000Z" - }, - "events": [ - { - "uuid": "76eb8c65-01e4-46ac-81df-fba130a1dd99", - "start": { - "$date": "2020-12-11T17:25:28.000Z" - }, - "end": { - "$date": "2020-12-11T18:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4195ea6a-8ac8-4254-878a-a538098e2b37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T18:18:22.000Z" - }, - "end": { - "$date": "2020-12-11T18:32:10.000Z" - }, - "events": [ - { - "uuid": "d6fc24df-1dbd-4f3f-859c-629b6bdb54ee", - "start": { - "$date": "2020-12-11T18:18:22.000Z" - }, - "end": { - "$date": "2020-12-11T18:32:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "444b604c-4707-4300-b711-0dac3d19ccbe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T18:13:30.000Z" - }, - "end": { - "$date": "2020-12-11T18:27:07.000Z" - }, - "events": [ - { - "uuid": "57ba5778-4831-458a-b734-a58fb1a0603a", - "start": { - "$date": "2020-12-11T18:13:30.000Z" - }, - "end": { - "$date": "2020-12-11T18:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28d07948-7c9a-473d-b309-78b89966e6ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T18:37:28.000Z" - }, - "end": { - "$date": "2020-12-11T18:58:07.000Z" - }, - "events": [ - { - "uuid": "f4a01727-4212-44f6-b182-fe441a746d55", - "start": { - "$date": "2020-12-11T18:37:28.000Z" - }, - "end": { - "$date": "2020-12-11T18:58:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78343747-cd52-447d-bdd7-2ab0324b55a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T19:27:13.000Z" - }, - "end": { - "$date": "2020-12-11T19:42:36.000Z" - }, - "events": [ - { - "uuid": "28ad7eba-63a6-444b-9f5e-446f25753405", - "start": { - "$date": "2020-12-11T19:27:13.000Z" - }, - "end": { - "$date": "2020-12-11T19:42:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12414089-0e6e-48c8-a2a1-f5d4029fc2e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T19:27:30.000Z" - }, - "end": { - "$date": "2020-12-11T19:42:32.000Z" - }, - "events": [ - { - "uuid": "ade723f5-ac56-4feb-b7d4-bfa28204a25a", - "start": { - "$date": "2020-12-11T19:27:30.000Z" - }, - "end": { - "$date": "2020-12-11T19:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a48c5a9d-0eb4-4032-8330-f34c4112e49b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T19:46:26.000Z" - }, - "end": { - "$date": "2020-12-11T20:28:51.000Z" - }, - "events": [ - { - "uuid": "4a3eae7f-5806-481f-aebc-34354d2487ec", - "start": { - "$date": "2020-12-11T19:46:26.000Z" - }, - "end": { - "$date": "2020-12-11T20:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "19339802-bdb3-4d69-a61f-2ab5ad08b250", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-11T20:29:39.000Z" - }, - "end": { - "$date": "2020-12-11T21:09:51.000Z" - }, - "events": [ - { - "uuid": "bec5105d-69b3-4928-9bc3-98a0490f9b4f", - "start": { - "$date": "2020-12-11T20:29:39.000Z" - }, - "end": { - "$date": "2020-12-11T21:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3f3f1a97-ca67-4a96-a43d-d787d000fa7a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-11T21:10:07.000Z" - }, - "end": { - "$date": "2020-12-11T21:15:17.000Z" - }, - "events": [ - { - "uuid": "f32bf3f3-b0ca-472e-8be5-c2872fdbada4", - "start": { - "$date": "2020-12-11T21:10:07.000Z" - }, - "end": { - "$date": "2020-12-11T21:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cd1a2f58-93c5-4373-98da-710f5402088e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-11T21:10:07.000Z" - }, - "end": { - "$date": "2020-12-11T22:56:31.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-11T21:10:07.000Z" - }, - "end": { - "$date": "2020-12-11T22:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "53e62130-9eb2-4b46-9eb8-f8f98db2f394", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T22:13:04.000Z" - }, - "end": { - "$date": "2020-12-11T23:30:32.000Z" - }, - "events": [ - { - "uuid": "391457b1-e49f-417f-aca1-f2c32db21e81", - "start": { - "$date": "2020-12-11T22:13:04.000Z" - }, - "end": { - "$date": "2020-12-11T23:30:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "aff3e4dc-4542-4d76-9291-b463eee00e4a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-11T22:44:34.000Z" - }, - "end": { - "$date": "2020-12-12T00:14:17.000Z" - }, - "events": [ - { - "uuid": "1d7aaf50-f5df-456a-9f39-7c62daf1bf49", - "start": { - "$date": "2020-12-11T22:44:34.000Z" - }, - "end": { - "$date": "2020-12-12T00:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e46d70f2-d272-46d7-a1f2-d9a268ec615e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-11T22:45:02.000Z" - }, - "end": { - "$date": "2020-12-11T23:44:07.000Z" - }, - "events": [ - { - "uuid": "1a8c10f1-a4f7-4049-84f8-a2f58df5011a", - "start": { - "$date": "2020-12-11T22:45:02.000Z" - }, - "end": { - "$date": "2020-12-11T23:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86f157a1-befb-40e8-bcb4-bc3bf3641bc6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-11T23:55:20.000Z" - }, - "end": { - "$date": "2020-12-12T00:13:54.000Z" - }, - "events": [ - { - "uuid": "69fb3485-bc3c-4546-bbe4-766eedd11b35", - "start": { - "$date": "2020-12-11T23:55:20.000Z" - }, - "end": { - "$date": "2020-12-12T00:13:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe166c2a-497b-4580-9d8b-d7a61246224a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T00:17:21.000Z" - }, - "end": { - "$date": "2020-12-12T00:37:41.000Z" - }, - "events": [ - { - "uuid": "e422374b-7571-485d-b0fc-76c2d690c7fd", - "start": { - "$date": "2020-12-12T00:17:21.000Z" - }, - "end": { - "$date": "2020-12-12T00:37:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "40100c62-356b-4d3a-b497-7b25c98eaf66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T00:29:53.000Z" - }, - "end": { - "$date": "2020-12-12T00:49:04.000Z" - }, - "events": [ - { - "uuid": "fa4b7f1d-9300-4d4a-babf-94ba64d41f21", - "start": { - "$date": "2020-12-12T00:29:53.000Z" - }, - "end": { - "$date": "2020-12-12T00:49:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8ddfeb8e-e39f-4bf6-b7c5-d0adc71d4fde", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T00:37:53.000Z" - }, - "end": { - "$date": "2020-12-12T00:55:41.000Z" - }, - "events": [ - { - "uuid": "89e414ba-7b3c-414b-92c0-23c604b65b4a", - "start": { - "$date": "2020-12-12T00:37:53.000Z" - }, - "end": { - "$date": "2020-12-12T00:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6677cc8d-855e-4e77-a4b5-6f40491155ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T00:41:32.000Z" - }, - "end": { - "$date": "2020-12-12T01:00:57.000Z" - }, - "events": [ - { - "uuid": "c3d77f7b-94c9-43de-a01f-f6ff79c757c7", - "start": { - "$date": "2020-12-12T00:41:32.000Z" - }, - "end": { - "$date": "2020-12-12T01:00:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "f8887851-7527-4b2d-9280-6bfa122d8a9b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T01:57:53.000Z" - }, - "end": { - "$date": "2020-12-12T01:58:31.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-12T01:57:53.000Z" - }, - "end": { - "$date": "2020-12-12T01:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "8c80b043-37b2-465e-8bcb-8077ce67646b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T02:01:51.000Z" - }, - "end": { - "$date": "2020-12-12T02:34:29.000Z" - }, - "events": [ - { - "uuid": "969d7a60-d69d-4faa-80aa-248b98cf92da", - "start": { - "$date": "2020-12-12T02:01:51.000Z" - }, - "end": { - "$date": "2020-12-12T02:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "61e57d96-30b1-447d-94ae-232b3c0e8ad6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T02:31:06.000Z" - }, - "end": { - "$date": "2020-12-12T02:44:51.000Z" - }, - "events": [ - { - "uuid": "285cd00b-49b8-4b61-a8ab-3e27ff3468df", - "start": { - "$date": "2020-12-12T02:31:06.000Z" - }, - "end": { - "$date": "2020-12-12T02:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "308d03ba-710f-4ee4-b1bb-28189a99c608", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T02:35:29.000Z" - }, - "end": { - "$date": "2020-12-12T03:50:22.000Z" - }, - "events": [ - { - "uuid": "37e17604-4244-4835-aacd-e6fb304c9945", - "start": { - "$date": "2020-12-12T02:35:29.000Z" - }, - "end": { - "$date": "2020-12-12T03:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "bde7ee8b-1545-4f56-809f-02e1ffd4a0af", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-12T02:36:21.000Z" - }, - "end": { - "$date": "2020-12-12T07:46:34.000Z" - }, - "events": [ - { - "uuid": "97373780-47f9-494b-9cb5-cf589ca98ecf", - "start": { - "$date": "2020-12-12T02:36:21.000Z" - }, - "end": { - "$date": "2020-12-12T07:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c03cdd2b-e0b2-49df-b2ec-77b8fba95e87", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-12T03:00:22.000Z" - }, - "end": { - "$date": "2020-12-12T06:29:34.000Z" - }, - "events": [ - { - "uuid": "2bda4b20-0434-4871-af3d-d86462452021", - "start": { - "$date": "2020-12-12T03:00:22.000Z" - }, - "end": { - "$date": "2020-12-12T06:29:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c30ddb17-f809-499b-be11-75cc9e3ce9f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T03:07:36.000Z" - }, - "end": { - "$date": "2020-12-12T03:21:36.000Z" - }, - "events": [ - { - "uuid": "d0cf945b-a530-45f4-b614-ae4602bb455e", - "start": { - "$date": "2020-12-12T03:07:36.000Z" - }, - "end": { - "$date": "2020-12-12T03:21:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f4292a5-8d45-4c0f-8402-36909f03ca7e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T03:27:02.000Z" - }, - "end": { - "$date": "2020-12-12T03:36:32.000Z" - }, - "events": [ - { - "uuid": "8cd4e9e8-842a-4a04-8432-18c1ea7a3c11", - "start": { - "$date": "2020-12-12T03:27:02.000Z" - }, - "end": { - "$date": "2020-12-12T03:36:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f396f1c-ee2f-46e8-9750-570bde051fa0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T03:39:18.000Z" - }, - "end": { - "$date": "2020-12-12T03:56:57.000Z" - }, - "events": [ - { - "uuid": "504203fb-a4f2-4136-98d0-9d835eb67ee5", - "start": { - "$date": "2020-12-12T03:39:18.000Z" - }, - "end": { - "$date": "2020-12-12T03:56:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c5a51eb1-de37-4f63-b2b8-0639ef3baa0e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T03:54:08.000Z" - }, - "end": { - "$date": "2020-12-12T05:21:22.000Z" - }, - "events": [ - { - "uuid": "ebb96b97-77d4-4f38-9424-e871d5111ba5", - "start": { - "$date": "2020-12-12T03:54:08.000Z" - }, - "end": { - "$date": "2020-12-12T05:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "056acaa5-79c9-47eb-af2c-0e54f71c79b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T04:00:24.000Z" - }, - "end": { - "$date": "2020-12-12T04:16:18.000Z" - }, - "events": [ - { - "uuid": "7562555d-e32d-41ae-a552-c8db5d788d2b", - "start": { - "$date": "2020-12-12T04:00:24.000Z" - }, - "end": { - "$date": "2020-12-12T04:16:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5937c58d-ada6-4c88-b579-b1334e32b483", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T04:20:30.000Z" - }, - "end": { - "$date": "2020-12-12T04:31:14.000Z" - }, - "events": [ - { - "uuid": "19ece139-96fa-4ea2-a816-c8b99742daea", - "start": { - "$date": "2020-12-12T04:20:30.000Z" - }, - "end": { - "$date": "2020-12-12T04:31:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f4f7b38f-a871-4b1d-91dc-96c1ccd740d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T05:32:38.000Z" - }, - "end": { - "$date": "2020-12-12T06:18:03.000Z" - }, - "events": [ - { - "uuid": "54e654b9-d5f0-4510-8847-d98d0fc46207", - "start": { - "$date": "2020-12-12T05:32:38.000Z" - }, - "end": { - "$date": "2020-12-12T06:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c2bc294-1d8c-4e90-bc36-1f29cabbfcee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T05:58:18.000Z" - }, - "end": { - "$date": "2020-12-12T05:58:22.000Z" - }, - "events": [ - { - "uuid": "7b5eba4b-d475-4409-9fe6-c6137c843625", - "start": { - "$date": "2020-12-12T05:58:18.000Z" - }, - "end": { - "$date": "2020-12-12T05:58:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1a564b59-4c77-464c-9cb6-02d7a8915e99", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T05:40:13.000Z" - }, - "end": { - "$date": "2020-12-12T06:17:39.000Z" - }, - "events": [ - { - "uuid": "24681218-aea1-468b-a723-b1387a41dfed", - "start": { - "$date": "2020-12-12T05:40:13.000Z" - }, - "end": { - "$date": "2020-12-12T06:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d3d23a26-49cd-40c2-841d-e1c3ed3fbe9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T06:00:58.000Z" - }, - "end": { - "$date": "2020-12-12T06:51:44.000Z" - }, - "events": [ - { - "uuid": "ebe825ef-5d67-44c7-9f96-acc39b21d99e", - "start": { - "$date": "2020-12-12T06:00:58.000Z" - }, - "end": { - "$date": "2020-12-12T06:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "957e83b0-c067-4d08-8b4f-82e9d756cee8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T06:04:29.000Z" - }, - "end": { - "$date": "2020-12-12T06:52:07.000Z" - }, - "events": [ - { - "uuid": "b5203207-4d71-42db-9616-07b86d660665", - "start": { - "$date": "2020-12-12T06:04:29.000Z" - }, - "end": { - "$date": "2020-12-12T06:52:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "de53f7a0-b95c-4b5e-809f-3604e5051776", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-12T06:05:11.000Z" - }, - "end": { - "$date": "2020-12-12T06:53:12.000Z" - }, - "events": [ - { - "uuid": "6f2c141c-6514-4001-a717-19fc09a7919d", - "start": { - "$date": "2020-12-12T06:05:11.000Z" - }, - "end": { - "$date": "2020-12-12T06:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c2ebce82-d135-48fb-8e69-f434f35db213", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T06:35:46.000Z" - }, - "end": { - "$date": "2020-12-12T06:41:00.000Z" - }, - "events": [ - { - "uuid": "f020c2e0-ed68-4ca4-bf43-f3dfe7bcb739", - "start": { - "$date": "2020-12-12T06:35:46.000Z" - }, - "end": { - "$date": "2020-12-12T06:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e7eada19-7d0f-40aa-be2d-869997d197b5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T06:41:37.000Z" - }, - "end": { - "$date": "2020-12-12T06:45:41.000Z" - }, - "events": [ - { - "uuid": "bc5020a4-22b3-4bfc-be50-35d7b7cc72e9", - "start": { - "$date": "2020-12-12T06:41:37.000Z" - }, - "end": { - "$date": "2020-12-12T06:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ed64c660-4542-468a-834f-f0597f8e4a4c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-12T06:46:37.000Z" - }, - "end": { - "$date": "2020-12-12T08:38:27.000Z" - }, - "events": [ - { - "uuid": "f30bdf0d-2a4f-4ce4-8eed-b31c1306e478", - "start": { - "$date": "2020-12-12T06:46:37.000Z" - }, - "end": { - "$date": "2020-12-12T08:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6a61725c-75b7-4adc-aac4-3626e950720a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T06:48:16.000Z" - }, - "end": { - "$date": "2020-12-12T08:45:27.000Z" - }, - "events": [ - { - "uuid": "b0b60a29-24e6-4a8f-90a3-a7bf1e03d984", - "start": { - "$date": "2020-12-12T06:48:16.000Z" - }, - "end": { - "$date": "2020-12-12T07:47:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "009612b9-9e40-418f-bc2b-6fc58e875175", - "start": { - "$date": "2020-12-12T07:47:16.000Z" - }, - "end": { - "$date": "2020-12-12T07:50:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6fefa00c-c0b0-4140-8fe7-d8d58dd96ae4", - "start": { - "$date": "2020-12-12T07:50:16.000Z" - }, - "end": { - "$date": "2020-12-12T08:45:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c47f995-e8d2-43c2-bfeb-92efe7464f26", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T16:43:51.000Z" - }, - "end": { - "$date": "2020-12-12T16:50:37.000Z" - }, - "events": [ - { - "uuid": "6bc96346-d883-4e96-9afc-a7fc26925813", - "start": { - "$date": "2020-12-12T16:43:51.000Z" - }, - "end": { - "$date": "2020-12-12T16:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f96e08e7-96cc-406b-8491-297bc1cbc1fa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T17:14:24.000Z" - }, - "end": { - "$date": "2020-12-12T17:27:55.000Z" - }, - "events": [ - { - "uuid": "32999edc-14ab-4487-9067-4262af8dc9b8", - "start": { - "$date": "2020-12-12T17:14:24.000Z" - }, - "end": { - "$date": "2020-12-12T17:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "69c1b1ec-82e7-41e1-ae10-d7970cf8b0bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-12T17:24:33.000Z" - }, - "end": { - "$date": "2020-12-12T18:25:01.000Z" - }, - "events": [ - { - "uuid": "f9acb4be-79ab-4c8b-bdeb-5313ee11cb81", - "start": { - "$date": "2020-12-12T17:24:33.000Z" - }, - "end": { - "$date": "2020-12-12T18:25:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69be292a-4de8-4214-855b-747a3d13ac5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T17:53:31.000Z" - }, - "end": { - "$date": "2020-12-12T18:14:38.000Z" - }, - "events": [ - { - "uuid": "1ce990ea-5172-4c9b-b195-8ba47e1a3c34", - "start": { - "$date": "2020-12-12T17:53:31.000Z" - }, - "end": { - "$date": "2020-12-12T18:14:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "65b83bed-5fe8-4e83-8df1-62c8a1582a47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T18:01:13.000Z" - }, - "end": { - "$date": "2020-12-12T18:02:44.000Z" - }, - "events": [ - { - "uuid": "720cd7b2-d070-47a3-a13a-fc216948c3cb", - "start": { - "$date": "2020-12-12T18:01:13.000Z" - }, - "end": { - "$date": "2020-12-12T18:02:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65ad9d0e-4f0f-4ee0-9d7e-e9d0dd4caf56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T18:18:07.000Z" - }, - "end": { - "$date": "2020-12-12T18:27:49.000Z" - }, - "events": [ - { - "uuid": "31b0e5d2-a344-48a4-8d87-e76e9827395a", - "start": { - "$date": "2020-12-12T18:18:07.000Z" - }, - "end": { - "$date": "2020-12-12T18:27:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce9db73a-c332-4c96-a9d8-1e7d49de7df1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T18:31:58.000Z" - }, - "end": { - "$date": "2020-12-12T18:53:00.000Z" - }, - "events": [ - { - "uuid": "36a178af-db09-46f8-8e32-eb72e963b678", - "start": { - "$date": "2020-12-12T18:31:58.000Z" - }, - "end": { - "$date": "2020-12-12T18:53:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb05e64f-33e0-42b1-b82c-391514a6678c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T18:57:24.000Z" - }, - "end": { - "$date": "2020-12-12T19:16:16.000Z" - }, - "events": [ - { - "uuid": "51f6ac35-e9d7-4f0f-b88d-b4c8b2f808b4", - "start": { - "$date": "2020-12-12T18:57:24.000Z" - }, - "end": { - "$date": "2020-12-12T19:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "39290060-34b9-426e-aa96-cb4ea8930e2a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T19:07:25.000Z" - }, - "end": { - "$date": "2020-12-12T19:45:23.000Z" - }, - "events": [ - { - "uuid": "d5ca0ec8-8351-4c72-b8f5-b5046ebb53a7", - "start": { - "$date": "2020-12-12T19:07:25.000Z" - }, - "end": { - "$date": "2020-12-12T19:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8a11649-2d2e-4dd6-9b72-7254975afb39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T19:21:00.000Z" - }, - "end": { - "$date": "2020-12-12T19:34:27.000Z" - }, - "events": [ - { - "uuid": "2a0aa743-f828-40ab-9be6-fab5b9e7d2d0", - "start": { - "$date": "2020-12-12T19:21:00.000Z" - }, - "end": { - "$date": "2020-12-12T19:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e86ec698-4de6-48cd-a464-3ae87a75f201", - "uuid": "f75d1fe5-fa61-43c8-860a-89083f457acc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T19:52:30.000Z" - }, - "end": { - "$date": "2020-12-12T20:46:02.000Z" - }, - "events": [ - { - "uuid": "070abfb7-206a-429c-8ebf-6e3a51972da6", - "start": { - "$date": "2020-12-12T19:52:30.000Z" - }, - "end": { - "$date": "2020-12-12T20:46:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "55e22304-a01d-4784-9ca3-1615cfd436d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T20:19:00.000Z" - }, - "end": { - "$date": "2020-12-12T20:27:47.000Z" - }, - "events": [ - { - "uuid": "1159dfd9-7172-43e7-a673-b62b4e5f78fc", - "start": { - "$date": "2020-12-12T20:19:00.000Z" - }, - "end": { - "$date": "2020-12-12T20:27:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "ab080137-28f1-4021-a518-caa4c5c36f78", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T21:08:59.000Z" - }, - "end": { - "$date": "2020-12-12T21:35:41.000Z" - }, - "events": [ - { - "uuid": "b6e7f6a2-df07-4c9b-8e4c-3f38213fb64e", - "start": { - "$date": "2020-12-12T21:08:59.000Z" - }, - "end": { - "$date": "2020-12-12T21:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "738c9b6a-0e13-4419-ba32-4506907ccaa3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T21:10:04.000Z" - }, - "end": { - "$date": "2020-12-12T21:46:45.000Z" - }, - "events": [ - { - "uuid": "32c8c695-e8f5-4367-b4d5-c38627feefab", - "start": { - "$date": "2020-12-12T21:10:04.000Z" - }, - "end": { - "$date": "2020-12-12T21:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fa1d5d66-6315-44cd-97e4-01727507d7ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-12T21:25:30.000Z" - }, - "end": { - "$date": "2020-12-12T22:11:05.000Z" - }, - "events": [ - { - "uuid": "7327bfd4-c65b-4d7c-afe1-17c324a6ebb4", - "start": { - "$date": "2020-12-12T21:25:30.000Z" - }, - "end": { - "$date": "2020-12-12T22:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "43651e58-e997-4030-a533-2fcf2ea1744c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-12T21:33:03.000Z" - }, - "end": { - "$date": "2020-12-12T23:37:07.000Z" - }, - "events": [ - { - "uuid": "0fbf74c2-8745-4dac-9146-f47c80c6b309", - "start": { - "$date": "2020-12-12T21:33:03.000Z" - }, - "end": { - "$date": "2020-12-12T23:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "591c7a6d-97f7-4f80-8ee8-ae92143c20d4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-12T21:42:03.000Z" - }, - "end": { - "$date": "2020-12-12T23:26:37.000Z" - }, - "events": [ - { - "uuid": "8e66da84-70aa-46f6-95dd-ca375d135dc3", - "start": { - "$date": "2020-12-12T21:42:03.000Z" - }, - "end": { - "$date": "2020-12-12T23:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a92a35db-17c9-4b32-a918-505e3de4b5ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T21:51:30.000Z" - }, - "end": { - "$date": "2020-12-12T21:54:21.000Z" - }, - "events": [ - { - "uuid": "21af8c36-487e-454c-b995-2e2c9268f703", - "start": { - "$date": "2020-12-12T21:51:30.000Z" - }, - "end": { - "$date": "2020-12-12T21:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "585fb5e3-5992-4811-bed4-aaffb6727302", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T21:52:20.000Z" - }, - "end": { - "$date": "2020-12-12T22:22:29.000Z" - }, - "events": [ - { - "uuid": "2074738b-651a-4562-88a1-ae9c0af39088", - "start": { - "$date": "2020-12-12T21:52:20.000Z" - }, - "end": { - "$date": "2020-12-12T22:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "215c744f-519e-49d5-b0ee-1b46d7c7d8ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T21:54:41.000Z" - }, - "end": { - "$date": "2020-12-12T22:03:12.000Z" - }, - "events": [ - { - "uuid": "7a11c0ca-9c6e-4eb1-82e7-9b7effc321c2", - "start": { - "$date": "2020-12-12T21:54:41.000Z" - }, - "end": { - "$date": "2020-12-12T22:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d3d5916c-47f4-4f48-ac2e-cd388263002a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T22:25:37.000Z" - }, - "end": { - "$date": "2020-12-12T22:26:17.000Z" - }, - "events": [ - { - "uuid": "3c2f808c-fd75-40f4-9cd7-dbb2728c76f7", - "start": { - "$date": "2020-12-12T22:25:37.000Z" - }, - "end": { - "$date": "2020-12-12T22:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7886d078-6a44-4a19-ba79-ddebbf80d927", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T22:26:27.000Z" - }, - "end": { - "$date": "2020-12-12T23:12:38.000Z" - }, - "events": [ - { - "uuid": "cce7e5d3-c4e4-4688-9aa5-3a7bf379bf1d", - "start": { - "$date": "2020-12-12T22:26:27.000Z" - }, - "end": { - "$date": "2020-12-12T23:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "25b19ca3-6e98-46aa-8751-4697801f2d6e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-12T22:30:28.000Z" - }, - "end": { - "$date": "2020-12-12T22:56:21.000Z" - }, - "events": [ - { - "uuid": "ff175a38-3c9a-4d9f-904b-eb7ff1f8ab8a", - "start": { - "$date": "2020-12-12T22:30:28.000Z" - }, - "end": { - "$date": "2020-12-12T22:56:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61b2abc0-23bb-4d84-b2a4-9abcc0a48dbd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T22:41:29.000Z" - }, - "end": { - "$date": "2020-12-12T23:01:45.000Z" - }, - "events": [ - { - "uuid": "2ff09621-6e05-46ae-8551-e43d8f22c006", - "start": { - "$date": "2020-12-12T22:41:29.000Z" - }, - "end": { - "$date": "2020-12-12T23:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e4ad74d0-cdc3-4f67-aec0-2a806db1ebf9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-12T22:38:43.000Z" - }, - "end": { - "$date": "2020-12-12T23:20:03.000Z" - }, - "events": [ - { - "uuid": "b675b9de-885a-4ffe-8617-617a12844e95", - "start": { - "$date": "2020-12-12T22:38:43.000Z" - }, - "end": { - "$date": "2020-12-12T23:20:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c64a012d-6486-423f-bc28-fb7c7189c7d3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-12T22:43:29.000Z" - }, - "end": { - "$date": "2020-12-13T00:30:05.000Z" - }, - "events": [ - { - "uuid": "ec63cc6a-04de-469a-8971-fc526f4d19aa", - "start": { - "$date": "2020-12-12T22:43:29.000Z" - }, - "end": { - "$date": "2020-12-13T00:30:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "28aab40c-b9a2-40b8-8c7f-cb4bb7202101", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-12T23:06:37.000Z" - }, - "end": { - "$date": "2020-12-13T02:51:54.000Z" - }, - "events": [ - { - "uuid": "3e673ce6-5102-4ae6-80ae-f8918bfd140a", - "start": { - "$date": "2020-12-12T23:06:37.000Z" - }, - "end": { - "$date": "2020-12-13T02:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5de2d3a9-2f32-4874-a20f-fa75059a1858", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T23:21:15.000Z" - }, - "end": { - "$date": "2020-12-12T23:31:41.000Z" - }, - "events": [ - { - "uuid": "27f34637-4044-4feb-82c0-3c67b6cba259", - "start": { - "$date": "2020-12-12T23:21:15.000Z" - }, - "end": { - "$date": "2020-12-12T23:31:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4255e78b-0f33-431c-9bc9-a57f178a7721", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-12T23:19:29.000Z" - }, - "end": { - "$date": "2020-12-13T02:41:59.000Z" - }, - "events": [ - { - "uuid": "c9fc3b43-7841-4c9d-b3d2-142c9cbceb6a", - "start": { - "$date": "2020-12-12T23:19:29.000Z" - }, - "end": { - "$date": "2020-12-13T02:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", - "uuid": "3bd56ec8-db79-48b2-928a-52ccea750098", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-12T23:21:50.000Z" - }, - "end": { - "$date": "2020-12-13T01:03:18.000Z" - }, - "events": [ - { - "uuid": "cfa68177-053d-4867-8741-c4b188b9510c", - "start": { - "$date": "2020-12-12T23:21:50.000Z" - }, - "end": { - "$date": "2020-12-13T01:03:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c50e050-f7a1-48bb-9e73-8664f86d8832", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-12T23:35:41.000Z" - }, - "end": { - "$date": "2020-12-12T23:55:42.000Z" - }, - "events": [ - { - "uuid": "3d95eba7-5622-40a3-8a75-d9f604bec957", - "start": { - "$date": "2020-12-12T23:35:41.000Z" - }, - "end": { - "$date": "2020-12-12T23:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ab1dfcc9-0b9e-453b-932e-db8fc54add4e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-12T23:59:05.000Z" - }, - "end": { - "$date": "2020-12-13T01:57:52.000Z" - }, - "events": [ - { - "uuid": "8e888869-d0b8-418c-b35a-799db6c4d4ac", - "start": { - "$date": "2020-12-12T23:59:05.000Z" - }, - "end": { - "$date": "2020-12-13T01:57:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf4386a1-ce96-4d6d-9783-9d42de7497c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T01:00:23.000Z" - }, - "end": { - "$date": "2020-12-13T01:10:09.000Z" - }, - "events": [ - { - "uuid": "060bba84-2238-48df-8c79-9a7e2c34bf14", - "start": { - "$date": "2020-12-13T01:00:23.000Z" - }, - "end": { - "$date": "2020-12-13T01:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8ac2516-0cb1-4ce7-8d6c-c4c3ba8dbf4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T01:14:29.000Z" - }, - "end": { - "$date": "2020-12-13T01:31:54.000Z" - }, - "events": [ - { - "uuid": "d8ed8c3a-8753-4726-b44a-4987948b4f73", - "start": { - "$date": "2020-12-13T01:14:29.000Z" - }, - "end": { - "$date": "2020-12-13T01:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a4a9c85-7ebe-4eb4-8ee9-b55cd811a38d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T01:35:05.000Z" - }, - "end": { - "$date": "2020-12-13T01:51:26.000Z" - }, - "events": [ - { - "uuid": "e2a77310-8855-43fe-80fb-a8cbf8e5102a", - "start": { - "$date": "2020-12-13T01:35:05.000Z" - }, - "end": { - "$date": "2020-12-13T01:51:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "b11d0d35-9a54-4e36-b9bc-8a657b5abb18", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-13T01:47:52.000Z" - }, - "end": { - "$date": "2020-12-13T05:28:16.000Z" - }, - "events": [ - { - "uuid": "b00e99eb-f85a-4e37-8cc8-a2663abec58d", - "start": { - "$date": "2020-12-13T01:47:52.000Z" - }, - "end": { - "$date": "2020-12-13T05:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "fcc2e64d-2876-43d1-8a3d-d079d1105101", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-13T02:28:46.000Z" - }, - "end": { - "$date": "2020-12-13T03:29:19.000Z" - }, - "events": [ - { - "uuid": "ad902879-8aef-4912-823d-14aea1d4ce15", - "start": { - "$date": "2020-12-13T02:28:46.000Z" - }, - "end": { - "$date": "2020-12-13T03:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cded4efd-56ea-4766-8890-d4012d93963c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T03:21:54.000Z" - }, - "end": { - "$date": "2020-12-13T03:33:59.000Z" - }, - "events": [ - { - "uuid": "3e1ed50d-eded-4004-a30f-70a081687165", - "start": { - "$date": "2020-12-13T03:21:54.000Z" - }, - "end": { - "$date": "2020-12-13T03:33:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6810a335-1226-4548-9d5a-96f158275032", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T03:38:50.000Z" - }, - "end": { - "$date": "2020-12-13T03:59:21.000Z" - }, - "events": [ - { - "uuid": "091eb9b4-9185-47cf-9d65-e374bb23eb8f", - "start": { - "$date": "2020-12-13T03:38:50.000Z" - }, - "end": { - "$date": "2020-12-13T03:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c5cf1144-f248-47ea-bc29-26b97362588e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-13T03:44:59.000Z" - }, - "end": { - "$date": "2020-12-13T04:50:41.000Z" - }, - "events": [ - { - "uuid": "ee819c5f-4f7f-4459-90e2-4b001f5e8d3d", - "start": { - "$date": "2020-12-13T03:44:59.000Z" - }, - "end": { - "$date": "2020-12-13T04:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "415470cb-d6d7-46c7-a905-0a86e88d939f", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-12-13T03:50:54.000Z" - }, - "end": { - "$date": "2020-12-13T05:20:34.000Z" - }, - "events": [ - { - "uuid": "be2786c4-5a50-4489-98dc-b128f9371831", - "start": { - "$date": "2020-12-13T03:50:54.000Z" - }, - "end": { - "$date": "2020-12-13T05:20:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bcba4bdd-40f6-434c-980a-56f03ed916ea", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-13T03:50:58.000Z" - }, - "end": { - "$date": "2020-12-13T05:20:40.000Z" - }, - "events": [ - { - "uuid": "578e468c-a85f-4883-b163-e307823388e4", - "start": { - "$date": "2020-12-13T03:50:58.000Z" - }, - "end": { - "$date": "2020-12-13T05:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "6cb6b3af-3002-4b54-929c-16d0a8f3b297", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-13T03:52:07.000Z" - }, - "end": { - "$date": "2020-12-13T04:18:59.000Z" - }, - "events": [ - { - "uuid": "01c384cd-9dcf-49e6-b8cc-d9893c67bb26", - "start": { - "$date": "2020-12-13T03:52:07.000Z" - }, - "end": { - "$date": "2020-12-13T04:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "d25a6f18-867f-4af9-acff-b2a6a0c2596e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-13T04:11:21.000Z" - }, - "end": { - "$date": "2020-12-13T10:48:41.000Z" - }, - "events": [ - { - "uuid": "8686a52f-6a59-4266-90e7-4aff908f7f2e", - "start": { - "$date": "2020-12-13T04:11:21.000Z" - }, - "end": { - "$date": "2020-12-13T10:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "f312fa34-539c-464f-bfbf-7b9df267c280", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T05:10:24.000Z" - }, - "end": { - "$date": "2020-12-13T06:34:21.000Z" - }, - "events": [ - { - "uuid": "4a757752-30a7-43d4-b251-bff43fd22953", - "start": { - "$date": "2020-12-13T05:10:24.000Z" - }, - "end": { - "$date": "2020-12-13T06:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "e8e9cece-3357-47e3-aad9-aac2f268277d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T05:20:32.000Z" - }, - "end": { - "$date": "2020-12-13T05:43:54.000Z" - }, - "events": [ - { - "uuid": "13b08284-da6d-496c-b8ee-4062fd930b98", - "start": { - "$date": "2020-12-13T05:20:32.000Z" - }, - "end": { - "$date": "2020-12-13T05:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "481b6a7e-3a95-4db1-9b34-a8aa665e41c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T05:44:18.000Z" - }, - "end": { - "$date": "2020-12-13T05:51:04.000Z" - }, - "events": [ - { - "uuid": "de621255-3ba7-49cb-8c65-a2dcec0543f8", - "start": { - "$date": "2020-12-13T05:44:18.000Z" - }, - "end": { - "$date": "2020-12-13T05:51:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "dd63bc7f-9ec4-46db-8cc3-d80eabb1bafe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T05:51:14.000Z" - }, - "end": { - "$date": "2020-12-13T06:40:38.000Z" - }, - "events": [ - { - "uuid": "0bf0ca2f-efba-4014-bdc6-75a515914899", - "start": { - "$date": "2020-12-13T05:51:14.000Z" - }, - "end": { - "$date": "2020-12-13T06:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "67f5af3f-bac7-45a7-8e6c-7d6bbc5e4ba8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-13T05:58:44.000Z" - }, - "end": { - "$date": "2020-12-13T07:33:31.000Z" - }, - "events": [ - { - "uuid": "ed9249fe-b40c-455a-8505-dc303a231ee2", - "start": { - "$date": "2020-12-13T05:58:44.000Z" - }, - "end": { - "$date": "2020-12-13T07:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "86de1cd7-a0d1-4cf7-ae34-c773631c821e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-13T06:19:42.000Z" - }, - "end": { - "$date": "2020-12-13T06:46:53.000Z" - }, - "events": [ - { - "uuid": "eb6e4f74-937f-4b8a-9d33-cc525a1f781a", - "start": { - "$date": "2020-12-13T06:19:42.000Z" - }, - "end": { - "$date": "2020-12-13T06:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "78ec3860-bb7c-40c3-a7a3-88f331148280", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-13T06:09:45.000Z" - }, - "end": { - "$date": "2020-12-13T06:11:11.000Z" - }, - "events": [ - { - "uuid": "a4620ead-f84f-433a-9bba-f905d96b31c6", - "start": { - "$date": "2020-12-13T06:09:45.000Z" - }, - "end": { - "$date": "2020-12-13T06:11:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "30357b1e-d693-4685-b4f8-9b1f6d2aaa55", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-13T06:10:47.000Z" - }, - "end": { - "$date": "2020-12-13T08:27:04.000Z" - }, - "events": [ - { - "uuid": "13ced4d9-8a6a-450a-8cdc-d25da3c6ce21", - "start": { - "$date": "2020-12-13T06:10:47.000Z" - }, - "end": { - "$date": "2020-12-13T08:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "76b5c5da-d99a-4471-bf4e-914a38472bf0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-13T06:11:34.000Z" - }, - "end": { - "$date": "2020-12-13T06:48:49.000Z" - }, - "events": [ - { - "uuid": "0173eb84-4336-4b11-9881-b2e0e80215ab", - "start": { - "$date": "2020-12-13T06:11:34.000Z" - }, - "end": { - "$date": "2020-12-13T06:48:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c2f1c559-1d45-45a9-917a-c584cf24d65c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-13T06:47:14.000Z" - }, - "end": { - "$date": "2020-12-13T06:48:18.000Z" - }, - "events": [ - { - "uuid": "073d5a02-cb24-4995-86d5-1f012975b197", - "start": { - "$date": "2020-12-13T06:47:14.000Z" - }, - "end": { - "$date": "2020-12-13T06:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "7f90c58e-ef1d-4ab3-a0e3-c93e7842a276", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-13T06:51:40.000Z" - }, - "end": { - "$date": "2020-12-13T06:57:14.000Z" - }, - "events": [ - { - "uuid": "51baefe7-4cdf-44a5-a4c2-7aa7dec17c64", - "start": { - "$date": "2020-12-13T06:51:40.000Z" - }, - "end": { - "$date": "2020-12-13T06:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "29bd84a7-0348-4771-b3b0-d2121588454f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-13T06:56:49.000Z" - }, - "end": { - "$date": "2020-12-13T07:36:55.000Z" - }, - "events": [ - { - "uuid": "991af755-5b2a-4e8c-8caa-368aea2e7c67", - "start": { - "$date": "2020-12-13T06:56:49.000Z" - }, - "end": { - "$date": "2020-12-13T07:36:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "42081f04-cda3-4b82-b5ca-5b78ae2cffc4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-13T07:06:31.000Z" - }, - "end": { - "$date": "2020-12-13T07:22:22.000Z" - }, - "events": [ - { - "uuid": "15f4e4bc-c267-4700-b46c-c609e6415871", - "start": { - "$date": "2020-12-13T07:06:31.000Z" - }, - "end": { - "$date": "2020-12-13T07:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "a42d7847-ef9d-4897-865b-3c2f7acc502b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-13T07:22:58.000Z" - }, - "end": { - "$date": "2020-12-13T07:38:28.000Z" - }, - "events": [ - { - "uuid": "6d2ea8d0-8c78-4bdc-a785-0bd41ae77861", - "start": { - "$date": "2020-12-13T07:22:58.000Z" - }, - "end": { - "$date": "2020-12-13T07:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a1058e0b-5ece-4aaa-8d34-a736c6b818a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-13T15:36:29.000Z" - }, - "end": { - "$date": "2020-12-13T16:25:30.000Z" - }, - "events": [ - { - "uuid": "382e2ba4-2730-449c-9c89-a3979a1507ac", - "start": { - "$date": "2020-12-13T15:36:29.000Z" - }, - "end": { - "$date": "2020-12-13T16:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "265cbf01-5de9-4217-be35-a227b0c33da3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-13T16:11:16.000Z" - }, - "end": { - "$date": "2020-12-13T17:37:52.000Z" - }, - "events": [ - { - "uuid": "f9d8e4dc-9e50-4ffe-8b52-0afc606273a9", - "start": { - "$date": "2020-12-13T16:11:16.000Z" - }, - "end": { - "$date": "2020-12-13T17:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c3e1f59b-db14-47d6-ad66-44d2271f2e2e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-13T16:31:26.000Z" - }, - "end": { - "$date": "2020-12-13T16:59:46.000Z" - }, - "events": [ - { - "uuid": "765dd6fb-8fb5-491b-ad4f-4fe16b951f23", - "start": { - "$date": "2020-12-13T16:31:26.000Z" - }, - "end": { - "$date": "2020-12-13T16:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "1fdfc0c2-39b8-448f-857c-2a70e952995f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T16:48:15.000Z" - }, - "end": { - "$date": "2020-12-13T17:19:03.000Z" - }, - "events": [ - { - "uuid": "1d2a75f1-6319-4e0d-a769-7191356d781c", - "start": { - "$date": "2020-12-13T16:48:15.000Z" - }, - "end": { - "$date": "2020-12-13T17:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c1c50821-ef41-4e6f-a742-3f2c50ba5e1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T17:20:02.000Z" - }, - "end": { - "$date": "2020-12-13T18:21:50.000Z" - }, - "events": [ - { - "uuid": "b38ec9db-e013-4b5d-90ea-9e8684b1835f", - "start": { - "$date": "2020-12-13T17:20:02.000Z" - }, - "end": { - "$date": "2020-12-13T18:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0656b23e-3344-4c54-a77e-87e2eefec957", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T17:39:23.000Z" - }, - "end": { - "$date": "2020-12-13T17:59:14.000Z" - }, - "events": [ - { - "uuid": "3ebc3b7f-8883-477c-93b7-cf07256263c4", - "start": { - "$date": "2020-12-13T17:39:23.000Z" - }, - "end": { - "$date": "2020-12-13T17:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d4a9d8e-577c-4d29-b123-1520fe00b0fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T18:03:49.000Z" - }, - "end": { - "$date": "2020-12-13T18:21:07.000Z" - }, - "events": [ - { - "uuid": "c50b4677-c197-4fd4-96a4-fdf7b1f9bcb4", - "start": { - "$date": "2020-12-13T18:03:49.000Z" - }, - "end": { - "$date": "2020-12-13T18:21:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "ebbcb57b-9639-4dbf-871f-db6f1a9ea024", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-13T18:03:00.000Z" - }, - "end": { - "$date": "2020-12-13T19:51:53.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-13T18:03:00.000Z" - }, - "end": { - "$date": "2020-12-13T19:51:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "13f42c92-dbd1-48a8-95d1-24e92fc11210", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T18:22:10.000Z" - }, - "end": { - "$date": "2020-12-13T18:26:20.000Z" - }, - "events": [ - { - "uuid": "a5cffcc1-dc6f-4a30-9e06-b0b7a69fa2b0", - "start": { - "$date": "2020-12-13T18:22:10.000Z" - }, - "end": { - "$date": "2020-12-13T18:26:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e959d35f-f1ce-4509-b52b-ed88f790f1dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T18:25:00.000Z" - }, - "end": { - "$date": "2020-12-13T18:44:22.000Z" - }, - "events": [ - { - "uuid": "b4da4f20-f61b-477d-8c48-a7f541744bfd", - "start": { - "$date": "2020-12-13T18:25:00.000Z" - }, - "end": { - "$date": "2020-12-13T18:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c87f5425-38f2-4165-99b6-3b75f715ec3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T18:30:06.000Z" - }, - "end": { - "$date": "2020-12-13T19:14:59.000Z" - }, - "events": [ - { - "uuid": "a8a30aba-9900-48eb-9fe4-65a4295db295", - "start": { - "$date": "2020-12-13T18:30:06.000Z" - }, - "end": { - "$date": "2020-12-13T19:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "2ff48165-c71e-4f53-b6a8-86be93091921", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-13T20:28:30.000Z" - }, - "end": { - "$date": "2020-12-13T21:11:21.000Z" - }, - "events": [ - { - "uuid": "aff0372e-aa47-491d-8b44-3f53b6a5171d", - "start": { - "$date": "2020-12-13T20:28:30.000Z" - }, - "end": { - "$date": "2020-12-13T21:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "9a201423-e5c5-470e-8b29-ec7ca064f6d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-13T20:34:40.000Z" - }, - "end": { - "$date": "2020-12-13T21:05:59.000Z" - }, - "events": [ - { - "uuid": "7cca87bb-99bd-4d4f-8d9a-cc03f478921d", - "start": { - "$date": "2020-12-13T20:34:40.000Z" - }, - "end": { - "$date": "2020-12-13T21:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "5cf9e930-39f8-480d-b191-f53107f549fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T20:43:03.000Z" - }, - "end": { - "$date": "2020-12-13T21:18:55.000Z" - }, - "events": [ - { - "uuid": "c32588f7-60bd-42f0-813e-a943153b758f", - "start": { - "$date": "2020-12-13T20:43:03.000Z" - }, - "end": { - "$date": "2020-12-13T21:18:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "6638b42e-a4fb-43a6-a184-070a4a749cbd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-13T21:30:35.000Z" - }, - "end": { - "$date": "2020-12-13T22:54:41.000Z" - }, - "events": [ - { - "uuid": "2288e8cc-52fe-4340-af00-7c9ba9d75c90", - "start": { - "$date": "2020-12-13T21:30:35.000Z" - }, - "end": { - "$date": "2020-12-13T22:54:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "04bba545-5b66-4e83-aa49-c4bd9e3c1c7b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-13T21:48:10.000Z" - }, - "end": { - "$date": "2020-12-14T00:53:12.000Z" - }, - "events": [ - { - "uuid": "6a1e74ff-06c4-4f37-80a2-5f335d2468a3", - "start": { - "$date": "2020-12-13T21:48:10.000Z" - }, - "end": { - "$date": "2020-12-14T00:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "846380ef-036e-4826-b808-02e4a066f76c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-13T22:01:06.000Z" - }, - "end": { - "$date": "2020-12-13T23:10:23.000Z" - }, - "events": [ - { - "uuid": "26ba587c-3f5e-4ea3-ba33-9eddbeeba38d", - "start": { - "$date": "2020-12-13T22:01:06.000Z" - }, - "end": { - "$date": "2020-12-13T23:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "5e5ec918-b607-4fc2-ab5b-941b620fa960", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-13T22:44:19.000Z" - }, - "end": { - "$date": "2020-12-13T22:55:23.000Z" - }, - "events": [ - { - "uuid": "33d5b1bf-44eb-40fc-8ef0-5f00368e6110", - "start": { - "$date": "2020-12-13T22:44:19.000Z" - }, - "end": { - "$date": "2020-12-13T22:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10f5eb02-91d8-45f3-bede-a228856db516", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T23:19:32.000Z" - }, - "end": { - "$date": "2020-12-13T23:40:09.000Z" - }, - "events": [ - { - "uuid": "9642e9cc-8f58-4721-97bc-f6a5f1ebd679", - "start": { - "$date": "2020-12-13T23:19:32.000Z" - }, - "end": { - "$date": "2020-12-13T23:40:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "734c30d0-3121-41ed-8e93-e8c6359bda06", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-13T23:44:28.000Z" - }, - "end": { - "$date": "2020-12-14T00:01:44.000Z" - }, - "events": [ - { - "uuid": "5e49812a-37c2-4ed7-9e2b-dbf8c98f511e", - "start": { - "$date": "2020-12-13T23:44:28.000Z" - }, - "end": { - "$date": "2020-12-14T00:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "0bb4f57f-51f4-47f9-a8f7-cca42ca8dfc5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-13T23:40:45.000Z" - }, - "end": { - "$date": "2020-12-14T01:35:23.000Z" - }, - "events": [ - { - "uuid": "11308d95-835d-4ffb-993d-077a7ddd6966", - "start": { - "$date": "2020-12-13T23:40:45.000Z" - }, - "end": { - "$date": "2020-12-14T01:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ddba5544-44ec-410f-8df1-f06b5e884fef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-14T00:08:50.000Z" - }, - "end": { - "$date": "2020-12-14T02:07:31.000Z" - }, - "events": [ - { - "uuid": "89cb1557-1958-49cd-bd97-bce7c495b0ca", - "start": { - "$date": "2020-12-14T00:08:50.000Z" - }, - "end": { - "$date": "2020-12-14T02:07:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a2ed72bf-a4e0-470c-a64f-fcea1a3a880b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-14T00:34:53.000Z" - }, - "end": { - "$date": "2020-12-14T00:36:39.000Z" - }, - "events": [ - { - "uuid": "d23742b1-5c14-452e-b71c-657c1044441a", - "start": { - "$date": "2020-12-14T00:34:53.000Z" - }, - "end": { - "$date": "2020-12-14T00:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "7269e6bf-c833-429e-bde9-c38e705998a9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-14T00:37:13.000Z" - }, - "end": { - "$date": "2020-12-14T02:57:18.000Z" - }, - "events": [ - { - "uuid": "51faad69-935e-4179-abc0-f1a8d1d84e87", - "start": { - "$date": "2020-12-14T00:37:13.000Z" - }, - "end": { - "$date": "2020-12-14T02:21:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4a78783-fff7-499f-90ea-dfd5e54e1558", - "start": { - "$date": "2020-12-14T02:21:13.000Z" - }, - "end": { - "$date": "2020-12-14T02:57:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "82c970c2-c25e-4f40-9777-949f70f55857", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-14T02:06:13.000Z" - }, - "end": { - "$date": "2020-12-14T03:01:26.000Z" - }, - "events": [ - { - "uuid": "d449989a-05c0-4b65-85a8-ccd64746689a", - "start": { - "$date": "2020-12-14T02:06:13.000Z" - }, - "end": { - "$date": "2020-12-14T03:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "8e3b0bf9-0a05-475f-b861-89bdca2e35a7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-14T02:12:41.000Z" - }, - "end": { - "$date": "2020-12-14T04:04:26.000Z" - }, - "events": [ - { - "uuid": "53086de2-524a-48b5-8b21-2a0dc98fc566", - "start": { - "$date": "2020-12-14T02:12:41.000Z" - }, - "end": { - "$date": "2020-12-14T04:04:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f43a9fa6-3979-40f8-b818-067288f8db81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-14T02:12:49.000Z" - }, - "end": { - "$date": "2020-12-14T03:19:26.000Z" - }, - "events": [ - { - "uuid": "0200c800-21cd-4b33-b441-580143ba0e6a", - "start": { - "$date": "2020-12-14T02:12:49.000Z" - }, - "end": { - "$date": "2020-12-14T03:19:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d83884bb-3771-4f6d-a1de-b0a442ed9499", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-14T04:00:55.000Z" - }, - "end": { - "$date": "2020-12-14T04:02:09.000Z" - }, - "events": [ - { - "uuid": "31ff72df-0530-4717-a9a8-b9e230a445ef", - "start": { - "$date": "2020-12-14T04:00:55.000Z" - }, - "end": { - "$date": "2020-12-14T04:02:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "72d411a7-0824-42b4-9105-c1f406298eb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-14T04:11:48.000Z" - }, - "end": { - "$date": "2020-12-14T05:50:35.000Z" - }, - "events": [ - { - "uuid": "cdbd7a15-c3f9-4140-9bf9-5de2b73b72fa", - "start": { - "$date": "2020-12-14T04:11:48.000Z" - }, - "end": { - "$date": "2020-12-14T05:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e86ec698-4de6-48cd-a464-3ae87a75f201", - "uuid": "aaddf92e-6cdd-4ccd-8f7c-6e25e7328c05", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-14T04:23:22.000Z" - }, - "end": { - "$date": "2020-12-14T04:36:57.000Z" - }, - "events": [ - { - "uuid": "3b4c0c0b-902d-4c1b-a582-15459fe60390", - "start": { - "$date": "2020-12-14T04:23:22.000Z" - }, - "end": { - "$date": "2020-12-14T04:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fd1eac0-9a0a-41d2-90b8-6e93930a192b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-14T04:51:33.000Z" - }, - "end": { - "$date": "2020-12-14T05:08:13.000Z" - }, - "events": [ - { - "uuid": "a7f80a07-a430-41e4-a723-ffab7b07179d", - "start": { - "$date": "2020-12-14T04:51:33.000Z" - }, - "end": { - "$date": "2020-12-14T05:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "bad385c0-8032-4afb-8488-06b42685d773", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-14T04:49:46.000Z" - }, - "end": { - "$date": "2020-12-14T06:07:03.000Z" - }, - "events": [ - { - "uuid": "4576c2de-5cec-41ec-a6d0-de3b37d93ca3", - "start": { - "$date": "2020-12-14T04:49:46.000Z" - }, - "end": { - "$date": "2020-12-14T06:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "9b02a406-9e12-482b-a19d-86b97dadfd2d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-14T05:22:07.000Z" - }, - "end": { - "$date": "2020-12-14T05:48:52.000Z" - }, - "events": [ - { - "uuid": "5799003d-634d-4caa-8bd2-c15dfd23c074", - "start": { - "$date": "2020-12-14T05:22:07.000Z" - }, - "end": { - "$date": "2020-12-14T05:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "48c56e24-92e0-457c-9d57-3f9ba290e450", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-14T05:26:34.000Z" - }, - "end": { - "$date": "2020-12-14T06:17:28.000Z" - }, - "events": [ - { - "uuid": "21650097-2da5-4b61-9779-0d7234e83cb6", - "start": { - "$date": "2020-12-14T05:26:34.000Z" - }, - "end": { - "$date": "2020-12-14T06:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "7c6883a0-3634-431f-8ea4-6ad22eb1467f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-14T06:09:56.000Z" - }, - "end": { - "$date": "2020-12-14T07:35:36.000Z" - }, - "events": [ - { - "uuid": "2de13c29-bdb8-438f-b246-f577603d1303", - "start": { - "$date": "2020-12-14T06:09:56.000Z" - }, - "end": { - "$date": "2020-12-14T07:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b9ccf885-1a73-4383-afc7-74e0510ef946", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-14T06:11:19.000Z" - }, - "end": { - "$date": "2020-12-14T06:36:56.000Z" - }, - "events": [ - { - "uuid": "6b003eb7-412b-4bb5-af33-23c8b4188baf", - "start": { - "$date": "2020-12-14T06:11:19.000Z" - }, - "end": { - "$date": "2020-12-14T06:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d8addd7b-e4a8-4595-b5b8-7f7342d6a47f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-14T07:02:16.000Z" - }, - "end": { - "$date": "2020-12-14T07:31:17.000Z" - }, - "events": [ - { - "uuid": "7fc49751-e956-440f-8a5b-32d34617f73f", - "start": { - "$date": "2020-12-14T07:02:16.000Z" - }, - "end": { - "$date": "2020-12-14T07:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "455fb0f0-115d-401e-b47b-3582702b715f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-14T16:28:45.000Z" - }, - "end": { - "$date": "2020-12-14T17:27:28.000Z" - }, - "events": [ - { - "uuid": "79542414-93bb-41a7-a6db-af9986dfc3ee", - "start": { - "$date": "2020-12-14T16:28:45.000Z" - }, - "end": { - "$date": "2020-12-14T17:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "22edda98-675d-493e-bfed-170e9a74e8cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-14T17:36:33.000Z" - }, - "end": { - "$date": "2020-12-14T18:28:17.000Z" - }, - "events": [ - { - "uuid": "e8019665-2d75-4912-b315-ed4204fc4035", - "start": { - "$date": "2020-12-14T17:36:33.000Z" - }, - "end": { - "$date": "2020-12-14T18:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6b8e4d68-6c9b-48b5-9965-0e78b9f85633", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-14T19:14:18.000Z" - }, - "end": { - "$date": "2020-12-14T20:12:49.000Z" - }, - "events": [ - { - "uuid": "e1d1ffa5-d6a7-48de-bbad-7dd11099b4be", - "start": { - "$date": "2020-12-14T19:14:18.000Z" - }, - "end": { - "$date": "2020-12-14T20:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1b21524a-45d3-4471-b817-fc2bd210e0bc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-14T20:29:45.000Z" - }, - "end": { - "$date": "2020-12-14T20:36:16.000Z" - }, - "events": [ - { - "uuid": "30a90530-80ea-4b42-b831-dcc92249f6fb", - "start": { - "$date": "2020-12-14T20:29:45.000Z" - }, - "end": { - "$date": "2020-12-14T20:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e53b5129-7e5d-4900-a8b1-d6fa780d7f12", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-14T20:49:17.000Z" - }, - "end": { - "$date": "2020-12-14T21:07:58.000Z" - }, - "events": [ - { - "uuid": "507f77bf-2cec-4d03-8847-340d1ff801f2", - "start": { - "$date": "2020-12-14T20:49:17.000Z" - }, - "end": { - "$date": "2020-12-14T21:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "a72a93fd-d731-4e59-bd0d-74c7aa47b197", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-14T21:00:29.000Z" - }, - "end": { - "$date": "2020-12-14T23:26:03.000Z" - }, - "events": [ - { - "uuid": "87e163a6-eac4-4201-b26a-28dbe5a89db1", - "start": { - "$date": "2020-12-14T21:00:29.000Z" - }, - "end": { - "$date": "2020-12-14T23:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "89d5604e-38df-4a1b-b324-1ac6c4116a90", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-14T22:35:49.000Z" - }, - "end": { - "$date": "2020-12-15T00:45:40.000Z" - }, - "events": [ - { - "uuid": "ece1d5aa-0fab-4063-8eaf-73ee4f40b212", - "start": { - "$date": "2020-12-14T22:35:49.000Z" - }, - "end": { - "$date": "2020-12-15T00:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b93bd8c5-5303-4e8c-822f-41ecfa59c52c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-14T22:40:08.000Z" - }, - "end": { - "$date": "2020-12-15T00:38:18.000Z" - }, - "events": [ - { - "uuid": "8610f829-d6f2-4c1e-99e7-d6544919d695", - "start": { - "$date": "2020-12-14T22:40:08.000Z" - }, - "end": { - "$date": "2020-12-15T00:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "87674194-7299-473d-bad9-9f84ba7d33f7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-14T22:47:46.000Z" - }, - "end": { - "$date": "2020-12-14T23:25:27.000Z" - }, - "events": [ - { - "uuid": "4e0005f5-5346-4fb5-9278-1f6729a88a48", - "start": { - "$date": "2020-12-14T22:47:46.000Z" - }, - "end": { - "$date": "2020-12-14T23:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "49f76e2b-86ea-4abb-a4ad-e4d691c0bea1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-14T21:00:29.000Z" - }, - "end": { - "$date": "2020-12-15T01:09:47.000Z" - }, - "events": [ - { - "uuid": "e9c7d6d1-6877-468f-bab5-1a03be308b96", - "start": { - "$date": "2020-12-14T21:00:29.000Z" - }, - "end": { - "$date": "2020-12-15T01:09:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "730ae347-413d-4935-946e-8ff114d6c0fa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-14T23:42:37.000Z" - }, - "end": { - "$date": "2020-12-15T01:52:59.000Z" - }, - "events": [ - { - "uuid": "7d749b45-18e1-4661-965c-d573a291aa9b", - "start": { - "$date": "2020-12-14T23:42:37.000Z" - }, - "end": { - "$date": "2020-12-15T01:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "96f4ee7f-c3f6-4d54-90f4-e547a0198456", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-15T01:35:22.000Z" - }, - "end": { - "$date": "2020-12-15T05:28:14.000Z" - }, - "events": [ - { - "uuid": "d99ee13b-9e9b-4629-b854-b4be9585d44e", - "start": { - "$date": "2020-12-15T01:35:22.000Z" - }, - "end": { - "$date": "2020-12-15T05:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9043ac7a-c793-4f5b-9550-13d649f9d13a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-15T02:26:43.000Z" - }, - "end": { - "$date": "2020-12-15T03:57:18.000Z" - }, - "events": [ - { - "uuid": "05f98a19-ce9e-4880-8701-bddfa21d74d7", - "start": { - "$date": "2020-12-15T02:26:43.000Z" - }, - "end": { - "$date": "2020-12-15T03:35:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d80a77f-d51e-43a0-a903-e01f773ee21f", - "start": { - "$date": "2020-12-15T03:35:43.000Z" - }, - "end": { - "$date": "2020-12-15T03:57:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "37d83d73-3bb5-4027-ae46-7cd89c07ba7f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-15T02:33:29.000Z" - }, - "end": { - "$date": "2020-12-15T04:42:07.000Z" - }, - "events": [ - { - "uuid": "f06883a6-163b-46e9-8759-51fba0583de1", - "start": { - "$date": "2020-12-15T02:33:29.000Z" - }, - "end": { - "$date": "2020-12-15T04:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3b1560cc-ec9c-48ac-b8a6-66a3627846be", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-15T03:03:56.000Z" - }, - "end": { - "$date": "2020-12-15T04:42:35.000Z" - }, - "events": [ - { - "uuid": "d8567d87-b425-47c6-a6b9-83668ebb41c2", - "start": { - "$date": "2020-12-15T03:03:56.000Z" - }, - "end": { - "$date": "2020-12-15T04:42:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fd6a7e6e-e2a6-4257-9e60-69e726715ca3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-15T03:24:05.000Z" - }, - "end": { - "$date": "2020-12-15T04:54:42.000Z" - }, - "events": [ - { - "uuid": "a0f69220-5e65-4a6d-a8fa-901a4f9924ac", - "start": { - "$date": "2020-12-15T03:24:05.000Z" - }, - "end": { - "$date": "2020-12-15T03:52:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99b7bc12-fee0-4716-8b75-ca1a71b9663a", - "start": { - "$date": "2020-12-15T03:52:05.000Z" - }, - "end": { - "$date": "2020-12-15T03:53:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2b5d250-deb7-4026-81f3-12364f741f0b", - "start": { - "$date": "2020-12-15T03:53:05.000Z" - }, - "end": { - "$date": "2020-12-15T04:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1bcc543-bbcd-4518-bf56-f27e67b0c788", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-15T03:45:26.000Z" - }, - "end": { - "$date": "2020-12-15T06:50:15.000Z" - }, - "events": [ - { - "uuid": "b429ed16-bdf2-409f-91d8-7f357e3524ae", - "start": { - "$date": "2020-12-15T03:45:26.000Z" - }, - "end": { - "$date": "2020-12-15T06:50:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3477b417-ca92-4968-bbcc-d969f0b6361a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-15T04:01:59.000Z" - }, - "end": { - "$date": "2020-12-15T05:59:28.000Z" - }, - "events": [ - { - "uuid": "f4b75937-ce0d-450a-a1a2-a191569f50b9", - "start": { - "$date": "2020-12-15T04:01:59.000Z" - }, - "end": { - "$date": "2020-12-15T05:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ed5631cf-1769-4e57-ab1f-8ce17b93ac94", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-15T04:55:55.000Z" - }, - "end": { - "$date": "2020-12-15T07:42:40.000Z" - }, - "events": [ - { - "uuid": "e9f867b5-adbc-449d-b204-efa88582cf75", - "start": { - "$date": "2020-12-15T04:55:55.000Z" - }, - "end": { - "$date": "2020-12-15T07:42:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "505e7a84-6e29-4eea-8e2f-eb8f64d24e7b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-15T05:27:24.000Z" - }, - "end": { - "$date": "2020-12-15T06:50:17.000Z" - }, - "events": [ - { - "uuid": "15975f65-80a3-4f71-8ed7-32b428ed4a5a", - "start": { - "$date": "2020-12-15T05:27:24.000Z" - }, - "end": { - "$date": "2020-12-15T06:50:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "4fca2b30-aa9a-4daf-bd90-5ae643d949c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-15T05:27:56.000Z" - }, - "end": { - "$date": "2020-12-15T06:01:45.000Z" - }, - "events": [ - { - "uuid": "946ad720-ee32-4f73-9967-71ccf9388154", - "start": { - "$date": "2020-12-15T05:27:56.000Z" - }, - "end": { - "$date": "2020-12-15T06:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c2b2decc-9015-493d-9a1b-3ebaa7e6725c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-15T06:03:34.000Z" - }, - "end": { - "$date": "2020-12-15T06:04:43.000Z" - }, - "events": [ - { - "uuid": "e05bcb70-feb0-4641-b556-4c6d225e185a", - "start": { - "$date": "2020-12-15T06:03:34.000Z" - }, - "end": { - "$date": "2020-12-15T06:04:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "9f8f7600-f05e-4081-9977-af6369e80b99", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-15T06:08:04.000Z" - }, - "end": { - "$date": "2020-12-15T06:54:34.000Z" - }, - "events": [ - { - "uuid": "7539dd53-7259-4ec0-a576-fbaa15f5cb5f", - "start": { - "$date": "2020-12-15T06:08:04.000Z" - }, - "end": { - "$date": "2020-12-15T06:54:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "15ac869f-6d25-4cff-a324-0d5e4112722d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-15T06:38:53.000Z" - }, - "end": { - "$date": "2020-12-15T10:15:07.000Z" - }, - "events": [ - { - "uuid": "696d9b50-074c-493d-a273-b36e9ac5a304", - "start": { - "$date": "2020-12-15T06:38:53.000Z" - }, - "end": { - "$date": "2020-12-15T10:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5a26f0b0-b645-48ce-80c7-2dd211209e3b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-15T16:19:03.000Z" - }, - "end": { - "$date": "2020-12-15T16:31:09.000Z" - }, - "events": [ - { - "uuid": "78655380-6448-4a43-b4dc-09b63ccd096a", - "start": { - "$date": "2020-12-15T16:19:03.000Z" - }, - "end": { - "$date": "2020-12-15T16:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f5b6a4e-c582-416f-bf81-23c75f76e730", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-15T17:09:01.000Z" - }, - "end": { - "$date": "2020-12-15T17:34:38.000Z" - }, - "events": [ - { - "uuid": "c1279582-4dc8-4e4f-b98e-1e0fa1c3fa2a", - "start": { - "$date": "2020-12-15T17:09:01.000Z" - }, - "end": { - "$date": "2020-12-15T17:34:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8ddb10c2-2280-4d72-b5ca-563386ec21fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-15T17:24:11.000Z" - }, - "end": { - "$date": "2020-12-15T17:34:18.000Z" - }, - "events": [ - { - "uuid": "1e3aac88-0299-4fb1-a7c1-2e032cf6e878", - "start": { - "$date": "2020-12-15T17:24:11.000Z" - }, - "end": { - "$date": "2020-12-15T17:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fa4ee9db-8971-48be-916b-fa7426246e52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-15T17:45:29.000Z" - }, - "end": { - "$date": "2020-12-15T18:09:42.000Z" - }, - "events": [ - { - "uuid": "a7546c91-2483-4248-a162-40c975dabdaf", - "start": { - "$date": "2020-12-15T17:45:29.000Z" - }, - "end": { - "$date": "2020-12-15T18:09:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5920b1e3-9c5a-4b83-8ea7-6474dac64d92", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-15T18:34:01.000Z" - }, - "end": { - "$date": "2020-12-15T18:34:02.000Z" - }, - "events": [ - { - "uuid": "fc0a2591-5f5c-4354-a5a8-97aa1060d81e", - "start": { - "$date": "2020-12-15T18:34:01.000Z" - }, - "end": { - "$date": "2020-12-15T18:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f152dcc0-09e7-435d-a1dc-982e49545519", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-15T18:09:56.000Z" - }, - "end": { - "$date": "2020-12-15T19:35:28.000Z" - }, - "events": [ - { - "uuid": "6d8f512d-3890-4bc3-be96-0ac3c90f381c", - "start": { - "$date": "2020-12-15T18:09:56.000Z" - }, - "end": { - "$date": "2020-12-15T19:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7703c8f8-6a7d-4400-8f99-35d2a245c0ac", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-15T20:33:57.000Z" - }, - "end": { - "$date": "2020-12-15T21:37:23.000Z" - }, - "events": [ - { - "uuid": "87ff6dc5-a225-42a8-9a95-d912301c8b66", - "start": { - "$date": "2020-12-15T20:33:57.000Z" - }, - "end": { - "$date": "2020-12-15T21:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ef3ad23-95b2-4a87-bb33-cd05f5ba35c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-15T20:52:48.000Z" - }, - "end": { - "$date": "2020-12-15T21:12:22.000Z" - }, - "events": [ - { - "uuid": "386bc5d6-ebb1-4091-8834-a8daa4b9c08c", - "start": { - "$date": "2020-12-15T20:52:48.000Z" - }, - "end": { - "$date": "2020-12-15T21:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cd0c7ac5-ba8a-4d10-a9f6-3aad892178af", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-15T22:14:36.000Z" - }, - "end": { - "$date": "2020-12-15T23:18:14.000Z" - }, - "events": [ - { - "uuid": "d775288d-4f66-4cf7-9247-16531c3f1b0f", - "start": { - "$date": "2020-12-15T22:14:36.000Z" - }, - "end": { - "$date": "2020-12-15T23:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8cd0eb1a-866e-4d39-ad22-41e55357e824", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-15T22:16:18.000Z" - }, - "end": { - "$date": "2020-12-15T23:16:04.000Z" - }, - "events": [ - { - "uuid": "fdf00013-600f-47f2-9d9f-2739ba87e113", - "start": { - "$date": "2020-12-15T22:16:18.000Z" - }, - "end": { - "$date": "2020-12-15T23:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "c25312db-4acf-4569-9118-f51ff0730163", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-15T22:28:02.000Z" - }, - "end": { - "$date": "2020-12-16T02:56:48.000Z" - }, - "events": [ - { - "uuid": "2a02a86c-36f4-4d24-90dc-cf33217b16f4", - "start": { - "$date": "2020-12-15T22:28:02.000Z" - }, - "end": { - "$date": "2020-12-16T00:22:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dadf4e28-8e7c-456a-8b4c-ee185efe7722", - "start": { - "$date": "2020-12-16T00:22:02.000Z" - }, - "end": { - "$date": "2020-12-16T00:24:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af14097a-401e-4aa8-ad51-1ff2b9399d38", - "start": { - "$date": "2020-12-16T00:24:02.000Z" - }, - "end": { - "$date": "2020-12-16T02:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "852bffbf-7f8b-4da3-8812-a6e9af77d7a5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T00:46:28.000Z" - }, - "end": { - "$date": "2020-12-16T00:46:38.000Z" - }, - "events": [ - { - "uuid": "2302dd58-04fd-4ea5-8cf6-0af6c0e32966", - "start": { - "$date": "2020-12-16T00:46:28.000Z" - }, - "end": { - "$date": "2020-12-16T00:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "9338ed01-3316-49e1-a367-ed078511a6fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-15T23:49:59.000Z" - }, - "end": { - "$date": "2020-12-16T00:22:05.000Z" - }, - "events": [ - { - "uuid": "6a252b78-90c2-4a8b-8db9-8ea067abbd09", - "start": { - "$date": "2020-12-15T23:49:59.000Z" - }, - "end": { - "$date": "2020-12-16T00:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f75259f0-1d13-40ee-b0e2-7a571cf5f27c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-15T23:57:30.000Z" - }, - "end": { - "$date": "2020-12-16T00:10:17.000Z" - }, - "events": [ - { - "uuid": "86ae1387-fed4-49d8-8683-b807cb4520fa", - "start": { - "$date": "2020-12-15T23:57:30.000Z" - }, - "end": { - "$date": "2020-12-16T00:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "a7c4b1fe-82b0-4bd8-a07f-478edd4ead14", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-16T00:01:48.000Z" - }, - "end": { - "$date": "2020-12-16T01:41:54.000Z" - }, - "events": [ - { - "uuid": "f9cf20b6-10bd-4325-a522-bb245036f826", - "start": { - "$date": "2020-12-16T00:01:48.000Z" - }, - "end": { - "$date": "2020-12-16T00:47:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93dd1a10-527e-4054-9bf9-ebac5b8f57c4", - "start": { - "$date": "2020-12-16T00:47:48.000Z" - }, - "end": { - "$date": "2020-12-16T00:50:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b2f2f56b-c336-49d9-90a4-aeb95fd02bd4", - "start": { - "$date": "2020-12-16T00:50:48.000Z" - }, - "end": { - "$date": "2020-12-16T01:41:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "c659223a-d9fc-4e16-8357-007e461fa99b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T00:24:35.000Z" - }, - "end": { - "$date": "2020-12-16T00:51:42.000Z" - }, - "events": [ - { - "uuid": "d0b1c8bf-8dc5-43f9-815c-8ed6a09fdcd7", - "start": { - "$date": "2020-12-16T00:24:35.000Z" - }, - "end": { - "$date": "2020-12-16T00:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "43c1cf0a-2d2d-4c32-8e0f-427d8b198661", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-16T00:29:57.000Z" - }, - "end": { - "$date": "2020-12-16T01:17:27.000Z" - }, - "events": [ - { - "uuid": "9c12f02f-7e3a-41cd-8b24-50ceb6bb306c", - "start": { - "$date": "2020-12-16T00:29:57.000Z" - }, - "end": { - "$date": "2020-12-16T01:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c4c7e3ac-cf53-4509-890a-168ad0e07678", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T00:44:41.000Z" - }, - "end": { - "$date": "2020-12-16T00:45:48.000Z" - }, - "events": [ - { - "uuid": "c5e54467-2245-48b3-9a66-7f817882eb79", - "start": { - "$date": "2020-12-16T00:44:41.000Z" - }, - "end": { - "$date": "2020-12-16T00:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c7bf1a61-a60b-4ad8-b151-d6f2e1467b05", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T00:46:01.000Z" - }, - "end": { - "$date": "2020-12-16T00:56:13.000Z" - }, - "events": [ - { - "uuid": "5a52f910-0306-46ba-9e5e-550753de1008", - "start": { - "$date": "2020-12-16T00:46:01.000Z" - }, - "end": { - "$date": "2020-12-16T00:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "81596282-2518-4e2f-bc01-46f52b37d392", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T03:47:08.000Z" - }, - "end": { - "$date": "2020-12-16T03:57:39.000Z" - }, - "events": [ - { - "uuid": "c1ea67c7-2819-468a-ba49-b44bb253d9c6", - "start": { - "$date": "2020-12-16T03:47:08.000Z" - }, - "end": { - "$date": "2020-12-16T03:48:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba8e54ac-6b05-4417-8a3b-a3d056889b85", - "start": { - "$date": "2020-12-16T03:48:08.000Z" - }, - "end": { - "$date": "2020-12-16T03:52:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "833f0df4-8121-4488-88e4-af7858b3a56b", - "start": { - "$date": "2020-12-16T03:52:08.000Z" - }, - "end": { - "$date": "2020-12-16T04:19:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "53ce5084-d38b-41e3-8b42-65ef2c563898", - "start": { - "$date": "2020-12-16T04:19:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:25:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44da0319-b80c-46d0-bf7c-afbf2ddabec7", - "start": { - "$date": "2020-12-16T05:25:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:27:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62c3409e-194f-40c7-a913-154df1a2fd94", - "start": { - "$date": "2020-12-16T05:27:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:33:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "50f972e2-5dd0-41cf-9c57-d3c63af5ba5e", - "start": { - "$date": "2020-12-16T05:33:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:36:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2607b9bc-187e-4c39-ba4d-c33c245165be", - "start": { - "$date": "2020-12-16T05:36:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:38:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9918dce5-cc3e-486b-9b29-97818a8390b0", - "start": { - "$date": "2020-12-16T05:38:08.000Z" - }, - "end": { - "$date": "2020-12-16T03:57:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "183145ef-c8fc-4717-9e0c-5d35b767da36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T01:05:46.000Z" - }, - "end": { - "$date": "2020-12-16T01:36:39.000Z" - }, - "events": [ - { - "uuid": "7e8f1ba8-5277-4e8f-b06b-948cb0544fef", - "start": { - "$date": "2020-12-16T01:05:46.000Z" - }, - "end": { - "$date": "2020-12-16T01:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ec57d1bb-c93c-400b-bc4a-0b74bd675956", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-16T01:17:38.000Z" - }, - "end": { - "$date": "2020-12-16T01:37:00.000Z" - }, - "events": [ - { - "uuid": "93246bd1-6d55-4c88-9b8e-93ae2a1d4888", - "start": { - "$date": "2020-12-16T01:17:38.000Z" - }, - "end": { - "$date": "2020-12-16T01:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "a61b38c7-93db-4724-ae93-cf36866332c4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T02:08:22.000Z" - }, - "end": { - "$date": "2020-12-16T04:15:50.000Z" - }, - "events": [ - { - "uuid": "260a8cef-5f93-4bf7-b17d-f1876fcac49e", - "start": { - "$date": "2020-12-16T02:08:22.000Z" - }, - "end": { - "$date": "2020-12-16T04:15:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "3c957c42-047f-4cc9-b6c8-3e50170808c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-16T02:09:23.000Z" - }, - "end": { - "$date": "2020-12-16T04:17:28.000Z" - }, - "events": [ - { - "uuid": "06c82fce-6f9f-40a2-8876-d9a0f6851830", - "start": { - "$date": "2020-12-16T02:09:23.000Z" - }, - "end": { - "$date": "2020-12-16T04:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "de1682d5-daa6-466d-8695-023e137514b4", - "user": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "start": { - "$date": "2020-12-16T02:28:10.000Z" - }, - "end": { - "$date": "2020-12-16T04:29:00.000Z" - }, - "events": [ - { - "uuid": "7e5fb235-7811-4fa6-9071-8628f6c71488", - "start": { - "$date": "2020-12-16T02:28:10.000Z" - }, - "end": { - "$date": "2020-12-16T04:29:00.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "627cd9b5-983e-4c8d-b9e8-58487ff81e9e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-16T02:29:14.000Z" - }, - "end": { - "$date": "2020-12-16T04:27:21.000Z" - }, - "events": [ - { - "uuid": "d4b40fe0-cde0-4758-87d0-8457e47dba8f", - "start": { - "$date": "2020-12-16T02:29:14.000Z" - }, - "end": { - "$date": "2020-12-16T04:27:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4766dc0d-4465-4c39-9822-006d92a95d45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T02:39:40.000Z" - }, - "end": { - "$date": "2020-12-16T03:05:51.000Z" - }, - "events": [ - { - "uuid": "2aafdbca-5f0e-4ba8-9635-b55affb98fce", - "start": { - "$date": "2020-12-16T02:39:40.000Z" - }, - "end": { - "$date": "2020-12-16T03:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "17c862aa-7e37-4551-8d18-a7bc47aed07e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-16T02:45:13.000Z" - }, - "end": { - "$date": "2020-12-16T02:48:02.000Z" - }, - "events": [ - { - "uuid": "abef1aee-f58a-4738-822d-d143f1f91733", - "start": { - "$date": "2020-12-16T02:45:13.000Z" - }, - "end": { - "$date": "2020-12-16T02:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "07adfe0e-c68e-4f99-a522-91fd7ae9c0fe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-16T02:48:57.000Z" - }, - "end": { - "$date": "2020-12-16T07:56:11.000Z" - }, - "events": [ - { - "uuid": "43ea3f27-45e5-4a67-894a-ffbb7e30f63b", - "start": { - "$date": "2020-12-16T02:48:57.000Z" - }, - "end": { - "$date": "2020-12-16T07:56:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9817f410-88b9-47f4-981b-a92681d7a3ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T03:06:26.000Z" - }, - "end": { - "$date": "2020-12-16T05:46:04.000Z" - }, - "events": [ - { - "uuid": "70e5b555-361b-4a6a-8ca0-e8e2841594fc", - "start": { - "$date": "2020-12-16T03:06:26.000Z" - }, - "end": { - "$date": "2020-12-16T05:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42f1825b-b6c8-4efb-86f7-ec34df265296", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T03:18:16.000Z" - }, - "end": { - "$date": "2020-12-16T03:30:17.000Z" - }, - "events": [ - { - "uuid": "49da2f49-94a4-4701-8b34-f2667190d819", - "start": { - "$date": "2020-12-16T03:18:16.000Z" - }, - "end": { - "$date": "2020-12-16T03:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "897d3962-bda5-4de0-a8b8-033aa3c4c98e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T03:34:58.000Z" - }, - "end": { - "$date": "2020-12-16T03:53:07.000Z" - }, - "events": [ - { - "uuid": "9c37fa15-44d1-4f74-b987-29374e648b71", - "start": { - "$date": "2020-12-16T03:34:58.000Z" - }, - "end": { - "$date": "2020-12-16T03:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a06645cf-7547-461e-95e7-364ec5e0473e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T03:53:31.000Z" - }, - "end": { - "$date": "2020-12-16T04:16:55.000Z" - }, - "events": [ - { - "uuid": "7275d31b-fa88-48a9-835d-98fe71a63890", - "start": { - "$date": "2020-12-16T03:53:31.000Z" - }, - "end": { - "$date": "2020-12-16T04:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "750980e6-053c-4ba7-9103-faa7da450c06", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T03:55:40.000Z" - }, - "end": { - "$date": "2020-12-16T04:16:12.000Z" - }, - "events": [ - { - "uuid": "7be3c261-7a97-4deb-b61b-887d2db68fea", - "start": { - "$date": "2020-12-16T03:55:40.000Z" - }, - "end": { - "$date": "2020-12-16T04:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c58a53a8-e79a-4ef1-ae93-761b541278dd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T04:16:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:02:53.000Z" - }, - "events": [ - { - "uuid": "d4118f86-2c36-4154-84f1-a80461eda02f", - "start": { - "$date": "2020-12-16T04:16:08.000Z" - }, - "end": { - "$date": "2020-12-16T05:02:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d975287e-f12c-4112-85ed-b0df2fdf63b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T04:19:33.000Z" - }, - "end": { - "$date": "2020-12-16T04:43:17.000Z" - }, - "events": [ - { - "uuid": "ff4c1fde-098c-47c4-b319-f5bba0f26b47", - "start": { - "$date": "2020-12-16T04:19:33.000Z" - }, - "end": { - "$date": "2020-12-16T04:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2521ec96-6f2d-4aa0-a790-4cb977c2a0e7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T04:43:07.000Z" - }, - "end": { - "$date": "2020-12-16T04:43:40.000Z" - }, - "events": [ - { - "uuid": "3738365b-f2b3-4b0f-8baa-a90ecf6c729b", - "start": { - "$date": "2020-12-16T04:43:07.000Z" - }, - "end": { - "$date": "2020-12-16T04:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff60c91c-d5ef-4609-96c2-4efdbec986b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T04:19:31.000Z" - }, - "end": { - "$date": "2020-12-16T04:43:07.000Z" - }, - "events": [ - { - "uuid": "b83ada84-4b7a-41be-8ed1-1660ae863eaa", - "start": { - "$date": "2020-12-16T04:19:31.000Z" - }, - "end": { - "$date": "2020-12-16T04:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7518a063-5bee-4531-b7f1-338247924044", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-16T04:28:56.000Z" - }, - "end": { - "$date": "2020-12-16T04:30:31.000Z" - }, - "events": [ - { - "uuid": "42051f1a-6c08-4ac4-a635-464da691de03", - "start": { - "$date": "2020-12-16T04:28:56.000Z" - }, - "end": { - "$date": "2020-12-16T04:30:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "449e187f-72a1-4b40-836c-530d2a568c45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T05:25:40.000Z" - }, - "end": { - "$date": "2020-12-16T05:48:22.000Z" - }, - "events": [ - { - "uuid": "7a942ae2-6f2c-4e33-af3e-d25b45ab4f35", - "start": { - "$date": "2020-12-16T05:25:40.000Z" - }, - "end": { - "$date": "2020-12-16T05:48:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3f5b311-b4a2-44a7-9b59-e4a86a821b49", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T05:08:37.000Z" - }, - "end": { - "$date": "2020-12-16T05:36:16.000Z" - }, - "events": [ - { - "uuid": "bae7eb51-1fc9-491f-806c-0d7b1ec7e7c2", - "start": { - "$date": "2020-12-16T05:08:37.000Z" - }, - "end": { - "$date": "2020-12-16T05:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8966d2e-b4c5-42e7-ba22-aa495c1a93b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T05:25:43.000Z" - }, - "end": { - "$date": "2020-12-16T05:48:24.000Z" - }, - "events": [ - { - "uuid": "95e6a4fe-51a3-4805-9cbb-9f07c18d1a58", - "start": { - "$date": "2020-12-16T05:25:43.000Z" - }, - "end": { - "$date": "2020-12-16T05:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "059812a7-1c33-4822-a34b-b3126becc25b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T05:18:38.000Z" - }, - "end": { - "$date": "2020-12-16T05:23:30.000Z" - }, - "events": [ - { - "uuid": "b35be319-e25e-4ab2-a144-12b85625e5ab", - "start": { - "$date": "2020-12-16T05:18:38.000Z" - }, - "end": { - "$date": "2020-12-16T05:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c873efac-31ad-44c4-8fca-7982f9ff17be", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T05:51:20.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:05.000Z" - }, - "events": [ - { - "uuid": "9288cc64-3979-4749-9338-e3f387f2ed11", - "start": { - "$date": "2020-12-16T05:51:20.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d68785c3-1861-4641-ae71-789d8fab0f73", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T06:06:17.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:49.000Z" - }, - "events": [ - { - "uuid": "291363ec-52d0-47ee-b335-68e19047c86c", - "start": { - "$date": "2020-12-16T06:06:17.000Z" - }, - "end": { - "$date": "2020-12-16T06:22:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5690cf3d-9c19-4ee6-b3ac-23a0e0d77158", - "start": { - "$date": "2020-12-16T06:22:17.000Z" - }, - "end": { - "$date": "2020-12-16T06:24:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6a18c11-d211-4c66-b28a-96aaf67317f4", - "start": { - "$date": "2020-12-16T06:24:17.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "92a1c25c-953d-4eb1-b912-7b66ba7962b7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-16T05:42:40.000Z" - }, - "end": { - "$date": "2020-12-16T06:46:34.000Z" - }, - "events": [ - { - "uuid": "a9c0cdb7-44eb-4bcb-a02b-c2dfb0b0089d", - "start": { - "$date": "2020-12-16T05:42:40.000Z" - }, - "end": { - "$date": "2020-12-16T06:01:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f88eb9d-6f1c-4e9e-b5f9-b7d29c9ca1eb", - "start": { - "$date": "2020-12-16T06:01:40.000Z" - }, - "end": { - "$date": "2020-12-16T06:08:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04ab012a-f1e9-4165-9f23-e3f0db94e834", - "start": { - "$date": "2020-12-16T06:08:40.000Z" - }, - "end": { - "$date": "2020-12-16T06:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "751c5e4e-4574-4e17-80dd-b3561a056d97", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T05:51:15.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:03.000Z" - }, - "events": [ - { - "uuid": "6a4b2de0-55a7-405b-9e24-07a5dbd62179", - "start": { - "$date": "2020-12-16T05:51:15.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ed8b065-cc4b-4a8c-80e2-fcd304676244", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T05:51:14.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:00.000Z" - }, - "events": [ - { - "uuid": "7de41963-0719-4f85-9e03-e867d54b2b4c", - "start": { - "$date": "2020-12-16T05:51:14.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc574662-2ec4-4481-afc8-bc6b33f74397", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-16T05:51:16.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:02.000Z" - }, - "events": [ - { - "uuid": "6d22c3de-4938-4fcc-a6cf-c34d60ce1374", - "start": { - "$date": "2020-12-16T05:51:16.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9dab24c-c57b-4571-8e9c-5397683cd797", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T05:51:14.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:00.000Z" - }, - "events": [ - { - "uuid": "cf0d13c0-4146-410e-b0ec-c6d480940ba0", - "start": { - "$date": "2020-12-16T05:51:14.000Z" - }, - "end": { - "$date": "2020-12-16T06:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "926a4bd5-d0ca-47bc-b6a5-647ef864dbfa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T06:14:47.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:24.000Z" - }, - "events": [ - { - "uuid": "d9915cf0-08bd-4ffe-abeb-dc26385cc059", - "start": { - "$date": "2020-12-16T06:14:47.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "365ac480-bdb6-46be-93bc-f73d4b86b9b8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T06:14:45.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:21.000Z" - }, - "events": [ - { - "uuid": "cbf062c8-6c58-437a-b318-a255ad0d5a0f", - "start": { - "$date": "2020-12-16T06:14:45.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9c7ef6b-e58f-4341-b4f3-702e86b0d140", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T06:14:45.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:25.000Z" - }, - "events": [ - { - "uuid": "392757c8-b055-44e5-9c1a-681f2c4cadec", - "start": { - "$date": "2020-12-16T06:14:45.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53ab4227-ef23-403b-a0f5-022f234fa91e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T06:14:43.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:25.000Z" - }, - "events": [ - { - "uuid": "c51daac1-30c7-4a3a-ab12-0a8ad2869d7d", - "start": { - "$date": "2020-12-16T06:14:43.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "233c2e05-f2c7-4027-92c9-764bd1701391", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-16T06:14:42.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:28.000Z" - }, - "events": [ - { - "uuid": "79b74b93-bb08-46a9-84d8-b7c168536577", - "start": { - "$date": "2020-12-16T06:14:42.000Z" - }, - "end": { - "$date": "2020-12-16T06:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac574b94-2a05-4e56-90d1-320fc720e145", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T06:34:23.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:40.000Z" - }, - "events": [ - { - "uuid": "474006c5-71f2-451c-b845-7f8289e57b94", - "start": { - "$date": "2020-12-16T06:34:23.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2187deef-ba02-45b6-8718-0d520c311a7c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T06:35:11.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:37.000Z" - }, - "events": [ - { - "uuid": "1733bdde-8495-460d-b46a-96e142b05e64", - "start": { - "$date": "2020-12-16T06:35:11.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "955d2a18-1308-479d-a06b-796c072782a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T06:34:20.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:41.000Z" - }, - "events": [ - { - "uuid": "fc8cb269-82db-4f66-a47c-9f2f1d8fe9a7", - "start": { - "$date": "2020-12-16T06:34:20.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e85ec85-6042-4b77-ac7b-414278dd036a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T06:34:48.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:40.000Z" - }, - "events": [ - { - "uuid": "8dc30ba2-3389-410c-b887-3bb1c4717f15", - "start": { - "$date": "2020-12-16T06:34:48.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02ba1ab8-ca82-4154-8830-101b283a72f4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-16T06:34:17.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:43.000Z" - }, - "events": [ - { - "uuid": "df37b9e9-3e4f-4611-94d2-ee8b34c2db83", - "start": { - "$date": "2020-12-16T06:34:17.000Z" - }, - "end": { - "$date": "2020-12-16T06:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8e979865-ff5c-481a-ab83-531beb8ef0d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-16T06:47:00.000Z" - }, - "end": { - "$date": "2020-12-16T06:49:39.000Z" - }, - "events": [ - { - "uuid": "dd67daa5-1c93-42b9-ae58-0c9ac37de55d", - "start": { - "$date": "2020-12-16T06:47:00.000Z" - }, - "end": { - "$date": "2020-12-16T06:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0abf669a-2f00-4ea8-abcd-950e1147e903", - "uuid": "692a6720-0da8-45ad-90d3-bbd1d415ed8f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-16T06:48:37.000Z" - }, - "end": { - "$date": "2020-12-16T07:14:42.000Z" - }, - "events": [ - { - "uuid": "155de5c9-4f3f-45c8-b0fb-b5906afd9ee6", - "start": { - "$date": "2020-12-16T06:48:37.000Z" - }, - "end": { - "$date": "2020-12-16T07:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "f6a874f0-2798-4ec4-a919-0e682eb3e92f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T06:49:29.000Z" - }, - "end": { - "$date": "2020-12-16T07:43:58.000Z" - }, - "events": [ - { - "uuid": "eb0a8946-3554-4dc4-afd2-20042fae7f2c", - "start": { - "$date": "2020-12-16T06:49:29.000Z" - }, - "end": { - "$date": "2020-12-16T07:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c6fa7070-867b-478e-9755-5dc0e3ed1424", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-16T06:50:25.000Z" - }, - "end": { - "$date": "2020-12-16T09:01:03.000Z" - }, - "events": [ - { - "uuid": "278e0af8-958d-4849-9396-f8cae6388b09", - "start": { - "$date": "2020-12-16T06:50:25.000Z" - }, - "end": { - "$date": "2020-12-16T09:01:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "bcc7c031-8caf-4194-84ef-2e1031fc715a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T07:01:50.000Z" - }, - "end": { - "$date": "2020-12-16T08:13:28.000Z" - }, - "events": [ - { - "uuid": "295f4762-e1a8-437c-9122-3b35c2cce7c4", - "start": { - "$date": "2020-12-16T07:01:50.000Z" - }, - "end": { - "$date": "2020-12-16T08:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "9ca79e20-77a3-4772-8497-1ba09048f8e5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-16T07:46:48.000Z" - }, - "end": { - "$date": "2020-12-16T07:49:04.000Z" - }, - "events": [ - { - "uuid": "f75e2764-d40d-4130-9c10-0c3045de5ef1", - "start": { - "$date": "2020-12-16T07:46:48.000Z" - }, - "end": { - "$date": "2020-12-16T07:49:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0998a21e-a471-4591-9891-dc70a85b5ab9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T19:33:04.000Z" - }, - "end": { - "$date": "2020-12-16T20:27:04.000Z" - }, - "events": [ - { - "uuid": "f5f6ccc2-c6db-4a4a-8fb6-4fa7dad53d0d", - "start": { - "$date": "2020-12-16T19:33:04.000Z" - }, - "end": { - "$date": "2020-12-16T20:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "a1949326-f715-4ff5-8001-e78f32d6b1f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-16T19:51:28.000Z" - }, - "end": { - "$date": "2020-12-17T00:02:40.000Z" - }, - "events": [ - { - "uuid": "cdfcf34e-0c56-4187-85d4-58301a442aa5", - "start": { - "$date": "2020-12-16T19:51:28.000Z" - }, - "end": { - "$date": "2020-12-16T20:41:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5cddd86-72c6-424c-8c46-b4cc145f8053", - "start": { - "$date": "2020-12-16T20:41:28.000Z" - }, - "end": { - "$date": "2020-12-16T21:10:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b5585776-bde8-4217-be31-f62649949c6b", - "start": { - "$date": "2020-12-16T21:10:28.000Z" - }, - "end": { - "$date": "2020-12-17T00:02:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f16e7925-b7d2-4d6b-8739-48deadcf88b3", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-16T20:20:52.000Z" - }, - "end": { - "$date": "2020-12-16T20:57:18.000Z" - }, - "events": [ - { - "uuid": "43b2c29f-1c8d-4a8e-8890-405467826d30", - "start": { - "$date": "2020-12-16T20:20:52.000Z" - }, - "end": { - "$date": "2020-12-16T20:57:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ad461ebb-0d3c-4a7c-8d19-e5d0731fb7ec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-16T21:03:09.000Z" - }, - "end": { - "$date": "2020-12-17T01:08:15.000Z" - }, - "events": [ - { - "uuid": "0d7efa22-e08d-4376-b951-b5d1a309426d", - "start": { - "$date": "2020-12-16T21:03:09.000Z" - }, - "end": { - "$date": "2020-12-17T01:08:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b4796529-799f-473a-a9ff-570a3ebe5b10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T21:28:08.000Z" - }, - "end": { - "$date": "2020-12-16T21:51:40.000Z" - }, - "events": [ - { - "uuid": "6629bf4c-169d-47d8-aa0d-479d77218a26", - "start": { - "$date": "2020-12-16T21:28:08.000Z" - }, - "end": { - "$date": "2020-12-16T21:51:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "22b5a556-e84a-424a-a6e7-c8807692d2b4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-16T22:16:24.000Z" - }, - "end": { - "$date": "2020-12-16T23:00:52.000Z" - }, - "events": [ - { - "uuid": "505a0c7e-c70c-45dc-a6c2-8488dcffe456", - "start": { - "$date": "2020-12-16T22:16:24.000Z" - }, - "end": { - "$date": "2020-12-16T23:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0cc5832d-c26f-4021-a0ff-8370e85c9c3c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-16T22:28:57.000Z" - }, - "end": { - "$date": "2020-12-16T22:56:45.000Z" - }, - "events": [ - { - "uuid": "7ff2680e-c963-4f61-b880-1c34559febfc", - "start": { - "$date": "2020-12-16T22:28:57.000Z" - }, - "end": { - "$date": "2020-12-16T22:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ab1a654e-52d8-4f48-b845-a57672ce639e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-16T23:07:00.000Z" - }, - "end": { - "$date": "2020-12-16T23:12:01.000Z" - }, - "events": [ - { - "uuid": "9ee71dd6-74d7-4cc9-9bdb-ab1c1604fd15", - "start": { - "$date": "2020-12-16T23:07:00.000Z" - }, - "end": { - "$date": "2020-12-16T23:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "21203cb8-62f9-4491-9f7e-e3fec62c70a9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T23:08:26.000Z" - }, - "end": { - "$date": "2020-12-16T23:31:26.000Z" - }, - "events": [ - { - "uuid": "67416328-75e6-455a-9814-2027423f84bc", - "start": { - "$date": "2020-12-16T23:08:26.000Z" - }, - "end": { - "$date": "2020-12-16T23:31:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "b0de5e8b-b898-4e36-8c45-841b0c243217", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-16T23:52:38.000Z" - }, - "end": { - "$date": "2020-12-17T00:30:20.000Z" - }, - "events": [ - { - "uuid": "dade860c-91ec-40fb-8def-304da0afdae3", - "start": { - "$date": "2020-12-16T23:52:38.000Z" - }, - "end": { - "$date": "2020-12-17T00:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "4eb0c092-e6be-49bb-86e7-e2be91239fbd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-17T00:35:50.000Z" - }, - "end": { - "$date": "2020-12-17T00:38:51.000Z" - }, - "events": [ - { - "uuid": "c220f2e9-0896-4812-a8a4-95a1f3a90b03", - "start": { - "$date": "2020-12-17T00:35:50.000Z" - }, - "end": { - "$date": "2020-12-17T00:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ce5b7085-81f7-440c-bc24-8d290d3e4b1a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T01:11:30.000Z" - }, - "end": { - "$date": "2020-12-17T01:14:14.000Z" - }, - "events": [ - { - "uuid": "1d36d39c-56a9-47c8-90f6-b070f845b781", - "start": { - "$date": "2020-12-17T01:11:30.000Z" - }, - "end": { - "$date": "2020-12-17T01:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "57c83960-2e80-4e1e-8ec1-0a8d998e40e1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T01:14:36.000Z" - }, - "end": { - "$date": "2020-12-17T02:11:19.000Z" - }, - "events": [ - { - "uuid": "55abfdfb-afae-459f-863c-ab45a2cffce5", - "start": { - "$date": "2020-12-17T01:14:36.000Z" - }, - "end": { - "$date": "2020-12-17T02:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "74363566-3b12-4028-b4d4-f77bcda7d2bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-17T01:26:03.000Z" - }, - "end": { - "$date": "2020-12-17T01:54:09.000Z" - }, - "events": [ - { - "uuid": "e1459c73-61b4-463a-9c08-5fc83f2b696c", - "start": { - "$date": "2020-12-17T01:26:03.000Z" - }, - "end": { - "$date": "2020-12-17T01:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "faccb7f1-b861-4de8-ad8d-caee5d5f113b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-17T01:55:21.000Z" - }, - "end": { - "$date": "2020-12-17T09:22:56.000Z" - }, - "events": [ - { - "uuid": "3b0d94b8-b37a-4277-9a54-22e64ef6a7ff", - "start": { - "$date": "2020-12-17T01:55:21.000Z" - }, - "end": { - "$date": "2020-12-17T09:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "3ece2dec-9fd5-4c7e-91c7-d831c0aab371", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T02:22:02.000Z" - }, - "end": { - "$date": "2020-12-17T04:09:12.000Z" - }, - "events": [ - { - "uuid": "c5e1f9c3-4581-428c-ab46-c963c615b7a0", - "start": { - "$date": "2020-12-17T02:22:02.000Z" - }, - "end": { - "$date": "2020-12-17T04:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d96d6e20-a374-450e-b698-869f6cdc77f6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-17T03:25:14.000Z" - }, - "end": { - "$date": "2020-12-17T06:15:18.000Z" - }, - "events": [ - { - "uuid": "269aac27-18bc-4b95-ae02-2d972448a667", - "start": { - "$date": "2020-12-17T03:25:14.000Z" - }, - "end": { - "$date": "2020-12-17T06:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "626af2a6-b1f3-4a35-b071-708808b534a4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-17T03:41:37.000Z" - }, - "end": { - "$date": "2020-12-17T04:08:13.000Z" - }, - "events": [ - { - "uuid": "77a36853-be7a-4ae0-8c52-40325165d97f", - "start": { - "$date": "2020-12-17T03:41:37.000Z" - }, - "end": { - "$date": "2020-12-17T04:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "04a3ac22-c936-4c28-a9a4-3f39dc7607dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-17T03:49:46.000Z" - }, - "end": { - "$date": "2020-12-17T04:35:03.000Z" - }, - "events": [ - { - "uuid": "b332ee3e-c1a2-4aec-89f8-b1c9f97f8ccd", - "start": { - "$date": "2020-12-17T03:49:46.000Z" - }, - "end": { - "$date": "2020-12-17T04:35:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "635c0862-feee-4c7e-bb7a-0f7db8fd7ff6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-17T03:53:13.000Z" - }, - "end": { - "$date": "2020-12-17T05:23:09.000Z" - }, - "events": [ - { - "uuid": "bbfcbe95-78fe-4468-84c4-af54d7c0b228", - "start": { - "$date": "2020-12-17T03:53:13.000Z" - }, - "end": { - "$date": "2020-12-17T05:23:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2e46a6b6-ef0b-4e26-bb7c-ace772acb982", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-17T03:59:50.000Z" - }, - "end": { - "$date": "2020-12-17T06:21:53.000Z" - }, - "events": [ - { - "uuid": "bd17ef0c-e84f-4b4a-84f4-875af566e47b", - "start": { - "$date": "2020-12-17T03:59:50.000Z" - }, - "end": { - "$date": "2020-12-17T06:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "56ac75c4-7331-49ac-9147-e8ec458fba76", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-17T05:38:16.000Z" - }, - "end": { - "$date": "2020-12-17T05:39:41.000Z" - }, - "events": [ - { - "uuid": "fbd26b70-5336-4ea1-b49b-6963d68be6cc", - "start": { - "$date": "2020-12-17T05:38:16.000Z" - }, - "end": { - "$date": "2020-12-17T05:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5cc1964f-7a93-468a-be17-786a6b90e0a7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-17T05:39:56.000Z" - }, - "end": { - "$date": "2020-12-17T06:15:14.000Z" - }, - "events": [ - { - "uuid": "53be0089-05bb-4ff0-8b5f-fc62a0029087", - "start": { - "$date": "2020-12-17T05:39:56.000Z" - }, - "end": { - "$date": "2020-12-17T06:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "839a3c93-9d1a-4c4b-988c-96c8cdb2da5d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T06:11:48.000Z" - }, - "end": { - "$date": "2020-12-17T08:58:00.000Z" - }, - "events": [ - { - "uuid": "54cf096e-b7c8-44ec-98cb-a833c7a094c5", - "start": { - "$date": "2020-12-17T06:11:48.000Z" - }, - "end": { - "$date": "2020-12-17T07:43:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9e4f6b1d-85c5-4b27-9840-85a95fe30070", - "start": { - "$date": "2020-12-17T07:43:48.000Z" - }, - "end": { - "$date": "2020-12-17T07:56:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0fd550dc-72dd-46ed-a31c-ad19cf6beb3f", - "start": { - "$date": "2020-12-17T07:56:48.000Z" - }, - "end": { - "$date": "2020-12-17T08:58:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "a4b3d477-5fe7-4874-a523-ca6992c0894a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-17T06:27:28.000Z" - }, - "end": { - "$date": "2020-12-17T08:15:54.000Z" - }, - "events": [ - { - "uuid": "be2972fe-5f95-44db-a183-3b1b13d8cc96", - "start": { - "$date": "2020-12-17T06:27:28.000Z" - }, - "end": { - "$date": "2020-12-17T08:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c5fe3317-1cc3-414a-a26e-3fabcddb9fbd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-17T18:06:57.000Z" - }, - "end": { - "$date": "2020-12-17T18:26:33.000Z" - }, - "events": [ - { - "uuid": "bc929288-b352-4bfa-aaa6-20d0ebe0ea63", - "start": { - "$date": "2020-12-17T18:06:57.000Z" - }, - "end": { - "$date": "2020-12-17T18:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "ff831170-ddea-4736-b2cc-cfe3c7001b1a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-17T19:55:37.000Z" - }, - "end": { - "$date": "2020-12-17T22:21:57.000Z" - }, - "events": [ - { - "uuid": "dbd98dc5-1d2c-41ae-8133-0fc40ab6ecd8", - "start": { - "$date": "2020-12-17T19:55:37.000Z" - }, - "end": { - "$date": "2020-12-17T21:39:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6c7270a-6c30-4f60-87a3-243e17c1b9f6", - "start": { - "$date": "2020-12-17T21:39:37.000Z" - }, - "end": { - "$date": "2020-12-17T21:42:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6df01f8b-4db3-4f0d-ae17-654e9c1b5bc6", - "start": { - "$date": "2020-12-17T21:42:37.000Z" - }, - "end": { - "$date": "2020-12-17T22:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "2e3f2956-0486-4f47-84db-3e28918a6424", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T20:27:36.000Z" - }, - "end": { - "$date": "2020-12-17T21:50:07.000Z" - }, - "events": [ - { - "uuid": "1e65e0f0-888d-4020-9ece-8d9f4951c8ff", - "start": { - "$date": "2020-12-17T20:27:36.000Z" - }, - "end": { - "$date": "2020-12-17T21:50:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "1f62b627-fe20-4b3f-851b-b27cf4bfcb0b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-17T21:25:36.000Z" - }, - "end": { - "$date": "2020-12-17T22:09:43.000Z" - }, - "events": [ - { - "uuid": "427a5a7a-a3cc-4209-ba8a-fc7372526c1f", - "start": { - "$date": "2020-12-17T21:25:36.000Z" - }, - "end": { - "$date": "2020-12-17T22:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7720dee6-b25c-4f31-a045-ee4dbc87bcc2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T21:53:14.000Z" - }, - "end": { - "$date": "2020-12-17T22:50:14.000Z" - }, - "events": [ - { - "uuid": "144cb406-3a6d-4239-82c2-c6e8e1fb5014", - "start": { - "$date": "2020-12-17T21:53:14.000Z" - }, - "end": { - "$date": "2020-12-17T22:22:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc3a1993-cb93-4f3d-83b1-89fdb4697f02", - "start": { - "$date": "2020-12-17T22:22:14.000Z" - }, - "end": { - "$date": "2020-12-17T22:27:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5230cf44-84d5-4ff8-aac1-e72335be1c11", - "start": { - "$date": "2020-12-17T22:27:14.000Z" - }, - "end": { - "$date": "2020-12-17T22:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "650eeaec-631f-4d74-8c71-74f9d638f0a5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-17T22:12:22.000Z" - }, - "end": { - "$date": "2020-12-17T22:35:03.000Z" - }, - "events": [ - { - "uuid": "70111eb7-1a1b-49d8-8c87-b063088588b0", - "start": { - "$date": "2020-12-17T22:12:22.000Z" - }, - "end": { - "$date": "2020-12-17T22:35:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6d1681c7-d0b8-48f2-9985-9e8f03d19288", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-17T23:01:35.000Z" - }, - "end": { - "$date": "2020-12-17T23:12:06.000Z" - }, - "events": [ - { - "uuid": "7a00a3bb-1889-4108-9612-450a62095005", - "start": { - "$date": "2020-12-17T23:01:35.000Z" - }, - "end": { - "$date": "2020-12-17T23:12:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "b9de07e2-1ec3-4bc0-932d-5c5c407cb4ff", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-17T23:03:52.000Z" - }, - "end": { - "$date": "2020-12-18T01:00:19.000Z" - }, - "events": [ - { - "uuid": "32ba4093-6e71-487e-a069-7ba5e8df6c8f", - "start": { - "$date": "2020-12-17T23:03:52.000Z" - }, - "end": { - "$date": "2020-12-18T01:00:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "27a18e45-5f10-417e-afc7-cf603f16dea2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-17T23:12:45.000Z" - }, - "end": { - "$date": "2020-12-17T23:14:21.000Z" - }, - "events": [ - { - "uuid": "6e8ca006-c44f-49c5-92f5-4b7dda88754b", - "start": { - "$date": "2020-12-17T23:12:45.000Z" - }, - "end": { - "$date": "2020-12-17T23:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49233d7a-f843-49be-addf-20695f26b866", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-17T23:19:02.000Z" - }, - "end": { - "$date": "2020-12-17T23:38:47.000Z" - }, - "events": [ - { - "uuid": "bd50648b-2bfa-4863-bf1e-b2aa073f90d0", - "start": { - "$date": "2020-12-17T23:19:02.000Z" - }, - "end": { - "$date": "2020-12-17T23:38:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "62f42163-e769-4685-b052-d69234995ce9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-17T23:16:46.000Z" - }, - "end": { - "$date": "2020-12-18T00:37:56.000Z" - }, - "events": [ - { - "uuid": "b322b0f0-51ad-4a70-b992-acc445bbc228", - "start": { - "$date": "2020-12-17T23:16:46.000Z" - }, - "end": { - "$date": "2020-12-18T00:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd513281-30a6-4faf-b60c-86b24eda238c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-17T23:46:03.000Z" - }, - "end": { - "$date": "2020-12-18T00:06:34.000Z" - }, - "events": [ - { - "uuid": "37e7a060-6465-4b18-a1da-4b8d0ce50307", - "start": { - "$date": "2020-12-17T23:46:03.000Z" - }, - "end": { - "$date": "2020-12-18T00:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "022f0500-cac3-4288-a409-58ffc8299f15", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-18T00:03:27.000Z" - }, - "end": { - "$date": "2020-12-18T00:13:53.000Z" - }, - "events": [ - { - "uuid": "369840db-81bb-4488-89e6-3482b0d96893", - "start": { - "$date": "2020-12-18T00:03:27.000Z" - }, - "end": { - "$date": "2020-12-18T00:13:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "df29b43a-8d39-4086-b791-7cfa3c25426d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-18T00:32:06.000Z" - }, - "end": { - "$date": "2020-12-18T01:03:36.000Z" - }, - "events": [ - { - "uuid": "b24c697d-e1cd-4171-8f89-4d2b9c11dfd8", - "start": { - "$date": "2020-12-18T00:32:06.000Z" - }, - "end": { - "$date": "2020-12-18T01:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "b0ffee60-5d70-47f4-9d4e-78c70e2354bf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-18T00:40:36.000Z" - }, - "end": { - "$date": "2020-12-18T02:04:25.000Z" - }, - "events": [ - { - "uuid": "a76c295e-7992-443e-8c76-09027af78f23", - "start": { - "$date": "2020-12-18T00:40:36.000Z" - }, - "end": { - "$date": "2020-12-18T02:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "dd528204-e276-44fb-9e09-9b32f6e63a45", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-18T00:41:48.000Z" - }, - "end": { - "$date": "2020-12-18T02:16:33.000Z" - }, - "events": [ - { - "uuid": "754b6704-8599-4068-944e-f1e0cd414aa3", - "start": { - "$date": "2020-12-18T00:41:48.000Z" - }, - "end": { - "$date": "2020-12-18T02:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "03a752e0-2419-441d-8d40-1acb7c18c5c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T00:45:54.000Z" - }, - "end": { - "$date": "2020-12-18T02:40:24.000Z" - }, - "events": [ - { - "uuid": "4ff8e063-9509-4937-bfc7-5e168af5f20e", - "start": { - "$date": "2020-12-18T00:45:54.000Z" - }, - "end": { - "$date": "2020-12-18T02:40:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8f98e43e-d689-4144-9a69-e42aa9a447aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-18T02:10:37.000Z" - }, - "end": { - "$date": "2020-12-18T02:20:09.000Z" - }, - "events": [ - { - "uuid": "0f857320-f747-499a-b9eb-22d5b97d9c51", - "start": { - "$date": "2020-12-18T02:10:37.000Z" - }, - "end": { - "$date": "2020-12-18T02:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "7196083d-eeaf-41c5-a764-25506cce626f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-18T02:34:38.000Z" - }, - "end": { - "$date": "2020-12-18T03:00:10.000Z" - }, - "events": [ - { - "uuid": "1d24b5ae-cd54-49a3-baa4-668e001a24b9", - "start": { - "$date": "2020-12-18T02:34:38.000Z" - }, - "end": { - "$date": "2020-12-18T03:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "315e4a62-b922-4c6f-8ac0-ad6f7ac402ef", - "uuid": "e7d24f53-6a29-44fc-9048-dbe1337151e4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-18T03:37:12.000Z" - }, - "end": { - "$date": "2020-12-18T04:12:25.000Z" - }, - "events": [ - { - "uuid": "b01ec0bd-3260-4918-89fe-ba0e2260ff46", - "start": { - "$date": "2020-12-18T03:37:12.000Z" - }, - "end": { - "$date": "2020-12-18T04:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dd6e48ac-4b12-4498-835e-999adbae7b11", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-18T03:42:58.000Z" - }, - "end": { - "$date": "2020-12-18T04:18:20.000Z" - }, - "events": [ - { - "uuid": "b1fbf70c-2a63-4304-acd1-a5bf1139909d", - "start": { - "$date": "2020-12-18T03:42:58.000Z" - }, - "end": { - "$date": "2020-12-18T04:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d2f97b1-1c95-484e-90b4-837e3b3f8460", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T04:06:07.000Z" - }, - "end": { - "$date": "2020-12-18T04:25:57.000Z" - }, - "events": [ - { - "uuid": "60a4872a-7d80-4a2f-8422-7ae13c5f1d51", - "start": { - "$date": "2020-12-18T04:06:07.000Z" - }, - "end": { - "$date": "2020-12-18T04:25:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c895950e-7c7b-466d-b126-8d611a2998a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-18T04:05:36.000Z" - }, - "end": { - "$date": "2020-12-18T04:07:49.000Z" - }, - "events": [ - { - "uuid": "45a8e265-487b-4d8a-85bd-3a79284a1d8c", - "start": { - "$date": "2020-12-18T04:05:36.000Z" - }, - "end": { - "$date": "2020-12-18T04:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6d467c96-82d5-49a3-ba0c-26ae6a5c0c6a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-18T04:07:53.000Z" - }, - "end": { - "$date": "2020-12-18T07:09:25.000Z" - }, - "events": [ - { - "uuid": "5bd7060c-30d0-43e4-9b14-b81ab4168c19", - "start": { - "$date": "2020-12-18T04:07:53.000Z" - }, - "end": { - "$date": "2020-12-18T07:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19df1236-9171-427c-a355-1d7ed17ee4d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T04:26:21.000Z" - }, - "end": { - "$date": "2020-12-18T04:41:53.000Z" - }, - "events": [ - { - "uuid": "079f9e39-ae2c-4b1f-99e7-28a55b22ef16", - "start": { - "$date": "2020-12-18T04:26:21.000Z" - }, - "end": { - "$date": "2020-12-18T04:41:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "55cea209-ccf1-427e-9503-d7ce764cffc1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T04:42:01.000Z" - }, - "end": { - "$date": "2020-12-18T07:36:24.000Z" - }, - "events": [ - { - "uuid": "f7a03916-3cd8-42c0-baa5-f72b6ae56394", - "start": { - "$date": "2020-12-18T04:42:01.000Z" - }, - "end": { - "$date": "2020-12-18T07:36:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2cff493b-af8b-4bf6-ac14-5eb4a3b71a7c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T04:45:22.000Z" - }, - "end": { - "$date": "2020-12-18T06:09:37.000Z" - }, - "events": [ - { - "uuid": "abbf8324-8de0-4728-b7d2-0a8a2c93b4a5", - "start": { - "$date": "2020-12-18T04:45:22.000Z" - }, - "end": { - "$date": "2020-12-18T06:09:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "977f6948-9c08-4b0b-820e-3f7d5c547911", - "uuid": "04b987f7-2345-46b4-a046-8f5f5c6e122f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-18T04:51:43.000Z" - }, - "end": { - "$date": "2020-12-18T05:15:22.000Z" - }, - "events": [ - { - "uuid": "12362384-1a1d-410f-b794-3ea09b70c5f4", - "start": { - "$date": "2020-12-18T04:51:43.000Z" - }, - "end": { - "$date": "2020-12-18T05:15:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "afba9eab-cd58-4f8e-a9e2-b940c494740f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-18T05:33:31.000Z" - }, - "end": { - "$date": "2020-12-18T10:31:47.000Z" - }, - "events": [ - { - "uuid": "ae02c81f-28fd-4d4a-b324-6aeb7a40950d", - "start": { - "$date": "2020-12-18T05:33:31.000Z" - }, - "end": { - "$date": "2020-12-18T08:43:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa758c03-9ba6-4735-963f-1854b9613fb3", - "start": { - "$date": "2020-12-18T08:43:31.000Z" - }, - "end": { - "$date": "2020-12-18T08:48:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f00d96d5-5727-42d7-bff2-d950d3193d0f", - "start": { - "$date": "2020-12-18T08:48:31.000Z" - }, - "end": { - "$date": "2020-12-18T08:58:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad617a84-db6c-4b37-803b-cee70c14c2eb", - "start": { - "$date": "2020-12-18T08:58:31.000Z" - }, - "end": { - "$date": "2020-12-18T09:01:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d3b5424b-b5e7-40cc-9c33-df24dd229655", - "start": { - "$date": "2020-12-18T09:01:31.000Z" - }, - "end": { - "$date": "2020-12-18T10:31:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "99fbcddd-71ad-41e7-b756-ed8526445fa3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-18T05:40:09.000Z" - }, - "end": { - "$date": "2020-12-18T06:39:15.000Z" - }, - "events": [ - { - "uuid": "20e60362-15ba-4a35-a31f-b10ea346146c", - "start": { - "$date": "2020-12-18T05:40:09.000Z" - }, - "end": { - "$date": "2020-12-18T06:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b7360562-3220-4c93-bf82-b166f2b9b759", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T06:55:13.000Z" - }, - "end": { - "$date": "2020-12-18T07:00:24.000Z" - }, - "events": [ - { - "uuid": "9c2368fc-1ac9-4949-a58e-557c24585459", - "start": { - "$date": "2020-12-18T06:55:13.000Z" - }, - "end": { - "$date": "2020-12-18T07:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "005a9378-3beb-4660-81a5-681f3b013527", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-18T16:09:29.000Z" - }, - "end": { - "$date": "2020-12-18T17:47:38.000Z" - }, - "events": [ - { - "uuid": "fe1b9a92-cd93-4df2-9465-e9bd38b2c9f5", - "start": { - "$date": "2020-12-18T16:09:29.000Z" - }, - "end": { - "$date": "2020-12-18T17:47:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "da6bfc59-9c56-46af-8a7a-0eadfeab71ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-18T17:34:21.000Z" - }, - "end": { - "$date": "2020-12-18T19:22:56.000Z" - }, - "events": [ - { - "uuid": "a46734b0-13e8-41fd-825c-2bf5eb43a78c", - "start": { - "$date": "2020-12-18T17:34:21.000Z" - }, - "end": { - "$date": "2020-12-18T19:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9517e1b-e7b2-4004-87eb-64453b077a40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T18:56:07.000Z" - }, - "end": { - "$date": "2020-12-18T19:20:13.000Z" - }, - "events": [ - { - "uuid": "44385ad1-a242-43d4-b6e4-aa15a9769d35", - "start": { - "$date": "2020-12-18T18:56:07.000Z" - }, - "end": { - "$date": "2020-12-18T19:20:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "829a8396-a632-49e3-8195-0abe92db8ff5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T19:42:18.000Z" - }, - "end": { - "$date": "2020-12-18T20:53:03.000Z" - }, - "events": [ - { - "uuid": "33ff7127-2ce6-418f-9745-9896732e0031", - "start": { - "$date": "2020-12-18T19:42:18.000Z" - }, - "end": { - "$date": "2020-12-18T20:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e204b0fc-df07-4e56-811d-1dc326046e89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-18T20:07:32.000Z" - }, - "end": { - "$date": "2020-12-19T00:21:24.000Z" - }, - "events": [ - { - "uuid": "be368e66-f7ea-4c60-a59a-04d4e3b99341", - "start": { - "$date": "2020-12-18T20:07:32.000Z" - }, - "end": { - "$date": "2020-12-19T00:21:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "dacab880-5fcb-4815-be8b-9f9d3894a46d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-18T20:46:20.000Z" - }, - "end": { - "$date": "2020-12-18T22:36:07.000Z" - }, - "events": [ - { - "uuid": "b133856d-5e33-42c9-8304-1c91866ba49d", - "start": { - "$date": "2020-12-18T20:46:20.000Z" - }, - "end": { - "$date": "2020-12-18T22:36:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "aa83cb0c-4d20-4784-aa29-11d138ee5d2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T22:28:58.000Z" - }, - "end": { - "$date": "2020-12-18T22:30:27.000Z" - }, - "events": [ - { - "uuid": "dd285fc5-92fa-4d81-b1c7-6eeabd6607c5", - "start": { - "$date": "2020-12-18T22:28:58.000Z" - }, - "end": { - "$date": "2020-12-18T22:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "fd8c5a75-6e5d-451b-8fd2-a5d30f04f8ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T22:31:08.000Z" - }, - "end": { - "$date": "2020-12-18T22:34:42.000Z" - }, - "events": [ - { - "uuid": "0c0e21a1-8a59-480d-a691-520d5eb9b9a2", - "start": { - "$date": "2020-12-18T22:31:08.000Z" - }, - "end": { - "$date": "2020-12-18T22:34:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcf8110a-9442-4044-b577-33d7115072cb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-18T22:34:20.000Z" - }, - "end": { - "$date": "2020-12-18T22:52:07.000Z" - }, - "events": [ - { - "uuid": "ea7fd8a9-c047-49db-ac81-1a2de610d917", - "start": { - "$date": "2020-12-18T22:34:20.000Z" - }, - "end": { - "$date": "2020-12-18T22:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "05e850ee-5140-4769-9a6c-3e62bfb9fbdd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T22:42:19.000Z" - }, - "end": { - "$date": "2020-12-18T22:47:38.000Z" - }, - "events": [ - { - "uuid": "ec70c303-f126-4d6c-9774-6a3a4259426d", - "start": { - "$date": "2020-12-18T22:42:19.000Z" - }, - "end": { - "$date": "2020-12-18T22:47:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "fc484287-9653-44a9-ac03-1d522ddacae1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T22:48:09.000Z" - }, - "end": { - "$date": "2020-12-18T22:59:49.000Z" - }, - "events": [ - { - "uuid": "f90afd18-dfc3-4e29-8b8b-367cd32b0ca2", - "start": { - "$date": "2020-12-18T22:48:09.000Z" - }, - "end": { - "$date": "2020-12-18T22:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "188b904a-b2cf-480e-9a42-348560a8ba1e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-18T23:02:20.000Z" - }, - "end": { - "$date": "2020-12-18T23:20:22.000Z" - }, - "events": [ - { - "uuid": "5ad4746a-a225-4ab3-9be7-c405174acee1", - "start": { - "$date": "2020-12-18T23:02:20.000Z" - }, - "end": { - "$date": "2020-12-18T23:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "0df34df0-c63e-464e-aca7-adbd783d0879", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T23:10:56.000Z" - }, - "end": { - "$date": "2020-12-18T23:26:25.000Z" - }, - "events": [ - { - "uuid": "7b43c3c6-ef4e-4168-857d-b4fd6ed3dd40", - "start": { - "$date": "2020-12-18T23:10:56.000Z" - }, - "end": { - "$date": "2020-12-18T23:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b61331f7-4375-4e22-9d81-b550a6629115", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-18T23:42:58.000Z" - }, - "end": { - "$date": "2020-12-19T00:46:39.000Z" - }, - "events": [ - { - "uuid": "e508262f-c581-4e6a-9eff-0cc81dc609fa", - "start": { - "$date": "2020-12-18T23:42:58.000Z" - }, - "end": { - "$date": "2020-12-19T00:46:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "3c4a11ae-fd9d-48ea-86e8-37b4eb59289e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-19T00:44:05.000Z" - }, - "end": { - "$date": "2020-12-19T01:08:32.000Z" - }, - "events": [ - { - "uuid": "00e45163-9312-445e-9d76-edfbf174927b", - "start": { - "$date": "2020-12-19T00:44:05.000Z" - }, - "end": { - "$date": "2020-12-19T01:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "40b4c21f-224e-4cd5-9fe4-8ac4ab752c87", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T01:37:50.000Z" - }, - "end": { - "$date": "2020-12-19T02:10:47.000Z" - }, - "events": [ - { - "uuid": "f3bdcc4f-fad3-4f9c-bf6a-5fc40eacb6d1", - "start": { - "$date": "2020-12-19T01:37:50.000Z" - }, - "end": { - "$date": "2020-12-19T02:10:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "98faf33f-369c-4922-8dd9-a249e3bc781f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T02:16:07.000Z" - }, - "end": { - "$date": "2020-12-19T03:43:44.000Z" - }, - "events": [ - { - "uuid": "119fd8d8-a1e9-44bb-9e62-1ad3f285b844", - "start": { - "$date": "2020-12-19T02:16:07.000Z" - }, - "end": { - "$date": "2020-12-19T03:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "71a58247-f384-43ec-886a-a44c475ba44d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-19T02:21:00.000Z" - }, - "end": { - "$date": "2020-12-19T03:49:16.000Z" - }, - "events": [ - { - "uuid": "d93f4252-1bbe-4ee2-9e09-9ca566b23e4f", - "start": { - "$date": "2020-12-19T02:21:00.000Z" - }, - "end": { - "$date": "2020-12-19T03:28:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2980a623-ba79-401a-9b1c-ea3571591c3c", - "start": { - "$date": "2020-12-19T03:28:00.000Z" - }, - "end": { - "$date": "2020-12-19T03:41:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f966963b-50ff-4638-84d2-b6808610ceca", - "start": { - "$date": "2020-12-19T03:41:00.000Z" - }, - "end": { - "$date": "2020-12-19T03:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e8636bfc-efa3-4440-84b4-15ed7ebcdd2b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T04:10:29.000Z" - }, - "end": { - "$date": "2020-12-19T04:30:40.000Z" - }, - "events": [ - { - "uuid": "f9939717-3281-43c6-8132-0151efb401d9", - "start": { - "$date": "2020-12-19T04:10:29.000Z" - }, - "end": { - "$date": "2020-12-19T04:30:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ae9d6231-55a7-4e29-a254-c203c0e8ae53", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-19T04:12:52.000Z" - }, - "end": { - "$date": "2020-12-19T05:44:49.000Z" - }, - "events": [ - { - "uuid": "5c9b0d21-e3d8-4191-8e02-493ddc99a8d3", - "start": { - "$date": "2020-12-19T04:12:52.000Z" - }, - "end": { - "$date": "2020-12-19T05:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6ad5fb84-dc58-4d50-9050-76f0f388b435", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T04:32:31.000Z" - }, - "end": { - "$date": "2020-12-19T04:45:56.000Z" - }, - "events": [ - { - "uuid": "3228ef81-7025-4dd2-bcd0-a1402d3b70da", - "start": { - "$date": "2020-12-19T04:32:31.000Z" - }, - "end": { - "$date": "2020-12-19T04:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e164bae6-1fb1-4c74-b3b1-ce890aa1384b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T04:47:12.000Z" - }, - "end": { - "$date": "2020-12-19T05:19:14.000Z" - }, - "events": [ - { - "uuid": "84315818-ea11-459e-9826-29bf1b6d4a6b", - "start": { - "$date": "2020-12-19T04:47:12.000Z" - }, - "end": { - "$date": "2020-12-19T05:19:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c7c4fae8-2a39-40e7-817a-b0eae535948e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-19T05:11:32.000Z" - }, - "end": { - "$date": "2020-12-19T07:46:01.000Z" - }, - "events": [ - { - "uuid": "40bf714a-0169-4cf3-b706-d214dc8933e2", - "start": { - "$date": "2020-12-19T05:11:32.000Z" - }, - "end": { - "$date": "2020-12-19T07:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "524d199a-0ab3-47ec-9181-084dafed8483", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T05:17:48.000Z" - }, - "end": { - "$date": "2020-12-19T05:18:53.000Z" - }, - "events": [ - { - "uuid": "19691f2b-10c5-4a39-902b-3336d6569359", - "start": { - "$date": "2020-12-19T05:17:48.000Z" - }, - "end": { - "$date": "2020-12-19T05:18:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a657ba26-4eaa-4570-a76d-fd6c0ddd85ff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T05:19:40.000Z" - }, - "end": { - "$date": "2020-12-19T05:42:40.000Z" - }, - "events": [ - { - "uuid": "b4429bdd-d495-42f0-9699-71f5e3031e5a", - "start": { - "$date": "2020-12-19T05:19:40.000Z" - }, - "end": { - "$date": "2020-12-19T05:42:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "983200d5-7416-4850-95de-7de2cf1e7da1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T05:20:35.000Z" - }, - "end": { - "$date": "2020-12-19T05:53:41.000Z" - }, - "events": [ - { - "uuid": "0cc0fba1-5283-4aa2-bb90-f2911073a306", - "start": { - "$date": "2020-12-19T05:20:35.000Z" - }, - "end": { - "$date": "2020-12-19T05:53:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ccc4133e-6d62-4f35-8399-024c51ae1865", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-19T05:49:23.000Z" - }, - "end": { - "$date": "2020-12-19T07:24:11.000Z" - }, - "events": [ - { - "uuid": "bddd2175-8c27-4b65-9435-a2c1082af433", - "start": { - "$date": "2020-12-19T05:49:23.000Z" - }, - "end": { - "$date": "2020-12-19T07:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f96ce0b1-8acc-4f55-a611-4f3ce463bce7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T05:56:45.000Z" - }, - "end": { - "$date": "2020-12-19T06:15:09.000Z" - }, - "events": [ - { - "uuid": "9f77c9c2-5664-48bc-a4f7-eb6276478319", - "start": { - "$date": "2020-12-19T05:56:45.000Z" - }, - "end": { - "$date": "2020-12-19T06:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "b5c63c2d-b5d9-404f-a319-67bf10258486", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T05:59:37.000Z" - }, - "end": { - "$date": "2020-12-19T06:04:21.000Z" - }, - "events": [ - { - "uuid": "e4aeaeeb-03b5-40c3-9295-9aa674b81928", - "start": { - "$date": "2020-12-19T05:59:37.000Z" - }, - "end": { - "$date": "2020-12-19T06:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "a919bcf2-e9dc-4058-ae67-976f397ca8fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T06:05:48.000Z" - }, - "end": { - "$date": "2020-12-19T06:10:32.000Z" - }, - "events": [ - { - "uuid": "bbb312a5-b40e-46d2-925f-675a8b2fcce8", - "start": { - "$date": "2020-12-19T06:05:48.000Z" - }, - "end": { - "$date": "2020-12-19T06:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7b68e23-5869-45ff-81f6-98f293d0b2bd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-19T06:06:29.000Z" - }, - "end": { - "$date": "2020-12-19T06:11:45.000Z" - }, - "events": [ - { - "uuid": "827ab9df-5c19-4386-a497-ada309897aff", - "start": { - "$date": "2020-12-19T06:06:29.000Z" - }, - "end": { - "$date": "2020-12-19T06:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "b7e83955-1f26-4013-8bac-f7aea4eb52c9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T06:11:03.000Z" - }, - "end": { - "$date": "2020-12-19T06:12:07.000Z" - }, - "events": [ - { - "uuid": "3336ea68-a61f-4d2c-b3b7-2d2897322c14", - "start": { - "$date": "2020-12-19T06:11:03.000Z" - }, - "end": { - "$date": "2020-12-19T06:12:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "fd5ce03a-14fb-44c5-8205-a5511385a609", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T06:13:13.000Z" - }, - "end": { - "$date": "2020-12-19T07:45:16.000Z" - }, - "events": [ - { - "uuid": "f67c33fd-a1e4-4361-9312-1cf5d199bb22", - "start": { - "$date": "2020-12-19T06:13:13.000Z" - }, - "end": { - "$date": "2020-12-19T07:19:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "48b25c3a-2229-4d1c-93da-58fe5db307d4", - "start": { - "$date": "2020-12-19T07:19:13.000Z" - }, - "end": { - "$date": "2020-12-19T07:35:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc52ac95-8e5b-489d-9be4-372318bc76a7", - "start": { - "$date": "2020-12-19T07:35:13.000Z" - }, - "end": { - "$date": "2020-12-19T07:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a94cbce-9555-454c-b0e7-d5c25df8cf13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T06:33:24.000Z" - }, - "end": { - "$date": "2020-12-19T06:33:23.000Z" - }, - "events": [ - { - "uuid": "2b80a3b0-2e30-46d3-ba26-af80e17fa319", - "start": { - "$date": "2020-12-19T06:33:24.000Z" - }, - "end": { - "$date": "2020-12-19T06:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9772620-6482-4f4e-9282-ec8f4407ae5b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-19T06:38:17.000Z" - }, - "end": { - "$date": "2020-12-19T06:58:57.000Z" - }, - "events": [ - { - "uuid": "41737bef-a071-4b98-b177-6169af5a0c76", - "start": { - "$date": "2020-12-19T06:38:17.000Z" - }, - "end": { - "$date": "2020-12-19T06:58:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f735818c-33ac-4eea-99c4-94657342b363", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T06:38:16.000Z" - }, - "end": { - "$date": "2020-12-19T06:59:03.000Z" - }, - "events": [ - { - "uuid": "b74bf0dd-84a6-4410-9b74-95ca9ec16c6d", - "start": { - "$date": "2020-12-19T06:38:16.000Z" - }, - "end": { - "$date": "2020-12-19T06:59:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edb4dad5-5fdd-41d4-8269-bd80e7c2a90a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-19T07:02:02.000Z" - }, - "end": { - "$date": "2020-12-19T07:18:48.000Z" - }, - "events": [ - { - "uuid": "794a7dfb-c0c2-4ee0-aa51-353d2111d4b9", - "start": { - "$date": "2020-12-19T07:02:02.000Z" - }, - "end": { - "$date": "2020-12-19T07:18:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f45ff81e-9428-4ca3-9daf-47e45e017fc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T07:02:07.000Z" - }, - "end": { - "$date": "2020-12-19T07:18:55.000Z" - }, - "events": [ - { - "uuid": "9f2b6935-f99e-430e-8668-7ceeb97abc5d", - "start": { - "$date": "2020-12-19T07:02:07.000Z" - }, - "end": { - "$date": "2020-12-19T07:18:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "6a327cf3-8421-4452-9018-4b4ce099f964", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T07:25:54.000Z" - }, - "end": { - "$date": "2020-12-19T07:56:34.000Z" - }, - "events": [ - { - "uuid": "624df5a4-a637-4ec8-b5b0-383f514d92d1", - "start": { - "$date": "2020-12-19T07:25:54.000Z" - }, - "end": { - "$date": "2020-12-19T07:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6d1b74c7-3f4b-41cc-a212-00caa3823af8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-19T07:47:14.000Z" - }, - "end": { - "$date": "2020-12-19T09:21:54.000Z" - }, - "events": [ - { - "uuid": "ee773e20-8b8b-4902-b3de-5b158ca0eecb", - "start": { - "$date": "2020-12-19T07:47:14.000Z" - }, - "end": { - "$date": "2020-12-19T08:09:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c69cb1ac-3c99-4720-9824-b65ef29bffd5", - "start": { - "$date": "2020-12-19T08:09:14.000Z" - }, - "end": { - "$date": "2020-12-19T08:12:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f2465171-f1c1-47a8-9cbc-acf37d9de4d1", - "start": { - "$date": "2020-12-19T08:12:14.000Z" - }, - "end": { - "$date": "2020-12-19T09:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6c39598-8d34-4fdf-a8d3-127f9826436b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-19T07:59:47.000Z" - }, - "end": { - "$date": "2020-12-19T08:23:58.000Z" - }, - "events": [ - { - "uuid": "0f37bb18-e6a8-45c3-ae78-6b3919efad55", - "start": { - "$date": "2020-12-19T07:59:47.000Z" - }, - "end": { - "$date": "2020-12-19T08:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e9785ca1-6523-4758-8243-fb94da950bba", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T08:15:26.000Z" - }, - "end": { - "$date": "2020-12-19T11:17:02.000Z" - }, - "events": [ - { - "uuid": "05f8af0f-9949-47ff-8ca8-aecb793007ae", - "start": { - "$date": "2020-12-19T08:15:26.000Z" - }, - "end": { - "$date": "2020-12-19T11:17:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eb6c8c7f-06d5-4bb2-ba15-1a25439d3ee8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-19T16:50:44.000Z" - }, - "end": { - "$date": "2020-12-19T18:04:54.000Z" - }, - "events": [ - { - "uuid": "9911c4a6-882c-4edf-a1f2-d6421f8f440d", - "start": { - "$date": "2020-12-19T16:50:44.000Z" - }, - "end": { - "$date": "2020-12-19T17:46:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc2348ab-d99f-4916-9f3a-7978f5d9d541", - "start": { - "$date": "2020-12-19T17:46:44.000Z" - }, - "end": { - "$date": "2020-12-19T18:00:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "650ac2a0-1a36-45ae-87b1-45b45bea4d8e", - "start": { - "$date": "2020-12-19T18:00:44.000Z" - }, - "end": { - "$date": "2020-12-19T18:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "19448e2f-7f86-43e3-801d-aaea391b438c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-19T17:19:15.000Z" - }, - "end": { - "$date": "2020-12-19T18:02:12.000Z" - }, - "events": [ - { - "uuid": "69ba3527-46cb-43cb-94cc-342336276211", - "start": { - "$date": "2020-12-19T17:19:15.000Z" - }, - "end": { - "$date": "2020-12-19T18:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "78c57541-143c-4fe8-bdb6-ee6ab5c618e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-19T18:35:57.000Z" - }, - "end": { - "$date": "2020-12-19T18:37:57.000Z" - }, - "events": [ - { - "uuid": "4eccd5a9-8b3b-4b16-a87f-b6b8f19f517a", - "start": { - "$date": "2020-12-19T18:35:57.000Z" - }, - "end": { - "$date": "2020-12-19T18:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "4df31f4d-397d-4d47-82c2-3dbb3c287058", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-19T18:38:37.000Z" - }, - "end": { - "$date": "2020-12-19T18:43:07.000Z" - }, - "events": [ - { - "uuid": "f5d92ac8-a72a-4dff-8052-b8a8420316fe", - "start": { - "$date": "2020-12-19T18:38:37.000Z" - }, - "end": { - "$date": "2020-12-19T18:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "36d3a67d-2b8c-4b32-87c3-f45d197a2588", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-19T18:50:13.000Z" - }, - "end": { - "$date": "2020-12-19T20:05:13.000Z" - }, - "events": [ - { - "uuid": "cf48a281-9cf2-437d-a952-bfcb5bf7af55", - "start": { - "$date": "2020-12-19T18:50:13.000Z" - }, - "end": { - "$date": "2020-12-19T20:05:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e1e12568-6bdc-4659-8626-e8739857809a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-19T19:59:52.000Z" - }, - "end": { - "$date": "2020-12-19T20:28:54.000Z" - }, - "events": [ - { - "uuid": "dc58fe2b-2dd9-44c0-9dbd-f2fb0ead34dc", - "start": { - "$date": "2020-12-19T19:59:52.000Z" - }, - "end": { - "$date": "2020-12-19T20:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "a7a483dd-3548-4c27-b6e8-6a7d44d1e3e7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-19T20:29:15.000Z" - }, - "end": { - "$date": "2020-12-19T23:15:50.000Z" - }, - "events": [ - { - "uuid": "0acf1ca9-361a-43a2-b92d-277ed8f562f3", - "start": { - "$date": "2020-12-19T20:29:15.000Z" - }, - "end": { - "$date": "2020-12-19T23:15:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "c96f1b83-c5dd-4ce3-b3b7-eaea1759c82d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-19T22:24:13.000Z" - }, - "end": { - "$date": "2020-12-19T22:26:14.000Z" - }, - "events": [ - { - "uuid": "9297ca72-b811-4ccd-b4ad-a1be0deffd76", - "start": { - "$date": "2020-12-19T22:24:13.000Z" - }, - "end": { - "$date": "2020-12-19T22:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "dc7a7f5c-2e4a-4e8d-9377-9af73f6be27b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-19T22:26:38.000Z" - }, - "end": { - "$date": "2020-12-19T22:56:09.000Z" - }, - "events": [ - { - "uuid": "e5823a3f-7aaa-49ca-9ff1-751fc1da6c36", - "start": { - "$date": "2020-12-19T22:26:38.000Z" - }, - "end": { - "$date": "2020-12-19T22:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "d90dbcfe-a96a-4161-85f1-04fdd8b4f119", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-19T23:30:32.000Z" - }, - "end": { - "$date": "2020-12-19T23:33:33.000Z" - }, - "events": [ - { - "uuid": "68478708-bc54-41e1-a1cb-1c6a8df527d0", - "start": { - "$date": "2020-12-19T23:30:32.000Z" - }, - "end": { - "$date": "2020-12-19T23:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "cdf4227b-a0ae-4b10-bcc2-daa68e9cecb7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-19T23:40:40.000Z" - }, - "end": { - "$date": "2020-12-20T01:22:00.000Z" - }, - "events": [ - { - "uuid": "dbb8af62-3ce9-4eb0-bd7c-5c002ad3e912", - "start": { - "$date": "2020-12-19T23:40:40.000Z" - }, - "end": { - "$date": "2020-12-20T01:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "299ba713-0c2b-44fd-a1a7-81898d9afecf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-19T23:59:50.000Z" - }, - "end": { - "$date": "2020-12-20T00:25:52.000Z" - }, - "events": [ - { - "uuid": "5de5ae92-23b2-4d74-9acf-038fff3789ee", - "start": { - "$date": "2020-12-19T23:59:50.000Z" - }, - "end": { - "$date": "2020-12-20T00:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "633a97bd-30a3-4f61-a24e-27d13946ecd2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-20T00:52:06.000Z" - }, - "end": { - "$date": "2020-12-20T00:57:58.000Z" - }, - "events": [ - { - "uuid": "a66ed237-24d9-4150-b693-98f05733e3dd", - "start": { - "$date": "2020-12-20T00:52:06.000Z" - }, - "end": { - "$date": "2020-12-20T00:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "39e477e2-24b2-4f6b-b5fb-7d532553aa1b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T00:52:21.000Z" - }, - "end": { - "$date": "2020-12-20T02:51:14.000Z" - }, - "events": [ - { - "uuid": "be4dc604-1aae-47c6-9cba-29aada3f4b67", - "start": { - "$date": "2020-12-20T00:52:21.000Z" - }, - "end": { - "$date": "2020-12-20T02:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3b370f30-6114-427f-b3da-1bddc4890e42", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-20T01:32:32.000Z" - }, - "end": { - "$date": "2020-12-20T03:40:57.000Z" - }, - "events": [ - { - "uuid": "87672206-1bee-4076-9894-cc73a428aac1", - "start": { - "$date": "2020-12-20T01:32:32.000Z" - }, - "end": { - "$date": "2020-12-20T03:40:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "583aabc3-934b-469c-bc76-75e35531add5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T01:13:57.000Z" - }, - "end": { - "$date": "2020-12-20T02:50:49.000Z" - }, - "events": [ - { - "uuid": "436f481f-4096-47ff-af90-fa9df11bfcf7", - "start": { - "$date": "2020-12-20T01:13:57.000Z" - }, - "end": { - "$date": "2020-12-20T02:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c915959f-0d34-4592-ab13-b0cef74cbee7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-20T02:18:29.000Z" - }, - "end": { - "$date": "2020-12-20T07:39:31.000Z" - }, - "events": [ - { - "uuid": "12ebfab8-74f6-4d84-9862-68f8ad80919e", - "start": { - "$date": "2020-12-20T02:18:29.000Z" - }, - "end": { - "$date": "2020-12-20T05:04:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56760579-4c54-48ed-a9e5-9689f4402420", - "start": { - "$date": "2020-12-20T05:04:29.000Z" - }, - "end": { - "$date": "2020-12-20T05:21:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8efc7025-2b7f-4dd5-9fba-83ce515eed7e", - "start": { - "$date": "2020-12-20T05:21:29.000Z" - }, - "end": { - "$date": "2020-12-20T05:41:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9dcca14-0c45-47d8-a63a-37137a42c6e5", - "start": { - "$date": "2020-12-20T05:41:29.000Z" - }, - "end": { - "$date": "2020-12-20T05:48:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04e0698c-4159-474e-9ca2-f33446e33e51", - "start": { - "$date": "2020-12-20T05:48:29.000Z" - }, - "end": { - "$date": "2020-12-20T07:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6d7a174e-6429-435d-abc1-c9fbc9f1ce59", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-20T02:44:32.000Z" - }, - "end": { - "$date": "2020-12-20T02:55:39.000Z" - }, - "events": [ - { - "uuid": "36c208eb-e1f5-44d3-b372-fb97c1e413bc", - "start": { - "$date": "2020-12-20T02:44:32.000Z" - }, - "end": { - "$date": "2020-12-20T02:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "af863fb6-caf4-4def-9018-6a169f08d292", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T02:51:31.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:46.000Z" - }, - "events": [ - { - "uuid": "f953b9f5-23ab-4ddd-989b-0f8377c4cf95", - "start": { - "$date": "2020-12-20T02:51:31.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c581fab6-c10f-4613-ba17-f8450c4bd9e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T02:53:50.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:41.000Z" - }, - "events": [ - { - "uuid": "b8925b5b-2295-4731-aa25-470f39cef33f", - "start": { - "$date": "2020-12-20T02:53:50.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f8bbd957-5993-49f3-8970-894a579bdcb2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-20T02:58:15.000Z" - }, - "end": { - "$date": "2020-12-20T05:26:00.000Z" - }, - "events": [ - { - "uuid": "e568dcfb-fe22-4d00-8f05-49fdc1598538", - "start": { - "$date": "2020-12-20T02:58:15.000Z" - }, - "end": { - "$date": "2020-12-20T05:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0ad0e7f0-fa6c-4117-be39-7f456f923e3b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T03:02:20.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:44.000Z" - }, - "events": [ - { - "uuid": "60e047ea-6502-4511-a6a4-cdb15c46a072", - "start": { - "$date": "2020-12-20T03:02:20.000Z" - }, - "end": { - "$date": "2020-12-20T03:23:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20bf8833-6ee7-45af-a43c-4ad51b72e82a", - "start": { - "$date": "2020-12-20T03:23:20.000Z" - }, - "end": { - "$date": "2020-12-20T03:56:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e8e09ae-f82e-4552-8300-b8e33920a7eb", - "start": { - "$date": "2020-12-20T03:56:20.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2b441cee-b7a6-47a1-bff5-9bd721614b4b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-20T03:08:05.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:47.000Z" - }, - "events": [ - { - "uuid": "7c7000a0-3118-4936-ba7e-7fbc90e589c2", - "start": { - "$date": "2020-12-20T03:08:05.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "60bdb941-ef78-45df-bd6a-86e81d50ec2b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-20T03:26:55.000Z" - }, - "end": { - "$date": "2020-12-20T04:48:18.000Z" - }, - "events": [ - { - "uuid": "553a7ef6-bf3d-451c-b3aa-a6c323f40123", - "start": { - "$date": "2020-12-20T03:26:55.000Z" - }, - "end": { - "$date": "2020-12-20T04:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8d5042b6-07d7-4c60-a257-9e393edd662e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-20T04:39:56.000Z" - }, - "end": { - "$date": "2020-12-20T04:41:43.000Z" - }, - "events": [ - { - "uuid": "e791b548-2b2c-4045-acb9-6bf1c7eee1f9", - "start": { - "$date": "2020-12-20T04:39:56.000Z" - }, - "end": { - "$date": "2020-12-20T04:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76e0db30-8156-4cb2-887b-503c697fe970", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-20T04:42:21.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:44.000Z" - }, - "events": [ - { - "uuid": "4524e636-f369-4050-bf52-859d33395a98", - "start": { - "$date": "2020-12-20T04:42:21.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "1c3797e7-1557-4b82-957d-e3691b945559", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-20T04:48:48.000Z" - }, - "end": { - "$date": "2020-12-20T06:26:02.000Z" - }, - "events": [ - { - "uuid": "5b926daf-9377-447b-a257-a2f3c3418ac1", - "start": { - "$date": "2020-12-20T04:48:48.000Z" - }, - "end": { - "$date": "2020-12-20T06:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ed4c8727-e9bd-436e-875c-188cdd0a13ed", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-20T04:49:16.000Z" - }, - "end": { - "$date": "2020-12-20T09:03:25.000Z" - }, - "events": [ - { - "uuid": "d6746537-4724-4dbd-bd9e-87a827265a1f", - "start": { - "$date": "2020-12-20T04:49:16.000Z" - }, - "end": { - "$date": "2020-12-20T09:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "773878eb-5299-409f-8617-d82239e8d75a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-20T04:49:33.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:48.000Z" - }, - "events": [ - { - "uuid": "dfca5746-4472-468f-bd62-e3e4885b48a8", - "start": { - "$date": "2020-12-20T04:49:33.000Z" - }, - "end": { - "$date": "2020-12-20T05:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63270fde-c0d5-48b1-9328-775f4ed3a7de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T05:26:08.000Z" - }, - "end": { - "$date": "2020-12-20T05:28:41.000Z" - }, - "events": [ - { - "uuid": "cdbf4c6b-b330-40f0-ad25-0aa8f4c11eb8", - "start": { - "$date": "2020-12-20T05:26:08.000Z" - }, - "end": { - "$date": "2020-12-20T05:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a53693e1-fc45-4472-ad93-84c66e4bc4c6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-20T05:26:20.000Z" - }, - "end": { - "$date": "2020-12-20T06:04:06.000Z" - }, - "events": [ - { - "uuid": "c55f5c59-7202-455c-950e-928b2ab2631b", - "start": { - "$date": "2020-12-20T05:26:20.000Z" - }, - "end": { - "$date": "2020-12-20T06:04:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da1f5af1-cdf1-4797-a1c3-4d01176f7cfe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T06:07:45.000Z" - }, - "end": { - "$date": "2020-12-20T06:07:41.000Z" - }, - "events": [ - { - "uuid": "171cd2ec-d772-4167-bfbd-f09828e750bd", - "start": { - "$date": "2020-12-20T06:07:45.000Z" - }, - "end": { - "$date": "2020-12-20T06:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "440941f5-6dbe-4725-af34-9b20304cee02", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-20T07:37:10.000Z" - }, - "end": { - "$date": "2020-12-20T07:38:04.000Z" - }, - "events": [ - { - "uuid": "0e6183e7-b54d-4e33-ae8a-a73e5108ee72", - "start": { - "$date": "2020-12-20T07:37:10.000Z" - }, - "end": { - "$date": "2020-12-20T07:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dbaaefd-0fb2-490e-ac24-08862098f85f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T05:26:01.000Z" - }, - "end": { - "$date": "2020-12-20T05:32:51.000Z" - }, - "events": [ - { - "uuid": "92c9cf78-ad87-442c-a44f-11c62941a6fb", - "start": { - "$date": "2020-12-20T05:26:01.000Z" - }, - "end": { - "$date": "2020-12-20T05:32:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "457e8d42-0d79-46bd-b942-806470afe06c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T05:31:25.000Z" - }, - "end": { - "$date": "2020-12-20T06:07:40.000Z" - }, - "events": [ - { - "uuid": "31b84605-0091-4b8c-abea-fa285bae4d54", - "start": { - "$date": "2020-12-20T05:31:25.000Z" - }, - "end": { - "$date": "2020-12-20T06:07:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66e3b39b-0974-464d-8fc3-ccadf9dac5e7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-20T07:37:16.000Z" - }, - "end": { - "$date": "2020-12-20T07:38:04.000Z" - }, - "events": [ - { - "uuid": "858f245b-4fc6-41c2-ba26-edc5a11339f4", - "start": { - "$date": "2020-12-20T07:37:16.000Z" - }, - "end": { - "$date": "2020-12-20T07:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e03ab99e-5790-42cd-98ae-1c49194525be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T05:34:36.000Z" - }, - "end": { - "$date": "2020-12-20T06:07:32.000Z" - }, - "events": [ - { - "uuid": "d163498a-ed9b-4d46-b3eb-44ab28bf37df", - "start": { - "$date": "2020-12-20T05:34:36.000Z" - }, - "end": { - "$date": "2020-12-20T06:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d4fd3fd-f4f2-4975-bec9-abdece30403e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T06:10:50.000Z" - }, - "end": { - "$date": "2020-12-20T06:41:22.000Z" - }, - "events": [ - { - "uuid": "68318af6-3d9d-4353-ab14-5102a96fec32", - "start": { - "$date": "2020-12-20T06:10:50.000Z" - }, - "end": { - "$date": "2020-12-20T06:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3346e4d3-e66f-4bec-a23b-b5512abdbcfe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T06:40:48.000Z" - }, - "end": { - "$date": "2020-12-20T06:41:23.000Z" - }, - "events": [ - { - "uuid": "2cb33112-ae7b-467d-885b-593651fc0725", - "start": { - "$date": "2020-12-20T06:40:48.000Z" - }, - "end": { - "$date": "2020-12-20T06:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "786adda9-6579-4abc-853f-51886b745eb0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T06:10:41.000Z" - }, - "end": { - "$date": "2020-12-20T06:41:31.000Z" - }, - "events": [ - { - "uuid": "4d66d38b-9018-4968-9cda-3fa1305dfcf8", - "start": { - "$date": "2020-12-20T06:10:41.000Z" - }, - "end": { - "$date": "2020-12-20T06:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "aab5314a-bfdf-437e-a858-be290838b5c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-20T06:27:12.000Z" - }, - "end": { - "$date": "2020-12-20T08:42:41.000Z" - }, - "events": [ - { - "uuid": "6f7c8bf8-9770-4ba0-aefb-4a0e53dee324", - "start": { - "$date": "2020-12-20T06:27:12.000Z" - }, - "end": { - "$date": "2020-12-20T08:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "759dc912-a026-4eb6-9e9d-840c05450dae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-20T06:31:13.000Z" - }, - "end": { - "$date": "2020-12-20T11:49:36.000Z" - }, - "events": [ - { - "uuid": "71ca94bc-dadf-4e5c-aabb-e835a187b5e3", - "start": { - "$date": "2020-12-20T06:31:13.000Z" - }, - "end": { - "$date": "2020-12-20T11:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc8ab98c-dc63-4233-9f85-d004ae123b28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T06:49:13.000Z" - }, - "end": { - "$date": "2020-12-20T07:09:12.000Z" - }, - "events": [ - { - "uuid": "ffa7d800-658c-4830-af42-082a0c97ed97", - "start": { - "$date": "2020-12-20T06:49:13.000Z" - }, - "end": { - "$date": "2020-12-20T07:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "343745da-ee95-4d90-ae82-627d4b2db36c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T06:43:48.000Z" - }, - "end": { - "$date": "2020-12-20T06:45:32.000Z" - }, - "events": [ - { - "uuid": "e3185fdb-c0d9-446a-b1f4-a51a8492677f", - "start": { - "$date": "2020-12-20T06:43:48.000Z" - }, - "end": { - "$date": "2020-12-20T06:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c538af36-87d8-4f0c-9f42-701b6f8c6b1d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T06:49:07.000Z" - }, - "end": { - "$date": "2020-12-20T07:09:02.000Z" - }, - "events": [ - { - "uuid": "870ac326-ede0-45e8-894f-e15515e54b1d", - "start": { - "$date": "2020-12-20T06:49:07.000Z" - }, - "end": { - "$date": "2020-12-20T07:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "05a9ca21-34fd-406a-8d54-42c56f606192", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-20T06:55:02.000Z" - }, - "end": { - "$date": "2020-12-20T07:39:57.000Z" - }, - "events": [ - { - "uuid": "95cfd18f-28cf-4661-8602-1721c8ff7607", - "start": { - "$date": "2020-12-20T06:55:02.000Z" - }, - "end": { - "$date": "2020-12-20T07:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e9bb301-4ff4-455c-8d1e-d8d8a5048cd8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T07:16:20.000Z" - }, - "end": { - "$date": "2020-12-20T07:37:05.000Z" - }, - "events": [ - { - "uuid": "133017d3-685b-4b39-82a1-fcf25d44fd61", - "start": { - "$date": "2020-12-20T07:16:20.000Z" - }, - "end": { - "$date": "2020-12-20T07:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcf89199-67bc-4169-8438-865cd9c11bc7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T07:10:26.000Z" - }, - "end": { - "$date": "2020-12-20T07:13:25.000Z" - }, - "events": [ - { - "uuid": "d6674943-9c95-4586-888f-3184c0727675", - "start": { - "$date": "2020-12-20T07:10:26.000Z" - }, - "end": { - "$date": "2020-12-20T07:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8688409-54fc-443e-adf4-dafeb9fbf6c9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-20T07:16:12.000Z" - }, - "end": { - "$date": "2020-12-20T07:37:12.000Z" - }, - "events": [ - { - "uuid": "8b3a80e7-6942-4e38-9794-4272be675dbd", - "start": { - "$date": "2020-12-20T07:16:12.000Z" - }, - "end": { - "$date": "2020-12-20T07:37:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f6a594e-b63a-456d-bf8a-d83de4a11422", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-20T08:48:57.000Z" - }, - "end": { - "$date": "2020-12-20T09:30:17.000Z" - }, - "events": [ - { - "uuid": "f2bd43ff-1e93-4e52-bfac-4f4a1db7a879", - "start": { - "$date": "2020-12-20T08:48:57.000Z" - }, - "end": { - "$date": "2020-12-20T09:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "62c95596-cdc8-43d7-ad65-8e3a517e390e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-20T09:20:38.000Z" - }, - "end": { - "$date": "2020-12-20T09:47:15.000Z" - }, - "events": [ - { - "uuid": "9f19f564-496e-4bc4-8190-78bb2407932a", - "start": { - "$date": "2020-12-20T09:20:38.000Z" - }, - "end": { - "$date": "2020-12-20T09:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "39d67093-26ea-40f8-9534-8a05d7a5fda3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-20T15:49:56.000Z" - }, - "end": { - "$date": "2020-12-20T16:43:02.000Z" - }, - "events": [ - { - "uuid": "b7587b08-5615-4f1f-b45c-d99ee2ab625b", - "start": { - "$date": "2020-12-20T15:49:56.000Z" - }, - "end": { - "$date": "2020-12-20T16:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "abbed611-b1f6-44ca-9539-a82ef1744e52", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-20T15:54:08.000Z" - }, - "end": { - "$date": "2020-12-20T16:43:07.000Z" - }, - "events": [ - { - "uuid": "bd414ff2-acc3-4367-8e63-0aad88f29fd5", - "start": { - "$date": "2020-12-20T15:54:08.000Z" - }, - "end": { - "$date": "2020-12-20T16:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "66894d84-9066-4d33-bf87-d723e49c0edd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-20T16:46:36.000Z" - }, - "end": { - "$date": "2020-12-20T18:09:38.000Z" - }, - "events": [ - { - "uuid": "d7074685-822f-45ff-b580-431ec9974aa7", - "start": { - "$date": "2020-12-20T16:46:36.000Z" - }, - "end": { - "$date": "2020-12-20T18:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "165c8446-3112-4a7b-bbb0-4e0cb6fd8b77", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-20T16:47:28.000Z" - }, - "end": { - "$date": "2020-12-20T17:42:34.000Z" - }, - "events": [ - { - "uuid": "1ff743db-3152-4483-b083-557dba64b804", - "start": { - "$date": "2020-12-20T16:47:28.000Z" - }, - "end": { - "$date": "2020-12-20T17:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "92e6024c-22b3-45fd-8993-14d360f29fef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T17:02:07.000Z" - }, - "end": { - "$date": "2020-12-20T17:32:19.000Z" - }, - "events": [ - { - "uuid": "601a4081-88fd-4123-a6e4-724350742514", - "start": { - "$date": "2020-12-20T17:02:07.000Z" - }, - "end": { - "$date": "2020-12-20T17:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "10e0b252-6a70-46ed-8713-a4eaf64bb78f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T17:32:38.000Z" - }, - "end": { - "$date": "2020-12-20T18:31:36.000Z" - }, - "events": [ - { - "uuid": "1faef3a9-b7ad-45e1-9977-71e249ad841f", - "start": { - "$date": "2020-12-20T17:32:38.000Z" - }, - "end": { - "$date": "2020-12-20T18:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15e71228-7898-44af-a397-297b81e0d92b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-20T18:44:03.000Z" - }, - "end": { - "$date": "2020-12-20T19:04:35.000Z" - }, - "events": [ - { - "uuid": "d7157e19-c4e5-48e5-8d81-3660fd3469af", - "start": { - "$date": "2020-12-20T18:44:03.000Z" - }, - "end": { - "$date": "2020-12-20T19:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a66b4cc3-af2c-42b7-93a1-6275922eeea4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-20T19:07:13.000Z" - }, - "end": { - "$date": "2020-12-20T19:08:27.000Z" - }, - "events": [ - { - "uuid": "d39f2f22-4909-43e2-b879-52feb82deaac", - "start": { - "$date": "2020-12-20T19:07:13.000Z" - }, - "end": { - "$date": "2020-12-20T19:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "06ebc290-a77e-485a-b8b7-a87575c0898f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-20T19:08:43.000Z" - }, - "end": { - "$date": "2020-12-20T20:34:43.000Z" - }, - "events": [ - { - "uuid": "aaea357e-a3ab-4ba1-867d-6ba996c54cd7", - "start": { - "$date": "2020-12-20T19:08:43.000Z" - }, - "end": { - "$date": "2020-12-20T20:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "87e5fc1f-2fdd-48a1-8409-ad206bc450d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-20T20:10:33.000Z" - }, - "end": { - "$date": "2020-12-20T20:33:34.000Z" - }, - "events": [ - { - "uuid": "c39fd30b-30d9-4aa5-9ffb-87f7ffac7bb1", - "start": { - "$date": "2020-12-20T20:10:33.000Z" - }, - "end": { - "$date": "2020-12-20T20:33:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "fa0e0af0-f345-4f5c-bea1-46df947dc83e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-20T20:42:04.000Z" - }, - "end": { - "$date": "2020-12-21T05:19:59.000Z" - }, - "events": [ - { - "uuid": "5f557e42-cfb2-478f-872b-4b9f2d3d6d54", - "start": { - "$date": "2020-12-20T20:42:04.000Z" - }, - "end": { - "$date": "2020-12-21T00:17:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3408c1a6-3450-4b74-ae51-201f9290218d", - "start": { - "$date": "2020-12-21T00:17:04.000Z" - }, - "end": { - "$date": "2020-12-21T00:43:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "57160d1d-0f73-44bb-a2a0-39792f3abfb5", - "start": { - "$date": "2020-12-21T00:43:04.000Z" - }, - "end": { - "$date": "2020-12-21T03:46:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97ec29ac-74f8-437a-ae94-d1eec863a70d", - "start": { - "$date": "2020-12-21T03:46:04.000Z" - }, - "end": { - "$date": "2020-12-21T05:00:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6f7d0e0-910a-41c3-8e3d-75b12538295f", - "start": { - "$date": "2020-12-21T05:00:04.000Z" - }, - "end": { - "$date": "2020-12-21T05:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "85648ad6-8617-40e5-aec0-6de2b72d60b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-20T21:25:00.000Z" - }, - "end": { - "$date": "2020-12-20T21:44:09.000Z" - }, - "events": [ - { - "uuid": "1776f2ba-a87a-4da6-9cba-4304efd3ff19", - "start": { - "$date": "2020-12-20T21:25:00.000Z" - }, - "end": { - "$date": "2020-12-20T21:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "7b3e5107-a187-4c45-82bc-aeb5dda892c8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-20T22:55:40.000Z" - }, - "end": { - "$date": "2020-12-21T00:30:13.000Z" - }, - "events": [ - { - "uuid": "a0629861-ee64-477f-9ee0-bfadbceb8eb9", - "start": { - "$date": "2020-12-20T22:55:40.000Z" - }, - "end": { - "$date": "2020-12-21T00:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3ed92515-27a6-4c36-9059-80b39caddf61", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-21T00:26:03.000Z" - }, - "end": { - "$date": "2020-12-21T02:49:58.000Z" - }, - "events": [ - { - "uuid": "250127b9-46b5-46b1-b7f0-f0a0c9411490", - "start": { - "$date": "2020-12-21T00:26:03.000Z" - }, - "end": { - "$date": "2020-12-21T02:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "2b7a6da4-d970-4331-8b84-f5a302b437f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T02:03:38.000Z" - }, - "end": { - "$date": "2020-12-21T03:58:15.000Z" - }, - "events": [ - { - "uuid": "d76ab6b8-17d2-4091-ba87-3d803c174143", - "start": { - "$date": "2020-12-21T02:03:38.000Z" - }, - "end": { - "$date": "2020-12-21T03:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f8e969aa-9729-4571-9ade-cb9fb7d97dfc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T02:24:59.000Z" - }, - "end": { - "$date": "2020-12-21T02:29:26.000Z" - }, - "events": [ - { - "uuid": "75164705-c75d-44a2-9b4d-de4d18e34178", - "start": { - "$date": "2020-12-21T02:24:59.000Z" - }, - "end": { - "$date": "2020-12-21T02:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "85b62f9f-2a72-4361-9480-739367836444", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T02:43:57.000Z" - }, - "end": { - "$date": "2020-12-21T02:57:54.000Z" - }, - "events": [ - { - "uuid": "65825478-cbc8-4dd6-9804-261aef909ee0", - "start": { - "$date": "2020-12-21T02:43:57.000Z" - }, - "end": { - "$date": "2020-12-21T02:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "092c2893-4338-4590-a1c6-5ed598f4c858", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T03:17:42.000Z" - }, - "end": { - "$date": "2020-12-21T04:08:56.000Z" - }, - "events": [ - { - "uuid": "f183afcf-2962-405d-b2ae-8f5126ece48a", - "start": { - "$date": "2020-12-21T03:17:42.000Z" - }, - "end": { - "$date": "2020-12-21T04:08:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edafebe2-3258-4985-8ba7-abc33ed87da9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-21T04:03:27.000Z" - }, - "end": { - "$date": "2020-12-21T04:23:40.000Z" - }, - "events": [ - { - "uuid": "0cc706ff-6f10-41a0-9816-0f7f9d19211e", - "start": { - "$date": "2020-12-21T04:03:27.000Z" - }, - "end": { - "$date": "2020-12-21T04:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddfb98bb-7d6a-4b0b-82c6-fe9cefc34734", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-21T03:51:32.000Z" - }, - "end": { - "$date": "2020-12-21T03:53:58.000Z" - }, - "events": [ - { - "uuid": "448fedc2-eb9d-49cc-9bf7-1db101bc84c9", - "start": { - "$date": "2020-12-21T03:51:32.000Z" - }, - "end": { - "$date": "2020-12-21T03:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5558812b-f2df-4cef-a4a2-8336a9f2c1b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-21T03:53:45.000Z" - }, - "end": { - "$date": "2020-12-21T04:44:41.000Z" - }, - "events": [ - { - "uuid": "fa3b9bc4-3719-4848-8402-f78ce897ebbe", - "start": { - "$date": "2020-12-21T03:53:45.000Z" - }, - "end": { - "$date": "2020-12-21T04:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d896991f-6ae5-42df-959b-fcd757dc01ad", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T04:03:26.000Z" - }, - "end": { - "$date": "2020-12-21T04:23:41.000Z" - }, - "events": [ - { - "uuid": "e274fe99-fe1e-40b4-a7dd-3738734fc8c2", - "start": { - "$date": "2020-12-21T04:03:26.000Z" - }, - "end": { - "$date": "2020-12-21T04:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0f482f0-a69c-46a7-81f1-23674b0aa1e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-21T04:03:30.000Z" - }, - "end": { - "$date": "2020-12-21T04:23:48.000Z" - }, - "events": [ - { - "uuid": "f45b216a-442e-4194-8b0b-5332dffc2048", - "start": { - "$date": "2020-12-21T04:03:30.000Z" - }, - "end": { - "$date": "2020-12-21T04:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1601a038-db4d-401a-b3ee-1cb1adc9f3a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T04:09:41.000Z" - }, - "end": { - "$date": "2020-12-21T15:24:40.000Z" - }, - "events": [ - { - "uuid": "36c03bd2-04a6-4181-aed5-4660a8ab4c46", - "start": { - "$date": "2020-12-21T04:09:41.000Z" - }, - "end": { - "$date": "2020-12-21T15:24:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8fb366a-70cb-4700-92cf-7ee3021e20f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-21T04:31:32.000Z" - }, - "end": { - "$date": "2020-12-21T05:05:27.000Z" - }, - "events": [ - { - "uuid": "ddff2668-a402-4728-aecf-3d01a2734508", - "start": { - "$date": "2020-12-21T04:31:32.000Z" - }, - "end": { - "$date": "2020-12-21T05:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eb1a2c8-2d21-4d08-b48f-806aed40703a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T04:32:32.000Z" - }, - "end": { - "$date": "2020-12-21T05:05:17.000Z" - }, - "events": [ - { - "uuid": "077e8b1f-7b31-4791-b208-7492f5bc00f1", - "start": { - "$date": "2020-12-21T04:32:32.000Z" - }, - "end": { - "$date": "2020-12-21T05:05:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "eee0cf37-bb56-472c-85be-e4826be24dc8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-21T04:29:03.000Z" - }, - "end": { - "$date": "2020-12-21T05:17:58.000Z" - }, - "events": [ - { - "uuid": "fcc0be4c-e894-4e71-acee-074495d68e42", - "start": { - "$date": "2020-12-21T04:29:03.000Z" - }, - "end": { - "$date": "2020-12-21T05:17:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c376c66d-f440-406c-8d20-cd54eea5e436", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-21T05:11:13.000Z" - }, - "end": { - "$date": "2020-12-21T05:51:59.000Z" - }, - "events": [ - { - "uuid": "92ba06c8-0d8d-4eb6-853e-1175b25258e6", - "start": { - "$date": "2020-12-21T05:11:13.000Z" - }, - "end": { - "$date": "2020-12-21T05:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cadb56ef-4821-417b-a322-1189ff171574", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T06:36:19.000Z" - }, - "end": { - "$date": "2020-12-21T06:37:14.000Z" - }, - "events": [ - { - "uuid": "382b0b78-ffb7-4a93-b945-99ca0a71313e", - "start": { - "$date": "2020-12-21T06:36:19.000Z" - }, - "end": { - "$date": "2020-12-21T06:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9a5e0ab-578d-45af-b699-7496ba0382e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-21T05:54:55.000Z" - }, - "end": { - "$date": "2020-12-21T06:07:50.000Z" - }, - "events": [ - { - "uuid": "c0abaea9-4db0-4372-ba55-9aa6a1171c63", - "start": { - "$date": "2020-12-21T05:54:55.000Z" - }, - "end": { - "$date": "2020-12-21T06:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "84c70928-e396-4773-b419-4de4e17fe476", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-21T05:58:50.000Z" - }, - "end": { - "$date": "2020-12-21T10:03:28.000Z" - }, - "events": [ - { - "uuid": "d890674f-38f2-4f73-a0c6-96914d3e9662", - "start": { - "$date": "2020-12-21T05:58:50.000Z" - }, - "end": { - "$date": "2020-12-21T10:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1d8d0a7-da97-4d3c-be68-916d2c5be34a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-21T06:10:00.000Z" - }, - "end": { - "$date": "2020-12-21T06:36:33.000Z" - }, - "events": [ - { - "uuid": "e9408983-f51a-48ab-86dd-356241c9169d", - "start": { - "$date": "2020-12-21T06:10:00.000Z" - }, - "end": { - "$date": "2020-12-21T06:36:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "04f2b772-6749-43e9-b5f7-693ae020a619", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-21T07:06:43.000Z" - }, - "end": { - "$date": "2020-12-21T09:45:20.000Z" - }, - "events": [ - { - "uuid": "003a93c5-e927-45b5-826d-a3a6e107c2f8", - "start": { - "$date": "2020-12-21T07:06:43.000Z" - }, - "end": { - "$date": "2020-12-21T09:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5eb6545e-3f1e-442a-a3ad-2a2cf7424c47", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-21T07:12:54.000Z" - }, - "end": { - "$date": "2020-12-21T08:07:04.000Z" - }, - "events": [ - { - "uuid": "08ea50a5-e0b3-4934-bfa8-8133bc2bab59", - "start": { - "$date": "2020-12-21T07:12:54.000Z" - }, - "end": { - "$date": "2020-12-21T08:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f61eaf34-ccc8-4145-944c-9d1aeffc056f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-21T07:17:23.000Z" - }, - "end": { - "$date": "2020-12-21T08:18:39.000Z" - }, - "events": [ - { - "uuid": "8504d5b1-ae8d-4a74-97b4-a772b69aa097", - "start": { - "$date": "2020-12-21T07:17:23.000Z" - }, - "end": { - "$date": "2020-12-21T08:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7b808085-0324-46da-9a1c-3455c6308aab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T15:48:11.000Z" - }, - "end": { - "$date": "2020-12-21T17:14:30.000Z" - }, - "events": [ - { - "uuid": "9ac2153d-9b17-435e-9fdc-33c0659d4db6", - "start": { - "$date": "2020-12-21T15:48:11.000Z" - }, - "end": { - "$date": "2020-12-21T17:14:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "d209d0b2-5778-44cd-8af9-547b4b6236e2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T17:15:20.000Z" - }, - "end": { - "$date": "2020-12-21T17:19:06.000Z" - }, - "events": [ - { - "uuid": "401b8c9d-6023-4ba9-84ae-182f9f417d86", - "start": { - "$date": "2020-12-21T17:15:20.000Z" - }, - "end": { - "$date": "2020-12-21T17:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "3c342c4c-b215-4402-9b7a-aef5f1a095dc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T17:19:46.000Z" - }, - "end": { - "$date": "2020-12-21T18:05:13.000Z" - }, - "events": [ - { - "uuid": "94391bf2-156d-48ea-aa85-47d8fa097b3e", - "start": { - "$date": "2020-12-21T17:19:46.000Z" - }, - "end": { - "$date": "2020-12-21T18:05:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5fd963d6-0db9-4a4a-830f-41df3d3b8e08", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-21T17:31:35.000Z" - }, - "end": { - "$date": "2020-12-21T18:48:53.000Z" - }, - "events": [ - { - "uuid": "6c8b56c3-37a8-4697-bb02-f83d9c49990d", - "start": { - "$date": "2020-12-21T17:31:35.000Z" - }, - "end": { - "$date": "2020-12-21T18:48:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "fe4b40cb-cf7c-46cd-a128-27943f190e24", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T18:57:09.000Z" - }, - "end": { - "$date": "2020-12-21T20:12:37.000Z" - }, - "events": [ - { - "uuid": "b660e29a-3ea7-462f-ad4f-3e1505518148", - "start": { - "$date": "2020-12-21T18:57:09.000Z" - }, - "end": { - "$date": "2020-12-21T20:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "24311e3e-2f2b-41c5-9e30-72d9713fe28a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-21T19:08:09.000Z" - }, - "end": { - "$date": "2020-12-21T19:39:19.000Z" - }, - "events": [ - { - "uuid": "0905a0b3-4f28-4a31-a4dc-cc6aed8ece19", - "start": { - "$date": "2020-12-21T19:08:09.000Z" - }, - "end": { - "$date": "2020-12-21T19:39:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ed90cd2a-d4f6-47a1-b777-474fb24fd538", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-21T19:08:50.000Z" - }, - "end": { - "$date": "2020-12-21T21:34:45.000Z" - }, - "events": [ - { - "uuid": "21714e53-a1e6-4e92-bb46-a740853e4e4a", - "start": { - "$date": "2020-12-21T19:08:50.000Z" - }, - "end": { - "$date": "2020-12-21T21:34:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "653cdc5b-e7f9-485a-a22c-a18b572f16e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-21T19:40:05.000Z" - }, - "end": { - "$date": "2020-12-21T19:41:09.000Z" - }, - "events": [ - { - "uuid": "1fe1abaa-31db-41b7-ac54-f397aafbf904", - "start": { - "$date": "2020-12-21T19:40:05.000Z" - }, - "end": { - "$date": "2020-12-21T19:41:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "12b3de75-f627-4059-b20f-97924e801a60", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-21T19:56:40.000Z" - }, - "end": { - "$date": "2020-12-21T20:32:40.000Z" - }, - "events": [ - { - "uuid": "21bebeea-698a-455a-a168-c57dfd7d6b56", - "start": { - "$date": "2020-12-21T19:56:40.000Z" - }, - "end": { - "$date": "2020-12-21T20:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "6ac5e025-eac2-4ca8-87c9-cd4c470c237d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T20:41:06.000Z" - }, - "end": { - "$date": "2020-12-21T20:59:53.000Z" - }, - "events": [ - { - "uuid": "ccac2e31-ccd0-4640-88fc-dee11d5dfe5f", - "start": { - "$date": "2020-12-21T20:41:06.000Z" - }, - "end": { - "$date": "2020-12-21T20:59:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "28c145e7-39c4-43c0-88c2-14627ddc5383", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-21T21:43:01.000Z" - }, - "end": { - "$date": "2020-12-21T21:58:17.000Z" - }, - "events": [ - { - "uuid": "74bac8e9-20c3-4450-8bff-b7ead234dcce", - "start": { - "$date": "2020-12-21T21:43:01.000Z" - }, - "end": { - "$date": "2020-12-21T21:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0877ca1e-10a1-47ef-b01a-d334fcbccb19", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-21T22:46:50.000Z" - }, - "end": { - "$date": "2020-12-21T23:22:29.000Z" - }, - "events": [ - { - "uuid": "991789bf-2ee9-413b-98d1-6ae341027318", - "start": { - "$date": "2020-12-21T22:46:50.000Z" - }, - "end": { - "$date": "2020-12-21T23:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f62b7426-50f0-4007-8e69-6fa939ab8edd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-21T22:46:21.000Z" - }, - "end": { - "$date": "2020-12-22T00:32:08.000Z" - }, - "events": [ - { - "uuid": "b29fcdd0-39a1-4d9f-bf9c-adeefb3d40ca", - "start": { - "$date": "2020-12-21T22:46:21.000Z" - }, - "end": { - "$date": "2020-12-22T00:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b88f59b4-b5f4-4650-b63f-e2d723cc9b1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-21T22:51:32.000Z" - }, - "end": { - "$date": "2020-12-22T01:26:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-21T22:51:32.000Z" - }, - "end": { - "$date": "2020-12-22T01:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f53eba2b-714c-4136-93b9-6a1a56a4fc93", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-21T22:52:14.000Z" - }, - "end": { - "$date": "2020-12-22T01:42:56.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-21T22:52:14.000Z" - }, - "end": { - "$date": "2020-12-22T01:42:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "73520b38-7d40-4843-bf1d-e352ef7f8f67", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-21T23:15:34.000Z" - }, - "end": { - "$date": "2020-12-21T23:51:46.000Z" - }, - "events": [ - { - "uuid": "f506a047-01b5-4e0a-a948-e3a41e41b433", - "start": { - "$date": "2020-12-21T23:15:34.000Z" - }, - "end": { - "$date": "2020-12-21T23:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b2047e6a-80f1-487e-93fc-6d8b589389ea", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-21T23:58:48.000Z" - }, - "end": { - "$date": "2020-12-22T00:18:40.000Z" - }, - "events": [ - { - "uuid": "d6dcbd2d-84bd-420e-ac1a-c64a24938784", - "start": { - "$date": "2020-12-21T23:58:48.000Z" - }, - "end": { - "$date": "2020-12-22T00:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "46b762a1-3386-4dff-91d7-e40cdbd60faf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-22T00:50:42.000Z" - }, - "end": { - "$date": "2020-12-22T00:51:32.000Z" - }, - "events": [ - { - "start": { - "$date": "2020-12-22T00:50:42.000Z" - }, - "end": { - "$date": "2020-12-22T00:51:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "e3914a02-d642-405e-8f7a-9c58fa98b7a5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T01:00:24.000Z" - }, - "end": { - "$date": "2020-12-22T03:03:06.000Z" - }, - "events": [ - { - "uuid": "d0775925-1b6a-48cd-ac46-8dc79a690021", - "start": { - "$date": "2020-12-22T01:00:24.000Z" - }, - "end": { - "$date": "2020-12-22T03:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "39e96089-c364-4cd3-91be-99cd6c9241bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-22T01:24:03.000Z" - }, - "end": { - "$date": "2020-12-22T01:25:29.000Z" - }, - "events": [ - { - "uuid": "d6b65d39-afc9-43a0-9ba4-958d98de1be8", - "start": { - "$date": "2020-12-22T01:24:03.000Z" - }, - "end": { - "$date": "2020-12-22T01:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "25998e29-4378-4154-9945-d139b9998d44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-22T01:25:33.000Z" - }, - "end": { - "$date": "2020-12-22T02:33:01.000Z" - }, - "events": [ - { - "uuid": "b39eedb9-f41d-4f8f-bf69-a80c49e8d94c", - "start": { - "$date": "2020-12-22T01:25:33.000Z" - }, - "end": { - "$date": "2020-12-22T02:33:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "dfdc29af-433e-44d8-a2ad-614b02f8d00f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-22T02:33:48.000Z" - }, - "end": { - "$date": "2020-12-22T04:10:26.000Z" - }, - "events": [ - { - "uuid": "79c4e7be-b0a4-4af5-95a0-c0e424562a0b", - "start": { - "$date": "2020-12-22T02:33:48.000Z" - }, - "end": { - "$date": "2020-12-22T04:10:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "66ffeb70-495a-4152-93e6-3652e00e4513", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-22T03:04:38.000Z" - }, - "end": { - "$date": "2020-12-22T03:06:29.000Z" - }, - "events": [ - { - "uuid": "d7cfd822-de7a-48d6-a006-822f2727ba7b", - "start": { - "$date": "2020-12-22T03:04:38.000Z" - }, - "end": { - "$date": "2020-12-22T03:06:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "d15a509f-68fe-4a09-b76f-3d8c97f35fff", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-22T03:07:19.000Z" - }, - "end": { - "$date": "2020-12-22T03:30:26.000Z" - }, - "events": [ - { - "uuid": "b67242f3-791c-4bba-bba0-5d08195a10fa", - "start": { - "$date": "2020-12-22T03:07:19.000Z" - }, - "end": { - "$date": "2020-12-22T03:30:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "cda922c1-a36c-4b8c-8ae9-b1c7431f6ed7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-22T03:30:27.000Z" - }, - "end": { - "$date": "2020-12-22T06:40:22.000Z" - }, - "events": [ - { - "uuid": "1042a45a-2a4e-44d3-b425-77ed521000a0", - "start": { - "$date": "2020-12-22T03:30:27.000Z" - }, - "end": { - "$date": "2020-12-22T06:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a5c61cc-3fc8-4a92-ab69-e54ead643c9b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T03:35:31.000Z" - }, - "end": { - "$date": "2020-12-22T03:50:26.000Z" - }, - "events": [ - { - "uuid": "66c5d454-8cc6-419a-ac5e-9d7fc77d4618", - "start": { - "$date": "2020-12-22T03:35:31.000Z" - }, - "end": { - "$date": "2020-12-22T03:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e4c3c3da-604b-4b2c-9ecd-c7f7115fa8ca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-22T04:09:13.000Z" - }, - "end": { - "$date": "2020-12-22T06:41:47.000Z" - }, - "events": [ - { - "uuid": "4be16467-a1a2-4e57-b746-7830c9c909bf", - "start": { - "$date": "2020-12-22T04:09:13.000Z" - }, - "end": { - "$date": "2020-12-22T06:36:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "66b4266a-faae-4f82-bcec-2945a04b9787", - "start": { - "$date": "2020-12-22T06:36:13.000Z" - }, - "end": { - "$date": "2020-12-22T06:39:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94d1cc36-9125-4169-8a1f-1f02b519ac25", - "start": { - "$date": "2020-12-22T06:39:13.000Z" - }, - "end": { - "$date": "2020-12-22T06:41:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "72de6bb2-885b-4e11-a2b7-bc7bf7eae39d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-22T05:24:26.000Z" - }, - "end": { - "$date": "2020-12-22T05:24:31.000Z" - }, - "events": [ - { - "uuid": "216ce057-464e-4a48-af4c-7e94eb7a3f9a", - "start": { - "$date": "2020-12-22T05:24:26.000Z" - }, - "end": { - "$date": "2020-12-22T05:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "58c8f674-2f6b-434e-8672-129aedc207e8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-22T04:11:22.000Z" - }, - "end": { - "$date": "2020-12-22T06:07:18.000Z" - }, - "events": [ - { - "uuid": "231431c8-2317-4168-8674-166be68fe6d9", - "start": { - "$date": "2020-12-22T04:11:22.000Z" - }, - "end": { - "$date": "2020-12-22T06:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b76331bc-b65b-45c0-b9af-77bc52371bb3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T04:40:01.000Z" - }, - "end": { - "$date": "2020-12-22T04:41:07.000Z" - }, - "events": [ - { - "uuid": "d3a9e59f-aa88-4da7-90df-799864fe8ade", - "start": { - "$date": "2020-12-22T04:40:01.000Z" - }, - "end": { - "$date": "2020-12-22T04:41:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0f48f174-bb9f-4205-ad9d-bbb6176fb3da", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T04:42:26.000Z" - }, - "end": { - "$date": "2020-12-22T05:35:05.000Z" - }, - "events": [ - { - "uuid": "884c3de9-8f5b-4dd0-aa76-92d40fc2ccea", - "start": { - "$date": "2020-12-22T04:42:26.000Z" - }, - "end": { - "$date": "2020-12-22T05:35:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "43ce69b1-2c8a-4bd3-884a-812fe8c95d9e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-22T05:18:17.000Z" - }, - "end": { - "$date": "2020-12-22T05:52:02.000Z" - }, - "events": [ - { - "uuid": "8757563e-5e85-4c21-ae51-6fe8dafe37c6", - "start": { - "$date": "2020-12-22T05:18:17.000Z" - }, - "end": { - "$date": "2020-12-22T05:52:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4759603f-744c-4ae1-8280-f67c9c49f1ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T05:23:10.000Z" - }, - "end": { - "$date": "2020-12-22T05:40:39.000Z" - }, - "events": [ - { - "uuid": "57677262-5ed7-41aa-86ec-079f70d75bc9", - "start": { - "$date": "2020-12-22T05:23:10.000Z" - }, - "end": { - "$date": "2020-12-22T05:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c95981df-d4ac-43d0-8448-c50eb37878e9", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-22T05:30:38.000Z" - }, - "end": { - "$date": "2020-12-22T07:28:01.000Z" - }, - "events": [ - { - "uuid": "be2302cf-3f08-4df3-8c82-683554b42e0f", - "start": { - "$date": "2020-12-22T05:30:38.000Z" - }, - "end": { - "$date": "2020-12-22T07:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b40d573d-b37e-4180-9e12-e33b5687b836", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T05:36:05.000Z" - }, - "end": { - "$date": "2020-12-22T08:00:43.000Z" - }, - "events": [ - { - "uuid": "1957beef-0297-44cd-83ba-b498a95084e1", - "start": { - "$date": "2020-12-22T05:36:05.000Z" - }, - "end": { - "$date": "2020-12-22T08:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "9d293def-8eb9-4852-abbc-096f97427a9b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T05:58:47.000Z" - }, - "end": { - "$date": "2020-12-22T06:33:13.000Z" - }, - "events": [ - { - "uuid": "e2d3c160-64cf-4c5a-a52f-ebdc2d5213ec", - "start": { - "$date": "2020-12-22T05:58:47.000Z" - }, - "end": { - "$date": "2020-12-22T06:33:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "24f386d8-1834-4719-804e-4bbc81c5acd8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-22T06:43:44.000Z" - }, - "end": { - "$date": "2020-12-22T09:31:29.000Z" - }, - "events": [ - { - "uuid": "af0b1c2c-4c2c-43f7-952c-172581170c7c", - "start": { - "$date": "2020-12-22T06:43:44.000Z" - }, - "end": { - "$date": "2020-12-22T08:05:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24bcffb0-e509-410d-81ea-b67311f81e7d", - "start": { - "$date": "2020-12-22T08:05:44.000Z" - }, - "end": { - "$date": "2020-12-22T08:09:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "016fb308-1969-4cb0-9362-f499d0275788", - "start": { - "$date": "2020-12-22T08:09:44.000Z" - }, - "end": { - "$date": "2020-12-22T09:31:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "08a6aefa-7f8a-4546-a79b-fd03ffb91618", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T08:01:03.000Z" - }, - "end": { - "$date": "2020-12-22T08:50:16.000Z" - }, - "events": [ - { - "uuid": "754aec65-7b5d-471c-8392-d1763f5e06dc", - "start": { - "$date": "2020-12-22T08:01:03.000Z" - }, - "end": { - "$date": "2020-12-22T08:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "dc736f71-a146-477a-aa56-9e9d0b3cd2a5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-22T08:50:36.000Z" - }, - "end": { - "$date": "2020-12-22T09:28:17.000Z" - }, - "events": [ - { - "uuid": "460d25b0-64d9-4caa-ac85-d21083eb89b5", - "start": { - "$date": "2020-12-22T08:50:36.000Z" - }, - "end": { - "$date": "2020-12-22T09:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "3497b299-0a72-4a0a-ab13-04e35a10d0ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-22T15:29:24.000Z" - }, - "end": { - "$date": "2020-12-22T15:33:03.000Z" - }, - "events": [ - { - "uuid": "58e26d1e-32af-49cf-8235-27468906bd1f", - "start": { - "$date": "2020-12-22T15:29:24.000Z" - }, - "end": { - "$date": "2020-12-22T15:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a1c51046-7a26-43d0-8f36-af24ffda9a46", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-22T17:14:06.000Z" - }, - "end": { - "$date": "2020-12-22T19:05:32.000Z" - }, - "events": [ - { - "uuid": "795705db-93f0-4067-b1b3-d6c874547630", - "start": { - "$date": "2020-12-22T17:14:06.000Z" - }, - "end": { - "$date": "2020-12-22T19:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "88bcd600-4592-4baf-8e1b-64a99ee59d10", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-22T17:56:53.000Z" - }, - "end": { - "$date": "2020-12-22T18:05:24.000Z" - }, - "events": [ - { - "uuid": "f3f1da31-4060-400a-87e8-c599525b4c41", - "start": { - "$date": "2020-12-22T17:56:53.000Z" - }, - "end": { - "$date": "2020-12-22T18:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "34838778-86a3-4f0a-b3ce-bcd8d927f249", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T18:28:07.000Z" - }, - "end": { - "$date": "2020-12-22T18:35:37.000Z" - }, - "events": [ - { - "uuid": "cbf77588-35eb-49a5-b4b3-02b7d27b0ec4", - "start": { - "$date": "2020-12-22T18:28:07.000Z" - }, - "end": { - "$date": "2020-12-22T18:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9fceadeb-57e4-4321-8f36-a8f914212346", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-22T18:35:26.000Z" - }, - "end": { - "$date": "2020-12-22T19:28:42.000Z" - }, - "events": [ - { - "uuid": "e3513324-afba-4293-aa88-c3063e6341e0", - "start": { - "$date": "2020-12-22T18:35:26.000Z" - }, - "end": { - "$date": "2020-12-22T19:28:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bafaeb8e-6d14-4794-86c8-2aab0927c830", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T18:40:07.000Z" - }, - "end": { - "$date": "2020-12-22T18:58:53.000Z" - }, - "events": [ - { - "uuid": "9c14e004-6a69-4a39-89af-015cdb80e8cb", - "start": { - "$date": "2020-12-22T18:40:07.000Z" - }, - "end": { - "$date": "2020-12-22T18:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "77aeee6e-fb47-4c36-83a3-f29f683f0884", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T18:36:27.000Z" - }, - "end": { - "$date": "2020-12-22T19:28:15.000Z" - }, - "events": [ - { - "uuid": "1b5a76b4-e191-48d5-acf5-7fc20dbb3114", - "start": { - "$date": "2020-12-22T18:36:27.000Z" - }, - "end": { - "$date": "2020-12-22T19:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51cc0e55-96bc-4ddb-9a2a-0030d9006f10", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T19:04:43.000Z" - }, - "end": { - "$date": "2020-12-22T19:20:18.000Z" - }, - "events": [ - { - "uuid": "2d79b932-7d23-44ee-a00a-35e7e476fa60", - "start": { - "$date": "2020-12-22T19:04:43.000Z" - }, - "end": { - "$date": "2020-12-22T19:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c2778bd9-f5b5-454f-a2c0-21430326fad8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-22T19:10:44.000Z" - }, - "end": { - "$date": "2020-12-22T19:45:35.000Z" - }, - "events": [ - { - "uuid": "132f9d97-4367-47e0-979e-6d9a0d5a8822", - "start": { - "$date": "2020-12-22T19:10:44.000Z" - }, - "end": { - "$date": "2020-12-22T19:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "dd245d12-7f50-4eb3-ba0f-b5d7d5edfcee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-22T19:35:30.000Z" - }, - "end": { - "$date": "2020-12-22T20:21:51.000Z" - }, - "events": [ - { - "uuid": "f655bf8c-83d4-4e21-be76-706cdb6fe3a9", - "start": { - "$date": "2020-12-22T19:35:30.000Z" - }, - "end": { - "$date": "2020-12-22T20:21:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "326be810-16dd-4836-93bf-8a3b5e2ed5ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-22T21:21:36.000Z" - }, - "end": { - "$date": "2020-12-23T00:10:39.000Z" - }, - "events": [ - { - "uuid": "27d50bee-a64f-4ba6-af14-37141800b60b", - "start": { - "$date": "2020-12-22T21:21:36.000Z" - }, - "end": { - "$date": "2020-12-22T22:27:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7f88e76-71e6-4cb1-982a-5ce7613b7948", - "start": { - "$date": "2020-12-22T22:27:36.000Z" - }, - "end": { - "$date": "2020-12-22T22:32:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "108f8c92-5d7a-436f-a710-ea4a6b014310", - "start": { - "$date": "2020-12-22T22:32:36.000Z" - }, - "end": { - "$date": "2020-12-23T00:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6267ab7d-44dc-46b1-8312-f5674fa8b91a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-22T21:40:22.000Z" - }, - "end": { - "$date": "2020-12-22T22:17:11.000Z" - }, - "events": [ - { - "uuid": "39be7443-c982-465d-baf2-408b666f9cd8", - "start": { - "$date": "2020-12-22T21:40:22.000Z" - }, - "end": { - "$date": "2020-12-22T22:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b330074d-1f16-48f9-9068-c874070a2462", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-22T21:55:18.000Z" - }, - "end": { - "$date": "2020-12-22T21:57:33.000Z" - }, - "events": [ - { - "uuid": "914b10fa-1e6c-4f79-aac0-ba1a8f6fa548", - "start": { - "$date": "2020-12-22T21:55:18.000Z" - }, - "end": { - "$date": "2020-12-22T21:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "29253535-a9f7-4180-bdaf-6dd46cb080d9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-22T22:11:03.000Z" - }, - "end": { - "$date": "2020-12-22T23:02:45.000Z" - }, - "events": [ - { - "uuid": "cb34137c-9b45-4bdb-82c5-4af911a7785b", - "start": { - "$date": "2020-12-22T22:11:03.000Z" - }, - "end": { - "$date": "2020-12-22T23:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fbd009de-1cf8-4ec9-a695-46d2fdc0ff39", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-22T22:11:31.000Z" - }, - "end": { - "$date": "2020-12-22T23:02:47.000Z" - }, - "events": [ - { - "uuid": "0eabf64a-35ae-483b-ab4d-2def60d57af8", - "start": { - "$date": "2020-12-22T22:11:31.000Z" - }, - "end": { - "$date": "2020-12-22T23:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a491f007-56b2-487d-ad2c-0c09fc80ab2c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-22T22:21:24.000Z" - }, - "end": { - "$date": "2020-12-22T23:19:30.000Z" - }, - "events": [ - { - "uuid": "1d7b6a1a-4a75-456d-9d6a-ceb232548335", - "start": { - "$date": "2020-12-22T22:21:24.000Z" - }, - "end": { - "$date": "2020-12-22T23:19:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c35a3ff-80b3-4aed-a95b-45159ba18fb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T22:38:09.000Z" - }, - "end": { - "$date": "2020-12-22T22:53:56.000Z" - }, - "events": [ - { - "uuid": "396558c7-d9d8-49c6-ae1b-47ca844aa082", - "start": { - "$date": "2020-12-22T22:38:09.000Z" - }, - "end": { - "$date": "2020-12-22T22:53:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "3bc32c96-dd0c-4d58-8918-4206b7501185", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-22T23:28:18.000Z" - }, - "end": { - "$date": "2020-12-23T00:07:54.000Z" - }, - "events": [ - { - "uuid": "b9b971cf-e4ff-48c4-adc9-0ea956c6d496", - "start": { - "$date": "2020-12-22T23:28:18.000Z" - }, - "end": { - "$date": "2020-12-23T00:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d60e0d4-30f2-4dfa-b735-ea0956de26ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-22T23:46:04.000Z" - }, - "end": { - "$date": "2020-12-23T00:04:33.000Z" - }, - "events": [ - { - "uuid": "2991a45d-ea51-4c80-8d3d-199e8b7b5506", - "start": { - "$date": "2020-12-22T23:46:04.000Z" - }, - "end": { - "$date": "2020-12-23T00:04:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "61c4089c-2503-4f9c-8f6f-1bb42300f0fd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-23T00:08:16.000Z" - }, - "end": { - "$date": "2020-12-23T00:55:43.000Z" - }, - "events": [ - { - "uuid": "fab3c34a-b393-4c86-ac97-266fbd1fc9d4", - "start": { - "$date": "2020-12-23T00:08:16.000Z" - }, - "end": { - "$date": "2020-12-23T00:55:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c615a3d6-a4d7-4118-a697-6c3d79c4281a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-23T00:17:05.000Z" - }, - "end": { - "$date": "2020-12-23T02:56:17.000Z" - }, - "events": [ - { - "uuid": "c26d51fd-0d97-4f64-a8a1-021bc735d48f", - "start": { - "$date": "2020-12-23T00:17:05.000Z" - }, - "end": { - "$date": "2020-12-23T01:05:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ef2b5e1-095f-49c0-a605-81e528860cf2", - "start": { - "$date": "2020-12-23T01:05:05.000Z" - }, - "end": { - "$date": "2020-12-23T01:40:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d4c89035-2204-4e4e-bf71-14627f2453f7", - "start": { - "$date": "2020-12-23T01:40:05.000Z" - }, - "end": { - "$date": "2020-12-23T01:44:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "647fcba6-c2b1-4710-a6e9-b7d70fdb191a", - "start": { - "$date": "2020-12-23T01:44:05.000Z" - }, - "end": { - "$date": "2020-12-23T02:45:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6289c3d1-64bd-4c74-9040-c19fe3474c04", - "start": { - "$date": "2020-12-23T02:45:05.000Z" - }, - "end": { - "$date": "2020-12-23T02:48:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "723a091e-d5d4-427f-9bb9-304bdb1da9bb", - "start": { - "$date": "2020-12-23T02:48:05.000Z" - }, - "end": { - "$date": "2020-12-23T02:53:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "19133617-6a5d-471b-b6a3-f182fb63fc03", - "start": { - "$date": "2020-12-23T02:53:05.000Z" - }, - "end": { - "$date": "2020-12-23T02:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "613650fa-8212-4cbf-86f5-c3a6991e5b72", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-23T01:53:57.000Z" - }, - "end": { - "$date": "2020-12-23T04:59:01.000Z" - }, - "events": [ - { - "uuid": "1152f583-d13e-4130-b7e1-2d9762b1b525", - "start": { - "$date": "2020-12-23T01:53:57.000Z" - }, - "end": { - "$date": "2020-12-23T04:59:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "02a94da2-e640-4e30-99c6-43bc448c07e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T01:54:35.000Z" - }, - "end": { - "$date": "2020-12-23T02:01:01.000Z" - }, - "events": [ - { - "uuid": "5b11296b-01de-4d56-91c4-a67ca1f177b6", - "start": { - "$date": "2020-12-23T01:54:35.000Z" - }, - "end": { - "$date": "2020-12-23T02:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "55df2284-d996-4d9d-96ea-eefb4d8c3288", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-23T04:20:55.000Z" - }, - "end": { - "$date": "2020-12-23T08:46:38.000Z" - }, - "events": [ - { - "uuid": "22a32587-ca77-46a2-85de-ffe4287d0adc", - "start": { - "$date": "2020-12-23T04:20:55.000Z" - }, - "end": { - "$date": "2020-12-23T08:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d7846cd7-972a-4d6d-b5a4-fdbc0fbd66b1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T03:28:34.000Z" - }, - "end": { - "$date": "2020-12-23T04:17:11.000Z" - }, - "events": [ - { - "uuid": "738e505f-a0ec-4fd1-9a42-9a1da3193d1d", - "start": { - "$date": "2020-12-23T03:28:34.000Z" - }, - "end": { - "$date": "2020-12-23T04:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b836d044-d6f9-42db-b27c-ca87c3b91bf4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T04:01:29.000Z" - }, - "end": { - "$date": "2020-12-23T04:01:29.000Z" - }, - "events": [ - { - "uuid": "9fb4b494-6f90-43e8-9b74-14b6b7caed1e", - "start": { - "$date": "2020-12-23T04:01:29.000Z" - }, - "end": { - "$date": "2020-12-23T04:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1399262f-f671-4753-b268-b0325992d464", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-23T03:52:38.000Z" - }, - "end": { - "$date": "2020-12-23T04:21:18.000Z" - }, - "events": [ - { - "uuid": "b221ef04-4b63-42fb-b035-36f61d5fb755", - "start": { - "$date": "2020-12-23T03:52:38.000Z" - }, - "end": { - "$date": "2020-12-23T04:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ed3a4983-e298-418e-b60f-0aae55279bbb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-23T03:57:08.000Z" - }, - "end": { - "$date": "2020-12-23T04:41:45.000Z" - }, - "events": [ - { - "uuid": "f48b619b-252c-4104-8666-7b88cc1e9091", - "start": { - "$date": "2020-12-23T03:57:08.000Z" - }, - "end": { - "$date": "2020-12-23T04:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7e86a76d-f192-495a-95ef-e29882b262fa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-23T03:57:25.000Z" - }, - "end": { - "$date": "2020-12-23T05:34:04.000Z" - }, - "events": [ - { - "uuid": "ba91d5e5-fe3f-447e-9eeb-3cad4553bb66", - "start": { - "$date": "2020-12-23T03:57:25.000Z" - }, - "end": { - "$date": "2020-12-23T05:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c839ef5e-500f-4944-9aa1-4f8c7f112b4d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T04:07:19.000Z" - }, - "end": { - "$date": "2020-12-23T04:23:35.000Z" - }, - "events": [ - { - "uuid": "a2c0e39b-b189-4934-b25a-5b7e2617adba", - "start": { - "$date": "2020-12-23T04:07:19.000Z" - }, - "end": { - "$date": "2020-12-23T04:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "c759ffae-db1d-47a9-b60a-ecdf6b37a5d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T04:18:46.000Z" - }, - "end": { - "$date": "2020-12-23T04:21:26.000Z" - }, - "events": [ - { - "uuid": "4947f10d-88a1-48ff-b52c-dc54579c5dd0", - "start": { - "$date": "2020-12-23T04:18:46.000Z" - }, - "end": { - "$date": "2020-12-23T04:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "50e9db99-b244-4cb8-952e-7b47b9bfacdc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T04:21:31.000Z" - }, - "end": { - "$date": "2020-12-23T04:25:21.000Z" - }, - "events": [ - { - "uuid": "28f4c9dc-cb57-4f38-a01c-1e2eb20b283c", - "start": { - "$date": "2020-12-23T04:21:31.000Z" - }, - "end": { - "$date": "2020-12-23T04:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52ee869d-75fe-4068-a8be-d14fb612441d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T04:28:55.000Z" - }, - "end": { - "$date": "2020-12-23T05:15:10.000Z" - }, - "events": [ - { - "uuid": "71f0255e-cfe8-45b8-a2ed-b2222f8d3af7", - "start": { - "$date": "2020-12-23T04:28:55.000Z" - }, - "end": { - "$date": "2020-12-23T05:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "8d2f2496-4cb4-4cec-9736-632c79a50037", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T04:29:22.000Z" - }, - "end": { - "$date": "2020-12-23T05:15:03.000Z" - }, - "events": [ - { - "uuid": "2ecde035-765f-4e36-9af6-fac033941761", - "start": { - "$date": "2020-12-23T04:29:22.000Z" - }, - "end": { - "$date": "2020-12-23T05:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb454202-f5d2-4313-a7a0-ccd09cddf538", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-23T04:29:08.000Z" - }, - "end": { - "$date": "2020-12-23T05:15:05.000Z" - }, - "events": [ - { - "uuid": "b22e98bc-5a5b-4c8f-9b42-17f4170627d2", - "start": { - "$date": "2020-12-23T04:29:08.000Z" - }, - "end": { - "$date": "2020-12-23T05:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9ef2ae72-a209-4777-add2-337d67950173", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-23T04:48:53.000Z" - }, - "end": { - "$date": "2020-12-23T05:06:24.000Z" - }, - "events": [ - { - "uuid": "eecb8b59-53c5-4717-8b4c-23747b5691c9", - "start": { - "$date": "2020-12-23T04:48:53.000Z" - }, - "end": { - "$date": "2020-12-23T05:06:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec7ba0ce-3f7d-4508-9e2a-896808922f74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T05:21:07.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:27.000Z" - }, - "events": [ - { - "uuid": "a5f2d003-0228-4600-9bb3-71788d7f3da6", - "start": { - "$date": "2020-12-23T05:21:07.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "25172256-1a62-47bb-b454-d06db8e4f210", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2020-12-23T05:16:09.000Z" - }, - "end": { - "$date": "2020-12-23T06:53:45.000Z" - }, - "events": [ - { - "uuid": "33baf2aa-f993-468e-b213-ae2da7d4c449", - "start": { - "$date": "2020-12-23T05:16:09.000Z" - }, - "end": { - "$date": "2020-12-23T06:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "102037c1-16f6-4ad2-9c7a-c2794daff98f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T05:22:23.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:29.000Z" - }, - "events": [ - { - "uuid": "374cb99f-8ef6-4e1b-8399-ca170fd65889", - "start": { - "$date": "2020-12-23T05:22:23.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50a35bb7-1604-401c-9dbe-ba9d292c2b03", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-23T05:21:17.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:32.000Z" - }, - "events": [ - { - "uuid": "f3054419-a3f8-499d-9fa2-7e1a669f6059", - "start": { - "$date": "2020-12-23T05:21:17.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ea15fa1-8832-4a84-97fc-102eb496a206", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-23T05:37:49.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:34.000Z" - }, - "events": [ - { - "uuid": "8fcc058a-57d5-4bee-b391-3799f4ab3c3a", - "start": { - "$date": "2020-12-23T05:37:49.000Z" - }, - "end": { - "$date": "2020-12-23T05:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c330f1d-21b4-4520-898c-e14ce3f6b181", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T05:46:48.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:23.000Z" - }, - "events": [ - { - "uuid": "cbe87253-54f7-4744-8c7e-f4626f97f2d3", - "start": { - "$date": "2020-12-23T05:46:48.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acb87120-ba6d-4f70-8a02-8524df8e23b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T05:47:14.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:15.000Z" - }, - "events": [ - { - "uuid": "286e9c76-07e4-4157-868a-2d55601d76d7", - "start": { - "$date": "2020-12-23T05:47:14.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0f50f0e-7301-46f8-8391-3c380bb2a6a2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-23T05:46:45.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:19.000Z" - }, - "events": [ - { - "uuid": "59d6422d-142c-4b73-b911-62bfd3f8fda3", - "start": { - "$date": "2020-12-23T05:46:45.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78b9e56a-d904-4db6-b93e-3f84df47bfe3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-23T05:46:54.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:19.000Z" - }, - "events": [ - { - "uuid": "ebedd3eb-d05b-4768-96ba-9acaeb15c23a", - "start": { - "$date": "2020-12-23T05:46:54.000Z" - }, - "end": { - "$date": "2020-12-23T06:02:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6915bbb-a018-4c2e-99f9-80a996192bca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T06:06:59.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:09.000Z" - }, - "events": [ - { - "uuid": "7feeb5ab-4643-410d-9770-b44b0895a797", - "start": { - "$date": "2020-12-23T06:06:59.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ff9b95c-c16b-42cf-afbb-dcc263163d94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T06:06:59.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:10.000Z" - }, - "events": [ - { - "uuid": "e4247016-39ad-48c5-9235-b3888cc193e0", - "start": { - "$date": "2020-12-23T06:06:59.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "503cf3af-4840-48e6-939f-73726d5bc7ea", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-23T06:07:00.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:15.000Z" - }, - "events": [ - { - "uuid": "e210a0df-7f1f-4b1a-b3db-a249ec9e8ff8", - "start": { - "$date": "2020-12-23T06:07:00.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "feaaae0c-e6ba-4cde-baa3-e9733aa05c4f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-23T06:07:10.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:15.000Z" - }, - "events": [ - { - "uuid": "0ad1b8dd-0099-4650-b3e2-37d6999bab67", - "start": { - "$date": "2020-12-23T06:07:10.000Z" - }, - "end": { - "$date": "2020-12-23T06:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad7f51d9-39a3-4d1f-ba5c-b9ecf3ee807a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T06:22:05.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:35.000Z" - }, - "events": [ - { - "uuid": "92386ee7-c320-430a-a96e-786022b971bb", - "start": { - "$date": "2020-12-23T06:22:05.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdf794c7-31c6-4cad-a89d-bf0e3c94fc18", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-23T06:22:16.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:26.000Z" - }, - "events": [ - { - "uuid": "505ec17e-cf4f-4841-9427-349deae544ab", - "start": { - "$date": "2020-12-23T06:22:16.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5bb38a2-cc42-41fd-b02b-dc8659ef7ebb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T06:22:35.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:26.000Z" - }, - "events": [ - { - "uuid": "dcd1d024-bd84-4a3f-b9f8-4e53d5008c47", - "start": { - "$date": "2020-12-23T06:22:35.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e157dc8-4f6a-48a2-a20f-d00a7b2531eb", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-23T06:22:06.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:25.000Z" - }, - "events": [ - { - "uuid": "08b06bbc-09fd-45c0-a58d-0e97d1a48170", - "start": { - "$date": "2020-12-23T06:22:06.000Z" - }, - "end": { - "$date": "2020-12-23T06:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cc2856be-6ee1-4cd7-b243-4a37f4a559b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-23T06:47:08.000Z" - }, - "end": { - "$date": "2020-12-23T06:52:10.000Z" - }, - "events": [ - { - "uuid": "cb983655-27d3-446b-bbbc-5b0f48da9e97", - "start": { - "$date": "2020-12-23T06:47:08.000Z" - }, - "end": { - "$date": "2020-12-23T06:52:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "63651988-122e-431b-858a-95d31ff3cfe2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T15:53:20.000Z" - }, - "end": { - "$date": "2020-12-23T16:44:24.000Z" - }, - "events": [ - { - "uuid": "048d15d8-7415-439c-b612-8522eb7eb080", - "start": { - "$date": "2020-12-23T15:53:20.000Z" - }, - "end": { - "$date": "2020-12-23T16:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d775edbd-08f4-4d51-a3f4-b029ed833386", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-23T16:14:46.000Z" - }, - "end": { - "$date": "2020-12-23T18:57:30.000Z" - }, - "events": [ - { - "uuid": "358f0e77-d14e-4897-8c21-73687a684e3a", - "start": { - "$date": "2020-12-23T16:14:46.000Z" - }, - "end": { - "$date": "2020-12-23T18:57:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d553cde9-bcef-46da-84ef-cf4cba07c66f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T16:32:33.000Z" - }, - "end": { - "$date": "2020-12-23T16:52:56.000Z" - }, - "events": [ - { - "uuid": "989a77e9-c473-4989-8ef5-89d1ab71ef5a", - "start": { - "$date": "2020-12-23T16:32:33.000Z" - }, - "end": { - "$date": "2020-12-23T16:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3c5db85-c3b8-4633-a4a7-05c96438e142", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T16:58:00.000Z" - }, - "end": { - "$date": "2020-12-23T17:15:37.000Z" - }, - "events": [ - { - "uuid": "8637211f-f350-4441-9c3d-526808b1609f", - "start": { - "$date": "2020-12-23T16:58:00.000Z" - }, - "end": { - "$date": "2020-12-23T17:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "c41a7ace-8d17-40f4-8334-b0cbe13eb49a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-23T18:34:56.000Z" - }, - "end": { - "$date": "2020-12-23T19:54:16.000Z" - }, - "events": [ - { - "uuid": "4c2fb5e2-2f1e-4cfc-aeba-169ccbf81278", - "start": { - "$date": "2020-12-23T18:34:56.000Z" - }, - "end": { - "$date": "2020-12-23T19:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0dda3966-4388-47e1-988a-419188c2db9a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-23T18:37:56.000Z" - }, - "end": { - "$date": "2020-12-24T00:36:29.000Z" - }, - "events": [ - { - "uuid": "7c7c7dd7-04e0-48df-b2a5-c12f862c21bd", - "start": { - "$date": "2020-12-23T18:37:56.000Z" - }, - "end": { - "$date": "2020-12-23T18:57:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c5e742c1-6e54-4af6-bf89-0599777e663e", - "start": { - "$date": "2020-12-23T18:57:56.000Z" - }, - "end": { - "$date": "2020-12-23T19:07:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ac268631-a0cc-4bf0-af82-e79efb3fda06", - "start": { - "$date": "2020-12-23T19:07:56.000Z" - }, - "end": { - "$date": "2020-12-24T00:36:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ab7c63c1-dd46-4812-a576-a0acd85f3c1f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-23T18:50:57.000Z" - }, - "end": { - "$date": "2020-12-23T20:11:00.000Z" - }, - "events": [ - { - "uuid": "2839e4a1-4434-49d9-8357-4e82d83c7d12", - "start": { - "$date": "2020-12-23T18:50:57.000Z" - }, - "end": { - "$date": "2020-12-23T20:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bedd22e0-141e-4ba6-98a3-ae50cfe3808b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-23T20:27:02.000Z" - }, - "end": { - "$date": "2020-12-23T22:50:49.000Z" - }, - "events": [ - { - "uuid": "4ebb25fe-754d-49cb-949c-9a2c971df92a", - "start": { - "$date": "2020-12-23T20:27:02.000Z" - }, - "end": { - "$date": "2020-12-23T22:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "eba2dc07-64d4-4c4a-8cb2-7b8893798ac0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T22:01:37.000Z" - }, - "end": { - "$date": "2020-12-23T22:08:34.000Z" - }, - "events": [ - { - "uuid": "a4fc4820-7a87-49c8-a836-ca8682b3b819", - "start": { - "$date": "2020-12-23T22:01:37.000Z" - }, - "end": { - "$date": "2020-12-23T22:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "11b1eb2c-96e2-4f58-a1ae-ff74b42d3a99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-23T22:08:47.000Z" - }, - "end": { - "$date": "2020-12-24T01:36:50.000Z" - }, - "events": [ - { - "uuid": "a9c3778e-08bd-498a-a9a2-60d410ab5711", - "start": { - "$date": "2020-12-23T22:08:47.000Z" - }, - "end": { - "$date": "2020-12-23T23:52:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41668543-e2bd-4931-a8e5-1e9dabd45e07", - "start": { - "$date": "2020-12-23T23:52:47.000Z" - }, - "end": { - "$date": "2020-12-24T00:16:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "beb05b26-2db8-446c-b54d-096c94ce1e6a", - "start": { - "$date": "2020-12-24T00:16:47.000Z" - }, - "end": { - "$date": "2020-12-24T00:20:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d68a238d-ad00-4501-9600-dbc3877e1959", - "start": { - "$date": "2020-12-24T00:20:47.000Z" - }, - "end": { - "$date": "2020-12-24T00:23:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8eb780e7-d6b4-4809-a89d-60897cc8dad7", - "start": { - "$date": "2020-12-24T00:23:47.000Z" - }, - "end": { - "$date": "2020-12-24T00:26:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "256f2e35-ab66-47a7-aebf-35c74d537fdb", - "start": { - "$date": "2020-12-24T00:26:47.000Z" - }, - "end": { - "$date": "2020-12-24T00:27:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7785e775-c524-42d1-ae44-0633cbfef43f", - "start": { - "$date": "2020-12-24T00:27:47.000Z" - }, - "end": { - "$date": "2020-12-24T01:17:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec9f8b59-6a87-44ce-bae6-f3d9b7529249", - "start": { - "$date": "2020-12-24T01:17:47.000Z" - }, - "end": { - "$date": "2020-12-24T01:35:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8eeddec7-2b53-4718-8573-7838bde01725", - "start": { - "$date": "2020-12-24T01:35:47.000Z" - }, - "end": { - "$date": "2020-12-24T01:36:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "49b0391e-0dc8-49a5-97c6-e5da575d3384", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-23T22:36:53.000Z" - }, - "end": { - "$date": "2020-12-24T03:10:03.000Z" - }, - "events": [ - { - "uuid": "cfec685f-ba05-40a6-b914-07ab67c6665e", - "start": { - "$date": "2020-12-23T22:36:53.000Z" - }, - "end": { - "$date": "2020-12-24T01:29:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a454d22b-0832-417c-91db-0daea2e58b6e", - "start": { - "$date": "2020-12-24T01:29:53.000Z" - }, - "end": { - "$date": "2020-12-24T01:34:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1e2a073-6537-450e-9c36-586f010aa93f", - "start": { - "$date": "2020-12-24T01:34:53.000Z" - }, - "end": { - "$date": "2020-12-24T01:44:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "298c3fae-4053-45ad-b81b-2ae385b6735e", - "start": { - "$date": "2020-12-24T01:44:53.000Z" - }, - "end": { - "$date": "2020-12-24T01:49:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a46b3931-428f-4c1f-8584-d25d2f517b05", - "start": { - "$date": "2020-12-24T01:49:53.000Z" - }, - "end": { - "$date": "2020-12-24T01:59:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4db7fa3f-2cf7-4286-b9d5-f46178be64c5", - "start": { - "$date": "2020-12-24T01:59:53.000Z" - }, - "end": { - "$date": "2020-12-24T02:03:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b2b81b3c-658c-44e3-a4de-e9d6ad4a9cdc", - "start": { - "$date": "2020-12-24T02:03:53.000Z" - }, - "end": { - "$date": "2020-12-24T02:13:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7545079d-d3a5-4587-a2ff-90a556e4bdee", - "start": { - "$date": "2020-12-24T02:13:53.000Z" - }, - "end": { - "$date": "2020-12-24T03:10:03.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "47e85575-3327-4101-b7a8-464ac155573e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-23T22:38:02.000Z" - }, - "end": { - "$date": "2020-12-24T01:23:45.000Z" - }, - "events": [ - { - "uuid": "16f3c875-7fc3-4384-858c-4741b8601e66", - "start": { - "$date": "2020-12-23T22:38:02.000Z" - }, - "end": { - "$date": "2020-12-24T01:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fa1376-0c6c-44fd-ae4a-9bb34a960315", - "uuid": "581fdcdf-35e2-4674-9e6f-10ee5a43b630", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-23T22:49:17.000Z" - }, - "end": { - "$date": "2020-12-23T23:27:00.000Z" - }, - "events": [ - { - "uuid": "ee08f1b3-515c-4c1d-969e-59c4b05d306f", - "start": { - "$date": "2020-12-23T22:49:17.000Z" - }, - "end": { - "$date": "2020-12-23T23:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "3bb547cf-1355-48d7-8cac-a1fbc9771604", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-23T23:27:25.000Z" - }, - "end": { - "$date": "2020-12-24T00:28:49.000Z" - }, - "events": [ - { - "uuid": "fa16f785-d68f-44a7-8b30-ac1a07ea92e3", - "start": { - "$date": "2020-12-23T23:27:25.000Z" - }, - "end": { - "$date": "2020-12-24T00:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "198335a1-a646-4790-8886-52b44eece440", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-23T23:57:07.000Z" - }, - "end": { - "$date": "2020-12-24T02:53:03.000Z" - }, - "events": [ - { - "uuid": "d95b2e29-296f-4b0e-955a-a09bfc8b5b60", - "start": { - "$date": "2020-12-23T23:57:07.000Z" - }, - "end": { - "$date": "2020-12-24T02:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "ef13a60e-904d-4de2-8e05-0c9029ce7987", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T00:30:08.000Z" - }, - "end": { - "$date": "2020-12-24T02:04:02.000Z" - }, - "events": [ - { - "uuid": "88e2dd6d-7fa0-4507-a159-2a11c72f65cd", - "start": { - "$date": "2020-12-24T00:30:08.000Z" - }, - "end": { - "$date": "2020-12-24T01:26:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc87fddc-fd94-4247-a4c4-baacc29a38ad", - "start": { - "$date": "2020-12-24T01:26:08.000Z" - }, - "end": { - "$date": "2020-12-24T01:58:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d5a87c27-50dc-4bd0-9230-16875c0783f2", - "start": { - "$date": "2020-12-24T01:58:08.000Z" - }, - "end": { - "$date": "2020-12-24T02:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1b91b36-edaa-4f0a-87ba-2cc3d787526b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T01:22:15.000Z" - }, - "end": { - "$date": "2020-12-24T01:38:27.000Z" - }, - "events": [ - { - "uuid": "7bf5a9a1-8855-4d56-b42a-f1ac4450249c", - "start": { - "$date": "2020-12-24T01:22:15.000Z" - }, - "end": { - "$date": "2020-12-24T01:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "851226dd-fb24-47b3-a8ec-79b2ce89d8e2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-24T01:15:33.000Z" - }, - "end": { - "$date": "2020-12-24T01:18:57.000Z" - }, - "events": [ - { - "uuid": "d3e3c1c9-8fb8-4c5b-9083-9a5e52b15c2e", - "start": { - "$date": "2020-12-24T01:15:33.000Z" - }, - "end": { - "$date": "2020-12-24T01:18:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f31e55b-acb5-4dc8-9730-91c7433b4892", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-24T01:22:23.000Z" - }, - "end": { - "$date": "2020-12-24T01:38:30.000Z" - }, - "events": [ - { - "uuid": "892659c9-5b63-4d10-8420-456b036e2db7", - "start": { - "$date": "2020-12-24T01:22:23.000Z" - }, - "end": { - "$date": "2020-12-24T01:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af7fb4be-1413-431d-8604-e2f8acadcdf2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T01:44:59.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:33.000Z" - }, - "events": [ - { - "uuid": "5a06f1d1-ef8d-45e1-bc4c-1f6e46128349", - "start": { - "$date": "2020-12-24T01:44:59.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16fdd0eb-dba4-4174-9dd6-fa8eb186f8ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T01:45:57.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:24.000Z" - }, - "events": [ - { - "uuid": "3877bc25-99b4-4d0c-b99e-71a014149e63", - "start": { - "$date": "2020-12-24T01:45:57.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4020f49f-44fb-456d-bb0e-ee1ab227c0d0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T01:44:53.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:30.000Z" - }, - "events": [ - { - "uuid": "289e6a54-de13-4e64-9668-54c1b7486edd", - "start": { - "$date": "2020-12-24T01:44:53.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0485829-6a09-4678-8508-8a3437ec6e37", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-24T02:17:22.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:33.000Z" - }, - "events": [ - { - "uuid": "8232cf97-584f-4dd6-b8a7-839d6c80a654", - "start": { - "$date": "2020-12-24T02:17:22.000Z" - }, - "end": { - "$date": "2020-12-24T02:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5f8a3f80-c495-40e5-a9fd-39c33b1d9410", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T01:47:52.000Z" - }, - "end": { - "$date": "2020-12-24T01:49:14.000Z" - }, - "events": [ - { - "uuid": "3cd9c208-ee87-4081-9f98-22870dad6726", - "start": { - "$date": "2020-12-24T01:47:52.000Z" - }, - "end": { - "$date": "2020-12-24T01:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b5ede275-617d-46f3-99de-296ca1c298fb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T02:17:35.000Z" - }, - "end": { - "$date": "2020-12-24T06:07:05.000Z" - }, - "events": [ - { - "uuid": "386a4b17-329b-49e9-9283-e76b149c969c", - "start": { - "$date": "2020-12-24T02:17:35.000Z" - }, - "end": { - "$date": "2020-12-24T06:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a672b45-aaf3-4679-9c9f-5d90bb5eccdb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T02:20:00.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:26.000Z" - }, - "events": [ - { - "uuid": "43c41476-0160-48a6-b760-b308b3bc6d82", - "start": { - "$date": "2020-12-24T02:20:00.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3688d3b0-65d2-47a8-b082-a4553830aff0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T02:20:57.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:19.000Z" - }, - "events": [ - { - "uuid": "efb31501-8c59-4445-b986-35356097fb19", - "start": { - "$date": "2020-12-24T02:20:57.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d0fa008-1634-4208-a9a8-70a13b55426f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-24T02:20:02.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:25.000Z" - }, - "events": [ - { - "uuid": "c9e8cb89-bb8b-4910-bcb2-c718e4be19d0", - "start": { - "$date": "2020-12-24T02:20:02.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33e42c61-16fa-4c59-908b-5424d15c29ca", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T02:19:55.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:26.000Z" - }, - "events": [ - { - "uuid": "1c143e54-0168-4dbd-abac-431c7f9b3aae", - "start": { - "$date": "2020-12-24T02:19:55.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba03fd7d-0933-4214-bed6-5470de4d431c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T02:19:57.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:17.000Z" - }, - "events": [ - { - "uuid": "d834cf0a-e85c-42da-9b78-06deb6cb09aa", - "start": { - "$date": "2020-12-24T02:19:57.000Z" - }, - "end": { - "$date": "2020-12-24T02:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b16cd38-d6fc-496f-9474-b68e9196c777", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T02:54:11.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:18.000Z" - }, - "events": [ - { - "uuid": "0297243c-a98a-4df2-a79b-0f84d1be25cf", - "start": { - "$date": "2020-12-24T02:54:11.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "224e61f1-dfd8-4a56-919c-2c0c270c1c56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T02:54:58.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:20.000Z" - }, - "events": [ - { - "uuid": "63615b5e-047c-4cde-aed4-0e01dbea39f1", - "start": { - "$date": "2020-12-24T02:54:58.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5b7f9f0-2d76-432b-83ac-4c690622d71d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T02:54:08.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:24.000Z" - }, - "events": [ - { - "uuid": "f1e95e84-36e4-41e1-9663-f3403064fd2d", - "start": { - "$date": "2020-12-24T02:54:08.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69d4b7dc-b39f-4f5a-be27-80d40f11670c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-24T02:54:14.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:27.000Z" - }, - "events": [ - { - "uuid": "10546718-d74a-429a-b0ae-49822ebc3d78", - "start": { - "$date": "2020-12-24T02:54:14.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b03f227-58df-4866-a807-a4f648f51cc6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T02:54:08.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:31.000Z" - }, - "events": [ - { - "uuid": "63f50007-ef48-4a26-a3f5-591075413264", - "start": { - "$date": "2020-12-24T02:54:08.000Z" - }, - "end": { - "$date": "2020-12-24T03:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6a034a2d-c204-439f-a161-47e2710800db", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-24T02:53:25.000Z" - }, - "end": { - "$date": "2020-12-24T04:59:33.000Z" - }, - "events": [ - { - "uuid": "b83d7153-4c27-4a2a-bf2c-1ec0d28df692", - "start": { - "$date": "2020-12-24T02:53:25.000Z" - }, - "end": { - "$date": "2020-12-24T04:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71029e4b-a959-4232-ba03-ce7660cb703a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T03:25:52.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:33.000Z" - }, - "events": [ - { - "uuid": "47b8dea5-707d-4015-ad3c-cee3d34a4bb1", - "start": { - "$date": "2020-12-24T03:25:52.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8408630b-139b-4eab-9c4c-c9671d6ca79f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T03:25:49.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:39.000Z" - }, - "events": [ - { - "uuid": "354725e4-0877-417a-9aa1-97dcd6a7b1a8", - "start": { - "$date": "2020-12-24T03:25:49.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1be6b4b6-e830-4a79-9b4c-0a092afdfe0a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T03:27:19.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:36.000Z" - }, - "events": [ - { - "uuid": "7634c165-ec2c-4c59-b09a-3699cc9cab6e", - "start": { - "$date": "2020-12-24T03:27:19.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f785604a-1c44-413b-96ea-77e7e38c1fcc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T03:25:50.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:44.000Z" - }, - "events": [ - { - "uuid": "15d2edb0-222f-46ee-a418-9fecd3ff6611", - "start": { - "$date": "2020-12-24T03:25:50.000Z" - }, - "end": { - "$date": "2020-12-24T03:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "94fb7a59-0633-4c56-a29a-378c42aa1343", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-24T03:43:05.000Z" - }, - "end": { - "$date": "2020-12-24T06:39:50.000Z" - }, - "events": [ - { - "uuid": "2c6e8a10-db83-40e6-846b-140b593f0996", - "start": { - "$date": "2020-12-24T03:43:05.000Z" - }, - "end": { - "$date": "2020-12-24T06:39:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a15e7316-32c8-413f-aa99-da3de8425d9e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T03:58:46.000Z" - }, - "end": { - "$date": "2020-12-24T04:34:20.000Z" - }, - "events": [ - { - "uuid": "c1e5b53b-7a2d-403b-91cb-60d98f410d8e", - "start": { - "$date": "2020-12-24T03:58:46.000Z" - }, - "end": { - "$date": "2020-12-24T04:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ae80e1c-d151-46a9-8983-022d9492c8fc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T04:32:56.000Z" - }, - "end": { - "$date": "2020-12-24T04:34:11.000Z" - }, - "events": [ - { - "uuid": "22d02e71-a193-4d63-beac-24c4724524e8", - "start": { - "$date": "2020-12-24T04:32:56.000Z" - }, - "end": { - "$date": "2020-12-24T04:34:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07148588-a278-4d06-8102-225dfee9e2db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T03:58:43.000Z" - }, - "end": { - "$date": "2020-12-24T04:34:21.000Z" - }, - "events": [ - { - "uuid": "6e2850f6-496f-49b8-b637-98424998d6cc", - "start": { - "$date": "2020-12-24T03:58:43.000Z" - }, - "end": { - "$date": "2020-12-24T04:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a93a3ea6-c287-43fe-a361-82908acb4e24", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-24T03:54:57.000Z" - }, - "end": { - "$date": "2020-12-24T05:10:14.000Z" - }, - "events": [ - { - "uuid": "2420fe6d-0ce5-4b7e-a011-89aafb2c7f7b", - "start": { - "$date": "2020-12-24T03:54:57.000Z" - }, - "end": { - "$date": "2020-12-24T05:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "690bc9cf-452d-4156-bca0-157f44e9648e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-24T04:32:11.000Z" - }, - "end": { - "$date": "2020-12-24T06:39:49.000Z" - }, - "events": [ - { - "uuid": "b81c1160-ce54-43e2-88ff-951a5de68f18", - "start": { - "$date": "2020-12-24T04:32:11.000Z" - }, - "end": { - "$date": "2020-12-24T06:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c03be711-23e8-45b2-83ca-4bdd5ddea6d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T04:40:47.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:04.000Z" - }, - "events": [ - { - "uuid": "70761017-a0d0-433d-be75-96eff548d33e", - "start": { - "$date": "2020-12-24T04:40:47.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd88fe35-8a0e-4583-be7d-12d2dc8d1990", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-24T04:37:12.000Z" - }, - "end": { - "$date": "2020-12-24T06:39:52.000Z" - }, - "events": [ - { - "uuid": "3b217081-44ad-44c3-86c4-05c5218d1430", - "start": { - "$date": "2020-12-24T04:37:12.000Z" - }, - "end": { - "$date": "2020-12-24T06:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25e0f548-dde9-4894-9211-e3b8ea73b530", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T04:41:06.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:02.000Z" - }, - "events": [ - { - "uuid": "56badba4-c8a0-47fe-a1bc-d25e28245c19", - "start": { - "$date": "2020-12-24T04:41:06.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11cc6616-02fa-40b9-bf01-bea44f6bb373", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T04:41:15.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:06.000Z" - }, - "events": [ - { - "uuid": "3b79c2ef-6837-4695-8157-c46239583024", - "start": { - "$date": "2020-12-24T04:41:15.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdc8d617-db1e-4071-be14-54b100825e9c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T04:40:46.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:12.000Z" - }, - "events": [ - { - "uuid": "7b2e7eb7-9581-4347-b039-598d4b4cd7ca", - "start": { - "$date": "2020-12-24T04:40:46.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd5b1a37-f2f7-4907-8b43-3d5fa01a11b2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-24T04:40:45.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:10.000Z" - }, - "events": [ - { - "uuid": "88488121-2f1a-48b2-9fd6-b440e1b40d3a", - "start": { - "$date": "2020-12-24T04:40:45.000Z" - }, - "end": { - "$date": "2020-12-24T04:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c80ed84-14a8-4de8-b484-56ff6370b6d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T05:01:39.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:05.000Z" - }, - "events": [ - { - "uuid": "2feae3d3-1d9b-47ef-93bf-bc6c1db6c568", - "start": { - "$date": "2020-12-24T05:01:39.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "827e89bc-52e6-480c-8fd2-9f8285836700", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T05:01:42.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:02.000Z" - }, - "events": [ - { - "uuid": "8dba5cf5-4513-4d65-8c7a-96397c647352", - "start": { - "$date": "2020-12-24T05:01:42.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94f120e3-4aa2-4f47-bd68-e531c2515524", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T05:02:01.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:01.000Z" - }, - "events": [ - { - "uuid": "936215e9-ce4e-4867-ba68-e4d708fb34f3", - "start": { - "$date": "2020-12-24T05:02:01.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1acec1cd-bf89-47f0-ad05-17f9ce73cc9d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-24T05:01:35.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:05.000Z" - }, - "events": [ - { - "uuid": "ba2faab7-fc7f-4d4b-8fd3-3434ef56b1f5", - "start": { - "$date": "2020-12-24T05:01:35.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a059a911-107d-4b07-a567-f3c56ea0a04f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T05:01:37.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:21.000Z" - }, - "events": [ - { - "uuid": "53cf6373-9ee1-472d-9353-bcf30a431441", - "start": { - "$date": "2020-12-24T05:01:37.000Z" - }, - "end": { - "$date": "2020-12-24T05:16:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86ededa2-b265-47ab-ba89-052c2ab0c48c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T05:17:46.000Z" - }, - "end": { - "$date": "2020-12-24T06:03:52.000Z" - }, - "events": [ - { - "uuid": "fa30cf4f-927d-4c83-a7c2-b73e07a7e9e0", - "start": { - "$date": "2020-12-24T05:17:46.000Z" - }, - "end": { - "$date": "2020-12-24T06:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ff5a59f0-88af-4546-8ceb-2dcdda3bf3b5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-24T05:18:32.000Z" - }, - "end": { - "$date": "2020-12-24T06:52:49.000Z" - }, - "events": [ - { - "uuid": "cae594cc-b885-4df4-9a02-87c7ed65f73b", - "start": { - "$date": "2020-12-24T05:18:32.000Z" - }, - "end": { - "$date": "2020-12-24T06:52:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "2571e2e0-593f-4375-8ab0-52dfbb0b3662", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-24T06:41:29.000Z" - }, - "end": { - "$date": "2020-12-24T08:39:16.000Z" - }, - "events": [ - { - "uuid": "06acea66-311a-4f69-a8f0-73e98999e383", - "start": { - "$date": "2020-12-24T06:41:29.000Z" - }, - "end": { - "$date": "2020-12-24T08:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3f09924a-44bd-4224-9ee0-a2757106e1db", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-24T06:52:54.000Z" - }, - "end": { - "$date": "2020-12-24T08:55:57.000Z" - }, - "events": [ - { - "uuid": "c0b14fa3-e2d1-4653-943a-15cd3ab0c731", - "start": { - "$date": "2020-12-24T06:52:54.000Z" - }, - "end": { - "$date": "2020-12-24T08:55:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ccb2df21-d8ec-4c39-9c1e-d2f20d53d3b3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-24T06:58:22.000Z" - }, - "end": { - "$date": "2020-12-24T08:56:44.000Z" - }, - "events": [ - { - "uuid": "cd7c752c-674e-4570-9a13-4195f9094aab", - "start": { - "$date": "2020-12-24T06:58:22.000Z" - }, - "end": { - "$date": "2020-12-24T08:56:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a28b2b20-92ae-4369-a40f-214b44aa487e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-24T07:14:16.000Z" - }, - "end": { - "$date": "2020-12-24T07:19:17.000Z" - }, - "events": [ - { - "uuid": "608953a6-3d56-403a-b284-f61d67a4063c", - "start": { - "$date": "2020-12-24T07:14:16.000Z" - }, - "end": { - "$date": "2020-12-24T07:19:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "ad3a0196-11b2-4a6b-86e4-51ee206a4e24", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T16:34:30.000Z" - }, - "end": { - "$date": "2020-12-24T17:00:17.000Z" - }, - "events": [ - { - "uuid": "ec04403d-e9bb-432a-a4f3-0b223d9114f0", - "start": { - "$date": "2020-12-24T16:34:30.000Z" - }, - "end": { - "$date": "2020-12-24T17:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec32f732-81d2-4737-9731-7d87edb23c7d", - "uuid": "076e4867-1e2b-4905-9f92-dc126d803330", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T17:11:35.000Z" - }, - "end": { - "$date": "2020-12-24T17:17:22.000Z" - }, - "events": [ - { - "uuid": "039dcccf-720e-418e-9e3a-fe0cd2a0afb2", - "start": { - "$date": "2020-12-24T17:11:35.000Z" - }, - "end": { - "$date": "2020-12-24T17:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "c542bd4f-caca-4393-8d76-1870ca6e2aaa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T17:11:43.000Z" - }, - "end": { - "$date": "2020-12-24T17:40:26.000Z" - }, - "events": [ - { - "uuid": "f918b2b0-2a83-4ba7-af80-56389b302258", - "start": { - "$date": "2020-12-24T17:11:43.000Z" - }, - "end": { - "$date": "2020-12-24T17:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8cb809c8-d147-44e8-8dfc-8ad82a9c00cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T17:12:11.000Z" - }, - "end": { - "$date": "2020-12-24T17:16:06.000Z" - }, - "events": [ - { - "uuid": "eeff1dcd-699e-4aab-8e0d-2171274f6daf", - "start": { - "$date": "2020-12-24T17:12:11.000Z" - }, - "end": { - "$date": "2020-12-24T17:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "456adc4a-463d-46f3-8760-f1bb8206b79d", - "uuid": "13ca1803-b55b-4a26-bc47-0f1af5dacff5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T17:55:57.000Z" - }, - "end": { - "$date": "2020-12-24T17:57:08.000Z" - }, - "events": [ - { - "uuid": "6b706a59-58ea-4540-b352-a1dcb2b6d16b", - "start": { - "$date": "2020-12-24T17:55:57.000Z" - }, - "end": { - "$date": "2020-12-24T17:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "03326c97-f359-4199-bbec-e838c965695c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T17:45:20.000Z" - }, - "end": { - "$date": "2020-12-24T17:46:56.000Z" - }, - "events": [ - { - "uuid": "007e5c8b-f114-40b1-835d-99332830bb71", - "start": { - "$date": "2020-12-24T17:45:20.000Z" - }, - "end": { - "$date": "2020-12-24T17:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e0550a18-d2f9-4797-ae5c-6c8cd7597abc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-24T18:08:19.000Z" - }, - "end": { - "$date": "2020-12-24T18:50:39.000Z" - }, - "events": [ - { - "uuid": "0db5c50e-4248-47a2-8108-da2546a3c0ab", - "start": { - "$date": "2020-12-24T18:08:19.000Z" - }, - "end": { - "$date": "2020-12-24T18:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f8f643b4-4f1d-453a-af3e-ce79a1528ffc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-24T19:30:20.000Z" - }, - "end": { - "$date": "2020-12-24T20:15:20.000Z" - }, - "events": [ - { - "uuid": "578b3b06-336b-440e-93d7-c4a261f65417", - "start": { - "$date": "2020-12-24T19:30:20.000Z" - }, - "end": { - "$date": "2020-12-24T20:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "70465861-7f73-4c5a-824b-be9ca64aad12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-24T19:53:35.000Z" - }, - "end": { - "$date": "2020-12-24T23:42:53.000Z" - }, - "events": [ - { - "uuid": "8e6abf57-10c1-4b92-b095-0abba85ca4a6", - "start": { - "$date": "2020-12-24T19:53:35.000Z" - }, - "end": { - "$date": "2020-12-24T23:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "69b2d648-afb3-4765-9fcd-e802e84623a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T20:16:00.000Z" - }, - "end": { - "$date": "2020-12-24T20:30:48.000Z" - }, - "events": [ - { - "uuid": "72436708-6e31-46d6-b7da-16ff1f72462b", - "start": { - "$date": "2020-12-24T20:16:00.000Z" - }, - "end": { - "$date": "2020-12-24T20:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6ad752d7-2dac-4e2c-836f-2a0395d5dd54", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-24T21:54:47.000Z" - }, - "end": { - "$date": "2020-12-24T23:04:16.000Z" - }, - "events": [ - { - "uuid": "e21134d4-9668-41a7-92b2-615f6bb346b3", - "start": { - "$date": "2020-12-24T21:54:47.000Z" - }, - "end": { - "$date": "2020-12-24T23:04:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5faccedb-a85a-4000-b979-a9eafca2b313", - "uuid": "af187108-e26b-4bd5-bd1e-a8d7da86c11e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T21:58:02.000Z" - }, - "end": { - "$date": "2020-12-24T22:12:49.000Z" - }, - "events": [ - { - "uuid": "7ceb8b25-5567-42cd-89f9-f5377b8344a8", - "start": { - "$date": "2020-12-24T21:58:02.000Z" - }, - "end": { - "$date": "2020-12-24T22:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60d3d51a-d645-4f66-a330-f5917ba15ec6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T22:15:14.000Z" - }, - "end": { - "$date": "2020-12-24T22:26:00.000Z" - }, - "events": [ - { - "uuid": "05e5eae0-2284-4a2d-b99c-f7b8a401d7f8", - "start": { - "$date": "2020-12-24T22:15:14.000Z" - }, - "end": { - "$date": "2020-12-24T22:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5faccedb-a85a-4000-b979-a9eafca2b313", - "uuid": "7bad7329-6f27-45dc-bd5e-5edcce9e957c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T22:12:53.000Z" - }, - "end": { - "$date": "2020-12-24T22:40:05.000Z" - }, - "events": [ - { - "uuid": "7704a66b-aa24-4d5b-967a-5d3385173424", - "start": { - "$date": "2020-12-24T22:12:53.000Z" - }, - "end": { - "$date": "2020-12-24T22:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78c50c6f-4367-4b58-a91f-007ac721d271", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T22:49:01.000Z" - }, - "end": { - "$date": "2020-12-24T22:49:11.000Z" - }, - "events": [ - { - "uuid": "081bc05d-d2bb-41e7-9f08-b74d331024fe", - "start": { - "$date": "2020-12-24T22:49:01.000Z" - }, - "end": { - "$date": "2020-12-24T22:49:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5afa654b-2d93-4c50-bed7-ad5870778386", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-24T22:37:47.000Z" - }, - "end": { - "$date": "2020-12-24T22:45:37.000Z" - }, - "events": [ - { - "uuid": "bac1e10a-60b2-4b9b-a3ca-4ba92e6f2502", - "start": { - "$date": "2020-12-24T22:37:47.000Z" - }, - "end": { - "$date": "2020-12-24T22:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6557624e-bc12-4a53-bb80-d21f247de926", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-24T23:54:25.000Z" - }, - "end": { - "$date": "2020-12-25T00:15:03.000Z" - }, - "events": [ - { - "uuid": "e1c7b8d2-1187-4099-97f5-d9b95394b357", - "start": { - "$date": "2020-12-24T23:54:25.000Z" - }, - "end": { - "$date": "2020-12-25T00:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d0ed882-1932-4124-9142-2b58934c2a5d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-24T22:51:25.000Z" - }, - "end": { - "$date": "2020-12-25T00:20:42.000Z" - }, - "events": [ - { - "uuid": "94d209bc-843c-4d7c-a64c-0cd79ff73f44", - "start": { - "$date": "2020-12-24T22:51:25.000Z" - }, - "end": { - "$date": "2020-12-25T00:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9b6c5ac-98ff-4341-8f46-7bb4beea8f9b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T23:01:58.000Z" - }, - "end": { - "$date": "2020-12-24T23:41:15.000Z" - }, - "events": [ - { - "uuid": "feb612a2-01fc-40a7-88bc-4115f1ac67c2", - "start": { - "$date": "2020-12-24T23:01:58.000Z" - }, - "end": { - "$date": "2020-12-24T23:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "b13b4ccc-3888-4838-9bf8-fce2b9962979", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-24T23:03:34.000Z" - }, - "end": { - "$date": "2020-12-24T23:13:03.000Z" - }, - "events": [ - { - "uuid": "cd91fa9e-1893-4610-9d45-55e59b574ab3", - "start": { - "$date": "2020-12-24T23:03:34.000Z" - }, - "end": { - "$date": "2020-12-24T23:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "88b44352-3869-4ba2-869b-c3d74781f1c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-24T23:13:19.000Z" - }, - "end": { - "$date": "2020-12-24T23:56:04.000Z" - }, - "events": [ - { - "uuid": "8568acd1-207d-4abd-890f-f110b43542f9", - "start": { - "$date": "2020-12-24T23:13:19.000Z" - }, - "end": { - "$date": "2020-12-24T23:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "89d33aa0-7bb2-4f02-8279-3349da319cc5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-24T23:40:49.000Z" - }, - "end": { - "$date": "2020-12-25T00:39:02.000Z" - }, - "events": [ - { - "uuid": "287867a1-579c-4844-96cc-2c627633a1fc", - "start": { - "$date": "2020-12-24T23:40:49.000Z" - }, - "end": { - "$date": "2020-12-25T00:39:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4155ccb8-0e30-476a-bdaf-57c5fe42c0c4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-24T23:43:33.000Z" - }, - "end": { - "$date": "2020-12-24T23:47:34.000Z" - }, - "events": [ - { - "uuid": "d36898ac-afca-42f1-8e09-05df6fb44eda", - "start": { - "$date": "2020-12-24T23:43:33.000Z" - }, - "end": { - "$date": "2020-12-24T23:47:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac6193b1-36de-4759-b14c-a5d13dcbe601", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T23:43:31.000Z" - }, - "end": { - "$date": "2020-12-24T23:47:35.000Z" - }, - "events": [ - { - "uuid": "05298a3b-188c-453b-aeb6-84d3d89f0cbd", - "start": { - "$date": "2020-12-24T23:43:31.000Z" - }, - "end": { - "$date": "2020-12-24T23:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2d4dde3-a9a8-48fb-8f15-4df6cd8ac2f8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-24T23:47:37.000Z" - }, - "end": { - "$date": "2020-12-24T23:50:36.000Z" - }, - "events": [ - { - "uuid": "b99b0532-1283-45f7-b19d-359f35b7df7b", - "start": { - "$date": "2020-12-24T23:47:37.000Z" - }, - "end": { - "$date": "2020-12-24T23:50:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9628982c-a7c0-4b70-979a-1ec379d2a4ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T23:47:36.000Z" - }, - "end": { - "$date": "2020-12-24T23:50:37.000Z" - }, - "events": [ - { - "uuid": "514e5d76-68e8-4bc5-b5e7-57d5c1fbe1a7", - "start": { - "$date": "2020-12-24T23:47:36.000Z" - }, - "end": { - "$date": "2020-12-24T23:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b818d822-8aea-4ce3-8791-2a2edba4d1a3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-24T23:50:49.000Z" - }, - "end": { - "$date": "2020-12-25T00:17:07.000Z" - }, - "events": [ - { - "uuid": "999ad784-6b01-462c-bbed-c51b40c22121", - "start": { - "$date": "2020-12-24T23:50:49.000Z" - }, - "end": { - "$date": "2020-12-25T00:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c68ac67-b060-4820-8d31-b3632c4a5bac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-24T23:54:25.000Z" - }, - "end": { - "$date": "2020-12-25T00:14:35.000Z" - }, - "events": [ - { - "uuid": "edc15f80-b3c6-4f57-bf4c-59435b43c69a", - "start": { - "$date": "2020-12-24T23:54:25.000Z" - }, - "end": { - "$date": "2020-12-25T00:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e91ace9a-7c91-4e59-85f0-30bde24ec6dc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T00:25:20.000Z" - }, - "end": { - "$date": "2020-12-25T01:11:38.000Z" - }, - "events": [ - { - "uuid": "856f6361-83fb-4a99-bcfc-f3ea8ee87cfc", - "start": { - "$date": "2020-12-25T00:25:20.000Z" - }, - "end": { - "$date": "2020-12-25T01:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "391c3c70-25d2-4474-b700-7965ef359d0a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T00:27:41.000Z" - }, - "end": { - "$date": "2020-12-25T01:11:35.000Z" - }, - "events": [ - { - "uuid": "e3eb9790-d4d2-4ddb-ad83-d4d1b09a4e1c", - "start": { - "$date": "2020-12-25T00:27:41.000Z" - }, - "end": { - "$date": "2020-12-25T01:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad982d82-db54-4210-abea-023ee00b1221", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T00:25:23.000Z" - }, - "end": { - "$date": "2020-12-25T01:11:29.000Z" - }, - "events": [ - { - "uuid": "7d2864a3-006d-46da-9958-aa9889d5846f", - "start": { - "$date": "2020-12-25T00:25:23.000Z" - }, - "end": { - "$date": "2020-12-25T01:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2bce932-ff7a-4c22-84d7-59c279a3f280", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T01:13:09.000Z" - }, - "end": { - "$date": "2020-12-25T06:26:17.000Z" - }, - "events": [ - { - "uuid": "5cecfb37-faa3-4c0b-8391-c61dfb7232c1", - "start": { - "$date": "2020-12-25T01:13:09.000Z" - }, - "end": { - "$date": "2020-12-25T01:28:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b747cef-74f9-4fb9-9b33-5dd4ab3d69b4", - "start": { - "$date": "2020-12-25T01:28:09.000Z" - }, - "end": { - "$date": "2020-12-25T01:29:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "182a34c8-3d8d-4d99-b16b-4d59f774955c", - "start": { - "$date": "2020-12-25T01:29:09.000Z" - }, - "end": { - "$date": "2020-12-25T03:04:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "daaa199a-3b19-4c30-80e6-1213b9509cc5", - "start": { - "$date": "2020-12-25T03:04:09.000Z" - }, - "end": { - "$date": "2020-12-25T03:09:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9273f654-5776-40bd-b26d-982b0819ebe2", - "start": { - "$date": "2020-12-25T03:09:09.000Z" - }, - "end": { - "$date": "2020-12-25T03:11:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6925665e-696d-4a4d-81a8-1f81ef11c893", - "start": { - "$date": "2020-12-25T03:11:09.000Z" - }, - "end": { - "$date": "2020-12-25T03:17:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0cd6a011-2c01-4029-88e1-b9cea2c18116", - "start": { - "$date": "2020-12-25T03:17:09.000Z" - }, - "end": { - "$date": "2020-12-25T03:19:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1f2b609-0955-439a-a89c-e04242e18602", - "start": { - "$date": "2020-12-25T03:19:09.000Z" - }, - "end": { - "$date": "2020-12-25T03:31:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce533c78-8f01-4ea5-bcba-03ea8b54a204", - "start": { - "$date": "2020-12-25T03:31:09.000Z" - }, - "end": { - "$date": "2020-12-25T06:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "300fb854-5a22-4e60-a6db-c0bee8fb66d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T01:41:20.000Z" - }, - "end": { - "$date": "2020-12-25T01:53:55.000Z" - }, - "events": [ - { - "uuid": "cde5a21b-2a04-4970-b121-e9560c1c9546", - "start": { - "$date": "2020-12-25T01:41:20.000Z" - }, - "end": { - "$date": "2020-12-25T01:54:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c460982c-5aec-421b-b61a-402194d6ccdf", - "start": { - "$date": "2020-12-25T01:54:20.000Z" - }, - "end": { - "$date": "2020-12-25T02:02:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "68ada4ea-3df3-4a64-b3a3-de094ad92726", - "start": { - "$date": "2020-12-25T02:02:20.000Z" - }, - "end": { - "$date": "2020-12-25T01:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2c2f33eb-6ff7-44a7-8cd1-ab366884025a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-25T01:33:44.000Z" - }, - "end": { - "$date": "2020-12-25T03:06:37.000Z" - }, - "events": [ - { - "uuid": "a6145371-35e8-4028-a01f-c381adf4b1af", - "start": { - "$date": "2020-12-25T01:33:44.000Z" - }, - "end": { - "$date": "2020-12-25T03:06:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "5862d5ac-83a7-44c6-8e9e-271b7525be19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T02:02:57.000Z" - }, - "end": { - "$date": "2020-12-25T02:46:19.000Z" - }, - "events": [ - { - "uuid": "2c83c9c9-275b-45e8-af84-41702f9ea67e", - "start": { - "$date": "2020-12-25T02:02:57.000Z" - }, - "end": { - "$date": "2020-12-25T02:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "80e9994f-f32b-43f9-9206-23b87a0ddb7c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T02:33:37.000Z" - }, - "end": { - "$date": "2020-12-25T03:32:26.000Z" - }, - "events": [ - { - "uuid": "efa15716-2c51-487f-b513-d5e0f477a389", - "start": { - "$date": "2020-12-25T02:33:37.000Z" - }, - "end": { - "$date": "2020-12-25T03:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3b97f444-6b26-49f2-8dfc-94ca91481e06", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-25T03:29:56.000Z" - }, - "end": { - "$date": "2020-12-25T05:17:35.000Z" - }, - "events": [ - { - "uuid": "56721eb1-7c57-4f86-9115-7f34cb60296b", - "start": { - "$date": "2020-12-25T03:29:56.000Z" - }, - "end": { - "$date": "2020-12-25T05:17:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "49cb410f-6bfd-4a10-8504-3dc940081777", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-25T03:31:03.000Z" - }, - "end": { - "$date": "2020-12-25T03:32:09.000Z" - }, - "events": [ - { - "uuid": "3e47835c-28a2-4acf-8dad-49bd731efdee", - "start": { - "$date": "2020-12-25T03:31:03.000Z" - }, - "end": { - "$date": "2020-12-25T03:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "216b1842-7f1c-4359-b5ac-c997c0e44e9d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-25T03:57:29.000Z" - }, - "end": { - "$date": "2020-12-25T05:50:11.000Z" - }, - "events": [ - { - "uuid": "642b905f-acfa-468d-8d14-07daaf13494b", - "start": { - "$date": "2020-12-25T03:57:29.000Z" - }, - "end": { - "$date": "2020-12-25T05:50:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0067416d-a0b4-4c4b-8d16-d2141dabb90b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T04:41:20.000Z" - }, - "end": { - "$date": "2020-12-25T05:26:08.000Z" - }, - "events": [ - { - "uuid": "9ef1f5bc-01bf-424a-84d5-21c58146a538", - "start": { - "$date": "2020-12-25T04:41:20.000Z" - }, - "end": { - "$date": "2020-12-25T05:26:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "88cf2a82-9221-4513-a814-98494a34f50d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T05:04:13.000Z" - }, - "end": { - "$date": "2020-12-25T05:36:47.000Z" - }, - "events": [ - { - "uuid": "fdd159d3-2ead-48ba-a0f5-33fe850b4e59", - "start": { - "$date": "2020-12-25T05:04:13.000Z" - }, - "end": { - "$date": "2020-12-25T05:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e89b05f1-79d6-4e7c-9c60-86f4899fe22f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T05:07:00.000Z" - }, - "end": { - "$date": "2020-12-25T05:16:25.000Z" - }, - "events": [ - { - "uuid": "4ffb8eeb-fca0-4be8-a6dc-203bd1a620b6", - "start": { - "$date": "2020-12-25T05:07:00.000Z" - }, - "end": { - "$date": "2020-12-25T05:16:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7ef4da13-6778-4914-93b6-a7306992d3fd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T05:17:17.000Z" - }, - "end": { - "$date": "2020-12-25T05:44:33.000Z" - }, - "events": [ - { - "uuid": "cce9b29e-c20d-4873-bd74-8a4c69d3c6d8", - "start": { - "$date": "2020-12-25T05:17:17.000Z" - }, - "end": { - "$date": "2020-12-25T05:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "27dda5a4-d444-43bc-abc4-7393f3756cf4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-25T05:42:22.000Z" - }, - "end": { - "$date": "2020-12-25T05:42:26.000Z" - }, - "events": [ - { - "uuid": "fc14535d-46df-4876-9d0f-23ade1aa8730", - "start": { - "$date": "2020-12-25T05:42:22.000Z" - }, - "end": { - "$date": "2020-12-25T05:42:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "03334098-a9fb-441e-9884-5400537fa0ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T05:37:29.000Z" - }, - "end": { - "$date": "2020-12-25T05:41:48.000Z" - }, - "events": [ - { - "uuid": "1b6a3bff-a68f-47e2-bdda-f654cbd2b4e8", - "start": { - "$date": "2020-12-25T05:37:29.000Z" - }, - "end": { - "$date": "2020-12-25T05:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e31508c9-4329-4fbf-9f84-dfecf67e7f09", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T05:41:54.000Z" - }, - "end": { - "$date": "2020-12-25T05:45:08.000Z" - }, - "events": [ - { - "uuid": "948e370d-36fc-4936-b7ea-8aa08e43893a", - "start": { - "$date": "2020-12-25T05:41:54.000Z" - }, - "end": { - "$date": "2020-12-25T05:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36e9ccfe-c34d-4a0d-bbfa-62c271a4654a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T06:03:05.000Z" - }, - "end": { - "$date": "2020-12-25T06:03:04.000Z" - }, - "events": [ - { - "uuid": "b36c4195-596c-4053-89ad-931e713fcf64", - "start": { - "$date": "2020-12-25T06:03:05.000Z" - }, - "end": { - "$date": "2020-12-25T06:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0475657f-83d4-4d59-8f31-376a3753f8ac", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T05:48:38.000Z" - }, - "end": { - "$date": "2020-12-25T06:02:58.000Z" - }, - "events": [ - { - "uuid": "fb7e6865-0048-4567-9d13-0b3fa397cca8", - "start": { - "$date": "2020-12-25T05:48:38.000Z" - }, - "end": { - "$date": "2020-12-25T06:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3181c2c3-8d91-429e-8744-71acfb705e80", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-25T06:31:43.000Z" - }, - "end": { - "$date": "2020-12-25T08:21:49.000Z" - }, - "events": [ - { - "uuid": "ab7b177a-32e6-4312-b482-a6dc3f0e59ac", - "start": { - "$date": "2020-12-25T06:31:43.000Z" - }, - "end": { - "$date": "2020-12-25T08:21:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "e323bc18-a3a7-4d03-a7d7-80373248aa65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-25T06:22:59.000Z" - }, - "end": { - "$date": "2020-12-25T06:23:18.000Z" - }, - "events": [ - { - "uuid": "93e4747c-a60e-4441-b1bc-67219ef94ee7", - "start": { - "$date": "2020-12-25T06:22:59.000Z" - }, - "end": { - "$date": "2020-12-25T06:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8c74c58-d61f-4245-8eae-83aab75f4e20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T06:25:07.000Z" - }, - "end": { - "$date": "2020-12-25T06:25:35.000Z" - }, - "events": [ - { - "uuid": "c3968e16-ac3e-44ef-9384-a8a6076e3529", - "start": { - "$date": "2020-12-25T06:25:07.000Z" - }, - "end": { - "$date": "2020-12-25T06:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79403741-fb34-4108-b44c-3c8d65f644ea", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T06:03:43.000Z" - }, - "end": { - "$date": "2020-12-25T06:06:18.000Z" - }, - "events": [ - { - "uuid": "fa705d87-e0fd-4210-8d85-9a45e87b48d5", - "start": { - "$date": "2020-12-25T06:03:43.000Z" - }, - "end": { - "$date": "2020-12-25T06:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36122e04-60d1-4763-8bc7-ac5ab7b35c4c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T06:09:34.000Z" - }, - "end": { - "$date": "2020-12-25T06:25:14.000Z" - }, - "events": [ - { - "uuid": "0cf5e7b9-c6be-4c3e-9597-dc6e824110a3", - "start": { - "$date": "2020-12-25T06:09:34.000Z" - }, - "end": { - "$date": "2020-12-25T06:25:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31a9eb3f-b25e-4e2a-b8c7-a0ec798da722", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T06:33:07.000Z" - }, - "end": { - "$date": "2020-12-25T06:52:27.000Z" - }, - "events": [ - { - "uuid": "887e4848-eb46-4eab-a2ed-ffa18c51aa1b", - "start": { - "$date": "2020-12-25T06:33:07.000Z" - }, - "end": { - "$date": "2020-12-25T06:52:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acfafd0c-d190-428c-a462-a89fda69c26b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T06:32:59.000Z" - }, - "end": { - "$date": "2020-12-25T06:52:34.000Z" - }, - "events": [ - { - "uuid": "9bea91ab-21ec-4b12-a66c-9b41291e3942", - "start": { - "$date": "2020-12-25T06:32:59.000Z" - }, - "end": { - "$date": "2020-12-25T06:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5682226e-4192-40a0-b97f-5496d5d59143", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T06:32:35.000Z" - }, - "end": { - "$date": "2020-12-25T06:52:33.000Z" - }, - "events": [ - { - "uuid": "833ccdac-421b-4639-8651-c875af0b0a66", - "start": { - "$date": "2020-12-25T06:32:35.000Z" - }, - "end": { - "$date": "2020-12-25T06:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bbf9e52-dbe8-4f32-947f-8f04c08f5d2b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T06:57:28.000Z" - }, - "end": { - "$date": "2020-12-25T07:11:27.000Z" - }, - "events": [ - { - "uuid": "314307bd-105a-415f-81d2-231987d91ae2", - "start": { - "$date": "2020-12-25T06:57:28.000Z" - }, - "end": { - "$date": "2020-12-25T07:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf8eb44b-47a8-434a-9d25-0d77c061caae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T06:57:28.000Z" - }, - "end": { - "$date": "2020-12-25T07:11:26.000Z" - }, - "events": [ - { - "uuid": "6adeeaa6-ef3f-4630-b03d-c7748e07b303", - "start": { - "$date": "2020-12-25T06:57:28.000Z" - }, - "end": { - "$date": "2020-12-25T07:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43bc59c7-71c5-4b90-aa63-be37f036b229", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-25T06:57:25.000Z" - }, - "end": { - "$date": "2020-12-25T07:11:25.000Z" - }, - "events": [ - { - "uuid": "c1f9cc7e-971d-4c16-82c1-707dee3ff33c", - "start": { - "$date": "2020-12-25T06:57:25.000Z" - }, - "end": { - "$date": "2020-12-25T07:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09a4e574-4875-4edc-afb6-21d1de9f43c7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T07:16:55.000Z" - }, - "end": { - "$date": "2020-12-25T07:39:52.000Z" - }, - "events": [ - { - "uuid": "33eff005-5f2b-4fc7-8193-8a689f4b2eec", - "start": { - "$date": "2020-12-25T07:16:55.000Z" - }, - "end": { - "$date": "2020-12-25T07:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b632e2c-262a-41c0-8dca-133024311078", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T07:17:00.000Z" - }, - "end": { - "$date": "2020-12-25T07:39:29.000Z" - }, - "events": [ - { - "uuid": "45fb14a4-3228-417e-8d24-6de23f86858b", - "start": { - "$date": "2020-12-25T07:17:00.000Z" - }, - "end": { - "$date": "2020-12-25T07:39:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "78656f35-065b-4d87-a6c8-90aa894d419a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-25T09:59:48.000Z" - }, - "end": { - "$date": "2020-12-25T11:18:39.000Z" - }, - "events": [ - { - "uuid": "4f84199d-8fd7-45d9-b254-dd00d2031d4f", - "start": { - "$date": "2020-12-25T09:59:48.000Z" - }, - "end": { - "$date": "2020-12-25T11:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7f9a9b6c-8b6b-4913-9674-65eeaa534d1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T16:11:47.000Z" - }, - "end": { - "$date": "2020-12-25T17:02:01.000Z" - }, - "events": [ - { - "uuid": "8600c71b-505f-4e9c-b909-b3a3ac807b07", - "start": { - "$date": "2020-12-25T16:11:47.000Z" - }, - "end": { - "$date": "2020-12-25T17:02:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c07039e-f3d6-4f7f-a916-49135d859bb9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-25T16:18:48.000Z" - }, - "end": { - "$date": "2020-12-25T17:58:28.000Z" - }, - "events": [ - { - "uuid": "f65743a7-ea10-46cc-aa25-fe962875f27e", - "start": { - "$date": "2020-12-25T16:18:48.000Z" - }, - "end": { - "$date": "2020-12-25T17:58:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46dca249-f274-4b5a-b569-56bcea32e815", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T17:10:30.000Z" - }, - "end": { - "$date": "2020-12-25T17:37:57.000Z" - }, - "events": [ - { - "uuid": "810d8596-c55a-463e-81df-e3251ea738eb", - "start": { - "$date": "2020-12-25T17:10:30.000Z" - }, - "end": { - "$date": "2020-12-25T17:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c23d64d6-f1a6-4df0-beb4-d1331d56bef3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T17:03:30.000Z" - }, - "end": { - "$date": "2020-12-25T17:04:33.000Z" - }, - "events": [ - { - "uuid": "00dbb615-c8ad-4ecc-a5fe-2d3fe6c7470a", - "start": { - "$date": "2020-12-25T17:03:30.000Z" - }, - "end": { - "$date": "2020-12-25T17:04:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5354cfc-e796-4420-997c-6e33f7e10a9d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T17:10:27.000Z" - }, - "end": { - "$date": "2020-12-25T17:38:04.000Z" - }, - "events": [ - { - "uuid": "4349838f-67bf-4786-8003-7eb9d6c403cb", - "start": { - "$date": "2020-12-25T17:10:27.000Z" - }, - "end": { - "$date": "2020-12-25T17:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1519bec-10fc-4561-a2ff-6539f5ff5bcb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-25T17:37:27.000Z" - }, - "end": { - "$date": "2020-12-25T18:02:45.000Z" - }, - "events": [ - { - "uuid": "d8b500f2-4c5e-4dcb-8580-33aff2c62272", - "start": { - "$date": "2020-12-25T17:37:27.000Z" - }, - "end": { - "$date": "2020-12-25T18:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "423ce9bc-a6a8-40c6-bdd8-2333bd9b4cb9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T17:38:29.000Z" - }, - "end": { - "$date": "2020-12-25T17:49:07.000Z" - }, - "events": [ - { - "uuid": "8a519304-ebb7-49ab-9045-5dbbd48e7005", - "start": { - "$date": "2020-12-25T17:38:29.000Z" - }, - "end": { - "$date": "2020-12-25T17:49:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b102dd4-0d72-4a2e-ab4e-e838c948242a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T17:59:34.000Z" - }, - "end": { - "$date": "2020-12-25T18:14:00.000Z" - }, - "events": [ - { - "uuid": "feb49012-d530-4a31-88bb-c1641828fb9d", - "start": { - "$date": "2020-12-25T17:59:34.000Z" - }, - "end": { - "$date": "2020-12-25T18:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc6b5036-137c-4d47-8644-39bb6e37042d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T17:58:55.000Z" - }, - "end": { - "$date": "2020-12-25T18:13:56.000Z" - }, - "events": [ - { - "uuid": "539eef72-01f8-4959-b34b-a7fc799fc4b9", - "start": { - "$date": "2020-12-25T17:58:55.000Z" - }, - "end": { - "$date": "2020-12-25T18:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf1bbd67-4ce7-4a4b-86d0-aac105815d33", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T17:58:55.000Z" - }, - "end": { - "$date": "2020-12-25T18:13:52.000Z" - }, - "events": [ - { - "uuid": "788fbbdb-2f88-464b-83cf-05e7cb9776b7", - "start": { - "$date": "2020-12-25T17:58:55.000Z" - }, - "end": { - "$date": "2020-12-25T18:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c34834c-f748-44ba-bae2-e9b248fdfc67", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T18:21:05.000Z" - }, - "end": { - "$date": "2020-12-25T18:36:11.000Z" - }, - "events": [ - { - "uuid": "f0e5ea96-a28d-42a2-9a8c-00cc7304d367", - "start": { - "$date": "2020-12-25T18:21:05.000Z" - }, - "end": { - "$date": "2020-12-25T18:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dac23ec3-a0db-4913-a8a5-8d9f5dcccb1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T18:19:31.000Z" - }, - "end": { - "$date": "2020-12-25T18:36:12.000Z" - }, - "events": [ - { - "uuid": "08f7b1f2-9cd6-4a6e-b02b-7689282b4b54", - "start": { - "$date": "2020-12-25T18:19:31.000Z" - }, - "end": { - "$date": "2020-12-25T18:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fff83fd-9c9c-48c4-8564-427a0727bdd4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T18:19:37.000Z" - }, - "end": { - "$date": "2020-12-25T18:36:18.000Z" - }, - "events": [ - { - "uuid": "4908ff35-2592-43d6-b3e6-e55a18e3eb5f", - "start": { - "$date": "2020-12-25T18:19:37.000Z" - }, - "end": { - "$date": "2020-12-25T18:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff9c3239-86bc-43ec-b304-89f3f2caace6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T18:37:02.000Z" - }, - "end": { - "$date": "2020-12-25T18:39:18.000Z" - }, - "events": [ - { - "uuid": "1125988a-dcd2-4e42-ae46-5debbe9e5d22", - "start": { - "$date": "2020-12-25T18:37:02.000Z" - }, - "end": { - "$date": "2020-12-25T18:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "620794a5-f694-470a-bf56-d74f6698ab6d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T18:41:19.000Z" - }, - "end": { - "$date": "2020-12-25T18:43:32.000Z" - }, - "events": [ - { - "uuid": "5f1e0b5b-4769-44d2-ae57-120eeb8d8d92", - "start": { - "$date": "2020-12-25T18:41:19.000Z" - }, - "end": { - "$date": "2020-12-25T18:43:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "80c51af6-0974-4f4b-be75-2c7e0331be98", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T18:39:32.000Z" - }, - "end": { - "$date": "2020-12-25T19:44:04.000Z" - }, - "events": [ - { - "uuid": "c98d3316-0c85-443c-bb66-d89997e62d80", - "start": { - "$date": "2020-12-25T18:39:32.000Z" - }, - "end": { - "$date": "2020-12-25T19:44:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91853ea8-afd5-42fc-9b26-fb1bed457fcc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T18:40:43.000Z" - }, - "end": { - "$date": "2020-12-25T20:12:24.000Z" - }, - "events": [ - { - "uuid": "aee777fe-88c5-42a4-84d7-191263407889", - "start": { - "$date": "2020-12-25T18:40:43.000Z" - }, - "end": { - "$date": "2020-12-25T20:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4108217f-2346-428c-9ff4-a0e85f024d50", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-25T19:12:29.000Z" - }, - "end": { - "$date": "2020-12-25T19:40:11.000Z" - }, - "events": [ - { - "uuid": "605ad40b-c7f0-4643-bac4-522ed5d33b66", - "start": { - "$date": "2020-12-25T19:12:29.000Z" - }, - "end": { - "$date": "2020-12-25T19:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a6015e0d-9e7c-440a-be3b-2b07fc090e71", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-25T19:40:31.000Z" - }, - "end": { - "$date": "2020-12-25T21:27:22.000Z" - }, - "events": [ - { - "uuid": "5024ac67-efe1-4ab5-95c3-96c6b362f145", - "start": { - "$date": "2020-12-25T19:40:31.000Z" - }, - "end": { - "$date": "2020-12-25T19:52:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bbe62239-29ff-43e1-a962-e6e60178e343", - "start": { - "$date": "2020-12-25T19:52:31.000Z" - }, - "end": { - "$date": "2020-12-25T19:57:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0a92977a-a754-45d1-aba6-803f832ef48a", - "start": { - "$date": "2020-12-25T19:57:31.000Z" - }, - "end": { - "$date": "2020-12-25T20:13:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1eeaa5ff-eef9-4f88-86dd-3bbb4c1b6491", - "start": { - "$date": "2020-12-25T20:13:31.000Z" - }, - "end": { - "$date": "2020-12-25T21:27:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6878a354-eee0-4775-ac64-bcde5b2ffdf4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-25T19:49:32.000Z" - }, - "end": { - "$date": "2020-12-25T22:12:08.000Z" - }, - "events": [ - { - "uuid": "0980c542-1f33-4004-8119-e5d49c3d107a", - "start": { - "$date": "2020-12-25T19:49:32.000Z" - }, - "end": { - "$date": "2020-12-25T22:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "45a79d64-d3b1-4283-b0ea-c81de7f962f9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-25T19:55:52.000Z" - }, - "end": { - "$date": "2020-12-26T00:20:05.000Z" - }, - "events": [ - { - "uuid": "8ac3cebe-1b9b-42de-81cb-e518086d9569", - "start": { - "$date": "2020-12-25T19:55:52.000Z" - }, - "end": { - "$date": "2020-12-26T00:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "467fda02-41fb-4fa4-baee-0ef233ec72ef", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T20:15:38.000Z" - }, - "end": { - "$date": "2020-12-25T21:33:54.000Z" - }, - "events": [ - { - "uuid": "13796d0b-6efd-4516-8c3f-2849b508699f", - "start": { - "$date": "2020-12-25T20:15:38.000Z" - }, - "end": { - "$date": "2020-12-25T21:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd57e6f1-dd9c-4db2-ae5e-c798695f1124", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T21:40:12.000Z" - }, - "end": { - "$date": "2020-12-25T21:53:03.000Z" - }, - "events": [ - { - "uuid": "8ef6e081-3734-4046-8c55-6baa4a509dd2", - "start": { - "$date": "2020-12-25T21:40:12.000Z" - }, - "end": { - "$date": "2020-12-25T21:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c15e8b1f-a91b-4c48-a551-0cbef11ca84e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T21:40:04.000Z" - }, - "end": { - "$date": "2020-12-25T21:53:05.000Z" - }, - "events": [ - { - "uuid": "c6dc6164-780e-4674-86bd-a47505f09e27", - "start": { - "$date": "2020-12-25T21:40:04.000Z" - }, - "end": { - "$date": "2020-12-25T21:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "270d698f-5567-4939-ae75-2420491f34df", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T21:43:58.000Z" - }, - "end": { - "$date": "2020-12-25T22:55:32.000Z" - }, - "events": [ - { - "uuid": "1643906f-75be-4aef-ae72-403ec81049f3", - "start": { - "$date": "2020-12-25T21:43:58.000Z" - }, - "end": { - "$date": "2020-12-25T22:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "919a0618-b0ba-4ccb-b967-66f7e39197eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T21:58:33.000Z" - }, - "end": { - "$date": "2020-12-25T22:14:14.000Z" - }, - "events": [ - { - "uuid": "71f6422d-90e9-4c34-807d-7554ac1ffca5", - "start": { - "$date": "2020-12-25T21:58:33.000Z" - }, - "end": { - "$date": "2020-12-25T22:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31cd07df-30c1-4923-8958-575da07e1ff7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T21:58:30.000Z" - }, - "end": { - "$date": "2020-12-25T22:14:37.000Z" - }, - "events": [ - { - "uuid": "55841abf-13f2-4e22-8eb7-0ea843d993dc", - "start": { - "$date": "2020-12-25T21:58:30.000Z" - }, - "end": { - "$date": "2020-12-25T22:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27c45b62-eb76-4de8-b5e4-886d4af0389f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T22:19:00.000Z" - }, - "end": { - "$date": "2020-12-25T22:34:01.000Z" - }, - "events": [ - { - "uuid": "d93611a0-e510-4493-ba24-cf720dc45a36", - "start": { - "$date": "2020-12-25T22:19:00.000Z" - }, - "end": { - "$date": "2020-12-25T22:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d15372c-9c28-407a-a161-3d490a06776c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T22:18:51.000Z" - }, - "end": { - "$date": "2020-12-25T22:34:23.000Z" - }, - "events": [ - { - "uuid": "a1b354ee-cd47-4ff5-bca7-dbc4575f1bf4", - "start": { - "$date": "2020-12-25T22:18:51.000Z" - }, - "end": { - "$date": "2020-12-25T22:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "186858b7-5843-4257-8241-1be93771f622", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T22:38:07.000Z" - }, - "end": { - "$date": "2020-12-25T22:49:08.000Z" - }, - "events": [ - { - "uuid": "0f08c8c6-55a1-432f-a237-22cef3d5cb22", - "start": { - "$date": "2020-12-25T22:38:07.000Z" - }, - "end": { - "$date": "2020-12-25T22:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91d47130-a485-45f8-8503-0e093c5a355c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T22:37:57.000Z" - }, - "end": { - "$date": "2020-12-25T22:49:14.000Z" - }, - "events": [ - { - "uuid": "34737f62-313b-4cd9-855d-9dd87f63a079", - "start": { - "$date": "2020-12-25T22:37:57.000Z" - }, - "end": { - "$date": "2020-12-25T22:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "5c65ac87-5016-4060-abd7-88c40dd6b6a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T22:35:10.000Z" - }, - "end": { - "$date": "2020-12-25T23:26:11.000Z" - }, - "events": [ - { - "uuid": "8efbbe73-af2f-4110-a5b9-c0f9c9da8aa1", - "start": { - "$date": "2020-12-25T22:35:10.000Z" - }, - "end": { - "$date": "2020-12-25T23:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ff26b378-8e29-44f5-a450-0b8215b20f02", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-25T22:39:44.000Z" - }, - "end": { - "$date": "2020-12-25T22:50:37.000Z" - }, - "events": [ - { - "uuid": "1d0e856c-56d6-4fdf-8522-8245744d0742", - "start": { - "$date": "2020-12-25T22:39:44.000Z" - }, - "end": { - "$date": "2020-12-25T22:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00015957-098f-486d-8f83-11dcbb712b4d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T22:59:45.000Z" - }, - "end": { - "$date": "2020-12-25T23:13:15.000Z" - }, - "events": [ - { - "uuid": "21916937-0d2b-4433-ab78-1137b7b177db", - "start": { - "$date": "2020-12-25T22:59:45.000Z" - }, - "end": { - "$date": "2020-12-25T23:13:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f2d9f83-1115-4677-a80a-c671ae137018", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T22:59:38.000Z" - }, - "end": { - "$date": "2020-12-25T23:13:03.000Z" - }, - "events": [ - { - "uuid": "7b251e1c-1ac5-4b16-9c52-d9a674695c9a", - "start": { - "$date": "2020-12-25T22:59:38.000Z" - }, - "end": { - "$date": "2020-12-25T23:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a6f2031-36e9-4d64-9717-7564b51ce8e5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-25T22:59:40.000Z" - }, - "end": { - "$date": "2020-12-25T23:13:30.000Z" - }, - "events": [ - { - "uuid": "b8ba2454-e089-4c6c-bfc3-844980d45888", - "start": { - "$date": "2020-12-25T22:59:40.000Z" - }, - "end": { - "$date": "2020-12-25T23:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cd42bbb4-2359-44df-883b-e09a7d8db40d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-25T23:06:54.000Z" - }, - "end": { - "$date": "2020-12-26T01:39:27.000Z" - }, - "events": [ - { - "uuid": "383de649-6e5d-4771-9732-b60a01b66f2f", - "start": { - "$date": "2020-12-25T23:06:54.000Z" - }, - "end": { - "$date": "2020-12-26T01:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dda33b8-856c-427f-9463-4e0de0db95e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-25T23:50:10.000Z" - }, - "end": { - "$date": "2020-12-26T00:02:51.000Z" - }, - "events": [ - { - "uuid": "3f2e969d-55a8-4a0c-a194-9796c3f60541", - "start": { - "$date": "2020-12-25T23:50:10.000Z" - }, - "end": { - "$date": "2020-12-26T00:01:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9aa1030e-407b-4ddf-8818-527e5445c03e", - "start": { - "$date": "2020-12-26T00:01:10.000Z" - }, - "end": { - "$date": "2020-12-26T00:11:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e561486-6beb-4e7b-b350-a4a670c7690d", - "start": { - "$date": "2020-12-26T00:11:10.000Z" - }, - "end": { - "$date": "2020-12-26T00:15:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51153175-e3c6-4c60-bd4d-07328bd3c79b", - "start": { - "$date": "2020-12-26T00:15:10.000Z" - }, - "end": { - "$date": "2020-12-26T00:17:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e77a0cda-a2f1-4bcb-9baa-42d46767dbf1", - "start": { - "$date": "2020-12-26T00:17:10.000Z" - }, - "end": { - "$date": "2020-12-26T00:02:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7efb8dbb-1d60-4ae3-9ae8-8a422bd38e74", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-25T23:14:04.000Z" - }, - "end": { - "$date": "2020-12-25T23:57:04.000Z" - }, - "events": [ - { - "uuid": "6f902038-1f90-40ad-b98f-8dde873aabc6", - "start": { - "$date": "2020-12-25T23:14:04.000Z" - }, - "end": { - "$date": "2020-12-25T23:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b2d26125-0eb4-4704-b60a-c29ddbb75578", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-25T23:41:37.000Z" - }, - "end": { - "$date": "2020-12-26T00:16:48.000Z" - }, - "events": [ - { - "uuid": "55023ba8-ea8e-4914-892e-fd445e769202", - "start": { - "$date": "2020-12-25T23:41:37.000Z" - }, - "end": { - "$date": "2020-12-26T00:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebaf01b9-7173-48a2-8dfb-6a39e9ecc024", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T00:19:45.000Z" - }, - "end": { - "$date": "2020-12-26T00:32:02.000Z" - }, - "events": [ - { - "uuid": "b9427b10-0a9a-4f1a-9c88-49e16ff40290", - "start": { - "$date": "2020-12-26T00:19:45.000Z" - }, - "end": { - "$date": "2020-12-26T00:32:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9e3d08f-b701-4721-bc4b-338da3d12465", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T00:20:33.000Z" - }, - "end": { - "$date": "2020-12-26T00:31:53.000Z" - }, - "events": [ - { - "uuid": "3e4c0d6e-cbfd-40ba-bd26-b5b832052eaf", - "start": { - "$date": "2020-12-26T00:20:33.000Z" - }, - "end": { - "$date": "2020-12-26T00:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc326875-a427-46ad-afc9-e230a9a8e3fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T00:19:35.000Z" - }, - "end": { - "$date": "2020-12-26T00:32:05.000Z" - }, - "events": [ - { - "uuid": "67c0dc0d-08a8-46d0-8f9c-b49ae929933f", - "start": { - "$date": "2020-12-26T00:19:35.000Z" - }, - "end": { - "$date": "2020-12-26T00:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39a05851-67c5-4ea5-b1a2-c37cc3cbee72", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T00:42:43.000Z" - }, - "end": { - "$date": "2020-12-26T01:05:28.000Z" - }, - "events": [ - { - "uuid": "d9837bd0-c865-400e-ae7f-ba6bb7421b55", - "start": { - "$date": "2020-12-26T00:42:43.000Z" - }, - "end": { - "$date": "2020-12-26T01:05:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5444c7cb-7f65-4add-88c1-6085b4d45466", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T00:42:40.000Z" - }, - "end": { - "$date": "2020-12-26T01:05:20.000Z" - }, - "events": [ - { - "uuid": "4db9970d-0451-4f8a-8e23-86f74d56b355", - "start": { - "$date": "2020-12-26T00:42:40.000Z" - }, - "end": { - "$date": "2020-12-26T01:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c6886b3-22ce-4ce0-8197-212aba884c5f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T00:42:38.000Z" - }, - "end": { - "$date": "2020-12-26T01:05:29.000Z" - }, - "events": [ - { - "uuid": "2ed5e663-3274-4cc6-80f5-6baff6aa0f22", - "start": { - "$date": "2020-12-26T00:42:38.000Z" - }, - "end": { - "$date": "2020-12-26T01:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00fa2cb9-e62e-4f60-92af-da089cba603a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T01:10:34.000Z" - }, - "end": { - "$date": "2020-12-26T01:28:06.000Z" - }, - "events": [ - { - "uuid": "145306b3-2b03-47ef-8fb3-ed01716ef986", - "start": { - "$date": "2020-12-26T01:10:34.000Z" - }, - "end": { - "$date": "2020-12-26T01:28:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa2216e2-1a6a-48c1-a6b0-0660715c146b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T01:11:05.000Z" - }, - "end": { - "$date": "2020-12-26T01:27:55.000Z" - }, - "events": [ - { - "uuid": "9be263cd-a44f-4658-82d5-cd2fc826234e", - "start": { - "$date": "2020-12-26T01:11:05.000Z" - }, - "end": { - "$date": "2020-12-26T01:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dba0efe3-2580-4a2c-b089-bef364ab98fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T01:10:25.000Z" - }, - "end": { - "$date": "2020-12-26T01:28:08.000Z" - }, - "events": [ - { - "uuid": "5985046b-1570-4f2f-8c5b-c9fac818352c", - "start": { - "$date": "2020-12-26T01:10:25.000Z" - }, - "end": { - "$date": "2020-12-26T01:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "648b1308-aa49-4e0b-81cc-4d1df5223a16", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T01:11:37.000Z" - }, - "end": { - "$date": "2020-12-26T01:27:58.000Z" - }, - "events": [ - { - "uuid": "757ca40b-9526-49eb-a3a3-5a9ab5fa9c99", - "start": { - "$date": "2020-12-26T01:11:37.000Z" - }, - "end": { - "$date": "2020-12-26T01:27:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7312b873-e2a8-4618-aa18-d82c2fcca0ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T02:32:38.000Z" - }, - "end": { - "$date": "2020-12-26T02:47:28.000Z" - }, - "events": [ - { - "uuid": "f53cad23-4eb3-4f13-ac12-0a124b62fdb5", - "start": { - "$date": "2020-12-26T02:32:38.000Z" - }, - "end": { - "$date": "2020-12-26T02:50:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09b53719-01c5-424a-90e0-607fb2916f9d", - "start": { - "$date": "2020-12-26T02:50:38.000Z" - }, - "end": { - "$date": "2020-12-26T03:21:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54b0f3dd-2f38-480f-a81a-f2c7aca5b345", - "start": { - "$date": "2020-12-26T03:21:38.000Z" - }, - "end": { - "$date": "2020-12-26T02:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7f4bf761-8446-47d2-8c1a-3c7f08128890", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T01:30:18.000Z" - }, - "end": { - "$date": "2020-12-26T01:48:14.000Z" - }, - "events": [ - { - "uuid": "ac117337-faf8-4426-8617-8cac01b580fe", - "start": { - "$date": "2020-12-26T01:30:18.000Z" - }, - "end": { - "$date": "2020-12-26T01:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "a37f2ab7-565d-4e02-94e8-1ccbec318bd3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T02:34:50.000Z" - }, - "end": { - "$date": "2020-12-26T03:51:33.000Z" - }, - "events": [ - { - "uuid": "efb62e53-c455-4627-b9e0-b4da42ff46f8", - "start": { - "$date": "2020-12-26T02:34:50.000Z" - }, - "end": { - "$date": "2020-12-26T03:51:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "297ae679-a6c7-415d-abc3-0f5f7bd51c5e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T02:52:18.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:28.000Z" - }, - "events": [ - { - "uuid": "1ecb103e-a4d8-4ebf-82e5-f661688f971c", - "start": { - "$date": "2020-12-26T02:52:18.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c76facd-d02b-4982-ab92-6c101e2cbc4a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T02:53:23.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:29.000Z" - }, - "events": [ - { - "uuid": "2694f359-5827-44b6-85e3-3c3996bee675", - "start": { - "$date": "2020-12-26T02:53:23.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3f0a927-90fc-42ff-80e7-8ba550c26ebf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T02:52:18.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:59.000Z" - }, - "events": [ - { - "uuid": "da331c02-9d79-48bb-a656-d74a3371d652", - "start": { - "$date": "2020-12-26T02:52:18.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d3c53ef-7e95-4c6c-9878-2b8c4a856db3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T02:52:19.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:35.000Z" - }, - "events": [ - { - "uuid": "838b8abf-0948-472a-a243-1c1a14ccf468", - "start": { - "$date": "2020-12-26T02:52:19.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbff9369-940d-4887-b335-aaf8ba89d65c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-26T02:52:15.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:30.000Z" - }, - "events": [ - { - "uuid": "64b14da2-4715-4970-a0b3-9d34b9a573c3", - "start": { - "$date": "2020-12-26T02:52:15.000Z" - }, - "end": { - "$date": "2020-12-26T03:10:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "384499e1-6071-4da5-86ee-94ffaf56ea1c", - "uuid": "7be149e3-7d7b-4a92-ae0f-024372c572d7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-26T02:56:21.000Z" - }, - "end": { - "$date": "2020-12-26T02:59:06.000Z" - }, - "events": [ - { - "uuid": "b7d9ce4e-125a-45d6-99d6-7221389ce217", - "start": { - "$date": "2020-12-26T02:56:21.000Z" - }, - "end": { - "$date": "2020-12-26T02:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38277ac7-86fc-4a33-8d10-305c26989035", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T03:14:14.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:39.000Z" - }, - "events": [ - { - "uuid": "9fd82ff2-befb-4813-9efc-623f1a680274", - "start": { - "$date": "2020-12-26T03:14:14.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe80845b-a8fa-46af-aec4-528d0735dd96", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T03:14:15.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:42.000Z" - }, - "events": [ - { - "uuid": "96b16bba-441b-4ee2-a69c-66aab3300210", - "start": { - "$date": "2020-12-26T03:14:15.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0ac73ba-ad95-44d1-b611-ecb9b394d58e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T03:14:16.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:48.000Z" - }, - "events": [ - { - "uuid": "15ab16d9-144c-4767-9a7e-373188fe64b0", - "start": { - "$date": "2020-12-26T03:14:16.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ffed06d-6eb6-4064-8939-70a174991145", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T03:14:14.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:40.000Z" - }, - "events": [ - { - "uuid": "a7e87be0-a8d1-4ca6-80f9-92d2cf8583f7", - "start": { - "$date": "2020-12-26T03:14:14.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ce67f87-b8cf-41e4-b3aa-570422b08f68", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-26T03:14:35.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:46.000Z" - }, - "events": [ - { - "uuid": "0fcde972-b499-46ad-a7b7-5d98867c988a", - "start": { - "$date": "2020-12-26T03:14:35.000Z" - }, - "end": { - "$date": "2020-12-26T03:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "538b546c-c004-46c9-b11a-6aeb6a0eff88", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T03:32:55.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:10.000Z" - }, - "events": [ - { - "uuid": "79318707-efd5-4bc0-9500-10f853a107fd", - "start": { - "$date": "2020-12-26T03:32:55.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44ffc6a5-18a9-49c1-bd05-fb278e21bef6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T03:32:09.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:10.000Z" - }, - "events": [ - { - "uuid": "217a376e-efc3-4af2-9b2c-742e08a33ca7", - "start": { - "$date": "2020-12-26T03:32:09.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4bdde35a-e796-4784-95ff-042d7eda87e6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T03:32:07.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:26.000Z" - }, - "events": [ - { - "uuid": "343b2af2-f93f-460f-89e1-c527bca18ee7", - "start": { - "$date": "2020-12-26T03:32:07.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a464a03-b091-45c4-b5ed-63bdaa76f08e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T03:32:08.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:18.000Z" - }, - "events": [ - { - "uuid": "a4cc6185-930b-432c-b4d1-5bfa39831c27", - "start": { - "$date": "2020-12-26T03:32:08.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e581dfc1-94e2-45bd-9c55-9e95c2497518", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-26T03:32:06.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:11.000Z" - }, - "events": [ - { - "uuid": "a19e1dd5-40f2-4b2a-b5ea-bd3dce472a69", - "start": { - "$date": "2020-12-26T03:32:06.000Z" - }, - "end": { - "$date": "2020-12-26T03:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c979daf-598e-4956-bd12-a8aa30c74fd0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T03:49:01.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:05.000Z" - }, - "events": [ - { - "uuid": "e3c1e3d8-6e4c-4ceb-9795-b80f9d4471cc", - "start": { - "$date": "2020-12-26T03:49:01.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94075fba-2666-491c-9880-e6cb0d87e290", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T03:48:59.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:13.000Z" - }, - "events": [ - { - "uuid": "ad636ffe-019c-46e7-9f4b-3c2dfd1ecfd0", - "start": { - "$date": "2020-12-26T03:48:59.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71b69237-c85b-4362-89c5-c71dd51ec88d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T03:49:40.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:06.000Z" - }, - "events": [ - { - "uuid": "c46780a2-6a64-4e8c-a0b0-aa34bbd5147d", - "start": { - "$date": "2020-12-26T03:49:40.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2efbcd6-f88c-4760-a72a-6531ae4a2a03", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T03:48:59.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:14.000Z" - }, - "events": [ - { - "uuid": "ed75c343-4f02-4598-8b5f-7d0dc33d5ca6", - "start": { - "$date": "2020-12-26T03:48:59.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f941fec-a5cc-4f00-a1ac-6eb958a9bb1f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-26T03:48:57.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:12.000Z" - }, - "events": [ - { - "uuid": "b204e92d-0535-48df-9a65-7b1ecb5e00c7", - "start": { - "$date": "2020-12-26T03:48:57.000Z" - }, - "end": { - "$date": "2020-12-26T04:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "fad7cc8e-401f-48bd-8fff-c6a14c530434", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T03:52:27.000Z" - }, - "end": { - "$date": "2020-12-26T03:53:38.000Z" - }, - "events": [ - { - "uuid": "628888ee-03bf-45dd-b422-4557e3c2b4f1", - "start": { - "$date": "2020-12-26T03:52:27.000Z" - }, - "end": { - "$date": "2020-12-26T03:53:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "3dd85a22-9a34-4112-ab52-f73de19124b1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T03:54:02.000Z" - }, - "end": { - "$date": "2020-12-26T06:04:07.000Z" - }, - "events": [ - { - "uuid": "38e42bfa-06ae-47d9-aea1-135596afd1d5", - "start": { - "$date": "2020-12-26T03:54:02.000Z" - }, - "end": { - "$date": "2020-12-26T06:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "48e78874-68f3-499c-910f-2d61fd7a9d4d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T04:04:56.000Z" - }, - "end": { - "$date": "2020-12-26T07:38:48.000Z" - }, - "events": [ - { - "uuid": "92123079-fd89-4398-97d0-ff3d5503abac", - "start": { - "$date": "2020-12-26T04:04:56.000Z" - }, - "end": { - "$date": "2020-12-26T07:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "a755bcb1-eaf0-439e-be79-c0fab2742b5e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-26T04:05:02.000Z" - }, - "end": { - "$date": "2020-12-26T07:37:48.000Z" - }, - "events": [ - { - "uuid": "bdc4b4ba-b6e4-4e73-b692-14b67f4e7322", - "start": { - "$date": "2020-12-26T04:05:02.000Z" - }, - "end": { - "$date": "2020-12-26T07:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "e51845a8-09ff-4e9f-b99a-635c19fe9819", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T04:05:21.000Z" - }, - "end": { - "$date": "2020-12-26T07:41:53.000Z" - }, - "events": [ - { - "uuid": "170db16e-0bc2-4b16-be14-16823c56a812", - "start": { - "$date": "2020-12-26T04:05:21.000Z" - }, - "end": { - "$date": "2020-12-26T07:41:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "54a84fbc-fc30-434b-bbe2-1147d24a9e38", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T04:07:15.000Z" - }, - "end": { - "$date": "2020-12-26T05:14:23.000Z" - }, - "events": [ - { - "uuid": "5b6b4379-72a2-4673-999e-226a9ccd0255", - "start": { - "$date": "2020-12-26T04:07:15.000Z" - }, - "end": { - "$date": "2020-12-26T05:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "78881baa-a300-4a44-92bc-8a3a318c2a57", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-26T04:09:11.000Z" - }, - "end": { - "$date": "2020-12-26T05:44:36.000Z" - }, - "events": [ - { - "uuid": "f91b02b8-d7f6-49e6-8f69-8deeb3400054", - "start": { - "$date": "2020-12-26T04:09:11.000Z" - }, - "end": { - "$date": "2020-12-26T05:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "a47bae8c-5591-4851-804a-5105eb79276f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-26T05:39:16.000Z" - }, - "end": { - "$date": "2020-12-26T07:38:57.000Z" - }, - "events": [ - { - "uuid": "caf48868-66d6-4e14-bbd9-8d637cef6a07", - "start": { - "$date": "2020-12-26T05:39:16.000Z" - }, - "end": { - "$date": "2020-12-26T07:38:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "a2fc905c-1abd-4c7e-bf96-25b0d2bb91d8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-26T05:44:45.000Z" - }, - "end": { - "$date": "2020-12-26T07:38:25.000Z" - }, - "events": [ - { - "uuid": "91dec86a-2c47-4784-9551-d1bdba4e7047", - "start": { - "$date": "2020-12-26T05:44:45.000Z" - }, - "end": { - "$date": "2020-12-26T07:38:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ceeb5bef-5093-420e-a66d-38887e3dbd5a", - "uuid": "3c048a6c-f470-4e66-aa30-6b28537468a6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-26T05:47:03.000Z" - }, - "end": { - "$date": "2020-12-26T06:45:53.000Z" - }, - "events": [ - { - "uuid": "d3f9edb7-9b9e-4a84-875a-b784ac8aae4c", - "start": { - "$date": "2020-12-26T05:47:03.000Z" - }, - "end": { - "$date": "2020-12-26T06:45:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "631752c2-ab4d-4df9-8085-bca7113acf07", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T06:04:35.000Z" - }, - "end": { - "$date": "2020-12-26T06:44:17.000Z" - }, - "events": [ - { - "uuid": "e784a03b-9059-4a86-818e-9af4ca0fa286", - "start": { - "$date": "2020-12-26T06:04:35.000Z" - }, - "end": { - "$date": "2020-12-26T06:44:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7651ee98-cc14-47d7-ada9-d84f4da27328", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-26T06:00:33.000Z" - }, - "end": { - "$date": "2020-12-26T07:40:03.000Z" - }, - "events": [ - { - "uuid": "1e1ddfbd-1f39-4f72-9609-4dc14b20118d", - "start": { - "$date": "2020-12-26T06:00:33.000Z" - }, - "end": { - "$date": "2020-12-26T07:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd5b1d4e-4091-4267-9637-6ae3583f1560", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T07:04:14.000Z" - }, - "end": { - "$date": "2020-12-26T07:29:29.000Z" - }, - "events": [ - { - "uuid": "d8810114-b729-4927-9266-fd4b78419560", - "start": { - "$date": "2020-12-26T07:04:14.000Z" - }, - "end": { - "$date": "2020-12-26T07:17:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df4d08f8-08ca-44cc-9270-92a98a82561a", - "start": { - "$date": "2020-12-26T07:17:14.000Z" - }, - "end": { - "$date": "2020-12-26T07:19:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "81eac80a-3192-43cf-9611-93727a0335dd", - "start": { - "$date": "2020-12-26T07:19:14.000Z" - }, - "end": { - "$date": "2020-12-26T07:29:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ada56241-e448-4eeb-9cda-82b77cb8485b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T08:06:52.000Z" - }, - "end": { - "$date": "2020-12-26T08:06:52.000Z" - }, - "events": [ - { - "uuid": "13ea5497-2cd9-4bfa-b67c-a54d427c9697", - "start": { - "$date": "2020-12-26T08:06:52.000Z" - }, - "end": { - "$date": "2020-12-26T08:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "c3d8874d-7fff-4d66-bf4d-d0af21a617b0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-26T08:20:17.000Z" - }, - "end": { - "$date": "2020-12-26T13:48:57.000Z" - }, - "events": [ - { - "uuid": "47f7a80f-7c47-46b9-931b-8cbe6acab011", - "start": { - "$date": "2020-12-26T08:20:17.000Z" - }, - "end": { - "$date": "2020-12-26T13:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee82600c-3c63-41ea-b046-39b7f992f494", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T15:29:42.000Z" - }, - "end": { - "$date": "2020-12-26T16:14:26.000Z" - }, - "events": [ - { - "uuid": "1bfaaf10-6e54-4edd-b55e-bf459ff8e06a", - "start": { - "$date": "2020-12-26T15:29:42.000Z" - }, - "end": { - "$date": "2020-12-26T16:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ceeb5bef-5093-420e-a66d-38887e3dbd5a", - "uuid": "dad9dbd5-66c9-4f8e-96df-39abbd8e3239", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-26T16:11:27.000Z" - }, - "end": { - "$date": "2020-12-26T17:09:57.000Z" - }, - "events": [ - { - "uuid": "dc3a356e-7bfa-421c-bb0a-5bb33cff952b", - "start": { - "$date": "2020-12-26T16:11:27.000Z" - }, - "end": { - "$date": "2020-12-26T17:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "f786bc44-3311-4fa7-aa40-669735510532", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T16:50:12.000Z" - }, - "end": { - "$date": "2020-12-26T17:57:42.000Z" - }, - "events": [ - { - "uuid": "b49b9dfb-e326-4eaf-8ee7-e488722d4090", - "start": { - "$date": "2020-12-26T16:50:12.000Z" - }, - "end": { - "$date": "2020-12-26T17:55:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b774ed44-68ca-432d-9280-dfd2b2038dcc", - "start": { - "$date": "2020-12-26T17:55:12.000Z" - }, - "end": { - "$date": "2020-12-26T17:57:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8b6875f3-c326-4738-8d0b-6b3f366a97d0", - "uuid": "54a45dbe-8530-4e40-a566-36778863c634", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T17:03:19.000Z" - }, - "end": { - "$date": "2020-12-26T17:49:33.000Z" - }, - "events": [ - { - "uuid": "81977f8e-13dd-4c10-9a5b-9321b0a3747d", - "start": { - "$date": "2020-12-26T17:03:19.000Z" - }, - "end": { - "$date": "2020-12-26T17:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cba24caa-d70d-4089-81fe-e70bc6cc8646", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T18:03:08.000Z" - }, - "end": { - "$date": "2020-12-26T19:54:05.000Z" - }, - "events": [ - { - "uuid": "4b454861-7c8c-4160-9c03-b87c0fc603ab", - "start": { - "$date": "2020-12-26T18:03:08.000Z" - }, - "end": { - "$date": "2020-12-26T19:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8cfc43c1-15ca-427d-b6db-edfcaadd9573", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-26T18:08:28.000Z" - }, - "end": { - "$date": "2020-12-26T19:54:00.000Z" - }, - "events": [ - { - "uuid": "ba0176a3-be47-4aac-88d1-c01103cfd116", - "start": { - "$date": "2020-12-26T18:08:28.000Z" - }, - "end": { - "$date": "2020-12-26T19:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "854fbe2d-1519-474e-a304-2aed6f78b36b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-26T18:50:41.000Z" - }, - "end": { - "$date": "2020-12-26T19:44:26.000Z" - }, - "events": [ - { - "uuid": "2f4e7d19-eb99-4782-8404-9013f00d7242", - "start": { - "$date": "2020-12-26T18:50:41.000Z" - }, - "end": { - "$date": "2020-12-26T19:30:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe46f4c1-8ad1-4e9f-b007-9afbf2fb33c3", - "start": { - "$date": "2020-12-26T19:30:41.000Z" - }, - "end": { - "$date": "2020-12-26T19:35:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "30a5ae19-a107-42d5-9d2a-a7d1ebd17f33", - "start": { - "$date": "2020-12-26T19:35:41.000Z" - }, - "end": { - "$date": "2020-12-26T19:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "79595ce3-17b6-4a09-87fb-61feb4d16540", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-26T19:57:46.000Z" - }, - "end": { - "$date": "2020-12-26T20:58:50.000Z" - }, - "events": [ - { - "uuid": "b4d12e62-f94f-4e6a-b5fb-8a5331b3b47a", - "start": { - "$date": "2020-12-26T19:57:46.000Z" - }, - "end": { - "$date": "2020-12-26T20:38:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37f23620-0be8-4180-aa55-a5192ca92fdb", - "start": { - "$date": "2020-12-26T20:38:46.000Z" - }, - "end": { - "$date": "2020-12-26T20:43:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "08b59578-8a2f-4410-b40e-3358910b70d2", - "start": { - "$date": "2020-12-26T20:43:46.000Z" - }, - "end": { - "$date": "2020-12-26T20:53:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4e59b1e2-9303-4bf0-a75d-748ef5c106c0", - "start": { - "$date": "2020-12-26T20:53:46.000Z" - }, - "end": { - "$date": "2020-12-26T20:56:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b507bc5-9250-4c5d-bb74-3d5b94ff8ac6", - "start": { - "$date": "2020-12-26T20:56:46.000Z" - }, - "end": { - "$date": "2020-12-26T20:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e4d3f33-1fb2-4796-8175-a236a8be8e19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T21:00:03.000Z" - }, - "end": { - "$date": "2020-12-26T21:24:01.000Z" - }, - "events": [ - { - "uuid": "901c4360-df28-4869-b867-5e72a1aad1c6", - "start": { - "$date": "2020-12-26T21:00:03.000Z" - }, - "end": { - "$date": "2020-12-26T21:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01c3911e-0bd2-437b-be7f-fa26dd136c1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T20:49:07.000Z" - }, - "end": { - "$date": "2020-12-26T20:49:12.000Z" - }, - "events": [ - { - "uuid": "20fbb6e0-14da-418a-b2bf-a3bd7e4adc43", - "start": { - "$date": "2020-12-26T20:49:07.000Z" - }, - "end": { - "$date": "2020-12-26T20:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c49a4e3-954b-449b-bd8a-3dc760eb585d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T20:55:18.000Z" - }, - "end": { - "$date": "2020-12-26T20:55:34.000Z" - }, - "events": [ - { - "uuid": "69c469c2-d568-45ab-9bf4-fc2de527f593", - "start": { - "$date": "2020-12-26T20:55:18.000Z" - }, - "end": { - "$date": "2020-12-26T20:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55db0993-e988-458d-bc11-2b69c52beabd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T21:03:40.000Z" - }, - "end": { - "$date": "2020-12-26T21:23:55.000Z" - }, - "events": [ - { - "uuid": "3974678e-e4fa-4585-89a3-b3f7fcf99e81", - "start": { - "$date": "2020-12-26T21:03:40.000Z" - }, - "end": { - "$date": "2020-12-26T21:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d037f753-fdb5-4074-a139-346f5fc38034", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T20:51:47.000Z" - }, - "end": { - "$date": "2020-12-26T21:47:45.000Z" - }, - "events": [ - { - "uuid": "00bcb345-6133-4cc9-890a-de668b744863", - "start": { - "$date": "2020-12-26T20:51:47.000Z" - }, - "end": { - "$date": "2020-12-26T21:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e4097f6-ae45-4fc1-8400-85847a416043", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T21:00:02.000Z" - }, - "end": { - "$date": "2020-12-26T21:23:53.000Z" - }, - "events": [ - { - "uuid": "1561dd1c-af1e-4f5b-a108-02217249a1a3", - "start": { - "$date": "2020-12-26T21:00:02.000Z" - }, - "end": { - "$date": "2020-12-26T21:23:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9edbd724-e423-45d1-9a37-56fa6683b675", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T21:27:30.000Z" - }, - "end": { - "$date": "2020-12-26T22:05:05.000Z" - }, - "events": [ - { - "uuid": "ae5b3025-29eb-4111-b4de-0732a5b9b79c", - "start": { - "$date": "2020-12-26T21:27:30.000Z" - }, - "end": { - "$date": "2020-12-26T22:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87cc3c9b-18b1-4c84-aa99-ba9e26068468", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T22:01:08.000Z" - }, - "end": { - "$date": "2020-12-26T22:05:06.000Z" - }, - "events": [ - { - "uuid": "26b6b991-4fcc-4b93-b007-e5b5bbb97a32", - "start": { - "$date": "2020-12-26T22:01:08.000Z" - }, - "end": { - "$date": "2020-12-26T22:05:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6b75113-1218-4a31-9b03-5330e6ef3824", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T21:27:26.000Z" - }, - "end": { - "$date": "2020-12-26T22:04:56.000Z" - }, - "events": [ - { - "uuid": "19861556-87aa-479e-8da2-a1e686a22aa5", - "start": { - "$date": "2020-12-26T21:27:26.000Z" - }, - "end": { - "$date": "2020-12-26T22:04:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3a4b5a7e-1d11-4c4d-9e48-a85c01a8874e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-26T21:42:28.000Z" - }, - "end": { - "$date": "2020-12-27T00:13:04.000Z" - }, - "events": [ - { - "uuid": "5fcb1fc1-8eac-4c21-ace3-3f0a7c2abe3a", - "start": { - "$date": "2020-12-26T21:42:28.000Z" - }, - "end": { - "$date": "2020-12-27T00:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a66d16d-5926-4744-85df-f9609d96d058", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T22:14:46.000Z" - }, - "end": { - "$date": "2020-12-26T22:49:39.000Z" - }, - "events": [ - { - "uuid": "83871c65-4d9d-4bb6-8f82-2de64ef183fc", - "start": { - "$date": "2020-12-26T22:14:46.000Z" - }, - "end": { - "$date": "2020-12-26T22:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd749f8b-aef4-4653-83be-47a45522638b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T22:14:43.000Z" - }, - "end": { - "$date": "2020-12-26T22:49:33.000Z" - }, - "events": [ - { - "uuid": "e312e469-78a4-4913-b4cc-b67c52239c7f", - "start": { - "$date": "2020-12-26T22:14:43.000Z" - }, - "end": { - "$date": "2020-12-26T22:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bcbccfc-1329-43ef-8ce0-c97b77106dc2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T22:14:45.000Z" - }, - "end": { - "$date": "2020-12-26T22:49:41.000Z" - }, - "events": [ - { - "uuid": "b0c1c2a3-9649-4f52-9247-3b9b7341d529", - "start": { - "$date": "2020-12-26T22:14:45.000Z" - }, - "end": { - "$date": "2020-12-26T22:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "e9f2cf08-6c81-4ebf-9051-ec12900934dd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-26T22:22:14.000Z" - }, - "end": { - "$date": "2020-12-26T23:14:55.000Z" - }, - "events": [ - { - "uuid": "45f47a62-f123-423f-8105-c6cfb60dc339", - "start": { - "$date": "2020-12-26T22:22:14.000Z" - }, - "end": { - "$date": "2020-12-26T23:14:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "305a1fe8-e3ad-4390-8f63-af02584e49d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T22:57:29.000Z" - }, - "end": { - "$date": "2020-12-26T23:45:58.000Z" - }, - "events": [ - { - "uuid": "96fd731e-703a-4526-95f1-11cbe9de53a9", - "start": { - "$date": "2020-12-26T22:57:29.000Z" - }, - "end": { - "$date": "2020-12-26T23:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a58e9f5f-3de6-42c5-835e-254b708d4a92", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T22:57:29.000Z" - }, - "end": { - "$date": "2020-12-26T23:45:54.000Z" - }, - "events": [ - { - "uuid": "3dbfb9dc-e723-4e72-b420-2930ec422e4d", - "start": { - "$date": "2020-12-26T22:57:29.000Z" - }, - "end": { - "$date": "2020-12-26T23:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c0577e0-7c29-4414-8798-ed935dade166", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T22:57:26.000Z" - }, - "end": { - "$date": "2020-12-26T23:45:49.000Z" - }, - "events": [ - { - "uuid": "74f45e82-c9be-4702-80c1-be1fafbedabd", - "start": { - "$date": "2020-12-26T22:57:26.000Z" - }, - "end": { - "$date": "2020-12-26T23:45:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "801ee48b-aa1c-4b85-b28a-6d72c9bcefc5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-26T23:36:39.000Z" - }, - "end": { - "$date": "2020-12-27T00:47:51.000Z" - }, - "events": [ - { - "uuid": "467ef359-93a7-4832-8db2-b3331bb1f9c8", - "start": { - "$date": "2020-12-26T23:36:39.000Z" - }, - "end": { - "$date": "2020-12-27T00:47:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6057f007-105f-4595-836a-b5d733e8f5a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-26T23:56:42.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:18.000Z" - }, - "events": [ - { - "uuid": "696b4dff-67a9-443c-9587-d3d43ea43063", - "start": { - "$date": "2020-12-26T23:56:42.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b8096ff9-7a6d-4d62-8d9d-014b411a365a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-26T23:47:29.000Z" - }, - "end": { - "$date": "2020-12-27T00:26:47.000Z" - }, - "events": [ - { - "uuid": "1b65480a-446c-4eea-9ba0-5f449c736b8b", - "start": { - "$date": "2020-12-26T23:47:29.000Z" - }, - "end": { - "$date": "2020-12-27T00:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "492189eb-b36b-4ad2-b9e0-bfa91dbf12ae", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T23:47:50.000Z" - }, - "end": { - "$date": "2020-12-26T23:54:09.000Z" - }, - "events": [ - { - "uuid": "5df5c0f8-8a2b-4fdf-a091-13c141fc2573", - "start": { - "$date": "2020-12-26T23:47:50.000Z" - }, - "end": { - "$date": "2020-12-26T23:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f861958-45f8-471a-aea9-02baed30e655", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-26T23:57:15.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:20.000Z" - }, - "events": [ - { - "uuid": "93865325-03b3-4138-8361-dbfcf8bd33d3", - "start": { - "$date": "2020-12-26T23:57:15.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e587d7e-686f-408c-a200-90610bcad6a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-26T23:56:45.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:22.000Z" - }, - "events": [ - { - "uuid": "4b3aac74-1074-40cc-add1-7c977c8526a5", - "start": { - "$date": "2020-12-26T23:56:45.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfa34103-6d80-43d2-95d1-c825e8e8cdc8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-26T23:56:43.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:26.000Z" - }, - "events": [ - { - "uuid": "2e75d44d-0243-449a-aaa3-3252b5f4eed1", - "start": { - "$date": "2020-12-26T23:56:43.000Z" - }, - "end": { - "$date": "2020-12-27T00:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "04037c50-2da0-442c-b49a-85eef92ec55f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-27T00:14:39.000Z" - }, - "end": { - "$date": "2020-12-27T00:20:10.000Z" - }, - "events": [ - { - "uuid": "38a8332d-1dd7-4aa1-b74b-8d3ccff8797b", - "start": { - "$date": "2020-12-27T00:14:39.000Z" - }, - "end": { - "$date": "2020-12-27T00:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdb14532-9bd2-4e37-a686-bc2c04f01648", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T00:41:44.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:34.000Z" - }, - "events": [ - { - "uuid": "5d527755-7c32-4984-9938-02d603523ecc", - "start": { - "$date": "2020-12-27T00:41:44.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b79eeb59-6aee-423a-aae4-4f69c85d95db", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T00:41:46.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:26.000Z" - }, - "events": [ - { - "uuid": "521a8b95-83b7-4483-b297-e10581de86d3", - "start": { - "$date": "2020-12-27T00:41:46.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8da2cf5e-d2e5-410e-bd3f-90fa1edbc7ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T00:42:16.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:27.000Z" - }, - "events": [ - { - "uuid": "0afa61b7-dcbf-4fcf-9c85-46de17e9e0b6", - "start": { - "$date": "2020-12-27T00:42:16.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ab48d85-9008-4a35-b673-b2785c0da82e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T00:41:45.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:34.000Z" - }, - "events": [ - { - "uuid": "e5c2414c-8dab-4d8f-bab2-7b2d86688cbd", - "start": { - "$date": "2020-12-27T00:41:45.000Z" - }, - "end": { - "$date": "2020-12-27T01:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1ac6805-430e-4b70-865d-9fe0407281ab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T01:06:36.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:27.000Z" - }, - "events": [ - { - "uuid": "43e9c9a8-0ad8-4ace-8673-4f3770595df4", - "start": { - "$date": "2020-12-27T01:06:36.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8339e891-ae0c-41e0-a9ea-c9ad6110293e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T01:06:37.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:22.000Z" - }, - "events": [ - { - "uuid": "e2bea772-ab81-42fa-8441-95a597656e85", - "start": { - "$date": "2020-12-27T01:06:37.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6b578da-d145-4fec-a244-22ff17bb416b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T01:07:31.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:23.000Z" - }, - "events": [ - { - "uuid": "222868aa-a5f5-4666-ba6c-4d42e4416f19", - "start": { - "$date": "2020-12-27T01:07:31.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5bebe62-57c9-4757-8527-b9097495b91c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T01:07:41.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:24.000Z" - }, - "events": [ - { - "uuid": "e058cea9-546d-416c-82ae-27bd02483aca", - "start": { - "$date": "2020-12-27T01:07:41.000Z" - }, - "end": { - "$date": "2020-12-27T01:27:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c10a7a4-49df-4c99-b478-3cb1fa55d3e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T01:28:09.000Z" - }, - "end": { - "$date": "2020-12-27T01:29:51.000Z" - }, - "events": [ - { - "uuid": "c5bd3c7a-201f-4824-803d-8622cf39c91b", - "start": { - "$date": "2020-12-27T01:28:09.000Z" - }, - "end": { - "$date": "2020-12-27T01:29:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0397e804-928e-4b77-9702-4e5c5021fac9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T02:48:50.000Z" - }, - "end": { - "$date": "2020-12-27T03:21:24.000Z" - }, - "events": [ - { - "uuid": "8d14ec09-7188-4fdb-bd0d-8fcf2a959ad4", - "start": { - "$date": "2020-12-27T02:48:50.000Z" - }, - "end": { - "$date": "2020-12-27T03:02:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7aec61e-5c3d-4ea1-b8f6-8c7f37f1e707", - "start": { - "$date": "2020-12-27T03:02:50.000Z" - }, - "end": { - "$date": "2020-12-27T03:14:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e76f42f-7abe-42f1-9b1a-8c297aa5b3ff", - "start": { - "$date": "2020-12-27T03:14:50.000Z" - }, - "end": { - "$date": "2020-12-27T03:24:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a55e178-4f53-499e-93f5-f2bad376155b", - "start": { - "$date": "2020-12-27T03:24:50.000Z" - }, - "end": { - "$date": "2020-12-27T03:26:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7a11bf0-beea-442c-8708-9bdcdc690571", - "start": { - "$date": "2020-12-27T03:26:50.000Z" - }, - "end": { - "$date": "2020-12-27T03:21:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "3369e202-2552-484f-94e2-08645301915c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-27T01:33:58.000Z" - }, - "end": { - "$date": "2020-12-27T02:17:22.000Z" - }, - "events": [ - { - "uuid": "30291af6-bfa6-496a-8857-f519e1c003a4", - "start": { - "$date": "2020-12-27T01:33:58.000Z" - }, - "end": { - "$date": "2020-12-27T02:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "2c56e4d5-056a-4fe7-a6c1-be527b635988", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-27T02:15:47.000Z" - }, - "end": { - "$date": "2020-12-27T14:51:26.000Z" - }, - "events": [ - { - "uuid": "5e2ea362-ac5a-4a61-8a7a-341f5665558f", - "start": { - "$date": "2020-12-27T02:15:47.000Z" - }, - "end": { - "$date": "2020-12-27T14:51:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b4e6d5b8-46be-484d-a769-5ef694603f64", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T02:34:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:47:56.000Z" - }, - "events": [ - { - "uuid": "80ae63e1-d1bd-423b-a4c5-09b63f75db81", - "start": { - "$date": "2020-12-27T02:34:25.000Z" - }, - "end": { - "$date": "2020-12-27T02:49:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7d36c440-01b1-47ad-b1f9-ad5559ec0177", - "start": { - "$date": "2020-12-27T02:49:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:01:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18029cef-442f-41e0-9ce1-219a3c785d62", - "start": { - "$date": "2020-12-27T03:01:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:03:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8cf9ed8a-454d-4abc-9a8c-86dac0f507c0", - "start": { - "$date": "2020-12-27T03:03:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:11:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d9be826-6324-45a4-a418-09682b78cb8b", - "start": { - "$date": "2020-12-27T03:11:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:13:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7d9c07c7-e7e1-4482-84c9-f54c90653409", - "start": { - "$date": "2020-12-27T03:13:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:18:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ddf3ffd8-7f3e-4203-9b27-f7791511f893", - "start": { - "$date": "2020-12-27T03:18:25.000Z" - }, - "end": { - "$date": "2020-12-27T03:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2231d643-99ae-424e-85f0-489e572d57fd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-27T02:41:08.000Z" - }, - "end": { - "$date": "2020-12-27T06:35:08.000Z" - }, - "events": [ - { - "uuid": "a8571246-026b-4b88-9e55-9309884da497", - "start": { - "$date": "2020-12-27T02:41:08.000Z" - }, - "end": { - "$date": "2020-12-27T06:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ac055d2-d198-451c-86a7-cb96c4c27285", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T03:59:34.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:50.000Z" - }, - "events": [ - { - "uuid": "2b73467b-f6f8-439c-9c92-1ce698aa1a0a", - "start": { - "$date": "2020-12-27T03:59:34.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba40949f-534e-458b-9d50-bb68e6d431e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T04:00:12.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:43.000Z" - }, - "events": [ - { - "uuid": "ace5703c-98bc-4ec1-a755-dbda804d1fc7", - "start": { - "$date": "2020-12-27T04:00:12.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bdbeb23-4de0-4f66-bc0c-40f0c6c3cb87", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T04:00:21.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:43.000Z" - }, - "events": [ - { - "uuid": "81dd7150-c12a-448e-97b1-7cfa7d49fd2d", - "start": { - "$date": "2020-12-27T04:00:21.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bc184dc-bb5d-43f9-8729-0c82059b41ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T03:59:41.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:48.000Z" - }, - "events": [ - { - "uuid": "932ac4cd-1bac-487a-8894-0683cf66d07f", - "start": { - "$date": "2020-12-27T03:59:41.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d98b6ee-b047-4961-9a34-7ae837f1345f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T03:57:21.000Z" - }, - "end": { - "$date": "2020-12-27T03:59:28.000Z" - }, - "events": [ - { - "uuid": "883f0c72-140c-40a4-b584-3f5dc335ef54", - "start": { - "$date": "2020-12-27T03:57:21.000Z" - }, - "end": { - "$date": "2020-12-27T03:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6efdbe09-c11b-4b70-8873-1a0b3d01e007", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-27T03:59:21.000Z" - }, - "end": { - "$date": "2020-12-27T05:31:37.000Z" - }, - "events": [ - { - "uuid": "c1e1a481-5b00-47b7-b011-57037f43b247", - "start": { - "$date": "2020-12-27T03:59:21.000Z" - }, - "end": { - "$date": "2020-12-27T05:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90bd597a-ac60-4d9b-8c20-85732d3baaa0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T04:00:48.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:45.000Z" - }, - "events": [ - { - "uuid": "c5e46d41-d4b7-4164-8ae6-fcc80aa480ad", - "start": { - "$date": "2020-12-27T04:00:48.000Z" - }, - "end": { - "$date": "2020-12-27T04:19:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46038253-9493-4079-b702-d4ad98c37cfa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T04:23:30.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:50.000Z" - }, - "events": [ - { - "uuid": "9af7caf5-592c-47d6-b2bb-ea5652cf4734", - "start": { - "$date": "2020-12-27T04:23:30.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "825237b2-24d7-40a3-8693-0b5878bb4121", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T04:24:22.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:19.000Z" - }, - "events": [ - { - "uuid": "0ec72ea3-3890-43cb-b45a-d69e1764dfc4", - "start": { - "$date": "2020-12-27T04:24:22.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e07cebfb-c393-4648-856c-5901bbde7c37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T04:23:33.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:22.000Z" - }, - "events": [ - { - "uuid": "d2614c71-eb68-4a8c-8261-7fd75d1b83f8", - "start": { - "$date": "2020-12-27T04:23:33.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "282363cc-a32b-430b-b54f-d0aef08044b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T04:23:28.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:19.000Z" - }, - "events": [ - { - "uuid": "f2ad11d8-f9a2-4eea-a9fb-48ba939231d0", - "start": { - "$date": "2020-12-27T04:23:28.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e625c2c-3ce2-47ec-9271-3a354cd0995d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T04:23:34.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:26.000Z" - }, - "events": [ - { - "uuid": "4e3f20f2-ace3-495c-88ec-30ecfd4e3dc6", - "start": { - "$date": "2020-12-27T04:23:34.000Z" - }, - "end": { - "$date": "2020-12-27T04:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71187ff6-168e-47dc-bb08-84f6d964b767", - "uuid": "94eab43b-db11-40b5-9c6d-98a6525a0e08", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-27T04:42:07.000Z" - }, - "end": { - "$date": "2020-12-27T07:16:04.000Z" - }, - "events": [ - { - "uuid": "5584f8fe-2a16-448f-babf-b757e144ebe5", - "start": { - "$date": "2020-12-27T04:42:07.000Z" - }, - "end": { - "$date": "2020-12-27T07:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ccf362bf-0807-404e-88b9-c724a59781d1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T04:49:57.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:25.000Z" - }, - "events": [ - { - "uuid": "8c6dfb27-57cd-4445-a9c9-c3a218c5c549", - "start": { - "$date": "2020-12-27T04:49:57.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fb03e79-3f50-4e6a-9b1a-ee5eae9498e6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T04:49:55.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:20.000Z" - }, - "events": [ - { - "uuid": "d6817220-4640-4bab-acdc-799f67791662", - "start": { - "$date": "2020-12-27T04:49:55.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac1929b9-fc35-4cd9-b6e8-eacb7265b0a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T04:51:03.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:19.000Z" - }, - "events": [ - { - "uuid": "fac2e4df-952e-4c65-8806-529e051ace2f", - "start": { - "$date": "2020-12-27T04:51:03.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e852ad38-5c5b-404a-88fb-081527c0ad3c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T04:50:01.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:18.000Z" - }, - "events": [ - { - "uuid": "79f78494-bbae-49ac-8c3e-905d429a3a79", - "start": { - "$date": "2020-12-27T04:50:01.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffaecfd2-7837-4a04-ae30-d691e5f7e9e0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T04:50:04.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:18.000Z" - }, - "events": [ - { - "uuid": "ee58224c-c79d-479b-968e-d133178f6ea9", - "start": { - "$date": "2020-12-27T04:50:04.000Z" - }, - "end": { - "$date": "2020-12-27T05:09:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a54e0e9-b321-4a2b-a0fc-d7316992297b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T05:13:34.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:17.000Z" - }, - "events": [ - { - "uuid": "34f03f6f-ae20-4de1-9d90-fcb0785385b0", - "start": { - "$date": "2020-12-27T05:13:34.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad80a8a2-0afc-4f7f-87cd-234c63fa65f4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T05:13:36.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:17.000Z" - }, - "events": [ - { - "uuid": "60ec4db3-12bd-4a6b-8b67-c29aef584be8", - "start": { - "$date": "2020-12-27T05:13:36.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1948049e-ff73-4933-a51d-7e8b34586e54", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T05:13:48.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:14.000Z" - }, - "events": [ - { - "uuid": "93e044e2-7459-4b63-ac24-3b6096fe4ca4", - "start": { - "$date": "2020-12-27T05:13:48.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b65c37d-1266-4f06-8a0b-d280cf3db634", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T05:14:28.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:15.000Z" - }, - "events": [ - { - "uuid": "da5e6f2a-c857-4c9a-b983-306387321b6b", - "start": { - "$date": "2020-12-27T05:14:28.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c7acd17-8057-484a-8952-e1f1ff3f7367", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T05:13:41.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:22.000Z" - }, - "events": [ - { - "uuid": "bf8e6d80-2e84-4489-9679-b2510d13fa09", - "start": { - "$date": "2020-12-27T05:13:41.000Z" - }, - "end": { - "$date": "2020-12-27T05:29:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71973968-3507-4062-ad2d-657be2bcd4a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T05:35:56.000Z" - }, - "end": { - "$date": "2020-12-27T05:48:58.000Z" - }, - "events": [ - { - "uuid": "1d417ba2-7cf9-4dee-a3e0-a4718a831024", - "start": { - "$date": "2020-12-27T05:35:56.000Z" - }, - "end": { - "$date": "2020-12-27T05:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15e5b9ca-112a-4977-8a81-7261b4c292fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T05:35:58.000Z" - }, - "end": { - "$date": "2020-12-27T05:48:53.000Z" - }, - "events": [ - { - "uuid": "60d1a27d-9cc9-42d9-a1ee-0ad25a0d7ab9", - "start": { - "$date": "2020-12-27T05:35:58.000Z" - }, - "end": { - "$date": "2020-12-27T05:48:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73e0a49b-393d-4fe2-acc0-cdcfc0783563", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T05:36:05.000Z" - }, - "end": { - "$date": "2020-12-27T05:49:01.000Z" - }, - "events": [ - { - "uuid": "e99f3310-8651-494e-808f-1c7511abd6e2", - "start": { - "$date": "2020-12-27T05:36:05.000Z" - }, - "end": { - "$date": "2020-12-27T05:49:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d35b083-2ebd-4902-a351-c6a4ca22369f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T05:36:02.000Z" - }, - "end": { - "$date": "2020-12-27T05:48:56.000Z" - }, - "events": [ - { - "uuid": "a50e6d51-8879-47f9-9383-9bdd62aad8bd", - "start": { - "$date": "2020-12-27T05:36:02.000Z" - }, - "end": { - "$date": "2020-12-27T05:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "364be0c1-22af-4d7d-9b1b-6f27e391255b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T05:53:24.000Z" - }, - "end": { - "$date": "2020-12-27T06:13:30.000Z" - }, - "events": [ - { - "uuid": "da752e21-0028-41b7-89ce-b1f3a863e8a2", - "start": { - "$date": "2020-12-27T05:53:24.000Z" - }, - "end": { - "$date": "2020-12-27T06:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "029abb12-fd83-4e38-b690-098a3635116b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T05:53:31.000Z" - }, - "end": { - "$date": "2020-12-27T06:13:33.000Z" - }, - "events": [ - { - "uuid": "8ae4d3d9-3d05-4bda-9771-43bcc2959919", - "start": { - "$date": "2020-12-27T05:53:31.000Z" - }, - "end": { - "$date": "2020-12-27T06:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "475fb92f-b132-41ef-a8f8-3d1732c81236", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T06:13:36.000Z" - }, - "end": { - "$date": "2020-12-27T06:14:19.000Z" - }, - "events": [ - { - "uuid": "b7fb9819-9016-4153-9fdd-be8f201b5314", - "start": { - "$date": "2020-12-27T06:13:36.000Z" - }, - "end": { - "$date": "2020-12-27T06:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8105af62-500f-4e2a-88c4-eac97b8589db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T06:13:30.000Z" - }, - "end": { - "$date": "2020-12-27T06:13:38.000Z" - }, - "events": [ - { - "uuid": "2963d0ec-8fe2-4958-b6ff-b7b86507639a", - "start": { - "$date": "2020-12-27T06:13:30.000Z" - }, - "end": { - "$date": "2020-12-27T06:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "61ddb572-9a9a-42db-9272-4c227d8f5f08", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-27T06:08:15.000Z" - }, - "end": { - "$date": "2020-12-27T06:09:40.000Z" - }, - "events": [ - { - "uuid": "2d4c7728-357d-4a7e-b0b5-ac2f894f1d70", - "start": { - "$date": "2020-12-27T06:08:15.000Z" - }, - "end": { - "$date": "2020-12-27T06:09:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9e125445-9fc2-458a-86c1-3b31a9df63a8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-27T06:09:18.000Z" - }, - "end": { - "$date": "2020-12-27T06:39:31.000Z" - }, - "events": [ - { - "uuid": "aa81a604-a4ae-44b0-b40a-7177d57c547f", - "start": { - "$date": "2020-12-27T06:09:18.000Z" - }, - "end": { - "$date": "2020-12-27T06:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "d39201d3-f0ed-4f88-81b5-37d90e26adc6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-27T06:09:50.000Z" - }, - "end": { - "$date": "2020-12-27T08:00:27.000Z" - }, - "events": [ - { - "uuid": "de7e40aa-785c-48e8-8693-72013ae70e59", - "start": { - "$date": "2020-12-27T06:09:50.000Z" - }, - "end": { - "$date": "2020-12-27T08:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d805134-b1be-41e9-bcee-a5647a373a47", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T06:21:06.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:32.000Z" - }, - "events": [ - { - "uuid": "e5153150-f993-4141-804b-83df11a139a5", - "start": { - "$date": "2020-12-27T06:21:06.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "592820e5-a512-4cb5-8e64-6671d979ebab", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-27T06:21:15.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:14.000Z" - }, - "events": [ - { - "uuid": "38de392f-b3c9-45c3-9d70-e7f05d084012", - "start": { - "$date": "2020-12-27T06:21:15.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f408b85d-65ca-4383-a2d4-1bbc237a6a79", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T06:21:05.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:11.000Z" - }, - "events": [ - { - "uuid": "1ca06b89-26b2-47c1-b8fc-0d5eba9614d8", - "start": { - "$date": "2020-12-27T06:21:05.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fd8da5b-3244-4da6-9162-b3c342b1954c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T06:21:23.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:14.000Z" - }, - "events": [ - { - "uuid": "aef4f08b-27a1-46c0-bb8f-65eb656c2212", - "start": { - "$date": "2020-12-27T06:21:23.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a17734eb-7cad-4196-a0b3-23737453ba48", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T06:21:11.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:20.000Z" - }, - "events": [ - { - "uuid": "543cb290-34a7-408e-be22-c27bc26fb111", - "start": { - "$date": "2020-12-27T06:21:11.000Z" - }, - "end": { - "$date": "2020-12-27T06:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dbbdd23e-29b0-459f-993e-84c3b7fff31c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-27T06:54:12.000Z" - }, - "end": { - "$date": "2020-12-27T07:21:53.000Z" - }, - "events": [ - { - "uuid": "d0778062-6a55-4ba8-a973-c80e30aee52f", - "start": { - "$date": "2020-12-27T06:54:12.000Z" - }, - "end": { - "$date": "2020-12-27T07:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7045a7a-864d-427e-874e-03ec20104d6b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T07:01:13.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:41.000Z" - }, - "events": [ - { - "uuid": "f08958a2-5b96-41a6-9e4e-93dd0724f6c4", - "start": { - "$date": "2020-12-27T07:01:13.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "351c2249-e84e-4211-9684-edfe0bfe48f6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-27T07:01:16.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:35.000Z" - }, - "events": [ - { - "uuid": "34c6f2c3-7cd7-4ef8-aaa9-9097dba5704e", - "start": { - "$date": "2020-12-27T07:01:16.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5478ffb-89b9-4346-8659-1a8ecda09177", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T07:01:17.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:32.000Z" - }, - "events": [ - { - "uuid": "6be9b4a3-1b54-4231-99e1-ac6ceaf1de54", - "start": { - "$date": "2020-12-27T07:01:17.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52e9dd15-e537-4d27-a5eb-db303a67baa8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T07:36:42.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:40.000Z" - }, - "events": [ - { - "uuid": "7ce8d46d-2b07-4a52-8d36-44196f0f6572", - "start": { - "$date": "2020-12-27T07:36:42.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d94cf94-3ea3-4219-8512-e22f8e911e53", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T07:01:05.000Z" - }, - "end": { - "$date": "2020-12-27T07:03:59.000Z" - }, - "events": [ - { - "uuid": "a8d9c19c-3a47-460e-80fd-43913de59f8c", - "start": { - "$date": "2020-12-27T07:01:05.000Z" - }, - "end": { - "$date": "2020-12-27T07:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15dd1fab-86c4-4981-bec9-c0a02d8e522d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T07:04:05.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:39.000Z" - }, - "events": [ - { - "uuid": "83502a0b-e031-4229-a6fe-78f85c98f666", - "start": { - "$date": "2020-12-27T07:04:05.000Z" - }, - "end": { - "$date": "2020-12-27T07:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5767dc47-bdad-41b4-9fd1-9a4d32df824c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-27T07:22:14.000Z" - }, - "end": { - "$date": "2020-12-27T08:25:48.000Z" - }, - "events": [ - { - "uuid": "6af7dc26-28d1-4b55-877e-e263301cbfff", - "start": { - "$date": "2020-12-27T07:22:14.000Z" - }, - "end": { - "$date": "2020-12-27T08:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4d6f546-6ac8-423e-883e-34b62ed0b02e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T07:38:55.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:57.000Z" - }, - "events": [ - { - "uuid": "9113b5b0-ae07-460a-9659-95d2b16b0a03", - "start": { - "$date": "2020-12-27T07:38:55.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07a8b8a5-c91b-4007-a1ac-5bc75eb7a16d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T07:38:53.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:48.000Z" - }, - "events": [ - { - "uuid": "4c785693-eea5-478c-9c2f-297a72dfeb3e", - "start": { - "$date": "2020-12-27T07:38:53.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23cf7d30-2f7e-42af-a964-0ed4aa069387", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T07:38:59.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:52.000Z" - }, - "events": [ - { - "uuid": "1fd47eb5-0d10-4a40-9935-b60640a39a6d", - "start": { - "$date": "2020-12-27T07:38:59.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74e93eed-8a11-42ae-9360-fc556acf4640", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-27T07:38:57.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:46.000Z" - }, - "events": [ - { - "uuid": "415d4716-b5d0-48a5-81f7-981083ed023e", - "start": { - "$date": "2020-12-27T07:38:57.000Z" - }, - "end": { - "$date": "2020-12-27T07:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5380dac-6549-4d2c-8fb8-990e31f7649d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T07:38:50.000Z" - }, - "end": { - "$date": "2020-12-27T08:00:12.000Z" - }, - "events": [ - { - "uuid": "04982b4c-1a5c-496b-b15e-f0b99c54c52d", - "start": { - "$date": "2020-12-27T07:38:50.000Z" - }, - "end": { - "$date": "2020-12-27T08:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdeb26fd-12f3-4414-9fa3-d3a5e9b824d5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T08:03:47.000Z" - }, - "end": { - "$date": "2020-12-27T08:20:01.000Z" - }, - "events": [ - { - "uuid": "1956f288-6054-4b18-8836-062206fed872", - "start": { - "$date": "2020-12-27T08:03:47.000Z" - }, - "end": { - "$date": "2020-12-27T08:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28ad66ca-ca91-4d66-88bb-0d9a4cf9f47d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-27T08:03:48.000Z" - }, - "end": { - "$date": "2020-12-27T08:19:52.000Z" - }, - "events": [ - { - "uuid": "91bbfc68-a02c-4411-a10d-bff396abcbbf", - "start": { - "$date": "2020-12-27T08:03:48.000Z" - }, - "end": { - "$date": "2020-12-27T08:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4c4f974-97f5-45d4-a179-60d634e3ad9c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T08:03:49.000Z" - }, - "end": { - "$date": "2020-12-27T08:19:49.000Z" - }, - "events": [ - { - "uuid": "8bbca44f-998b-44c3-a903-4c1e0a343287", - "start": { - "$date": "2020-12-27T08:03:49.000Z" - }, - "end": { - "$date": "2020-12-27T08:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23ae2799-a3af-4d63-9392-a2107ff9474b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T08:03:45.000Z" - }, - "end": { - "$date": "2020-12-27T08:19:51.000Z" - }, - "events": [ - { - "uuid": "d3e0a39a-605b-4591-bad7-5085871d93bc", - "start": { - "$date": "2020-12-27T08:03:45.000Z" - }, - "end": { - "$date": "2020-12-27T08:19:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e2d72ba-8eaf-481b-bdbd-95d5e30b3566", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T08:03:50.000Z" - }, - "end": { - "$date": "2020-12-27T08:20:03.000Z" - }, - "events": [ - { - "uuid": "7fcdfe19-6916-4999-bfe9-c27aa88e10f6", - "start": { - "$date": "2020-12-27T08:03:50.000Z" - }, - "end": { - "$date": "2020-12-27T08:20:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffc30e79-1c1e-42cc-b065-1fe0b99f31b4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T08:23:03.000Z" - }, - "end": { - "$date": "2020-12-27T08:34:21.000Z" - }, - "events": [ - { - "uuid": "a22c8dc1-67e5-4f6c-a932-b1c1959c8be8", - "start": { - "$date": "2020-12-27T08:23:03.000Z" - }, - "end": { - "$date": "2020-12-27T08:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f263d95d-1df4-4b4d-9924-59507f7f94d3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-27T08:23:04.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:58.000Z" - }, - "events": [ - { - "uuid": "8cd453fb-75fb-4099-a2f5-584265e98fe7", - "start": { - "$date": "2020-12-27T08:23:04.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fff16733-6b99-43f8-a040-54330d95b6bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T08:23:05.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:55.000Z" - }, - "events": [ - { - "uuid": "ef9af027-3c12-4e79-8902-40d9fb6e66c5", - "start": { - "$date": "2020-12-27T08:23:05.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea6da3d5-c3c0-444f-940e-467588a73011", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T08:23:01.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:51.000Z" - }, - "events": [ - { - "uuid": "d3d54a56-ef81-458e-8ab8-d4cce9e5c80c", - "start": { - "$date": "2020-12-27T08:23:01.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fca38b73-1636-44e6-bded-daf020cc6399", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T08:23:07.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:50.000Z" - }, - "events": [ - { - "uuid": "c5e4dd9c-4f6e-4e9c-9f11-8d5be40cec63", - "start": { - "$date": "2020-12-27T08:23:07.000Z" - }, - "end": { - "$date": "2020-12-27T08:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e345cec-ad62-4772-b03d-2e82a8b52ffc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-27T08:37:35.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:52.000Z" - }, - "events": [ - { - "uuid": "cb97c124-12e3-4fd0-beee-52b41520da80", - "start": { - "$date": "2020-12-27T08:37:35.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e9259bd-d750-4ac6-9750-ae41e561489f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T08:37:36.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:42.000Z" - }, - "events": [ - { - "uuid": "cab93c4b-ad8a-465f-b815-84ae5d5da11e", - "start": { - "$date": "2020-12-27T08:37:36.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f94ebf6-4129-4f7d-9e87-439c2895f323", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T08:37:36.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:41.000Z" - }, - "events": [ - { - "uuid": "22167400-e5b5-4d80-8fc5-2a5c1a840db8", - "start": { - "$date": "2020-12-27T08:37:36.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "baddeef3-adc4-4ce3-91f6-3646df958f4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T08:37:37.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:41.000Z" - }, - "events": [ - { - "uuid": "6e819962-51ec-4113-98ab-6eb64cf7fca4", - "start": { - "$date": "2020-12-27T08:37:37.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e70750eb-59c8-42dd-9a72-908803428035", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-27T08:37:59.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:49.000Z" - }, - "events": [ - { - "uuid": "a356d7c1-b4fc-4dd2-a789-d9e356cc4df9", - "start": { - "$date": "2020-12-27T08:37:59.000Z" - }, - "end": { - "$date": "2020-12-27T08:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "6248e50f-dbf8-40a1-a7f0-d4a656904fb7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T15:59:58.000Z" - }, - "end": { - "$date": "2020-12-27T16:25:36.000Z" - }, - "events": [ - { - "uuid": "d1090193-1dda-433b-aec8-d737cfa85e0e", - "start": { - "$date": "2020-12-27T15:59:58.000Z" - }, - "end": { - "$date": "2020-12-27T16:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6e2ce3fa-2419-454c-8ef2-3e9f83607e66", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-27T17:23:07.000Z" - }, - "end": { - "$date": "2020-12-27T18:22:49.000Z" - }, - "events": [ - { - "uuid": "f4b9c8ea-bf17-4399-b1cb-a5ffab8c05a5", - "start": { - "$date": "2020-12-27T17:23:07.000Z" - }, - "end": { - "$date": "2020-12-27T18:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "eb978ac6-9e93-417f-b298-3daa83a0dada", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T18:13:03.000Z" - }, - "end": { - "$date": "2020-12-27T18:16:45.000Z" - }, - "events": [ - { - "uuid": "34ab168b-fdaa-4de9-a64a-59a20108cbf4", - "start": { - "$date": "2020-12-27T18:13:03.000Z" - }, - "end": { - "$date": "2020-12-27T18:16:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "c5f01269-1185-4daf-83bf-1b00ca502018", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T18:18:44.000Z" - }, - "end": { - "$date": "2020-12-27T18:26:41.000Z" - }, - "events": [ - { - "uuid": "d8795bc2-5b03-4f3d-af2d-84799e751a89", - "start": { - "$date": "2020-12-27T18:18:44.000Z" - }, - "end": { - "$date": "2020-12-27T18:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d03ea2f5-f4b7-45c5-b9d6-1803ce5a4709", - "uuid": "15142baa-c6ce-4228-9050-0e42f2741049", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T18:34:07.000Z" - }, - "end": { - "$date": "2020-12-27T18:47:25.000Z" - }, - "events": [ - { - "uuid": "1713962e-c6fb-4fea-a0d1-44009abb98d7", - "start": { - "$date": "2020-12-27T18:34:07.000Z" - }, - "end": { - "$date": "2020-12-27T18:47:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "b43385f6-67bf-4c02-9ae8-73d9c95263ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T18:42:43.000Z" - }, - "end": { - "$date": "2020-12-27T20:11:56.000Z" - }, - "events": [ - { - "uuid": "9ab5fb62-ce0b-494a-95bf-9f6c0aea7dd1", - "start": { - "$date": "2020-12-27T18:42:43.000Z" - }, - "end": { - "$date": "2020-12-27T18:52:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7b527c6-4b10-4b0e-9447-194e85885174", - "start": { - "$date": "2020-12-27T18:52:43.000Z" - }, - "end": { - "$date": "2020-12-27T19:54:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b2f5b428-0948-43fd-8507-86ead13b4a14", - "start": { - "$date": "2020-12-27T19:54:43.000Z" - }, - "end": { - "$date": "2020-12-27T20:11:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "66a7e6e4-2d52-4947-9334-732f2547a477", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T19:04:18.000Z" - }, - "end": { - "$date": "2020-12-27T19:49:41.000Z" - }, - "events": [ - { - "uuid": "fe501335-5b10-43c7-8151-528589da0d5f", - "start": { - "$date": "2020-12-27T19:04:18.000Z" - }, - "end": { - "$date": "2020-12-27T19:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "cb3a9223-9a5b-443e-a76d-08cd1709e0ae", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-27T19:32:32.000Z" - }, - "end": { - "$date": "2020-12-27T21:24:20.000Z" - }, - "events": [ - { - "uuid": "c3e58884-3ea3-40d9-9303-259f48e9e05f", - "start": { - "$date": "2020-12-27T19:32:32.000Z" - }, - "end": { - "$date": "2020-12-27T20:48:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7d52de61-2769-42e6-984b-8c628b2cbbbe", - "start": { - "$date": "2020-12-27T20:48:32.000Z" - }, - "end": { - "$date": "2020-12-27T21:04:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd355ead-22ae-47a5-bee1-53d5dec95bea", - "start": { - "$date": "2020-12-27T21:04:32.000Z" - }, - "end": { - "$date": "2020-12-27T21:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "cebdf43e-6886-43cf-befd-c999366df75d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T20:05:28.000Z" - }, - "end": { - "$date": "2020-12-27T20:13:30.000Z" - }, - "events": [ - { - "uuid": "7511afe9-7e30-4362-bbf4-b6c5d215a88e", - "start": { - "$date": "2020-12-27T20:05:28.000Z" - }, - "end": { - "$date": "2020-12-27T20:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4368f0c4-600c-4a54-9f23-b8358214a9e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-27T20:10:41.000Z" - }, - "end": { - "$date": "2020-12-27T20:38:09.000Z" - }, - "events": [ - { - "uuid": "9ca93e38-ea93-45af-bee0-bc60614c2549", - "start": { - "$date": "2020-12-27T20:10:41.000Z" - }, - "end": { - "$date": "2020-12-27T20:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1f17e961-a5ca-4cb8-8b28-7f933859b90f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-27T20:28:18.000Z" - }, - "end": { - "$date": "2020-12-27T23:09:34.000Z" - }, - "events": [ - { - "uuid": "6751aae3-9846-4a0a-b4aa-96743e5eead0", - "start": { - "$date": "2020-12-27T20:28:18.000Z" - }, - "end": { - "$date": "2020-12-27T23:09:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "b6431ad3-06a0-4cc4-a67e-29a00d23a32d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T20:35:59.000Z" - }, - "end": { - "$date": "2020-12-27T20:47:33.000Z" - }, - "events": [ - { - "uuid": "e92ebe13-269e-4d11-a129-ffaf49ec469b", - "start": { - "$date": "2020-12-27T20:35:59.000Z" - }, - "end": { - "$date": "2020-12-27T20:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "6ad03602-d90b-49b0-8336-965bbcbc685b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T20:36:00.000Z" - }, - "end": { - "$date": "2020-12-27T22:59:36.000Z" - }, - "events": [ - { - "uuid": "d0838097-7e79-4fb5-a1c7-5eaae768618f", - "start": { - "$date": "2020-12-27T20:36:00.000Z" - }, - "end": { - "$date": "2020-12-27T22:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "8dd65c91-b357-46da-8b8c-6de18f4eb632", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T20:36:26.000Z" - }, - "end": { - "$date": "2020-12-27T21:02:56.000Z" - }, - "events": [ - { - "uuid": "3d8b66fd-91a2-426c-b802-661b76159f9b", - "start": { - "$date": "2020-12-27T20:36:26.000Z" - }, - "end": { - "$date": "2020-12-27T21:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "3163ab32-28c2-4612-bcc5-a29a1dc5b1a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T20:47:41.000Z" - }, - "end": { - "$date": "2020-12-27T20:55:14.000Z" - }, - "events": [ - { - "uuid": "697e66d0-aa41-45ab-8da3-d42596aba798", - "start": { - "$date": "2020-12-27T20:47:41.000Z" - }, - "end": { - "$date": "2020-12-27T20:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "f6bfbee5-bb07-4707-b1e3-e1219b4ddd91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-27T20:55:28.000Z" - }, - "end": { - "$date": "2020-12-27T23:00:37.000Z" - }, - "events": [ - { - "uuid": "d78a046e-af7d-4a4b-b2f4-6dd5a38351ac", - "start": { - "$date": "2020-12-27T20:55:28.000Z" - }, - "end": { - "$date": "2020-12-27T23:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "2801c0ff-e519-43cd-8096-658e519f572f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-27T21:03:28.000Z" - }, - "end": { - "$date": "2020-12-27T22:58:00.000Z" - }, - "events": [ - { - "uuid": "5e1574fa-e001-47b8-b540-a447ef6ba310", - "start": { - "$date": "2020-12-27T21:03:28.000Z" - }, - "end": { - "$date": "2020-12-27T22:58:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1128bd4e-3817-4861-a9b9-8733547d7dd0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-27T21:53:04.000Z" - }, - "end": { - "$date": "2020-12-27T22:43:50.000Z" - }, - "events": [ - { - "uuid": "2d56473f-03e2-4652-b17a-fac004e3ed36", - "start": { - "$date": "2020-12-27T21:53:04.000Z" - }, - "end": { - "$date": "2020-12-27T22:43:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d81f5ed0-5662-4737-bc18-249dd9bed279", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-27T22:30:37.000Z" - }, - "end": { - "$date": "2020-12-28T00:11:45.000Z" - }, - "events": [ - { - "uuid": "f026f44b-acc2-44ff-aa32-d0a2e769dfee", - "start": { - "$date": "2020-12-27T22:30:37.000Z" - }, - "end": { - "$date": "2020-12-28T00:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5b82d0c7-e88a-46d9-9bf3-3f9e3a18def3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-27T23:00:25.000Z" - }, - "end": { - "$date": "2020-12-28T00:28:51.000Z" - }, - "events": [ - { - "uuid": "dc4d74cc-489f-4b9f-9b92-0b05965e37a8", - "start": { - "$date": "2020-12-27T23:00:25.000Z" - }, - "end": { - "$date": "2020-12-28T00:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "63259c10-6efe-45ff-8ab0-0abfc182c2f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-27T23:21:29.000Z" - }, - "end": { - "$date": "2020-12-28T00:38:07.000Z" - }, - "events": [ - { - "uuid": "b326ee85-4dfc-4cb0-bff9-41704e0a6280", - "start": { - "$date": "2020-12-27T23:21:29.000Z" - }, - "end": { - "$date": "2020-12-28T00:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "32871cfa-e47e-4d4f-9327-6d1ae752c41a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-27T23:47:50.000Z" - }, - "end": { - "$date": "2020-12-28T01:21:54.000Z" - }, - "events": [ - { - "uuid": "6893229d-a3d8-430b-87a8-6428548a3759", - "start": { - "$date": "2020-12-27T23:47:50.000Z" - }, - "end": { - "$date": "2020-12-28T01:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "730ed4ef-4cc5-4938-b416-94e656090598", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-27T23:52:49.000Z" - }, - "end": { - "$date": "2020-12-28T01:17:10.000Z" - }, - "events": [ - { - "uuid": "1d03b198-17d3-4e60-ac70-0359ebac56cc", - "start": { - "$date": "2020-12-27T23:52:49.000Z" - }, - "end": { - "$date": "2020-12-28T01:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0e428ca6-ea1e-4290-83f7-2516d7b06eda", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-28T00:12:40.000Z" - }, - "end": { - "$date": "2020-12-28T01:57:45.000Z" - }, - "events": [ - { - "uuid": "422a8bf3-412d-4b70-8546-8a21062f773c", - "start": { - "$date": "2020-12-28T00:12:40.000Z" - }, - "end": { - "$date": "2020-12-28T01:57:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "ee6027da-5c3c-49f3-a754-990ca3577952", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T00:33:18.000Z" - }, - "end": { - "$date": "2020-12-28T00:36:09.000Z" - }, - "events": [ - { - "uuid": "602d0cb7-fe70-4e12-aff6-d9277ee6983f", - "start": { - "$date": "2020-12-28T00:33:18.000Z" - }, - "end": { - "$date": "2020-12-28T00:36:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "b9339d41-0e2a-4639-bd16-77612a2bc5af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T00:36:44.000Z" - }, - "end": { - "$date": "2020-12-28T03:23:40.000Z" - }, - "events": [ - { - "uuid": "48f5b1d5-c842-4e93-bbc8-26c1bf3705ef", - "start": { - "$date": "2020-12-28T00:36:44.000Z" - }, - "end": { - "$date": "2020-12-28T03:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "uuid": "8d5997c7-0956-4e62-932b-7f8171863af2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-28T00:40:06.000Z" - }, - "end": { - "$date": "2020-12-28T03:04:29.000Z" - }, - "events": [ - { - "uuid": "b1580221-b0ad-431b-8e23-76e03f45ca85", - "start": { - "$date": "2020-12-28T00:40:06.000Z" - }, - "end": { - "$date": "2020-12-28T03:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ab10d4bb-7a09-4833-8bec-948da18f1078", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-28T01:29:49.000Z" - }, - "end": { - "$date": "2020-12-28T01:46:25.000Z" - }, - "events": [ - { - "uuid": "7fdfd373-4131-442b-a146-9b6e59915806", - "start": { - "$date": "2020-12-28T01:29:49.000Z" - }, - "end": { - "$date": "2020-12-28T01:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1cd648a6-ceca-463c-a036-a3da798c4bcd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T01:56:17.000Z" - }, - "end": { - "$date": "2020-12-28T01:57:58.000Z" - }, - "events": [ - { - "uuid": "35a33b3b-c042-4f57-bc5c-32d24e1017c4", - "start": { - "$date": "2020-12-28T01:56:17.000Z" - }, - "end": { - "$date": "2020-12-28T01:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b8b5ae98-5034-4745-aa97-64f06df78575", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T01:59:12.000Z" - }, - "end": { - "$date": "2020-12-28T02:25:29.000Z" - }, - "events": [ - { - "uuid": "17639fa7-39a1-450e-8362-ac185a022933", - "start": { - "$date": "2020-12-28T01:59:12.000Z" - }, - "end": { - "$date": "2020-12-28T02:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7e60b2cc-e51b-4b8c-a61f-433344d8adf9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-28T02:28:00.000Z" - }, - "end": { - "$date": "2020-12-28T04:54:11.000Z" - }, - "events": [ - { - "uuid": "62941b2d-0d93-4806-ae46-6cb96673f09a", - "start": { - "$date": "2020-12-28T02:28:00.000Z" - }, - "end": { - "$date": "2020-12-28T04:54:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "8791bfa9-64c5-4780-962d-ca094cd02dd4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-28T02:45:58.000Z" - }, - "end": { - "$date": "2020-12-28T07:40:18.000Z" - }, - "events": [ - { - "uuid": "79b3ec4f-579b-4085-833f-c6c493afba24", - "start": { - "$date": "2020-12-28T02:45:58.000Z" - }, - "end": { - "$date": "2020-12-28T07:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "972b5990-f2c9-421a-8c25-99c66d835392", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T02:53:21.000Z" - }, - "end": { - "$date": "2020-12-28T04:37:35.000Z" - }, - "events": [ - { - "uuid": "a9581cc4-a290-4a19-ab93-09a8b39029d1", - "start": { - "$date": "2020-12-28T02:53:21.000Z" - }, - "end": { - "$date": "2020-12-28T04:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "764bafa8-196b-48e2-8a7a-fd075535ad41", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-28T03:06:14.000Z" - }, - "end": { - "$date": "2020-12-28T03:24:42.000Z" - }, - "events": [ - { - "uuid": "d07e6a9f-56f8-4845-ac10-56e660a0ba03", - "start": { - "$date": "2020-12-28T03:06:14.000Z" - }, - "end": { - "$date": "2020-12-28T03:24:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a367f322-0853-4e3e-b8c4-9e0803214e6a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T03:07:43.000Z" - }, - "end": { - "$date": "2020-12-28T03:24:05.000Z" - }, - "events": [ - { - "uuid": "77c67c84-9d67-4d94-a18b-f7c1bfd9f3d0", - "start": { - "$date": "2020-12-28T03:07:43.000Z" - }, - "end": { - "$date": "2020-12-28T03:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50a1bfd2-3f64-43b7-98c4-4719bf7edf81", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T03:22:08.000Z" - }, - "end": { - "$date": "2020-12-28T03:45:16.000Z" - }, - "events": [ - { - "uuid": "1810fb7a-d102-4bbc-904c-2f50daad55d6", - "start": { - "$date": "2020-12-28T03:22:08.000Z" - }, - "end": { - "$date": "2020-12-28T03:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "992f26a4-7e73-40f1-a611-11b9117c3601", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T03:24:24.000Z" - }, - "end": { - "$date": "2020-12-28T05:03:26.000Z" - }, - "events": [ - { - "uuid": "819ff7e9-4468-428a-a32b-848085f3d75b", - "start": { - "$date": "2020-12-28T03:24:24.000Z" - }, - "end": { - "$date": "2020-12-28T05:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f9911ad-dc8a-49be-a064-856e69f2d778", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-28T03:24:51.000Z" - }, - "end": { - "$date": "2020-12-28T05:04:04.000Z" - }, - "events": [ - { - "uuid": "9ce2f130-90ca-47e9-997d-ae7239314637", - "start": { - "$date": "2020-12-28T03:24:51.000Z" - }, - "end": { - "$date": "2020-12-28T05:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "47f96c3c-658e-49f9-949f-be39f0c3e0bc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-28T03:45:55.000Z" - }, - "end": { - "$date": "2020-12-28T07:00:03.000Z" - }, - "events": [ - { - "uuid": "9b15edb2-19e9-4105-ba73-a9fce08c89a9", - "start": { - "$date": "2020-12-28T03:45:55.000Z" - }, - "end": { - "$date": "2020-12-28T07:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7840f246-233f-43fc-9d54-9dd7ef535384", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T03:45:55.000Z" - }, - "end": { - "$date": "2020-12-28T03:47:05.000Z" - }, - "events": [ - { - "uuid": "17c10dc7-54cd-4f07-9f38-89f55be16787", - "start": { - "$date": "2020-12-28T03:45:55.000Z" - }, - "end": { - "$date": "2020-12-28T03:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "deb9a43a-eb9c-45e3-b47d-e5de2f64c06b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T03:47:25.000Z" - }, - "end": { - "$date": "2020-12-28T05:25:06.000Z" - }, - "events": [ - { - "uuid": "b6452913-832e-4994-9385-af1ecef61436", - "start": { - "$date": "2020-12-28T03:47:25.000Z" - }, - "end": { - "$date": "2020-12-28T05:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "04c7e0ec-a591-4ef4-956d-e25bd7af115e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-28T03:55:00.000Z" - }, - "end": { - "$date": "2020-12-28T05:23:28.000Z" - }, - "events": [ - { - "uuid": "2fbeb3d0-8037-445a-b3b6-b5ca30bb6a87", - "start": { - "$date": "2020-12-28T03:55:00.000Z" - }, - "end": { - "$date": "2020-12-28T05:23:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71187ff6-168e-47dc-bb08-84f6d964b767", - "uuid": "a520c488-abfa-41f9-a6d2-fc648b4f0885", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-28T04:12:22.000Z" - }, - "end": { - "$date": "2020-12-28T06:02:19.000Z" - }, - "events": [ - { - "uuid": "9505bd0e-048a-4f37-8887-7e551115aa63", - "start": { - "$date": "2020-12-28T04:12:22.000Z" - }, - "end": { - "$date": "2020-12-28T06:02:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "5f8f44ca-c9dc-47c4-b4f5-bc579d18bf64", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T05:23:56.000Z" - }, - "end": { - "$date": "2020-12-28T05:31:01.000Z" - }, - "events": [ - { - "uuid": "ff6f68f6-9e46-48b9-a63b-20cc152ba96c", - "start": { - "$date": "2020-12-28T05:23:56.000Z" - }, - "end": { - "$date": "2020-12-28T05:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c5929781-683c-47a8-8391-5e1b9f0ba43e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T04:53:35.000Z" - }, - "end": { - "$date": "2020-12-28T05:16:02.000Z" - }, - "events": [ - { - "uuid": "28554774-39f8-458f-8eb2-6899b59f581e", - "start": { - "$date": "2020-12-28T04:53:35.000Z" - }, - "end": { - "$date": "2020-12-28T05:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "uuid": "3f3e6a86-7a1d-4dc5-9201-a7955885f875", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-28T05:04:14.000Z" - }, - "end": { - "$date": "2020-12-28T06:40:45.000Z" - }, - "events": [ - { - "uuid": "8e9cecb6-2a1c-442f-b897-5f5f5c9e8d74", - "start": { - "$date": "2020-12-28T05:04:14.000Z" - }, - "end": { - "$date": "2020-12-28T06:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "uuid": "acf98b41-22f4-40a3-9aa7-8c04f73ce4e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T05:04:16.000Z" - }, - "end": { - "$date": "2020-12-28T05:17:33.000Z" - }, - "events": [ - { - "uuid": "66307beb-16b2-4d99-ab27-98374c5b4675", - "start": { - "$date": "2020-12-28T05:04:16.000Z" - }, - "end": { - "$date": "2020-12-28T05:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a48e69b-46ca-4fa1-b991-33d9c0c2bec7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T05:16:15.000Z" - }, - "end": { - "$date": "2020-12-28T05:23:26.000Z" - }, - "events": [ - { - "uuid": "183e42a4-af45-4596-b0e6-7b55130532c6", - "start": { - "$date": "2020-12-28T05:16:15.000Z" - }, - "end": { - "$date": "2020-12-28T05:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "uuid": "937301fd-0132-4738-9828-ef92fa9685b2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T05:17:58.000Z" - }, - "end": { - "$date": "2020-12-28T06:44:10.000Z" - }, - "events": [ - { - "uuid": "30db9630-084a-4143-a0f3-b4773b1ca826", - "start": { - "$date": "2020-12-28T05:17:58.000Z" - }, - "end": { - "$date": "2020-12-28T06:44:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "1e0d89e6-7d50-4043-bb8a-c9359eb06fe8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T05:31:37.000Z" - }, - "end": { - "$date": "2020-12-28T06:54:05.000Z" - }, - "events": [ - { - "uuid": "ab1d2d18-e408-49b5-8507-7ca68155ae78", - "start": { - "$date": "2020-12-28T05:31:37.000Z" - }, - "end": { - "$date": "2020-12-28T06:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", - "uuid": "56a247db-59df-4625-8aeb-e17264050116", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T05:32:37.000Z" - }, - "end": { - "$date": "2020-12-28T05:38:18.000Z" - }, - "events": [ - { - "uuid": "849e3f60-86c4-43c7-bb94-a647d9c5897b", - "start": { - "$date": "2020-12-28T05:32:37.000Z" - }, - "end": { - "$date": "2020-12-28T05:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d2e2ac6f-4629-4825-a67e-c3d41e0ac4b7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-28T05:34:34.000Z" - }, - "end": { - "$date": "2020-12-28T06:53:52.000Z" - }, - "events": [ - { - "uuid": "9f0bac0f-a708-4849-92ef-8f115b50de96", - "start": { - "$date": "2020-12-28T05:34:34.000Z" - }, - "end": { - "$date": "2020-12-28T06:53:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7b75f888-8023-4669-98a0-5567efc2c09d", - "uuid": "06d62d50-70d2-4d2e-91e1-f065ab8f1670", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T05:39:13.000Z" - }, - "end": { - "$date": "2020-12-28T06:04:18.000Z" - }, - "events": [ - { - "uuid": "00435879-cc8f-4c3c-9cc9-5dcefd6fa284", - "start": { - "$date": "2020-12-28T05:39:13.000Z" - }, - "end": { - "$date": "2020-12-28T06:04:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ff18e0b5-bc31-4b7a-971b-a07aa138c386", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-28T05:44:54.000Z" - }, - "end": { - "$date": "2020-12-28T08:28:49.000Z" - }, - "events": [ - { - "uuid": "ee1f6053-393f-434f-8fc5-42043cdd708c", - "start": { - "$date": "2020-12-28T05:44:54.000Z" - }, - "end": { - "$date": "2020-12-28T08:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d0b08e9a-3f4c-4860-8d5b-47044ddbefbb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-28T05:46:27.000Z" - }, - "end": { - "$date": "2020-12-28T06:53:54.000Z" - }, - "events": [ - { - "uuid": "4d92759c-064d-47fa-b084-11006edd7811", - "start": { - "$date": "2020-12-28T05:46:27.000Z" - }, - "end": { - "$date": "2020-12-28T06:53:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71187ff6-168e-47dc-bb08-84f6d964b767", - "uuid": "e7bc7d4a-d0f9-4e45-bd04-b7bdfb29adb4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-28T06:04:53.000Z" - }, - "end": { - "$date": "2020-12-28T06:48:14.000Z" - }, - "events": [ - { - "uuid": "03aa0fdf-bdfd-4949-8ea5-5e19f6e7adfc", - "start": { - "$date": "2020-12-28T06:04:53.000Z" - }, - "end": { - "$date": "2020-12-28T06:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f20625a3-8f83-47d3-9b82-9c3edf2eab16", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T06:16:55.000Z" - }, - "end": { - "$date": "2020-12-28T07:29:37.000Z" - }, - "events": [ - { - "uuid": "0b63746b-cf8b-4b44-9b79-240ee93c2aeb", - "start": { - "$date": "2020-12-28T06:16:55.000Z" - }, - "end": { - "$date": "2020-12-28T07:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "cbc1c692-7db9-4623-b466-4ccb689331ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T06:54:24.000Z" - }, - "end": { - "$date": "2020-12-28T07:05:03.000Z" - }, - "events": [ - { - "uuid": "d906d6f2-19e5-4404-9285-dbaa9312c331", - "start": { - "$date": "2020-12-28T06:54:24.000Z" - }, - "end": { - "$date": "2020-12-28T07:05:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6b00e368-7192-473b-8834-6c4feaaefd82", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-28T07:04:35.000Z" - }, - "end": { - "$date": "2020-12-28T07:55:53.000Z" - }, - "events": [ - { - "uuid": "164ab1e8-a330-419e-a25d-103b1b7a3ed6", - "start": { - "$date": "2020-12-28T07:04:35.000Z" - }, - "end": { - "$date": "2020-12-28T07:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19b3620b-7044-4bdd-8771-b86794fff3c5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T07:41:59.000Z" - }, - "end": { - "$date": "2020-12-28T08:08:15.000Z" - }, - "events": [ - { - "uuid": "8350d64e-57f9-4692-9dfd-be48872ab472", - "start": { - "$date": "2020-12-28T07:41:59.000Z" - }, - "end": { - "$date": "2020-12-28T08:08:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "0c1bf9e8-09e0-4089-b89d-b9192d7e07e5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-28T09:39:18.000Z" - }, - "end": { - "$date": "2020-12-28T16:01:23.000Z" - }, - "events": [ - { - "uuid": "f01d0b78-49fc-48dc-9f56-190489776c63", - "start": { - "$date": "2020-12-28T09:39:18.000Z" - }, - "end": { - "$date": "2020-12-28T16:01:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d93d0cc-8846-4a70-b449-2897404def35", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T16:06:40.000Z" - }, - "end": { - "$date": "2020-12-28T16:10:56.000Z" - }, - "events": [ - { - "uuid": "69cd498f-70fa-47d5-9232-a539ed5d7c09", - "start": { - "$date": "2020-12-28T16:06:40.000Z" - }, - "end": { - "$date": "2020-12-28T16:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "51e29f2b-8d1a-4d95-8c6d-8af8ee87832b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T16:27:12.000Z" - }, - "end": { - "$date": "2020-12-28T16:32:22.000Z" - }, - "events": [ - { - "uuid": "1d571b80-1231-45c7-a987-cc5e5801d484", - "start": { - "$date": "2020-12-28T16:27:12.000Z" - }, - "end": { - "$date": "2020-12-28T16:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb43c798-804a-4115-96ea-4366c4989829", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T16:32:37.000Z" - }, - "end": { - "$date": "2020-12-28T17:44:21.000Z" - }, - "events": [ - { - "uuid": "39a7c09e-94ce-41d1-af3a-b55a7e10c992", - "start": { - "$date": "2020-12-28T16:32:37.000Z" - }, - "end": { - "$date": "2020-12-28T17:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0cda6160-1a9a-4d21-9723-f4f808f94d38", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T17:10:21.000Z" - }, - "end": { - "$date": "2020-12-28T18:21:16.000Z" - }, - "events": [ - { - "uuid": "a2582460-703b-4fc6-8570-0e99695cf6af", - "start": { - "$date": "2020-12-28T17:10:21.000Z" - }, - "end": { - "$date": "2020-12-28T18:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "d4aa301a-5741-43d4-995b-13f72f71d7c3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-28T17:38:02.000Z" - }, - "end": { - "$date": "2020-12-28T18:18:24.000Z" - }, - "events": [ - { - "uuid": "1b646f67-9795-4d52-af84-2a0e6aa5cacc", - "start": { - "$date": "2020-12-28T17:38:02.000Z" - }, - "end": { - "$date": "2020-12-28T18:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "72271022-9138-4711-b231-2e416797aedc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T17:21:44.000Z" - }, - "end": { - "$date": "2020-12-28T19:15:33.000Z" - }, - "events": [ - { - "uuid": "5b6e8d2b-7ef1-40b6-8db3-eb9815c1bb5e", - "start": { - "$date": "2020-12-28T17:21:44.000Z" - }, - "end": { - "$date": "2020-12-28T19:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", - "uuid": "34ad968e-d558-497f-91b4-05cafd27ef2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T17:59:22.000Z" - }, - "end": { - "$date": "2020-12-28T18:07:58.000Z" - }, - "events": [ - { - "uuid": "4642f378-dcac-4212-885c-ae0971f7b14d", - "start": { - "$date": "2020-12-28T17:59:22.000Z" - }, - "end": { - "$date": "2020-12-28T18:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", - "uuid": "01d80b32-620c-4fca-8779-9d6f0502af65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T18:30:13.000Z" - }, - "end": { - "$date": "2020-12-28T19:16:30.000Z" - }, - "events": [ - { - "uuid": "f301c2bc-c7c3-4c37-b111-790267561727", - "start": { - "$date": "2020-12-28T18:30:13.000Z" - }, - "end": { - "$date": "2020-12-28T19:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "27922aac-cba1-464d-9ed4-9fbb11c135e3", - "uuid": "b6f4cb8f-ee71-428b-bf16-e0ce073dec03", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-28T18:44:05.000Z" - }, - "end": { - "$date": "2020-12-28T19:03:12.000Z" - }, - "events": [ - { - "uuid": "f1702287-1917-4cc8-9bd2-5a4a9610365f", - "start": { - "$date": "2020-12-28T18:44:05.000Z" - }, - "end": { - "$date": "2020-12-28T19:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "c35b8a5a-8291-4190-8f32-8a33cf577ae4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T18:52:18.000Z" - }, - "end": { - "$date": "2020-12-28T18:53:54.000Z" - }, - "events": [ - { - "uuid": "fd2799de-7108-4a3a-a166-372bd522cabe", - "start": { - "$date": "2020-12-28T18:52:18.000Z" - }, - "end": { - "$date": "2020-12-28T18:53:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "0f8edb12-f460-4801-b388-2d9b2f829ad2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T18:54:33.000Z" - }, - "end": { - "$date": "2020-12-28T19:41:55.000Z" - }, - "events": [ - { - "uuid": "e85f81c8-7251-4b18-9810-2b86afbe28d0", - "start": { - "$date": "2020-12-28T18:54:33.000Z" - }, - "end": { - "$date": "2020-12-28T19:41:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "08c81ded-d644-4768-a3af-11eed39cb94e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-28T19:04:01.000Z" - }, - "end": { - "$date": "2020-12-28T19:05:47.000Z" - }, - "events": [ - { - "uuid": "0b3e793e-c10c-45ec-a04b-e1f5d825f3ff", - "start": { - "$date": "2020-12-28T19:04:01.000Z" - }, - "end": { - "$date": "2020-12-28T19:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fa38c8f-7469-45a8-8831-823dd58b0efe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T19:13:48.000Z" - }, - "end": { - "$date": "2020-12-28T19:32:16.000Z" - }, - "events": [ - { - "uuid": "8257d5c0-a363-4396-b40a-32c41eb17cdf", - "start": { - "$date": "2020-12-28T19:13:48.000Z" - }, - "end": { - "$date": "2020-12-28T19:32:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e1621575-4805-4bfa-9f59-bad936bf061a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T19:16:15.000Z" - }, - "end": { - "$date": "2020-12-28T20:39:31.000Z" - }, - "events": [ - { - "uuid": "eeb6bdad-1a13-43fa-ba3f-e72b6e090a1d", - "start": { - "$date": "2020-12-28T19:16:15.000Z" - }, - "end": { - "$date": "2020-12-28T20:26:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7139c207-f1c0-41a9-a9bc-4424f16d3de2", - "start": { - "$date": "2020-12-28T20:26:15.000Z" - }, - "end": { - "$date": "2020-12-28T20:39:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15992da5-5935-4179-86ec-31bc23ce3827", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T19:38:39.000Z" - }, - "end": { - "$date": "2020-12-28T20:10:52.000Z" - }, - "events": [ - { - "uuid": "c7514aef-6e8f-4da3-b0bf-585b67f1c25a", - "start": { - "$date": "2020-12-28T19:38:39.000Z" - }, - "end": { - "$date": "2020-12-28T20:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e2550d5e-59b3-4934-a814-4819c6c4949b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T19:35:31.000Z" - }, - "end": { - "$date": "2020-12-28T20:34:23.000Z" - }, - "events": [ - { - "uuid": "9636b1b3-e08d-4a85-b8c4-516524bb70ff", - "start": { - "$date": "2020-12-28T19:35:31.000Z" - }, - "end": { - "$date": "2020-12-28T20:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e47c4a1-f413-47cd-90b1-58b92f441a2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T20:15:55.000Z" - }, - "end": { - "$date": "2020-12-28T20:45:50.000Z" - }, - "events": [ - { - "uuid": "d1aee857-ed35-4153-b703-fbe2c77bdb44", - "start": { - "$date": "2020-12-28T20:15:55.000Z" - }, - "end": { - "$date": "2020-12-28T20:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0a19e585-139c-4959-aa91-d7be37aaa69a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T20:20:02.000Z" - }, - "end": { - "$date": "2020-12-28T21:10:56.000Z" - }, - "events": [ - { - "uuid": "18322a98-e6ed-4348-b104-8d6f1a424de6", - "start": { - "$date": "2020-12-28T20:20:02.000Z" - }, - "end": { - "$date": "2020-12-28T21:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b92fd46a-1f83-4433-ba4e-74fea08f2745", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-28T20:36:33.000Z" - }, - "end": { - "$date": "2020-12-28T20:55:14.000Z" - }, - "events": [ - { - "uuid": "8dde8a15-53cb-46da-8778-22630d15fcf5", - "start": { - "$date": "2020-12-28T20:36:33.000Z" - }, - "end": { - "$date": "2020-12-28T20:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a0588ef1-a01b-496f-a800-d1d87e8a491d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-28T20:45:03.000Z" - }, - "end": { - "$date": "2020-12-28T23:04:25.000Z" - }, - "events": [ - { - "uuid": "6747c3f6-e61f-45d9-82a8-7d4b8c56a2e6", - "start": { - "$date": "2020-12-28T20:45:03.000Z" - }, - "end": { - "$date": "2020-12-28T23:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0b69dd3a-5532-42b9-93e2-4f01a3c1e322", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-28T20:45:27.000Z" - }, - "end": { - "$date": "2020-12-28T22:27:34.000Z" - }, - "events": [ - { - "uuid": "313a5395-a560-4a89-b9ca-bf0a311b41ce", - "start": { - "$date": "2020-12-28T20:45:27.000Z" - }, - "end": { - "$date": "2020-12-28T22:27:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2eeb1d36-cf8c-4f75-9f4f-5354cf14a6d7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T20:56:23.000Z" - }, - "end": { - "$date": "2020-12-28T21:07:08.000Z" - }, - "events": [ - { - "uuid": "421c176c-7a35-4e48-8b1e-b07e979cd8be", - "start": { - "$date": "2020-12-28T20:56:23.000Z" - }, - "end": { - "$date": "2020-12-28T21:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1dc7477-a6c4-4d6e-8f7c-65353ee43fe5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T20:56:25.000Z" - }, - "end": { - "$date": "2020-12-28T21:07:11.000Z" - }, - "events": [ - { - "uuid": "e766d85b-0442-4ffc-8b9f-7499b9e94f6b", - "start": { - "$date": "2020-12-28T20:56:25.000Z" - }, - "end": { - "$date": "2020-12-28T21:07:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32550310-1c99-483d-9fa9-c029a6891e0d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T21:11:38.000Z" - }, - "end": { - "$date": "2020-12-28T21:32:39.000Z" - }, - "events": [ - { - "uuid": "f346847f-dd00-4dc4-a4b0-a22b8e385fc0", - "start": { - "$date": "2020-12-28T21:11:38.000Z" - }, - "end": { - "$date": "2020-12-28T21:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39b299b0-faf5-45ee-b867-75f05cf4e967", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T21:11:37.000Z" - }, - "end": { - "$date": "2020-12-28T21:32:43.000Z" - }, - "events": [ - { - "uuid": "55117678-6659-40e0-bbca-eee90c73b944", - "start": { - "$date": "2020-12-28T21:11:37.000Z" - }, - "end": { - "$date": "2020-12-28T21:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cd7c9f2-87c8-4f94-9468-2a69df5c2167", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T21:37:34.000Z" - }, - "end": { - "$date": "2020-12-28T21:54:40.000Z" - }, - "events": [ - { - "uuid": "bcdfcb80-dfef-4ecf-bb77-fda10af39cc4", - "start": { - "$date": "2020-12-28T21:37:34.000Z" - }, - "end": { - "$date": "2020-12-28T21:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3fc5785-3949-4839-bb1a-2a2a421a1a3c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T21:37:08.000Z" - }, - "end": { - "$date": "2020-12-28T21:54:50.000Z" - }, - "events": [ - { - "uuid": "94a71568-f6b7-4c88-a8a6-1a0d0ff926d2", - "start": { - "$date": "2020-12-28T21:37:08.000Z" - }, - "end": { - "$date": "2020-12-28T21:54:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c47b7efd-69c9-4a03-bd18-9021785143c6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T21:57:25.000Z" - }, - "end": { - "$date": "2020-12-28T22:16:01.000Z" - }, - "events": [ - { - "uuid": "f9f22d50-9431-4358-89b1-5e3c989dfe5a", - "start": { - "$date": "2020-12-28T21:57:25.000Z" - }, - "end": { - "$date": "2020-12-28T22:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25cfca4e-2ccf-4b20-a73a-dfb647c828a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T21:57:29.000Z" - }, - "end": { - "$date": "2020-12-28T22:16:05.000Z" - }, - "events": [ - { - "uuid": "569c37c1-efab-4a74-8eea-0a640cff3712", - "start": { - "$date": "2020-12-28T21:57:29.000Z" - }, - "end": { - "$date": "2020-12-28T22:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83f9a4f0-90d7-445b-9c14-217224177aa4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T22:21:11.000Z" - }, - "end": { - "$date": "2020-12-28T22:35:37.000Z" - }, - "events": [ - { - "uuid": "8350b927-96ca-4803-8c52-a02b128710fd", - "start": { - "$date": "2020-12-28T22:21:11.000Z" - }, - "end": { - "$date": "2020-12-28T22:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a50f693c-bfe3-4af4-83b4-0436f1d5356b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T22:21:16.000Z" - }, - "end": { - "$date": "2020-12-28T22:35:41.000Z" - }, - "events": [ - { - "uuid": "a83ae8bc-f604-45ca-adf4-72a1642cff2c", - "start": { - "$date": "2020-12-28T22:21:16.000Z" - }, - "end": { - "$date": "2020-12-28T22:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b96eedf1-df37-4b20-b016-1f8d7b434bcc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-28T22:39:47.000Z" - }, - "end": { - "$date": "2020-12-28T22:56:48.000Z" - }, - "events": [ - { - "uuid": "640e1dbc-dc47-494d-87c3-e6ce9c24814b", - "start": { - "$date": "2020-12-28T22:39:47.000Z" - }, - "end": { - "$date": "2020-12-28T22:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c181761-4591-47f1-bfb6-095da4c56c6b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-28T22:39:47.000Z" - }, - "end": { - "$date": "2020-12-28T22:56:47.000Z" - }, - "events": [ - { - "uuid": "0a6a5a6f-0b15-41a5-8ac7-8b46a3f547da", - "start": { - "$date": "2020-12-28T22:39:47.000Z" - }, - "end": { - "$date": "2020-12-28T22:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "78644a49-672c-4caa-89e3-5a33a495231f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-28T23:06:48.000Z" - }, - "end": { - "$date": "2020-12-29T00:44:16.000Z" - }, - "events": [ - { - "uuid": "98eddf96-2915-412b-9c5f-58f583bd6354", - "start": { - "$date": "2020-12-28T23:06:48.000Z" - }, - "end": { - "$date": "2020-12-29T00:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e715c1b3-628c-463a-8753-c5170394476c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-28T23:35:56.000Z" - }, - "end": { - "$date": "2020-12-29T00:38:01.000Z" - }, - "events": [ - { - "uuid": "b480a03a-d9f6-4132-a445-ffde249b75a0", - "start": { - "$date": "2020-12-28T23:35:56.000Z" - }, - "end": { - "$date": "2020-12-29T00:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1dcfb14d-21c6-4bcb-bc3c-ea3b21a7411d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-28T23:39:20.000Z" - }, - "end": { - "$date": "2020-12-29T02:00:37.000Z" - }, - "events": [ - { - "uuid": "275eb0c8-7091-416d-adf8-ba661e105570", - "start": { - "$date": "2020-12-28T23:39:20.000Z" - }, - "end": { - "$date": "2020-12-29T02:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c7fbb75-9a95-49ed-89a3-7d1e03b14c42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-28T23:50:27.000Z" - }, - "end": { - "$date": "2020-12-29T00:31:13.000Z" - }, - "events": [ - { - "uuid": "cd91ecf3-7823-4041-944e-be8f512ef0ab", - "start": { - "$date": "2020-12-28T23:50:27.000Z" - }, - "end": { - "$date": "2020-12-29T00:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "90e66668-8098-4d04-9cef-28c8d6ed1fed", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-28T23:45:54.000Z" - }, - "end": { - "$date": "2020-12-29T00:21:27.000Z" - }, - "events": [ - { - "uuid": "7feff434-4599-437d-b72f-66f2eb0f3118", - "start": { - "$date": "2020-12-28T23:45:54.000Z" - }, - "end": { - "$date": "2020-12-29T00:21:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "282c1451-5ace-43fd-95b8-ba02520fa4f8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T00:31:53.000Z" - }, - "end": { - "$date": "2020-12-29T01:18:11.000Z" - }, - "events": [ - { - "uuid": "7a754caf-7729-448c-9094-e4bebc7a8efe", - "start": { - "$date": "2020-12-29T00:31:53.000Z" - }, - "end": { - "$date": "2020-12-29T00:47:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc1fad32-060b-4eb3-a060-d1b82797c18f", - "start": { - "$date": "2020-12-29T00:47:53.000Z" - }, - "end": { - "$date": "2020-12-29T00:55:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3c879181-2899-4e16-afb4-7623a84503f3", - "start": { - "$date": "2020-12-29T00:55:53.000Z" - }, - "end": { - "$date": "2020-12-29T01:18:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "2cbd93f5-faba-4fa8-a208-b1209019039d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-29T00:44:51.000Z" - }, - "end": { - "$date": "2020-12-29T01:19:04.000Z" - }, - "events": [ - { - "uuid": "4bdf476b-1ecd-4866-863a-a9c07e3e021c", - "start": { - "$date": "2020-12-29T00:44:51.000Z" - }, - "end": { - "$date": "2020-12-29T01:19:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "274e142f-b63c-4554-ac47-81ca3eec5c0d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T01:06:55.000Z" - }, - "end": { - "$date": "2020-12-29T01:59:56.000Z" - }, - "events": [ - { - "uuid": "8a729eac-1a7f-42cf-8b8c-a49a09f871cc", - "start": { - "$date": "2020-12-29T01:06:55.000Z" - }, - "end": { - "$date": "2020-12-29T01:59:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "051db9b9-f71c-4523-9649-bfdc330b136f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T01:18:15.000Z" - }, - "end": { - "$date": "2020-12-29T02:18:22.000Z" - }, - "events": [ - { - "uuid": "5378a655-20f8-4159-b69f-9f8ee30c0d9f", - "start": { - "$date": "2020-12-29T01:18:15.000Z" - }, - "end": { - "$date": "2020-12-29T02:18:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99abf30c-7492-4363-9286-ab3069c39d1c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-29T01:32:42.000Z" - }, - "end": { - "$date": "2020-12-29T03:37:52.000Z" - }, - "events": [ - { - "uuid": "abb7da96-444a-42c3-9693-d8896eaef16a", - "start": { - "$date": "2020-12-29T01:32:42.000Z" - }, - "end": { - "$date": "2020-12-29T03:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "38e72392-e42e-4a69-976c-7be360dee9bb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-29T01:58:19.000Z" - }, - "end": { - "$date": "2020-12-29T02:02:33.000Z" - }, - "events": [ - { - "uuid": "f2aa5ef6-df97-43d9-ac2d-8372f58dd527", - "start": { - "$date": "2020-12-29T01:58:19.000Z" - }, - "end": { - "$date": "2020-12-29T02:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "668f73f3-f201-49bf-8265-1f1dc3b5d604", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-29T02:38:24.000Z" - }, - "end": { - "$date": "2020-12-29T04:11:23.000Z" - }, - "events": [ - { - "uuid": "6adc23a5-14d8-425b-8866-d4fe32efdadf", - "start": { - "$date": "2020-12-29T02:38:24.000Z" - }, - "end": { - "$date": "2020-12-29T04:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f0e261c9-492a-4449-bccc-1e7e05e7349b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-29T02:39:35.000Z" - }, - "end": { - "$date": "2020-12-29T03:58:51.000Z" - }, - "events": [ - { - "uuid": "e64fbf11-b2ff-44fb-9958-bdbb8260a18a", - "start": { - "$date": "2020-12-29T02:39:35.000Z" - }, - "end": { - "$date": "2020-12-29T03:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1089a98-c21f-4f60-8e7b-49d7028798a7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T02:57:13.000Z" - }, - "end": { - "$date": "2020-12-29T03:29:50.000Z" - }, - "events": [ - { - "uuid": "eeb755a7-52aa-4a95-af69-2db0c1188fc9", - "start": { - "$date": "2020-12-29T02:57:13.000Z" - }, - "end": { - "$date": "2020-12-29T03:29:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "4e7443f4-6563-412b-b18e-34a9c2a82cf7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-29T02:52:50.000Z" - }, - "end": { - "$date": "2020-12-29T08:34:34.000Z" - }, - "events": [ - { - "uuid": "fdbb4187-b8e5-4389-bdfd-0c5f49bfe920", - "start": { - "$date": "2020-12-29T02:52:50.000Z" - }, - "end": { - "$date": "2020-12-29T08:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab86deeb-a04c-48d8-873e-87e82bcfea59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T02:57:11.000Z" - }, - "end": { - "$date": "2020-12-29T03:29:48.000Z" - }, - "events": [ - { - "uuid": "8d6f8b74-9038-48e5-8e9a-2396a152ad02", - "start": { - "$date": "2020-12-29T02:57:11.000Z" - }, - "end": { - "$date": "2020-12-29T03:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ca3f36e5-3781-4d35-bc51-aa4530add10a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T03:23:02.000Z" - }, - "end": { - "$date": "2020-12-29T04:02:13.000Z" - }, - "events": [ - { - "uuid": "01ba88fb-e49a-4d19-b191-d736cb963814", - "start": { - "$date": "2020-12-29T03:23:02.000Z" - }, - "end": { - "$date": "2020-12-29T04:02:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97eea3ed-d488-48f5-8ecc-b08da42ce11a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T03:37:10.000Z" - }, - "end": { - "$date": "2020-12-29T04:04:22.000Z" - }, - "events": [ - { - "uuid": "c6663ccc-7be1-46ca-bd8b-ab805bea1d3c", - "start": { - "$date": "2020-12-29T03:37:10.000Z" - }, - "end": { - "$date": "2020-12-29T04:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c32eec8-b767-45ca-8fba-051f31171849", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T03:37:07.000Z" - }, - "end": { - "$date": "2020-12-29T04:04:13.000Z" - }, - "events": [ - { - "uuid": "72f10bfb-a794-4e7d-abfe-070bc0d3277f", - "start": { - "$date": "2020-12-29T03:37:07.000Z" - }, - "end": { - "$date": "2020-12-29T04:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c712154c-9ce3-49ea-acd7-6144143770e8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-29T03:56:49.000Z" - }, - "end": { - "$date": "2020-12-29T06:44:03.000Z" - }, - "events": [ - { - "uuid": "adf51c89-2b11-4eed-9256-ef300a5940db", - "start": { - "$date": "2020-12-29T03:56:49.000Z" - }, - "end": { - "$date": "2020-12-29T06:44:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "uuid": "a6df3587-8a23-448c-b8ee-119f14360d82", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-29T04:02:00.000Z" - }, - "end": { - "$date": "2020-12-29T04:45:33.000Z" - }, - "events": [ - { - "uuid": "f52ac90d-6f33-4d09-8241-76a88148aa86", - "start": { - "$date": "2020-12-29T04:02:00.000Z" - }, - "end": { - "$date": "2020-12-29T04:45:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bf6b6a4-e200-46f3-98fe-d8aa66e19b30", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T04:12:43.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:41.000Z" - }, - "events": [ - { - "uuid": "60205bd8-3e36-4581-b27f-3cbf4a16f655", - "start": { - "$date": "2020-12-29T04:12:43.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a7b81f6-4d1a-4609-850e-6508b2238751", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T04:12:39.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:29.000Z" - }, - "events": [ - { - "uuid": "81d73ff9-1d6f-4409-bcc9-27b337d304f5", - "start": { - "$date": "2020-12-29T04:12:39.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d7b9bad-88e8-477e-9564-2d297ce3643e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T04:12:44.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:34.000Z" - }, - "events": [ - { - "uuid": "24c33994-6bfe-47a1-ba2e-0b111be99448", - "start": { - "$date": "2020-12-29T04:12:44.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b0f7708-c288-4de2-950d-a5f414eb4758", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T04:12:42.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:33.000Z" - }, - "events": [ - { - "uuid": "40a7346e-2bc4-4d13-9f66-d1aa032c05b3", - "start": { - "$date": "2020-12-29T04:12:42.000Z" - }, - "end": { - "$date": "2020-12-29T04:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fddb7e9d-a68a-4ed3-8c91-f0bd19cd19e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-29T04:11:21.000Z" - }, - "end": { - "$date": "2020-12-29T06:44:12.000Z" - }, - "events": [ - { - "uuid": "98155124-8435-4d85-b722-b275ba2b32fa", - "start": { - "$date": "2020-12-29T04:11:21.000Z" - }, - "end": { - "$date": "2020-12-29T06:44:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31cb7165-a65d-4e7d-9af3-e3fa466e19ca", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T04:35:04.000Z" - }, - "end": { - "$date": "2020-12-29T04:48:35.000Z" - }, - "events": [ - { - "uuid": "3c79c1d4-8791-4a55-b9c2-8fa24cf98fb8", - "start": { - "$date": "2020-12-29T04:35:04.000Z" - }, - "end": { - "$date": "2020-12-29T04:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "11af105a-326c-4098-a453-ebf19a21ea1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T04:32:00.000Z" - }, - "end": { - "$date": "2020-12-29T05:40:41.000Z" - }, - "events": [ - { - "uuid": "db5c9930-cb61-4827-9b14-102af79ad15b", - "start": { - "$date": "2020-12-29T04:32:00.000Z" - }, - "end": { - "$date": "2020-12-29T05:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "239811eb-4a74-4bec-90a7-4896272023bd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T04:32:29.000Z" - }, - "end": { - "$date": "2020-12-29T04:34:20.000Z" - }, - "events": [ - { - "uuid": "e1fcf288-7cb7-4cdb-b45d-8d4ffb4c31c1", - "start": { - "$date": "2020-12-29T04:32:29.000Z" - }, - "end": { - "$date": "2020-12-29T04:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ef6afa8-3b2d-4986-a491-87290ffbcbd3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T04:35:05.000Z" - }, - "end": { - "$date": "2020-12-29T04:48:40.000Z" - }, - "events": [ - { - "uuid": "f1d93bab-c023-40d1-a3a8-3d577f3a2f2c", - "start": { - "$date": "2020-12-29T04:35:05.000Z" - }, - "end": { - "$date": "2020-12-29T04:48:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d331e40-833c-4369-982a-bbbb07de40cf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T04:35:33.000Z" - }, - "end": { - "$date": "2020-12-29T04:48:24.000Z" - }, - "events": [ - { - "uuid": "75dfcc9c-8f92-4f60-aa35-e71df8959c70", - "start": { - "$date": "2020-12-29T04:35:33.000Z" - }, - "end": { - "$date": "2020-12-29T04:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdff2383-aa83-4127-86a5-38c281fc3f4d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T04:53:46.000Z" - }, - "end": { - "$date": "2020-12-29T05:07:52.000Z" - }, - "events": [ - { - "uuid": "312178d3-a118-4324-82d0-628cdf953ac0", - "start": { - "$date": "2020-12-29T04:53:46.000Z" - }, - "end": { - "$date": "2020-12-29T05:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "556e9a9e-1ba9-4c9b-8371-ea3d6fecd6f6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T04:53:44.000Z" - }, - "end": { - "$date": "2020-12-29T05:07:45.000Z" - }, - "events": [ - { - "uuid": "eddec80d-b59f-4117-8833-f538d6d854cf", - "start": { - "$date": "2020-12-29T04:53:44.000Z" - }, - "end": { - "$date": "2020-12-29T05:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d38ea18-8013-446c-b43a-d5f3fec462d9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T04:53:47.000Z" - }, - "end": { - "$date": "2020-12-29T05:07:51.000Z" - }, - "events": [ - { - "uuid": "f61a3ba9-0cdb-4a8f-9e17-0d85952fabfb", - "start": { - "$date": "2020-12-29T04:53:47.000Z" - }, - "end": { - "$date": "2020-12-29T05:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d609da3-9702-4728-888c-79e1cd8b8886", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T05:11:23.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:19.000Z" - }, - "events": [ - { - "uuid": "4c9666c6-1841-452d-969d-1d0a0dc46907", - "start": { - "$date": "2020-12-29T05:11:23.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28995408-ccf8-4271-ad4a-d6f7131f8d07", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-29T05:12:22.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:12.000Z" - }, - "events": [ - { - "uuid": "b77636cc-a4b3-47da-b14e-97b0b49ec3c9", - "start": { - "$date": "2020-12-29T05:12:22.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d2549db-850f-458c-9e26-ff9cea1fb16f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T05:11:19.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:15.000Z" - }, - "events": [ - { - "uuid": "932aece3-6df1-45d4-9d01-55af67987d27", - "start": { - "$date": "2020-12-29T05:11:19.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30278465-6447-4ab3-9b5e-dd333ff58140", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T05:11:23.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:22.000Z" - }, - "events": [ - { - "uuid": "c9598e95-24c9-4fab-8fa3-fe9b5f220537", - "start": { - "$date": "2020-12-29T05:11:23.000Z" - }, - "end": { - "$date": "2020-12-29T05:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "24d4d365-0a7a-452f-8537-6a8d6ee2aac7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-29T05:18:58.000Z" - }, - "end": { - "$date": "2020-12-29T06:07:59.000Z" - }, - "events": [ - { - "uuid": "e8a9c624-0cd3-4cd9-a259-8aec5f169e65", - "start": { - "$date": "2020-12-29T05:18:58.000Z" - }, - "end": { - "$date": "2020-12-29T06:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddf86c27-07ff-4c93-be94-1758fe5cfd30", - "uuid": "179b05d5-691b-4f3c-b5d7-cb2f1d63764a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-29T05:24:19.000Z" - }, - "end": { - "$date": "2020-12-29T05:27:26.000Z" - }, - "events": [ - { - "uuid": "475f0b18-8ce6-42ba-85c4-b0d730e8e62b", - "start": { - "$date": "2020-12-29T05:24:19.000Z" - }, - "end": { - "$date": "2020-12-29T05:27:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddf86c27-07ff-4c93-be94-1758fe5cfd30", - "uuid": "17c6bcc9-4856-42cd-bf52-710fe2e46b32", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-29T05:27:29.000Z" - }, - "end": { - "$date": "2020-12-29T06:39:15.000Z" - }, - "events": [ - { - "uuid": "fb33aeba-2fef-48fa-9371-b06f2ec0ea10", - "start": { - "$date": "2020-12-29T05:27:29.000Z" - }, - "end": { - "$date": "2020-12-29T05:54:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f59707e4-d29d-4c59-b507-806a3ffe387a", - "start": { - "$date": "2020-12-29T05:54:29.000Z" - }, - "end": { - "$date": "2020-12-29T05:55:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee63b597-ee0b-485a-ba75-5e967ebb459e", - "start": { - "$date": "2020-12-29T05:55:29.000Z" - }, - "end": { - "$date": "2020-12-29T06:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2c4fae4-21f9-486f-8e37-bcdaf75e0f4f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T05:36:14.000Z" - }, - "end": { - "$date": "2020-12-29T06:06:08.000Z" - }, - "events": [ - { - "uuid": "236f0727-bd62-4705-b81d-11fb36edf2a8", - "start": { - "$date": "2020-12-29T05:36:14.000Z" - }, - "end": { - "$date": "2020-12-29T06:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f9582b0-00b5-442e-95dd-eacec108c5f3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-29T05:36:13.000Z" - }, - "end": { - "$date": "2020-12-29T06:05:58.000Z" - }, - "events": [ - { - "uuid": "c4e8f1d6-0ebf-433f-a83d-63026f2b2b2f", - "start": { - "$date": "2020-12-29T05:36:13.000Z" - }, - "end": { - "$date": "2020-12-29T06:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77eb4a58-25ab-4ec9-9423-2ae363b12714", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T05:36:14.000Z" - }, - "end": { - "$date": "2020-12-29T06:06:05.000Z" - }, - "events": [ - { - "uuid": "2b6a10cb-d403-4b98-aee8-ee3679061378", - "start": { - "$date": "2020-12-29T05:36:14.000Z" - }, - "end": { - "$date": "2020-12-29T06:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2a5427a-ca56-4120-8295-a823442e4c09", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T05:36:09.000Z" - }, - "end": { - "$date": "2020-12-29T06:05:56.000Z" - }, - "events": [ - { - "uuid": "0596e1be-7afa-4764-a44c-e9d6462c1c14", - "start": { - "$date": "2020-12-29T05:36:09.000Z" - }, - "end": { - "$date": "2020-12-29T06:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9067c6de-12d3-49ef-9176-ba20d7375fe0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T06:06:15.000Z" - }, - "end": { - "$date": "2020-12-29T06:07:27.000Z" - }, - "events": [ - { - "uuid": "fa4c7846-4c6b-46b4-8746-1a488e22bc4d", - "start": { - "$date": "2020-12-29T06:06:15.000Z" - }, - "end": { - "$date": "2020-12-29T06:07:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "cc32776a-1976-4ff2-9e1b-db0a13bc32af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T06:46:31.000Z" - }, - "end": { - "$date": "2020-12-29T08:17:15.000Z" - }, - "events": [ - { - "uuid": "fa4f715f-287b-4e86-a926-1c3efc795789", - "start": { - "$date": "2020-12-29T06:46:31.000Z" - }, - "end": { - "$date": "2020-12-29T08:17:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa2496ff-7e66-4d22-8b88-01c6ce1abe7b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T08:45:04.000Z" - }, - "end": { - "$date": "2020-12-29T09:15:46.000Z" - }, - "events": [ - { - "uuid": "5def46c5-ab7c-48b3-b3f9-5497e18e3433", - "start": { - "$date": "2020-12-29T08:45:04.000Z" - }, - "end": { - "$date": "2020-12-29T09:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8e0d933e-c8c7-48f6-845d-d0cd9d664898", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-29T08:28:27.000Z" - }, - "end": { - "$date": "2020-12-29T09:11:50.000Z" - }, - "events": [ - { - "uuid": "be40e5b0-dc9d-43df-b585-f60bc839a9d8", - "start": { - "$date": "2020-12-29T08:28:27.000Z" - }, - "end": { - "$date": "2020-12-29T09:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "82198782-0c3d-4875-8fd0-57256b25f534", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-29T08:28:37.000Z" - }, - "end": { - "$date": "2020-12-29T09:09:19.000Z" - }, - "events": [ - { - "uuid": "6e890d67-41f0-4d07-b90f-7e7da6ca607b", - "start": { - "$date": "2020-12-29T08:28:37.000Z" - }, - "end": { - "$date": "2020-12-29T09:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "b0049ee0-0514-412d-826c-6d1070fa4aa0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-29T09:51:34.000Z" - }, - "end": { - "$date": "2020-12-29T10:18:41.000Z" - }, - "events": [ - { - "uuid": "78c19b5f-ae5e-4ca7-b7bb-3da9a0f3ee1b", - "start": { - "$date": "2020-12-29T09:51:34.000Z" - }, - "end": { - "$date": "2020-12-29T10:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "eddb61d1-96fb-4554-8fc0-0d2a2ce7413d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T14:25:54.000Z" - }, - "end": { - "$date": "2020-12-29T15:18:09.000Z" - }, - "events": [ - { - "uuid": "bef16e9d-75eb-4dc9-b7d9-5e80d750d934", - "start": { - "$date": "2020-12-29T14:25:54.000Z" - }, - "end": { - "$date": "2020-12-29T15:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62fe2487-530b-41f5-9542-ef7e12d383ed", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T15:26:41.000Z" - }, - "end": { - "$date": "2020-12-29T15:46:15.000Z" - }, - "events": [ - { - "uuid": "667057b9-8717-4caa-88f2-2a5b52f6bf7d", - "start": { - "$date": "2020-12-29T15:26:41.000Z" - }, - "end": { - "$date": "2020-12-29T15:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a6b9ffa9-c496-4664-8434-6813e447dcf8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T15:53:58.000Z" - }, - "end": { - "$date": "2020-12-29T16:36:09.000Z" - }, - "events": [ - { - "uuid": "85cedd7d-3650-45ab-b6cb-49ae7b7ce96c", - "start": { - "$date": "2020-12-29T15:53:58.000Z" - }, - "end": { - "$date": "2020-12-29T16:36:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8edaffd7-35c2-4da8-9685-0b3eed943494", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-29T16:23:19.000Z" - }, - "end": { - "$date": "2020-12-29T17:02:35.000Z" - }, - "events": [ - { - "uuid": "c2356bfa-69f1-4904-81ec-9dd1a558b21c", - "start": { - "$date": "2020-12-29T16:23:19.000Z" - }, - "end": { - "$date": "2020-12-29T17:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7e739dff-e635-47be-88ab-12d4bff8760f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T16:37:15.000Z" - }, - "end": { - "$date": "2020-12-29T16:54:36.000Z" - }, - "events": [ - { - "uuid": "7a780ab4-a0f5-4a50-8193-d1102443f266", - "start": { - "$date": "2020-12-29T16:37:15.000Z" - }, - "end": { - "$date": "2020-12-29T16:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5e7984ba-4b86-4841-a916-6e4c02ebcdb7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-29T17:30:03.000Z" - }, - "end": { - "$date": "2020-12-29T17:48:39.000Z" - }, - "events": [ - { - "uuid": "bbc7529a-da4b-4487-93f9-a6e2afab970a", - "start": { - "$date": "2020-12-29T17:30:03.000Z" - }, - "end": { - "$date": "2020-12-29T17:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c6d9c4a9-ec16-4001-91dc-3ec1eca3d2f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T17:44:04.000Z" - }, - "end": { - "$date": "2020-12-29T20:11:23.000Z" - }, - "events": [ - { - "uuid": "2465fefc-46db-4f41-b6ea-c7a037d06705", - "start": { - "$date": "2020-12-29T17:44:04.000Z" - }, - "end": { - "$date": "2020-12-29T18:36:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "16052d50-10fe-4638-a041-13e2d6ac3830", - "start": { - "$date": "2020-12-29T18:36:04.000Z" - }, - "end": { - "$date": "2020-12-29T18:39:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23a9c946-e466-441d-88c5-3445879d8bbe", - "start": { - "$date": "2020-12-29T18:39:04.000Z" - }, - "end": { - "$date": "2020-12-29T20:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "18b8e1c8-244c-4a85-8d72-d3e635452c96", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-29T17:50:24.000Z" - }, - "end": { - "$date": "2020-12-29T17:57:14.000Z" - }, - "events": [ - { - "uuid": "a8604e21-e3ca-48e1-b5ff-f7663977f9ee", - "start": { - "$date": "2020-12-29T17:50:24.000Z" - }, - "end": { - "$date": "2020-12-29T17:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "ed85bc12-3f79-4384-af98-7f04682a5683", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-29T17:50:25.000Z" - }, - "end": { - "$date": "2020-12-29T21:18:14.000Z" - }, - "events": [ - { - "uuid": "eb17fae2-2cb6-49c7-89b3-e9c2a8bff7d4", - "start": { - "$date": "2020-12-29T17:50:25.000Z" - }, - "end": { - "$date": "2020-12-29T21:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "7cdf03eb-a365-4bb5-9869-a4661f3a0e5a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-29T17:57:25.000Z" - }, - "end": { - "$date": "2020-12-29T21:06:02.000Z" - }, - "events": [ - { - "uuid": "bacfc0bf-2141-4ccd-bdeb-01aa2be2c518", - "start": { - "$date": "2020-12-29T17:57:25.000Z" - }, - "end": { - "$date": "2020-12-29T20:10:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "728415ad-3be8-4eb4-9394-2e66dc3a7b54", - "start": { - "$date": "2020-12-29T20:10:25.000Z" - }, - "end": { - "$date": "2020-12-29T20:16:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91e1dbcf-cd08-4d0d-99cd-a260d75d1314", - "start": { - "$date": "2020-12-29T20:16:25.000Z" - }, - "end": { - "$date": "2020-12-29T21:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "0a5831d2-9f80-4025-a95c-08d2c7df87bd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-29T19:03:46.000Z" - }, - "end": { - "$date": "2020-12-29T20:46:45.000Z" - }, - "events": [ - { - "uuid": "fe0166e4-e453-42ff-82d8-ea4646ef317b", - "start": { - "$date": "2020-12-29T19:03:46.000Z" - }, - "end": { - "$date": "2020-12-29T20:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cef544f9-5af2-4cba-a193-22a7a000128e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T19:19:56.000Z" - }, - "end": { - "$date": "2020-12-29T21:50:42.000Z" - }, - "events": [ - { - "uuid": "fa2180ff-9f28-4fb9-842c-3a6ec456afcb", - "start": { - "$date": "2020-12-29T19:19:56.000Z" - }, - "end": { - "$date": "2020-12-29T21:50:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fb94def-195e-4eaf-b2c9-31f67f6bc8e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T20:33:52.000Z" - }, - "end": { - "$date": "2020-12-29T20:34:02.000Z" - }, - "events": [ - { - "uuid": "c98ab273-eb20-41e6-bfc6-1eab975b7b08", - "start": { - "$date": "2020-12-29T20:33:52.000Z" - }, - "end": { - "$date": "2020-12-29T20:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "c146047f-4b06-4312-ab69-baa7bf04ae1a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-29T20:20:22.000Z" - }, - "end": { - "$date": "2020-12-29T20:45:58.000Z" - }, - "events": [ - { - "uuid": "a6c92f8b-7135-4bb6-9f6c-e672798d07b5", - "start": { - "$date": "2020-12-29T20:20:22.000Z" - }, - "end": { - "$date": "2020-12-29T20:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55d1ae24-30f4-4c60-8c3d-b8b7ba58dc48", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T20:41:21.000Z" - }, - "end": { - "$date": "2020-12-29T21:10:41.000Z" - }, - "events": [ - { - "uuid": "a471508f-dd2a-4245-b2af-e94f3d78ac98", - "start": { - "$date": "2020-12-29T20:41:21.000Z" - }, - "end": { - "$date": "2020-12-29T21:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8bef3ce-a537-4d73-8371-93f811a48e61", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T20:41:23.000Z" - }, - "end": { - "$date": "2020-12-29T21:10:42.000Z" - }, - "events": [ - { - "uuid": "cc00e0e2-63c7-4074-b061-192b639b5450", - "start": { - "$date": "2020-12-29T20:41:23.000Z" - }, - "end": { - "$date": "2020-12-29T21:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "33eac253-2f32-4e72-a0c9-3cadf06a8c12", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-29T20:46:22.000Z" - }, - "end": { - "$date": "2020-12-29T21:17:50.000Z" - }, - "events": [ - { - "uuid": "e3fb462c-66ff-4a96-a622-a26d03a9a3ae", - "start": { - "$date": "2020-12-29T20:46:22.000Z" - }, - "end": { - "$date": "2020-12-29T21:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "758427f5-a666-4595-93d7-b1ee4db5b179", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T21:20:17.000Z" - }, - "end": { - "$date": "2020-12-29T21:23:42.000Z" - }, - "events": [ - { - "uuid": "d0a6f4f3-5f8f-4fd6-986a-12811935c9ef", - "start": { - "$date": "2020-12-29T21:20:17.000Z" - }, - "end": { - "$date": "2020-12-29T21:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0de6a481-4c94-421c-85b0-897b43684579", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T21:18:10.000Z" - }, - "end": { - "$date": "2020-12-29T21:23:41.000Z" - }, - "events": [ - { - "uuid": "ff2b3f94-e184-4c27-9c3d-be0cfa22dc58", - "start": { - "$date": "2020-12-29T21:18:10.000Z" - }, - "end": { - "$date": "2020-12-29T21:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "0f86bf34-c7fc-442f-a429-4b694f6ccd29", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-29T21:18:49.000Z" - }, - "end": { - "$date": "2020-12-29T21:36:14.000Z" - }, - "events": [ - { - "uuid": "5fe9524e-8d8f-483b-b7b2-c5aa2f1a3853", - "start": { - "$date": "2020-12-29T21:18:49.000Z" - }, - "end": { - "$date": "2020-12-29T21:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "99f1384a-985f-4682-aac7-c9c9917eaddc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-29T21:21:14.000Z" - }, - "end": { - "$date": "2020-12-29T23:09:20.000Z" - }, - "events": [ - { - "uuid": "4a33e604-f458-4cb2-96a5-aca79906167f", - "start": { - "$date": "2020-12-29T21:21:14.000Z" - }, - "end": { - "$date": "2020-12-29T23:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2856660c-8223-47bc-b4ad-342505eb1b9b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T23:26:14.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:19.000Z" - }, - "events": [ - { - "uuid": "53bd986c-4134-400c-8c00-e455124293db", - "start": { - "$date": "2020-12-29T23:26:14.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69eb29fc-ba51-4bfb-9790-4e2198732f41", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T21:56:02.000Z" - }, - "end": { - "$date": "2020-12-29T21:56:13.000Z" - }, - "events": [ - { - "uuid": "25782fe0-48a5-4fa7-8c0e-27a5680c5e5a", - "start": { - "$date": "2020-12-29T21:56:02.000Z" - }, - "end": { - "$date": "2020-12-29T21:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a068b95-1e49-404a-a5c6-6db1dd3f5fcc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T21:56:44.000Z" - }, - "end": { - "$date": "2020-12-29T21:57:49.000Z" - }, - "events": [ - { - "uuid": "3fad09e3-35be-457c-8c2d-fd50cefa8ece", - "start": { - "$date": "2020-12-29T21:56:44.000Z" - }, - "end": { - "$date": "2020-12-29T21:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45422738-e5d2-4718-bb3e-ca0c773fde4f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T21:56:41.000Z" - }, - "end": { - "$date": "2020-12-29T21:57:49.000Z" - }, - "events": [ - { - "uuid": "0074025d-17e0-49c2-a5df-d2bdbf410921", - "start": { - "$date": "2020-12-29T21:56:41.000Z" - }, - "end": { - "$date": "2020-12-29T21:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0405ce2-b7e5-438a-ae8b-574912833e27", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T22:06:11.000Z" - }, - "end": { - "$date": "2020-12-29T22:31:42.000Z" - }, - "events": [ - { - "uuid": "f2de5d7d-6092-46ec-b7e0-ea18d3f2e202", - "start": { - "$date": "2020-12-29T22:06:11.000Z" - }, - "end": { - "$date": "2020-12-29T22:31:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a269fa73-81cd-48b1-afca-e89af4b167b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T22:05:43.000Z" - }, - "end": { - "$date": "2020-12-29T22:31:41.000Z" - }, - "events": [ - { - "uuid": "b2b2b7fb-a600-4bca-b6b8-f54afc85bbb7", - "start": { - "$date": "2020-12-29T22:05:43.000Z" - }, - "end": { - "$date": "2020-12-29T22:31:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3ef7d20-54b7-4f68-b36f-b9b1bf6a57e1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T22:34:47.000Z" - }, - "end": { - "$date": "2020-12-29T23:20:38.000Z" - }, - "events": [ - { - "uuid": "9c7682be-6cf5-4c62-955a-15e082d4df5e", - "start": { - "$date": "2020-12-29T22:34:47.000Z" - }, - "end": { - "$date": "2020-12-29T23:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "470ed2ea-a77a-4e66-aa48-c26278699a81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T22:34:47.000Z" - }, - "end": { - "$date": "2020-12-29T23:20:39.000Z" - }, - "events": [ - { - "uuid": "ba8d2bc4-f31b-4b3f-9d80-4c5b8cf5cfd0", - "start": { - "$date": "2020-12-29T22:34:47.000Z" - }, - "end": { - "$date": "2020-12-29T23:20:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddb7f0b6-d04c-41df-9407-b93315c52f61", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T23:20:50.000Z" - }, - "end": { - "$date": "2020-12-29T23:20:47.000Z" - }, - "events": [ - { - "uuid": "27482aad-28f2-4409-8aa7-123e5d871ceb", - "start": { - "$date": "2020-12-29T23:20:50.000Z" - }, - "end": { - "$date": "2020-12-29T23:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "64177e1f-7fc9-46a3-ba0f-fbc13732e1d1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-29T23:13:20.000Z" - }, - "end": { - "$date": "2020-12-29T23:16:16.000Z" - }, - "events": [ - { - "uuid": "5fb60aed-d9cb-49b1-a790-2bc830f95bfc", - "start": { - "$date": "2020-12-29T23:13:20.000Z" - }, - "end": { - "$date": "2020-12-29T23:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02e26eb2-0caa-4196-b560-c6cfbf65306c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-29T23:27:49.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:19.000Z" - }, - "events": [ - { - "uuid": "dd2b0689-6e36-4700-9415-8f4efbef7473", - "start": { - "$date": "2020-12-29T23:27:49.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b496c83b-d908-482a-bd2d-7706d92030e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-29T23:28:18.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:20.000Z" - }, - "events": [ - { - "uuid": "9f02f2e8-0673-4c2b-973c-17410f06ac21", - "start": { - "$date": "2020-12-29T23:28:18.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "451951db-0f0b-4f6f-b279-277dfee5e21b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-29T23:26:21.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:28.000Z" - }, - "events": [ - { - "uuid": "ad55bd7b-0db3-4efa-bec6-b0397bbb54e1", - "start": { - "$date": "2020-12-29T23:26:21.000Z" - }, - "end": { - "$date": "2020-12-29T23:43:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aae48fb-221f-4cf1-9077-682797662aac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-29T23:50:40.000Z" - }, - "end": { - "$date": "2020-12-30T00:09:36.000Z" - }, - "events": [ - { - "uuid": "2f217ebd-e101-47db-913e-d79098e59fc7", - "start": { - "$date": "2020-12-29T23:50:40.000Z" - }, - "end": { - "$date": "2020-12-30T00:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03252582-f765-4cf1-96e1-e7c0cf3d7aa9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-29T23:50:48.000Z" - }, - "end": { - "$date": "2020-12-30T00:09:35.000Z" - }, - "events": [ - { - "uuid": "ebb899e2-0d3e-41ca-b758-6b683a01281e", - "start": { - "$date": "2020-12-29T23:50:48.000Z" - }, - "end": { - "$date": "2020-12-30T00:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a0db09b-0030-4ac8-abe7-9eb4cdf2d4b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-29T23:50:46.000Z" - }, - "end": { - "$date": "2020-12-30T00:09:39.000Z" - }, - "events": [ - { - "uuid": "db590269-0bea-4c3d-8d74-8da1bcde17be", - "start": { - "$date": "2020-12-29T23:50:46.000Z" - }, - "end": { - "$date": "2020-12-30T00:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5488f827-2ad9-4a0b-a27f-20d94ee803eb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T00:26:06.000Z" - }, - "end": { - "$date": "2020-12-30T01:10:29.000Z" - }, - "events": [ - { - "uuid": "54ebca83-9574-4752-b92a-07bc4d35e37f", - "start": { - "$date": "2020-12-30T00:26:06.000Z" - }, - "end": { - "$date": "2020-12-30T01:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "b0319d21-e2cc-45b9-adbb-9f67eead8b12", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-30T01:09:40.000Z" - }, - "end": { - "$date": "2020-12-30T01:53:09.000Z" - }, - "events": [ - { - "uuid": "c2c52dd9-dcf7-4843-938d-ba7f10dbc683", - "start": { - "$date": "2020-12-30T01:09:40.000Z" - }, - "end": { - "$date": "2020-12-30T01:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "9e40a9ef-557a-48ee-a275-6592dfd490df", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T03:45:07.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:38.000Z" - }, - "events": [ - { - "uuid": "2ed2fae8-b1cc-42e8-916a-1efb5f0f59cc", - "start": { - "$date": "2020-12-30T03:45:07.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "464db7ea-2f86-40e1-b363-7bf77e599a08", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T01:22:03.000Z" - }, - "end": { - "$date": "2020-12-30T01:42:38.000Z" - }, - "events": [ - { - "uuid": "185ee23e-15ba-4d31-8681-3f76b09cb6fa", - "start": { - "$date": "2020-12-30T01:22:03.000Z" - }, - "end": { - "$date": "2020-12-30T01:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a35b358-c4b6-40dc-b620-62129561ef88", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-30T01:22:06.000Z" - }, - "end": { - "$date": "2020-12-30T01:42:39.000Z" - }, - "events": [ - { - "uuid": "7abbbc53-5e4d-4d00-ab47-5f84037282ea", - "start": { - "$date": "2020-12-30T01:22:06.000Z" - }, - "end": { - "$date": "2020-12-30T01:42:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45eb3ece-2ec8-4c0a-90b8-6fddec31b010", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T01:22:05.000Z" - }, - "end": { - "$date": "2020-12-30T01:42:39.000Z" - }, - "events": [ - { - "uuid": "dafe7194-e562-4041-b32a-6fa8e88e75c5", - "start": { - "$date": "2020-12-30T01:22:05.000Z" - }, - "end": { - "$date": "2020-12-30T01:42:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bf6b8b4-be6b-4929-b30e-643602b62ca8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T01:47:24.000Z" - }, - "end": { - "$date": "2020-12-30T02:07:54.000Z" - }, - "events": [ - { - "uuid": "0258ea1e-9aca-47f4-b5c0-515ebfc0caa6", - "start": { - "$date": "2020-12-30T01:47:24.000Z" - }, - "end": { - "$date": "2020-12-30T02:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f6392a8-3746-47d5-b23d-3f3c0d89ac5b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-30T01:47:32.000Z" - }, - "end": { - "$date": "2020-12-30T02:07:50.000Z" - }, - "events": [ - { - "uuid": "bfa72482-8d4a-448e-8aa3-c1b3ad2d494e", - "start": { - "$date": "2020-12-30T01:47:32.000Z" - }, - "end": { - "$date": "2020-12-30T02:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47cbf228-39ba-436b-ad85-9a3acca41acc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T01:47:26.000Z" - }, - "end": { - "$date": "2020-12-30T02:07:53.000Z" - }, - "events": [ - { - "uuid": "87b5fd7c-bc41-4b8c-b855-5763ba7ebf85", - "start": { - "$date": "2020-12-30T01:47:26.000Z" - }, - "end": { - "$date": "2020-12-30T02:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc736fe5-d86c-47b9-91e7-059cca8de67a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T02:15:46.000Z" - }, - "end": { - "$date": "2020-12-30T02:35:07.000Z" - }, - "events": [ - { - "uuid": "b09ff869-8de2-4af1-99f0-675d79c647cd", - "start": { - "$date": "2020-12-30T02:15:46.000Z" - }, - "end": { - "$date": "2020-12-30T02:35:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17d5e620-fbf7-4ceb-86e9-aa63842bc5fa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-30T02:15:54.000Z" - }, - "end": { - "$date": "2020-12-30T02:35:07.000Z" - }, - "events": [ - { - "uuid": "3c91d15b-f3f5-45e5-894d-566dc05863b9", - "start": { - "$date": "2020-12-30T02:15:54.000Z" - }, - "end": { - "$date": "2020-12-30T02:35:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8d14d34-53b5-4e06-a50a-64ce789c58c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T02:15:53.000Z" - }, - "end": { - "$date": "2020-12-30T02:35:10.000Z" - }, - "events": [ - { - "uuid": "7212ea29-528e-4359-af11-3cbe8403e329", - "start": { - "$date": "2020-12-30T02:15:53.000Z" - }, - "end": { - "$date": "2020-12-30T02:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "09bcee4e-cba9-4ae4-a778-2ec661a5e375", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-30T02:34:17.000Z" - }, - "end": { - "$date": "2020-12-30T03:02:56.000Z" - }, - "events": [ - { - "uuid": "76cfa660-a3e5-48f3-afcf-bf9245fcb96b", - "start": { - "$date": "2020-12-30T02:34:17.000Z" - }, - "end": { - "$date": "2020-12-30T03:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1830bd58-4e33-4679-83c0-8f7f89325be1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T02:40:53.000Z" - }, - "end": { - "$date": "2020-12-30T02:58:08.000Z" - }, - "events": [ - { - "uuid": "366b2ed8-27bc-404d-8046-82dbc2d24d0a", - "start": { - "$date": "2020-12-30T02:40:53.000Z" - }, - "end": { - "$date": "2020-12-30T02:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1260b7a6-bf09-4e23-93ea-8c15774519c6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-30T02:40:58.000Z" - }, - "end": { - "$date": "2020-12-30T02:58:09.000Z" - }, - "events": [ - { - "uuid": "2a4630cf-5fa2-4e70-8bf5-33500f439510", - "start": { - "$date": "2020-12-30T02:40:58.000Z" - }, - "end": { - "$date": "2020-12-30T02:58:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fd49844-5cfd-4f7f-80e0-7901849ee61f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T02:40:50.000Z" - }, - "end": { - "$date": "2020-12-30T02:57:57.000Z" - }, - "events": [ - { - "uuid": "754dde77-a33a-45db-8dbf-0abe38d92209", - "start": { - "$date": "2020-12-30T02:40:50.000Z" - }, - "end": { - "$date": "2020-12-30T02:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "70808b16-ac93-4db9-9292-1f118f7b3fc2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-30T02:39:32.000Z" - }, - "end": { - "$date": "2020-12-30T02:48:43.000Z" - }, - "events": [ - { - "uuid": "d8b6d7dd-49e4-47e3-a32b-718a0a86f0d9", - "start": { - "$date": "2020-12-30T02:39:32.000Z" - }, - "end": { - "$date": "2020-12-30T02:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fdfba13b-7d58-48c3-a9f6-34da9e1813b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-30T02:49:03.000Z" - }, - "end": { - "$date": "2020-12-30T05:21:14.000Z" - }, - "events": [ - { - "uuid": "ed5af89d-44a0-4148-a20d-9e4bc539e849", - "start": { - "$date": "2020-12-30T02:49:03.000Z" - }, - "end": { - "$date": "2020-12-30T05:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e7ce4d2-3974-4f6f-95af-f7bc4878dd44", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T03:45:12.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:42.000Z" - }, - "events": [ - { - "uuid": "19613d83-25f6-49a2-b43b-6f257f848260", - "start": { - "$date": "2020-12-30T03:45:12.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3b3b20c-d4d2-40b8-a4f7-c319390bed91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T03:03:31.000Z" - }, - "end": { - "$date": "2020-12-30T03:35:28.000Z" - }, - "events": [ - { - "uuid": "30d91881-a2ef-404b-a839-572530372c84", - "start": { - "$date": "2020-12-30T03:03:31.000Z" - }, - "end": { - "$date": "2020-12-30T03:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "edbc70f8-d84f-4547-8b8b-1cf8492e4203", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T03:01:14.000Z" - }, - "end": { - "$date": "2020-12-30T03:23:15.000Z" - }, - "events": [ - { - "uuid": "140492fb-a06c-4223-96a0-1a4a9c9e7b8b", - "start": { - "$date": "2020-12-30T03:01:14.000Z" - }, - "end": { - "$date": "2020-12-30T03:23:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c9f451e3-9854-47ac-8620-6a40ee34382b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-30T03:03:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:35:00.000Z" - }, - "events": [ - { - "uuid": "a012851f-217c-4eec-a582-2cc378e1af90", - "start": { - "$date": "2020-12-30T03:03:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:35:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d938eef-042b-4e26-a4b9-ff27f7869c07", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T03:36:54.000Z" - }, - "end": { - "$date": "2020-12-30T03:38:26.000Z" - }, - "events": [ - { - "uuid": "9c7208dd-d2d4-453e-b078-84e3fbd5039f", - "start": { - "$date": "2020-12-30T03:36:54.000Z" - }, - "end": { - "$date": "2020-12-30T03:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80625a8e-838a-4a95-be6d-c680501bd1dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T03:36:58.000Z" - }, - "end": { - "$date": "2020-12-30T03:38:26.000Z" - }, - "events": [ - { - "uuid": "94bcf088-68c7-42ee-a037-fc470510e1c8", - "start": { - "$date": "2020-12-30T03:36:58.000Z" - }, - "end": { - "$date": "2020-12-30T03:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b60a2713-c505-4f81-83e8-e73cffdba4d6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T03:39:37.000Z" - }, - "end": { - "$date": "2020-12-30T03:40:53.000Z" - }, - "events": [ - { - "uuid": "c43e721d-a8ce-44d2-b530-49088a05be0d", - "start": { - "$date": "2020-12-30T03:39:37.000Z" - }, - "end": { - "$date": "2020-12-30T03:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4decad69-558d-4078-a121-65b54ddcf2e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T03:39:36.000Z" - }, - "end": { - "$date": "2020-12-30T03:40:53.000Z" - }, - "events": [ - { - "uuid": "78a30a63-c6b7-4c8a-a167-799051cc8aa8", - "start": { - "$date": "2020-12-30T03:39:36.000Z" - }, - "end": { - "$date": "2020-12-30T03:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8339dce-5b00-4903-8338-cf480e60a1a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T03:39:41.000Z" - }, - "end": { - "$date": "2020-12-30T03:40:53.000Z" - }, - "events": [ - { - "uuid": "477320f4-3270-4bcd-b3c5-3c82ad7b411f", - "start": { - "$date": "2020-12-30T03:39:41.000Z" - }, - "end": { - "$date": "2020-12-30T03:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0808de05-9d9e-4a7f-b6dc-84ac5421f6a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T03:42:26.000Z" - }, - "end": { - "$date": "2020-12-30T03:57:08.000Z" - }, - "events": [ - { - "uuid": "4c6daf88-e0d2-41c0-9583-c0c52a5c12f0", - "start": { - "$date": "2020-12-30T03:42:26.000Z" - }, - "end": { - "$date": "2020-12-30T03:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94f04d4d-0b2e-455b-bc52-04825a3b00c3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T03:45:10.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:41.000Z" - }, - "events": [ - { - "uuid": "0160dcbc-1461-45d0-aa88-543521a5f733", - "start": { - "$date": "2020-12-30T03:45:10.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "576e4fc8-9d1a-4eeb-bf4a-dd2736c947f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T03:46:01.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:37.000Z" - }, - "events": [ - { - "uuid": "c29eb30a-b7ec-4f67-b64b-a70cb7d083d5", - "start": { - "$date": "2020-12-30T03:46:01.000Z" - }, - "end": { - "$date": "2020-12-30T03:56:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "31a54189-25c3-4cf5-b7b3-bec17e797b35", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-30T03:49:49.000Z" - }, - "end": { - "$date": "2020-12-30T06:36:44.000Z" - }, - "events": [ - { - "uuid": "07a04dab-9891-4d2f-b3e0-740dd18e460f", - "start": { - "$date": "2020-12-30T03:49:49.000Z" - }, - "end": { - "$date": "2020-12-30T06:36:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6fbd70a-4de7-4b03-851f-4bb5a070a0aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T04:00:03.000Z" - }, - "end": { - "$date": "2020-12-30T04:18:04.000Z" - }, - "events": [ - { - "uuid": "1586a734-6c94-43af-a2ff-e00afff7fd39", - "start": { - "$date": "2020-12-30T04:00:03.000Z" - }, - "end": { - "$date": "2020-12-30T04:18:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1691fbc8-bbf7-4414-9bcc-7b5f0c5a51d0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T03:59:58.000Z" - }, - "end": { - "$date": "2020-12-30T04:18:09.000Z" - }, - "events": [ - { - "uuid": "c85e879b-6127-4e98-bb28-7208470fe9db", - "start": { - "$date": "2020-12-30T03:59:58.000Z" - }, - "end": { - "$date": "2020-12-30T04:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db5f7673-6dee-4d73-a67b-24f50cf15fa0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T04:00:37.000Z" - }, - "end": { - "$date": "2020-12-30T04:17:57.000Z" - }, - "events": [ - { - "uuid": "33c78f64-ec3d-45f6-babc-3d033acebb28", - "start": { - "$date": "2020-12-30T04:00:37.000Z" - }, - "end": { - "$date": "2020-12-30T04:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5cc9ce3-a10b-42ef-b9cb-38dbfb89660c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T04:00:37.000Z" - }, - "end": { - "$date": "2020-12-30T04:17:57.000Z" - }, - "events": [ - { - "uuid": "ccfbe442-dc4f-4e66-aedc-9cfc386198ba", - "start": { - "$date": "2020-12-30T04:00:37.000Z" - }, - "end": { - "$date": "2020-12-30T04:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c632494d-b4ed-40f7-b68e-f391d3d38e24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T04:00:07.000Z" - }, - "end": { - "$date": "2020-12-30T04:18:10.000Z" - }, - "events": [ - { - "uuid": "fdbfb861-d4b3-4136-8d27-8532e61f35a0", - "start": { - "$date": "2020-12-30T04:00:07.000Z" - }, - "end": { - "$date": "2020-12-30T04:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2887d669-420b-44d3-8a51-d10420d78ff7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T04:21:40.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:56.000Z" - }, - "events": [ - { - "uuid": "fed897f2-ac0a-4a11-8f20-45b2d4d8fd88", - "start": { - "$date": "2020-12-30T04:21:40.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0585f938-5c24-454e-8b60-ff9316c6a3e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T04:18:22.000Z" - }, - "end": { - "$date": "2020-12-30T04:27:18.000Z" - }, - "events": [ - { - "uuid": "4c14be23-8ceb-40c8-82d2-bf22f23302dd", - "start": { - "$date": "2020-12-30T04:18:22.000Z" - }, - "end": { - "$date": "2020-12-30T04:27:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f8e5ee7-2b04-4da1-94c6-ca49c8007336", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T04:21:39.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:45.000Z" - }, - "events": [ - { - "uuid": "80885006-4630-4b47-950b-7d0979183058", - "start": { - "$date": "2020-12-30T04:21:39.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55b09b25-b0d5-48b5-b562-c6f52f44f3c1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T04:22:07.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:48.000Z" - }, - "events": [ - { - "uuid": "9f681d07-9c86-48f0-9820-22044985d86c", - "start": { - "$date": "2020-12-30T04:22:07.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7ded1b0-4938-496f-81bc-d628401caf4d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T04:21:43.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:57.000Z" - }, - "events": [ - { - "uuid": "b259bcd7-e0c3-4cad-8d97-046a82cba8a2", - "start": { - "$date": "2020-12-30T04:21:43.000Z" - }, - "end": { - "$date": "2020-12-30T04:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2987dfb4-fb6a-4b93-a357-ff2b813860f9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T04:45:43.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:14.000Z" - }, - "events": [ - { - "uuid": "661e2ff7-ce58-477d-a9e0-05ad1f548740", - "start": { - "$date": "2020-12-30T04:45:43.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14ab35f0-fdcc-4bad-8f12-55e14585209b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T04:45:39.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:11.000Z" - }, - "events": [ - { - "uuid": "c5dfe854-316f-4187-bfe5-1f5588363484", - "start": { - "$date": "2020-12-30T04:45:39.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abbcff96-e179-409b-99df-6349a6cffaa4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T04:45:49.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:12.000Z" - }, - "events": [ - { - "uuid": "1fe525c6-8d9d-422c-87da-68badf6e9fb3", - "start": { - "$date": "2020-12-30T04:45:49.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3e1d892-ef09-4a6a-a1cd-c85e46fb54ff", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T04:45:43.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:03.000Z" - }, - "events": [ - { - "uuid": "17285f39-dd15-4a06-8bad-be8590c9db14", - "start": { - "$date": "2020-12-30T04:45:43.000Z" - }, - "end": { - "$date": "2020-12-30T05:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1cc5c4e2-ac5b-4632-80c9-b09cc9a41c1a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T04:52:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:42:53.000Z" - }, - "events": [ - { - "uuid": "4dc54398-6a43-4590-94a6-a6594cebe27f", - "start": { - "$date": "2020-12-30T04:52:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:04:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "870c708b-9166-42ff-af02-2107f99a5dfe", - "start": { - "$date": "2020-12-30T06:04:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:13:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c6ab87d3-d45e-4fa9-9bb8-7bdd9318aabd", - "start": { - "$date": "2020-12-30T06:13:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:16:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01a5509d-923a-46f7-9e11-9524a04c3481", - "start": { - "$date": "2020-12-30T06:16:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:23:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3368a361-5b3e-4202-af04-03c81db204ca", - "start": { - "$date": "2020-12-30T06:23:37.000Z" - }, - "end": { - "$date": "2020-12-30T06:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d685001-2d3f-4125-a6e9-d8abc7b5f516", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T05:16:25.000Z" - }, - "end": { - "$date": "2020-12-30T05:55:16.000Z" - }, - "events": [ - { - "uuid": "27320108-ad14-45cf-a75f-709f4a9609c3", - "start": { - "$date": "2020-12-30T05:16:25.000Z" - }, - "end": { - "$date": "2020-12-30T05:55:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b3ad8d9-de9f-4efa-b1f1-97710b01fbf7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T05:08:14.000Z" - }, - "end": { - "$date": "2020-12-30T05:11:14.000Z" - }, - "events": [ - { - "uuid": "babfeba6-0ec2-4917-9df3-7ef953cfb0ff", - "start": { - "$date": "2020-12-30T05:08:14.000Z" - }, - "end": { - "$date": "2020-12-30T05:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f3c6514-6a34-4f0d-9e9e-e069be9386f1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T05:08:18.000Z" - }, - "end": { - "$date": "2020-12-30T05:11:14.000Z" - }, - "events": [ - { - "uuid": "2a7cfc5d-5337-4418-a6e2-b2b98e40cd44", - "start": { - "$date": "2020-12-30T05:08:18.000Z" - }, - "end": { - "$date": "2020-12-30T05:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "26c6794c-873c-4bb6-a8f9-a7234f907a53", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-30T05:08:59.000Z" - }, - "end": { - "$date": "2020-12-30T05:51:29.000Z" - }, - "events": [ - { - "uuid": "87b8d638-80cc-48b5-b9ca-c776341aaa2a", - "start": { - "$date": "2020-12-30T05:08:59.000Z" - }, - "end": { - "$date": "2020-12-30T05:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "032244cc-ecff-4d09-a690-6a804c186b89", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-30T05:17:24.000Z" - }, - "end": { - "$date": "2020-12-30T05:55:20.000Z" - }, - "events": [ - { - "uuid": "bb44e6e0-905c-40d8-a91b-471865c0420f", - "start": { - "$date": "2020-12-30T05:17:24.000Z" - }, - "end": { - "$date": "2020-12-30T05:55:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba92d992-bfd6-4626-8f4a-3c7dc1536080", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T05:16:26.000Z" - }, - "end": { - "$date": "2020-12-30T05:55:13.000Z" - }, - "events": [ - { - "uuid": "17003a83-b255-4f6a-9576-0bd1bf18a9d8", - "start": { - "$date": "2020-12-30T05:16:26.000Z" - }, - "end": { - "$date": "2020-12-30T05:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "08cdb161-16c8-4088-84db-7a789dfab827", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-30T05:36:46.000Z" - }, - "end": { - "$date": "2020-12-30T07:02:39.000Z" - }, - "events": [ - { - "uuid": "c3bb71dc-3770-4147-94c5-12efdf9aeac4", - "start": { - "$date": "2020-12-30T05:36:46.000Z" - }, - "end": { - "$date": "2020-12-30T07:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "52f2c61f-4344-4fbc-8334-4043a6c8911e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-30T05:55:40.000Z" - }, - "end": { - "$date": "2020-12-30T06:41:15.000Z" - }, - "events": [ - { - "uuid": "12399d5b-19b6-42e4-9290-5e84b763c69f", - "start": { - "$date": "2020-12-30T05:55:40.000Z" - }, - "end": { - "$date": "2020-12-30T06:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "a3c76a61-eb6e-48ce-bcc8-f1d0e60f5a36", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-30T06:41:30.000Z" - }, - "end": { - "$date": "2020-12-30T07:00:40.000Z" - }, - "events": [ - { - "uuid": "34284195-9c15-4e12-949c-523cb678f875", - "start": { - "$date": "2020-12-30T06:41:30.000Z" - }, - "end": { - "$date": "2020-12-30T07:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "d679a7d8-63c3-4795-9c0f-955043ad5b23", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-30T06:47:27.000Z" - }, - "end": { - "$date": "2020-12-30T06:48:51.000Z" - }, - "events": [ - { - "uuid": "1718e5aa-771a-4c8c-9c3d-c3ed6f687999", - "start": { - "$date": "2020-12-30T06:47:27.000Z" - }, - "end": { - "$date": "2020-12-30T06:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "e551394e-31a5-4dd5-b05a-8492ff5646aa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-30T06:50:22.000Z" - }, - "end": { - "$date": "2020-12-30T08:41:36.000Z" - }, - "events": [ - { - "uuid": "bd5d5c08-fc3d-4980-98d7-3d3a3ed39332", - "start": { - "$date": "2020-12-30T06:50:22.000Z" - }, - "end": { - "$date": "2020-12-30T08:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "bb7a824b-b04f-4f34-9b01-b162bc88b332", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2020-12-30T06:50:33.000Z" - }, - "end": { - "$date": "2020-12-30T08:41:12.000Z" - }, - "events": [ - { - "uuid": "c5b98f3e-852c-41c7-9d94-189f942569cd", - "start": { - "$date": "2020-12-30T06:50:33.000Z" - }, - "end": { - "$date": "2020-12-30T08:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "42b6c53f-c9a6-4457-9a6f-7c6442436921", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-30T06:55:44.000Z" - }, - "end": { - "$date": "2020-12-30T08:41:57.000Z" - }, - "events": [ - { - "uuid": "82605ce6-9044-47e8-83be-494fa7f20091", - "start": { - "$date": "2020-12-30T06:55:44.000Z" - }, - "end": { - "$date": "2020-12-30T08:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "ee405b56-174f-4170-84c6-04c049e7d296", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T06:56:24.000Z" - }, - "end": { - "$date": "2020-12-30T08:42:15.000Z" - }, - "events": [ - { - "uuid": "1997c02c-5034-48de-b86c-e366dee75150", - "start": { - "$date": "2020-12-30T06:56:24.000Z" - }, - "end": { - "$date": "2020-12-30T08:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "a033ba50-89e2-4052-a41b-ec3910bcc7b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T06:56:32.000Z" - }, - "end": { - "$date": "2020-12-30T08:42:12.000Z" - }, - "events": [ - { - "uuid": "21a6160f-d9b5-4249-ae45-069122be5747", - "start": { - "$date": "2020-12-30T06:56:32.000Z" - }, - "end": { - "$date": "2020-12-30T08:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "2a1e8170-84d1-46a2-9a97-73fd02a64b6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T06:57:24.000Z" - }, - "end": { - "$date": "2020-12-30T08:42:19.000Z" - }, - "events": [ - { - "uuid": "4df0c303-8ba0-4493-9762-f32d0746cbb8", - "start": { - "$date": "2020-12-30T06:57:24.000Z" - }, - "end": { - "$date": "2020-12-30T08:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "1c3b07e9-852c-44ea-bb6e-3a49b5ff4eab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-30T07:03:19.000Z" - }, - "end": { - "$date": "2020-12-30T10:16:16.000Z" - }, - "events": [ - { - "uuid": "de50be4c-d95f-4998-99bd-2d9e9221e8f3", - "start": { - "$date": "2020-12-30T07:03:19.000Z" - }, - "end": { - "$date": "2020-12-30T10:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4831027f-7d1d-40a4-8c91-56de23903cea", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-30T08:42:14.000Z" - }, - "end": { - "$date": "2020-12-30T09:21:26.000Z" - }, - "events": [ - { - "uuid": "34f04a5b-be8b-48bc-9699-c7e7f5dbb13b", - "start": { - "$date": "2020-12-30T08:42:14.000Z" - }, - "end": { - "$date": "2020-12-30T09:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ec357e8a-5bfc-47ec-b688-8da48e66cd39", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T08:44:51.000Z" - }, - "end": { - "$date": "2020-12-30T09:09:30.000Z" - }, - "events": [ - { - "uuid": "5abdfb88-f661-4088-a804-b9b553c0faf1", - "start": { - "$date": "2020-12-30T08:44:51.000Z" - }, - "end": { - "$date": "2020-12-30T09:09:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "f7d7b0b9-ec26-40ce-bbe4-598934ce3fa8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2020-12-30T08:54:27.000Z" - }, - "end": { - "$date": "2020-12-30T12:44:18.000Z" - }, - "events": [ - { - "uuid": "bb935d9e-ec6c-4abe-b0a6-e412f86374d9", - "start": { - "$date": "2020-12-30T08:54:27.000Z" - }, - "end": { - "$date": "2020-12-30T12:44:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0843751a-6347-4050-bed5-92fa7e8dd35e", - "uuid": "0d0e5511-9cce-42c0-a124-fd3cd521e289", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T16:04:49.000Z" - }, - "end": { - "$date": "2020-12-30T18:43:07.000Z" - }, - "events": [ - { - "uuid": "636c6fa5-c60d-4d45-9845-2455200d09d9", - "start": { - "$date": "2020-12-30T16:04:49.000Z" - }, - "end": { - "$date": "2020-12-30T18:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2c517635-9a20-4993-92dc-5969b115ef29", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-30T16:22:40.000Z" - }, - "end": { - "$date": "2020-12-30T17:14:15.000Z" - }, - "events": [ - { - "uuid": "c5d71f1d-ad7d-45f6-86ca-d110dc65d03e", - "start": { - "$date": "2020-12-30T16:22:40.000Z" - }, - "end": { - "$date": "2020-12-30T17:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0225784e-ecba-4818-9229-2e3930a30edd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T17:03:21.000Z" - }, - "end": { - "$date": "2020-12-30T17:33:58.000Z" - }, - "events": [ - { - "uuid": "807bc3e1-946c-46c2-be88-d926854dd677", - "start": { - "$date": "2020-12-30T17:03:21.000Z" - }, - "end": { - "$date": "2020-12-30T17:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b89ead79-f3db-40df-b14f-6f2f66beebaa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-30T17:14:31.000Z" - }, - "end": { - "$date": "2020-12-30T17:35:40.000Z" - }, - "events": [ - { - "uuid": "378a0076-4d25-4228-aa8b-5fe9a46ebd2e", - "start": { - "$date": "2020-12-30T17:14:31.000Z" - }, - "end": { - "$date": "2020-12-30T17:35:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "fd447527-089f-417f-8259-b6d96e63b4b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-30T17:39:27.000Z" - }, - "end": { - "$date": "2020-12-30T19:31:45.000Z" - }, - "events": [ - { - "uuid": "3b28c0af-196f-475c-8db9-8ba1db328a9c", - "start": { - "$date": "2020-12-30T17:39:27.000Z" - }, - "end": { - "$date": "2020-12-30T18:45:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc02059f-cb7b-435b-af6e-1e204019fae8", - "start": { - "$date": "2020-12-30T18:45:27.000Z" - }, - "end": { - "$date": "2020-12-30T18:50:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "233d6d71-addd-4e01-a178-a691668c22b7", - "start": { - "$date": "2020-12-30T18:50:27.000Z" - }, - "end": { - "$date": "2020-12-30T19:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "f74b6723-b17a-426d-ad3d-e936237fd10f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-30T18:31:17.000Z" - }, - "end": { - "$date": "2020-12-30T22:05:15.000Z" - }, - "events": [ - { - "uuid": "00b99eca-b26f-4c40-9375-dea2cbfbe0b9", - "start": { - "$date": "2020-12-30T18:31:17.000Z" - }, - "end": { - "$date": "2020-12-30T20:39:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f345f84f-96ae-4ee6-9e35-4fa5058529ed", - "start": { - "$date": "2020-12-30T20:39:17.000Z" - }, - "end": { - "$date": "2020-12-30T20:40:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7326e03-d55b-4307-9961-83c9bed060c4", - "start": { - "$date": "2020-12-30T20:40:17.000Z" - }, - "end": { - "$date": "2020-12-30T20:42:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9491433e-62af-424e-b9ea-5fb0f4212bd0", - "start": { - "$date": "2020-12-30T20:42:17.000Z" - }, - "end": { - "$date": "2020-12-30T20:47:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "994fc3ef-3233-4406-b23a-8be409def696", - "start": { - "$date": "2020-12-30T20:47:17.000Z" - }, - "end": { - "$date": "2020-12-30T20:49:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "446ad6b3-d53b-409b-819a-8769c078d0aa", - "start": { - "$date": "2020-12-30T20:49:17.000Z" - }, - "end": { - "$date": "2020-12-30T20:58:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "550a33b0-5d35-4e52-bfaf-8e17635d3356", - "start": { - "$date": "2020-12-30T20:58:17.000Z" - }, - "end": { - "$date": "2020-12-30T21:00:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c02c877f-4ac0-46f6-8c14-80b45c1284a4", - "start": { - "$date": "2020-12-30T21:00:17.000Z" - }, - "end": { - "$date": "2020-12-30T21:22:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84b42564-b8c5-402b-a376-bf177ddfa89a", - "start": { - "$date": "2020-12-30T21:22:17.000Z" - }, - "end": { - "$date": "2020-12-30T22:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d49cb493-6dfd-4202-a320-a30131e1b621", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T21:35:58.000Z" - }, - "end": { - "$date": "2020-12-30T22:07:09.000Z" - }, - "events": [ - { - "uuid": "db442e36-e973-4455-a175-6626cd6a38a3", - "start": { - "$date": "2020-12-30T21:35:58.000Z" - }, - "end": { - "$date": "2020-12-30T22:07:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "54394f1a-8d52-4a0e-9b87-dd47d2c31a67", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T21:40:14.000Z" - }, - "end": { - "$date": "2020-12-30T22:43:03.000Z" - }, - "events": [ - { - "uuid": "1ad9fb26-3087-47d1-ba49-7fb996b597c3", - "start": { - "$date": "2020-12-30T21:40:14.000Z" - }, - "end": { - "$date": "2020-12-30T22:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84eb55df-72c6-43d5-b74d-7f2f5e3cb457", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T22:14:29.000Z" - }, - "end": { - "$date": "2020-12-30T22:38:31.000Z" - }, - "events": [ - { - "uuid": "d4018d84-393a-4b86-8a96-ec7ef949f46b", - "start": { - "$date": "2020-12-30T22:14:29.000Z" - }, - "end": { - "$date": "2020-12-30T22:38:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7132529d-cfdc-4f41-9438-df51ccedb19a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T22:14:28.000Z" - }, - "end": { - "$date": "2020-12-30T22:38:33.000Z" - }, - "events": [ - { - "uuid": "db8e485e-e579-40f2-b529-2dbd442c2d65", - "start": { - "$date": "2020-12-30T22:14:28.000Z" - }, - "end": { - "$date": "2020-12-30T22:38:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a249c4c-b82d-4a1a-8e08-036dd459715f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T22:14:29.000Z" - }, - "end": { - "$date": "2020-12-30T22:38:39.000Z" - }, - "events": [ - { - "uuid": "37d747b2-72fc-4098-9ea5-7053c9b75a6d", - "start": { - "$date": "2020-12-30T22:14:29.000Z" - }, - "end": { - "$date": "2020-12-30T22:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be508282-7a76-4d6b-b2d4-8bb769e8f6fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T23:08:31.000Z" - }, - "end": { - "$date": "2020-12-30T23:08:28.000Z" - }, - "events": [ - { - "uuid": "5c33c3b0-b22c-4ced-9a32-2ba3641bf267", - "start": { - "$date": "2020-12-30T23:08:31.000Z" - }, - "end": { - "$date": "2020-12-30T23:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7ee67d8-c5c0-4c60-80a3-4f9d1a6ffca8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T22:44:09.000Z" - }, - "end": { - "$date": "2020-12-30T23:08:20.000Z" - }, - "events": [ - { - "uuid": "f7c8fe1b-4354-4ee5-af08-23fc80c62e05", - "start": { - "$date": "2020-12-30T22:44:09.000Z" - }, - "end": { - "$date": "2020-12-30T23:08:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b4e6eb8-71f8-4a1f-b3a7-56df72b28b03", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-30T23:23:22.000Z" - }, - "end": { - "$date": "2020-12-31T00:08:44.000Z" - }, - "events": [ - { - "uuid": "c14ee630-2937-4079-809b-f14490c12b40", - "start": { - "$date": "2020-12-30T23:23:22.000Z" - }, - "end": { - "$date": "2020-12-31T00:08:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a4efe1ba-a8ec-4fd5-a248-30b5bdf5b5c4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-30T22:45:07.000Z" - }, - "end": { - "$date": "2020-12-31T00:09:55.000Z" - }, - "events": [ - { - "uuid": "d436ae05-bb87-47e4-9c08-e6badc7646af", - "start": { - "$date": "2020-12-30T22:45:07.000Z" - }, - "end": { - "$date": "2020-12-31T00:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0df34fd4-aae0-4eba-82a9-38e2059d4965", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-30T23:21:53.000Z" - }, - "end": { - "$date": "2020-12-31T00:08:45.000Z" - }, - "events": [ - { - "uuid": "21417f7e-8cb0-4db7-982e-a017b2922945", - "start": { - "$date": "2020-12-30T23:21:53.000Z" - }, - "end": { - "$date": "2020-12-31T00:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a09d4d86-a8d0-4242-ab21-4dd47d753876", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T23:09:36.000Z" - }, - "end": { - "$date": "2020-12-30T23:12:05.000Z" - }, - "events": [ - { - "uuid": "94e78062-2df7-412c-915e-ad81fec4fece", - "start": { - "$date": "2020-12-30T23:09:36.000Z" - }, - "end": { - "$date": "2020-12-30T23:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f785b6a8-360e-4afd-9a7b-37ab88744c55", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T23:12:19.000Z" - }, - "end": { - "$date": "2020-12-30T23:16:55.000Z" - }, - "events": [ - { - "uuid": "a3469fb1-a6b8-404b-be7d-a0d4dffd15aa", - "start": { - "$date": "2020-12-30T23:12:19.000Z" - }, - "end": { - "$date": "2020-12-30T23:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "dd964d62-cc6f-46d6-917b-1eab6ae76ddf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-30T23:13:20.000Z" - }, - "end": { - "$date": "2020-12-31T00:11:16.000Z" - }, - "events": [ - { - "uuid": "c77a5f44-0ac0-438b-a1a0-2de7e04709c8", - "start": { - "$date": "2020-12-30T23:13:20.000Z" - }, - "end": { - "$date": "2020-12-31T00:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01e4b7ca-43a5-498d-9b5f-a8dd2ee8cec5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-30T23:21:50.000Z" - }, - "end": { - "$date": "2020-12-31T00:08:34.000Z" - }, - "events": [ - { - "uuid": "eb4e05d9-fe94-499e-ae84-438819f773e9", - "start": { - "$date": "2020-12-30T23:21:50.000Z" - }, - "end": { - "$date": "2020-12-31T00:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5b95dce4-5a2e-4aaa-8327-0e48910a033b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-30T23:39:51.000Z" - }, - "end": { - "$date": "2020-12-30T23:52:03.000Z" - }, - "events": [ - { - "uuid": "0632c7b2-99c2-4f7a-b571-1816917386fa", - "start": { - "$date": "2020-12-30T23:39:51.000Z" - }, - "end": { - "$date": "2020-12-30T23:52:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b24aabe-dfb7-4ddf-a6c2-b518f3455bfd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T00:19:45.000Z" - }, - "end": { - "$date": "2020-12-31T00:41:31.000Z" - }, - "events": [ - { - "uuid": "7c6301b5-a8dd-4c69-8ef2-57fee4914279", - "start": { - "$date": "2020-12-31T00:19:45.000Z" - }, - "end": { - "$date": "2020-12-31T00:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f43d3ae-4f12-41ed-b2c5-5f838c807483", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-31T00:09:28.000Z" - }, - "end": { - "$date": "2020-12-31T00:12:52.000Z" - }, - "events": [ - { - "uuid": "673863ca-9dba-44ef-8feb-2b855d4b03e9", - "start": { - "$date": "2020-12-31T00:09:28.000Z" - }, - "end": { - "$date": "2020-12-31T00:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62a0baba-9fe5-42bc-b850-06b86e766f94", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T00:09:28.000Z" - }, - "end": { - "$date": "2020-12-31T00:12:52.000Z" - }, - "events": [ - { - "uuid": "514eb16a-1c5d-4707-a3dc-12e5d0b4755c", - "start": { - "$date": "2020-12-31T00:09:28.000Z" - }, - "end": { - "$date": "2020-12-31T00:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d45dde2-4194-43e3-a097-0b1a52c64892", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-31T00:19:47.000Z" - }, - "end": { - "$date": "2020-12-31T00:41:21.000Z" - }, - "events": [ - { - "uuid": "df414937-97b8-484b-8b18-bc2f07405a00", - "start": { - "$date": "2020-12-31T00:19:47.000Z" - }, - "end": { - "$date": "2020-12-31T00:41:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18918865-f716-4f95-90f7-7afea4d6977b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T00:20:19.000Z" - }, - "end": { - "$date": "2020-12-31T00:41:29.000Z" - }, - "events": [ - { - "uuid": "6bb80a3c-5047-4c4e-b583-31c3718b9878", - "start": { - "$date": "2020-12-31T00:20:19.000Z" - }, - "end": { - "$date": "2020-12-31T00:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", - "uuid": "c94b7575-6a9e-44d1-81a9-161ecbaee70d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-31T00:56:48.000Z" - }, - "end": { - "$date": "2020-12-31T01:09:55.000Z" - }, - "events": [ - { - "uuid": "99bb3d53-ae96-4090-8c7c-da7f77f297f6", - "start": { - "$date": "2020-12-31T00:56:48.000Z" - }, - "end": { - "$date": "2020-12-31T01:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "20152670-ffbf-4cab-a53b-4f1e8ca3164a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-31T00:58:57.000Z" - }, - "end": { - "$date": "2020-12-31T05:49:27.000Z" - }, - "events": [ - { - "uuid": "653e31e3-be78-41f6-9a94-575e27301f80", - "start": { - "$date": "2020-12-31T00:58:57.000Z" - }, - "end": { - "$date": "2020-12-31T01:46:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bac0f15c-e534-42d7-8650-21002e331b30", - "start": { - "$date": "2020-12-31T01:46:57.000Z" - }, - "end": { - "$date": "2020-12-31T01:52:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f8cee5e-069a-41d8-9c86-f2fa74bd94fc", - "start": { - "$date": "2020-12-31T01:52:57.000Z" - }, - "end": { - "$date": "2020-12-31T05:49:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "84534f9c-07f4-4cf1-b7fa-7c92c097c8ee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-31T01:10:25.000Z" - }, - "end": { - "$date": "2020-12-31T01:11:50.000Z" - }, - "events": [ - { - "uuid": "1406ce40-95ce-4d18-8a02-f24581cf7c54", - "start": { - "$date": "2020-12-31T01:10:25.000Z" - }, - "end": { - "$date": "2020-12-31T01:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e7d758e0-bdda-46a1-8538-ffb79e24ccf5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-31T01:40:18.000Z" - }, - "end": { - "$date": "2020-12-31T05:05:20.000Z" - }, - "events": [ - { - "uuid": "9336eb3c-d461-446c-b2e1-4c3e5a477b27", - "start": { - "$date": "2020-12-31T01:40:18.000Z" - }, - "end": { - "$date": "2020-12-31T05:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb98b05d-b138-4567-895c-79e9c129dbaf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T02:09:59.000Z" - }, - "end": { - "$date": "2020-12-31T02:31:28.000Z" - }, - "events": [ - { - "uuid": "7b0ca89a-ff4a-4f45-9925-a77c4c40720b", - "start": { - "$date": "2020-12-31T02:09:59.000Z" - }, - "end": { - "$date": "2020-12-31T02:31:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4371f952-da9c-4a6e-85e5-499b24c02e9d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T02:09:44.000Z" - }, - "end": { - "$date": "2020-12-31T02:31:31.000Z" - }, - "events": [ - { - "uuid": "7f24ac1f-45b3-4f0f-8ea9-fcdbe6a3522c", - "start": { - "$date": "2020-12-31T02:09:44.000Z" - }, - "end": { - "$date": "2020-12-31T02:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efd4640f-fee9-4bbe-86e9-209795fd08b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T02:36:31.000Z" - }, - "end": { - "$date": "2020-12-31T03:13:16.000Z" - }, - "events": [ - { - "uuid": "072fc3b0-6536-4921-a9dc-ec3f85a21cc9", - "start": { - "$date": "2020-12-31T02:36:31.000Z" - }, - "end": { - "$date": "2020-12-31T03:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09fa7801-054c-45ea-9207-5bf7954b5f8d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T02:38:31.000Z" - }, - "end": { - "$date": "2020-12-31T03:13:36.000Z" - }, - "events": [ - { - "uuid": "8b339794-7ddf-433e-861f-b47d7f844fd8", - "start": { - "$date": "2020-12-31T02:38:31.000Z" - }, - "end": { - "$date": "2020-12-31T03:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "146d40a0-7555-4011-903c-8764c4ad1946", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T02:48:41.000Z" - }, - "end": { - "$date": "2020-12-31T02:56:29.000Z" - }, - "events": [ - { - "uuid": "06da42de-d9a9-4302-b1ce-66997cb5b197", - "start": { - "$date": "2020-12-31T02:48:41.000Z" - }, - "end": { - "$date": "2020-12-31T02:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "660cf768-552d-4c3b-8f22-63044f5d215e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T02:59:56.000Z" - }, - "end": { - "$date": "2020-12-31T03:04:46.000Z" - }, - "events": [ - { - "uuid": "70d849af-d2a4-4176-949e-851f35cf7dd0", - "start": { - "$date": "2020-12-31T02:59:56.000Z" - }, - "end": { - "$date": "2020-12-31T03:04:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "eea984c3-735e-40f6-862c-e45854034c66", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T03:05:06.000Z" - }, - "end": { - "$date": "2020-12-31T03:57:40.000Z" - }, - "events": [ - { - "uuid": "0831413c-d22c-4d5c-8417-0ca672068a42", - "start": { - "$date": "2020-12-31T03:05:06.000Z" - }, - "end": { - "$date": "2020-12-31T03:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b33cc6a4-ee5e-471b-ac67-d5f47395f824", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T03:26:39.000Z" - }, - "end": { - "$date": "2020-12-31T03:50:36.000Z" - }, - "events": [ - { - "uuid": "2415d92d-dd08-4d90-8622-f8f50e1e5a85", - "start": { - "$date": "2020-12-31T03:26:39.000Z" - }, - "end": { - "$date": "2020-12-31T03:50:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5099754-94c9-49be-bace-824eda092449", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T03:14:24.000Z" - }, - "end": { - "$date": "2020-12-31T03:16:23.000Z" - }, - "events": [ - { - "uuid": "91892fc3-81ac-4b00-87cc-7044c11d5f49", - "start": { - "$date": "2020-12-31T03:14:24.000Z" - }, - "end": { - "$date": "2020-12-31T03:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8b777df-01aa-4daf-9bff-e288bf2feacc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T03:26:38.000Z" - }, - "end": { - "$date": "2020-12-31T03:50:35.000Z" - }, - "events": [ - { - "uuid": "5184744b-cdbe-4809-8ba2-612df1e37852", - "start": { - "$date": "2020-12-31T03:26:38.000Z" - }, - "end": { - "$date": "2020-12-31T03:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fea0068c-ed6b-42c3-9a88-3ab0392566ef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T03:58:00.000Z" - }, - "end": { - "$date": "2020-12-31T05:50:38.000Z" - }, - "events": [ - { - "uuid": "53b7166f-d768-4ab1-97ba-e5992bfb6292", - "start": { - "$date": "2020-12-31T03:58:00.000Z" - }, - "end": { - "$date": "2020-12-31T05:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05fe2eb8-96f1-4f08-a72c-dbc7d27808b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T05:14:38.000Z" - }, - "end": { - "$date": "2020-12-31T05:14:35.000Z" - }, - "events": [ - { - "uuid": "13555e64-756f-493f-9369-27a080801005", - "start": { - "$date": "2020-12-31T05:14:38.000Z" - }, - "end": { - "$date": "2020-12-31T05:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae9caa30-201f-4e8f-ad41-50393c0e290a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T04:21:56.000Z" - }, - "end": { - "$date": "2020-12-31T05:14:36.000Z" - }, - "events": [ - { - "uuid": "60928a2d-844d-43bb-bfd6-ab2d672c3ff6", - "start": { - "$date": "2020-12-31T04:21:56.000Z" - }, - "end": { - "$date": "2020-12-31T05:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7391ce99-ea01-433a-b50d-92543dc94090", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T04:50:09.000Z" - }, - "end": { - "$date": "2020-12-31T05:49:01.000Z" - }, - "events": [ - { - "uuid": "61ee9b2c-04c4-4774-b4ea-d081133e46a3", - "start": { - "$date": "2020-12-31T04:50:09.000Z" - }, - "end": { - "$date": "2020-12-31T05:49:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d2800020-7b65-4092-8e81-683c261fb7ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-31T04:55:14.000Z" - }, - "end": { - "$date": "2020-12-31T05:19:02.000Z" - }, - "events": [ - { - "uuid": "d9d8c9de-4e19-41a6-833a-d641d525d2f7", - "start": { - "$date": "2020-12-31T04:55:14.000Z" - }, - "end": { - "$date": "2020-12-31T05:19:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dbff7132-ab42-4573-9d2e-9f7df591f2af", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-31T05:11:01.000Z" - }, - "end": { - "$date": "2020-12-31T05:19:23.000Z" - }, - "events": [ - { - "uuid": "9fb3f243-5bf8-4ab6-83c3-f63c872fcb87", - "start": { - "$date": "2020-12-31T05:11:01.000Z" - }, - "end": { - "$date": "2020-12-31T05:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81f6cb07-ad3b-4316-93d9-e196529947d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T05:33:44.000Z" - }, - "end": { - "$date": "2020-12-31T06:02:46.000Z" - }, - "events": [ - { - "uuid": "f46eab79-39ba-4353-a728-f839bc697dbc", - "start": { - "$date": "2020-12-31T05:33:44.000Z" - }, - "end": { - "$date": "2020-12-31T06:02:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ce7a32f-0d6c-4842-a32b-acedea88c7c5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T05:17:41.000Z" - }, - "end": { - "$date": "2020-12-31T05:22:15.000Z" - }, - "events": [ - { - "uuid": "5c23f303-7d80-44d8-b99e-612373af045e", - "start": { - "$date": "2020-12-31T05:17:41.000Z" - }, - "end": { - "$date": "2020-12-31T05:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "753a7559-21e7-4a77-8659-4f88bd7c62a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T05:17:43.000Z" - }, - "end": { - "$date": "2020-12-31T05:22:15.000Z" - }, - "events": [ - { - "uuid": "be5b048e-bb60-4c1c-bbf8-ee5baa6411d0", - "start": { - "$date": "2020-12-31T05:17:43.000Z" - }, - "end": { - "$date": "2020-12-31T05:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e4c4fb8-968b-43b8-84ea-8a740e4eebcd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T05:22:15.000Z" - }, - "end": { - "$date": "2020-12-31T05:25:05.000Z" - }, - "events": [ - { - "uuid": "78bbdf5d-61c0-405e-b4fc-4c262829efc0", - "start": { - "$date": "2020-12-31T05:22:15.000Z" - }, - "end": { - "$date": "2020-12-31T05:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "905cbc83-d0bb-4602-ad55-695606253dbe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T05:22:17.000Z" - }, - "end": { - "$date": "2020-12-31T05:25:05.000Z" - }, - "events": [ - { - "uuid": "cc6210e8-007d-460e-8d33-358f84df1fa9", - "start": { - "$date": "2020-12-31T05:22:17.000Z" - }, - "end": { - "$date": "2020-12-31T05:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "2428049f-2d65-4032-8632-ebc870a2ee52", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2020-12-31T05:23:02.000Z" - }, - "end": { - "$date": "2020-12-31T14:28:04.000Z" - }, - "events": [ - { - "uuid": "daf4686a-67f0-4ab5-ac6b-b53244bb5940", - "start": { - "$date": "2020-12-31T05:23:02.000Z" - }, - "end": { - "$date": "2020-12-31T14:28:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b644c5c-3f66-4fdb-96b2-82bd4c9b783e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T05:25:32.000Z" - }, - "end": { - "$date": "2020-12-31T05:28:12.000Z" - }, - "events": [ - { - "uuid": "d7882976-6f17-45a4-8dfb-9c83be8812d3", - "start": { - "$date": "2020-12-31T05:25:32.000Z" - }, - "end": { - "$date": "2020-12-31T05:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "758c9a59-8e50-40b8-9f1a-4f0dad50c608", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T05:25:34.000Z" - }, - "end": { - "$date": "2020-12-31T05:28:12.000Z" - }, - "events": [ - { - "uuid": "020ba506-79e8-4c80-a9f2-f535ddcf7f24", - "start": { - "$date": "2020-12-31T05:25:34.000Z" - }, - "end": { - "$date": "2020-12-31T05:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4e346eb-261a-499c-bd7d-7a30d8478b4b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T05:28:30.000Z" - }, - "end": { - "$date": "2020-12-31T05:31:24.000Z" - }, - "events": [ - { - "uuid": "bd7be1b9-6b40-49be-bc12-ef5dc03ce1ab", - "start": { - "$date": "2020-12-31T05:28:30.000Z" - }, - "end": { - "$date": "2020-12-31T05:31:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78d7655f-4f62-4f87-bdb0-bc719939ac23", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T05:28:32.000Z" - }, - "end": { - "$date": "2020-12-31T05:31:24.000Z" - }, - "events": [ - { - "uuid": "b59cb97c-ab4f-4885-99b5-7303c98cac11", - "start": { - "$date": "2020-12-31T05:28:32.000Z" - }, - "end": { - "$date": "2020-12-31T05:31:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fab49ae-dcf4-4073-8061-d6d01ea2a565", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T05:33:41.000Z" - }, - "end": { - "$date": "2020-12-31T06:02:47.000Z" - }, - "events": [ - { - "uuid": "818b6a3f-a80a-4e04-9e88-55d68f64d591", - "start": { - "$date": "2020-12-31T05:33:41.000Z" - }, - "end": { - "$date": "2020-12-31T06:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cfe7674-7d47-48fa-ae8a-4d3788d3536e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T05:33:42.000Z" - }, - "end": { - "$date": "2020-12-31T06:02:55.000Z" - }, - "events": [ - { - "uuid": "15cb8bb1-58fb-437d-a816-9cd09ea7ef27", - "start": { - "$date": "2020-12-31T05:33:42.000Z" - }, - "end": { - "$date": "2020-12-31T06:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "bb1c1c5a-3249-49b9-9b78-f02fec7ba4f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T05:50:23.000Z" - }, - "end": { - "$date": "2020-12-31T10:01:26.000Z" - }, - "events": [ - { - "uuid": "5615da66-c875-453a-8454-c9b335aee807", - "start": { - "$date": "2020-12-31T05:50:23.000Z" - }, - "end": { - "$date": "2020-12-31T10:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c429c32e-2103-4e91-ac54-0af84e76811a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T05:50:48.000Z" - }, - "end": { - "$date": "2020-12-31T06:25:26.000Z" - }, - "events": [ - { - "uuid": "335ec33b-9923-4884-8aaa-52a61b57cac2", - "start": { - "$date": "2020-12-31T05:50:48.000Z" - }, - "end": { - "$date": "2020-12-31T06:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d25f4f94-ae51-455e-8e84-e92797b069ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T06:07:30.000Z" - }, - "end": { - "$date": "2020-12-31T06:27:54.000Z" - }, - "events": [ - { - "uuid": "3fce0942-0325-4179-a6c3-7bd0cebf95ea", - "start": { - "$date": "2020-12-31T06:07:30.000Z" - }, - "end": { - "$date": "2020-12-31T06:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be9422f6-e5d7-4e91-9c4c-bdf56fdd9bad", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T06:03:22.000Z" - }, - "end": { - "$date": "2020-12-31T06:05:29.000Z" - }, - "events": [ - { - "uuid": "9cbea62f-3587-42fc-a08d-46d8f103cc88", - "start": { - "$date": "2020-12-31T06:03:22.000Z" - }, - "end": { - "$date": "2020-12-31T06:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8da351a6-bae8-4293-8c25-0720a52130e1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T06:03:24.000Z" - }, - "end": { - "$date": "2020-12-31T06:05:29.000Z" - }, - "events": [ - { - "uuid": "98441ab9-3d47-4923-b14a-1e4e37ff0259", - "start": { - "$date": "2020-12-31T06:03:24.000Z" - }, - "end": { - "$date": "2020-12-31T06:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d001b49-4f7a-4c6a-b361-6c80c5dee876", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T06:09:47.000Z" - }, - "end": { - "$date": "2020-12-31T06:27:42.000Z" - }, - "events": [ - { - "uuid": "7f079ed1-233c-4488-b94b-b216d654624c", - "start": { - "$date": "2020-12-31T06:09:47.000Z" - }, - "end": { - "$date": "2020-12-31T06:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb143b45-89a7-4cd8-8d2c-1f2fc1935bd2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T06:09:14.000Z" - }, - "end": { - "$date": "2020-12-31T06:27:54.000Z" - }, - "events": [ - { - "uuid": "7d558f98-0692-4e97-9dff-f3bf8526f0df", - "start": { - "$date": "2020-12-31T06:09:14.000Z" - }, - "end": { - "$date": "2020-12-31T06:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "426d41f7-9a2a-4f8b-917f-d255bc85edc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T06:30:21.000Z" - }, - "end": { - "$date": "2020-12-31T07:10:03.000Z" - }, - "events": [ - { - "uuid": "913836d0-ae58-4e2b-8a32-1e78618ed76f", - "start": { - "$date": "2020-12-31T06:30:21.000Z" - }, - "end": { - "$date": "2020-12-31T07:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bc2c816-46fd-432a-ae44-671de62b4e75", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T06:30:42.000Z" - }, - "end": { - "$date": "2020-12-31T07:10:03.000Z" - }, - "events": [ - { - "uuid": "39d5b6af-02a8-40cd-82fb-5ec3d99491ed", - "start": { - "$date": "2020-12-31T06:30:42.000Z" - }, - "end": { - "$date": "2020-12-31T07:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7977c5e3-62a1-4abc-ba0e-0c92a79b57b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T06:30:15.000Z" - }, - "end": { - "$date": "2020-12-31T07:10:06.000Z" - }, - "events": [ - { - "uuid": "ea3b62ae-b7ec-49e1-876e-84b8fa90a733", - "start": { - "$date": "2020-12-31T06:30:15.000Z" - }, - "end": { - "$date": "2020-12-31T07:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "a224c647-d720-4101-89a4-d591eb638cf9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-31T07:15:00.000Z" - }, - "end": { - "$date": "2020-12-31T07:17:05.000Z" - }, - "events": [ - { - "uuid": "9fa329ac-fe09-4cd7-b16e-d59ed6475cfe", - "start": { - "$date": "2020-12-31T07:15:00.000Z" - }, - "end": { - "$date": "2020-12-31T07:17:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b3e98be-b2a9-4763-961d-bbcd815a8c20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T07:18:29.000Z" - }, - "end": { - "$date": "2020-12-31T07:47:56.000Z" - }, - "events": [ - { - "uuid": "c7ca5995-fc7e-4069-a0d5-3d0df742f0aa", - "start": { - "$date": "2020-12-31T07:18:29.000Z" - }, - "end": { - "$date": "2020-12-31T07:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "94c93d23-953a-4f63-b8d6-2c650cb0f664", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-31T07:24:11.000Z" - }, - "end": { - "$date": "2020-12-31T07:27:36.000Z" - }, - "events": [ - { - "uuid": "35a1b1fd-6737-4a3b-9cda-23c4fcaf338c", - "start": { - "$date": "2020-12-31T07:24:11.000Z" - }, - "end": { - "$date": "2020-12-31T07:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0843751a-6347-4050-bed5-92fa7e8dd35e", - "uuid": "8fba2ee7-9edb-4f7a-a438-03a8d2ddbc12", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-31T07:57:34.000Z" - }, - "end": { - "$date": "2020-12-31T09:58:03.000Z" - }, - "events": [ - { - "uuid": "f8dc61f1-7d8c-4e2c-813a-f953f6e956d7", - "start": { - "$date": "2020-12-31T07:57:34.000Z" - }, - "end": { - "$date": "2020-12-31T09:58:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "448e213d-3295-4a9f-bee2-021ca1a01f6f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T16:42:39.000Z" - }, - "end": { - "$date": "2020-12-31T18:10:02.000Z" - }, - "events": [ - { - "uuid": "5f4aead0-d9bb-4e36-a8d5-9d3c5c292dfa", - "start": { - "$date": "2020-12-31T16:42:39.000Z" - }, - "end": { - "$date": "2020-12-31T18:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "48b1172c-6458-409a-a44a-6cb1af27dac1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T16:46:24.000Z" - }, - "end": { - "$date": "2020-12-31T16:51:30.000Z" - }, - "events": [ - { - "uuid": "7aaac4c8-bb03-43b4-85de-45cd23939557", - "start": { - "$date": "2020-12-31T16:46:24.000Z" - }, - "end": { - "$date": "2020-12-31T16:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c7a64851-bf67-4f95-b89a-15796052a70b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-31T16:57:23.000Z" - }, - "end": { - "$date": "2020-12-31T17:19:19.000Z" - }, - "events": [ - { - "uuid": "534c37f7-3787-4953-a961-ba7ee1dd6c02", - "start": { - "$date": "2020-12-31T16:57:23.000Z" - }, - "end": { - "$date": "2020-12-31T17:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee1d0149-2aae-4674-a845-9b70ce078011", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T16:59:56.000Z" - }, - "end": { - "$date": "2020-12-31T17:56:17.000Z" - }, - "events": [ - { - "uuid": "d5ea6204-9a2f-4924-a5af-514d6df92588", - "start": { - "$date": "2020-12-31T16:59:56.000Z" - }, - "end": { - "$date": "2020-12-31T17:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "43e0102e-88e0-4080-a0af-b1cb02598273", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-31T17:20:54.000Z" - }, - "end": { - "$date": "2020-12-31T18:07:05.000Z" - }, - "events": [ - { - "uuid": "67e70232-dbb9-42f1-b598-c86389918f5d", - "start": { - "$date": "2020-12-31T17:20:54.000Z" - }, - "end": { - "$date": "2020-12-31T18:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "32d61fa1-e6c3-4f92-8af2-aa83c28ba3eb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T18:16:24.000Z" - }, - "end": { - "$date": "2020-12-31T18:41:40.000Z" - }, - "events": [ - { - "uuid": "629134f7-a0e7-4f8a-8b8a-a0d4f1adfb32", - "start": { - "$date": "2020-12-31T18:16:24.000Z" - }, - "end": { - "$date": "2020-12-31T18:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "b0447fe8-5fc5-4b27-89ba-916f8eea8704", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-31T18:32:30.000Z" - }, - "end": { - "$date": "2020-12-31T18:47:27.000Z" - }, - "events": [ - { - "uuid": "3f026f60-78d7-4072-bb25-097c45450a3c", - "start": { - "$date": "2020-12-31T18:32:30.000Z" - }, - "end": { - "$date": "2020-12-31T18:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "50dcee21-bad6-4580-8d06-3999577188a5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-31T18:48:47.000Z" - }, - "end": { - "$date": "2020-12-31T19:17:03.000Z" - }, - "events": [ - { - "uuid": "86eb8af6-fa34-4011-ac84-512e57808e0e", - "start": { - "$date": "2020-12-31T18:48:47.000Z" - }, - "end": { - "$date": "2020-12-31T19:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "aa68a930-4ac2-44aa-b160-7432605c94bc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2020-12-31T22:52:56.000Z" - }, - "end": { - "$date": "2021-01-01T00:47:09.000Z" - }, - "events": [ - { - "uuid": "2cf23f6f-1eaa-4e83-880e-54d70e8f0e95", - "start": { - "$date": "2020-12-31T22:52:56.000Z" - }, - "end": { - "$date": "2021-01-01T03:47:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0993af90-0c95-4759-9c1a-c5b2e295a6bc", - "start": { - "$date": "2021-01-01T03:47:56.000Z" - }, - "end": { - "$date": "2021-01-01T03:48:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "881b2f6e-c587-4b49-a350-47d1a42e3f01", - "start": { - "$date": "2021-01-01T03:48:56.000Z" - }, - "end": { - "$date": "2021-01-01T03:59:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67765b90-0f70-4ac8-902f-7334e7c006e1", - "start": { - "$date": "2021-01-01T03:59:56.000Z" - }, - "end": { - "$date": "2021-01-01T04:00:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed18c1af-6ece-4314-b1b0-46f49c5675fc", - "start": { - "$date": "2021-01-01T04:00:56.000Z" - }, - "end": { - "$date": "2021-01-01T00:47:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3d72baa3-d125-4d13-9394-fda210cd7ee8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2020-12-31T19:58:40.000Z" - }, - "end": { - "$date": "2021-01-01T01:35:58.000Z" - }, - "events": [ - { - "uuid": "d44634e9-d0c1-4445-99d2-a72bd2b824eb", - "start": { - "$date": "2020-12-31T19:58:40.000Z" - }, - "end": { - "$date": "2021-01-01T01:35:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "89487b84-7931-4c73-8101-d738dba1d8d9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2020-12-31T20:19:40.000Z" - }, - "end": { - "$date": "2020-12-31T22:31:10.000Z" - }, - "events": [ - { - "uuid": "9f1879d4-4395-4373-ae62-088079746126", - "start": { - "$date": "2020-12-31T20:19:40.000Z" - }, - "end": { - "$date": "2020-12-31T22:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "27ae2503-8ca6-4746-8fb2-671cb1a5300a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-31T20:24:25.000Z" - }, - "end": { - "$date": "2020-12-31T20:32:05.000Z" - }, - "events": [ - { - "uuid": "da93cd7b-f943-473c-b1f0-9f775da30554", - "start": { - "$date": "2020-12-31T20:24:25.000Z" - }, - "end": { - "$date": "2020-12-31T20:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "dbffb50a-714d-4f93-92c4-bac6b1c7f1e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2020-12-31T20:33:40.000Z" - }, - "end": { - "$date": "2020-12-31T21:41:46.000Z" - }, - "events": [ - { - "uuid": "6b281cfd-23db-422e-a5f4-7aca1f77ccdd", - "start": { - "$date": "2020-12-31T20:33:40.000Z" - }, - "end": { - "$date": "2020-12-31T21:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "8df9797a-8698-42bf-b41b-f19c87fd4329", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T21:06:44.000Z" - }, - "end": { - "$date": "2020-12-31T21:13:39.000Z" - }, - "events": [ - { - "uuid": "730fd49c-6733-464f-9ba3-8f1f8c6df2b0", - "start": { - "$date": "2020-12-31T21:06:44.000Z" - }, - "end": { - "$date": "2020-12-31T21:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e28d39bb-f047-4456-9f93-a5f05e4fcaad", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2020-12-31T21:17:36.000Z" - }, - "end": { - "$date": "2021-01-01T00:18:26.000Z" - }, - "events": [ - { - "uuid": "59f24173-b926-4f3c-abf0-eb215118125b", - "start": { - "$date": "2020-12-31T21:17:36.000Z" - }, - "end": { - "$date": "2021-01-01T00:18:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "03a80931-e826-4e71-936b-7e17eafcad95", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T21:30:15.000Z" - }, - "end": { - "$date": "2020-12-31T22:13:56.000Z" - }, - "events": [ - { - "uuid": "70bfa270-d5e5-4faa-be17-2a9b518b1c07", - "start": { - "$date": "2020-12-31T21:30:15.000Z" - }, - "end": { - "$date": "2020-12-31T22:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "27d836e8-ffbb-482a-ae3e-6bc0cd906c09", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2020-12-31T21:35:37.000Z" - }, - "end": { - "$date": "2020-12-31T22:28:37.000Z" - }, - "events": [ - { - "uuid": "24503fde-c0fb-4e0a-a10e-661c193cd4aa", - "start": { - "$date": "2020-12-31T21:35:37.000Z" - }, - "end": { - "$date": "2020-12-31T22:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f41d7090-d310-4ca4-ae6b-54b6fefe6da1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2020-12-31T21:36:21.000Z" - }, - "end": { - "$date": "2021-01-01T00:57:24.000Z" - }, - "events": [ - { - "uuid": "e4172881-570e-42b8-ab79-d1b251203187", - "start": { - "$date": "2020-12-31T21:36:21.000Z" - }, - "end": { - "$date": "2021-01-01T00:35:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7186713-fb3e-4f82-8fc0-f34462b37655", - "start": { - "$date": "2021-01-01T00:35:21.000Z" - }, - "end": { - "$date": "2021-01-01T00:38:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6573f7e5-6eea-419d-9613-7d8b504a8c6f", - "start": { - "$date": "2021-01-01T00:38:21.000Z" - }, - "end": { - "$date": "2021-01-01T00:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "862df5fe-d442-4d84-ad12-ae6012e57cd1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-31T21:59:21.000Z" - }, - "end": { - "$date": "2020-12-31T22:12:52.000Z" - }, - "events": [ - { - "uuid": "1bdf33ab-3d15-41ad-a5d7-e2f192802265", - "start": { - "$date": "2020-12-31T21:59:21.000Z" - }, - "end": { - "$date": "2020-12-31T22:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "571d5413-8da5-4a41-b56e-f3f03c069cbd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T21:59:13.000Z" - }, - "end": { - "$date": "2020-12-31T22:12:58.000Z" - }, - "events": [ - { - "uuid": "57e904f0-5f9e-41e6-b6c9-391822743266", - "start": { - "$date": "2020-12-31T21:59:13.000Z" - }, - "end": { - "$date": "2020-12-31T22:12:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c12528f0-4e6d-470c-a691-c70adf95c81e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2020-12-31T22:17:47.000Z" - }, - "end": { - "$date": "2020-12-31T22:35:19.000Z" - }, - "events": [ - { - "uuid": "5c7d2ef6-6a85-4fca-bd63-28f4c272bec6", - "start": { - "$date": "2020-12-31T22:17:47.000Z" - }, - "end": { - "$date": "2020-12-31T22:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7811c69e-9b10-414a-813a-98801dbc4b56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2020-12-31T22:17:39.000Z" - }, - "end": { - "$date": "2020-12-31T22:35:23.000Z" - }, - "events": [ - { - "uuid": "9bc44094-7daf-41e0-953b-a90059a2b8f9", - "start": { - "$date": "2020-12-31T22:17:39.000Z" - }, - "end": { - "$date": "2020-12-31T22:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1851c6da-8378-4534-b1db-cda49a8b15d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T22:21:01.000Z" - }, - "end": { - "$date": "2020-12-31T22:53:02.000Z" - }, - "events": [ - { - "uuid": "8b7932b1-0b13-4e95-b0dd-787784fcb52b", - "start": { - "$date": "2020-12-31T22:21:01.000Z" - }, - "end": { - "$date": "2020-12-31T22:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "df39ab73-f45f-48ce-a47f-1dcab5c531f9", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2020-12-31T22:41:39.000Z" - }, - "end": { - "$date": "2020-12-31T23:28:01.000Z" - }, - "events": [ - { - "uuid": "0d737fde-b886-407d-86ba-be04c8cab66a", - "start": { - "$date": "2020-12-31T22:41:39.000Z" - }, - "end": { - "$date": "2020-12-31T23:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "02ea4afc-6d44-4e7e-90dc-a7ab59aad796", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2020-12-31T22:54:13.000Z" - }, - "end": { - "$date": "2021-01-01T00:25:40.000Z" - }, - "events": [ - { - "uuid": "1eb7175e-45a0-4f52-8385-622334c35910", - "start": { - "$date": "2020-12-31T22:54:13.000Z" - }, - "end": { - "$date": "2021-01-01T00:25:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "0b011664-5151-4f6d-bf7d-182ad95d517d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T00:25:44.000Z" - }, - "end": { - "$date": "2021-01-01T01:18:24.000Z" - }, - "events": [ - { - "uuid": "c95d351b-d2f8-4cf1-84da-3104787a1832", - "start": { - "$date": "2021-01-01T00:25:44.000Z" - }, - "end": { - "$date": "2021-01-01T01:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "913a854b-f746-4a4e-9903-9ab1665d10d7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T00:26:05.000Z" - }, - "end": { - "$date": "2021-01-01T01:01:11.000Z" - }, - "events": [ - { - "uuid": "221bef1e-56c0-464b-9df4-d524e03dbb3e", - "start": { - "$date": "2021-01-01T00:26:05.000Z" - }, - "end": { - "$date": "2021-01-01T01:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2b0d2595-74f0-4b39-bce7-a8507327d2aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-01T01:05:56.000Z" - }, - "end": { - "$date": "2021-01-01T01:13:51.000Z" - }, - "events": [ - { - "uuid": "69345349-7f20-4a81-9281-5bfc942f5216", - "start": { - "$date": "2021-01-01T01:05:56.000Z" - }, - "end": { - "$date": "2021-01-01T01:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b2b930de-03f2-43ce-b0e6-468016ab3473", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T01:18:40.000Z" - }, - "end": { - "$date": "2021-01-01T02:31:51.000Z" - }, - "events": [ - { - "uuid": "49e37f1e-7364-47ff-8fd8-fbd4799d0433", - "start": { - "$date": "2021-01-01T01:18:40.000Z" - }, - "end": { - "$date": "2021-01-01T02:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e20dd291-5aa6-447c-b105-c0e4326d18ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-01T01:19:07.000Z" - }, - "end": { - "$date": "2021-01-01T01:27:52.000Z" - }, - "events": [ - { - "uuid": "4cfebdb0-fd9d-4733-94a7-bff9b50f83da", - "start": { - "$date": "2021-01-01T01:19:07.000Z" - }, - "end": { - "$date": "2021-01-01T01:27:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e29c96c8-27da-4df0-9c06-58ba584a25d4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T01:35:35.000Z" - }, - "end": { - "$date": "2021-01-01T01:54:41.000Z" - }, - "events": [ - { - "uuid": "3004ada7-5f84-4e52-9f8b-2987b873490c", - "start": { - "$date": "2021-01-01T01:35:35.000Z" - }, - "end": { - "$date": "2021-01-01T01:54:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f86ca56a-4314-45bf-87b5-dfa47de1a1c6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T03:14:27.000Z" - }, - "end": { - "$date": "2021-01-01T03:57:54.000Z" - }, - "events": [ - { - "uuid": "a4b83133-27b3-4099-98f8-8ca13f03fe44", - "start": { - "$date": "2021-01-01T03:14:27.000Z" - }, - "end": { - "$date": "2021-01-01T03:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "1e3a3275-69fe-4fa2-a89d-ced79d0d1478", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T03:33:21.000Z" - }, - "end": { - "$date": "2021-01-01T04:56:22.000Z" - }, - "events": [ - { - "uuid": "65216342-3caf-45c6-b219-8dcff010e138", - "start": { - "$date": "2021-01-01T03:33:21.000Z" - }, - "end": { - "$date": "2021-01-01T04:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4bbad2d8-3047-4b30-8d26-41c3755d0d16", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T05:18:50.000Z" - }, - "end": { - "$date": "2021-01-01T05:22:41.000Z" - }, - "events": [ - { - "uuid": "f4f27421-2d1e-4cb1-b009-732cd0599db3", - "start": { - "$date": "2021-01-01T05:18:50.000Z" - }, - "end": { - "$date": "2021-01-01T05:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "93a82392-444c-4ea3-8bfd-7856f6280a22", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T04:05:20.000Z" - }, - "end": { - "$date": "2021-01-01T04:57:03.000Z" - }, - "events": [ - { - "uuid": "58ae3adb-6158-4d2c-8c13-d17813e4c323", - "start": { - "$date": "2021-01-01T04:05:20.000Z" - }, - "end": { - "$date": "2021-01-01T04:57:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1209236c-6fa8-44ee-bb36-87ef55d12f3e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-01T04:41:49.000Z" - }, - "end": { - "$date": "2021-01-01T05:03:03.000Z" - }, - "events": [ - { - "uuid": "2a9ee805-8c2a-49c9-b5d8-a1bce8bd1302", - "start": { - "$date": "2021-01-01T04:41:49.000Z" - }, - "end": { - "$date": "2021-01-01T05:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "061a9d58-a734-4b1c-8fbb-72642d6dfeba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T04:42:59.000Z" - }, - "end": { - "$date": "2021-01-01T05:02:54.000Z" - }, - "events": [ - { - "uuid": "c6180844-656f-4369-93e1-0345b489f7d5", - "start": { - "$date": "2021-01-01T04:42:59.000Z" - }, - "end": { - "$date": "2021-01-01T05:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f53e7f05-1606-48af-9a00-5520ba04d601", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-01T04:41:47.000Z" - }, - "end": { - "$date": "2021-01-01T05:03:10.000Z" - }, - "events": [ - { - "uuid": "fe5d5e1a-5d5f-4673-a2fc-b782b2e9395b", - "start": { - "$date": "2021-01-01T04:41:47.000Z" - }, - "end": { - "$date": "2021-01-01T05:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78d09500-b644-4f18-8866-0106a017e7bb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-01T05:03:28.000Z" - }, - "end": { - "$date": "2021-01-01T11:10:19.000Z" - }, - "events": [ - { - "uuid": "bcceec31-d413-4589-92d7-18786bbc25e0", - "start": { - "$date": "2021-01-01T05:03:28.000Z" - }, - "end": { - "$date": "2021-01-01T10:30:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77a7eacc-e3d3-40c2-af7a-53bc55a3d243", - "start": { - "$date": "2021-01-01T10:30:28.000Z" - }, - "end": { - "$date": "2021-01-01T10:40:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1deeba88-cfe2-4b39-a4b1-5d370c176c7f", - "start": { - "$date": "2021-01-01T10:40:28.000Z" - }, - "end": { - "$date": "2021-01-01T10:50:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a38daee-8d95-4d22-801d-1fc3fd4bffb0", - "start": { - "$date": "2021-01-01T10:50:28.000Z" - }, - "end": { - "$date": "2021-01-01T11:10:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "a3277541-7438-4868-b1b0-96036cb100e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T05:04:58.000Z" - }, - "end": { - "$date": "2021-01-01T05:41:04.000Z" - }, - "events": [ - { - "uuid": "53fee591-621a-499e-9818-a17b243fceaa", - "start": { - "$date": "2021-01-01T05:04:58.000Z" - }, - "end": { - "$date": "2021-01-01T05:41:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "088978d9-912e-446d-b0ea-91dec97193c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T05:05:03.000Z" - }, - "end": { - "$date": "2021-01-01T05:41:10.000Z" - }, - "events": [ - { - "uuid": "935b87ad-0476-4f12-a84a-9d35c70988bc", - "start": { - "$date": "2021-01-01T05:05:03.000Z" - }, - "end": { - "$date": "2021-01-01T05:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "74a64c43-d3fd-46d1-a500-a7bf21a8e61b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-01T05:09:39.000Z" - }, - "end": { - "$date": "2021-01-01T09:03:24.000Z" - }, - "events": [ - { - "uuid": "1bd86c98-6dda-4abe-9fbd-2d7427e4984f", - "start": { - "$date": "2021-01-01T05:09:39.000Z" - }, - "end": { - "$date": "2021-01-01T09:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "27781b3c-faa2-487d-879e-7bcd0cee8c0f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T05:41:18.000Z" - }, - "end": { - "$date": "2021-01-01T06:28:56.000Z" - }, - "events": [ - { - "uuid": "56c94db4-9ed7-4647-b9f1-5e454a87724e", - "start": { - "$date": "2021-01-01T05:41:18.000Z" - }, - "end": { - "$date": "2021-01-01T06:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "60bfd4c7-6e1e-4a37-b6f4-00124fa01ea6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T05:42:01.000Z" - }, - "end": { - "$date": "2021-01-01T06:30:09.000Z" - }, - "events": [ - { - "uuid": "ee38d9d1-3a3e-459f-845c-c690f6d657b9", - "start": { - "$date": "2021-01-01T05:42:01.000Z" - }, - "end": { - "$date": "2021-01-01T06:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fcee68ec-2c16-4917-a0da-0edbb6a195f8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T09:08:41.000Z" - }, - "end": { - "$date": "2021-01-01T09:08:46.000Z" - }, - "events": [ - { - "uuid": "09a95dbe-5a5e-4681-a083-7d7c53792cee", - "start": { - "$date": "2021-01-01T09:08:41.000Z" - }, - "end": { - "$date": "2021-01-01T09:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dd9f3917-d05f-46db-8ce1-c3c3a697c5ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T06:29:26.000Z" - }, - "end": { - "$date": "2021-01-01T06:43:42.000Z" - }, - "events": [ - { - "uuid": "6a91d564-621f-4c97-8864-ce73797b9192", - "start": { - "$date": "2021-01-01T06:29:26.000Z" - }, - "end": { - "$date": "2021-01-01T06:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fd43a082-bda8-41c5-b7fd-b5ace9140e14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T20:46:06.000Z" - }, - "end": { - "$date": "2021-01-01T20:46:15.000Z" - }, - "events": [ - { - "uuid": "f8252027-b9a3-4810-bb53-5134561a8c2a", - "start": { - "$date": "2021-01-01T20:46:06.000Z" - }, - "end": { - "$date": "2021-01-01T20:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ccae06d-44e6-4e9d-bb39-c4c4753d2298", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-01T06:53:48.000Z" - }, - "end": { - "$date": "2021-01-01T06:59:30.000Z" - }, - "events": [ - { - "uuid": "dbd0ba50-fcb3-482b-8cd9-71a304d34255", - "start": { - "$date": "2021-01-01T06:53:48.000Z" - }, - "end": { - "$date": "2021-01-01T06:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03168681-6670-4885-a574-d327cbc955be", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-01T07:01:08.000Z" - }, - "end": { - "$date": "2021-01-01T07:03:11.000Z" - }, - "events": [ - { - "uuid": "c36cf3ce-f9eb-40d3-ac65-a896ff4af297", - "start": { - "$date": "2021-01-01T07:01:08.000Z" - }, - "end": { - "$date": "2021-01-01T07:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37023eb6-cc7c-4b20-8c80-afa5febdb352", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-01T07:04:30.000Z" - }, - "end": { - "$date": "2021-01-01T07:07:16.000Z" - }, - "events": [ - { - "uuid": "58c5e44f-1fa7-4523-a3bd-b41b8fde60b6", - "start": { - "$date": "2021-01-01T07:04:30.000Z" - }, - "end": { - "$date": "2021-01-01T07:07:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f27e7db-6a23-4463-8506-697ee6bb2ce0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-01T07:09:01.000Z" - }, - "end": { - "$date": "2021-01-01T07:11:27.000Z" - }, - "events": [ - { - "uuid": "5f2ea60d-4321-491d-b61a-55330cff1420", - "start": { - "$date": "2021-01-01T07:09:01.000Z" - }, - "end": { - "$date": "2021-01-01T07:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "010e54c2-021f-4930-a890-8f8b473857f2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-01T07:16:56.000Z" - }, - "end": { - "$date": "2021-01-01T13:30:43.000Z" - }, - "events": [ - { - "uuid": "20c7b125-41df-45d5-85a5-9cd5c61dabcf", - "start": { - "$date": "2021-01-01T07:16:56.000Z" - }, - "end": { - "$date": "2021-01-01T13:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8c2668e9-08fe-42f8-a2a3-fa9df0c60e81", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T07:17:08.000Z" - }, - "end": { - "$date": "2021-01-01T07:19:48.000Z" - }, - "events": [ - { - "uuid": "344285ea-7092-471c-8c9d-067bf41549c7", - "start": { - "$date": "2021-01-01T07:17:08.000Z" - }, - "end": { - "$date": "2021-01-01T07:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fbd41121-2c1c-4dd3-968c-f27a38008aaa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T07:20:33.000Z" - }, - "end": { - "$date": "2021-01-01T07:23:38.000Z" - }, - "events": [ - { - "uuid": "ade7ac4c-9d52-475f-bbeb-b7c7e3fc5148", - "start": { - "$date": "2021-01-01T07:20:33.000Z" - }, - "end": { - "$date": "2021-01-01T07:23:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8e04c7a3-4a97-4d79-b889-ecfb63a6046c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-01T07:20:45.000Z" - }, - "end": { - "$date": "2021-01-01T08:11:18.000Z" - }, - "events": [ - { - "uuid": "c41f6bd6-dc5f-44a7-8e1d-cb679c63feb8", - "start": { - "$date": "2021-01-01T07:20:45.000Z" - }, - "end": { - "$date": "2021-01-01T08:11:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dcc1a623-415d-484b-aa56-954970bfdd17", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T07:24:53.000Z" - }, - "end": { - "$date": "2021-01-01T08:10:51.000Z" - }, - "events": [ - { - "uuid": "401693b4-e58d-49fc-bb80-1d0ba6d12727", - "start": { - "$date": "2021-01-01T07:24:53.000Z" - }, - "end": { - "$date": "2021-01-01T08:10:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0fd409c3-daca-4361-89a6-d7e71d1e45c5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-01T07:25:05.000Z" - }, - "end": { - "$date": "2021-01-01T08:11:32.000Z" - }, - "events": [ - { - "uuid": "3bdb5720-341b-4b34-a26c-a152064e1d6b", - "start": { - "$date": "2021-01-01T07:25:05.000Z" - }, - "end": { - "$date": "2021-01-01T08:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a934b985-34a3-4a2c-9afc-c336d6ff5a4c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T08:11:27.000Z" - }, - "end": { - "$date": "2021-01-01T09:17:30.000Z" - }, - "events": [ - { - "uuid": "18f3e43f-f5f6-477d-8f63-82c837b9c218", - "start": { - "$date": "2021-01-01T08:11:27.000Z" - }, - "end": { - "$date": "2021-01-01T09:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e80b2ff4-43da-47c9-b3d2-6016731728a8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-01T08:11:26.000Z" - }, - "end": { - "$date": "2021-01-01T08:13:14.000Z" - }, - "events": [ - { - "uuid": "5a66d825-5e49-4c23-a267-9704cd2c7619", - "start": { - "$date": "2021-01-01T08:11:26.000Z" - }, - "end": { - "$date": "2021-01-01T08:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "94a6fe48-5ddf-4261-b1de-66d72ffcee47", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T08:13:56.000Z" - }, - "end": { - "$date": "2021-01-01T09:08:27.000Z" - }, - "events": [ - { - "uuid": "749e41e9-700f-4689-962b-64258d59dda7", - "start": { - "$date": "2021-01-01T08:13:56.000Z" - }, - "end": { - "$date": "2021-01-01T09:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "02b7ae2f-a6e3-4cd4-8655-f518bcd68948", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-01T09:03:54.000Z" - }, - "end": { - "$date": "2021-01-01T18:19:26.000Z" - }, - "events": [ - { - "uuid": "03bf191b-5b20-4fc5-97a6-7c85d4203971", - "start": { - "$date": "2021-01-01T09:03:54.000Z" - }, - "end": { - "$date": "2021-01-01T10:27:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8df1e0ff-fd87-4612-b10c-999765abe829", - "start": { - "$date": "2021-01-01T10:27:54.000Z" - }, - "end": { - "$date": "2021-01-01T16:42:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61686a66-5dbd-4721-ac56-03510d7be543", - "start": { - "$date": "2021-01-01T16:42:54.000Z" - }, - "end": { - "$date": "2021-01-01T16:53:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f559ac25-c7f4-48f5-90d5-d43233b8e300", - "start": { - "$date": "2021-01-01T16:53:54.000Z" - }, - "end": { - "$date": "2021-01-01T18:19:26.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4a1614a8-2c99-4968-bcc3-f7282fc3f790", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T09:25:48.000Z" - }, - "end": { - "$date": "2021-01-01T09:28:59.000Z" - }, - "events": [ - { - "uuid": "b1f7af2e-322d-456e-9686-82fa0e8941ad", - "start": { - "$date": "2021-01-01T09:25:48.000Z" - }, - "end": { - "$date": "2021-01-01T09:28:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d404c93a-a7d6-4f20-ba99-97525db598db", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T16:07:55.000Z" - }, - "end": { - "$date": "2021-01-01T16:09:16.000Z" - }, - "events": [ - { - "uuid": "f18bf78b-beff-4887-ace4-aeae9e6df118", - "start": { - "$date": "2021-01-01T16:07:55.000Z" - }, - "end": { - "$date": "2021-01-01T16:09:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "d59e7234-73be-4476-bff4-fb31f4df7fef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T19:12:24.000Z" - }, - "end": { - "$date": "2021-01-01T20:46:28.000Z" - }, - "events": [ - { - "uuid": "bf930346-168f-4400-ba83-92b5318f7f01", - "start": { - "$date": "2021-01-01T19:12:24.000Z" - }, - "end": { - "$date": "2021-01-01T23:04:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93f2f9da-6132-46cb-a14e-39cbe51f840b", - "start": { - "$date": "2021-01-01T23:04:24.000Z" - }, - "end": { - "$date": "2021-01-01T23:07:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f48442f9-b692-4bd2-91a9-1e41c5013325", - "start": { - "$date": "2021-01-01T23:07:24.000Z" - }, - "end": { - "$date": "2021-01-01T20:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1861b5e-d095-4316-97d2-e0aa9cca31d7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-01T17:42:22.000Z" - }, - "end": { - "$date": "2021-01-01T17:57:10.000Z" - }, - "events": [ - { - "uuid": "bee0b95c-c861-48a5-a32c-15c47a753163", - "start": { - "$date": "2021-01-01T17:42:22.000Z" - }, - "end": { - "$date": "2021-01-01T17:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2c8314bc-a4c5-47fb-a2d5-0f58cb230a79", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T18:36:37.000Z" - }, - "end": { - "$date": "2021-01-01T18:38:52.000Z" - }, - "events": [ - { - "uuid": "cdd2c643-5d89-4950-9ae4-55b9fdde972c", - "start": { - "$date": "2021-01-01T18:36:37.000Z" - }, - "end": { - "$date": "2021-01-01T18:38:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bc86fa6a-a085-4e56-a43e-df12bf967e72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T19:14:12.000Z" - }, - "end": { - "$date": "2021-01-01T20:59:34.000Z" - }, - "events": [ - { - "uuid": "0a51d25f-0a54-4c7c-8271-8ac8b452178c", - "start": { - "$date": "2021-01-01T19:14:12.000Z" - }, - "end": { - "$date": "2021-01-01T20:59:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "583ecae1-e2f3-42e5-846b-dc239cdc19c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-01T20:11:38.000Z" - }, - "end": { - "$date": "2021-01-01T22:05:36.000Z" - }, - "events": [ - { - "uuid": "c6e0e540-a6ad-4b8c-a9f7-03d479ba8b0a", - "start": { - "$date": "2021-01-01T20:11:38.000Z" - }, - "end": { - "$date": "2021-01-01T22:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "489f4a1d-f8fe-4438-b445-b0cbf55b45c6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-01T20:12:15.000Z" - }, - "end": { - "$date": "2021-01-01T21:52:11.000Z" - }, - "events": [ - { - "uuid": "ab03a924-4f6f-47d5-b18f-013e11612f41", - "start": { - "$date": "2021-01-01T20:12:15.000Z" - }, - "end": { - "$date": "2021-01-01T21:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e1f829df-05c6-49c2-9f7f-088245f3db82", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T20:58:24.000Z" - }, - "end": { - "$date": "2021-01-01T22:34:08.000Z" - }, - "events": [ - { - "uuid": "589dfb06-bb27-40c2-a414-6fee44443892", - "start": { - "$date": "2021-01-01T20:58:24.000Z" - }, - "end": { - "$date": "2021-01-01T22:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ff20a233-6362-4bc5-ba14-fbcd3101753b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-01T21:01:26.000Z" - }, - "end": { - "$date": "2021-01-01T23:08:01.000Z" - }, - "events": [ - { - "uuid": "007c5286-122b-43c4-90f0-0f2c77662eed", - "start": { - "$date": "2021-01-01T21:01:26.000Z" - }, - "end": { - "$date": "2021-01-01T23:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8b7eaeec-0b3d-447d-9d10-3bbeb7af2b77", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-01T21:10:26.000Z" - }, - "end": { - "$date": "2021-01-01T23:25:45.000Z" - }, - "events": [ - { - "uuid": "387d7b3b-de2b-4a7e-861f-3a017b04bb81", - "start": { - "$date": "2021-01-01T21:10:26.000Z" - }, - "end": { - "$date": "2021-01-01T23:25:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0afb7f69-802c-4267-bf7d-f0f2d59c0e6c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-01T21:46:55.000Z" - }, - "end": { - "$date": "2021-01-01T21:48:35.000Z" - }, - "events": [ - { - "uuid": "3890515f-0b03-4101-b0b8-62d16c07e0a9", - "start": { - "$date": "2021-01-01T21:46:55.000Z" - }, - "end": { - "$date": "2021-01-01T21:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "f2cf72a7-7b43-48e1-ba42-8c2c8c88b5d0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-01T21:48:45.000Z" - }, - "end": { - "$date": "2021-01-02T02:20:36.000Z" - }, - "events": [ - { - "uuid": "a78ab547-5456-4140-b787-965ca7e83d3b", - "start": { - "$date": "2021-01-01T21:48:45.000Z" - }, - "end": { - "$date": "2021-01-02T02:02:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "227a89ce-4a78-4688-98f4-10b06a64515c", - "start": { - "$date": "2021-01-02T02:02:45.000Z" - }, - "end": { - "$date": "2021-01-02T02:07:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "55954766-90b6-4f19-978d-f74da9e7e009", - "start": { - "$date": "2021-01-02T02:07:45.000Z" - }, - "end": { - "$date": "2021-01-02T02:20:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2ff1045-a458-49f4-b393-cdfa2b727e18", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-01T22:03:22.000Z" - }, - "end": { - "$date": "2021-01-02T02:04:38.000Z" - }, - "events": [ - { - "uuid": "47e51281-e128-400a-8308-e01563007ff1", - "start": { - "$date": "2021-01-01T22:03:22.000Z" - }, - "end": { - "$date": "2021-01-01T22:35:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67a934ad-e026-4b1d-821a-8b941d07c300", - "start": { - "$date": "2021-01-01T22:35:22.000Z" - }, - "end": { - "$date": "2021-01-01T22:36:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32a6ed6c-a087-4807-b759-c82d1d64b207", - "start": { - "$date": "2021-01-01T22:36:22.000Z" - }, - "end": { - "$date": "2021-01-01T23:48:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3283a273-5576-44ca-a303-173d9d5f7cff", - "start": { - "$date": "2021-01-01T23:48:22.000Z" - }, - "end": { - "$date": "2021-01-01T23:51:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df999277-f4d4-4389-ab3e-ac45c03ea502", - "start": { - "$date": "2021-01-01T23:51:22.000Z" - }, - "end": { - "$date": "2021-01-02T00:01:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4135b395-0540-4159-bd88-92d6532c4301", - "start": { - "$date": "2021-01-02T00:01:22.000Z" - }, - "end": { - "$date": "2021-01-02T00:16:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4c5f8f8-cac7-4a81-99c8-95f421af381b", - "start": { - "$date": "2021-01-02T00:16:22.000Z" - }, - "end": { - "$date": "2021-01-02T02:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "4d24b528-b189-440a-92e9-5ed594936e4b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-01T22:56:43.000Z" - }, - "end": { - "$date": "2021-01-02T00:35:17.000Z" - }, - "events": [ - { - "uuid": "05327782-a58a-4ec0-9333-f4d531507d71", - "start": { - "$date": "2021-01-01T22:56:43.000Z" - }, - "end": { - "$date": "2021-01-02T00:35:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "040cee9d-8350-4456-aedf-380006fa588d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-01T22:59:05.000Z" - }, - "end": { - "$date": "2021-01-02T00:58:30.000Z" - }, - "events": [ - { - "uuid": "b6f0e334-99de-4971-ba8b-b19e66432773", - "start": { - "$date": "2021-01-01T22:59:05.000Z" - }, - "end": { - "$date": "2021-01-02T00:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "e6b0298c-7195-48dd-8b7e-d1b157e5b9cf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-01T23:08:20.000Z" - }, - "end": { - "$date": "2021-01-02T00:56:38.000Z" - }, - "events": [ - { - "uuid": "2238d318-a35d-4b0c-8eae-581d0c8fc3b5", - "start": { - "$date": "2021-01-01T23:08:20.000Z" - }, - "end": { - "$date": "2021-01-02T00:56:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "7153b922-f8d9-4d63-9cf1-963c9b49f061", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-01T23:38:00.000Z" - }, - "end": { - "$date": "2021-01-02T00:16:00.000Z" - }, - "events": [ - { - "uuid": "ee099276-92c7-487e-9ba4-126f7c78ec7f", - "start": { - "$date": "2021-01-01T23:38:00.000Z" - }, - "end": { - "$date": "2021-01-02T00:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c11e9879-4b92-49bf-93fc-aa29a6337bca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T00:16:15.000Z" - }, - "end": { - "$date": "2021-01-02T00:56:42.000Z" - }, - "events": [ - { - "uuid": "960df2c9-4f45-45d6-a52f-3ff773a21a21", - "start": { - "$date": "2021-01-02T00:16:15.000Z" - }, - "end": { - "$date": "2021-01-02T00:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7cbaa6f9-b294-402f-b0c7-53f7580371ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T00:28:13.000Z" - }, - "end": { - "$date": "2021-01-02T01:03:09.000Z" - }, - "events": [ - { - "uuid": "e9b499b4-10c6-4e0b-9eaa-5e9348f3c820", - "start": { - "$date": "2021-01-02T00:28:13.000Z" - }, - "end": { - "$date": "2021-01-02T01:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "50b6a9b7-7682-4674-a87d-169d89b4838d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-01T22:56:43.000Z" - }, - "end": { - "$date": "2021-01-02T00:59:15.000Z" - }, - "events": [ - { - "uuid": "256560ac-6b4e-48bf-80ba-94e207a3ed66", - "start": { - "$date": "2021-01-01T22:56:43.000Z" - }, - "end": { - "$date": "2021-01-02T00:59:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4244ca92-e805-47f4-a699-ad0d2250bce9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-02T00:58:38.000Z" - }, - "end": { - "$date": "2021-01-02T06:52:05.000Z" - }, - "events": [ - { - "uuid": "b2f201a6-f9c1-4276-8366-6196f99d58e5", - "start": { - "$date": "2021-01-02T00:58:38.000Z" - }, - "end": { - "$date": "2021-01-02T06:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71187ff6-168e-47dc-bb08-84f6d964b767", - "uuid": "7a82f156-15a3-4697-81cd-b944f8550294", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-02T01:14:00.000Z" - }, - "end": { - "$date": "2021-01-02T05:15:45.000Z" - }, - "events": [ - { - "uuid": "d4322d0d-fd93-44b3-85ed-e89063a84b3f", - "start": { - "$date": "2021-01-02T01:14:00.000Z" - }, - "end": { - "$date": "2021-01-02T04:14:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c2165547-02f9-4756-b6eb-6f41a4770461", - "start": { - "$date": "2021-01-02T04:14:00.000Z" - }, - "end": { - "$date": "2021-01-02T04:58:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "969ad476-f151-4661-b04f-81655e11def6", - "start": { - "$date": "2021-01-02T04:58:00.000Z" - }, - "end": { - "$date": "2021-01-02T05:15:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c9b5a71-c832-4ee7-8c76-ee261a570cd0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T01:17:14.000Z" - }, - "end": { - "$date": "2021-01-02T01:21:54.000Z" - }, - "events": [ - { - "uuid": "03e14cae-4fa9-4820-a5ba-b08d2b4ff83d", - "start": { - "$date": "2021-01-02T01:17:14.000Z" - }, - "end": { - "$date": "2021-01-02T01:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9b45313-1b35-4abe-87db-6253ec694e95", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T01:24:36.000Z" - }, - "end": { - "$date": "2021-01-02T01:26:16.000Z" - }, - "events": [ - { - "uuid": "92b2aeb7-7226-492b-9032-cbca94712384", - "start": { - "$date": "2021-01-02T01:24:36.000Z" - }, - "end": { - "$date": "2021-01-02T01:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19b23edf-facf-4903-839e-a79b47a5388a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T01:26:16.000Z" - }, - "end": { - "$date": "2021-01-02T01:27:33.000Z" - }, - "events": [ - { - "uuid": "061aa63d-daa8-44f0-b82b-3e08324931b1", - "start": { - "$date": "2021-01-02T01:26:16.000Z" - }, - "end": { - "$date": "2021-01-02T01:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "20867354-b9c2-4c9d-9852-33badbdf6174", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T01:28:42.000Z" - }, - "end": { - "$date": "2021-01-02T01:37:32.000Z" - }, - "events": [ - { - "uuid": "44503628-cb27-470a-b2de-5ebb235b593b", - "start": { - "$date": "2021-01-02T01:28:42.000Z" - }, - "end": { - "$date": "2021-01-02T01:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "37869491-ad1c-4f8d-bc5a-de9846186673", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T01:38:05.000Z" - }, - "end": { - "$date": "2021-01-02T02:08:41.000Z" - }, - "events": [ - { - "uuid": "c72e9cf6-270a-4942-91b8-81ee3633ce48", - "start": { - "$date": "2021-01-02T01:38:05.000Z" - }, - "end": { - "$date": "2021-01-02T02:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "59e7b5ff-e084-41d1-a6e2-cc616bc03b88", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T02:09:29.000Z" - }, - "end": { - "$date": "2021-01-02T02:14:43.000Z" - }, - "events": [ - { - "uuid": "098d00a9-1a85-4d19-b62b-dc8f57d6500c", - "start": { - "$date": "2021-01-02T02:09:29.000Z" - }, - "end": { - "$date": "2021-01-02T02:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "79e7488c-28ad-4e8b-937f-784ba467e062", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T02:09:49.000Z" - }, - "end": { - "$date": "2021-01-02T02:27:10.000Z" - }, - "events": [ - { - "uuid": "6d2faa2b-89d3-4f71-9bf8-8b6aa4d8fe7a", - "start": { - "$date": "2021-01-02T02:09:49.000Z" - }, - "end": { - "$date": "2021-01-02T02:27:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14fec178-16f4-49a2-b763-2bb7be01a101", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T02:16:04.000Z" - }, - "end": { - "$date": "2021-01-02T02:20:34.000Z" - }, - "events": [ - { - "uuid": "5d867adf-21e5-4ac7-9238-963a9a988b10", - "start": { - "$date": "2021-01-02T02:16:04.000Z" - }, - "end": { - "$date": "2021-01-02T02:20:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "4d761935-dc70-46b3-abc5-47b750aadf7a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T02:16:45.000Z" - }, - "end": { - "$date": "2021-01-02T02:37:16.000Z" - }, - "events": [ - { - "uuid": "1ead174a-6a4e-43a2-b91a-62e249f9780b", - "start": { - "$date": "2021-01-02T02:16:45.000Z" - }, - "end": { - "$date": "2021-01-02T02:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25432e41-8c90-4d39-9538-5a79492cb2a6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T02:32:58.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:48.000Z" - }, - "events": [ - { - "uuid": "a5cac9a2-76d3-4f87-b32b-59b2fa529d64", - "start": { - "$date": "2021-01-02T02:32:58.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "57f6be88-5429-4f95-81db-36fccdf4965f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T02:26:24.000Z" - }, - "end": { - "$date": "2021-01-02T03:33:18.000Z" - }, - "events": [ - { - "uuid": "c76d6afb-4372-4d63-bb15-6ffb0a3ef3c6", - "start": { - "$date": "2021-01-02T02:26:24.000Z" - }, - "end": { - "$date": "2021-01-02T03:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "84e90be7-738e-419f-b0a9-86abbfc4b23b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T02:27:21.000Z" - }, - "end": { - "$date": "2021-01-02T02:39:26.000Z" - }, - "events": [ - { - "uuid": "f42bbddb-a3a8-426a-bb96-1b8e21ec9a7e", - "start": { - "$date": "2021-01-02T02:27:21.000Z" - }, - "end": { - "$date": "2021-01-02T02:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85ba090e-6dfd-4072-b1dd-6b855273740f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T02:33:30.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:44.000Z" - }, - "events": [ - { - "uuid": "431365e6-0286-4372-86ac-3dd146fa23b1", - "start": { - "$date": "2021-01-02T02:33:30.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ed1e38e-4e06-4dd2-94a7-86b090bd9b1b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T02:32:57.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:49.000Z" - }, - "events": [ - { - "uuid": "73c08bee-9455-46d2-a202-1869adb64d03", - "start": { - "$date": "2021-01-02T02:32:57.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f318bec9-fe20-4f9f-ac33-b9fa3a3fe6bd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T02:33:06.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:46.000Z" - }, - "events": [ - { - "uuid": "bffaac82-125a-45b6-9c63-34d135e63c47", - "start": { - "$date": "2021-01-02T02:33:06.000Z" - }, - "end": { - "$date": "2021-01-02T02:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "8deded4f-29d0-4de9-b489-2f23b1d67bc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T02:41:41.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:37.000Z" - }, - "events": [ - { - "uuid": "90fe6cc8-c9c2-4ea8-b2b2-c41e562fb2dc", - "start": { - "$date": "2021-01-02T02:41:41.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "22c5d3bd-7942-4d7c-9440-286864fde91f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T02:44:27.000Z" - }, - "end": { - "$date": "2021-01-02T03:46:07.000Z" - }, - "events": [ - { - "uuid": "b853c0d9-d747-4168-b173-1d6862e37003", - "start": { - "$date": "2021-01-02T02:44:27.000Z" - }, - "end": { - "$date": "2021-01-02T03:46:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79c611de-d1df-4a93-8e26-83b7a18b8f22", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T03:03:04.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:44.000Z" - }, - "events": [ - { - "uuid": "7269b46f-d7be-453d-ab37-91a43220a301", - "start": { - "$date": "2021-01-02T03:03:04.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51a6f9fb-1cfd-4e58-a687-f57eb5ba3836", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T03:03:45.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:40.000Z" - }, - "events": [ - { - "uuid": "6f3d5ac6-bab0-4aad-9430-2962279eaa33", - "start": { - "$date": "2021-01-02T03:03:45.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2a61150-f0cf-4a63-9f6f-4a0db6e63fb1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T03:01:45.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:47.000Z" - }, - "events": [ - { - "uuid": "8b92a868-5958-4a33-a91c-e5fd27446c2a", - "start": { - "$date": "2021-01-02T03:01:45.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "321b3cf3-f78d-4221-b666-e28d22df8596", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T03:01:49.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:51.000Z" - }, - "events": [ - { - "uuid": "ab0cb937-9ac9-458c-b7ad-2f8a18237e45", - "start": { - "$date": "2021-01-02T03:01:49.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f4ccd76-e79d-4d53-9aef-2cb20e86b915", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T03:01:57.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:47.000Z" - }, - "events": [ - { - "uuid": "7e68aa8d-d99f-42a1-8282-8a6bb33c4d7c", - "start": { - "$date": "2021-01-02T03:01:57.000Z" - }, - "end": { - "$date": "2021-01-02T03:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "44500bb1-112c-40b8-be2f-f39cc688a067", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-02T03:19:16.000Z" - }, - "end": { - "$date": "2021-01-02T03:38:38.000Z" - }, - "events": [ - { - "uuid": "32b6f3f2-bcaa-41b4-9ae4-befba3ca4129", - "start": { - "$date": "2021-01-02T03:19:16.000Z" - }, - "end": { - "$date": "2021-01-02T03:38:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09757c1a-da70-4fcb-9055-129b6cff79e3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T03:25:35.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:15.000Z" - }, - "events": [ - { - "uuid": "bfe2977a-7e0a-47ef-9f35-0530055823a8", - "start": { - "$date": "2021-01-02T03:25:35.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30f0c929-4a3e-46fc-b181-18d131b44682", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T03:25:31.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:10.000Z" - }, - "events": [ - { - "uuid": "55a4be15-aff9-4fe5-beef-12a18ad90da8", - "start": { - "$date": "2021-01-02T03:25:31.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3270bf96-d298-47b9-9477-1c2705d1d561", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T03:25:43.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:18.000Z" - }, - "events": [ - { - "uuid": "d0b8571a-ff79-4029-8eb8-93a2208edef0", - "start": { - "$date": "2021-01-02T03:25:43.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98c1993e-eb50-4cd4-bd22-6263316a71f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T03:25:32.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:37.000Z" - }, - "events": [ - { - "uuid": "d004fcae-55ca-4e6f-9699-9f10d263b292", - "start": { - "$date": "2021-01-02T03:25:32.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6020107-e696-476e-8784-a18295492f86", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T03:25:35.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:15.000Z" - }, - "events": [ - { - "uuid": "8e679fd0-0f5d-468b-a093-009b7b8e94ab", - "start": { - "$date": "2021-01-02T03:25:35.000Z" - }, - "end": { - "$date": "2021-01-02T03:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "6620a1b7-fe1e-44f9-9c2b-46598fe0795f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T04:04:55.000Z" - }, - "end": { - "$date": "2021-01-02T04:16:49.000Z" - }, - "events": [ - { - "uuid": "8c4ebc33-9f2f-4993-bea5-9735edccc8c4", - "start": { - "$date": "2021-01-02T04:04:55.000Z" - }, - "end": { - "$date": "2021-01-02T04:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "3e85390b-7803-423c-b1bb-06d05ac406d5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-02T04:17:45.000Z" - }, - "end": { - "$date": "2021-01-02T05:14:46.000Z" - }, - "events": [ - { - "uuid": "bd39fda5-56dc-4f41-9e22-aab7ff04ec4a", - "start": { - "$date": "2021-01-02T04:17:45.000Z" - }, - "end": { - "$date": "2021-01-02T05:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "604318af-e974-4570-ae61-aedd4ecac789", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T04:04:55.000Z" - }, - "end": { - "$date": "2021-01-02T04:20:51.000Z" - }, - "events": [ - { - "uuid": "6de78615-60b6-4564-8b08-64d6fd3ce9c9", - "start": { - "$date": "2021-01-02T04:04:55.000Z" - }, - "end": { - "$date": "2021-01-02T04:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "14f481aa-3cb6-468e-b1d3-a87b90edf012", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T04:18:25.000Z" - }, - "end": { - "$date": "2021-01-02T05:12:13.000Z" - }, - "events": [ - { - "uuid": "882f71b9-fd70-4638-8e49-c2c1fe4d496f", - "start": { - "$date": "2021-01-02T04:18:25.000Z" - }, - "end": { - "$date": "2021-01-02T05:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "9398a9ad-aa0a-480b-8da0-268b57195901", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T04:21:07.000Z" - }, - "end": { - "$date": "2021-01-02T07:31:26.000Z" - }, - "events": [ - { - "uuid": "f91ee6d0-7d2c-42ed-9861-46b25296ad44", - "start": { - "$date": "2021-01-02T04:21:07.000Z" - }, - "end": { - "$date": "2021-01-02T07:31:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "14d5c125-1c3a-42ab-a7d2-f59fefccc1a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T04:21:32.000Z" - }, - "end": { - "$date": "2021-01-02T05:55:44.000Z" - }, - "events": [ - { - "uuid": "f13c9705-c337-486a-b5d5-e5f1ad4c5cfa", - "start": { - "$date": "2021-01-02T04:21:32.000Z" - }, - "end": { - "$date": "2021-01-02T05:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "0d7ccbef-32db-4dd9-bc38-c66359f8d2ae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T04:23:13.000Z" - }, - "end": { - "$date": "2021-01-02T05:07:53.000Z" - }, - "events": [ - { - "uuid": "9dd7296d-6dcf-44ce-82ca-46096456d610", - "start": { - "$date": "2021-01-02T04:23:13.000Z" - }, - "end": { - "$date": "2021-01-02T05:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fc15d322-1d67-4cdf-a1b5-23b1af2f881e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T04:38:02.000Z" - }, - "end": { - "$date": "2021-01-02T04:45:28.000Z" - }, - "events": [ - { - "uuid": "cfb7e14d-e983-46f8-8148-247e2a86e164", - "start": { - "$date": "2021-01-02T04:38:02.000Z" - }, - "end": { - "$date": "2021-01-02T04:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "80a338d2-2a28-4534-9e50-91014f29ede0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T04:45:39.000Z" - }, - "end": { - "$date": "2021-01-02T05:05:34.000Z" - }, - "events": [ - { - "uuid": "bc055d62-c16e-4e2a-ba17-0661a647f8e9", - "start": { - "$date": "2021-01-02T04:45:39.000Z" - }, - "end": { - "$date": "2021-01-02T05:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b86a3c9c-afe7-43f5-b8e5-1f32b1c10caa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T05:08:58.000Z" - }, - "end": { - "$date": "2021-01-02T05:42:45.000Z" - }, - "events": [ - { - "uuid": "43890a2b-7ee1-443a-a587-c2315edf6346", - "start": { - "$date": "2021-01-02T05:08:58.000Z" - }, - "end": { - "$date": "2021-01-02T05:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "4e9584ec-a962-4248-941b-7b886504765f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T05:58:24.000Z" - }, - "end": { - "$date": "2021-01-02T07:34:32.000Z" - }, - "events": [ - { - "uuid": "f3755da2-7249-4814-9fa3-26562e846488", - "start": { - "$date": "2021-01-02T05:58:24.000Z" - }, - "end": { - "$date": "2021-01-02T07:34:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "3a76bba9-5f49-4ad9-a42f-a0f56dd5d90a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T06:02:20.000Z" - }, - "end": { - "$date": "2021-01-02T06:59:36.000Z" - }, - "events": [ - { - "uuid": "8c12bb03-21d3-4a80-b12d-5fe38897bf3d", - "start": { - "$date": "2021-01-02T06:02:20.000Z" - }, - "end": { - "$date": "2021-01-02T06:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "d268e525-a560-49c5-8175-9de961817c5e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T06:14:02.000Z" - }, - "end": { - "$date": "2021-01-02T08:51:46.000Z" - }, - "events": [ - { - "uuid": "26ca9144-be12-4367-adf8-d058df01cd9b", - "start": { - "$date": "2021-01-02T06:14:02.000Z" - }, - "end": { - "$date": "2021-01-02T08:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4272bb4-01c7-476c-8b3d-38c712ffa2bd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T06:41:16.000Z" - }, - "end": { - "$date": "2021-01-02T06:42:34.000Z" - }, - "events": [ - { - "uuid": "06dcf608-f88e-4297-aa97-31be7c8bf4cf", - "start": { - "$date": "2021-01-02T06:41:16.000Z" - }, - "end": { - "$date": "2021-01-02T06:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcef8b6d-ab58-45ca-b76e-01ee88a6b073", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T07:00:24.000Z" - }, - "end": { - "$date": "2021-01-02T07:00:25.000Z" - }, - "events": [ - { - "uuid": "e5ef34f7-7f46-4b15-a4d1-05155afb9a0a", - "start": { - "$date": "2021-01-02T07:00:24.000Z" - }, - "end": { - "$date": "2021-01-02T07:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "b7521caf-f3c7-4d59-8578-f8d57ea088ec", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-02T06:57:07.000Z" - }, - "end": { - "$date": "2021-01-02T12:52:19.000Z" - }, - "events": [ - { - "uuid": "2d699aed-703c-4321-aa11-71fd18b3822b", - "start": { - "$date": "2021-01-02T06:57:07.000Z" - }, - "end": { - "$date": "2021-01-02T12:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e35718e6-3ab0-454d-9b53-bea7f76679f1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-02T07:00:27.000Z" - }, - "end": { - "$date": "2021-01-02T07:47:37.000Z" - }, - "events": [ - { - "uuid": "404bddcd-a685-4fe2-8315-5e61e98b8fcf", - "start": { - "$date": "2021-01-02T07:00:27.000Z" - }, - "end": { - "$date": "2021-01-02T07:47:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acd5c30b-e23f-4cc0-9d4a-8ebb37c4c75c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T07:01:07.000Z" - }, - "end": { - "$date": "2021-01-02T14:29:09.000Z" - }, - "events": [ - { - "uuid": "91d5d4e9-f623-4bc4-8165-db7375ab7927", - "start": { - "$date": "2021-01-02T07:01:07.000Z" - }, - "end": { - "$date": "2021-01-02T12:21:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04ba565b-1651-46ca-91ee-4eceafdee9cf", - "start": { - "$date": "2021-01-02T12:21:07.000Z" - }, - "end": { - "$date": "2021-01-02T12:29:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a5764924-53e5-47e1-af3d-403197b4e219", - "start": { - "$date": "2021-01-02T12:29:07.000Z" - }, - "end": { - "$date": "2021-01-02T12:46:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "114c67e6-d1e6-49d1-ac89-53afc3db7e9f", - "start": { - "$date": "2021-01-02T12:46:07.000Z" - }, - "end": { - "$date": "2021-01-02T13:00:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39a2577d-d45b-4751-a309-f73eff40a4a6", - "start": { - "$date": "2021-01-02T13:00:07.000Z" - }, - "end": { - "$date": "2021-01-02T13:11:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb9e8cbc-cfa8-4f5a-89b7-0e9f90753a66", - "start": { - "$date": "2021-01-02T13:11:07.000Z" - }, - "end": { - "$date": "2021-01-02T13:22:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c7bafc9-2e7c-4c6e-b86e-5571fbae1c5f", - "start": { - "$date": "2021-01-02T13:22:07.000Z" - }, - "end": { - "$date": "2021-01-02T13:32:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c2dfb50-840c-43ea-b244-a01fb3ff7054", - "start": { - "$date": "2021-01-02T13:32:07.000Z" - }, - "end": { - "$date": "2021-01-02T13:41:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5956fd12-88cf-413f-8ec5-d33c7e39abae", - "start": { - "$date": "2021-01-02T13:41:07.000Z" - }, - "end": { - "$date": "2021-01-02T13:51:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5f1208b-c579-4e43-ad58-9e59dd7a8ffc", - "start": { - "$date": "2021-01-02T13:51:07.000Z" - }, - "end": { - "$date": "2021-01-02T14:29:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "921b1392-1503-4973-85cc-82de33ddafed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T08:57:30.000Z" - }, - "end": { - "$date": "2021-01-02T08:59:33.000Z" - }, - "events": [ - { - "uuid": "e66bfc1f-2f4f-46ba-a8ff-35ebd6dc6373", - "start": { - "$date": "2021-01-02T08:57:30.000Z" - }, - "end": { - "$date": "2021-01-02T08:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33088fce-7a81-431d-9759-469dd8551760", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T07:08:34.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:53.000Z" - }, - "events": [ - { - "uuid": "1dd42d1a-93d5-4205-93c1-e0de19e3c477", - "start": { - "$date": "2021-01-02T07:08:34.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e649e4ff-b98f-4b6a-b158-ab419cd1ad6e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T07:08:39.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:56.000Z" - }, - "events": [ - { - "uuid": "56e604ff-d314-4bcf-9bd9-54f0d2f291c9", - "start": { - "$date": "2021-01-02T07:08:39.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebf4bfb8-fe08-4434-af24-01ce1bbd52ed", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-02T07:08:30.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:50.000Z" - }, - "events": [ - { - "uuid": "7102929e-13d0-45b2-bb52-22cfc996074b", - "start": { - "$date": "2021-01-02T07:08:30.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f24c6195-91ab-4064-922b-08b0ea1acf19", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-02T07:08:28.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:49.000Z" - }, - "events": [ - { - "uuid": "72ad382c-59c9-4e74-80e0-4bb2bfe55e3e", - "start": { - "$date": "2021-01-02T07:08:28.000Z" - }, - "end": { - "$date": "2021-01-02T07:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d8606e5-f181-403b-8db1-dccda1c2cd00", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T07:28:56.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:43.000Z" - }, - "events": [ - { - "uuid": "c1e41dd5-f165-4e51-80af-5cb8f6fabea3", - "start": { - "$date": "2021-01-02T07:28:56.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52ea23db-67de-4c0a-b9cf-add3facf7a5b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-02T07:28:55.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:36.000Z" - }, - "events": [ - { - "uuid": "bfd8a155-86ab-4a53-b3c5-1fe517d000a5", - "start": { - "$date": "2021-01-02T07:28:55.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52802ffb-8706-4090-96f9-d465ae46e9b9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T07:29:01.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:37.000Z" - }, - "events": [ - { - "uuid": "6e46ff8b-636e-4d8c-bcc6-9f0b5a6626e6", - "start": { - "$date": "2021-01-02T07:29:01.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01af0de2-84e3-4145-85a2-ac1bc54bcd73", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-02T07:28:53.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:34.000Z" - }, - "events": [ - { - "uuid": "a4a3b7dd-bddd-450f-ba7d-2fdc12ba4c98", - "start": { - "$date": "2021-01-02T07:28:53.000Z" - }, - "end": { - "$date": "2021-01-02T07:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "1701b44d-4050-4e10-898b-e0e4f6056921", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T07:38:57.000Z" - }, - "end": { - "$date": "2021-01-02T07:43:03.000Z" - }, - "events": [ - { - "uuid": "c7aebbae-220d-47bc-89a6-a97d71528ab5", - "start": { - "$date": "2021-01-02T07:38:57.000Z" - }, - "end": { - "$date": "2021-01-02T07:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26adda30-7aa1-4f75-90e6-17b93c0ef22e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T07:49:31.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:41.000Z" - }, - "events": [ - { - "uuid": "676dc1ce-8207-443f-b6ea-3be1f10a571c", - "start": { - "$date": "2021-01-02T07:49:31.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f2472c4-1edc-4166-ab8f-07b98784f9a1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-02T07:49:31.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:36.000Z" - }, - "events": [ - { - "uuid": "d45cdd9b-9490-42c2-b7f8-bdd7e4286155", - "start": { - "$date": "2021-01-02T07:49:31.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e6226ff-c3f1-4d02-abf8-84a2062cfd15", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-02T07:49:49.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:30.000Z" - }, - "events": [ - { - "uuid": "009878fb-00d9-4b74-bb79-98c6c4eb01d1", - "start": { - "$date": "2021-01-02T07:49:49.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b569e07-c23a-4152-a566-4f8ae2a6a2b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T07:49:37.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:33.000Z" - }, - "events": [ - { - "uuid": "0608d773-6263-4fde-943e-18ae6cdc71e7", - "start": { - "$date": "2021-01-02T07:49:37.000Z" - }, - "end": { - "$date": "2021-01-02T08:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bbd88fc-b666-462a-b12c-837cd0711d08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T08:08:17.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:06.000Z" - }, - "events": [ - { - "uuid": "efde2d0a-ca27-4c6e-994f-3d353b08f66c", - "start": { - "$date": "2021-01-02T08:08:17.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d63f220-f2e8-498c-bf04-db8fbb34e516", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T08:08:23.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:09.000Z" - }, - "events": [ - { - "uuid": "435c7150-e351-4e91-8454-ce5cc094263a", - "start": { - "$date": "2021-01-02T08:08:23.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78a7259c-17d6-494d-9a2f-90800cabacc0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-02T08:08:34.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:05.000Z" - }, - "events": [ - { - "uuid": "f210c467-1e80-4f7d-8eb3-fa74d462bfec", - "start": { - "$date": "2021-01-02T08:08:34.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09d94517-ddd1-4712-b0a5-38129d2ca7fc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-02T08:08:16.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:06.000Z" - }, - "events": [ - { - "uuid": "7b61e815-699f-4668-aef8-82fad7bfce9c", - "start": { - "$date": "2021-01-02T08:08:16.000Z" - }, - "end": { - "$date": "2021-01-02T08:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1911ffa8-8954-4da8-898c-284272661f22", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T08:09:17.000Z" - }, - "end": { - "$date": "2021-01-02T08:25:07.000Z" - }, - "events": [ - { - "uuid": "76ca361f-d846-4357-b67f-d1d309666693", - "start": { - "$date": "2021-01-02T08:09:17.000Z" - }, - "end": { - "$date": "2021-01-02T08:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2fef94d-2c00-40f6-8b47-14f2a30dd762", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T08:37:30.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:30.000Z" - }, - "events": [ - { - "uuid": "7f2fee4f-1232-4bd0-a511-bd468013b393", - "start": { - "$date": "2021-01-02T08:37:30.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bde467ce-99c7-43a4-ad5a-e712a7800759", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-02T08:37:27.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:28.000Z" - }, - "events": [ - { - "uuid": "ffffb8ae-0e84-4cd3-b74a-047159299e5c", - "start": { - "$date": "2021-01-02T08:37:27.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fd4d09f-3aed-4997-b5e8-92cf861827a5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T08:37:36.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:21.000Z" - }, - "events": [ - { - "uuid": "f4cbdd15-8da8-4a9b-b11b-98ea47dcdf72", - "start": { - "$date": "2021-01-02T08:37:36.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "935d5b00-9f77-4009-bf94-2a005c01e2e9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-02T08:37:26.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:22.000Z" - }, - "events": [ - { - "uuid": "2ffbbdc2-e063-4811-b6bb-51210c388cd5", - "start": { - "$date": "2021-01-02T08:37:26.000Z" - }, - "end": { - "$date": "2021-01-02T08:57:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "b5d7f634-4fe5-4bff-81b5-d4e94ea1988d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T08:39:20.000Z" - }, - "end": { - "$date": "2021-01-02T09:10:11.000Z" - }, - "events": [ - { - "uuid": "fa3ce886-ba59-4dbd-aee5-d59a2d7b0905", - "start": { - "$date": "2021-01-02T08:39:20.000Z" - }, - "end": { - "$date": "2021-01-02T09:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bb5a7308-0a4b-47e1-83bb-837998e6ac82", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T09:00:18.000Z" - }, - "end": { - "$date": "2021-01-02T09:05:15.000Z" - }, - "events": [ - { - "uuid": "b6dd1fd8-b738-41ef-8dd5-86e486f3bf43", - "start": { - "$date": "2021-01-02T09:00:18.000Z" - }, - "end": { - "$date": "2021-01-02T09:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "93b647a8-5ea5-4c18-a625-6ab051208834", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T17:05:41.000Z" - }, - "end": { - "$date": "2021-01-02T18:16:42.000Z" - }, - "events": [ - { - "uuid": "907b5990-6fdb-451a-a5dd-445199acd249", - "start": { - "$date": "2021-01-02T17:05:41.000Z" - }, - "end": { - "$date": "2021-01-02T18:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "77cc2299-a5f0-4dbc-b981-bf5694708757", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T17:26:21.000Z" - }, - "end": { - "$date": "2021-01-02T18:45:37.000Z" - }, - "events": [ - { - "uuid": "a48ecdc3-e3e7-4fba-96b8-f4ed35fcbbc9", - "start": { - "$date": "2021-01-02T17:26:21.000Z" - }, - "end": { - "$date": "2021-01-02T18:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "f67bf698-0edb-4db3-8706-0d061cf1109b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T17:26:35.000Z" - }, - "end": { - "$date": "2021-01-02T18:48:13.000Z" - }, - "events": [ - { - "uuid": "86c5951e-c788-4ff8-9a35-52539ce78547", - "start": { - "$date": "2021-01-02T17:26:35.000Z" - }, - "end": { - "$date": "2021-01-02T18:48:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6b8fbf78-7b80-4062-b4b0-c94b954038b9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-02T18:20:45.000Z" - }, - "end": { - "$date": "2021-01-02T18:42:50.000Z" - }, - "events": [ - { - "uuid": "996b229a-4675-4f96-8f61-47ba36bdd65e", - "start": { - "$date": "2021-01-02T18:20:45.000Z" - }, - "end": { - "$date": "2021-01-02T18:42:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1010f10d-8d31-45e3-91ea-6fe3a228ba36", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-02T18:43:32.000Z" - }, - "end": { - "$date": "2021-01-02T18:46:28.000Z" - }, - "events": [ - { - "uuid": "a2f97069-4336-4c3e-a124-1c0435cf64a6", - "start": { - "$date": "2021-01-02T18:43:32.000Z" - }, - "end": { - "$date": "2021-01-02T18:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "22e313ca-3d07-4a80-8f7d-75237f1a4c62", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T18:46:17.000Z" - }, - "end": { - "$date": "2021-01-02T18:49:37.000Z" - }, - "events": [ - { - "uuid": "192c931e-950d-4c68-b05a-a4ee4b183689", - "start": { - "$date": "2021-01-02T18:46:17.000Z" - }, - "end": { - "$date": "2021-01-02T18:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1140eec3-31d0-4f7b-bdd2-4c92ed476222", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T18:47:56.000Z" - }, - "end": { - "$date": "2021-01-02T18:55:23.000Z" - }, - "events": [ - { - "uuid": "997b78fd-c3a0-45a8-bb90-0486123e08d9", - "start": { - "$date": "2021-01-02T18:47:56.000Z" - }, - "end": { - "$date": "2021-01-02T18:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d06b6dc1-8251-416b-a470-18b245a9ffae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T21:57:36.000Z" - }, - "end": { - "$date": "2021-01-02T22:27:43.000Z" - }, - "events": [ - { - "uuid": "aa64ceb8-0220-4490-b993-356a831a2b3a", - "start": { - "$date": "2021-01-02T21:57:36.000Z" - }, - "end": { - "$date": "2021-01-02T22:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c0e527ad-1c2f-4d31-be63-a8d29b4f4638", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T18:58:26.000Z" - }, - "end": { - "$date": "2021-01-02T21:52:23.000Z" - }, - "events": [ - { - "uuid": "860089ff-fdbd-41dd-a7ea-3ed79c0e1807", - "start": { - "$date": "2021-01-02T18:58:26.000Z" - }, - "end": { - "$date": "2021-01-02T20:54:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb4a082b-886b-4ad7-b3ac-69768360907b", - "start": { - "$date": "2021-01-02T20:54:26.000Z" - }, - "end": { - "$date": "2021-01-02T20:58:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "951b955d-e2a9-45e1-b045-f75afd490b3a", - "start": { - "$date": "2021-01-02T20:58:26.000Z" - }, - "end": { - "$date": "2021-01-02T21:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "b2ed1ea1-d715-438f-bb6d-0af0d03783c2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-02T18:59:16.000Z" - }, - "end": { - "$date": "2021-01-02T19:50:12.000Z" - }, - "events": [ - { - "uuid": "1b7b1f33-994f-47f6-ae70-e7d60d9915a8", - "start": { - "$date": "2021-01-02T18:59:16.000Z" - }, - "end": { - "$date": "2021-01-02T19:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3a6da035-55fd-4877-a5e5-18d307987c63", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-02T18:59:43.000Z" - }, - "end": { - "$date": "2021-01-02T19:02:54.000Z" - }, - "events": [ - { - "uuid": "a999130c-99e1-4cb0-a510-228adb775e5a", - "start": { - "$date": "2021-01-02T18:59:43.000Z" - }, - "end": { - "$date": "2021-01-02T19:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0116aa97-3edc-471d-b26f-8a1e27c5d497", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T19:07:04.000Z" - }, - "end": { - "$date": "2021-01-02T19:15:44.000Z" - }, - "events": [ - { - "uuid": "bad688e2-aa0e-4b8e-9f06-73ad7a67ff62", - "start": { - "$date": "2021-01-02T19:07:04.000Z" - }, - "end": { - "$date": "2021-01-02T19:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1d9470cc-7946-49fa-9de0-589ae091592b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T19:15:54.000Z" - }, - "end": { - "$date": "2021-01-02T19:36:54.000Z" - }, - "events": [ - { - "uuid": "0c05e3b1-91b2-4387-80bf-c7d64afb3ea0", - "start": { - "$date": "2021-01-02T19:15:54.000Z" - }, - "end": { - "$date": "2021-01-02T19:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "33eef798-e111-4576-8b86-46d078806778", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-02T19:32:22.000Z" - }, - "end": { - "$date": "2021-01-02T22:41:03.000Z" - }, - "events": [ - { - "uuid": "630970a8-623f-4c5e-b94e-b9141b853593", - "start": { - "$date": "2021-01-02T19:32:22.000Z" - }, - "end": { - "$date": "2021-01-02T22:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "05a91701-f1e6-4609-95dc-00d50df82e11", - "uuid": "985a47ea-0fd3-4634-abe5-e56c095e9756", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T19:38:45.000Z" - }, - "end": { - "$date": "2021-01-02T19:41:29.000Z" - }, - "events": [ - { - "uuid": "cd387bd6-50da-429c-a042-387e2c38c63d", - "start": { - "$date": "2021-01-02T19:38:45.000Z" - }, - "end": { - "$date": "2021-01-02T19:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "05a91701-f1e6-4609-95dc-00d50df82e11", - "uuid": "ff222c73-d2ca-468a-9b56-74c45f264e17", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T19:42:05.000Z" - }, - "end": { - "$date": "2021-01-02T20:00:45.000Z" - }, - "events": [ - { - "uuid": "8ecc2cae-e60c-431f-89ba-c0b5ecb03a4a", - "start": { - "$date": "2021-01-02T19:42:05.000Z" - }, - "end": { - "$date": "2021-01-02T20:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "5d3fbe7e-cdb1-491d-a627-7208e78130bd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T20:01:45.000Z" - }, - "end": { - "$date": "2021-01-02T20:40:25.000Z" - }, - "events": [ - { - "uuid": "98a21a98-1ebb-4e34-8ee0-43cf7f8be238", - "start": { - "$date": "2021-01-02T20:01:45.000Z" - }, - "end": { - "$date": "2021-01-02T20:40:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e6e6e3b4-def5-4ab5-acf4-65a69700673b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-02T20:36:21.000Z" - }, - "end": { - "$date": "2021-01-02T21:32:49.000Z" - }, - "events": [ - { - "uuid": "fa50d153-a0e8-4026-a897-40ab752b6bd1", - "start": { - "$date": "2021-01-02T20:36:21.000Z" - }, - "end": { - "$date": "2021-01-02T21:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "2ebcd83e-53f6-41df-a642-7a42384a415d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-02T20:46:38.000Z" - }, - "end": { - "$date": "2021-01-02T23:29:20.000Z" - }, - "events": [ - { - "uuid": "66c3f79e-0964-41b6-b028-c222a33d7685", - "start": { - "$date": "2021-01-02T20:46:38.000Z" - }, - "end": { - "$date": "2021-01-02T23:29:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dd33e6c4-f0bb-478f-9759-b85f689a6e76", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T21:15:19.000Z" - }, - "end": { - "$date": "2021-01-02T22:28:09.000Z" - }, - "events": [ - { - "uuid": "94d1681e-482f-42c1-99f4-cca66ffffccf", - "start": { - "$date": "2021-01-02T21:15:19.000Z" - }, - "end": { - "$date": "2021-01-02T22:28:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2f259b17-c84f-4dc9-ac6b-11915cfcdcf8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-02T21:20:45.000Z" - }, - "end": { - "$date": "2021-01-02T21:25:39.000Z" - }, - "events": [ - { - "uuid": "a9918c39-df3a-4a1d-a40f-4d36a86c0339", - "start": { - "$date": "2021-01-02T21:20:45.000Z" - }, - "end": { - "$date": "2021-01-02T21:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0dac1738-f6a8-4637-a57e-5859823c5eaa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T22:21:47.000Z" - }, - "end": { - "$date": "2021-01-02T22:56:51.000Z" - }, - "events": [ - { - "uuid": "5207cfd6-64bb-48ac-8f31-16c8ca13e582", - "start": { - "$date": "2021-01-02T22:21:47.000Z" - }, - "end": { - "$date": "2021-01-02T22:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "53a6eba3-6551-4e1b-b23c-77a6308f9455", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-02T22:22:00.000Z" - }, - "end": { - "$date": "2021-01-02T23:43:43.000Z" - }, - "events": [ - { - "uuid": "f5e53833-9e87-4a74-9e19-376f02b18728", - "start": { - "$date": "2021-01-02T22:22:00.000Z" - }, - "end": { - "$date": "2021-01-02T23:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5f6a173c-6765-4245-8ab5-f12444061556", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-02T22:27:59.000Z" - }, - "end": { - "$date": "2021-01-03T01:19:19.000Z" - }, - "events": [ - { - "uuid": "69445f64-8f1a-47d0-9edb-da6ede732036", - "start": { - "$date": "2021-01-02T22:27:59.000Z" - }, - "end": { - "$date": "2021-01-03T01:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3fe368b7-45d0-40e2-a1d9-e4c9a3edcced", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T22:50:26.000Z" - }, - "end": { - "$date": "2021-01-02T22:51:25.000Z" - }, - "events": [ - { - "uuid": "c4cf86e6-2e5d-493d-b18b-985d24fb78e9", - "start": { - "$date": "2021-01-02T22:50:26.000Z" - }, - "end": { - "$date": "2021-01-02T22:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "33d132a8-b4d4-46e9-984c-8f23d655646c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T23:01:34.000Z" - }, - "end": { - "$date": "2021-01-02T23:10:15.000Z" - }, - "events": [ - { - "uuid": "c92bd752-e09c-4455-857d-54d602b2d531", - "start": { - "$date": "2021-01-02T23:01:34.000Z" - }, - "end": { - "$date": "2021-01-02T23:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "800125cf-584f-4713-afd9-0fd8310bcf7e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T22:53:01.000Z" - }, - "end": { - "$date": "2021-01-02T22:55:11.000Z" - }, - "events": [ - { - "uuid": "a3dca3ea-908e-477d-9ce9-9ef9489f6d79", - "start": { - "$date": "2021-01-02T22:53:01.000Z" - }, - "end": { - "$date": "2021-01-02T22:55:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "aebc24d6-5c3f-4341-b0ec-35a9cf6eb55c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T22:56:27.000Z" - }, - "end": { - "$date": "2021-01-02T22:59:22.000Z" - }, - "events": [ - { - "uuid": "c0c2afa9-6759-45f3-a77e-cd7f0906bcec", - "start": { - "$date": "2021-01-02T22:56:27.000Z" - }, - "end": { - "$date": "2021-01-02T22:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "85aac421-79c2-4c6c-bc26-29ff16f07a52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T22:58:37.000Z" - }, - "end": { - "$date": "2021-01-02T23:01:06.000Z" - }, - "events": [ - { - "uuid": "60916675-50a5-47a2-92b9-84caef9daef7", - "start": { - "$date": "2021-01-02T22:58:37.000Z" - }, - "end": { - "$date": "2021-01-02T23:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "99c50ff1-deeb-4838-aacf-75cfbd31a93b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-02T22:59:57.000Z" - }, - "end": { - "$date": "2021-01-02T23:49:40.000Z" - }, - "events": [ - { - "uuid": "9a0ce97b-ef8c-4fbc-b386-e2c8d0313687", - "start": { - "$date": "2021-01-02T22:59:57.000Z" - }, - "end": { - "$date": "2021-01-02T23:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e140a3d7-7da7-4e83-8a23-c212bb356182", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-02T23:01:17.000Z" - }, - "end": { - "$date": "2021-01-02T23:49:37.000Z" - }, - "events": [ - { - "uuid": "0edb492c-7c77-496c-86b2-809a2e4b141f", - "start": { - "$date": "2021-01-02T23:01:17.000Z" - }, - "end": { - "$date": "2021-01-02T23:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "db97c0e9-8fd7-453b-bb40-c42942b32791", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T23:04:21.000Z" - }, - "end": { - "$date": "2021-01-02T23:05:31.000Z" - }, - "events": [ - { - "uuid": "688daa67-6387-454b-b092-4273c28cc8d0", - "start": { - "$date": "2021-01-02T23:04:21.000Z" - }, - "end": { - "$date": "2021-01-02T23:05:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "32123e52-a269-4ac3-8bb4-2c83880bb999", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-02T23:06:06.000Z" - }, - "end": { - "$date": "2021-01-03T00:02:42.000Z" - }, - "events": [ - { - "uuid": "1d214444-b1da-4c7f-a002-34a335787967", - "start": { - "$date": "2021-01-02T23:06:06.000Z" - }, - "end": { - "$date": "2021-01-03T00:02:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d45fa996-45e0-4938-8cb8-1a2ec12d7de8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-02T23:06:09.000Z" - }, - "end": { - "$date": "2021-01-02T23:22:28.000Z" - }, - "events": [ - { - "uuid": "04e8b7b9-cf60-41a6-9e98-657084911911", - "start": { - "$date": "2021-01-02T23:06:09.000Z" - }, - "end": { - "$date": "2021-01-02T23:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "638fd7fc-4898-4507-bf99-7390652fcadf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T23:10:25.000Z" - }, - "end": { - "$date": "2021-01-02T23:15:01.000Z" - }, - "events": [ - { - "uuid": "c3ce7dad-5603-4854-9ebb-eab9531c557b", - "start": { - "$date": "2021-01-02T23:10:25.000Z" - }, - "end": { - "$date": "2021-01-02T23:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bc15ca42-8bf6-476c-90a1-e80c408f7b15", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-02T23:55:39.000Z" - }, - "end": { - "$date": "2021-01-03T00:01:05.000Z" - }, - "events": [ - { - "uuid": "9a8400ea-5fd9-47e7-b673-a6922157542f", - "start": { - "$date": "2021-01-02T23:55:39.000Z" - }, - "end": { - "$date": "2021-01-03T00:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f686979d-722f-4c28-b42c-c75d2eca1f42", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T01:24:58.000Z" - }, - "end": { - "$date": "2021-01-03T01:52:42.000Z" - }, - "events": [ - { - "uuid": "cd4435b1-d4c7-4f7c-ba4c-5c5a72c9f727", - "start": { - "$date": "2021-01-03T01:24:58.000Z" - }, - "end": { - "$date": "2021-01-03T01:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e28044be-6b1e-425a-8450-96bfb0cca2fe", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-02T23:29:59.000Z" - }, - "end": { - "$date": "2021-01-02T23:31:25.000Z" - }, - "events": [ - { - "uuid": "5c666429-f2de-480f-85fc-90efe7f2b080", - "start": { - "$date": "2021-01-02T23:29:59.000Z" - }, - "end": { - "$date": "2021-01-02T23:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e0303e9f-decc-4411-a577-257798dbf15f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-02T23:32:03.000Z" - }, - "end": { - "$date": "2021-01-03T02:16:07.000Z" - }, - "events": [ - { - "uuid": "7a07b64e-dd6e-4065-b46e-6c8f08bf3c61", - "start": { - "$date": "2021-01-02T23:32:03.000Z" - }, - "end": { - "$date": "2021-01-03T02:16:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "542e12f8-8608-429a-a05f-df4f8b035b34", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T00:01:11.000Z" - }, - "end": { - "$date": "2021-01-03T00:10:17.000Z" - }, - "events": [ - { - "uuid": "3456b3ad-6eeb-4436-8992-4b9ccf03d054", - "start": { - "$date": "2021-01-03T00:01:11.000Z" - }, - "end": { - "$date": "2021-01-03T00:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b471f39a-816f-4b83-bea4-f06e80ece481", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-03T00:01:32.000Z" - }, - "end": { - "$date": "2021-01-03T00:23:49.000Z" - }, - "events": [ - { - "uuid": "c2d9f01d-ec41-468e-bb9e-ac7d31c0406d", - "start": { - "$date": "2021-01-03T00:01:32.000Z" - }, - "end": { - "$date": "2021-01-03T00:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "888de1c3-994d-4a35-a8c2-86fa3d2338f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T00:06:25.000Z" - }, - "end": { - "$date": "2021-01-03T00:17:23.000Z" - }, - "events": [ - { - "uuid": "b6cb4e8a-3c96-4e40-958d-bfc49c9f7eb2", - "start": { - "$date": "2021-01-03T00:06:25.000Z" - }, - "end": { - "$date": "2021-01-03T00:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "281c2b19-b4db-47f9-a2dd-26d3d599dade", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T00:18:23.000Z" - }, - "end": { - "$date": "2021-01-03T00:47:49.000Z" - }, - "events": [ - { - "uuid": "235f8dea-ad73-408b-8483-598df92f8c7f", - "start": { - "$date": "2021-01-03T00:18:23.000Z" - }, - "end": { - "$date": "2021-01-03T00:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6638bcb8-fbab-433b-bf6e-5411505461a9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T00:18:28.000Z" - }, - "end": { - "$date": "2021-01-03T00:47:45.000Z" - }, - "events": [ - { - "uuid": "2f2dafc1-3025-4251-b5ac-3beb0d220cb2", - "start": { - "$date": "2021-01-03T00:18:28.000Z" - }, - "end": { - "$date": "2021-01-03T00:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9341bbc4-ca86-402d-a33a-6307de5f731d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-03T00:24:03.000Z" - }, - "end": { - "$date": "2021-01-03T01:52:21.000Z" - }, - "events": [ - { - "uuid": "4954b8bb-71e2-4d34-86d2-689793024c27", - "start": { - "$date": "2021-01-03T00:24:03.000Z" - }, - "end": { - "$date": "2021-01-03T01:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "61a84feb-41e1-41a5-b2d5-a78112e0f0fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-03T00:30:40.000Z" - }, - "end": { - "$date": "2021-01-03T01:17:11.000Z" - }, - "events": [ - { - "uuid": "db8d4f25-6859-4e80-81d6-5f9b5733dbae", - "start": { - "$date": "2021-01-03T00:30:40.000Z" - }, - "end": { - "$date": "2021-01-03T01:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "85cb0ddf-a4a8-4549-8bc0-10e9260e995d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-03T00:31:53.000Z" - }, - "end": { - "$date": "2021-01-03T00:56:10.000Z" - }, - "events": [ - { - "uuid": "c6575aae-4271-4fea-b591-9ae20be83e2c", - "start": { - "$date": "2021-01-03T00:31:53.000Z" - }, - "end": { - "$date": "2021-01-03T00:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "615e86ed-67e6-4968-af75-77b99eb97b03", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T00:56:05.000Z" - }, - "end": { - "$date": "2021-01-03T01:22:55.000Z" - }, - "events": [ - { - "uuid": "c2dfb96a-c72e-4966-be19-706bbb88aa61", - "start": { - "$date": "2021-01-03T00:56:05.000Z" - }, - "end": { - "$date": "2021-01-03T01:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "958fd367-057c-4efb-a638-3b8f2631bca0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T00:53:20.000Z" - }, - "end": { - "$date": "2021-01-03T01:23:00.000Z" - }, - "events": [ - { - "uuid": "dc4fba6d-ce36-4bf8-8724-e2387a9986c1", - "start": { - "$date": "2021-01-03T00:53:20.000Z" - }, - "end": { - "$date": "2021-01-03T01:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "fbed3b4e-9892-45a1-876c-6532a9364cc8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-03T01:07:22.000Z" - }, - "end": { - "$date": "2021-01-03T02:03:46.000Z" - }, - "events": [ - { - "uuid": "1361f015-2bc7-4c85-a5f3-2c4535e2f75a", - "start": { - "$date": "2021-01-03T01:07:22.000Z" - }, - "end": { - "$date": "2021-01-03T02:03:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "0e8ba3ec-7036-43a9-a472-8ddf845b7a62", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T01:50:59.000Z" - }, - "end": { - "$date": "2021-01-03T03:09:27.000Z" - }, - "events": [ - { - "uuid": "b54f3e52-ef62-43e0-92e6-76cdb6c35228", - "start": { - "$date": "2021-01-03T01:50:59.000Z" - }, - "end": { - "$date": "2021-01-03T03:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "334681b4-65e3-4a4a-9bcf-70f0f7a93fa6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T01:59:43.000Z" - }, - "end": { - "$date": "2021-01-03T02:28:35.000Z" - }, - "events": [ - { - "uuid": "fd1970c1-ad14-4c68-b9b5-9d76ef491f17", - "start": { - "$date": "2021-01-03T01:59:43.000Z" - }, - "end": { - "$date": "2021-01-03T02:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "a60bd914-a201-4ccc-9d8b-cca6baa6d9db", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T02:07:24.000Z" - }, - "end": { - "$date": "2021-01-03T02:17:55.000Z" - }, - "events": [ - { - "uuid": "93e0c634-af4b-4cd6-a278-fb4180b2f3da", - "start": { - "$date": "2021-01-03T02:07:24.000Z" - }, - "end": { - "$date": "2021-01-03T02:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36634cc5-9245-4dc2-8bf9-536c6b2969a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-03T02:15:48.000Z" - }, - "end": { - "$date": "2021-01-03T06:35:58.000Z" - }, - "events": [ - { - "uuid": "6a1207d3-1c08-4891-8ae2-cdba687217a5", - "start": { - "$date": "2021-01-03T02:15:48.000Z" - }, - "end": { - "$date": "2021-01-03T06:35:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "52f9a47e-9bd6-4373-90f7-67faf6911907", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T02:18:20.000Z" - }, - "end": { - "$date": "2021-01-03T02:46:20.000Z" - }, - "events": [ - { - "uuid": "a706036f-dbaa-4639-97da-07fec91065ed", - "start": { - "$date": "2021-01-03T02:18:20.000Z" - }, - "end": { - "$date": "2021-01-03T02:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ceca3eae-bd6a-43d3-ae29-93bedaccb78c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-03T02:20:57.000Z" - }, - "end": { - "$date": "2021-01-03T06:35:46.000Z" - }, - "events": [ - { - "uuid": "9ef1ecb4-742e-4eb1-99e2-e0a3ae1fca2d", - "start": { - "$date": "2021-01-03T02:20:57.000Z" - }, - "end": { - "$date": "2021-01-03T06:35:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1e89f477-da1e-4612-8cbb-3620571ecbdc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-03T02:35:18.000Z" - }, - "end": { - "$date": "2021-01-03T04:34:37.000Z" - }, - "events": [ - { - "uuid": "36b5617b-0f97-4803-8c24-ffe12ec7565e", - "start": { - "$date": "2021-01-03T02:35:18.000Z" - }, - "end": { - "$date": "2021-01-03T04:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ea04b7f-7791-435e-ad88-9248a5bc6e47", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T02:46:40.000Z" - }, - "end": { - "$date": "2021-01-03T03:47:33.000Z" - }, - "events": [ - { - "uuid": "0bfa5b35-fc77-4407-a7e5-825ac4933b67", - "start": { - "$date": "2021-01-03T02:46:40.000Z" - }, - "end": { - "$date": "2021-01-03T03:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba061a0b-0357-4462-894a-27d3e1c6d841", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T02:59:41.000Z" - }, - "end": { - "$date": "2021-01-03T03:34:14.000Z" - }, - "events": [ - { - "uuid": "91796ba3-ef65-4ce5-b691-27217cc5c1af", - "start": { - "$date": "2021-01-03T02:59:41.000Z" - }, - "end": { - "$date": "2021-01-03T03:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b21b243b-951c-4bcc-b334-d939e22622f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T03:10:03.000Z" - }, - "end": { - "$date": "2021-01-03T03:48:15.000Z" - }, - "events": [ - { - "uuid": "f8b57cee-9b15-4919-aef0-a97c936c86e8", - "start": { - "$date": "2021-01-03T03:10:03.000Z" - }, - "end": { - "$date": "2021-01-03T03:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01c10d21-0b8c-4be8-9d18-bbcd695957ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T03:16:08.000Z" - }, - "end": { - "$date": "2021-01-03T03:51:06.000Z" - }, - "events": [ - { - "uuid": "211123ba-5969-4e16-8153-c382d261bd8b", - "start": { - "$date": "2021-01-03T03:16:08.000Z" - }, - "end": { - "$date": "2021-01-03T03:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "347eb3a4-2049-401c-81f5-610610b13811", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-03T03:31:35.000Z" - }, - "end": { - "$date": "2021-01-03T12:17:34.000Z" - }, - "events": [ - { - "uuid": "c73ede61-3a84-4647-8598-55feb4dc0ec5", - "start": { - "$date": "2021-01-03T03:31:35.000Z" - }, - "end": { - "$date": "2021-01-03T12:17:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cb87bdde-da35-4dfe-9718-1b50ca697790", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T03:35:05.000Z" - }, - "end": { - "$date": "2021-01-03T03:36:55.000Z" - }, - "events": [ - { - "uuid": "22bb77f7-71c3-4ee3-9d88-77c1e1ec9e8d", - "start": { - "$date": "2021-01-03T03:35:05.000Z" - }, - "end": { - "$date": "2021-01-03T03:36:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "44f7acbe-7d14-43e8-8dbd-ac9c1df3d41f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T04:28:16.000Z" - }, - "end": { - "$date": "2021-01-03T04:28:15.000Z" - }, - "events": [ - { - "uuid": "2cadc363-6908-48ef-8ee4-7e4f689ca06c", - "start": { - "$date": "2021-01-03T04:28:16.000Z" - }, - "end": { - "$date": "2021-01-03T04:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "832aa7f3-0c91-4d32-8bf7-43bcd032331c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T03:50:13.000Z" - }, - "end": { - "$date": "2021-01-03T05:30:09.000Z" - }, - "events": [ - { - "uuid": "13ebccd3-58ef-4651-82d2-a314a258ab6f", - "start": { - "$date": "2021-01-03T03:50:13.000Z" - }, - "end": { - "$date": "2021-01-03T05:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "0fa52d17-25f2-43b9-9bc5-253821541233", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T03:50:16.000Z" - }, - "end": { - "$date": "2021-01-03T05:31:12.000Z" - }, - "events": [ - { - "uuid": "6cb04157-ca79-47a2-8e25-3581a22eff27", - "start": { - "$date": "2021-01-03T03:50:16.000Z" - }, - "end": { - "$date": "2021-01-03T05:31:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "37895852-a90c-462e-9d3a-23f95ba8ad8d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T04:25:50.000Z" - }, - "end": { - "$date": "2021-01-03T04:27:10.000Z" - }, - "events": [ - { - "uuid": "4b168aa3-d9d7-4843-be1b-b59edaa16298", - "start": { - "$date": "2021-01-03T04:25:50.000Z" - }, - "end": { - "$date": "2021-01-03T04:27:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "451cb9ec-db64-454d-9ff0-f517320c750b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T04:28:36.000Z" - }, - "end": { - "$date": "2021-01-03T04:29:46.000Z" - }, - "events": [ - { - "uuid": "5b1b1828-98e7-4cd9-8bfe-624538b45815", - "start": { - "$date": "2021-01-03T04:28:36.000Z" - }, - "end": { - "$date": "2021-01-03T04:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fef26829-62ff-482f-acb6-c4eb338c35a9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T04:30:11.000Z" - }, - "end": { - "$date": "2021-01-03T05:11:24.000Z" - }, - "events": [ - { - "uuid": "e8a3e948-1ba2-4bd9-b83a-6f25d3281953", - "start": { - "$date": "2021-01-03T04:30:11.000Z" - }, - "end": { - "$date": "2021-01-03T05:11:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "69fb5469-d113-4208-82a6-99a7126dadfb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T04:34:35.000Z" - }, - "end": { - "$date": "2021-01-03T05:12:11.000Z" - }, - "events": [ - { - "uuid": "a1e1aa7d-d434-4b17-815a-49f74d8a4679", - "start": { - "$date": "2021-01-03T04:34:35.000Z" - }, - "end": { - "$date": "2021-01-03T05:12:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "58127092-3a6f-4d1a-bcf6-1a4eea5fc380", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T05:12:15.000Z" - }, - "end": { - "$date": "2021-01-03T05:38:57.000Z" - }, - "events": [ - { - "uuid": "be9dd643-f823-4b1d-8e7c-4b925ecb90ad", - "start": { - "$date": "2021-01-03T05:12:15.000Z" - }, - "end": { - "$date": "2021-01-03T05:38:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6bc80eef-37fc-441b-b6a1-0707d7b06140", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-03T05:18:15.000Z" - }, - "end": { - "$date": "2021-01-03T06:03:43.000Z" - }, - "events": [ - { - "uuid": "52bb5cdc-7622-4355-b9f3-fc855839dddd", - "start": { - "$date": "2021-01-03T05:18:15.000Z" - }, - "end": { - "$date": "2021-01-03T06:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "1d956f25-4180-429c-b2c9-53a97151d921", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-03T05:36:22.000Z" - }, - "end": { - "$date": "2021-01-03T06:37:43.000Z" - }, - "events": [ - { - "uuid": "17d3fa05-7418-4cf1-9714-e49388f67025", - "start": { - "$date": "2021-01-03T05:36:22.000Z" - }, - "end": { - "$date": "2021-01-03T06:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "29e5ea58-4446-4dc0-9e6d-8c7087e5c504", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T05:39:28.000Z" - }, - "end": { - "$date": "2021-01-03T05:52:40.000Z" - }, - "events": [ - { - "uuid": "6001c22a-613e-4c20-bb1b-f38435682198", - "start": { - "$date": "2021-01-03T05:39:28.000Z" - }, - "end": { - "$date": "2021-01-03T05:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "9d7d6dc0-7ee0-44c1-9696-6c4dc893e88c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T05:42:30.000Z" - }, - "end": { - "$date": "2021-01-03T05:58:15.000Z" - }, - "events": [ - { - "uuid": "972e879e-33af-4087-8355-c656e0cfa30c", - "start": { - "$date": "2021-01-03T05:42:30.000Z" - }, - "end": { - "$date": "2021-01-03T05:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d76a4a3-6c0b-4d0b-bcbd-50de087beac3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T05:47:21.000Z" - }, - "end": { - "$date": "2021-01-03T06:17:27.000Z" - }, - "events": [ - { - "uuid": "614adc85-062e-42f2-a2e4-a121c45f0a8c", - "start": { - "$date": "2021-01-03T05:47:21.000Z" - }, - "end": { - "$date": "2021-01-03T06:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "922af8b2-cbee-4442-aba1-1a68c4c6a1c2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T05:55:26.000Z" - }, - "end": { - "$date": "2021-01-03T06:22:39.000Z" - }, - "events": [ - { - "uuid": "36d8d143-09aa-4ccd-b090-b4e38b07e049", - "start": { - "$date": "2021-01-03T05:55:26.000Z" - }, - "end": { - "$date": "2021-01-03T06:22:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "bf349964-8997-4b2a-833f-19a286dd7df9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T06:08:48.000Z" - }, - "end": { - "$date": "2021-01-03T07:32:42.000Z" - }, - "events": [ - { - "uuid": "c39a39e6-c17a-432a-83d2-5ecc02c873cc", - "start": { - "$date": "2021-01-03T06:08:48.000Z" - }, - "end": { - "$date": "2021-01-03T07:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d717fd8d-2c18-4b13-9744-4ccbdab97a4e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T06:31:25.000Z" - }, - "end": { - "$date": "2021-01-03T07:08:37.000Z" - }, - "events": [ - { - "uuid": "9db84dc9-d865-4434-9e7c-0b92c390a9d0", - "start": { - "$date": "2021-01-03T06:31:25.000Z" - }, - "end": { - "$date": "2021-01-03T07:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3ea0d9e-56af-41ac-8f8b-2c3eb74909d9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T06:23:30.000Z" - }, - "end": { - "$date": "2021-01-03T08:00:15.000Z" - }, - "events": [ - { - "uuid": "01438e2e-1fa8-49c5-81d1-4febf1db0c07", - "start": { - "$date": "2021-01-03T06:23:30.000Z" - }, - "end": { - "$date": "2021-01-03T08:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1822c04d-0319-4afd-88bc-29a7ce16a053", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-03T06:39:11.000Z" - }, - "end": { - "$date": "2021-01-03T06:46:03.000Z" - }, - "events": [ - { - "uuid": "fb8793ee-f76f-4be8-965d-5c3fce923d2b", - "start": { - "$date": "2021-01-03T06:39:11.000Z" - }, - "end": { - "$date": "2021-01-03T06:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03bdddbc-0e71-44d0-ba66-4fae14e2a21d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T07:13:32.000Z" - }, - "end": { - "$date": "2021-01-03T07:37:16.000Z" - }, - "events": [ - { - "uuid": "3014b92c-0e3a-4ff9-a203-b7dbe4ff0cae", - "start": { - "$date": "2021-01-03T07:13:32.000Z" - }, - "end": { - "$date": "2021-01-03T07:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5bf7b68-9f3c-4fb6-8ef8-6e24760ea7b7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-03T07:09:37.000Z" - }, - "end": { - "$date": "2021-01-03T07:11:19.000Z" - }, - "events": [ - { - "uuid": "e3ba7abd-4eac-432a-8116-ddc82cdf127c", - "start": { - "$date": "2021-01-03T07:09:37.000Z" - }, - "end": { - "$date": "2021-01-03T07:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95273bfd-e76a-4295-af74-9154e43d0f2c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-03T07:13:56.000Z" - }, - "end": { - "$date": "2021-01-03T07:37:14.000Z" - }, - "events": [ - { - "uuid": "a17bc71d-1ba4-4357-8c0c-9a89894d1006", - "start": { - "$date": "2021-01-03T07:13:56.000Z" - }, - "end": { - "$date": "2021-01-03T07:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "caa0a396-b6c8-41c8-89dc-7e61da547e54", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T07:33:33.000Z" - }, - "end": { - "$date": "2021-01-03T07:34:38.000Z" - }, - "events": [ - { - "uuid": "c37eb5a5-57a5-446d-80f3-9d592721cf0c", - "start": { - "$date": "2021-01-03T07:33:33.000Z" - }, - "end": { - "$date": "2021-01-03T07:34:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "906c823d-4565-426a-bd72-d102d5cf49e0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T07:34:48.000Z" - }, - "end": { - "$date": "2021-01-03T09:04:22.000Z" - }, - "events": [ - { - "uuid": "5ce8f957-ec3a-4269-973b-45ac8751c3d1", - "start": { - "$date": "2021-01-03T07:34:48.000Z" - }, - "end": { - "$date": "2021-01-03T09:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05277576-8688-4e1d-89a4-75032ad7b002", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T07:40:33.000Z" - }, - "end": { - "$date": "2021-01-03T07:58:13.000Z" - }, - "events": [ - { - "uuid": "2407d3ae-8aad-443e-a26b-b3f7f1cb5556", - "start": { - "$date": "2021-01-03T07:40:33.000Z" - }, - "end": { - "$date": "2021-01-03T07:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8281953-a4ae-463a-a954-d15bfbe7aec1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-03T07:40:27.000Z" - }, - "end": { - "$date": "2021-01-03T07:58:21.000Z" - }, - "events": [ - { - "uuid": "e7def722-5e1d-468c-9d79-b105855959f2", - "start": { - "$date": "2021-01-03T07:40:27.000Z" - }, - "end": { - "$date": "2021-01-03T07:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed6b3343-88a2-4613-924a-58de86d06292", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T16:23:28.000Z" - }, - "end": { - "$date": "2021-01-03T17:00:57.000Z" - }, - "events": [ - { - "uuid": "7f3b2178-0c3c-4c84-bc1a-fb90424a83ed", - "start": { - "$date": "2021-01-03T16:23:28.000Z" - }, - "end": { - "$date": "2021-01-03T16:43:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a92fe21-9548-4540-b952-c0c30336ac29", - "start": { - "$date": "2021-01-03T16:43:28.000Z" - }, - "end": { - "$date": "2021-01-03T17:00:57.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "858939b1-28d2-465f-ab0b-a236de1582db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T16:34:50.000Z" - }, - "end": { - "$date": "2021-01-03T17:03:32.000Z" - }, - "events": [ - { - "uuid": "0e206420-a6b4-4822-8c4e-c61162f5235d", - "start": { - "$date": "2021-01-03T16:34:50.000Z" - }, - "end": { - "$date": "2021-01-03T17:03:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24884e50-f5ce-4942-baa2-a0773c3f0bab", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-03T16:36:11.000Z" - }, - "end": { - "$date": "2021-01-03T17:03:28.000Z" - }, - "events": [ - { - "uuid": "a6d01f81-9f05-4a50-96b2-5fcb78261143", - "start": { - "$date": "2021-01-03T16:36:11.000Z" - }, - "end": { - "$date": "2021-01-03T17:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "0cdfcc7d-5c33-43e8-b13b-0f9ce6b32f33", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T17:01:06.000Z" - }, - "end": { - "$date": "2021-01-03T17:59:59.000Z" - }, - "events": [ - { - "uuid": "a7b9c57c-0b6a-42b5-94d2-a29efd29fbbd", - "start": { - "$date": "2021-01-03T17:01:06.000Z" - }, - "end": { - "$date": "2021-01-03T17:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9b77cbb4-a3d2-4446-80b4-e534601bfaca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T17:03:27.000Z" - }, - "end": { - "$date": "2021-01-03T17:50:49.000Z" - }, - "events": [ - { - "uuid": "89a4618a-5873-4921-9012-661cb8af3d2d", - "start": { - "$date": "2021-01-03T17:03:27.000Z" - }, - "end": { - "$date": "2021-01-03T17:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f95eb046-7d46-47ac-a34b-cb4e1dacfb88", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-03T17:08:31.000Z" - }, - "end": { - "$date": "2021-01-03T17:51:17.000Z" - }, - "events": [ - { - "uuid": "bbf057b1-66e7-41f8-b15a-6250ce26ede6", - "start": { - "$date": "2021-01-03T17:08:31.000Z" - }, - "end": { - "$date": "2021-01-03T17:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ece1211-abf7-4174-baf0-3c1b6d282126", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-03T17:09:07.000Z" - }, - "end": { - "$date": "2021-01-03T17:51:09.000Z" - }, - "events": [ - { - "uuid": "b3c9b677-0da6-452e-b5e5-6656dac73217", - "start": { - "$date": "2021-01-03T17:09:07.000Z" - }, - "end": { - "$date": "2021-01-03T17:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "a8277afb-4288-4268-8a65-1833abb7ff90", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T17:30:50.000Z" - }, - "end": { - "$date": "2021-01-03T18:25:42.000Z" - }, - "events": [ - { - "uuid": "0af03654-d8b8-479c-b14d-968302da52b2", - "start": { - "$date": "2021-01-03T17:30:50.000Z" - }, - "end": { - "$date": "2021-01-03T17:53:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "efb1eef7-21b8-43da-9fcb-6dde4fda0d68", - "start": { - "$date": "2021-01-03T17:53:50.000Z" - }, - "end": { - "$date": "2021-01-03T18:25:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e893b0d6-e7df-44b8-9a64-12c041685e70", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T17:51:19.000Z" - }, - "end": { - "$date": "2021-01-03T18:52:26.000Z" - }, - "events": [ - { - "uuid": "e26b7554-cb17-4cbb-a61b-c7bb962a0dc6", - "start": { - "$date": "2021-01-03T17:51:19.000Z" - }, - "end": { - "$date": "2021-01-03T18:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d6e70af8-99ec-4447-9cb8-0df9f487e82f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T18:00:13.000Z" - }, - "end": { - "$date": "2021-01-03T19:15:17.000Z" - }, - "events": [ - { - "uuid": "964677ca-3969-4596-8b1d-ae827d25a5c7", - "start": { - "$date": "2021-01-03T18:00:13.000Z" - }, - "end": { - "$date": "2021-01-03T19:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a03ec69b-e166-493d-8eaa-2587c3640f2e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T18:25:48.000Z" - }, - "end": { - "$date": "2021-01-03T19:15:21.000Z" - }, - "events": [ - { - "uuid": "928a5aaf-142e-4af5-babf-b760f337a784", - "start": { - "$date": "2021-01-03T18:25:48.000Z" - }, - "end": { - "$date": "2021-01-03T19:15:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "fda419b3-8f61-4346-9485-b2b7b589dae5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T19:15:31.000Z" - }, - "end": { - "$date": "2021-01-03T19:37:28.000Z" - }, - "events": [ - { - "uuid": "4de51389-c48f-4378-9655-aadafda1bbe2", - "start": { - "$date": "2021-01-03T19:15:31.000Z" - }, - "end": { - "$date": "2021-01-03T19:37:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "e96ee601-6f0a-4a42-87c2-1caf2faf9ca2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T19:26:28.000Z" - }, - "end": { - "$date": "2021-01-03T19:30:23.000Z" - }, - "events": [ - { - "uuid": "5567f0fc-f811-4264-bfb2-798a95e51deb", - "start": { - "$date": "2021-01-03T19:26:28.000Z" - }, - "end": { - "$date": "2021-01-03T19:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "3e8ba610-ebcf-4b50-9735-d8d91d5a77ae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T19:30:34.000Z" - }, - "end": { - "$date": "2021-01-03T20:20:25.000Z" - }, - "events": [ - { - "uuid": "2e59a88b-08a8-4b28-9801-10ae6e48f895", - "start": { - "$date": "2021-01-03T19:30:34.000Z" - }, - "end": { - "$date": "2021-01-03T20:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "4c6ba4e5-6ce2-497e-915a-813521e96fe5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T19:37:37.000Z" - }, - "end": { - "$date": "2021-01-03T20:20:18.000Z" - }, - "events": [ - { - "uuid": "3335c2ab-c28c-456b-979d-e5e03cbb1aa0", - "start": { - "$date": "2021-01-03T19:37:37.000Z" - }, - "end": { - "$date": "2021-01-03T20:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d7c9ba3a-2b73-4cee-aef0-f3ab26d6337e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-03T19:55:56.000Z" - }, - "end": { - "$date": "2021-01-03T23:24:14.000Z" - }, - "events": [ - { - "uuid": "1fefe399-c763-4356-bf8a-cdc71ea2b69a", - "start": { - "$date": "2021-01-03T19:55:56.000Z" - }, - "end": { - "$date": "2021-01-03T23:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3f19a6b7-a160-4044-9297-5651d9cfa2ad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-03T20:07:46.000Z" - }, - "end": { - "$date": "2021-01-03T20:52:26.000Z" - }, - "events": [ - { - "uuid": "258934fb-e518-4de6-a6a3-2af1941cc040", - "start": { - "$date": "2021-01-03T20:07:46.000Z" - }, - "end": { - "$date": "2021-01-03T20:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "10d74102-ee60-4387-9d0d-3f37d6228060", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-03T20:09:32.000Z" - }, - "end": { - "$date": "2021-01-03T23:38:46.000Z" - }, - "events": [ - { - "uuid": "aa61c0ee-83a3-4fe1-bd0f-304714e3e895", - "start": { - "$date": "2021-01-03T20:09:32.000Z" - }, - "end": { - "$date": "2021-01-03T23:38:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "6b7b1b20-ba7e-4358-b2a4-da25a53febf5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-03T20:20:14.000Z" - }, - "end": { - "$date": "2021-01-03T22:11:25.000Z" - }, - "events": [ - { - "uuid": "82333bd2-d360-4daa-903f-c7659409836d", - "start": { - "$date": "2021-01-03T20:20:14.000Z" - }, - "end": { - "$date": "2021-01-03T22:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "1cdbf8d3-b076-4ed4-9a28-d9b9ed3a729f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T20:58:52.000Z" - }, - "end": { - "$date": "2021-01-03T21:06:46.000Z" - }, - "events": [ - { - "uuid": "575e82b7-b482-4fd8-a71e-92d5b228cdeb", - "start": { - "$date": "2021-01-03T20:58:52.000Z" - }, - "end": { - "$date": "2021-01-03T21:06:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0c558a6b-146b-4688-9111-670e3fd446a8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-03T21:06:08.000Z" - }, - "end": { - "$date": "2021-01-03T23:32:34.000Z" - }, - "events": [ - { - "uuid": "d3c320a0-4951-4468-81e2-c8fe8bf339f5", - "start": { - "$date": "2021-01-03T21:06:08.000Z" - }, - "end": { - "$date": "2021-01-03T23:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "84411726-7efe-42d1-816d-bef6d3a2ab4a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T21:07:07.000Z" - }, - "end": { - "$date": "2021-01-03T23:05:34.000Z" - }, - "events": [ - { - "uuid": "0e747de9-ab33-426d-8844-62c758735047", - "start": { - "$date": "2021-01-03T21:07:07.000Z" - }, - "end": { - "$date": "2021-01-03T23:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "56c02edd-f865-4d31-a3fb-d6847ca181e5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T21:33:28.000Z" - }, - "end": { - "$date": "2021-01-03T21:33:39.000Z" - }, - "events": [ - { - "uuid": "676f22e1-bea0-443b-8673-a1561101cf42", - "start": { - "$date": "2021-01-03T21:33:28.000Z" - }, - "end": { - "$date": "2021-01-03T21:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "15f245a9-a499-40c2-8d3d-07024593736a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T21:57:54.000Z" - }, - "end": { - "$date": "2021-01-03T22:25:05.000Z" - }, - "events": [ - { - "uuid": "b45e5b43-8492-4915-8d03-c84eaa252c66", - "start": { - "$date": "2021-01-03T21:57:54.000Z" - }, - "end": { - "$date": "2021-01-03T22:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f6749fd2-bf0c-437f-afa0-644acafad390", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-03T22:07:15.000Z" - }, - "end": { - "$date": "2021-01-03T23:26:15.000Z" - }, - "events": [ - { - "uuid": "7b85b7f1-bfd4-466e-9de1-3f196c5ed799", - "start": { - "$date": "2021-01-03T22:07:15.000Z" - }, - "end": { - "$date": "2021-01-03T23:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "460a22cb-a5a4-405d-a8cb-1d6fd5b09678", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T22:43:41.000Z" - }, - "end": { - "$date": "2021-01-03T23:24:19.000Z" - }, - "events": [ - { - "uuid": "ccec8b2e-c5d8-41b1-b520-661990192f82", - "start": { - "$date": "2021-01-03T22:43:41.000Z" - }, - "end": { - "$date": "2021-01-03T23:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1da5289e-e823-47df-a8b0-8017a5dfc399", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-03T22:59:07.000Z" - }, - "end": { - "$date": "2021-01-03T23:51:54.000Z" - }, - "events": [ - { - "uuid": "6b45333b-fccd-4f74-b678-27c612efdc9f", - "start": { - "$date": "2021-01-03T22:59:07.000Z" - }, - "end": { - "$date": "2021-01-03T23:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "8207d545-b97e-4957-87b4-725812d00183", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T23:11:26.000Z" - }, - "end": { - "$date": "2021-01-03T23:36:58.000Z" - }, - "events": [ - { - "uuid": "1a283ef2-1414-4aba-9729-f0334fa8b7d4", - "start": { - "$date": "2021-01-03T23:11:26.000Z" - }, - "end": { - "$date": "2021-01-03T23:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "05c55f6c-df27-4d3b-8690-0e92aaf38d6b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-03T23:32:23.000Z" - }, - "end": { - "$date": "2021-01-04T00:47:30.000Z" - }, - "events": [ - { - "uuid": "d38c527b-9348-411d-90a0-84a62de11580", - "start": { - "$date": "2021-01-03T23:32:23.000Z" - }, - "end": { - "$date": "2021-01-04T00:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "f74cdac7-850e-433e-bdf7-bcff2cbeead3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-03T23:46:40.000Z" - }, - "end": { - "$date": "2021-01-04T02:01:40.000Z" - }, - "events": [ - { - "uuid": "a9afb0f8-253a-4fbb-b0ac-c35a4832cc44", - "start": { - "$date": "2021-01-03T23:46:40.000Z" - }, - "end": { - "$date": "2021-01-04T02:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "41a408c7-566f-4a9e-8dfa-7cc08c64019b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-03T23:57:42.000Z" - }, - "end": { - "$date": "2021-01-04T00:00:46.000Z" - }, - "events": [ - { - "uuid": "84c224ad-f105-4ec8-8e72-5016f64cbf50", - "start": { - "$date": "2021-01-03T23:57:42.000Z" - }, - "end": { - "$date": "2021-01-04T00:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "417ba7bf-9373-4074-a402-cc194b222dc2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T00:08:10.000Z" - }, - "end": { - "$date": "2021-01-04T01:53:36.000Z" - }, - "events": [ - { - "uuid": "3b50e38d-acb1-4a6b-97f9-59268c611a01", - "start": { - "$date": "2021-01-04T00:08:10.000Z" - }, - "end": { - "$date": "2021-01-04T01:53:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "e36af644-928b-4a35-8b05-43520523e608", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-04T01:03:46.000Z" - }, - "end": { - "$date": "2021-01-04T01:12:37.000Z" - }, - "events": [ - { - "uuid": "792728be-90d3-40f2-be70-b0b3d1d55b96", - "start": { - "$date": "2021-01-04T01:03:46.000Z" - }, - "end": { - "$date": "2021-01-04T01:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "597a093f-345a-49fe-a03d-bb79d949f2f2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-04T01:15:39.000Z" - }, - "end": { - "$date": "2021-01-04T01:23:41.000Z" - }, - "events": [ - { - "uuid": "d4fc9bb2-3bc9-4e20-be81-970a0a61860b", - "start": { - "$date": "2021-01-04T01:15:39.000Z" - }, - "end": { - "$date": "2021-01-04T01:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "932dba59-e4db-4c01-aed1-67fd85443a22", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-04T01:26:02.000Z" - }, - "end": { - "$date": "2021-01-04T01:44:21.000Z" - }, - "events": [ - { - "uuid": "80794968-b138-47b9-874b-a2e13a6314e2", - "start": { - "$date": "2021-01-04T01:26:02.000Z" - }, - "end": { - "$date": "2021-01-04T01:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "232b2843-cf54-4987-997b-a6ed3dcd2b95", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-04T01:48:27.000Z" - }, - "end": { - "$date": "2021-01-04T02:00:34.000Z" - }, - "events": [ - { - "uuid": "cf3f871e-1b37-4974-aa5b-a1acf5a6689e", - "start": { - "$date": "2021-01-04T01:48:27.000Z" - }, - "end": { - "$date": "2021-01-04T02:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc0c5ca3-e348-40f1-acbb-c0abdb42a1e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T01:55:45.000Z" - }, - "end": { - "$date": "2021-01-04T01:58:07.000Z" - }, - "events": [ - { - "uuid": "e5967539-df07-418b-a1aa-732d52c57dde", - "start": { - "$date": "2021-01-04T01:55:45.000Z" - }, - "end": { - "$date": "2021-01-04T01:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "5a53001c-3984-48b8-94ef-14f0d4cb9783", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T01:58:41.000Z" - }, - "end": { - "$date": "2021-01-04T02:30:12.000Z" - }, - "events": [ - { - "uuid": "97d3c0ce-8a39-4b02-bfea-0f7c9ccced2d", - "start": { - "$date": "2021-01-04T01:58:41.000Z" - }, - "end": { - "$date": "2021-01-04T02:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9471226d-7680-42cf-9df0-947c10bfaeab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-04T02:17:12.000Z" - }, - "end": { - "$date": "2021-01-04T03:40:20.000Z" - }, - "events": [ - { - "uuid": "fa3625fd-061d-469c-a0da-c23e8a1b988b", - "start": { - "$date": "2021-01-04T02:17:12.000Z" - }, - "end": { - "$date": "2021-01-04T03:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b24fd222-b7bd-4744-9161-fb6e512b71a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T02:17:51.000Z" - }, - "end": { - "$date": "2021-01-04T03:05:53.000Z" - }, - "events": [ - { - "uuid": "082ce5e0-629e-4687-889a-69e8b85edc09", - "start": { - "$date": "2021-01-04T02:17:51.000Z" - }, - "end": { - "$date": "2021-01-04T03:05:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0c6678fa-3858-43cf-a2f9-9f569ffe460d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-04T02:26:41.000Z" - }, - "end": { - "$date": "2021-01-04T05:05:43.000Z" - }, - "events": [ - { - "uuid": "481c3c68-027a-4ecf-b1fb-83014bec7fa2", - "start": { - "$date": "2021-01-04T02:26:41.000Z" - }, - "end": { - "$date": "2021-01-04T05:05:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c2a435e2-6e98-4a9d-9152-048822c26b55", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-04T02:29:46.000Z" - }, - "end": { - "$date": "2021-01-04T05:01:30.000Z" - }, - "events": [ - { - "uuid": "bcfb6f08-b19d-41b8-ac03-05dbd420fcbe", - "start": { - "$date": "2021-01-04T02:29:46.000Z" - }, - "end": { - "$date": "2021-01-04T05:01:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "030ad44b-cb72-497b-b736-283c7614fc3a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T04:50:55.000Z" - }, - "end": { - "$date": "2021-01-04T04:51:00.000Z" - }, - "events": [ - { - "uuid": "f409786d-c0d3-4ee0-a7d1-a4b5b0f4b705", - "start": { - "$date": "2021-01-04T04:50:55.000Z" - }, - "end": { - "$date": "2021-01-04T04:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a58a4ff2-a73b-4b03-8489-b1fc5226f3df", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T03:06:13.000Z" - }, - "end": { - "$date": "2021-01-04T03:30:09.000Z" - }, - "events": [ - { - "uuid": "a76006df-db2f-458d-93bd-26f4753b4d86", - "start": { - "$date": "2021-01-04T03:06:13.000Z" - }, - "end": { - "$date": "2021-01-04T03:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "4ab79111-d47f-4f6c-b471-b33b42a5bcaf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-04T03:24:39.000Z" - }, - "end": { - "$date": "2021-01-04T05:01:49.000Z" - }, - "events": [ - { - "uuid": "dd996d48-89f4-45ef-baf0-c6e209c2fbb6", - "start": { - "$date": "2021-01-04T03:24:39.000Z" - }, - "end": { - "$date": "2021-01-04T05:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2a94fc67-bf4f-4834-931a-ae1e5849b94a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T03:30:19.000Z" - }, - "end": { - "$date": "2021-01-04T03:40:15.000Z" - }, - "events": [ - { - "uuid": "b79563cb-5f52-40e6-a133-5d0ac15a598a", - "start": { - "$date": "2021-01-04T03:30:19.000Z" - }, - "end": { - "$date": "2021-01-04T03:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "3020e065-1d09-4e36-81a2-02500c03b8fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T03:40:59.000Z" - }, - "end": { - "$date": "2021-01-04T03:42:45.000Z" - }, - "events": [ - { - "uuid": "c07bcdba-2775-4c92-9f41-1a01a41f771f", - "start": { - "$date": "2021-01-04T03:40:59.000Z" - }, - "end": { - "$date": "2021-01-04T03:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "5af989e5-0242-4c07-adf4-1942eedb22e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T03:44:09.000Z" - }, - "end": { - "$date": "2021-01-04T04:39:58.000Z" - }, - "events": [ - { - "uuid": "43b4680e-03e7-4c7b-b6f5-17aea86f1fa8", - "start": { - "$date": "2021-01-04T03:44:09.000Z" - }, - "end": { - "$date": "2021-01-04T04:27:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6308c68d-a7b4-4427-ad93-fda61843d838", - "start": { - "$date": "2021-01-04T04:27:09.000Z" - }, - "end": { - "$date": "2021-01-04T04:39:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "6f0b9b29-37d3-4e16-bd70-f6697b38d850", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-04T04:13:44.000Z" - }, - "end": { - "$date": "2021-01-04T04:58:46.000Z" - }, - "events": [ - { - "uuid": "1074d8b3-be99-48ed-a92d-06c0b72bd401", - "start": { - "$date": "2021-01-04T04:13:44.000Z" - }, - "end": { - "$date": "2021-01-04T04:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e2221d62-d640-4780-80a5-12b01a2bc4d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-04T04:15:10.000Z" - }, - "end": { - "$date": "2021-01-04T07:37:04.000Z" - }, - "events": [ - { - "uuid": "7281c23d-f831-441b-95ba-b44291c8b128", - "start": { - "$date": "2021-01-04T04:15:10.000Z" - }, - "end": { - "$date": "2021-01-04T07:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "24d6a991-5ef7-4015-b659-2258b772b2bd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T04:40:42.000Z" - }, - "end": { - "$date": "2021-01-04T05:47:24.000Z" - }, - "events": [ - { - "uuid": "9c233bf6-0158-4962-9cf1-0d43c6a0993a", - "start": { - "$date": "2021-01-04T04:40:42.000Z" - }, - "end": { - "$date": "2021-01-04T05:47:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "1d4a0d87-4e73-44bc-93cf-18a246265acc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-04T04:41:04.000Z" - }, - "end": { - "$date": "2021-01-04T05:47:30.000Z" - }, - "events": [ - { - "uuid": "fdcc09e0-7d8d-41b5-966c-e7797067bb94", - "start": { - "$date": "2021-01-04T04:41:04.000Z" - }, - "end": { - "$date": "2021-01-04T05:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "9c461ae0-5669-4658-a9ca-8b0ddd7edbe1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T04:51:15.000Z" - }, - "end": { - "$date": "2021-01-04T05:38:13.000Z" - }, - "events": [ - { - "uuid": "b5c5e2cc-e269-4c51-8fd5-76fcaedc699f", - "start": { - "$date": "2021-01-04T04:51:15.000Z" - }, - "end": { - "$date": "2021-01-04T05:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "7b125d08-c96f-47aa-85e2-b7d002161c49", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-04T05:03:19.000Z" - }, - "end": { - "$date": "2021-01-04T10:28:12.000Z" - }, - "events": [ - { - "uuid": "6607372d-3f20-4aec-ae13-380bad745144", - "start": { - "$date": "2021-01-04T05:03:19.000Z" - }, - "end": { - "$date": "2021-01-04T10:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "84ad6562-0905-48c8-aae6-7de47b126d40", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-04T05:27:41.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:19.000Z" - }, - "events": [ - { - "uuid": "beb06caf-a77b-4dc7-b944-4a9a851f01df", - "start": { - "$date": "2021-01-04T05:27:41.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f9a76962-e385-40e2-8885-0835cecbe628", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-04T05:28:29.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:13.000Z" - }, - "events": [ - { - "uuid": "a0ea66b4-79c5-4cb0-9439-d5552c67b6f5", - "start": { - "$date": "2021-01-04T05:28:29.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b67d6f2c-686c-4873-9c0a-86792f8b616b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-04T05:31:46.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:13.000Z" - }, - "events": [ - { - "uuid": "f85f2c22-9e8e-4259-8195-8ed84bb30a12", - "start": { - "$date": "2021-01-04T05:31:46.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08414f17-0766-4507-b379-34b770422a85", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-04T06:06:54.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:20.000Z" - }, - "events": [ - { - "uuid": "cca55e79-1342-4387-90a9-d90991d471a5", - "start": { - "$date": "2021-01-04T06:06:54.000Z" - }, - "end": { - "$date": "2021-01-04T07:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "77e6a8dd-fcaa-4e7c-9a8a-fd1146ad8970", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-04T11:51:44.000Z" - }, - "end": { - "$date": "2021-01-04T17:09:33.000Z" - }, - "events": [ - { - "uuid": "aff1a859-6659-4456-92d6-976758e85648", - "start": { - "$date": "2021-01-04T11:51:44.000Z" - }, - "end": { - "$date": "2021-01-04T17:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1fada2d1-214f-4876-9aa1-fc1407455a57", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T16:59:49.000Z" - }, - "end": { - "$date": "2021-01-04T17:33:34.000Z" - }, - "events": [ - { - "uuid": "789541e7-3975-4e04-b4c0-81a3d9c83b63", - "start": { - "$date": "2021-01-04T16:59:49.000Z" - }, - "end": { - "$date": "2021-01-04T17:33:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "85e42791-72e5-48be-85b3-03715cc6c7fb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T17:20:47.000Z" - }, - "end": { - "$date": "2021-01-04T18:30:44.000Z" - }, - "events": [ - { - "uuid": "e98a3816-3537-4be8-9bc8-ce8dcac6c172", - "start": { - "$date": "2021-01-04T17:20:47.000Z" - }, - "end": { - "$date": "2021-01-04T18:30:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7e9e394a-63ad-4881-9084-7cc94458921e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T17:33:55.000Z" - }, - "end": { - "$date": "2021-01-04T17:57:10.000Z" - }, - "events": [ - { - "uuid": "0fd3340e-3b8c-45f3-b504-07e2fabe0a8f", - "start": { - "$date": "2021-01-04T17:33:55.000Z" - }, - "end": { - "$date": "2021-01-04T17:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4f7f288d-1312-4edb-92aa-9d20d4402da8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-04T19:20:07.000Z" - }, - "end": { - "$date": "2021-01-04T21:01:14.000Z" - }, - "events": [ - { - "uuid": "06c06a6d-96a6-4494-a299-8f84d8ee1227", - "start": { - "$date": "2021-01-04T19:20:07.000Z" - }, - "end": { - "$date": "2021-01-04T21:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "5fa3a788-009f-446d-9209-5e572b080425", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-04T19:24:41.000Z" - }, - "end": { - "$date": "2021-01-05T00:42:51.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-04T19:24:41.000Z" - }, - "end": { - "$date": "2021-01-05T00:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3b10ca72-aba2-470b-9403-b9ec59162e66", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-04T19:34:14.000Z" - }, - "end": { - "$date": "2021-01-04T20:01:52.000Z" - }, - "events": [ - { - "uuid": "a8d2c05b-c1b4-46ca-b889-cfdbafc89ca9", - "start": { - "$date": "2021-01-04T19:34:14.000Z" - }, - "end": { - "$date": "2021-01-04T20:01:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c04a0318-0a4a-4179-8e51-8e8f40cba9a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T20:21:17.000Z" - }, - "end": { - "$date": "2021-01-04T21:42:51.000Z" - }, - "events": [ - { - "uuid": "a786eb93-ad15-454a-aa80-b8242051ec61", - "start": { - "$date": "2021-01-04T20:21:17.000Z" - }, - "end": { - "$date": "2021-01-04T21:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3bdc15c9-c1bf-4611-b2fc-219b5f87b887", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-04T20:22:48.000Z" - }, - "end": { - "$date": "2021-01-04T20:43:23.000Z" - }, - "events": [ - { - "uuid": "eca045b4-082c-4fa2-b6d5-8aefab9758d5", - "start": { - "$date": "2021-01-04T20:22:48.000Z" - }, - "end": { - "$date": "2021-01-04T20:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2ebbd35a-d3e3-45c9-afe1-287e9674c481", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-04T21:14:28.000Z" - }, - "end": { - "$date": "2021-01-04T22:16:48.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-04T21:14:28.000Z" - }, - "end": { - "$date": "2021-01-04T22:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0bd5f014-df60-4c84-9f4b-9628d85fa6ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-04T21:48:32.000Z" - }, - "end": { - "$date": "2021-01-04T22:12:41.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-04T21:48:32.000Z" - }, - "end": { - "$date": "2021-01-04T22:12:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "01e7ea93-8063-4cd6-be02-f2f643243884", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-04T21:57:58.000Z" - }, - "end": { - "$date": "2021-01-04T22:54:05.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-04T21:57:58.000Z" - }, - "end": { - "$date": "2021-01-04T22:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "bb1b4e43-a26b-4531-a628-4a5adffc00ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-04T22:07:52.000Z" - }, - "end": { - "$date": "2021-01-05T00:19:37.000Z" - }, - "events": [ - { - "uuid": "960023a2-89eb-4991-b997-d0164b469f36", - "start": { - "$date": "2021-01-04T22:07:52.000Z" - }, - "end": { - "$date": "2021-01-05T00:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "55ae1fef-8a18-4d74-bc78-7b709a2fecea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-04T23:27:13.000Z" - }, - "end": { - "$date": "2021-01-05T01:22:52.000Z" - }, - "events": [ - { - "uuid": "bfca2221-255f-49db-8900-59b46de8839d", - "start": { - "$date": "2021-01-04T23:27:13.000Z" - }, - "end": { - "$date": "2021-01-05T01:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "d64037fe-41fd-4003-854b-eeb87e218135", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-04T23:37:49.000Z" - }, - "end": { - "$date": "2021-01-05T00:26:17.000Z" - }, - "events": [ - { - "uuid": "ea14b2b6-fd2f-4e68-9b0c-dec2b168885c", - "start": { - "$date": "2021-01-04T23:37:49.000Z" - }, - "end": { - "$date": "2021-01-05T00:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7a9a829-0dbe-48ab-a1cd-7b19fc4c7069", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T00:00:15.000Z" - }, - "end": { - "$date": "2021-01-05T00:17:19.000Z" - }, - "events": [ - { - "uuid": "3ca93c8b-4b9e-4f1f-a7b3-185295f7c731", - "start": { - "$date": "2021-01-05T00:00:15.000Z" - }, - "end": { - "$date": "2021-01-05T00:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", - "uuid": "369c01f3-d883-4d71-a1a3-f69c6269e4de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T00:21:01.000Z" - }, - "end": { - "$date": "2021-01-05T00:56:38.000Z" - }, - "events": [ - { - "uuid": "f6fa5548-ed17-4720-88f7-af0986733955", - "start": { - "$date": "2021-01-05T00:21:01.000Z" - }, - "end": { - "$date": "2021-01-05T00:56:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "fbe95ae8-c3d5-4678-99c8-cfc2358ec241", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T01:03:58.000Z" - }, - "end": { - "$date": "2021-01-05T01:11:34.000Z" - }, - "events": [ - { - "uuid": "affd7ab8-9ce2-4319-9059-eeb728ed2ffd", - "start": { - "$date": "2021-01-05T01:03:58.000Z" - }, - "end": { - "$date": "2021-01-05T01:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3531d9bd-e0d3-4f17-8dea-a91be76c1360", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T01:16:34.000Z" - }, - "end": { - "$date": "2021-01-05T02:08:23.000Z" - }, - "events": [ - { - "uuid": "8c6d8085-ce7f-4340-8fb2-50cddbb72854", - "start": { - "$date": "2021-01-05T01:16:34.000Z" - }, - "end": { - "$date": "2021-01-05T02:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c634a6c5-2bcc-458b-bcde-e2a60641a536", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T01:20:04.000Z" - }, - "end": { - "$date": "2021-01-05T01:27:45.000Z" - }, - "events": [ - { - "uuid": "c3d65230-8e4f-49d4-afe8-bffd8be197db", - "start": { - "$date": "2021-01-05T01:20:04.000Z" - }, - "end": { - "$date": "2021-01-05T01:27:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "0f582bf6-e1b7-4113-9200-1367e982cad6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T01:28:19.000Z" - }, - "end": { - "$date": "2021-01-05T02:15:10.000Z" - }, - "events": [ - { - "uuid": "d40db458-a60a-4e43-b24e-a7771eff7c65", - "start": { - "$date": "2021-01-05T01:28:19.000Z" - }, - "end": { - "$date": "2021-01-05T02:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2a958d80-7f9e-4654-bc6d-25bf44421f3a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-05T01:34:27.000Z" - }, - "end": { - "$date": "2021-01-05T01:57:28.000Z" - }, - "events": [ - { - "uuid": "e7999c8b-0454-426a-af0a-2d85de1b9fb5", - "start": { - "$date": "2021-01-05T01:34:27.000Z" - }, - "end": { - "$date": "2021-01-05T01:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d570ad50-3b13-4999-a8cf-c5215a9ee12f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-05T02:14:49.000Z" - }, - "end": { - "$date": "2021-01-05T02:15:54.000Z" - }, - "events": [ - { - "uuid": "03e8e647-9b86-4c81-9ad6-9595b3ec304d", - "start": { - "$date": "2021-01-05T02:14:49.000Z" - }, - "end": { - "$date": "2021-01-05T02:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "67da355e-cac7-4eaf-b537-d62c0f23e456", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T02:15:15.000Z" - }, - "end": { - "$date": "2021-01-05T02:38:36.000Z" - }, - "events": [ - { - "uuid": "fd7d7662-7947-4f82-87c6-3328f05200ae", - "start": { - "$date": "2021-01-05T02:15:15.000Z" - }, - "end": { - "$date": "2021-01-05T02:38:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f60116a9-41b7-4779-a1e7-6f81190baece", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-05T02:52:16.000Z" - }, - "end": { - "$date": "2021-01-05T03:14:49.000Z" - }, - "events": [ - { - "uuid": "e2dbbbf6-41e4-4b17-9089-eddda931c646", - "start": { - "$date": "2021-01-05T02:52:16.000Z" - }, - "end": { - "$date": "2021-01-05T03:14:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "455a91dc-fbea-4d88-b51e-62a1e72c4be7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-05T03:01:15.000Z" - }, - "end": { - "$date": "2021-01-05T03:34:15.000Z" - }, - "events": [ - { - "uuid": "e4a78878-97e4-47f6-9625-a630d8bd23fd", - "start": { - "$date": "2021-01-05T03:01:15.000Z" - }, - "end": { - "$date": "2021-01-05T03:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "61822caf-5a80-48b1-a581-fd14b06e8b2f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-05T03:13:25.000Z" - }, - "end": { - "$date": "2021-01-05T04:38:08.000Z" - }, - "events": [ - { - "uuid": "7d1d7804-5509-4318-af4d-572ec77638e4", - "start": { - "$date": "2021-01-05T03:13:25.000Z" - }, - "end": { - "$date": "2021-01-05T04:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b7f60b3a-ad0b-40f5-93ab-0a3382d9b561", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-05T03:36:49.000Z" - }, - "end": { - "$date": "2021-01-05T04:46:43.000Z" - }, - "events": [ - { - "uuid": "d186f57e-f03a-46bc-bbbd-784a6ff25ad5", - "start": { - "$date": "2021-01-05T03:36:49.000Z" - }, - "end": { - "$date": "2021-01-05T04:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "54c8691f-1d54-4291-bfa2-b468d4acaf71", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-05T04:07:56.000Z" - }, - "end": { - "$date": "2021-01-05T05:29:03.000Z" - }, - "events": [ - { - "uuid": "1d873af1-33f8-4d54-97ac-d773ca07406a", - "start": { - "$date": "2021-01-05T04:07:56.000Z" - }, - "end": { - "$date": "2021-01-05T05:29:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "03d1c475-adc0-4b49-8f3d-ee4184c22c12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-05T04:09:55.000Z" - }, - "end": { - "$date": "2021-01-05T04:53:42.000Z" - }, - "events": [ - { - "uuid": "ea1d4f1b-f428-46fd-bfee-3a4747441e8a", - "start": { - "$date": "2021-01-05T04:09:55.000Z" - }, - "end": { - "$date": "2021-01-05T04:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e16a86a1-d8d5-44e1-b82d-423b49b89ea0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T04:17:59.000Z" - }, - "end": { - "$date": "2021-01-05T04:51:03.000Z" - }, - "events": [ - { - "uuid": "d60007e2-2180-4452-8148-48d5abe0f96b", - "start": { - "$date": "2021-01-05T04:17:59.000Z" - }, - "end": { - "$date": "2021-01-05T04:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a76c14e-9a6c-4312-8b07-5d4c56902f2b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-05T04:18:05.000Z" - }, - "end": { - "$date": "2021-01-05T04:50:57.000Z" - }, - "events": [ - { - "uuid": "bd6f3355-139d-4e70-8613-6a5a244d99e7", - "start": { - "$date": "2021-01-05T04:18:05.000Z" - }, - "end": { - "$date": "2021-01-05T04:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "8c6d158e-08e6-4638-ba19-a2881d9cecc1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T04:21:07.000Z" - }, - "end": { - "$date": "2021-01-05T04:56:32.000Z" - }, - "events": [ - { - "uuid": "8ac1013f-1973-4fb3-977e-d63b1d4a3da6", - "start": { - "$date": "2021-01-05T04:21:07.000Z" - }, - "end": { - "$date": "2021-01-05T04:56:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "e4a1e889-a5bb-40fb-98a9-99b3fae6bda3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T04:34:12.000Z" - }, - "end": { - "$date": "2021-01-05T05:37:20.000Z" - }, - "events": [ - { - "uuid": "19fed5eb-4094-438a-b40c-f515a6ad1bb4", - "start": { - "$date": "2021-01-05T04:34:12.000Z" - }, - "end": { - "$date": "2021-01-05T05:37:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "b32b1853-69ac-4263-8319-b26fd8e1fbbc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-05T04:40:14.000Z" - }, - "end": { - "$date": "2021-01-05T05:37:53.000Z" - }, - "events": [ - { - "uuid": "a192ff83-1809-4624-b809-24951d013698", - "start": { - "$date": "2021-01-05T04:40:14.000Z" - }, - "end": { - "$date": "2021-01-05T05:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "ab2363fe-a4da-4325-98b1-d31a8f911d64", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-05T04:47:58.000Z" - }, - "end": { - "$date": "2021-01-05T05:39:34.000Z" - }, - "events": [ - { - "uuid": "ba30618a-8f19-4bea-a7f8-9206692e804f", - "start": { - "$date": "2021-01-05T04:47:58.000Z" - }, - "end": { - "$date": "2021-01-05T05:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6256904b-ab79-4fd2-88ff-b169829146b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T05:04:33.000Z" - }, - "end": { - "$date": "2021-01-05T05:30:09.000Z" - }, - "events": [ - { - "uuid": "b4a90fea-3327-4daf-b8a7-968f8edf6c26", - "start": { - "$date": "2021-01-05T05:04:33.000Z" - }, - "end": { - "$date": "2021-01-05T05:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e56f38ec-a789-4477-bc72-a2d40abf8255", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-05T04:52:51.000Z" - }, - "end": { - "$date": "2021-01-05T04:54:59.000Z" - }, - "events": [ - { - "uuid": "db89361c-7a09-45c2-aeeb-6718a17a227a", - "start": { - "$date": "2021-01-05T04:52:51.000Z" - }, - "end": { - "$date": "2021-01-05T04:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfef15f3-a853-4113-ba46-e0282aa53957", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-05T05:04:28.000Z" - }, - "end": { - "$date": "2021-01-05T05:30:02.000Z" - }, - "events": [ - { - "uuid": "cf2342f2-7fb9-47c1-8b4d-e0091dc64c26", - "start": { - "$date": "2021-01-05T05:04:28.000Z" - }, - "end": { - "$date": "2021-01-05T05:30:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f816bf6b-f2be-465f-9150-b17e9442f256", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-05T05:05:08.000Z" - }, - "end": { - "$date": "2021-01-05T05:30:03.000Z" - }, - "events": [ - { - "uuid": "015e7410-0fa1-4fef-b343-25d7146fb8f8", - "start": { - "$date": "2021-01-05T05:05:08.000Z" - }, - "end": { - "$date": "2021-01-05T05:30:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7335439-6f42-4135-b2c6-5c1e87b35873", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T05:04:39.000Z" - }, - "end": { - "$date": "2021-01-05T05:29:58.000Z" - }, - "events": [ - { - "uuid": "bf85dc06-3381-44b8-a3cf-d272b95d39db", - "start": { - "$date": "2021-01-05T05:04:39.000Z" - }, - "end": { - "$date": "2021-01-05T05:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f338c34-755b-4b6c-beac-8b6b62e5e521", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T05:33:44.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:53.000Z" - }, - "events": [ - { - "uuid": "d6631ceb-d645-4553-beb4-5194c84ff53b", - "start": { - "$date": "2021-01-05T05:33:44.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "717280c1-144e-479f-97fe-d4cc6ca7d943", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-05T05:33:38.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:44.000Z" - }, - "events": [ - { - "uuid": "efc6b1de-30f2-477d-acb4-d39e61574bc0", - "start": { - "$date": "2021-01-05T05:33:38.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9df89353-673a-4b9b-a62d-71f9bf7c99a2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T05:35:30.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:43.000Z" - }, - "events": [ - { - "uuid": "95d8d547-d2bf-45e3-b03b-8d927f7999f8", - "start": { - "$date": "2021-01-05T05:35:30.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de9734c3-48a4-4216-9518-8478a4c87094", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-05T05:33:43.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:45.000Z" - }, - "events": [ - { - "uuid": "33d76545-86d4-423e-93ea-fc5e8ce3a9b8", - "start": { - "$date": "2021-01-05T05:33:43.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0451eb09-c3b8-4a12-ba10-b6301b34737c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-05T05:33:40.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:53.000Z" - }, - "events": [ - { - "uuid": "d42f9059-8171-4487-ae8f-14c11f4d137d", - "start": { - "$date": "2021-01-05T05:33:40.000Z" - }, - "end": { - "$date": "2021-01-05T06:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "40becf44-dd75-4404-b01b-144b51030e6a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-05T06:18:19.000Z" - }, - "end": { - "$date": "2021-01-05T07:12:25.000Z" - }, - "events": [ - { - "uuid": "89d9618f-d63d-4855-bd7b-573d17c7170a", - "start": { - "$date": "2021-01-05T06:18:19.000Z" - }, - "end": { - "$date": "2021-01-05T07:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6000d3d1-f736-48db-9bdb-18766c045d03", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-05T06:00:32.000Z" - }, - "end": { - "$date": "2021-01-05T07:12:26.000Z" - }, - "events": [ - { - "uuid": "a13c3c5f-b048-493a-bf9d-8ebd8f615ea6", - "start": { - "$date": "2021-01-05T06:00:32.000Z" - }, - "end": { - "$date": "2021-01-05T07:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e60e9219-2468-4d04-8cc5-df54395e422a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T06:11:00.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:26.000Z" - }, - "events": [ - { - "uuid": "e0afd5aa-7098-4b7f-b894-a669f2007f38", - "start": { - "$date": "2021-01-05T06:11:00.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3db0be65-3f32-40fe-b5f5-1c68c42aa525", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T06:11:50.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:23.000Z" - }, - "events": [ - { - "uuid": "ea280025-445d-473f-9d29-e0e6595bb368", - "start": { - "$date": "2021-01-05T06:11:50.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96cc62ee-e3b3-488a-bc57-781f1b17a21e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-05T06:11:00.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:31.000Z" - }, - "events": [ - { - "uuid": "9758d4a6-f636-41ba-a99e-2f4a674bafcf", - "start": { - "$date": "2021-01-05T06:11:00.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d87ee99-b3d0-4b2f-9c66-0b690e1fa38d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-05T06:10:55.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:24.000Z" - }, - "events": [ - { - "uuid": "6506e460-c3e0-4710-9998-58d298a3d795", - "start": { - "$date": "2021-01-05T06:10:55.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e24ddd47-7d27-4438-9a75-c67151851596", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-05T06:10:52.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:27.000Z" - }, - "events": [ - { - "uuid": "444ef65d-341d-4891-a5fc-7ec253b8cd3b", - "start": { - "$date": "2021-01-05T06:10:52.000Z" - }, - "end": { - "$date": "2021-01-05T06:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "ee354fb6-6787-4035-93f4-d669eef4082c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T07:11:59.000Z" - }, - "end": { - "$date": "2021-01-05T07:15:10.000Z" - }, - "events": [ - { - "uuid": "21415d13-71e4-4efb-ab3a-219b268bd8d9", - "start": { - "$date": "2021-01-05T07:11:59.000Z" - }, - "end": { - "$date": "2021-01-05T07:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "ba20abad-7859-4c72-9f57-e6e5f9f146f8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T07:15:20.000Z" - }, - "end": { - "$date": "2021-01-05T08:19:19.000Z" - }, - "events": [ - { - "uuid": "c192f889-81a1-4b71-8ad5-f6b7cb3332b3", - "start": { - "$date": "2021-01-05T07:15:20.000Z" - }, - "end": { - "$date": "2021-01-05T08:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "037ce789-edb3-492e-9958-fd411a08f583", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-05T08:40:15.000Z" - }, - "end": { - "$date": "2021-01-05T09:45:17.000Z" - }, - "events": [ - { - "uuid": "77eddd35-3916-46e6-be35-d138f10c1892", - "start": { - "$date": "2021-01-05T08:40:15.000Z" - }, - "end": { - "$date": "2021-01-05T09:45:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2e0823a2-5a6f-4afa-9f11-ef220d1afa27", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-05T15:45:23.000Z" - }, - "end": { - "$date": "2021-01-05T17:41:45.000Z" - }, - "events": [ - { - "uuid": "7e6d3993-e4c3-4960-94be-0c176132f537", - "start": { - "$date": "2021-01-05T15:45:23.000Z" - }, - "end": { - "$date": "2021-01-05T17:40:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "481b83d9-b87d-4c48-be1a-04f3e3ae132c", - "start": { - "$date": "2021-01-05T17:40:23.000Z" - }, - "end": { - "$date": "2021-01-05T17:41:45.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c0acb0e-6d9e-41eb-a31b-7a079afe2957", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-05T16:45:41.000Z" - }, - "end": { - "$date": "2021-01-05T18:31:54.000Z" - }, - "events": [ - { - "uuid": "b583dba5-58ab-470f-a212-e259673b44ba", - "start": { - "$date": "2021-01-05T16:45:41.000Z" - }, - "end": { - "$date": "2021-01-05T18:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0883df51-a18d-48b4-b471-09dac938bf24", - "uuid": "c80d430c-a59e-442b-87de-9af6d65f44b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T17:07:18.000Z" - }, - "end": { - "$date": "2021-01-05T17:21:53.000Z" - }, - "events": [ - { - "uuid": "33d2492b-8350-4634-9ba9-b6c64c459b72", - "start": { - "$date": "2021-01-05T17:07:18.000Z" - }, - "end": { - "$date": "2021-01-05T17:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b85cf19c-f221-4d26-b11d-1766a2cefd46", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T17:22:44.000Z" - }, - "end": { - "$date": "2021-01-05T18:07:39.000Z" - }, - "events": [ - { - "uuid": "642f4f55-cd70-4655-a6e1-07798179722e", - "start": { - "$date": "2021-01-05T17:22:44.000Z" - }, - "end": { - "$date": "2021-01-05T18:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f4e814d6-c5d8-454a-b914-946d02a68c22", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-05T17:38:50.000Z" - }, - "end": { - "$date": "2021-01-05T17:43:21.000Z" - }, - "events": [ - { - "uuid": "9234a7dd-2d6d-4d3f-8e7c-ad58cc642e07", - "start": { - "$date": "2021-01-05T17:38:50.000Z" - }, - "end": { - "$date": "2021-01-05T17:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2ddf7fcc-0167-4a2e-ac07-5f477a07a4bd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-05T17:48:00.000Z" - }, - "end": { - "$date": "2021-01-05T18:14:01.000Z" - }, - "events": [ - { - "uuid": "edf4ac50-9c70-4238-b220-7d3890d55cf1", - "start": { - "$date": "2021-01-05T17:48:00.000Z" - }, - "end": { - "$date": "2021-01-05T18:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "469168ca-9266-4d5c-a159-6ea905184c42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T18:08:35.000Z" - }, - "end": { - "$date": "2021-01-05T19:10:15.000Z" - }, - "events": [ - { - "uuid": "7881af8f-4573-4618-803f-e16222c144f3", - "start": { - "$date": "2021-01-05T18:08:35.000Z" - }, - "end": { - "$date": "2021-01-05T19:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "3c654a8b-b5f7-431e-83e3-f1d52ddad60e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T20:21:10.000Z" - }, - "end": { - "$date": "2021-01-05T20:21:14.000Z" - }, - "events": [ - { - "uuid": "45f24a7f-ba35-4e6e-a391-3d4ee37f70d9", - "start": { - "$date": "2021-01-05T20:21:10.000Z" - }, - "end": { - "$date": "2021-01-05T20:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fa8b1db-094e-4291-8984-0ee1b6025587", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T20:30:09.000Z" - }, - "end": { - "$date": "2021-01-05T21:05:44.000Z" - }, - "events": [ - { - "uuid": "ed35f677-37ed-4700-b436-769e39de698f", - "start": { - "$date": "2021-01-05T20:30:09.000Z" - }, - "end": { - "$date": "2021-01-05T21:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10a9864b-5574-47b4-b32e-1355f3fdfbb1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T20:29:25.000Z" - }, - "end": { - "$date": "2021-01-05T21:05:52.000Z" - }, - "events": [ - { - "uuid": "a80adb7b-d856-4ae4-8cc1-bd76b548b940", - "start": { - "$date": "2021-01-05T20:29:25.000Z" - }, - "end": { - "$date": "2021-01-05T21:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9b6a6a42-07b6-4319-a2e0-a7856202d4b4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-05T22:09:07.000Z" - }, - "end": { - "$date": "2021-01-05T23:44:01.000Z" - }, - "events": [ - { - "uuid": "07872b23-a8c2-4a94-b45a-1b79ff09f0ff", - "start": { - "$date": "2021-01-05T22:09:07.000Z" - }, - "end": { - "$date": "2021-01-05T23:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "484b8e6d-7c1a-4c3a-bce3-2acc9133985c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-05T22:34:15.000Z" - }, - "end": { - "$date": "2021-01-06T01:19:26.000Z" - }, - "events": [ - { - "uuid": "52baced9-740c-4591-9bf1-751edce4c26b", - "start": { - "$date": "2021-01-05T22:34:15.000Z" - }, - "end": { - "$date": "2021-01-06T01:19:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "23352c0c-b867-4158-8a4b-2a02d6637b23", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-05T22:46:48.000Z" - }, - "end": { - "$date": "2021-01-05T23:54:42.000Z" - }, - "events": [ - { - "uuid": "3b461bce-dfca-4ecb-943c-4cd51657e4c2", - "start": { - "$date": "2021-01-05T22:46:48.000Z" - }, - "end": { - "$date": "2021-01-05T23:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "9cdf07c2-e219-4b8f-b515-4b58970af6c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-05T23:23:37.000Z" - }, - "end": { - "$date": "2021-01-05T23:31:18.000Z" - }, - "events": [ - { - "uuid": "c55e5acc-ac1f-459a-a86b-e67898194787", - "start": { - "$date": "2021-01-05T23:23:37.000Z" - }, - "end": { - "$date": "2021-01-05T23:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "6f281df2-bec3-4991-b32a-fc79a063e329", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-05T23:41:59.000Z" - }, - "end": { - "$date": "2021-01-06T01:57:38.000Z" - }, - "events": [ - { - "uuid": "7450bb2a-f1ee-470e-82fb-8d28c9ff9255", - "start": { - "$date": "2021-01-05T23:41:59.000Z" - }, - "end": { - "$date": "2021-01-06T01:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99352cc3-64cd-4554-9f42-a3aada94b29e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-05T23:57:16.000Z" - }, - "end": { - "$date": "2021-01-06T00:52:12.000Z" - }, - "events": [ - { - "uuid": "4301f60e-78b5-452d-b9b0-fc9a5b9e7dbd", - "start": { - "$date": "2021-01-05T23:57:16.000Z" - }, - "end": { - "$date": "2021-01-06T00:52:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "6abb15ce-c19c-4e42-9cbd-8ea9de2f476e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-06T00:24:24.000Z" - }, - "end": { - "$date": "2021-01-06T00:32:19.000Z" - }, - "events": [ - { - "uuid": "d99cced1-21c2-40b0-8e42-41de16a98825", - "start": { - "$date": "2021-01-06T00:24:24.000Z" - }, - "end": { - "$date": "2021-01-06T00:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cbf34ec2-ea95-45cf-86b1-4d3f4e728ae3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-06T00:25:45.000Z" - }, - "end": { - "$date": "2021-01-06T01:23:01.000Z" - }, - "events": [ - { - "uuid": "39b1fc89-42bb-4926-8020-801f4d9bfd21", - "start": { - "$date": "2021-01-06T00:25:45.000Z" - }, - "end": { - "$date": "2021-01-06T01:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cb7725d6-0959-408d-9c06-f6d35577c39f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-06T00:26:15.000Z" - }, - "end": { - "$date": "2021-01-06T01:23:29.000Z" - }, - "events": [ - { - "uuid": "e8011645-38e3-490a-b310-a80b44f26850", - "start": { - "$date": "2021-01-06T00:26:15.000Z" - }, - "end": { - "$date": "2021-01-06T00:54:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0150c465-d3eb-4779-844c-9a9553455421", - "start": { - "$date": "2021-01-06T00:54:15.000Z" - }, - "end": { - "$date": "2021-01-06T00:56:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "86b7ccda-6453-40cc-ab2e-2fc947581259", - "start": { - "$date": "2021-01-06T00:56:15.000Z" - }, - "end": { - "$date": "2021-01-06T01:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "274ef3a4-d449-4359-ad05-bf6be6791282", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-06T00:33:28.000Z" - }, - "end": { - "$date": "2021-01-06T00:44:52.000Z" - }, - "events": [ - { - "uuid": "214649d7-bb76-4f05-9ce8-46cef29e95fa", - "start": { - "$date": "2021-01-06T00:33:28.000Z" - }, - "end": { - "$date": "2021-01-06T00:44:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "29f08b6b-d5f9-4173-8963-325f5e99e36d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-06T00:29:39.000Z" - }, - "end": { - "$date": "2021-01-06T00:38:30.000Z" - }, - "events": [ - { - "uuid": "7de27b32-e492-4f24-92ec-4b9c868ee80e", - "start": { - "$date": "2021-01-06T00:29:39.000Z" - }, - "end": { - "$date": "2021-01-06T00:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "fbe5bdfc-7113-4936-95d7-65f60cfb1264", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-06T00:35:57.000Z" - }, - "end": { - "$date": "2021-01-06T01:11:32.000Z" - }, - "events": [ - { - "uuid": "c3c815b7-4531-4a36-a2dd-fbb7664aacd2", - "start": { - "$date": "2021-01-06T00:35:57.000Z" - }, - "end": { - "$date": "2021-01-06T01:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b447c3e1-43d8-4ba2-9881-e09994d09767", - "uuid": "a15b8ed1-63f1-4f05-bfe8-bd17c4e11b76", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-06T01:09:24.000Z" - }, - "end": { - "$date": "2021-01-06T01:13:35.000Z" - }, - "events": [ - { - "uuid": "bf153945-9f70-4797-bc84-a9359f047ccf", - "start": { - "$date": "2021-01-06T01:09:24.000Z" - }, - "end": { - "$date": "2021-01-06T01:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6ad9286e-5e00-4112-8d89-429dfde9f6a3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-06T01:48:43.000Z" - }, - "end": { - "$date": "2021-01-06T02:20:48.000Z" - }, - "events": [ - { - "uuid": "bdc004f7-a6b5-47f7-9f38-db5022d36c33", - "start": { - "$date": "2021-01-06T01:48:43.000Z" - }, - "end": { - "$date": "2021-01-06T02:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "faf068f1-96ea-40e6-a2d3-8887d49c319f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-06T02:04:34.000Z" - }, - "end": { - "$date": "2021-01-06T02:40:53.000Z" - }, - "events": [ - { - "uuid": "2679ee8c-88f1-443b-a1da-52ae63f9ba60", - "start": { - "$date": "2021-01-06T02:04:34.000Z" - }, - "end": { - "$date": "2021-01-06T02:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76d0eaf1-1802-4485-a1b0-1a97c314071c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-06T03:12:07.000Z" - }, - "end": { - "$date": "2021-01-06T03:31:44.000Z" - }, - "events": [ - { - "uuid": "83c5bdc5-e9a4-4422-8b1f-e197b21c931e", - "start": { - "$date": "2021-01-06T03:12:07.000Z" - }, - "end": { - "$date": "2021-01-06T03:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "f3ad98bf-ba14-4da3-a940-d88084142ec2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-06T03:14:47.000Z" - }, - "end": { - "$date": "2021-01-06T03:15:27.000Z" - }, - "events": [ - { - "uuid": "56dbf587-c012-4b2e-8c08-46a319238f6e", - "start": { - "$date": "2021-01-06T03:14:47.000Z" - }, - "end": { - "$date": "2021-01-06T03:15:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d6ecb6ee-b295-4c59-814c-591b155bc5a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-06T07:30:27.000Z" - }, - "end": { - "$date": "2021-01-06T07:30:32.000Z" - }, - "events": [ - { - "uuid": "75db5079-8a93-447a-915b-d50a554d3da3", - "start": { - "$date": "2021-01-06T07:30:27.000Z" - }, - "end": { - "$date": "2021-01-06T07:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6a26a447-32f9-4609-8c88-0ea1ccafd378", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-06T03:40:02.000Z" - }, - "end": { - "$date": "2021-01-06T05:00:30.000Z" - }, - "events": [ - { - "uuid": "24137d38-2b0d-411f-9f95-78f3d8276265", - "start": { - "$date": "2021-01-06T03:40:02.000Z" - }, - "end": { - "$date": "2021-01-06T05:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b338b8cb-23b0-47b9-9fb4-f6d039cd59c9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-06T04:45:14.000Z" - }, - "end": { - "$date": "2021-01-06T04:49:14.000Z" - }, - "events": [ - { - "uuid": "8eb221a7-6f89-4054-a753-07ac0dedce34", - "start": { - "$date": "2021-01-06T04:45:14.000Z" - }, - "end": { - "$date": "2021-01-06T04:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "f50615ce-bc7a-4e15-ab36-05e8594ad90a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-06T05:02:12.000Z" - }, - "end": { - "$date": "2021-01-06T05:12:14.000Z" - }, - "events": [ - { - "uuid": "ce998b51-f45c-4d6a-bcb2-ad82a4fa9356", - "start": { - "$date": "2021-01-06T05:02:12.000Z" - }, - "end": { - "$date": "2021-01-06T05:12:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "c3f42122-f218-4eda-a314-d7a30fda920d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-06T05:04:40.000Z" - }, - "end": { - "$date": "2021-01-06T06:00:48.000Z" - }, - "events": [ - { - "uuid": "151e46ef-5d8e-4049-a424-b011ec901776", - "start": { - "$date": "2021-01-06T05:04:40.000Z" - }, - "end": { - "$date": "2021-01-06T06:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91fe8d58-354d-4856-bb51-4b5be36ec490", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-06T05:16:29.000Z" - }, - "end": { - "$date": "2021-01-06T05:30:19.000Z" - }, - "events": [ - { - "uuid": "58fc1559-a41c-487a-a399-53ace9ed1786", - "start": { - "$date": "2021-01-06T05:16:29.000Z" - }, - "end": { - "$date": "2021-01-06T05:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "b27684a0-69e3-42df-a013-232c1ebb4986", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-06T05:15:47.000Z" - }, - "end": { - "$date": "2021-01-06T07:26:34.000Z" - }, - "events": [ - { - "uuid": "eb3d8433-418a-4d7f-8d19-f91ef3becc5f", - "start": { - "$date": "2021-01-06T05:15:47.000Z" - }, - "end": { - "$date": "2021-01-06T07:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "0174664c-1bc4-45c2-b345-27f987f94cc2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-06T06:18:54.000Z" - }, - "end": { - "$date": "2021-01-06T10:03:32.000Z" - }, - "events": [ - { - "uuid": "20f2c38c-5918-46d3-88bc-fa873ea2fc3f", - "start": { - "$date": "2021-01-06T06:18:54.000Z" - }, - "end": { - "$date": "2021-01-06T10:03:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "87d9453f-1818-4261-b6cc-402e708af1e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-06T06:32:47.000Z" - }, - "end": { - "$date": "2021-01-06T07:14:20.000Z" - }, - "events": [ - { - "uuid": "37b37ba2-a0ad-46dc-8f55-123bb43cca0b", - "start": { - "$date": "2021-01-06T06:32:47.000Z" - }, - "end": { - "$date": "2021-01-06T07:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ceb9454f-818a-4797-823b-1f364722802b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-06T06:33:58.000Z" - }, - "end": { - "$date": "2021-01-06T07:14:04.000Z" - }, - "events": [ - { - "uuid": "c905843e-28c5-407d-b342-2a4210253bd2", - "start": { - "$date": "2021-01-06T06:33:58.000Z" - }, - "end": { - "$date": "2021-01-06T07:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "395959f9-275a-48ea-a53a-4ac758fc9ad0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-06T14:54:22.000Z" - }, - "end": { - "$date": "2021-01-06T15:12:13.000Z" - }, - "events": [ - { - "uuid": "611c35bf-dfea-4738-aead-05e08dec6fd5", - "start": { - "$date": "2021-01-06T14:54:22.000Z" - }, - "end": { - "$date": "2021-01-06T15:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2b4633d7-6a12-4292-8c97-671588ef1d99", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-06T15:17:21.000Z" - }, - "end": { - "$date": "2021-01-06T17:36:46.000Z" - }, - "events": [ - { - "uuid": "dd8894b6-f3df-496f-9f82-92e4a4ccc61a", - "start": { - "$date": "2021-01-06T15:17:21.000Z" - }, - "end": { - "$date": "2021-01-06T17:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "16073df7-6719-4730-a3ab-72a38e67598b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-06T17:31:08.000Z" - }, - "end": { - "$date": "2021-01-06T23:01:18.000Z" - }, - "events": [ - { - "uuid": "53d5957e-9389-49ac-ab9f-c0b8c17cdbb4", - "start": { - "$date": "2021-01-06T17:31:08.000Z" - }, - "end": { - "$date": "2021-01-06T23:01:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c48d946-9899-4202-9d05-0f3d4f979978", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-06T17:51:34.000Z" - }, - "end": { - "$date": "2021-01-06T17:58:28.000Z" - }, - "events": [ - { - "uuid": "7cabac9c-5668-4d3f-a4ec-539b2f73817a", - "start": { - "$date": "2021-01-06T17:51:34.000Z" - }, - "end": { - "$date": "2021-01-06T17:58:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c7911632-6392-4d47-b23a-040c3563d19b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-06T20:07:56.000Z" - }, - "end": { - "$date": "2021-01-06T21:02:17.000Z" - }, - "events": [ - { - "uuid": "2ae6e77d-d362-435d-8267-2d5f01655178", - "start": { - "$date": "2021-01-06T20:07:56.000Z" - }, - "end": { - "$date": "2021-01-06T21:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c7b69ece-4491-4fe9-95a1-365513b252ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-06T20:08:32.000Z" - }, - "end": { - "$date": "2021-01-06T21:06:33.000Z" - }, - "events": [ - { - "uuid": "f10b3d35-6b5b-4619-beb7-0aeda855c21e", - "start": { - "$date": "2021-01-06T20:08:32.000Z" - }, - "end": { - "$date": "2021-01-06T21:06:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f1cfb887-0a04-4401-938d-795a7e267520", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-06T20:33:17.000Z" - }, - "end": { - "$date": "2021-01-06T20:59:02.000Z" - }, - "events": [ - { - "uuid": "a37b05c5-ae95-4d91-900f-9f418fbdbecf", - "start": { - "$date": "2021-01-06T20:33:17.000Z" - }, - "end": { - "$date": "2021-01-06T20:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "169e87ff-1d58-438d-82c4-6c2d9cbf4765", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-06T21:20:52.000Z" - }, - "end": { - "$date": "2021-01-06T22:43:17.000Z" - }, - "events": [ - { - "uuid": "b8cbcf2a-652c-4015-9178-d3c0b326b355", - "start": { - "$date": "2021-01-06T21:20:52.000Z" - }, - "end": { - "$date": "2021-01-06T22:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f1878bd2-b491-4f58-b53d-b1303bab874f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-06T21:23:33.000Z" - }, - "end": { - "$date": "2021-01-06T22:03:54.000Z" - }, - "events": [ - { - "uuid": "323c7607-3519-4ca3-9282-921b36e29765", - "start": { - "$date": "2021-01-06T21:23:33.000Z" - }, - "end": { - "$date": "2021-01-06T22:03:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3ee4cc50-e36b-4d9d-a2f9-d5c5ca73a110", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-06T21:59:39.000Z" - }, - "end": { - "$date": "2021-01-07T00:36:20.000Z" - }, - "events": [ - { - "uuid": "9b73f32f-583b-4368-a01c-158e85e9366c", - "start": { - "$date": "2021-01-06T21:59:39.000Z" - }, - "end": { - "$date": "2021-01-07T00:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02526cb5-4ab0-43a1-8e68-f27fa2241b32", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-06T22:03:40.000Z" - }, - "end": { - "$date": "2021-01-07T04:35:53.000Z" - }, - "events": [ - { - "uuid": "7857f19e-cb8b-45f1-b27d-ba6c2164359f", - "start": { - "$date": "2021-01-06T22:03:40.000Z" - }, - "end": { - "$date": "2021-01-07T00:06:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6cdb6f14-db0b-4891-adf2-2574c583707a", - "start": { - "$date": "2021-01-07T00:06:40.000Z" - }, - "end": { - "$date": "2021-01-07T00:11:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6f03d356-853b-4609-8e3f-bef45f19e9bf", - "start": { - "$date": "2021-01-07T00:11:40.000Z" - }, - "end": { - "$date": "2021-01-07T00:21:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24b76300-8e23-4b71-9880-653824ea38eb", - "start": { - "$date": "2021-01-07T00:21:40.000Z" - }, - "end": { - "$date": "2021-01-07T00:34:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f107dc2c-8fe8-4921-89f6-867820f8cd59", - "start": { - "$date": "2021-01-07T00:34:40.000Z" - }, - "end": { - "$date": "2021-01-07T00:57:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec1ec113-d99b-4f8c-b5cd-fa7e5959c4b0", - "start": { - "$date": "2021-01-07T00:57:40.000Z" - }, - "end": { - "$date": "2021-01-07T01:17:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "557e1de1-59f2-4e35-a3b4-6303941bffba", - "start": { - "$date": "2021-01-07T01:17:40.000Z" - }, - "end": { - "$date": "2021-01-07T01:29:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec4cbe3b-bac3-4329-a516-b5e10ff090a6", - "start": { - "$date": "2021-01-07T01:29:40.000Z" - }, - "end": { - "$date": "2021-01-07T02:00:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11524d1a-2d4b-44a4-b736-95a329d58399", - "start": { - "$date": "2021-01-07T02:00:40.000Z" - }, - "end": { - "$date": "2021-01-07T04:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e756f3d2-b73a-419c-b6d7-4d536ad34dfd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-06T22:16:47.000Z" - }, - "end": { - "$date": "2021-01-06T23:40:59.000Z" - }, - "events": [ - { - "uuid": "2be934f5-d267-4939-bb5f-f5fa2102bce3", - "start": { - "$date": "2021-01-06T22:16:47.000Z" - }, - "end": { - "$date": "2021-01-06T23:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "a7b4dc69-71d8-42bc-abf4-05123d63719d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-06T21:20:52.000Z" - }, - "end": { - "$date": "2021-01-07T00:04:45.000Z" - }, - "events": [ - { - "uuid": "05eeed57-4aa3-4205-badf-adce7cccadea", - "start": { - "$date": "2021-01-06T21:20:52.000Z" - }, - "end": { - "$date": "2021-01-07T00:04:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b2e0606-ddcc-474c-b81c-cb35c51cff95", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T02:02:40.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:57.000Z" - }, - "events": [ - { - "uuid": "11363ddd-f401-4352-b712-43489ba8da5d", - "start": { - "$date": "2021-01-07T02:02:40.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7918c697-fee6-496d-a7d4-692e96d8f0cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T02:02:34.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:49.000Z" - }, - "events": [ - { - "uuid": "d999a419-8e38-4443-8ae5-1d1fe1c95ece", - "start": { - "$date": "2021-01-07T02:02:34.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "651ff899-11b2-4a22-acb7-f0c3726529df", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T02:03:02.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:58.000Z" - }, - "events": [ - { - "uuid": "e0ee9d6c-2ee4-4f5c-8986-1e6f0f75a526", - "start": { - "$date": "2021-01-07T02:03:02.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1db0115-62e1-4ce0-8fa8-40408cbb9b38", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T02:02:36.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:58.000Z" - }, - "events": [ - { - "uuid": "9d519cd4-fea4-42f5-ac8a-baefb074a5f0", - "start": { - "$date": "2021-01-07T02:02:36.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7681bb23-9dcb-483a-81d2-485551885f11", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T02:04:41.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:57.000Z" - }, - "events": [ - { - "uuid": "98ae6c9f-20f4-4c08-b60e-719ad58fe497", - "start": { - "$date": "2021-01-07T02:04:41.000Z" - }, - "end": { - "$date": "2021-01-07T02:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f985eaa8-efa7-4f27-a5d8-0e7589455863", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T02:15:29.000Z" - }, - "end": { - "$date": "2021-01-07T02:39:58.000Z" - }, - "events": [ - { - "uuid": "9df1acff-b8b4-4fe1-be00-665b40611059", - "start": { - "$date": "2021-01-07T02:15:29.000Z" - }, - "end": { - "$date": "2021-01-07T02:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "30abb073-ae45-49b1-8264-aa8ebfbdf00c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T02:41:09.000Z" - }, - "end": { - "$date": "2021-01-07T02:42:49.000Z" - }, - "events": [ - { - "uuid": "1d66bbb0-6578-4f39-adf0-72338b67a83e", - "start": { - "$date": "2021-01-07T02:41:09.000Z" - }, - "end": { - "$date": "2021-01-07T02:42:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2f5cac2-39f4-4b6e-917c-ea307bee6148", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T02:47:53.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:54.000Z" - }, - "events": [ - { - "uuid": "e975b04c-4df6-4eca-97bf-39951f90425c", - "start": { - "$date": "2021-01-07T02:47:53.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5ad3e913-74e4-4dfd-ab6b-3f24036c4fc1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T02:46:35.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:50.000Z" - }, - "events": [ - { - "uuid": "5be78e83-840c-4d9e-85b9-ba960967bad2", - "start": { - "$date": "2021-01-07T02:46:35.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50bdd6f9-afd1-4c13-94db-99b871309531", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T02:46:35.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:50.000Z" - }, - "events": [ - { - "uuid": "babde662-7738-4262-bd4d-dea7d957ebba", - "start": { - "$date": "2021-01-07T02:46:35.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d19bfad-2297-462e-b4b9-f73b14139f41", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T02:46:41.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:51.000Z" - }, - "events": [ - { - "uuid": "19f80cbf-7ebe-473a-81aa-92c63cac4bb0", - "start": { - "$date": "2021-01-07T02:46:41.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a809abae-672b-46fc-b30a-e8739ed8d199", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T02:46:33.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:51.000Z" - }, - "events": [ - { - "uuid": "dca1d741-f192-42b7-89eb-6ba6418e94d7", - "start": { - "$date": "2021-01-07T02:46:33.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "982ca8ee-431b-4914-9f89-8ec66c3452e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T02:46:38.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:48.000Z" - }, - "events": [ - { - "uuid": "29a1b95b-b4d2-489e-841b-21a642c52494", - "start": { - "$date": "2021-01-07T02:46:38.000Z" - }, - "end": { - "$date": "2021-01-07T03:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "045660a3-9411-4f90-ab75-53528b65b8d1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-07T03:04:08.000Z" - }, - "end": { - "$date": "2021-01-07T03:16:43.000Z" - }, - "events": [ - { - "uuid": "5b865975-8081-4e40-b55d-83bd5f3d0f0c", - "start": { - "$date": "2021-01-07T03:04:08.000Z" - }, - "end": { - "$date": "2021-01-07T03:16:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5727edaf-802d-4126-a230-5b00794bbcc9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T03:09:27.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:36.000Z" - }, - "events": [ - { - "uuid": "b2c5fecc-d510-4c24-8e8d-b6ba59115961", - "start": { - "$date": "2021-01-07T03:09:27.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5153a6fc-d9d9-4ad8-a27d-87a80f98ee37", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T03:09:21.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:31.000Z" - }, - "events": [ - { - "uuid": "5bd167f8-a10f-4f9b-a09a-e6ca87fb8c7a", - "start": { - "$date": "2021-01-07T03:09:21.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "175802ab-5244-45b2-9e26-25d3bab3d7e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T03:09:20.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:25.000Z" - }, - "events": [ - { - "uuid": "02c1c36d-6813-41a3-9bf6-4642ba55c74a", - "start": { - "$date": "2021-01-07T03:09:20.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb20f383-8b4a-4dbd-96c3-3e81758d8823", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T03:09:39.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:35.000Z" - }, - "events": [ - { - "uuid": "29fc117b-d78b-47ff-96f1-fe0441d43b8a", - "start": { - "$date": "2021-01-07T03:09:39.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81ee69b5-e5c7-4179-854b-d1fb9ee497f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T03:09:24.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:29.000Z" - }, - "events": [ - { - "uuid": "79ce38a5-8a9d-4ce8-8485-6f6b5fed70e8", - "start": { - "$date": "2021-01-07T03:09:24.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b09f080f-54c5-4bd7-8328-7abe32e9b02e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T03:09:19.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:26.000Z" - }, - "events": [ - { - "uuid": "50af2cda-5706-4b76-a9af-17851b79ae75", - "start": { - "$date": "2021-01-07T03:09:19.000Z" - }, - "end": { - "$date": "2021-01-07T03:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27eae4e4-1167-4303-afc7-1974f2036e57", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T03:26:43.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:09.000Z" - }, - "events": [ - { - "uuid": "3b0d2ff7-aeda-4305-abb2-d273f11f7e83", - "start": { - "$date": "2021-01-07T03:26:43.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf4ad739-11be-4229-8fa2-0daa2093e9a8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T03:22:43.000Z" - }, - "end": { - "$date": "2021-01-07T03:28:28.000Z" - }, - "events": [ - { - "uuid": "a7a04c4c-e038-42c1-9480-fcc448f8a5d4", - "start": { - "$date": "2021-01-07T03:22:43.000Z" - }, - "end": { - "$date": "2021-01-07T03:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f95362a5-f87c-454e-a26d-04043a9eb6d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T03:22:43.000Z" - }, - "end": { - "$date": "2021-01-07T03:27:30.000Z" - }, - "events": [ - { - "uuid": "e1af63c2-57ad-40ec-a0db-7bece1a47f27", - "start": { - "$date": "2021-01-07T03:22:43.000Z" - }, - "end": { - "$date": "2021-01-07T03:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd95cd30-95c0-4aa1-8f52-ea93ae9645f1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T03:22:41.000Z" - }, - "end": { - "$date": "2021-01-07T03:27:22.000Z" - }, - "events": [ - { - "uuid": "bb45404c-77c6-40ad-8b72-7472afe7738f", - "start": { - "$date": "2021-01-07T03:22:41.000Z" - }, - "end": { - "$date": "2021-01-07T03:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc3b4af2-4c9d-4447-a951-65a03454e43f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T03:22:44.000Z" - }, - "end": { - "$date": "2021-01-07T03:27:17.000Z" - }, - "events": [ - { - "uuid": "5a6363be-9e3a-47fa-b728-1f0cb57d2ac6", - "start": { - "$date": "2021-01-07T03:22:44.000Z" - }, - "end": { - "$date": "2021-01-07T03:27:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "b6b6c071-9c47-4991-9600-909ef9c304aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-07T03:23:49.000Z" - }, - "end": { - "$date": "2021-01-07T03:26:44.000Z" - }, - "events": [ - { - "uuid": "48f08bdd-9c61-4dd5-b262-9e5ac8f0f911", - "start": { - "$date": "2021-01-07T03:23:49.000Z" - }, - "end": { - "$date": "2021-01-07T03:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "954a2e34-4fec-441c-a17d-9bcd5fbe69fe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-07T03:26:54.000Z" - }, - "end": { - "$date": "2021-01-07T04:35:47.000Z" - }, - "events": [ - { - "uuid": "26e9f934-e63c-4e27-a24c-b108ce7a7181", - "start": { - "$date": "2021-01-07T03:26:54.000Z" - }, - "end": { - "$date": "2021-01-07T04:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d718a36-32ee-424c-bc5e-21dada87654a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T03:27:49.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:07.000Z" - }, - "events": [ - { - "uuid": "90d58cb4-91d8-4c90-948b-9bf5fba17b69", - "start": { - "$date": "2021-01-07T03:27:49.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58ea9fd7-8562-49db-9e91-8df0a5da8ce7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T03:28:50.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:06.000Z" - }, - "events": [ - { - "uuid": "58b1f768-273a-44b2-abef-35567d9c0f00", - "start": { - "$date": "2021-01-07T03:28:50.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13e3de67-7850-4fd7-946f-c00126291b94", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T03:28:20.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:15.000Z" - }, - "events": [ - { - "uuid": "5937b93e-2e22-48c6-a521-cbb4c1dffd89", - "start": { - "$date": "2021-01-07T03:28:20.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcd5b573-b2ab-407d-a726-2b7b9bbcade2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T03:29:17.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:07.000Z" - }, - "events": [ - { - "uuid": "004ac8d4-1d12-4d1a-8e13-4cc3c142e7eb", - "start": { - "$date": "2021-01-07T03:29:17.000Z" - }, - "end": { - "$date": "2021-01-07T04:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e076eb7a-ee94-4c8d-9f2e-34761bbf60e6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-07T03:31:23.000Z" - }, - "end": { - "$date": "2021-01-07T04:09:14.000Z" - }, - "events": [ - { - "uuid": "31594ab5-228f-4e3e-bb96-07f9ecad2fe6", - "start": { - "$date": "2021-01-07T03:31:23.000Z" - }, - "end": { - "$date": "2021-01-07T04:09:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bd24e0d2-1232-4f10-becd-5d72ce3b6573", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-07T04:09:24.000Z" - }, - "end": { - "$date": "2021-01-07T04:14:05.000Z" - }, - "events": [ - { - "uuid": "0b6de1d9-2c08-474e-a91c-b10255cb0274", - "start": { - "$date": "2021-01-07T04:09:24.000Z" - }, - "end": { - "$date": "2021-01-07T04:14:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62f0ac0a-f54a-490a-ae78-c18045225106", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T04:40:31.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:24.000Z" - }, - "events": [ - { - "uuid": "278ee249-6335-43fa-aade-0b178eb12563", - "start": { - "$date": "2021-01-07T04:40:31.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0037e7a7-3e33-4ef6-9f67-a620fa0c1bd5", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-07T04:15:11.000Z" - }, - "end": { - "$date": "2021-01-07T08:07:50.000Z" - }, - "events": [ - { - "uuid": "9268890d-d308-433d-bff5-af2b9e3205f0", - "start": { - "$date": "2021-01-07T04:15:11.000Z" - }, - "end": { - "$date": "2021-01-07T08:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "68aabbc8-9a29-4e70-a049-01accdd0beef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-07T04:16:06.000Z" - }, - "end": { - "$date": "2021-01-07T06:54:15.000Z" - }, - "events": [ - { - "uuid": "6397ae1c-04c8-43f9-9c60-ab54f9ec01c0", - "start": { - "$date": "2021-01-07T04:16:06.000Z" - }, - "end": { - "$date": "2021-01-07T06:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb6520a6-f811-46cc-a70f-c287c483440a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T04:20:34.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:15.000Z" - }, - "events": [ - { - "uuid": "eeb49f30-68fb-4688-8907-5aa51976f5a9", - "start": { - "$date": "2021-01-07T04:20:34.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c7e91cc-0b33-4aea-8864-bc2f80a69bc7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T04:20:51.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:16.000Z" - }, - "events": [ - { - "uuid": "9cdf0156-0448-4f81-af1a-68bf304ff5df", - "start": { - "$date": "2021-01-07T04:20:51.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3506469a-4b5e-427e-b51e-ae7b1a742fcd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T04:20:31.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:15.000Z" - }, - "events": [ - { - "uuid": "45e832b1-ec00-49a6-b480-bb8c6c01cf67", - "start": { - "$date": "2021-01-07T04:20:31.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43f74a9c-34af-4eee-abfa-e87650279a36", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T04:17:06.000Z" - }, - "end": { - "$date": "2021-01-07T04:21:45.000Z" - }, - "events": [ - { - "uuid": "7f3fd7c3-dd91-4ff9-98a5-f19c785ddff5", - "start": { - "$date": "2021-01-07T04:17:06.000Z" - }, - "end": { - "$date": "2021-01-07T04:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ec518f7-7b99-4b98-b427-90e8dc925a0d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T04:28:50.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:20.000Z" - }, - "events": [ - { - "uuid": "4263915b-99bb-4cd8-89c9-ec63c212660f", - "start": { - "$date": "2021-01-07T04:28:50.000Z" - }, - "end": { - "$date": "2021-01-07T04:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "6e582c8c-17ba-4f7a-af1a-d466919f31b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-07T04:36:07.000Z" - }, - "end": { - "$date": "2021-01-07T06:45:51.000Z" - }, - "events": [ - { - "uuid": "6267cece-8287-4edf-86bf-0bc86334237d", - "start": { - "$date": "2021-01-07T04:36:07.000Z" - }, - "end": { - "$date": "2021-01-07T06:45:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "ab2bfd23-286d-416a-b357-f98eb7db3905", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-07T04:36:12.000Z" - }, - "end": { - "$date": "2021-01-07T05:32:11.000Z" - }, - "events": [ - { - "uuid": "10d07f6d-98be-4b50-a611-35815590346e", - "start": { - "$date": "2021-01-07T04:36:12.000Z" - }, - "end": { - "$date": "2021-01-07T05:32:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8ebd6f5-bf26-4486-ad12-124da486ab59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T04:58:27.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:22.000Z" - }, - "events": [ - { - "uuid": "1aeb2e7e-ab8e-45b8-96b0-1770d09d3357", - "start": { - "$date": "2021-01-07T04:58:27.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8035989f-1749-4e8e-9652-7149562ba18d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T04:58:17.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:22.000Z" - }, - "events": [ - { - "uuid": "195b7520-5e60-4120-9a7f-8f65a02e9853", - "start": { - "$date": "2021-01-07T04:58:17.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a085695b-346a-4e55-bf0b-994189a4c722", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T04:58:20.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:20.000Z" - }, - "events": [ - { - "uuid": "90e345ee-d20c-429d-aced-5de40774764c", - "start": { - "$date": "2021-01-07T04:58:20.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52f928fa-84c5-40b3-a152-ddaaaf29ced4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T04:58:22.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:28.000Z" - }, - "events": [ - { - "uuid": "42e98697-b91c-4357-81e2-e298b83d337d", - "start": { - "$date": "2021-01-07T04:58:22.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "083aac21-9442-4079-b5b0-ce91fc2c06c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T04:58:21.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:21.000Z" - }, - "events": [ - { - "uuid": "9901cc07-933c-4890-b8ca-3c0f3182c36a", - "start": { - "$date": "2021-01-07T04:58:21.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f34b87fa-0387-4fa7-bc79-85c051eabe37", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T04:58:18.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:20.000Z" - }, - "events": [ - { - "uuid": "675bb092-e13b-4990-a70f-b0973d720b18", - "start": { - "$date": "2021-01-07T04:58:18.000Z" - }, - "end": { - "$date": "2021-01-07T05:13:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d28a46ff-bbbd-40f0-a367-38d1cbef9327", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T05:15:48.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:22.000Z" - }, - "events": [ - { - "uuid": "fe863e48-14e5-4766-b62e-1374349360e5", - "start": { - "$date": "2021-01-07T05:15:48.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4752578-4e02-483b-acf6-b35010607791", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T05:15:41.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:16.000Z" - }, - "events": [ - { - "uuid": "26ddfecb-477e-4573-8fa1-4eeb92e17e32", - "start": { - "$date": "2021-01-07T05:15:41.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d041546c-a8ba-46c0-9e48-6ededfc2bdb5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T05:16:07.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:12.000Z" - }, - "events": [ - { - "uuid": "7aaaed8c-852f-42fa-b35e-9d702d927789", - "start": { - "$date": "2021-01-07T05:16:07.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d937adb-13a0-49d7-a647-4b8c7ca6f9ac", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T05:15:42.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:19.000Z" - }, - "events": [ - { - "uuid": "4208f09b-762e-4405-b04f-45b887202431", - "start": { - "$date": "2021-01-07T05:15:42.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a9241fe-e808-4f07-9011-f882e3e7cbbe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T05:15:41.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:22.000Z" - }, - "events": [ - { - "uuid": "2a048b2d-b219-4cea-abd0-b252ffbe8ccc", - "start": { - "$date": "2021-01-07T05:15:41.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eeb32f65-0685-4f0c-9a94-7e6d7df71977", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-07T05:19:43.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:11.000Z" - }, - "events": [ - { - "uuid": "62ef1a7c-c296-4b2e-ba1a-e59b6aa39ced", - "start": { - "$date": "2021-01-07T05:19:43.000Z" - }, - "end": { - "$date": "2021-01-07T05:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "52b8de2d-c044-452a-bc63-2c5217ed2810", - "uuid": "8b04f452-1d93-48ad-a284-02986780c2ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T06:00:46.000Z" - }, - "end": { - "$date": "2021-01-07T07:05:51.000Z" - }, - "events": [ - { - "uuid": "d8e0be1d-c98d-4c8e-9eb0-a2889d95e2e5", - "start": { - "$date": "2021-01-07T06:00:46.000Z" - }, - "end": { - "$date": "2021-01-07T07:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cde3b4b7-648d-4326-a8ef-e8a7c15fe721", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-07T07:02:33.000Z" - }, - "end": { - "$date": "2021-01-07T07:05:05.000Z" - }, - "events": [ - { - "uuid": "6425e30e-eac0-4f01-bd73-611d85d7e1ee", - "start": { - "$date": "2021-01-07T07:02:33.000Z" - }, - "end": { - "$date": "2021-01-07T07:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c494b048-ef57-4eb1-ad42-04f014384d07", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-07T07:29:08.000Z" - }, - "end": { - "$date": "2021-01-07T08:15:59.000Z" - }, - "events": [ - { - "uuid": "d0e5bcf9-f83b-4ff2-966c-8901e0e669fd", - "start": { - "$date": "2021-01-07T07:29:08.000Z" - }, - "end": { - "$date": "2021-01-07T08:15:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2f2d5ad9-49e1-4b8f-80f1-9b5cbc87c08b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T07:29:35.000Z" - }, - "end": { - "$date": "2021-01-07T08:16:33.000Z" - }, - "events": [ - { - "uuid": "92b48328-ba3e-4085-a6c6-69e128803004", - "start": { - "$date": "2021-01-07T07:29:35.000Z" - }, - "end": { - "$date": "2021-01-07T08:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c904f8d3-5db0-451a-9bca-9a3053b4a97b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-07T15:16:28.000Z" - }, - "end": { - "$date": "2021-01-07T15:35:26.000Z" - }, - "events": [ - { - "uuid": "04cc678c-473c-4e2a-8a16-461b806b3c9c", - "start": { - "$date": "2021-01-07T15:16:28.000Z" - }, - "end": { - "$date": "2021-01-07T15:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "855e3dce-b8ab-49b3-b867-5cfadabb5baf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T18:16:09.000Z" - }, - "end": { - "$date": "2021-01-07T18:51:15.000Z" - }, - "events": [ - { - "uuid": "3ac850ae-a521-4541-a3e1-15ba40b93b19", - "start": { - "$date": "2021-01-07T18:16:09.000Z" - }, - "end": { - "$date": "2021-01-07T18:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a6836b2a-f9eb-4f48-9a1e-fa6430bc5400", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T18:52:39.000Z" - }, - "end": { - "$date": "2021-01-07T18:58:15.000Z" - }, - "events": [ - { - "uuid": "468c8ca3-43eb-4b3d-a771-fa734e029536", - "start": { - "$date": "2021-01-07T18:52:39.000Z" - }, - "end": { - "$date": "2021-01-07T18:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "713d5ccc-52e8-446a-ae0e-e492df08ace7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-07T19:25:26.000Z" - }, - "end": { - "$date": "2021-01-07T19:29:31.000Z" - }, - "events": [ - { - "uuid": "92d8baf0-f4cb-496b-a163-85e22fded03e", - "start": { - "$date": "2021-01-07T19:25:26.000Z" - }, - "end": { - "$date": "2021-01-07T19:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "10134fde-1eb7-448c-b752-22d5b46a6c88", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-07T19:33:03.000Z" - }, - "end": { - "$date": "2021-01-07T19:36:12.000Z" - }, - "events": [ - { - "uuid": "b5712046-3736-4131-9611-ab0fd921e91f", - "start": { - "$date": "2021-01-07T19:33:03.000Z" - }, - "end": { - "$date": "2021-01-07T19:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "40f46bc1-1825-40ac-b8fe-f9b448cc3439", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T19:33:48.000Z" - }, - "end": { - "$date": "2021-01-07T19:56:45.000Z" - }, - "events": [ - { - "uuid": "02324e4b-10ec-416d-9238-67f2a3f44103", - "start": { - "$date": "2021-01-07T19:33:48.000Z" - }, - "end": { - "$date": "2021-01-07T19:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "992df70e-11b4-41ae-8876-458ec00a08d5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-07T19:51:49.000Z" - }, - "end": { - "$date": "2021-01-07T20:45:28.000Z" - }, - "events": [ - { - "uuid": "affb75a2-0ff7-4201-999e-26bcbf2e63dd", - "start": { - "$date": "2021-01-07T19:51:49.000Z" - }, - "end": { - "$date": "2021-01-07T20:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "80bbf273-f684-4654-af17-1325c7d579e5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-07T19:51:56.000Z" - }, - "end": { - "$date": "2021-01-07T20:41:53.000Z" - }, - "events": [ - { - "uuid": "37772186-81bd-4109-ba79-b39b82ea6fb7", - "start": { - "$date": "2021-01-07T19:51:56.000Z" - }, - "end": { - "$date": "2021-01-07T20:41:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1df03c31-9a6e-4f3b-8dfa-12a989fe9e6b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-07T19:57:46.000Z" - }, - "end": { - "$date": "2021-01-07T20:05:36.000Z" - }, - "events": [ - { - "uuid": "ae7af537-5262-4219-9a84-5ad688587f5a", - "start": { - "$date": "2021-01-07T19:57:46.000Z" - }, - "end": { - "$date": "2021-01-07T20:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5e6456d3-163d-4bc2-b99a-d9776d221f76", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T21:14:06.000Z" - }, - "end": { - "$date": "2021-01-07T21:52:47.000Z" - }, - "events": [ - { - "uuid": "eb22d634-6912-4015-9aa6-cf6438028f5e", - "start": { - "$date": "2021-01-07T21:14:06.000Z" - }, - "end": { - "$date": "2021-01-07T21:52:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6764345e-9ba3-4b66-89a8-95daac0cbb49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T22:24:46.000Z" - }, - "end": { - "$date": "2021-01-07T22:55:33.000Z" - }, - "events": [ - { - "uuid": "ab2ceb8c-3ef0-47df-9ce4-d7e1e7456c92", - "start": { - "$date": "2021-01-07T22:24:46.000Z" - }, - "end": { - "$date": "2021-01-07T22:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f5b47fb-b5a4-4d1c-a15c-22f94e4748ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T23:13:41.000Z" - }, - "end": { - "$date": "2021-01-07T23:39:13.000Z" - }, - "events": [ - { - "uuid": "6bf14305-7839-44ca-96c0-c56478365007", - "start": { - "$date": "2021-01-07T23:13:41.000Z" - }, - "end": { - "$date": "2021-01-07T23:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "662a8644-baef-4c36-b56f-5079e7131508", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T23:24:40.000Z" - }, - "end": { - "$date": "2021-01-07T23:40:45.000Z" - }, - "events": [ - { - "uuid": "2c102739-778e-4970-9224-8b3853421de8", - "start": { - "$date": "2021-01-07T23:24:40.000Z" - }, - "end": { - "$date": "2021-01-07T23:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9eeefdce-1c7e-48dc-8b0b-755ca68c52db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-07T23:40:45.000Z" - }, - "end": { - "$date": "2021-01-08T00:06:10.000Z" - }, - "events": [ - { - "uuid": "fcb1ea16-daf5-4166-9315-d9a37c3b8d11", - "start": { - "$date": "2021-01-07T23:40:45.000Z" - }, - "end": { - "$date": "2021-01-08T00:06:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "358d8f62-aa01-4e32-82b4-49aac25e90e7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T23:40:49.000Z" - }, - "end": { - "$date": "2021-01-07T23:50:29.000Z" - }, - "events": [ - { - "uuid": "869ea52c-6419-438c-a8e5-948d296420c4", - "start": { - "$date": "2021-01-07T23:40:49.000Z" - }, - "end": { - "$date": "2021-01-07T23:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc13590a-6b09-45b8-84ee-82b4d8c3653a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-07T23:58:20.000Z" - }, - "end": { - "$date": "2021-01-08T00:05:45.000Z" - }, - "events": [ - { - "uuid": "9a694569-09f9-488d-8ad8-73e247ba47a6", - "start": { - "$date": "2021-01-07T23:58:20.000Z" - }, - "end": { - "$date": "2021-01-08T00:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a701134a-0325-4190-93ef-a43cc530e8a3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-07T23:58:22.000Z" - }, - "end": { - "$date": "2021-01-08T00:05:42.000Z" - }, - "events": [ - { - "uuid": "80fba226-536b-4267-9310-fc07ad2641f5", - "start": { - "$date": "2021-01-07T23:58:22.000Z" - }, - "end": { - "$date": "2021-01-08T00:05:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb08ce45-5ec4-41db-8968-75f5acddc0b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T00:20:42.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:06.000Z" - }, - "events": [ - { - "uuid": "b10c29c0-c2ae-4e95-82ea-b2baa65d3098", - "start": { - "$date": "2021-01-08T00:20:42.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7d00af5-435f-417c-ba37-a15495226c34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T00:08:55.000Z" - }, - "end": { - "$date": "2021-01-08T00:12:19.000Z" - }, - "events": [ - { - "uuid": "21701151-7ef7-41db-8a57-f065a374a449", - "start": { - "$date": "2021-01-08T00:08:55.000Z" - }, - "end": { - "$date": "2021-01-08T00:12:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31c71d4d-ce5a-4b8e-9fa1-8194cc5163d2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T00:08:55.000Z" - }, - "end": { - "$date": "2021-01-08T00:12:19.000Z" - }, - "events": [ - { - "uuid": "7d0458a8-acf6-4444-9635-ea5ca16ba8df", - "start": { - "$date": "2021-01-08T00:08:55.000Z" - }, - "end": { - "$date": "2021-01-08T00:12:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0927a821-1a23-40ce-b598-80aaf4b8c985", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-08T00:20:41.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:00.000Z" - }, - "events": [ - { - "uuid": "dcf81b45-5f2c-40c7-8b7d-65eea08d137c", - "start": { - "$date": "2021-01-08T00:20:41.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bbecf5d-46af-447c-a9be-159d3f59e59c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T00:20:30.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:22.000Z" - }, - "events": [ - { - "uuid": "43652e41-27f3-4318-9a81-38ab02664968", - "start": { - "$date": "2021-01-08T00:20:30.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c3f153a-e40e-4a48-b738-4324389fe32d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T00:21:45.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:00.000Z" - }, - "events": [ - { - "uuid": "0a3889f4-e6ca-4fe6-b5bd-c1e18a69c637", - "start": { - "$date": "2021-01-08T00:21:45.000Z" - }, - "end": { - "$date": "2021-01-08T00:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ce525255-186b-435d-ab02-67075ea10b7c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-08T00:29:40.000Z" - }, - "end": { - "$date": "2021-01-08T01:16:34.000Z" - }, - "events": [ - { - "uuid": "cfbfcd84-eea9-4653-82c6-1611ee8f788b", - "start": { - "$date": "2021-01-08T00:29:40.000Z" - }, - "end": { - "$date": "2021-01-08T01:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "810661e2-5f4b-47bb-9780-8aa95d6033a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T00:34:33.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:32.000Z" - }, - "events": [ - { - "uuid": "fceae6e8-a0f3-48d7-aa79-e0239c9fed5f", - "start": { - "$date": "2021-01-08T00:34:33.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0eceb781-c1fc-4128-8715-9b948dacdbb8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-08T00:34:21.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:26.000Z" - }, - "events": [ - { - "uuid": "0fb567a4-62d0-48dd-ae8b-dca353a04fd8", - "start": { - "$date": "2021-01-08T00:34:21.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3e6584a-aff1-4a63-abc7-1ee73dbf9901", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T00:34:21.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:21.000Z" - }, - "events": [ - { - "uuid": "f50006b2-763a-41e2-b1ed-ecc6a5231b26", - "start": { - "$date": "2021-01-08T00:34:21.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d119dfe-903c-42e1-8a33-ae039f9cbb0d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T00:34:22.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:28.000Z" - }, - "events": [ - { - "uuid": "355c71d2-abff-4e6e-980d-37b5149bcc78", - "start": { - "$date": "2021-01-08T00:34:22.000Z" - }, - "end": { - "$date": "2021-01-08T01:01:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c23c2e9c-b61f-4e9d-b3be-e8db2de6816a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T01:06:49.000Z" - }, - "end": { - "$date": "2021-01-08T01:22:13.000Z" - }, - "events": [ - { - "uuid": "d0a7afb4-555a-40f8-bb14-0cb18dbb7c61", - "start": { - "$date": "2021-01-08T01:06:49.000Z" - }, - "end": { - "$date": "2021-01-08T01:22:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecb00b29-54da-4c80-a781-444e0c7e09bf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-08T01:07:42.000Z" - }, - "end": { - "$date": "2021-01-08T01:22:07.000Z" - }, - "events": [ - { - "uuid": "f3b70eaa-8523-4f5e-92c4-77180a71d6ac", - "start": { - "$date": "2021-01-08T01:07:42.000Z" - }, - "end": { - "$date": "2021-01-08T01:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "359846c4-d7c4-472b-85af-c21e114f5b6d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-08T01:12:56.000Z" - }, - "end": { - "$date": "2021-01-08T01:31:43.000Z" - }, - "events": [ - { - "uuid": "4d4e6386-0699-4f3b-be38-1a38c53856b9", - "start": { - "$date": "2021-01-08T01:12:56.000Z" - }, - "end": { - "$date": "2021-01-08T01:31:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1a62fde1-e608-46a0-9023-cf2a223c983d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-08T01:24:58.000Z" - }, - "end": { - "$date": "2021-01-08T02:27:39.000Z" - }, - "events": [ - { - "uuid": "01f664b2-8f43-4fc2-ad49-de7ab027301a", - "start": { - "$date": "2021-01-08T01:24:58.000Z" - }, - "end": { - "$date": "2021-01-08T02:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2844b3fc-4923-4342-b782-43da790de7f3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-08T01:44:25.000Z" - }, - "end": { - "$date": "2021-01-08T01:53:34.000Z" - }, - "events": [ - { - "uuid": "b51a0578-c24b-4c2a-85ce-fc647baccfc2", - "start": { - "$date": "2021-01-08T01:44:25.000Z" - }, - "end": { - "$date": "2021-01-08T01:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da9a2363-aa4b-4013-9ef7-f51e7e58b978", - "uuid": "06414bc0-8300-49d8-966e-d8e48dd6c674", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T01:47:13.000Z" - }, - "end": { - "$date": "2021-01-08T01:50:49.000Z" - }, - "events": [ - { - "uuid": "777dd534-a453-4d06-8c70-643932f71647", - "start": { - "$date": "2021-01-08T01:47:13.000Z" - }, - "end": { - "$date": "2021-01-08T01:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da9a2363-aa4b-4013-9ef7-f51e7e58b978", - "uuid": "86ff00a6-08d3-4a6f-a241-d031ba796381", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T01:51:39.000Z" - }, - "end": { - "$date": "2021-01-08T03:09:54.000Z" - }, - "events": [ - { - "uuid": "69162b70-c4ed-4c03-9c91-7a9425d744b3", - "start": { - "$date": "2021-01-08T01:51:39.000Z" - }, - "end": { - "$date": "2021-01-08T03:09:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "51c14eba-2113-47b8-ae53-8a638b874d04", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-08T01:59:32.000Z" - }, - "end": { - "$date": "2021-01-08T02:13:08.000Z" - }, - "events": [ - { - "uuid": "70da9b0f-2cab-4a92-b239-b4b04665f794", - "start": { - "$date": "2021-01-08T01:59:32.000Z" - }, - "end": { - "$date": "2021-01-08T02:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09dae26c-50f6-47f4-92ad-e24a6974e819", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-08T02:31:19.000Z" - }, - "end": { - "$date": "2021-01-08T03:37:50.000Z" - }, - "events": [ - { - "uuid": "33cf311b-8500-44fa-bc96-d00683b7f6fd", - "start": { - "$date": "2021-01-08T02:31:19.000Z" - }, - "end": { - "$date": "2021-01-08T03:37:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fd76c6c8-e423-4524-b869-cc4a8d8efa6b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-08T03:14:03.000Z" - }, - "end": { - "$date": "2021-01-08T03:40:38.000Z" - }, - "events": [ - { - "uuid": "198d8fb0-7370-4193-b360-06a4218e579c", - "start": { - "$date": "2021-01-08T03:14:03.000Z" - }, - "end": { - "$date": "2021-01-08T03:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e853a453-d463-4ba6-84e3-36c61c9085f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T03:15:55.000Z" - }, - "end": { - "$date": "2021-01-08T03:26:06.000Z" - }, - "events": [ - { - "uuid": "08539349-fa97-4ed4-a92f-a0a64293f899", - "start": { - "$date": "2021-01-08T03:15:55.000Z" - }, - "end": { - "$date": "2021-01-08T03:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1566ba31-f886-4958-88a7-79e94b35f645", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-08T03:40:52.000Z" - }, - "end": { - "$date": "2021-01-08T06:38:51.000Z" - }, - "events": [ - { - "uuid": "48814364-d147-4f53-bc3e-3284ddf8d222", - "start": { - "$date": "2021-01-08T03:40:52.000Z" - }, - "end": { - "$date": "2021-01-08T06:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c9b82198-493d-4e48-9c84-76819225a69c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-08T03:43:39.000Z" - }, - "end": { - "$date": "2021-01-08T06:41:22.000Z" - }, - "events": [ - { - "uuid": "7ba11917-7f90-4cfc-8f93-d7b5d2b0c80f", - "start": { - "$date": "2021-01-08T03:43:39.000Z" - }, - "end": { - "$date": "2021-01-08T06:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1e851e45-9fcc-4246-9e7b-93e737207a2f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-08T03:45:26.000Z" - }, - "end": { - "$date": "2021-01-08T06:49:13.000Z" - }, - "events": [ - { - "uuid": "4e6a9ddb-bea4-4677-90f2-15a9aca3833f", - "start": { - "$date": "2021-01-08T03:45:26.000Z" - }, - "end": { - "$date": "2021-01-08T06:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d539d578-ba97-40cf-bae4-061cffd15740", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-08T03:56:51.000Z" - }, - "end": { - "$date": "2021-01-08T04:00:53.000Z" - }, - "events": [ - { - "uuid": "dcbf5d2e-67ff-4be7-b810-56d95438f234", - "start": { - "$date": "2021-01-08T03:56:51.000Z" - }, - "end": { - "$date": "2021-01-08T04:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8958f3e0-a545-49b1-b28d-3374c5df3375", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T04:16:17.000Z" - }, - "end": { - "$date": "2021-01-08T04:51:47.000Z" - }, - "events": [ - { - "uuid": "75abf30b-745e-422f-a99e-e3d4a9e9c85f", - "start": { - "$date": "2021-01-08T04:16:17.000Z" - }, - "end": { - "$date": "2021-01-08T04:51:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "08da480e-f1a6-4cdf-9b38-5135d3804a9e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-08T04:41:21.000Z" - }, - "end": { - "$date": "2021-01-08T05:07:27.000Z" - }, - "events": [ - { - "uuid": "91d1eb8a-98bf-4a72-b7ad-6939115663d5", - "start": { - "$date": "2021-01-08T04:41:21.000Z" - }, - "end": { - "$date": "2021-01-08T05:07:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fa77c322-c420-4698-93ad-39ab1cea3aea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-08T04:43:03.000Z" - }, - "end": { - "$date": "2021-01-08T05:07:54.000Z" - }, - "events": [ - { - "uuid": "7275e3a2-8aa5-4ad6-8724-62f53946b056", - "start": { - "$date": "2021-01-08T04:43:03.000Z" - }, - "end": { - "$date": "2021-01-08T05:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "02bfd1b6-0ca1-4a08-9fb2-b1c44284b506", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T04:50:44.000Z" - }, - "end": { - "$date": "2021-01-08T04:52:54.000Z" - }, - "events": [ - { - "uuid": "96fed550-8350-4b2b-be48-5bf322105e86", - "start": { - "$date": "2021-01-08T04:50:44.000Z" - }, - "end": { - "$date": "2021-01-08T04:52:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8b6d3bdd-8450-4938-979b-cd4e680b5daf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T04:53:38.000Z" - }, - "end": { - "$date": "2021-01-08T06:02:24.000Z" - }, - "events": [ - { - "uuid": "2c76ac76-bb0f-44c0-b748-e7b124a645b7", - "start": { - "$date": "2021-01-08T04:53:38.000Z" - }, - "end": { - "$date": "2021-01-08T06:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "35d60313-7732-4146-a55a-8f045ba07e35", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T04:54:15.000Z" - }, - "end": { - "$date": "2021-01-08T07:16:18.000Z" - }, - "events": [ - { - "uuid": "6fa42d0e-6bc9-4dba-a0a7-9871e101148b", - "start": { - "$date": "2021-01-08T04:54:15.000Z" - }, - "end": { - "$date": "2021-01-08T07:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "4850cfac-f06f-4ed5-9c1c-b8ff06968cfc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-08T05:08:19.000Z" - }, - "end": { - "$date": "2021-01-08T05:51:56.000Z" - }, - "events": [ - { - "uuid": "e8a9a3fd-879c-41f7-b75f-3d30e33c4dbe", - "start": { - "$date": "2021-01-08T05:08:19.000Z" - }, - "end": { - "$date": "2021-01-08T05:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "e2eac9c5-7cf3-4964-85c8-9395d2d30f8d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-08T05:08:27.000Z" - }, - "end": { - "$date": "2021-01-08T06:55:35.000Z" - }, - "events": [ - { - "uuid": "cad620e9-dbf0-4298-a61f-3c62fbb1b8ec", - "start": { - "$date": "2021-01-08T05:08:27.000Z" - }, - "end": { - "$date": "2021-01-08T06:15:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9fa1c97c-f845-4788-8916-f2b82c879eb3", - "start": { - "$date": "2021-01-08T06:15:27.000Z" - }, - "end": { - "$date": "2021-01-08T06:19:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5bb8245a-5949-4466-b657-577a06d7cacc", - "start": { - "$date": "2021-01-08T06:19:27.000Z" - }, - "end": { - "$date": "2021-01-08T06:30:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0e4fa37-7d46-4b95-bc7d-c3debfc7a979", - "start": { - "$date": "2021-01-08T06:30:27.000Z" - }, - "end": { - "$date": "2021-01-08T06:55:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c42592b-64f2-4f34-b2fb-bccdc80bc0c7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T05:43:39.000Z" - }, - "end": { - "$date": "2021-01-08T05:46:28.000Z" - }, - "events": [ - { - "uuid": "c5279f8d-4814-4351-9f5e-8a4f6b487246", - "start": { - "$date": "2021-01-08T05:43:39.000Z" - }, - "end": { - "$date": "2021-01-08T05:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "04686a8c-7a01-4ce5-9578-5ae5aebf5c09", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T05:52:40.000Z" - }, - "end": { - "$date": "2021-01-08T06:38:30.000Z" - }, - "events": [ - { - "uuid": "e5c506fe-681b-4132-ac38-d192659c3df2", - "start": { - "$date": "2021-01-08T05:52:40.000Z" - }, - "end": { - "$date": "2021-01-08T06:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9fca29a2-df7a-4197-80a2-010ac0919573", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-08T06:53:09.000Z" - }, - "end": { - "$date": "2021-01-08T09:07:19.000Z" - }, - "events": [ - { - "uuid": "5e32aa54-340a-442d-8b62-85c775fca179", - "start": { - "$date": "2021-01-08T06:53:09.000Z" - }, - "end": { - "$date": "2021-01-08T09:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0e4f1148-5d10-4d06-a61d-7a3f8a0482aa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-08T06:58:12.000Z" - }, - "end": { - "$date": "2021-01-08T09:07:18.000Z" - }, - "events": [ - { - "uuid": "640bccbb-514d-48c9-937a-f8628987106f", - "start": { - "$date": "2021-01-08T06:58:12.000Z" - }, - "end": { - "$date": "2021-01-08T09:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "dd1f541b-cd01-49a1-8fee-4e48ac5c8bf7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-08T07:13:37.000Z" - }, - "end": { - "$date": "2021-01-08T08:11:48.000Z" - }, - "events": [ - { - "uuid": "bc345d93-08f9-46bc-8023-bb377e275559", - "start": { - "$date": "2021-01-08T07:13:37.000Z" - }, - "end": { - "$date": "2021-01-08T08:11:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a6e3de11-e117-48a3-903c-fcf3b7d79f4d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-08T15:48:15.000Z" - }, - "end": { - "$date": "2021-01-08T17:21:11.000Z" - }, - "events": [ - { - "uuid": "eb156eda-3159-4bc0-ba6c-25727a436eec", - "start": { - "$date": "2021-01-08T15:48:15.000Z" - }, - "end": { - "$date": "2021-01-08T17:21:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3f588e12-1f25-441d-8c69-666d81dd68d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-08T15:56:17.000Z" - }, - "end": { - "$date": "2021-01-08T16:17:18.000Z" - }, - "events": [ - { - "uuid": "07fd3968-3aad-4494-8a24-5de25feb3f3d", - "start": { - "$date": "2021-01-08T15:56:17.000Z" - }, - "end": { - "$date": "2021-01-08T16:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2c004f57-1d32-48d1-b894-dc5bf7a5a669", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-08T16:46:33.000Z" - }, - "end": { - "$date": "2021-01-08T23:15:38.000Z" - }, - "events": [ - { - "uuid": "b58c4ede-e6bb-4a47-ac6d-36c05257a38a", - "start": { - "$date": "2021-01-08T16:46:33.000Z" - }, - "end": { - "$date": "2021-01-08T19:19:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "782bc27c-e881-4c88-aa14-8652f4665412", - "start": { - "$date": "2021-01-08T19:19:33.000Z" - }, - "end": { - "$date": "2021-01-08T19:45:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "110f1f65-0a59-466a-8a12-0d9ed27b354e", - "start": { - "$date": "2021-01-08T19:45:33.000Z" - }, - "end": { - "$date": "2021-01-08T23:15:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1d1fc235-8f19-4375-8df5-a9371a589dbd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T16:51:17.000Z" - }, - "end": { - "$date": "2021-01-08T16:57:22.000Z" - }, - "events": [ - { - "uuid": "680cfd4f-9263-48ef-baf3-e6b1fd9cbd93", - "start": { - "$date": "2021-01-08T16:51:17.000Z" - }, - "end": { - "$date": "2021-01-08T16:57:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "da85dd63-9571-462c-8a30-29f02d915597", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T17:26:48.000Z" - }, - "end": { - "$date": "2021-01-08T19:14:20.000Z" - }, - "events": [ - { - "uuid": "bc57327c-7449-464d-bb6c-b30ccda43058", - "start": { - "$date": "2021-01-08T17:26:48.000Z" - }, - "end": { - "$date": "2021-01-08T19:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "be1912d1-39c8-4310-b005-ddf1dd2f4854", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-08T18:15:10.000Z" - }, - "end": { - "$date": "2021-01-08T18:22:02.000Z" - }, - "events": [ - { - "uuid": "61b3d4b8-7b28-49f2-acd7-d49aedd32941", - "start": { - "$date": "2021-01-08T18:15:10.000Z" - }, - "end": { - "$date": "2021-01-08T18:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d8cdc5f0-243a-446b-91b0-1d9ebf6cfc53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T19:19:03.000Z" - }, - "end": { - "$date": "2021-01-08T21:07:31.000Z" - }, - "events": [ - { - "uuid": "364ce4d8-87b4-4f44-9533-456ac94b75c1", - "start": { - "$date": "2021-01-08T19:19:03.000Z" - }, - "end": { - "$date": "2021-01-08T20:51:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45e95b4d-d6f2-4f83-8478-865d7f8bad94", - "start": { - "$date": "2021-01-08T20:51:03.000Z" - }, - "end": { - "$date": "2021-01-08T21:07:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f0f50e53-dc38-494b-9aee-a6bb31674667", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T19:31:06.000Z" - }, - "end": { - "$date": "2021-01-08T19:49:17.000Z" - }, - "events": [ - { - "uuid": "9764a141-b972-463d-afff-ca0df4e46a02", - "start": { - "$date": "2021-01-08T19:31:06.000Z" - }, - "end": { - "$date": "2021-01-08T19:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a525d00e-4aa4-48c6-9499-9e94d91a73a8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-08T19:36:59.000Z" - }, - "end": { - "$date": "2021-01-08T22:15:10.000Z" - }, - "events": [ - { - "uuid": "7c70f45d-8e91-48a1-bafc-3a5af87571d9", - "start": { - "$date": "2021-01-08T19:36:59.000Z" - }, - "end": { - "$date": "2021-01-08T22:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "11ef3022-7888-4306-a8af-fcb29a6b4b5e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-08T20:23:00.000Z" - }, - "end": { - "$date": "2021-01-09T00:48:52.000Z" - }, - "events": [ - { - "uuid": "353e38ec-c37b-46e6-8a85-bc0f63d49231", - "start": { - "$date": "2021-01-08T20:23:00.000Z" - }, - "end": { - "$date": "2021-01-08T22:21:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c5ae645-2cb2-4f1b-9972-6de08f41ab47", - "start": { - "$date": "2021-01-08T22:21:00.000Z" - }, - "end": { - "$date": "2021-01-08T22:22:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2cbd32cb-3d56-405c-b2f4-e7aa157b0ca0", - "start": { - "$date": "2021-01-08T22:22:00.000Z" - }, - "end": { - "$date": "2021-01-08T22:24:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7537b5ee-f854-4f2d-9698-a0692cc8097a", - "start": { - "$date": "2021-01-08T22:24:00.000Z" - }, - "end": { - "$date": "2021-01-08T22:37:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d7ce98a-2c86-4ea5-bc4e-5e0225b6dd5b", - "start": { - "$date": "2021-01-08T22:37:00.000Z" - }, - "end": { - "$date": "2021-01-09T00:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "74813c14-c070-48e7-81ea-9c27b7a94e55", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-08T21:13:06.000Z" - }, - "end": { - "$date": "2021-01-08T21:42:09.000Z" - }, - "events": [ - { - "uuid": "e8bf5afc-f989-4927-a54a-9bc451357e07", - "start": { - "$date": "2021-01-08T21:13:06.000Z" - }, - "end": { - "$date": "2021-01-08T21:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "76f4332b-b671-4fa0-a96d-1a48a3f20568", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T21:36:23.000Z" - }, - "end": { - "$date": "2021-01-08T22:34:19.000Z" - }, - "events": [ - { - "uuid": "2c0910bb-c8b3-4460-9b70-d4a07a3f01f7", - "start": { - "$date": "2021-01-08T21:36:23.000Z" - }, - "end": { - "$date": "2021-01-08T22:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3a3df9d8-9b41-4a35-9604-68b0e37f2785", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-08T21:55:37.000Z" - }, - "end": { - "$date": "2021-01-08T22:00:33.000Z" - }, - "events": [ - { - "uuid": "a39098b9-90b3-4891-a674-b3ddc046f31d", - "start": { - "$date": "2021-01-08T21:55:37.000Z" - }, - "end": { - "$date": "2021-01-08T22:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3c061a3a-8584-405c-ab7f-fac5a6d86f5c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-08T22:32:16.000Z" - }, - "end": { - "$date": "2021-01-09T00:48:44.000Z" - }, - "events": [ - { - "uuid": "88192e89-9e55-433b-aa24-b952cc7dedc0", - "start": { - "$date": "2021-01-08T22:32:16.000Z" - }, - "end": { - "$date": "2021-01-09T00:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2811e03b-f059-4258-ba4e-4355d8483217", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T00:14:17.000Z" - }, - "end": { - "$date": "2021-01-09T00:34:34.000Z" - }, - "events": [ - { - "uuid": "dddbfff2-6ce2-4ba2-82c2-f2c62af4deff", - "start": { - "$date": "2021-01-09T00:14:17.000Z" - }, - "end": { - "$date": "2021-01-09T00:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "ed14b15f-b6c7-430f-aef4-680125b3a4e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-08T23:12:21.000Z" - }, - "end": { - "$date": "2021-01-09T00:14:57.000Z" - }, - "events": [ - { - "uuid": "68816854-7e52-4eeb-9841-1e8528ce8914", - "start": { - "$date": "2021-01-08T23:12:21.000Z" - }, - "end": { - "$date": "2021-01-09T00:14:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "3d375ea2-5cfe-4afd-99cc-38bbf65f8219", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-08T23:13:35.000Z" - }, - "end": { - "$date": "2021-01-09T01:24:54.000Z" - }, - "events": [ - { - "uuid": "82ada09b-89e9-4cd3-a4b4-1f1409ca37b0", - "start": { - "$date": "2021-01-08T23:13:35.000Z" - }, - "end": { - "$date": "2021-01-09T01:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "787d29b6-0fab-45ca-b5a6-b478ef1b4c66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T02:11:07.000Z" - }, - "end": { - "$date": "2021-01-09T02:11:07.000Z" - }, - "events": [ - { - "uuid": "1a7377ec-f7f3-4a99-bbd4-2c0a5719c7d4", - "start": { - "$date": "2021-01-09T02:11:07.000Z" - }, - "end": { - "$date": "2021-01-09T02:52:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc25df14-4e52-48c9-98e2-82192ebe33b7", - "start": { - "$date": "2021-01-09T02:52:07.000Z" - }, - "end": { - "$date": "2021-01-09T03:08:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0740bcbb-89ed-4aca-a85f-1dfb95028d00", - "start": { - "$date": "2021-01-09T03:08:07.000Z" - }, - "end": { - "$date": "2021-01-09T02:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f4070d57-d84b-40f5-851a-3a687b003c84", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T04:16:10.000Z" - }, - "end": { - "$date": "2021-01-09T05:24:18.000Z" - }, - "events": [ - { - "uuid": "7290cb4d-773d-49db-93e1-ed4294b0eced", - "start": { - "$date": "2021-01-09T04:16:10.000Z" - }, - "end": { - "$date": "2021-01-09T04:59:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1dbe4853-89f5-4188-a845-e0b4c2122bda", - "start": { - "$date": "2021-01-09T04:59:10.000Z" - }, - "end": { - "$date": "2021-01-09T05:25:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9dbbbd73-fa60-4b2a-836b-bbc918b62c5d", - "start": { - "$date": "2021-01-09T05:25:10.000Z" - }, - "end": { - "$date": "2021-01-09T05:42:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "38732b63-ba43-4c60-a070-5ce5b38b5cb5", - "start": { - "$date": "2021-01-09T05:42:10.000Z" - }, - "end": { - "$date": "2021-01-09T05:44:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dbb9455f-0ef6-445a-aa6a-b09016506522", - "start": { - "$date": "2021-01-09T05:44:10.000Z" - }, - "end": { - "$date": "2021-01-09T06:43:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1fd1510c-2e2a-4338-bb98-b7c5e8944f7f", - "start": { - "$date": "2021-01-09T06:43:10.000Z" - }, - "end": { - "$date": "2021-01-09T06:52:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7ef5a084-07b2-4d59-b62a-58b4a46a6097", - "start": { - "$date": "2021-01-09T06:52:10.000Z" - }, - "end": { - "$date": "2021-01-09T05:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8e3b4f14-800a-4b71-b24f-1210d39a318a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T00:15:32.000Z" - }, - "end": { - "$date": "2021-01-09T01:08:09.000Z" - }, - "events": [ - { - "uuid": "46953f8f-31ae-4b81-9a91-2f2a71664c41", - "start": { - "$date": "2021-01-09T00:15:32.000Z" - }, - "end": { - "$date": "2021-01-09T01:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "389e4b04-ee6b-4d86-a271-a3ca3af86eae", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-09T00:32:51.000Z" - }, - "end": { - "$date": "2021-01-09T00:57:02.000Z" - }, - "events": [ - { - "uuid": "f647ff13-c712-4b63-a404-ec6c3203a4a2", - "start": { - "$date": "2021-01-09T00:32:51.000Z" - }, - "end": { - "$date": "2021-01-09T00:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4db608c2-1c28-4c4d-8f30-6720b8281684", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T00:48:00.000Z" - }, - "end": { - "$date": "2021-01-09T03:23:20.000Z" - }, - "events": [ - { - "uuid": "9248b975-ce87-499e-ba04-fd62a90e056c", - "start": { - "$date": "2021-01-09T00:48:00.000Z" - }, - "end": { - "$date": "2021-01-09T03:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2c9968a2-def2-46b7-814e-0f43f004e761", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-09T01:19:17.000Z" - }, - "end": { - "$date": "2021-01-09T02:24:52.000Z" - }, - "events": [ - { - "uuid": "6e4cba0f-1f34-4c43-981a-078c7d5f790f", - "start": { - "$date": "2021-01-09T01:19:17.000Z" - }, - "end": { - "$date": "2021-01-09T02:24:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "96945c71-bb5f-4311-98ef-0df69e836df3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-09T01:25:36.000Z" - }, - "end": { - "$date": "2021-01-09T01:56:30.000Z" - }, - "events": [ - { - "uuid": "2b9317d5-1ba5-46cd-9179-11a2ca7cf83a", - "start": { - "$date": "2021-01-09T01:25:36.000Z" - }, - "end": { - "$date": "2021-01-09T01:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9a855d57-f66a-4618-bba3-9024e61894fd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-09T01:37:58.000Z" - }, - "end": { - "$date": "2021-01-09T03:05:30.000Z" - }, - "events": [ - { - "uuid": "830e317b-4478-4241-8712-ee7f7d2a7258", - "start": { - "$date": "2021-01-09T01:37:58.000Z" - }, - "end": { - "$date": "2021-01-09T03:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8efc4c83-918e-49bf-8fa9-a016db8f3426", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T04:17:13.000Z" - }, - "end": { - "$date": "2021-01-09T04:17:19.000Z" - }, - "events": [ - { - "uuid": "db406c05-5ed7-468b-847e-a89f50ec7d4c", - "start": { - "$date": "2021-01-09T04:17:13.000Z" - }, - "end": { - "$date": "2021-01-09T04:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e5947a8e-8a47-4ead-9f38-1b0dfe1c8b4e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-09T02:36:39.000Z" - }, - "end": { - "$date": "2021-01-09T03:46:06.000Z" - }, - "events": [ - { - "uuid": "f6e7283f-dc5a-485c-9a2c-69681aa1af09", - "start": { - "$date": "2021-01-09T02:36:39.000Z" - }, - "end": { - "$date": "2021-01-09T03:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1df18d20-43bd-4bec-98b3-727a47097b40", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-09T03:50:51.000Z" - }, - "end": { - "$date": "2021-01-09T07:11:15.000Z" - }, - "events": [ - { - "uuid": "60ac44d9-3d0c-4a36-a75f-608bfb391bb1", - "start": { - "$date": "2021-01-09T03:50:51.000Z" - }, - "end": { - "$date": "2021-01-09T07:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8d4f1f0b-7605-4dc0-9807-813933cc3d2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T03:55:29.000Z" - }, - "end": { - "$date": "2021-01-09T05:00:34.000Z" - }, - "events": [ - { - "uuid": "ea2205d0-911c-46a2-9b6f-bf4374dea605", - "start": { - "$date": "2021-01-09T03:55:29.000Z" - }, - "end": { - "$date": "2021-01-09T05:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87427085-84c4-4799-96d9-594c64a2e70a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-09T03:58:26.000Z" - }, - "end": { - "$date": "2021-01-09T07:18:03.000Z" - }, - "events": [ - { - "uuid": "e9a1de4f-58f5-4415-8a25-a301f3faf82b", - "start": { - "$date": "2021-01-09T03:58:26.000Z" - }, - "end": { - "$date": "2021-01-09T07:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d2649a3e-fb85-4c3b-8657-01536de5fad0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-09T03:58:40.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:36.000Z" - }, - "events": [ - { - "uuid": "007abab3-9568-4701-aff1-28ef36d21416", - "start": { - "$date": "2021-01-09T03:58:40.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1342fa2a-a26f-41f7-b311-4ba913d14148", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T03:59:05.000Z" - }, - "end": { - "$date": "2021-01-09T06:49:14.000Z" - }, - "events": [ - { - "uuid": "ec197504-3548-430d-8ccb-50c5175d4110", - "start": { - "$date": "2021-01-09T03:59:05.000Z" - }, - "end": { - "$date": "2021-01-09T06:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "11b3b20e-8d37-4b8c-bcda-47488e0f985c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-09T04:13:10.000Z" - }, - "end": { - "$date": "2021-01-09T07:11:14.000Z" - }, - "events": [ - { - "uuid": "b27ed131-0b4e-4f07-bc3c-1a06a09df0b6", - "start": { - "$date": "2021-01-09T04:13:10.000Z" - }, - "end": { - "$date": "2021-01-09T07:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "208d4b6e-2d0d-4242-8deb-7bb2c46fe47e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T04:59:34.000Z" - }, - "end": { - "$date": "2021-01-09T05:07:30.000Z" - }, - "events": [ - { - "uuid": "a1b60f03-232d-4abe-92a3-5e9608f098c4", - "start": { - "$date": "2021-01-09T04:59:34.000Z" - }, - "end": { - "$date": "2021-01-09T05:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68fa4e4d-76b3-4fad-b5e3-7a26f1c5a454", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T04:55:58.000Z" - }, - "end": { - "$date": "2021-01-09T06:29:19.000Z" - }, - "events": [ - { - "uuid": "114473af-22ea-440f-9952-3ad32ecab28a", - "start": { - "$date": "2021-01-09T04:55:58.000Z" - }, - "end": { - "$date": "2021-01-09T06:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d4e05e36-575b-4478-8f55-35e68b481d97", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T05:02:57.000Z" - }, - "end": { - "$date": "2021-01-09T06:06:53.000Z" - }, - "events": [ - { - "uuid": "b7baface-6271-467e-aeaf-f35a963182a9", - "start": { - "$date": "2021-01-09T05:02:57.000Z" - }, - "end": { - "$date": "2021-01-09T06:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "a233c1c4-66a5-4d1a-86eb-3f08bde1c2e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T05:08:50.000Z" - }, - "end": { - "$date": "2021-01-09T05:56:01.000Z" - }, - "events": [ - { - "uuid": "dc0d6e42-44c3-4404-b463-533f30a02c09", - "start": { - "$date": "2021-01-09T05:08:50.000Z" - }, - "end": { - "$date": "2021-01-09T05:56:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "6cb52beb-7f47-4b3d-bc20-e59b29e54dfb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T05:24:33.000Z" - }, - "end": { - "$date": "2021-01-09T05:56:06.000Z" - }, - "events": [ - { - "uuid": "6d99a6a3-d3c5-4cb4-9947-f8e14d4bb508", - "start": { - "$date": "2021-01-09T05:24:33.000Z" - }, - "end": { - "$date": "2021-01-09T05:56:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "fc3969e8-c4c1-45e4-b4b3-1fd888f3fe5a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T05:56:31.000Z" - }, - "end": { - "$date": "2021-01-09T06:00:56.000Z" - }, - "events": [ - { - "uuid": "cbf71920-0309-4dd5-a7ce-9ae0e6bf4e4d", - "start": { - "$date": "2021-01-09T05:56:31.000Z" - }, - "end": { - "$date": "2021-01-09T06:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "2a343157-e76b-4e7b-bf99-f8ad742ce48f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T05:57:27.000Z" - }, - "end": { - "$date": "2021-01-09T06:03:03.000Z" - }, - "events": [ - { - "uuid": "364e5d13-c5e2-4b9b-b4d2-7bcefc6da6fb", - "start": { - "$date": "2021-01-09T05:57:27.000Z" - }, - "end": { - "$date": "2021-01-09T06:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "4efe800f-05be-422f-a5a8-ff61d198ad03", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T06:01:11.000Z" - }, - "end": { - "$date": "2021-01-09T06:41:33.000Z" - }, - "events": [ - { - "uuid": "0fd47efd-d9ae-4710-9d9e-66d32a1384da", - "start": { - "$date": "2021-01-09T06:01:11.000Z" - }, - "end": { - "$date": "2021-01-09T06:41:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "09e85d62-fd7a-46db-ab07-f8f9c737972d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T06:41:13.000Z" - }, - "end": { - "$date": "2021-01-09T09:22:07.000Z" - }, - "events": [ - { - "uuid": "fb01266f-38dc-4827-bd71-db1091eac30a", - "start": { - "$date": "2021-01-09T06:41:13.000Z" - }, - "end": { - "$date": "2021-01-09T09:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0a5ea6c3-8d74-4e7a-9507-0b6005229996", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T06:30:19.000Z" - }, - "end": { - "$date": "2021-01-09T06:46:16.000Z" - }, - "events": [ - { - "uuid": "dfb664a8-86ef-4487-bd9f-3dbd99884af3", - "start": { - "$date": "2021-01-09T06:30:19.000Z" - }, - "end": { - "$date": "2021-01-09T06:46:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "95083ea1-f639-4c90-a753-5a8780786637", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T06:43:48.000Z" - }, - "end": { - "$date": "2021-01-09T09:12:24.000Z" - }, - "events": [ - { - "uuid": "ff4ca487-4f66-401f-80be-e6f088be262b", - "start": { - "$date": "2021-01-09T06:43:48.000Z" - }, - "end": { - "$date": "2021-01-09T09:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9afcb8e7-780c-43c1-839d-4ad921d8095e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T06:46:21.000Z" - }, - "end": { - "$date": "2021-01-09T08:36:44.000Z" - }, - "events": [ - { - "uuid": "b47c6275-9bf1-424c-99f8-51932f672b23", - "start": { - "$date": "2021-01-09T06:46:21.000Z" - }, - "end": { - "$date": "2021-01-09T08:36:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "799d3981-b932-4204-9c3b-2765dd565696", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T07:11:24.000Z" - }, - "end": { - "$date": "2021-01-09T07:41:02.000Z" - }, - "events": [ - { - "uuid": "71a6182d-a009-4418-abfd-a8225620f3bf", - "start": { - "$date": "2021-01-09T07:11:24.000Z" - }, - "end": { - "$date": "2021-01-09T07:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2db0dba3-5a1e-492f-b315-f7bc2dad3049", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-09T07:18:57.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:02.000Z" - }, - "events": [ - { - "uuid": "3fc77cf1-ae16-4a45-8520-70e176962f55", - "start": { - "$date": "2021-01-09T07:18:57.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d37ab0d4-dc66-4fea-9766-63eb252e63f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T07:48:51.000Z" - }, - "end": { - "$date": "2021-01-09T08:08:01.000Z" - }, - "events": [ - { - "uuid": "ee262648-b825-4e70-ab32-a4a70f94a6ef", - "start": { - "$date": "2021-01-09T07:48:51.000Z" - }, - "end": { - "$date": "2021-01-09T08:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fbcfaa6-2f39-4063-b546-c0944e968dc6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T08:17:49.000Z" - }, - "end": { - "$date": "2021-01-09T08:54:07.000Z" - }, - "events": [ - { - "uuid": "4fdf91bd-3d2d-4344-b321-e9a48dbecfef", - "start": { - "$date": "2021-01-09T08:17:49.000Z" - }, - "end": { - "$date": "2021-01-09T08:54:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "4af4ec79-3e3f-4180-b1e0-9e6ffc70a237", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T08:44:39.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:41.000Z" - }, - "events": [ - { - "uuid": "04441d1c-40d0-4df8-bf7a-c22c258c7bd5", - "start": { - "$date": "2021-01-09T08:44:39.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2cf5aef4-e793-4c97-a9a7-49d498b9348c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T08:59:25.000Z" - }, - "end": { - "$date": "2021-01-09T09:01:19.000Z" - }, - "events": [ - { - "uuid": "eb78cd20-1a40-40ab-ab77-c5c31446d2a9", - "start": { - "$date": "2021-01-09T08:59:25.000Z" - }, - "end": { - "$date": "2021-01-09T09:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "26d66bc0-a8e2-4beb-9f92-e3054e24e034", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-09T09:08:32.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:49.000Z" - }, - "events": [ - { - "uuid": "f5df8790-9254-4a2a-b470-72fc7e3beabc", - "start": { - "$date": "2021-01-09T09:08:32.000Z" - }, - "end": { - "$date": "2021-01-09T10:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "341e2bea-62b2-400f-a038-6654c67d750d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T10:07:26.000Z" - }, - "end": { - "$date": "2021-01-09T12:49:34.000Z" - }, - "events": [ - { - "uuid": "2125cf14-f808-43a1-9086-95af229873bd", - "start": { - "$date": "2021-01-09T10:07:26.000Z" - }, - "end": { - "$date": "2021-01-09T12:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e68ff3df-651c-4ae0-b93c-c46c69760869", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T16:20:22.000Z" - }, - "end": { - "$date": "2021-01-09T17:38:00.000Z" - }, - "events": [ - { - "uuid": "8123875d-2f40-4990-9ebb-c5c9a43d3e06", - "start": { - "$date": "2021-01-09T16:20:22.000Z" - }, - "end": { - "$date": "2021-01-09T17:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "5bbe470f-3e19-409d-bc3f-81a7c4e5e608", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T16:50:31.000Z" - }, - "end": { - "$date": "2021-01-09T17:50:12.000Z" - }, - "events": [ - { - "uuid": "166559a0-08c7-48fb-a125-34fbffeb093d", - "start": { - "$date": "2021-01-09T16:50:31.000Z" - }, - "end": { - "$date": "2021-01-09T17:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a4684a07-13cb-4099-a021-aabf56af6071", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T17:38:02.000Z" - }, - "end": { - "$date": "2021-01-09T18:16:03.000Z" - }, - "events": [ - { - "uuid": "79384df0-e0d0-4bd4-b362-7072d46e409c", - "start": { - "$date": "2021-01-09T17:38:02.000Z" - }, - "end": { - "$date": "2021-01-09T18:16:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "3aeb984e-4b74-4904-b97f-4af316c50140", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T17:50:28.000Z" - }, - "end": { - "$date": "2021-01-09T17:58:27.000Z" - }, - "events": [ - { - "uuid": "64b00711-2b0f-4551-ae46-2fafb5bab86b", - "start": { - "$date": "2021-01-09T17:50:28.000Z" - }, - "end": { - "$date": "2021-01-09T17:58:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f7b5740-f663-4146-a52d-f27a203fd5ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T18:08:44.000Z" - }, - "end": { - "$date": "2021-01-09T18:21:58.000Z" - }, - "events": [ - { - "uuid": "26f62ddc-4275-456b-899c-4c6286bda6bb", - "start": { - "$date": "2021-01-09T18:08:44.000Z" - }, - "end": { - "$date": "2021-01-09T18:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "d81c6b83-7b7b-479b-813a-a2ad39cbc83a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T18:17:57.000Z" - }, - "end": { - "$date": "2021-01-09T18:39:38.000Z" - }, - "events": [ - { - "uuid": "263db14c-67d3-43e9-a6f3-ebb075de97a9", - "start": { - "$date": "2021-01-09T18:17:57.000Z" - }, - "end": { - "$date": "2021-01-09T18:39:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aa54e028-cfa1-4cb4-955a-77ec0e0a99b0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-09T19:29:08.000Z" - }, - "end": { - "$date": "2021-01-09T19:29:24.000Z" - }, - "events": [ - { - "uuid": "99416828-eebb-4061-90cc-358161f50b7d", - "start": { - "$date": "2021-01-09T19:29:08.000Z" - }, - "end": { - "$date": "2021-01-09T19:29:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15b0c3ce-cb25-45ec-8a7b-589807675c76", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T18:42:08.000Z" - }, - "end": { - "$date": "2021-01-09T19:34:58.000Z" - }, - "events": [ - { - "uuid": "1fa81eaa-011f-43a3-97c2-804d41130bd1", - "start": { - "$date": "2021-01-09T18:42:08.000Z" - }, - "end": { - "$date": "2021-01-09T19:11:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5bd1e815-3ab7-4fef-8682-557b53810189", - "start": { - "$date": "2021-01-09T19:11:08.000Z" - }, - "end": { - "$date": "2021-01-09T19:32:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e29c75b-0799-4416-9209-a76aa878a025", - "start": { - "$date": "2021-01-09T19:32:08.000Z" - }, - "end": { - "$date": "2021-01-09T19:34:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f3bfc347-da93-41a2-84af-39839191572c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-09T19:07:20.000Z" - }, - "end": { - "$date": "2021-01-09T19:24:44.000Z" - }, - "events": [ - { - "uuid": "8644a119-6161-490d-8419-07368e50678b", - "start": { - "$date": "2021-01-09T19:07:20.000Z" - }, - "end": { - "$date": "2021-01-09T19:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "06954e43-42b9-4ed4-816e-7e25d59ac6b3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-09T23:49:37.000Z" - }, - "end": { - "$date": "2021-01-10T00:03:12.000Z" - }, - "events": [ - { - "uuid": "f9ab1362-f862-44db-b2b4-93fd1d225732", - "start": { - "$date": "2021-01-09T23:49:37.000Z" - }, - "end": { - "$date": "2021-01-10T01:45:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4df4eb38-ebe1-4773-9955-41c8cc3e0e25", - "start": { - "$date": "2021-01-10T01:45:37.000Z" - }, - "end": { - "$date": "2021-01-10T01:50:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0b0d942d-b2ac-413f-90e7-7d88981aea6a", - "start": { - "$date": "2021-01-10T01:50:37.000Z" - }, - "end": { - "$date": "2021-01-10T02:00:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b577d6b8-ab25-43da-8267-3b99ed2f960b", - "start": { - "$date": "2021-01-10T02:00:37.000Z" - }, - "end": { - "$date": "2021-01-10T02:06:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e21aff56-62f5-436d-8e8a-b8287105beae", - "start": { - "$date": "2021-01-10T02:06:37.000Z" - }, - "end": { - "$date": "2021-01-10T02:08:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85b462b7-292f-42f0-adb9-f105a11dd5df", - "start": { - "$date": "2021-01-10T02:08:37.000Z" - }, - "end": { - "$date": "2021-01-10T02:09:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b1a34698-baf9-45f4-9008-fad71c971dd9", - "start": { - "$date": "2021-01-10T02:09:37.000Z" - }, - "end": { - "$date": "2021-01-10T02:22:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1d8dbfe-0e2c-4657-bfb2-458c6c425a3a", - "start": { - "$date": "2021-01-10T02:22:37.000Z" - }, - "end": { - "$date": "2021-01-10T02:38:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "26d5ddd5-006e-464c-8ef5-cf8a48c84c89", - "start": { - "$date": "2021-01-10T02:38:37.000Z" - }, - "end": { - "$date": "2021-01-10T00:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "5bb1c89c-8a8b-4218-9860-03c41eee7eea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T19:36:39.000Z" - }, - "end": { - "$date": "2021-01-09T20:51:00.000Z" - }, - "events": [ - { - "uuid": "5bd0aad0-4bf8-4a3a-91e4-8d624341940c", - "start": { - "$date": "2021-01-09T19:36:39.000Z" - }, - "end": { - "$date": "2021-01-09T20:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0efda044-8824-437b-9be0-6547272700b8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-09T20:08:51.000Z" - }, - "end": { - "$date": "2021-01-09T20:14:37.000Z" - }, - "events": [ - { - "uuid": "1c08a959-2c69-4c88-b5c4-af3d5f86b9f7", - "start": { - "$date": "2021-01-09T20:08:51.000Z" - }, - "end": { - "$date": "2021-01-09T20:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ef356297-4d7a-451b-a392-0639affe9501", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T00:13:42.000Z" - }, - "end": { - "$date": "2021-01-10T00:38:41.000Z" - }, - "events": [ - { - "uuid": "27e20286-35ed-4a8f-9ec6-585f80124426", - "start": { - "$date": "2021-01-10T00:13:42.000Z" - }, - "end": { - "$date": "2021-01-10T03:12:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7aa6d9f2-b9be-414f-8eb3-6f17ce1b6d91", - "start": { - "$date": "2021-01-10T03:12:42.000Z" - }, - "end": { - "$date": "2021-01-10T03:13:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c6096f30-63f9-4d2c-8348-31eaa4a6b874", - "start": { - "$date": "2021-01-10T03:13:42.000Z" - }, - "end": { - "$date": "2021-01-10T00:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "488bcf1a-9f65-4011-9642-922cadaeb5c4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T20:20:13.000Z" - }, - "end": { - "$date": "2021-01-09T22:29:17.000Z" - }, - "events": [ - { - "uuid": "595e2ab4-0417-4fd2-8eaa-5e26a6bce192", - "start": { - "$date": "2021-01-09T20:20:13.000Z" - }, - "end": { - "$date": "2021-01-09T22:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "837e06aa-3012-4c06-b55f-73bbc31ae4d9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-09T20:30:36.000Z" - }, - "end": { - "$date": "2021-01-09T23:57:56.000Z" - }, - "events": [ - { - "uuid": "2c6a32e4-72da-44af-920d-bcf64e32d9b2", - "start": { - "$date": "2021-01-09T20:30:36.000Z" - }, - "end": { - "$date": "2021-01-09T23:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "943b3bf6-4d3a-4881-9516-57e898e607d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T21:00:16.000Z" - }, - "end": { - "$date": "2021-01-09T21:19:55.000Z" - }, - "events": [ - { - "uuid": "3da7e4b7-5b45-4362-b043-29c814792ea6", - "start": { - "$date": "2021-01-09T21:00:16.000Z" - }, - "end": { - "$date": "2021-01-09T21:19:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f9579cc-f802-43b0-9c4f-11b3e904cc40", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T21:40:48.000Z" - }, - "end": { - "$date": "2021-01-09T21:53:22.000Z" - }, - "events": [ - { - "uuid": "84688d68-c7f0-4379-9329-0247ff403861", - "start": { - "$date": "2021-01-09T21:40:48.000Z" - }, - "end": { - "$date": "2021-01-09T21:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6cd9e508-550a-4843-b245-f549fc776900", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-09T21:41:11.000Z" - }, - "end": { - "$date": "2021-01-09T22:43:02.000Z" - }, - "events": [ - { - "uuid": "5d882c6f-94b5-4919-8057-4748026ac8c0", - "start": { - "$date": "2021-01-09T21:41:11.000Z" - }, - "end": { - "$date": "2021-01-09T22:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cba06f06-8161-4d03-a132-185a998fc4dd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-09T21:52:56.000Z" - }, - "end": { - "$date": "2021-01-09T22:25:27.000Z" - }, - "events": [ - { - "uuid": "08ed738b-57dc-48cd-ba84-0b1a9c9c5723", - "start": { - "$date": "2021-01-09T21:52:56.000Z" - }, - "end": { - "$date": "2021-01-09T22:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9290028d-d4f9-4a09-96da-e10499b56771", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-09T21:54:05.000Z" - }, - "end": { - "$date": "2021-01-10T00:51:42.000Z" - }, - "events": [ - { - "uuid": "5e1a3a0a-1502-44e1-b518-2fd9a275a7fb", - "start": { - "$date": "2021-01-09T21:54:05.000Z" - }, - "end": { - "$date": "2021-01-09T22:42:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cad54daa-dc2d-437b-9368-1a0d382ea8a2", - "start": { - "$date": "2021-01-09T22:42:05.000Z" - }, - "end": { - "$date": "2021-01-09T22:54:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41199958-d1a8-44d1-9070-b3bf976102de", - "start": { - "$date": "2021-01-09T22:54:05.000Z" - }, - "end": { - "$date": "2021-01-09T23:27:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d1a7d5b6-09f4-4605-890c-ee62d6d839d5", - "start": { - "$date": "2021-01-09T23:27:05.000Z" - }, - "end": { - "$date": "2021-01-09T23:34:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a9dbb42d-fa9d-471f-9058-36e3e2ec7c48", - "start": { - "$date": "2021-01-09T23:34:05.000Z" - }, - "end": { - "$date": "2021-01-09T23:59:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e0e33cf-4247-4522-86d8-b27ffa13db58", - "start": { - "$date": "2021-01-09T23:59:05.000Z" - }, - "end": { - "$date": "2021-01-10T00:03:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "95c5746a-fde5-4bba-b6cf-c761227d2e88", - "start": { - "$date": "2021-01-10T00:03:05.000Z" - }, - "end": { - "$date": "2021-01-10T00:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "05a8c168-abaa-4791-bd7c-4fb5f2cb65d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T22:10:20.000Z" - }, - "end": { - "$date": "2021-01-09T23:09:44.000Z" - }, - "events": [ - { - "uuid": "bcaeef18-5ac2-49ad-954a-b811910bc504", - "start": { - "$date": "2021-01-09T22:10:20.000Z" - }, - "end": { - "$date": "2021-01-09T23:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3f96b22a-ea89-409d-a8ab-cd63f33d322e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-09T22:29:51.000Z" - }, - "end": { - "$date": "2021-01-10T01:36:11.000Z" - }, - "events": [ - { - "uuid": "7ddb9ca8-af97-40f9-8368-98cbe3899b88", - "start": { - "$date": "2021-01-09T22:29:51.000Z" - }, - "end": { - "$date": "2021-01-10T01:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cebe160e-908b-4af5-9cc3-7026625fdefe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-09T22:43:37.000Z" - }, - "end": { - "$date": "2021-01-09T23:14:35.000Z" - }, - "events": [ - { - "uuid": "4690b0bf-0787-40eb-9ec7-8f6f89e3f319", - "start": { - "$date": "2021-01-09T22:43:37.000Z" - }, - "end": { - "$date": "2021-01-09T23:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b67a50c3-4347-4c0e-bcd0-f061d4e22004", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-09T23:10:15.000Z" - }, - "end": { - "$date": "2021-01-09T23:23:50.000Z" - }, - "events": [ - { - "uuid": "dc737d7a-2bb3-44ef-b014-2ebb81312dae", - "start": { - "$date": "2021-01-09T23:10:15.000Z" - }, - "end": { - "$date": "2021-01-09T23:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8022f6cf-b70e-4b0c-a4da-450d488bf0f5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-09T23:40:48.000Z" - }, - "end": { - "$date": "2021-01-09T23:50:23.000Z" - }, - "events": [ - { - "uuid": "f5719a0f-fb53-467f-9647-7228e7875120", - "start": { - "$date": "2021-01-09T23:40:48.000Z" - }, - "end": { - "$date": "2021-01-09T23:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e10afd8d-1a40-40a4-ba53-f4d14ee9e32a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-09T23:59:16.000Z" - }, - "end": { - "$date": "2021-01-10T00:16:01.000Z" - }, - "events": [ - { - "uuid": "f8ed3c35-59b5-4b7a-b4b7-d0f41ad3f7fe", - "start": { - "$date": "2021-01-09T23:59:16.000Z" - }, - "end": { - "$date": "2021-01-10T00:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c43be85-0fad-4b88-b2e1-b82bdffd8c09", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T00:04:29.000Z" - }, - "end": { - "$date": "2021-01-10T00:39:46.000Z" - }, - "events": [ - { - "uuid": "38a1fac6-f63c-4b8c-832f-d84a3961a054", - "start": { - "$date": "2021-01-10T00:04:29.000Z" - }, - "end": { - "$date": "2021-01-10T00:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5e8fe97f-d073-4aeb-a7d4-545d8d9cd9b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-10T00:29:14.000Z" - }, - "end": { - "$date": "2021-01-10T00:39:39.000Z" - }, - "events": [ - { - "uuid": "cb294687-ef64-41d8-888a-8c56c4dad6a6", - "start": { - "$date": "2021-01-10T00:29:14.000Z" - }, - "end": { - "$date": "2021-01-10T00:39:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ccffdde4-09be-45da-b4c4-93e786868f32", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-10T00:30:26.000Z" - }, - "end": { - "$date": "2021-01-10T00:54:03.000Z" - }, - "events": [ - { - "uuid": "f401e2cc-b3d9-49db-ba83-c798313a00fd", - "start": { - "$date": "2021-01-10T00:30:26.000Z" - }, - "end": { - "$date": "2021-01-10T00:54:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "001aef1f-bbbc-4c25-8b08-f261bc156637", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T01:00:17.000Z" - }, - "end": { - "$date": "2021-01-10T01:14:49.000Z" - }, - "events": [ - { - "uuid": "fef7fc64-0346-4dae-9fab-30caf9d7af72", - "start": { - "$date": "2021-01-10T01:00:17.000Z" - }, - "end": { - "$date": "2021-01-10T01:14:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5526a971-df73-40c9-a628-a15cc9b9472e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-10T00:39:46.000Z" - }, - "end": { - "$date": "2021-01-10T01:37:48.000Z" - }, - "events": [ - { - "uuid": "d95a7261-d3ee-4403-8ec7-41a35d6eaf3c", - "start": { - "$date": "2021-01-10T00:39:46.000Z" - }, - "end": { - "$date": "2021-01-10T01:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "15046230-99b2-4189-bebc-9c4edcfc4b9f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T00:44:41.000Z" - }, - "end": { - "$date": "2021-01-10T01:36:54.000Z" - }, - "events": [ - { - "uuid": "679d5116-d651-4f09-855b-feafd5174d17", - "start": { - "$date": "2021-01-10T00:44:41.000Z" - }, - "end": { - "$date": "2021-01-10T01:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "465f42b5-ae9e-4ee5-ab0c-67875879ba96", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T00:52:11.000Z" - }, - "end": { - "$date": "2021-01-10T01:48:19.000Z" - }, - "events": [ - { - "uuid": "7420f91c-3a5f-4f76-8060-336cc6f66db6", - "start": { - "$date": "2021-01-10T00:52:11.000Z" - }, - "end": { - "$date": "2021-01-10T01:48:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d38598f1-a691-45b1-b418-870ed70ab7d9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-10T01:01:29.000Z" - }, - "end": { - "$date": "2021-01-10T01:07:44.000Z" - }, - "events": [ - { - "uuid": "dcc3c851-731c-437f-ae71-ec7d8f09304a", - "start": { - "$date": "2021-01-10T01:01:29.000Z" - }, - "end": { - "$date": "2021-01-10T01:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d6904be0-173a-494f-98b7-efcaf9fb9740", - "uuid": "5a4d72f1-22cc-4f3f-9164-5743f39eb13f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-10T01:07:49.000Z" - }, - "end": { - "$date": "2021-01-10T04:07:05.000Z" - }, - "events": [ - { - "uuid": "898a1a2b-0600-4331-96f1-d1282dfcf592", - "start": { - "$date": "2021-01-10T01:07:49.000Z" - }, - "end": { - "$date": "2021-01-10T04:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d6904be0-173a-494f-98b7-efcaf9fb9740", - "uuid": "506378c4-159a-46de-957f-dad572284808", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T01:15:07.000Z" - }, - "end": { - "$date": "2021-01-10T04:06:05.000Z" - }, - "events": [ - { - "uuid": "3b181310-bee3-4209-8592-590eb592f0dd", - "start": { - "$date": "2021-01-10T01:15:07.000Z" - }, - "end": { - "$date": "2021-01-10T04:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a3f4f6ad-d32f-4f92-a0bb-aa81975567ea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T01:50:39.000Z" - }, - "end": { - "$date": "2021-01-10T01:55:58.000Z" - }, - "events": [ - { - "uuid": "aa02dc23-9e6e-4438-b4f1-ab72a1c7b87b", - "start": { - "$date": "2021-01-10T01:50:39.000Z" - }, - "end": { - "$date": "2021-01-10T01:55:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "08d735f1-6d76-47cd-9395-03c5f0b9b27c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T01:51:29.000Z" - }, - "end": { - "$date": "2021-01-10T02:52:48.000Z" - }, - "events": [ - { - "uuid": "bc900fce-aa94-4d2f-b400-b2bef360b7ab", - "start": { - "$date": "2021-01-10T01:51:29.000Z" - }, - "end": { - "$date": "2021-01-10T02:31:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "651184cc-6d1b-4b2b-b62f-d2902e087d5a", - "start": { - "$date": "2021-01-10T02:31:29.000Z" - }, - "end": { - "$date": "2021-01-10T02:36:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d2c1de3-be33-4122-916a-ec8028a545db", - "start": { - "$date": "2021-01-10T02:36:29.000Z" - }, - "end": { - "$date": "2021-01-10T02:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cc67396f-f821-4270-9e5c-d079eed7462b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T01:56:25.000Z" - }, - "end": { - "$date": "2021-01-10T01:59:48.000Z" - }, - "events": [ - { - "uuid": "45ec26f7-7375-49f5-aaa4-a94f18a4873e", - "start": { - "$date": "2021-01-10T01:56:25.000Z" - }, - "end": { - "$date": "2021-01-10T01:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b64c9b4d-5343-4433-b17d-d569f6474ac0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T02:04:24.000Z" - }, - "end": { - "$date": "2021-01-10T02:27:54.000Z" - }, - "events": [ - { - "uuid": "a26e28b2-af65-4d5f-ab80-09e84d32168d", - "start": { - "$date": "2021-01-10T02:04:24.000Z" - }, - "end": { - "$date": "2021-01-10T02:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d515304-925e-418e-bb68-a3abfab12fa2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T02:04:20.000Z" - }, - "end": { - "$date": "2021-01-10T02:27:49.000Z" - }, - "events": [ - { - "uuid": "58ba5daf-1eab-4c2a-a4f0-d5c24c23489f", - "start": { - "$date": "2021-01-10T02:04:20.000Z" - }, - "end": { - "$date": "2021-01-10T02:27:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97130bf1-70db-41a8-b7c2-f2d07180e688", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T02:33:21.000Z" - }, - "end": { - "$date": "2021-01-10T03:18:58.000Z" - }, - "events": [ - { - "uuid": "71e0fff0-526d-4e15-8fa7-4cbb00bcef4c", - "start": { - "$date": "2021-01-10T02:33:21.000Z" - }, - "end": { - "$date": "2021-01-10T03:18:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b82c8c4-cd30-44ed-aca6-bb5bc9bcf4f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T02:34:00.000Z" - }, - "end": { - "$date": "2021-01-10T03:18:59.000Z" - }, - "events": [ - { - "uuid": "2d062cc0-c935-42c9-97fb-9ff9be06c434", - "start": { - "$date": "2021-01-10T02:34:00.000Z" - }, - "end": { - "$date": "2021-01-10T03:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "58bee151-dc91-4da7-8017-7165fff68707", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-10T02:33:39.000Z" - }, - "end": { - "$date": "2021-01-10T05:58:12.000Z" - }, - "events": [ - { - "uuid": "5032dfd4-1973-4d6a-83e1-4b96a4bd6d1b", - "start": { - "$date": "2021-01-10T02:33:39.000Z" - }, - "end": { - "$date": "2021-01-10T05:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4a2063d9-75d0-42d1-9335-a00a591d83a9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-10T02:47:14.000Z" - }, - "end": { - "$date": "2021-01-10T03:12:07.000Z" - }, - "events": [ - { - "uuid": "efc1bc56-750e-43a8-ae8d-7afd128a3d8c", - "start": { - "$date": "2021-01-10T02:47:14.000Z" - }, - "end": { - "$date": "2021-01-10T03:12:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4736f6ac-6526-44cd-b2e3-be0849d29046", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T02:50:57.000Z" - }, - "end": { - "$date": "2021-01-10T03:09:31.000Z" - }, - "events": [ - { - "uuid": "2018b806-2072-4507-a6d7-04ef2001763b", - "start": { - "$date": "2021-01-10T02:50:57.000Z" - }, - "end": { - "$date": "2021-01-10T03:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "38c6177d-48e9-4dea-a757-8622af7d41a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T02:52:52.000Z" - }, - "end": { - "$date": "2021-01-10T03:03:14.000Z" - }, - "events": [ - { - "uuid": "626b2878-9f36-4b9f-a4f5-c06316450adf", - "start": { - "$date": "2021-01-10T02:52:52.000Z" - }, - "end": { - "$date": "2021-01-10T03:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cb674f44-3de1-4da1-bd03-8d675abc5bdf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T03:11:48.000Z" - }, - "end": { - "$date": "2021-01-10T05:57:40.000Z" - }, - "events": [ - { - "uuid": "f4523080-a3fa-46a4-accf-3e51ab9a00b0", - "start": { - "$date": "2021-01-10T03:11:48.000Z" - }, - "end": { - "$date": "2021-01-10T05:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "de5f7d1d-ad06-4531-b8e4-72341bfdeae8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-10T03:12:27.000Z" - }, - "end": { - "$date": "2021-01-10T05:27:35.000Z" - }, - "events": [ - { - "uuid": "b5103c3a-f68a-4ac0-b7d9-028976fe2c63", - "start": { - "$date": "2021-01-10T03:12:27.000Z" - }, - "end": { - "$date": "2021-01-10T05:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cb750e1f-5465-4457-961a-6b45254da71b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T03:20:32.000Z" - }, - "end": { - "$date": "2021-01-10T04:59:49.000Z" - }, - "events": [ - { - "uuid": "e01ee306-2d42-4255-bafa-f7910643e664", - "start": { - "$date": "2021-01-10T03:20:32.000Z" - }, - "end": { - "$date": "2021-01-10T04:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e375ea75-8d40-4132-9576-590885632823", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-01-10T02:52:13.000Z" - }, - "end": { - "$date": "2021-01-10T03:57:05.000Z" - }, - "events": [ - { - "uuid": "c5c4e7e7-106d-4877-957f-cbb0f0d36da9", - "start": { - "$date": "2021-01-10T02:52:13.000Z" - }, - "end": { - "$date": "2021-01-10T03:57:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "14d9cf2b-6b3f-42d6-a488-fc123033b78a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T03:55:08.000Z" - }, - "end": { - "$date": "2021-01-10T03:57:33.000Z" - }, - "events": [ - { - "uuid": "979160bd-6a81-4330-b1cc-4697e2ce909b", - "start": { - "$date": "2021-01-10T03:55:08.000Z" - }, - "end": { - "$date": "2021-01-10T03:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5158f0c8-e834-4039-8b1a-3540aef1679d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-10T04:08:45.000Z" - }, - "end": { - "$date": "2021-01-10T04:28:34.000Z" - }, - "events": [ - { - "uuid": "47976188-476c-4bed-80a8-9d80a721d506", - "start": { - "$date": "2021-01-10T04:08:45.000Z" - }, - "end": { - "$date": "2021-01-10T04:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "88898744-d1df-49db-9c0c-2540da0a018b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T04:30:51.000Z" - }, - "end": { - "$date": "2021-01-10T08:30:41.000Z" - }, - "events": [ - { - "uuid": "b9fa1898-ecf4-4128-9f8c-2bd7b4aedfae", - "start": { - "$date": "2021-01-10T04:30:51.000Z" - }, - "end": { - "$date": "2021-01-10T08:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "895ad157-d6c3-4119-87e7-3c6720ffeeef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T05:25:44.000Z" - }, - "end": { - "$date": "2021-01-10T06:36:17.000Z" - }, - "events": [ - { - "uuid": "509e4df6-531f-4a99-9bcf-112bc7c02621", - "start": { - "$date": "2021-01-10T05:25:44.000Z" - }, - "end": { - "$date": "2021-01-10T06:36:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dd33e710-32e0-4b72-9802-8047ebe898f5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-10T06:44:32.000Z" - }, - "end": { - "$date": "2021-01-10T08:48:30.000Z" - }, - "events": [ - { - "uuid": "4d9f4587-6f04-4cc7-b83c-93f84f7c667b", - "start": { - "$date": "2021-01-10T06:44:32.000Z" - }, - "end": { - "$date": "2021-01-10T08:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c713f7ee-ef79-4b56-8a4c-38f128a4871d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-10T04:44:40.000Z" - }, - "end": { - "$date": "2021-01-10T05:15:11.000Z" - }, - "events": [ - { - "uuid": "e198d884-65b2-49ea-a957-1618bc700749", - "start": { - "$date": "2021-01-10T04:44:40.000Z" - }, - "end": { - "$date": "2021-01-10T05:15:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c9b7ff7b-13c6-4002-9fd9-53ef6e0926b0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-10T04:44:26.000Z" - }, - "end": { - "$date": "2021-01-10T06:17:03.000Z" - }, - "events": [ - { - "uuid": "ec1487bc-8a9f-4fcf-8fb2-90043df40a1c", - "start": { - "$date": "2021-01-10T04:44:26.000Z" - }, - "end": { - "$date": "2021-01-10T06:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34d3cf4c-f10f-40c6-ad8f-8ebb85b4d043", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T04:58:06.000Z" - }, - "end": { - "$date": "2021-01-10T05:17:35.000Z" - }, - "events": [ - { - "uuid": "2f287953-4619-457e-aa35-a7b75b1b51f5", - "start": { - "$date": "2021-01-10T04:58:06.000Z" - }, - "end": { - "$date": "2021-01-10T05:17:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e2676fb3-24fb-4277-885b-632fb341b754", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T05:00:34.000Z" - }, - "end": { - "$date": "2021-01-10T05:36:45.000Z" - }, - "events": [ - { - "uuid": "9ad2ae69-f2e2-4c03-b626-64f7258e0f41", - "start": { - "$date": "2021-01-10T05:00:34.000Z" - }, - "end": { - "$date": "2021-01-10T05:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "e5a2749d-c4b4-4029-82ab-672e1ec61178", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-10T05:02:10.000Z" - }, - "end": { - "$date": "2021-01-10T05:44:51.000Z" - }, - "events": [ - { - "uuid": "d14d458b-5d32-453a-b3c4-22b089636d3c", - "start": { - "$date": "2021-01-10T05:02:10.000Z" - }, - "end": { - "$date": "2021-01-10T05:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52763a38-8964-4aea-829c-4c1c9793045d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-10T05:22:05.000Z" - }, - "end": { - "$date": "2021-01-10T05:57:16.000Z" - }, - "events": [ - { - "uuid": "3c72a00c-7088-448e-a533-d7a8bb15463d", - "start": { - "$date": "2021-01-10T05:22:05.000Z" - }, - "end": { - "$date": "2021-01-10T05:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "830f7923-f666-452f-a6a5-c26d65c6d475", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T05:18:56.000Z" - }, - "end": { - "$date": "2021-01-10T06:00:06.000Z" - }, - "events": [ - { - "uuid": "f467b962-bd58-4ab5-92d1-8454324b1431", - "start": { - "$date": "2021-01-10T05:18:56.000Z" - }, - "end": { - "$date": "2021-01-10T06:00:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d5caf7fe-7feb-472e-be92-1dfa98bb5e5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T05:42:44.000Z" - }, - "end": { - "$date": "2021-01-10T06:16:18.000Z" - }, - "events": [ - { - "uuid": "d5489cca-b1ef-4617-9391-c92a8040728d", - "start": { - "$date": "2021-01-10T05:42:44.000Z" - }, - "end": { - "$date": "2021-01-10T06:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f565617d-9283-4556-a2b7-514625023e73", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-10T05:46:26.000Z" - }, - "end": { - "$date": "2021-01-10T07:29:25.000Z" - }, - "events": [ - { - "uuid": "8541c4bb-35a8-48e9-8c4c-f5ff412ac8d7", - "start": { - "$date": "2021-01-10T05:46:26.000Z" - }, - "end": { - "$date": "2021-01-10T07:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1028d875-5197-47a4-a047-608dc9a7ac15", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T05:58:11.000Z" - }, - "end": { - "$date": "2021-01-10T06:10:02.000Z" - }, - "events": [ - { - "uuid": "dfafb9f2-6e3c-4802-b5ca-dd9ba4af060a", - "start": { - "$date": "2021-01-10T05:58:11.000Z" - }, - "end": { - "$date": "2021-01-10T06:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5997425-db8b-473c-b5dd-269f225fbd82", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-10T06:02:46.000Z" - }, - "end": { - "$date": "2021-01-10T06:34:37.000Z" - }, - "events": [ - { - "uuid": "29f07383-883c-46f5-b221-2fbfee5eebc3", - "start": { - "$date": "2021-01-10T06:02:46.000Z" - }, - "end": { - "$date": "2021-01-10T06:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "72d3fc7f-f065-4b17-9fff-d3b38e4af264", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T06:17:21.000Z" - }, - "end": { - "$date": "2021-01-10T08:16:40.000Z" - }, - "events": [ - { - "uuid": "4a854e10-155b-4aee-b655-58a101f3dae9", - "start": { - "$date": "2021-01-10T06:17:21.000Z" - }, - "end": { - "$date": "2021-01-10T08:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd3c573a-d2a8-47c8-a1e1-689266cf0dcf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T06:49:59.000Z" - }, - "end": { - "$date": "2021-01-10T07:39:57.000Z" - }, - "events": [ - { - "uuid": "38fb0bd3-4487-4606-a8da-5b85959f2321", - "start": { - "$date": "2021-01-10T06:49:59.000Z" - }, - "end": { - "$date": "2021-01-10T07:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d94f796b-1879-4203-90db-48727431cc2d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-10T06:44:27.000Z" - }, - "end": { - "$date": "2021-01-10T08:55:30.000Z" - }, - "events": [ - { - "uuid": "a7c4ea13-f155-4e63-9011-cb1fea5696f8", - "start": { - "$date": "2021-01-10T06:44:27.000Z" - }, - "end": { - "$date": "2021-01-10T08:55:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bbe5173b-cc77-4495-ab6e-cbf0b6549273", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T06:44:54.000Z" - }, - "end": { - "$date": "2021-01-10T08:55:33.000Z" - }, - "events": [ - { - "uuid": "77224348-6b10-4316-bc71-8522b695937b", - "start": { - "$date": "2021-01-10T06:44:54.000Z" - }, - "end": { - "$date": "2021-01-10T08:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6c8f9a3-2786-4278-8526-01ebb89cc61e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-10T07:31:23.000Z" - }, - "end": { - "$date": "2021-01-10T07:39:48.000Z" - }, - "events": [ - { - "uuid": "76bc2492-554a-49b8-87a2-6b33c8fc6f9a", - "start": { - "$date": "2021-01-10T07:31:23.000Z" - }, - "end": { - "$date": "2021-01-10T07:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0cfa215a-3709-4ceb-adf2-3937df7d1e25", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-10T07:30:29.000Z" - }, - "end": { - "$date": "2021-01-10T08:55:48.000Z" - }, - "events": [ - { - "uuid": "9ea7680d-e09c-4036-9484-933dcbd08b7a", - "start": { - "$date": "2021-01-10T07:30:29.000Z" - }, - "end": { - "$date": "2021-01-10T08:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7726ef6b-89ef-4b99-9321-d68dd8e20403", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T07:46:36.000Z" - }, - "end": { - "$date": "2021-01-10T08:07:13.000Z" - }, - "events": [ - { - "uuid": "8e978756-2b3f-48f5-9178-83f345b16e30", - "start": { - "$date": "2021-01-10T07:46:36.000Z" - }, - "end": { - "$date": "2021-01-10T08:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cedbce8-cce2-411f-b5b6-6dc1516f3c9b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-10T07:52:03.000Z" - }, - "end": { - "$date": "2021-01-10T08:07:09.000Z" - }, - "events": [ - { - "uuid": "134e9824-a0e3-47a9-ae63-677c3188d7c5", - "start": { - "$date": "2021-01-10T07:52:03.000Z" - }, - "end": { - "$date": "2021-01-10T08:07:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "89e4f3af-045f-4824-b056-a21f6eec2fc8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-10T08:34:36.000Z" - }, - "end": { - "$date": "2021-01-10T09:58:44.000Z" - }, - "events": [ - { - "uuid": "d30559b5-f4e9-40f0-8803-29dbd4bdc1c8", - "start": { - "$date": "2021-01-10T08:34:36.000Z" - }, - "end": { - "$date": "2021-01-10T09:58:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4415755f-0baa-4ed9-af22-3fbe5e9abe89", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-10T09:04:06.000Z" - }, - "end": { - "$date": "2021-01-10T09:26:56.000Z" - }, - "events": [ - { - "uuid": "ae759a95-d7c5-460c-ab44-0854826eb8e6", - "start": { - "$date": "2021-01-10T09:04:06.000Z" - }, - "end": { - "$date": "2021-01-10T09:26:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "51a4e8a6-17d8-447d-add1-2af5b0f43bb6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T09:07:00.000Z" - }, - "end": { - "$date": "2021-01-10T09:26:45.000Z" - }, - "events": [ - { - "uuid": "c92b93d6-f880-4545-90a1-f16fa773e1ba", - "start": { - "$date": "2021-01-10T09:07:00.000Z" - }, - "end": { - "$date": "2021-01-10T09:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d388913d-275e-4902-adac-8479d9fecd13", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-10T09:07:39.000Z" - }, - "end": { - "$date": "2021-01-10T09:12:25.000Z" - }, - "events": [ - { - "uuid": "c3a2b5b1-4e96-4716-b386-1bdc1a909f9d", - "start": { - "$date": "2021-01-10T09:07:39.000Z" - }, - "end": { - "$date": "2021-01-10T09:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "56b79d12-889e-409f-94c2-ee748ddcc1ed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-10T10:00:50.000Z" - }, - "end": { - "$date": "2021-01-10T10:47:54.000Z" - }, - "events": [ - { - "uuid": "66c9103f-b414-4d65-9747-dbb498593695", - "start": { - "$date": "2021-01-10T10:00:50.000Z" - }, - "end": { - "$date": "2021-01-10T10:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8a1029e1-1136-4570-8381-d395b094c571", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T16:40:16.000Z" - }, - "end": { - "$date": "2021-01-10T16:42:33.000Z" - }, - "events": [ - { - "uuid": "2c92e838-cd6c-4007-99e4-1cd914897c33", - "start": { - "$date": "2021-01-10T16:40:16.000Z" - }, - "end": { - "$date": "2021-01-10T16:42:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3902e9c1-45e0-4cd4-93cf-c6a1620e4f56", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T16:42:42.000Z" - }, - "end": { - "$date": "2021-01-10T17:12:10.000Z" - }, - "events": [ - { - "uuid": "8b9aa929-ac24-4125-8e9c-a6f91b20b24f", - "start": { - "$date": "2021-01-10T16:42:42.000Z" - }, - "end": { - "$date": "2021-01-10T17:12:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "de6bf439-7ab0-472d-9837-085910e94670", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T17:14:19.000Z" - }, - "end": { - "$date": "2021-01-10T17:18:30.000Z" - }, - "events": [ - { - "uuid": "88eb92c1-04d3-4d3e-a88c-c47504bfbd4b", - "start": { - "$date": "2021-01-10T17:14:19.000Z" - }, - "end": { - "$date": "2021-01-10T17:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "34382d66-ba06-4913-885c-c236872f4518", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-10T17:26:20.000Z" - }, - "end": { - "$date": "2021-01-10T19:21:19.000Z" - }, - "events": [ - { - "uuid": "ba46a5d4-4bc3-4ee5-b006-99c80bfac02f", - "start": { - "$date": "2021-01-10T17:26:20.000Z" - }, - "end": { - "$date": "2021-01-10T19:21:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "576d13f3-acf5-4e03-89b8-ee97cd073835", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T17:39:22.000Z" - }, - "end": { - "$date": "2021-01-10T17:43:51.000Z" - }, - "events": [ - { - "uuid": "a28a3f49-cc55-4476-bb6b-7fdd11146e99", - "start": { - "$date": "2021-01-10T17:39:22.000Z" - }, - "end": { - "$date": "2021-01-10T17:43:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e3b3805-b4c5-444b-8861-fd4879bddf9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T17:51:52.000Z" - }, - "end": { - "$date": "2021-01-10T18:04:36.000Z" - }, - "events": [ - { - "uuid": "3311c539-e643-4555-a7d3-f4040ffd4fbd", - "start": { - "$date": "2021-01-10T17:51:52.000Z" - }, - "end": { - "$date": "2021-01-10T18:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c29fd08b-4157-4b0e-9b17-722b544282fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T18:11:42.000Z" - }, - "end": { - "$date": "2021-01-10T18:25:12.000Z" - }, - "events": [ - { - "uuid": "fae87fb6-fcfe-4b3f-ad51-9448830a143c", - "start": { - "$date": "2021-01-10T18:11:42.000Z" - }, - "end": { - "$date": "2021-01-10T18:25:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5774da2a-1c39-4c6b-84b3-f16e3b56fe29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T18:26:06.000Z" - }, - "end": { - "$date": "2021-01-10T18:28:23.000Z" - }, - "events": [ - { - "uuid": "7960e4e2-0ec5-4e40-b148-52024cf48bfd", - "start": { - "$date": "2021-01-10T18:26:06.000Z" - }, - "end": { - "$date": "2021-01-10T18:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "889e6f12-f34f-487f-b007-79d009124ff6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T18:28:42.000Z" - }, - "end": { - "$date": "2021-01-10T18:30:17.000Z" - }, - "events": [ - { - "uuid": "2925533b-042b-403d-b423-06c66285302f", - "start": { - "$date": "2021-01-10T18:28:42.000Z" - }, - "end": { - "$date": "2021-01-10T18:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "cede134c-b5b7-4959-9647-b26c6c1046ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T18:30:22.000Z" - }, - "end": { - "$date": "2021-01-10T18:48:37.000Z" - }, - "events": [ - { - "uuid": "1db3a0de-49e8-4f35-8b04-213c1f6084b2", - "start": { - "$date": "2021-01-10T18:30:22.000Z" - }, - "end": { - "$date": "2021-01-10T18:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "df69075f-9e35-4847-878d-4d5f592d1f61", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-10T19:02:41.000Z" - }, - "end": { - "$date": "2021-01-11T00:19:21.000Z" - }, - "events": [ - { - "uuid": "96cac3f3-ad51-498a-be64-f003a695f9e1", - "start": { - "$date": "2021-01-10T19:02:41.000Z" - }, - "end": { - "$date": "2021-01-10T19:38:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d948fc98-9bb1-4f8c-9f5c-cbfbf5ec1a86", - "start": { - "$date": "2021-01-10T19:38:41.000Z" - }, - "end": { - "$date": "2021-01-10T19:56:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3fdcc5f1-5a6d-485b-9497-fdc1d7c937eb", - "start": { - "$date": "2021-01-10T19:56:41.000Z" - }, - "end": { - "$date": "2021-01-10T20:14:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "be2edabd-adac-4914-9bac-b644e046de0b", - "start": { - "$date": "2021-01-10T20:14:41.000Z" - }, - "end": { - "$date": "2021-01-10T20:15:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "75415eb7-83de-44d5-b1b5-070c97212b83", - "start": { - "$date": "2021-01-10T20:15:41.000Z" - }, - "end": { - "$date": "2021-01-11T00:11:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "768b24b5-7ed2-4137-a38b-769d22ead880", - "start": { - "$date": "2021-01-11T00:11:41.000Z" - }, - "end": { - "$date": "2021-01-11T00:13:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69f706df-29f2-4ad2-8a6c-5aa7bde73e7a", - "start": { - "$date": "2021-01-11T00:13:41.000Z" - }, - "end": { - "$date": "2021-01-11T00:19:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "37966962-305f-487b-ad87-3adc67097c6d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T19:03:54.000Z" - }, - "end": { - "$date": "2021-01-10T19:26:14.000Z" - }, - "events": [ - { - "uuid": "840277b7-8349-46c2-91ee-fa8a65cc6f79", - "start": { - "$date": "2021-01-10T19:03:54.000Z" - }, - "end": { - "$date": "2021-01-10T19:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8c3514b-ab02-444f-b371-e66a204d4f53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T20:05:46.000Z" - }, - "end": { - "$date": "2021-01-10T20:05:46.000Z" - }, - "events": [ - { - "uuid": "2d279704-6c4c-4f45-910c-3d7ea4a1daa9", - "start": { - "$date": "2021-01-10T20:05:46.000Z" - }, - "end": { - "$date": "2021-01-10T20:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6babfc9-0530-4cb2-87f4-3f9b41e84042", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T19:31:14.000Z" - }, - "end": { - "$date": "2021-01-10T20:05:34.000Z" - }, - "events": [ - { - "uuid": "f292d5a4-0fc2-4f9a-ac02-7b7dfd59dea8", - "start": { - "$date": "2021-01-10T19:31:14.000Z" - }, - "end": { - "$date": "2021-01-10T20:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e0fd47d-84eb-4da8-8325-13e65575b38b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T19:38:58.000Z" - }, - "end": { - "$date": "2021-01-10T20:01:45.000Z" - }, - "events": [ - { - "uuid": "a78c0f98-271f-4cb9-8ba7-081bfd24d6f9", - "start": { - "$date": "2021-01-10T19:38:58.000Z" - }, - "end": { - "$date": "2021-01-10T20:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1fcb117-2cb9-438c-9c70-d76c2904398d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T20:17:52.000Z" - }, - "end": { - "$date": "2021-01-10T20:50:37.000Z" - }, - "events": [ - { - "uuid": "652e3acf-055c-42b8-bc2d-8d1e2ba7a1ac", - "start": { - "$date": "2021-01-10T20:17:52.000Z" - }, - "end": { - "$date": "2021-01-10T20:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "292e08a5-98a6-48cc-821d-f6e929be672a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T20:18:15.000Z" - }, - "end": { - "$date": "2021-01-10T20:50:35.000Z" - }, - "events": [ - { - "uuid": "ccd21549-e417-43fe-b10c-f42e7088977e", - "start": { - "$date": "2021-01-10T20:18:15.000Z" - }, - "end": { - "$date": "2021-01-10T20:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c634d32-9384-409b-a04e-46ea02a848c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T20:17:54.000Z" - }, - "end": { - "$date": "2021-01-10T20:50:35.000Z" - }, - "events": [ - { - "uuid": "6f052197-d956-4307-977d-ac1f55874ea0", - "start": { - "$date": "2021-01-10T20:17:54.000Z" - }, - "end": { - "$date": "2021-01-10T20:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "10ad4df7-d7ed-47fd-88b1-c99dd82573ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-10T20:38:05.000Z" - }, - "end": { - "$date": "2021-01-10T22:06:52.000Z" - }, - "events": [ - { - "uuid": "306db250-79bd-443c-89fc-2b849fe59272", - "start": { - "$date": "2021-01-10T20:38:05.000Z" - }, - "end": { - "$date": "2021-01-10T22:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "326ed87c-2490-4668-9641-efdfd23fb657", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-10T20:40:06.000Z" - }, - "end": { - "$date": "2021-01-10T21:39:17.000Z" - }, - "events": [ - { - "uuid": "6b9dc12c-76a4-4f97-a8d6-4eae998b79b9", - "start": { - "$date": "2021-01-10T20:40:06.000Z" - }, - "end": { - "$date": "2021-01-10T21:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "387d23a0-ee22-4d17-814b-689be28d4c51", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T21:02:14.000Z" - }, - "end": { - "$date": "2021-01-10T21:27:08.000Z" - }, - "events": [ - { - "uuid": "fc4a9093-7bc5-4803-9545-0f5905de1006", - "start": { - "$date": "2021-01-10T21:02:14.000Z" - }, - "end": { - "$date": "2021-01-10T21:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa980bd1-d19b-442e-9c24-a323f65a9504", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T21:03:06.000Z" - }, - "end": { - "$date": "2021-01-10T21:26:55.000Z" - }, - "events": [ - { - "uuid": "5a83e531-d757-4ff1-aa4f-4c08f430fc6c", - "start": { - "$date": "2021-01-10T21:03:06.000Z" - }, - "end": { - "$date": "2021-01-10T21:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dea48921-a231-4afb-99b5-46c76d1ea183", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T21:02:12.000Z" - }, - "end": { - "$date": "2021-01-10T21:26:58.000Z" - }, - "events": [ - { - "uuid": "8c23c180-f26c-4299-9a14-efa31c9cbfc9", - "start": { - "$date": "2021-01-10T21:02:12.000Z" - }, - "end": { - "$date": "2021-01-10T21:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bde7db8-3a95-498d-9bc0-dd689c10116c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T21:55:48.000Z" - }, - "end": { - "$date": "2021-01-10T22:22:36.000Z" - }, - "events": [ - { - "uuid": "6f08b138-9ffd-4a1c-a1b8-dcdb87d8c418", - "start": { - "$date": "2021-01-10T21:55:48.000Z" - }, - "end": { - "$date": "2021-01-10T22:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "90db3183-c62a-4aaa-9586-9d0ddb44c278", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-10T21:28:36.000Z" - }, - "end": { - "$date": "2021-01-10T22:57:09.000Z" - }, - "events": [ - { - "uuid": "77b7267d-7814-48b8-ad70-2b05358eb820", - "start": { - "$date": "2021-01-10T21:28:36.000Z" - }, - "end": { - "$date": "2021-01-10T22:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "675c3fea-44ce-4123-88e9-1189c282aef6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T21:35:03.000Z" - }, - "end": { - "$date": "2021-01-10T21:39:55.000Z" - }, - "events": [ - { - "uuid": "39234934-c6f2-4b4d-9ef1-6201e366b19d", - "start": { - "$date": "2021-01-10T21:35:03.000Z" - }, - "end": { - "$date": "2021-01-10T21:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2763da1-17b2-4442-8204-0995a3b056be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T21:35:03.000Z" - }, - "end": { - "$date": "2021-01-10T21:39:55.000Z" - }, - "events": [ - { - "uuid": "4ec510b1-d47e-464c-8931-99f0f7581c1c", - "start": { - "$date": "2021-01-10T21:35:03.000Z" - }, - "end": { - "$date": "2021-01-10T21:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "109c0187-ffb6-49fa-bf57-8bc0cc358d41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T21:56:43.000Z" - }, - "end": { - "$date": "2021-01-10T22:22:22.000Z" - }, - "events": [ - { - "uuid": "ef241807-bc68-4135-947c-0c011e5fff96", - "start": { - "$date": "2021-01-10T21:56:43.000Z" - }, - "end": { - "$date": "2021-01-10T22:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0de32c3f-3695-4431-b45b-92cfe838ea05", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T21:55:48.000Z" - }, - "end": { - "$date": "2021-01-10T22:22:31.000Z" - }, - "events": [ - { - "uuid": "f21c5713-87ad-4b95-98fb-e101717a5161", - "start": { - "$date": "2021-01-10T21:55:48.000Z" - }, - "end": { - "$date": "2021-01-10T22:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "b48ab00b-8c88-4d42-bc55-17fc8851bfda", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-10T22:02:40.000Z" - }, - "end": { - "$date": "2021-01-10T23:25:06.000Z" - }, - "events": [ - { - "uuid": "c9af561e-9d2d-44dd-a5cc-c8e70fd7d17e", - "start": { - "$date": "2021-01-10T22:02:40.000Z" - }, - "end": { - "$date": "2021-01-10T23:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4a9532e-7a08-490f-a83e-1333c34412ba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T22:32:55.000Z" - }, - "end": { - "$date": "2021-01-10T23:08:30.000Z" - }, - "events": [ - { - "uuid": "495a0830-bdc4-45c2-ad9c-c7ef10c6ba6c", - "start": { - "$date": "2021-01-10T22:32:55.000Z" - }, - "end": { - "$date": "2021-01-10T23:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f4c6c02-d84d-4e10-ae5f-7da5534981b7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T22:34:04.000Z" - }, - "end": { - "$date": "2021-01-10T23:08:23.000Z" - }, - "events": [ - { - "uuid": "6520da52-ce0e-4f9e-ac71-005526c7b749", - "start": { - "$date": "2021-01-10T22:34:04.000Z" - }, - "end": { - "$date": "2021-01-10T23:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3042c71-b5b9-4f9d-b27b-60dd9047b0e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T22:32:56.000Z" - }, - "end": { - "$date": "2021-01-10T23:08:29.000Z" - }, - "events": [ - { - "uuid": "7b87df91-f850-4fbb-b206-babaae66a4af", - "start": { - "$date": "2021-01-10T22:32:56.000Z" - }, - "end": { - "$date": "2021-01-10T23:08:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6c0d5b91-079f-4590-a255-c667cbd6036c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-10T23:05:17.000Z" - }, - "end": { - "$date": "2021-01-10T23:19:19.000Z" - }, - "events": [ - { - "uuid": "00f87ca6-f2e5-4b1c-a63b-110765e9615e", - "start": { - "$date": "2021-01-10T23:05:17.000Z" - }, - "end": { - "$date": "2021-01-10T23:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7eb2325-6ab4-49a4-9993-e6108d789962", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-10T23:15:51.000Z" - }, - "end": { - "$date": "2021-01-10T23:57:42.000Z" - }, - "events": [ - { - "uuid": "3347d1b5-9ffb-4cbd-b2c7-da02925ff46e", - "start": { - "$date": "2021-01-10T23:15:51.000Z" - }, - "end": { - "$date": "2021-01-10T23:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fc08e5c-89d5-4afa-922c-496cb4eb6b75", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-10T23:17:19.000Z" - }, - "end": { - "$date": "2021-01-10T23:57:39.000Z" - }, - "events": [ - { - "uuid": "03e40334-8165-4fcf-b751-2ab3b4436e6b", - "start": { - "$date": "2021-01-10T23:17:19.000Z" - }, - "end": { - "$date": "2021-01-10T23:57:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71b5cc01-8314-4320-b38e-4b25761bba19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-10T23:15:48.000Z" - }, - "end": { - "$date": "2021-01-10T23:57:48.000Z" - }, - "events": [ - { - "uuid": "a7ad9a7b-f6d9-47f9-805e-46950b0be2d5", - "start": { - "$date": "2021-01-10T23:15:48.000Z" - }, - "end": { - "$date": "2021-01-10T23:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e7723288-1ae8-4865-baee-68e586ba4488", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-10T23:47:59.000Z" - }, - "end": { - "$date": "2021-01-11T00:29:31.000Z" - }, - "events": [ - { - "uuid": "ded71fa4-66fe-44ba-ad9f-a99153169300", - "start": { - "$date": "2021-01-10T23:47:59.000Z" - }, - "end": { - "$date": "2021-01-11T00:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cf255f8-30b4-4dcf-8019-d17f6bd01514", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T00:05:39.000Z" - }, - "end": { - "$date": "2021-01-11T00:38:40.000Z" - }, - "events": [ - { - "uuid": "15c5a997-3dc0-4230-b8b8-9264bb72eb68", - "start": { - "$date": "2021-01-11T00:05:39.000Z" - }, - "end": { - "$date": "2021-01-11T00:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eec1851f-43cb-4675-b48c-b578cc4964c1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T00:05:15.000Z" - }, - "end": { - "$date": "2021-01-11T00:38:34.000Z" - }, - "events": [ - { - "uuid": "19068fc2-5103-4a0e-8d0b-f3faf03c9c5d", - "start": { - "$date": "2021-01-11T00:05:15.000Z" - }, - "end": { - "$date": "2021-01-11T00:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c3e98d8-f7a0-42cc-b700-cf60493780d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T00:38:37.000Z" - }, - "end": { - "$date": "2021-01-11T00:38:40.000Z" - }, - "events": [ - { - "uuid": "4436c363-790d-4611-8774-05e790acc503", - "start": { - "$date": "2021-01-11T00:38:37.000Z" - }, - "end": { - "$date": "2021-01-11T00:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "343b3117-5a08-4270-a165-bbd82d9c7101", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-11T00:08:01.000Z" - }, - "end": { - "$date": "2021-01-11T00:25:31.000Z" - }, - "events": [ - { - "uuid": "62f1b2e0-8bd0-4544-8b74-a18e5cacd8d8", - "start": { - "$date": "2021-01-11T00:08:01.000Z" - }, - "end": { - "$date": "2021-01-11T00:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee265a68-c1c0-488b-8f63-4971f2eefeaa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T01:16:20.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:52.000Z" - }, - "events": [ - { - "uuid": "37fe2bc2-6186-45af-abe5-a92b0a6bb3e7", - "start": { - "$date": "2021-01-11T01:16:20.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "fec22a76-a399-4c1c-9ce0-363f3582ed91", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T01:00:17.000Z" - }, - "end": { - "$date": "2021-01-11T01:10:25.000Z" - }, - "events": [ - { - "uuid": "f4985c59-688b-4ae9-8c28-c5a93581f74b", - "start": { - "$date": "2021-01-11T01:00:17.000Z" - }, - "end": { - "$date": "2021-01-11T01:10:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d5d442c-dbc9-4058-bc23-e9da6a4f9572", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T01:16:12.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:47.000Z" - }, - "events": [ - { - "uuid": "ebfe5efe-6d02-450d-9c14-a796993d4bb6", - "start": { - "$date": "2021-01-11T01:16:12.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c8d2717-07b2-4818-b316-4e0caadb8064", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T01:16:09.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:55.000Z" - }, - "events": [ - { - "uuid": "89792fe3-cbea-491a-84ab-bbd25afa169b", - "start": { - "$date": "2021-01-11T01:16:09.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b08ec57d-78b4-4584-915b-70fd86b008f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T01:15:08.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:48.000Z" - }, - "events": [ - { - "uuid": "3c4ccad5-e313-4b14-9fd3-3c0a07bbb0ec", - "start": { - "$date": "2021-01-11T01:15:08.000Z" - }, - "end": { - "$date": "2021-01-11T01:35:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01cfdce3-80f9-475b-8072-ae4e7dc92142", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T01:41:53.000Z" - }, - "end": { - "$date": "2021-01-11T01:56:43.000Z" - }, - "events": [ - { - "uuid": "a3d545f4-972e-4c76-8bd1-f1b58695ff5e", - "start": { - "$date": "2021-01-11T01:41:53.000Z" - }, - "end": { - "$date": "2021-01-11T01:56:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9cf2285-4e82-42cd-93c3-c8c4f39f3e00", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T01:40:39.000Z" - }, - "end": { - "$date": "2021-01-11T01:56:45.000Z" - }, - "events": [ - { - "uuid": "d061783a-c9a6-4ec5-b8ec-12a24278a522", - "start": { - "$date": "2021-01-11T01:40:39.000Z" - }, - "end": { - "$date": "2021-01-11T01:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72f79824-8ba8-4462-870c-d644d76cc7b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T01:41:28.000Z" - }, - "end": { - "$date": "2021-01-11T01:56:37.000Z" - }, - "events": [ - { - "uuid": "bcd1cbde-e98a-45d5-81d0-f119ec6adf89", - "start": { - "$date": "2021-01-11T01:41:28.000Z" - }, - "end": { - "$date": "2021-01-11T01:56:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6e5bc5ec-e605-479f-b2d9-e1d1c93bf0d8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T02:31:12.000Z" - }, - "end": { - "$date": "2021-01-11T03:48:56.000Z" - }, - "events": [ - { - "uuid": "5c1e9efe-d788-4f00-b3c1-1f385e05df17", - "start": { - "$date": "2021-01-11T02:31:12.000Z" - }, - "end": { - "$date": "2021-01-11T03:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2381ad19-73ee-48b1-b2d5-7b21e4e939b6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T01:43:30.000Z" - }, - "end": { - "$date": "2021-01-11T01:54:37.000Z" - }, - "events": [ - { - "uuid": "922792d0-bc28-4385-95fa-1c186260d263", - "start": { - "$date": "2021-01-11T01:43:30.000Z" - }, - "end": { - "$date": "2021-01-11T01:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c014f732-f5b0-4d99-8e2e-e4662ca59945", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T01:59:59.000Z" - }, - "end": { - "$date": "2021-01-11T02:10:03.000Z" - }, - "events": [ - { - "uuid": "ab92386b-83f8-43cc-9a1b-d48209ae4320", - "start": { - "$date": "2021-01-11T01:59:59.000Z" - }, - "end": { - "$date": "2021-01-11T02:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e3e519f-8d2e-4c67-aaab-856783a9b1e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T02:00:43.000Z" - }, - "end": { - "$date": "2021-01-11T02:09:57.000Z" - }, - "events": [ - { - "uuid": "5a143bc7-b2f0-4afd-943b-cd05bb37da7a", - "start": { - "$date": "2021-01-11T02:00:43.000Z" - }, - "end": { - "$date": "2021-01-11T02:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42488ba2-0489-4271-af78-915e5bb3c531", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T02:00:00.000Z" - }, - "end": { - "$date": "2021-01-11T02:10:00.000Z" - }, - "events": [ - { - "uuid": "3b06f93e-3b1e-4bcd-9ad8-d2722f41aa17", - "start": { - "$date": "2021-01-11T02:00:00.000Z" - }, - "end": { - "$date": "2021-01-11T02:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47dbec40-8943-4b0e-8623-a71251bd08d4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T01:59:59.000Z" - }, - "end": { - "$date": "2021-01-11T02:10:00.000Z" - }, - "events": [ - { - "uuid": "30f9eb4d-90fe-46c0-a370-cf1cc9047772", - "start": { - "$date": "2021-01-11T01:59:59.000Z" - }, - "end": { - "$date": "2021-01-11T02:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf092c76-5c1b-4fbf-894b-219ad4e74c26", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T02:12:49.000Z" - }, - "end": { - "$date": "2021-01-11T02:34:03.000Z" - }, - "events": [ - { - "uuid": "b9113841-4278-4228-b2b4-f61431871792", - "start": { - "$date": "2021-01-11T02:12:49.000Z" - }, - "end": { - "$date": "2021-01-11T02:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d907f16-c764-470d-96ba-63fc7cb5212e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T02:12:45.000Z" - }, - "end": { - "$date": "2021-01-11T02:34:01.000Z" - }, - "events": [ - { - "uuid": "fda9c512-ed87-4857-93bb-f39ce3fd08c9", - "start": { - "$date": "2021-01-11T02:12:45.000Z" - }, - "end": { - "$date": "2021-01-11T02:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce3da290-4a66-4c9e-aac6-d4c91cebdcaf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T02:15:03.000Z" - }, - "end": { - "$date": "2021-01-11T02:33:53.000Z" - }, - "events": [ - { - "uuid": "32fb1371-7298-4950-97ca-a3b2dc21029d", - "start": { - "$date": "2021-01-11T02:15:03.000Z" - }, - "end": { - "$date": "2021-01-11T02:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3b62322-52bc-4293-b556-8c1a086e5995", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T02:12:46.000Z" - }, - "end": { - "$date": "2021-01-11T02:34:03.000Z" - }, - "events": [ - { - "uuid": "3ab12509-7c39-454b-ba29-d9559fcb3b35", - "start": { - "$date": "2021-01-11T02:12:46.000Z" - }, - "end": { - "$date": "2021-01-11T02:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fe8efb21-7477-4f2c-a5aa-40cbdd649729", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-11T02:11:22.000Z" - }, - "end": { - "$date": "2021-01-11T03:10:59.000Z" - }, - "events": [ - { - "uuid": "ab9437a8-a9ee-4bcd-b9e1-85b8c43ff2d6", - "start": { - "$date": "2021-01-11T02:11:22.000Z" - }, - "end": { - "$date": "2021-01-11T03:10:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7ef5e378-8d44-407e-9f30-f844859d4c75", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T02:39:15.000Z" - }, - "end": { - "$date": "2021-01-11T03:09:38.000Z" - }, - "events": [ - { - "uuid": "a1122997-d54c-4d6c-b0e7-0c8139105be4", - "start": { - "$date": "2021-01-11T02:39:15.000Z" - }, - "end": { - "$date": "2021-01-11T03:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fffb5d1b-4221-4907-8c27-e6b5d33f70e6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T02:38:16.000Z" - }, - "end": { - "$date": "2021-01-11T02:58:08.000Z" - }, - "events": [ - { - "uuid": "bbd62870-ba97-4e90-9566-11beb3e88a82", - "start": { - "$date": "2021-01-11T02:38:16.000Z" - }, - "end": { - "$date": "2021-01-11T02:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb4a0497-e6e3-4ab2-9d78-16c4def53bb4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T02:38:53.000Z" - }, - "end": { - "$date": "2021-01-11T02:57:58.000Z" - }, - "events": [ - { - "uuid": "2c1a1161-d56e-4e19-aa74-15c23ebf1165", - "start": { - "$date": "2021-01-11T02:38:53.000Z" - }, - "end": { - "$date": "2021-01-11T02:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bfc8d55-cb13-4871-ac43-a5ef616719e2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T02:38:16.000Z" - }, - "end": { - "$date": "2021-01-11T02:58:02.000Z" - }, - "events": [ - { - "uuid": "a5b3cdf4-040a-4d78-b7f2-215b70a7d889", - "start": { - "$date": "2021-01-11T02:38:16.000Z" - }, - "end": { - "$date": "2021-01-11T02:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22ebc733-b111-475e-b5f2-446095345aa4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T02:38:17.000Z" - }, - "end": { - "$date": "2021-01-11T02:57:57.000Z" - }, - "events": [ - { - "uuid": "d2609cd3-06fb-42a2-948e-ce29ab6f8191", - "start": { - "$date": "2021-01-11T02:38:17.000Z" - }, - "end": { - "$date": "2021-01-11T02:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b887325e-a0d3-436e-b351-8731e249861e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T03:02:16.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:46.000Z" - }, - "events": [ - { - "uuid": "f4428a46-aaa9-48d9-bc15-6319e850087f", - "start": { - "$date": "2021-01-11T03:02:16.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e90d2cd3-b355-457d-a5fb-d20ce8d5c33d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T03:02:09.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:38.000Z" - }, - "events": [ - { - "uuid": "19296be0-a27b-4723-8eef-55b485131322", - "start": { - "$date": "2021-01-11T03:02:09.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cc971ad-29ae-4f03-b644-5739d902276f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T03:02:16.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:48.000Z" - }, - "events": [ - { - "uuid": "c31ba954-bbf3-4ef2-a03b-91b5e24b0bb5", - "start": { - "$date": "2021-01-11T03:02:16.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfa129b5-85ec-48ef-a9d3-923a93552368", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T03:02:13.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:38.000Z" - }, - "events": [ - { - "uuid": "c8da3893-e555-4c50-bf1c-9d24d15e6d09", - "start": { - "$date": "2021-01-11T03:02:13.000Z" - }, - "end": { - "$date": "2021-01-11T03:23:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3c09d30b-6007-4418-bba1-f59054b0044c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-11T03:03:46.000Z" - }, - "end": { - "$date": "2021-01-11T05:18:01.000Z" - }, - "events": [ - { - "uuid": "5c316a6c-50a4-412d-bb52-3fd8d07fff77", - "start": { - "$date": "2021-01-11T03:03:46.000Z" - }, - "end": { - "$date": "2021-01-11T05:18:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "826187f9-afb3-4ef8-8409-f0e305ae34b8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T03:21:59.000Z" - }, - "end": { - "$date": "2021-01-11T03:46:58.000Z" - }, - "events": [ - { - "uuid": "7e4d800e-c811-48e1-99d5-5e166c6a9920", - "start": { - "$date": "2021-01-11T03:21:59.000Z" - }, - "end": { - "$date": "2021-01-11T03:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "003021e8-e0da-4ae4-b409-b27e29909470", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-11T03:14:35.000Z" - }, - "end": { - "$date": "2021-01-11T03:44:15.000Z" - }, - "events": [ - { - "uuid": "fffec996-7892-4ee1-a13b-aae1c6c3176e", - "start": { - "$date": "2021-01-11T03:14:35.000Z" - }, - "end": { - "$date": "2021-01-11T03:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87e9fa52-60d2-4b3e-b2b7-7590fae1148c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T03:26:47.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:07.000Z" - }, - "events": [ - { - "uuid": "8dc1310d-893d-4b1a-b658-ed56def99971", - "start": { - "$date": "2021-01-11T03:26:47.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebd61400-55e0-4368-894c-cca27a9c6223", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T03:26:47.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:08.000Z" - }, - "events": [ - { - "uuid": "70af7ff3-3300-42ff-9d78-0ee013cd6853", - "start": { - "$date": "2021-01-11T03:26:47.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "213b5e8d-6db7-4a78-87b2-f0ea0441a1b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T03:26:54.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:04.000Z" - }, - "events": [ - { - "uuid": "f152b68f-9285-42f6-8f95-7cc914f8fef1", - "start": { - "$date": "2021-01-11T03:26:54.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1327fed-1edc-4364-ade5-52280df37334", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T03:26:49.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:04.000Z" - }, - "events": [ - { - "uuid": "fc287a1e-b864-4084-9d05-62374b268fc0", - "start": { - "$date": "2021-01-11T03:26:49.000Z" - }, - "end": { - "$date": "2021-01-11T03:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0957ed4f-5166-4e5a-a7c3-bb14f9c48232", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T03:54:29.000Z" - }, - "end": { - "$date": "2021-01-11T04:15:24.000Z" - }, - "events": [ - { - "uuid": "fef47215-b235-46b1-9abe-91cb3789ad78", - "start": { - "$date": "2021-01-11T03:54:29.000Z" - }, - "end": { - "$date": "2021-01-11T04:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "93b966b6-d0cd-4d8c-860b-ef4f3fd96a95", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T03:49:15.000Z" - }, - "end": { - "$date": "2021-01-11T03:53:46.000Z" - }, - "events": [ - { - "uuid": "bbad7ba5-d9e5-4197-bd4a-609fe2b24ebd", - "start": { - "$date": "2021-01-11T03:49:15.000Z" - }, - "end": { - "$date": "2021-01-11T03:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c00420a4-6766-45b6-8a41-edac9df2ac85", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T03:54:28.000Z" - }, - "end": { - "$date": "2021-01-11T04:15:19.000Z" - }, - "events": [ - { - "uuid": "50e93aed-1aa5-4fb6-a690-193a9d33949d", - "start": { - "$date": "2021-01-11T03:54:28.000Z" - }, - "end": { - "$date": "2021-01-11T04:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e09bfa9e-7f80-4056-877e-a8a166084fa4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T03:56:13.000Z" - }, - "end": { - "$date": "2021-01-11T04:15:14.000Z" - }, - "events": [ - { - "uuid": "b1364dce-1464-42dc-89a4-8e75b6ab5ad7", - "start": { - "$date": "2021-01-11T03:56:13.000Z" - }, - "end": { - "$date": "2021-01-11T04:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b3ea27b7-02dc-4cc3-bfef-b02249b5b05f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T04:03:43.000Z" - }, - "end": { - "$date": "2021-01-11T04:10:10.000Z" - }, - "events": [ - { - "uuid": "7031ad57-47c0-4461-ae24-c9ecc8eb1a32", - "start": { - "$date": "2021-01-11T04:03:43.000Z" - }, - "end": { - "$date": "2021-01-11T04:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "565124f0-f363-4d1f-92b3-24845e1f43ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T04:11:19.000Z" - }, - "end": { - "$date": "2021-01-11T04:12:55.000Z" - }, - "events": [ - { - "uuid": "34f0f15a-b917-4184-9f86-1057cac92d9d", - "start": { - "$date": "2021-01-11T04:11:19.000Z" - }, - "end": { - "$date": "2021-01-11T04:12:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66798a47-35a4-43e5-8b90-d48d9942d5ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T04:29:01.000Z" - }, - "end": { - "$date": "2021-01-11T04:44:00.000Z" - }, - "events": [ - { - "uuid": "c55900f3-fd2c-48d0-8044-a8ee4bcf0c31", - "start": { - "$date": "2021-01-11T04:29:01.000Z" - }, - "end": { - "$date": "2021-01-11T04:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75afeb5e-98f7-4829-959a-0c9c122bbe07", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T04:15:57.000Z" - }, - "end": { - "$date": "2021-01-11T04:18:29.000Z" - }, - "events": [ - { - "uuid": "cde771f9-4435-4028-bdc9-e1a7b81bf44b", - "start": { - "$date": "2021-01-11T04:15:57.000Z" - }, - "end": { - "$date": "2021-01-11T04:18:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6b29b03-05c5-4b14-ab47-93a21442a9df", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T04:15:58.000Z" - }, - "end": { - "$date": "2021-01-11T04:18:29.000Z" - }, - "events": [ - { - "uuid": "d802449d-a34e-4a58-b132-d0cf9ffc030d", - "start": { - "$date": "2021-01-11T04:15:58.000Z" - }, - "end": { - "$date": "2021-01-11T04:18:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6cfa7da5-efd0-4835-ae6d-6c5a442c05c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T04:53:44.000Z" - }, - "end": { - "$date": "2021-01-11T04:53:55.000Z" - }, - "events": [ - { - "uuid": "04657a83-1433-483d-abba-f37f61f021a2", - "start": { - "$date": "2021-01-11T04:53:44.000Z" - }, - "end": { - "$date": "2021-01-11T04:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "30200ba2-8e13-474b-a598-be14b68a180e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-11T04:16:47.000Z" - }, - "end": { - "$date": "2021-01-11T04:18:38.000Z" - }, - "events": [ - { - "uuid": "7518d0f2-4d64-4925-a3ca-037d2b265643", - "start": { - "$date": "2021-01-11T04:16:47.000Z" - }, - "end": { - "$date": "2021-01-11T04:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ef43b3ae-4464-4725-be2c-b31479bf2798", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-11T04:18:47.000Z" - }, - "end": { - "$date": "2021-01-11T05:22:34.000Z" - }, - "events": [ - { - "uuid": "a4e09682-9f35-4ff7-bd3c-7436f64971ae", - "start": { - "$date": "2021-01-11T04:18:47.000Z" - }, - "end": { - "$date": "2021-01-11T05:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "16a08907-c3b5-4f12-9253-6a606f4990fd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T04:22:40.000Z" - }, - "end": { - "$date": "2021-01-11T06:14:59.000Z" - }, - "events": [ - { - "uuid": "df47ce6b-d3c5-4c68-b329-86dc0b76acac", - "start": { - "$date": "2021-01-11T04:22:40.000Z" - }, - "end": { - "$date": "2021-01-11T06:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ce6017a-1859-42c9-b0a4-42287ee1be1e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T04:28:09.000Z" - }, - "end": { - "$date": "2021-01-11T04:44:06.000Z" - }, - "events": [ - { - "uuid": "0b1f8fbe-739f-4302-9d8c-f6be41a724ea", - "start": { - "$date": "2021-01-11T04:28:09.000Z" - }, - "end": { - "$date": "2021-01-11T04:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71db4118-1f01-49b0-8f76-a9da76d93653", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T04:28:19.000Z" - }, - "end": { - "$date": "2021-01-11T04:44:00.000Z" - }, - "events": [ - { - "uuid": "6e310436-2bcf-4e8a-bcd5-5630ee13ff68", - "start": { - "$date": "2021-01-11T04:28:19.000Z" - }, - "end": { - "$date": "2021-01-11T04:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf59ec2e-16ee-4c11-90c8-3505eefa4762", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T04:48:41.000Z" - }, - "end": { - "$date": "2021-01-11T04:59:51.000Z" - }, - "events": [ - { - "uuid": "fdeabc57-f32e-4778-9351-6adfcf284a59", - "start": { - "$date": "2021-01-11T04:48:41.000Z" - }, - "end": { - "$date": "2021-01-11T04:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d19ef0d6-3970-442a-b301-4267fc436a99", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-11T04:48:35.000Z" - }, - "end": { - "$date": "2021-01-11T04:59:51.000Z" - }, - "events": [ - { - "uuid": "601e70af-e387-40a1-881f-1c15efab7951", - "start": { - "$date": "2021-01-11T04:48:35.000Z" - }, - "end": { - "$date": "2021-01-11T04:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4745ffca-1179-4902-8e18-abff625a1d66", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T04:48:40.000Z" - }, - "end": { - "$date": "2021-01-11T04:59:46.000Z" - }, - "events": [ - { - "uuid": "71f89f20-4e8e-4445-a67b-01cd367552ce", - "start": { - "$date": "2021-01-11T04:48:40.000Z" - }, - "end": { - "$date": "2021-01-11T04:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "543eae1e-6952-45b8-826a-0db715ca1763", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-11T04:46:20.000Z" - }, - "end": { - "$date": "2021-01-11T04:55:21.000Z" - }, - "events": [ - { - "uuid": "2dcd29ed-a78f-4ae9-834a-8717c772339b", - "start": { - "$date": "2021-01-11T04:46:20.000Z" - }, - "end": { - "$date": "2021-01-11T04:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0602a612-859d-4b82-93f7-918e51962aaa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-11T04:56:51.000Z" - }, - "end": { - "$date": "2021-01-11T06:00:33.000Z" - }, - "events": [ - { - "uuid": "2da1859c-b046-4635-9703-2c943bd823d8", - "start": { - "$date": "2021-01-11T04:56:51.000Z" - }, - "end": { - "$date": "2021-01-11T06:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cb8394e5-7566-4ab3-b6e2-505c07b149f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T04:57:29.000Z" - }, - "end": { - "$date": "2021-01-11T08:20:59.000Z" - }, - "events": [ - { - "uuid": "4ac22cf7-e19a-4972-a083-5f8a4074be91", - "start": { - "$date": "2021-01-11T04:57:29.000Z" - }, - "end": { - "$date": "2021-01-11T08:20:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37e6f3b4-64b8-416c-aff6-eb8f8f7112c6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T05:18:39.000Z" - }, - "end": { - "$date": "2021-01-11T05:55:26.000Z" - }, - "events": [ - { - "uuid": "b1322d06-c3e8-4cd4-91be-66718667b462", - "start": { - "$date": "2021-01-11T05:18:39.000Z" - }, - "end": { - "$date": "2021-01-11T05:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca74b1a0-1967-4a69-93c6-9be240090aca", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-11T05:21:27.000Z" - }, - "end": { - "$date": "2021-01-11T05:55:26.000Z" - }, - "events": [ - { - "uuid": "810839e8-ece1-4c84-aec5-b55200d4eb95", - "start": { - "$date": "2021-01-11T05:21:27.000Z" - }, - "end": { - "$date": "2021-01-11T05:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a36c8914-ef7f-48bd-b41c-0bbc0284588d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T05:18:43.000Z" - }, - "end": { - "$date": "2021-01-11T05:55:26.000Z" - }, - "events": [ - { - "uuid": "e578861a-3072-47fc-8243-6737871a6db6", - "start": { - "$date": "2021-01-11T05:18:43.000Z" - }, - "end": { - "$date": "2021-01-11T05:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "766927cc-9e0a-4e11-95ee-cbd82037de95", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-11T05:18:25.000Z" - }, - "end": { - "$date": "2021-01-11T05:25:02.000Z" - }, - "events": [ - { - "uuid": "a38f825b-ee1b-40cd-9c68-014b31699419", - "start": { - "$date": "2021-01-11T05:18:25.000Z" - }, - "end": { - "$date": "2021-01-11T05:25:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e414e3af-3b00-46da-b221-815941a6ed45", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-11T05:22:44.000Z" - }, - "end": { - "$date": "2021-01-11T05:40:24.000Z" - }, - "events": [ - { - "uuid": "eb0aa425-e235-4dfa-b924-31796835bd38", - "start": { - "$date": "2021-01-11T05:22:44.000Z" - }, - "end": { - "$date": "2021-01-11T05:40:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ec618a8f-3aff-4ac3-abe6-b78731443c42", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-11T05:30:16.000Z" - }, - "end": { - "$date": "2021-01-11T05:40:25.000Z" - }, - "events": [ - { - "uuid": "46f6cd36-b2df-46dc-9f39-19b3e3e899ae", - "start": { - "$date": "2021-01-11T05:30:16.000Z" - }, - "end": { - "$date": "2021-01-11T05:40:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0cd1d7c6-faad-4252-a1e9-cafd8f3b6bc2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-11T05:30:57.000Z" - }, - "end": { - "$date": "2021-01-11T05:50:28.000Z" - }, - "events": [ - { - "uuid": "f341047b-f558-41e7-80d0-20246c1c5179", - "start": { - "$date": "2021-01-11T05:30:57.000Z" - }, - "end": { - "$date": "2021-01-11T05:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "86c221c0-a10c-4145-b6bc-12859aa6f762", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-11T05:54:14.000Z" - }, - "end": { - "$date": "2021-01-11T06:15:30.000Z" - }, - "events": [ - { - "uuid": "f0b3222b-2d62-4d0a-a86d-438050c3bf44", - "start": { - "$date": "2021-01-11T05:54:14.000Z" - }, - "end": { - "$date": "2021-01-11T06:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "527387fc-eef7-4267-99db-3fad9886a439", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T05:57:36.000Z" - }, - "end": { - "$date": "2021-01-11T06:25:27.000Z" - }, - "events": [ - { - "uuid": "41e49f54-9571-4659-bcbe-7d86b53f6ef0", - "start": { - "$date": "2021-01-11T05:57:36.000Z" - }, - "end": { - "$date": "2021-01-11T06:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b233c36c-8484-4a08-80c3-3f54e2e0147c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T06:02:40.000Z" - }, - "end": { - "$date": "2021-01-11T07:08:15.000Z" - }, - "events": [ - { - "uuid": "c6b462d5-3750-4ece-bad4-19e548b0011c", - "start": { - "$date": "2021-01-11T06:02:40.000Z" - }, - "end": { - "$date": "2021-01-11T07:08:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5a7c30a5-9f34-4020-8571-fcaf4c1f2036", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-11T06:07:39.000Z" - }, - "end": { - "$date": "2021-01-11T07:46:18.000Z" - }, - "events": [ - { - "uuid": "25c84ab1-f274-4862-aab5-89dffb57a1ac", - "start": { - "$date": "2021-01-11T06:07:39.000Z" - }, - "end": { - "$date": "2021-01-11T07:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e0e75dc3-8a9f-4ae5-b3ce-2b155b1adb7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T06:11:24.000Z" - }, - "end": { - "$date": "2021-01-11T07:15:44.000Z" - }, - "events": [ - { - "uuid": "4848ab6e-0450-4f11-b663-57eebb937998", - "start": { - "$date": "2021-01-11T06:11:24.000Z" - }, - "end": { - "$date": "2021-01-11T07:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4fbe1d33-48b9-4de2-8d21-918639b03676", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T17:30:05.000Z" - }, - "end": { - "$date": "2021-01-11T19:24:19.000Z" - }, - "events": [ - { - "uuid": "67150261-466d-4dc1-85cb-66c8230d19de", - "start": { - "$date": "2021-01-11T17:30:05.000Z" - }, - "end": { - "$date": "2021-01-11T19:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ca3e53b1-b61c-4a24-81a4-ca6c04da8a43", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T17:40:11.000Z" - }, - "end": { - "$date": "2021-01-11T18:39:27.000Z" - }, - "events": [ - { - "uuid": "0dda5cf9-bb70-4216-9ae3-9277b2aa4894", - "start": { - "$date": "2021-01-11T17:40:11.000Z" - }, - "end": { - "$date": "2021-01-11T18:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9b33e46f-1710-47c2-9140-f47fe755cde0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T19:45:57.000Z" - }, - "end": { - "$date": "2021-01-11T20:14:34.000Z" - }, - "events": [ - { - "uuid": "fda865f2-3794-4c87-9a84-173baad4cc85", - "start": { - "$date": "2021-01-11T19:45:57.000Z" - }, - "end": { - "$date": "2021-01-11T20:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "44143479-be62-4715-afb7-de6a7bd58e8d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-11T20:13:10.000Z" - }, - "end": { - "$date": "2021-01-11T20:44:58.000Z" - }, - "events": [ - { - "uuid": "6a0165ca-ea50-4fb3-98e5-22eaa8138bcf", - "start": { - "$date": "2021-01-11T20:13:10.000Z" - }, - "end": { - "$date": "2021-01-11T20:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8eac3013-639c-4411-a278-1dbbbfb46586", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T20:17:44.000Z" - }, - "end": { - "$date": "2021-01-11T23:06:12.000Z" - }, - "events": [ - { - "uuid": "58ff448b-382a-4d3b-b150-15e9e7ef863e", - "start": { - "$date": "2021-01-11T20:17:44.000Z" - }, - "end": { - "$date": "2021-01-11T23:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "06526267-c78c-44cb-999c-468d7f93996c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T20:21:10.000Z" - }, - "end": { - "$date": "2021-01-11T20:54:38.000Z" - }, - "events": [ - { - "uuid": "f588060c-76e7-4690-97a2-d73947a85920", - "start": { - "$date": "2021-01-11T20:21:10.000Z" - }, - "end": { - "$date": "2021-01-11T20:54:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "97fe3d25-922b-4ac5-9fd9-15434160d7a8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-11T20:36:47.000Z" - }, - "end": { - "$date": "2021-01-11T21:01:40.000Z" - }, - "events": [ - { - "uuid": "79564c14-e446-4ef4-8116-cc8eb66bf549", - "start": { - "$date": "2021-01-11T20:36:47.000Z" - }, - "end": { - "$date": "2021-01-11T21:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "43a2e69d-b564-4521-902e-2c50f6eff2a7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T20:59:24.000Z" - }, - "end": { - "$date": "2021-01-11T21:16:44.000Z" - }, - "events": [ - { - "uuid": "fe2354cd-2d84-495a-8ec3-c11144ca9d8b", - "start": { - "$date": "2021-01-11T20:59:24.000Z" - }, - "end": { - "$date": "2021-01-11T21:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f090935b-e43e-4bff-a8b9-56f451152261", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T21:12:37.000Z" - }, - "end": { - "$date": "2021-01-11T21:50:07.000Z" - }, - "events": [ - { - "uuid": "ba45b0dc-bdbc-41d6-9623-bbfb01fd1c2f", - "start": { - "$date": "2021-01-11T21:12:37.000Z" - }, - "end": { - "$date": "2021-01-11T21:50:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b560d337-10b2-40a4-b811-8a8d785a2f17", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T21:30:11.000Z" - }, - "end": { - "$date": "2021-01-11T22:01:50.000Z" - }, - "events": [ - { - "uuid": "2fa633b0-2e96-424c-a63d-f2d3d962b542", - "start": { - "$date": "2021-01-11T21:30:11.000Z" - }, - "end": { - "$date": "2021-01-11T22:01:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3c7844f2-2216-4218-9eef-7a468583ae4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T21:52:08.000Z" - }, - "end": { - "$date": "2021-01-11T22:08:24.000Z" - }, - "events": [ - { - "uuid": "585818ae-f1d0-4b86-8d66-97466e1e6323", - "start": { - "$date": "2021-01-11T21:52:08.000Z" - }, - "end": { - "$date": "2021-01-11T22:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a5a9a3f6-9b0f-4d55-8b7f-7f37b0999c50", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T22:41:31.000Z" - }, - "end": { - "$date": "2021-01-11T23:00:01.000Z" - }, - "events": [ - { - "uuid": "5c405b9a-0147-4298-bbe9-95178225e7f0", - "start": { - "$date": "2021-01-11T22:41:31.000Z" - }, - "end": { - "$date": "2021-01-11T23:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "9d286aa2-2c78-455d-b504-497e6767785a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T22:43:07.000Z" - }, - "end": { - "$date": "2021-01-11T23:02:44.000Z" - }, - "events": [ - { - "uuid": "eda9e630-1c9c-4aba-bf73-4f9689058e2d", - "start": { - "$date": "2021-01-11T22:43:07.000Z" - }, - "end": { - "$date": "2021-01-11T23:02:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f17c38b9-0563-4f74-b711-bd48dcea5bab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T23:06:26.000Z" - }, - "end": { - "$date": "2021-01-11T23:17:22.000Z" - }, - "events": [ - { - "uuid": "cbec77eb-8bcf-434c-8c4b-e80628100fbb", - "start": { - "$date": "2021-01-11T23:06:26.000Z" - }, - "end": { - "$date": "2021-01-11T23:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2a23e50-76f3-46d5-bfb6-880296c46551", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-11T23:11:59.000Z" - }, - "end": { - "$date": "2021-01-11T23:13:00.000Z" - }, - "events": [ - { - "uuid": "2819babe-f3db-41f8-85be-2918dcdb5cdb", - "start": { - "$date": "2021-01-11T23:11:59.000Z" - }, - "end": { - "$date": "2021-01-11T23:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "88b8b356-2f8a-4866-912d-2d7942d9b309", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-11T23:15:46.000Z" - }, - "end": { - "$date": "2021-01-12T00:54:58.000Z" - }, - "events": [ - { - "uuid": "961599c4-cb02-4d92-b6b0-2e9959aa16d3", - "start": { - "$date": "2021-01-11T23:15:46.000Z" - }, - "end": { - "$date": "2021-01-12T00:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "25798032-6866-4401-bab1-276d746f59f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T23:18:02.000Z" - }, - "end": { - "$date": "2021-01-11T23:42:23.000Z" - }, - "events": [ - { - "uuid": "8c306036-b089-4c53-b925-76ecbd5d969b", - "start": { - "$date": "2021-01-11T23:18:02.000Z" - }, - "end": { - "$date": "2021-01-11T23:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1382f3d9-19cb-44c5-a6a3-463c08c8293e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T23:20:04.000Z" - }, - "end": { - "$date": "2021-01-11T23:53:01.000Z" - }, - "events": [ - { - "uuid": "f4487f71-d915-4639-9bb3-d19aea817b00", - "start": { - "$date": "2021-01-11T23:20:04.000Z" - }, - "end": { - "$date": "2021-01-11T23:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5db41178-d56b-486e-a29f-c6f3c66cdf9e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T23:26:07.000Z" - }, - "end": { - "$date": "2021-01-11T23:34:08.000Z" - }, - "events": [ - { - "uuid": "e58b33a1-d9c4-47cb-b138-783e24ff608e", - "start": { - "$date": "2021-01-11T23:26:07.000Z" - }, - "end": { - "$date": "2021-01-11T23:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4916b0e-3ec6-467f-b7d9-603ab7ae5c8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-11T23:53:57.000Z" - }, - "end": { - "$date": "2021-01-12T00:22:41.000Z" - }, - "events": [ - { - "uuid": "2595acc8-37fa-448a-8e84-9ba640aa6c00", - "start": { - "$date": "2021-01-11T23:53:57.000Z" - }, - "end": { - "$date": "2021-01-12T00:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01957a7c-8dda-470b-823d-7c63114fa52f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T23:41:27.000Z" - }, - "end": { - "$date": "2021-01-11T23:44:05.000Z" - }, - "events": [ - { - "uuid": "dd26db39-ec30-407e-88a8-3f56bada9737", - "start": { - "$date": "2021-01-11T23:41:27.000Z" - }, - "end": { - "$date": "2021-01-11T23:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f6e93b0-2654-4ed3-a1b1-7725bdc5be33", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T23:41:26.000Z" - }, - "end": { - "$date": "2021-01-11T23:44:05.000Z" - }, - "events": [ - { - "uuid": "ed60178e-a462-4cd4-8c4a-84b76930d46b", - "start": { - "$date": "2021-01-11T23:41:26.000Z" - }, - "end": { - "$date": "2021-01-11T23:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "04703568-77b7-4112-b99f-8d750da4b471", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-11T23:42:39.000Z" - }, - "end": { - "$date": "2021-01-12T01:48:04.000Z" - }, - "events": [ - { - "uuid": "9c433e5c-eff7-4e47-a0a7-41e9a628c35c", - "start": { - "$date": "2021-01-11T23:42:39.000Z" - }, - "end": { - "$date": "2021-01-12T01:48:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9bf171cb-f555-45d9-abab-c1a054658634", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-11T23:43:11.000Z" - }, - "end": { - "$date": "2021-01-12T00:34:18.000Z" - }, - "events": [ - { - "uuid": "cd8abb7a-d8a2-4487-b02f-e6518ff58950", - "start": { - "$date": "2021-01-11T23:43:11.000Z" - }, - "end": { - "$date": "2021-01-12T00:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c3ced37-ddef-470c-aae8-9a52258b79cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-11T23:52:37.000Z" - }, - "end": { - "$date": "2021-01-12T00:22:55.000Z" - }, - "events": [ - { - "uuid": "8f80de15-83e3-4a7c-a5f7-ae5819786942", - "start": { - "$date": "2021-01-11T23:52:37.000Z" - }, - "end": { - "$date": "2021-01-12T00:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b976893-08ea-4ada-8c1b-e2f57eec42ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-11T23:52:35.000Z" - }, - "end": { - "$date": "2021-01-12T00:22:52.000Z" - }, - "events": [ - { - "uuid": "49414730-1e1a-4fb1-8ea5-f00331b985fd", - "start": { - "$date": "2021-01-11T23:52:35.000Z" - }, - "end": { - "$date": "2021-01-12T00:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "87f9fc23-e190-4384-943e-dc92fa6dcd9a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-11T23:59:01.000Z" - }, - "end": { - "$date": "2021-01-12T00:32:30.000Z" - }, - "events": [ - { - "uuid": "f37ccb22-1e78-478f-ad15-de02f92fe611", - "start": { - "$date": "2021-01-11T23:59:01.000Z" - }, - "end": { - "$date": "2021-01-12T00:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "df3a0f20-4b62-4593-b46c-74cf6112b5f4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-12T00:20:06.000Z" - }, - "end": { - "$date": "2021-01-12T00:34:19.000Z" - }, - "events": [ - { - "uuid": "75377760-2d09-4188-8ed6-6b01ec41322d", - "start": { - "$date": "2021-01-12T00:20:06.000Z" - }, - "end": { - "$date": "2021-01-12T00:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b20b28ad-f235-42fe-a919-01a6cfc404bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-12T00:37:52.000Z" - }, - "end": { - "$date": "2021-01-12T01:06:36.000Z" - }, - "events": [ - { - "uuid": "a634f874-d047-4770-8ac1-0479a56a2d48", - "start": { - "$date": "2021-01-12T00:37:52.000Z" - }, - "end": { - "$date": "2021-01-12T01:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2be34cbf-7939-42f8-81a7-a09bdda2b40b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T00:37:28.000Z" - }, - "end": { - "$date": "2021-01-12T01:06:34.000Z" - }, - "events": [ - { - "uuid": "511b63fc-9d83-4cd9-b984-03f5a3ba4c41", - "start": { - "$date": "2021-01-12T00:37:28.000Z" - }, - "end": { - "$date": "2021-01-12T01:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42f92454-710e-4d2c-a659-8e03ecadc373", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T00:38:58.000Z" - }, - "end": { - "$date": "2021-01-12T01:06:47.000Z" - }, - "events": [ - { - "uuid": "3a4c6795-26e5-4f6b-b300-c2e0b0c27b1a", - "start": { - "$date": "2021-01-12T00:38:58.000Z" - }, - "end": { - "$date": "2021-01-12T01:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ee8b4c53-56e1-4ab0-916d-7209510b3651", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-12T00:39:55.000Z" - }, - "end": { - "$date": "2021-01-12T00:47:07.000Z" - }, - "events": [ - { - "uuid": "c779f8af-ab07-4d10-b0a7-6acc4b8bcd4a", - "start": { - "$date": "2021-01-12T00:39:55.000Z" - }, - "end": { - "$date": "2021-01-12T00:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c256b1dc-9bfa-4137-b138-6b2863b24a0f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-12T01:27:54.000Z" - }, - "end": { - "$date": "2021-01-12T01:38:00.000Z" - }, - "events": [ - { - "uuid": "39dd9116-aceb-4f83-938e-6d3637c1435e", - "start": { - "$date": "2021-01-12T01:27:54.000Z" - }, - "end": { - "$date": "2021-01-12T01:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", - "uuid": "3c5c9f49-7657-492c-ad09-9f51c44557c0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-12T02:00:41.000Z" - }, - "end": { - "$date": "2021-01-12T02:21:03.000Z" - }, - "events": [ - { - "uuid": "131915e4-8f1b-4b6e-9650-d887e6cb4d70", - "start": { - "$date": "2021-01-12T02:00:41.000Z" - }, - "end": { - "$date": "2021-01-12T02:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c266c79e-f205-4f3a-adbd-0cbd5ff57f68", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-12T02:13:28.000Z" - }, - "end": { - "$date": "2021-01-12T04:15:49.000Z" - }, - "events": [ - { - "uuid": "ff006b5c-167a-4436-845c-cc19b59240da", - "start": { - "$date": "2021-01-12T02:13:28.000Z" - }, - "end": { - "$date": "2021-01-12T04:15:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "78a07c06-58e1-4cfd-b007-770431a2d2c5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-12T02:45:26.000Z" - }, - "end": { - "$date": "2021-01-12T04:33:28.000Z" - }, - "events": [ - { - "uuid": "5127f98f-1e17-4988-b42b-dd95a9baf1f3", - "start": { - "$date": "2021-01-12T02:45:26.000Z" - }, - "end": { - "$date": "2021-01-12T04:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a4a562e4-3f06-467a-8c77-38060019ad1d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-12T02:52:21.000Z" - }, - "end": { - "$date": "2021-01-12T06:24:24.000Z" - }, - "events": [ - { - "uuid": "0f672fab-5ec3-45db-ad6c-171523b09eca", - "start": { - "$date": "2021-01-12T02:52:21.000Z" - }, - "end": { - "$date": "2021-01-12T06:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "356d143d-4df8-4c63-9164-d69a96bb220d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T03:13:15.000Z" - }, - "end": { - "$date": "2021-01-12T03:49:57.000Z" - }, - "events": [ - { - "uuid": "a4cff412-9473-475f-9406-ef469041809f", - "start": { - "$date": "2021-01-12T03:13:15.000Z" - }, - "end": { - "$date": "2021-01-12T03:49:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f8e6db4-01e3-45cb-8876-efbfd0d1f70f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-12T03:13:14.000Z" - }, - "end": { - "$date": "2021-01-12T03:49:46.000Z" - }, - "events": [ - { - "uuid": "6cb48202-06db-4167-8cf2-9867e0d30a03", - "start": { - "$date": "2021-01-12T03:13:14.000Z" - }, - "end": { - "$date": "2021-01-12T03:49:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31c9c92c-c400-4681-b512-81e5dde95bc1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T03:24:15.000Z" - }, - "end": { - "$date": "2021-01-12T03:41:15.000Z" - }, - "events": [ - { - "uuid": "8b0a8ce1-b962-4427-8960-ecf081baf159", - "start": { - "$date": "2021-01-12T03:24:15.000Z" - }, - "end": { - "$date": "2021-01-12T03:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6c083231-7936-48e2-bb4f-d3020028f93b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-12T03:24:32.000Z" - }, - "end": { - "$date": "2021-01-12T04:21:18.000Z" - }, - "events": [ - { - "uuid": "4b95809b-1e2c-4b2f-b6d7-efb3017a3201", - "start": { - "$date": "2021-01-12T03:24:32.000Z" - }, - "end": { - "$date": "2021-01-12T04:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d31a80be-5efa-4485-96e4-8811add92e00", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-12T03:39:17.000Z" - }, - "end": { - "$date": "2021-01-12T03:50:43.000Z" - }, - "events": [ - { - "uuid": "00d18566-245b-41a9-8f7c-2be886da0c22", - "start": { - "$date": "2021-01-12T03:39:17.000Z" - }, - "end": { - "$date": "2021-01-12T03:50:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b2b2313-7389-4ba2-8898-2331e4723fce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T04:01:07.000Z" - }, - "end": { - "$date": "2021-01-12T04:31:01.000Z" - }, - "events": [ - { - "uuid": "a45144b7-39cf-4cca-bdd1-f0b4f61a6fea", - "start": { - "$date": "2021-01-12T04:01:07.000Z" - }, - "end": { - "$date": "2021-01-12T04:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67093b12-a897-4a2d-9760-21a5c4576ad3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T03:55:33.000Z" - }, - "end": { - "$date": "2021-01-12T04:11:15.000Z" - }, - "events": [ - { - "uuid": "59957e71-5185-4593-8e8b-8aa7b5a02294", - "start": { - "$date": "2021-01-12T03:55:33.000Z" - }, - "end": { - "$date": "2021-01-12T04:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27c212a7-1df0-4031-9f9d-050879082c61", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-12T03:55:33.000Z" - }, - "end": { - "$date": "2021-01-12T04:11:09.000Z" - }, - "events": [ - { - "uuid": "8408f496-ed51-4e1b-a38a-ab37d6f6c8ef", - "start": { - "$date": "2021-01-12T03:55:33.000Z" - }, - "end": { - "$date": "2021-01-12T04:11:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d0cfaac-ed4f-4307-9bc6-093ff6638c51", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-12T03:57:25.000Z" - }, - "end": { - "$date": "2021-01-12T04:11:15.000Z" - }, - "events": [ - { - "uuid": "935b2de1-ef8f-45fc-ab41-a3ca1f62e17c", - "start": { - "$date": "2021-01-12T03:57:25.000Z" - }, - "end": { - "$date": "2021-01-12T04:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fce9605-555c-4cee-9c37-f29a7e4b6bab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-12T04:01:27.000Z" - }, - "end": { - "$date": "2021-01-12T04:30:51.000Z" - }, - "events": [ - { - "uuid": "21820d5d-bdcd-4c37-a333-651b8244a29d", - "start": { - "$date": "2021-01-12T04:01:27.000Z" - }, - "end": { - "$date": "2021-01-12T04:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d228a851-3710-4376-a82f-bbcd0f11dd2e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T04:17:05.000Z" - }, - "end": { - "$date": "2021-01-12T04:37:26.000Z" - }, - "events": [ - { - "uuid": "b6acce1e-33d9-43b9-8925-e96e8622058b", - "start": { - "$date": "2021-01-12T04:17:05.000Z" - }, - "end": { - "$date": "2021-01-12T04:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d22026e3-7a67-4891-899f-f8d776b56612", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-12T04:12:00.000Z" - }, - "end": { - "$date": "2021-01-12T06:41:47.000Z" - }, - "events": [ - { - "uuid": "aa00aed9-5766-43a8-9f0e-eb34ff4cdb0a", - "start": { - "$date": "2021-01-12T04:12:00.000Z" - }, - "end": { - "$date": "2021-01-12T06:41:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3eb56598-972c-412f-9083-d0e4af5255c5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-12T04:16:54.000Z" - }, - "end": { - "$date": "2021-01-12T04:37:16.000Z" - }, - "events": [ - { - "uuid": "2f4d6df4-c97f-40fa-b00a-f12b3640e668", - "start": { - "$date": "2021-01-12T04:16:54.000Z" - }, - "end": { - "$date": "2021-01-12T04:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "395e9034-438c-435d-8ac3-119124d9407f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-12T04:17:31.000Z" - }, - "end": { - "$date": "2021-01-12T04:37:14.000Z" - }, - "events": [ - { - "uuid": "14eb00f2-afd6-42bd-a6d3-b7cb4e9ddf06", - "start": { - "$date": "2021-01-12T04:17:31.000Z" - }, - "end": { - "$date": "2021-01-12T04:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "599347fd-48fb-41f8-881a-2473b1bf3e6a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-12T04:16:51.000Z" - }, - "end": { - "$date": "2021-01-12T04:34:05.000Z" - }, - "events": [ - { - "uuid": "e3f701b6-0a01-4dee-9c9b-1735b13c3858", - "start": { - "$date": "2021-01-12T04:16:51.000Z" - }, - "end": { - "$date": "2021-01-12T04:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "08ab082e-2967-42ef-be3e-4ca26c5e6265", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-12T04:29:14.000Z" - }, - "end": { - "$date": "2021-01-12T05:07:18.000Z" - }, - "events": [ - { - "uuid": "f5a9d3c6-b342-482a-af31-795b814a7d1d", - "start": { - "$date": "2021-01-12T04:29:14.000Z" - }, - "end": { - "$date": "2021-01-12T05:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f7a7a77-baf2-4de3-93f1-6195eb32299a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T04:31:41.000Z" - }, - "end": { - "$date": "2021-01-12T04:33:25.000Z" - }, - "events": [ - { - "uuid": "096e3a36-f55d-4a18-b5c8-13b14b379278", - "start": { - "$date": "2021-01-12T04:31:41.000Z" - }, - "end": { - "$date": "2021-01-12T04:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "06a228a6-c885-4ded-af4d-baaa6883ad7f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-12T04:34:02.000Z" - }, - "end": { - "$date": "2021-01-12T04:42:41.000Z" - }, - "events": [ - { - "uuid": "100fe667-0660-4f77-b6b0-fe7611c115c1", - "start": { - "$date": "2021-01-12T04:34:02.000Z" - }, - "end": { - "$date": "2021-01-12T04:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2549c319-959f-455a-9548-e659cd423eb5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T04:38:44.000Z" - }, - "end": { - "$date": "2021-01-12T05:19:23.000Z" - }, - "events": [ - { - "uuid": "10cccc6d-9ab0-40c2-914a-3786cfe5e26c", - "start": { - "$date": "2021-01-12T04:38:44.000Z" - }, - "end": { - "$date": "2021-01-12T05:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4fae015b-4a47-433d-b454-466eebcd8e62", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-12T04:34:36.000Z" - }, - "end": { - "$date": "2021-01-12T05:18:23.000Z" - }, - "events": [ - { - "uuid": "8e68e1ca-c28f-43df-9ffa-ce13a966c238", - "start": { - "$date": "2021-01-12T04:34:36.000Z" - }, - "end": { - "$date": "2021-01-12T05:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "450002b8-d93b-46a6-b3f8-6cabdd4917a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T04:41:08.000Z" - }, - "end": { - "$date": "2021-01-12T05:00:43.000Z" - }, - "events": [ - { - "uuid": "9f5117cf-83b8-4ed6-9003-66444672772c", - "start": { - "$date": "2021-01-12T04:41:08.000Z" - }, - "end": { - "$date": "2021-01-12T05:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7318e97-2fe0-4c84-afc8-cd6021cde51e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-12T04:41:10.000Z" - }, - "end": { - "$date": "2021-01-12T05:00:45.000Z" - }, - "events": [ - { - "uuid": "226cc5a9-46e8-48a0-914e-738129aad157", - "start": { - "$date": "2021-01-12T04:41:10.000Z" - }, - "end": { - "$date": "2021-01-12T05:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "896ff53a-d244-44f3-9fa2-8f2dfaa58a07", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-12T04:41:51.000Z" - }, - "end": { - "$date": "2021-01-12T05:00:38.000Z" - }, - "events": [ - { - "uuid": "d9e572fb-4130-456a-a351-16613857e3e8", - "start": { - "$date": "2021-01-12T04:41:51.000Z" - }, - "end": { - "$date": "2021-01-12T05:00:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8d276343-c7a8-402d-94a6-2429bd9c6c0c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-12T04:51:10.000Z" - }, - "end": { - "$date": "2021-01-12T06:42:23.000Z" - }, - "events": [ - { - "uuid": "2bfe086c-0f85-44a8-9501-be503d0de877", - "start": { - "$date": "2021-01-12T04:51:10.000Z" - }, - "end": { - "$date": "2021-01-12T06:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d1b7c8d7-4032-41a6-8ea9-cc11afb3ebe3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-12T05:18:43.000Z" - }, - "end": { - "$date": "2021-01-12T05:51:39.000Z" - }, - "events": [ - { - "uuid": "1b72e128-76dc-4548-82dd-7472538fb180", - "start": { - "$date": "2021-01-12T05:18:43.000Z" - }, - "end": { - "$date": "2021-01-12T05:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edd86470-9565-4202-adc1-b0f850bb42f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T05:27:21.000Z" - }, - "end": { - "$date": "2021-01-12T05:58:13.000Z" - }, - "events": [ - { - "uuid": "fb8bd1a6-35e1-4ab9-97e0-ea991f8181e4", - "start": { - "$date": "2021-01-12T05:27:21.000Z" - }, - "end": { - "$date": "2021-01-12T05:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4142fce-3ebb-496c-9076-c9322540f7cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T05:27:23.000Z" - }, - "end": { - "$date": "2021-01-12T05:58:15.000Z" - }, - "events": [ - { - "uuid": "047d9622-cc26-4d76-8eae-7077e9cd5d11", - "start": { - "$date": "2021-01-12T05:27:23.000Z" - }, - "end": { - "$date": "2021-01-12T05:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f16ce220-b72c-414f-b6a2-bb15842aaf89", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T05:59:13.000Z" - }, - "end": { - "$date": "2021-01-12T06:41:33.000Z" - }, - "events": [ - { - "uuid": "575aa5f4-87b8-4de2-8296-e7d4df3d11d1", - "start": { - "$date": "2021-01-12T05:59:13.000Z" - }, - "end": { - "$date": "2021-01-12T06:41:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7104091e-e80d-41b5-a923-584fd6a1b9b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-12T06:13:12.000Z" - }, - "end": { - "$date": "2021-01-12T06:43:13.000Z" - }, - "events": [ - { - "uuid": "ddee4a98-8800-44a8-ab88-1d9bdf7bd685", - "start": { - "$date": "2021-01-12T06:13:12.000Z" - }, - "end": { - "$date": "2021-01-12T06:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9da8127-5214-445f-bbbe-24aa5d24a1d7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T06:25:35.000Z" - }, - "end": { - "$date": "2021-01-12T07:20:07.000Z" - }, - "events": [ - { - "uuid": "cfb72713-f80f-4732-80f5-24d45f661dad", - "start": { - "$date": "2021-01-12T06:25:35.000Z" - }, - "end": { - "$date": "2021-01-12T07:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae9fe720-4c98-4298-b609-0ab961c080ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T06:49:15.000Z" - }, - "end": { - "$date": "2021-01-12T07:24:00.000Z" - }, - "events": [ - { - "uuid": "e84c1db0-33a9-4a30-8dc9-8d10d603fd15", - "start": { - "$date": "2021-01-12T06:49:15.000Z" - }, - "end": { - "$date": "2021-01-12T07:24:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "2ad8f533-9acb-4e95-a234-50539843bd0c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-12T06:48:11.000Z" - }, - "end": { - "$date": "2021-01-12T07:04:48.000Z" - }, - "events": [ - { - "uuid": "bb6ef151-6826-4a55-81e0-c0d53f6be530", - "start": { - "$date": "2021-01-12T06:48:11.000Z" - }, - "end": { - "$date": "2021-01-12T07:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ecca8550-3d99-4900-95f8-3ff6c13b8396", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-12T06:48:29.000Z" - }, - "end": { - "$date": "2021-01-12T07:16:36.000Z" - }, - "events": [ - { - "uuid": "4c94703d-54d7-4429-a0cd-dba288fb970c", - "start": { - "$date": "2021-01-12T06:48:29.000Z" - }, - "end": { - "$date": "2021-01-12T07:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d09c846-efa4-46f5-afc2-7c6b348cf050", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T07:24:40.000Z" - }, - "end": { - "$date": "2021-01-12T07:27:41.000Z" - }, - "events": [ - { - "uuid": "e7eb8c4d-67b9-4a4c-b26c-6e491d077f33", - "start": { - "$date": "2021-01-12T07:24:40.000Z" - }, - "end": { - "$date": "2021-01-12T07:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d16c110-cdb1-41e3-a914-0c530d6a6b48", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T07:33:38.000Z" - }, - "end": { - "$date": "2021-01-12T08:12:13.000Z" - }, - "events": [ - { - "uuid": "a5479f8b-9376-4945-8075-2c05fdc4f53b", - "start": { - "$date": "2021-01-12T07:33:38.000Z" - }, - "end": { - "$date": "2021-01-12T08:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1a2f0bc-283f-481a-b232-ac88a7223f17", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T09:09:21.000Z" - }, - "end": { - "$date": "2021-01-12T09:41:05.000Z" - }, - "events": [ - { - "uuid": "a4f5ab92-6bcf-46f6-89a6-55cf08897613", - "start": { - "$date": "2021-01-12T09:09:21.000Z" - }, - "end": { - "$date": "2021-01-12T09:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5ae8186-dd95-43a5-a56f-013eb4904ca9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T09:43:00.000Z" - }, - "end": { - "$date": "2021-01-12T09:46:56.000Z" - }, - "events": [ - { - "uuid": "e372e3e0-2315-4840-af8a-349678e434ec", - "start": { - "$date": "2021-01-12T09:43:00.000Z" - }, - "end": { - "$date": "2021-01-12T09:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5f9ff025-5ad4-46e5-87df-29954d327617", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-12T15:32:26.000Z" - }, - "end": { - "$date": "2021-01-12T17:07:53.000Z" - }, - "events": [ - { - "uuid": "8fe3e153-01a4-4053-9dae-6d9a0a37c725", - "start": { - "$date": "2021-01-12T15:32:26.000Z" - }, - "end": { - "$date": "2021-01-12T17:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "189c3e44-d4cf-4569-8203-c8fdec89178e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-12T17:13:24.000Z" - }, - "end": { - "$date": "2021-01-12T17:32:38.000Z" - }, - "events": [ - { - "uuid": "c6463dff-c3a8-4760-a0b0-f9218dc9f8bd", - "start": { - "$date": "2021-01-12T17:13:24.000Z" - }, - "end": { - "$date": "2021-01-12T17:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "573b786e-456a-4898-bb05-62fe3159cef4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T17:15:09.000Z" - }, - "end": { - "$date": "2021-01-12T17:40:28.000Z" - }, - "events": [ - { - "uuid": "41806240-452b-4390-a6f0-50d770d7dd4c", - "start": { - "$date": "2021-01-12T17:15:09.000Z" - }, - "end": { - "$date": "2021-01-12T17:40:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "177a325b-ea3b-46b2-94dd-2fd966b8d03b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-12T17:37:11.000Z" - }, - "end": { - "$date": "2021-01-12T17:41:26.000Z" - }, - "events": [ - { - "uuid": "19cb7b3c-4602-46ba-98ba-01c12b01d0bc", - "start": { - "$date": "2021-01-12T17:37:11.000Z" - }, - "end": { - "$date": "2021-01-12T17:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9f783c6c-6043-4afb-af62-e004c0e8c464", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-12T17:41:46.000Z" - }, - "end": { - "$date": "2021-01-12T18:28:31.000Z" - }, - "events": [ - { - "uuid": "e6ba33ef-8579-45b8-acef-3803a96fb451", - "start": { - "$date": "2021-01-12T17:41:46.000Z" - }, - "end": { - "$date": "2021-01-12T18:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8bd7c150-b25c-4996-bccf-5a509fcb7dbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-12T18:29:27.000Z" - }, - "end": { - "$date": "2021-01-12T19:20:27.000Z" - }, - "events": [ - { - "uuid": "772fe82e-891c-4fea-8154-67f4f7dccb1b", - "start": { - "$date": "2021-01-12T18:29:27.000Z" - }, - "end": { - "$date": "2021-01-12T19:20:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "233b2998-057e-4af9-bf9f-6e734b09e832", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-12T19:37:17.000Z" - }, - "end": { - "$date": "2021-01-12T20:32:59.000Z" - }, - "events": [ - { - "uuid": "7125486b-c39b-4ac7-aa60-3bde75eb60cb", - "start": { - "$date": "2021-01-12T19:37:17.000Z" - }, - "end": { - "$date": "2021-01-12T20:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7bd794a3-c915-4558-b895-df3d4b935453", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-12T20:12:48.000Z" - }, - "end": { - "$date": "2021-01-12T22:17:16.000Z" - }, - "events": [ - { - "uuid": "a12bf20f-ee6d-474e-8a5d-8d723615bf08", - "start": { - "$date": "2021-01-12T20:12:48.000Z" - }, - "end": { - "$date": "2021-01-12T21:06:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ec23c2b-e180-48cc-88d2-3cb3d4a6bb50", - "start": { - "$date": "2021-01-12T21:06:48.000Z" - }, - "end": { - "$date": "2021-01-12T21:27:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a940b129-b315-4b6c-9c20-3f2d7377f48a", - "start": { - "$date": "2021-01-12T21:27:48.000Z" - }, - "end": { - "$date": "2021-01-12T22:17:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "79b2cc7f-ec6a-4c3f-b9c6-4cdd5c29a7d4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-12T20:21:44.000Z" - }, - "end": { - "$date": "2021-01-12T21:33:24.000Z" - }, - "events": [ - { - "uuid": "ff900763-30ca-411d-9fd2-caa33143b1c5", - "start": { - "$date": "2021-01-12T20:21:44.000Z" - }, - "end": { - "$date": "2021-01-12T21:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaf34f38-01d6-4f6f-93e5-2cd362eaeebc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-12T20:55:43.000Z" - }, - "end": { - "$date": "2021-01-12T21:25:42.000Z" - }, - "events": [ - { - "uuid": "c57434b1-1db2-4167-8349-754504f9ae32", - "start": { - "$date": "2021-01-12T20:55:43.000Z" - }, - "end": { - "$date": "2021-01-12T21:25:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "9a1fe243-33f4-4c57-8603-f0e0ed86a4ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-12T22:15:58.000Z" - }, - "end": { - "$date": "2021-01-12T23:25:46.000Z" - }, - "events": [ - { - "uuid": "2fa1abf9-8735-4d10-a1aa-d5552024b393", - "start": { - "$date": "2021-01-12T22:15:58.000Z" - }, - "end": { - "$date": "2021-01-12T23:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c350fc12-30b1-45be-86c6-d492ca74a3d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-12T22:21:47.000Z" - }, - "end": { - "$date": "2021-01-12T22:30:53.000Z" - }, - "events": [ - { - "uuid": "bc5fd9d6-d977-424c-a8f8-da4979980afe", - "start": { - "$date": "2021-01-12T22:21:47.000Z" - }, - "end": { - "$date": "2021-01-12T22:30:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f470c809-9891-4725-a5ae-6e8aa842f00e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-12T23:13:54.000Z" - }, - "end": { - "$date": "2021-01-13T01:45:18.000Z" - }, - "events": [ - { - "uuid": "94fe3fae-3444-4082-ae39-f43f9757b0cf", - "start": { - "$date": "2021-01-12T23:13:54.000Z" - }, - "end": { - "$date": "2021-01-13T01:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "023613b9-c7e3-4e4e-91f8-8779884059e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-12T23:14:21.000Z" - }, - "end": { - "$date": "2021-01-13T00:09:27.000Z" - }, - "events": [ - { - "uuid": "8732a264-ae40-4355-9455-909bc2741be5", - "start": { - "$date": "2021-01-12T23:14:21.000Z" - }, - "end": { - "$date": "2021-01-13T00:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "481902a0-394c-4bcf-9482-35463d49c9ec", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-12T23:34:41.000Z" - }, - "end": { - "$date": "2021-01-13T02:17:28.000Z" - }, - "events": [ - { - "uuid": "ab747beb-0cd0-4192-a22e-f03a05bdd61d", - "start": { - "$date": "2021-01-12T23:34:41.000Z" - }, - "end": { - "$date": "2021-01-13T02:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5a8d49ea-e9ed-4fd3-9f85-18f13f7464df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T00:08:46.000Z" - }, - "end": { - "$date": "2021-01-13T00:47:31.000Z" - }, - "events": [ - { - "uuid": "c7cc22df-9dba-4537-989e-63050c393036", - "start": { - "$date": "2021-01-13T00:08:46.000Z" - }, - "end": { - "$date": "2021-01-13T00:47:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "13a00994-bc1a-406e-940f-fe72e2472c5e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-13T00:36:43.000Z" - }, - "end": { - "$date": "2021-01-13T04:40:04.000Z" - }, - "events": [ - { - "uuid": "65869b4b-0d12-4ff6-b8ed-0013f10edcc5", - "start": { - "$date": "2021-01-13T00:36:43.000Z" - }, - "end": { - "$date": "2021-01-13T04:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1932e1f7-16e6-4ee6-822c-cbc145defb49", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-13T00:46:26.000Z" - }, - "end": { - "$date": "2021-01-13T00:48:42.000Z" - }, - "events": [ - { - "uuid": "c95d43d2-ce4a-41a2-abb5-e0f4912ff99d", - "start": { - "$date": "2021-01-13T00:46:26.000Z" - }, - "end": { - "$date": "2021-01-13T00:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aa118db-6644-4119-8ee5-1ad18b26813a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T01:11:47.000Z" - }, - "end": { - "$date": "2021-01-13T01:48:38.000Z" - }, - "events": [ - { - "uuid": "122fa7d3-50a2-4f82-a060-64d8df7f4bf4", - "start": { - "$date": "2021-01-13T01:11:47.000Z" - }, - "end": { - "$date": "2021-01-13T01:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf62a5e6-3ccb-4ce5-907e-b3bf6ece0032", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T01:13:13.000Z" - }, - "end": { - "$date": "2021-01-13T01:48:30.000Z" - }, - "events": [ - { - "uuid": "e42db833-9995-40bf-a9b0-fb957e845e50", - "start": { - "$date": "2021-01-13T01:13:13.000Z" - }, - "end": { - "$date": "2021-01-13T01:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e733c2f4-4801-41cd-8d81-fced796513d1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-13T01:21:34.000Z" - }, - "end": { - "$date": "2021-01-13T01:33:00.000Z" - }, - "events": [ - { - "uuid": "87fa251b-beae-4985-a9f0-4d99b30d5587", - "start": { - "$date": "2021-01-13T01:21:34.000Z" - }, - "end": { - "$date": "2021-01-13T01:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d5158ddc-f7c4-4cab-ad73-ecc9584d5f5f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-13T01:46:37.000Z" - }, - "end": { - "$date": "2021-01-13T01:54:20.000Z" - }, - "events": [ - { - "uuid": "a69a7315-4fc2-4044-af4c-63e1ebf9ac12", - "start": { - "$date": "2021-01-13T01:46:37.000Z" - }, - "end": { - "$date": "2021-01-13T01:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f4ad51f-2167-4afd-8fbf-f8f9c6eec9fa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T01:48:33.000Z" - }, - "end": { - "$date": "2021-01-13T01:49:52.000Z" - }, - "events": [ - { - "uuid": "eb92fff7-d7ca-422b-9b51-f52cca84cee7", - "start": { - "$date": "2021-01-13T01:48:33.000Z" - }, - "end": { - "$date": "2021-01-13T01:49:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f64d966-88f2-4522-b2aa-cc8a359ad137", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T01:53:18.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:24.000Z" - }, - "events": [ - { - "uuid": "71e4ca90-8241-43f5-8675-c8e0bc25ed1d", - "start": { - "$date": "2021-01-13T01:53:18.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "886ce5fc-6886-4623-a833-8c5a031eb5a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T01:52:54.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:25.000Z" - }, - "events": [ - { - "uuid": "ec249cc5-60d6-4fcf-85b0-269e05d2fb64", - "start": { - "$date": "2021-01-13T01:52:54.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "982b7e1b-e501-4206-8d20-32fc175db97c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-13T01:52:56.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:34.000Z" - }, - "events": [ - { - "uuid": "dccc7ebf-43ff-4fbc-b913-bf6ad85ca946", - "start": { - "$date": "2021-01-13T01:52:56.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04beea4c-e9ad-423f-bd3b-74a11daee484", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T01:54:36.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:33.000Z" - }, - "events": [ - { - "uuid": "752d6341-436e-4d8f-9c01-4cf1ff2bb9b5", - "start": { - "$date": "2021-01-13T01:54:36.000Z" - }, - "end": { - "$date": "2021-01-13T02:22:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1858ad5-576e-4e41-a4ec-7445abe8d9ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T02:27:36.000Z" - }, - "end": { - "$date": "2021-01-13T03:04:04.000Z" - }, - "events": [ - { - "uuid": "ea1a06ac-e032-4d40-8aaa-0f2608d05db8", - "start": { - "$date": "2021-01-13T02:27:36.000Z" - }, - "end": { - "$date": "2021-01-13T03:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "275ebcc9-25fc-4a0b-89c5-d1bfe48b15e4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T02:38:09.000Z" - }, - "end": { - "$date": "2021-01-13T03:03:44.000Z" - }, - "events": [ - { - "uuid": "9f7e428d-da71-4315-8d8a-2d7e6750b5ba", - "start": { - "$date": "2021-01-13T02:38:09.000Z" - }, - "end": { - "$date": "2021-01-13T03:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a101875-96a8-4abd-aa1b-2a28783394ac", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-13T02:27:34.000Z" - }, - "end": { - "$date": "2021-01-13T03:03:46.000Z" - }, - "events": [ - { - "uuid": "c8ee18f9-60c8-4eba-8c94-f3afaaf7e7ff", - "start": { - "$date": "2021-01-13T02:27:34.000Z" - }, - "end": { - "$date": "2021-01-13T03:03:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34f2a288-438d-4f5a-a762-b127d123c4f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T02:27:33.000Z" - }, - "end": { - "$date": "2021-01-13T03:03:55.000Z" - }, - "events": [ - { - "uuid": "f87d69cb-6eda-4953-bc45-83e35752a64d", - "start": { - "$date": "2021-01-13T02:27:33.000Z" - }, - "end": { - "$date": "2021-01-13T03:03:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fe631fe6-1ac6-4b1f-ad04-02d88e9111d7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-13T02:30:34.000Z" - }, - "end": { - "$date": "2021-01-13T02:58:39.000Z" - }, - "events": [ - { - "uuid": "adacc153-d6e8-4a5c-adf6-507468a06ec4", - "start": { - "$date": "2021-01-13T02:30:34.000Z" - }, - "end": { - "$date": "2021-01-13T02:58:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b5ad9588-5959-49fa-a4ea-f7bd80e62e6a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-13T02:31:46.000Z" - }, - "end": { - "$date": "2021-01-13T03:00:55.000Z" - }, - "events": [ - { - "uuid": "b0e819a5-f768-49a5-a435-30ebcf7a5029", - "start": { - "$date": "2021-01-13T02:31:46.000Z" - }, - "end": { - "$date": "2021-01-13T03:00:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01ae9e90-8d79-4355-aaa5-761186bf897e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T03:07:32.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:23.000Z" - }, - "events": [ - { - "uuid": "d9176f1c-4f72-4236-bea7-5f4721acf151", - "start": { - "$date": "2021-01-13T03:07:32.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86012176-28d5-4cbf-bfb8-7f77b296282f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-13T03:07:30.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:21.000Z" - }, - "events": [ - { - "uuid": "ef6352b5-d3d6-49b4-bd90-dd0269e948e9", - "start": { - "$date": "2021-01-13T03:07:30.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b2c2252-c84e-4fb7-90c5-eff9b99bd9ad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T03:08:44.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:25.000Z" - }, - "events": [ - { - "uuid": "c5b9f0d7-cb93-42f7-b6f6-cf01643c6951", - "start": { - "$date": "2021-01-13T03:08:44.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91bb1c2a-fdbc-46e6-a5cf-e38c0b96f063", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T03:08:09.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:26.000Z" - }, - "events": [ - { - "uuid": "dee7f9f9-9743-444d-b9ce-7275daaaa975", - "start": { - "$date": "2021-01-13T03:08:09.000Z" - }, - "end": { - "$date": "2021-01-13T03:44:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "33f1f975-e1a2-4e58-a4f0-65684617fb71", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-13T03:05:26.000Z" - }, - "end": { - "$date": "2021-01-13T04:03:47.000Z" - }, - "events": [ - { - "uuid": "109c74e9-80c3-4bc8-885a-e3840990d2ed", - "start": { - "$date": "2021-01-13T03:05:26.000Z" - }, - "end": { - "$date": "2021-01-13T04:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61d0a27f-1dd6-43bd-844b-c54665105fe1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T03:49:14.000Z" - }, - "end": { - "$date": "2021-01-13T04:31:00.000Z" - }, - "events": [ - { - "uuid": "5b63baaa-6400-4247-8188-780eb65d4f6f", - "start": { - "$date": "2021-01-13T03:49:14.000Z" - }, - "end": { - "$date": "2021-01-13T04:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09cfdea5-fb65-48ab-abe1-c4f3534b47fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T03:49:10.000Z" - }, - "end": { - "$date": "2021-01-13T04:30:55.000Z" - }, - "events": [ - { - "uuid": "1878e496-50d9-4d16-baa4-5fb15b4f2334", - "start": { - "$date": "2021-01-13T03:49:10.000Z" - }, - "end": { - "$date": "2021-01-13T04:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "406a30b0-b5b2-42a4-b79f-6d27289dcbb9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-13T03:49:12.000Z" - }, - "end": { - "$date": "2021-01-13T04:30:58.000Z" - }, - "events": [ - { - "uuid": "1756937a-c2aa-442f-8bcd-005e3e1f9ae1", - "start": { - "$date": "2021-01-13T03:49:12.000Z" - }, - "end": { - "$date": "2021-01-13T04:30:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fa9e844-e1b3-4125-92e2-b9b1e9b3483e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-13T03:49:41.000Z" - }, - "end": { - "$date": "2021-01-13T04:31:05.000Z" - }, - "events": [ - { - "uuid": "c32905d1-3a44-43fb-8905-ae09a0defd92", - "start": { - "$date": "2021-01-13T03:49:41.000Z" - }, - "end": { - "$date": "2021-01-13T04:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb271747-04b0-4a6b-af6d-7a8c4a720e19", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T03:49:16.000Z" - }, - "end": { - "$date": "2021-01-13T04:31:10.000Z" - }, - "events": [ - { - "uuid": "6efb7890-0987-47d1-bf33-d27844a3f466", - "start": { - "$date": "2021-01-13T03:49:16.000Z" - }, - "end": { - "$date": "2021-01-13T04:31:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2933510a-cb1e-4b58-994b-4afe375ffb73", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-13T04:05:45.000Z" - }, - "end": { - "$date": "2021-01-13T05:15:33.000Z" - }, - "events": [ - { - "uuid": "269a8033-d117-4076-8350-ca55b9260322", - "start": { - "$date": "2021-01-13T04:05:45.000Z" - }, - "end": { - "$date": "2021-01-13T05:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5bf432a1-c62d-4909-a077-a8f0252233ed", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-13T04:19:45.000Z" - }, - "end": { - "$date": "2021-01-13T07:11:35.000Z" - }, - "events": [ - { - "uuid": "93460e7c-1065-415b-b9cb-8e3aaf3193d4", - "start": { - "$date": "2021-01-13T04:19:45.000Z" - }, - "end": { - "$date": "2021-01-13T07:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d86b8fda-259f-4272-ba4c-d7169e82ceb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T04:36:07.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:21.000Z" - }, - "events": [ - { - "uuid": "9108bd0a-4b13-40e9-8b1a-4ba9a41f8526", - "start": { - "$date": "2021-01-13T04:36:07.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2314df0f-bf81-4999-96c0-7f1342ff9a4b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-13T04:36:04.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:15.000Z" - }, - "events": [ - { - "uuid": "8fe069a7-452a-47b9-b16c-d875ad7dca97", - "start": { - "$date": "2021-01-13T04:36:04.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "171760d0-bdab-4356-83e5-7be65d370fa9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T04:36:00.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:10.000Z" - }, - "events": [ - { - "uuid": "57287da6-17d1-4687-af8a-6f3a65867853", - "start": { - "$date": "2021-01-13T04:36:00.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5a9ddf8-376f-449b-9b42-ef4fb69b4df2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-13T04:36:37.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:13.000Z" - }, - "events": [ - { - "uuid": "69dacee7-b073-4a4c-99d8-285c7ae07242", - "start": { - "$date": "2021-01-13T04:36:37.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3d17ad7-2b39-4216-b312-f9d03c364656", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T04:36:04.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:33.000Z" - }, - "events": [ - { - "uuid": "1bbd90cd-f0f9-4d92-9726-9fe045a3a18d", - "start": { - "$date": "2021-01-13T04:36:04.000Z" - }, - "end": { - "$date": "2021-01-13T05:10:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1b6728a0-7f1f-4179-ae3a-16af4fa398ca", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-13T04:51:30.000Z" - }, - "end": { - "$date": "2021-01-13T07:11:10.000Z" - }, - "events": [ - { - "uuid": "13a53146-c6ef-4639-af38-371235ba1eb2", - "start": { - "$date": "2021-01-13T04:51:30.000Z" - }, - "end": { - "$date": "2021-01-13T07:11:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "a66d6518-1555-42d6-b779-8390fefe0a88", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-13T04:59:36.000Z" - }, - "end": { - "$date": "2021-01-13T05:04:47.000Z" - }, - "events": [ - { - "uuid": "45bf97a0-f5d5-42be-a018-0683d34c9aab", - "start": { - "$date": "2021-01-13T04:59:36.000Z" - }, - "end": { - "$date": "2021-01-13T05:04:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "830de4d2-fcd8-43a8-8d55-386f96d0ca5d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-13T05:20:57.000Z" - }, - "end": { - "$date": "2021-01-13T05:54:29.000Z" - }, - "events": [ - { - "uuid": "f1ba5827-42f4-4d37-b251-3d1809b50a82", - "start": { - "$date": "2021-01-13T05:20:57.000Z" - }, - "end": { - "$date": "2021-01-13T05:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "733fda9a-a6ce-4060-9c0d-3c0121039fe5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-13T05:06:27.000Z" - }, - "end": { - "$date": "2021-01-13T07:43:38.000Z" - }, - "events": [ - { - "uuid": "afe3efd6-21a8-4e0d-85e8-69844dc014e8", - "start": { - "$date": "2021-01-13T05:06:27.000Z" - }, - "end": { - "$date": "2021-01-13T07:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42a2282f-84c0-498e-9f93-6f078f0dcf43", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T05:15:04.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:11.000Z" - }, - "events": [ - { - "uuid": "d4cd4d22-66e2-42da-883c-883391f19be3", - "start": { - "$date": "2021-01-13T05:15:04.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c50694d3-6d7f-4227-9d84-f9868d11b312", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T05:16:31.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:06.000Z" - }, - "events": [ - { - "uuid": "c1f6e3b3-29d6-469c-9553-8f832ee78562", - "start": { - "$date": "2021-01-13T05:16:31.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0d0e046-00cf-4b85-937f-80bce602c90f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-13T05:15:01.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:02.000Z" - }, - "events": [ - { - "uuid": "f3bdeb66-7024-4302-aabe-33420e5763ca", - "start": { - "$date": "2021-01-13T05:15:01.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d3eca26-2fbc-46aa-8a53-4fc33a3f8375", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T05:15:02.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:14.000Z" - }, - "events": [ - { - "uuid": "e3c5b29b-b218-4e73-af0c-57043c3c39be", - "start": { - "$date": "2021-01-13T05:15:02.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f182138-079c-4225-933a-7202ee367eaf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-13T05:14:58.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:04.000Z" - }, - "events": [ - { - "uuid": "94c1c05d-2fec-4bbf-a587-a7c949cb23f1", - "start": { - "$date": "2021-01-13T05:14:58.000Z" - }, - "end": { - "$date": "2021-01-13T05:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2658e66c-dae1-458f-930c-bc5f2b67e2e9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-13T05:29:10.000Z" - }, - "end": { - "$date": "2021-01-13T06:24:58.000Z" - }, - "events": [ - { - "uuid": "8362e0a7-9e53-4efa-83a7-b65234fcf5ad", - "start": { - "$date": "2021-01-13T05:29:10.000Z" - }, - "end": { - "$date": "2021-01-13T06:24:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fb42ff63-e901-4f69-97d0-44a86a734715", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T05:44:06.000Z" - }, - "end": { - "$date": "2021-01-13T05:59:26.000Z" - }, - "events": [ - { - "uuid": "40d82b33-ef1d-4039-abca-5b835733ab06", - "start": { - "$date": "2021-01-13T05:44:06.000Z" - }, - "end": { - "$date": "2021-01-13T05:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06432d1c-becb-44b5-ba01-4a2a9f8c0668", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T06:06:38.000Z" - }, - "end": { - "$date": "2021-01-13T06:24:13.000Z" - }, - "events": [ - { - "uuid": "c31f553f-48ca-4e28-8377-277f9675486c", - "start": { - "$date": "2021-01-13T06:06:38.000Z" - }, - "end": { - "$date": "2021-01-13T06:24:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8004d0d2-f88e-48e1-9948-29e9901b4dfe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T06:33:05.000Z" - }, - "end": { - "$date": "2021-01-13T07:01:20.000Z" - }, - "events": [ - { - "uuid": "79f25d48-c142-4d71-9c82-bc174475bb8b", - "start": { - "$date": "2021-01-13T06:33:05.000Z" - }, - "end": { - "$date": "2021-01-13T07:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29297aa9-a719-48f4-b4cd-fea8a6922e79", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T07:02:07.000Z" - }, - "end": { - "$date": "2021-01-13T07:03:39.000Z" - }, - "events": [ - { - "uuid": "1fbfbde5-b611-4769-a1e9-b74fb884c2bc", - "start": { - "$date": "2021-01-13T07:02:07.000Z" - }, - "end": { - "$date": "2021-01-13T07:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "92144774-b196-4849-8c29-3be0e0e93825", - "uuid": "3bd85455-17b7-4f7b-a2fe-0ab5761196fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T07:26:22.000Z" - }, - "end": { - "$date": "2021-01-13T07:32:23.000Z" - }, - "events": [ - { - "uuid": "f6c264ee-888c-480a-997d-a03ba5c4ef2a", - "start": { - "$date": "2021-01-13T07:26:22.000Z" - }, - "end": { - "$date": "2021-01-13T07:32:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bbda0cb6-6e89-4e50-910b-fe522c209c00", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-13T07:44:03.000Z" - }, - "end": { - "$date": "2021-01-13T07:48:14.000Z" - }, - "events": [ - { - "uuid": "c8c041cf-e6c6-491f-9096-6bed5f5a0cf0", - "start": { - "$date": "2021-01-13T07:44:03.000Z" - }, - "end": { - "$date": "2021-01-13T07:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e002e82a-d83b-479e-a90b-a38bf9d8722f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-13T09:29:30.000Z" - }, - "end": { - "$date": "2021-01-13T13:18:53.000Z" - }, - "events": [ - { - "uuid": "d084bdee-bb3b-426d-93c5-4e50f0287db4", - "start": { - "$date": "2021-01-13T09:29:30.000Z" - }, - "end": { - "$date": "2021-01-13T13:18:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c0719e53-5904-48f1-a3ab-8e2fb1d17334", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-13T17:07:34.000Z" - }, - "end": { - "$date": "2021-01-13T17:11:26.000Z" - }, - "events": [ - { - "uuid": "a7b71fe0-01f3-46f0-a355-b21648c1b36f", - "start": { - "$date": "2021-01-13T17:07:34.000Z" - }, - "end": { - "$date": "2021-01-13T17:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0bb7a046-cbca-4366-a84a-80ea2a27dd5f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-13T17:08:56.000Z" - }, - "end": { - "$date": "2021-01-14T02:14:03.000Z" - }, - "events": [ - { - "uuid": "b1fb8e28-79f7-429a-9735-200f0c45f62e", - "start": { - "$date": "2021-01-13T17:08:56.000Z" - }, - "end": { - "$date": "2021-01-14T02:14:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "efda4a2d-7333-44e1-bd41-9daa3f5d4fa8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T17:09:38.000Z" - }, - "end": { - "$date": "2021-01-13T18:14:25.000Z" - }, - "events": [ - { - "uuid": "0821427d-b162-41a6-ac41-141e9a937111", - "start": { - "$date": "2021-01-13T17:09:38.000Z" - }, - "end": { - "$date": "2021-01-13T18:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "955b7c74-d415-44df-9e57-b583e874699b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T18:44:50.000Z" - }, - "end": { - "$date": "2021-01-13T19:20:09.000Z" - }, - "events": [ - { - "uuid": "ad29c9e1-1131-4446-aa37-3426871c2f20", - "start": { - "$date": "2021-01-13T18:44:50.000Z" - }, - "end": { - "$date": "2021-01-13T19:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c4a65e2-b87d-44ac-817b-e0e5faa28a07", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T18:45:47.000Z" - }, - "end": { - "$date": "2021-01-13T19:20:07.000Z" - }, - "events": [ - { - "uuid": "4bbcac05-bcf7-41ec-b8db-cd7fb9e7ace8", - "start": { - "$date": "2021-01-13T18:45:47.000Z" - }, - "end": { - "$date": "2021-01-13T19:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4e6e3b6-9d92-478d-9e4b-7ac7ec741733", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T19:26:16.000Z" - }, - "end": { - "$date": "2021-01-13T20:01:45.000Z" - }, - "events": [ - { - "uuid": "94ae9c78-d861-4195-823b-45be11f01ab3", - "start": { - "$date": "2021-01-13T19:26:16.000Z" - }, - "end": { - "$date": "2021-01-13T20:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23854e21-46cb-40af-b853-e508b8db64b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T19:26:57.000Z" - }, - "end": { - "$date": "2021-01-13T20:01:47.000Z" - }, - "events": [ - { - "uuid": "8d660458-420c-4249-95b2-25671e34b03e", - "start": { - "$date": "2021-01-13T19:26:57.000Z" - }, - "end": { - "$date": "2021-01-13T20:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ab7bdc6-7322-418e-8cb2-bc8ad6a6c796", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T20:06:18.000Z" - }, - "end": { - "$date": "2021-01-13T20:40:59.000Z" - }, - "events": [ - { - "uuid": "417aa29f-1b8a-40e9-858f-1143b53b7b82", - "start": { - "$date": "2021-01-13T20:06:18.000Z" - }, - "end": { - "$date": "2021-01-13T20:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c726b29-8c3a-4af1-9829-ff11fa12cc55", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-13T20:37:02.000Z" - }, - "end": { - "$date": "2021-01-13T20:51:03.000Z" - }, - "events": [ - { - "uuid": "38d4eb21-ce06-4ab1-b253-13d2bee28595", - "start": { - "$date": "2021-01-13T20:37:02.000Z" - }, - "end": { - "$date": "2021-01-13T20:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80a76812-3873-4c19-9d9b-a2c76f2eba0a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T20:46:09.000Z" - }, - "end": { - "$date": "2021-01-13T21:20:02.000Z" - }, - "events": [ - { - "uuid": "eb3881c7-6e11-4bd7-970e-4cda97d52432", - "start": { - "$date": "2021-01-13T20:46:09.000Z" - }, - "end": { - "$date": "2021-01-13T21:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "58de8063-821c-4a5b-afd6-a31bf7af77ba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-13T20:49:11.000Z" - }, - "end": { - "$date": "2021-01-13T21:54:35.000Z" - }, - "events": [ - { - "uuid": "60066aab-e438-4d7c-b30b-044b1e5e5077", - "start": { - "$date": "2021-01-13T20:49:11.000Z" - }, - "end": { - "$date": "2021-01-13T21:41:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3c42e9c1-836a-4970-a925-524708d09576", - "start": { - "$date": "2021-01-13T21:41:11.000Z" - }, - "end": { - "$date": "2021-01-13T21:42:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03f7365e-f416-41a1-a2a6-a3d353014d05", - "start": { - "$date": "2021-01-13T21:42:11.000Z" - }, - "end": { - "$date": "2021-01-13T21:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7a9fc117-11a3-43e5-8732-b544e851b4f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-13T21:26:53.000Z" - }, - "end": { - "$date": "2021-01-13T22:08:14.000Z" - }, - "events": [ - { - "uuid": "85cb0af7-38fa-4ab8-85f5-ac0e11c7c641", - "start": { - "$date": "2021-01-13T21:26:53.000Z" - }, - "end": { - "$date": "2021-01-13T22:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b40aa4e8-bc2c-494f-bfad-535703e5c504", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-13T22:37:46.000Z" - }, - "end": { - "$date": "2021-01-14T01:14:22.000Z" - }, - "events": [ - { - "uuid": "e04b4bde-4404-4561-8485-128f1a4b907e", - "start": { - "$date": "2021-01-13T22:37:46.000Z" - }, - "end": { - "$date": "2021-01-14T01:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75f5e39f-d7ed-4b96-92ae-22068cd264fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-13T23:17:48.000Z" - }, - "end": { - "$date": "2021-01-13T23:47:30.000Z" - }, - "events": [ - { - "uuid": "63ada846-2cdd-492f-9b44-cb081aff805a", - "start": { - "$date": "2021-01-13T23:17:48.000Z" - }, - "end": { - "$date": "2021-01-13T23:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "ddff3274-4b9d-40d7-b871-8304b8b41e4a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T00:48:45.000Z" - }, - "end": { - "$date": "2021-01-14T01:08:35.000Z" - }, - "events": [ - { - "uuid": "4d7088da-73c0-4fc3-b8eb-7fc0858e1b5e", - "start": { - "$date": "2021-01-14T00:48:45.000Z" - }, - "end": { - "$date": "2021-01-14T01:08:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "213b40ac-4989-4908-a985-13bff34d6f1a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T00:57:02.000Z" - }, - "end": { - "$date": "2021-01-14T01:27:15.000Z" - }, - "events": [ - { - "uuid": "bb61e3c6-7a3f-4de9-8e54-b39ee5ca45f6", - "start": { - "$date": "2021-01-14T00:57:02.000Z" - }, - "end": { - "$date": "2021-01-14T01:27:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa923284-3218-4e0d-9fb9-c791b98d772b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T00:57:08.000Z" - }, - "end": { - "$date": "2021-01-14T01:27:06.000Z" - }, - "events": [ - { - "uuid": "5ebc3e20-59a5-48f0-9d12-7f98810f9b34", - "start": { - "$date": "2021-01-14T00:57:08.000Z" - }, - "end": { - "$date": "2021-01-14T01:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "25e6069c-ef71-4cfb-9edf-06b5d59474e8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-14T01:11:00.000Z" - }, - "end": { - "$date": "2021-01-14T02:27:12.000Z" - }, - "events": [ - { - "uuid": "dad86345-a141-4a7e-80db-24a58f651e5c", - "start": { - "$date": "2021-01-14T01:11:00.000Z" - }, - "end": { - "$date": "2021-01-14T02:27:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "11a36a40-0f14-4ea9-8a41-602f00adef14", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-14T01:11:25.000Z" - }, - "end": { - "$date": "2021-01-14T03:01:31.000Z" - }, - "events": [ - { - "uuid": "d2de55a7-81c8-4130-bdcb-5b00e0a53cac", - "start": { - "$date": "2021-01-14T01:11:25.000Z" - }, - "end": { - "$date": "2021-01-14T03:01:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7f051794-dc28-4835-b566-c45e17c6f0f3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-14T01:18:32.000Z" - }, - "end": { - "$date": "2021-01-14T01:20:33.000Z" - }, - "events": [ - { - "uuid": "f15382fc-a457-4d0c-827e-982f4c97900f", - "start": { - "$date": "2021-01-14T01:18:32.000Z" - }, - "end": { - "$date": "2021-01-14T01:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "955a852e-9c70-462b-8276-d3b357c597e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T01:31:25.000Z" - }, - "end": { - "$date": "2021-01-14T01:57:37.000Z" - }, - "events": [ - { - "uuid": "85dfa00e-25ec-48c6-abb5-9294fdc910bc", - "start": { - "$date": "2021-01-14T01:31:25.000Z" - }, - "end": { - "$date": "2021-01-14T01:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e9f29c3-ab2f-498e-b3f0-4690390303e5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T01:31:20.000Z" - }, - "end": { - "$date": "2021-01-14T01:57:43.000Z" - }, - "events": [ - { - "uuid": "71a4f9e8-e9f1-4c63-8fcc-3d180d42b98f", - "start": { - "$date": "2021-01-14T01:31:20.000Z" - }, - "end": { - "$date": "2021-01-14T01:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "78fe9dff-b4ba-4d7c-9fbf-d61da1b1f15c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T01:52:56.000Z" - }, - "end": { - "$date": "2021-01-14T02:44:31.000Z" - }, - "events": [ - { - "uuid": "2b43e5ef-bba0-476d-94e0-362c31a97c47", - "start": { - "$date": "2021-01-14T01:52:56.000Z" - }, - "end": { - "$date": "2021-01-14T02:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2bba01f-4729-4fa3-93ba-a64fb13079d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T02:03:36.000Z" - }, - "end": { - "$date": "2021-01-14T02:41:58.000Z" - }, - "events": [ - { - "uuid": "a629c864-f2cc-4d60-875f-01cb006e832f", - "start": { - "$date": "2021-01-14T02:03:36.000Z" - }, - "end": { - "$date": "2021-01-14T02:41:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0e7a9fc-c3f8-49c2-9d09-5de61e02e46f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T02:04:46.000Z" - }, - "end": { - "$date": "2021-01-14T02:42:00.000Z" - }, - "events": [ - { - "uuid": "f814329d-822b-46df-be9e-c94486d81488", - "start": { - "$date": "2021-01-14T02:04:46.000Z" - }, - "end": { - "$date": "2021-01-14T02:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "857c0302-b29b-44d2-8fb5-a8256bf1aede", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-14T02:27:58.000Z" - }, - "end": { - "$date": "2021-01-14T03:32:40.000Z" - }, - "events": [ - { - "uuid": "6ea41ab0-ed11-49b6-a415-e77e25ccb903", - "start": { - "$date": "2021-01-14T02:27:58.000Z" - }, - "end": { - "$date": "2021-01-14T03:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e053648-4c95-42f3-af7f-c063a31a522b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T02:35:03.000Z" - }, - "end": { - "$date": "2021-01-14T02:42:47.000Z" - }, - "events": [ - { - "uuid": "6dc755de-2a15-4921-a2b3-4deac379f106", - "start": { - "$date": "2021-01-14T02:35:03.000Z" - }, - "end": { - "$date": "2021-01-14T02:42:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b2e2fe3-3255-46c0-a4a9-3907fcd7bdef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T02:46:57.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:05.000Z" - }, - "events": [ - { - "uuid": "98f86bc7-ef06-4b87-a908-8eaa8c09baee", - "start": { - "$date": "2021-01-14T02:46:57.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "daa08e33-14f3-4975-912d-c6877742685d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T02:46:53.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:07.000Z" - }, - "events": [ - { - "uuid": "5adcc150-2a01-4f07-b5c0-62184a2a98cc", - "start": { - "$date": "2021-01-14T02:46:53.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "753b8672-cf40-4224-870a-b2f64d6ca5d1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T02:55:41.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:11.000Z" - }, - "events": [ - { - "uuid": "24cb723a-83aa-4d80-a31b-74aeec0bf39c", - "start": { - "$date": "2021-01-14T02:55:41.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9025975a-b18b-4bcd-8624-e48e02f2cbca", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T02:49:28.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:12.000Z" - }, - "events": [ - { - "uuid": "887efb33-db79-4c4f-98c8-be285eeb286a", - "start": { - "$date": "2021-01-14T02:49:28.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b81ed88-0e98-44af-a996-c0b375b690c2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T02:47:09.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:05.000Z" - }, - "events": [ - { - "uuid": "612485f7-8bc1-4b1d-9824-e1cc9cd24385", - "start": { - "$date": "2021-01-14T02:47:09.000Z" - }, - "end": { - "$date": "2021-01-14T03:23:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e0c1a36-8474-437b-8617-3a2c3faebb5f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-14T03:10:48.000Z" - }, - "end": { - "$date": "2021-01-14T03:25:19.000Z" - }, - "events": [ - { - "uuid": "aced9912-b0e8-42ae-a4eb-403806902340", - "start": { - "$date": "2021-01-14T03:10:48.000Z" - }, - "end": { - "$date": "2021-01-14T03:25:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1970b556-c826-46a2-b536-ba05248b8ae9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T03:27:33.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:21.000Z" - }, - "events": [ - { - "uuid": "12d0307b-106c-498e-930d-aea298e9c2a8", - "start": { - "$date": "2021-01-14T03:27:33.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "354e9ebc-a8f4-4edb-8192-f11cd2c07b12", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T03:27:46.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:16.000Z" - }, - "events": [ - { - "uuid": "bc6d382a-e8a4-4724-a5a5-5b5339b552e5", - "start": { - "$date": "2021-01-14T03:27:46.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46dfdbfd-3417-4c4d-bcec-6366dfafb5f5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T03:27:45.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:13.000Z" - }, - "events": [ - { - "uuid": "352eb5fe-937f-432d-bdc0-5e73164f1475", - "start": { - "$date": "2021-01-14T03:27:45.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db532478-7e83-49f3-a9ca-a314e3ad0f2d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T03:27:31.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:17.000Z" - }, - "events": [ - { - "uuid": "fdd1e13b-5f29-483c-908a-24364ae183af", - "start": { - "$date": "2021-01-14T03:27:31.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11f72ea8-e0fd-48c6-87ba-8379d535b55d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T03:28:47.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:12.000Z" - }, - "events": [ - { - "uuid": "44e771ff-d5e0-4723-9f5a-50502bb4dc5a", - "start": { - "$date": "2021-01-14T03:28:47.000Z" - }, - "end": { - "$date": "2021-01-14T03:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4cc6d8c4-c858-4b70-8b40-ce89a8987be4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-14T03:29:13.000Z" - }, - "end": { - "$date": "2021-01-14T03:31:18.000Z" - }, - "events": [ - { - "uuid": "9fc0df7d-25c4-4150-b650-91af577b1c18", - "start": { - "$date": "2021-01-14T03:29:13.000Z" - }, - "end": { - "$date": "2021-01-14T03:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "71b2f2bf-a9d9-405c-8f5e-f271c4d7ffbb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-14T03:29:52.000Z" - }, - "end": { - "$date": "2021-01-14T03:43:44.000Z" - }, - "events": [ - { - "uuid": "11cbf4d8-0485-4d18-878c-1904a592dfd6", - "start": { - "$date": "2021-01-14T03:29:52.000Z" - }, - "end": { - "$date": "2021-01-14T03:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "a4b9a967-162e-4cbd-bded-220feaf48a77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-14T03:32:48.000Z" - }, - "end": { - "$date": "2021-01-14T04:55:46.000Z" - }, - "events": [ - { - "uuid": "e5022d3d-be64-40cd-b97d-83e6472c9f18", - "start": { - "$date": "2021-01-14T03:32:48.000Z" - }, - "end": { - "$date": "2021-01-14T04:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "20c7e988-85fd-41fa-8db3-61e43ff97b62", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-14T03:39:36.000Z" - }, - "end": { - "$date": "2021-01-14T03:52:48.000Z" - }, - "events": [ - { - "uuid": "217f3dd6-b188-4fdc-9cd8-4d5d342c76b0", - "start": { - "$date": "2021-01-14T03:39:36.000Z" - }, - "end": { - "$date": "2021-01-14T03:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "990d443f-a466-4c5c-b13e-755a8e80973c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-14T03:39:41.000Z" - }, - "end": { - "$date": "2021-01-14T04:55:40.000Z" - }, - "events": [ - { - "uuid": "45f39171-db49-4ead-b73d-b840e60c332e", - "start": { - "$date": "2021-01-14T03:39:41.000Z" - }, - "end": { - "$date": "2021-01-14T04:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91399ecd-9031-4c32-bb60-3fdaedf2e51f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T03:46:59.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:08.000Z" - }, - "events": [ - { - "uuid": "b8adb233-f734-44c0-8b3d-e48d41ae0cb6", - "start": { - "$date": "2021-01-14T03:46:59.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73d68a86-0b0a-4f57-ba7c-5a0b81e1a055", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T03:46:51.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:02.000Z" - }, - "events": [ - { - "uuid": "df84a621-b9ce-4966-aa28-1ef56c0d25d7", - "start": { - "$date": "2021-01-14T03:46:51.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "022055e0-72cc-4034-a72f-20f0a449f1b5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T03:47:13.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:08.000Z" - }, - "events": [ - { - "uuid": "4f37c7d7-06a8-4fa2-9d74-a29947629d9b", - "start": { - "$date": "2021-01-14T03:47:13.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9174dbb3-8c6b-4e2d-a3e2-f22939ffa288", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T03:46:57.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:09.000Z" - }, - "events": [ - { - "uuid": "7f92f016-5916-471f-ad44-15473898a292", - "start": { - "$date": "2021-01-14T03:46:57.000Z" - }, - "end": { - "$date": "2021-01-14T04:23:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b9efe379-a26c-4073-9fde-afbd2a716db3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-14T04:10:22.000Z" - }, - "end": { - "$date": "2021-01-14T06:45:15.000Z" - }, - "events": [ - { - "uuid": "79a77a1a-ac73-4841-bfce-0255cc9b5d1f", - "start": { - "$date": "2021-01-14T04:10:22.000Z" - }, - "end": { - "$date": "2021-01-14T06:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fc60597-103b-4388-b6f0-7b1485e735b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T04:28:00.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:24.000Z" - }, - "events": [ - { - "uuid": "68e98ed5-7091-4927-b062-9cdddfaa245a", - "start": { - "$date": "2021-01-14T04:28:00.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb35bccd-7dae-4aab-9221-089f13dcf949", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T04:27:54.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:24.000Z" - }, - "events": [ - { - "uuid": "1d8413ab-b81b-40f8-a66a-80b99f8f73f4", - "start": { - "$date": "2021-01-14T04:27:54.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32b2009c-675f-45ea-ab3b-46d920c314be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T04:28:32.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:17.000Z" - }, - "events": [ - { - "uuid": "9a559c19-aecd-4687-b3c0-892994c72254", - "start": { - "$date": "2021-01-14T04:28:32.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d63991fd-5bab-40d4-9423-4ce292b0b716", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T04:27:59.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:27.000Z" - }, - "events": [ - { - "uuid": "da96c5ad-7eae-4671-8150-3b83bc677bff", - "start": { - "$date": "2021-01-14T04:27:59.000Z" - }, - "end": { - "$date": "2021-01-14T04:53:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6cb57768-cd6d-4051-90e3-8eb92b8a7d87", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-14T04:52:49.000Z" - }, - "end": { - "$date": "2021-01-14T07:02:32.000Z" - }, - "events": [ - { - "uuid": "22332a7a-4737-423f-a042-e24a136acb88", - "start": { - "$date": "2021-01-14T04:52:49.000Z" - }, - "end": { - "$date": "2021-01-14T07:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbb74078-0c06-468d-b1cf-8f191ad6f880", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T04:57:51.000Z" - }, - "end": { - "$date": "2021-01-14T05:11:59.000Z" - }, - "events": [ - { - "uuid": "bbc9258c-493f-4640-9019-045ce5208e43", - "start": { - "$date": "2021-01-14T04:57:51.000Z" - }, - "end": { - "$date": "2021-01-14T05:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85f7945b-867e-4017-838f-564f33fa2a39", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T04:57:42.000Z" - }, - "end": { - "$date": "2021-01-14T05:11:57.000Z" - }, - "events": [ - { - "uuid": "1ed21c14-e69e-4e36-8cc6-8253501722d2", - "start": { - "$date": "2021-01-14T04:57:42.000Z" - }, - "end": { - "$date": "2021-01-14T05:11:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f27fb4b-e869-4531-98c1-397d631b8c7a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T04:58:10.000Z" - }, - "end": { - "$date": "2021-01-14T05:11:59.000Z" - }, - "events": [ - { - "uuid": "ba3cbfe1-bfb7-4fdb-9506-ba5f1f6f6b55", - "start": { - "$date": "2021-01-14T04:58:10.000Z" - }, - "end": { - "$date": "2021-01-14T05:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e344c94-8b1f-49d1-ba2e-c84f68e4fb20", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T04:57:45.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:00.000Z" - }, - "events": [ - { - "uuid": "5a819098-1a79-4c67-ab76-8b4f00de8846", - "start": { - "$date": "2021-01-14T04:57:45.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0342b015-836a-4f0a-9eb7-ee9c1e037203", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T04:57:46.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:04.000Z" - }, - "events": [ - { - "uuid": "6a0d8551-0c6f-4371-98db-50f5c8cc316b", - "start": { - "$date": "2021-01-14T04:57:46.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f900a06-9611-4621-9ab5-2ee1c8c6ec20", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T04:58:03.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:03.000Z" - }, - "events": [ - { - "uuid": "923eebf0-5aff-4d05-959a-e26bde2a1386", - "start": { - "$date": "2021-01-14T04:58:03.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8ca2fa85-c15d-4e17-9fb3-0e6875ee667f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-14T05:10:08.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:33.000Z" - }, - "events": [ - { - "uuid": "f4056554-800a-451c-aeae-76dabe778965", - "start": { - "$date": "2021-01-14T05:10:08.000Z" - }, - "end": { - "$date": "2021-01-14T05:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5c5a867-fe35-42e2-8939-42c4179bfe2c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T05:15:07.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:22.000Z" - }, - "events": [ - { - "uuid": "9181ca0a-6ddc-4f0f-a57a-d0d9058bfefc", - "start": { - "$date": "2021-01-14T05:15:07.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c244718e-3c1b-4f38-8341-f3d1ecaeabc3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-14T05:12:48.000Z" - }, - "end": { - "$date": "2021-01-14T05:31:34.000Z" - }, - "events": [ - { - "uuid": "2ef3ed49-a719-418c-95f8-f3c00b31f29b", - "start": { - "$date": "2021-01-14T05:12:48.000Z" - }, - "end": { - "$date": "2021-01-14T05:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d8aa020-0dc2-4d2f-b0c3-db3a00c3c290", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T05:15:17.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:12.000Z" - }, - "events": [ - { - "uuid": "d18a027e-c8e5-4d76-89e2-640415cbeedf", - "start": { - "$date": "2021-01-14T05:15:17.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b10faadd-7785-4460-b67d-aa8bd9cf12e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T05:15:20.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:20.000Z" - }, - "events": [ - { - "uuid": "3c1af3b3-3cc1-441f-9b01-5f14ed69584e", - "start": { - "$date": "2021-01-14T05:15:20.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e335647c-4fbf-48f8-b837-905c64813827", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T05:15:20.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:16.000Z" - }, - "events": [ - { - "uuid": "d1a17e37-9528-466a-9abf-bf4ed7ff7f2f", - "start": { - "$date": "2021-01-14T05:15:20.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75845aee-0557-4724-80bb-2f69c4ad2ff4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T05:15:18.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:19.000Z" - }, - "events": [ - { - "uuid": "8e3f3559-1d9d-4199-937b-b6a4c624ba25", - "start": { - "$date": "2021-01-14T05:15:18.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7b87b22-ffde-46a0-b246-a89742fc54ae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T05:15:05.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:16.000Z" - }, - "events": [ - { - "uuid": "a4d76b9e-dbec-4ec8-b3ae-5693a5c30db7", - "start": { - "$date": "2021-01-14T05:15:05.000Z" - }, - "end": { - "$date": "2021-01-14T05:36:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c0b2cd4-3daf-487c-888b-00eb5476221e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T05:54:48.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:44.000Z" - }, - "events": [ - { - "uuid": "476c5aff-583a-42f8-9e80-4af525854bf1", - "start": { - "$date": "2021-01-14T05:54:48.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "895c44fa-8ca5-433f-8397-a744542dd8b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T05:41:33.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:38.000Z" - }, - "events": [ - { - "uuid": "b74cf642-0b75-4525-89f8-af783e41cee1", - "start": { - "$date": "2021-01-14T05:41:33.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d25bd47c-3a7c-48ce-977b-c865ae2b0b32", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T05:40:41.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:36.000Z" - }, - "events": [ - { - "uuid": "d2c9ed13-4542-46b5-9236-a6b5b225a7ab", - "start": { - "$date": "2021-01-14T05:40:41.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e8aaf05-c9e0-41c3-8204-0c2e18f3e03d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T05:40:26.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:40.000Z" - }, - "events": [ - { - "uuid": "250661dc-e7da-469b-98df-cbdfbfdb3a8b", - "start": { - "$date": "2021-01-14T05:40:26.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7918340-58cb-4548-887a-fad5ebb2c012", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T05:40:27.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:37.000Z" - }, - "events": [ - { - "uuid": "a7bfff62-f650-4ecb-9920-fe98633addb0", - "start": { - "$date": "2021-01-14T05:40:27.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3bae2ad-8961-4466-b237-58f5e5acde13", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T05:40:49.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:35.000Z" - }, - "events": [ - { - "uuid": "727eca7c-d109-40cb-91b7-d45c1003673e", - "start": { - "$date": "2021-01-14T05:40:49.000Z" - }, - "end": { - "$date": "2021-01-14T05:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03282929-1b77-4819-9131-e0fd3c413c80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T05:55:30.000Z" - }, - "end": { - "$date": "2021-01-14T05:58:32.000Z" - }, - "events": [ - { - "uuid": "9e46b79a-8dfd-454d-830c-e0d54958f3ce", - "start": { - "$date": "2021-01-14T05:55:30.000Z" - }, - "end": { - "$date": "2021-01-14T05:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b3991d26-f04a-4fda-b0aa-174ca3805f50", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-14T05:55:32.000Z" - }, - "end": { - "$date": "2021-01-14T14:20:44.000Z" - }, - "events": [ - { - "uuid": "e9870541-1139-4d2a-af12-2b0b373a4f99", - "start": { - "$date": "2021-01-14T05:55:32.000Z" - }, - "end": { - "$date": "2021-01-14T14:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "987c0ffd-9f08-4390-98aa-be5d2340b835", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T06:04:44.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:06.000Z" - }, - "events": [ - { - "uuid": "24e6951e-a5ef-46e8-961d-0c11f7be78e3", - "start": { - "$date": "2021-01-14T06:04:44.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72b87a98-f3e7-4e26-b8c1-48b3d2f24512", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T06:04:58.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:03.000Z" - }, - "events": [ - { - "uuid": "aa3f2eaf-5e16-4bf2-9835-110f36f7fd4f", - "start": { - "$date": "2021-01-14T06:04:58.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ebf3684-70ca-473f-b5c5-87aa314cdb23", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T06:04:37.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:03.000Z" - }, - "events": [ - { - "uuid": "fa197258-b43a-41bc-8913-01a23dae296c", - "start": { - "$date": "2021-01-14T06:04:37.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4069343-e6dc-447e-8644-ae648a4f29c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T06:04:42.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:01.000Z" - }, - "events": [ - { - "uuid": "25dd0690-1fc1-44d8-89c0-9988e2563588", - "start": { - "$date": "2021-01-14T06:04:42.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c70ac21a-59a8-45ea-bfc4-f26f9de43ccd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T06:04:39.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:10.000Z" - }, - "events": [ - { - "uuid": "a5b82469-8c00-4ed2-a328-581f3fb9bcc9", - "start": { - "$date": "2021-01-14T06:04:39.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89a6ab57-fa72-4b91-8a2f-7e05d0cff6b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T06:04:56.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:07.000Z" - }, - "events": [ - { - "uuid": "83ff20ef-db73-4de4-81c9-b2115e06c02a", - "start": { - "$date": "2021-01-14T06:04:56.000Z" - }, - "end": { - "$date": "2021-01-14T06:26:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3d496e92-be08-4648-9f9e-0810a83710d0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-14T06:09:31.000Z" - }, - "end": { - "$date": "2021-01-14T06:12:44.000Z" - }, - "events": [ - { - "uuid": "31b900e4-a5bb-46d6-9507-43fb64386f7e", - "start": { - "$date": "2021-01-14T06:09:31.000Z" - }, - "end": { - "$date": "2021-01-14T06:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "da2c5f37-25bb-4f7d-a295-15ba51b7daac", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-14T06:20:06.000Z" - }, - "end": { - "$date": "2021-01-14T07:43:54.000Z" - }, - "events": [ - { - "uuid": "2e0dd39a-8274-4c31-b850-6bcd761de6d2", - "start": { - "$date": "2021-01-14T06:20:06.000Z" - }, - "end": { - "$date": "2021-01-14T07:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd0f7eb9-94fc-4f8f-b5c8-2c7c94339e39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T06:33:01.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:50.000Z" - }, - "events": [ - { - "uuid": "9b734674-686c-40dd-a1a6-76c727138311", - "start": { - "$date": "2021-01-14T06:33:01.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a86594ee-3448-42b3-a734-e304795382d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T06:32:53.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:39.000Z" - }, - "events": [ - { - "uuid": "35c26eec-926f-4f9c-b846-18044b95899a", - "start": { - "$date": "2021-01-14T06:32:53.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50b9ae3e-37b3-4bc0-a345-c18f6d8dd96f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T06:32:52.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:37.000Z" - }, - "events": [ - { - "uuid": "44e847b1-04dc-4478-877c-142df0694492", - "start": { - "$date": "2021-01-14T06:32:52.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7da67cb8-8a67-4a97-8558-c89a29403b43", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T06:33:09.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:39.000Z" - }, - "events": [ - { - "uuid": "c164960f-c84d-47a4-9785-64c0407a5519", - "start": { - "$date": "2021-01-14T06:33:09.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd0e92c9-77aa-468f-a4f9-0e54d7775089", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T06:32:56.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:42.000Z" - }, - "events": [ - { - "uuid": "143aa954-2194-43c0-8ed7-f0e62000b8b5", - "start": { - "$date": "2021-01-14T06:32:56.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d9089d7-e039-4be9-9b4e-7d18acb631cf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T06:33:12.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:44.000Z" - }, - "events": [ - { - "uuid": "90d7009c-f2c4-4686-b58e-45219b131319", - "start": { - "$date": "2021-01-14T06:33:12.000Z" - }, - "end": { - "$date": "2021-01-14T07:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78fe6700-a0d9-4096-83fd-81a778dc61b1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T07:10:24.000Z" - }, - "end": { - "$date": "2021-01-14T07:12:59.000Z" - }, - "events": [ - { - "uuid": "c487567d-763c-484b-984b-6bbb52eca773", - "start": { - "$date": "2021-01-14T07:10:24.000Z" - }, - "end": { - "$date": "2021-01-14T07:12:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8924af69-8bed-467a-bbc8-8eed357a96eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T07:18:12.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:56.000Z" - }, - "events": [ - { - "uuid": "76e78c3b-872a-4f74-9528-3120392a5966", - "start": { - "$date": "2021-01-14T07:18:12.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0bb0243-7ce1-4186-9cb3-5a9c45526bdc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T07:18:09.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:49.000Z" - }, - "events": [ - { - "uuid": "9439459e-9c8c-4168-8c64-18ed9c7e4e45", - "start": { - "$date": "2021-01-14T07:18:09.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f336285-8401-40e6-bd05-e1fdc85e9e79", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T07:18:09.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:49.000Z" - }, - "events": [ - { - "uuid": "b25cc86d-52b1-4205-988f-5c89d85c1253", - "start": { - "$date": "2021-01-14T07:18:09.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb063f71-e5e6-4ac3-9d7b-a331aa41260d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-14T07:18:45.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:45.000Z" - }, - "events": [ - { - "uuid": "a81ac6db-6f93-4c16-abde-9e0b3d956aeb", - "start": { - "$date": "2021-01-14T07:18:45.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "563ca568-de19-42d5-b806-824ff173f32b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T07:18:13.000Z" - }, - "end": { - "$date": "2021-01-14T07:58:02.000Z" - }, - "events": [ - { - "uuid": "be47f782-c4d5-46df-9275-ad986afdc3f9", - "start": { - "$date": "2021-01-14T07:18:13.000Z" - }, - "end": { - "$date": "2021-01-14T07:58:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9665feed-488e-482c-95f3-30aaab600c20", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T07:22:40.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:47.000Z" - }, - "events": [ - { - "uuid": "30c8324b-6ec6-47eb-915b-9fecfa307c5e", - "start": { - "$date": "2021-01-14T07:22:40.000Z" - }, - "end": { - "$date": "2021-01-14T07:57:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f8e68b8-a84e-47d0-a533-32123855308a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T07:59:02.000Z" - }, - "end": { - "$date": "2021-01-14T08:02:16.000Z" - }, - "events": [ - { - "uuid": "0b446078-3c2d-48be-978b-c6fa582166d4", - "start": { - "$date": "2021-01-14T07:59:02.000Z" - }, - "end": { - "$date": "2021-01-14T08:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "203d43a6-5eb7-4b5a-bcf0-50bea453a29b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-14T15:23:36.000Z" - }, - "end": { - "$date": "2021-01-14T15:57:03.000Z" - }, - "events": [ - { - "uuid": "aa0e6193-23c1-49dc-8fa6-1f1e87e2c70d", - "start": { - "$date": "2021-01-14T15:23:36.000Z" - }, - "end": { - "$date": "2021-01-14T15:57:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ebfb2ba1-8e5a-4158-8279-9307ee3404d1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T15:26:36.000Z" - }, - "end": { - "$date": "2021-01-14T15:31:22.000Z" - }, - "events": [ - { - "uuid": "0d8a9cfc-3f27-48f5-8b59-f58278f81993", - "start": { - "$date": "2021-01-14T15:26:36.000Z" - }, - "end": { - "$date": "2021-01-14T15:31:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "28e1e8d0-a60f-4ff2-9990-02f2ef06d160", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-14T18:22:08.000Z" - }, - "end": { - "$date": "2021-01-14T19:33:07.000Z" - }, - "events": [ - { - "uuid": "33f2314a-d378-480b-a568-8dab088a475d", - "start": { - "$date": "2021-01-14T18:22:08.000Z" - }, - "end": { - "$date": "2021-01-14T18:37:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d67e025e-2644-40fe-a271-a08a633a74a8", - "start": { - "$date": "2021-01-14T18:37:08.000Z" - }, - "end": { - "$date": "2021-01-14T18:41:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "50e4733b-d0b3-4a42-9d9d-da5cc6198f86", - "start": { - "$date": "2021-01-14T18:41:08.000Z" - }, - "end": { - "$date": "2021-01-14T19:33:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "3a0d1054-cf03-4a26-b5e1-a787f6f5291b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T19:15:25.000Z" - }, - "end": { - "$date": "2021-01-14T19:26:22.000Z" - }, - "events": [ - { - "uuid": "29821b0a-a54f-47f2-b1aa-f2dd304c43b4", - "start": { - "$date": "2021-01-14T19:15:25.000Z" - }, - "end": { - "$date": "2021-01-14T19:21:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51ffd41b-8fdd-4fcc-87a5-d0b670b7c104", - "start": { - "$date": "2021-01-14T19:21:25.000Z" - }, - "end": { - "$date": "2021-01-14T19:26:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27d33091-49bb-4021-8b93-b8a7f812f3e1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T20:41:04.000Z" - }, - "end": { - "$date": "2021-01-14T21:14:28.000Z" - }, - "events": [ - { - "uuid": "c1bcbf04-3545-424f-b3fa-5a4b57453e1a", - "start": { - "$date": "2021-01-14T20:41:04.000Z" - }, - "end": { - "$date": "2021-01-14T21:14:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "169e5c33-c5a9-465a-8213-86ee049d37e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-14T20:38:47.000Z" - }, - "end": { - "$date": "2021-01-14T22:14:44.000Z" - }, - "events": [ - { - "uuid": "4ad96ea6-cb20-4480-8a30-117715c5abbb", - "start": { - "$date": "2021-01-14T20:38:47.000Z" - }, - "end": { - "$date": "2021-01-14T22:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "898ac6a0-ec52-44e0-a63c-55fc5ff36ea8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T20:44:20.000Z" - }, - "end": { - "$date": "2021-01-14T21:05:58.000Z" - }, - "events": [ - { - "uuid": "1a4c3582-8123-4048-89a0-6a9b4bf43c7d", - "start": { - "$date": "2021-01-14T20:44:20.000Z" - }, - "end": { - "$date": "2021-01-14T21:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8f6f1c8f-5294-4f34-ae77-31b4b95745ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-14T20:50:16.000Z" - }, - "end": { - "$date": "2021-01-14T21:15:14.000Z" - }, - "events": [ - { - "uuid": "915d71f2-d34c-48d5-8367-8106a3b96ac0", - "start": { - "$date": "2021-01-14T20:50:16.000Z" - }, - "end": { - "$date": "2021-01-14T21:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a1dff05d-d863-4a27-b742-b2d00428d782", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T20:51:33.000Z" - }, - "end": { - "$date": "2021-01-14T20:54:14.000Z" - }, - "events": [ - { - "uuid": "2e63993f-375b-408c-9f0e-35b44dd03289", - "start": { - "$date": "2021-01-14T20:51:33.000Z" - }, - "end": { - "$date": "2021-01-14T20:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a9fb9199-6804-4178-8784-56ca0e4c874d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-14T20:57:04.000Z" - }, - "end": { - "$date": "2021-01-14T21:36:58.000Z" - }, - "events": [ - { - "uuid": "ff5478a1-b9d1-4141-810c-6025f4710103", - "start": { - "$date": "2021-01-14T20:57:04.000Z" - }, - "end": { - "$date": "2021-01-14T21:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "540f8d7a-0878-421a-b7e8-cc3c67b3a2b9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T21:11:56.000Z" - }, - "end": { - "$date": "2021-01-14T21:36:39.000Z" - }, - "events": [ - { - "uuid": "f4f7838f-f503-424f-8981-8e0c2ec7459a", - "start": { - "$date": "2021-01-14T21:11:56.000Z" - }, - "end": { - "$date": "2021-01-14T21:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d92d5dba-db01-4ce1-a898-caf2d239d349", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T21:14:55.000Z" - }, - "end": { - "$date": "2021-01-14T21:32:34.000Z" - }, - "events": [ - { - "uuid": "5b6edc31-daa7-4870-989c-f2151a1df8fd", - "start": { - "$date": "2021-01-14T21:14:55.000Z" - }, - "end": { - "$date": "2021-01-14T21:32:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83a1bcde-3253-478b-af8f-d1b653e7df01", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T21:18:57.000Z" - }, - "end": { - "$date": "2021-01-14T21:42:43.000Z" - }, - "events": [ - { - "uuid": "02103163-7bd7-42c7-a811-7fa0e1701944", - "start": { - "$date": "2021-01-14T21:18:57.000Z" - }, - "end": { - "$date": "2021-01-14T21:42:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4800d72b-bfad-4c25-bfed-11b95ee0d525", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-14T21:46:45.000Z" - }, - "end": { - "$date": "2021-01-14T22:04:31.000Z" - }, - "events": [ - { - "uuid": "54237873-d206-4bd4-862c-0534df84792d", - "start": { - "$date": "2021-01-14T21:46:45.000Z" - }, - "end": { - "$date": "2021-01-14T22:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a9880996-2baa-4aff-9f94-3bf0f92e4e17", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-14T21:37:39.000Z" - }, - "end": { - "$date": "2021-01-15T00:16:46.000Z" - }, - "events": [ - { - "uuid": "da1f9502-163f-4a10-b674-c80a88ee90f0", - "start": { - "$date": "2021-01-14T21:37:39.000Z" - }, - "end": { - "$date": "2021-01-15T00:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8225e303-e1e2-4537-a65f-ec2851d1003b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-14T21:58:29.000Z" - }, - "end": { - "$date": "2021-01-14T22:04:35.000Z" - }, - "events": [ - { - "uuid": "8cad3fe5-eb6e-4520-8a89-688459e79278", - "start": { - "$date": "2021-01-14T21:58:29.000Z" - }, - "end": { - "$date": "2021-01-14T22:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "88afec81-7e45-4595-af20-408a7ad01ad9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-14T22:12:37.000Z" - }, - "end": { - "$date": "2021-01-14T23:36:11.000Z" - }, - "events": [ - { - "uuid": "3970a485-766f-41eb-82e1-94b36199119a", - "start": { - "$date": "2021-01-14T22:12:37.000Z" - }, - "end": { - "$date": "2021-01-14T23:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a393b96-40bb-4ff8-b23b-f8421ce9762c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-14T22:34:20.000Z" - }, - "end": { - "$date": "2021-01-14T23:10:49.000Z" - }, - "events": [ - { - "uuid": "4eb72cc9-0fa8-4650-b059-a4f7a24c9bf3", - "start": { - "$date": "2021-01-14T22:34:20.000Z" - }, - "end": { - "$date": "2021-01-14T23:10:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0de626e2-9d3b-4a7a-b3f7-01939a5f81ad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-14T22:44:10.000Z" - }, - "end": { - "$date": "2021-01-14T23:07:35.000Z" - }, - "events": [ - { - "uuid": "1d36b194-050c-43e6-b2b8-e8d8b6d9e5b2", - "start": { - "$date": "2021-01-14T22:44:10.000Z" - }, - "end": { - "$date": "2021-01-14T23:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "3ecf5f7c-aa3d-48c0-8554-22ee38280a55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T23:22:44.000Z" - }, - "end": { - "$date": "2021-01-14T23:24:19.000Z" - }, - "events": [ - { - "uuid": "dc4244df-9046-4446-8fae-5fad169465d9", - "start": { - "$date": "2021-01-14T23:22:44.000Z" - }, - "end": { - "$date": "2021-01-14T23:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "09b2fb7f-5711-46d7-a621-4ee8982ea6fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-14T23:26:04.000Z" - }, - "end": { - "$date": "2021-01-14T23:59:41.000Z" - }, - "events": [ - { - "uuid": "60246403-af14-4a9d-887c-eefff3547a78", - "start": { - "$date": "2021-01-14T23:26:04.000Z" - }, - "end": { - "$date": "2021-01-14T23:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ff326d20-57bd-4229-905e-bd776efb01de", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-14T23:39:41.000Z" - }, - "end": { - "$date": "2021-01-15T01:51:52.000Z" - }, - "events": [ - { - "uuid": "972bb8c4-9f76-4bb3-935b-9484e521094d", - "start": { - "$date": "2021-01-14T23:39:41.000Z" - }, - "end": { - "$date": "2021-01-15T01:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "6796106a-c377-4682-8ff4-294bbb2d63d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T00:00:21.000Z" - }, - "end": { - "$date": "2021-01-15T01:10:42.000Z" - }, - "events": [ - { - "uuid": "eab402e9-4203-4461-ba6b-426b15c9467e", - "start": { - "$date": "2021-01-15T00:00:21.000Z" - }, - "end": { - "$date": "2021-01-15T01:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "8a27742f-48f0-4d3b-9d28-be322941d680", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-15T00:08:45.000Z" - }, - "end": { - "$date": "2021-01-15T00:17:18.000Z" - }, - "events": [ - { - "uuid": "447ccd1b-e9fa-46d0-aa91-2ff2bf64418c", - "start": { - "$date": "2021-01-15T00:08:45.000Z" - }, - "end": { - "$date": "2021-01-15T00:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "75216f2f-3857-43fe-8c38-d18716cc8213", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T00:27:03.000Z" - }, - "end": { - "$date": "2021-01-15T00:39:09.000Z" - }, - "events": [ - { - "uuid": "f2df7002-8b16-48c2-a6fa-b216d29ffdcc", - "start": { - "$date": "2021-01-15T00:27:03.000Z" - }, - "end": { - "$date": "2021-01-15T00:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "f5f01271-0683-4e7f-9d7e-74310aaec7bb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-15T00:35:49.000Z" - }, - "end": { - "$date": "2021-01-15T02:56:57.000Z" - }, - "events": [ - { - "uuid": "497ded3b-551b-409e-858f-094ec46b1681", - "start": { - "$date": "2021-01-15T00:35:49.000Z" - }, - "end": { - "$date": "2021-01-15T00:51:49.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "2cd20668-4d09-4eed-9cab-1529c50f85f6", - "start": { - "$date": "2021-01-15T00:51:49.000Z" - }, - "end": { - "$date": "2021-01-15T02:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "8954c7c6-4030-42da-854e-747af8d055d4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T04:22:00.000Z" - }, - "end": { - "$date": "2021-01-15T04:22:05.000Z" - }, - "events": [ - { - "uuid": "3feaae2c-2545-43e5-9ddd-3a2a98f45ab4", - "start": { - "$date": "2021-01-15T04:22:00.000Z" - }, - "end": { - "$date": "2021-01-15T04:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "b2bb22e1-8293-4ebf-901d-1c05a29e08eb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-15T00:56:54.000Z" - }, - "end": { - "$date": "2021-01-15T01:42:31.000Z" - }, - "events": [ - { - "uuid": "7a5c989c-f6f6-4ff4-92f7-204a7d79da5d", - "start": { - "$date": "2021-01-15T00:56:54.000Z" - }, - "end": { - "$date": "2021-01-15T01:42:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "b76acaeb-ef3f-487f-8041-c81e758741f1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-15T04:20:45.000Z" - }, - "end": { - "$date": "2021-01-15T04:20:49.000Z" - }, - "events": [ - { - "uuid": "fa05edc3-d5d6-46c1-8e8d-4122d5cbe137", - "start": { - "$date": "2021-01-15T04:20:45.000Z" - }, - "end": { - "$date": "2021-01-15T04:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fef16ccd-49dc-4b7b-b659-be9eb78c2c27", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-15T01:41:39.000Z" - }, - "end": { - "$date": "2021-01-15T01:56:26.000Z" - }, - "events": [ - { - "uuid": "968f04ad-6d85-43d7-bf7f-c98d50ba6a6c", - "start": { - "$date": "2021-01-15T01:41:39.000Z" - }, - "end": { - "$date": "2021-01-15T01:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cf7262e1-3ce0-4ece-a9bb-87a6161f1fc1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T02:25:48.000Z" - }, - "end": { - "$date": "2021-01-15T02:57:59.000Z" - }, - "events": [ - { - "uuid": "2dca012d-5e5f-4e6d-8b85-44262cd1fbd8", - "start": { - "$date": "2021-01-15T02:25:48.000Z" - }, - "end": { - "$date": "2021-01-15T02:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3329c40a-5809-4a1e-a746-82d8ebd9a206", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-15T02:49:51.000Z" - }, - "end": { - "$date": "2021-01-15T03:19:54.000Z" - }, - "events": [ - { - "uuid": "f71a6841-ca2c-42ee-bcb8-28b670fc377a", - "start": { - "$date": "2021-01-15T02:49:51.000Z" - }, - "end": { - "$date": "2021-01-15T03:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2823709b-abc5-41aa-bbb0-fe6c3093199d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T02:59:54.000Z" - }, - "end": { - "$date": "2021-01-15T03:33:44.000Z" - }, - "events": [ - { - "uuid": "4b229571-a042-48a3-bba6-751352f9fe54", - "start": { - "$date": "2021-01-15T02:59:54.000Z" - }, - "end": { - "$date": "2021-01-15T03:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9fe5c512-f0fe-486f-9372-947373461186", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-15T03:22:25.000Z" - }, - "end": { - "$date": "2021-01-15T04:17:54.000Z" - }, - "events": [ - { - "uuid": "faed0308-a264-4af1-b1d1-92c6e63de438", - "start": { - "$date": "2021-01-15T03:22:25.000Z" - }, - "end": { - "$date": "2021-01-15T04:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bb8ca73c-1c86-41f4-af6e-539a5a271f53", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-15T03:31:54.000Z" - }, - "end": { - "$date": "2021-01-15T08:13:31.000Z" - }, - "events": [ - { - "uuid": "66b58ab4-560d-4290-b93e-55570609aaa2", - "start": { - "$date": "2021-01-15T03:31:54.000Z" - }, - "end": { - "$date": "2021-01-15T08:13:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed478de1-c147-4724-a172-f058813111c9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T03:29:38.000Z" - }, - "end": { - "$date": "2021-01-15T03:48:58.000Z" - }, - "events": [ - { - "uuid": "2c0d3cf9-bec0-4b5b-b4cc-bf99da727be7", - "start": { - "$date": "2021-01-15T03:29:38.000Z" - }, - "end": { - "$date": "2021-01-15T03:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40b9ae04-160a-4b8c-8383-a46ca799c4b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-15T03:57:44.000Z" - }, - "end": { - "$date": "2021-01-15T04:17:56.000Z" - }, - "events": [ - { - "uuid": "9b903cea-443b-4f95-ad2b-eb47e1323d8e", - "start": { - "$date": "2021-01-15T03:57:44.000Z" - }, - "end": { - "$date": "2021-01-15T04:17:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b80e50b9-4952-41da-9d88-3b5bb3113d0b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-15T04:17:54.000Z" - }, - "end": { - "$date": "2021-01-15T04:18:22.000Z" - }, - "events": [ - { - "uuid": "812068b3-4757-47d1-a897-4d120fdcd3ca", - "start": { - "$date": "2021-01-15T04:17:54.000Z" - }, - "end": { - "$date": "2021-01-15T04:18:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e36c407-56cb-4ddd-881d-6ccef2752bc3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T03:58:26.000Z" - }, - "end": { - "$date": "2021-01-15T04:17:54.000Z" - }, - "events": [ - { - "uuid": "822c0b5b-40b1-4f3e-b191-e468fb130cf3", - "start": { - "$date": "2021-01-15T03:58:26.000Z" - }, - "end": { - "$date": "2021-01-15T04:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d095aa4b-d417-434c-8d64-2336c49d7587", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-15T04:22:52.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:12.000Z" - }, - "events": [ - { - "uuid": "9f2353ce-369d-4d9b-8c65-afe34eb1e17d", - "start": { - "$date": "2021-01-15T04:22:52.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c345b672-c449-4761-beba-b5395b06b7ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T04:21:48.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:03.000Z" - }, - "events": [ - { - "uuid": "a8a1ad5c-230f-4165-9465-37d53ce4ca73", - "start": { - "$date": "2021-01-15T04:21:48.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84b9dcd3-dd7c-4261-97ac-868d28598699", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-15T04:21:54.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:03.000Z" - }, - "events": [ - { - "uuid": "86e8e963-a1e1-41e4-8a46-892b7e0fa606", - "start": { - "$date": "2021-01-15T04:21:54.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2027346-3cf0-4ac7-99a8-bf48b183bf35", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T04:22:31.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:09.000Z" - }, - "events": [ - { - "uuid": "33ef98ef-ffb3-4c85-b9e0-ce9719ee1ab1", - "start": { - "$date": "2021-01-15T04:22:31.000Z" - }, - "end": { - "$date": "2021-01-15T04:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "12d831e7-f4f2-4d03-bcc2-a62640e394ff", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T04:43:17.000Z" - }, - "end": { - "$date": "2021-01-15T04:45:42.000Z" - }, - "events": [ - { - "uuid": "bc32dfd2-5141-4fb1-911b-dffa42e04096", - "start": { - "$date": "2021-01-15T04:43:17.000Z" - }, - "end": { - "$date": "2021-01-15T04:45:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0d967b89-0ab5-41e7-b0e1-ffc5bd9ec2fb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T04:46:07.000Z" - }, - "end": { - "$date": "2021-01-15T06:07:57.000Z" - }, - "events": [ - { - "uuid": "c90ea1e0-99b4-43c0-b784-f2894a1ac5f1", - "start": { - "$date": "2021-01-15T04:46:07.000Z" - }, - "end": { - "$date": "2021-01-15T06:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ee3c933-cb45-4858-94d1-00e229425902", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-15T04:52:44.000Z" - }, - "end": { - "$date": "2021-01-15T05:17:43.000Z" - }, - "events": [ - { - "uuid": "b070918b-6d42-4b7a-bdcd-b4616c32c5d4", - "start": { - "$date": "2021-01-15T04:52:44.000Z" - }, - "end": { - "$date": "2021-01-15T05:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb375c4c-1316-4bec-b789-60a6a266b22c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-15T05:16:44.000Z" - }, - "end": { - "$date": "2021-01-15T05:19:09.000Z" - }, - "events": [ - { - "uuid": "6bea3019-3d5c-4037-9111-67a1d76400bf", - "start": { - "$date": "2021-01-15T05:16:44.000Z" - }, - "end": { - "$date": "2021-01-15T05:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "486020a8-4ec3-4291-88fb-117d3b0a4b48", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T04:52:47.000Z" - }, - "end": { - "$date": "2021-01-15T05:16:37.000Z" - }, - "events": [ - { - "uuid": "7d5cac16-4938-42cb-8566-bc3102b903bb", - "start": { - "$date": "2021-01-15T04:52:47.000Z" - }, - "end": { - "$date": "2021-01-15T05:16:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ceb6dfa9-4b1a-4e91-b5cc-fadba952dc42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T04:52:53.000Z" - }, - "end": { - "$date": "2021-01-15T05:16:33.000Z" - }, - "events": [ - { - "uuid": "faecb2f7-ed2d-4e0d-bf1d-26972e2ed662", - "start": { - "$date": "2021-01-15T04:52:53.000Z" - }, - "end": { - "$date": "2021-01-15T05:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "691071cf-faf2-42dc-b9b5-2ac7456d4bac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-15T05:12:37.000Z" - }, - "end": { - "$date": "2021-01-15T05:14:17.000Z" - }, - "events": [ - { - "uuid": "d4241826-9a55-4a51-a828-78cf5032938b", - "start": { - "$date": "2021-01-15T05:12:37.000Z" - }, - "end": { - "$date": "2021-01-15T05:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b257de7-8669-4a34-8837-97b22a38897b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-15T05:22:12.000Z" - }, - "end": { - "$date": "2021-01-15T05:48:29.000Z" - }, - "events": [ - { - "uuid": "f2dbd4c2-43a3-4084-9ebd-d48092c7c11c", - "start": { - "$date": "2021-01-15T05:22:12.000Z" - }, - "end": { - "$date": "2021-01-15T05:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4a204d1-695f-4079-b069-03176e84e66a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T05:54:34.000Z" - }, - "end": { - "$date": "2021-01-15T06:39:59.000Z" - }, - "events": [ - { - "uuid": "4738d7bb-f10b-4f91-8ad3-7a0d7e5b064a", - "start": { - "$date": "2021-01-15T05:54:34.000Z" - }, - "end": { - "$date": "2021-01-15T06:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86b9bdd6-a974-4e0d-ae13-82d41b08b8d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-15T05:22:45.000Z" - }, - "end": { - "$date": "2021-01-15T05:47:50.000Z" - }, - "events": [ - { - "uuid": "26966277-83b1-45f4-9a1b-5bd2bd44f06b", - "start": { - "$date": "2021-01-15T05:22:45.000Z" - }, - "end": { - "$date": "2021-01-15T05:47:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e299f9dd-9f1b-4a58-9559-0be09a564fcf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T05:22:23.000Z" - }, - "end": { - "$date": "2021-01-15T05:47:58.000Z" - }, - "events": [ - { - "uuid": "6c397869-675a-4e2d-af2f-0b116b38f8f9", - "start": { - "$date": "2021-01-15T05:22:23.000Z" - }, - "end": { - "$date": "2021-01-15T05:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "99080472-2d6f-425b-928c-b6747efaa9c2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-15T05:21:54.000Z" - }, - "end": { - "$date": "2021-01-15T06:20:54.000Z" - }, - "events": [ - { - "uuid": "25aca28c-c715-4182-a2aa-ee61995a6302", - "start": { - "$date": "2021-01-15T05:21:54.000Z" - }, - "end": { - "$date": "2021-01-15T06:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "feb17227-fe48-4e56-aa4c-dbe7b24ffc75", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-15T05:36:45.000Z" - }, - "end": { - "$date": "2021-01-15T07:18:56.000Z" - }, - "events": [ - { - "uuid": "9de0737c-9d94-4ab4-9c78-ceaa2a3938b8", - "start": { - "$date": "2021-01-15T05:36:45.000Z" - }, - "end": { - "$date": "2021-01-15T07:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36e6f6c0-1602-45d3-bf4e-0398979f3a73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-15T05:54:16.000Z" - }, - "end": { - "$date": "2021-01-15T06:40:01.000Z" - }, - "events": [ - { - "uuid": "2ccde5be-e9a1-47d7-88b7-0eef63da1f55", - "start": { - "$date": "2021-01-15T05:54:16.000Z" - }, - "end": { - "$date": "2021-01-15T06:40:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99441361-2e67-4878-869f-83d4b667f46e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-15T05:54:16.000Z" - }, - "end": { - "$date": "2021-01-15T06:40:01.000Z" - }, - "events": [ - { - "uuid": "97c47dbc-3058-4ed6-bbfe-1cfed51a1e6c", - "start": { - "$date": "2021-01-15T05:54:16.000Z" - }, - "end": { - "$date": "2021-01-15T06:40:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32409712-1d48-438c-b17d-f66ddb0c3930", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T05:54:08.000Z" - }, - "end": { - "$date": "2021-01-15T06:11:09.000Z" - }, - "events": [ - { - "uuid": "2cc8c3a3-f667-4686-848e-9d0402ce804b", - "start": { - "$date": "2021-01-15T05:54:08.000Z" - }, - "end": { - "$date": "2021-01-15T06:11:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b591b7b2-1337-4611-a1ce-8767a2bdf2b3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-15T05:54:21.000Z" - }, - "end": { - "$date": "2021-01-15T06:40:02.000Z" - }, - "events": [ - { - "uuid": "00711990-f7dc-4875-8b71-d8a70acc41f7", - "start": { - "$date": "2021-01-15T05:54:21.000Z" - }, - "end": { - "$date": "2021-01-15T06:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "abfe8f33-693a-4723-ad33-d42eef5097d8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T06:14:53.000Z" - }, - "end": { - "$date": "2021-01-15T07:59:40.000Z" - }, - "events": [ - { - "uuid": "7b1f7f57-24da-4762-b41d-2f68dec14b73", - "start": { - "$date": "2021-01-15T06:14:53.000Z" - }, - "end": { - "$date": "2021-01-15T07:59:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dd80b6f-0e97-4e11-941e-3c7f2b2cb24b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-15T06:28:57.000Z" - }, - "end": { - "$date": "2021-01-15T06:39:57.000Z" - }, - "events": [ - { - "uuid": "2b9f9ca1-8d67-434f-bd0a-9f655f2b9aee", - "start": { - "$date": "2021-01-15T06:28:57.000Z" - }, - "end": { - "$date": "2021-01-15T06:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c1353e33-b93c-49ab-90cb-4a5b52d1b84f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-15T06:41:32.000Z" - }, - "end": { - "$date": "2021-01-15T06:52:51.000Z" - }, - "events": [ - { - "uuid": "b781f1d1-0215-470c-9e25-89959624e764", - "start": { - "$date": "2021-01-15T06:41:32.000Z" - }, - "end": { - "$date": "2021-01-15T06:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a5f3113-52da-4aed-a238-36a1b1cbfe09", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-15T07:01:06.000Z" - }, - "end": { - "$date": "2021-01-15T07:42:11.000Z" - }, - "events": [ - { - "uuid": "e777b477-0601-44b3-87ce-798803139deb", - "start": { - "$date": "2021-01-15T07:01:06.000Z" - }, - "end": { - "$date": "2021-01-15T07:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e79f8f0a-18a6-4619-b71d-69340b9b49d2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-15T08:49:12.000Z" - }, - "end": { - "$date": "2021-01-15T13:28:51.000Z" - }, - "events": [ - { - "uuid": "2ed41539-1b86-4736-8821-9a1d070b0eef", - "start": { - "$date": "2021-01-15T08:49:12.000Z" - }, - "end": { - "$date": "2021-01-15T13:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fd3a3050-8d37-49a3-8177-a3ee07ebac7f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-15T15:37:31.000Z" - }, - "end": { - "$date": "2021-01-15T16:47:51.000Z" - }, - "events": [ - { - "uuid": "394835fd-a11b-4318-85d7-73582f2d03ff", - "start": { - "$date": "2021-01-15T15:37:31.000Z" - }, - "end": { - "$date": "2021-01-15T16:47:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "9291c678-1d5f-48a1-a92c-64050ef49f31", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-15T16:54:02.000Z" - }, - "end": { - "$date": "2021-01-15T16:55:53.000Z" - }, - "events": [ - { - "uuid": "5193813a-f1b0-4b9e-8821-01a83e5d18dc", - "start": { - "$date": "2021-01-15T16:54:02.000Z" - }, - "end": { - "$date": "2021-01-15T16:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "882d84c0-8842-4391-b884-ca557d53d58e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T16:56:28.000Z" - }, - "end": { - "$date": "2021-01-15T18:01:14.000Z" - }, - "events": [ - { - "uuid": "22efe788-ecf9-461b-af10-277a446b3f27", - "start": { - "$date": "2021-01-15T16:56:28.000Z" - }, - "end": { - "$date": "2021-01-15T18:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "73bbef95-5475-4608-b251-fe7147bf0dc9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-15T16:56:48.000Z" - }, - "end": { - "$date": "2021-01-15T18:00:24.000Z" - }, - "events": [ - { - "uuid": "3070cb36-f793-425d-a3a4-34ad8b8a2ae2", - "start": { - "$date": "2021-01-15T16:56:48.000Z" - }, - "end": { - "$date": "2021-01-15T18:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "dadbbfe8-3bac-4235-bf6e-a6acc8235dca", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-15T17:12:17.000Z" - }, - "end": { - "$date": "2021-01-15T17:14:44.000Z" - }, - "events": [ - { - "uuid": "846ab607-c7c5-44b1-b5d8-069a32f5f52e", - "start": { - "$date": "2021-01-15T17:12:17.000Z" - }, - "end": { - "$date": "2021-01-15T17:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "966decea-85ef-4a05-b95d-6786057ac710", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-15T17:14:47.000Z" - }, - "end": { - "$date": "2021-01-15T18:27:29.000Z" - }, - "events": [ - { - "uuid": "9da48d61-8c17-4017-b268-72a6a8089782", - "start": { - "$date": "2021-01-15T17:14:47.000Z" - }, - "end": { - "$date": "2021-01-15T18:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c81d151-9014-4c2d-b5f8-cda1eadc01c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T18:29:46.000Z" - }, - "end": { - "$date": "2021-01-15T19:01:11.000Z" - }, - "events": [ - { - "uuid": "9e19af52-a3aa-42e5-a2fd-0bad047a1655", - "start": { - "$date": "2021-01-15T18:29:46.000Z" - }, - "end": { - "$date": "2021-01-15T19:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33edf4cf-1f59-4039-990a-13321c08c8c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T19:10:06.000Z" - }, - "end": { - "$date": "2021-01-15T19:44:16.000Z" - }, - "events": [ - { - "uuid": "2aa02e2b-3ef6-4f4d-a332-9f33216b4e03", - "start": { - "$date": "2021-01-15T19:10:06.000Z" - }, - "end": { - "$date": "2021-01-15T19:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55625406-a59d-40f8-86de-d7ead4b4c2a8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T19:49:26.000Z" - }, - "end": { - "$date": "2021-01-15T20:06:02.000Z" - }, - "events": [ - { - "uuid": "209366aa-3852-4a5b-a021-f1aa47a954bc", - "start": { - "$date": "2021-01-15T19:49:26.000Z" - }, - "end": { - "$date": "2021-01-15T20:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "362b450d-d601-4637-b154-3e73acf87824", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-15T20:11:15.000Z" - }, - "end": { - "$date": "2021-01-15T21:33:49.000Z" - }, - "events": [ - { - "uuid": "e9b0fd63-1a73-45f3-89bd-f27bc84dcba0", - "start": { - "$date": "2021-01-15T20:11:15.000Z" - }, - "end": { - "$date": "2021-01-15T21:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "15c344c3-8eb1-4fb4-a416-d773004bbbda", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-15T20:22:31.000Z" - }, - "end": { - "$date": "2021-01-15T21:01:44.000Z" - }, - "events": [ - { - "uuid": "cd7bf0d5-7f1e-499d-bf9b-fcbe6e8a1644", - "start": { - "$date": "2021-01-15T20:22:31.000Z" - }, - "end": { - "$date": "2021-01-15T21:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "389ad8d3-e8b2-4a90-8f67-0198568d1d8b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-15T21:21:59.000Z" - }, - "end": { - "$date": "2021-01-15T23:21:55.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-15T21:21:59.000Z" - }, - "end": { - "$date": "2021-01-15T23:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "42a079c7-b73d-45f9-9276-473b9c895589", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T21:50:27.000Z" - }, - "end": { - "$date": "2021-01-15T22:20:03.000Z" - }, - "events": [ - { - "uuid": "b2bca238-d844-4085-96b7-1017bcf1f0a1", - "start": { - "$date": "2021-01-15T21:50:27.000Z" - }, - "end": { - "$date": "2021-01-15T22:20:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5d803cdd-84a2-445e-b932-bafa7a1cf19b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-15T22:06:33.000Z" - }, - "end": { - "$date": "2021-01-15T23:12:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-15T22:06:33.000Z" - }, - "end": { - "$date": "2021-01-15T23:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "fa318be8-e8f9-4a7e-9d9b-d301558c59af", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-15T22:10:25.000Z" - }, - "end": { - "$date": "2021-01-16T05:10:23.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-15T22:10:25.000Z" - }, - "end": { - "$date": "2021-01-16T05:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e73368c8-7968-4e3a-be84-f8aed4f91db9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T23:01:41.000Z" - }, - "end": { - "$date": "2021-01-15T23:22:11.000Z" - }, - "events": [ - { - "uuid": "25a0b149-933f-4fa4-a46c-59edf83b36bb", - "start": { - "$date": "2021-01-15T23:01:41.000Z" - }, - "end": { - "$date": "2021-01-15T23:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "01d35760-e72a-42ba-a8da-8a8c6fffd287", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-15T23:12:52.000Z" - }, - "end": { - "$date": "2021-01-15T23:15:13.000Z" - }, - "events": [ - { - "uuid": "a225ca30-cb1d-418f-ba00-fe150c9f26f4", - "start": { - "$date": "2021-01-15T23:12:52.000Z" - }, - "end": { - "$date": "2021-01-15T23:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d2d22598-55b6-4a87-8365-1a5174d2d57a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-15T23:15:23.000Z" - }, - "end": { - "$date": "2021-01-15T23:58:48.000Z" - }, - "events": [ - { - "uuid": "322bdd82-ec9c-461e-8395-f9305bfbd031", - "start": { - "$date": "2021-01-15T23:15:23.000Z" - }, - "end": { - "$date": "2021-01-15T23:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6d7467d3-1529-43c1-9afb-88f6aac338f9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-15T23:24:31.000Z" - }, - "end": { - "$date": "2021-01-16T00:40:49.000Z" - }, - "events": [ - { - "uuid": "488c1042-1dee-4f11-966f-67a3a851e0eb", - "start": { - "$date": "2021-01-15T23:24:31.000Z" - }, - "end": { - "$date": "2021-01-16T00:40:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62da8aae-f8f4-41a6-afb6-4c4aed093870", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-15T23:27:21.000Z" - }, - "end": { - "$date": "2021-01-15T23:53:48.000Z" - }, - "events": [ - { - "uuid": "e750b937-d085-4866-ad99-18db1f4c1527", - "start": { - "$date": "2021-01-15T23:27:21.000Z" - }, - "end": { - "$date": "2021-01-15T23:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "98e9db29-0b8c-4f55-98d7-a5f33988670d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-15T23:44:07.000Z" - }, - "end": { - "$date": "2021-01-16T00:10:17.000Z" - }, - "events": [ - { - "uuid": "49f294da-2b2a-4f8f-9448-921f47c6d560", - "start": { - "$date": "2021-01-15T23:44:07.000Z" - }, - "end": { - "$date": "2021-01-16T00:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4544f695-bbe6-423b-aba5-3feec2198cad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-15T23:59:23.000Z" - }, - "end": { - "$date": "2021-01-16T00:38:11.000Z" - }, - "events": [ - { - "uuid": "3e5a37b3-e61a-45ba-bc9a-a1d2c2756be1", - "start": { - "$date": "2021-01-15T23:59:23.000Z" - }, - "end": { - "$date": "2021-01-16T00:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d58c028d-690f-44e8-9fc4-4641f067b501", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T00:40:17.000Z" - }, - "end": { - "$date": "2021-01-16T00:44:27.000Z" - }, - "events": [ - { - "uuid": "74d42e32-cf71-4b69-b01c-876a409d1897", - "start": { - "$date": "2021-01-16T00:40:17.000Z" - }, - "end": { - "$date": "2021-01-16T00:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "c85b5206-e3f1-4475-a632-f69efa39769c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T00:49:49.000Z" - }, - "end": { - "$date": "2021-01-16T01:03:59.000Z" - }, - "events": [ - { - "uuid": "8a8e5936-9efb-41f7-a506-290d74ae562f", - "start": { - "$date": "2021-01-16T00:49:49.000Z" - }, - "end": { - "$date": "2021-01-16T01:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2db5b84b-82b5-4663-8601-ade0fa5726ec", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T01:14:29.000Z" - }, - "end": { - "$date": "2021-01-16T01:50:30.000Z" - }, - "events": [ - { - "uuid": "50575422-953b-4b8c-ac81-97b038acfe0f", - "start": { - "$date": "2021-01-16T01:14:29.000Z" - }, - "end": { - "$date": "2021-01-16T01:50:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0ecb81b4-f10d-4202-9740-6dce2e2eb8d2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T01:26:08.000Z" - }, - "end": { - "$date": "2021-01-16T01:46:05.000Z" - }, - "events": [ - { - "uuid": "bb930cb1-2a84-4a9c-aa44-af79952473fa", - "start": { - "$date": "2021-01-16T01:26:08.000Z" - }, - "end": { - "$date": "2021-01-16T01:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "083034b6-c506-42c8-a138-b9b979b33121", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T01:55:10.000Z" - }, - "end": { - "$date": "2021-01-16T02:24:20.000Z" - }, - "events": [ - { - "uuid": "43cfe6c6-b921-4ab6-b1fa-49755f96556d", - "start": { - "$date": "2021-01-16T01:55:10.000Z" - }, - "end": { - "$date": "2021-01-16T02:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efd3a7fe-d7f4-40da-ba2d-26a6973e2c60", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T02:30:52.000Z" - }, - "end": { - "$date": "2021-01-16T02:33:10.000Z" - }, - "events": [ - { - "uuid": "ad0ead1b-a9be-4a76-860d-3e7e23967ba2", - "start": { - "$date": "2021-01-16T02:30:52.000Z" - }, - "end": { - "$date": "2021-01-16T02:33:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7e97911-6fe5-42f4-9599-adef169c2b69", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T01:56:29.000Z" - }, - "end": { - "$date": "2021-01-16T02:33:20.000Z" - }, - "events": [ - { - "uuid": "5dc38b32-caf7-4ec3-9dd5-9b37a7858aca", - "start": { - "$date": "2021-01-16T01:56:29.000Z" - }, - "end": { - "$date": "2021-01-16T02:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9aaf5adc-2fef-47b9-b959-8e72dbece425", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T01:55:03.000Z" - }, - "end": { - "$date": "2021-01-16T02:33:17.000Z" - }, - "events": [ - { - "uuid": "c708615e-bd4c-4a3c-91c0-4096eb449fa4", - "start": { - "$date": "2021-01-16T01:55:03.000Z" - }, - "end": { - "$date": "2021-01-16T02:33:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65237b0d-e01b-4c9c-a421-7e0e040813e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T02:37:20.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:40.000Z" - }, - "events": [ - { - "uuid": "8751941d-43db-45f8-81ce-d501e0542d16", - "start": { - "$date": "2021-01-16T02:37:20.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cbcf879-9510-44c9-98c7-7177abdfe1f5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T02:37:18.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:36.000Z" - }, - "events": [ - { - "uuid": "f19c928f-f536-420c-b7f8-a659d9cf0523", - "start": { - "$date": "2021-01-16T02:37:18.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e2e237c-68d6-46fe-8449-2fe3fbcbd435", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T02:37:35.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:35.000Z" - }, - "events": [ - { - "uuid": "543e31ec-2f20-4867-bf38-9414352406e6", - "start": { - "$date": "2021-01-16T02:37:35.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24bb35dd-7e27-4530-a6e2-3ae22421a142", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T02:37:13.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:44.000Z" - }, - "events": [ - { - "uuid": "48eef8c4-00bb-47f5-afb4-16ac3db5fa26", - "start": { - "$date": "2021-01-16T02:37:13.000Z" - }, - "end": { - "$date": "2021-01-16T02:59:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9ade9c0-ca59-423a-bf72-2cbfd28dcc0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T03:04:01.000Z" - }, - "end": { - "$date": "2021-01-16T03:35:51.000Z" - }, - "events": [ - { - "uuid": "8b204112-d820-43c7-bd9f-520f0f16785c", - "start": { - "$date": "2021-01-16T03:04:01.000Z" - }, - "end": { - "$date": "2021-01-16T03:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fecfc68-7691-45e7-83d9-ef2db040228e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T03:03:59.000Z" - }, - "end": { - "$date": "2021-01-16T03:35:57.000Z" - }, - "events": [ - { - "uuid": "58baab0f-1679-44a9-8f0b-a1f0828b1403", - "start": { - "$date": "2021-01-16T03:03:59.000Z" - }, - "end": { - "$date": "2021-01-16T03:35:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38e75a0d-3b61-45b8-9875-6e0e505ea8e7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T03:04:00.000Z" - }, - "end": { - "$date": "2021-01-16T03:36:12.000Z" - }, - "events": [ - { - "uuid": "f6dabd69-2da4-47e0-b8c8-02ed78b9b464", - "start": { - "$date": "2021-01-16T03:04:00.000Z" - }, - "end": { - "$date": "2021-01-16T03:36:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62370e9d-abbf-4879-ab3c-100e973fee33", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T03:13:09.000Z" - }, - "end": { - "$date": "2021-01-16T05:49:55.000Z" - }, - "events": [ - { - "uuid": "b9dd2e58-685e-4dda-9993-4a3d02a600a3", - "start": { - "$date": "2021-01-16T03:13:09.000Z" - }, - "end": { - "$date": "2021-01-16T05:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79685770-82fa-4478-88db-31e941f2f02a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T03:38:41.000Z" - }, - "end": { - "$date": "2021-01-16T04:00:18.000Z" - }, - "events": [ - { - "uuid": "55e0d8e1-b296-4aa3-b332-bfa20a2cd3fa", - "start": { - "$date": "2021-01-16T03:38:41.000Z" - }, - "end": { - "$date": "2021-01-16T04:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcb9f0bd-5a72-4737-be97-e4cec6d8654a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T03:38:39.000Z" - }, - "end": { - "$date": "2021-01-16T04:00:08.000Z" - }, - "events": [ - { - "uuid": "d8fb14f3-dfa3-4337-8100-eaf8310e1f75", - "start": { - "$date": "2021-01-16T03:38:39.000Z" - }, - "end": { - "$date": "2021-01-16T04:00:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7559eacd-cb0b-4754-ad35-1c7655ec07de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T03:38:36.000Z" - }, - "end": { - "$date": "2021-01-16T04:00:17.000Z" - }, - "events": [ - { - "uuid": "738340a9-244a-43cb-bdc0-129f7e12dd9e", - "start": { - "$date": "2021-01-16T03:38:36.000Z" - }, - "end": { - "$date": "2021-01-16T04:00:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "62a8ecd7-c7f3-4f9f-9634-f8afc6c53b6d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T03:38:45.000Z" - }, - "end": { - "$date": "2021-01-16T05:29:42.000Z" - }, - "events": [ - { - "uuid": "371f6249-21c2-4130-806c-0389d58ef40d", - "start": { - "$date": "2021-01-16T03:38:45.000Z" - }, - "end": { - "$date": "2021-01-16T05:29:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8d6b5db5-b35c-4c92-b5d3-08ea31e2372e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-16T03:40:34.000Z" - }, - "end": { - "$date": "2021-01-16T04:37:17.000Z" - }, - "events": [ - { - "uuid": "d23dc8ee-b2c0-4622-9993-2c51e76d469e", - "start": { - "$date": "2021-01-16T03:40:34.000Z" - }, - "end": { - "$date": "2021-01-16T04:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "570a70b2-0c63-47b5-bb46-66f0d58971ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T04:03:58.000Z" - }, - "end": { - "$date": "2021-01-16T04:43:18.000Z" - }, - "events": [ - { - "uuid": "2d84166f-5133-47f4-938f-ca89569720cc", - "start": { - "$date": "2021-01-16T04:03:58.000Z" - }, - "end": { - "$date": "2021-01-16T04:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3776ca5d-529f-48a8-995d-a14fbf57d441", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T04:03:55.000Z" - }, - "end": { - "$date": "2021-01-16T04:43:24.000Z" - }, - "events": [ - { - "uuid": "27a2b86c-2d2a-40e7-964a-5d2d1f811ff9", - "start": { - "$date": "2021-01-16T04:03:55.000Z" - }, - "end": { - "$date": "2021-01-16T04:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "309cb24f-10c5-43de-8b8f-5454ee559d29", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T04:03:57.000Z" - }, - "end": { - "$date": "2021-01-16T04:43:41.000Z" - }, - "events": [ - { - "uuid": "bcd7d02f-a12b-4a97-ab02-f64f7512445b", - "start": { - "$date": "2021-01-16T04:03:57.000Z" - }, - "end": { - "$date": "2021-01-16T04:43:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93fe8e04-47ac-47bf-af55-c66944b4186d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T05:02:34.000Z" - }, - "end": { - "$date": "2021-01-16T05:04:14.000Z" - }, - "events": [ - { - "uuid": "a78938fd-90b9-4100-9f4f-0d8add4fcb36", - "start": { - "$date": "2021-01-16T05:02:34.000Z" - }, - "end": { - "$date": "2021-01-16T05:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f372be4c-dc87-4b7b-88ca-d320a1ecd97c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T05:04:13.000Z" - }, - "end": { - "$date": "2021-01-16T05:09:58.000Z" - }, - "events": [ - { - "uuid": "57b701d5-c0c7-4345-8fd2-52b42c919307", - "start": { - "$date": "2021-01-16T05:04:13.000Z" - }, - "end": { - "$date": "2021-01-16T05:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64253fb8-cb4d-44e6-bcb8-b9876b93ba92", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T05:04:09.000Z" - }, - "end": { - "$date": "2021-01-16T05:05:05.000Z" - }, - "events": [ - { - "uuid": "7b7dd194-682a-49cb-be1c-9d980f927988", - "start": { - "$date": "2021-01-16T05:04:09.000Z" - }, - "end": { - "$date": "2021-01-16T05:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f49050d1-0d84-46dc-8f03-51c4c7474389", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T04:46:36.000Z" - }, - "end": { - "$date": "2021-01-16T05:04:10.000Z" - }, - "events": [ - { - "uuid": "6b98e23b-3c42-4b09-8e75-d72ba6d9ea2b", - "start": { - "$date": "2021-01-16T04:46:36.000Z" - }, - "end": { - "$date": "2021-01-16T05:04:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e5476b4-4f80-4aa1-9e96-58e8f6f6d326", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T05:04:15.000Z" - }, - "end": { - "$date": "2021-01-16T05:04:35.000Z" - }, - "events": [ - { - "uuid": "6cdf595c-c306-4830-bbde-f6c591d6c5f6", - "start": { - "$date": "2021-01-16T05:04:15.000Z" - }, - "end": { - "$date": "2021-01-16T05:04:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "c4608310-1097-4bfe-b3b1-f96ab3c56927", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T05:04:01.000Z" - }, - "end": { - "$date": "2021-01-16T05:52:21.000Z" - }, - "events": [ - { - "uuid": "5341da7a-4003-455b-95ef-59e04766ce28", - "start": { - "$date": "2021-01-16T05:04:01.000Z" - }, - "end": { - "$date": "2021-01-16T05:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6bf1193-a597-4b4a-806a-9779c569d686", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T05:17:56.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:59.000Z" - }, - "events": [ - { - "uuid": "776509b0-b16b-40ad-ad96-8f2e6268742e", - "start": { - "$date": "2021-01-16T05:17:56.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c204523-e22f-4ee3-b11d-b3a74fa28227", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T05:17:54.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:48.000Z" - }, - "events": [ - { - "uuid": "67827ddf-49a9-4eee-8425-42ddb681d831", - "start": { - "$date": "2021-01-16T05:17:54.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d996889-e462-4654-97c8-36e320856200", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T05:17:45.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:47.000Z" - }, - "events": [ - { - "uuid": "cd96a7e9-20a1-42bd-adab-1fc473a45af1", - "start": { - "$date": "2021-01-16T05:17:45.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2c193a5-c9be-4961-bb49-856297cafacf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-16T05:17:52.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:56.000Z" - }, - "events": [ - { - "uuid": "05577ba3-960a-4065-aca3-f77a107ec60c", - "start": { - "$date": "2021-01-16T05:17:52.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc055ac8-d5a3-49d2-9aa8-9b6345d2c6a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T05:17:51.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:46.000Z" - }, - "events": [ - { - "uuid": "8b75b2c0-d469-47e6-bf6e-9f35e9a4f939", - "start": { - "$date": "2021-01-16T05:17:51.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8708d85-52d5-4fdc-8a90-50388afcce79", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T05:17:51.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:56.000Z" - }, - "events": [ - { - "uuid": "f05045a3-db56-426f-9f76-6c71213137d4", - "start": { - "$date": "2021-01-16T05:17:51.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2179c37-65d5-4da0-a890-f749c48afd7c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T05:18:03.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:49.000Z" - }, - "events": [ - { - "uuid": "507bb49b-d076-4be1-99f2-dfcf1211bc5a", - "start": { - "$date": "2021-01-16T05:18:03.000Z" - }, - "end": { - "$date": "2021-01-16T05:36:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2cb3be31-e3f0-4861-b553-a908cca944a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T05:30:53.000Z" - }, - "end": { - "$date": "2021-01-16T06:15:15.000Z" - }, - "events": [ - { - "uuid": "6a986076-b29c-415d-952f-8fc0903c36cc", - "start": { - "$date": "2021-01-16T05:30:53.000Z" - }, - "end": { - "$date": "2021-01-16T06:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d8e60bd-14d1-4259-b873-99247c4912aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T05:57:56.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:51.000Z" - }, - "events": [ - { - "uuid": "9d7f6e35-a62c-44fb-bf02-1352ab4b9010", - "start": { - "$date": "2021-01-16T05:57:56.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7576e7ff-6a7a-4ce6-b48d-448491fb4d37", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T05:49:04.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:43.000Z" - }, - "events": [ - { - "uuid": "1e7f63fc-1ea8-4489-9f63-87adbff703e2", - "start": { - "$date": "2021-01-16T05:49:04.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "836fd15f-6033-4ef2-9e3d-7417e5a05a23", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-16T05:39:47.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:52.000Z" - }, - "events": [ - { - "uuid": "a8cac735-6a83-42ec-b398-2d96089e632a", - "start": { - "$date": "2021-01-16T05:39:47.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5e22af8-a690-496e-a439-8bb06384b4b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T05:39:46.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:47.000Z" - }, - "events": [ - { - "uuid": "9481f8f2-0a1f-48f5-b607-a693eacf874f", - "start": { - "$date": "2021-01-16T05:39:46.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ead6c01f-0849-4990-9029-935286009a87", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T05:39:46.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:43.000Z" - }, - "events": [ - { - "uuid": "d21c0ddf-43f2-49d3-a6a8-198dc6670c64", - "start": { - "$date": "2021-01-16T05:39:46.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14e097ca-1686-48b6-a5cb-6364dad796ef", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T05:39:49.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:44.000Z" - }, - "events": [ - { - "uuid": "f289945c-d708-45ce-adef-1c1ba542c34e", - "start": { - "$date": "2021-01-16T05:39:49.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df5a646b-d47b-4231-9299-199983a7a615", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T05:39:47.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:42.000Z" - }, - "events": [ - { - "uuid": "e581a28d-dc3a-46bf-b18d-1259678c8316", - "start": { - "$date": "2021-01-16T05:39:47.000Z" - }, - "end": { - "$date": "2021-01-16T05:57:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "60e52d00-ebe1-49ee-9599-7801888fac84", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T05:51:10.000Z" - }, - "end": { - "$date": "2021-01-16T06:19:28.000Z" - }, - "events": [ - { - "uuid": "f37916c7-f727-43fa-a984-4a3dd1785cbd", - "start": { - "$date": "2021-01-16T05:51:10.000Z" - }, - "end": { - "$date": "2021-01-16T06:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "1087b7b0-b867-4fa9-a10c-a48e5ca8c8ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T05:52:51.000Z" - }, - "end": { - "$date": "2021-01-16T06:18:48.000Z" - }, - "events": [ - { - "uuid": "c4df1931-f8e2-4575-9d34-2350e6d83bc7", - "start": { - "$date": "2021-01-16T05:52:51.000Z" - }, - "end": { - "$date": "2021-01-16T06:18:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4db1179d-195c-46fa-bf5e-34a1df5db683", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T06:00:13.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:18.000Z" - }, - "events": [ - { - "uuid": "9ac8e7de-ff81-483b-a32c-9602e75f2de1", - "start": { - "$date": "2021-01-16T06:00:13.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cac28ed-ea45-47e7-b6d3-c40fa683388c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T06:00:54.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:14.000Z" - }, - "events": [ - { - "uuid": "d41f5368-911b-44da-b9ea-6d5d70735e33", - "start": { - "$date": "2021-01-16T06:00:54.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9abd8df-c29c-44f3-a10c-7e438e4f3049", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T06:00:26.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:21.000Z" - }, - "events": [ - { - "uuid": "a63a35d7-011b-48cd-ab8d-ddb551aa31ea", - "start": { - "$date": "2021-01-16T06:00:26.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4fb8a1b-6778-4dde-ae81-7e3c758b7a34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T06:00:17.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:17.000Z" - }, - "events": [ - { - "uuid": "c36b9533-8840-49c6-9062-2eefcec7f3dd", - "start": { - "$date": "2021-01-16T06:00:17.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c998924-833c-4e0c-9b0c-66ec7be3c2a7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T06:00:12.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:17.000Z" - }, - "events": [ - { - "uuid": "9a1a1d0c-38e4-4c57-a3bb-2ddda8e2eefa", - "start": { - "$date": "2021-01-16T06:00:12.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9f7782b-f96e-47d8-adc1-37d57446fbce", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-16T06:00:12.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:22.000Z" - }, - "events": [ - { - "uuid": "a83a5c7a-af8a-473d-8f1d-015fdc1bc770", - "start": { - "$date": "2021-01-16T06:00:12.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e12de074-52e8-4ad9-a6a3-b2c1b30df471", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T06:00:14.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:15.000Z" - }, - "events": [ - { - "uuid": "dcaf3f82-5096-49ed-82cf-38a08b061909", - "start": { - "$date": "2021-01-16T06:00:14.000Z" - }, - "end": { - "$date": "2021-01-16T06:20:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d468fec8-a024-4638-92d1-33872070375b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T06:21:05.000Z" - }, - "end": { - "$date": "2021-01-16T06:22:12.000Z" - }, - "events": [ - { - "uuid": "59c567db-443b-4af7-9d99-2b5deaf44dc4", - "start": { - "$date": "2021-01-16T06:21:05.000Z" - }, - "end": { - "$date": "2021-01-16T06:22:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4a0296e-5e5a-4809-bb04-5298d290ae3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-16T06:26:18.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:23.000Z" - }, - "events": [ - { - "uuid": "05609cb5-9e4d-43f7-a9d5-92086d7142f4", - "start": { - "$date": "2021-01-16T06:26:18.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b964929-a8b6-4578-b5d5-8d136cd3c1ae", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T06:26:27.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:14.000Z" - }, - "events": [ - { - "uuid": "6c7cf9d6-c213-4423-8c3e-3ddfb8f50bf8", - "start": { - "$date": "2021-01-16T06:26:27.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee35e0e8-342e-4c11-878f-143ec0019608", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T06:26:09.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:19.000Z" - }, - "events": [ - { - "uuid": "88ba034b-6f3a-4681-be09-20df0f932b65", - "start": { - "$date": "2021-01-16T06:26:09.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "888f9a29-78ca-466a-960f-9f880eee53cb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T06:26:13.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:18.000Z" - }, - "events": [ - { - "uuid": "e2c06475-14c0-4f52-be99-d00d33af661f", - "start": { - "$date": "2021-01-16T06:26:13.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9533cdb-31f4-451e-aa74-3364ab43870d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-16T06:26:13.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:23.000Z" - }, - "events": [ - { - "uuid": "488117d7-47ac-4a50-b726-44bb4983a807", - "start": { - "$date": "2021-01-16T06:26:13.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d26ed8cf-ddf0-45a2-ae19-d30d5c6a5cf9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T06:26:25.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:16.000Z" - }, - "events": [ - { - "uuid": "dcba617c-78b9-4e0f-8d02-82eacdd7d69f", - "start": { - "$date": "2021-01-16T06:26:25.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53cdb962-a70a-4d9f-856b-52e44edb4b71", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T06:26:14.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:20.000Z" - }, - "events": [ - { - "uuid": "4d19d116-87be-46a4-8385-9f30c1da4770", - "start": { - "$date": "2021-01-16T06:26:14.000Z" - }, - "end": { - "$date": "2021-01-16T06:43:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5c95198c-b4a8-43b2-88ce-d43a4aec174f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T06:26:03.000Z" - }, - "end": { - "$date": "2021-01-16T07:39:28.000Z" - }, - "events": [ - { - "uuid": "a19644cf-2c99-4518-8a0c-2e7cd2605188", - "start": { - "$date": "2021-01-16T06:26:03.000Z" - }, - "end": { - "$date": "2021-01-16T07:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "e17d0219-7d7d-412c-a8a0-6062d937c2fd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T06:27:32.000Z" - }, - "end": { - "$date": "2021-01-16T07:39:54.000Z" - }, - "events": [ - { - "uuid": "b68cdd8b-1c5a-46eb-84e8-3ffc2eeba1d4", - "start": { - "$date": "2021-01-16T06:27:32.000Z" - }, - "end": { - "$date": "2021-01-16T07:39:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfc201dd-f719-4087-b68c-0e9ec07ec9cd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T06:48:32.000Z" - }, - "end": { - "$date": "2021-01-16T07:11:00.000Z" - }, - "events": [ - { - "uuid": "19652b62-421d-4571-953f-448d967344c3", - "start": { - "$date": "2021-01-16T06:48:32.000Z" - }, - "end": { - "$date": "2021-01-16T07:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4508e346-59b2-43fd-9f2a-41d662a14e9d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T06:45:28.000Z" - }, - "end": { - "$date": "2021-01-16T07:15:18.000Z" - }, - "events": [ - { - "uuid": "380f970b-bf8b-4577-b53b-3f76ed000f1d", - "start": { - "$date": "2021-01-16T06:45:28.000Z" - }, - "end": { - "$date": "2021-01-16T07:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82f41726-9b39-449d-8804-8584a16f2b0d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-16T06:47:48.000Z" - }, - "end": { - "$date": "2021-01-16T07:37:26.000Z" - }, - "events": [ - { - "uuid": "864e069e-7ad4-4053-924c-4cf7d4a09b97", - "start": { - "$date": "2021-01-16T06:47:48.000Z" - }, - "end": { - "$date": "2021-01-16T07:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "43e8828b-3b20-40c7-a99d-b29b202ec73a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-16T06:48:44.000Z" - }, - "end": { - "$date": "2021-01-16T07:37:55.000Z" - }, - "events": [ - { - "uuid": "a40a2573-a4a8-45be-acb4-59c83223106c", - "start": { - "$date": "2021-01-16T06:48:44.000Z" - }, - "end": { - "$date": "2021-01-16T07:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "94259bef-ddd9-4701-ba4f-dbf27d02a63e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-16T06:49:18.000Z" - }, - "end": { - "$date": "2021-01-16T07:37:16.000Z" - }, - "events": [ - { - "uuid": "e9d75c60-880d-4f27-9ca5-c5b5658c5aab", - "start": { - "$date": "2021-01-16T06:49:18.000Z" - }, - "end": { - "$date": "2021-01-16T07:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec4f218b-9444-4b35-8c58-3c9cf623dc6b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-16T07:13:23.000Z" - }, - "end": { - "$date": "2021-01-16T07:33:48.000Z" - }, - "events": [ - { - "uuid": "d2b38b07-b5e1-4c67-9b35-c86888c477ef", - "start": { - "$date": "2021-01-16T07:13:23.000Z" - }, - "end": { - "$date": "2021-01-16T07:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "34003fef-6a15-420d-84d2-ae3d4935b3a0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T07:35:48.000Z" - }, - "end": { - "$date": "2021-01-16T08:41:49.000Z" - }, - "events": [ - { - "uuid": "c0bb39bd-2345-4727-8d9a-001d19114394", - "start": { - "$date": "2021-01-16T07:35:48.000Z" - }, - "end": { - "$date": "2021-01-16T08:41:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "aa94ca4c-3017-4d43-bd9c-2a03c99acd79", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T07:40:14.000Z" - }, - "end": { - "$date": "2021-01-16T09:05:56.000Z" - }, - "events": [ - { - "uuid": "9ed51b47-338c-40db-8435-a3a0e7905327", - "start": { - "$date": "2021-01-16T07:40:14.000Z" - }, - "end": { - "$date": "2021-01-16T09:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "0209f272-2232-4fe9-9197-841d197a9374", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T08:00:36.000Z" - }, - "end": { - "$date": "2021-01-16T08:46:06.000Z" - }, - "events": [ - { - "uuid": "7551fa7c-c877-48f8-8a44-3c024e6ae7e3", - "start": { - "$date": "2021-01-16T08:00:36.000Z" - }, - "end": { - "$date": "2021-01-16T08:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0eabf510-c360-4eda-b128-10594645bfd7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-16T08:05:36.000Z" - }, - "end": { - "$date": "2021-01-16T13:45:29.000Z" - }, - "events": [ - { - "uuid": "078b36a3-289c-4e6a-be33-75f434623f5d", - "start": { - "$date": "2021-01-16T08:05:36.000Z" - }, - "end": { - "$date": "2021-01-16T13:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b6b49fd5-c62c-45e6-a181-32ac74eb4ace", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T08:41:59.000Z" - }, - "end": { - "$date": "2021-01-16T12:32:45.000Z" - }, - "events": [ - { - "uuid": "b27a424e-8e1d-41f9-bfe4-ffb6dbf49640", - "start": { - "$date": "2021-01-16T08:41:59.000Z" - }, - "end": { - "$date": "2021-01-16T12:32:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b02d56b7-c975-494d-85b4-db4aa12e3eb3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T08:55:12.000Z" - }, - "end": { - "$date": "2021-01-16T10:49:04.000Z" - }, - "events": [ - { - "uuid": "27ee3395-fd31-45ad-b7ff-d143398f3e39", - "start": { - "$date": "2021-01-16T08:55:12.000Z" - }, - "end": { - "$date": "2021-01-16T10:49:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "57390fbd-062d-4066-bb19-a2fa8d717d62", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T14:29:33.000Z" - }, - "end": { - "$date": "2021-01-16T18:10:27.000Z" - }, - "events": [ - { - "uuid": "86b27e46-8c3e-4ea1-bd28-f73e5b295142", - "start": { - "$date": "2021-01-16T14:29:33.000Z" - }, - "end": { - "$date": "2021-01-16T16:54:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03c0b408-e55b-46a6-b059-f2a901acf764", - "start": { - "$date": "2021-01-16T16:54:33.000Z" - }, - "end": { - "$date": "2021-01-16T17:25:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18717051-f7b3-46e0-8b4a-91bc8a2dc3d1", - "start": { - "$date": "2021-01-16T17:25:33.000Z" - }, - "end": { - "$date": "2021-01-16T18:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "94f07fe4-0b3a-43ea-b37a-8fda836385fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T15:41:31.000Z" - }, - "end": { - "$date": "2021-01-16T15:55:37.000Z" - }, - "events": [ - { - "uuid": "c8965374-f7ec-4f3d-b0dd-6c12e6970cea", - "start": { - "$date": "2021-01-16T15:41:31.000Z" - }, - "end": { - "$date": "2021-01-16T15:55:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "463a5a62-34c4-486e-a582-c5482d5b2f83", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T16:52:50.000Z" - }, - "end": { - "$date": "2021-01-16T17:36:45.000Z" - }, - "events": [ - { - "uuid": "ffa49ff7-32c7-426d-a78b-19d6b8ee57ad", - "start": { - "$date": "2021-01-16T16:52:50.000Z" - }, - "end": { - "$date": "2021-01-16T17:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "55f0f582-c697-4ea7-970c-cad0b13926f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T17:33:28.000Z" - }, - "end": { - "$date": "2021-01-16T18:16:08.000Z" - }, - "events": [ - { - "uuid": "f25785ad-b82e-4758-b9b9-bd660bcbabf1", - "start": { - "$date": "2021-01-16T17:33:28.000Z" - }, - "end": { - "$date": "2021-01-16T18:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "57e84ba5-fda5-4a50-8144-6cd2b392c102", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T17:40:51.000Z" - }, - "end": { - "$date": "2021-01-16T18:27:12.000Z" - }, - "events": [ - { - "uuid": "31dc68e4-2b7d-4bab-ad17-6d942e2e4a34", - "start": { - "$date": "2021-01-16T17:40:51.000Z" - }, - "end": { - "$date": "2021-01-16T18:27:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f66fbb8c-b4b3-4393-821e-56e2dda34801", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T18:38:49.000Z" - }, - "end": { - "$date": "2021-01-16T18:47:01.000Z" - }, - "events": [ - { - "uuid": "5e803f16-5d96-463f-97a1-75961fe137cb", - "start": { - "$date": "2021-01-16T18:38:49.000Z" - }, - "end": { - "$date": "2021-01-16T18:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c10837a1-67be-4134-ba29-b7f1e576fd65", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T18:49:12.000Z" - }, - "end": { - "$date": "2021-01-16T19:06:15.000Z" - }, - "events": [ - { - "uuid": "16c40ecf-39c4-440e-ba8b-71ae6fbdfe1c", - "start": { - "$date": "2021-01-16T18:49:12.000Z" - }, - "end": { - "$date": "2021-01-16T19:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "12864461-68c5-40b4-8ed7-1ac4488def44", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-16T18:53:21.000Z" - }, - "end": { - "$date": "2021-01-16T19:28:07.000Z" - }, - "events": [ - { - "uuid": "c765b243-0ed9-4763-81ed-c5c971a955d3", - "start": { - "$date": "2021-01-16T18:53:21.000Z" - }, - "end": { - "$date": "2021-01-16T19:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "61693076-3318-4d83-98e8-355ca1f3636b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T18:56:35.000Z" - }, - "end": { - "$date": "2021-01-16T20:25:52.000Z" - }, - "events": [ - { - "uuid": "b49c4cc0-6dc0-42f2-b958-7238309b51d1", - "start": { - "$date": "2021-01-16T18:56:35.000Z" - }, - "end": { - "$date": "2021-01-16T20:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "61d2dc5e-1687-47d3-a092-bd8c9b4e4458", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T19:06:59.000Z" - }, - "end": { - "$date": "2021-01-16T20:24:08.000Z" - }, - "events": [ - { - "uuid": "3bf1e704-6341-4807-bb71-b8e9011b21cc", - "start": { - "$date": "2021-01-16T19:06:59.000Z" - }, - "end": { - "$date": "2021-01-16T20:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "f5088be8-66bc-4386-8789-55ac531bf254", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-16T20:13:40.000Z" - }, - "end": { - "$date": "2021-01-16T22:09:28.000Z" - }, - "events": [ - { - "uuid": "786e64d1-bea5-4878-afd1-be254fbac3a6", - "start": { - "$date": "2021-01-16T20:13:40.000Z" - }, - "end": { - "$date": "2021-01-16T22:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c6a8269c-c3fc-4035-b7c1-f2038602dd68", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T20:26:42.000Z" - }, - "end": { - "$date": "2021-01-16T21:09:45.000Z" - }, - "events": [ - { - "uuid": "20461689-7074-4b0a-b7c8-662ac5b10b22", - "start": { - "$date": "2021-01-16T20:26:42.000Z" - }, - "end": { - "$date": "2021-01-16T21:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4aecb330-a45d-4778-acd5-5e1e8a22bcd7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T20:42:19.000Z" - }, - "end": { - "$date": "2021-01-16T20:54:39.000Z" - }, - "events": [ - { - "uuid": "7c648c3a-ea53-4754-8f87-92dfef16b0d8", - "start": { - "$date": "2021-01-16T20:42:19.000Z" - }, - "end": { - "$date": "2021-01-16T20:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "10befc9a-2802-4041-aa7d-50579e789aac", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T20:48:08.000Z" - }, - "end": { - "$date": "2021-01-16T22:25:43.000Z" - }, - "events": [ - { - "uuid": "1837c685-519e-4dfe-be3f-3284275ead9d", - "start": { - "$date": "2021-01-16T20:48:08.000Z" - }, - "end": { - "$date": "2021-01-16T22:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "75917899-e9f0-4822-8363-e7a39ba7eb20", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T21:01:34.000Z" - }, - "end": { - "$date": "2021-01-16T21:50:52.000Z" - }, - "events": [ - { - "uuid": "780ebb73-76a2-4c55-bc02-08429f68ca99", - "start": { - "$date": "2021-01-16T21:01:34.000Z" - }, - "end": { - "$date": "2021-01-16T21:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bd8ddb86-fe36-407e-bb0c-e78f2ef0553d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T21:01:35.000Z" - }, - "end": { - "$date": "2021-01-16T21:21:55.000Z" - }, - "events": [ - { - "uuid": "e5badb8a-6f31-4f41-8912-88372b245e7b", - "start": { - "$date": "2021-01-16T21:01:35.000Z" - }, - "end": { - "$date": "2021-01-16T21:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "03a8dd5d-f6e4-42cd-a441-773ec65e2282", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-16T21:11:40.000Z" - }, - "end": { - "$date": "2021-01-16T23:15:12.000Z" - }, - "events": [ - { - "uuid": "262925cf-a2d1-499a-983e-e8503d77574a", - "start": { - "$date": "2021-01-16T21:11:40.000Z" - }, - "end": { - "$date": "2021-01-16T23:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3a388dff-1620-463b-88a3-fa6e5907e161", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T21:14:57.000Z" - }, - "end": { - "$date": "2021-01-16T22:42:15.000Z" - }, - "events": [ - { - "uuid": "272ef5e2-b339-4d6e-819f-5540af0981ef", - "start": { - "$date": "2021-01-16T21:14:57.000Z" - }, - "end": { - "$date": "2021-01-16T22:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "899dcf1e-63b0-42d2-903d-808e07b34239", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-16T21:19:25.000Z" - }, - "end": { - "$date": "2021-01-16T21:27:20.000Z" - }, - "events": [ - { - "uuid": "1265071b-8435-49b5-99cc-f6639ed66a6c", - "start": { - "$date": "2021-01-16T21:19:25.000Z" - }, - "end": { - "$date": "2021-01-16T21:27:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "81501de5-f93d-4bd3-9db8-8270e5a4cc45", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-16T21:53:55.000Z" - }, - "end": { - "$date": "2021-01-17T04:07:55.000Z" - }, - "events": [ - { - "uuid": "ea8f19df-7684-45ee-b731-badd2bd651d7", - "start": { - "$date": "2021-01-16T21:53:55.000Z" - }, - "end": { - "$date": "2021-01-17T01:42:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7effee5f-85f1-4253-9fdd-21ecd45e309d", - "start": { - "$date": "2021-01-17T01:42:55.000Z" - }, - "end": { - "$date": "2021-01-17T02:06:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61819b9b-1781-420b-8888-2f28e93e748d", - "start": { - "$date": "2021-01-17T02:06:55.000Z" - }, - "end": { - "$date": "2021-01-17T04:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "05931417-c01c-4d4a-8b6c-375c6f86897d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T21:55:27.000Z" - }, - "end": { - "$date": "2021-01-16T22:22:04.000Z" - }, - "events": [ - { - "uuid": "b954ca2b-79b8-466c-8915-07aae9fb8a4f", - "start": { - "$date": "2021-01-16T21:55:27.000Z" - }, - "end": { - "$date": "2021-01-16T22:22:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b9aa8434-34c2-42fd-815c-31de37ec424f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-16T22:48:21.000Z" - }, - "end": { - "$date": "2021-01-16T23:18:23.000Z" - }, - "events": [ - { - "uuid": "fdce8842-11fd-4007-8286-1a6938323514", - "start": { - "$date": "2021-01-16T22:48:21.000Z" - }, - "end": { - "$date": "2021-01-16T23:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a5addedb-154a-4955-a93b-a7d5092439b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-16T22:53:59.000Z" - }, - "end": { - "$date": "2021-01-17T00:40:52.000Z" - }, - "events": [ - { - "uuid": "2e2a882e-c7b4-49ed-8c93-fad9236a593d", - "start": { - "$date": "2021-01-16T22:53:59.000Z" - }, - "end": { - "$date": "2021-01-16T23:35:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2cf0db12-96dc-4685-9bc2-d6fb0c1fc163", - "start": { - "$date": "2021-01-16T23:35:59.000Z" - }, - "end": { - "$date": "2021-01-16T23:44:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "236ae3cd-15ac-46ee-a3bd-4354ad140a30", - "start": { - "$date": "2021-01-16T23:44:59.000Z" - }, - "end": { - "$date": "2021-01-17T00:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23e2a73c-f161-4ff3-94a7-90785a55b0af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-16T23:33:38.000Z" - }, - "end": { - "$date": "2021-01-16T23:36:12.000Z" - }, - "events": [ - { - "uuid": "6d75b27f-c08b-4408-b840-66074524be26", - "start": { - "$date": "2021-01-16T23:33:38.000Z" - }, - "end": { - "$date": "2021-01-16T23:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13f6e8b1-af11-4718-bd21-2ee56944f9ff", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-16T23:40:07.000Z" - }, - "end": { - "$date": "2021-01-17T00:21:22.000Z" - }, - "events": [ - { - "uuid": "1620b776-934e-4fd2-b169-af2713c4c40e", - "start": { - "$date": "2021-01-16T23:40:07.000Z" - }, - "end": { - "$date": "2021-01-17T00:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b954128f-496b-4006-8c8b-b8061832294b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-16T23:38:08.000Z" - }, - "end": { - "$date": "2021-01-17T01:04:07.000Z" - }, - "events": [ - { - "uuid": "1965fe27-0763-4fa7-a9cd-3bd84cc23d0f", - "start": { - "$date": "2021-01-16T23:38:08.000Z" - }, - "end": { - "$date": "2021-01-17T01:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "10c68645-4360-4515-aeda-3fc9d0c7805e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-16T23:58:41.000Z" - }, - "end": { - "$date": "2021-01-17T00:28:51.000Z" - }, - "events": [ - { - "uuid": "c7447ed2-5d6f-4409-bd36-6190a197f551", - "start": { - "$date": "2021-01-16T23:58:41.000Z" - }, - "end": { - "$date": "2021-01-17T00:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d40ae450-29ab-47d4-9bf6-de744e760a60", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T00:00:08.000Z" - }, - "end": { - "$date": "2021-01-17T01:31:05.000Z" - }, - "events": [ - { - "uuid": "3d86dca2-e833-4c05-ab3f-f3644cae3303", - "start": { - "$date": "2021-01-17T00:00:08.000Z" - }, - "end": { - "$date": "2021-01-17T00:40:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0feec913-f983-4054-af3f-7bf97ca97cee", - "start": { - "$date": "2021-01-17T00:40:08.000Z" - }, - "end": { - "$date": "2021-01-17T00:41:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "105066ac-8952-485b-b4be-f68230eb8f86", - "start": { - "$date": "2021-01-17T00:41:08.000Z" - }, - "end": { - "$date": "2021-01-17T01:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "76597f45-1e36-434d-acd3-fde9feaa902f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T00:12:20.000Z" - }, - "end": { - "$date": "2021-01-17T01:46:06.000Z" - }, - "events": [ - { - "uuid": "9715220a-4915-4e71-b248-4ce400fe2046", - "start": { - "$date": "2021-01-17T00:12:20.000Z" - }, - "end": { - "$date": "2021-01-17T01:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ea8f2bc9-046a-4b05-b567-80a894659ea6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T00:22:34.000Z" - }, - "end": { - "$date": "2021-01-17T00:37:47.000Z" - }, - "events": [ - { - "uuid": "c1ea1a67-13e0-42b2-be98-7ab5090649cc", - "start": { - "$date": "2021-01-17T00:22:34.000Z" - }, - "end": { - "$date": "2021-01-17T00:37:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "35e0b1ea-f4a9-43ad-9b41-b58aa39d587d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T01:09:03.000Z" - }, - "end": { - "$date": "2021-01-17T01:31:23.000Z" - }, - "events": [ - { - "uuid": "1884850b-92c2-489e-b384-7d115fce7fe0", - "start": { - "$date": "2021-01-17T01:09:03.000Z" - }, - "end": { - "$date": "2021-01-17T01:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "73e72307-e22e-4ae0-a207-da8da91e9f11", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T01:31:48.000Z" - }, - "end": { - "$date": "2021-01-17T02:04:14.000Z" - }, - "events": [ - { - "uuid": "245522ab-6fd9-4349-ac29-e4c0a94dbcb3", - "start": { - "$date": "2021-01-17T01:31:48.000Z" - }, - "end": { - "$date": "2021-01-17T02:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "15be3027-89d3-4c79-b7d9-a4118990ad12", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T01:32:57.000Z" - }, - "end": { - "$date": "2021-01-17T02:04:02.000Z" - }, - "events": [ - { - "uuid": "0da95e91-6f16-4e57-becd-0771c3f1a832", - "start": { - "$date": "2021-01-17T01:32:57.000Z" - }, - "end": { - "$date": "2021-01-17T02:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "00b41ea6-2f06-4b14-9620-854147a42a0d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T01:37:55.000Z" - }, - "end": { - "$date": "2021-01-17T02:10:39.000Z" - }, - "events": [ - { - "uuid": "4c913ad6-5675-4d21-9bea-27d80b7c2165", - "start": { - "$date": "2021-01-17T01:37:55.000Z" - }, - "end": { - "$date": "2021-01-17T02:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d957708f-6cde-480f-8027-207570c0f3f5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T02:30:05.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:10.000Z" - }, - "events": [ - { - "uuid": "0927d4f2-a557-4b8f-af25-27fe0696d811", - "start": { - "$date": "2021-01-17T02:30:05.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad120797-21f7-403b-980c-0f480de26db7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T02:29:52.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:13.000Z" - }, - "events": [ - { - "uuid": "abc25c51-6ab7-4f45-aa47-dfeab563e569", - "start": { - "$date": "2021-01-17T02:29:52.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c672f75-38f5-486c-ba1d-ecfd75c240ff", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T02:29:52.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:08.000Z" - }, - "events": [ - { - "uuid": "7de8b062-e947-4e69-aacf-7110d2c183ed", - "start": { - "$date": "2021-01-17T02:29:52.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b5f5111-cbfb-4563-975b-0e730e84842c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T02:30:05.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:17.000Z" - }, - "events": [ - { - "uuid": "8eca364a-1206-450a-94a4-8106b74ce514", - "start": { - "$date": "2021-01-17T02:30:05.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23d129a5-9049-4fe1-a31a-8818004894f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T02:30:55.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:09.000Z" - }, - "events": [ - { - "uuid": "2a19a15a-b4ef-4315-b1a2-b0de853361c2", - "start": { - "$date": "2021-01-17T02:30:55.000Z" - }, - "end": { - "$date": "2021-01-17T02:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1383862d-5dbb-4600-9dc6-47e91184fc78", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T02:14:38.000Z" - }, - "end": { - "$date": "2021-01-17T03:00:52.000Z" - }, - "events": [ - { - "uuid": "c453fbfd-90eb-4cb2-8ed9-560151ba9afa", - "start": { - "$date": "2021-01-17T02:14:38.000Z" - }, - "end": { - "$date": "2021-01-17T03:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6808adff-6a3d-42a3-85a3-310cbdccb570", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T02:25:17.000Z" - }, - "end": { - "$date": "2021-01-17T03:34:54.000Z" - }, - "events": [ - { - "uuid": "f3bdffec-2a36-48fa-957f-e2a557421c1a", - "start": { - "$date": "2021-01-17T02:25:17.000Z" - }, - "end": { - "$date": "2021-01-17T03:34:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d25e92fb-4490-40fd-bb8b-f6f2ed67887c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T02:39:50.000Z" - }, - "end": { - "$date": "2021-01-17T04:18:05.000Z" - }, - "events": [ - { - "uuid": "d1deef3d-8843-4032-b3f2-f678369a57d1", - "start": { - "$date": "2021-01-17T02:39:50.000Z" - }, - "end": { - "$date": "2021-01-17T04:18:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09cfe5bf-28e8-428a-862e-556ad9fce451", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T03:27:03.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:40.000Z" - }, - "events": [ - { - "uuid": "f8e9acb8-2bdd-4d5a-af06-67b3f5fb74b1", - "start": { - "$date": "2021-01-17T03:27:03.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94196c3a-d93a-4269-98ea-46d85f2a0b1d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T03:27:06.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:40.000Z" - }, - "events": [ - { - "uuid": "ad68cd7e-908a-4786-b24b-ca4eab34d224", - "start": { - "$date": "2021-01-17T03:27:06.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c55e2951-f924-45ff-8f3e-8180e6116e01", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T03:27:36.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:31.000Z" - }, - "events": [ - { - "uuid": "76514719-eeb5-4af4-a2a5-e1d1cbe923fe", - "start": { - "$date": "2021-01-17T03:27:36.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d0e71aa-103d-4242-abd2-5bcc9e19fe70", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T03:27:14.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:30.000Z" - }, - "events": [ - { - "uuid": "efcd8dd3-772c-49eb-844b-1cd3c2ca704b", - "start": { - "$date": "2021-01-17T03:27:14.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "778d96d5-dc02-4cdb-87e2-2981c3b596b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T03:27:07.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:37.000Z" - }, - "events": [ - { - "uuid": "3d19f215-1bc6-4e8a-945b-96743e38ceeb", - "start": { - "$date": "2021-01-17T03:27:07.000Z" - }, - "end": { - "$date": "2021-01-17T04:05:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2761c11d-d958-4e9c-8a47-012400286e52", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T03:13:52.000Z" - }, - "end": { - "$date": "2021-01-17T03:43:58.000Z" - }, - "events": [ - { - "uuid": "e547c58b-9ea0-4af9-ba46-8b6eeca96ba2", - "start": { - "$date": "2021-01-17T03:13:52.000Z" - }, - "end": { - "$date": "2021-01-17T03:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d83f5b39-0552-43a3-baf3-fdacf870bd34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T04:17:27.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:21.000Z" - }, - "events": [ - { - "uuid": "cbc46667-f68a-4d9e-b366-152cd70e09c1", - "start": { - "$date": "2021-01-17T04:17:27.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd0b4ca0-af69-4ef6-8d9e-05149295fe3f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T04:17:24.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:25.000Z" - }, - "events": [ - { - "uuid": "d683510b-6a6d-4772-875b-7aae07803a32", - "start": { - "$date": "2021-01-17T04:17:24.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9d1751e-d9b8-4eee-956b-30957fd4cd64", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T04:17:48.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:24.000Z" - }, - "events": [ - { - "uuid": "7176dfa4-c7dc-401c-9e70-86acea5d5482", - "start": { - "$date": "2021-01-17T04:17:48.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b15b338-8a78-4729-8369-688e96f4f860", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T04:17:29.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:29.000Z" - }, - "events": [ - { - "uuid": "f29f8824-019f-4881-9ce2-d4e67be1053f", - "start": { - "$date": "2021-01-17T04:17:29.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48a60e1e-947c-4716-8d71-7d8dd90f5446", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T04:17:36.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:29.000Z" - }, - "events": [ - { - "uuid": "7fc4214a-f956-4491-8999-71c6861ff1e6", - "start": { - "$date": "2021-01-17T04:17:36.000Z" - }, - "end": { - "$date": "2021-01-17T04:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "31616ba1-c63e-478d-b6a2-dda5468f524d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T04:08:56.000Z" - }, - "end": { - "$date": "2021-01-17T05:55:42.000Z" - }, - "events": [ - { - "uuid": "f1e8b0c9-f9e7-4bb5-9107-c1cfd9cbe623", - "start": { - "$date": "2021-01-17T04:08:56.000Z" - }, - "end": { - "$date": "2021-01-17T05:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9d925b14-2a93-492d-a306-cef0ffeb3ddd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T04:13:04.000Z" - }, - "end": { - "$date": "2021-01-17T04:50:06.000Z" - }, - "events": [ - { - "uuid": "c75a1f3f-65b3-4c9e-819f-4f8cbd7e740b", - "start": { - "$date": "2021-01-17T04:13:04.000Z" - }, - "end": { - "$date": "2021-01-17T04:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "908e5333-5693-4986-81ae-edca46741f99", - "uuid": "034fabab-f65c-4626-93c4-839e46860353", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T04:16:55.000Z" - }, - "end": { - "$date": "2021-01-17T05:52:50.000Z" - }, - "events": [ - { - "uuid": "f833855b-df8b-40f9-a5e0-e359efa39adc", - "start": { - "$date": "2021-01-17T04:16:55.000Z" - }, - "end": { - "$date": "2021-01-17T05:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24bcfd61-5bd9-4556-979a-8bed2110e876", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T04:37:52.000Z" - }, - "end": { - "$date": "2021-01-17T04:40:22.000Z" - }, - "events": [ - { - "uuid": "c11b1ba7-3941-4f28-aaed-f64c703086b2", - "start": { - "$date": "2021-01-17T04:37:52.000Z" - }, - "end": { - "$date": "2021-01-17T04:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47da4443-4165-41e7-9214-5295352e635c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T04:45:15.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:22.000Z" - }, - "events": [ - { - "uuid": "b783c591-88c1-4ad2-bd42-4d557acd3e66", - "start": { - "$date": "2021-01-17T04:45:15.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db21613b-bf58-43ec-af0b-28a520e9eddf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T04:46:32.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:12.000Z" - }, - "events": [ - { - "uuid": "59cdee5a-5514-4bbc-86c0-a505bcbf9a77", - "start": { - "$date": "2021-01-17T04:46:32.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "486c5c66-b37d-44cf-82af-f331617917ec", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T04:45:15.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:11.000Z" - }, - "events": [ - { - "uuid": "7a5608be-8efc-4de6-b3f3-df0c9fcadee9", - "start": { - "$date": "2021-01-17T04:45:15.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2c2befa-532a-4301-be2c-f0623a5f74b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T04:45:22.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:22.000Z" - }, - "events": [ - { - "uuid": "c3de6670-4729-4420-b94e-1b8772bc8d1c", - "start": { - "$date": "2021-01-17T04:45:22.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cd8264d-08e3-460e-b27c-e7636af30336", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T04:48:46.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:12.000Z" - }, - "events": [ - { - "uuid": "9fcd477e-c479-46e4-9373-80fbbdccbc75", - "start": { - "$date": "2021-01-17T04:48:46.000Z" - }, - "end": { - "$date": "2021-01-17T05:17:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "486859c4-dc2f-42e0-83df-aabef948814c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T04:13:04.000Z" - }, - "end": { - "$date": "2021-01-17T04:52:11.000Z" - }, - "events": [ - { - "uuid": "38330e77-5be5-4c87-ad1d-91e1b0f3b1a0", - "start": { - "$date": "2021-01-17T04:13:04.000Z" - }, - "end": { - "$date": "2021-01-17T04:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a9664b85-e21a-42a7-a857-6c0e75ce062d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T04:50:41.000Z" - }, - "end": { - "$date": "2021-01-17T08:20:08.000Z" - }, - "events": [ - { - "uuid": "186033d4-fa1c-4b61-a555-1b50ab848149", - "start": { - "$date": "2021-01-17T04:50:41.000Z" - }, - "end": { - "$date": "2021-01-17T08:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a5b0345e-9a45-4433-bfb4-9ba4c48d04a1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-17T04:50:53.000Z" - }, - "end": { - "$date": "2021-01-17T08:20:19.000Z" - }, - "events": [ - { - "uuid": "5a105525-82b2-4b4c-aa8b-ceaff5bedefe", - "start": { - "$date": "2021-01-17T04:50:53.000Z" - }, - "end": { - "$date": "2021-01-17T08:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e8726c76-f45a-4400-a6a1-0ea2accbca8c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T04:13:04.000Z" - }, - "end": { - "$date": "2021-01-17T05:40:29.000Z" - }, - "events": [ - { - "uuid": "afc8f58b-73bd-44a4-a748-d44b8833fac8", - "start": { - "$date": "2021-01-17T04:13:04.000Z" - }, - "end": { - "$date": "2021-01-17T05:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d70b485d-2e98-4812-812e-4368f92504f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T05:18:13.000Z" - }, - "end": { - "$date": "2021-01-17T05:20:44.000Z" - }, - "events": [ - { - "uuid": "c553be4f-fd7c-4930-b06c-9fdbac56dea9", - "start": { - "$date": "2021-01-17T05:18:13.000Z" - }, - "end": { - "$date": "2021-01-17T05:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "785077ff-90fa-49ad-85d5-01d9901897ad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T05:19:23.000Z" - }, - "end": { - "$date": "2021-01-17T05:50:53.000Z" - }, - "events": [ - { - "uuid": "6693f9f0-0028-4bb5-b621-44b265495938", - "start": { - "$date": "2021-01-17T05:19:23.000Z" - }, - "end": { - "$date": "2021-01-17T05:50:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "67442203-6cc8-4652-8735-8bfa35dd204b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T05:20:41.000Z" - }, - "end": { - "$date": "2021-01-17T05:22:02.000Z" - }, - "events": [ - { - "uuid": "e6a8b6e0-febf-48ba-9b92-b6a5bd5c33e5", - "start": { - "$date": "2021-01-17T05:20:41.000Z" - }, - "end": { - "$date": "2021-01-17T05:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0eb6f4f0-2599-4cac-9a03-d46126c60e0c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T05:22:32.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:24.000Z" - }, - "events": [ - { - "uuid": "cf142d3d-ec6b-4bc8-a4ff-ae7e7950f7b4", - "start": { - "$date": "2021-01-17T05:22:32.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "45f374d9-58dc-4c1f-bfa0-a3afd30666ba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T05:30:38.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:13.000Z" - }, - "events": [ - { - "uuid": "8fc39658-c979-4390-8e08-50f8aa89958f", - "start": { - "$date": "2021-01-17T05:30:38.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d8b18517-dd3e-4e51-a062-af0ea17db775", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T05:40:58.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:37.000Z" - }, - "events": [ - { - "uuid": "b1e767e2-a996-4687-a9e6-89411fd47617", - "start": { - "$date": "2021-01-17T05:40:58.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "4729a543-66e6-4027-86a8-82dfeebb870c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T06:17:28.000Z" - }, - "end": { - "$date": "2021-01-17T07:34:50.000Z" - }, - "events": [ - { - "uuid": "b8b1d078-d04d-43c1-81fc-7e481e8e6f22", - "start": { - "$date": "2021-01-17T06:17:28.000Z" - }, - "end": { - "$date": "2021-01-17T07:34:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5c1a9240-fe5c-42ea-ac15-ccf4386ff56b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T05:51:21.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:19.000Z" - }, - "events": [ - { - "uuid": "b92f3686-8e53-49de-ab95-99e63324d006", - "start": { - "$date": "2021-01-17T05:51:21.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "3582896e-b879-4480-83b6-d24dc26edb3d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T06:15:31.000Z" - }, - "end": { - "$date": "2021-01-17T07:34:56.000Z" - }, - "events": [ - { - "uuid": "2cf18dce-77fb-4f13-b6c9-751fc4b49f06", - "start": { - "$date": "2021-01-17T06:15:31.000Z" - }, - "end": { - "$date": "2021-01-17T07:34:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "5e7ef175-ed51-40fb-b666-0b0c23799639", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T05:55:57.000Z" - }, - "end": { - "$date": "2021-01-17T06:06:21.000Z" - }, - "events": [ - { - "uuid": "211e802d-fc3f-4eb6-bf0a-212dfbebfbc0", - "start": { - "$date": "2021-01-17T05:55:57.000Z" - }, - "end": { - "$date": "2021-01-17T06:06:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "07f587d2-5f99-4b5e-894b-4f2e39724520", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T06:06:56.000Z" - }, - "end": { - "$date": "2021-01-17T06:16:12.000Z" - }, - "events": [ - { - "uuid": "56a4a845-d1d0-40cd-8cd7-81b20015a165", - "start": { - "$date": "2021-01-17T06:06:56.000Z" - }, - "end": { - "$date": "2021-01-17T06:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "6048c39c-ea16-4010-a682-b721c715f13c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T06:16:17.000Z" - }, - "end": { - "$date": "2021-01-17T07:34:54.000Z" - }, - "events": [ - { - "uuid": "3c0cde22-49f8-4d6e-8979-a0a8eaed6b4e", - "start": { - "$date": "2021-01-17T06:16:17.000Z" - }, - "end": { - "$date": "2021-01-17T07:34:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "72eae1e4-fbda-4f93-8eed-a1877dd71023", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-17T07:02:19.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:24.000Z" - }, - "events": [ - { - "uuid": "ed6744cf-066f-4aa8-9d2d-ec38e20816d2", - "start": { - "$date": "2021-01-17T07:02:19.000Z" - }, - "end": { - "$date": "2021-01-17T07:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10266b57-6ce3-48f0-8430-806b33e48aea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T07:30:19.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:14.000Z" - }, - "events": [ - { - "uuid": "e9a10764-7b78-472b-b27c-58a793fef5a6", - "start": { - "$date": "2021-01-17T07:30:19.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aede291-65b6-4daa-a514-8dfa677a2552", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T07:30:19.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:04.000Z" - }, - "events": [ - { - "uuid": "ececc4cc-80cd-4215-9055-5f1650259544", - "start": { - "$date": "2021-01-17T07:30:19.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd4f96bd-816d-4124-a1ee-2df2384c0ab7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T07:30:45.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:09.000Z" - }, - "events": [ - { - "uuid": "c2b075c9-f656-42ce-bd1f-18cc91166dda", - "start": { - "$date": "2021-01-17T07:30:45.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81b84548-4ec2-461a-9d5c-506194647e7d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-17T07:30:20.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:05.000Z" - }, - "events": [ - { - "uuid": "9cfe5d6b-2b5d-45c0-9b78-115c23b21033", - "start": { - "$date": "2021-01-17T07:30:20.000Z" - }, - "end": { - "$date": "2021-01-17T07:51:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "30b8acdb-2e6e-40b1-9871-6fcfa65c6c29", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T07:29:38.000Z" - }, - "end": { - "$date": "2021-01-17T10:28:39.000Z" - }, - "events": [ - { - "uuid": "0422491c-23cb-4baa-88a3-adff30c00d0f", - "start": { - "$date": "2021-01-17T07:29:38.000Z" - }, - "end": { - "$date": "2021-01-17T10:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2b3405b-3570-45ff-8ab7-d230c7825ab4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T07:54:04.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:45.000Z" - }, - "events": [ - { - "uuid": "0e2054e8-93bd-431d-822f-de401f048b15", - "start": { - "$date": "2021-01-17T07:54:04.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e389d6d-bc20-4362-98bf-27eae5252556", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T07:54:24.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:45.000Z" - }, - "events": [ - { - "uuid": "b68fbe89-5ca5-431d-a2ac-45a17a9ff094", - "start": { - "$date": "2021-01-17T07:54:24.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4000c34a-63c0-4ffd-8544-27b83ac5c9a0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T07:54:05.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:45.000Z" - }, - "events": [ - { - "uuid": "d80d65e7-428f-4039-83f0-7140b90afcda", - "start": { - "$date": "2021-01-17T07:54:05.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1355bccd-bcd2-445d-abd6-2ee57562c634", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T07:54:21.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:52.000Z" - }, - "events": [ - { - "uuid": "77bad66e-8880-43e1-ab50-a591c783e0ca", - "start": { - "$date": "2021-01-17T07:54:21.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35a36a90-be12-4bda-938d-7c0812400772", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-17T07:54:05.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:50.000Z" - }, - "events": [ - { - "uuid": "3242ec23-757d-4d52-ad91-cc267718196e", - "start": { - "$date": "2021-01-17T07:54:05.000Z" - }, - "end": { - "$date": "2021-01-17T08:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0c057292-5cd7-4da3-b26b-a84930b8408a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T07:53:37.000Z" - }, - "end": { - "$date": "2021-01-17T08:33:02.000Z" - }, - "events": [ - { - "uuid": "46ea6339-70ad-42d3-947b-45811826edb4", - "start": { - "$date": "2021-01-17T07:53:37.000Z" - }, - "end": { - "$date": "2021-01-17T08:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dbcd39fc-2718-4da7-bb4c-913b01f4f2ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T08:00:13.000Z" - }, - "end": { - "$date": "2021-01-17T08:27:00.000Z" - }, - "events": [ - { - "uuid": "3767cc84-30ae-4299-8d2c-7dc14117bf2a", - "start": { - "$date": "2021-01-17T08:00:13.000Z" - }, - "end": { - "$date": "2021-01-17T08:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6dc219b-f2e3-4811-b598-1e916ec8695c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T08:11:40.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:14.000Z" - }, - "events": [ - { - "uuid": "aad24e6d-47cf-4355-a1a6-e305b242560f", - "start": { - "$date": "2021-01-17T08:11:40.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a65f83e-eed3-4682-80f9-dcbb4a351341", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T08:11:35.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:11.000Z" - }, - "events": [ - { - "uuid": "126ba3cd-b297-4b44-9aa5-bb1099bc2cf0", - "start": { - "$date": "2021-01-17T08:11:35.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1791376a-0870-4d58-9f60-1142c14fdf10", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T08:11:56.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:10.000Z" - }, - "events": [ - { - "uuid": "63819bd5-ca60-4b6c-9300-4072bed3d8ff", - "start": { - "$date": "2021-01-17T08:11:56.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d17c9ee-e1d9-4868-8aa1-af5248d63979", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T08:11:56.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:07.000Z" - }, - "events": [ - { - "uuid": "a2800d88-c6bb-4662-a69a-20218aa1922d", - "start": { - "$date": "2021-01-17T08:11:56.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b01e6b0-3e6e-4634-898c-b32a26a69c11", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-17T08:11:36.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:10.000Z" - }, - "events": [ - { - "uuid": "1e563feb-2efc-4c2d-82a3-8c9de2a0f2b6", - "start": { - "$date": "2021-01-17T08:11:36.000Z" - }, - "end": { - "$date": "2021-01-17T08:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0341bb14-c054-4b8f-aa4c-0b0bb02bcd8c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T08:35:11.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:37.000Z" - }, - "events": [ - { - "uuid": "0b3d9488-516c-4972-ab35-9f69ca142cd9", - "start": { - "$date": "2021-01-17T08:35:11.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e265370-ef6b-4f86-9142-42c355791a1c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T08:36:06.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:31.000Z" - }, - "events": [ - { - "uuid": "b0717d39-6b14-496a-9c24-4f8af6a01dfa", - "start": { - "$date": "2021-01-17T08:36:06.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c168672-6488-4e08-ac54-0ee3c4bfe739", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T08:35:11.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:36.000Z" - }, - "events": [ - { - "uuid": "4c1a22c7-b5fc-44c0-bb3e-2298aa511e2c", - "start": { - "$date": "2021-01-17T08:35:11.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fce6029-3869-4354-8fe1-2fb014fde206", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T08:35:32.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:37.000Z" - }, - "events": [ - { - "uuid": "bf32a16e-e391-43d1-95b6-2e91c11932b4", - "start": { - "$date": "2021-01-17T08:35:32.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8db6bffd-5155-413e-ab75-7a0771a29e89", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-17T08:35:06.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:31.000Z" - }, - "events": [ - { - "uuid": "a8f615b9-994b-4e20-9dc1-e9420125a9ce", - "start": { - "$date": "2021-01-17T08:35:06.000Z" - }, - "end": { - "$date": "2021-01-17T08:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6786c5e2-73e6-4d11-9aa2-16992633450b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T08:52:42.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:08.000Z" - }, - "events": [ - { - "uuid": "d98746ee-8e44-4dc6-8dd7-ebcea99dd88b", - "start": { - "$date": "2021-01-17T08:52:42.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f5e54af-d42a-46e3-ad94-cca8b2998e8e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T08:53:36.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:07.000Z" - }, - "events": [ - { - "uuid": "a884c498-6329-4b48-b8d9-24658cd49c05", - "start": { - "$date": "2021-01-17T08:53:36.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64fffd1c-4618-4e47-8d50-06253a0162fa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T08:52:57.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:06.000Z" - }, - "events": [ - { - "uuid": "0be193d6-36ab-4187-ae52-87003971818b", - "start": { - "$date": "2021-01-17T08:52:57.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e99c9ea-fc0b-4dec-9154-3878bd30bc99", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-17T08:53:27.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:08.000Z" - }, - "events": [ - { - "uuid": "029102c4-e397-426f-99d3-40cc44b38cf2", - "start": { - "$date": "2021-01-17T08:53:27.000Z" - }, - "end": { - "$date": "2021-01-17T09:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8306413-4078-412e-a195-4fc319b724d9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T09:23:11.000Z" - }, - "end": { - "$date": "2021-01-17T09:24:38.000Z" - }, - "events": [ - { - "uuid": "6425e835-ba81-4a42-aa60-97bc21049388", - "start": { - "$date": "2021-01-17T09:23:11.000Z" - }, - "end": { - "$date": "2021-01-17T09:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a23ddb76-3104-447c-80c4-5bdfb4ddd063", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-17T09:24:38.000Z" - }, - "end": { - "$date": "2021-01-17T09:29:35.000Z" - }, - "events": [ - { - "uuid": "fb8ac3f0-6744-4575-bb01-0c1c81dc992d", - "start": { - "$date": "2021-01-17T09:24:38.000Z" - }, - "end": { - "$date": "2021-01-17T09:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7e94bb6c-4ce2-463d-b8f8-466e42db7804", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T09:27:03.000Z" - }, - "end": { - "$date": "2021-01-17T09:51:56.000Z" - }, - "events": [ - { - "uuid": "47431393-1590-4933-ad10-1d05ebf49953", - "start": { - "$date": "2021-01-17T09:27:03.000Z" - }, - "end": { - "$date": "2021-01-17T09:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c077a15f-8cb1-486e-ae73-1b6ee830189e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T09:35:13.000Z" - }, - "end": { - "$date": "2021-01-17T10:39:15.000Z" - }, - "events": [ - { - "uuid": "1a0a1952-f9d0-43a9-a0ac-01664f3dae35", - "start": { - "$date": "2021-01-17T09:35:13.000Z" - }, - "end": { - "$date": "2021-01-17T10:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b0b7f74f-ce0a-433e-b2a5-a62c947e1d84", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-01-17T12:41:44.000Z" - }, - "end": { - "$date": "2021-01-17T15:13:44.000Z" - }, - "events": [ - { - "uuid": "9fba447b-cf78-48a7-89e4-e4b2e3e0377f", - "start": { - "$date": "2021-01-17T12:41:44.000Z" - }, - "end": { - "$date": "2021-01-17T15:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "344b223b-07a2-4a8f-b502-d3f6853c40a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T17:12:11.000Z" - }, - "end": { - "$date": "2021-01-17T17:26:21.000Z" - }, - "events": [ - { - "uuid": "b240b0f1-dbc6-4a5a-94af-d129621e39ae", - "start": { - "$date": "2021-01-17T17:12:11.000Z" - }, - "end": { - "$date": "2021-01-17T17:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d9932550-f357-408b-8666-25cd2af7c0e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T17:31:12.000Z" - }, - "end": { - "$date": "2021-01-17T18:03:23.000Z" - }, - "events": [ - { - "uuid": "714574e8-cf2e-4bc7-b757-411a89fa3d19", - "start": { - "$date": "2021-01-17T17:31:12.000Z" - }, - "end": { - "$date": "2021-01-17T18:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "02d4f93c-f2e2-4412-be10-8dea0db77db6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T17:58:14.000Z" - }, - "end": { - "$date": "2021-01-17T18:16:16.000Z" - }, - "events": [ - { - "uuid": "787b7dca-6ed5-48d5-b46d-cd1222eeec5a", - "start": { - "$date": "2021-01-17T17:58:14.000Z" - }, - "end": { - "$date": "2021-01-17T18:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5cb22739-6928-44c4-87b5-642df88c0782", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T18:16:40.000Z" - }, - "end": { - "$date": "2021-01-17T18:22:07.000Z" - }, - "events": [ - { - "uuid": "e752d78a-ff79-4206-9935-1940d52ba895", - "start": { - "$date": "2021-01-17T18:16:40.000Z" - }, - "end": { - "$date": "2021-01-17T18:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "23d208fe-e532-4be8-afb5-79e61a02ad36", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T18:22:26.000Z" - }, - "end": { - "$date": "2021-01-17T18:44:55.000Z" - }, - "events": [ - { - "uuid": "c4c4cb4e-3f98-424f-a6a3-b188a9826672", - "start": { - "$date": "2021-01-17T18:22:26.000Z" - }, - "end": { - "$date": "2021-01-17T18:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3256d5fc-7470-4d52-b0ac-5d3978629912", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T18:45:19.000Z" - }, - "end": { - "$date": "2021-01-17T19:30:52.000Z" - }, - "events": [ - { - "uuid": "13f253fd-507f-4c88-8e46-750305beb335", - "start": { - "$date": "2021-01-17T18:45:19.000Z" - }, - "end": { - "$date": "2021-01-17T19:30:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7d2a688-6dc5-4e81-8834-dbe29a218466", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T18:51:50.000Z" - }, - "end": { - "$date": "2021-01-17T19:35:29.000Z" - }, - "events": [ - { - "uuid": "e556fda0-fa7f-4000-bb3d-aa6478cbff9a", - "start": { - "$date": "2021-01-17T18:51:50.000Z" - }, - "end": { - "$date": "2021-01-17T19:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "ebfc2650-e1e8-4451-9bf6-d06c5c63bfb5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T19:37:27.000Z" - }, - "end": { - "$date": "2021-01-17T19:42:57.000Z" - }, - "events": [ - { - "uuid": "3add6623-f601-4511-a412-a097d235522d", - "start": { - "$date": "2021-01-17T19:37:27.000Z" - }, - "end": { - "$date": "2021-01-17T19:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "f65be303-e315-44f4-a270-f8ee9dd813ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T19:38:07.000Z" - }, - "end": { - "$date": "2021-01-17T19:43:24.000Z" - }, - "events": [ - { - "uuid": "163fd0b8-c474-4bad-b075-5f1058d076a3", - "start": { - "$date": "2021-01-17T19:38:07.000Z" - }, - "end": { - "$date": "2021-01-17T19:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a19ef202-1b74-47d4-a8ca-1702bdb967e6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T19:43:38.000Z" - }, - "end": { - "$date": "2021-01-17T20:36:59.000Z" - }, - "events": [ - { - "uuid": "7b07a5fc-9918-4959-8389-3f73351daae7", - "start": { - "$date": "2021-01-17T19:43:38.000Z" - }, - "end": { - "$date": "2021-01-17T20:36:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f06d103a-3d53-4131-ab05-32836897b3ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T19:44:15.000Z" - }, - "end": { - "$date": "2021-01-17T20:36:56.000Z" - }, - "events": [ - { - "uuid": "9e492dfd-b71e-43ab-a23e-8f0690f150ae", - "start": { - "$date": "2021-01-17T19:44:15.000Z" - }, - "end": { - "$date": "2021-01-17T20:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "763c392d-2aad-4c2c-9d4c-7ce61c03c87a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-17T20:08:19.000Z" - }, - "end": { - "$date": "2021-01-17T22:02:38.000Z" - }, - "events": [ - { - "uuid": "c9b86c51-bd93-4d69-8e25-7b7a84dfd01e", - "start": { - "$date": "2021-01-17T20:08:19.000Z" - }, - "end": { - "$date": "2021-01-17T22:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "e656a30e-0fcd-4bc6-851f-34ff63ead343", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T20:38:10.000Z" - }, - "end": { - "$date": "2021-01-17T20:43:35.000Z" - }, - "events": [ - { - "uuid": "1111a6bd-fc53-48f5-9140-f0845fe4e816", - "start": { - "$date": "2021-01-17T20:38:10.000Z" - }, - "end": { - "$date": "2021-01-17T20:43:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bf7adaa1-b828-48cb-9041-393d26d2ddf4", - "uuid": "46668629-f5fa-43e3-a342-0ba8ec6ac923", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-17T20:38:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:41:54.000Z" - }, - "events": [ - { - "uuid": "e4a120c9-b855-4e93-b6d7-50bf18d61b72", - "start": { - "$date": "2021-01-17T20:38:40.000Z" - }, - "end": { - "$date": "2021-01-17T20:52:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d955b09-ca8c-4d3a-ae10-3293f74edb7c", - "start": { - "$date": "2021-01-17T20:52:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:05:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e896b9f9-11f8-4716-b1f7-58ae97267eed", - "start": { - "$date": "2021-01-17T21:05:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:15:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2344472-333a-45df-95f5-d767ba6170d7", - "start": { - "$date": "2021-01-17T21:15:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:17:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9bc1eda3-a12c-4cff-a6bd-1c342c1c988e", - "start": { - "$date": "2021-01-17T21:17:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:27:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e083b885-614e-4464-8cb8-81746426c84b", - "start": { - "$date": "2021-01-17T21:27:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:31:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9645d6f6-d15c-495b-a1ab-e5484e2c4475", - "start": { - "$date": "2021-01-17T21:31:40.000Z" - }, - "end": { - "$date": "2021-01-17T21:41:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "f69eedc3-867a-4fc6-aeaa-e3429d4c8656", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T20:45:15.000Z" - }, - "end": { - "$date": "2021-01-17T21:59:49.000Z" - }, - "events": [ - { - "uuid": "56816b16-9a0f-4ecf-8488-453c6d170eed", - "start": { - "$date": "2021-01-17T20:45:15.000Z" - }, - "end": { - "$date": "2021-01-17T21:03:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7086b28a-9dee-4fda-9487-bd23f847f549", - "start": { - "$date": "2021-01-17T21:03:15.000Z" - }, - "end": { - "$date": "2021-01-17T21:06:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c33cb3b6-5f30-4456-8ab7-ad9e06055f99", - "start": { - "$date": "2021-01-17T21:06:15.000Z" - }, - "end": { - "$date": "2021-01-17T21:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23dab54a-734c-4a69-8a08-203df5d522c7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T20:47:08.000Z" - }, - "end": { - "$date": "2021-01-17T21:04:51.000Z" - }, - "events": [ - { - "uuid": "8b5d4846-b32e-485c-b884-3fbb9c867e34", - "start": { - "$date": "2021-01-17T20:47:08.000Z" - }, - "end": { - "$date": "2021-01-17T21:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "34b9e29e-87c1-4ae8-8b50-ae02157085d4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T21:05:42.000Z" - }, - "end": { - "$date": "2021-01-17T22:16:37.000Z" - }, - "events": [ - { - "uuid": "a9805df8-d2ba-4d60-a738-68e045ba9ce1", - "start": { - "$date": "2021-01-17T21:05:42.000Z" - }, - "end": { - "$date": "2021-01-17T22:16:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb8c1249-6c07-4df4-84c3-3707eeae2a34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-17T22:10:20.000Z" - }, - "end": { - "$date": "2021-01-17T22:49:45.000Z" - }, - "events": [ - { - "uuid": "009caee2-b37b-4167-916d-b0e44126752a", - "start": { - "$date": "2021-01-17T22:10:20.000Z" - }, - "end": { - "$date": "2021-01-17T22:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "252bcb68-a0ac-452c-b431-233d5cc34562", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T21:57:34.000Z" - }, - "end": { - "$date": "2021-01-17T22:15:44.000Z" - }, - "events": [ - { - "uuid": "6fa27ef0-2a94-4d3d-8386-181dbf0b02af", - "start": { - "$date": "2021-01-17T21:57:34.000Z" - }, - "end": { - "$date": "2021-01-17T22:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1e859a6-b655-4e0b-9f86-c0a79c63f084", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-17T22:09:27.000Z" - }, - "end": { - "$date": "2021-01-17T22:49:53.000Z" - }, - "events": [ - { - "uuid": "42a59a88-c876-477b-905d-057945601733", - "start": { - "$date": "2021-01-17T22:09:27.000Z" - }, - "end": { - "$date": "2021-01-17T22:49:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "eae9c16e-8a54-4a2b-8e23-3c0c046fb04e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T22:15:06.000Z" - }, - "end": { - "$date": "2021-01-17T23:04:25.000Z" - }, - "events": [ - { - "uuid": "ec067079-da6a-444b-82ac-dca92b8146e8", - "start": { - "$date": "2021-01-17T22:15:06.000Z" - }, - "end": { - "$date": "2021-01-17T23:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f46a4762-4998-4edf-9398-679d7b79f19c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T22:15:54.000Z" - }, - "end": { - "$date": "2021-01-17T23:04:25.000Z" - }, - "events": [ - { - "uuid": "a3ccd665-c9a2-4840-afd7-a79cbae06751", - "start": { - "$date": "2021-01-17T22:15:54.000Z" - }, - "end": { - "$date": "2021-01-17T23:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6bf5a6e3-5c21-47d1-8cce-e588fb4b2781", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-17T22:19:50.000Z" - }, - "end": { - "$date": "2021-01-17T22:58:31.000Z" - }, - "events": [ - { - "uuid": "82f0e710-ebb9-41b1-9453-7abad4d2a8ae", - "start": { - "$date": "2021-01-17T22:19:50.000Z" - }, - "end": { - "$date": "2021-01-17T22:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bf7adaa1-b828-48cb-9041-393d26d2ddf4", - "uuid": "987cd51a-7eb3-4f71-a8fd-d68a2ac3d7ff", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-17T22:31:01.000Z" - }, - "end": { - "$date": "2021-01-17T22:36:47.000Z" - }, - "events": [ - { - "uuid": "533feb3f-17fe-4a09-af2e-6ae2ad8c6dc9", - "start": { - "$date": "2021-01-17T22:31:01.000Z" - }, - "end": { - "$date": "2021-01-17T22:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1751b892-d622-4703-8860-54ccc3548f77", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T00:15:48.000Z" - }, - "end": { - "$date": "2021-01-18T00:46:58.000Z" - }, - "events": [ - { - "uuid": "28bde4c2-dad4-49c8-9f5c-106580aff1f2", - "start": { - "$date": "2021-01-18T00:15:48.000Z" - }, - "end": { - "$date": "2021-01-18T01:24:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fff36c12-d3d3-4d8c-86a2-c29736dbf06a", - "start": { - "$date": "2021-01-18T01:24:48.000Z" - }, - "end": { - "$date": "2021-01-18T01:40:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42e1fabf-84eb-4509-8820-812bec58797e", - "start": { - "$date": "2021-01-18T01:40:48.000Z" - }, - "end": { - "$date": "2021-01-18T00:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67f6070a-ae64-4ea8-9209-a47cb784753f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T00:16:01.000Z" - }, - "end": { - "$date": "2021-01-18T00:47:05.000Z" - }, - "events": [ - { - "uuid": "20f6aaf0-f3ce-48d2-9ee2-5805d79efb79", - "start": { - "$date": "2021-01-18T00:16:01.000Z" - }, - "end": { - "$date": "2021-01-18T00:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "b75a7df6-2039-4b3a-8eac-96128b58139a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-17T23:05:21.000Z" - }, - "end": { - "$date": "2021-01-18T00:26:53.000Z" - }, - "events": [ - { - "uuid": "88763c44-d102-43ae-b914-12b0720dffb8", - "start": { - "$date": "2021-01-17T23:05:21.000Z" - }, - "end": { - "$date": "2021-01-18T00:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "bdee48eb-5220-494f-8df6-072086c26131", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-17T23:48:55.000Z" - }, - "end": { - "$date": "2021-01-18T00:33:25.000Z" - }, - "events": [ - { - "uuid": "3dabb628-4c52-48df-9e77-5198ce995327", - "start": { - "$date": "2021-01-17T23:48:55.000Z" - }, - "end": { - "$date": "2021-01-18T00:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d1006ee0-94a5-44d1-8551-ec76a8bc9459", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T23:06:52.000Z" - }, - "end": { - "$date": "2021-01-17T23:07:58.000Z" - }, - "events": [ - { - "uuid": "08299c96-1062-4d42-bc6c-b5a7e88d036b", - "start": { - "$date": "2021-01-17T23:06:52.000Z" - }, - "end": { - "$date": "2021-01-17T23:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ed61a075-4f68-44d5-94a3-f6d8ba51f1cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-17T23:09:43.000Z" - }, - "end": { - "$date": "2021-01-18T00:13:51.000Z" - }, - "events": [ - { - "uuid": "3310b1ed-7918-40b7-a2fe-10297640c88a", - "start": { - "$date": "2021-01-17T23:09:43.000Z" - }, - "end": { - "$date": "2021-01-18T00:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3ec96f80-bede-4a43-b32a-680c34a824d1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T23:24:14.000Z" - }, - "end": { - "$date": "2021-01-17T23:27:19.000Z" - }, - "events": [ - { - "uuid": "3e9ce98d-362f-4cad-9d8f-d5b4f32d56bc", - "start": { - "$date": "2021-01-17T23:24:14.000Z" - }, - "end": { - "$date": "2021-01-17T23:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b0284722-0ac8-4bc6-883e-8ae87bf1db70", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T23:27:29.000Z" - }, - "end": { - "$date": "2021-01-17T23:41:05.000Z" - }, - "events": [ - { - "uuid": "676849b2-b18e-4082-87f8-390ef99dd08c", - "start": { - "$date": "2021-01-17T23:27:29.000Z" - }, - "end": { - "$date": "2021-01-17T23:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "801901f7-533d-4560-b909-80f95c337c85", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-17T23:28:32.000Z" - }, - "end": { - "$date": "2021-01-18T00:07:59.000Z" - }, - "events": [ - { - "uuid": "2c5cd3df-041e-4048-a804-2fcb9d2d1280", - "start": { - "$date": "2021-01-17T23:28:32.000Z" - }, - "end": { - "$date": "2021-01-18T00:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "073f50c1-8fad-4ec9-ab93-866ab1c94c2a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-17T23:28:57.000Z" - }, - "end": { - "$date": "2021-01-18T01:56:19.000Z" - }, - "events": [ - { - "uuid": "fd247110-b801-4651-96df-2df6379206ea", - "start": { - "$date": "2021-01-17T23:28:57.000Z" - }, - "end": { - "$date": "2021-01-17T23:51:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d68f1773-f7ca-4d22-9399-d73ac80dc9ff", - "start": { - "$date": "2021-01-17T23:51:57.000Z" - }, - "end": { - "$date": "2021-01-17T23:56:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d34f577d-2311-491d-8214-6adbe04fe2d4", - "start": { - "$date": "2021-01-17T23:56:57.000Z" - }, - "end": { - "$date": "2021-01-18T00:06:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33508d33-6846-407e-a40d-554d5b2342f8", - "start": { - "$date": "2021-01-18T00:06:57.000Z" - }, - "end": { - "$date": "2021-01-18T00:32:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "678e85a4-dd70-44f5-b807-194b6d7ba500", - "start": { - "$date": "2021-01-18T00:32:57.000Z" - }, - "end": { - "$date": "2021-01-18T01:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d7bec6da-d0be-49a6-9885-873a544ed9ef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-17T23:41:25.000Z" - }, - "end": { - "$date": "2021-01-18T01:01:50.000Z" - }, - "events": [ - { - "uuid": "e6f22acc-3b55-4d24-af19-717ddfefae12", - "start": { - "$date": "2021-01-17T23:41:25.000Z" - }, - "end": { - "$date": "2021-01-18T00:18:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eeec1f86-5445-4492-b706-fccc689aa1fa", - "start": { - "$date": "2021-01-18T00:18:25.000Z" - }, - "end": { - "$date": "2021-01-18T00:27:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5183ef1e-95f1-49ec-8e76-222952d7c8e9", - "start": { - "$date": "2021-01-18T00:27:25.000Z" - }, - "end": { - "$date": "2021-01-18T01:01:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ca12d79-483c-4d4f-8223-04826502aace", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T00:18:09.000Z" - }, - "end": { - "$date": "2021-01-18T00:42:58.000Z" - }, - "events": [ - { - "uuid": "f98e12c4-20cc-4172-adff-1914a93e7abb", - "start": { - "$date": "2021-01-18T00:18:09.000Z" - }, - "end": { - "$date": "2021-01-18T00:42:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88eae0f2-8d8f-4784-af88-6cba9a3c0f6b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T00:18:26.000Z" - }, - "end": { - "$date": "2021-01-18T00:47:04.000Z" - }, - "events": [ - { - "uuid": "c888fb39-13a4-4a3a-ade6-9ed3eb43e2d5", - "start": { - "$date": "2021-01-18T00:18:26.000Z" - }, - "end": { - "$date": "2021-01-18T00:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "606b76aa-72b2-44a7-a6e5-c4fbeab09ec1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-18T00:33:16.000Z" - }, - "end": { - "$date": "2021-01-18T00:42:23.000Z" - }, - "events": [ - { - "uuid": "fabfd10f-7e01-468a-b2bf-44abe0832507", - "start": { - "$date": "2021-01-18T00:33:16.000Z" - }, - "end": { - "$date": "2021-01-18T00:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5927a213-0535-411b-afe3-da8ad4da3f24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-18T00:42:57.000Z" - }, - "end": { - "$date": "2021-01-18T00:44:37.000Z" - }, - "events": [ - { - "uuid": "b0361c30-6258-420a-a763-308a22bb1f77", - "start": { - "$date": "2021-01-18T00:42:57.000Z" - }, - "end": { - "$date": "2021-01-18T00:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d17d0e2-e795-4ea4-960e-908706aacf8c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T00:43:06.000Z" - }, - "end": { - "$date": "2021-01-18T00:47:10.000Z" - }, - "events": [ - { - "uuid": "63c12c10-591e-4f3b-bc43-0a63c54d8fb7", - "start": { - "$date": "2021-01-18T00:43:06.000Z" - }, - "end": { - "$date": "2021-01-18T00:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fca9477-0319-40c5-ac23-9d270ef55ab1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T03:31:24.000Z" - }, - "end": { - "$date": "2021-01-18T03:34:16.000Z" - }, - "events": [ - { - "uuid": "1bac73c9-b396-488c-808e-64fa6801cf12", - "start": { - "$date": "2021-01-18T03:31:24.000Z" - }, - "end": { - "$date": "2021-01-18T03:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35cc38ca-ec45-4914-ab0b-3b5d9fb729e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T02:01:48.000Z" - }, - "end": { - "$date": "2021-01-18T02:31:14.000Z" - }, - "events": [ - { - "uuid": "afe6bc95-07c8-42aa-813b-330333b04f75", - "start": { - "$date": "2021-01-18T02:01:48.000Z" - }, - "end": { - "$date": "2021-01-18T02:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fb4b46c-aaf4-4190-a6b8-72f93bfc5370", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T01:07:51.000Z" - }, - "end": { - "$date": "2021-01-18T01:43:37.000Z" - }, - "events": [ - { - "uuid": "ffed5092-81fc-407b-8f6b-3fb473c69721", - "start": { - "$date": "2021-01-18T01:07:51.000Z" - }, - "end": { - "$date": "2021-01-18T01:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6ef2737-11d9-42a5-8f33-2ef37700cdd0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T03:31:56.000Z" - }, - "end": { - "$date": "2021-01-18T05:18:56.000Z" - }, - "events": [ - { - "uuid": "4d697716-fbe0-49a4-95e5-a01ef0b47ed7", - "start": { - "$date": "2021-01-18T03:31:56.000Z" - }, - "end": { - "$date": "2021-01-18T06:26:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b71556e4-7a58-4bc1-a198-d7aaf4fabdb1", - "start": { - "$date": "2021-01-18T06:26:56.000Z" - }, - "end": { - "$date": "2021-01-18T06:56:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7e2eb2c-2b1e-4cbc-b249-5e8897d261b0", - "start": { - "$date": "2021-01-18T06:56:56.000Z" - }, - "end": { - "$date": "2021-01-18T05:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "04548c97-5b73-43ef-b38a-39932fb75b32", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T01:10:50.000Z" - }, - "end": { - "$date": "2021-01-18T01:27:30.000Z" - }, - "events": [ - { - "uuid": "6cb45226-10b7-459d-a4cb-0a87520ac283", - "start": { - "$date": "2021-01-18T01:10:50.000Z" - }, - "end": { - "$date": "2021-01-18T01:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b88d65e-6dc9-4d7e-921b-13099d079d17", - "uuid": "265c5463-b36f-424f-9e63-f56e39c326e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T01:14:09.000Z" - }, - "end": { - "$date": "2021-01-18T01:40:04.000Z" - }, - "events": [ - { - "uuid": "51498dad-e9ab-46ad-8c09-d49040ea0449", - "start": { - "$date": "2021-01-18T01:14:09.000Z" - }, - "end": { - "$date": "2021-01-18T01:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "048cca7b-8948-41b9-a95d-db70c7f1536e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T02:02:38.000Z" - }, - "end": { - "$date": "2021-01-18T02:31:14.000Z" - }, - "events": [ - { - "uuid": "3b6ad00b-b17a-418c-839e-d2fb9be4951d", - "start": { - "$date": "2021-01-18T02:02:38.000Z" - }, - "end": { - "$date": "2021-01-18T02:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "55d570cb-1eda-46d6-877d-d9b0bf2674a4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T01:49:17.000Z" - }, - "end": { - "$date": "2021-01-18T02:12:13.000Z" - }, - "events": [ - { - "uuid": "6a15956d-0c9c-4834-8a4f-ff12abf4535e", - "start": { - "$date": "2021-01-18T01:49:17.000Z" - }, - "end": { - "$date": "2021-01-18T02:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cc97bc3-494b-4ddf-bc79-9905d55a0fe7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T02:56:57.000Z" - }, - "end": { - "$date": "2021-01-18T03:31:21.000Z" - }, - "events": [ - { - "uuid": "25f6fe21-3601-4505-a2a1-824b60ba8c8a", - "start": { - "$date": "2021-01-18T02:56:57.000Z" - }, - "end": { - "$date": "2021-01-18T03:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "956902ab-8f9b-4149-b412-4bbdeefab9fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T02:56:07.000Z" - }, - "end": { - "$date": "2021-01-18T03:31:13.000Z" - }, - "events": [ - { - "uuid": "f3c343a5-14b9-4509-b482-5d97c8f54e2c", - "start": { - "$date": "2021-01-18T02:56:07.000Z" - }, - "end": { - "$date": "2021-01-18T03:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b88d65e-6dc9-4d7e-921b-13099d079d17", - "uuid": "d36552de-f438-40ea-aaf7-a02093c177f4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T02:48:08.000Z" - }, - "end": { - "$date": "2021-01-18T03:28:44.000Z" - }, - "events": [ - { - "uuid": "dce8a1fb-a1e5-4139-8260-05d5d00b9831", - "start": { - "$date": "2021-01-18T02:48:08.000Z" - }, - "end": { - "$date": "2021-01-18T03:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f3729c57-3983-4d15-b738-e39c485a02f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-18T03:07:32.000Z" - }, - "end": { - "$date": "2021-01-18T07:05:22.000Z" - }, - "events": [ - { - "uuid": "87530544-1d83-493f-a291-59623af21974", - "start": { - "$date": "2021-01-18T03:07:32.000Z" - }, - "end": { - "$date": "2021-01-18T04:42:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "099d6d12-11d5-46cd-b407-c1f7e1853fbf", - "start": { - "$date": "2021-01-18T04:42:32.000Z" - }, - "end": { - "$date": "2021-01-18T04:46:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b163dcd7-bfe2-4327-b2f1-c4542d3251de", - "start": { - "$date": "2021-01-18T04:46:32.000Z" - }, - "end": { - "$date": "2021-01-18T07:05:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0e47d217-5937-40df-aed3-518b770cf4e2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T03:07:37.000Z" - }, - "end": { - "$date": "2021-01-18T03:15:02.000Z" - }, - "events": [ - { - "uuid": "ff0a3b3a-4678-4a61-8828-754f3cd9a147", - "start": { - "$date": "2021-01-18T03:07:37.000Z" - }, - "end": { - "$date": "2021-01-18T03:15:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7ab59341-03ba-49a4-8d4a-b76ddc246b04", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T03:21:33.000Z" - }, - "end": { - "$date": "2021-01-18T03:32:03.000Z" - }, - "events": [ - { - "uuid": "c17a6040-e7fa-4973-a506-b50e619364c7", - "start": { - "$date": "2021-01-18T03:21:33.000Z" - }, - "end": { - "$date": "2021-01-18T03:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a00d2635-1dc2-463a-a33b-317cf04403a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T03:29:19.000Z" - }, - "end": { - "$date": "2021-01-18T04:46:55.000Z" - }, - "events": [ - { - "uuid": "42bcb19c-3ab9-44dd-a74b-73ead3e78f90", - "start": { - "$date": "2021-01-18T03:29:19.000Z" - }, - "end": { - "$date": "2021-01-18T04:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e7b6b25-e008-45f7-849d-d201913d7b20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T03:35:23.000Z" - }, - "end": { - "$date": "2021-01-18T04:47:00.000Z" - }, - "events": [ - { - "uuid": "b7e455c2-6f83-43d2-a488-5a73cee5b996", - "start": { - "$date": "2021-01-18T03:35:23.000Z" - }, - "end": { - "$date": "2021-01-18T04:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e90a289a-c401-42f1-bdc3-f26bf4201910", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-18T04:01:57.000Z" - }, - "end": { - "$date": "2021-01-18T04:44:56.000Z" - }, - "events": [ - { - "uuid": "419fbff5-3397-4598-b957-d6b7040ec9ed", - "start": { - "$date": "2021-01-18T04:01:57.000Z" - }, - "end": { - "$date": "2021-01-18T04:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "e94d2fac-cd44-480d-bb84-ec29ff78e111", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-18T04:28:51.000Z" - }, - "end": { - "$date": "2021-01-18T04:32:07.000Z" - }, - "events": [ - { - "uuid": "26d125fe-5edb-4c53-bf25-ad20b6c0ddd6", - "start": { - "$date": "2021-01-18T04:28:51.000Z" - }, - "end": { - "$date": "2021-01-18T04:32:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "72a4d9de-e201-4aa3-96c4-2f967212524b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T04:47:21.000Z" - }, - "end": { - "$date": "2021-01-18T05:30:21.000Z" - }, - "events": [ - { - "uuid": "e461cadb-87fe-4bce-bf2a-436a64be843e", - "start": { - "$date": "2021-01-18T04:47:21.000Z" - }, - "end": { - "$date": "2021-01-18T05:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1476aa2d-edc6-4455-a079-64abd81b41f0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T04:48:06.000Z" - }, - "end": { - "$date": "2021-01-18T05:03:50.000Z" - }, - "events": [ - { - "uuid": "8127d802-d810-4306-aa34-c99a044663e7", - "start": { - "$date": "2021-01-18T04:48:06.000Z" - }, - "end": { - "$date": "2021-01-18T05:03:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "f63665a7-76f0-4b73-95be-9726f23d8265", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-18T04:48:56.000Z" - }, - "end": { - "$date": "2021-01-18T05:30:28.000Z" - }, - "events": [ - { - "uuid": "488746e3-3e51-4994-8fb5-75ba1df8557a", - "start": { - "$date": "2021-01-18T04:48:56.000Z" - }, - "end": { - "$date": "2021-01-18T05:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63ebe1fc-6a3b-4b7f-909c-eba4e66b3ed8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T06:03:28.000Z" - }, - "end": { - "$date": "2021-01-18T06:20:08.000Z" - }, - "events": [ - { - "uuid": "9f9a97b9-e884-40db-902b-9a505c9fd63f", - "start": { - "$date": "2021-01-18T06:03:28.000Z" - }, - "end": { - "$date": "2021-01-18T06:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9ce3be87-0239-43f2-9451-ec7d8d3d3073", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T06:00:12.000Z" - }, - "end": { - "$date": "2021-01-18T06:20:42.000Z" - }, - "events": [ - { - "uuid": "82104ab0-022e-4c23-a45b-f4bff7b8fb8a", - "start": { - "$date": "2021-01-18T06:00:12.000Z" - }, - "end": { - "$date": "2021-01-18T06:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0577b45d-b8c0-400f-bf73-ecbea1ffac83", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T06:04:18.000Z" - }, - "end": { - "$date": "2021-01-18T06:20:04.000Z" - }, - "events": [ - { - "uuid": "fa4113bf-cb73-4f54-88df-7610a0706922", - "start": { - "$date": "2021-01-18T06:04:18.000Z" - }, - "end": { - "$date": "2021-01-18T06:20:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34d9027e-c735-4324-9740-aa82b0a2378a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T06:30:50.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:21.000Z" - }, - "events": [ - { - "uuid": "1e5f0623-cccb-4ff0-b484-f10daf88c848", - "start": { - "$date": "2021-01-18T06:30:50.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f7ae578d-17dd-459c-ac63-0d23158c31b4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T06:21:23.000Z" - }, - "end": { - "$date": "2021-01-18T07:11:23.000Z" - }, - "events": [ - { - "uuid": "5bf795f1-dba0-4bd5-b8ca-8578e01f95fb", - "start": { - "$date": "2021-01-18T06:21:23.000Z" - }, - "end": { - "$date": "2021-01-18T07:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9b2cc038-4a26-46a0-bf42-9b569dd67050", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T06:21:43.000Z" - }, - "end": { - "$date": "2021-01-18T07:12:20.000Z" - }, - "events": [ - { - "uuid": "e7f156a0-2575-423d-9a21-4592ee98ebf5", - "start": { - "$date": "2021-01-18T06:21:43.000Z" - }, - "end": { - "$date": "2021-01-18T07:12:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04a1e4aa-62bd-488a-9774-f67419080f23", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T06:31:15.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:15.000Z" - }, - "events": [ - { - "uuid": "cb2cea00-a046-4a6b-8899-a0dcc4cdd6c2", - "start": { - "$date": "2021-01-18T06:31:15.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "961f675b-a466-4b9f-bfce-e68ad3bf67e6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T06:31:17.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:17.000Z" - }, - "events": [ - { - "uuid": "323a3cc9-41c4-41b7-8e70-585a75c12c9b", - "start": { - "$date": "2021-01-18T06:31:17.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfe6f86a-9f90-4111-91c2-6333ab99797a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-18T06:30:46.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:22.000Z" - }, - "events": [ - { - "uuid": "c733b9d6-2710-422d-970e-13b90b024c72", - "start": { - "$date": "2021-01-18T06:30:46.000Z" - }, - "end": { - "$date": "2021-01-18T06:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa4d2ad9-8682-4d88-88f6-c36b9b48f282", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T06:56:41.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:27.000Z" - }, - "events": [ - { - "uuid": "a6d8176f-f154-4867-9f55-3a986b0827c0", - "start": { - "$date": "2021-01-18T06:56:41.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e31ecfc-9414-47a7-a565-5a5d44752f59", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T06:56:29.000Z" - }, - "end": { - "$date": "2021-01-18T07:11:04.000Z" - }, - "events": [ - { - "uuid": "79c9a99b-bc95-43e6-b930-a14264dac33a", - "start": { - "$date": "2021-01-18T06:56:29.000Z" - }, - "end": { - "$date": "2021-01-18T07:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91aac20e-0ba0-47ad-b144-69e7dddff41f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T06:56:37.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:28.000Z" - }, - "events": [ - { - "uuid": "46384b79-759f-48d8-9f12-ce9be21bf889", - "start": { - "$date": "2021-01-18T06:56:37.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a89358ee-6b39-452a-bd89-199716855864", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-18T06:58:12.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:32.000Z" - }, - "events": [ - { - "uuid": "3a0bbd4f-a846-4240-83ae-a363a1bef9a9", - "start": { - "$date": "2021-01-18T06:58:12.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5289d016-2992-4b6e-b843-8f7cdf054f0a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-18T07:11:19.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:32.000Z" - }, - "events": [ - { - "uuid": "9878bf43-ed66-4397-b88d-0016e607b22d", - "start": { - "$date": "2021-01-18T07:11:19.000Z" - }, - "end": { - "$date": "2021-01-18T07:13:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9b0456bd-32bb-4e7b-9b66-72cc62625fec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T07:11:44.000Z" - }, - "end": { - "$date": "2021-01-18T07:24:38.000Z" - }, - "events": [ - { - "uuid": "ba4dd60c-4933-4eed-93b3-3bbeea3e8293", - "start": { - "$date": "2021-01-18T07:11:44.000Z" - }, - "end": { - "$date": "2021-01-18T07:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6e1b8f84-6c98-4fb9-bf7f-a8fe987d5827", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-18T07:12:29.000Z" - }, - "end": { - "$date": "2021-01-18T07:24:38.000Z" - }, - "events": [ - { - "uuid": "f259338f-e20b-4eed-8e5a-4109e3ddaa54", - "start": { - "$date": "2021-01-18T07:12:29.000Z" - }, - "end": { - "$date": "2021-01-18T07:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "251bd31b-bdc8-41bc-8552-1bad01152abc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T07:15:08.000Z" - }, - "end": { - "$date": "2021-01-18T07:18:05.000Z" - }, - "events": [ - { - "uuid": "6e56dffa-c0f1-4d5a-b42d-6f393280f6fd", - "start": { - "$date": "2021-01-18T07:15:08.000Z" - }, - "end": { - "$date": "2021-01-18T07:18:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "27d91c9a-b825-456f-8a74-be6f60d3e0f3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-18T08:03:34.000Z" - }, - "end": { - "$date": "2021-01-18T09:03:05.000Z" - }, - "events": [ - { - "uuid": "afb8ad63-c969-4bf1-b35b-0941f18313c2", - "start": { - "$date": "2021-01-18T08:03:34.000Z" - }, - "end": { - "$date": "2021-01-18T09:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2ca2feb-fe3b-493c-bf65-b3849fe4c30a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T12:57:33.000Z" - }, - "end": { - "$date": "2021-01-18T13:23:57.000Z" - }, - "events": [ - { - "uuid": "5d63e5f3-3da3-43ad-91a0-ba5001932c2d", - "start": { - "$date": "2021-01-18T12:57:33.000Z" - }, - "end": { - "$date": "2021-01-18T13:23:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36d644d0-67a3-48bb-8432-e84c3347e15e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T13:42:43.000Z" - }, - "end": { - "$date": "2021-01-18T14:16:17.000Z" - }, - "events": [ - { - "uuid": "e0499c63-4e62-4d12-a2f3-472c2cd386d8", - "start": { - "$date": "2021-01-18T13:42:43.000Z" - }, - "end": { - "$date": "2021-01-18T14:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b38c93c2-c015-4ea6-9445-d3efb3701a1d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T14:27:09.000Z" - }, - "end": { - "$date": "2021-01-18T15:03:03.000Z" - }, - "events": [ - { - "uuid": "36ee866c-c521-4ea2-afa8-f99e7cf6a182", - "start": { - "$date": "2021-01-18T14:27:09.000Z" - }, - "end": { - "$date": "2021-01-18T15:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5750d420-d873-4a87-905d-ecb2b146fc5c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T15:11:19.000Z" - }, - "end": { - "$date": "2021-01-18T15:44:07.000Z" - }, - "events": [ - { - "uuid": "6ad1d030-90e5-4c43-8036-54379806ce0b", - "start": { - "$date": "2021-01-18T15:11:19.000Z" - }, - "end": { - "$date": "2021-01-18T15:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e65b6b98-f6cf-4d91-a193-5b39c2e1b0bb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T15:06:55.000Z" - }, - "end": { - "$date": "2021-01-18T16:16:12.000Z" - }, - "events": [ - { - "uuid": "57d5fb6d-fd52-4b14-89b1-f02af0ca79b6", - "start": { - "$date": "2021-01-18T15:06:55.000Z" - }, - "end": { - "$date": "2021-01-18T16:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c0bff74-b1c7-4d98-be52-53d1da3ac4e5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T16:41:08.000Z" - }, - "end": { - "$date": "2021-01-18T17:19:00.000Z" - }, - "events": [ - { - "uuid": "8a65fe1b-b84b-47a6-b058-d9776c9fc46a", - "start": { - "$date": "2021-01-18T16:41:08.000Z" - }, - "end": { - "$date": "2021-01-18T16:58:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "713000ad-369a-4b78-8cda-b629d81d419b", - "start": { - "$date": "2021-01-18T16:58:08.000Z" - }, - "end": { - "$date": "2021-01-18T17:01:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91a64cc4-8c7f-45a3-9f20-1b1f670524ed", - "start": { - "$date": "2021-01-18T17:01:08.000Z" - }, - "end": { - "$date": "2021-01-18T17:19:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b88d65e-6dc9-4d7e-921b-13099d079d17", - "uuid": "dd66d90b-aef4-4080-9e7e-0f4106f0f2a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T16:17:28.000Z" - }, - "end": { - "$date": "2021-01-18T16:28:58.000Z" - }, - "events": [ - { - "uuid": "18918a8b-7ffb-455b-a72b-201ad344354f", - "start": { - "$date": "2021-01-18T16:17:28.000Z" - }, - "end": { - "$date": "2021-01-18T16:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "196187af-1cd6-4e1b-99a3-1a0b519c5e47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T16:42:18.000Z" - }, - "end": { - "$date": "2021-01-18T17:18:52.000Z" - }, - "events": [ - { - "uuid": "f8897b38-e850-408c-ab5b-fc5d735daa5b", - "start": { - "$date": "2021-01-18T16:42:18.000Z" - }, - "end": { - "$date": "2021-01-18T17:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09f70dfd-3646-434a-b79e-4d720ea92e9f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T17:23:49.000Z" - }, - "end": { - "$date": "2021-01-18T17:58:52.000Z" - }, - "events": [ - { - "uuid": "684530cb-861f-470c-a0a2-84bbe518f528", - "start": { - "$date": "2021-01-18T17:23:49.000Z" - }, - "end": { - "$date": "2021-01-18T17:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca4a8fe1-bf0d-4835-bb42-6287720ccf2e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T17:24:58.000Z" - }, - "end": { - "$date": "2021-01-18T17:58:42.000Z" - }, - "events": [ - { - "uuid": "cda3d5bc-c769-49a9-a56d-02bfac48a245", - "start": { - "$date": "2021-01-18T17:24:58.000Z" - }, - "end": { - "$date": "2021-01-18T17:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2c2e44d-9315-4173-b6bd-17196f0b7e4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-18T18:05:35.000Z" - }, - "end": { - "$date": "2021-01-18T18:40:42.000Z" - }, - "events": [ - { - "uuid": "052c0799-3e44-41b2-85c2-492287e89633", - "start": { - "$date": "2021-01-18T18:05:35.000Z" - }, - "end": { - "$date": "2021-01-18T18:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a63919ed-7bf5-46aa-b4f3-a876fb4139d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T18:20:55.000Z" - }, - "end": { - "$date": "2021-01-18T19:54:42.000Z" - }, - "events": [ - { - "uuid": "c66e5b02-ede6-476c-8f4a-5d3d0b9b1a85", - "start": { - "$date": "2021-01-18T18:20:55.000Z" - }, - "end": { - "$date": "2021-01-18T19:44:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82406473-b0e1-466b-a7e4-5886e43a93e4", - "start": { - "$date": "2021-01-18T19:44:55.000Z" - }, - "end": { - "$date": "2021-01-18T19:54:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "741468a6-6b11-40ea-b1f9-7c2efadf8935", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T18:30:05.000Z" - }, - "end": { - "$date": "2021-01-18T19:01:09.000Z" - }, - "events": [ - { - "uuid": "9cef903f-3caa-4b06-a9ef-fc9dbc7ddaaa", - "start": { - "$date": "2021-01-18T18:30:05.000Z" - }, - "end": { - "$date": "2021-01-18T19:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9a944b50-ca6e-4f35-925c-1b291d0ee98e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-18T19:16:57.000Z" - }, - "end": { - "$date": "2021-01-18T23:50:25.000Z" - }, - "events": [ - { - "uuid": "20006e83-f462-4398-a4a1-8801253f8ef3", - "start": { - "$date": "2021-01-18T19:16:57.000Z" - }, - "end": { - "$date": "2021-01-18T20:22:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd520353-b525-4913-81f6-92518f56b3e8", - "start": { - "$date": "2021-01-18T20:22:57.000Z" - }, - "end": { - "$date": "2021-01-18T20:31:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1210229-4249-45a3-ad27-a9d0a9558ab0", - "start": { - "$date": "2021-01-18T20:31:57.000Z" - }, - "end": { - "$date": "2021-01-18T23:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f61fb41e-d38f-449e-bd75-9e7753570995", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T19:21:26.000Z" - }, - "end": { - "$date": "2021-01-18T20:16:07.000Z" - }, - "events": [ - { - "uuid": "fda10ec8-2cd8-45f1-8465-4740d534488e", - "start": { - "$date": "2021-01-18T19:21:26.000Z" - }, - "end": { - "$date": "2021-01-18T20:16:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f69e458a-e421-43c4-8f35-3556dd2962e3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-18T20:38:28.000Z" - }, - "end": { - "$date": "2021-01-18T22:22:28.000Z" - }, - "events": [ - { - "uuid": "adf0045f-16ff-4495-a277-f45b8e5d30c7", - "start": { - "$date": "2021-01-18T20:38:28.000Z" - }, - "end": { - "$date": "2021-01-18T22:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2caf0660-07e0-44d4-8c2f-d8a575770119", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T20:51:31.000Z" - }, - "end": { - "$date": "2021-01-18T22:08:33.000Z" - }, - "events": [ - { - "uuid": "49638d3b-4a53-47b9-817a-76a8338b4d88", - "start": { - "$date": "2021-01-18T20:51:31.000Z" - }, - "end": { - "$date": "2021-01-18T22:08:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f6df86d7-d48c-4194-8274-b77d47079f2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T20:56:52.000Z" - }, - "end": { - "$date": "2021-01-18T22:04:44.000Z" - }, - "events": [ - { - "uuid": "683bd39b-318d-45d1-bf63-f189ed7c1003", - "start": { - "$date": "2021-01-18T20:56:52.000Z" - }, - "end": { - "$date": "2021-01-18T22:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "296f8ed6-6ab9-4bbe-b1c7-122c20e85b4f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T22:13:34.000Z" - }, - "end": { - "$date": "2021-01-18T22:38:15.000Z" - }, - "events": [ - { - "uuid": "5da81eae-8cc7-4219-84d5-82fde3d45070", - "start": { - "$date": "2021-01-18T22:13:34.000Z" - }, - "end": { - "$date": "2021-01-18T22:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6472c7a6-885a-4e74-a356-0672a3c51b99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-18T23:20:26.000Z" - }, - "end": { - "$date": "2021-01-19T00:20:13.000Z" - }, - "events": [ - { - "uuid": "d70225b5-d8ff-40b9-b622-0fa5d8969b7a", - "start": { - "$date": "2021-01-18T23:20:26.000Z" - }, - "end": { - "$date": "2021-01-19T00:20:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "49a1eb4c-7847-49e3-9d6b-f337d47d7546", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-18T23:23:00.000Z" - }, - "end": { - "$date": "2021-01-19T00:10:40.000Z" - }, - "events": [ - { - "uuid": "eb903704-c8eb-41f4-ae1e-8f65711ebf6c", - "start": { - "$date": "2021-01-18T23:23:00.000Z" - }, - "end": { - "$date": "2021-01-19T00:10:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3172ab3-d7e9-4775-bb76-968763e60c8c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-18T23:52:40.000Z" - }, - "end": { - "$date": "2021-01-19T00:16:41.000Z" - }, - "events": [ - { - "uuid": "97b7ac82-1cbc-47cc-8aa3-bd884232b117", - "start": { - "$date": "2021-01-18T23:52:40.000Z" - }, - "end": { - "$date": "2021-01-19T00:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c031cc6-e346-4927-8df4-e0e105b748af", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-18T23:50:30.000Z" - }, - "end": { - "$date": "2021-01-19T00:16:36.000Z" - }, - "events": [ - { - "uuid": "2214e652-5334-4177-a976-f5aeccfd5945", - "start": { - "$date": "2021-01-18T23:50:30.000Z" - }, - "end": { - "$date": "2021-01-19T00:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9df53e0-d4bf-4b5b-adee-87eff9b59d2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-19T01:18:21.000Z" - }, - "end": { - "$date": "2021-01-19T01:49:02.000Z" - }, - "events": [ - { - "uuid": "71d4466a-fd22-47be-b01f-5e647e5deca2", - "start": { - "$date": "2021-01-19T01:18:21.000Z" - }, - "end": { - "$date": "2021-01-19T01:49:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebe5526e-48f6-4244-b66a-5facb671c38c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T00:27:51.000Z" - }, - "end": { - "$date": "2021-01-19T00:56:51.000Z" - }, - "events": [ - { - "uuid": "073af53b-2d65-4bd3-8eaa-cd40658bcc88", - "start": { - "$date": "2021-01-19T00:27:51.000Z" - }, - "end": { - "$date": "2021-01-19T00:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4747ce95-22f7-4d21-a630-457c89547024", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T00:17:20.000Z" - }, - "end": { - "$date": "2021-01-19T00:21:43.000Z" - }, - "events": [ - { - "uuid": "a15d291e-b54d-4a74-9190-6fac1f19fe09", - "start": { - "$date": "2021-01-19T00:17:20.000Z" - }, - "end": { - "$date": "2021-01-19T00:21:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf82af00-c047-4d39-a1b7-5249baa5a85b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T00:27:47.000Z" - }, - "end": { - "$date": "2021-01-19T00:56:47.000Z" - }, - "events": [ - { - "uuid": "98ebbf60-f558-4034-b315-c78d0fbd982b", - "start": { - "$date": "2021-01-19T00:27:47.000Z" - }, - "end": { - "$date": "2021-01-19T00:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c82ca93-f51a-4e1c-80e2-8dbe802a8161", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T01:00:52.000Z" - }, - "end": { - "$date": "2021-01-19T01:15:52.000Z" - }, - "events": [ - { - "uuid": "b9865633-3bf0-4ac2-b7d6-dd9cfae18348", - "start": { - "$date": "2021-01-19T01:00:52.000Z" - }, - "end": { - "$date": "2021-01-19T01:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c3bc941-526d-4432-9470-43126db291fd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T01:00:52.000Z" - }, - "end": { - "$date": "2021-01-19T01:15:47.000Z" - }, - "events": [ - { - "uuid": "1cf98355-0180-4fae-b9a3-ddec6d4aa351", - "start": { - "$date": "2021-01-19T01:00:52.000Z" - }, - "end": { - "$date": "2021-01-19T01:15:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67e3beef-9cbc-4a57-8735-fa23f18fea8c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T01:17:53.000Z" - }, - "end": { - "$date": "2021-01-19T01:30:48.000Z" - }, - "events": [ - { - "uuid": "65052d4f-5aa3-4f21-9e60-4e72255f10d2", - "start": { - "$date": "2021-01-19T01:17:53.000Z" - }, - "end": { - "$date": "2021-01-19T01:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95a7bbc2-4a3d-469f-aff6-be8612f25eb8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T01:17:32.000Z" - }, - "end": { - "$date": "2021-01-19T01:30:43.000Z" - }, - "events": [ - { - "uuid": "b126963c-48de-4bf4-a3e7-eb0083f7a84a", - "start": { - "$date": "2021-01-19T01:17:32.000Z" - }, - "end": { - "$date": "2021-01-19T01:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7019dd29-7e56-4838-a8ec-e53a2e221204", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-19T01:17:20.000Z" - }, - "end": { - "$date": "2021-01-19T01:55:48.000Z" - }, - "events": [ - { - "uuid": "80edc684-c86e-406b-a065-afdf4f1f53ec", - "start": { - "$date": "2021-01-19T01:17:20.000Z" - }, - "end": { - "$date": "2021-01-19T01:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c72d80e1-f82f-4e3f-af73-6294cb75d0c6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-19T01:27:50.000Z" - }, - "end": { - "$date": "2021-01-19T01:58:11.000Z" - }, - "events": [ - { - "uuid": "9c4c65de-e812-4033-919a-4d456e7d56ca", - "start": { - "$date": "2021-01-19T01:27:50.000Z" - }, - "end": { - "$date": "2021-01-19T01:58:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88c6d7a8-bf99-402b-8173-edd56ffa8571", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T01:31:19.000Z" - }, - "end": { - "$date": "2021-01-19T04:19:11.000Z" - }, - "events": [ - { - "uuid": "1d3c358f-e382-4701-887f-c58157e8472f", - "start": { - "$date": "2021-01-19T01:31:19.000Z" - }, - "end": { - "$date": "2021-01-19T01:58:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5ef5f32-f0c1-4889-be80-471660fa6b35", - "start": { - "$date": "2021-01-19T01:58:19.000Z" - }, - "end": { - "$date": "2021-01-19T02:05:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e49dfd13-fc74-414c-afbd-e48140f09e64", - "start": { - "$date": "2021-01-19T02:05:19.000Z" - }, - "end": { - "$date": "2021-01-19T02:22:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f3db4df3-7c08-4300-bc29-18fcebc3c6fb", - "start": { - "$date": "2021-01-19T02:22:19.000Z" - }, - "end": { - "$date": "2021-01-19T02:26:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7460b2b2-4c1d-4d21-8164-7f3873568e37", - "start": { - "$date": "2021-01-19T02:26:19.000Z" - }, - "end": { - "$date": "2021-01-19T02:34:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8aa7b2ed-36b3-4824-b09c-fa7eee1c3657", - "start": { - "$date": "2021-01-19T02:34:19.000Z" - }, - "end": { - "$date": "2021-01-19T02:37:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58eece6a-e888-4251-b299-b2c5225cddaa", - "start": { - "$date": "2021-01-19T02:37:19.000Z" - }, - "end": { - "$date": "2021-01-19T03:31:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82969707-1e93-4432-8627-0eeb741690d5", - "start": { - "$date": "2021-01-19T03:31:19.000Z" - }, - "end": { - "$date": "2021-01-19T03:44:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ad18eac-0a05-4b47-a36c-b1709efa2b16", - "start": { - "$date": "2021-01-19T03:44:19.000Z" - }, - "end": { - "$date": "2021-01-19T03:55:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4084dc88-b67e-45ab-b347-1ea70d24e776", - "start": { - "$date": "2021-01-19T03:55:19.000Z" - }, - "end": { - "$date": "2021-01-19T04:19:11.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "33ef323b-a0c4-4c46-8e0f-2ca9e89c3124", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-19T01:46:22.000Z" - }, - "end": { - "$date": "2021-01-19T03:20:52.000Z" - }, - "events": [ - { - "uuid": "30b25428-d9b1-4324-901a-cda470bc7c3a", - "start": { - "$date": "2021-01-19T01:46:22.000Z" - }, - "end": { - "$date": "2021-01-19T03:20:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "20c42269-def3-4a74-8cbe-7f5547d5f222", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-19T01:58:49.000Z" - }, - "end": { - "$date": "2021-01-19T01:59:45.000Z" - }, - "events": [ - { - "uuid": "76012c88-5dc8-4da5-8035-d0ad45a7cbf3", - "start": { - "$date": "2021-01-19T01:58:49.000Z" - }, - "end": { - "$date": "2021-01-19T01:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8fabb8c5-65dc-40be-a4cd-7ddf939746c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-19T02:16:10.000Z" - }, - "end": { - "$date": "2021-01-19T02:18:52.000Z" - }, - "events": [ - { - "uuid": "3ba87505-fb0b-4e40-883f-99e6deb9d62e", - "start": { - "$date": "2021-01-19T02:16:10.000Z" - }, - "end": { - "$date": "2021-01-19T02:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d19be97f-41d6-4f95-a6f4-47cb460ec606", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-19T05:01:31.000Z" - }, - "end": { - "$date": "2021-01-19T05:16:41.000Z" - }, - "events": [ - { - "uuid": "ca2fb572-5c2f-4b68-b86b-77a2daffaaff", - "start": { - "$date": "2021-01-19T05:01:31.000Z" - }, - "end": { - "$date": "2021-01-19T05:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dc65d98f-d110-4287-9e89-c0871b27362c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-19T02:31:13.000Z" - }, - "end": { - "$date": "2021-01-19T02:47:33.000Z" - }, - "events": [ - { - "uuid": "8fcc2834-1e29-4471-a6aa-9aa02252611d", - "start": { - "$date": "2021-01-19T02:31:13.000Z" - }, - "end": { - "$date": "2021-01-19T02:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0a310474-14de-4d0b-81bd-768b5d7e33f8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-19T02:47:49.000Z" - }, - "end": { - "$date": "2021-01-19T03:01:49.000Z" - }, - "events": [ - { - "uuid": "6393cefe-2f3e-45b6-a48a-c81f45d1da63", - "start": { - "$date": "2021-01-19T02:47:49.000Z" - }, - "end": { - "$date": "2021-01-19T03:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d085c811-e1d3-498b-ae7f-98fb1a0d99e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-19T02:48:51.000Z" - }, - "end": { - "$date": "2021-01-19T03:23:22.000Z" - }, - "events": [ - { - "uuid": "f712c9c7-4873-46c8-8b97-9adc4c0540d6", - "start": { - "$date": "2021-01-19T02:48:51.000Z" - }, - "end": { - "$date": "2021-01-19T03:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "53b20621-c82f-480e-ac94-589cf1e272c4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-19T02:52:31.000Z" - }, - "end": { - "$date": "2021-01-19T03:48:38.000Z" - }, - "events": [ - { - "uuid": "97e40e2f-655a-479d-9709-6f5ffbcf62e6", - "start": { - "$date": "2021-01-19T02:52:31.000Z" - }, - "end": { - "$date": "2021-01-19T03:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "89ca2c58-9748-4bcf-ac55-392544b95450", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-19T03:01:35.000Z" - }, - "end": { - "$date": "2021-01-19T04:04:22.000Z" - }, - "events": [ - { - "uuid": "68d8957d-0ddb-4ca6-9ac5-666c2d9e1316", - "start": { - "$date": "2021-01-19T03:01:35.000Z" - }, - "end": { - "$date": "2021-01-19T04:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6fecc781-bcef-402c-b8ec-4e7185be2750", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-19T05:16:45.000Z" - }, - "end": { - "$date": "2021-01-19T06:37:41.000Z" - }, - "events": [ - { - "uuid": "6a66aff7-746a-442c-80e1-4ba49b925c0a", - "start": { - "$date": "2021-01-19T05:16:45.000Z" - }, - "end": { - "$date": "2021-01-19T06:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c7a24b32-99c5-4315-831f-d8f4f54c9ebe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T03:07:10.000Z" - }, - "end": { - "$date": "2021-01-19T04:15:40.000Z" - }, - "events": [ - { - "uuid": "e6f46e70-4a72-45c7-bdb1-77bdba4cd337", - "start": { - "$date": "2021-01-19T03:07:10.000Z" - }, - "end": { - "$date": "2021-01-19T04:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fc740811-15d4-48d8-9f2b-d0b68824471d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-19T03:22:59.000Z" - }, - "end": { - "$date": "2021-01-19T03:53:29.000Z" - }, - "events": [ - { - "uuid": "079b91fb-ced7-4a8d-b6e9-8899002fcb8e", - "start": { - "$date": "2021-01-19T03:22:59.000Z" - }, - "end": { - "$date": "2021-01-19T03:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c59ce8fd-4733-43d9-9cb5-3e404e4c9741", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-19T03:54:05.000Z" - }, - "end": { - "$date": "2021-01-19T04:55:52.000Z" - }, - "events": [ - { - "uuid": "14e8a57b-166d-4d69-be81-227befcd7256", - "start": { - "$date": "2021-01-19T03:54:05.000Z" - }, - "end": { - "$date": "2021-01-19T04:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8052e12a-ea0a-4c97-bb80-2dfa2afb1273", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T04:44:29.000Z" - }, - "end": { - "$date": "2021-01-19T04:50:45.000Z" - }, - "events": [ - { - "uuid": "e4ea87bc-5e10-4321-93df-eefe271a48eb", - "start": { - "$date": "2021-01-19T04:44:29.000Z" - }, - "end": { - "$date": "2021-01-19T04:50:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6f4c5413-f1d0-4ca8-b086-e06b4d45be73", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T04:57:30.000Z" - }, - "end": { - "$date": "2021-01-19T05:09:36.000Z" - }, - "events": [ - { - "uuid": "a097ab41-8db2-4ab7-a59d-f75b398bb3af", - "start": { - "$date": "2021-01-19T04:57:30.000Z" - }, - "end": { - "$date": "2021-01-19T05:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "be99a921-4064-4e50-bc30-410abdc2a20d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-19T05:16:51.000Z" - }, - "end": { - "$date": "2021-01-19T05:47:22.000Z" - }, - "events": [ - { - "uuid": "a45d0507-ce56-4fd0-abcb-39805e270cb0", - "start": { - "$date": "2021-01-19T05:16:51.000Z" - }, - "end": { - "$date": "2021-01-19T05:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6af9930-2372-45ee-aae4-e0a5d08f383c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T05:20:22.000Z" - }, - "end": { - "$date": "2021-01-19T05:57:29.000Z" - }, - "events": [ - { - "uuid": "5a54e305-a160-4bd7-820d-be4aad2466a8", - "start": { - "$date": "2021-01-19T05:20:22.000Z" - }, - "end": { - "$date": "2021-01-19T05:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "6a4fd680-a7d0-4943-ae83-ae431ebed137", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-19T05:23:45.000Z" - }, - "end": { - "$date": "2021-01-19T05:51:06.000Z" - }, - "events": [ - { - "uuid": "8bfdcbc5-2ca2-493a-9638-de75b33b8bae", - "start": { - "$date": "2021-01-19T05:23:45.000Z" - }, - "end": { - "$date": "2021-01-19T05:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "f2ed458b-2f0b-4970-a19b-25621d51dd14", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-19T05:32:32.000Z" - }, - "end": { - "$date": "2021-01-19T06:08:11.000Z" - }, - "events": [ - { - "uuid": "e407a3ce-d1c4-40f2-abe6-7802a369e69f", - "start": { - "$date": "2021-01-19T05:32:32.000Z" - }, - "end": { - "$date": "2021-01-19T06:08:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4dff2e63-1496-46eb-ad4d-f7c364fbf588", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-19T06:14:04.000Z" - }, - "end": { - "$date": "2021-01-19T06:55:13.000Z" - }, - "events": [ - { - "uuid": "88e53e6f-fac4-4b5d-8ae3-33be67084b9c", - "start": { - "$date": "2021-01-19T06:14:04.000Z" - }, - "end": { - "$date": "2021-01-19T06:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "13cdbe4c-677b-41d1-8518-b830c61f9635", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-19T06:40:37.000Z" - }, - "end": { - "$date": "2021-01-19T06:43:07.000Z" - }, - "events": [ - { - "uuid": "9d973a1e-11a9-4654-88e8-5e635929a1da", - "start": { - "$date": "2021-01-19T06:40:37.000Z" - }, - "end": { - "$date": "2021-01-19T06:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f1f26a0-927a-4be8-b3a5-75e2315a8f7d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T08:13:28.000Z" - }, - "end": { - "$date": "2021-01-19T08:36:05.000Z" - }, - "events": [ - { - "uuid": "fd2c4318-34dc-4c9c-9210-d5ff0551e5c6", - "start": { - "$date": "2021-01-19T08:13:28.000Z" - }, - "end": { - "$date": "2021-01-19T08:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cb32838-8877-473e-82da-a26756c2bdc1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T09:00:48.000Z" - }, - "end": { - "$date": "2021-01-19T09:27:56.000Z" - }, - "events": [ - { - "uuid": "491da18a-ae3c-4750-8d1b-240fe34076d1", - "start": { - "$date": "2021-01-19T09:00:48.000Z" - }, - "end": { - "$date": "2021-01-19T09:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54e01681-2542-4dda-9f75-29f70339a9a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-19T09:33:01.000Z" - }, - "end": { - "$date": "2021-01-19T09:40:10.000Z" - }, - "events": [ - { - "uuid": "470b8245-6221-4c65-b9b0-aaa924d252b5", - "start": { - "$date": "2021-01-19T09:33:01.000Z" - }, - "end": { - "$date": "2021-01-19T09:40:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7aaa291c-20d5-4e53-be4b-133175ba62d6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T15:40:50.000Z" - }, - "end": { - "$date": "2021-01-19T16:15:51.000Z" - }, - "events": [ - { - "uuid": "0ac67edd-1f93-4768-9763-c94bc93c213d", - "start": { - "$date": "2021-01-19T15:40:50.000Z" - }, - "end": { - "$date": "2021-01-19T16:15:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "72d326f9-d592-4fec-859c-a9eda9e35d6e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-19T15:55:20.000Z" - }, - "end": { - "$date": "2021-01-19T16:54:31.000Z" - }, - "events": [ - { - "uuid": "6d9f1892-6ed5-46aa-ae47-40692a8e6afc", - "start": { - "$date": "2021-01-19T15:55:20.000Z" - }, - "end": { - "$date": "2021-01-19T16:54:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "279b09bc-cdd9-421e-a4b9-bc940b021ca4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T16:16:46.000Z" - }, - "end": { - "$date": "2021-01-19T16:29:27.000Z" - }, - "events": [ - { - "uuid": "681a0e1b-76a3-4928-b1e6-1eb23bcf728c", - "start": { - "$date": "2021-01-19T16:16:46.000Z" - }, - "end": { - "$date": "2021-01-19T16:29:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e83dc9dc-67ac-432f-b802-14234325f597", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T16:37:46.000Z" - }, - "end": { - "$date": "2021-01-19T16:40:41.000Z" - }, - "events": [ - { - "uuid": "c6a2dbfd-fbec-4b3e-a045-eab95333e81e", - "start": { - "$date": "2021-01-19T16:37:46.000Z" - }, - "end": { - "$date": "2021-01-19T16:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d888b70f-0f3c-4e25-94e0-8ddd7c44050f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-19T18:28:34.000Z" - }, - "end": { - "$date": "2021-01-19T19:04:36.000Z" - }, - "events": [ - { - "uuid": "d4612749-dcd0-4de6-b6e7-b477c8fd4c69", - "start": { - "$date": "2021-01-19T18:28:34.000Z" - }, - "end": { - "$date": "2021-01-19T18:38:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c06d4bbb-eb6f-4752-9236-374051141ab9", - "start": { - "$date": "2021-01-19T18:38:34.000Z" - }, - "end": { - "$date": "2021-01-19T18:47:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "441fb8ad-ff6d-4583-af3b-9906ab8a1be6", - "start": { - "$date": "2021-01-19T18:47:34.000Z" - }, - "end": { - "$date": "2021-01-19T19:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "48b3c491-1d9f-4b17-b74f-9bec80141184", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-19T19:07:26.000Z" - }, - "end": { - "$date": "2021-01-19T19:51:43.000Z" - }, - "events": [ - { - "uuid": "792bfab8-227c-4664-9869-16b5ede086e7", - "start": { - "$date": "2021-01-19T19:07:26.000Z" - }, - "end": { - "$date": "2021-01-19T19:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3c2b082e-1f61-4517-8fad-ae19246978c1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-19T20:14:59.000Z" - }, - "end": { - "$date": "2021-01-19T21:38:10.000Z" - }, - "events": [ - { - "uuid": "4ca3886d-2f33-4b29-a470-a0fd2613f1f6", - "start": { - "$date": "2021-01-19T20:14:59.000Z" - }, - "end": { - "$date": "2021-01-19T20:45:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f48661e0-3afc-4ebf-bace-160e28d55507", - "start": { - "$date": "2021-01-19T20:45:59.000Z" - }, - "end": { - "$date": "2021-01-19T20:59:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "071032d9-9986-4317-aa69-d43113731d0b", - "start": { - "$date": "2021-01-19T20:59:59.000Z" - }, - "end": { - "$date": "2021-01-19T21:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f98a0c6d-3e6c-46bf-ad3f-6a271b7e6966", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-19T20:15:39.000Z" - }, - "end": { - "$date": "2021-01-19T21:42:41.000Z" - }, - "events": [ - { - "uuid": "c5ed75cb-8cb1-47e0-9186-4130b5c26d3e", - "start": { - "$date": "2021-01-19T20:15:39.000Z" - }, - "end": { - "$date": "2021-01-19T21:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4d5605c9-ce55-4041-aa7c-885787cf8256", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T21:28:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:50:18.000Z" - }, - "events": [ - { - "uuid": "8118990f-86f4-4dc1-a519-f801c6f264ce", - "start": { - "$date": "2021-01-19T21:28:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:09:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bac9d706-6a0c-42b9-905f-326a3717d86b", - "start": { - "$date": "2021-01-19T22:09:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:14:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d151c92-c825-4945-bfa3-cd41bd836b3e", - "start": { - "$date": "2021-01-19T22:14:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:24:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45c80211-7487-43a6-be7b-74d9fcc31735", - "start": { - "$date": "2021-01-19T22:24:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:33:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "364c4bfa-5b25-40b6-86fb-bd5ddbd7286d", - "start": { - "$date": "2021-01-19T22:33:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:35:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c57d3c7c-38ba-4848-9009-896e2a795c61", - "start": { - "$date": "2021-01-19T22:35:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:48:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94472946-4297-4331-9e0c-37f87598e162", - "start": { - "$date": "2021-01-19T22:48:01.000Z" - }, - "end": { - "$date": "2021-01-19T22:50:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8c8c0cd-6502-40c1-a17f-c1555118b768", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T22:35:07.000Z" - }, - "end": { - "$date": "2021-01-19T23:01:19.000Z" - }, - "events": [ - { - "uuid": "1d3e1e3a-6b65-47bf-995e-e54be8bb1409", - "start": { - "$date": "2021-01-19T22:35:07.000Z" - }, - "end": { - "$date": "2021-01-19T23:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9ea39c2a-27ff-45f6-a7b7-716ea0d239cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-19T22:50:16.000Z" - }, - "end": { - "$date": "2021-01-19T23:14:46.000Z" - }, - "events": [ - { - "uuid": "084db962-de83-4ae1-81be-49a4d3abefdd", - "start": { - "$date": "2021-01-19T22:50:16.000Z" - }, - "end": { - "$date": "2021-01-19T23:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f1950851-d2af-43cd-854c-6aab3aac42cd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T22:50:27.000Z" - }, - "end": { - "$date": "2021-01-19T22:52:48.000Z" - }, - "events": [ - { - "uuid": "eda98797-46fc-471d-92f3-0b838dd23d02", - "start": { - "$date": "2021-01-19T22:50:27.000Z" - }, - "end": { - "$date": "2021-01-19T22:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "71f30429-3509-45f3-bc4e-4940faffd789", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T22:53:47.000Z" - }, - "end": { - "$date": "2021-01-19T22:54:49.000Z" - }, - "events": [ - { - "uuid": "2c79a19d-2564-47fb-95a7-68c8d41b638b", - "start": { - "$date": "2021-01-19T22:53:47.000Z" - }, - "end": { - "$date": "2021-01-19T22:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "50beeed7-a67b-4cd8-ac80-4b446506ca2d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-19T22:57:43.000Z" - }, - "end": { - "$date": "2021-01-19T23:12:04.000Z" - }, - "events": [ - { - "uuid": "9d87379d-6c31-436e-aac5-7f3a9072ff6f", - "start": { - "$date": "2021-01-19T22:57:43.000Z" - }, - "end": { - "$date": "2021-01-19T23:12:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8afde5bb-5335-4234-b91d-344269400a57", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T23:04:45.000Z" - }, - "end": { - "$date": "2021-01-19T23:18:11.000Z" - }, - "events": [ - { - "uuid": "bb8cb817-f17f-43c7-b5a6-9226f56ff509", - "start": { - "$date": "2021-01-19T23:04:45.000Z" - }, - "end": { - "$date": "2021-01-19T23:18:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d20a5fda-05c3-4016-804a-a7af507583e6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-19T23:27:48.000Z" - }, - "end": { - "$date": "2021-01-19T23:47:35.000Z" - }, - "events": [ - { - "uuid": "73904dbc-2451-40f1-956d-f4e8da846cef", - "start": { - "$date": "2021-01-19T23:27:48.000Z" - }, - "end": { - "$date": "2021-01-19T23:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89f84d0c-0285-46b0-b38b-5f0c1b689c0b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-20T00:09:11.000Z" - }, - "end": { - "$date": "2021-01-20T00:09:15.000Z" - }, - "events": [ - { - "uuid": "84a2c571-efca-41dd-aca5-ca6d70be33ba", - "start": { - "$date": "2021-01-20T00:09:11.000Z" - }, - "end": { - "$date": "2021-01-20T00:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d8da851-9a2a-4900-ba6d-61e7b037d28b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T00:03:50.000Z" - }, - "end": { - "$date": "2021-01-20T00:40:27.000Z" - }, - "events": [ - { - "uuid": "23291321-f81d-4865-82e2-626e047908f3", - "start": { - "$date": "2021-01-20T00:03:50.000Z" - }, - "end": { - "$date": "2021-01-20T00:04:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f6f73ed-0ae9-432f-b94a-f773eb2cb405", - "start": { - "$date": "2021-01-20T00:04:50.000Z" - }, - "end": { - "$date": "2021-01-20T00:40:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a68f7d2-d873-4469-8fa1-07d7406b18a5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-20T00:11:56.000Z" - }, - "end": { - "$date": "2021-01-20T00:25:46.000Z" - }, - "events": [ - { - "uuid": "abb8872d-33a2-4fb5-8286-6ca85e4257c7", - "start": { - "$date": "2021-01-20T00:11:56.000Z" - }, - "end": { - "$date": "2021-01-20T00:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc8c1012-b45c-4f30-9235-0e661bff96cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T00:11:55.000Z" - }, - "end": { - "$date": "2021-01-20T00:25:52.000Z" - }, - "events": [ - { - "uuid": "af1b2e89-ae37-48d1-b802-6ef33b3a7755", - "start": { - "$date": "2021-01-20T00:11:55.000Z" - }, - "end": { - "$date": "2021-01-20T00:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31a0a02f-de42-4fbf-8b5b-b836c3412a93", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T00:11:59.000Z" - }, - "end": { - "$date": "2021-01-20T00:26:00.000Z" - }, - "events": [ - { - "uuid": "bfd6aeca-7b8a-4142-b333-6f2c6a62dd7f", - "start": { - "$date": "2021-01-20T00:11:59.000Z" - }, - "end": { - "$date": "2021-01-20T00:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e953e407-a53c-4a68-818b-26535165bc6e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T00:17:57.000Z" - }, - "end": { - "$date": "2021-01-20T01:59:08.000Z" - }, - "events": [ - { - "uuid": "aaae5de8-aec4-434a-af09-913e7c9261d8", - "start": { - "$date": "2021-01-20T00:17:57.000Z" - }, - "end": { - "$date": "2021-01-20T01:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c548a838-b16e-4ae8-9854-1464bc2cb9a8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-20T00:29:27.000Z" - }, - "end": { - "$date": "2021-01-20T00:54:22.000Z" - }, - "events": [ - { - "uuid": "706f7943-1fb2-4bf6-9f28-8b8a243cd07a", - "start": { - "$date": "2021-01-20T00:29:27.000Z" - }, - "end": { - "$date": "2021-01-20T00:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8f669a5-4e9e-4ad7-bf9c-efd86767bcf8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T00:28:01.000Z" - }, - "end": { - "$date": "2021-01-20T00:54:23.000Z" - }, - "events": [ - { - "uuid": "e92ea388-cfb5-4f86-a0d4-8d36efb14e3c", - "start": { - "$date": "2021-01-20T00:28:01.000Z" - }, - "end": { - "$date": "2021-01-20T00:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3c69330-bf81-4c90-bf11-1b266ca7d02a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T00:28:05.000Z" - }, - "end": { - "$date": "2021-01-20T00:54:26.000Z" - }, - "events": [ - { - "uuid": "bef26848-c0ae-4d54-b4f9-b4436cc5c3e5", - "start": { - "$date": "2021-01-20T00:28:05.000Z" - }, - "end": { - "$date": "2021-01-20T00:54:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67d42246-1d84-463a-b6ca-8b0f9b91522b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T00:43:13.000Z" - }, - "end": { - "$date": "2021-01-20T01:06:13.000Z" - }, - "events": [ - { - "uuid": "656e9b48-605a-40c5-ac6a-a58245b57acc", - "start": { - "$date": "2021-01-20T00:43:13.000Z" - }, - "end": { - "$date": "2021-01-20T01:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92f793c4-b6bd-4a33-a80c-b106732262ec", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-20T00:56:43.000Z" - }, - "end": { - "$date": "2021-01-20T01:07:48.000Z" - }, - "events": [ - { - "uuid": "fb9cdff6-032d-489f-ac4a-6cf95d010644", - "start": { - "$date": "2021-01-20T00:56:43.000Z" - }, - "end": { - "$date": "2021-01-20T01:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58fead4e-bd70-40d4-8e6f-1272931e40de", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T00:57:43.000Z" - }, - "end": { - "$date": "2021-01-20T01:07:44.000Z" - }, - "events": [ - { - "uuid": "259267df-7d82-43e0-9c0b-ca43bac77b0a", - "start": { - "$date": "2021-01-20T00:57:43.000Z" - }, - "end": { - "$date": "2021-01-20T01:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3cfcd53-82d8-41ff-8a51-8d23a28e52db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T00:56:47.000Z" - }, - "end": { - "$date": "2021-01-20T01:07:43.000Z" - }, - "events": [ - { - "uuid": "c5caa984-0ec9-4789-8154-ace244737f98", - "start": { - "$date": "2021-01-20T00:56:47.000Z" - }, - "end": { - "$date": "2021-01-20T01:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "c86a97bb-3f2e-407d-8bb0-bbad815049a6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-20T00:56:54.000Z" - }, - "end": { - "$date": "2021-01-20T00:57:55.000Z" - }, - "events": [ - { - "uuid": "21ce2c98-f556-4d33-bf2d-9d12139dad2f", - "start": { - "$date": "2021-01-20T00:56:54.000Z" - }, - "end": { - "$date": "2021-01-20T00:57:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "965c125e-7766-4a65-be1e-a7ac1567745e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-20T00:57:59.000Z" - }, - "end": { - "$date": "2021-01-20T01:55:28.000Z" - }, - "events": [ - { - "uuid": "3659fd59-79f5-4151-8240-2977cbd2142b", - "start": { - "$date": "2021-01-20T00:57:59.000Z" - }, - "end": { - "$date": "2021-01-20T01:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0cac29b-059b-4055-ad27-2e2ab7e5ef86", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-20T01:12:13.000Z" - }, - "end": { - "$date": "2021-01-20T01:26:58.000Z" - }, - "events": [ - { - "uuid": "2f629874-1224-444e-83aa-fed0e7362892", - "start": { - "$date": "2021-01-20T01:12:13.000Z" - }, - "end": { - "$date": "2021-01-20T01:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58475d10-3132-4382-bbe7-6bb2ff5af4f7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T01:11:49.000Z" - }, - "end": { - "$date": "2021-01-20T01:27:04.000Z" - }, - "events": [ - { - "uuid": "299be50f-c708-4b9f-b8d2-26486e507a97", - "start": { - "$date": "2021-01-20T01:11:49.000Z" - }, - "end": { - "$date": "2021-01-20T01:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f83d7f10-d101-4f16-ac07-d1c4fd3bda27", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T01:21:11.000Z" - }, - "end": { - "$date": "2021-01-20T02:09:15.000Z" - }, - "events": [ - { - "uuid": "3941f88a-fccd-400f-a39c-a07c78855b26", - "start": { - "$date": "2021-01-20T01:21:11.000Z" - }, - "end": { - "$date": "2021-01-20T02:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53b8a558-0f5e-4e6a-9f63-6b349a019007", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-20T01:31:59.000Z" - }, - "end": { - "$date": "2021-01-20T01:50:14.000Z" - }, - "events": [ - { - "uuid": "040c65c9-b347-4e37-b249-e5024f16d3d2", - "start": { - "$date": "2021-01-20T01:31:59.000Z" - }, - "end": { - "$date": "2021-01-20T01:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f50a49a9-965d-4dd1-a1f1-316db3bc393c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-20T01:32:08.000Z" - }, - "end": { - "$date": "2021-01-20T01:50:19.000Z" - }, - "events": [ - { - "uuid": "2c63cc10-94de-4507-81c4-0e580342fccf", - "start": { - "$date": "2021-01-20T01:32:08.000Z" - }, - "end": { - "$date": "2021-01-20T01:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac5fb63c-0fa8-4779-ac68-05c920357eb3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T01:31:40.000Z" - }, - "end": { - "$date": "2021-01-20T01:50:16.000Z" - }, - "events": [ - { - "uuid": "9833e9d5-9bf9-468f-9e38-734ecaecd328", - "start": { - "$date": "2021-01-20T01:31:40.000Z" - }, - "end": { - "$date": "2021-01-20T01:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7038a093-3e6f-4d00-a12b-47c05da7ee0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-20T01:39:11.000Z" - }, - "end": { - "$date": "2021-01-20T02:02:10.000Z" - }, - "events": [ - { - "uuid": "3d37dc40-b3df-4c04-93bb-5dc13469d641", - "start": { - "$date": "2021-01-20T01:39:11.000Z" - }, - "end": { - "$date": "2021-01-20T02:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "aa197b89-3716-49f2-90de-9b245818454f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T01:59:11.000Z" - }, - "end": { - "$date": "2021-01-20T02:53:42.000Z" - }, - "events": [ - { - "uuid": "a399e44b-d9d3-4475-9dcd-ab7807d80a55", - "start": { - "$date": "2021-01-20T01:59:11.000Z" - }, - "end": { - "$date": "2021-01-20T02:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2f948b5-ff21-4260-b4bc-6bf68fd57fe5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T01:50:17.000Z" - }, - "end": { - "$date": "2021-01-20T02:14:54.000Z" - }, - "events": [ - { - "uuid": "95831e60-73fa-4b71-b8ed-25852508cb86", - "start": { - "$date": "2021-01-20T01:50:17.000Z" - }, - "end": { - "$date": "2021-01-20T02:14:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2e0e2b48-2723-4c5b-98e5-df0cfacf4578", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T02:01:30.000Z" - }, - "end": { - "$date": "2021-01-20T03:08:47.000Z" - }, - "events": [ - { - "uuid": "ad042adf-f427-42ab-8c65-c25cd53b79e5", - "start": { - "$date": "2021-01-20T02:01:30.000Z" - }, - "end": { - "$date": "2021-01-20T03:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2fd9bdca-55f4-4d23-bf6b-7608fae835de", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-20T02:03:43.000Z" - }, - "end": { - "$date": "2021-01-20T02:40:05.000Z" - }, - "events": [ - { - "uuid": "4468d2ce-9faa-4658-845f-d0121fce360a", - "start": { - "$date": "2021-01-20T02:03:43.000Z" - }, - "end": { - "$date": "2021-01-20T02:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb9b6228-6b46-446b-a7eb-37396cc0cbba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T03:01:55.000Z" - }, - "end": { - "$date": "2021-01-20T03:16:46.000Z" - }, - "events": [ - { - "uuid": "2fa4f2e5-3974-4e4e-94e6-0d4970ff3996", - "start": { - "$date": "2021-01-20T03:01:55.000Z" - }, - "end": { - "$date": "2021-01-20T03:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "083da8e0-6b7b-42a3-aad8-71868647dd34", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T02:31:45.000Z" - }, - "end": { - "$date": "2021-01-20T03:19:39.000Z" - }, - "events": [ - { - "uuid": "7e1b8bdc-8655-451e-b8e3-5e2df3271b13", - "start": { - "$date": "2021-01-20T02:31:45.000Z" - }, - "end": { - "$date": "2021-01-20T03:05:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "814e4cc9-48d0-4192-bd7c-1b1786265a0d", - "start": { - "$date": "2021-01-20T03:05:45.000Z" - }, - "end": { - "$date": "2021-01-20T03:13:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b0e5397-99f9-4577-9a45-6ddf7f35e193", - "start": { - "$date": "2021-01-20T03:13:45.000Z" - }, - "end": { - "$date": "2021-01-20T03:15:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a7d6dfe-6eda-4bc8-b1cc-0b436ebe6f2b", - "start": { - "$date": "2021-01-20T03:15:45.000Z" - }, - "end": { - "$date": "2021-01-20T03:19:39.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "39f54370-e295-4143-8682-d35aa7a33ebe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T02:37:10.000Z" - }, - "end": { - "$date": "2021-01-20T03:18:07.000Z" - }, - "events": [ - { - "uuid": "3da0e0ba-9dcf-4416-bbd0-e928294472f4", - "start": { - "$date": "2021-01-20T02:37:10.000Z" - }, - "end": { - "$date": "2021-01-20T03:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9879d416-75b2-4d0a-ab97-6f928f37e199", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-20T02:40:18.000Z" - }, - "end": { - "$date": "2021-01-20T03:22:33.000Z" - }, - "events": [ - { - "uuid": "3f277752-19c1-4a42-aa50-7260a81d551b", - "start": { - "$date": "2021-01-20T02:40:18.000Z" - }, - "end": { - "$date": "2021-01-20T03:22:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "75c964cc-0c9b-4a0a-9c3f-c97d9087dcac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T02:53:57.000Z" - }, - "end": { - "$date": "2021-01-20T03:21:13.000Z" - }, - "events": [ - { - "uuid": "e8e6f8f2-067e-493f-bfd8-35b696663a90", - "start": { - "$date": "2021-01-20T02:53:57.000Z" - }, - "end": { - "$date": "2021-01-20T03:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad1d6bee-2c37-4590-b8e4-83b93dbbe1e9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T02:56:58.000Z" - }, - "end": { - "$date": "2021-01-20T02:58:35.000Z" - }, - "events": [ - { - "uuid": "44894bef-37d7-4aca-97be-75ecd900d5dc", - "start": { - "$date": "2021-01-20T02:56:58.000Z" - }, - "end": { - "$date": "2021-01-20T02:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea8b9aff-87ee-4689-9327-016df6640e1c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T03:01:30.000Z" - }, - "end": { - "$date": "2021-01-20T03:16:46.000Z" - }, - "events": [ - { - "uuid": "3a84bb37-501c-4a10-b109-8e32cb736712", - "start": { - "$date": "2021-01-20T03:01:30.000Z" - }, - "end": { - "$date": "2021-01-20T03:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "ff6c8813-e24e-4566-b76d-35d1fbd99054", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T03:09:20.000Z" - }, - "end": { - "$date": "2021-01-20T03:57:15.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:09:20.000Z" - }, - "end": { - "$date": "2021-01-20T03:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81ad1d88-d9a3-4e31-aef0-6dede35e3da4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T03:17:02.000Z" - }, - "end": { - "$date": "2021-01-20T03:21:10.000Z" - }, - "events": [ - { - "uuid": "a3e179ec-bb58-4890-8f46-6d835d26dc71", - "start": { - "$date": "2021-01-20T03:17:02.000Z" - }, - "end": { - "$date": "2021-01-20T03:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2ece023-2c12-40cd-92d2-5b33e77ee4d1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T03:26:32.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:26:32.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df23dac5-cad1-4234-a1e9-0da7e88ea373", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T03:26:56.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:26:56.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8746ad3a-41db-4cb3-9f41-1988595279a6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T03:26:34.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:40.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:26:34.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b08a55c4-0f33-4e8e-bec8-f017245fa99e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T03:26:33.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:26:33.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b6de8f8-98f4-4811-b6e2-260590082609", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-20T03:42:58.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:42:58.000Z" - }, - "end": { - "$date": "2021-01-20T03:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ae4e8ff5-8807-406b-9621-641d3012033a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-20T03:25:25.000Z" - }, - "end": { - "$date": "2021-01-20T05:36:33.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:25:25.000Z" - }, - "end": { - "$date": "2021-01-20T05:36:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "095f3a9a-d857-4b9f-b812-8a4c38a5ee84", - "uuid": "34810d21-27d5-471f-85ad-46dfbc1b1aba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-20T03:30:25.000Z" - }, - "end": { - "$date": "2021-01-20T03:57:55.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-20T03:30:25.000Z" - }, - "end": { - "$date": "2021-01-20T03:57:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6643822-f8b0-40d8-926a-680a6a816410", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T03:43:49.000Z" - }, - "end": { - "$date": "2021-01-20T03:44:53.000Z" - }, - "events": [ - { - "uuid": "4fd90867-f720-467b-8c4c-95580e282ea2", - "start": { - "$date": "2021-01-20T03:43:49.000Z" - }, - "end": { - "$date": "2021-01-20T03:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69f8e2ad-1787-404d-bf76-93bd97eb2711", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-20T03:49:04.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:15.000Z" - }, - "events": [ - { - "uuid": "17a06f72-7295-43c6-952c-9746611e2c1b", - "start": { - "$date": "2021-01-20T03:49:04.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c497954-a2bb-424e-9285-76d6480a0273", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T03:48:58.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:14.000Z" - }, - "events": [ - { - "uuid": "62618600-9738-4b81-93e6-41de532cd617", - "start": { - "$date": "2021-01-20T03:48:58.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cddfcb93-80a5-4599-b725-067445f656d9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T03:49:16.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:16.000Z" - }, - "events": [ - { - "uuid": "8660a7fd-ad2b-47e5-90e3-bd847734ba57", - "start": { - "$date": "2021-01-20T03:49:16.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09293a9c-1bff-4376-a294-14c8497d8172", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T03:49:04.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:15.000Z" - }, - "events": [ - { - "uuid": "46e4caa5-4dc9-4abf-9187-9210a15abd3f", - "start": { - "$date": "2021-01-20T03:49:04.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aacd2ad2-2a11-4045-addb-429f8dde3477", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T03:49:03.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:14.000Z" - }, - "events": [ - { - "uuid": "f2ad0bae-6f13-4a8a-b3a7-480aa72ca4f1", - "start": { - "$date": "2021-01-20T03:49:03.000Z" - }, - "end": { - "$date": "2021-01-20T04:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4a5274cf-5dab-46d1-91b5-33e6a6dba0d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-20T03:58:46.000Z" - }, - "end": { - "$date": "2021-01-20T06:24:54.000Z" - }, - "events": [ - { - "uuid": "44cf4057-fe40-4e73-af28-20d800e0a8e0", - "start": { - "$date": "2021-01-20T03:58:46.000Z" - }, - "end": { - "$date": "2021-01-20T06:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7be94398-1c02-4680-ac9b-9ff292070b26", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T04:05:49.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:15.000Z" - }, - "events": [ - { - "uuid": "94ea140d-fd6e-48ae-82de-dc45fd180bf7", - "start": { - "$date": "2021-01-20T04:05:49.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de3ef4f0-7350-4249-a320-4e78f7c94366", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T04:05:45.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:16.000Z" - }, - "events": [ - { - "uuid": "7e97aac0-b88e-4ab6-b583-acb4fd22dec0", - "start": { - "$date": "2021-01-20T04:05:45.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d77a1e2-4959-4908-a602-a1a21e7d3eae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T04:06:14.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:14.000Z" - }, - "events": [ - { - "uuid": "e3fe248a-abe2-4186-850f-6adb4d811022", - "start": { - "$date": "2021-01-20T04:06:14.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81e5e63d-f1c8-4053-859a-e22e844d9989", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-20T04:06:00.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:16.000Z" - }, - "events": [ - { - "uuid": "6fb3472d-b0fe-4e27-8930-0896a51bd04d", - "start": { - "$date": "2021-01-20T04:06:00.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f587d9f7-a05b-4e88-a82f-71fce9348bf8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T04:05:47.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:17.000Z" - }, - "events": [ - { - "uuid": "a39a43c2-b92b-4250-8a6e-f2f73e5d0dc3", - "start": { - "$date": "2021-01-20T04:05:47.000Z" - }, - "end": { - "$date": "2021-01-20T04:24:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ff9ad8fb-bc0a-4941-8232-ae1cf62307c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T04:03:48.000Z" - }, - "end": { - "$date": "2021-01-20T05:35:49.000Z" - }, - "events": [ - { - "uuid": "18b25638-4797-4712-97f9-14c4de177147", - "start": { - "$date": "2021-01-20T04:03:48.000Z" - }, - "end": { - "$date": "2021-01-20T05:35:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75d2a021-9970-4ee9-a3b1-454a24311304", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-20T05:27:35.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:31.000Z" - }, - "events": [ - { - "uuid": "783119c4-c6bc-48f7-ac59-d2f00132bac4", - "start": { - "$date": "2021-01-20T05:27:35.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "bf15f239-b8cb-460c-a868-ce060e1676dd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-20T04:36:27.000Z" - }, - "end": { - "$date": "2021-01-20T07:16:41.000Z" - }, - "events": [ - { - "uuid": "0db03895-fc05-43ae-8c3f-a4408ac3ab2a", - "start": { - "$date": "2021-01-20T04:36:27.000Z" - }, - "end": { - "$date": "2021-01-20T07:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "27397890-7b0f-4f0e-b321-6bc088bebe49", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T04:44:30.000Z" - }, - "end": { - "$date": "2021-01-20T05:22:07.000Z" - }, - "events": [ - { - "uuid": "21010e72-0b52-44b8-86c6-c6e9d11b714f", - "start": { - "$date": "2021-01-20T04:44:30.000Z" - }, - "end": { - "$date": "2021-01-20T05:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d1074c6-f798-4078-a504-c72c7393e41c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-20T04:44:28.000Z" - }, - "end": { - "$date": "2021-01-20T05:22:16.000Z" - }, - "events": [ - { - "uuid": "eca85d17-c5d2-47a7-b4a0-792d287c5d03", - "start": { - "$date": "2021-01-20T04:44:28.000Z" - }, - "end": { - "$date": "2021-01-20T05:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9820b43b-5f4d-4f9b-966e-fe758245954f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T04:44:59.000Z" - }, - "end": { - "$date": "2021-01-20T05:22:09.000Z" - }, - "events": [ - { - "uuid": "f18ca958-9c01-49be-aeca-f6e7a5f7b05b", - "start": { - "$date": "2021-01-20T04:44:59.000Z" - }, - "end": { - "$date": "2021-01-20T05:22:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd23ea08-0606-4fbb-a40f-13b427304504", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T05:27:11.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:27.000Z" - }, - "events": [ - { - "uuid": "6b82504c-ec98-4d9a-b54d-2245521e5ada", - "start": { - "$date": "2021-01-20T05:27:11.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b98acc7-0443-4317-9054-5f003e5248f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-20T05:27:13.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:26.000Z" - }, - "events": [ - { - "uuid": "75932629-ded8-4d3f-a9f8-8bcf9625c0c2", - "start": { - "$date": "2021-01-20T05:27:13.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa4ff9c2-6582-40fb-bd0a-b0884f1867de", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-20T05:27:26.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:32.000Z" - }, - "events": [ - { - "uuid": "9c92faef-a692-4f2f-a920-6dd253be8585", - "start": { - "$date": "2021-01-20T05:27:26.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06a3f8e8-7e8d-41cb-b0dc-e074a5574898", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T05:27:10.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:25.000Z" - }, - "events": [ - { - "uuid": "e1a6b7ec-9a3a-4f6b-bdde-afe3602b8572", - "start": { - "$date": "2021-01-20T05:27:10.000Z" - }, - "end": { - "$date": "2021-01-20T05:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "92ff2bee-e1cd-48d1-a8fa-919644ef998b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T05:27:32.000Z" - }, - "end": { - "$date": "2021-01-20T07:09:04.000Z" - }, - "events": [ - { - "uuid": "6b0f4f16-0823-42aa-a3b7-0c87112407eb", - "start": { - "$date": "2021-01-20T05:27:32.000Z" - }, - "end": { - "$date": "2021-01-20T07:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f22c1e48-8c51-4e36-9390-5610d15cb7f8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-20T05:37:26.000Z" - }, - "end": { - "$date": "2021-01-20T07:12:42.000Z" - }, - "events": [ - { - "uuid": "b6e31c71-31f7-45d4-b8e6-ed55cce8494f", - "start": { - "$date": "2021-01-20T05:37:26.000Z" - }, - "end": { - "$date": "2021-01-20T07:12:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3a0f5254-343c-4f89-9830-9400d8a9822f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-20T05:39:18.000Z" - }, - "end": { - "$date": "2021-01-20T07:54:27.000Z" - }, - "events": [ - { - "uuid": "12914905-b710-4cbf-9302-1cd309722b02", - "start": { - "$date": "2021-01-20T05:39:18.000Z" - }, - "end": { - "$date": "2021-01-20T07:54:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7d5ed1aa-752f-4ebe-bcdd-d369928d40f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T05:46:13.000Z" - }, - "end": { - "$date": "2021-01-20T11:01:36.000Z" - }, - "events": [ - { - "uuid": "97a3a764-9d7e-469b-8b6e-004004dad8d1", - "start": { - "$date": "2021-01-20T05:46:13.000Z" - }, - "end": { - "$date": "2021-01-20T08:14:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "638b35c6-512e-40a9-bca8-67fbf5514f9b", - "start": { - "$date": "2021-01-20T08:14:13.000Z" - }, - "end": { - "$date": "2021-01-20T08:19:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cda36c89-ddd2-46d8-812d-eaf11205f963", - "start": { - "$date": "2021-01-20T08:19:13.000Z" - }, - "end": { - "$date": "2021-01-20T08:29:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c239722-1d3a-4242-b0cc-f206c1203d8e", - "start": { - "$date": "2021-01-20T08:29:13.000Z" - }, - "end": { - "$date": "2021-01-20T11:01:36.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "61022414-557e-45c6-9999-fe8e2d7c715e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T05:50:12.000Z" - }, - "end": { - "$date": "2021-01-20T08:35:25.000Z" - }, - "events": [ - { - "uuid": "c68e695f-f208-49cf-81e3-458792754812", - "start": { - "$date": "2021-01-20T05:50:12.000Z" - }, - "end": { - "$date": "2021-01-20T08:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "01f6300f-2019-4964-9f57-8789d784a682", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-20T06:40:01.000Z" - }, - "end": { - "$date": "2021-01-20T08:13:14.000Z" - }, - "events": [ - { - "uuid": "f690e341-d72b-4fda-918e-75f326498c7e", - "start": { - "$date": "2021-01-20T06:40:01.000Z" - }, - "end": { - "$date": "2021-01-20T08:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e14ec7f4-7fa6-4c51-b0a1-04206333a5c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-20T07:24:20.000Z" - }, - "end": { - "$date": "2021-01-20T07:35:19.000Z" - }, - "events": [ - { - "uuid": "63110989-f08e-412e-89fa-c0d6ee5e7e21", - "start": { - "$date": "2021-01-20T07:24:20.000Z" - }, - "end": { - "$date": "2021-01-20T07:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d3cc599b-38be-4b44-8b0f-c9795c2055e8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-20T08:21:46.000Z" - }, - "end": { - "$date": "2021-01-20T08:28:35.000Z" - }, - "events": [ - { - "uuid": "451d8749-ddec-4bcd-8bbc-301f05fd1e07", - "start": { - "$date": "2021-01-20T08:21:46.000Z" - }, - "end": { - "$date": "2021-01-20T08:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "636fa304-a6fb-405e-a828-712a41d76aab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T05:46:13.000Z" - }, - "end": { - "$date": "2021-01-20T14:38:43.000Z" - }, - "events": [ - { - "uuid": "8c891eb4-d387-4419-b89e-624fbfc126f1", - "start": { - "$date": "2021-01-20T05:46:13.000Z" - }, - "end": { - "$date": "2021-01-20T08:13:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99ab9831-0d42-49c2-81ca-03a2a6ea8f98", - "start": { - "$date": "2021-01-20T08:13:13.000Z" - }, - "end": { - "$date": "2021-01-20T08:23:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40a5feff-33ad-46d9-81b4-04703dec878e", - "start": { - "$date": "2021-01-20T08:23:13.000Z" - }, - "end": { - "$date": "2021-01-20T14:38:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "25edc54f-19ed-462f-adb8-a7630e98718f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T14:53:00.000Z" - }, - "end": { - "$date": "2021-01-20T15:01:21.000Z" - }, - "events": [ - { - "uuid": "48ce4bfc-e11b-4d8c-8093-5f2536f118f0", - "start": { - "$date": "2021-01-20T14:53:00.000Z" - }, - "end": { - "$date": "2021-01-20T15:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "89c9be42-64fe-4e63-ac48-f0794942c782", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T15:57:14.000Z" - }, - "end": { - "$date": "2021-01-20T16:31:05.000Z" - }, - "events": [ - { - "uuid": "b475dbe2-0eb4-4c39-9ac0-d34a99a1377e", - "start": { - "$date": "2021-01-20T15:57:14.000Z" - }, - "end": { - "$date": "2021-01-20T16:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5b2fc09f-5543-49ab-b1e4-55b6e8653529", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T16:25:04.000Z" - }, - "end": { - "$date": "2021-01-20T17:55:47.000Z" - }, - "events": [ - { - "uuid": "2f41d192-10d5-4e01-a035-093e131d6d4d", - "start": { - "$date": "2021-01-20T16:25:04.000Z" - }, - "end": { - "$date": "2021-01-20T17:55:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "80983a59-d9a5-4319-b0ab-6a01d2bb0bde", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T16:37:31.000Z" - }, - "end": { - "$date": "2021-01-20T18:22:42.000Z" - }, - "events": [ - { - "uuid": "710a56ba-9d0b-4077-b852-2bebb8ca77b6", - "start": { - "$date": "2021-01-20T16:37:31.000Z" - }, - "end": { - "$date": "2021-01-20T17:42:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3e9ea08b-f748-4ee7-87e5-2b93a031fa48", - "start": { - "$date": "2021-01-20T17:42:31.000Z" - }, - "end": { - "$date": "2021-01-20T18:22:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "328a0309-9063-4b32-8930-3a78f7e87e58", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T18:26:05.000Z" - }, - "end": { - "$date": "2021-01-20T18:47:38.000Z" - }, - "events": [ - { - "uuid": "ce92ea87-bca9-4bed-bfe2-314466c606e7", - "start": { - "$date": "2021-01-20T18:26:05.000Z" - }, - "end": { - "$date": "2021-01-20T18:47:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "48bc6ca0-05e9-4508-aa1c-16c78cdeda12", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T18:37:49.000Z" - }, - "end": { - "$date": "2021-01-20T19:32:17.000Z" - }, - "events": [ - { - "uuid": "f0e63485-4e25-4f40-8588-85df7a517f2f", - "start": { - "$date": "2021-01-20T18:37:49.000Z" - }, - "end": { - "$date": "2021-01-20T19:23:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "611442c8-c60b-4500-b6f4-f700ed52230a", - "start": { - "$date": "2021-01-20T19:23:49.000Z" - }, - "end": { - "$date": "2021-01-20T19:30:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d4550c5b-a371-49ce-9de3-24e358cfe335", - "start": { - "$date": "2021-01-20T19:30:49.000Z" - }, - "end": { - "$date": "2021-01-20T19:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5b70a68-ba87-4eb7-882f-ab5a41e60c5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-20T19:35:59.000Z" - }, - "end": { - "$date": "2021-01-20T20:17:09.000Z" - }, - "events": [ - { - "uuid": "eb4d7af9-49e7-45dd-9ea8-4e17cc562347", - "start": { - "$date": "2021-01-20T19:35:59.000Z" - }, - "end": { - "$date": "2021-01-20T20:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9f53c54-0605-480d-9381-b91948bc0760", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-20T19:43:21.000Z" - }, - "end": { - "$date": "2021-01-20T20:19:08.000Z" - }, - "events": [ - { - "uuid": "7fe5bf0c-8810-4681-9570-96fafd44910a", - "start": { - "$date": "2021-01-20T19:43:21.000Z" - }, - "end": { - "$date": "2021-01-20T20:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "5c6bd7d6-4d0c-4db9-b304-641e1c5b7d87", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T19:56:34.000Z" - }, - "end": { - "$date": "2021-01-20T20:23:14.000Z" - }, - "events": [ - { - "uuid": "91d88f8b-c157-4ebd-99ea-966ffbc2cf9f", - "start": { - "$date": "2021-01-20T19:56:34.000Z" - }, - "end": { - "$date": "2021-01-20T20:23:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f75fa070-90d3-4c79-bf1f-897b49d208db", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-20T20:23:29.000Z" - }, - "end": { - "$date": "2021-01-20T21:34:46.000Z" - }, - "events": [ - { - "uuid": "dd433d9a-e3f2-4998-a05c-46f091fd0dac", - "start": { - "$date": "2021-01-20T20:23:29.000Z" - }, - "end": { - "$date": "2021-01-20T21:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4124dc72-9c55-4329-a257-4d6d73d2a111", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-20T20:43:27.000Z" - }, - "end": { - "$date": "2021-01-20T22:06:04.000Z" - }, - "events": [ - { - "uuid": "f8c27e1c-cb59-44fb-b295-667340e9dfb3", - "start": { - "$date": "2021-01-20T20:43:27.000Z" - }, - "end": { - "$date": "2021-01-20T22:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a0639280-700c-4e64-abc3-478493cf9611", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-20T21:01:08.000Z" - }, - "end": { - "$date": "2021-01-20T22:02:17.000Z" - }, - "events": [ - { - "uuid": "92e162f8-0968-4fe9-ba7a-dbacd91e65e3", - "start": { - "$date": "2021-01-20T21:01:08.000Z" - }, - "end": { - "$date": "2021-01-20T22:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "256b428f-aaa9-4881-b571-e538fcd0a57d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T21:01:47.000Z" - }, - "end": { - "$date": "2021-01-20T21:12:18.000Z" - }, - "events": [ - { - "uuid": "77d6cddc-66cf-40de-9fd8-b87cbbfdbfae", - "start": { - "$date": "2021-01-20T21:01:47.000Z" - }, - "end": { - "$date": "2021-01-20T21:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ff1aaf50-9187-42c1-9466-9e0df9fe34c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T21:51:10.000Z" - }, - "end": { - "$date": "2021-01-20T22:08:52.000Z" - }, - "events": [ - { - "uuid": "4079ec94-1ab4-4211-9af0-7e4466763ece", - "start": { - "$date": "2021-01-20T21:51:10.000Z" - }, - "end": { - "$date": "2021-01-20T22:08:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75659658-d417-4ce9-9d3b-da204c6a44dc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-20T23:39:33.000Z" - }, - "end": { - "$date": "2021-01-21T00:06:06.000Z" - }, - "events": [ - { - "uuid": "9a6417ff-db4a-4215-97ab-8412a1e24fd0", - "start": { - "$date": "2021-01-20T23:39:33.000Z" - }, - "end": { - "$date": "2021-01-21T00:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9e1d46f4-f54d-4cee-ab83-b178b0d3d1bc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-20T23:46:10.000Z" - }, - "end": { - "$date": "2021-01-21T00:09:32.000Z" - }, - "events": [ - { - "uuid": "0e377333-a596-414f-9008-465647e96f90", - "start": { - "$date": "2021-01-20T23:46:10.000Z" - }, - "end": { - "$date": "2021-01-21T00:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9578b49-1e29-4969-9589-614d32bf728f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T00:02:48.000Z" - }, - "end": { - "$date": "2021-01-21T00:26:40.000Z" - }, - "events": [ - { - "uuid": "5a471b87-e868-4542-832c-ff7c09f5b360", - "start": { - "$date": "2021-01-21T00:02:48.000Z" - }, - "end": { - "$date": "2021-01-21T00:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63ac78ae-7dd1-4778-be56-c81e2426dc3f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-21T00:04:41.000Z" - }, - "end": { - "$date": "2021-01-21T00:26:22.000Z" - }, - "events": [ - { - "uuid": "8c3469e1-f711-4356-a8fe-d077978efe28", - "start": { - "$date": "2021-01-21T00:04:41.000Z" - }, - "end": { - "$date": "2021-01-21T00:26:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "56acfaf9-d2c7-43ff-84e1-9f3b150b12e9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T00:12:24.000Z" - }, - "end": { - "$date": "2021-01-21T01:44:56.000Z" - }, - "events": [ - { - "uuid": "fb7ed82b-5721-4eae-ac4e-7afe493a8b27", - "start": { - "$date": "2021-01-21T00:12:24.000Z" - }, - "end": { - "$date": "2021-01-21T01:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9b1e14e-26d1-4444-94af-8074e9f7c091", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T00:31:35.000Z" - }, - "end": { - "$date": "2021-01-21T00:45:11.000Z" - }, - "events": [ - { - "uuid": "21c8cc8e-e114-4c18-854e-a114751fb03f", - "start": { - "$date": "2021-01-21T00:31:35.000Z" - }, - "end": { - "$date": "2021-01-21T00:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0ed643c-af77-43ed-9d2b-cc5bf32f08b6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-21T00:32:22.000Z" - }, - "end": { - "$date": "2021-01-21T00:45:08.000Z" - }, - "events": [ - { - "uuid": "1b801467-492a-4e29-b058-526f41ae4777", - "start": { - "$date": "2021-01-21T00:32:22.000Z" - }, - "end": { - "$date": "2021-01-21T00:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a065cd7-456d-430f-bc99-7b2d5e9ddb87", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T00:31:37.000Z" - }, - "end": { - "$date": "2021-01-21T00:45:16.000Z" - }, - "events": [ - { - "uuid": "6e4e53c4-358e-45d0-9760-02e2160e814f", - "start": { - "$date": "2021-01-21T00:31:37.000Z" - }, - "end": { - "$date": "2021-01-21T00:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2fc3164b-ebc3-4168-b501-811180071108", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T00:47:21.000Z" - }, - "end": { - "$date": "2021-01-21T01:10:20.000Z" - }, - "events": [ - { - "uuid": "14624335-e2bb-4d03-86d5-14f4bdb541bf", - "start": { - "$date": "2021-01-21T00:47:21.000Z" - }, - "end": { - "$date": "2021-01-21T01:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f4d2ca2-0ed3-4b98-bcfa-567be8f5afbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T00:47:17.000Z" - }, - "end": { - "$date": "2021-01-21T01:10:20.000Z" - }, - "events": [ - { - "uuid": "2d9b4a87-ca64-411a-bb39-85bc4fb0fc49", - "start": { - "$date": "2021-01-21T00:47:17.000Z" - }, - "end": { - "$date": "2021-01-21T01:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0277ce33-7fcf-4678-91d7-1cc81e6458b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-21T00:48:58.000Z" - }, - "end": { - "$date": "2021-01-21T01:10:14.000Z" - }, - "events": [ - { - "uuid": "cbdcc935-b87c-4a11-a043-71716cf963aa", - "start": { - "$date": "2021-01-21T00:48:58.000Z" - }, - "end": { - "$date": "2021-01-21T01:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0498907e-093a-4740-a649-62f05a6e6c58", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T00:53:40.000Z" - }, - "end": { - "$date": "2021-01-21T02:00:01.000Z" - }, - "events": [ - { - "uuid": "15e3254a-eb5a-468d-9d2d-98f4a6c0ebef", - "start": { - "$date": "2021-01-21T00:53:40.000Z" - }, - "end": { - "$date": "2021-01-21T02:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7221966b-3d12-47f4-abea-0c530123145e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-21T01:11:05.000Z" - }, - "end": { - "$date": "2021-01-21T01:12:05.000Z" - }, - "events": [ - { - "uuid": "c6257947-b9a0-4479-a616-4c36c7047958", - "start": { - "$date": "2021-01-21T01:11:05.000Z" - }, - "end": { - "$date": "2021-01-21T01:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2eb8116c-9d09-410b-ac1a-2612cf5738a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-21T01:13:10.000Z" - }, - "end": { - "$date": "2021-01-21T02:55:09.000Z" - }, - "events": [ - { - "uuid": "1259b79d-685c-4058-a4b3-c03d3e00a5ee", - "start": { - "$date": "2021-01-21T01:13:10.000Z" - }, - "end": { - "$date": "2021-01-21T02:55:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4cee8468-26f8-4e73-bb7b-66bd84db9ca1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-21T02:32:31.000Z" - }, - "end": { - "$date": "2021-01-21T05:24:33.000Z" - }, - "events": [ - { - "uuid": "3fdcd62d-b2b4-4e2f-bfd6-ee300d85467d", - "start": { - "$date": "2021-01-21T02:32:31.000Z" - }, - "end": { - "$date": "2021-01-21T05:24:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "86564c6b-ba7a-40d9-8892-a242327d6c9d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T02:40:42.000Z" - }, - "end": { - "$date": "2021-01-21T03:02:41.000Z" - }, - "events": [ - { - "uuid": "7fc41c70-f41a-4bbb-b096-2263791ed02d", - "start": { - "$date": "2021-01-21T02:40:42.000Z" - }, - "end": { - "$date": "2021-01-21T03:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb9cce22-ebbb-4f8d-b052-650037c5c493", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T03:01:30.000Z" - }, - "end": { - "$date": "2021-01-21T03:30:59.000Z" - }, - "events": [ - { - "uuid": "34742525-4887-496a-93e9-b43f22ab5c37", - "start": { - "$date": "2021-01-21T03:01:30.000Z" - }, - "end": { - "$date": "2021-01-21T03:30:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47f98450-1be5-44eb-9191-c45f6bf1752f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T03:30:57.000Z" - }, - "end": { - "$date": "2021-01-21T03:31:49.000Z" - }, - "events": [ - { - "uuid": "cced5f9f-d8a2-4f94-b0ad-7d5ce25c1e7a", - "start": { - "$date": "2021-01-21T03:30:57.000Z" - }, - "end": { - "$date": "2021-01-21T03:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "377a3918-fe11-4704-9232-9e33d1ff23ae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-21T03:03:58.000Z" - }, - "end": { - "$date": "2021-01-21T03:30:55.000Z" - }, - "events": [ - { - "uuid": "8c6326f9-8deb-4ec6-9db3-1b5b1e8fe631", - "start": { - "$date": "2021-01-21T03:03:58.000Z" - }, - "end": { - "$date": "2021-01-21T03:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a60f5a1-e875-468d-858a-3e024247c380", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T03:09:00.000Z" - }, - "end": { - "$date": "2021-01-21T03:26:31.000Z" - }, - "events": [ - { - "uuid": "5c324e63-8de8-42fd-b6c1-d6722624fbc3", - "start": { - "$date": "2021-01-21T03:09:00.000Z" - }, - "end": { - "$date": "2021-01-21T03:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4565ba6-e94c-4990-95b1-c09187684d4e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T03:31:29.000Z" - }, - "end": { - "$date": "2021-01-21T03:33:42.000Z" - }, - "events": [ - { - "uuid": "c1eaa8f5-ff33-474d-9cb0-20ce97ee921c", - "start": { - "$date": "2021-01-21T03:31:29.000Z" - }, - "end": { - "$date": "2021-01-21T03:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6d8c0f3-13f0-4b61-bd39-31b30e57bedb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T03:35:56.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:51.000Z" - }, - "events": [ - { - "uuid": "203b7df8-2aa9-47f2-babc-c05c3f0ece3e", - "start": { - "$date": "2021-01-21T03:35:56.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e989340f-55d6-428e-8b4e-079712ac8a32", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-21T03:35:52.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:48.000Z" - }, - "events": [ - { - "uuid": "48869a6c-79fb-42ed-99fe-4a99a1a85a59", - "start": { - "$date": "2021-01-21T03:35:52.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f5df58e-85fb-43d5-8c50-08fe475d2e64", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T03:35:57.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:43.000Z" - }, - "events": [ - { - "uuid": "56ef91d4-54d7-4484-be0a-30b7d9150b81", - "start": { - "$date": "2021-01-21T03:35:57.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0daafa31-deb2-4202-9881-ba9e2469cfba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T03:35:53.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:48.000Z" - }, - "events": [ - { - "uuid": "34d17ee5-769c-493e-9bc8-cebcb0dc029f", - "start": { - "$date": "2021-01-21T03:35:53.000Z" - }, - "end": { - "$date": "2021-01-21T03:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e67a468-01a7-493f-b2c6-2a71e5b7d9ab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T03:55:31.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:59.000Z" - }, - "events": [ - { - "uuid": "0442add2-d627-422b-9427-ef9b6f1ea346", - "start": { - "$date": "2021-01-21T03:55:31.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63c77995-a0e7-4061-b79c-ffff5c7a97d6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T03:55:37.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:48.000Z" - }, - "events": [ - { - "uuid": "1cd9d0f1-7c57-4982-8084-29a30e5424fc", - "start": { - "$date": "2021-01-21T03:55:37.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "638a2020-ab5d-41c1-9bc0-497035558220", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-21T03:56:28.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:49.000Z" - }, - "events": [ - { - "uuid": "5ecc8232-7134-445c-b2c0-3e91a59c237b", - "start": { - "$date": "2021-01-21T03:56:28.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e44a820-4042-4aff-9994-79c4457e8627", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T03:55:33.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:54.000Z" - }, - "events": [ - { - "uuid": "3801ae4d-3b98-43c5-8e54-1cc86aad80f9", - "start": { - "$date": "2021-01-21T03:55:33.000Z" - }, - "end": { - "$date": "2021-01-21T04:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4df1c2d7-602c-49b3-8032-fa79a20e7275", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T03:53:58.000Z" - }, - "end": { - "$date": "2021-01-21T04:51:19.000Z" - }, - "events": [ - { - "uuid": "f642e7fc-d69c-47d1-8e4a-ae4a5f4125c8", - "start": { - "$date": "2021-01-21T03:53:58.000Z" - }, - "end": { - "$date": "2021-01-21T04:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37507870-682b-4e0c-89ed-de34833847d8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-21T03:54:18.000Z" - }, - "end": { - "$date": "2021-01-21T04:52:11.000Z" - }, - "events": [ - { - "uuid": "3ca02178-0b34-484e-8614-c5bd68705c7e", - "start": { - "$date": "2021-01-21T03:54:18.000Z" - }, - "end": { - "$date": "2021-01-21T04:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fd8a536-749c-4e42-9a40-726a61d6ff34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T04:15:07.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:52.000Z" - }, - "events": [ - { - "uuid": "fce98fae-0bce-4bb5-99a5-8d422bad5633", - "start": { - "$date": "2021-01-21T04:15:07.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02e6ee51-3c34-47cd-a770-57e123276c1d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-21T04:15:08.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:45.000Z" - }, - "events": [ - { - "uuid": "3c8feb7d-73e3-40d2-bb64-afe325f5039d", - "start": { - "$date": "2021-01-21T04:15:08.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b37d05a-4042-4910-9caf-3cfaae9d4c80", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T04:15:22.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:43.000Z" - }, - "events": [ - { - "uuid": "dc2eb798-f8e5-498c-bfc5-03bc2f90da36", - "start": { - "$date": "2021-01-21T04:15:22.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0f152eb-0c12-42fa-9448-73866ef85d63", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T04:15:09.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:45.000Z" - }, - "events": [ - { - "uuid": "1118a816-701d-4b02-ba22-c6e51fe0326d", - "start": { - "$date": "2021-01-21T04:15:09.000Z" - }, - "end": { - "$date": "2021-01-21T04:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e85f2aaf-0e6c-4ce5-99e1-8bb691dc85c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T04:32:00.000Z" - }, - "end": { - "$date": "2021-01-21T05:07:56.000Z" - }, - "events": [ - { - "uuid": "afc3f98b-9677-48fe-8a06-cc8ada6c0ffa", - "start": { - "$date": "2021-01-21T04:32:00.000Z" - }, - "end": { - "$date": "2021-01-21T05:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc905051-db32-456b-aee5-92796a2cd989", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-21T04:46:44.000Z" - }, - "end": { - "$date": "2021-01-21T05:07:57.000Z" - }, - "events": [ - { - "uuid": "925c9c6f-39b5-4c32-ac56-de035b9f9b64", - "start": { - "$date": "2021-01-21T04:46:44.000Z" - }, - "end": { - "$date": "2021-01-21T05:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9872967-64df-44c2-bd05-e0bd3b16c27d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T04:32:12.000Z" - }, - "end": { - "$date": "2021-01-21T05:07:51.000Z" - }, - "events": [ - { - "uuid": "3be9496f-0619-4f3d-8451-88d45d2d5d59", - "start": { - "$date": "2021-01-21T04:32:12.000Z" - }, - "end": { - "$date": "2021-01-21T05:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3771b909-7a27-42a5-a8f3-16c12e774deb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-21T04:32:03.000Z" - }, - "end": { - "$date": "2021-01-21T05:28:22.000Z" - }, - "events": [ - { - "uuid": "5df6ea84-ef74-4c59-9398-9749bf8028c6", - "start": { - "$date": "2021-01-21T04:32:03.000Z" - }, - "end": { - "$date": "2021-01-21T05:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c60eb4b-8e29-4893-bce5-a8b9a0e19d06", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-21T04:46:13.000Z" - }, - "end": { - "$date": "2021-01-21T05:49:24.000Z" - }, - "events": [ - { - "uuid": "652bc00c-f6ed-463c-9b51-8dd127b74992", - "start": { - "$date": "2021-01-21T04:46:13.000Z" - }, - "end": { - "$date": "2021-01-21T05:49:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "96dc6dcc-376e-4620-a1e8-641f2b540b60", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T04:52:14.000Z" - }, - "end": { - "$date": "2021-01-21T06:16:09.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-21T04:52:14.000Z" - }, - "end": { - "$date": "2021-01-21T06:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "59f31a1a-0e43-4bd6-a8ba-10c1854cdea9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-21T04:52:56.000Z" - }, - "end": { - "$date": "2021-01-21T05:18:56.000Z" - }, - "events": [ - { - "uuid": "37295a03-18c2-4c1c-acd5-3fe7801fe59c", - "start": { - "$date": "2021-01-21T04:52:56.000Z" - }, - "end": { - "$date": "2021-01-21T05:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7570dd58-cca1-4f2f-94e8-081afc880b3f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T05:08:00.000Z" - }, - "end": { - "$date": "2021-01-21T05:16:50.000Z" - }, - "events": [ - { - "uuid": "bde55223-0643-4536-9b84-fbf07a46e59c", - "start": { - "$date": "2021-01-21T05:08:00.000Z" - }, - "end": { - "$date": "2021-01-21T05:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a0bb131-c7ca-4edf-8d66-69861f26f8a7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-21T05:09:02.000Z" - }, - "end": { - "$date": "2021-01-21T05:15:06.000Z" - }, - "events": [ - { - "uuid": "22e061ae-b03d-4565-8387-f11daec52f2c", - "start": { - "$date": "2021-01-21T05:09:02.000Z" - }, - "end": { - "$date": "2021-01-21T05:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97841bdd-3ae9-4ee3-b11e-062ca183f12c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-21T05:09:03.000Z" - }, - "end": { - "$date": "2021-01-21T05:15:05.000Z" - }, - "events": [ - { - "uuid": "d259a44f-2ba7-4ba2-b1a1-46a004b872a7", - "start": { - "$date": "2021-01-21T05:09:03.000Z" - }, - "end": { - "$date": "2021-01-21T05:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "728aee95-ba9a-4c94-86f7-5b0890bd1c73", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-21T05:29:30.000Z" - }, - "end": { - "$date": "2021-01-21T07:08:23.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-21T05:29:30.000Z" - }, - "end": { - "$date": "2021-01-21T07:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "91b84876-5b19-43c5-886d-a2d3a3a2e499", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T06:17:19.000Z" - }, - "end": { - "$date": "2021-01-21T06:21:19.000Z" - }, - "events": [ - { - "uuid": "2af6e474-c6c9-420f-9a11-278359e7acb9", - "start": { - "$date": "2021-01-21T06:17:19.000Z" - }, - "end": { - "$date": "2021-01-21T06:21:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "843c1548-3caf-4838-87ca-552d17c5f369", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-21T15:51:18.000Z" - }, - "end": { - "$date": "2021-01-21T16:11:03.000Z" - }, - "events": [ - { - "uuid": "a2320e8b-b8bb-490e-aaf1-d7e7a1bc5b5e", - "start": { - "$date": "2021-01-21T15:51:18.000Z" - }, - "end": { - "$date": "2021-01-21T16:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f9db14a-5c9c-4447-95ba-461ebd8b0e51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-21T16:11:49.000Z" - }, - "end": { - "$date": "2021-01-21T16:44:50.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-21T16:11:49.000Z" - }, - "end": { - "$date": "2021-01-21T16:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1793391b-9099-40d7-b5df-2e8a1ee57665", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T18:33:59.000Z" - }, - "end": { - "$date": "2021-01-21T18:41:10.000Z" - }, - "events": [ - { - "uuid": "db08ad05-a91f-441a-977e-58f35c5e7fc8", - "start": { - "$date": "2021-01-21T18:33:59.000Z" - }, - "end": { - "$date": "2021-01-21T18:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "81ae8b66-5d37-4c5f-aa05-319d520fb5bb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-21T18:58:43.000Z" - }, - "end": { - "$date": "2021-01-21T19:02:53.000Z" - }, - "events": [ - { - "uuid": "192fcc48-702b-4f0c-8928-3c3ba00b8f4f", - "start": { - "$date": "2021-01-21T18:58:43.000Z" - }, - "end": { - "$date": "2021-01-21T19:02:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2b166a1-03f6-4782-a0b0-2b1f52faa054", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-21T19:19:44.000Z" - }, - "end": { - "$date": "2021-01-21T19:40:05.000Z" - }, - "events": [ - { - "uuid": "dd3bb32b-3206-4756-86fd-0a5c97c86fce", - "start": { - "$date": "2021-01-21T19:19:44.000Z" - }, - "end": { - "$date": "2021-01-21T19:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0dd2a479-06e2-4eca-8109-f30d18997357", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-21T19:44:56.000Z" - }, - "end": { - "$date": "2021-01-21T20:43:15.000Z" - }, - "events": [ - { - "uuid": "93e17162-6378-464a-af24-9a16e41a915e", - "start": { - "$date": "2021-01-21T19:44:56.000Z" - }, - "end": { - "$date": "2021-01-21T20:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3f5a414b-ea2d-4e90-8ee3-0c774662fda1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-21T20:04:39.000Z" - }, - "end": { - "$date": "2021-01-21T21:27:26.000Z" - }, - "events": [ - { - "uuid": "a4bd29e1-0624-4cf6-bfa7-517c4ba78717", - "start": { - "$date": "2021-01-21T20:04:39.000Z" - }, - "end": { - "$date": "2021-01-21T21:27:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4c2e3662-d39a-4026-8996-104c2b8843d7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-21T20:51:22.000Z" - }, - "end": { - "$date": "2021-01-21T21:47:28.000Z" - }, - "events": [ - { - "uuid": "467fa717-e377-49a7-8174-d9de00bccd75", - "start": { - "$date": "2021-01-21T20:51:22.000Z" - }, - "end": { - "$date": "2021-01-21T21:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d1d9850f-2637-4cad-934f-d849300f3c7f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-21T21:02:16.000Z" - }, - "end": { - "$date": "2021-01-21T21:55:49.000Z" - }, - "events": [ - { - "uuid": "887cb0a2-a8d3-4a0b-9756-48a6679d050a", - "start": { - "$date": "2021-01-21T21:02:16.000Z" - }, - "end": { - "$date": "2021-01-21T21:55:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8dae1b3c-a14b-4e27-99eb-b6a79e94cdfd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T21:41:30.000Z" - }, - "end": { - "$date": "2021-01-21T23:20:20.000Z" - }, - "events": [ - { - "uuid": "0ee56ebb-1301-4c44-a799-a9be700070f8", - "start": { - "$date": "2021-01-21T21:41:30.000Z" - }, - "end": { - "$date": "2021-01-21T23:20:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "ad368f8a-4765-4802-bf85-eff68ab71085", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-21T21:46:27.000Z" - }, - "end": { - "$date": "2021-01-21T22:47:55.000Z" - }, - "events": [ - { - "uuid": "9a6bc71f-2f7a-4288-99af-098436ed7b19", - "start": { - "$date": "2021-01-21T21:46:27.000Z" - }, - "end": { - "$date": "2021-01-21T22:18:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78659272-7cc9-4ca9-b955-4814b336b8b0", - "start": { - "$date": "2021-01-21T22:18:27.000Z" - }, - "end": { - "$date": "2021-01-21T22:29:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2ee14ebc-6c92-4e61-80ce-e386269d3748", - "start": { - "$date": "2021-01-21T22:29:27.000Z" - }, - "end": { - "$date": "2021-01-21T22:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "566966ed-8436-41fe-b376-754ca3d1e4b0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-21T22:05:03.000Z" - }, - "end": { - "$date": "2021-01-21T23:03:15.000Z" - }, - "events": [ - { - "uuid": "fc268e13-dce3-494c-9186-2302a421a9d8", - "start": { - "$date": "2021-01-21T22:05:03.000Z" - }, - "end": { - "$date": "2021-01-21T23:03:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9509450e-609b-4ef4-b0f2-cebd88e3746b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-21T22:13:19.000Z" - }, - "end": { - "$date": "2021-01-21T22:42:18.000Z" - }, - "events": [ - { - "uuid": "01b5bc61-f3f9-4d3e-92b5-e40253bcfdea", - "start": { - "$date": "2021-01-21T22:13:19.000Z" - }, - "end": { - "$date": "2021-01-21T22:42:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd431f38-e9a4-4d6c-9c51-cb67b2f3d626", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T23:24:36.000Z" - }, - "end": { - "$date": "2021-01-21T23:59:07.000Z" - }, - "events": [ - { - "uuid": "87efa661-f9ee-49de-b20e-3a9a1bf491d3", - "start": { - "$date": "2021-01-21T23:24:36.000Z" - }, - "end": { - "$date": "2021-01-21T23:59:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8502d17-fb4a-424e-a259-881f7c780e41", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-21T23:25:03.000Z" - }, - "end": { - "$date": "2021-01-21T23:59:04.000Z" - }, - "events": [ - { - "uuid": "67f0a84c-317b-439c-a132-e3b682f59154", - "start": { - "$date": "2021-01-21T23:25:03.000Z" - }, - "end": { - "$date": "2021-01-21T23:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cca5df05-eccd-4584-8fba-9a43feb617a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-21T23:55:32.000Z" - }, - "end": { - "$date": "2021-01-22T01:08:58.000Z" - }, - "events": [ - { - "uuid": "93daa5df-43de-43c3-92ac-6c121d106e7f", - "start": { - "$date": "2021-01-21T23:55:32.000Z" - }, - "end": { - "$date": "2021-01-22T01:04:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ffe5b84-c30d-4808-a9e7-ddbf22775710", - "start": { - "$date": "2021-01-22T01:04:32.000Z" - }, - "end": { - "$date": "2021-01-22T01:08:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f514f2c4-16f8-4867-a75e-f48862eff4ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-21T23:59:10.000Z" - }, - "end": { - "$date": "2021-01-22T07:45:13.000Z" - }, - "events": [ - { - "uuid": "55710ccf-4dcd-4be8-8894-82b5d3064d97", - "start": { - "$date": "2021-01-21T23:59:10.000Z" - }, - "end": { - "$date": "2021-01-22T07:45:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6bdf1bc0-055b-4f93-98c7-1eeb04ce6a6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-22T00:00:58.000Z" - }, - "end": { - "$date": "2021-01-22T03:09:28.000Z" - }, - "events": [ - { - "uuid": "7163f717-ca9b-4b1b-b5e0-139dd00398bc", - "start": { - "$date": "2021-01-22T00:00:58.000Z" - }, - "end": { - "$date": "2021-01-22T03:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b0248189-e9fe-4530-8b84-f1b38f6427dd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-22T00:01:45.000Z" - }, - "end": { - "$date": "2021-01-22T01:49:31.000Z" - }, - "events": [ - { - "uuid": "3fd69a82-cfcc-4fab-b08a-fb5f9e5d94c1", - "start": { - "$date": "2021-01-22T00:01:45.000Z" - }, - "end": { - "$date": "2021-01-22T01:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf67afef-cc4f-4afe-8aae-0115e8b607ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T01:34:11.000Z" - }, - "end": { - "$date": "2021-01-22T01:57:06.000Z" - }, - "events": [ - { - "uuid": "443a3859-3045-46ad-8d3c-349bdf115231", - "start": { - "$date": "2021-01-22T01:34:11.000Z" - }, - "end": { - "$date": "2021-01-22T01:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "195f0c7a-202b-44d6-a657-e30d1efb64aa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-22T01:36:53.000Z" - }, - "end": { - "$date": "2021-01-22T02:01:39.000Z" - }, - "events": [ - { - "uuid": "86a8945d-efe3-4f46-912f-eb64039a62dc", - "start": { - "$date": "2021-01-22T01:36:53.000Z" - }, - "end": { - "$date": "2021-01-22T02:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "152c51b1-953a-4855-ab8d-66c2dbf21cb7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T01:58:32.000Z" - }, - "end": { - "$date": "2021-01-22T02:24:46.000Z" - }, - "events": [ - { - "uuid": "33b8bd56-ab2c-41e5-bf91-571ce27e13b1", - "start": { - "$date": "2021-01-22T01:58:32.000Z" - }, - "end": { - "$date": "2021-01-22T02:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e53a6cb0-0ce3-42c1-abfa-8c50578cf46d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-22T02:01:19.000Z" - }, - "end": { - "$date": "2021-01-22T03:45:19.000Z" - }, - "events": [ - { - "uuid": "18564b0d-209f-4421-b5a5-165adc830af4", - "start": { - "$date": "2021-01-22T02:01:19.000Z" - }, - "end": { - "$date": "2021-01-22T03:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a1b2826-b9dd-42f0-b042-50291fac4e82", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-22T02:39:06.000Z" - }, - "end": { - "$date": "2021-01-22T03:15:18.000Z" - }, - "events": [ - { - "uuid": "bbc7fe59-bdcc-4340-9df1-740296e7b25f", - "start": { - "$date": "2021-01-22T02:39:06.000Z" - }, - "end": { - "$date": "2021-01-22T03:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5b4ea24a-4591-457a-80a1-119918f8f32d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T02:54:14.000Z" - }, - "end": { - "$date": "2021-01-22T03:42:54.000Z" - }, - "events": [ - { - "uuid": "a9594af5-d0d4-4e57-b9ee-e40c77466f7d", - "start": { - "$date": "2021-01-22T02:54:14.000Z" - }, - "end": { - "$date": "2021-01-22T03:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34b9d471-470b-464b-be5c-7b2e48a33baa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-22T04:01:16.000Z" - }, - "end": { - "$date": "2021-01-22T04:41:22.000Z" - }, - "events": [ - { - "uuid": "435d1858-95fd-43b5-a5b3-c5bb0ebbaaa3", - "start": { - "$date": "2021-01-22T04:01:16.000Z" - }, - "end": { - "$date": "2021-01-22T04:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "63787c35-e6f9-4938-ae0f-d989c5f2959f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-22T03:21:27.000Z" - }, - "end": { - "$date": "2021-01-22T06:52:08.000Z" - }, - "events": [ - { - "uuid": "20cfceda-96f8-450d-8267-a3f3cc44bf65", - "start": { - "$date": "2021-01-22T03:21:27.000Z" - }, - "end": { - "$date": "2021-01-22T05:41:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c2bffc4a-824c-48a8-8810-5aadac59128d", - "start": { - "$date": "2021-01-22T05:41:27.000Z" - }, - "end": { - "$date": "2021-01-22T05:46:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7199d65-3ee6-4883-846e-2dbb8ef62188", - "start": { - "$date": "2021-01-22T05:46:27.000Z" - }, - "end": { - "$date": "2021-01-22T06:52:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "775a4281-8aab-4779-a681-4d35ffec92b4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-22T06:36:16.000Z" - }, - "end": { - "$date": "2021-01-22T06:57:46.000Z" - }, - "events": [ - { - "uuid": "415a37e5-a915-4520-956f-c697ca048231", - "start": { - "$date": "2021-01-22T06:36:16.000Z" - }, - "end": { - "$date": "2021-01-22T06:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "621a8269-f650-4b39-b74a-c282d9313e65", - "uuid": "bbf1549f-7b06-4ae0-b533-c52d11f27ddb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-22T03:53:51.000Z" - }, - "end": { - "$date": "2021-01-22T04:23:09.000Z" - }, - "events": [ - { - "uuid": "232f7dbb-1623-4ab5-9d93-106c1e3b4d02", - "start": { - "$date": "2021-01-22T03:53:51.000Z" - }, - "end": { - "$date": "2021-01-22T04:23:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fe67594a-2b13-48eb-acd8-7fdb5f4546fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-22T04:14:34.000Z" - }, - "end": { - "$date": "2021-01-22T06:37:34.000Z" - }, - "events": [ - { - "uuid": "dad471ea-db14-498c-8a26-b47d46b88e6c", - "start": { - "$date": "2021-01-22T04:14:34.000Z" - }, - "end": { - "$date": "2021-01-22T06:37:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0645a6b6-a6f6-47f6-b191-72db9eae3a54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T04:15:36.000Z" - }, - "end": { - "$date": "2021-01-22T04:54:13.000Z" - }, - "events": [ - { - "uuid": "609eb7a5-6163-483c-b657-c755e30b26b2", - "start": { - "$date": "2021-01-22T04:15:36.000Z" - }, - "end": { - "$date": "2021-01-22T04:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6771831a-dadd-45ff-abb9-3d8803086b17", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-22T04:50:57.000Z" - }, - "end": { - "$date": "2021-01-22T07:20:12.000Z" - }, - "events": [ - { - "uuid": "5f01c951-e166-42d0-a988-7698e805e82f", - "start": { - "$date": "2021-01-22T04:50:57.000Z" - }, - "end": { - "$date": "2021-01-22T07:20:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0a3e608-37f8-4111-9534-4c939f5a0fad", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-22T05:11:36.000Z" - }, - "end": { - "$date": "2021-01-22T05:35:17.000Z" - }, - "events": [ - { - "uuid": "c002f31b-4313-4ef5-95e9-42963b8a5307", - "start": { - "$date": "2021-01-22T05:11:36.000Z" - }, - "end": { - "$date": "2021-01-22T05:35:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de7bd201-684e-4230-adfc-10610d405e5a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-22T05:40:52.000Z" - }, - "end": { - "$date": "2021-01-22T06:04:22.000Z" - }, - "events": [ - { - "uuid": "61a063e4-fe74-43e0-9f5a-229c974b5c30", - "start": { - "$date": "2021-01-22T05:40:52.000Z" - }, - "end": { - "$date": "2021-01-22T06:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "696a18b0-0e99-422c-987a-f74414e1bb20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-22T06:01:06.000Z" - }, - "end": { - "$date": "2021-01-22T06:13:52.000Z" - }, - "events": [ - { - "uuid": "79ec55af-5f27-4264-96dd-c84d30d070d2", - "start": { - "$date": "2021-01-22T06:01:06.000Z" - }, - "end": { - "$date": "2021-01-22T06:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1d9a322e-fc6f-417d-aba7-efcc6dbd6255", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T15:46:11.000Z" - }, - "end": { - "$date": "2021-01-22T16:15:02.000Z" - }, - "events": [ - { - "uuid": "e7d90b92-5d44-4bf8-ba33-a5a9a210e4cb", - "start": { - "$date": "2021-01-22T15:46:11.000Z" - }, - "end": { - "$date": "2021-01-22T16:15:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "0d4ea543-d4d1-416c-b864-7d2b3ac615e3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-22T15:54:18.000Z" - }, - "end": { - "$date": "2021-01-22T16:34:58.000Z" - }, - "events": [ - { - "uuid": "9771e272-69f5-487d-b495-206b10c1f63b", - "start": { - "$date": "2021-01-22T15:54:18.000Z" - }, - "end": { - "$date": "2021-01-22T16:34:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0abd18fd-d891-4329-98be-d33b4cb52dbb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-22T15:54:53.000Z" - }, - "end": { - "$date": "2021-01-22T16:42:54.000Z" - }, - "events": [ - { - "uuid": "1edbde3b-7811-4e8f-bd09-80cb9abd7dc3", - "start": { - "$date": "2021-01-22T15:54:53.000Z" - }, - "end": { - "$date": "2021-01-22T16:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "28c3c80d-d682-4f13-a299-8e2a3854d400", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T18:01:24.000Z" - }, - "end": { - "$date": "2021-01-22T18:55:50.000Z" - }, - "events": [ - { - "uuid": "c16f018d-f132-4828-8bff-c76c853d599c", - "start": { - "$date": "2021-01-22T18:01:24.000Z" - }, - "end": { - "$date": "2021-01-22T18:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63fec018-8529-433e-b1bb-bb21433d8b2f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-22T18:29:18.000Z" - }, - "end": { - "$date": "2021-01-22T19:10:25.000Z" - }, - "events": [ - { - "uuid": "5ea97116-2ac0-4128-9d00-ccda8ac0984b", - "start": { - "$date": "2021-01-22T18:29:18.000Z" - }, - "end": { - "$date": "2021-01-22T19:10:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24500900-0cfc-4d74-983c-0457667f7579", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T19:26:33.000Z" - }, - "end": { - "$date": "2021-01-22T20:03:19.000Z" - }, - "events": [ - { - "uuid": "ecd5732c-384e-4622-85f8-08fdcfbefdbd", - "start": { - "$date": "2021-01-22T19:26:33.000Z" - }, - "end": { - "$date": "2021-01-22T20:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaeefb81-0b1e-4e3b-ba59-709843eb744e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T20:04:10.000Z" - }, - "end": { - "$date": "2021-01-22T20:42:35.000Z" - }, - "events": [ - { - "uuid": "d99534d0-f976-4d7c-abc1-05d8f7bd838f", - "start": { - "$date": "2021-01-22T20:04:10.000Z" - }, - "end": { - "$date": "2021-01-22T20:42:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8166778d-f43d-4e0d-855a-bea77010649f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-22T20:26:37.000Z" - }, - "end": { - "$date": "2021-01-22T20:54:34.000Z" - }, - "events": [ - { - "uuid": "e119c515-43ba-499e-a43b-cad14995c85a", - "start": { - "$date": "2021-01-22T20:26:37.000Z" - }, - "end": { - "$date": "2021-01-22T20:54:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "edd6ec96-2573-4137-a747-c0082207ad32", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-22T20:29:46.000Z" - }, - "end": { - "$date": "2021-01-22T22:26:29.000Z" - }, - "events": [ - { - "uuid": "ecfc4df6-5ebe-4689-8929-760f93dbbd81", - "start": { - "$date": "2021-01-22T20:29:46.000Z" - }, - "end": { - "$date": "2021-01-22T22:26:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3452cf3e-d0b1-479d-8ae9-fc847b40844d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-22T20:51:12.000Z" - }, - "end": { - "$date": "2021-01-22T22:09:14.000Z" - }, - "events": [ - { - "uuid": "34c42ba3-3785-4f64-bb2e-cd45d4b3ecbb", - "start": { - "$date": "2021-01-22T20:51:12.000Z" - }, - "end": { - "$date": "2021-01-22T22:09:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b6e86d1c-1987-4302-818b-264e06c8e643", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-22T21:15:03.000Z" - }, - "end": { - "$date": "2021-01-22T23:36:28.000Z" - }, - "events": [ - { - "uuid": "9ec5abc6-57e2-4089-975f-eb23f51031a8", - "start": { - "$date": "2021-01-22T21:15:03.000Z" - }, - "end": { - "$date": "2021-01-22T23:36:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "c8bfdbf7-d08d-4d79-bc23-1dfc06c6c014", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-22T21:58:12.000Z" - }, - "end": { - "$date": "2021-01-22T22:04:07.000Z" - }, - "events": [ - { - "uuid": "9a2e2918-ae94-49e4-bccb-3d748ce802b0", - "start": { - "$date": "2021-01-22T21:58:12.000Z" - }, - "end": { - "$date": "2021-01-22T22:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "c413d00b-1f45-4b9d-9fc7-7fddab056424", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-22T22:00:44.000Z" - }, - "end": { - "$date": "2021-01-22T22:11:32.000Z" - }, - "events": [ - { - "uuid": "96092ba0-fc6c-4e17-9847-cdd16d6521fb", - "start": { - "$date": "2021-01-22T22:00:44.000Z" - }, - "end": { - "$date": "2021-01-22T22:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e53aac53-0433-4576-bbb6-d40abecfd6e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-22T22:04:18.000Z" - }, - "end": { - "$date": "2021-01-22T23:19:29.000Z" - }, - "events": [ - { - "uuid": "c6b0a3db-1d42-4885-8366-88fa34059a05", - "start": { - "$date": "2021-01-22T22:04:18.000Z" - }, - "end": { - "$date": "2021-01-22T23:19:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "423ae3dc-b3d0-4f70-a016-2beac357d1f1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-22T22:06:39.000Z" - }, - "end": { - "$date": "2021-01-22T22:37:51.000Z" - }, - "events": [ - { - "uuid": "e6c5c7ae-cde5-41c4-8fd4-25c6686266f8", - "start": { - "$date": "2021-01-22T22:06:39.000Z" - }, - "end": { - "$date": "2021-01-22T22:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c4edcbcc-be60-4298-89c0-cd38a96f031b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-22T23:00:09.000Z" - }, - "end": { - "$date": "2021-01-22T23:03:10.000Z" - }, - "events": [ - { - "uuid": "b4ec3716-6d86-44ac-94de-bac0dd7bb446", - "start": { - "$date": "2021-01-22T23:00:09.000Z" - }, - "end": { - "$date": "2021-01-22T23:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e4d77441-cf6c-47bd-9962-86993564a477", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-22T23:05:12.000Z" - }, - "end": { - "$date": "2021-01-23T04:48:11.000Z" - }, - "events": [ - { - "uuid": "00dd2262-49ed-42b0-885a-458c4264de04", - "start": { - "$date": "2021-01-22T23:05:12.000Z" - }, - "end": { - "$date": "2021-01-23T04:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "38993ced-7949-47cf-9e18-70abb9a827f5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-22T23:05:49.000Z" - }, - "end": { - "$date": "2021-01-23T04:47:22.000Z" - }, - "events": [ - { - "uuid": "ae2a343d-302b-4261-9d16-1f1a36394db3", - "start": { - "$date": "2021-01-22T23:05:49.000Z" - }, - "end": { - "$date": "2021-01-23T04:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "1de61ca4-331e-4ac2-8785-538d692cb49b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-22T23:20:25.000Z" - }, - "end": { - "$date": "2021-01-23T00:07:31.000Z" - }, - "events": [ - { - "uuid": "17959264-1c20-4daf-90ee-b110e4845cd3", - "start": { - "$date": "2021-01-22T23:20:25.000Z" - }, - "end": { - "$date": "2021-01-23T00:07:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "11e71216-0247-4bcc-ad59-e69486ebac23", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T00:16:44.000Z" - }, - "end": { - "$date": "2021-01-23T01:04:25.000Z" - }, - "events": [ - { - "uuid": "d121af6f-c48d-487e-8709-fbbc3b61eea9", - "start": { - "$date": "2021-01-23T00:16:44.000Z" - }, - "end": { - "$date": "2021-01-23T01:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5d7959c6-c719-472a-9fe7-29fcd641036d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T00:19:57.000Z" - }, - "end": { - "$date": "2021-01-23T01:25:02.000Z" - }, - "events": [ - { - "uuid": "ece911b9-f6f6-4e54-8c99-93a9666e58d6", - "start": { - "$date": "2021-01-23T00:19:57.000Z" - }, - "end": { - "$date": "2021-01-23T01:25:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a2b55283-5ce9-482c-96ec-a1787c88157e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T01:06:16.000Z" - }, - "end": { - "$date": "2021-01-23T01:20:25.000Z" - }, - "events": [ - { - "uuid": "7f5fce6d-004c-4a98-b493-37316fa4fe41", - "start": { - "$date": "2021-01-23T01:06:16.000Z" - }, - "end": { - "$date": "2021-01-23T01:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "66f4ba5d-c7ce-41eb-89aa-0bfbbffe5f67", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T01:26:23.000Z" - }, - "end": { - "$date": "2021-01-23T01:32:38.000Z" - }, - "events": [ - { - "uuid": "1b85f818-475c-4b64-ae99-ab2c81f10bf5", - "start": { - "$date": "2021-01-23T01:26:23.000Z" - }, - "end": { - "$date": "2021-01-23T01:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "8772981e-9699-4af4-aaa5-b354c7698808", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T01:32:59.000Z" - }, - "end": { - "$date": "2021-01-23T02:25:05.000Z" - }, - "events": [ - { - "uuid": "90e99dde-c9ce-41d7-a4a2-a3335d6f846e", - "start": { - "$date": "2021-01-23T01:32:59.000Z" - }, - "end": { - "$date": "2021-01-23T02:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eda5ef16-f0a4-4919-b088-8d775167388a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-23T02:25:17.000Z" - }, - "end": { - "$date": "2021-01-23T03:22:17.000Z" - }, - "events": [ - { - "uuid": "9fe3b2a2-172b-488f-8631-06ae3afa5861", - "start": { - "$date": "2021-01-23T02:25:17.000Z" - }, - "end": { - "$date": "2021-01-23T03:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d3f650da-ac24-44b7-8ef3-e09d421eeabc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T02:29:24.000Z" - }, - "end": { - "$date": "2021-01-23T03:23:09.000Z" - }, - "events": [ - { - "uuid": "1909b368-e8fb-41bc-9166-b0229678d864", - "start": { - "$date": "2021-01-23T02:29:24.000Z" - }, - "end": { - "$date": "2021-01-23T03:23:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c1746b41-edc0-41ee-8a55-125acae148be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-23T02:55:54.000Z" - }, - "end": { - "$date": "2021-01-23T03:28:33.000Z" - }, - "events": [ - { - "uuid": "75708d42-0d34-4b72-8fff-0ec05d7d22aa", - "start": { - "$date": "2021-01-23T02:55:54.000Z" - }, - "end": { - "$date": "2021-01-23T03:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f956bde8-5a38-4599-8a9a-13fc09002a34", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-23T02:59:25.000Z" - }, - "end": { - "$date": "2021-01-23T05:24:08.000Z" - }, - "events": [ - { - "uuid": "5d4e3a83-b6d5-4837-80c4-a4c27391eecd", - "start": { - "$date": "2021-01-23T02:59:25.000Z" - }, - "end": { - "$date": "2021-01-23T05:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04fdc173-27c3-4c4e-b056-e27842e52539", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T03:09:13.000Z" - }, - "end": { - "$date": "2021-01-23T03:16:18.000Z" - }, - "events": [ - { - "uuid": "bae26b39-7645-4059-a94c-fa4c79f5c0a1", - "start": { - "$date": "2021-01-23T03:09:13.000Z" - }, - "end": { - "$date": "2021-01-23T03:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51f27a6e-27eb-4eed-973b-8451dc36e864", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T03:25:59.000Z" - }, - "end": { - "$date": "2021-01-23T03:48:43.000Z" - }, - "events": [ - { - "uuid": "a7efd450-ca8b-4861-91bb-e9c559fe29e3", - "start": { - "$date": "2021-01-23T03:25:59.000Z" - }, - "end": { - "$date": "2021-01-23T03:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5212410a-b419-45f9-b4be-4b0afb84901b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T03:28:46.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:59.000Z" - }, - "events": [ - { - "uuid": "154cf90b-8426-4950-9d79-6deec567a051", - "start": { - "$date": "2021-01-23T03:28:46.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7e6d4645-20cd-4e44-b4d3-b4477762e5d1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-23T03:30:17.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:58.000Z" - }, - "events": [ - { - "uuid": "61525373-6022-4069-b37f-2396b5217a17", - "start": { - "$date": "2021-01-23T03:30:17.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b74d5088-1c11-4d50-bb82-b94228f1e72d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-23T03:35:55.000Z" - }, - "end": { - "$date": "2021-01-23T04:39:07.000Z" - }, - "events": [ - { - "uuid": "281fccfa-5e63-4165-b67d-e13a481751c0", - "start": { - "$date": "2021-01-23T03:35:55.000Z" - }, - "end": { - "$date": "2021-01-23T04:39:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "619f4e23-d327-475e-99d5-ed1e2b2710e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T03:58:22.000Z" - }, - "end": { - "$date": "2021-01-23T04:25:12.000Z" - }, - "events": [ - { - "uuid": "817fc569-3284-4737-96e4-d19797763f73", - "start": { - "$date": "2021-01-23T03:58:22.000Z" - }, - "end": { - "$date": "2021-01-23T04:25:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6e54d328-bb11-4acf-8a08-0091741fad8d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T04:18:27.000Z" - }, - "end": { - "$date": "2021-01-23T05:26:38.000Z" - }, - "events": [ - { - "uuid": "61527357-c353-4e0f-a569-4288588e49c0", - "start": { - "$date": "2021-01-23T04:18:27.000Z" - }, - "end": { - "$date": "2021-01-23T05:26:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c678a03-754e-4439-8bf4-df040633fbf7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T04:33:10.000Z" - }, - "end": { - "$date": "2021-01-23T04:56:31.000Z" - }, - "events": [ - { - "uuid": "d8180660-43fb-42f1-bd5b-0e52f5ec6297", - "start": { - "$date": "2021-01-23T04:33:10.000Z" - }, - "end": { - "$date": "2021-01-23T04:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c35667de-ee86-440e-b2d7-c27a8ebc6b24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T04:33:18.000Z" - }, - "end": { - "$date": "2021-01-23T04:56:33.000Z" - }, - "events": [ - { - "uuid": "a91cc7f1-8f83-4f56-a759-9f74db2c2cc2", - "start": { - "$date": "2021-01-23T04:33:18.000Z" - }, - "end": { - "$date": "2021-01-23T04:56:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "21323192-b279-4f29-ba92-19303cb96f64", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T04:33:31.000Z" - }, - "end": { - "$date": "2021-01-23T04:53:20.000Z" - }, - "events": [ - { - "uuid": "286cf7c9-1fd5-4dfb-af12-155fb84b896f", - "start": { - "$date": "2021-01-23T04:33:31.000Z" - }, - "end": { - "$date": "2021-01-23T04:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40e297a6-de10-4b36-92ca-dbd724953b9a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-23T04:52:26.000Z" - }, - "end": { - "$date": "2021-01-23T06:04:03.000Z" - }, - "events": [ - { - "uuid": "ddd814c9-b446-4c72-a3ba-82261f4d3650", - "start": { - "$date": "2021-01-23T04:52:26.000Z" - }, - "end": { - "$date": "2021-01-23T06:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3c7f4a08-3ae1-4fd3-be02-25aad80e6b25", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T04:52:31.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:56.000Z" - }, - "events": [ - { - "uuid": "6e4b923a-0a1a-4731-bd40-a3ee6d5bc08c", - "start": { - "$date": "2021-01-23T04:52:31.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "424cc349-fe0e-4a34-ab2b-78df55e82864", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T04:53:41.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:57.000Z" - }, - "events": [ - { - "uuid": "49690343-7a12-4283-a2f3-fccb9c69e653", - "start": { - "$date": "2021-01-23T04:53:41.000Z" - }, - "end": { - "$date": "2021-01-23T06:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3521809b-8858-47f6-a222-cb6093f7e759", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T05:32:51.000Z" - }, - "end": { - "$date": "2021-01-23T06:01:01.000Z" - }, - "events": [ - { - "uuid": "6106d6e8-1bbd-4973-bbf7-733d9556516f", - "start": { - "$date": "2021-01-23T05:32:51.000Z" - }, - "end": { - "$date": "2021-01-23T06:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c627048b-852c-4a88-a791-3240df68e657", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T05:32:43.000Z" - }, - "end": { - "$date": "2021-01-23T06:00:54.000Z" - }, - "events": [ - { - "uuid": "8d446c58-4526-4f07-9b5c-1ba5508343fd", - "start": { - "$date": "2021-01-23T05:32:43.000Z" - }, - "end": { - "$date": "2021-01-23T06:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a543373d-9750-4dc2-8c61-d79c1ada8aba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T05:32:57.000Z" - }, - "end": { - "$date": "2021-01-23T06:01:00.000Z" - }, - "events": [ - { - "uuid": "6b6cb4b5-fd00-486f-909e-63863532b03a", - "start": { - "$date": "2021-01-23T05:32:57.000Z" - }, - "end": { - "$date": "2021-01-23T06:01:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "72994372-ec08-4f8c-b72d-a4a262c09215", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T05:34:10.000Z" - }, - "end": { - "$date": "2021-01-23T05:35:39.000Z" - }, - "events": [ - { - "uuid": "78deaffd-3aa8-4367-9158-5406837dd31b", - "start": { - "$date": "2021-01-23T05:34:10.000Z" - }, - "end": { - "$date": "2021-01-23T05:35:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3e26b61b-e10e-464b-bacf-3c904f4d1cf9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T05:36:30.000Z" - }, - "end": { - "$date": "2021-01-23T08:06:50.000Z" - }, - "events": [ - { - "uuid": "da76d1dd-fd16-4b98-8aee-4fb95e2d81ef", - "start": { - "$date": "2021-01-23T05:36:30.000Z" - }, - "end": { - "$date": "2021-01-23T08:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fffaf9a0-5490-4250-8de4-6b9998c1124c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-23T05:38:26.000Z" - }, - "end": { - "$date": "2021-01-23T08:06:51.000Z" - }, - "events": [ - { - "uuid": "d55b2628-529e-4e56-ab6d-3b733f02f209", - "start": { - "$date": "2021-01-23T05:38:26.000Z" - }, - "end": { - "$date": "2021-01-23T08:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfaaf593-dd84-4a95-882b-1a1cb81fe90c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T06:01:46.000Z" - }, - "end": { - "$date": "2021-01-23T06:04:08.000Z" - }, - "events": [ - { - "uuid": "7338d7bf-3b13-4118-910d-dbcb6d7c3cff", - "start": { - "$date": "2021-01-23T06:01:46.000Z" - }, - "end": { - "$date": "2021-01-23T06:04:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e44a8948-7907-45ef-b90c-8067af4f2d61", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T06:02:40.000Z" - }, - "end": { - "$date": "2021-01-23T06:04:09.000Z" - }, - "events": [ - { - "uuid": "37f23755-b5cc-4361-82eb-9ceabd2850dc", - "start": { - "$date": "2021-01-23T06:02:40.000Z" - }, - "end": { - "$date": "2021-01-23T06:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41618e30-bbf1-4d23-a975-13764f6e9e65", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T06:05:23.000Z" - }, - "end": { - "$date": "2021-01-23T06:07:26.000Z" - }, - "events": [ - { - "uuid": "2c75a0c5-e6dc-44bf-8f94-7bb1f9a958d2", - "start": { - "$date": "2021-01-23T06:05:23.000Z" - }, - "end": { - "$date": "2021-01-23T06:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81080ade-e6d0-4a94-80d7-40337d1a24e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T06:12:53.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:57.000Z" - }, - "events": [ - { - "uuid": "2d0804aa-0947-4e45-8696-eaa3fe5e0e3f", - "start": { - "$date": "2021-01-23T06:12:53.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73c9af4c-de75-4951-9470-3f3e82fc4d1e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T06:13:10.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:55.000Z" - }, - "events": [ - { - "uuid": "adaa38c4-fc93-48d1-a7d6-c0edab68c058", - "start": { - "$date": "2021-01-23T06:13:10.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2330852-222a-4063-836e-41505251c1d5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T06:12:39.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:50.000Z" - }, - "events": [ - { - "uuid": "200da7d6-f7ed-4dbe-a0e2-82a3f8510c70", - "start": { - "$date": "2021-01-23T06:12:39.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad4169dd-aef0-40bd-8a3a-6c7f3b4ccb40", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T06:13:08.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:48.000Z" - }, - "events": [ - { - "uuid": "5d15fa9a-5860-4a5c-8653-fbdb4f525747", - "start": { - "$date": "2021-01-23T06:13:08.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09ccb093-da39-491e-a5c0-bc0ea4199baa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T06:12:43.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:49.000Z" - }, - "events": [ - { - "uuid": "39887da4-ea67-4e49-a2c1-e25149e50e40", - "start": { - "$date": "2021-01-23T06:12:43.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18b2ee3c-f46b-4d53-a1c5-fbe9e005a5e5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T06:13:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:52.000Z" - }, - "events": [ - { - "uuid": "c98535d2-f9c1-4f0b-93e6-844a08e8a839", - "start": { - "$date": "2021-01-23T06:13:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3339fb14-5276-4a89-921d-7d5c01cc3ca3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-23T06:12:44.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:54.000Z" - }, - "events": [ - { - "uuid": "cfd47721-65fa-464c-b16e-2b599a177cf7", - "start": { - "$date": "2021-01-23T06:12:44.000Z" - }, - "end": { - "$date": "2021-01-23T06:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ee1dd2f-7be8-4d86-ad4d-30330e8027b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T06:34:14.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:14.000Z" - }, - "events": [ - { - "uuid": "bf644c16-3ae3-412c-a3a5-3c710f0b9c04", - "start": { - "$date": "2021-01-23T06:34:14.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eab7467f-8c3f-462f-9703-379e6a80e992", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T06:34:39.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:13.000Z" - }, - "events": [ - { - "uuid": "0ea37a1b-91fe-4b41-80a4-1f8331e4314d", - "start": { - "$date": "2021-01-23T06:34:39.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "856f8b78-e310-4444-b115-a01dc04055dc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T06:34:01.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:11.000Z" - }, - "events": [ - { - "uuid": "e33e18d0-5d0d-4b26-8257-32c664b918f1", - "start": { - "$date": "2021-01-23T06:34:01.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb972644-c1dc-4aa4-b30e-cdf01e3dc8e6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T06:34:25.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:19.000Z" - }, - "events": [ - { - "uuid": "9d8bb31f-e2cb-460f-89a6-04804bca2bd9", - "start": { - "$date": "2021-01-23T06:34:25.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44d66503-f63c-48e0-bb0b-76cc37c8dcd5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T06:34:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:13.000Z" - }, - "events": [ - { - "uuid": "72986ef7-b711-4386-84e6-e8225f9c1099", - "start": { - "$date": "2021-01-23T06:34:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9941a34d-c835-4b17-8f94-e7d7c9a0ecc5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-23T06:34:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:19.000Z" - }, - "events": [ - { - "uuid": "925e8b63-81b3-490e-b736-960940d93053", - "start": { - "$date": "2021-01-23T06:34:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c29e122f-0206-4837-ae08-c894414f8653", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T06:34:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:15.000Z" - }, - "events": [ - { - "uuid": "eb168544-d9e9-4970-ae0b-ca53c0d44661", - "start": { - "$date": "2021-01-23T06:34:04.000Z" - }, - "end": { - "$date": "2021-01-23T06:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb53f317-c51a-48f9-80fd-0b8dc99000ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T06:57:40.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:41.000Z" - }, - "events": [ - { - "uuid": "aedb52a7-d501-465a-a53d-567a6abc5b17", - "start": { - "$date": "2021-01-23T06:57:40.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b188e089-62d0-4074-ab87-513c00c9907e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T06:57:26.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:37.000Z" - }, - "events": [ - { - "uuid": "d00fbd51-4ac5-4d01-979a-11d0acc50b2f", - "start": { - "$date": "2021-01-23T06:57:26.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b91e641-01b3-4454-8bab-a015e37e0d24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T06:57:54.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:33.000Z" - }, - "events": [ - { - "uuid": "ad56ca48-4a16-424e-9a3e-b042e54244fb", - "start": { - "$date": "2021-01-23T06:57:54.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "600b85bb-ed14-4260-90b5-6f943a9b0b53", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T06:57:30.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:31.000Z" - }, - "events": [ - { - "uuid": "67c03b16-cc58-4275-810b-5b5b010874e3", - "start": { - "$date": "2021-01-23T06:57:30.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "caa915ae-9fc5-4f0d-a2c3-dee0d4562a22", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T06:57:31.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:34.000Z" - }, - "events": [ - { - "uuid": "ea592a19-e74d-4971-aac0-b9eb6fe02975", - "start": { - "$date": "2021-01-23T06:57:31.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a452342-3134-4337-bac6-027ddd253489", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-23T07:13:35.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:40.000Z" - }, - "events": [ - { - "uuid": "8d1855be-e1e6-4561-9b09-ce6b4c538626", - "start": { - "$date": "2021-01-23T07:13:35.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc05f7e3-111e-4eb6-b44a-bb0bbb2909ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T06:57:31.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:36.000Z" - }, - "events": [ - { - "uuid": "76032abd-8570-4b3e-a146-9afa0f4bf8ce", - "start": { - "$date": "2021-01-23T06:57:31.000Z" - }, - "end": { - "$date": "2021-01-23T07:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "026a6ed2-32ef-4f0e-add5-0c47019ae635", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-23T07:30:57.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:44.000Z" - }, - "events": [ - { - "uuid": "823e2344-e2a1-4a41-8d26-d10fd10889c9", - "start": { - "$date": "2021-01-23T07:30:57.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22931992-7e59-4e6b-a14a-6db49d4d053b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T07:30:42.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:33.000Z" - }, - "events": [ - { - "uuid": "2cd2527d-9742-4c40-bcbc-b802205f8ba9", - "start": { - "$date": "2021-01-23T07:30:42.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d95174d1-cdcd-4ee9-9e77-098ce60eb8d2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T07:30:43.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:34.000Z" - }, - "events": [ - { - "uuid": "d144c101-00e3-477b-afeb-5544adc8f43c", - "start": { - "$date": "2021-01-23T07:30:43.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af6d38fe-0fca-4aa8-9141-3b8ce3f006a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T07:30:48.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:39.000Z" - }, - "events": [ - { - "uuid": "209ebc09-f1fb-4fb3-9bf1-297215d5e20f", - "start": { - "$date": "2021-01-23T07:30:48.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd5d4342-f69c-4d7a-97b3-c5946b86b461", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T07:30:47.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:35.000Z" - }, - "events": [ - { - "uuid": "648e1cfc-2d41-4385-b826-7d42e1334cb7", - "start": { - "$date": "2021-01-23T07:30:47.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae8e18e7-2376-4db1-b758-c918ff387af0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-23T07:30:47.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:42.000Z" - }, - "events": [ - { - "uuid": "0ba23129-db5d-4348-a37f-c50c9a2414a5", - "start": { - "$date": "2021-01-23T07:30:47.000Z" - }, - "end": { - "$date": "2021-01-23T08:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4c9a1819-fa3d-442c-8159-bc862180ca4b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-23T08:01:36.000Z" - }, - "end": { - "$date": "2021-01-23T09:14:11.000Z" - }, - "events": [ - { - "uuid": "85e3f673-d7c3-421f-9e64-a1a9c3e8c0f8", - "start": { - "$date": "2021-01-23T08:01:36.000Z" - }, - "end": { - "$date": "2021-01-23T09:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6eb9feec-aeba-4976-81de-6095edaea3d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T08:09:30.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:40.000Z" - }, - "events": [ - { - "uuid": "08a5f836-7fc5-4e62-a03b-7feda7df96b9", - "start": { - "$date": "2021-01-23T08:09:30.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "331b7687-92f3-4129-980f-cb052bdb213e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T08:09:25.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:35.000Z" - }, - "events": [ - { - "uuid": "e6b8677a-7252-4af8-ac37-46ee1b58bd34", - "start": { - "$date": "2021-01-23T08:09:25.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "baa899b2-df3f-4ae9-85e5-6291265378dd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T08:09:54.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:34.000Z" - }, - "events": [ - { - "uuid": "db6a101b-5e75-40a8-bf5d-f031ef892e9b", - "start": { - "$date": "2021-01-23T08:09:54.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "282f5355-0d30-4082-b293-837da90dd22f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T08:09:28.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:36.000Z" - }, - "events": [ - { - "uuid": "cc84adb0-03b4-491f-8349-567c588f008d", - "start": { - "$date": "2021-01-23T08:09:28.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "44d8f1f8-7b92-4ace-b868-1e2791d24a72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-23T08:07:46.000Z" - }, - "end": { - "$date": "2021-01-23T08:15:46.000Z" - }, - "events": [ - { - "uuid": "4457176d-42fa-46a7-8036-0da4ef8f11cb", - "start": { - "$date": "2021-01-23T08:07:46.000Z" - }, - "end": { - "$date": "2021-01-23T08:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ced74da1-859f-465c-8364-a380ac66ddaf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T08:15:36.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:21.000Z" - }, - "events": [ - { - "uuid": "3eb4cf2a-b7f1-4988-b7f0-3232974ac4c2", - "start": { - "$date": "2021-01-23T08:15:36.000Z" - }, - "end": { - "$date": "2021-01-23T08:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "28a0aaf7-092a-49d7-93ff-4b2d4db813a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T08:26:27.000Z" - }, - "end": { - "$date": "2021-01-23T09:11:32.000Z" - }, - "events": [ - { - "uuid": "c0585ed9-073b-4da4-9869-5c6e44db5f2a", - "start": { - "$date": "2021-01-23T08:26:27.000Z" - }, - "end": { - "$date": "2021-01-23T09:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "348410d2-81f7-44c8-b2ae-5704407fb46d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T08:32:01.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:42.000Z" - }, - "events": [ - { - "uuid": "43eb9cce-bcfd-4161-9ddc-d784e6df2ae9", - "start": { - "$date": "2021-01-23T08:32:01.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e8618fa-1c74-474e-ae0c-484a74e922bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T08:32:00.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:41.000Z" - }, - "events": [ - { - "uuid": "34f57359-8c8a-44d3-a64e-1c0bc4501241", - "start": { - "$date": "2021-01-23T08:32:00.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2802caef-5466-4366-86e6-ee143c72c9ff", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-23T08:32:14.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:45.000Z" - }, - "events": [ - { - "uuid": "30607166-f577-41e6-8904-7c6abfea2803", - "start": { - "$date": "2021-01-23T08:32:14.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3ce2324-c0cf-472a-bf31-14b47aa74158", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T08:32:23.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:41.000Z" - }, - "events": [ - { - "uuid": "592c2cb4-e328-41b5-b11e-db3c001f74de", - "start": { - "$date": "2021-01-23T08:32:23.000Z" - }, - "end": { - "$date": "2021-01-23T08:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68e95f59-16d5-4e2c-ace4-31a70fc8e559", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T08:55:13.000Z" - }, - "end": { - "$date": "2021-01-23T09:29:49.000Z" - }, - "events": [ - { - "uuid": "23bdcc94-54f3-44cd-aaf3-3badcddea162", - "start": { - "$date": "2021-01-23T08:55:13.000Z" - }, - "end": { - "$date": "2021-01-23T09:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5bd62e09-16c5-4838-943f-d268235ce67c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-23T17:28:44.000Z" - }, - "end": { - "$date": "2021-01-23T17:29:04.000Z" - }, - "events": [ - { - "uuid": "bc566acd-42bb-400d-bfdc-af39b6c172fa", - "start": { - "$date": "2021-01-23T17:28:44.000Z" - }, - "end": { - "$date": "2021-01-23T17:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "da871b71-6ccc-4065-9804-1a01d4e09163", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T16:18:45.000Z" - }, - "end": { - "$date": "2021-01-23T16:23:45.000Z" - }, - "events": [ - { - "uuid": "e52daa14-ac52-4242-928c-24ed9282ed34", - "start": { - "$date": "2021-01-23T16:18:45.000Z" - }, - "end": { - "$date": "2021-01-23T16:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "307c918a-28e0-40b9-8a24-f15591791c41", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T16:24:11.000Z" - }, - "end": { - "$date": "2021-01-23T16:37:40.000Z" - }, - "events": [ - { - "uuid": "f708c377-316f-4c3d-8654-37e32119688d", - "start": { - "$date": "2021-01-23T16:24:11.000Z" - }, - "end": { - "$date": "2021-01-23T16:37:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e6177709-f7b1-49ed-99d8-b9885cda41e4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T16:26:13.000Z" - }, - "end": { - "$date": "2021-01-23T20:13:09.000Z" - }, - "events": [ - { - "uuid": "c389e8fa-2249-4e81-9746-4007e867fd1b", - "start": { - "$date": "2021-01-23T16:26:13.000Z" - }, - "end": { - "$date": "2021-01-23T20:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9d6608a1-752e-41e6-bfd8-bf0334276754", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T16:37:51.000Z" - }, - "end": { - "$date": "2021-01-23T17:28:37.000Z" - }, - "events": [ - { - "uuid": "544a586e-7817-448e-96a7-26dfe4c939b4", - "start": { - "$date": "2021-01-23T16:37:51.000Z" - }, - "end": { - "$date": "2021-01-23T17:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8b052e35-c8fa-47d1-8311-688148f98108", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T17:07:57.000Z" - }, - "end": { - "$date": "2021-01-23T18:18:09.000Z" - }, - "events": [ - { - "uuid": "5a2c23e7-77db-4a58-946c-7276be6de779", - "start": { - "$date": "2021-01-23T17:07:57.000Z" - }, - "end": { - "$date": "2021-01-23T18:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8df19f0e-a954-44cf-a85e-bc60d1d70871", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T17:29:08.000Z" - }, - "end": { - "$date": "2021-01-23T18:14:28.000Z" - }, - "events": [ - { - "uuid": "b32a18d0-41e2-460b-a9a0-903e53774598", - "start": { - "$date": "2021-01-23T17:29:08.000Z" - }, - "end": { - "$date": "2021-01-23T18:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a492ae8e-f241-4474-8a71-9a1d66653cea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T19:01:10.000Z" - }, - "end": { - "$date": "2021-01-23T19:22:59.000Z" - }, - "events": [ - { - "uuid": "3ba2c6d8-6fc2-44e6-94d6-6ba3db4268dd", - "start": { - "$date": "2021-01-23T19:01:10.000Z" - }, - "end": { - "$date": "2021-01-23T19:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1d0284b1-aac4-4531-9804-467b3ddc7a06", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-23T19:03:30.000Z" - }, - "end": { - "$date": "2021-01-23T19:27:46.000Z" - }, - "events": [ - { - "uuid": "760aec20-9091-42c7-ab15-29da8102a98a", - "start": { - "$date": "2021-01-23T19:03:30.000Z" - }, - "end": { - "$date": "2021-01-23T19:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c4b3c3e-0642-4183-96e9-7385cd83574b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T19:30:00.000Z" - }, - "end": { - "$date": "2021-01-23T20:05:17.000Z" - }, - "events": [ - { - "uuid": "34c81dc7-f27f-469e-9d0b-354dad6ee2aa", - "start": { - "$date": "2021-01-23T19:30:00.000Z" - }, - "end": { - "$date": "2021-01-23T20:05:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "fc7904f3-7acf-473b-96df-1d8539f9a3b3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T19:33:31.000Z" - }, - "end": { - "$date": "2021-01-23T21:59:06.000Z" - }, - "events": [ - { - "uuid": "35a61489-3e0d-4bb7-9510-b31cfe6eeb84", - "start": { - "$date": "2021-01-23T19:33:31.000Z" - }, - "end": { - "$date": "2021-01-23T21:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7484f648-e0f9-44af-b30d-eef18c583ae1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-23T20:14:40.000Z" - }, - "end": { - "$date": "2021-01-23T20:14:47.000Z" - }, - "events": [ - { - "uuid": "24e364f3-c2af-4ea3-867c-ce41b9ea7d80", - "start": { - "$date": "2021-01-23T20:14:40.000Z" - }, - "end": { - "$date": "2021-01-23T20:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2744d4f-db0e-4a47-890f-c2f59aac2f6b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T20:34:43.000Z" - }, - "end": { - "$date": "2021-01-23T20:52:04.000Z" - }, - "events": [ - { - "uuid": "89a88845-6e73-47fb-8cc1-440b4eee130f", - "start": { - "$date": "2021-01-23T20:34:43.000Z" - }, - "end": { - "$date": "2021-01-23T20:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "ce916132-2d05-48e6-b45e-ff49d6dae1a0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-23T20:25:38.000Z" - }, - "end": { - "$date": "2021-01-23T21:52:07.000Z" - }, - "events": [ - { - "uuid": "ec99375d-1758-42b7-b2cb-234f022e1f59", - "start": { - "$date": "2021-01-23T20:25:38.000Z" - }, - "end": { - "$date": "2021-01-23T21:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "731021dc-8f78-4e15-858b-a32df0499365", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-23T20:36:02.000Z" - }, - "end": { - "$date": "2021-01-23T20:52:03.000Z" - }, - "events": [ - { - "uuid": "0dfeb2b6-4f66-4750-a328-d2edbf8e48d8", - "start": { - "$date": "2021-01-23T20:36:02.000Z" - }, - "end": { - "$date": "2021-01-23T20:52:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "16620948-a186-4c28-a69a-f4fc0dfd79c9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-23T20:38:16.000Z" - }, - "end": { - "$date": "2021-01-23T21:41:24.000Z" - }, - "events": [ - { - "uuid": "ef3f3e3f-e28b-47ab-b3a4-d7b1814fedac", - "start": { - "$date": "2021-01-23T20:38:16.000Z" - }, - "end": { - "$date": "2021-01-23T21:41:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bb28850-0150-4ae6-9042-2abf6731bee8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T21:00:15.000Z" - }, - "end": { - "$date": "2021-01-23T21:26:06.000Z" - }, - "events": [ - { - "uuid": "86ceca2a-d893-4317-a9b2-d4349c0d3dbe", - "start": { - "$date": "2021-01-23T21:00:15.000Z" - }, - "end": { - "$date": "2021-01-23T21:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "934aef0f-6288-4510-abca-1327bec45e7a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T21:14:01.000Z" - }, - "end": { - "$date": "2021-01-23T21:26:07.000Z" - }, - "events": [ - { - "uuid": "1f198889-d97c-4022-b7e5-896cd86eb23b", - "start": { - "$date": "2021-01-23T21:14:01.000Z" - }, - "end": { - "$date": "2021-01-23T21:26:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7e5ba099-4019-4312-8f8e-7102d1c9810d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-23T21:15:15.000Z" - }, - "end": { - "$date": "2021-01-23T23:01:11.000Z" - }, - "events": [ - { - "uuid": "07e1f442-e039-4347-940e-e89c295b539c", - "start": { - "$date": "2021-01-23T21:15:15.000Z" - }, - "end": { - "$date": "2021-01-23T23:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b54464e3-0d57-497a-949a-a8d2b0d43079", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T21:42:32.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:08.000Z" - }, - "events": [ - { - "uuid": "5d9880ad-86f7-4df1-9f54-684db116ccae", - "start": { - "$date": "2021-01-23T21:42:32.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8c6b6763-cbf7-4693-86d9-8bd9d42ad8d6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T21:27:37.000Z" - }, - "end": { - "$date": "2021-01-23T21:30:49.000Z" - }, - "events": [ - { - "uuid": "138cbc3a-be60-4658-9ce3-374e0ec9f1d6", - "start": { - "$date": "2021-01-23T21:27:37.000Z" - }, - "end": { - "$date": "2021-01-23T21:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f7c8e4cb-b3d4-435b-bf27-7989eac1683a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T21:31:09.000Z" - }, - "end": { - "$date": "2021-01-23T21:34:37.000Z" - }, - "events": [ - { - "uuid": "42066b22-f9cc-4000-9b18-f9231a210a70", - "start": { - "$date": "2021-01-23T21:31:09.000Z" - }, - "end": { - "$date": "2021-01-23T21:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9f445be8-89f7-4fd4-9559-6e7a52626bb9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T21:43:44.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:05.000Z" - }, - "events": [ - { - "uuid": "3a7c7bb3-bcfb-4e36-aeed-c97cc60bf49a", - "start": { - "$date": "2021-01-23T21:43:44.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "debfe80f-2fd4-4d3d-a7ee-a5c3c2af2cd4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T21:43:10.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:10.000Z" - }, - "events": [ - { - "uuid": "5d3acffe-3edd-40ad-906b-3675292808b2", - "start": { - "$date": "2021-01-23T21:43:10.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "362a04f0-6506-4eec-91fd-ae70f75d663a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T21:50:46.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:06.000Z" - }, - "events": [ - { - "uuid": "e666a686-7465-443f-94d1-164c16dc360f", - "start": { - "$date": "2021-01-23T21:50:46.000Z" - }, - "end": { - "$date": "2021-01-23T22:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "68708d5c-9c3c-4e6a-b229-74ce85e7dd7b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T23:44:00.000Z" - }, - "end": { - "$date": "2021-01-23T23:44:05.000Z" - }, - "events": [ - { - "uuid": "be1ac9b4-4a63-464b-8ce8-e03ce44f5bea", - "start": { - "$date": "2021-01-23T23:44:00.000Z" - }, - "end": { - "$date": "2021-01-23T23:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33f9cd0e-0cf4-420e-adc5-6f0efd73a198", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T22:12:09.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:20.000Z" - }, - "events": [ - { - "uuid": "70aa5994-fbd8-4a78-a863-ade5a4328871", - "start": { - "$date": "2021-01-23T22:12:09.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9c0769c-fdfb-46ca-ba03-5d13282bffbb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T22:14:09.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:19.000Z" - }, - "events": [ - { - "uuid": "8f63b9ad-ff60-4543-810f-f729817b2d0d", - "start": { - "$date": "2021-01-23T22:14:09.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb95b4bd-f756-4039-ad88-9fb631f597c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T22:44:21.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:23.000Z" - }, - "events": [ - { - "uuid": "8689fb16-08f1-414f-8565-c54cd3f7d2b1", - "start": { - "$date": "2021-01-23T22:44:21.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74bc3bf6-7d29-4b82-b451-a580e8d6e736", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T22:12:05.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:21.000Z" - }, - "events": [ - { - "uuid": "3b248d96-2c86-43db-9d93-97f4c0874b18", - "start": { - "$date": "2021-01-23T22:12:05.000Z" - }, - "end": { - "$date": "2021-01-23T22:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3aa0bd3b-99a9-4903-ba5c-bcafaa101abd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-23T22:29:17.000Z" - }, - "end": { - "$date": "2021-01-24T00:03:43.000Z" - }, - "events": [ - { - "uuid": "a21bd11b-d873-4761-8a27-5aadf03b4a76", - "start": { - "$date": "2021-01-23T22:29:17.000Z" - }, - "end": { - "$date": "2021-01-24T00:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6c84a36-f6f6-4f5b-8623-fd876303a8f7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-23T22:47:05.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:06.000Z" - }, - "events": [ - { - "uuid": "8afb5f85-c05b-4e67-a4e8-52f06d8b3558", - "start": { - "$date": "2021-01-23T22:47:05.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11f417fd-0263-476d-9472-a7985c3c6ef5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T22:47:04.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:06.000Z" - }, - "events": [ - { - "uuid": "42767b01-a151-48a2-8928-7e3ea951e3d0", - "start": { - "$date": "2021-01-23T22:47:04.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e6186af-4a60-4434-a888-cc7d7f76527e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-23T22:47:47.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:04.000Z" - }, - "events": [ - { - "uuid": "dd680d82-a0ea-4137-b2cb-5bbbd54dba29", - "start": { - "$date": "2021-01-23T22:47:47.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b5de7da-0d43-4454-a92f-c7cf42ab791d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-23T22:47:16.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:02.000Z" - }, - "events": [ - { - "uuid": "54f9f24c-9c4b-41ac-bb48-1a0636bdd472", - "start": { - "$date": "2021-01-23T22:47:16.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba4bb30c-9c9e-4a94-b61b-618a74d912c1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-23T23:22:07.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:27.000Z" - }, - "events": [ - { - "uuid": "d87bc819-8f37-4ae7-b440-e7da0e94860c", - "start": { - "$date": "2021-01-23T23:22:07.000Z" - }, - "end": { - "$date": "2021-01-23T23:22:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "136f337f-6ee6-489f-9371-259341b89a40", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-23T23:23:16.000Z" - }, - "end": { - "$date": "2021-01-24T00:05:24.000Z" - }, - "events": [ - { - "uuid": "c3d013b8-3495-464b-a813-7a02a9b19625", - "start": { - "$date": "2021-01-23T23:23:16.000Z" - }, - "end": { - "$date": "2021-01-24T00:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "1f6c2447-2455-4115-a734-460180a9f6a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-23T23:44:30.000Z" - }, - "end": { - "$date": "2021-01-24T01:07:14.000Z" - }, - "events": [ - { - "uuid": "fe47aaa2-00ee-4df3-bf9d-0b08d123d539", - "start": { - "$date": "2021-01-23T23:44:30.000Z" - }, - "end": { - "$date": "2021-01-24T01:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "69bd93e6-539f-487f-9bcc-5f0d708962c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T00:33:50.000Z" - }, - "end": { - "$date": "2021-01-24T02:48:45.000Z" - }, - "events": [ - { - "uuid": "38402d39-1e64-43c9-8994-ae56f4d672de", - "start": { - "$date": "2021-01-24T00:33:50.000Z" - }, - "end": { - "$date": "2021-01-24T02:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "cc04c79f-9932-4b73-a2de-b21e6ff65c27", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-24T00:50:04.000Z" - }, - "end": { - "$date": "2021-01-24T02:24:14.000Z" - }, - "events": [ - { - "uuid": "79a13e3d-805f-49bb-bc67-22d68c684edb", - "start": { - "$date": "2021-01-24T00:50:04.000Z" - }, - "end": { - "$date": "2021-01-24T02:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1f3d6984-6a7e-4b61-ba8e-357eefaea40e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-24T01:32:07.000Z" - }, - "end": { - "$date": "2021-01-24T05:19:20.000Z" - }, - "events": [ - { - "uuid": "8d6457fb-03ef-4be3-a90e-07c402c84b5c", - "start": { - "$date": "2021-01-24T01:32:07.000Z" - }, - "end": { - "$date": "2021-01-24T05:19:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5612e0d5-f544-46ea-9349-18cb1ceb8583", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T01:42:52.000Z" - }, - "end": { - "$date": "2021-01-24T03:32:58.000Z" - }, - "events": [ - { - "uuid": "a767679c-8d9e-4be6-8aeb-3cee8e38eddd", - "start": { - "$date": "2021-01-24T01:42:52.000Z" - }, - "end": { - "$date": "2021-01-24T03:32:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "b2effd09-9c69-4248-82a3-a12219abd562", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-24T01:48:03.000Z" - }, - "end": { - "$date": "2021-01-24T03:01:36.000Z" - }, - "events": [ - { - "uuid": "995f6138-4e88-42a3-a6c3-a63fe6852d94", - "start": { - "$date": "2021-01-24T01:48:03.000Z" - }, - "end": { - "$date": "2021-01-24T03:01:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "faf1de32-6349-4b4a-ace6-ba50d4d24ed9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-24T01:59:24.000Z" - }, - "end": { - "$date": "2021-01-24T02:05:50.000Z" - }, - "events": [ - { - "uuid": "112a0ba3-b155-4aa9-852b-a52ac3bd0489", - "start": { - "$date": "2021-01-24T01:59:24.000Z" - }, - "end": { - "$date": "2021-01-24T02:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4c730bb4-a878-4a67-9c0f-6b299818e08f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-24T02:25:23.000Z" - }, - "end": { - "$date": "2021-01-24T06:55:00.000Z" - }, - "events": [ - { - "uuid": "d14a7aae-da83-4687-a758-ea368c7828ac", - "start": { - "$date": "2021-01-24T02:25:23.000Z" - }, - "end": { - "$date": "2021-01-24T06:55:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "70ae0833-4944-429a-964e-518f14156e88", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-24T02:25:52.000Z" - }, - "end": { - "$date": "2021-01-24T06:56:01.000Z" - }, - "events": [ - { - "uuid": "54fd766d-67e8-4908-a166-754419bf8220", - "start": { - "$date": "2021-01-24T02:25:52.000Z" - }, - "end": { - "$date": "2021-01-24T06:56:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "58cb6fb8-5825-4f4c-97e4-4d74f6d9f1ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-24T02:38:28.000Z" - }, - "end": { - "$date": "2021-01-24T04:32:29.000Z" - }, - "events": [ - { - "uuid": "9a9f9e6f-24b8-4663-b1f8-e038c29f2580", - "start": { - "$date": "2021-01-24T02:38:28.000Z" - }, - "end": { - "$date": "2021-01-24T04:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7d72a82f-0173-4498-9d04-f050a4ec7891", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-24T02:58:01.000Z" - }, - "end": { - "$date": "2021-01-24T04:44:56.000Z" - }, - "events": [ - { - "uuid": "acd85dce-8f3e-4899-8159-42c32a9715e0", - "start": { - "$date": "2021-01-24T02:58:01.000Z" - }, - "end": { - "$date": "2021-01-24T04:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f939d01d-df05-427e-8e6a-645092099933", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-24T03:40:34.000Z" - }, - "end": { - "$date": "2021-01-24T04:10:47.000Z" - }, - "events": [ - { - "uuid": "e7ac1fc3-6e32-4091-8bec-0e4a047ea44c", - "start": { - "$date": "2021-01-24T03:40:34.000Z" - }, - "end": { - "$date": "2021-01-24T04:10:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df3a5546-f2cc-4eb1-b3ec-3f909b7d9a32", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T03:35:36.000Z" - }, - "end": { - "$date": "2021-01-24T03:36:47.000Z" - }, - "events": [ - { - "uuid": "0b1558b7-db43-40ed-a2c7-7516abc8ac18", - "start": { - "$date": "2021-01-24T03:35:36.000Z" - }, - "end": { - "$date": "2021-01-24T03:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "845d8605-d197-4259-a8e0-4598fe03b80e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T03:35:32.000Z" - }, - "end": { - "$date": "2021-01-24T04:07:48.000Z" - }, - "events": [ - { - "uuid": "2178a1a7-036e-4550-b955-e2aeffcd8f29", - "start": { - "$date": "2021-01-24T03:35:32.000Z" - }, - "end": { - "$date": "2021-01-24T04:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9aa5bbfa-5bcf-4f00-8d45-f39381e1b0d2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T03:40:34.000Z" - }, - "end": { - "$date": "2021-01-24T04:10:54.000Z" - }, - "events": [ - { - "uuid": "db8e8176-a1c8-47a5-9342-dc16bd82117e", - "start": { - "$date": "2021-01-24T03:40:34.000Z" - }, - "end": { - "$date": "2021-01-24T04:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab93ce03-82a2-4f57-9406-2adef0a70892", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T04:17:48.000Z" - }, - "end": { - "$date": "2021-01-24T04:37:29.000Z" - }, - "events": [ - { - "uuid": "52502f0d-f989-42c5-84bd-bd11af303519", - "start": { - "$date": "2021-01-24T04:17:48.000Z" - }, - "end": { - "$date": "2021-01-24T04:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2baa00d-29c8-4751-95de-d7079fd66b08", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T04:17:11.000Z" - }, - "end": { - "$date": "2021-01-24T04:37:35.000Z" - }, - "events": [ - { - "uuid": "480c1f09-34c6-492a-b8df-d3e933d7ec11", - "start": { - "$date": "2021-01-24T04:17:11.000Z" - }, - "end": { - "$date": "2021-01-24T04:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de65e205-bd45-4125-9c85-0923e13004de", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-24T04:17:12.000Z" - }, - "end": { - "$date": "2021-01-24T04:37:29.000Z" - }, - "events": [ - { - "uuid": "1d93c057-86ac-4f04-a153-fa1ffaa60650", - "start": { - "$date": "2021-01-24T04:17:12.000Z" - }, - "end": { - "$date": "2021-01-24T04:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2358927f-9adf-4db7-a26c-18bb8bee1a53", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T04:37:43.000Z" - }, - "end": { - "$date": "2021-01-24T06:01:33.000Z" - }, - "events": [ - { - "uuid": "8af25fd7-7b51-4968-8815-6433927c4455", - "start": { - "$date": "2021-01-24T04:37:43.000Z" - }, - "end": { - "$date": "2021-01-24T06:01:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c76e09cd-6313-4bd8-b53c-daf196f09f2c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T04:39:19.000Z" - }, - "end": { - "$date": "2021-01-24T04:41:51.000Z" - }, - "events": [ - { - "uuid": "7336229a-4cf1-4e82-9084-b06e660226ea", - "start": { - "$date": "2021-01-24T04:39:19.000Z" - }, - "end": { - "$date": "2021-01-24T04:41:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d638012e-2580-4404-b266-90f0965d7c89", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-24T04:39:18.000Z" - }, - "end": { - "$date": "2021-01-24T04:41:51.000Z" - }, - "events": [ - { - "uuid": "60e9c16f-2f15-479c-ac77-b5d24edfc437", - "start": { - "$date": "2021-01-24T04:39:18.000Z" - }, - "end": { - "$date": "2021-01-24T04:41:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfb41f14-05bb-4c65-a41d-aa43b4c77eac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T04:48:58.000Z" - }, - "end": { - "$date": "2021-01-24T05:25:04.000Z" - }, - "events": [ - { - "uuid": "16d88b6c-f803-41a7-8e45-6356b9dfc06e", - "start": { - "$date": "2021-01-24T04:48:58.000Z" - }, - "end": { - "$date": "2021-01-24T05:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1f243a0d-416a-46ef-8491-8071891d44cf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-24T04:48:07.000Z" - }, - "end": { - "$date": "2021-01-24T06:01:39.000Z" - }, - "events": [ - { - "uuid": "96b227d1-a872-4acc-907b-01de59ce3d65", - "start": { - "$date": "2021-01-24T04:48:07.000Z" - }, - "end": { - "$date": "2021-01-24T06:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f708551-0f35-4ac4-ac36-714c2ff3b42d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-24T04:49:38.000Z" - }, - "end": { - "$date": "2021-01-24T05:24:52.000Z" - }, - "events": [ - { - "uuid": "2e831e41-a1ac-4420-ad64-7f52521c1c01", - "start": { - "$date": "2021-01-24T04:49:38.000Z" - }, - "end": { - "$date": "2021-01-24T05:24:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "eeb82c98-35e8-42c8-ae53-ed1dc3e08a96", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-24T04:57:10.000Z" - }, - "end": { - "$date": "2021-01-24T05:13:25.000Z" - }, - "events": [ - { - "uuid": "f13146bd-3e6a-4279-a5ac-01ef855424e5", - "start": { - "$date": "2021-01-24T04:57:10.000Z" - }, - "end": { - "$date": "2021-01-24T05:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "aeb3163a-5a82-43f1-83f9-076cc6276ed1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-24T04:58:05.000Z" - }, - "end": { - "$date": "2021-01-24T08:29:45.000Z" - }, - "events": [ - { - "uuid": "cf7f9245-329a-457c-87a7-25bcbfd82312", - "start": { - "$date": "2021-01-24T04:58:05.000Z" - }, - "end": { - "$date": "2021-01-24T08:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6638ad24-c474-476f-8e13-1147cf51b96b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-24T06:22:16.000Z" - }, - "end": { - "$date": "2021-01-24T06:33:19.000Z" - }, - "events": [ - { - "uuid": "e7dab926-80d2-46ea-a58b-e6351c1790f8", - "start": { - "$date": "2021-01-24T06:22:16.000Z" - }, - "end": { - "$date": "2021-01-24T06:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "51fec090-c1e4-463d-b4e9-3f6b98854aa6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-24T06:15:47.000Z" - }, - "end": { - "$date": "2021-01-24T08:29:55.000Z" - }, - "events": [ - { - "uuid": "8919528d-5862-4acc-bf9f-5ad8ee253b9f", - "start": { - "$date": "2021-01-24T06:15:47.000Z" - }, - "end": { - "$date": "2021-01-24T08:29:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "51cfbb91-4320-4a68-b6b9-cc90873e83c0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-24T06:29:41.000Z" - }, - "end": { - "$date": "2021-01-24T08:02:35.000Z" - }, - "events": [ - { - "uuid": "e2ce0dd1-050e-4283-b065-43d2f95ada49", - "start": { - "$date": "2021-01-24T06:29:41.000Z" - }, - "end": { - "$date": "2021-01-24T08:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50be1c05-c146-49f6-9583-d0a55813139b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-24T06:49:47.000Z" - }, - "end": { - "$date": "2021-01-24T07:24:35.000Z" - }, - "events": [ - { - "uuid": "4dcb8b19-b03c-4948-b65b-622b00e3876a", - "start": { - "$date": "2021-01-24T06:49:47.000Z" - }, - "end": { - "$date": "2021-01-24T07:24:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdff1624-1c4c-464b-b97d-a578ae9dbdf8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T06:57:39.000Z" - }, - "end": { - "$date": "2021-01-24T07:19:47.000Z" - }, - "events": [ - { - "uuid": "b837462e-8be3-45eb-9670-7743027634ba", - "start": { - "$date": "2021-01-24T06:57:39.000Z" - }, - "end": { - "$date": "2021-01-24T07:19:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "949722d5-8b6a-4bc4-924f-aa804eda346d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-24T07:18:57.000Z" - }, - "end": { - "$date": "2021-01-24T09:53:42.000Z" - }, - "events": [ - { - "uuid": "ea9f37cb-85ec-4734-bf1d-f973cb8ade09", - "start": { - "$date": "2021-01-24T07:18:57.000Z" - }, - "end": { - "$date": "2021-01-24T09:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17cc9ffc-118f-4605-8be1-6eaf4d529343", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T07:26:40.000Z" - }, - "end": { - "$date": "2021-01-24T07:41:21.000Z" - }, - "events": [ - { - "uuid": "c28bbb97-9339-4a86-9625-acb199af66f8", - "start": { - "$date": "2021-01-24T07:26:40.000Z" - }, - "end": { - "$date": "2021-01-24T07:41:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "181f7541-1d76-43ad-9622-68bdf24e1fef", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-24T07:30:32.000Z" - }, - "end": { - "$date": "2021-01-24T07:56:55.000Z" - }, - "events": [ - { - "uuid": "f8b7010c-d203-41ce-ad0b-678501f1a435", - "start": { - "$date": "2021-01-24T07:30:32.000Z" - }, - "end": { - "$date": "2021-01-24T07:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf44aae7-4c25-4a5b-8d65-4589b6bf3b52", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T07:45:30.000Z" - }, - "end": { - "$date": "2021-01-24T08:30:16.000Z" - }, - "events": [ - { - "uuid": "2ba136e9-60d4-4bd0-9023-c81c8d2be9e1", - "start": { - "$date": "2021-01-24T07:45:30.000Z" - }, - "end": { - "$date": "2021-01-24T08:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99db0514-53b0-40ca-89ee-2120580bd0b2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-24T08:04:13.000Z" - }, - "end": { - "$date": "2021-01-24T08:31:35.000Z" - }, - "events": [ - { - "uuid": "d33ae378-0626-4fdf-9c4d-a1dd152871a6", - "start": { - "$date": "2021-01-24T08:04:13.000Z" - }, - "end": { - "$date": "2021-01-24T08:31:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "76625396-0ee4-4bce-abb4-cc9e0dfc4faa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-24T15:26:02.000Z" - }, - "end": { - "$date": "2021-01-24T17:37:05.000Z" - }, - "events": [ - { - "uuid": "fb7b2bb2-c087-40e2-91fb-d681cc1e2d11", - "start": { - "$date": "2021-01-24T15:26:02.000Z" - }, - "end": { - "$date": "2021-01-24T17:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "18750da3-65e6-485d-9c4c-3f60ecc73f36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T17:20:29.000Z" - }, - "end": { - "$date": "2021-01-24T18:35:33.000Z" - }, - "events": [ - { - "uuid": "8b834b3c-f003-4924-9801-2dbfb2401b73", - "start": { - "$date": "2021-01-24T17:20:29.000Z" - }, - "end": { - "$date": "2021-01-24T18:35:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7a5c5492-cdd3-4e8f-9bed-d09b1227d27a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-24T17:37:22.000Z" - }, - "end": { - "$date": "2021-01-24T18:28:50.000Z" - }, - "events": [ - { - "uuid": "511ec869-6c6d-41b3-88fe-4eb396358b5e", - "start": { - "$date": "2021-01-24T17:37:22.000Z" - }, - "end": { - "$date": "2021-01-24T18:06:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e589eab5-4e0a-4734-8bb0-387f84f3e125", - "start": { - "$date": "2021-01-24T18:06:22.000Z" - }, - "end": { - "$date": "2021-01-24T18:28:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9aa84f2-d84a-4c5b-b1bf-abc60f0043be", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T18:28:50.000Z" - }, - "end": { - "$date": "2021-01-24T18:57:16.000Z" - }, - "events": [ - { - "uuid": "aaffaafa-f67e-48df-96e0-6d7df9783050", - "start": { - "$date": "2021-01-24T18:28:50.000Z" - }, - "end": { - "$date": "2021-01-24T18:44:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb6492db-b01c-429c-82f5-c840862398d6", - "start": { - "$date": "2021-01-24T18:44:50.000Z" - }, - "end": { - "$date": "2021-01-24T18:45:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52e62416-f528-45ed-8376-3e9339986663", - "start": { - "$date": "2021-01-24T18:45:50.000Z" - }, - "end": { - "$date": "2021-01-24T18:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4aa638d9-4ef5-4563-8769-214701299833", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-24T17:53:27.000Z" - }, - "end": { - "$date": "2021-01-24T18:27:46.000Z" - }, - "events": [ - { - "uuid": "788aa5d7-1d65-4073-a757-e1ef5d0ff394", - "start": { - "$date": "2021-01-24T17:53:27.000Z" - }, - "end": { - "$date": "2021-01-24T18:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e2ff9cd-58dc-4ea8-be7f-af928fdd7496", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T19:06:44.000Z" - }, - "end": { - "$date": "2021-01-24T19:33:52.000Z" - }, - "events": [ - { - "uuid": "03cb3c5c-804b-488f-a2fb-9c326a068d19", - "start": { - "$date": "2021-01-24T19:06:44.000Z" - }, - "end": { - "$date": "2021-01-24T19:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f913387-a597-4e67-a85b-fac6d6ff8ef5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T19:06:40.000Z" - }, - "end": { - "$date": "2021-01-24T19:33:35.000Z" - }, - "events": [ - { - "uuid": "8d2b9e6b-356e-4bf6-857f-58d8622da738", - "start": { - "$date": "2021-01-24T19:06:40.000Z" - }, - "end": { - "$date": "2021-01-24T19:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71b0ee61-dca3-49b6-a45f-7c62bfdc12dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T19:36:11.000Z" - }, - "end": { - "$date": "2021-01-24T19:44:32.000Z" - }, - "events": [ - { - "uuid": "0e1aae09-1f12-46ae-8b56-1ce6cfa44dc1", - "start": { - "$date": "2021-01-24T19:36:11.000Z" - }, - "end": { - "$date": "2021-01-24T19:44:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dd6037cd-38fc-4f90-af7a-7a07e0c3eb3d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T19:44:36.000Z" - }, - "end": { - "$date": "2021-01-24T21:34:26.000Z" - }, - "events": [ - { - "uuid": "4dadc769-7d40-4478-9212-59d9648ebfd4", - "start": { - "$date": "2021-01-24T19:44:36.000Z" - }, - "end": { - "$date": "2021-01-24T21:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8f58a803-445f-4b8e-b7dd-473adcee1a63", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-24T21:22:59.000Z" - }, - "end": { - "$date": "2021-01-24T21:54:07.000Z" - }, - "events": [ - { - "uuid": "2b8c2d33-b5d8-4451-bdf2-58891cbf5e77", - "start": { - "$date": "2021-01-24T21:22:59.000Z" - }, - "end": { - "$date": "2021-01-24T21:54:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6942955f-4afd-44ef-9baa-11f90f4aa15b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T21:41:37.000Z" - }, - "end": { - "$date": "2021-01-24T21:57:17.000Z" - }, - "events": [ - { - "uuid": "e7d3cb52-314a-4a94-b4d7-b20332a91b8e", - "start": { - "$date": "2021-01-24T21:41:37.000Z" - }, - "end": { - "$date": "2021-01-24T21:57:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b55cade-b0f7-4ea0-922a-51da936a60b7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-24T21:41:36.000Z" - }, - "end": { - "$date": "2021-01-24T21:57:20.000Z" - }, - "events": [ - { - "uuid": "36afc239-9639-4767-b656-ac4651fcd0b0", - "start": { - "$date": "2021-01-24T21:41:36.000Z" - }, - "end": { - "$date": "2021-01-24T21:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7861e61-ffb3-460e-b1fa-e63d30f33126", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T22:01:33.000Z" - }, - "end": { - "$date": "2021-01-24T22:26:03.000Z" - }, - "events": [ - { - "uuid": "13da1361-5c11-407b-9cc5-21557ad67feb", - "start": { - "$date": "2021-01-24T22:01:33.000Z" - }, - "end": { - "$date": "2021-01-24T22:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6e4576f-37fb-486f-a7da-2b44089e8eab", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-24T22:01:27.000Z" - }, - "end": { - "$date": "2021-01-24T22:02:43.000Z" - }, - "events": [ - { - "uuid": "a39873d6-59ed-477d-88eb-18f44f490ff6", - "start": { - "$date": "2021-01-24T22:01:27.000Z" - }, - "end": { - "$date": "2021-01-24T22:02:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8833fe5c-449e-4ed4-bda5-724bc876c473", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-24T22:02:07.000Z" - }, - "end": { - "$date": "2021-01-24T22:26:02.000Z" - }, - "events": [ - { - "uuid": "52f5fd59-c115-43d1-8957-37ddfd4d0c13", - "start": { - "$date": "2021-01-24T22:02:07.000Z" - }, - "end": { - "$date": "2021-01-24T22:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5c48eca3-ee91-4584-a674-2b31451f2e27", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-24T21:58:53.000Z" - }, - "end": { - "$date": "2021-01-24T23:16:29.000Z" - }, - "events": [ - { - "uuid": "b1eb53e9-2379-4adc-91c8-3a798782d36f", - "start": { - "$date": "2021-01-24T21:58:53.000Z" - }, - "end": { - "$date": "2021-01-24T23:16:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "66b34bb5-a89a-4e8f-8424-3308e91116d2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-24T21:59:52.000Z" - }, - "end": { - "$date": "2021-01-24T22:56:29.000Z" - }, - "events": [ - { - "uuid": "6b5dcfd4-4903-4e3a-b1f2-348955bcf070", - "start": { - "$date": "2021-01-24T21:59:52.000Z" - }, - "end": { - "$date": "2021-01-24T22:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "886d42ab-eea3-49e5-aace-cb8b2cd7c940", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-24T22:29:54.000Z" - }, - "end": { - "$date": "2021-01-24T23:20:48.000Z" - }, - "events": [ - { - "uuid": "3cfb612e-dacc-4f64-93cd-694971a91f1b", - "start": { - "$date": "2021-01-24T22:29:54.000Z" - }, - "end": { - "$date": "2021-01-24T23:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6f44bc61-261c-4150-ad85-692b18265b23", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-25T00:18:09.000Z" - }, - "end": { - "$date": "2021-01-25T01:29:03.000Z" - }, - "events": [ - { - "uuid": "5aacafc2-0643-49e5-8987-9b70300dead5", - "start": { - "$date": "2021-01-25T00:18:09.000Z" - }, - "end": { - "$date": "2021-01-25T01:29:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15910aa2-f231-4516-b581-e6c1a60b850f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-25T00:56:10.000Z" - }, - "end": { - "$date": "2021-01-25T00:57:07.000Z" - }, - "events": [ - { - "uuid": "0283f795-5046-4327-9078-a31eefac3f1d", - "start": { - "$date": "2021-01-25T00:56:10.000Z" - }, - "end": { - "$date": "2021-01-25T00:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1630f47f-af50-4bc2-bfb3-cd2c898dfec3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-25T00:56:10.000Z" - }, - "end": { - "$date": "2021-01-25T00:56:10.000Z" - }, - "events": [ - { - "uuid": "717c53d9-8051-4ef9-938a-54980dd856bb", - "start": { - "$date": "2021-01-25T00:56:10.000Z" - }, - "end": { - "$date": "2021-01-25T00:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "39c0ce51-4524-42a5-b07e-d85ac29bc1ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-25T01:14:54.000Z" - }, - "end": { - "$date": "2021-01-25T02:46:47.000Z" - }, - "events": [ - { - "uuid": "64dcb418-1dcc-4d6c-b932-26223b26efd8", - "start": { - "$date": "2021-01-25T01:14:54.000Z" - }, - "end": { - "$date": "2021-01-25T02:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ea08d30-5a94-4fd7-93a3-172e5caf690f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-25T02:19:04.000Z" - }, - "end": { - "$date": "2021-01-25T02:19:09.000Z" - }, - "events": [ - { - "uuid": "fdfeae05-9fb4-4d3e-8391-f374afcfc868", - "start": { - "$date": "2021-01-25T02:19:04.000Z" - }, - "end": { - "$date": "2021-01-25T02:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9abfbe6e-de42-4842-b071-21bbc00c4435", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-25T01:26:56.000Z" - }, - "end": { - "$date": "2021-01-25T01:39:22.000Z" - }, - "events": [ - { - "uuid": "ed252375-6bbe-4f8e-90d0-1c52a8942770", - "start": { - "$date": "2021-01-25T01:26:56.000Z" - }, - "end": { - "$date": "2021-01-25T01:39:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a05f4964-d7e8-422d-a0a9-f71f4c29d83d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-25T01:26:56.000Z" - }, - "end": { - "$date": "2021-01-25T01:39:22.000Z" - }, - "events": [ - { - "uuid": "733a682f-cf3c-43f9-8304-c3057aa0eac8", - "start": { - "$date": "2021-01-25T01:26:56.000Z" - }, - "end": { - "$date": "2021-01-25T01:39:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "166019f3-8f57-4963-8f26-0a8bea2afa30", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-25T01:40:16.000Z" - }, - "end": { - "$date": "2021-01-25T01:57:34.000Z" - }, - "events": [ - { - "uuid": "478768ba-b3f3-40a0-b1ed-c46db2a9a03f", - "start": { - "$date": "2021-01-25T01:40:16.000Z" - }, - "end": { - "$date": "2021-01-25T01:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6b306385-bc3c-4735-ad57-a6eb0086a39f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-25T02:05:52.000Z" - }, - "end": { - "$date": "2021-01-25T02:30:09.000Z" - }, - "events": [ - { - "uuid": "33a09cc2-2e9b-4123-a9c3-ea0f126bbb38", - "start": { - "$date": "2021-01-25T02:05:52.000Z" - }, - "end": { - "$date": "2021-01-25T02:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad4dca57-d38f-435e-b258-b7a44d6cb76c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-25T02:13:58.000Z" - }, - "end": { - "$date": "2021-01-25T02:53:41.000Z" - }, - "events": [ - { - "uuid": "cbe1a419-54b7-4378-8e5c-5b6d0a08e466", - "start": { - "$date": "2021-01-25T02:13:58.000Z" - }, - "end": { - "$date": "2021-01-25T02:53:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abb6f264-89f2-48e4-86cc-e411427a204a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-25T02:36:26.000Z" - }, - "end": { - "$date": "2021-01-25T03:10:42.000Z" - }, - "events": [ - { - "uuid": "dcb6784b-e82e-4aee-9546-31711f86a107", - "start": { - "$date": "2021-01-25T02:36:26.000Z" - }, - "end": { - "$date": "2021-01-25T03:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e24cfdf2-15dd-4d21-a2c1-424d771e9264", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-25T02:31:00.000Z" - }, - "end": { - "$date": "2021-01-25T03:15:48.000Z" - }, - "events": [ - { - "uuid": "905dd198-3bc2-4ec3-9e30-fe5fa5b7ac66", - "start": { - "$date": "2021-01-25T02:31:00.000Z" - }, - "end": { - "$date": "2021-01-25T03:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f47a7a34-6cc9-4846-8d16-8e6f81d9685c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T02:46:08.000Z" - }, - "end": { - "$date": "2021-01-25T03:13:38.000Z" - }, - "events": [ - { - "uuid": "4279b77f-9e03-4ac2-9fac-59812b018484", - "start": { - "$date": "2021-01-25T02:46:08.000Z" - }, - "end": { - "$date": "2021-01-25T03:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9bcffcd4-add9-4351-952b-eb2708b75991", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-25T02:50:15.000Z" - }, - "end": { - "$date": "2021-01-25T03:15:19.000Z" - }, - "events": [ - { - "uuid": "a9186ac2-491f-4446-9054-52aee1d18e61", - "start": { - "$date": "2021-01-25T02:50:15.000Z" - }, - "end": { - "$date": "2021-01-25T03:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a52b5ca4-c666-43ec-8734-1203b6d98ad2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-25T02:58:48.000Z" - }, - "end": { - "$date": "2021-01-25T04:05:45.000Z" - }, - "events": [ - { - "uuid": "40574ac1-17b9-4b5a-8fee-f40af25e5193", - "start": { - "$date": "2021-01-25T02:58:48.000Z" - }, - "end": { - "$date": "2021-01-25T04:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d18beada-8c0a-40bf-8b8e-570339304fc6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-25T03:04:24.000Z" - }, - "end": { - "$date": "2021-01-25T05:57:38.000Z" - }, - "events": [ - { - "uuid": "9546bfb8-05f2-46e4-8515-8d9725fd6aa2", - "start": { - "$date": "2021-01-25T03:04:24.000Z" - }, - "end": { - "$date": "2021-01-25T04:19:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b6b8470-0873-4f4c-9da3-275180a974a3", - "start": { - "$date": "2021-01-25T04:19:24.000Z" - }, - "end": { - "$date": "2021-01-25T04:22:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9343a04e-3be1-4aa8-ad86-4c75889a532a", - "start": { - "$date": "2021-01-25T04:22:24.000Z" - }, - "end": { - "$date": "2021-01-25T05:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e70df5e-a981-447f-92a4-dcd91376e3bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-25T03:24:39.000Z" - }, - "end": { - "$date": "2021-01-25T04:02:56.000Z" - }, - "events": [ - { - "uuid": "4f87996f-5047-4535-8975-a9977f8f8559", - "start": { - "$date": "2021-01-25T03:24:39.000Z" - }, - "end": { - "$date": "2021-01-25T04:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29e4b37f-ef6c-4667-9265-5fc04d2d6619", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T03:29:05.000Z" - }, - "end": { - "$date": "2021-01-25T04:05:45.000Z" - }, - "events": [ - { - "uuid": "11bb8181-0047-4773-a57f-f0c4b8eec72f", - "start": { - "$date": "2021-01-25T03:29:05.000Z" - }, - "end": { - "$date": "2021-01-25T04:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2321163-a9e6-466f-9c8b-9dace7d4e7b0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-25T03:16:40.000Z" - }, - "end": { - "$date": "2021-01-25T05:21:05.000Z" - }, - "events": [ - { - "uuid": "77a71c50-d218-49e5-b2a8-a849bd740e43", - "start": { - "$date": "2021-01-25T03:16:40.000Z" - }, - "end": { - "$date": "2021-01-25T05:21:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "fba058f8-5a3b-48d9-b77c-f380499871a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-25T04:06:18.000Z" - }, - "end": { - "$date": "2021-01-25T06:24:31.000Z" - }, - "events": [ - { - "uuid": "1c5bcee0-844d-406b-aeb0-c51e7bf0de5a", - "start": { - "$date": "2021-01-25T04:06:18.000Z" - }, - "end": { - "$date": "2021-01-25T06:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "8c4eadb1-b6bc-4b8e-a7b3-0e3d76be44d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-25T04:08:24.000Z" - }, - "end": { - "$date": "2021-01-25T06:56:59.000Z" - }, - "events": [ - { - "uuid": "d528c162-bbf8-4d3a-98f3-b5712d1e451c", - "start": { - "$date": "2021-01-25T04:08:24.000Z" - }, - "end": { - "$date": "2021-01-25T06:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b14adcb1-6c6f-44b2-92c5-363b4af12c9c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T04:16:16.000Z" - }, - "end": { - "$date": "2021-01-25T04:46:31.000Z" - }, - "events": [ - { - "uuid": "0931a324-7d65-45fe-b9f9-6b313a96313c", - "start": { - "$date": "2021-01-25T04:16:16.000Z" - }, - "end": { - "$date": "2021-01-25T04:46:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d37b2f07-0dbe-4255-87b4-bf65c2eebc39", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T04:51:47.000Z" - }, - "end": { - "$date": "2021-01-25T05:38:46.000Z" - }, - "events": [ - { - "uuid": "16653d2d-c1e8-4f7e-9dd2-cb3354822ace", - "start": { - "$date": "2021-01-25T04:51:47.000Z" - }, - "end": { - "$date": "2021-01-25T05:38:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9366264-2e65-4d62-a365-c49fc77f471c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T05:45:38.000Z" - }, - "end": { - "$date": "2021-01-25T06:12:28.000Z" - }, - "events": [ - { - "uuid": "3e5a9219-ea1d-4b69-b501-1e777446defa", - "start": { - "$date": "2021-01-25T05:45:38.000Z" - }, - "end": { - "$date": "2021-01-25T06:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7948c6f9-4a26-4eaa-ae93-b9ebf5a89ae0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-25T05:53:35.000Z" - }, - "end": { - "$date": "2021-01-25T07:04:19.000Z" - }, - "events": [ - { - "uuid": "9bd69f24-8045-4d02-8531-fd6ede6f02d5", - "start": { - "$date": "2021-01-25T05:53:35.000Z" - }, - "end": { - "$date": "2021-01-25T07:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "69917de5-7063-4f59-a33b-f9f200421e5d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-25T05:58:25.000Z" - }, - "end": { - "$date": "2021-01-25T05:59:54.000Z" - }, - "events": [ - { - "uuid": "8a376bdb-824a-4a41-b0f0-b94d8b03bbda", - "start": { - "$date": "2021-01-25T05:58:25.000Z" - }, - "end": { - "$date": "2021-01-25T05:59:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "39a30695-cfb6-4103-85e9-55e1a94ef59d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-25T06:02:11.000Z" - }, - "end": { - "$date": "2021-01-25T06:19:22.000Z" - }, - "events": [ - { - "uuid": "5c36bfd6-4861-405d-9e8a-9cc21b322614", - "start": { - "$date": "2021-01-25T06:02:11.000Z" - }, - "end": { - "$date": "2021-01-25T06:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3afdd3dd-0592-4395-bd2c-2686e7a76090", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T06:16:58.000Z" - }, - "end": { - "$date": "2021-01-25T06:17:25.000Z" - }, - "events": [ - { - "uuid": "ada2331b-d92b-4229-8ac1-287d63fd84bb", - "start": { - "$date": "2021-01-25T06:16:58.000Z" - }, - "end": { - "$date": "2021-01-25T06:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e83f74d7-4c9f-4d47-9d40-b5c964598b57", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-25T06:53:05.000Z" - }, - "end": { - "$date": "2021-01-25T06:59:04.000Z" - }, - "events": [ - { - "uuid": "98d6cdbf-d38b-45d7-8494-09bcc8118ee7", - "start": { - "$date": "2021-01-25T06:53:05.000Z" - }, - "end": { - "$date": "2021-01-25T06:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "6d667624-47ee-443f-9028-97cee3a67073", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-25T06:20:47.000Z" - }, - "end": { - "$date": "2021-01-25T07:03:57.000Z" - }, - "events": [ - { - "uuid": "87d53c19-59a8-46a1-a571-0e421ef7d71b", - "start": { - "$date": "2021-01-25T06:20:47.000Z" - }, - "end": { - "$date": "2021-01-25T07:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0eeab688-2f11-404c-9f17-aca234225f64", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-25T16:41:11.000Z" - }, - "end": { - "$date": "2021-01-25T16:45:12.000Z" - }, - "events": [ - { - "uuid": "c701eef9-369b-4dce-a1e3-8fe25482f9c0", - "start": { - "$date": "2021-01-25T16:41:11.000Z" - }, - "end": { - "$date": "2021-01-25T16:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "06c2ac08-b4bf-4074-9833-59824799a050", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-25T17:48:44.000Z" - }, - "end": { - "$date": "2021-01-25T18:30:15.000Z" - }, - "events": [ - { - "uuid": "9b293383-338d-4188-a942-78d8622ce1f4", - "start": { - "$date": "2021-01-25T17:48:44.000Z" - }, - "end": { - "$date": "2021-01-25T18:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b9551630-ad37-4756-91d9-c81a4a61cc97", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-25T19:41:13.000Z" - }, - "end": { - "$date": "2021-01-25T22:17:30.000Z" - }, - "events": [ - { - "uuid": "34a00944-a974-4c77-8cc8-4f4aaf227714", - "start": { - "$date": "2021-01-25T19:41:13.000Z" - }, - "end": { - "$date": "2021-01-25T22:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "650d9923-8fb1-4824-aa02-9f12e486be81", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-25T20:07:11.000Z" - }, - "end": { - "$date": "2021-01-25T21:10:21.000Z" - }, - "events": [ - { - "uuid": "2a3a8a25-0cf0-4729-8b38-ae32f291266c", - "start": { - "$date": "2021-01-25T20:07:11.000Z" - }, - "end": { - "$date": "2021-01-25T21:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "f84d585a-cb35-4c3e-b09e-a6172085f0d5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-25T22:06:38.000Z" - }, - "end": { - "$date": "2021-01-25T23:47:44.000Z" - }, - "events": [ - { - "uuid": "3d79fb68-abe2-465e-8ebb-a876a20ddfb1", - "start": { - "$date": "2021-01-25T22:06:38.000Z" - }, - "end": { - "$date": "2021-01-25T23:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "754ba62a-a8a5-4f1f-88e4-49fd7e2efac3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-25T22:08:53.000Z" - }, - "end": { - "$date": "2021-01-26T01:23:44.000Z" - }, - "events": [ - { - "uuid": "b0fab246-8e7f-48a1-b627-52862600bf8c", - "start": { - "$date": "2021-01-25T22:08:53.000Z" - }, - "end": { - "$date": "2021-01-26T01:23:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "6f576a08-bf73-411a-94f1-ce292a9e2eb6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-25T22:20:58.000Z" - }, - "end": { - "$date": "2021-01-26T03:32:01.000Z" - }, - "events": [ - { - "uuid": "fc67990e-02bf-49b3-b42d-5e69b6b1231b", - "start": { - "$date": "2021-01-25T22:20:58.000Z" - }, - "end": { - "$date": "2021-01-26T00:23:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "445bdcdc-2b37-4138-b642-2482ac0d1ab4", - "start": { - "$date": "2021-01-26T00:23:58.000Z" - }, - "end": { - "$date": "2021-01-26T00:48:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92e280e3-6b54-4bf6-a3ee-dd124d1dd87a", - "start": { - "$date": "2021-01-26T00:48:58.000Z" - }, - "end": { - "$date": "2021-01-26T00:50:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0de25214-4a51-4b2c-9bc0-cd060d23379a", - "start": { - "$date": "2021-01-26T00:50:58.000Z" - }, - "end": { - "$date": "2021-01-26T00:58:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "05b2e2cd-296f-49eb-9928-b3a6e4993529", - "start": { - "$date": "2021-01-26T00:58:58.000Z" - }, - "end": { - "$date": "2021-01-26T03:32:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cd16e33b-4d33-45f3-a5bc-6be63cc0d1fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-26T00:05:18.000Z" - }, - "end": { - "$date": "2021-01-26T01:58:58.000Z" - }, - "events": [ - { - "uuid": "2271ec85-021c-4cc9-856f-9aa17a2d072e", - "start": { - "$date": "2021-01-26T00:05:18.000Z" - }, - "end": { - "$date": "2021-01-26T01:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "9de47623-4d81-4138-bc8a-181ac1fe6660", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-26T00:59:22.000Z" - }, - "end": { - "$date": "2021-01-26T01:16:00.000Z" - }, - "events": [ - { - "uuid": "f72329ed-a4ca-44e2-baa6-39b4829752c0", - "start": { - "$date": "2021-01-26T00:59:22.000Z" - }, - "end": { - "$date": "2021-01-26T01:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "08045eb4-8b3e-48f6-94f4-9661ce01a6ea", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-26T01:16:26.000Z" - }, - "end": { - "$date": "2021-01-26T03:51:30.000Z" - }, - "events": [ - { - "uuid": "094ca9b8-1cd8-43da-b236-d8e440f3c166", - "start": { - "$date": "2021-01-26T01:16:26.000Z" - }, - "end": { - "$date": "2021-01-26T03:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8de50aa9-f1ad-4eba-8fb7-d9c4154c08de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-26T01:33:55.000Z" - }, - "end": { - "$date": "2021-01-26T03:08:21.000Z" - }, - "events": [ - { - "uuid": "25ef7d89-56e9-4375-b86e-e185145ba324", - "start": { - "$date": "2021-01-26T01:33:55.000Z" - }, - "end": { - "$date": "2021-01-26T03:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ba076bb4-7e0a-4fc3-8799-2d4cb1609b33", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-26T01:57:42.000Z" - }, - "end": { - "$date": "2021-01-26T02:33:34.000Z" - }, - "events": [ - { - "uuid": "d08af496-d376-4fda-8747-c5460c34f899", - "start": { - "$date": "2021-01-26T01:57:42.000Z" - }, - "end": { - "$date": "2021-01-26T02:33:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "814fabba-7228-4970-b6ae-3255f3b0f2c8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-26T02:41:13.000Z" - }, - "end": { - "$date": "2021-01-26T03:05:18.000Z" - }, - "events": [ - { - "uuid": "18f4c63e-12bb-4a1f-9fb4-36c128c46e40", - "start": { - "$date": "2021-01-26T02:41:13.000Z" - }, - "end": { - "$date": "2021-01-26T03:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ac80cbe2-a223-4a6f-a23f-37bd229c9330", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-26T02:40:45.000Z" - }, - "end": { - "$date": "2021-01-26T03:15:32.000Z" - }, - "events": [ - { - "uuid": "35c7a3c0-4309-44c2-8384-9a59eea296da", - "start": { - "$date": "2021-01-26T02:40:45.000Z" - }, - "end": { - "$date": "2021-01-26T03:15:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b63dc307-ec3c-47f0-a07a-62f2ec961cd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-26T03:08:25.000Z" - }, - "end": { - "$date": "2021-01-26T03:25:28.000Z" - }, - "events": [ - { - "uuid": "e701ecbd-9fa1-41a8-8eb5-563ba5bc2f0a", - "start": { - "$date": "2021-01-26T03:08:25.000Z" - }, - "end": { - "$date": "2021-01-26T03:12:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "097adb18-dd82-47e3-837d-641dedf884fd", - "start": { - "$date": "2021-01-26T03:12:25.000Z" - }, - "end": { - "$date": "2021-01-26T03:15:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1bd2c743-e41d-4b89-84c5-83d79d0a4183", - "start": { - "$date": "2021-01-26T03:15:25.000Z" - }, - "end": { - "$date": "2021-01-26T03:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "a2081450-5d46-410d-aefb-37c82253adbc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-26T03:15:47.000Z" - }, - "end": { - "$date": "2021-01-26T05:01:51.000Z" - }, - "events": [ - { - "uuid": "d11cf2bf-bd9b-4e39-834a-96e07b4e08e5", - "start": { - "$date": "2021-01-26T03:15:47.000Z" - }, - "end": { - "$date": "2021-01-26T04:34:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5538f78c-ddbf-4258-a7e0-63abc3040803", - "start": { - "$date": "2021-01-26T04:34:47.000Z" - }, - "end": { - "$date": "2021-01-26T04:56:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b99de01-d372-4ef7-bca0-bce3831d4081", - "start": { - "$date": "2021-01-26T04:56:47.000Z" - }, - "end": { - "$date": "2021-01-26T05:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6523193b-9398-4cf1-9ea9-560cc68cc036", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-26T03:55:40.000Z" - }, - "end": { - "$date": "2021-01-26T04:23:07.000Z" - }, - "events": [ - { - "uuid": "1a034c17-c96a-44ad-8dd6-f4c2fd946c70", - "start": { - "$date": "2021-01-26T03:55:40.000Z" - }, - "end": { - "$date": "2021-01-26T04:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "56bda71e-ee41-4cca-b8e3-7d4b1601ed82", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-26T03:51:34.000Z" - }, - "end": { - "$date": "2021-01-26T07:35:22.000Z" - }, - "events": [ - { - "uuid": "f74dd163-cedd-4d20-8950-2c486dd6312f", - "start": { - "$date": "2021-01-26T03:51:34.000Z" - }, - "end": { - "$date": "2021-01-26T07:35:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4d441a86-ab4a-4713-a6ec-df92da14c0bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T03:52:59.000Z" - }, - "end": { - "$date": "2021-01-26T04:21:25.000Z" - }, - "events": [ - { - "uuid": "10031de7-4dd7-4e43-bb93-332c60418ec0", - "start": { - "$date": "2021-01-26T03:52:59.000Z" - }, - "end": { - "$date": "2021-01-26T04:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9ed6b344-ea4a-489d-b93a-06181f8375d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-26T03:54:25.000Z" - }, - "end": { - "$date": "2021-01-26T04:17:00.000Z" - }, - "events": [ - { - "uuid": "de3bb8c7-52c0-446d-a9eb-cd94e4506056", - "start": { - "$date": "2021-01-26T03:54:25.000Z" - }, - "end": { - "$date": "2021-01-26T04:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02d6b8bc-52b1-49b5-af2b-d514d67a1537", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-26T04:31:26.000Z" - }, - "end": { - "$date": "2021-01-26T04:46:43.000Z" - }, - "events": [ - { - "uuid": "98e68d36-f270-43b3-aab0-14ce65f479e3", - "start": { - "$date": "2021-01-26T04:31:26.000Z" - }, - "end": { - "$date": "2021-01-26T04:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e546326a-919c-4043-a5ed-418eb6735836", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-26T04:39:44.000Z" - }, - "end": { - "$date": "2021-01-26T06:34:14.000Z" - }, - "events": [ - { - "uuid": "452acbb4-e56b-4e71-8a81-3f81dbf5b605", - "start": { - "$date": "2021-01-26T04:39:44.000Z" - }, - "end": { - "$date": "2021-01-26T06:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7e1658bf-3ec6-4f85-b2ef-eb837e349feb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-26T04:41:02.000Z" - }, - "end": { - "$date": "2021-01-26T06:34:07.000Z" - }, - "events": [ - { - "uuid": "db07b7ae-c01d-408e-8b94-0cfa474ae4c4", - "start": { - "$date": "2021-01-26T04:41:02.000Z" - }, - "end": { - "$date": "2021-01-26T06:34:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "821fdf6e-fe8f-4ede-a06b-31aebc7a6f0c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-26T04:52:17.000Z" - }, - "end": { - "$date": "2021-01-26T05:36:34.000Z" - }, - "events": [ - { - "uuid": "192f464d-024b-4a40-abc8-3252ef84f058", - "start": { - "$date": "2021-01-26T04:52:17.000Z" - }, - "end": { - "$date": "2021-01-26T05:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "08fc56df-c804-4baa-89c8-3f6510f389b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-26T05:08:11.000Z" - }, - "end": { - "$date": "2021-01-26T05:41:56.000Z" - }, - "events": [ - { - "uuid": "df0fb896-7be2-4559-a359-0ea49d861ebc", - "start": { - "$date": "2021-01-26T05:08:11.000Z" - }, - "end": { - "$date": "2021-01-26T05:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6ebee304-5968-4a75-9e71-5a63f22aea09", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-26T05:27:44.000Z" - }, - "end": { - "$date": "2021-01-26T06:17:44.000Z" - }, - "events": [ - { - "uuid": "6f5ce4fb-1a02-4c2f-8a2c-9fbf1d4484cd", - "start": { - "$date": "2021-01-26T05:27:44.000Z" - }, - "end": { - "$date": "2021-01-26T06:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59f490db-9dec-4f11-b87a-be29ee468ae4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-26T05:42:08.000Z" - }, - "end": { - "$date": "2021-01-26T06:07:00.000Z" - }, - "events": [ - { - "uuid": "6470bf07-3a0b-4f02-aa13-70886542b08d", - "start": { - "$date": "2021-01-26T05:42:08.000Z" - }, - "end": { - "$date": "2021-01-26T06:07:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "30683351-5576-4d71-822b-ff1b3ab05fa9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T05:55:21.000Z" - }, - "end": { - "$date": "2021-01-26T10:12:52.000Z" - }, - "events": [ - { - "uuid": "c2607c02-8568-484f-8a44-0a2a53f59902", - "start": { - "$date": "2021-01-26T05:55:21.000Z" - }, - "end": { - "$date": "2021-01-26T10:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5afb739d-2bbc-4bfe-9a30-b3bf9e8fd99e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-26T06:03:40.000Z" - }, - "end": { - "$date": "2021-01-26T08:09:00.000Z" - }, - "events": [ - { - "uuid": "56129e44-1cac-4a9c-8f06-1641a1378582", - "start": { - "$date": "2021-01-26T06:03:40.000Z" - }, - "end": { - "$date": "2021-01-26T08:09:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dc397754-2159-4baa-a3c1-7a49ae2a7958", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-26T06:06:11.000Z" - }, - "end": { - "$date": "2021-01-26T08:07:10.000Z" - }, - "events": [ - { - "uuid": "ff2e65bb-f1f8-4112-af02-cf0e39fbfb48", - "start": { - "$date": "2021-01-26T06:06:11.000Z" - }, - "end": { - "$date": "2021-01-26T08:07:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a391b69-f42f-4549-b18c-68c8f53bdc59", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-26T06:07:51.000Z" - }, - "end": { - "$date": "2021-01-26T06:11:43.000Z" - }, - "events": [ - { - "uuid": "3c1edfd0-c3e7-4450-9039-1ac717869525", - "start": { - "$date": "2021-01-26T06:07:51.000Z" - }, - "end": { - "$date": "2021-01-26T06:11:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e2e081b6-7e35-4ce7-92ad-08345b6f0649", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-26T06:18:19.000Z" - }, - "end": { - "$date": "2021-01-26T06:23:30.000Z" - }, - "events": [ - { - "uuid": "a1074682-e081-4804-ba63-c512ff013c65", - "start": { - "$date": "2021-01-26T06:18:19.000Z" - }, - "end": { - "$date": "2021-01-26T06:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "be18d3a6-d878-40de-b67b-ef77c2fce29b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-26T07:32:39.000Z" - }, - "end": { - "$date": "2021-01-26T07:33:00.000Z" - }, - "events": [ - { - "uuid": "1fc74f2b-3cb4-4732-b05e-c85319709d7a", - "start": { - "$date": "2021-01-26T07:32:39.000Z" - }, - "end": { - "$date": "2021-01-26T07:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "893480e9-ba82-4e5b-a418-9f021e9132ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-26T06:37:04.000Z" - }, - "end": { - "$date": "2021-01-26T07:54:36.000Z" - }, - "events": [ - { - "uuid": "663ec929-b2b9-44d1-9639-826112edbe2e", - "start": { - "$date": "2021-01-26T06:37:04.000Z" - }, - "end": { - "$date": "2021-01-26T07:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cd7f33a0-0236-4875-bf4a-1740d598beb1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T14:46:55.000Z" - }, - "end": { - "$date": "2021-01-26T15:18:57.000Z" - }, - "events": [ - { - "uuid": "52afe181-cd10-465a-a02a-ff356dce6303", - "start": { - "$date": "2021-01-26T14:46:55.000Z" - }, - "end": { - "$date": "2021-01-26T15:18:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6ebcb946-7926-48cc-b55f-d5f710475a4f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-26T15:33:57.000Z" - }, - "end": { - "$date": "2021-01-26T15:55:54.000Z" - }, - "events": [ - { - "uuid": "7fb5b3b3-a01a-4a33-a362-7b6c34440ff2", - "start": { - "$date": "2021-01-26T15:33:57.000Z" - }, - "end": { - "$date": "2021-01-26T15:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a0912b4d-e2ae-4254-90c0-126b01709b95", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-26T15:56:45.000Z" - }, - "end": { - "$date": "2021-01-26T17:16:17.000Z" - }, - "events": [ - { - "uuid": "312928fe-4e31-442a-a486-52c6d2ffeefb", - "start": { - "$date": "2021-01-26T15:56:45.000Z" - }, - "end": { - "$date": "2021-01-26T17:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "02a82598-ad14-4250-a221-87f4a1b2de4a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-26T16:12:33.000Z" - }, - "end": { - "$date": "2021-01-26T20:09:45.000Z" - }, - "events": [ - { - "uuid": "8fec4375-e770-4f93-ab10-a2394a599ef4", - "start": { - "$date": "2021-01-26T16:12:33.000Z" - }, - "end": { - "$date": "2021-01-26T20:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e9e13ff1-3a5f-4812-8699-238ff3d9529b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T16:13:43.000Z" - }, - "end": { - "$date": "2021-01-26T17:20:09.000Z" - }, - "events": [ - { - "uuid": "f44ad532-3072-4f86-b86e-8325644bdf44", - "start": { - "$date": "2021-01-26T16:13:43.000Z" - }, - "end": { - "$date": "2021-01-26T16:59:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2c99b25d-1f0b-4233-a1b1-97dd7fa7c9a4", - "start": { - "$date": "2021-01-26T16:59:43.000Z" - }, - "end": { - "$date": "2021-01-26T17:04:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8744093b-1eb4-46a5-819f-a3fd6fb8f79b", - "start": { - "$date": "2021-01-26T17:04:43.000Z" - }, - "end": { - "$date": "2021-01-26T17:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "035a5fc9-c1c6-4112-b737-ea7bd49039c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T20:00:11.000Z" - }, - "end": { - "$date": "2021-01-26T20:01:48.000Z" - }, - "events": [ - { - "uuid": "9d53e6d1-5f7a-4e99-bc60-8b8d9ae5f051", - "start": { - "$date": "2021-01-26T20:00:11.000Z" - }, - "end": { - "$date": "2021-01-26T20:01:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8722a214-9e3b-42dd-81c9-8ceb1bc2322b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-26T19:37:21.000Z" - }, - "end": { - "$date": "2021-01-26T19:54:01.000Z" - }, - "events": [ - { - "uuid": "2c71f4dc-4ba0-483d-bc46-c144e591273c", - "start": { - "$date": "2021-01-26T19:37:21.000Z" - }, - "end": { - "$date": "2021-01-26T19:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4e33f46f-c88a-4700-b0fa-056e3265fd00", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T22:40:20.000Z" - }, - "end": { - "$date": "2021-01-26T23:50:33.000Z" - }, - "events": [ - { - "uuid": "41bc6fc6-895b-4a98-9f20-69c1e64aaf3e", - "start": { - "$date": "2021-01-26T22:40:20.000Z" - }, - "end": { - "$date": "2021-01-26T23:54:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "15249126-8bc3-42cc-8b29-f13b03c73dd3", - "start": { - "$date": "2021-01-26T23:54:20.000Z" - }, - "end": { - "$date": "2021-01-27T00:51:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "459e8262-dc3b-4223-9d6a-4cc09ec7a69e", - "start": { - "$date": "2021-01-27T00:51:20.000Z" - }, - "end": { - "$date": "2021-01-27T01:01:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44f84d8b-9e01-4d02-a069-e6889c5b4664", - "start": { - "$date": "2021-01-27T01:01:20.000Z" - }, - "end": { - "$date": "2021-01-27T01:06:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cae521e8-b35e-4b90-a408-e59577323dda", - "start": { - "$date": "2021-01-27T01:06:20.000Z" - }, - "end": { - "$date": "2021-01-27T01:16:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04f24168-b11f-4327-b3b8-e70574f530cf", - "start": { - "$date": "2021-01-27T01:16:20.000Z" - }, - "end": { - "$date": "2021-01-26T23:50:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6d876a14-7f88-4246-821a-8742420ac029", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-26T20:39:07.000Z" - }, - "end": { - "$date": "2021-01-26T21:22:43.000Z" - }, - "events": [ - { - "uuid": "bdb17ab7-d4fb-40a7-8202-819febb0223d", - "start": { - "$date": "2021-01-26T20:39:07.000Z" - }, - "end": { - "$date": "2021-01-26T21:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ee7428ae-6994-4959-86dc-9a9d07d5a563", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-26T21:15:54.000Z" - }, - "end": { - "$date": "2021-01-26T22:13:16.000Z" - }, - "events": [ - { - "uuid": "e5eeded4-ca75-493e-9bb1-6884c42caa17", - "start": { - "$date": "2021-01-26T21:15:54.000Z" - }, - "end": { - "$date": "2021-01-26T22:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c3217f03-6e1d-4936-95e4-0a0e0fb01b96", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-26T22:02:00.000Z" - }, - "end": { - "$date": "2021-01-27T01:07:05.000Z" - }, - "events": [ - { - "uuid": "c1470385-4607-4b4e-9f24-5e5afb63f8a7", - "start": { - "$date": "2021-01-26T22:02:00.000Z" - }, - "end": { - "$date": "2021-01-27T01:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0086d74f-c5ee-4735-89bd-eb677c602862", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-26T22:13:00.000Z" - }, - "end": { - "$date": "2021-01-26T23:18:33.000Z" - }, - "events": [ - { - "uuid": "ecac0bfa-b8eb-4da5-b7e4-8fafe74e4405", - "start": { - "$date": "2021-01-26T22:13:00.000Z" - }, - "end": { - "$date": "2021-01-26T23:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "50978c67-a2f5-4962-b11d-dc1677908027", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-26T23:21:19.000Z" - }, - "end": { - "$date": "2021-01-27T00:51:58.000Z" - }, - "events": [ - { - "uuid": "c745b0ad-6bb2-4e16-aa41-4c0b7037fd06", - "start": { - "$date": "2021-01-26T23:21:19.000Z" - }, - "end": { - "$date": "2021-01-27T00:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e7d17fad-175f-43a3-b9f3-5cd384d868cb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-26T23:54:17.000Z" - }, - "end": { - "$date": "2021-01-27T04:59:44.000Z" - }, - "events": [ - { - "uuid": "a2021f79-0315-4093-9ee0-9e7078b76116", - "start": { - "$date": "2021-01-26T23:54:17.000Z" - }, - "end": { - "$date": "2021-01-27T01:16:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "10e170f3-e77f-4995-87f5-e95cc9061589", - "start": { - "$date": "2021-01-27T01:16:17.000Z" - }, - "end": { - "$date": "2021-01-27T01:34:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "694db52c-9fe3-4d54-bd4c-62231ffd2f01", - "start": { - "$date": "2021-01-27T01:34:17.000Z" - }, - "end": { - "$date": "2021-01-27T02:30:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8198adb-4708-4620-87cd-609173619780", - "start": { - "$date": "2021-01-27T02:30:17.000Z" - }, - "end": { - "$date": "2021-01-27T02:41:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8dc40acc-f623-4099-9b4a-102330e9137a", - "start": { - "$date": "2021-01-27T02:41:17.000Z" - }, - "end": { - "$date": "2021-01-27T04:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa666d68-67c0-4fe0-b897-a1122f16cbac", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-27T00:17:31.000Z" - }, - "end": { - "$date": "2021-01-27T00:47:00.000Z" - }, - "events": [ - { - "uuid": "2e046307-0bc5-471c-af35-b72b99bb2e39", - "start": { - "$date": "2021-01-27T00:17:31.000Z" - }, - "end": { - "$date": "2021-01-27T00:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e57989d4-bb4e-4d81-8f05-7c747fc25b12", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-27T01:18:26.000Z" - }, - "end": { - "$date": "2021-01-27T05:34:38.000Z" - }, - "events": [ - { - "uuid": "af5fd2b8-2eb0-42a0-ab34-83d1500600ae", - "start": { - "$date": "2021-01-27T01:18:26.000Z" - }, - "end": { - "$date": "2021-01-27T05:34:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "232349fb-a057-4bc2-91ea-bc67c2171051", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-27T02:33:31.000Z" - }, - "end": { - "$date": "2021-01-27T03:40:35.000Z" - }, - "events": [ - { - "uuid": "cdb1dcd4-afdb-48ad-a588-9a1096ab4544", - "start": { - "$date": "2021-01-27T02:33:31.000Z" - }, - "end": { - "$date": "2021-01-27T03:19:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b35e5bc8-ecb4-408a-a94d-dd123006fe6f", - "start": { - "$date": "2021-01-27T03:19:31.000Z" - }, - "end": { - "$date": "2021-01-27T03:24:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2ac378fd-b051-4bdd-93fd-8e85f47e5012", - "start": { - "$date": "2021-01-27T03:24:31.000Z" - }, - "end": { - "$date": "2021-01-27T03:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cf72b736-259b-4622-b2b9-9d1b4cf77236", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-27T02:53:46.000Z" - }, - "end": { - "$date": "2021-01-27T02:58:48.000Z" - }, - "events": [ - { - "uuid": "cad76071-1fab-4cf9-89a1-a04a455a1fd7", - "start": { - "$date": "2021-01-27T02:53:46.000Z" - }, - "end": { - "$date": "2021-01-27T02:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cfe340f1-23e3-47cb-a2e4-795a73b3ecea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-27T03:00:18.000Z" - }, - "end": { - "$date": "2021-01-27T03:08:19.000Z" - }, - "events": [ - { - "uuid": "6740df52-6d96-4614-8a5b-62a4a5fb2868", - "start": { - "$date": "2021-01-27T03:00:18.000Z" - }, - "end": { - "$date": "2021-01-27T03:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "27797379-9cc6-45ff-b78d-4fc1bff0ceb0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-27T03:16:44.000Z" - }, - "end": { - "$date": "2021-01-27T03:39:05.000Z" - }, - "events": [ - { - "uuid": "69f5971f-3b91-4d4c-8847-83480d5b3b8c", - "start": { - "$date": "2021-01-27T03:16:44.000Z" - }, - "end": { - "$date": "2021-01-27T03:39:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9dc91ef3-015a-40d9-a319-85494dcd4495", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-27T03:27:30.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:17.000Z" - }, - "events": [ - { - "uuid": "23efd5a8-6c5f-44bc-a604-312f6725a21e", - "start": { - "$date": "2021-01-27T03:27:30.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1df6d26b-9a21-4b2b-8e27-aec8a8aed1d0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-27T03:36:32.000Z" - }, - "end": { - "$date": "2021-01-27T04:00:38.000Z" - }, - "events": [ - { - "uuid": "c7da0bde-96b1-4713-9326-e4f40ad864f8", - "start": { - "$date": "2021-01-27T03:36:32.000Z" - }, - "end": { - "$date": "2021-01-27T04:00:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "688fa8e2-1f49-4ff1-8e7d-a4d34bab62bd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-27T03:36:29.000Z" - }, - "end": { - "$date": "2021-01-27T04:00:41.000Z" - }, - "events": [ - { - "uuid": "abdd12a8-ab85-4d3a-bf39-a9df795f2e25", - "start": { - "$date": "2021-01-27T03:36:29.000Z" - }, - "end": { - "$date": "2021-01-27T04:00:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da28d416-0942-4343-a3f3-509202e6cdc7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-27T04:03:18.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:26.000Z" - }, - "events": [ - { - "uuid": "8c6bf233-8283-463a-b346-0e1c682cad2d", - "start": { - "$date": "2021-01-27T04:03:18.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3cafbec3-8374-4302-a01e-914141165d86", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-27T03:39:10.000Z" - }, - "end": { - "$date": "2021-01-27T04:19:24.000Z" - }, - "events": [ - { - "uuid": "75518788-af11-4a64-9ff8-750ca98ef2a2", - "start": { - "$date": "2021-01-27T03:39:10.000Z" - }, - "end": { - "$date": "2021-01-27T04:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "ca7a923c-5d3d-4423-bdb4-e02d7e02b794", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-27T03:41:00.000Z" - }, - "end": { - "$date": "2021-01-27T03:42:30.000Z" - }, - "events": [ - { - "uuid": "393d0ed2-825b-4743-939f-665d979a45b4", - "start": { - "$date": "2021-01-27T03:41:00.000Z" - }, - "end": { - "$date": "2021-01-27T03:42:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e75afed7-793d-4e71-b144-62cb9e4fc659", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-27T03:42:36.000Z" - }, - "end": { - "$date": "2021-01-27T04:59:59.000Z" - }, - "events": [ - { - "uuid": "b6ac5a97-970d-4d05-a93b-65aa3ca2d89e", - "start": { - "$date": "2021-01-27T03:42:36.000Z" - }, - "end": { - "$date": "2021-01-27T04:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0bd6574b-12aa-49ff-8d35-11799598e4d1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-27T03:59:06.000Z" - }, - "end": { - "$date": "2021-01-27T05:13:38.000Z" - }, - "events": [ - { - "uuid": "0a2dd026-ec7d-4bcb-b3ba-b319974904d2", - "start": { - "$date": "2021-01-27T03:59:06.000Z" - }, - "end": { - "$date": "2021-01-27T05:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b581d8ba-b01f-4b03-962c-9ddfdedba642", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-27T04:03:12.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:23.000Z" - }, - "events": [ - { - "uuid": "3b0658fa-fca4-438f-942e-ceb2a6c638eb", - "start": { - "$date": "2021-01-27T04:03:12.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "817558ec-fa02-4f8b-842c-c40a5d17a1e6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-27T04:04:35.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:22.000Z" - }, - "events": [ - { - "uuid": "cdd8ebcb-be3f-43ad-be3f-45e54f851279", - "start": { - "$date": "2021-01-27T04:04:35.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8f497f52-c42c-4775-942f-25b0888938ca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-27T04:03:20.000Z" - }, - "end": { - "$date": "2021-01-27T04:37:14.000Z" - }, - "events": [ - { - "uuid": "9dbd3d1f-f213-43ab-8dae-5b30224c8667", - "start": { - "$date": "2021-01-27T04:03:20.000Z" - }, - "end": { - "$date": "2021-01-27T04:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a625622c-f6db-4dc7-aa47-e8aeab82a147", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-27T04:16:17.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:52.000Z" - }, - "events": [ - { - "uuid": "cb917380-5df2-46cb-8417-659e30dd719f", - "start": { - "$date": "2021-01-27T04:16:17.000Z" - }, - "end": { - "$date": "2021-01-27T04:20:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "42930184-fac9-4ac3-9ef2-cf01e7b78dcb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-27T04:20:14.000Z" - }, - "end": { - "$date": "2021-01-27T08:02:06.000Z" - }, - "events": [ - { - "uuid": "acdd2a0b-4867-474f-b379-9a5c1ae16898", - "start": { - "$date": "2021-01-27T04:20:14.000Z" - }, - "end": { - "$date": "2021-01-27T08:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ed15298-15e9-49d3-bcce-00bfb28545e7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-27T04:25:13.000Z" - }, - "end": { - "$date": "2021-01-27T04:41:59.000Z" - }, - "events": [ - { - "uuid": "9d2adb86-5fd1-4c3e-ae40-d15be2e0fd67", - "start": { - "$date": "2021-01-27T04:25:13.000Z" - }, - "end": { - "$date": "2021-01-27T04:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83ae2a66-2124-4d90-a26f-bacd985b7d3d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-27T04:23:57.000Z" - }, - "end": { - "$date": "2021-01-27T04:41:57.000Z" - }, - "events": [ - { - "uuid": "b9109009-7d12-4762-b11f-8fa0c2b806b6", - "start": { - "$date": "2021-01-27T04:23:57.000Z" - }, - "end": { - "$date": "2021-01-27T04:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c60fb722-141f-42aa-81ee-2a26d50c7947", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-27T04:23:14.000Z" - }, - "end": { - "$date": "2021-01-27T04:42:05.000Z" - }, - "events": [ - { - "uuid": "0a360884-fb7a-4310-8e4f-f9dcd744cca0", - "start": { - "$date": "2021-01-27T04:23:14.000Z" - }, - "end": { - "$date": "2021-01-27T04:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a67132bb-4216-42b0-8d10-b592b7439650", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-27T04:25:14.000Z" - }, - "end": { - "$date": "2021-01-27T08:02:10.000Z" - }, - "events": [ - { - "uuid": "fd79e4b9-03f6-4a31-9caf-ebec8706ba0a", - "start": { - "$date": "2021-01-27T04:25:14.000Z" - }, - "end": { - "$date": "2021-01-27T08:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1675e037-a861-4f4b-968f-b7f07339f268", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-27T04:49:14.000Z" - }, - "end": { - "$date": "2021-01-27T05:07:25.000Z" - }, - "events": [ - { - "uuid": "48251d5d-357a-403d-a98b-e46da3bc7269", - "start": { - "$date": "2021-01-27T04:49:14.000Z" - }, - "end": { - "$date": "2021-01-27T05:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c16b68cf-d0dc-496b-a0f8-13aa5bcf5530", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-27T04:48:50.000Z" - }, - "end": { - "$date": "2021-01-27T05:07:27.000Z" - }, - "events": [ - { - "uuid": "6e1f71fd-d8ca-4326-8ae4-7dec4161d2c4", - "start": { - "$date": "2021-01-27T04:48:50.000Z" - }, - "end": { - "$date": "2021-01-27T05:07:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a32dbd7c-2403-488e-b44d-9e16f1ce5d32", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-27T04:46:35.000Z" - }, - "end": { - "$date": "2021-01-27T05:07:27.000Z" - }, - "events": [ - { - "uuid": "af870130-2342-40ea-8877-5cda1eb6c11d", - "start": { - "$date": "2021-01-27T04:46:35.000Z" - }, - "end": { - "$date": "2021-01-27T05:07:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "6e3281a5-b250-4220-9c3a-0b2e4abd23ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-27T05:02:49.000Z" - }, - "end": { - "$date": "2021-01-27T06:44:21.000Z" - }, - "events": [ - { - "uuid": "e32c2dc5-612d-48f7-b90d-a2d40f50ab4b", - "start": { - "$date": "2021-01-27T05:02:49.000Z" - }, - "end": { - "$date": "2021-01-27T06:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb406a79-3d87-46fd-81bb-be647529480b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-27T05:10:32.000Z" - }, - "end": { - "$date": "2021-01-27T05:27:43.000Z" - }, - "events": [ - { - "uuid": "4b975886-c027-43be-a06c-0f6b4b39ede1", - "start": { - "$date": "2021-01-27T05:10:32.000Z" - }, - "end": { - "$date": "2021-01-27T05:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1a2ab7b-9641-4e98-b5c0-10c8388bba26", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-27T05:11:06.000Z" - }, - "end": { - "$date": "2021-01-27T05:27:38.000Z" - }, - "events": [ - { - "uuid": "68824ab5-50f5-4119-8d5f-0f5e87c72267", - "start": { - "$date": "2021-01-27T05:11:06.000Z" - }, - "end": { - "$date": "2021-01-27T05:27:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0785aafd-9f83-45b7-ba58-c24d629991c2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-27T05:11:54.000Z" - }, - "end": { - "$date": "2021-01-27T08:02:04.000Z" - }, - "events": [ - { - "uuid": "0980414a-03d2-4127-bdf0-6c99c3c83b36", - "start": { - "$date": "2021-01-27T05:11:54.000Z" - }, - "end": { - "$date": "2021-01-27T06:37:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13f1e9c1-7159-48dc-9eed-6aff3a1685bb", - "start": { - "$date": "2021-01-27T06:37:54.000Z" - }, - "end": { - "$date": "2021-01-27T06:38:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef6f490c-1533-4768-a136-d31e6188c432", - "start": { - "$date": "2021-01-27T06:38:54.000Z" - }, - "end": { - "$date": "2021-01-27T08:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f2180ec2-e04b-4cb1-b294-6356e64780d3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-27T05:22:55.000Z" - }, - "end": { - "$date": "2021-01-27T05:43:50.000Z" - }, - "events": [ - { - "uuid": "089e215c-ff3a-4563-b9f7-305fc5bdaf8e", - "start": { - "$date": "2021-01-27T05:22:55.000Z" - }, - "end": { - "$date": "2021-01-27T05:43:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c247fb9b-3637-4fa0-ac5d-8682b78ae20d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-27T05:26:56.000Z" - }, - "end": { - "$date": "2021-01-27T06:41:37.000Z" - }, - "events": [ - { - "uuid": "c64411de-a02a-46cc-9c6c-5c84f854d96f", - "start": { - "$date": "2021-01-27T05:26:56.000Z" - }, - "end": { - "$date": "2021-01-27T06:41:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c178c463-1486-4ce4-9108-a6fb73806beb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-27T05:31:08.000Z" - }, - "end": { - "$date": "2021-01-27T05:51:02.000Z" - }, - "events": [ - { - "uuid": "58d7819c-d042-4a19-bdaf-e75cd3c380aa", - "start": { - "$date": "2021-01-27T05:31:08.000Z" - }, - "end": { - "$date": "2021-01-27T05:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1be29113-8f4d-4f0d-bb3d-5ef3964d487c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-27T05:32:17.000Z" - }, - "end": { - "$date": "2021-01-27T05:50:54.000Z" - }, - "events": [ - { - "uuid": "4d711320-5b3c-455e-880a-78120625b876", - "start": { - "$date": "2021-01-27T05:32:17.000Z" - }, - "end": { - "$date": "2021-01-27T05:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d01217cf-63e1-4abd-a92b-506692055df1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-27T05:46:36.000Z" - }, - "end": { - "$date": "2021-01-27T06:48:39.000Z" - }, - "events": [ - { - "uuid": "764353ea-ade4-4458-9e8c-4168bbba11f9", - "start": { - "$date": "2021-01-27T05:46:36.000Z" - }, - "end": { - "$date": "2021-01-27T06:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "763c853c-b72f-4e26-af6f-feb57c04bfd1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-27T06:05:53.000Z" - }, - "end": { - "$date": "2021-01-27T06:30:19.000Z" - }, - "events": [ - { - "uuid": "7acce700-fdb8-48ca-b6e2-fba36add9f47", - "start": { - "$date": "2021-01-27T06:05:53.000Z" - }, - "end": { - "$date": "2021-01-27T06:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dabc215d-db46-4fbf-8ac3-401cc0923158", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-27T06:34:54.000Z" - }, - "end": { - "$date": "2021-01-27T07:07:45.000Z" - }, - "events": [ - { - "uuid": "830fabca-18ef-4216-ab57-2943e05b7d66", - "start": { - "$date": "2021-01-27T06:34:54.000Z" - }, - "end": { - "$date": "2021-01-27T07:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "72e3f09a-cd3e-4461-b908-3e23273afe22", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-27T06:44:32.000Z" - }, - "end": { - "$date": "2021-01-27T07:00:17.000Z" - }, - "events": [ - { - "uuid": "a8f60f37-4795-4a23-b686-ad7a45610a54", - "start": { - "$date": "2021-01-27T06:44:32.000Z" - }, - "end": { - "$date": "2021-01-27T07:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "04646c33-6e07-4635-9286-3726e18e7c55", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-27T08:07:16.000Z" - }, - "end": { - "$date": "2021-01-27T08:22:38.000Z" - }, - "events": [ - { - "uuid": "3723927f-120e-47e3-b4dd-6f7cfa41066d", - "start": { - "$date": "2021-01-27T08:07:16.000Z" - }, - "end": { - "$date": "2021-01-27T08:22:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ebfa17ef-ee0b-4a12-8094-169f8167b248", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-27T08:10:56.000Z" - }, - "end": { - "$date": "2021-01-27T08:20:48.000Z" - }, - "events": [ - { - "uuid": "839afadf-aa8c-4c52-b1f4-3df14fde12d9", - "start": { - "$date": "2021-01-27T08:10:56.000Z" - }, - "end": { - "$date": "2021-01-27T08:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "82979be3-9986-480c-b9f8-b6a1312898cc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-27T15:11:40.000Z" - }, - "end": { - "$date": "2021-01-27T16:55:36.000Z" - }, - "events": [ - { - "uuid": "17bbf819-822c-4c42-8986-956f0c80a3a4", - "start": { - "$date": "2021-01-27T15:11:40.000Z" - }, - "end": { - "$date": "2021-01-27T16:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "95e646ca-3c88-470b-8315-1044e18f645a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-27T19:01:18.000Z" - }, - "end": { - "$date": "2021-01-27T19:22:24.000Z" - }, - "events": [ - { - "uuid": "a0839924-68e2-4d77-9256-d6493c18dac5", - "start": { - "$date": "2021-01-27T19:01:18.000Z" - }, - "end": { - "$date": "2021-01-27T19:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bdc34ffc-14bc-4265-9270-f757575a61a8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-27T20:26:56.000Z" - }, - "end": { - "$date": "2021-01-27T21:22:34.000Z" - }, - "events": [ - { - "uuid": "b5efe753-e1d4-4e49-be7f-c56f94f8f6b8", - "start": { - "$date": "2021-01-27T20:26:56.000Z" - }, - "end": { - "$date": "2021-01-27T21:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5a212dcd-10e2-4c14-ba20-3e2d68058f96", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-27T20:30:06.000Z" - }, - "end": { - "$date": "2021-01-27T21:06:38.000Z" - }, - "events": [ - { - "uuid": "e78bce74-ee1f-4e2d-a4e7-488287eb9e2e", - "start": { - "$date": "2021-01-27T20:30:06.000Z" - }, - "end": { - "$date": "2021-01-27T21:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1a02a425-f980-4b64-bac8-6800fe475ceb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-27T22:12:05.000Z" - }, - "end": { - "$date": "2021-01-28T01:29:02.000Z" - }, - "events": [ - { - "uuid": "59dc96eb-8462-4f22-a28e-f288c6f984b9", - "start": { - "$date": "2021-01-27T22:12:05.000Z" - }, - "end": { - "$date": "2021-01-28T01:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cbea5a57-8d15-429d-9eb0-7d10c66739e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-27T22:33:42.000Z" - }, - "end": { - "$date": "2021-01-28T01:34:34.000Z" - }, - "events": [ - { - "uuid": "8b7b7d9c-6811-481a-a8d7-1c141917a6ce", - "start": { - "$date": "2021-01-27T22:33:42.000Z" - }, - "end": { - "$date": "2021-01-28T01:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "aeaf04ac-69a1-426a-beb6-433fb0cda9b6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T00:25:50.000Z" - }, - "end": { - "$date": "2021-01-28T00:27:53.000Z" - }, - "events": [ - { - "uuid": "8982176a-c33e-4799-885d-dca07db06080", - "start": { - "$date": "2021-01-28T00:25:50.000Z" - }, - "end": { - "$date": "2021-01-28T00:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "fcc1b352-ae5b-4f3b-bc87-ecd3d7d602e0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T00:28:37.000Z" - }, - "end": { - "$date": "2021-01-28T00:39:21.000Z" - }, - "events": [ - { - "uuid": "15f8e36d-40dd-4fbd-804d-fa99d0c1f5eb", - "start": { - "$date": "2021-01-28T00:28:37.000Z" - }, - "end": { - "$date": "2021-01-28T00:39:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "53df79cf-7cb0-462b-b4cd-8cbc643d3b73", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T00:48:55.000Z" - }, - "end": { - "$date": "2021-01-28T00:54:37.000Z" - }, - "events": [ - { - "uuid": "e26233bf-53c6-4ecd-907c-d8cbc38a9509", - "start": { - "$date": "2021-01-28T00:48:55.000Z" - }, - "end": { - "$date": "2021-01-28T00:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4abde69-d517-47c5-8477-b9b763c76932", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T01:33:21.000Z" - }, - "end": { - "$date": "2021-01-28T01:48:26.000Z" - }, - "events": [ - { - "uuid": "4b950f7c-4e1b-492e-9a94-94b416f188c4", - "start": { - "$date": "2021-01-28T01:33:21.000Z" - }, - "end": { - "$date": "2021-01-28T01:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "8d65c642-c308-4dda-a4ec-6250c6ec6de9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T01:42:11.000Z" - }, - "end": { - "$date": "2021-01-28T01:43:43.000Z" - }, - "events": [ - { - "uuid": "cee5cc11-44e3-4a21-bc61-7884cbd5f68c", - "start": { - "$date": "2021-01-28T01:42:11.000Z" - }, - "end": { - "$date": "2021-01-28T01:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "8432a713-a303-496f-89f0-6a1ce7b6f307", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T01:44:06.000Z" - }, - "end": { - "$date": "2021-01-28T01:50:09.000Z" - }, - "events": [ - { - "uuid": "244f4ee1-7edf-4809-a50f-30a8939a2bd3", - "start": { - "$date": "2021-01-28T01:44:06.000Z" - }, - "end": { - "$date": "2021-01-28T01:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ed6b8013-2771-411b-b36c-cbd5000c8b5b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-28T01:45:59.000Z" - }, - "end": { - "$date": "2021-01-28T03:02:00.000Z" - }, - "events": [ - { - "uuid": "47c128d7-a25b-4c5d-9c3e-4cbbc6170a93", - "start": { - "$date": "2021-01-28T01:45:59.000Z" - }, - "end": { - "$date": "2021-01-28T02:08:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c3b6720-b0ec-4c62-9acf-cfdfa17d0eeb", - "start": { - "$date": "2021-01-28T02:08:59.000Z" - }, - "end": { - "$date": "2021-01-28T02:39:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "811527cf-633f-498f-98c2-f82bb6f654a7", - "start": { - "$date": "2021-01-28T02:39:59.000Z" - }, - "end": { - "$date": "2021-01-28T03:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e071d200-bd12-4c5a-801f-2edf9b72c7eb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T02:00:31.000Z" - }, - "end": { - "$date": "2021-01-28T02:31:25.000Z" - }, - "events": [ - { - "uuid": "e5fd97cf-2714-4b62-ac02-deeab27b35fa", - "start": { - "$date": "2021-01-28T02:00:31.000Z" - }, - "end": { - "$date": "2021-01-28T02:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "f6428721-6bda-47dc-a58f-6fb2feac3c46", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T01:51:38.000Z" - }, - "end": { - "$date": "2021-01-28T01:57:25.000Z" - }, - "events": [ - { - "uuid": "161996c9-41c0-4043-b68b-59dbebc26257", - "start": { - "$date": "2021-01-28T01:51:38.000Z" - }, - "end": { - "$date": "2021-01-28T01:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "0f334f9b-3035-44dd-9af6-249633de90c0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T01:59:24.000Z" - }, - "end": { - "$date": "2021-01-28T02:06:22.000Z" - }, - "events": [ - { - "uuid": "c1ec007c-1f2e-4dbd-abc1-c97c18b96faa", - "start": { - "$date": "2021-01-28T01:59:24.000Z" - }, - "end": { - "$date": "2021-01-28T02:06:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad946e42-6e82-4e1a-9d9b-64bc0a871956", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T02:06:09.000Z" - }, - "end": { - "$date": "2021-01-28T05:02:43.000Z" - }, - "events": [ - { - "uuid": "fed9b9ab-4de1-4758-80c2-8aa7ba4f2b8d", - "start": { - "$date": "2021-01-28T02:06:09.000Z" - }, - "end": { - "$date": "2021-01-28T05:02:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f214a344-4ef9-40d3-a4ab-6c3798122aeb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T03:09:51.000Z" - }, - "end": { - "$date": "2021-01-28T03:41:41.000Z" - }, - "events": [ - { - "uuid": "43eff447-a320-494b-8d2b-a38191d9a1d2", - "start": { - "$date": "2021-01-28T03:09:51.000Z" - }, - "end": { - "$date": "2021-01-28T03:41:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6409ea34-1d5d-44a4-abf2-c0eeda2e1df8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-28T02:41:15.000Z" - }, - "end": { - "$date": "2021-01-28T03:56:58.000Z" - }, - "events": [ - { - "uuid": "e7c871cc-ca0b-42ea-ae1f-e34be6f84064", - "start": { - "$date": "2021-01-28T02:41:15.000Z" - }, - "end": { - "$date": "2021-01-28T03:28:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "53155ee7-4e3e-4a9f-ac9e-f7027acd96fe", - "start": { - "$date": "2021-01-28T03:28:15.000Z" - }, - "end": { - "$date": "2021-01-28T03:29:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "039169e9-5b9d-4f79-b1ad-2d1ae075339d", - "start": { - "$date": "2021-01-28T03:29:15.000Z" - }, - "end": { - "$date": "2021-01-28T03:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0ec09fa-44c9-4d80-ade1-9b843e89a16c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T03:10:21.000Z" - }, - "end": { - "$date": "2021-01-28T03:41:40.000Z" - }, - "events": [ - { - "uuid": "e6e49754-b5e8-4e72-a87d-b27fa0b2394d", - "start": { - "$date": "2021-01-28T03:10:21.000Z" - }, - "end": { - "$date": "2021-01-28T03:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b6d7b633-c8d0-4bdc-b512-9f0f03280194", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-28T03:11:23.000Z" - }, - "end": { - "$date": "2021-01-28T05:12:43.000Z" - }, - "events": [ - { - "uuid": "63cf0a0d-07dd-45df-800e-cdf5a7f8dfad", - "start": { - "$date": "2021-01-28T03:11:23.000Z" - }, - "end": { - "$date": "2021-01-28T05:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "81c32ba9-a111-4d97-9d0a-376b34d0a3c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-28T03:14:39.000Z" - }, - "end": { - "$date": "2021-01-28T03:43:26.000Z" - }, - "events": [ - { - "uuid": "2a043dc7-10ac-46ee-8cc1-c1b3781fe2c6", - "start": { - "$date": "2021-01-28T03:14:39.000Z" - }, - "end": { - "$date": "2021-01-28T03:43:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "911cce0d-65a1-4e4e-8d0f-bf7ddfc942af", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-28T03:18:19.000Z" - }, - "end": { - "$date": "2021-01-28T03:26:53.000Z" - }, - "events": [ - { - "uuid": "dbc22a23-3a1e-44b4-9026-92b80d92f9ec", - "start": { - "$date": "2021-01-28T03:18:19.000Z" - }, - "end": { - "$date": "2021-01-28T03:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "695ad12c-e375-4280-8d0f-a9b5c1ae16c1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-28T03:25:00.000Z" - }, - "end": { - "$date": "2021-01-28T03:44:28.000Z" - }, - "events": [ - { - "uuid": "31aba40e-3458-49f5-8d86-95af70ad833f", - "start": { - "$date": "2021-01-28T03:25:00.000Z" - }, - "end": { - "$date": "2021-01-28T03:44:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df1a6e99-5785-4b14-a9b3-337f81424d73", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T05:49:26.000Z" - }, - "end": { - "$date": "2021-01-28T06:00:27.000Z" - }, - "events": [ - { - "uuid": "ab69154c-01d8-461a-80f5-97b34a831462", - "start": { - "$date": "2021-01-28T05:49:26.000Z" - }, - "end": { - "$date": "2021-01-28T06:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a46d81c4-06d3-4698-949e-4b35381a015a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T03:48:02.000Z" - }, - "end": { - "$date": "2021-01-28T04:08:43.000Z" - }, - "events": [ - { - "uuid": "828d5a23-03dd-4122-99dc-6d37121eb261", - "start": { - "$date": "2021-01-28T03:48:02.000Z" - }, - "end": { - "$date": "2021-01-28T04:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "77edc1d6-573e-4187-80c2-77ce735d073e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-28T03:47:43.000Z" - }, - "end": { - "$date": "2021-01-28T07:29:06.000Z" - }, - "events": [ - { - "uuid": "d6af25bc-b91a-41a5-a8f5-ca9149a107a4", - "start": { - "$date": "2021-01-28T03:47:43.000Z" - }, - "end": { - "$date": "2021-01-28T07:29:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ce59721-6789-4b5e-ba3f-08043dba6bf5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-28T03:48:14.000Z" - }, - "end": { - "$date": "2021-01-28T05:58:38.000Z" - }, - "events": [ - { - "uuid": "29a253ef-4619-4d1a-a7e3-0e9991966d96", - "start": { - "$date": "2021-01-28T03:48:14.000Z" - }, - "end": { - "$date": "2021-01-28T05:58:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0f292d7b-8b6b-417a-93ac-9657c40ebd07", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T03:50:00.000Z" - }, - "end": { - "$date": "2021-01-28T04:05:55.000Z" - }, - "events": [ - { - "uuid": "aeadbe7a-5854-4145-9423-cb6fd349a4ac", - "start": { - "$date": "2021-01-28T03:50:00.000Z" - }, - "end": { - "$date": "2021-01-28T04:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fced46ff-ec03-4088-aa97-f5e9cab4c7d1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T04:10:51.000Z" - }, - "end": { - "$date": "2021-01-28T04:12:26.000Z" - }, - "events": [ - { - "uuid": "7f1f00de-b459-4774-95ee-748d00ad62f2", - "start": { - "$date": "2021-01-28T04:10:51.000Z" - }, - "end": { - "$date": "2021-01-28T04:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c42d48af-b717-497b-8e91-f1b377b9e1ef", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T04:10:51.000Z" - }, - "end": { - "$date": "2021-01-28T04:12:26.000Z" - }, - "events": [ - { - "uuid": "068a5bea-b81a-4620-8605-1fcf47e52e2f", - "start": { - "$date": "2021-01-28T04:10:51.000Z" - }, - "end": { - "$date": "2021-01-28T04:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e0dcd1a-f375-4a28-9ea8-3e643fa30382", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T04:15:21.000Z" - }, - "end": { - "$date": "2021-01-28T04:45:38.000Z" - }, - "events": [ - { - "uuid": "3fb5b0f5-3650-4f38-9ceb-090404d25954", - "start": { - "$date": "2021-01-28T04:15:21.000Z" - }, - "end": { - "$date": "2021-01-28T04:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f920a274-5291-46f4-a2ec-0b9f8414abf8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T04:15:08.000Z" - }, - "end": { - "$date": "2021-01-28T04:45:29.000Z" - }, - "events": [ - { - "uuid": "da220958-64c7-40ff-8ac4-589e605c4a9c", - "start": { - "$date": "2021-01-28T04:15:08.000Z" - }, - "end": { - "$date": "2021-01-28T04:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "021e88f7-1b64-4914-868d-a386c68e9515", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-28T04:27:26.000Z" - }, - "end": { - "$date": "2021-01-28T05:12:22.000Z" - }, - "events": [ - { - "uuid": "22f9e042-f79c-44ff-8440-199e6cb67991", - "start": { - "$date": "2021-01-28T04:27:26.000Z" - }, - "end": { - "$date": "2021-01-28T05:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1ede88b-b9f4-4bc9-b49e-00b75b225969", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-28T04:33:50.000Z" - }, - "end": { - "$date": "2021-01-28T06:07:18.000Z" - }, - "events": [ - { - "uuid": "4edae10a-7c9f-4b84-a824-1b3fd1fd2f8b", - "start": { - "$date": "2021-01-28T04:33:50.000Z" - }, - "end": { - "$date": "2021-01-28T06:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bcc007b-cc95-4c6f-b2a8-534347959942", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T04:48:23.000Z" - }, - "end": { - "$date": "2021-01-28T05:14:40.000Z" - }, - "events": [ - { - "uuid": "fa68e433-c504-4c27-9dfa-ba386f792121", - "start": { - "$date": "2021-01-28T04:48:23.000Z" - }, - "end": { - "$date": "2021-01-28T05:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7232337d-a0c4-42ab-a70a-9f4b68c51df8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T04:48:24.000Z" - }, - "end": { - "$date": "2021-01-28T05:14:40.000Z" - }, - "events": [ - { - "uuid": "48fc1a1a-3ad5-45d2-a6e3-18ee3a273c2b", - "start": { - "$date": "2021-01-28T04:48:24.000Z" - }, - "end": { - "$date": "2021-01-28T05:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "233f2c1c-13cb-4740-be55-9c64fb132e5b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T05:18:25.000Z" - }, - "end": { - "$date": "2021-01-28T05:49:17.000Z" - }, - "events": [ - { - "uuid": "65627651-76e6-492a-8896-1130a81bed70", - "start": { - "$date": "2021-01-28T05:18:25.000Z" - }, - "end": { - "$date": "2021-01-28T05:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0aeb2bf2-64ab-474a-97f8-13dd02432aee", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T05:18:55.000Z" - }, - "end": { - "$date": "2021-01-28T05:49:21.000Z" - }, - "events": [ - { - "uuid": "e9a7044d-48de-4455-8631-565c28244ff2", - "start": { - "$date": "2021-01-28T05:18:55.000Z" - }, - "end": { - "$date": "2021-01-28T05:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c819ede8-6cf1-427a-8734-8f53ecf98eea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-28T05:20:00.000Z" - }, - "end": { - "$date": "2021-01-28T05:24:24.000Z" - }, - "events": [ - { - "uuid": "5fa4c3fa-8417-4b6f-8b8d-0c32dc8661fe", - "start": { - "$date": "2021-01-28T05:20:00.000Z" - }, - "end": { - "$date": "2021-01-28T05:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d17d0828-86a3-4ee5-ab69-0d1379a9fe07", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-28T05:28:06.000Z" - }, - "end": { - "$date": "2021-01-28T06:37:25.000Z" - }, - "events": [ - { - "uuid": "cd675947-7e54-4881-91ac-e360767629be", - "start": { - "$date": "2021-01-28T05:28:06.000Z" - }, - "end": { - "$date": "2021-01-28T06:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6e91d538-9464-470b-878e-04521047c5c3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-28T05:53:26.000Z" - }, - "end": { - "$date": "2021-01-28T07:28:06.000Z" - }, - "events": [ - { - "uuid": "cbadb7b7-3b9b-46da-afe2-cbde793c78e4", - "start": { - "$date": "2021-01-28T05:53:26.000Z" - }, - "end": { - "$date": "2021-01-28T05:55:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bb642e8-89e1-4a79-aeb9-e76e6d1501a8", - "start": { - "$date": "2021-01-28T05:55:26.000Z" - }, - "end": { - "$date": "2021-01-28T05:57:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d31254e7-dadd-484d-8be9-2f37965b5cb2", - "start": { - "$date": "2021-01-28T05:57:26.000Z" - }, - "end": { - "$date": "2021-01-28T05:59:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cf6be0d4-6ada-46c1-9def-0724c62bc922", - "start": { - "$date": "2021-01-28T05:59:26.000Z" - }, - "end": { - "$date": "2021-01-28T06:08:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "964db61a-a189-4be0-a876-8d448843d9d3", - "start": { - "$date": "2021-01-28T06:08:26.000Z" - }, - "end": { - "$date": "2021-01-28T06:10:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98a670bd-c289-461f-ae68-913fcb697fab", - "start": { - "$date": "2021-01-28T06:10:26.000Z" - }, - "end": { - "$date": "2021-01-28T06:12:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "25df5d04-e702-4cbf-b979-af631ae67ee6", - "start": { - "$date": "2021-01-28T06:12:26.000Z" - }, - "end": { - "$date": "2021-01-28T07:28:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "4ed761fc-5519-4e3a-bf93-0038cc8648fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T06:13:46.000Z" - }, - "end": { - "$date": "2021-01-28T06:15:51.000Z" - }, - "events": [ - { - "uuid": "eb58e206-e83d-41c8-8c7c-71970ae212af", - "start": { - "$date": "2021-01-28T06:13:46.000Z" - }, - "end": { - "$date": "2021-01-28T06:15:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31d27f77-147d-45e2-84cb-6e6827ee570c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-28T06:28:36.000Z" - }, - "end": { - "$date": "2021-01-28T07:09:45.000Z" - }, - "events": [ - { - "uuid": "2b2cb4eb-c089-416f-99ab-b2d05a3c0054", - "start": { - "$date": "2021-01-28T06:28:36.000Z" - }, - "end": { - "$date": "2021-01-28T07:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a15c113-15dd-4f55-92b2-a452dc2de229", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T06:31:18.000Z" - }, - "end": { - "$date": "2021-01-28T07:16:55.000Z" - }, - "events": [ - { - "uuid": "7d782d15-5860-4971-bc8c-b49895723572", - "start": { - "$date": "2021-01-28T06:31:18.000Z" - }, - "end": { - "$date": "2021-01-28T07:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1e3ae52-caa7-4805-b649-859e7503ac49", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T08:08:08.000Z" - }, - "end": { - "$date": "2021-01-28T08:12:53.000Z" - }, - "events": [ - { - "uuid": "25b28920-4a76-4429-918e-b1b4f2469c58", - "start": { - "$date": "2021-01-28T08:08:08.000Z" - }, - "end": { - "$date": "2021-01-28T08:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "61ee1b39-ad1c-4ca5-9ff9-b22d164bf168", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T15:53:14.000Z" - }, - "end": { - "$date": "2021-01-28T16:25:35.000Z" - }, - "events": [ - { - "uuid": "dcbb31ac-8734-4b13-b74e-f57c00207fa8", - "start": { - "$date": "2021-01-28T15:53:14.000Z" - }, - "end": { - "$date": "2021-01-28T16:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b840292b-1186-4c5f-a9f1-d78504589c28", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-28T16:52:59.000Z" - }, - "end": { - "$date": "2021-01-28T16:54:04.000Z" - }, - "events": [ - { - "uuid": "db6a8c58-b5f3-44bf-b0e5-ce8bb30941d4", - "start": { - "$date": "2021-01-28T16:52:59.000Z" - }, - "end": { - "$date": "2021-01-28T16:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d1f414d1-bb3c-4590-9e3b-d541d9d6d0ab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T17:15:01.000Z" - }, - "end": { - "$date": "2021-01-28T17:17:41.000Z" - }, - "events": [ - { - "uuid": "b8cc3722-8588-4478-8ae1-950ac7b23604", - "start": { - "$date": "2021-01-28T17:15:01.000Z" - }, - "end": { - "$date": "2021-01-28T17:17:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "ba1cec8f-38ca-4fef-a0a2-a2f5798a8f95", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T17:23:12.000Z" - }, - "end": { - "$date": "2021-01-28T17:42:43.000Z" - }, - "events": [ - { - "uuid": "0ffc3d60-4015-4c5b-ad54-5636dd843264", - "start": { - "$date": "2021-01-28T17:23:12.000Z" - }, - "end": { - "$date": "2021-01-28T17:42:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f70af2f2-674c-451b-afc7-a54b5016e890", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-28T17:41:36.000Z" - }, - "end": { - "$date": "2021-01-28T18:00:29.000Z" - }, - "events": [ - { - "uuid": "c55a465e-21eb-48f0-99bc-af49b7c7a639", - "start": { - "$date": "2021-01-28T17:41:36.000Z" - }, - "end": { - "$date": "2021-01-28T18:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "80d3dfad-970e-468e-9da8-bcf2dc944656", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T18:28:09.000Z" - }, - "end": { - "$date": "2021-01-28T18:38:01.000Z" - }, - "events": [ - { - "uuid": "0abd6ecb-3d6a-40f4-85ed-8d4140b444c7", - "start": { - "$date": "2021-01-28T18:28:09.000Z" - }, - "end": { - "$date": "2021-01-28T18:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "4dcd8c58-cc4d-4d3a-86f8-b8d38d949f6e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T19:15:11.000Z" - }, - "end": { - "$date": "2021-01-28T19:49:58.000Z" - }, - "events": [ - { - "uuid": "3ac7e4b3-0f17-4ecb-b210-d0705d865053", - "start": { - "$date": "2021-01-28T19:15:11.000Z" - }, - "end": { - "$date": "2021-01-28T19:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4e3ce5e6-06ff-4547-aaae-867706a33ade", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-28T19:43:05.000Z" - }, - "end": { - "$date": "2021-01-28T19:57:35.000Z" - }, - "events": [ - { - "uuid": "ff0cbb5c-2afa-4a92-bfd4-8f9afc4e902a", - "start": { - "$date": "2021-01-28T19:43:05.000Z" - }, - "end": { - "$date": "2021-01-28T19:57:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bfb6c54e-5b63-4feb-8ede-4cd6b5ffd11e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T19:53:34.000Z" - }, - "end": { - "$date": "2021-01-28T19:56:24.000Z" - }, - "events": [ - { - "uuid": "6f10d5fa-f43e-4beb-a8e1-010559b51737", - "start": { - "$date": "2021-01-28T19:53:34.000Z" - }, - "end": { - "$date": "2021-01-28T19:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "eadeb70b-5fa9-46bb-bfbb-39929d659e1d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-28T20:10:19.000Z" - }, - "end": { - "$date": "2021-01-29T03:01:50.000Z" - }, - "events": [ - { - "uuid": "fae0cd6c-a5d0-4c60-9ea7-42ab987e96e9", - "start": { - "$date": "2021-01-28T20:10:19.000Z" - }, - "end": { - "$date": "2021-01-28T22:12:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06989955-05ed-42f7-ad86-b04750375a69", - "start": { - "$date": "2021-01-28T22:12:19.000Z" - }, - "end": { - "$date": "2021-01-28T22:17:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f8624089-f2e1-4fd8-a6da-0caac71c65dc", - "start": { - "$date": "2021-01-28T22:17:19.000Z" - }, - "end": { - "$date": "2021-01-29T00:06:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "332af292-8876-4dea-b70e-385e7cb72dab", - "start": { - "$date": "2021-01-29T00:06:19.000Z" - }, - "end": { - "$date": "2021-01-29T00:09:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a79e6304-cc1e-42f8-869c-5686f27aa575", - "start": { - "$date": "2021-01-29T00:09:19.000Z" - }, - "end": { - "$date": "2021-01-29T00:13:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a877645-cf9b-4f51-9ae0-7196edff8c56", - "start": { - "$date": "2021-01-29T00:13:19.000Z" - }, - "end": { - "$date": "2021-01-29T00:17:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36242836-afbc-4cf6-9bd0-922f3c7ccf45", - "start": { - "$date": "2021-01-29T00:17:19.000Z" - }, - "end": { - "$date": "2021-01-29T02:14:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03dd4200-cf63-4039-9197-187f5095d32d", - "start": { - "$date": "2021-01-29T02:14:19.000Z" - }, - "end": { - "$date": "2021-01-29T02:23:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "77970bad-1666-43cc-8da8-98cdc740688b", - "start": { - "$date": "2021-01-29T02:23:19.000Z" - }, - "end": { - "$date": "2021-01-29T02:28:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36adca32-9ecd-4e94-a853-94d9059180fb", - "start": { - "$date": "2021-01-29T02:28:19.000Z" - }, - "end": { - "$date": "2021-01-29T02:30:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79f4c360-be71-48f4-842a-3f2ea7fd79a4", - "start": { - "$date": "2021-01-29T02:30:19.000Z" - }, - "end": { - "$date": "2021-01-29T03:01:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b4ee44eb-0f47-4fde-a951-7972e0268168", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-28T20:28:37.000Z" - }, - "end": { - "$date": "2021-01-28T21:02:40.000Z" - }, - "events": [ - { - "uuid": "9863b4f4-31c0-4068-98d0-220f7f406d95", - "start": { - "$date": "2021-01-28T20:28:37.000Z" - }, - "end": { - "$date": "2021-01-28T21:02:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e7f4ffa1-4455-4ba2-85ac-fb80dd6cefbd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-28T20:29:06.000Z" - }, - "end": { - "$date": "2021-01-28T21:38:08.000Z" - }, - "events": [ - { - "uuid": "da76ec56-cce5-45a0-83a4-c49daed55bdc", - "start": { - "$date": "2021-01-28T20:29:06.000Z" - }, - "end": { - "$date": "2021-01-28T21:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3434c887-51a4-46bd-a687-768b58ce632b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T21:15:25.000Z" - }, - "end": { - "$date": "2021-01-28T21:17:50.000Z" - }, - "events": [ - { - "uuid": "8eaac1de-a1b9-48ef-9334-f8fd5bcca906", - "start": { - "$date": "2021-01-28T21:15:25.000Z" - }, - "end": { - "$date": "2021-01-28T21:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f0cf2b37-cdec-4bf9-9ac8-698376e60451", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T21:19:40.000Z" - }, - "end": { - "$date": "2021-01-28T21:41:46.000Z" - }, - "events": [ - { - "uuid": "b1710fa9-270e-41d2-bafb-82b52ca512d8", - "start": { - "$date": "2021-01-28T21:19:40.000Z" - }, - "end": { - "$date": "2021-01-28T21:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2228eb23-f23c-4b76-940e-ecf884eaf7af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-28T21:27:11.000Z" - }, - "end": { - "$date": "2021-01-28T22:08:34.000Z" - }, - "events": [ - { - "uuid": "d9b7c8f2-8af8-422f-a8af-9698ba707ef6", - "start": { - "$date": "2021-01-28T21:27:11.000Z" - }, - "end": { - "$date": "2021-01-28T22:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2727ffaa-615b-430a-b99d-288969fe6daf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-28T21:41:10.000Z" - }, - "end": { - "$date": "2021-01-28T21:44:09.000Z" - }, - "events": [ - { - "uuid": "d00cbf1b-4f4e-418b-b501-9ded78ad7043", - "start": { - "$date": "2021-01-28T21:41:10.000Z" - }, - "end": { - "$date": "2021-01-28T21:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "97b67a90-32c6-4749-8966-5d06288c0ce2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-28T21:44:21.000Z" - }, - "end": { - "$date": "2021-01-28T22:08:49.000Z" - }, - "events": [ - { - "uuid": "34ddc058-ddea-4b87-b133-2a1ed71d7237", - "start": { - "$date": "2021-01-28T21:44:21.000Z" - }, - "end": { - "$date": "2021-01-28T22:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "07a9b805-96ac-4470-b8d7-8ae65f785a02", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T22:00:13.000Z" - }, - "end": { - "$date": "2021-01-28T22:00:18.000Z" - }, - "events": [ - { - "uuid": "25181f59-3e95-492f-8ad8-cd58e664cbcd", - "start": { - "$date": "2021-01-28T22:00:13.000Z" - }, - "end": { - "$date": "2021-01-28T22:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e20879c3-907b-48c6-baeb-b6321641f185", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-28T22:18:11.000Z" - }, - "end": { - "$date": "2021-01-29T01:24:48.000Z" - }, - "events": [ - { - "uuid": "d98c595e-d2a5-4c9b-a01a-2c7907772d51", - "start": { - "$date": "2021-01-28T22:18:11.000Z" - }, - "end": { - "$date": "2021-01-29T01:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "11c6492f-0a2c-47b5-8e7f-5b7dd3a51999", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-28T22:18:37.000Z" - }, - "end": { - "$date": "2021-01-28T22:21:58.000Z" - }, - "events": [ - { - "uuid": "743b5bd0-0487-442d-8176-310b0f3d34ed", - "start": { - "$date": "2021-01-28T22:18:37.000Z" - }, - "end": { - "$date": "2021-01-28T22:21:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1697844c-b065-417e-a8fa-44dd378b8821", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-28T22:23:18.000Z" - }, - "end": { - "$date": "2021-01-29T01:24:45.000Z" - }, - "events": [ - { - "uuid": "bbe1510c-0bce-44bb-89cb-c49fbf37c4df", - "start": { - "$date": "2021-01-28T22:23:18.000Z" - }, - "end": { - "$date": "2021-01-29T01:24:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "26dc6688-dddc-46e7-a42b-a8791bd22742", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T22:25:07.000Z" - }, - "end": { - "$date": "2021-01-28T22:56:55.000Z" - }, - "events": [ - { - "uuid": "b5fc1741-95e7-41b3-a8d1-0498bd119595", - "start": { - "$date": "2021-01-28T22:25:07.000Z" - }, - "end": { - "$date": "2021-01-28T22:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "16c0d53b-545b-4233-bf36-5b190e78fcdd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-28T22:37:51.000Z" - }, - "end": { - "$date": "2021-01-28T23:50:37.000Z" - }, - "events": [ - { - "uuid": "0e344adb-b489-4c36-94b8-5bf90e091195", - "start": { - "$date": "2021-01-28T22:37:51.000Z" - }, - "end": { - "$date": "2021-01-28T23:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2e3aaf88-99e6-46d3-af62-0fa3b0d4a4cb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-28T22:38:16.000Z" - }, - "end": { - "$date": "2021-01-28T23:51:45.000Z" - }, - "events": [ - { - "uuid": "f02b083e-1cf7-4a53-ac32-85ec5367e1de", - "start": { - "$date": "2021-01-28T22:38:16.000Z" - }, - "end": { - "$date": "2021-01-28T23:51:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb6ffe4c-5d0a-4e6a-86cb-8785bc043ff2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-28T22:57:05.000Z" - }, - "end": { - "$date": "2021-01-28T23:46:47.000Z" - }, - "events": [ - { - "uuid": "50f03997-a516-4d83-9b05-b07e1df7c65e", - "start": { - "$date": "2021-01-28T22:57:05.000Z" - }, - "end": { - "$date": "2021-01-28T23:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b7f911ca-ded9-4a96-a44a-f8549f629c51", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-28T23:03:23.000Z" - }, - "end": { - "$date": "2021-01-28T23:23:56.000Z" - }, - "events": [ - { - "uuid": "85702518-160d-4f57-bd7e-afe40cbb12e8", - "start": { - "$date": "2021-01-28T23:03:23.000Z" - }, - "end": { - "$date": "2021-01-28T23:23:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "01f9a5da-2ba6-47f5-97af-c51db4656cce", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-28T23:43:39.000Z" - }, - "end": { - "$date": "2021-01-29T00:20:10.000Z" - }, - "events": [ - { - "uuid": "4a07af0e-4c69-480b-b607-b1b982aba881", - "start": { - "$date": "2021-01-28T23:43:39.000Z" - }, - "end": { - "$date": "2021-01-29T00:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9c2bed25-84c1-487a-ba98-6e5be9353969", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-29T00:01:18.000Z" - }, - "end": { - "$date": "2021-01-29T00:02:17.000Z" - }, - "events": [ - { - "uuid": "6702c112-4608-4f09-b0f8-ea3201f12fdc", - "start": { - "$date": "2021-01-29T00:01:18.000Z" - }, - "end": { - "$date": "2021-01-29T00:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "66209f6f-27aa-4cc8-9a66-f3fd3e3a27e9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-29T00:03:28.000Z" - }, - "end": { - "$date": "2021-01-29T00:58:10.000Z" - }, - "events": [ - { - "uuid": "3bfd67a9-897f-4987-a62c-6bfb2a500fb1", - "start": { - "$date": "2021-01-29T00:03:28.000Z" - }, - "end": { - "$date": "2021-01-29T00:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "860ab468-e593-4ade-8960-8119c083f9ba", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-29T01:25:49.000Z" - }, - "end": { - "$date": "2021-01-29T02:04:31.000Z" - }, - "events": [ - { - "uuid": "d7a1f077-08b2-4bcc-ab08-8ab518d0a0a8", - "start": { - "$date": "2021-01-29T01:25:49.000Z" - }, - "end": { - "$date": "2021-01-29T02:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c430c285-ef02-4713-b5d6-edad802c0ad7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-29T01:57:51.000Z" - }, - "end": { - "$date": "2021-01-29T02:46:12.000Z" - }, - "events": [ - { - "uuid": "7cd9add4-c90b-4dab-82e5-70605a3adb2b", - "start": { - "$date": "2021-01-29T01:57:51.000Z" - }, - "end": { - "$date": "2021-01-29T02:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "29106740-0d83-4cf4-88ff-59477edba85b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-29T02:07:04.000Z" - }, - "end": { - "$date": "2021-01-29T02:44:28.000Z" - }, - "events": [ - { - "uuid": "bfe9f146-acc1-4368-a5e9-57bdf254c8fa", - "start": { - "$date": "2021-01-29T02:07:04.000Z" - }, - "end": { - "$date": "2021-01-29T02:44:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "686c9d5f-648b-4120-a73b-17ccee7b821d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T02:35:17.000Z" - }, - "end": { - "$date": "2021-01-29T02:38:59.000Z" - }, - "events": [ - { - "uuid": "e1e1460c-e644-4f7a-97b2-1ef61d8b1b6d", - "start": { - "$date": "2021-01-29T02:35:17.000Z" - }, - "end": { - "$date": "2021-01-29T02:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8ce59264-e490-460b-9fdc-f123371b9639", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T02:44:48.000Z" - }, - "end": { - "$date": "2021-01-29T02:57:29.000Z" - }, - "events": [ - { - "uuid": "2079bc38-9cb7-4399-9f8b-7276684b52c5", - "start": { - "$date": "2021-01-29T02:44:48.000Z" - }, - "end": { - "$date": "2021-01-29T02:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "438cec23-9512-4cc1-bb1f-6927eb93a22b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T02:59:50.000Z" - }, - "end": { - "$date": "2021-01-29T04:03:05.000Z" - }, - "events": [ - { - "uuid": "40a64663-767b-42cd-86e3-c17fdcccbedc", - "start": { - "$date": "2021-01-29T02:59:50.000Z" - }, - "end": { - "$date": "2021-01-29T04:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8adf0501-5fa7-41ef-8bb7-5edd8a59123f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T03:03:42.000Z" - }, - "end": { - "$date": "2021-01-29T03:05:57.000Z" - }, - "events": [ - { - "uuid": "0b1d03fa-769a-48bc-9a96-552c4ea5c39d", - "start": { - "$date": "2021-01-29T03:03:42.000Z" - }, - "end": { - "$date": "2021-01-29T03:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "02149a88-ae3a-4e17-81e6-24c723b4a521", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T04:23:36.000Z" - }, - "end": { - "$date": "2021-01-29T04:23:36.000Z" - }, - "events": [ - { - "uuid": "91dacdd2-d39e-4aa2-9e9e-94ca2cb1fc84", - "start": { - "$date": "2021-01-29T04:23:36.000Z" - }, - "end": { - "$date": "2021-01-29T04:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "176c8ea4-10b8-4c37-8a0d-9d200b1c6344", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-29T05:12:01.000Z" - }, - "end": { - "$date": "2021-01-29T05:36:16.000Z" - }, - "events": [ - { - "uuid": "3100a9a6-f57c-4ed6-8ea7-e1a925319674", - "start": { - "$date": "2021-01-29T05:12:01.000Z" - }, - "end": { - "$date": "2021-01-29T05:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "80d4ae7b-a4d5-4ed5-a360-96df418d08c1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-29T03:48:46.000Z" - }, - "end": { - "$date": "2021-01-29T04:22:12.000Z" - }, - "events": [ - { - "uuid": "113b22bf-bb9a-4621-9c78-be2780d4d67a", - "start": { - "$date": "2021-01-29T03:48:46.000Z" - }, - "end": { - "$date": "2021-01-29T04:22:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "df14dd54-e72f-4144-892e-986406d4cac3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T04:03:36.000Z" - }, - "end": { - "$date": "2021-01-29T04:37:02.000Z" - }, - "events": [ - { - "uuid": "4fc0c66b-71fc-47d4-b20a-fc5356399c34", - "start": { - "$date": "2021-01-29T04:03:36.000Z" - }, - "end": { - "$date": "2021-01-29T04:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "6c4bdee7-cba0-4beb-81db-755a81bfc071", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-29T04:19:53.000Z" - }, - "end": { - "$date": "2021-01-29T05:58:38.000Z" - }, - "events": [ - { - "uuid": "ff762e23-7c03-4267-ac7d-a4235ebad1e1", - "start": { - "$date": "2021-01-29T04:19:53.000Z" - }, - "end": { - "$date": "2021-01-29T05:58:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e57be762-de98-42c5-b672-dc439c6e99e5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T04:25:31.000Z" - }, - "end": { - "$date": "2021-01-29T04:43:32.000Z" - }, - "events": [ - { - "uuid": "9b04b682-f7d1-49f9-becb-46cdc0611239", - "start": { - "$date": "2021-01-29T04:25:31.000Z" - }, - "end": { - "$date": "2021-01-29T04:43:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cc57ce1-3bf8-4c0d-950e-d7535eb6410d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-29T04:26:22.000Z" - }, - "end": { - "$date": "2021-01-29T04:43:28.000Z" - }, - "events": [ - { - "uuid": "74d54878-9013-48b8-a454-198d011ca4fe", - "start": { - "$date": "2021-01-29T04:26:22.000Z" - }, - "end": { - "$date": "2021-01-29T04:43:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "431e6960-0f61-410c-82a0-d02b4081e92a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T04:37:23.000Z" - }, - "end": { - "$date": "2021-01-29T04:46:59.000Z" - }, - "events": [ - { - "uuid": "797fdba8-ce40-45f3-b4d0-ecfe1c34ad3c", - "start": { - "$date": "2021-01-29T04:37:23.000Z" - }, - "end": { - "$date": "2021-01-29T04:46:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf7d5f3c-98ee-45c4-95c7-b43510c2e8c2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T04:46:57.000Z" - }, - "end": { - "$date": "2021-01-29T05:25:44.000Z" - }, - "events": [ - { - "uuid": "6f1ecbe1-bd75-4857-9136-2781e47f202f", - "start": { - "$date": "2021-01-29T04:46:57.000Z" - }, - "end": { - "$date": "2021-01-29T05:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5df0713f-444a-45d4-9bf4-9ccd33a50391", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-29T04:43:37.000Z" - }, - "end": { - "$date": "2021-01-29T07:25:46.000Z" - }, - "events": [ - { - "uuid": "f52845d8-2dce-476f-a4bb-5f60cac2ab4f", - "start": { - "$date": "2021-01-29T04:43:37.000Z" - }, - "end": { - "$date": "2021-01-29T07:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a43bdf5-ce97-47b5-9745-c9540c099b16", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-29T05:25:35.000Z" - }, - "end": { - "$date": "2021-01-29T05:25:53.000Z" - }, - "events": [ - { - "uuid": "df2b5c92-fdbb-4032-864d-845e6307b86a", - "start": { - "$date": "2021-01-29T05:25:35.000Z" - }, - "end": { - "$date": "2021-01-29T05:25:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ff2cd2b0-a4f0-4e84-a63c-fd108c419ac2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T04:47:25.000Z" - }, - "end": { - "$date": "2021-01-29T07:19:24.000Z" - }, - "events": [ - { - "uuid": "9c206b99-b996-43fb-8deb-48e5b2dc9ddf", - "start": { - "$date": "2021-01-29T04:47:25.000Z" - }, - "end": { - "$date": "2021-01-29T07:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "03e66b11-69a5-442a-bd41-54c9cf644bc6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-29T04:54:44.000Z" - }, - "end": { - "$date": "2021-01-29T05:38:41.000Z" - }, - "events": [ - { - "uuid": "70aa3133-f65f-44e2-9cfb-0e839273a2ba", - "start": { - "$date": "2021-01-29T04:54:44.000Z" - }, - "end": { - "$date": "2021-01-29T05:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9464cc4a-d83a-46bf-b74f-507c322e9bd7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-29T05:39:32.000Z" - }, - "end": { - "$date": "2021-01-29T06:11:37.000Z" - }, - "events": [ - { - "uuid": "ff49b8c3-2cf3-4224-8b07-92aec5bc46d0", - "start": { - "$date": "2021-01-29T05:39:32.000Z" - }, - "end": { - "$date": "2021-01-29T06:08:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80ea6723-0890-466b-9b4c-bfd74e3bb847", - "start": { - "$date": "2021-01-29T06:08:32.000Z" - }, - "end": { - "$date": "2021-01-29T06:11:37.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "5ed73361-70e9-4f5d-af9d-6ede5586f228", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-29T05:51:28.000Z" - }, - "end": { - "$date": "2021-01-29T07:37:00.000Z" - }, - "events": [ - { - "uuid": "da1d9978-5fc2-4e7b-8e86-8d1128a77fae", - "start": { - "$date": "2021-01-29T05:51:28.000Z" - }, - "end": { - "$date": "2021-01-29T07:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f218a83-12ae-44e6-a0e1-660543e66abc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T06:03:18.000Z" - }, - "end": { - "$date": "2021-01-29T06:38:51.000Z" - }, - "events": [ - { - "uuid": "575cf48d-98e1-48ab-89aa-7c12e7c48751", - "start": { - "$date": "2021-01-29T06:03:18.000Z" - }, - "end": { - "$date": "2021-01-29T06:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35ee90c2-e3f5-43d4-87ba-0913943a8683", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-29T06:03:52.000Z" - }, - "end": { - "$date": "2021-01-29T06:38:49.000Z" - }, - "events": [ - { - "uuid": "2d1fec86-89d3-46b3-9028-6587395b9bbb", - "start": { - "$date": "2021-01-29T06:03:52.000Z" - }, - "end": { - "$date": "2021-01-29T06:38:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81151ef9-4263-4930-b3c5-cfc5c6c715a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T06:42:55.000Z" - }, - "end": { - "$date": "2021-01-29T07:03:45.000Z" - }, - "events": [ - { - "uuid": "14638734-993f-481c-ad60-2c4f16ca7f20", - "start": { - "$date": "2021-01-29T06:42:55.000Z" - }, - "end": { - "$date": "2021-01-29T07:03:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e58eff3b-264f-43f3-9dad-9048d6101d3d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-29T06:44:09.000Z" - }, - "end": { - "$date": "2021-01-29T07:03:35.000Z" - }, - "events": [ - { - "uuid": "91050c64-ad20-45cc-9fb7-813e4288a67e", - "start": { - "$date": "2021-01-29T06:44:09.000Z" - }, - "end": { - "$date": "2021-01-29T07:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d553aaa-45f9-4941-a6aa-87cf3c614344", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-29T07:11:15.000Z" - }, - "end": { - "$date": "2021-01-29T07:52:37.000Z" - }, - "events": [ - { - "uuid": "abd8f9cf-d973-4b29-bf67-b88b7a6c1fb0", - "start": { - "$date": "2021-01-29T07:11:15.000Z" - }, - "end": { - "$date": "2021-01-29T07:52:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ed9cc75d-a5ad-4af6-b4ff-3793554403c2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T07:09:56.000Z" - }, - "end": { - "$date": "2021-01-29T07:27:43.000Z" - }, - "events": [ - { - "uuid": "5453212e-c8dc-4d6f-952d-a78ffcf1ea3a", - "start": { - "$date": "2021-01-29T07:09:56.000Z" - }, - "end": { - "$date": "2021-01-29T07:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08d0957d-a876-48e5-a943-62f1f5668c5a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-29T14:47:24.000Z" - }, - "end": { - "$date": "2021-01-29T15:09:07.000Z" - }, - "events": [ - { - "uuid": "04d314e6-332c-440a-a257-be229198cd86", - "start": { - "$date": "2021-01-29T14:47:24.000Z" - }, - "end": { - "$date": "2021-01-29T15:09:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09411504-2bb6-443d-beb8-7b86c12ef4b8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-29T16:31:38.000Z" - }, - "end": { - "$date": "2021-01-29T18:35:05.000Z" - }, - "events": [ - { - "uuid": "4990f059-3a39-42d8-8c7e-3e3a950c990f", - "start": { - "$date": "2021-01-29T16:31:38.000Z" - }, - "end": { - "$date": "2021-01-29T18:35:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b7eb7c3b-155c-4706-b2e0-e6008aa03c13", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-29T16:39:21.000Z" - }, - "end": { - "$date": "2021-01-29T17:28:38.000Z" - }, - "events": [ - { - "uuid": "415d984a-7d20-4f68-a98c-21374ef0edb3", - "start": { - "$date": "2021-01-29T16:39:21.000Z" - }, - "end": { - "$date": "2021-01-29T17:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b607914d-48b9-4497-a8f2-4bb4d95dae97", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-29T16:59:25.000Z" - }, - "end": { - "$date": "2021-01-29T17:01:42.000Z" - }, - "events": [ - { - "uuid": "8f7555ae-2f8b-46e8-8eff-2b013dd3513e", - "start": { - "$date": "2021-01-29T16:59:25.000Z" - }, - "end": { - "$date": "2021-01-29T17:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cb050001-0990-4648-b0c9-07b36c797c06", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-29T17:03:15.000Z" - }, - "end": { - "$date": "2021-01-29T18:06:08.000Z" - }, - "events": [ - { - "uuid": "2ecc0809-3c82-41b7-817a-938f9893f6d1", - "start": { - "$date": "2021-01-29T17:03:15.000Z" - }, - "end": { - "$date": "2021-01-29T18:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "4cca00a2-1213-46a0-9a47-851b7c635cc9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-29T17:51:26.000Z" - }, - "end": { - "$date": "2021-01-29T19:15:16.000Z" - }, - "events": [ - { - "uuid": "33586399-f999-4dde-a9a9-3004a07f7ca5", - "start": { - "$date": "2021-01-29T17:51:26.000Z" - }, - "end": { - "$date": "2021-01-29T19:02:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f54f258e-d199-4021-b127-560337271775", - "start": { - "$date": "2021-01-29T19:02:26.000Z" - }, - "end": { - "$date": "2021-01-29T19:09:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4ca3b9c1-dff0-4eb0-a89b-52a7cd995871", - "start": { - "$date": "2021-01-29T19:09:26.000Z" - }, - "end": { - "$date": "2021-01-29T19:15:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7f6ec133-5262-4c1d-a608-6d4c9d24b89d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T18:40:43.000Z" - }, - "end": { - "$date": "2021-01-29T18:44:13.000Z" - }, - "events": [ - { - "uuid": "06f258c8-13b2-4b81-813c-1d7b493967f1", - "start": { - "$date": "2021-01-29T18:40:43.000Z" - }, - "end": { - "$date": "2021-01-29T18:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "94845689-d253-4204-b060-8bc31d196e6e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T18:44:24.000Z" - }, - "end": { - "$date": "2021-01-29T18:45:54.000Z" - }, - "events": [ - { - "uuid": "841fc0db-b40c-42f4-b4c5-52d91b631904", - "start": { - "$date": "2021-01-29T18:44:24.000Z" - }, - "end": { - "$date": "2021-01-29T18:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cf9fca09-4dbb-4ed4-8aed-26c957332b2d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T18:56:30.000Z" - }, - "end": { - "$date": "2021-01-29T18:58:05.000Z" - }, - "events": [ - { - "uuid": "94acc4a8-c3db-4084-909c-e6a4db46bd7c", - "start": { - "$date": "2021-01-29T18:56:30.000Z" - }, - "end": { - "$date": "2021-01-29T18:58:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fb21ec90-e17f-4f56-baac-a75d37bed5bf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T19:33:53.000Z" - }, - "end": { - "$date": "2021-01-29T19:39:48.000Z" - }, - "events": [ - { - "uuid": "89cc9dd2-8c12-4041-b1d4-38a18c3ab089", - "start": { - "$date": "2021-01-29T19:33:53.000Z" - }, - "end": { - "$date": "2021-01-29T19:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3962431a-b521-4f73-8368-506a73f9956b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T19:44:24.000Z" - }, - "end": { - "$date": "2021-01-29T19:45:34.000Z" - }, - "events": [ - { - "uuid": "b00f10f6-1e61-49e9-8175-c494f2dbeed1", - "start": { - "$date": "2021-01-29T19:44:24.000Z" - }, - "end": { - "$date": "2021-01-29T19:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f6760919-8b0f-413f-a67d-f47ec2aa2184", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T19:52:20.000Z" - }, - "end": { - "$date": "2021-01-29T20:05:56.000Z" - }, - "events": [ - { - "uuid": "445108b3-1504-4257-ad8b-f3030b925c57", - "start": { - "$date": "2021-01-29T19:52:20.000Z" - }, - "end": { - "$date": "2021-01-29T20:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a6481e46-7c3b-4b41-a500-95f5bf63d83a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-29T20:07:41.000Z" - }, - "end": { - "$date": "2021-01-29T21:22:00.000Z" - }, - "events": [ - { - "uuid": "8a825b38-5e75-4f26-a6f0-f671c22e8a41", - "start": { - "$date": "2021-01-29T20:07:41.000Z" - }, - "end": { - "$date": "2021-01-29T21:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6aa9cc04-e125-4d1e-bb0d-269d68cb6127", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T20:07:51.000Z" - }, - "end": { - "$date": "2021-01-29T20:14:17.000Z" - }, - "events": [ - { - "uuid": "77a558fd-2bf7-4c36-9ab1-216d0fbcc3db", - "start": { - "$date": "2021-01-29T20:07:51.000Z" - }, - "end": { - "$date": "2021-01-29T20:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b42147b1-5347-483f-8bf3-dfb937b66080", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-29T20:23:04.000Z" - }, - "end": { - "$date": "2021-01-29T20:47:30.000Z" - }, - "events": [ - { - "uuid": "8d9b781b-4594-4349-ad0b-bd27769fcbd8", - "start": { - "$date": "2021-01-29T20:23:04.000Z" - }, - "end": { - "$date": "2021-01-29T20:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cbff4cb0-9131-47f3-bc05-a7f5c95175cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T20:33:26.000Z" - }, - "end": { - "$date": "2021-01-29T20:34:50.000Z" - }, - "events": [ - { - "uuid": "1eb70db0-eba6-4b8f-87cb-393e321ba9fc", - "start": { - "$date": "2021-01-29T20:33:26.000Z" - }, - "end": { - "$date": "2021-01-29T20:34:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "20d3c498-f0c8-447f-93a9-533047112058", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T20:34:53.000Z" - }, - "end": { - "$date": "2021-01-29T20:39:58.000Z" - }, - "events": [ - { - "uuid": "dbb3e663-3593-408b-b84f-49524b1da321", - "start": { - "$date": "2021-01-29T20:34:53.000Z" - }, - "end": { - "$date": "2021-01-29T20:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f590edf2-cc77-4c7a-9aaf-43bab25b58fb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-29T22:05:50.000Z" - }, - "end": { - "$date": "2021-01-29T22:44:39.000Z" - }, - "events": [ - { - "uuid": "932ff727-885c-494f-81a0-07fd0d6f1b20", - "start": { - "$date": "2021-01-29T22:05:50.000Z" - }, - "end": { - "$date": "2021-01-29T22:44:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "70417800-7d13-4fc5-b7d6-6b7d0ec599e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-29T22:29:19.000Z" - }, - "end": { - "$date": "2021-01-30T00:15:51.000Z" - }, - "events": [ - { - "uuid": "f0e65c56-b067-4bbb-a9cb-9a1baa075431", - "start": { - "$date": "2021-01-29T22:29:19.000Z" - }, - "end": { - "$date": "2021-01-30T00:15:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "aea777f1-38c4-482a-a10e-a064ec0941a7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-29T22:39:30.000Z" - }, - "end": { - "$date": "2021-01-30T00:38:34.000Z" - }, - "events": [ - { - "uuid": "773fd7af-2a97-4bf6-87af-6b49c73d466a", - "start": { - "$date": "2021-01-29T22:39:30.000Z" - }, - "end": { - "$date": "2021-01-30T00:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c93a59f7-e740-4645-9d55-8c0a99b7faa9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-29T22:41:28.000Z" - }, - "end": { - "$date": "2021-01-29T23:10:33.000Z" - }, - "events": [ - { - "uuid": "792ab790-56b7-4b38-b19d-43d5ac22e8a4", - "start": { - "$date": "2021-01-29T22:41:28.000Z" - }, - "end": { - "$date": "2021-01-29T23:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "73b8449f-ca2c-492a-811f-da4de135be06", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-29T22:47:07.000Z" - }, - "end": { - "$date": "2021-01-29T23:04:39.000Z" - }, - "events": [ - { - "uuid": "59f97e0e-b0f1-439a-a8db-ae523e7584f4", - "start": { - "$date": "2021-01-29T22:47:07.000Z" - }, - "end": { - "$date": "2021-01-29T23:04:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8728b2e6-1cc0-4cb9-995f-f16c6eba443f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T22:49:02.000Z" - }, - "end": { - "$date": "2021-01-29T22:53:07.000Z" - }, - "events": [ - { - "uuid": "866a8546-aa44-43c3-8eeb-6e06bdfb1435", - "start": { - "$date": "2021-01-29T22:49:02.000Z" - }, - "end": { - "$date": "2021-01-29T22:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec0401cd-10de-4401-8ebc-7066d12b0079", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-29T22:57:57.000Z" - }, - "end": { - "$date": "2021-01-29T23:33:48.000Z" - }, - "events": [ - { - "uuid": "5540558f-cacb-4b9f-b4e3-fe79bab6ed51", - "start": { - "$date": "2021-01-29T22:57:57.000Z" - }, - "end": { - "$date": "2021-01-29T23:33:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac022f8b-9360-471e-8230-25b0dfb281b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-29T23:04:16.000Z" - }, - "end": { - "$date": "2021-01-29T23:33:49.000Z" - }, - "events": [ - { - "uuid": "9b38803a-dec3-43c4-8723-313c0ffc9061", - "start": { - "$date": "2021-01-29T23:04:16.000Z" - }, - "end": { - "$date": "2021-01-29T23:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e130baa3-ee9d-4050-a433-c15549b63d35", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-29T23:01:05.000Z" - }, - "end": { - "$date": "2021-01-29T23:44:23.000Z" - }, - "events": [ - { - "uuid": "f0d775ba-df17-4546-b5b9-2dfd22c31cdf", - "start": { - "$date": "2021-01-29T23:01:05.000Z" - }, - "end": { - "$date": "2021-01-29T23:12:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bfc2820f-4c76-4aa1-a234-40a2d5afb5bd", - "start": { - "$date": "2021-01-29T23:12:05.000Z" - }, - "end": { - "$date": "2021-01-29T23:44:23.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "34196d19-efdb-4636-bf48-43c61ce3b149", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-29T23:20:47.000Z" - }, - "end": { - "$date": "2021-01-29T23:39:53.000Z" - }, - "events": [ - { - "uuid": "b4b71b22-4cca-4e52-ba12-a15c7fedaa4a", - "start": { - "$date": "2021-01-29T23:20:47.000Z" - }, - "end": { - "$date": "2021-01-29T23:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bb76b3c3-5361-4baf-b688-0bd3cd3a5d3c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-29T23:25:53.000Z" - }, - "end": { - "$date": "2021-01-29T23:43:54.000Z" - }, - "events": [ - { - "uuid": "a4b349ad-efb8-45a1-92ae-f8271331d770", - "start": { - "$date": "2021-01-29T23:25:53.000Z" - }, - "end": { - "$date": "2021-01-29T23:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afe567a4-afea-4c76-b570-6cbf65d6ee16", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-30T01:01:38.000Z" - }, - "end": { - "$date": "2021-01-30T01:03:18.000Z" - }, - "events": [ - { - "uuid": "29a8fed3-69ca-48f7-a929-ebef28222e51", - "start": { - "$date": "2021-01-30T01:01:38.000Z" - }, - "end": { - "$date": "2021-01-30T01:03:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c73d339-f209-4d5a-b964-8c633a4b6981", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-29T23:39:54.000Z" - }, - "end": { - "$date": "2021-01-30T00:16:50.000Z" - }, - "events": [ - { - "uuid": "a498ea5e-88ed-4e2c-b343-cd6fab0e5ff7", - "start": { - "$date": "2021-01-29T23:39:54.000Z" - }, - "end": { - "$date": "2021-01-30T00:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "510dd126-46a7-4a6f-af22-2503332032d5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-29T23:39:36.000Z" - }, - "end": { - "$date": "2021-01-30T00:16:49.000Z" - }, - "events": [ - { - "uuid": "1320d138-e677-46e5-b982-b209c433162e", - "start": { - "$date": "2021-01-29T23:39:36.000Z" - }, - "end": { - "$date": "2021-01-30T00:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a9467957-df56-49e4-b279-e2b25c680863", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-29T23:44:10.000Z" - }, - "end": { - "$date": "2021-01-30T00:14:44.000Z" - }, - "events": [ - { - "uuid": "19313a96-088b-40cb-9e80-be52fd819595", - "start": { - "$date": "2021-01-29T23:44:10.000Z" - }, - "end": { - "$date": "2021-01-30T00:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a40477e4-43b7-4421-a586-b62f6fd8c870", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-29T23:45:24.000Z" - }, - "end": { - "$date": "2021-01-30T00:10:27.000Z" - }, - "events": [ - { - "uuid": "fbf83a86-7553-4850-b8b4-af9fa0f06f5e", - "start": { - "$date": "2021-01-29T23:45:24.000Z" - }, - "end": { - "$date": "2021-01-30T00:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "0293d4fb-7152-4640-940f-014798cf1e79", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T00:18:02.000Z" - }, - "end": { - "$date": "2021-01-30T03:01:04.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-30T00:18:02.000Z" - }, - "end": { - "$date": "2021-01-30T03:01:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a61281bd-e838-47ec-8619-24f79ae72f1f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T01:01:31.000Z" - }, - "end": { - "$date": "2021-01-30T01:03:03.000Z" - }, - "events": [ - { - "uuid": "dd197cfd-0180-41f7-b186-cf86bea57615", - "start": { - "$date": "2021-01-30T01:01:31.000Z" - }, - "end": { - "$date": "2021-01-30T01:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a835c3ae-6946-4555-96f2-428ce1f69dc3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T00:22:20.000Z" - }, - "end": { - "$date": "2021-01-30T01:01:29.000Z" - }, - "events": [ - { - "uuid": "aaf7b5c3-705c-46c7-9c87-31d86118b0c9", - "start": { - "$date": "2021-01-30T00:22:20.000Z" - }, - "end": { - "$date": "2021-01-30T01:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a7f24ec5-c106-455b-9a5d-353e85e36327", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T01:23:14.000Z" - }, - "end": { - "$date": "2021-01-30T01:44:01.000Z" - }, - "events": [ - { - "uuid": "139d77d7-7807-49fa-8fa5-32c977c992c3", - "start": { - "$date": "2021-01-30T01:23:14.000Z" - }, - "end": { - "$date": "2021-01-30T01:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1e27d904-58c5-4be3-af98-170e5feb3ca1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T01:44:41.000Z" - }, - "end": { - "$date": "2021-01-30T03:26:14.000Z" - }, - "events": [ - { - "uuid": "ac8760ee-9bc1-461e-9785-537904bd8c04", - "start": { - "$date": "2021-01-30T01:44:41.000Z" - }, - "end": { - "$date": "2021-01-30T03:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f549bc24-7ab6-4461-954b-e25d777e5eab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-30T02:54:26.000Z" - }, - "end": { - "$date": "2021-01-30T02:58:35.000Z" - }, - "events": [ - { - "uuid": "1eeb50f8-c57f-4b5d-9e85-4629815eaa89", - "start": { - "$date": "2021-01-30T02:54:26.000Z" - }, - "end": { - "$date": "2021-01-30T02:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ac10a953-9135-4917-9ebc-39d2d991b8cb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-30T02:59:11.000Z" - }, - "end": { - "$date": "2021-01-30T03:24:43.000Z" - }, - "events": [ - { - "uuid": "746f554f-6b85-4a90-983f-b97eea9cf8eb", - "start": { - "$date": "2021-01-30T02:59:11.000Z" - }, - "end": { - "$date": "2021-01-30T03:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "ac6b91e5-5ed0-48f1-b8b3-212734740f4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T03:03:29.000Z" - }, - "end": { - "$date": "2021-01-30T04:03:52.000Z" - }, - "events": [ - { - "uuid": "66f4501b-abd7-4a3f-ac50-ef99a1cb4605", - "start": { - "$date": "2021-01-30T03:03:29.000Z" - }, - "end": { - "$date": "2021-01-30T04:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5925a066-5a50-4fb9-93cd-ad259f89c96a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-30T04:46:02.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:23.000Z" - }, - "events": [ - { - "uuid": "fc399233-86c6-4078-887f-051f96c00261", - "start": { - "$date": "2021-01-30T04:46:02.000Z" - }, - "end": { - "$date": "2021-01-30T05:55:02.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "297cc7ed-5035-4a11-b8d6-a63fa5fd1066", - "start": { - "$date": "2021-01-30T05:55:02.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fbefbef-9f4c-4ab2-9f21-756dd9989b0c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T03:22:31.000Z" - }, - "end": { - "$date": "2021-01-30T03:33:14.000Z" - }, - "events": [ - { - "uuid": "f4f9719e-bf27-4f8a-a7b4-9b975a6c7105", - "start": { - "$date": "2021-01-30T03:22:31.000Z" - }, - "end": { - "$date": "2021-01-30T03:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "18fcb26d-b96e-4b19-a569-b1080d88babd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-30T03:24:59.000Z" - }, - "end": { - "$date": "2021-01-30T03:39:58.000Z" - }, - "events": [ - { - "uuid": "a18b845d-3de8-4554-9991-f61d624a3bde", - "start": { - "$date": "2021-01-30T03:24:59.000Z" - }, - "end": { - "$date": "2021-01-30T03:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "177a8f77-bf83-40fc-8dfe-8dff95e392d6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T03:37:24.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "events": [ - { - "uuid": "b7ebbd77-9c46-4b87-aa90-f20afa192d07", - "start": { - "$date": "2021-01-30T03:37:24.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32d83165-1efa-42ad-a0f2-f4d852a5ffb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T03:37:29.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "events": [ - { - "uuid": "757b8ba0-e81b-4348-a28d-fe18ade73a8b", - "start": { - "$date": "2021-01-30T03:37:29.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b1981a5-518d-4c1e-bf07-2bad9f69bd23", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-30T03:37:26.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "events": [ - { - "uuid": "0a6fd2ac-c066-4c3f-be2e-d9a08928710a", - "start": { - "$date": "2021-01-30T03:37:26.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6347064-9d57-47c9-a4e3-5e37a5f80ccf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T03:37:25.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "events": [ - { - "uuid": "f3ec6fac-3eb8-4f0e-b950-e5554e4ab05f", - "start": { - "$date": "2021-01-30T03:37:25.000Z" - }, - "end": { - "$date": "2021-01-30T03:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b755290-63cf-4c41-9ac9-5eddd94e4a10", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T03:41:03.000Z" - }, - "end": { - "$date": "2021-01-30T04:15:04.000Z" - }, - "events": [ - { - "uuid": "cb818470-2115-4d29-af2f-57d1a376734a", - "start": { - "$date": "2021-01-30T03:41:03.000Z" - }, - "end": { - "$date": "2021-01-30T04:15:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce5841c3-8c61-4051-ae13-58b084ab5d41", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-30T04:46:05.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:26.000Z" - }, - "events": [ - { - "uuid": "60cf0b71-5c7c-408d-a604-e546b528e247", - "start": { - "$date": "2021-01-30T04:46:05.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f3ca0e5-5a6c-4c3b-8ef6-2172a1d755ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T03:41:04.000Z" - }, - "end": { - "$date": "2021-01-30T04:15:12.000Z" - }, - "events": [ - { - "uuid": "7720c69c-fbf5-413b-885f-1c65a4aef1e8", - "start": { - "$date": "2021-01-30T03:41:04.000Z" - }, - "end": { - "$date": "2021-01-30T04:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d051e26-87fb-416a-b813-e9c222bb6810", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-30T03:41:24.000Z" - }, - "end": { - "$date": "2021-01-30T04:15:09.000Z" - }, - "events": [ - { - "uuid": "dcf60caf-cb57-40a4-9f9a-12355f45b366", - "start": { - "$date": "2021-01-30T03:41:24.000Z" - }, - "end": { - "$date": "2021-01-30T04:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8fc74eb9-127b-4629-9305-bc02da32117d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-30T03:41:19.000Z" - }, - "end": { - "$date": "2021-01-30T06:00:58.000Z" - }, - "events": [ - { - "uuid": "850917c5-d15b-463f-86eb-3b6011fced07", - "start": { - "$date": "2021-01-30T03:41:19.000Z" - }, - "end": { - "$date": "2021-01-30T06:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "26bb25fa-c77e-41f9-aa51-139b8c13a345", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T04:09:17.000Z" - }, - "end": { - "$date": "2021-01-30T04:19:52.000Z" - }, - "events": [ - { - "uuid": "5b2a7457-63ad-414c-acdf-d9df3680a28a", - "start": { - "$date": "2021-01-30T04:09:17.000Z" - }, - "end": { - "$date": "2021-01-30T04:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "433e3d59-cf50-4dd3-affc-a29b1a88170a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T04:20:40.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:24.000Z" - }, - "events": [ - { - "uuid": "b34f7cf7-24fa-4d02-81a0-56ff2159aa07", - "start": { - "$date": "2021-01-30T04:20:40.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8967e278-e9f1-49e7-b5a2-d422ee4e2c04", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T04:20:57.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:17.000Z" - }, - "events": [ - { - "uuid": "fa65b003-3656-4a9e-8f33-93c0d70dc579", - "start": { - "$date": "2021-01-30T04:20:57.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62c902a2-f7bf-4d2d-9184-6ab7db7439a4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T04:20:49.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:20.000Z" - }, - "events": [ - { - "uuid": "f5425d0a-8248-4b79-a491-b79cdaa8a25c", - "start": { - "$date": "2021-01-30T04:20:49.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb5bb844-d02c-4721-af2c-08414e3d19d1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-30T04:23:55.000Z" - }, - "end": { - "$date": "2021-01-30T04:24:00.000Z" - }, - "events": [ - { - "uuid": "01b7d925-b0b5-45f6-a11e-5523fb4219b3", - "start": { - "$date": "2021-01-30T04:23:55.000Z" - }, - "end": { - "$date": "2021-01-30T04:24:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea0bd3fb-e770-4742-a3ca-d44bb0a4d11e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T04:20:41.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:16.000Z" - }, - "events": [ - { - "uuid": "5ed5eb30-277d-495d-b10c-d2cdf16eabdc", - "start": { - "$date": "2021-01-30T04:20:41.000Z" - }, - "end": { - "$date": "2021-01-30T04:41:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "eb863a82-27c9-4187-91b7-2c3fbd5c67f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T04:23:58.000Z" - }, - "end": { - "$date": "2021-01-30T04:33:33.000Z" - }, - "events": [ - { - "uuid": "a952b20e-eef3-4b87-a6e8-a478f2deb515", - "start": { - "$date": "2021-01-30T04:23:58.000Z" - }, - "end": { - "$date": "2021-01-30T04:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "fc57364e-9dc4-4917-8e26-94c84a50bfa1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T04:35:34.000Z" - }, - "end": { - "$date": "2021-01-30T05:01:05.000Z" - }, - "events": [ - { - "uuid": "9fc533a0-9a5c-4d41-8d96-20cf53fbeb74", - "start": { - "$date": "2021-01-30T04:35:34.000Z" - }, - "end": { - "$date": "2021-01-30T05:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8bb059b-82fa-4b4f-a4c3-e2d70225f7fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T04:46:06.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:28.000Z" - }, - "events": [ - { - "uuid": "f41eb746-4024-48bd-a65d-89c946aa623d", - "start": { - "$date": "2021-01-30T04:46:06.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1d19879-309c-4f41-a2b2-475b152072c1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T04:46:00.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:21.000Z" - }, - "events": [ - { - "uuid": "fcdfee17-0162-48e1-b8f0-371265af2f7a", - "start": { - "$date": "2021-01-30T04:46:00.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd90ff81-4a39-49de-986c-19cf2659c836", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T04:45:57.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:23.000Z" - }, - "events": [ - { - "uuid": "a17decec-c511-4870-adcd-f05bb11ee3ad", - "start": { - "$date": "2021-01-30T04:45:57.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c8c2a72-0b0d-477e-81f6-befe1886bda2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-30T04:46:02.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:28.000Z" - }, - "events": [ - { - "uuid": "8d1cd436-f44f-4d74-b695-59266e721cbc", - "start": { - "$date": "2021-01-30T04:46:02.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16bb0a87-beb9-4704-8000-54df2914041d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T04:47:36.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:22.000Z" - }, - "events": [ - { - "uuid": "4559da82-76fd-4446-ae2a-51d4f38c5803", - "start": { - "$date": "2021-01-30T04:47:36.000Z" - }, - "end": { - "$date": "2021-01-30T05:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9791cf06-53f3-43a2-8cda-844a0fa9251c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-30T04:53:47.000Z" - }, - "end": { - "$date": "2021-01-30T05:03:50.000Z" - }, - "events": [ - { - "uuid": "b9bc33fd-711f-4fec-aa68-b10eb4ac619d", - "start": { - "$date": "2021-01-30T04:53:47.000Z" - }, - "end": { - "$date": "2021-01-30T05:03:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "3c8f149d-63b2-44d9-bbea-23862df40a84", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T05:06:56.000Z" - }, - "end": { - "$date": "2021-01-30T06:13:46.000Z" - }, - "events": [ - { - "uuid": "ff609a10-9470-4f42-8ac1-a83d0912b206", - "start": { - "$date": "2021-01-30T05:06:56.000Z" - }, - "end": { - "$date": "2021-01-30T06:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "0bba1c7b-c2fa-407e-b9fe-ae119683e9ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T05:09:33.000Z" - }, - "end": { - "$date": "2021-01-30T05:16:08.000Z" - }, - "events": [ - { - "uuid": "21448c07-91ce-46f4-8634-b45bb85560f8", - "start": { - "$date": "2021-01-30T05:09:33.000Z" - }, - "end": { - "$date": "2021-01-30T05:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2490e142-8d61-4615-bc18-a87e39a756ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T05:14:57.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:33.000Z" - }, - "events": [ - { - "uuid": "4e2adbe7-7d57-4fd1-bd53-50d27eebbd07", - "start": { - "$date": "2021-01-30T05:14:57.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7f5e3ea-3e31-46ff-91f0-166a6a28186d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T05:14:51.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:27.000Z" - }, - "events": [ - { - "uuid": "a641c6a2-ab1f-45ff-a6f5-191303bb1ac0", - "start": { - "$date": "2021-01-30T05:14:51.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f81dafb-57b1-46a4-98ea-6d7a8dcad7f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T05:14:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:28.000Z" - }, - "events": [ - { - "uuid": "8e4cc166-fdae-4510-856d-8369d747ce2d", - "start": { - "$date": "2021-01-30T05:14:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4a41354-3548-42b9-9a24-a4ad23a60a40", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-30T05:14:52.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:32.000Z" - }, - "events": [ - { - "uuid": "30aa71de-9c13-4b7c-9165-5ece1ff5d493", - "start": { - "$date": "2021-01-30T05:14:52.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37092051-fede-4975-b772-4dc00178e754", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-30T05:14:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:28.000Z" - }, - "events": [ - { - "uuid": "822d5eb0-3ec9-4f59-87f0-ceab068faa84", - "start": { - "$date": "2021-01-30T05:14:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27e4b738-6125-4479-a2f9-eff408869b17", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-30T05:14:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:29.000Z" - }, - "events": [ - { - "uuid": "67890ed7-0484-45a2-a790-9ed2b5d85097", - "start": { - "$date": "2021-01-30T05:14:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a59a7e5b-ffd7-43b6-8b2d-273772a4f769", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T05:14:52.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:28.000Z" - }, - "events": [ - { - "uuid": "e26f975a-c99d-483a-8c26-33e61ea71dd9", - "start": { - "$date": "2021-01-30T05:14:52.000Z" - }, - "end": { - "$date": "2021-01-30T05:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ddb12f29-1351-4e16-af36-1cb16c973306", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T05:22:14.000Z" - }, - "end": { - "$date": "2021-01-30T05:40:05.000Z" - }, - "events": [ - { - "uuid": "7ad3607a-ce4f-4366-a302-3478ea28e08c", - "start": { - "$date": "2021-01-30T05:22:14.000Z" - }, - "end": { - "$date": "2021-01-30T05:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecf2efb0-2cc8-42eb-a1ea-d6544be8ec1b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T05:35:03.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:48.000Z" - }, - "events": [ - { - "uuid": "0cd752f9-f83b-4560-a9a0-897b274c483e", - "start": { - "$date": "2021-01-30T05:35:03.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b739569-0529-49b1-8184-fb29c354ef62", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T05:34:52.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:47.000Z" - }, - "events": [ - { - "uuid": "9cb6bcbf-cc5a-43d4-82e6-6f7d34e3004a", - "start": { - "$date": "2021-01-30T05:34:52.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a4057e9-4896-4d1f-a985-c7cc3168aa94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T05:35:18.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:38.000Z" - }, - "events": [ - { - "uuid": "86367162-f749-44e6-9933-f22384a00d4a", - "start": { - "$date": "2021-01-30T05:35:18.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef31efc6-bc94-4c91-9f01-45ffbc7d6a7b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-30T05:35:19.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:39.000Z" - }, - "events": [ - { - "uuid": "4ffa19df-9a0f-41b8-ae0b-a5cd1875571d", - "start": { - "$date": "2021-01-30T05:35:19.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "585b480f-5874-44bc-a866-8fb0dc3e84bf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-30T05:34:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:44.000Z" - }, - "events": [ - { - "uuid": "1689a599-cb47-45e0-b9b7-6a2de7b6a518", - "start": { - "$date": "2021-01-30T05:34:53.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2335cd5d-ebe5-4031-99e8-fc832225c9d5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-30T05:34:54.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:45.000Z" - }, - "events": [ - { - "uuid": "1b1e7682-7adb-4b2e-9494-aeff25d4bd09", - "start": { - "$date": "2021-01-30T05:34:54.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "217f4b09-4792-4160-8997-c8444641b12f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T05:35:13.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:46.000Z" - }, - "events": [ - { - "uuid": "1f4a1935-8494-4325-a784-e905923133fa", - "start": { - "$date": "2021-01-30T05:35:13.000Z" - }, - "end": { - "$date": "2021-01-30T05:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "e45ebb06-84bc-427f-a2e7-4c4d11d04fe0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T05:40:35.000Z" - }, - "end": { - "$date": "2021-01-30T05:47:06.000Z" - }, - "events": [ - { - "uuid": "a5e93f87-b715-4c4b-85e3-55dfe11a622b", - "start": { - "$date": "2021-01-30T05:40:35.000Z" - }, - "end": { - "$date": "2021-01-30T05:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5830eee7-4372-487a-9e73-f3240bb9f117", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T05:56:53.000Z" - }, - "end": { - "$date": "2021-01-30T06:12:37.000Z" - }, - "events": [ - { - "uuid": "3f942c3b-2b1b-4e6f-9313-38eb56a7d247", - "start": { - "$date": "2021-01-30T05:56:53.000Z" - }, - "end": { - "$date": "2021-01-30T06:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f56bf5b-d929-4177-818f-b7c63b8cea0b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T05:57:08.000Z" - }, - "end": { - "$date": "2021-01-30T06:12:29.000Z" - }, - "events": [ - { - "uuid": "877866ba-bcc9-44e8-a88f-b5e1abbee2b7", - "start": { - "$date": "2021-01-30T05:57:08.000Z" - }, - "end": { - "$date": "2021-01-30T06:12:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d039971-d5c8-42ce-88ce-968683d00279", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T07:00:23.000Z" - }, - "end": { - "$date": "2021-01-30T07:52:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-30T07:00:23.000Z" - }, - "end": { - "$date": "2021-01-30T07:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "29d9b237-174f-4416-98fe-d220a95b6047", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T06:13:18.000Z" - }, - "end": { - "$date": "2021-01-30T09:22:40.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-01-30T06:13:18.000Z" - }, - "end": { - "$date": "2021-01-30T09:22:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1de2f59-205a-4701-8c83-bafc2e47ce3b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T08:01:04.000Z" - }, - "end": { - "$date": "2021-01-30T08:27:50.000Z" - }, - "events": [ - { - "uuid": "e91ea3ac-c73e-44de-977d-2ed9111c03b6", - "start": { - "$date": "2021-01-30T08:01:04.000Z" - }, - "end": { - "$date": "2021-01-30T08:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fec0ee95-6d80-470c-92ef-f9f72fbca633", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-30T08:01:32.000Z" - }, - "end": { - "$date": "2021-01-30T08:10:52.000Z" - }, - "events": [ - { - "uuid": "18555885-ac35-4ab9-9edf-64c78b4bd6a9", - "start": { - "$date": "2021-01-30T08:01:32.000Z" - }, - "end": { - "$date": "2021-01-30T08:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0c6e1c83-2439-4601-b61b-9ce8c409620c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-30T08:14:49.000Z" - }, - "end": { - "$date": "2021-01-30T08:24:26.000Z" - }, - "events": [ - { - "uuid": "85e834d6-737a-4086-806b-c7548a5dafff", - "start": { - "$date": "2021-01-30T08:14:49.000Z" - }, - "end": { - "$date": "2021-01-30T08:24:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce4913e1-fb54-4d8c-b580-54d5fd6bbbc7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T08:38:56.000Z" - }, - "end": { - "$date": "2021-01-30T09:10:42.000Z" - }, - "events": [ - { - "uuid": "91f02039-4968-44f6-a4dd-0fbd6048ba94", - "start": { - "$date": "2021-01-30T08:38:56.000Z" - }, - "end": { - "$date": "2021-01-30T09:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bddab5ad-6c1a-4419-aaa7-610da224237a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-30T14:14:32.000Z" - }, - "end": { - "$date": "2021-01-30T16:09:20.000Z" - }, - "events": [ - { - "uuid": "e1225611-9ab7-4685-ace8-6b6bea0fbcbf", - "start": { - "$date": "2021-01-30T14:14:32.000Z" - }, - "end": { - "$date": "2021-01-30T16:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0b18213f-bfcd-4ed1-89a2-22486e215676", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T16:17:17.000Z" - }, - "end": { - "$date": "2021-01-30T17:35:20.000Z" - }, - "events": [ - { - "uuid": "70947cee-ca35-4b29-9e8d-a11b8e961f72", - "start": { - "$date": "2021-01-30T16:17:17.000Z" - }, - "end": { - "$date": "2021-01-30T17:25:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e521a99e-472b-4674-8742-fb5a8071fb7b", - "start": { - "$date": "2021-01-30T17:25:17.000Z" - }, - "end": { - "$date": "2021-01-30T17:30:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c69f9b6-6044-4b11-bfff-c8cbb251dd6d", - "start": { - "$date": "2021-01-30T17:30:17.000Z" - }, - "end": { - "$date": "2021-01-30T17:35:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "128edc82-7f81-428e-ae5a-2b8ae007ab09", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T17:29:29.000Z" - }, - "end": { - "$date": "2021-01-30T18:24:42.000Z" - }, - "events": [ - { - "uuid": "5676e07f-e312-4a7e-b07b-0856d036e853", - "start": { - "$date": "2021-01-30T17:29:29.000Z" - }, - "end": { - "$date": "2021-01-30T18:24:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "07bc242f-a35c-45c9-8421-9d40aa1409c2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-30T17:53:42.000Z" - }, - "end": { - "$date": "2021-01-30T19:40:15.000Z" - }, - "events": [ - { - "uuid": "610022d2-8fe3-47b4-9c3c-20590895e7cb", - "start": { - "$date": "2021-01-30T17:53:42.000Z" - }, - "end": { - "$date": "2021-01-30T19:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "00958c9a-5200-4a14-8b73-822d32207e6a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-30T18:24:39.000Z" - }, - "end": { - "$date": "2021-01-30T21:56:21.000Z" - }, - "events": [ - { - "uuid": "2d04b547-3f8c-4517-9c18-f33e0ab36fd9", - "start": { - "$date": "2021-01-30T18:24:39.000Z" - }, - "end": { - "$date": "2021-01-30T21:56:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3255c666-e005-455b-bd39-73602013e76d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T18:28:47.000Z" - }, - "end": { - "$date": "2021-01-30T19:04:22.000Z" - }, - "events": [ - { - "uuid": "e14d8d16-30a4-47fd-83c4-4b88286b6ddb", - "start": { - "$date": "2021-01-30T18:28:47.000Z" - }, - "end": { - "$date": "2021-01-30T19:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "22c4fffe-0858-4f38-b829-c1b61c34deab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-30T19:15:14.000Z" - }, - "end": { - "$date": "2021-01-30T19:17:09.000Z" - }, - "events": [ - { - "uuid": "610874aa-b43c-444e-89c2-c5750549d564", - "start": { - "$date": "2021-01-30T19:15:14.000Z" - }, - "end": { - "$date": "2021-01-30T19:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9f94f025-b2f0-4c8b-ae05-71ee9f8cadbf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-30T19:22:03.000Z" - }, - "end": { - "$date": "2021-01-30T22:14:54.000Z" - }, - "events": [ - { - "uuid": "354a86b0-5ff9-4ed6-afa4-cc2ff574e36a", - "start": { - "$date": "2021-01-30T19:22:03.000Z" - }, - "end": { - "$date": "2021-01-30T20:50:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3a337976-ba80-40ca-b840-4a968f0a4b5a", - "start": { - "$date": "2021-01-30T20:50:03.000Z" - }, - "end": { - "$date": "2021-01-30T20:56:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e0ccd9a0-c545-4c02-b073-817a86f6ba96", - "start": { - "$date": "2021-01-30T20:56:03.000Z" - }, - "end": { - "$date": "2021-01-30T22:14:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5d7c7880-9a62-4e56-bf7e-c7aca631ba2c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-30T19:42:22.000Z" - }, - "end": { - "$date": "2021-01-30T20:54:08.000Z" - }, - "events": [ - { - "uuid": "79f48226-9b5d-4532-86cd-b66b50ccb532", - "start": { - "$date": "2021-01-30T19:42:22.000Z" - }, - "end": { - "$date": "2021-01-30T20:54:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e3b9e72-f1de-457d-b46f-fa6e037370b7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T20:16:17.000Z" - }, - "end": { - "$date": "2021-01-30T20:51:49.000Z" - }, - "events": [ - { - "uuid": "9d3ab5de-1eef-4e49-8db6-fef9629cbc50", - "start": { - "$date": "2021-01-30T20:16:17.000Z" - }, - "end": { - "$date": "2021-01-30T20:51:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "2ed247ef-66b4-4e5e-a673-495c6ebb724b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-30T20:10:33.000Z" - }, - "end": { - "$date": "2021-01-30T21:16:24.000Z" - }, - "events": [ - { - "uuid": "29c184b8-644f-4461-b414-2027d28a4ec0", - "start": { - "$date": "2021-01-30T20:10:33.000Z" - }, - "end": { - "$date": "2021-01-30T21:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6167e51e-1d09-475e-90dc-9c2e292d1fbd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-30T23:44:23.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:47.000Z" - }, - "events": [ - { - "uuid": "c92ef04e-0d97-47b7-b74e-fcee0d93df3b", - "start": { - "$date": "2021-01-30T23:44:23.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35857217-fa7c-44eb-9968-9c235f7dc5a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-30T21:09:10.000Z" - }, - "end": { - "$date": "2021-01-30T21:51:41.000Z" - }, - "events": [ - { - "uuid": "d9450510-d5e7-41b2-85ec-d4f4082d3029", - "start": { - "$date": "2021-01-30T21:09:10.000Z" - }, - "end": { - "$date": "2021-01-30T21:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "89d402fb-027c-4fa0-b130-20336c259cbe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-30T21:19:25.000Z" - }, - "end": { - "$date": "2021-01-30T21:35:52.000Z" - }, - "events": [ - { - "uuid": "1f50d5f9-11dd-43d3-9bea-98a4fb106c57", - "start": { - "$date": "2021-01-30T21:19:25.000Z" - }, - "end": { - "$date": "2021-01-30T21:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "517c774a-f525-4bc7-986f-884ae6b373d0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T21:25:22.000Z" - }, - "end": { - "$date": "2021-01-30T21:50:30.000Z" - }, - "events": [ - { - "uuid": "3885afac-2139-454c-8adc-d6e5e2864092", - "start": { - "$date": "2021-01-30T21:25:22.000Z" - }, - "end": { - "$date": "2021-01-30T21:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e57284dc-28f3-4114-865f-6f1f1438b179", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T21:59:16.000Z" - }, - "end": { - "$date": "2021-01-30T22:29:07.000Z" - }, - "events": [ - { - "uuid": "5379886e-e9b1-45dc-8f3e-635b64185fd4", - "start": { - "$date": "2021-01-30T21:59:16.000Z" - }, - "end": { - "$date": "2021-01-30T22:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "874ce0ee-2ad7-494e-aada-9c981ee62498", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T21:49:50.000Z" - }, - "end": { - "$date": "2021-01-30T21:51:40.000Z" - }, - "events": [ - { - "uuid": "85256d0c-0019-4866-b054-77a0ca32a1c5", - "start": { - "$date": "2021-01-30T21:49:50.000Z" - }, - "end": { - "$date": "2021-01-30T21:51:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "48a28126-9854-4fbd-a266-52086644fad5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T21:52:15.000Z" - }, - "end": { - "$date": "2021-01-30T22:37:01.000Z" - }, - "events": [ - { - "uuid": "d18d518b-66f7-498b-a3af-ecdf3965baae", - "start": { - "$date": "2021-01-30T21:52:15.000Z" - }, - "end": { - "$date": "2021-01-30T22:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a134a776-e096-4b00-9567-421a6a3cbc3b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-30T22:14:54.000Z" - }, - "end": { - "$date": "2021-01-31T03:25:58.000Z" - }, - "events": [ - { - "uuid": "7359d046-683d-4a3d-8105-5b85d5c9f83b", - "start": { - "$date": "2021-01-30T22:14:54.000Z" - }, - "end": { - "$date": "2021-01-31T00:33:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b8c62d53-91b4-4850-99ae-6d8954716607", - "start": { - "$date": "2021-01-31T00:33:54.000Z" - }, - "end": { - "$date": "2021-01-31T00:39:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "46c90499-85b2-4e41-8fbe-0a4c75164724", - "start": { - "$date": "2021-01-31T00:39:54.000Z" - }, - "end": { - "$date": "2021-01-31T03:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9cfef426-babf-4bcf-8601-265342a88b33", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-30T22:21:59.000Z" - }, - "end": { - "$date": "2021-01-30T22:34:21.000Z" - }, - "events": [ - { - "uuid": "f34d7fc7-f96d-4e4e-b05c-31ce2d1e6a0f", - "start": { - "$date": "2021-01-30T22:21:59.000Z" - }, - "end": { - "$date": "2021-01-30T22:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36da16ad-3ae0-4219-92a6-4081e5c37097", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T22:38:03.000Z" - }, - "end": { - "$date": "2021-01-30T23:13:35.000Z" - }, - "events": [ - { - "uuid": "48646843-4008-4ff6-bac2-f86a923e90be", - "start": { - "$date": "2021-01-30T22:38:03.000Z" - }, - "end": { - "$date": "2021-01-30T23:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "058dda68-d746-4a4d-b2b4-adeb4a364d15", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-30T23:48:32.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:29.000Z" - }, - "events": [ - { - "uuid": "dcf7d60a-6dc7-4f78-ae0c-ee06db05cd1a", - "start": { - "$date": "2021-01-30T23:48:32.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "3c3ba2eb-a8b4-48bc-a9d6-226183f248a2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-30T23:00:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:15:09.000Z" - }, - "events": [ - { - "uuid": "7cb4dccf-feb4-4476-a01f-c72855be7b0e", - "start": { - "$date": "2021-01-30T23:00:17.000Z" - }, - "end": { - "$date": "2021-01-30T23:25:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f2527d9-a576-4456-9a96-1808c2ad72b2", - "start": { - "$date": "2021-01-30T23:25:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:15:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c28e868c-f8ee-481f-a559-c324192a2fa2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T23:17:39.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:22.000Z" - }, - "events": [ - { - "uuid": "27ccadea-71d5-478f-8b18-77cd2a407286", - "start": { - "$date": "2021-01-30T23:17:39.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0fe981d-6c45-47d0-a535-19b227681c09", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T23:17:29.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:15.000Z" - }, - "events": [ - { - "uuid": "fab6972a-2447-4561-a678-0cc853b4829f", - "start": { - "$date": "2021-01-30T23:17:29.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9027b4cb-c934-49cb-b1ff-afda94c7ca67", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T23:17:29.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:14.000Z" - }, - "events": [ - { - "uuid": "02c3e6a2-692f-4f9f-9418-848afe927ec4", - "start": { - "$date": "2021-01-30T23:17:29.000Z" - }, - "end": { - "$date": "2021-01-30T23:44:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fda12ea-418f-4b0b-8aac-eb1493f9d818", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-30T23:48:40.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:37.000Z" - }, - "events": [ - { - "uuid": "3750aabc-3aa8-4eac-ae38-557eb393c636", - "start": { - "$date": "2021-01-30T23:48:40.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2cfbdf4-a28c-4777-95cf-85553a76f5c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-30T23:48:30.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:31.000Z" - }, - "events": [ - { - "uuid": "b028c3bb-b2e0-4f04-9ebe-a6f31e4daf4a", - "start": { - "$date": "2021-01-30T23:48:30.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "026ca888-2d93-4353-9cee-528ee072e0c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-30T23:48:29.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:29.000Z" - }, - "events": [ - { - "uuid": "fc6471a8-bceb-43fd-bc26-aed0a818c8b1", - "start": { - "$date": "2021-01-30T23:48:29.000Z" - }, - "end": { - "$date": "2021-01-31T00:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "24b43caf-4d30-419b-85a7-6e629eeb6a96", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-30T23:47:54.000Z" - }, - "end": { - "$date": "2021-01-30T23:52:54.000Z" - }, - "events": [ - { - "uuid": "6a257747-4af3-4313-9566-68a01b99c8ef", - "start": { - "$date": "2021-01-30T23:47:54.000Z" - }, - "end": { - "$date": "2021-01-30T23:52:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "01403134-8c8b-4f6c-b55c-501c4a24f10f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-30T23:49:11.000Z" - }, - "end": { - "$date": "2021-01-30T23:51:17.000Z" - }, - "events": [ - { - "uuid": "da56aada-7a9d-41dd-b976-95726d1b8d2b", - "start": { - "$date": "2021-01-30T23:49:11.000Z" - }, - "end": { - "$date": "2021-01-30T23:51:17.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "023635b0-f3d0-4987-ad15-094ad044e7f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T00:37:37.000Z" - }, - "end": { - "$date": "2021-01-31T01:28:09.000Z" - }, - "events": [ - { - "uuid": "10ca59b1-d291-4e30-9b0f-8fe53660d1f7", - "start": { - "$date": "2021-01-31T00:37:37.000Z" - }, - "end": { - "$date": "2021-01-31T01:28:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "76e6aa61-2849-4887-95ca-b0e8377923be", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-31T01:04:00.000Z" - }, - "end": { - "$date": "2021-01-31T01:28:32.000Z" - }, - "events": [ - { - "uuid": "a629f56c-9e1f-4d26-9f37-75e409560461", - "start": { - "$date": "2021-01-31T01:04:00.000Z" - }, - "end": { - "$date": "2021-01-31T01:28:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bd5a98aa-952a-4dc2-9158-3c2a04ba681f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-31T01:11:40.000Z" - }, - "end": { - "$date": "2021-01-31T01:49:13.000Z" - }, - "events": [ - { - "uuid": "a3f5a598-a765-421a-92c9-eaafdbb0f38d", - "start": { - "$date": "2021-01-31T01:11:40.000Z" - }, - "end": { - "$date": "2021-01-31T01:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6b418e18-094c-421d-9c96-d288fc3cad0b", - "uuid": "6b7129f4-b76d-4297-9ef7-d4008aba7796", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-01-30T23:00:17.000Z" - }, - "end": { - "$date": "2021-01-31T04:47:02.000Z" - }, - "events": [ - { - "uuid": "1b87e67a-1974-406a-9b4d-76b67669175d", - "start": { - "$date": "2021-01-30T23:00:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:11:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09a1556d-5693-4bbc-97aa-5c238210f696", - "start": { - "$date": "2021-01-31T01:11:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:13:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56ded22d-062b-46ab-9feb-795c8e0295bb", - "start": { - "$date": "2021-01-31T01:13:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:27:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dee46843-22d4-4f0c-a2bc-e26c7bcdc5a0", - "start": { - "$date": "2021-01-31T01:27:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:29:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d6155b43-d9c2-483f-9894-6ff979c87df6", - "start": { - "$date": "2021-01-31T01:29:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:46:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3328aaab-43c3-4f6b-ad6d-7c812d826918", - "start": { - "$date": "2021-01-31T01:46:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:50:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7089535-1b77-4f1f-86bb-2db1423c69e0", - "start": { - "$date": "2021-01-31T01:50:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:56:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d9519108-227f-4120-a5b5-6b2472e74a9d", - "start": { - "$date": "2021-01-31T01:56:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:58:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8b8f579-8f24-45a1-a785-fcdd8e360d4c", - "start": { - "$date": "2021-01-31T01:58:17.000Z" - }, - "end": { - "$date": "2021-01-31T01:59:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1775c2e-315f-4f46-8599-56da5ec5eae4", - "start": { - "$date": "2021-01-31T01:59:17.000Z" - }, - "end": { - "$date": "2021-01-31T02:01:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "628b8aa3-3127-4d25-b30b-17cb3fba84fe", - "start": { - "$date": "2021-01-31T02:01:17.000Z" - }, - "end": { - "$date": "2021-01-31T02:28:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8de74a4e-add2-4d8a-87c4-34deafad346e", - "start": { - "$date": "2021-01-31T02:28:17.000Z" - }, - "end": { - "$date": "2021-01-31T02:30:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77c0c5d5-3c88-41d1-81db-beda00c30ef1", - "start": { - "$date": "2021-01-31T02:30:17.000Z" - }, - "end": { - "$date": "2021-01-31T04:47:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7170e0fe-7e7f-46a3-9a1f-b08786825a13", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-31T01:28:41.000Z" - }, - "end": { - "$date": "2021-01-31T03:25:17.000Z" - }, - "events": [ - { - "uuid": "adb4b1b9-8461-479c-a78d-bd316384787e", - "start": { - "$date": "2021-01-31T01:28:41.000Z" - }, - "end": { - "$date": "2021-01-31T03:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "406850a9-13e4-41db-9aef-19eb3c266d13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T02:00:42.000Z" - }, - "end": { - "$date": "2021-01-31T02:23:35.000Z" - }, - "events": [ - { - "uuid": "87bbe491-7e17-4483-8cc7-1b675adaff0e", - "start": { - "$date": "2021-01-31T02:00:42.000Z" - }, - "end": { - "$date": "2021-01-31T02:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2068faf5-44a0-4c92-b51c-cdd44dbea68b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-31T02:01:12.000Z" - }, - "end": { - "$date": "2021-01-31T02:23:28.000Z" - }, - "events": [ - { - "uuid": "bfd7c026-4b16-4cc0-9265-7a5b2f681de4", - "start": { - "$date": "2021-01-31T02:01:12.000Z" - }, - "end": { - "$date": "2021-01-31T02:23:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "9bc821f5-a72f-43b7-89ba-425cbea75c79", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T02:23:12.000Z" - }, - "end": { - "$date": "2021-01-31T02:53:43.000Z" - }, - "events": [ - { - "uuid": "81ba2925-2916-4444-a446-10f5b64b592b", - "start": { - "$date": "2021-01-31T02:23:12.000Z" - }, - "end": { - "$date": "2021-01-31T02:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d3cf127-34cc-4f6f-8646-3d45b1735907", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T02:29:03.000Z" - }, - "end": { - "$date": "2021-01-31T03:00:09.000Z" - }, - "events": [ - { - "uuid": "790fdede-399c-4e7c-b861-6432656cbbb6", - "start": { - "$date": "2021-01-31T02:29:03.000Z" - }, - "end": { - "$date": "2021-01-31T03:00:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "203ded55-1272-484e-9467-41916d576eeb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-31T02:25:41.000Z" - }, - "end": { - "$date": "2021-01-31T02:25:43.000Z" - }, - "events": [ - { - "uuid": "0869d3f5-175e-488c-bd66-04267135c167", - "start": { - "$date": "2021-01-31T02:25:41.000Z" - }, - "end": { - "$date": "2021-01-31T02:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff0977e8-e5fb-4b4b-9c54-3cf899f0ca19", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-31T02:29:33.000Z" - }, - "end": { - "$date": "2021-01-31T03:00:10.000Z" - }, - "events": [ - { - "uuid": "f14f01b5-8499-4522-bcb4-a47013f381c3", - "start": { - "$date": "2021-01-31T02:29:33.000Z" - }, - "end": { - "$date": "2021-01-31T03:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38e4583c-b4ce-4f74-8a99-0e5ab24b3bca", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-31T02:29:00.000Z" - }, - "end": { - "$date": "2021-01-31T03:00:06.000Z" - }, - "events": [ - { - "uuid": "8d065c75-aa1c-4a77-85f3-0bb3691107e8", - "start": { - "$date": "2021-01-31T02:29:00.000Z" - }, - "end": { - "$date": "2021-01-31T03:00:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aa5d3d08-155d-4a5f-8ee7-0746e6e24ac7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-31T02:52:30.000Z" - }, - "end": { - "$date": "2021-01-31T10:45:40.000Z" - }, - "events": [ - { - "uuid": "67f20e16-e232-42f4-97c5-f343ae75a926", - "start": { - "$date": "2021-01-31T02:52:30.000Z" - }, - "end": { - "$date": "2021-01-31T10:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5e21b989-a21e-4a99-b943-ff8b2f69184e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-31T02:52:53.000Z" - }, - "end": { - "$date": "2021-01-31T10:45:08.000Z" - }, - "events": [ - { - "uuid": "6083b69e-80e9-4547-a9bc-3c50b9a75b6f", - "start": { - "$date": "2021-01-31T02:52:53.000Z" - }, - "end": { - "$date": "2021-01-31T10:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0c12154e-d1e2-454e-a791-0105b5f9e805", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-31T02:58:17.000Z" - }, - "end": { - "$date": "2021-01-31T03:17:10.000Z" - }, - "events": [ - { - "uuid": "4a4cc9b3-d845-433f-b4d1-6bd2cf95e2c4", - "start": { - "$date": "2021-01-31T02:58:17.000Z" - }, - "end": { - "$date": "2021-01-31T03:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "116c97eb-c636-4ed5-95cf-d4ea89aa1283", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T03:07:15.000Z" - }, - "end": { - "$date": "2021-01-31T03:38:52.000Z" - }, - "events": [ - { - "uuid": "c1cc0d53-3393-44fa-844d-5a7b2003b6b2", - "start": { - "$date": "2021-01-31T03:07:15.000Z" - }, - "end": { - "$date": "2021-01-31T03:38:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca6ea670-8c00-4a07-87f0-db60ec5bdf49", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-31T03:07:12.000Z" - }, - "end": { - "$date": "2021-01-31T03:38:53.000Z" - }, - "events": [ - { - "uuid": "ccf8a58a-63b4-4f0a-9e77-a44cc0fcc092", - "start": { - "$date": "2021-01-31T03:07:12.000Z" - }, - "end": { - "$date": "2021-01-31T03:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d8468ec6-da3d-437e-be70-4df9a5f80137", - "uuid": "07582279-a42a-40f8-8109-61568dd8eb1a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T03:17:42.000Z" - }, - "end": { - "$date": "2021-01-31T03:26:18.000Z" - }, - "events": [ - { - "uuid": "7cad2572-c993-4615-97b1-53b8f329ce52", - "start": { - "$date": "2021-01-31T03:17:42.000Z" - }, - "end": { - "$date": "2021-01-31T03:26:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f22b48b1-3914-4282-84f7-6832e090f2f4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-31T03:28:32.000Z" - }, - "end": { - "$date": "2021-01-31T08:48:52.000Z" - }, - "events": [ - { - "uuid": "663472b8-cb25-4d55-a025-2e1570ea9ddd", - "start": { - "$date": "2021-01-31T03:28:32.000Z" - }, - "end": { - "$date": "2021-01-31T08:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "54ba23d6-15bc-4b8b-a7b3-a2fd184dda6a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-31T03:29:52.000Z" - }, - "end": { - "$date": "2021-01-31T03:36:33.000Z" - }, - "events": [ - { - "uuid": "c6129768-ae2b-40a0-b3ab-3f75c8ed75a3", - "start": { - "$date": "2021-01-31T03:29:52.000Z" - }, - "end": { - "$date": "2021-01-31T03:36:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "937282d2-787a-43fd-9d08-224383e193f7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-31T04:06:08.000Z" - }, - "end": { - "$date": "2021-01-31T04:10:23.000Z" - }, - "events": [ - { - "uuid": "1f73a3c8-63d0-4190-8697-8e84850441bd", - "start": { - "$date": "2021-01-31T04:06:08.000Z" - }, - "end": { - "$date": "2021-01-31T04:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "381eb429-0801-4cfa-b483-f60b56051c8b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-31T04:06:10.000Z" - }, - "end": { - "$date": "2021-01-31T06:25:11.000Z" - }, - "events": [ - { - "uuid": "81b9a2a7-93bc-44bb-93fe-d22afb90a8ba", - "start": { - "$date": "2021-01-31T04:06:10.000Z" - }, - "end": { - "$date": "2021-01-31T06:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd7bbc0b-3f01-4de9-8b35-1cb91e5aae2d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T04:21:58.000Z" - }, - "end": { - "$date": "2021-01-31T05:01:35.000Z" - }, - "events": [ - { - "uuid": "7a43b3aa-8ce5-4676-9d84-5b5c494e3c98", - "start": { - "$date": "2021-01-31T04:21:58.000Z" - }, - "end": { - "$date": "2021-01-31T05:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "3ecd5aaa-6792-414c-a51e-cac44317c308", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-01-31T04:18:05.000Z" - }, - "end": { - "$date": "2021-01-31T04:43:29.000Z" - }, - "events": [ - { - "uuid": "cdbc31f2-2e7f-4f46-b8ca-81470ab99e68", - "start": { - "$date": "2021-01-31T04:18:05.000Z" - }, - "end": { - "$date": "2021-01-31T04:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "2e854b11-073d-44d6-aecd-7893a910c8e8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-01-31T04:30:03.000Z" - }, - "end": { - "$date": "2021-01-31T05:22:46.000Z" - }, - "events": [ - { - "uuid": "5f4d55f9-e550-4760-a66f-18e029d3c600", - "start": { - "$date": "2021-01-31T04:30:03.000Z" - }, - "end": { - "$date": "2021-01-31T05:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "926aedbc-432d-4e4d-a9e4-b8b7f46877a4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-31T04:36:09.000Z" - }, - "end": { - "$date": "2021-01-31T05:26:58.000Z" - }, - "events": [ - { - "uuid": "205a23fc-9e80-480a-8b66-2fc06a1ebded", - "start": { - "$date": "2021-01-31T04:36:09.000Z" - }, - "end": { - "$date": "2021-01-31T05:17:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3547ba5-0fb1-43b1-9692-4320208fc57f", - "start": { - "$date": "2021-01-31T05:17:09.000Z" - }, - "end": { - "$date": "2021-01-31T05:19:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a1519dd6-e1f4-42c2-83d5-20d08a7ddf54", - "start": { - "$date": "2021-01-31T05:19:09.000Z" - }, - "end": { - "$date": "2021-01-31T05:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecd3afc3-f2d9-4c0a-a713-4502cf21008c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T05:06:24.000Z" - }, - "end": { - "$date": "2021-01-31T05:30:01.000Z" - }, - "events": [ - { - "uuid": "b2c701c5-2410-4ffa-93ec-210403f70031", - "start": { - "$date": "2021-01-31T05:06:24.000Z" - }, - "end": { - "$date": "2021-01-31T05:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e47c6791-2fbe-4302-8a26-80d935dba183", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-31T05:05:06.000Z" - }, - "end": { - "$date": "2021-01-31T05:30:27.000Z" - }, - "events": [ - { - "uuid": "ffcf1c44-e728-4c11-a97c-d69391d42c7e", - "start": { - "$date": "2021-01-31T05:05:06.000Z" - }, - "end": { - "$date": "2021-01-31T05:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7708907-5294-44a1-b72f-d91801bf6dd5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T05:29:39.000Z" - }, - "end": { - "$date": "2021-01-31T06:05:47.000Z" - }, - "events": [ - { - "uuid": "7ec2bc5f-5679-45a5-86f9-9e6a503d14d6", - "start": { - "$date": "2021-01-31T05:29:39.000Z" - }, - "end": { - "$date": "2021-01-31T06:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f8ab37df-c19b-4689-8a2a-b806f9a10ca6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-01-31T05:27:23.000Z" - }, - "end": { - "$date": "2021-01-31T08:48:57.000Z" - }, - "events": [ - { - "uuid": "d828856e-cdd6-4ac8-b6bc-5743caafc539", - "start": { - "$date": "2021-01-31T05:27:23.000Z" - }, - "end": { - "$date": "2021-01-31T08:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5172502-55ce-475e-891d-5a7aefd2477e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T05:40:00.000Z" - }, - "end": { - "$date": "2021-01-31T06:09:12.000Z" - }, - "events": [ - { - "uuid": "320b33c6-52d1-4b77-b69b-fb8831993312", - "start": { - "$date": "2021-01-31T05:40:00.000Z" - }, - "end": { - "$date": "2021-01-31T06:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "48879fd2-0f62-43e1-894e-d0e1dcc2b088", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-31T05:30:58.000Z" - }, - "end": { - "$date": "2021-01-31T05:43:23.000Z" - }, - "events": [ - { - "uuid": "8cb91a76-6c15-4d8b-a013-b473febdcfdb", - "start": { - "$date": "2021-01-31T05:30:58.000Z" - }, - "end": { - "$date": "2021-01-31T05:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4c47795b-665e-4ae3-9313-56d8c343bd90", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-31T05:43:48.000Z" - }, - "end": { - "$date": "2021-01-31T06:27:39.000Z" - }, - "events": [ - { - "uuid": "8d4ad101-fd2f-4f30-92df-c488e101f1a6", - "start": { - "$date": "2021-01-31T05:43:48.000Z" - }, - "end": { - "$date": "2021-01-31T06:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "48f07174-0896-4687-8d0f-044ccf528d4d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T05:59:45.000Z" - }, - "end": { - "$date": "2021-01-31T08:25:39.000Z" - }, - "events": [ - { - "uuid": "fd7e622a-958e-4ca7-8057-f12b468ea3e6", - "start": { - "$date": "2021-01-31T05:59:45.000Z" - }, - "end": { - "$date": "2021-01-31T08:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "1291e480-00c2-45ed-8204-8bef8053c991", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-31T06:01:29.000Z" - }, - "end": { - "$date": "2021-01-31T07:46:38.000Z" - }, - "events": [ - { - "uuid": "8035a57e-686d-4cc3-b490-5b8070c5d7a0", - "start": { - "$date": "2021-01-31T06:01:29.000Z" - }, - "end": { - "$date": "2021-01-31T07:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08c29da2-bbc2-4335-99df-9a868a0bba0b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T06:11:19.000Z" - }, - "end": { - "$date": "2021-01-31T06:12:40.000Z" - }, - "events": [ - { - "uuid": "a78f7495-6e3e-4b31-a8b9-fe1c5e55bd5a", - "start": { - "$date": "2021-01-31T06:11:19.000Z" - }, - "end": { - "$date": "2021-01-31T06:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6622bd22-df1d-408d-8ed9-83ead4d299c7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T06:16:21.000Z" - }, - "end": { - "$date": "2021-01-31T06:44:18.000Z" - }, - "events": [ - { - "uuid": "7a41773d-4380-4210-b9ed-fac53c518820", - "start": { - "$date": "2021-01-31T06:16:21.000Z" - }, - "end": { - "$date": "2021-01-31T06:44:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb83c09b-1231-46b6-b9e4-c42d50a4cbc9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T06:16:29.000Z" - }, - "end": { - "$date": "2021-01-31T06:44:27.000Z" - }, - "events": [ - { - "uuid": "2c4b10d9-e968-479c-8855-4c0f608ab8ea", - "start": { - "$date": "2021-01-31T06:16:29.000Z" - }, - "end": { - "$date": "2021-01-31T06:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a976d0e5-1ac7-44c9-a61a-6c83ee874010", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-31T06:25:16.000Z" - }, - "end": { - "$date": "2021-01-31T06:26:18.000Z" - }, - "events": [ - { - "uuid": "26ac6828-5dad-4952-9dfb-c871b6f64759", - "start": { - "$date": "2021-01-31T06:25:16.000Z" - }, - "end": { - "$date": "2021-01-31T06:26:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fff2e24d-7197-43cc-bfbf-3621802a1ece", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-31T06:27:10.000Z" - }, - "end": { - "$date": "2021-01-31T07:03:43.000Z" - }, - "events": [ - { - "uuid": "a3b1af6d-211e-4167-a5a9-87ea7017188b", - "start": { - "$date": "2021-01-31T06:27:10.000Z" - }, - "end": { - "$date": "2021-01-31T07:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1d4cf6ca-fb19-4d7e-bbd8-af8b582b52cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-31T06:30:09.000Z" - }, - "end": { - "$date": "2021-01-31T10:25:09.000Z" - }, - "events": [ - { - "uuid": "49372266-9bf0-4210-9daf-968595769976", - "start": { - "$date": "2021-01-31T06:30:09.000Z" - }, - "end": { - "$date": "2021-01-31T10:25:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1631fd3a-160f-4cef-9d94-39738bfa4ded", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T06:51:40.000Z" - }, - "end": { - "$date": "2021-01-31T07:21:10.000Z" - }, - "events": [ - { - "uuid": "8b3904cc-68cb-4808-8b81-0c3d3608ef5c", - "start": { - "$date": "2021-01-31T06:51:40.000Z" - }, - "end": { - "$date": "2021-01-31T07:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cdaac61-8e3f-4a22-af19-eddba0cdd5b3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T06:52:53.000Z" - }, - "end": { - "$date": "2021-01-31T07:21:05.000Z" - }, - "events": [ - { - "uuid": "00c436a4-30ed-44e8-9637-9f5ef0260b6f", - "start": { - "$date": "2021-01-31T06:52:53.000Z" - }, - "end": { - "$date": "2021-01-31T07:21:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "95287bce-e680-4217-849e-9bbb9aba67b5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-31T07:32:17.000Z" - }, - "end": { - "$date": "2021-01-31T07:49:29.000Z" - }, - "events": [ - { - "uuid": "516ec86f-592d-4277-a226-efe2a694101c", - "start": { - "$date": "2021-01-31T07:32:17.000Z" - }, - "end": { - "$date": "2021-01-31T07:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5640be71-7c0e-49e8-a073-1b8c0c3df6ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T07:26:06.000Z" - }, - "end": { - "$date": "2021-01-31T08:02:26.000Z" - }, - "events": [ - { - "uuid": "c14e73ed-d11a-4196-a7d0-fda92ad1506b", - "start": { - "$date": "2021-01-31T07:26:06.000Z" - }, - "end": { - "$date": "2021-01-31T08:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09ecd598-d6c0-4ea9-b302-a780e51748f3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T07:28:54.000Z" - }, - "end": { - "$date": "2021-01-31T08:02:16.000Z" - }, - "events": [ - { - "uuid": "58f6c50e-e57a-47f2-b199-e78013293703", - "start": { - "$date": "2021-01-31T07:28:54.000Z" - }, - "end": { - "$date": "2021-01-31T08:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2e75eef5-9b88-4546-8bda-134d2e351fc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-31T07:46:54.000Z" - }, - "end": { - "$date": "2021-01-31T08:26:39.000Z" - }, - "events": [ - { - "uuid": "dd3a3fa3-82f5-4776-8fac-fe28055ead90", - "start": { - "$date": "2021-01-31T07:46:54.000Z" - }, - "end": { - "$date": "2021-01-31T08:26:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3442892-78cf-4b28-93ef-163d7550065c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T08:07:57.000Z" - }, - "end": { - "$date": "2021-01-31T08:23:56.000Z" - }, - "events": [ - { - "uuid": "5eca68ae-7831-49ef-9d21-64e8b8f3aa92", - "start": { - "$date": "2021-01-31T08:07:57.000Z" - }, - "end": { - "$date": "2021-01-31T08:23:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c474691-43d2-4866-915d-662563decc86", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T08:08:25.000Z" - }, - "end": { - "$date": "2021-01-31T08:23:47.000Z" - }, - "events": [ - { - "uuid": "4b426ea8-82bb-4acb-a96d-6419af574fc1", - "start": { - "$date": "2021-01-31T08:08:25.000Z" - }, - "end": { - "$date": "2021-01-31T08:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c8cbe0e-26e6-4c5a-8373-262a396eaf8d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T08:28:33.000Z" - }, - "end": { - "$date": "2021-01-31T08:55:06.000Z" - }, - "events": [ - { - "uuid": "c8e936e6-5a30-492f-8cb1-5a37b0af5eef", - "start": { - "$date": "2021-01-31T08:28:33.000Z" - }, - "end": { - "$date": "2021-01-31T08:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6bee1ce-e125-4228-9acd-c197a42da0fe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T08:28:31.000Z" - }, - "end": { - "$date": "2021-01-31T08:54:58.000Z" - }, - "events": [ - { - "uuid": "b32ea210-c82d-46b0-a268-60c065a8ea5b", - "start": { - "$date": "2021-01-31T08:28:31.000Z" - }, - "end": { - "$date": "2021-01-31T08:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "5c9ca195-79d5-4d1a-a865-f39769927a47", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T08:31:30.000Z" - }, - "end": { - "$date": "2021-01-31T09:15:21.000Z" - }, - "events": [ - { - "uuid": "f583bcc3-c08e-4fcd-82ae-a6f66f674772", - "start": { - "$date": "2021-01-31T08:31:30.000Z" - }, - "end": { - "$date": "2021-01-31T09:15:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "d17ed7d2-500a-4a87-b9a1-ffe92986c895", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-31T08:37:15.000Z" - }, - "end": { - "$date": "2021-01-31T08:41:19.000Z" - }, - "events": [ - { - "uuid": "719a2fa6-61cd-440c-a1d5-5513856893e3", - "start": { - "$date": "2021-01-31T08:37:15.000Z" - }, - "end": { - "$date": "2021-01-31T08:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d77be5f2-9062-44a0-aeed-858300bea66d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T09:06:14.000Z" - }, - "end": { - "$date": "2021-01-31T09:39:57.000Z" - }, - "events": [ - { - "uuid": "061310c1-907e-40fb-8b5f-7725dbefe228", - "start": { - "$date": "2021-01-31T09:06:14.000Z" - }, - "end": { - "$date": "2021-01-31T09:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4d6346f-3ada-4b5f-8462-8163ce9fa0bf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T09:55:49.000Z" - }, - "end": { - "$date": "2021-01-31T10:36:42.000Z" - }, - "events": [ - { - "uuid": "7b1ae4b4-1d67-4aa7-8a8f-6d40da93cd2d", - "start": { - "$date": "2021-01-31T09:55:49.000Z" - }, - "end": { - "$date": "2021-01-31T10:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "97606664-01d5-4d1a-a105-78eefd8e9761", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-01-31T16:22:03.000Z" - }, - "end": { - "$date": "2021-01-31T20:55:34.000Z" - }, - "events": [ - { - "uuid": "8c3575f2-38a7-4cc5-bc15-78be7fb92a77", - "start": { - "$date": "2021-01-31T16:22:03.000Z" - }, - "end": { - "$date": "2021-01-31T20:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5943dd27-5383-4771-80f8-fbbb5d15ed54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-01-31T18:40:59.000Z" - }, - "end": { - "$date": "2021-01-31T19:52:40.000Z" - }, - "events": [ - { - "uuid": "cdd8be32-bd68-499f-a6af-ee195381f691", - "start": { - "$date": "2021-01-31T18:40:59.000Z" - }, - "end": { - "$date": "2021-01-31T19:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9e58380-bda3-4120-9c67-8111a126c541", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-31T18:45:51.000Z" - }, - "end": { - "$date": "2021-01-31T19:28:26.000Z" - }, - "events": [ - { - "uuid": "8119efea-88b7-4e3f-86d5-e3a5da430a11", - "start": { - "$date": "2021-01-31T18:45:51.000Z" - }, - "end": { - "$date": "2021-01-31T19:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "da5a5576-7062-4cb1-90be-d11ec29174df", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-31T19:29:37.000Z" - }, - "end": { - "$date": "2021-01-31T20:44:31.000Z" - }, - "events": [ - { - "uuid": "52dfc350-c301-42cf-8aa8-f1c58f27c414", - "start": { - "$date": "2021-01-31T19:29:37.000Z" - }, - "end": { - "$date": "2021-01-31T20:21:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0de7edb7-694d-45ec-ad41-fcf85f066022", - "start": { - "$date": "2021-01-31T20:21:37.000Z" - }, - "end": { - "$date": "2021-01-31T20:44:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5db6bc8d-35d7-4e77-ad81-38b6706887b5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-01-31T20:11:38.000Z" - }, - "end": { - "$date": "2021-01-31T21:22:39.000Z" - }, - "events": [ - { - "uuid": "eade0b8b-5ec3-4330-9f6f-9c7c6e1e5a62", - "start": { - "$date": "2021-01-31T20:11:38.000Z" - }, - "end": { - "$date": "2021-01-31T21:22:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "877c9517-0f02-44e5-9c07-e0bc3d79879b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T21:10:09.000Z" - }, - "end": { - "$date": "2021-01-31T21:26:49.000Z" - }, - "events": [ - { - "uuid": "86a18475-5975-4484-97f9-8703711f401e", - "start": { - "$date": "2021-01-31T21:10:09.000Z" - }, - "end": { - "$date": "2021-01-31T21:26:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f18aec72-7899-418f-9081-9eaef2fe7b1f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-01-31T21:16:36.000Z" - }, - "end": { - "$date": "2021-01-31T21:24:32.000Z" - }, - "events": [ - { - "uuid": "43f30f38-e09a-4c49-938c-88e315338cc8", - "start": { - "$date": "2021-01-31T21:16:36.000Z" - }, - "end": { - "$date": "2021-01-31T21:24:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d15750c5-fafb-4d10-bd8d-71366ee5727c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-31T21:21:28.000Z" - }, - "end": { - "$date": "2021-01-31T22:20:58.000Z" - }, - "events": [ - { - "uuid": "45581b55-ce58-42f3-8054-98a05d3a5b49", - "start": { - "$date": "2021-01-31T21:21:28.000Z" - }, - "end": { - "$date": "2021-01-31T22:20:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c457cdad-8c2d-4b14-8159-03114470c42e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-01-31T21:22:40.000Z" - }, - "end": { - "$date": "2021-02-01T09:00:34.000Z" - }, - "events": [ - { - "uuid": "a6546b1d-c4c4-4743-b327-819cd68882a4", - "start": { - "$date": "2021-01-31T21:22:40.000Z" - }, - "end": { - "$date": "2021-02-01T09:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e2fc48f-b58d-4433-a32f-fcbf9abf3ce6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T21:39:10.000Z" - }, - "end": { - "$date": "2021-01-31T22:15:52.000Z" - }, - "events": [ - { - "uuid": "ac4dc942-3375-4df0-90e2-cb84bae3f851", - "start": { - "$date": "2021-01-31T21:39:10.000Z" - }, - "end": { - "$date": "2021-01-31T22:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e490ed2-3a6e-42c5-b4ab-dc12cae3bd8b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-01-31T21:40:05.000Z" - }, - "end": { - "$date": "2021-01-31T22:15:53.000Z" - }, - "events": [ - { - "uuid": "9e9ab16b-c8f5-4bea-9600-0f203b551f8a", - "start": { - "$date": "2021-01-31T21:40:05.000Z" - }, - "end": { - "$date": "2021-01-31T22:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e74ea315-ccb5-4afa-bcf6-a9c5f108f3da", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-01-31T22:03:16.000Z" - }, - "end": { - "$date": "2021-02-01T02:52:46.000Z" - }, - "events": [ - { - "uuid": "193e9e92-3a34-448c-b2ec-788321246586", - "start": { - "$date": "2021-01-31T22:03:16.000Z" - }, - "end": { - "$date": "2021-02-01T00:34:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "17e41ff6-a4fb-4db1-a2d4-0ddb10cf36ce", - "start": { - "$date": "2021-02-01T00:34:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:06:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59bc80c6-a0e7-403b-928f-1d219a29f8ca", - "start": { - "$date": "2021-02-01T01:06:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:16:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3cb27e95-6286-47d2-ac9a-9f810a6cce72", - "start": { - "$date": "2021-02-01T01:16:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:17:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f666e44-bc9f-4c4d-814a-2716f62ed038", - "start": { - "$date": "2021-02-01T01:17:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:27:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93f69495-be33-4cab-b66d-a923606307d5", - "start": { - "$date": "2021-02-01T01:27:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:33:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36960cd1-512f-4e8f-9da8-211b736430dd", - "start": { - "$date": "2021-02-01T01:33:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:43:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "460e8f2b-ceeb-42b5-a60d-69e9f9ec1128", - "start": { - "$date": "2021-02-01T01:43:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:49:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae995975-8db8-46d8-8cf3-386730cb760c", - "start": { - "$date": "2021-02-01T01:49:16.000Z" - }, - "end": { - "$date": "2021-02-01T01:59:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a0a4c5f-9ba3-456b-a1bf-ee9d8a7ab2f7", - "start": { - "$date": "2021-02-01T01:59:16.000Z" - }, - "end": { - "$date": "2021-02-01T02:14:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d3be38d-bfe5-45f6-941d-1cb9170a3718", - "start": { - "$date": "2021-02-01T02:14:16.000Z" - }, - "end": { - "$date": "2021-02-01T02:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcc3d0c0-0e9d-4a6d-8bc4-e08471b7df6e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T22:22:51.000Z" - }, - "end": { - "$date": "2021-01-31T22:55:23.000Z" - }, - "events": [ - { - "uuid": "936615d8-ea83-4130-afaa-a6b1a5e824e8", - "start": { - "$date": "2021-01-31T22:22:51.000Z" - }, - "end": { - "$date": "2021-01-31T22:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3cc307c-da98-4e23-afb6-e5152320554b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-01-31T22:55:33.000Z" - }, - "end": { - "$date": "2021-01-31T22:57:37.000Z" - }, - "events": [ - { - "uuid": "33b67b6d-48fd-4a62-a98d-855085643862", - "start": { - "$date": "2021-01-31T22:55:33.000Z" - }, - "end": { - "$date": "2021-01-31T22:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "680cb34a-a62e-4256-86de-e2ece7439103", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-31T22:21:53.000Z" - }, - "end": { - "$date": "2021-01-31T22:24:24.000Z" - }, - "events": [ - { - "uuid": "700c1b8f-45c9-4a46-a63a-af8bc65054aa", - "start": { - "$date": "2021-01-31T22:21:53.000Z" - }, - "end": { - "$date": "2021-01-31T22:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "05d06ed6-fe06-4017-89f5-c2636497dc7b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-01-31T22:28:28.000Z" - }, - "end": { - "$date": "2021-02-01T02:17:17.000Z" - }, - "events": [ - { - "uuid": "a9d0f034-d4fa-4cd8-8890-a9d2ef16096e", - "start": { - "$date": "2021-01-31T22:28:28.000Z" - }, - "end": { - "$date": "2021-01-31T23:30:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7fe97d2-cf09-4690-ae0a-988401d321a0", - "start": { - "$date": "2021-01-31T23:30:28.000Z" - }, - "end": { - "$date": "2021-02-01T00:34:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "132c6342-5c4c-4a22-bd45-36242e06fde6", - "start": { - "$date": "2021-02-01T00:34:28.000Z" - }, - "end": { - "$date": "2021-02-01T00:36:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "53a29cc3-de0e-4bd3-a014-f4ade0469137", - "start": { - "$date": "2021-02-01T00:36:28.000Z" - }, - "end": { - "$date": "2021-02-01T00:49:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "33ae5100-cc50-483b-906e-4dc85c14dbd1", - "start": { - "$date": "2021-02-01T00:49:28.000Z" - }, - "end": { - "$date": "2021-02-01T00:51:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bdaf52f-8ba7-4242-87b0-a65085b28f46", - "start": { - "$date": "2021-02-01T00:51:28.000Z" - }, - "end": { - "$date": "2021-02-01T01:31:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b8a1dd54-1485-4dca-b98a-00c2ca0dcc44", - "start": { - "$date": "2021-02-01T01:31:28.000Z" - }, - "end": { - "$date": "2021-02-01T01:33:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3ce78827-c51b-44f7-821d-cd10c2cd92d5", - "start": { - "$date": "2021-02-01T01:33:28.000Z" - }, - "end": { - "$date": "2021-02-01T01:39:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d6485a1-1f6e-4624-bd5c-d6fd701e9225", - "start": { - "$date": "2021-02-01T01:39:28.000Z" - }, - "end": { - "$date": "2021-02-01T01:42:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8980030-3b31-45a0-a95b-61cd7a9ac224", - "start": { - "$date": "2021-02-01T01:42:28.000Z" - }, - "end": { - "$date": "2021-02-01T01:43:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69ea6975-dc17-4711-8c05-6b4106fece41", - "start": { - "$date": "2021-02-01T01:43:28.000Z" - }, - "end": { - "$date": "2021-02-01T02:17:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "869116fd-b29b-4cd7-9d83-ba0fb8bf7dc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T23:04:33.000Z" - }, - "end": { - "$date": "2021-01-31T23:33:15.000Z" - }, - "events": [ - { - "uuid": "21baf907-28e7-4a57-93e0-8e54c75b8d26", - "start": { - "$date": "2021-01-31T23:04:33.000Z" - }, - "end": { - "$date": "2021-01-31T23:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b650126c-ee79-401a-acc1-f1949583bd59", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T00:08:31.000Z" - }, - "end": { - "$date": "2021-02-01T00:09:26.000Z" - }, - "events": [ - { - "uuid": "16e43401-d8fa-45fd-b66f-86cb112d8e57", - "start": { - "$date": "2021-02-01T00:08:31.000Z" - }, - "end": { - "$date": "2021-02-01T00:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "42429f65-0198-48e4-bf17-833e37638078", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-01-31T23:09:40.000Z" - }, - "end": { - "$date": "2021-02-01T03:31:22.000Z" - }, - "events": [ - { - "uuid": "b28cb9a1-698c-4f9a-a96f-83dc3edc1c09", - "start": { - "$date": "2021-01-31T23:09:40.000Z" - }, - "end": { - "$date": "2021-02-01T03:31:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c058d91-f88f-466b-87d3-7bffc4f2145b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-01-31T23:38:23.000Z" - }, - "end": { - "$date": "2021-01-31T23:49:56.000Z" - }, - "events": [ - { - "uuid": "1f4e109e-bcc2-4e75-8a1d-e3cdcd65b3a6", - "start": { - "$date": "2021-01-31T23:38:23.000Z" - }, - "end": { - "$date": "2021-01-31T23:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56454e91-7c01-46d0-9bb8-d6736696874a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T00:08:45.000Z" - }, - "end": { - "$date": "2021-02-01T00:08:41.000Z" - }, - "events": [ - { - "uuid": "e24463f7-c25e-44ed-9343-f382470025e4", - "start": { - "$date": "2021-02-01T00:08:45.000Z" - }, - "end": { - "$date": "2021-02-01T00:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7bc60f09-dfcc-4f6b-aa5c-8794f3909f90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-01T00:24:12.000Z" - }, - "end": { - "$date": "2021-02-01T00:29:30.000Z" - }, - "events": [ - { - "uuid": "553211ff-1299-4725-97c3-d11439d7d647", - "start": { - "$date": "2021-02-01T00:24:12.000Z" - }, - "end": { - "$date": "2021-02-01T00:29:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "9dbb0a63-8755-4708-a1fe-a012578ef494", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-01T00:35:35.000Z" - }, - "end": { - "$date": "2021-02-01T02:21:29.000Z" - }, - "events": [ - { - "uuid": "10e973bc-f822-4467-be35-2c55d5d0a744", - "start": { - "$date": "2021-02-01T00:35:35.000Z" - }, - "end": { - "$date": "2021-02-01T02:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "361c37a8-bc25-4f81-b085-815bf35824dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-01T00:39:02.000Z" - }, - "end": { - "$date": "2021-02-01T02:45:51.000Z" - }, - "events": [ - { - "uuid": "8e7ae593-2b28-4d93-bc67-b72782bd9d08", - "start": { - "$date": "2021-02-01T00:39:02.000Z" - }, - "end": { - "$date": "2021-02-01T01:44:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f0ca1b57-d727-4834-9bb3-59b9f6059f12", - "start": { - "$date": "2021-02-01T01:44:02.000Z" - }, - "end": { - "$date": "2021-02-01T02:23:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef91bb30-44d3-4a42-bb9f-68f259fbef61", - "start": { - "$date": "2021-02-01T02:23:02.000Z" - }, - "end": { - "$date": "2021-02-01T02:25:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9c16069-9182-4a01-b779-1c984c53bc91", - "start": { - "$date": "2021-02-01T02:25:02.000Z" - }, - "end": { - "$date": "2021-02-01T02:42:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b54c9a3-0510-48e7-a1c7-eb432bcb1b5a", - "start": { - "$date": "2021-02-01T02:42:02.000Z" - }, - "end": { - "$date": "2021-02-01T02:45:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8c2d84b8-5be5-45cf-a230-78376e3507c8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-01T01:10:19.000Z" - }, - "end": { - "$date": "2021-02-01T01:18:38.000Z" - }, - "events": [ - { - "uuid": "83609955-60a7-42ef-b829-4a578d165ca9", - "start": { - "$date": "2021-02-01T01:10:19.000Z" - }, - "end": { - "$date": "2021-02-01T01:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "87a606ab-1a6e-436b-8317-81e617bbf31f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-01T01:23:32.000Z" - }, - "end": { - "$date": "2021-02-01T02:14:56.000Z" - }, - "events": [ - { - "uuid": "bbb3201e-50da-4f9f-91c8-8797fec48aa3", - "start": { - "$date": "2021-02-01T01:23:32.000Z" - }, - "end": { - "$date": "2021-02-01T02:14:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a76fe477-941e-4dbe-8c6a-3d667b11829a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-01T02:26:05.000Z" - }, - "end": { - "$date": "2021-02-01T04:22:49.000Z" - }, - "events": [ - { - "uuid": "cb1f3d6f-2e15-4b89-8b4c-be430281e12d", - "start": { - "$date": "2021-02-01T02:26:05.000Z" - }, - "end": { - "$date": "2021-02-01T04:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7db984d-2618-45ec-b247-0b98607917e9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T02:53:50.000Z" - }, - "end": { - "$date": "2021-02-01T03:26:24.000Z" - }, - "events": [ - { - "uuid": "b8e293ea-4e63-4a4a-a3ee-fc65ad51c496", - "start": { - "$date": "2021-02-01T02:53:50.000Z" - }, - "end": { - "$date": "2021-02-01T03:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "1b34d5dc-8960-4fcf-8378-c376c3a4809e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-01T03:03:18.000Z" - }, - "end": { - "$date": "2021-02-01T03:42:59.000Z" - }, - "events": [ - { - "uuid": "a889ea49-063d-42d3-92fb-fbd08097e990", - "start": { - "$date": "2021-02-01T03:03:18.000Z" - }, - "end": { - "$date": "2021-02-01T03:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a5b65e75-134f-485c-9f9a-29a9e322c52e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-01T03:17:17.000Z" - }, - "end": { - "$date": "2021-02-01T05:18:10.000Z" - }, - "events": [ - { - "uuid": "e82c35b3-282a-4287-bdcf-2ace0c5b8f7c", - "start": { - "$date": "2021-02-01T03:17:17.000Z" - }, - "end": { - "$date": "2021-02-01T05:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d937839-1197-4c92-b31b-2e5c803d9e42", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T05:15:39.000Z" - }, - "end": { - "$date": "2021-02-01T05:16:31.000Z" - }, - "events": [ - { - "uuid": "a07afbcb-030b-457c-8f21-deb3d88944ff", - "start": { - "$date": "2021-02-01T05:15:39.000Z" - }, - "end": { - "$date": "2021-02-01T05:16:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9628201c-1d48-4fb5-a7f6-f8b6d87ffd6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T03:33:15.000Z" - }, - "end": { - "$date": "2021-02-01T03:53:26.000Z" - }, - "events": [ - { - "uuid": "5940fae1-8bef-4c19-a8dd-550d957b9a0d", - "start": { - "$date": "2021-02-01T03:33:15.000Z" - }, - "end": { - "$date": "2021-02-01T03:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2246d853-5e8a-4c40-aff9-a1833e25f7e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-01T03:42:46.000Z" - }, - "end": { - "$date": "2021-02-01T03:48:30.000Z" - }, - "events": [ - { - "uuid": "b3fff324-18de-415f-9444-879f9517f726", - "start": { - "$date": "2021-02-01T03:42:46.000Z" - }, - "end": { - "$date": "2021-02-01T03:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "24de810a-8686-4c94-b936-6785429b4403", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-01T03:48:57.000Z" - }, - "end": { - "$date": "2021-02-01T04:33:17.000Z" - }, - "events": [ - { - "uuid": "48f405a7-4af2-48db-ad52-e64b6e01140d", - "start": { - "$date": "2021-02-01T03:48:57.000Z" - }, - "end": { - "$date": "2021-02-01T04:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1386234a-27c0-4be9-9d1b-28c993bfe722", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T04:36:23.000Z" - }, - "end": { - "$date": "2021-02-01T04:36:23.000Z" - }, - "events": [ - { - "uuid": "eca7fa7d-88ba-48af-a5b1-90abc4e95582", - "start": { - "$date": "2021-02-01T04:36:23.000Z" - }, - "end": { - "$date": "2021-02-01T04:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a99f2576-0d77-428f-93f3-d10f4b2f0fef", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-01T03:55:42.000Z" - }, - "end": { - "$date": "2021-02-01T05:18:20.000Z" - }, - "events": [ - { - "uuid": "b852eefe-7cd4-4ec3-a442-d0f5ca489af6", - "start": { - "$date": "2021-02-01T03:55:42.000Z" - }, - "end": { - "$date": "2021-02-01T05:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4658b2f7-3ecc-44d6-862c-c228f178b53b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-01T04:19:13.000Z" - }, - "end": { - "$date": "2021-02-01T05:31:08.000Z" - }, - "events": [ - { - "uuid": "bb239b65-de4c-4a0f-8ba0-286de7058ed7", - "start": { - "$date": "2021-02-01T04:19:13.000Z" - }, - "end": { - "$date": "2021-02-01T05:31:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "05a01154-4f8f-49c7-8f02-989dcac776ee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-01T04:23:24.000Z" - }, - "end": { - "$date": "2021-02-01T05:32:40.000Z" - }, - "events": [ - { - "uuid": "0bdf3ebd-eca9-4638-88fb-7fe2f1f714a2", - "start": { - "$date": "2021-02-01T04:23:24.000Z" - }, - "end": { - "$date": "2021-02-01T05:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "e28c2671-5403-4c63-af7b-e461e2d42daf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-01T04:23:35.000Z" - }, - "end": { - "$date": "2021-02-01T05:36:31.000Z" - }, - "events": [ - { - "uuid": "bded89ed-b876-4f57-8d0d-438824ebb27e", - "start": { - "$date": "2021-02-01T04:23:35.000Z" - }, - "end": { - "$date": "2021-02-01T05:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65f52615-ee3a-4d21-a132-66efd9e52d38", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-01T04:36:05.000Z" - }, - "end": { - "$date": "2021-02-01T05:06:06.000Z" - }, - "events": [ - { - "uuid": "eb8e23f7-81d6-45c4-95f9-b66d798cd435", - "start": { - "$date": "2021-02-01T04:36:05.000Z" - }, - "end": { - "$date": "2021-02-01T05:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad67c084-b724-47f9-8d23-9cb3d5cd8c2f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T04:37:35.000Z" - }, - "end": { - "$date": "2021-02-01T04:39:13.000Z" - }, - "events": [ - { - "uuid": "4221ece0-0149-4cc2-b1d7-b062964a8a9d", - "start": { - "$date": "2021-02-01T04:37:35.000Z" - }, - "end": { - "$date": "2021-02-01T04:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86f96c58-9de8-4617-83b7-bc3eb1ab7539", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T04:43:32.000Z" - }, - "end": { - "$date": "2021-02-01T05:15:37.000Z" - }, - "events": [ - { - "uuid": "d9e5418c-6979-4b47-858b-7150b1fbff56", - "start": { - "$date": "2021-02-01T04:43:32.000Z" - }, - "end": { - "$date": "2021-02-01T05:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c9ed97f-47a3-4c50-940a-372fb5faddd9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-01T05:00:13.000Z" - }, - "end": { - "$date": "2021-02-01T08:18:28.000Z" - }, - "events": [ - { - "uuid": "5d256a8e-b74f-4f08-8dac-9281c091d282", - "start": { - "$date": "2021-02-01T05:00:13.000Z" - }, - "end": { - "$date": "2021-02-01T08:18:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "08365025-64dc-4a29-bd99-880722c5e779", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-01T05:05:52.000Z" - }, - "end": { - "$date": "2021-02-01T08:06:59.000Z" - }, - "events": [ - { - "uuid": "6f8650d5-1f9b-43bd-bdbe-c6e602a202a1", - "start": { - "$date": "2021-02-01T05:05:52.000Z" - }, - "end": { - "$date": "2021-02-01T08:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e330c4f5-51f8-4e9e-8f3d-fe77e4ce46aa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-01T05:47:47.000Z" - }, - "end": { - "$date": "2021-02-01T05:50:00.000Z" - }, - "events": [ - { - "uuid": "72417419-7875-416d-b676-28cdedd31dfc", - "start": { - "$date": "2021-02-01T05:47:47.000Z" - }, - "end": { - "$date": "2021-02-01T05:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b81d571a-8aec-4c7d-a2dd-f1913dd256fb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-01T05:46:44.000Z" - }, - "end": { - "$date": "2021-02-01T07:18:52.000Z" - }, - "events": [ - { - "uuid": "c6560762-14bc-458b-b157-3848ec025305", - "start": { - "$date": "2021-02-01T05:46:44.000Z" - }, - "end": { - "$date": "2021-02-01T07:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0474d15f-5432-4419-b808-250999476e24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T05:56:43.000Z" - }, - "end": { - "$date": "2021-02-01T06:23:29.000Z" - }, - "events": [ - { - "uuid": "930b8b76-09a5-4ca8-b768-29c4616bbb3e", - "start": { - "$date": "2021-02-01T05:56:43.000Z" - }, - "end": { - "$date": "2021-02-01T06:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "dd88cda6-03ac-4b0c-bd85-92ffc1200b7c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-01T05:51:18.000Z" - }, - "end": { - "$date": "2021-02-01T06:05:14.000Z" - }, - "events": [ - { - "uuid": "095ad232-2802-499a-a431-d71f34ad9e97", - "start": { - "$date": "2021-02-01T05:51:18.000Z" - }, - "end": { - "$date": "2021-02-01T06:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fecb97d3-0688-4b8d-ba08-f6bd252a38bb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-01T05:57:23.000Z" - }, - "end": { - "$date": "2021-02-01T06:23:24.000Z" - }, - "events": [ - { - "uuid": "0cec7744-998c-4681-8fad-cae6dbc26656", - "start": { - "$date": "2021-02-01T05:57:23.000Z" - }, - "end": { - "$date": "2021-02-01T06:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dd3615d2-dcd7-4bc4-912f-3a88b297261f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-01T06:06:36.000Z" - }, - "end": { - "$date": "2021-02-01T06:20:09.000Z" - }, - "events": [ - { - "uuid": "0adfc0ad-b115-4ba0-9a93-8431e3a9d620", - "start": { - "$date": "2021-02-01T06:06:36.000Z" - }, - "end": { - "$date": "2021-02-01T06:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc5128ab-94e0-4510-b377-7cfb22f957db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T09:03:56.000Z" - }, - "end": { - "$date": "2021-02-01T09:25:53.000Z" - }, - "events": [ - { - "uuid": "c47015d3-14c8-4216-97b7-7058bbdb48c2", - "start": { - "$date": "2021-02-01T09:03:56.000Z" - }, - "end": { - "$date": "2021-02-01T09:25:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd2977f2-b446-40a7-a21b-ceeb8901dd56", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T09:34:24.000Z" - }, - "end": { - "$date": "2021-02-01T10:05:07.000Z" - }, - "events": [ - { - "uuid": "34618bd0-19af-4504-8406-c27a2bee2950", - "start": { - "$date": "2021-02-01T09:34:24.000Z" - }, - "end": { - "$date": "2021-02-01T10:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a71bb19-0b0c-4e73-b5cc-39678e4679e7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T10:10:18.000Z" - }, - "end": { - "$date": "2021-02-01T10:41:43.000Z" - }, - "events": [ - { - "uuid": "3dea06e6-7849-4914-82d6-527b1cc536c4", - "start": { - "$date": "2021-02-01T10:10:18.000Z" - }, - "end": { - "$date": "2021-02-01T10:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb4d0a34-e63e-4e37-93ba-73f7307646a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T10:46:52.000Z" - }, - "end": { - "$date": "2021-02-01T11:08:59.000Z" - }, - "events": [ - { - "uuid": "5dd5d0e6-97ca-468a-b5e1-aa93dbf81bc7", - "start": { - "$date": "2021-02-01T10:46:52.000Z" - }, - "end": { - "$date": "2021-02-01T11:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dff3a0a5-f023-44d3-97d1-af5ab141f829", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T11:14:11.000Z" - }, - "end": { - "$date": "2021-02-01T11:44:23.000Z" - }, - "events": [ - { - "uuid": "c4d9e836-10fa-4814-a302-875d96abf3f8", - "start": { - "$date": "2021-02-01T11:14:11.000Z" - }, - "end": { - "$date": "2021-02-01T11:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2147f9f-5b1d-47c7-967f-2cef83d0c3e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-01T11:51:15.000Z" - }, - "end": { - "$date": "2021-02-01T12:49:22.000Z" - }, - "events": [ - { - "uuid": "10b27add-6a85-4d32-839d-3238d1d846b9", - "start": { - "$date": "2021-02-01T11:51:15.000Z" - }, - "end": { - "$date": "2021-02-01T12:12:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0d5310b-e4cc-4f8e-aea8-678deacca60b", - "start": { - "$date": "2021-02-01T12:12:15.000Z" - }, - "end": { - "$date": "2021-02-01T12:21:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94aa95c0-e2c3-4410-8193-57e072f9fe37", - "start": { - "$date": "2021-02-01T12:21:15.000Z" - }, - "end": { - "$date": "2021-02-01T12:36:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dfdc08cd-179d-421b-892d-d8a8b75968c8", - "start": { - "$date": "2021-02-01T12:36:15.000Z" - }, - "end": { - "$date": "2021-02-01T12:49:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "47d30235-634e-473b-9146-1ff3b404deb1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-01T16:18:22.000Z" - }, - "end": { - "$date": "2021-02-01T17:55:13.000Z" - }, - "events": [ - { - "uuid": "8a1422d5-f3a1-4001-99b9-f7fe54befa62", - "start": { - "$date": "2021-02-01T16:18:22.000Z" - }, - "end": { - "$date": "2021-02-01T17:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b74ac2d5-3c52-4b62-b28b-6aee6c6fe85f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-01T16:57:54.000Z" - }, - "end": { - "$date": "2021-02-01T17:12:03.000Z" - }, - "events": [ - { - "uuid": "f07facce-baac-4e2a-966f-968514c51ae8", - "start": { - "$date": "2021-02-01T16:57:54.000Z" - }, - "end": { - "$date": "2021-02-01T17:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f8ae89ef-2fc8-4f18-918a-43ebb85caf96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-01T16:57:49.000Z" - }, - "end": { - "$date": "2021-02-01T17:29:56.000Z" - }, - "events": [ - { - "uuid": "87265b67-3ed0-4014-9f71-f8dc6b616d8a", - "start": { - "$date": "2021-02-01T16:57:49.000Z" - }, - "end": { - "$date": "2021-02-01T17:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14432753-3f4a-4d30-8c1e-94c5b817212f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T17:20:05.000Z" - }, - "end": { - "$date": "2021-02-01T17:38:33.000Z" - }, - "events": [ - { - "uuid": "04ab720e-60d9-423c-8516-a77155672d17", - "start": { - "$date": "2021-02-01T17:20:05.000Z" - }, - "end": { - "$date": "2021-02-01T17:38:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6b418e18-094c-421d-9c96-d288fc3cad0b", - "uuid": "0b9bea74-392e-4113-aec5-f917ec042a7a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-01T16:18:22.000Z" - }, - "end": { - "$date": "2021-02-02T01:32:51.000Z" - }, - "events": [ - { - "uuid": "c450557c-7e86-4e92-ae72-25376a0d99a3", - "start": { - "$date": "2021-02-01T16:18:22.000Z" - }, - "end": { - "$date": "2021-02-01T22:47:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22f0b314-b831-4a0a-9d05-f4db72078984", - "start": { - "$date": "2021-02-01T22:47:22.000Z" - }, - "end": { - "$date": "2021-02-01T23:03:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c1bb5bf-d987-4241-ae20-33c3b699c41a", - "start": { - "$date": "2021-02-01T23:03:22.000Z" - }, - "end": { - "$date": "2021-02-02T01:32:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb32eebe-b5c1-42f5-ae09-360d4c05ae44", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T18:06:03.000Z" - }, - "end": { - "$date": "2021-02-01T18:23:51.000Z" - }, - "events": [ - { - "uuid": "ce295965-3b63-4813-b4ef-9d1aeea096db", - "start": { - "$date": "2021-02-01T18:06:03.000Z" - }, - "end": { - "$date": "2021-02-01T18:23:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5d39a22-f9db-4385-87f8-33e228dc5df1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T18:24:17.000Z" - }, - "end": { - "$date": "2021-02-01T18:41:49.000Z" - }, - "events": [ - { - "uuid": "95da308e-7ec4-4b3d-a73c-203ca63adcf6", - "start": { - "$date": "2021-02-01T18:24:17.000Z" - }, - "end": { - "$date": "2021-02-01T18:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f97bce55-d40b-4c2a-afd3-e5b01e4bcded", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-01T18:30:02.000Z" - }, - "end": { - "$date": "2021-02-01T18:41:07.000Z" - }, - "events": [ - { - "uuid": "8c3e1be1-72e6-4b4f-b7d6-0ec8a3d2539f", - "start": { - "$date": "2021-02-01T18:30:02.000Z" - }, - "end": { - "$date": "2021-02-01T18:41:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "45817459-fd34-42d0-9766-198025437318", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-01T18:36:25.000Z" - }, - "end": { - "$date": "2021-02-01T19:13:00.000Z" - }, - "events": [ - { - "uuid": "95427387-4a7d-4afb-9b7b-45b892212106", - "start": { - "$date": "2021-02-01T18:36:25.000Z" - }, - "end": { - "$date": "2021-02-01T19:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e758f6e-be19-4536-8eb8-089ffe8809aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T19:00:07.000Z" - }, - "end": { - "$date": "2021-02-01T19:31:08.000Z" - }, - "events": [ - { - "uuid": "db6a6618-5cf0-4ffe-bdc5-4fd1f4d60092", - "start": { - "$date": "2021-02-01T19:00:07.000Z" - }, - "end": { - "$date": "2021-02-01T19:31:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "95c36706-ab92-4924-8f94-53e6ea06a923", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-01T19:27:56.000Z" - }, - "end": { - "$date": "2021-02-01T20:13:26.000Z" - }, - "events": [ - { - "uuid": "f82a235b-acdc-4860-b20f-ff9fe206185c", - "start": { - "$date": "2021-02-01T19:27:56.000Z" - }, - "end": { - "$date": "2021-02-01T20:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc5a0d9f-5471-4074-9a1d-ef99aa0b1997", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T20:11:17.000Z" - }, - "end": { - "$date": "2021-02-01T20:11:15.000Z" - }, - "events": [ - { - "uuid": "7bb065fd-c1a0-4d89-8b3f-397ceca54789", - "start": { - "$date": "2021-02-01T20:11:17.000Z" - }, - "end": { - "$date": "2021-02-01T20:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5d4736e8-7cbb-4627-a332-4332848b33a6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-01T19:34:00.000Z" - }, - "end": { - "$date": "2021-02-01T20:20:21.000Z" - }, - "events": [ - { - "uuid": "56f12ed8-c18e-49e5-84dd-3aac65b4a5f9", - "start": { - "$date": "2021-02-01T19:34:00.000Z" - }, - "end": { - "$date": "2021-02-01T20:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cce355ce-9185-407a-ac30-1cd2d458794d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-01T20:05:03.000Z" - }, - "end": { - "$date": "2021-02-01T21:20:40.000Z" - }, - "events": [ - { - "uuid": "c3d72cca-7388-430a-8680-4e47a5e67c5c", - "start": { - "$date": "2021-02-01T20:05:03.000Z" - }, - "end": { - "$date": "2021-02-01T21:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "95a8805a-d962-438a-aad5-be4690cfe508", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-01T20:39:46.000Z" - }, - "end": { - "$date": "2021-02-01T21:51:34.000Z" - }, - "events": [ - { - "uuid": "36b2093e-c16f-4edf-ac3f-7bb9d55369cb", - "start": { - "$date": "2021-02-01T20:39:46.000Z" - }, - "end": { - "$date": "2021-02-01T21:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "70ff69d1-c2ef-4f1a-9c9a-b06e72014f01", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-01T21:18:12.000Z" - }, - "end": { - "$date": "2021-02-01T22:35:53.000Z" - }, - "events": [ - { - "uuid": "ec923600-23a8-4bc9-b477-f6c5525d3532", - "start": { - "$date": "2021-02-01T21:18:12.000Z" - }, - "end": { - "$date": "2021-02-01T22:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a013df55-bfdc-4545-adf7-73bb7a2d7e24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T22:35:33.000Z" - }, - "end": { - "$date": "2021-02-01T22:35:30.000Z" - }, - "events": [ - { - "uuid": "05024aa6-b057-4284-b8d6-f5584b9c0e99", - "start": { - "$date": "2021-02-01T22:35:33.000Z" - }, - "end": { - "$date": "2021-02-01T22:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f22d10b9-050d-4775-8750-d5340b37f1a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-01T21:59:03.000Z" - }, - "end": { - "$date": "2021-02-01T22:57:39.000Z" - }, - "events": [ - { - "uuid": "18ffbfbb-5910-4f87-b648-764efb06e68e", - "start": { - "$date": "2021-02-01T21:59:03.000Z" - }, - "end": { - "$date": "2021-02-01T22:57:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b90a9a6e-86b6-48bd-ad61-7363f56e6abb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-01T22:36:09.000Z" - }, - "end": { - "$date": "2021-02-01T23:33:42.000Z" - }, - "events": [ - { - "uuid": "cd82e819-4457-4f08-857b-77e56d1c901f", - "start": { - "$date": "2021-02-01T22:36:09.000Z" - }, - "end": { - "$date": "2021-02-01T23:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58152f03-43d5-49d3-b511-30a565e14163", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-01T22:42:24.000Z" - }, - "end": { - "$date": "2021-02-01T23:10:02.000Z" - }, - "events": [ - { - "uuid": "83e1fe9d-0cc2-4bf4-af85-ebfc8e4af3c4", - "start": { - "$date": "2021-02-01T22:42:24.000Z" - }, - "end": { - "$date": "2021-02-01T23:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73e5959f-b5b7-483c-b582-ad931ab5b793", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-01T23:09:56.000Z" - }, - "end": { - "$date": "2021-02-01T23:10:32.000Z" - }, - "events": [ - { - "uuid": "1ee2873a-4758-426d-8a47-754cbc2ed871", - "start": { - "$date": "2021-02-01T23:09:56.000Z" - }, - "end": { - "$date": "2021-02-01T23:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9301fe59-53b8-45e8-b54c-60bf8aae6e25", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-01T22:56:46.000Z" - }, - "end": { - "$date": "2021-02-01T23:08:01.000Z" - }, - "events": [ - { - "uuid": "41d8da12-02a4-4ed1-b87b-28b7e5fb0e13", - "start": { - "$date": "2021-02-01T22:56:46.000Z" - }, - "end": { - "$date": "2021-02-01T23:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "661535d6-65cc-459f-9ff4-680ebad94858", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-01T23:04:09.000Z" - }, - "end": { - "$date": "2021-02-02T00:21:21.000Z" - }, - "events": [ - { - "uuid": "178703c8-fc93-4c6b-b27c-fe947e97db37", - "start": { - "$date": "2021-02-01T23:04:09.000Z" - }, - "end": { - "$date": "2021-02-02T00:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a8d17ec8-5ef3-4ddc-b024-15b9ebbb244a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-01T23:44:01.000Z" - }, - "end": { - "$date": "2021-02-02T01:08:14.000Z" - }, - "events": [ - { - "uuid": "040501c1-0013-43d1-98e0-2c4b6d5f1cf5", - "start": { - "$date": "2021-02-01T23:44:01.000Z" - }, - "end": { - "$date": "2021-02-02T01:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb28a835-36bb-429f-a4cc-153a9ecba5cd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T00:16:16.000Z" - }, - "end": { - "$date": "2021-02-02T00:41:51.000Z" - }, - "events": [ - { - "uuid": "4723f931-c1e1-4cbb-ba40-8e25649a49db", - "start": { - "$date": "2021-02-02T00:16:16.000Z" - }, - "end": { - "$date": "2021-02-02T00:41:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7e316ce7-08f7-44bf-81b9-2df0110a220f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T00:42:53.000Z" - }, - "end": { - "$date": "2021-02-02T01:51:05.000Z" - }, - "events": [ - { - "uuid": "a4d341b6-7432-4722-86cb-60ed604c4cb6", - "start": { - "$date": "2021-02-02T00:42:53.000Z" - }, - "end": { - "$date": "2021-02-02T01:51:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d6d02ea9-0e09-4afc-9963-baccee7367ae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-02T00:26:11.000Z" - }, - "end": { - "$date": "2021-02-02T00:27:28.000Z" - }, - "events": [ - { - "uuid": "fd9f93a6-aeb4-4d80-8f9a-8c42739f17cc", - "start": { - "$date": "2021-02-02T00:26:11.000Z" - }, - "end": { - "$date": "2021-02-02T00:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38d9ded6-6323-4ef8-8c94-1506222c5b77", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-02T00:29:21.000Z" - }, - "end": { - "$date": "2021-02-02T00:52:21.000Z" - }, - "events": [ - { - "uuid": "4ac4a0de-ce3f-4e22-8df6-f34f36a0d80f", - "start": { - "$date": "2021-02-02T00:29:21.000Z" - }, - "end": { - "$date": "2021-02-02T00:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "054fb584-0807-4b9d-9e26-92581b132e0d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-02T00:37:35.000Z" - }, - "end": { - "$date": "2021-02-02T01:14:59.000Z" - }, - "events": [ - { - "uuid": "a15a0091-5883-4b52-a61e-5f0767a545df", - "start": { - "$date": "2021-02-02T00:37:35.000Z" - }, - "end": { - "$date": "2021-02-02T01:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2097f75c-162c-443d-886c-178657be4835", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T00:49:21.000Z" - }, - "end": { - "$date": "2021-02-02T01:23:22.000Z" - }, - "events": [ - { - "uuid": "aaa9c67f-7871-433e-b8c8-1fc429af347a", - "start": { - "$date": "2021-02-02T00:49:21.000Z" - }, - "end": { - "$date": "2021-02-02T01:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "36c2a365-0ba8-4949-851b-200467677b6b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-02T00:50:24.000Z" - }, - "end": { - "$date": "2021-02-02T00:55:44.000Z" - }, - "events": [ - { - "uuid": "c6b02649-2fdb-463d-83a6-87c534b31fa4", - "start": { - "$date": "2021-02-02T00:50:24.000Z" - }, - "end": { - "$date": "2021-02-02T00:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c10d1e9f-3339-4fbc-bae6-38b912ed47eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T00:59:46.000Z" - }, - "end": { - "$date": "2021-02-02T01:28:44.000Z" - }, - "events": [ - { - "uuid": "95653585-35b2-4bf9-8484-c9fb20a368e4", - "start": { - "$date": "2021-02-02T00:59:46.000Z" - }, - "end": { - "$date": "2021-02-02T01:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9fa36426-2004-4930-966e-e066bbe5c066", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T01:25:30.000Z" - }, - "end": { - "$date": "2021-02-02T01:50:46.000Z" - }, - "events": [ - { - "uuid": "61fb1bd8-63af-4d4c-9421-f7124a0eea3c", - "start": { - "$date": "2021-02-02T01:25:30.000Z" - }, - "end": { - "$date": "2021-02-02T01:50:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e635fba3-7cf8-4308-805f-9835568a21b1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T01:47:05.000Z" - }, - "end": { - "$date": "2021-02-02T02:17:37.000Z" - }, - "events": [ - { - "uuid": "fb75f031-af28-46d5-89b0-4eebe5769236", - "start": { - "$date": "2021-02-02T01:47:05.000Z" - }, - "end": { - "$date": "2021-02-02T02:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac9b2f48-29a0-499c-a1cb-fcd9a78b9795", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-02T01:31:17.000Z" - }, - "end": { - "$date": "2021-02-02T01:36:01.000Z" - }, - "events": [ - { - "uuid": "56bb0f86-55c1-4ecd-b7e3-97512384649e", - "start": { - "$date": "2021-02-02T01:31:17.000Z" - }, - "end": { - "$date": "2021-02-02T01:36:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5aeb6108-469f-4878-853d-174fa7e2410d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-02T01:31:58.000Z" - }, - "end": { - "$date": "2021-02-02T06:41:39.000Z" - }, - "events": [ - { - "uuid": "a540eb22-ebf7-4445-8c36-fe8bee8f3ed9", - "start": { - "$date": "2021-02-02T01:31:58.000Z" - }, - "end": { - "$date": "2021-02-02T06:41:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2d98996-c01c-4fb2-b9cc-bfd59e9cf8ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-02T02:17:38.000Z" - }, - "end": { - "$date": "2021-02-02T02:22:33.000Z" - }, - "events": [ - { - "uuid": "d25d1936-4e83-419b-b50f-fb92b33581fb", - "start": { - "$date": "2021-02-02T02:17:38.000Z" - }, - "end": { - "$date": "2021-02-02T02:22:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "c5ce16a2-7c7e-49a7-8fbf-684aa61fcbcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T01:54:46.000Z" - }, - "end": { - "$date": "2021-02-02T02:06:56.000Z" - }, - "events": [ - { - "uuid": "fad1be93-4d2c-43a0-904f-8aec8dee124e", - "start": { - "$date": "2021-02-02T01:54:46.000Z" - }, - "end": { - "$date": "2021-02-02T02:06:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3ecac701-056f-4e87-b808-36dea993e594", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-02T02:04:08.000Z" - }, - "end": { - "$date": "2021-02-02T02:08:50.000Z" - }, - "events": [ - { - "uuid": "d0f94ffd-7c8d-4afe-ba9c-f5718d3c47eb", - "start": { - "$date": "2021-02-02T02:04:08.000Z" - }, - "end": { - "$date": "2021-02-02T02:08:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e01ba57c-8980-42ce-9d55-7ec10c56bcf1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T02:12:37.000Z" - }, - "end": { - "$date": "2021-02-02T02:18:57.000Z" - }, - "events": [ - { - "uuid": "40aa9ae3-ca6c-4759-8d19-6b92be0b5133", - "start": { - "$date": "2021-02-02T02:12:37.000Z" - }, - "end": { - "$date": "2021-02-02T02:18:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b442c9e-304b-471f-962b-610d137f351d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T02:27:12.000Z" - }, - "end": { - "$date": "2021-02-02T03:01:18.000Z" - }, - "events": [ - { - "uuid": "dd87d7e6-aa70-443c-822c-3bb1e9d224a4", - "start": { - "$date": "2021-02-02T02:27:12.000Z" - }, - "end": { - "$date": "2021-02-02T03:01:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ada4156-9220-4811-b130-8b8c52e11b17", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-02T03:01:13.000Z" - }, - "end": { - "$date": "2021-02-02T03:02:12.000Z" - }, - "events": [ - { - "uuid": "fa849410-9e29-4b04-b90a-9252853937da", - "start": { - "$date": "2021-02-02T03:01:13.000Z" - }, - "end": { - "$date": "2021-02-02T03:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4408d517-040b-4a34-bec7-0de1bec56e6a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T02:26:32.000Z" - }, - "end": { - "$date": "2021-02-02T06:26:46.000Z" - }, - "events": [ - { - "uuid": "5edbab28-8843-43b3-9437-f636ba6f8e20", - "start": { - "$date": "2021-02-02T02:26:32.000Z" - }, - "end": { - "$date": "2021-02-02T03:13:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dea0ecf2-ac44-48fa-a4cc-9ca7e105ff40", - "start": { - "$date": "2021-02-02T03:13:32.000Z" - }, - "end": { - "$date": "2021-02-02T03:18:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c006762-5c05-4512-b94e-61c7493ee94b", - "start": { - "$date": "2021-02-02T03:18:32.000Z" - }, - "end": { - "$date": "2021-02-02T03:28:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b8bc129e-53af-4b1a-8977-76dcee875074", - "start": { - "$date": "2021-02-02T03:28:32.000Z" - }, - "end": { - "$date": "2021-02-02T03:35:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "caa9e346-9636-4562-8c33-ca74ed7fd22e", - "start": { - "$date": "2021-02-02T03:35:32.000Z" - }, - "end": { - "$date": "2021-02-02T06:26:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ce44b617-cae7-455b-8de4-9bddfadf8d3e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-02T02:41:01.000Z" - }, - "end": { - "$date": "2021-02-02T06:26:44.000Z" - }, - "events": [ - { - "uuid": "99ed103a-f6c0-47f5-a56f-bda21f0a7707", - "start": { - "$date": "2021-02-02T02:41:01.000Z" - }, - "end": { - "$date": "2021-02-02T06:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0d83eac8-850e-49d4-a07a-d052f4ec56ca", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T02:53:43.000Z" - }, - "end": { - "$date": "2021-02-02T06:13:18.000Z" - }, - "events": [ - { - "uuid": "f757e99c-a395-4c16-9dd8-966e1767a069", - "start": { - "$date": "2021-02-02T02:53:43.000Z" - }, - "end": { - "$date": "2021-02-02T05:31:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f656644f-94bf-4539-a644-dc0b86571261", - "start": { - "$date": "2021-02-02T05:31:43.000Z" - }, - "end": { - "$date": "2021-02-02T05:46:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5937b9b9-063b-4e4a-b4bc-e0a8acc39407", - "start": { - "$date": "2021-02-02T05:46:43.000Z" - }, - "end": { - "$date": "2021-02-02T06:07:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a6959a17-c061-4951-bbd0-21dea6c3fdcb", - "start": { - "$date": "2021-02-02T06:07:43.000Z" - }, - "end": { - "$date": "2021-02-02T06:08:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7662c953-d22c-450b-9738-5af1cb87ac45", - "start": { - "$date": "2021-02-02T06:08:43.000Z" - }, - "end": { - "$date": "2021-02-02T06:13:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb6ee3be-86bf-4771-91c6-200953f830d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T03:01:44.000Z" - }, - "end": { - "$date": "2021-02-02T03:04:23.000Z" - }, - "events": [ - { - "uuid": "820aef48-e679-44eb-992a-0517cb4dbb3d", - "start": { - "$date": "2021-02-02T03:01:44.000Z" - }, - "end": { - "$date": "2021-02-02T03:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "781a4b20-0ad5-4664-8223-1fda8265c22d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-02T04:27:06.000Z" - }, - "end": { - "$date": "2021-02-02T04:27:50.000Z" - }, - "events": [ - { - "uuid": "f70cb51b-1911-44c1-bc4e-2e996bc5915b", - "start": { - "$date": "2021-02-02T04:27:06.000Z" - }, - "end": { - "$date": "2021-02-02T04:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7f0a865-48ad-4797-bc52-43502913bb84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T03:06:44.000Z" - }, - "end": { - "$date": "2021-02-02T03:38:39.000Z" - }, - "events": [ - { - "uuid": "835f8bb6-4583-4360-9001-cb5c9d30c105", - "start": { - "$date": "2021-02-02T03:06:44.000Z" - }, - "end": { - "$date": "2021-02-02T03:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1659a817-6d8d-4b3d-9987-3d70d650624e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-02T03:06:49.000Z" - }, - "end": { - "$date": "2021-02-02T03:38:46.000Z" - }, - "events": [ - { - "uuid": "1be3670a-7975-4ce7-9e0c-10d482579716", - "start": { - "$date": "2021-02-02T03:06:49.000Z" - }, - "end": { - "$date": "2021-02-02T03:38:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e471431f-bb54-4656-8c69-726427b64479", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T03:06:53.000Z" - }, - "end": { - "$date": "2021-02-02T03:38:54.000Z" - }, - "events": [ - { - "uuid": "62d95dc4-5a59-4782-a91c-5fe5993bb52c", - "start": { - "$date": "2021-02-02T03:06:53.000Z" - }, - "end": { - "$date": "2021-02-02T03:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "5928fc76-aaa4-4543-882a-ea8d2f3d0e4f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-02T03:12:15.000Z" - }, - "end": { - "$date": "2021-02-02T03:39:27.000Z" - }, - "events": [ - { - "uuid": "e775d8e9-149b-4381-9dac-fd69ea836dc6", - "start": { - "$date": "2021-02-02T03:12:15.000Z" - }, - "end": { - "$date": "2021-02-02T03:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b881ef63-aea9-4b4b-9ded-e7ab43e0aaa3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T03:56:36.000Z" - }, - "end": { - "$date": "2021-02-02T04:26:58.000Z" - }, - "events": [ - { - "uuid": "8cba68ca-a145-40fb-87d6-f636e385b8c5", - "start": { - "$date": "2021-02-02T03:56:36.000Z" - }, - "end": { - "$date": "2021-02-02T04:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44788e65-27d6-4e0b-941f-fd4ca3b57b9c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-02T03:40:07.000Z" - }, - "end": { - "$date": "2021-02-02T03:43:07.000Z" - }, - "events": [ - { - "uuid": "40add8ce-77f9-4356-9944-0f8877725e75", - "start": { - "$date": "2021-02-02T03:40:07.000Z" - }, - "end": { - "$date": "2021-02-02T03:43:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "933532d4-256f-4d3d-809e-ab2222f32078", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T03:40:07.000Z" - }, - "end": { - "$date": "2021-02-02T03:43:06.000Z" - }, - "events": [ - { - "uuid": "c8e19e30-f18d-45dc-9f4f-99af6477bd01", - "start": { - "$date": "2021-02-02T03:40:07.000Z" - }, - "end": { - "$date": "2021-02-02T03:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d34e8bc7-ab78-4f31-af6a-f186d83fc260", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T03:57:05.000Z" - }, - "end": { - "$date": "2021-02-02T04:26:55.000Z" - }, - "events": [ - { - "uuid": "f9f6604f-c5ed-4422-b2b5-40cbb6473a2a", - "start": { - "$date": "2021-02-02T03:57:05.000Z" - }, - "end": { - "$date": "2021-02-02T04:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a39e2289-333f-44f8-bd37-3453e18a7bb6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-02T03:56:29.000Z" - }, - "end": { - "$date": "2021-02-02T04:27:04.000Z" - }, - "events": [ - { - "uuid": "a48777b2-0613-48f8-8c97-fab640ce27f1", - "start": { - "$date": "2021-02-02T03:56:29.000Z" - }, - "end": { - "$date": "2021-02-02T04:27:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c635208-f3c4-4f95-ac12-c1454ebee457", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-02T04:28:59.000Z" - }, - "end": { - "$date": "2021-02-02T04:54:10.000Z" - }, - "events": [ - { - "uuid": "11a4cbc0-53d5-45c9-84ea-d0c06b632676", - "start": { - "$date": "2021-02-02T04:28:59.000Z" - }, - "end": { - "$date": "2021-02-02T04:54:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cd45245-e422-4102-8479-888217c379e2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-02T05:21:10.000Z" - }, - "end": { - "$date": "2021-02-02T05:21:51.000Z" - }, - "events": [ - { - "uuid": "682368fa-88a8-4d92-be6d-bae43e9ea1b8", - "start": { - "$date": "2021-02-02T05:21:10.000Z" - }, - "end": { - "$date": "2021-02-02T05:21:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1ad651f-50fa-478e-a0d3-ab28695875dc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-02T04:55:43.000Z" - }, - "end": { - "$date": "2021-02-02T06:57:09.000Z" - }, - "events": [ - { - "uuid": "7c49c69c-8fe4-450a-9901-a9970958638a", - "start": { - "$date": "2021-02-02T04:55:43.000Z" - }, - "end": { - "$date": "2021-02-02T06:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b74c5c1-de83-4f31-8483-adde314b1ee5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-02T05:26:46.000Z" - }, - "end": { - "$date": "2021-02-02T06:11:12.000Z" - }, - "events": [ - { - "uuid": "5fbef3fc-5b94-48ef-bad4-3f457f03bb9e", - "start": { - "$date": "2021-02-02T05:26:46.000Z" - }, - "end": { - "$date": "2021-02-02T06:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "428bdbaa-40e1-4289-8119-86ed2155978c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T06:02:45.000Z" - }, - "end": { - "$date": "2021-02-02T06:24:08.000Z" - }, - "events": [ - { - "uuid": "6f97bdf5-f0dc-4ef0-9e46-484e1d4ebe02", - "start": { - "$date": "2021-02-02T06:02:45.000Z" - }, - "end": { - "$date": "2021-02-02T06:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1143df85-4110-4389-8bba-a31ac1ba7ad6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T06:26:07.000Z" - }, - "end": { - "$date": "2021-02-02T06:29:18.000Z" - }, - "events": [ - { - "uuid": "3d8ec51d-3f24-4343-afa3-5c4ad08b9b4e", - "start": { - "$date": "2021-02-02T06:26:07.000Z" - }, - "end": { - "$date": "2021-02-02T06:29:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "3139ed49-88d3-489f-b254-35f6952c36a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T06:51:33.000Z" - }, - "end": { - "$date": "2021-02-02T07:14:27.000Z" - }, - "events": [ - { - "uuid": "42c0c505-f10d-4a31-88db-880c115bcec8", - "start": { - "$date": "2021-02-02T06:51:33.000Z" - }, - "end": { - "$date": "2021-02-02T07:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "b4599366-69ee-4461-bc61-d979c1a29cb1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T06:51:33.000Z" - }, - "end": { - "$date": "2021-02-02T07:37:53.000Z" - }, - "events": [ - { - "uuid": "25eac46b-e29a-43fe-a592-75dc21764dc2", - "start": { - "$date": "2021-02-02T06:51:33.000Z" - }, - "end": { - "$date": "2021-02-02T07:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "0091d621-9e61-43ba-9761-6ff74f062788", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T06:51:33.000Z" - }, - "end": { - "$date": "2021-02-02T07:40:37.000Z" - }, - "events": [ - { - "uuid": "1bd042fd-2ad7-40ae-b4e4-cd5024e87757", - "start": { - "$date": "2021-02-02T06:51:33.000Z" - }, - "end": { - "$date": "2021-02-02T07:40:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "789b11df-2348-4185-ba2a-c5f5e0617fe4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T06:51:29.000Z" - }, - "end": { - "$date": "2021-02-02T07:49:35.000Z" - }, - "events": [ - { - "uuid": "b2835cfa-9616-4ca1-acd0-e5d8fe2ffc51", - "start": { - "$date": "2021-02-02T06:51:29.000Z" - }, - "end": { - "$date": "2021-02-02T07:49:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "f06e1bd8-b20b-4b92-9f9d-d45a818d7408", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T07:55:20.000Z" - }, - "end": { - "$date": "2021-02-02T08:02:34.000Z" - }, - "events": [ - { - "uuid": "e9cbeab4-59d3-4139-bc83-8aa7e2248cbe", - "start": { - "$date": "2021-02-02T07:55:20.000Z" - }, - "end": { - "$date": "2021-02-02T08:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "d702f7a3-9797-4da5-b9dd-0cf9c35f4c2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-02T07:55:20.000Z" - }, - "end": { - "$date": "2021-02-02T08:15:06.000Z" - }, - "events": [ - { - "uuid": "2d5b955a-c825-4f0f-9a5c-95901094057e", - "start": { - "$date": "2021-02-02T07:55:20.000Z" - }, - "end": { - "$date": "2021-02-02T08:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "7cc7f08a-7f94-4dc6-9577-d31b0e6b2c68", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-02T14:37:09.000Z" - }, - "end": { - "$date": "2021-02-02T19:16:15.000Z" - }, - "events": [ - { - "uuid": "78ec21c5-5423-47f0-9b93-48004163595d", - "start": { - "$date": "2021-02-02T14:37:09.000Z" - }, - "end": { - "$date": "2021-02-02T19:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "68008876-faf8-4f6b-96e2-12636533a850", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T15:40:16.000Z" - }, - "end": { - "$date": "2021-02-02T17:47:44.000Z" - }, - "events": [ - { - "uuid": "428adce2-3485-43b1-99da-e71aed67a85d", - "start": { - "$date": "2021-02-02T15:40:16.000Z" - }, - "end": { - "$date": "2021-02-02T17:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cac1e48d-7942-45fb-9bec-dc7e233d1d74", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T17:57:12.000Z" - }, - "end": { - "$date": "2021-02-02T18:03:11.000Z" - }, - "events": [ - { - "uuid": "cc6f783a-0ab1-46cb-87c3-07d55ddc33d6", - "start": { - "$date": "2021-02-02T17:57:12.000Z" - }, - "end": { - "$date": "2021-02-02T18:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "769d0099-3268-440a-be19-d4d0406e61b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T18:09:33.000Z" - }, - "end": { - "$date": "2021-02-02T18:11:23.000Z" - }, - "events": [ - { - "uuid": "50520dcb-c60a-4ce2-af62-0f8ab59afe61", - "start": { - "$date": "2021-02-02T18:09:33.000Z" - }, - "end": { - "$date": "2021-02-02T18:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "096c184c-fe93-4207-8cfe-66def06d1199", - "uuid": "454ba536-0bb5-4b43-bc96-f27ab95cb8ba", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T18:12:34.000Z" - }, - "end": { - "$date": "2021-02-02T19:08:25.000Z" - }, - "events": [ - { - "uuid": "de52fc93-8f76-4e8e-8d33-4ab8106fc2f3", - "start": { - "$date": "2021-02-02T18:12:34.000Z" - }, - "end": { - "$date": "2021-02-02T18:36:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5613d6e-2c6b-43ce-8a9e-0bdd58584191", - "start": { - "$date": "2021-02-02T18:36:34.000Z" - }, - "end": { - "$date": "2021-02-02T18:41:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "83dd2211-f048-4e6d-a120-7dd2666142f7", - "start": { - "$date": "2021-02-02T18:41:34.000Z" - }, - "end": { - "$date": "2021-02-02T19:08:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "0f98a890-5c74-4403-8922-1523c74205b6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-02T18:20:05.000Z" - }, - "end": { - "$date": "2021-02-02T21:01:27.000Z" - }, - "events": [ - { - "uuid": "932f4bc1-839d-4ae5-88b7-3841b375e97f", - "start": { - "$date": "2021-02-02T18:20:05.000Z" - }, - "end": { - "$date": "2021-02-02T21:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "25b90d82-02eb-4f2d-a2f6-6951caa15728", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-02T18:50:55.000Z" - }, - "end": { - "$date": "2021-02-02T19:15:34.000Z" - }, - "events": [ - { - "uuid": "430ca4f4-9c95-408b-920c-23f45078ab36", - "start": { - "$date": "2021-02-02T18:50:55.000Z" - }, - "end": { - "$date": "2021-02-02T19:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6b5d33d4-9f10-4431-bb32-c7eadaeb837e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T19:21:11.000Z" - }, - "end": { - "$date": "2021-02-02T19:37:25.000Z" - }, - "events": [ - { - "uuid": "4f87e106-e4cf-4803-9d21-99c7679ddd18", - "start": { - "$date": "2021-02-02T19:21:11.000Z" - }, - "end": { - "$date": "2021-02-02T19:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b74da68a-da0f-40e8-affb-d60501c02465", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-02T19:49:55.000Z" - }, - "end": { - "$date": "2021-02-02T21:25:48.000Z" - }, - "events": [ - { - "uuid": "125d3958-7756-49b6-8914-e2a8f2f6b202", - "start": { - "$date": "2021-02-02T19:49:55.000Z" - }, - "end": { - "$date": "2021-02-02T21:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5e0cf19e-0761-49a9-bede-7b23ff0a3c66", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-02T20:11:09.000Z" - }, - "end": { - "$date": "2021-02-02T20:43:39.000Z" - }, - "events": [ - { - "uuid": "cd9042e9-1763-4ebf-a123-39205751b88d", - "start": { - "$date": "2021-02-02T20:11:09.000Z" - }, - "end": { - "$date": "2021-02-02T20:43:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "84798c1d-51e7-4304-a764-675a05373d11", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T20:12:47.000Z" - }, - "end": { - "$date": "2021-02-02T20:14:51.000Z" - }, - "events": [ - { - "uuid": "f8341f8a-f44e-45b3-959d-ee000ffa119e", - "start": { - "$date": "2021-02-02T20:12:47.000Z" - }, - "end": { - "$date": "2021-02-02T20:14:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb8caaf6-13e9-40bd-86fb-02a881631ad5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-02T20:37:51.000Z" - }, - "end": { - "$date": "2021-02-02T21:07:28.000Z" - }, - "events": [ - { - "uuid": "366eee42-f85b-4834-90e7-57d331c1251d", - "start": { - "$date": "2021-02-02T20:37:51.000Z" - }, - "end": { - "$date": "2021-02-02T21:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f38445a6-fe9d-442c-90a5-9c2dfa12bd45", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-02T20:56:17.000Z" - }, - "end": { - "$date": "2021-02-02T21:22:49.000Z" - }, - "events": [ - { - "uuid": "e1d6b04a-0239-44f2-a529-a88971673b6c", - "start": { - "$date": "2021-02-02T20:56:17.000Z" - }, - "end": { - "$date": "2021-02-02T21:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "4393353e-d47c-4f79-8f02-6eb0a7709f3f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-02T21:35:03.000Z" - }, - "end": { - "$date": "2021-02-02T23:53:33.000Z" - }, - "events": [ - { - "uuid": "0be37b17-4e99-459d-8899-dfba8a156206", - "start": { - "$date": "2021-02-02T21:35:03.000Z" - }, - "end": { - "$date": "2021-02-02T23:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7716a44a-aefe-45e5-8046-3a17c07a4b69", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-02T21:46:08.000Z" - }, - "end": { - "$date": "2021-02-03T01:20:18.000Z" - }, - "events": [ - { - "uuid": "a8b2eb9b-57d4-45bf-aceb-3e68a15f9df5", - "start": { - "$date": "2021-02-02T21:46:08.000Z" - }, - "end": { - "$date": "2021-02-03T01:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "36881d76-c46b-4f6d-9d76-f3a66689bb38", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-02T23:02:57.000Z" - }, - "end": { - "$date": "2021-02-02T23:40:18.000Z" - }, - "events": [ - { - "uuid": "d861bdea-9e4a-4a39-b816-9aa84930f704", - "start": { - "$date": "2021-02-02T23:02:57.000Z" - }, - "end": { - "$date": "2021-02-02T23:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b2c687b1-159c-4011-ad26-8b2b48736266", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T23:15:34.000Z" - }, - "end": { - "$date": "2021-02-02T23:31:05.000Z" - }, - "events": [ - { - "uuid": "1e6c5c83-0f35-4cca-8d16-7b494297ed78", - "start": { - "$date": "2021-02-02T23:15:34.000Z" - }, - "end": { - "$date": "2021-02-02T23:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ac381c42-ce20-429f-a3c6-d19182fa4f61", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-02T23:26:08.000Z" - }, - "end": { - "$date": "2021-02-02T23:29:04.000Z" - }, - "events": [ - { - "uuid": "a3d2260a-1b9f-4567-8cdb-5dff9087596f", - "start": { - "$date": "2021-02-02T23:26:08.000Z" - }, - "end": { - "$date": "2021-02-02T23:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "1597067c-1c39-4d91-a9e3-2c8b7f0c709f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-02T23:37:54.000Z" - }, - "end": { - "$date": "2021-02-03T03:49:00.000Z" - }, - "events": [ - { - "uuid": "0badcdd2-fb05-4b0e-8e01-45786180007b", - "start": { - "$date": "2021-02-02T23:37:54.000Z" - }, - "end": { - "$date": "2021-02-03T03:49:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "05299934-9fb6-43ac-bd78-91eda79f1c41", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-02T23:48:17.000Z" - }, - "end": { - "$date": "2021-02-03T00:10:29.000Z" - }, - "events": [ - { - "uuid": "ec5f44f4-8444-442c-a2d7-6dfde6065154", - "start": { - "$date": "2021-02-02T23:48:17.000Z" - }, - "end": { - "$date": "2021-02-03T00:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3c3e7763-1e62-4d13-b6aa-f04c1a96c2c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-02T23:53:21.000Z" - }, - "end": { - "$date": "2021-02-02T23:54:51.000Z" - }, - "events": [ - { - "uuid": "1b44cee7-9a35-401f-9601-a9a7b91feb68", - "start": { - "$date": "2021-02-02T23:53:21.000Z" - }, - "end": { - "$date": "2021-02-02T23:54:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bc83a11-6ac2-4d07-9b2b-45e672f22564", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-03T00:06:49.000Z" - }, - "end": { - "$date": "2021-02-03T00:38:14.000Z" - }, - "events": [ - { - "uuid": "1743bfcc-e76e-4722-923b-3cf4821bf306", - "start": { - "$date": "2021-02-03T00:06:49.000Z" - }, - "end": { - "$date": "2021-02-03T00:38:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90bdfdda-05d4-4a21-999a-32a72cf36598", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T00:06:50.000Z" - }, - "end": { - "$date": "2021-02-03T00:38:14.000Z" - }, - "events": [ - { - "uuid": "64e498ef-ff68-4444-81de-b014c45f4b49", - "start": { - "$date": "2021-02-03T00:06:50.000Z" - }, - "end": { - "$date": "2021-02-03T00:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ff6fb461-f463-4755-92ba-14bb8810bd3c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T00:22:09.000Z" - }, - "end": { - "$date": "2021-02-03T01:07:25.000Z" - }, - "events": [ - { - "uuid": "ad22ff3a-e156-4c68-a84f-6d3263d6d822", - "start": { - "$date": "2021-02-03T00:22:09.000Z" - }, - "end": { - "$date": "2021-02-03T01:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "69731833-af10-4721-b353-caef76cdc6af", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-03T00:35:52.000Z" - }, - "end": { - "$date": "2021-02-03T00:55:24.000Z" - }, - "events": [ - { - "uuid": "7c595a8f-33eb-4893-a9bb-55d222fe199e", - "start": { - "$date": "2021-02-03T00:35:52.000Z" - }, - "end": { - "$date": "2021-02-03T00:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72b37ac7-6df7-4f4b-9b5b-94cfb94e554d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-03T00:41:40.000Z" - }, - "end": { - "$date": "2021-02-03T01:06:02.000Z" - }, - "events": [ - { - "uuid": "d4e89d7f-b6a0-42ee-a486-f22a4e296fcb", - "start": { - "$date": "2021-02-03T00:41:40.000Z" - }, - "end": { - "$date": "2021-02-03T01:06:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8e1f5471-f9f6-4c96-893b-5764ea22e09e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T01:40:58.000Z" - }, - "end": { - "$date": "2021-02-03T01:50:53.000Z" - }, - "events": [ - { - "uuid": "4094fbec-64e2-4c6b-9fb3-0661613e3061", - "start": { - "$date": "2021-02-03T01:40:58.000Z" - }, - "end": { - "$date": "2021-02-03T01:50:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04735ad0-ea91-4f91-9a56-75d1000c9ba3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T02:02:29.000Z" - }, - "end": { - "$date": "2021-02-03T02:36:58.000Z" - }, - "events": [ - { - "uuid": "0d627b81-5fbe-4d7a-9ac2-92cc903f6d53", - "start": { - "$date": "2021-02-03T02:02:29.000Z" - }, - "end": { - "$date": "2021-02-03T02:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31acb6ae-727c-4047-941d-b0303552a4fb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T01:49:10.000Z" - }, - "end": { - "$date": "2021-02-03T01:50:49.000Z" - }, - "events": [ - { - "uuid": "0d07ca32-93e9-43ca-aa12-c6ea0c442671", - "start": { - "$date": "2021-02-03T01:49:10.000Z" - }, - "end": { - "$date": "2021-02-03T01:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "12377fab-dff9-4165-9047-ee59573f7f8c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-03T01:50:29.000Z" - }, - "end": { - "$date": "2021-02-03T02:05:45.000Z" - }, - "events": [ - { - "uuid": "88588109-6c55-4708-804f-ccdb5bbb1849", - "start": { - "$date": "2021-02-03T01:50:29.000Z" - }, - "end": { - "$date": "2021-02-03T02:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c9f9073-69c2-4715-b396-dad3159a9e82", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T01:51:32.000Z" - }, - "end": { - "$date": "2021-02-03T01:54:00.000Z" - }, - "events": [ - { - "uuid": "8cc9a319-4791-4a4f-b7ca-60df2eed6cc5", - "start": { - "$date": "2021-02-03T01:51:32.000Z" - }, - "end": { - "$date": "2021-02-03T01:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9db120da-64cb-4069-bbf8-4521220860a8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T01:51:32.000Z" - }, - "end": { - "$date": "2021-02-03T01:54:01.000Z" - }, - "events": [ - { - "uuid": "95131aaa-e811-4d53-a487-6eb095601e60", - "start": { - "$date": "2021-02-03T01:51:32.000Z" - }, - "end": { - "$date": "2021-02-03T01:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a35daf6-23ef-4bab-ae25-1f11aa1c3746", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T04:04:29.000Z" - }, - "end": { - "$date": "2021-02-03T04:05:38.000Z" - }, - "events": [ - { - "uuid": "a8f733de-998d-45bc-980b-e7bae975ba30", - "start": { - "$date": "2021-02-03T04:04:29.000Z" - }, - "end": { - "$date": "2021-02-03T04:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8143b038-2ddb-42fc-afd5-96bd337ae0be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T02:22:24.000Z" - }, - "end": { - "$date": "2021-02-03T02:36:49.000Z" - }, - "events": [ - { - "uuid": "bec05a84-8878-4ea9-8b93-8e971ac11885", - "start": { - "$date": "2021-02-03T02:22:24.000Z" - }, - "end": { - "$date": "2021-02-03T02:36:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "58d45d8b-b5ac-4872-a1d5-a5388ad61674", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-03T01:54:37.000Z" - }, - "end": { - "$date": "2021-02-03T06:16:55.000Z" - }, - "events": [ - { - "uuid": "d7c7c794-6750-48bc-af8a-325f7f3fc244", - "start": { - "$date": "2021-02-03T01:54:37.000Z" - }, - "end": { - "$date": "2021-02-03T04:14:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c03febc-2e7d-410c-b891-4f606bb32d23", - "start": { - "$date": "2021-02-03T04:14:37.000Z" - }, - "end": { - "$date": "2021-02-03T04:19:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47935113-8522-4776-9b3b-6190a01654a1", - "start": { - "$date": "2021-02-03T04:19:37.000Z" - }, - "end": { - "$date": "2021-02-03T05:00:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffcad720-fd97-4486-b8db-ffb475325419", - "start": { - "$date": "2021-02-03T05:00:37.000Z" - }, - "end": { - "$date": "2021-02-03T05:03:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3590f390-bfe7-4327-9e17-a8a5cb2b8f35", - "start": { - "$date": "2021-02-03T05:03:37.000Z" - }, - "end": { - "$date": "2021-02-03T06:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "ad2f40f9-3f71-4e2f-a7ea-488090e91524", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-03T02:02:23.000Z" - }, - "end": { - "$date": "2021-02-03T04:59:18.000Z" - }, - "events": [ - { - "uuid": "f7d91982-1fcc-4f09-a091-089c218eeeef", - "start": { - "$date": "2021-02-03T02:02:23.000Z" - }, - "end": { - "$date": "2021-02-03T02:05:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "902bfa84-779e-4b1b-8794-b13d59c7d2c6", - "start": { - "$date": "2021-02-03T02:05:23.000Z" - }, - "end": { - "$date": "2021-02-03T02:08:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "065f54da-b687-4055-8cea-2a811dbed042", - "start": { - "$date": "2021-02-03T02:08:23.000Z" - }, - "end": { - "$date": "2021-02-03T02:21:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1adc257c-3ae8-4ece-8d87-513530182c51", - "start": { - "$date": "2021-02-03T02:21:23.000Z" - }, - "end": { - "$date": "2021-02-03T02:51:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a52746e-50a4-4b0a-9f97-58710a585c22", - "start": { - "$date": "2021-02-03T02:51:23.000Z" - }, - "end": { - "$date": "2021-02-03T03:39:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b8d76b9b-98d4-45ab-9c88-f426baf71cd3", - "start": { - "$date": "2021-02-03T03:39:23.000Z" - }, - "end": { - "$date": "2021-02-03T03:42:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e099f78-03e6-4465-a859-20b795813fa7", - "start": { - "$date": "2021-02-03T03:42:23.000Z" - }, - "end": { - "$date": "2021-02-03T04:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18f46341-55a8-48ae-8f97-7477c45e9c26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T02:47:41.000Z" - }, - "end": { - "$date": "2021-02-03T03:26:22.000Z" - }, - "events": [ - { - "uuid": "fa66328c-0957-4ef7-8351-2bb5ac6ef1b6", - "start": { - "$date": "2021-02-03T02:47:41.000Z" - }, - "end": { - "$date": "2021-02-03T03:26:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56a3edfa-3425-4594-a751-ba1e2251537f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T02:36:49.000Z" - }, - "end": { - "$date": "2021-02-03T02:42:15.000Z" - }, - "events": [ - { - "uuid": "eeb2cfb2-c792-4bd1-84d5-c3871d79bb19", - "start": { - "$date": "2021-02-03T02:36:49.000Z" - }, - "end": { - "$date": "2021-02-03T02:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9326204f-c3e9-4013-a729-cfe8d9f7af9c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-03T03:09:50.000Z" - }, - "end": { - "$date": "2021-02-03T05:44:05.000Z" - }, - "events": [ - { - "uuid": "e0412550-82e5-4bd5-920b-d08b1648abd7", - "start": { - "$date": "2021-02-03T03:09:50.000Z" - }, - "end": { - "$date": "2021-02-03T05:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b465145e-f931-4218-9ec6-83bca6b1bb9d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T03:34:53.000Z" - }, - "end": { - "$date": "2021-02-03T04:04:36.000Z" - }, - "events": [ - { - "uuid": "1e8ffafa-d675-4ba8-8f22-f3bf0c8a5155", - "start": { - "$date": "2021-02-03T03:34:53.000Z" - }, - "end": { - "$date": "2021-02-03T04:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f7ff2c6e-8d43-4c7c-a90e-ed64810432c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-03T03:31:15.000Z" - }, - "end": { - "$date": "2021-02-03T05:27:39.000Z" - }, - "events": [ - { - "uuid": "47db149c-0743-401f-97f9-81da8d812f76", - "start": { - "$date": "2021-02-03T03:31:15.000Z" - }, - "end": { - "$date": "2021-02-03T05:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e5e52819-42f1-4f4f-89de-035726b405af", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-03T03:31:38.000Z" - }, - "end": { - "$date": "2021-02-03T05:27:31.000Z" - }, - "events": [ - { - "uuid": "dd1edc19-e5be-49d7-8fa1-950a79d4bf23", - "start": { - "$date": "2021-02-03T03:31:38.000Z" - }, - "end": { - "$date": "2021-02-03T05:27:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef5b5c69-e534-4290-b2e3-9da1dc80d9e6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-03T03:40:21.000Z" - }, - "end": { - "$date": "2021-02-03T04:14:27.000Z" - }, - "events": [ - { - "uuid": "4099b399-e1db-416a-9143-5e91ad16aefc", - "start": { - "$date": "2021-02-03T03:40:21.000Z" - }, - "end": { - "$date": "2021-02-03T04:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4b193ee-0760-49a5-9e83-93c741f4eb0f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T05:05:04.000Z" - }, - "end": { - "$date": "2021-02-03T05:38:49.000Z" - }, - "events": [ - { - "uuid": "b685fd94-af07-498d-9ca1-321452a88b81", - "start": { - "$date": "2021-02-03T05:05:04.000Z" - }, - "end": { - "$date": "2021-02-03T05:31:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2bd85f6-929c-4985-87b5-0ad71c675cc0", - "start": { - "$date": "2021-02-03T05:31:04.000Z" - }, - "end": { - "$date": "2021-02-03T05:56:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2266eead-7913-426b-aa83-e1979678ca20", - "start": { - "$date": "2021-02-03T05:56:04.000Z" - }, - "end": { - "$date": "2021-02-03T05:38:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2689df3d-e9ff-4183-9879-fc2f40be3d3b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-03T04:59:58.000Z" - }, - "end": { - "$date": "2021-02-03T05:00:06.000Z" - }, - "events": [ - { - "uuid": "2500cb40-2592-4823-bf68-073064d9da8c", - "start": { - "$date": "2021-02-03T04:59:58.000Z" - }, - "end": { - "$date": "2021-02-03T05:00:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d562cdcb-036c-4f0b-991d-155269c309a1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T04:26:05.000Z" - }, - "end": { - "$date": "2021-02-03T04:37:16.000Z" - }, - "events": [ - { - "uuid": "bb3a54fc-d7c6-4088-b728-6bf48a3d63e5", - "start": { - "$date": "2021-02-03T04:26:05.000Z" - }, - "end": { - "$date": "2021-02-03T04:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3ef4e69c-982d-4b18-82fe-105a013d8e6c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-03T04:30:53.000Z" - }, - "end": { - "$date": "2021-02-03T04:37:11.000Z" - }, - "events": [ - { - "uuid": "eefc8ab2-1158-496a-8833-8fbb555bbae1", - "start": { - "$date": "2021-02-03T04:30:53.000Z" - }, - "end": { - "$date": "2021-02-03T04:37:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07a50128-0a18-43c6-b04f-f37000383d12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T05:38:40.000Z" - }, - "end": { - "$date": "2021-02-03T05:40:15.000Z" - }, - "events": [ - { - "uuid": "3453dd6e-9c2e-45ee-9d8b-e90a502445af", - "start": { - "$date": "2021-02-03T05:38:40.000Z" - }, - "end": { - "$date": "2021-02-03T05:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45bc1154-600f-4b8e-a068-7f78094ac1fd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-03T05:06:44.000Z" - }, - "end": { - "$date": "2021-02-03T05:38:39.000Z" - }, - "events": [ - { - "uuid": "4774b81e-64b3-4586-a5b1-f133a846f858", - "start": { - "$date": "2021-02-03T05:06:44.000Z" - }, - "end": { - "$date": "2021-02-03T05:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e0152f89-379f-4d91-9c79-7e86963afd0a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-03T05:27:57.000Z" - }, - "end": { - "$date": "2021-02-03T06:03:42.000Z" - }, - "events": [ - { - "uuid": "92fe1b24-d8e4-46c0-8b34-aed41ec2f4e6", - "start": { - "$date": "2021-02-03T05:27:57.000Z" - }, - "end": { - "$date": "2021-02-03T06:03:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07b4c495-b710-418a-91ab-7f8b2dd622aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T05:51:56.000Z" - }, - "end": { - "$date": "2021-02-03T06:36:01.000Z" - }, - "events": [ - { - "uuid": "24b89de7-23fa-499d-bc49-54900e980b23", - "start": { - "$date": "2021-02-03T05:51:56.000Z" - }, - "end": { - "$date": "2021-02-03T06:36:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f893ab4c-81fc-4225-9c40-df929603ae2a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-03T05:40:41.000Z" - }, - "end": { - "$date": "2021-02-03T05:45:04.000Z" - }, - "events": [ - { - "uuid": "7aaf40d0-23e8-4bbc-9dcc-f247441fc61b", - "start": { - "$date": "2021-02-03T05:40:41.000Z" - }, - "end": { - "$date": "2021-02-03T05:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5a7a10f9-bfd0-4daa-b881-2f9d7f55ae3b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T05:43:11.000Z" - }, - "end": { - "$date": "2021-02-03T08:25:21.000Z" - }, - "events": [ - { - "uuid": "7be49e3d-9b5e-438d-a059-5efc907124b3", - "start": { - "$date": "2021-02-03T05:43:11.000Z" - }, - "end": { - "$date": "2021-02-03T08:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9cf596fc-25e4-4cd2-8c24-327666a1d1e7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-03T05:44:18.000Z" - }, - "end": { - "$date": "2021-02-03T08:25:21.000Z" - }, - "events": [ - { - "uuid": "2be4f9a0-0f3f-4eca-901a-766c1792061a", - "start": { - "$date": "2021-02-03T05:44:18.000Z" - }, - "end": { - "$date": "2021-02-03T08:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8e6e47df-bc0e-474a-8798-d24a0c380295", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T05:45:06.000Z" - }, - "end": { - "$date": "2021-02-03T05:52:11.000Z" - }, - "events": [ - { - "uuid": "597268b2-3ad8-40b2-910c-dd85644c4ae1", - "start": { - "$date": "2021-02-03T05:45:06.000Z" - }, - "end": { - "$date": "2021-02-03T05:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22a78508-a3c4-4366-bbc0-189b324d6209", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-03T05:52:51.000Z" - }, - "end": { - "$date": "2021-02-03T06:36:02.000Z" - }, - "events": [ - { - "uuid": "e9fbd602-997d-45fb-b1bd-55f2a6b4a3e3", - "start": { - "$date": "2021-02-03T05:52:51.000Z" - }, - "end": { - "$date": "2021-02-03T06:36:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f1dafe7c-8d50-4def-8aa7-0d47238a43df", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-03T06:22:33.000Z" - }, - "end": { - "$date": "2021-02-03T08:24:58.000Z" - }, - "events": [ - { - "uuid": "ea9c00d3-358b-4a30-adaf-a05ba64c42e7", - "start": { - "$date": "2021-02-03T06:22:33.000Z" - }, - "end": { - "$date": "2021-02-03T06:26:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3cda4d98-40f4-462e-b0a7-2e3a22d3f2a1", - "start": { - "$date": "2021-02-03T06:26:33.000Z" - }, - "end": { - "$date": "2021-02-03T06:28:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "21e51179-c8cf-4fcf-b914-35760916c12b", - "start": { - "$date": "2021-02-03T06:28:33.000Z" - }, - "end": { - "$date": "2021-02-03T08:24:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e1a2f27e-ab2c-4e12-86e1-ecbebe2c862f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T16:39:51.000Z" - }, - "end": { - "$date": "2021-02-03T17:41:31.000Z" - }, - "events": [ - { - "uuid": "a575adcd-ee07-49d0-9c9f-23cb4c339a73", - "start": { - "$date": "2021-02-03T16:39:51.000Z" - }, - "end": { - "$date": "2021-02-03T17:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8910d159-bc47-473c-a64f-7734fc4870ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T16:51:32.000Z" - }, - "end": { - "$date": "2021-02-03T17:20:30.000Z" - }, - "events": [ - { - "uuid": "870cd7a1-bbdd-41a3-9a1b-3ae106607c0a", - "start": { - "$date": "2021-02-03T16:51:32.000Z" - }, - "end": { - "$date": "2021-02-03T17:20:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f4f4d5f-b083-46d3-bb0c-f4c80fc086f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T17:25:39.000Z" - }, - "end": { - "$date": "2021-02-03T17:58:39.000Z" - }, - "events": [ - { - "uuid": "ef51e91e-0801-4248-9621-6d3f29b6ae6a", - "start": { - "$date": "2021-02-03T17:25:39.000Z" - }, - "end": { - "$date": "2021-02-03T17:58:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e47e8fdb-06db-40bd-bbb2-32e3f36400ac", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-03T18:24:24.000Z" - }, - "end": { - "$date": "2021-02-03T19:27:30.000Z" - }, - "events": [ - { - "uuid": "37079e1a-aed4-41b4-9923-902e3734d7bc", - "start": { - "$date": "2021-02-03T18:24:24.000Z" - }, - "end": { - "$date": "2021-02-03T19:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d9abc0bf-d535-41a9-a95e-ac579872bbbd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-03T18:48:48.000Z" - }, - "end": { - "$date": "2021-02-03T19:07:44.000Z" - }, - "events": [ - { - "uuid": "fd52ea2b-1a46-4cb7-a57e-1dfa5c70d099", - "start": { - "$date": "2021-02-03T18:48:48.000Z" - }, - "end": { - "$date": "2021-02-03T19:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc02f509-d0c8-450e-8958-610b9b55218a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T18:54:37.000Z" - }, - "end": { - "$date": "2021-02-03T19:25:42.000Z" - }, - "events": [ - { - "uuid": "5e4ea3a2-834c-420c-9bef-be6611dfa986", - "start": { - "$date": "2021-02-03T18:54:37.000Z" - }, - "end": { - "$date": "2021-02-03T19:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4065a921-aab7-42d8-9a1c-ab47d8e68946", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T19:34:25.000Z" - }, - "end": { - "$date": "2021-02-03T19:44:42.000Z" - }, - "events": [ - { - "uuid": "3c197a3c-1bde-4bac-b765-f5c6d5c962a1", - "start": { - "$date": "2021-02-03T19:34:25.000Z" - }, - "end": { - "$date": "2021-02-03T19:44:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "45536f9e-b93b-43ec-ad65-b49620a6801a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-03T19:37:31.000Z" - }, - "end": { - "$date": "2021-02-03T20:29:29.000Z" - }, - "events": [ - { - "uuid": "b9d19c2b-9104-41c5-9572-11dac92b6c93", - "start": { - "$date": "2021-02-03T19:37:31.000Z" - }, - "end": { - "$date": "2021-02-03T20:29:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2d39fda-635a-483e-8561-f250e89ab338", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T19:44:49.000Z" - }, - "end": { - "$date": "2021-02-03T20:06:25.000Z" - }, - "events": [ - { - "uuid": "aff375a7-d33e-4d07-9f51-44404d2ff212", - "start": { - "$date": "2021-02-03T19:44:49.000Z" - }, - "end": { - "$date": "2021-02-03T20:06:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc29f704-cfb9-47c4-a336-f28f3d63711b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T20:08:10.000Z" - }, - "end": { - "$date": "2021-02-03T20:46:07.000Z" - }, - "events": [ - { - "uuid": "58228dd3-d914-4c24-89d8-7485715e30a7", - "start": { - "$date": "2021-02-03T20:08:10.000Z" - }, - "end": { - "$date": "2021-02-03T20:46:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c8192014-3c6f-41b2-930a-e9589b1e2ced", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-03T20:35:36.000Z" - }, - "end": { - "$date": "2021-02-03T20:40:07.000Z" - }, - "events": [ - { - "uuid": "5ef3f172-0a75-4c25-8caf-50d2a74d0b7e", - "start": { - "$date": "2021-02-03T20:35:36.000Z" - }, - "end": { - "$date": "2021-02-03T20:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5ff09d87-8bd8-4c80-8bff-6acc4c98d0f7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-03T20:47:53.000Z" - }, - "end": { - "$date": "2021-02-03T21:48:54.000Z" - }, - "events": [ - { - "uuid": "59251fab-a68c-4f58-9270-dfc33e6bf023", - "start": { - "$date": "2021-02-03T20:47:53.000Z" - }, - "end": { - "$date": "2021-02-03T21:48:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e7582020-0445-40f7-a16e-ce36283a7a4b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-03T21:20:51.000Z" - }, - "end": { - "$date": "2021-02-03T23:06:45.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-03T21:20:51.000Z" - }, - "end": { - "$date": "2021-02-03T23:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e00ef6f-9e70-4994-9175-2c87baa32820", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T21:37:36.000Z" - }, - "end": { - "$date": "2021-02-03T22:13:43.000Z" - }, - "events": [ - { - "uuid": "229d0c1f-4e21-40f1-9176-79fd10c455bd", - "start": { - "$date": "2021-02-03T21:37:36.000Z" - }, - "end": { - "$date": "2021-02-03T22:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87e7f231-6fbf-47a4-a81c-8b3779075b8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T22:08:33.000Z" - }, - "end": { - "$date": "2021-02-03T22:37:19.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-03T22:08:33.000Z" - }, - "end": { - "$date": "2021-02-03T22:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c1c6d19a-bba9-4441-b7b8-40e0106e2a9e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-03T22:10:04.000Z" - }, - "end": { - "$date": "2021-02-03T22:12:09.000Z" - }, - "events": [ - { - "uuid": "3ebe102f-c9eb-4f9b-9f88-65076368a191", - "start": { - "$date": "2021-02-03T22:10:04.000Z" - }, - "end": { - "$date": "2021-02-03T22:12:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2393df10-036b-4dc9-8f6f-d64a3f19df5a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-03T22:12:39.000Z" - }, - "end": { - "$date": "2021-02-03T22:15:29.000Z" - }, - "events": [ - { - "uuid": "89d853d1-4071-47e8-818b-363731538886", - "start": { - "$date": "2021-02-03T22:12:39.000Z" - }, - "end": { - "$date": "2021-02-03T22:15:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "106cbed3-eebe-4dff-9b77-2dbbc930a7b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T22:16:22.000Z" - }, - "end": { - "$date": "2021-02-03T22:24:34.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-03T22:16:22.000Z" - }, - "end": { - "$date": "2021-02-03T22:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d738c47b-c9cd-429b-a66b-bddd5fefc27d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T23:03:57.000Z" - }, - "end": { - "$date": "2021-02-03T23:03:57.000Z" - }, - "events": [ - { - "uuid": "193547d2-a852-49c8-8b20-04520f8359d9", - "start": { - "$date": "2021-02-03T23:03:57.000Z" - }, - "end": { - "$date": "2021-02-03T23:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d27e680-f093-41ef-96c4-cd010b73d97a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-03T23:07:50.000Z" - }, - "end": { - "$date": "2021-02-03T23:41:34.000Z" - }, - "events": [ - { - "uuid": "79fdfdfb-43d4-4f5a-8fa8-1cae44b089e2", - "start": { - "$date": "2021-02-03T23:07:50.000Z" - }, - "end": { - "$date": "2021-02-03T23:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a9080c4f-18cd-45fb-a8d4-08d72d1b0147", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-03T23:28:10.000Z" - }, - "end": { - "$date": "2021-02-04T00:01:26.000Z" - }, - "events": [ - { - "uuid": "d4c96df5-0b77-4488-99df-20626867422b", - "start": { - "$date": "2021-02-03T23:28:10.000Z" - }, - "end": { - "$date": "2021-02-04T00:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "72bd5ea5-adc8-4c77-b07b-fd48501636da", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-03T23:33:22.000Z" - }, - "end": { - "$date": "2021-02-03T23:53:55.000Z" - }, - "events": [ - { - "uuid": "78803495-748a-4229-8594-568d2398ff09", - "start": { - "$date": "2021-02-03T23:33:22.000Z" - }, - "end": { - "$date": "2021-02-03T23:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4de08a73-e7b4-45a1-8155-2385feb9ea27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-04T00:22:09.000Z" - }, - "end": { - "$date": "2021-02-04T00:22:17.000Z" - }, - "events": [ - { - "uuid": "e2ac5b3d-d419-425f-9b86-9aa026a3ffd3", - "start": { - "$date": "2021-02-04T00:22:09.000Z" - }, - "end": { - "$date": "2021-02-04T00:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "9279d660-5e57-41f7-a5b4-b8b0c807370e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-03T23:49:10.000Z" - }, - "end": { - "$date": "2021-02-04T00:28:25.000Z" - }, - "events": [ - { - "uuid": "7f54ceea-2b80-462d-a176-63a0440c4fae", - "start": { - "$date": "2021-02-03T23:49:10.000Z" - }, - "end": { - "$date": "2021-02-04T00:28:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6f19551a-97e8-4f07-8acc-2ec9c8745b98", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-03T23:54:20.000Z" - }, - "end": { - "$date": "2021-02-04T03:44:15.000Z" - }, - "events": [ - { - "uuid": "ea69f026-c370-4243-81b6-f4ecd894c8cb", - "start": { - "$date": "2021-02-03T23:54:20.000Z" - }, - "end": { - "$date": "2021-02-04T03:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "00d48e7d-17e3-476e-8672-c3ea33c5c432", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-04T01:14:57.000Z" - }, - "end": { - "$date": "2021-02-04T01:40:37.000Z" - }, - "events": [ - { - "uuid": "ef0a4fe9-c438-4e83-9305-9df0778367d6", - "start": { - "$date": "2021-02-04T01:14:57.000Z" - }, - "end": { - "$date": "2021-02-04T01:40:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f9bcd44d-179f-443b-a2e0-c558c0997678", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-04T01:40:48.000Z" - }, - "end": { - "$date": "2021-02-04T02:34:04.000Z" - }, - "events": [ - { - "uuid": "7e5f24af-fab9-4e90-b163-457cd73b3670", - "start": { - "$date": "2021-02-04T01:40:48.000Z" - }, - "end": { - "$date": "2021-02-04T02:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bd1fa501-aec6-432d-adf3-5ee80295c507", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-04T02:52:39.000Z" - }, - "end": { - "$date": "2021-02-04T04:09:31.000Z" - }, - "events": [ - { - "uuid": "329c7561-7627-42d9-9fe4-a8d3365bea2c", - "start": { - "$date": "2021-02-04T02:52:39.000Z" - }, - "end": { - "$date": "2021-02-04T04:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5d055cc-3c4f-449c-a2a0-77effcf3d27a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-04T03:05:10.000Z" - }, - "end": { - "$date": "2021-02-04T03:42:15.000Z" - }, - "events": [ - { - "uuid": "8cb0025b-fbfe-4f29-ad08-034988218f55", - "start": { - "$date": "2021-02-04T03:05:10.000Z" - }, - "end": { - "$date": "2021-02-04T03:42:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "60e54837-3f6e-4e60-bf52-a5cdea6ff3e6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-04T03:08:56.000Z" - }, - "end": { - "$date": "2021-02-04T05:30:25.000Z" - }, - "events": [ - { - "uuid": "a64f64fd-74db-4549-be5a-ae3d438f2fab", - "start": { - "$date": "2021-02-04T03:08:56.000Z" - }, - "end": { - "$date": "2021-02-04T05:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d0b51d4c-e711-4a7b-bab8-3bc96fb3746f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-04T03:10:58.000Z" - }, - "end": { - "$date": "2021-02-04T05:30:08.000Z" - }, - "events": [ - { - "uuid": "d910400e-e6c5-486f-8a81-2ad562c8640a", - "start": { - "$date": "2021-02-04T03:10:58.000Z" - }, - "end": { - "$date": "2021-02-04T05:30:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "647f4ab8-e722-4e4f-be25-b4b9d011ee8b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-04T03:29:39.000Z" - }, - "end": { - "$date": "2021-02-04T04:11:35.000Z" - }, - "events": [ - { - "uuid": "b8a0a68a-0d27-48b0-8bd5-0655d00236e0", - "start": { - "$date": "2021-02-04T03:29:39.000Z" - }, - "end": { - "$date": "2021-02-04T04:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6eea1c50-7c6a-4064-8bda-4099483ff533", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-04T03:44:47.000Z" - }, - "end": { - "$date": "2021-02-04T06:47:20.000Z" - }, - "events": [ - { - "uuid": "01db5a27-da41-4366-8062-4ffdedb9d99f", - "start": { - "$date": "2021-02-04T03:44:47.000Z" - }, - "end": { - "$date": "2021-02-04T06:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9b7a2997-41cb-4a8e-9d71-842e3e4b3261", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-04T03:44:51.000Z" - }, - "end": { - "$date": "2021-02-04T05:08:33.000Z" - }, - "events": [ - { - "uuid": "9ff1db05-1f9f-4864-b147-8b43ef0ceb82", - "start": { - "$date": "2021-02-04T03:44:51.000Z" - }, - "end": { - "$date": "2021-02-04T05:08:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6c1d6c59-73bd-4b8b-ae57-b83832a7ea94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-04T04:12:11.000Z" - }, - "end": { - "$date": "2021-02-04T05:29:53.000Z" - }, - "events": [ - { - "uuid": "ddcac2f8-4fe6-44c5-9814-695e3f834eea", - "start": { - "$date": "2021-02-04T04:12:11.000Z" - }, - "end": { - "$date": "2021-02-04T05:29:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "345c4531-bba4-49d0-b115-547fab258d79", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-04T04:49:10.000Z" - }, - "end": { - "$date": "2021-02-04T05:30:16.000Z" - }, - "events": [ - { - "uuid": "0d2ea47f-91d1-444d-ab43-d75ca030357d", - "start": { - "$date": "2021-02-04T04:49:10.000Z" - }, - "end": { - "$date": "2021-02-04T05:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "916620d1-542e-4867-9f30-5affb4b3caa8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-04T05:32:45.000Z" - }, - "end": { - "$date": "2021-02-04T06:28:49.000Z" - }, - "events": [ - { - "uuid": "b5420c96-920d-42df-9e3a-545534270d16", - "start": { - "$date": "2021-02-04T05:32:45.000Z" - }, - "end": { - "$date": "2021-02-04T06:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "461eb0c2-9ec2-4d22-817b-368cec4c2d98", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-04T05:57:00.000Z" - }, - "end": { - "$date": "2021-02-04T06:04:21.000Z" - }, - "events": [ - { - "uuid": "bfc9e433-26fb-427a-8013-107724338f4b", - "start": { - "$date": "2021-02-04T05:57:00.000Z" - }, - "end": { - "$date": "2021-02-04T06:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5614959e-25bf-4d09-91ec-e30466c960e6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-04T06:53:36.000Z" - }, - "end": { - "$date": "2021-02-04T07:01:37.000Z" - }, - "events": [ - { - "uuid": "ab020044-eaa9-4699-b5dd-0900008fa7e4", - "start": { - "$date": "2021-02-04T06:53:36.000Z" - }, - "end": { - "$date": "2021-02-04T07:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "966f114b-1302-4e24-90e3-d10a0e23c318", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-04T07:03:03.000Z" - }, - "end": { - "$date": "2021-02-04T07:04:22.000Z" - }, - "events": [ - { - "uuid": "b7619530-ac89-48ae-91c9-d18ed7ce69c0", - "start": { - "$date": "2021-02-04T07:03:03.000Z" - }, - "end": { - "$date": "2021-02-04T07:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0f91160d-c3f7-414f-bd7a-ba3a462284b2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-04T07:03:42.000Z" - }, - "end": { - "$date": "2021-02-04T08:09:34.000Z" - }, - "events": [ - { - "uuid": "8ead81d4-a8d5-4b78-84e8-8c37fde699af", - "start": { - "$date": "2021-02-04T07:03:42.000Z" - }, - "end": { - "$date": "2021-02-04T08:09:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a326b020-5a25-4f70-9c03-f776aa635a29", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-04T16:32:53.000Z" - }, - "end": { - "$date": "2021-02-04T16:36:19.000Z" - }, - "events": [ - { - "uuid": "30690f65-f3e5-45c1-9175-4c3815d58fe2", - "start": { - "$date": "2021-02-04T16:32:53.000Z" - }, - "end": { - "$date": "2021-02-04T16:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8a646bc9-868b-4ec6-95af-42e895128289", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-04T18:13:48.000Z" - }, - "end": { - "$date": "2021-02-04T19:08:15.000Z" - }, - "events": [ - { - "uuid": "f2ceaac2-18dc-492c-8911-5d400f3cdde4", - "start": { - "$date": "2021-02-04T18:13:48.000Z" - }, - "end": { - "$date": "2021-02-04T18:35:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6c314c83-5414-4d89-a4a9-47f3c311b81e", - "start": { - "$date": "2021-02-04T18:35:48.000Z" - }, - "end": { - "$date": "2021-02-04T18:41:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "822f7b18-46ff-4554-b683-b057a455b3b7", - "start": { - "$date": "2021-02-04T18:41:48.000Z" - }, - "end": { - "$date": "2021-02-04T19:08:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7fb4230c-0f4a-4a5e-a7f5-e36f0063790b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-04T19:35:18.000Z" - }, - "end": { - "$date": "2021-02-04T19:57:11.000Z" - }, - "events": [ - { - "uuid": "c9fa93ce-e8f4-4060-928a-7bf9a216c980", - "start": { - "$date": "2021-02-04T19:35:18.000Z" - }, - "end": { - "$date": "2021-02-04T19:46:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09f2f4ee-f495-4b7f-85b0-f101a4857404", - "start": { - "$date": "2021-02-04T19:46:18.000Z" - }, - "end": { - "$date": "2021-02-04T19:57:11.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "403b89e0-b0be-4c8f-ae5a-1c6af1a12912", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-04T19:35:48.000Z" - }, - "end": { - "$date": "2021-02-04T19:55:25.000Z" - }, - "events": [ - { - "uuid": "17620063-7de6-40b3-a1a7-d7d5e2c38e19", - "start": { - "$date": "2021-02-04T19:35:48.000Z" - }, - "end": { - "$date": "2021-02-04T19:55:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "17839476-92f5-4d45-9564-d62c55900e95", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-04T20:16:42.000Z" - }, - "end": { - "$date": "2021-02-04T21:16:47.000Z" - }, - "events": [ - { - "uuid": "b2ff57db-2d06-4d32-b427-e0e746db33f5", - "start": { - "$date": "2021-02-04T20:16:42.000Z" - }, - "end": { - "$date": "2021-02-04T21:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0892e2f8-ffbf-4115-8afd-8871d3eb8fe2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-04T20:23:38.000Z" - }, - "end": { - "$date": "2021-02-04T21:00:32.000Z" - }, - "events": [ - { - "uuid": "7c678ec5-3ec3-4f95-a227-a17028c18acb", - "start": { - "$date": "2021-02-04T20:23:38.000Z" - }, - "end": { - "$date": "2021-02-04T21:00:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ee22f3af-be33-4773-9789-1acec1cd8d25", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-04T22:55:49.000Z" - }, - "end": { - "$date": "2021-02-05T00:00:39.000Z" - }, - "events": [ - { - "uuid": "7214036a-6769-4895-bee8-8b28a9012533", - "start": { - "$date": "2021-02-04T22:55:49.000Z" - }, - "end": { - "$date": "2021-02-05T00:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d59c194e-3f18-4e67-b034-376edab22df6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-04T22:59:23.000Z" - }, - "end": { - "$date": "2021-02-05T00:11:25.000Z" - }, - "events": [ - { - "uuid": "458ed697-71b3-4642-b82b-ad463251c248", - "start": { - "$date": "2021-02-04T22:59:23.000Z" - }, - "end": { - "$date": "2021-02-05T00:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "96aa161d-1d8b-4d18-9471-f681bca630ab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-04T23:36:01.000Z" - }, - "end": { - "$date": "2021-02-04T23:49:27.000Z" - }, - "events": [ - { - "uuid": "9c9da767-7962-4c63-98a5-d848a5c9a32c", - "start": { - "$date": "2021-02-04T23:36:01.000Z" - }, - "end": { - "$date": "2021-02-04T23:49:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27e8a428-e7e9-4d82-9b81-fa5b32d1f99b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T00:39:30.000Z" - }, - "end": { - "$date": "2021-02-05T01:14:27.000Z" - }, - "events": [ - { - "uuid": "c8fac600-c59a-4b54-a46c-68f2b52f6487", - "start": { - "$date": "2021-02-05T00:39:30.000Z" - }, - "end": { - "$date": "2021-02-05T01:14:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "70e14f5d-98ad-4315-b8f1-f20edbf4a5f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T00:31:21.000Z" - }, - "end": { - "$date": "2021-02-05T00:34:35.000Z" - }, - "events": [ - { - "uuid": "27f96e14-a074-4749-8347-39b39086aff9", - "start": { - "$date": "2021-02-05T00:31:21.000Z" - }, - "end": { - "$date": "2021-02-05T00:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "da30f779-164d-4b54-9f9b-bee189d2c021", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T00:40:01.000Z" - }, - "end": { - "$date": "2021-02-05T01:43:38.000Z" - }, - "events": [ - { - "uuid": "2a73b2cf-463c-4077-be9d-f6abcdcb9a6e", - "start": { - "$date": "2021-02-05T00:40:01.000Z" - }, - "end": { - "$date": "2021-02-05T01:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a43edafc-150e-4a52-b8b7-54c1c0bde149", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T01:15:32.000Z" - }, - "end": { - "$date": "2021-02-05T02:05:56.000Z" - }, - "events": [ - { - "uuid": "b0306aba-a795-4865-9293-a5fd527b7197", - "start": { - "$date": "2021-02-05T01:15:32.000Z" - }, - "end": { - "$date": "2021-02-05T02:05:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "871c3f4c-b870-43e2-a8a5-a9737f1e171a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-05T01:16:54.000Z" - }, - "end": { - "$date": "2021-02-05T01:28:39.000Z" - }, - "events": [ - { - "uuid": "02c21930-d2d6-4a70-8903-892521d63bf6", - "start": { - "$date": "2021-02-05T01:16:54.000Z" - }, - "end": { - "$date": "2021-02-05T01:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "1e335e29-878c-4022-9fa7-35a1b486e793", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-05T01:17:04.000Z" - }, - "end": { - "$date": "2021-02-05T01:24:59.000Z" - }, - "events": [ - { - "uuid": "1696fb2f-c9cd-4e36-9c04-e0287f97eba5", - "start": { - "$date": "2021-02-05T01:17:04.000Z" - }, - "end": { - "$date": "2021-02-05T01:24:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "1c0e94c7-63e1-40fe-bbd8-2acd99439642", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-05T01:25:06.000Z" - }, - "end": { - "$date": "2021-02-05T04:23:59.000Z" - }, - "events": [ - { - "uuid": "225fc3d4-8955-40b5-addb-28b41db59828", - "start": { - "$date": "2021-02-05T01:25:06.000Z" - }, - "end": { - "$date": "2021-02-05T04:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f6c56d6a-c70d-45e2-bfa4-daddf4f4d024", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T01:58:57.000Z" - }, - "end": { - "$date": "2021-02-05T02:57:54.000Z" - }, - "events": [ - { - "uuid": "d94d3133-6933-459b-a36c-ac9a56f3a91a", - "start": { - "$date": "2021-02-05T01:58:57.000Z" - }, - "end": { - "$date": "2021-02-05T02:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bbbd37b-da91-4e10-bbce-1ea868161a9e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T01:59:50.000Z" - }, - "end": { - "$date": "2021-02-05T03:20:48.000Z" - }, - "events": [ - { - "uuid": "97f1d4da-84f4-4a6e-80e9-c36913affed9", - "start": { - "$date": "2021-02-05T01:59:50.000Z" - }, - "end": { - "$date": "2021-02-05T03:05:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d009441f-29bf-4ca8-ad3c-ac76ce35172c", - "start": { - "$date": "2021-02-05T03:05:50.000Z" - }, - "end": { - "$date": "2021-02-05T03:09:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09691ec0-d6fe-4342-b9fc-1eec72ca7a25", - "start": { - "$date": "2021-02-05T03:09:50.000Z" - }, - "end": { - "$date": "2021-02-05T03:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e90f755-42bd-498d-924d-3f84166ea64d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T02:07:25.000Z" - }, - "end": { - "$date": "2021-02-05T02:20:47.000Z" - }, - "events": [ - { - "uuid": "6b8bba9c-208f-4315-983d-f0c3cf5ba8c7", - "start": { - "$date": "2021-02-05T02:07:25.000Z" - }, - "end": { - "$date": "2021-02-05T02:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06c2873e-d1a7-4aa4-87eb-a7d92f6718b4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T02:07:27.000Z" - }, - "end": { - "$date": "2021-02-05T02:20:38.000Z" - }, - "events": [ - { - "uuid": "e6b24c5b-c340-4dab-8cd0-3a0c3d3c7155", - "start": { - "$date": "2021-02-05T02:07:27.000Z" - }, - "end": { - "$date": "2021-02-05T02:20:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87e5f5ee-4b83-44e4-a064-8cbf53bd70aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T04:12:49.000Z" - }, - "end": { - "$date": "2021-02-05T04:29:49.000Z" - }, - "events": [ - { - "uuid": "aed65475-a5c1-403a-83f3-43db8ac18e30", - "start": { - "$date": "2021-02-05T04:12:49.000Z" - }, - "end": { - "$date": "2021-02-05T05:50:49.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "e8089dbe-568a-461c-8b59-23d214e33548", - "start": { - "$date": "2021-02-05T05:50:49.000Z" - }, - "end": { - "$date": "2021-02-05T04:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a7e7902e-1e79-4843-a8c7-c5d719a7f5c3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-05T03:47:56.000Z" - }, - "end": { - "$date": "2021-02-05T05:21:43.000Z" - }, - "events": [ - { - "uuid": "e53954e6-ffa6-4aea-a046-f29cdf87918b", - "start": { - "$date": "2021-02-05T03:47:56.000Z" - }, - "end": { - "$date": "2021-02-05T05:20:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "977df2c7-ae23-4d30-b7d3-29e1eccfab17", - "start": { - "$date": "2021-02-05T05:20:56.000Z" - }, - "end": { - "$date": "2021-02-05T05:22:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "021481f3-d37a-4479-8ea3-dd0c83814464", - "start": { - "$date": "2021-02-05T05:22:56.000Z" - }, - "end": { - "$date": "2021-02-05T05:21:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "aafc0768-da9a-4944-a4ec-50ddc1688cd3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T03:21:11.000Z" - }, - "end": { - "$date": "2021-02-05T03:24:54.000Z" - }, - "events": [ - { - "uuid": "cce138e0-f933-4ea5-b590-cadc59674e7b", - "start": { - "$date": "2021-02-05T03:21:11.000Z" - }, - "end": { - "$date": "2021-02-05T03:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "316e96f7-1a9d-44ad-8d55-e5f6ed40efe5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T03:21:09.000Z" - }, - "end": { - "$date": "2021-02-05T04:16:54.000Z" - }, - "events": [ - { - "uuid": "a438df94-f3aa-4d38-af49-5657faaf27f1", - "start": { - "$date": "2021-02-05T03:21:09.000Z" - }, - "end": { - "$date": "2021-02-05T04:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "3d53d59c-ecdd-4ed5-86ec-62c78e03802b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-05T03:33:40.000Z" - }, - "end": { - "$date": "2021-02-05T06:22:55.000Z" - }, - "events": [ - { - "uuid": "ad5a6575-ba6f-43a9-a78c-c45916fb270d", - "start": { - "$date": "2021-02-05T03:33:40.000Z" - }, - "end": { - "$date": "2021-02-05T06:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c34f2ff6-79fd-4b49-a6a4-2c8385051441", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-05T03:50:56.000Z" - }, - "end": { - "$date": "2021-02-05T03:55:57.000Z" - }, - "events": [ - { - "uuid": "5f732489-37e4-482e-8e52-c35b3751e8fb", - "start": { - "$date": "2021-02-05T03:50:56.000Z" - }, - "end": { - "$date": "2021-02-05T03:55:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18401aac-d5c7-40e0-b4e1-70e32d564927", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-05T04:03:44.000Z" - }, - "end": { - "$date": "2021-02-05T04:13:26.000Z" - }, - "events": [ - { - "uuid": "4a8af415-7e4a-445d-856f-fa62fce2d893", - "start": { - "$date": "2021-02-05T04:03:44.000Z" - }, - "end": { - "$date": "2021-02-05T04:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c89d94b3-a6ad-4304-af74-f693999f1562", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T04:12:47.000Z" - }, - "end": { - "$date": "2021-02-05T04:29:43.000Z" - }, - "events": [ - { - "uuid": "394cb61c-1daa-4293-8f63-c3fefd3d43fe", - "start": { - "$date": "2021-02-05T04:12:47.000Z" - }, - "end": { - "$date": "2021-02-05T04:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8c3ed3c-b958-4b0e-bb2a-cdc4ca83ff52", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-05T04:16:21.000Z" - }, - "end": { - "$date": "2021-02-05T04:36:37.000Z" - }, - "events": [ - { - "uuid": "b1e4a3b7-a1ff-439a-9116-59d256b7445e", - "start": { - "$date": "2021-02-05T04:16:21.000Z" - }, - "end": { - "$date": "2021-02-05T04:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fa893356-c879-40c8-8237-bd36e1aa1e3f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T04:21:36.000Z" - }, - "end": { - "$date": "2021-02-05T04:28:55.000Z" - }, - "events": [ - { - "uuid": "7b6392f3-f31f-4d79-b99e-39c3e1b64506", - "start": { - "$date": "2021-02-05T04:21:36.000Z" - }, - "end": { - "$date": "2021-02-05T04:28:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c31ca9bc-749c-42b6-93e8-377330517599", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T04:38:41.000Z" - }, - "end": { - "$date": "2021-02-05T05:00:52.000Z" - }, - "events": [ - { - "uuid": "231711e8-db2b-4835-9cdc-18631de15740", - "start": { - "$date": "2021-02-05T04:38:41.000Z" - }, - "end": { - "$date": "2021-02-05T05:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8abbc3b-2220-44d6-bf46-481b1776272b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-05T05:00:43.000Z" - }, - "end": { - "$date": "2021-02-05T05:00:53.000Z" - }, - "events": [ - { - "uuid": "4a32fe28-29ac-4086-9f6a-26f388fa9e91", - "start": { - "$date": "2021-02-05T05:00:43.000Z" - }, - "end": { - "$date": "2021-02-05T05:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16d54345-d6bf-41e5-a02d-412526671a78", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T04:38:53.000Z" - }, - "end": { - "$date": "2021-02-05T05:00:48.000Z" - }, - "events": [ - { - "uuid": "0c8362c3-f577-45e5-a1ee-6777bec6f992", - "start": { - "$date": "2021-02-05T04:38:53.000Z" - }, - "end": { - "$date": "2021-02-05T05:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "1e59ca62-37e1-4a17-9548-f6f39a76d28c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T04:48:09.000Z" - }, - "end": { - "$date": "2021-02-05T04:55:34.000Z" - }, - "events": [ - { - "uuid": "f6c76512-9288-43f1-a434-89ed01a83381", - "start": { - "$date": "2021-02-05T04:48:09.000Z" - }, - "end": { - "$date": "2021-02-05T04:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "594c4f09-b078-4938-b716-504c199f2242", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T05:04:47.000Z" - }, - "end": { - "$date": "2021-02-05T05:27:29.000Z" - }, - "events": [ - { - "uuid": "73fe2818-80c5-4efb-abb9-e847a5cba990", - "start": { - "$date": "2021-02-05T05:04:47.000Z" - }, - "end": { - "$date": "2021-02-05T05:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bb3c3bd-8059-477d-b5a6-4ff0601b04e0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-05T05:05:38.000Z" - }, - "end": { - "$date": "2021-02-05T05:27:25.000Z" - }, - "events": [ - { - "uuid": "55c34760-e6e2-4447-9f7e-d18ffcd36b0d", - "start": { - "$date": "2021-02-05T05:05:38.000Z" - }, - "end": { - "$date": "2021-02-05T05:27:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6013dc7-4a1e-4044-b0c0-b31c8ada980c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T05:04:44.000Z" - }, - "end": { - "$date": "2021-02-05T05:27:28.000Z" - }, - "events": [ - { - "uuid": "a9f2d4ec-20fa-4554-9a24-429eca406842", - "start": { - "$date": "2021-02-05T05:04:44.000Z" - }, - "end": { - "$date": "2021-02-05T05:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "55ceafe9-7aae-4755-bf97-c3776f3cf7cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-05T05:22:24.000Z" - }, - "end": { - "$date": "2021-02-05T06:47:31.000Z" - }, - "events": [ - { - "uuid": "42b16365-21a8-4ce7-87fa-102bb334a13e", - "start": { - "$date": "2021-02-05T05:22:24.000Z" - }, - "end": { - "$date": "2021-02-05T06:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bf46a4f-0d17-4cac-89db-5e1563f2a14f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T05:30:34.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:55.000Z" - }, - "events": [ - { - "uuid": "1034ace9-efbd-4e3b-8eec-0a9afec7bd26", - "start": { - "$date": "2021-02-05T05:30:34.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "737228dd-59c9-437b-a7f5-f70349b6fe61", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-05T05:30:59.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:49.000Z" - }, - "events": [ - { - "uuid": "8c233d61-ada8-40b7-85ba-b93b9666c89d", - "start": { - "$date": "2021-02-05T05:30:59.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9fffe3e-65d4-4e80-ac30-a0c34ac68ee5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-05T05:31:15.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:46.000Z" - }, - "events": [ - { - "uuid": "f18fd787-608c-45cc-8b10-f95249542a6d", - "start": { - "$date": "2021-02-05T05:31:15.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26b39c7b-da3f-485c-b47c-a5b927287b39", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T05:30:39.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:46.000Z" - }, - "events": [ - { - "uuid": "1acee9ad-1d8a-4774-9701-ed6faf4f734d", - "start": { - "$date": "2021-02-05T05:30:39.000Z" - }, - "end": { - "$date": "2021-02-05T05:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c73e5dbb-fae8-4752-ad1a-7e71eda15063", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T05:44:46.000Z" - }, - "end": { - "$date": "2021-02-05T06:04:52.000Z" - }, - "events": [ - { - "uuid": "5783fdfb-a44c-43c5-bdd0-351169bba10b", - "start": { - "$date": "2021-02-05T05:44:46.000Z" - }, - "end": { - "$date": "2021-02-05T06:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27effca3-8558-4d45-98e3-20978b6151a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T07:34:52.000Z" - }, - "end": { - "$date": "2021-02-05T07:36:19.000Z" - }, - "events": [ - { - "uuid": "c6efc509-794a-4d29-8734-4259ef6b1640", - "start": { - "$date": "2021-02-05T07:34:52.000Z" - }, - "end": { - "$date": "2021-02-05T07:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "562ab79c-10f2-4933-9c53-ae00338d2f22", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-05T05:54:00.000Z" - }, - "end": { - "$date": "2021-02-05T06:55:21.000Z" - }, - "events": [ - { - "uuid": "6eecbf3e-bdaf-406c-bdd3-183b86e60760", - "start": { - "$date": "2021-02-05T05:54:00.000Z" - }, - "end": { - "$date": "2021-02-05T06:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96d8fa13-cb03-4719-8831-a3988fba13a3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-05T07:34:53.000Z" - }, - "end": { - "$date": "2021-02-05T07:36:00.000Z" - }, - "events": [ - { - "uuid": "17680778-c25f-436e-88be-384d0e8ea6ef", - "start": { - "$date": "2021-02-05T07:34:53.000Z" - }, - "end": { - "$date": "2021-02-05T07:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5224ee1-df8c-4a07-8b1c-d5336002e36d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T06:29:02.000Z" - }, - "end": { - "$date": "2021-02-05T06:47:34.000Z" - }, - "events": [ - { - "uuid": "37f0de3b-8907-4d40-b0ed-78567dd0e784", - "start": { - "$date": "2021-02-05T06:29:02.000Z" - }, - "end": { - "$date": "2021-02-05T06:47:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e8b6cf3-717e-4df7-a6eb-4538febafa19", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-05T06:28:52.000Z" - }, - "end": { - "$date": "2021-02-05T06:47:27.000Z" - }, - "events": [ - { - "uuid": "1f210623-ed0f-4254-9cc8-6490a729b14a", - "start": { - "$date": "2021-02-05T06:28:52.000Z" - }, - "end": { - "$date": "2021-02-05T06:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "22ed99f7-d26f-4649-ab1f-6180b4c6f41d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-05T06:48:01.000Z" - }, - "end": { - "$date": "2021-02-05T06:53:31.000Z" - }, - "events": [ - { - "uuid": "2b334efa-a72c-4e0d-8380-947d152ba013", - "start": { - "$date": "2021-02-05T06:48:01.000Z" - }, - "end": { - "$date": "2021-02-05T06:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f17d051-3b07-49b9-99ee-2145595df24d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T06:52:03.000Z" - }, - "end": { - "$date": "2021-02-05T07:10:55.000Z" - }, - "events": [ - { - "uuid": "f5b0ba8b-cf48-4859-af33-9116f5ecf851", - "start": { - "$date": "2021-02-05T06:52:03.000Z" - }, - "end": { - "$date": "2021-02-05T07:10:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18c2d0a0-f1c0-4a5b-81f6-2081cdcdf619", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-05T06:50:07.000Z" - }, - "end": { - "$date": "2021-02-05T07:10:57.000Z" - }, - "events": [ - { - "uuid": "bfe35214-80bc-43b1-9713-6b799744d4ea", - "start": { - "$date": "2021-02-05T06:50:07.000Z" - }, - "end": { - "$date": "2021-02-05T07:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef0ebba7-9c22-4fcb-827e-c3509e571324", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-05T07:13:59.000Z" - }, - "end": { - "$date": "2021-02-05T07:34:40.000Z" - }, - "events": [ - { - "uuid": "a9ca145b-4107-406c-a738-5ad5c0583a13", - "start": { - "$date": "2021-02-05T07:13:59.000Z" - }, - "end": { - "$date": "2021-02-05T07:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8edb2d7-7ad9-4fba-a7a3-e529031af7c6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-05T07:13:47.000Z" - }, - "end": { - "$date": "2021-02-05T07:34:47.000Z" - }, - "events": [ - { - "uuid": "c2f64c00-47d4-4a08-b2be-c1a741c64bbe", - "start": { - "$date": "2021-02-05T07:13:47.000Z" - }, - "end": { - "$date": "2021-02-05T07:34:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ffac4bca-8691-4bd8-a06b-fdc555df233a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-05T07:35:22.000Z" - }, - "end": { - "$date": "2021-02-05T07:39:09.000Z" - }, - "events": [ - { - "uuid": "0aee2321-3197-4fbe-a8f7-247c038d4659", - "start": { - "$date": "2021-02-05T07:35:22.000Z" - }, - "end": { - "$date": "2021-02-05T07:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d69a481e-35f4-408c-95f5-2067fe74ca97", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T16:15:04.000Z" - }, - "end": { - "$date": "2021-02-05T16:38:12.000Z" - }, - "events": [ - { - "uuid": "f799103a-d306-46e7-a943-3836e21164a0", - "start": { - "$date": "2021-02-05T16:15:04.000Z" - }, - "end": { - "$date": "2021-02-05T16:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e96d969-25e4-4859-aa5d-0d3c2852530f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T16:42:50.000Z" - }, - "end": { - "$date": "2021-02-05T16:54:35.000Z" - }, - "events": [ - { - "uuid": "453be31a-375d-4f7c-b644-0b7d24ee8b60", - "start": { - "$date": "2021-02-05T16:42:50.000Z" - }, - "end": { - "$date": "2021-02-05T16:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ac7cbe9b-d967-4d90-80d8-407d1b500a90", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-05T17:32:43.000Z" - }, - "end": { - "$date": "2021-02-05T17:36:19.000Z" - }, - "events": [ - { - "uuid": "74ae86f8-b00d-455e-981b-885459312cfb", - "start": { - "$date": "2021-02-05T17:32:43.000Z" - }, - "end": { - "$date": "2021-02-05T17:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32d97e37-eba4-4299-af7f-98521fa2a587", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T17:37:27.000Z" - }, - "end": { - "$date": "2021-02-05T17:58:22.000Z" - }, - "events": [ - { - "uuid": "03f1b53e-1244-49be-b019-4ff34a1e0528", - "start": { - "$date": "2021-02-05T17:37:27.000Z" - }, - "end": { - "$date": "2021-02-05T17:58:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "5da7d97b-40a2-4e28-a03f-3b50fc26ac0d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-05T17:37:40.000Z" - }, - "end": { - "$date": "2021-02-06T02:15:54.000Z" - }, - "events": [ - { - "uuid": "23232908-7a9e-4a6f-9fe3-13afa4181d91", - "start": { - "$date": "2021-02-05T17:37:40.000Z" - }, - "end": { - "$date": "2021-02-05T17:48:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2aab7260-adac-4b25-af2e-d28d8f538aff", - "start": { - "$date": "2021-02-05T17:48:40.000Z" - }, - "end": { - "$date": "2021-02-05T18:01:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "255d7d8a-61c0-4d21-a740-078c44d51439", - "start": { - "$date": "2021-02-05T18:01:40.000Z" - }, - "end": { - "$date": "2021-02-05T23:33:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3ecd28b-5073-4de9-93ba-3b08d58e80aa", - "start": { - "$date": "2021-02-05T23:33:40.000Z" - }, - "end": { - "$date": "2021-02-06T02:14:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74454855-91b8-4446-a0d0-f2cc61091d42", - "start": { - "$date": "2021-02-06T02:14:40.000Z" - }, - "end": { - "$date": "2021-02-06T02:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97080ff4-2d26-4a24-aa7d-e3a87bd68e81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T18:00:42.000Z" - }, - "end": { - "$date": "2021-02-05T18:23:40.000Z" - }, - "events": [ - { - "uuid": "9689fdb9-5c82-4f33-918f-d879fef1ab23", - "start": { - "$date": "2021-02-05T18:00:42.000Z" - }, - "end": { - "$date": "2021-02-05T18:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1d8b4f9f-f1f7-4c73-86cd-3c7f88127779", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-05T18:08:52.000Z" - }, - "end": { - "$date": "2021-02-05T18:18:24.000Z" - }, - "events": [ - { - "uuid": "132b6a83-ea64-4e54-bd9a-910b1ac62116", - "start": { - "$date": "2021-02-05T18:08:52.000Z" - }, - "end": { - "$date": "2021-02-05T18:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "44ae4e29-45a5-4af2-9014-863e3adcf0fb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-05T18:21:01.000Z" - }, - "end": { - "$date": "2021-02-05T18:29:47.000Z" - }, - "events": [ - { - "uuid": "c0ab47b9-e039-47b0-aa4a-2a06af20b88d", - "start": { - "$date": "2021-02-05T18:21:01.000Z" - }, - "end": { - "$date": "2021-02-05T18:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3fa8a4c-a64d-4771-89f3-997479e8cb53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T18:25:53.000Z" - }, - "end": { - "$date": "2021-02-05T18:49:22.000Z" - }, - "events": [ - { - "uuid": "137d6823-009d-4090-bc28-3a0f6f373feb", - "start": { - "$date": "2021-02-05T18:25:53.000Z" - }, - "end": { - "$date": "2021-02-05T18:49:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "41d5de28-c197-4f2f-b38e-5361fba72463", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-05T18:30:33.000Z" - }, - "end": { - "$date": "2021-02-05T18:34:48.000Z" - }, - "events": [ - { - "uuid": "61c603a0-51c3-4335-a396-6adbdbba9623", - "start": { - "$date": "2021-02-05T18:30:33.000Z" - }, - "end": { - "$date": "2021-02-05T18:34:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "364c2374-cd0c-43d2-a397-2e52491e7124", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-05T18:35:19.000Z" - }, - "end": { - "$date": "2021-02-05T19:03:33.000Z" - }, - "events": [ - { - "uuid": "6f372b7f-2c67-463a-96cb-3c42b207fc29", - "start": { - "$date": "2021-02-05T18:35:19.000Z" - }, - "end": { - "$date": "2021-02-05T19:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b06b3201-9117-42d8-8e3e-e56041e97db8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T18:52:59.000Z" - }, - "end": { - "$date": "2021-02-05T19:14:00.000Z" - }, - "events": [ - { - "uuid": "0a352073-2a64-445e-a9c5-23a28a930fd9", - "start": { - "$date": "2021-02-05T18:52:59.000Z" - }, - "end": { - "$date": "2021-02-05T19:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4708965-31d4-448f-9bdd-67cde9b65853", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T19:21:40.000Z" - }, - "end": { - "$date": "2021-02-05T19:42:05.000Z" - }, - "events": [ - { - "uuid": "3ff5788c-3770-499c-9743-8a8e8fa123d5", - "start": { - "$date": "2021-02-05T19:21:40.000Z" - }, - "end": { - "$date": "2021-02-05T19:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec13ab9b-e590-4a27-aa19-3416d0e7c638", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T19:44:40.000Z" - }, - "end": { - "$date": "2021-02-05T19:54:05.000Z" - }, - "events": [ - { - "uuid": "1534e2b0-ea5c-4643-bb2b-29a8e7369284", - "start": { - "$date": "2021-02-05T19:44:40.000Z" - }, - "end": { - "$date": "2021-02-05T19:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5061c714-3bd8-4639-8d1c-17bd1d8f7731", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T19:59:40.000Z" - }, - "end": { - "$date": "2021-02-05T20:17:30.000Z" - }, - "events": [ - { - "uuid": "9e08c9c6-ee67-4bd5-ad3c-2e70113a7c4d", - "start": { - "$date": "2021-02-05T19:59:40.000Z" - }, - "end": { - "$date": "2021-02-05T20:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d631367c-72c5-4fbb-b723-efab106ce4b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T19:59:57.000Z" - }, - "end": { - "$date": "2021-02-05T20:19:31.000Z" - }, - "events": [ - { - "uuid": "8d07813c-4a15-4a70-aebc-74eb39deceb2", - "start": { - "$date": "2021-02-05T19:59:57.000Z" - }, - "end": { - "$date": "2021-02-05T20:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2034b8e-8d49-4f7f-a6fd-21b9d66e78d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T20:20:06.000Z" - }, - "end": { - "$date": "2021-02-05T20:36:11.000Z" - }, - "events": [ - { - "uuid": "91bb42ce-db8d-4d96-be82-6b8ed3ff6787", - "start": { - "$date": "2021-02-05T20:20:06.000Z" - }, - "end": { - "$date": "2021-02-05T20:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47794f5b-5caa-4a07-a252-c3e305ca89d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T20:40:13.000Z" - }, - "end": { - "$date": "2021-02-05T20:54:19.000Z" - }, - "events": [ - { - "uuid": "5cec9235-5da2-43df-9fd1-50088cf4c98e", - "start": { - "$date": "2021-02-05T20:40:13.000Z" - }, - "end": { - "$date": "2021-02-05T20:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d409720d-6466-4c3e-8433-3eeece300537", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-05T20:40:36.000Z" - }, - "end": { - "$date": "2021-02-05T20:54:01.000Z" - }, - "events": [ - { - "uuid": "f463efff-75c1-4a0b-95a0-3d4541972b63", - "start": { - "$date": "2021-02-05T20:40:36.000Z" - }, - "end": { - "$date": "2021-02-05T20:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "846d8e0b-3ac1-4dc7-93a9-d6c50e0b62c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-05T20:38:45.000Z" - }, - "end": { - "$date": "2021-02-05T21:45:16.000Z" - }, - "events": [ - { - "uuid": "b4cc611f-06f4-4004-8312-93e275085076", - "start": { - "$date": "2021-02-05T20:38:45.000Z" - }, - "end": { - "$date": "2021-02-05T21:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b65ea4d8-6cb0-460d-b5d1-be60d14914e3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-05T20:39:33.000Z" - }, - "end": { - "$date": "2021-02-05T21:27:14.000Z" - }, - "events": [ - { - "uuid": "90f86e8a-cf17-45dd-ac18-93a6f47c03a5", - "start": { - "$date": "2021-02-05T20:39:33.000Z" - }, - "end": { - "$date": "2021-02-05T21:27:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af2323c1-6495-4acf-97b5-fed1b022dd66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T20:45:52.000Z" - }, - "end": { - "$date": "2021-02-05T21:11:26.000Z" - }, - "events": [ - { - "uuid": "7f68c9f7-983e-4297-92fe-638ec174d73b", - "start": { - "$date": "2021-02-05T20:45:52.000Z" - }, - "end": { - "$date": "2021-02-05T21:11:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "576c1fa3-90b0-4790-8698-450b2ad04723", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T21:00:24.000Z" - }, - "end": { - "$date": "2021-02-05T21:18:01.000Z" - }, - "events": [ - { - "uuid": "ebab9491-9b03-4fea-971a-7fa5e274f2a2", - "start": { - "$date": "2021-02-05T21:00:24.000Z" - }, - "end": { - "$date": "2021-02-05T21:18:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb3e9c72-5f31-4efc-9bcd-4e84a54154b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T21:42:58.000Z" - }, - "end": { - "$date": "2021-02-05T21:55:53.000Z" - }, - "events": [ - { - "uuid": "24e3478f-300a-4f0e-a67e-7d6a2938167a", - "start": { - "$date": "2021-02-05T21:42:58.000Z" - }, - "end": { - "$date": "2021-02-05T21:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab6e488f-afd3-425a-b9ee-53c2467758a7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-05T22:08:20.000Z" - }, - "end": { - "$date": "2021-02-05T23:17:47.000Z" - }, - "events": [ - { - "uuid": "dde9d166-5573-4816-90bc-6af27ae6b982", - "start": { - "$date": "2021-02-05T22:08:20.000Z" - }, - "end": { - "$date": "2021-02-05T23:17:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7aae55bc-4361-4252-bbb3-2eed1e431ba3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T21:57:39.000Z" - }, - "end": { - "$date": "2021-02-05T22:13:08.000Z" - }, - "events": [ - { - "uuid": "1bca628f-eb7d-4387-99eb-20b608eb0c68", - "start": { - "$date": "2021-02-05T21:57:39.000Z" - }, - "end": { - "$date": "2021-02-05T22:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9506e915-ee6b-4358-9a63-3a65fa24a8f8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T22:15:49.000Z" - }, - "end": { - "$date": "2021-02-05T22:37:43.000Z" - }, - "events": [ - { - "uuid": "7fa52aad-8149-4f65-88f6-9708fea1532b", - "start": { - "$date": "2021-02-05T22:15:49.000Z" - }, - "end": { - "$date": "2021-02-05T22:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17419baa-92cd-478c-88f7-e42fb40fbc8a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-05T22:59:43.000Z" - }, - "end": { - "$date": "2021-02-05T22:59:41.000Z" - }, - "events": [ - { - "uuid": "13dbba2f-bfbf-4358-a485-e1ae08f73c7f", - "start": { - "$date": "2021-02-05T22:59:43.000Z" - }, - "end": { - "$date": "2021-02-05T22:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e1a77aa-5084-4648-9001-898e02c71237", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T00:03:13.000Z" - }, - "end": { - "$date": "2021-02-06T00:42:54.000Z" - }, - "events": [ - { - "uuid": "afd7839b-fa7d-4be9-99a4-ffb28dcc5bef", - "start": { - "$date": "2021-02-06T00:03:13.000Z" - }, - "end": { - "$date": "2021-02-06T00:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ababac6-29e5-4a3f-b695-d31636ee86f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T00:08:43.000Z" - }, - "end": { - "$date": "2021-02-06T01:39:35.000Z" - }, - "events": [ - { - "uuid": "44a0d322-1951-4c96-8510-278a54d63377", - "start": { - "$date": "2021-02-06T00:08:43.000Z" - }, - "end": { - "$date": "2021-02-06T01:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fffbf22e-550e-4a3f-a4d0-343f76644f47", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T00:48:03.000Z" - }, - "end": { - "$date": "2021-02-06T01:39:34.000Z" - }, - "events": [ - { - "uuid": "db0df3d9-57cc-46cb-b161-f2659c453feb", - "start": { - "$date": "2021-02-06T00:48:03.000Z" - }, - "end": { - "$date": "2021-02-06T01:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0b66ec49-a0e2-4acf-97d5-36d3a05e99d5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-06T01:07:22.000Z" - }, - "end": { - "$date": "2021-02-06T02:18:23.000Z" - }, - "events": [ - { - "uuid": "d60756b3-a9d3-4f78-9f55-87280a8c4307", - "start": { - "$date": "2021-02-06T01:07:22.000Z" - }, - "end": { - "$date": "2021-02-06T02:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37674378-0eb4-4cf7-ac58-3b9ae4d043e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T01:15:36.000Z" - }, - "end": { - "$date": "2021-02-06T01:31:18.000Z" - }, - "events": [ - { - "uuid": "1a858b49-8233-4a9d-8932-4e6fd643a4c4", - "start": { - "$date": "2021-02-06T01:15:36.000Z" - }, - "end": { - "$date": "2021-02-06T01:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62d1d0f6-9614-4591-8af9-cf7792e95e20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T01:40:08.000Z" - }, - "end": { - "$date": "2021-02-06T01:53:51.000Z" - }, - "events": [ - { - "uuid": "2f8f583c-9322-4977-a04a-ad2ff07bcd5c", - "start": { - "$date": "2021-02-06T01:40:08.000Z" - }, - "end": { - "$date": "2021-02-06T01:53:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "44136414-57fd-495f-ac82-374307ce78b3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-06T01:32:25.000Z" - }, - "end": { - "$date": "2021-02-06T01:33:35.000Z" - }, - "events": [ - { - "uuid": "7ce8d9a5-6333-453d-a897-91c82b0e4c9d", - "start": { - "$date": "2021-02-06T01:32:25.000Z" - }, - "end": { - "$date": "2021-02-06T01:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "64ca6af3-58c8-44a2-822a-96028a2b8855", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T01:35:17.000Z" - }, - "end": { - "$date": "2021-02-06T02:19:15.000Z" - }, - "events": [ - { - "uuid": "ac21da23-b5c2-4082-8600-65276031ba50", - "start": { - "$date": "2021-02-06T01:35:17.000Z" - }, - "end": { - "$date": "2021-02-06T02:19:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05c3392a-732b-42ec-be06-1c35927c3164", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T01:56:19.000Z" - }, - "end": { - "$date": "2021-02-06T02:20:46.000Z" - }, - "events": [ - { - "uuid": "e752de5d-75c8-466d-8c97-398dd34daf47", - "start": { - "$date": "2021-02-06T01:56:19.000Z" - }, - "end": { - "$date": "2021-02-06T02:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d2cd1b7-bed1-4bc4-b75f-6aef7e1ff5fa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T02:09:35.000Z" - }, - "end": { - "$date": "2021-02-06T02:43:50.000Z" - }, - "events": [ - { - "uuid": "b5d91eb4-36d9-438b-a428-218127a18574", - "start": { - "$date": "2021-02-06T02:09:35.000Z" - }, - "end": { - "$date": "2021-02-06T02:43:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6b418e18-094c-421d-9c96-d288fc3cad0b", - "uuid": "d68cfb8c-b52c-41ba-aa70-2f3e5e55c095", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-05T17:37:51.000Z" - }, - "end": { - "$date": "2021-02-07T06:55:11.000Z" - }, - "events": [ - { - "uuid": "f79a5300-55ea-49d0-ad51-c3e89febd27f", - "start": { - "$date": "2021-02-05T17:37:51.000Z" - }, - "end": { - "$date": "2021-02-05T17:39:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d92af454-188d-48bc-9b1a-3f49000b9190", - "start": { - "$date": "2021-02-05T17:39:51.000Z" - }, - "end": { - "$date": "2021-02-05T17:41:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "defd64f2-6ce6-44a9-b9f4-5b9f8558e728", - "start": { - "$date": "2021-02-05T17:41:51.000Z" - }, - "end": { - "$date": "2021-02-06T04:17:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1fdc806b-7c62-4eb2-93cd-e8f555c7068a", - "start": { - "$date": "2021-02-06T04:17:51.000Z" - }, - "end": { - "$date": "2021-02-06T04:29:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb8b4d01-4a5e-46a7-bdc5-8fabd045ab9d", - "start": { - "$date": "2021-02-06T04:29:51.000Z" - }, - "end": { - "$date": "2021-02-06T05:21:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5404275-f96e-47a9-a403-7f0bc682aa9b", - "start": { - "$date": "2021-02-06T05:21:51.000Z" - }, - "end": { - "$date": "2021-02-06T05:32:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a92ed7be-18e8-430d-b6af-e68f2e64c8cd", - "start": { - "$date": "2021-02-06T05:32:51.000Z" - }, - "end": { - "$date": "2021-02-06T07:31:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "290ad086-0730-47e7-91d3-bac13788ac39", - "start": { - "$date": "2021-02-06T07:31:51.000Z" - }, - "end": { - "$date": "2021-02-06T07:33:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ee21befc-652b-4ed5-9767-a68efc21b6e7", - "start": { - "$date": "2021-02-06T07:33:51.000Z" - }, - "end": { - "$date": "2021-02-06T07:46:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7e311e87-5fe0-48a6-8d19-1a8fd7c5fbb0", - "start": { - "$date": "2021-02-06T07:46:51.000Z" - }, - "end": { - "$date": "2021-02-06T08:41:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3655f34e-6f93-4152-aaae-30f8bde8d35d", - "start": { - "$date": "2021-02-06T08:41:51.000Z" - }, - "end": { - "$date": "2021-02-06T13:59:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c792e897-7f06-4047-878f-adeca82bfde8", - "start": { - "$date": "2021-02-06T13:59:51.000Z" - }, - "end": { - "$date": "2021-02-06T14:01:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e27bb74-f52b-4182-a51a-d4a72d4eddb4", - "start": { - "$date": "2021-02-06T14:01:51.000Z" - }, - "end": { - "$date": "2021-02-06T14:14:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a631191a-d6dc-44be-ba7c-8416f4889ab8", - "start": { - "$date": "2021-02-06T14:14:51.000Z" - }, - "end": { - "$date": "2021-02-06T14:52:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77992826-3499-4940-8f40-ad9de987a58f", - "start": { - "$date": "2021-02-06T14:52:51.000Z" - }, - "end": { - "$date": "2021-02-06T16:15:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36db59a2-347b-4e89-b40d-7292b7905b90", - "start": { - "$date": "2021-02-06T16:15:51.000Z" - }, - "end": { - "$date": "2021-02-06T16:30:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "28105050-da28-4b07-bb2e-5079032691b9", - "start": { - "$date": "2021-02-06T16:30:51.000Z" - }, - "end": { - "$date": "2021-02-06T18:22:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "411bc7be-fd54-4665-96e7-0cf698a449fc", - "start": { - "$date": "2021-02-06T18:22:51.000Z" - }, - "end": { - "$date": "2021-02-06T18:26:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "458051c4-ce75-43ae-9b19-f7141c013893", - "start": { - "$date": "2021-02-06T18:26:51.000Z" - }, - "end": { - "$date": "2021-02-06T20:05:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54ae724e-8342-45f9-af5b-0e6d347c97c9", - "start": { - "$date": "2021-02-06T20:05:51.000Z" - }, - "end": { - "$date": "2021-02-06T20:07:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e30af0c-4923-4859-88a3-26a3f5ab3e0a", - "start": { - "$date": "2021-02-06T20:07:51.000Z" - }, - "end": { - "$date": "2021-02-06T20:10:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "410e9fbb-567a-4b9d-8e69-a4cd80208e13", - "start": { - "$date": "2021-02-06T20:10:51.000Z" - }, - "end": { - "$date": "2021-02-07T06:55:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "0c62f553-de56-44ee-9727-0d09e620ae55", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-06T02:17:34.000Z" - }, - "end": { - "$date": "2021-02-06T11:47:54.000Z" - }, - "events": [ - { - "uuid": "2c1d756e-3173-477e-9baf-12e958e55032", - "start": { - "$date": "2021-02-06T02:17:34.000Z" - }, - "end": { - "$date": "2021-02-06T11:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "eb38877f-7349-4b65-8112-ddf7477d027e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-06T02:19:59.000Z" - }, - "end": { - "$date": "2021-02-06T05:45:37.000Z" - }, - "events": [ - { - "uuid": "960e11d0-8dc1-4bc1-96db-7f96b834ee1f", - "start": { - "$date": "2021-02-06T02:19:59.000Z" - }, - "end": { - "$date": "2021-02-06T05:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5cc375a-6b73-4161-8c25-360bcaa5d39a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T02:22:40.000Z" - }, - "end": { - "$date": "2021-02-06T02:36:56.000Z" - }, - "events": [ - { - "uuid": "58ebc858-d1c4-4101-b61e-dfa0e253a12d", - "start": { - "$date": "2021-02-06T02:22:40.000Z" - }, - "end": { - "$date": "2021-02-06T02:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ab9b8c27-a5b2-4110-a43c-659c613d1268", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-06T02:22:51.000Z" - }, - "end": { - "$date": "2021-02-06T02:58:49.000Z" - }, - "events": [ - { - "uuid": "f8e4275a-3eeb-45d8-a837-7212f62d1c95", - "start": { - "$date": "2021-02-06T02:22:51.000Z" - }, - "end": { - "$date": "2021-02-06T02:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31fdbf11-01ac-41d4-87e2-c741b9920b1f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T03:13:27.000Z" - }, - "end": { - "$date": "2021-02-06T03:13:23.000Z" - }, - "events": [ - { - "uuid": "658fef67-3349-40ff-9b85-f387585bc559", - "start": { - "$date": "2021-02-06T03:13:27.000Z" - }, - "end": { - "$date": "2021-02-06T03:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f01c575-7f27-4b4e-af4f-6d87f93921dc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T03:24:22.000Z" - }, - "end": { - "$date": "2021-02-06T04:02:18.000Z" - }, - "events": [ - { - "uuid": "68c4b88e-94fa-417b-8364-d9c1e74ba7f3", - "start": { - "$date": "2021-02-06T03:24:22.000Z" - }, - "end": { - "$date": "2021-02-06T04:02:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "af0c7161-bc6c-493a-809b-4c591cf28072", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-06T02:59:15.000Z" - }, - "end": { - "$date": "2021-02-06T07:44:50.000Z" - }, - "events": [ - { - "uuid": "60a5c09c-d8d4-48fa-9eb8-656f15a231fb", - "start": { - "$date": "2021-02-06T02:59:15.000Z" - }, - "end": { - "$date": "2021-02-06T04:28:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98ff0945-c02a-4931-ac95-7e0a5eaa5885", - "start": { - "$date": "2021-02-06T04:28:15.000Z" - }, - "end": { - "$date": "2021-02-06T04:33:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03f9e140-245a-483f-ab39-2b07f0cd7332", - "start": { - "$date": "2021-02-06T04:33:15.000Z" - }, - "end": { - "$date": "2021-02-06T07:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "87c4dd9d-db51-49af-98e9-e3e3846394ef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T03:22:49.000Z" - }, - "end": { - "$date": "2021-02-06T03:33:44.000Z" - }, - "events": [ - { - "uuid": "d48d6bee-181c-40ac-a3c5-9cfd849caeff", - "start": { - "$date": "2021-02-06T03:22:49.000Z" - }, - "end": { - "$date": "2021-02-06T03:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "461e17e0-96cb-4edd-b2ee-33c76e2aa389", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T03:49:45.000Z" - }, - "end": { - "$date": "2021-02-06T04:12:51.000Z" - }, - "events": [ - { - "uuid": "4794f046-7d74-4a31-a1fa-218081c9eeb2", - "start": { - "$date": "2021-02-06T03:49:45.000Z" - }, - "end": { - "$date": "2021-02-06T04:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c49a6ac2-1c4f-48f6-afc5-502f687780bc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T04:12:38.000Z" - }, - "end": { - "$date": "2021-02-06T04:13:09.000Z" - }, - "events": [ - { - "uuid": "745056c5-f71e-47cd-9a94-6cab35e4a5c8", - "start": { - "$date": "2021-02-06T04:12:38.000Z" - }, - "end": { - "$date": "2021-02-06T04:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "261fb1e1-b132-43b0-a5b2-02ec3008ace8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T04:41:34.000Z" - }, - "end": { - "$date": "2021-02-06T04:44:49.000Z" - }, - "events": [ - { - "uuid": "33e3f3b0-80d4-45ee-8ea8-8472f24b052a", - "start": { - "$date": "2021-02-06T04:41:34.000Z" - }, - "end": { - "$date": "2021-02-06T04:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "934b95af-7672-47b0-8eed-aa4298290be9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T05:25:45.000Z" - }, - "end": { - "$date": "2021-02-06T05:37:18.000Z" - }, - "events": [ - { - "uuid": "ec6af00d-a829-443e-9fcd-8e67f46924ed", - "start": { - "$date": "2021-02-06T05:25:45.000Z" - }, - "end": { - "$date": "2021-02-06T05:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "1c01e9d2-ca04-4257-bc46-b778ff2e6ce7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T05:53:52.000Z" - }, - "end": { - "$date": "2021-02-06T06:40:49.000Z" - }, - "events": [ - { - "uuid": "f636cb40-f099-4397-97ed-aded42627b7c", - "start": { - "$date": "2021-02-06T05:53:52.000Z" - }, - "end": { - "$date": "2021-02-06T06:40:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2ee4b83-b433-44b3-afbb-26fc9062f72c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T04:16:56.000Z" - }, - "end": { - "$date": "2021-02-06T04:39:58.000Z" - }, - "events": [ - { - "uuid": "c0f9fc48-5308-4259-b267-cffe9b15cc8b", - "start": { - "$date": "2021-02-06T04:16:56.000Z" - }, - "end": { - "$date": "2021-02-06T04:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "842f8e03-4fbd-46ab-bfbf-5cf65d9bf9a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T04:17:39.000Z" - }, - "end": { - "$date": "2021-02-06T04:39:59.000Z" - }, - "events": [ - { - "uuid": "e7d709fd-abc3-4300-b8ce-070ec7ae8a31", - "start": { - "$date": "2021-02-06T04:17:39.000Z" - }, - "end": { - "$date": "2021-02-06T04:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ddf44fe-d0f3-4827-8e50-161982557aab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T04:46:22.000Z" - }, - "end": { - "$date": "2021-02-06T05:00:07.000Z" - }, - "events": [ - { - "uuid": "10a5e4b7-8385-4f64-9375-8bd7d677c993", - "start": { - "$date": "2021-02-06T04:46:22.000Z" - }, - "end": { - "$date": "2021-02-06T05:00:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9bf93f9-1704-409a-b5ee-49e7d45346e9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T06:03:56.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:11.000Z" - }, - "events": [ - { - "uuid": "93c570b7-498a-4b82-94a8-c155772992a5", - "start": { - "$date": "2021-02-06T06:03:56.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70a6c523-ef11-4caa-baa8-c1b859c0630f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T04:46:20.000Z" - }, - "end": { - "$date": "2021-02-06T05:00:08.000Z" - }, - "events": [ - { - "uuid": "f4d82502-a63a-4986-99ad-f28729a4726d", - "start": { - "$date": "2021-02-06T04:46:20.000Z" - }, - "end": { - "$date": "2021-02-06T05:00:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b4fd87bb-60bb-4c3e-8c31-b55e2c3e5256", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T04:47:21.000Z" - }, - "end": { - "$date": "2021-02-06T05:00:31.000Z" - }, - "events": [ - { - "uuid": "49614c6f-0281-4618-a206-54576f5064c9", - "start": { - "$date": "2021-02-06T04:47:21.000Z" - }, - "end": { - "$date": "2021-02-06T04:57:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bbd482b3-f797-441d-92b1-449ab7ede003", - "start": { - "$date": "2021-02-06T04:57:21.000Z" - }, - "end": { - "$date": "2021-02-06T04:59:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4217b690-1583-4421-bfd0-c2bdd2e5258a", - "start": { - "$date": "2021-02-06T04:59:21.000Z" - }, - "end": { - "$date": "2021-02-06T05:00:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ceed73c-3994-463c-8496-1c53ccbd734e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T04:58:13.000Z" - }, - "end": { - "$date": "2021-02-06T05:36:23.000Z" - }, - "events": [ - { - "uuid": "c7ebf807-f639-4d9b-904b-d23d5b22af91", - "start": { - "$date": "2021-02-06T04:58:13.000Z" - }, - "end": { - "$date": "2021-02-06T05:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2ac7380-66df-400d-ae7a-5570e5f815f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T05:00:28.000Z" - }, - "end": { - "$date": "2021-02-06T05:02:08.000Z" - }, - "events": [ - { - "uuid": "4987426a-9a75-4f14-8098-6aa68fb49deb", - "start": { - "$date": "2021-02-06T05:00:28.000Z" - }, - "end": { - "$date": "2021-02-06T05:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0b09bd5-5867-42c3-8a0f-bce8cf2576f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T05:51:19.000Z" - }, - "end": { - "$date": "2021-02-06T05:51:23.000Z" - }, - "events": [ - { - "uuid": "df96b7f6-d579-487c-804c-5bc98273b6cf", - "start": { - "$date": "2021-02-06T05:51:19.000Z" - }, - "end": { - "$date": "2021-02-06T05:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b6d61125-041f-4999-954a-31762d7f242c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T05:02:32.000Z" - }, - "end": { - "$date": "2021-02-06T05:52:42.000Z" - }, - "events": [ - { - "uuid": "b8492a6d-b0e1-47a4-b8e9-8abeea8afd25", - "start": { - "$date": "2021-02-06T05:02:32.000Z" - }, - "end": { - "$date": "2021-02-06T05:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dd6aac5-797b-4a41-92d7-44b79a148a4e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T05:14:27.000Z" - }, - "end": { - "$date": "2021-02-06T05:51:17.000Z" - }, - "events": [ - { - "uuid": "4596e0af-c9a5-432d-be80-768f70bc9cc1", - "start": { - "$date": "2021-02-06T05:14:27.000Z" - }, - "end": { - "$date": "2021-02-06T05:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "bffb54c4-012d-4ec0-9db3-c383f1def4e4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T05:44:10.000Z" - }, - "end": { - "$date": "2021-02-06T05:44:15.000Z" - }, - "events": [ - { - "uuid": "6e3a5cb8-4514-4233-8401-c290310ab07f", - "start": { - "$date": "2021-02-06T05:44:10.000Z" - }, - "end": { - "$date": "2021-02-06T05:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "66247376-56f4-4005-bbb7-deb4c78b848b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-06T05:45:59.000Z" - }, - "end": { - "$date": "2021-02-06T07:51:00.000Z" - }, - "events": [ - { - "uuid": "d33b7d73-c1ec-4be0-8abb-bd6faa9a8eb9", - "start": { - "$date": "2021-02-06T05:45:59.000Z" - }, - "end": { - "$date": "2021-02-06T07:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "be4d87ac-f483-47c7-a1a3-a10e650a355f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T05:49:42.000Z" - }, - "end": { - "$date": "2021-02-06T05:51:25.000Z" - }, - "events": [ - { - "uuid": "4644cab8-315b-430f-a148-57a6e90f79dc", - "start": { - "$date": "2021-02-06T05:49:42.000Z" - }, - "end": { - "$date": "2021-02-06T05:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82aa98c9-8346-48ea-9bd8-7d25c2cff35e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T05:51:22.000Z" - }, - "end": { - "$date": "2021-02-06T05:52:43.000Z" - }, - "events": [ - { - "uuid": "90583b76-78b4-4a82-97d6-d74d3aec6f2c", - "start": { - "$date": "2021-02-06T05:51:22.000Z" - }, - "end": { - "$date": "2021-02-06T05:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "64bf94b3-60d2-438d-aed7-d790e9660397", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T05:52:38.000Z" - }, - "end": { - "$date": "2021-02-06T05:52:47.000Z" - }, - "events": [ - { - "uuid": "9ce73faa-0e9a-4634-93e8-e912de2715d0", - "start": { - "$date": "2021-02-06T05:52:38.000Z" - }, - "end": { - "$date": "2021-02-06T05:52:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "ef243272-6755-49d4-83e6-d6798d6324b0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T05:55:08.000Z" - }, - "end": { - "$date": "2021-02-06T06:40:13.000Z" - }, - "events": [ - { - "uuid": "805b8fae-c3ce-498b-8a16-a266a6cffacb", - "start": { - "$date": "2021-02-06T05:55:08.000Z" - }, - "end": { - "$date": "2021-02-06T06:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4063772-f888-415a-a17d-7475e66a9700", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-06T06:03:55.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:10.000Z" - }, - "events": [ - { - "uuid": "3d66c976-f29a-44ef-8af1-f4e8ceecb601", - "start": { - "$date": "2021-02-06T06:03:55.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61513145-ad66-498f-8693-532f282c2444", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T06:03:51.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:06.000Z" - }, - "events": [ - { - "uuid": "246d098c-374a-4fe3-8a0c-0e854a0d1ebb", - "start": { - "$date": "2021-02-06T06:03:51.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "122b3839-2f6a-4a76-b6fc-d8075e203c1c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T06:03:57.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:08.000Z" - }, - "events": [ - { - "uuid": "a6c39514-cfbc-456c-8ca9-a206c647d8fd", - "start": { - "$date": "2021-02-06T06:03:57.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1d3765e-7f81-4802-9f43-8f81339c17a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T06:04:11.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:11.000Z" - }, - "events": [ - { - "uuid": "d6ce488d-f170-4638-90d7-f9941d162452", - "start": { - "$date": "2021-02-06T06:04:11.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2cfd366b-5f45-405c-b2c2-59d1d147b358", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T06:03:56.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:18.000Z" - }, - "events": [ - { - "uuid": "1c8993db-4f17-44b5-9417-4090f5e202e8", - "start": { - "$date": "2021-02-06T06:03:56.000Z" - }, - "end": { - "$date": "2021-02-06T06:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0eb74de1-e3bd-4f32-bf4c-033348489b77", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T06:42:12.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:25.000Z" - }, - "events": [ - { - "uuid": "46c7df69-03a5-46ac-86b0-91cd4a3f4ad2", - "start": { - "$date": "2021-02-06T06:42:12.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2598768f-9d35-4485-a24b-e60d3eb887b9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-06T06:42:16.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:16.000Z" - }, - "events": [ - { - "uuid": "d8903678-a007-4c86-840f-aadbe5ef22fb", - "start": { - "$date": "2021-02-06T06:42:16.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24c02169-bc72-4612-bcbd-f791d82d7bb2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T06:42:31.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:16.000Z" - }, - "events": [ - { - "uuid": "67eb0cda-99c5-41e0-87e2-04489bb39d34", - "start": { - "$date": "2021-02-06T06:42:31.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1aa9bce5-1e68-4d97-b08c-124446f03889", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T06:42:13.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:18.000Z" - }, - "events": [ - { - "uuid": "f32ab320-3427-450f-8c41-ff8012076f42", - "start": { - "$date": "2021-02-06T06:42:13.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "189e7579-e3c8-4d55-b4f4-4ec10a4f6bd7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T06:42:29.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:22.000Z" - }, - "events": [ - { - "uuid": "dcc52da1-7f48-4a33-b62b-7ce09b203c98", - "start": { - "$date": "2021-02-06T06:42:29.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8227b825-eced-4fa5-911e-859614df5361", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T06:42:17.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:17.000Z" - }, - "events": [ - { - "uuid": "cfedf47b-27bf-467d-82b4-9b15833e67a7", - "start": { - "$date": "2021-02-06T06:42:17.000Z" - }, - "end": { - "$date": "2021-02-06T06:55:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0bb741f3-dba9-45b8-9b1e-58d306412ec6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T06:41:09.000Z" - }, - "end": { - "$date": "2021-02-06T08:20:49.000Z" - }, - "events": [ - { - "uuid": "8b8e3735-156c-4f43-bea6-50e4c775010f", - "start": { - "$date": "2021-02-06T06:41:09.000Z" - }, - "end": { - "$date": "2021-02-06T08:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bbae1312-ea2a-4535-9a41-bb389bcc6c71", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T06:43:14.000Z" - }, - "end": { - "$date": "2021-02-06T08:19:47.000Z" - }, - "events": [ - { - "uuid": "2804bbfc-47ed-4e7d-b376-1f696ff5205e", - "start": { - "$date": "2021-02-06T06:43:14.000Z" - }, - "end": { - "$date": "2021-02-06T08:19:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c4afd37-4fbd-4e1c-bc22-f4928dc82788", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T06:57:28.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:13.000Z" - }, - "events": [ - { - "uuid": "fd5d3776-5734-4cd1-bc23-781391ce821e", - "start": { - "$date": "2021-02-06T06:57:28.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e038ddf-736d-4d11-a0d5-08800ed605bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-06T06:57:26.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:11.000Z" - }, - "events": [ - { - "uuid": "fbe785c4-1ee9-4677-893a-9113a9a4eec9", - "start": { - "$date": "2021-02-06T06:57:26.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea2a62a8-75ea-42c2-909d-3edfb2b7f791", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T06:57:47.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:12.000Z" - }, - "events": [ - { - "uuid": "4948eef3-1185-4196-9101-ea672157ea83", - "start": { - "$date": "2021-02-06T06:57:47.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6d52b67-fbb1-4b16-b2fb-bbeff0824d21", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T06:57:43.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:18.000Z" - }, - "events": [ - { - "uuid": "bb94ef97-7a79-4bec-aa19-9ed85cbab82d", - "start": { - "$date": "2021-02-06T06:57:43.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "925d4a8b-4413-4628-af30-c28745852ac5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-06T06:57:40.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:18.000Z" - }, - "events": [ - { - "uuid": "d7d6122d-afa1-4f00-908a-68bd5cb81621", - "start": { - "$date": "2021-02-06T06:57:40.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42ccdd0d-d82c-4566-9dc4-d3f47318353a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T06:57:28.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:19.000Z" - }, - "events": [ - { - "uuid": "36be75bc-fec5-458d-aabb-9b295f635b05", - "start": { - "$date": "2021-02-06T06:57:28.000Z" - }, - "end": { - "$date": "2021-02-06T07:16:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "cc8e1020-89b8-4c40-94ce-b1e7c66e4d68", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-06T07:18:52.000Z" - }, - "end": { - "$date": "2021-02-06T10:36:14.000Z" - }, - "events": [ - { - "uuid": "b95fd32a-2024-4a49-a805-d1e4bf17bd0c", - "start": { - "$date": "2021-02-06T07:18:52.000Z" - }, - "end": { - "$date": "2021-02-06T10:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ab463a1-0acf-47e1-aa9d-7d44a021a56b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T07:56:34.000Z" - }, - "end": { - "$date": "2021-02-06T08:17:20.000Z" - }, - "events": [ - { - "uuid": "6eaec8b7-1034-4712-985d-a62fe2465dad", - "start": { - "$date": "2021-02-06T07:56:34.000Z" - }, - "end": { - "$date": "2021-02-06T08:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9fc86531-f93a-4495-a3a1-bda104a97ef2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-06T08:04:43.000Z" - }, - "end": { - "$date": "2021-02-06T09:00:07.000Z" - }, - "events": [ - { - "uuid": "d9740a98-b6ae-457c-803e-720de8724c11", - "start": { - "$date": "2021-02-06T08:04:43.000Z" - }, - "end": { - "$date": "2021-02-06T09:00:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b0da2d9-0455-439b-a2c4-3b0596115814", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T08:31:42.000Z" - }, - "end": { - "$date": "2021-02-06T09:08:47.000Z" - }, - "events": [ - { - "uuid": "804140b6-7cbf-4c88-a4b4-b59a97de139c", - "start": { - "$date": "2021-02-06T08:31:42.000Z" - }, - "end": { - "$date": "2021-02-06T09:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d8c0994-b4e6-4c19-a92d-db62f04bc1d8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-06T09:14:33.000Z" - }, - "end": { - "$date": "2021-02-06T09:39:16.000Z" - }, - "events": [ - { - "uuid": "e1e1fce1-13ea-4d23-89f8-ed31dc6ab467", - "start": { - "$date": "2021-02-06T09:14:33.000Z" - }, - "end": { - "$date": "2021-02-06T09:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5cf873c-0601-4945-b093-61a1d249a58c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T15:19:11.000Z" - }, - "end": { - "$date": "2021-02-06T15:47:26.000Z" - }, - "events": [ - { - "uuid": "e90f2d40-df29-42d1-b402-14d1f05be8f2", - "start": { - "$date": "2021-02-06T15:19:11.000Z" - }, - "end": { - "$date": "2021-02-06T15:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ef1f003-d06a-4e19-a241-c2ae0b4a0e66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T15:52:30.000Z" - }, - "end": { - "$date": "2021-02-06T16:16:40.000Z" - }, - "events": [ - { - "uuid": "6fb2bc9a-76eb-465a-91c3-c90fa5479ad0", - "start": { - "$date": "2021-02-06T15:52:30.000Z" - }, - "end": { - "$date": "2021-02-06T16:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4a6cbe2e-473e-4d6e-b54a-94d382bd72a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T16:02:26.000Z" - }, - "end": { - "$date": "2021-02-06T16:24:12.000Z" - }, - "events": [ - { - "uuid": "afed7f59-2351-4452-8407-239296da604d", - "start": { - "$date": "2021-02-06T16:02:26.000Z" - }, - "end": { - "$date": "2021-02-06T16:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "381a1e7f-09af-4ecd-9781-b16bfd16f84e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T16:26:32.000Z" - }, - "end": { - "$date": "2021-02-06T16:55:37.000Z" - }, - "events": [ - { - "uuid": "22435539-41d0-41e2-9446-c6293a638e0a", - "start": { - "$date": "2021-02-06T16:26:32.000Z" - }, - "end": { - "$date": "2021-02-06T16:55:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "754aa49d-99e3-43e2-bf88-ce9841f94035", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T16:24:22.000Z" - }, - "end": { - "$date": "2021-02-06T16:59:38.000Z" - }, - "events": [ - { - "uuid": "72ca218f-7e03-4d7f-a15f-58feae71316e", - "start": { - "$date": "2021-02-06T16:24:22.000Z" - }, - "end": { - "$date": "2021-02-06T16:59:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a8517f39-a321-4a2b-9286-9b02fee44af1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-06T17:57:07.000Z" - }, - "end": { - "$date": "2021-02-06T17:57:27.000Z" - }, - "events": [ - { - "uuid": "4942e5e1-227d-4175-92c4-94ec2524c2c4", - "start": { - "$date": "2021-02-06T17:57:07.000Z" - }, - "end": { - "$date": "2021-02-06T17:57:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f9b25ea-dc6d-4688-bb81-456eddf531cc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T17:54:06.000Z" - }, - "end": { - "$date": "2021-02-06T18:47:47.000Z" - }, - "events": [ - { - "uuid": "c4849f78-325d-4599-9192-afd1a189b625", - "start": { - "$date": "2021-02-06T17:54:06.000Z" - }, - "end": { - "$date": "2021-02-06T19:03:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "42398f77-97a7-42bb-bda8-45cc1130d981", - "start": { - "$date": "2021-02-06T19:03:06.000Z" - }, - "end": { - "$date": "2021-02-06T19:33:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a0c70f25-9125-4edd-b563-6f90539ada12", - "start": { - "$date": "2021-02-06T19:33:06.000Z" - }, - "end": { - "$date": "2021-02-06T18:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bb502a1-a8c9-4e7c-a604-b466122a1f78", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T17:04:12.000Z" - }, - "end": { - "$date": "2021-02-06T17:48:56.000Z" - }, - "events": [ - { - "uuid": "76fac9d0-f735-4310-8593-e525ab781e1b", - "start": { - "$date": "2021-02-06T17:04:12.000Z" - }, - "end": { - "$date": "2021-02-06T17:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "08da2b45-36b0-444d-8113-7e26c99a997b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T16:59:58.000Z" - }, - "end": { - "$date": "2021-02-06T17:54:05.000Z" - }, - "events": [ - { - "uuid": "53920303-9a1b-4bf5-8002-d73927f5a3e7", - "start": { - "$date": "2021-02-06T16:59:58.000Z" - }, - "end": { - "$date": "2021-02-06T17:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d4dd3cc-825a-419b-9269-dfa2b5be9364", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T17:57:03.000Z" - }, - "end": { - "$date": "2021-02-06T18:27:58.000Z" - }, - "events": [ - { - "uuid": "8f7c199f-0bb4-462c-970c-a771fc4152f8", - "start": { - "$date": "2021-02-06T17:57:03.000Z" - }, - "end": { - "$date": "2021-02-06T18:27:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e73d4049-463a-440f-945d-cbfe8a9be22c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T17:57:34.000Z" - }, - "end": { - "$date": "2021-02-06T18:27:48.000Z" - }, - "events": [ - { - "uuid": "0f68cc25-0a75-4481-9141-ea6a192d98a2", - "start": { - "$date": "2021-02-06T17:57:34.000Z" - }, - "end": { - "$date": "2021-02-06T18:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "221704df-e204-4994-9430-8827baf40a90", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-06T18:32:04.000Z" - }, - "end": { - "$date": "2021-02-06T18:50:39.000Z" - }, - "events": [ - { - "uuid": "34484254-7e91-4f1d-a8da-5aadab817afa", - "start": { - "$date": "2021-02-06T18:32:04.000Z" - }, - "end": { - "$date": "2021-02-06T18:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "851b9c45-23d9-4c5b-a091-03df8f6eeb60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T18:32:30.000Z" - }, - "end": { - "$date": "2021-02-06T18:50:34.000Z" - }, - "events": [ - { - "uuid": "573d99f3-abaf-46ae-927c-1c4126fdc60c", - "start": { - "$date": "2021-02-06T18:32:30.000Z" - }, - "end": { - "$date": "2021-02-06T18:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8eb19d16-df20-44f2-b73a-96ab864c37ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-06T18:45:15.000Z" - }, - "end": { - "$date": "2021-02-06T19:30:18.000Z" - }, - "events": [ - { - "uuid": "0ff5ce08-179c-4110-905c-33234de5ec4c", - "start": { - "$date": "2021-02-06T18:45:15.000Z" - }, - "end": { - "$date": "2021-02-06T19:30:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93376639-7138-45fe-8cc2-7a3060231ac9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T19:45:07.000Z" - }, - "end": { - "$date": "2021-02-06T20:14:12.000Z" - }, - "events": [ - { - "uuid": "001f2226-4c4e-4c88-98ce-8220b0d01133", - "start": { - "$date": "2021-02-06T19:45:07.000Z" - }, - "end": { - "$date": "2021-02-06T20:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "92905de8-7237-4c63-a1e0-8c58e29e0824", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-06T19:40:34.000Z" - }, - "end": { - "$date": "2021-02-06T20:19:50.000Z" - }, - "events": [ - { - "uuid": "d9e8c0e8-be36-41a4-ab5d-a062aa6b17c1", - "start": { - "$date": "2021-02-06T19:40:34.000Z" - }, - "end": { - "$date": "2021-02-06T20:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2bfd7c6-9fcb-4eea-8247-295e85f664a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T20:20:45.000Z" - }, - "end": { - "$date": "2021-02-06T20:52:34.000Z" - }, - "events": [ - { - "uuid": "20388e90-89ef-472a-accb-727d5750e442", - "start": { - "$date": "2021-02-06T20:20:45.000Z" - }, - "end": { - "$date": "2021-02-06T20:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79001f45-f771-4975-a7ce-124bd6bc5a85", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T20:58:51.000Z" - }, - "end": { - "$date": "2021-02-06T21:33:31.000Z" - }, - "events": [ - { - "uuid": "f970700a-7699-4702-bc7d-800b48b27fe0", - "start": { - "$date": "2021-02-06T20:58:51.000Z" - }, - "end": { - "$date": "2021-02-06T21:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2334e85f-58b2-48fd-90b5-3f6dbd398f76", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-06T21:31:22.000Z" - }, - "end": { - "$date": "2021-02-06T23:13:13.000Z" - }, - "events": [ - { - "uuid": "2aa79260-32ec-4e7b-96ef-477713f182ae", - "start": { - "$date": "2021-02-06T21:31:22.000Z" - }, - "end": { - "$date": "2021-02-06T23:13:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69e4d920-9f74-469f-82e7-5f241147c277", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T21:38:57.000Z" - }, - "end": { - "$date": "2021-02-06T22:10:45.000Z" - }, - "events": [ - { - "uuid": "1dca30a4-0f52-401d-babc-e2f593c7023c", - "start": { - "$date": "2021-02-06T21:38:57.000Z" - }, - "end": { - "$date": "2021-02-06T22:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c68b9c8c-dadf-403f-b121-5cd485678932", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T22:14:59.000Z" - }, - "end": { - "$date": "2021-02-06T22:50:51.000Z" - }, - "events": [ - { - "uuid": "d7a9d68a-63ee-4d21-babf-49e383ff4b50", - "start": { - "$date": "2021-02-06T22:14:59.000Z" - }, - "end": { - "$date": "2021-02-06T22:50:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e0f355a4-854b-473f-afa2-98a0bc20ffd9", - "uuid": "9b279da0-5e82-483f-9a9c-1b03f08e1233", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-06T22:54:57.000Z" - }, - "end": { - "$date": "2021-02-07T01:46:54.000Z" - }, - "events": [ - { - "uuid": "d0317ce3-43c0-409c-9829-7a17933b6ea0", - "start": { - "$date": "2021-02-06T22:54:57.000Z" - }, - "end": { - "$date": "2021-02-06T23:30:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c652ef5e-2c78-4347-a50c-03090bcc5930", - "start": { - "$date": "2021-02-06T23:30:57.000Z" - }, - "end": { - "$date": "2021-02-06T23:40:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5fa274f-d962-4701-ac71-5b2770d5932c", - "start": { - "$date": "2021-02-06T23:40:57.000Z" - }, - "end": { - "$date": "2021-02-07T01:46:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c58926a1-af84-46be-8eb2-4d4343f29db9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-07T00:04:17.000Z" - }, - "end": { - "$date": "2021-02-07T00:24:19.000Z" - }, - "events": [ - { - "uuid": "ad6809e9-aca3-4c6d-bdfb-fb7eb71d901f", - "start": { - "$date": "2021-02-07T00:04:17.000Z" - }, - "end": { - "$date": "2021-02-07T00:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "839b32ef-b8d7-4558-bed3-0180ab71d61f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T00:18:07.000Z" - }, - "end": { - "$date": "2021-02-07T00:20:47.000Z" - }, - "events": [ - { - "uuid": "98621ac6-8cda-4ab2-9142-a323d9e47e9f", - "start": { - "$date": "2021-02-07T00:18:07.000Z" - }, - "end": { - "$date": "2021-02-07T00:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a67599b-2b75-4e8c-9983-79f4164cc88b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T01:46:59.000Z" - }, - "end": { - "$date": "2021-02-07T04:15:48.000Z" - }, - "events": [ - { - "uuid": "31e8e6db-8bea-4f4d-9fab-1bdb4cffd8cc", - "start": { - "$date": "2021-02-07T01:46:59.000Z" - }, - "end": { - "$date": "2021-02-07T02:41:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62e1692d-7bfb-4197-9ea7-274e66551fca", - "start": { - "$date": "2021-02-07T02:41:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:14:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "12e676d6-5142-47ab-884e-2f3a2e2adb0f", - "start": { - "$date": "2021-02-07T03:14:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:16:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "756ca880-5305-445d-a971-1d20077e07df", - "start": { - "$date": "2021-02-07T03:16:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:17:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "997a9e51-404a-41d1-a0e2-3bd3dcf3d330", - "start": { - "$date": "2021-02-07T03:17:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:23:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "07935ac9-a4e5-4795-b4c9-65f2d842ce21", - "start": { - "$date": "2021-02-07T03:23:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:24:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b51e7133-6261-4756-b10c-75d9cdd91ec8", - "start": { - "$date": "2021-02-07T03:24:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:27:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e4228db-d452-4cef-a951-5e39699caa45", - "start": { - "$date": "2021-02-07T03:27:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:36:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "498fa806-9353-447c-a73a-f402fe8c64d2", - "start": { - "$date": "2021-02-07T03:36:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:57:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8ca4ce83-4031-4c4b-a2d2-3a44e63cba24", - "start": { - "$date": "2021-02-07T03:57:59.000Z" - }, - "end": { - "$date": "2021-02-07T03:58:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98827857-7664-4fe8-8c46-4d06d0a865c2", - "start": { - "$date": "2021-02-07T03:58:59.000Z" - }, - "end": { - "$date": "2021-02-07T04:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "df320391-fcfb-4c3c-bbcd-514a7d6a4de2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T02:35:23.000Z" - }, - "end": { - "$date": "2021-02-07T03:47:12.000Z" - }, - "events": [ - { - "uuid": "0d1921c0-6934-4c1a-9a00-5a2320f52f49", - "start": { - "$date": "2021-02-07T02:35:23.000Z" - }, - "end": { - "$date": "2021-02-07T03:47:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "295f5afd-7420-4e6d-b94d-f626f2956016", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T02:57:58.000Z" - }, - "end": { - "$date": "2021-02-07T03:46:56.000Z" - }, - "events": [ - { - "uuid": "147a60fb-d67c-4807-8df9-b5af1844bf9d", - "start": { - "$date": "2021-02-07T02:57:58.000Z" - }, - "end": { - "$date": "2021-02-07T03:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "69d0705a-4344-4e8f-894a-ef40d0eb7d0a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-07T02:46:58.000Z" - }, - "end": { - "$date": "2021-02-07T08:37:33.000Z" - }, - "events": [ - { - "uuid": "edc46f16-f19c-4d74-bf8c-d7335ccebb1d", - "start": { - "$date": "2021-02-07T02:46:58.000Z" - }, - "end": { - "$date": "2021-02-07T08:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9212052f-b287-4cab-b67c-f99781f37b66", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-07T03:01:45.000Z" - }, - "end": { - "$date": "2021-02-07T03:24:28.000Z" - }, - "events": [ - { - "uuid": "6b6deae4-6af8-4ed0-9d47-a24265817a82", - "start": { - "$date": "2021-02-07T03:01:45.000Z" - }, - "end": { - "$date": "2021-02-07T03:24:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "341f7f8f-b37f-489f-a4e0-c59687acfb4c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-07T03:55:09.000Z" - }, - "end": { - "$date": "2021-02-07T04:05:56.000Z" - }, - "events": [ - { - "uuid": "8aa90efc-0160-478a-8751-abeccee3c51b", - "start": { - "$date": "2021-02-07T03:55:09.000Z" - }, - "end": { - "$date": "2021-02-07T04:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9bad576-0dff-4cde-83c0-f7916cfcc2b9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T03:55:22.000Z" - }, - "end": { - "$date": "2021-02-07T06:23:17.000Z" - }, - "events": [ - { - "uuid": "2ca3cc40-a028-4279-abb3-f9cb89f9703b", - "start": { - "$date": "2021-02-07T03:55:22.000Z" - }, - "end": { - "$date": "2021-02-07T06:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "5445b3ea-518e-4148-baac-bd2aaf53112f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T03:59:34.000Z" - }, - "end": { - "$date": "2021-02-07T05:42:23.000Z" - }, - "events": [ - { - "uuid": "9fa2e280-5f2f-405c-b981-0dca88d5d53e", - "start": { - "$date": "2021-02-07T03:59:34.000Z" - }, - "end": { - "$date": "2021-02-07T05:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8140b9e3-ab78-4c79-9c4c-feb2909488b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-07T04:00:34.000Z" - }, - "end": { - "$date": "2021-02-07T04:47:36.000Z" - }, - "events": [ - { - "uuid": "be39fa54-9e51-435a-9ef1-ae708015b515", - "start": { - "$date": "2021-02-07T04:00:34.000Z" - }, - "end": { - "$date": "2021-02-07T04:47:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "16d0d106-1649-456e-a0c4-79d8a63f8f23", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-07T04:06:16.000Z" - }, - "end": { - "$date": "2021-02-07T04:21:17.000Z" - }, - "events": [ - { - "uuid": "9ef8fe48-380b-4e75-9beb-bb06048b001e", - "start": { - "$date": "2021-02-07T04:06:16.000Z" - }, - "end": { - "$date": "2021-02-07T04:21:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ff46002-0338-47e0-a795-d35fc1ee097e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-07T04:34:58.000Z" - }, - "end": { - "$date": "2021-02-07T04:42:19.000Z" - }, - "events": [ - { - "uuid": "7d1827bc-285b-45b4-8f27-199662871f77", - "start": { - "$date": "2021-02-07T04:34:58.000Z" - }, - "end": { - "$date": "2021-02-07T04:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "05f9be56-039b-4f02-a200-b6e9190163d4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-07T04:34:58.000Z" - }, - "end": { - "$date": "2021-02-07T05:56:57.000Z" - }, - "events": [ - { - "uuid": "6689f896-3f04-464b-8155-cd8577b54974", - "start": { - "$date": "2021-02-07T04:34:58.000Z" - }, - "end": { - "$date": "2021-02-07T05:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c46813d2-2936-4d02-b080-a48d41c8750d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-07T04:50:11.000Z" - }, - "end": { - "$date": "2021-02-07T06:04:52.000Z" - }, - "events": [ - { - "uuid": "fd9b63c1-5e47-4d9d-9919-7f3f7ad9f6fd", - "start": { - "$date": "2021-02-07T04:50:11.000Z" - }, - "end": { - "$date": "2021-02-07T06:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "459a6734-487b-41e0-9026-a52d83915977", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-07T05:33:31.000Z" - }, - "end": { - "$date": "2021-02-07T05:54:16.000Z" - }, - "events": [ - { - "uuid": "7294916a-2bd3-43a4-a1a7-8cc32e944061", - "start": { - "$date": "2021-02-07T05:33:31.000Z" - }, - "end": { - "$date": "2021-02-07T05:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c924902f-33f4-4c51-8c16-b436f4a11948", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-07T05:32:12.000Z" - }, - "end": { - "$date": "2021-02-07T07:22:27.000Z" - }, - "events": [ - { - "uuid": "62b14f4c-558c-4b3e-a283-9e6e6af3379e", - "start": { - "$date": "2021-02-07T05:32:12.000Z" - }, - "end": { - "$date": "2021-02-07T07:22:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e05f174a-7b8d-4ea4-8dcf-ae8b2d6c4e40", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-07T05:55:07.000Z" - }, - "end": { - "$date": "2021-02-07T06:03:24.000Z" - }, - "events": [ - { - "uuid": "a07ba253-3088-440a-a385-023737554d29", - "start": { - "$date": "2021-02-07T05:55:07.000Z" - }, - "end": { - "$date": "2021-02-07T06:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f2535e00-ecc9-4550-97aa-e9587f3aee1b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-07T05:57:28.000Z" - }, - "end": { - "$date": "2021-02-07T06:25:39.000Z" - }, - "events": [ - { - "uuid": "b1758f1f-8096-4835-8bea-842c71012c11", - "start": { - "$date": "2021-02-07T05:57:28.000Z" - }, - "end": { - "$date": "2021-02-07T06:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "cdfa4eaa-027b-432a-98b0-f189a8ec232e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-07T06:26:45.000Z" - }, - "end": { - "$date": "2021-02-07T07:14:28.000Z" - }, - "events": [ - { - "uuid": "03428325-e2e8-45dd-b304-8a6e067274a1", - "start": { - "$date": "2021-02-07T06:26:45.000Z" - }, - "end": { - "$date": "2021-02-07T07:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e34f649-c219-4266-ba3f-ef6bf2df51b9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T06:41:02.000Z" - }, - "end": { - "$date": "2021-02-07T06:54:08.000Z" - }, - "events": [ - { - "uuid": "df0ad044-62a7-434e-a56d-21f48436d074", - "start": { - "$date": "2021-02-07T06:41:02.000Z" - }, - "end": { - "$date": "2021-02-07T06:54:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "83a16378-dc56-4d0d-b12d-42a145bc55b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T06:34:59.000Z" - }, - "end": { - "$date": "2021-02-07T07:14:27.000Z" - }, - "events": [ - { - "uuid": "8925795d-b054-4f70-8066-455c10e3386d", - "start": { - "$date": "2021-02-07T06:34:59.000Z" - }, - "end": { - "$date": "2021-02-07T07:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "3e3bf5a0-a596-4f80-9cb7-c255d89102be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T06:41:34.000Z" - }, - "end": { - "$date": "2021-02-07T07:14:35.000Z" - }, - "events": [ - { - "uuid": "9e18369a-5b0e-4a23-b3a6-3ca6cbb3a87a", - "start": { - "$date": "2021-02-07T06:41:34.000Z" - }, - "end": { - "$date": "2021-02-07T07:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "077a8ee5-6c64-470a-8b44-14e82aa8de66", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-07T06:51:47.000Z" - }, - "end": { - "$date": "2021-02-07T07:30:43.000Z" - }, - "events": [ - { - "uuid": "8fdf5f54-feeb-4db6-9681-558a1f7d09b4", - "start": { - "$date": "2021-02-07T06:51:47.000Z" - }, - "end": { - "$date": "2021-02-07T07:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "229c00c7-20b7-49b1-82b4-ddbd0c39e0a9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T06:55:53.000Z" - }, - "end": { - "$date": "2021-02-07T07:12:49.000Z" - }, - "events": [ - { - "uuid": "9da76241-068b-4b7f-a306-d8c7f5dfafff", - "start": { - "$date": "2021-02-07T06:55:53.000Z" - }, - "end": { - "$date": "2021-02-07T07:12:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "074356de-ce50-4dec-8707-b3c09462defe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T07:16:10.000Z" - }, - "end": { - "$date": "2021-02-07T07:34:16.000Z" - }, - "events": [ - { - "uuid": "9d85a379-332e-40e6-9bc1-37ef69be228d", - "start": { - "$date": "2021-02-07T07:16:10.000Z" - }, - "end": { - "$date": "2021-02-07T07:34:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "e33cf3cc-095d-45f3-a911-f6ed6ca60f28", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-07T07:14:39.000Z" - }, - "end": { - "$date": "2021-02-07T08:13:35.000Z" - }, - "events": [ - { - "uuid": "1e224e05-bcb3-48af-bf83-d4fee46bad8c", - "start": { - "$date": "2021-02-07T07:14:39.000Z" - }, - "end": { - "$date": "2021-02-07T08:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "49975b0f-ac18-468d-844c-805ecc93b974", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T07:14:46.000Z" - }, - "end": { - "$date": "2021-02-07T08:13:31.000Z" - }, - "events": [ - { - "uuid": "4332e13b-43fc-45a5-84f7-2c366481b35c", - "start": { - "$date": "2021-02-07T07:14:46.000Z" - }, - "end": { - "$date": "2021-02-07T08:13:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "a152a4ef-d4db-4023-8534-2d544d71d530", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T07:17:53.000Z" - }, - "end": { - "$date": "2021-02-07T08:13:51.000Z" - }, - "events": [ - { - "uuid": "5a701936-0db7-4ef3-899a-b4f874095e69", - "start": { - "$date": "2021-02-07T07:17:53.000Z" - }, - "end": { - "$date": "2021-02-07T08:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dea446f0-0ade-47d5-80c4-a200d9366150", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T07:36:06.000Z" - }, - "end": { - "$date": "2021-02-07T07:54:17.000Z" - }, - "events": [ - { - "uuid": "56e8587e-c1a8-4ec7-8145-e7a30ad27db4", - "start": { - "$date": "2021-02-07T07:36:06.000Z" - }, - "end": { - "$date": "2021-02-07T07:54:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "3041362e-3a78-43b3-a73a-f0a1b4809fb5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-07T07:34:53.000Z" - }, - "end": { - "$date": "2021-02-07T11:02:47.000Z" - }, - "events": [ - { - "uuid": "af9de0d0-3f3c-4da2-b981-b88f9a3750cd", - "start": { - "$date": "2021-02-07T07:34:53.000Z" - }, - "end": { - "$date": "2021-02-07T11:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ffc9bc2-9c6c-4086-bc65-cb3186eeb1ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T08:03:43.000Z" - }, - "end": { - "$date": "2021-02-07T08:37:11.000Z" - }, - "events": [ - { - "uuid": "585efb01-57be-4363-a180-32e97f3b66c1", - "start": { - "$date": "2021-02-07T08:03:43.000Z" - }, - "end": { - "$date": "2021-02-07T08:37:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bcf2d2c4-fb41-4acb-9b64-6e6ecf67d0ec", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-07T08:12:02.000Z" - }, - "end": { - "$date": "2021-02-07T08:14:07.000Z" - }, - "events": [ - { - "uuid": "c945de2c-74ba-45a1-ae27-e0915aa2dfab", - "start": { - "$date": "2021-02-07T08:12:02.000Z" - }, - "end": { - "$date": "2021-02-07T08:14:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "173723be-a916-4fa4-b87b-af0c60b880ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-07T08:14:22.000Z" - }, - "end": { - "$date": "2021-02-07T11:03:01.000Z" - }, - "events": [ - { - "uuid": "c60d3846-e450-4c75-924c-09267c47c6d4", - "start": { - "$date": "2021-02-07T08:14:22.000Z" - }, - "end": { - "$date": "2021-02-07T11:03:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f6016a6e-0ea1-4a3a-a638-7f12da7576ae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T08:17:06.000Z" - }, - "end": { - "$date": "2021-02-07T09:23:36.000Z" - }, - "events": [ - { - "uuid": "5b3f2e15-7bd0-412d-a42e-c733b04273f5", - "start": { - "$date": "2021-02-07T08:17:06.000Z" - }, - "end": { - "$date": "2021-02-07T09:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55aed70f-1d53-44d3-bbf7-e9f37ebeeb12", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T08:38:32.000Z" - }, - "end": { - "$date": "2021-02-07T09:59:06.000Z" - }, - "events": [ - { - "uuid": "17141641-f765-4228-8886-512a26d66974", - "start": { - "$date": "2021-02-07T08:38:32.000Z" - }, - "end": { - "$date": "2021-02-07T09:59:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d97a68c-af2e-46c7-892c-53f7c35aab6c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-07T09:45:56.000Z" - }, - "end": { - "$date": "2021-02-07T10:12:34.000Z" - }, - "events": [ - { - "uuid": "d2182989-cea4-4e29-98ff-f6bdac656be0", - "start": { - "$date": "2021-02-07T09:45:56.000Z" - }, - "end": { - "$date": "2021-02-07T10:12:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7e9084e9-949d-4da7-82c9-e0d50e60014c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-07T11:02:57.000Z" - }, - "end": { - "$date": "2021-02-07T11:05:43.000Z" - }, - "events": [ - { - "uuid": "714b340e-c3aa-4d2d-aac7-037bf0ef6624", - "start": { - "$date": "2021-02-07T11:02:57.000Z" - }, - "end": { - "$date": "2021-02-07T11:05:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bfd6d344-0e4f-4756-a0eb-d62de276cdc6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T15:29:29.000Z" - }, - "end": { - "$date": "2021-02-07T16:05:20.000Z" - }, - "events": [ - { - "uuid": "2c672699-2b65-47eb-ba37-3df1d35ff1ef", - "start": { - "$date": "2021-02-07T15:29:29.000Z" - }, - "end": { - "$date": "2021-02-07T16:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "73fdbde5-8116-44e7-a449-ecea08e91636", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T16:05:35.000Z" - }, - "end": { - "$date": "2021-02-07T16:41:57.000Z" - }, - "events": [ - { - "uuid": "1b0853be-60cc-4055-910d-5f1b503fc67b", - "start": { - "$date": "2021-02-07T16:05:35.000Z" - }, - "end": { - "$date": "2021-02-07T16:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0db65ca5-e0e5-44dc-89eb-87e0a69713cf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T16:42:12.000Z" - }, - "end": { - "$date": "2021-02-07T18:03:08.000Z" - }, - "events": [ - { - "uuid": "dbf7bd00-cba5-453d-a7e7-014e90929660", - "start": { - "$date": "2021-02-07T16:42:12.000Z" - }, - "end": { - "$date": "2021-02-07T18:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "ffec72aa-0eb8-4d68-95f7-7bac8b1d7762", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-07T17:36:41.000Z" - }, - "end": { - "$date": "2021-02-07T20:36:37.000Z" - }, - "events": [ - { - "uuid": "978e9294-e077-4abe-a772-7773a3d6d623", - "start": { - "$date": "2021-02-07T17:36:41.000Z" - }, - "end": { - "$date": "2021-02-07T18:20:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a3da459-7ea5-4797-b755-beff161521a7", - "start": { - "$date": "2021-02-07T18:20:41.000Z" - }, - "end": { - "$date": "2021-02-07T19:07:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b243f68f-9bc1-42ad-9836-dd3580a6b770", - "start": { - "$date": "2021-02-07T19:07:41.000Z" - }, - "end": { - "$date": "2021-02-07T20:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6cdfa833-802b-467b-a924-fd9bfc189437", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-07T17:59:43.000Z" - }, - "end": { - "$date": "2021-02-07T19:11:30.000Z" - }, - "events": [ - { - "uuid": "976b9a07-eb53-4dcf-ab47-5a3d7f793df9", - "start": { - "$date": "2021-02-07T17:59:43.000Z" - }, - "end": { - "$date": "2021-02-07T19:11:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b90298e0-7af6-41a5-943a-1740121ea8a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T18:34:50.000Z" - }, - "end": { - "$date": "2021-02-07T19:52:46.000Z" - }, - "events": [ - { - "uuid": "fb0f2f15-0009-4ef7-bb02-4a16e907d6ba", - "start": { - "$date": "2021-02-07T18:34:50.000Z" - }, - "end": { - "$date": "2021-02-07T19:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe3a1365-6ecb-4b6f-953e-a196fab58417", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T18:48:21.000Z" - }, - "end": { - "$date": "2021-02-07T19:15:53.000Z" - }, - "events": [ - { - "uuid": "ed6b2fa9-8295-4828-9517-d887d9606742", - "start": { - "$date": "2021-02-07T18:48:21.000Z" - }, - "end": { - "$date": "2021-02-07T19:15:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6a2ec13a-560b-4a69-b747-abd543dff731", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-07T18:43:31.000Z" - }, - "end": { - "$date": "2021-02-07T22:57:08.000Z" - }, - "events": [ - { - "uuid": "7853ebdf-c268-4c11-8601-d45ced3d0a68", - "start": { - "$date": "2021-02-07T18:43:31.000Z" - }, - "end": { - "$date": "2021-02-07T21:11:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b18b8087-915d-4ca2-9578-1c55442b8c63", - "start": { - "$date": "2021-02-07T21:11:31.000Z" - }, - "end": { - "$date": "2021-02-07T21:43:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5d2be80f-e5ea-41bd-9eea-a2c03c0d6193", - "start": { - "$date": "2021-02-07T21:43:31.000Z" - }, - "end": { - "$date": "2021-02-07T22:06:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3c6a9c8f-d400-497f-ac3c-448a64477faa", - "start": { - "$date": "2021-02-07T22:06:31.000Z" - }, - "end": { - "$date": "2021-02-07T22:09:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "592cf74a-c3b7-4c73-b0b1-c1fed687e578", - "start": { - "$date": "2021-02-07T22:09:31.000Z" - }, - "end": { - "$date": "2021-02-07T22:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bd23da0-a196-47ec-abc3-27280f78a0ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T19:21:35.000Z" - }, - "end": { - "$date": "2021-02-07T19:48:13.000Z" - }, - "events": [ - { - "uuid": "503becc8-e664-4a7d-964e-26b1e9a18cbd", - "start": { - "$date": "2021-02-07T19:21:35.000Z" - }, - "end": { - "$date": "2021-02-07T19:48:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7daa3ef8-6933-41b6-b572-b14e58ec54de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T19:53:29.000Z" - }, - "end": { - "$date": "2021-02-07T20:25:51.000Z" - }, - "events": [ - { - "uuid": "21160c83-8a1d-47c6-80e5-d9d6cc366c2d", - "start": { - "$date": "2021-02-07T19:53:29.000Z" - }, - "end": { - "$date": "2021-02-07T20:25:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "59ec3af6-bed0-4665-a97e-baafc251b965", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-07T20:02:57.000Z" - }, - "end": { - "$date": "2021-02-07T20:10:42.000Z" - }, - "events": [ - { - "uuid": "fadce399-24de-41b6-b2d0-4e179d6cc1dd", - "start": { - "$date": "2021-02-07T20:02:57.000Z" - }, - "end": { - "$date": "2021-02-07T20:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "82d4b35e-9728-4439-8a37-1ddade57992a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-07T20:05:34.000Z" - }, - "end": { - "$date": "2021-02-07T21:11:31.000Z" - }, - "events": [ - { - "uuid": "f59ded8a-fdbc-4d6d-96e4-8e4a934a6837", - "start": { - "$date": "2021-02-07T20:05:34.000Z" - }, - "end": { - "$date": "2021-02-07T21:11:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7a3b4de-ef8b-4c74-97e6-6d6541b0f8a8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T20:31:18.000Z" - }, - "end": { - "$date": "2021-02-07T20:59:15.000Z" - }, - "events": [ - { - "uuid": "98a4eca4-f894-4d00-8d84-6d4c3516a14e", - "start": { - "$date": "2021-02-07T20:31:18.000Z" - }, - "end": { - "$date": "2021-02-07T20:59:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9b19a5a2-8040-4ed7-9bca-4e090ee188ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-07T20:42:05.000Z" - }, - "end": { - "$date": "2021-02-07T21:56:39.000Z" - }, - "events": [ - { - "uuid": "316b96e1-3548-4012-8acd-e0df07c4115c", - "start": { - "$date": "2021-02-07T20:42:05.000Z" - }, - "end": { - "$date": "2021-02-07T21:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15ba8770-7e68-44ed-93e6-300466fd6447", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T21:11:34.000Z" - }, - "end": { - "$date": "2021-02-07T21:46:27.000Z" - }, - "events": [ - { - "uuid": "7a6db1b1-e245-410d-b6c2-8bd05a60fbc7", - "start": { - "$date": "2021-02-07T21:11:34.000Z" - }, - "end": { - "$date": "2021-02-07T21:46:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "27142df5-3f1b-4d9a-ba8f-aba72993f19b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-07T21:10:25.000Z" - }, - "end": { - "$date": "2021-02-07T21:55:56.000Z" - }, - "events": [ - { - "uuid": "8ae6c3df-3f28-4974-bd7b-e363da8909bf", - "start": { - "$date": "2021-02-07T21:10:25.000Z" - }, - "end": { - "$date": "2021-02-07T21:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74a8fa9a-328f-4c13-a686-80a739600616", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T21:50:43.000Z" - }, - "end": { - "$date": "2021-02-07T22:21:17.000Z" - }, - "events": [ - { - "uuid": "c723eb24-0eff-48e3-9a21-755a1c11b392", - "start": { - "$date": "2021-02-07T21:50:43.000Z" - }, - "end": { - "$date": "2021-02-07T22:21:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c907dd6-9cf9-47aa-897a-d72b74513837", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T22:33:01.000Z" - }, - "end": { - "$date": "2021-02-07T23:16:52.000Z" - }, - "events": [ - { - "uuid": "58725e25-3ca1-4230-b83a-25738680215d", - "start": { - "$date": "2021-02-07T22:33:01.000Z" - }, - "end": { - "$date": "2021-02-07T23:16:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5551fef7-5a2a-498f-b605-20aeaea7f068", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-07T23:59:33.000Z" - }, - "end": { - "$date": "2021-02-07T23:59:52.000Z" - }, - "events": [ - { - "uuid": "624b6738-81f3-42a5-9e29-a01321d7c55e", - "start": { - "$date": "2021-02-07T23:59:33.000Z" - }, - "end": { - "$date": "2021-02-07T23:59:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "02ee25b9-c9d6-4218-ad54-76ee02a5750c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-07T23:51:22.000Z" - }, - "end": { - "$date": "2021-02-08T00:19:59.000Z" - }, - "events": [ - { - "uuid": "4bf64395-1db1-488e-8b10-f74f377876a1", - "start": { - "$date": "2021-02-07T23:51:22.000Z" - }, - "end": { - "$date": "2021-02-08T00:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8898d1f3-6e35-491a-b41c-47332b6debbc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-07T23:57:30.000Z" - }, - "end": { - "$date": "2021-02-08T00:46:02.000Z" - }, - "events": [ - { - "uuid": "07ac4d2e-77e4-43d2-8a95-6b3d80315e19", - "start": { - "$date": "2021-02-07T23:57:30.000Z" - }, - "end": { - "$date": "2021-02-08T00:46:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0613cdb8-16b5-43cc-8c32-9b35e94b5afc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-08T00:19:31.000Z" - }, - "end": { - "$date": "2021-02-08T02:07:39.000Z" - }, - "events": [ - { - "uuid": "28722b17-a85d-40cf-a2c3-37ee7fc936cb", - "start": { - "$date": "2021-02-08T00:19:31.000Z" - }, - "end": { - "$date": "2021-02-08T02:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "f98c8e42-4ead-4e4a-938b-31d0016ee8cc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-08T00:42:09.000Z" - }, - "end": { - "$date": "2021-02-08T01:30:39.000Z" - }, - "events": [ - { - "uuid": "c7a74e5d-d8b1-46d5-8f86-4b01d066ffe9", - "start": { - "$date": "2021-02-08T00:42:09.000Z" - }, - "end": { - "$date": "2021-02-08T01:30:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b3b59996-6740-4571-bb18-08a93feb653c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-08T01:23:44.000Z" - }, - "end": { - "$date": "2021-02-08T01:53:31.000Z" - }, - "events": [ - { - "uuid": "903827cf-1687-48ab-a2cf-55dba7311700", - "start": { - "$date": "2021-02-08T01:23:44.000Z" - }, - "end": { - "$date": "2021-02-08T01:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "538c5c90-1794-4599-b36c-216cf00ad619", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-08T01:35:06.000Z" - }, - "end": { - "$date": "2021-02-08T02:25:05.000Z" - }, - "events": [ - { - "uuid": "151521b3-24a1-4308-9c31-239862080339", - "start": { - "$date": "2021-02-08T01:35:06.000Z" - }, - "end": { - "$date": "2021-02-08T02:25:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "e5ec2afd-9f6a-4878-ab48-c7fc0acf1ba6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-08T01:41:30.000Z" - }, - "end": { - "$date": "2021-02-08T03:15:06.000Z" - }, - "events": [ - { - "uuid": "ad18fb90-c74b-4821-91bb-7cf05442eefd", - "start": { - "$date": "2021-02-08T01:41:30.000Z" - }, - "end": { - "$date": "2021-02-08T02:51:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b448ccfe-74cb-4c5b-b5ef-6ee27d97726f", - "start": { - "$date": "2021-02-08T02:51:30.000Z" - }, - "end": { - "$date": "2021-02-08T03:13:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8ef5055-cb4f-4fcc-8bd0-90c538939220", - "start": { - "$date": "2021-02-08T03:13:30.000Z" - }, - "end": { - "$date": "2021-02-08T03:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd504afa-477e-4fd2-ba9d-191eddded252", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-08T02:33:14.000Z" - }, - "end": { - "$date": "2021-02-08T03:02:49.000Z" - }, - "events": [ - { - "uuid": "8319a3ef-78d4-451f-a7f2-6a93fd1e08fe", - "start": { - "$date": "2021-02-08T02:33:14.000Z" - }, - "end": { - "$date": "2021-02-08T03:02:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e99bcd2e-edb7-40d9-975b-5d0b8f38472f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-08T02:29:55.000Z" - }, - "end": { - "$date": "2021-02-08T02:54:14.000Z" - }, - "events": [ - { - "uuid": "a13dc848-64bf-452d-85f9-f2e988d92fd2", - "start": { - "$date": "2021-02-08T02:29:55.000Z" - }, - "end": { - "$date": "2021-02-08T02:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "375540e1-bfce-4824-a05d-da813c734394", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-08T02:43:01.000Z" - }, - "end": { - "$date": "2021-02-08T03:42:02.000Z" - }, - "events": [ - { - "uuid": "b410751b-e7ef-4af4-aa2a-a989f3c3c7f5", - "start": { - "$date": "2021-02-08T02:43:01.000Z" - }, - "end": { - "$date": "2021-02-08T03:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "595548cf-d50a-400d-8fb4-c44cbc9b8a44", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-08T02:56:44.000Z" - }, - "end": { - "$date": "2021-02-08T04:11:16.000Z" - }, - "events": [ - { - "uuid": "c4a273f1-a6cf-45f1-acfd-b50c1a28f0e8", - "start": { - "$date": "2021-02-08T02:56:44.000Z" - }, - "end": { - "$date": "2021-02-08T04:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36ca2461-05fa-4743-87f5-a8d8595f9a40", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-08T02:59:06.000Z" - }, - "end": { - "$date": "2021-02-08T04:12:39.000Z" - }, - "events": [ - { - "uuid": "e17a3d1f-b98b-4e32-b4be-e4788bd405ad", - "start": { - "$date": "2021-02-08T02:59:06.000Z" - }, - "end": { - "$date": "2021-02-08T04:12:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df9f0847-7168-46e5-b1e9-0d34e9f7843b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-08T03:35:51.000Z" - }, - "end": { - "$date": "2021-02-08T04:12:56.000Z" - }, - "events": [ - { - "uuid": "5ceacd9a-7788-4310-ad83-90806f413b17", - "start": { - "$date": "2021-02-08T03:35:51.000Z" - }, - "end": { - "$date": "2021-02-08T04:12:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "de6924c5-c8d6-43e8-9123-b390048d6da3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-08T03:19:39.000Z" - }, - "end": { - "$date": "2021-02-08T03:43:01.000Z" - }, - "events": [ - { - "uuid": "54d9b6f8-473e-4fb1-ba7c-5827dc9525ad", - "start": { - "$date": "2021-02-08T03:19:39.000Z" - }, - "end": { - "$date": "2021-02-08T03:43:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9c9f8816-f602-48ba-9963-ccef0860e33b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-08T03:29:44.000Z" - }, - "end": { - "$date": "2021-02-08T04:19:38.000Z" - }, - "events": [ - { - "uuid": "7bed94aa-c312-4f80-a9bf-62593eedea93", - "start": { - "$date": "2021-02-08T03:29:44.000Z" - }, - "end": { - "$date": "2021-02-08T04:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "c0ace955-230a-4901-b00c-97fed373ba63", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-08T03:55:34.000Z" - }, - "end": { - "$date": "2021-02-08T05:25:30.000Z" - }, - "events": [ - { - "uuid": "9e0692b0-0a59-4b82-aae7-5dfa1d4c3e9e", - "start": { - "$date": "2021-02-08T03:55:34.000Z" - }, - "end": { - "$date": "2021-02-08T05:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef610e17-ac3e-47dd-a3c7-531ae6289acc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-08T04:06:45.000Z" - }, - "end": { - "$date": "2021-02-08T04:29:47.000Z" - }, - "events": [ - { - "uuid": "3c47e4a3-2e70-433b-8e89-0b16ab5eb00f", - "start": { - "$date": "2021-02-08T04:06:45.000Z" - }, - "end": { - "$date": "2021-02-08T04:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "58655a9f-4b1b-4548-a79e-9091c0c5f3b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-08T04:09:19.000Z" - }, - "end": { - "$date": "2021-02-08T04:54:36.000Z" - }, - "events": [ - { - "uuid": "5404d972-4ffc-4f4e-bd43-11c8c2a2941a", - "start": { - "$date": "2021-02-08T04:09:19.000Z" - }, - "end": { - "$date": "2021-02-08T04:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "81d8ffd3-9f61-4f90-8769-6f854c9ab1bd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-08T04:12:21.000Z" - }, - "end": { - "$date": "2021-02-08T04:23:04.000Z" - }, - "events": [ - { - "uuid": "fa431b02-980f-4863-88bb-4ae3424a62b3", - "start": { - "$date": "2021-02-08T04:12:21.000Z" - }, - "end": { - "$date": "2021-02-08T04:23:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f505fb2-6425-4a31-b094-f2ad7d4ca794", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-08T04:19:07.000Z" - }, - "end": { - "$date": "2021-02-08T04:50:14.000Z" - }, - "events": [ - { - "uuid": "90d4fe1f-b224-4a37-b196-f2e47f7d1064", - "start": { - "$date": "2021-02-08T04:19:07.000Z" - }, - "end": { - "$date": "2021-02-08T04:50:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a85e0ce-4f32-476d-8ee5-070bc4bc6402", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-08T04:34:20.000Z" - }, - "end": { - "$date": "2021-02-08T04:59:18.000Z" - }, - "events": [ - { - "uuid": "448fb697-0528-423d-acb5-9b31d081a00e", - "start": { - "$date": "2021-02-08T04:34:20.000Z" - }, - "end": { - "$date": "2021-02-08T04:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7d7797d1-b398-4a60-88ef-5928ab3fcea7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-08T04:40:16.000Z" - }, - "end": { - "$date": "2021-02-08T05:07:07.000Z" - }, - "events": [ - { - "uuid": "eaf9b22c-dcbd-4052-ac55-60f719d3da1a", - "start": { - "$date": "2021-02-08T04:40:16.000Z" - }, - "end": { - "$date": "2021-02-08T05:07:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "48a86d9f-a452-4ea5-b551-42d0e07d6195", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-08T04:57:16.000Z" - }, - "end": { - "$date": "2021-02-08T07:31:39.000Z" - }, - "events": [ - { - "uuid": "cccc8044-7bcd-40a1-81d2-594ab90621de", - "start": { - "$date": "2021-02-08T04:57:16.000Z" - }, - "end": { - "$date": "2021-02-08T07:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1349a5d-55c5-4b84-bb0c-49d83e9cd490", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-08T05:04:11.000Z" - }, - "end": { - "$date": "2021-02-08T05:38:29.000Z" - }, - "events": [ - { - "uuid": "6c5905a3-487f-4618-8dbf-5caa8096e8e8", - "start": { - "$date": "2021-02-08T05:04:11.000Z" - }, - "end": { - "$date": "2021-02-08T05:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5798263-a617-42ab-958c-05243f410e4e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-08T05:19:54.000Z" - }, - "end": { - "$date": "2021-02-08T05:47:25.000Z" - }, - "events": [ - { - "uuid": "49eaaa73-8816-455b-9bc2-1c51d268bcc6", - "start": { - "$date": "2021-02-08T05:19:54.000Z" - }, - "end": { - "$date": "2021-02-08T05:47:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fd83adbb-1416-4af6-bd6d-4705bca48f82", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-08T05:27:18.000Z" - }, - "end": { - "$date": "2021-02-08T06:03:04.000Z" - }, - "events": [ - { - "uuid": "c6eb83a3-dfb8-4b0f-8824-e71f00e53e18", - "start": { - "$date": "2021-02-08T05:27:18.000Z" - }, - "end": { - "$date": "2021-02-08T06:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25748faf-c8f9-414e-bae6-643adc384961", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-08T05:45:38.000Z" - }, - "end": { - "$date": "2021-02-08T06:10:15.000Z" - }, - "events": [ - { - "uuid": "0b3c2e2c-f967-46bf-9374-78913ec84465", - "start": { - "$date": "2021-02-08T05:45:38.000Z" - }, - "end": { - "$date": "2021-02-08T06:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d5f7eaaf-2817-4f83-ad25-52f63186ba5d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-08T16:20:47.000Z" - }, - "end": { - "$date": "2021-02-08T17:02:45.000Z" - }, - "events": [ - { - "uuid": "aff5d6ee-51dd-46ad-b77a-d7c0c27ae047", - "start": { - "$date": "2021-02-08T16:20:47.000Z" - }, - "end": { - "$date": "2021-02-08T17:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "89fe9c70-a4f1-482b-a542-f0eb4da52aca", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-08T16:24:44.000Z" - }, - "end": { - "$date": "2021-02-08T23:37:25.000Z" - }, - "events": [ - { - "uuid": "ed37dd21-4370-41f2-afd2-e7a93cab0e21", - "start": { - "$date": "2021-02-08T16:24:44.000Z" - }, - "end": { - "$date": "2021-02-08T23:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c216ac61-5d18-4e4e-b9fc-6c607cf6357f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-08T18:12:38.000Z" - }, - "end": { - "$date": "2021-02-08T18:33:08.000Z" - }, - "events": [ - { - "uuid": "2482675c-982e-42f2-bf88-ab6932cd59b9", - "start": { - "$date": "2021-02-08T18:12:38.000Z" - }, - "end": { - "$date": "2021-02-08T18:33:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e09f4d0-b9b9-4c94-b839-fee2cc658cb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-08T18:36:13.000Z" - }, - "end": { - "$date": "2021-02-08T18:58:08.000Z" - }, - "events": [ - { - "uuid": "0364fca9-48df-4bef-a2c0-b43ba7d7d47a", - "start": { - "$date": "2021-02-08T18:36:13.000Z" - }, - "end": { - "$date": "2021-02-08T18:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "496356ad-5d94-42e1-b2ed-ec56e6af449b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-08T22:28:43.000Z" - }, - "end": { - "$date": "2021-02-08T22:44:06.000Z" - }, - "events": [ - { - "uuid": "4bfa58b4-e8bf-4de8-87b7-b22573198afa", - "start": { - "$date": "2021-02-08T22:28:43.000Z" - }, - "end": { - "$date": "2021-02-08T22:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "48536c4d-8e42-4ccc-8694-53e4cdbcf9ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-08T23:32:19.000Z" - }, - "end": { - "$date": "2021-02-08T23:50:45.000Z" - }, - "events": [ - { - "uuid": "bb4d009f-11ec-47dd-ae97-ee03ff723309", - "start": { - "$date": "2021-02-08T23:32:19.000Z" - }, - "end": { - "$date": "2021-02-08T23:50:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "53fa47cf-9f54-4285-b527-3f5b51863a13", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-08T23:38:30.000Z" - }, - "end": { - "$date": "2021-02-09T00:46:20.000Z" - }, - "events": [ - { - "uuid": "1fb372a4-a1d1-489e-9f00-633f53e24e75", - "start": { - "$date": "2021-02-08T23:38:30.000Z" - }, - "end": { - "$date": "2021-02-09T00:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5a43b012-f52a-41a2-a34b-c12d54e060e3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-09T01:26:20.000Z" - }, - "end": { - "$date": "2021-02-09T01:37:48.000Z" - }, - "events": [ - { - "uuid": "7bb2257c-b508-441d-9149-a442a3fc3de7", - "start": { - "$date": "2021-02-09T01:26:20.000Z" - }, - "end": { - "$date": "2021-02-09T01:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2595fb92-9723-4ddc-b5e9-0126e813c8ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-09T01:40:44.000Z" - }, - "end": { - "$date": "2021-02-09T03:09:11.000Z" - }, - "events": [ - { - "uuid": "6c6be081-476e-45d7-8a12-b3ab056bd025", - "start": { - "$date": "2021-02-09T01:40:44.000Z" - }, - "end": { - "$date": "2021-02-09T03:09:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2389870-d832-4898-9114-fc579a466091", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-09T02:03:09.000Z" - }, - "end": { - "$date": "2021-02-09T02:28:50.000Z" - }, - "events": [ - { - "uuid": "056d3aa0-1c15-4a2e-8316-07f3c0cdcfbb", - "start": { - "$date": "2021-02-09T02:03:09.000Z" - }, - "end": { - "$date": "2021-02-09T02:28:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ffcc7ca-e9f3-4692-b3ff-70886f6270d2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-09T02:32:55.000Z" - }, - "end": { - "$date": "2021-02-09T03:10:22.000Z" - }, - "events": [ - { - "uuid": "c569a85d-a119-4090-ab79-dac02998de9e", - "start": { - "$date": "2021-02-09T02:32:55.000Z" - }, - "end": { - "$date": "2021-02-09T03:10:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6ec813b7-5a62-4006-8e71-c0ae4133b7d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-09T02:50:51.000Z" - }, - "end": { - "$date": "2021-02-09T03:24:01.000Z" - }, - "events": [ - { - "uuid": "8b66112d-aa25-431d-8829-093b591fc5fa", - "start": { - "$date": "2021-02-09T02:50:51.000Z" - }, - "end": { - "$date": "2021-02-09T03:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14c6c051-2873-46b6-908c-af2241e0ded3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-09T03:18:43.000Z" - }, - "end": { - "$date": "2021-02-09T03:53:39.000Z" - }, - "events": [ - { - "uuid": "533af6ce-3f05-4e29-8ce4-aa651391ef1f", - "start": { - "$date": "2021-02-09T03:18:43.000Z" - }, - "end": { - "$date": "2021-02-09T03:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "7b8f1b8d-e84c-428d-90e4-addac14e6f45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-09T03:12:39.000Z" - }, - "end": { - "$date": "2021-02-09T03:25:39.000Z" - }, - "events": [ - { - "uuid": "2940c3f5-c49d-4994-b3cc-2ad8889c6186", - "start": { - "$date": "2021-02-09T03:12:39.000Z" - }, - "end": { - "$date": "2021-02-09T03:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6dc8bfe0-960d-4acf-81f0-921b214ed267", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-09T03:24:12.000Z" - }, - "end": { - "$date": "2021-02-09T03:48:47.000Z" - }, - "events": [ - { - "uuid": "70d43245-2516-403c-a7a6-9dda304f9e39", - "start": { - "$date": "2021-02-09T03:24:12.000Z" - }, - "end": { - "$date": "2021-02-09T03:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "1ae2ffbe-581b-44c9-8b2e-04019fdc67d7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-09T03:30:56.000Z" - }, - "end": { - "$date": "2021-02-09T05:28:16.000Z" - }, - "events": [ - { - "uuid": "413c5e06-6ecd-48e3-9fb2-3834335ce085", - "start": { - "$date": "2021-02-09T03:30:56.000Z" - }, - "end": { - "$date": "2021-02-09T05:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "80241061-5d24-4bed-bcd7-6af4ecf5cab8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-09T05:34:53.000Z" - }, - "end": { - "$date": "2021-02-09T05:34:57.000Z" - }, - "events": [ - { - "uuid": "08492d4f-9d2d-4efe-a122-03258befa5e0", - "start": { - "$date": "2021-02-09T05:34:53.000Z" - }, - "end": { - "$date": "2021-02-09T05:34:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4f71a05f-870c-4736-a9ad-fb87042d57fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-09T03:48:53.000Z" - }, - "end": { - "$date": "2021-02-09T05:35:04.000Z" - }, - "events": [ - { - "uuid": "158f0090-8dff-4470-95b5-34f3e59fa3d2", - "start": { - "$date": "2021-02-09T03:48:53.000Z" - }, - "end": { - "$date": "2021-02-09T05:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cf2cb33-f430-45fe-aa95-9ae77d3fe446", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-09T03:59:05.000Z" - }, - "end": { - "$date": "2021-02-09T04:25:07.000Z" - }, - "events": [ - { - "uuid": "bcea1654-e082-4ac2-b821-731fd74855f2", - "start": { - "$date": "2021-02-09T03:59:05.000Z" - }, - "end": { - "$date": "2021-02-09T04:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4e4e0c15-a040-45fa-b512-b5342e002211", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-09T04:03:23.000Z" - }, - "end": { - "$date": "2021-02-09T04:16:49.000Z" - }, - "events": [ - { - "uuid": "1fdcad4d-447d-4d7c-a010-a739f876d57a", - "start": { - "$date": "2021-02-09T04:03:23.000Z" - }, - "end": { - "$date": "2021-02-09T04:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "221d28fe-5368-403b-873e-9af2e16eeab6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-09T04:06:55.000Z" - }, - "end": { - "$date": "2021-02-09T04:13:02.000Z" - }, - "events": [ - { - "uuid": "75569a55-871b-481c-8078-8232cd1555b5", - "start": { - "$date": "2021-02-09T04:06:55.000Z" - }, - "end": { - "$date": "2021-02-09T04:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73dd1b78-995d-4a3d-99e6-f980a46c334e", - "uuid": "c6a53edb-45b5-41a5-acc3-380859cdcc1b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-09T04:18:17.000Z" - }, - "end": { - "$date": "2021-02-09T04:21:29.000Z" - }, - "events": [ - { - "uuid": "f9045f70-540e-499d-81d4-8a6e0aebcf63", - "start": { - "$date": "2021-02-09T04:18:17.000Z" - }, - "end": { - "$date": "2021-02-09T04:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad9c7fe5-095b-48f6-b9a6-1598f4ff2d46", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-09T04:34:29.000Z" - }, - "end": { - "$date": "2021-02-09T05:04:54.000Z" - }, - "events": [ - { - "uuid": "6896a8bd-7627-44b1-a9ab-e202a0014e84", - "start": { - "$date": "2021-02-09T04:34:29.000Z" - }, - "end": { - "$date": "2021-02-09T05:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b4c3cbe1-db4b-4c83-b12d-4c62cbba6d6a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-09T04:26:16.000Z" - }, - "end": { - "$date": "2021-02-09T04:41:44.000Z" - }, - "events": [ - { - "uuid": "0132a408-b3cf-44cb-9abc-ff99fda88057", - "start": { - "$date": "2021-02-09T04:26:16.000Z" - }, - "end": { - "$date": "2021-02-09T04:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "2c5c8dcd-fe87-40d4-8ed6-2f72caad87c5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-09T04:44:40.000Z" - }, - "end": { - "$date": "2021-02-09T06:28:43.000Z" - }, - "events": [ - { - "uuid": "a13d42eb-48a0-4ea6-a243-c9458889f036", - "start": { - "$date": "2021-02-09T04:44:40.000Z" - }, - "end": { - "$date": "2021-02-09T06:28:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "450d0406-d610-4f45-9672-ccea9cf6bd84", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-09T05:07:16.000Z" - }, - "end": { - "$date": "2021-02-09T05:31:22.000Z" - }, - "events": [ - { - "uuid": "5837c29b-bf85-40dc-ae87-cc31e2856e39", - "start": { - "$date": "2021-02-09T05:07:16.000Z" - }, - "end": { - "$date": "2021-02-09T05:31:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0211dbb1-ddc6-47b9-b9d4-a6a3d14fc86a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-09T05:08:16.000Z" - }, - "end": { - "$date": "2021-02-09T07:23:51.000Z" - }, - "events": [ - { - "uuid": "b673589d-6a45-41af-867f-76f385cde68e", - "start": { - "$date": "2021-02-09T05:08:16.000Z" - }, - "end": { - "$date": "2021-02-09T07:23:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94ea758e-df20-485f-b37d-305c137f5fe4", - "uuid": "f6b68c45-e973-414f-a2f3-c80aefd56ab5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-09T05:43:50.000Z" - }, - "end": { - "$date": "2021-02-09T07:45:01.000Z" - }, - "events": [ - { - "uuid": "d85b3392-8e1a-4ffb-b504-63b376868057", - "start": { - "$date": "2021-02-09T05:43:50.000Z" - }, - "end": { - "$date": "2021-02-09T07:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94ea758e-df20-485f-b37d-305c137f5fe4", - "uuid": "69b6b811-7bce-40ce-b814-eee33152522f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-09T06:14:13.000Z" - }, - "end": { - "$date": "2021-02-09T06:48:29.000Z" - }, - "events": [ - { - "uuid": "a3de363d-52c5-4716-a719-071731a049c3", - "start": { - "$date": "2021-02-09T06:14:13.000Z" - }, - "end": { - "$date": "2021-02-09T06:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94ea758e-df20-485f-b37d-305c137f5fe4", - "uuid": "19879e8f-0e62-4849-8533-73b5ae747b33", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-09T06:48:39.000Z" - }, - "end": { - "$date": "2021-02-09T07:34:49.000Z" - }, - "events": [ - { - "uuid": "a9350d49-35cc-4654-9c4d-34ceb58c478d", - "start": { - "$date": "2021-02-09T06:48:39.000Z" - }, - "end": { - "$date": "2021-02-09T07:34:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f5756236-b7d9-4f77-a11d-cf7681aa55fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-09T15:18:42.000Z" - }, - "end": { - "$date": "2021-02-09T15:54:20.000Z" - }, - "events": [ - { - "uuid": "9c8868eb-5bbd-41e3-bc8d-d1d11052ab75", - "start": { - "$date": "2021-02-09T15:18:42.000Z" - }, - "end": { - "$date": "2021-02-09T15:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef54252f-1382-41d3-a6ef-4cc84122cc4b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-09T17:11:03.000Z" - }, - "end": { - "$date": "2021-02-09T17:33:31.000Z" - }, - "events": [ - { - "uuid": "9a402b7b-1f19-4cd9-be15-7ed1c59984f8", - "start": { - "$date": "2021-02-09T17:11:03.000Z" - }, - "end": { - "$date": "2021-02-09T17:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae82e123-e1fc-4dc3-87dc-ccbbedb1ab94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-09T17:41:36.000Z" - }, - "end": { - "$date": "2021-02-09T18:13:04.000Z" - }, - "events": [ - { - "uuid": "242bfecb-40c7-4978-851a-6b857cec049e", - "start": { - "$date": "2021-02-09T17:41:36.000Z" - }, - "end": { - "$date": "2021-02-09T18:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7d0bcf27-40f8-4d08-a805-fa486e1c8c58", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-09T18:51:16.000Z" - }, - "end": { - "$date": "2021-02-09T19:00:22.000Z" - }, - "events": [ - { - "uuid": "0a70f23f-2770-40e8-8e27-6018af7abee5", - "start": { - "$date": "2021-02-09T18:51:16.000Z" - }, - "end": { - "$date": "2021-02-09T19:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2ad9f0e3-8f6a-4ee0-8fff-70d2cae19a9a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-09T19:06:15.000Z" - }, - "end": { - "$date": "2021-02-09T19:56:59.000Z" - }, - "events": [ - { - "uuid": "0d6e9b79-1cb9-46d0-9fa5-fae288760b96", - "start": { - "$date": "2021-02-09T19:06:15.000Z" - }, - "end": { - "$date": "2021-02-09T19:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "44c2e3c6-444e-4313-a7c1-71070292e3f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-09T19:41:15.000Z" - }, - "end": { - "$date": "2021-02-09T19:43:57.000Z" - }, - "events": [ - { - "uuid": "41e0ee91-5e5d-4081-ade9-1dbd1707e8e9", - "start": { - "$date": "2021-02-09T19:41:15.000Z" - }, - "end": { - "$date": "2021-02-09T19:43:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "c3977151-3c05-4d2b-b0ea-8ecb4f837fd9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-09T19:44:56.000Z" - }, - "end": { - "$date": "2021-02-09T19:56:33.000Z" - }, - "events": [ - { - "uuid": "bd57086f-c9a9-4906-b0b3-a82b1ae9354e", - "start": { - "$date": "2021-02-09T19:44:56.000Z" - }, - "end": { - "$date": "2021-02-09T19:56:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "11d72310-b27a-4885-9a45-1ddb3a268a63", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-09T20:10:14.000Z" - }, - "end": { - "$date": "2021-02-09T20:23:30.000Z" - }, - "events": [ - { - "uuid": "eee8c58c-e1ae-4295-976b-d63c33a738d9", - "start": { - "$date": "2021-02-09T20:10:14.000Z" - }, - "end": { - "$date": "2021-02-09T20:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "19c4c475-13e6-40bf-9d48-657121db9360", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-09T20:51:41.000Z" - }, - "end": { - "$date": "2021-02-09T20:54:48.000Z" - }, - "events": [ - { - "uuid": "0fb4c809-f634-4251-b9d8-f8003c9e3c43", - "start": { - "$date": "2021-02-09T20:51:41.000Z" - }, - "end": { - "$date": "2021-02-09T20:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c9c1a4d5-6199-4121-928c-6b327d59a2e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-09T21:48:25.000Z" - }, - "end": { - "$date": "2021-02-09T22:49:59.000Z" - }, - "events": [ - { - "uuid": "6ed34ccb-9bf0-4902-b05b-c798f7fa1ffd", - "start": { - "$date": "2021-02-09T21:48:25.000Z" - }, - "end": { - "$date": "2021-02-09T22:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad1a3394-2700-4057-96e4-71e1d99fcd69", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-09T22:26:59.000Z" - }, - "end": { - "$date": "2021-02-09T23:02:08.000Z" - }, - "events": [ - { - "uuid": "6a51d3f2-97f5-4f1a-9c16-55420bc029e5", - "start": { - "$date": "2021-02-09T22:26:59.000Z" - }, - "end": { - "$date": "2021-02-09T23:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c6cef953-fb7e-4430-a81a-7fc05b2ea7d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-09T23:56:17.000Z" - }, - "end": { - "$date": "2021-02-09T23:58:37.000Z" - }, - "events": [ - { - "uuid": "52113126-14d3-415f-ac60-3d3660de3605", - "start": { - "$date": "2021-02-09T23:56:17.000Z" - }, - "end": { - "$date": "2021-02-09T23:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a96f2c75-e38f-4225-84fa-f0fa48d72ba3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-10T00:31:25.000Z" - }, - "end": { - "$date": "2021-02-10T00:57:58.000Z" - }, - "events": [ - { - "uuid": "1df773ef-d462-4967-8681-20d204c9ec2d", - "start": { - "$date": "2021-02-10T00:31:25.000Z" - }, - "end": { - "$date": "2021-02-10T00:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a1f6fc2-42d2-4064-87e8-5b6ba6a317c9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T00:35:30.000Z" - }, - "end": { - "$date": "2021-02-10T00:53:33.000Z" - }, - "events": [ - { - "uuid": "8955310a-b94d-4169-bd8b-e8241e60b236", - "start": { - "$date": "2021-02-10T00:35:30.000Z" - }, - "end": { - "$date": "2021-02-10T00:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96103720-d482-46ad-8f0b-c70bc75b500c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T00:35:24.000Z" - }, - "end": { - "$date": "2021-02-10T00:53:21.000Z" - }, - "events": [ - { - "uuid": "1e550389-70bc-4288-a110-fcefc1d77035", - "start": { - "$date": "2021-02-10T00:35:24.000Z" - }, - "end": { - "$date": "2021-02-10T00:53:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf4ed72e-7185-4774-add2-9b653aef4479", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T00:35:24.000Z" - }, - "end": { - "$date": "2021-02-10T00:53:34.000Z" - }, - "events": [ - { - "uuid": "d3827ccd-addb-405f-bc4e-3de9bf856801", - "start": { - "$date": "2021-02-10T00:35:24.000Z" - }, - "end": { - "$date": "2021-02-10T00:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bfa3a74-2e72-4b85-a93f-7770d052fca8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T00:55:51.000Z" - }, - "end": { - "$date": "2021-02-10T01:08:02.000Z" - }, - "events": [ - { - "uuid": "1f6e8cdd-fe4f-471d-bb5d-b36ed5f0ece9", - "start": { - "$date": "2021-02-10T00:55:51.000Z" - }, - "end": { - "$date": "2021-02-10T01:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcf83caf-c3d4-40a0-b5af-56236a776d46", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T00:55:45.000Z" - }, - "end": { - "$date": "2021-02-10T01:07:52.000Z" - }, - "events": [ - { - "uuid": "ff491f49-4fd5-4f74-b8c2-cb9f5459ea0f", - "start": { - "$date": "2021-02-10T00:55:45.000Z" - }, - "end": { - "$date": "2021-02-10T01:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7e32de5-8265-40e2-a658-f37426c447e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T00:55:50.000Z" - }, - "end": { - "$date": "2021-02-10T01:07:56.000Z" - }, - "events": [ - { - "uuid": "20f5fda7-b60e-4212-944c-789a2336ded1", - "start": { - "$date": "2021-02-10T00:55:50.000Z" - }, - "end": { - "$date": "2021-02-10T01:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41eba44b-e03e-4530-b63b-3c9b1a1bf0ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-10T01:00:43.000Z" - }, - "end": { - "$date": "2021-02-10T01:37:56.000Z" - }, - "events": [ - { - "uuid": "5240104b-3813-458e-91f4-7d7670901f46", - "start": { - "$date": "2021-02-10T01:00:43.000Z" - }, - "end": { - "$date": "2021-02-10T01:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ca04696-2bd4-4035-a674-c75b01434c64", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T01:10:27.000Z" - }, - "end": { - "$date": "2021-02-10T01:33:12.000Z" - }, - "events": [ - { - "uuid": "e358c082-2642-44c4-877e-d55574a7aecc", - "start": { - "$date": "2021-02-10T01:10:27.000Z" - }, - "end": { - "$date": "2021-02-10T01:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a4c9476-2635-4e0d-9250-ad09817df8ab", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T01:10:21.000Z" - }, - "end": { - "$date": "2021-02-10T01:33:09.000Z" - }, - "events": [ - { - "uuid": "3c056400-de57-4359-bf48-3ab7688e06a8", - "start": { - "$date": "2021-02-10T01:10:21.000Z" - }, - "end": { - "$date": "2021-02-10T01:33:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c931dc57-c669-4089-a970-c4bc56450e23", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T01:10:21.000Z" - }, - "end": { - "$date": "2021-02-10T01:33:08.000Z" - }, - "events": [ - { - "uuid": "1add8399-cae4-4447-94bc-4f021d451f0e", - "start": { - "$date": "2021-02-10T01:10:21.000Z" - }, - "end": { - "$date": "2021-02-10T01:33:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d486421-fa51-4f1b-8dd0-298c8d4ba25e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T01:33:32.000Z" - }, - "end": { - "$date": "2021-02-10T01:35:02.000Z" - }, - "events": [ - { - "uuid": "284b78b9-8b3a-4f5a-b145-82f343c7f442", - "start": { - "$date": "2021-02-10T01:33:32.000Z" - }, - "end": { - "$date": "2021-02-10T01:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5841c68-9584-412e-8333-d09901e50bb5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T02:34:14.000Z" - }, - "end": { - "$date": "2021-02-10T03:05:33.000Z" - }, - "events": [ - { - "uuid": "7a7b0854-7d3a-4f4d-8870-672b35fe3c07", - "start": { - "$date": "2021-02-10T02:34:14.000Z" - }, - "end": { - "$date": "2021-02-10T03:16:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "903c03a5-082b-4b0c-9a7d-8477108ded81", - "start": { - "$date": "2021-02-10T03:16:14.000Z" - }, - "end": { - "$date": "2021-02-10T03:21:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa6114be-e6b5-474f-9631-d16d3446ed87", - "start": { - "$date": "2021-02-10T03:21:14.000Z" - }, - "end": { - "$date": "2021-02-10T03:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4bfc1407-37c8-4006-9c4b-021a21be90e9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-10T01:52:56.000Z" - }, - "end": { - "$date": "2021-02-10T02:15:14.000Z" - }, - "events": [ - { - "uuid": "c4d900ff-5d2a-4a56-8676-b0b014f9cf7e", - "start": { - "$date": "2021-02-10T01:52:56.000Z" - }, - "end": { - "$date": "2021-02-10T02:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6a036831-3f8a-4e56-870b-c38836873bdf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-10T02:09:55.000Z" - }, - "end": { - "$date": "2021-02-10T06:29:04.000Z" - }, - "events": [ - { - "uuid": "e010426f-7390-4cfc-95fc-235cc713e947", - "start": { - "$date": "2021-02-10T02:09:55.000Z" - }, - "end": { - "$date": "2021-02-10T04:26:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c2e840e-37f7-4318-a035-1cf88cb6abd1", - "start": { - "$date": "2021-02-10T04:26:55.000Z" - }, - "end": { - "$date": "2021-02-10T04:31:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e494de3f-1b9c-4119-8a90-02ed11ad8a79", - "start": { - "$date": "2021-02-10T04:31:55.000Z" - }, - "end": { - "$date": "2021-02-10T04:41:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d25ba107-f921-4acf-bfa0-4b50a7dfdfd3", - "start": { - "$date": "2021-02-10T04:41:55.000Z" - }, - "end": { - "$date": "2021-02-10T04:42:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "877b62c4-57a6-4ce9-aac8-42c39264f7b2", - "start": { - "$date": "2021-02-10T04:42:55.000Z" - }, - "end": { - "$date": "2021-02-10T05:18:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7eb6ad5-863f-46aa-9260-e209f9ee79b8", - "start": { - "$date": "2021-02-10T05:18:55.000Z" - }, - "end": { - "$date": "2021-02-10T05:23:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b713075c-8d05-4628-b126-ff4d2dd30ef8", - "start": { - "$date": "2021-02-10T05:23:55.000Z" - }, - "end": { - "$date": "2021-02-10T06:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "4c37df5d-ea36-460a-bd93-e0f771ff7bcb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-10T02:12:08.000Z" - }, - "end": { - "$date": "2021-02-10T03:11:51.000Z" - }, - "events": [ - { - "uuid": "e30d6f41-4a1f-469b-a129-9ef9e5e08292", - "start": { - "$date": "2021-02-10T02:12:08.000Z" - }, - "end": { - "$date": "2021-02-10T02:50:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e45b0886-bbdb-43e0-9112-81afda547bc1", - "start": { - "$date": "2021-02-10T02:50:08.000Z" - }, - "end": { - "$date": "2021-02-10T03:11:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1cc73142-6c32-46dd-867c-80e275ba2602", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-10T02:16:21.000Z" - }, - "end": { - "$date": "2021-02-10T03:17:07.000Z" - }, - "events": [ - { - "uuid": "812c1afa-e566-4d54-905a-cafceb60fc24", - "start": { - "$date": "2021-02-10T02:16:21.000Z" - }, - "end": { - "$date": "2021-02-10T03:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ab28d9d4-e085-4f4b-88a5-df77ab378f74", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-10T02:23:31.000Z" - }, - "end": { - "$date": "2021-02-10T03:57:28.000Z" - }, - "events": [ - { - "uuid": "da8dc5cb-4e39-4a7c-8463-06f9aec361d5", - "start": { - "$date": "2021-02-10T02:23:31.000Z" - }, - "end": { - "$date": "2021-02-10T03:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c78b1518-54ea-41bb-bcad-c1cba89dc25b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-10T02:27:57.000Z" - }, - "end": { - "$date": "2021-02-10T02:34:41.000Z" - }, - "events": [ - { - "uuid": "272f94d7-0999-474d-bd40-adb07a625df0", - "start": { - "$date": "2021-02-10T02:27:57.000Z" - }, - "end": { - "$date": "2021-02-10T02:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "acd1a6c8-2ae6-414c-abca-2d920abcdf04", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-10T03:19:54.000Z" - }, - "end": { - "$date": "2021-02-10T03:21:03.000Z" - }, - "events": [ - { - "uuid": "f65c05d0-0719-45fe-a269-5e7886563219", - "start": { - "$date": "2021-02-10T03:19:54.000Z" - }, - "end": { - "$date": "2021-02-10T03:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9482e2e6-783c-48ff-b654-a8673385102e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T04:01:27.000Z" - }, - "end": { - "$date": "2021-02-10T04:50:48.000Z" - }, - "events": [ - { - "uuid": "ee08e5ba-351f-4e49-bed0-b717f3504699", - "start": { - "$date": "2021-02-10T04:01:27.000Z" - }, - "end": { - "$date": "2021-02-10T04:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f278da4-03cd-4265-ad14-0d75c6e0b11f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T03:39:25.000Z" - }, - "end": { - "$date": "2021-02-10T03:54:32.000Z" - }, - "events": [ - { - "uuid": "cf79d7b9-8c53-40cf-93b7-b09c7b2a8a82", - "start": { - "$date": "2021-02-10T03:39:25.000Z" - }, - "end": { - "$date": "2021-02-10T03:54:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "793ce3c1-4d38-4617-9e47-b341f1bd2a96", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-10T03:48:52.000Z" - }, - "end": { - "$date": "2021-02-10T05:45:19.000Z" - }, - "events": [ - { - "uuid": "80102ac2-3808-4977-80ca-03c48878cc9b", - "start": { - "$date": "2021-02-10T03:48:52.000Z" - }, - "end": { - "$date": "2021-02-10T05:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ec43fa87-31ca-4c57-83bd-5d631962dda0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-10T03:49:19.000Z" - }, - "end": { - "$date": "2021-02-10T05:44:57.000Z" - }, - "events": [ - { - "uuid": "526a6216-e1b6-4eaa-9b12-97100e3c1496", - "start": { - "$date": "2021-02-10T03:49:19.000Z" - }, - "end": { - "$date": "2021-02-10T05:44:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edbd61b9-1cd5-4baf-9b55-06dfc4dd4467", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T04:01:27.000Z" - }, - "end": { - "$date": "2021-02-10T04:50:56.000Z" - }, - "events": [ - { - "uuid": "970356df-61ce-4716-bb1a-172c139e28f2", - "start": { - "$date": "2021-02-10T04:01:27.000Z" - }, - "end": { - "$date": "2021-02-10T04:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "aae99134-39bf-40b0-805a-b1d136e2a5bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-10T04:40:53.000Z" - }, - "end": { - "$date": "2021-02-10T07:43:02.000Z" - }, - "events": [ - { - "uuid": "d842e50d-2d8c-4096-b57c-6a797332731b", - "start": { - "$date": "2021-02-10T04:40:53.000Z" - }, - "end": { - "$date": "2021-02-10T07:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "df9e4ea6-e4b6-4c0e-9e42-e7da2b96fc41", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-10T04:40:59.000Z" - }, - "end": { - "$date": "2021-02-10T07:43:16.000Z" - }, - "events": [ - { - "uuid": "937be61d-4503-4a45-a797-3aacaca9b4af", - "start": { - "$date": "2021-02-10T04:40:59.000Z" - }, - "end": { - "$date": "2021-02-10T07:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e864034-370f-4cee-9334-674d1979f676", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T04:55:28.000Z" - }, - "end": { - "$date": "2021-02-10T05:10:03.000Z" - }, - "events": [ - { - "uuid": "f0302d7b-f12a-4a27-b7d1-af2f66010b6d", - "start": { - "$date": "2021-02-10T04:55:28.000Z" - }, - "end": { - "$date": "2021-02-10T05:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb83506d-ca15-4245-92a3-8bab4248ef9a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T04:55:26.000Z" - }, - "end": { - "$date": "2021-02-10T05:10:09.000Z" - }, - "events": [ - { - "uuid": "24718a38-27cf-4ec7-aff9-845dd154c8e0", - "start": { - "$date": "2021-02-10T04:55:26.000Z" - }, - "end": { - "$date": "2021-02-10T05:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb6f98be-f17e-4c6c-94c0-23fd23adbc58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T04:55:24.000Z" - }, - "end": { - "$date": "2021-02-10T05:10:10.000Z" - }, - "events": [ - { - "uuid": "75051588-e261-4476-b824-e33ddb23da47", - "start": { - "$date": "2021-02-10T04:55:24.000Z" - }, - "end": { - "$date": "2021-02-10T05:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e45beda-b7d7-4400-a0b4-712ad2a95932", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T05:12:39.000Z" - }, - "end": { - "$date": "2021-02-10T05:31:06.000Z" - }, - "events": [ - { - "uuid": "3882a4bb-4ada-4f66-a7fa-2e77e2210b51", - "start": { - "$date": "2021-02-10T05:12:39.000Z" - }, - "end": { - "$date": "2021-02-10T05:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f453763-f908-42f1-902d-558c47fbf1af", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T05:13:07.000Z" - }, - "end": { - "$date": "2021-02-10T05:30:56.000Z" - }, - "events": [ - { - "uuid": "9e3840cd-081f-44cf-b0ac-a25b01594db6", - "start": { - "$date": "2021-02-10T05:13:07.000Z" - }, - "end": { - "$date": "2021-02-10T05:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c8e6e59-c123-47df-a8b9-e321b9793c8f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T05:12:40.000Z" - }, - "end": { - "$date": "2021-02-10T05:30:56.000Z" - }, - "events": [ - { - "uuid": "edb4621a-3c69-4eb7-93b4-591810d73c43", - "start": { - "$date": "2021-02-10T05:12:40.000Z" - }, - "end": { - "$date": "2021-02-10T05:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0613421-f9bc-4c67-b7bf-8d8a3dad0ad7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T05:33:14.000Z" - }, - "end": { - "$date": "2021-02-10T05:44:32.000Z" - }, - "events": [ - { - "uuid": "6182832e-9979-493b-bbf3-d24e4a32d49e", - "start": { - "$date": "2021-02-10T05:33:14.000Z" - }, - "end": { - "$date": "2021-02-10T05:44:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afa0fe5e-a956-4eef-8a96-451ecc84b837", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T05:33:12.000Z" - }, - "end": { - "$date": "2021-02-10T05:44:32.000Z" - }, - "events": [ - { - "uuid": "12abdfe4-ddda-4d37-8f02-2e26cb150825", - "start": { - "$date": "2021-02-10T05:33:12.000Z" - }, - "end": { - "$date": "2021-02-10T05:44:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e271a7ff-2b66-40b2-b0d6-e76891af9a81", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-10T06:05:34.000Z" - }, - "end": { - "$date": "2021-02-10T06:40:30.000Z" - }, - "events": [ - { - "uuid": "ac88fdbe-9c5f-4635-bbbb-73abca7cbe30", - "start": { - "$date": "2021-02-10T06:05:34.000Z" - }, - "end": { - "$date": "2021-02-10T06:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10f4a0ce-09d3-44aa-bf2e-7ff3d83b3f06", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T15:53:42.000Z" - }, - "end": { - "$date": "2021-02-10T16:22:22.000Z" - }, - "events": [ - { - "uuid": "4248bd0d-d078-4b87-b77f-8215d0ca7b44", - "start": { - "$date": "2021-02-10T15:53:42.000Z" - }, - "end": { - "$date": "2021-02-10T16:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79591223-f7cc-4513-8990-9038deabb00d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T16:24:10.000Z" - }, - "end": { - "$date": "2021-02-10T16:52:12.000Z" - }, - "events": [ - { - "uuid": "4787fc03-87a8-4390-a861-15e230ddb1c4", - "start": { - "$date": "2021-02-10T16:24:10.000Z" - }, - "end": { - "$date": "2021-02-10T16:52:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b5a1f21a-43c8-4d25-b1f8-92b3d3a833bb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-10T16:26:24.000Z" - }, - "end": { - "$date": "2021-02-10T17:33:08.000Z" - }, - "events": [ - { - "uuid": "3c495fb1-83d5-4328-90cc-aa98f3dc6142", - "start": { - "$date": "2021-02-10T16:26:24.000Z" - }, - "end": { - "$date": "2021-02-10T17:33:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8175f6c-2407-4b67-9443-f996cf6832e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T16:54:20.000Z" - }, - "end": { - "$date": "2021-02-10T17:25:26.000Z" - }, - "events": [ - { - "uuid": "8a9e2bd7-0b12-41fe-bac7-fd166117b495", - "start": { - "$date": "2021-02-10T16:54:20.000Z" - }, - "end": { - "$date": "2021-02-10T17:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc6ae9b0-5504-47aa-a9c6-38ea33c1746c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-10T17:37:03.000Z" - }, - "end": { - "$date": "2021-02-10T17:59:53.000Z" - }, - "events": [ - { - "uuid": "d6d1f11c-3391-46fc-852c-4a8e5adf62e1", - "start": { - "$date": "2021-02-10T17:37:03.000Z" - }, - "end": { - "$date": "2021-02-10T17:59:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db80f042-216b-4c5e-9f69-2cb296e7101e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T17:46:41.000Z" - }, - "end": { - "$date": "2021-02-10T18:03:29.000Z" - }, - "events": [ - { - "uuid": "7f8540ff-bb8f-4627-8138-e33cea1bc10e", - "start": { - "$date": "2021-02-10T17:46:41.000Z" - }, - "end": { - "$date": "2021-02-10T18:03:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a50d848c-0030-4f70-bda8-fff26866e578", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T18:46:32.000Z" - }, - "end": { - "$date": "2021-02-10T18:46:29.000Z" - }, - "events": [ - { - "uuid": "f05e916d-d38b-4c65-b46e-a96dd43a855d", - "start": { - "$date": "2021-02-10T18:46:32.000Z" - }, - "end": { - "$date": "2021-02-10T18:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e687cbee-bf35-4b13-88fe-0429a820e7b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-10T18:08:29.000Z" - }, - "end": { - "$date": "2021-02-10T18:49:31.000Z" - }, - "events": [ - { - "uuid": "c2491374-8352-481e-8a1f-1bd3f6fc2820", - "start": { - "$date": "2021-02-10T18:08:29.000Z" - }, - "end": { - "$date": "2021-02-10T18:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04510ffb-0165-44b6-ae47-5ee0499e652e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T18:47:23.000Z" - }, - "end": { - "$date": "2021-02-10T18:48:44.000Z" - }, - "events": [ - { - "uuid": "e6d51363-eaa3-4e7f-9b73-b41452aa7690", - "start": { - "$date": "2021-02-10T18:47:23.000Z" - }, - "end": { - "$date": "2021-02-10T18:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "53549a22-c7d5-4581-8a2b-9fc71fba947f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T19:23:49.000Z" - }, - "end": { - "$date": "2021-02-10T19:25:10.000Z" - }, - "events": [ - { - "uuid": "ade41ded-83df-491e-bd4d-cde5d81fba3f", - "start": { - "$date": "2021-02-10T19:23:49.000Z" - }, - "end": { - "$date": "2021-02-10T19:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03a79e25-622e-4633-9c95-0d02474727e3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-10T19:37:46.000Z" - }, - "end": { - "$date": "2021-02-10T20:10:21.000Z" - }, - "events": [ - { - "uuid": "2398b847-81d7-4fc0-afd2-9f2fe4501f24", - "start": { - "$date": "2021-02-10T19:37:46.000Z" - }, - "end": { - "$date": "2021-02-10T20:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "404261f2-e696-488a-a209-a73159afd9f4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-10T20:57:05.000Z" - }, - "end": { - "$date": "2021-02-10T21:28:38.000Z" - }, - "events": [ - { - "uuid": "51ff2d42-7b3d-426e-a93b-5259c1a76a06", - "start": { - "$date": "2021-02-10T20:57:05.000Z" - }, - "end": { - "$date": "2021-02-10T21:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "34ec1f92-3749-4bfd-974a-9823e460ec0f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-10T21:09:24.000Z" - }, - "end": { - "$date": "2021-02-10T21:53:58.000Z" - }, - "events": [ - { - "uuid": "994f3f28-91d3-49fe-8a34-7c00344ad98e", - "start": { - "$date": "2021-02-10T21:09:24.000Z" - }, - "end": { - "$date": "2021-02-10T21:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61b9c95f-3d45-4cff-9049-c04e9c889c38", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T22:00:13.000Z" - }, - "end": { - "$date": "2021-02-10T22:19:42.000Z" - }, - "events": [ - { - "uuid": "08fb61d8-619e-40bd-8287-a13ab920fa1f", - "start": { - "$date": "2021-02-10T22:00:13.000Z" - }, - "end": { - "$date": "2021-02-10T22:19:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "48856a09-cc46-4afb-aea2-ca88bc68a5ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-10T22:03:57.000Z" - }, - "end": { - "$date": "2021-02-10T22:11:10.000Z" - }, - "events": [ - { - "uuid": "114f8de7-3f3f-400b-8d7f-614b8c476b68", - "start": { - "$date": "2021-02-10T22:03:57.000Z" - }, - "end": { - "$date": "2021-02-10T22:11:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "303196d4-185a-4b25-845b-8fa56cb9c802", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-10T22:13:33.000Z" - }, - "end": { - "$date": "2021-02-11T00:45:56.000Z" - }, - "events": [ - { - "uuid": "3e13bd8a-d282-4bb3-b9a4-78e1116c36f6", - "start": { - "$date": "2021-02-10T22:13:33.000Z" - }, - "end": { - "$date": "2021-02-11T00:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "faf22a89-058e-4a25-bd7c-b2349df0df36", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-10T22:19:27.000Z" - }, - "end": { - "$date": "2021-02-11T01:09:09.000Z" - }, - "events": [ - { - "uuid": "8bd0d2d5-20e1-4a4d-a2f6-e6caa8241494", - "start": { - "$date": "2021-02-10T22:19:27.000Z" - }, - "end": { - "$date": "2021-02-11T01:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc54a5fc-a088-434d-98bf-edb9ad9bb033", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T22:30:18.000Z" - }, - "end": { - "$date": "2021-02-10T22:50:51.000Z" - }, - "events": [ - { - "uuid": "3668a6a3-be2b-4c04-adaa-17500a1ce1fb", - "start": { - "$date": "2021-02-10T22:30:18.000Z" - }, - "end": { - "$date": "2021-02-10T22:50:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5d445717-ac6d-4fe4-945d-cb76c8893735", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-10T22:31:37.000Z" - }, - "end": { - "$date": "2021-02-10T22:50:50.000Z" - }, - "events": [ - { - "uuid": "5bf0dd21-08bd-4a7f-975c-31e56a8d2c95", - "start": { - "$date": "2021-02-10T22:31:37.000Z" - }, - "end": { - "$date": "2021-02-10T22:50:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a1046db-ef5d-4631-9c74-9d8de6d6f49b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T22:53:38.000Z" - }, - "end": { - "$date": "2021-02-10T23:13:59.000Z" - }, - "events": [ - { - "uuid": "935e75c1-3094-4bbe-973a-99b59212f3df", - "start": { - "$date": "2021-02-10T22:53:38.000Z" - }, - "end": { - "$date": "2021-02-10T23:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88b5d6a8-9f1a-48f1-89d7-d6a347e2c903", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T22:54:11.000Z" - }, - "end": { - "$date": "2021-02-10T23:13:52.000Z" - }, - "events": [ - { - "uuid": "8509f302-0e18-4a88-946f-88c2ab58e25e", - "start": { - "$date": "2021-02-10T22:54:11.000Z" - }, - "end": { - "$date": "2021-02-10T23:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1d1a2767-0d78-4e07-97ce-14d9fdc48f13", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-10T22:51:06.000Z" - }, - "end": { - "$date": "2021-02-10T22:52:31.000Z" - }, - "events": [ - { - "uuid": "dbafb033-8136-468f-8a9f-4bcfd0585a08", - "start": { - "$date": "2021-02-10T22:51:06.000Z" - }, - "end": { - "$date": "2021-02-10T22:52:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "516c59bf-0c79-437f-b732-cd7a9799d582", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T23:16:30.000Z" - }, - "end": { - "$date": "2021-02-10T23:26:56.000Z" - }, - "events": [ - { - "uuid": "2830100f-51c9-4397-bbbd-b42946bc2c8b", - "start": { - "$date": "2021-02-10T23:16:30.000Z" - }, - "end": { - "$date": "2021-02-10T23:26:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7ce6bd7-eae5-43ab-88c8-13e5714c93d4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T23:17:12.000Z" - }, - "end": { - "$date": "2021-02-10T23:26:53.000Z" - }, - "events": [ - { - "uuid": "5ded731d-b1fc-4cf4-a6dc-86aa5e9a50eb", - "start": { - "$date": "2021-02-10T23:17:12.000Z" - }, - "end": { - "$date": "2021-02-10T23:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "223cae0b-5c74-4bcf-9a1c-b53f43c98627", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-10T23:30:11.000Z" - }, - "end": { - "$date": "2021-02-10T23:46:07.000Z" - }, - "events": [ - { - "uuid": "e74cde31-ef79-41ca-aac6-3577f6647200", - "start": { - "$date": "2021-02-10T23:30:11.000Z" - }, - "end": { - "$date": "2021-02-10T23:46:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "155109cf-863d-4858-bbc3-37eda7e32ce8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-10T23:29:53.000Z" - }, - "end": { - "$date": "2021-02-10T23:46:00.000Z" - }, - "events": [ - { - "uuid": "4db6d372-2a02-47de-899d-593141e0e8cd", - "start": { - "$date": "2021-02-10T23:29:53.000Z" - }, - "end": { - "$date": "2021-02-10T23:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b02054ae-cd94-4e3e-9bef-40d165e10615", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-10T23:58:27.000Z" - }, - "end": { - "$date": "2021-02-11T00:31:23.000Z" - }, - "events": [ - { - "uuid": "7e06b379-cd37-4559-8d7e-3cfbd3874357", - "start": { - "$date": "2021-02-10T23:58:27.000Z" - }, - "end": { - "$date": "2021-02-11T00:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4e9378c1-a414-423a-9cb2-21edbde36add", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T00:43:48.000Z" - }, - "end": { - "$date": "2021-02-11T02:11:02.000Z" - }, - "events": [ - { - "uuid": "47f3d8a4-3c4b-40ba-8845-afd83c51b748", - "start": { - "$date": "2021-02-11T00:43:48.000Z" - }, - "end": { - "$date": "2021-02-11T02:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c57d687c-3074-4d11-a891-44cec55b8668", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-11T00:54:36.000Z" - }, - "end": { - "$date": "2021-02-11T01:14:53.000Z" - }, - "events": [ - { - "uuid": "a908e3d4-81dd-40a0-9e80-b7da8d32182e", - "start": { - "$date": "2021-02-11T00:54:36.000Z" - }, - "end": { - "$date": "2021-02-11T01:14:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c50e9974-d0b8-4434-bde4-4c0bcecb198a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-11T00:58:31.000Z" - }, - "end": { - "$date": "2021-02-11T01:22:42.000Z" - }, - "events": [ - { - "uuid": "e66c76f0-d01b-4acd-80a1-ee6d3436dd76", - "start": { - "$date": "2021-02-11T00:58:31.000Z" - }, - "end": { - "$date": "2021-02-11T01:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0aaed63-5744-465f-b97a-cbcc9f32a5f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-11T01:15:12.000Z" - }, - "end": { - "$date": "2021-02-11T02:01:05.000Z" - }, - "events": [ - { - "uuid": "be9a7912-465c-4531-b192-8220a1a41a25", - "start": { - "$date": "2021-02-11T01:15:12.000Z" - }, - "end": { - "$date": "2021-02-11T02:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "aa5c7474-e063-41dc-a019-9d1fe78a309c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-11T01:19:33.000Z" - }, - "end": { - "$date": "2021-02-11T01:26:11.000Z" - }, - "events": [ - { - "uuid": "89178d6f-bff3-4ca6-8018-b954ee8d2fa9", - "start": { - "$date": "2021-02-11T01:19:33.000Z" - }, - "end": { - "$date": "2021-02-11T01:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "adfbced1-caa8-4d87-be9d-4b8d26537873", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-11T01:31:33.000Z" - }, - "end": { - "$date": "2021-02-11T06:34:14.000Z" - }, - "events": [ - { - "uuid": "d7a529b1-060b-401b-bf7b-d66d4809c4c3", - "start": { - "$date": "2021-02-11T01:31:33.000Z" - }, - "end": { - "$date": "2021-02-11T04:13:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b28a307-c4a2-4b0e-9c4e-9164e0d9e549", - "start": { - "$date": "2021-02-11T04:13:33.000Z" - }, - "end": { - "$date": "2021-02-11T04:16:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8525b418-3069-47f8-8b5e-57e1e029ecb1", - "start": { - "$date": "2021-02-11T04:16:33.000Z" - }, - "end": { - "$date": "2021-02-11T06:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "34c765cd-c90e-45ca-b3d8-854e71118a8e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-11T02:22:47.000Z" - }, - "end": { - "$date": "2021-02-11T02:58:19.000Z" - }, - "events": [ - { - "uuid": "552c250f-a6f8-401f-8768-c8f58386813b", - "start": { - "$date": "2021-02-11T02:22:47.000Z" - }, - "end": { - "$date": "2021-02-11T02:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83830375-a7d9-45f7-87f2-11a76b5f51e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T02:35:34.000Z" - }, - "end": { - "$date": "2021-02-11T03:01:55.000Z" - }, - "events": [ - { - "uuid": "53695fb5-500a-4c7c-b3b7-3a8689af824e", - "start": { - "$date": "2021-02-11T02:35:34.000Z" - }, - "end": { - "$date": "2021-02-11T03:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "01fc5c46-71de-4b9c-9802-71133a9fc56e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-11T03:01:31.000Z" - }, - "end": { - "$date": "2021-02-11T03:17:10.000Z" - }, - "events": [ - { - "uuid": "8e629100-b749-413c-a89f-b2e52eae257e", - "start": { - "$date": "2021-02-11T03:01:31.000Z" - }, - "end": { - "$date": "2021-02-11T03:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f4886c27-6d8d-4293-8cd3-244b03ba6cf8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-11T03:18:46.000Z" - }, - "end": { - "$date": "2021-02-11T03:28:26.000Z" - }, - "events": [ - { - "uuid": "9029c0d9-0a78-4e75-9c3a-96d6e450e58c", - "start": { - "$date": "2021-02-11T03:18:46.000Z" - }, - "end": { - "$date": "2021-02-11T03:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fd9bf5a2-f467-44b1-a30f-ef02f8a86f65", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-11T03:20:02.000Z" - }, - "end": { - "$date": "2021-02-11T04:31:19.000Z" - }, - "events": [ - { - "uuid": "82b4f8e6-a207-4caa-a38f-f7113d068a65", - "start": { - "$date": "2021-02-11T03:20:02.000Z" - }, - "end": { - "$date": "2021-02-11T04:31:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "020dfa7b-755d-4ee8-a386-2a1a26c61f2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-11T03:29:17.000Z" - }, - "end": { - "$date": "2021-02-11T05:21:10.000Z" - }, - "events": [ - { - "uuid": "4c6942b9-2036-45c1-9075-7db6fe2472b2", - "start": { - "$date": "2021-02-11T03:29:17.000Z" - }, - "end": { - "$date": "2021-02-11T05:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7d06a70f-aad2-408c-8563-2ec1e922fa4a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-11T03:59:57.000Z" - }, - "end": { - "$date": "2021-02-11T04:50:49.000Z" - }, - "events": [ - { - "uuid": "f80e1723-d5f3-4cec-880f-80c4fc9c4bef", - "start": { - "$date": "2021-02-11T03:59:57.000Z" - }, - "end": { - "$date": "2021-02-11T04:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ecabe407-c0f9-47c2-87ab-f9b79e1aa6f0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-11T04:06:06.000Z" - }, - "end": { - "$date": "2021-02-11T04:42:28.000Z" - }, - "events": [ - { - "uuid": "c3606d11-7716-43e0-ae11-494f61471cf1", - "start": { - "$date": "2021-02-11T04:06:06.000Z" - }, - "end": { - "$date": "2021-02-11T04:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "5411f448-4b06-40f5-b0b4-8f7397d4b7f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-11T04:13:32.000Z" - }, - "end": { - "$date": "2021-02-11T05:28:22.000Z" - }, - "events": [ - { - "uuid": "2ccfe707-130c-4fc9-b52b-3f31ddd51c7a", - "start": { - "$date": "2021-02-11T04:13:32.000Z" - }, - "end": { - "$date": "2021-02-11T05:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e9e01db9-57f4-42fe-a45b-5d94c3f83647", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-11T04:41:32.000Z" - }, - "end": { - "$date": "2021-02-11T05:21:03.000Z" - }, - "events": [ - { - "uuid": "a7da1dd1-a5a3-4289-8768-2d2da4f71816", - "start": { - "$date": "2021-02-11T04:41:32.000Z" - }, - "end": { - "$date": "2021-02-11T05:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f0b1246-0865-47c4-b680-82ff1d365f3d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-11T04:55:42.000Z" - }, - "end": { - "$date": "2021-02-11T05:11:14.000Z" - }, - "events": [ - { - "uuid": "c5dfeedb-98cf-4278-812d-53fe5b75710e", - "start": { - "$date": "2021-02-11T04:55:42.000Z" - }, - "end": { - "$date": "2021-02-11T05:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6702076-f669-42fd-a359-d831936eb001", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T05:07:26.000Z" - }, - "end": { - "$date": "2021-02-11T05:07:39.000Z" - }, - "events": [ - { - "uuid": "58f9f77c-418b-4965-8bb0-f912c1bd0c76", - "start": { - "$date": "2021-02-11T05:07:26.000Z" - }, - "end": { - "$date": "2021-02-11T05:07:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c4539fa-a84f-4883-8c7d-b30f14e2b429", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-11T05:16:08.000Z" - }, - "end": { - "$date": "2021-02-11T05:43:55.000Z" - }, - "events": [ - { - "uuid": "993c3738-510d-47ad-bb6f-dc815b60226a", - "start": { - "$date": "2021-02-11T05:16:08.000Z" - }, - "end": { - "$date": "2021-02-11T05:43:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a53123af-9ddd-432f-9b5f-c1e6749d23c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-11T05:22:15.000Z" - }, - "end": { - "$date": "2021-02-11T07:14:50.000Z" - }, - "events": [ - { - "uuid": "ada6ef5a-9c08-40bc-a8d0-342795094420", - "start": { - "$date": "2021-02-11T05:22:15.000Z" - }, - "end": { - "$date": "2021-02-11T07:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "986c846e-678e-4ce1-89ed-0639dda9a6b7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-11T05:29:23.000Z" - }, - "end": { - "$date": "2021-02-11T07:14:29.000Z" - }, - "events": [ - { - "uuid": "fb4b31e7-4c7c-4825-aec9-d6b0b48aa5a5", - "start": { - "$date": "2021-02-11T05:29:23.000Z" - }, - "end": { - "$date": "2021-02-11T07:14:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be4e5925-2a9a-4543-bfca-8c1a28deaa94", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-11T05:49:45.000Z" - }, - "end": { - "$date": "2021-02-11T06:17:19.000Z" - }, - "events": [ - { - "uuid": "6c1c6dde-6984-4ddb-8941-e17a8469436d", - "start": { - "$date": "2021-02-11T05:49:45.000Z" - }, - "end": { - "$date": "2021-02-11T06:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4e11b49-3f7a-4268-97f4-4bfb598d1a81", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-11T06:23:21.000Z" - }, - "end": { - "$date": "2021-02-11T06:53:17.000Z" - }, - "events": [ - { - "uuid": "a52a44c6-6bf1-481c-b075-0bd6166daf95", - "start": { - "$date": "2021-02-11T06:23:21.000Z" - }, - "end": { - "$date": "2021-02-11T06:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2695a97a-1c7b-4ec3-9ef5-de2da18094bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-11T06:58:07.000Z" - }, - "end": { - "$date": "2021-02-11T07:32:18.000Z" - }, - "events": [ - { - "uuid": "bf59d22f-6c22-4312-84f2-775e3284220f", - "start": { - "$date": "2021-02-11T06:58:07.000Z" - }, - "end": { - "$date": "2021-02-11T07:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "74092e56-e1d8-43f2-93d2-83a35e12ed33", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-11T17:08:37.000Z" - }, - "end": { - "$date": "2021-02-11T17:13:03.000Z" - }, - "events": [ - { - "uuid": "a7882fcc-6595-4fe6-8a08-5a24d55d4d7e", - "start": { - "$date": "2021-02-11T17:08:37.000Z" - }, - "end": { - "$date": "2021-02-11T17:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0aa9f6d4-f6a1-47c3-b9b4-61f7e6ea284b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T17:23:19.000Z" - }, - "end": { - "$date": "2021-02-11T17:59:31.000Z" - }, - "events": [ - { - "uuid": "18abae68-8b18-4667-906b-1809b51a28ff", - "start": { - "$date": "2021-02-11T17:23:19.000Z" - }, - "end": { - "$date": "2021-02-11T17:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f1ebf90-b4ae-434b-a54a-b85472d8b708", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T20:33:14.000Z" - }, - "end": { - "$date": "2021-02-11T21:10:26.000Z" - }, - "events": [ - { - "uuid": "09e9737a-c671-42c6-9892-765a1cd50c80", - "start": { - "$date": "2021-02-11T20:33:14.000Z" - }, - "end": { - "$date": "2021-02-11T21:10:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7f4a2b40-8391-491d-a2b7-2539bd8c9b15", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-11T20:52:15.000Z" - }, - "end": { - "$date": "2021-02-11T22:08:41.000Z" - }, - "events": [ - { - "uuid": "882f781f-6b75-4169-b063-283e62da0f3b", - "start": { - "$date": "2021-02-11T20:52:15.000Z" - }, - "end": { - "$date": "2021-02-11T22:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "00dfa590-61db-45c6-9f56-96c02c22d027", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-11T21:04:54.000Z" - }, - "end": { - "$date": "2021-02-11T22:53:39.000Z" - }, - "events": [ - { - "uuid": "5e8aa22b-908e-445e-a530-9006075abef0", - "start": { - "$date": "2021-02-11T21:04:54.000Z" - }, - "end": { - "$date": "2021-02-11T22:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a7e620d-1def-46da-92a8-b9ef3eb7923c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T21:21:33.000Z" - }, - "end": { - "$date": "2021-02-11T21:50:09.000Z" - }, - "events": [ - { - "uuid": "8ead60e4-41e5-4f9f-afb7-bf0878b14bdc", - "start": { - "$date": "2021-02-11T21:21:33.000Z" - }, - "end": { - "$date": "2021-02-11T21:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0eddbbad-d6ac-41c6-a0b5-121849359652", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-11T22:17:09.000Z" - }, - "end": { - "$date": "2021-02-11T22:25:22.000Z" - }, - "events": [ - { - "uuid": "eb96542c-b891-4b13-8100-8bdc73f52fe2", - "start": { - "$date": "2021-02-11T22:17:09.000Z" - }, - "end": { - "$date": "2021-02-11T22:25:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2c34940f-4f32-450b-a49d-fef7b6fdbcfe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-11T22:45:08.000Z" - }, - "end": { - "$date": "2021-02-11T22:54:04.000Z" - }, - "events": [ - { - "uuid": "aa50b281-30c2-4b58-99f9-c744e9514807", - "start": { - "$date": "2021-02-11T22:45:08.000Z" - }, - "end": { - "$date": "2021-02-11T22:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "564e251b-0dd2-450c-b979-f39de2083762", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-11T23:32:55.000Z" - }, - "end": { - "$date": "2021-02-12T00:29:23.000Z" - }, - "events": [ - { - "uuid": "3759c740-06e5-4c56-b286-7ce1d26290f8", - "start": { - "$date": "2021-02-11T23:32:55.000Z" - }, - "end": { - "$date": "2021-02-12T00:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6e6bc89-9500-42ab-895e-5e8107c52045", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-12T00:05:13.000Z" - }, - "end": { - "$date": "2021-02-12T00:24:56.000Z" - }, - "events": [ - { - "uuid": "01820610-8d2c-4941-84e8-8ccc56011915", - "start": { - "$date": "2021-02-12T00:05:13.000Z" - }, - "end": { - "$date": "2021-02-12T00:24:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "841e2730-c359-4380-ade8-a04907e91145", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-12T00:03:28.000Z" - }, - "end": { - "$date": "2021-02-12T00:33:33.000Z" - }, - "events": [ - { - "uuid": "fda80356-676e-4b38-a787-cb3a50cc44ad", - "start": { - "$date": "2021-02-12T00:03:28.000Z" - }, - "end": { - "$date": "2021-02-12T00:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "16208f3a-0c43-40d7-b71c-59ff81d02d3d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-12T00:03:37.000Z" - }, - "end": { - "$date": "2021-02-12T00:55:54.000Z" - }, - "events": [ - { - "uuid": "898ef82f-b7f7-4327-9818-dbc6a8b4168f", - "start": { - "$date": "2021-02-12T00:03:37.000Z" - }, - "end": { - "$date": "2021-02-12T00:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "717f8da4-af26-471c-87e0-b0c9a4cb0f16", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-12T00:14:35.000Z" - }, - "end": { - "$date": "2021-02-12T00:57:08.000Z" - }, - "events": [ - { - "uuid": "5c18f21d-2034-42eb-a311-0d315b63df5e", - "start": { - "$date": "2021-02-12T00:14:35.000Z" - }, - "end": { - "$date": "2021-02-12T00:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9b524ed1-5073-49e6-bbbf-65be79dd3a69", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-12T00:45:11.000Z" - }, - "end": { - "$date": "2021-02-12T01:33:53.000Z" - }, - "events": [ - { - "uuid": "42cbd19e-4afc-4350-8a5a-818cd453ab97", - "start": { - "$date": "2021-02-12T00:45:11.000Z" - }, - "end": { - "$date": "2021-02-12T01:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a175f1d-1771-472d-ac50-87ce74f89577", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-12T01:04:40.000Z" - }, - "end": { - "$date": "2021-02-12T01:50:55.000Z" - }, - "events": [ - { - "uuid": "e2021ef7-716c-4747-94bf-9ea19beaaa59", - "start": { - "$date": "2021-02-12T01:04:40.000Z" - }, - "end": { - "$date": "2021-02-12T01:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "ec28259b-18f8-4503-93dc-699b69960da8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-12T01:28:58.000Z" - }, - "end": { - "$date": "2021-02-12T01:51:13.000Z" - }, - "events": [ - { - "uuid": "3fc58cf7-ee62-4d4d-887a-212c90c23496", - "start": { - "$date": "2021-02-12T01:28:58.000Z" - }, - "end": { - "$date": "2021-02-12T01:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15d39622-2486-4fc3-a043-602a0ece0219", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T01:30:53.000Z" - }, - "end": { - "$date": "2021-02-12T02:11:25.000Z" - }, - "events": [ - { - "uuid": "da9a75b0-d9bb-4391-9d3e-fb8ee65ee6fe", - "start": { - "$date": "2021-02-12T01:30:53.000Z" - }, - "end": { - "$date": "2021-02-12T02:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "eb25ecbb-fd59-40db-8e1f-ade62addfcfb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-12T03:01:17.000Z" - }, - "end": { - "$date": "2021-02-12T04:07:18.000Z" - }, - "events": [ - { - "uuid": "5d97c689-ed63-42f5-b517-a4d91e0a70b8", - "start": { - "$date": "2021-02-12T03:01:17.000Z" - }, - "end": { - "$date": "2021-02-12T04:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "15ca2495-bb93-44b1-bf4c-775a7a391476", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-12T03:03:35.000Z" - }, - "end": { - "$date": "2021-02-12T04:27:27.000Z" - }, - "events": [ - { - "uuid": "0e3cf185-6894-40da-a487-63e997c050d6", - "start": { - "$date": "2021-02-12T03:03:35.000Z" - }, - "end": { - "$date": "2021-02-12T04:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "367e9245-c784-4af8-b34f-b6dac0dda497", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T03:58:00.000Z" - }, - "end": { - "$date": "2021-02-12T04:48:11.000Z" - }, - "events": [ - { - "uuid": "c6b669ff-c9b3-4fd2-96f6-5e332c8882f3", - "start": { - "$date": "2021-02-12T03:58:00.000Z" - }, - "end": { - "$date": "2021-02-12T04:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e780c8e-f41e-45ae-a60e-e5ce5414932a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T04:15:03.000Z" - }, - "end": { - "$date": "2021-02-12T04:50:14.000Z" - }, - "events": [ - { - "uuid": "46cda33a-385a-4187-a609-1d32372fbce9", - "start": { - "$date": "2021-02-12T04:15:03.000Z" - }, - "end": { - "$date": "2021-02-12T04:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "698a4f09-bd05-43dc-b510-4b7f1b648093", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-12T04:40:13.000Z" - }, - "end": { - "$date": "2021-02-12T05:02:00.000Z" - }, - "events": [ - { - "uuid": "474b2a08-5e84-40d3-89cb-d8ae78fab2b1", - "start": { - "$date": "2021-02-12T04:40:13.000Z" - }, - "end": { - "$date": "2021-02-12T05:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61ecef1e-583a-4b80-81b1-020386f95b4a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-12T04:07:18.000Z" - }, - "end": { - "$date": "2021-02-12T05:39:12.000Z" - }, - "events": [ - { - "uuid": "7af6b19e-0a1b-4abc-8273-6708b9a9513e", - "start": { - "$date": "2021-02-12T04:07:18.000Z" - }, - "end": { - "$date": "2021-02-12T05:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f03af139-cdd4-4da0-bb57-fe3aad7327e9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-12T04:50:17.000Z" - }, - "end": { - "$date": "2021-02-12T06:35:47.000Z" - }, - "events": [ - { - "uuid": "4da3c90f-a54b-4878-9829-743c894d5439", - "start": { - "$date": "2021-02-12T04:50:17.000Z" - }, - "end": { - "$date": "2021-02-12T06:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1dc0e64b-eee7-4714-8352-53ea8676e376", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T05:15:35.000Z" - }, - "end": { - "$date": "2021-02-12T05:39:10.000Z" - }, - "events": [ - { - "uuid": "020cc22d-04e0-4d19-8f8a-93322275f962", - "start": { - "$date": "2021-02-12T05:15:35.000Z" - }, - "end": { - "$date": "2021-02-12T05:39:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d84fac56-6cc6-4174-b74c-3fdee9769463", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T05:44:35.000Z" - }, - "end": { - "$date": "2021-02-12T06:00:19.000Z" - }, - "events": [ - { - "uuid": "152cfd87-4d41-4bef-9e23-7da4f3e8f527", - "start": { - "$date": "2021-02-12T05:44:35.000Z" - }, - "end": { - "$date": "2021-02-12T06:00:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e4b27d0-cc25-4d5d-a046-508863598d94", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-12T05:00:14.000Z" - }, - "end": { - "$date": "2021-02-12T05:30:15.000Z" - }, - "events": [ - { - "uuid": "f20c26b7-7ac5-4d92-b970-ffd579caf822", - "start": { - "$date": "2021-02-12T05:00:14.000Z" - }, - "end": { - "$date": "2021-02-12T05:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f04bd70-10bd-47dd-b616-d958eece53c7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-12T05:16:10.000Z" - }, - "end": { - "$date": "2021-02-12T05:39:02.000Z" - }, - "events": [ - { - "uuid": "266e72f8-b7fe-4c27-8d04-d7c939664a69", - "start": { - "$date": "2021-02-12T05:16:10.000Z" - }, - "end": { - "$date": "2021-02-12T05:39:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b8d7496-f7fe-414a-96b5-7c62d1a09dff", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-12T05:36:30.000Z" - }, - "end": { - "$date": "2021-02-12T06:09:50.000Z" - }, - "events": [ - { - "uuid": "6dd5f130-a5b4-43c6-b5a2-fa0fdecb7739", - "start": { - "$date": "2021-02-12T05:36:30.000Z" - }, - "end": { - "$date": "2021-02-12T06:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30999281-5f5f-48ed-b61d-7244f2d0780e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T05:41:26.000Z" - }, - "end": { - "$date": "2021-02-12T06:06:04.000Z" - }, - "events": [ - { - "uuid": "01690f6c-acf8-48f5-abdb-26cba1fd1814", - "start": { - "$date": "2021-02-12T05:41:26.000Z" - }, - "end": { - "$date": "2021-02-12T06:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67ea76c8-6323-4982-92ed-57bd5c1ae33d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-12T05:42:27.000Z" - }, - "end": { - "$date": "2021-02-12T06:05:59.000Z" - }, - "events": [ - { - "uuid": "c3116787-869c-4347-816a-5a656b9b6ad1", - "start": { - "$date": "2021-02-12T05:42:27.000Z" - }, - "end": { - "$date": "2021-02-12T06:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3aa1f434-4880-44eb-a2df-721c9fac21ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T06:00:35.000Z" - }, - "end": { - "$date": "2021-02-12T07:40:32.000Z" - }, - "events": [ - { - "uuid": "8cc0dc4f-8a67-4f94-a9fb-95c5f1aa9c1f", - "start": { - "$date": "2021-02-12T06:00:35.000Z" - }, - "end": { - "$date": "2021-02-12T07:40:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "681a12cf-f017-4248-bc81-012f8354190d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-12T14:09:12.000Z" - }, - "end": { - "$date": "2021-02-12T14:53:22.000Z" - }, - "events": [ - { - "uuid": "64c3cec7-1b62-41b3-a841-eb91a10ce96a", - "start": { - "$date": "2021-02-12T14:09:12.000Z" - }, - "end": { - "$date": "2021-02-12T14:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "01ad2063-abba-476a-8282-ccd7f6982efb", - "uuid": "549b4ef3-5edf-48a4-b668-21cfba323c36", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T15:08:39.000Z" - }, - "end": { - "$date": "2021-02-12T15:23:34.000Z" - }, - "events": [ - { - "uuid": "4d1839df-f69f-4d06-bb15-d91a17a0101a", - "start": { - "$date": "2021-02-12T15:08:39.000Z" - }, - "end": { - "$date": "2021-02-12T15:23:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "184a4c92-209c-4025-b08b-adee59ccf358", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T15:23:59.000Z" - }, - "end": { - "$date": "2021-02-12T15:57:30.000Z" - }, - "events": [ - { - "uuid": "e0e7481e-af66-49d0-86d2-7f0e44acd0aa", - "start": { - "$date": "2021-02-12T15:23:59.000Z" - }, - "end": { - "$date": "2021-02-12T15:57:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73f2fe57-1983-4a79-938e-dc7ef4ea8f42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T15:50:51.000Z" - }, - "end": { - "$date": "2021-02-12T16:22:25.000Z" - }, - "events": [ - { - "uuid": "8c6d2358-30fa-4d85-8b05-c1c751f6e182", - "start": { - "$date": "2021-02-12T15:50:51.000Z" - }, - "end": { - "$date": "2021-02-12T16:22:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "448eecdc-168b-44d4-afd9-cec6a1d58f0c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T15:58:00.000Z" - }, - "end": { - "$date": "2021-02-12T16:08:11.000Z" - }, - "events": [ - { - "uuid": "181ee82c-bba9-42c7-a0ac-3366120c6086", - "start": { - "$date": "2021-02-12T15:58:00.000Z" - }, - "end": { - "$date": "2021-02-12T16:08:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "251beab4-5e92-4dfd-af46-a671dd902b49", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T16:11:51.000Z" - }, - "end": { - "$date": "2021-02-12T16:33:12.000Z" - }, - "events": [ - { - "uuid": "651f6824-a14c-41fa-8cf2-1b502116f75e", - "start": { - "$date": "2021-02-12T16:11:51.000Z" - }, - "end": { - "$date": "2021-02-12T16:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c1cfa6d-e539-435f-9986-18741899e166", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T16:23:16.000Z" - }, - "end": { - "$date": "2021-02-12T16:59:05.000Z" - }, - "events": [ - { - "uuid": "7a46ca6d-2949-48f3-9b65-f1f381e3cc8d", - "start": { - "$date": "2021-02-12T16:23:16.000Z" - }, - "end": { - "$date": "2021-02-12T16:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9bb14e21-509c-437c-a67a-7b27d44d9d7b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T16:34:07.000Z" - }, - "end": { - "$date": "2021-02-12T17:30:58.000Z" - }, - "events": [ - { - "uuid": "6278387a-d5c8-4238-8e13-94870c818f71", - "start": { - "$date": "2021-02-12T16:34:07.000Z" - }, - "end": { - "$date": "2021-02-12T17:30:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4a46293e-6c56-40e8-9e8a-3926361f817b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T17:31:08.000Z" - }, - "end": { - "$date": "2021-02-12T17:43:29.000Z" - }, - "events": [ - { - "uuid": "65659726-f7c3-488d-9449-1eb024cc1b7e", - "start": { - "$date": "2021-02-12T17:31:08.000Z" - }, - "end": { - "$date": "2021-02-12T17:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "1359637b-324c-4391-98ad-3ca348a88f0a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T17:41:15.000Z" - }, - "end": { - "$date": "2021-02-12T17:47:26.000Z" - }, - "events": [ - { - "uuid": "3ad8b112-4444-4e84-87bb-4c481057e3df", - "start": { - "$date": "2021-02-12T17:41:15.000Z" - }, - "end": { - "$date": "2021-02-12T17:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "564ce8bd-fe1a-4cba-8d86-8527aa292be1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-12T17:42:31.000Z" - }, - "end": { - "$date": "2021-02-12T17:57:06.000Z" - }, - "events": [ - { - "uuid": "53f4de98-70f1-45f8-a3c3-4469747c1af7", - "start": { - "$date": "2021-02-12T17:42:31.000Z" - }, - "end": { - "$date": "2021-02-12T17:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "5b604042-5762-4d05-9ec3-4730983ac019", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T17:57:11.000Z" - }, - "end": { - "$date": "2021-02-12T18:13:23.000Z" - }, - "events": [ - { - "uuid": "72a067f7-68b7-4764-8c71-bc3ef5f4585a", - "start": { - "$date": "2021-02-12T17:57:11.000Z" - }, - "end": { - "$date": "2021-02-12T18:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "053dea26-b952-4c85-90ba-022d7c61c8fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T18:19:53.000Z" - }, - "end": { - "$date": "2021-02-12T19:01:23.000Z" - }, - "events": [ - { - "uuid": "2c7356e7-5aec-4f20-9df0-69e4afd187ae", - "start": { - "$date": "2021-02-12T18:19:53.000Z" - }, - "end": { - "$date": "2021-02-12T19:01:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b2d0c7f-9575-4620-8d8d-32cfb499fbfe", - "uuid": "b4898397-60b4-4f12-9801-e5b2580e6393", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T18:33:05.000Z" - }, - "end": { - "$date": "2021-02-12T19:02:50.000Z" - }, - "events": [ - { - "uuid": "8651887b-6554-455f-846d-406ea858698a", - "start": { - "$date": "2021-02-12T18:33:05.000Z" - }, - "end": { - "$date": "2021-02-12T19:02:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b2d0c7f-9575-4620-8d8d-32cfb499fbfe", - "uuid": "de339e4b-f141-4476-a418-ca8d107826e7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T19:02:55.000Z" - }, - "end": { - "$date": "2021-02-12T19:18:42.000Z" - }, - "events": [ - { - "uuid": "e6547ae0-60cf-4cb8-8171-73566b18c516", - "start": { - "$date": "2021-02-12T19:02:55.000Z" - }, - "end": { - "$date": "2021-02-12T19:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b372e881-2233-40fe-96c2-0dc10fd9bb30", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T19:19:07.000Z" - }, - "end": { - "$date": "2021-02-12T19:49:58.000Z" - }, - "events": [ - { - "uuid": "2ebd6d26-bdb5-4f4f-a508-c6a9d3cafcd7", - "start": { - "$date": "2021-02-12T19:19:07.000Z" - }, - "end": { - "$date": "2021-02-12T19:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c63c1d67-33ab-435b-801e-2a54d6b422cf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-12T19:39:44.000Z" - }, - "end": { - "$date": "2021-02-12T22:56:54.000Z" - }, - "events": [ - { - "uuid": "3885ffb8-83d6-4a2f-8742-831581e02755", - "start": { - "$date": "2021-02-12T19:39:44.000Z" - }, - "end": { - "$date": "2021-02-12T22:56:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "52ff1432-98cf-4a61-8407-1eb5265cd5ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-12T20:40:21.000Z" - }, - "end": { - "$date": "2021-02-12T22:25:26.000Z" - }, - "events": [ - { - "uuid": "bddd9693-e6c9-4a95-adc2-ccefc5628585", - "start": { - "$date": "2021-02-12T20:40:21.000Z" - }, - "end": { - "$date": "2021-02-12T22:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ea37112-d125-465e-ab36-4a149c158f1b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-12T20:52:04.000Z" - }, - "end": { - "$date": "2021-02-12T21:27:31.000Z" - }, - "events": [ - { - "uuid": "e3a76749-aa55-4c24-a318-53cf1dcd43bf", - "start": { - "$date": "2021-02-12T20:52:04.000Z" - }, - "end": { - "$date": "2021-02-12T21:27:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c1b061b5-45bd-4307-b6cc-d25ca714c67c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-12T21:13:29.000Z" - }, - "end": { - "$date": "2021-02-12T22:26:23.000Z" - }, - "events": [ - { - "uuid": "6fa0a65c-bce0-4b8a-b521-31d9dc3f3ee0", - "start": { - "$date": "2021-02-12T21:13:29.000Z" - }, - "end": { - "$date": "2021-02-12T22:26:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cfa19ae-6880-4e47-b692-54293e904a0a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-12T21:27:31.000Z" - }, - "end": { - "$date": "2021-02-12T23:27:26.000Z" - }, - "events": [ - { - "uuid": "9cbb4bbe-e2c6-49a0-b1b9-07df0103b895", - "start": { - "$date": "2021-02-12T21:27:31.000Z" - }, - "end": { - "$date": "2021-02-12T21:51:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a39c5fe8-2150-4dfd-b22e-d4201831cb3d", - "start": { - "$date": "2021-02-12T21:51:31.000Z" - }, - "end": { - "$date": "2021-02-12T21:56:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6bb32569-33e0-433f-be67-e3a3dec599a5", - "start": { - "$date": "2021-02-12T21:56:31.000Z" - }, - "end": { - "$date": "2021-02-12T22:01:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67c6b33d-2f0e-4c11-83d0-5e91f57ec91a", - "start": { - "$date": "2021-02-12T22:01:31.000Z" - }, - "end": { - "$date": "2021-02-12T22:02:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4b2907f-f502-4d32-882f-12baae3786a2", - "start": { - "$date": "2021-02-12T22:02:31.000Z" - }, - "end": { - "$date": "2021-02-12T22:13:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69f73b48-9526-425f-b5b6-5ba230f95829", - "start": { - "$date": "2021-02-12T22:13:31.000Z" - }, - "end": { - "$date": "2021-02-12T22:45:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69770949-44e1-4608-b724-ecc141dae4e0", - "start": { - "$date": "2021-02-12T22:45:31.000Z" - }, - "end": { - "$date": "2021-02-12T23:27:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "871da9b5-ac41-4f7f-b329-7b7a1ec0eb99", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T22:38:32.000Z" - }, - "end": { - "$date": "2021-02-12T23:19:38.000Z" - }, - "events": [ - { - "uuid": "3ae08a9b-b1fa-4ee6-8b38-cfd243bac9d4", - "start": { - "$date": "2021-02-12T22:38:32.000Z" - }, - "end": { - "$date": "2021-02-12T23:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "18174b36-d9ee-45e5-9b5b-4197a35b6d31", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-12T23:05:30.000Z" - }, - "end": { - "$date": "2021-02-13T01:45:15.000Z" - }, - "events": [ - { - "uuid": "9286a135-d236-4fba-8498-9359336809dc", - "start": { - "$date": "2021-02-12T23:05:30.000Z" - }, - "end": { - "$date": "2021-02-13T01:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b726eb40-cf6c-46ce-b0f0-5413f248a93b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T23:32:55.000Z" - }, - "end": { - "$date": "2021-02-12T23:50:36.000Z" - }, - "events": [ - { - "uuid": "aec579f1-c6d3-4f80-891b-d3e4bd62927e", - "start": { - "$date": "2021-02-12T23:32:55.000Z" - }, - "end": { - "$date": "2021-02-12T23:50:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e07e0e10-e618-4aca-9203-80faadbcfb2a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-12T23:32:47.000Z" - }, - "end": { - "$date": "2021-02-12T23:50:33.000Z" - }, - "events": [ - { - "uuid": "7efd4d1c-62a5-4f40-a020-7478c3d54cad", - "start": { - "$date": "2021-02-12T23:32:47.000Z" - }, - "end": { - "$date": "2021-02-12T23:50:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b83e4a7c-e15b-4231-83f5-409407eabf3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-12T23:55:30.000Z" - }, - "end": { - "$date": "2021-02-13T00:14:41.000Z" - }, - "events": [ - { - "uuid": "ab8199f1-7c10-415f-bf16-3e45ceff61c4", - "start": { - "$date": "2021-02-12T23:55:30.000Z" - }, - "end": { - "$date": "2021-02-13T00:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afa57b71-7251-496c-b400-2e5665e56833", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-12T23:55:53.000Z" - }, - "end": { - "$date": "2021-02-13T00:14:39.000Z" - }, - "events": [ - { - "uuid": "10fe428d-b267-4309-a72e-e5a8570223c6", - "start": { - "$date": "2021-02-12T23:55:53.000Z" - }, - "end": { - "$date": "2021-02-13T00:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "652a0948-3221-4c18-b685-dfa33ff471d0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T00:50:20.000Z" - }, - "end": { - "$date": "2021-02-13T01:12:51.000Z" - }, - "events": [ - { - "uuid": "7009480e-2028-43db-8ccf-2ad33a69190c", - "start": { - "$date": "2021-02-13T00:50:20.000Z" - }, - "end": { - "$date": "2021-02-13T01:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "74bf84a1-cabc-4d07-88b3-71e87be30828", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T00:54:42.000Z" - }, - "end": { - "$date": "2021-02-13T01:30:13.000Z" - }, - "events": [ - { - "uuid": "5a01e903-db8b-4ecf-b566-086ff61d7627", - "start": { - "$date": "2021-02-13T00:54:42.000Z" - }, - "end": { - "$date": "2021-02-13T01:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c24d5b85-7735-4acc-95a6-f65e6c93f13e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T01:14:53.000Z" - }, - "end": { - "$date": "2021-02-13T01:52:40.000Z" - }, - "events": [ - { - "uuid": "7f27a20d-3f72-4a10-8ac8-57c9f54e6ca8", - "start": { - "$date": "2021-02-13T01:14:53.000Z" - }, - "end": { - "$date": "2021-02-13T01:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba99b2ed-1c93-4a32-a99a-610622cc96fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T01:14:53.000Z" - }, - "end": { - "$date": "2021-02-13T01:54:04.000Z" - }, - "events": [ - { - "uuid": "a9975e48-5f8b-4507-936f-daa4cdc6e56c", - "start": { - "$date": "2021-02-13T01:14:53.000Z" - }, - "end": { - "$date": "2021-02-13T01:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2cacb24d-5aa8-4286-859d-7129c628325c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T01:23:34.000Z" - }, - "end": { - "$date": "2021-02-13T03:50:25.000Z" - }, - "events": [ - { - "uuid": "733ab21f-70cf-4feb-afe4-4453243a5b51", - "start": { - "$date": "2021-02-13T01:23:34.000Z" - }, - "end": { - "$date": "2021-02-13T03:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7f2d3b8d-508e-439e-9f18-b42898fdf518", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T01:46:00.000Z" - }, - "end": { - "$date": "2021-02-13T01:56:46.000Z" - }, - "events": [ - { - "uuid": "38bd86e6-baae-4f7e-a68a-0911d8a50923", - "start": { - "$date": "2021-02-13T01:46:00.000Z" - }, - "end": { - "$date": "2021-02-13T01:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "224b1100-d78d-480f-abf8-b0411f1f8da6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T01:55:12.000Z" - }, - "end": { - "$date": "2021-02-13T02:26:59.000Z" - }, - "events": [ - { - "uuid": "6cce31cb-6457-41c6-8ac1-f58d04d00893", - "start": { - "$date": "2021-02-13T01:55:12.000Z" - }, - "end": { - "$date": "2021-02-13T02:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee7fba55-29cd-47fb-a4a0-4c9f829584b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T01:55:56.000Z" - }, - "end": { - "$date": "2021-02-13T02:34:32.000Z" - }, - "events": [ - { - "uuid": "92a664ae-fa90-404e-ac88-ee25b3c07bcb", - "start": { - "$date": "2021-02-13T01:55:56.000Z" - }, - "end": { - "$date": "2021-02-13T02:34:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e661895-bb32-4d16-99fa-129a8561ce40", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T01:55:14.000Z" - }, - "end": { - "$date": "2021-02-13T02:34:30.000Z" - }, - "events": [ - { - "uuid": "ab450583-dada-4fc1-8309-7885fa7fad42", - "start": { - "$date": "2021-02-13T01:55:14.000Z" - }, - "end": { - "$date": "2021-02-13T02:34:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "890ae2a1-2abd-48ea-a5fc-eeb6b4a2c648", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T02:39:21.000Z" - }, - "end": { - "$date": "2021-02-13T02:57:27.000Z" - }, - "events": [ - { - "uuid": "552fba1b-60a0-4a70-be78-920c39384ea8", - "start": { - "$date": "2021-02-13T02:39:21.000Z" - }, - "end": { - "$date": "2021-02-13T02:57:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a168c4c0-8904-40a5-9fa2-b242f4f4623e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T02:39:18.000Z" - }, - "end": { - "$date": "2021-02-13T02:57:23.000Z" - }, - "events": [ - { - "uuid": "bf687668-1bb0-46cb-b566-74c9feac65ba", - "start": { - "$date": "2021-02-13T02:39:18.000Z" - }, - "end": { - "$date": "2021-02-13T02:57:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0e39e45-72cb-4acf-8bf7-3b10e86f9973", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T02:39:21.000Z" - }, - "end": { - "$date": "2021-02-13T02:57:32.000Z" - }, - "events": [ - { - "uuid": "a791640e-fd38-4e45-a307-9f66445d1f97", - "start": { - "$date": "2021-02-13T02:39:21.000Z" - }, - "end": { - "$date": "2021-02-13T02:57:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "37d97150-f39d-425f-88cd-f774057a806c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-13T02:41:08.000Z" - }, - "end": { - "$date": "2021-02-13T03:59:15.000Z" - }, - "events": [ - { - "uuid": "574774a9-ef6a-447a-8c60-9240a53d90a7", - "start": { - "$date": "2021-02-13T02:41:08.000Z" - }, - "end": { - "$date": "2021-02-13T03:59:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e1102729-2f7f-4f3f-9a1f-4954eff5b232", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T02:41:20.000Z" - }, - "end": { - "$date": "2021-02-13T02:44:30.000Z" - }, - "events": [ - { - "uuid": "d63f8ddc-72e6-4fdd-9eba-7c7f68363dec", - "start": { - "$date": "2021-02-13T02:41:20.000Z" - }, - "end": { - "$date": "2021-02-13T02:44:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a92ad32-fcc1-44dc-9953-aeaf28c61461", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T02:45:57.000Z" - }, - "end": { - "$date": "2021-02-13T04:00:19.000Z" - }, - "events": [ - { - "uuid": "2d0a8662-7d45-4c8c-a39b-58ef9f18bfe8", - "start": { - "$date": "2021-02-13T02:45:57.000Z" - }, - "end": { - "$date": "2021-02-13T04:00:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72c70453-1f09-4309-adb4-cedba201be80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T02:59:47.000Z" - }, - "end": { - "$date": "2021-02-13T03:21:39.000Z" - }, - "events": [ - { - "uuid": "77da7ee9-8f58-4b39-ab22-56f193557763", - "start": { - "$date": "2021-02-13T02:59:47.000Z" - }, - "end": { - "$date": "2021-02-13T03:21:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec34abce-ac3d-41c2-b985-3386ed44eaf8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T02:59:47.000Z" - }, - "end": { - "$date": "2021-02-13T03:21:33.000Z" - }, - "events": [ - { - "uuid": "24e42feb-b87d-4d01-b845-da571a17e8f5", - "start": { - "$date": "2021-02-13T02:59:47.000Z" - }, - "end": { - "$date": "2021-02-13T03:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6334e8a9-c065-46ce-9501-22eb47e977c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T03:00:43.000Z" - }, - "end": { - "$date": "2021-02-13T03:21:33.000Z" - }, - "events": [ - { - "uuid": "afeb9d15-2649-4be3-9d17-4a375e613fe4", - "start": { - "$date": "2021-02-13T03:00:43.000Z" - }, - "end": { - "$date": "2021-02-13T03:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b2cbc27-33f2-4c62-9b04-278e10317806", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T03:23:58.000Z" - }, - "end": { - "$date": "2021-02-13T03:43:53.000Z" - }, - "events": [ - { - "uuid": "cecc82ae-66be-4e56-8c9f-22498d7c72e9", - "start": { - "$date": "2021-02-13T03:23:58.000Z" - }, - "end": { - "$date": "2021-02-13T03:43:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70f56350-f4b4-43f9-8cf1-8aa4a42d510c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T03:24:33.000Z" - }, - "end": { - "$date": "2021-02-13T03:43:48.000Z" - }, - "events": [ - { - "uuid": "3ff03acf-76bb-4aaf-922d-9c85987f7bbb", - "start": { - "$date": "2021-02-13T03:24:33.000Z" - }, - "end": { - "$date": "2021-02-13T03:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "068465c8-287c-4268-9443-3f87d226caf8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T03:23:58.000Z" - }, - "end": { - "$date": "2021-02-13T03:43:49.000Z" - }, - "events": [ - { - "uuid": "f4a014b5-1f2d-4173-81b7-b1390bd62de1", - "start": { - "$date": "2021-02-13T03:23:58.000Z" - }, - "end": { - "$date": "2021-02-13T03:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fce4df6a-cf2c-4f9e-a8a4-e3d2d41f499c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T03:37:02.000Z" - }, - "end": { - "$date": "2021-02-13T04:39:53.000Z" - }, - "events": [ - { - "uuid": "5976b5a7-45f9-4785-91f4-94b714e30aec", - "start": { - "$date": "2021-02-13T03:37:02.000Z" - }, - "end": { - "$date": "2021-02-13T04:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2fa5428-db60-4f97-8076-035759eae186", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T04:49:54.000Z" - }, - "end": { - "$date": "2021-02-13T05:25:52.000Z" - }, - "events": [ - { - "uuid": "8dcc1912-8e2e-4ae1-a9f4-53223f532338", - "start": { - "$date": "2021-02-13T04:49:54.000Z" - }, - "end": { - "$date": "2021-02-13T05:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2db44aac-47bf-40f3-a342-1b3e387ba05d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T04:04:16.000Z" - }, - "end": { - "$date": "2021-02-13T04:34:02.000Z" - }, - "events": [ - { - "uuid": "90ffe548-d62a-4b2d-a148-5201b7c50f04", - "start": { - "$date": "2021-02-13T04:04:16.000Z" - }, - "end": { - "$date": "2021-02-13T04:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "42d71e51-310a-4d8f-9604-58821a1ef9a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T04:40:03.000Z" - }, - "end": { - "$date": "2021-02-13T05:19:24.000Z" - }, - "events": [ - { - "uuid": "6da9e1c5-1996-40d2-a43f-a90dbddd295c", - "start": { - "$date": "2021-02-13T04:40:03.000Z" - }, - "end": { - "$date": "2021-02-13T05:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b26d5b20-5f9b-4e44-bd09-1d446e95b4cf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-13T04:40:42.000Z" - }, - "end": { - "$date": "2021-02-13T05:22:08.000Z" - }, - "events": [ - { - "uuid": "2cd8a256-5ca9-4e2e-968c-6f8029941ca0", - "start": { - "$date": "2021-02-13T04:40:42.000Z" - }, - "end": { - "$date": "2021-02-13T05:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e62f6d63-8958-41d4-adf5-d6a78c6018a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T04:50:39.000Z" - }, - "end": { - "$date": "2021-02-13T05:25:47.000Z" - }, - "events": [ - { - "uuid": "ee03cfc8-8b30-4239-ba37-4254ee3c89e2", - "start": { - "$date": "2021-02-13T04:50:39.000Z" - }, - "end": { - "$date": "2021-02-13T05:25:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "073d92bf-0286-4f9d-b923-647a2e950250", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T05:41:38.000Z" - }, - "end": { - "$date": "2021-02-13T06:00:03.000Z" - }, - "events": [ - { - "uuid": "bd72c275-ecc1-4387-b9b2-fe65bc7f66d5", - "start": { - "$date": "2021-02-13T05:41:38.000Z" - }, - "end": { - "$date": "2021-02-13T06:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "535240c4-c14d-41f8-b650-2bfe8efa55d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T05:37:44.000Z" - }, - "end": { - "$date": "2021-02-13T07:33:58.000Z" - }, - "events": [ - { - "uuid": "7bf1d0ae-53a9-48e2-85a9-9061d637de13", - "start": { - "$date": "2021-02-13T05:37:44.000Z" - }, - "end": { - "$date": "2021-02-13T07:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b35a0052-3dd2-4fd2-9beb-8f4f719a9091", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T05:42:13.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:46.000Z" - }, - "events": [ - { - "uuid": "84d7431e-334f-430b-b409-54d68ff2d319", - "start": { - "$date": "2021-02-13T05:42:13.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd559124-85e2-4c5c-884f-c57a03cc6e2a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T05:41:34.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:44.000Z" - }, - "events": [ - { - "uuid": "9b04ccd5-2958-4635-889d-b7410114d01e", - "start": { - "$date": "2021-02-13T05:41:34.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "282d0aa1-1447-47fb-84bc-091caa1afd02", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T05:41:52.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:44.000Z" - }, - "events": [ - { - "uuid": "51a22a26-abec-4ef5-a404-3500111e899b", - "start": { - "$date": "2021-02-13T05:41:52.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "374bd4ab-9e1c-4cae-8ba9-eea5269dac55", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-13T05:41:35.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:50.000Z" - }, - "events": [ - { - "uuid": "9cc96b58-5252-43f1-bdb8-d2413fe52004", - "start": { - "$date": "2021-02-13T05:41:35.000Z" - }, - "end": { - "$date": "2021-02-13T05:59:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43ad2248-dc97-4d92-8759-502c9edb0ce0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T06:06:24.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:05.000Z" - }, - "events": [ - { - "uuid": "aa689cee-eacb-4365-b43d-a68080eb052a", - "start": { - "$date": "2021-02-13T06:06:24.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc143704-669e-4d45-a22d-5abe26af013c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T06:07:57.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:02.000Z" - }, - "events": [ - { - "uuid": "df49ff55-4633-4a32-84ef-38cfbeaee019", - "start": { - "$date": "2021-02-13T06:07:57.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f4819e8-1082-4a1f-9c5c-fd32dc61a391", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-13T06:06:25.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:10.000Z" - }, - "events": [ - { - "uuid": "f8335167-679c-4fe0-9af1-8a90ce7d5c47", - "start": { - "$date": "2021-02-13T06:06:25.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adea1972-dbde-40c8-a6da-72c6c494dbb4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T06:07:18.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:05.000Z" - }, - "events": [ - { - "uuid": "f7f4ce2e-16e0-4d86-a529-189caac022d9", - "start": { - "$date": "2021-02-13T06:07:18.000Z" - }, - "end": { - "$date": "2021-02-13T06:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a2cd762-f25e-472d-8ad4-b181804d19bf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T06:26:23.000Z" - }, - "end": { - "$date": "2021-02-13T06:27:44.000Z" - }, - "events": [ - { - "uuid": "dc0ac7e6-371f-423a-97f3-b1538ccd3e9d", - "start": { - "$date": "2021-02-13T06:26:23.000Z" - }, - "end": { - "$date": "2021-02-13T06:27:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78beb5ab-31da-4723-af66-37ad9ed24089", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T06:30:53.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:20.000Z" - }, - "events": [ - { - "uuid": "1fa581e4-4050-4181-a7de-79d362bca16f", - "start": { - "$date": "2021-02-13T06:30:53.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dae0b8c0-af93-41be-a84c-549eb5a54024", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T06:31:13.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:23.000Z" - }, - "events": [ - { - "uuid": "15480c90-163d-43aa-b848-de82952899f9", - "start": { - "$date": "2021-02-13T06:31:13.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e975457-b3f9-4648-ba22-25c89c0c2c83", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T06:30:46.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:27.000Z" - }, - "events": [ - { - "uuid": "e1c0ed1c-7070-4ea2-91cf-2566ac83ae2a", - "start": { - "$date": "2021-02-13T06:30:46.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4341d7a6-06da-4132-be1b-8b5b1df5401e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-13T06:30:46.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:26.000Z" - }, - "events": [ - { - "uuid": "1b0898d8-d5e6-4ab5-abda-92285ac03650", - "start": { - "$date": "2021-02-13T06:30:46.000Z" - }, - "end": { - "$date": "2021-02-13T06:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80d1c651-a256-468e-99f0-e831c396fe3d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T06:51:04.000Z" - }, - "end": { - "$date": "2021-02-13T06:52:05.000Z" - }, - "events": [ - { - "uuid": "225e5d7f-7046-45c6-ac76-286614d3387f", - "start": { - "$date": "2021-02-13T06:51:04.000Z" - }, - "end": { - "$date": "2021-02-13T06:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "854325b7-484f-4826-9080-7cd75f199403", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T06:56:24.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:57.000Z" - }, - "events": [ - { - "uuid": "e36a8a21-949b-4e34-a9e7-80b1f65ef1c9", - "start": { - "$date": "2021-02-13T06:56:24.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cb2cd99-e02d-4379-b4be-af971694dabf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T06:56:49.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:49.000Z" - }, - "events": [ - { - "uuid": "fc1c4349-f558-4d32-a698-38cafeab7e85", - "start": { - "$date": "2021-02-13T06:56:49.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fefa1923-8017-4482-b3dc-1003a9b91384", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T06:56:28.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:54.000Z" - }, - "events": [ - { - "uuid": "229a720f-eb1f-4dc8-8076-6286d6994c6d", - "start": { - "$date": "2021-02-13T06:56:28.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e927fdd-93f7-46d5-9296-cfbb6e7639ef", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-13T06:56:27.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:57.000Z" - }, - "events": [ - { - "uuid": "3ef040db-90d4-43ad-b918-ce84fc60c59b", - "start": { - "$date": "2021-02-13T06:56:27.000Z" - }, - "end": { - "$date": "2021-02-13T07:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "4ea54bba-b20b-4372-a0ae-f1567b572183", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T06:55:47.000Z" - }, - "end": { - "$date": "2021-02-13T08:03:12.000Z" - }, - "events": [ - { - "uuid": "82e804ad-133f-47ec-80ff-5497dfde40a8", - "start": { - "$date": "2021-02-13T06:55:47.000Z" - }, - "end": { - "$date": "2021-02-13T08:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "b53266f3-d15e-40fe-ba6b-d5adf619232a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T07:00:14.000Z" - }, - "end": { - "$date": "2021-02-13T07:02:04.000Z" - }, - "events": [ - { - "uuid": "953ee21e-e3ea-4dd9-9f87-508e63c3c4eb", - "start": { - "$date": "2021-02-13T07:00:14.000Z" - }, - "end": { - "$date": "2021-02-13T07:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7a5ae179-571c-4ef7-9110-88582f6ac1b6", - "uuid": "f680c496-4aeb-4ed5-b244-37882277609a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T07:02:14.000Z" - }, - "end": { - "$date": "2021-02-13T08:04:21.000Z" - }, - "events": [ - { - "uuid": "ec77a061-817d-4f94-99a8-ac7a82aa6864", - "start": { - "$date": "2021-02-13T07:02:14.000Z" - }, - "end": { - "$date": "2021-02-13T08:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b343cc22-79b4-43b5-8a6e-497f9c7323b3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T07:24:20.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:55.000Z" - }, - "events": [ - { - "uuid": "c1a045dc-22bd-43ff-9279-5fafc6a53cfd", - "start": { - "$date": "2021-02-13T07:24:20.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15003b58-cef3-4422-adc9-5585ac41dfdf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T07:24:20.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:55.000Z" - }, - "events": [ - { - "uuid": "6b8bb273-5f5a-4864-9bfa-d1b2254f0de9", - "start": { - "$date": "2021-02-13T07:24:20.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73a7d0d3-2141-4de3-8652-5500934f296e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T07:24:20.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:52.000Z" - }, - "events": [ - { - "uuid": "92694a78-0211-44cd-b6d3-98ee8a61dc72", - "start": { - "$date": "2021-02-13T07:24:20.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd1757fc-2d5f-4781-b701-f3bdbd8959ca", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-13T07:24:22.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:53.000Z" - }, - "events": [ - { - "uuid": "ae046d07-2877-4d54-858f-e2cd706fb2dc", - "start": { - "$date": "2021-02-13T07:24:22.000Z" - }, - "end": { - "$date": "2021-02-13T07:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bbbdbde-5842-4c7f-8470-f9178ab78874", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T08:36:47.000Z" - }, - "end": { - "$date": "2021-02-13T08:59:46.000Z" - }, - "events": [ - { - "uuid": "8d07d956-5de5-4e83-952f-069322247f78", - "start": { - "$date": "2021-02-13T08:36:47.000Z" - }, - "end": { - "$date": "2021-02-13T08:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2677a96f-c9cb-43ab-9da2-dfe965f877dc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T09:06:59.000Z" - }, - "end": { - "$date": "2021-02-13T09:41:11.000Z" - }, - "events": [ - { - "uuid": "531be920-b01b-4e60-9685-d8bfad4c7f6d", - "start": { - "$date": "2021-02-13T09:06:59.000Z" - }, - "end": { - "$date": "2021-02-13T09:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74063db2-a716-4755-93d8-8366ebc09df3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-13T09:51:46.000Z" - }, - "end": { - "$date": "2021-02-13T10:23:52.000Z" - }, - "events": [ - { - "uuid": "d3e14cb2-0f61-4299-aeb7-3a6706876042", - "start": { - "$date": "2021-02-13T09:51:46.000Z" - }, - "end": { - "$date": "2021-02-13T10:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "f0f74410-d4de-4743-8b9b-0a2eaed7c05b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T16:47:46.000Z" - }, - "end": { - "$date": "2021-02-13T17:47:32.000Z" - }, - "events": [ - { - "uuid": "2bbdac89-69e1-4cd9-804c-cf7f8e04c6a7", - "start": { - "$date": "2021-02-13T16:47:46.000Z" - }, - "end": { - "$date": "2021-02-13T17:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09e46601-510e-4738-b306-6c44c827b4ed", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T17:48:12.000Z" - }, - "end": { - "$date": "2021-02-13T18:39:53.000Z" - }, - "events": [ - { - "uuid": "7766dc27-1e70-4e77-a57e-d64ca2da6c57", - "start": { - "$date": "2021-02-13T17:48:12.000Z" - }, - "end": { - "$date": "2021-02-13T18:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "43beb117-be2c-4a46-a125-34423a0ed479", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T18:04:04.000Z" - }, - "end": { - "$date": "2021-02-13T18:29:24.000Z" - }, - "events": [ - { - "uuid": "08d04f5e-a7b9-42f9-a8fb-a6edf09d4134", - "start": { - "$date": "2021-02-13T18:04:04.000Z" - }, - "end": { - "$date": "2021-02-13T18:29:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e18e6a75-a991-4663-bbc8-1ad4e1a72e8c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T18:38:28.000Z" - }, - "end": { - "$date": "2021-02-13T20:58:29.000Z" - }, - "events": [ - { - "uuid": "3b1597c1-e7c8-4416-b91c-855827832724", - "start": { - "$date": "2021-02-13T18:38:28.000Z" - }, - "end": { - "$date": "2021-02-13T19:41:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "139243f7-9042-47ee-88fd-574ffcb30ebd", - "start": { - "$date": "2021-02-13T19:41:28.000Z" - }, - "end": { - "$date": "2021-02-13T19:46:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "25ba746e-69f6-4278-9242-40376b151638", - "start": { - "$date": "2021-02-13T19:46:28.000Z" - }, - "end": { - "$date": "2021-02-13T20:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "85a50f37-3506-4f29-ad4a-04291f6a2667", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T18:39:58.000Z" - }, - "end": { - "$date": "2021-02-13T18:56:09.000Z" - }, - "events": [ - { - "uuid": "5d72d0cf-42ba-4c06-8a0f-47cfa416446d", - "start": { - "$date": "2021-02-13T18:39:58.000Z" - }, - "end": { - "$date": "2021-02-13T18:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "95c60951-6b59-4476-a080-eaf2ed4cb700", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T19:30:56.000Z" - }, - "end": { - "$date": "2021-02-13T20:14:52.000Z" - }, - "events": [ - { - "uuid": "4e3c6a43-1856-4bba-b033-d4378ea5a5da", - "start": { - "$date": "2021-02-13T19:30:56.000Z" - }, - "end": { - "$date": "2021-02-13T20:14:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "251385b7-a481-4186-ba86-682d19c7eb84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T20:07:01.000Z" - }, - "end": { - "$date": "2021-02-13T20:33:46.000Z" - }, - "events": [ - { - "uuid": "87d52cba-6b4f-41ff-8818-56e9c6b46625", - "start": { - "$date": "2021-02-13T20:07:01.000Z" - }, - "end": { - "$date": "2021-02-13T20:33:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3959d5cc-cf3e-430e-8f0a-f6f8536a52dd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-13T20:15:23.000Z" - }, - "end": { - "$date": "2021-02-13T20:38:26.000Z" - }, - "events": [ - { - "uuid": "97d1132a-02ca-4336-8fb8-c10e22a05055", - "start": { - "$date": "2021-02-13T20:15:23.000Z" - }, - "end": { - "$date": "2021-02-13T20:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b0b4831d-69ec-49bc-aa87-c0a19a6c7aa8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T20:19:17.000Z" - }, - "end": { - "$date": "2021-02-13T20:58:20.000Z" - }, - "events": [ - { - "uuid": "ba3e060b-4829-4847-b4d7-f92c0ca91e9e", - "start": { - "$date": "2021-02-13T20:19:17.000Z" - }, - "end": { - "$date": "2021-02-13T20:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3fee0f69-806c-4800-9794-47e84d97e3ed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T21:02:17.000Z" - }, - "end": { - "$date": "2021-02-13T21:03:27.000Z" - }, - "events": [ - { - "uuid": "a43f02c2-8fa9-4357-8885-0fd0a584710b", - "start": { - "$date": "2021-02-13T21:02:17.000Z" - }, - "end": { - "$date": "2021-02-13T21:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9a772065-e769-45b3-ade6-88635da66571", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T21:03:43.000Z" - }, - "end": { - "$date": "2021-02-13T22:40:41.000Z" - }, - "events": [ - { - "uuid": "bb1ab210-7df2-4da0-919c-743f66286bd2", - "start": { - "$date": "2021-02-13T21:03:43.000Z" - }, - "end": { - "$date": "2021-02-13T22:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cae9724c-0a91-4771-a235-b24f6b197fea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T21:13:33.000Z" - }, - "end": { - "$date": "2021-02-13T21:40:15.000Z" - }, - "events": [ - { - "uuid": "e2866b26-ba87-4ea7-8f18-7b568d1d1b0a", - "start": { - "$date": "2021-02-13T21:13:33.000Z" - }, - "end": { - "$date": "2021-02-13T21:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf274910-25f7-413e-8f5a-cb4c4cf89b9e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T21:08:32.000Z" - }, - "end": { - "$date": "2021-02-13T21:10:10.000Z" - }, - "events": [ - { - "uuid": "8d194fdf-9cb7-4ee7-9c99-dcfdf441cf3f", - "start": { - "$date": "2021-02-13T21:08:32.000Z" - }, - "end": { - "$date": "2021-02-13T21:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "85cc1286-5e77-485d-9912-ea5c521ab6d9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-13T21:08:36.000Z" - }, - "end": { - "$date": "2021-02-13T21:42:42.000Z" - }, - "events": [ - { - "uuid": "f58aee56-b96a-46a5-af23-a13e4ec22209", - "start": { - "$date": "2021-02-13T21:08:36.000Z" - }, - "end": { - "$date": "2021-02-13T21:42:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2edf9b4-4147-4f55-a17c-a6e85aef6935", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T21:10:15.000Z" - }, - "end": { - "$date": "2021-02-13T21:11:35.000Z" - }, - "events": [ - { - "uuid": "b624c18c-6a91-468c-8ef4-004d383ef371", - "start": { - "$date": "2021-02-13T21:10:15.000Z" - }, - "end": { - "$date": "2021-02-13T21:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9fe7976-2ef7-4d7e-98ce-d85827d69c34", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T21:13:30.000Z" - }, - "end": { - "$date": "2021-02-13T21:42:28.000Z" - }, - "events": [ - { - "uuid": "10dba376-b909-4fdb-b585-242b88d63379", - "start": { - "$date": "2021-02-13T21:13:30.000Z" - }, - "end": { - "$date": "2021-02-13T21:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "92d0d64f-2f15-496e-b5d7-c3f8e46a279f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T21:24:01.000Z" - }, - "end": { - "$date": "2021-02-13T21:28:47.000Z" - }, - "events": [ - { - "uuid": "c41e6a3e-f6e8-4a78-8209-1d2cb1ad1a5d", - "start": { - "$date": "2021-02-13T21:24:01.000Z" - }, - "end": { - "$date": "2021-02-13T21:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a5a9fade-815c-40be-9adf-7dd9aed17371", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T21:28:57.000Z" - }, - "end": { - "$date": "2021-02-13T22:43:49.000Z" - }, - "events": [ - { - "uuid": "0873bed5-826f-4bdb-b6af-6efeaa70dc05", - "start": { - "$date": "2021-02-13T21:28:57.000Z" - }, - "end": { - "$date": "2021-02-13T22:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "375e2fac-eba2-4bfe-a30d-7219d11d3c22", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T21:50:57.000Z" - }, - "end": { - "$date": "2021-02-13T22:26:37.000Z" - }, - "events": [ - { - "uuid": "1a8a0052-a29d-4a9c-b8c0-c02a6b3cb423", - "start": { - "$date": "2021-02-13T21:50:57.000Z" - }, - "end": { - "$date": "2021-02-13T22:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ead3af97-2438-490f-bddb-bc90b49c6382", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T21:50:52.000Z" - }, - "end": { - "$date": "2021-02-13T22:26:28.000Z" - }, - "events": [ - { - "uuid": "8ee29c86-89e4-4220-9816-ff024479a798", - "start": { - "$date": "2021-02-13T21:50:52.000Z" - }, - "end": { - "$date": "2021-02-13T22:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2772143-b4e0-42e4-bb86-133dfbd8310b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-13T21:50:46.000Z" - }, - "end": { - "$date": "2021-02-13T22:27:55.000Z" - }, - "events": [ - { - "uuid": "36c25f8f-79f5-40ea-af0d-b255026ad1d5", - "start": { - "$date": "2021-02-13T21:50:46.000Z" - }, - "end": { - "$date": "2021-02-13T22:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "ab7ae9a0-0e6a-4c05-8183-313c7a027c0b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-13T22:02:23.000Z" - }, - "end": { - "$date": "2021-02-13T22:17:00.000Z" - }, - "events": [ - { - "uuid": "3273a7b0-87d7-49ac-9b70-96159d49d7eb", - "start": { - "$date": "2021-02-13T22:02:23.000Z" - }, - "end": { - "$date": "2021-02-13T22:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "e5de9a73-4f37-4a79-8865-d94cac95e3d9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-13T22:23:40.000Z" - }, - "end": { - "$date": "2021-02-14T03:45:10.000Z" - }, - "events": [ - { - "uuid": "ba4d35b6-22c0-4a42-b4ec-db9730ef0e5f", - "start": { - "$date": "2021-02-13T22:23:40.000Z" - }, - "end": { - "$date": "2021-02-14T03:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "8712ae79-856e-4d60-b2a2-d33e9df4dc5c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T22:30:13.000Z" - }, - "end": { - "$date": "2021-02-13T23:29:26.000Z" - }, - "events": [ - { - "uuid": "b0616ac2-e1a9-4001-846d-3ea98a0740ee", - "start": { - "$date": "2021-02-13T22:30:13.000Z" - }, - "end": { - "$date": "2021-02-13T23:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2152b373-8541-420e-9070-bd0a2868fc72", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T22:43:25.000Z" - }, - "end": { - "$date": "2021-02-13T23:05:50.000Z" - }, - "events": [ - { - "uuid": "d507cc9f-508e-4617-a30e-bb5db9d7a36b", - "start": { - "$date": "2021-02-13T22:43:25.000Z" - }, - "end": { - "$date": "2021-02-13T23:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9b7c930-7e27-4319-a913-7f4766198df1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-13T23:07:55.000Z" - }, - "end": { - "$date": "2021-02-13T23:25:40.000Z" - }, - "events": [ - { - "uuid": "dd2eef24-860c-4919-8535-180aee662dc0", - "start": { - "$date": "2021-02-13T23:07:55.000Z" - }, - "end": { - "$date": "2021-02-13T23:25:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5416862d-d491-455d-b77e-b2afc23932fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T23:11:16.000Z" - }, - "end": { - "$date": "2021-02-13T23:30:42.000Z" - }, - "events": [ - { - "uuid": "e3924f15-779b-4c38-bdc7-c9452dd078b6", - "start": { - "$date": "2021-02-13T23:11:16.000Z" - }, - "end": { - "$date": "2021-02-13T23:30:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cfe3ff26-562b-4e30-b7ab-08b036555c6f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-13T23:28:08.000Z" - }, - "end": { - "$date": "2021-02-13T23:31:18.000Z" - }, - "events": [ - { - "uuid": "27e440a1-edc1-41b7-8906-debfec8f6023", - "start": { - "$date": "2021-02-13T23:28:08.000Z" - }, - "end": { - "$date": "2021-02-13T23:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "77d21fec-4625-41a2-86ae-2a55cf65dc78", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T23:32:07.000Z" - }, - "end": { - "$date": "2021-02-13T23:53:17.000Z" - }, - "events": [ - { - "uuid": "ef5c2e31-d1f8-44f6-b0cd-855a80aec289", - "start": { - "$date": "2021-02-13T23:32:07.000Z" - }, - "end": { - "$date": "2021-02-13T23:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb48aff7-951f-4a56-b281-cebea3c6e03a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T23:39:21.000Z" - }, - "end": { - "$date": "2021-02-13T23:55:38.000Z" - }, - "events": [ - { - "uuid": "bb2a0e24-8d40-44ae-a2d1-a5219d45a794", - "start": { - "$date": "2021-02-13T23:39:21.000Z" - }, - "end": { - "$date": "2021-02-13T23:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f1847dca-e19f-46fb-825c-a1fdfc5670d0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-13T23:53:32.000Z" - }, - "end": { - "$date": "2021-02-14T00:07:52.000Z" - }, - "events": [ - { - "uuid": "aa51a51e-6e24-442a-a7fc-a00ed7a90ed4", - "start": { - "$date": "2021-02-13T23:53:32.000Z" - }, - "end": { - "$date": "2021-02-14T00:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17af7163-d838-4350-85c0-1988e4786191", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-13T23:58:08.000Z" - }, - "end": { - "$date": "2021-02-14T00:17:32.000Z" - }, - "events": [ - { - "uuid": "71753ead-443e-49cb-946c-45c22c41863b", - "start": { - "$date": "2021-02-13T23:58:08.000Z" - }, - "end": { - "$date": "2021-02-14T00:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "f0e5f146-c516-4573-a81d-7ae6d2d40a0b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-14T00:08:32.000Z" - }, - "end": { - "$date": "2021-02-14T01:30:09.000Z" - }, - "events": [ - { - "uuid": "229d281f-3da8-4e01-bf4b-52845cd40c20", - "start": { - "$date": "2021-02-14T00:08:32.000Z" - }, - "end": { - "$date": "2021-02-14T01:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "880ffa5c-be2d-4d53-ab1c-07142861df5f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-14T00:11:02.000Z" - }, - "end": { - "$date": "2021-02-14T01:35:09.000Z" - }, - "events": [ - { - "uuid": "24a3a606-282d-4520-8f10-b868fe0acad1", - "start": { - "$date": "2021-02-14T00:11:02.000Z" - }, - "end": { - "$date": "2021-02-14T01:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "806245bc-9394-4ecd-8429-37b655f38487", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T00:19:33.000Z" - }, - "end": { - "$date": "2021-02-14T00:44:50.000Z" - }, - "events": [ - { - "uuid": "80751411-20bf-4689-8760-6f2394cff631", - "start": { - "$date": "2021-02-14T00:19:33.000Z" - }, - "end": { - "$date": "2021-02-14T00:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d036d8a-a201-473c-826a-ccbca8088a3d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T00:42:13.000Z" - }, - "end": { - "$date": "2021-02-14T01:23:18.000Z" - }, - "events": [ - { - "uuid": "4034535b-86f8-4efc-a940-a842a54332bf", - "start": { - "$date": "2021-02-14T00:42:13.000Z" - }, - "end": { - "$date": "2021-02-14T01:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c52bd6d-e27d-4f58-9be5-9dbbffb2eb6d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T02:20:01.000Z" - }, - "end": { - "$date": "2021-02-14T03:07:13.000Z" - }, - "events": [ - { - "uuid": "f117d96b-04a8-4c5e-82f2-18508a9189f7", - "start": { - "$date": "2021-02-14T02:20:01.000Z" - }, - "end": { - "$date": "2021-02-14T03:03:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19e527e6-0292-499e-a430-1d0d1e374df4", - "start": { - "$date": "2021-02-14T03:03:01.000Z" - }, - "end": { - "$date": "2021-02-14T03:05:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2fe06af9-2787-4ad1-a3d8-0c0da5f9bd9e", - "start": { - "$date": "2021-02-14T03:05:01.000Z" - }, - "end": { - "$date": "2021-02-14T03:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31371c93-d71f-4e87-b40b-e32e0694d61f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T02:27:13.000Z" - }, - "end": { - "$date": "2021-02-14T02:42:56.000Z" - }, - "events": [ - { - "uuid": "f303cd05-42df-4c25-af89-b8cdbf8663c1", - "start": { - "$date": "2021-02-14T02:27:13.000Z" - }, - "end": { - "$date": "2021-02-14T02:42:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "82dd3548-f9a9-48fe-8150-ba14bc2b7845", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-14T02:39:27.000Z" - }, - "end": { - "$date": "2021-02-14T03:50:17.000Z" - }, - "events": [ - { - "uuid": "a241e1b0-b157-4f42-813e-1f9fca9f859e", - "start": { - "$date": "2021-02-14T02:39:27.000Z" - }, - "end": { - "$date": "2021-02-14T03:50:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4c03c09-9463-4b9e-8042-992587e8f35b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T02:47:25.000Z" - }, - "end": { - "$date": "2021-02-14T03:05:52.000Z" - }, - "events": [ - { - "uuid": "a4b061df-b6c1-49bc-8ddd-c7bb59ab6ba8", - "start": { - "$date": "2021-02-14T02:47:25.000Z" - }, - "end": { - "$date": "2021-02-14T03:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ac005f9-c0fb-4c33-882b-ce3308b34c32", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T02:47:26.000Z" - }, - "end": { - "$date": "2021-02-14T03:05:46.000Z" - }, - "events": [ - { - "uuid": "20eb1cf7-022c-40d6-9d39-34b069b8f363", - "start": { - "$date": "2021-02-14T02:47:26.000Z" - }, - "end": { - "$date": "2021-02-14T03:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "821a45fb-5ee3-4d2c-bcca-b44d0940b6d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T03:10:21.000Z" - }, - "end": { - "$date": "2021-02-14T03:24:46.000Z" - }, - "events": [ - { - "uuid": "4f62e7db-e460-49c4-80fa-29d0ab43952f", - "start": { - "$date": "2021-02-14T03:10:21.000Z" - }, - "end": { - "$date": "2021-02-14T03:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "590ddabb-82e7-44eb-85d1-fe7532600637", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T03:10:11.000Z" - }, - "end": { - "$date": "2021-02-14T03:24:31.000Z" - }, - "events": [ - { - "uuid": "6aeacc98-97f9-4f02-a564-76ca1c3e399f", - "start": { - "$date": "2021-02-14T03:10:11.000Z" - }, - "end": { - "$date": "2021-02-14T03:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab108cfb-0911-42f6-b811-4eadd654486c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T03:10:17.000Z" - }, - "end": { - "$date": "2021-02-14T03:24:37.000Z" - }, - "events": [ - { - "uuid": "6264ebfc-656e-44c8-885e-7422eb0e38ac", - "start": { - "$date": "2021-02-14T03:10:17.000Z" - }, - "end": { - "$date": "2021-02-14T03:24:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5406c72e-6367-4c40-ae7c-b17395623793", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T03:50:37.000Z" - }, - "end": { - "$date": "2021-02-14T03:50:44.000Z" - }, - "events": [ - { - "uuid": "c1aafae5-c9ae-42bf-a491-c6ea4af585a7", - "start": { - "$date": "2021-02-14T03:50:37.000Z" - }, - "end": { - "$date": "2021-02-14T03:50:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e44fc3d-ee7e-4556-95bf-838c2b2743a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T04:54:51.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:54.000Z" - }, - "events": [ - { - "uuid": "b1df90f5-9929-4bd5-a060-6902cf883878", - "start": { - "$date": "2021-02-14T04:54:51.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3a3e1b3-e0d2-4141-8434-b7a356048068", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T03:26:28.000Z" - }, - "end": { - "$date": "2021-02-14T03:50:38.000Z" - }, - "events": [ - { - "uuid": "2324f484-717e-4e71-aa51-1ccfdeb8b9a5", - "start": { - "$date": "2021-02-14T03:26:28.000Z" - }, - "end": { - "$date": "2021-02-14T03:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "574df2f0-9c96-426a-9bc7-1a52267330dd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-14T03:43:19.000Z" - }, - "end": { - "$date": "2021-02-14T04:05:40.000Z" - }, - "events": [ - { - "uuid": "f582677c-d848-4390-9aae-2d1181627e79", - "start": { - "$date": "2021-02-14T03:43:19.000Z" - }, - "end": { - "$date": "2021-02-14T04:05:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e846441-d184-4343-8210-641ff747a9e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T04:07:53.000Z" - }, - "end": { - "$date": "2021-02-14T04:07:52.000Z" - }, - "events": [ - { - "uuid": "b84ecea8-01d8-43d2-8efe-60cbd70c23f5", - "start": { - "$date": "2021-02-14T04:07:53.000Z" - }, - "end": { - "$date": "2021-02-14T04:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "884fec06-db21-4064-8fd3-155ab482efcd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T03:52:34.000Z" - }, - "end": { - "$date": "2021-02-14T04:07:59.000Z" - }, - "events": [ - { - "uuid": "f09f0475-5ce1-4e4b-8dca-1e3fd6ede96f", - "start": { - "$date": "2021-02-14T03:52:34.000Z" - }, - "end": { - "$date": "2021-02-14T04:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1471aef8-3bd0-483a-923b-d8380f7e4c82", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-14T03:58:43.000Z" - }, - "end": { - "$date": "2021-02-14T05:03:22.000Z" - }, - "events": [ - { - "uuid": "797f9263-bb84-4fd7-a0e3-aea28cfa14ab", - "start": { - "$date": "2021-02-14T03:58:43.000Z" - }, - "end": { - "$date": "2021-02-14T05:03:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "41d40592-4e32-484c-9cca-2d06b917f631", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-14T04:06:00.000Z" - }, - "end": { - "$date": "2021-02-14T05:23:49.000Z" - }, - "events": [ - { - "uuid": "98a93120-3859-412e-98c9-da300a0b3875", - "start": { - "$date": "2021-02-14T04:06:00.000Z" - }, - "end": { - "$date": "2021-02-14T05:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4afe7255-3c0d-44a7-84d5-2bf017e1758f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T04:11:28.000Z" - }, - "end": { - "$date": "2021-02-14T04:34:16.000Z" - }, - "events": [ - { - "uuid": "6871c05a-f1bc-4bcd-807a-5700b3534cbb", - "start": { - "$date": "2021-02-14T04:11:28.000Z" - }, - "end": { - "$date": "2021-02-14T04:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3747990a-f6f7-4a69-a6ef-c4675bd21026", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T04:12:05.000Z" - }, - "end": { - "$date": "2021-02-14T04:34:16.000Z" - }, - "events": [ - { - "uuid": "7e6d6ce8-9812-4a3b-ae0a-29bc8c444c7c", - "start": { - "$date": "2021-02-14T04:12:05.000Z" - }, - "end": { - "$date": "2021-02-14T04:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8a85c31-d7cf-4ee3-baab-9b2ecb2e6de6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-14T04:11:24.000Z" - }, - "end": { - "$date": "2021-02-14T04:34:10.000Z" - }, - "events": [ - { - "uuid": "8a70497b-89e2-48fe-b727-8f2a5c4a5a59", - "start": { - "$date": "2021-02-14T04:11:24.000Z" - }, - "end": { - "$date": "2021-02-14T04:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "70b8e380-4f24-46cf-ad4e-5430254edb34", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-14T04:12:36.000Z" - }, - "end": { - "$date": "2021-02-14T05:08:27.000Z" - }, - "events": [ - { - "uuid": "a867b82d-031e-47b9-be2b-ef3300946276", - "start": { - "$date": "2021-02-14T04:12:36.000Z" - }, - "end": { - "$date": "2021-02-14T05:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "2e00d3f4-9429-4bac-b948-5222062569ae", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-14T04:32:34.000Z" - }, - "end": { - "$date": "2021-02-14T09:16:35.000Z" - }, - "events": [ - { - "uuid": "66a0f604-da4a-411c-b07d-d29c19d9579e", - "start": { - "$date": "2021-02-14T04:32:34.000Z" - }, - "end": { - "$date": "2021-02-14T09:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bf2087e-29b7-4d7e-ab6a-837ca4f2ae6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T04:36:34.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:58.000Z" - }, - "events": [ - { - "uuid": "9d36df47-1f0f-4bf9-ac26-43e72589f6f0", - "start": { - "$date": "2021-02-14T04:36:34.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34ebd416-91fd-4a5e-9d1e-5b8131c171d9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T04:36:31.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:47.000Z" - }, - "events": [ - { - "uuid": "2c596070-eee3-4243-8055-ff7c1d769612", - "start": { - "$date": "2021-02-14T04:36:31.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a565434e-288f-489f-8f1d-e376138ccbce", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-14T04:36:40.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:50.000Z" - }, - "events": [ - { - "uuid": "fb76bc8f-b2c9-4464-8ce9-e44b45c5015c", - "start": { - "$date": "2021-02-14T04:36:40.000Z" - }, - "end": { - "$date": "2021-02-14T04:54:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "553ab8d1-b7af-41f1-8485-3b8b8c164578", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T04:59:05.000Z" - }, - "end": { - "$date": "2021-02-14T05:49:58.000Z" - }, - "events": [ - { - "uuid": "9c55c01a-8135-4e5c-a150-2c7ca31c70f3", - "start": { - "$date": "2021-02-14T04:59:05.000Z" - }, - "end": { - "$date": "2021-02-14T05:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8e33043e-52ca-48d2-879c-2da4e2ecdc83", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-14T05:04:51.000Z" - }, - "end": { - "$date": "2021-02-14T05:51:50.000Z" - }, - "events": [ - { - "uuid": "4db5e17e-eada-417c-9e4b-667a238426cf", - "start": { - "$date": "2021-02-14T05:04:51.000Z" - }, - "end": { - "$date": "2021-02-14T05:51:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c234f6f6-a5a7-4edb-8839-239c472140b7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-14T05:16:48.000Z" - }, - "end": { - "$date": "2021-02-14T07:21:54.000Z" - }, - "events": [ - { - "uuid": "ab9ade91-1ed0-4e59-8dfc-56a993541a68", - "start": { - "$date": "2021-02-14T05:16:48.000Z" - }, - "end": { - "$date": "2021-02-14T07:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b76f71b4-6697-490b-98ae-93e54d4a29fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-14T05:23:58.000Z" - }, - "end": { - "$date": "2021-02-14T08:21:38.000Z" - }, - "events": [ - { - "uuid": "8390dea6-ae83-4571-86b5-06ae0257a169", - "start": { - "$date": "2021-02-14T05:23:58.000Z" - }, - "end": { - "$date": "2021-02-14T08:21:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6c1ca29-18a5-488f-97fc-acef76a07f8c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T06:06:49.000Z" - }, - "end": { - "$date": "2021-02-14T06:23:46.000Z" - }, - "events": [ - { - "uuid": "cd318941-c6d2-43a6-af1b-5854408845b6", - "start": { - "$date": "2021-02-14T06:06:49.000Z" - }, - "end": { - "$date": "2021-02-14T06:23:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f37a231c-1fe4-4dfe-a182-f8aed2b932b0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-14T06:07:37.000Z" - }, - "end": { - "$date": "2021-02-14T07:50:48.000Z" - }, - "events": [ - { - "uuid": "0a8a6cc8-c957-4d35-937d-ef10cb75117c", - "start": { - "$date": "2021-02-14T06:07:37.000Z" - }, - "end": { - "$date": "2021-02-14T07:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf44e9f8-774f-44a0-9d93-7dd329f66e06", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T06:27:25.000Z" - }, - "end": { - "$date": "2021-02-14T06:45:57.000Z" - }, - "events": [ - { - "uuid": "b103c9f7-52a3-4876-b65b-cc69ab91360b", - "start": { - "$date": "2021-02-14T06:27:25.000Z" - }, - "end": { - "$date": "2021-02-14T06:45:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09cc0936-a464-4cea-ba9b-97c85aef594d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T06:48:31.000Z" - }, - "end": { - "$date": "2021-02-14T07:09:09.000Z" - }, - "events": [ - { - "uuid": "75665b44-e2b1-4a0b-a4a5-98d2a3809f33", - "start": { - "$date": "2021-02-14T06:48:31.000Z" - }, - "end": { - "$date": "2021-02-14T07:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af7a5f40-addb-4e13-b42f-9d58ff8f61f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-14T07:13:32.000Z" - }, - "end": { - "$date": "2021-02-14T07:41:57.000Z" - }, - "events": [ - { - "uuid": "e275a297-1127-45b7-9264-7c2dbb68ebd3", - "start": { - "$date": "2021-02-14T07:13:32.000Z" - }, - "end": { - "$date": "2021-02-14T07:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9b07f41f-fdfe-4b75-81ee-467621b9b54a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-14T07:51:19.000Z" - }, - "end": { - "$date": "2021-02-14T07:53:43.000Z" - }, - "events": [ - { - "uuid": "2085fb67-2c8a-4bdb-85f8-b1e557c16431", - "start": { - "$date": "2021-02-14T07:51:19.000Z" - }, - "end": { - "$date": "2021-02-14T07:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3085982f-e6c6-4860-b42f-40c4d5bb9a7f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-14T07:58:30.000Z" - }, - "end": { - "$date": "2021-02-14T08:23:57.000Z" - }, - "events": [ - { - "uuid": "20450a3f-c16d-4bd0-b72a-0053a85d9e5a", - "start": { - "$date": "2021-02-14T07:58:30.000Z" - }, - "end": { - "$date": "2021-02-14T08:23:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e0f355a4-854b-473f-afa2-98a0bc20ffd9", - "uuid": "f3038d08-ac8e-41bb-aa08-11c1b90cde87", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T14:07:38.000Z" - }, - "end": { - "$date": "2021-02-14T23:30:23.000Z" - }, - "events": [ - { - "uuid": "163e49f8-6232-4b61-8c86-886be20d4e0d", - "start": { - "$date": "2021-02-14T14:07:38.000Z" - }, - "end": { - "$date": "2021-02-14T15:33:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "16215c5d-9b69-479e-b05a-2277748b0a5a", - "start": { - "$date": "2021-02-14T15:33:38.000Z" - }, - "end": { - "$date": "2021-02-14T18:43:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96c37d0b-418c-414f-b298-d169fb07ecb1", - "start": { - "$date": "2021-02-14T18:43:38.000Z" - }, - "end": { - "$date": "2021-02-14T18:45:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f871143b-0005-4abb-8294-15a533cfda7e", - "start": { - "$date": "2021-02-14T18:45:38.000Z" - }, - "end": { - "$date": "2021-02-14T18:46:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5accc03a-8cb0-484c-b4d5-70187f63d6f8", - "start": { - "$date": "2021-02-14T18:46:38.000Z" - }, - "end": { - "$date": "2021-02-14T18:48:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0b7c6909-9219-4572-9dbc-53ab89dabfea", - "start": { - "$date": "2021-02-14T18:48:38.000Z" - }, - "end": { - "$date": "2021-02-14T19:19:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7819a7d-2488-4e28-ba0f-2f09a4ddd450", - "start": { - "$date": "2021-02-14T19:19:38.000Z" - }, - "end": { - "$date": "2021-02-14T23:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b5509cdc-fba8-4224-b880-38636a2126e7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-14T16:10:46.000Z" - }, - "end": { - "$date": "2021-02-14T16:14:21.000Z" - }, - "events": [ - { - "uuid": "83637db7-7a8b-4126-9658-72d83a0f9be4", - "start": { - "$date": "2021-02-14T16:10:46.000Z" - }, - "end": { - "$date": "2021-02-14T16:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "75014bdc-6f13-4a71-bfb1-c9d6eef09ead", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-14T16:16:11.000Z" - }, - "end": { - "$date": "2021-02-14T16:18:31.000Z" - }, - "events": [ - { - "uuid": "87e01a98-e403-49b6-901b-30e8e1c94fcc", - "start": { - "$date": "2021-02-14T16:16:11.000Z" - }, - "end": { - "$date": "2021-02-14T16:18:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "91bb7e69-a030-4a71-b94b-9c26d5cb46b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-14T16:26:03.000Z" - }, - "end": { - "$date": "2021-02-14T17:12:49.000Z" - }, - "events": [ - { - "uuid": "24c51ec5-300b-44f4-8b67-c9f8168c42e2", - "start": { - "$date": "2021-02-14T16:26:03.000Z" - }, - "end": { - "$date": "2021-02-14T17:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4bc02794-918e-44f3-b535-2a6036b2ab39", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T18:21:47.000Z" - }, - "end": { - "$date": "2021-02-14T19:01:54.000Z" - }, - "events": [ - { - "uuid": "5d3f28fc-eb25-4abb-97bd-39b448bccf90", - "start": { - "$date": "2021-02-14T18:21:47.000Z" - }, - "end": { - "$date": "2021-02-14T19:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "866949e3-6e09-4f58-bf66-f8f3f4b4006e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-14T20:10:49.000Z" - }, - "end": { - "$date": "2021-02-14T20:55:07.000Z" - }, - "events": [ - { - "uuid": "c7165e9b-a06b-4044-90cc-210ad5256db0", - "start": { - "$date": "2021-02-14T20:10:49.000Z" - }, - "end": { - "$date": "2021-02-14T20:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b7d2b173-e445-4533-8e82-0a84e3bdf75e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-14T21:10:58.000Z" - }, - "end": { - "$date": "2021-02-14T22:26:41.000Z" - }, - "events": [ - { - "uuid": "2827c045-815a-486d-b5c3-1fb62a0b4634", - "start": { - "$date": "2021-02-14T21:10:58.000Z" - }, - "end": { - "$date": "2021-02-14T22:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b759409a-6f77-41bc-8828-e9d555434908", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T21:11:27.000Z" - }, - "end": { - "$date": "2021-02-14T21:48:55.000Z" - }, - "events": [ - { - "uuid": "8b73b36d-17b4-4978-82c5-16693181abeb", - "start": { - "$date": "2021-02-14T21:11:27.000Z" - }, - "end": { - "$date": "2021-02-14T21:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e29f56f4-7d99-4920-b2f1-00f030be8d0a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-14T21:29:28.000Z" - }, - "end": { - "$date": "2021-02-15T03:04:01.000Z" - }, - "events": [ - { - "uuid": "b9a3f97e-737d-43d0-8e08-430e78ef2dce", - "start": { - "$date": "2021-02-14T21:29:28.000Z" - }, - "end": { - "$date": "2021-02-14T21:46:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "be3cf6f3-fc34-49ca-8bda-b0c0ed02c3af", - "start": { - "$date": "2021-02-14T21:46:28.000Z" - }, - "end": { - "$date": "2021-02-14T21:56:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2cdfdc57-bfb4-426b-9707-29a29819a3ff", - "start": { - "$date": "2021-02-14T21:56:28.000Z" - }, - "end": { - "$date": "2021-02-14T22:07:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1d21831-ed3f-438c-bada-b29b02329d12", - "start": { - "$date": "2021-02-14T22:07:28.000Z" - }, - "end": { - "$date": "2021-02-14T22:18:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ffc9fcbc-2c1d-4ee0-a955-8aa1fd484854", - "start": { - "$date": "2021-02-14T22:18:28.000Z" - }, - "end": { - "$date": "2021-02-14T22:37:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ceed2db0-1973-474b-8d76-4b1a2f14b285", - "start": { - "$date": "2021-02-14T22:37:28.000Z" - }, - "end": { - "$date": "2021-02-14T22:50:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d12c0be-2c19-4a1e-85e2-6b538321f4aa", - "start": { - "$date": "2021-02-14T22:50:28.000Z" - }, - "end": { - "$date": "2021-02-15T01:10:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03d98399-e9dd-4fe4-9d7e-c360345dd6a3", - "start": { - "$date": "2021-02-15T01:10:28.000Z" - }, - "end": { - "$date": "2021-02-15T01:26:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a98b14dd-8852-4b8a-9610-9e6d57e8b796", - "start": { - "$date": "2021-02-15T01:26:28.000Z" - }, - "end": { - "$date": "2021-02-15T03:04:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5400ede3-b7f5-4173-83c5-00c0ed23f2af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T21:51:35.000Z" - }, - "end": { - "$date": "2021-02-14T22:12:12.000Z" - }, - "events": [ - { - "uuid": "7cb2182a-e230-45cc-ace5-70a7db2d4766", - "start": { - "$date": "2021-02-14T21:51:35.000Z" - }, - "end": { - "$date": "2021-02-14T22:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3dc2a657-64f3-450f-8e6e-2b445325a464", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-14T22:15:32.000Z" - }, - "end": { - "$date": "2021-02-14T22:47:35.000Z" - }, - "events": [ - { - "uuid": "4c010fe5-1d26-4239-973f-21f747309a5c", - "start": { - "$date": "2021-02-14T22:15:32.000Z" - }, - "end": { - "$date": "2021-02-14T22:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdec4698-66e8-486e-9f96-d21fa0340dec", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-14T23:51:34.000Z" - }, - "end": { - "$date": "2021-02-15T00:17:07.000Z" - }, - "events": [ - { - "uuid": "081a006b-c17e-460d-8bb6-b1663d48956b", - "start": { - "$date": "2021-02-14T23:51:34.000Z" - }, - "end": { - "$date": "2021-02-15T00:02:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a1c8861-ecc4-4dcc-bc00-5da9df772ba6", - "start": { - "$date": "2021-02-15T00:02:34.000Z" - }, - "end": { - "$date": "2021-02-15T00:09:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ded937e8-15c9-40c4-9b97-40d30e8a9b3e", - "start": { - "$date": "2021-02-15T00:09:34.000Z" - }, - "end": { - "$date": "2021-02-15T00:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4c6eddd2-ad22-4b3f-9a34-26fb82ebd2c1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-15T00:23:30.000Z" - }, - "end": { - "$date": "2021-02-15T01:05:33.000Z" - }, - "events": [ - { - "uuid": "f47f9151-f4d9-41e2-91af-38e931296928", - "start": { - "$date": "2021-02-15T00:23:30.000Z" - }, - "end": { - "$date": "2021-02-15T01:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dbf8a85f-20e0-4f7e-8f2d-e5753324e831", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-15T00:25:58.000Z" - }, - "end": { - "$date": "2021-02-15T00:41:23.000Z" - }, - "events": [ - { - "uuid": "c9b57793-4d67-44e0-81d6-7cd2b1dcaf3b", - "start": { - "$date": "2021-02-15T00:25:58.000Z" - }, - "end": { - "$date": "2021-02-15T00:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "433b08f6-9748-4604-8150-8c9f2989a658", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-15T00:41:48.000Z" - }, - "end": { - "$date": "2021-02-15T01:01:34.000Z" - }, - "events": [ - { - "uuid": "079f977d-e4c9-474d-9cb2-799a30f9bbb6", - "start": { - "$date": "2021-02-15T00:41:48.000Z" - }, - "end": { - "$date": "2021-02-15T01:01:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5661ef8-1ffb-4d17-9479-90ebd4495f10", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-15T01:11:50.000Z" - }, - "end": { - "$date": "2021-02-15T01:57:24.000Z" - }, - "events": [ - { - "uuid": "7fa8b8f7-e54a-4245-b5a7-922c8e97d3b5", - "start": { - "$date": "2021-02-15T01:11:50.000Z" - }, - "end": { - "$date": "2021-02-15T01:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1b20ccd5-72ce-4e26-957c-420f8c8b499b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T01:10:30.000Z" - }, - "end": { - "$date": "2021-02-15T01:18:07.000Z" - }, - "events": [ - { - "uuid": "59b56faa-2917-4bf4-8b41-6e041c241b34", - "start": { - "$date": "2021-02-15T01:10:30.000Z" - }, - "end": { - "$date": "2021-02-15T01:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7a0276b1-4b34-4626-a19b-8afe568f523a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-15T01:12:13.000Z" - }, - "end": { - "$date": "2021-02-15T01:18:35.000Z" - }, - "events": [ - { - "uuid": "cc040272-9e5f-487e-8de8-767b168feb70", - "start": { - "$date": "2021-02-15T01:12:13.000Z" - }, - "end": { - "$date": "2021-02-15T01:18:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "16fb722d-a11b-4e98-bfd9-37e21e3d5433", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T01:27:29.000Z" - }, - "end": { - "$date": "2021-02-15T02:22:49.000Z" - }, - "events": [ - { - "uuid": "3c79bbd2-f619-4afc-a4f7-525ec50cce46", - "start": { - "$date": "2021-02-15T01:27:29.000Z" - }, - "end": { - "$date": "2021-02-15T02:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "308344ba-ba21-48b2-bde1-dcd7942d547e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-15T04:09:24.000Z" - }, - "end": { - "$date": "2021-02-15T04:44:24.000Z" - }, - "events": [ - { - "uuid": "ad4aab12-635f-40c5-bc46-16ba9ccfc913", - "start": { - "$date": "2021-02-15T04:09:24.000Z" - }, - "end": { - "$date": "2021-02-15T04:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8d20f46c-fc36-4f72-9df8-63373d2c6e3a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-15T02:18:09.000Z" - }, - "end": { - "$date": "2021-02-15T03:24:53.000Z" - }, - "events": [ - { - "uuid": "f25e8324-8e27-4b53-8a95-1ab9346d2ecf", - "start": { - "$date": "2021-02-15T02:18:09.000Z" - }, - "end": { - "$date": "2021-02-15T03:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5d025425-ad99-4f3e-9082-f57f15e5429d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T03:25:32.000Z" - }, - "end": { - "$date": "2021-02-15T03:27:27.000Z" - }, - "events": [ - { - "uuid": "bbd1757b-4948-43cc-b1b3-d171ea6c7eed", - "start": { - "$date": "2021-02-15T03:25:32.000Z" - }, - "end": { - "$date": "2021-02-15T03:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "392026bd-756e-40ec-9ad5-9b07e0f51116", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T03:27:58.000Z" - }, - "end": { - "$date": "2021-02-15T04:38:07.000Z" - }, - "events": [ - { - "uuid": "ed11ae0c-1fa6-4ae8-b805-34e0291123e3", - "start": { - "$date": "2021-02-15T03:27:58.000Z" - }, - "end": { - "$date": "2021-02-15T04:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "c95ef829-a0e1-4c87-9f0c-40510fa338d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-15T03:28:26.000Z" - }, - "end": { - "$date": "2021-02-15T04:16:53.000Z" - }, - "events": [ - { - "uuid": "00b3c1bf-8488-4085-9890-2a22fc0b5e4a", - "start": { - "$date": "2021-02-15T03:28:26.000Z" - }, - "end": { - "$date": "2021-02-15T04:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c55756-ae07-4771-86d2-bba19006baa0", - "uuid": "1f533813-e620-427b-887b-f0bcf92a7a95", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-15T03:42:52.000Z" - }, - "end": { - "$date": "2021-02-15T03:44:36.000Z" - }, - "events": [ - { - "uuid": "1aafbd33-3348-422b-9879-932d7c6bd066", - "start": { - "$date": "2021-02-15T03:42:52.000Z" - }, - "end": { - "$date": "2021-02-15T03:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "63821184-3e39-452c-86d0-4d89119d603c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-15T03:44:47.000Z" - }, - "end": { - "$date": "2021-02-15T04:46:00.000Z" - }, - "events": [ - { - "uuid": "2117f5b4-a7b7-4818-b732-fc76cea8ff15", - "start": { - "$date": "2021-02-15T03:44:47.000Z" - }, - "end": { - "$date": "2021-02-15T04:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "9d9ff32f-a14c-4b48-a4de-308c5539fd6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-15T03:28:26.000Z" - }, - "end": { - "$date": "2021-02-15T04:21:31.000Z" - }, - "events": [ - { - "uuid": "f24a0490-7d63-4d86-a838-69c650e416f6", - "start": { - "$date": "2021-02-15T03:28:26.000Z" - }, - "end": { - "$date": "2021-02-15T04:21:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "8388b04f-ee56-45ec-8f9d-90af5d58bcbd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-15T04:21:58.000Z" - }, - "end": { - "$date": "2021-02-15T05:02:02.000Z" - }, - "events": [ - { - "uuid": "ea0c8c98-8bd1-4622-97b6-ffe94e98f866", - "start": { - "$date": "2021-02-15T04:21:58.000Z" - }, - "end": { - "$date": "2021-02-15T05:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "211fb78d-6369-4228-8b09-491cb0c5d0b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-15T04:41:30.000Z" - }, - "end": { - "$date": "2021-02-15T04:58:01.000Z" - }, - "events": [ - { - "uuid": "da836dcc-2045-40dd-a5c4-6355d21be7cf", - "start": { - "$date": "2021-02-15T04:41:30.000Z" - }, - "end": { - "$date": "2021-02-15T04:58:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7c5e7e9d-c92a-4532-8019-5e673389c1cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T04:42:12.000Z" - }, - "end": { - "$date": "2021-02-15T05:16:19.000Z" - }, - "events": [ - { - "uuid": "69733936-3995-47d7-a11b-d1d3b0bb9a33", - "start": { - "$date": "2021-02-15T04:42:12.000Z" - }, - "end": { - "$date": "2021-02-15T05:16:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "74911a7c-6b84-490c-a0bf-229b3bf2af28", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-15T04:48:16.000Z" - }, - "end": { - "$date": "2021-02-15T05:31:56.000Z" - }, - "events": [ - { - "uuid": "35fed503-2c08-42c9-b934-969a21ac63a7", - "start": { - "$date": "2021-02-15T04:48:16.000Z" - }, - "end": { - "$date": "2021-02-15T05:31:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "125257ec-b669-43fd-8b17-9165d3f35f49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-15T05:05:20.000Z" - }, - "end": { - "$date": "2021-02-15T05:25:43.000Z" - }, - "events": [ - { - "uuid": "797387de-c5f2-4281-9f4e-8bfefe671de0", - "start": { - "$date": "2021-02-15T05:05:20.000Z" - }, - "end": { - "$date": "2021-02-15T05:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2260ceb-c489-4368-aecd-81f1ea677635", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T05:04:53.000Z" - }, - "end": { - "$date": "2021-02-15T05:42:05.000Z" - }, - "events": [ - { - "uuid": "9a7eb0cc-5275-493a-9651-a98bf95a9fc0", - "start": { - "$date": "2021-02-15T05:04:53.000Z" - }, - "end": { - "$date": "2021-02-15T05:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5987e0f2-b3cf-40f3-9380-252d6343bcfa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-15T05:13:48.000Z" - }, - "end": { - "$date": "2021-02-15T05:32:33.000Z" - }, - "events": [ - { - "uuid": "04d3e67a-59ed-48e3-9076-f0f062e42eaa", - "start": { - "$date": "2021-02-15T05:13:48.000Z" - }, - "end": { - "$date": "2021-02-15T05:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "f4ce1be5-9a31-4ae0-91e0-7da2755d8c20", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T05:22:42.000Z" - }, - "end": { - "$date": "2021-02-15T05:27:05.000Z" - }, - "events": [ - { - "uuid": "e283de50-691f-4823-a539-82071a42a2ef", - "start": { - "$date": "2021-02-15T05:22:42.000Z" - }, - "end": { - "$date": "2021-02-15T05:27:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "89a99ae1-90db-4447-a060-cc49752788f4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T05:42:24.000Z" - }, - "end": { - "$date": "2021-02-15T06:11:17.000Z" - }, - "events": [ - { - "uuid": "0255d371-06cc-4ac6-864e-21b343d32f30", - "start": { - "$date": "2021-02-15T05:42:24.000Z" - }, - "end": { - "$date": "2021-02-15T06:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "bb06d773-cc89-4877-a00e-6bdf568100c0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-15T05:47:24.000Z" - }, - "end": { - "$date": "2021-02-15T16:03:31.000Z" - }, - "events": [ - { - "uuid": "3db48091-63be-468d-83aa-2b605e517056", - "start": { - "$date": "2021-02-15T05:47:24.000Z" - }, - "end": { - "$date": "2021-02-15T06:37:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9616962-5d18-4f77-970c-39240446b156", - "start": { - "$date": "2021-02-15T06:37:24.000Z" - }, - "end": { - "$date": "2021-02-15T06:46:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c9cfa67-1a0d-4ff9-9cb9-bd3e62f3ccd2", - "start": { - "$date": "2021-02-15T06:46:24.000Z" - }, - "end": { - "$date": "2021-02-15T06:48:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "124e7fbb-74a4-4123-85a1-5529965731f4", - "start": { - "$date": "2021-02-15T06:48:24.000Z" - }, - "end": { - "$date": "2021-02-15T08:17:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b6c8673-21d9-4001-81c0-18b808e97bcf", - "start": { - "$date": "2021-02-15T08:17:24.000Z" - }, - "end": { - "$date": "2021-02-15T08:27:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55de1284-c283-492a-9816-5fccbdcac1eb", - "start": { - "$date": "2021-02-15T08:27:24.000Z" - }, - "end": { - "$date": "2021-02-15T15:06:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48edf8e8-d883-4756-9ab3-51ec66b3d3a9", - "start": { - "$date": "2021-02-15T15:06:24.000Z" - }, - "end": { - "$date": "2021-02-15T15:09:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5bd2182-66ef-4c54-baa3-2cdf884e1586", - "start": { - "$date": "2021-02-15T15:09:24.000Z" - }, - "end": { - "$date": "2021-02-15T16:03:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9f45e615-e93a-4f02-98a0-67eb4715866f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T06:04:14.000Z" - }, - "end": { - "$date": "2021-02-15T06:19:54.000Z" - }, - "events": [ - { - "uuid": "d1246c82-6a1e-4cc0-9666-b1375c131d07", - "start": { - "$date": "2021-02-15T06:04:14.000Z" - }, - "end": { - "$date": "2021-02-15T06:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "02bb2136-47b4-4caa-812b-69c9bbceb01d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T06:11:31.000Z" - }, - "end": { - "$date": "2021-02-15T06:16:17.000Z" - }, - "events": [ - { - "uuid": "b8dbfa2c-b986-4d5d-99c1-34784b88bc34", - "start": { - "$date": "2021-02-15T06:11:31.000Z" - }, - "end": { - "$date": "2021-02-15T06:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e99595aa-adad-48c6-9d80-d03d86499a40", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T06:16:36.000Z" - }, - "end": { - "$date": "2021-02-15T06:40:43.000Z" - }, - "events": [ - { - "uuid": "36388602-222e-423b-a5d9-daaf35020592", - "start": { - "$date": "2021-02-15T06:16:36.000Z" - }, - "end": { - "$date": "2021-02-15T06:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "645e5df5-84a8-452b-90f4-082af4b36d07", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-15T06:04:14.000Z" - }, - "end": { - "$date": "2021-02-15T07:31:38.000Z" - }, - "events": [ - { - "uuid": "84c0d694-f180-446b-9e5d-a4312e0bfb3f", - "start": { - "$date": "2021-02-15T06:04:14.000Z" - }, - "end": { - "$date": "2021-02-15T07:31:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "185543e7-9f91-4ca4-867d-6c611cef7bcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T06:41:12.000Z" - }, - "end": { - "$date": "2021-02-15T07:25:16.000Z" - }, - "events": [ - { - "uuid": "27942c45-bddb-4719-925d-e90388f80dea", - "start": { - "$date": "2021-02-15T06:41:12.000Z" - }, - "end": { - "$date": "2021-02-15T07:00:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03fd38c2-5370-4cb4-b78e-8bb9ec5c3d3b", - "start": { - "$date": "2021-02-15T07:00:12.000Z" - }, - "end": { - "$date": "2021-02-15T07:03:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03d3590c-3661-43c4-81b5-1f7cbb043f2b", - "start": { - "$date": "2021-02-15T07:03:12.000Z" - }, - "end": { - "$date": "2021-02-15T07:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "7fa9aa21-0231-442f-8773-33cb7e8bdfd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T07:27:35.000Z" - }, - "end": { - "$date": "2021-02-15T08:21:16.000Z" - }, - "events": [ - { - "uuid": "d5e207cb-bb9f-4892-b953-c9c62169a3b6", - "start": { - "$date": "2021-02-15T07:27:35.000Z" - }, - "end": { - "$date": "2021-02-15T08:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "ed9fdb62-ee8f-406a-b5ea-b7e2ae7dd2a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T08:23:01.000Z" - }, - "end": { - "$date": "2021-02-15T08:33:52.000Z" - }, - "events": [ - { - "uuid": "4f3e6c20-0280-446f-ac5e-a226f5bff07b", - "start": { - "$date": "2021-02-15T08:23:01.000Z" - }, - "end": { - "$date": "2021-02-15T08:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc2899ce-aab1-42e3-81aa-0b41d83ff0c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T08:34:21.000Z" - }, - "end": { - "$date": "2021-02-15T08:48:12.000Z" - }, - "events": [ - { - "uuid": "0d6bb23c-f697-409c-8079-15ba159c3e2a", - "start": { - "$date": "2021-02-15T08:34:21.000Z" - }, - "end": { - "$date": "2021-02-15T08:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "c4a68136-ab1a-4f38-a99a-c5745af8fea3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T15:01:12.000Z" - }, - "end": { - "$date": "2021-02-15T15:35:29.000Z" - }, - "events": [ - { - "uuid": "d849d5c5-6512-4e41-a746-2782f34bd731", - "start": { - "$date": "2021-02-15T15:01:12.000Z" - }, - "end": { - "$date": "2021-02-15T15:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "1d617d34-c9ee-435a-9c23-fb56f6b64bc0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T15:37:13.000Z" - }, - "end": { - "$date": "2021-02-15T16:04:24.000Z" - }, - "events": [ - { - "uuid": "7495bd13-8d98-43b8-8add-21e4e034679f", - "start": { - "$date": "2021-02-15T15:37:13.000Z" - }, - "end": { - "$date": "2021-02-15T16:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dbb94bc2-ed02-4f20-a2ac-b74b01fd0740", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T16:09:34.000Z" - }, - "end": { - "$date": "2021-02-15T16:20:45.000Z" - }, - "events": [ - { - "uuid": "60d54297-d35d-458d-af34-77d1a2631712", - "start": { - "$date": "2021-02-15T16:09:34.000Z" - }, - "end": { - "$date": "2021-02-15T16:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6fba3593-a859-40a6-adf1-4867893340b8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T16:20:55.000Z" - }, - "end": { - "$date": "2021-02-15T17:49:58.000Z" - }, - "events": [ - { - "uuid": "caf38931-d111-404f-a175-09fa57671a65", - "start": { - "$date": "2021-02-15T16:20:55.000Z" - }, - "end": { - "$date": "2021-02-15T17:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "83fffa14-897f-45d3-8376-eeec3cbb9aa0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-15T16:26:56.000Z" - }, - "end": { - "$date": "2021-02-15T18:17:32.000Z" - }, - "events": [ - { - "uuid": "faaf36f2-5299-43ee-8989-f16c34ad9966", - "start": { - "$date": "2021-02-15T16:26:56.000Z" - }, - "end": { - "$date": "2021-02-15T18:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "6357f24f-27b4-4deb-b5cd-a00717abc695", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-15T16:43:29.000Z" - }, - "end": { - "$date": "2021-02-15T16:56:40.000Z" - }, - "events": [ - { - "uuid": "64cc7b70-156f-48e5-b915-c907cdc27223", - "start": { - "$date": "2021-02-15T16:43:29.000Z" - }, - "end": { - "$date": "2021-02-15T16:56:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "39f8daec-0fa7-4ac0-bae6-39bcad435236", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T17:50:17.000Z" - }, - "end": { - "$date": "2021-02-15T19:49:16.000Z" - }, - "events": [ - { - "uuid": "d5b05272-75d1-488f-8aba-4041ac3d1d37", - "start": { - "$date": "2021-02-15T17:50:17.000Z" - }, - "end": { - "$date": "2021-02-15T19:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db5c1334-1a54-4de4-ab27-fa3f6667ffcd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-15T18:18:40.000Z" - }, - "end": { - "$date": "2021-02-15T18:51:58.000Z" - }, - "events": [ - { - "uuid": "610cdd1b-e99a-4e38-b86a-cc97dae41d86", - "start": { - "$date": "2021-02-15T18:18:40.000Z" - }, - "end": { - "$date": "2021-02-15T18:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "2f42eb32-db85-4db7-a982-01357b2ec59a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-15T18:23:34.000Z" - }, - "end": { - "$date": "2021-02-15T19:32:18.000Z" - }, - "events": [ - { - "uuid": "c20981e1-4c0f-4061-8ca5-0bc2dba0e4a3", - "start": { - "$date": "2021-02-15T18:23:34.000Z" - }, - "end": { - "$date": "2021-02-15T19:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ac219a58-d6a4-455b-aea0-e99c0281e972", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-15T18:28:25.000Z" - }, - "end": { - "$date": "2021-02-15T23:10:27.000Z" - }, - "events": [ - { - "uuid": "c52de0df-1185-4e09-aca7-d00591d9a3a3", - "start": { - "$date": "2021-02-15T18:28:25.000Z" - }, - "end": { - "$date": "2021-02-15T20:27:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4c835eb-48b4-4623-8408-71a08af89a1c", - "start": { - "$date": "2021-02-15T20:27:25.000Z" - }, - "end": { - "$date": "2021-02-15T20:36:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c7b3c58-606b-4c61-b483-7db7432d34d6", - "start": { - "$date": "2021-02-15T20:36:25.000Z" - }, - "end": { - "$date": "2021-02-15T20:52:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7239764-63fa-460e-91f9-e16a60a119d5", - "start": { - "$date": "2021-02-15T20:52:25.000Z" - }, - "end": { - "$date": "2021-02-15T21:06:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6f17dff9-b7ef-4b2b-90e2-7588e44184a5", - "start": { - "$date": "2021-02-15T21:06:25.000Z" - }, - "end": { - "$date": "2021-02-15T23:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "a2a25b32-b130-4815-9400-666b6f31d820", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T19:57:22.000Z" - }, - "end": { - "$date": "2021-02-15T20:16:48.000Z" - }, - "events": [ - { - "uuid": "086851c1-ee36-4f17-910a-508154ee6828", - "start": { - "$date": "2021-02-15T19:57:22.000Z" - }, - "end": { - "$date": "2021-02-15T20:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "9b790b3d-fe1b-4970-87ba-adfbfb3a541c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T20:16:57.000Z" - }, - "end": { - "$date": "2021-02-15T20:25:08.000Z" - }, - "events": [ - { - "uuid": "e4db2222-c59c-4f19-8947-f5e1d7a25b27", - "start": { - "$date": "2021-02-15T20:16:57.000Z" - }, - "end": { - "$date": "2021-02-15T20:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "833e325a-1442-4c8b-b154-0989ef8bdcf0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-15T20:26:46.000Z" - }, - "end": { - "$date": "2021-02-15T23:47:15.000Z" - }, - "events": [ - { - "uuid": "844a89f4-78fb-4c8a-bff7-f46a10de2554", - "start": { - "$date": "2021-02-15T20:26:46.000Z" - }, - "end": { - "$date": "2021-02-15T23:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "550a5937-e841-455f-836c-5307bc64722c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-15T20:27:36.000Z" - }, - "end": { - "$date": "2021-02-16T01:36:19.000Z" - }, - "events": [ - { - "uuid": "9e4c1915-e538-4df1-a475-c304e3cacb22", - "start": { - "$date": "2021-02-15T20:27:36.000Z" - }, - "end": { - "$date": "2021-02-16T01:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "4deaa0cf-b5a3-4f77-a380-b754953722ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-15T20:49:25.000Z" - }, - "end": { - "$date": "2021-02-15T21:00:45.000Z" - }, - "events": [ - { - "uuid": "3191ae52-8f53-47ee-992e-c9ecb470aca1", - "start": { - "$date": "2021-02-15T20:49:25.000Z" - }, - "end": { - "$date": "2021-02-15T21:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f1e3f036-2b67-4fee-91c9-8d3931dbd1a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-15T21:04:51.000Z" - }, - "end": { - "$date": "2021-02-15T21:17:17.000Z" - }, - "events": [ - { - "uuid": "3e15d163-2fce-4822-a03d-07db8cd534fd", - "start": { - "$date": "2021-02-15T21:04:51.000Z" - }, - "end": { - "$date": "2021-02-15T21:17:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c302eaad-e6de-474f-94a4-b8c68baf8713", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-15T22:12:40.000Z" - }, - "end": { - "$date": "2021-02-16T01:35:10.000Z" - }, - "events": [ - { - "uuid": "14a91df6-d857-4380-9013-f3d563f95ef0", - "start": { - "$date": "2021-02-15T22:12:40.000Z" - }, - "end": { - "$date": "2021-02-16T01:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "d985554e-e1d6-4e4a-861e-3050b28c2214", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-15T23:10:32.000Z" - }, - "end": { - "$date": "2021-02-16T05:50:08.000Z" - }, - "events": [ - { - "uuid": "66b5e8f4-874a-483c-892e-530e894d9f3a", - "start": { - "$date": "2021-02-15T23:10:32.000Z" - }, - "end": { - "$date": "2021-02-16T05:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "391af90f-e4c6-4a44-92f8-e7adc94601a1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-16T00:08:10.000Z" - }, - "end": { - "$date": "2021-02-16T00:29:23.000Z" - }, - "events": [ - { - "uuid": "bd3392a2-c336-47f0-a0b9-b0efe7ffa169", - "start": { - "$date": "2021-02-16T00:08:10.000Z" - }, - "end": { - "$date": "2021-02-16T00:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0952db47-0d7c-4e25-8e06-dd132391677a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-16T00:45:13.000Z" - }, - "end": { - "$date": "2021-02-16T01:58:51.000Z" - }, - "events": [ - { - "uuid": "4cdc69a6-7355-4ad5-83b5-be6666c66871", - "start": { - "$date": "2021-02-16T00:45:13.000Z" - }, - "end": { - "$date": "2021-02-16T01:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bee43078-d1e5-4cb4-9065-cbee4e6c20bb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-16T01:44:18.000Z" - }, - "end": { - "$date": "2021-02-16T02:20:14.000Z" - }, - "events": [ - { - "uuid": "1e720079-2396-4407-bfb2-d8c2993a2cae", - "start": { - "$date": "2021-02-16T01:44:18.000Z" - }, - "end": { - "$date": "2021-02-16T02:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1586435e-2b99-4503-8d06-a53b0eb1f7ff", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-16T02:23:24.000Z" - }, - "end": { - "$date": "2021-02-16T02:48:25.000Z" - }, - "events": [ - { - "uuid": "835f01a9-ae10-4f1b-b79e-d6ca17f86993", - "start": { - "$date": "2021-02-16T02:23:24.000Z" - }, - "end": { - "$date": "2021-02-16T02:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "95948ed6-5c5e-4f19-9178-8d4882902d14", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-16T02:50:39.000Z" - }, - "end": { - "$date": "2021-02-16T03:36:14.000Z" - }, - "events": [ - { - "uuid": "7613615d-f0ea-49e6-a0f7-4a8984793854", - "start": { - "$date": "2021-02-16T02:50:39.000Z" - }, - "end": { - "$date": "2021-02-16T03:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd9bae15-3f00-4539-b569-36b924da7da6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-16T02:59:10.000Z" - }, - "end": { - "$date": "2021-02-16T03:16:46.000Z" - }, - "events": [ - { - "uuid": "7592b6e9-19d3-4997-bf38-8091eda43733", - "start": { - "$date": "2021-02-16T02:59:10.000Z" - }, - "end": { - "$date": "2021-02-16T03:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "69a9fdc8-ed30-4417-bcee-5a28a9263099", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-16T03:14:31.000Z" - }, - "end": { - "$date": "2021-02-16T04:28:20.000Z" - }, - "events": [ - { - "uuid": "a18d9199-1fc9-4c05-93fb-6a5f020eaf19", - "start": { - "$date": "2021-02-16T03:14:31.000Z" - }, - "end": { - "$date": "2021-02-16T04:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b5ebee9-3189-4459-8015-1abcc21f7b9d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-16T03:19:05.000Z" - }, - "end": { - "$date": "2021-02-16T03:36:16.000Z" - }, - "events": [ - { - "uuid": "d83c6ec5-d13b-4b5d-b192-dd5361a39ec8", - "start": { - "$date": "2021-02-16T03:19:05.000Z" - }, - "end": { - "$date": "2021-02-16T03:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bd00c0cd-00f5-4ec5-8f3b-319a9ae8d0ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-16T03:36:50.000Z" - }, - "end": { - "$date": "2021-02-16T05:11:26.000Z" - }, - "events": [ - { - "uuid": "22c36f02-4846-475d-9fc4-b07facf376aa", - "start": { - "$date": "2021-02-16T03:36:50.000Z" - }, - "end": { - "$date": "2021-02-16T05:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "92dd9254-bf87-4986-b9fc-67b943491dd7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-16T04:00:52.000Z" - }, - "end": { - "$date": "2021-02-16T05:04:17.000Z" - }, - "events": [ - { - "uuid": "82ac174b-3ea4-497d-b100-b84ce23ffded", - "start": { - "$date": "2021-02-16T04:00:52.000Z" - }, - "end": { - "$date": "2021-02-16T05:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "24a57468-1f9c-4703-8f36-8ed0335acd28", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-16T04:01:00.000Z" - }, - "end": { - "$date": "2021-02-16T04:35:14.000Z" - }, - "events": [ - { - "uuid": "7a30861e-f882-49e2-9c2e-1adee10393ef", - "start": { - "$date": "2021-02-16T04:01:00.000Z" - }, - "end": { - "$date": "2021-02-16T04:35:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "1a2788ed-d4b2-4773-b24a-be65c2fec176", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-16T04:43:51.000Z" - }, - "end": { - "$date": "2021-02-16T06:22:28.000Z" - }, - "events": [ - { - "uuid": "236f9e49-30e3-48cc-b131-1238e4850b96", - "start": { - "$date": "2021-02-16T04:43:51.000Z" - }, - "end": { - "$date": "2021-02-16T06:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "03c1dd02-ee3a-459d-986a-b11101ec02a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-16T05:16:43.000Z" - }, - "end": { - "$date": "2021-02-16T06:22:49.000Z" - }, - "events": [ - { - "uuid": "e05969a9-b2ff-4fdc-8b86-ed243216c38c", - "start": { - "$date": "2021-02-16T05:16:43.000Z" - }, - "end": { - "$date": "2021-02-16T06:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "874f3c6c-4cbb-407d-9ef4-e2e0356eea28", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-16T05:50:13.000Z" - }, - "end": { - "$date": "2021-02-16T06:45:48.000Z" - }, - "events": [ - { - "uuid": "a82c3982-224c-4135-acaa-2fc44261f6bf", - "start": { - "$date": "2021-02-16T05:50:13.000Z" - }, - "end": { - "$date": "2021-02-16T06:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "d6fdc302-c2b2-45c5-b4fb-59d1e7dc04c8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-16T06:24:15.000Z" - }, - "end": { - "$date": "2021-02-16T06:26:29.000Z" - }, - "events": [ - { - "uuid": "27c84c57-cfc2-4cb2-a595-93f9a5e135c0", - "start": { - "$date": "2021-02-16T06:24:15.000Z" - }, - "end": { - "$date": "2021-02-16T06:26:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "9602dcd0-1c43-4759-9809-8ed862f8b9ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-16T06:26:56.000Z" - }, - "end": { - "$date": "2021-02-16T07:02:14.000Z" - }, - "events": [ - { - "uuid": "00db2745-aaf8-4535-a351-5206b159c142", - "start": { - "$date": "2021-02-16T06:26:56.000Z" - }, - "end": { - "$date": "2021-02-16T07:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d4e0b964-e9d1-48b2-a8b6-c35985b2f3b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-16T06:53:32.000Z" - }, - "end": { - "$date": "2021-02-16T07:24:53.000Z" - }, - "events": [ - { - "uuid": "47a82f20-c5e0-4b42-af9d-d961252875d8", - "start": { - "$date": "2021-02-16T06:53:32.000Z" - }, - "end": { - "$date": "2021-02-16T07:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a4c3292-f3be-450e-a315-da848a114c28", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-16T06:53:55.000Z" - }, - "end": { - "$date": "2021-02-16T07:24:46.000Z" - }, - "events": [ - { - "uuid": "c653ed4c-a00a-4ba4-850e-3f5a05edb92f", - "start": { - "$date": "2021-02-16T06:53:55.000Z" - }, - "end": { - "$date": "2021-02-16T07:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "ae96ca0a-4144-4452-b5ff-946f47b935af", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-16T06:27:00.000Z" - }, - "end": { - "$date": "2021-02-16T07:36:15.000Z" - }, - "events": [ - { - "uuid": "7b16ec67-469b-4885-a959-6db41cb805f3", - "start": { - "$date": "2021-02-16T06:27:00.000Z" - }, - "end": { - "$date": "2021-02-16T07:36:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "0900138f-9d2d-4552-979a-0f105174df3d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-16T19:28:57.000Z" - }, - "end": { - "$date": "2021-02-16T20:25:29.000Z" - }, - "events": [ - { - "uuid": "de1ddf1c-7b75-435b-b8fb-acc16ad33d82", - "start": { - "$date": "2021-02-16T19:28:57.000Z" - }, - "end": { - "$date": "2021-02-16T20:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c7e72344-2bf8-4735-8012-4d935c486c0b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-16T19:40:28.000Z" - }, - "end": { - "$date": "2021-02-16T21:12:22.000Z" - }, - "events": [ - { - "uuid": "54c478c6-df39-4b6c-a3f9-0f47f65b0285", - "start": { - "$date": "2021-02-16T19:40:28.000Z" - }, - "end": { - "$date": "2021-02-16T20:46:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14e798b7-4fd4-486b-af48-d1974d2218a0", - "start": { - "$date": "2021-02-16T20:46:28.000Z" - }, - "end": { - "$date": "2021-02-16T20:47:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ad75f893-e678-4bf6-b5c8-9bcb5fe3f10b", - "start": { - "$date": "2021-02-16T20:47:28.000Z" - }, - "end": { - "$date": "2021-02-16T21:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "6b6841dd-f840-4511-bc86-ac1047266d39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-16T19:41:46.000Z" - }, - "end": { - "$date": "2021-02-16T20:19:46.000Z" - }, - "events": [ - { - "uuid": "7e95d01c-1520-4814-9d20-6665adf27ad6", - "start": { - "$date": "2021-02-16T19:41:46.000Z" - }, - "end": { - "$date": "2021-02-16T20:19:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "339b2451-d177-41c8-b3cd-343e7b13ce52", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-16T19:41:44.000Z" - }, - "end": { - "$date": "2021-02-16T21:59:29.000Z" - }, - "events": [ - { - "uuid": "c8f91031-1a1d-46f5-8bf7-a3def909c380", - "start": { - "$date": "2021-02-16T19:41:44.000Z" - }, - "end": { - "$date": "2021-02-16T21:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "a779440e-9446-4769-97f1-9801881c55c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-16T20:20:37.000Z" - }, - "end": { - "$date": "2021-02-16T21:09:33.000Z" - }, - "events": [ - { - "uuid": "4b036463-bb24-416e-a566-27d3477bf1c5", - "start": { - "$date": "2021-02-16T20:20:37.000Z" - }, - "end": { - "$date": "2021-02-16T21:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "983b3130-68af-461c-8aa5-a67e34c88b72", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-16T21:02:49.000Z" - }, - "end": { - "$date": "2021-02-16T23:11:41.000Z" - }, - "events": [ - { - "uuid": "51d79736-8dd7-48df-8e05-509d7c77a08d", - "start": { - "$date": "2021-02-16T21:02:49.000Z" - }, - "end": { - "$date": "2021-02-16T23:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "91eb0820-38eb-4bad-93ed-2656271ca1a5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-16T21:04:17.000Z" - }, - "end": { - "$date": "2021-02-16T22:47:25.000Z" - }, - "events": [ - { - "uuid": "f3a55dc2-3c2d-441f-beef-f132d7b559b4", - "start": { - "$date": "2021-02-16T21:04:17.000Z" - }, - "end": { - "$date": "2021-02-16T22:47:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "516c0950-87c2-4367-8743-13e94f4111fd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-16T21:14:23.000Z" - }, - "end": { - "$date": "2021-02-16T21:15:37.000Z" - }, - "events": [ - { - "uuid": "b45ca850-df15-4a85-bf80-65ca6ebebb9a", - "start": { - "$date": "2021-02-16T21:14:23.000Z" - }, - "end": { - "$date": "2021-02-16T21:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "da0d468e-0ef0-4f3c-847c-458ef650e03e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-16T21:15:53.000Z" - }, - "end": { - "$date": "2021-02-16T21:32:54.000Z" - }, - "events": [ - { - "uuid": "5ee926a1-5fa8-4dea-bab8-92785c3ffffd", - "start": { - "$date": "2021-02-16T21:15:53.000Z" - }, - "end": { - "$date": "2021-02-16T21:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "db3f9ccb-49f8-4bdd-810f-5e0bb3846dd1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-16T22:37:09.000Z" - }, - "end": { - "$date": "2021-02-16T23:44:06.000Z" - }, - "events": [ - { - "uuid": "d965fcd1-c7e9-41db-a90a-3c58926c1ccf", - "start": { - "$date": "2021-02-16T22:37:09.000Z" - }, - "end": { - "$date": "2021-02-16T23:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a89b4c4f-d936-47c7-8eac-8d5ae0c30f32", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-16T23:46:05.000Z" - }, - "end": { - "$date": "2021-02-16T23:46:15.000Z" - }, - "events": [ - { - "uuid": "7de1ad14-ff4c-4bb9-8cb9-a34f9b1517de", - "start": { - "$date": "2021-02-16T23:46:05.000Z" - }, - "end": { - "$date": "2021-02-16T23:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "4c4ce5e5-78fe-467c-b68d-e19739b5f907", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-16T22:52:56.000Z" - }, - "end": { - "$date": "2021-02-17T00:45:53.000Z" - }, - "events": [ - { - "uuid": "532f3b55-8197-4054-8b2f-b357370f2734", - "start": { - "$date": "2021-02-16T22:52:56.000Z" - }, - "end": { - "$date": "2021-02-17T00:45:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "2762ec8e-2d7f-4922-aa5c-c0dd0448d9c6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-16T23:47:21.000Z" - }, - "end": { - "$date": "2021-02-17T00:07:22.000Z" - }, - "events": [ - { - "uuid": "d66a9ca3-28d1-468c-9afa-51f39be2855f", - "start": { - "$date": "2021-02-16T23:47:21.000Z" - }, - "end": { - "$date": "2021-02-17T00:07:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37f66b70-3517-4cec-a858-38a9a97a1091", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T00:05:37.000Z" - }, - "end": { - "$date": "2021-02-17T00:26:17.000Z" - }, - "events": [ - { - "uuid": "1df6c8cb-2c5f-4fba-977b-78166c7f065b", - "start": { - "$date": "2021-02-17T00:05:37.000Z" - }, - "end": { - "$date": "2021-02-17T00:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed0ee65a-34d6-420f-82f2-e3acec616f11", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-17T00:15:03.000Z" - }, - "end": { - "$date": "2021-02-17T01:46:37.000Z" - }, - "events": [ - { - "uuid": "8c503499-e029-4640-9ae0-57b7c1f61430", - "start": { - "$date": "2021-02-17T00:15:03.000Z" - }, - "end": { - "$date": "2021-02-17T01:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27f99100-1135-402a-9a59-3ac694d1010d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T00:28:52.000Z" - }, - "end": { - "$date": "2021-02-17T00:41:03.000Z" - }, - "events": [ - { - "uuid": "75e8c8af-f41a-4007-b20d-1a1d289ea067", - "start": { - "$date": "2021-02-17T00:28:52.000Z" - }, - "end": { - "$date": "2021-02-17T00:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2245d03-7147-4cc7-a255-50f6db396aaa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T00:43:38.000Z" - }, - "end": { - "$date": "2021-02-17T00:58:33.000Z" - }, - "events": [ - { - "uuid": "5f6a2422-2bf8-4bcc-b559-0f88e7547c55", - "start": { - "$date": "2021-02-17T00:43:38.000Z" - }, - "end": { - "$date": "2021-02-17T00:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74f0e678-a0ac-4a24-b558-e20aa0c1189b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T01:01:08.000Z" - }, - "end": { - "$date": "2021-02-17T01:17:44.000Z" - }, - "events": [ - { - "uuid": "c3b7a687-4fd6-4815-983d-3169f06e8b69", - "start": { - "$date": "2021-02-17T01:01:08.000Z" - }, - "end": { - "$date": "2021-02-17T01:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c4b7753d-c392-443b-b237-165d6b70824e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T02:06:50.000Z" - }, - "end": { - "$date": "2021-02-17T02:13:35.000Z" - }, - "events": [ - { - "uuid": "05d8d2c4-3466-4a2a-8b9d-faae24e68e08", - "start": { - "$date": "2021-02-17T02:06:50.000Z" - }, - "end": { - "$date": "2021-02-17T02:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "268f7106-9e03-4125-8efd-2848b932dca9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T02:13:50.000Z" - }, - "end": { - "$date": "2021-02-17T02:15:05.000Z" - }, - "events": [ - { - "uuid": "1e746059-decd-43ab-b071-1ae9f77c1ab9", - "start": { - "$date": "2021-02-17T02:13:50.000Z" - }, - "end": { - "$date": "2021-02-17T02:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b810a54-568d-492d-bbdc-badc0b18a706", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T02:21:05.000Z" - }, - "end": { - "$date": "2021-02-17T02:36:17.000Z" - }, - "events": [ - { - "uuid": "e7ac24c5-db24-4a46-82a2-ab6b933c0034", - "start": { - "$date": "2021-02-17T02:21:05.000Z" - }, - "end": { - "$date": "2021-02-17T02:36:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "21f357c4-6dcd-487b-b680-733b949e5d06", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-17T02:19:52.000Z" - }, - "end": { - "$date": "2021-02-17T05:33:36.000Z" - }, - "events": [ - { - "uuid": "af257b77-6cfe-4c6b-9b18-5d842f5695cb", - "start": { - "$date": "2021-02-17T02:19:52.000Z" - }, - "end": { - "$date": "2021-02-17T05:33:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "042bdd1f-e687-4379-9d72-5128ac716a0c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-17T02:21:00.000Z" - }, - "end": { - "$date": "2021-02-17T05:33:43.000Z" - }, - "events": [ - { - "uuid": "074c9559-6ca0-470a-9f60-bd8900ceecb9", - "start": { - "$date": "2021-02-17T02:21:00.000Z" - }, - "end": { - "$date": "2021-02-17T05:33:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9ce7f30-cd45-4609-9d5b-f324d2a06e4f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T02:38:21.000Z" - }, - "end": { - "$date": "2021-02-17T02:51:47.000Z" - }, - "events": [ - { - "uuid": "44e6dfb9-6c13-400e-8ef8-2657fff0767d", - "start": { - "$date": "2021-02-17T02:38:21.000Z" - }, - "end": { - "$date": "2021-02-17T02:51:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1f5ff472-f39f-42ca-ae42-808f438519a2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T02:52:37.000Z" - }, - "end": { - "$date": "2021-02-17T03:32:34.000Z" - }, - "events": [ - { - "uuid": "44efd2f3-a525-4297-956b-71b81c8fafeb", - "start": { - "$date": "2021-02-17T02:52:37.000Z" - }, - "end": { - "$date": "2021-02-17T03:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2fa8cfee-212d-4390-957d-10fda4e08bc2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-17T03:29:55.000Z" - }, - "end": { - "$date": "2021-02-17T05:33:32.000Z" - }, - "events": [ - { - "uuid": "e5264d65-5e5c-4b99-b9e6-45d90ef2c8f1", - "start": { - "$date": "2021-02-17T03:29:55.000Z" - }, - "end": { - "$date": "2021-02-17T05:33:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6b5c2b0c-0a0b-4f02-9cb8-2746b75d543a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T04:03:21.000Z" - }, - "end": { - "$date": "2021-02-17T07:18:18.000Z" - }, - "events": [ - { - "uuid": "db9b6edf-863c-47eb-b597-e57ac6409002", - "start": { - "$date": "2021-02-17T04:03:21.000Z" - }, - "end": { - "$date": "2021-02-17T07:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "b06dc305-dd3c-4b02-940b-29aeefd03fc0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-17T05:03:07.000Z" - }, - "end": { - "$date": "2021-02-17T05:11:26.000Z" - }, - "events": [ - { - "uuid": "4f29dead-3fc5-47ba-8f25-a6d69985e69c", - "start": { - "$date": "2021-02-17T05:03:07.000Z" - }, - "end": { - "$date": "2021-02-17T05:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "716dc19d-b957-4f5c-9109-b29df10e7bef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-17T05:12:32.000Z" - }, - "end": { - "$date": "2021-02-17T05:20:57.000Z" - }, - "events": [ - { - "uuid": "5b2da994-f959-4a31-9440-cf46a07cfbb1", - "start": { - "$date": "2021-02-17T05:12:32.000Z" - }, - "end": { - "$date": "2021-02-17T05:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "9b187d1b-3c0f-42cf-b11a-37bcc4b60a3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-17T05:22:45.000Z" - }, - "end": { - "$date": "2021-02-17T05:29:14.000Z" - }, - "events": [ - { - "uuid": "32714a46-a2c3-49bd-839f-51adab8c1e5c", - "start": { - "$date": "2021-02-17T05:22:45.000Z" - }, - "end": { - "$date": "2021-02-17T05:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "9d18de05-7caf-4f74-b81a-9d19ed502fa1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-17T05:22:38.000Z" - }, - "end": { - "$date": "2021-02-17T05:42:28.000Z" - }, - "events": [ - { - "uuid": "40f73d75-01a6-485d-9705-57ae51ef19b0", - "start": { - "$date": "2021-02-17T05:22:38.000Z" - }, - "end": { - "$date": "2021-02-17T05:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fd8279bd-f425-466a-b051-a941c41c3ad9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-17T05:34:32.000Z" - }, - "end": { - "$date": "2021-02-17T05:54:14.000Z" - }, - "events": [ - { - "uuid": "e1049c0f-0005-421c-839f-805184f36f9f", - "start": { - "$date": "2021-02-17T05:34:32.000Z" - }, - "end": { - "$date": "2021-02-17T05:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "d514fc10-fd8e-4890-b845-2a63bc5f4b4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-17T05:42:39.000Z" - }, - "end": { - "$date": "2021-02-17T06:55:33.000Z" - }, - "events": [ - { - "uuid": "5828358f-048d-4ada-a7de-bd776305a69e", - "start": { - "$date": "2021-02-17T05:42:39.000Z" - }, - "end": { - "$date": "2021-02-17T06:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ecebf024-f311-4ca4-85a7-96beb06062ba", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-17T06:13:48.000Z" - }, - "end": { - "$date": "2021-02-17T06:37:58.000Z" - }, - "events": [ - { - "uuid": "a6d94bf0-90e2-45a6-b9b4-23bbd971db38", - "start": { - "$date": "2021-02-17T06:13:48.000Z" - }, - "end": { - "$date": "2021-02-17T06:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "499daaa7-352d-4448-89d6-206ee7474a1f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T07:55:47.000Z" - }, - "end": { - "$date": "2021-02-17T08:17:14.000Z" - }, - "events": [ - { - "uuid": "4b6ff5ed-4dcd-4c3a-92eb-5228afeccde1", - "start": { - "$date": "2021-02-17T07:55:47.000Z" - }, - "end": { - "$date": "2021-02-17T08:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "67042556-acc9-4594-be0e-e3d7550a0283", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T08:19:24.000Z" - }, - "end": { - "$date": "2021-02-17T08:23:50.000Z" - }, - "events": [ - { - "uuid": "44937af6-5ebd-44d9-ae2d-a1f41ce960e1", - "start": { - "$date": "2021-02-17T08:19:24.000Z" - }, - "end": { - "$date": "2021-02-17T08:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "927e25c7-c759-45a5-99da-eb62a49ebcb6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-17T18:33:40.000Z" - }, - "end": { - "$date": "2021-02-17T19:31:00.000Z" - }, - "events": [ - { - "uuid": "5ae980ec-44bc-4462-8b44-ece85a713fed", - "start": { - "$date": "2021-02-17T18:33:40.000Z" - }, - "end": { - "$date": "2021-02-17T19:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "27545232-626a-44ec-a8e8-02206288ed1d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T19:17:08.000Z" - }, - "end": { - "$date": "2021-02-17T19:22:19.000Z" - }, - "events": [ - { - "uuid": "ff8d3192-bc27-46b7-8ca5-50393253b9ae", - "start": { - "$date": "2021-02-17T19:17:08.000Z" - }, - "end": { - "$date": "2021-02-17T19:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "90269459-b524-49c0-a3e2-ac411af5713c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-17T19:59:51.000Z" - }, - "end": { - "$date": "2021-02-18T00:07:23.000Z" - }, - "events": [ - { - "uuid": "70fd96f2-2c24-4359-9b33-d6e22a9f4d3f", - "start": { - "$date": "2021-02-17T19:59:51.000Z" - }, - "end": { - "$date": "2021-02-18T00:07:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c2a8797-8ce6-4d55-9342-5f50ab8ae608", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-17T19:32:06.000Z" - }, - "end": { - "$date": "2021-02-17T20:24:10.000Z" - }, - "events": [ - { - "uuid": "66a175e4-c400-4780-9cf6-bcb9406a1c87", - "start": { - "$date": "2021-02-17T19:32:06.000Z" - }, - "end": { - "$date": "2021-02-17T20:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "1625b816-300c-4285-8f70-383df589a93c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-17T20:24:20.000Z" - }, - "end": { - "$date": "2021-02-17T21:10:32.000Z" - }, - "events": [ - { - "uuid": "4295dc6a-e50f-4e19-9f1b-eeb2d46262a3", - "start": { - "$date": "2021-02-17T20:24:20.000Z" - }, - "end": { - "$date": "2021-02-17T21:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cb6ad14c-0a67-4e8f-befd-5778969f7309", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-17T21:10:37.000Z" - }, - "end": { - "$date": "2021-02-17T21:55:08.000Z" - }, - "events": [ - { - "uuid": "b0abad57-ccce-4080-9243-801a253b0b3e", - "start": { - "$date": "2021-02-17T21:10:37.000Z" - }, - "end": { - "$date": "2021-02-17T21:55:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "9edf63bf-5e8d-48da-bfad-46c688b55534", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-17T21:25:00.000Z" - }, - "end": { - "$date": "2021-02-17T21:33:23.000Z" - }, - "events": [ - { - "uuid": "08e0a30f-d5a6-4f11-8309-42a94e4618eb", - "start": { - "$date": "2021-02-17T21:25:00.000Z" - }, - "end": { - "$date": "2021-02-17T21:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "542960d9-4dae-4572-9f69-d45bb8b92dfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-17T21:38:23.000Z" - }, - "end": { - "$date": "2021-02-17T21:39:59.000Z" - }, - "events": [ - { - "uuid": "f1ec57af-904d-45f1-b6e0-989340a2ec2c", - "start": { - "$date": "2021-02-17T21:38:23.000Z" - }, - "end": { - "$date": "2021-02-17T21:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70c79395-c78b-492e-986b-57523208fbc1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-17T21:44:01.000Z" - }, - "end": { - "$date": "2021-02-17T21:46:13.000Z" - }, - "events": [ - { - "uuid": "4656d7b0-6f06-4386-811c-55f1b8b129a9", - "start": { - "$date": "2021-02-17T21:44:01.000Z" - }, - "end": { - "$date": "2021-02-17T21:46:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "49dfbedf-b706-46a4-b6c1-8a60a86d9193", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-17T21:48:51.000Z" - }, - "end": { - "$date": "2021-02-17T21:49:36.000Z" - }, - "events": [ - { - "uuid": "ff2c6836-c644-4f0d-b787-5127b438e7a5", - "start": { - "$date": "2021-02-17T21:48:51.000Z" - }, - "end": { - "$date": "2021-02-17T21:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e77ce930-3a30-495a-bf3f-6914046b0b13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-17T21:50:26.000Z" - }, - "end": { - "$date": "2021-02-17T22:09:38.000Z" - }, - "events": [ - { - "uuid": "deb8f160-53ac-4a74-ae6e-dc7e1bb69935", - "start": { - "$date": "2021-02-17T21:50:26.000Z" - }, - "end": { - "$date": "2021-02-17T22:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a7c22da6-c79c-44fc-9286-78e58d2629b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-17T23:00:32.000Z" - }, - "end": { - "$date": "2021-02-18T00:58:20.000Z" - }, - "events": [ - { - "uuid": "ed3228a4-b169-4bb1-8f26-154c035d6d3b", - "start": { - "$date": "2021-02-17T23:00:32.000Z" - }, - "end": { - "$date": "2021-02-18T00:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a3eb3f1d-83d8-46d5-85c4-7daeeddef4fb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-17T23:35:56.000Z" - }, - "end": { - "$date": "2021-02-18T01:10:11.000Z" - }, - "events": [ - { - "uuid": "0ddc55d3-0890-42ce-a5d0-096f0169b2cb", - "start": { - "$date": "2021-02-17T23:35:56.000Z" - }, - "end": { - "$date": "2021-02-18T01:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4337b927-f82d-4ab8-9e42-0c63e730fcbf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-17T23:54:05.000Z" - }, - "end": { - "$date": "2021-02-18T00:27:41.000Z" - }, - "events": [ - { - "uuid": "2f869cd0-0cfd-4f63-9b70-27433d73908d", - "start": { - "$date": "2021-02-17T23:54:05.000Z" - }, - "end": { - "$date": "2021-02-18T00:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e4becf37-0726-4ddb-b8d0-ffb9ec0f520a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-17T23:50:22.000Z" - }, - "end": { - "$date": "2021-02-18T05:27:56.000Z" - }, - "events": [ - { - "uuid": "e54c71a9-a790-4544-9aeb-d70e88882c56", - "start": { - "$date": "2021-02-17T23:50:22.000Z" - }, - "end": { - "$date": "2021-02-18T05:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cf44b313-2468-4940-b67a-624dd19c0625", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-18T00:09:28.000Z" - }, - "end": { - "$date": "2021-02-18T02:15:41.000Z" - }, - "events": [ - { - "uuid": "e188ae52-8260-4585-a84c-3d2b5c9e4019", - "start": { - "$date": "2021-02-18T00:09:28.000Z" - }, - "end": { - "$date": "2021-02-18T02:15:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d6bcb6c-fdf0-42c6-92f7-054e862e2c08", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-18T00:31:11.000Z" - }, - "end": { - "$date": "2021-02-18T00:35:38.000Z" - }, - "events": [ - { - "uuid": "5128a345-50fa-428a-bd50-08abda450b52", - "start": { - "$date": "2021-02-18T00:31:11.000Z" - }, - "end": { - "$date": "2021-02-18T00:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee2f5b0f-b33d-4cd8-88a5-447d8623dc16", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-18T00:45:33.000Z" - }, - "end": { - "$date": "2021-02-18T01:23:04.000Z" - }, - "events": [ - { - "uuid": "bcee36d0-1941-4b28-a81a-346f271c1167", - "start": { - "$date": "2021-02-18T00:45:33.000Z" - }, - "end": { - "$date": "2021-02-18T01:23:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c94b6751-fc4f-441c-a116-47174adc55ea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-18T02:20:38.000Z" - }, - "end": { - "$date": "2021-02-18T02:45:04.000Z" - }, - "events": [ - { - "uuid": "5e4f6ec8-b76d-4632-b909-47cb6c172233", - "start": { - "$date": "2021-02-18T02:20:38.000Z" - }, - "end": { - "$date": "2021-02-18T02:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "49051481-04ea-442c-8401-eb961af55a5b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T02:24:37.000Z" - }, - "end": { - "$date": "2021-02-18T02:34:08.000Z" - }, - "events": [ - { - "uuid": "06de313f-6e13-446b-8f6e-61bacc3c0344", - "start": { - "$date": "2021-02-18T02:24:37.000Z" - }, - "end": { - "$date": "2021-02-18T02:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ab0d84f5-45dc-459b-bfb0-9b4437cbb63b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T02:36:49.000Z" - }, - "end": { - "$date": "2021-02-18T04:10:18.000Z" - }, - "events": [ - { - "uuid": "ff41a387-4b55-4d91-a14a-58aa59ab8d26", - "start": { - "$date": "2021-02-18T02:36:49.000Z" - }, - "end": { - "$date": "2021-02-18T04:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7b39f91b-26ae-459a-8ccd-2ae6055e4d11", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-18T02:49:08.000Z" - }, - "end": { - "$date": "2021-02-18T07:33:52.000Z" - }, - "events": [ - { - "uuid": "ae2f39f1-fef7-481e-9c8c-345a65577bbb", - "start": { - "$date": "2021-02-18T02:49:08.000Z" - }, - "end": { - "$date": "2021-02-18T07:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "e10bf65c-4ac6-4edb-aa6c-eab78de9c46a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-18T03:31:04.000Z" - }, - "end": { - "$date": "2021-02-18T03:35:58.000Z" - }, - "events": [ - { - "uuid": "f98ada2b-6413-4794-b760-fad37e83b22d", - "start": { - "$date": "2021-02-18T03:31:04.000Z" - }, - "end": { - "$date": "2021-02-18T03:35:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "865f9c4b-fab3-4a10-ae4b-48127f591e34", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-18T03:36:09.000Z" - }, - "end": { - "$date": "2021-02-18T07:44:31.000Z" - }, - "events": [ - { - "uuid": "cc0a5b11-e964-4fc7-b3dc-8b9c9413489d", - "start": { - "$date": "2021-02-18T03:36:09.000Z" - }, - "end": { - "$date": "2021-02-18T07:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "723bf19f-2be2-46aa-b004-9de495e7a146", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-18T04:49:29.000Z" - }, - "end": { - "$date": "2021-02-18T04:52:08.000Z" - }, - "events": [ - { - "uuid": "49f0fa32-c608-4ab4-8d90-28a95bc7ca89", - "start": { - "$date": "2021-02-18T04:49:29.000Z" - }, - "end": { - "$date": "2021-02-18T04:52:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7ebadb8c-025c-4146-9e90-95d73b53eede", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T04:15:24.000Z" - }, - "end": { - "$date": "2021-02-18T04:52:09.000Z" - }, - "events": [ - { - "uuid": "783ef425-96b8-4b82-9abd-038af05da829", - "start": { - "$date": "2021-02-18T04:15:24.000Z" - }, - "end": { - "$date": "2021-02-18T04:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2a3415a-83f7-4a5d-997d-67d8d598ef03", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-18T04:53:46.000Z" - }, - "end": { - "$date": "2021-02-18T05:13:17.000Z" - }, - "events": [ - { - "uuid": "0e9174ee-d162-400a-81ca-57172b5f7d8a", - "start": { - "$date": "2021-02-18T04:53:46.000Z" - }, - "end": { - "$date": "2021-02-18T05:13:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "d1a58fe2-e21a-4e51-9433-652fd94ab29b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-18T04:52:44.000Z" - }, - "end": { - "$date": "2021-02-18T06:10:50.000Z" - }, - "events": [ - { - "uuid": "bee8baaf-4c6a-47f2-b2bf-fd57ab09b133", - "start": { - "$date": "2021-02-18T04:52:44.000Z" - }, - "end": { - "$date": "2021-02-18T06:10:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "3be26748-df47-4650-afe3-7ac1cd2e73f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T04:52:59.000Z" - }, - "end": { - "$date": "2021-02-18T06:11:10.000Z" - }, - "events": [ - { - "uuid": "664de161-a1cb-45fb-834d-16bf1c2de33e", - "start": { - "$date": "2021-02-18T04:52:59.000Z" - }, - "end": { - "$date": "2021-02-18T06:11:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7f1e47e-a409-442e-8361-419f2b356502", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-18T05:19:58.000Z" - }, - "end": { - "$date": "2021-02-18T05:54:23.000Z" - }, - "events": [ - { - "uuid": "1f46cc14-e64a-4b6e-8f02-fb1b94ecc653", - "start": { - "$date": "2021-02-18T05:19:58.000Z" - }, - "end": { - "$date": "2021-02-18T05:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "380e25d3-71a3-40ea-9605-e6263cfe70f3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-18T06:10:11.000Z" - }, - "end": { - "$date": "2021-02-18T06:49:17.000Z" - }, - "events": [ - { - "uuid": "0c1c7d95-bed0-4d39-b59e-c1a431c88193", - "start": { - "$date": "2021-02-18T06:10:11.000Z" - }, - "end": { - "$date": "2021-02-18T06:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "31b8ada7-3959-4d0b-adbb-f8de19f24ce0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-18T06:11:46.000Z" - }, - "end": { - "$date": "2021-02-18T07:21:48.000Z" - }, - "events": [ - { - "uuid": "cd7030c9-fb0e-4072-b1b8-5f973edb1362", - "start": { - "$date": "2021-02-18T06:11:46.000Z" - }, - "end": { - "$date": "2021-02-18T07:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "994fc3ff-5b80-480f-b0c1-056811bc222f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T06:12:10.000Z" - }, - "end": { - "$date": "2021-02-18T07:21:53.000Z" - }, - "events": [ - { - "uuid": "2d97f37d-4f76-4536-a008-9dc4f27cb189", - "start": { - "$date": "2021-02-18T06:12:10.000Z" - }, - "end": { - "$date": "2021-02-18T07:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "11a327a0-f49e-4955-b5ad-bc74c29ab3b1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-18T07:46:47.000Z" - }, - "end": { - "$date": "2021-02-18T08:13:38.000Z" - }, - "events": [ - { - "uuid": "bd882794-28eb-44ff-bbb8-dd227381cfae", - "start": { - "$date": "2021-02-18T07:46:47.000Z" - }, - "end": { - "$date": "2021-02-18T08:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fba66c95-9c6e-4f9b-864d-fd07ee9c4f09", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-18T07:47:29.000Z" - }, - "end": { - "$date": "2021-02-18T08:21:26.000Z" - }, - "events": [ - { - "uuid": "feac22a9-220d-41e5-a74f-5ea041dd7d01", - "start": { - "$date": "2021-02-18T07:47:29.000Z" - }, - "end": { - "$date": "2021-02-18T08:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "656b3e60-38a5-43a9-aa81-fedf3dd26836", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T16:55:15.000Z" - }, - "end": { - "$date": "2021-02-18T17:03:05.000Z" - }, - "events": [ - { - "uuid": "76205b61-6f5f-4bf6-9ba0-3d9251151207", - "start": { - "$date": "2021-02-18T16:55:15.000Z" - }, - "end": { - "$date": "2021-02-18T17:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0b66beef-84bb-4cf8-ae3f-f4227721ae94", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T17:03:30.000Z" - }, - "end": { - "$date": "2021-02-18T17:27:16.000Z" - }, - "events": [ - { - "uuid": "701c6dc3-03b8-4301-bf02-957f4bd69b62", - "start": { - "$date": "2021-02-18T17:03:30.000Z" - }, - "end": { - "$date": "2021-02-18T17:27:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "82e3b7d8-9586-407a-95c0-5229225657f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-18T18:09:14.000Z" - }, - "end": { - "$date": "2021-02-18T18:10:54.000Z" - }, - "events": [ - { - "uuid": "e1a42881-55bd-48c8-9b1b-1a636e9deb1c", - "start": { - "$date": "2021-02-18T18:09:14.000Z" - }, - "end": { - "$date": "2021-02-18T18:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "12e18671-e7ec-43ff-b1df-fc586409ae4e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T20:14:33.000Z" - }, - "end": { - "$date": "2021-02-18T21:19:22.000Z" - }, - "events": [ - { - "uuid": "448e4bff-656a-462c-ada9-9cdbd52382da", - "start": { - "$date": "2021-02-18T20:14:33.000Z" - }, - "end": { - "$date": "2021-02-18T21:30:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa68c9c6-40a7-4e03-a263-9a652123732b", - "start": { - "$date": "2021-02-18T21:30:33.000Z" - }, - "end": { - "$date": "2021-02-18T21:45:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "210b0b22-0be4-400a-8e11-19a768468c7d", - "start": { - "$date": "2021-02-18T21:45:33.000Z" - }, - "end": { - "$date": "2021-02-18T21:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "62855d38-282d-48ad-b402-009d7c386780", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-18T18:57:03.000Z" - }, - "end": { - "$date": "2021-02-18T21:02:37.000Z" - }, - "events": [ - { - "uuid": "bb644492-49ba-43fe-a889-1f3efc7cabe6", - "start": { - "$date": "2021-02-18T18:57:03.000Z" - }, - "end": { - "$date": "2021-02-18T21:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f42b0945-3007-4d23-83c4-1395a8c9e2f1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-18T19:11:01.000Z" - }, - "end": { - "$date": "2021-02-18T21:39:12.000Z" - }, - "events": [ - { - "uuid": "67de32a8-a830-4d02-a760-bbc6f7c03bd4", - "start": { - "$date": "2021-02-18T19:11:01.000Z" - }, - "end": { - "$date": "2021-02-18T20:20:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51f58e7a-7677-4661-9c19-838ca10a5cce", - "start": { - "$date": "2021-02-18T20:20:01.000Z" - }, - "end": { - "$date": "2021-02-18T21:25:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9ed8915f-7ea7-4111-ba19-b1b9e6bd936f", - "start": { - "$date": "2021-02-18T21:25:01.000Z" - }, - "end": { - "$date": "2021-02-18T21:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "831e6a37-a953-493c-bcd9-df7eaab0f7bf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-18T21:22:36.000Z" - }, - "end": { - "$date": "2021-02-19T00:32:44.000Z" - }, - "events": [ - { - "uuid": "f240d228-7f32-4d54-9513-13c5ae4e9b9b", - "start": { - "$date": "2021-02-18T21:22:36.000Z" - }, - "end": { - "$date": "2021-02-19T00:32:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bc8bdd15-aaa4-470e-b20b-6b03f16dc5f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-18T21:34:30.000Z" - }, - "end": { - "$date": "2021-02-18T21:36:20.000Z" - }, - "events": [ - { - "uuid": "838f1e85-ee98-4d72-8337-a2c46ea26cfc", - "start": { - "$date": "2021-02-18T21:34:30.000Z" - }, - "end": { - "$date": "2021-02-18T21:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7718473b-7cda-49ac-9613-23f089804dd2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-18T21:37:40.000Z" - }, - "end": { - "$date": "2021-02-18T22:41:49.000Z" - }, - "events": [ - { - "uuid": "d28b8a70-d883-44f6-8026-607b53a2c5a4", - "start": { - "$date": "2021-02-18T21:37:40.000Z" - }, - "end": { - "$date": "2021-02-18T22:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "35e96477-3ef9-43a3-9abd-2aa6e527c7a0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-18T21:40:39.000Z" - }, - "end": { - "$date": "2021-02-19T00:31:57.000Z" - }, - "events": [ - { - "uuid": "22e252fe-7ad9-4b31-be30-59a0e89b6eaf", - "start": { - "$date": "2021-02-18T21:40:39.000Z" - }, - "end": { - "$date": "2021-02-19T00:31:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3d1eabfe-ddc7-4a67-863d-91c0db5b7246", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-18T21:55:06.000Z" - }, - "end": { - "$date": "2021-02-18T21:56:31.000Z" - }, - "events": [ - { - "uuid": "60524a1c-f2f0-4909-9dad-6fb659785a9e", - "start": { - "$date": "2021-02-18T21:55:06.000Z" - }, - "end": { - "$date": "2021-02-18T21:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "577ef7cc-04cf-4975-ba24-153da4449502", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-18T22:21:28.000Z" - }, - "end": { - "$date": "2021-02-19T02:43:27.000Z" - }, - "events": [ - { - "uuid": "456d2c7c-56b1-4dc6-aeee-3a0466d6f528", - "start": { - "$date": "2021-02-18T22:21:28.000Z" - }, - "end": { - "$date": "2021-02-19T02:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0237e048-afb3-43b2-a38f-a80a84b59da6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-18T22:35:35.000Z" - }, - "end": { - "$date": "2021-02-18T22:47:42.000Z" - }, - "events": [ - { - "uuid": "b6a1b555-a909-4e67-9b93-219024de0225", - "start": { - "$date": "2021-02-18T22:35:35.000Z" - }, - "end": { - "$date": "2021-02-18T22:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "84c7c57f-f76a-4d55-b632-115e9a32b406", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-18T23:10:48.000Z" - }, - "end": { - "$date": "2021-02-18T23:51:23.000Z" - }, - "events": [ - { - "uuid": "0a559922-6651-4f7e-aaba-d206b1afadcf", - "start": { - "$date": "2021-02-18T23:10:48.000Z" - }, - "end": { - "$date": "2021-02-18T23:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "19571310-bbcc-414b-a960-309119ea8bbc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-18T23:26:11.000Z" - }, - "end": { - "$date": "2021-02-18T23:28:06.000Z" - }, - "events": [ - { - "uuid": "b6672171-a5ae-4ce5-a2e8-621225829326", - "start": { - "$date": "2021-02-18T23:26:11.000Z" - }, - "end": { - "$date": "2021-02-18T23:28:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c759c52f-ecb9-49c1-913c-f946795de255", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-18T23:31:35.000Z" - }, - "end": { - "$date": "2021-02-18T23:55:39.000Z" - }, - "events": [ - { - "uuid": "222dd4ab-f268-4dcc-96a0-9c852bc2292d", - "start": { - "$date": "2021-02-18T23:31:35.000Z" - }, - "end": { - "$date": "2021-02-18T23:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93d64a13-41b7-41b6-b5f7-a4baa8018399", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-18T23:52:59.000Z" - }, - "end": { - "$date": "2021-02-19T00:31:07.000Z" - }, - "events": [ - { - "uuid": "f114abbd-7c57-4543-9d04-2b8848d23e32", - "start": { - "$date": "2021-02-18T23:52:59.000Z" - }, - "end": { - "$date": "2021-02-19T00:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bbb7a2c-8c60-4ae6-b1d8-47df7baa8707", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T00:23:52.000Z" - }, - "end": { - "$date": "2021-02-19T00:50:55.000Z" - }, - "events": [ - { - "uuid": "6973ef7b-4db5-42b9-a910-1363132b9b91", - "start": { - "$date": "2021-02-19T00:23:52.000Z" - }, - "end": { - "$date": "2021-02-19T00:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c742da59-4bb0-4b29-a771-e2adcc48557d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-19T00:31:19.000Z" - }, - "end": { - "$date": "2021-02-19T00:32:58.000Z" - }, - "events": [ - { - "uuid": "f7f8cbaf-6278-4e37-b9c5-dab9ca5cf424", - "start": { - "$date": "2021-02-19T00:31:19.000Z" - }, - "end": { - "$date": "2021-02-19T00:32:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "482f09bd-f61f-472c-bbef-840986db8e2c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-19T00:40:19.000Z" - }, - "end": { - "$date": "2021-02-19T06:31:30.000Z" - }, - "events": [ - { - "uuid": "4b2d04be-739b-4ce3-b625-d014557152c7", - "start": { - "$date": "2021-02-19T00:40:19.000Z" - }, - "end": { - "$date": "2021-02-19T06:31:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b0bae3b-368a-463a-9cc4-721905afa044", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T00:54:09.000Z" - }, - "end": { - "$date": "2021-02-19T00:58:05.000Z" - }, - "events": [ - { - "uuid": "4a4a252b-3b2a-4483-b3d2-0fbc9d20093f", - "start": { - "$date": "2021-02-19T00:54:09.000Z" - }, - "end": { - "$date": "2021-02-19T00:58:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ccb89a6-0c95-48f8-abad-ce5ccff48a3f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T01:01:26.000Z" - }, - "end": { - "$date": "2021-02-19T01:03:39.000Z" - }, - "events": [ - { - "uuid": "e34b0748-e429-4057-8a37-7a274bd269a3", - "start": { - "$date": "2021-02-19T01:01:26.000Z" - }, - "end": { - "$date": "2021-02-19T01:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb1c85f4-066d-41d1-8fe9-f60d89bfe00e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T01:05:53.000Z" - }, - "end": { - "$date": "2021-02-19T01:09:57.000Z" - }, - "events": [ - { - "uuid": "d3189498-72b3-4335-ac98-264de3045ad5", - "start": { - "$date": "2021-02-19T01:05:53.000Z" - }, - "end": { - "$date": "2021-02-19T01:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "de4eeb04-06ec-464f-afe2-03f4e9150ac8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-19T01:08:02.000Z" - }, - "end": { - "$date": "2021-02-19T02:55:13.000Z" - }, - "events": [ - { - "uuid": "b6f2b70d-0d1a-45fe-a977-c6ba16f30cb2", - "start": { - "$date": "2021-02-19T01:08:02.000Z" - }, - "end": { - "$date": "2021-02-19T02:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "505b7816-80df-48e7-ac09-b1e624d906c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T01:10:40.000Z" - }, - "end": { - "$date": "2021-02-19T01:29:06.000Z" - }, - "events": [ - { - "uuid": "27c8e695-4db2-4b24-bc1d-53cbb3aa5720", - "start": { - "$date": "2021-02-19T01:10:40.000Z" - }, - "end": { - "$date": "2021-02-19T01:21:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "11453753-3fe3-4043-9881-0f6f28174293", - "start": { - "$date": "2021-02-19T01:21:40.000Z" - }, - "end": { - "$date": "2021-02-19T01:29:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "014b84ec-3085-4dd8-b11b-939f87eb6430", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T01:32:27.000Z" - }, - "end": { - "$date": "2021-02-19T01:34:43.000Z" - }, - "events": [ - { - "uuid": "0fc144f4-2ad8-4156-973e-9a126c9d326a", - "start": { - "$date": "2021-02-19T01:32:27.000Z" - }, - "end": { - "$date": "2021-02-19T01:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32b0b6ff-7f14-40ec-aac7-3bbf21db4003", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-19T01:40:21.000Z" - }, - "end": { - "$date": "2021-02-19T02:01:40.000Z" - }, - "events": [ - { - "uuid": "b788a2b7-28e9-4ce3-94b2-c3ef8114077e", - "start": { - "$date": "2021-02-19T01:40:21.000Z" - }, - "end": { - "$date": "2021-02-19T02:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "869eda34-5b52-4148-9b2b-8dcd29ced6d7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T01:40:28.000Z" - }, - "end": { - "$date": "2021-02-19T02:01:28.000Z" - }, - "events": [ - { - "uuid": "becc75a4-07b8-4455-aa8e-b5c8948a4972", - "start": { - "$date": "2021-02-19T01:40:28.000Z" - }, - "end": { - "$date": "2021-02-19T02:01:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ca86fd6-b33c-4052-ac07-b34bf7445e64", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-19T01:43:26.000Z" - }, - "end": { - "$date": "2021-02-19T02:01:38.000Z" - }, - "events": [ - { - "uuid": "b35d5c55-9dbe-458e-b4f6-01dca0083866", - "start": { - "$date": "2021-02-19T01:43:26.000Z" - }, - "end": { - "$date": "2021-02-19T02:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05c72c6b-f68a-4b36-8675-bdeba9123613", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-19T02:04:32.000Z" - }, - "end": { - "$date": "2021-02-19T02:26:00.000Z" - }, - "events": [ - { - "uuid": "aeefaa27-525b-4726-8992-49006a9aba62", - "start": { - "$date": "2021-02-19T02:04:32.000Z" - }, - "end": { - "$date": "2021-02-19T02:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b75f6a14-d296-42d7-be79-0d52b21d7b36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T02:05:08.000Z" - }, - "end": { - "$date": "2021-02-19T02:25:49.000Z" - }, - "events": [ - { - "uuid": "8b295b74-9f6c-4720-a321-5053d2afa0c8", - "start": { - "$date": "2021-02-19T02:05:08.000Z" - }, - "end": { - "$date": "2021-02-19T02:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7571a03c-4733-4eda-b292-bf085a372c9a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-19T02:05:17.000Z" - }, - "end": { - "$date": "2021-02-19T02:25:49.000Z" - }, - "events": [ - { - "uuid": "b6a89e59-2671-4d85-8fe5-28aec4a6a265", - "start": { - "$date": "2021-02-19T02:05:17.000Z" - }, - "end": { - "$date": "2021-02-19T02:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e1b54f4e-a8ec-4e42-9d55-6afbb38bf31c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-19T02:20:22.000Z" - }, - "end": { - "$date": "2021-02-19T02:27:19.000Z" - }, - "events": [ - { - "uuid": "0a8dd300-243b-48ff-822c-84d4cd8c5129", - "start": { - "$date": "2021-02-19T02:20:22.000Z" - }, - "end": { - "$date": "2021-02-19T02:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db8f7ad6-e6ca-40f1-9a34-3720905567c9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-19T02:27:33.000Z" - }, - "end": { - "$date": "2021-02-19T02:54:50.000Z" - }, - "events": [ - { - "uuid": "d9385470-9aa4-4700-9c5c-65d8b79e9280", - "start": { - "$date": "2021-02-19T02:27:33.000Z" - }, - "end": { - "$date": "2021-02-19T02:54:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9d2c58f-20b1-4ca5-99a2-b28c89419673", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T02:28:03.000Z" - }, - "end": { - "$date": "2021-02-19T03:08:06.000Z" - }, - "events": [ - { - "uuid": "94f19cd3-a36f-4afe-808b-3ab2e38b2577", - "start": { - "$date": "2021-02-19T02:28:03.000Z" - }, - "end": { - "$date": "2021-02-19T03:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "e7839f5e-6240-49b9-a480-f532f36d558b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-19T03:25:05.000Z" - }, - "end": { - "$date": "2021-02-19T03:26:55.000Z" - }, - "events": [ - { - "uuid": "dc6f698e-9851-4bd7-80ca-170cc2a58d43", - "start": { - "$date": "2021-02-19T03:25:05.000Z" - }, - "end": { - "$date": "2021-02-19T03:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "68307255-ed9a-42f8-835b-b39c46c19e11", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-19T03:33:50.000Z" - }, - "end": { - "$date": "2021-02-19T05:08:39.000Z" - }, - "events": [ - { - "uuid": "4d8cf543-9abe-4510-8730-3feed2061423", - "start": { - "$date": "2021-02-19T03:33:50.000Z" - }, - "end": { - "$date": "2021-02-19T05:08:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "bb5dcecb-ac61-48d9-a588-970a17ef6984", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T03:36:33.000Z" - }, - "end": { - "$date": "2021-02-19T03:53:59.000Z" - }, - "events": [ - { - "uuid": "0c7a97c9-e41b-46e3-aae8-f24c4fbf38ae", - "start": { - "$date": "2021-02-19T03:36:33.000Z" - }, - "end": { - "$date": "2021-02-19T03:53:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "34b14102-6c04-4f38-ae02-72ac8da69bfb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T03:57:54.000Z" - }, - "end": { - "$date": "2021-02-19T04:22:26.000Z" - }, - "events": [ - { - "uuid": "ba3d604f-985d-472b-88af-d1dd7dfadfa9", - "start": { - "$date": "2021-02-19T03:57:54.000Z" - }, - "end": { - "$date": "2021-02-19T04:22:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "da6d9332-7c36-4948-8b67-a1c68102194c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-19T04:19:32.000Z" - }, - "end": { - "$date": "2021-02-19T07:59:25.000Z" - }, - "events": [ - { - "uuid": "87306526-a50a-4f04-ad69-c58b6a9a0f11", - "start": { - "$date": "2021-02-19T04:19:32.000Z" - }, - "end": { - "$date": "2021-02-19T07:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "c0b6351d-b47f-4948-b024-64ac3ce94bbe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-19T05:07:38.000Z" - }, - "end": { - "$date": "2021-02-19T05:22:54.000Z" - }, - "events": [ - { - "uuid": "0a1e2468-bdde-43da-bc21-c8ad95d88d47", - "start": { - "$date": "2021-02-19T05:07:38.000Z" - }, - "end": { - "$date": "2021-02-19T05:22:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "865049c0-40de-4ff6-b4e9-fd0464092e11", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-19T05:23:14.000Z" - }, - "end": { - "$date": "2021-02-19T05:27:24.000Z" - }, - "events": [ - { - "uuid": "7c8fb810-0e12-4a6b-bacc-14dc0aef126c", - "start": { - "$date": "2021-02-19T05:23:14.000Z" - }, - "end": { - "$date": "2021-02-19T05:27:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd816fb7-c5ad-48e5-8f30-aeda38a57f2e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-19T05:32:07.000Z" - }, - "end": { - "$date": "2021-02-19T06:09:33.000Z" - }, - "events": [ - { - "uuid": "1c71c0dc-859d-4b92-93bd-5dd2cccea106", - "start": { - "$date": "2021-02-19T05:32:07.000Z" - }, - "end": { - "$date": "2021-02-19T06:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47cc68b9-b143-4cf2-944b-c3fb85deac68", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-19T06:10:34.000Z" - }, - "end": { - "$date": "2021-02-19T06:22:20.000Z" - }, - "events": [ - { - "uuid": "95f40c56-8b68-432f-83ee-18ee201bc359", - "start": { - "$date": "2021-02-19T06:10:34.000Z" - }, - "end": { - "$date": "2021-02-19T06:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "770f238b-13c7-4aac-beae-229c066f2eea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-19T06:32:19.000Z" - }, - "end": { - "$date": "2021-02-19T08:09:30.000Z" - }, - "events": [ - { - "uuid": "d7c0880b-be5e-45eb-93e6-f43d668072e6", - "start": { - "$date": "2021-02-19T06:32:19.000Z" - }, - "end": { - "$date": "2021-02-19T08:09:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "06b1bd93-ab28-48a2-a467-8e9d411ec689", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-19T08:00:20.000Z" - }, - "end": { - "$date": "2021-02-19T08:17:03.000Z" - }, - "events": [ - { - "uuid": "119b4f1f-2e5c-44bd-a641-dfdb71d30190", - "start": { - "$date": "2021-02-19T08:00:20.000Z" - }, - "end": { - "$date": "2021-02-19T08:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3c3bb499-22fc-4fca-8b44-a4d74453a6d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-19T08:18:43.000Z" - }, - "end": { - "$date": "2021-02-19T08:44:55.000Z" - }, - "events": [ - { - "uuid": "39511680-6855-4102-aa25-5916d0770e41", - "start": { - "$date": "2021-02-19T08:18:43.000Z" - }, - "end": { - "$date": "2021-02-19T08:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "483217a5-0738-4e5e-a272-a0d02646b906", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-19T15:58:14.000Z" - }, - "end": { - "$date": "2021-02-19T16:00:49.000Z" - }, - "events": [ - { - "uuid": "87c618b2-5590-425e-940a-b89a033939c7", - "start": { - "$date": "2021-02-19T15:58:14.000Z" - }, - "end": { - "$date": "2021-02-19T16:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "42a6213d-f6dc-453b-be96-b67aada8f659", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-19T16:02:09.000Z" - }, - "end": { - "$date": "2021-02-19T16:09:23.000Z" - }, - "events": [ - { - "uuid": "be396a39-1131-4931-9fbb-83d8bef2864e", - "start": { - "$date": "2021-02-19T16:02:09.000Z" - }, - "end": { - "$date": "2021-02-19T16:09:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "34b89224-662c-4074-a1f2-337483a70ed7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-19T16:39:38.000Z" - }, - "end": { - "$date": "2021-02-19T20:17:43.000Z" - }, - "events": [ - { - "uuid": "a9314e36-5466-4050-9419-00253adde715", - "start": { - "$date": "2021-02-19T16:39:38.000Z" - }, - "end": { - "$date": "2021-02-19T20:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "df93e83d-e0d0-4be2-9fba-b62b44609d88", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T16:50:19.000Z" - }, - "end": { - "$date": "2021-02-19T16:52:34.000Z" - }, - "events": [ - { - "uuid": "2654265f-7b69-433a-b311-e9450c420e76", - "start": { - "$date": "2021-02-19T16:50:19.000Z" - }, - "end": { - "$date": "2021-02-19T16:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5d94f682-1861-4b2d-acad-ac940d53c3e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T17:04:50.000Z" - }, - "end": { - "$date": "2021-02-19T17:07:49.000Z" - }, - "events": [ - { - "uuid": "387c3764-868b-4b40-b65f-9f59f4b8fa8f", - "start": { - "$date": "2021-02-19T17:04:50.000Z" - }, - "end": { - "$date": "2021-02-19T17:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "6b7b15ff-6f61-4ae5-a323-345560749788", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T17:45:21.000Z" - }, - "end": { - "$date": "2021-02-19T18:50:28.000Z" - }, - "events": [ - { - "uuid": "f4514f0d-8645-410d-8a3f-76cbcaa4c738", - "start": { - "$date": "2021-02-19T17:45:21.000Z" - }, - "end": { - "$date": "2021-02-19T18:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6906ca7-cf59-4400-b3c9-51448e2c09f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-19T20:20:38.000Z" - }, - "end": { - "$date": "2021-02-19T21:49:18.000Z" - }, - "events": [ - { - "uuid": "60b14bcf-8774-4df8-a402-38e8215ee697", - "start": { - "$date": "2021-02-19T20:20:38.000Z" - }, - "end": { - "$date": "2021-02-19T23:50:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3f7f8eb-5d92-4d6c-9edc-5af44529705b", - "start": { - "$date": "2021-02-19T23:50:38.000Z" - }, - "end": { - "$date": "2021-02-19T23:55:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "86d26101-2367-4616-9f43-d21b8a1cadf9", - "start": { - "$date": "2021-02-19T23:55:38.000Z" - }, - "end": { - "$date": "2021-02-20T00:05:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c13693d8-661e-46a5-b349-4509018ab8e1", - "start": { - "$date": "2021-02-20T00:05:38.000Z" - }, - "end": { - "$date": "2021-02-20T00:07:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d797290-4473-4062-8a68-480be43f1bbf", - "start": { - "$date": "2021-02-20T00:07:38.000Z" - }, - "end": { - "$date": "2021-02-19T21:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "005fded0-4ee5-4784-892e-938496f88b4b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-19T20:10:28.000Z" - }, - "end": { - "$date": "2021-02-20T01:08:17.000Z" - }, - "events": [ - { - "uuid": "f30e9b06-8684-4a7e-9036-5c3ad4e04ec2", - "start": { - "$date": "2021-02-19T20:10:28.000Z" - }, - "end": { - "$date": "2021-02-20T01:08:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d8bbdc5-9b25-4135-ab02-36e185bfd905", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T20:13:09.000Z" - }, - "end": { - "$date": "2021-02-19T20:41:15.000Z" - }, - "events": [ - { - "uuid": "0746710d-acf6-4eee-8af3-7ce25fe64ad3", - "start": { - "$date": "2021-02-19T20:13:09.000Z" - }, - "end": { - "$date": "2021-02-19T20:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "773edfb1-7296-4527-ba0f-e878ba8d31db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-19T20:31:39.000Z" - }, - "end": { - "$date": "2021-02-19T21:15:08.000Z" - }, - "events": [ - { - "uuid": "cd570235-a647-4d8b-bd1b-1504c5790685", - "start": { - "$date": "2021-02-19T20:31:39.000Z" - }, - "end": { - "$date": "2021-02-19T21:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "977a5228-068a-4017-9ddc-9afda4d242aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T20:41:47.000Z" - }, - "end": { - "$date": "2021-02-19T21:51:27.000Z" - }, - "events": [ - { - "uuid": "73ee60c5-c937-4740-a038-55a9dc30aa6e", - "start": { - "$date": "2021-02-19T20:41:47.000Z" - }, - "end": { - "$date": "2021-02-19T21:51:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bd482df9-396c-4e6f-b821-f5cb87f183fd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-19T20:46:11.000Z" - }, - "end": { - "$date": "2021-02-19T22:54:57.000Z" - }, - "events": [ - { - "uuid": "393b60e6-e16a-46ad-999d-5ffa29f3e60c", - "start": { - "$date": "2021-02-19T20:46:11.000Z" - }, - "end": { - "$date": "2021-02-19T20:57:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5bd42ea9-5db2-4bb9-9224-ff57c7506a40", - "start": { - "$date": "2021-02-19T20:57:11.000Z" - }, - "end": { - "$date": "2021-02-19T21:02:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cba62968-0199-423a-9e41-6c8bfbef438d", - "start": { - "$date": "2021-02-19T21:02:11.000Z" - }, - "end": { - "$date": "2021-02-19T22:54:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a79f8b27-6b5b-4bf9-b6a8-e74ac2fbd554", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-19T21:22:55.000Z" - }, - "end": { - "$date": "2021-02-19T22:59:48.000Z" - }, - "events": [ - { - "uuid": "71f92d3e-35e3-4b45-9435-7e83b167aa68", - "start": { - "$date": "2021-02-19T21:22:55.000Z" - }, - "end": { - "$date": "2021-02-19T22:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d129d189-c635-47b2-a9fd-d6d36656faa2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-19T21:49:38.000Z" - }, - "end": { - "$date": "2021-02-19T22:10:45.000Z" - }, - "events": [ - { - "uuid": "64e02ec8-7b8a-4ad2-9f14-567c4ce36ebe", - "start": { - "$date": "2021-02-19T21:49:38.000Z" - }, - "end": { - "$date": "2021-02-19T22:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8e99739b-18ce-4ef4-8190-6c17b8594dc3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-19T21:51:20.000Z" - }, - "end": { - "$date": "2021-02-19T23:03:47.000Z" - }, - "events": [ - { - "uuid": "c49b060d-7a13-42ac-8151-41d4a1077b87", - "start": { - "$date": "2021-02-19T21:51:20.000Z" - }, - "end": { - "$date": "2021-02-19T23:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b96e652-05b4-40da-83bd-b64298a18e24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T21:53:47.000Z" - }, - "end": { - "$date": "2021-02-19T22:17:22.000Z" - }, - "events": [ - { - "uuid": "1047f5b9-bb2c-41a4-b163-1e29c0b542dc", - "start": { - "$date": "2021-02-19T21:53:47.000Z" - }, - "end": { - "$date": "2021-02-19T22:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cb77261-a4d9-405d-bf07-bee4c2b9c4c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T22:27:28.000Z" - }, - "end": { - "$date": "2021-02-19T22:39:48.000Z" - }, - "events": [ - { - "uuid": "f4ec4b6c-52bf-452e-a677-a918385bc3f9", - "start": { - "$date": "2021-02-19T22:27:28.000Z" - }, - "end": { - "$date": "2021-02-19T22:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e065f36f-7584-41c9-8128-6e52dbc27a0a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T22:43:54.000Z" - }, - "end": { - "$date": "2021-02-19T23:02:49.000Z" - }, - "events": [ - { - "uuid": "8f80c00e-ccad-4ffa-80ec-a596fcf32537", - "start": { - "$date": "2021-02-19T22:43:54.000Z" - }, - "end": { - "$date": "2021-02-19T23:02:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14766929-415a-4573-8488-ae1ca44ab314", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T23:05:59.000Z" - }, - "end": { - "$date": "2021-02-19T23:26:24.000Z" - }, - "events": [ - { - "uuid": "7312899f-fa9e-494f-b460-412ad4fa5365", - "start": { - "$date": "2021-02-19T23:05:59.000Z" - }, - "end": { - "$date": "2021-02-19T23:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "9033f03a-6308-456a-a3f1-2a85bfdba0a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-19T23:03:57.000Z" - }, - "end": { - "$date": "2021-02-19T23:48:58.000Z" - }, - "events": [ - { - "uuid": "005c3e03-7504-4ab8-9672-72b2dcfbfe91", - "start": { - "$date": "2021-02-19T23:03:57.000Z" - }, - "end": { - "$date": "2021-02-19T23:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acc8dfc7-4ed8-44d9-bc5c-d71b34c60e52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T23:28:54.000Z" - }, - "end": { - "$date": "2021-02-19T23:31:03.000Z" - }, - "events": [ - { - "uuid": "840d1769-5446-427e-a09e-dabb5d44ee1d", - "start": { - "$date": "2021-02-19T23:28:54.000Z" - }, - "end": { - "$date": "2021-02-19T23:31:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a1bd80f-7546-451b-8ade-6761954714e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T23:32:45.000Z" - }, - "end": { - "$date": "2021-02-19T23:51:39.000Z" - }, - "events": [ - { - "uuid": "2b98b2be-6306-437f-994a-4d409a1b1840", - "start": { - "$date": "2021-02-19T23:32:45.000Z" - }, - "end": { - "$date": "2021-02-19T23:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7c653980-8db5-4d15-9a87-f76f37a354e5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-19T23:49:03.000Z" - }, - "end": { - "$date": "2021-02-20T03:37:10.000Z" - }, - "events": [ - { - "uuid": "443d1d9a-cbee-4fef-b1d0-27db5f722e1b", - "start": { - "$date": "2021-02-19T23:49:03.000Z" - }, - "end": { - "$date": "2021-02-20T03:23:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc88292a-c5c3-404d-ba79-ded838f0128f", - "start": { - "$date": "2021-02-20T03:23:03.000Z" - }, - "end": { - "$date": "2021-02-20T03:24:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0156066a-c6df-4b61-9a59-420f960a1057", - "start": { - "$date": "2021-02-20T03:24:03.000Z" - }, - "end": { - "$date": "2021-02-20T03:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5839c0ae-b412-4c8a-af91-228b2ef04ebd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-19T23:56:50.000Z" - }, - "end": { - "$date": "2021-02-20T00:21:40.000Z" - }, - "events": [ - { - "uuid": "94706317-0a91-4c86-b728-b0c6a508f96e", - "start": { - "$date": "2021-02-19T23:56:50.000Z" - }, - "end": { - "$date": "2021-02-20T00:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8be0832d-29a3-45cd-88b8-15aadcd79905", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T00:58:49.000Z" - }, - "end": { - "$date": "2021-02-20T03:22:17.000Z" - }, - "events": [ - { - "uuid": "3dc55939-1433-42c0-8af8-c7cbf9215d78", - "start": { - "$date": "2021-02-20T00:58:49.000Z" - }, - "end": { - "$date": "2021-02-20T03:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c94da005-1005-4a2d-99d0-91cae26d3e1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T02:02:03.000Z" - }, - "end": { - "$date": "2021-02-20T02:20:03.000Z" - }, - "events": [ - { - "uuid": "399d7c02-96eb-48ca-a070-321b4ebe7466", - "start": { - "$date": "2021-02-20T02:02:03.000Z" - }, - "end": { - "$date": "2021-02-20T02:20:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "795e3c6b-7727-4624-a92d-2c2cba4801f4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T02:09:20.000Z" - }, - "end": { - "$date": "2021-02-20T03:24:14.000Z" - }, - "events": [ - { - "uuid": "11d489c7-aafe-4d13-a4f3-5526463f5813", - "start": { - "$date": "2021-02-20T02:09:20.000Z" - }, - "end": { - "$date": "2021-02-20T03:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8c65c1bb-4033-4b4d-bb96-757f11e993d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T02:11:57.000Z" - }, - "end": { - "$date": "2021-02-20T03:49:37.000Z" - }, - "events": [ - { - "uuid": "50088454-c798-4291-a253-a3e5045225dd", - "start": { - "$date": "2021-02-20T02:11:57.000Z" - }, - "end": { - "$date": "2021-02-20T03:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "706c5727-d669-4746-8d4e-e582e3101dcd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T02:21:12.000Z" - }, - "end": { - "$date": "2021-02-20T03:19:28.000Z" - }, - "events": [ - { - "uuid": "af37a395-9187-46cc-ba8b-d1fc1aac8a68", - "start": { - "$date": "2021-02-20T02:21:12.000Z" - }, - "end": { - "$date": "2021-02-20T03:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4811c472-b9b6-4e97-8514-40885a19e294", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T02:22:58.000Z" - }, - "end": { - "$date": "2021-02-20T02:42:43.000Z" - }, - "events": [ - { - "uuid": "820a5aa9-33f1-47cf-bd4e-41df78d6252d", - "start": { - "$date": "2021-02-20T02:22:58.000Z" - }, - "end": { - "$date": "2021-02-20T02:42:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b503e08f-ee5f-4650-bec3-3b8b9b36fd50", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T02:46:34.000Z" - }, - "end": { - "$date": "2021-02-20T03:07:19.000Z" - }, - "events": [ - { - "uuid": "a4f3384b-29f0-446b-bcd1-d89ee3ef0e13", - "start": { - "$date": "2021-02-20T02:46:34.000Z" - }, - "end": { - "$date": "2021-02-20T03:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fd83c647-3024-4409-82c5-9523d05f0df9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-20T03:02:22.000Z" - }, - "end": { - "$date": "2021-02-20T03:03:27.000Z" - }, - "events": [ - { - "uuid": "96b77177-7a42-4c4b-aed6-5e1e471fc636", - "start": { - "$date": "2021-02-20T03:02:22.000Z" - }, - "end": { - "$date": "2021-02-20T03:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1f87b0c-eaa2-4b7c-9226-1daeeb5bdf5e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T03:10:46.000Z" - }, - "end": { - "$date": "2021-02-20T03:25:24.000Z" - }, - "events": [ - { - "uuid": "1077fc4a-c8b6-4bc1-b478-b070d9fc737d", - "start": { - "$date": "2021-02-20T03:10:46.000Z" - }, - "end": { - "$date": "2021-02-20T03:25:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "923d0192-b735-42cd-94a7-44fca0fca38d", - "uuid": "9ab661ec-5354-49a6-bfd0-f56bcb3780d1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T03:26:31.000Z" - }, - "end": { - "$date": "2021-02-20T03:51:19.000Z" - }, - "events": [ - { - "uuid": "112fbb4e-2a8f-4c6f-acf0-5888319523b3", - "start": { - "$date": "2021-02-20T03:26:31.000Z" - }, - "end": { - "$date": "2021-02-20T03:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", - "uuid": "9ab336da-59e1-40e2-a94c-b41115ea8564", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T03:26:47.000Z" - }, - "end": { - "$date": "2021-02-20T03:30:49.000Z" - }, - "events": [ - { - "uuid": "8a490854-fcdd-4fa8-99ca-88dc70251782", - "start": { - "$date": "2021-02-20T03:26:47.000Z" - }, - "end": { - "$date": "2021-02-20T03:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", - "uuid": "6cbe60f5-315e-481b-9d5f-011ec8ef4331", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T03:30:53.000Z" - }, - "end": { - "$date": "2021-02-20T07:06:47.000Z" - }, - "events": [ - { - "uuid": "e5ef1406-db13-4427-9aa2-1be17123abee", - "start": { - "$date": "2021-02-20T03:30:53.000Z" - }, - "end": { - "$date": "2021-02-20T07:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "07449e39-59d7-4408-908e-538cff1d684e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T03:33:32.000Z" - }, - "end": { - "$date": "2021-02-20T03:56:00.000Z" - }, - "events": [ - { - "uuid": "6746b3e9-3ee7-4841-806a-2a4fa0d11b40", - "start": { - "$date": "2021-02-20T03:33:32.000Z" - }, - "end": { - "$date": "2021-02-20T03:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "1ca75d52-c877-4931-b84b-9c85b4165ea9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T03:37:24.000Z" - }, - "end": { - "$date": "2021-02-20T03:54:21.000Z" - }, - "events": [ - { - "uuid": "1dd3a633-6b45-4350-b4ec-ea02b4f26e1e", - "start": { - "$date": "2021-02-20T03:37:24.000Z" - }, - "end": { - "$date": "2021-02-20T03:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "109634e2-1b45-4942-a515-a804d9225724", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T03:54:56.000Z" - }, - "end": { - "$date": "2021-02-20T05:31:18.000Z" - }, - "events": [ - { - "uuid": "4c363c85-2e81-4715-b1a6-ad090797d41c", - "start": { - "$date": "2021-02-20T03:54:56.000Z" - }, - "end": { - "$date": "2021-02-20T05:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "5d3aecf0-bf1b-46fa-bc48-b59c8bf05ef2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T03:56:56.000Z" - }, - "end": { - "$date": "2021-02-20T05:31:10.000Z" - }, - "events": [ - { - "uuid": "02dc9b72-01e3-4881-a88c-ae6239fd6277", - "start": { - "$date": "2021-02-20T03:56:56.000Z" - }, - "end": { - "$date": "2021-02-20T05:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a56ad76-648f-417d-bb38-d484a186b4a1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T04:00:51.000Z" - }, - "end": { - "$date": "2021-02-20T04:22:13.000Z" - }, - "events": [ - { - "uuid": "313c2c3d-9797-49af-95df-25576eb01be4", - "start": { - "$date": "2021-02-20T04:00:51.000Z" - }, - "end": { - "$date": "2021-02-20T04:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce0ce26e-df85-45a1-8b13-91cd27a3861a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T04:00:48.000Z" - }, - "end": { - "$date": "2021-02-20T04:22:13.000Z" - }, - "events": [ - { - "uuid": "eaa24d76-6e98-47d6-a1d0-c54e62ffb9ac", - "start": { - "$date": "2021-02-20T04:00:48.000Z" - }, - "end": { - "$date": "2021-02-20T04:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2230e31f-7944-491d-a3d8-fb77b2ab5a10", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T04:00:55.000Z" - }, - "end": { - "$date": "2021-02-20T04:22:15.000Z" - }, - "events": [ - { - "uuid": "8e9ff9dd-4234-49d4-b89c-0fa620915ce4", - "start": { - "$date": "2021-02-20T04:00:55.000Z" - }, - "end": { - "$date": "2021-02-20T04:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f67d6af5-6a8b-4152-ae1b-aa1ce31f66f4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T03:59:09.000Z" - }, - "end": { - "$date": "2021-02-20T05:42:22.000Z" - }, - "events": [ - { - "uuid": "33a3a8c1-bb9d-4c51-b0ba-b4143c5b1cfd", - "start": { - "$date": "2021-02-20T03:59:09.000Z" - }, - "end": { - "$date": "2021-02-20T05:42:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faebfc0e-4102-485b-82d6-3fcee0e9fd1e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T04:24:57.000Z" - }, - "end": { - "$date": "2021-02-20T04:50:19.000Z" - }, - "events": [ - { - "uuid": "d760d4b6-856c-4f9b-b904-f96b8ca1450b", - "start": { - "$date": "2021-02-20T04:24:57.000Z" - }, - "end": { - "$date": "2021-02-20T04:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83ea0816-2e6e-41e7-9a62-9d106bf85f28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T04:25:06.000Z" - }, - "end": { - "$date": "2021-02-20T04:50:24.000Z" - }, - "events": [ - { - "uuid": "5cdbef85-4c7a-4b62-9e48-ae7907588742", - "start": { - "$date": "2021-02-20T04:25:06.000Z" - }, - "end": { - "$date": "2021-02-20T04:50:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d21053a0-e2c2-4d18-9485-b9f7f044012b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T04:25:14.000Z" - }, - "end": { - "$date": "2021-02-20T04:50:14.000Z" - }, - "events": [ - { - "uuid": "864403ce-857a-4fbc-a003-6aeedeebe0d1", - "start": { - "$date": "2021-02-20T04:25:14.000Z" - }, - "end": { - "$date": "2021-02-20T04:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "864de9b8-e28f-4111-be03-ad499010310d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T04:53:58.000Z" - }, - "end": { - "$date": "2021-02-20T05:13:35.000Z" - }, - "events": [ - { - "uuid": "67792ade-f231-4546-9240-0ba22f61e773", - "start": { - "$date": "2021-02-20T04:53:58.000Z" - }, - "end": { - "$date": "2021-02-20T05:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62132898-2c42-4422-a22b-6b56abf9902a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T04:53:44.000Z" - }, - "end": { - "$date": "2021-02-20T05:13:34.000Z" - }, - "events": [ - { - "uuid": "776384af-7d5e-45d4-a695-e33e1b641a37", - "start": { - "$date": "2021-02-20T04:53:44.000Z" - }, - "end": { - "$date": "2021-02-20T05:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d727dac-e125-4e6b-b00e-5ecdf1830aa5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T04:53:22.000Z" - }, - "end": { - "$date": "2021-02-20T05:13:38.000Z" - }, - "events": [ - { - "uuid": "6a64bdbb-452e-477e-9d2c-278175d5712c", - "start": { - "$date": "2021-02-20T04:53:22.000Z" - }, - "end": { - "$date": "2021-02-20T05:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c44e15a4-9a04-4158-a1f2-dcf45b5eb54d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-20T04:56:45.000Z" - }, - "end": { - "$date": "2021-02-20T05:08:14.000Z" - }, - "events": [ - { - "uuid": "e58bc4d2-a9f1-4c4c-8aeb-61648a0e1223", - "start": { - "$date": "2021-02-20T04:56:45.000Z" - }, - "end": { - "$date": "2021-02-20T05:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "2e515656-c616-4414-8b15-4428037bb561", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-20T05:08:40.000Z" - }, - "end": { - "$date": "2021-02-20T09:11:30.000Z" - }, - "events": [ - { - "uuid": "a6cd825c-028b-43e5-9355-2151e2683ecc", - "start": { - "$date": "2021-02-20T05:08:40.000Z" - }, - "end": { - "$date": "2021-02-20T09:11:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a7e242d-0803-4e5e-830b-5baab94365a6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T05:16:59.000Z" - }, - "end": { - "$date": "2021-02-20T05:34:15.000Z" - }, - "events": [ - { - "uuid": "2d8ae918-4ecf-4485-8fdc-db258a94cbed", - "start": { - "$date": "2021-02-20T05:16:59.000Z" - }, - "end": { - "$date": "2021-02-20T05:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a37eca4b-a383-42ff-9b3a-b79d6c36fb7a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T05:17:08.000Z" - }, - "end": { - "$date": "2021-02-20T05:34:23.000Z" - }, - "events": [ - { - "uuid": "94fe0b49-60ee-41f9-b959-bd69c184c7af", - "start": { - "$date": "2021-02-20T05:17:08.000Z" - }, - "end": { - "$date": "2021-02-20T05:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e510f5c-51e9-44cf-bdb8-0d452d2deddf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T05:17:00.000Z" - }, - "end": { - "$date": "2021-02-20T05:34:15.000Z" - }, - "events": [ - { - "uuid": "4173f906-f73a-4a34-8b4c-42909b3ff3b5", - "start": { - "$date": "2021-02-20T05:17:00.000Z" - }, - "end": { - "$date": "2021-02-20T05:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6456579b-a4a7-495f-b0e7-c2a92b17f838", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T05:36:29.000Z" - }, - "end": { - "$date": "2021-02-20T05:58:51.000Z" - }, - "events": [ - { - "uuid": "9174b1bc-b2c7-4b3e-8d28-a3ba0b457e8f", - "start": { - "$date": "2021-02-20T05:36:29.000Z" - }, - "end": { - "$date": "2021-02-20T05:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df162f8f-5d56-43e4-865a-8fbfa9a14628", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T05:36:30.000Z" - }, - "end": { - "$date": "2021-02-20T05:58:50.000Z" - }, - "events": [ - { - "uuid": "e762a22b-f1ce-4ed6-ba27-6ebd8c021774", - "start": { - "$date": "2021-02-20T05:36:30.000Z" - }, - "end": { - "$date": "2021-02-20T05:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4bd9687-e712-4d88-af65-535c67db89d9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T05:36:34.000Z" - }, - "end": { - "$date": "2021-02-20T05:58:50.000Z" - }, - "events": [ - { - "uuid": "454b51a8-2e94-4002-b12e-ac166d7cfb85", - "start": { - "$date": "2021-02-20T05:36:34.000Z" - }, - "end": { - "$date": "2021-02-20T05:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a2809fa5-6b1a-458e-8051-1b9fea28d23e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T05:41:44.000Z" - }, - "end": { - "$date": "2021-02-20T06:35:30.000Z" - }, - "events": [ - { - "uuid": "55d75895-9f61-401e-8a72-50b863897d6b", - "start": { - "$date": "2021-02-20T05:41:44.000Z" - }, - "end": { - "$date": "2021-02-20T06:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f261b495-b3ae-46b9-8280-57f3c846a2eb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T05:42:46.000Z" - }, - "end": { - "$date": "2021-02-20T06:35:53.000Z" - }, - "events": [ - { - "uuid": "c6fe364a-2185-4e56-8faf-05accb2760fd", - "start": { - "$date": "2021-02-20T05:42:46.000Z" - }, - "end": { - "$date": "2021-02-20T06:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4cf29491-5a09-4d59-ad94-2e62ff654ac1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T06:00:20.000Z" - }, - "end": { - "$date": "2021-02-20T09:07:45.000Z" - }, - "events": [ - { - "uuid": "b5bf3703-b735-431b-876a-bc7781b110dd", - "start": { - "$date": "2021-02-20T06:00:20.000Z" - }, - "end": { - "$date": "2021-02-20T09:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ab545af3-10b4-4898-8593-de579b36f309", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T06:35:50.000Z" - }, - "end": { - "$date": "2021-02-20T06:50:55.000Z" - }, - "events": [ - { - "uuid": "8a0600dc-d2dc-4cd5-b171-af6882ce78b9", - "start": { - "$date": "2021-02-20T06:35:50.000Z" - }, - "end": { - "$date": "2021-02-20T06:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "063ee0a4-54c4-4a14-9cc7-4116befaa509", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T06:40:19.000Z" - }, - "end": { - "$date": "2021-02-20T08:14:40.000Z" - }, - "events": [ - { - "uuid": "0e42c298-1034-4376-9885-d89c1fc00834", - "start": { - "$date": "2021-02-20T06:40:19.000Z" - }, - "end": { - "$date": "2021-02-20T06:53:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b3e2169-036e-4e54-bc78-1638189e9043", - "start": { - "$date": "2021-02-20T06:53:19.000Z" - }, - "end": { - "$date": "2021-02-20T06:56:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9184453c-7163-4464-94f9-bf077e6d05e2", - "start": { - "$date": "2021-02-20T06:56:19.000Z" - }, - "end": { - "$date": "2021-02-20T08:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c07fa079-e836-4a6b-9eda-37f664f1faa0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T07:05:31.000Z" - }, - "end": { - "$date": "2021-02-20T08:26:26.000Z" - }, - "events": [ - { - "uuid": "70fc609e-848a-447d-9172-f7ee0652adce", - "start": { - "$date": "2021-02-20T07:05:31.000Z" - }, - "end": { - "$date": "2021-02-20T08:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ec844734-6b75-47f6-a353-1a564056fb41", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T07:13:10.000Z" - }, - "end": { - "$date": "2021-02-20T07:22:31.000Z" - }, - "events": [ - { - "uuid": "330c512c-a041-47fa-b8e6-c226a1c6ac8f", - "start": { - "$date": "2021-02-20T07:13:10.000Z" - }, - "end": { - "$date": "2021-02-20T07:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "669c607e-b8f3-4bee-ace3-10f1e384cd6e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T08:07:51.000Z" - }, - "end": { - "$date": "2021-02-20T09:22:17.000Z" - }, - "events": [ - { - "uuid": "3470d67a-0113-4446-bf2a-5a8570ecd4ac", - "start": { - "$date": "2021-02-20T08:07:51.000Z" - }, - "end": { - "$date": "2021-02-20T09:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1bb28705-69c8-414e-9bc6-41af1de50d49", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T08:52:53.000Z" - }, - "end": { - "$date": "2021-02-20T10:23:12.000Z" - }, - "events": [ - { - "uuid": "c3ed576e-3389-4fbf-8d1f-51bbea32a554", - "start": { - "$date": "2021-02-20T08:52:53.000Z" - }, - "end": { - "$date": "2021-02-20T10:23:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "04587646-797a-4826-b653-cf212d629569", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T15:56:42.000Z" - }, - "end": { - "$date": "2021-02-20T16:00:58.000Z" - }, - "events": [ - { - "uuid": "ac6dec7f-92d0-4e4c-89b5-012a89e2a6b4", - "start": { - "$date": "2021-02-20T15:56:42.000Z" - }, - "end": { - "$date": "2021-02-20T16:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4d57449b-f9d9-4ee8-a8ae-13b321b10249", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T16:01:38.000Z" - }, - "end": { - "$date": "2021-02-20T17:27:39.000Z" - }, - "events": [ - { - "uuid": "8c29c31a-820e-4a7b-bf8b-0bdbf6ab9301", - "start": { - "$date": "2021-02-20T16:01:38.000Z" - }, - "end": { - "$date": "2021-02-20T17:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b51e22a4-f689-4415-a0a8-3ff41488c5eb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T16:05:40.000Z" - }, - "end": { - "$date": "2021-02-20T18:08:26.000Z" - }, - "events": [ - { - "uuid": "b424b98e-488f-4926-8cb0-db82f16d7c52", - "start": { - "$date": "2021-02-20T16:05:40.000Z" - }, - "end": { - "$date": "2021-02-20T18:08:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dbd204b4-b504-47e7-a75a-36bfe0f48c2b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T16:21:53.000Z" - }, - "end": { - "$date": "2021-02-20T17:42:30.000Z" - }, - "events": [ - { - "uuid": "28cb960b-8876-433b-93aa-fbb9e821ea29", - "start": { - "$date": "2021-02-20T16:21:53.000Z" - }, - "end": { - "$date": "2021-02-20T16:35:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e9c6822-6fb8-466d-88da-43cddec9ecaa", - "start": { - "$date": "2021-02-20T16:35:53.000Z" - }, - "end": { - "$date": "2021-02-20T16:39:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8bb44a1-289f-451f-851e-6ab9ec322046", - "start": { - "$date": "2021-02-20T16:39:53.000Z" - }, - "end": { - "$date": "2021-02-20T17:42:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99a3ee98-8dbd-47b4-8349-9600cd41bf71", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T17:27:59.000Z" - }, - "end": { - "$date": "2021-02-20T17:29:09.000Z" - }, - "events": [ - { - "uuid": "f82e42eb-9f8f-4fc4-bdc5-7856121354db", - "start": { - "$date": "2021-02-20T17:27:59.000Z" - }, - "end": { - "$date": "2021-02-20T17:29:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a51a9688-1b3c-4faf-acd6-52d038fc5685", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T17:29:14.000Z" - }, - "end": { - "$date": "2021-02-20T17:31:15.000Z" - }, - "events": [ - { - "uuid": "45ef6899-f0aa-4f10-815f-f5a3135276c9", - "start": { - "$date": "2021-02-20T17:29:14.000Z" - }, - "end": { - "$date": "2021-02-20T17:31:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "378159c2-4449-43a0-a5d9-d0026e5fdcbf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T17:33:30.000Z" - }, - "end": { - "$date": "2021-02-20T18:17:41.000Z" - }, - "events": [ - { - "uuid": "7de67dd4-4d19-4266-8f44-8bb9e68fd16d", - "start": { - "$date": "2021-02-20T17:33:30.000Z" - }, - "end": { - "$date": "2021-02-20T18:17:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d68dbb90-4270-4caa-b15d-c2a281e7ff4b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T18:09:42.000Z" - }, - "end": { - "$date": "2021-02-20T18:23:58.000Z" - }, - "events": [ - { - "uuid": "c0fa05fb-7afa-4e24-8c80-ca595ee32a14", - "start": { - "$date": "2021-02-20T18:09:42.000Z" - }, - "end": { - "$date": "2021-02-20T18:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "88f80848-56f6-4988-bc0f-e2471ac87bce", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T18:17:46.000Z" - }, - "end": { - "$date": "2021-02-20T19:00:25.000Z" - }, - "events": [ - { - "uuid": "5aab612e-8dc9-4b3c-ac1a-66b3eb4a417d", - "start": { - "$date": "2021-02-20T18:17:46.000Z" - }, - "end": { - "$date": "2021-02-20T19:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ab7b9f5-c968-4e58-8275-419702540da7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T19:10:46.000Z" - }, - "end": { - "$date": "2021-02-20T19:43:15.000Z" - }, - "events": [ - { - "uuid": "bf68f782-8d87-43d0-8e22-557ecf205a36", - "start": { - "$date": "2021-02-20T19:10:46.000Z" - }, - "end": { - "$date": "2021-02-20T19:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a40aa53b-c987-483e-a68a-4ac1d00c6ca9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T19:18:03.000Z" - }, - "end": { - "$date": "2021-02-20T19:19:34.000Z" - }, - "events": [ - { - "uuid": "752298d7-f394-4ee9-a78f-8cfb05dbf24a", - "start": { - "$date": "2021-02-20T19:18:03.000Z" - }, - "end": { - "$date": "2021-02-20T19:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c49ad8e2-dffb-46e8-8456-b5527e813e83", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-20T19:31:45.000Z" - }, - "end": { - "$date": "2021-02-20T20:34:41.000Z" - }, - "events": [ - { - "uuid": "a8bdf7f2-559d-4fd1-8fdb-5edc20b93e38", - "start": { - "$date": "2021-02-20T19:31:45.000Z" - }, - "end": { - "$date": "2021-02-20T20:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "038fb780-49f9-4edf-aa2c-51c47e494102", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T20:15:18.000Z" - }, - "end": { - "$date": "2021-02-20T20:59:11.000Z" - }, - "events": [ - { - "uuid": "51bde14a-0ade-4bf7-b507-360eaa23c51b", - "start": { - "$date": "2021-02-20T20:15:18.000Z" - }, - "end": { - "$date": "2021-02-20T20:59:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d420f7cc-38a0-410f-a869-0caa26272113", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T20:16:59.000Z" - }, - "end": { - "$date": "2021-02-20T21:25:25.000Z" - }, - "events": [ - { - "uuid": "05e1c201-7d28-45ec-9254-d8a4802d7528", - "start": { - "$date": "2021-02-20T20:16:59.000Z" - }, - "end": { - "$date": "2021-02-20T21:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "7e22ac5a-8ec9-4a12-8d2d-e6ad13c25802", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-20T20:19:22.000Z" - }, - "end": { - "$date": "2021-02-20T21:17:09.000Z" - }, - "events": [ - { - "uuid": "553f9d14-2d66-4358-a186-f049aba558cf", - "start": { - "$date": "2021-02-20T20:19:22.000Z" - }, - "end": { - "$date": "2021-02-20T21:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a718cb36-c259-4639-a859-6b366960d534", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T21:02:14.000Z" - }, - "end": { - "$date": "2021-02-20T21:37:17.000Z" - }, - "events": [ - { - "uuid": "445f0f8b-b1fc-4815-8bb5-47f007dc0e5f", - "start": { - "$date": "2021-02-20T21:02:14.000Z" - }, - "end": { - "$date": "2021-02-20T21:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cfdc9b81-069a-42a0-940f-67850ed389a8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-20T21:17:10.000Z" - }, - "end": { - "$date": "2021-02-21T00:42:51.000Z" - }, - "events": [ - { - "uuid": "a5c9cbde-969a-4e6f-8502-839776d113a5", - "start": { - "$date": "2021-02-20T21:17:10.000Z" - }, - "end": { - "$date": "2021-02-21T00:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a4c2bedf-6d25-48e3-9a0e-dfba72a615a1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T21:20:24.000Z" - }, - "end": { - "$date": "2021-02-20T22:19:06.000Z" - }, - "events": [ - { - "uuid": "004bac9f-00d7-4176-b4fd-fce7423af4d9", - "start": { - "$date": "2021-02-20T21:20:24.000Z" - }, - "end": { - "$date": "2021-02-20T22:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f68686ad-5a9d-4eea-ba00-7097a66b3072", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T21:36:13.000Z" - }, - "end": { - "$date": "2021-02-20T21:56:51.000Z" - }, - "events": [ - { - "uuid": "6018bef3-bd96-4a70-908c-54ae3d939f05", - "start": { - "$date": "2021-02-20T21:36:13.000Z" - }, - "end": { - "$date": "2021-02-20T21:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "66527cf8-af02-4699-ad77-04c275c53555", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-20T21:43:03.000Z" - }, - "end": { - "$date": "2021-02-20T23:53:31.000Z" - }, - "events": [ - { - "uuid": "291601c8-6877-4031-b321-3866762e1dcd", - "start": { - "$date": "2021-02-20T21:43:03.000Z" - }, - "end": { - "$date": "2021-02-20T22:18:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "936aa820-6fb7-4966-bc12-fda1ae8e8be3", - "start": { - "$date": "2021-02-20T22:18:03.000Z" - }, - "end": { - "$date": "2021-02-20T22:41:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc98cfe7-1ef9-4345-beea-26485ecc7bf0", - "start": { - "$date": "2021-02-20T22:41:03.000Z" - }, - "end": { - "$date": "2021-02-20T23:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94ab31f4-5035-48bd-8c65-b3567eaf7531", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-20T21:48:38.000Z" - }, - "end": { - "$date": "2021-02-20T22:17:58.000Z" - }, - "events": [ - { - "uuid": "fd856ffa-437d-4bb4-93a0-9710d41c8e07", - "start": { - "$date": "2021-02-20T21:48:38.000Z" - }, - "end": { - "$date": "2021-02-20T22:17:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bd477c1d-8c66-421a-b7b0-bc8da3111137", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-20T21:53:16.000Z" - }, - "end": { - "$date": "2021-02-21T03:59:37.000Z" - }, - "events": [ - { - "uuid": "30d78184-3bae-43eb-b1fd-062e69d8b054", - "start": { - "$date": "2021-02-20T21:53:16.000Z" - }, - "end": { - "$date": "2021-02-20T23:01:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "190b678f-f585-4d78-bda4-b57a12c21395", - "start": { - "$date": "2021-02-20T23:01:16.000Z" - }, - "end": { - "$date": "2021-02-20T23:02:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ddf5421e-1ab3-48b3-ba9e-c87b1bf29e14", - "start": { - "$date": "2021-02-20T23:02:16.000Z" - }, - "end": { - "$date": "2021-02-21T00:33:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06c7ddd8-9ba3-40db-962a-26f1c1596ec6", - "start": { - "$date": "2021-02-21T00:33:16.000Z" - }, - "end": { - "$date": "2021-02-21T00:37:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4896c979-ada6-4be6-8ea5-fb7796a20b33", - "start": { - "$date": "2021-02-21T00:37:16.000Z" - }, - "end": { - "$date": "2021-02-21T00:49:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "967124ba-13f8-4e99-b670-b6af76f505ff", - "start": { - "$date": "2021-02-21T00:49:16.000Z" - }, - "end": { - "$date": "2021-02-21T01:00:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f94667e7-9eea-49b4-8bcb-12799447799c", - "start": { - "$date": "2021-02-21T01:00:16.000Z" - }, - "end": { - "$date": "2021-02-21T02:24:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1aa6497-9f60-4f44-bc47-00f08f01e7c1", - "start": { - "$date": "2021-02-21T02:24:16.000Z" - }, - "end": { - "$date": "2021-02-21T02:28:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "553a534c-5285-4e9c-86de-d2d12f04b51a", - "start": { - "$date": "2021-02-21T02:28:16.000Z" - }, - "end": { - "$date": "2021-02-21T03:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d8772a3-d764-40e1-9d83-858ca64913c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T22:02:38.000Z" - }, - "end": { - "$date": "2021-02-20T22:19:31.000Z" - }, - "events": [ - { - "uuid": "3542cc29-4b14-4560-9892-a9ded2538511", - "start": { - "$date": "2021-02-20T22:02:38.000Z" - }, - "end": { - "$date": "2021-02-20T22:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f23c41b-128b-4b79-980b-6e06aa384b4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-20T22:14:23.000Z" - }, - "end": { - "$date": "2021-02-20T22:21:48.000Z" - }, - "events": [ - { - "uuid": "99cefc98-5c38-4de8-94bb-1e45f1ce68de", - "start": { - "$date": "2021-02-20T22:14:23.000Z" - }, - "end": { - "$date": "2021-02-20T22:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d05ac50-5aea-44ec-a367-5643e5710193", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T22:22:14.000Z" - }, - "end": { - "$date": "2021-02-20T22:42:37.000Z" - }, - "events": [ - { - "uuid": "64e7b604-a1ba-49a8-8580-73c07335b022", - "start": { - "$date": "2021-02-20T22:22:14.000Z" - }, - "end": { - "$date": "2021-02-20T22:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "dd215a10-ba3a-4e4f-9929-fa1b219b641e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-20T22:34:45.000Z" - }, - "end": { - "$date": "2021-02-20T23:41:19.000Z" - }, - "events": [ - { - "uuid": "7d0d5296-9f4c-42e8-b635-2f422c9589a9", - "start": { - "$date": "2021-02-20T22:34:45.000Z" - }, - "end": { - "$date": "2021-02-20T23:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bce45dcf-0f13-4906-a421-34a7918550a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-20T22:46:09.000Z" - }, - "end": { - "$date": "2021-02-20T22:59:57.000Z" - }, - "events": [ - { - "uuid": "da382795-636e-410a-97e0-70d60ebc6eb0", - "start": { - "$date": "2021-02-20T22:46:09.000Z" - }, - "end": { - "$date": "2021-02-20T22:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a51446f8-9fa1-43e9-92a2-2cd55ea1dcba", - "uuid": "a4632c5c-d31f-401f-81dc-917616ab60d3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-20T22:43:14.000Z" - }, - "end": { - "$date": "2021-02-20T22:49:56.000Z" - }, - "events": [ - { - "uuid": "f1d97769-b1b3-4b99-8b36-e1cb3a7736cd", - "start": { - "$date": "2021-02-20T22:43:14.000Z" - }, - "end": { - "$date": "2021-02-20T22:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "5e7d31b0-efbd-4852-97d4-ff54e90bcccd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T22:53:04.000Z" - }, - "end": { - "$date": "2021-02-20T23:31:37.000Z" - }, - "events": [ - { - "uuid": "249f8077-3ad5-44f7-b2b9-f571ce8c43f6", - "start": { - "$date": "2021-02-20T22:53:04.000Z" - }, - "end": { - "$date": "2021-02-20T23:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "8075f692-70de-4f36-ae5c-2ea6e222f2b5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-20T23:31:53.000Z" - }, - "end": { - "$date": "2021-02-21T00:28:28.000Z" - }, - "events": [ - { - "uuid": "fc317765-20db-4bda-9384-93778467460c", - "start": { - "$date": "2021-02-20T23:31:53.000Z" - }, - "end": { - "$date": "2021-02-21T00:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", - "uuid": "b9fdf1af-5baf-4736-ac4b-4eb7501c7f38", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-21T00:30:05.000Z" - }, - "end": { - "$date": "2021-02-21T01:25:29.000Z" - }, - "events": [ - { - "uuid": "31bf6054-9129-430c-bbe4-af5a72da68b5", - "start": { - "$date": "2021-02-21T00:30:05.000Z" - }, - "end": { - "$date": "2021-02-21T01:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4cf05cca-c1a5-4dc0-9166-647e70bc244e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T00:42:04.000Z" - }, - "end": { - "$date": "2021-02-21T00:50:13.000Z" - }, - "events": [ - { - "uuid": "d383fc84-bc1d-4b1e-aa3c-ffded4a61603", - "start": { - "$date": "2021-02-21T00:42:04.000Z" - }, - "end": { - "$date": "2021-02-21T00:50:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "385eb4e6-dd95-491a-8358-fcb5ca5124fe", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T00:51:15.000Z" - }, - "end": { - "$date": "2021-02-21T01:59:50.000Z" - }, - "events": [ - { - "uuid": "f8d991af-937b-4724-8827-195e1c76ba42", - "start": { - "$date": "2021-02-21T00:51:15.000Z" - }, - "end": { - "$date": "2021-02-21T01:58:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ac625ea-24e7-4fd3-9023-4d399551e0f4", - "start": { - "$date": "2021-02-21T01:58:15.000Z" - }, - "end": { - "$date": "2021-02-21T01:59:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "29d97064-d7f3-4395-9c16-17f21209990d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T00:59:50.000Z" - }, - "end": { - "$date": "2021-02-21T02:12:58.000Z" - }, - "events": [ - { - "uuid": "e4f4d1b4-7e62-4269-acd5-3492ae082c79", - "start": { - "$date": "2021-02-21T00:59:50.000Z" - }, - "end": { - "$date": "2021-02-21T02:12:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "873e3a21-386f-4786-8806-0dd1ab4cd7e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T02:46:13.000Z" - }, - "end": { - "$date": "2021-02-21T03:23:44.000Z" - }, - "events": [ - { - "uuid": "96d2ffec-4f96-4f83-b0b1-34f43b7964ba", - "start": { - "$date": "2021-02-21T02:46:13.000Z" - }, - "end": { - "$date": "2021-02-21T03:23:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b1f9748-1d5e-49ed-ab56-ab01b52d2bc3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-21T02:46:36.000Z" - }, - "end": { - "$date": "2021-02-21T03:23:41.000Z" - }, - "events": [ - { - "uuid": "ad98594c-b1d4-4e00-807b-8fe88b112036", - "start": { - "$date": "2021-02-21T02:46:36.000Z" - }, - "end": { - "$date": "2021-02-21T03:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ded3c30-449d-4ad4-a0b0-3ca58b52e7e4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T02:46:04.000Z" - }, - "end": { - "$date": "2021-02-21T03:23:40.000Z" - }, - "events": [ - { - "uuid": "c741ccb8-a3af-4429-bf0b-f7f4d83739e2", - "start": { - "$date": "2021-02-21T02:46:04.000Z" - }, - "end": { - "$date": "2021-02-21T03:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "9ccf2701-1969-4789-8ec9-7de5c24daef0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-21T02:23:10.000Z" - }, - "end": { - "$date": "2021-02-21T05:40:45.000Z" - }, - "events": [ - { - "uuid": "82017ff0-b214-4797-82c9-0f49b8610727", - "start": { - "$date": "2021-02-21T02:23:10.000Z" - }, - "end": { - "$date": "2021-02-21T05:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8f9ed4ac-a1ad-4539-a717-41f0d2f5ce8b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T02:35:54.000Z" - }, - "end": { - "$date": "2021-02-21T03:32:08.000Z" - }, - "events": [ - { - "uuid": "5d72b2a6-9a0b-4567-85e7-ac5d47807521", - "start": { - "$date": "2021-02-21T02:35:54.000Z" - }, - "end": { - "$date": "2021-02-21T03:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f696d4be-7e42-4f24-87a0-09d6f7068631", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T03:16:38.000Z" - }, - "end": { - "$date": "2021-02-21T03:33:53.000Z" - }, - "events": [ - { - "uuid": "809c235e-f245-40ec-b2b3-c74361e208ae", - "start": { - "$date": "2021-02-21T03:16:38.000Z" - }, - "end": { - "$date": "2021-02-21T03:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "067ea53d-dc6f-4e98-a754-e0de25a790a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T03:36:31.000Z" - }, - "end": { - "$date": "2021-02-21T04:11:13.000Z" - }, - "events": [ - { - "uuid": "c09a3b1d-5858-464b-b605-0ddfc62154ca", - "start": { - "$date": "2021-02-21T03:36:31.000Z" - }, - "end": { - "$date": "2021-02-21T04:11:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a8846ce-d1d6-4700-9c35-2ebd720aa841", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-21T03:36:53.000Z" - }, - "end": { - "$date": "2021-02-21T04:11:04.000Z" - }, - "events": [ - { - "uuid": "e961a23e-4810-4215-84d7-9245d3eb8ebf", - "start": { - "$date": "2021-02-21T03:36:53.000Z" - }, - "end": { - "$date": "2021-02-21T04:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "257b593d-c61f-4605-a307-6c23f030fcdd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T03:36:22.000Z" - }, - "end": { - "$date": "2021-02-21T04:11:02.000Z" - }, - "events": [ - { - "uuid": "41147aea-e6ec-4098-a1d5-38d9843e9f50", - "start": { - "$date": "2021-02-21T03:36:22.000Z" - }, - "end": { - "$date": "2021-02-21T04:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3432648e-92da-4ec8-8a55-ac24dcb57800", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T03:37:58.000Z" - }, - "end": { - "$date": "2021-02-21T03:58:38.000Z" - }, - "events": [ - { - "uuid": "3a7a3f90-69a2-4070-b913-a9b96c02834f", - "start": { - "$date": "2021-02-21T03:37:58.000Z" - }, - "end": { - "$date": "2021-02-21T03:58:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c898c13-d147-471d-a630-33186b1463c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T03:35:39.000Z" - }, - "end": { - "$date": "2021-02-21T04:14:34.000Z" - }, - "events": [ - { - "uuid": "d94a9c3e-f974-4259-af3c-aca7d93b9fb6", - "start": { - "$date": "2021-02-21T03:35:39.000Z" - }, - "end": { - "$date": "2021-02-21T04:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c089430f-694f-4f45-b509-d85d482de6f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T03:36:25.000Z" - }, - "end": { - "$date": "2021-02-21T04:13:25.000Z" - }, - "events": [ - { - "uuid": "371c3d2c-f2de-49a1-b75b-eb852afbc3bf", - "start": { - "$date": "2021-02-21T03:36:25.000Z" - }, - "end": { - "$date": "2021-02-21T04:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1a42b371-6bd0-45c7-82a0-456053b8f1c9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-21T04:06:43.000Z" - }, - "end": { - "$date": "2021-02-21T04:32:26.000Z" - }, - "events": [ - { - "uuid": "95e6a81e-f6ed-4969-8719-cd3fadf6b5bd", - "start": { - "$date": "2021-02-21T04:06:43.000Z" - }, - "end": { - "$date": "2021-02-21T04:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b377cc10-4d4c-49f7-9d8a-0a87b1597f44", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T04:14:40.000Z" - }, - "end": { - "$date": "2021-02-21T05:34:06.000Z" - }, - "events": [ - { - "uuid": "68b600d6-eb1a-4de8-b350-9c50f0485661", - "start": { - "$date": "2021-02-21T04:14:40.000Z" - }, - "end": { - "$date": "2021-02-21T05:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79fb962e-427e-4d68-8883-bc4fd994a2ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T04:19:45.000Z" - }, - "end": { - "$date": "2021-02-21T04:38:05.000Z" - }, - "events": [ - { - "uuid": "09cb1fa7-0c02-4b99-a565-7b33accce2bd", - "start": { - "$date": "2021-02-21T04:19:45.000Z" - }, - "end": { - "$date": "2021-02-21T04:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ff1b38f1-bc2c-4fc6-ae22-ed654f7b8aeb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T04:15:06.000Z" - }, - "end": { - "$date": "2021-02-21T04:25:06.000Z" - }, - "events": [ - { - "uuid": "1bbf23b9-10d9-47a5-9c98-082126c68119", - "start": { - "$date": "2021-02-21T04:15:06.000Z" - }, - "end": { - "$date": "2021-02-21T04:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fe30ede7-4b76-45c3-9b60-ce6929c24efd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-21T04:15:11.000Z" - }, - "end": { - "$date": "2021-02-21T05:34:12.000Z" - }, - "events": [ - { - "uuid": "9a077a6d-2ef8-4f76-a76a-0441a709e19b", - "start": { - "$date": "2021-02-21T04:15:11.000Z" - }, - "end": { - "$date": "2021-02-21T05:34:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69290ab0-b802-4d23-acc8-dcdb480ef1ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T04:21:08.000Z" - }, - "end": { - "$date": "2021-02-21T04:38:03.000Z" - }, - "events": [ - { - "uuid": "b89164e0-1ff9-4555-acb1-a97dad777ccf", - "start": { - "$date": "2021-02-21T04:21:08.000Z" - }, - "end": { - "$date": "2021-02-21T04:38:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "883c14b3-6fe1-4f99-b385-5026d1f882dc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T04:20:34.000Z" - }, - "end": { - "$date": "2021-02-21T04:38:11.000Z" - }, - "events": [ - { - "uuid": "cc329683-5225-42bd-9617-5b81cca11105", - "start": { - "$date": "2021-02-21T04:20:34.000Z" - }, - "end": { - "$date": "2021-02-21T04:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "069e25a5-f2e7-43f5-828a-88e5eb8306ec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-21T04:22:34.000Z" - }, - "end": { - "$date": "2021-02-21T04:28:20.000Z" - }, - "events": [ - { - "uuid": "55a54820-53d8-4638-bb7c-40b95c37012a", - "start": { - "$date": "2021-02-21T04:22:34.000Z" - }, - "end": { - "$date": "2021-02-21T04:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "040fdf19-5214-41e6-b107-2d2e2fd9c23e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-21T04:29:45.000Z" - }, - "end": { - "$date": "2021-02-21T08:32:55.000Z" - }, - "events": [ - { - "uuid": "887ca0b2-d89a-448d-b7ec-3646c95bb5a6", - "start": { - "$date": "2021-02-21T04:29:45.000Z" - }, - "end": { - "$date": "2021-02-21T08:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5c6bc578-f728-4a6e-8d76-f53ae57a71b0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T04:33:58.000Z" - }, - "end": { - "$date": "2021-02-21T05:22:16.000Z" - }, - "events": [ - { - "uuid": "5fa6c8b2-2a70-4424-b1cb-ea54595c3bad", - "start": { - "$date": "2021-02-21T04:33:58.000Z" - }, - "end": { - "$date": "2021-02-21T05:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "17db7a4f-cb50-4071-9e3a-995cf8c82614", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-21T04:34:22.000Z" - }, - "end": { - "$date": "2021-02-21T05:25:58.000Z" - }, - "events": [ - { - "uuid": "3ebef5b1-ce06-41aa-91e1-ca10e1f90d60", - "start": { - "$date": "2021-02-21T04:34:22.000Z" - }, - "end": { - "$date": "2021-02-21T05:24:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33a003b2-b9d5-45d4-a2e6-90f1f5f088ea", - "start": { - "$date": "2021-02-21T05:24:22.000Z" - }, - "end": { - "$date": "2021-02-21T05:25:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d59340d5-0233-40f8-be83-575366a30312", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T04:41:16.000Z" - }, - "end": { - "$date": "2021-02-21T05:02:21.000Z" - }, - "events": [ - { - "uuid": "3912e8ed-ecd4-4ac2-ab4b-48ecd223cd1d", - "start": { - "$date": "2021-02-21T04:41:16.000Z" - }, - "end": { - "$date": "2021-02-21T05:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6351f41c-53e3-47fa-a961-6931f9cb8406", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T04:41:59.000Z" - }, - "end": { - "$date": "2021-02-21T05:02:24.000Z" - }, - "events": [ - { - "uuid": "4ddb0451-837c-4a23-8ca3-facf1fc7236c", - "start": { - "$date": "2021-02-21T04:41:59.000Z" - }, - "end": { - "$date": "2021-02-21T05:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edc17bb1-17d7-47c2-8ecf-b8a4b973b061", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T04:42:05.000Z" - }, - "end": { - "$date": "2021-02-21T05:02:22.000Z" - }, - "events": [ - { - "uuid": "218048e1-235e-454c-8048-df49d3f06537", - "start": { - "$date": "2021-02-21T04:42:05.000Z" - }, - "end": { - "$date": "2021-02-21T05:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "288bd099-bd0a-4c0a-a9df-5a6cd512a8ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T05:04:42.000Z" - }, - "end": { - "$date": "2021-02-21T05:19:37.000Z" - }, - "events": [ - { - "uuid": "cb46b2f7-1dcd-4ad9-a7be-2f51da0855bb", - "start": { - "$date": "2021-02-21T05:04:42.000Z" - }, - "end": { - "$date": "2021-02-21T05:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c7d0d37-3687-4a4c-8dff-7e978d53a07f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T05:23:00.000Z" - }, - "end": { - "$date": "2021-02-21T05:46:46.000Z" - }, - "events": [ - { - "uuid": "3989f38e-83b9-49cd-ac99-933a063395cd", - "start": { - "$date": "2021-02-21T05:23:00.000Z" - }, - "end": { - "$date": "2021-02-21T05:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "673b8d05-90ed-48fc-a5c5-e6b89294daae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T05:04:36.000Z" - }, - "end": { - "$date": "2021-02-21T05:19:34.000Z" - }, - "events": [ - { - "uuid": "e46a5594-522b-4ed7-bcb1-d52a77739f5a", - "start": { - "$date": "2021-02-21T05:04:36.000Z" - }, - "end": { - "$date": "2021-02-21T05:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2da83905-b3c4-4459-96f9-5482db1ca1aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T05:21:32.000Z" - }, - "end": { - "$date": "2021-02-21T05:47:01.000Z" - }, - "events": [ - { - "uuid": "651372f5-8273-4a44-ab7b-17b2aff87390", - "start": { - "$date": "2021-02-21T05:21:32.000Z" - }, - "end": { - "$date": "2021-02-21T05:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c144dbda-e6a7-4b08-ba50-61f7741a8827", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T05:21:37.000Z" - }, - "end": { - "$date": "2021-02-21T05:46:45.000Z" - }, - "events": [ - { - "uuid": "63a52cdf-850b-437c-a0c4-1d8ccfc97f13", - "start": { - "$date": "2021-02-21T05:21:37.000Z" - }, - "end": { - "$date": "2021-02-21T05:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26a2aa54-82bb-47c6-9688-f6a357dd3fbb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-21T05:22:26.000Z" - }, - "end": { - "$date": "2021-02-21T05:46:55.000Z" - }, - "events": [ - { - "uuid": "5f344fed-595c-4287-8644-393ed5be7874", - "start": { - "$date": "2021-02-21T05:22:26.000Z" - }, - "end": { - "$date": "2021-02-21T05:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "4507f075-4e4a-41a9-9885-7250e22ad4f8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T05:34:03.000Z" - }, - "end": { - "$date": "2021-02-21T07:42:01.000Z" - }, - "events": [ - { - "uuid": "ed9974da-3c90-4421-92ec-d84f4f921b7e", - "start": { - "$date": "2021-02-21T05:34:03.000Z" - }, - "end": { - "$date": "2021-02-21T07:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "7d8b8d81-126c-45d4-8136-45d4376abac5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-21T05:34:34.000Z" - }, - "end": { - "$date": "2021-02-21T06:57:24.000Z" - }, - "events": [ - { - "uuid": "bcac2de8-e323-4feb-bba4-94273e27888d", - "start": { - "$date": "2021-02-21T05:34:34.000Z" - }, - "end": { - "$date": "2021-02-21T06:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "fca6f1a3-cc09-4db9-a74c-2b29d3522888", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T05:34:51.000Z" - }, - "end": { - "$date": "2021-02-21T06:39:48.000Z" - }, - "events": [ - { - "uuid": "bcf37002-9b5f-4bcf-a8fd-dd524e8cc9ad", - "start": { - "$date": "2021-02-21T05:34:51.000Z" - }, - "end": { - "$date": "2021-02-21T06:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5562e4e8-2204-4807-90a1-14b40d524172", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T05:34:57.000Z" - }, - "end": { - "$date": "2021-02-21T05:38:11.000Z" - }, - "events": [ - { - "uuid": "fd247114-9328-4c11-a5d2-d334380ad118", - "start": { - "$date": "2021-02-21T05:34:57.000Z" - }, - "end": { - "$date": "2021-02-21T05:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "96786b53-123e-459d-be3d-0b77abb225b5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-21T05:38:08.000Z" - }, - "end": { - "$date": "2021-02-21T07:41:46.000Z" - }, - "events": [ - { - "uuid": "65b2d049-aea1-4454-bd11-fa98ad5c292d", - "start": { - "$date": "2021-02-21T05:38:08.000Z" - }, - "end": { - "$date": "2021-02-21T07:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "937598b7-a67d-42e0-859a-d05a4df494f2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T05:40:13.000Z" - }, - "end": { - "$date": "2021-02-21T06:05:08.000Z" - }, - "events": [ - { - "uuid": "739f8691-056f-46b1-a44d-a3db66d64bb5", - "start": { - "$date": "2021-02-21T05:40:13.000Z" - }, - "end": { - "$date": "2021-02-21T06:05:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "3d5171c2-5161-428b-ad41-69539fe432ac", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-21T05:41:56.000Z" - }, - "end": { - "$date": "2021-02-21T08:51:13.000Z" - }, - "events": [ - { - "uuid": "c64fb2a8-f8e2-4de9-aa2e-da911f5f5be5", - "start": { - "$date": "2021-02-21T05:41:56.000Z" - }, - "end": { - "$date": "2021-02-21T08:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15d28090-f156-450c-a3d0-af068263ba68", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T05:49:03.000Z" - }, - "end": { - "$date": "2021-02-21T06:02:01.000Z" - }, - "events": [ - { - "uuid": "efc73562-9616-45d2-a9ba-fc3adabd1ed0", - "start": { - "$date": "2021-02-21T05:49:03.000Z" - }, - "end": { - "$date": "2021-02-21T06:02:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "874e740f-34f9-4108-a527-02ee8c9cefe7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T05:49:45.000Z" - }, - "end": { - "$date": "2021-02-21T06:01:56.000Z" - }, - "events": [ - { - "uuid": "b95cca39-7652-4fa6-aaec-5c0bb4e24ae9", - "start": { - "$date": "2021-02-21T05:49:45.000Z" - }, - "end": { - "$date": "2021-02-21T06:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e144393e-9618-420b-ba5a-f6fd96502b74", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T05:49:04.000Z" - }, - "end": { - "$date": "2021-02-21T06:01:56.000Z" - }, - "events": [ - { - "uuid": "5ea7bda8-ffd3-45df-b50f-0442ea410f5a", - "start": { - "$date": "2021-02-21T05:49:04.000Z" - }, - "end": { - "$date": "2021-02-21T06:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "729fd879-f579-493f-8f8f-c701430058b4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-21T05:49:01.000Z" - }, - "end": { - "$date": "2021-02-21T06:01:57.000Z" - }, - "events": [ - { - "uuid": "08f243ae-ec1f-4981-a5df-9cecdb133334", - "start": { - "$date": "2021-02-21T05:49:01.000Z" - }, - "end": { - "$date": "2021-02-21T06:01:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4492e15f-6cfd-42d6-9ceb-6650333f10ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T06:03:59.000Z" - }, - "end": { - "$date": "2021-02-21T06:11:27.000Z" - }, - "events": [ - { - "uuid": "e8a2929c-d820-4269-ab18-254e6f55fd43", - "start": { - "$date": "2021-02-21T06:03:59.000Z" - }, - "end": { - "$date": "2021-02-21T06:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c285b67-930b-450b-8fad-cdeb9a71bccd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T06:04:46.000Z" - }, - "end": { - "$date": "2021-02-21T06:11:22.000Z" - }, - "events": [ - { - "uuid": "cb9eb37e-ce65-425a-8487-1faef01d354a", - "start": { - "$date": "2021-02-21T06:04:46.000Z" - }, - "end": { - "$date": "2021-02-21T06:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a08734c-6da1-4983-819d-d25acd1ce40a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-21T06:11:22.000Z" - }, - "end": { - "$date": "2021-02-21T06:12:22.000Z" - }, - "events": [ - { - "uuid": "4669e399-d29a-400f-a3e2-0af754d8636b", - "start": { - "$date": "2021-02-21T06:11:22.000Z" - }, - "end": { - "$date": "2021-02-21T06:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab060dd8-1cec-46fb-a8d7-72ad245589a4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T06:04:45.000Z" - }, - "end": { - "$date": "2021-02-21T06:11:21.000Z" - }, - "events": [ - { - "uuid": "f9c5a726-fa05-4a82-bb94-ac6e103f6071", - "start": { - "$date": "2021-02-21T06:04:45.000Z" - }, - "end": { - "$date": "2021-02-21T06:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38833f63-ffff-4f2b-b042-4b6a69ad2524", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T06:14:55.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:23.000Z" - }, - "events": [ - { - "uuid": "018e906b-74f7-4f69-aadc-6c60ef404f9c", - "start": { - "$date": "2021-02-21T06:14:55.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c9cdb0c-82d1-46c3-b8b0-73e8ec9b27ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T06:15:06.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:17.000Z" - }, - "events": [ - { - "uuid": "353c6881-c739-4e68-a69f-1e44648d7332", - "start": { - "$date": "2021-02-21T06:15:06.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3405f940-c85e-42c3-91fa-2abc1c04cf88", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T06:14:55.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:17.000Z" - }, - "events": [ - { - "uuid": "a7097ac9-77ca-445b-9b4d-dae8158000a9", - "start": { - "$date": "2021-02-21T06:14:55.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c38604a5-21d2-4987-914a-51e0f17776d8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-21T06:14:53.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:18.000Z" - }, - "events": [ - { - "uuid": "196efae7-4a8f-476f-a80c-b6bb54f43a4a", - "start": { - "$date": "2021-02-21T06:14:53.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac079e7e-5929-4837-a9ff-f064d4f28bb4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T06:14:57.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:15.000Z" - }, - "events": [ - { - "uuid": "5cf3ed04-ac2a-422e-85f1-51e266feef37", - "start": { - "$date": "2021-02-21T06:14:57.000Z" - }, - "end": { - "$date": "2021-02-21T06:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b3afc22-5d34-4e2c-b610-5a9981cd1e6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T06:26:40.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:11.000Z" - }, - "events": [ - { - "uuid": "11dc496a-2b2f-458a-9f5d-ea9c53a60f72", - "start": { - "$date": "2021-02-21T06:26:40.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2e779ff-bf50-4a7b-8c0c-c42312fcf0be", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T06:26:42.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:17.000Z" - }, - "events": [ - { - "uuid": "505b7fd1-188b-42c6-bfc7-0dd85a9d34ed", - "start": { - "$date": "2021-02-21T06:26:42.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76d11902-7f20-401b-9bb3-4d2bbe810fa0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T06:26:42.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:20.000Z" - }, - "events": [ - { - "uuid": "7151a610-f3ba-4448-881e-782805922547", - "start": { - "$date": "2021-02-21T06:26:42.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f18530d-f4e7-44c1-9d3a-a099dfbccbc2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T06:26:51.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:13.000Z" - }, - "events": [ - { - "uuid": "68d5f34a-d657-4504-b6ae-6c2df2b24625", - "start": { - "$date": "2021-02-21T06:26:51.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e130ebe1-78f9-4ab1-ad91-1dcb9481dbd9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-21T06:26:43.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:19.000Z" - }, - "events": [ - { - "uuid": "debbb5dc-42d9-4f0e-a819-904f55b5b76b", - "start": { - "$date": "2021-02-21T06:26:43.000Z" - }, - "end": { - "$date": "2021-02-21T06:40:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0afc9f58-a028-4833-90f2-1177aacaef34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-21T06:44:01.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:16.000Z" - }, - "events": [ - { - "uuid": "cb58120f-9528-4653-a706-97860cbcb252", - "start": { - "$date": "2021-02-21T06:44:01.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2451d310-2184-4e73-8072-1b644558b2b0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T06:44:17.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:12.000Z" - }, - "events": [ - { - "uuid": "6a8a01b0-0a4a-4196-ab09-6132c7e1a780", - "start": { - "$date": "2021-02-21T06:44:17.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d752ad4-460a-4da8-8b2a-cc9075ce9116", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-21T06:44:05.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:15.000Z" - }, - "events": [ - { - "uuid": "73b1f34a-cddd-4254-9e03-d8997d1ed2a3", - "start": { - "$date": "2021-02-21T06:44:05.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "756ce0ba-223f-4b79-b13f-f3d00c411d04", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-21T06:44:02.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:14.000Z" - }, - "events": [ - { - "uuid": "5758e913-b6ac-4db7-8812-ef4d2ca38e50", - "start": { - "$date": "2021-02-21T06:44:02.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69e41e19-161a-471d-b677-db2c8f3ab1d0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T06:44:03.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:16.000Z" - }, - "events": [ - { - "uuid": "9afb530c-85a0-47cd-be89-c414ca4a0fbb", - "start": { - "$date": "2021-02-21T06:44:03.000Z" - }, - "end": { - "$date": "2021-02-21T07:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "ee0e6441-00f1-4e5f-9dd0-2fc90e2fed73", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-21T06:58:00.000Z" - }, - "end": { - "$date": "2021-02-21T07:42:31.000Z" - }, - "events": [ - { - "uuid": "20187607-8554-45ca-86bf-2d33a753f451", - "start": { - "$date": "2021-02-21T06:58:00.000Z" - }, - "end": { - "$date": "2021-02-21T07:42:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0e41f97a-39c9-4705-93a7-1347d5c63f96", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T07:48:03.000Z" - }, - "end": { - "$date": "2021-02-21T08:50:44.000Z" - }, - "events": [ - { - "uuid": "f802e973-fcfb-4ba4-8585-2de479e4ab18", - "start": { - "$date": "2021-02-21T07:48:03.000Z" - }, - "end": { - "$date": "2021-02-21T08:50:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "76d8c799-f197-4b01-a00c-2d8f1165bec3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-21T07:52:34.000Z" - }, - "end": { - "$date": "2021-02-21T08:42:42.000Z" - }, - "events": [ - { - "uuid": "07d62a43-da9e-4ce8-8e41-b829fc3a00cd", - "start": { - "$date": "2021-02-21T07:52:34.000Z" - }, - "end": { - "$date": "2021-02-21T08:42:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8941f00f-29ab-4fcb-b1eb-c0caa63cba75", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-21T07:56:26.000Z" - }, - "end": { - "$date": "2021-02-21T08:50:57.000Z" - }, - "events": [ - { - "uuid": "7dea72d9-07ea-442b-ae6a-039571415216", - "start": { - "$date": "2021-02-21T07:56:26.000Z" - }, - "end": { - "$date": "2021-02-21T08:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "08e4a6d1-ec40-4a49-bf65-c49fc211bc1f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-21T08:55:07.000Z" - }, - "end": { - "$date": "2021-02-21T09:24:15.000Z" - }, - "events": [ - { - "uuid": "b533cac1-9c4b-4287-984f-2f37611e5dcc", - "start": { - "$date": "2021-02-21T08:55:07.000Z" - }, - "end": { - "$date": "2021-02-21T09:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10222c00-bac3-4989-92e8-bc5e2f747eaa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-21T09:48:48.000Z" - }, - "end": { - "$date": "2021-02-21T10:21:54.000Z" - }, - "events": [ - { - "uuid": "1fdb7d7f-6a06-4d7f-8320-bb9892af5c37", - "start": { - "$date": "2021-02-21T09:48:48.000Z" - }, - "end": { - "$date": "2021-02-21T10:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5b88ea44-97e4-4d55-8d98-de0fabf41f1c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T15:25:19.000Z" - }, - "end": { - "$date": "2021-02-21T15:28:07.000Z" - }, - "events": [ - { - "uuid": "beed3003-a447-4bf7-b42d-bf507343e390", - "start": { - "$date": "2021-02-21T15:25:19.000Z" - }, - "end": { - "$date": "2021-02-21T15:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fe6cc044-c1e9-400e-9111-8d084a3033c0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T15:28:30.000Z" - }, - "end": { - "$date": "2021-02-21T16:12:26.000Z" - }, - "events": [ - { - "uuid": "9a624bc6-0d64-4f60-ae28-ecdef7f192c1", - "start": { - "$date": "2021-02-21T15:28:30.000Z" - }, - "end": { - "$date": "2021-02-21T16:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68c232d4-423b-40a5-9462-0d29faf73c7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T16:25:26.000Z" - }, - "end": { - "$date": "2021-02-21T16:51:42.000Z" - }, - "events": [ - { - "uuid": "09c35ced-5cbf-4715-bdae-e2722ed4da58", - "start": { - "$date": "2021-02-21T16:25:26.000Z" - }, - "end": { - "$date": "2021-02-21T16:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a8c5ace5-f07d-4390-b0ba-3c01fe4e2220", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T16:24:20.000Z" - }, - "end": { - "$date": "2021-02-21T16:24:25.000Z" - }, - "events": [ - { - "uuid": "490f0bc3-c5f5-41e1-b5be-3a19515ab326", - "start": { - "$date": "2021-02-21T16:24:20.000Z" - }, - "end": { - "$date": "2021-02-21T16:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6d907ea3-3bfc-498b-b76f-89a87969d102", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T16:24:30.000Z" - }, - "end": { - "$date": "2021-02-21T17:25:27.000Z" - }, - "events": [ - { - "uuid": "0dd38129-396b-4dda-b425-7051ba34ae11", - "start": { - "$date": "2021-02-21T16:24:30.000Z" - }, - "end": { - "$date": "2021-02-21T17:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "0d58ce50-77d1-4d2e-a119-4dae12b28a24", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T16:36:56.000Z" - }, - "end": { - "$date": "2021-02-21T18:23:17.000Z" - }, - "events": [ - { - "uuid": "c67b2f36-0ec7-4d3e-b1af-2c9b7753cb0c", - "start": { - "$date": "2021-02-21T16:36:56.000Z" - }, - "end": { - "$date": "2021-02-21T18:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b983b05-8637-4395-8612-899297e93145", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T16:53:07.000Z" - }, - "end": { - "$date": "2021-02-21T17:25:13.000Z" - }, - "events": [ - { - "uuid": "34941187-4bae-4569-882a-5ac689371b75", - "start": { - "$date": "2021-02-21T16:53:07.000Z" - }, - "end": { - "$date": "2021-02-21T17:25:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8d7c8378-1347-455c-b5dd-4ca269d8f762", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-21T17:27:17.000Z" - }, - "end": { - "$date": "2021-02-21T18:14:36.000Z" - }, - "events": [ - { - "uuid": "0b055532-96cb-4df5-925f-3d57081286f6", - "start": { - "$date": "2021-02-21T17:27:17.000Z" - }, - "end": { - "$date": "2021-02-21T18:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49d3980a-64af-486a-bb5e-f6d2e2800d45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T17:31:08.000Z" - }, - "end": { - "$date": "2021-02-21T18:06:15.000Z" - }, - "events": [ - { - "uuid": "667a8ca6-977b-4339-b1fe-bc21495b7e95", - "start": { - "$date": "2021-02-21T17:31:08.000Z" - }, - "end": { - "$date": "2021-02-21T18:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "822007dd-5a8c-428f-8b1b-1871c281efe2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T19:04:32.000Z" - }, - "end": { - "$date": "2021-02-21T20:39:49.000Z" - }, - "events": [ - { - "uuid": "295ea746-75af-45e9-b55f-b0f6e8b0d685", - "start": { - "$date": "2021-02-21T19:04:32.000Z" - }, - "end": { - "$date": "2021-02-21T20:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ee738448-3494-463c-b2e5-4ca0fa4aaf9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T19:20:52.000Z" - }, - "end": { - "$date": "2021-02-21T19:47:28.000Z" - }, - "events": [ - { - "uuid": "55712b39-8638-4189-a34a-405621cf4981", - "start": { - "$date": "2021-02-21T19:20:52.000Z" - }, - "end": { - "$date": "2021-02-21T19:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c2e6fd68-1fa6-42c3-9491-129e8baa12bc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-21T19:51:53.000Z" - }, - "end": { - "$date": "2021-02-21T19:54:13.000Z" - }, - "events": [ - { - "uuid": "1757a8df-099b-4128-8de6-04418e302717", - "start": { - "$date": "2021-02-21T19:51:53.000Z" - }, - "end": { - "$date": "2021-02-21T19:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8b90dbd6-b9e3-4ba2-b71d-f45077ac76fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-21T19:54:12.000Z" - }, - "end": { - "$date": "2021-02-21T22:14:04.000Z" - }, - "events": [ - { - "uuid": "da2f210b-d30b-434a-9eff-33911ed3fbaf", - "start": { - "$date": "2021-02-21T19:54:12.000Z" - }, - "end": { - "$date": "2021-02-21T21:19:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1310369-6ab3-4eaa-b2d0-3bfac6d9d810", - "start": { - "$date": "2021-02-21T21:19:12.000Z" - }, - "end": { - "$date": "2021-02-21T21:22:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef7409b8-c157-4eae-a98d-0dae40563fae", - "start": { - "$date": "2021-02-21T21:22:12.000Z" - }, - "end": { - "$date": "2021-02-21T21:24:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "462f3039-e9f6-4126-9ebc-9e726e5d59d0", - "start": { - "$date": "2021-02-21T21:24:12.000Z" - }, - "end": { - "$date": "2021-02-21T21:25:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04750e99-7f88-4646-97a4-02785c60a38f", - "start": { - "$date": "2021-02-21T21:25:12.000Z" - }, - "end": { - "$date": "2021-02-21T22:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "78534bd9-6694-4b4f-8149-3fb458fd44f8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-21T20:26:44.000Z" - }, - "end": { - "$date": "2021-02-21T20:36:47.000Z" - }, - "events": [ - { - "uuid": "f901aaac-6614-4878-b63f-bde12114671b", - "start": { - "$date": "2021-02-21T20:26:44.000Z" - }, - "end": { - "$date": "2021-02-21T20:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d19e29a0-1f84-4dc2-997c-21a744eff165", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T20:27:11.000Z" - }, - "end": { - "$date": "2021-02-21T21:03:08.000Z" - }, - "events": [ - { - "uuid": "c2946aa7-064a-4d31-8a30-89a183db6f30", - "start": { - "$date": "2021-02-21T20:27:11.000Z" - }, - "end": { - "$date": "2021-02-21T21:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6530212b-3d11-426a-bcbb-edc075cba137", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T20:39:47.000Z" - }, - "end": { - "$date": "2021-02-21T21:30:19.000Z" - }, - "events": [ - { - "uuid": "13afda72-33d2-4fa5-a474-ae3c4fe55715", - "start": { - "$date": "2021-02-21T20:39:47.000Z" - }, - "end": { - "$date": "2021-02-21T21:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "33aa5345-2114-47a3-b483-dd776066625c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-21T21:20:02.000Z" - }, - "end": { - "$date": "2021-02-21T23:01:13.000Z" - }, - "events": [ - { - "uuid": "c20114d4-28ef-4c60-a97b-0aa43bbcffc7", - "start": { - "$date": "2021-02-21T21:20:02.000Z" - }, - "end": { - "$date": "2021-02-21T23:01:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "17c9b7c5-9ea8-4e9f-b02f-203cd727cc84", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T22:04:14.000Z" - }, - "end": { - "$date": "2021-02-21T23:45:07.000Z" - }, - "events": [ - { - "uuid": "05c0eddf-c585-4174-8a3a-6d65a9f7d3f2", - "start": { - "$date": "2021-02-21T22:04:14.000Z" - }, - "end": { - "$date": "2021-02-21T23:45:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cdf90045-6b6b-4414-8b58-ba51aafcdd85", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T22:38:17.000Z" - }, - "end": { - "$date": "2021-02-21T22:56:04.000Z" - }, - "events": [ - { - "uuid": "43a1c030-0f03-49e2-a6ec-7cef8aaa9f4a", - "start": { - "$date": "2021-02-21T22:38:17.000Z" - }, - "end": { - "$date": "2021-02-21T22:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bffd35e6-d257-4668-92ca-c5e3abd276ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-21T22:56:23.000Z" - }, - "end": { - "$date": "2021-02-21T23:39:44.000Z" - }, - "events": [ - { - "uuid": "e3cadc94-d369-4f69-8e24-4c109278187b", - "start": { - "$date": "2021-02-21T22:56:23.000Z" - }, - "end": { - "$date": "2021-02-21T23:39:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "56d05af5-ecce-4a38-9395-875ee9cfb0f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-21T23:48:44.000Z" - }, - "end": { - "$date": "2021-02-22T00:06:43.000Z" - }, - "events": [ - { - "uuid": "2c4722c6-2c65-41d3-9e4c-c0f1e82a09ba", - "start": { - "$date": "2021-02-21T23:48:44.000Z" - }, - "end": { - "$date": "2021-02-22T00:06:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ad9f99ce-0886-44cb-b294-e22e17b01919", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-22T00:23:38.000Z" - }, - "end": { - "$date": "2021-02-22T00:57:42.000Z" - }, - "events": [ - { - "uuid": "a9d724b5-c0f9-47e0-84a8-5ac1432c4d1a", - "start": { - "$date": "2021-02-22T00:23:38.000Z" - }, - "end": { - "$date": "2021-02-22T00:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7a0c8e2-fe75-4d77-8fe6-804e93c2ba3a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T00:28:13.000Z" - }, - "end": { - "$date": "2021-02-22T00:53:39.000Z" - }, - "events": [ - { - "uuid": "63c7d817-f3dd-47b4-be82-4465264f7dec", - "start": { - "$date": "2021-02-22T00:28:13.000Z" - }, - "end": { - "$date": "2021-02-22T00:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc9ef8aa-dfb9-4fd4-8493-26731143fa15", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-22T00:40:41.000Z" - }, - "end": { - "$date": "2021-02-22T02:47:30.000Z" - }, - "events": [ - { - "uuid": "601c93b4-a721-4c44-91d3-3fabf1325cf9", - "start": { - "$date": "2021-02-22T00:40:41.000Z" - }, - "end": { - "$date": "2021-02-22T02:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0efdbbe0-e79b-42d7-b9bc-af68d35b8adf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-22T00:43:53.000Z" - }, - "end": { - "$date": "2021-02-22T03:02:06.000Z" - }, - "events": [ - { - "uuid": "4b3625fb-7389-4b3a-b274-e91cb3f97165", - "start": { - "$date": "2021-02-22T00:43:53.000Z" - }, - "end": { - "$date": "2021-02-22T03:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09cff168-e61c-4397-9f2e-2abc46c31838", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T01:42:37.000Z" - }, - "end": { - "$date": "2021-02-22T01:42:37.000Z" - }, - "events": [ - { - "uuid": "afc291ae-b354-43e1-afa0-9bdcf9dcbcbd", - "start": { - "$date": "2021-02-22T01:42:37.000Z" - }, - "end": { - "$date": "2021-02-22T01:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "428e98e2-ed0a-406f-957c-4b57ee682d60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-22T01:25:26.000Z" - }, - "end": { - "$date": "2021-02-22T02:00:18.000Z" - }, - "events": [ - { - "uuid": "d0836ff0-a215-48a2-a0f9-c5541b335fa8", - "start": { - "$date": "2021-02-22T01:25:26.000Z" - }, - "end": { - "$date": "2021-02-22T02:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5ea9f936-09d3-405b-a6bf-8902985e8b92", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-22T01:26:17.000Z" - }, - "end": { - "$date": "2021-02-22T01:29:39.000Z" - }, - "events": [ - { - "uuid": "7e507eac-760a-44a0-98e7-ce652e5b4b6e", - "start": { - "$date": "2021-02-22T01:26:17.000Z" - }, - "end": { - "$date": "2021-02-22T01:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bed2c0b2-bdf9-4296-a5e4-12db2f6c3ebd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-22T01:31:53.000Z" - }, - "end": { - "$date": "2021-02-22T01:32:57.000Z" - }, - "events": [ - { - "uuid": "ade3ff17-80fc-4213-9ee6-efc342b5addd", - "start": { - "$date": "2021-02-22T01:31:53.000Z" - }, - "end": { - "$date": "2021-02-22T01:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9dd129e0-b1e6-46aa-95fb-cd3a75e3f620", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-22T01:40:23.000Z" - }, - "end": { - "$date": "2021-02-22T09:05:39.000Z" - }, - "events": [ - { - "uuid": "453aa003-f0aa-4a74-8a4d-c9bfa3a04251", - "start": { - "$date": "2021-02-22T01:40:23.000Z" - }, - "end": { - "$date": "2021-02-22T09:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6161a13-3693-48b4-b42b-ef6ac099e93d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T01:43:41.000Z" - }, - "end": { - "$date": "2021-02-22T02:10:10.000Z" - }, - "events": [ - { - "uuid": "7b5d3aa0-fe38-4d00-84b8-e128c1a8ecdd", - "start": { - "$date": "2021-02-22T01:43:41.000Z" - }, - "end": { - "$date": "2021-02-22T02:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c47d5f73-e750-44f6-8827-3514229c904f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T02:17:44.000Z" - }, - "end": { - "$date": "2021-02-22T02:50:02.000Z" - }, - "events": [ - { - "uuid": "58bdfa1a-4a9f-4c9f-be4e-1471c180720d", - "start": { - "$date": "2021-02-22T02:17:44.000Z" - }, - "end": { - "$date": "2021-02-22T02:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56c27987-86a9-42ab-8ef9-6c339caed9de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T03:03:12.000Z" - }, - "end": { - "$date": "2021-02-22T03:35:42.000Z" - }, - "events": [ - { - "uuid": "c08e114e-3798-4e87-a61a-b3c8594dfb32", - "start": { - "$date": "2021-02-22T03:03:12.000Z" - }, - "end": { - "$date": "2021-02-22T03:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21910d7d-230f-4927-831b-3ab3c5d51d4e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-22T02:01:13.000Z" - }, - "end": { - "$date": "2021-02-22T05:17:40.000Z" - }, - "events": [ - { - "uuid": "779ee573-7139-4abd-a765-46361acaa4d5", - "start": { - "$date": "2021-02-22T02:01:13.000Z" - }, - "end": { - "$date": "2021-02-22T04:16:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8e4b4d81-c447-4d6b-a73c-f489516df89e", - "start": { - "$date": "2021-02-22T04:16:13.000Z" - }, - "end": { - "$date": "2021-02-22T05:17:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "bc45b70f-5ddc-4cca-9b9f-34bef99d630d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-22T02:02:01.000Z" - }, - "end": { - "$date": "2021-02-22T02:30:38.000Z" - }, - "events": [ - { - "uuid": "62426370-2022-48dd-8248-5c3ab06c1bb3", - "start": { - "$date": "2021-02-22T02:02:01.000Z" - }, - "end": { - "$date": "2021-02-22T02:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d20f8ad0-bc55-4581-ac88-9e1bf7c64e84", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T02:18:08.000Z" - }, - "end": { - "$date": "2021-02-22T02:50:00.000Z" - }, - "events": [ - { - "uuid": "39234e32-f72c-4d3a-9eeb-791ec7c1f4f5", - "start": { - "$date": "2021-02-22T02:18:08.000Z" - }, - "end": { - "$date": "2021-02-22T02:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6dbe47f-8155-4668-a351-21ea21d5798f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T02:13:50.000Z" - }, - "end": { - "$date": "2021-02-22T02:41:35.000Z" - }, - "events": [ - { - "uuid": "f6112712-f6dc-43d7-b398-876bcd52472e", - "start": { - "$date": "2021-02-22T02:13:50.000Z" - }, - "end": { - "$date": "2021-02-22T02:41:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "1ba18572-6096-4c37-8a2d-973b40471c74", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-22T02:34:07.000Z" - }, - "end": { - "$date": "2021-02-22T07:11:07.000Z" - }, - "events": [ - { - "uuid": "99905526-10fc-4602-924d-3130a9d388c7", - "start": { - "$date": "2021-02-22T02:34:07.000Z" - }, - "end": { - "$date": "2021-02-22T07:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3026ed32-7879-4db4-9072-4b5a9954d4f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T03:03:10.000Z" - }, - "end": { - "$date": "2021-02-22T03:35:32.000Z" - }, - "events": [ - { - "uuid": "a77bd269-0599-45c5-ac2e-5b0eef0a6c30", - "start": { - "$date": "2021-02-22T03:03:10.000Z" - }, - "end": { - "$date": "2021-02-22T03:35:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d53efcb4-0f82-4cdd-95e5-802a53ace722", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T03:03:12.000Z" - }, - "end": { - "$date": "2021-02-22T03:35:43.000Z" - }, - "events": [ - { - "uuid": "63a71e4f-fab1-4cab-b780-530bc7d83e06", - "start": { - "$date": "2021-02-22T03:03:12.000Z" - }, - "end": { - "$date": "2021-02-22T03:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "22b2c05b-89fe-4f36-9b66-b01c2297ff9e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-22T02:54:06.000Z" - }, - "end": { - "$date": "2021-02-22T05:32:42.000Z" - }, - "events": [ - { - "uuid": "8351f863-8262-41f9-b0fa-fc1b1d616f0f", - "start": { - "$date": "2021-02-22T02:54:06.000Z" - }, - "end": { - "$date": "2021-02-22T05:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e14bdb2-71ed-420a-bc80-1b5cd7247f9c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-22T03:12:41.000Z" - }, - "end": { - "$date": "2021-02-22T05:32:46.000Z" - }, - "events": [ - { - "uuid": "b22e23a7-db52-4bee-8b25-eaefbaf16871", - "start": { - "$date": "2021-02-22T03:12:41.000Z" - }, - "end": { - "$date": "2021-02-22T05:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9c0b9715-7690-4079-9043-c19029786aeb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-22T03:35:38.000Z" - }, - "end": { - "$date": "2021-02-22T04:07:18.000Z" - }, - "events": [ - { - "uuid": "531f9a4d-8638-434b-bfa8-9c6779d2cb28", - "start": { - "$date": "2021-02-22T03:35:38.000Z" - }, - "end": { - "$date": "2021-02-22T04:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f6358cb-3244-475a-a82f-94d612375740", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T03:58:59.000Z" - }, - "end": { - "$date": "2021-02-22T04:15:45.000Z" - }, - "events": [ - { - "uuid": "92482a21-6854-4472-9919-b0ed284a9766", - "start": { - "$date": "2021-02-22T03:58:59.000Z" - }, - "end": { - "$date": "2021-02-22T04:15:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bc28265-29a9-4977-9e60-5da1d2ec0ded", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T03:58:37.000Z" - }, - "end": { - "$date": "2021-02-22T04:15:47.000Z" - }, - "events": [ - { - "uuid": "096714ef-7553-4257-9626-f8eb0a769b6f", - "start": { - "$date": "2021-02-22T03:58:37.000Z" - }, - "end": { - "$date": "2021-02-22T04:15:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09760f21-ad19-4c84-a5ec-ab1714a8f329", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T03:58:40.000Z" - }, - "end": { - "$date": "2021-02-22T04:15:53.000Z" - }, - "events": [ - { - "uuid": "88cdf529-f8b6-40f5-8391-195a9a19cbdc", - "start": { - "$date": "2021-02-22T03:58:40.000Z" - }, - "end": { - "$date": "2021-02-22T04:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b499dfe5-bf3f-4352-8410-7c634c85d4fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T04:41:36.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:12.000Z" - }, - "events": [ - { - "uuid": "76d2203e-c8c7-41d8-8bb5-d3b223ed31eb", - "start": { - "$date": "2021-02-22T04:41:36.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", - "uuid": "fa52f4f1-aa24-439a-9647-6b5c686cd51c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T04:17:01.000Z" - }, - "end": { - "$date": "2021-02-22T04:21:37.000Z" - }, - "events": [ - { - "uuid": "45bd16a3-9199-44a0-a171-f128727d095a", - "start": { - "$date": "2021-02-22T04:17:01.000Z" - }, - "end": { - "$date": "2021-02-22T04:21:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "f6587030-ead0-45c4-99a9-c1f6595cae05", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T04:24:32.000Z" - }, - "end": { - "$date": "2021-02-22T04:33:34.000Z" - }, - "events": [ - { - "uuid": "d15f3f59-8cf0-412c-93ec-56d412b06870", - "start": { - "$date": "2021-02-22T04:24:32.000Z" - }, - "end": { - "$date": "2021-02-22T04:33:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d72f46c7-0628-4720-aec9-badea1a6dde0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T04:24:40.000Z" - }, - "end": { - "$date": "2021-02-22T04:31:40.000Z" - }, - "events": [ - { - "uuid": "517a3064-05ee-4d9b-a405-babdf1610974", - "start": { - "$date": "2021-02-22T04:24:40.000Z" - }, - "end": { - "$date": "2021-02-22T04:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efeadf22-07ef-43a4-8bc4-8fc22e9bc5a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T04:24:41.000Z" - }, - "end": { - "$date": "2021-02-22T04:31:40.000Z" - }, - "events": [ - { - "uuid": "625cde16-2b25-42cd-aaaa-a6b9935c0466", - "start": { - "$date": "2021-02-22T04:24:41.000Z" - }, - "end": { - "$date": "2021-02-22T04:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01086e64-1cbd-4b10-a8ec-6273701a677e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T04:31:40.000Z" - }, - "end": { - "$date": "2021-02-22T04:34:15.000Z" - }, - "events": [ - { - "uuid": "81c91a5d-50ca-4c90-8c6c-e383372afb6b", - "start": { - "$date": "2021-02-22T04:31:40.000Z" - }, - "end": { - "$date": "2021-02-22T04:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77788abb-fe9f-43c4-a1d2-3244a5be53b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T04:31:42.000Z" - }, - "end": { - "$date": "2021-02-22T04:34:15.000Z" - }, - "events": [ - { - "uuid": "cd9bca06-cbfd-4dd6-992b-68b1423b9620", - "start": { - "$date": "2021-02-22T04:31:42.000Z" - }, - "end": { - "$date": "2021-02-22T04:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "523ffc5f-bec6-4b03-8132-4c0478b68e6a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T04:34:30.000Z" - }, - "end": { - "$date": "2021-02-22T04:36:19.000Z" - }, - "events": [ - { - "uuid": "65533146-504c-4adb-a488-3febce55a9d2", - "start": { - "$date": "2021-02-22T04:34:30.000Z" - }, - "end": { - "$date": "2021-02-22T04:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b66b619-4ffa-4d5f-ba57-d0006eb6e55b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T04:34:32.000Z" - }, - "end": { - "$date": "2021-02-22T04:36:20.000Z" - }, - "events": [ - { - "uuid": "f9a410ed-cff5-4bef-98c2-952f5e95a69e", - "start": { - "$date": "2021-02-22T04:34:32.000Z" - }, - "end": { - "$date": "2021-02-22T04:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae4c7ac3-e9e8-44b3-9a5d-54df4fea12ad", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T04:41:25.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:08.000Z" - }, - "events": [ - { - "uuid": "c4cbd542-f618-4f30-a62c-d1c0041d2020", - "start": { - "$date": "2021-02-22T04:41:25.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93a22b22-4d92-4042-bf40-054e020990ff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T04:39:59.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:10.000Z" - }, - "events": [ - { - "uuid": "d9bd0936-f94d-4a8c-8b31-19dc759eaebf", - "start": { - "$date": "2021-02-22T04:39:59.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a3561d1-6d63-45f6-924d-a2bbad368e8e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-22T04:41:21.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:13.000Z" - }, - "events": [ - { - "uuid": "74074006-aee8-4e3b-b3bc-a39029576ca6", - "start": { - "$date": "2021-02-22T04:41:21.000Z" - }, - "end": { - "$date": "2021-02-22T05:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "546ef287-f707-4ce4-9591-2a0b40854d6e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T05:26:53.000Z" - }, - "end": { - "$date": "2021-02-22T05:36:59.000Z" - }, - "events": [ - { - "uuid": "b7710df4-1f8b-4e7d-8802-d0ea7dfcfee4", - "start": { - "$date": "2021-02-22T05:26:53.000Z" - }, - "end": { - "$date": "2021-02-22T05:36:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cba41b25-c148-4afa-b95b-7fe4304e341b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T05:27:38.000Z" - }, - "end": { - "$date": "2021-02-22T05:36:54.000Z" - }, - "events": [ - { - "uuid": "5e7b207a-a51d-4103-8712-5f4777fef101", - "start": { - "$date": "2021-02-22T05:27:38.000Z" - }, - "end": { - "$date": "2021-02-22T05:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85ffe9f4-5498-419a-b524-bd8820a84f41", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T05:26:57.000Z" - }, - "end": { - "$date": "2021-02-22T05:37:03.000Z" - }, - "events": [ - { - "uuid": "075fb391-e4e1-4515-8582-ea55a5bc1250", - "start": { - "$date": "2021-02-22T05:26:57.000Z" - }, - "end": { - "$date": "2021-02-22T05:37:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "302c47b2-a25f-4e32-b0a8-073e2ed7a15d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-22T05:26:54.000Z" - }, - "end": { - "$date": "2021-02-22T05:36:59.000Z" - }, - "events": [ - { - "uuid": "ed5a0865-c95e-4ee9-a0af-ab785f7b9ed5", - "start": { - "$date": "2021-02-22T05:26:54.000Z" - }, - "end": { - "$date": "2021-02-22T05:36:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "26e96b4d-1454-4910-96bc-c39ccb1b4445", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-22T05:33:47.000Z" - }, - "end": { - "$date": "2021-02-22T06:00:58.000Z" - }, - "events": [ - { - "uuid": "7d2686a1-432f-42d3-a229-7cf0715ea1cd", - "start": { - "$date": "2021-02-22T05:33:47.000Z" - }, - "end": { - "$date": "2021-02-22T06:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "196f3fcf-0ffe-4f1a-b9f1-ef7aec49f43c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T05:39:09.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:45.000Z" - }, - "events": [ - { - "uuid": "e35cfdcc-8c8e-49ce-877e-ffee31cc2db3", - "start": { - "$date": "2021-02-22T05:39:09.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4c404cf-787c-43a5-a994-e73fc4b9700c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T05:39:12.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:42.000Z" - }, - "events": [ - { - "uuid": "6a096816-2854-4f1c-a0e2-5d6f256353fd", - "start": { - "$date": "2021-02-22T05:39:12.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c81191d-69a2-49c1-abd3-7da0d6cf11c6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-22T05:40:44.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:46.000Z" - }, - "events": [ - { - "uuid": "1685de3e-fe66-496e-bd96-5c7131ba2d6a", - "start": { - "$date": "2021-02-22T05:40:44.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3ca9963-94b8-4c32-ab9d-2d5a494e9647", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-22T05:39:10.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:45.000Z" - }, - "events": [ - { - "uuid": "5b5f85c4-b7e5-4e05-845b-635608df399a", - "start": { - "$date": "2021-02-22T05:39:10.000Z" - }, - "end": { - "$date": "2021-02-22T06:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "20ebd0b1-93b9-4f73-9382-de0247edf573", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T06:26:18.000Z" - }, - "end": { - "$date": "2021-02-22T07:08:34.000Z" - }, - "events": [ - { - "uuid": "b9348fdf-524e-4115-ad3f-230fbbcc2f99", - "start": { - "$date": "2021-02-22T06:26:18.000Z" - }, - "end": { - "$date": "2021-02-22T07:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "65252df7-4ffb-4d62-96b5-19228f1d68b1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-22T16:34:10.000Z" - }, - "end": { - "$date": "2021-02-22T17:54:06.000Z" - }, - "events": [ - { - "uuid": "2d7c18df-63ed-4482-a56f-c3c922d49feb", - "start": { - "$date": "2021-02-22T16:34:10.000Z" - }, - "end": { - "$date": "2021-02-22T17:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "e7b64f60-5ddc-4c17-be0d-a2f335de36dc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-22T17:31:28.000Z" - }, - "end": { - "$date": "2021-02-22T19:55:24.000Z" - }, - "events": [ - { - "uuid": "3ee8dca7-2050-4608-b955-006f27c9f0a1", - "start": { - "$date": "2021-02-22T17:31:28.000Z" - }, - "end": { - "$date": "2021-02-22T19:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2728072b-eb22-4460-ab53-e7fc63aefbde", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T17:35:51.000Z" - }, - "end": { - "$date": "2021-02-22T17:52:38.000Z" - }, - "events": [ - { - "uuid": "32584839-2a49-45f7-8da4-48f9823b8204", - "start": { - "$date": "2021-02-22T17:35:51.000Z" - }, - "end": { - "$date": "2021-02-22T17:52:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b881f911-1da4-4a41-b6c9-81b653d8f720", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T17:55:52.000Z" - }, - "end": { - "$date": "2021-02-22T18:22:13.000Z" - }, - "events": [ - { - "uuid": "c01df212-0917-45a9-8fda-31275512456b", - "start": { - "$date": "2021-02-22T17:55:52.000Z" - }, - "end": { - "$date": "2021-02-22T18:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47d71ede-70f1-4d6c-b2d1-94dcf2ea6105", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-22T18:07:38.000Z" - }, - "end": { - "$date": "2021-02-22T18:42:09.000Z" - }, - "events": [ - { - "uuid": "63212a0c-e476-42c2-9160-b2e5122f1c1c", - "start": { - "$date": "2021-02-22T18:07:38.000Z" - }, - "end": { - "$date": "2021-02-22T18:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51b886dd-c01e-4224-8d72-d06103ac1b36", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T19:55:53.000Z" - }, - "end": { - "$date": "2021-02-22T19:55:50.000Z" - }, - "events": [ - { - "uuid": "218fa52d-c8bd-43d7-841c-6fffa1c4ed9b", - "start": { - "$date": "2021-02-22T19:55:53.000Z" - }, - "end": { - "$date": "2021-02-22T19:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "140b3173-2f52-4dca-b77c-fe5bf6377c61", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-22T19:42:08.000Z" - }, - "end": { - "$date": "2021-02-22T23:22:19.000Z" - }, - "events": [ - { - "uuid": "41bcceb9-8041-4a67-9a87-395af5a6b142", - "start": { - "$date": "2021-02-22T19:42:08.000Z" - }, - "end": { - "$date": "2021-02-22T21:00:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5ccfbcb-c848-47fd-ad74-951bcc68b75c", - "start": { - "$date": "2021-02-22T21:00:08.000Z" - }, - "end": { - "$date": "2021-02-22T21:09:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f12d44e8-4096-4336-8e16-4bbd6f067be8", - "start": { - "$date": "2021-02-22T21:09:08.000Z" - }, - "end": { - "$date": "2021-02-22T23:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26ece7bf-3fb9-4d65-b4b9-c399c664950f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T19:57:37.000Z" - }, - "end": { - "$date": "2021-02-22T20:25:57.000Z" - }, - "events": [ - { - "uuid": "8e870984-4927-44ce-b220-15e38a16d317", - "start": { - "$date": "2021-02-22T19:57:37.000Z" - }, - "end": { - "$date": "2021-02-22T20:25:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa4d1cc9-1055-411c-9b35-40731fc10c6a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-22T19:57:29.000Z" - }, - "end": { - "$date": "2021-02-22T20:37:25.000Z" - }, - "events": [ - { - "uuid": "f1107886-b426-4416-9793-fe810b48bba7", - "start": { - "$date": "2021-02-22T19:57:29.000Z" - }, - "end": { - "$date": "2021-02-22T20:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "4c0eec24-b63a-4c0d-a463-1271d4c9325a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-22T19:57:55.000Z" - }, - "end": { - "$date": "2021-02-22T23:11:46.000Z" - }, - "events": [ - { - "uuid": "bab32afc-566f-4fad-93a8-261ff0153200", - "start": { - "$date": "2021-02-22T19:57:55.000Z" - }, - "end": { - "$date": "2021-02-22T23:11:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "13a90b98-fb05-4b9c-b983-9b281a91dc81", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-22T20:16:31.000Z" - }, - "end": { - "$date": "2021-02-22T20:50:00.000Z" - }, - "events": [ - { - "uuid": "cdcac91a-6c5a-4f4e-885f-e0b13ca7e43d", - "start": { - "$date": "2021-02-22T20:16:31.000Z" - }, - "end": { - "$date": "2021-02-22T20:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "de628854-c00b-4336-90ad-edb0bed80508", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-22T20:22:57.000Z" - }, - "end": { - "$date": "2021-02-22T21:11:02.000Z" - }, - "events": [ - { - "uuid": "579467e4-e4da-4608-b1e9-9a083cb1499b", - "start": { - "$date": "2021-02-22T20:22:57.000Z" - }, - "end": { - "$date": "2021-02-22T21:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f8ba5cf-e3be-4f04-9199-c72587de411a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T20:40:33.000Z" - }, - "end": { - "$date": "2021-02-22T21:10:49.000Z" - }, - "events": [ - { - "uuid": "e656a0c4-79c4-4d71-9283-dee7ee577995", - "start": { - "$date": "2021-02-22T20:40:33.000Z" - }, - "end": { - "$date": "2021-02-22T21:10:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "404bb0bf-0e85-45f8-a73e-9fa047f42dee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-22T21:15:12.000Z" - }, - "end": { - "$date": "2021-02-22T21:15:34.000Z" - }, - "events": [ - { - "uuid": "e49a1934-1a8d-4e33-a336-276dfa992a35", - "start": { - "$date": "2021-02-22T21:15:12.000Z" - }, - "end": { - "$date": "2021-02-22T21:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85728141-9bee-43c5-af53-0aab691b45cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T20:58:29.000Z" - }, - "end": { - "$date": "2021-02-22T21:38:30.000Z" - }, - "events": [ - { - "uuid": "14a7e7fe-dc1a-4ebb-8b83-6a61a2498673", - "start": { - "$date": "2021-02-22T20:58:29.000Z" - }, - "end": { - "$date": "2021-02-22T21:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da42c6d4-9f21-4aaf-904f-2b5e7ef97b00", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T21:18:18.000Z" - }, - "end": { - "$date": "2021-02-22T21:42:16.000Z" - }, - "events": [ - { - "uuid": "20b24f7f-0bc8-4076-99dd-343f6f3d4de6", - "start": { - "$date": "2021-02-22T21:18:18.000Z" - }, - "end": { - "$date": "2021-02-22T21:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "888b8bb6-a1bb-4267-9636-97837765f29d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T21:47:10.000Z" - }, - "end": { - "$date": "2021-02-22T22:08:57.000Z" - }, - "events": [ - { - "uuid": "0d1f024e-77d3-45ec-9fe8-74f50f4ec0a1", - "start": { - "$date": "2021-02-22T21:47:10.000Z" - }, - "end": { - "$date": "2021-02-22T22:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2051881-74dd-4451-9ac2-0e2bdb3c0b8d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T21:47:06.000Z" - }, - "end": { - "$date": "2021-02-22T22:08:52.000Z" - }, - "events": [ - { - "uuid": "8c09884b-5b1d-4c54-95fa-452c3801480e", - "start": { - "$date": "2021-02-22T21:47:06.000Z" - }, - "end": { - "$date": "2021-02-22T22:08:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8250bdf1-e337-4468-be77-cb9753c1274c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-22T22:11:18.000Z" - }, - "end": { - "$date": "2021-02-22T22:22:58.000Z" - }, - "events": [ - { - "uuid": "fe11f7c7-76d5-43de-b46f-8e95a5d428c9", - "start": { - "$date": "2021-02-22T22:11:18.000Z" - }, - "end": { - "$date": "2021-02-22T22:22:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0c95e02-7bc7-4ac1-adad-201b87d3ee5c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-22T22:11:21.000Z" - }, - "end": { - "$date": "2021-02-22T22:23:10.000Z" - }, - "events": [ - { - "uuid": "f38ae5e8-432f-48b0-82ff-76f463ca4d14", - "start": { - "$date": "2021-02-22T22:11:21.000Z" - }, - "end": { - "$date": "2021-02-22T22:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c3c08688-be5e-4c93-8ea2-f6ec41cb60f7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-22T22:21:00.000Z" - }, - "end": { - "$date": "2021-02-23T00:11:37.000Z" - }, - "events": [ - { - "uuid": "8949a65f-2fbd-4f47-a48a-e8c9b67c0760", - "start": { - "$date": "2021-02-22T22:21:00.000Z" - }, - "end": { - "$date": "2021-02-23T00:11:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "15ce60fb-e30c-477c-842c-8263bb4ae305", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-22T23:58:02.000Z" - }, - "end": { - "$date": "2021-02-23T00:02:02.000Z" - }, - "events": [ - { - "uuid": "ceaff751-96b3-49a6-802e-17c721abb42f", - "start": { - "$date": "2021-02-22T23:58:02.000Z" - }, - "end": { - "$date": "2021-02-23T00:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "85ac1f1b-eb66-409d-9b71-bc7577e567e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-23T00:14:27.000Z" - }, - "end": { - "$date": "2021-02-23T01:37:30.000Z" - }, - "events": [ - { - "uuid": "097395bd-961f-4b3c-9e66-e2023fc21a72", - "start": { - "$date": "2021-02-23T00:14:27.000Z" - }, - "end": { - "$date": "2021-02-23T00:25:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "307dcd8f-1452-457c-ae5e-32c52ea129b3", - "start": { - "$date": "2021-02-23T00:25:27.000Z" - }, - "end": { - "$date": "2021-02-23T00:29:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2301262f-eb97-4794-8a95-a3bc33a9e0e5", - "start": { - "$date": "2021-02-23T00:29:27.000Z" - }, - "end": { - "$date": "2021-02-23T00:40:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2288c6a5-d083-446b-9b9c-49060a4f5188", - "start": { - "$date": "2021-02-23T00:40:27.000Z" - }, - "end": { - "$date": "2021-02-23T01:31:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "003c5e28-f14a-480c-aa0c-8b3bcd90ec6e", - "start": { - "$date": "2021-02-23T01:31:27.000Z" - }, - "end": { - "$date": "2021-02-23T01:37:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1e02de8-02e5-4f65-9765-8b07e1cf2cce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T00:18:23.000Z" - }, - "end": { - "$date": "2021-02-23T01:20:38.000Z" - }, - "events": [ - { - "uuid": "ace13667-081a-417b-9a8a-acdf1474e500", - "start": { - "$date": "2021-02-23T00:18:23.000Z" - }, - "end": { - "$date": "2021-02-23T01:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "942bafbd-a4e9-490d-a23b-3fb8ea9d91b7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T01:33:31.000Z" - }, - "end": { - "$date": "2021-02-23T01:47:37.000Z" - }, - "events": [ - { - "uuid": "e945b334-1440-4998-9177-b9d0dc170e9a", - "start": { - "$date": "2021-02-23T01:33:31.000Z" - }, - "end": { - "$date": "2021-02-23T01:47:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c04e9ea6-c2c6-49c4-8c35-29a4b047cfa8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T01:30:04.000Z" - }, - "end": { - "$date": "2021-02-23T01:31:40.000Z" - }, - "events": [ - { - "uuid": "ebc96cc0-c069-4040-8e54-d452a8880e94", - "start": { - "$date": "2021-02-23T01:30:04.000Z" - }, - "end": { - "$date": "2021-02-23T01:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3278d052-4903-4a13-91e5-a9830797dd33", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T01:33:37.000Z" - }, - "end": { - "$date": "2021-02-23T01:47:45.000Z" - }, - "events": [ - { - "uuid": "49239633-0af7-429a-89e1-87ba243f7cbf", - "start": { - "$date": "2021-02-23T01:33:37.000Z" - }, - "end": { - "$date": "2021-02-23T01:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "1afe0545-975c-497c-abff-66c23d2246e7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-23T01:37:46.000Z" - }, - "end": { - "$date": "2021-02-23T01:59:51.000Z" - }, - "events": [ - { - "uuid": "61eae5b8-c4cb-451f-a69f-b6b76f950e2e", - "start": { - "$date": "2021-02-23T01:37:46.000Z" - }, - "end": { - "$date": "2021-02-23T01:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "49b3a939-4cd7-4592-8c4a-4751548436a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-23T01:42:12.000Z" - }, - "end": { - "$date": "2021-02-23T02:34:23.000Z" - }, - "events": [ - { - "uuid": "2dde20d4-cdff-4590-9c47-e613d46c787e", - "start": { - "$date": "2021-02-23T01:42:12.000Z" - }, - "end": { - "$date": "2021-02-23T02:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbbf7ac5-caff-47a2-9959-39ee1bde3a78", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T01:50:02.000Z" - }, - "end": { - "$date": "2021-02-23T02:08:13.000Z" - }, - "events": [ - { - "uuid": "5ccea6a0-d8d3-4199-b738-95c6a4797995", - "start": { - "$date": "2021-02-23T01:50:02.000Z" - }, - "end": { - "$date": "2021-02-23T02:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b651d0b2-3511-4ca7-afc1-3fe44f4523b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T01:50:08.000Z" - }, - "end": { - "$date": "2021-02-23T02:08:16.000Z" - }, - "events": [ - { - "uuid": "543f834f-f003-4526-86f2-b8d258c635f3", - "start": { - "$date": "2021-02-23T01:50:08.000Z" - }, - "end": { - "$date": "2021-02-23T02:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0e4ca169-d2d4-4915-94ad-6ece35775c86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-23T02:00:12.000Z" - }, - "end": { - "$date": "2021-02-23T04:07:47.000Z" - }, - "events": [ - { - "uuid": "c103f023-f772-4081-ad90-6349e0d47508", - "start": { - "$date": "2021-02-23T02:00:12.000Z" - }, - "end": { - "$date": "2021-02-23T03:09:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0508e483-f804-4762-8605-89d4d9def751", - "start": { - "$date": "2021-02-23T03:09:12.000Z" - }, - "end": { - "$date": "2021-02-23T03:14:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb774e94-fab3-4e40-b801-2b71ea5edc3e", - "start": { - "$date": "2021-02-23T03:14:12.000Z" - }, - "end": { - "$date": "2021-02-23T04:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cd453e6-c974-4572-b583-85ec4a510d51", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T02:12:29.000Z" - }, - "end": { - "$date": "2021-02-23T02:32:29.000Z" - }, - "events": [ - { - "uuid": "c3ef2d6f-649f-4d0c-9887-d104af4d8ad5", - "start": { - "$date": "2021-02-23T02:12:29.000Z" - }, - "end": { - "$date": "2021-02-23T02:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5407c69-b019-481e-801c-8178deaecdbd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T02:11:24.000Z" - }, - "end": { - "$date": "2021-02-23T02:32:41.000Z" - }, - "events": [ - { - "uuid": "e3c1b6da-cf1a-47c2-9f2e-5fad049b1005", - "start": { - "$date": "2021-02-23T02:11:24.000Z" - }, - "end": { - "$date": "2021-02-23T02:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ef8b8b1-fde4-4e14-9fc1-021471098034", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-23T02:11:23.000Z" - }, - "end": { - "$date": "2021-02-23T02:32:27.000Z" - }, - "events": [ - { - "uuid": "d348f377-1518-46c3-a45c-e5cf2f8364c8", - "start": { - "$date": "2021-02-23T02:11:23.000Z" - }, - "end": { - "$date": "2021-02-23T02:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bd28e08-99a9-43f5-b1d9-55be1e03be46", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T02:36:15.000Z" - }, - "end": { - "$date": "2021-02-23T02:54:09.000Z" - }, - "events": [ - { - "uuid": "3bcab195-b1da-4b78-a1fd-461365faaaae", - "start": { - "$date": "2021-02-23T02:36:15.000Z" - }, - "end": { - "$date": "2021-02-23T02:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5ca7a1a-eb9b-4ada-8c2e-007daa4f432f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-23T02:37:18.000Z" - }, - "end": { - "$date": "2021-02-23T02:53:13.000Z" - }, - "events": [ - { - "uuid": "442c0ef9-a656-4489-8fa3-a3235d9b2e65", - "start": { - "$date": "2021-02-23T02:37:18.000Z" - }, - "end": { - "$date": "2021-02-23T02:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99de6da1-12ae-461c-96c3-8f1c44b3a496", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-23T02:36:09.000Z" - }, - "end": { - "$date": "2021-02-23T02:53:13.000Z" - }, - "events": [ - { - "uuid": "40dcfe20-179e-4107-b240-a69a8de42e53", - "start": { - "$date": "2021-02-23T02:36:09.000Z" - }, - "end": { - "$date": "2021-02-23T02:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b7c1804d-fe49-4480-bbe3-a005b712a61b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-23T03:26:24.000Z" - }, - "end": { - "$date": "2021-02-23T04:10:28.000Z" - }, - "events": [ - { - "uuid": "4e34d192-c073-4860-aa7f-c001f46a8a16", - "start": { - "$date": "2021-02-23T03:26:24.000Z" - }, - "end": { - "$date": "2021-02-23T04:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4f5018d-6435-444d-b523-70864f2b3b68", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-23T03:39:42.000Z" - }, - "end": { - "$date": "2021-02-23T04:13:37.000Z" - }, - "events": [ - { - "uuid": "eb6c08aa-a931-41b4-b583-2f054f99ae04", - "start": { - "$date": "2021-02-23T03:39:42.000Z" - }, - "end": { - "$date": "2021-02-23T04:13:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0d368311-eee3-4163-8b0c-f31c78cf9fd8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-23T03:34:47.000Z" - }, - "end": { - "$date": "2021-02-23T07:00:43.000Z" - }, - "events": [ - { - "uuid": "a193c8ea-5db8-4e43-b7c2-bbc26cb50099", - "start": { - "$date": "2021-02-23T03:34:47.000Z" - }, - "end": { - "$date": "2021-02-23T07:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2456d4f6-8154-45ac-b79d-e9989be499d5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-23T04:07:58.000Z" - }, - "end": { - "$date": "2021-02-23T04:09:17.000Z" - }, - "events": [ - { - "uuid": "52009f30-8c19-46f5-a6bb-4f6655b62094", - "start": { - "$date": "2021-02-23T04:07:58.000Z" - }, - "end": { - "$date": "2021-02-23T04:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "de0a2937-3da5-4cdb-8bea-81d64226eeb6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-23T05:57:15.000Z" - }, - "end": { - "$date": "2021-02-23T06:33:35.000Z" - }, - "events": [ - { - "uuid": "26195f1e-1bb6-47d0-97a6-12c7b153b193", - "start": { - "$date": "2021-02-23T05:57:15.000Z" - }, - "end": { - "$date": "2021-02-23T06:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "efe8806e-a058-4e8d-a435-04ed83182bba", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-23T04:10:09.000Z" - }, - "end": { - "$date": "2021-02-23T06:33:43.000Z" - }, - "events": [ - { - "uuid": "653b3e24-f4e9-4deb-af1e-2192500c6ffc", - "start": { - "$date": "2021-02-23T04:10:09.000Z" - }, - "end": { - "$date": "2021-02-23T06:33:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad87f22b-e196-43c9-aa23-8ca45652dd53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T04:13:23.000Z" - }, - "end": { - "$date": "2021-02-23T04:31:19.000Z" - }, - "events": [ - { - "uuid": "5d2254d5-4c09-4825-bf37-4257495990a3", - "start": { - "$date": "2021-02-23T04:13:23.000Z" - }, - "end": { - "$date": "2021-02-23T04:31:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b408f7fb-115e-48eb-9c27-c96a27ec7937", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-23T04:14:23.000Z" - }, - "end": { - "$date": "2021-02-23T04:31:17.000Z" - }, - "events": [ - { - "uuid": "4059f754-f719-4fa8-a69a-9f2ec490f35c", - "start": { - "$date": "2021-02-23T04:14:23.000Z" - }, - "end": { - "$date": "2021-02-23T04:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86e4eba8-fc1e-4418-831a-ac4f833ee587", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-23T04:28:40.000Z" - }, - "end": { - "$date": "2021-02-23T04:55:50.000Z" - }, - "events": [ - { - "uuid": "36f4ad51-5395-4df8-9cc9-9f4adcafb580", - "start": { - "$date": "2021-02-23T04:28:40.000Z" - }, - "end": { - "$date": "2021-02-23T04:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dcd2fcf0-eb18-4617-97c1-56c236e94fc7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-23T04:19:46.000Z" - }, - "end": { - "$date": "2021-02-23T05:25:54.000Z" - }, - "events": [ - { - "uuid": "d754dcaa-dc96-4de4-b384-37302d2e07ff", - "start": { - "$date": "2021-02-23T04:19:46.000Z" - }, - "end": { - "$date": "2021-02-23T05:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8dcae812-835e-440c-af35-f981b8aaab5a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-23T04:23:41.000Z" - }, - "end": { - "$date": "2021-02-23T04:34:48.000Z" - }, - "events": [ - { - "uuid": "a49d535c-d6ca-413e-a38b-f556eda00b6b", - "start": { - "$date": "2021-02-23T04:23:41.000Z" - }, - "end": { - "$date": "2021-02-23T04:34:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72c9ac4e-4559-477c-a6a3-ac46400ba4e6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T04:34:06.000Z" - }, - "end": { - "$date": "2021-02-23T04:53:23.000Z" - }, - "events": [ - { - "uuid": "07acb5e7-9777-4dcd-894e-c84346841f3b", - "start": { - "$date": "2021-02-23T04:34:06.000Z" - }, - "end": { - "$date": "2021-02-23T04:53:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b70a886-46d1-4a2a-b681-4a851b573143", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T04:33:19.000Z" - }, - "end": { - "$date": "2021-02-23T04:53:15.000Z" - }, - "events": [ - { - "uuid": "8dfa1d6a-2350-4ff2-83e5-a6b52bcf415d", - "start": { - "$date": "2021-02-23T04:33:19.000Z" - }, - "end": { - "$date": "2021-02-23T04:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe486123-5060-4673-8551-f2f32335bc5e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-23T04:34:14.000Z" - }, - "end": { - "$date": "2021-02-23T04:53:17.000Z" - }, - "events": [ - { - "uuid": "048e57c6-0e34-4e96-94ac-73fb92dbc9cd", - "start": { - "$date": "2021-02-23T04:34:14.000Z" - }, - "end": { - "$date": "2021-02-23T04:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a8177615-f844-46cc-981e-1d2a60dc1741", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-23T04:33:27.000Z" - }, - "end": { - "$date": "2021-02-23T05:22:49.000Z" - }, - "events": [ - { - "uuid": "852789d6-d8cd-4009-8f2f-c431bf86aa23", - "start": { - "$date": "2021-02-23T04:33:27.000Z" - }, - "end": { - "$date": "2021-02-23T05:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b909a6f-d9c9-4917-8222-fe1903e1f461", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T04:53:41.000Z" - }, - "end": { - "$date": "2021-02-23T04:54:53.000Z" - }, - "events": [ - { - "uuid": "5e8b3488-7b0b-4f1b-b9d7-7869dfbbcd97", - "start": { - "$date": "2021-02-23T04:53:41.000Z" - }, - "end": { - "$date": "2021-02-23T04:54:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c56d24f3-da9c-407c-ace0-11cd867dc521", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-23T05:06:32.000Z" - }, - "end": { - "$date": "2021-02-23T05:39:03.000Z" - }, - "events": [ - { - "uuid": "c8df5770-7a5e-4afc-b4c7-e2127182e0e2", - "start": { - "$date": "2021-02-23T05:06:32.000Z" - }, - "end": { - "$date": "2021-02-23T05:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fd61633-3d63-4ba3-93e1-bfe6d16ef6ec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-23T05:29:10.000Z" - }, - "end": { - "$date": "2021-02-23T05:44:44.000Z" - }, - "events": [ - { - "uuid": "4e506880-b1bf-476f-ac03-ff3636637670", - "start": { - "$date": "2021-02-23T05:29:10.000Z" - }, - "end": { - "$date": "2021-02-23T05:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e0c17166-cc8d-4250-b071-17d9a7994c0b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-23T05:39:45.000Z" - }, - "end": { - "$date": "2021-02-23T07:45:52.000Z" - }, - "events": [ - { - "uuid": "d2320aeb-0681-42dc-a7f1-c5965c82c416", - "start": { - "$date": "2021-02-23T05:39:45.000Z" - }, - "end": { - "$date": "2021-02-23T07:45:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "2b1889ea-a904-42d4-9fe7-a637d7e15134", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-23T06:34:06.000Z" - }, - "end": { - "$date": "2021-02-23T06:57:11.000Z" - }, - "events": [ - { - "uuid": "8c00eea0-1c9f-4127-8a94-f24fc521eb53", - "start": { - "$date": "2021-02-23T06:34:06.000Z" - }, - "end": { - "$date": "2021-02-23T06:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "086fcc61-2ecb-41d6-b64c-90fc8c9a42bd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-23T07:56:08.000Z" - }, - "end": { - "$date": "2021-02-23T08:38:46.000Z" - }, - "events": [ - { - "uuid": "4e996cf5-558c-4379-883b-9dcf6405fe79", - "start": { - "$date": "2021-02-23T07:56:08.000Z" - }, - "end": { - "$date": "2021-02-23T08:38:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e4b0f4d-d2ce-4bfb-8819-1a7845d6f59d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-23T18:25:57.000Z" - }, - "end": { - "$date": "2021-02-23T18:42:16.000Z" - }, - "events": [ - { - "uuid": "e4d4f558-241c-49e7-badc-adca8e02d790", - "start": { - "$date": "2021-02-23T18:25:57.000Z" - }, - "end": { - "$date": "2021-02-23T18:37:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "280d8bfd-5b48-4b31-b130-dc80b8936056", - "start": { - "$date": "2021-02-23T18:37:57.000Z" - }, - "end": { - "$date": "2021-02-23T18:38:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "95ed1e5b-1726-49c1-9620-eec480aa932e", - "start": { - "$date": "2021-02-23T18:38:57.000Z" - }, - "end": { - "$date": "2021-02-23T18:48:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6708117f-79dd-4d65-b3f4-810f6e720f0e", - "start": { - "$date": "2021-02-23T18:48:57.000Z" - }, - "end": { - "$date": "2021-02-23T18:49:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e742d20-da64-4018-b9f2-c8915d2c0ca1", - "start": { - "$date": "2021-02-23T18:49:57.000Z" - }, - "end": { - "$date": "2021-02-23T19:19:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33e1bba3-7bed-4560-ab4e-8cb916fafa83", - "start": { - "$date": "2021-02-23T19:19:57.000Z" - }, - "end": { - "$date": "2021-02-23T19:21:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d58a4fd-66cf-46b4-b98b-724b2bf075bb", - "start": { - "$date": "2021-02-23T19:21:57.000Z" - }, - "end": { - "$date": "2021-02-23T19:41:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81887916-e867-4de9-9a8f-5183acdd2130", - "start": { - "$date": "2021-02-23T19:41:57.000Z" - }, - "end": { - "$date": "2021-02-23T19:42:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "82f1a102-f4d1-4b01-84c6-e61a21e9b146", - "start": { - "$date": "2021-02-23T19:42:57.000Z" - }, - "end": { - "$date": "2021-02-23T18:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed2bfbb5-71db-4d4f-85cb-67c2075ecb41", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T18:49:40.000Z" - }, - "end": { - "$date": "2021-02-23T19:17:49.000Z" - }, - "events": [ - { - "uuid": "0773cba0-6f60-4360-bffb-099a58ab9234", - "start": { - "$date": "2021-02-23T18:49:40.000Z" - }, - "end": { - "$date": "2021-02-23T19:17:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c78f453-5bb7-4e88-8c81-e0cf30a7ea10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-23T18:52:23.000Z" - }, - "end": { - "$date": "2021-02-23T19:05:32.000Z" - }, - "events": [ - { - "uuid": "79dc50c7-9944-4116-adb8-338bf4f43c63", - "start": { - "$date": "2021-02-23T18:52:23.000Z" - }, - "end": { - "$date": "2021-02-23T19:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3e3612f8-027b-434f-9124-521244aab13d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-23T19:13:39.000Z" - }, - "end": { - "$date": "2021-02-23T19:31:39.000Z" - }, - "events": [ - { - "uuid": "3ea75dc5-9e1f-426a-b029-8ff3f75b0a2d", - "start": { - "$date": "2021-02-23T19:13:39.000Z" - }, - "end": { - "$date": "2021-02-23T19:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76cf9a8c-3235-4bd8-b12e-6508f149b0c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T19:25:00.000Z" - }, - "end": { - "$date": "2021-02-23T19:48:41.000Z" - }, - "events": [ - { - "uuid": "649d1218-b7eb-406d-b148-f3888056f7ad", - "start": { - "$date": "2021-02-23T19:25:00.000Z" - }, - "end": { - "$date": "2021-02-23T19:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c42b9d33-6862-46bc-96dc-463ee0162a6f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T19:49:08.000Z" - }, - "end": { - "$date": "2021-02-23T19:52:12.000Z" - }, - "events": [ - { - "uuid": "613093f5-8c0b-49c1-8c59-5be57c6e6661", - "start": { - "$date": "2021-02-23T19:49:08.000Z" - }, - "end": { - "$date": "2021-02-23T19:52:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "81724aa4-926e-492c-a454-22ba9b21346c", - "uuid": "220f87fc-5a89-4770-b1ef-3b2bc9f733d0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T19:54:13.000Z" - }, - "end": { - "$date": "2021-02-23T21:39:12.000Z" - }, - "events": [ - { - "uuid": "6ff41a3a-57da-4a77-b69a-1b0aeb7d3a8b", - "start": { - "$date": "2021-02-23T19:54:13.000Z" - }, - "end": { - "$date": "2021-02-23T21:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c5a84e81-5bbe-4326-a800-28db2f7f1fe5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-23T19:54:46.000Z" - }, - "end": { - "$date": "2021-02-23T20:08:13.000Z" - }, - "events": [ - { - "uuid": "8784f26e-2ed4-4268-b9b7-62ebec67825f", - "start": { - "$date": "2021-02-23T19:54:46.000Z" - }, - "end": { - "$date": "2021-02-23T20:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "18bb9076-c777-42b0-a349-49e100abb2a8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-23T20:36:20.000Z" - }, - "end": { - "$date": "2021-02-23T21:05:12.000Z" - }, - "events": [ - { - "uuid": "3b8323de-f0e3-40b0-a819-747e57786ee9", - "start": { - "$date": "2021-02-23T20:36:20.000Z" - }, - "end": { - "$date": "2021-02-23T21:05:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a2890ddf-42a3-43b8-9d73-4cc5707fe6aa", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-23T21:33:30.000Z" - }, - "end": { - "$date": "2021-02-24T01:13:41.000Z" - }, - "events": [ - { - "uuid": "458f7ad5-51fc-469d-847b-04f44e96fc52", - "start": { - "$date": "2021-02-23T21:33:30.000Z" - }, - "end": { - "$date": "2021-02-23T21:46:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f11dae3-8d96-405d-94aa-df09fbf8de50", - "start": { - "$date": "2021-02-23T21:46:30.000Z" - }, - "end": { - "$date": "2021-02-23T21:51:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0f0bcdf3-afc1-43b5-9448-fba8e9959800", - "start": { - "$date": "2021-02-23T21:51:30.000Z" - }, - "end": { - "$date": "2021-02-23T22:08:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6cadc7da-a5fc-49fd-8dec-84873fa2ec2c", - "start": { - "$date": "2021-02-23T22:08:30.000Z" - }, - "end": { - "$date": "2021-02-23T22:15:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "01ef6dfe-b345-4a29-b3a1-ed9d7c312de2", - "start": { - "$date": "2021-02-23T22:15:30.000Z" - }, - "end": { - "$date": "2021-02-23T23:15:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33ff7b58-b27e-4a44-92a5-3a6e8783328a", - "start": { - "$date": "2021-02-23T23:15:30.000Z" - }, - "end": { - "$date": "2021-02-23T23:17:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7bb96d85-136a-4a19-9593-066364f699ea", - "start": { - "$date": "2021-02-23T23:17:30.000Z" - }, - "end": { - "$date": "2021-02-24T00:52:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f32d185-e01d-4803-8e01-4a4399e31d54", - "start": { - "$date": "2021-02-24T00:52:30.000Z" - }, - "end": { - "$date": "2021-02-24T00:56:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c419c297-0e1d-41dd-a006-7f3208360f7b", - "start": { - "$date": "2021-02-24T00:56:30.000Z" - }, - "end": { - "$date": "2021-02-24T01:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a5f95ac3-327a-48c3-a63a-54add070d754", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-23T21:33:34.000Z" - }, - "end": { - "$date": "2021-02-23T22:38:40.000Z" - }, - "events": [ - { - "uuid": "a87df530-0deb-4e08-82e1-e4a185e903c4", - "start": { - "$date": "2021-02-23T21:33:34.000Z" - }, - "end": { - "$date": "2021-02-23T22:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4af20d03-8ecd-4e3b-a0e6-e65546f43899", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-23T23:27:23.000Z" - }, - "end": { - "$date": "2021-02-24T00:04:38.000Z" - }, - "events": [ - { - "uuid": "a9c90279-4792-4ec0-a9cb-7e876597a539", - "start": { - "$date": "2021-02-23T23:27:23.000Z" - }, - "end": { - "$date": "2021-02-24T00:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ba1e9b56-e90a-4302-9afe-949dc5f196c5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-23T23:17:37.000Z" - }, - "end": { - "$date": "2021-02-23T23:19:22.000Z" - }, - "events": [ - { - "uuid": "764eb81a-c615-4289-898a-b4290553ad66", - "start": { - "$date": "2021-02-23T23:17:37.000Z" - }, - "end": { - "$date": "2021-02-23T23:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9216f4bb-bd2c-4600-9db2-012bf364fbe5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-23T23:29:09.000Z" - }, - "end": { - "$date": "2021-02-24T01:56:31.000Z" - }, - "events": [ - { - "uuid": "e7c0200f-2270-4d37-8ffb-483460129a7b", - "start": { - "$date": "2021-02-23T23:29:09.000Z" - }, - "end": { - "$date": "2021-02-24T01:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "19ddaf06-26cd-4f7d-bfaf-34355b56a13a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-23T23:47:54.000Z" - }, - "end": { - "$date": "2021-02-24T01:59:09.000Z" - }, - "events": [ - { - "uuid": "ce851363-a9ec-46e4-ac25-5b375188d326", - "start": { - "$date": "2021-02-23T23:47:54.000Z" - }, - "end": { - "$date": "2021-02-24T01:59:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "27287df6-43a9-490d-822f-34a143ea1682", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-24T00:03:52.000Z" - }, - "end": { - "$date": "2021-02-24T02:08:40.000Z" - }, - "events": [ - { - "uuid": "2e12fc8c-17bb-46d2-a0e0-8d54da303ad9", - "start": { - "$date": "2021-02-24T00:03:52.000Z" - }, - "end": { - "$date": "2021-02-24T00:27:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70c371d6-62cf-42a7-a666-ad82528e1076", - "start": { - "$date": "2021-02-24T00:27:52.000Z" - }, - "end": { - "$date": "2021-02-24T00:29:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9df09a8-0e47-4b6a-b829-20e2cdba3d91", - "start": { - "$date": "2021-02-24T00:29:52.000Z" - }, - "end": { - "$date": "2021-02-24T02:08:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "38639289-9a4a-4696-8422-f0248e6d6b15", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T02:04:02.000Z" - }, - "end": { - "$date": "2021-02-24T02:44:10.000Z" - }, - "events": [ - { - "uuid": "ca6a4297-2dd9-4043-a71e-0e181fa67953", - "start": { - "$date": "2021-02-24T02:04:02.000Z" - }, - "end": { - "$date": "2021-02-24T02:44:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f2c89e93-8e12-458d-bcd8-f16b789478de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-24T02:13:48.000Z" - }, - "end": { - "$date": "2021-02-24T05:12:59.000Z" - }, - "events": [ - { - "uuid": "2d53bd59-9539-499c-9993-0497501064aa", - "start": { - "$date": "2021-02-24T02:13:48.000Z" - }, - "end": { - "$date": "2021-02-24T05:12:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9499576-5c8c-42c3-85e7-144aee132c64", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T02:24:35.000Z" - }, - "end": { - "$date": "2021-02-24T04:10:02.000Z" - }, - "events": [ - { - "uuid": "af605ac2-237c-4b71-bbce-ab9954da6a27", - "start": { - "$date": "2021-02-24T02:24:35.000Z" - }, - "end": { - "$date": "2021-02-24T03:02:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa3706e3-53f0-438b-96b8-52efa40b8b83", - "start": { - "$date": "2021-02-24T03:02:35.000Z" - }, - "end": { - "$date": "2021-02-24T03:20:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b2a7ef2-4e2e-4eeb-85ef-6051a8e2fa8f", - "start": { - "$date": "2021-02-24T03:20:35.000Z" - }, - "end": { - "$date": "2021-02-24T04:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d410ef44-b885-4486-98a2-998ad43e0e1a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T02:47:00.000Z" - }, - "end": { - "$date": "2021-02-24T03:20:07.000Z" - }, - "events": [ - { - "uuid": "31ba5b9b-1455-49ed-9801-6c75152e1c0d", - "start": { - "$date": "2021-02-24T02:47:00.000Z" - }, - "end": { - "$date": "2021-02-24T03:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6b0c1e5d-a02b-430b-990c-663ecdb067a4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-24T02:57:13.000Z" - }, - "end": { - "$date": "2021-02-24T04:10:29.000Z" - }, - "events": [ - { - "uuid": "842cc28e-4137-4b24-85f2-e977c3a88bbf", - "start": { - "$date": "2021-02-24T02:57:13.000Z" - }, - "end": { - "$date": "2021-02-24T04:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "535a60e5-4493-479c-9bab-b9e5ad9540c8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-24T03:20:08.000Z" - }, - "end": { - "$date": "2021-02-24T03:26:59.000Z" - }, - "events": [ - { - "uuid": "4df08667-76e3-4074-a52f-7039563e7d45", - "start": { - "$date": "2021-02-24T03:20:08.000Z" - }, - "end": { - "$date": "2021-02-24T03:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9d95b0ab-64d7-4b11-bba6-6861cc4c725a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-24T03:26:55.000Z" - }, - "end": { - "$date": "2021-02-24T04:07:26.000Z" - }, - "events": [ - { - "uuid": "07b58dd9-57ae-46dc-9e5d-5e5953922d2d", - "start": { - "$date": "2021-02-24T03:26:55.000Z" - }, - "end": { - "$date": "2021-02-24T03:39:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "073db25c-6b43-4b17-94f7-1f15cfa5c46b", - "start": { - "$date": "2021-02-24T03:39:55.000Z" - }, - "end": { - "$date": "2021-02-24T03:41:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "419fe386-ea77-4d11-a835-71f6718b98a3", - "start": { - "$date": "2021-02-24T03:41:55.000Z" - }, - "end": { - "$date": "2021-02-24T04:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bdda19a4-e1eb-4f8c-aaf3-955f712c1398", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-24T03:27:24.000Z" - }, - "end": { - "$date": "2021-02-24T03:44:00.000Z" - }, - "events": [ - { - "uuid": "0e136d48-59c7-4b56-9f32-fdc845f17162", - "start": { - "$date": "2021-02-24T03:27:24.000Z" - }, - "end": { - "$date": "2021-02-24T03:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "46c49b12-df3a-42db-a0e0-b741a5a4311e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-24T03:45:31.000Z" - }, - "end": { - "$date": "2021-02-24T04:08:31.000Z" - }, - "events": [ - { - "uuid": "37634fc1-c484-46a3-92d4-ee82ee7a8b20", - "start": { - "$date": "2021-02-24T03:45:31.000Z" - }, - "end": { - "$date": "2021-02-24T04:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "abf159c8-4976-4f0e-a1cc-4458f1537bd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-24T04:08:57.000Z" - }, - "end": { - "$date": "2021-02-24T05:09:48.000Z" - }, - "events": [ - { - "uuid": "41d15941-c791-4968-b56f-b9b97f7c2c55", - "start": { - "$date": "2021-02-24T04:08:57.000Z" - }, - "end": { - "$date": "2021-02-24T05:09:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "a256ba82-7e0b-48dd-ad73-71475f585960", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-24T04:09:39.000Z" - }, - "end": { - "$date": "2021-02-24T05:09:53.000Z" - }, - "events": [ - { - "uuid": "700a3970-03fd-4e65-83b6-f08d944e825b", - "start": { - "$date": "2021-02-24T04:09:39.000Z" - }, - "end": { - "$date": "2021-02-24T05:09:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "f7c24e96-0ee0-4aa0-ab15-1e9e7b765bb9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T04:10:17.000Z" - }, - "end": { - "$date": "2021-02-24T05:11:24.000Z" - }, - "events": [ - { - "uuid": "c6823234-494b-4fb2-9e3c-d67ad74b9d7f", - "start": { - "$date": "2021-02-24T04:10:17.000Z" - }, - "end": { - "$date": "2021-02-24T05:11:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "9446e743-77ff-43b6-b7d1-10163b081e2b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-24T04:11:13.000Z" - }, - "end": { - "$date": "2021-02-24T05:10:05.000Z" - }, - "events": [ - { - "uuid": "003f37d8-82b0-4ea1-bd12-8b39a2b5c3db", - "start": { - "$date": "2021-02-24T04:11:13.000Z" - }, - "end": { - "$date": "2021-02-24T05:10:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "3a1aad42-726d-4186-ac66-2cd425543d0d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-24T04:52:04.000Z" - }, - "end": { - "$date": "2021-02-24T06:12:54.000Z" - }, - "events": [ - { - "uuid": "e5475782-6265-439b-bb9e-b4e9d0e7c3a5", - "start": { - "$date": "2021-02-24T04:52:04.000Z" - }, - "end": { - "$date": "2021-02-24T06:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "206b6de1-a455-4520-923b-ddc1a8f9d6ea", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-24T05:13:51.000Z" - }, - "end": { - "$date": "2021-02-24T05:42:05.000Z" - }, - "events": [ - { - "uuid": "b77ae02e-56ed-4508-a523-8ba623e5d297", - "start": { - "$date": "2021-02-24T05:13:51.000Z" - }, - "end": { - "$date": "2021-02-24T05:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "662d4554-a451-451e-8afb-883a101d3bb3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-24T05:13:21.000Z" - }, - "end": { - "$date": "2021-02-24T06:25:36.000Z" - }, - "events": [ - { - "uuid": "0143ccf1-b3d2-4681-ab5a-eca4a85be5b6", - "start": { - "$date": "2021-02-24T05:13:21.000Z" - }, - "end": { - "$date": "2021-02-24T06:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8717cf75-21eb-4241-80ff-de05317f6814", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-24T05:14:10.000Z" - }, - "end": { - "$date": "2021-02-24T05:45:50.000Z" - }, - "events": [ - { - "uuid": "4d62ad4e-4818-4766-a2f3-a682833d9722", - "start": { - "$date": "2021-02-24T05:14:10.000Z" - }, - "end": { - "$date": "2021-02-24T05:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "47c9b57e-f1dc-4da4-b996-8208c2b755cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-24T05:15:19.000Z" - }, - "end": { - "$date": "2021-02-24T06:22:42.000Z" - }, - "events": [ - { - "uuid": "e62ac83a-9382-4ed0-ab39-5197f22e00df", - "start": { - "$date": "2021-02-24T05:15:19.000Z" - }, - "end": { - "$date": "2021-02-24T06:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "523d5281-a1e3-454d-935a-f9bc10c70be9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-24T05:43:07.000Z" - }, - "end": { - "$date": "2021-02-24T05:51:43.000Z" - }, - "events": [ - { - "uuid": "b8fa770c-b698-4324-85d8-55153af56258", - "start": { - "$date": "2021-02-24T05:43:07.000Z" - }, - "end": { - "$date": "2021-02-24T05:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b448db62-7072-40eb-abb2-a4cc3585f32e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-24T05:50:16.000Z" - }, - "end": { - "$date": "2021-02-24T05:54:30.000Z" - }, - "events": [ - { - "uuid": "c9587740-1e96-4cb8-b430-e71f1ecbdb5d", - "start": { - "$date": "2021-02-24T05:50:16.000Z" - }, - "end": { - "$date": "2021-02-24T05:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4f633546-85a9-4ce7-b68d-3c01f371524e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-24T06:28:31.000Z" - }, - "end": { - "$date": "2021-02-24T06:30:06.000Z" - }, - "events": [ - { - "uuid": "955e3fc5-9576-4743-92c2-e6bfddea9ee8", - "start": { - "$date": "2021-02-24T06:28:31.000Z" - }, - "end": { - "$date": "2021-02-24T06:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "b728d4a9-5091-4b5c-888e-d07c36c726ce", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-24T06:38:13.000Z" - }, - "end": { - "$date": "2021-02-24T06:54:00.000Z" - }, - "events": [ - { - "uuid": "20d409d5-abab-4e7f-90f7-5b52d59ff6e6", - "start": { - "$date": "2021-02-24T06:38:13.000Z" - }, - "end": { - "$date": "2021-02-24T06:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "cebfd732-a903-4d9b-9ebe-f2a92fead0da", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-24T15:45:06.000Z" - }, - "end": { - "$date": "2021-02-24T17:32:59.000Z" - }, - "events": [ - { - "uuid": "9aa0a785-7608-4546-ae21-c41bcef5d71a", - "start": { - "$date": "2021-02-24T15:45:06.000Z" - }, - "end": { - "$date": "2021-02-24T17:32:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "825b870a-5ac8-4b75-9957-768fcd9a2486", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T16:10:30.000Z" - }, - "end": { - "$date": "2021-02-24T16:45:47.000Z" - }, - "events": [ - { - "uuid": "7410d129-2ffb-4eb3-bd62-49f39eea4feb", - "start": { - "$date": "2021-02-24T16:10:30.000Z" - }, - "end": { - "$date": "2021-02-24T16:45:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "41b1d566-fb57-4e61-8a9f-fcf1188f2c39", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T16:21:30.000Z" - }, - "end": { - "$date": "2021-02-24T17:24:27.000Z" - }, - "events": [ - { - "uuid": "7d64730f-36e7-4b50-b4b0-1e1a5ac97f8c", - "start": { - "$date": "2021-02-24T16:21:30.000Z" - }, - "end": { - "$date": "2021-02-24T17:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43a79d83-46d2-4521-b80c-ac96c18a77ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T16:48:52.000Z" - }, - "end": { - "$date": "2021-02-24T17:18:09.000Z" - }, - "events": [ - { - "uuid": "f903594b-e64b-4c08-af20-3d19c4fb7fd4", - "start": { - "$date": "2021-02-24T16:48:52.000Z" - }, - "end": { - "$date": "2021-02-24T17:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "55f865a9-7fa0-4de6-8df9-679318fc7d4d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T18:20:31.000Z" - }, - "end": { - "$date": "2021-02-24T18:36:45.000Z" - }, - "events": [ - { - "uuid": "3fb65560-f197-4484-82bb-de754817288f", - "start": { - "$date": "2021-02-24T18:20:31.000Z" - }, - "end": { - "$date": "2021-02-24T18:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "738082dc-bbb7-46ee-bc06-ed7add08d112", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T18:38:06.000Z" - }, - "end": { - "$date": "2021-02-24T18:51:31.000Z" - }, - "events": [ - { - "uuid": "ff97e231-ddaa-4957-b6d5-5ab3a9a38e6b", - "start": { - "$date": "2021-02-24T18:38:06.000Z" - }, - "end": { - "$date": "2021-02-24T18:51:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4a1543bc-4019-47fa-a61d-b2cebae11cfa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T19:22:45.000Z" - }, - "end": { - "$date": "2021-02-24T19:35:55.000Z" - }, - "events": [ - { - "uuid": "9a595d6a-606d-4746-a269-437d1c08cf34", - "start": { - "$date": "2021-02-24T19:22:45.000Z" - }, - "end": { - "$date": "2021-02-24T19:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "10b761fa-58c1-4bd5-b485-d0c52644b328", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-24T20:32:45.000Z" - }, - "end": { - "$date": "2021-02-24T20:40:15.000Z" - }, - "events": [ - { - "uuid": "479d89fd-74aa-430d-b84f-b4fea38d196e", - "start": { - "$date": "2021-02-24T20:32:45.000Z" - }, - "end": { - "$date": "2021-02-24T20:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "faec8a4c-6cf5-4db5-9cda-e13beac262fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-24T20:35:45.000Z" - }, - "end": { - "$date": "2021-02-24T21:30:23.000Z" - }, - "events": [ - { - "uuid": "601bb3a5-7fcc-4717-ac2b-b67603398325", - "start": { - "$date": "2021-02-24T20:35:45.000Z" - }, - "end": { - "$date": "2021-02-24T21:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5de93238-0fa6-4d3a-8ac9-e469003e0c9d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-24T20:45:29.000Z" - }, - "end": { - "$date": "2021-02-24T21:04:29.000Z" - }, - "events": [ - { - "uuid": "09257d9b-168f-414b-995f-1bf395487b34", - "start": { - "$date": "2021-02-24T20:45:29.000Z" - }, - "end": { - "$date": "2021-02-24T21:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "da4678e3-50fd-4523-bb8b-d0e0d8a5ac75", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T21:30:23.000Z" - }, - "end": { - "$date": "2021-02-24T21:36:47.000Z" - }, - "events": [ - { - "uuid": "dd2b83f5-d554-4ea5-be5f-def704c8afce", - "start": { - "$date": "2021-02-24T21:30:23.000Z" - }, - "end": { - "$date": "2021-02-24T21:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "46cf9535-5181-44c8-b1d3-a3820aaf9c7a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T21:38:28.000Z" - }, - "end": { - "$date": "2021-02-24T22:17:38.000Z" - }, - "events": [ - { - "uuid": "fe99a757-8c8f-4ee4-bd31-574c1d02967b", - "start": { - "$date": "2021-02-24T21:38:28.000Z" - }, - "end": { - "$date": "2021-02-24T22:17:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2949ce11-9a06-4bd0-8b24-fdf298cdfc1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T22:30:55.000Z" - }, - "end": { - "$date": "2021-02-24T23:04:36.000Z" - }, - "events": [ - { - "uuid": "bb0e5ca7-823e-4b04-83cd-8e036fab9b24", - "start": { - "$date": "2021-02-24T22:30:55.000Z" - }, - "end": { - "$date": "2021-02-24T23:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d524d853-4b17-42b3-afe2-0a6ba652b59c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-24T22:56:20.000Z" - }, - "end": { - "$date": "2021-02-24T23:27:11.000Z" - }, - "events": [ - { - "uuid": "b585fceb-5364-4bff-86b6-ebddb91a4077", - "start": { - "$date": "2021-02-24T22:56:20.000Z" - }, - "end": { - "$date": "2021-02-24T23:27:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12ae28ca-eae1-4216-a506-85afa998f0a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T23:07:27.000Z" - }, - "end": { - "$date": "2021-02-24T23:36:28.000Z" - }, - "events": [ - { - "uuid": "24a851db-70b1-4a49-936f-2304a4cc2ac8", - "start": { - "$date": "2021-02-24T23:07:27.000Z" - }, - "end": { - "$date": "2021-02-24T23:36:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "90770c28-b009-4b71-ba46-77f6b397137e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T23:12:02.000Z" - }, - "end": { - "$date": "2021-02-24T23:13:47.000Z" - }, - "events": [ - { - "uuid": "3b86412c-8015-444d-bdc2-9f387392cc53", - "start": { - "$date": "2021-02-24T23:12:02.000Z" - }, - "end": { - "$date": "2021-02-24T23:13:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ca7e0b5-7b04-4faf-859d-ab46e0d77b39", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T23:14:12.000Z" - }, - "end": { - "$date": "2021-02-24T23:42:28.000Z" - }, - "events": [ - { - "uuid": "c01a715f-59d6-4c5f-8053-fe42f9e93a1c", - "start": { - "$date": "2021-02-24T23:14:12.000Z" - }, - "end": { - "$date": "2021-02-24T23:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ba72e95-4a09-4863-997b-93bbc3cf5de6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-24T23:40:28.000Z" - }, - "end": { - "$date": "2021-02-25T00:16:20.000Z" - }, - "events": [ - { - "uuid": "a051a088-feda-454a-869d-bdc0f9b75729", - "start": { - "$date": "2021-02-24T23:40:28.000Z" - }, - "end": { - "$date": "2021-02-25T00:16:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "92b3416e-21f1-4b5f-82ef-0c8b03282829", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-24T23:59:27.000Z" - }, - "end": { - "$date": "2021-02-25T03:20:29.000Z" - }, - "events": [ - { - "uuid": "a818ed51-ab22-4814-a910-7fa284bee4af", - "start": { - "$date": "2021-02-24T23:59:27.000Z" - }, - "end": { - "$date": "2021-02-25T00:17:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56eaca44-0087-4ae8-8677-3b78be961851", - "start": { - "$date": "2021-02-25T00:17:27.000Z" - }, - "end": { - "$date": "2021-02-25T01:34:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8be5486-3cd6-4241-8344-38de8883feb6", - "start": { - "$date": "2021-02-25T01:34:27.000Z" - }, - "end": { - "$date": "2021-02-25T02:48:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3590c5c9-89bc-4be5-bf7c-98dcc209cecc", - "start": { - "$date": "2021-02-25T02:48:27.000Z" - }, - "end": { - "$date": "2021-02-25T02:54:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92fa5c90-2540-4380-9c7f-57ede22e59a6", - "start": { - "$date": "2021-02-25T02:54:27.000Z" - }, - "end": { - "$date": "2021-02-25T03:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d9d9addf-c488-4153-b4fd-932d6cc40587", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-25T00:03:30.000Z" - }, - "end": { - "$date": "2021-02-25T00:05:20.000Z" - }, - "events": [ - { - "uuid": "4efdabc1-31a0-4486-b75d-a00394141ea0", - "start": { - "$date": "2021-02-25T00:03:30.000Z" - }, - "end": { - "$date": "2021-02-25T00:05:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "97ad4701-7ee0-4e15-9ef0-c95e12924da4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-25T01:07:42.000Z" - }, - "end": { - "$date": "2021-02-25T01:54:53.000Z" - }, - "events": [ - { - "uuid": "fcd89d65-1dea-4063-abe2-c329514caddd", - "start": { - "$date": "2021-02-25T01:07:42.000Z" - }, - "end": { - "$date": "2021-02-25T01:08:42.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "08ca7726-aea3-43a4-babf-06130b07dbd0", - "start": { - "$date": "2021-02-25T01:08:42.000Z" - }, - "end": { - "$date": "2021-02-25T01:54:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcc01007-3e4c-43f1-90a4-35f1a1347516", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T01:14:28.000Z" - }, - "end": { - "$date": "2021-02-25T01:43:11.000Z" - }, - "events": [ - { - "uuid": "3ec4083b-e1aa-4ca6-bc83-0ee4375a2884", - "start": { - "$date": "2021-02-25T01:14:28.000Z" - }, - "end": { - "$date": "2021-02-25T01:43:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3f459bef-d1e7-4435-bbd5-b6b33df1fb68", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-25T01:31:56.000Z" - }, - "end": { - "$date": "2021-02-25T01:47:31.000Z" - }, - "events": [ - { - "uuid": "0206b2bc-c1c0-401d-8c69-0ae109232a78", - "start": { - "$date": "2021-02-25T01:31:56.000Z" - }, - "end": { - "$date": "2021-02-25T01:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39f372d2-574c-4c3a-9507-449415c7bf26", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T01:44:32.000Z" - }, - "end": { - "$date": "2021-02-25T05:32:06.000Z" - }, - "events": [ - { - "uuid": "e29ba82e-71b1-4427-a874-9081a697bff0", - "start": { - "$date": "2021-02-25T01:44:32.000Z" - }, - "end": { - "$date": "2021-02-25T01:55:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a6d1cdf-7b2b-4432-996b-653fb68e360b", - "start": { - "$date": "2021-02-25T01:55:32.000Z" - }, - "end": { - "$date": "2021-02-25T01:58:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "005a950f-d77c-4c3a-9f2f-1ef423c03a69", - "start": { - "$date": "2021-02-25T01:58:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:00:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0776bac5-c0bf-4429-8af7-2288825ea926", - "start": { - "$date": "2021-02-25T02:00:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:04:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a04891ce-4afa-47ba-a32a-7430bba140e6", - "start": { - "$date": "2021-02-25T02:04:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:06:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67c69b62-b210-4eb8-8755-18af56246d7b", - "start": { - "$date": "2021-02-25T02:06:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:07:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "490947f7-69b9-4dd2-923d-d54c8b3f20dd", - "start": { - "$date": "2021-02-25T02:07:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:09:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "012d0347-d7db-448a-b244-47f4aed38871", - "start": { - "$date": "2021-02-25T02:09:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:10:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e43182f7-3ff5-4585-8c8b-d9baea32829c", - "start": { - "$date": "2021-02-25T02:10:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:21:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4499eeb-d11d-4324-a08c-e494f7ebe16f", - "start": { - "$date": "2021-02-25T02:21:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:40:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9fccee6-c3b3-4a08-8481-7eae3cb935f0", - "start": { - "$date": "2021-02-25T02:40:32.000Z" - }, - "end": { - "$date": "2021-02-25T02:43:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "79536ab1-107a-46cc-91a0-1b2b519acddb", - "start": { - "$date": "2021-02-25T02:43:32.000Z" - }, - "end": { - "$date": "2021-02-25T05:32:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b724ff25-f0f3-4b54-9286-da12d549b34a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-25T03:07:40.000Z" - }, - "end": { - "$date": "2021-02-25T07:17:09.000Z" - }, - "events": [ - { - "uuid": "27605b59-9311-4036-942f-c396065edc9f", - "start": { - "$date": "2021-02-25T03:07:40.000Z" - }, - "end": { - "$date": "2021-02-25T07:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "43683a50-4886-4e9c-bbc9-673a9003a795", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T03:20:45.000Z" - }, - "end": { - "$date": "2021-02-25T03:22:14.000Z" - }, - "events": [ - { - "uuid": "74b0d9db-c7c5-4415-9d7a-cc7d3c84b5ee", - "start": { - "$date": "2021-02-25T03:20:45.000Z" - }, - "end": { - "$date": "2021-02-25T03:22:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "75602a83-f141-4a10-8c02-59a83c8a50ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T03:24:10.000Z" - }, - "end": { - "$date": "2021-02-25T03:28:30.000Z" - }, - "events": [ - { - "uuid": "5c2c77b6-7743-4603-a2b2-497993a28e1b", - "start": { - "$date": "2021-02-25T03:24:10.000Z" - }, - "end": { - "$date": "2021-02-25T03:28:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "957621f2-d9cf-4a06-8617-2eec3a1fdfd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-25T03:26:19.000Z" - }, - "end": { - "$date": "2021-02-25T04:49:24.000Z" - }, - "events": [ - { - "uuid": "2e2c5f43-74da-4d6a-a276-c4d726597e76", - "start": { - "$date": "2021-02-25T03:26:19.000Z" - }, - "end": { - "$date": "2021-02-25T04:49:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9d4bec9c-8f70-48b3-9cb8-99a79d7eb58a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-25T03:46:10.000Z" - }, - "end": { - "$date": "2021-02-25T03:58:17.000Z" - }, - "events": [ - { - "uuid": "06907a61-a36d-4493-b9ee-140133055f11", - "start": { - "$date": "2021-02-25T03:46:10.000Z" - }, - "end": { - "$date": "2021-02-25T03:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9c7c88e6-92ef-4d30-acd4-e8c26be50990", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-25T04:09:11.000Z" - }, - "end": { - "$date": "2021-02-25T04:24:29.000Z" - }, - "events": [ - { - "uuid": "a5ff92e1-4cf0-4b01-b34c-cf0cd24aecd4", - "start": { - "$date": "2021-02-25T04:09:11.000Z" - }, - "end": { - "$date": "2021-02-25T04:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f21d82cd-fe4a-4c28-b3c6-9e3b3f6fda22", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-25T04:18:58.000Z" - }, - "end": { - "$date": "2021-02-25T04:22:24.000Z" - }, - "events": [ - { - "uuid": "a1b50558-ae0f-4f34-9590-9733c15a8875", - "start": { - "$date": "2021-02-25T04:18:58.000Z" - }, - "end": { - "$date": "2021-02-25T04:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47a95b4b-6f7a-4284-a848-9809b7516dd6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-25T04:23:09.000Z" - }, - "end": { - "$date": "2021-02-25T04:28:28.000Z" - }, - "events": [ - { - "uuid": "eea0eaa0-e837-45e5-a2a8-44a24dfca5ba", - "start": { - "$date": "2021-02-25T04:23:09.000Z" - }, - "end": { - "$date": "2021-02-25T04:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7d304caf-4b3b-49d7-b9bf-46a567567efb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-25T04:26:02.000Z" - }, - "end": { - "$date": "2021-02-25T04:56:06.000Z" - }, - "events": [ - { - "uuid": "2844eb30-8039-4921-9a1c-229bff0c0a41", - "start": { - "$date": "2021-02-25T04:26:02.000Z" - }, - "end": { - "$date": "2021-02-25T04:56:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8b0d0730-87a7-4a18-9b4c-859b2032c462", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T04:37:22.000Z" - }, - "end": { - "$date": "2021-02-25T04:39:01.000Z" - }, - "events": [ - { - "uuid": "7b597b05-2c82-4170-8130-82612dbaaa02", - "start": { - "$date": "2021-02-25T04:37:22.000Z" - }, - "end": { - "$date": "2021-02-25T04:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "03bb1661-b48e-465a-9ea4-957815792d88", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T04:39:12.000Z" - }, - "end": { - "$date": "2021-02-25T05:29:54.000Z" - }, - "events": [ - { - "uuid": "c75057c6-5a9f-4614-9100-2a940c6ee06a", - "start": { - "$date": "2021-02-25T04:39:12.000Z" - }, - "end": { - "$date": "2021-02-25T05:29:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "306a5f83-2ac7-4f22-ac1a-0688ec67c41b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-25T04:45:20.000Z" - }, - "end": { - "$date": "2021-02-25T05:25:43.000Z" - }, - "events": [ - { - "uuid": "48b7695b-d774-41a2-9cad-90be4c815fe0", - "start": { - "$date": "2021-02-25T04:45:20.000Z" - }, - "end": { - "$date": "2021-02-25T05:25:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fdeef980-26d5-46c0-8b67-8eb3670eaa69", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-25T04:57:44.000Z" - }, - "end": { - "$date": "2021-02-25T05:58:32.000Z" - }, - "events": [ - { - "uuid": "f471b0af-c967-4f7d-9c38-5764d83b4cc8", - "start": { - "$date": "2021-02-25T04:57:44.000Z" - }, - "end": { - "$date": "2021-02-25T05:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "dad94334-fcbe-4388-b5c6-91fe19a42789", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-25T05:27:07.000Z" - }, - "end": { - "$date": "2021-02-25T06:45:20.000Z" - }, - "events": [ - { - "uuid": "781dbff9-7c8f-4293-a3cf-1f28469a4c94", - "start": { - "$date": "2021-02-25T05:27:07.000Z" - }, - "end": { - "$date": "2021-02-25T06:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "6a375b9d-b880-4255-a301-2b01ff218ece", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T05:31:05.000Z" - }, - "end": { - "$date": "2021-02-25T05:53:20.000Z" - }, - "events": [ - { - "uuid": "8c02ef65-9be4-4056-a416-6dabab083651", - "start": { - "$date": "2021-02-25T05:31:05.000Z" - }, - "end": { - "$date": "2021-02-25T05:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "ff56a8ec-d6b6-4839-b5ab-d4b736b45648", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-25T05:34:50.000Z" - }, - "end": { - "$date": "2021-02-25T05:36:31.000Z" - }, - "events": [ - { - "uuid": "e95f9378-70db-4d0c-8faf-dda8b7803be3", - "start": { - "$date": "2021-02-25T05:34:50.000Z" - }, - "end": { - "$date": "2021-02-25T05:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4040cda4-aeed-4047-a494-b523b3f6ae3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-25T06:03:49.000Z" - }, - "end": { - "$date": "2021-02-25T08:16:35.000Z" - }, - "events": [ - { - "uuid": "2764b3c1-0f83-44be-9443-9e9f6bfaab1f", - "start": { - "$date": "2021-02-25T06:03:49.000Z" - }, - "end": { - "$date": "2021-02-25T08:16:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "94674b2d-a3c3-43a5-a821-1e73289ab162", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-25T06:05:51.000Z" - }, - "end": { - "$date": "2021-02-25T06:25:28.000Z" - }, - "events": [ - { - "uuid": "aa745502-dbc1-4ab8-b263-4da600be2726", - "start": { - "$date": "2021-02-25T06:05:51.000Z" - }, - "end": { - "$date": "2021-02-25T06:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "902e4976-f86c-43ec-b6ba-ff9d1a9f471c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-25T06:33:06.000Z" - }, - "end": { - "$date": "2021-02-25T06:57:17.000Z" - }, - "events": [ - { - "uuid": "e7457880-3416-488b-a83e-726532a48ed7", - "start": { - "$date": "2021-02-25T06:33:06.000Z" - }, - "end": { - "$date": "2021-02-25T06:57:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7c4bc9d9-2b9b-4163-b27b-d48bc93af721", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T06:26:41.000Z" - }, - "end": { - "$date": "2021-02-25T06:28:16.000Z" - }, - "events": [ - { - "uuid": "9b7c6643-e156-4709-bb61-5567c350bc08", - "start": { - "$date": "2021-02-25T06:26:41.000Z" - }, - "end": { - "$date": "2021-02-25T06:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b7cd1ff9-9be9-45bf-b885-49f8e235319a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-25T06:37:37.000Z" - }, - "end": { - "$date": "2021-02-25T07:04:09.000Z" - }, - "events": [ - { - "uuid": "eeebe378-a359-4165-997a-31124c1b4b6d", - "start": { - "$date": "2021-02-25T06:37:37.000Z" - }, - "end": { - "$date": "2021-02-25T07:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d66123cc-c3f0-4005-9223-db01bff6341f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-25T07:05:59.000Z" - }, - "end": { - "$date": "2021-02-25T07:22:19.000Z" - }, - "events": [ - { - "uuid": "d3049067-fc98-4d02-a343-e0f8edc576cc", - "start": { - "$date": "2021-02-25T07:05:59.000Z" - }, - "end": { - "$date": "2021-02-25T07:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "51eb2063-613e-4353-bafb-1cb60ed3ec98", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-25T07:07:48.000Z" - }, - "end": { - "$date": "2021-02-25T07:41:20.000Z" - }, - "events": [ - { - "uuid": "f079ed2a-ce1c-4013-91eb-e0aa88d87ce6", - "start": { - "$date": "2021-02-25T07:07:48.000Z" - }, - "end": { - "$date": "2021-02-25T07:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "db471649-b0c5-45ec-bc9f-6d2fb55690bc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-25T07:09:46.000Z" - }, - "end": { - "$date": "2021-02-25T09:29:13.000Z" - }, - "events": [ - { - "uuid": "a67281c5-8b05-4912-a8a1-7571330bc8bd", - "start": { - "$date": "2021-02-25T07:09:46.000Z" - }, - "end": { - "$date": "2021-02-25T09:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4062bb02-af1b-455e-9806-68f9b5c2b2c5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-25T07:41:19.000Z" - }, - "end": { - "$date": "2021-02-25T09:29:12.000Z" - }, - "events": [ - { - "uuid": "d78a743d-b849-4f9b-8360-76c2e9276194", - "start": { - "$date": "2021-02-25T07:41:19.000Z" - }, - "end": { - "$date": "2021-02-25T09:29:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "456adc4a-463d-46f3-8760-f1bb8206b79d", - "uuid": "0ddf6fa5-bf0b-484b-aa53-c6f5a4b6ad0d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T15:32:19.000Z" - }, - "end": { - "$date": "2021-02-25T15:35:09.000Z" - }, - "events": [ - { - "uuid": "f6b1c83b-72b1-4462-afb0-2707dc18bb6e", - "start": { - "$date": "2021-02-25T15:32:19.000Z" - }, - "end": { - "$date": "2021-02-25T15:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "884d4916-7882-4868-914d-17c3c3857f77", - "uuid": "5eab56f6-8aed-4792-b2e6-913ec49276fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T15:37:50.000Z" - }, - "end": { - "$date": "2021-02-25T18:03:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-25T15:37:50.000Z" - }, - "end": { - "$date": "2021-02-25T18:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d66ad385-827a-464c-82cc-e6e545d2b2b2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-25T17:18:33.000Z" - }, - "end": { - "$date": "2021-02-25T18:00:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-25T17:18:33.000Z" - }, - "end": { - "$date": "2021-02-25T18:00:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c55756-ae07-4771-86d2-bba19006baa0", - "uuid": "5f7a38ea-f3df-470a-99ce-9144cf6dd7ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T18:55:17.000Z" - }, - "end": { - "$date": "2021-02-25T19:01:38.000Z" - }, - "events": [ - { - "uuid": "b466742e-49d0-4f4b-8a82-0e1c7e6a7db7", - "start": { - "$date": "2021-02-25T18:55:17.000Z" - }, - "end": { - "$date": "2021-02-25T19:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "2f5b35d3-3736-424d-9399-e01e4fb1c1bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T19:01:48.000Z" - }, - "end": { - "$date": "2021-02-25T19:08:13.000Z" - }, - "events": [ - { - "uuid": "2cf1f96d-f35f-4b79-9f69-9d2cd7bf294a", - "start": { - "$date": "2021-02-25T19:01:48.000Z" - }, - "end": { - "$date": "2021-02-25T19:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b77fea8e-21e8-477f-84f8-ff57b3846acc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T19:15:20.000Z" - }, - "end": { - "$date": "2021-02-25T19:46:38.000Z" - }, - "events": [ - { - "uuid": "dcf023e7-be3f-4497-90f0-ca956141efa9", - "start": { - "$date": "2021-02-25T19:15:20.000Z" - }, - "end": { - "$date": "2021-02-25T19:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7fbd2435-fda8-4dd4-8d2f-68699131afac", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-25T19:13:20.000Z" - }, - "end": { - "$date": "2021-02-25T23:49:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-25T19:13:20.000Z" - }, - "end": { - "$date": "2021-02-25T23:49:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "168b7f55-dafd-48d5-97b0-9f65a2911352", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-25T19:43:59.000Z" - }, - "end": { - "$date": "2021-02-25T19:50:29.000Z" - }, - "events": [ - { - "uuid": "9fe60c40-883d-4f15-9b61-bfa5163e8969", - "start": { - "$date": "2021-02-25T19:43:59.000Z" - }, - "end": { - "$date": "2021-02-25T19:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "36f5a327-310a-47f8-8962-85478180e717", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-25T20:11:51.000Z" - }, - "end": { - "$date": "2021-02-25T21:02:33.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-25T20:11:51.000Z" - }, - "end": { - "$date": "2021-02-25T21:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7df716f1-df20-40c6-b397-c8fb8cbea97c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-25T20:13:12.000Z" - }, - "end": { - "$date": "2021-02-25T20:49:23.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-25T20:13:12.000Z" - }, - "end": { - "$date": "2021-02-25T20:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "884d4916-7882-4868-914d-17c3c3857f77", - "uuid": "4d357769-8250-43fd-962a-ed85b1e2af27", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T20:21:33.000Z" - }, - "end": { - "$date": "2021-02-25T21:16:38.000Z" - }, - "events": [ - { - "uuid": "121ab206-ffe8-4b0c-961b-6d3a5c1a8d43", - "start": { - "$date": "2021-02-25T20:21:33.000Z" - }, - "end": { - "$date": "2021-02-25T21:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f713ead-72e8-41c7-a9f1-7328aafcd5ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-25T20:53:54.000Z" - }, - "end": { - "$date": "2021-02-25T21:15:44.000Z" - }, - "events": [ - { - "uuid": "7a03507f-5ece-4883-923d-235aec9b62d1", - "start": { - "$date": "2021-02-25T20:53:54.000Z" - }, - "end": { - "$date": "2021-02-25T21:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c750415d-b2ad-4a40-9def-3be1a03d271b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-25T20:58:12.000Z" - }, - "end": { - "$date": "2021-02-25T22:25:06.000Z" - }, - "events": [ - { - "uuid": "2c3cb961-0e11-4141-822e-550e7af057da", - "start": { - "$date": "2021-02-25T20:58:12.000Z" - }, - "end": { - "$date": "2021-02-25T21:22:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e95721d0-49d8-4194-bf32-34e2a5393d39", - "start": { - "$date": "2021-02-25T21:22:12.000Z" - }, - "end": { - "$date": "2021-02-25T21:38:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e4d6fe7-6962-4fca-8f4a-ff1e8419d215", - "start": { - "$date": "2021-02-25T21:38:12.000Z" - }, - "end": { - "$date": "2021-02-25T22:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e31b0521-b01e-429d-9f2c-d9281a7656d1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-25T21:11:54.000Z" - }, - "end": { - "$date": "2021-02-25T21:12:56.000Z" - }, - "events": [ - { - "uuid": "416802c0-c73f-48fb-bd10-87ca2f058bb3", - "start": { - "$date": "2021-02-25T21:11:54.000Z" - }, - "end": { - "$date": "2021-02-25T21:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "456adc4a-463d-46f3-8760-f1bb8206b79d", - "uuid": "3f474d02-c0f6-4868-97ae-a562edfa3df1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-25T21:18:18.000Z" - }, - "end": { - "$date": "2021-02-25T22:54:37.000Z" - }, - "events": [ - { - "uuid": "bb0e2ecb-ea17-44e1-ba17-57bcf6d9548f", - "start": { - "$date": "2021-02-25T21:18:18.000Z" - }, - "end": { - "$date": "2021-02-25T22:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3793ff1c-602e-4877-b5f8-fbe5aa49147d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-25T21:19:49.000Z" - }, - "end": { - "$date": "2021-02-25T22:09:22.000Z" - }, - "events": [ - { - "uuid": "85113b39-7203-48b7-babc-53d4ae520c72", - "start": { - "$date": "2021-02-25T21:19:49.000Z" - }, - "end": { - "$date": "2021-02-25T22:09:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "31d8172d-d7ee-47ef-b6dd-63dd413ee898", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-25T22:01:49.000Z" - }, - "end": { - "$date": "2021-02-25T22:13:14.000Z" - }, - "events": [ - { - "uuid": "e17f3fff-4d0b-4ca8-945b-adacda4a94ba", - "start": { - "$date": "2021-02-25T22:01:49.000Z" - }, - "end": { - "$date": "2021-02-25T22:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5161d723-87be-4ea2-a500-23988bca3629", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-25T22:13:55.000Z" - }, - "end": { - "$date": "2021-02-26T01:03:53.000Z" - }, - "events": [ - { - "uuid": "446c22ce-b552-4af9-883e-6126505d25c4", - "start": { - "$date": "2021-02-25T22:13:55.000Z" - }, - "end": { - "$date": "2021-02-26T01:03:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fe4952c0-4fa5-4ec6-8be1-318a553086d5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T00:07:58.000Z" - }, - "end": { - "$date": "2021-02-26T00:43:18.000Z" - }, - "events": [ - { - "uuid": "08caa45b-fd75-4a95-9ef5-b1742b7b339f", - "start": { - "$date": "2021-02-26T00:07:58.000Z" - }, - "end": { - "$date": "2021-02-26T00:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "0e16bbe8-6881-45eb-8cce-9554492aed6f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T00:19:30.000Z" - }, - "end": { - "$date": "2021-02-26T00:57:50.000Z" - }, - "events": [ - { - "uuid": "7db765f3-098e-4935-9efa-bf75bc50082c", - "start": { - "$date": "2021-02-26T00:19:30.000Z" - }, - "end": { - "$date": "2021-02-26T00:57:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "32cfee3e-f717-40dd-bf85-510ad08413a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-26T00:24:36.000Z" - }, - "end": { - "$date": "2021-02-26T00:39:47.000Z" - }, - "events": [ - { - "uuid": "518b2ad9-687b-4264-97bc-9d7d99d0828b", - "start": { - "$date": "2021-02-26T00:24:36.000Z" - }, - "end": { - "$date": "2021-02-26T00:39:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "2313907c-3c63-45c3-ab60-ffaafc88302c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T00:48:29.000Z" - }, - "end": { - "$date": "2021-02-26T01:36:42.000Z" - }, - "events": [ - { - "uuid": "73bc22fa-07ae-424b-9396-90ef44bd03ad", - "start": { - "$date": "2021-02-26T00:48:29.000Z" - }, - "end": { - "$date": "2021-02-26T01:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "670595e0-2937-4563-b1e8-8c409a0e5e59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-26T01:01:32.000Z" - }, - "end": { - "$date": "2021-02-26T03:42:50.000Z" - }, - "events": [ - { - "uuid": "d5712116-01f2-4975-b575-8bc26893d2a7", - "start": { - "$date": "2021-02-26T01:01:32.000Z" - }, - "end": { - "$date": "2021-02-26T03:42:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "80653de0-af3c-4a27-afb1-dec0b3eff45f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T01:26:16.000Z" - }, - "end": { - "$date": "2021-02-26T02:46:33.000Z" - }, - "events": [ - { - "uuid": "39740f29-863d-40cf-891b-bdf3253a4cf6", - "start": { - "$date": "2021-02-26T01:26:16.000Z" - }, - "end": { - "$date": "2021-02-26T02:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f613cfea-0de0-488a-a3ef-65c486014885", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T01:31:54.000Z" - }, - "end": { - "$date": "2021-02-26T01:33:06.000Z" - }, - "events": [ - { - "uuid": "5e8db612-ab26-4ea7-a832-6ebc9d650a6b", - "start": { - "$date": "2021-02-26T01:31:54.000Z" - }, - "end": { - "$date": "2021-02-26T01:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "86530125-d8d9-4f71-8081-fa7cc9f0350f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-26T01:32:40.000Z" - }, - "end": { - "$date": "2021-02-26T03:35:23.000Z" - }, - "events": [ - { - "uuid": "078946e9-0d87-4715-bb32-47dd921ceeab", - "start": { - "$date": "2021-02-26T01:32:40.000Z" - }, - "end": { - "$date": "2021-02-26T03:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f940f98e-35d8-4881-b0d3-ffe2a2948b91", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T01:35:44.000Z" - }, - "end": { - "$date": "2021-02-26T01:44:21.000Z" - }, - "events": [ - { - "uuid": "1b8b34a4-b3d4-4b81-85cc-877ed9f05228", - "start": { - "$date": "2021-02-26T01:35:44.000Z" - }, - "end": { - "$date": "2021-02-26T01:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "16e3d1e9-778b-4bb3-8a79-3c1b8faaade3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-26T01:35:44.000Z" - }, - "end": { - "$date": "2021-02-26T06:54:20.000Z" - }, - "events": [ - { - "uuid": "1f765472-ad7b-4b50-9acc-631a5a77709e", - "start": { - "$date": "2021-02-26T01:35:44.000Z" - }, - "end": { - "$date": "2021-02-26T06:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "9f704a2a-9d7f-4501-9119-f948a67f1b7e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T01:40:28.000Z" - }, - "end": { - "$date": "2021-02-26T01:47:43.000Z" - }, - "events": [ - { - "uuid": "95fa2815-5532-4ad3-837d-9e1b2cdd8e16", - "start": { - "$date": "2021-02-26T01:40:28.000Z" - }, - "end": { - "$date": "2021-02-26T01:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "5ac69585-c7b9-4eff-ae84-cab951da5419", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T01:49:45.000Z" - }, - "end": { - "$date": "2021-02-26T03:56:47.000Z" - }, - "events": [ - { - "uuid": "3646761b-fbc9-4cd6-b332-f6bab411c65a", - "start": { - "$date": "2021-02-26T01:49:45.000Z" - }, - "end": { - "$date": "2021-02-26T03:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0b732836-7bf2-4ce7-87ca-0da507141383", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T02:04:58.000Z" - }, - "end": { - "$date": "2021-02-26T02:06:53.000Z" - }, - "events": [ - { - "uuid": "0572e161-ac8a-49ca-84a8-e673a7aa9593", - "start": { - "$date": "2021-02-26T02:04:58.000Z" - }, - "end": { - "$date": "2021-02-26T02:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a1bd5664-5a93-4c93-84e6-d583dad3186b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T02:10:28.000Z" - }, - "end": { - "$date": "2021-02-26T02:51:24.000Z" - }, - "events": [ - { - "uuid": "3a45bff8-6650-4940-93ca-f9ed3919af08", - "start": { - "$date": "2021-02-26T02:10:28.000Z" - }, - "end": { - "$date": "2021-02-26T02:51:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1a0088b1-47d5-46d9-81f3-de7b5e8da3ee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-26T02:33:47.000Z" - }, - "end": { - "$date": "2021-02-26T03:01:15.000Z" - }, - "events": [ - { - "uuid": "5ab80606-4416-47fa-9a18-c02c025b042f", - "start": { - "$date": "2021-02-26T02:33:47.000Z" - }, - "end": { - "$date": "2021-02-26T03:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "893a5ea8-1346-4c16-923d-7d7264b31656", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-26T03:01:55.000Z" - }, - "end": { - "$date": "2021-02-26T03:23:38.000Z" - }, - "events": [ - { - "uuid": "1dbd907f-74aa-48d6-b36c-93c404150947", - "start": { - "$date": "2021-02-26T03:01:55.000Z" - }, - "end": { - "$date": "2021-02-26T03:23:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7119653d-42ce-4f5b-ab34-e957caee0230", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-26T02:37:45.000Z" - }, - "end": { - "$date": "2021-02-26T07:09:04.000Z" - }, - "events": [ - { - "uuid": "6cfab852-a006-4319-bfc8-aede506b15ff", - "start": { - "$date": "2021-02-26T02:37:45.000Z" - }, - "end": { - "$date": "2021-02-26T07:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f0ff0d82-40e8-4898-84f8-266e8a2b5453", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-26T03:25:52.000Z" - }, - "end": { - "$date": "2021-02-26T03:56:49.000Z" - }, - "events": [ - { - "uuid": "f2a1b813-4d35-4585-849a-53b06c2bbcb8", - "start": { - "$date": "2021-02-26T03:25:52.000Z" - }, - "end": { - "$date": "2021-02-26T03:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "b6575e27-4ace-4499-a6d7-b946518a5ccb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-26T03:56:58.000Z" - }, - "end": { - "$date": "2021-02-26T04:27:40.000Z" - }, - "events": [ - { - "uuid": "f1ba72e9-64e2-4171-86de-c3e9f9801fc9", - "start": { - "$date": "2021-02-26T03:56:58.000Z" - }, - "end": { - "$date": "2021-02-26T04:27:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd6811af-0c2a-4c3c-87be-50c338d0814f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-26T03:59:22.000Z" - }, - "end": { - "$date": "2021-02-26T04:03:43.000Z" - }, - "events": [ - { - "uuid": "7b603561-549d-4469-bb58-b9bc20e9ed07", - "start": { - "$date": "2021-02-26T03:59:22.000Z" - }, - "end": { - "$date": "2021-02-26T04:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "884d4916-7882-4868-914d-17c3c3857f77", - "uuid": "4d3ca658-a5d2-490a-9f32-ea2f950923ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-26T04:04:26.000Z" - }, - "end": { - "$date": "2021-02-26T04:17:00.000Z" - }, - "events": [ - { - "uuid": "934809db-946e-4e0b-af38-0d2c46647804", - "start": { - "$date": "2021-02-26T04:04:26.000Z" - }, - "end": { - "$date": "2021-02-26T04:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "6e9be6f0-f5ea-4479-a640-f86eb7ad5654", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T04:10:49.000Z" - }, - "end": { - "$date": "2021-02-26T04:19:20.000Z" - }, - "events": [ - { - "uuid": "9eb57321-ba6e-4209-8e1d-5cd5bf42e23e", - "start": { - "$date": "2021-02-26T04:10:49.000Z" - }, - "end": { - "$date": "2021-02-26T04:19:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f48a06da-008a-45d7-a482-59f49c40f5aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T04:15:54.000Z" - }, - "end": { - "$date": "2021-02-26T04:35:14.000Z" - }, - "events": [ - { - "uuid": "daba561a-6bf1-4bcf-b23d-1f5e723cc18f", - "start": { - "$date": "2021-02-26T04:15:54.000Z" - }, - "end": { - "$date": "2021-02-26T04:35:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e78b93ca-516e-451b-8e7f-e55f9ea8fd76", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T04:17:47.000Z" - }, - "end": { - "$date": "2021-02-26T04:19:31.000Z" - }, - "events": [ - { - "uuid": "a62eef32-5753-454a-8033-afc0085ef481", - "start": { - "$date": "2021-02-26T04:17:47.000Z" - }, - "end": { - "$date": "2021-02-26T04:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c3177441-5b25-4fbe-9dbd-819d00a99424", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T04:19:47.000Z" - }, - "end": { - "$date": "2021-02-26T04:35:12.000Z" - }, - "events": [ - { - "uuid": "ef27485a-68a4-4b9a-9517-9523d4312155", - "start": { - "$date": "2021-02-26T04:19:47.000Z" - }, - "end": { - "$date": "2021-02-26T04:35:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cce20b2c-585e-42c6-b2db-4178fcb23e5b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-26T04:26:17.000Z" - }, - "end": { - "$date": "2021-02-26T05:02:32.000Z" - }, - "events": [ - { - "uuid": "ee07495f-008e-4341-b4be-7028984b3a2e", - "start": { - "$date": "2021-02-26T04:26:17.000Z" - }, - "end": { - "$date": "2021-02-26T05:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "da168226-1ab5-43b8-85b0-78ac31ff3899", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-26T04:26:58.000Z" - }, - "end": { - "$date": "2021-02-26T05:04:13.000Z" - }, - "events": [ - { - "uuid": "519a0a74-2c0b-47e5-9210-3f997ab829d8", - "start": { - "$date": "2021-02-26T04:26:58.000Z" - }, - "end": { - "$date": "2021-02-26T05:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d6d1a260-26ca-4eeb-ac91-934ed57ca2fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-26T04:27:53.000Z" - }, - "end": { - "$date": "2021-02-26T07:09:18.000Z" - }, - "events": [ - { - "uuid": "58c83cbf-f500-4b19-bd38-72510a2e6700", - "start": { - "$date": "2021-02-26T04:27:53.000Z" - }, - "end": { - "$date": "2021-02-26T07:09:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9565fddf-5c13-4e35-b165-0ed027ea35fe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-26T04:27:59.000Z" - }, - "end": { - "$date": "2021-02-26T05:04:00.000Z" - }, - "events": [ - { - "uuid": "0812bc3a-bebd-4f29-918b-eeff10e09b54", - "start": { - "$date": "2021-02-26T04:27:59.000Z" - }, - "end": { - "$date": "2021-02-26T05:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b598ead9-8d90-451d-ac75-fb2128781f0c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T04:35:40.000Z" - }, - "end": { - "$date": "2021-02-26T05:06:40.000Z" - }, - "events": [ - { - "uuid": "c285c607-0b8f-4584-b17d-2adc78a6e313", - "start": { - "$date": "2021-02-26T04:35:40.000Z" - }, - "end": { - "$date": "2021-02-26T05:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "995da860-2f76-40d8-ae71-bad4fdd08f9d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T04:35:58.000Z" - }, - "end": { - "$date": "2021-02-26T05:07:28.000Z" - }, - "events": [ - { - "uuid": "801967e7-6940-474b-9c48-a6694b5435e5", - "start": { - "$date": "2021-02-26T04:35:58.000Z" - }, - "end": { - "$date": "2021-02-26T05:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "3f91af3f-dc4e-445f-be40-4c445df92968", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T04:49:45.000Z" - }, - "end": { - "$date": "2021-02-26T04:55:35.000Z" - }, - "events": [ - { - "uuid": "e464c811-560f-460d-b9f5-282961eada49", - "start": { - "$date": "2021-02-26T04:49:45.000Z" - }, - "end": { - "$date": "2021-02-26T04:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f8ceee51-738c-443a-9cd0-39d87e199c66", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T04:52:51.000Z" - }, - "end": { - "$date": "2021-02-26T04:55:40.000Z" - }, - "events": [ - { - "uuid": "6f2c370d-831b-4c4c-bb44-1494e1e7aec5", - "start": { - "$date": "2021-02-26T04:52:51.000Z" - }, - "end": { - "$date": "2021-02-26T04:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ac210739-c881-4496-b6ca-8216d5e0d642", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-26T04:55:45.000Z" - }, - "end": { - "$date": "2021-02-26T06:49:32.000Z" - }, - "events": [ - { - "uuid": "24a28fd1-9e93-4681-85c4-106de907dbc7", - "start": { - "$date": "2021-02-26T04:55:45.000Z" - }, - "end": { - "$date": "2021-02-26T06:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4b09bacc-603c-456e-97d6-2bdfa84c7362", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T04:55:46.000Z" - }, - "end": { - "$date": "2021-02-26T05:04:51.000Z" - }, - "events": [ - { - "uuid": "ca396f90-a35a-455e-8d87-78b1b6326783", - "start": { - "$date": "2021-02-26T04:55:46.000Z" - }, - "end": { - "$date": "2021-02-26T05:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95e2f281-12bc-47d1-b613-21a2c7f4b1f2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-26T04:58:38.000Z" - }, - "end": { - "$date": "2021-02-26T05:15:34.000Z" - }, - "events": [ - { - "uuid": "0f6ca66c-b276-4e27-9e2c-fe0abc6ff3d4", - "start": { - "$date": "2021-02-26T04:58:38.000Z" - }, - "end": { - "$date": "2021-02-26T05:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "287ec196-bb05-4894-9209-05a805a3ff66", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T05:11:43.000Z" - }, - "end": { - "$date": "2021-02-26T05:13:20.000Z" - }, - "events": [ - { - "uuid": "f0079a49-ce1b-4809-908a-09e8872dae1d", - "start": { - "$date": "2021-02-26T05:11:43.000Z" - }, - "end": { - "$date": "2021-02-26T05:13:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "778ea7a5-adbf-4a00-9ba9-edf567407853", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T05:13:49.000Z" - }, - "end": { - "$date": "2021-02-26T05:15:00.000Z" - }, - "events": [ - { - "uuid": "e09f1e89-265e-48d9-ac2c-d53dc0ea5c83", - "start": { - "$date": "2021-02-26T05:13:49.000Z" - }, - "end": { - "$date": "2021-02-26T05:15:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c93035d6-ec7e-4167-aac6-a8e528f760d4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T05:15:29.000Z" - }, - "end": { - "$date": "2021-02-26T07:00:12.000Z" - }, - "events": [ - { - "uuid": "a16bc185-098d-4684-be1f-7dc94ee78c37", - "start": { - "$date": "2021-02-26T05:15:29.000Z" - }, - "end": { - "$date": "2021-02-26T07:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1db8ac39-86b3-4dcf-9827-ac6ad0c22618", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-26T05:17:23.000Z" - }, - "end": { - "$date": "2021-02-26T05:34:28.000Z" - }, - "events": [ - { - "uuid": "550b9e1d-d41f-4957-aac5-5b760e6c787b", - "start": { - "$date": "2021-02-26T05:17:23.000Z" - }, - "end": { - "$date": "2021-02-26T05:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ccf5a79-0de9-43df-aaa8-a5a60e98096e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-26T05:37:24.000Z" - }, - "end": { - "$date": "2021-02-26T05:57:15.000Z" - }, - "events": [ - { - "uuid": "51198b05-33bc-4820-9cfc-bf5b94ac4ba7", - "start": { - "$date": "2021-02-26T05:37:24.000Z" - }, - "end": { - "$date": "2021-02-26T05:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "74235cfb-fd8a-4457-8b9b-a39d4e7c84cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T05:39:36.000Z" - }, - "end": { - "$date": "2021-02-26T06:18:38.000Z" - }, - "events": [ - { - "uuid": "9ba8fc3c-8442-48d8-ac3b-3ae531a39045", - "start": { - "$date": "2021-02-26T05:39:36.000Z" - }, - "end": { - "$date": "2021-02-26T06:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "61777614-79c2-467b-8fbe-a31f72a9fef4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-26T05:54:42.000Z" - }, - "end": { - "$date": "2021-02-26T07:08:32.000Z" - }, - "events": [ - { - "uuid": "7e517374-6403-44bd-97d6-5d5df621e1ec", - "start": { - "$date": "2021-02-26T05:54:42.000Z" - }, - "end": { - "$date": "2021-02-26T07:08:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07c1c757-d21e-4443-9239-7aab5fced3c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-26T06:00:24.000Z" - }, - "end": { - "$date": "2021-02-26T06:24:03.000Z" - }, - "events": [ - { - "uuid": "b05b7d8b-9e6b-454a-b3f7-c953aaf55c3b", - "start": { - "$date": "2021-02-26T06:00:24.000Z" - }, - "end": { - "$date": "2021-02-26T06:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "884d4916-7882-4868-914d-17c3c3857f77", - "uuid": "24ed1d75-eb4e-4ad8-abfc-30c4f22f4e83", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-26T06:08:29.000Z" - }, - "end": { - "$date": "2021-02-26T07:01:35.000Z" - }, - "events": [ - { - "uuid": "9987ff72-b1eb-4f31-8f7c-3fda847b1711", - "start": { - "$date": "2021-02-26T06:08:29.000Z" - }, - "end": { - "$date": "2021-02-26T06:45:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6b045b6f-d3b4-4eda-9fb1-1a597c2f095b", - "start": { - "$date": "2021-02-26T06:45:29.000Z" - }, - "end": { - "$date": "2021-02-26T07:00:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e4d73b1-b676-4104-a077-cad53d825773", - "start": { - "$date": "2021-02-26T07:00:29.000Z" - }, - "end": { - "$date": "2021-02-26T07:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11549239-fad0-422f-b4f9-7fa001b8847f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-26T06:26:30.000Z" - }, - "end": { - "$date": "2021-02-26T06:47:08.000Z" - }, - "events": [ - { - "uuid": "4bb76a8b-0a3c-41cf-809d-34cecc9e9cdf", - "start": { - "$date": "2021-02-26T06:26:30.000Z" - }, - "end": { - "$date": "2021-02-26T06:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e05e8f5-9756-49e1-aaa9-e1f305559a62", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-26T06:52:26.000Z" - }, - "end": { - "$date": "2021-02-26T07:06:27.000Z" - }, - "events": [ - { - "uuid": "defb147f-a3e8-420e-84b7-4b29235d4b29", - "start": { - "$date": "2021-02-26T06:52:26.000Z" - }, - "end": { - "$date": "2021-02-26T07:06:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a6b31a28-2d01-4ac0-9af2-d38d350c314e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T07:05:23.000Z" - }, - "end": { - "$date": "2021-02-26T07:28:01.000Z" - }, - "events": [ - { - "uuid": "e8e92f07-ff3f-4d5f-85c7-be53982c0db5", - "start": { - "$date": "2021-02-26T07:05:23.000Z" - }, - "end": { - "$date": "2021-02-26T07:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "3562f7c1-2872-4cd6-88dd-886915f12405", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-26T07:09:35.000Z" - }, - "end": { - "$date": "2021-02-26T07:52:01.000Z" - }, - "events": [ - { - "uuid": "fee944c7-7262-4216-8c5e-9e535de92010", - "start": { - "$date": "2021-02-26T07:09:35.000Z" - }, - "end": { - "$date": "2021-02-26T07:52:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "952b0434-93cf-4036-a232-00457c41c0f1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-26T07:13:23.000Z" - }, - "end": { - "$date": "2021-02-26T08:02:39.000Z" - }, - "events": [ - { - "uuid": "ad5ace02-62f1-4ec4-99b4-49cb917ede58", - "start": { - "$date": "2021-02-26T07:13:23.000Z" - }, - "end": { - "$date": "2021-02-26T08:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "0ef32849-e78a-4060-bb93-c0d42899bd2a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-26T07:14:15.000Z" - }, - "end": { - "$date": "2021-02-26T08:00:54.000Z" - }, - "events": [ - { - "uuid": "33d2d6b6-be47-446c-8e89-5c29f19ccce5", - "start": { - "$date": "2021-02-26T07:14:15.000Z" - }, - "end": { - "$date": "2021-02-26T08:00:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e0415896-f164-47a9-b9b1-f5a99686aaa2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T07:18:49.000Z" - }, - "end": { - "$date": "2021-02-26T08:01:44.000Z" - }, - "events": [ - { - "uuid": "55d07c76-5fae-4505-b7cb-de9a28f2519b", - "start": { - "$date": "2021-02-26T07:18:49.000Z" - }, - "end": { - "$date": "2021-02-26T08:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c0e18c1d-27d6-4f41-92d4-0035773c0b52", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T08:01:54.000Z" - }, - "end": { - "$date": "2021-02-26T08:02:59.000Z" - }, - "events": [ - { - "uuid": "d7c01b84-e4b1-4187-8cf9-29a1bb9e787b", - "start": { - "$date": "2021-02-26T08:01:54.000Z" - }, - "end": { - "$date": "2021-02-26T08:02:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c0ca3212-de98-46ba-869d-adfbe9ddd928", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-26T08:03:04.000Z" - }, - "end": { - "$date": "2021-02-26T08:31:40.000Z" - }, - "events": [ - { - "uuid": "f1bcaf4f-a571-4afe-96be-fb073f0e35a6", - "start": { - "$date": "2021-02-26T08:03:04.000Z" - }, - "end": { - "$date": "2021-02-26T08:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7c79fd07-0792-4d2c-b087-7f592346855c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T08:07:50.000Z" - }, - "end": { - "$date": "2021-02-26T08:32:30.000Z" - }, - "events": [ - { - "uuid": "90343db9-569c-4430-84bd-b7006f0ffcdf", - "start": { - "$date": "2021-02-26T08:07:50.000Z" - }, - "end": { - "$date": "2021-02-26T08:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fb52fca4-6b90-4022-b116-baaeb9a1e670", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T15:00:21.000Z" - }, - "end": { - "$date": "2021-02-26T15:57:12.000Z" - }, - "events": [ - { - "uuid": "c4307eee-73cd-42c7-a44a-b6252cea06c5", - "start": { - "$date": "2021-02-26T15:00:21.000Z" - }, - "end": { - "$date": "2021-02-26T15:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "13ab029c-c82c-4e79-be41-e71033b8ff37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-26T16:36:22.000Z" - }, - "end": { - "$date": "2021-02-26T16:56:20.000Z" - }, - "events": [ - { - "uuid": "a2238445-0e94-42b0-b093-ee93ed3755d0", - "start": { - "$date": "2021-02-26T16:36:22.000Z" - }, - "end": { - "$date": "2021-02-26T16:56:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7ee42f44-611f-4906-9e84-04d772c19a2a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T16:54:54.000Z" - }, - "end": { - "$date": "2021-02-26T18:50:16.000Z" - }, - "events": [ - { - "uuid": "cf6c04f2-09a8-4d00-a8bc-c1681a114dd9", - "start": { - "$date": "2021-02-26T16:54:54.000Z" - }, - "end": { - "$date": "2021-02-26T18:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "80d6422f-e8af-4a9e-9617-c8439d02c4f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-26T16:57:28.000Z" - }, - "end": { - "$date": "2021-02-26T18:48:48.000Z" - }, - "events": [ - { - "uuid": "92b11c0a-2809-41f3-918e-9455e291b540", - "start": { - "$date": "2021-02-26T16:57:28.000Z" - }, - "end": { - "$date": "2021-02-26T18:48:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ed8e32b-ed57-4703-85d0-acbcbeb6a576", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-26T19:11:40.000Z" - }, - "end": { - "$date": "2021-02-26T19:43:37.000Z" - }, - "events": [ - { - "uuid": "f76a4e82-bb59-47cf-970b-e42c55a126c6", - "start": { - "$date": "2021-02-26T19:11:40.000Z" - }, - "end": { - "$date": "2021-02-26T19:28:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82ab4f1d-9e61-47f5-923c-6723220683dc", - "start": { - "$date": "2021-02-26T19:28:40.000Z" - }, - "end": { - "$date": "2021-02-26T19:45:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "147499a9-d36b-4d72-9903-65732f16433b", - "start": { - "$date": "2021-02-26T19:45:40.000Z" - }, - "end": { - "$date": "2021-02-26T19:47:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d354210d-09b9-464f-994b-7ac1bc95845f", - "start": { - "$date": "2021-02-26T19:47:40.000Z" - }, - "end": { - "$date": "2021-02-26T20:22:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64b90477-dbc8-46e5-8022-b104d4a4fbe1", - "start": { - "$date": "2021-02-26T20:22:40.000Z" - }, - "end": { - "$date": "2021-02-26T19:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "db18ad78-7432-4833-a544-a62ad8cf5b96", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-26T18:36:47.000Z" - }, - "end": { - "$date": "2021-02-26T18:55:09.000Z" - }, - "events": [ - { - "uuid": "e1aa1f71-f385-4cd3-bf6c-0b968f8120f7", - "start": { - "$date": "2021-02-26T18:36:47.000Z" - }, - "end": { - "$date": "2021-02-26T18:52:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e151416-1c73-4004-9b3c-4bf70d5f1ab9", - "start": { - "$date": "2021-02-26T18:52:47.000Z" - }, - "end": { - "$date": "2021-02-26T18:55:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "b1258c1f-4238-4e93-bfbe-73747709b8b1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-26T18:46:19.000Z" - }, - "end": { - "$date": "2021-02-26T22:43:12.000Z" - }, - "events": [ - { - "uuid": "440670ec-4f37-4286-8558-f78dd460d4f4", - "start": { - "$date": "2021-02-26T18:46:19.000Z" - }, - "end": { - "$date": "2021-02-26T22:43:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b2ad34c5-5784-476a-8975-aa3158adda80", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-26T22:10:52.000Z" - }, - "end": { - "$date": "2021-02-27T02:23:00.000Z" - }, - "events": [ - { - "uuid": "870641a6-f775-45fd-8cbb-49118d51e414", - "start": { - "$date": "2021-02-26T22:10:52.000Z" - }, - "end": { - "$date": "2021-02-27T00:37:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bf4710ab-e044-422e-bb31-8de09bd54b81", - "start": { - "$date": "2021-02-27T00:37:52.000Z" - }, - "end": { - "$date": "2021-02-27T00:49:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80f22399-5fd4-4021-85e4-71243a716a11", - "start": { - "$date": "2021-02-27T00:49:52.000Z" - }, - "end": { - "$date": "2021-02-27T03:13:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "debffadb-0136-4bc2-8463-439c1d3bf73c", - "start": { - "$date": "2021-02-27T03:13:52.000Z" - }, - "end": { - "$date": "2021-02-27T03:18:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74b892eb-e5f1-4f18-9d1b-82b1c9fc9b4f", - "start": { - "$date": "2021-02-27T03:18:52.000Z" - }, - "end": { - "$date": "2021-02-27T03:28:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58db043b-8720-44ac-a637-582585d5f351", - "start": { - "$date": "2021-02-27T03:28:52.000Z" - }, - "end": { - "$date": "2021-02-27T05:11:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8cf1ab1-8c05-40d0-a5d0-7d69a85186da", - "start": { - "$date": "2021-02-27T05:11:52.000Z" - }, - "end": { - "$date": "2021-02-27T05:21:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97493363-881f-489e-9ce6-43250fae7ec7", - "start": { - "$date": "2021-02-27T05:21:52.000Z" - }, - "end": { - "$date": "2021-02-27T05:33:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69d7bf0f-40f2-4897-9823-08bef3d92f6a", - "start": { - "$date": "2021-02-27T05:33:52.000Z" - }, - "end": { - "$date": "2021-02-27T02:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e0406882-f7a8-4b42-b9da-8d658ede6d38", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-26T19:44:02.000Z" - }, - "end": { - "$date": "2021-02-26T20:50:11.000Z" - }, - "events": [ - { - "uuid": "d601eafa-0aa2-41a1-9c22-b94e5b51dbe2", - "start": { - "$date": "2021-02-26T19:44:02.000Z" - }, - "end": { - "$date": "2021-02-26T20:50:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0e0aacae-7910-497c-96b2-d6ffe9bb6e7d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T20:46:59.000Z" - }, - "end": { - "$date": "2021-02-26T21:40:45.000Z" - }, - "events": [ - { - "uuid": "5c5971f1-48a7-4ca4-ae74-a03ca7a283d6", - "start": { - "$date": "2021-02-26T20:46:59.000Z" - }, - "end": { - "$date": "2021-02-26T21:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f15b2555-5625-41ee-abfe-d06cd9f509e2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-26T20:46:48.000Z" - }, - "end": { - "$date": "2021-02-26T21:32:03.000Z" - }, - "events": [ - { - "uuid": "8118efbb-d5a8-4073-a907-c1944e907a4d", - "start": { - "$date": "2021-02-26T20:46:48.000Z" - }, - "end": { - "$date": "2021-02-26T21:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c7b0e49-94ba-4cff-a15a-7ebb8ff476ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-26T20:51:20.000Z" - }, - "end": { - "$date": "2021-02-26T21:25:49.000Z" - }, - "events": [ - { - "uuid": "427cf505-0619-46fd-b97a-00f2b59ba216", - "start": { - "$date": "2021-02-26T20:51:20.000Z" - }, - "end": { - "$date": "2021-02-26T21:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "c2fbdee2-ea63-48c0-81e7-3d30626620bf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-26T21:23:23.000Z" - }, - "end": { - "$date": "2021-02-26T22:35:39.000Z" - }, - "events": [ - { - "uuid": "88dc7c20-4091-4042-acc2-fffbc023360a", - "start": { - "$date": "2021-02-26T21:23:23.000Z" - }, - "end": { - "$date": "2021-02-26T21:55:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31118858-842e-4ab9-9004-b1479775ec99", - "start": { - "$date": "2021-02-26T21:55:23.000Z" - }, - "end": { - "$date": "2021-02-26T22:03:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "55b1e3dc-8ae2-4dbc-96e0-e97d7762d84d", - "start": { - "$date": "2021-02-26T22:03:23.000Z" - }, - "end": { - "$date": "2021-02-26T22:35:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9851e8ca-cae9-49cf-b782-a5a54b939e7d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-26T21:41:10.000Z" - }, - "end": { - "$date": "2021-02-27T01:47:20.000Z" - }, - "events": [ - { - "uuid": "0b18c813-b535-4b90-a8a7-77539c2796df", - "start": { - "$date": "2021-02-26T21:41:10.000Z" - }, - "end": { - "$date": "2021-02-27T01:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e4e9487b-fe6e-45d6-82c5-f0587c2f0d0b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-26T21:54:45.000Z" - }, - "end": { - "$date": "2021-02-26T23:49:24.000Z" - }, - "events": [ - { - "uuid": "0109463f-94dd-4342-a2da-19b5eacc5f0a", - "start": { - "$date": "2021-02-26T21:54:45.000Z" - }, - "end": { - "$date": "2021-02-26T23:49:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5545bbcf-6420-49aa-9f85-9fd379a9b2b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-26T22:19:41.000Z" - }, - "end": { - "$date": "2021-02-26T23:15:13.000Z" - }, - "events": [ - { - "uuid": "39394dcd-6b66-4a36-a1b7-8f93a7ec67db", - "start": { - "$date": "2021-02-26T22:19:41.000Z" - }, - "end": { - "$date": "2021-02-26T23:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cd759967-c5d4-4104-afa1-5f80f55f32a2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-02-26T23:16:34.000Z" - }, - "end": { - "$date": "2021-02-26T23:19:07.000Z" - }, - "events": [ - { - "uuid": "1626d8e0-8696-461c-85c1-b22359609f3c", - "start": { - "$date": "2021-02-26T23:16:34.000Z" - }, - "end": { - "$date": "2021-02-26T23:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "293cd892-ba9c-4e9d-890d-3d0fb401be0d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T23:31:37.000Z" - }, - "end": { - "$date": "2021-02-26T23:33:26.000Z" - }, - "events": [ - { - "uuid": "fa27ac16-410a-46cf-acb1-0926dede08d3", - "start": { - "$date": "2021-02-26T23:31:37.000Z" - }, - "end": { - "$date": "2021-02-26T23:33:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "51304059-6b9e-422f-b582-477a9a5cc211", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-26T23:33:52.000Z" - }, - "end": { - "$date": "2021-02-27T00:53:02.000Z" - }, - "events": [ - { - "uuid": "babab17f-7e33-464b-a90a-83929d935d6e", - "start": { - "$date": "2021-02-26T23:33:52.000Z" - }, - "end": { - "$date": "2021-02-27T00:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "3c36f524-5928-4620-92e2-06ed7c1496c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-26T23:58:14.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:35.000Z" - }, - "events": [ - { - "uuid": "8e1c7e30-7d1b-488f-9031-d500d924c471", - "start": { - "$date": "2021-02-26T23:58:14.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "b8870ba9-c189-425c-86d3-1bb5785217de", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T00:12:47.000Z" - }, - "end": { - "$date": "2021-02-27T00:34:00.000Z" - }, - "events": [ - { - "uuid": "fd8b8e02-eb51-4a5b-b4f9-d0cd6b751e82", - "start": { - "$date": "2021-02-27T00:12:47.000Z" - }, - "end": { - "$date": "2021-02-27T00:34:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "fc97d8ee-7022-48e2-8e69-4a548f19dbd9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T00:47:42.000Z" - }, - "end": { - "$date": "2021-02-27T01:49:43.000Z" - }, - "events": [ - { - "uuid": "23d42f23-32e5-4f06-8733-899353a5b44d", - "start": { - "$date": "2021-02-27T00:47:42.000Z" - }, - "end": { - "$date": "2021-02-27T01:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "53ad8fd9-0aa3-4321-adc6-0ff67a3cc796", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-27T00:51:22.000Z" - }, - "end": { - "$date": "2021-02-27T01:29:23.000Z" - }, - "events": [ - { - "uuid": "55f0c739-b314-46a5-8894-da5c56ebf027", - "start": { - "$date": "2021-02-27T00:51:22.000Z" - }, - "end": { - "$date": "2021-02-27T01:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a75a36b-07d4-4b1e-884c-b6b7dbabcccf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T00:59:19.000Z" - }, - "end": { - "$date": "2021-02-27T01:39:18.000Z" - }, - "events": [ - { - "uuid": "017a3600-bb45-4532-9591-51bc2fd2f191", - "start": { - "$date": "2021-02-27T00:59:19.000Z" - }, - "end": { - "$date": "2021-02-27T01:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "16d07fb8-cdeb-430f-a5e2-4e491ede6989", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T00:58:40.000Z" - }, - "end": { - "$date": "2021-02-27T01:00:01.000Z" - }, - "events": [ - { - "uuid": "f88b4f14-260c-44df-9613-184a964e16b5", - "start": { - "$date": "2021-02-27T00:58:40.000Z" - }, - "end": { - "$date": "2021-02-27T01:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ab2f803f-fd86-42fd-813d-9d5a3d219f7b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T01:02:21.000Z" - }, - "end": { - "$date": "2021-02-27T03:26:54.000Z" - }, - "events": [ - { - "uuid": "c23e92b3-a2d1-41b1-9d84-6d2b1040584a", - "start": { - "$date": "2021-02-27T01:02:21.000Z" - }, - "end": { - "$date": "2021-02-27T03:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e80175e-5a94-4bd2-bb2d-2e2db349a6c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T02:15:23.000Z" - }, - "end": { - "$date": "2021-02-27T02:47:42.000Z" - }, - "events": [ - { - "uuid": "b516acd5-cd5d-484c-bd6f-fa768f8c60f1", - "start": { - "$date": "2021-02-27T02:15:23.000Z" - }, - "end": { - "$date": "2021-02-27T02:35:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0831c36b-52b0-42b8-9658-139f8610510b", - "start": { - "$date": "2021-02-27T02:35:23.000Z" - }, - "end": { - "$date": "2021-02-27T02:46:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "465edf2d-50c4-442a-965d-96146c128425", - "start": { - "$date": "2021-02-27T02:46:23.000Z" - }, - "end": { - "$date": "2021-02-27T02:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a259289a-b862-49ff-a691-70fb937b2441", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-27T01:46:24.000Z" - }, - "end": { - "$date": "2021-02-27T06:54:23.000Z" - }, - "events": [ - { - "uuid": "531200a8-9800-4e6d-ab0b-22848515b83d", - "start": { - "$date": "2021-02-27T01:46:24.000Z" - }, - "end": { - "$date": "2021-02-27T06:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "53653f46-4554-46db-b64f-8bcf87d63787", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-27T02:07:49.000Z" - }, - "end": { - "$date": "2021-02-27T09:19:24.000Z" - }, - "events": [ - { - "uuid": "9244d95d-f585-4fcc-9ac1-26eaf0089955", - "start": { - "$date": "2021-02-27T02:07:49.000Z" - }, - "end": { - "$date": "2021-02-27T09:19:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9268ee4f-1f45-41ad-8f4d-20ccec965667", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-27T04:33:22.000Z" - }, - "end": { - "$date": "2021-02-27T04:33:36.000Z" - }, - "events": [ - { - "uuid": "74c63eb7-475f-4ec6-9e81-2ffca5155856", - "start": { - "$date": "2021-02-27T04:33:22.000Z" - }, - "end": { - "$date": "2021-02-27T06:38:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67aa22fa-12b0-4473-bb12-55e0beb0dc62", - "start": { - "$date": "2021-02-27T06:38:22.000Z" - }, - "end": { - "$date": "2021-02-27T06:42:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2918fa2b-bfae-4e9c-90eb-66179768d222", - "start": { - "$date": "2021-02-27T06:42:22.000Z" - }, - "end": { - "$date": "2021-02-27T04:33:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "0cd14be9-f387-4754-811b-5d35a2e54a43", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-27T02:42:52.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:28.000Z" - }, - "events": [ - { - "uuid": "ec99b2cf-2958-4d51-bd6e-ae08739ed3c5", - "start": { - "$date": "2021-02-27T02:42:52.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e230d554-e92a-4a01-a7ea-a241659689eb", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T03:16:10.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:16.000Z" - }, - "events": [ - { - "uuid": "6f8f0e31-7e9e-46eb-942f-a3f4ad24aac9", - "start": { - "$date": "2021-02-27T03:16:10.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "52e68ef1-7b72-4742-ac32-66bbafdec9a6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-27T03:24:28.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:29.000Z" - }, - "events": [ - { - "uuid": "6a5350fc-1bae-49fe-bea6-8581d5009992", - "start": { - "$date": "2021-02-27T03:24:28.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "3370dc60-0ea6-444f-8d47-0d7d9322f80c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T03:36:31.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:09.000Z" - }, - "events": [ - { - "uuid": "917bf1ee-c454-4d8e-8fce-ab5f06852ffe", - "start": { - "$date": "2021-02-27T03:36:31.000Z" - }, - "end": { - "$date": "2021-02-27T04:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5b50fc63-cd40-46db-aaed-51dad0b6db37", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-27T04:25:35.000Z" - }, - "end": { - "$date": "2021-02-27T06:29:48.000Z" - }, - "events": [ - { - "uuid": "b553a1f2-7ce5-49bc-8d87-c6094dd30b7a", - "start": { - "$date": "2021-02-27T04:25:35.000Z" - }, - "end": { - "$date": "2021-02-27T06:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c5268154-9e1f-4157-b796-b94239a1c069", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-27T04:46:17.000Z" - }, - "end": { - "$date": "2021-02-27T07:28:22.000Z" - }, - "events": [ - { - "uuid": "caef1f3b-a2b2-4ed7-9027-b00ea66e473d", - "start": { - "$date": "2021-02-27T04:46:17.000Z" - }, - "end": { - "$date": "2021-02-27T07:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "9dae9c4b-832c-445e-9014-f02e13117e9d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T04:49:19.000Z" - }, - "end": { - "$date": "2021-02-27T05:00:15.000Z" - }, - "events": [ - { - "uuid": "f1a0717b-e15d-40a7-a7e9-f029bf56b32b", - "start": { - "$date": "2021-02-27T04:49:19.000Z" - }, - "end": { - "$date": "2021-02-27T05:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "77829c35-a10e-4d06-b7cb-5f38b3cb94ef", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-27T04:53:00.000Z" - }, - "end": { - "$date": "2021-02-27T07:16:10.000Z" - }, - "events": [ - { - "uuid": "58ea09e1-e896-4aba-900d-0ed28f5576ba", - "start": { - "$date": "2021-02-27T04:53:00.000Z" - }, - "end": { - "$date": "2021-02-27T07:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "196e2713-974a-40d1-a05b-389a83970a8e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-27T04:55:15.000Z" - }, - "end": { - "$date": "2021-02-27T05:05:16.000Z" - }, - "events": [ - { - "uuid": "8db9b2c2-05bd-458f-8b36-dfab861dac50", - "start": { - "$date": "2021-02-27T04:55:15.000Z" - }, - "end": { - "$date": "2021-02-27T05:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c14e3559-8d93-4c0f-acb3-b3d93252265b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T04:57:48.000Z" - }, - "end": { - "$date": "2021-02-27T05:01:43.000Z" - }, - "events": [ - { - "uuid": "ade62825-687c-4e52-9c97-f3ea81791b30", - "start": { - "$date": "2021-02-27T04:57:48.000Z" - }, - "end": { - "$date": "2021-02-27T05:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "8414741f-3b45-438e-b65a-d70a5a883aff", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T05:01:30.000Z" - }, - "end": { - "$date": "2021-02-27T05:49:58.000Z" - }, - "events": [ - { - "uuid": "3b3b3d3f-c617-4be5-abdd-a71e6423ad86", - "start": { - "$date": "2021-02-27T05:01:30.000Z" - }, - "end": { - "$date": "2021-02-27T05:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ac7a2936-d53b-4e6b-81ec-f60c29f95e7f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T05:01:48.000Z" - }, - "end": { - "$date": "2021-02-27T08:06:21.000Z" - }, - "events": [ - { - "uuid": "30c61222-7403-4360-84e1-f38ee7859f06", - "start": { - "$date": "2021-02-27T05:01:48.000Z" - }, - "end": { - "$date": "2021-02-27T08:06:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e4f5f6d-fcb7-4168-a6f8-6b2d02e5d07f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T05:16:22.000Z" - }, - "end": { - "$date": "2021-02-27T05:46:19.000Z" - }, - "events": [ - { - "uuid": "2f679a7a-f3b6-4c2b-a4e1-1864d1158e18", - "start": { - "$date": "2021-02-27T05:16:22.000Z" - }, - "end": { - "$date": "2021-02-27T05:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "51302da2-fd66-4a16-adae-8f312f45983e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-27T05:42:48.000Z" - }, - "end": { - "$date": "2021-02-27T08:05:11.000Z" - }, - "events": [ - { - "uuid": "d011db01-930d-4266-9c27-6b394d5303fb", - "start": { - "$date": "2021-02-27T05:42:48.000Z" - }, - "end": { - "$date": "2021-02-27T08:05:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2e913d8-72b5-4641-a2d2-6fe01d95f320", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T05:48:15.000Z" - }, - "end": { - "$date": "2021-02-27T05:51:11.000Z" - }, - "events": [ - { - "uuid": "b816e75f-a4e3-4962-8fe5-97190914294f", - "start": { - "$date": "2021-02-27T05:48:15.000Z" - }, - "end": { - "$date": "2021-02-27T05:51:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "2cac3bc1-302a-4686-8f76-b478e0f2b928", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T06:43:23.000Z" - }, - "end": { - "$date": "2021-02-27T07:09:04.000Z" - }, - "events": [ - { - "uuid": "0ee8a054-c544-4c90-8f55-563bc5571b0b", - "start": { - "$date": "2021-02-27T06:43:23.000Z" - }, - "end": { - "$date": "2021-02-27T07:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ebc7302e-80b1-4ffb-b3c2-ff50ff540fa2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-27T06:55:42.000Z" - }, - "end": { - "$date": "2021-02-27T09:26:15.000Z" - }, - "events": [ - { - "uuid": "4f2f49a8-0acb-4b3a-b2f4-318f4639a4f3", - "start": { - "$date": "2021-02-27T06:55:42.000Z" - }, - "end": { - "$date": "2021-02-27T09:24:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98421028-d22f-4e10-9610-1b5a75316bf5", - "start": { - "$date": "2021-02-27T09:24:42.000Z" - }, - "end": { - "$date": "2021-02-27T09:26:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9eda3c55-4de8-48d4-a686-8805220b65f0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T07:03:49.000Z" - }, - "end": { - "$date": "2021-02-27T07:31:37.000Z" - }, - "events": [ - { - "uuid": "961a6d63-b0f2-4b54-ac9f-3e5ef7e079b3", - "start": { - "$date": "2021-02-27T07:03:49.000Z" - }, - "end": { - "$date": "2021-02-27T07:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "12a5dc77-c651-4cfb-b4b7-d6bbbc3cc517", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T07:16:24.000Z" - }, - "end": { - "$date": "2021-02-27T07:29:35.000Z" - }, - "events": [ - { - "uuid": "b7f3c629-4a1f-4308-b3f9-cf3815072e30", - "start": { - "$date": "2021-02-27T07:16:24.000Z" - }, - "end": { - "$date": "2021-02-27T07:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1b613265-5933-4010-9a43-67a7bf5f00ff", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-27T07:18:44.000Z" - }, - "end": { - "$date": "2021-02-27T07:50:27.000Z" - }, - "events": [ - { - "uuid": "71e71301-45de-4cc6-a8a2-f81f9834bd23", - "start": { - "$date": "2021-02-27T07:18:44.000Z" - }, - "end": { - "$date": "2021-02-27T07:50:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "614adcee-7e43-4b40-a61c-99cf5c7e9c02", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-27T07:22:47.000Z" - }, - "end": { - "$date": "2021-02-27T08:06:16.000Z" - }, - "events": [ - { - "uuid": "b98e3f8c-5ff3-4927-b8d4-c0983420829d", - "start": { - "$date": "2021-02-27T07:22:47.000Z" - }, - "end": { - "$date": "2021-02-27T08:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "b237676b-d884-4c20-8938-56359c63f1fe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T07:30:09.000Z" - }, - "end": { - "$date": "2021-02-27T07:46:20.000Z" - }, - "events": [ - { - "uuid": "bd9498da-545d-491e-9f88-81fdd25ef663", - "start": { - "$date": "2021-02-27T07:30:09.000Z" - }, - "end": { - "$date": "2021-02-27T07:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0df0028-8fc0-452a-95b4-c3e503e51a41", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T07:40:00.000Z" - }, - "end": { - "$date": "2021-02-27T08:01:23.000Z" - }, - "events": [ - { - "uuid": "07d64af8-35e1-4a86-b5d2-e1fcf9c5a5e4", - "start": { - "$date": "2021-02-27T07:40:00.000Z" - }, - "end": { - "$date": "2021-02-27T08:01:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4b4ccdec-1ab8-4fa7-807b-c375532154d2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T07:47:30.000Z" - }, - "end": { - "$date": "2021-02-27T08:03:32.000Z" - }, - "events": [ - { - "uuid": "a60b86ea-3782-4485-b165-77ff84713495", - "start": { - "$date": "2021-02-27T07:47:30.000Z" - }, - "end": { - "$date": "2021-02-27T08:03:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c8999aed-a591-49e8-922a-5e74f0290c5f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-27T07:50:52.000Z" - }, - "end": { - "$date": "2021-02-27T07:54:37.000Z" - }, - "events": [ - { - "uuid": "16358866-4d9b-440b-ab2e-d17285ed9663", - "start": { - "$date": "2021-02-27T07:50:52.000Z" - }, - "end": { - "$date": "2021-02-27T07:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "33fea0ee-9c49-4dbd-9eb8-6d57949eeb65", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-27T07:54:57.000Z" - }, - "end": { - "$date": "2021-02-27T08:34:04.000Z" - }, - "events": [ - { - "uuid": "1f8fff1a-7f6a-4a51-bcb5-ca13ad9c3bd6", - "start": { - "$date": "2021-02-27T07:54:57.000Z" - }, - "end": { - "$date": "2021-02-27T08:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ab96a703-3add-4c77-9fb4-f0c2f081046f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T08:05:22.000Z" - }, - "end": { - "$date": "2021-02-27T08:38:53.000Z" - }, - "events": [ - { - "uuid": "b42dd016-08fa-4743-bea5-45a2358f1f8c", - "start": { - "$date": "2021-02-27T08:05:22.000Z" - }, - "end": { - "$date": "2021-02-27T08:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f13ca6be-c4de-4cb3-8074-6bd1695bb686", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-27T08:06:11.000Z" - }, - "end": { - "$date": "2021-02-27T08:40:02.000Z" - }, - "events": [ - { - "uuid": "5fc6a25b-d004-404b-a430-0d42eb657917", - "start": { - "$date": "2021-02-27T08:06:11.000Z" - }, - "end": { - "$date": "2021-02-27T08:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "5034da00-a5c5-4b1a-ae9a-84823d920a30", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T08:08:41.000Z" - }, - "end": { - "$date": "2021-02-27T08:16:06.000Z" - }, - "events": [ - { - "uuid": "c6cf18d7-4e21-4cfc-acb6-14be2919cb2d", - "start": { - "$date": "2021-02-27T08:08:41.000Z" - }, - "end": { - "$date": "2021-02-27T08:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76b970d8-e6a2-4a55-b302-474bae0ae485", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T08:12:43.000Z" - }, - "end": { - "$date": "2021-02-27T08:25:20.000Z" - }, - "events": [ - { - "uuid": "bd984dde-163d-4981-b85e-48fbf0311bff", - "start": { - "$date": "2021-02-27T08:12:43.000Z" - }, - "end": { - "$date": "2021-02-27T08:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "946fc106-420d-470d-b21d-deb452bfd8ea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-27T08:09:53.000Z" - }, - "end": { - "$date": "2021-02-27T08:36:11.000Z" - }, - "events": [ - { - "uuid": "c0b956e0-4c92-4168-94cc-6ed1ef92cdb4", - "start": { - "$date": "2021-02-27T08:09:53.000Z" - }, - "end": { - "$date": "2021-02-27T08:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "6b9fcc78-f135-481f-9454-ef0906d7edf2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T08:16:16.000Z" - }, - "end": { - "$date": "2021-02-27T08:26:56.000Z" - }, - "events": [ - { - "uuid": "007bda80-0bdd-47a9-865f-0d61b8291384", - "start": { - "$date": "2021-02-27T08:16:16.000Z" - }, - "end": { - "$date": "2021-02-27T08:26:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef69397b-3230-4161-9cf3-39cbeedd516e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T08:29:13.000Z" - }, - "end": { - "$date": "2021-02-27T08:45:01.000Z" - }, - "events": [ - { - "uuid": "088e7763-6c27-4f46-be81-506c08b64ceb", - "start": { - "$date": "2021-02-27T08:29:13.000Z" - }, - "end": { - "$date": "2021-02-27T08:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ddfa0903-f51b-41a4-ad18-d3a1ea5716a6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-02-27T08:29:02.000Z" - }, - "end": { - "$date": "2021-02-27T08:36:02.000Z" - }, - "events": [ - { - "uuid": "37479b87-b103-4540-bd1b-e0847d159ff9", - "start": { - "$date": "2021-02-27T08:29:02.000Z" - }, - "end": { - "$date": "2021-02-27T08:36:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8efdc939-f8b1-4610-94d9-77d3623b139d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-27T08:38:44.000Z" - }, - "end": { - "$date": "2021-02-27T09:25:07.000Z" - }, - "events": [ - { - "uuid": "56f4c541-c711-435c-b958-eca65a1d4ece", - "start": { - "$date": "2021-02-27T08:38:44.000Z" - }, - "end": { - "$date": "2021-02-27T09:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87b0d5e4-d67f-4723-9b4c-7c1979504fc8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T08:48:54.000Z" - }, - "end": { - "$date": "2021-02-27T09:08:22.000Z" - }, - "events": [ - { - "uuid": "43086777-e589-4872-9a22-5925df9640b2", - "start": { - "$date": "2021-02-27T08:48:54.000Z" - }, - "end": { - "$date": "2021-02-27T09:08:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e401384a-5cec-4ce1-b726-6894c9e92e3e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T09:11:05.000Z" - }, - "end": { - "$date": "2021-02-27T09:25:47.000Z" - }, - "events": [ - { - "uuid": "e1b2db61-da7f-4501-8287-b0b225d29fe8", - "start": { - "$date": "2021-02-27T09:11:05.000Z" - }, - "end": { - "$date": "2021-02-27T09:25:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fe011f7-7c73-4ac4-8954-ab8ad08ccd0c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-27T09:29:15.000Z" - }, - "end": { - "$date": "2021-02-27T09:44:03.000Z" - }, - "events": [ - { - "uuid": "0c86a273-9dcc-4f9b-bc84-52114b086a27", - "start": { - "$date": "2021-02-27T09:29:15.000Z" - }, - "end": { - "$date": "2021-02-27T09:44:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "241106c0-2c17-4dbb-a7ec-9061081020ba", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-27T13:47:21.000Z" - }, - "end": { - "$date": "2021-02-27T14:41:53.000Z" - }, - "events": [ - { - "uuid": "a464a8e7-0d3c-4726-a463-60dcff75faee", - "start": { - "$date": "2021-02-27T13:47:21.000Z" - }, - "end": { - "$date": "2021-02-27T14:41:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "e7d7ac78-86eb-4a0d-929f-f5be9f8c1855", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T14:53:09.000Z" - }, - "end": { - "$date": "2021-02-27T15:13:55.000Z" - }, - "events": [ - { - "uuid": "6e43a4c8-1256-4839-9468-6c78578ceaa4", - "start": { - "$date": "2021-02-27T14:53:09.000Z" - }, - "end": { - "$date": "2021-02-27T15:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "69483501-8f7b-4e52-849d-de0b4509a26a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T15:13:59.000Z" - }, - "end": { - "$date": "2021-02-27T15:35:51.000Z" - }, - "events": [ - { - "uuid": "8cbdf21b-5144-4cfe-990b-e4213a231f1f", - "start": { - "$date": "2021-02-27T15:13:59.000Z" - }, - "end": { - "$date": "2021-02-27T15:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "417b14b2-e51e-4b24-9fd5-122b40ceeea4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T16:43:34.000Z" - }, - "end": { - "$date": "2021-02-27T18:58:17.000Z" - }, - "events": [ - { - "uuid": "fb11779b-dd8c-426d-ad5e-d3329223989e", - "start": { - "$date": "2021-02-27T16:43:34.000Z" - }, - "end": { - "$date": "2021-02-27T18:26:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "652e19f5-79be-411c-bda1-aa8d4a9b414b", - "start": { - "$date": "2021-02-27T18:26:34.000Z" - }, - "end": { - "$date": "2021-02-27T18:31:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b637692d-3f74-4dd7-af8c-123c12db9c92", - "start": { - "$date": "2021-02-27T18:31:34.000Z" - }, - "end": { - "$date": "2021-02-27T18:41:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63221dc0-ddfa-4f54-ade7-9fae44bba29b", - "start": { - "$date": "2021-02-27T18:41:34.000Z" - }, - "end": { - "$date": "2021-02-27T19:43:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15fd4d0c-ba4f-4a55-beaa-3612223e96ef", - "start": { - "$date": "2021-02-27T19:43:34.000Z" - }, - "end": { - "$date": "2021-02-27T18:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "33c087e3-b3f5-4355-b461-e3f87fd80920", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-27T16:51:51.000Z" - }, - "end": { - "$date": "2021-02-27T17:40:59.000Z" - }, - "events": [ - { - "uuid": "1b47cf54-1e07-4d70-9848-695eb5afdd93", - "start": { - "$date": "2021-02-27T16:51:51.000Z" - }, - "end": { - "$date": "2021-02-27T17:02:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6483839b-e68a-47e5-9a5c-4576693166a5", - "start": { - "$date": "2021-02-27T17:02:51.000Z" - }, - "end": { - "$date": "2021-02-27T17:09:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0700e831-7789-402a-a8f4-02ba663be178", - "start": { - "$date": "2021-02-27T17:09:51.000Z" - }, - "end": { - "$date": "2021-02-27T17:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6514619a-c6cb-4089-850a-ecffb1abc455", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-27T17:03:26.000Z" - }, - "end": { - "$date": "2021-02-27T18:59:09.000Z" - }, - "events": [ - { - "uuid": "a4f60d7d-d19b-4c67-b677-22ffee55ea96", - "start": { - "$date": "2021-02-27T17:03:26.000Z" - }, - "end": { - "$date": "2021-02-27T18:59:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8dc6102d-0ba4-4deb-9555-23039224f107", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-27T17:03:41.000Z" - }, - "end": { - "$date": "2021-02-27T17:12:15.000Z" - }, - "events": [ - { - "uuid": "ea89b716-9465-4686-b37e-68022b12dcef", - "start": { - "$date": "2021-02-27T17:03:41.000Z" - }, - "end": { - "$date": "2021-02-27T17:12:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a4fa0285-3fde-45d8-9dbe-4c1ad103f9b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-27T17:12:48.000Z" - }, - "end": { - "$date": "2021-02-27T18:56:16.000Z" - }, - "events": [ - { - "uuid": "24993f6d-8291-4111-9b73-643575740c57", - "start": { - "$date": "2021-02-27T17:12:48.000Z" - }, - "end": { - "$date": "2021-02-27T18:56:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "879943b6-90f4-4bb8-9e8d-435c5943b11a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T18:15:20.000Z" - }, - "end": { - "$date": "2021-02-27T18:37:41.000Z" - }, - "events": [ - { - "uuid": "78b3d994-5819-4c84-b3c4-4659d68925a2", - "start": { - "$date": "2021-02-27T18:15:20.000Z" - }, - "end": { - "$date": "2021-02-27T18:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "19f944bb-304e-47ad-8c6b-8d3d44040ca7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-27T18:13:45.000Z" - }, - "end": { - "$date": "2021-02-27T21:05:35.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-27T18:13:45.000Z" - }, - "end": { - "$date": "2021-02-27T21:05:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0873d8c9-a86f-45d3-af9a-25c1b930ff97", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-02-27T18:14:56.000Z" - }, - "end": { - "$date": "2021-02-27T20:02:46.000Z" - }, - "events": [ - { - "uuid": "d6dedf94-4f7e-42fb-963f-1cea93379be6", - "start": { - "$date": "2021-02-27T18:14:56.000Z" - }, - "end": { - "$date": "2021-02-27T20:02:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8e2dc44-26fd-4436-9a2b-138308b0dca1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T18:43:52.000Z" - }, - "end": { - "$date": "2021-02-27T19:10:53.000Z" - }, - "events": [ - { - "uuid": "04c882c1-1cf3-46c6-a014-f56a2b7d0bb5", - "start": { - "$date": "2021-02-27T18:43:52.000Z" - }, - "end": { - "$date": "2021-02-27T19:10:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "3d4dcee0-9b33-445e-b49e-aa3eb4583d37", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T18:54:13.000Z" - }, - "end": { - "$date": "2021-02-27T19:16:35.000Z" - }, - "events": [ - { - "uuid": "21c6bed2-c0cd-4f76-ba04-d91c21862e71", - "start": { - "$date": "2021-02-27T18:54:13.000Z" - }, - "end": { - "$date": "2021-02-27T19:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "25e97d07-f979-40d8-ad86-51b94be6f9f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T18:58:27.000Z" - }, - "end": { - "$date": "2021-02-27T20:43:39.000Z" - }, - "events": [ - { - "uuid": "5731b269-e9b2-4176-84d0-d347e24cf045", - "start": { - "$date": "2021-02-27T18:58:27.000Z" - }, - "end": { - "$date": "2021-02-27T20:43:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "be30752b-df29-4c7f-af40-bdc13176fa19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-27T18:58:49.000Z" - }, - "end": { - "$date": "2021-02-27T20:24:59.000Z" - }, - "events": [ - { - "uuid": "5845df89-0e14-4c6d-8f1d-93f9057eedd5", - "start": { - "$date": "2021-02-27T18:58:49.000Z" - }, - "end": { - "$date": "2021-02-27T20:24:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09be6013-115b-4629-97fa-cfd461ac50fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T19:15:49.000Z" - }, - "end": { - "$date": "2021-02-27T19:40:55.000Z" - }, - "events": [ - { - "uuid": "c5ca4d96-3b87-4713-a272-b0c05d19c0e7", - "start": { - "$date": "2021-02-27T19:15:49.000Z" - }, - "end": { - "$date": "2021-02-27T19:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "687d1ca0-b5df-4281-ab84-e7832b771a51", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T22:09:37.000Z" - }, - "end": { - "$date": "2021-02-27T22:47:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-27T22:09:37.000Z" - }, - "end": { - "$date": "2021-02-27T22:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "85013177-9319-4864-a55b-e4018907cfd1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-27T19:57:03.000Z" - }, - "end": { - "$date": "2021-02-27T20:57:14.000Z" - }, - "events": [ - { - "uuid": "aa4a73c4-576b-4158-9ab7-358778ffeefa", - "start": { - "$date": "2021-02-27T19:57:03.000Z" - }, - "end": { - "$date": "2021-02-27T20:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "3e5a3207-7fcc-419e-ab5f-85fe83ad9482", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T20:46:04.000Z" - }, - "end": { - "$date": "2021-02-27T21:29:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-02-27T20:46:04.000Z" - }, - "end": { - "$date": "2021-02-27T21:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "a2191b5f-6fd0-4be9-87bb-0fe0dd3f5050", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-27T21:21:30.000Z" - }, - "end": { - "$date": "2021-02-27T22:07:24.000Z" - }, - "events": [ - { - "uuid": "05b8209a-992a-4d9b-b021-d4a5b2a28578", - "start": { - "$date": "2021-02-27T21:21:30.000Z" - }, - "end": { - "$date": "2021-02-27T22:07:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "a67dc103-df05-4f40-8da6-d748707b9ae7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-27T21:22:56.000Z" - }, - "end": { - "$date": "2021-02-27T22:11:38.000Z" - }, - "events": [ - { - "uuid": "bb822b5b-fdd5-4289-a72e-922d912cfd71", - "start": { - "$date": "2021-02-27T21:22:56.000Z" - }, - "end": { - "$date": "2021-02-27T22:11:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b2d4ab47-f4dd-46f7-b8df-4e7bdf570c81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-27T21:28:05.000Z" - }, - "end": { - "$date": "2021-02-27T22:28:01.000Z" - }, - "events": [ - { - "uuid": "12e0c93d-c96a-41f8-a711-eb8fa2f5fb72", - "start": { - "$date": "2021-02-27T21:28:05.000Z" - }, - "end": { - "$date": "2021-02-27T22:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c34906b1-dd4b-4b39-a8c1-84443c8c53f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-27T21:30:51.000Z" - }, - "end": { - "$date": "2021-02-28T02:58:13.000Z" - }, - "events": [ - { - "uuid": "6e2d5cbf-db3f-4218-b5ae-17e7a47e5542", - "start": { - "$date": "2021-02-27T21:30:51.000Z" - }, - "end": { - "$date": "2021-02-28T02:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "64cbd991-45d4-40c6-87f2-d424cd214cd1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-27T21:46:17.000Z" - }, - "end": { - "$date": "2021-02-27T22:14:50.000Z" - }, - "events": [ - { - "uuid": "ee7f7f5f-d4f3-461b-98b4-9519182a1de6", - "start": { - "$date": "2021-02-27T21:46:17.000Z" - }, - "end": { - "$date": "2021-02-27T22:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "901b6e04-19a3-4967-a065-2cc52bb70eb6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-27T21:53:24.000Z" - }, - "end": { - "$date": "2021-02-28T00:06:34.000Z" - }, - "events": [ - { - "uuid": "915e800f-b183-4776-95ca-4dcddcb4965f", - "start": { - "$date": "2021-02-27T21:53:24.000Z" - }, - "end": { - "$date": "2021-02-27T22:04:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0811118-6770-47b1-bf28-297d96f892d2", - "start": { - "$date": "2021-02-27T22:04:24.000Z" - }, - "end": { - "$date": "2021-02-27T23:40:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97f5c2b6-2251-4983-8eef-c1997bff2f7b", - "start": { - "$date": "2021-02-27T23:40:24.000Z" - }, - "end": { - "$date": "2021-02-27T23:50:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "346b0240-f14e-4919-873a-d20ba0a41fb3", - "start": { - "$date": "2021-02-27T23:50:24.000Z" - }, - "end": { - "$date": "2021-02-28T00:06:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5642fe25-d07c-4d15-899c-79c7f8efc269", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-27T21:58:39.000Z" - }, - "end": { - "$date": "2021-02-27T23:49:56.000Z" - }, - "events": [ - { - "uuid": "3424da96-2cc8-4c99-98fd-616fc5db37e7", - "start": { - "$date": "2021-02-27T21:58:39.000Z" - }, - "end": { - "$date": "2021-02-27T23:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6e95ee7-4bb7-47dc-91d1-0fb312a36c20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-27T22:59:20.000Z" - }, - "end": { - "$date": "2021-02-27T23:20:48.000Z" - }, - "events": [ - { - "uuid": "55b5d845-be86-484f-a734-0d095928692f", - "start": { - "$date": "2021-02-27T22:59:20.000Z" - }, - "end": { - "$date": "2021-02-27T23:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd69db6b-88dd-4e55-a5bf-9de247de3fbc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-27T23:22:37.000Z" - }, - "end": { - "$date": "2021-02-27T23:50:09.000Z" - }, - "events": [ - { - "uuid": "d075162e-822c-4061-b00f-f7b0030b352c", - "start": { - "$date": "2021-02-27T23:22:37.000Z" - }, - "end": { - "$date": "2021-02-27T23:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca0f0b16-d683-4ac9-83f2-77226377627a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T00:27:36.000Z" - }, - "end": { - "$date": "2021-02-28T01:00:32.000Z" - }, - "events": [ - { - "uuid": "86aad287-ba04-4a4b-b951-f57bc6d1d8df", - "start": { - "$date": "2021-02-28T00:27:36.000Z" - }, - "end": { - "$date": "2021-02-28T00:38:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f316178f-8a8f-44c4-9384-97f81d3840cb", - "start": { - "$date": "2021-02-28T00:38:36.000Z" - }, - "end": { - "$date": "2021-02-28T00:42:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74a508fc-e246-46eb-adc1-3b1ae5616d97", - "start": { - "$date": "2021-02-28T00:42:36.000Z" - }, - "end": { - "$date": "2021-02-28T00:58:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "758007ed-f3a4-4ff3-9261-f5e0df56b3f2", - "start": { - "$date": "2021-02-28T00:58:36.000Z" - }, - "end": { - "$date": "2021-02-28T00:59:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80baa27f-03e8-4837-be9b-0a6b581b9d59", - "start": { - "$date": "2021-02-28T00:59:36.000Z" - }, - "end": { - "$date": "2021-02-28T01:00:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad9d3533-a957-4ee4-b1b0-2b7110c21d38", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T00:37:05.000Z" - }, - "end": { - "$date": "2021-02-28T01:08:47.000Z" - }, - "events": [ - { - "uuid": "3ad24dcc-013e-4941-a25f-09e42080f25c", - "start": { - "$date": "2021-02-28T00:37:05.000Z" - }, - "end": { - "$date": "2021-02-28T01:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ef0c77e2-53ad-4397-9d0a-fbd633c68317", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T01:00:03.000Z" - }, - "end": { - "$date": "2021-02-28T01:40:15.000Z" - }, - "events": [ - { - "uuid": "5b3489b2-65bb-4365-bb14-0d235aebe71f", - "start": { - "$date": "2021-02-28T01:00:03.000Z" - }, - "end": { - "$date": "2021-02-28T01:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0bf3d387-f18e-427c-900a-728d7ce7ef3c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T01:02:37.000Z" - }, - "end": { - "$date": "2021-02-28T02:06:04.000Z" - }, - "events": [ - { - "uuid": "859b5938-fc1d-4e51-9dda-3c59cdc343b1", - "start": { - "$date": "2021-02-28T01:02:37.000Z" - }, - "end": { - "$date": "2021-02-28T02:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17af2a89-7730-4872-95e1-8d4fe51bd5e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T01:09:16.000Z" - }, - "end": { - "$date": "2021-02-28T03:55:06.000Z" - }, - "events": [ - { - "uuid": "d728ba68-7107-4a07-b0ba-097c3c0b5b78", - "start": { - "$date": "2021-02-28T01:09:16.000Z" - }, - "end": { - "$date": "2021-02-28T01:22:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a382894d-bb76-4d8c-91e4-21c784039e2e", - "start": { - "$date": "2021-02-28T01:22:16.000Z" - }, - "end": { - "$date": "2021-02-28T01:46:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20eec9c7-9eaa-464c-9071-471fbedafa44", - "start": { - "$date": "2021-02-28T01:46:16.000Z" - }, - "end": { - "$date": "2021-02-28T03:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "0d65993d-174d-44a3-bb01-ce556e22a87a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-28T01:15:56.000Z" - }, - "end": { - "$date": "2021-02-28T02:44:51.000Z" - }, - "events": [ - { - "uuid": "adeaa224-7d52-4189-b7b7-a072a0adcdb3", - "start": { - "$date": "2021-02-28T01:15:56.000Z" - }, - "end": { - "$date": "2021-02-28T02:44:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "eb26b989-6ebe-4ae5-8983-e34911842ce1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-28T01:19:46.000Z" - }, - "end": { - "$date": "2021-02-28T02:39:20.000Z" - }, - "events": [ - { - "uuid": "f49d6c0b-a8c9-491d-917b-5e5070cf1d01", - "start": { - "$date": "2021-02-28T01:19:46.000Z" - }, - "end": { - "$date": "2021-02-28T02:39:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5be680ea-5faa-4cc8-a682-225cd00f42b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T02:11:14.000Z" - }, - "end": { - "$date": "2021-02-28T02:50:41.000Z" - }, - "events": [ - { - "uuid": "cff4ac5b-e980-4b7b-94f9-0bcda93f74c1", - "start": { - "$date": "2021-02-28T02:11:14.000Z" - }, - "end": { - "$date": "2021-02-28T02:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9d06f6d-ab3a-4516-96d3-7d63211a6fd3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-28T02:22:30.000Z" - }, - "end": { - "$date": "2021-02-28T03:10:23.000Z" - }, - "events": [ - { - "uuid": "bd856720-5988-4976-99f0-92b5caeb6b07", - "start": { - "$date": "2021-02-28T02:22:30.000Z" - }, - "end": { - "$date": "2021-02-28T03:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c0d2110a-fac6-4300-865f-1e9757d6969e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-28T02:24:35.000Z" - }, - "end": { - "$date": "2021-02-28T02:26:10.000Z" - }, - "events": [ - { - "uuid": "29f4bb30-758b-4175-9b22-43245b6686b9", - "start": { - "$date": "2021-02-28T02:24:35.000Z" - }, - "end": { - "$date": "2021-02-28T02:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5e76d967-f875-42fd-9173-35c66dfa7edb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-28T02:27:15.000Z" - }, - "end": { - "$date": "2021-02-28T03:10:27.000Z" - }, - "events": [ - { - "uuid": "e7d8bd22-3fb9-4e73-8eac-04c6a7211499", - "start": { - "$date": "2021-02-28T02:27:15.000Z" - }, - "end": { - "$date": "2021-02-28T03:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "fb1fd2c7-1636-464e-a03c-79e6da6c1027", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-28T02:42:23.000Z" - }, - "end": { - "$date": "2021-02-28T04:53:46.000Z" - }, - "events": [ - { - "uuid": "732d5988-f67e-4d0a-b61c-39e2598f3b94", - "start": { - "$date": "2021-02-28T02:42:23.000Z" - }, - "end": { - "$date": "2021-02-28T04:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "12eccbe3-be7b-48a9-93bd-36daff6d4f1d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T02:44:00.000Z" - }, - "end": { - "$date": "2021-02-28T02:49:16.000Z" - }, - "events": [ - { - "uuid": "614d57b4-c57f-4726-9e39-650350dda970", - "start": { - "$date": "2021-02-28T02:44:00.000Z" - }, - "end": { - "$date": "2021-02-28T02:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f1865421-4ffc-4e22-a417-46327f4fd8e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-28T02:48:15.000Z" - }, - "end": { - "$date": "2021-02-28T04:47:56.000Z" - }, - "events": [ - { - "uuid": "bc964018-e7ac-4f73-aebb-67d4ae2db60e", - "start": { - "$date": "2021-02-28T02:48:15.000Z" - }, - "end": { - "$date": "2021-02-28T04:47:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "2835dd9a-a2e0-4ee1-bfe7-ae91aa67c91c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T02:51:41.000Z" - }, - "end": { - "$date": "2021-02-28T03:10:02.000Z" - }, - "events": [ - { - "uuid": "8a5c0e29-acf2-491d-a791-1f254fda898e", - "start": { - "$date": "2021-02-28T02:51:41.000Z" - }, - "end": { - "$date": "2021-02-28T03:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d0053f45-9718-4118-a354-20155d054e81", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T02:59:58.000Z" - }, - "end": { - "$date": "2021-02-28T03:26:34.000Z" - }, - "events": [ - { - "uuid": "4bb3a910-2f3c-48ac-b939-f6ecdf0a15af", - "start": { - "$date": "2021-02-28T02:59:58.000Z" - }, - "end": { - "$date": "2021-02-28T03:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e59f399e-41b0-4762-ba97-9416840764c8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T03:03:31.000Z" - }, - "end": { - "$date": "2021-02-28T03:36:58.000Z" - }, - "events": [ - { - "uuid": "71d79cbc-5072-4701-a49f-86dbb166219b", - "start": { - "$date": "2021-02-28T03:03:31.000Z" - }, - "end": { - "$date": "2021-02-28T03:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e3c6386d-099a-4481-8773-430dce8c3703", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-28T03:10:42.000Z" - }, - "end": { - "$date": "2021-02-28T07:26:04.000Z" - }, - "events": [ - { - "uuid": "dbfe62b9-683b-4fbd-84f5-2a04bab66dd1", - "start": { - "$date": "2021-02-28T03:10:42.000Z" - }, - "end": { - "$date": "2021-02-28T07:26:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "9278a4aa-8f72-4977-8d16-9a6817983b25", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-28T03:10:21.000Z" - }, - "end": { - "$date": "2021-02-28T05:00:00.000Z" - }, - "events": [ - { - "uuid": "225db5bc-7088-4f71-a781-dd768d1dfe95", - "start": { - "$date": "2021-02-28T03:10:21.000Z" - }, - "end": { - "$date": "2021-02-28T05:00:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6e8b0da6-9b31-4892-b772-ecb2711028e5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T03:29:41.000Z" - }, - "end": { - "$date": "2021-02-28T06:37:03.000Z" - }, - "events": [ - { - "uuid": "0d99bbfe-edea-4d6e-89de-2cd2f3462f94", - "start": { - "$date": "2021-02-28T03:29:41.000Z" - }, - "end": { - "$date": "2021-02-28T06:37:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7325100a-e891-4a85-9725-5a149e9ccee3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T03:40:50.000Z" - }, - "end": { - "$date": "2021-02-28T04:06:01.000Z" - }, - "events": [ - { - "uuid": "dd831325-bf4c-4dc2-b994-fa18aca2196a", - "start": { - "$date": "2021-02-28T03:40:50.000Z" - }, - "end": { - "$date": "2021-02-28T04:06:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "b99b67a7-2f23-4c81-99d1-811ca72bf77a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T04:06:11.000Z" - }, - "end": { - "$date": "2021-02-28T04:37:07.000Z" - }, - "events": [ - { - "uuid": "231dc602-76cf-4b27-8b73-c3d4be05d091", - "start": { - "$date": "2021-02-28T04:06:11.000Z" - }, - "end": { - "$date": "2021-02-28T04:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "473306f7-21ab-42bd-8fdc-3242f46810d4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-28T04:20:17.000Z" - }, - "end": { - "$date": "2021-02-28T04:49:57.000Z" - }, - "events": [ - { - "uuid": "55eb5ea1-8bfd-4de4-aa98-1a1ab1ffbeba", - "start": { - "$date": "2021-02-28T04:20:17.000Z" - }, - "end": { - "$date": "2021-02-28T04:49:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0a7fa484-cb9f-47e0-8ee4-4b2fa7820a64", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T04:34:34.000Z" - }, - "end": { - "$date": "2021-02-28T04:37:53.000Z" - }, - "events": [ - { - "uuid": "30c33988-7acd-469d-8077-993b2293217e", - "start": { - "$date": "2021-02-28T04:34:34.000Z" - }, - "end": { - "$date": "2021-02-28T04:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dcd2a038-22c1-4cef-8d92-fba0f75ca1ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T04:37:37.000Z" - }, - "end": { - "$date": "2021-02-28T07:35:53.000Z" - }, - "events": [ - { - "uuid": "b311151c-724f-4cf3-809b-0696f5a3d0ba", - "start": { - "$date": "2021-02-28T04:37:37.000Z" - }, - "end": { - "$date": "2021-02-28T06:05:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad1322b0-94cb-40c0-99b3-f408807fbb48", - "start": { - "$date": "2021-02-28T06:05:37.000Z" - }, - "end": { - "$date": "2021-02-28T06:10:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "78b778f6-9282-41c4-a150-995cf80b9847", - "start": { - "$date": "2021-02-28T06:10:37.000Z" - }, - "end": { - "$date": "2021-02-28T06:20:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de26f221-ca1c-4899-a1b6-1b7da6cc970e", - "start": { - "$date": "2021-02-28T06:20:37.000Z" - }, - "end": { - "$date": "2021-02-28T07:16:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2f85634f-7ce5-4ad9-8092-b4126971b061", - "start": { - "$date": "2021-02-28T07:16:37.000Z" - }, - "end": { - "$date": "2021-02-28T07:26:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81146b26-77f2-4cf3-9a12-887340831796", - "start": { - "$date": "2021-02-28T07:26:37.000Z" - }, - "end": { - "$date": "2021-02-28T07:34:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b0f1c94-9fd8-4eed-8c1f-641855ad8825", - "start": { - "$date": "2021-02-28T07:34:37.000Z" - }, - "end": { - "$date": "2021-02-28T07:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "03e25b0d-7d9a-4da0-94ff-605b00a5440f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T04:39:15.000Z" - }, - "end": { - "$date": "2021-02-28T05:55:36.000Z" - }, - "events": [ - { - "uuid": "362231f0-48f2-4b62-85a1-d1af69f0b785", - "start": { - "$date": "2021-02-28T04:39:15.000Z" - }, - "end": { - "$date": "2021-02-28T05:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "52d49808-65e9-4980-a7ce-47cf006ca709", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T04:47:36.000Z" - }, - "end": { - "$date": "2021-02-28T05:23:43.000Z" - }, - "events": [ - { - "uuid": "e3796f8a-0ab0-4ad8-bdf7-ada9e7f91fe6", - "start": { - "$date": "2021-02-28T04:47:36.000Z" - }, - "end": { - "$date": "2021-02-28T05:23:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "401afca8-b259-47c5-94f6-e53debb89970", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-28T04:58:08.000Z" - }, - "end": { - "$date": "2021-02-28T05:25:44.000Z" - }, - "events": [ - { - "uuid": "92b16a6d-d55e-4002-a266-3a8c39061d21", - "start": { - "$date": "2021-02-28T04:58:08.000Z" - }, - "end": { - "$date": "2021-02-28T05:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "08f1da46-540c-4709-8dd1-b16523978a7f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-28T04:59:58.000Z" - }, - "end": { - "$date": "2021-02-28T07:11:03.000Z" - }, - "events": [ - { - "uuid": "5b440579-fea8-4666-9a85-aafedd7ed2d3", - "start": { - "$date": "2021-02-28T04:59:58.000Z" - }, - "end": { - "$date": "2021-02-28T07:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "bcc96674-1c8a-4b37-8122-b4db1a4ba478", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-02-28T05:03:20.000Z" - }, - "end": { - "$date": "2021-02-28T08:57:23.000Z" - }, - "events": [ - { - "uuid": "f9b4be43-d490-4fb7-9b8c-04386603b243", - "start": { - "$date": "2021-02-28T05:03:20.000Z" - }, - "end": { - "$date": "2021-02-28T05:56:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d987f7c-d4e3-4907-9782-58f20d1b44df", - "start": { - "$date": "2021-02-28T05:56:20.000Z" - }, - "end": { - "$date": "2021-02-28T06:05:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2ce7c249-9407-4c45-8900-4d33c6358ffb", - "start": { - "$date": "2021-02-28T06:05:20.000Z" - }, - "end": { - "$date": "2021-02-28T08:57:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecdd9e46-a3ef-4aa6-862a-af16c0820742", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-28T05:34:09.000Z" - }, - "end": { - "$date": "2021-02-28T06:00:45.000Z" - }, - "events": [ - { - "uuid": "228311c8-780e-4850-84f9-35bfffa898d7", - "start": { - "$date": "2021-02-28T05:34:09.000Z" - }, - "end": { - "$date": "2021-02-28T06:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f88294aa-909e-42cb-b21f-c729e568a57c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T06:01:13.000Z" - }, - "end": { - "$date": "2021-02-28T06:28:32.000Z" - }, - "events": [ - { - "uuid": "0eb4a54c-5962-4011-8842-2885c380b8b4", - "start": { - "$date": "2021-02-28T06:01:13.000Z" - }, - "end": { - "$date": "2021-02-28T06:28:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "778f8034-cdda-4c87-9b62-d1cee664c17e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-28T06:15:05.000Z" - }, - "end": { - "$date": "2021-02-28T06:36:51.000Z" - }, - "events": [ - { - "uuid": "2193c257-f226-447c-9ee4-ad75cf2d2bb7", - "start": { - "$date": "2021-02-28T06:15:05.000Z" - }, - "end": { - "$date": "2021-02-28T06:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "05a35509-0339-420b-bcbb-927b5f93e5aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-02-28T06:15:57.000Z" - }, - "end": { - "$date": "2021-02-28T09:01:37.000Z" - }, - "events": [ - { - "uuid": "20ef362e-4d92-42ef-8782-dfb197411709", - "start": { - "$date": "2021-02-28T06:15:57.000Z" - }, - "end": { - "$date": "2021-02-28T09:01:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "33df1662-0c38-4991-858e-4317e3609fac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-28T06:26:47.000Z" - }, - "end": { - "$date": "2021-02-28T08:09:43.000Z" - }, - "events": [ - { - "uuid": "d4aafd03-a024-49ae-b51d-747b0d180949", - "start": { - "$date": "2021-02-28T06:26:47.000Z" - }, - "end": { - "$date": "2021-02-28T08:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b21d2ce9-8c0c-4e2e-a71a-a471d59d04bd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T06:28:45.000Z" - }, - "end": { - "$date": "2021-02-28T07:04:18.000Z" - }, - "events": [ - { - "uuid": "7a083628-47a5-4d8f-9f1d-9b1f0ad98dd7", - "start": { - "$date": "2021-02-28T06:28:45.000Z" - }, - "end": { - "$date": "2021-02-28T07:04:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "210e4e54-36c1-4c64-b98d-c0ee2c29e785", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T06:41:34.000Z" - }, - "end": { - "$date": "2021-02-28T07:17:43.000Z" - }, - "events": [ - { - "uuid": "25501d43-0029-4a4a-ac61-f63c2f9484b1", - "start": { - "$date": "2021-02-28T06:41:34.000Z" - }, - "end": { - "$date": "2021-02-28T07:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf1de0ff-a411-4910-967e-aefba7717341", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-28T06:47:26.000Z" - }, - "end": { - "$date": "2021-02-28T07:29:12.000Z" - }, - "events": [ - { - "uuid": "ac821263-9a59-4a9b-8032-953efa2b0df6", - "start": { - "$date": "2021-02-28T06:47:26.000Z" - }, - "end": { - "$date": "2021-02-28T07:29:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "84686160-ffe6-4a59-b40a-34c17d5cadfe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T07:07:27.000Z" - }, - "end": { - "$date": "2021-02-28T08:17:37.000Z" - }, - "events": [ - { - "uuid": "2ce65d24-8a5d-416b-92bc-e8b7389981c7", - "start": { - "$date": "2021-02-28T07:07:27.000Z" - }, - "end": { - "$date": "2021-02-28T08:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "600771ab-132c-497d-977b-3aee3f69c0d0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T07:07:32.000Z" - }, - "end": { - "$date": "2021-02-28T07:24:09.000Z" - }, - "events": [ - { - "uuid": "a443481c-9b55-4797-b896-f58ca1d7447f", - "start": { - "$date": "2021-02-28T07:07:32.000Z" - }, - "end": { - "$date": "2021-02-28T07:24:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "a5e34dd8-a50b-4fa5-8c38-e0ddc181a3e9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-28T07:11:02.000Z" - }, - "end": { - "$date": "2021-02-28T07:41:36.000Z" - }, - "events": [ - { - "uuid": "1afca17f-0948-4516-bcf4-d74956d5ac38", - "start": { - "$date": "2021-02-28T07:11:02.000Z" - }, - "end": { - "$date": "2021-02-28T07:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ad035c6-0452-45a2-bca1-2767de32090a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-02-28T09:16:00.000Z" - }, - "end": { - "$date": "2021-02-28T09:16:40.000Z" - }, - "events": [ - { - "uuid": "d3c6d607-5750-4277-b0e2-56ff10bd1daf", - "start": { - "$date": "2021-02-28T09:16:00.000Z" - }, - "end": { - "$date": "2021-02-28T09:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "052b62e5-1910-4ad9-b3cc-c0085d988ce6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-28T07:41:51.000Z" - }, - "end": { - "$date": "2021-02-28T09:21:52.000Z" - }, - "events": [ - { - "uuid": "d669ea61-2648-4ac5-a6b7-2b7e8298d083", - "start": { - "$date": "2021-02-28T07:41:51.000Z" - }, - "end": { - "$date": "2021-02-28T09:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9377629a-47ac-4bfb-b665-c77e52b45096", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-28T07:42:24.000Z" - }, - "end": { - "$date": "2021-02-28T09:21:08.000Z" - }, - "events": [ - { - "uuid": "59b4d6d7-9f46-4d48-be80-01fe8d604c05", - "start": { - "$date": "2021-02-28T07:42:24.000Z" - }, - "end": { - "$date": "2021-02-28T09:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c11280c0-4733-4787-960c-938831cafd85", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-02-28T08:36:08.000Z" - }, - "end": { - "$date": "2021-02-28T10:06:31.000Z" - }, - "events": [ - { - "uuid": "d37466ac-4be1-44ce-807d-16c43e44c629", - "start": { - "$date": "2021-02-28T08:36:08.000Z" - }, - "end": { - "$date": "2021-02-28T10:06:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8005aa8d-4c5e-40b4-8982-7cc896aaa5db", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-02-28T09:28:46.000Z" - }, - "end": { - "$date": "2021-02-28T09:51:57.000Z" - }, - "events": [ - { - "uuid": "2a3ec24d-8280-493d-b3c8-f401555a58ea", - "start": { - "$date": "2021-02-28T09:28:46.000Z" - }, - "end": { - "$date": "2021-02-28T09:51:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f4647f31-a921-443d-bfa2-b5c790d663ec", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-28T09:29:32.000Z" - }, - "end": { - "$date": "2021-02-28T09:35:51.000Z" - }, - "events": [ - { - "uuid": "318684de-3234-4b9e-b9d1-8a01e9184e16", - "start": { - "$date": "2021-02-28T09:29:32.000Z" - }, - "end": { - "$date": "2021-02-28T09:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "a5646cb3-43f2-4273-abfc-46eac62d4ca6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T16:03:41.000Z" - }, - "end": { - "$date": "2021-02-28T16:28:56.000Z" - }, - "events": [ - { - "uuid": "0c4efc91-3bb5-4591-a0c0-b10f4ed5b889", - "start": { - "$date": "2021-02-28T16:03:41.000Z" - }, - "end": { - "$date": "2021-02-28T16:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "bd58ae20-f3c5-43be-90f6-b082555656d5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T16:29:11.000Z" - }, - "end": { - "$date": "2021-02-28T16:59:12.000Z" - }, - "events": [ - { - "uuid": "842688b8-f194-4629-a6b8-93ee6d54c40c", - "start": { - "$date": "2021-02-28T16:29:11.000Z" - }, - "end": { - "$date": "2021-02-28T16:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "437bf6fd-3407-4e93-bb6c-f0637554ba96", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T17:19:49.000Z" - }, - "end": { - "$date": "2021-02-28T17:21:39.000Z" - }, - "events": [ - { - "uuid": "dfd12f45-f3b3-4a22-acdf-6ad6c2d0daf2", - "start": { - "$date": "2021-02-28T17:19:49.000Z" - }, - "end": { - "$date": "2021-02-28T17:21:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "56022583-7bf1-4c89-824f-3bc06f270375", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T17:22:09.000Z" - }, - "end": { - "$date": "2021-02-28T17:48:57.000Z" - }, - "events": [ - { - "uuid": "6a718ab8-8f14-4bb4-9560-5334656981e9", - "start": { - "$date": "2021-02-28T17:22:09.000Z" - }, - "end": { - "$date": "2021-02-28T17:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "87943e24-7432-4683-994d-08d2af00e4e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T17:49:10.000Z" - }, - "end": { - "$date": "2021-02-28T18:29:05.000Z" - }, - "events": [ - { - "uuid": "7899f171-5360-423e-8e6a-4f0b0f8cd891", - "start": { - "$date": "2021-02-28T17:49:10.000Z" - }, - "end": { - "$date": "2021-02-28T18:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "415ab0a7-42a3-4e41-befd-96a0d5531822", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T17:50:20.000Z" - }, - "end": { - "$date": "2021-02-28T18:23:11.000Z" - }, - "events": [ - { - "uuid": "6be915dc-c7af-4bbc-b49e-cee044b35369", - "start": { - "$date": "2021-02-28T17:50:20.000Z" - }, - "end": { - "$date": "2021-02-28T18:23:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "608d06df-abbe-44b1-b57f-34c0182c57cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T17:55:56.000Z" - }, - "end": { - "$date": "2021-02-28T18:26:43.000Z" - }, - "events": [ - { - "uuid": "4489290a-1464-4e30-a777-7705f03a9700", - "start": { - "$date": "2021-02-28T17:55:56.000Z" - }, - "end": { - "$date": "2021-02-28T18:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "58342a95-6ed3-4b38-9c10-a811e51dd5d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T18:07:08.000Z" - }, - "end": { - "$date": "2021-02-28T18:17:05.000Z" - }, - "events": [ - { - "uuid": "83a2e8f7-f1dd-4523-bddb-f5023983180f", - "start": { - "$date": "2021-02-28T18:07:08.000Z" - }, - "end": { - "$date": "2021-02-28T18:17:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f47bc862-7865-4997-9393-b6beb9792f0c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T18:24:42.000Z" - }, - "end": { - "$date": "2021-02-28T19:21:01.000Z" - }, - "events": [ - { - "uuid": "5f345bdf-5d84-4806-b48b-d1a2a5fd040f", - "start": { - "$date": "2021-02-28T18:24:42.000Z" - }, - "end": { - "$date": "2021-02-28T19:21:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d58d256b-c04a-4c95-83b9-0024b9917463", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T18:46:23.000Z" - }, - "end": { - "$date": "2021-02-28T18:48:49.000Z" - }, - "events": [ - { - "uuid": "48bc69c6-f7f6-4bd8-96ef-ca65e181dfb0", - "start": { - "$date": "2021-02-28T18:46:23.000Z" - }, - "end": { - "$date": "2021-02-28T18:48:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6d76548-792c-4052-9f1e-58e43853dedc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T18:51:31.000Z" - }, - "end": { - "$date": "2021-02-28T19:27:50.000Z" - }, - "events": [ - { - "uuid": "a5c6ba5f-1f17-4bfe-8138-a67a40e60b75", - "start": { - "$date": "2021-02-28T18:51:31.000Z" - }, - "end": { - "$date": "2021-02-28T19:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d901c40d-cc19-4527-936d-fa3b465b2a48", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T21:15:56.000Z" - }, - "end": { - "$date": "2021-02-28T21:46:23.000Z" - }, - "events": [ - { - "uuid": "c8cf9d36-a71a-41c8-b129-f8c43a07dc2f", - "start": { - "$date": "2021-02-28T21:15:56.000Z" - }, - "end": { - "$date": "2021-02-28T21:33:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a65ab6e7-ab60-46f2-9caf-4d6f0679479c", - "start": { - "$date": "2021-02-28T21:33:56.000Z" - }, - "end": { - "$date": "2021-02-28T21:34:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b8aafe18-d94f-4076-a60c-49f99b8f73d9", - "start": { - "$date": "2021-02-28T21:34:56.000Z" - }, - "end": { - "$date": "2021-02-28T21:53:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6a232d1-8dc5-4d92-8fa1-0e82c0efb132", - "start": { - "$date": "2021-02-28T21:53:56.000Z" - }, - "end": { - "$date": "2021-02-28T21:54:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9de15c2f-7765-4405-a6f7-33caeb3a05b8", - "start": { - "$date": "2021-02-28T21:54:56.000Z" - }, - "end": { - "$date": "2021-02-28T22:04:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e548ac29-2a79-4111-86b6-32ff60a21ed0", - "start": { - "$date": "2021-02-28T22:04:56.000Z" - }, - "end": { - "$date": "2021-02-28T22:45:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4af55014-4e77-47d0-b38d-9a7b5596eae6", - "start": { - "$date": "2021-02-28T22:45:56.000Z" - }, - "end": { - "$date": "2021-02-28T21:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "5aed781d-abba-48fd-b82d-c297333d747a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T19:14:13.000Z" - }, - "end": { - "$date": "2021-02-28T19:27:41.000Z" - }, - "events": [ - { - "uuid": "ab1bd258-eda8-419a-9944-60f81890d421", - "start": { - "$date": "2021-02-28T19:14:13.000Z" - }, - "end": { - "$date": "2021-02-28T19:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "9c27e5aa-9490-4172-9030-482bed2b8a58", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T19:23:31.000Z" - }, - "end": { - "$date": "2021-02-28T21:44:27.000Z" - }, - "events": [ - { - "uuid": "e301e134-c2b0-464f-aab5-008fe54e899b", - "start": { - "$date": "2021-02-28T19:23:31.000Z" - }, - "end": { - "$date": "2021-02-28T20:19:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1354785f-9771-4500-bb4b-fe9eab6174d1", - "start": { - "$date": "2021-02-28T20:19:31.000Z" - }, - "end": { - "$date": "2021-02-28T20:44:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c496b41-8d0a-4f75-8c5e-3b844148bc65", - "start": { - "$date": "2021-02-28T20:44:31.000Z" - }, - "end": { - "$date": "2021-02-28T20:54:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ca858abe-990d-4244-902c-eb7ef5b70142", - "start": { - "$date": "2021-02-28T20:54:31.000Z" - }, - "end": { - "$date": "2021-02-28T21:03:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a26eab09-c633-4150-9543-b65e06cf266f", - "start": { - "$date": "2021-02-28T21:03:31.000Z" - }, - "end": { - "$date": "2021-02-28T21:31:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81c7a3db-80b2-443f-9f7c-eb27474083de", - "start": { - "$date": "2021-02-28T21:31:31.000Z" - }, - "end": { - "$date": "2021-02-28T21:44:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdb8f654-41c9-4e15-b00d-b57a102d2cef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T19:36:40.000Z" - }, - "end": { - "$date": "2021-02-28T20:12:10.000Z" - }, - "events": [ - { - "uuid": "021e3316-701f-45b9-a280-668cd90322ea", - "start": { - "$date": "2021-02-28T19:36:40.000Z" - }, - "end": { - "$date": "2021-02-28T20:12:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5704070d-068a-4132-ae07-148eabbda371", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T21:03:22.000Z" - }, - "end": { - "$date": "2021-02-28T21:27:15.000Z" - }, - "events": [ - { - "uuid": "28fd211d-a56a-42af-94a5-4114fc907149", - "start": { - "$date": "2021-02-28T21:03:22.000Z" - }, - "end": { - "$date": "2021-02-28T21:16:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "382bd859-4676-43ef-9cc3-6c86158d847f", - "start": { - "$date": "2021-02-28T21:16:22.000Z" - }, - "end": { - "$date": "2021-02-28T21:33:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "922cc287-8157-45e7-a0e7-6a232bfe569b", - "start": { - "$date": "2021-02-28T21:33:22.000Z" - }, - "end": { - "$date": "2021-02-28T21:35:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "679dd2ef-09d4-4093-a66b-3fb20538b56e", - "start": { - "$date": "2021-02-28T21:35:22.000Z" - }, - "end": { - "$date": "2021-02-28T21:46:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "110084c6-fb55-41a3-b5a0-0a6e0c711ebd", - "start": { - "$date": "2021-02-28T21:46:22.000Z" - }, - "end": { - "$date": "2021-02-28T21:27:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e3d2e4b-5ff6-434c-9e5a-40bade6e1435", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T21:31:51.000Z" - }, - "end": { - "$date": "2021-02-28T22:00:04.000Z" - }, - "events": [ - { - "uuid": "d49fdc0f-a887-4b10-984e-873335707d02", - "start": { - "$date": "2021-02-28T21:31:51.000Z" - }, - "end": { - "$date": "2021-02-28T22:00:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fa2819ca-6f4f-4106-8b68-a901583e753c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-02-28T21:46:34.000Z" - }, - "end": { - "$date": "2021-02-28T22:18:19.000Z" - }, - "events": [ - { - "uuid": "461aa6fd-2b43-4768-9ae3-74c3e04608eb", - "start": { - "$date": "2021-02-28T21:46:34.000Z" - }, - "end": { - "$date": "2021-02-28T22:18:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63937371-71bc-46c6-aaf7-f5a86caa6b2b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T22:13:14.000Z" - }, - "end": { - "$date": "2021-02-28T22:44:22.000Z" - }, - "events": [ - { - "uuid": "bbb5df74-f863-409f-875c-f2b96454ad80", - "start": { - "$date": "2021-02-28T22:13:14.000Z" - }, - "end": { - "$date": "2021-02-28T22:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a4ddc89f-54ac-45ec-b59a-8de1ddfa350b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-02-28T22:15:34.000Z" - }, - "end": { - "$date": "2021-02-28T23:17:23.000Z" - }, - "events": [ - { - "uuid": "365683f0-28f6-4bc3-8eeb-013cc2ab4be7", - "start": { - "$date": "2021-02-28T22:15:34.000Z" - }, - "end": { - "$date": "2021-02-28T23:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "27ecb6a0-5d51-4f59-8519-3221641c8057", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-02-28T22:16:49.000Z" - }, - "end": { - "$date": "2021-03-01T04:10:38.000Z" - }, - "events": [ - { - "uuid": "0639f68f-0dfc-45c2-819e-b59e17dda39e", - "start": { - "$date": "2021-02-28T22:16:49.000Z" - }, - "end": { - "$date": "2021-03-01T01:06:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "742d3bb5-44ad-4ad2-8cdb-782a405e2269", - "start": { - "$date": "2021-03-01T01:06:49.000Z" - }, - "end": { - "$date": "2021-03-01T01:11:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "748e003b-9701-4b02-a1bc-77232d7518e1", - "start": { - "$date": "2021-03-01T01:11:49.000Z" - }, - "end": { - "$date": "2021-03-01T01:21:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce075d7c-2a92-471d-9a9d-fa80c33fc737", - "start": { - "$date": "2021-03-01T01:21:49.000Z" - }, - "end": { - "$date": "2021-03-01T01:37:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4613dabd-d9b4-4581-ac06-e3d158592702", - "start": { - "$date": "2021-03-01T01:37:49.000Z" - }, - "end": { - "$date": "2021-03-01T04:03:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce7d35a3-7d46-42b3-b6b8-0ad0480e8557", - "start": { - "$date": "2021-03-01T04:03:49.000Z" - }, - "end": { - "$date": "2021-03-01T04:08:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "49de3b20-aeb2-4463-9d05-27abd4fdda92", - "start": { - "$date": "2021-03-01T04:08:49.000Z" - }, - "end": { - "$date": "2021-03-01T04:10:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "f1d68498-0052-4b54-ac21-4838bad02663", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-02-28T22:21:34.000Z" - }, - "end": { - "$date": "2021-03-01T00:08:12.000Z" - }, - "events": [ - { - "uuid": "06369ab9-dcc7-4ffe-ae30-0e29305101d1", - "start": { - "$date": "2021-02-28T22:21:34.000Z" - }, - "end": { - "$date": "2021-03-01T00:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f9fe9c3c-bc81-477c-9b83-e5ba38844bb4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-02-28T22:23:51.000Z" - }, - "end": { - "$date": "2021-03-01T13:53:20.000Z" - }, - "events": [ - { - "uuid": "747722e6-577e-4390-ba2d-9ec3f6704535", - "start": { - "$date": "2021-02-28T22:23:51.000Z" - }, - "end": { - "$date": "2021-03-01T00:16:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85019fdc-1723-42d3-a363-7af8cfcc9b89", - "start": { - "$date": "2021-03-01T00:16:51.000Z" - }, - "end": { - "$date": "2021-03-01T00:51:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f4b9ca16-4387-4934-9a8e-292690e0f860", - "start": { - "$date": "2021-03-01T00:51:51.000Z" - }, - "end": { - "$date": "2021-03-01T01:01:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8b16ea8-a5e4-45c1-b20c-1c08f37555d5", - "start": { - "$date": "2021-03-01T01:01:51.000Z" - }, - "end": { - "$date": "2021-03-01T13:19:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "714a12f6-a410-436b-82ab-988069b304ce", - "start": { - "$date": "2021-03-01T13:19:51.000Z" - }, - "end": { - "$date": "2021-03-01T13:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba081810-248e-4b29-b3fe-81f561b847ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T22:32:54.000Z" - }, - "end": { - "$date": "2021-02-28T22:55:52.000Z" - }, - "events": [ - { - "uuid": "6d704c18-f83a-4c17-a849-8320dea70b41", - "start": { - "$date": "2021-02-28T22:32:54.000Z" - }, - "end": { - "$date": "2021-02-28T22:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10db28f1-a1ee-48af-8874-d548ecd03355", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-02-28T23:09:08.000Z" - }, - "end": { - "$date": "2021-02-28T23:35:15.000Z" - }, - "events": [ - { - "uuid": "f818f675-b05d-4478-80bd-77c6e9c1c136", - "start": { - "$date": "2021-02-28T23:09:08.000Z" - }, - "end": { - "$date": "2021-02-28T23:35:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1870ad14-a0e2-409f-8655-56e5a2c7b83d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-02-28T23:26:29.000Z" - }, - "end": { - "$date": "2021-02-28T23:56:03.000Z" - }, - "events": [ - { - "uuid": "84f0fcf2-ccd1-4c29-82f9-d2bb1a963e0d", - "start": { - "$date": "2021-02-28T23:26:29.000Z" - }, - "end": { - "$date": "2021-02-28T23:56:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d83ac29b-e432-4cc7-90bd-7008a56f32e9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-01T01:33:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:04:25.000Z" - }, - "events": [ - { - "uuid": "bfca216b-132b-4520-bca1-609c653b6e88", - "start": { - "$date": "2021-03-01T01:33:29.000Z" - }, - "end": { - "$date": "2021-03-01T01:44:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f75c09a7-0fe1-44c9-b986-dde30fc2432f", - "start": { - "$date": "2021-03-01T01:44:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:10:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "93e5ecb3-aa1b-43af-9d07-598d9ea4a3d8", - "start": { - "$date": "2021-03-01T02:10:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:32:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2f5744e-6f01-41cd-99bc-a20137f593a0", - "start": { - "$date": "2021-03-01T02:32:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:52:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14ad599f-1210-4fd4-b06f-af8a13fb8948", - "start": { - "$date": "2021-03-01T02:52:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:55:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3305d855-84b5-48e8-9321-b8f7d080b2da", - "start": { - "$date": "2021-03-01T02:55:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:58:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f2adfd0-83b2-43e5-896f-ac2cb1aaaeac", - "start": { - "$date": "2021-03-01T02:58:29.000Z" - }, - "end": { - "$date": "2021-03-01T02:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1cecd285-f126-4b71-ae82-c5a25ececd7d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-01T00:20:50.000Z" - }, - "end": { - "$date": "2021-03-01T02:48:34.000Z" - }, - "events": [ - { - "uuid": "78e74684-965c-4f19-aeb8-569b5b2beda8", - "start": { - "$date": "2021-03-01T00:20:50.000Z" - }, - "end": { - "$date": "2021-03-01T01:31:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29450e80-b3c3-432d-aa37-caf4cfcc2c07", - "start": { - "$date": "2021-03-01T01:31:50.000Z" - }, - "end": { - "$date": "2021-03-01T01:34:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "199c4e7c-8ef8-4a16-83c4-130e4beeaf53", - "start": { - "$date": "2021-03-01T01:34:50.000Z" - }, - "end": { - "$date": "2021-03-01T01:44:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ba49a66-c90a-40f4-b5ee-3ab697347fbb", - "start": { - "$date": "2021-03-01T01:44:50.000Z" - }, - "end": { - "$date": "2021-03-01T01:54:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4ae8466-06b1-4e49-90b1-349e09fd2504", - "start": { - "$date": "2021-03-01T01:54:50.000Z" - }, - "end": { - "$date": "2021-03-01T01:56:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46e22a91-16f6-4456-a1a0-af7b0e8418e0", - "start": { - "$date": "2021-03-01T01:56:50.000Z" - }, - "end": { - "$date": "2021-03-01T02:01:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ac88ef7-f63a-420c-b9d6-05f380eab258", - "start": { - "$date": "2021-03-01T02:01:50.000Z" - }, - "end": { - "$date": "2021-03-01T02:12:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eaf5eae3-8496-423c-bf50-678a7208943f", - "start": { - "$date": "2021-03-01T02:12:50.000Z" - }, - "end": { - "$date": "2021-03-01T02:13:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f9683235-053c-4247-b42f-e8afa739ab31", - "start": { - "$date": "2021-03-01T02:13:50.000Z" - }, - "end": { - "$date": "2021-03-01T02:26:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af7fd6db-5c60-4847-8a8b-789a02ebf410", - "start": { - "$date": "2021-03-01T02:26:50.000Z" - }, - "end": { - "$date": "2021-03-01T02:48:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "659cbafa-4f3c-4c38-a730-f38ee01060fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T01:52:01.000Z" - }, - "end": { - "$date": "2021-03-01T01:52:05.000Z" - }, - "events": [ - { - "uuid": "619ad94d-e8b5-4180-9c06-34a1b1b48639", - "start": { - "$date": "2021-03-01T01:52:01.000Z" - }, - "end": { - "$date": "2021-03-01T01:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b2cfbc31-e246-4b9e-a9ca-ca86b8d21c00", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T00:57:23.000Z" - }, - "end": { - "$date": "2021-03-01T02:31:10.000Z" - }, - "events": [ - { - "uuid": "12cfb63a-2afe-42ee-a8cb-abaf728cb340", - "start": { - "$date": "2021-03-01T00:57:23.000Z" - }, - "end": { - "$date": "2021-03-01T02:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0dc6e434-38e5-4d29-9f52-f59c9bdc5e70", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T01:13:25.000Z" - }, - "end": { - "$date": "2021-03-01T02:14:46.000Z" - }, - "events": [ - { - "uuid": "a4c5d280-735d-4c0a-a0fd-2b7c06fa3364", - "start": { - "$date": "2021-03-01T01:13:25.000Z" - }, - "end": { - "$date": "2021-03-01T02:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ae050a9b-3c9c-4950-8a05-ef58625cf23a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T01:58:36.000Z" - }, - "end": { - "$date": "2021-03-01T01:58:41.000Z" - }, - "events": [ - { - "uuid": "4b471cc8-ac63-4b4d-986c-8bec65988c2c", - "start": { - "$date": "2021-03-01T01:58:36.000Z" - }, - "end": { - "$date": "2021-03-01T01:58:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "3c1d89b4-b4c5-4e13-bc36-b16c9d050f64", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T02:36:33.000Z" - }, - "end": { - "$date": "2021-03-01T02:36:37.000Z" - }, - "events": [ - { - "uuid": "98ea07b1-0fe8-4263-ba56-7fac183bdfb5", - "start": { - "$date": "2021-03-01T02:36:33.000Z" - }, - "end": { - "$date": "2021-03-01T02:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "692c5479-a0d5-4c6a-a12e-840a4be0b728", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-01T02:17:35.000Z" - }, - "end": { - "$date": "2021-03-01T02:53:40.000Z" - }, - "events": [ - { - "uuid": "71e8d777-cef4-4600-8bbc-ea35792399b3", - "start": { - "$date": "2021-03-01T02:17:35.000Z" - }, - "end": { - "$date": "2021-03-01T02:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "26564939-4895-4ee5-9118-9c824de5aa1a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-01T02:27:26.000Z" - }, - "end": { - "$date": "2021-03-01T05:04:51.000Z" - }, - "events": [ - { - "uuid": "45df394f-0ce0-41e5-a925-8fe76ef0bbf0", - "start": { - "$date": "2021-03-01T02:27:26.000Z" - }, - "end": { - "$date": "2021-03-01T03:05:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b53e14d1-c888-49c3-b3bc-ceaf6a79039b", - "start": { - "$date": "2021-03-01T03:05:26.000Z" - }, - "end": { - "$date": "2021-03-01T03:10:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0371e954-f57a-46a3-be12-65c272278521", - "start": { - "$date": "2021-03-01T03:10:26.000Z" - }, - "end": { - "$date": "2021-03-01T03:20:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a273baa-22b7-4ae6-9292-787a1551b15b", - "start": { - "$date": "2021-03-01T03:20:26.000Z" - }, - "end": { - "$date": "2021-03-01T03:29:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1bbc0c37-1988-48aa-ae3d-54189fb24499", - "start": { - "$date": "2021-03-01T03:29:26.000Z" - }, - "end": { - "$date": "2021-03-01T05:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "59e03a09-8939-4c3e-aa1f-71dfe9415390", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T02:32:00.000Z" - }, - "end": { - "$date": "2021-03-01T03:21:48.000Z" - }, - "events": [ - { - "uuid": "e0e181e7-8e40-4b2d-932b-2987bc66a321", - "start": { - "$date": "2021-03-01T02:32:00.000Z" - }, - "end": { - "$date": "2021-03-01T03:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c35eeeb2-e8ef-4ab5-b6c4-d3ce375701a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T02:36:48.000Z" - }, - "end": { - "$date": "2021-03-01T02:39:27.000Z" - }, - "events": [ - { - "uuid": "58c75f64-4a1e-440e-99af-afab98a1a387", - "start": { - "$date": "2021-03-01T02:36:48.000Z" - }, - "end": { - "$date": "2021-03-01T02:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "538021a7-bec7-4a2c-80db-5847dd3c4381", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T02:38:33.000Z" - }, - "end": { - "$date": "2021-03-01T03:25:35.000Z" - }, - "events": [ - { - "uuid": "3bae4d27-e0dd-4cbe-9c29-5221bd4c0640", - "start": { - "$date": "2021-03-01T02:38:33.000Z" - }, - "end": { - "$date": "2021-03-01T03:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "da77181a-4142-460a-94ea-da4ada3c8018", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T02:39:38.000Z" - }, - "end": { - "$date": "2021-03-01T02:42:28.000Z" - }, - "events": [ - { - "uuid": "e6cef558-d921-472d-9c80-fec6a2231f74", - "start": { - "$date": "2021-03-01T02:39:38.000Z" - }, - "end": { - "$date": "2021-03-01T02:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "f71978ff-9af6-4948-8ca9-c707133d2457", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T02:42:38.000Z" - }, - "end": { - "$date": "2021-03-01T02:48:38.000Z" - }, - "events": [ - { - "uuid": "6b787f5f-99d1-482e-93fd-c2271f4ef955", - "start": { - "$date": "2021-03-01T02:42:38.000Z" - }, - "end": { - "$date": "2021-03-01T02:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e89680d0-c353-4924-8acb-15bb751e1f57", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-01T03:45:32.000Z" - }, - "end": { - "$date": "2021-03-01T04:20:01.000Z" - }, - "events": [ - { - "uuid": "5532806a-83f7-4b81-a462-81b7e2f212e4", - "start": { - "$date": "2021-03-01T03:45:32.000Z" - }, - "end": { - "$date": "2021-03-01T03:57:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f21e1677-d97f-4c6b-a8ce-326cd3360196", - "start": { - "$date": "2021-03-01T03:57:32.000Z" - }, - "end": { - "$date": "2021-03-01T04:10:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b046d456-70c3-4eaf-9952-6e2cda28d50d", - "start": { - "$date": "2021-03-01T04:10:32.000Z" - }, - "end": { - "$date": "2021-03-01T04:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0fd63884-55ef-4024-afb6-a56b3aa9ecd4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T03:21:58.000Z" - }, - "end": { - "$date": "2021-03-01T03:51:59.000Z" - }, - "events": [ - { - "uuid": "bf726f25-2b85-4ee6-8279-03c069c2820e", - "start": { - "$date": "2021-03-01T03:21:58.000Z" - }, - "end": { - "$date": "2021-03-01T03:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "824c3c01-5245-456b-89f5-7f1a993f1028", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-01T03:30:23.000Z" - }, - "end": { - "$date": "2021-03-01T05:27:48.000Z" - }, - "events": [ - { - "uuid": "745cadb6-9399-4a78-af77-a6ce8effe16c", - "start": { - "$date": "2021-03-01T03:30:23.000Z" - }, - "end": { - "$date": "2021-03-01T05:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebbd7fde-2a0f-473a-af90-1f0f37c1258a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-01T03:45:31.000Z" - }, - "end": { - "$date": "2021-03-01T04:19:53.000Z" - }, - "events": [ - { - "uuid": "a517cb52-ede7-4675-864a-1a449b6977c3", - "start": { - "$date": "2021-03-01T03:45:31.000Z" - }, - "end": { - "$date": "2021-03-01T04:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7ca77870-42d6-4a0f-95af-db69e39b8b9d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T03:52:14.000Z" - }, - "end": { - "$date": "2021-03-01T07:49:00.000Z" - }, - "events": [ - { - "uuid": "0ae2fdb6-457d-4e42-a878-ad5a3266124e", - "start": { - "$date": "2021-03-01T03:52:14.000Z" - }, - "end": { - "$date": "2021-03-01T07:49:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "525d349d-82b4-4c79-a8e9-39cfcfa1632d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-01T04:26:44.000Z" - }, - "end": { - "$date": "2021-03-01T04:49:46.000Z" - }, - "events": [ - { - "uuid": "f6fb2782-b07f-40b0-9d98-1e00d2944546", - "start": { - "$date": "2021-03-01T04:26:44.000Z" - }, - "end": { - "$date": "2021-03-01T04:49:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17e9d8ae-6492-4c27-87e8-cfc229895db8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-01T04:25:37.000Z" - }, - "end": { - "$date": "2021-03-01T04:49:43.000Z" - }, - "events": [ - { - "uuid": "cbfc88f5-a708-410c-998f-954f9bca3ad9", - "start": { - "$date": "2021-03-01T04:25:37.000Z" - }, - "end": { - "$date": "2021-03-01T04:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "a930dabe-5ec1-406f-a759-78b63d6d2724", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T04:24:34.000Z" - }, - "end": { - "$date": "2021-03-01T06:26:51.000Z" - }, - "events": [ - { - "uuid": "be24adf3-6c5e-4c5a-97b7-5c80c4fa8b3a", - "start": { - "$date": "2021-03-01T04:24:34.000Z" - }, - "end": { - "$date": "2021-03-01T06:26:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e16bf72e-4cd8-41cf-8743-6f256f1cc533", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-01T04:38:17.000Z" - }, - "end": { - "$date": "2021-03-01T05:31:28.000Z" - }, - "events": [ - { - "uuid": "435c1fb0-29fa-4eb9-9ca7-6caafe53791c", - "start": { - "$date": "2021-03-01T04:38:17.000Z" - }, - "end": { - "$date": "2021-03-01T05:31:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2aa48f0-4027-4eca-85f5-27b20e157777", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-01T04:54:00.000Z" - }, - "end": { - "$date": "2021-03-01T05:41:11.000Z" - }, - "events": [ - { - "uuid": "574c1c31-87b3-4afd-bc87-c8dab9d96b67", - "start": { - "$date": "2021-03-01T04:54:00.000Z" - }, - "end": { - "$date": "2021-03-01T05:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "169c66d6-f10e-432e-91d8-69521d9b7b33", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-01T04:54:18.000Z" - }, - "end": { - "$date": "2021-03-01T05:40:59.000Z" - }, - "events": [ - { - "uuid": "6ddc97db-f5c2-44ae-8744-0bef6e6785c7", - "start": { - "$date": "2021-03-01T04:54:18.000Z" - }, - "end": { - "$date": "2021-03-01T05:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6dea02e2-7daf-4411-8731-cc8d48360d24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-01T05:12:49.000Z" - }, - "end": { - "$date": "2021-03-01T06:33:42.000Z" - }, - "events": [ - { - "uuid": "ae881d75-0d5a-4329-8067-98221424e321", - "start": { - "$date": "2021-03-01T05:12:49.000Z" - }, - "end": { - "$date": "2021-03-01T06:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "acab43b4-5df3-469a-b772-4d3038eda99e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-01T05:31:50.000Z" - }, - "end": { - "$date": "2021-03-01T06:14:03.000Z" - }, - "events": [ - { - "uuid": "3183f811-4c47-4da4-958b-864d4a1ea358", - "start": { - "$date": "2021-03-01T05:31:50.000Z" - }, - "end": { - "$date": "2021-03-01T06:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "26d9a180-11ce-4874-9d9f-12e59576e768", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-01T06:34:32.000Z" - }, - "end": { - "$date": "2021-03-01T06:39:48.000Z" - }, - "events": [ - { - "uuid": "06250c4f-3b05-4df7-ab89-be22748cd68b", - "start": { - "$date": "2021-03-01T06:34:32.000Z" - }, - "end": { - "$date": "2021-03-01T06:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "38d9a99d-e02a-402a-99f7-3024c69e7911", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-01T06:40:48.000Z" - }, - "end": { - "$date": "2021-03-01T06:49:43.000Z" - }, - "events": [ - { - "uuid": "873121d1-bc5b-4f1d-98fe-2753eb29c6b6", - "start": { - "$date": "2021-03-01T06:40:48.000Z" - }, - "end": { - "$date": "2021-03-01T06:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e97a0ef4-3dee-4f4c-9a36-ee75d2545d2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T06:45:42.000Z" - }, - "end": { - "$date": "2021-03-01T06:59:04.000Z" - }, - "events": [ - { - "uuid": "7f07dc35-c746-47f6-932e-c3bc47312d39", - "start": { - "$date": "2021-03-01T06:45:42.000Z" - }, - "end": { - "$date": "2021-03-01T06:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7a80d48-fca5-4939-9c36-616533650018", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T14:41:36.000Z" - }, - "end": { - "$date": "2021-03-01T15:11:33.000Z" - }, - "events": [ - { - "uuid": "250f685a-9e7b-42c9-8a59-d08b36fa6b36", - "start": { - "$date": "2021-03-01T14:41:36.000Z" - }, - "end": { - "$date": "2021-03-01T15:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9518dc77-4578-4069-8187-0be5b4dc853e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T15:14:07.000Z" - }, - "end": { - "$date": "2021-03-01T15:44:20.000Z" - }, - "events": [ - { - "uuid": "70b3bbba-0284-4630-b4fb-741a83a952f2", - "start": { - "$date": "2021-03-01T15:14:07.000Z" - }, - "end": { - "$date": "2021-03-01T15:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "29722366-1f77-434f-9575-5a880eb68f34", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T15:20:34.000Z" - }, - "end": { - "$date": "2021-03-01T15:45:50.000Z" - }, - "events": [ - { - "uuid": "940cf906-b8af-4cae-8dd0-264849fc15bd", - "start": { - "$date": "2021-03-01T15:20:34.000Z" - }, - "end": { - "$date": "2021-03-01T15:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1c4a3e24-1479-4445-a2d3-294d2eefa042", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T15:35:10.000Z" - }, - "end": { - "$date": "2021-03-01T15:36:40.000Z" - }, - "events": [ - { - "uuid": "c59d211d-78f5-47bc-92ce-bb25d0f574b9", - "start": { - "$date": "2021-03-01T15:35:10.000Z" - }, - "end": { - "$date": "2021-03-01T15:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b287e0c6-8cba-496a-84ca-d9633627c41c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T15:46:00.000Z" - }, - "end": { - "$date": "2021-03-01T17:19:16.000Z" - }, - "events": [ - { - "uuid": "37c475dd-b14a-4a1b-9183-69fc2fbf16f0", - "start": { - "$date": "2021-03-01T15:46:00.000Z" - }, - "end": { - "$date": "2021-03-01T15:56:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0daf311b-032a-4482-b958-bc443700751b", - "start": { - "$date": "2021-03-01T15:56:00.000Z" - }, - "end": { - "$date": "2021-03-01T16:01:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0bb2e481-29fc-4885-a492-781745bde1de", - "start": { - "$date": "2021-03-01T16:01:00.000Z" - }, - "end": { - "$date": "2021-03-01T16:11:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a45ce0d5-2215-4f87-a273-f249dcd4ac00", - "start": { - "$date": "2021-03-01T16:11:00.000Z" - }, - "end": { - "$date": "2021-03-01T16:13:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5aceb541-df21-4225-b178-ed5516dd149e", - "start": { - "$date": "2021-03-01T16:13:00.000Z" - }, - "end": { - "$date": "2021-03-01T17:18:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a87bd089-e2cb-4fc2-a855-573c42e91a6b", - "start": { - "$date": "2021-03-01T17:18:00.000Z" - }, - "end": { - "$date": "2021-03-01T17:19:16.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1bd39df1-5aba-4568-9a4c-ed36c780f1a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T16:18:41.000Z" - }, - "end": { - "$date": "2021-03-01T16:52:18.000Z" - }, - "events": [ - { - "uuid": "50c3a184-0b8c-44da-8067-d0ddf2ac2da1", - "start": { - "$date": "2021-03-01T16:18:41.000Z" - }, - "end": { - "$date": "2021-03-01T16:52:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ff9866d8-ef67-42c3-8a49-834d4a9c94ce", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T17:02:37.000Z" - }, - "end": { - "$date": "2021-03-01T17:05:07.000Z" - }, - "events": [ - { - "uuid": "13101595-e0e9-45db-9fa0-a335fb2e3363", - "start": { - "$date": "2021-03-01T17:02:37.000Z" - }, - "end": { - "$date": "2021-03-01T17:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dafb462d-2650-4a45-b11b-4a196e2478d1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T17:20:44.000Z" - }, - "end": { - "$date": "2021-03-01T19:06:28.000Z" - }, - "events": [ - { - "uuid": "f280e029-f8cf-4153-a9df-00dc94d8e93f", - "start": { - "$date": "2021-03-01T17:20:44.000Z" - }, - "end": { - "$date": "2021-03-01T19:06:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "864f28bd-12a0-495b-9740-11f3fe4603a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T17:21:11.000Z" - }, - "end": { - "$date": "2021-03-01T19:05:02.000Z" - }, - "events": [ - { - "uuid": "fd37f1b6-72cd-42d1-b63e-2782a3d4079a", - "start": { - "$date": "2021-03-01T17:21:11.000Z" - }, - "end": { - "$date": "2021-03-01T18:44:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fde87305-e3c6-43fd-bb2b-b7308d4697e0", - "start": { - "$date": "2021-03-01T18:44:11.000Z" - }, - "end": { - "$date": "2021-03-01T18:49:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54a32fb0-3419-4a92-89fe-70e67a111b99", - "start": { - "$date": "2021-03-01T18:49:11.000Z" - }, - "end": { - "$date": "2021-03-01T18:59:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d2158928-60fa-4063-b37a-02394897e0ff", - "start": { - "$date": "2021-03-01T18:59:11.000Z" - }, - "end": { - "$date": "2021-03-01T19:05:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46d37259-020c-4e76-aa9e-ed3bf7174c98", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T17:38:41.000Z" - }, - "end": { - "$date": "2021-03-01T18:08:58.000Z" - }, - "events": [ - { - "uuid": "2e68c7e0-7db5-4d31-a93e-442db15c2b9e", - "start": { - "$date": "2021-03-01T17:38:41.000Z" - }, - "end": { - "$date": "2021-03-01T18:08:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e4c1c078-9d06-475e-be47-2e5007f61386", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-01T18:12:46.000Z" - }, - "end": { - "$date": "2021-03-01T22:39:01.000Z" - }, - "events": [ - { - "uuid": "723e1926-d617-41b8-b527-39704da13d30", - "start": { - "$date": "2021-03-01T18:12:46.000Z" - }, - "end": { - "$date": "2021-03-01T22:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "890a1743-3c07-4561-b411-092160806548", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T19:05:57.000Z" - }, - "end": { - "$date": "2021-03-01T20:38:30.000Z" - }, - "events": [ - { - "uuid": "ffe56d18-263d-4c6f-98cb-072c20432876", - "start": { - "$date": "2021-03-01T19:05:57.000Z" - }, - "end": { - "$date": "2021-03-01T20:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "de586030-42fb-4aba-983a-e012cb74f1f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T19:06:53.000Z" - }, - "end": { - "$date": "2021-03-01T21:50:56.000Z" - }, - "events": [ - { - "uuid": "35de5a23-3cc9-4b60-b603-b78bc28ecfe4", - "start": { - "$date": "2021-03-01T19:06:53.000Z" - }, - "end": { - "$date": "2021-03-01T20:45:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a2c856a-a432-4b2e-a775-e4df6f4b6047", - "start": { - "$date": "2021-03-01T20:45:53.000Z" - }, - "end": { - "$date": "2021-03-01T21:22:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f4fc4374-71dc-4314-a38a-31832386ad52", - "start": { - "$date": "2021-03-01T21:22:53.000Z" - }, - "end": { - "$date": "2021-03-01T21:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "593bfa68-18fb-402c-9923-7b8302ce2543", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T19:51:52.000Z" - }, - "end": { - "$date": "2021-03-01T20:18:25.000Z" - }, - "events": [ - { - "uuid": "d3468179-931a-4ba2-8262-add87380593d", - "start": { - "$date": "2021-03-01T19:51:52.000Z" - }, - "end": { - "$date": "2021-03-01T20:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8f0ac9d-4753-4fba-8786-151cee68d0f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T20:21:24.000Z" - }, - "end": { - "$date": "2021-03-01T20:47:56.000Z" - }, - "events": [ - { - "uuid": "429ea651-7373-4ccc-969f-f4462d8c8cda", - "start": { - "$date": "2021-03-01T20:21:24.000Z" - }, - "end": { - "$date": "2021-03-01T20:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "db7beedc-0a8d-4c47-8026-bccfcf42e8ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T21:46:23.000Z" - }, - "end": { - "$date": "2021-03-01T22:02:19.000Z" - }, - "events": [ - { - "uuid": "77f25ccd-3d73-4afa-b677-7c66971bd673", - "start": { - "$date": "2021-03-01T21:46:23.000Z" - }, - "end": { - "$date": "2021-03-01T22:02:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "46bd8ad8-d835-46d0-89e5-88c5429e295d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-01T21:51:56.000Z" - }, - "end": { - "$date": "2021-03-02T02:12:28.000Z" - }, - "events": [ - { - "uuid": "a9ba3682-8dd6-496f-a100-60986068e6da", - "start": { - "$date": "2021-03-01T21:51:56.000Z" - }, - "end": { - "$date": "2021-03-02T02:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7ef4bd48-b5cb-4605-ba35-d4cd9553ae67", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-01T22:02:29.000Z" - }, - "end": { - "$date": "2021-03-02T00:13:44.000Z" - }, - "events": [ - { - "uuid": "9af46966-e06b-40a1-8618-4bd86a52d7e1", - "start": { - "$date": "2021-03-01T22:02:29.000Z" - }, - "end": { - "$date": "2021-03-02T00:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a40e2268-48ad-45bf-a856-785c0675c6d1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-01T22:39:26.000Z" - }, - "end": { - "$date": "2021-03-01T23:34:23.000Z" - }, - "events": [ - { - "uuid": "97f4987e-fa22-4d22-a07c-9cfa123cee36", - "start": { - "$date": "2021-03-01T22:39:26.000Z" - }, - "end": { - "$date": "2021-03-01T23:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6c2f37e2-e084-48e2-b716-02432e63a013", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-01T23:57:42.000Z" - }, - "end": { - "$date": "2021-03-01T23:58:58.000Z" - }, - "events": [ - { - "uuid": "3551eed3-8f98-4e10-90bd-09a986fb862d", - "start": { - "$date": "2021-03-01T23:57:42.000Z" - }, - "end": { - "$date": "2021-03-01T23:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "34a12441-b63c-4f52-998d-8325475c75d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T01:28:11.000Z" - }, - "end": { - "$date": "2021-03-02T01:31:37.000Z" - }, - "events": [ - { - "uuid": "b63bb503-6682-4867-82d4-37a177e142cd", - "start": { - "$date": "2021-03-02T01:28:11.000Z" - }, - "end": { - "$date": "2021-03-02T01:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f036e4aa-2176-4b43-9899-05ee12e4bcb2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-02T00:09:26.000Z" - }, - "end": { - "$date": "2021-03-02T00:39:47.000Z" - }, - "events": [ - { - "uuid": "c243bae8-2190-4332-ac63-39b9face1a5e", - "start": { - "$date": "2021-03-02T00:09:26.000Z" - }, - "end": { - "$date": "2021-03-02T00:39:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "80e0e0d7-adc1-46ad-8074-9949f525525f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-02T00:38:49.000Z" - }, - "end": { - "$date": "2021-03-02T01:12:04.000Z" - }, - "events": [ - { - "uuid": "dca12aa0-db83-429b-8ffb-b4f46f0d3a0e", - "start": { - "$date": "2021-03-02T00:38:49.000Z" - }, - "end": { - "$date": "2021-03-02T01:12:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5aab0779-a769-4ae5-a10e-77f6e2e97f2b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-02T00:42:12.000Z" - }, - "end": { - "$date": "2021-03-02T03:49:59.000Z" - }, - "events": [ - { - "uuid": "c81d66b6-aa1c-4335-b765-ebb225dcc62e", - "start": { - "$date": "2021-03-02T00:42:12.000Z" - }, - "end": { - "$date": "2021-03-02T02:30:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3e1bce5-7e7b-4d71-b191-d01d5f1b3d0a", - "start": { - "$date": "2021-03-02T02:30:12.000Z" - }, - "end": { - "$date": "2021-03-02T02:31:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "585942c4-bb61-4228-8bee-ce85a40058b0", - "start": { - "$date": "2021-03-02T02:31:12.000Z" - }, - "end": { - "$date": "2021-03-02T03:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ef3bd9f6-4ad6-458b-9c51-79827187829e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-02T01:02:15.000Z" - }, - "end": { - "$date": "2021-03-02T02:12:30.000Z" - }, - "events": [ - { - "uuid": "8fb53178-9996-401b-83a7-6e2a2be4b777", - "start": { - "$date": "2021-03-02T01:02:15.000Z" - }, - "end": { - "$date": "2021-03-02T02:12:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4de323af-8b74-42d4-bac4-07f2dbd72606", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-02T01:23:35.000Z" - }, - "end": { - "$date": "2021-03-02T01:33:56.000Z" - }, - "events": [ - { - "uuid": "1a1299b6-eb6d-46e6-9814-0c61b32374ce", - "start": { - "$date": "2021-03-02T01:23:35.000Z" - }, - "end": { - "$date": "2021-03-02T01:33:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "06a7bc6b-f13b-4a23-9d3f-bdfad29de325", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-02T01:39:45.000Z" - }, - "end": { - "$date": "2021-03-02T02:36:31.000Z" - }, - "events": [ - { - "uuid": "c7202d28-87db-4efb-be32-d73545cae963", - "start": { - "$date": "2021-03-02T01:39:45.000Z" - }, - "end": { - "$date": "2021-03-02T02:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d2c6b74c-034e-4316-98c0-19e6c4b2a697", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-02T02:52:00.000Z" - }, - "end": { - "$date": "2021-03-02T04:04:54.000Z" - }, - "events": [ - { - "uuid": "32269843-6055-4305-8f0e-b94dd2e8be1f", - "start": { - "$date": "2021-03-02T02:52:00.000Z" - }, - "end": { - "$date": "2021-03-02T04:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "8a441a2c-4734-4b15-bad4-542a14a93933", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-02T02:54:55.000Z" - }, - "end": { - "$date": "2021-03-02T03:06:00.000Z" - }, - "events": [ - { - "uuid": "f585564d-94c0-4fa7-957f-5a2b8ee4c494", - "start": { - "$date": "2021-03-02T02:54:55.000Z" - }, - "end": { - "$date": "2021-03-02T03:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3e7abcea-7fe2-434e-ad5a-34509f366207", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-02T03:06:10.000Z" - }, - "end": { - "$date": "2021-03-02T04:22:22.000Z" - }, - "events": [ - { - "uuid": "0525df97-f5d2-4b99-8022-412f4afbae2d", - "start": { - "$date": "2021-03-02T03:06:10.000Z" - }, - "end": { - "$date": "2021-03-02T04:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "838419f4-acd5-4cfa-81c0-88eb3a2fb7b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-02T03:20:13.000Z" - }, - "end": { - "$date": "2021-03-02T04:23:50.000Z" - }, - "events": [ - { - "uuid": "d2b1a1c5-fd7e-4402-a8de-dd2726ec66c0", - "start": { - "$date": "2021-03-02T03:20:13.000Z" - }, - "end": { - "$date": "2021-03-02T04:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "34c5157c-a91f-4bf9-a2c7-dd6af564d299", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-02T03:47:53.000Z" - }, - "end": { - "$date": "2021-03-02T04:49:12.000Z" - }, - "events": [ - { - "uuid": "7c3988f7-aa8b-475a-8499-394c8fe35feb", - "start": { - "$date": "2021-03-02T03:47:53.000Z" - }, - "end": { - "$date": "2021-03-02T04:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d6b2e8e4-e176-4760-a484-1b04d9312eb2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T04:21:07.000Z" - }, - "end": { - "$date": "2021-03-02T05:34:24.000Z" - }, - "events": [ - { - "uuid": "8b598c54-9678-4e8d-81e1-7ed3fb2421bd", - "start": { - "$date": "2021-03-02T04:21:07.000Z" - }, - "end": { - "$date": "2021-03-02T05:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1702fbd3-6a7a-4d1e-a565-81d76dbe4249", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-02T04:24:45.000Z" - }, - "end": { - "$date": "2021-03-02T04:32:42.000Z" - }, - "events": [ - { - "uuid": "af59199d-6a04-4c47-bd52-8a0a33af8f22", - "start": { - "$date": "2021-03-02T04:24:45.000Z" - }, - "end": { - "$date": "2021-03-02T04:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6e8fe771-4b46-47ac-8993-84b24ba15560", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-02T04:25:50.000Z" - }, - "end": { - "$date": "2021-03-02T05:36:53.000Z" - }, - "events": [ - { - "uuid": "ce8641c8-2c98-4f8f-a004-d39cf2eae9b3", - "start": { - "$date": "2021-03-02T04:25:50.000Z" - }, - "end": { - "$date": "2021-03-02T05:36:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "126580df-62fd-435f-9a6f-2158ab0903bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-02T04:33:07.000Z" - }, - "end": { - "$date": "2021-03-02T05:04:16.000Z" - }, - "events": [ - { - "uuid": "c63478b3-e47a-4a62-aead-7604dc9e3813", - "start": { - "$date": "2021-03-02T04:33:07.000Z" - }, - "end": { - "$date": "2021-03-02T05:04:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5733e685-9df1-431c-99e5-c7bcd8f475dc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-02T04:39:32.000Z" - }, - "end": { - "$date": "2021-03-02T05:22:19.000Z" - }, - "events": [ - { - "uuid": "788c242c-2fb7-446d-bd3a-fd6fffff7b4f", - "start": { - "$date": "2021-03-02T04:39:32.000Z" - }, - "end": { - "$date": "2021-03-02T05:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e47717c0-3952-454b-b1a0-0323e9c3a1a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-02T06:18:37.000Z" - }, - "end": { - "$date": "2021-03-02T07:05:44.000Z" - }, - "events": [ - { - "uuid": "aff05412-90f4-4f7a-90fa-c3ae1795617f", - "start": { - "$date": "2021-03-02T06:18:37.000Z" - }, - "end": { - "$date": "2021-03-02T07:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fa5a65b7-4e4d-4fb5-98b6-abb3ee2bc3e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-02T05:06:12.000Z" - }, - "end": { - "$date": "2021-03-02T06:02:04.000Z" - }, - "events": [ - { - "uuid": "a1ebef9b-34b2-4bee-81fc-ee5b3c3a7fb2", - "start": { - "$date": "2021-03-02T05:06:12.000Z" - }, - "end": { - "$date": "2021-03-02T06:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "058b7d8f-90ec-4e55-9052-db2700e1d2ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-02T06:00:13.000Z" - }, - "end": { - "$date": "2021-03-02T07:47:47.000Z" - }, - "events": [ - { - "uuid": "0bd62bf9-4c81-4a9b-9d85-1cc3790c8dbf", - "start": { - "$date": "2021-03-02T06:00:13.000Z" - }, - "end": { - "$date": "2021-03-02T07:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "cec1f0f2-8d01-4d27-aeaa-907c2a12bdbf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-02T05:36:49.000Z" - }, - "end": { - "$date": "2021-03-02T05:38:34.000Z" - }, - "events": [ - { - "uuid": "e2eaea44-40b3-4c1a-bcfc-e5a61d79f9e9", - "start": { - "$date": "2021-03-02T05:36:49.000Z" - }, - "end": { - "$date": "2021-03-02T05:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4fdf2586-babe-4e40-b419-eea1357f78a4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-02T06:10:23.000Z" - }, - "end": { - "$date": "2021-03-02T06:18:39.000Z" - }, - "events": [ - { - "uuid": "fbc53885-7588-4aa5-a4bf-cecad926949f", - "start": { - "$date": "2021-03-02T06:10:23.000Z" - }, - "end": { - "$date": "2021-03-02T06:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f07226a1-4cd2-4e25-b7a9-c3494bab0ab8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-02T06:44:18.000Z" - }, - "end": { - "$date": "2021-03-02T07:32:00.000Z" - }, - "events": [ - { - "uuid": "a5798c19-0ddb-4135-bedb-05a78f434361", - "start": { - "$date": "2021-03-02T06:44:18.000Z" - }, - "end": { - "$date": "2021-03-02T07:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45ccb9fb-0bd5-4bc5-98a3-05c098eda5a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T16:38:15.000Z" - }, - "end": { - "$date": "2021-03-02T17:07:42.000Z" - }, - "events": [ - { - "uuid": "3ee2836c-b23d-4c0b-9871-5c9debf21d5a", - "start": { - "$date": "2021-03-02T16:38:15.000Z" - }, - "end": { - "$date": "2021-03-02T17:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dafee7e1-5842-4ab5-91dc-b78dbd0ff240", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T17:16:07.000Z" - }, - "end": { - "$date": "2021-03-02T17:53:30.000Z" - }, - "events": [ - { - "uuid": "b276d0bd-6c25-49e0-a386-d9d8689029cc", - "start": { - "$date": "2021-03-02T17:16:07.000Z" - }, - "end": { - "$date": "2021-03-02T17:53:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "360249da-03c2-4f25-9329-1c3094563659", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-02T17:51:30.000Z" - }, - "end": { - "$date": "2021-03-02T17:54:15.000Z" - }, - "events": [ - { - "uuid": "a1404d1a-98df-49f0-a426-3f9a990e7afb", - "start": { - "$date": "2021-03-02T17:51:30.000Z" - }, - "end": { - "$date": "2021-03-02T17:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1fb24153-b93c-4418-bc28-3cd86fc4f2f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-02T18:24:13.000Z" - }, - "end": { - "$date": "2021-03-02T18:53:56.000Z" - }, - "events": [ - { - "uuid": "f7cff1d1-59a2-4ada-afa1-8c1a92f3d54e", - "start": { - "$date": "2021-03-02T18:24:13.000Z" - }, - "end": { - "$date": "2021-03-02T18:53:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e10f3d6e-5cdc-4679-b5d1-c44e515a11d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T18:25:12.000Z" - }, - "end": { - "$date": "2021-03-02T18:55:53.000Z" - }, - "events": [ - { - "uuid": "75b25150-bad9-4844-ad55-20c294e285e4", - "start": { - "$date": "2021-03-02T18:25:12.000Z" - }, - "end": { - "$date": "2021-03-02T18:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7edd0ee6-46ba-4bc2-8ada-5d45af708119", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-02T19:24:31.000Z" - }, - "end": { - "$date": "2021-03-02T19:24:28.000Z" - }, - "events": [ - { - "uuid": "73f6a162-308f-4324-b511-1726c4f6dc6b", - "start": { - "$date": "2021-03-02T19:24:31.000Z" - }, - "end": { - "$date": "2021-03-02T19:24:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "46b0adcd-b0bc-4cc9-958a-8b17a5f832ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-02T19:24:41.000Z" - }, - "end": { - "$date": "2021-03-02T19:26:29.000Z" - }, - "events": [ - { - "uuid": "ff8dc443-88a6-43fd-91d3-55f01a4570a6", - "start": { - "$date": "2021-03-02T19:24:41.000Z" - }, - "end": { - "$date": "2021-03-02T19:26:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4fc5ad7-c472-4d05-979b-8dba04aa8d7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T20:12:14.000Z" - }, - "end": { - "$date": "2021-03-02T20:43:45.000Z" - }, - "events": [ - { - "uuid": "28a10982-cfb3-4158-9409-16174a743121", - "start": { - "$date": "2021-03-02T20:12:14.000Z" - }, - "end": { - "$date": "2021-03-02T20:43:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80c39dd9-e8ac-4d15-992f-f322b26688f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-02T20:45:41.000Z" - }, - "end": { - "$date": "2021-03-02T21:19:57.000Z" - }, - "events": [ - { - "uuid": "460a8e69-0e16-4098-aa27-986f3c5a0174", - "start": { - "$date": "2021-03-02T20:45:41.000Z" - }, - "end": { - "$date": "2021-03-02T21:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3b841e45-66a9-4cdf-83f0-52c640be583c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-02T21:09:41.000Z" - }, - "end": { - "$date": "2021-03-02T23:09:12.000Z" - }, - "events": [ - { - "uuid": "981e7a2c-eb67-4e19-a5a0-8e59374f0cdf", - "start": { - "$date": "2021-03-02T21:09:41.000Z" - }, - "end": { - "$date": "2021-03-02T23:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f9be094c-07c7-48c4-9077-b4bc05c24fcc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-02T22:14:15.000Z" - }, - "end": { - "$date": "2021-03-02T22:56:58.000Z" - }, - "events": [ - { - "uuid": "00f4f226-6128-4782-950b-64d166522f97", - "start": { - "$date": "2021-03-02T22:14:15.000Z" - }, - "end": { - "$date": "2021-03-02T22:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1526586b-0ec3-45ee-9839-d11968c6c04f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-02T22:51:26.000Z" - }, - "end": { - "$date": "2021-03-03T02:57:01.000Z" - }, - "events": [ - { - "uuid": "29ed7754-2e8f-4752-9023-80e5b52f3d9f", - "start": { - "$date": "2021-03-02T22:51:26.000Z" - }, - "end": { - "$date": "2021-03-03T01:24:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41307cdd-729b-4af9-b7ba-b47e1805961a", - "start": { - "$date": "2021-03-03T01:24:26.000Z" - }, - "end": { - "$date": "2021-03-03T01:29:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3435f5bb-c4f5-4574-8140-4ce51e8f0167", - "start": { - "$date": "2021-03-03T01:29:26.000Z" - }, - "end": { - "$date": "2021-03-03T01:48:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3603b673-a4db-40b2-8bb2-567732cfba3a", - "start": { - "$date": "2021-03-03T01:48:26.000Z" - }, - "end": { - "$date": "2021-03-03T01:49:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f5c48c25-db7b-4dc4-bd6f-f7ed15a6a724", - "start": { - "$date": "2021-03-03T01:49:26.000Z" - }, - "end": { - "$date": "2021-03-03T02:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e5d563dc-ee98-48c5-a250-c38374e36117", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-02T22:57:28.000Z" - }, - "end": { - "$date": "2021-03-03T00:43:20.000Z" - }, - "events": [ - { - "uuid": "92d41f0f-8a0f-49fb-901f-1b48d5ca382a", - "start": { - "$date": "2021-03-02T22:57:28.000Z" - }, - "end": { - "$date": "2021-03-03T00:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d85dfdf8-bf28-4585-b45d-28084fe859e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-03T00:40:06.000Z" - }, - "end": { - "$date": "2021-03-03T01:12:44.000Z" - }, - "events": [ - { - "uuid": "b6fe9636-1f77-4b8f-a4c5-b39dc469429e", - "start": { - "$date": "2021-03-03T00:40:06.000Z" - }, - "end": { - "$date": "2021-03-03T01:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "72498dfa-8ad7-4989-9636-cf3300192e7c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-03T00:58:11.000Z" - }, - "end": { - "$date": "2021-03-03T03:01:40.000Z" - }, - "events": [ - { - "uuid": "356f9c34-ba1d-40cb-9f9d-8b55e1f3fa7f", - "start": { - "$date": "2021-03-03T00:58:11.000Z" - }, - "end": { - "$date": "2021-03-03T03:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bef4ba05-1af3-496b-95d0-b48b8c8c1b27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-03T01:04:42.000Z" - }, - "end": { - "$date": "2021-03-03T02:25:37.000Z" - }, - "events": [ - { - "uuid": "9b338bf8-38e1-41a2-9a6a-941bf1e723dd", - "start": { - "$date": "2021-03-03T01:04:42.000Z" - }, - "end": { - "$date": "2021-03-03T02:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "389bdc94-350f-4ea7-b7f2-84c96eb3df89", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-03T01:37:24.000Z" - }, - "end": { - "$date": "2021-03-03T01:51:35.000Z" - }, - "events": [ - { - "uuid": "0021911a-3583-4ad7-9162-fce8e9080162", - "start": { - "$date": "2021-03-03T01:37:24.000Z" - }, - "end": { - "$date": "2021-03-03T01:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "884d4916-7882-4868-914d-17c3c3857f77", - "uuid": "87904f01-b119-43b7-8f8b-3bae6b89af2e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-03T01:32:34.000Z" - }, - "end": { - "$date": "2021-03-03T03:37:48.000Z" - }, - "events": [ - { - "uuid": "b22ea15f-7923-4d39-8103-4f8f6eda985e", - "start": { - "$date": "2021-03-03T01:32:34.000Z" - }, - "end": { - "$date": "2021-03-03T03:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "8a88db61-08ad-4bb7-869d-915e9d664960", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T01:35:04.000Z" - }, - "end": { - "$date": "2021-03-03T01:37:36.000Z" - }, - "events": [ - { - "uuid": "b4dd9105-70ba-4464-b66b-bf783d98115b", - "start": { - "$date": "2021-03-03T01:35:04.000Z" - }, - "end": { - "$date": "2021-03-03T01:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "b9861bef-a388-4c2e-89d9-ee80b6ae94fe", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T01:38:10.000Z" - }, - "end": { - "$date": "2021-03-03T01:46:37.000Z" - }, - "events": [ - { - "uuid": "c7ab3114-a0f5-4524-9171-40b477f237bf", - "start": { - "$date": "2021-03-03T01:38:10.000Z" - }, - "end": { - "$date": "2021-03-03T01:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "b007dcef-1b29-4e53-a746-e028ed0ed111", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T01:48:11.000Z" - }, - "end": { - "$date": "2021-03-03T01:48:18.000Z" - }, - "events": [ - { - "uuid": "050f9338-a37b-4d44-ac20-77ca620ebd65", - "start": { - "$date": "2021-03-03T01:48:11.000Z" - }, - "end": { - "$date": "2021-03-03T01:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "14bc8e5f-86ea-4c1c-81b7-36cb8ccbe887", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T01:58:44.000Z" - }, - "end": { - "$date": "2021-03-03T02:01:19.000Z" - }, - "events": [ - { - "uuid": "ffb1f82c-43fa-486a-9c64-4569f88c3a73", - "start": { - "$date": "2021-03-03T01:58:44.000Z" - }, - "end": { - "$date": "2021-03-03T02:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a5d15a6f-2fff-43cb-9f49-d6a32b242d19", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-03T01:04:10.000Z" - }, - "end": { - "$date": "2021-03-03T05:02:54.000Z" - }, - "events": [ - { - "uuid": "7448c087-ee18-42ba-a6e5-bdc73455c849", - "start": { - "$date": "2021-03-03T01:04:10.000Z" - }, - "end": { - "$date": "2021-03-03T01:08:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13abab04-b657-4ca0-900b-a2d1db253e0e", - "start": { - "$date": "2021-03-03T01:08:10.000Z" - }, - "end": { - "$date": "2021-03-03T02:18:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5dcf3cc8-aba4-45cc-8d25-bf5822c2456a", - "start": { - "$date": "2021-03-03T02:18:10.000Z" - }, - "end": { - "$date": "2021-03-03T02:23:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c03e9934-c7a7-4497-a3d2-be27a2841e7f", - "start": { - "$date": "2021-03-03T02:23:10.000Z" - }, - "end": { - "$date": "2021-03-03T02:34:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d00523d0-d20b-41dc-94e0-ebe17b262815", - "start": { - "$date": "2021-03-03T02:34:10.000Z" - }, - "end": { - "$date": "2021-03-03T02:39:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a85cdebc-20fe-4f4a-91fa-ae0317217a5b", - "start": { - "$date": "2021-03-03T02:39:10.000Z" - }, - "end": { - "$date": "2021-03-03T02:52:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9dfab4a7-0497-4632-b6a4-54f064a9d736", - "start": { - "$date": "2021-03-03T02:52:10.000Z" - }, - "end": { - "$date": "2021-03-03T02:57:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a750b318-1c17-416a-98e2-bef652b56e6f", - "start": { - "$date": "2021-03-03T02:57:10.000Z" - }, - "end": { - "$date": "2021-03-03T03:18:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "95eb8129-eeaa-4fb8-9c4c-6c4eef61fe1e", - "start": { - "$date": "2021-03-03T03:18:10.000Z" - }, - "end": { - "$date": "2021-03-03T03:21:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ceb61db3-3914-4b78-aa8f-1aaaeb007a34", - "start": { - "$date": "2021-03-03T03:21:10.000Z" - }, - "end": { - "$date": "2021-03-03T03:42:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7a5fb24-71d3-45bc-b8ee-90074ab8a247", - "start": { - "$date": "2021-03-03T03:42:10.000Z" - }, - "end": { - "$date": "2021-03-03T05:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "56eb59f1-5e63-4747-91b1-3856c25310f2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T02:02:59.000Z" - }, - "end": { - "$date": "2021-03-03T02:04:14.000Z" - }, - "events": [ - { - "uuid": "bf777a2f-c44a-49e6-90bb-7b1737db40ed", - "start": { - "$date": "2021-03-03T02:02:59.000Z" - }, - "end": { - "$date": "2021-03-03T02:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "65fb81fc-5a93-487d-8140-45cd18d78be9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T02:09:40.000Z" - }, - "end": { - "$date": "2021-03-03T02:35:53.000Z" - }, - "events": [ - { - "uuid": "abe98432-d0a4-4e85-90c2-78b57bff113d", - "start": { - "$date": "2021-03-03T02:09:40.000Z" - }, - "end": { - "$date": "2021-03-03T02:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "70abd38e-2a2f-4b1b-8fae-aad7f8a2e733", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-03T03:01:47.000Z" - }, - "end": { - "$date": "2021-03-03T03:03:33.000Z" - }, - "events": [ - { - "uuid": "dfb69fae-1da6-40e7-bf59-721cd154e1aa", - "start": { - "$date": "2021-03-03T03:01:47.000Z" - }, - "end": { - "$date": "2021-03-03T03:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "626f364e-1e2a-41fd-be51-da5efa810155", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-03T03:05:47.000Z" - }, - "end": { - "$date": "2021-03-03T04:08:51.000Z" - }, - "events": [ - { - "uuid": "0190eb55-b560-4d48-ba97-312731af5dd9", - "start": { - "$date": "2021-03-03T03:05:47.000Z" - }, - "end": { - "$date": "2021-03-03T04:08:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "04b5d69e-17f8-431c-bca4-47d53e0d04d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-03T03:14:15.000Z" - }, - "end": { - "$date": "2021-03-03T04:15:48.000Z" - }, - "events": [ - { - "uuid": "4389c527-5bff-4673-a2fc-55a468aba848", - "start": { - "$date": "2021-03-03T03:14:15.000Z" - }, - "end": { - "$date": "2021-03-03T04:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "53de5182-36a4-4ff1-9855-eef52d0e60ff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-03T03:20:55.000Z" - }, - "end": { - "$date": "2021-03-03T03:51:52.000Z" - }, - "events": [ - { - "uuid": "87ca5bbf-5a49-4439-82ec-4e158337e4f6", - "start": { - "$date": "2021-03-03T03:20:55.000Z" - }, - "end": { - "$date": "2021-03-03T03:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d9934c31-ade5-4450-af19-d7767caa7c10", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T03:24:52.000Z" - }, - "end": { - "$date": "2021-03-03T03:27:53.000Z" - }, - "events": [ - { - "uuid": "2bdff273-135d-4cd4-aa98-3c8bf1ef70ed", - "start": { - "$date": "2021-03-03T03:24:52.000Z" - }, - "end": { - "$date": "2021-03-03T03:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "066f66ed-c300-4a16-ae1a-0fd3b0580e37", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T04:02:32.000Z" - }, - "end": { - "$date": "2021-03-03T04:02:37.000Z" - }, - "events": [ - { - "uuid": "6baec3c3-24bb-46ff-b178-32000fd070a0", - "start": { - "$date": "2021-03-03T04:02:32.000Z" - }, - "end": { - "$date": "2021-03-03T04:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "63f5bc17-6de1-4442-b6e5-23c3863d4925", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-03T03:52:26.000Z" - }, - "end": { - "$date": "2021-03-03T07:31:24.000Z" - }, - "events": [ - { - "uuid": "d26eec4e-9d5a-45bb-8b2e-61bfefc66d48", - "start": { - "$date": "2021-03-03T03:52:26.000Z" - }, - "end": { - "$date": "2021-03-03T07:31:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "884d4916-7882-4868-914d-17c3c3857f77", - "uuid": "2385e36a-81f3-4515-9b72-5f0a05d99605", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-03T03:54:31.000Z" - }, - "end": { - "$date": "2021-03-03T05:25:20.000Z" - }, - "events": [ - { - "uuid": "d853acfe-7679-4830-99ee-dc215821c4c5", - "start": { - "$date": "2021-03-03T03:54:31.000Z" - }, - "end": { - "$date": "2021-03-03T05:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "12855c35-f014-45d7-8a13-ac158d3b95f8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T04:02:47.000Z" - }, - "end": { - "$date": "2021-03-03T04:11:23.000Z" - }, - "events": [ - { - "uuid": "7c5e7c9f-b977-4553-9c97-511376568c9b", - "start": { - "$date": "2021-03-03T04:02:47.000Z" - }, - "end": { - "$date": "2021-03-03T04:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "65d7075e-aa8c-4bac-9733-43a6c56020d9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T04:12:37.000Z" - }, - "end": { - "$date": "2021-03-03T04:19:18.000Z" - }, - "events": [ - { - "uuid": "8bff14d5-5354-4dce-871f-691bcf3d94b3", - "start": { - "$date": "2021-03-03T04:12:37.000Z" - }, - "end": { - "$date": "2021-03-03T04:19:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "59ec5e54-ef52-434a-b6c1-15132e9420b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-03T04:15:57.000Z" - }, - "end": { - "$date": "2021-03-03T04:18:38.000Z" - }, - "events": [ - { - "uuid": "6525690f-0ac8-4332-8abc-e57238a4884b", - "start": { - "$date": "2021-03-03T04:15:57.000Z" - }, - "end": { - "$date": "2021-03-03T04:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c52748a6-c0e9-43a1-b023-4b346956cd1a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-03T04:18:42.000Z" - }, - "end": { - "$date": "2021-03-03T04:55:14.000Z" - }, - "events": [ - { - "uuid": "1ac18aad-4e42-4248-9aab-de2ba6c8e29d", - "start": { - "$date": "2021-03-03T04:18:42.000Z" - }, - "end": { - "$date": "2021-03-03T04:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ecb1cc0c-94a6-4e78-ad72-a2294588c8a2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T04:26:28.000Z" - }, - "end": { - "$date": "2021-03-03T04:26:33.000Z" - }, - "events": [ - { - "uuid": "03d126b4-5e9d-4ffb-9b27-72d8ce77b125", - "start": { - "$date": "2021-03-03T04:26:28.000Z" - }, - "end": { - "$date": "2021-03-03T04:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "e2bc0a33-6f62-4b0c-8d62-a395a69de808", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-03T04:55:28.000Z" - }, - "end": { - "$date": "2021-03-03T06:04:41.000Z" - }, - "events": [ - { - "uuid": "cbeff271-0039-4de4-b534-7c224b324584", - "start": { - "$date": "2021-03-03T04:55:28.000Z" - }, - "end": { - "$date": "2021-03-03T06:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b85225f1-e895-42f3-b067-e9c1d7219733", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-03T05:17:57.000Z" - }, - "end": { - "$date": "2021-03-03T05:42:32.000Z" - }, - "events": [ - { - "uuid": "d04d38b7-ffe7-4913-b95d-1f18dca8b694", - "start": { - "$date": "2021-03-03T05:17:57.000Z" - }, - "end": { - "$date": "2021-03-03T05:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "18b083a8-843c-497e-8b83-4b8f21c8a61d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-03T05:26:35.000Z" - }, - "end": { - "$date": "2021-03-03T05:28:05.000Z" - }, - "events": [ - { - "uuid": "b85e9718-3554-4126-8f36-db5b069e4552", - "start": { - "$date": "2021-03-03T05:26:35.000Z" - }, - "end": { - "$date": "2021-03-03T05:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ff08a202-0817-41fb-9d87-5afcc0bdcd49", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-03T05:29:32.000Z" - }, - "end": { - "$date": "2021-03-03T06:05:14.000Z" - }, - "events": [ - { - "uuid": "fbac73f6-9b19-4dca-852a-4d85daca134b", - "start": { - "$date": "2021-03-03T05:29:32.000Z" - }, - "end": { - "$date": "2021-03-03T06:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "d7cf877a-4712-451e-b39a-a942a8277b45", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-03T05:31:06.000Z" - }, - "end": { - "$date": "2021-03-03T05:31:16.000Z" - }, - "events": [ - { - "uuid": "6e3326b4-b023-4b05-9658-2d15fcdd580b", - "start": { - "$date": "2021-03-03T05:31:06.000Z" - }, - "end": { - "$date": "2021-03-03T05:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", - "uuid": "de556ffe-cdbb-4a38-9bd2-3d2911d21b6e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-03T05:33:21.000Z" - }, - "end": { - "$date": "2021-03-03T05:43:09.000Z" - }, - "events": [ - { - "uuid": "131ed939-47a4-428e-853f-68f062257c90", - "start": { - "$date": "2021-03-03T05:33:21.000Z" - }, - "end": { - "$date": "2021-03-03T05:43:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "35b144c8-cc8e-47ef-ba1f-6213d7dd856f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-03T06:04:45.000Z" - }, - "end": { - "$date": "2021-03-03T06:04:51.000Z" - }, - "events": [ - { - "uuid": "9ad5e483-67b0-4629-891d-f3c40dbdbb5c", - "start": { - "$date": "2021-03-03T06:04:45.000Z" - }, - "end": { - "$date": "2021-03-03T06:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8d1a61b9-9fbf-491b-8ef1-5ef1a62d4f57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-03T06:05:15.000Z" - }, - "end": { - "$date": "2021-03-03T06:41:56.000Z" - }, - "events": [ - { - "uuid": "6dd3a38a-5cd6-4421-af80-6c25ffd804e2", - "start": { - "$date": "2021-03-03T06:05:15.000Z" - }, - "end": { - "$date": "2021-03-03T06:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "b5d691a9-d249-40e2-886b-83501a086fad", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T04:26:38.000Z" - }, - "end": { - "$date": "2021-03-03T07:31:09.000Z" - }, - "events": [ - { - "uuid": "bc295ff2-58f5-4546-acf1-f5ba64bd9225", - "start": { - "$date": "2021-03-03T04:26:38.000Z" - }, - "end": { - "$date": "2021-03-03T07:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "601d2a9c-da24-4b21-b1b4-47bb410ba375", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-03T17:26:03.000Z" - }, - "end": { - "$date": "2021-03-03T17:43:02.000Z" - }, - "events": [ - { - "uuid": "f0dac2c8-28c6-4cfa-964b-f972e24fb2aa", - "start": { - "$date": "2021-03-03T17:26:03.000Z" - }, - "end": { - "$date": "2021-03-03T17:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ccd8b994-1e97-49f9-b61d-1c28f88a8bf0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-03T19:34:33.000Z" - }, - "end": { - "$date": "2021-03-03T20:45:55.000Z" - }, - "events": [ - { - "uuid": "289b4b9d-a721-485f-90b7-e8f0010cac24", - "start": { - "$date": "2021-03-03T19:34:33.000Z" - }, - "end": { - "$date": "2021-03-03T20:45:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8721a0b5-3c8d-4556-a87a-37f8eaa3162b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-03T21:06:38.000Z" - }, - "end": { - "$date": "2021-03-03T22:25:50.000Z" - }, - "events": [ - { - "uuid": "accda0d7-175e-4f6d-a037-599eea079305", - "start": { - "$date": "2021-03-03T21:06:38.000Z" - }, - "end": { - "$date": "2021-03-03T22:25:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fe7fa89-6195-438f-89ec-da377b59966e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-03T21:42:24.000Z" - }, - "end": { - "$date": "2021-03-03T22:20:11.000Z" - }, - "events": [ - { - "uuid": "5f27c4e9-21ad-497b-bfc5-930c7fb482c9", - "start": { - "$date": "2021-03-03T21:42:24.000Z" - }, - "end": { - "$date": "2021-03-03T22:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "c0da1f87-6e66-46ab-adef-4315dd7167ba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-03T22:06:51.000Z" - }, - "end": { - "$date": "2021-03-03T22:08:02.000Z" - }, - "events": [ - { - "uuid": "8c7c0c24-6304-415d-9b6d-d150929feb4b", - "start": { - "$date": "2021-03-03T22:06:51.000Z" - }, - "end": { - "$date": "2021-03-03T22:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ed4bc5a5-02d8-46d5-99c6-7246e156f23e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-03T22:57:26.000Z" - }, - "end": { - "$date": "2021-03-03T23:57:20.000Z" - }, - "events": [ - { - "uuid": "9c1139d2-deda-4e12-a346-ef700011f349", - "start": { - "$date": "2021-03-03T22:57:26.000Z" - }, - "end": { - "$date": "2021-03-03T23:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", - "uuid": "b06713fe-8027-4cfc-8f6b-07d3f8759523", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-03T23:44:07.000Z" - }, - "end": { - "$date": "2021-03-04T00:01:11.000Z" - }, - "events": [ - { - "uuid": "2fb16530-63bd-48c1-bc7a-cebf73a70181", - "start": { - "$date": "2021-03-03T23:44:07.000Z" - }, - "end": { - "$date": "2021-03-04T00:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "87963b55-6f66-44aa-8992-fdd57a899e51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T00:52:42.000Z" - }, - "end": { - "$date": "2021-03-04T00:58:02.000Z" - }, - "events": [ - { - "uuid": "a216a55c-02d0-46a4-bf1e-2644e05359c7", - "start": { - "$date": "2021-03-04T00:52:42.000Z" - }, - "end": { - "$date": "2021-03-04T00:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "62207c2c-eb76-4530-ae04-68a3e2a332d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-04T00:54:01.000Z" - }, - "end": { - "$date": "2021-03-04T01:28:51.000Z" - }, - "events": [ - { - "uuid": "a98d44ee-fbea-4505-923e-8d1231753ffa", - "start": { - "$date": "2021-03-04T00:54:01.000Z" - }, - "end": { - "$date": "2021-03-04T01:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "091e40ee-348e-4c4e-ac2c-25d872e9b4c5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T00:58:13.000Z" - }, - "end": { - "$date": "2021-03-04T01:00:08.000Z" - }, - "events": [ - { - "uuid": "9c010bef-8cc5-4c0c-9a85-f31d9f013a46", - "start": { - "$date": "2021-03-04T00:58:13.000Z" - }, - "end": { - "$date": "2021-03-04T01:00:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0c08ad35-d12d-468d-ab49-468af0b2958a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T01:00:28.000Z" - }, - "end": { - "$date": "2021-03-04T01:20:53.000Z" - }, - "events": [ - { - "uuid": "e1f381e4-d626-4838-b516-db1a7c274aa0", - "start": { - "$date": "2021-03-04T01:00:28.000Z" - }, - "end": { - "$date": "2021-03-04T01:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e6828906-4e7b-4876-8ee4-11a66e544c9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T01:23:24.000Z" - }, - "end": { - "$date": "2021-03-04T01:28:59.000Z" - }, - "events": [ - { - "uuid": "128dbc63-00bb-4201-9064-b618026c11fb", - "start": { - "$date": "2021-03-04T01:23:24.000Z" - }, - "end": { - "$date": "2021-03-04T01:28:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0c01301e-e0a4-45ab-badf-6fbb9a3499b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T01:29:59.000Z" - }, - "end": { - "$date": "2021-03-04T02:40:40.000Z" - }, - "events": [ - { - "uuid": "b3315692-47f3-46da-bf37-c41ecb51ed5f", - "start": { - "$date": "2021-03-04T01:29:59.000Z" - }, - "end": { - "$date": "2021-03-04T02:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cad432b2-ddd7-499a-9bf9-1b5a562e7b5f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-04T02:47:40.000Z" - }, - "end": { - "$date": "2021-03-04T05:30:49.000Z" - }, - "events": [ - { - "uuid": "a78f2886-77cc-4c35-8af2-defb855977ba", - "start": { - "$date": "2021-03-04T02:47:40.000Z" - }, - "end": { - "$date": "2021-03-04T05:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "46cceefb-52aa-462e-8062-d17cac6333f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-04T02:48:47.000Z" - }, - "end": { - "$date": "2021-03-04T03:24:49.000Z" - }, - "events": [ - { - "uuid": "0d70005c-aac3-4931-b864-94885acb8437", - "start": { - "$date": "2021-03-04T02:48:47.000Z" - }, - "end": { - "$date": "2021-03-04T03:24:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d098d6e-186a-4fb4-a12d-e735afa401f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T03:21:27.000Z" - }, - "end": { - "$date": "2021-03-04T03:54:06.000Z" - }, - "events": [ - { - "uuid": "a074dd00-b3f4-478c-8acd-23aa08cd2ec5", - "start": { - "$date": "2021-03-04T03:21:27.000Z" - }, - "end": { - "$date": "2021-03-04T03:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c52d6e33-0855-4b46-924f-055a15759fd9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-04T03:24:42.000Z" - }, - "end": { - "$date": "2021-03-04T05:40:26.000Z" - }, - "events": [ - { - "uuid": "1a25db8b-ddcf-463b-8316-2bddbfb1a608", - "start": { - "$date": "2021-03-04T03:24:42.000Z" - }, - "end": { - "$date": "2021-03-04T05:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3aa7229c-78a8-41e6-86fb-27c1e467599b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-04T03:35:57.000Z" - }, - "end": { - "$date": "2021-03-04T04:14:32.000Z" - }, - "events": [ - { - "uuid": "bc082356-2a90-4760-bc34-2b438604fd8e", - "start": { - "$date": "2021-03-04T03:35:57.000Z" - }, - "end": { - "$date": "2021-03-04T04:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7e7bc989-30c7-4fbc-a1fe-9aaaa224226f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-04T03:34:51.000Z" - }, - "end": { - "$date": "2021-03-04T05:01:51.000Z" - }, - "events": [ - { - "uuid": "62f314fd-55f6-4e43-a844-a669dd9fe487", - "start": { - "$date": "2021-03-04T03:34:51.000Z" - }, - "end": { - "$date": "2021-03-04T05:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ec2b090-4f34-4f85-b9a7-b49069186662", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-04T03:39:22.000Z" - }, - "end": { - "$date": "2021-03-04T04:44:39.000Z" - }, - "events": [ - { - "uuid": "af32562d-2cf7-47ad-b1f1-9c8087009196", - "start": { - "$date": "2021-03-04T03:39:22.000Z" - }, - "end": { - "$date": "2021-03-04T04:44:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f92c6a80-f1f3-4cd7-80cc-a0baa3b4b46a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T03:59:15.000Z" - }, - "end": { - "$date": "2021-03-04T04:43:51.000Z" - }, - "events": [ - { - "uuid": "b344aee6-f5e2-42bb-9060-87d338aa92f4", - "start": { - "$date": "2021-03-04T03:59:15.000Z" - }, - "end": { - "$date": "2021-03-04T04:43:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4221e103-ce07-4064-8b5b-b1880498d910", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-04T04:40:09.000Z" - }, - "end": { - "$date": "2021-03-04T05:31:41.000Z" - }, - "events": [ - { - "uuid": "c2908ff5-230b-4063-94e3-46e592b06c9c", - "start": { - "$date": "2021-03-04T04:40:09.000Z" - }, - "end": { - "$date": "2021-03-04T05:31:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16df14aa-b4e7-4012-ab49-a220afd9ea9e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-04T04:40:41.000Z" - }, - "end": { - "$date": "2021-03-04T05:31:38.000Z" - }, - "events": [ - { - "uuid": "206ba96a-361a-41ec-affd-c9e15525aaab", - "start": { - "$date": "2021-03-04T04:40:41.000Z" - }, - "end": { - "$date": "2021-03-04T05:31:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "508eb7d9-ce03-4c91-9af5-f4b18db8ea44", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-04T04:46:25.000Z" - }, - "end": { - "$date": "2021-03-04T05:01:52.000Z" - }, - "events": [ - { - "uuid": "27f39d6a-20d5-4321-8228-4a0d0c3b6f03", - "start": { - "$date": "2021-03-04T04:46:25.000Z" - }, - "end": { - "$date": "2021-03-04T05:01:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4206a17c-96d2-4ef8-9e73-b9cba7c63a12", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-04T05:33:46.000Z" - }, - "end": { - "$date": "2021-03-04T06:38:22.000Z" - }, - "events": [ - { - "uuid": "f42b7f01-a205-4344-b43a-86e059114170", - "start": { - "$date": "2021-03-04T05:33:46.000Z" - }, - "end": { - "$date": "2021-03-04T06:38:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "bd098464-fcb9-482d-99ed-9722201ee6dc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-04T05:23:53.000Z" - }, - "end": { - "$date": "2021-03-04T06:56:47.000Z" - }, - "events": [ - { - "uuid": "88cf5aea-ee35-4fab-91f0-878883480ae0", - "start": { - "$date": "2021-03-04T05:23:53.000Z" - }, - "end": { - "$date": "2021-03-04T06:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2d78628-fac2-45c2-b47e-dee387f48974", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-04T05:36:02.000Z" - }, - "end": { - "$date": "2021-03-04T06:00:28.000Z" - }, - "events": [ - { - "uuid": "5f9e2415-fc0f-4e5c-9724-b5fcf46bff8b", - "start": { - "$date": "2021-03-04T05:36:02.000Z" - }, - "end": { - "$date": "2021-03-04T06:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27c6a298-69c0-4833-aca6-dc92837f14a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-04T05:37:02.000Z" - }, - "end": { - "$date": "2021-03-04T06:00:14.000Z" - }, - "events": [ - { - "uuid": "da975b7b-33b4-4a2c-91f9-e144e68a2373", - "start": { - "$date": "2021-03-04T05:37:02.000Z" - }, - "end": { - "$date": "2021-03-04T06:00:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8a4080b-266f-4fcd-a507-b7e4cb01d6a7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-04T06:20:29.000Z" - }, - "end": { - "$date": "2021-03-04T06:54:02.000Z" - }, - "events": [ - { - "uuid": "bdb9b2e6-b709-4f58-aad8-38358a5bebdc", - "start": { - "$date": "2021-03-04T06:20:29.000Z" - }, - "end": { - "$date": "2021-03-04T06:54:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a742870-319a-42c7-9070-cf6064d25194", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-04T17:13:43.000Z" - }, - "end": { - "$date": "2021-03-04T17:46:38.000Z" - }, - "events": [ - { - "uuid": "14dca270-7c2d-4260-8d4c-ed9bf5a13b89", - "start": { - "$date": "2021-03-04T17:13:43.000Z" - }, - "end": { - "$date": "2021-03-04T17:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1dc955b1-5e31-4a0a-b024-cf2eb914a824", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-04T17:51:13.000Z" - }, - "end": { - "$date": "2021-03-04T19:20:22.000Z" - }, - "events": [ - { - "uuid": "07f63449-bbaf-49ee-8b75-61fc33aa289b", - "start": { - "$date": "2021-03-04T17:51:13.000Z" - }, - "end": { - "$date": "2021-03-04T19:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "33fed9de-24ef-454d-ac38-5834129019e6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-04T21:04:17.000Z" - }, - "end": { - "$date": "2021-03-04T22:01:41.000Z" - }, - "events": [ - { - "uuid": "926394ce-5229-4324-b895-1370034cec12", - "start": { - "$date": "2021-03-04T21:04:17.000Z" - }, - "end": { - "$date": "2021-03-04T22:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f7fec73d-637d-4589-b26d-27167d9d730d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-04T22:48:00.000Z" - }, - "end": { - "$date": "2021-03-04T23:20:41.000Z" - }, - "events": [ - { - "uuid": "4f48dc3e-9ca1-488a-911e-b44dbb417259", - "start": { - "$date": "2021-03-04T22:48:00.000Z" - }, - "end": { - "$date": "2021-03-04T23:20:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "bf36b859-13c9-4a94-8970-9b9b0097aaea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-04T23:37:51.000Z" - }, - "end": { - "$date": "2021-03-05T00:42:32.000Z" - }, - "events": [ - { - "uuid": "013a667a-b3d8-4036-9a7e-c1f7fd66a4bb", - "start": { - "$date": "2021-03-04T23:37:51.000Z" - }, - "end": { - "$date": "2021-03-05T00:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "da7c5574-ceb3-4da9-aad0-48a0003b52b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T00:39:30.000Z" - }, - "end": { - "$date": "2021-03-05T00:41:31.000Z" - }, - "events": [ - { - "uuid": "fa412c08-52f0-4da5-8862-571537130f6b", - "start": { - "$date": "2021-03-05T00:39:30.000Z" - }, - "end": { - "$date": "2021-03-05T00:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "d0329bef-e16e-467b-b2cf-a666365a945c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T00:43:10.000Z" - }, - "end": { - "$date": "2021-03-05T00:45:11.000Z" - }, - "events": [ - { - "uuid": "0f814181-25c4-4f22-bbfb-babd5cf1fdfe", - "start": { - "$date": "2021-03-05T00:43:10.000Z" - }, - "end": { - "$date": "2021-03-05T00:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "e79e1e39-db4e-4464-bd85-7993cb38a3ef", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T00:50:36.000Z" - }, - "end": { - "$date": "2021-03-05T01:30:54.000Z" - }, - "events": [ - { - "uuid": "afe211e6-406d-4fff-9769-f85d1c71297f", - "start": { - "$date": "2021-03-05T00:50:36.000Z" - }, - "end": { - "$date": "2021-03-05T01:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4469a15d-03b1-4759-8cb5-b5f5195799b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T01:19:09.000Z" - }, - "end": { - "$date": "2021-03-05T01:42:45.000Z" - }, - "events": [ - { - "uuid": "cf421240-2be1-416e-9535-1f7325544db3", - "start": { - "$date": "2021-03-05T01:19:09.000Z" - }, - "end": { - "$date": "2021-03-05T01:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "99da4d07-4ccb-4978-a2af-153ae7b352a6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T01:35:34.000Z" - }, - "end": { - "$date": "2021-03-05T02:31:16.000Z" - }, - "events": [ - { - "uuid": "a0a1b5bc-3d13-42c0-bb90-94516a30dee6", - "start": { - "$date": "2021-03-05T01:35:34.000Z" - }, - "end": { - "$date": "2021-03-05T02:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1e92b67-5435-4001-8b7c-c1ff46553e62", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T01:44:47.000Z" - }, - "end": { - "$date": "2021-03-05T02:15:19.000Z" - }, - "events": [ - { - "uuid": "5b0a82e6-65dd-41de-af5b-dfb74070903e", - "start": { - "$date": "2021-03-05T01:44:47.000Z" - }, - "end": { - "$date": "2021-03-05T02:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e7f95c2e-f919-45cd-99b2-b1b96387b608", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T01:45:03.000Z" - }, - "end": { - "$date": "2021-03-05T02:16:35.000Z" - }, - "events": [ - { - "uuid": "92f5c1ff-2686-4f5e-abd9-ef0bf062a1cc", - "start": { - "$date": "2021-03-05T01:45:03.000Z" - }, - "end": { - "$date": "2021-03-05T02:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24e98ae1-a081-4d4a-b25d-563f44a49396", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-05T02:12:26.000Z" - }, - "end": { - "$date": "2021-03-05T03:37:29.000Z" - }, - "events": [ - { - "uuid": "d7e41157-dbaa-4805-80a3-db9fd82b66df", - "start": { - "$date": "2021-03-05T02:12:26.000Z" - }, - "end": { - "$date": "2021-03-05T03:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "54877b6c-e91d-4fc4-95ed-4646419d313b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T02:16:55.000Z" - }, - "end": { - "$date": "2021-03-05T03:37:57.000Z" - }, - "events": [ - { - "uuid": "25c272f5-c2c6-4f0b-bea4-9e88f60f0f9a", - "start": { - "$date": "2021-03-05T02:16:55.000Z" - }, - "end": { - "$date": "2021-03-05T03:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cb1c9eaa-a3d3-4c64-938d-ca41485ca595", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-05T02:16:42.000Z" - }, - "end": { - "$date": "2021-03-05T03:37:33.000Z" - }, - "events": [ - { - "uuid": "aa4836bc-6660-4f6f-936e-66f27d9a5831", - "start": { - "$date": "2021-03-05T02:16:42.000Z" - }, - "end": { - "$date": "2021-03-05T03:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "76aa2092-f4b4-45a6-85d2-a27c892171a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-05T02:52:33.000Z" - }, - "end": { - "$date": "2021-03-05T02:54:04.000Z" - }, - "events": [ - { - "uuid": "0495e13f-37c5-4c5b-84c2-c551647a96ff", - "start": { - "$date": "2021-03-05T02:52:33.000Z" - }, - "end": { - "$date": "2021-03-05T02:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "038ac355-074e-481e-8f7e-4098fade1c5f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-05T02:54:16.000Z" - }, - "end": { - "$date": "2021-03-05T02:58:40.000Z" - }, - "events": [ - { - "uuid": "e87d008a-b33c-4ebb-8a2a-198e2fbe0781", - "start": { - "$date": "2021-03-05T02:54:16.000Z" - }, - "end": { - "$date": "2021-03-05T02:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1ca4d468-5f4f-4e30-9fcf-097790e4a48e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-05T05:46:24.000Z" - }, - "end": { - "$date": "2021-03-05T06:29:04.000Z" - }, - "events": [ - { - "uuid": "03f6d51d-3e1b-4098-b1f2-58d9f8d7b379", - "start": { - "$date": "2021-03-05T05:46:24.000Z" - }, - "end": { - "$date": "2021-03-05T06:50:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2a66ca3-816e-472e-ac34-0665a678aa7a", - "start": { - "$date": "2021-03-05T06:50:24.000Z" - }, - "end": { - "$date": "2021-03-05T06:55:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dcdf810c-9196-47c1-bc20-786302fdb687", - "start": { - "$date": "2021-03-05T06:55:24.000Z" - }, - "end": { - "$date": "2021-03-05T06:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3b28ac9d-2e12-4a94-8051-e78c2dd26178", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-05T03:20:24.000Z" - }, - "end": { - "$date": "2021-03-05T04:35:20.000Z" - }, - "events": [ - { - "uuid": "fa5a516c-5982-4544-b7ef-fe991b31d1fd", - "start": { - "$date": "2021-03-05T03:20:24.000Z" - }, - "end": { - "$date": "2021-03-05T04:27:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "02f926c7-997f-40bd-b0ab-ecac07637221", - "start": { - "$date": "2021-03-05T04:27:24.000Z" - }, - "end": { - "$date": "2021-03-05T04:32:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a1b3d4d3-c665-4e63-9cab-3fa047e3ffea", - "start": { - "$date": "2021-03-05T04:32:24.000Z" - }, - "end": { - "$date": "2021-03-05T04:35:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0551019f-f83b-4154-9f00-82109f61d818", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-05T03:27:58.000Z" - }, - "end": { - "$date": "2021-03-05T06:00:42.000Z" - }, - "events": [ - { - "uuid": "9124b6bb-f002-49ac-8dd9-7fbecaa63b50", - "start": { - "$date": "2021-03-05T03:27:58.000Z" - }, - "end": { - "$date": "2021-03-05T03:40:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9cdccf2-f2b0-4ad6-b80d-5e3499e5e3a7", - "start": { - "$date": "2021-03-05T03:40:58.000Z" - }, - "end": { - "$date": "2021-03-05T04:18:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "283d6c2d-cde2-4d11-94aa-08104ce353ed", - "start": { - "$date": "2021-03-05T04:18:58.000Z" - }, - "end": { - "$date": "2021-03-05T04:28:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba8eacc4-9ce0-4d31-ae91-05aef2d3b66c", - "start": { - "$date": "2021-03-05T04:28:58.000Z" - }, - "end": { - "$date": "2021-03-05T04:33:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9abcc169-9d41-4550-ba92-4e6a67f00c95", - "start": { - "$date": "2021-03-05T04:33:58.000Z" - }, - "end": { - "$date": "2021-03-05T04:43:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73b79088-06f4-47f8-ac42-24899f63226d", - "start": { - "$date": "2021-03-05T04:43:58.000Z" - }, - "end": { - "$date": "2021-03-05T04:59:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cfebe522-aae8-4944-bdf3-5fccb9661422", - "start": { - "$date": "2021-03-05T04:59:58.000Z" - }, - "end": { - "$date": "2021-03-05T05:09:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4645f6bf-f410-4ee5-a796-2b2d2170e92f", - "start": { - "$date": "2021-03-05T05:09:58.000Z" - }, - "end": { - "$date": "2021-03-05T05:16:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cdf8b923-6809-47cf-b4c0-3aebbcb145f1", - "start": { - "$date": "2021-03-05T05:16:58.000Z" - }, - "end": { - "$date": "2021-03-05T05:49:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4e0b159f-7bba-449e-aed0-ff6c73300b69", - "start": { - "$date": "2021-03-05T05:49:58.000Z" - }, - "end": { - "$date": "2021-03-05T05:50:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80b918aa-e0fb-454c-9ee9-3e1347f734a1", - "start": { - "$date": "2021-03-05T05:50:58.000Z" - }, - "end": { - "$date": "2021-03-05T05:52:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "afeb00ee-f57f-4426-b13a-249f1b013854", - "start": { - "$date": "2021-03-05T05:52:58.000Z" - }, - "end": { - "$date": "2021-03-05T06:00:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "85d52ab5-9a75-4f6c-874b-39e73a0e3902", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-05T03:37:44.000Z" - }, - "end": { - "$date": "2021-03-05T03:39:18.000Z" - }, - "events": [ - { - "uuid": "21a1008e-4bb8-4c46-b217-56d54dc95ee6", - "start": { - "$date": "2021-03-05T03:37:44.000Z" - }, - "end": { - "$date": "2021-03-05T03:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fcefb608-9c1b-4e84-b0bb-3341938b94f5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-05T03:38:36.000Z" - }, - "end": { - "$date": "2021-03-05T06:40:03.000Z" - }, - "events": [ - { - "uuid": "3b7084dd-90e6-4edd-9b26-f562c4b7edc6", - "start": { - "$date": "2021-03-05T03:38:36.000Z" - }, - "end": { - "$date": "2021-03-05T06:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7a1ef2d3-cdca-4261-a43d-81e04904b8f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T03:39:22.000Z" - }, - "end": { - "$date": "2021-03-05T04:13:28.000Z" - }, - "events": [ - { - "uuid": "7d57bec9-f5aa-4433-b47c-7d3c171b55ae", - "start": { - "$date": "2021-03-05T03:39:22.000Z" - }, - "end": { - "$date": "2021-03-05T04:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5987a19e-35a9-475f-a982-ae7cadfd3beb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-05T04:13:10.000Z" - }, - "end": { - "$date": "2021-03-05T04:47:08.000Z" - }, - "events": [ - { - "uuid": "f5dc319e-5dfa-4a10-8586-4b384f35137f", - "start": { - "$date": "2021-03-05T04:13:10.000Z" - }, - "end": { - "$date": "2021-03-05T04:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "0e263f67-69cb-4c90-bcc7-09c3eb9b088e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T03:58:10.000Z" - }, - "end": { - "$date": "2021-03-05T05:40:24.000Z" - }, - "events": [ - { - "uuid": "62530a47-eae3-41c8-9f4c-d2cd938b104e", - "start": { - "$date": "2021-03-05T03:58:10.000Z" - }, - "end": { - "$date": "2021-03-05T05:40:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e1a2eb98-ff51-4312-999b-79ed8422fb06", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-05T04:05:10.000Z" - }, - "end": { - "$date": "2021-03-05T04:09:30.000Z" - }, - "events": [ - { - "uuid": "58353c9d-93d6-49f1-a057-480999596d99", - "start": { - "$date": "2021-03-05T04:05:10.000Z" - }, - "end": { - "$date": "2021-03-05T04:09:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5df95445-1ab4-491a-ad81-1780639dfdab", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-05T05:08:11.000Z" - }, - "end": { - "$date": "2021-03-05T06:39:19.000Z" - }, - "events": [ - { - "uuid": "a588d746-98c5-4786-a606-9c6acd7bfa1b", - "start": { - "$date": "2021-03-05T05:08:11.000Z" - }, - "end": { - "$date": "2021-03-05T06:39:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f55c7017-35c1-4f45-a127-a2eb50d09425", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-05T05:17:27.000Z" - }, - "end": { - "$date": "2021-03-05T05:51:30.000Z" - }, - "events": [ - { - "uuid": "009989be-9ad0-49a3-b2aa-f49c77237901", - "start": { - "$date": "2021-03-05T05:17:27.000Z" - }, - "end": { - "$date": "2021-03-05T05:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fdaa728d-1bb4-415b-91a5-413e10d6b991", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-05T05:19:50.000Z" - }, - "end": { - "$date": "2021-03-05T05:36:13.000Z" - }, - "events": [ - { - "uuid": "4ce1d2ac-c8f5-4ec3-9178-fddf63fc0c70", - "start": { - "$date": "2021-03-05T05:19:50.000Z" - }, - "end": { - "$date": "2021-03-05T05:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45064957-5a50-49b4-823a-bdd6fbb2621f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-05T05:27:28.000Z" - }, - "end": { - "$date": "2021-03-05T05:58:19.000Z" - }, - "events": [ - { - "uuid": "e1b3fcc9-4752-4f54-bafa-eaa9bbc22f25", - "start": { - "$date": "2021-03-05T05:27:28.000Z" - }, - "end": { - "$date": "2021-03-05T05:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94ea758e-df20-485f-b37d-305c137f5fe4", - "uuid": "0634928e-f30f-4def-b602-1fcc8a5b8169", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-05T05:43:48.000Z" - }, - "end": { - "$date": "2021-03-05T06:17:22.000Z" - }, - "events": [ - { - "uuid": "5cf3d016-f79b-4bd0-8a35-9ed779ddf6fd", - "start": { - "$date": "2021-03-05T05:43:48.000Z" - }, - "end": { - "$date": "2021-03-05T06:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c17d88f5-affd-48b0-ba14-bdd48908b294", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-05T06:07:54.000Z" - }, - "end": { - "$date": "2021-03-05T06:40:41.000Z" - }, - "events": [ - { - "uuid": "ed154773-f245-4831-8942-2a0b517449db", - "start": { - "$date": "2021-03-05T06:07:54.000Z" - }, - "end": { - "$date": "2021-03-05T06:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "27157b90-92ba-4e66-9587-17ef60a96fbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T06:00:07.000Z" - }, - "end": { - "$date": "2021-03-05T06:19:24.000Z" - }, - "events": [ - { - "uuid": "7851030a-c096-4456-afdf-9d121c9b0b06", - "start": { - "$date": "2021-03-05T06:00:07.000Z" - }, - "end": { - "$date": "2021-03-05T06:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a03097b1-9370-4d5d-99d7-39466525cf4a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-05T06:48:06.000Z" - }, - "end": { - "$date": "2021-03-05T07:13:38.000Z" - }, - "events": [ - { - "uuid": "caf99bac-cf2f-44b4-9015-ece5bdc999df", - "start": { - "$date": "2021-03-05T06:48:06.000Z" - }, - "end": { - "$date": "2021-03-05T07:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b30e164-4843-4fd6-b81d-e549782a6bbb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-05T07:19:32.000Z" - }, - "end": { - "$date": "2021-03-05T07:52:28.000Z" - }, - "events": [ - { - "uuid": "c120e80f-cc02-4a87-bb62-c9c6f230460f", - "start": { - "$date": "2021-03-05T07:19:32.000Z" - }, - "end": { - "$date": "2021-03-05T07:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "34b7571b-8c25-473c-a597-4bb133ec8c83", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-05T15:57:43.000Z" - }, - "end": { - "$date": "2021-03-06T07:23:16.000Z" - }, - "events": [ - { - "uuid": "da3effc6-acfd-4a2f-b9fb-b6501d2583f7", - "start": { - "$date": "2021-03-05T15:57:43.000Z" - }, - "end": { - "$date": "2021-03-06T01:10:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "32b6a3ad-cad2-4465-b82d-f94d351249ab", - "start": { - "$date": "2021-03-06T01:10:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:02:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8acebecc-ef19-4d82-957e-87d55f9a61c5", - "start": { - "$date": "2021-03-06T04:02:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:05:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "acb087c1-ecce-4b16-bbb7-079b65e42094", - "start": { - "$date": "2021-03-06T04:05:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:13:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2379afd-79de-44ca-b195-53d0157f3022", - "start": { - "$date": "2021-03-06T04:13:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:16:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bafd0608-778c-42a5-b0e2-bc62eec0da05", - "start": { - "$date": "2021-03-06T04:16:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:29:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b46e45e2-9c16-44e5-9f71-36e0889265ed", - "start": { - "$date": "2021-03-06T04:29:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:33:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6484934-21f6-410d-a876-2d120e369c3e", - "start": { - "$date": "2021-03-06T04:33:43.000Z" - }, - "end": { - "$date": "2021-03-06T04:52:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "811b0c1e-b7c3-488a-b44e-0c30c9d76db1", - "start": { - "$date": "2021-03-06T04:52:43.000Z" - }, - "end": { - "$date": "2021-03-06T07:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42d10299-c153-4dcd-8b0a-f9be705ba7af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T16:23:29.000Z" - }, - "end": { - "$date": "2021-03-05T16:50:40.000Z" - }, - "events": [ - { - "uuid": "6d07f814-779e-4f54-9e05-9b250a38e696", - "start": { - "$date": "2021-03-05T16:23:29.000Z" - }, - "end": { - "$date": "2021-03-05T16:50:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b31da619-9bc4-47ac-80ed-7a60c57e8e03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T16:52:18.000Z" - }, - "end": { - "$date": "2021-03-05T17:24:03.000Z" - }, - "events": [ - { - "uuid": "59fb8e34-1254-428d-84e6-d1f2ea2b9443", - "start": { - "$date": "2021-03-05T16:52:18.000Z" - }, - "end": { - "$date": "2021-03-05T17:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4a652e96-9e52-4dc9-a362-1195925aede2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T17:56:22.000Z" - }, - "end": { - "$date": "2021-03-05T17:57:36.000Z" - }, - "events": [ - { - "uuid": "2c41a962-d25c-42cf-b61f-b4a68a6a759f", - "start": { - "$date": "2021-03-05T17:56:22.000Z" - }, - "end": { - "$date": "2021-03-05T17:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8466afd1-dace-4073-b921-535dba29e516", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T19:04:01.000Z" - }, - "end": { - "$date": "2021-03-05T19:19:21.000Z" - }, - "events": [ - { - "uuid": "72fbad4d-d795-47b6-8c2f-57de84d62eaa", - "start": { - "$date": "2021-03-05T19:04:01.000Z" - }, - "end": { - "$date": "2021-03-05T19:19:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7e301a3a-0ebf-4717-a54a-6ab93300f358", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T19:01:03.000Z" - }, - "end": { - "$date": "2021-03-05T19:03:28.000Z" - }, - "events": [ - { - "uuid": "c4624bfc-08ab-4bd6-bdb1-acd67cf7e613", - "start": { - "$date": "2021-03-05T19:01:03.000Z" - }, - "end": { - "$date": "2021-03-05T19:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f823399f-1dd0-45fa-bad0-cb9088b9b1cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T19:13:00.000Z" - }, - "end": { - "$date": "2021-03-05T19:43:40.000Z" - }, - "events": [ - { - "uuid": "659579ed-ea9b-4e25-94bf-bba2f276795c", - "start": { - "$date": "2021-03-05T19:13:00.000Z" - }, - "end": { - "$date": "2021-03-05T19:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69bbe815-664b-4fb6-9f2d-a0d9b82b8c3f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T19:22:41.000Z" - }, - "end": { - "$date": "2021-03-05T19:57:48.000Z" - }, - "events": [ - { - "uuid": "3b3954dd-e67f-4398-8c26-73647e380697", - "start": { - "$date": "2021-03-05T19:22:41.000Z" - }, - "end": { - "$date": "2021-03-05T19:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "861cde0b-3da3-4433-b8cb-8e2c19988cd0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T19:45:25.000Z" - }, - "end": { - "$date": "2021-03-05T20:22:16.000Z" - }, - "events": [ - { - "uuid": "ce9d6f6d-28ea-40e0-aa2b-7c675b36b0ae", - "start": { - "$date": "2021-03-05T19:45:25.000Z" - }, - "end": { - "$date": "2021-03-05T20:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a382e6d-921d-461b-9e58-47d2e69f822e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T20:01:50.000Z" - }, - "end": { - "$date": "2021-03-05T21:52:04.000Z" - }, - "events": [ - { - "uuid": "dda93b3d-275e-4596-a7d9-227310d9b8bc", - "start": { - "$date": "2021-03-05T20:01:50.000Z" - }, - "end": { - "$date": "2021-03-05T20:12:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9fc340b5-8af3-4ceb-9eb0-b5df707f3c91", - "start": { - "$date": "2021-03-05T20:12:50.000Z" - }, - "end": { - "$date": "2021-03-05T20:34:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bbeb2599-199c-4a26-96eb-6c83ca3c0a82", - "start": { - "$date": "2021-03-05T20:34:50.000Z" - }, - "end": { - "$date": "2021-03-05T21:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff9963c2-2533-4fcd-80f2-9cec3c37976d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T20:26:46.000Z" - }, - "end": { - "$date": "2021-03-05T20:51:02.000Z" - }, - "events": [ - { - "uuid": "78c01c1b-0b00-4e6e-a591-21e3ae83d2b3", - "start": { - "$date": "2021-03-05T20:26:46.000Z" - }, - "end": { - "$date": "2021-03-05T20:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a8074b05-f42f-4b6b-8878-3a34d633b352", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-05T20:26:13.000Z" - }, - "end": { - "$date": "2021-03-05T21:30:11.000Z" - }, - "events": [ - { - "uuid": "ee184afc-4109-4bfd-8d4c-625b9a036ad7", - "start": { - "$date": "2021-03-05T20:26:13.000Z" - }, - "end": { - "$date": "2021-03-05T21:30:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "fa35e05c-2059-4827-bb55-b1859ae0689e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T20:48:18.000Z" - }, - "end": { - "$date": "2021-03-05T20:52:15.000Z" - }, - "events": [ - { - "uuid": "3aa95367-4710-477c-a77d-41898bce895e", - "start": { - "$date": "2021-03-05T20:48:18.000Z" - }, - "end": { - "$date": "2021-03-05T20:52:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "cdcc002d-2411-4779-b10f-8d2d54349509", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-05T21:04:04.000Z" - }, - "end": { - "$date": "2021-03-05T21:10:54.000Z" - }, - "events": [ - { - "uuid": "799ae56f-9276-40cb-809d-e8d351b93447", - "start": { - "$date": "2021-03-05T21:04:04.000Z" - }, - "end": { - "$date": "2021-03-05T21:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "e8fa03bd-2cf9-4424-8ec6-9e395bed8652", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T21:06:28.000Z" - }, - "end": { - "$date": "2021-03-05T21:38:21.000Z" - }, - "events": [ - { - "uuid": "7d04903f-dcf3-4611-964d-ff8a77b0f7ea", - "start": { - "$date": "2021-03-05T21:06:28.000Z" - }, - "end": { - "$date": "2021-03-05T21:38:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "13634661-5302-4e1e-9d1d-ed35f667d985", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T21:06:44.000Z" - }, - "end": { - "$date": "2021-03-05T21:18:53.000Z" - }, - "events": [ - { - "uuid": "5767cd61-2b3b-42b6-be94-7d21ab135b10", - "start": { - "$date": "2021-03-05T21:06:44.000Z" - }, - "end": { - "$date": "2021-03-05T21:18:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d1083e61-ae58-478b-974f-ca5d11f3dad1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-05T21:09:00.000Z" - }, - "end": { - "$date": "2021-03-05T21:48:32.000Z" - }, - "events": [ - { - "uuid": "64eeb0c8-d3b5-4a66-9d7d-c365cb75fe3e", - "start": { - "$date": "2021-03-05T21:09:00.000Z" - }, - "end": { - "$date": "2021-03-05T21:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d4fbeeca-9026-43f6-93c2-b9d681a89f77", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T21:20:39.000Z" - }, - "end": { - "$date": "2021-03-05T21:58:49.000Z" - }, - "events": [ - { - "uuid": "5d38ee68-5f4a-4315-8049-48ab92880fd7", - "start": { - "$date": "2021-03-05T21:20:39.000Z" - }, - "end": { - "$date": "2021-03-05T21:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "320296c2-1bcf-4c2f-8489-7a044650bde5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-05T22:04:45.000Z" - }, - "end": { - "$date": "2021-03-05T22:24:53.000Z" - }, - "events": [ - { - "uuid": "a2d08bb5-e117-4889-8ee7-b0d2e3b48417", - "start": { - "$date": "2021-03-05T22:04:45.000Z" - }, - "end": { - "$date": "2021-03-05T22:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "78df2519-d999-4911-b0b6-de8f33d086a0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-05T22:05:48.000Z" - }, - "end": { - "$date": "2021-03-05T22:13:10.000Z" - }, - "events": [ - { - "uuid": "6c286dec-3436-48f4-8f10-aee1c224e129", - "start": { - "$date": "2021-03-05T22:05:48.000Z" - }, - "end": { - "$date": "2021-03-05T22:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ca1c25fa-dc6c-4759-b337-59e23cf98512", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-05T22:31:26.000Z" - }, - "end": { - "$date": "2021-03-05T22:35:07.000Z" - }, - "events": [ - { - "uuid": "feb1b3bf-295c-484b-8397-a51c8bb184d8", - "start": { - "$date": "2021-03-05T22:31:26.000Z" - }, - "end": { - "$date": "2021-03-05T22:35:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "7716f9a5-412e-42a9-8d05-c4b0c2c832e6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-05T23:02:17.000Z" - }, - "end": { - "$date": "2021-03-05T23:12:56.000Z" - }, - "events": [ - { - "uuid": "6eef8614-f9c4-4a07-a0a7-702a577ff1c9", - "start": { - "$date": "2021-03-05T23:02:17.000Z" - }, - "end": { - "$date": "2021-03-05T23:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c2b553e-458a-495a-b0a3-6b8f6175ce26", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-05T23:16:47.000Z" - }, - "end": { - "$date": "2021-03-05T23:45:31.000Z" - }, - "events": [ - { - "uuid": "6a5d325b-587d-4eda-a835-83a7261ead2d", - "start": { - "$date": "2021-03-05T23:16:47.000Z" - }, - "end": { - "$date": "2021-03-05T23:45:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b0facc1-8b00-4cbc-bfb5-dfc26172053c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T23:31:07.000Z" - }, - "end": { - "$date": "2021-03-05T23:48:52.000Z" - }, - "events": [ - { - "uuid": "6e6f7ff1-694a-4f51-a52f-b74931fc503c", - "start": { - "$date": "2021-03-05T23:31:07.000Z" - }, - "end": { - "$date": "2021-03-05T23:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4cee64d1-f93a-42d2-a2ed-ca6f8e5d8dc7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-05T23:44:18.000Z" - }, - "end": { - "$date": "2021-03-06T00:16:06.000Z" - }, - "events": [ - { - "uuid": "1309dffe-fdf7-4b1b-96f2-3411941863d3", - "start": { - "$date": "2021-03-05T23:44:18.000Z" - }, - "end": { - "$date": "2021-03-06T00:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ed50f74-8106-4122-ad48-b30334fe4027", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-05T23:54:14.000Z" - }, - "end": { - "$date": "2021-03-06T00:14:02.000Z" - }, - "events": [ - { - "uuid": "cdc0775c-8342-4a46-9ce9-75d47a1b500b", - "start": { - "$date": "2021-03-05T23:54:14.000Z" - }, - "end": { - "$date": "2021-03-06T00:14:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "a59004ec-1587-49b3-986d-272d98a7df0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T00:09:53.000Z" - }, - "end": { - "$date": "2021-03-06T00:41:14.000Z" - }, - "events": [ - { - "uuid": "7f413a8a-f909-49f9-ad33-9d4b56c21c05", - "start": { - "$date": "2021-03-06T00:09:53.000Z" - }, - "end": { - "$date": "2021-03-06T00:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "4f5e1727-77e7-4a04-8e7b-48f6f9c3de9d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T00:42:20.000Z" - }, - "end": { - "$date": "2021-03-06T02:21:45.000Z" - }, - "events": [ - { - "uuid": "6c17a80a-3ba1-47d6-a6d9-07ca1530b254", - "start": { - "$date": "2021-03-06T00:42:20.000Z" - }, - "end": { - "$date": "2021-03-06T02:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4ccfbf3-efe2-4426-96f4-9d9371d8f807", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T01:48:47.000Z" - }, - "end": { - "$date": "2021-03-06T02:01:36.000Z" - }, - "events": [ - { - "uuid": "4ed1c005-fffc-4130-aacd-ac1c94d21773", - "start": { - "$date": "2021-03-06T01:48:47.000Z" - }, - "end": { - "$date": "2021-03-06T02:01:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dd6ea253-91c3-4708-8476-a82957b7c14f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T02:02:02.000Z" - }, - "end": { - "$date": "2021-03-06T02:04:46.000Z" - }, - "events": [ - { - "uuid": "c45252ea-2b0b-4499-a7f0-31c13a86a807", - "start": { - "$date": "2021-03-06T02:02:02.000Z" - }, - "end": { - "$date": "2021-03-06T02:04:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "929435e5-9a01-4399-b293-d2ea0b4a38b3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-06T02:02:19.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:10.000Z" - }, - "events": [ - { - "uuid": "cb286d3d-07ab-4be7-843b-9bd13ea8ad8b", - "start": { - "$date": "2021-03-06T02:02:19.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d755ee9c-b22c-48e0-9ad5-6d9b328797dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T02:04:57.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:02.000Z" - }, - "events": [ - { - "uuid": "fd861477-b55b-4fa1-a72a-a40e771eec2f", - "start": { - "$date": "2021-03-06T02:04:57.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf8d4019-d3f5-4cf7-9d6e-9b6b302518a9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T02:10:41.000Z" - }, - "end": { - "$date": "2021-03-06T02:47:33.000Z" - }, - "events": [ - { - "uuid": "547dbf58-8285-4c28-b604-66d642a2c9d0", - "start": { - "$date": "2021-03-06T02:10:41.000Z" - }, - "end": { - "$date": "2021-03-06T02:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6d692244-27e8-4e78-9f70-724ab6ed0c74", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-06T02:35:31.000Z" - }, - "end": { - "$date": "2021-03-06T05:35:52.000Z" - }, - "events": [ - { - "uuid": "e46fefcc-1f91-4a88-8a6d-23442c0b47ac", - "start": { - "$date": "2021-03-06T02:35:31.000Z" - }, - "end": { - "$date": "2021-03-06T05:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0376b29-4ae3-42cc-af4e-113ad5c976e7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T02:52:06.000Z" - }, - "end": { - "$date": "2021-03-06T03:31:14.000Z" - }, - "events": [ - { - "uuid": "c4e4c5b7-2d10-4cdc-8c98-a75be431e707", - "start": { - "$date": "2021-03-06T02:52:06.000Z" - }, - "end": { - "$date": "2021-03-06T03:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14d8ebe9-c85e-4cc2-8a34-9b7c6d678e07", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T03:02:53.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:19.000Z" - }, - "events": [ - { - "uuid": "a7084d99-abfc-461c-bf4f-c7c13d6a49f2", - "start": { - "$date": "2021-03-06T03:02:53.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "d87a7574-24fe-476a-b912-d5ed1fbafed4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T03:08:31.000Z" - }, - "end": { - "$date": "2021-03-06T03:21:20.000Z" - }, - "events": [ - { - "uuid": "e5a7e46d-0160-4502-a9bf-24e934459fe1", - "start": { - "$date": "2021-03-06T03:08:31.000Z" - }, - "end": { - "$date": "2021-03-06T03:21:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a29651da-18d2-40c0-a1aa-9e88f4e84d59", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-06T03:18:31.000Z" - }, - "end": { - "$date": "2021-03-06T03:42:54.000Z" - }, - "events": [ - { - "uuid": "456c7d67-8a93-4ddd-b89b-5bc657931d09", - "start": { - "$date": "2021-03-06T03:18:31.000Z" - }, - "end": { - "$date": "2021-03-06T03:30:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85e85267-f24e-43c4-a347-94e63db1bd37", - "start": { - "$date": "2021-03-06T03:30:31.000Z" - }, - "end": { - "$date": "2021-03-06T03:31:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "072d97aa-46ce-4113-b4ab-f5eed0816374", - "start": { - "$date": "2021-03-06T03:31:31.000Z" - }, - "end": { - "$date": "2021-03-06T03:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "218bc88d-fbdb-438d-a1a1-dba71a1d83c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T04:21:58.000Z" - }, - "end": { - "$date": "2021-03-06T04:22:01.000Z" - }, - "events": [ - { - "uuid": "b5f3637a-af60-49bf-876a-95f35bbe0110", - "start": { - "$date": "2021-03-06T04:21:58.000Z" - }, - "end": { - "$date": "2021-03-06T04:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0cf653f8-b678-4bb6-a098-36de9d0860cb", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-06T03:43:08.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:36.000Z" - }, - "events": [ - { - "uuid": "ef057174-f4fc-442b-af7c-af05847aa8e8", - "start": { - "$date": "2021-03-06T03:43:08.000Z" - }, - "end": { - "$date": "2021-03-06T05:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "d7f9160d-3716-47f4-b4c3-e7548dccff2f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-06T03:58:31.000Z" - }, - "end": { - "$date": "2021-03-06T04:07:48.000Z" - }, - "events": [ - { - "uuid": "3cd9ac6b-9238-482c-82b8-e1ad2bb6c809", - "start": { - "$date": "2021-03-06T03:58:31.000Z" - }, - "end": { - "$date": "2021-03-06T04:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "bd5f65f4-e581-4e53-ad74-aba165115b00", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T04:16:14.000Z" - }, - "end": { - "$date": "2021-03-06T05:39:15.000Z" - }, - "events": [ - { - "uuid": "f8358ef6-afbb-494d-b692-2344142fb9f9", - "start": { - "$date": "2021-03-06T04:16:14.000Z" - }, - "end": { - "$date": "2021-03-06T04:17:14.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "375ab5a4-3fcc-4cf5-a604-68bf92d986e2", - "start": { - "$date": "2021-03-06T04:17:14.000Z" - }, - "end": { - "$date": "2021-03-06T05:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "65701f05-c798-44a5-85c8-913591ab8b54", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T04:22:08.000Z" - }, - "end": { - "$date": "2021-03-06T05:12:38.000Z" - }, - "events": [ - { - "uuid": "bab8efa9-fa56-4828-b044-a3d9196808ce", - "start": { - "$date": "2021-03-06T04:22:08.000Z" - }, - "end": { - "$date": "2021-03-06T05:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1215e262-b771-4ef5-a661-19bfecd0d06a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T05:12:48.000Z" - }, - "end": { - "$date": "2021-03-06T05:33:42.000Z" - }, - "events": [ - { - "uuid": "af63070c-8cdf-4279-8422-2530c638a430", - "start": { - "$date": "2021-03-06T05:12:48.000Z" - }, - "end": { - "$date": "2021-03-06T05:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "5c537127-ccc9-46b5-81fb-32d24472e112", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T05:13:04.000Z" - }, - "end": { - "$date": "2021-03-06T06:02:35.000Z" - }, - "events": [ - { - "uuid": "d329032b-0808-47ae-9670-b73faa338ef3", - "start": { - "$date": "2021-03-06T05:13:04.000Z" - }, - "end": { - "$date": "2021-03-06T05:24:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86c334f0-c253-4dda-b904-b75725caa82d", - "start": { - "$date": "2021-03-06T05:24:04.000Z" - }, - "end": { - "$date": "2021-03-06T05:29:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7564f6bc-55d4-4755-9b76-054cdb576ebf", - "start": { - "$date": "2021-03-06T05:29:04.000Z" - }, - "end": { - "$date": "2021-03-06T06:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b010e03-6db7-4d61-b6fd-2a0b58afa0a1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T05:16:29.000Z" - }, - "end": { - "$date": "2021-03-06T05:40:45.000Z" - }, - "events": [ - { - "uuid": "b9563e32-4593-413f-bcbc-3c3c6e2793ea", - "start": { - "$date": "2021-03-06T05:16:29.000Z" - }, - "end": { - "$date": "2021-03-06T05:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b88954ad-6680-4fc7-9517-9a14d9a11093", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-06T05:16:26.000Z" - }, - "end": { - "$date": "2021-03-06T05:40:52.000Z" - }, - "events": [ - { - "uuid": "bdd64649-7541-4444-a54f-dd0b8cad8d38", - "start": { - "$date": "2021-03-06T05:16:26.000Z" - }, - "end": { - "$date": "2021-03-06T05:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed447945-bcbf-412d-b080-d8667306afa7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T05:16:31.000Z" - }, - "end": { - "$date": "2021-03-06T05:40:52.000Z" - }, - "events": [ - { - "uuid": "1f8993dc-9e9b-49a3-8d5c-0509e92875be", - "start": { - "$date": "2021-03-06T05:16:31.000Z" - }, - "end": { - "$date": "2021-03-06T05:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "07c0ef92-c3b0-4f52-b0ad-079a60a59631", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-06T05:15:10.000Z" - }, - "end": { - "$date": "2021-03-06T05:56:35.000Z" - }, - "events": [ - { - "uuid": "d1e371e5-0b8e-49f6-a99d-0b0375aeb01e", - "start": { - "$date": "2021-03-06T05:15:10.000Z" - }, - "end": { - "$date": "2021-03-06T05:56:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9db6e9f2-8563-42ac-ba2f-08e519f2410a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T05:47:39.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:34.000Z" - }, - "events": [ - { - "uuid": "de3d5f6c-5a06-449c-be80-1c3c2dcd26ff", - "start": { - "$date": "2021-03-06T05:47:39.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c94d817-2eb2-49c2-9f59-c1c5b17618b5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-06T05:47:41.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:37.000Z" - }, - "events": [ - { - "uuid": "e0d55974-64be-47fd-b168-ac99fb39c97f", - "start": { - "$date": "2021-03-06T05:47:41.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87db679f-3cd7-405c-a6a7-4d2b8bdd2cd4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T05:47:40.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:31.000Z" - }, - "events": [ - { - "uuid": "a09e708a-f7a8-4146-8418-692172892d42", - "start": { - "$date": "2021-03-06T05:47:40.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e7dec40-2eb1-4e64-bc50-7b4a23fe147f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T05:47:46.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:31.000Z" - }, - "events": [ - { - "uuid": "9aa9a29c-2da4-4d56-a0cc-44ced675676a", - "start": { - "$date": "2021-03-06T05:47:46.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12ad1535-98ee-48c7-b32c-5b5d3af4febe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T05:47:43.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:33.000Z" - }, - "events": [ - { - "uuid": "3dad332b-cd7e-4966-8c7e-dadd42417b4d", - "start": { - "$date": "2021-03-06T05:47:43.000Z" - }, - "end": { - "$date": "2021-03-06T06:07:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e8bf7545-a11f-4801-a2f9-54f6d56884a6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T06:05:17.000Z" - }, - "end": { - "$date": "2021-03-06T06:06:20.000Z" - }, - "events": [ - { - "uuid": "0d9e18b9-661f-4fcc-bdae-56e73c9caed2", - "start": { - "$date": "2021-03-06T06:05:17.000Z" - }, - "end": { - "$date": "2021-03-06T06:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6803617a-7ca4-4218-aecb-93b3a0eef47c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T06:11:46.000Z" - }, - "end": { - "$date": "2021-03-06T06:35:57.000Z" - }, - "events": [ - { - "uuid": "2ca86272-8988-45f2-b7db-4251568d314e", - "start": { - "$date": "2021-03-06T06:11:46.000Z" - }, - "end": { - "$date": "2021-03-06T06:35:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d3e027f-5581-4c2e-8d44-9005b86d3963", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T06:12:04.000Z" - }, - "end": { - "$date": "2021-03-06T06:35:59.000Z" - }, - "events": [ - { - "uuid": "e1f97c4a-4a04-4843-b14f-45b7256b2062", - "start": { - "$date": "2021-03-06T06:12:04.000Z" - }, - "end": { - "$date": "2021-03-06T06:35:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae6f6544-0f03-4fc2-8033-bab514061d03", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T06:11:46.000Z" - }, - "end": { - "$date": "2021-03-06T06:35:57.000Z" - }, - "events": [ - { - "uuid": "db4323ad-9961-4fb7-93f7-ae6697d08ed6", - "start": { - "$date": "2021-03-06T06:11:46.000Z" - }, - "end": { - "$date": "2021-03-06T06:35:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "059c8e46-2e18-4e78-8cc4-01767db26e14", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-06T06:11:47.000Z" - }, - "end": { - "$date": "2021-03-06T06:36:03.000Z" - }, - "events": [ - { - "uuid": "208f7b79-71b9-499f-8398-b3e993990027", - "start": { - "$date": "2021-03-06T06:11:47.000Z" - }, - "end": { - "$date": "2021-03-06T06:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20700285-e3b3-4986-844e-e10579203094", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T06:11:49.000Z" - }, - "end": { - "$date": "2021-03-06T06:36:00.000Z" - }, - "events": [ - { - "uuid": "3a976add-6e21-424e-8230-d04352ea0775", - "start": { - "$date": "2021-03-06T06:11:49.000Z" - }, - "end": { - "$date": "2021-03-06T06:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "981df861-c45a-4138-83ea-252d014dd10a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-06T06:14:17.000Z" - }, - "end": { - "$date": "2021-03-06T08:59:49.000Z" - }, - "events": [ - { - "uuid": "db4d3efd-21c6-4e67-a249-cdf2563f5da0", - "start": { - "$date": "2021-03-06T06:14:17.000Z" - }, - "end": { - "$date": "2021-03-06T08:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "3afddc7c-ddd3-4a08-ae67-3d27f3999fa4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T06:33:24.000Z" - }, - "end": { - "$date": "2021-03-06T07:00:53.000Z" - }, - "events": [ - { - "uuid": "a660f915-8828-4a71-be97-82ebd396d9ed", - "start": { - "$date": "2021-03-06T06:33:24.000Z" - }, - "end": { - "$date": "2021-03-06T07:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fb0206f-6c48-4415-96a9-a046babd2586", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T06:40:02.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:27.000Z" - }, - "events": [ - { - "uuid": "c8a15c4f-2d41-42eb-8e5a-06525696c73c", - "start": { - "$date": "2021-03-06T06:40:02.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7dc34cc-1b39-4561-b504-2502cf718aa8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T06:40:00.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:31.000Z" - }, - "events": [ - { - "uuid": "378cf7c3-c0e0-470c-b4d1-e2a6b240d323", - "start": { - "$date": "2021-03-06T06:40:00.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0649c854-3557-470e-af54-a6dd6fed6b11", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T06:40:27.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:23.000Z" - }, - "events": [ - { - "uuid": "35cc3895-22c1-4b6c-b388-06a97a621e98", - "start": { - "$date": "2021-03-06T06:40:27.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ef463a7-aca5-48a9-a031-db581fbcfeb7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T06:40:39.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:24.000Z" - }, - "events": [ - { - "uuid": "8ba017f2-85d4-4ee6-a720-45caaf2433c6", - "start": { - "$date": "2021-03-06T06:40:39.000Z" - }, - "end": { - "$date": "2021-03-06T06:58:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d6ba15e-8d35-4a02-85d2-a5dd5ac3c93f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T07:00:57.000Z" - }, - "end": { - "$date": "2021-03-06T07:24:23.000Z" - }, - "events": [ - { - "uuid": "41418b8b-f050-42e7-9f20-2397e16dcf28", - "start": { - "$date": "2021-03-06T07:00:57.000Z" - }, - "end": { - "$date": "2021-03-06T07:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60b3889c-385e-400c-ad2f-9d1568e89666", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T07:01:01.000Z" - }, - "end": { - "$date": "2021-03-06T07:24:27.000Z" - }, - "events": [ - { - "uuid": "07b9db42-1066-4086-a8db-b1889dbaaa7f", - "start": { - "$date": "2021-03-06T07:01:01.000Z" - }, - "end": { - "$date": "2021-03-06T07:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c17aa22-7318-43d9-8352-6fd2f43e6572", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T07:01:02.000Z" - }, - "end": { - "$date": "2021-03-06T07:24:18.000Z" - }, - "events": [ - { - "uuid": "0db19bf7-15a0-4e77-ae1f-2136e0c53993", - "start": { - "$date": "2021-03-06T07:01:02.000Z" - }, - "end": { - "$date": "2021-03-06T07:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd239ec4-76ca-4b99-b70d-8eb0af904dd4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T07:28:13.000Z" - }, - "end": { - "$date": "2021-03-06T07:52:44.000Z" - }, - "events": [ - { - "uuid": "ca90c722-bc82-4a5c-9433-d46a80289d7b", - "start": { - "$date": "2021-03-06T07:28:13.000Z" - }, - "end": { - "$date": "2021-03-06T07:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae6bdd9b-f40c-4c3f-b840-644e1ba08c1a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T07:26:38.000Z" - }, - "end": { - "$date": "2021-03-06T07:52:44.000Z" - }, - "events": [ - { - "uuid": "ee693027-0248-4b78-8e38-7f8e1fc0e81c", - "start": { - "$date": "2021-03-06T07:26:38.000Z" - }, - "end": { - "$date": "2021-03-06T07:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7aca50bb-6521-4733-83e4-2b28101044fc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T07:26:42.000Z" - }, - "end": { - "$date": "2021-03-06T07:52:48.000Z" - }, - "events": [ - { - "uuid": "5c57751b-11a2-4862-87b3-9ecca1506b42", - "start": { - "$date": "2021-03-06T07:26:42.000Z" - }, - "end": { - "$date": "2021-03-06T07:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b9c9f0b-fe64-4523-8ac5-84e4ff347716", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-06T07:30:38.000Z" - }, - "end": { - "$date": "2021-03-06T08:16:00.000Z" - }, - "events": [ - { - "uuid": "88fe3c30-7e94-4fb2-bda0-32476d2b788f", - "start": { - "$date": "2021-03-06T07:30:38.000Z" - }, - "end": { - "$date": "2021-03-06T08:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e676faa4-15ce-4686-9959-9b6dbb70c503", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T07:30:51.000Z" - }, - "end": { - "$date": "2021-03-06T08:33:33.000Z" - }, - "events": [ - { - "uuid": "83360002-4f15-42c1-878d-c850a7bebe27", - "start": { - "$date": "2021-03-06T07:30:51.000Z" - }, - "end": { - "$date": "2021-03-06T08:12:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f61c367-67e5-4cf0-84f7-3a31477f1ea8", - "start": { - "$date": "2021-03-06T08:12:51.000Z" - }, - "end": { - "$date": "2021-03-06T08:17:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3eb55120-b3a2-445e-b1c5-ce134680f602", - "start": { - "$date": "2021-03-06T08:17:51.000Z" - }, - "end": { - "$date": "2021-03-06T08:27:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d72c4c9-d609-45fc-9c79-ea5a79473573", - "start": { - "$date": "2021-03-06T08:27:51.000Z" - }, - "end": { - "$date": "2021-03-06T08:29:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "075f0667-de7e-438c-a98b-d3758a73d3b9", - "start": { - "$date": "2021-03-06T08:29:51.000Z" - }, - "end": { - "$date": "2021-03-06T08:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0e949fd0-e9a8-4e84-ad25-2a053a804aa8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T08:29:07.000Z" - }, - "end": { - "$date": "2021-03-06T08:32:19.000Z" - }, - "events": [ - { - "uuid": "13ec5543-44c9-4b4d-ae7f-5a306b6c06c3", - "start": { - "$date": "2021-03-06T08:29:07.000Z" - }, - "end": { - "$date": "2021-03-06T08:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "3f4bfac1-9693-46a7-b963-e9eb8122d2f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T15:22:37.000Z" - }, - "end": { - "$date": "2021-03-06T16:07:39.000Z" - }, - "events": [ - { - "uuid": "72484e99-e908-4b99-89b1-bc89acbaa91e", - "start": { - "$date": "2021-03-06T15:22:37.000Z" - }, - "end": { - "$date": "2021-03-06T16:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bdd7be7-e660-4ef3-9f06-0f6a6dbc9740", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T16:07:48.000Z" - }, - "end": { - "$date": "2021-03-06T16:26:19.000Z" - }, - "events": [ - { - "uuid": "207c62af-2e7c-4119-a4c6-65f61ae90e28", - "start": { - "$date": "2021-03-06T16:07:48.000Z" - }, - "end": { - "$date": "2021-03-06T16:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8746332f-fd49-4fbb-b26a-67266a1e0392", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T17:35:25.000Z" - }, - "end": { - "$date": "2021-03-06T18:23:30.000Z" - }, - "events": [ - { - "uuid": "af9707c8-3930-474e-b4f0-746633db3273", - "start": { - "$date": "2021-03-06T17:35:25.000Z" - }, - "end": { - "$date": "2021-03-06T18:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f657bb4-b09d-4a2f-89c5-419666050711", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T17:35:26.000Z" - }, - "end": { - "$date": "2021-03-06T18:23:36.000Z" - }, - "events": [ - { - "uuid": "f40b1e33-9570-4621-b5ba-07e5441ed7e8", - "start": { - "$date": "2021-03-06T17:35:26.000Z" - }, - "end": { - "$date": "2021-03-06T18:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ef12561-e978-4fb9-a4c4-ec7c2d72aaf3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T17:42:48.000Z" - }, - "end": { - "$date": "2021-03-06T17:53:32.000Z" - }, - "events": [ - { - "uuid": "405e382a-0703-4976-9d58-9e1b06191bf5", - "start": { - "$date": "2021-03-06T17:42:48.000Z" - }, - "end": { - "$date": "2021-03-06T17:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85d9db36-41e0-444c-8f2f-334cf1a9e739", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T17:56:18.000Z" - }, - "end": { - "$date": "2021-03-06T18:24:47.000Z" - }, - "events": [ - { - "uuid": "b7a2a35f-54d8-4bfd-b39b-6ae4e43f6270", - "start": { - "$date": "2021-03-06T17:56:18.000Z" - }, - "end": { - "$date": "2021-03-06T18:24:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31f9c921-b57d-4edb-81ee-71d569fa163c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T18:26:46.000Z" - }, - "end": { - "$date": "2021-03-06T18:46:11.000Z" - }, - "events": [ - { - "uuid": "c0078007-83dc-48e2-ba07-55a3cf0a6b34", - "start": { - "$date": "2021-03-06T18:26:46.000Z" - }, - "end": { - "$date": "2021-03-06T18:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6bbf122-9130-492b-86c6-eb7c40e6cff0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T18:26:47.000Z" - }, - "end": { - "$date": "2021-03-06T18:46:17.000Z" - }, - "events": [ - { - "uuid": "25459c1d-6ea3-459a-a1b3-08a5f29cac23", - "start": { - "$date": "2021-03-06T18:26:47.000Z" - }, - "end": { - "$date": "2021-03-06T18:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06c0f0c8-b5e3-4373-b0d6-9fb2ddf3411a", - "uuid": "05a0c561-e75b-4e83-8bb6-a377556b3118", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-06T19:04:56.000Z" - }, - "end": { - "$date": "2021-03-06T19:49:43.000Z" - }, - "events": [ - { - "uuid": "7e6f2851-bd02-4de5-b9b1-bae959e82be7", - "start": { - "$date": "2021-03-06T19:04:56.000Z" - }, - "end": { - "$date": "2021-03-06T19:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c630564-8982-42dc-8e38-e7ae0efd3318", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T19:22:01.000Z" - }, - "end": { - "$date": "2021-03-06T19:37:07.000Z" - }, - "events": [ - { - "uuid": "8a70a40e-309f-495c-bc59-a0281c7a4329", - "start": { - "$date": "2021-03-06T19:22:01.000Z" - }, - "end": { - "$date": "2021-03-06T19:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "40e93b6b-841b-434b-95a1-4202dd26a74d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T21:05:36.000Z" - }, - "end": { - "$date": "2021-03-06T22:47:26.000Z" - }, - "events": [ - { - "uuid": "81d796de-84d0-404a-81f9-3633deaaaf89", - "start": { - "$date": "2021-03-06T21:05:36.000Z" - }, - "end": { - "$date": "2021-03-06T22:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5b1f8257-729e-4484-b285-185b7addfe18", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-06T21:21:28.000Z" - }, - "end": { - "$date": "2021-03-06T22:11:12.000Z" - }, - "events": [ - { - "uuid": "0cc1b4c4-6695-4d26-88eb-cc992111b4c9", - "start": { - "$date": "2021-03-06T21:21:28.000Z" - }, - "end": { - "$date": "2021-03-06T22:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "d13f5957-3cf8-4737-8503-ebf5533ef08b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T22:03:31.000Z" - }, - "end": { - "$date": "2021-03-06T22:05:56.000Z" - }, - "events": [ - { - "uuid": "b1a7ff99-b040-4e25-a3d9-7d9542ccceee", - "start": { - "$date": "2021-03-06T22:03:31.000Z" - }, - "end": { - "$date": "2021-03-06T22:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "f4c252c6-6f65-4047-86fb-6e1d89e6db66", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T22:12:31.000Z" - }, - "end": { - "$date": "2021-03-06T22:45:23.000Z" - }, - "events": [ - { - "uuid": "ab3b0bd1-0578-46ad-9993-09fea518180b", - "start": { - "$date": "2021-03-06T22:12:31.000Z" - }, - "end": { - "$date": "2021-03-06T22:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2adf5785-7646-49a1-bad5-593d5d9c64f8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-06T22:16:57.000Z" - }, - "end": { - "$date": "2021-03-06T22:58:03.000Z" - }, - "events": [ - { - "uuid": "18a47f3a-f49f-45d1-b0f0-47b5481b0108", - "start": { - "$date": "2021-03-06T22:16:57.000Z" - }, - "end": { - "$date": "2021-03-06T22:58:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aaca2e0-e3fb-4a16-a61c-3357a0bc9f3f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T22:42:29.000Z" - }, - "end": { - "$date": "2021-03-06T22:59:42.000Z" - }, - "events": [ - { - "uuid": "179c6851-3ed5-434b-99c6-8b56e6b425fb", - "start": { - "$date": "2021-03-06T22:42:29.000Z" - }, - "end": { - "$date": "2021-03-06T22:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1aae73cc-47b0-4851-b127-46f5c47d384b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-06T22:45:43.000Z" - }, - "end": { - "$date": "2021-03-07T00:22:16.000Z" - }, - "events": [ - { - "uuid": "6c88cf88-a036-4be8-b440-71b21c6fdf16", - "start": { - "$date": "2021-03-06T22:45:43.000Z" - }, - "end": { - "$date": "2021-03-06T23:51:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9825041d-43d7-4a25-af95-28b2e0c6da35", - "start": { - "$date": "2021-03-06T23:51:43.000Z" - }, - "end": { - "$date": "2021-03-06T23:56:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f97949a4-d6f1-4ab3-b9c9-38483219a728", - "start": { - "$date": "2021-03-06T23:56:43.000Z" - }, - "end": { - "$date": "2021-03-07T00:06:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffa9234b-33b5-4f11-8c0f-d015486fd5f4", - "start": { - "$date": "2021-03-07T00:06:43.000Z" - }, - "end": { - "$date": "2021-03-07T00:18:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de64a747-c73a-42e2-bbde-1b0af833bf30", - "start": { - "$date": "2021-03-07T00:18:43.000Z" - }, - "end": { - "$date": "2021-03-07T00:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2be93e5d-5a69-44a5-8fbb-cd9bbe3712f7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T23:00:22.000Z" - }, - "end": { - "$date": "2021-03-06T23:01:37.000Z" - }, - "events": [ - { - "uuid": "6cf51ba2-84a9-46a7-ac5f-ea905cd26380", - "start": { - "$date": "2021-03-06T23:00:22.000Z" - }, - "end": { - "$date": "2021-03-06T23:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0a3f177e-23b4-40b5-87a7-53194c4c119d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T23:01:39.000Z" - }, - "end": { - "$date": "2021-03-06T23:02:48.000Z" - }, - "events": [ - { - "uuid": "c88ba07c-cfb9-4cfb-abb0-04b5d9b445ed", - "start": { - "$date": "2021-03-06T23:01:39.000Z" - }, - "end": { - "$date": "2021-03-06T23:02:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3c705131-71bc-4eac-9d4d-f44b90db4915", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-06T23:02:13.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:48.000Z" - }, - "events": [ - { - "uuid": "fe238707-912d-4e1d-81a6-a084f415e239", - "start": { - "$date": "2021-03-06T23:02:13.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c1a536fc-4722-4473-bb34-5d3445cc156e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T23:02:54.000Z" - }, - "end": { - "$date": "2021-03-06T23:43:03.000Z" - }, - "events": [ - { - "uuid": "38f2df39-9a78-4557-a28e-72e8ab7a5053", - "start": { - "$date": "2021-03-06T23:02:54.000Z" - }, - "end": { - "$date": "2021-03-06T23:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f579e46c-47f1-4b52-aaa2-86b8d0eec2cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-06T23:33:48.000Z" - }, - "end": { - "$date": "2021-03-06T23:35:23.000Z" - }, - "events": [ - { - "uuid": "dd14722f-3710-4ca2-a0b4-a540b8cd59d2", - "start": { - "$date": "2021-03-06T23:33:48.000Z" - }, - "end": { - "$date": "2021-03-06T23:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "51671ca9-32f8-4a61-954e-666e7dc27ece", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-06T23:35:33.000Z" - }, - "end": { - "$date": "2021-03-06T23:45:59.000Z" - }, - "events": [ - { - "uuid": "0b8928cd-e149-485a-8791-1316e932d71a", - "start": { - "$date": "2021-03-06T23:35:33.000Z" - }, - "end": { - "$date": "2021-03-06T23:45:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dbb63d9e-5d1c-481b-b730-0dfb9dc22532", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-06T23:45:00.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:35.000Z" - }, - "events": [ - { - "uuid": "ab7ae148-758f-4002-8cad-6190e6f56aaa", - "start": { - "$date": "2021-03-06T23:45:00.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2f99d16e-6819-4ca7-a790-d135dd9a5540", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-06T23:46:14.000Z" - }, - "end": { - "$date": "2021-03-07T00:19:36.000Z" - }, - "events": [ - { - "uuid": "ff4ecc98-6e32-4f9b-8725-4ee77456782e", - "start": { - "$date": "2021-03-06T23:46:14.000Z" - }, - "end": { - "$date": "2021-03-07T00:19:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c329bef-6367-47b4-898d-d2f7bec8aea3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-06T23:46:24.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:47.000Z" - }, - "events": [ - { - "uuid": "3ff690a5-6f64-45d9-bd12-ca64c052e3c8", - "start": { - "$date": "2021-03-06T23:46:24.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7d93f355-46ce-4aaa-a978-7c3c9976e9ff", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-06T23:47:27.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:48.000Z" - }, - "events": [ - { - "uuid": "dfb2cc60-89dc-4fe9-87df-7d04b6a34857", - "start": { - "$date": "2021-03-06T23:47:27.000Z" - }, - "end": { - "$date": "2021-03-07T00:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "452887c4-4b65-483a-98f7-d9472dd5b507", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T00:05:10.000Z" - }, - "end": { - "$date": "2021-03-07T00:26:08.000Z" - }, - "events": [ - { - "uuid": "6816f18e-3ee1-45c4-b69f-9d6d03f69fc0", - "start": { - "$date": "2021-03-07T00:05:10.000Z" - }, - "end": { - "$date": "2021-03-07T00:26:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "57713f79-eb7b-461d-9e83-5be93c1993ea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-07T00:04:37.000Z" - }, - "end": { - "$date": "2021-03-07T00:05:42.000Z" - }, - "events": [ - { - "uuid": "d9bed63b-a081-4757-846e-47db228e4139", - "start": { - "$date": "2021-03-07T00:04:37.000Z" - }, - "end": { - "$date": "2021-03-07T00:05:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7ece9758-3f13-4cb0-8da1-e495fee68f1b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-07T00:07:08.000Z" - }, - "end": { - "$date": "2021-03-07T02:39:04.000Z" - }, - "events": [ - { - "uuid": "fbb24847-82e8-48c6-884d-b7b5709a544e", - "start": { - "$date": "2021-03-07T00:07:08.000Z" - }, - "end": { - "$date": "2021-03-07T02:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "4b43c417-1ecd-440d-8e37-c777af98aca4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T00:23:15.000Z" - }, - "end": { - "$date": "2021-03-07T00:29:01.000Z" - }, - "events": [ - { - "uuid": "f0ee5ad8-4998-4cbd-b386-c6b9dc6f708c", - "start": { - "$date": "2021-03-07T00:23:15.000Z" - }, - "end": { - "$date": "2021-03-07T00:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bc424de-9738-41c5-a1dc-b09f4363174f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T00:30:38.000Z" - }, - "end": { - "$date": "2021-03-07T00:47:06.000Z" - }, - "events": [ - { - "uuid": "80eff374-b802-47aa-89ac-1a2c43cc2abe", - "start": { - "$date": "2021-03-07T00:30:38.000Z" - }, - "end": { - "$date": "2021-03-07T00:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad75c58e-7e59-4f25-9c40-d15d1b1c4b67", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T00:30:33.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:58.000Z" - }, - "events": [ - { - "uuid": "26547a70-0153-404c-abc6-55603c652ed4", - "start": { - "$date": "2021-03-07T00:30:33.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98424fbf-effe-4cfb-b696-c15a672113d4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T00:30:32.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:53.000Z" - }, - "events": [ - { - "uuid": "6420b0de-7802-4e57-a1ef-913cc66b6527", - "start": { - "$date": "2021-03-07T00:30:32.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bbf08e7-9cb0-4a59-ba93-fab59151daca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T00:30:31.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:50.000Z" - }, - "events": [ - { - "uuid": "027f9b1f-5c06-4b66-be18-2682ec952d0e", - "start": { - "$date": "2021-03-07T00:30:31.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc063ee9-4497-42c3-8a65-e3df9ef6e3e6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T00:30:34.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:59.000Z" - }, - "events": [ - { - "uuid": "b83d0c52-5c18-4334-8650-04f766e14777", - "start": { - "$date": "2021-03-07T00:30:34.000Z" - }, - "end": { - "$date": "2021-03-07T00:46:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8de48970-134b-421a-94ac-d16a78459a10", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T00:29:11.000Z" - }, - "end": { - "$date": "2021-03-07T02:26:57.000Z" - }, - "events": [ - { - "uuid": "2aeb4463-b2d7-4a5c-a422-e3de0d0c7014", - "start": { - "$date": "2021-03-07T00:29:11.000Z" - }, - "end": { - "$date": "2021-03-07T02:14:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1328498f-aa2e-4209-9dac-6bcf818cfb14", - "start": { - "$date": "2021-03-07T02:14:11.000Z" - }, - "end": { - "$date": "2021-03-07T02:15:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d4663021-29ac-4d90-8e96-ea943a373f4e", - "start": { - "$date": "2021-03-07T02:15:11.000Z" - }, - "end": { - "$date": "2021-03-07T02:26:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d566f2f-b3cc-4680-b202-434cb0952a51", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T00:49:08.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:58.000Z" - }, - "events": [ - { - "uuid": "bf17f228-62bd-4b85-ac14-d9e8260e7071", - "start": { - "$date": "2021-03-07T00:49:08.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "687e485d-0b92-4294-8b8a-342518e5ec2d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T00:49:03.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:43.000Z" - }, - "events": [ - { - "uuid": "0269d7e9-7555-4d12-8057-97a9ddca7f07", - "start": { - "$date": "2021-03-07T00:49:03.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd3965c4-2acd-4da1-8e0b-1cbb00f6ba60", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T00:49:03.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:48.000Z" - }, - "events": [ - { - "uuid": "64421b7d-003c-4ca3-9d61-f2535619c614", - "start": { - "$date": "2021-03-07T00:49:03.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51452ed7-208e-4995-a996-011cca2d4f38", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T00:49:32.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:41.000Z" - }, - "events": [ - { - "uuid": "bf5214d0-6681-4a42-97ac-e82e2e402cf2", - "start": { - "$date": "2021-03-07T00:49:32.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69c54d6e-a232-45c3-b08a-fb45b9710736", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T00:49:04.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:50.000Z" - }, - "events": [ - { - "uuid": "b057f995-77a8-4381-b53e-8ee2055d3c96", - "start": { - "$date": "2021-03-07T00:49:04.000Z" - }, - "end": { - "$date": "2021-03-07T01:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "396a77bf-3d2c-4a8c-a611-46c15d0d62b9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T01:09:29.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:49.000Z" - }, - "events": [ - { - "uuid": "ef98555c-82ca-43fe-96f6-f15233527ab7", - "start": { - "$date": "2021-03-07T01:09:29.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b9a11a9-d514-4748-9618-94cb8e86d2e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T01:09:19.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:44.000Z" - }, - "events": [ - { - "uuid": "f36255fb-dbf3-4408-a2f0-4db57540cf7a", - "start": { - "$date": "2021-03-07T01:09:19.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da062ae8-f577-4dd6-b3ba-99b6d098ae8d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T01:09:23.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:45.000Z" - }, - "events": [ - { - "uuid": "275f68b7-196a-4145-be45-d16a9d1fe969", - "start": { - "$date": "2021-03-07T01:09:23.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15cde371-c7db-4609-97e0-6e29fa49117b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T01:09:26.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:47.000Z" - }, - "events": [ - { - "uuid": "8cfd7c0e-552b-4714-82b3-70219d72c6ca", - "start": { - "$date": "2021-03-07T01:09:26.000Z" - }, - "end": { - "$date": "2021-03-07T01:30:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "149be6c8-0962-4c67-9574-0c842ba9a1e3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T01:31:57.000Z" - }, - "end": { - "$date": "2021-03-07T03:45:14.000Z" - }, - "events": [ - { - "uuid": "249d1e5b-a6d1-467a-a3a9-a3eca789f29e", - "start": { - "$date": "2021-03-07T01:31:57.000Z" - }, - "end": { - "$date": "2021-03-07T03:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "01bec78c-5dda-4730-ae04-6d159813a6d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T01:34:53.000Z" - }, - "end": { - "$date": "2021-03-07T01:39:58.000Z" - }, - "events": [ - { - "uuid": "317bf92f-4b15-4a79-9f50-689b8c708491", - "start": { - "$date": "2021-03-07T01:34:53.000Z" - }, - "end": { - "$date": "2021-03-07T01:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "34c206f7-6a38-49da-acb5-d78d07dd3691", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T01:43:38.000Z" - }, - "end": { - "$date": "2021-03-07T02:45:35.000Z" - }, - "events": [ - { - "uuid": "5bcfbc10-625f-4dba-8823-488e8aa2a706", - "start": { - "$date": "2021-03-07T01:43:38.000Z" - }, - "end": { - "$date": "2021-03-07T02:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6378b694-dcbe-464f-ad78-06db2f602b99", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-07T02:40:25.000Z" - }, - "end": { - "$date": "2021-03-07T03:12:12.000Z" - }, - "events": [ - { - "uuid": "fac91f7d-8c95-4de6-9315-60db0c428297", - "start": { - "$date": "2021-03-07T02:40:25.000Z" - }, - "end": { - "$date": "2021-03-07T03:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b3e03598-45dd-4b75-ab73-afa2a31300fa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T02:27:07.000Z" - }, - "end": { - "$date": "2021-03-07T02:34:57.000Z" - }, - "events": [ - { - "uuid": "3febdad5-5957-4314-aece-64ac1282df2b", - "start": { - "$date": "2021-03-07T02:27:07.000Z" - }, - "end": { - "$date": "2021-03-07T02:34:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1f4541f5-5d7c-4775-b4db-e5afe2fd3d1c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-07T03:10:05.000Z" - }, - "end": { - "$date": "2021-03-07T06:16:28.000Z" - }, - "events": [ - { - "uuid": "59a0396d-57c1-48c3-8451-39ad18cceb23", - "start": { - "$date": "2021-03-07T03:10:05.000Z" - }, - "end": { - "$date": "2021-03-07T06:16:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b93d83ae-165c-4842-8700-71742ca56743", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-07T03:32:16.000Z" - }, - "end": { - "$date": "2021-03-07T04:04:52.000Z" - }, - "events": [ - { - "uuid": "30baa715-02ba-463b-ac1b-50bb45e23f70", - "start": { - "$date": "2021-03-07T03:32:16.000Z" - }, - "end": { - "$date": "2021-03-07T04:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "899a28ba-de37-4337-a5bd-f468a13f2f93", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T03:57:45.000Z" - }, - "end": { - "$date": "2021-03-07T04:23:44.000Z" - }, - "events": [ - { - "uuid": "ab648df5-a000-4179-84c2-939c58b5e1e5", - "start": { - "$date": "2021-03-07T03:57:45.000Z" - }, - "end": { - "$date": "2021-03-07T04:23:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d995ff0-7f18-4676-803d-ab3150716034", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T03:57:55.000Z" - }, - "end": { - "$date": "2021-03-07T04:23:26.000Z" - }, - "events": [ - { - "uuid": "f4e40754-0197-462b-a36d-b8838b496769", - "start": { - "$date": "2021-03-07T03:57:55.000Z" - }, - "end": { - "$date": "2021-03-07T04:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c821ec3-9abd-4474-a51d-46b97642ddfb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-07T04:16:37.000Z" - }, - "end": { - "$date": "2021-03-07T04:55:24.000Z" - }, - "events": [ - { - "uuid": "73e343aa-6d53-4a4f-9e46-425bd19f14b6", - "start": { - "$date": "2021-03-07T04:16:37.000Z" - }, - "end": { - "$date": "2021-03-07T04:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0153ba07-7cac-419e-9072-c98e44fd2a75", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T04:17:32.000Z" - }, - "end": { - "$date": "2021-03-07T04:18:47.000Z" - }, - "events": [ - { - "uuid": "5bf04d2b-dd8f-49f8-aa6a-7d302448f8ec", - "start": { - "$date": "2021-03-07T04:17:32.000Z" - }, - "end": { - "$date": "2021-03-07T04:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "bad89fea-5de2-4a00-b394-08dfc0ed5935", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-07T04:20:08.000Z" - }, - "end": { - "$date": "2021-03-07T04:54:24.000Z" - }, - "events": [ - { - "uuid": "e1e21e1a-7e4e-49f0-b98e-bcd02416d687", - "start": { - "$date": "2021-03-07T04:20:08.000Z" - }, - "end": { - "$date": "2021-03-07T04:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ce22064-6116-4100-a01e-0eeacfcd7632", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T04:26:12.000Z" - }, - "end": { - "$date": "2021-03-07T04:42:53.000Z" - }, - "events": [ - { - "uuid": "803136c0-7369-477f-b900-aa14af70c6f5", - "start": { - "$date": "2021-03-07T04:26:12.000Z" - }, - "end": { - "$date": "2021-03-07T04:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc49ce68-ae89-4423-ae37-6a3b34227b32", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T04:26:46.000Z" - }, - "end": { - "$date": "2021-03-07T04:42:47.000Z" - }, - "events": [ - { - "uuid": "fb57d75b-0e29-4d80-9618-aa6b2540c464", - "start": { - "$date": "2021-03-07T04:26:46.000Z" - }, - "end": { - "$date": "2021-03-07T04:42:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c272742b-c1b0-4922-9e4c-9a9cf1b5e738", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-07T04:40:47.000Z" - }, - "end": { - "$date": "2021-03-07T10:32:32.000Z" - }, - "events": [ - { - "uuid": "3b5cdf06-f78b-4c5c-b1d0-1a9b7a7435bf", - "start": { - "$date": "2021-03-07T04:40:47.000Z" - }, - "end": { - "$date": "2021-03-07T10:32:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b262c2b0-046b-4c45-b7f9-00e5ce2cf342", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T05:38:26.000Z" - }, - "end": { - "$date": "2021-03-07T05:40:44.000Z" - }, - "events": [ - { - "uuid": "99212cbb-2b96-4e26-b744-b4e04b0cb1ea", - "start": { - "$date": "2021-03-07T05:38:26.000Z" - }, - "end": { - "$date": "2021-03-07T05:40:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "833e27c6-18ad-459e-ab47-493b3fc32d11", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T04:45:11.000Z" - }, - "end": { - "$date": "2021-03-07T05:09:43.000Z" - }, - "events": [ - { - "uuid": "142cfe0d-bdb3-4088-a144-1669a0fe7117", - "start": { - "$date": "2021-03-07T04:45:11.000Z" - }, - "end": { - "$date": "2021-03-07T05:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "616e5291-724c-4ae7-b7b3-a04d4cec831b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-07T04:54:54.000Z" - }, - "end": { - "$date": "2021-03-07T05:45:24.000Z" - }, - "events": [ - { - "uuid": "70b8485b-9321-4525-b55f-4d1a71fc4076", - "start": { - "$date": "2021-03-07T04:54:54.000Z" - }, - "end": { - "$date": "2021-03-07T05:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f94202e4-8dff-4f8b-b031-36c10f6c2342", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-07T04:55:56.000Z" - }, - "end": { - "$date": "2021-03-07T04:57:26.000Z" - }, - "events": [ - { - "uuid": "bf3a690e-2069-4c54-885b-897829360d1e", - "start": { - "$date": "2021-03-07T04:55:56.000Z" - }, - "end": { - "$date": "2021-03-07T04:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acbd6f9c-73d2-4f83-aac5-4e1b75c4611a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T05:38:22.000Z" - }, - "end": { - "$date": "2021-03-07T05:39:28.000Z" - }, - "events": [ - { - "uuid": "ae8fda7d-91dc-4687-bc4d-c3f1914b5fec", - "start": { - "$date": "2021-03-07T05:38:22.000Z" - }, - "end": { - "$date": "2021-03-07T05:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b7469e2-04d3-4b0b-9530-8752df45fcd4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T05:22:22.000Z" - }, - "end": { - "$date": "2021-03-07T05:38:17.000Z" - }, - "events": [ - { - "uuid": "5d2ac7fb-84b7-457b-b9e6-ecdc0e736eb6", - "start": { - "$date": "2021-03-07T05:22:22.000Z" - }, - "end": { - "$date": "2021-03-07T05:38:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bdc817c-486e-4760-81ec-5dc5238131b1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T05:22:24.000Z" - }, - "end": { - "$date": "2021-03-07T05:38:20.000Z" - }, - "events": [ - { - "uuid": "3050d9eb-b3ec-41f3-9b87-66e003ac42fe", - "start": { - "$date": "2021-03-07T05:22:24.000Z" - }, - "end": { - "$date": "2021-03-07T05:38:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3d057262-f87f-45b0-aaba-09420a260e19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T05:29:30.000Z" - }, - "end": { - "$date": "2021-03-07T06:13:53.000Z" - }, - "events": [ - { - "uuid": "62dcafba-316d-417d-80b0-71c67b76648b", - "start": { - "$date": "2021-03-07T05:29:30.000Z" - }, - "end": { - "$date": "2021-03-07T06:13:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01058e46-edb8-426a-bbd2-d653119bc458", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-07T05:31:17.000Z" - }, - "end": { - "$date": "2021-03-07T05:38:37.000Z" - }, - "events": [ - { - "uuid": "fd39c7ad-2976-473d-9483-77954fd0515c", - "start": { - "$date": "2021-03-07T05:31:17.000Z" - }, - "end": { - "$date": "2021-03-07T05:38:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "85b0c9fe-0872-46d8-88ed-9a9421b6e6b3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-07T05:38:52.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:04.000Z" - }, - "events": [ - { - "uuid": "c961c893-b2d2-41a4-8558-7c6a19091f30", - "start": { - "$date": "2021-03-07T05:38:52.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "49829689-b410-49ae-8e3f-eca74f113446", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T05:40:27.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:16.000Z" - }, - "events": [ - { - "uuid": "24791547-5bd2-4038-b3f8-474b902a2e45", - "start": { - "$date": "2021-03-07T05:40:27.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "02503ebc-9645-4d76-9780-79dc42575469", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T05:40:37.000Z" - }, - "end": { - "$date": "2021-03-07T06:27:48.000Z" - }, - "events": [ - { - "uuid": "76de275b-cdaf-4d91-92ab-4c3070ebe87a", - "start": { - "$date": "2021-03-07T05:40:37.000Z" - }, - "end": { - "$date": "2021-03-07T06:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4298f0dd-2c8d-4bbd-966e-09550b167ece", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T05:41:29.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:34.000Z" - }, - "events": [ - { - "uuid": "409b05e2-82b8-4ced-b0ce-06f2d7fb108a", - "start": { - "$date": "2021-03-07T05:41:29.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "1a20d6a9-b3e4-44db-b320-43072189f76a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-07T06:09:52.000Z" - }, - "end": { - "$date": "2021-03-07T06:51:17.000Z" - }, - "events": [ - { - "uuid": "5767c537-86cc-45fd-8331-bbd5b1dc13d6", - "start": { - "$date": "2021-03-07T06:09:52.000Z" - }, - "end": { - "$date": "2021-03-07T06:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "60735ec4-c2ee-4659-a757-db5448167d50", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T06:28:55.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:12.000Z" - }, - "events": [ - { - "uuid": "cbd0a180-9895-41da-ad7c-daa0d3da4520", - "start": { - "$date": "2021-03-07T06:28:55.000Z" - }, - "end": { - "$date": "2021-03-07T06:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "5fb550bb-06ce-406e-83c3-3186d273fb2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T06:33:06.000Z" - }, - "end": { - "$date": "2021-03-07T06:58:47.000Z" - }, - "events": [ - { - "uuid": "d4324f7f-4adc-418e-b950-bc7bd483b612", - "start": { - "$date": "2021-03-07T06:33:06.000Z" - }, - "end": { - "$date": "2021-03-07T06:58:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5dcdeb13-c2c6-4715-9037-45d7702840a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T06:51:19.000Z" - }, - "end": { - "$date": "2021-03-07T07:17:58.000Z" - }, - "events": [ - { - "uuid": "c9a7f761-92a9-4af3-bdb1-364a151601ae", - "start": { - "$date": "2021-03-07T06:51:19.000Z" - }, - "end": { - "$date": "2021-03-07T07:17:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c6e914eb-25e6-4c8d-99f8-4a732d4688ed", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-07T06:45:59.000Z" - }, - "end": { - "$date": "2021-03-07T07:13:22.000Z" - }, - "events": [ - { - "uuid": "818f0cc2-94ae-4a4c-9e2d-1c06a2854b1d", - "start": { - "$date": "2021-03-07T06:45:59.000Z" - }, - "end": { - "$date": "2021-03-07T07:13:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1889b6a3-4667-4dc8-b8b3-2a32c865a4dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T08:03:12.000Z" - }, - "end": { - "$date": "2021-03-07T08:04:03.000Z" - }, - "events": [ - { - "uuid": "2dd9722b-e9e2-4166-a171-6ae7acc397ba", - "start": { - "$date": "2021-03-07T08:03:12.000Z" - }, - "end": { - "$date": "2021-03-07T08:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73a24fd8-02a9-4c5b-a270-01c479c9cc44", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T07:02:08.000Z" - }, - "end": { - "$date": "2021-03-07T07:23:01.000Z" - }, - "events": [ - { - "uuid": "7c10af38-0c55-420a-9eed-7e7d44a3181f", - "start": { - "$date": "2021-03-07T07:02:08.000Z" - }, - "end": { - "$date": "2021-03-07T07:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17702039-957c-4da7-b7ca-fd35cdb405c8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T07:02:06.000Z" - }, - "end": { - "$date": "2021-03-07T07:22:51.000Z" - }, - "events": [ - { - "uuid": "ca9c3101-6429-4aa0-b9a4-acd01a055f31", - "start": { - "$date": "2021-03-07T07:02:06.000Z" - }, - "end": { - "$date": "2021-03-07T07:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "856884f8-2291-4726-902d-ad46d0ad0f9b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T07:02:49.000Z" - }, - "end": { - "$date": "2021-03-07T07:22:55.000Z" - }, - "events": [ - { - "uuid": "2f328fb4-a3dd-453c-9e73-1653ac7bbe76", - "start": { - "$date": "2021-03-07T07:02:49.000Z" - }, - "end": { - "$date": "2021-03-07T07:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "31e23c07-d34b-4574-b84e-10096c958ab5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-07T07:08:34.000Z" - }, - "end": { - "$date": "2021-03-07T08:27:51.000Z" - }, - "events": [ - { - "uuid": "6944764c-7c7e-47d7-89d2-60b1891ac1fb", - "start": { - "$date": "2021-03-07T07:08:34.000Z" - }, - "end": { - "$date": "2021-03-07T08:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1211ad9b-08b5-4bd6-94db-a676d2b3ced7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T07:25:04.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:14.000Z" - }, - "events": [ - { - "uuid": "968d38d8-034a-4c46-9a1e-4cf376dd1a2f", - "start": { - "$date": "2021-03-07T07:25:04.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ff4aa65-d3a9-438b-9544-41815fc570c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T07:25:07.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:12.000Z" - }, - "events": [ - { - "uuid": "a2cb6234-acba-45fd-b45a-802efd33f73c", - "start": { - "$date": "2021-03-07T07:25:07.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87bce27c-d850-48f0-b221-26d35e10446f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T07:25:04.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:05.000Z" - }, - "events": [ - { - "uuid": "512871df-c5e8-4d80-acfc-57768b9a0e1e", - "start": { - "$date": "2021-03-07T07:25:04.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0360ddb1-3e90-4012-be3d-70481966ecc0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T07:25:07.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:07.000Z" - }, - "events": [ - { - "uuid": "48535f26-2305-48fd-a6e2-253cb0ec6697", - "start": { - "$date": "2021-03-07T07:25:07.000Z" - }, - "end": { - "$date": "2021-03-07T07:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eb003ed-1f72-4c7f-9b37-8891802bb6ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T07:45:05.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:15.000Z" - }, - "events": [ - { - "uuid": "1deba40a-183b-4746-a389-d6cb90eba371", - "start": { - "$date": "2021-03-07T07:45:05.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37c0766c-d82a-4afe-ad71-b7d1aff79590", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T07:46:22.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:13.000Z" - }, - "events": [ - { - "uuid": "9e6318b7-d0f3-4695-b4f2-eec29e65e427", - "start": { - "$date": "2021-03-07T07:46:22.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "313ab32a-ac73-491f-a7d8-558429eea7df", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T07:45:04.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:11.000Z" - }, - "events": [ - { - "uuid": "b891e336-e189-45dd-abf0-3a3dd79e58e1", - "start": { - "$date": "2021-03-07T07:45:04.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48ebaadf-b7f4-4b99-a412-a9b66f84c85b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T07:45:08.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:14.000Z" - }, - "events": [ - { - "uuid": "57a6dbce-84de-43f6-94ae-047ce9b28f2c", - "start": { - "$date": "2021-03-07T07:45:08.000Z" - }, - "end": { - "$date": "2021-03-07T08:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c41e1f50-9f44-43a8-9010-0cbc35158ee0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T08:04:17.000Z" - }, - "end": { - "$date": "2021-03-07T08:48:24.000Z" - }, - "events": [ - { - "uuid": "886e797b-4524-4daf-adf2-1b8f3b0c9e60", - "start": { - "$date": "2021-03-07T08:04:17.000Z" - }, - "end": { - "$date": "2021-03-07T08:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a17ae462-98d0-4470-8291-2a6015f1b92b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-07T08:09:42.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:11.000Z" - }, - "events": [ - { - "uuid": "da2c1f4a-2fe9-4ec0-be66-1ce9b13963a5", - "start": { - "$date": "2021-03-07T08:09:42.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adb0117b-d888-462e-a9da-4a9a1d943e4a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T08:09:38.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:18.000Z" - }, - "events": [ - { - "uuid": "cf2eebc8-63c2-48b5-a0d0-308e7e8bd34c", - "start": { - "$date": "2021-03-07T08:09:38.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "143dc899-a887-4c4d-9647-b7e463612d84", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T08:09:40.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:11.000Z" - }, - "events": [ - { - "uuid": "b3f70b33-ca9c-49ec-be30-fdee381364cb", - "start": { - "$date": "2021-03-07T08:09:40.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c866e57b-2303-4d8e-923f-17e9da2d72d7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T08:09:40.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:24.000Z" - }, - "events": [ - { - "uuid": "e67ca492-77ca-4568-9377-f25350a31b44", - "start": { - "$date": "2021-03-07T08:09:40.000Z" - }, - "end": { - "$date": "2021-03-07T08:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e06e4289-b833-4cef-8d02-47ded5fda53b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-07T08:23:02.000Z" - }, - "end": { - "$date": "2021-03-07T09:03:42.000Z" - }, - "events": [ - { - "uuid": "5b1c9deb-3e47-4c66-9a91-fe23a06b5d4b", - "start": { - "$date": "2021-03-07T08:23:02.000Z" - }, - "end": { - "$date": "2021-03-07T09:03:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "00fa126e-7e2f-460d-aff9-fe02a6f8afd3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-07T08:28:47.000Z" - }, - "end": { - "$date": "2021-03-07T09:05:07.000Z" - }, - "events": [ - { - "uuid": "180e6f79-94e5-42a4-89a8-23ff8a9d21e2", - "start": { - "$date": "2021-03-07T08:28:47.000Z" - }, - "end": { - "$date": "2021-03-07T09:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fafa178a-cabe-4da9-9e4d-422a9dc1f302", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-07T08:49:57.000Z" - }, - "end": { - "$date": "2021-03-07T09:24:28.000Z" - }, - "events": [ - { - "uuid": "2509ef8b-a0cd-449a-9e99-c93d70b3e899", - "start": { - "$date": "2021-03-07T08:49:57.000Z" - }, - "end": { - "$date": "2021-03-07T09:24:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "23031049-c68b-46ed-b9b5-781f4218f699", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T08:48:28.000Z" - }, - "end": { - "$date": "2021-03-07T09:18:15.000Z" - }, - "events": [ - { - "uuid": "7625b42c-d579-4294-807b-10a06deebe2e", - "start": { - "$date": "2021-03-07T08:48:28.000Z" - }, - "end": { - "$date": "2021-03-07T09:18:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "5a5c4054-7c35-4bfd-b391-c64b34f222cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-07T09:12:26.000Z" - }, - "end": { - "$date": "2021-03-07T09:35:31.000Z" - }, - "events": [ - { - "uuid": "c0bd4018-4e71-4586-a5fd-1cdad545b434", - "start": { - "$date": "2021-03-07T09:12:26.000Z" - }, - "end": { - "$date": "2021-03-07T09:35:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f32a733-e9c3-4060-973c-3c5f6ecd8750", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-07T09:25:24.000Z" - }, - "end": { - "$date": "2021-03-07T09:36:57.000Z" - }, - "events": [ - { - "uuid": "1b932b3c-3b22-4545-826e-66d009bb4f30", - "start": { - "$date": "2021-03-07T09:25:24.000Z" - }, - "end": { - "$date": "2021-03-07T09:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1680159c-f83c-4973-b22c-520ed24722a7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-07T10:32:45.000Z" - }, - "end": { - "$date": "2021-03-07T11:01:31.000Z" - }, - "events": [ - { - "uuid": "4883986b-3372-460d-85c5-99407b771041", - "start": { - "$date": "2021-03-07T10:32:45.000Z" - }, - "end": { - "$date": "2021-03-07T11:01:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ce274901-eea6-49b6-8a34-fbb426635cd2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-07T16:02:05.000Z" - }, - "end": { - "$date": "2021-03-07T17:54:05.000Z" - }, - "events": [ - { - "uuid": "37366b8c-8f5f-40cd-af0e-fda67c9597d6", - "start": { - "$date": "2021-03-07T16:02:05.000Z" - }, - "end": { - "$date": "2021-03-07T17:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7e03449b-d9d2-465c-9eb2-2e772f2ef939", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T16:06:53.000Z" - }, - "end": { - "$date": "2021-03-07T16:08:14.000Z" - }, - "events": [ - { - "uuid": "e804c2f9-f699-44cf-b345-1266d2612ecd", - "start": { - "$date": "2021-03-07T16:06:53.000Z" - }, - "end": { - "$date": "2021-03-07T16:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ffa605cf-a5b1-4106-8d80-e4bf86da37b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T16:15:14.000Z" - }, - "end": { - "$date": "2021-03-07T18:42:13.000Z" - }, - "events": [ - { - "uuid": "383efc82-eeea-4340-b6f1-7cf9737b8e75", - "start": { - "$date": "2021-03-07T16:15:14.000Z" - }, - "end": { - "$date": "2021-03-07T18:42:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45dcd5b1-97a0-4518-82d9-c09b2c78b6e4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-07T17:25:21.000Z" - }, - "end": { - "$date": "2021-03-07T18:15:06.000Z" - }, - "events": [ - { - "uuid": "1b2488e5-fee1-4293-a7a0-734db23ec80c", - "start": { - "$date": "2021-03-07T17:25:21.000Z" - }, - "end": { - "$date": "2021-03-07T18:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9d3945b-9e28-4f18-ab58-76370696a859", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T17:42:38.000Z" - }, - "end": { - "$date": "2021-03-07T18:27:19.000Z" - }, - "events": [ - { - "uuid": "098a9769-f7c7-4b2b-9760-ede4da49bf8c", - "start": { - "$date": "2021-03-07T17:42:38.000Z" - }, - "end": { - "$date": "2021-03-07T18:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "d2ed1e3f-356f-400a-9d8f-d307aec9a904", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T19:18:12.000Z" - }, - "end": { - "$date": "2021-03-07T19:19:48.000Z" - }, - "events": [ - { - "uuid": "7e2949dc-380d-4780-a2c6-9f0686cb2fb5", - "start": { - "$date": "2021-03-07T19:18:12.000Z" - }, - "end": { - "$date": "2021-03-07T19:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "daaee569-129b-44b7-9ec9-d8ced9f53bac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-07T19:20:17.000Z" - }, - "end": { - "$date": "2021-03-07T20:02:05.000Z" - }, - "events": [ - { - "uuid": "ad32d2d1-8b72-4f24-a00c-fc5de4718946", - "start": { - "$date": "2021-03-07T19:20:17.000Z" - }, - "end": { - "$date": "2021-03-07T20:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a17ef93d-de49-4314-82ac-6d829e26feff", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-07T20:08:53.000Z" - }, - "end": { - "$date": "2021-03-07T21:20:24.000Z" - }, - "events": [ - { - "uuid": "9e689d77-cc1d-4936-93c5-3a2e0183cab7", - "start": { - "$date": "2021-03-07T20:08:53.000Z" - }, - "end": { - "$date": "2021-03-07T21:20:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9e164a10-a860-41b0-b9ca-3c357768efba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-07T20:30:52.000Z" - }, - "end": { - "$date": "2021-03-07T21:58:07.000Z" - }, - "events": [ - { - "uuid": "15c15ec2-8328-4bed-9b83-ecc5dcea82c6", - "start": { - "$date": "2021-03-07T20:30:52.000Z" - }, - "end": { - "$date": "2021-03-07T21:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2c8e436e-007b-4085-afa4-cbd78779fea5", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-07T22:52:05.000Z" - }, - "end": { - "$date": "2021-03-07T23:29:18.000Z" - }, - "events": [ - { - "uuid": "2786a159-378c-4884-92fd-be264ff94248", - "start": { - "$date": "2021-03-07T22:52:05.000Z" - }, - "end": { - "$date": "2021-03-07T23:23:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "506a9a2c-1a57-405d-88ca-228a42a547f4", - "start": { - "$date": "2021-03-07T23:23:05.000Z" - }, - "end": { - "$date": "2021-03-07T23:29:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2643fb8d-2218-4cd4-a56d-acaca3b206b8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-07T23:15:48.000Z" - }, - "end": { - "$date": "2021-03-08T02:29:37.000Z" - }, - "events": [ - { - "uuid": "f8cf8e95-fd8c-4c62-b291-b79af8418236", - "start": { - "$date": "2021-03-07T23:15:48.000Z" - }, - "end": { - "$date": "2021-03-08T02:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "455222c5-3616-4eb7-8e6d-3b07ae0a67a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T23:30:18.000Z" - }, - "end": { - "$date": "2021-03-07T23:47:33.000Z" - }, - "events": [ - { - "uuid": "12f978af-ef8b-4b30-bddc-4de3e08ead17", - "start": { - "$date": "2021-03-07T23:30:18.000Z" - }, - "end": { - "$date": "2021-03-07T23:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6df3cb86-cd67-45ad-bfb7-6e09569da175", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-07T23:44:54.000Z" - }, - "end": { - "$date": "2021-03-08T01:03:41.000Z" - }, - "events": [ - { - "uuid": "80cd2da5-086b-4b34-8d46-599eb5a2e21b", - "start": { - "$date": "2021-03-07T23:44:54.000Z" - }, - "end": { - "$date": "2021-03-08T01:03:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b196f699-92f9-45b1-b793-fef364a88717", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-07T23:50:28.000Z" - }, - "end": { - "$date": "2021-03-08T00:06:08.000Z" - }, - "events": [ - { - "uuid": "307816c0-f495-44e2-b8c1-48eaec521255", - "start": { - "$date": "2021-03-07T23:50:28.000Z" - }, - "end": { - "$date": "2021-03-08T00:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bc861ef7-d212-4f2f-84f4-886dcf39aa5b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-08T00:06:44.000Z" - }, - "end": { - "$date": "2021-03-08T00:34:46.000Z" - }, - "events": [ - { - "uuid": "cc16cc7b-e92b-4530-b4d5-9e4fbf12946c", - "start": { - "$date": "2021-03-08T00:06:44.000Z" - }, - "end": { - "$date": "2021-03-08T00:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecf3b242-c328-4550-a065-73b3cef84338", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-08T00:07:48.000Z" - }, - "end": { - "$date": "2021-03-08T00:31:53.000Z" - }, - "events": [ - { - "uuid": "d2c97369-11b8-4d37-8be4-3741d9fc2369", - "start": { - "$date": "2021-03-08T00:07:48.000Z" - }, - "end": { - "$date": "2021-03-08T00:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "737b3786-a954-4c2c-8801-7c3d7854e5de", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-08T02:39:23.000Z" - }, - "end": { - "$date": "2021-03-08T03:47:39.000Z" - }, - "events": [ - { - "uuid": "7591c4b8-9bbc-4751-8524-ce8a5e3dc5f9", - "start": { - "$date": "2021-03-08T02:39:23.000Z" - }, - "end": { - "$date": "2021-03-08T03:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "8ecb5f58-e913-4b2c-9b0e-e812a2dda688", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-08T03:19:09.000Z" - }, - "end": { - "$date": "2021-03-08T06:57:20.000Z" - }, - "events": [ - { - "uuid": "d0896d6b-883b-4e4c-889a-0ab8f05c868a", - "start": { - "$date": "2021-03-08T03:19:09.000Z" - }, - "end": { - "$date": "2021-03-08T06:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bda9c1c5-1240-4336-8182-51410c0f0870", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-08T03:30:02.000Z" - }, - "end": { - "$date": "2021-03-08T04:19:49.000Z" - }, - "events": [ - { - "uuid": "29eeb72f-4734-412c-90bf-84f4394f3dc5", - "start": { - "$date": "2021-03-08T03:30:02.000Z" - }, - "end": { - "$date": "2021-03-08T04:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "fa963f21-792c-42a5-ad7c-e616f2c020bf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-08T03:48:00.000Z" - }, - "end": { - "$date": "2021-03-08T03:52:50.000Z" - }, - "events": [ - { - "uuid": "dfcd8e32-3df9-4d22-8d51-8a0c5c532543", - "start": { - "$date": "2021-03-08T03:48:00.000Z" - }, - "end": { - "$date": "2021-03-08T03:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "239e7584-0b49-46fc-b235-1efa416b59af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-08T03:50:47.000Z" - }, - "end": { - "$date": "2021-03-08T06:17:59.000Z" - }, - "events": [ - { - "uuid": "c8f6559e-ff40-4591-bcda-a7d0f97e91ef", - "start": { - "$date": "2021-03-08T03:50:47.000Z" - }, - "end": { - "$date": "2021-03-08T06:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "2dd0c868-f2c1-44c1-8587-efff2638dd65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-08T03:52:04.000Z" - }, - "end": { - "$date": "2021-03-08T04:19:07.000Z" - }, - "events": [ - { - "uuid": "e6951101-5d0a-4078-a195-5f176a732c08", - "start": { - "$date": "2021-03-08T03:52:04.000Z" - }, - "end": { - "$date": "2021-03-08T04:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4e8bdb19-c516-4669-958a-9f255a1b8823", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-08T03:55:21.000Z" - }, - "end": { - "$date": "2021-03-08T05:24:39.000Z" - }, - "events": [ - { - "uuid": "650c8020-3c9f-4411-bffb-392af6c1a1f7", - "start": { - "$date": "2021-03-08T03:55:21.000Z" - }, - "end": { - "$date": "2021-03-08T05:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1fffbe16-5f9f-4968-9119-eca926733dd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-08T04:51:48.000Z" - }, - "end": { - "$date": "2021-03-08T04:51:55.000Z" - }, - "events": [ - { - "uuid": "12d5f38e-a7ef-420f-b0c4-acd8d31fd044", - "start": { - "$date": "2021-03-08T04:51:48.000Z" - }, - "end": { - "$date": "2021-03-08T04:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "482a04f1-d5d6-4ea3-8482-8f4c1db84c52", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-08T04:51:58.000Z" - }, - "end": { - "$date": "2021-03-08T05:39:11.000Z" - }, - "events": [ - { - "uuid": "04267f9a-5f36-4fa9-bcf9-1395e43d3076", - "start": { - "$date": "2021-03-08T04:51:58.000Z" - }, - "end": { - "$date": "2021-03-08T05:39:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb7b0a61-c808-4083-b042-17d7ca72be8d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-08T05:31:23.000Z" - }, - "end": { - "$date": "2021-03-08T05:53:22.000Z" - }, - "events": [ - { - "uuid": "d809a396-a1b4-4ca7-9834-47c5c6be314a", - "start": { - "$date": "2021-03-08T05:31:23.000Z" - }, - "end": { - "$date": "2021-03-08T05:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8635994-b29b-44e1-bcb3-8b4605f0b256", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-08T06:01:17.000Z" - }, - "end": { - "$date": "2021-03-08T06:01:12.000Z" - }, - "events": [ - { - "uuid": "1ff46ff2-2852-4527-8983-e9616cdf60be", - "start": { - "$date": "2021-03-08T06:01:17.000Z" - }, - "end": { - "$date": "2021-03-08T06:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "24400048-5b02-4936-b721-82f40ed57bdb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-08T05:44:55.000Z" - }, - "end": { - "$date": "2021-03-08T05:50:12.000Z" - }, - "events": [ - { - "uuid": "7fe01429-b233-42cb-9ec4-1bb7585f97aa", - "start": { - "$date": "2021-03-08T05:44:55.000Z" - }, - "end": { - "$date": "2021-03-08T05:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e116981-10c1-4afa-8316-c0149e6ba8be", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-08T05:56:49.000Z" - }, - "end": { - "$date": "2021-03-08T06:13:20.000Z" - }, - "events": [ - { - "uuid": "93859ea6-e6b8-4dc1-940b-9a21e1aa4620", - "start": { - "$date": "2021-03-08T05:56:49.000Z" - }, - "end": { - "$date": "2021-03-08T06:13:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d76ad6ce-0de3-4e8a-b55d-0dcacf380413", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-08T06:21:53.000Z" - }, - "end": { - "$date": "2021-03-08T06:36:38.000Z" - }, - "events": [ - { - "uuid": "f4593bda-9359-44d5-854c-a6181d1184b8", - "start": { - "$date": "2021-03-08T06:21:53.000Z" - }, - "end": { - "$date": "2021-03-08T06:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7306a76-37cc-412f-b465-98f638195dfd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-08T06:15:29.000Z" - }, - "end": { - "$date": "2021-03-08T06:33:50.000Z" - }, - "events": [ - { - "uuid": "007646c7-4818-4011-84da-65f46832a203", - "start": { - "$date": "2021-03-08T06:15:29.000Z" - }, - "end": { - "$date": "2021-03-08T06:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "208a69a2-84b9-4506-85a5-d7b21d7cdebc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-08T06:38:05.000Z" - }, - "end": { - "$date": "2021-03-08T06:57:38.000Z" - }, - "events": [ - { - "uuid": "6eabe910-7ca8-433c-a01e-ee0c739f5fba", - "start": { - "$date": "2021-03-08T06:38:05.000Z" - }, - "end": { - "$date": "2021-03-08T06:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51c00428-54ac-42a0-b60e-e6a4a29fd49a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-08T06:39:54.000Z" - }, - "end": { - "$date": "2021-03-08T07:02:12.000Z" - }, - "events": [ - { - "uuid": "22a619e1-ba16-4b78-a6f3-e67f4aaae095", - "start": { - "$date": "2021-03-08T06:39:54.000Z" - }, - "end": { - "$date": "2021-03-08T07:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f1461e0-1059-422b-81c4-e39e9e908258", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-08T07:00:35.000Z" - }, - "end": { - "$date": "2021-03-08T07:21:57.000Z" - }, - "events": [ - { - "uuid": "a2fa836a-b760-4127-a1a7-3dc8706dc26f", - "start": { - "$date": "2021-03-08T07:00:35.000Z" - }, - "end": { - "$date": "2021-03-08T07:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1ad9ca08-45a0-4afb-b7dc-99c7acb54ffd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-08T13:58:45.000Z" - }, - "end": { - "$date": "2021-03-08T14:01:25.000Z" - }, - "events": [ - { - "uuid": "935a9b09-885b-456f-9c16-5947fa8848ce", - "start": { - "$date": "2021-03-08T13:58:45.000Z" - }, - "end": { - "$date": "2021-03-08T14:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "43013b6c-27bd-47a2-8087-31d069d4d31a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-08T15:20:50.000Z" - }, - "end": { - "$date": "2021-03-08T15:30:06.000Z" - }, - "events": [ - { - "uuid": "18c89b64-a8a3-4872-87c7-6691ed8e59f8", - "start": { - "$date": "2021-03-08T15:20:50.000Z" - }, - "end": { - "$date": "2021-03-08T15:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1b991b9d-41df-4b7c-9961-75ffdb426ec5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-08T16:22:22.000Z" - }, - "end": { - "$date": "2021-03-08T17:08:48.000Z" - }, - "events": [ - { - "uuid": "008b3547-e3fb-4658-91bb-fb76815e3a59", - "start": { - "$date": "2021-03-08T16:22:22.000Z" - }, - "end": { - "$date": "2021-03-08T17:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b44ab697-c99a-413e-a613-9b5dd697a2cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-08T17:08:15.000Z" - }, - "end": { - "$date": "2021-03-08T17:30:08.000Z" - }, - "events": [ - { - "uuid": "19365d3a-4126-4e1c-874a-ee4e28d78528", - "start": { - "$date": "2021-03-08T17:08:15.000Z" - }, - "end": { - "$date": "2021-03-08T17:30:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e30e41c9-68a3-43b7-8e15-d3245af239ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-08T17:34:41.000Z" - }, - "end": { - "$date": "2021-03-08T17:51:34.000Z" - }, - "events": [ - { - "uuid": "3a9a92b0-3f0c-4b35-be26-dfc6721177bb", - "start": { - "$date": "2021-03-08T17:34:41.000Z" - }, - "end": { - "$date": "2021-03-08T17:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "65af2e83-3a2a-4f16-a79f-869f3e8630c1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-08T19:54:05.000Z" - }, - "end": { - "$date": "2021-03-08T20:31:16.000Z" - }, - "events": [ - { - "uuid": "83ed2b88-9d71-4f83-ac4a-3ebb7d2ee7ae", - "start": { - "$date": "2021-03-08T19:54:05.000Z" - }, - "end": { - "$date": "2021-03-08T20:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1f174f20-74dc-4011-92a1-03f9e4760a57", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-08T21:31:13.000Z" - }, - "end": { - "$date": "2021-03-08T21:32:54.000Z" - }, - "events": [ - { - "uuid": "c0e8d4e4-f95a-4493-a4a8-745206cd9e31", - "start": { - "$date": "2021-03-08T21:31:13.000Z" - }, - "end": { - "$date": "2021-03-08T21:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "09a22a0d-a2d3-471b-887b-d684e9e8200e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-08T21:33:43.000Z" - }, - "end": { - "$date": "2021-03-08T21:35:21.000Z" - }, - "events": [ - { - "uuid": "c1b70318-6409-4378-aaf1-a7526c4657db", - "start": { - "$date": "2021-03-08T21:33:43.000Z" - }, - "end": { - "$date": "2021-03-08T21:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a6a8c7b7-7171-4062-b370-25ac4af5b66c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-08T21:37:56.000Z" - }, - "end": { - "$date": "2021-03-08T22:31:00.000Z" - }, - "events": [ - { - "uuid": "fceca2c1-2d86-4644-94ba-fdd89cdb2dc8", - "start": { - "$date": "2021-03-08T21:37:56.000Z" - }, - "end": { - "$date": "2021-03-08T22:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a476f52f-62f8-4543-bd5f-9b867005a6a9", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-08T22:06:01.000Z" - }, - "end": { - "$date": "2021-03-08T22:27:51.000Z" - }, - "events": [ - { - "uuid": "db3c52b2-fe8d-47c7-8092-e377d2de01b8", - "start": { - "$date": "2021-03-08T22:06:01.000Z" - }, - "end": { - "$date": "2021-03-08T22:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b336bd87-8fbe-442e-bdd9-6efebab0a824", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-08T22:20:36.000Z" - }, - "end": { - "$date": "2021-03-08T23:39:48.000Z" - }, - "events": [ - { - "uuid": "df15ecff-8dd8-462e-9b31-1b367f18bfae", - "start": { - "$date": "2021-03-08T22:20:36.000Z" - }, - "end": { - "$date": "2021-03-08T23:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "474d07a6-109c-44ba-b925-851e04175a28", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-08T22:28:00.000Z" - }, - "end": { - "$date": "2021-03-08T23:47:12.000Z" - }, - "events": [ - { - "uuid": "003568e3-12e6-4606-bcbf-d91169823f3b", - "start": { - "$date": "2021-03-08T22:28:00.000Z" - }, - "end": { - "$date": "2021-03-08T23:47:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7c6a9331-532c-4625-b1b9-4e206664fa4b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-08T22:34:43.000Z" - }, - "end": { - "$date": "2021-03-08T23:18:24.000Z" - }, - "events": [ - { - "uuid": "d0876d51-eb01-4ede-ae6b-924e753e67f5", - "start": { - "$date": "2021-03-08T22:34:43.000Z" - }, - "end": { - "$date": "2021-03-08T23:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "4728a57f-395d-49d3-a6b0-d6dc9bbec17e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-08T23:48:45.000Z" - }, - "end": { - "$date": "2021-03-09T00:20:32.000Z" - }, - "events": [ - { - "uuid": "924785da-faa3-4bc8-a7e7-e8a76d9b0d4b", - "start": { - "$date": "2021-03-08T23:48:45.000Z" - }, - "end": { - "$date": "2021-03-09T00:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "4c144712-17e4-474f-8d29-916ae9813aa2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-08T23:51:00.000Z" - }, - "end": { - "$date": "2021-03-09T00:33:23.000Z" - }, - "events": [ - { - "uuid": "b1bbdf8b-fdb8-4053-8920-5f22d9da66d8", - "start": { - "$date": "2021-03-08T23:51:00.000Z" - }, - "end": { - "$date": "2021-03-09T00:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "53ddd5db-6354-42c0-b01c-adcba403587a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T00:50:49.000Z" - }, - "end": { - "$date": "2021-03-09T03:02:22.000Z" - }, - "events": [ - { - "uuid": "dd2962ea-e8e8-4718-ba6c-9549d372bcea", - "start": { - "$date": "2021-03-09T00:50:49.000Z" - }, - "end": { - "$date": "2021-03-09T03:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fecd8651-629a-4519-815f-aa1635859d81", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-09T03:00:41.000Z" - }, - "end": { - "$date": "2021-03-09T04:48:35.000Z" - }, - "events": [ - { - "uuid": "2568632e-6ed4-4592-8789-83f636e249aa", - "start": { - "$date": "2021-03-09T03:00:41.000Z" - }, - "end": { - "$date": "2021-03-09T04:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5ae5dfbf-719a-4d59-a8e9-3a2d934009ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T03:04:01.000Z" - }, - "end": { - "$date": "2021-03-09T04:48:50.000Z" - }, - "events": [ - { - "uuid": "ecf0bf2f-ad41-45b3-8b82-d7852d8677f1", - "start": { - "$date": "2021-03-09T03:04:01.000Z" - }, - "end": { - "$date": "2021-03-09T04:48:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "435e70f8-e8c0-4b90-bd19-4a394e266fe5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-09T03:13:30.000Z" - }, - "end": { - "$date": "2021-03-09T06:28:37.000Z" - }, - "events": [ - { - "uuid": "c3ea1e49-2a7b-4647-8955-21c341bbee9a", - "start": { - "$date": "2021-03-09T03:13:30.000Z" - }, - "end": { - "$date": "2021-03-09T04:27:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "782dcab9-7bea-4644-ae7e-3a6dbbf05f31", - "start": { - "$date": "2021-03-09T04:27:30.000Z" - }, - "end": { - "$date": "2021-03-09T04:31:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d348eaca-e495-4664-bfc8-ca34d375cea0", - "start": { - "$date": "2021-03-09T04:31:30.000Z" - }, - "end": { - "$date": "2021-03-09T06:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f2990efa-60e7-44bb-b639-0cc69ec84b61", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T03:39:40.000Z" - }, - "end": { - "$date": "2021-03-09T04:19:00.000Z" - }, - "events": [ - { - "uuid": "9dd1d321-29cf-453c-bba1-dbbd4c5bbec7", - "start": { - "$date": "2021-03-09T03:39:40.000Z" - }, - "end": { - "$date": "2021-03-09T04:19:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "2b4b77c5-b029-41e9-a0d7-02ab99038276", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-09T03:51:23.000Z" - }, - "end": { - "$date": "2021-03-09T04:26:53.000Z" - }, - "events": [ - { - "uuid": "4f186fde-e8ad-4554-b5ca-b6e120693f7a", - "start": { - "$date": "2021-03-09T03:51:23.000Z" - }, - "end": { - "$date": "2021-03-09T04:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5daa905e-ab7a-4b26-9718-a6d9eac7a1d2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-09T04:20:49.000Z" - }, - "end": { - "$date": "2021-03-09T05:05:30.000Z" - }, - "events": [ - { - "uuid": "b7097db2-111a-4810-940c-9bfd98ad24f7", - "start": { - "$date": "2021-03-09T04:20:49.000Z" - }, - "end": { - "$date": "2021-03-09T05:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4499d1d7-4bd1-49c5-ae6e-66a103197099", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T05:35:13.000Z" - }, - "end": { - "$date": "2021-03-09T05:43:13.000Z" - }, - "events": [ - { - "uuid": "1616ac30-1269-4381-8018-4b1127c92354", - "start": { - "$date": "2021-03-09T05:35:13.000Z" - }, - "end": { - "$date": "2021-03-09T05:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7163b937-f8b7-40f0-98e4-e637d8cc3789", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-09T04:49:01.000Z" - }, - "end": { - "$date": "2021-03-09T04:50:05.000Z" - }, - "events": [ - { - "uuid": "60b26db2-e625-49bd-8b3e-8d0b5df34aee", - "start": { - "$date": "2021-03-09T04:49:01.000Z" - }, - "end": { - "$date": "2021-03-09T04:50:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "23bee3d3-7063-42d6-93bb-604e482aee0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T04:56:34.000Z" - }, - "end": { - "$date": "2021-03-09T04:57:51.000Z" - }, - "events": [ - { - "uuid": "14e42719-c535-412d-b88a-3017b9a11656", - "start": { - "$date": "2021-03-09T04:56:34.000Z" - }, - "end": { - "$date": "2021-03-09T04:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "2caa3e97-c6c5-43ba-957a-84469573fef1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T04:58:14.000Z" - }, - "end": { - "$date": "2021-03-09T05:25:22.000Z" - }, - "events": [ - { - "uuid": "cb540461-fd85-4c06-a152-e5c36b4e42eb", - "start": { - "$date": "2021-03-09T04:58:14.000Z" - }, - "end": { - "$date": "2021-03-09T05:25:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7e61e7c-6c28-4f83-9c38-83ca86d61c17", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-09T05:07:28.000Z" - }, - "end": { - "$date": "2021-03-09T05:39:46.000Z" - }, - "events": [ - { - "uuid": "a89bbfac-8120-4b1c-b390-0b8fa7b507a4", - "start": { - "$date": "2021-03-09T05:07:28.000Z" - }, - "end": { - "$date": "2021-03-09T05:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8063d069-05bb-4171-8f9e-0a6120137560", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T05:25:35.000Z" - }, - "end": { - "$date": "2021-03-09T06:12:24.000Z" - }, - "events": [ - { - "uuid": "fa330d38-62bd-4b6b-bc9f-87c2a8f69694", - "start": { - "$date": "2021-03-09T05:25:35.000Z" - }, - "end": { - "$date": "2021-03-09T06:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d68ab9a0-626b-41c1-b306-15c8b2f73bd3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-09T05:51:44.000Z" - }, - "end": { - "$date": "2021-03-09T06:24:49.000Z" - }, - "events": [ - { - "uuid": "908dfb8f-acc1-4988-8fd6-e2cdf8eb9800", - "start": { - "$date": "2021-03-09T05:51:44.000Z" - }, - "end": { - "$date": "2021-03-09T06:24:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "387ce910-21d6-490e-b41a-e40d4a7424b2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T06:12:33.000Z" - }, - "end": { - "$date": "2021-03-09T06:44:55.000Z" - }, - "events": [ - { - "uuid": "b760611e-9a71-4b59-b651-faf3d55eb04d", - "start": { - "$date": "2021-03-09T06:12:33.000Z" - }, - "end": { - "$date": "2021-03-09T06:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5e7828c2-60ce-4093-a94a-05d0e8419b35", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-09T06:45:03.000Z" - }, - "end": { - "$date": "2021-03-09T07:32:01.000Z" - }, - "events": [ - { - "uuid": "6dae2c81-fcdc-4a7e-9f8d-003f4992b10a", - "start": { - "$date": "2021-03-09T06:45:03.000Z" - }, - "end": { - "$date": "2021-03-09T07:32:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "122fc7fe-6718-43c3-8a0b-9abecf124332", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-09T08:19:53.000Z" - }, - "end": { - "$date": "2021-03-09T08:22:28.000Z" - }, - "events": [ - { - "uuid": "12a99619-135c-4a71-9428-ff0c0e24c2ef", - "start": { - "$date": "2021-03-09T08:19:53.000Z" - }, - "end": { - "$date": "2021-03-09T08:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f129bb4c-152d-4114-9d86-b1a9a7ac3f03", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T15:56:25.000Z" - }, - "end": { - "$date": "2021-03-09T15:57:34.000Z" - }, - "events": [ - { - "uuid": "5e320692-8555-40d6-b46a-9290698a2353", - "start": { - "$date": "2021-03-09T15:56:25.000Z" - }, - "end": { - "$date": "2021-03-09T15:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a17f19b7-dc7d-4ebd-a8c0-858274b52f19", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T15:58:20.000Z" - }, - "end": { - "$date": "2021-03-09T16:32:45.000Z" - }, - "events": [ - { - "uuid": "5aea02e7-e909-4669-add2-35efae68cd8a", - "start": { - "$date": "2021-03-09T15:58:20.000Z" - }, - "end": { - "$date": "2021-03-09T16:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c3781c3e-62b7-4174-bfd4-510c334f564e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T16:16:32.000Z" - }, - "end": { - "$date": "2021-03-09T17:07:10.000Z" - }, - "events": [ - { - "uuid": "40ce9e17-0862-47ac-a262-d05c72f57ab6", - "start": { - "$date": "2021-03-09T16:16:32.000Z" - }, - "end": { - "$date": "2021-03-09T17:07:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "18483aaa-32ac-4967-8393-40fc0b47cd3c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-09T16:32:37.000Z" - }, - "end": { - "$date": "2021-03-09T16:54:09.000Z" - }, - "events": [ - { - "uuid": "c8d977ef-8645-4298-ba63-adb79a36d018", - "start": { - "$date": "2021-03-09T16:32:37.000Z" - }, - "end": { - "$date": "2021-03-09T16:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94c60ae8-ee65-409b-98d5-05dc6122649f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T17:10:04.000Z" - }, - "end": { - "$date": "2021-03-09T17:41:30.000Z" - }, - "events": [ - { - "uuid": "2e430a75-1fe9-4c21-81c8-9cd0b58ff63b", - "start": { - "$date": "2021-03-09T17:10:04.000Z" - }, - "end": { - "$date": "2021-03-09T17:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0a216bbf-ef2a-4ab9-80b2-05e5f902ba3a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T17:09:52.000Z" - }, - "end": { - "$date": "2021-03-09T17:29:32.000Z" - }, - "events": [ - { - "uuid": "a30d5076-045c-4f8d-b11d-f8b45a0c342c", - "start": { - "$date": "2021-03-09T17:09:52.000Z" - }, - "end": { - "$date": "2021-03-09T17:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "c7f5496c-fad9-4a15-b21f-100f45304d79", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-09T17:14:40.000Z" - }, - "end": { - "$date": "2021-03-09T17:16:28.000Z" - }, - "events": [ - { - "uuid": "6b39d84b-a684-459c-be9a-b8d6e6929c5e", - "start": { - "$date": "2021-03-09T17:14:40.000Z" - }, - "end": { - "$date": "2021-03-09T17:16:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e755a057-da24-4c57-bc7d-b13e9e03d6d4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T17:31:03.000Z" - }, - "end": { - "$date": "2021-03-09T19:36:34.000Z" - }, - "events": [ - { - "uuid": "806b75c3-9e84-4fbd-9b2a-25690785cbcc", - "start": { - "$date": "2021-03-09T17:31:03.000Z" - }, - "end": { - "$date": "2021-03-09T19:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "535498df-e2fb-4467-8428-01e8894d3d93", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-09T17:55:25.000Z" - }, - "end": { - "$date": "2021-03-09T17:57:29.000Z" - }, - "events": [ - { - "uuid": "6b7801af-74ea-434c-937e-8c53e667575a", - "start": { - "$date": "2021-03-09T17:55:25.000Z" - }, - "end": { - "$date": "2021-03-09T17:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "442af6cb-f298-48bc-a9ff-fa50fd9adf00", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T19:40:15.000Z" - }, - "end": { - "$date": "2021-03-09T20:57:33.000Z" - }, - "events": [ - { - "uuid": "5d93a0be-5e57-45a4-8723-a8d23ca87d39", - "start": { - "$date": "2021-03-09T19:40:15.000Z" - }, - "end": { - "$date": "2021-03-09T20:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23d22d48-84f0-4f30-9bee-b39507c60d25", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T20:18:39.000Z" - }, - "end": { - "$date": "2021-03-09T20:53:55.000Z" - }, - "events": [ - { - "uuid": "7e62b9a8-a763-462a-aa2c-8d051f6f4327", - "start": { - "$date": "2021-03-09T20:18:39.000Z" - }, - "end": { - "$date": "2021-03-09T20:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5f0a21fb-8f5d-49cb-a497-a30693256368", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-09T21:20:07.000Z" - }, - "end": { - "$date": "2021-03-09T21:56:59.000Z" - }, - "events": [ - { - "uuid": "36bce28f-4072-461c-96ea-f8e450b7671e", - "start": { - "$date": "2021-03-09T21:20:07.000Z" - }, - "end": { - "$date": "2021-03-09T21:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "443b42c8-b663-4dbe-be5c-81de4eced421", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T21:39:31.000Z" - }, - "end": { - "$date": "2021-03-09T21:43:21.000Z" - }, - "events": [ - { - "uuid": "19ce1bd0-e64a-4139-b131-908858850619", - "start": { - "$date": "2021-03-09T21:39:31.000Z" - }, - "end": { - "$date": "2021-03-09T21:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f21271ba-f586-4ee3-80a8-01c66b7cef32", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T21:43:42.000Z" - }, - "end": { - "$date": "2021-03-09T22:15:56.000Z" - }, - "events": [ - { - "uuid": "ef9f55e9-36bb-4d04-b6d7-bd1c15b9a16a", - "start": { - "$date": "2021-03-09T21:43:42.000Z" - }, - "end": { - "$date": "2021-03-09T22:15:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "6db96bd9-eabd-4c76-9910-32637bfa0363", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T22:25:49.000Z" - }, - "end": { - "$date": "2021-03-09T22:53:39.000Z" - }, - "events": [ - { - "uuid": "8f99fde5-83d3-4ded-a36c-5fc1d48d8436", - "start": { - "$date": "2021-03-09T22:25:49.000Z" - }, - "end": { - "$date": "2021-03-09T22:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "da82e118-a2f2-4231-9d32-04b8730194e8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-09T22:28:13.000Z" - }, - "end": { - "$date": "2021-03-10T00:12:00.000Z" - }, - "events": [ - { - "uuid": "f7940a10-a92e-4128-a17f-9abb28991c1a", - "start": { - "$date": "2021-03-09T22:28:13.000Z" - }, - "end": { - "$date": "2021-03-10T00:12:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dd830f93-0626-4ff5-96cb-96896cb1ed2c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-09T22:29:37.000Z" - }, - "end": { - "$date": "2021-03-09T22:51:05.000Z" - }, - "events": [ - { - "uuid": "2a892676-7bdb-4630-b0f9-8743ff964156", - "start": { - "$date": "2021-03-09T22:29:37.000Z" - }, - "end": { - "$date": "2021-03-09T22:51:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d1f1d2f-7888-4d24-8ed7-e08f3acd6038", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-09T22:54:25.000Z" - }, - "end": { - "$date": "2021-03-10T02:50:39.000Z" - }, - "events": [ - { - "uuid": "71933b08-457a-4341-9a72-97797504d68b", - "start": { - "$date": "2021-03-09T22:54:25.000Z" - }, - "end": { - "$date": "2021-03-10T02:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68bcc36a-b18a-440a-a25f-09dab875615a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T23:17:45.000Z" - }, - "end": { - "$date": "2021-03-09T23:30:10.000Z" - }, - "events": [ - { - "uuid": "1bfa793f-e9d4-44cd-976c-f381c21fbdd6", - "start": { - "$date": "2021-03-09T23:17:45.000Z" - }, - "end": { - "$date": "2021-03-09T23:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53636723-2566-4e87-aecd-fcea4e50bb16", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-09T23:38:31.000Z" - }, - "end": { - "$date": "2021-03-10T00:17:20.000Z" - }, - "events": [ - { - "uuid": "8acac580-7523-4d5f-b35a-f8f5ad4de845", - "start": { - "$date": "2021-03-09T23:38:31.000Z" - }, - "end": { - "$date": "2021-03-10T00:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "ce7db747-4884-47fe-b2e6-070240ffa1b2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-09T23:49:59.000Z" - }, - "end": { - "$date": "2021-03-10T02:12:45.000Z" - }, - "events": [ - { - "uuid": "abcf5b88-53b7-44e0-96e2-8d56d79964c6", - "start": { - "$date": "2021-03-09T23:49:59.000Z" - }, - "end": { - "$date": "2021-03-10T02:12:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e6f8830a-fb71-44d3-858e-681cff27fbee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-09T23:58:42.000Z" - }, - "end": { - "$date": "2021-03-10T00:10:42.000Z" - }, - "events": [ - { - "uuid": "d6da9122-27b5-4d7e-8a5a-f52e5dac31e8", - "start": { - "$date": "2021-03-09T23:58:42.000Z" - }, - "end": { - "$date": "2021-03-10T00:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7764223a-2fac-4911-a1fb-afff27f91d56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-10T00:21:51.000Z" - }, - "end": { - "$date": "2021-03-10T00:55:41.000Z" - }, - "events": [ - { - "uuid": "8dd083ce-2e87-41cf-8e07-3a60b7d9269a", - "start": { - "$date": "2021-03-10T00:21:51.000Z" - }, - "end": { - "$date": "2021-03-10T00:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "262509a5-a2cf-46af-9555-49406a11b7ac", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-10T00:51:59.000Z" - }, - "end": { - "$date": "2021-03-10T01:40:07.000Z" - }, - "events": [ - { - "uuid": "8a4aa039-1a3f-4154-8796-66e9c135e087", - "start": { - "$date": "2021-03-10T00:51:59.000Z" - }, - "end": { - "$date": "2021-03-10T01:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "acd0d576-87d0-4e96-8d1b-875618acdc3e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-10T02:13:09.000Z" - }, - "end": { - "$date": "2021-03-10T02:23:17.000Z" - }, - "events": [ - { - "uuid": "83426240-c692-40e3-8888-92789f65896c", - "start": { - "$date": "2021-03-10T02:13:09.000Z" - }, - "end": { - "$date": "2021-03-10T02:23:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b009c7b6-d787-45d8-b9bf-8cb9dd2ab584", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-10T02:21:04.000Z" - }, - "end": { - "$date": "2021-03-10T03:16:15.000Z" - }, - "events": [ - { - "uuid": "369e007d-b7fc-4f42-9fd9-9715a87b2128", - "start": { - "$date": "2021-03-10T02:21:04.000Z" - }, - "end": { - "$date": "2021-03-10T03:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "1335f36e-f981-4bc3-bce2-57858f78af42", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-10T02:24:31.000Z" - }, - "end": { - "$date": "2021-03-10T05:52:18.000Z" - }, - "events": [ - { - "uuid": "96785260-23b6-455e-be56-9964f8e40b16", - "start": { - "$date": "2021-03-10T02:24:31.000Z" - }, - "end": { - "$date": "2021-03-10T05:52:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2651512-fd3a-487b-8721-62c31186da3e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-10T02:41:55.000Z" - }, - "end": { - "$date": "2021-03-10T06:03:05.000Z" - }, - "events": [ - { - "uuid": "b95d4351-31ff-43f2-9809-12bd818752c8", - "start": { - "$date": "2021-03-10T02:41:55.000Z" - }, - "end": { - "$date": "2021-03-10T06:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "a5fe93f4-57ae-41b0-bbeb-cf400fa64180", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-10T02:50:55.000Z" - }, - "end": { - "$date": "2021-03-10T03:05:56.000Z" - }, - "events": [ - { - "uuid": "fa613a85-4668-485f-838c-9611ef21da7a", - "start": { - "$date": "2021-03-10T02:50:55.000Z" - }, - "end": { - "$date": "2021-03-10T03:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "0f1ddf8e-b2b3-4f5b-a4b5-2df5d351bccd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-10T03:06:31.000Z" - }, - "end": { - "$date": "2021-03-10T04:29:29.000Z" - }, - "events": [ - { - "uuid": "96304fe7-5cd7-469a-84e4-e9782df5c227", - "start": { - "$date": "2021-03-10T03:06:31.000Z" - }, - "end": { - "$date": "2021-03-10T04:29:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "782a83ae-de7c-4fb2-904d-45c679cc7e3b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-10T03:47:03.000Z" - }, - "end": { - "$date": "2021-03-10T05:01:28.000Z" - }, - "events": [ - { - "uuid": "135ed4e1-2c35-4915-9532-68f3264d2504", - "start": { - "$date": "2021-03-10T03:47:03.000Z" - }, - "end": { - "$date": "2021-03-10T05:01:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91e7f5aa-8fa0-4229-b54d-f27e64589bca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-10T03:51:28.000Z" - }, - "end": { - "$date": "2021-03-10T05:39:39.000Z" - }, - "events": [ - { - "uuid": "558c975e-1f9d-420a-bf16-2e4cd8af19e2", - "start": { - "$date": "2021-03-10T03:51:28.000Z" - }, - "end": { - "$date": "2021-03-10T05:39:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ab3ad9c9-876c-4694-9f79-36a93c7fdebb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-10T04:04:13.000Z" - }, - "end": { - "$date": "2021-03-10T04:57:35.000Z" - }, - "events": [ - { - "uuid": "336d5f04-09ab-4fad-8353-560e47f14e3e", - "start": { - "$date": "2021-03-10T04:04:13.000Z" - }, - "end": { - "$date": "2021-03-10T04:57:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "195889cf-8abd-4a5b-ac32-866aa00516f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-10T04:15:07.000Z" - }, - "end": { - "$date": "2021-03-10T04:33:06.000Z" - }, - "events": [ - { - "uuid": "e3114c70-07d6-49de-8934-39e9c8828e23", - "start": { - "$date": "2021-03-10T04:15:07.000Z" - }, - "end": { - "$date": "2021-03-10T04:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d48aa17-5f8a-4713-baef-bf49c6a1603d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-10T04:46:21.000Z" - }, - "end": { - "$date": "2021-03-10T05:00:46.000Z" - }, - "events": [ - { - "uuid": "b93dda78-514d-4326-8d6c-3bc2498c7f33", - "start": { - "$date": "2021-03-10T04:46:21.000Z" - }, - "end": { - "$date": "2021-03-10T05:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1bac9e13-6d8b-4dba-9138-39bb3fe22ced", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-10T04:32:26.000Z" - }, - "end": { - "$date": "2021-03-10T06:17:09.000Z" - }, - "events": [ - { - "uuid": "6f22201f-d14b-4ebb-b9e4-4704fbc4c975", - "start": { - "$date": "2021-03-10T04:32:26.000Z" - }, - "end": { - "$date": "2021-03-10T06:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "614ad9c4-6b1d-4d9b-8cfe-03d86b0cb9c0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-10T04:33:45.000Z" - }, - "end": { - "$date": "2021-03-10T06:03:07.000Z" - }, - "events": [ - { - "uuid": "065e1ecc-4e4a-425e-93cd-0342c5d77787", - "start": { - "$date": "2021-03-10T04:33:45.000Z" - }, - "end": { - "$date": "2021-03-10T06:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ccca0dca-0bb5-478d-800f-e91bb11654fc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-10T04:33:47.000Z" - }, - "end": { - "$date": "2021-03-10T06:15:24.000Z" - }, - "events": [ - { - "uuid": "ec03c1e9-fcfd-4cac-a91e-10fe1b2462b6", - "start": { - "$date": "2021-03-10T04:33:47.000Z" - }, - "end": { - "$date": "2021-03-10T06:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7ae339fd-6e6a-493b-ba0d-74e8eb2c0766", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-10T04:58:41.000Z" - }, - "end": { - "$date": "2021-03-10T05:39:41.000Z" - }, - "events": [ - { - "uuid": "b6b96cea-6f5a-49a2-8a15-78907f31ea45", - "start": { - "$date": "2021-03-10T04:58:41.000Z" - }, - "end": { - "$date": "2021-03-10T05:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6542112d-60fb-4ec2-8646-c75b08b9e834", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-10T06:17:32.000Z" - }, - "end": { - "$date": "2021-03-10T07:07:59.000Z" - }, - "events": [ - { - "uuid": "6653bf0f-38fc-42b8-9517-7f833fb8d2b6", - "start": { - "$date": "2021-03-10T06:17:32.000Z" - }, - "end": { - "$date": "2021-03-10T07:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7a4caf3-7743-4b8c-900b-4b66e77358cf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-10T05:06:47.000Z" - }, - "end": { - "$date": "2021-03-10T05:28:20.000Z" - }, - "events": [ - { - "uuid": "d3e3e728-eedb-4535-b74e-e75a2d5b2201", - "start": { - "$date": "2021-03-10T05:06:47.000Z" - }, - "end": { - "$date": "2021-03-10T05:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce7554e9-83ef-4460-9471-68deef985c33", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-10T05:32:13.000Z" - }, - "end": { - "$date": "2021-03-10T06:00:51.000Z" - }, - "events": [ - { - "uuid": "ea11a9a4-1c3d-4dfd-9ccc-ffe838db161e", - "start": { - "$date": "2021-03-10T05:32:13.000Z" - }, - "end": { - "$date": "2021-03-10T06:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b02df16-740a-4dd3-b120-fcbdb94d57b8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-10T06:02:14.000Z" - }, - "end": { - "$date": "2021-03-10T06:05:18.000Z" - }, - "events": [ - { - "uuid": "d7bc3d17-5ff1-4af9-8ac4-ec9dc04ab831", - "start": { - "$date": "2021-03-10T06:02:14.000Z" - }, - "end": { - "$date": "2021-03-10T06:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "c9f38170-ece2-415e-a47f-6b77dc278cfb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-10T06:16:31.000Z" - }, - "end": { - "$date": "2021-03-10T07:18:41.000Z" - }, - "events": [ - { - "uuid": "58fe4546-7926-4874-b7c2-d153ef735ab1", - "start": { - "$date": "2021-03-10T06:16:31.000Z" - }, - "end": { - "$date": "2021-03-10T07:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "245911fb-237b-46b0-a8cb-e7580a04ef2c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-10T06:44:42.000Z" - }, - "end": { - "$date": "2021-03-10T06:54:13.000Z" - }, - "events": [ - { - "uuid": "7d97401e-0ae2-43ac-8d2b-f1b541439d5e", - "start": { - "$date": "2021-03-10T06:44:42.000Z" - }, - "end": { - "$date": "2021-03-10T06:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "88196f86-a182-4ba2-acae-3c2a479ff417", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-10T06:55:42.000Z" - }, - "end": { - "$date": "2021-03-10T06:58:19.000Z" - }, - "events": [ - { - "uuid": "b3a32cb0-3240-4037-9b51-d63fa227a7c7", - "start": { - "$date": "2021-03-10T06:55:42.000Z" - }, - "end": { - "$date": "2021-03-10T06:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5ce17762-f5b9-40a9-9d3c-14ef70632b1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-10T19:19:03.000Z" - }, - "end": { - "$date": "2021-03-10T19:20:37.000Z" - }, - "events": [ - { - "uuid": "abd37850-6a62-4f13-ac0e-60eaee3f52e8", - "start": { - "$date": "2021-03-10T19:19:03.000Z" - }, - "end": { - "$date": "2021-03-10T19:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "286f8419-1d0b-4ba8-8687-6ccfb2eed792", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-10T19:23:03.000Z" - }, - "end": { - "$date": "2021-03-10T19:47:28.000Z" - }, - "events": [ - { - "uuid": "500ad076-5539-4ba3-9721-57139b7cb3c4", - "start": { - "$date": "2021-03-10T19:23:03.000Z" - }, - "end": { - "$date": "2021-03-10T19:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bea84327-3657-48d2-8a61-4e747679596c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-10T20:14:44.000Z" - }, - "end": { - "$date": "2021-03-10T20:41:40.000Z" - }, - "events": [ - { - "uuid": "58c00470-2a2a-4d2a-be15-73561ae7e5d1", - "start": { - "$date": "2021-03-10T20:14:44.000Z" - }, - "end": { - "$date": "2021-03-10T20:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "75dda1ca-cc2d-45e4-a53e-536d96838e8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-10T20:16:31.000Z" - }, - "end": { - "$date": "2021-03-10T21:06:02.000Z" - }, - "events": [ - { - "uuid": "930b6232-68b1-49fe-a8ba-73e693c52c4b", - "start": { - "$date": "2021-03-10T20:16:31.000Z" - }, - "end": { - "$date": "2021-03-10T21:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b54ac42c-7a8b-4cf3-9ebc-00acd1ec2e87", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-10T20:31:12.000Z" - }, - "end": { - "$date": "2021-03-11T01:08:54.000Z" - }, - "events": [ - { - "uuid": "a99a64de-0695-4c2c-aac1-5a3f657b069f", - "start": { - "$date": "2021-03-10T20:31:12.000Z" - }, - "end": { - "$date": "2021-03-10T21:20:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "91ff4d19-be4d-4990-9174-6859ad9d5fe4", - "start": { - "$date": "2021-03-10T21:20:12.000Z" - }, - "end": { - "$date": "2021-03-10T22:49:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cbcd03f2-3641-4b60-a72b-6118d2d2660e", - "start": { - "$date": "2021-03-10T22:49:12.000Z" - }, - "end": { - "$date": "2021-03-11T01:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f8669cce-69c8-4198-ae5b-168c7e744b35", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-10T20:49:17.000Z" - }, - "end": { - "$date": "2021-03-10T23:33:51.000Z" - }, - "events": [ - { - "uuid": "87b4faec-f43a-4dd7-a368-bb0cc0920bc3", - "start": { - "$date": "2021-03-10T20:49:17.000Z" - }, - "end": { - "$date": "2021-03-10T23:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d9def93f-0aaf-499b-b859-d21e6f16c2c9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-10T20:58:01.000Z" - }, - "end": { - "$date": "2021-03-10T21:32:49.000Z" - }, - "events": [ - { - "uuid": "a815adf7-2e08-444b-af7a-fd59b08e7cb4", - "start": { - "$date": "2021-03-10T20:58:01.000Z" - }, - "end": { - "$date": "2021-03-10T21:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9f66b275-7765-41ac-a569-75f5b38e2e28", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-10T22:45:33.000Z" - }, - "end": { - "$date": "2021-03-11T01:11:37.000Z" - }, - "events": [ - { - "uuid": "54dbb2e4-a211-4e14-8e02-2bd809b6f68b", - "start": { - "$date": "2021-03-10T22:45:33.000Z" - }, - "end": { - "$date": "2021-03-11T01:11:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "390e87f9-d67e-416b-b3e1-d46ece096f3c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-10T23:07:14.000Z" - }, - "end": { - "$date": "2021-03-10T23:13:45.000Z" - }, - "events": [ - { - "uuid": "4743ecf6-18df-4f52-8c0b-8deef595fb6e", - "start": { - "$date": "2021-03-10T23:07:14.000Z" - }, - "end": { - "$date": "2021-03-10T23:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7de6090e-129a-4ae6-87c9-f1620f5bbf40", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-10T23:15:21.000Z" - }, - "end": { - "$date": "2021-03-11T01:08:45.000Z" - }, - "events": [ - { - "uuid": "972b560a-4c16-41a4-b1c6-4aa41705999c", - "start": { - "$date": "2021-03-10T23:15:21.000Z" - }, - "end": { - "$date": "2021-03-11T01:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6bbb2f1-a625-42fe-8fb2-311691581239", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-10T23:55:17.000Z" - }, - "end": { - "$date": "2021-03-11T00:30:07.000Z" - }, - "events": [ - { - "uuid": "a5bd3822-b49b-49e6-8d3e-3c1a4bf8a557", - "start": { - "$date": "2021-03-10T23:55:17.000Z" - }, - "end": { - "$date": "2021-03-11T00:30:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "113a340d-3676-48ce-83bf-097a3ec85ee1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-11T00:14:59.000Z" - }, - "end": { - "$date": "2021-03-11T00:53:26.000Z" - }, - "events": [ - { - "uuid": "c4181d6a-b5ad-4862-a1b2-b31c2500cb30", - "start": { - "$date": "2021-03-11T00:14:59.000Z" - }, - "end": { - "$date": "2021-03-11T00:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1f52aaa0-4907-4b51-bf2f-f106e793c704", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-11T00:25:35.000Z" - }, - "end": { - "$date": "2021-03-11T01:44:10.000Z" - }, - "events": [ - { - "uuid": "2676b273-f56c-475b-9f67-9184dbe09724", - "start": { - "$date": "2021-03-11T00:25:35.000Z" - }, - "end": { - "$date": "2021-03-11T01:44:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "90851280-9de0-4614-a3af-46ee33917cf8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-11T00:27:43.000Z" - }, - "end": { - "$date": "2021-03-11T01:44:32.000Z" - }, - "events": [ - { - "uuid": "026e61db-3972-44d5-980b-97bf4ccce47f", - "start": { - "$date": "2021-03-11T00:27:43.000Z" - }, - "end": { - "$date": "2021-03-11T01:44:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "ba9171ab-1a12-4bd2-ac8e-f504586cbf07", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-11T00:47:10.000Z" - }, - "end": { - "$date": "2021-03-11T01:20:54.000Z" - }, - "events": [ - { - "uuid": "5ce50553-1c39-44e3-bf4d-210ec74b7e16", - "start": { - "$date": "2021-03-11T00:47:10.000Z" - }, - "end": { - "$date": "2021-03-11T01:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "50d46d25-b5a2-4d0b-a413-4d4a452b4c53", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-11T00:58:57.000Z" - }, - "end": { - "$date": "2021-03-11T01:02:31.000Z" - }, - "events": [ - { - "uuid": "e036c25a-528d-4983-b62b-b2e5df9bba70", - "start": { - "$date": "2021-03-11T00:58:57.000Z" - }, - "end": { - "$date": "2021-03-11T01:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "47b97605-42c8-4712-9b73-3432cf0e5e4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-11T01:03:46.000Z" - }, - "end": { - "$date": "2021-03-11T01:46:13.000Z" - }, - "events": [ - { - "uuid": "32c7c91a-0437-4164-975d-8357dee44632", - "start": { - "$date": "2021-03-11T01:03:46.000Z" - }, - "end": { - "$date": "2021-03-11T01:46:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "2d29ee5c-737f-4ec8-a09f-8f0c9e50a0f9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-11T01:09:28.000Z" - }, - "end": { - "$date": "2021-03-11T01:36:14.000Z" - }, - "events": [ - { - "uuid": "7b8367b2-82bb-46e0-8338-8b736b6b93a8", - "start": { - "$date": "2021-03-11T01:09:28.000Z" - }, - "end": { - "$date": "2021-03-11T01:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "72dc5330-df50-4216-a1b3-e04ae73139ff", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-11T03:38:51.000Z" - }, - "end": { - "$date": "2021-03-11T03:42:56.000Z" - }, - "events": [ - { - "uuid": "22de9ac1-cb6f-4911-9190-60a44dc09ea4", - "start": { - "$date": "2021-03-11T03:38:51.000Z" - }, - "end": { - "$date": "2021-03-11T03:42:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ae61b4e5-4305-4c8e-b2bc-b212ab5b30c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-11T02:42:53.000Z" - }, - "end": { - "$date": "2021-03-11T03:12:44.000Z" - }, - "events": [ - { - "uuid": "118db210-4303-4b48-bd94-716ac6c5b116", - "start": { - "$date": "2021-03-11T02:42:53.000Z" - }, - "end": { - "$date": "2021-03-11T03:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "ad2191f6-814f-4895-bb4c-8b4a5496b6b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-11T03:08:54.000Z" - }, - "end": { - "$date": "2021-03-11T07:16:40.000Z" - }, - "events": [ - { - "uuid": "ae388c80-e83d-41ce-92a7-c733f3aa79c6", - "start": { - "$date": "2021-03-11T03:08:54.000Z" - }, - "end": { - "$date": "2021-03-11T07:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bbf1cc9b-46e7-4434-b9ab-bd654ee31b80", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-11T04:49:54.000Z" - }, - "end": { - "$date": "2021-03-11T05:26:17.000Z" - }, - "events": [ - { - "uuid": "3f3f12a8-234b-4919-8e50-df3166455c5f", - "start": { - "$date": "2021-03-11T04:49:54.000Z" - }, - "end": { - "$date": "2021-03-11T05:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3c0f27e4-7bfc-4857-a82c-840df033f414", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-11T03:18:14.000Z" - }, - "end": { - "$date": "2021-03-11T05:26:17.000Z" - }, - "events": [ - { - "uuid": "0c1d53b5-1ace-43f3-91d0-f7786a70130f", - "start": { - "$date": "2021-03-11T03:18:14.000Z" - }, - "end": { - "$date": "2021-03-11T05:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "de46ea65-3d39-463a-ae93-c5687eaa27e4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-11T03:24:18.000Z" - }, - "end": { - "$date": "2021-03-11T06:40:32.000Z" - }, - "events": [ - { - "uuid": "dc00b3d4-ea9b-4045-b0dd-075b6e1d7947", - "start": { - "$date": "2021-03-11T03:24:18.000Z" - }, - "end": { - "$date": "2021-03-11T06:40:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0818b407-6b95-453c-93e6-5d09e7dfbcaf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-11T06:02:39.000Z" - }, - "end": { - "$date": "2021-03-11T06:18:53.000Z" - }, - "events": [ - { - "uuid": "7635625e-e29f-42d6-ade4-864485689c13", - "start": { - "$date": "2021-03-11T06:02:39.000Z" - }, - "end": { - "$date": "2021-03-11T06:18:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "769dac7e-b5e7-4786-806d-0f9718589381", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-11T03:48:02.000Z" - }, - "end": { - "$date": "2021-03-11T04:35:59.000Z" - }, - "events": [ - { - "uuid": "b2049ca2-c4d7-4d3a-8214-e9860660395d", - "start": { - "$date": "2021-03-11T03:48:02.000Z" - }, - "end": { - "$date": "2021-03-11T04:03:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6540762f-fcba-4eb5-a3e7-ddc56e4e5f75", - "start": { - "$date": "2021-03-11T04:03:02.000Z" - }, - "end": { - "$date": "2021-03-11T04:04:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "02a2f415-5b39-45ce-9c56-c1d68c6dbe10", - "start": { - "$date": "2021-03-11T04:04:02.000Z" - }, - "end": { - "$date": "2021-03-11T04:06:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5ac1314-ad2d-4f92-9b1e-cd9471c4a792", - "start": { - "$date": "2021-03-11T04:06:02.000Z" - }, - "end": { - "$date": "2021-03-11T04:13:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "132cb8ee-27ba-418a-a063-0b7ec58d0193", - "start": { - "$date": "2021-03-11T04:13:02.000Z" - }, - "end": { - "$date": "2021-03-11T04:35:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "25f2c5a9-35a4-4d60-8675-e4dd756510fc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-11T03:52:16.000Z" - }, - "end": { - "$date": "2021-03-11T04:19:57.000Z" - }, - "events": [ - { - "uuid": "fbbcfe5e-b4cc-4b31-8b9a-b9fc4bdc52c3", - "start": { - "$date": "2021-03-11T03:52:16.000Z" - }, - "end": { - "$date": "2021-03-11T04:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dfd0a450-bdc5-4f88-b7e8-93cb87fa63cf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-11T04:04:10.000Z" - }, - "end": { - "$date": "2021-03-11T06:19:27.000Z" - }, - "events": [ - { - "uuid": "fe2bd69c-f893-4a2b-b3cc-faeeb3fa4e7a", - "start": { - "$date": "2021-03-11T04:04:10.000Z" - }, - "end": { - "$date": "2021-03-11T06:03:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1e79ddb-33be-41a1-9a0d-3e5090b2fcff", - "start": { - "$date": "2021-03-11T06:03:10.000Z" - }, - "end": { - "$date": "2021-03-11T06:17:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "289322c2-7384-4667-b913-2510863aaf65", - "start": { - "$date": "2021-03-11T06:17:10.000Z" - }, - "end": { - "$date": "2021-03-11T06:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "47ab762f-cb72-4cd1-91bb-55a739a26a9d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-11T04:16:45.000Z" - }, - "end": { - "$date": "2021-03-11T05:56:27.000Z" - }, - "events": [ - { - "uuid": "6a95416a-b980-4629-a208-25196974b33f", - "start": { - "$date": "2021-03-11T04:16:45.000Z" - }, - "end": { - "$date": "2021-03-11T05:56:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "256aeb62-b900-4b8d-a25a-a5ced3681f6f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-11T04:36:09.000Z" - }, - "end": { - "$date": "2021-03-11T05:26:06.000Z" - }, - "events": [ - { - "uuid": "d937d5c3-f422-4b72-9370-bb167a9744a2", - "start": { - "$date": "2021-03-11T04:36:09.000Z" - }, - "end": { - "$date": "2021-03-11T05:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d57f114-5e42-4a0c-8d0a-1886eff5df8c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-11T05:26:37.000Z" - }, - "end": { - "$date": "2021-03-11T05:53:46.000Z" - }, - "events": [ - { - "uuid": "28513eba-92b7-42d4-bd73-18d00fdff623", - "start": { - "$date": "2021-03-11T05:26:37.000Z" - }, - "end": { - "$date": "2021-03-11T05:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8c4c97b6-2e2a-41a9-8bf1-9f88b5a80aea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-11T05:31:00.000Z" - }, - "end": { - "$date": "2021-03-11T06:26:29.000Z" - }, - "events": [ - { - "uuid": "0cd78f68-0275-4a91-befe-ce101cb38c5a", - "start": { - "$date": "2021-03-11T05:31:00.000Z" - }, - "end": { - "$date": "2021-03-11T06:26:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9283b00e-35f8-433d-a01a-8677aaf79e8d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-11T06:01:08.000Z" - }, - "end": { - "$date": "2021-03-11T06:26:13.000Z" - }, - "events": [ - { - "uuid": "10dbd42d-a3ce-4661-8539-85982cbfa578", - "start": { - "$date": "2021-03-11T06:01:08.000Z" - }, - "end": { - "$date": "2021-03-11T06:26:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f9a10482-ca2e-4cd0-9e71-a530f6c84709", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-11T06:19:42.000Z" - }, - "end": { - "$date": "2021-03-11T06:40:38.000Z" - }, - "events": [ - { - "uuid": "db309322-01cb-4606-9b6c-6876d6742466", - "start": { - "$date": "2021-03-11T06:19:42.000Z" - }, - "end": { - "$date": "2021-03-11T06:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fd6bd2c8-f8cd-4984-8149-61640329e46c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-11T06:26:37.000Z" - }, - "end": { - "$date": "2021-03-11T06:54:40.000Z" - }, - "events": [ - { - "uuid": "8eab74fe-e01c-4efe-b98f-cbc4b9bf9707", - "start": { - "$date": "2021-03-11T06:26:37.000Z" - }, - "end": { - "$date": "2021-03-11T06:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99beab33-d4a6-4246-81a3-217cebde96df", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-11T06:33:59.000Z" - }, - "end": { - "$date": "2021-03-11T07:14:14.000Z" - }, - "events": [ - { - "uuid": "1c1eeda5-e03b-4f2e-aa47-3cd38b37e14c", - "start": { - "$date": "2021-03-11T06:33:59.000Z" - }, - "end": { - "$date": "2021-03-11T07:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e18c24d-bdf5-43fb-82fd-db49bb42b6e7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-11T07:20:25.000Z" - }, - "end": { - "$date": "2021-03-11T07:46:35.000Z" - }, - "events": [ - { - "uuid": "6258e9ee-92d8-493a-8996-53040b914277", - "start": { - "$date": "2021-03-11T07:20:25.000Z" - }, - "end": { - "$date": "2021-03-11T07:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "625b6b4f-7085-4761-b58f-8fe4579cf942", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-11T18:47:01.000Z" - }, - "end": { - "$date": "2021-03-11T19:10:25.000Z" - }, - "events": [ - { - "uuid": "4ad4c50c-fd1e-43f9-a7a9-bb3740646099", - "start": { - "$date": "2021-03-11T18:47:01.000Z" - }, - "end": { - "$date": "2021-03-11T19:10:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9569b2f5-4dff-42b1-82b2-26371b6da4d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-11T20:31:45.000Z" - }, - "end": { - "$date": "2021-03-11T21:40:21.000Z" - }, - "events": [ - { - "uuid": "d6e236f4-d35d-47ff-a080-a86b62336330", - "start": { - "$date": "2021-03-11T20:31:45.000Z" - }, - "end": { - "$date": "2021-03-11T21:40:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3d3114f0-6676-4bea-83b6-2ed680e02086", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-11T20:49:58.000Z" - }, - "end": { - "$date": "2021-03-11T21:33:02.000Z" - }, - "events": [ - { - "uuid": "653980a7-7a1b-4d2a-8549-45c8bf12c025", - "start": { - "$date": "2021-03-11T20:49:58.000Z" - }, - "end": { - "$date": "2021-03-11T21:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8141f0de-ed30-4e12-b39b-15c4ed67b964", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-11T20:57:26.000Z" - }, - "end": { - "$date": "2021-03-11T21:37:35.000Z" - }, - "events": [ - { - "uuid": "2135508b-c1d3-44c3-9715-2dd2fbc6f749", - "start": { - "$date": "2021-03-11T20:57:26.000Z" - }, - "end": { - "$date": "2021-03-11T21:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "caa564dd-1260-4b42-9cfb-c01c79875f2f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-12T00:16:56.000Z" - }, - "end": { - "$date": "2021-03-12T01:30:55.000Z" - }, - "events": [ - { - "uuid": "441db5eb-1607-4565-b516-82baef7e566f", - "start": { - "$date": "2021-03-12T00:16:56.000Z" - }, - "end": { - "$date": "2021-03-12T01:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ede910f-1b7e-4f62-98dc-8681bc200822", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T00:18:40.000Z" - }, - "end": { - "$date": "2021-03-12T00:21:50.000Z" - }, - "events": [ - { - "uuid": "fc955a95-9333-435e-b912-cc13383fa729", - "start": { - "$date": "2021-03-12T00:18:40.000Z" - }, - "end": { - "$date": "2021-03-12T00:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "59a1b8c2-3975-4779-af90-f47714dfe849", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-12T00:57:25.000Z" - }, - "end": { - "$date": "2021-03-12T01:05:52.000Z" - }, - "events": [ - { - "uuid": "d68f0885-20bb-4e35-9395-64f29ba4a619", - "start": { - "$date": "2021-03-12T00:57:25.000Z" - }, - "end": { - "$date": "2021-03-12T01:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3812994f-1573-438c-8819-0724d5a8957d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T00:57:54.000Z" - }, - "end": { - "$date": "2021-03-12T01:25:22.000Z" - }, - "events": [ - { - "uuid": "026562f1-aa65-4150-8a1c-41fa0aabb528", - "start": { - "$date": "2021-03-12T00:57:54.000Z" - }, - "end": { - "$date": "2021-03-12T01:25:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8fd60d37-1db0-45c5-830d-f3265d1db457", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-12T02:07:12.000Z" - }, - "end": { - "$date": "2021-03-12T04:56:43.000Z" - }, - "events": [ - { - "uuid": "b6c86faa-5708-4e20-9ba8-e62d31121551", - "start": { - "$date": "2021-03-12T02:07:12.000Z" - }, - "end": { - "$date": "2021-03-12T04:56:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e9f455be-36a4-4510-801a-0411c1c2114e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-12T02:15:17.000Z" - }, - "end": { - "$date": "2021-03-12T04:56:34.000Z" - }, - "events": [ - { - "uuid": "f7d45832-ca10-4f19-9560-b64c514ad9a8", - "start": { - "$date": "2021-03-12T02:15:17.000Z" - }, - "end": { - "$date": "2021-03-12T04:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae5a9bde-3423-493a-9ac2-8553e1c0916a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-12T02:16:06.000Z" - }, - "end": { - "$date": "2021-03-12T03:53:17.000Z" - }, - "events": [ - { - "uuid": "267134a5-3731-4299-b184-45e2c3f6b44f", - "start": { - "$date": "2021-03-12T02:16:06.000Z" - }, - "end": { - "$date": "2021-03-12T03:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7e779e88-cc24-4f19-b874-26ab1d9ad2d7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-12T02:21:34.000Z" - }, - "end": { - "$date": "2021-03-12T05:07:00.000Z" - }, - "events": [ - { - "uuid": "833f4df0-58d8-4b35-88d2-80ee71d30a7a", - "start": { - "$date": "2021-03-12T02:21:34.000Z" - }, - "end": { - "$date": "2021-03-12T05:07:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bc32ee9c-511e-46e3-9c8b-17f7132e9b25", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T02:36:07.000Z" - }, - "end": { - "$date": "2021-03-12T02:49:09.000Z" - }, - "events": [ - { - "uuid": "5e38298a-fb8e-4b0d-a2e2-7d8fdf08a9c9", - "start": { - "$date": "2021-03-12T02:36:07.000Z" - }, - "end": { - "$date": "2021-03-12T02:49:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8498ae3e-d476-457e-9c67-576cd9af8dc2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T03:03:16.000Z" - }, - "end": { - "$date": "2021-03-12T03:53:31.000Z" - }, - "events": [ - { - "uuid": "e9ed9303-3f30-4ec6-879a-0d6a3244a8ae", - "start": { - "$date": "2021-03-12T03:03:16.000Z" - }, - "end": { - "$date": "2021-03-12T03:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "21f29e55-e57d-4d5f-b7cf-a49eb3928d4d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-12T03:14:13.000Z" - }, - "end": { - "$date": "2021-03-12T06:47:15.000Z" - }, - "events": [ - { - "uuid": "74024729-0460-4cc8-b1df-d9138dd1bac1", - "start": { - "$date": "2021-03-12T03:14:13.000Z" - }, - "end": { - "$date": "2021-03-12T06:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2904ba6a-e75c-4766-ac14-f19a1e2fef59", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T03:53:51.000Z" - }, - "end": { - "$date": "2021-03-12T05:31:14.000Z" - }, - "events": [ - { - "uuid": "57fa8fa2-3f5c-4d51-b545-7be19a66e9c1", - "start": { - "$date": "2021-03-12T03:53:51.000Z" - }, - "end": { - "$date": "2021-03-12T05:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "708f1ec6-24c2-45ce-a13a-bdca65185856", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-12T05:05:59.000Z" - }, - "end": { - "$date": "2021-03-12T05:32:39.000Z" - }, - "events": [ - { - "uuid": "05bb8c2c-7e93-4708-93f6-6769b66e5d7d", - "start": { - "$date": "2021-03-12T05:05:59.000Z" - }, - "end": { - "$date": "2021-03-12T05:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7374eb88-38c2-43e4-b46a-ea7e481d22aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-12T05:39:37.000Z" - }, - "end": { - "$date": "2021-03-12T05:39:43.000Z" - }, - "events": [ - { - "uuid": "0129d74e-d356-44f1-acc3-1820feff93e1", - "start": { - "$date": "2021-03-12T05:39:37.000Z" - }, - "end": { - "$date": "2021-03-12T05:39:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c6d311a-c7b6-404a-baa4-6bf0f92c49a2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-12T05:41:09.000Z" - }, - "end": { - "$date": "2021-03-12T05:51:15.000Z" - }, - "events": [ - { - "uuid": "2c6face7-128c-4123-9542-dd550919a796", - "start": { - "$date": "2021-03-12T05:41:09.000Z" - }, - "end": { - "$date": "2021-03-12T05:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "22177b90-5869-4d0f-8f11-cd566efe5e07", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T05:34:23.000Z" - }, - "end": { - "$date": "2021-03-12T06:08:24.000Z" - }, - "events": [ - { - "uuid": "f40f2b97-03ad-4932-8851-0c67186e11fd", - "start": { - "$date": "2021-03-12T05:34:23.000Z" - }, - "end": { - "$date": "2021-03-12T06:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a3aaeef3-eae3-403e-8293-a8bdb03f3de1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-12T05:39:47.000Z" - }, - "end": { - "$date": "2021-03-12T07:12:12.000Z" - }, - "events": [ - { - "uuid": "910774b5-b249-4cab-a067-32f30536948f", - "start": { - "$date": "2021-03-12T05:39:47.000Z" - }, - "end": { - "$date": "2021-03-12T07:06:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "522951a2-b15c-41dc-a965-dd85784b40c7", - "start": { - "$date": "2021-03-12T07:06:47.000Z" - }, - "end": { - "$date": "2021-03-12T07:09:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4143a940-d4c0-4ffa-ab54-dfbd6f6a6db7", - "start": { - "$date": "2021-03-12T07:09:47.000Z" - }, - "end": { - "$date": "2021-03-12T07:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68b69f08-6e1f-4c22-9cc5-9cbd7df176ac", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-12T05:58:31.000Z" - }, - "end": { - "$date": "2021-03-12T06:33:44.000Z" - }, - "events": [ - { - "uuid": "177a5e9f-ba16-48a7-8898-f77c43e2aaae", - "start": { - "$date": "2021-03-12T05:58:31.000Z" - }, - "end": { - "$date": "2021-03-12T06:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d95690f9-e7b0-4f3e-af4a-5c35b2a9b1e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-12T07:11:55.000Z" - }, - "end": { - "$date": "2021-03-12T07:50:06.000Z" - }, - "events": [ - { - "uuid": "82b31a4b-eddc-4064-ae34-8a0b36f4de15", - "start": { - "$date": "2021-03-12T07:11:55.000Z" - }, - "end": { - "$date": "2021-03-12T07:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d10b36da-c87d-43b2-9285-fe7e82e25c6d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-12T14:56:39.000Z" - }, - "end": { - "$date": "2021-03-12T15:04:22.000Z" - }, - "events": [ - { - "uuid": "425d92d9-70fe-43fa-a3e3-a949658db5b7", - "start": { - "$date": "2021-03-12T14:56:39.000Z" - }, - "end": { - "$date": "2021-03-12T15:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7d3f627c-74c8-42e7-ab10-189ad4609629", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-12T15:38:13.000Z" - }, - "end": { - "$date": "2021-03-12T19:37:09.000Z" - }, - "events": [ - { - "uuid": "52911f67-fa5f-4d29-a40d-842ad3b610c0", - "start": { - "$date": "2021-03-12T15:38:13.000Z" - }, - "end": { - "$date": "2021-03-12T19:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "49fd3519-7f2e-4717-95a4-7609368dcae3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-12T18:23:14.000Z" - }, - "end": { - "$date": "2021-03-12T19:56:40.000Z" - }, - "events": [ - { - "uuid": "f744219e-9379-4273-bb40-14be2fcfa35f", - "start": { - "$date": "2021-03-12T18:23:14.000Z" - }, - "end": { - "$date": "2021-03-12T19:56:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3b8854b-e5dd-4a24-9c9b-72ea962751a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-12T19:32:32.000Z" - }, - "end": { - "$date": "2021-03-12T19:55:40.000Z" - }, - "events": [ - { - "uuid": "b6a783d3-435a-477f-8134-d6e706104365", - "start": { - "$date": "2021-03-12T19:32:32.000Z" - }, - "end": { - "$date": "2021-03-12T19:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1633d790-6602-456f-96ad-1459b029c715", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-12T20:03:18.000Z" - }, - "end": { - "$date": "2021-03-12T20:39:01.000Z" - }, - "events": [ - { - "uuid": "0d7ea83c-050e-4f7c-9af7-f94d7555523c", - "start": { - "$date": "2021-03-12T20:03:18.000Z" - }, - "end": { - "$date": "2021-03-12T20:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eaf39420-514e-47f8-bec8-0c694b8dcb7d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-12T20:28:20.000Z" - }, - "end": { - "$date": "2021-03-12T22:55:21.000Z" - }, - "events": [ - { - "uuid": "d8eef313-0388-47cb-af09-00564993c313", - "start": { - "$date": "2021-03-12T20:28:20.000Z" - }, - "end": { - "$date": "2021-03-12T22:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d5fb1314-0b87-4e85-b0b1-aa011a8ef1c7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-12T20:30:33.000Z" - }, - "end": { - "$date": "2021-03-12T20:55:46.000Z" - }, - "events": [ - { - "uuid": "e751b447-9a92-4261-b638-85bea6f57e17", - "start": { - "$date": "2021-03-12T20:30:33.000Z" - }, - "end": { - "$date": "2021-03-12T20:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "963d2d82-e92b-4cc4-843d-712404eb53c4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-12T20:34:50.000Z" - }, - "end": { - "$date": "2021-03-12T21:25:48.000Z" - }, - "events": [ - { - "uuid": "2b68ed20-a733-4f7f-a047-b0d879714ef8", - "start": { - "$date": "2021-03-12T20:34:50.000Z" - }, - "end": { - "$date": "2021-03-12T21:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "261a9d5c-b3ad-4cf3-9462-587222c6c1c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-12T21:36:41.000Z" - }, - "end": { - "$date": "2021-03-12T21:39:26.000Z" - }, - "events": [ - { - "uuid": "cfdbc742-89b7-46ad-ab04-33a19cf691b4", - "start": { - "$date": "2021-03-12T21:36:41.000Z" - }, - "end": { - "$date": "2021-03-12T21:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "55b7656a-9401-484a-9d61-7da8a50fc66f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-12T21:38:43.000Z" - }, - "end": { - "$date": "2021-03-12T22:26:06.000Z" - }, - "events": [ - { - "uuid": "00d0aad8-81d0-462d-a57d-94b0014cebe7", - "start": { - "$date": "2021-03-12T21:38:43.000Z" - }, - "end": { - "$date": "2021-03-12T22:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7a79c9bc-7dc0-400f-a8e7-8f6018fb770b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-12T21:52:30.000Z" - }, - "end": { - "$date": "2021-03-13T00:49:56.000Z" - }, - "events": [ - { - "uuid": "af599ad3-87c5-47d6-9fb9-127d3e0f79c3", - "start": { - "$date": "2021-03-12T21:52:30.000Z" - }, - "end": { - "$date": "2021-03-12T23:32:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f913a0d1-d41b-49ed-b298-1e02be86a10e", - "start": { - "$date": "2021-03-12T23:32:30.000Z" - }, - "end": { - "$date": "2021-03-12T23:49:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c7e8cdaa-a20c-4f53-830c-ca279a5b2fae", - "start": { - "$date": "2021-03-12T23:49:30.000Z" - }, - "end": { - "$date": "2021-03-13T00:14:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e8c6271-a922-4566-9187-d5c9a959c3ec", - "start": { - "$date": "2021-03-13T00:14:30.000Z" - }, - "end": { - "$date": "2021-03-13T00:15:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0ac08fb-482e-43d1-99fd-3707d013311d", - "start": { - "$date": "2021-03-13T00:15:30.000Z" - }, - "end": { - "$date": "2021-03-13T00:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d3598c02-d32c-47ad-a65f-0e5bf8f4a7f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-12T22:24:07.000Z" - }, - "end": { - "$date": "2021-03-12T22:40:24.000Z" - }, - "events": [ - { - "uuid": "e844ac13-9f86-4af1-9b56-c21ea41741e5", - "start": { - "$date": "2021-03-12T22:24:07.000Z" - }, - "end": { - "$date": "2021-03-12T22:40:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9e74ddbd-1ca4-4150-a70d-cf85f26ddefe", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-12T22:42:17.000Z" - }, - "end": { - "$date": "2021-03-12T23:28:12.000Z" - }, - "events": [ - { - "uuid": "2a33a5ca-dabe-44e6-a3a6-f8179d6eb447", - "start": { - "$date": "2021-03-12T22:42:17.000Z" - }, - "end": { - "$date": "2021-03-12T23:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9392b033-bc52-48c2-ad38-542f3a119f84", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-12T23:02:41.000Z" - }, - "end": { - "$date": "2021-03-13T00:02:57.000Z" - }, - "events": [ - { - "uuid": "a06de429-aa70-4206-9d94-34afe27539c3", - "start": { - "$date": "2021-03-12T23:02:41.000Z" - }, - "end": { - "$date": "2021-03-13T00:02:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8a01254a-5c5b-4c84-a165-85c362951702", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-12T23:12:58.000Z" - }, - "end": { - "$date": "2021-03-12T23:26:00.000Z" - }, - "events": [ - { - "uuid": "3e00b73f-2b1c-431c-ac6b-df449d1b8a70", - "start": { - "$date": "2021-03-12T23:12:58.000Z" - }, - "end": { - "$date": "2021-03-12T23:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7279d55e-9201-4ac6-bd7b-aecec2d8d0aa", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-12T22:42:17.000Z" - }, - "end": { - "$date": "2021-03-12T23:34:01.000Z" - }, - "events": [ - { - "uuid": "283266f4-a229-4a8b-9b05-91543bd3492d", - "start": { - "$date": "2021-03-12T22:42:17.000Z" - }, - "end": { - "$date": "2021-03-12T23:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "fa748122-ae1c-4146-bcda-4ad3ff3571e9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-12T23:34:25.000Z" - }, - "end": { - "$date": "2021-03-12T23:37:58.000Z" - }, - "events": [ - { - "uuid": "9a3d0c44-87e7-4ac3-b587-c33df2417530", - "start": { - "$date": "2021-03-12T23:34:25.000Z" - }, - "end": { - "$date": "2021-03-12T23:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "101360d9-3be1-4357-b418-e521ec7c4515", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-12T23:34:47.000Z" - }, - "end": { - "$date": "2021-03-12T23:35:56.000Z" - }, - "events": [ - { - "uuid": "924143b4-5844-42b2-ae6b-2859a4267e93", - "start": { - "$date": "2021-03-12T23:34:47.000Z" - }, - "end": { - "$date": "2021-03-12T23:35:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "76119cd4-fbea-444a-a6df-de13e8698f2d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-12T23:36:12.000Z" - }, - "end": { - "$date": "2021-03-13T00:05:14.000Z" - }, - "events": [ - { - "uuid": "7bf40557-9738-4d3c-bd36-1896e62b69ef", - "start": { - "$date": "2021-03-12T23:36:12.000Z" - }, - "end": { - "$date": "2021-03-13T00:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "200d8edf-a5e0-47b4-96cc-6db2929938ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-13T00:56:29.000Z" - }, - "end": { - "$date": "2021-03-13T01:21:12.000Z" - }, - "events": [ - { - "uuid": "07f30be2-de9a-4d53-9013-e60832e9c932", - "start": { - "$date": "2021-03-13T00:56:29.000Z" - }, - "end": { - "$date": "2021-03-13T02:23:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6efed95b-cb39-4bca-b5b6-0eb4db729ea0", - "start": { - "$date": "2021-03-13T02:23:29.000Z" - }, - "end": { - "$date": "2021-03-13T01:21:12.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "613d900b-10b4-4127-a602-bfae249791d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-13T00:01:45.000Z" - }, - "end": { - "$date": "2021-03-13T00:26:58.000Z" - }, - "events": [ - { - "uuid": "e16d9ff3-8f60-41ad-aa7c-e2309db24811", - "start": { - "$date": "2021-03-13T00:01:45.000Z" - }, - "end": { - "$date": "2021-03-13T00:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "72692264-3023-4985-8e3e-ffdf0a180cb4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-13T01:00:24.000Z" - }, - "end": { - "$date": "2021-03-13T04:50:22.000Z" - }, - "events": [ - { - "uuid": "f01eba1a-3fa5-410c-aad6-d69ef038d077", - "start": { - "$date": "2021-03-13T01:00:24.000Z" - }, - "end": { - "$date": "2021-03-13T03:44:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63f945a1-c8d6-4536-a0dc-24d07a958a3d", - "start": { - "$date": "2021-03-13T03:44:24.000Z" - }, - "end": { - "$date": "2021-03-13T03:58:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36f88a0c-2aac-4d16-80ad-a6553a3cd41f", - "start": { - "$date": "2021-03-13T03:58:24.000Z" - }, - "end": { - "$date": "2021-03-13T04:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e20edfd0-c49c-453c-8afd-c7ecdb614162", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-13T01:22:50.000Z" - }, - "end": { - "$date": "2021-03-13T05:59:02.000Z" - }, - "events": [ - { - "uuid": "7d744b50-51bb-42d7-a2c3-25eafcc07c3d", - "start": { - "$date": "2021-03-13T01:22:50.000Z" - }, - "end": { - "$date": "2021-03-13T03:42:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e34e574-e6d2-495a-a664-abffd2e3a35c", - "start": { - "$date": "2021-03-13T03:42:50.000Z" - }, - "end": { - "$date": "2021-03-13T03:43:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "122feb58-e365-4120-ac28-fbc39330fa84", - "start": { - "$date": "2021-03-13T03:43:50.000Z" - }, - "end": { - "$date": "2021-03-13T05:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "af536ec9-d2c4-419b-9a25-37a4448dc5b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T01:25:23.000Z" - }, - "end": { - "$date": "2021-03-13T02:26:17.000Z" - }, - "events": [ - { - "uuid": "41d6b782-ef43-4373-8118-09b46ad78992", - "start": { - "$date": "2021-03-13T01:25:23.000Z" - }, - "end": { - "$date": "2021-03-13T01:52:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c5f25e8a-c08c-440d-b8d8-04c478531f98", - "start": { - "$date": "2021-03-13T01:52:23.000Z" - }, - "end": { - "$date": "2021-03-13T01:56:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ffe88724-6dd2-43cd-b76c-fea85aa93807", - "start": { - "$date": "2021-03-13T01:56:23.000Z" - }, - "end": { - "$date": "2021-03-13T02:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "616ccdb5-6c68-488b-b12c-a3c049eb00ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-13T02:28:22.000Z" - }, - "end": { - "$date": "2021-03-13T03:06:11.000Z" - }, - "events": [ - { - "uuid": "f84687a6-2fe0-4f58-a49d-17b2bd513ee5", - "start": { - "$date": "2021-03-13T02:28:22.000Z" - }, - "end": { - "$date": "2021-03-13T03:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c43e537a-70f0-4745-88f5-fcef7221f4da", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-13T03:01:27.000Z" - }, - "end": { - "$date": "2021-03-13T05:28:02.000Z" - }, - "events": [ - { - "uuid": "f4c74e69-704e-4b57-b1c1-7a548e1b9a3f", - "start": { - "$date": "2021-03-13T03:01:27.000Z" - }, - "end": { - "$date": "2021-03-13T05:28:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "536cbe9a-d198-4c81-b04e-f0cc701c830a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T03:05:09.000Z" - }, - "end": { - "$date": "2021-03-13T04:28:08.000Z" - }, - "events": [ - { - "uuid": "bf73aabc-199e-4591-9484-8509e01c177d", - "start": { - "$date": "2021-03-13T03:05:09.000Z" - }, - "end": { - "$date": "2021-03-13T04:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd734dc4-e97a-49b7-bd34-d5a93bd00276", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-13T03:45:55.000Z" - }, - "end": { - "$date": "2021-03-13T07:43:48.000Z" - }, - "events": [ - { - "uuid": "caba6cc9-dee2-4b62-859c-e62a765ef6d4", - "start": { - "$date": "2021-03-13T03:45:55.000Z" - }, - "end": { - "$date": "2021-03-13T07:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df6a8e49-19b2-4b68-bc9a-44a544f4ed79", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-13T03:47:41.000Z" - }, - "end": { - "$date": "2021-03-13T07:43:46.000Z" - }, - "events": [ - { - "uuid": "794e0364-5a56-4de9-9d78-e3cfce016dff", - "start": { - "$date": "2021-03-13T03:47:41.000Z" - }, - "end": { - "$date": "2021-03-13T07:43:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "83b2ad81-6c62-42c4-b4ea-9eb2b47648a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T04:28:19.000Z" - }, - "end": { - "$date": "2021-03-13T04:36:40.000Z" - }, - "events": [ - { - "uuid": "19ce8729-2d87-4b78-a296-a3550f005765", - "start": { - "$date": "2021-03-13T04:28:19.000Z" - }, - "end": { - "$date": "2021-03-13T04:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "869e37c6-ddbc-4436-b09c-66cd68a6658d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-13T04:31:22.000Z" - }, - "end": { - "$date": "2021-03-13T06:39:30.000Z" - }, - "events": [ - { - "uuid": "d5ff591e-e75e-4af1-9ec7-527e6d50f96f", - "start": { - "$date": "2021-03-13T04:31:22.000Z" - }, - "end": { - "$date": "2021-03-13T06:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "00b9b71e-56f4-4871-8929-567ef8dfd480", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-13T04:32:14.000Z" - }, - "end": { - "$date": "2021-03-13T04:35:47.000Z" - }, - "events": [ - { - "uuid": "c2ac5c95-27c8-43ef-ab8d-62c734d02721", - "start": { - "$date": "2021-03-13T04:32:14.000Z" - }, - "end": { - "$date": "2021-03-13T04:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6afdfcd5-d73c-44f5-b017-52a99f5fe5f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-13T04:33:13.000Z" - }, - "end": { - "$date": "2021-03-13T06:11:35.000Z" - }, - "events": [ - { - "uuid": "94bcb8bd-b3ab-415b-8278-5b81b89429d5", - "start": { - "$date": "2021-03-13T04:33:13.000Z" - }, - "end": { - "$date": "2021-03-13T06:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "50c709fc-32e5-4d29-a489-af7f3a5e9485", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-13T04:36:29.000Z" - }, - "end": { - "$date": "2021-03-13T07:06:04.000Z" - }, - "events": [ - { - "uuid": "aba17600-e854-465e-b914-d921e57d5fcf", - "start": { - "$date": "2021-03-13T04:36:29.000Z" - }, - "end": { - "$date": "2021-03-13T07:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e6793ee-b0fb-464e-acce-4bd70170161e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T04:37:11.000Z" - }, - "end": { - "$date": "2021-03-13T05:30:59.000Z" - }, - "events": [ - { - "uuid": "27f89215-f98b-4051-a5a5-b54bed59c38f", - "start": { - "$date": "2021-03-13T04:37:11.000Z" - }, - "end": { - "$date": "2021-03-13T05:30:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "36001d91-ee98-4e76-bf19-088ac5dbd94f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-13T05:12:50.000Z" - }, - "end": { - "$date": "2021-03-13T05:29:15.000Z" - }, - "events": [ - { - "uuid": "6ee1f6b0-ea87-432a-8f71-1acb6e6593de", - "start": { - "$date": "2021-03-13T05:12:50.000Z" - }, - "end": { - "$date": "2021-03-13T05:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "a0f9d406-f791-4245-9e56-f3adc0457dfd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-13T05:39:57.000Z" - }, - "end": { - "$date": "2021-03-13T09:09:19.000Z" - }, - "events": [ - { - "uuid": "f85cb8a7-942a-45e7-86c5-74fa1ed89146", - "start": { - "$date": "2021-03-13T05:39:57.000Z" - }, - "end": { - "$date": "2021-03-13T09:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4fc282f2-0be1-436a-a18a-426579c5c03b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T05:55:10.000Z" - }, - "end": { - "$date": "2021-03-13T06:20:11.000Z" - }, - "events": [ - { - "uuid": "ee2a639e-0cc9-4319-9d92-0f63b67c510a", - "start": { - "$date": "2021-03-13T05:55:10.000Z" - }, - "end": { - "$date": "2021-03-13T06:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1758b099-f385-4daa-9dfc-b83db3b94317", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-13T06:12:35.000Z" - }, - "end": { - "$date": "2021-03-13T06:37:25.000Z" - }, - "events": [ - { - "uuid": "ae81e6db-4773-47d0-ba15-2c39d2f32baf", - "start": { - "$date": "2021-03-13T06:12:35.000Z" - }, - "end": { - "$date": "2021-03-13T06:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5ac7e4d8-622e-45d0-a7d9-122e1ac0c96d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-13T06:12:03.000Z" - }, - "end": { - "$date": "2021-03-13T08:18:33.000Z" - }, - "events": [ - { - "uuid": "48c6df78-3c55-4d57-a61c-b1e3b8e2541a", - "start": { - "$date": "2021-03-13T06:12:03.000Z" - }, - "end": { - "$date": "2021-03-13T08:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "93bf9623-65c1-4267-b278-ae96a1d28231", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T06:20:32.000Z" - }, - "end": { - "$date": "2021-03-13T06:30:14.000Z" - }, - "events": [ - { - "uuid": "bf768367-facc-4821-bcf7-63437a80b2a2", - "start": { - "$date": "2021-03-13T06:20:32.000Z" - }, - "end": { - "$date": "2021-03-13T06:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "13ff374d-180b-4c27-a84d-f4c7fdfbd4d0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T06:30:35.000Z" - }, - "end": { - "$date": "2021-03-13T07:00:48.000Z" - }, - "events": [ - { - "uuid": "d601584a-0b4a-4eca-acbe-7758c4871999", - "start": { - "$date": "2021-03-13T06:30:35.000Z" - }, - "end": { - "$date": "2021-03-13T07:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "0305c38b-14b7-4caa-98b9-d1731a8a1c9e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-13T06:42:10.000Z" - }, - "end": { - "$date": "2021-03-13T09:21:30.000Z" - }, - "events": [ - { - "uuid": "250e9732-43a5-48bf-ad47-7bb09542d62d", - "start": { - "$date": "2021-03-13T06:42:10.000Z" - }, - "end": { - "$date": "2021-03-13T09:21:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "40b88507-eb63-404f-a834-5c7a54d9ae4c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-13T07:07:07.000Z" - }, - "end": { - "$date": "2021-03-13T07:11:28.000Z" - }, - "events": [ - { - "uuid": "59c8485c-6531-4fcc-a20b-a9559068eed6", - "start": { - "$date": "2021-03-13T07:07:07.000Z" - }, - "end": { - "$date": "2021-03-13T07:11:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1d77013-7a7b-4793-a530-bc689a9af14c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-13T09:36:31.000Z" - }, - "end": { - "$date": "2021-03-13T10:06:23.000Z" - }, - "events": [ - { - "uuid": "704fd721-cb2e-4ed8-a217-f174c17033a8", - "start": { - "$date": "2021-03-13T09:36:31.000Z" - }, - "end": { - "$date": "2021-03-13T10:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "39eea389-7fb2-4294-9ac0-41e5162fd91c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T14:22:10.000Z" - }, - "end": { - "$date": "2021-03-13T14:33:15.000Z" - }, - "events": [ - { - "uuid": "5dbe7884-463d-43bd-8ca9-1d234365c8fb", - "start": { - "$date": "2021-03-13T14:22:10.000Z" - }, - "end": { - "$date": "2021-03-13T14:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "43856642-2630-477e-a370-f6b79c7f97e8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T16:57:12.000Z" - }, - "end": { - "$date": "2021-03-13T16:57:32.000Z" - }, - "events": [ - { - "uuid": "ceb6cb10-769c-4d31-b3f4-b10352093ed4", - "start": { - "$date": "2021-03-13T16:57:12.000Z" - }, - "end": { - "$date": "2021-03-13T18:55:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69c71736-2b69-4044-a939-db390d2814a8", - "start": { - "$date": "2021-03-13T18:55:12.000Z" - }, - "end": { - "$date": "2021-03-13T16:57:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e03aa17e-fb1b-4b68-a8d4-004121985e0e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-13T17:55:24.000Z" - }, - "end": { - "$date": "2021-03-14T01:37:55.000Z" - }, - "events": [ - { - "uuid": "eb24b047-512a-46b9-8dbc-c42c3b2a2789", - "start": { - "$date": "2021-03-13T17:55:24.000Z" - }, - "end": { - "$date": "2021-03-13T18:59:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f9219c2-4f36-465b-8728-101bcd47dd5f", - "start": { - "$date": "2021-03-13T18:59:24.000Z" - }, - "end": { - "$date": "2021-03-13T19:04:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "55580cb6-2584-4623-a88f-a05d7ace929b", - "start": { - "$date": "2021-03-13T19:04:24.000Z" - }, - "end": { - "$date": "2021-03-13T23:37:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6b457206-6656-438b-bc2c-cb9026b79922", - "start": { - "$date": "2021-03-13T23:37:24.000Z" - }, - "end": { - "$date": "2021-03-14T01:37:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "0349bc38-6d91-4058-9caa-cc5f355e7ebd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-13T17:55:54.000Z" - }, - "end": { - "$date": "2021-03-13T18:21:42.000Z" - }, - "events": [ - { - "uuid": "40534783-31a4-4866-a0be-4b333816747b", - "start": { - "$date": "2021-03-13T17:55:54.000Z" - }, - "end": { - "$date": "2021-03-13T18:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbd1a35c-b848-4fc3-9878-42ac65b155e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-13T19:45:13.000Z" - }, - "end": { - "$date": "2021-03-13T19:46:15.000Z" - }, - "events": [ - { - "uuid": "cec5c1dc-f482-4d94-a0ab-2ea596f743e8", - "start": { - "$date": "2021-03-13T19:45:13.000Z" - }, - "end": { - "$date": "2021-03-13T19:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da8bb7d4-1959-488b-9b7e-99514bbe36ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-13T19:49:28.000Z" - }, - "end": { - "$date": "2021-03-13T20:16:08.000Z" - }, - "events": [ - { - "uuid": "59cb7772-a9fc-4dd0-8df1-869e0cb3cc7b", - "start": { - "$date": "2021-03-13T19:49:28.000Z" - }, - "end": { - "$date": "2021-03-13T20:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9949907a-b36c-4305-b141-7bd63435e75a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-13T20:23:54.000Z" - }, - "end": { - "$date": "2021-03-13T20:49:29.000Z" - }, - "events": [ - { - "uuid": "9c0d7ba2-3cfc-4f77-bb10-a50ee0864de2", - "start": { - "$date": "2021-03-13T20:23:54.000Z" - }, - "end": { - "$date": "2021-03-13T20:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "85efda6e-e30f-4c30-8277-e73a87d26da4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T20:26:51.000Z" - }, - "end": { - "$date": "2021-03-13T21:04:14.000Z" - }, - "events": [ - { - "uuid": "641e8020-b761-4aa3-b3af-7a5ae9468d08", - "start": { - "$date": "2021-03-13T20:26:51.000Z" - }, - "end": { - "$date": "2021-03-13T21:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "89a4d3e7-9c3d-44ea-b11a-cc2d1667bc06", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-13T20:59:58.000Z" - }, - "end": { - "$date": "2021-03-13T21:25:51.000Z" - }, - "events": [ - { - "uuid": "51ecfbdf-a798-4bf3-9876-c62462da182c", - "start": { - "$date": "2021-03-13T20:59:58.000Z" - }, - "end": { - "$date": "2021-03-13T21:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "85ffb949-e5f5-4a0c-bca6-9f0594d9e7ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T21:27:27.000Z" - }, - "end": { - "$date": "2021-03-13T21:27:32.000Z" - }, - "events": [ - { - "uuid": "bfed46e4-3255-4252-8071-bd9adf811b52", - "start": { - "$date": "2021-03-13T21:27:27.000Z" - }, - "end": { - "$date": "2021-03-13T21:27:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "05287841-b9d4-4f26-a213-b42353b47056", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T21:27:37.000Z" - }, - "end": { - "$date": "2021-03-13T22:19:09.000Z" - }, - "events": [ - { - "uuid": "9611a3a4-c3b3-48c6-a00b-2f3361fd7002", - "start": { - "$date": "2021-03-13T21:27:37.000Z" - }, - "end": { - "$date": "2021-03-13T22:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d474eebb-c3fb-479b-b1bc-7ec8ba1c0d5f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-13T21:30:06.000Z" - }, - "end": { - "$date": "2021-03-13T22:36:11.000Z" - }, - "events": [ - { - "uuid": "15c77e7f-4cc1-41bd-a19a-d2901c2787b3", - "start": { - "$date": "2021-03-13T21:30:06.000Z" - }, - "end": { - "$date": "2021-03-13T22:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e33e21b8-46b8-4ec0-81ac-40b67a579352", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-13T21:38:20.000Z" - }, - "end": { - "$date": "2021-03-13T22:40:17.000Z" - }, - "events": [ - { - "uuid": "9dd1f898-8baf-412b-9cb9-abd7e28e99b3", - "start": { - "$date": "2021-03-13T21:38:20.000Z" - }, - "end": { - "$date": "2021-03-13T22:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "bdc69e22-6e3c-4d10-a7e0-28b5f8df13a4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-13T22:07:57.000Z" - }, - "end": { - "$date": "2021-03-13T22:38:17.000Z" - }, - "events": [ - { - "uuid": "40532242-cc72-46b9-ab89-2a3852e2023d", - "start": { - "$date": "2021-03-13T22:07:57.000Z" - }, - "end": { - "$date": "2021-03-13T22:09:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "27cdec5f-c50f-4824-8a96-d41bb95f8f0e", - "start": { - "$date": "2021-03-13T22:09:57.000Z" - }, - "end": { - "$date": "2021-03-13T22:10:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "431de0d9-24e8-489a-998e-125f73869cf6", - "start": { - "$date": "2021-03-13T22:10:57.000Z" - }, - "end": { - "$date": "2021-03-13T22:23:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "91fc316c-759d-4ced-bfba-272f85c7f9d9", - "start": { - "$date": "2021-03-13T22:23:57.000Z" - }, - "end": { - "$date": "2021-03-13T22:24:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28e9befd-51bd-42cb-9c0c-f3e4fe6b9f61", - "start": { - "$date": "2021-03-13T22:24:57.000Z" - }, - "end": { - "$date": "2021-03-13T22:38:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "17c073af-1113-4009-ab88-5729b07258fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T22:19:19.000Z" - }, - "end": { - "$date": "2021-03-13T23:05:20.000Z" - }, - "events": [ - { - "uuid": "4c433db9-95cc-46b7-aae7-7561947e9779", - "start": { - "$date": "2021-03-13T22:19:19.000Z" - }, - "end": { - "$date": "2021-03-13T23:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ac131e0a-3da4-4c01-a491-705d39c88f48", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T22:55:40.000Z" - }, - "end": { - "$date": "2021-03-13T23:10:38.000Z" - }, - "events": [ - { - "uuid": "13fe675f-a98b-4f85-af33-1971471dcbd1", - "start": { - "$date": "2021-03-13T22:55:40.000Z" - }, - "end": { - "$date": "2021-03-13T23:10:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", - "uuid": "68cf5e45-8ffb-412d-9efb-8e743d5bac65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-13T23:05:40.000Z" - }, - "end": { - "$date": "2021-03-14T00:24:19.000Z" - }, - "events": [ - { - "uuid": "21c360f6-36a5-4a5e-b049-30eb036b10bc", - "start": { - "$date": "2021-03-13T23:05:40.000Z" - }, - "end": { - "$date": "2021-03-14T00:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", - "uuid": "ad1f6679-c47c-48c0-af1d-b6016fb15f09", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-13T23:10:48.000Z" - }, - "end": { - "$date": "2021-03-14T00:23:07.000Z" - }, - "events": [ - { - "uuid": "1edaac5f-3133-435c-9a19-79284563c103", - "start": { - "$date": "2021-03-13T23:10:48.000Z" - }, - "end": { - "$date": "2021-03-14T00:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14b65849-2d95-4c61-aab1-841725e58f96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-13T23:37:59.000Z" - }, - "end": { - "$date": "2021-03-14T00:08:39.000Z" - }, - "events": [ - { - "uuid": "8195079f-248b-4c06-ac8f-b13c49646ef4", - "start": { - "$date": "2021-03-13T23:37:59.000Z" - }, - "end": { - "$date": "2021-03-14T00:08:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "408bfe62-3ac1-417c-8d81-33c930390a8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T00:22:11.000Z" - }, - "end": { - "$date": "2021-03-14T01:13:11.000Z" - }, - "events": [ - { - "uuid": "17decbc5-7778-4df6-95e7-873d646c21fe", - "start": { - "$date": "2021-03-14T00:22:11.000Z" - }, - "end": { - "$date": "2021-03-14T01:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eef695c0-b7fc-409e-8cbc-58ba36d07e92", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-14T00:23:50.000Z" - }, - "end": { - "$date": "2021-03-14T01:13:04.000Z" - }, - "events": [ - { - "uuid": "625f0fcf-aae8-49b0-8502-919b88b40f84", - "start": { - "$date": "2021-03-14T00:23:50.000Z" - }, - "end": { - "$date": "2021-03-14T01:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "821742f4-00a3-4cee-a0b4-8db27f8489dc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-14T00:24:29.000Z" - }, - "end": { - "$date": "2021-03-14T01:12:57.000Z" - }, - "events": [ - { - "uuid": "9ff51206-1a75-49e8-9d93-d8fa7cf7494a", - "start": { - "$date": "2021-03-14T00:24:29.000Z" - }, - "end": { - "$date": "2021-03-14T01:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c366fe25-2d8f-46ef-bf49-8816e1500d90", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-14T00:26:46.000Z" - }, - "end": { - "$date": "2021-03-14T01:13:15.000Z" - }, - "events": [ - { - "uuid": "6e36837d-d19c-4f06-be59-f151cd859736", - "start": { - "$date": "2021-03-14T00:26:46.000Z" - }, - "end": { - "$date": "2021-03-14T01:13:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "a0b93521-c2de-42a8-86af-ae02608bb74e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T00:26:49.000Z" - }, - "end": { - "$date": "2021-03-14T00:35:19.000Z" - }, - "events": [ - { - "uuid": "82dcff7d-527d-4ea4-9153-10580a18089f", - "start": { - "$date": "2021-03-14T00:26:49.000Z" - }, - "end": { - "$date": "2021-03-14T00:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "98ab968f-7c53-4482-bafa-dd8ec8e85b41", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T00:36:39.000Z" - }, - "end": { - "$date": "2021-03-14T00:38:34.000Z" - }, - "events": [ - { - "uuid": "e21b5339-1499-418e-8213-96b8b60a5b9c", - "start": { - "$date": "2021-03-14T00:36:39.000Z" - }, - "end": { - "$date": "2021-03-14T00:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "9725da38-4283-48f7-97cd-b88d60e64c69", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T00:39:04.000Z" - }, - "end": { - "$date": "2021-03-14T00:40:40.000Z" - }, - "events": [ - { - "uuid": "c3258b4c-0af7-4d5d-a5fb-25ef7ddf0019", - "start": { - "$date": "2021-03-14T00:39:04.000Z" - }, - "end": { - "$date": "2021-03-14T00:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "05f3847c-3055-4f3d-9c4a-6891df8615fe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T00:41:10.000Z" - }, - "end": { - "$date": "2021-03-14T01:04:26.000Z" - }, - "events": [ - { - "uuid": "dc997a56-4d9e-4322-878f-3e33874142b1", - "start": { - "$date": "2021-03-14T00:41:10.000Z" - }, - "end": { - "$date": "2021-03-14T01:04:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6eab5c89-725d-457b-b0c1-6765b44a8d6d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-14T00:51:28.000Z" - }, - "end": { - "$date": "2021-03-14T01:31:34.000Z" - }, - "events": [ - { - "uuid": "8ce1f5e1-c530-4f36-b257-12aec2a1221d", - "start": { - "$date": "2021-03-14T00:51:28.000Z" - }, - "end": { - "$date": "2021-03-14T01:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7cfdfe74-dc92-4598-b5db-167bfad4f63f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T01:05:36.000Z" - }, - "end": { - "$date": "2021-03-14T02:26:34.000Z" - }, - "events": [ - { - "uuid": "69e713a8-7f76-4b2d-945d-4aa9ccb17ef0", - "start": { - "$date": "2021-03-14T01:05:36.000Z" - }, - "end": { - "$date": "2021-03-14T02:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaf56770-cb58-4d2e-8ada-d75d077383ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-14T01:48:01.000Z" - }, - "end": { - "$date": "2021-03-14T02:19:52.000Z" - }, - "events": [ - { - "uuid": "9fd9da8d-b497-401b-a65a-29c8fefa6b3a", - "start": { - "$date": "2021-03-14T01:48:01.000Z" - }, - "end": { - "$date": "2021-03-14T02:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14b8ea8c-59ef-4923-97d9-a0e9b4c29bae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-14T01:50:48.000Z" - }, - "end": { - "$date": "2021-03-14T02:20:01.000Z" - }, - "events": [ - { - "uuid": "42d55f70-26ab-47a7-b793-ad0574d7d622", - "start": { - "$date": "2021-03-14T01:50:48.000Z" - }, - "end": { - "$date": "2021-03-14T02:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1073e52-d505-4c3b-b4f2-dd6c5fc7e0ea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T02:22:15.000Z" - }, - "end": { - "$date": "2021-03-14T02:54:44.000Z" - }, - "events": [ - { - "uuid": "da2df5f1-bb3e-4e78-afc3-cdbd4e9716ee", - "start": { - "$date": "2021-03-14T02:22:15.000Z" - }, - "end": { - "$date": "2021-03-14T02:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19b7cc55-d168-4dbd-98f7-0ec22629f87f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T02:59:05.000Z" - }, - "end": { - "$date": "2021-03-14T02:59:12.000Z" - }, - "events": [ - { - "uuid": "635981fc-7c3d-4219-b69e-ae1fa51ecc5f", - "start": { - "$date": "2021-03-14T02:59:05.000Z" - }, - "end": { - "$date": "2021-03-14T02:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31f76325-a9d8-4aed-a986-64dc7d9b45db", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T03:01:41.000Z" - }, - "end": { - "$date": "2021-03-14T03:21:45.000Z" - }, - "events": [ - { - "uuid": "77380503-5988-40f8-bf2d-a387cca70c7f", - "start": { - "$date": "2021-03-14T03:01:41.000Z" - }, - "end": { - "$date": "2021-03-14T03:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c36cdcbb-85a8-495d-9731-8b78ee8cf01f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-14T03:24:50.000Z" - }, - "end": { - "$date": "2021-03-14T04:00:02.000Z" - }, - "events": [ - { - "uuid": "654bec9b-937a-47a9-85d1-4e7be585e89d", - "start": { - "$date": "2021-03-14T03:24:50.000Z" - }, - "end": { - "$date": "2021-03-14T04:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8947392b-0a7c-41cf-9a8a-39abe86b4942", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-14T03:26:16.000Z" - }, - "end": { - "$date": "2021-03-14T04:00:01.000Z" - }, - "events": [ - { - "uuid": "8ef71275-8e4e-47a7-9910-3668651e8be5", - "start": { - "$date": "2021-03-14T03:26:16.000Z" - }, - "end": { - "$date": "2021-03-14T04:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88458d37-bf72-40c4-882e-65a0ddbf60f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-14T03:24:48.000Z" - }, - "end": { - "$date": "2021-03-14T03:59:57.000Z" - }, - "events": [ - { - "uuid": "7d931e45-33bc-4697-a21d-1cf6c4735b52", - "start": { - "$date": "2021-03-14T03:24:48.000Z" - }, - "end": { - "$date": "2021-03-14T03:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "02d6fa72-a837-4826-a7cd-8219244d87ba", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-14T03:38:09.000Z" - }, - "end": { - "$date": "2021-03-14T07:10:50.000Z" - }, - "events": [ - { - "uuid": "c9b51315-efaa-457e-b091-e107b2b8d0fa", - "start": { - "$date": "2021-03-14T03:38:09.000Z" - }, - "end": { - "$date": "2021-03-14T07:10:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "bb5c5c08-1213-41cc-acb2-a2a2805c9a9f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-14T03:56:51.000Z" - }, - "end": { - "$date": "2021-03-14T05:05:58.000Z" - }, - "events": [ - { - "uuid": "f30f5d6a-aff6-43fa-b79e-53e57ab11bff", - "start": { - "$date": "2021-03-14T03:56:51.000Z" - }, - "end": { - "$date": "2021-03-14T05:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1842bb58-5c3e-401b-8456-a365a47aedc8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-14T04:07:14.000Z" - }, - "end": { - "$date": "2021-03-14T05:55:53.000Z" - }, - "events": [ - { - "uuid": "fcc4fd29-ac01-4b58-93d0-035fd11b90ab", - "start": { - "$date": "2021-03-14T04:07:14.000Z" - }, - "end": { - "$date": "2021-03-14T05:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e31e2369-25fa-43f6-8f6f-5e9aa12057ca", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-14T04:57:43.000Z" - }, - "end": { - "$date": "2021-03-14T05:25:37.000Z" - }, - "events": [ - { - "uuid": "c0e583fa-a11a-44a2-b9b2-380bef48cb57", - "start": { - "$date": "2021-03-14T04:57:43.000Z" - }, - "end": { - "$date": "2021-03-14T05:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c636fa9d-ae13-403e-8a24-55041d356695", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T04:46:41.000Z" - }, - "end": { - "$date": "2021-03-14T07:29:26.000Z" - }, - "events": [ - { - "uuid": "acd75975-26e0-4c2e-be47-1c77145e5903", - "start": { - "$date": "2021-03-14T04:46:41.000Z" - }, - "end": { - "$date": "2021-03-14T07:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c084cb3b-adfb-483d-9322-645bd03c09eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-14T04:56:56.000Z" - }, - "end": { - "$date": "2021-03-14T05:25:36.000Z" - }, - "events": [ - { - "uuid": "b3f3f4a0-2b08-42ad-b93b-236fff2540bf", - "start": { - "$date": "2021-03-14T04:56:56.000Z" - }, - "end": { - "$date": "2021-03-14T05:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "46cd1392-d02e-4546-b708-ec70acd6347b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-14T05:07:18.000Z" - }, - "end": { - "$date": "2021-03-14T06:05:20.000Z" - }, - "events": [ - { - "uuid": "d95b39b4-502d-4343-97f4-fc86d3955087", - "start": { - "$date": "2021-03-14T05:07:18.000Z" - }, - "end": { - "$date": "2021-03-14T06:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2c989a47-b7a9-4869-80b7-dc1477c48b37", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T05:08:05.000Z" - }, - "end": { - "$date": "2021-03-14T06:43:00.000Z" - }, - "events": [ - { - "uuid": "f42086eb-c37b-4610-930b-a844bac2990b", - "start": { - "$date": "2021-03-14T05:08:05.000Z" - }, - "end": { - "$date": "2021-03-14T06:43:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4e7e5245-be4e-4b58-a66e-435b1b0d4fa1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-14T05:13:51.000Z" - }, - "end": { - "$date": "2021-03-14T06:44:01.000Z" - }, - "events": [ - { - "uuid": "77f57df7-2c55-4964-aa06-9d943d55a8d4", - "start": { - "$date": "2021-03-14T05:13:51.000Z" - }, - "end": { - "$date": "2021-03-14T06:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fbcac28c-5b34-422a-93cb-83e6ddf3e954", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-14T06:52:49.000Z" - }, - "end": { - "$date": "2021-03-14T07:31:13.000Z" - }, - "events": [ - { - "uuid": "0fb2209c-ff3f-4a44-aafb-d4c1c7bba205", - "start": { - "$date": "2021-03-14T06:52:49.000Z" - }, - "end": { - "$date": "2021-03-14T07:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14525a48-f3a4-4b68-9397-63f0c8d28e92", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-14T05:45:53.000Z" - }, - "end": { - "$date": "2021-03-14T05:45:54.000Z" - }, - "events": [ - { - "uuid": "e12d844c-bec6-4939-8106-6a427202c980", - "start": { - "$date": "2021-03-14T05:45:53.000Z" - }, - "end": { - "$date": "2021-03-14T05:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a9bd595-6869-4c11-8f59-7544aefe50d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-14T05:44:24.000Z" - }, - "end": { - "$date": "2021-03-14T05:45:58.000Z" - }, - "events": [ - { - "uuid": "77f3c654-755e-4137-88b3-57719b17b725", - "start": { - "$date": "2021-03-14T05:44:24.000Z" - }, - "end": { - "$date": "2021-03-14T05:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "85b63c3c-ef14-488c-bd3e-95600ce67abc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-14T05:46:23.000Z" - }, - "end": { - "$date": "2021-03-14T07:12:49.000Z" - }, - "events": [ - { - "uuid": "26ed1f4c-17a3-4690-be79-fee4c4b0a8bb", - "start": { - "$date": "2021-03-14T05:46:23.000Z" - }, - "end": { - "$date": "2021-03-14T07:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e82a739f-a19b-4272-9a83-382c537f7670", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-14T05:46:25.000Z" - }, - "end": { - "$date": "2021-03-14T06:43:27.000Z" - }, - "events": [ - { - "uuid": "a0f10686-44d6-4873-aaae-eff96bda7520", - "start": { - "$date": "2021-03-14T05:46:25.000Z" - }, - "end": { - "$date": "2021-03-14T06:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a7409352-2097-48db-abe3-6a51474d3719", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-14T06:06:50.000Z" - }, - "end": { - "$date": "2021-03-14T06:23:41.000Z" - }, - "events": [ - { - "uuid": "a598d27b-6a60-4e01-b121-4dc8ee95ea31", - "start": { - "$date": "2021-03-14T06:06:50.000Z" - }, - "end": { - "$date": "2021-03-14T06:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "943e930a-3c83-4438-a240-56cd272a7b4d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-14T06:24:05.000Z" - }, - "end": { - "$date": "2021-03-14T10:20:24.000Z" - }, - "events": [ - { - "uuid": "1e7361b2-9ce9-4e38-91ec-8aa08784a54f", - "start": { - "$date": "2021-03-14T06:24:05.000Z" - }, - "end": { - "$date": "2021-03-14T10:20:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b97f2422-fb2d-44a8-9fcf-5e1de905775c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-14T06:45:46.000Z" - }, - "end": { - "$date": "2021-03-14T07:31:23.000Z" - }, - "events": [ - { - "uuid": "a207338c-4231-4215-9eda-f4271d357efa", - "start": { - "$date": "2021-03-14T06:45:46.000Z" - }, - "end": { - "$date": "2021-03-14T07:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f628e248-f555-4211-bae9-44ac808c29f8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-14T06:51:51.000Z" - }, - "end": { - "$date": "2021-03-14T07:31:17.000Z" - }, - "events": [ - { - "uuid": "90c53c68-400c-492b-b56c-64286ee46ee0", - "start": { - "$date": "2021-03-14T06:51:51.000Z" - }, - "end": { - "$date": "2021-03-14T07:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "15df36d9-60fe-42a3-b06b-d1c5bd30fe86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T07:41:28.000Z" - }, - "end": { - "$date": "2021-03-14T07:57:48.000Z" - }, - "events": [ - { - "uuid": "cbcbfc52-1d2c-4826-854b-0c2a8e297fbf", - "start": { - "$date": "2021-03-14T07:41:28.000Z" - }, - "end": { - "$date": "2021-03-14T07:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "968e2dfb-f045-46cf-bca3-9bfafcacb5f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T07:58:03.000Z" - }, - "end": { - "$date": "2021-03-14T08:22:54.000Z" - }, - "events": [ - { - "uuid": "44b7ea82-461b-42bd-9d1c-bc1e3b2253c5", - "start": { - "$date": "2021-03-14T07:58:03.000Z" - }, - "end": { - "$date": "2021-03-14T08:22:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af5ea7a1-dba8-44f5-96c4-8ccfc6280b58", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-14T08:17:21.000Z" - }, - "end": { - "$date": "2021-03-14T08:28:16.000Z" - }, - "events": [ - { - "uuid": "16775832-f962-41f9-93b7-099502887150", - "start": { - "$date": "2021-03-14T08:17:21.000Z" - }, - "end": { - "$date": "2021-03-14T08:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "970a3ba2-cd8b-48b9-8ec6-d3ad66a8a288", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-14T08:19:18.000Z" - }, - "end": { - "$date": "2021-03-14T08:45:18.000Z" - }, - "events": [ - { - "uuid": "6e780796-c33d-4c6d-90cf-f7eb16937678", - "start": { - "$date": "2021-03-14T08:19:18.000Z" - }, - "end": { - "$date": "2021-03-14T08:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f992cc59-c048-4a84-93d3-3f81bebc0038", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-14T08:54:00.000Z" - }, - "end": { - "$date": "2021-03-14T09:21:28.000Z" - }, - "events": [ - { - "uuid": "f2a0c222-2a99-448b-a50a-578c33e7de58", - "start": { - "$date": "2021-03-14T08:54:00.000Z" - }, - "end": { - "$date": "2021-03-14T09:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4ed0511f-9c64-493d-beb3-863bd02efafb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T16:08:48.000Z" - }, - "end": { - "$date": "2021-03-14T16:45:23.000Z" - }, - "events": [ - { - "uuid": "cb2a6f2e-143b-4eae-842d-8f41e28ab91a", - "start": { - "$date": "2021-03-14T16:08:48.000Z" - }, - "end": { - "$date": "2021-03-14T16:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "047e3236-5bb2-41fa-9a63-6aefa7c614f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T16:46:23.000Z" - }, - "end": { - "$date": "2021-03-14T16:47:58.000Z" - }, - "events": [ - { - "uuid": "6467282f-abd0-4485-be86-a01c4fd0e4a3", - "start": { - "$date": "2021-03-14T16:46:23.000Z" - }, - "end": { - "$date": "2021-03-14T16:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4902c062-ee7a-4bae-8635-5274ab98d56f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-14T17:02:36.000Z" - }, - "end": { - "$date": "2021-03-14T17:10:47.000Z" - }, - "events": [ - { - "uuid": "0df02991-d846-4750-a55c-b62c13dc3816", - "start": { - "$date": "2021-03-14T17:02:36.000Z" - }, - "end": { - "$date": "2021-03-14T17:10:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b18dd8c2-2dcd-44a3-82df-9b8348f6d6c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T18:07:22.000Z" - }, - "end": { - "$date": "2021-03-14T18:07:26.000Z" - }, - "events": [ - { - "uuid": "404ba221-3719-41f5-ba08-43090f728274", - "start": { - "$date": "2021-03-14T18:07:22.000Z" - }, - "end": { - "$date": "2021-03-14T18:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "739c3678-7033-4058-b6b2-3773ed6b2fb4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-14T17:11:01.000Z" - }, - "end": { - "$date": "2021-03-14T19:43:52.000Z" - }, - "events": [ - { - "uuid": "20c86d55-1332-41ad-9516-1bdc5bd89b75", - "start": { - "$date": "2021-03-14T17:11:01.000Z" - }, - "end": { - "$date": "2021-03-14T18:51:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1cd0ec5-a724-4ce0-8f47-8fca80245aeb", - "start": { - "$date": "2021-03-14T18:51:01.000Z" - }, - "end": { - "$date": "2021-03-14T18:55:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64c09305-074b-4a6a-b9f3-09917ffa7cc7", - "start": { - "$date": "2021-03-14T18:55:01.000Z" - }, - "end": { - "$date": "2021-03-14T19:20:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eab02305-466e-40b4-ae9f-8b8c60594b58", - "start": { - "$date": "2021-03-14T19:20:01.000Z" - }, - "end": { - "$date": "2021-03-14T19:42:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "131b4486-63c4-43c0-aaf3-d23594ea8f0c", - "start": { - "$date": "2021-03-14T19:42:01.000Z" - }, - "end": { - "$date": "2021-03-14T19:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "15935ca0-aaa5-4f11-a1fb-5ca2fc07c1a6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T18:07:32.000Z" - }, - "end": { - "$date": "2021-03-14T19:56:54.000Z" - }, - "events": [ - { - "uuid": "6be3d3c6-d088-4cf2-ab75-0c429c34d12e", - "start": { - "$date": "2021-03-14T18:07:32.000Z" - }, - "end": { - "$date": "2021-03-14T18:49:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4330c3bf-7342-48fa-b199-47fb7366da08", - "start": { - "$date": "2021-03-14T18:49:32.000Z" - }, - "end": { - "$date": "2021-03-14T18:53:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e26699a1-cf19-490c-9ce4-1e55cca59212", - "start": { - "$date": "2021-03-14T18:53:32.000Z" - }, - "end": { - "$date": "2021-03-14T19:04:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6bfef61-5631-4783-87d6-29a06a74a02e", - "start": { - "$date": "2021-03-14T19:04:32.000Z" - }, - "end": { - "$date": "2021-03-14T19:33:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "220938cd-3b33-4458-861a-78660018dfe1", - "start": { - "$date": "2021-03-14T19:33:32.000Z" - }, - "end": { - "$date": "2021-03-14T19:44:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d77dd46a-fb19-4282-945f-93673125fa86", - "start": { - "$date": "2021-03-14T19:44:32.000Z" - }, - "end": { - "$date": "2021-03-14T19:56:54.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8b879bd2-75ed-4509-b027-7844d11b7e14", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-14T19:19:48.000Z" - }, - "end": { - "$date": "2021-03-14T20:52:13.000Z" - }, - "events": [ - { - "uuid": "8182eea6-8620-4220-a8af-d35427c44a5a", - "start": { - "$date": "2021-03-14T19:19:48.000Z" - }, - "end": { - "$date": "2021-03-14T20:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6a2a3ab2-384c-4de8-a442-dba23487af9d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-14T19:28:17.000Z" - }, - "end": { - "$date": "2021-03-14T20:50:23.000Z" - }, - "events": [ - { - "uuid": "84147eaa-cba7-44b5-82bd-5d8743cd5a0f", - "start": { - "$date": "2021-03-14T19:28:17.000Z" - }, - "end": { - "$date": "2021-03-14T20:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a685e45-4931-4f27-92e3-f8b140af3403", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-14T19:47:18.000Z" - }, - "end": { - "$date": "2021-03-14T20:02:04.000Z" - }, - "events": [ - { - "uuid": "53e9b26f-163e-4baf-aa16-20ce7140ef53", - "start": { - "$date": "2021-03-14T19:47:18.000Z" - }, - "end": { - "$date": "2021-03-14T20:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d5970e92-651f-405b-ad44-f38db3b8a0d3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-14T19:48:12.000Z" - }, - "end": { - "$date": "2021-03-15T03:01:18.000Z" - }, - "events": [ - { - "uuid": "f7d485f4-0eb5-4f2d-8f97-e0ca31555c8f", - "start": { - "$date": "2021-03-14T19:48:12.000Z" - }, - "end": { - "$date": "2021-03-14T20:11:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fceb9be5-325a-4bfd-9f38-d19597a85e9f", - "start": { - "$date": "2021-03-14T20:11:12.000Z" - }, - "end": { - "$date": "2021-03-14T20:13:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fbd43c3e-48d7-4f1e-9228-fa355c1ded8c", - "start": { - "$date": "2021-03-14T20:13:12.000Z" - }, - "end": { - "$date": "2021-03-14T21:01:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98bf5747-8ed8-48da-9022-c8f578615a5b", - "start": { - "$date": "2021-03-14T21:01:12.000Z" - }, - "end": { - "$date": "2021-03-15T00:38:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2aaa21d-6af2-442f-9c3f-a8ce1efb4d95", - "start": { - "$date": "2021-03-15T00:38:12.000Z" - }, - "end": { - "$date": "2021-03-15T00:48:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "28cd2036-546a-4ea6-af48-257f3dbb05b6", - "start": { - "$date": "2021-03-15T00:48:12.000Z" - }, - "end": { - "$date": "2021-03-15T00:53:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11e6760c-8916-4c4c-89f4-b1beeaa2ac80", - "start": { - "$date": "2021-03-15T00:53:12.000Z" - }, - "end": { - "$date": "2021-03-15T01:03:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "baf5c7a9-fdba-44b4-af78-39f2370ae560", - "start": { - "$date": "2021-03-15T01:03:12.000Z" - }, - "end": { - "$date": "2021-03-15T02:08:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d8b110b-8a09-4671-9089-5326cb24158c", - "start": { - "$date": "2021-03-15T02:08:12.000Z" - }, - "end": { - "$date": "2021-03-15T02:11:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72a4777c-d7af-4950-82a1-cc6e1b10c34f", - "start": { - "$date": "2021-03-15T02:11:12.000Z" - }, - "end": { - "$date": "2021-03-15T03:01:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b7271d87-78ea-4ef7-a525-4dd433142458", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T19:57:19.000Z" - }, - "end": { - "$date": "2021-03-14T20:33:10.000Z" - }, - "events": [ - { - "uuid": "6a22232e-c835-4781-a472-c19dab41d15f", - "start": { - "$date": "2021-03-14T19:57:19.000Z" - }, - "end": { - "$date": "2021-03-14T20:33:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cd72fe20-40e1-41af-9e80-6df70bcbaa27", - "uuid": "6e82137f-0f0e-46ff-b8b5-e59a94bd0a19", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T20:38:11.000Z" - }, - "end": { - "$date": "2021-03-14T22:01:44.000Z" - }, - "events": [ - { - "uuid": "064b2e6b-5a95-4a36-a004-9edcb459ce72", - "start": { - "$date": "2021-03-14T20:38:11.000Z" - }, - "end": { - "$date": "2021-03-14T22:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "df548228-eebf-4aa7-b16d-b12cde98d30d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-14T20:52:54.000Z" - }, - "end": { - "$date": "2021-03-14T20:57:41.000Z" - }, - "events": [ - { - "uuid": "eeec5351-f62f-4149-ae2e-7e0eb1c25893", - "start": { - "$date": "2021-03-14T20:52:54.000Z" - }, - "end": { - "$date": "2021-03-14T20:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "46b356f1-26be-423e-b062-ab2ae8542ce8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T22:17:52.000Z" - }, - "end": { - "$date": "2021-03-14T22:19:48.000Z" - }, - "events": [ - { - "uuid": "6454baf3-894b-46fb-859c-1010f05629d3", - "start": { - "$date": "2021-03-14T22:17:52.000Z" - }, - "end": { - "$date": "2021-03-14T22:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "83030322-7107-4b9e-b6ed-6b8f960568b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-14T22:19:53.000Z" - }, - "end": { - "$date": "2021-03-14T23:57:10.000Z" - }, - "events": [ - { - "uuid": "8184ee9d-1f00-4f93-a7dc-59b7595b96af", - "start": { - "$date": "2021-03-14T22:19:53.000Z" - }, - "end": { - "$date": "2021-03-14T23:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "acc1778c-0e4f-4c78-ab09-748768c9a76f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-14T22:20:35.000Z" - }, - "end": { - "$date": "2021-03-14T23:57:19.000Z" - }, - "events": [ - { - "uuid": "92bf3ed3-9597-407a-8874-07b8e0164a01", - "start": { - "$date": "2021-03-14T22:20:35.000Z" - }, - "end": { - "$date": "2021-03-14T23:57:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "817b410e-32e3-429c-8185-ca369bb0f29d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T22:23:51.000Z" - }, - "end": { - "$date": "2021-03-14T22:36:12.000Z" - }, - "events": [ - { - "uuid": "31dfb732-e1e4-437e-826b-3de96ba50d51", - "start": { - "$date": "2021-03-14T22:23:51.000Z" - }, - "end": { - "$date": "2021-03-14T22:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c9250771-f2ed-4265-a81d-34f065d4af0a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-14T22:24:57.000Z" - }, - "end": { - "$date": "2021-03-14T23:57:18.000Z" - }, - "events": [ - { - "uuid": "26817d51-87be-4c1c-9da1-f052a3854746", - "start": { - "$date": "2021-03-14T22:24:57.000Z" - }, - "end": { - "$date": "2021-03-14T23:57:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0051b00c-2ee3-40c3-9344-2ef835ed0126", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-14T22:37:28.000Z" - }, - "end": { - "$date": "2021-03-15T00:05:59.000Z" - }, - "events": [ - { - "uuid": "b26c746b-fd71-46f3-b73f-f9e30c51fcc1", - "start": { - "$date": "2021-03-14T22:37:28.000Z" - }, - "end": { - "$date": "2021-03-15T00:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "ae61065b-6976-438b-b45f-7002bc4ecc59", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-14T22:55:32.000Z" - }, - "end": { - "$date": "2021-03-15T00:09:12.000Z" - }, - "events": [ - { - "uuid": "1de108eb-3315-4765-a091-2a9a861453c7", - "start": { - "$date": "2021-03-14T22:55:32.000Z" - }, - "end": { - "$date": "2021-03-15T00:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "49323bec-b649-4401-83ab-a3201e7b9c53", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-14T23:35:17.000Z" - }, - "end": { - "$date": "2021-03-14T23:37:37.000Z" - }, - "events": [ - { - "uuid": "d826bab9-a173-49e3-a633-2869e8ed31d5", - "start": { - "$date": "2021-03-14T23:35:17.000Z" - }, - "end": { - "$date": "2021-03-14T23:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "ae2e594f-03d8-4852-a10d-7b0754c51712", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-15T00:04:10.000Z" - }, - "end": { - "$date": "2021-03-15T01:49:28.000Z" - }, - "events": [ - { - "uuid": "01c52e6d-2d72-4791-afdf-77d1135eaa1b", - "start": { - "$date": "2021-03-15T00:04:10.000Z" - }, - "end": { - "$date": "2021-03-15T01:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5e146b80-77ce-4c63-9cf4-6052904bd82f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-15T00:06:15.000Z" - }, - "end": { - "$date": "2021-03-15T00:32:05.000Z" - }, - "events": [ - { - "uuid": "3cbfdab4-7cb6-4476-95a6-7bd68767f781", - "start": { - "$date": "2021-03-15T00:06:15.000Z" - }, - "end": { - "$date": "2021-03-15T00:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2989e2ec-3b83-4591-b623-f71f03ad97cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-15T00:42:42.000Z" - }, - "end": { - "$date": "2021-03-15T01:19:28.000Z" - }, - "events": [ - { - "uuid": "320f1c68-60ad-402a-950d-b81e7486f39e", - "start": { - "$date": "2021-03-15T00:42:42.000Z" - }, - "end": { - "$date": "2021-03-15T01:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6e758075-352a-4b84-9ee6-1b80f2c19719", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-15T00:44:31.000Z" - }, - "end": { - "$date": "2021-03-15T01:19:37.000Z" - }, - "events": [ - { - "uuid": "6da6bb08-0b92-4378-a06e-31330cbdde10", - "start": { - "$date": "2021-03-15T00:44:31.000Z" - }, - "end": { - "$date": "2021-03-15T01:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85d81492-70c5-4e04-af25-311cc7dd869c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-15T01:01:20.000Z" - }, - "end": { - "$date": "2021-03-15T01:23:20.000Z" - }, - "events": [ - { - "uuid": "037f6c16-a8a6-43cf-93e7-8f45a08bcfcc", - "start": { - "$date": "2021-03-15T01:01:20.000Z" - }, - "end": { - "$date": "2021-03-15T01:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "18c0fadc-8477-481c-9ea3-30789d2323e1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-15T01:03:34.000Z" - }, - "end": { - "$date": "2021-03-15T07:34:28.000Z" - }, - "events": [ - { - "uuid": "e84eb3af-fdc2-4f63-bdb2-ee52d85c8fec", - "start": { - "$date": "2021-03-15T01:03:34.000Z" - }, - "end": { - "$date": "2021-03-15T07:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "556658c0-b096-4ca3-b887-72eaff506c0f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-15T01:05:00.000Z" - }, - "end": { - "$date": "2021-03-15T03:38:15.000Z" - }, - "events": [ - { - "uuid": "ea3185ea-aa4d-405c-be8d-45d8fadc64ee", - "start": { - "$date": "2021-03-15T01:05:00.000Z" - }, - "end": { - "$date": "2021-03-15T03:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7b6ce0c6-6458-46b0-8a03-3dea430158ea", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-15T01:15:39.000Z" - }, - "end": { - "$date": "2021-03-15T03:15:00.000Z" - }, - "events": [ - { - "uuid": "4508d4c9-e363-40e9-892c-944ef299ed9f", - "start": { - "$date": "2021-03-15T01:15:39.000Z" - }, - "end": { - "$date": "2021-03-15T03:15:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b2aa7036-674b-4dce-8d29-4ab037476fda", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-15T01:19:39.000Z" - }, - "end": { - "$date": "2021-03-15T01:40:39.000Z" - }, - "events": [ - { - "uuid": "11f31ca9-6e9a-49c9-8b23-ea6554276b16", - "start": { - "$date": "2021-03-15T01:19:39.000Z" - }, - "end": { - "$date": "2021-03-15T01:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2b02a04b-6b50-49c1-b36b-31c3238b70fa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-15T01:19:43.000Z" - }, - "end": { - "$date": "2021-03-15T01:40:53.000Z" - }, - "events": [ - { - "uuid": "d4c3298c-3868-4079-a65e-f85290235442", - "start": { - "$date": "2021-03-15T01:19:43.000Z" - }, - "end": { - "$date": "2021-03-15T01:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "99bb93e0-c3e2-423a-983c-f9dc504972fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-15T01:24:55.000Z" - }, - "end": { - "$date": "2021-03-15T03:14:32.000Z" - }, - "events": [ - { - "uuid": "b3fb1027-7b61-4c11-9284-6e4d64fc4400", - "start": { - "$date": "2021-03-15T01:24:55.000Z" - }, - "end": { - "$date": "2021-03-15T03:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "79941ca5-8852-41c1-97fb-53ec60bbc3a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-15T01:49:26.000Z" - }, - "end": { - "$date": "2021-03-15T04:49:18.000Z" - }, - "events": [ - { - "uuid": "ed9e357d-1e91-4d73-bfdc-d265d7e5a107", - "start": { - "$date": "2021-03-15T01:49:26.000Z" - }, - "end": { - "$date": "2021-03-15T02:34:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e7c27f2-81fd-4255-b151-6b2c24234de6", - "start": { - "$date": "2021-03-15T02:34:26.000Z" - }, - "end": { - "$date": "2021-03-15T02:48:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2598986d-1a53-4004-81c2-488d9daea751", - "start": { - "$date": "2021-03-15T02:48:26.000Z" - }, - "end": { - "$date": "2021-03-15T03:00:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c1f34ee-6d55-430b-97fd-2eaec0cee599", - "start": { - "$date": "2021-03-15T03:00:26.000Z" - }, - "end": { - "$date": "2021-03-15T03:28:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6376ab6-0714-4113-8342-b955fddcdb0f", - "start": { - "$date": "2021-03-15T03:28:26.000Z" - }, - "end": { - "$date": "2021-03-15T03:38:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ff2c1fe-7a9c-447b-8f21-9e93243e8dcd", - "start": { - "$date": "2021-03-15T03:38:26.000Z" - }, - "end": { - "$date": "2021-03-15T04:46:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b0b8eac-4011-4efb-bf3a-df41583144c8", - "start": { - "$date": "2021-03-15T04:46:26.000Z" - }, - "end": { - "$date": "2021-03-15T04:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "49d5eb77-34c4-412e-aca3-432565194e59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-15T01:54:43.000Z" - }, - "end": { - "$date": "2021-03-15T02:05:22.000Z" - }, - "events": [ - { - "uuid": "9056b5f0-dae6-4d98-9ca8-da5bdd880763", - "start": { - "$date": "2021-03-15T01:54:43.000Z" - }, - "end": { - "$date": "2021-03-15T02:05:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "13f8eb17-67f8-4e59-b51c-85806ce758b8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-15T02:22:10.000Z" - }, - "end": { - "$date": "2021-03-15T02:36:36.000Z" - }, - "events": [ - { - "uuid": "c78ef57d-d2a6-4192-9f6e-cbc084f13ec5", - "start": { - "$date": "2021-03-15T02:22:10.000Z" - }, - "end": { - "$date": "2021-03-15T02:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "fcf675f0-51fc-4537-aebd-16afc8e05b42", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-15T02:37:01.000Z" - }, - "end": { - "$date": "2021-03-15T04:48:10.000Z" - }, - "events": [ - { - "uuid": "bf696bfb-6a12-42f0-8026-034441175fec", - "start": { - "$date": "2021-03-15T02:37:01.000Z" - }, - "end": { - "$date": "2021-03-15T04:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dfc97969-4693-4338-9cd7-713afdaf26b9", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-15T02:59:33.000Z" - }, - "end": { - "$date": "2021-03-15T04:32:41.000Z" - }, - "events": [ - { - "uuid": "ce60c9b2-3380-4bd1-a8d8-eda842ced5f7", - "start": { - "$date": "2021-03-15T02:59:33.000Z" - }, - "end": { - "$date": "2021-03-15T04:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c312fae6-f9c9-4db2-a67e-c71adfffc7ee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-15T03:00:54.000Z" - }, - "end": { - "$date": "2021-03-15T04:31:45.000Z" - }, - "events": [ - { - "uuid": "7f33f803-8b89-406c-8246-8eb64f946293", - "start": { - "$date": "2021-03-15T03:00:54.000Z" - }, - "end": { - "$date": "2021-03-15T04:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d941cc01-aaca-4173-9ed2-0661287dc44f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-15T03:07:35.000Z" - }, - "end": { - "$date": "2021-03-15T03:16:36.000Z" - }, - "events": [ - { - "uuid": "3f48fcfb-8af8-4b74-a633-2ea1b784203e", - "start": { - "$date": "2021-03-15T03:07:35.000Z" - }, - "end": { - "$date": "2021-03-15T03:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a91e1455-9da7-4d6b-ad42-8af3f50d377d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-15T03:17:07.000Z" - }, - "end": { - "$date": "2021-03-15T03:45:58.000Z" - }, - "events": [ - { - "uuid": "839c8058-9176-4334-9120-c4a8d4be50f7", - "start": { - "$date": "2021-03-15T03:17:07.000Z" - }, - "end": { - "$date": "2021-03-15T03:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d78605cb-44be-45ad-95c0-37778a48ddfc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-15T03:17:31.000Z" - }, - "end": { - "$date": "2021-03-15T04:32:08.000Z" - }, - "events": [ - { - "uuid": "f6e247b5-8eec-43c8-a1a9-5b852ddab0fa", - "start": { - "$date": "2021-03-15T03:17:31.000Z" - }, - "end": { - "$date": "2021-03-15T04:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4eb69ebc-7466-4d5f-b7b9-5e5cb7bb9338", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-15T05:37:46.000Z" - }, - "end": { - "$date": "2021-03-15T05:38:05.000Z" - }, - "events": [ - { - "uuid": "79ee2838-a180-4a48-9ff9-0ddffce75d6d", - "start": { - "$date": "2021-03-15T05:37:46.000Z" - }, - "end": { - "$date": "2021-03-15T05:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f461e0e-455c-422b-9714-d8543db91f09", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-15T04:00:24.000Z" - }, - "end": { - "$date": "2021-03-15T04:28:50.000Z" - }, - "events": [ - { - "uuid": "5edf4ad2-5e58-4f05-b5f3-ca575229b57e", - "start": { - "$date": "2021-03-15T04:00:24.000Z" - }, - "end": { - "$date": "2021-03-15T04:28:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a01e2f2-7e2f-4c67-bfa3-67e962322b14", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-15T04:00:43.000Z" - }, - "end": { - "$date": "2021-03-15T04:28:57.000Z" - }, - "events": [ - { - "uuid": "65b005a1-b7fe-45bd-8a3c-388976f84725", - "start": { - "$date": "2021-03-15T04:00:43.000Z" - }, - "end": { - "$date": "2021-03-15T04:28:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dc76b1a-60e0-47ba-9461-7824b0950b89", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-15T04:31:20.000Z" - }, - "end": { - "$date": "2021-03-15T04:56:46.000Z" - }, - "events": [ - { - "uuid": "2f9024d0-7ea9-40e9-9795-6d01e8a717a1", - "start": { - "$date": "2021-03-15T04:31:20.000Z" - }, - "end": { - "$date": "2021-03-15T04:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b837fe38-9212-47f4-a6b2-7618aa7c7979", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-15T04:31:49.000Z" - }, - "end": { - "$date": "2021-03-15T04:56:48.000Z" - }, - "events": [ - { - "uuid": "5b7f4a86-8b18-43e4-a1d4-8550ce07b533", - "start": { - "$date": "2021-03-15T04:31:49.000Z" - }, - "end": { - "$date": "2021-03-15T04:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f67368a-0c82-44ba-8458-e75aa09b9c4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-15T04:31:26.000Z" - }, - "end": { - "$date": "2021-03-15T04:56:49.000Z" - }, - "events": [ - { - "uuid": "c2abf818-c5a4-46e3-a9c0-34e8aad1250d", - "start": { - "$date": "2021-03-15T04:31:26.000Z" - }, - "end": { - "$date": "2021-03-15T04:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4d19877d-53e8-4bb0-9ba3-62d5cec386c7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-15T04:55:16.000Z" - }, - "end": { - "$date": "2021-03-15T06:06:06.000Z" - }, - "events": [ - { - "uuid": "af207a3e-243b-4af5-9625-511eedd4ad65", - "start": { - "$date": "2021-03-15T04:55:16.000Z" - }, - "end": { - "$date": "2021-03-15T06:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad19f895-0171-421f-bfe2-6d91c862093f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-15T05:00:55.000Z" - }, - "end": { - "$date": "2021-03-15T05:37:51.000Z" - }, - "events": [ - { - "uuid": "c171034a-abcc-4120-8425-7d8b5952f880", - "start": { - "$date": "2021-03-15T05:00:55.000Z" - }, - "end": { - "$date": "2021-03-15T05:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34bc9826-a300-4879-a495-71cd54b625b3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-15T05:00:56.000Z" - }, - "end": { - "$date": "2021-03-15T05:37:42.000Z" - }, - "events": [ - { - "uuid": "3264b176-e929-4124-970a-93d6261ba033", - "start": { - "$date": "2021-03-15T05:00:56.000Z" - }, - "end": { - "$date": "2021-03-15T05:37:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99c080ad-5960-471c-b076-e8a45eb2ae5c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-15T05:00:57.000Z" - }, - "end": { - "$date": "2021-03-15T05:37:36.000Z" - }, - "events": [ - { - "uuid": "5de27bf3-008b-4b83-8252-1c29683f439f", - "start": { - "$date": "2021-03-15T05:00:57.000Z" - }, - "end": { - "$date": "2021-03-15T05:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d972be11-6b7a-49af-835a-912f08526dc7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-15T05:46:17.000Z" - }, - "end": { - "$date": "2021-03-15T06:10:42.000Z" - }, - "events": [ - { - "uuid": "760f0cb2-a520-477c-8ce5-bd6f27dde668", - "start": { - "$date": "2021-03-15T05:46:17.000Z" - }, - "end": { - "$date": "2021-03-15T06:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f420b38-9836-42e1-9af7-a32a7ba6c6dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-15T05:42:48.000Z" - }, - "end": { - "$date": "2021-03-15T06:10:51.000Z" - }, - "events": [ - { - "uuid": "c42d4260-4294-41c8-9dbf-7d4b84796421", - "start": { - "$date": "2021-03-15T05:42:48.000Z" - }, - "end": { - "$date": "2021-03-15T06:10:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6b7cb41c-328b-4ccb-91fd-2f3dde865eb2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-15T05:53:43.000Z" - }, - "end": { - "$date": "2021-03-15T06:29:11.000Z" - }, - "events": [ - { - "uuid": "00fff403-7982-479a-b828-0210aecbe627", - "start": { - "$date": "2021-03-15T05:53:43.000Z" - }, - "end": { - "$date": "2021-03-15T06:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "03810b74-d189-4f7b-98d9-08f2325111f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-15T06:06:59.000Z" - }, - "end": { - "$date": "2021-03-15T07:17:28.000Z" - }, - "events": [ - { - "uuid": "15b2e1f9-d640-4326-bbbd-31c01f4338ac", - "start": { - "$date": "2021-03-15T06:06:59.000Z" - }, - "end": { - "$date": "2021-03-15T07:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", - "uuid": "53222429-562c-4664-bfc5-1b0a7e086baf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-15T17:06:18.000Z" - }, - "end": { - "$date": "2021-03-15T17:09:40.000Z" - }, - "events": [ - { - "uuid": "b2d810e2-108a-4af5-8c1e-5c56c1c3c1df", - "start": { - "$date": "2021-03-15T17:06:18.000Z" - }, - "end": { - "$date": "2021-03-15T17:09:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d8e4df7b-2244-4a8c-8381-cda5c4bd6d65", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-15T17:06:34.000Z" - }, - "end": { - "$date": "2021-03-15T17:21:56.000Z" - }, - "events": [ - { - "uuid": "710434e8-9871-41db-8369-a1f405b72b53", - "start": { - "$date": "2021-03-15T17:06:34.000Z" - }, - "end": { - "$date": "2021-03-15T17:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5bb5a203-168c-4a99-8db2-759b30401041", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-15T18:59:02.000Z" - }, - "end": { - "$date": "2021-03-15T19:54:29.000Z" - }, - "events": [ - { - "uuid": "c81ba2d8-2536-4763-b377-d3a440acd380", - "start": { - "$date": "2021-03-15T18:59:02.000Z" - }, - "end": { - "$date": "2021-03-15T19:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3e6a694a-ca72-4ddd-8b1d-9ef693dfc850", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-15T20:39:13.000Z" - }, - "end": { - "$date": "2021-03-15T21:07:57.000Z" - }, - "events": [ - { - "uuid": "50a8af38-53db-451c-86ed-8557d322d1fa", - "start": { - "$date": "2021-03-15T20:39:13.000Z" - }, - "end": { - "$date": "2021-03-15T21:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ea7af81e-cacf-4ad0-ac0f-2b987f2bf04e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-15T20:51:40.000Z" - }, - "end": { - "$date": "2021-03-15T21:52:43.000Z" - }, - "events": [ - { - "uuid": "390add92-86a4-4929-82da-7235374a99fc", - "start": { - "$date": "2021-03-15T20:51:40.000Z" - }, - "end": { - "$date": "2021-03-15T21:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6df179f7-2eb8-4740-ba4d-50217e272f05", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-15T21:09:03.000Z" - }, - "end": { - "$date": "2021-03-15T21:38:44.000Z" - }, - "events": [ - { - "uuid": "83846d6c-989d-4dfc-9c78-7bb3b0f8eca1", - "start": { - "$date": "2021-03-15T21:09:03.000Z" - }, - "end": { - "$date": "2021-03-15T21:38:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bec04953-b8ae-4636-b757-e2643467ddb2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-15T21:10:14.000Z" - }, - "end": { - "$date": "2021-03-15T21:59:59.000Z" - }, - "events": [ - { - "uuid": "aaa21998-965d-4aed-b635-901ced5abda2", - "start": { - "$date": "2021-03-15T21:10:14.000Z" - }, - "end": { - "$date": "2021-03-15T21:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bcfffa35-0d35-46ca-a0c3-f1ff427865a1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-15T21:12:08.000Z" - }, - "end": { - "$date": "2021-03-15T22:02:55.000Z" - }, - "events": [ - { - "uuid": "84d307bd-daf0-4dae-846e-2badb00c449a", - "start": { - "$date": "2021-03-15T21:12:08.000Z" - }, - "end": { - "$date": "2021-03-15T22:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "10db6e4b-7763-42c9-ba19-fee5de21c946", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-15T22:07:11.000Z" - }, - "end": { - "$date": "2021-03-15T23:26:14.000Z" - }, - "events": [ - { - "uuid": "28257f3f-5e3d-4b9e-b256-4db861cbabda", - "start": { - "$date": "2021-03-15T22:07:11.000Z" - }, - "end": { - "$date": "2021-03-15T23:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e4a9c8f4-6c75-4831-af36-f3c30cc38a42", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-15T22:22:12.000Z" - }, - "end": { - "$date": "2021-03-15T22:31:11.000Z" - }, - "events": [ - { - "uuid": "785d9603-a542-4269-89d3-0b94ec6ee93b", - "start": { - "$date": "2021-03-15T22:22:12.000Z" - }, - "end": { - "$date": "2021-03-15T22:31:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "46364ebf-b91b-454c-a286-87a9dace1d24", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-15T22:44:33.000Z" - }, - "end": { - "$date": "2021-03-15T22:47:43.000Z" - }, - "events": [ - { - "uuid": "03256162-ccc4-4f65-ad7f-5c49416833da", - "start": { - "$date": "2021-03-15T22:44:33.000Z" - }, - "end": { - "$date": "2021-03-15T22:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4541b23e-10f6-4995-a45a-b6d8bde4a1dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-16T00:57:19.000Z" - }, - "end": { - "$date": "2021-03-16T02:31:21.000Z" - }, - "events": [ - { - "uuid": "2e5cd405-eab7-4bbb-8cea-05c3b9539b22", - "start": { - "$date": "2021-03-16T00:57:19.000Z" - }, - "end": { - "$date": "2021-03-16T02:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "33debc8f-7e78-47bd-ad4b-4f1b074cc834", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-16T01:00:09.000Z" - }, - "end": { - "$date": "2021-03-16T01:14:44.000Z" - }, - "events": [ - { - "uuid": "e8462f1b-19e2-43cd-9e3e-c7582a84186c", - "start": { - "$date": "2021-03-16T01:00:09.000Z" - }, - "end": { - "$date": "2021-03-16T01:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b99da660-a780-4bb1-932c-b5b26d39d4df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-16T01:18:55.000Z" - }, - "end": { - "$date": "2021-03-16T02:14:56.000Z" - }, - "events": [ - { - "uuid": "87cbba37-88cc-4bca-90eb-9fc334452071", - "start": { - "$date": "2021-03-16T01:18:55.000Z" - }, - "end": { - "$date": "2021-03-16T02:14:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bba1111d-fc63-4e88-a595-cb4a4ca80727", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-16T01:48:27.000Z" - }, - "end": { - "$date": "2021-03-16T02:26:43.000Z" - }, - "events": [ - { - "uuid": "d4a1089e-09b4-4ce5-a45c-605b89180d3b", - "start": { - "$date": "2021-03-16T01:48:27.000Z" - }, - "end": { - "$date": "2021-03-16T02:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9e52b3ee-8b3c-4bc5-b20d-3f8077cbe8cb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-16T01:51:35.000Z" - }, - "end": { - "$date": "2021-03-16T02:26:31.000Z" - }, - "events": [ - { - "uuid": "a2bbeecd-d941-4838-a8a8-bee7640ecafa", - "start": { - "$date": "2021-03-16T01:51:35.000Z" - }, - "end": { - "$date": "2021-03-16T02:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ee0f0c2a-06e3-4f8d-b73d-88cfa1b34890", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-16T02:17:22.000Z" - }, - "end": { - "$date": "2021-03-16T02:42:17.000Z" - }, - "events": [ - { - "uuid": "b9483756-0f86-491a-b34f-7328381dad02", - "start": { - "$date": "2021-03-16T02:17:22.000Z" - }, - "end": { - "$date": "2021-03-16T02:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4a14dae9-1250-470b-80e2-26eb5a3bf9f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-16T02:22:12.000Z" - }, - "end": { - "$date": "2021-03-16T02:41:22.000Z" - }, - "events": [ - { - "uuid": "0ccb57d2-cbdb-4330-aed5-189bb0ec213a", - "start": { - "$date": "2021-03-16T02:22:12.000Z" - }, - "end": { - "$date": "2021-03-16T02:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "80bec464-9cfc-41b5-9f38-251dc328a76a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-16T02:58:19.000Z" - }, - "end": { - "$date": "2021-03-16T04:11:56.000Z" - }, - "events": [ - { - "uuid": "1aa9006f-0af0-4433-a647-47dd31f70cad", - "start": { - "$date": "2021-03-16T02:58:19.000Z" - }, - "end": { - "$date": "2021-03-16T04:11:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3b3e9266-7a82-4d69-9b2e-fa7a24a6321b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-16T03:06:30.000Z" - }, - "end": { - "$date": "2021-03-16T04:54:11.000Z" - }, - "events": [ - { - "uuid": "8038bcd8-2e22-4475-863b-c98d249f3312", - "start": { - "$date": "2021-03-16T03:06:30.000Z" - }, - "end": { - "$date": "2021-03-16T04:54:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9a20a1ea-de49-4f62-a2a4-de0f6fedec56", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-16T03:06:37.000Z" - }, - "end": { - "$date": "2021-03-16T04:54:02.000Z" - }, - "events": [ - { - "uuid": "1356ffb9-9aed-47b8-83f6-9ef43d54f14b", - "start": { - "$date": "2021-03-16T03:06:37.000Z" - }, - "end": { - "$date": "2021-03-16T04:54:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6486dcea-0ac5-48aa-9fdd-52d53feffd3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T03:12:22.000Z" - }, - "end": { - "$date": "2021-03-16T03:30:17.000Z" - }, - "events": [ - { - "uuid": "ab99091b-924d-4e21-a639-89b3b094da35", - "start": { - "$date": "2021-03-16T03:12:22.000Z" - }, - "end": { - "$date": "2021-03-16T03:16:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29feb0e0-c3b1-46c0-9f61-efc6f423ba8d", - "start": { - "$date": "2021-03-16T03:16:22.000Z" - }, - "end": { - "$date": "2021-03-16T03:30:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a24ba90-3628-4a06-a484-a31c613bac7f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-16T03:12:17.000Z" - }, - "end": { - "$date": "2021-03-16T03:30:24.000Z" - }, - "events": [ - { - "uuid": "c7b652b1-e0d3-4d4e-8637-b03ac2810b52", - "start": { - "$date": "2021-03-16T03:12:17.000Z" - }, - "end": { - "$date": "2021-03-16T03:30:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2143a743-1750-476b-a7ee-51c52e2d1c46", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-16T03:35:33.000Z" - }, - "end": { - "$date": "2021-03-16T03:59:24.000Z" - }, - "events": [ - { - "uuid": "1cca7c83-0cc2-4522-96ef-f6478c2481cc", - "start": { - "$date": "2021-03-16T03:35:33.000Z" - }, - "end": { - "$date": "2021-03-16T03:59:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8401dfaf-93a7-43a4-83ef-74450555a8d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-16T03:43:56.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:11.000Z" - }, - "events": [ - { - "uuid": "b43a6f2e-41d8-47a7-9981-96da633cd44c", - "start": { - "$date": "2021-03-16T03:43:56.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "37693f48-e748-405a-bf4d-b8b7bf76c823", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-16T03:48:29.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:13.000Z" - }, - "events": [ - { - "uuid": "03c25c4d-b5b8-4328-8e43-f3cded2838ad", - "start": { - "$date": "2021-03-16T03:48:29.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a71b2af0-a2bc-42b0-b21e-a017a16daa34", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-16T03:50:41.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:28.000Z" - }, - "events": [ - { - "uuid": "969a1f5c-b29b-43ce-a377-a63b3db2ca4d", - "start": { - "$date": "2021-03-16T03:50:41.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7a2a45f-513b-403f-9d9b-0b2e89838818", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-16T04:07:09.000Z" - }, - "end": { - "$date": "2021-03-16T04:33:57.000Z" - }, - "events": [ - { - "uuid": "cf7a1fee-2df7-43a8-8026-805f30f350af", - "start": { - "$date": "2021-03-16T04:07:09.000Z" - }, - "end": { - "$date": "2021-03-16T04:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "831700a6-df4b-4d05-9d14-21b12f5a704f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-16T04:15:30.000Z" - }, - "end": { - "$date": "2021-03-16T08:23:05.000Z" - }, - "events": [ - { - "uuid": "f8886014-7810-492d-b6ad-3838e4dd6387", - "start": { - "$date": "2021-03-16T04:15:30.000Z" - }, - "end": { - "$date": "2021-03-16T08:23:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c423930-ec65-4f62-9003-19cee4e52c12", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T04:21:11.000Z" - }, - "end": { - "$date": "2021-03-16T04:26:16.000Z" - }, - "events": [ - { - "uuid": "12221177-2d4a-4802-a9c9-f7765ef02249", - "start": { - "$date": "2021-03-16T04:21:11.000Z" - }, - "end": { - "$date": "2021-03-16T04:26:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4f8c752b-3637-49c4-8291-b498d9ec3ee6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T04:27:19.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:44.000Z" - }, - "events": [ - { - "uuid": "0c934d9f-66f4-4a47-90df-abb020a4a6a7", - "start": { - "$date": "2021-03-16T04:27:19.000Z" - }, - "end": { - "$date": "2021-03-16T05:00:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1ed06819-b669-408d-a3e2-e868f24c5915", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-16T05:00:31.000Z" - }, - "end": { - "$date": "2021-03-16T05:21:48.000Z" - }, - "events": [ - { - "uuid": "d250bbb1-5061-49d6-aad4-5d40ae89fba4", - "start": { - "$date": "2021-03-16T05:00:31.000Z" - }, - "end": { - "$date": "2021-03-16T05:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfbb24e2-c18c-4b06-b38a-398278d89319", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T05:05:16.000Z" - }, - "end": { - "$date": "2021-03-16T05:33:22.000Z" - }, - "events": [ - { - "uuid": "163b4250-b6df-4b75-a6d4-4c544274715a", - "start": { - "$date": "2021-03-16T05:05:16.000Z" - }, - "end": { - "$date": "2021-03-16T05:33:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24b3fd31-0ec2-4047-82df-f9cc554c5814", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-16T11:18:23.000Z" - }, - "end": { - "$date": "2021-03-16T05:23:49.000Z" - }, - "events": [ - { - "uuid": "b277613f-f599-440a-8fa3-dea7a1d21963", - "start": { - "$date": "2021-03-16T11:18:23.000Z" - }, - "end": { - "$date": "2021-03-16T05:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "be58a8a6-e82a-4597-a211-2597080e5647", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-16T05:23:59.000Z" - }, - "end": { - "$date": "2021-03-16T05:54:19.000Z" - }, - "events": [ - { - "uuid": "83bde6d6-1209-4a76-850e-55b45b5c7298", - "start": { - "$date": "2021-03-16T05:23:59.000Z" - }, - "end": { - "$date": "2021-03-16T05:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a123da84-22af-4d01-977d-942d3e455bdf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T05:38:43.000Z" - }, - "end": { - "$date": "2021-03-16T06:08:56.000Z" - }, - "events": [ - { - "uuid": "245d9d1b-df13-46ee-8c8b-c9cc601f16dc", - "start": { - "$date": "2021-03-16T05:38:43.000Z" - }, - "end": { - "$date": "2021-03-16T06:08:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bb292a59-c96d-4791-8c2b-2abcbc45cd96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-16T17:28:52.000Z" - }, - "end": { - "$date": "2021-03-16T18:12:16.000Z" - }, - "events": [ - { - "uuid": "9f89a0c9-53ea-43cd-b0e6-1e9a6372d7d5", - "start": { - "$date": "2021-03-16T17:28:52.000Z" - }, - "end": { - "$date": "2021-03-16T18:12:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4b175b9-e7aa-4798-894c-2cbf274bd2ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T20:16:46.000Z" - }, - "end": { - "$date": "2021-03-16T20:50:20.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-03-16T20:16:46.000Z" - }, - "end": { - "$date": "2021-03-16T20:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f020f6fe-2c1a-44b5-816d-119066e12858", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-16T20:23:59.000Z" - }, - "end": { - "$date": "2021-03-16T21:18:42.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-03-16T20:23:59.000Z" - }, - "end": { - "$date": "2021-03-16T21:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "0d8d55ce-ac5e-4489-9706-677aff78c706", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-16T20:47:29.000Z" - }, - "end": { - "$date": "2021-03-16T22:23:47.000Z" - }, - "events": [ - { - "uuid": "d75f7dae-36a1-4890-8204-18e51b48269b", - "start": { - "$date": "2021-03-16T20:47:29.000Z" - }, - "end": { - "$date": "2021-03-16T22:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44eb4baf-7fb6-461a-9813-4047f7fb939c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T20:53:52.000Z" - }, - "end": { - "$date": "2021-03-16T21:35:53.000Z" - }, - "events": [ - { - "uuid": "2d1d64d7-0f47-48c4-b2ba-4681f47ed784", - "start": { - "$date": "2021-03-16T20:53:52.000Z" - }, - "end": { - "$date": "2021-03-16T21:35:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f729324a-89b7-48f9-a49b-eb0cfc56f26d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-16T20:54:37.000Z" - }, - "end": { - "$date": "2021-03-16T21:36:36.000Z" - }, - "events": [ - { - "uuid": "ccdcddc6-851b-4737-917d-3df7b42e4691", - "start": { - "$date": "2021-03-16T20:54:37.000Z" - }, - "end": { - "$date": "2021-03-16T21:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "870ab1cb-e7c1-4133-a62f-3c237362901d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-16T22:38:58.000Z" - }, - "end": { - "$date": "2021-03-16T23:38:41.000Z" - }, - "events": [ - { - "uuid": "55f17d6a-53b0-4758-b850-457fc0eb7132", - "start": { - "$date": "2021-03-16T22:38:58.000Z" - }, - "end": { - "$date": "2021-03-16T23:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c1eda9a7-0159-4d6f-9f38-b89de556365e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-16T22:51:06.000Z" - }, - "end": { - "$date": "2021-03-16T22:54:30.000Z" - }, - "events": [ - { - "uuid": "dad76750-c10c-49d7-9062-64de6f38b686", - "start": { - "$date": "2021-03-16T22:51:06.000Z" - }, - "end": { - "$date": "2021-03-16T22:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81dc83ad-de72-43ab-8284-7684d41e7009", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T23:02:32.000Z" - }, - "end": { - "$date": "2021-03-16T23:26:12.000Z" - }, - "events": [ - { - "uuid": "e4927db2-4e50-4457-99d7-33c1396299d1", - "start": { - "$date": "2021-03-16T23:02:32.000Z" - }, - "end": { - "$date": "2021-03-16T23:26:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a547809-d816-4924-b616-2cb984a1610e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-16T23:04:35.000Z" - }, - "end": { - "$date": "2021-03-16T23:26:02.000Z" - }, - "events": [ - { - "uuid": "9518452c-73e5-44cb-ae7d-b95179a2d141", - "start": { - "$date": "2021-03-16T23:04:35.000Z" - }, - "end": { - "$date": "2021-03-16T23:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "56debe17-5ccd-4436-9cba-c07df7553437", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-16T23:09:27.000Z" - }, - "end": { - "$date": "2021-03-16T23:21:24.000Z" - }, - "events": [ - { - "uuid": "8606b604-1ff7-414e-a762-d6d0ff12b0c1", - "start": { - "$date": "2021-03-16T23:09:27.000Z" - }, - "end": { - "$date": "2021-03-16T23:21:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cd39b63-72e2-40dc-a792-89d558b9b1e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-16T23:28:54.000Z" - }, - "end": { - "$date": "2021-03-17T00:12:03.000Z" - }, - "events": [ - { - "uuid": "36a4b523-bffc-468b-b460-389e9c6feb23", - "start": { - "$date": "2021-03-16T23:28:54.000Z" - }, - "end": { - "$date": "2021-03-17T00:12:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c95bbd1d-cccc-46f2-b5f5-18e3063c63ed", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-16T23:28:46.000Z" - }, - "end": { - "$date": "2021-03-17T00:11:55.000Z" - }, - "events": [ - { - "uuid": "70d3e506-277d-4d87-ae0e-8477d5555bff", - "start": { - "$date": "2021-03-16T23:28:46.000Z" - }, - "end": { - "$date": "2021-03-17T00:11:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "baca211b-068a-435e-9297-cd5d1bd9101b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-16T23:40:26.000Z" - }, - "end": { - "$date": "2021-03-17T02:48:30.000Z" - }, - "events": [ - { - "uuid": "7a330888-9ef0-4215-be5f-eff4f0115e28", - "start": { - "$date": "2021-03-16T23:40:26.000Z" - }, - "end": { - "$date": "2021-03-17T00:10:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86ee9ff2-25d5-462f-b6ee-a5eda7c53cac", - "start": { - "$date": "2021-03-17T00:10:26.000Z" - }, - "end": { - "$date": "2021-03-17T00:25:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "185abbb2-99dd-453d-91fc-fbbaf27e5239", - "start": { - "$date": "2021-03-17T00:25:26.000Z" - }, - "end": { - "$date": "2021-03-17T01:08:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0c835c52-6b3f-49e6-87c3-a79828c4c670", - "start": { - "$date": "2021-03-17T01:08:26.000Z" - }, - "end": { - "$date": "2021-03-17T01:35:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d4ddace-defe-4b2a-8f22-701d120473e9", - "start": { - "$date": "2021-03-17T01:35:26.000Z" - }, - "end": { - "$date": "2021-03-17T01:52:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a9d699a6-0738-4769-9715-bf5a4d6d552d", - "start": { - "$date": "2021-03-17T01:52:26.000Z" - }, - "end": { - "$date": "2021-03-17T01:55:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45264f90-7a78-4315-8a99-278d3cf9a799", - "start": { - "$date": "2021-03-17T01:55:26.000Z" - }, - "end": { - "$date": "2021-03-17T02:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4e7d1e82-64c1-4480-9369-f9cccc8df3be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-16T23:54:56.000Z" - }, - "end": { - "$date": "2021-03-17T00:16:33.000Z" - }, - "events": [ - { - "uuid": "6bd7c5c2-c589-4379-8a32-ae77e85077db", - "start": { - "$date": "2021-03-16T23:54:56.000Z" - }, - "end": { - "$date": "2021-03-17T00:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24c70141-1b7f-4504-aea0-c073a92091f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T00:42:29.000Z" - }, - "end": { - "$date": "2021-03-17T01:26:56.000Z" - }, - "events": [ - { - "uuid": "807de220-9ab0-49fa-8521-b9b068a9678b", - "start": { - "$date": "2021-03-17T00:42:29.000Z" - }, - "end": { - "$date": "2021-03-17T01:26:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df45b15d-b517-4cca-bd06-2407fcdda1e6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-17T00:42:17.000Z" - }, - "end": { - "$date": "2021-03-17T01:26:47.000Z" - }, - "events": [ - { - "uuid": "08def489-14df-4000-bd3d-6f937a5b22a5", - "start": { - "$date": "2021-03-17T00:42:17.000Z" - }, - "end": { - "$date": "2021-03-17T01:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "62a954ef-4ab7-4ea7-95ae-9634f6c4c899", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-17T01:01:36.000Z" - }, - "end": { - "$date": "2021-03-17T01:43:26.000Z" - }, - "events": [ - { - "uuid": "c6bcc04d-5c88-4b64-a031-5e8108e65688", - "start": { - "$date": "2021-03-17T01:01:36.000Z" - }, - "end": { - "$date": "2021-03-17T01:43:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f58cbcd5-2869-4238-8cda-a511fa7f1e3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T01:31:00.000Z" - }, - "end": { - "$date": "2021-03-17T02:01:44.000Z" - }, - "events": [ - { - "uuid": "2596a7e8-20bf-41b4-8262-21301dad5d6d", - "start": { - "$date": "2021-03-17T01:31:00.000Z" - }, - "end": { - "$date": "2021-03-17T02:01:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da1ee618-a699-4cfb-a26f-aa37879e5315", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-17T01:32:01.000Z" - }, - "end": { - "$date": "2021-03-17T02:01:29.000Z" - }, - "events": [ - { - "uuid": "117f0140-a618-4291-a915-068296635f35", - "start": { - "$date": "2021-03-17T01:32:01.000Z" - }, - "end": { - "$date": "2021-03-17T02:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f02db7ad-c783-4844-81f3-531e7164dba0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-17T01:33:48.000Z" - }, - "end": { - "$date": "2021-03-17T04:05:39.000Z" - }, - "events": [ - { - "uuid": "d823f3f3-c0ed-411e-bd79-cc340a38ba03", - "start": { - "$date": "2021-03-17T01:33:48.000Z" - }, - "end": { - "$date": "2021-03-17T04:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e2dc623a-6570-4d08-bbfa-d993ec75edc4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-17T01:53:08.000Z" - }, - "end": { - "$date": "2021-03-17T03:11:17.000Z" - }, - "events": [ - { - "uuid": "d3e330e4-7f98-4962-a57f-031c82a10c26", - "start": { - "$date": "2021-03-17T01:53:08.000Z" - }, - "end": { - "$date": "2021-03-17T03:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8058ad09-ccda-4f48-8c8a-386dd61cb414", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-17T01:55:55.000Z" - }, - "end": { - "$date": "2021-03-17T04:49:44.000Z" - }, - "events": [ - { - "uuid": "74f64d20-e1f8-4e4a-85a4-9d3440f6a34c", - "start": { - "$date": "2021-03-17T01:55:55.000Z" - }, - "end": { - "$date": "2021-03-17T04:49:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0eb54866-de07-40ed-8719-4ec157789faa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-17T02:28:01.000Z" - }, - "end": { - "$date": "2021-03-17T02:52:35.000Z" - }, - "events": [ - { - "uuid": "30e6b3f1-1f70-43a3-813b-5ad60029950f", - "start": { - "$date": "2021-03-17T02:28:01.000Z" - }, - "end": { - "$date": "2021-03-17T02:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "552ec3be-abf8-4b3e-a55c-a5019a9b9612", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-17T02:47:06.000Z" - }, - "end": { - "$date": "2021-03-17T05:14:29.000Z" - }, - "events": [ - { - "uuid": "0c877219-ae94-4b25-af3b-e1f40a4de18c", - "start": { - "$date": "2021-03-17T02:47:06.000Z" - }, - "end": { - "$date": "2021-03-17T05:14:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cb36e5d0-3da6-4d8d-b020-d546340d7d85", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-17T02:44:41.000Z" - }, - "end": { - "$date": "2021-03-17T04:28:50.000Z" - }, - "events": [ - { - "uuid": "a180eb69-d4a8-4adf-b924-8d1e727805eb", - "start": { - "$date": "2021-03-17T02:44:41.000Z" - }, - "end": { - "$date": "2021-03-17T03:52:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8bcea546-f912-41f8-ba73-323ad034e73e", - "start": { - "$date": "2021-03-17T03:52:41.000Z" - }, - "end": { - "$date": "2021-03-17T03:53:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d0205746-b44b-4613-9620-d0a7afea3aae", - "start": { - "$date": "2021-03-17T03:53:41.000Z" - }, - "end": { - "$date": "2021-03-17T04:28:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "88a90738-27bd-4367-afd1-0d38f0725146", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T02:48:33.000Z" - }, - "end": { - "$date": "2021-03-17T03:54:08.000Z" - }, - "events": [ - { - "uuid": "3dc2d4d4-51b1-49e6-9b02-7c88bcfbd441", - "start": { - "$date": "2021-03-17T02:48:33.000Z" - }, - "end": { - "$date": "2021-03-17T03:54:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d5a1fa9a-d93d-42c6-b2f2-fa9c9f3a772d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-17T09:19:21.000Z" - }, - "end": { - "$date": "2021-03-17T09:40:43.000Z" - }, - "events": [ - { - "uuid": "ad32f6b3-56d8-45a9-a773-e9d310b09cc9", - "start": { - "$date": "2021-03-17T09:19:21.000Z" - }, - "end": { - "$date": "2021-03-17T15:11:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b566fdf-858d-4835-bbe3-e11e38c5aa3a", - "start": { - "$date": "2021-03-17T15:11:21.000Z" - }, - "end": { - "$date": "2021-03-17T15:34:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90091a02-1f83-4300-9325-a0e73f0f9106", - "start": { - "$date": "2021-03-17T15:34:21.000Z" - }, - "end": { - "$date": "2021-03-17T09:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c660e9d4-1361-4d79-9977-d2f995eb7d04", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-17T02:49:49.000Z" - }, - "end": { - "$date": "2021-03-17T02:51:10.000Z" - }, - "events": [ - { - "uuid": "bfd19a2b-d4d1-42de-880e-59b54653847b", - "start": { - "$date": "2021-03-17T02:49:49.000Z" - }, - "end": { - "$date": "2021-03-17T02:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14b75708-dddc-48cb-a843-6e6c7d2179ec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-17T02:51:34.000Z" - }, - "end": { - "$date": "2021-03-17T03:51:48.000Z" - }, - "events": [ - { - "uuid": "f85459b5-3875-42b9-aa41-04a218c64de7", - "start": { - "$date": "2021-03-17T02:51:34.000Z" - }, - "end": { - "$date": "2021-03-17T03:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a4a765d2-1df1-4c8d-adba-1fc6a0853420", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-17T02:52:41.000Z" - }, - "end": { - "$date": "2021-03-17T04:34:32.000Z" - }, - "events": [ - { - "uuid": "58cd3c17-b0e8-401e-91cd-70d584116983", - "start": { - "$date": "2021-03-17T02:52:41.000Z" - }, - "end": { - "$date": "2021-03-17T04:34:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "93c71373-14fd-4647-ad4e-6751292abc73", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-17T02:56:43.000Z" - }, - "end": { - "$date": "2021-03-17T03:03:43.000Z" - }, - "events": [ - { - "uuid": "205f65a6-6faf-45ed-9a13-ae9f1aca85a0", - "start": { - "$date": "2021-03-17T02:56:43.000Z" - }, - "end": { - "$date": "2021-03-17T03:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d2edbd2d-0c35-488f-8226-9360a1130aa6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-17T03:03:31.000Z" - }, - "end": { - "$date": "2021-03-17T04:49:54.000Z" - }, - "events": [ - { - "uuid": "2d321c6d-01ab-4298-994a-bedcb00a763c", - "start": { - "$date": "2021-03-17T03:03:31.000Z" - }, - "end": { - "$date": "2021-03-17T04:49:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "befdcec2-77e2-4b9d-9bdb-53ee1aeffd25", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-17T05:14:30.000Z" - }, - "end": { - "$date": "2021-03-17T06:09:36.000Z" - }, - "events": [ - { - "uuid": "2e525b20-e753-4765-bd53-0547a17bfa75", - "start": { - "$date": "2021-03-17T05:14:30.000Z" - }, - "end": { - "$date": "2021-03-17T06:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "ea104217-a72c-4c71-84c4-e6a820da5129", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-17T03:11:22.000Z" - }, - "end": { - "$date": "2021-03-17T03:30:27.000Z" - }, - "events": [ - { - "uuid": "7190bf30-c22d-4769-b608-5be0ea9929ed", - "start": { - "$date": "2021-03-17T03:11:22.000Z" - }, - "end": { - "$date": "2021-03-17T03:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "134fe121-4310-4009-8215-af207887cf1b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-17T03:27:06.000Z" - }, - "end": { - "$date": "2021-03-17T03:53:34.000Z" - }, - "events": [ - { - "uuid": "68f462bb-aeb4-408c-9ef2-5272e85a9a88", - "start": { - "$date": "2021-03-17T03:27:06.000Z" - }, - "end": { - "$date": "2021-03-17T03:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b199a1a7-aaa5-4586-9db6-bb4f8a08e994", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-17T03:30:37.000Z" - }, - "end": { - "$date": "2021-03-17T04:03:13.000Z" - }, - "events": [ - { - "uuid": "39e16268-7056-4481-8373-b319c9844543", - "start": { - "$date": "2021-03-17T03:30:37.000Z" - }, - "end": { - "$date": "2021-03-17T04:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "620b7a1d-cf86-40b0-8c38-3616f293a234", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-17T04:00:37.000Z" - }, - "end": { - "$date": "2021-03-17T04:33:22.000Z" - }, - "events": [ - { - "uuid": "6b17eed2-c303-4d74-9831-136cf76deb0a", - "start": { - "$date": "2021-03-17T04:00:37.000Z" - }, - "end": { - "$date": "2021-03-17T04:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "e25e1295-1615-452d-b9b1-aac2df3a14fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-17T04:08:49.000Z" - }, - "end": { - "$date": "2021-03-17T04:21:29.000Z" - }, - "events": [ - { - "uuid": "05999fe2-f3dc-4edf-842f-50ea6305d5d9", - "start": { - "$date": "2021-03-17T04:08:49.000Z" - }, - "end": { - "$date": "2021-03-17T04:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f6bf4895-5c72-4e71-a28b-35edf5202efc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-17T02:44:41.000Z" - }, - "end": { - "$date": "2021-03-17T05:14:36.000Z" - }, - "events": [ - { - "uuid": "7ca5435b-6ffd-4203-bb12-a88efedfc287", - "start": { - "$date": "2021-03-17T02:44:41.000Z" - }, - "end": { - "$date": "2021-03-17T05:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99551909-d2f2-4b4d-9649-12843e1309bb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-17T04:36:53.000Z" - }, - "end": { - "$date": "2021-03-17T05:12:11.000Z" - }, - "events": [ - { - "uuid": "2e2bfd55-f58a-4c37-a90d-8d5d4fec8490", - "start": { - "$date": "2021-03-17T04:36:53.000Z" - }, - "end": { - "$date": "2021-03-17T05:12:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9e4d2ab9-5846-4a6e-91ab-8c179a80eb98", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T04:35:15.000Z" - }, - "end": { - "$date": "2021-03-17T05:14:24.000Z" - }, - "events": [ - { - "uuid": "59ce4bd0-f79e-471b-86ab-657758e67353", - "start": { - "$date": "2021-03-17T04:35:15.000Z" - }, - "end": { - "$date": "2021-03-17T05:14:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7483fb07-b40c-49e9-8615-ac30ac03331c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-17T05:15:30.000Z" - }, - "end": { - "$date": "2021-03-17T05:39:46.000Z" - }, - "events": [ - { - "uuid": "d25bf86b-4ebe-4c6e-b55a-546d605656e6", - "start": { - "$date": "2021-03-17T05:15:30.000Z" - }, - "end": { - "$date": "2021-03-17T05:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6285ca6c-a329-4dde-8807-b2f972d56b07", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-17T05:15:24.000Z" - }, - "end": { - "$date": "2021-03-17T06:07:26.000Z" - }, - "events": [ - { - "uuid": "6234dfa8-e35c-489e-afd7-949c28d41576", - "start": { - "$date": "2021-03-17T05:15:24.000Z" - }, - "end": { - "$date": "2021-03-17T06:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "a8d58098-142e-433a-9ee9-ad0e6898e6ab", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-17T15:39:07.000Z" - }, - "end": { - "$date": "2021-03-17T19:49:56.000Z" - }, - "events": [ - { - "uuid": "10247634-5d75-4714-9d96-dc7134bc01e5", - "start": { - "$date": "2021-03-17T15:39:07.000Z" - }, - "end": { - "$date": "2021-03-17T16:45:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa11d61c-36be-44a1-b711-1759586ca7ae", - "start": { - "$date": "2021-03-17T16:45:07.000Z" - }, - "end": { - "$date": "2021-03-17T17:06:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ed8a061-9801-46fb-ad30-a2f24b6feb5c", - "start": { - "$date": "2021-03-17T17:06:07.000Z" - }, - "end": { - "$date": "2021-03-17T17:24:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8fa2ac0d-1925-438a-b300-c2971dfc501b", - "start": { - "$date": "2021-03-17T17:24:07.000Z" - }, - "end": { - "$date": "2021-03-17T19:49:56.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ceda5544-8a23-4a08-bb94-4ee7e9828a81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T17:04:42.000Z" - }, - "end": { - "$date": "2021-03-17T17:40:52.000Z" - }, - "events": [ - { - "uuid": "cee982da-b315-4964-aaed-c54e3a7035e4", - "start": { - "$date": "2021-03-17T17:04:42.000Z" - }, - "end": { - "$date": "2021-03-17T17:40:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "122fa623-4cd4-463c-b60d-909bfe1f0bb3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-17T17:40:13.000Z" - }, - "end": { - "$date": "2021-03-17T18:14:23.000Z" - }, - "events": [ - { - "uuid": "d2a6efc8-cff6-4fc2-afc7-242f24a1b65d", - "start": { - "$date": "2021-03-17T17:40:13.000Z" - }, - "end": { - "$date": "2021-03-17T18:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d1cf5a64-6c9b-46ab-9e7f-027875f2a2e6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-17T17:52:18.000Z" - }, - "end": { - "$date": "2021-03-17T19:08:36.000Z" - }, - "events": [ - { - "uuid": "1361516d-6539-4259-8559-b997a97daacd", - "start": { - "$date": "2021-03-17T17:52:18.000Z" - }, - "end": { - "$date": "2021-03-17T19:08:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a66f548b-4f73-4ff9-9abf-c4eedc88d4c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T20:08:51.000Z" - }, - "end": { - "$date": "2021-03-17T20:53:40.000Z" - }, - "events": [ - { - "uuid": "e51fc85e-47bc-48d8-99b7-aa903db2beff", - "start": { - "$date": "2021-03-17T20:08:51.000Z" - }, - "end": { - "$date": "2021-03-17T20:53:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "98ee557e-73bd-4efe-a085-2a637873bc52", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-17T20:10:02.000Z" - }, - "end": { - "$date": "2021-03-17T20:24:29.000Z" - }, - "events": [ - { - "uuid": "071f7d1f-8e1d-49f7-ac7b-7e18ee25a192", - "start": { - "$date": "2021-03-17T20:10:02.000Z" - }, - "end": { - "$date": "2021-03-17T20:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "82cb50b7-7437-4a3a-bf13-1dcfd4cde8dd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-17T20:28:44.000Z" - }, - "end": { - "$date": "2021-03-17T20:32:40.000Z" - }, - "events": [ - { - "uuid": "37e45f54-ff4b-4246-acad-b2a96c82c4b4", - "start": { - "$date": "2021-03-17T20:28:44.000Z" - }, - "end": { - "$date": "2021-03-17T20:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fd14ef6e-fd08-4231-b3c3-7b5f57b0d1f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-17T20:58:56.000Z" - }, - "end": { - "$date": "2021-03-17T21:22:37.000Z" - }, - "events": [ - { - "uuid": "de35e08b-935d-4110-9cc4-ed2b76c70758", - "start": { - "$date": "2021-03-17T20:58:56.000Z" - }, - "end": { - "$date": "2021-03-17T21:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ebcfa28-4ce4-4cf1-91b8-7fb513d35454", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T21:36:19.000Z" - }, - "end": { - "$date": "2021-03-17T21:40:20.000Z" - }, - "events": [ - { - "uuid": "d3205197-7a7d-4d37-944f-6b8fabb251d9", - "start": { - "$date": "2021-03-17T21:36:19.000Z" - }, - "end": { - "$date": "2021-03-17T21:40:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e51c7572-7bbb-4dfe-ac45-47f94aa6f191", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-17T21:36:57.000Z" - }, - "end": { - "$date": "2021-03-17T22:41:59.000Z" - }, - "events": [ - { - "uuid": "3199b613-aa8b-4ea6-b536-942c25a80087", - "start": { - "$date": "2021-03-17T21:36:57.000Z" - }, - "end": { - "$date": "2021-03-17T22:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9dab22db-781d-442d-9207-df0f4d6534c0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T21:43:00.000Z" - }, - "end": { - "$date": "2021-03-17T22:19:18.000Z" - }, - "events": [ - { - "uuid": "28360db7-c5d5-47bd-9e86-28c9676a2a33", - "start": { - "$date": "2021-03-17T21:43:00.000Z" - }, - "end": { - "$date": "2021-03-17T22:19:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "785177ea-8ce8-48e5-98d1-d3b797904390", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-17T22:41:36.000Z" - }, - "end": { - "$date": "2021-03-18T01:08:19.000Z" - }, - "events": [ - { - "uuid": "e2aa621f-5cb8-4bd3-8bac-4a71a3768d75", - "start": { - "$date": "2021-03-17T22:41:36.000Z" - }, - "end": { - "$date": "2021-03-18T01:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4a6031cb-7365-4656-8d20-9d711b7e5490", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-17T22:42:05.000Z" - }, - "end": { - "$date": "2021-03-18T03:40:30.000Z" - }, - "events": [ - { - "uuid": "59a581ea-0fe5-4417-9e15-61fc426130e7", - "start": { - "$date": "2021-03-17T22:42:05.000Z" - }, - "end": { - "$date": "2021-03-17T23:42:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eacc9c50-a054-4cb2-8d3c-7bcc2154439b", - "start": { - "$date": "2021-03-17T23:42:05.000Z" - }, - "end": { - "$date": "2021-03-17T23:53:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ad1f0206-06a4-4189-ac02-479addb611a1", - "start": { - "$date": "2021-03-17T23:53:05.000Z" - }, - "end": { - "$date": "2021-03-18T02:14:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b9865daf-9a84-4d08-b287-9ae6bb8a3120", - "start": { - "$date": "2021-03-18T02:14:05.000Z" - }, - "end": { - "$date": "2021-03-18T02:17:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7c8741e5-9b49-4043-bdb1-86291ef39cdb", - "start": { - "$date": "2021-03-18T02:17:05.000Z" - }, - "end": { - "$date": "2021-03-18T03:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dc223fcc-78d8-4ce1-8f1f-8f2a4e05cecd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-17T22:54:27.000Z" - }, - "end": { - "$date": "2021-03-17T23:35:28.000Z" - }, - "events": [ - { - "uuid": "c663939a-9033-47cf-b5ae-19a7d79c1ea6", - "start": { - "$date": "2021-03-17T22:54:27.000Z" - }, - "end": { - "$date": "2021-03-17T23:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "95f60d60-bdc9-44b7-8fb8-7bdcc90bf3ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-17T23:05:24.000Z" - }, - "end": { - "$date": "2021-03-17T23:43:24.000Z" - }, - "events": [ - { - "uuid": "486a3ed6-b8b0-480f-a532-56f9618205d4", - "start": { - "$date": "2021-03-17T23:05:24.000Z" - }, - "end": { - "$date": "2021-03-17T23:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "96e2b822-1593-475b-9714-34ae5442fd86", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-17T23:49:46.000Z" - }, - "end": { - "$date": "2021-03-18T00:36:38.000Z" - }, - "events": [ - { - "uuid": "1b67961a-dd62-45c8-a20e-ae3fe61a6975", - "start": { - "$date": "2021-03-17T23:49:46.000Z" - }, - "end": { - "$date": "2021-03-18T00:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4776ccb5-46e0-4c34-b85e-025124a1bc66", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-17T23:59:24.000Z" - }, - "end": { - "$date": "2021-03-18T00:23:08.000Z" - }, - "events": [ - { - "uuid": "45501d09-215f-4176-b0d6-fa9740097405", - "start": { - "$date": "2021-03-17T23:59:24.000Z" - }, - "end": { - "$date": "2021-03-18T00:23:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d763ea79-85f6-4aa5-8bd6-d686e774bdea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-18T01:25:46.000Z" - }, - "end": { - "$date": "2021-03-18T01:41:56.000Z" - }, - "events": [ - { - "uuid": "7da44add-21c4-4002-bf1c-442db3004374", - "start": { - "$date": "2021-03-18T01:25:46.000Z" - }, - "end": { - "$date": "2021-03-18T01:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9ccdbfa1-9761-461e-97d3-971981dc68ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-18T01:41:08.000Z" - }, - "end": { - "$date": "2021-03-18T05:26:10.000Z" - }, - "events": [ - { - "uuid": "b1b2e377-e825-4199-9107-cc0eede5ef82", - "start": { - "$date": "2021-03-18T01:41:08.000Z" - }, - "end": { - "$date": "2021-03-18T05:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d66c80be-45cc-4c9d-b866-f57973043021", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-18T01:46:07.000Z" - }, - "end": { - "$date": "2021-03-18T02:00:32.000Z" - }, - "events": [ - { - "uuid": "d53e90ca-10f7-47c5-a99f-20ba6226c3b7", - "start": { - "$date": "2021-03-18T01:46:07.000Z" - }, - "end": { - "$date": "2021-03-18T02:00:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0302b62a-47fc-49d6-8aa2-895bdae17894", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-18T02:25:59.000Z" - }, - "end": { - "$date": "2021-03-18T05:25:00.000Z" - }, - "events": [ - { - "uuid": "0a2ca815-01c3-4873-94c0-cd38b416b4fb", - "start": { - "$date": "2021-03-18T02:25:59.000Z" - }, - "end": { - "$date": "2021-03-18T05:25:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6693324b-318f-41bc-a1d1-92d8ad9c745b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-18T02:42:26.000Z" - }, - "end": { - "$date": "2021-03-18T05:30:28.000Z" - }, - "events": [ - { - "uuid": "de9f9b34-bd10-4f37-a92c-7ddcda0b5b87", - "start": { - "$date": "2021-03-18T02:42:26.000Z" - }, - "end": { - "$date": "2021-03-18T03:02:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ce4cb3d-c1cd-422b-8594-5325d7847c9a", - "start": { - "$date": "2021-03-18T03:02:26.000Z" - }, - "end": { - "$date": "2021-03-18T03:07:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c814658e-4fe5-41d5-9916-a4342e097727", - "start": { - "$date": "2021-03-18T03:07:26.000Z" - }, - "end": { - "$date": "2021-03-18T03:17:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d66af7d9-09a8-47c9-83d6-6ec84e2e9e33", - "start": { - "$date": "2021-03-18T03:17:26.000Z" - }, - "end": { - "$date": "2021-03-18T03:29:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4553dca9-4ff1-4118-8d90-e2799b3d1e71", - "start": { - "$date": "2021-03-18T03:29:26.000Z" - }, - "end": { - "$date": "2021-03-18T05:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "39a7d226-3639-4ca6-9559-576df5b5dd1a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-18T02:43:37.000Z" - }, - "end": { - "$date": "2021-03-18T04:57:51.000Z" - }, - "events": [ - { - "uuid": "ab106f52-59ca-4434-bf30-5dda16b1dc61", - "start": { - "$date": "2021-03-18T02:43:37.000Z" - }, - "end": { - "$date": "2021-03-18T04:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "27d0a45f-346b-4886-a55f-c8b706f6b51e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-18T03:08:57.000Z" - }, - "end": { - "$date": "2021-03-18T04:58:04.000Z" - }, - "events": [ - { - "uuid": "3b4ae445-b925-46c4-87c6-1f3d2cf27717", - "start": { - "$date": "2021-03-18T03:08:57.000Z" - }, - "end": { - "$date": "2021-03-18T04:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7d9ec0f-db88-47d8-823f-bf4bf743b63c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-18T03:36:09.000Z" - }, - "end": { - "$date": "2021-03-18T04:23:50.000Z" - }, - "events": [ - { - "uuid": "85221e6a-279e-4bc6-9066-b3fdbf0a42f7", - "start": { - "$date": "2021-03-18T03:36:09.000Z" - }, - "end": { - "$date": "2021-03-18T04:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0b68decd-64ef-4938-baf5-35b18e5b4525", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-18T03:36:11.000Z" - }, - "end": { - "$date": "2021-03-18T05:16:30.000Z" - }, - "events": [ - { - "uuid": "9eab8c23-6cfb-4a02-9208-dde0d4f60bda", - "start": { - "$date": "2021-03-18T03:36:11.000Z" - }, - "end": { - "$date": "2021-03-18T05:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd2af5bb-aad0-4773-9a98-bcc798a21492", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-18T03:46:20.000Z" - }, - "end": { - "$date": "2021-03-18T04:38:09.000Z" - }, - "events": [ - { - "uuid": "e078ccae-f2df-488a-bc0e-7d3106817b5c", - "start": { - "$date": "2021-03-18T03:46:20.000Z" - }, - "end": { - "$date": "2021-03-18T04:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "30a8e973-45e3-43d5-a77c-f6816e095de0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-18T03:40:44.000Z" - }, - "end": { - "$date": "2021-03-18T06:12:46.000Z" - }, - "events": [ - { - "uuid": "64373706-f544-4da8-832f-8eca3a657500", - "start": { - "$date": "2021-03-18T03:40:44.000Z" - }, - "end": { - "$date": "2021-03-18T05:53:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e65f567b-4d9a-41de-9ee4-ffbedf2c26ec", - "start": { - "$date": "2021-03-18T05:53:44.000Z" - }, - "end": { - "$date": "2021-03-18T05:58:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa47e0f4-9dc2-4a08-8b4b-5eccf7268da4", - "start": { - "$date": "2021-03-18T05:58:44.000Z" - }, - "end": { - "$date": "2021-03-18T06:12:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fd6e1c8-79b1-4b1b-9dab-78140dedcf82", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-18T03:51:35.000Z" - }, - "end": { - "$date": "2021-03-18T04:16:55.000Z" - }, - "events": [ - { - "uuid": "5a19124b-ceb0-4f75-996c-50650dc38893", - "start": { - "$date": "2021-03-18T03:51:35.000Z" - }, - "end": { - "$date": "2021-03-18T04:16:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d39e1c7-415c-4c85-a503-405584f922dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-18T04:18:48.000Z" - }, - "end": { - "$date": "2021-03-18T04:25:07.000Z" - }, - "events": [ - { - "uuid": "21cdc525-7d5a-4491-935d-da49cc95022a", - "start": { - "$date": "2021-03-18T04:18:48.000Z" - }, - "end": { - "$date": "2021-03-18T04:25:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aabcf78f-0da2-4e54-b98c-515183917ca2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-18T04:25:55.000Z" - }, - "end": { - "$date": "2021-03-18T05:16:26.000Z" - }, - "events": [ - { - "uuid": "bbc0c435-01c0-4fec-8b88-6889bd5adf92", - "start": { - "$date": "2021-03-18T04:25:55.000Z" - }, - "end": { - "$date": "2021-03-18T05:16:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebf7c903-39cb-40f8-bf04-f050f92e3897", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-18T04:46:57.000Z" - }, - "end": { - "$date": "2021-03-18T05:10:58.000Z" - }, - "events": [ - { - "uuid": "54dc118d-a01e-406a-a06f-2072c99c97d0", - "start": { - "$date": "2021-03-18T04:46:57.000Z" - }, - "end": { - "$date": "2021-03-18T05:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b49254bb-f13c-498a-bf52-1f28199c9dd7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-18T05:23:45.000Z" - }, - "end": { - "$date": "2021-03-18T05:42:04.000Z" - }, - "events": [ - { - "uuid": "5bd4ebb7-4764-4c96-b926-6471f9abf448", - "start": { - "$date": "2021-03-18T05:23:45.000Z" - }, - "end": { - "$date": "2021-03-18T05:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "40e9ed6b-efd6-4ee5-bde7-08187df7f6f7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-18T05:25:45.000Z" - }, - "end": { - "$date": "2021-03-18T05:39:19.000Z" - }, - "events": [ - { - "uuid": "540835ba-24db-439f-9a0e-6c24d7b37ce5", - "start": { - "$date": "2021-03-18T05:25:45.000Z" - }, - "end": { - "$date": "2021-03-18T05:39:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8cf48cac-b2ac-445b-86db-ef75d12018f1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-18T06:03:53.000Z" - }, - "end": { - "$date": "2021-03-18T06:16:41.000Z" - }, - "events": [ - { - "uuid": "25023fde-91c0-42b4-a67a-7e8c96f9cf24", - "start": { - "$date": "2021-03-18T06:03:53.000Z" - }, - "end": { - "$date": "2021-03-18T06:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ebf71a72-8143-403f-82d9-beb35dcbcebb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-18T06:13:01.000Z" - }, - "end": { - "$date": "2021-03-18T08:16:16.000Z" - }, - "events": [ - { - "uuid": "74423c51-49f1-40a5-973e-6c0a21551f36", - "start": { - "$date": "2021-03-18T06:13:01.000Z" - }, - "end": { - "$date": "2021-03-18T08:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "70e61ed1-8aee-4004-95b4-4b3f99fcb727", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-18T13:40:14.000Z" - }, - "end": { - "$date": "2021-03-18T13:41:44.000Z" - }, - "events": [ - { - "uuid": "ac6e5d75-5456-442e-84be-2441eee395d3", - "start": { - "$date": "2021-03-18T13:40:14.000Z" - }, - "end": { - "$date": "2021-03-18T13:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a2d5b1d0-f33c-4812-9d45-28ae30a8c329", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-18T14:06:38.000Z" - }, - "end": { - "$date": "2021-03-18T14:23:08.000Z" - }, - "events": [ - { - "uuid": "91f37613-561e-45ed-8fb7-6aea5770d53b", - "start": { - "$date": "2021-03-18T14:06:38.000Z" - }, - "end": { - "$date": "2021-03-18T14:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f3aa6927-60e2-40ca-a25f-ee59e112b2ae", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-18T15:32:51.000Z" - }, - "end": { - "$date": "2021-03-18T16:12:37.000Z" - }, - "events": [ - { - "uuid": "10c1591c-c429-445a-a6f4-0b479e840685", - "start": { - "$date": "2021-03-18T15:32:51.000Z" - }, - "end": { - "$date": "2021-03-18T16:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92855ecc-c586-4e89-a490-c71525a8fc9d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-18T17:30:34.000Z" - }, - "end": { - "$date": "2021-03-18T18:27:37.000Z" - }, - "events": [ - { - "uuid": "4af96af7-e1a1-4636-8a2c-ce3e558f0131", - "start": { - "$date": "2021-03-18T17:30:34.000Z" - }, - "end": { - "$date": "2021-03-18T18:27:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6f09553e-4588-4eb2-87b1-f5220772cc99", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-18T19:46:13.000Z" - }, - "end": { - "$date": "2021-03-18T19:55:57.000Z" - }, - "events": [ - { - "uuid": "cb65b517-1cc3-40fe-9ecd-d02d33037204", - "start": { - "$date": "2021-03-18T19:46:13.000Z" - }, - "end": { - "$date": "2021-03-18T19:55:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b9379fee-26de-4473-b8c2-4c8374c8b828", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-18T20:30:07.000Z" - }, - "end": { - "$date": "2021-03-18T20:46:55.000Z" - }, - "events": [ - { - "uuid": "2cd46a1a-f58e-49c1-9a32-dd86f55d8caf", - "start": { - "$date": "2021-03-18T20:30:07.000Z" - }, - "end": { - "$date": "2021-03-18T20:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8bdb28f-e6a4-4756-8a19-daa1b6549e58", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-18T22:14:09.000Z" - }, - "end": { - "$date": "2021-03-18T22:39:37.000Z" - }, - "events": [ - { - "uuid": "eb28ad87-9e7a-4c8f-96b2-0a3861e9ac65", - "start": { - "$date": "2021-03-18T22:14:09.000Z" - }, - "end": { - "$date": "2021-03-18T22:39:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8d75605b-068f-4beb-8267-76ec8732bc03", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-18T22:28:00.000Z" - }, - "end": { - "$date": "2021-03-19T00:07:28.000Z" - }, - "events": [ - { - "uuid": "7af2b6de-e331-410e-bd2c-72b870abe6dc", - "start": { - "$date": "2021-03-18T22:28:00.000Z" - }, - "end": { - "$date": "2021-03-19T00:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1617fa23-5e35-43d0-8200-ba98a462c1ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-18T23:07:37.000Z" - }, - "end": { - "$date": "2021-03-19T01:15:53.000Z" - }, - "events": [ - { - "uuid": "8223bee4-204d-4ff2-b3cc-36db826f1a5c", - "start": { - "$date": "2021-03-18T23:07:37.000Z" - }, - "end": { - "$date": "2021-03-19T01:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4f926321-7dba-413e-a93f-0c78ffde6c9e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-19T00:09:24.000Z" - }, - "end": { - "$date": "2021-03-19T02:20:13.000Z" - }, - "events": [ - { - "uuid": "4dcef215-59a9-4264-92e6-8305c9c6f34b", - "start": { - "$date": "2021-03-19T00:09:24.000Z" - }, - "end": { - "$date": "2021-03-19T01:59:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ffb94a9-3a12-4754-8c99-e1597cf2e8f2", - "start": { - "$date": "2021-03-19T01:59:24.000Z" - }, - "end": { - "$date": "2021-03-19T02:20:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "172c7b7d-8bd0-4462-9561-aafebcddae73", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-19T00:39:12.000Z" - }, - "end": { - "$date": "2021-03-19T01:02:07.000Z" - }, - "events": [ - { - "uuid": "e576b3de-b6e9-4f0d-8b05-8bfda107b2cd", - "start": { - "$date": "2021-03-19T00:39:12.000Z" - }, - "end": { - "$date": "2021-03-19T01:02:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cdac2f7c-12bf-42c3-beb0-584ad639d78b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-19T01:06:19.000Z" - }, - "end": { - "$date": "2021-03-19T01:43:17.000Z" - }, - "events": [ - { - "uuid": "653e884d-5108-4551-a91d-d524629a2d98", - "start": { - "$date": "2021-03-19T01:06:19.000Z" - }, - "end": { - "$date": "2021-03-19T01:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3d77a3b5-8bb7-4d78-a859-3a39b340bc9c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-19T02:01:10.000Z" - }, - "end": { - "$date": "2021-03-19T04:48:42.000Z" - }, - "events": [ - { - "uuid": "44fc77d5-e7e8-4a21-abc9-b65e3fec43ab", - "start": { - "$date": "2021-03-19T02:01:10.000Z" - }, - "end": { - "$date": "2021-03-19T04:05:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb1db672-888b-4380-aa70-04b06ad141cb", - "start": { - "$date": "2021-03-19T04:05:10.000Z" - }, - "end": { - "$date": "2021-03-19T04:10:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e584d2c-676c-48c2-a07f-8fb05e4dcf2e", - "start": { - "$date": "2021-03-19T04:10:10.000Z" - }, - "end": { - "$date": "2021-03-19T04:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e2e5cd8a-92de-428f-b634-03cb7c0716e9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-19T02:06:11.000Z" - }, - "end": { - "$date": "2021-03-19T02:48:19.000Z" - }, - "events": [ - { - "uuid": "daa9f65c-442b-4a93-bef5-8514b8052142", - "start": { - "$date": "2021-03-19T02:06:11.000Z" - }, - "end": { - "$date": "2021-03-19T02:48:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a2eb5170-2c6c-4db5-87d4-94b934722ed3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-19T02:09:19.000Z" - }, - "end": { - "$date": "2021-03-19T02:48:30.000Z" - }, - "events": [ - { - "uuid": "1ed0067a-0493-4246-9965-d79a09360133", - "start": { - "$date": "2021-03-19T02:09:19.000Z" - }, - "end": { - "$date": "2021-03-19T02:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "46259f05-2abc-4b39-b0dc-066a26573fd7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-19T02:23:22.000Z" - }, - "end": { - "$date": "2021-03-19T02:57:34.000Z" - }, - "events": [ - { - "uuid": "d01ee225-3ba0-4dc1-a22a-a9c0cf6185c4", - "start": { - "$date": "2021-03-19T02:23:22.000Z" - }, - "end": { - "$date": "2021-03-19T02:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c0ab811f-92e0-4523-a17b-3935a1877835", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-19T02:43:49.000Z" - }, - "end": { - "$date": "2021-03-19T05:57:11.000Z" - }, - "events": [ - { - "uuid": "e1d9f5af-2476-45b2-9025-ab4a3cf3ed3c", - "start": { - "$date": "2021-03-19T02:43:49.000Z" - }, - "end": { - "$date": "2021-03-19T03:17:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "640ac567-ced2-47bf-9f60-038d43b4934f", - "start": { - "$date": "2021-03-19T03:17:49.000Z" - }, - "end": { - "$date": "2021-03-19T03:27:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23674532-2d38-4c7e-a7fb-9bbf39b86f00", - "start": { - "$date": "2021-03-19T03:27:49.000Z" - }, - "end": { - "$date": "2021-03-19T05:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a9a9371-b381-41fb-bcf6-cf216c9f0880", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-19T02:51:33.000Z" - }, - "end": { - "$date": "2021-03-19T06:40:12.000Z" - }, - "events": [ - { - "uuid": "1c6aeac0-3f2c-4045-9361-56c84b45375a", - "start": { - "$date": "2021-03-19T02:51:33.000Z" - }, - "end": { - "$date": "2021-03-19T06:40:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "803afc5e-6f57-4d67-ab25-27a3a32e535d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-19T02:52:35.000Z" - }, - "end": { - "$date": "2021-03-19T06:40:22.000Z" - }, - "events": [ - { - "uuid": "995b94fe-67e2-464f-8111-06d6a01dbeed", - "start": { - "$date": "2021-03-19T02:52:35.000Z" - }, - "end": { - "$date": "2021-03-19T03:25:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec9154af-db8d-4c0a-80b7-a37659dca717", - "start": { - "$date": "2021-03-19T03:25:35.000Z" - }, - "end": { - "$date": "2021-03-19T03:30:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53fc6005-63a5-47fd-972d-3fcbeef7c608", - "start": { - "$date": "2021-03-19T03:30:35.000Z" - }, - "end": { - "$date": "2021-03-19T03:32:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06499984-ca2e-4d31-ab0d-3528c120b978", - "start": { - "$date": "2021-03-19T03:32:35.000Z" - }, - "end": { - "$date": "2021-03-19T03:37:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa54b19d-262e-44c8-9e23-7958c4304560", - "start": { - "$date": "2021-03-19T03:37:35.000Z" - }, - "end": { - "$date": "2021-03-19T06:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c3d026f0-0e14-4c19-a56b-19ad5bfeea68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-19T02:57:44.000Z" - }, - "end": { - "$date": "2021-03-19T03:39:25.000Z" - }, - "events": [ - { - "uuid": "61911e5a-e857-434d-9fb8-118335912a7e", - "start": { - "$date": "2021-03-19T02:57:44.000Z" - }, - "end": { - "$date": "2021-03-19T03:39:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b6f035d-bd98-4e0f-ae03-2f1e21302442", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-19T03:08:12.000Z" - }, - "end": { - "$date": "2021-03-19T03:34:44.000Z" - }, - "events": [ - { - "uuid": "c0200d3a-3276-4624-b93a-59ec4fef2d19", - "start": { - "$date": "2021-03-19T03:08:12.000Z" - }, - "end": { - "$date": "2021-03-19T03:34:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8c6b812e-cd97-439d-bda1-c7f271aca66e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-19T03:10:22.000Z" - }, - "end": { - "$date": "2021-03-19T04:30:38.000Z" - }, - "events": [ - { - "uuid": "2d7e8baa-ba5a-46d5-b2e8-1bdfcbe2b0be", - "start": { - "$date": "2021-03-19T03:10:22.000Z" - }, - "end": { - "$date": "2021-03-19T04:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e420984-a5df-4ab7-b15a-24d6e9a573c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-19T03:10:31.000Z" - }, - "end": { - "$date": "2021-03-19T04:30:38.000Z" - }, - "events": [ - { - "uuid": "e181ca51-0e2a-48ba-9a23-cc20044e31b6", - "start": { - "$date": "2021-03-19T03:10:31.000Z" - }, - "end": { - "$date": "2021-03-19T04:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdeab1f6-ca2f-49de-b778-9815f7bdbc17", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-19T03:38:59.000Z" - }, - "end": { - "$date": "2021-03-19T04:17:02.000Z" - }, - "events": [ - { - "uuid": "0a64790b-4786-47f2-8dfc-0185e8a525cd", - "start": { - "$date": "2021-03-19T03:38:59.000Z" - }, - "end": { - "$date": "2021-03-19T04:17:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "7c47da0a-46b3-4c3d-aeeb-0f7e89e28dc1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-19T03:39:29.000Z" - }, - "end": { - "$date": "2021-03-19T03:51:30.000Z" - }, - "events": [ - { - "uuid": "eb743709-dfcc-4d11-a59d-9466e22e8d2e", - "start": { - "$date": "2021-03-19T03:39:29.000Z" - }, - "end": { - "$date": "2021-03-19T03:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "035d95d8-4872-4124-9923-57b0bf458170", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-19T04:10:41.000Z" - }, - "end": { - "$date": "2021-03-19T05:36:33.000Z" - }, - "events": [ - { - "uuid": "29aedc3e-0066-4d36-bf92-614b6e00a073", - "start": { - "$date": "2021-03-19T04:10:41.000Z" - }, - "end": { - "$date": "2021-03-19T05:36:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9dcf94b5-ad47-42f3-8b0e-98096fb3e87e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-19T05:03:09.000Z" - }, - "end": { - "$date": "2021-03-19T05:05:46.000Z" - }, - "events": [ - { - "uuid": "02b2d89c-9b1e-4214-9b51-f17a616b171e", - "start": { - "$date": "2021-03-19T05:03:09.000Z" - }, - "end": { - "$date": "2021-03-19T05:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d9ec12e5-6a72-4eed-96c3-a923b3ccec55", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-19T04:48:52.000Z" - }, - "end": { - "$date": "2021-03-19T08:24:48.000Z" - }, - "events": [ - { - "uuid": "cb73e430-4625-4a81-a0c9-71da8e294b1a", - "start": { - "$date": "2021-03-19T04:48:52.000Z" - }, - "end": { - "$date": "2021-03-19T08:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a19ea92c-cd14-4cd6-9760-95131265fb1b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-19T04:50:25.000Z" - }, - "end": { - "$date": "2021-03-19T05:36:41.000Z" - }, - "events": [ - { - "uuid": "133632fc-c3e5-4588-a2ba-9a2794bed8af", - "start": { - "$date": "2021-03-19T04:50:25.000Z" - }, - "end": { - "$date": "2021-03-19T05:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6ad7b557-e9cc-4e72-803a-5678cef6e985", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-19T13:13:19.000Z" - }, - "end": { - "$date": "2021-03-19T13:15:28.000Z" - }, - "events": [ - { - "uuid": "cab88827-d42e-4288-a84f-35d8daccd095", - "start": { - "$date": "2021-03-19T13:13:19.000Z" - }, - "end": { - "$date": "2021-03-19T13:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "4c49fe54-46fc-492d-981b-529b63e9603a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-19T13:17:34.000Z" - }, - "end": { - "$date": "2021-03-19T13:32:21.000Z" - }, - "events": [ - { - "uuid": "50f66c9d-3072-47bf-acb9-b943e90f0524", - "start": { - "$date": "2021-03-19T13:17:34.000Z" - }, - "end": { - "$date": "2021-03-19T13:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "794e5e39-749d-4012-9465-4332ac299d17", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-19T16:06:09.000Z" - }, - "end": { - "$date": "2021-03-19T17:22:47.000Z" - }, - "events": [ - { - "uuid": "26cb9f9e-15da-4016-9c8e-28419842c0ee", - "start": { - "$date": "2021-03-19T16:06:09.000Z" - }, - "end": { - "$date": "2021-03-19T17:22:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "41337d0c-1447-4648-8144-d3b8a3afe0fc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-19T16:31:54.000Z" - }, - "end": { - "$date": "2021-03-19T20:21:03.000Z" - }, - "events": [ - { - "uuid": "b6c6668d-1b06-4e47-bacc-58bd0e3d17ec", - "start": { - "$date": "2021-03-19T16:31:54.000Z" - }, - "end": { - "$date": "2021-03-19T20:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "30103ed5-5424-4516-8a5a-23d5505da44d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-19T16:40:05.000Z" - }, - "end": { - "$date": "2021-03-19T17:12:17.000Z" - }, - "events": [ - { - "uuid": "e64cc449-1de5-468c-819b-d786869c7139", - "start": { - "$date": "2021-03-19T16:40:05.000Z" - }, - "end": { - "$date": "2021-03-19T17:12:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77c45357-ff7e-43aa-8a11-a5dd6a2d37b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-19T19:27:11.000Z" - }, - "end": { - "$date": "2021-03-19T19:55:43.000Z" - }, - "events": [ - { - "uuid": "60ffdfa3-ff50-4424-ac34-95e35cd6272b", - "start": { - "$date": "2021-03-19T19:27:11.000Z" - }, - "end": { - "$date": "2021-03-19T19:55:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83aa015b-71b3-4623-8875-25331f096d6a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-19T19:59:43.000Z" - }, - "end": { - "$date": "2021-03-19T20:29:04.000Z" - }, - "events": [ - { - "uuid": "9c47457f-a7b5-4389-abbe-4ab8c477ba6b", - "start": { - "$date": "2021-03-19T19:59:43.000Z" - }, - "end": { - "$date": "2021-03-19T20:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "736025e9-ff4b-4b46-bdd6-73701daccbf7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-20T05:03:05.000Z" - }, - "end": { - "$date": "2021-03-20T05:09:01.000Z" - }, - "events": [ - { - "uuid": "f6c62a0c-5a15-4ace-a0ff-63e25d5111f3", - "start": { - "$date": "2021-03-20T05:03:05.000Z" - }, - "end": { - "$date": "2021-03-20T11:12:05.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "76009928-a7de-4a7f-a188-da3a97d44af3", - "start": { - "$date": "2021-03-20T11:12:05.000Z" - }, - "end": { - "$date": "2021-03-20T05:09:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "459eb68c-deaf-40c8-b002-dd48da882446", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T02:05:34.000Z" - }, - "end": { - "$date": "2021-03-20T02:36:34.000Z" - }, - "events": [ - { - "uuid": "20ae1ac4-f0af-4100-8d28-ae61f78476bd", - "start": { - "$date": "2021-03-20T02:05:34.000Z" - }, - "end": { - "$date": "2021-03-20T02:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3447e504-6e2c-413c-8a9a-060422915514", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-20T02:40:09.000Z" - }, - "end": { - "$date": "2021-03-20T04:25:48.000Z" - }, - "events": [ - { - "uuid": "5aacc957-e0d4-42be-91b6-1adaf71e6423", - "start": { - "$date": "2021-03-20T02:40:09.000Z" - }, - "end": { - "$date": "2021-03-20T04:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8b54736c-e73d-4556-8523-823f4936dd4f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T03:35:27.000Z" - }, - "end": { - "$date": "2021-03-20T04:12:39.000Z" - }, - "events": [ - { - "uuid": "6132d7d4-1645-4988-9f31-9c585091599a", - "start": { - "$date": "2021-03-20T03:35:27.000Z" - }, - "end": { - "$date": "2021-03-20T04:53:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa37b1ee-f491-472d-aa2e-25a8d471a072", - "start": { - "$date": "2021-03-20T04:53:27.000Z" - }, - "end": { - "$date": "2021-03-20T04:57:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c6e5629e-6751-4662-9215-63128e0cf06f", - "start": { - "$date": "2021-03-20T04:57:27.000Z" - }, - "end": { - "$date": "2021-03-20T04:12:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e766d90-4cea-4b51-b2a6-52fab41c2be9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-20T02:41:16.000Z" - }, - "end": { - "$date": "2021-03-20T03:47:48.000Z" - }, - "events": [ - { - "uuid": "383b5cfa-3229-4889-96d1-a0bf7d201645", - "start": { - "$date": "2021-03-20T02:41:16.000Z" - }, - "end": { - "$date": "2021-03-20T03:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8f4ca1ce-c56c-49cd-968c-3da06be30cab", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-20T03:04:00.000Z" - }, - "end": { - "$date": "2021-03-20T05:02:56.000Z" - }, - "events": [ - { - "uuid": "611b98a4-63fe-4619-8c61-104660ed3f4d", - "start": { - "$date": "2021-03-20T03:04:00.000Z" - }, - "end": { - "$date": "2021-03-20T05:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3af63f76-d8f6-4749-b439-1b2628cb82b9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-20T02:56:28.000Z" - }, - "end": { - "$date": "2021-03-20T05:03:04.000Z" - }, - "events": [ - { - "uuid": "7d123f25-ef87-419d-8d3c-f6b3e8bcabca", - "start": { - "$date": "2021-03-20T02:56:28.000Z" - }, - "end": { - "$date": "2021-03-20T05:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "69a89719-6ff4-43d0-adc3-18861c22f5a8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-20T02:44:45.000Z" - }, - "end": { - "$date": "2021-03-20T07:17:48.000Z" - }, - "events": [ - { - "uuid": "18f22985-d89e-4960-a439-9eca8a2b2a4f", - "start": { - "$date": "2021-03-20T02:44:45.000Z" - }, - "end": { - "$date": "2021-03-20T07:17:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d92482e7-84e8-44ec-9403-9bf5fa577c5f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T02:45:13.000Z" - }, - "end": { - "$date": "2021-03-20T06:03:25.000Z" - }, - "events": [ - { - "uuid": "163ae6f6-eadc-41b1-a3b9-880ab0f39ede", - "start": { - "$date": "2021-03-20T02:45:13.000Z" - }, - "end": { - "$date": "2021-03-20T06:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "17f6c21b-2193-415d-b0e9-361615878d5c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-20T03:27:17.000Z" - }, - "end": { - "$date": "2021-03-20T05:18:00.000Z" - }, - "events": [ - { - "uuid": "0b75dbfb-c846-432b-8ad2-f5e5ec4a564d", - "start": { - "$date": "2021-03-20T03:27:17.000Z" - }, - "end": { - "$date": "2021-03-20T05:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "05c77522-baea-47c7-a86b-8c07e828c0ee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-20T03:49:38.000Z" - }, - "end": { - "$date": "2021-03-20T07:17:36.000Z" - }, - "events": [ - { - "uuid": "5819d145-f1a7-41f1-ad89-9d14c21efdb4", - "start": { - "$date": "2021-03-20T03:49:38.000Z" - }, - "end": { - "$date": "2021-03-20T07:17:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f843c86d-a33b-4064-806e-9029f0c99bbd", - "uuid": "7a871dfa-4602-46e4-88c0-e21d6982c530", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-20T04:18:03.000Z" - }, - "end": { - "$date": "2021-03-20T05:43:37.000Z" - }, - "events": [ - { - "uuid": "ec5ee435-7d69-4687-b0d6-e56a00cf8040", - "start": { - "$date": "2021-03-20T04:18:03.000Z" - }, - "end": { - "$date": "2021-03-20T05:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0156964a-6d77-413a-b6b2-960333e6c392", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T05:40:53.000Z" - }, - "end": { - "$date": "2021-03-20T06:01:22.000Z" - }, - "events": [ - { - "uuid": "01d54b05-ee37-4909-9225-97e8c7798895", - "start": { - "$date": "2021-03-20T05:40:53.000Z" - }, - "end": { - "$date": "2021-03-20T06:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "222f2c53-552b-45e1-b755-537e1a6dd380", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-20T05:02:58.000Z" - }, - "end": { - "$date": "2021-03-20T07:33:26.000Z" - }, - "events": [ - { - "uuid": "6f2da505-e9c5-46a5-bb1a-08073830c2ad", - "start": { - "$date": "2021-03-20T05:02:58.000Z" - }, - "end": { - "$date": "2021-03-20T07:33:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "debe0c83-3114-42b3-bf93-5d1dc8b140bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-20T05:03:30.000Z" - }, - "end": { - "$date": "2021-03-20T07:25:49.000Z" - }, - "events": [ - { - "uuid": "e6d2107a-cc5b-407b-a02f-536a4f1af39d", - "start": { - "$date": "2021-03-20T05:03:30.000Z" - }, - "end": { - "$date": "2021-03-20T07:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "38e20546-be97-4ff6-aec6-064bbc35bc42", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-20T05:12:41.000Z" - }, - "end": { - "$date": "2021-03-20T07:09:44.000Z" - }, - "events": [ - { - "uuid": "9031d1f5-8787-417c-87b8-7bb5324b414a", - "start": { - "$date": "2021-03-20T05:12:41.000Z" - }, - "end": { - "$date": "2021-03-20T07:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "57babe70-9438-40d1-a34d-3f2f363263fc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-20T05:32:47.000Z" - }, - "end": { - "$date": "2021-03-20T05:50:00.000Z" - }, - "events": [ - { - "uuid": "27095309-de14-4dbe-82a4-7d673edc57b4", - "start": { - "$date": "2021-03-20T05:32:47.000Z" - }, - "end": { - "$date": "2021-03-20T05:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3942be9a-05b5-404f-89ab-b1497b92c6d6", - "uuid": "eb5eb1b1-e515-4a0a-9f2a-1ab7f50ac3fc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-20T05:44:37.000Z" - }, - "end": { - "$date": "2021-03-20T07:30:37.000Z" - }, - "events": [ - { - "uuid": "3898bc87-27c0-4823-a494-736575390a96", - "start": { - "$date": "2021-03-20T05:44:37.000Z" - }, - "end": { - "$date": "2021-03-20T07:30:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1ae0c89e-7ba2-4ca6-b871-b62f9bdb7457", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T06:01:33.000Z" - }, - "end": { - "$date": "2021-03-20T06:07:58.000Z" - }, - "events": [ - { - "uuid": "f3aa4c3d-2a09-4d7b-84ae-1d9e8bea9203", - "start": { - "$date": "2021-03-20T06:01:33.000Z" - }, - "end": { - "$date": "2021-03-20T06:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "0f6fa5f4-8570-4d37-a09d-025ba86eea81", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T06:14:54.000Z" - }, - "end": { - "$date": "2021-03-20T06:31:25.000Z" - }, - "events": [ - { - "uuid": "14d00435-ebd9-4111-be9c-2bb096e5f1ae", - "start": { - "$date": "2021-03-20T06:14:54.000Z" - }, - "end": { - "$date": "2021-03-20T06:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9100380d-62a4-4432-8e4e-9c2a736bd686", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T06:42:27.000Z" - }, - "end": { - "$date": "2021-03-20T07:21:47.000Z" - }, - "events": [ - { - "uuid": "cb6921c0-de2e-416b-8adc-90de6e23e1f1", - "start": { - "$date": "2021-03-20T06:42:27.000Z" - }, - "end": { - "$date": "2021-03-20T07:21:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "08e751d1-d0c5-4c56-b104-5240d8bf1b10", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-20T06:34:27.000Z" - }, - "end": { - "$date": "2021-03-20T08:32:04.000Z" - }, - "events": [ - { - "uuid": "a320de87-4c06-4efd-b88b-273f25bb9a48", - "start": { - "$date": "2021-03-20T06:34:27.000Z" - }, - "end": { - "$date": "2021-03-20T08:32:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98d4a0ad-4e90-48b7-8218-f2ddd7561cdb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-20T06:39:40.000Z" - }, - "end": { - "$date": "2021-03-20T07:06:24.000Z" - }, - "events": [ - { - "uuid": "43ffeda4-b89d-439e-ad96-74af10016472", - "start": { - "$date": "2021-03-20T06:39:40.000Z" - }, - "end": { - "$date": "2021-03-20T07:06:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "476df817-a44d-442b-a7e0-e1aaf9b01776", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-20T07:10:39.000Z" - }, - "end": { - "$date": "2021-03-20T08:35:31.000Z" - }, - "events": [ - { - "uuid": "41c6f4a6-10af-458a-bc61-c7b0cc2f13b0", - "start": { - "$date": "2021-03-20T07:10:39.000Z" - }, - "end": { - "$date": "2021-03-20T08:33:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7fe9fbb9-af5f-45a2-9ac1-425d4c18c068", - "start": { - "$date": "2021-03-20T08:33:39.000Z" - }, - "end": { - "$date": "2021-03-20T08:35:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "cacb6f13-1680-4068-a7a1-6367f865651c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T07:23:43.000Z" - }, - "end": { - "$date": "2021-03-20T07:29:15.000Z" - }, - "events": [ - { - "uuid": "2eb99fb1-c16b-4185-862f-1f51139f33a2", - "start": { - "$date": "2021-03-20T07:23:43.000Z" - }, - "end": { - "$date": "2021-03-20T07:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "41802920-e5f9-4efc-908e-efa6292d31f9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T14:24:29.000Z" - }, - "end": { - "$date": "2021-03-20T16:06:58.000Z" - }, - "events": [ - { - "uuid": "0431ef82-150f-4aa8-bcfa-624223b4f7a4", - "start": { - "$date": "2021-03-20T14:24:29.000Z" - }, - "end": { - "$date": "2021-03-20T16:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b34da525-1acd-4a19-bea8-33dcee806b7e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-20T15:27:16.000Z" - }, - "end": { - "$date": "2021-03-20T15:29:16.000Z" - }, - "events": [ - { - "uuid": "2feb40ba-456f-42a4-ab6c-5106f27698d5", - "start": { - "$date": "2021-03-20T15:27:16.000Z" - }, - "end": { - "$date": "2021-03-20T15:28:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d772da22-2e3b-43d0-80b7-ba6ed0a73784", - "start": { - "$date": "2021-03-20T15:28:16.000Z" - }, - "end": { - "$date": "2021-03-20T15:29:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3565f39d-39f5-4469-b0f9-5491fc9787ca", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-20T15:29:20.000Z" - }, - "end": { - "$date": "2021-03-20T16:16:30.000Z" - }, - "events": [ - { - "uuid": "f989e89d-54bc-4ed4-b01c-21de895d648d", - "start": { - "$date": "2021-03-20T15:29:20.000Z" - }, - "end": { - "$date": "2021-03-20T16:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "10aa1680-5d4b-4309-9962-999590fdd1a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T16:09:45.000Z" - }, - "end": { - "$date": "2021-03-20T16:21:15.000Z" - }, - "events": [ - { - "uuid": "d8bd38e2-65cb-4d96-b0de-c71fe7b0b602", - "start": { - "$date": "2021-03-20T16:09:45.000Z" - }, - "end": { - "$date": "2021-03-20T16:21:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ce46e49b-fc28-47ce-b70e-e06667e21983", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T16:12:04.000Z" - }, - "end": { - "$date": "2021-03-20T16:41:16.000Z" - }, - "events": [ - { - "uuid": "19eb45c2-b926-492f-b714-d0135b904e24", - "start": { - "$date": "2021-03-20T16:12:04.000Z" - }, - "end": { - "$date": "2021-03-20T16:41:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3ca52378-6377-441d-836b-2fb2cc29a9d9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T16:22:37.000Z" - }, - "end": { - "$date": "2021-03-20T17:13:01.000Z" - }, - "events": [ - { - "uuid": "f538e755-0740-406b-8d22-b494b38455d7", - "start": { - "$date": "2021-03-20T16:22:37.000Z" - }, - "end": { - "$date": "2021-03-20T17:13:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aea983ba-261c-4b3c-b537-94fc0664b7a4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T16:41:32.000Z" - }, - "end": { - "$date": "2021-03-20T17:50:52.000Z" - }, - "events": [ - { - "uuid": "deda0cc4-e55a-4291-9f5c-4c8ec9385d8c", - "start": { - "$date": "2021-03-20T16:41:32.000Z" - }, - "end": { - "$date": "2021-03-20T17:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7959e257-41fb-4ff6-ba0f-58f80bdd6bf6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-20T17:02:10.000Z" - }, - "end": { - "$date": "2021-03-20T17:34:52.000Z" - }, - "events": [ - { - "uuid": "7367ab3e-4a73-49cd-b357-3583ee574ff1", - "start": { - "$date": "2021-03-20T17:02:10.000Z" - }, - "end": { - "$date": "2021-03-20T17:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "061782be-04fc-4b3c-ada9-0a6d3546a7c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T17:13:47.000Z" - }, - "end": { - "$date": "2021-03-20T17:17:16.000Z" - }, - "events": [ - { - "uuid": "ed7d12ce-61c9-45ab-8414-995f53067bf7", - "start": { - "$date": "2021-03-20T17:13:47.000Z" - }, - "end": { - "$date": "2021-03-20T17:17:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8376dadc-473a-47a9-8cc1-402c5b156b23", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-20T17:17:28.000Z" - }, - "end": { - "$date": "2021-03-20T17:55:39.000Z" - }, - "events": [ - { - "uuid": "0e003d8d-506e-4a09-ae50-7d4a158f3fb8", - "start": { - "$date": "2021-03-20T17:17:28.000Z" - }, - "end": { - "$date": "2021-03-20T17:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1af4534e-0fb2-4a23-b400-ff46cd394033", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-20T17:35:51.000Z" - }, - "end": { - "$date": "2021-03-20T18:02:58.000Z" - }, - "events": [ - { - "uuid": "b1e34c4d-b75a-4f4f-8e13-594b9191be53", - "start": { - "$date": "2021-03-20T17:35:51.000Z" - }, - "end": { - "$date": "2021-03-20T18:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b955f45b-d57c-4a92-948c-73c3dc1d9fdb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-20T18:08:47.000Z" - }, - "end": { - "$date": "2021-03-20T18:39:09.000Z" - }, - "events": [ - { - "uuid": "7a393510-23eb-424b-9e2d-62e67ede53af", - "start": { - "$date": "2021-03-20T18:08:47.000Z" - }, - "end": { - "$date": "2021-03-20T18:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b8da782f-fae7-43e2-9b4b-0004ec0b6096", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-20T18:22:29.000Z" - }, - "end": { - "$date": "2021-03-20T18:29:30.000Z" - }, - "events": [ - { - "uuid": "bcfd8b37-6a92-44e8-aeca-bb4c681e80ce", - "start": { - "$date": "2021-03-20T18:22:29.000Z" - }, - "end": { - "$date": "2021-03-20T18:29:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e61556d2-c32a-4af0-a289-f606708036a9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-20T18:25:01.000Z" - }, - "end": { - "$date": "2021-03-20T22:11:33.000Z" - }, - "events": [ - { - "uuid": "da58f9fd-c39a-4d98-8b7f-f419e4960b9b", - "start": { - "$date": "2021-03-20T18:25:01.000Z" - }, - "end": { - "$date": "2021-03-20T22:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "408dd901-2ced-4122-8339-6b139342e357", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T19:00:38.000Z" - }, - "end": { - "$date": "2021-03-20T20:17:03.000Z" - }, - "events": [ - { - "uuid": "be7bb7e5-446d-49ec-b12c-eb9c48b7909c", - "start": { - "$date": "2021-03-20T19:00:38.000Z" - }, - "end": { - "$date": "2021-03-20T20:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb98232d-4535-4879-b68d-32e8fd409e96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-20T19:26:46.000Z" - }, - "end": { - "$date": "2021-03-20T19:54:08.000Z" - }, - "events": [ - { - "uuid": "a8628e00-06b6-440a-9e4e-0e8e60aae18e", - "start": { - "$date": "2021-03-20T19:26:46.000Z" - }, - "end": { - "$date": "2021-03-20T19:54:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7691bf72-3ba3-4e23-a959-f40334e87a76", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-20T20:10:58.000Z" - }, - "end": { - "$date": "2021-03-20T20:47:53.000Z" - }, - "events": [ - { - "uuid": "83d1383c-b8d2-4c86-b9a0-2360a757ffbf", - "start": { - "$date": "2021-03-20T20:10:58.000Z" - }, - "end": { - "$date": "2021-03-20T20:47:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6f97e9ce-1509-4678-91e2-5c49cfcc3cf5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T20:38:42.000Z" - }, - "end": { - "$date": "2021-03-20T21:17:29.000Z" - }, - "events": [ - { - "uuid": "bb2b938b-6fae-4b69-af51-d6bc3a0da410", - "start": { - "$date": "2021-03-20T20:38:42.000Z" - }, - "end": { - "$date": "2021-03-20T21:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0433d08-2540-4038-9d56-2a4813772472", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-20T21:17:18.000Z" - }, - "end": { - "$date": "2021-03-20T21:57:20.000Z" - }, - "events": [ - { - "uuid": "1e818260-8a19-4774-86b7-02f4657094e0", - "start": { - "$date": "2021-03-20T21:17:18.000Z" - }, - "end": { - "$date": "2021-03-20T21:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce9c6705-d371-469e-b6d0-45e033bd6282", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-20T21:25:08.000Z" - }, - "end": { - "$date": "2021-03-20T21:59:33.000Z" - }, - "events": [ - { - "uuid": "bb2a8251-834b-438a-9517-e130e0de1a9a", - "start": { - "$date": "2021-03-20T21:25:08.000Z" - }, - "end": { - "$date": "2021-03-20T21:59:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "017281ba-5189-4a16-ae25-b503d5b9e19e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T21:30:21.000Z" - }, - "end": { - "$date": "2021-03-20T21:40:51.000Z" - }, - "events": [ - { - "uuid": "efb35259-896a-46bf-b33b-6543e6b784cd", - "start": { - "$date": "2021-03-20T21:30:21.000Z" - }, - "end": { - "$date": "2021-03-20T21:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b15e4-43dc-4f53-b99e-6fd86914352e", - "uuid": "3f1d6ea0-6ff9-43a0-8f5a-db7503177eb8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-20T22:25:23.000Z" - }, - "end": { - "$date": "2021-03-20T22:44:56.000Z" - }, - "events": [ - { - "uuid": "1dd20658-8999-40ac-8219-da4e449e8d34", - "start": { - "$date": "2021-03-20T22:25:23.000Z" - }, - "end": { - "$date": "2021-03-20T22:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "64122bd3-af29-42b8-82de-1acc27d3d2ba", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T22:29:14.000Z" - }, - "end": { - "$date": "2021-03-20T22:31:49.000Z" - }, - "events": [ - { - "uuid": "2c63b556-d96f-40c7-ac27-5d7afdde485d", - "start": { - "$date": "2021-03-20T22:29:14.000Z" - }, - "end": { - "$date": "2021-03-20T22:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b15e4-43dc-4f53-b99e-6fd86914352e", - "uuid": "4f2240f0-2b6e-41a8-99a3-680062d27633", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-20T22:45:11.000Z" - }, - "end": { - "$date": "2021-03-20T23:09:09.000Z" - }, - "events": [ - { - "uuid": "91a703b6-21a2-40d0-904c-3ca2b1fee59c", - "start": { - "$date": "2021-03-20T22:45:11.000Z" - }, - "end": { - "$date": "2021-03-20T23:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eec72cfd-eb61-4a7e-a905-8e2b1e56a9ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T22:55:38.000Z" - }, - "end": { - "$date": "2021-03-20T22:57:08.000Z" - }, - "events": [ - { - "uuid": "d5fec615-da59-4be3-b30e-4c13adfec614", - "start": { - "$date": "2021-03-20T22:55:38.000Z" - }, - "end": { - "$date": "2021-03-20T22:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b15e4-43dc-4f53-b99e-6fd86914352e", - "uuid": "81081d8e-6f1a-4b6d-a69f-ebaa86181bd2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-20T23:09:39.000Z" - }, - "end": { - "$date": "2021-03-20T23:17:56.000Z" - }, - "events": [ - { - "uuid": "1c181db6-8cc6-435d-a482-181d40864a75", - "start": { - "$date": "2021-03-20T23:09:39.000Z" - }, - "end": { - "$date": "2021-03-20T23:17:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c51fae75-5ed3-4ef9-8ee6-d4227e53d1b8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-20T23:23:33.000Z" - }, - "end": { - "$date": "2021-03-21T00:35:14.000Z" - }, - "events": [ - { - "uuid": "68caef6f-b9fc-4ed3-9f2c-17ccc82cc51d", - "start": { - "$date": "2021-03-20T23:23:33.000Z" - }, - "end": { - "$date": "2021-03-21T00:35:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "68e303e2-1ab0-45d5-add6-2de530f5588f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-20T23:34:55.000Z" - }, - "end": { - "$date": "2021-03-20T23:41:21.000Z" - }, - "events": [ - { - "uuid": "ff8d5f0b-f147-4eee-a5c7-2a7b5c20c5d9", - "start": { - "$date": "2021-03-20T23:34:55.000Z" - }, - "end": { - "$date": "2021-03-20T23:41:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0f95f5d-e6e5-4369-a1b5-e7454b1f0624", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-20T23:51:27.000Z" - }, - "end": { - "$date": "2021-03-21T00:11:32.000Z" - }, - "events": [ - { - "uuid": "04a2cf3d-c09e-4b77-9abd-470ff6f79dd1", - "start": { - "$date": "2021-03-20T23:51:27.000Z" - }, - "end": { - "$date": "2021-03-21T00:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "b8d6fb2a-8f26-4749-828a-c861dc9496c7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-20T23:47:07.000Z" - }, - "end": { - "$date": "2021-03-21T04:42:12.000Z" - }, - "events": [ - { - "uuid": "804e4c7a-4daf-4e5c-a23f-aed3461a8787", - "start": { - "$date": "2021-03-20T23:47:07.000Z" - }, - "end": { - "$date": "2021-03-21T00:27:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cda29381-7325-4794-a4f0-5acfe56ed5ce", - "start": { - "$date": "2021-03-21T00:27:07.000Z" - }, - "end": { - "$date": "2021-03-21T00:41:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e98b3102-1be8-4687-bf85-5f07c1b2952f", - "start": { - "$date": "2021-03-21T00:41:07.000Z" - }, - "end": { - "$date": "2021-03-21T00:56:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c65ce82b-bfb5-417b-bd87-ae415948a5c1", - "start": { - "$date": "2021-03-21T00:56:07.000Z" - }, - "end": { - "$date": "2021-03-21T01:23:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "66f9d8a3-93d7-43d0-8f92-af3364cd24c9", - "start": { - "$date": "2021-03-21T01:23:07.000Z" - }, - "end": { - "$date": "2021-03-21T01:36:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19160a8e-a744-440f-8b89-330b3d0cda10", - "start": { - "$date": "2021-03-21T01:36:07.000Z" - }, - "end": { - "$date": "2021-03-21T01:54:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "12e5b59c-d77c-4f64-be03-835352a8f524", - "start": { - "$date": "2021-03-21T01:54:07.000Z" - }, - "end": { - "$date": "2021-03-21T01:56:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a7fbb4e-9f99-47fb-b674-d4286c2ef9d9", - "start": { - "$date": "2021-03-21T01:56:07.000Z" - }, - "end": { - "$date": "2021-03-21T02:29:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ed53f45-5ef6-4bfb-b171-0532d6a00ad6", - "start": { - "$date": "2021-03-21T02:29:07.000Z" - }, - "end": { - "$date": "2021-03-21T02:31:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc5a0a60-b304-4dac-8e2e-279dfde88d22", - "start": { - "$date": "2021-03-21T02:31:07.000Z" - }, - "end": { - "$date": "2021-03-21T03:23:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a436a22a-ed56-476a-ad15-15b7f688a0c7", - "start": { - "$date": "2021-03-21T03:23:07.000Z" - }, - "end": { - "$date": "2021-03-21T04:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce5900da-91eb-4135-9929-383361ee2a5f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-21T00:06:25.000Z" - }, - "end": { - "$date": "2021-03-21T00:09:06.000Z" - }, - "events": [ - { - "uuid": "3ea7efe4-c7a9-4799-b531-084a91c8ed27", - "start": { - "$date": "2021-03-21T00:06:25.000Z" - }, - "end": { - "$date": "2021-03-21T00:09:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "171d81ab-908a-4a88-a6ac-56984532008b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-21T00:12:14.000Z" - }, - "end": { - "$date": "2021-03-21T06:18:25.000Z" - }, - "events": [ - { - "uuid": "55a2b6ed-7135-4b78-8040-5ce940dc6ba6", - "start": { - "$date": "2021-03-21T00:12:14.000Z" - }, - "end": { - "$date": "2021-03-21T00:42:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce6916c4-7b0c-4499-a767-78e3e4cfe208", - "start": { - "$date": "2021-03-21T00:42:14.000Z" - }, - "end": { - "$date": "2021-03-21T01:56:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ece8bd38-e3a7-4636-80f6-5d86f34f8d2f", - "start": { - "$date": "2021-03-21T01:56:14.000Z" - }, - "end": { - "$date": "2021-03-21T02:07:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a86a4f4e-a93c-4d1e-98cf-4f93496de6dd", - "start": { - "$date": "2021-03-21T02:07:14.000Z" - }, - "end": { - "$date": "2021-03-21T02:33:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9935782-be8b-4cd7-8021-75f5b970f216", - "start": { - "$date": "2021-03-21T02:33:14.000Z" - }, - "end": { - "$date": "2021-03-21T02:47:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2324d7ab-90e8-45a7-8d29-19199de59833", - "start": { - "$date": "2021-03-21T02:47:14.000Z" - }, - "end": { - "$date": "2021-03-21T02:48:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a7f2a740-185a-4a62-8cba-2c717b9b067c", - "start": { - "$date": "2021-03-21T02:48:14.000Z" - }, - "end": { - "$date": "2021-03-21T02:58:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f39c570-31c3-42a8-a611-f6a062881303", - "start": { - "$date": "2021-03-21T02:58:14.000Z" - }, - "end": { - "$date": "2021-03-21T02:59:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff121361-5208-41c0-89c2-2dd308d8e134", - "start": { - "$date": "2021-03-21T02:59:14.000Z" - }, - "end": { - "$date": "2021-03-21T03:15:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "676a9ca8-7c16-483c-b940-3e79284217b4", - "start": { - "$date": "2021-03-21T03:15:14.000Z" - }, - "end": { - "$date": "2021-03-21T03:16:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9ae0c1ea-0d56-493b-b856-355c2bd60879", - "start": { - "$date": "2021-03-21T03:16:14.000Z" - }, - "end": { - "$date": "2021-03-21T06:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "96c81db9-d7e5-4434-9f6d-f8f7fdb45189", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-21T08:39:37.000Z" - }, - "end": { - "$date": "2021-03-21T08:57:54.000Z" - }, - "events": [ - { - "uuid": "7994e8eb-c30f-4dea-bab1-fc62ac9cb0d6", - "start": { - "$date": "2021-03-21T08:39:37.000Z" - }, - "end": { - "$date": "2021-03-21T11:11:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e4cca0c-f13f-422e-b6a6-9d96800d326b", - "start": { - "$date": "2021-03-21T11:11:37.000Z" - }, - "end": { - "$date": "2021-03-21T11:16:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2afaab12-bea7-42c6-bf2b-8e5c4e0af0f0", - "start": { - "$date": "2021-03-21T11:16:37.000Z" - }, - "end": { - "$date": "2021-03-21T11:26:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2be4276-570d-4c20-906b-24c021b2f9f6", - "start": { - "$date": "2021-03-21T11:26:37.000Z" - }, - "end": { - "$date": "2021-03-21T11:31:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4986886b-4f01-4e7f-a68b-751dfd626ff9", - "start": { - "$date": "2021-03-21T11:31:37.000Z" - }, - "end": { - "$date": "2021-03-21T08:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "50ff3e6f-33ef-40ea-bf19-a0112c665f86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T00:36:32.000Z" - }, - "end": { - "$date": "2021-03-21T03:20:09.000Z" - }, - "events": [ - { - "uuid": "f1e56d57-e056-4175-84bd-c920428f994b", - "start": { - "$date": "2021-03-21T00:36:32.000Z" - }, - "end": { - "$date": "2021-03-21T03:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "818f4fa2-841c-43c9-9faa-549b045294bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-21T02:09:34.000Z" - }, - "end": { - "$date": "2021-03-21T02:37:43.000Z" - }, - "events": [ - { - "uuid": "b160927f-9198-4a8c-bbc0-429b3558cd2d", - "start": { - "$date": "2021-03-21T02:09:34.000Z" - }, - "end": { - "$date": "2021-03-21T02:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47b24151-916c-4f13-8800-457f288bc97c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-21T03:02:32.000Z" - }, - "end": { - "$date": "2021-03-21T03:31:40.000Z" - }, - "events": [ - { - "uuid": "f36737d0-4e8b-427a-8eb1-5079239233c1", - "start": { - "$date": "2021-03-21T03:02:32.000Z" - }, - "end": { - "$date": "2021-03-21T03:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5dcdc59-01e4-4862-af0c-395ea00d58ac", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-21T03:51:06.000Z" - }, - "end": { - "$date": "2021-03-21T04:20:20.000Z" - }, - "events": [ - { - "uuid": "bedf6a0a-d6a3-4497-8195-583ae52858f2", - "start": { - "$date": "2021-03-21T03:51:06.000Z" - }, - "end": { - "$date": "2021-03-21T04:20:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c6940b34-3f83-4967-b53d-ce9555f938b6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-21T03:33:01.000Z" - }, - "end": { - "$date": "2021-03-21T04:44:53.000Z" - }, - "events": [ - { - "uuid": "6972491a-ed98-48b0-bcef-2cad57a659ad", - "start": { - "$date": "2021-03-21T03:33:01.000Z" - }, - "end": { - "$date": "2021-03-21T04:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b8da48c6-3a49-4864-a90e-2b46447680bc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-21T08:13:10.000Z" - }, - "end": { - "$date": "2021-03-21T08:53:31.000Z" - }, - "events": [ - { - "uuid": "ed2316ef-723c-4ed9-8e03-68602e21cf61", - "start": { - "$date": "2021-03-21T08:13:10.000Z" - }, - "end": { - "$date": "2021-03-21T08:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "90354e12-771f-4c2d-92e6-6a4acd38fcf7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-21T03:33:25.000Z" - }, - "end": { - "$date": "2021-03-21T05:47:05.000Z" - }, - "events": [ - { - "uuid": "0c298ed9-6ed5-483c-bdcd-45a60fc41882", - "start": { - "$date": "2021-03-21T03:33:25.000Z" - }, - "end": { - "$date": "2021-03-21T05:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "48fd522c-f8ff-4b03-9ae0-9f480c058759", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T04:00:33.000Z" - }, - "end": { - "$date": "2021-03-21T05:30:31.000Z" - }, - "events": [ - { - "uuid": "f0500462-3578-43a8-99a2-7de427fbddbc", - "start": { - "$date": "2021-03-21T04:00:33.000Z" - }, - "end": { - "$date": "2021-03-21T05:30:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "27c3048c-5edb-4789-b431-3a0d95c2a818", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-21T04:07:15.000Z" - }, - "end": { - "$date": "2021-03-21T07:51:02.000Z" - }, - "events": [ - { - "uuid": "a14fa828-846a-42c5-a2d0-b8518dff1f69", - "start": { - "$date": "2021-03-21T04:07:15.000Z" - }, - "end": { - "$date": "2021-03-21T07:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "108a0559-c542-47ab-9bfe-bfe3f84b7295", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T04:11:43.000Z" - }, - "end": { - "$date": "2021-03-21T06:26:30.000Z" - }, - "events": [ - { - "uuid": "6f1ca011-2300-452b-8212-123cb164c82b", - "start": { - "$date": "2021-03-21T04:11:43.000Z" - }, - "end": { - "$date": "2021-03-21T06:26:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a4f1c04d-d3a4-4596-8437-22c91f2a85bb", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-21T04:45:47.000Z" - }, - "end": { - "$date": "2021-03-21T06:59:52.000Z" - }, - "events": [ - { - "uuid": "226dd777-5898-48fc-b019-a61d8b37500a", - "start": { - "$date": "2021-03-21T04:45:47.000Z" - }, - "end": { - "$date": "2021-03-21T06:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2b53a923-2b8c-4c8f-9d55-77687404a4d0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T05:34:56.000Z" - }, - "end": { - "$date": "2021-03-21T07:22:54.000Z" - }, - "events": [ - { - "uuid": "8a2d928a-851c-447f-a5de-0cf5af7c6d6c", - "start": { - "$date": "2021-03-21T05:34:56.000Z" - }, - "end": { - "$date": "2021-03-21T07:22:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3fcd1599-1196-4ef9-be98-bebcbf58b9c5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-21T06:17:26.000Z" - }, - "end": { - "$date": "2021-03-21T07:49:51.000Z" - }, - "events": [ - { - "uuid": "34d92c38-9711-4bf0-8802-e255912c9e84", - "start": { - "$date": "2021-03-21T06:17:26.000Z" - }, - "end": { - "$date": "2021-03-21T07:49:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "af33d64a-8030-4f68-97c8-4686bcea995a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-21T06:38:31.000Z" - }, - "end": { - "$date": "2021-03-21T06:38:35.000Z" - }, - "events": [ - { - "uuid": "948b996c-1e71-4be1-9354-0bb88b03b892", - "start": { - "$date": "2021-03-21T06:38:31.000Z" - }, - "end": { - "$date": "2021-03-21T06:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cd951028-3b63-4460-8fe4-2e445d2fa28f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T06:27:00.000Z" - }, - "end": { - "$date": "2021-03-21T06:33:35.000Z" - }, - "events": [ - { - "uuid": "ea12f551-7703-47ae-bff6-aeb7efaecf6b", - "start": { - "$date": "2021-03-21T06:27:00.000Z" - }, - "end": { - "$date": "2021-03-21T06:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "20fc775c-dcbb-4e1b-8661-7ca3ab6183fa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-21T06:41:31.000Z" - }, - "end": { - "$date": "2021-03-21T07:22:30.000Z" - }, - "events": [ - { - "uuid": "11ac961a-ce50-46b6-810a-20d7b569b6df", - "start": { - "$date": "2021-03-21T06:41:31.000Z" - }, - "end": { - "$date": "2021-03-21T07:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "95bc27ca-99fe-4ffe-9c46-4134d4597925", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-21T07:51:14.000Z" - }, - "end": { - "$date": "2021-03-21T08:06:16.000Z" - }, - "events": [ - { - "uuid": "67767a1e-e248-4266-b7c6-4813bb54f5c5", - "start": { - "$date": "2021-03-21T07:51:14.000Z" - }, - "end": { - "$date": "2021-03-21T08:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8abc1bc9-0f64-4920-be4d-997c5d1153ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-21T08:08:03.000Z" - }, - "end": { - "$date": "2021-03-21T08:53:10.000Z" - }, - "events": [ - { - "uuid": "de02de87-0579-4ce6-b66b-f691f5cdf23f", - "start": { - "$date": "2021-03-21T08:08:03.000Z" - }, - "end": { - "$date": "2021-03-21T08:53:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16c4a915-4686-4f2e-a930-7a90cff855b0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-21T08:21:04.000Z" - }, - "end": { - "$date": "2021-03-21T09:21:22.000Z" - }, - "events": [ - { - "uuid": "bcf22fb9-15f9-4f1c-9d8c-a8c63d86f6e0", - "start": { - "$date": "2021-03-21T08:21:04.000Z" - }, - "end": { - "$date": "2021-03-21T09:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "51fbc3e3-a582-4a4a-900d-61f0bc300bbc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-21T08:56:56.000Z" - }, - "end": { - "$date": "2021-03-21T09:11:21.000Z" - }, - "events": [ - { - "uuid": "6397e205-fe74-4017-bc8a-f822a9613eab", - "start": { - "$date": "2021-03-21T08:56:56.000Z" - }, - "end": { - "$date": "2021-03-21T09:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "43af84b1-6dc0-4cbc-bfad-67dd2af54800", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T13:31:24.000Z" - }, - "end": { - "$date": "2021-03-21T15:02:05.000Z" - }, - "events": [ - { - "uuid": "4ab62246-1034-481a-9db7-a0a1b640da5a", - "start": { - "$date": "2021-03-21T13:31:24.000Z" - }, - "end": { - "$date": "2021-03-21T14:22:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "84d263d1-1c6c-4a70-8180-91e0f28ac69e", - "start": { - "$date": "2021-03-21T14:22:24.000Z" - }, - "end": { - "$date": "2021-03-21T14:25:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c4c8032-4eef-4c51-87a9-5b1f398b8e6b", - "start": { - "$date": "2021-03-21T14:25:24.000Z" - }, - "end": { - "$date": "2021-03-21T15:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "40432145-493f-4ae7-9cba-5c0db18304e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T15:02:15.000Z" - }, - "end": { - "$date": "2021-03-21T15:04:10.000Z" - }, - "events": [ - { - "uuid": "eafb4188-eec6-417f-83fe-cb337eeaa947", - "start": { - "$date": "2021-03-21T15:02:15.000Z" - }, - "end": { - "$date": "2021-03-21T15:04:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6277e574-0225-430f-8812-bd4b7571acb3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T15:06:15.000Z" - }, - "end": { - "$date": "2021-03-21T15:19:06.000Z" - }, - "events": [ - { - "uuid": "db9b5d78-bc31-47e7-a6ee-75d85966f49a", - "start": { - "$date": "2021-03-21T15:06:15.000Z" - }, - "end": { - "$date": "2021-03-21T15:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "069221b4-73cc-47cd-8289-45bc3189ac9b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T15:19:40.000Z" - }, - "end": { - "$date": "2021-03-21T15:24:36.000Z" - }, - "events": [ - { - "uuid": "56f8ca70-989b-4c53-9310-477f464f9d6b", - "start": { - "$date": "2021-03-21T15:19:40.000Z" - }, - "end": { - "$date": "2021-03-21T15:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "c259fd98-b006-4459-8056-2961cd37ca5c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T15:26:16.000Z" - }, - "end": { - "$date": "2021-03-21T15:52:34.000Z" - }, - "events": [ - { - "uuid": "c04374d7-3ea3-4dba-b416-7fbd68f56f8d", - "start": { - "$date": "2021-03-21T15:26:16.000Z" - }, - "end": { - "$date": "2021-03-21T15:37:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ec08fc3-e8ec-4962-9690-102c3a6b63d5", - "start": { - "$date": "2021-03-21T15:37:16.000Z" - }, - "end": { - "$date": "2021-03-21T15:42:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48c4b7e4-1c70-441b-a649-16c97517dcb2", - "start": { - "$date": "2021-03-21T15:42:16.000Z" - }, - "end": { - "$date": "2021-03-21T15:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ffd56ac8-e3ad-4dd9-9aae-a94a2be84f8f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T15:43:15.000Z" - }, - "end": { - "$date": "2021-03-21T16:48:12.000Z" - }, - "events": [ - { - "uuid": "8196519b-c892-4679-9c6a-7a44c7736359", - "start": { - "$date": "2021-03-21T15:43:15.000Z" - }, - "end": { - "$date": "2021-03-21T16:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8c4ee94d-214d-4907-8653-724986255623", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T15:52:39.000Z" - }, - "end": { - "$date": "2021-03-21T16:48:12.000Z" - }, - "events": [ - { - "uuid": "56a4639d-a7eb-457c-9ad1-d840c28e5790", - "start": { - "$date": "2021-03-21T15:52:39.000Z" - }, - "end": { - "$date": "2021-03-21T16:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "00e5b66b-27a3-48f3-902c-46939b9747a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-21T16:59:23.000Z" - }, - "end": { - "$date": "2021-03-21T19:38:07.000Z" - }, - "events": [ - { - "uuid": "c8fd5e4d-d925-4a3b-8fb3-4b86268260ac", - "start": { - "$date": "2021-03-21T16:59:23.000Z" - }, - "end": { - "$date": "2021-03-21T19:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "ee9a7bca-61ea-4511-bba3-4feed72159f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T17:03:39.000Z" - }, - "end": { - "$date": "2021-03-21T20:10:02.000Z" - }, - "events": [ - { - "uuid": "4981c275-fa66-400b-9034-2c2508ee1139", - "start": { - "$date": "2021-03-21T17:03:39.000Z" - }, - "end": { - "$date": "2021-03-21T20:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49558c66-f2c9-41b8-b26a-c49f29fb3dc7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T18:37:30.000Z" - }, - "end": { - "$date": "2021-03-21T19:07:25.000Z" - }, - "events": [ - { - "uuid": "bab1446d-dd9f-4e00-b343-61f588c31b4e", - "start": { - "$date": "2021-03-21T18:37:30.000Z" - }, - "end": { - "$date": "2021-03-21T19:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "236f44f8-f91c-45bf-b42c-53de0959f44c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-21T19:26:04.000Z" - }, - "end": { - "$date": "2021-03-21T20:16:15.000Z" - }, - "events": [ - { - "uuid": "3efd010b-f7cc-4fde-bfab-77a01cb66b58", - "start": { - "$date": "2021-03-21T19:26:04.000Z" - }, - "end": { - "$date": "2021-03-21T20:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "51b003e1-8820-4fa7-aaf1-70eb0660f10a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T19:55:53.000Z" - }, - "end": { - "$date": "2021-03-21T20:00:49.000Z" - }, - "events": [ - { - "uuid": "5e28b7b4-48bd-4227-9b12-65e467e0e207", - "start": { - "$date": "2021-03-21T19:55:53.000Z" - }, - "end": { - "$date": "2021-03-21T20:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8971ecfb-9b00-4583-b8d7-40c60e8a23ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T20:11:13.000Z" - }, - "end": { - "$date": "2021-03-21T20:25:39.000Z" - }, - "events": [ - { - "uuid": "30f9bd0e-c836-46d2-8b5b-9bfcc58cd4cf", - "start": { - "$date": "2021-03-21T20:11:13.000Z" - }, - "end": { - "$date": "2021-03-21T20:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d8f43690-83d7-47f2-94c6-3b74f42acb6c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-21T20:11:17.000Z" - }, - "end": { - "$date": "2021-03-21T20:14:47.000Z" - }, - "events": [ - { - "uuid": "e63ce7ab-3465-4d47-be29-270aa70380c9", - "start": { - "$date": "2021-03-21T20:11:17.000Z" - }, - "end": { - "$date": "2021-03-21T20:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "76646b8d-4103-468b-95a7-027b8d03abf7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-21T20:17:02.000Z" - }, - "end": { - "$date": "2021-03-21T22:05:41.000Z" - }, - "events": [ - { - "uuid": "cbe055ae-abfa-44d7-aa0e-cd36bcd742f2", - "start": { - "$date": "2021-03-21T20:17:02.000Z" - }, - "end": { - "$date": "2021-03-21T22:05:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f58a5377-275d-4a48-a456-c829a5c1b73b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T20:26:05.000Z" - }, - "end": { - "$date": "2021-03-21T22:20:15.000Z" - }, - "events": [ - { - "uuid": "d81f3c97-b750-4a85-ad45-314ce6a39361", - "start": { - "$date": "2021-03-21T20:26:05.000Z" - }, - "end": { - "$date": "2021-03-21T22:20:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c568e7d-767e-4830-ac23-d812c505fe25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-21T20:41:56.000Z" - }, - "end": { - "$date": "2021-03-21T21:10:59.000Z" - }, - "events": [ - { - "uuid": "3ca218f9-385f-4dc5-9d9c-541fb746653a", - "start": { - "$date": "2021-03-21T20:41:56.000Z" - }, - "end": { - "$date": "2021-03-21T21:10:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5b975978-a7d3-467b-ab6c-eda39b24bc19", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-21T21:57:00.000Z" - }, - "end": { - "$date": "2021-03-21T23:44:05.000Z" - }, - "events": [ - { - "uuid": "0cc541b7-6d43-49bc-90fe-6fd3d480728a", - "start": { - "$date": "2021-03-21T21:57:00.000Z" - }, - "end": { - "$date": "2021-03-21T23:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "179e18cd-0e4e-44ab-bd21-0948ac58f11d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T22:21:00.000Z" - }, - "end": { - "$date": "2021-03-21T22:49:16.000Z" - }, - "events": [ - { - "uuid": "91a9cc85-b4f6-410a-98f6-b530d9e45c94", - "start": { - "$date": "2021-03-21T22:21:00.000Z" - }, - "end": { - "$date": "2021-03-21T22:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "6937caee-60cb-4f51-a722-41c96411068e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T22:47:49.000Z" - }, - "end": { - "$date": "2021-03-21T23:08:47.000Z" - }, - "events": [ - { - "uuid": "be6d4288-9146-494c-ac67-6a4bd8c67a1b", - "start": { - "$date": "2021-03-21T22:47:49.000Z" - }, - "end": { - "$date": "2021-03-21T23:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c73efb64-24cd-4a86-b114-b498971045c9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T22:50:07.000Z" - }, - "end": { - "$date": "2021-03-21T23:33:58.000Z" - }, - "events": [ - { - "uuid": "e8b322b3-0c1f-4707-a22e-9bff806c30a3", - "start": { - "$date": "2021-03-21T22:50:07.000Z" - }, - "end": { - "$date": "2021-03-21T23:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "d36d4b9c-c339-4250-bd6a-1746da8f3382", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-21T22:56:51.000Z" - }, - "end": { - "$date": "2021-03-21T22:59:17.000Z" - }, - "events": [ - { - "uuid": "eb725db4-7824-4590-830d-5a5859239850", - "start": { - "$date": "2021-03-21T22:56:51.000Z" - }, - "end": { - "$date": "2021-03-21T22:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "a0811ea5-163e-4d0e-8127-bc20375e79c0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-21T22:59:47.000Z" - }, - "end": { - "$date": "2021-03-21T23:12:00.000Z" - }, - "events": [ - { - "uuid": "1319208c-2256-4e4e-ad84-1d387573fd1f", - "start": { - "$date": "2021-03-21T22:59:47.000Z" - }, - "end": { - "$date": "2021-03-21T23:12:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "db6b6e68-30fb-407f-9cbd-955b34f815d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T23:09:57.000Z" - }, - "end": { - "$date": "2021-03-21T23:16:22.000Z" - }, - "events": [ - { - "uuid": "d29abe0f-2ec8-4b20-ab9b-c91cb95d1aad", - "start": { - "$date": "2021-03-21T23:09:57.000Z" - }, - "end": { - "$date": "2021-03-21T23:16:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "1b3e6d9c-bdcd-4e5b-818a-ce846800ff2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-21T23:13:45.000Z" - }, - "end": { - "$date": "2021-03-21T23:17:06.000Z" - }, - "events": [ - { - "uuid": "15af9279-33aa-45e3-ab78-d3362dc967d7", - "start": { - "$date": "2021-03-21T23:13:45.000Z" - }, - "end": { - "$date": "2021-03-21T23:17:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "0220655e-7baf-4ca3-a637-e0405a790d39", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T23:17:03.000Z" - }, - "end": { - "$date": "2021-03-21T23:51:54.000Z" - }, - "events": [ - { - "uuid": "99909d72-920b-4fde-8c6c-411a2ba9a08a", - "start": { - "$date": "2021-03-21T23:17:03.000Z" - }, - "end": { - "$date": "2021-03-21T23:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "310d91b1-9b1f-4d61-99b7-a247f6dc97f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-21T23:17:45.000Z" - }, - "end": { - "$date": "2021-03-21T23:51:49.000Z" - }, - "events": [ - { - "uuid": "4cb0e2f5-35d0-4d68-8f77-a050b2550d54", - "start": { - "$date": "2021-03-21T23:17:45.000Z" - }, - "end": { - "$date": "2021-03-21T23:51:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "803d1a1c-6e3c-4a71-a3ce-d4031dfd89c3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-21T23:43:00.000Z" - }, - "end": { - "$date": "2021-03-22T04:01:26.000Z" - }, - "events": [ - { - "uuid": "2d5a45e6-f5fe-4854-8235-fc2de670b17f", - "start": { - "$date": "2021-03-21T23:43:00.000Z" - }, - "end": { - "$date": "2021-03-22T04:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfa042f4-328c-43c2-8838-e98e9b5063ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-21T23:54:19.000Z" - }, - "end": { - "$date": "2021-03-22T00:23:18.000Z" - }, - "events": [ - { - "uuid": "e67d59ac-2286-492f-9e23-d27fe5951738", - "start": { - "$date": "2021-03-21T23:54:19.000Z" - }, - "end": { - "$date": "2021-03-22T00:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf7de0fb-9602-43a5-8076-1ddf90d32783", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-22T00:24:54.000Z" - }, - "end": { - "$date": "2021-03-22T00:50:48.000Z" - }, - "events": [ - { - "uuid": "99cf680f-77f0-4006-9012-130b45c0e6ac", - "start": { - "$date": "2021-03-22T00:24:54.000Z" - }, - "end": { - "$date": "2021-03-22T00:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b02f61c-75cb-43ad-9160-6ea47042542e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-22T00:39:40.000Z" - }, - "end": { - "$date": "2021-03-22T01:12:27.000Z" - }, - "events": [ - { - "uuid": "e733a7a1-402e-4f6a-b4ee-37ffd9f284f6", - "start": { - "$date": "2021-03-22T00:39:40.000Z" - }, - "end": { - "$date": "2021-03-22T01:12:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02c161c8-0f87-409c-addd-d3aafb244d15", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-22T01:25:45.000Z" - }, - "end": { - "$date": "2021-03-22T01:53:04.000Z" - }, - "events": [ - { - "uuid": "c1845ef6-fc14-49a4-add4-e4c90f366fda", - "start": { - "$date": "2021-03-22T01:25:45.000Z" - }, - "end": { - "$date": "2021-03-22T01:53:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "517fb027-edac-4888-9f2a-77601c892d94", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T02:22:15.000Z" - }, - "end": { - "$date": "2021-03-22T02:56:54.000Z" - }, - "events": [ - { - "uuid": "bb4e21f6-93f2-41b1-bf01-26070ac478ae", - "start": { - "$date": "2021-03-22T02:22:15.000Z" - }, - "end": { - "$date": "2021-03-22T02:56:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4f8eb507-eb92-47f9-80ed-6277c3eecec1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-22T02:29:41.000Z" - }, - "end": { - "$date": "2021-03-22T02:56:17.000Z" - }, - "events": [ - { - "uuid": "c8b0d660-329d-4202-a5aa-f583cdb15ca3", - "start": { - "$date": "2021-03-22T02:29:41.000Z" - }, - "end": { - "$date": "2021-03-22T02:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bd06f32c-6bc1-43ba-b2db-8af4d8f4716d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T02:57:24.000Z" - }, - "end": { - "$date": "2021-03-22T02:58:34.000Z" - }, - "events": [ - { - "uuid": "b13674ee-04de-4eb2-b756-c2065ef2bed0", - "start": { - "$date": "2021-03-22T02:57:24.000Z" - }, - "end": { - "$date": "2021-03-22T02:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ebe87ad2-cf8b-4778-9af2-5bf49f3fc003", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-22T02:58:02.000Z" - }, - "end": { - "$date": "2021-03-22T05:28:40.000Z" - }, - "events": [ - { - "uuid": "a45e1637-173e-4e60-a40e-dba6cc1571b0", - "start": { - "$date": "2021-03-22T02:58:02.000Z" - }, - "end": { - "$date": "2021-03-22T05:28:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e7b269a8-a78a-45e0-83a6-31a44e915285", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T02:58:39.000Z" - }, - "end": { - "$date": "2021-03-22T05:28:32.000Z" - }, - "events": [ - { - "uuid": "670ab627-7f66-47ce-b461-efad7d1b881b", - "start": { - "$date": "2021-03-22T02:58:39.000Z" - }, - "end": { - "$date": "2021-03-22T05:28:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "80242da8-13ce-4157-b15a-06f6fc835618", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-22T02:59:48.000Z" - }, - "end": { - "$date": "2021-03-22T05:26:52.000Z" - }, - "events": [ - { - "uuid": "cda4c2f9-53e9-486e-967d-b92a8e0b9f1a", - "start": { - "$date": "2021-03-22T02:59:48.000Z" - }, - "end": { - "$date": "2021-03-22T05:26:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b6494f8-05d2-4cda-b690-71425e61c02a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-22T03:27:25.000Z" - }, - "end": { - "$date": "2021-03-22T04:04:57.000Z" - }, - "events": [ - { - "uuid": "56a89837-cda3-4ab6-8383-1e09bf297eaa", - "start": { - "$date": "2021-03-22T03:27:25.000Z" - }, - "end": { - "$date": "2021-03-22T04:04:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3835fbb-e927-4c23-a70c-e94783b56095", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-22T04:10:27.000Z" - }, - "end": { - "$date": "2021-03-22T04:46:20.000Z" - }, - "events": [ - { - "uuid": "8e05e0cd-93e7-4a28-b570-fc6028d93d3a", - "start": { - "$date": "2021-03-22T04:10:27.000Z" - }, - "end": { - "$date": "2021-03-22T04:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82dc958f-9ae0-44e5-84dc-a2be3fe82da5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-22T04:29:31.000Z" - }, - "end": { - "$date": "2021-03-22T05:01:44.000Z" - }, - "events": [ - { - "uuid": "1ebc549e-f0ad-4edc-a6c7-80fc9bf4c628", - "start": { - "$date": "2021-03-22T04:29:31.000Z" - }, - "end": { - "$date": "2021-03-22T05:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9930b7ed-4901-44cc-9af7-5d31a909ff6a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-22T05:12:24.000Z" - }, - "end": { - "$date": "2021-03-22T05:40:30.000Z" - }, - "events": [ - { - "uuid": "6c56fd90-85f5-478c-aa5a-4437a6828447", - "start": { - "$date": "2021-03-22T05:12:24.000Z" - }, - "end": { - "$date": "2021-03-22T05:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c020b36-7a78-4d76-aceb-10756641bdc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-22T05:05:20.000Z" - }, - "end": { - "$date": "2021-03-22T05:34:07.000Z" - }, - "events": [ - { - "uuid": "3c7270df-3ed6-4762-ad13-3099d1748334", - "start": { - "$date": "2021-03-22T05:05:20.000Z" - }, - "end": { - "$date": "2021-03-22T05:34:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d0656a9d-26e3-413f-bf1d-4e0d9b0c6b3f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-22T05:27:59.000Z" - }, - "end": { - "$date": "2021-03-22T05:31:54.000Z" - }, - "events": [ - { - "uuid": "c5f084f5-74fd-4608-bf15-0e67c51c00c9", - "start": { - "$date": "2021-03-22T05:27:59.000Z" - }, - "end": { - "$date": "2021-03-22T05:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7058eaaf-3d2b-441e-90b5-30ece74181d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-22T15:13:25.000Z" - }, - "end": { - "$date": "2021-03-22T15:44:58.000Z" - }, - "events": [ - { - "uuid": "a9d6a04d-ba2b-42e7-9890-b0ab2f9cd536", - "start": { - "$date": "2021-03-22T15:13:25.000Z" - }, - "end": { - "$date": "2021-03-22T15:44:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b71459b-7f5b-4711-a512-11d586a1da9a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-22T15:48:49.000Z" - }, - "end": { - "$date": "2021-03-22T16:27:58.000Z" - }, - "events": [ - { - "uuid": "3910b2ee-af18-457f-8356-86360149a9f7", - "start": { - "$date": "2021-03-22T15:48:49.000Z" - }, - "end": { - "$date": "2021-03-22T16:27:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bc7f8350-0fcd-47f6-a4cd-de56e2dc7511", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T16:14:16.000Z" - }, - "end": { - "$date": "2021-03-22T16:14:53.000Z" - }, - "events": [ - { - "uuid": "3d82002c-484f-44ce-ad8f-c258c1810056", - "start": { - "$date": "2021-03-22T16:14:16.000Z" - }, - "end": { - "$date": "2021-03-22T16:14:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "05ec3702-238a-4c08-a506-24e72d87c78b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T16:15:02.000Z" - }, - "end": { - "$date": "2021-03-22T17:47:42.000Z" - }, - "events": [ - { - "uuid": "1a37a31e-1c96-4202-8065-0fd8a103a2cd", - "start": { - "$date": "2021-03-22T16:15:02.000Z" - }, - "end": { - "$date": "2021-03-22T17:06:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09dac46b-9317-4532-8966-ba562a77a54b", - "start": { - "$date": "2021-03-22T17:06:02.000Z" - }, - "end": { - "$date": "2021-03-22T17:07:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6a1854c1-697b-4810-bc19-76f17e13099d", - "start": { - "$date": "2021-03-22T17:07:02.000Z" - }, - "end": { - "$date": "2021-03-22T17:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9f514f35-993d-4714-9911-c98b6bdb24e3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-22T20:00:53.000Z" - }, - "end": { - "$date": "2021-03-22T20:08:04.000Z" - }, - "events": [ - { - "uuid": "c0215874-bf0b-4503-9001-05215c4eaa84", - "start": { - "$date": "2021-03-22T20:00:53.000Z" - }, - "end": { - "$date": "2021-03-22T20:40:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64721b67-0760-4b3c-96e2-bff38c119c89", - "start": { - "$date": "2021-03-22T20:40:53.000Z" - }, - "end": { - "$date": "2021-03-22T20:54:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bfa2bca9-ad87-4c6c-9118-1ede989a1539", - "start": { - "$date": "2021-03-22T20:54:53.000Z" - }, - "end": { - "$date": "2021-03-22T20:58:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab5845a1-bc72-4ee9-93c0-1649cf6164f5", - "start": { - "$date": "2021-03-22T20:58:53.000Z" - }, - "end": { - "$date": "2021-03-22T21:15:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7458bad6-885a-4711-bba8-9d3233c6841c", - "start": { - "$date": "2021-03-22T21:15:53.000Z" - }, - "end": { - "$date": "2021-03-22T21:33:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "393c5fd3-33d6-44f4-af4d-e91769efea0f", - "start": { - "$date": "2021-03-22T21:33:53.000Z" - }, - "end": { - "$date": "2021-03-22T22:01:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a6dfd874-ec5e-481d-a2db-ef2d850dafdb", - "start": { - "$date": "2021-03-22T22:01:53.000Z" - }, - "end": { - "$date": "2021-03-22T20:08:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3bc0817-2a02-4b82-aeaf-0439ac24a194", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-22T18:08:49.000Z" - }, - "end": { - "$date": "2021-03-22T18:42:31.000Z" - }, - "events": [ - { - "uuid": "4ea3e2f9-a222-4398-9d77-d746af635ee3", - "start": { - "$date": "2021-03-22T18:08:49.000Z" - }, - "end": { - "$date": "2021-03-22T18:42:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "815a963e-bb14-4fd7-a008-628f50e68692", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-22T18:30:03.000Z" - }, - "end": { - "$date": "2021-03-22T20:03:06.000Z" - }, - "events": [ - { - "uuid": "5ec12a76-f71e-4e73-bc5f-4994e84da66e", - "start": { - "$date": "2021-03-22T18:30:03.000Z" - }, - "end": { - "$date": "2021-03-22T20:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "224e488d-151e-4a86-872d-867be01b177c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-22T18:31:47.000Z" - }, - "end": { - "$date": "2021-03-22T18:59:58.000Z" - }, - "events": [ - { - "uuid": "39c6baab-14f1-443d-85e9-6154526b5b8b", - "start": { - "$date": "2021-03-22T18:31:47.000Z" - }, - "end": { - "$date": "2021-03-22T18:59:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb3021fb-4d56-47ef-b3b9-693cdc3d05da", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-22T18:58:48.000Z" - }, - "end": { - "$date": "2021-03-22T19:27:35.000Z" - }, - "events": [ - { - "uuid": "515fdf41-781c-472d-b413-210604cdf387", - "start": { - "$date": "2021-03-22T18:58:48.000Z" - }, - "end": { - "$date": "2021-03-22T19:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3b37846f-37b7-4523-a699-7c3371c73bc5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-22T19:01:59.000Z" - }, - "end": { - "$date": "2021-03-22T19:05:33.000Z" - }, - "events": [ - { - "uuid": "4524e87c-5135-4eef-b676-36bbd49a7255", - "start": { - "$date": "2021-03-22T19:01:59.000Z" - }, - "end": { - "$date": "2021-03-22T19:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ce3850d4-184b-4333-8758-7eb396390925", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T19:04:29.000Z" - }, - "end": { - "$date": "2021-03-22T19:22:34.000Z" - }, - "events": [ - { - "uuid": "b803c843-796b-423d-bc86-50ba8ff57a66", - "start": { - "$date": "2021-03-22T19:04:29.000Z" - }, - "end": { - "$date": "2021-03-22T19:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dd87ba02-905c-4041-a2da-7e83300a85f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-22T19:06:19.000Z" - }, - "end": { - "$date": "2021-03-22T19:59:23.000Z" - }, - "events": [ - { - "uuid": "b8bc4ed5-e802-4993-9278-f50186475935", - "start": { - "$date": "2021-03-22T19:06:19.000Z" - }, - "end": { - "$date": "2021-03-22T19:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9352754a-3492-4bf4-8c2f-75ac49f97016", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-22T19:34:53.000Z" - }, - "end": { - "$date": "2021-03-22T19:53:27.000Z" - }, - "events": [ - { - "uuid": "ebb62538-6214-4c65-83eb-683a357249ca", - "start": { - "$date": "2021-03-22T19:34:53.000Z" - }, - "end": { - "$date": "2021-03-22T19:53:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f23d52b-cddb-4259-8f4f-6588e81a2c77", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-22T20:09:27.000Z" - }, - "end": { - "$date": "2021-03-23T00:07:08.000Z" - }, - "events": [ - { - "uuid": "e580a1b2-998b-4bdc-867a-7e5893359d8e", - "start": { - "$date": "2021-03-22T20:09:27.000Z" - }, - "end": { - "$date": "2021-03-22T22:50:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "48c0041f-5db0-4774-b06f-ec9ac8aa4ed0", - "start": { - "$date": "2021-03-22T22:50:27.000Z" - }, - "end": { - "$date": "2021-03-22T23:28:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b80976a5-1838-49db-93ed-427a409d3bf5", - "start": { - "$date": "2021-03-22T23:28:27.000Z" - }, - "end": { - "$date": "2021-03-22T23:41:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8e21a04e-fe7d-474f-9301-a9d75308508b", - "start": { - "$date": "2021-03-22T23:41:27.000Z" - }, - "end": { - "$date": "2021-03-22T23:46:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b207dd3-1944-49d1-ac13-88564e3f87d6", - "start": { - "$date": "2021-03-22T23:46:27.000Z" - }, - "end": { - "$date": "2021-03-22T23:57:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dceee20f-7d0f-4f6b-ae7e-3c43cea965ed", - "start": { - "$date": "2021-03-22T23:57:27.000Z" - }, - "end": { - "$date": "2021-03-22T23:58:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b8f02e49-e120-4022-9eef-12c74145db52", - "start": { - "$date": "2021-03-22T23:58:27.000Z" - }, - "end": { - "$date": "2021-03-23T00:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "2417b4bf-4cd8-4469-8e9a-ee958652bcf0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-22T20:50:13.000Z" - }, - "end": { - "$date": "2021-03-22T21:08:29.000Z" - }, - "events": [ - { - "uuid": "8b49fc96-bd4e-4be5-a7d5-121ff4ae067f", - "start": { - "$date": "2021-03-22T20:50:13.000Z" - }, - "end": { - "$date": "2021-03-22T21:08:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "59f76a75-91a3-4f03-a97e-df9510e0b68e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-22T21:12:59.000Z" - }, - "end": { - "$date": "2021-03-22T22:52:11.000Z" - }, - "events": [ - { - "uuid": "20e06eeb-242f-4d03-a277-80f69f8af0c9", - "start": { - "$date": "2021-03-22T21:12:59.000Z" - }, - "end": { - "$date": "2021-03-22T22:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3904bc49-8e79-48db-a678-9383b9fc5960", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T21:59:37.000Z" - }, - "end": { - "$date": "2021-03-22T22:56:27.000Z" - }, - "events": [ - { - "uuid": "ccbe909b-d96c-4785-ad5b-50a2f790f31f", - "start": { - "$date": "2021-03-22T21:59:37.000Z" - }, - "end": { - "$date": "2021-03-22T22:56:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "52c5bfa5-d3e3-4048-ae0c-16d8939e2244", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-22T22:52:21.000Z" - }, - "end": { - "$date": "2021-03-22T22:54:46.000Z" - }, - "events": [ - { - "uuid": "f4d5da8e-2e33-493b-b8c2-72380727d3df", - "start": { - "$date": "2021-03-22T22:52:21.000Z" - }, - "end": { - "$date": "2021-03-22T22:54:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff24ab29-7971-41ea-9e0c-63da8857095a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-22T23:40:28.000Z" - }, - "end": { - "$date": "2021-03-22T23:43:03.000Z" - }, - "events": [ - { - "uuid": "9bd1d857-ca7c-401d-9977-127b54627674", - "start": { - "$date": "2021-03-22T23:40:28.000Z" - }, - "end": { - "$date": "2021-03-22T23:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "67df4b72-702c-4e8b-9f8f-34e95b540c67", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-23T00:21:00.000Z" - }, - "end": { - "$date": "2021-03-23T00:45:15.000Z" - }, - "events": [ - { - "uuid": "59ac2e2a-fa4d-4f20-abe2-ac611373cd18", - "start": { - "$date": "2021-03-23T00:21:00.000Z" - }, - "end": { - "$date": "2021-03-23T00:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", - "uuid": "873ecf95-a171-47f9-9d2a-92fe6c8072f5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-23T00:33:26.000Z" - }, - "end": { - "$date": "2021-03-23T00:37:39.000Z" - }, - "events": [ - { - "uuid": "d6b029ac-5229-4de6-94fa-b5081b0aa45e", - "start": { - "$date": "2021-03-23T00:33:26.000Z" - }, - "end": { - "$date": "2021-03-23T00:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "83ccb4f4-cec0-4c5e-ae75-059db5f039b0", - "uuid": "3ad94346-14dd-469f-917c-1dda54bd6220", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-23T00:38:06.000Z" - }, - "end": { - "$date": "2021-03-23T00:57:42.000Z" - }, - "events": [ - { - "uuid": "afff8f52-5fd6-4f65-be65-0a3774fe48cd", - "start": { - "$date": "2021-03-23T00:38:06.000Z" - }, - "end": { - "$date": "2021-03-23T00:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "32238787-81ba-47a4-89cf-5d8b0e2552c3", - "uuid": "09ec739e-c4f6-4bf8-84f8-d030f451b91c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-23T00:47:27.000Z" - }, - "end": { - "$date": "2021-03-23T01:04:24.000Z" - }, - "events": [ - { - "uuid": "11fad67e-8f10-4ab3-a3c7-ce56899bc8cb", - "start": { - "$date": "2021-03-23T00:47:27.000Z" - }, - "end": { - "$date": "2021-03-23T01:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7dc3af2-0d5e-422b-b46c-03ffc4d0ed1a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T00:52:07.000Z" - }, - "end": { - "$date": "2021-03-23T01:22:44.000Z" - }, - "events": [ - { - "uuid": "519f946f-0394-4fba-a7a8-2913c35c1191", - "start": { - "$date": "2021-03-23T00:52:07.000Z" - }, - "end": { - "$date": "2021-03-23T01:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4b2dedd7-4981-464b-b14b-e18a7b8ce88a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-23T01:04:33.000Z" - }, - "end": { - "$date": "2021-03-23T02:43:34.000Z" - }, - "events": [ - { - "uuid": "d3c12ca2-5150-4a5e-92c0-9a4cca034cf4", - "start": { - "$date": "2021-03-23T01:04:33.000Z" - }, - "end": { - "$date": "2021-03-23T02:43:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e2f98b4a-9fe2-43e1-9a75-2c47f0cc45f2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-23T01:08:41.000Z" - }, - "end": { - "$date": "2021-03-23T01:21:28.000Z" - }, - "events": [ - { - "uuid": "9babd1cc-1833-4442-8cda-e583aac99739", - "start": { - "$date": "2021-03-23T01:08:41.000Z" - }, - "end": { - "$date": "2021-03-23T01:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55fd44c9-a0e2-40df-a813-b8244124ef0d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T01:23:34.000Z" - }, - "end": { - "$date": "2021-03-23T01:57:06.000Z" - }, - "events": [ - { - "uuid": "bba27df1-2cb7-4edd-98d4-739f1f876664", - "start": { - "$date": "2021-03-23T01:23:34.000Z" - }, - "end": { - "$date": "2021-03-23T01:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "44c6e4bd-8544-4538-b4a9-265996634a09", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-23T01:27:35.000Z" - }, - "end": { - "$date": "2021-03-23T01:47:20.000Z" - }, - "events": [ - { - "uuid": "e551a92f-ad7c-459c-b9e8-09e1416b13b2", - "start": { - "$date": "2021-03-23T01:27:35.000Z" - }, - "end": { - "$date": "2021-03-23T01:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", - "uuid": "b751a359-1bce-445b-9190-5deb32fd0837", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-23T01:47:42.000Z" - }, - "end": { - "$date": "2021-03-23T05:30:24.000Z" - }, - "events": [ - { - "uuid": "8edb37da-5d5c-4af5-a152-e643d4189e6f", - "start": { - "$date": "2021-03-23T01:47:42.000Z" - }, - "end": { - "$date": "2021-03-23T05:30:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "70a89e6e-4910-4310-a216-05030a1099fa", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-23T02:10:23.000Z" - }, - "end": { - "$date": "2021-03-23T05:05:51.000Z" - }, - "events": [ - { - "uuid": "eadd3d32-fb40-4c11-af5e-4905c8677299", - "start": { - "$date": "2021-03-23T02:10:23.000Z" - }, - "end": { - "$date": "2021-03-23T05:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "56f4522e-b756-474f-b26d-268d3a8f5571", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-23T02:10:39.000Z" - }, - "end": { - "$date": "2021-03-23T05:05:01.000Z" - }, - "events": [ - { - "uuid": "21711cae-0233-4c72-a5f3-4dc115c43fdd", - "start": { - "$date": "2021-03-23T02:10:39.000Z" - }, - "end": { - "$date": "2021-03-23T05:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "de9e885a-0756-4d16-b98f-734ed1e72c94", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-23T02:34:12.000Z" - }, - "end": { - "$date": "2021-03-23T04:43:29.000Z" - }, - "events": [ - { - "uuid": "6bde88f0-bb57-4fc4-825c-a0aac4732c66", - "start": { - "$date": "2021-03-23T02:34:12.000Z" - }, - "end": { - "$date": "2021-03-23T04:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "be63d681-ef6d-4533-8786-c48ba28c09d2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-23T02:38:26.000Z" - }, - "end": { - "$date": "2021-03-23T05:36:47.000Z" - }, - "events": [ - { - "uuid": "b6ea4b9a-16d2-4cd5-a54b-ad0dc1b04251", - "start": { - "$date": "2021-03-23T02:38:26.000Z" - }, - "end": { - "$date": "2021-03-23T05:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "1bd4aaf8-e817-4823-ac5b-c8fe12a7c5e1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-23T02:44:48.000Z" - }, - "end": { - "$date": "2021-03-23T04:43:18.000Z" - }, - "events": [ - { - "uuid": "5725e1a6-73c5-4458-a7af-484df0ae440a", - "start": { - "$date": "2021-03-23T02:44:48.000Z" - }, - "end": { - "$date": "2021-03-23T04:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c80d86c7-2603-41ae-a056-b3a1d7753e90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T03:17:34.000Z" - }, - "end": { - "$date": "2021-03-23T03:57:16.000Z" - }, - "events": [ - { - "uuid": "1d51acad-886d-40ea-883a-0262ef358c95", - "start": { - "$date": "2021-03-23T03:17:34.000Z" - }, - "end": { - "$date": "2021-03-23T03:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae79fdb6-df43-4759-ae94-638209d34b82", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-23T04:10:11.000Z" - }, - "end": { - "$date": "2021-03-23T04:46:29.000Z" - }, - "events": [ - { - "uuid": "5040d1d1-a388-49b2-a7ef-fea250b4b518", - "start": { - "$date": "2021-03-23T04:10:11.000Z" - }, - "end": { - "$date": "2021-03-23T04:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "17be2d7f-2036-437f-8d3a-63a7c4d1c103", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-23T05:12:11.000Z" - }, - "end": { - "$date": "2021-03-23T06:40:30.000Z" - }, - "events": [ - { - "uuid": "ac42256b-320c-479c-947e-dd991b13b4b7", - "start": { - "$date": "2021-03-23T05:12:11.000Z" - }, - "end": { - "$date": "2021-03-23T06:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "ef4d8550-0b24-4308-861a-25aafa0e40cc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-23T15:02:33.000Z" - }, - "end": { - "$date": "2021-03-23T15:03:38.000Z" - }, - "events": [ - { - "uuid": "b05762ae-db0b-401d-b112-a3eb7663d81e", - "start": { - "$date": "2021-03-23T15:02:33.000Z" - }, - "end": { - "$date": "2021-03-23T15:03:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "33d6c06f-4ecd-4549-9f8c-3f6af98f6d31", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-23T15:04:08.000Z" - }, - "end": { - "$date": "2021-03-23T17:47:56.000Z" - }, - "events": [ - { - "uuid": "81e430b1-c02e-4ad6-ba0c-c924f3ccf366", - "start": { - "$date": "2021-03-23T15:04:08.000Z" - }, - "end": { - "$date": "2021-03-23T17:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c98ed8bf-1e90-4028-a23e-920ec63b3f59", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T15:29:05.000Z" - }, - "end": { - "$date": "2021-03-23T16:01:12.000Z" - }, - "events": [ - { - "uuid": "eee3b69b-b7b2-43d5-9012-ece725861c6d", - "start": { - "$date": "2021-03-23T15:29:05.000Z" - }, - "end": { - "$date": "2021-03-23T16:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d75311b-7f2f-488d-ba95-e8bd7e827676", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T17:13:26.000Z" - }, - "end": { - "$date": "2021-03-23T17:46:08.000Z" - }, - "events": [ - { - "uuid": "172c3f23-26ce-494f-b50f-88c8581340d8", - "start": { - "$date": "2021-03-23T17:13:26.000Z" - }, - "end": { - "$date": "2021-03-23T18:12:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f86dc7e9-131b-44bd-827e-ee7d4036e1f2", - "start": { - "$date": "2021-03-23T18:12:26.000Z" - }, - "end": { - "$date": "2021-03-23T18:15:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "01ef90c5-cd66-4963-b47a-522a33957583", - "start": { - "$date": "2021-03-23T18:15:26.000Z" - }, - "end": { - "$date": "2021-03-23T17:46:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "578f5680-8aff-40fa-b8ed-1a536d4e5517", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T17:47:49.000Z" - }, - "end": { - "$date": "2021-03-23T18:59:09.000Z" - }, - "events": [ - { - "uuid": "a3aa7778-89b2-45fe-8e9f-73ed58bb9e5a", - "start": { - "$date": "2021-03-23T17:47:49.000Z" - }, - "end": { - "$date": "2021-03-23T18:52:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d1e7f49a-9112-43d2-bbf3-871b1ba464c9", - "start": { - "$date": "2021-03-23T18:52:49.000Z" - }, - "end": { - "$date": "2021-03-23T18:59:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70c624de-91e2-4405-9edb-a354b0990be7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T20:45:21.000Z" - }, - "end": { - "$date": "2021-03-23T21:20:47.000Z" - }, - "events": [ - { - "uuid": "a281c666-89b6-4126-a2b8-ef505406df6c", - "start": { - "$date": "2021-03-23T20:45:21.000Z" - }, - "end": { - "$date": "2021-03-23T21:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7b52a5e3-d5b2-4c95-96fb-6d70f0459528", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-23T21:54:03.000Z" - }, - "end": { - "$date": "2021-03-23T22:14:20.000Z" - }, - "events": [ - { - "uuid": "d8d21fe7-5558-44d3-bc24-65ff4a499d84", - "start": { - "$date": "2021-03-23T21:54:03.000Z" - }, - "end": { - "$date": "2021-03-23T22:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4820957-f013-46f6-b1f0-05792d18cdd1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T22:15:34.000Z" - }, - "end": { - "$date": "2021-03-23T22:51:16.000Z" - }, - "events": [ - { - "uuid": "6e671e21-cc6a-4b74-b70c-d08db54ad44d", - "start": { - "$date": "2021-03-23T22:15:34.000Z" - }, - "end": { - "$date": "2021-03-23T22:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4beaa686-ba34-4a19-a747-6f06104c32e7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T22:54:56.000Z" - }, - "end": { - "$date": "2021-03-23T23:24:38.000Z" - }, - "events": [ - { - "uuid": "0e2d7381-c96c-47a8-bc94-56d5f4dee274", - "start": { - "$date": "2021-03-23T22:54:56.000Z" - }, - "end": { - "$date": "2021-03-23T23:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f4f6be77-24b8-4184-b559-e23f538b90bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-23T23:12:32.000Z" - }, - "end": { - "$date": "2021-03-24T01:09:55.000Z" - }, - "events": [ - { - "uuid": "094298ad-7e3d-43e7-8796-dd19d2ea1649", - "start": { - "$date": "2021-03-23T23:12:32.000Z" - }, - "end": { - "$date": "2021-03-24T01:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dfd17a1-df4c-44f9-9ae6-b29d07bfc6a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-23T23:31:19.000Z" - }, - "end": { - "$date": "2021-03-24T00:02:56.000Z" - }, - "events": [ - { - "uuid": "9d7b4017-073e-4a2d-8125-4a990d4f8541", - "start": { - "$date": "2021-03-23T23:31:19.000Z" - }, - "end": { - "$date": "2021-03-24T00:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a62faddb-1714-4e79-8a5e-820b2ae6dfa4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-23T23:37:19.000Z" - }, - "end": { - "$date": "2021-03-23T23:45:05.000Z" - }, - "events": [ - { - "uuid": "4f965927-0067-4c1c-9de7-9ea1e7ec29e0", - "start": { - "$date": "2021-03-23T23:37:19.000Z" - }, - "end": { - "$date": "2021-03-23T23:45:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "23f75767-2e54-415a-ad7f-98814264f5ad", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-24T04:24:32.000Z" - }, - "end": { - "$date": "2021-03-24T04:25:13.000Z" - }, - "events": [ - { - "uuid": "6d132a84-82e6-488f-a404-240a4b71a032", - "start": { - "$date": "2021-03-24T04:24:32.000Z" - }, - "end": { - "$date": "2021-03-24T04:27:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3d83664-4614-489f-abde-bb729c2336b5", - "start": { - "$date": "2021-03-24T04:27:32.000Z" - }, - "end": { - "$date": "2021-03-24T04:52:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8253af6f-6359-4bb0-b1e8-275d1b443384", - "start": { - "$date": "2021-03-24T04:52:32.000Z" - }, - "end": { - "$date": "2021-03-24T05:11:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "607de37a-4ff1-4d68-b865-993b49717375", - "start": { - "$date": "2021-03-24T05:11:32.000Z" - }, - "end": { - "$date": "2021-03-24T05:12:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c3434d2f-feb0-4a48-aab1-5c5b44779a84", - "start": { - "$date": "2021-03-24T05:12:32.000Z" - }, - "end": { - "$date": "2021-03-24T04:25:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a86bd01d-6ffa-4c29-95e2-b1ff0ebb58fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T02:06:55.000Z" - }, - "end": { - "$date": "2021-03-24T02:35:41.000Z" - }, - "events": [ - { - "uuid": "449a84ec-41fc-4e27-aa12-6d228db8a4f5", - "start": { - "$date": "2021-03-24T02:06:55.000Z" - }, - "end": { - "$date": "2021-03-24T02:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "03b4d91a-0c2d-4912-b8c9-4fe60b39268d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-24T02:09:19.000Z" - }, - "end": { - "$date": "2021-03-24T02:48:03.000Z" - }, - "events": [ - { - "uuid": "779e87dd-a2bd-4640-9811-83bc83921a6a", - "start": { - "$date": "2021-03-24T02:09:19.000Z" - }, - "end": { - "$date": "2021-03-24T02:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "47083a03-80ec-48ae-a292-ffa24bba2eb9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-24T02:19:11.000Z" - }, - "end": { - "$date": "2021-03-24T06:32:51.000Z" - }, - "events": [ - { - "uuid": "3c1298fd-6f1b-4f44-93c6-48056e943822", - "start": { - "$date": "2021-03-24T02:19:11.000Z" - }, - "end": { - "$date": "2021-03-24T06:32:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "74341c1c-cdaf-4261-9697-6d6369d486f6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-24T02:34:52.000Z" - }, - "end": { - "$date": "2021-03-24T04:35:30.000Z" - }, - "events": [ - { - "uuid": "555634f2-472c-4c13-a0f7-19d1784f2a97", - "start": { - "$date": "2021-03-24T02:34:52.000Z" - }, - "end": { - "$date": "2021-03-24T04:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebf88cfe-defa-46e2-81c7-b9e4ac4a3e1b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T02:37:41.000Z" - }, - "end": { - "$date": "2021-03-24T03:00:16.000Z" - }, - "events": [ - { - "uuid": "b1c4cf25-15b5-44b4-84e0-6dc483212276", - "start": { - "$date": "2021-03-24T02:37:41.000Z" - }, - "end": { - "$date": "2021-03-24T03:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cc63d051-7643-42e0-871c-5cbc0195bd52", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-24T02:48:23.000Z" - }, - "end": { - "$date": "2021-03-24T03:34:22.000Z" - }, - "events": [ - { - "uuid": "51844c1a-40a9-4521-b7e9-e454fd561829", - "start": { - "$date": "2021-03-24T02:48:23.000Z" - }, - "end": { - "$date": "2021-03-24T03:34:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "533c8234-a233-4247-acc0-c0317abadda2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-24T02:54:08.000Z" - }, - "end": { - "$date": "2021-03-24T05:23:52.000Z" - }, - "events": [ - { - "uuid": "084494ac-06a2-40e1-96f8-d2d5d1087064", - "start": { - "$date": "2021-03-24T02:54:08.000Z" - }, - "end": { - "$date": "2021-03-24T05:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bab4ad03-8a1e-418f-ab35-7d739b9f1115", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-24T03:03:46.000Z" - }, - "end": { - "$date": "2021-03-24T03:57:57.000Z" - }, - "events": [ - { - "uuid": "2e15079d-d503-4f2f-83b0-1125436cb422", - "start": { - "$date": "2021-03-24T03:03:46.000Z" - }, - "end": { - "$date": "2021-03-24T03:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "614a7e98-d37e-4325-8692-ae7b865f0f65", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T03:07:56.000Z" - }, - "end": { - "$date": "2021-03-24T04:14:08.000Z" - }, - "events": [ - { - "uuid": "b5acdfe9-26be-4503-9c3c-e47bbc4b46bb", - "start": { - "$date": "2021-03-24T03:07:56.000Z" - }, - "end": { - "$date": "2021-03-24T04:14:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9f49d327-a99b-4f24-b217-1eb741056a31", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-24T03:14:14.000Z" - }, - "end": { - "$date": "2021-03-24T04:14:25.000Z" - }, - "events": [ - { - "uuid": "58ec7505-4c5c-4f5b-a9cd-a0fd2a2648fe", - "start": { - "$date": "2021-03-24T03:14:14.000Z" - }, - "end": { - "$date": "2021-03-24T04:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "693c19b0-2fbb-4e14-9510-1b307fa8ee31", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-24T03:35:21.000Z" - }, - "end": { - "$date": "2021-03-24T05:01:43.000Z" - }, - "events": [ - { - "uuid": "0ca124e4-16de-49e1-b02a-a8927b5db078", - "start": { - "$date": "2021-03-24T03:35:21.000Z" - }, - "end": { - "$date": "2021-03-24T05:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "902c1a7e-5782-4607-80c9-2c383292be0e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-24T03:35:48.000Z" - }, - "end": { - "$date": "2021-03-24T05:01:28.000Z" - }, - "events": [ - { - "uuid": "3aa41b09-c060-431c-aca3-5dfbfbaeb80d", - "start": { - "$date": "2021-03-24T03:35:48.000Z" - }, - "end": { - "$date": "2021-03-24T05:01:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "316079d3-c626-420d-bce4-2784b9bf2c48", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-24T04:08:48.000Z" - }, - "end": { - "$date": "2021-03-24T04:27:33.000Z" - }, - "events": [ - { - "uuid": "7ab6654f-a12f-47b5-ac01-4a4378e832b5", - "start": { - "$date": "2021-03-24T04:08:48.000Z" - }, - "end": { - "$date": "2021-03-24T04:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0f07e10e-0316-490c-95b3-57dc1be8995b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-24T14:20:19.000Z" - }, - "end": { - "$date": "2021-03-24T15:05:55.000Z" - }, - "events": [ - { - "uuid": "0f2a7b79-492d-426b-beb9-b68e5c37df5f", - "start": { - "$date": "2021-03-24T14:20:19.000Z" - }, - "end": { - "$date": "2021-03-24T15:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d7200db-c6df-449a-bbd1-91409d7b9b30", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T16:07:21.000Z" - }, - "end": { - "$date": "2021-03-24T16:41:03.000Z" - }, - "events": [ - { - "uuid": "e5a3be79-56d9-449a-9313-8372e05559a9", - "start": { - "$date": "2021-03-24T16:07:21.000Z" - }, - "end": { - "$date": "2021-03-24T16:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7dcfe911-ed2e-4cee-b7d9-9ce6e6e24d7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T16:44:08.000Z" - }, - "end": { - "$date": "2021-03-24T17:06:05.000Z" - }, - "events": [ - { - "uuid": "913a5ac3-6932-4f08-8764-a3801e30a50b", - "start": { - "$date": "2021-03-24T16:44:08.000Z" - }, - "end": { - "$date": "2021-03-24T17:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31b0bf86-8fb5-42c3-9ba2-042cdec7c5d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T17:10:40.000Z" - }, - "end": { - "$date": "2021-03-24T17:43:43.000Z" - }, - "events": [ - { - "uuid": "0e97263b-60ab-400c-bd6c-5e1dda8ceb08", - "start": { - "$date": "2021-03-24T17:10:40.000Z" - }, - "end": { - "$date": "2021-03-24T17:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fdd9934-f131-4f2d-abb4-bbff1971586e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-24T23:16:06.000Z" - }, - "end": { - "$date": "2021-03-25T00:05:27.000Z" - }, - "events": [ - { - "uuid": "a5d4e645-d2fa-4f48-88db-f132fcbfb3ca", - "start": { - "$date": "2021-03-24T23:16:06.000Z" - }, - "end": { - "$date": "2021-03-25T00:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c7460371-14af-49ed-9f50-f9b3794ede52", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-25T00:01:16.000Z" - }, - "end": { - "$date": "2021-03-25T02:48:34.000Z" - }, - "events": [ - { - "uuid": "21b6399c-9bc9-4c39-a3e9-19826ec5ba10", - "start": { - "$date": "2021-03-25T00:01:16.000Z" - }, - "end": { - "$date": "2021-03-25T02:48:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da968de2-47ed-479d-8d50-5b18ac185b70", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T01:36:13.000Z" - }, - "end": { - "$date": "2021-03-25T02:11:29.000Z" - }, - "events": [ - { - "uuid": "3d06bef0-2f43-4aab-92c3-f6c7434eec00", - "start": { - "$date": "2021-03-25T01:36:13.000Z" - }, - "end": { - "$date": "2021-03-25T02:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "81f0a748-a619-48f5-bace-d420f7549b14", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-25T02:08:22.000Z" - }, - "end": { - "$date": "2021-03-25T02:18:32.000Z" - }, - "events": [ - { - "uuid": "3f3d515f-53b4-4b3d-ba6b-21915f5ff99e", - "start": { - "$date": "2021-03-25T02:08:22.000Z" - }, - "end": { - "$date": "2021-03-25T02:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4aa6c285-e03c-45f5-9b36-4e1f1be5e0ec", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-25T02:16:41.000Z" - }, - "end": { - "$date": "2021-03-25T03:45:09.000Z" - }, - "events": [ - { - "uuid": "3e5dd539-0f57-41d5-9849-5928a335558d", - "start": { - "$date": "2021-03-25T02:16:41.000Z" - }, - "end": { - "$date": "2021-03-25T03:45:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3bcead2f-7023-47d5-ad6d-75311873731b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-25T02:18:48.000Z" - }, - "end": { - "$date": "2021-03-25T04:08:30.000Z" - }, - "events": [ - { - "uuid": "98bbd22c-de15-4938-9427-0b0d39a77c21", - "start": { - "$date": "2021-03-25T02:18:48.000Z" - }, - "end": { - "$date": "2021-03-25T04:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2becd822-ac20-4ce8-ab57-f16922c771d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T02:42:47.000Z" - }, - "end": { - "$date": "2021-03-25T03:20:44.000Z" - }, - "events": [ - { - "uuid": "b04f0a85-d18d-48de-9342-81b585fda85a", - "start": { - "$date": "2021-03-25T02:42:47.000Z" - }, - "end": { - "$date": "2021-03-25T03:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "74b85688-4195-4266-9c98-1cb280da8c55", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-25T02:49:07.000Z" - }, - "end": { - "$date": "2021-03-25T05:50:00.000Z" - }, - "events": [ - { - "uuid": "51c3e7f1-6874-4ad2-aeb4-43b0f1fdcf01", - "start": { - "$date": "2021-03-25T02:49:07.000Z" - }, - "end": { - "$date": "2021-03-25T05:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8ce32ecf-8e45-4499-acc0-ab6ccee49a88", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-25T03:10:06.000Z" - }, - "end": { - "$date": "2021-03-25T04:14:07.000Z" - }, - "events": [ - { - "uuid": "baa95e71-55eb-4b64-b1cc-04d575a32ece", - "start": { - "$date": "2021-03-25T03:10:06.000Z" - }, - "end": { - "$date": "2021-03-25T04:14:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bba1270-4c69-4c4f-bff9-7b578e1201cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T03:21:44.000Z" - }, - "end": { - "$date": "2021-03-25T03:51:15.000Z" - }, - "events": [ - { - "uuid": "10e17f49-e4be-43b3-a665-def4a904151a", - "start": { - "$date": "2021-03-25T03:21:44.000Z" - }, - "end": { - "$date": "2021-03-25T03:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1e265439-d26e-4707-8cc5-ab0be8f4d3f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-25T03:55:21.000Z" - }, - "end": { - "$date": "2021-03-25T04:07:42.000Z" - }, - "events": [ - { - "uuid": "c218b0b3-4295-422d-a6f5-6a4ff1416fe3", - "start": { - "$date": "2021-03-25T03:55:21.000Z" - }, - "end": { - "$date": "2021-03-25T04:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "66d9e29d-7469-4b13-b437-359e81d14f6b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-25T04:00:00.000Z" - }, - "end": { - "$date": "2021-03-25T04:27:08.000Z" - }, - "events": [ - { - "uuid": "2ec6e85f-7300-477d-835f-624f0405a752", - "start": { - "$date": "2021-03-25T04:00:00.000Z" - }, - "end": { - "$date": "2021-03-25T04:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed8c7b2e-0780-4aa1-a99e-9d6691bc70bf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-25T04:08:30.000Z" - }, - "end": { - "$date": "2021-03-25T04:36:09.000Z" - }, - "events": [ - { - "uuid": "92009682-c113-4a13-9af6-62b2e5313106", - "start": { - "$date": "2021-03-25T04:08:30.000Z" - }, - "end": { - "$date": "2021-03-25T04:36:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ac7ce64-2bab-435b-afac-d5c07d402b3e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-25T04:06:30.000Z" - }, - "end": { - "$date": "2021-03-25T05:08:24.000Z" - }, - "events": [ - { - "uuid": "2e6493ff-0374-427b-80ef-c8ce7387389f", - "start": { - "$date": "2021-03-25T04:06:30.000Z" - }, - "end": { - "$date": "2021-03-25T05:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "6919e58d-3a39-4ef5-8f48-a64eb28b6a2f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-25T04:08:41.000Z" - }, - "end": { - "$date": "2021-03-25T05:14:56.000Z" - }, - "events": [ - { - "uuid": "319b02ee-80bc-49b1-8812-c471b8d08e2e", - "start": { - "$date": "2021-03-25T04:08:41.000Z" - }, - "end": { - "$date": "2021-03-25T05:14:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "1de002a8-e605-4f73-b446-33465f789445", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-25T04:08:52.000Z" - }, - "end": { - "$date": "2021-03-25T05:14:45.000Z" - }, - "events": [ - { - "uuid": "96520d83-ae2a-47f3-b44d-1ea66dd9cadc", - "start": { - "$date": "2021-03-25T04:08:52.000Z" - }, - "end": { - "$date": "2021-03-25T05:14:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5c1abf02-05d6-4f30-8dde-3134a61afb38", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-25T04:18:39.000Z" - }, - "end": { - "$date": "2021-03-25T04:21:09.000Z" - }, - "events": [ - { - "uuid": "f881b42a-092f-440b-802e-8c4a2bb006a2", - "start": { - "$date": "2021-03-25T04:18:39.000Z" - }, - "end": { - "$date": "2021-03-25T04:21:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80d5f417-7a68-4183-8a93-ae91d469279d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-25T04:46:51.000Z" - }, - "end": { - "$date": "2021-03-25T05:21:41.000Z" - }, - "events": [ - { - "uuid": "47851d41-63f2-42a0-b6c3-6e1bcefa71e8", - "start": { - "$date": "2021-03-25T04:46:51.000Z" - }, - "end": { - "$date": "2021-03-25T05:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86df489f-6a7f-4ae7-a243-280d2c1b9bc3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T15:25:59.000Z" - }, - "end": { - "$date": "2021-03-25T15:59:31.000Z" - }, - "events": [ - { - "uuid": "1e5c16f2-d3a2-4aeb-8523-eac4fda7ff7c", - "start": { - "$date": "2021-03-25T15:25:59.000Z" - }, - "end": { - "$date": "2021-03-25T15:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee5f3d73-5c6a-4b80-aa69-a7a6a1184911", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T17:51:32.000Z" - }, - "end": { - "$date": "2021-03-25T18:15:22.000Z" - }, - "events": [ - { - "uuid": "9644626d-1361-4070-b4be-27ef266cd7c6", - "start": { - "$date": "2021-03-25T17:51:32.000Z" - }, - "end": { - "$date": "2021-03-25T18:15:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b2b36ee-4234-405d-ab5f-0da496b03d73", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T20:04:48.000Z" - }, - "end": { - "$date": "2021-03-25T20:38:19.000Z" - }, - "events": [ - { - "uuid": "7ce3df9c-abd1-460f-80a1-5b0e28090bf8", - "start": { - "$date": "2021-03-25T20:04:48.000Z" - }, - "end": { - "$date": "2021-03-25T20:38:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "75a89fd9-515b-41c7-9887-71f7fa28f765", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-25T20:11:47.000Z" - }, - "end": { - "$date": "2021-03-25T21:23:03.000Z" - }, - "events": [ - { - "uuid": "3b7a64f2-7283-44db-a5ea-c8c3a6babc57", - "start": { - "$date": "2021-03-25T20:11:47.000Z" - }, - "end": { - "$date": "2021-03-25T21:23:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a391153b-bb51-4c1a-b0c3-a556459af91a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T21:58:52.000Z" - }, - "end": { - "$date": "2021-03-25T22:02:16.000Z" - }, - "events": [ - { - "uuid": "ae8896e8-11cc-4b53-b230-c5bf27f3f876", - "start": { - "$date": "2021-03-25T21:58:52.000Z" - }, - "end": { - "$date": "2021-03-25T22:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fbed8fa1-5a07-49f1-affa-ef83d822baf1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-25T22:03:52.000Z" - }, - "end": { - "$date": "2021-03-25T23:07:04.000Z" - }, - "events": [ - { - "uuid": "0e8fc342-d739-4444-9bf3-2eb3274c4657", - "start": { - "$date": "2021-03-25T22:03:52.000Z" - }, - "end": { - "$date": "2021-03-25T23:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "c28c60a9-2e99-4844-8425-542d01aaf5e0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-25T00:21:33.000Z" - }, - "end": { - "$date": "2021-03-26T00:09:58.000Z" - }, - "events": [ - { - "uuid": "1c86cd19-4eb5-4513-8454-b1279ad528ad", - "start": { - "$date": "2021-03-25T00:21:33.000Z" - }, - "end": { - "$date": "2021-03-26T00:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "36120a00-0e29-4074-acfb-20f6564ca497", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-25T23:48:10.000Z" - }, - "end": { - "$date": "2021-03-25T23:54:31.000Z" - }, - "events": [ - { - "uuid": "0af701a6-b392-487c-9e70-3b5a3f7d5721", - "start": { - "$date": "2021-03-25T23:48:10.000Z" - }, - "end": { - "$date": "2021-03-25T23:54:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "85b0c299-699f-452c-801e-12649fb1778b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-26T00:10:02.000Z" - }, - "end": { - "$date": "2021-03-26T03:06:16.000Z" - }, - "events": [ - { - "uuid": "8330e3c5-f720-44d6-9b01-cf0492c1cc38", - "start": { - "$date": "2021-03-26T00:10:02.000Z" - }, - "end": { - "$date": "2021-03-26T01:25:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb2c48d1-f6d1-4eea-861d-7998b5528dfa", - "start": { - "$date": "2021-03-26T01:25:02.000Z" - }, - "end": { - "$date": "2021-03-26T01:30:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04245cf7-ebb5-4271-8ee2-9bee595e9209", - "start": { - "$date": "2021-03-26T01:30:02.000Z" - }, - "end": { - "$date": "2021-03-26T01:46:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60de6b43-353a-4be5-aeee-05f8f405d29b", - "start": { - "$date": "2021-03-26T01:46:02.000Z" - }, - "end": { - "$date": "2021-03-26T01:59:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6ab573c4-1b4b-430d-99ff-937509bf46f2", - "start": { - "$date": "2021-03-26T01:59:02.000Z" - }, - "end": { - "$date": "2021-03-26T02:41:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "115890ee-d5c6-431b-bcdf-1170ec4c5ac3", - "start": { - "$date": "2021-03-26T02:41:02.000Z" - }, - "end": { - "$date": "2021-03-26T02:59:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2054592-6f16-45e0-9c7e-88b8518c6e24", - "start": { - "$date": "2021-03-26T02:59:02.000Z" - }, - "end": { - "$date": "2021-03-26T03:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c55756-ae07-4771-86d2-bba19006baa0", - "uuid": "0c42345b-8b6f-4871-ae48-526b93afdf57", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T00:19:42.000Z" - }, - "end": { - "$date": "2021-03-26T00:27:49.000Z" - }, - "events": [ - { - "uuid": "051c8338-e6bf-4913-ac6e-918bac490eaf", - "start": { - "$date": "2021-03-26T00:19:42.000Z" - }, - "end": { - "$date": "2021-03-26T00:27:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "430da0f4-5fe3-41bf-a741-50c3c0226075", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T00:27:58.000Z" - }, - "end": { - "$date": "2021-03-26T00:30:24.000Z" - }, - "events": [ - { - "uuid": "9adf04f8-cf9b-4a6a-836f-8fc3731f534c", - "start": { - "$date": "2021-03-26T00:27:58.000Z" - }, - "end": { - "$date": "2021-03-26T00:30:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d3de5868-7f0e-4c89-bc6e-426485e44e22", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T00:30:38.000Z" - }, - "end": { - "$date": "2021-03-26T02:03:19.000Z" - }, - "events": [ - { - "uuid": "d190fa62-c5ac-4f22-bfa4-19a0a2b4b8ea", - "start": { - "$date": "2021-03-26T00:30:38.000Z" - }, - "end": { - "$date": "2021-03-26T02:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a62e253c-f1d0-41b9-887e-6dd01bddf3b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-26T02:46:47.000Z" - }, - "end": { - "$date": "2021-03-26T04:17:08.000Z" - }, - "events": [ - { - "uuid": "aea392d2-b862-4353-b426-6329b696c6f6", - "start": { - "$date": "2021-03-26T02:46:47.000Z" - }, - "end": { - "$date": "2021-03-26T04:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7a67de66-d73e-4ee4-885a-92ab32944d26", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-26T02:47:05.000Z" - }, - "end": { - "$date": "2021-03-26T04:06:17.000Z" - }, - "events": [ - { - "uuid": "440c36bb-8018-48df-a401-6d3b5d055dc7", - "start": { - "$date": "2021-03-26T02:47:05.000Z" - }, - "end": { - "$date": "2021-03-26T04:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "45eb0a86-37b2-4156-84f2-1bd1e43ae444", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-26T03:00:36.000Z" - }, - "end": { - "$date": "2021-03-26T03:01:51.000Z" - }, - "events": [ - { - "uuid": "3d63e1c3-f269-4159-8e9b-23c6a8710836", - "start": { - "$date": "2021-03-26T03:00:36.000Z" - }, - "end": { - "$date": "2021-03-26T03:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f85632b6-12af-4181-833d-ad6f40990279", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-26T03:10:13.000Z" - }, - "end": { - "$date": "2021-03-26T06:14:24.000Z" - }, - "events": [ - { - "uuid": "14afa01f-c854-4ddf-acb9-6c3c3b6702a6", - "start": { - "$date": "2021-03-26T03:10:13.000Z" - }, - "end": { - "$date": "2021-03-26T06:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "25209206-9ffe-4389-b672-506bdb1eb356", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-26T03:10:44.000Z" - }, - "end": { - "$date": "2021-03-26T05:08:43.000Z" - }, - "events": [ - { - "uuid": "155e767e-28bb-48f7-9937-754d6e840d7e", - "start": { - "$date": "2021-03-26T03:10:44.000Z" - }, - "end": { - "$date": "2021-03-26T05:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1481ae84-83b9-4ea0-9274-96a5be4b8ea4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-26T03:12:42.000Z" - }, - "end": { - "$date": "2021-03-26T04:17:11.000Z" - }, - "events": [ - { - "uuid": "6d2f68cf-19ab-493a-8e39-fcccb7c4c62e", - "start": { - "$date": "2021-03-26T03:12:42.000Z" - }, - "end": { - "$date": "2021-03-26T04:06:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "38310c79-f671-4fea-920e-f15c9b484fb3", - "start": { - "$date": "2021-03-26T04:06:42.000Z" - }, - "end": { - "$date": "2021-03-26T04:13:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e554bb1-571a-4cc2-a768-2e9f66211708", - "start": { - "$date": "2021-03-26T04:13:42.000Z" - }, - "end": { - "$date": "2021-03-26T04:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "edd9488f-18f2-4dd1-a48f-80ee90507509", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T03:34:09.000Z" - }, - "end": { - "$date": "2021-03-26T06:06:21.000Z" - }, - "events": [ - { - "uuid": "1b9e2547-e6ef-4d84-a6e4-bfc6c98645b0", - "start": { - "$date": "2021-03-26T03:34:09.000Z" - }, - "end": { - "$date": "2021-03-26T06:06:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "26836d32-a1a0-4e73-b997-40509cd68d71", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-26T03:49:23.000Z" - }, - "end": { - "$date": "2021-03-26T04:34:34.000Z" - }, - "events": [ - { - "uuid": "e57f01c5-9162-4868-b267-4634f09444ff", - "start": { - "$date": "2021-03-26T03:49:23.000Z" - }, - "end": { - "$date": "2021-03-26T04:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c3bea16-5862-4a4f-bd08-9a248b2b5b66", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-26T04:06:20.000Z" - }, - "end": { - "$date": "2021-03-26T04:28:42.000Z" - }, - "events": [ - { - "uuid": "fb5b6735-ef01-45fd-8bc1-e8ea52116e36", - "start": { - "$date": "2021-03-26T04:06:20.000Z" - }, - "end": { - "$date": "2021-03-26T04:28:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5766c40c-9846-4424-9069-a2f1f015dd7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-26T04:08:08.000Z" - }, - "end": { - "$date": "2021-03-26T04:51:53.000Z" - }, - "events": [ - { - "uuid": "c30ce2c7-8d48-42d1-b17f-b3e4a0511165", - "start": { - "$date": "2021-03-26T04:08:08.000Z" - }, - "end": { - "$date": "2021-03-26T04:51:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a107fa4b-9f2b-4c67-93e1-3cf573ae3f69", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-26T04:34:26.000Z" - }, - "end": { - "$date": "2021-03-26T05:09:36.000Z" - }, - "events": [ - { - "uuid": "a40ddf7a-568a-42db-8daf-c9a3aad1c7fa", - "start": { - "$date": "2021-03-26T04:34:26.000Z" - }, - "end": { - "$date": "2021-03-26T05:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "957f4179-8396-4313-8651-e422e761a326", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-26T04:35:39.000Z" - }, - "end": { - "$date": "2021-03-26T05:08:41.000Z" - }, - "events": [ - { - "uuid": "ca3dd50c-cae2-47d9-a875-ec104f30f7e2", - "start": { - "$date": "2021-03-26T04:35:39.000Z" - }, - "end": { - "$date": "2021-03-26T05:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2f1e9315-bd4a-439c-b51f-d6024c72e022", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-26T04:45:00.000Z" - }, - "end": { - "$date": "2021-03-26T06:02:16.000Z" - }, - "events": [ - { - "uuid": "3ebef7ec-6a71-491d-a8a6-3a166af97825", - "start": { - "$date": "2021-03-26T04:45:00.000Z" - }, - "end": { - "$date": "2021-03-26T06:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c11c2afb-83ad-4c33-8ab8-d9522a047b71", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-26T15:12:59.000Z" - }, - "end": { - "$date": "2021-03-26T17:07:28.000Z" - }, - "events": [ - { - "uuid": "3a05d4c4-3b9f-4855-acb3-9d4a1a74849c", - "start": { - "$date": "2021-03-26T15:12:59.000Z" - }, - "end": { - "$date": "2021-03-26T17:07:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1b47f10d-083e-4c2f-983f-f6bdc3ea49e2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-26T15:34:46.000Z" - }, - "end": { - "$date": "2021-03-26T15:37:11.000Z" - }, - "events": [ - { - "uuid": "5ea0d6e1-01c6-46ce-9e57-df613dd8eac9", - "start": { - "$date": "2021-03-26T15:34:46.000Z" - }, - "end": { - "$date": "2021-03-26T15:37:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad679e5d-37a7-4269-b675-66830e50a866", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T16:16:01.000Z" - }, - "end": { - "$date": "2021-03-26T17:08:04.000Z" - }, - "events": [ - { - "uuid": "b15d0d99-73e4-4aca-b8e1-39e6949ed9a5", - "start": { - "$date": "2021-03-26T16:16:01.000Z" - }, - "end": { - "$date": "2021-03-26T17:08:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0556fec1-675e-4671-9209-5f51b1cc8776", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T18:13:38.000Z" - }, - "end": { - "$date": "2021-03-26T21:35:42.000Z" - }, - "events": [ - { - "uuid": "393186b9-1c65-4c51-a4dc-7fbcdad05222", - "start": { - "$date": "2021-03-26T18:13:38.000Z" - }, - "end": { - "$date": "2021-03-26T21:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2356cce6-8ba1-4f62-9a7a-2c6535066671", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-26T20:04:01.000Z" - }, - "end": { - "$date": "2021-03-26T20:50:08.000Z" - }, - "events": [ - { - "uuid": "a1ed612b-4463-454e-a66d-e3e8f684e17f", - "start": { - "$date": "2021-03-26T20:04:01.000Z" - }, - "end": { - "$date": "2021-03-26T20:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e7318b4b-28d5-4e87-9c7b-069d817ab95b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-26T20:29:37.000Z" - }, - "end": { - "$date": "2021-03-26T22:21:38.000Z" - }, - "events": [ - { - "uuid": "86853882-1c71-494c-8a3d-4cde52b07d0a", - "start": { - "$date": "2021-03-26T20:29:37.000Z" - }, - "end": { - "$date": "2021-03-26T21:31:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "887b3104-1f8e-41da-91de-ec3021b7e09e", - "start": { - "$date": "2021-03-26T21:31:37.000Z" - }, - "end": { - "$date": "2021-03-26T21:33:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5f03d5d-05bd-4492-a8be-b5cc11446762", - "start": { - "$date": "2021-03-26T21:33:37.000Z" - }, - "end": { - "$date": "2021-03-26T22:21:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6fe54cdd-cfdc-4619-bddd-3491900ffcf3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-26T21:47:31.000Z" - }, - "end": { - "$date": "2021-03-26T21:47:35.000Z" - }, - "events": [ - { - "uuid": "058d949d-8bc9-4c88-8833-a8f3efa1380b", - "start": { - "$date": "2021-03-26T21:47:31.000Z" - }, - "end": { - "$date": "2021-03-26T21:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "96004c41-4479-41fe-923a-24e7eff478d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-26T22:08:32.000Z" - }, - "end": { - "$date": "2021-03-26T22:11:01.000Z" - }, - "events": [ - { - "uuid": "749fc38e-9b77-4622-8878-08f23ca930ec", - "start": { - "$date": "2021-03-26T22:08:32.000Z" - }, - "end": { - "$date": "2021-03-26T22:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cf089e64-87b4-45e0-b167-edec4e49371a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-26T22:59:18.000Z" - }, - "end": { - "$date": "2021-03-27T00:41:18.000Z" - }, - "events": [ - { - "uuid": "cd021fca-0ec1-4538-b2a2-a3689e3dfdeb", - "start": { - "$date": "2021-03-26T22:59:18.000Z" - }, - "end": { - "$date": "2021-03-27T00:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "700f68ad-8147-44cc-9056-44a7715911fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-26T22:43:55.000Z" - }, - "end": { - "$date": "2021-03-27T00:02:38.000Z" - }, - "events": [ - { - "uuid": "8ae327c3-34f3-4ccf-86ed-e440d872a9b7", - "start": { - "$date": "2021-03-26T22:43:55.000Z" - }, - "end": { - "$date": "2021-03-27T00:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "d913c7ec-6c83-4d2a-a61c-eb114fc0af68", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-26T22:49:22.000Z" - }, - "end": { - "$date": "2021-03-26T22:53:22.000Z" - }, - "events": [ - { - "uuid": "7ca63b45-ea75-4a9d-9c2e-6ed21b28ca1a", - "start": { - "$date": "2021-03-26T22:49:22.000Z" - }, - "end": { - "$date": "2021-03-26T22:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "b0027e16-43f7-4f0e-945e-aef33df417ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-26T22:53:37.000Z" - }, - "end": { - "$date": "2021-03-26T22:55:02.000Z" - }, - "events": [ - { - "uuid": "61312f57-e740-4ec9-ba2e-5726917950c5", - "start": { - "$date": "2021-03-26T22:53:37.000Z" - }, - "end": { - "$date": "2021-03-26T22:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "51ef4c3a-c74a-4821-88a1-c4c4d4c69746", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-26T22:55:23.000Z" - }, - "end": { - "$date": "2021-03-26T23:27:02.000Z" - }, - "events": [ - { - "uuid": "17ccf064-bb71-415d-809d-6fc59024591f", - "start": { - "$date": "2021-03-26T22:55:23.000Z" - }, - "end": { - "$date": "2021-03-26T23:27:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "91d3aec0-f674-439e-828d-4688cb4a18c7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-26T22:56:38.000Z" - }, - "end": { - "$date": "2021-03-27T02:06:17.000Z" - }, - "events": [ - { - "uuid": "4a38c71b-1822-48c4-8f0d-23edb5881eec", - "start": { - "$date": "2021-03-26T22:56:38.000Z" - }, - "end": { - "$date": "2021-03-27T02:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2184f04b-3037-4f42-9f6f-34ddfc4419ba", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-26T23:23:41.000Z" - }, - "end": { - "$date": "2021-03-27T00:14:13.000Z" - }, - "events": [ - { - "uuid": "8b978bac-b1c0-4f0c-91e8-888ba9b78511", - "start": { - "$date": "2021-03-26T23:23:41.000Z" - }, - "end": { - "$date": "2021-03-27T00:14:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "08042711-d46f-445a-aa11-9a4560e1a02a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T00:41:33.000Z" - }, - "end": { - "$date": "2021-03-27T02:01:25.000Z" - }, - "events": [ - { - "uuid": "5a21320d-cfd5-45c9-ac3b-418fcf18cdb9", - "start": { - "$date": "2021-03-27T00:41:33.000Z" - }, - "end": { - "$date": "2021-03-27T02:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "748680d0-c40e-4d3f-84ad-311d00d88b70", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-27T00:53:37.000Z" - }, - "end": { - "$date": "2021-03-27T00:58:42.000Z" - }, - "events": [ - { - "uuid": "2536135d-303d-4d93-a2f0-3d36c80cd8e2", - "start": { - "$date": "2021-03-27T00:53:37.000Z" - }, - "end": { - "$date": "2021-03-27T00:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4d89ca65-005c-42b9-a27d-8ea9c9840639", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T00:53:39.000Z" - }, - "end": { - "$date": "2021-03-27T00:58:19.000Z" - }, - "events": [ - { - "uuid": "5c449c31-087c-4709-8377-54418fb93d92", - "start": { - "$date": "2021-03-27T00:53:39.000Z" - }, - "end": { - "$date": "2021-03-27T00:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "47626b58-58fc-4af3-be22-1dee6ab01af8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-27T01:09:50.000Z" - }, - "end": { - "$date": "2021-03-27T02:16:41.000Z" - }, - "events": [ - { - "uuid": "01931efe-a479-482d-b3d0-958a7a8618a4", - "start": { - "$date": "2021-03-27T01:09:50.000Z" - }, - "end": { - "$date": "2021-03-27T02:16:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2d1b1604-c07e-42d8-a96f-156012c97e3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T01:43:25.000Z" - }, - "end": { - "$date": "2021-03-27T01:45:29.000Z" - }, - "events": [ - { - "uuid": "4e292c7f-14a2-4f27-9c32-41a57724c97f", - "start": { - "$date": "2021-03-27T01:43:25.000Z" - }, - "end": { - "$date": "2021-03-27T01:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7ff0396a-6989-4d7f-bdf8-da32723dd2ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T01:46:00.000Z" - }, - "end": { - "$date": "2021-03-27T02:05:47.000Z" - }, - "events": [ - { - "uuid": "5586cb9f-e40f-420f-b759-3b74d4ef107b", - "start": { - "$date": "2021-03-27T01:46:00.000Z" - }, - "end": { - "$date": "2021-03-27T02:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "e5ff2204-20c9-47e1-b952-d7aededaa0c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-27T01:48:16.000Z" - }, - "end": { - "$date": "2021-03-27T02:14:55.000Z" - }, - "events": [ - { - "uuid": "3b56c225-5fa1-4410-bac0-e7e34128cae3", - "start": { - "$date": "2021-03-27T01:48:16.000Z" - }, - "end": { - "$date": "2021-03-27T02:14:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78fb7f7b-5e26-4dc5-b0f0-aad60d42b6bb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T02:08:20.000Z" - }, - "end": { - "$date": "2021-03-27T02:11:56.000Z" - }, - "events": [ - { - "uuid": "ec47c06c-cb91-4a34-bb7c-d0209a5a3840", - "start": { - "$date": "2021-03-27T02:08:20.000Z" - }, - "end": { - "$date": "2021-03-27T02:11:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ad1521aa-033b-4248-b8a8-9ed29f3a15b1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T02:08:38.000Z" - }, - "end": { - "$date": "2021-03-27T02:10:07.000Z" - }, - "events": [ - { - "uuid": "9f760c1f-1340-435e-82a1-75fc0f522abc", - "start": { - "$date": "2021-03-27T02:08:38.000Z" - }, - "end": { - "$date": "2021-03-27T02:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2abef862-80d7-4682-995a-418273d0c79f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T02:10:33.000Z" - }, - "end": { - "$date": "2021-03-27T03:04:19.000Z" - }, - "events": [ - { - "uuid": "3d506d99-98d0-4338-af16-85a2d2823bd8", - "start": { - "$date": "2021-03-27T02:10:33.000Z" - }, - "end": { - "$date": "2021-03-27T03:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1af39f6a-30a2-40c1-be5a-3cf59dcacb53", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-27T02:11:29.000Z" - }, - "end": { - "$date": "2021-03-27T04:22:34.000Z" - }, - "events": [ - { - "uuid": "9d5ec515-b3c5-41a4-bbd2-5f1dffb8a855", - "start": { - "$date": "2021-03-27T02:11:29.000Z" - }, - "end": { - "$date": "2021-03-27T04:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e7836119-c4a3-4566-a08d-613b2079b0a8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-27T02:14:07.000Z" - }, - "end": { - "$date": "2021-03-27T04:22:31.000Z" - }, - "events": [ - { - "uuid": "9f63fe0b-7723-47dd-98cd-93ea8b422ea0", - "start": { - "$date": "2021-03-27T02:14:07.000Z" - }, - "end": { - "$date": "2021-03-27T04:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "efafb484-cc38-4bbe-9447-294ad36c3425", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-27T02:15:21.000Z" - }, - "end": { - "$date": "2021-03-27T02:20:39.000Z" - }, - "events": [ - { - "uuid": "ab0562d1-e3d8-41c8-aab4-5c257bb5486f", - "start": { - "$date": "2021-03-27T02:15:21.000Z" - }, - "end": { - "$date": "2021-03-27T02:20:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "418f9377-fb11-44bf-9133-a1afe5b4af60", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T02:18:31.000Z" - }, - "end": { - "$date": "2021-03-27T02:44:41.000Z" - }, - "events": [ - { - "uuid": "708300c1-c3e3-486a-a715-c6a7f5fba00e", - "start": { - "$date": "2021-03-27T02:18:31.000Z" - }, - "end": { - "$date": "2021-03-27T02:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b7247bb4-0c16-4365-b32e-e755c20d0772", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-27T02:21:00.000Z" - }, - "end": { - "$date": "2021-03-27T08:26:35.000Z" - }, - "events": [ - { - "uuid": "81c1025b-4bf6-4527-903e-593673706002", - "start": { - "$date": "2021-03-27T02:21:00.000Z" - }, - "end": { - "$date": "2021-03-27T08:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7303d891-c0a9-44db-8897-c923a0c800e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T02:24:32.000Z" - }, - "end": { - "$date": "2021-03-27T03:20:00.000Z" - }, - "events": [ - { - "uuid": "caf82665-aed1-474c-9e8a-c0f0bdcf6196", - "start": { - "$date": "2021-03-27T02:24:32.000Z" - }, - "end": { - "$date": "2021-03-27T02:40:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "18bf4f5d-a840-4d07-8481-de616a123535", - "start": { - "$date": "2021-03-27T02:40:32.000Z" - }, - "end": { - "$date": "2021-03-27T02:45:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b75e29ec-de05-4d36-b570-40338fadf95b", - "start": { - "$date": "2021-03-27T02:45:32.000Z" - }, - "end": { - "$date": "2021-03-27T03:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "199d0627-6ada-4937-bfd7-6907a51c2d16", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T02:48:01.000Z" - }, - "end": { - "$date": "2021-03-27T04:02:49.000Z" - }, - "events": [ - { - "uuid": "844b6c62-d99c-494e-a2f8-ed9b6d6ae2dc", - "start": { - "$date": "2021-03-27T02:48:01.000Z" - }, - "end": { - "$date": "2021-03-27T04:02:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f6d119fa-da22-4a28-8db5-2ba9b2010661", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-27T02:50:04.000Z" - }, - "end": { - "$date": "2021-03-27T04:27:08.000Z" - }, - "events": [ - { - "uuid": "3905e411-705e-473d-ad87-ad072823b1da", - "start": { - "$date": "2021-03-27T02:50:04.000Z" - }, - "end": { - "$date": "2021-03-27T04:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "daa3e5a7-e6a7-4a3d-a9dc-8270cf5dcacf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-27T03:02:00.000Z" - }, - "end": { - "$date": "2021-03-27T03:47:48.000Z" - }, - "events": [ - { - "uuid": "e89231dd-88a5-43ca-b281-c961d8c5eda9", - "start": { - "$date": "2021-03-27T03:02:00.000Z" - }, - "end": { - "$date": "2021-03-27T03:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5f86fc91-a519-43a9-aca5-22ad3680b5d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T03:04:40.000Z" - }, - "end": { - "$date": "2021-03-27T04:22:22.000Z" - }, - "events": [ - { - "uuid": "c9a77755-b85c-4291-9225-25149a473fe1", - "start": { - "$date": "2021-03-27T03:04:40.000Z" - }, - "end": { - "$date": "2021-03-27T04:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6aa07bbb-4f1e-4cfb-b74c-ab9daadb5158", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-27T03:16:16.000Z" - }, - "end": { - "$date": "2021-03-27T06:20:04.000Z" - }, - "events": [ - { - "uuid": "be18b751-0ce8-49f4-b23d-cca9886f7977", - "start": { - "$date": "2021-03-27T03:16:16.000Z" - }, - "end": { - "$date": "2021-03-27T05:38:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff28321f-3602-4eae-87d3-d15a6b3d3c71", - "start": { - "$date": "2021-03-27T05:38:16.000Z" - }, - "end": { - "$date": "2021-03-27T05:43:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ac1ad26b-06f1-4263-9da9-9269bcb80523", - "start": { - "$date": "2021-03-27T05:43:16.000Z" - }, - "end": { - "$date": "2021-03-27T05:53:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0774210-8bfc-4920-ad30-f2f5347c273d", - "start": { - "$date": "2021-03-27T05:53:16.000Z" - }, - "end": { - "$date": "2021-03-27T05:58:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7e88b102-611d-42d8-a1cd-08d52d3f4673", - "start": { - "$date": "2021-03-27T05:58:16.000Z" - }, - "end": { - "$date": "2021-03-27T06:20:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "13d7a036-8b5a-46b2-8a3d-623613d22eb5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T03:20:45.000Z" - }, - "end": { - "$date": "2021-03-27T04:23:01.000Z" - }, - "events": [ - { - "uuid": "de83d561-d5ba-4701-8554-f990754646ae", - "start": { - "$date": "2021-03-27T03:20:45.000Z" - }, - "end": { - "$date": "2021-03-27T04:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9f2c1d75-933e-40ed-ad7b-fbc3789fd211", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-27T03:53:54.000Z" - }, - "end": { - "$date": "2021-03-27T04:36:10.000Z" - }, - "events": [ - { - "uuid": "d651b28d-7355-4f43-9c0d-c8b25dfb1824", - "start": { - "$date": "2021-03-27T03:53:54.000Z" - }, - "end": { - "$date": "2021-03-27T04:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "81221cf0-9b26-46e2-8f02-c058d8f29196", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T04:03:09.000Z" - }, - "end": { - "$date": "2021-03-27T06:24:10.000Z" - }, - "events": [ - { - "uuid": "e539b46c-fd44-4d47-a1b0-2cbc1e7610f2", - "start": { - "$date": "2021-03-27T04:03:09.000Z" - }, - "end": { - "$date": "2021-03-27T06:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d59791a5-552c-4fcc-9f4d-d030a6f72705", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T04:23:41.000Z" - }, - "end": { - "$date": "2021-03-27T04:56:43.000Z" - }, - "events": [ - { - "uuid": "bd81a4cf-2406-4098-a3cb-c1712ddf0364", - "start": { - "$date": "2021-03-27T04:23:41.000Z" - }, - "end": { - "$date": "2021-03-27T04:56:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4a1ed4f9-186f-4f7b-aa6d-0657c5b88ba7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-27T04:27:34.000Z" - }, - "end": { - "$date": "2021-03-27T05:16:24.000Z" - }, - "events": [ - { - "uuid": "f92a2500-fd42-4178-a747-8c441e7f9752", - "start": { - "$date": "2021-03-27T04:27:34.000Z" - }, - "end": { - "$date": "2021-03-27T05:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "97b4b254-d7cf-404a-b310-4655bb53f55b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-27T04:36:46.000Z" - }, - "end": { - "$date": "2021-03-27T05:51:53.000Z" - }, - "events": [ - { - "uuid": "8a769266-ad6c-466b-a8b5-dc51e7d2e57c", - "start": { - "$date": "2021-03-27T04:36:46.000Z" - }, - "end": { - "$date": "2021-03-27T05:51:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ed6968c-89a8-4666-81ee-44998cbdbf6c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-27T03:53:54.000Z" - }, - "end": { - "$date": "2021-03-27T08:37:20.000Z" - }, - "events": [ - { - "uuid": "94a47ca2-f63e-447a-ac90-6a1baceb3706", - "start": { - "$date": "2021-03-27T03:53:54.000Z" - }, - "end": { - "$date": "2021-03-27T08:37:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b5683d2-f4fd-49bc-a4d1-7bb0e4245036", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-27T04:46:01.000Z" - }, - "end": { - "$date": "2021-03-27T05:12:53.000Z" - }, - "events": [ - { - "uuid": "9b8b74a0-6b63-469d-8cfc-79203eea3902", - "start": { - "$date": "2021-03-27T04:46:01.000Z" - }, - "end": { - "$date": "2021-03-27T05:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "ebff721b-8ea4-4a5e-8e55-49d00b4f2d7f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-27T05:12:13.000Z" - }, - "end": { - "$date": "2021-03-27T06:00:40.000Z" - }, - "events": [ - { - "uuid": "853e17cd-7a6b-43bd-b4ce-29f194b59624", - "start": { - "$date": "2021-03-27T05:12:13.000Z" - }, - "end": { - "$date": "2021-03-27T06:00:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9aaabd52-4a5a-4093-a8aa-0a82c6060873", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-27T05:24:13.000Z" - }, - "end": { - "$date": "2021-03-27T05:53:34.000Z" - }, - "events": [ - { - "uuid": "7344e5d4-e6d1-4cb3-95e8-c1d7d88c93d0", - "start": { - "$date": "2021-03-27T05:24:13.000Z" - }, - "end": { - "$date": "2021-03-27T05:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "a0659b0e-848d-496e-9d08-66925deaa400", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T05:25:50.000Z" - }, - "end": { - "$date": "2021-03-27T05:27:36.000Z" - }, - "events": [ - { - "uuid": "67d53f44-d98f-4350-80d0-af42e06ebc2d", - "start": { - "$date": "2021-03-27T05:25:50.000Z" - }, - "end": { - "$date": "2021-03-27T05:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d3007fe9-257c-4607-9dbc-0aefedc86158", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T05:47:12.000Z" - }, - "end": { - "$date": "2021-03-27T06:29:07.000Z" - }, - "events": [ - { - "uuid": "6e99152c-8418-4b73-84fe-316e8474e87d", - "start": { - "$date": "2021-03-27T05:47:12.000Z" - }, - "end": { - "$date": "2021-03-27T06:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb40a4de-bb8f-4b73-8a7d-fa6fc520bb66", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-27T05:58:08.000Z" - }, - "end": { - "$date": "2021-03-27T06:30:34.000Z" - }, - "events": [ - { - "uuid": "460fb530-6835-48fd-ac2f-21fd5da62c1f", - "start": { - "$date": "2021-03-27T05:58:08.000Z" - }, - "end": { - "$date": "2021-03-27T06:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f5bff59-249e-4f0f-9aa5-1409f6a5fcc6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-27T06:35:54.000Z" - }, - "end": { - "$date": "2021-03-27T06:57:20.000Z" - }, - "events": [ - { - "uuid": "4779a366-0af2-4fc5-95e2-7f511b6c2438", - "start": { - "$date": "2021-03-27T06:35:54.000Z" - }, - "end": { - "$date": "2021-03-27T06:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "62d1e8ec-567b-4efb-bb8e-101326905cc7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-27T06:49:30.000Z" - }, - "end": { - "$date": "2021-03-27T09:09:54.000Z" - }, - "events": [ - { - "uuid": "e6588f4d-0740-45d6-90c4-2971040ca4e8", - "start": { - "$date": "2021-03-27T06:49:30.000Z" - }, - "end": { - "$date": "2021-03-27T09:09:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abd29fff-d084-428b-bda3-bd2eb3d4276c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-27T07:08:40.000Z" - }, - "end": { - "$date": "2021-03-27T07:37:36.000Z" - }, - "events": [ - { - "uuid": "76c864e3-116c-40be-a75a-1b5b7a52e580", - "start": { - "$date": "2021-03-27T07:08:40.000Z" - }, - "end": { - "$date": "2021-03-27T07:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c3fe01f-c90a-49fa-a49d-7a089b6187ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T14:54:25.000Z" - }, - "end": { - "$date": "2021-03-27T15:29:26.000Z" - }, - "events": [ - { - "uuid": "2871c47f-8ada-466c-a35b-c866a759888b", - "start": { - "$date": "2021-03-27T14:54:25.000Z" - }, - "end": { - "$date": "2021-03-27T15:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aac7d94c-31dc-4031-b884-53fa5de10d88", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T15:33:11.000Z" - }, - "end": { - "$date": "2021-03-27T15:34:16.000Z" - }, - "events": [ - { - "uuid": "d1fb387e-9af1-4e9e-93dc-f0e15b802352", - "start": { - "$date": "2021-03-27T15:33:11.000Z" - }, - "end": { - "$date": "2021-03-27T15:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "e04ed3b1-0b0c-4c93-871c-bccc27e060f8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T15:58:33.000Z" - }, - "end": { - "$date": "2021-03-27T16:32:53.000Z" - }, - "events": [ - { - "uuid": "4d2e7c81-3ea7-477c-a023-0c7f65ab1845", - "start": { - "$date": "2021-03-27T15:58:33.000Z" - }, - "end": { - "$date": "2021-03-27T16:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "edc9c98f-7a0d-4701-866f-be091bd24e3a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-27T16:03:00.000Z" - }, - "end": { - "$date": "2021-03-27T16:55:47.000Z" - }, - "events": [ - { - "uuid": "eeb45f99-0717-46e2-a0f2-400589df3fd7", - "start": { - "$date": "2021-03-27T16:03:00.000Z" - }, - "end": { - "$date": "2021-03-27T16:55:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a49c01b-f38c-4371-8074-aa5736b31ee9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T16:42:36.000Z" - }, - "end": { - "$date": "2021-03-27T17:13:36.000Z" - }, - "events": [ - { - "uuid": "b0d573a6-b148-447b-bee0-691cd22dbda0", - "start": { - "$date": "2021-03-27T16:42:36.000Z" - }, - "end": { - "$date": "2021-03-27T17:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "757cddf8-0295-458d-9ec3-da48e6be3563", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T17:21:21.000Z" - }, - "end": { - "$date": "2021-03-27T17:22:36.000Z" - }, - "events": [ - { - "uuid": "1effbd3b-6da9-4e07-b695-db563629f94f", - "start": { - "$date": "2021-03-27T17:21:21.000Z" - }, - "end": { - "$date": "2021-03-27T17:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "61209e09-50d3-4346-8405-628d1e81bd77", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-27T17:23:26.000Z" - }, - "end": { - "$date": "2021-03-27T18:42:16.000Z" - }, - "events": [ - { - "uuid": "c4c99c75-94ba-46fb-903f-3d2b118be547", - "start": { - "$date": "2021-03-27T17:23:26.000Z" - }, - "end": { - "$date": "2021-03-27T18:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62189411-0e3a-46e1-a07d-45a8f7262755", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T18:34:44.000Z" - }, - "end": { - "$date": "2021-03-27T19:01:59.000Z" - }, - "events": [ - { - "uuid": "5561722e-e000-4123-925a-7ba91affd8c2", - "start": { - "$date": "2021-03-27T18:34:44.000Z" - }, - "end": { - "$date": "2021-03-27T19:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "4e4f603f-9dc5-4891-9575-3cdd42f12476", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T18:14:48.000Z" - }, - "end": { - "$date": "2021-03-27T22:35:29.000Z" - }, - "events": [ - { - "uuid": "10dcb6d7-4c0b-4f8f-be8d-09aead7eed08", - "start": { - "$date": "2021-03-27T18:14:48.000Z" - }, - "end": { - "$date": "2021-03-27T22:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "a18003f7-19c0-4b4b-bbb6-6aa6d4da91f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-27T18:39:42.000Z" - }, - "end": { - "$date": "2021-03-27T19:29:29.000Z" - }, - "events": [ - { - "uuid": "131e80ce-f50c-420b-938d-898d8a2a9768", - "start": { - "$date": "2021-03-27T18:39:42.000Z" - }, - "end": { - "$date": "2021-03-27T19:29:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "22143de8-6db3-44a1-8e3f-69a0546e4f68", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-27T19:25:04.000Z" - }, - "end": { - "$date": "2021-03-27T21:19:07.000Z" - }, - "events": [ - { - "uuid": "afc795e3-93bf-4244-b38d-0dfdff23e268", - "start": { - "$date": "2021-03-27T19:25:04.000Z" - }, - "end": { - "$date": "2021-03-27T21:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9cfe1418-b9e0-482e-a214-5d612e765733", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-27T19:29:34.000Z" - }, - "end": { - "$date": "2021-03-28T01:01:08.000Z" - }, - "events": [ - { - "uuid": "dc36aee2-9075-4747-becb-688dd3a9a8f2", - "start": { - "$date": "2021-03-27T19:29:34.000Z" - }, - "end": { - "$date": "2021-03-27T22:45:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b18f0c75-8b12-440f-88d9-80ec0a364048", - "start": { - "$date": "2021-03-27T22:45:34.000Z" - }, - "end": { - "$date": "2021-03-27T23:28:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92046ebb-01d4-4e58-8d82-843f94699b18", - "start": { - "$date": "2021-03-27T23:28:34.000Z" - }, - "end": { - "$date": "2021-03-27T23:50:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a61b507-7221-40bf-9949-f865816e7289", - "start": { - "$date": "2021-03-27T23:50:34.000Z" - }, - "end": { - "$date": "2021-03-27T23:53:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3ea0076a-cafa-4a7b-8989-2d92fb1896dc", - "start": { - "$date": "2021-03-27T23:53:34.000Z" - }, - "end": { - "$date": "2021-03-28T00:05:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2b316d7e-72f4-42f7-a26a-7f637a3a4295", - "start": { - "$date": "2021-03-28T00:05:34.000Z" - }, - "end": { - "$date": "2021-03-28T00:10:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59cc19c5-bb0c-4be4-910f-370a1db47ae5", - "start": { - "$date": "2021-03-28T00:10:34.000Z" - }, - "end": { - "$date": "2021-03-28T00:20:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df7a60d3-6e42-4427-9fce-d1b3c4297888", - "start": { - "$date": "2021-03-28T00:20:34.000Z" - }, - "end": { - "$date": "2021-03-28T00:24:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2eecfea8-7488-4c1d-8ac6-fd2e6dd47df3", - "start": { - "$date": "2021-03-28T00:24:34.000Z" - }, - "end": { - "$date": "2021-03-28T01:01:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9851285a-5edd-4029-9572-a84e32990839", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-27T20:32:35.000Z" - }, - "end": { - "$date": "2021-03-27T21:58:28.000Z" - }, - "events": [ - { - "uuid": "81f10b24-609c-422a-b08c-9a9fe1a5256f", - "start": { - "$date": "2021-03-27T20:32:35.000Z" - }, - "end": { - "$date": "2021-03-27T21:58:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e490c321-6eaf-4c6a-b509-f305acb59bdc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-27T20:34:16.000Z" - }, - "end": { - "$date": "2021-03-27T21:56:49.000Z" - }, - "events": [ - { - "uuid": "84a5ac3b-8ad9-42ba-bf18-2c5ce2a07350", - "start": { - "$date": "2021-03-27T20:34:16.000Z" - }, - "end": { - "$date": "2021-03-27T21:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "2f53d456-c6c9-4fbc-a110-5457dafbd0c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T20:47:16.000Z" - }, - "end": { - "$date": "2021-03-27T21:00:25.000Z" - }, - "events": [ - { - "uuid": "c761895c-9dfe-4bbc-9c74-16010ce4c5d1", - "start": { - "$date": "2021-03-27T20:47:16.000Z" - }, - "end": { - "$date": "2021-03-27T21:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2de724f7-3eea-45b5-a21a-0759d8d79287", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-27T20:57:13.000Z" - }, - "end": { - "$date": "2021-03-27T21:18:59.000Z" - }, - "events": [ - { - "uuid": "1a611559-dcb8-4527-b96c-03c091244d22", - "start": { - "$date": "2021-03-27T20:57:13.000Z" - }, - "end": { - "$date": "2021-03-27T21:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df3d8aad-d148-4ac7-985f-6bd41bce45ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T21:03:07.000Z" - }, - "end": { - "$date": "2021-03-27T21:40:53.000Z" - }, - "events": [ - { - "uuid": "3e53a60d-ca85-4f82-ad03-8d188d02cbf1", - "start": { - "$date": "2021-03-27T21:03:07.000Z" - }, - "end": { - "$date": "2021-03-27T21:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d7126a24-c9ca-4b13-bc19-602ae8fe0197", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-27T21:24:21.000Z" - }, - "end": { - "$date": "2021-03-28T00:23:47.000Z" - }, - "events": [ - { - "uuid": "4f3ddaa4-a601-4868-b6fd-2e7ffa59a812", - "start": { - "$date": "2021-03-27T21:24:21.000Z" - }, - "end": { - "$date": "2021-03-28T00:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dafbc213-5ff8-4b76-8279-6c4d046170d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-27T21:42:14.000Z" - }, - "end": { - "$date": "2021-03-27T22:20:31.000Z" - }, - "events": [ - { - "uuid": "45ca9d0b-a695-458d-93b6-fc22c9502e37", - "start": { - "$date": "2021-03-27T21:42:14.000Z" - }, - "end": { - "$date": "2021-03-27T22:20:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "7efb7cef-f3c6-4618-b23a-d3981bf7a8a8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-27T22:42:52.000Z" - }, - "end": { - "$date": "2021-03-28T03:44:36.000Z" - }, - "events": [ - { - "uuid": "09cc0a79-89da-4a0b-afa2-dfad0acdd4d1", - "start": { - "$date": "2021-03-27T22:42:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:03:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1fb6c67e-6824-4535-93f3-a7005991b1d3", - "start": { - "$date": "2021-03-28T01:03:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:46:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ae7b7a8-4394-4858-aaae-0938a9eb800a", - "start": { - "$date": "2021-03-28T01:46:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:49:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "34b76c62-1b28-49e8-bd1a-8c93527486d3", - "start": { - "$date": "2021-03-28T01:49:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:51:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74e554ca-4661-4dac-abf8-672738fdd942", - "start": { - "$date": "2021-03-28T01:51:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:54:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bfca906b-2458-414f-89d7-bce03bb84390", - "start": { - "$date": "2021-03-28T01:54:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:56:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "17aaa94e-943f-448a-bf19-e14dd604d095", - "start": { - "$date": "2021-03-28T01:56:52.000Z" - }, - "end": { - "$date": "2021-03-28T01:58:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1807b82e-a76a-4e0e-a9bf-c6f1a2f6cad2", - "start": { - "$date": "2021-03-28T01:58:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:03:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8dc4997c-4e3c-40b0-b4f4-079930febac0", - "start": { - "$date": "2021-03-28T02:03:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:10:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d626c1b6-a0dd-4124-b426-19d0a2179b81", - "start": { - "$date": "2021-03-28T02:10:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:13:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b09e2d5d-bab0-4eab-8084-70bbb7a686f8", - "start": { - "$date": "2021-03-28T02:13:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:31:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0840533c-e88a-4b74-905b-88a4b28346d4", - "start": { - "$date": "2021-03-28T02:31:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:53:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "116aaeab-77bf-4cf3-b945-a2256678c1db", - "start": { - "$date": "2021-03-28T02:53:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:55:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a73ce8e4-b2b9-4ee4-bc8a-a99fb2707add", - "start": { - "$date": "2021-03-28T02:55:52.000Z" - }, - "end": { - "$date": "2021-03-28T02:59:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7071f332-69cd-4855-8fcd-2d33db770023", - "start": { - "$date": "2021-03-28T02:59:52.000Z" - }, - "end": { - "$date": "2021-03-28T03:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b314b0be-0ad4-4ce2-8ff2-7643c8fbd3c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T22:52:11.000Z" - }, - "end": { - "$date": "2021-03-27T23:31:58.000Z" - }, - "events": [ - { - "uuid": "951383a6-2f7b-437a-a1ee-6acdefdcfbb7", - "start": { - "$date": "2021-03-27T22:52:11.000Z" - }, - "end": { - "$date": "2021-03-27T23:04:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe70dda8-817a-4661-99f3-85ed456c3d38", - "start": { - "$date": "2021-03-27T23:04:11.000Z" - }, - "end": { - "$date": "2021-03-27T23:09:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff3dc6f8-5845-47a0-aae1-8768dc58652f", - "start": { - "$date": "2021-03-27T23:09:11.000Z" - }, - "end": { - "$date": "2021-03-27T23:19:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2fd40b4c-4bf0-4921-a08b-eba8d5260d54", - "start": { - "$date": "2021-03-27T23:19:11.000Z" - }, - "end": { - "$date": "2021-03-27T23:21:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c07d6ecf-a479-492c-acd0-e3bd49aa2bcd", - "start": { - "$date": "2021-03-27T23:21:11.000Z" - }, - "end": { - "$date": "2021-03-27T23:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3fcbc2ab-61db-472c-a357-014bb9bdbff4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-27T23:23:44.000Z" - }, - "end": { - "$date": "2021-03-27T23:31:09.000Z" - }, - "events": [ - { - "uuid": "fe2e4554-06d2-4dd8-8d7f-a7ce39e762cf", - "start": { - "$date": "2021-03-27T23:23:44.000Z" - }, - "end": { - "$date": "2021-03-27T23:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5dd84d94-4456-4e9a-aaef-0ffea0edcba9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-27T23:33:48.000Z" - }, - "end": { - "$date": "2021-03-28T00:16:44.000Z" - }, - "events": [ - { - "uuid": "2f949537-eb9c-4b1c-9cbe-b6e311d40f58", - "start": { - "$date": "2021-03-27T23:33:48.000Z" - }, - "end": { - "$date": "2021-03-28T00:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f43b2b80-23f0-4123-aafb-ed1776d55689", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-28T00:16:54.000Z" - }, - "end": { - "$date": "2021-03-28T01:00:39.000Z" - }, - "events": [ - { - "uuid": "72f5b2b2-c8de-49a9-bd6c-a55ea45cbafc", - "start": { - "$date": "2021-03-28T00:16:54.000Z" - }, - "end": { - "$date": "2021-03-28T01:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "80eef330-9652-41fc-9bac-578303ed7ec8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-28T00:24:09.000Z" - }, - "end": { - "$date": "2021-03-28T00:28:00.000Z" - }, - "events": [ - { - "uuid": "1801319b-1fb0-4141-9956-5ce9a91f474f", - "start": { - "$date": "2021-03-28T00:24:09.000Z" - }, - "end": { - "$date": "2021-03-28T00:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "073a48a6-5d6e-49d1-9ad5-9042472028f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-28T00:28:01.000Z" - }, - "end": { - "$date": "2021-03-28T01:05:58.000Z" - }, - "events": [ - { - "uuid": "94739996-3a70-482b-a4f3-9bb6ccf4788f", - "start": { - "$date": "2021-03-28T00:28:01.000Z" - }, - "end": { - "$date": "2021-03-28T01:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "fd205512-039b-48d4-912a-5a04070aac18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-28T01:01:05.000Z" - }, - "end": { - "$date": "2021-03-28T01:29:25.000Z" - }, - "events": [ - { - "uuid": "c657e897-d7e3-4b7b-af05-3f5b3fc9fd9a", - "start": { - "$date": "2021-03-28T01:01:05.000Z" - }, - "end": { - "$date": "2021-03-28T01:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "82b7844e-89d9-4382-a7e6-15579e0fc26d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T01:01:38.000Z" - }, - "end": { - "$date": "2021-03-28T01:28:50.000Z" - }, - "events": [ - { - "uuid": "ce29eba9-b46a-4ff4-a159-e5162f6db6d2", - "start": { - "$date": "2021-03-28T01:01:38.000Z" - }, - "end": { - "$date": "2021-03-28T01:28:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "9efe1b1a-d41a-45f3-81b6-275660018a7d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-28T01:02:48.000Z" - }, - "end": { - "$date": "2021-03-28T01:31:28.000Z" - }, - "events": [ - { - "uuid": "3a7bda7c-a665-4170-a507-494ed40c5d38", - "start": { - "$date": "2021-03-28T01:02:48.000Z" - }, - "end": { - "$date": "2021-03-28T01:31:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2c249b6-5b9f-4104-9f6a-8eca14e69e8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-28T01:16:14.000Z" - }, - "end": { - "$date": "2021-03-28T01:44:53.000Z" - }, - "events": [ - { - "uuid": "e66f2572-0e52-4a54-a0ae-c49f353e2757", - "start": { - "$date": "2021-03-28T01:16:14.000Z" - }, - "end": { - "$date": "2021-03-28T01:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "54291401-9dfc-448e-9c3a-3739e1b16ca5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T01:31:25.000Z" - }, - "end": { - "$date": "2021-03-28T02:00:21.000Z" - }, - "events": [ - { - "uuid": "360b841f-65dc-47ea-975d-c65ef7cc5a9a", - "start": { - "$date": "2021-03-28T01:31:25.000Z" - }, - "end": { - "$date": "2021-03-28T02:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "0c9e895f-78c3-4551-a76c-bce95926b95d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-28T01:31:46.000Z" - }, - "end": { - "$date": "2021-03-28T02:00:16.000Z" - }, - "events": [ - { - "uuid": "c7cd6e58-1445-4e7e-a74f-c49dbb378c49", - "start": { - "$date": "2021-03-28T01:31:46.000Z" - }, - "end": { - "$date": "2021-03-28T02:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "230b4660-a6f5-462b-bb7c-7d73d20d7973", - "uuid": "cb121e9f-d70c-481b-ae12-968adc7733a5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-28T01:32:43.000Z" - }, - "end": { - "$date": "2021-03-28T01:37:23.000Z" - }, - "events": [ - { - "uuid": "7f4fe546-8d45-420d-b665-bb17ed472de8", - "start": { - "$date": "2021-03-28T01:32:43.000Z" - }, - "end": { - "$date": "2021-03-28T01:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e686a4ba-1a91-4f60-9615-9e596bca0d7d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-28T01:47:14.000Z" - }, - "end": { - "$date": "2021-03-28T06:35:34.000Z" - }, - "events": [ - { - "uuid": "d8c22354-c2b3-43c9-a863-781ac6334a9c", - "start": { - "$date": "2021-03-28T01:47:14.000Z" - }, - "end": { - "$date": "2021-03-28T05:21:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db3d254b-31b3-46dc-a835-07a6a47c3be1", - "start": { - "$date": "2021-03-28T05:21:14.000Z" - }, - "end": { - "$date": "2021-03-28T05:25:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96a6dfb0-adc3-4fe2-8e1b-779b133817c5", - "start": { - "$date": "2021-03-28T05:25:14.000Z" - }, - "end": { - "$date": "2021-03-28T06:35:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ddedf4ec-c4bb-464d-a657-eaba4133bde5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T02:08:17.000Z" - }, - "end": { - "$date": "2021-03-28T02:23:29.000Z" - }, - "events": [ - { - "uuid": "5133de2e-6696-472f-b18a-e6ae91d03fc9", - "start": { - "$date": "2021-03-28T02:08:17.000Z" - }, - "end": { - "$date": "2021-03-28T02:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f91ad064-8795-4012-94c1-6de721c0e1a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T02:24:24.000Z" - }, - "end": { - "$date": "2021-03-28T04:47:04.000Z" - }, - "events": [ - { - "uuid": "3ba09d19-ab4e-4666-9c4d-c00dc1b7d572", - "start": { - "$date": "2021-03-28T02:24:24.000Z" - }, - "end": { - "$date": "2021-03-28T04:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3eb046a5-9f0f-4ec6-9299-53d6aabcb090", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-28T02:49:01.000Z" - }, - "end": { - "$date": "2021-03-28T02:53:58.000Z" - }, - "events": [ - { - "uuid": "fdc020e7-cef7-4049-8848-23d17abbc881", - "start": { - "$date": "2021-03-28T02:49:01.000Z" - }, - "end": { - "$date": "2021-03-28T02:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24de06c9-11c8-4365-a9b5-02187fbce16c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-28T02:55:07.000Z" - }, - "end": { - "$date": "2021-03-28T06:22:40.000Z" - }, - "events": [ - { - "uuid": "de907c85-2d0b-48a3-9246-f3315d03a2b6", - "start": { - "$date": "2021-03-28T02:55:07.000Z" - }, - "end": { - "$date": "2021-03-28T06:22:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e7e69d32-a53b-4c15-8646-ec89349380c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-28T02:59:39.000Z" - }, - "end": { - "$date": "2021-03-28T06:22:49.000Z" - }, - "events": [ - { - "uuid": "3c2cd037-db6e-4b45-a4e4-e4c9b8797bde", - "start": { - "$date": "2021-03-28T02:59:39.000Z" - }, - "end": { - "$date": "2021-03-28T06:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "75609139-8e4c-443a-9b37-c8b9e9a6d39f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-28T03:22:17.000Z" - }, - "end": { - "$date": "2021-03-28T06:16:18.000Z" - }, - "events": [ - { - "uuid": "1c9630b5-4ef3-4955-96c5-000d67c9b45f", - "start": { - "$date": "2021-03-28T03:22:17.000Z" - }, - "end": { - "$date": "2021-03-28T06:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91ab7eca-cd62-453e-a633-c15e294c1bcb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-28T04:13:54.000Z" - }, - "end": { - "$date": "2021-03-28T04:28:19.000Z" - }, - "events": [ - { - "uuid": "149c0edd-e375-4e29-885a-d78f02785d79", - "start": { - "$date": "2021-03-28T04:13:54.000Z" - }, - "end": { - "$date": "2021-03-28T04:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "322fe3d5-ef3e-47f8-97c5-39875ef1e0f2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T03:44:41.000Z" - }, - "end": { - "$date": "2021-03-28T04:33:44.000Z" - }, - "events": [ - { - "uuid": "bf497a96-14c2-4684-a30d-f2d71f32fd53", - "start": { - "$date": "2021-03-28T03:44:41.000Z" - }, - "end": { - "$date": "2021-03-28T04:21:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b7e2a7f-6bd5-48f9-9cb1-12cafbda8c6f", - "start": { - "$date": "2021-03-28T04:21:41.000Z" - }, - "end": { - "$date": "2021-03-28T04:23:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2312caa2-b71d-43ef-ae8e-29ce5c451e7c", - "start": { - "$date": "2021-03-28T04:23:41.000Z" - }, - "end": { - "$date": "2021-03-28T04:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b483c4a0-46db-4214-8058-54d5a5598e66", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-28T03:54:05.000Z" - }, - "end": { - "$date": "2021-03-28T05:42:29.000Z" - }, - "events": [ - { - "uuid": "d78d6ef0-0e20-40c7-a9ee-2c3eb465f5fc", - "start": { - "$date": "2021-03-28T03:54:05.000Z" - }, - "end": { - "$date": "2021-03-28T04:22:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff174b23-a9fb-4410-ae4b-3b358ef8ab1f", - "start": { - "$date": "2021-03-28T04:22:05.000Z" - }, - "end": { - "$date": "2021-03-28T04:28:05.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "8a410337-807c-4484-bd23-6351a7e13de9", - "start": { - "$date": "2021-03-28T04:28:05.000Z" - }, - "end": { - "$date": "2021-03-28T05:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3dfc0441-8cbc-491f-ac55-96054c8a1ed9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-28T04:29:04.000Z" - }, - "end": { - "$date": "2021-03-28T05:35:51.000Z" - }, - "events": [ - { - "uuid": "b3544cd9-f690-46e3-9846-9fe2e3ae8145", - "start": { - "$date": "2021-03-28T04:29:04.000Z" - }, - "end": { - "$date": "2021-03-28T05:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "92b4c0cd-45da-4bd1-a638-cf81a58f6c63", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T04:59:12.000Z" - }, - "end": { - "$date": "2021-03-28T06:22:34.000Z" - }, - "events": [ - { - "uuid": "8b00d4c2-89e9-4291-b3cc-4896f8469aaa", - "start": { - "$date": "2021-03-28T04:59:12.000Z" - }, - "end": { - "$date": "2021-03-28T06:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b0c757c-90b8-4d94-b39d-16af6e529c5b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T04:46:57.000Z" - }, - "end": { - "$date": "2021-03-28T05:03:36.000Z" - }, - "events": [ - { - "uuid": "bf2a38c6-37af-4af3-84d0-f4c5258069d9", - "start": { - "$date": "2021-03-28T04:46:57.000Z" - }, - "end": { - "$date": "2021-03-28T05:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "18a37860-22b3-4f78-8765-f99abc667e61", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T04:54:35.000Z" - }, - "end": { - "$date": "2021-03-28T05:21:36.000Z" - }, - "events": [ - { - "uuid": "512494ae-312d-44fb-8fa3-b543ba8348c4", - "start": { - "$date": "2021-03-28T04:54:35.000Z" - }, - "end": { - "$date": "2021-03-28T05:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbca0b94-dac8-45a8-a18d-b29deaa74278", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T05:06:07.000Z" - }, - "end": { - "$date": "2021-03-28T05:21:29.000Z" - }, - "events": [ - { - "uuid": "0d5ac478-c50b-4674-a214-894daf3437c2", - "start": { - "$date": "2021-03-28T05:06:07.000Z" - }, - "end": { - "$date": "2021-03-28T05:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aec825db-53f4-40cc-b185-154b0b83e246", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T05:23:22.000Z" - }, - "end": { - "$date": "2021-03-28T05:39:24.000Z" - }, - "events": [ - { - "uuid": "0a576fac-08bc-4b9e-baec-e57c3bd17ca6", - "start": { - "$date": "2021-03-28T05:23:22.000Z" - }, - "end": { - "$date": "2021-03-28T05:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "4222d6c7-fc47-466e-916f-e55fac763c81", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T05:22:31.000Z" - }, - "end": { - "$date": "2021-03-28T06:13:03.000Z" - }, - "events": [ - { - "uuid": "65dd9e48-2d4a-4014-93bd-0732934847d4", - "start": { - "$date": "2021-03-28T05:22:31.000Z" - }, - "end": { - "$date": "2021-03-28T06:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2068eb28-f0df-4356-8166-d790c0fe7879", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T05:42:33.000Z" - }, - "end": { - "$date": "2021-03-28T05:55:44.000Z" - }, - "events": [ - { - "uuid": "8841cd23-706a-46ae-974c-357a943b4a47", - "start": { - "$date": "2021-03-28T05:42:33.000Z" - }, - "end": { - "$date": "2021-03-28T05:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1db5ba8b-0214-43a8-97aa-c2222b8331a7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-28T05:42:59.000Z" - }, - "end": { - "$date": "2021-03-28T07:47:57.000Z" - }, - "events": [ - { - "uuid": "a20fc92f-3417-444f-acad-5b3b512b122b", - "start": { - "$date": "2021-03-28T05:42:59.000Z" - }, - "end": { - "$date": "2021-03-28T07:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c10592f-602d-4698-9883-b10711a1a72b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T05:58:03.000Z" - }, - "end": { - "$date": "2021-03-28T06:14:10.000Z" - }, - "events": [ - { - "uuid": "ff211958-9400-464e-8f93-c99ed74efa4a", - "start": { - "$date": "2021-03-28T05:58:03.000Z" - }, - "end": { - "$date": "2021-03-28T06:14:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "614b614c-bf29-48fb-8c55-b5becceb9614", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T06:18:43.000Z" - }, - "end": { - "$date": "2021-03-28T06:38:35.000Z" - }, - "events": [ - { - "uuid": "f8848b49-ec80-4077-b83d-9b5a747fa4af", - "start": { - "$date": "2021-03-28T06:18:43.000Z" - }, - "end": { - "$date": "2021-03-28T06:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "59173b9d-2f65-4415-8515-be092c861984", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:46:56.000Z" - }, - "events": [ - { - "uuid": "1e29c47c-f8cf-427e-a1d3-5043dc7a8621", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a1c2b72f-13d4-4106-8b60-66c52e2d696e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-28T06:23:19.000Z" - }, - "end": { - "$date": "2021-03-28T06:34:24.000Z" - }, - "events": [ - { - "uuid": "8d2a3046-637b-477f-b08c-2c78666f9ab8", - "start": { - "$date": "2021-03-28T06:23:19.000Z" - }, - "end": { - "$date": "2021-03-28T06:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ad0aa912-2b95-4eef-94d8-32097aef25a0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-28T06:24:19.000Z" - }, - "end": { - "$date": "2021-03-28T09:27:23.000Z" - }, - "events": [ - { - "uuid": "6c9bec29-4f2d-433f-b985-05e7b007d6d5", - "start": { - "$date": "2021-03-28T06:24:19.000Z" - }, - "end": { - "$date": "2021-03-28T09:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ceee0786-f6e1-4df1-ab26-f3b88a924559", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T06:41:14.000Z" - }, - "end": { - "$date": "2021-03-28T06:59:06.000Z" - }, - "events": [ - { - "uuid": "3d328ba9-2057-4e33-83bf-ebace40fbed9", - "start": { - "$date": "2021-03-28T06:41:14.000Z" - }, - "end": { - "$date": "2021-03-28T06:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "dca73360-d5a3-49c6-b89a-4408dc285173", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:49:49.000Z" - }, - "events": [ - { - "uuid": "28568fe8-47e6-48de-99a8-bd006b82530a", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:49:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "db412a0f-9003-4493-af77-cb9fb822185a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:54:47.000Z" - }, - "events": [ - { - "uuid": "9851ac50-043c-43d1-bb66-48b38f5a37f0", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:54:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a308be80-a753-4ece-9a65-a8e979ea1910", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:59:06.000Z" - }, - "events": [ - { - "uuid": "3d26b60a-103e-4ac2-aa99-85ffe552fa55", - "start": { - "$date": "2021-03-28T06:22:44.000Z" - }, - "end": { - "$date": "2021-03-28T06:59:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "0a02959e-f018-48c3-a4be-3d6df8d50c10", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T23:21:38.000Z" - }, - "end": { - "$date": "2021-03-28T23:29:16.000Z" - }, - "events": [ - { - "uuid": "43c03335-8aca-4ece-9658-cf52604a2504", - "start": { - "$date": "2021-03-28T23:21:38.000Z" - }, - "end": { - "$date": "2021-03-29T00:02:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "075f076e-3e4c-4ffd-868e-14d6c998831b", - "start": { - "$date": "2021-03-29T00:02:38.000Z" - }, - "end": { - "$date": "2021-03-29T00:23:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8bda45cf-35f3-42c1-a19f-45f1636bcfbe", - "start": { - "$date": "2021-03-29T00:23:38.000Z" - }, - "end": { - "$date": "2021-03-29T14:37:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ad3b956-30b0-4e79-813a-20752e562337", - "start": { - "$date": "2021-03-29T14:37:38.000Z" - }, - "end": { - "$date": "2021-03-29T14:38:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d089b6e-4d08-45a4-bfc7-113ead0fe758", - "start": { - "$date": "2021-03-29T14:38:38.000Z" - }, - "end": { - "$date": "2021-03-29T14:41:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5edb9b0-fc36-46b3-ac2c-6273a42cb380", - "start": { - "$date": "2021-03-29T14:41:38.000Z" - }, - "end": { - "$date": "2021-03-29T15:05:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7293bb45-37f5-4be0-8897-b3ac230fb649", - "start": { - "$date": "2021-03-29T15:05:38.000Z" - }, - "end": { - "$date": "2021-03-29T15:42:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "572da7df-5bc8-413e-aafe-24cfff2f1b13", - "start": { - "$date": "2021-03-29T15:42:38.000Z" - }, - "end": { - "$date": "2021-03-28T23:29:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d237b2da-3104-42ca-ae57-c95c0db7a1c1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-28T07:24:55.000Z" - }, - "end": { - "$date": "2021-03-28T07:25:41.000Z" - }, - "events": [ - { - "uuid": "97de24b7-ac9f-476c-aa1f-9f052171b098", - "start": { - "$date": "2021-03-28T07:24:55.000Z" - }, - "end": { - "$date": "2021-03-28T07:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "82cf8877-9c45-421a-9abf-eaa47bdfa6cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-28T07:15:18.000Z" - }, - "end": { - "$date": "2021-03-28T08:08:34.000Z" - }, - "events": [ - { - "uuid": "b997fbb7-db0b-4c72-ba29-65b0aebc2c36", - "start": { - "$date": "2021-03-28T07:15:18.000Z" - }, - "end": { - "$date": "2021-03-28T08:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "eaf61128-26ca-428b-9da6-7c3df6861987", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-28T14:51:26.000Z" - }, - "end": { - "$date": "2021-03-28T14:54:35.000Z" - }, - "events": [ - { - "uuid": "923472e8-a43e-4773-ab12-93641f5683e6", - "start": { - "$date": "2021-03-28T14:51:26.000Z" - }, - "end": { - "$date": "2021-03-28T14:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "ac730a1d-ba9d-49c4-898a-4e207a6f5313", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-28T14:59:41.000Z" - }, - "end": { - "$date": "2021-03-28T15:32:21.000Z" - }, - "events": [ - { - "uuid": "653f94f8-aebf-4efc-b106-a4b03a1fe2a5", - "start": { - "$date": "2021-03-28T14:59:41.000Z" - }, - "end": { - "$date": "2021-03-28T15:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c845b7b-b831-445f-a2c2-48456e181bd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-28T15:40:28.000Z" - }, - "end": { - "$date": "2021-03-28T17:02:12.000Z" - }, - "events": [ - { - "uuid": "50789bad-114f-4611-9992-25cc9325715c", - "start": { - "$date": "2021-03-28T15:40:28.000Z" - }, - "end": { - "$date": "2021-03-28T17:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "36dde60f-53f0-42b9-8f36-18ae4d954150", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T17:10:29.000Z" - }, - "end": { - "$date": "2021-03-28T17:16:04.000Z" - }, - "events": [ - { - "uuid": "b621e7fa-5fb9-4fd3-974d-cae743bf1be3", - "start": { - "$date": "2021-03-28T17:10:29.000Z" - }, - "end": { - "$date": "2021-03-28T17:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9f42bcfb-ee4a-4e1a-aaa4-82bdc12067b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-28T17:16:55.000Z" - }, - "end": { - "$date": "2021-03-28T17:19:24.000Z" - }, - "events": [ - { - "uuid": "0e7fcebd-6dc3-410a-9293-9f283ced7d81", - "start": { - "$date": "2021-03-28T17:16:55.000Z" - }, - "end": { - "$date": "2021-03-28T17:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "0473a522-fd6e-437f-92ec-a7ba24dce50e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-28T17:17:24.000Z" - }, - "end": { - "$date": "2021-03-28T17:34:28.000Z" - }, - "events": [ - { - "uuid": "d536d394-b72e-41dd-bb6c-a34b1d75dfbc", - "start": { - "$date": "2021-03-28T17:17:24.000Z" - }, - "end": { - "$date": "2021-03-28T17:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "669c43e7-500e-460c-87f5-ef64436673fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-28T17:19:55.000Z" - }, - "end": { - "$date": "2021-03-28T21:01:47.000Z" - }, - "events": [ - { - "uuid": "36a0c7b5-761d-471e-be6a-ebb865a42278", - "start": { - "$date": "2021-03-28T17:19:55.000Z" - }, - "end": { - "$date": "2021-03-28T19:24:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "707fa592-9322-41ad-9345-42a9d128a051", - "start": { - "$date": "2021-03-28T19:24:55.000Z" - }, - "end": { - "$date": "2021-03-28T19:30:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "396527e4-d8b6-4639-aee4-79d3792dd8a7", - "start": { - "$date": "2021-03-28T19:30:55.000Z" - }, - "end": { - "$date": "2021-03-28T21:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "257c50ed-dac3-416b-88db-32cba18c6470", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-28T17:31:33.000Z" - }, - "end": { - "$date": "2021-03-28T18:47:26.000Z" - }, - "events": [ - { - "uuid": "e5a240e2-13cd-4aa1-b14c-7ae4f95120a7", - "start": { - "$date": "2021-03-28T17:31:33.000Z" - }, - "end": { - "$date": "2021-03-28T18:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d1235299-28e7-4782-8aa1-7b9b8b9b21fc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-28T17:42:24.000Z" - }, - "end": { - "$date": "2021-03-28T20:08:19.000Z" - }, - "events": [ - { - "uuid": "ff2a9a40-2614-49f1-b83d-50aa91707dee", - "start": { - "$date": "2021-03-28T17:42:24.000Z" - }, - "end": { - "$date": "2021-03-28T20:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "eab4ea05-08b4-429f-9699-1971db37599c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-28T18:47:41.000Z" - }, - "end": { - "$date": "2021-03-28T22:10:28.000Z" - }, - "events": [ - { - "uuid": "a57c3d9c-54a0-435c-a16c-e6631f8d7c03", - "start": { - "$date": "2021-03-28T18:47:41.000Z" - }, - "end": { - "$date": "2021-03-28T22:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d760efff-b626-4f8f-b287-7045c7e6ac34", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-28T18:50:44.000Z" - }, - "end": { - "$date": "2021-03-28T23:12:36.000Z" - }, - "events": [ - { - "uuid": "bd272cc9-fcb0-4596-a7d0-96b37ff826b8", - "start": { - "$date": "2021-03-28T18:50:44.000Z" - }, - "end": { - "$date": "2021-03-28T23:12:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2164e613-da03-4ca3-bd5a-5bb108bd57d9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-28T18:54:02.000Z" - }, - "end": { - "$date": "2021-03-28T19:26:11.000Z" - }, - "events": [ - { - "uuid": "9f62dc2a-f97a-43e7-9eed-f96022a074e8", - "start": { - "$date": "2021-03-28T18:54:02.000Z" - }, - "end": { - "$date": "2021-03-28T19:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "29c64396-15b2-45b5-89b2-ae9298354b50", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-28T19:00:21.000Z" - }, - "end": { - "$date": "2021-03-28T19:09:17.000Z" - }, - "events": [ - { - "uuid": "c8fe42e7-dff8-4709-8573-bf44f651dcac", - "start": { - "$date": "2021-03-28T19:00:21.000Z" - }, - "end": { - "$date": "2021-03-28T19:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", - "uuid": "60549e3c-eadb-48af-b92a-b289b25a2645", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-03-28T19:24:49.000Z" - }, - "end": { - "$date": "2021-03-28T23:07:02.000Z" - }, - "events": [ - { - "uuid": "e6599818-fec3-4675-b111-0a7504e97855", - "start": { - "$date": "2021-03-28T19:24:49.000Z" - }, - "end": { - "$date": "2021-03-28T23:07:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d1f098f-c648-453c-b8d2-cef0207c4f84", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-28T19:28:31.000Z" - }, - "end": { - "$date": "2021-03-28T19:46:19.000Z" - }, - "events": [ - { - "uuid": "324a0765-0a52-48b5-9f64-2a660f6ed4ea", - "start": { - "$date": "2021-03-28T19:28:31.000Z" - }, - "end": { - "$date": "2021-03-28T19:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b12e29d-e125-4e4c-b4bc-8768efb1726f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-28T20:14:57.000Z" - }, - "end": { - "$date": "2021-03-28T23:12:18.000Z" - }, - "events": [ - { - "uuid": "84030ff6-a3cc-4ba8-bfe3-86b89e1d54e4", - "start": { - "$date": "2021-03-28T20:14:57.000Z" - }, - "end": { - "$date": "2021-03-28T23:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9d3f5015-514e-4aa2-813a-5ce3a26e64e5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-28T22:12:50.000Z" - }, - "end": { - "$date": "2021-03-28T22:25:48.000Z" - }, - "events": [ - { - "uuid": "c1c0156f-3300-4613-9295-986d7a2c302f", - "start": { - "$date": "2021-03-28T22:12:50.000Z" - }, - "end": { - "$date": "2021-03-28T22:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "25a516a5-f48a-4e7d-b518-fe04434da4a5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-28T20:45:00.000Z" - }, - "end": { - "$date": "2021-03-28T22:01:42.000Z" - }, - "events": [ - { - "uuid": "a70aeffd-bec2-41be-88a9-74b1caae4274", - "start": { - "$date": "2021-03-28T20:45:00.000Z" - }, - "end": { - "$date": "2021-03-28T22:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a50f4cf8-732a-4322-a7af-62c12098bb4d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-28T22:02:26.000Z" - }, - "end": { - "$date": "2021-03-28T23:03:38.000Z" - }, - "events": [ - { - "uuid": "70b20579-b690-4319-aafd-14136621b317", - "start": { - "$date": "2021-03-28T22:02:26.000Z" - }, - "end": { - "$date": "2021-03-28T23:03:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "edc6e78b-05d5-4584-b649-621d835b90c0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-28T23:29:21.000Z" - }, - "end": { - "$date": "2021-03-29T07:23:42.000Z" - }, - "events": [ - { - "uuid": "234c4f68-af64-44e0-a3d0-e4aade60081e", - "start": { - "$date": "2021-03-28T23:29:21.000Z" - }, - "end": { - "$date": "2021-03-29T01:11:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58b7e827-f38b-4efc-b9c3-38bc3b457cae", - "start": { - "$date": "2021-03-29T01:11:21.000Z" - }, - "end": { - "$date": "2021-03-29T01:22:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74501949-d955-48e7-99cc-3ccbe838e3ff", - "start": { - "$date": "2021-03-29T01:22:21.000Z" - }, - "end": { - "$date": "2021-03-29T01:24:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f0a75f6-5c03-4f2c-9d23-2bd7db1dfe84", - "start": { - "$date": "2021-03-29T01:24:21.000Z" - }, - "end": { - "$date": "2021-03-29T01:35:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a7a22e85-6068-489e-a60d-bd8875fbf620", - "start": { - "$date": "2021-03-29T01:35:21.000Z" - }, - "end": { - "$date": "2021-03-29T01:36:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58321467-7905-4149-998b-6f9573b4e5ee", - "start": { - "$date": "2021-03-29T01:36:21.000Z" - }, - "end": { - "$date": "2021-03-29T02:07:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "853cdcae-90bc-4ee6-a554-456b7dca2d70", - "start": { - "$date": "2021-03-29T02:07:21.000Z" - }, - "end": { - "$date": "2021-03-29T03:21:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49c684dd-cd3a-430e-873d-f0fd764e8912", - "start": { - "$date": "2021-03-29T03:21:21.000Z" - }, - "end": { - "$date": "2021-03-29T03:28:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "640dd6d3-3585-4d8f-a953-a875427c7a94", - "start": { - "$date": "2021-03-29T03:28:21.000Z" - }, - "end": { - "$date": "2021-03-29T03:31:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ccd55b02-b2f6-47a4-bcd1-1881db83cee2", - "start": { - "$date": "2021-03-29T03:31:21.000Z" - }, - "end": { - "$date": "2021-03-29T04:22:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a91e3779-fbfd-4671-8371-be75fadacba3", - "start": { - "$date": "2021-03-29T04:22:21.000Z" - }, - "end": { - "$date": "2021-03-29T05:23:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbd97a78-9965-487c-8005-f066d384cc65", - "start": { - "$date": "2021-03-29T05:23:21.000Z" - }, - "end": { - "$date": "2021-03-29T05:24:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54911830-e3f5-4a5e-8141-6579cd72c1e4", - "start": { - "$date": "2021-03-29T05:24:21.000Z" - }, - "end": { - "$date": "2021-03-29T06:54:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8011198-6b7f-47e3-980e-e76635181af4", - "start": { - "$date": "2021-03-29T06:54:21.000Z" - }, - "end": { - "$date": "2021-03-29T06:56:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "024c97f5-8df2-4828-a968-875616ef36d3", - "start": { - "$date": "2021-03-29T06:56:21.000Z" - }, - "end": { - "$date": "2021-03-29T07:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "fe4ccc61-fb06-4ed1-bbff-39ad719baedf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-29T00:06:14.000Z" - }, - "end": { - "$date": "2021-03-29T01:47:32.000Z" - }, - "events": [ - { - "uuid": "f0f31fca-d128-43f5-8c49-37d91084594b", - "start": { - "$date": "2021-03-29T00:06:14.000Z" - }, - "end": { - "$date": "2021-03-29T01:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "34ed3135-7747-4369-b195-eb7a4377499c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T00:06:58.000Z" - }, - "end": { - "$date": "2021-03-29T01:13:12.000Z" - }, - "events": [ - { - "uuid": "e1d872bd-051e-4f00-b348-0eaf303c5128", - "start": { - "$date": "2021-03-29T00:06:58.000Z" - }, - "end": { - "$date": "2021-03-29T01:13:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8e915917-7ff3-4053-8ca8-a0e4da8c21db", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-29T00:06:59.000Z" - }, - "end": { - "$date": "2021-03-29T01:04:45.000Z" - }, - "events": [ - { - "uuid": "6f8c2a48-fa22-466f-ae61-54e3d960b179", - "start": { - "$date": "2021-03-29T00:06:59.000Z" - }, - "end": { - "$date": "2021-03-29T01:04:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8f364231-2e98-40db-815b-974a15dc5e25", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-29T00:50:25.000Z" - }, - "end": { - "$date": "2021-03-29T01:35:44.000Z" - }, - "events": [ - { - "uuid": "097f23b1-7236-4b2e-81bf-f443670976bd", - "start": { - "$date": "2021-03-29T00:50:25.000Z" - }, - "end": { - "$date": "2021-03-29T01:35:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "57052d79-76c1-452e-914a-c914c8eeff44", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T00:54:22.000Z" - }, - "end": { - "$date": "2021-03-29T00:55:52.000Z" - }, - "events": [ - { - "uuid": "71d5e0fe-53ac-4d6a-9afc-b0c96f208f7c", - "start": { - "$date": "2021-03-29T00:54:22.000Z" - }, - "end": { - "$date": "2021-03-29T00:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6458a01b-ef7e-4504-9ef3-826be76c1a91", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-29T00:54:38.000Z" - }, - "end": { - "$date": "2021-03-29T02:49:40.000Z" - }, - "events": [ - { - "uuid": "c38a263e-c184-445e-b06d-0fdea05ac178", - "start": { - "$date": "2021-03-29T00:54:38.000Z" - }, - "end": { - "$date": "2021-03-29T02:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "70ba0ee5-be1a-48d4-bba5-5003358a2f56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T01:02:07.000Z" - }, - "end": { - "$date": "2021-03-29T01:24:01.000Z" - }, - "events": [ - { - "uuid": "8cef70f2-073a-4c23-9d78-8cf271f3dbb8", - "start": { - "$date": "2021-03-29T01:02:07.000Z" - }, - "end": { - "$date": "2021-03-29T01:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "502c9c3c-63a9-4230-a8bc-b6bc5003e215", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-29T02:03:29.000Z" - }, - "end": { - "$date": "2021-03-29T03:31:31.000Z" - }, - "events": [ - { - "uuid": "9b8489e7-6a99-4140-9a58-d6606715506e", - "start": { - "$date": "2021-03-29T02:03:29.000Z" - }, - "end": { - "$date": "2021-03-29T03:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e103a07e-1752-4795-98be-cb8ef53e2a1b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-29T02:32:59.000Z" - }, - "end": { - "$date": "2021-03-29T03:41:39.000Z" - }, - "events": [ - { - "uuid": "7de04f9d-0405-495f-80fc-92f6e156d86b", - "start": { - "$date": "2021-03-29T02:32:59.000Z" - }, - "end": { - "$date": "2021-03-29T03:41:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3302122e-07cb-493a-b9dc-88fb323bf011", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T02:27:56.000Z" - }, - "end": { - "$date": "2021-03-29T03:44:33.000Z" - }, - "events": [ - { - "uuid": "70f8b355-e781-4663-8503-0390a9597761", - "start": { - "$date": "2021-03-29T02:27:56.000Z" - }, - "end": { - "$date": "2021-03-29T03:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "14bc64cb-c79b-4a12-b991-6b5bf61e7d24", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-29T02:31:54.000Z" - }, - "end": { - "$date": "2021-03-29T05:57:32.000Z" - }, - "events": [ - { - "uuid": "84a4d4be-97d8-40a4-af96-94ff83267f41", - "start": { - "$date": "2021-03-29T02:31:54.000Z" - }, - "end": { - "$date": "2021-03-29T05:57:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1f2fa2d1-0ee8-4b47-884b-c2356c023dd7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T02:54:44.000Z" - }, - "end": { - "$date": "2021-03-29T03:30:30.000Z" - }, - "events": [ - { - "uuid": "29139b85-0f76-4162-9b51-0b64dc292087", - "start": { - "$date": "2021-03-29T02:54:44.000Z" - }, - "end": { - "$date": "2021-03-29T03:30:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "eddb8971-9b6d-46b9-a7a2-12987bcc16c2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-29T02:59:24.000Z" - }, - "end": { - "$date": "2021-03-29T05:53:23.000Z" - }, - "events": [ - { - "uuid": "2a295210-70c7-417e-92a1-dfa52a4a2b70", - "start": { - "$date": "2021-03-29T02:59:24.000Z" - }, - "end": { - "$date": "2021-03-29T05:53:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "de497972-937b-4d79-b813-ab2416b06aa2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-29T03:38:59.000Z" - }, - "end": { - "$date": "2021-03-29T06:37:10.000Z" - }, - "events": [ - { - "uuid": "67fbb358-30fa-49ca-b618-33182d0c544a", - "start": { - "$date": "2021-03-29T03:38:59.000Z" - }, - "end": { - "$date": "2021-03-29T06:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "625b0dec-30f7-496c-945d-3dcea9c1c4c6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-29T03:45:01.000Z" - }, - "end": { - "$date": "2021-03-29T06:37:23.000Z" - }, - "events": [ - { - "uuid": "01939520-9e76-46f9-a7b9-bb4ba1759575", - "start": { - "$date": "2021-03-29T03:45:01.000Z" - }, - "end": { - "$date": "2021-03-29T06:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68ae1b71-dbc5-406a-82a1-123b578c7107", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-29T04:20:10.000Z" - }, - "end": { - "$date": "2021-03-29T04:46:54.000Z" - }, - "events": [ - { - "uuid": "e17743d5-ea21-438b-9ea2-3cb649be70e6", - "start": { - "$date": "2021-03-29T04:20:10.000Z" - }, - "end": { - "$date": "2021-03-29T04:46:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "cd0864ea-a601-4c1d-a59b-2ebef0710d07", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-29T05:09:53.000Z" - }, - "end": { - "$date": "2021-03-29T05:14:38.000Z" - }, - "events": [ - { - "uuid": "5add0f7f-1f6c-44e3-ac0c-dfed8265a1b4", - "start": { - "$date": "2021-03-29T05:09:53.000Z" - }, - "end": { - "$date": "2021-03-29T05:14:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "9dda1358-7fba-4e59-87e6-e3d87e0a0489", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-29T07:23:48.000Z" - }, - "end": { - "$date": "2021-03-29T23:55:28.000Z" - }, - "events": [ - { - "uuid": "7e21fa43-1edc-42c1-923b-ccc5d6c7d7d6", - "start": { - "$date": "2021-03-29T07:23:48.000Z" - }, - "end": { - "$date": "2021-03-29T07:51:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a33d4540-2264-48ba-bddf-ea7fed120f4d", - "start": { - "$date": "2021-03-29T07:51:48.000Z" - }, - "end": { - "$date": "2021-03-29T19:06:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "06315005-ac67-4859-9cb9-962b140c71fd", - "start": { - "$date": "2021-03-29T19:06:48.000Z" - }, - "end": { - "$date": "2021-03-29T19:16:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b25bdae-a49d-45e3-8326-9748dc6fe9d1", - "start": { - "$date": "2021-03-29T19:16:48.000Z" - }, - "end": { - "$date": "2021-03-29T19:24:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "335a1116-78fd-4803-adf4-b11f752af6c2", - "start": { - "$date": "2021-03-29T19:24:48.000Z" - }, - "end": { - "$date": "2021-03-29T19:25:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a82d046-2a33-4607-94dd-52f85eaf88f8", - "start": { - "$date": "2021-03-29T19:25:48.000Z" - }, - "end": { - "$date": "2021-03-29T20:26:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "014d527c-cead-4896-9b15-b688f50ef9be", - "start": { - "$date": "2021-03-29T20:26:48.000Z" - }, - "end": { - "$date": "2021-03-29T20:48:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7f3e25c-8877-4046-ad41-64680f2cb479", - "start": { - "$date": "2021-03-29T20:48:48.000Z" - }, - "end": { - "$date": "2021-03-29T20:56:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e399f3e4-b570-4313-9fdf-44559bb45fea", - "start": { - "$date": "2021-03-29T20:56:48.000Z" - }, - "end": { - "$date": "2021-03-29T21:14:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "781bcad4-9918-4254-9e1a-e55f2e26e6fc", - "start": { - "$date": "2021-03-29T21:14:48.000Z" - }, - "end": { - "$date": "2021-03-29T21:17:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1055a8bc-dd5c-434b-8b2f-d052acb53ab9", - "start": { - "$date": "2021-03-29T21:17:48.000Z" - }, - "end": { - "$date": "2021-03-29T21:18:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc2d7225-63a6-4872-9e8b-22b5f5543ac1", - "start": { - "$date": "2021-03-29T21:18:48.000Z" - }, - "end": { - "$date": "2021-03-29T21:42:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "08336814-25f7-4e63-83d3-6856f04e4604", - "start": { - "$date": "2021-03-29T21:42:48.000Z" - }, - "end": { - "$date": "2021-03-29T21:43:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0fca564b-8246-400c-9f8d-bc845f246b17", - "start": { - "$date": "2021-03-29T21:43:48.000Z" - }, - "end": { - "$date": "2021-03-29T22:34:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b9cae78c-3963-4882-bb05-55f3eb5618b1", - "start": { - "$date": "2021-03-29T22:34:48.000Z" - }, - "end": { - "$date": "2021-03-29T23:48:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8239ecc7-4239-4604-8e27-51fb471da8fa", - "start": { - "$date": "2021-03-29T23:48:48.000Z" - }, - "end": { - "$date": "2021-03-29T23:53:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f12f952d-d2bc-4c88-82a8-c42f2fad9462", - "start": { - "$date": "2021-03-29T23:53:48.000Z" - }, - "end": { - "$date": "2021-03-29T23:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f9281279-783b-4ab5-bba7-915ee44ef413", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T14:00:54.000Z" - }, - "end": { - "$date": "2021-03-29T14:25:35.000Z" - }, - "events": [ - { - "uuid": "5c0b9096-6946-4400-b02b-32cd9583744e", - "start": { - "$date": "2021-03-29T14:00:54.000Z" - }, - "end": { - "$date": "2021-03-29T14:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ba192f86-8e12-4b80-a267-3cb0a4464e11", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-29T15:02:27.000Z" - }, - "end": { - "$date": "2021-03-29T16:09:10.000Z" - }, - "events": [ - { - "uuid": "14d5f599-fab0-4a57-9ab5-2c04945dabc0", - "start": { - "$date": "2021-03-29T15:02:27.000Z" - }, - "end": { - "$date": "2021-03-29T16:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "eb3fc4d6-47b2-4a9c-8eb7-a2dc36973530", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T15:33:53.000Z" - }, - "end": { - "$date": "2021-03-29T15:59:22.000Z" - }, - "events": [ - { - "uuid": "f9868ec9-f9e5-4e2c-b104-ae2987bbf8ae", - "start": { - "$date": "2021-03-29T15:33:53.000Z" - }, - "end": { - "$date": "2021-03-29T15:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0f421aa3-e047-40fe-bc7e-c329ab49ca1e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T16:09:01.000Z" - }, - "end": { - "$date": "2021-03-29T16:16:17.000Z" - }, - "events": [ - { - "uuid": "1d212ed0-5ca5-419e-bb8e-09fe149d0b29", - "start": { - "$date": "2021-03-29T16:09:01.000Z" - }, - "end": { - "$date": "2021-03-29T16:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "4363bfcb-52cf-4839-808b-124361dac847", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T16:23:28.000Z" - }, - "end": { - "$date": "2021-03-29T17:02:15.000Z" - }, - "events": [ - { - "uuid": "5de27eb4-7068-4ef9-a5e9-489c2160cccc", - "start": { - "$date": "2021-03-29T16:23:28.000Z" - }, - "end": { - "$date": "2021-03-29T17:02:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fd4735e9-1e3d-4907-b47f-6b7a6cb25737", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-29T16:44:14.000Z" - }, - "end": { - "$date": "2021-03-29T16:45:24.000Z" - }, - "events": [ - { - "uuid": "cf17ef00-2fb7-4a15-a1c9-7643fae360d9", - "start": { - "$date": "2021-03-29T16:44:14.000Z" - }, - "end": { - "$date": "2021-03-29T16:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4bcfcbfc-db8a-4a5d-86be-1f1ce701865e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-29T16:46:30.000Z" - }, - "end": { - "$date": "2021-03-29T17:58:30.000Z" - }, - "events": [ - { - "uuid": "eadb2072-088f-45f5-87ff-b850c08c6a22", - "start": { - "$date": "2021-03-29T16:46:30.000Z" - }, - "end": { - "$date": "2021-03-29T17:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "30253fe9-6779-4142-83ff-34544d19305f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T17:32:27.000Z" - }, - "end": { - "$date": "2021-03-29T18:33:21.000Z" - }, - "events": [ - { - "uuid": "750e2a5f-806e-4f7f-be1f-cdf8378c527a", - "start": { - "$date": "2021-03-29T17:32:27.000Z" - }, - "end": { - "$date": "2021-03-29T18:33:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0a49a064-c464-49cc-b7bf-4f8217ba5d10", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T17:40:22.000Z" - }, - "end": { - "$date": "2021-03-29T19:47:43.000Z" - }, - "events": [ - { - "uuid": "7da09f81-981f-4e1b-b382-9c0093b12fdd", - "start": { - "$date": "2021-03-29T17:40:22.000Z" - }, - "end": { - "$date": "2021-03-29T18:13:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe272912-3dbf-4d2e-bda5-bb0af1c48ba5", - "start": { - "$date": "2021-03-29T18:13:22.000Z" - }, - "end": { - "$date": "2021-03-29T18:22:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5368d2ce-2751-450c-9715-1aa39d98009c", - "start": { - "$date": "2021-03-29T18:22:22.000Z" - }, - "end": { - "$date": "2021-03-29T19:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8a5b9344-0564-4660-b0e0-f9a1e17f18f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-29T19:08:19.000Z" - }, - "end": { - "$date": "2021-03-29T20:59:24.000Z" - }, - "events": [ - { - "uuid": "077a80fd-670e-4cf6-8395-3b471cb47d22", - "start": { - "$date": "2021-03-29T19:08:19.000Z" - }, - "end": { - "$date": "2021-03-29T19:16:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b895a51-8701-4ad5-b26f-ed2f6d3629fe", - "start": { - "$date": "2021-03-29T19:16:19.000Z" - }, - "end": { - "$date": "2021-03-29T20:59:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5139f9d8-f2a3-4020-9499-d696c2c69abb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-29T19:11:15.000Z" - }, - "end": { - "$date": "2021-03-29T20:09:12.000Z" - }, - "events": [ - { - "uuid": "6a495cea-1f93-4dea-aa3e-73ec322c15a4", - "start": { - "$date": "2021-03-29T19:11:15.000Z" - }, - "end": { - "$date": "2021-03-29T20:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "227709f2-6584-4ed3-aa0e-a31edd02ff16", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T20:16:59.000Z" - }, - "end": { - "$date": "2021-03-29T20:41:05.000Z" - }, - "events": [ - { - "uuid": "c3513bf3-4f60-44fc-9420-37df20dc87a6", - "start": { - "$date": "2021-03-29T20:16:59.000Z" - }, - "end": { - "$date": "2021-03-29T20:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "53602e54-c9b5-4693-9d46-10adca1ca83d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-29T20:17:10.000Z" - }, - "end": { - "$date": "2021-03-29T20:34:40.000Z" - }, - "events": [ - { - "uuid": "cb2ffc23-3952-48ae-a325-83cd27a13986", - "start": { - "$date": "2021-03-29T20:17:10.000Z" - }, - "end": { - "$date": "2021-03-29T20:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "31247b74-d952-4d1a-a3b4-108fb7934a75", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-29T21:24:41.000Z" - }, - "end": { - "$date": "2021-03-29T21:31:58.000Z" - }, - "events": [ - { - "uuid": "c5dc3b59-e8f7-4085-914c-3b09099fcc42", - "start": { - "$date": "2021-03-29T21:24:41.000Z" - }, - "end": { - "$date": "2021-03-29T21:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "821cdf5f-88e9-4d88-badd-26542403a5e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-29T21:28:39.000Z" - }, - "end": { - "$date": "2021-03-29T22:05:16.000Z" - }, - "events": [ - { - "uuid": "dfb7c55e-1e8a-4d10-8833-34a6940b229f", - "start": { - "$date": "2021-03-29T21:28:39.000Z" - }, - "end": { - "$date": "2021-03-29T22:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "959c8da5-3b70-4126-b235-0f2f59fa625d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-29T21:37:45.000Z" - }, - "end": { - "$date": "2021-03-29T23:04:38.000Z" - }, - "events": [ - { - "uuid": "469a1b28-99e6-483b-b75b-194987bd933a", - "start": { - "$date": "2021-03-29T21:37:45.000Z" - }, - "end": { - "$date": "2021-03-29T23:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9798f215-7dcb-4922-b084-e38da4f96ad0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T21:42:59.000Z" - }, - "end": { - "$date": "2021-03-29T22:08:57.000Z" - }, - "events": [ - { - "uuid": "4d18ef36-25bc-4f6d-b409-f4c213daa730", - "start": { - "$date": "2021-03-29T21:42:59.000Z" - }, - "end": { - "$date": "2021-03-29T22:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "734dd2ae-af36-4691-9335-3a1a0c6021b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-29T22:09:22.000Z" - }, - "end": { - "$date": "2021-03-30T00:26:48.000Z" - }, - "events": [ - { - "uuid": "926511ca-4234-4da2-8236-dc53e9fed499", - "start": { - "$date": "2021-03-29T22:09:22.000Z" - }, - "end": { - "$date": "2021-03-30T00:26:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "7d2d81a9-0cdd-4e14-bd93-e80f25c62426", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-29T22:09:57.000Z" - }, - "end": { - "$date": "2021-03-29T23:56:45.000Z" - }, - "events": [ - { - "uuid": "c51269d9-c48c-4469-a49d-8b16950fb67a", - "start": { - "$date": "2021-03-29T22:09:57.000Z" - }, - "end": { - "$date": "2021-03-29T23:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6016d3cc-978a-4c84-b481-4690b19e8407", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-29T22:25:09.000Z" - }, - "end": { - "$date": "2021-03-29T22:28:39.000Z" - }, - "events": [ - { - "uuid": "f52d379f-55da-4ea8-bd07-0f9259a8a797", - "start": { - "$date": "2021-03-29T22:25:09.000Z" - }, - "end": { - "$date": "2021-03-29T22:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "8dd3143b-522f-4811-98f9-80666180e56c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-29T23:33:40.000Z" - }, - "end": { - "$date": "2021-03-30T00:47:26.000Z" - }, - "events": [ - { - "uuid": "5a656bf3-ad31-49a2-a212-ef3f1615aefd", - "start": { - "$date": "2021-03-29T23:33:40.000Z" - }, - "end": { - "$date": "2021-03-30T00:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e2553362-35bf-405d-ad99-df49c24b731f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-29T23:33:45.000Z" - }, - "end": { - "$date": "2021-03-30T00:29:44.000Z" - }, - "events": [ - { - "uuid": "bda63111-2186-4d17-bbc9-80ebf443ddcd", - "start": { - "$date": "2021-03-29T23:33:45.000Z" - }, - "end": { - "$date": "2021-03-29T23:44:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13f221c4-3efb-48c1-8b46-097c8002f4e1", - "start": { - "$date": "2021-03-29T23:44:45.000Z" - }, - "end": { - "$date": "2021-03-29T23:50:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "06f5dcf6-1fd9-42f2-8704-988ecedefeba", - "start": { - "$date": "2021-03-29T23:50:45.000Z" - }, - "end": { - "$date": "2021-03-30T00:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "847b6385-814e-4ffa-baf4-a1c61978aab1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-30T01:05:15.000Z" - }, - "end": { - "$date": "2021-03-30T02:12:54.000Z" - }, - "events": [ - { - "uuid": "0069b2c2-f542-4aff-844b-122264cc69a6", - "start": { - "$date": "2021-03-30T01:05:15.000Z" - }, - "end": { - "$date": "2021-03-30T02:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "60118b89-11e1-40f2-86e0-9e0ee6028f26", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-30T01:36:24.000Z" - }, - "end": { - "$date": "2021-03-30T04:02:26.000Z" - }, - "events": [ - { - "uuid": "7c87760b-8908-48e6-8041-440fc710f2d2", - "start": { - "$date": "2021-03-30T01:36:24.000Z" - }, - "end": { - "$date": "2021-03-30T04:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "801332ba-ab6a-4f62-9777-30b7842a6380", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-30T01:50:45.000Z" - }, - "end": { - "$date": "2021-03-30T05:37:44.000Z" - }, - "events": [ - { - "uuid": "197cdb44-9228-40b2-b649-f7499a647373", - "start": { - "$date": "2021-03-30T01:50:45.000Z" - }, - "end": { - "$date": "2021-03-30T05:37:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "76982b3d-d30c-45f1-b68f-48eb91be2f13", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-30T01:53:35.000Z" - }, - "end": { - "$date": "2021-03-30T02:54:31.000Z" - }, - "events": [ - { - "uuid": "3a6bb000-409a-4c21-b31c-8864347ec4d6", - "start": { - "$date": "2021-03-30T01:53:35.000Z" - }, - "end": { - "$date": "2021-03-30T02:54:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "40147ff9-1368-47e3-ad4e-041a10bd1cae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-30T02:11:16.000Z" - }, - "end": { - "$date": "2021-03-30T02:54:43.000Z" - }, - "events": [ - { - "uuid": "146f4c6b-12d2-4763-b1b2-fb081086f733", - "start": { - "$date": "2021-03-30T02:11:16.000Z" - }, - "end": { - "$date": "2021-03-30T02:54:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0acb8960-3320-47d8-9d45-8a4837f197fd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-30T02:43:14.000Z" - }, - "end": { - "$date": "2021-03-30T04:56:33.000Z" - }, - "events": [ - { - "uuid": "c2662243-8024-48ac-b55b-fd1008ccd993", - "start": { - "$date": "2021-03-30T02:43:14.000Z" - }, - "end": { - "$date": "2021-03-30T04:56:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c0ed44e9-7759-4282-84d2-8c67ce90c2fd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-30T03:41:57.000Z" - }, - "end": { - "$date": "2021-03-30T04:08:11.000Z" - }, - "events": [ - { - "uuid": "7bf453be-a9ea-4aec-bc48-cb7a282082d9", - "start": { - "$date": "2021-03-30T03:41:57.000Z" - }, - "end": { - "$date": "2021-03-30T04:08:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a2e2dea-d90e-4aed-b938-9799ea8f1df8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-30T04:08:32.000Z" - }, - "end": { - "$date": "2021-03-30T04:38:59.000Z" - }, - "events": [ - { - "uuid": "6d69c762-0885-4f47-b1ca-3ad04efa7f24", - "start": { - "$date": "2021-03-30T04:08:32.000Z" - }, - "end": { - "$date": "2021-03-30T04:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "ee99af0e-149f-44b8-8a31-d73b7ee3d696", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-30T04:13:10.000Z" - }, - "end": { - "$date": "2021-03-30T08:05:00.000Z" - }, - "events": [ - { - "uuid": "0878e919-06c2-4b38-bffb-ab23f85e0e28", - "start": { - "$date": "2021-03-30T04:13:10.000Z" - }, - "end": { - "$date": "2021-03-30T06:04:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aeee6995-4e76-4b0c-b249-3d2b8036bf6a", - "start": { - "$date": "2021-03-30T06:04:10.000Z" - }, - "end": { - "$date": "2021-03-30T06:23:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6bcff17-7069-4225-bcc6-fa9dc577bc8e", - "start": { - "$date": "2021-03-30T06:23:10.000Z" - }, - "end": { - "$date": "2021-03-30T06:24:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "16eab1cc-ff65-41e2-993e-2f163babe09d", - "start": { - "$date": "2021-03-30T06:24:10.000Z" - }, - "end": { - "$date": "2021-03-30T08:01:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aeecfa47-e40e-40ec-81ae-34f7d2a41ec2", - "start": { - "$date": "2021-03-30T08:01:10.000Z" - }, - "end": { - "$date": "2021-03-30T08:05:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7d13fcbe-c732-4604-bb91-fb84a161ecc5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-30T04:22:04.000Z" - }, - "end": { - "$date": "2021-03-30T06:12:43.000Z" - }, - "events": [ - { - "uuid": "cfe99d28-eb7e-4bdc-9166-6f98385406ce", - "start": { - "$date": "2021-03-30T04:22:04.000Z" - }, - "end": { - "$date": "2021-03-30T06:12:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fbb2933-bbe4-43d9-920e-8421d5d5fd50", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-30T04:36:57.000Z" - }, - "end": { - "$date": "2021-03-30T05:21:09.000Z" - }, - "events": [ - { - "uuid": "f091205a-0cc0-4c48-9953-f8a38541fbe0", - "start": { - "$date": "2021-03-30T04:36:57.000Z" - }, - "end": { - "$date": "2021-03-30T05:21:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6301c999-4a2b-43ea-8f47-ea55eb837113", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-30T05:14:13.000Z" - }, - "end": { - "$date": "2021-03-30T05:37:56.000Z" - }, - "events": [ - { - "uuid": "2f5355e7-561a-41ba-abd9-b81869acba31", - "start": { - "$date": "2021-03-30T05:14:13.000Z" - }, - "end": { - "$date": "2021-03-30T05:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cd5a167-2ba2-4513-9f0e-d7ae28d40844", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-30T05:33:39.000Z" - }, - "end": { - "$date": "2021-03-30T05:37:35.000Z" - }, - "events": [ - { - "uuid": "1813be8a-0507-4f68-989e-af7c5d75bb66", - "start": { - "$date": "2021-03-30T05:33:39.000Z" - }, - "end": { - "$date": "2021-03-30T05:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c05a31b-fc65-4197-bb58-e10d614d1f08", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-30T05:46:40.000Z" - }, - "end": { - "$date": "2021-03-30T06:13:16.000Z" - }, - "events": [ - { - "uuid": "f8b23e3d-cce7-4522-b31d-4d756d346727", - "start": { - "$date": "2021-03-30T05:46:40.000Z" - }, - "end": { - "$date": "2021-03-30T06:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "3a938d9a-755b-4736-95b7-aa0ab0b94503", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-03-30T04:13:10.000Z" - }, - "end": { - "$date": "2021-03-31T00:36:17.000Z" - }, - "events": [ - { - "uuid": "b7cc12e9-c6cc-4c7a-a4af-27e6f83a7f03", - "start": { - "$date": "2021-03-30T04:13:10.000Z" - }, - "end": { - "$date": "2021-03-30T04:23:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7e3a2d3-19a9-46ab-998b-f856b0777e21", - "start": { - "$date": "2021-03-30T04:23:10.000Z" - }, - "end": { - "$date": "2021-03-30T04:42:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "902dc769-3161-4011-b418-a66dbfeba180", - "start": { - "$date": "2021-03-30T04:42:10.000Z" - }, - "end": { - "$date": "2021-03-30T04:53:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8ff7f93d-f238-4846-bdd8-58c2a1c1088e", - "start": { - "$date": "2021-03-30T04:53:10.000Z" - }, - "end": { - "$date": "2021-03-30T05:28:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0f5433f2-27bb-42e5-9f64-a26480896567", - "start": { - "$date": "2021-03-30T05:28:10.000Z" - }, - "end": { - "$date": "2021-03-30T05:30:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "453fd69d-ec27-4ff6-a8e9-aff36b6c0e81", - "start": { - "$date": "2021-03-30T05:30:10.000Z" - }, - "end": { - "$date": "2021-03-30T13:02:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a2d0bb7-7268-44ec-b427-888f7e5cf362", - "start": { - "$date": "2021-03-30T13:02:10.000Z" - }, - "end": { - "$date": "2021-03-30T13:08:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09d70c6a-4ac0-46d3-891b-1257ce538165", - "start": { - "$date": "2021-03-30T13:08:10.000Z" - }, - "end": { - "$date": "2021-03-30T13:10:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e43e560-7f7a-4fe8-b8ad-c3bd61087084", - "start": { - "$date": "2021-03-30T13:10:10.000Z" - }, - "end": { - "$date": "2021-03-30T13:22:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3caa4748-ad70-4971-b5d8-8e2f85d8fbba", - "start": { - "$date": "2021-03-30T13:22:10.000Z" - }, - "end": { - "$date": "2021-03-30T19:16:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a609d275-f6a2-4f4a-875f-3447e0d6059c", - "start": { - "$date": "2021-03-30T19:16:10.000Z" - }, - "end": { - "$date": "2021-03-30T19:20:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4fb2d9e3-a59a-4f1f-b4f8-869ff33d570c", - "start": { - "$date": "2021-03-30T19:20:10.000Z" - }, - "end": { - "$date": "2021-03-30T20:40:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e98c151e-a380-4ad9-9937-ee0496adda7a", - "start": { - "$date": "2021-03-30T20:40:10.000Z" - }, - "end": { - "$date": "2021-03-31T00:36:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "1885a286-539e-41c5-873e-bd9f95359f1a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-03-30T15:58:57.000Z" - }, - "end": { - "$date": "2021-03-31T00:09:32.000Z" - }, - "events": [ - { - "uuid": "ca0ef5b6-1eb6-499e-917e-76487b118a65", - "start": { - "$date": "2021-03-30T15:58:57.000Z" - }, - "end": { - "$date": "2021-03-30T18:06:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a137d3e-5e44-4273-b0dd-d513f57c5460", - "start": { - "$date": "2021-03-30T18:06:57.000Z" - }, - "end": { - "$date": "2021-03-30T18:32:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ab0231ae-d41f-4c57-95f5-a1264b84b145", - "start": { - "$date": "2021-03-30T18:32:57.000Z" - }, - "end": { - "$date": "2021-03-31T00:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f762538f-5512-4b21-ab02-da385a1f2525", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-30T16:43:59.000Z" - }, - "end": { - "$date": "2021-03-30T17:36:41.000Z" - }, - "events": [ - { - "uuid": "92044f7d-2209-4c9e-90ff-2577ed1c7a0e", - "start": { - "$date": "2021-03-30T16:43:59.000Z" - }, - "end": { - "$date": "2021-03-30T17:36:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d6134e6-0ccb-4025-a3d2-343d31191806", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-30T17:58:20.000Z" - }, - "end": { - "$date": "2021-03-30T18:33:35.000Z" - }, - "events": [ - { - "uuid": "aed1de1e-ad81-4278-a9f7-ed68d4a17a40", - "start": { - "$date": "2021-03-30T17:58:20.000Z" - }, - "end": { - "$date": "2021-03-30T18:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b486eb39-277f-4436-9686-b42200c8545f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-30T19:16:23.000Z" - }, - "end": { - "$date": "2021-03-30T19:39:49.000Z" - }, - "events": [ - { - "uuid": "0d31eb8f-af2f-4287-8d9b-bad22549c486", - "start": { - "$date": "2021-03-30T19:16:23.000Z" - }, - "end": { - "$date": "2021-03-30T19:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fb8d4e4c-3be3-4ee6-8026-4bd9b144f695", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-30T19:27:37.000Z" - }, - "end": { - "$date": "2021-03-30T20:34:21.000Z" - }, - "events": [ - { - "uuid": "8519ca9b-921d-41d3-8dbe-6dd119a5bd2a", - "start": { - "$date": "2021-03-30T19:27:37.000Z" - }, - "end": { - "$date": "2021-03-30T20:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30d22fc6-db09-4fac-8010-0da7cd51e25b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-30T19:45:35.000Z" - }, - "end": { - "$date": "2021-03-30T20:15:57.000Z" - }, - "events": [ - { - "uuid": "86af9e12-49f7-408a-b45d-4bc4eb283932", - "start": { - "$date": "2021-03-30T19:45:35.000Z" - }, - "end": { - "$date": "2021-03-30T20:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b8ab2331-06b7-4f88-91ab-a381da1e71e5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-30T20:24:54.000Z" - }, - "end": { - "$date": "2021-03-30T22:20:57.000Z" - }, - "events": [ - { - "uuid": "8c277e4c-dce2-4ca1-8695-b27d093ce328", - "start": { - "$date": "2021-03-30T20:24:54.000Z" - }, - "end": { - "$date": "2021-03-30T21:01:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1de77af0-fd96-4de9-8c58-da4787c9d68c", - "start": { - "$date": "2021-03-30T21:01:54.000Z" - }, - "end": { - "$date": "2021-03-30T21:02:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f0ca2e58-b103-4f91-b71a-c389e8f9c1a3", - "start": { - "$date": "2021-03-30T21:02:54.000Z" - }, - "end": { - "$date": "2021-03-30T21:29:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a322a1e0-7b9b-4cd9-9742-b13ea7a3cab2", - "start": { - "$date": "2021-03-30T21:29:54.000Z" - }, - "end": { - "$date": "2021-03-30T21:39:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d29977ea-a682-4d0f-8990-b764e215b32d", - "start": { - "$date": "2021-03-30T21:39:54.000Z" - }, - "end": { - "$date": "2021-03-30T22:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "a77b6329-434a-45d7-9ddb-30875f105f92", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-30T20:52:54.000Z" - }, - "end": { - "$date": "2021-03-30T22:44:48.000Z" - }, - "events": [ - { - "uuid": "36656695-d010-4e6b-81ea-c341e94690b0", - "start": { - "$date": "2021-03-30T20:52:54.000Z" - }, - "end": { - "$date": "2021-03-30T22:44:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f40d8589-3996-4777-835e-a6236d2b83d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-30T20:54:44.000Z" - }, - "end": { - "$date": "2021-03-30T22:06:44.000Z" - }, - "events": [ - { - "uuid": "e8c9ce9b-b9e0-4e08-b29a-3b179cb3d900", - "start": { - "$date": "2021-03-30T20:54:44.000Z" - }, - "end": { - "$date": "2021-03-30T22:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f8aa5850-d7a0-42dc-981d-8479140b1ad7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-30T21:30:37.000Z" - }, - "end": { - "$date": "2021-03-30T22:35:09.000Z" - }, - "events": [ - { - "uuid": "b073bb00-0a23-4983-9b81-66f7d9f12e1d", - "start": { - "$date": "2021-03-30T21:30:37.000Z" - }, - "end": { - "$date": "2021-03-30T22:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f423ed69-01f1-4eeb-a201-8e63733dad54", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-30T22:22:18.000Z" - }, - "end": { - "$date": "2021-03-30T23:21:28.000Z" - }, - "events": [ - { - "uuid": "bba89939-8008-42de-805d-6f0e55e1e476", - "start": { - "$date": "2021-03-30T22:22:18.000Z" - }, - "end": { - "$date": "2021-03-30T23:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9ad300cd-4d8c-4c36-a5ea-5482905fea7a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-30T22:37:41.000Z" - }, - "end": { - "$date": "2021-03-31T00:49:54.000Z" - }, - "events": [ - { - "uuid": "0906e066-4372-4154-8648-7a5db2c4e25e", - "start": { - "$date": "2021-03-30T22:37:41.000Z" - }, - "end": { - "$date": "2021-03-31T00:49:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "3f5987e8-c4a1-4bd6-ae03-861171f85686", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-30T22:50:50.000Z" - }, - "end": { - "$date": "2021-03-30T23:12:24.000Z" - }, - "events": [ - { - "uuid": "db1658ac-6b58-4bf6-8fd3-976a3409e88d", - "start": { - "$date": "2021-03-30T22:50:50.000Z" - }, - "end": { - "$date": "2021-03-30T23:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "489b407b-eb1c-4cea-9f1a-bc0275030381", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-30T23:12:50.000Z" - }, - "end": { - "$date": "2021-03-30T23:51:58.000Z" - }, - "events": [ - { - "uuid": "25deccc2-1f62-4038-b4e5-f737606c06a4", - "start": { - "$date": "2021-03-30T23:12:50.000Z" - }, - "end": { - "$date": "2021-03-30T23:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8355fcd9-1fda-44f8-a9b7-71b14eefcd9e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-30T23:39:59.000Z" - }, - "end": { - "$date": "2021-03-31T00:08:31.000Z" - }, - "events": [ - { - "uuid": "f800c910-aa28-4020-b6c9-43da08cf7967", - "start": { - "$date": "2021-03-30T23:39:59.000Z" - }, - "end": { - "$date": "2021-03-31T00:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "daad2751-6b52-42b2-b870-9f50446067b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-31T00:45:31.000Z" - }, - "end": { - "$date": "2021-03-31T00:48:00.000Z" - }, - "events": [ - { - "uuid": "98fcbdc3-2b78-48ae-81aa-6631f6bc7b5f", - "start": { - "$date": "2021-03-31T00:45:31.000Z" - }, - "end": { - "$date": "2021-03-31T00:48:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f5b90d3-7462-43ea-b7a7-c9112f79a331", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-31T00:11:00.000Z" - }, - "end": { - "$date": "2021-03-31T00:24:46.000Z" - }, - "events": [ - { - "uuid": "2c058ef1-285f-48f5-9bb1-3467ff82d19b", - "start": { - "$date": "2021-03-31T00:11:00.000Z" - }, - "end": { - "$date": "2021-03-31T00:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "f6efb065-cfd4-4f67-9d00-f10e6313d528", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-31T01:11:07.000Z" - }, - "end": { - "$date": "2021-03-31T05:01:20.000Z" - }, - "events": [ - { - "uuid": "8cb43232-d3f2-4202-b9dd-1cd704ee6d85", - "start": { - "$date": "2021-03-31T01:11:07.000Z" - }, - "end": { - "$date": "2021-03-31T02:23:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d72054f0-d152-4981-b6d6-0154b200ca36", - "start": { - "$date": "2021-03-31T02:23:07.000Z" - }, - "end": { - "$date": "2021-03-31T02:27:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "128878a8-7c27-4db1-bd43-23fec6a8d5e6", - "start": { - "$date": "2021-03-31T02:27:07.000Z" - }, - "end": { - "$date": "2021-03-31T02:37:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "836ae804-7159-430d-b803-cf143fee416b", - "start": { - "$date": "2021-03-31T02:37:07.000Z" - }, - "end": { - "$date": "2021-03-31T02:38:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c55e0cd-5278-4f09-8ee4-77eb9ff02139", - "start": { - "$date": "2021-03-31T02:38:07.000Z" - }, - "end": { - "$date": "2021-03-31T05:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "990f8d42-31c8-4459-b674-aa7f8cb016dd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-03-31T01:11:02.000Z" - }, - "end": { - "$date": "2021-03-31T01:28:07.000Z" - }, - "events": [ - { - "uuid": "d42dbead-4183-4ad8-a31a-30bb4e556aba", - "start": { - "$date": "2021-03-31T01:11:02.000Z" - }, - "end": { - "$date": "2021-03-31T01:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "dab50c21-f5f9-426d-ac00-358cfbc7a617", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-31T01:17:29.000Z" - }, - "end": { - "$date": "2021-03-31T06:29:32.000Z" - }, - "events": [ - { - "uuid": "a0c4a489-6d35-4192-a8bf-dbff8527d038", - "start": { - "$date": "2021-03-31T01:17:29.000Z" - }, - "end": { - "$date": "2021-03-31T06:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2c03aefb-0d1c-4250-a759-a370e75d8a68", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-31T01:42:07.000Z" - }, - "end": { - "$date": "2021-03-31T04:01:56.000Z" - }, - "events": [ - { - "uuid": "767bbb95-4751-4b24-a26b-75156176dc52", - "start": { - "$date": "2021-03-31T01:42:07.000Z" - }, - "end": { - "$date": "2021-03-31T04:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "90e842b7-f793-4827-966c-949592328914", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-31T02:00:00.000Z" - }, - "end": { - "$date": "2021-03-31T04:31:19.000Z" - }, - "events": [ - { - "uuid": "b7b85f4a-e76a-4b52-91c2-3fba5a36dad2", - "start": { - "$date": "2021-03-31T02:00:00.000Z" - }, - "end": { - "$date": "2021-03-31T04:31:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7359cc17-dbff-4a26-84c8-12045c9b439c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-31T02:00:04.000Z" - }, - "end": { - "$date": "2021-03-31T05:18:13.000Z" - }, - "events": [ - { - "uuid": "bfbccef7-80b3-4ed4-8035-e2d44669914e", - "start": { - "$date": "2021-03-31T02:00:04.000Z" - }, - "end": { - "$date": "2021-03-31T05:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "5906c2fb-8006-4213-9f9b-ac045cb7a880", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-31T02:15:38.000Z" - }, - "end": { - "$date": "2021-03-31T04:16:14.000Z" - }, - "events": [ - { - "uuid": "d8578dbd-5126-49df-a52d-f2055413e3be", - "start": { - "$date": "2021-03-31T02:15:38.000Z" - }, - "end": { - "$date": "2021-03-31T04:16:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67a5591c-ac6a-439e-a924-f37bb258f203", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-31T02:16:51.000Z" - }, - "end": { - "$date": "2021-03-31T04:17:02.000Z" - }, - "events": [ - { - "uuid": "3bac33c7-6012-4c52-9056-05912eb56141", - "start": { - "$date": "2021-03-31T02:16:51.000Z" - }, - "end": { - "$date": "2021-03-31T04:17:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2b420176-5583-4bbb-a750-b50f84de20a1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-31T03:34:32.000Z" - }, - "end": { - "$date": "2021-03-31T05:46:48.000Z" - }, - "events": [ - { - "uuid": "91f73bbd-5433-47be-8446-2db92442e4ca", - "start": { - "$date": "2021-03-31T03:34:32.000Z" - }, - "end": { - "$date": "2021-03-31T03:47:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b9b2b28-cbfc-4f9e-8919-e33912371271", - "start": { - "$date": "2021-03-31T03:47:32.000Z" - }, - "end": { - "$date": "2021-03-31T03:49:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0eb77760-0ba8-4712-a322-b747d48d182a", - "start": { - "$date": "2021-03-31T03:49:32.000Z" - }, - "end": { - "$date": "2021-03-31T05:46:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "2cb71c5c-8c8d-483f-ad7e-a97cda81e550", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-03-31T04:02:29.000Z" - }, - "end": { - "$date": "2021-03-31T05:01:01.000Z" - }, - "events": [ - { - "uuid": "3754d5b9-85c4-420c-a61c-7fdf673481b0", - "start": { - "$date": "2021-03-31T04:02:29.000Z" - }, - "end": { - "$date": "2021-03-31T05:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "93e71e62-ab2c-4c29-8053-1a0903bf7dff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-31T04:22:26.000Z" - }, - "end": { - "$date": "2021-03-31T04:34:57.000Z" - }, - "events": [ - { - "uuid": "01d4165e-22f9-412a-a9ac-d0fac2f4a86f", - "start": { - "$date": "2021-03-31T04:22:26.000Z" - }, - "end": { - "$date": "2021-03-31T04:34:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "78e30471-c0e6-489b-a76a-c44c782fe541", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-31T04:32:18.000Z" - }, - "end": { - "$date": "2021-03-31T05:01:06.000Z" - }, - "events": [ - { - "uuid": "301c9964-e6f1-42ee-8feb-8e5da01b01a1", - "start": { - "$date": "2021-03-31T04:32:18.000Z" - }, - "end": { - "$date": "2021-03-31T05:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ccb7e30-9da5-4b70-b3c0-658cffcb28d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-03-31T05:02:50.000Z" - }, - "end": { - "$date": "2021-03-31T05:12:01.000Z" - }, - "events": [ - { - "uuid": "d4e0775f-c49e-4fac-a123-69aa3613e0fe", - "start": { - "$date": "2021-03-31T05:02:50.000Z" - }, - "end": { - "$date": "2021-03-31T05:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "166fbdcc-1b9a-4731-8983-3fd04d3f30fe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-03-31T05:23:43.000Z" - }, - "end": { - "$date": "2021-03-31T05:50:19.000Z" - }, - "events": [ - { - "uuid": "011d941e-1887-45e0-b09b-33a748640437", - "start": { - "$date": "2021-03-31T05:23:43.000Z" - }, - "end": { - "$date": "2021-03-31T05:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "f620d3a6-39d6-4ae5-b913-89001bab4bf9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-03-31T05:42:49.000Z" - }, - "end": { - "$date": "2021-03-31T06:26:21.000Z" - }, - "events": [ - { - "uuid": "09caa00f-6f8d-4ca1-8178-d141f85fffaa", - "start": { - "$date": "2021-03-31T05:42:49.000Z" - }, - "end": { - "$date": "2021-03-31T06:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fb7d5507-4644-460f-984e-4ff765f45777", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-31T06:22:57.000Z" - }, - "end": { - "$date": "2021-03-31T06:30:09.000Z" - }, - "events": [ - { - "uuid": "dc518a9f-85f0-4923-9a61-73bf33916c53", - "start": { - "$date": "2021-03-31T06:22:57.000Z" - }, - "end": { - "$date": "2021-03-31T06:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "90f955a8-99b8-4500-8b3c-eb97f3617fc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-31T06:41:20.000Z" - }, - "end": { - "$date": "2021-03-31T06:56:30.000Z" - }, - "events": [ - { - "uuid": "292cb65a-46db-48e5-aa88-ff186f50cd7f", - "start": { - "$date": "2021-03-31T06:41:20.000Z" - }, - "end": { - "$date": "2021-03-31T06:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "84b6be07-68e3-4820-ac69-740d75242bb3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-31T14:44:22.000Z" - }, - "end": { - "$date": "2021-03-31T16:39:10.000Z" - }, - "events": [ - { - "uuid": "d327055f-8d49-44bf-93e7-b43ac44f567f", - "start": { - "$date": "2021-03-31T14:44:22.000Z" - }, - "end": { - "$date": "2021-03-31T14:47:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e5c9a25-a48a-4071-8f38-5717e41af7d4", - "start": { - "$date": "2021-03-31T14:47:22.000Z" - }, - "end": { - "$date": "2021-03-31T16:39:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c660a456-5656-45e4-90d9-0324c134ce28", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-31T16:50:26.000Z" - }, - "end": { - "$date": "2021-03-31T17:23:53.000Z" - }, - "events": [ - { - "uuid": "4f984db7-3150-4cde-a2b4-1dcf882d774c", - "start": { - "$date": "2021-03-31T16:50:26.000Z" - }, - "end": { - "$date": "2021-03-31T17:23:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7b670b16-2cf3-42d0-846f-8f1c512bfa5d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-03-31T19:24:51.000Z" - }, - "end": { - "$date": "2021-04-01T00:14:11.000Z" - }, - "events": [ - { - "uuid": "7a78d119-82b0-4210-a473-ad8be35b4f5e", - "start": { - "$date": "2021-03-31T19:24:51.000Z" - }, - "end": { - "$date": "2021-04-01T00:14:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ca71e390-101b-442d-8de5-d1b69a3d7cd8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-31T19:27:52.000Z" - }, - "end": { - "$date": "2021-03-31T20:08:55.000Z" - }, - "events": [ - { - "uuid": "3629726b-9f70-490a-9617-f520bab37d3a", - "start": { - "$date": "2021-03-31T19:27:52.000Z" - }, - "end": { - "$date": "2021-03-31T20:08:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f0e90299-43f4-41e9-9216-ef40234f369d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-31T20:10:37.000Z" - }, - "end": { - "$date": "2021-03-31T20:56:54.000Z" - }, - "events": [ - { - "uuid": "90664fa1-50a5-417d-89b7-d37e41aa8ace", - "start": { - "$date": "2021-03-31T20:10:37.000Z" - }, - "end": { - "$date": "2021-03-31T20:35:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d0ea282-1618-4e53-9a8f-d6512acd89d2", - "start": { - "$date": "2021-03-31T20:35:37.000Z" - }, - "end": { - "$date": "2021-03-31T20:46:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b0d20e5-84fb-453a-bd72-32563fb4657a", - "start": { - "$date": "2021-03-31T20:46:37.000Z" - }, - "end": { - "$date": "2021-03-31T20:56:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "acc35eba-32ed-44e9-8bd2-fc22d95d4908", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-31T20:57:41.000Z" - }, - "end": { - "$date": "2021-03-31T22:55:02.000Z" - }, - "events": [ - { - "uuid": "17c16614-bea1-4e4e-b491-712750cc25d3", - "start": { - "$date": "2021-03-31T20:57:41.000Z" - }, - "end": { - "$date": "2021-03-31T22:53:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30f8ed56-7ff2-420d-8ad0-21684d26295a", - "start": { - "$date": "2021-03-31T22:53:41.000Z" - }, - "end": { - "$date": "2021-03-31T22:55:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ca92b921-669a-45dd-91ef-b2724c27075c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-03-31T21:08:58.000Z" - }, - "end": { - "$date": "2021-03-31T21:11:39.000Z" - }, - "events": [ - { - "uuid": "ef095c2a-715e-4329-afb2-8c37c18327a8", - "start": { - "$date": "2021-03-31T21:08:58.000Z" - }, - "end": { - "$date": "2021-03-31T21:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "86598f72-59be-4bf8-97be-1bb863344baf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-01T01:59:04.000Z" - }, - "end": { - "$date": "2021-04-01T02:59:51.000Z" - }, - "events": [ - { - "uuid": "72e96346-9405-4aba-adcb-fa926ccefc3e", - "start": { - "$date": "2021-04-01T01:59:04.000Z" - }, - "end": { - "$date": "2021-04-01T03:49:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "47a52014-490a-4873-9e2f-cc600c0badd5", - "start": { - "$date": "2021-04-01T03:49:04.000Z" - }, - "end": { - "$date": "2021-04-01T04:03:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "163b28ec-b819-49e6-8a4b-83df235aefd9", - "start": { - "$date": "2021-04-01T04:03:04.000Z" - }, - "end": { - "$date": "2021-04-01T02:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c6244006-926c-4e5e-8d74-6c325d2deb65", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-31T21:41:51.000Z" - }, - "end": { - "$date": "2021-03-31T22:52:10.000Z" - }, - "events": [ - { - "uuid": "aaf6d71a-b047-419a-9151-a7b4f8262352", - "start": { - "$date": "2021-03-31T21:41:51.000Z" - }, - "end": { - "$date": "2021-03-31T22:52:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5c77ab37-c1b1-4400-b613-89077b5b5a6b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-03-31T22:19:29.000Z" - }, - "end": { - "$date": "2021-03-31T23:21:25.000Z" - }, - "events": [ - { - "uuid": "8a2d5c50-2532-4778-bb46-e237451a2514", - "start": { - "$date": "2021-03-31T22:19:29.000Z" - }, - "end": { - "$date": "2021-03-31T23:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9d742946-250d-4f37-a7e7-9b4c3d2c81cf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-03-31T22:55:48.000Z" - }, - "end": { - "$date": "2021-04-01T00:53:10.000Z" - }, - "events": [ - { - "uuid": "b03dff48-f92b-4a8f-82a6-9bed834b237e", - "start": { - "$date": "2021-03-31T22:55:48.000Z" - }, - "end": { - "$date": "2021-04-01T00:53:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "f83675b1-37ed-4c9a-b1ea-726f0de19b24", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-31T23:07:43.000Z" - }, - "end": { - "$date": "2021-03-31T23:24:25.000Z" - }, - "events": [ - { - "uuid": "e2b3a77c-b9b0-4a9f-b907-42988761538f", - "start": { - "$date": "2021-03-31T23:07:43.000Z" - }, - "end": { - "$date": "2021-03-31T23:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e134cdad-41ca-463c-b27a-b0adc98d9ed3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-03-31T23:24:48.000Z" - }, - "end": { - "$date": "2021-04-01T00:16:26.000Z" - }, - "events": [ - { - "uuid": "0236b340-dc80-4187-9065-f74fad561ab2", - "start": { - "$date": "2021-03-31T23:24:48.000Z" - }, - "end": { - "$date": "2021-04-01T00:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "a512b473-89c4-48ee-ab59-b2447c4e9923", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-03-31T23:25:15.000Z" - }, - "end": { - "$date": "2021-03-31T23:56:09.000Z" - }, - "events": [ - { - "uuid": "234d6be8-0d38-4b72-842f-84129ae64b83", - "start": { - "$date": "2021-03-31T23:25:15.000Z" - }, - "end": { - "$date": "2021-03-31T23:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "22c914fc-016b-4733-b0d5-ded2febf0a89", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-03-31T23:27:08.000Z" - }, - "end": { - "$date": "2021-03-31T23:43:49.000Z" - }, - "events": [ - { - "uuid": "0e07b986-bee6-447a-9e60-75720d116247", - "start": { - "$date": "2021-03-31T23:27:08.000Z" - }, - "end": { - "$date": "2021-03-31T23:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5f0822c9-bdb4-4299-9645-6521051b9da4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-01T01:45:29.000Z" - }, - "end": { - "$date": "2021-04-01T03:09:49.000Z" - }, - "events": [ - { - "uuid": "120401b0-c914-4345-8a7a-48f51c30b7f0", - "start": { - "$date": "2021-04-01T01:45:29.000Z" - }, - "end": { - "$date": "2021-04-01T01:55:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1543be52-bb16-4980-bc52-e746167c537a", - "start": { - "$date": "2021-04-01T01:55:29.000Z" - }, - "end": { - "$date": "2021-04-01T01:59:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d058f5a5-2c9c-44e5-82ec-8270c2300c70", - "start": { - "$date": "2021-04-01T01:59:29.000Z" - }, - "end": { - "$date": "2021-04-01T03:09:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b58f8eac-ab06-4da2-9f13-015763dd25f6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-01T02:08:08.000Z" - }, - "end": { - "$date": "2021-04-01T02:18:23.000Z" - }, - "events": [ - { - "uuid": "52765894-e1e4-4ffc-9b27-cc45e41f7687", - "start": { - "$date": "2021-04-01T02:08:08.000Z" - }, - "end": { - "$date": "2021-04-01T02:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9a5fc1ef-45a2-415f-a5dc-6b4407de4ffa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-01T02:10:20.000Z" - }, - "end": { - "$date": "2021-04-01T11:46:03.000Z" - }, - "events": [ - { - "uuid": "1780930e-9faa-4415-987b-4cb8b30a873a", - "start": { - "$date": "2021-04-01T02:10:20.000Z" - }, - "end": { - "$date": "2021-04-01T04:22:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "082f101e-a497-4d80-a0ae-5796b068cf20", - "start": { - "$date": "2021-04-01T04:22:20.000Z" - }, - "end": { - "$date": "2021-04-01T04:31:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b60d3368-8216-442f-9872-42801ba60915", - "start": { - "$date": "2021-04-01T04:31:20.000Z" - }, - "end": { - "$date": "2021-04-01T05:46:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5aa8650c-4440-4d82-8032-4ac2a76d8f9f", - "start": { - "$date": "2021-04-01T05:46:20.000Z" - }, - "end": { - "$date": "2021-04-01T05:51:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7a5b24f1-9925-4805-b2aa-5bf170b64a5c", - "start": { - "$date": "2021-04-01T05:51:20.000Z" - }, - "end": { - "$date": "2021-04-01T07:06:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c08f4f94-7c35-4a12-915d-e56823972400", - "start": { - "$date": "2021-04-01T07:06:20.000Z" - }, - "end": { - "$date": "2021-04-01T07:08:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74e7beae-e474-4a4d-b256-552df539b4df", - "start": { - "$date": "2021-04-01T07:08:20.000Z" - }, - "end": { - "$date": "2021-04-01T07:29:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22e954f0-f4fe-4c00-be09-0c1acdaf8f7b", - "start": { - "$date": "2021-04-01T07:29:20.000Z" - }, - "end": { - "$date": "2021-04-01T07:30:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2fa86d1e-f6cd-40f3-9212-75c76102c1df", - "start": { - "$date": "2021-04-01T07:30:20.000Z" - }, - "end": { - "$date": "2021-04-01T11:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c09526c7-f6d4-4cd5-8488-384184392c26", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-01T02:19:21.000Z" - }, - "end": { - "$date": "2021-04-01T05:01:38.000Z" - }, - "events": [ - { - "uuid": "17d4e584-e91d-48f9-aadf-1b6ec33cb89e", - "start": { - "$date": "2021-04-01T02:19:21.000Z" - }, - "end": { - "$date": "2021-04-01T05:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2a441a88-76ac-4793-9a6b-c6ed3863415a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-01T02:20:28.000Z" - }, - "end": { - "$date": "2021-04-01T05:06:48.000Z" - }, - "events": [ - { - "uuid": "33f5c585-c025-49ab-9027-cb4b568dd46c", - "start": { - "$date": "2021-04-01T02:20:28.000Z" - }, - "end": { - "$date": "2021-04-01T05:05:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad697880-9ea6-4a65-89e3-4194f2783ee1", - "start": { - "$date": "2021-04-01T05:05:28.000Z" - }, - "end": { - "$date": "2021-04-01T05:06:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b7052549-ec87-47b2-a8f3-8b336ce3e2ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T02:46:31.000Z" - }, - "end": { - "$date": "2021-04-01T03:05:42.000Z" - }, - "events": [ - { - "uuid": "5cb7b2de-f793-4e54-b54a-28fee45422e6", - "start": { - "$date": "2021-04-01T02:46:31.000Z" - }, - "end": { - "$date": "2021-04-01T03:05:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c8f9b252-3172-4ff2-aefb-f2347cc256e7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-01T02:50:56.000Z" - }, - "end": { - "$date": "2021-04-01T05:01:29.000Z" - }, - "events": [ - { - "uuid": "e91bc247-8d3a-4051-b2bb-13b3433870a8", - "start": { - "$date": "2021-04-01T02:50:56.000Z" - }, - "end": { - "$date": "2021-04-01T05:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "325e6d90-8111-425b-bb77-97b6e2992db9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-01T03:01:36.000Z" - }, - "end": { - "$date": "2021-04-01T05:20:05.000Z" - }, - "events": [ - { - "uuid": "43f1c103-736c-4f98-8054-946709a8357e", - "start": { - "$date": "2021-04-01T03:01:36.000Z" - }, - "end": { - "$date": "2021-04-01T05:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d3526c64-0884-4199-94f3-b9ec22ecffca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T03:05:57.000Z" - }, - "end": { - "$date": "2021-04-01T03:54:59.000Z" - }, - "events": [ - { - "uuid": "46774d12-9b99-4e6a-9a44-d16266f6f0c0", - "start": { - "$date": "2021-04-01T03:05:57.000Z" - }, - "end": { - "$date": "2021-04-01T03:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "1a22f130-716c-4981-8405-4af7e8cb0f59", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-01T03:10:44.000Z" - }, - "end": { - "$date": "2021-04-01T03:12:24.000Z" - }, - "events": [ - { - "uuid": "3b52ee38-d750-4094-a373-83f6f9f51591", - "start": { - "$date": "2021-04-01T03:10:44.000Z" - }, - "end": { - "$date": "2021-04-01T03:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "7a1ad8fa-7e4e-4c02-8073-0f3df6499c1f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T03:35:37.000Z" - }, - "end": { - "$date": "2021-04-01T03:37:33.000Z" - }, - "events": [ - { - "uuid": "ea6be7dd-8a43-45ce-8685-8906363a7dc5", - "start": { - "$date": "2021-04-01T03:35:37.000Z" - }, - "end": { - "$date": "2021-04-01T03:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "2ae4ec7a-6d22-4fa2-8604-8d9cf3df145f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T03:41:36.000Z" - }, - "end": { - "$date": "2021-04-01T03:43:37.000Z" - }, - "events": [ - { - "uuid": "49d4e419-b53e-4550-b041-06d3075687dc", - "start": { - "$date": "2021-04-01T03:41:36.000Z" - }, - "end": { - "$date": "2021-04-01T03:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "d7e9a5ee-4845-4e08-a876-8c44f3cc68b1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T03:46:34.000Z" - }, - "end": { - "$date": "2021-04-01T03:47:58.000Z" - }, - "events": [ - { - "uuid": "499c5394-d615-49f2-ad88-31302ad7f7f2", - "start": { - "$date": "2021-04-01T03:46:34.000Z" - }, - "end": { - "$date": "2021-04-01T03:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "f114c4ad-97fa-4516-a3cf-e8c984b331eb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T03:49:59.000Z" - }, - "end": { - "$date": "2021-04-01T03:51:59.000Z" - }, - "events": [ - { - "uuid": "b1e82909-8647-4c5d-9399-2c6d8e5757ec", - "start": { - "$date": "2021-04-01T03:49:59.000Z" - }, - "end": { - "$date": "2021-04-01T03:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "624043f9-3ada-4877-b13b-6235fc7ec914", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T03:52:34.000Z" - }, - "end": { - "$date": "2021-04-01T04:54:01.000Z" - }, - "events": [ - { - "uuid": "63e7fe74-ea72-4082-8b1e-94326cce042f", - "start": { - "$date": "2021-04-01T03:52:34.000Z" - }, - "end": { - "$date": "2021-04-01T04:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88d3036a-d6f6-47cb-bace-1a8cbe696d45", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-01T04:24:39.000Z" - }, - "end": { - "$date": "2021-04-01T04:53:33.000Z" - }, - "events": [ - { - "uuid": "65c427dc-c9cb-413b-83d7-d76dff85000a", - "start": { - "$date": "2021-04-01T04:24:39.000Z" - }, - "end": { - "$date": "2021-04-01T04:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f719cbfd-b1fb-45ea-bf95-26899b64b22f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-01T04:44:59.000Z" - }, - "end": { - "$date": "2021-04-01T06:40:29.000Z" - }, - "events": [ - { - "uuid": "16e0b3a1-feee-49ed-856f-3d59a5876994", - "start": { - "$date": "2021-04-01T04:44:59.000Z" - }, - "end": { - "$date": "2021-04-01T06:05:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9f776ac9-cc6f-4ab4-ab2b-a011ce69faad", - "start": { - "$date": "2021-04-01T06:05:59.000Z" - }, - "end": { - "$date": "2021-04-01T06:19:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8d593b9-6dde-4698-a8d6-a7aabf468821", - "start": { - "$date": "2021-04-01T06:19:59.000Z" - }, - "end": { - "$date": "2021-04-01T06:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "025fc082-f61a-427f-93a2-da781e4c71c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T04:54:25.000Z" - }, - "end": { - "$date": "2021-04-01T05:19:03.000Z" - }, - "events": [ - { - "uuid": "12dff59f-6f25-4ef3-a024-3dec86baeb25", - "start": { - "$date": "2021-04-01T04:54:25.000Z" - }, - "end": { - "$date": "2021-04-01T05:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73621620-c419-46ac-a7af-090e87f74607", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-01T04:54:42.000Z" - }, - "end": { - "$date": "2021-04-01T04:56:12.000Z" - }, - "events": [ - { - "uuid": "0d815f61-1e32-4d69-b661-8e10e65fcd57", - "start": { - "$date": "2021-04-01T04:54:42.000Z" - }, - "end": { - "$date": "2021-04-01T04:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50e389e4-c886-41b1-b70d-d13ab02b0b8b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-01T04:59:00.000Z" - }, - "end": { - "$date": "2021-04-01T05:21:56.000Z" - }, - "events": [ - { - "uuid": "656abdbf-4442-473e-8b25-1640d71f5941", - "start": { - "$date": "2021-04-01T04:59:00.000Z" - }, - "end": { - "$date": "2021-04-01T05:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c5d766f7-5659-4c3e-af8f-998c35df7631", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-01T05:08:41.000Z" - }, - "end": { - "$date": "2021-04-01T05:10:57.000Z" - }, - "events": [ - { - "uuid": "9765f3f8-e172-4b0d-a76a-7a9429c2db29", - "start": { - "$date": "2021-04-01T05:08:41.000Z" - }, - "end": { - "$date": "2021-04-01T05:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cdc2da5-2623-457e-83e0-c0df3f8cbd2e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-01T05:25:41.000Z" - }, - "end": { - "$date": "2021-04-01T05:59:39.000Z" - }, - "events": [ - { - "uuid": "78a8ecde-e3ef-432d-adb2-b0ded12e9f86", - "start": { - "$date": "2021-04-01T05:25:41.000Z" - }, - "end": { - "$date": "2021-04-01T05:59:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "8da9101a-a865-429a-b15d-0dd83a6a8cc9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-01T05:25:14.000Z" - }, - "end": { - "$date": "2021-04-01T06:08:58.000Z" - }, - "events": [ - { - "uuid": "35b7b038-5d97-4b00-8f49-0dfe479ef361", - "start": { - "$date": "2021-04-01T05:25:14.000Z" - }, - "end": { - "$date": "2021-04-01T05:48:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3f4e55b-9942-4a3a-81c9-03c679154996", - "start": { - "$date": "2021-04-01T05:48:14.000Z" - }, - "end": { - "$date": "2021-04-01T05:53:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7d250bc4-9809-45e0-9819-4b0b575c98ea", - "start": { - "$date": "2021-04-01T05:53:14.000Z" - }, - "end": { - "$date": "2021-04-01T06:08:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dc48a82d-c2d4-41a4-a814-b3f8e3297d02", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-01T13:18:38.000Z" - }, - "end": { - "$date": "2021-04-01T13:28:44.000Z" - }, - "events": [ - { - "uuid": "7edaf8cb-bd1e-4fe6-989e-6ec706f4e646", - "start": { - "$date": "2021-04-01T13:18:38.000Z" - }, - "end": { - "$date": "2021-04-01T13:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba19b964-1585-40b9-8c2a-26c5c55b9066", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-01T13:31:20.000Z" - }, - "end": { - "$date": "2021-04-01T14:15:26.000Z" - }, - "events": [ - { - "uuid": "64a1a888-2629-449d-84a7-82896a9e9404", - "start": { - "$date": "2021-04-01T13:31:20.000Z" - }, - "end": { - "$date": "2021-04-01T14:15:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73131007-4e45-41bd-a51a-070d37424df5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T15:16:13.000Z" - }, - "end": { - "$date": "2021-04-01T16:18:29.000Z" - }, - "events": [ - { - "uuid": "99c0dda0-ad47-4031-8519-9b854e01a74e", - "start": { - "$date": "2021-04-01T15:16:13.000Z" - }, - "end": { - "$date": "2021-04-01T15:27:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4205dbe6-66df-4c0b-93d5-9c590b943f93", - "start": { - "$date": "2021-04-01T15:27:13.000Z" - }, - "end": { - "$date": "2021-04-01T15:39:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4fd03e45-4ac7-4fc9-9698-1a66712d1489", - "start": { - "$date": "2021-04-01T15:39:13.000Z" - }, - "end": { - "$date": "2021-04-01T16:18:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2ecede79-e469-4e96-9c87-cf979db7adc1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-01T16:46:54.000Z" - }, - "end": { - "$date": "2021-04-01T17:03:25.000Z" - }, - "events": [ - { - "uuid": "af9df157-4256-4915-b891-2dd22a29514f", - "start": { - "$date": "2021-04-01T16:46:54.000Z" - }, - "end": { - "$date": "2021-04-01T17:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3eea0478-8e31-453c-a135-22ee531cfde6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T17:21:19.000Z" - }, - "end": { - "$date": "2021-04-01T17:47:00.000Z" - }, - "events": [ - { - "uuid": "7b10d4dc-c810-4f2e-960e-e2eb7c746cf0", - "start": { - "$date": "2021-04-01T17:21:19.000Z" - }, - "end": { - "$date": "2021-04-01T17:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8d318f6-bd53-4f64-9a70-6225347651eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T17:49:35.000Z" - }, - "end": { - "$date": "2021-04-01T18:24:44.000Z" - }, - "events": [ - { - "uuid": "45ea6c32-7abb-4806-acc3-d1716c244435", - "start": { - "$date": "2021-04-01T17:49:35.000Z" - }, - "end": { - "$date": "2021-04-01T18:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d6321981-86d7-48bb-b7fa-0d95cdd45100", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-01T02:20:28.000Z" - }, - "end": { - "$date": "2021-04-01T18:01:28.000Z" - }, - "events": [ - { - "uuid": "224322be-292f-4b35-bd56-a5ad50e125f4", - "start": { - "$date": "2021-04-01T02:20:28.000Z" - }, - "end": { - "$date": "2021-04-01T02:21:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed3ecfc1-9fb3-45bb-957e-8d7fdaebcc5c", - "start": { - "$date": "2021-04-01T02:21:28.000Z" - }, - "end": { - "$date": "2021-04-01T18:01:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0b915689-71d5-4ed5-8002-446fae10c9f2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-01T18:50:03.000Z" - }, - "end": { - "$date": "2021-04-01T20:03:03.000Z" - }, - "events": [ - { - "uuid": "3c50157e-f3e0-418a-b45e-e74dac17b270", - "start": { - "$date": "2021-04-01T18:50:03.000Z" - }, - "end": { - "$date": "2021-04-01T20:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c153efcc-cea5-4ba0-b16e-a5cdf20bfb81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T18:56:25.000Z" - }, - "end": { - "$date": "2021-04-01T20:36:10.000Z" - }, - "events": [ - { - "uuid": "9897297e-cb38-4c3f-8951-c4f38aa07796", - "start": { - "$date": "2021-04-01T18:56:25.000Z" - }, - "end": { - "$date": "2021-04-01T20:26:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd0dbce0-da13-4d63-97ec-1f773c14c55f", - "start": { - "$date": "2021-04-01T20:26:25.000Z" - }, - "end": { - "$date": "2021-04-01T20:32:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ecd7304-0773-4cc2-a8ca-5217196e8d61", - "start": { - "$date": "2021-04-01T20:32:25.000Z" - }, - "end": { - "$date": "2021-04-01T20:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "e3110471-fcfe-4c10-93e4-384fe42ca7a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-01T19:10:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:48:29.000Z" - }, - "events": [ - { - "uuid": "164162cb-df24-4d7c-bd5b-015b32813594", - "start": { - "$date": "2021-04-01T19:10:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:16:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed801922-b7a0-41b5-8d2e-ee2c755e4223", - "start": { - "$date": "2021-04-01T22:16:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:24:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff35a895-794b-4c1c-b2d5-9454021ef9ab", - "start": { - "$date": "2021-04-01T22:24:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:27:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbc86bfb-4cf5-4ac5-89d7-4853153ba513", - "start": { - "$date": "2021-04-01T22:27:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:29:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df222954-79f9-4feb-ac42-d2422394d16c", - "start": { - "$date": "2021-04-01T22:29:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:31:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a4e5dcf-11e4-4f8d-8bf5-7120de18f051", - "start": { - "$date": "2021-04-01T22:31:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:37:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39940687-2a11-45a7-9679-107ae2764248", - "start": { - "$date": "2021-04-01T22:37:15.000Z" - }, - "end": { - "$date": "2021-04-01T22:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "06eda63a-1322-4afb-919f-5c9354646104", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-01T19:45:49.000Z" - }, - "end": { - "$date": "2021-04-01T20:19:43.000Z" - }, - "events": [ - { - "uuid": "aa19cbba-41cd-44e3-9e6b-308916d5ab8d", - "start": { - "$date": "2021-04-01T19:45:49.000Z" - }, - "end": { - "$date": "2021-04-01T20:19:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5b19519f-c1d7-4594-86e2-d31c487ec2fe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-01T20:21:03.000Z" - }, - "end": { - "$date": "2021-04-01T21:54:51.000Z" - }, - "events": [ - { - "uuid": "515e43c3-6e0a-4e25-8c19-19e6d87f6c98", - "start": { - "$date": "2021-04-01T20:21:03.000Z" - }, - "end": { - "$date": "2021-04-01T21:54:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6277eaf2-0ee6-46ee-85d3-f718d08e1e0a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T20:36:45.000Z" - }, - "end": { - "$date": "2021-04-01T21:02:15.000Z" - }, - "events": [ - { - "uuid": "d3dee8fa-8c10-4a8e-a7ce-e2e4220f349d", - "start": { - "$date": "2021-04-01T20:36:45.000Z" - }, - "end": { - "$date": "2021-04-01T21:02:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2b1c1137-b955-40cf-a2f3-d3ec6e13ca48", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-01T21:39:44.000Z" - }, - "end": { - "$date": "2021-04-01T23:07:09.000Z" - }, - "events": [ - { - "uuid": "d2031872-4469-4c41-a7b3-000b610bacb8", - "start": { - "$date": "2021-04-01T21:39:44.000Z" - }, - "end": { - "$date": "2021-04-01T23:07:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "caa8c590-98bf-4b02-bbbf-d6038596f4a9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-01T21:57:36.000Z" - }, - "end": { - "$date": "2021-04-01T23:35:00.000Z" - }, - "events": [ - { - "uuid": "e84280d1-7f0a-435a-b903-a88a2b7f2a75", - "start": { - "$date": "2021-04-01T21:57:36.000Z" - }, - "end": { - "$date": "2021-04-01T23:35:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0d46da65-0b1a-4617-beb8-831bcbd0db7c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T22:00:12.000Z" - }, - "end": { - "$date": "2021-04-01T22:29:42.000Z" - }, - "events": [ - { - "uuid": "74c8dd0d-fcb9-4aeb-83a3-6138e9d534f8", - "start": { - "$date": "2021-04-01T22:00:12.000Z" - }, - "end": { - "$date": "2021-04-01T22:29:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e1e6f976-bc97-484a-bf37-fa4ba19d91b1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-01T22:32:43.000Z" - }, - "end": { - "$date": "2021-04-01T23:39:49.000Z" - }, - "events": [ - { - "uuid": "3aea58f5-acf2-4821-bf6c-29435cd67126", - "start": { - "$date": "2021-04-01T22:32:43.000Z" - }, - "end": { - "$date": "2021-04-01T23:17:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b54cc373-977d-494f-acf1-7107d89bc64c", - "start": { - "$date": "2021-04-01T23:17:43.000Z" - }, - "end": { - "$date": "2021-04-01T23:21:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0246196f-617d-44e9-b90c-dd81691b553f", - "start": { - "$date": "2021-04-01T23:21:43.000Z" - }, - "end": { - "$date": "2021-04-01T23:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "47b3d636-2911-479d-8f74-a0585105ca5a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-01T23:07:59.000Z" - }, - "end": { - "$date": "2021-04-02T01:12:41.000Z" - }, - "events": [ - { - "uuid": "cc12ca53-5cd5-435e-9f6e-851487859a0e", - "start": { - "$date": "2021-04-01T23:07:59.000Z" - }, - "end": { - "$date": "2021-04-01T23:19:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "254d4d74-6e08-44c2-a872-2dff6b2922a4", - "start": { - "$date": "2021-04-01T23:19:59.000Z" - }, - "end": { - "$date": "2021-04-01T23:24:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f1f1dfc-d8a1-448f-ab8a-f0ed03671dc0", - "start": { - "$date": "2021-04-01T23:24:59.000Z" - }, - "end": { - "$date": "2021-04-01T23:30:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "10b02696-2404-459e-99c8-e775c290ddbb", - "start": { - "$date": "2021-04-01T23:30:59.000Z" - }, - "end": { - "$date": "2021-04-01T23:44:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b21063fc-9836-4d8a-aa6c-e46b67b2e3e9", - "start": { - "$date": "2021-04-01T23:44:59.000Z" - }, - "end": { - "$date": "2021-04-02T01:12:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "62bc3330-4cdf-4064-9fdf-d4bde4c6144c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-01T23:16:00.000Z" - }, - "end": { - "$date": "2021-04-02T00:05:14.000Z" - }, - "events": [ - { - "uuid": "47432f13-f5b6-422e-acc6-6b9aff502f40", - "start": { - "$date": "2021-04-01T23:16:00.000Z" - }, - "end": { - "$date": "2021-04-02T00:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5a12bcb8-5eff-4c26-ab95-ce43f0193e8c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T23:29:47.000Z" - }, - "end": { - "$date": "2021-04-01T23:50:10.000Z" - }, - "events": [ - { - "uuid": "53ec7de8-a8ee-4a93-b5fe-c89c565244a4", - "start": { - "$date": "2021-04-01T23:29:47.000Z" - }, - "end": { - "$date": "2021-04-01T23:50:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "db7e3ccb-f287-4977-bba5-4e15baa65ab5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-01T23:51:10.000Z" - }, - "end": { - "$date": "2021-04-02T00:46:26.000Z" - }, - "events": [ - { - "uuid": "c8df35b9-7ea0-4214-bebe-3aefa14038a1", - "start": { - "$date": "2021-04-01T23:51:10.000Z" - }, - "end": { - "$date": "2021-04-02T00:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c39d0115-532b-4f8f-ab7c-f588466d0946", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-02T00:48:54.000Z" - }, - "end": { - "$date": "2021-04-02T01:27:42.000Z" - }, - "events": [ - { - "uuid": "10c58d32-aa91-4486-ae2e-569bd81f7e20", - "start": { - "$date": "2021-04-02T00:48:54.000Z" - }, - "end": { - "$date": "2021-04-02T01:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5c06c5c3-d8cd-4bbf-8063-fa3439a53366", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-02T01:03:39.000Z" - }, - "end": { - "$date": "2021-04-02T01:30:30.000Z" - }, - "events": [ - { - "uuid": "2a8d9638-0ab2-494b-87e4-b6beb6045ac4", - "start": { - "$date": "2021-04-02T01:03:39.000Z" - }, - "end": { - "$date": "2021-04-02T01:30:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2ef8a6fd-b188-4abc-b797-69acb393ced7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-02T01:07:06.000Z" - }, - "end": { - "$date": "2021-04-02T01:32:26.000Z" - }, - "events": [ - { - "uuid": "47459640-19a6-4316-8f62-588309a6a844", - "start": { - "$date": "2021-04-02T01:07:06.000Z" - }, - "end": { - "$date": "2021-04-02T01:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0e8798d1-f8f0-4465-a370-2c8a04b58438", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-02T01:08:27.000Z" - }, - "end": { - "$date": "2021-04-02T01:39:18.000Z" - }, - "events": [ - { - "uuid": "c6a87956-61dd-4c1f-9579-aaf04143a0a5", - "start": { - "$date": "2021-04-02T01:08:27.000Z" - }, - "end": { - "$date": "2021-04-02T01:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "84c92452-f200-4972-b78d-d585c7ee49fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-02T01:08:54.000Z" - }, - "end": { - "$date": "2021-04-02T01:36:31.000Z" - }, - "events": [ - { - "uuid": "b4a4b1c0-311b-4749-8ee5-5801bc8ddadc", - "start": { - "$date": "2021-04-02T01:08:54.000Z" - }, - "end": { - "$date": "2021-04-02T01:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "521b7622-a766-458c-85a4-315894ccbbd3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-02T01:30:06.000Z" - }, - "end": { - "$date": "2021-04-02T05:50:08.000Z" - }, - "events": [ - { - "uuid": "1ca06aed-074f-4e32-8863-4ca02a1a7921", - "start": { - "$date": "2021-04-02T01:30:06.000Z" - }, - "end": { - "$date": "2021-04-02T05:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0c506aa-4702-4eb0-8b59-78c3ad2d2032", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-02T01:35:11.000Z" - }, - "end": { - "$date": "2021-04-02T06:45:16.000Z" - }, - "events": [ - { - "uuid": "e713bbc5-fa5d-4b3e-a28e-10a839510043", - "start": { - "$date": "2021-04-02T01:35:11.000Z" - }, - "end": { - "$date": "2021-04-02T06:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "863430f4-7f97-4e8c-bfd2-8e480c56524f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-02T01:38:07.000Z" - }, - "end": { - "$date": "2021-04-02T03:16:40.000Z" - }, - "events": [ - { - "uuid": "aa3cefac-c4b9-4765-91f4-493d2f0b2558", - "start": { - "$date": "2021-04-02T01:38:07.000Z" - }, - "end": { - "$date": "2021-04-02T03:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6188933c-73ce-4c48-a908-f6014cd0e819", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-02T01:42:49.000Z" - }, - "end": { - "$date": "2021-04-02T02:52:42.000Z" - }, - "events": [ - { - "uuid": "ce4f6632-5e58-4ca4-904d-748899f85a4d", - "start": { - "$date": "2021-04-02T01:42:49.000Z" - }, - "end": { - "$date": "2021-04-02T02:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fe13b75a-0416-4383-8e1d-718ac3fece89", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-02T01:50:58.000Z" - }, - "end": { - "$date": "2021-04-02T07:12:13.000Z" - }, - "events": [ - { - "uuid": "e3036be7-8879-497a-bd1f-ac3d6566f88f", - "start": { - "$date": "2021-04-02T01:50:58.000Z" - }, - "end": { - "$date": "2021-04-02T07:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "0c68007f-440f-46a8-bc26-e2d7ce0427dd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-02T02:13:34.000Z" - }, - "end": { - "$date": "2021-04-02T04:50:58.000Z" - }, - "events": [ - { - "uuid": "61266573-0926-485a-bb6f-fb9dda7da740", - "start": { - "$date": "2021-04-02T02:13:34.000Z" - }, - "end": { - "$date": "2021-04-02T04:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "eeea04ca-47af-4abb-84e9-c310c07e8de0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-02T02:28:30.000Z" - }, - "end": { - "$date": "2021-04-02T04:50:41.000Z" - }, - "events": [ - { - "uuid": "2448ff94-b871-46a0-9e8c-8c5b9fd418c7", - "start": { - "$date": "2021-04-02T02:28:30.000Z" - }, - "end": { - "$date": "2021-04-02T04:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2272e8c1-e85d-44fa-a4c5-9cb92af54ed4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-02T02:31:00.000Z" - }, - "end": { - "$date": "2021-04-02T02:42:47.000Z" - }, - "events": [ - { - "uuid": "430dc256-a870-4dd5-a117-8685af18382e", - "start": { - "$date": "2021-04-02T02:31:00.000Z" - }, - "end": { - "$date": "2021-04-02T02:42:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bf1f5641-bdb4-49f1-9c85-4073c5be9496", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-02T02:34:21.000Z" - }, - "end": { - "$date": "2021-04-02T05:52:53.000Z" - }, - "events": [ - { - "uuid": "029a5370-0ed5-44f5-af57-4909bc1e0f4d", - "start": { - "$date": "2021-04-02T02:34:21.000Z" - }, - "end": { - "$date": "2021-04-02T05:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "06d421d0-d7d8-4229-ac84-78dd8a7b6340", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-02T02:53:07.000Z" - }, - "end": { - "$date": "2021-04-02T04:50:27.000Z" - }, - "events": [ - { - "uuid": "eda5a5b2-75cc-4cbf-b60a-6d2dfa26bf19", - "start": { - "$date": "2021-04-02T02:53:07.000Z" - }, - "end": { - "$date": "2021-04-02T04:50:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e06e18f7-3129-4722-a910-f13b285ede93", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-02T03:00:22.000Z" - }, - "end": { - "$date": "2021-04-02T07:14:36.000Z" - }, - "events": [ - { - "uuid": "1dfcd314-62ce-42fd-98a1-46e6d33712cc", - "start": { - "$date": "2021-04-02T03:00:22.000Z" - }, - "end": { - "$date": "2021-04-02T06:30:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cff66e5d-85c0-422a-89d8-4ddd6ca65356", - "start": { - "$date": "2021-04-02T06:30:22.000Z" - }, - "end": { - "$date": "2021-04-02T06:34:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "367cbb91-686f-4a03-85cc-fdb9baca1e3d", - "start": { - "$date": "2021-04-02T06:34:22.000Z" - }, - "end": { - "$date": "2021-04-02T07:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "7a9a803d-7888-4c8c-96b6-348facbf9855", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-02T04:11:22.000Z" - }, - "end": { - "$date": "2021-04-02T05:35:54.000Z" - }, - "events": [ - { - "uuid": "298dc51e-1871-4051-a263-64f6a551972f", - "start": { - "$date": "2021-04-02T04:11:22.000Z" - }, - "end": { - "$date": "2021-04-02T05:35:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9bd67fb0-2dfa-4dec-9c97-fdee747fc719", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-02T04:42:33.000Z" - }, - "end": { - "$date": "2021-04-02T05:49:31.000Z" - }, - "events": [ - { - "uuid": "4cc0b857-91dd-40a2-a86f-03686eafeaec", - "start": { - "$date": "2021-04-02T04:42:33.000Z" - }, - "end": { - "$date": "2021-04-02T05:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4b7b56f9-3a67-46f1-adeb-e89aceb8073d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-02T04:50:57.000Z" - }, - "end": { - "$date": "2021-04-02T05:40:29.000Z" - }, - "events": [ - { - "uuid": "26003689-4caa-4f98-adfc-27b9d74e158c", - "start": { - "$date": "2021-04-02T04:50:57.000Z" - }, - "end": { - "$date": "2021-04-02T05:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "04496114-b091-4347-9c50-b79f56da5683", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-02T04:51:27.000Z" - }, - "end": { - "$date": "2021-04-02T06:10:15.000Z" - }, - "events": [ - { - "uuid": "f809b198-b564-4d29-9bda-753c577c8073", - "start": { - "$date": "2021-04-02T04:51:27.000Z" - }, - "end": { - "$date": "2021-04-02T06:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "f71112dd-5fc3-4f4c-9856-50424dfa1ecf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-02T05:27:43.000Z" - }, - "end": { - "$date": "2021-04-02T05:29:57.000Z" - }, - "events": [ - { - "uuid": "e5019ed0-ce74-4b22-bf03-1247db9fac94", - "start": { - "$date": "2021-04-02T05:27:43.000Z" - }, - "end": { - "$date": "2021-04-02T05:29:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ae9e8cc0-e968-4ed9-8cd3-63a1e8bb3de8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-02T05:33:06.000Z" - }, - "end": { - "$date": "2021-04-02T06:41:43.000Z" - }, - "events": [ - { - "uuid": "43f9b3dc-9372-4a8e-b131-ccd41e5d8235", - "start": { - "$date": "2021-04-02T05:33:06.000Z" - }, - "end": { - "$date": "2021-04-02T06:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbd047dd-1424-4fff-af23-cc66719ae08b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-02T07:13:07.000Z" - }, - "end": { - "$date": "2021-04-02T07:42:59.000Z" - }, - "events": [ - { - "uuid": "4074bcd1-702d-44e7-bb5c-8394d0e4c3df", - "start": { - "$date": "2021-04-02T07:13:07.000Z" - }, - "end": { - "$date": "2021-04-02T07:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbbaaab8-35d0-43af-b854-8f4db0b0c995", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-02T07:44:18.000Z" - }, - "end": { - "$date": "2021-04-02T07:47:58.000Z" - }, - "events": [ - { - "uuid": "0ba40534-9135-4da5-92c9-c86754624342", - "start": { - "$date": "2021-04-02T07:44:18.000Z" - }, - "end": { - "$date": "2021-04-02T07:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6af25995-e575-411f-b08c-c3d0a53c7823", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-02T15:00:05.000Z" - }, - "end": { - "$date": "2021-04-02T16:07:13.000Z" - }, - "events": [ - { - "uuid": "609b750f-f1bf-42ce-8cb1-77bd1df22a49", - "start": { - "$date": "2021-04-02T15:00:05.000Z" - }, - "end": { - "$date": "2021-04-02T16:05:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5bcb3e9a-18b4-499d-8bfd-2603f082e719", - "start": { - "$date": "2021-04-02T16:05:05.000Z" - }, - "end": { - "$date": "2021-04-02T16:07:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "23cb5b4d-7b91-4927-8edf-17931ac0e479", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-02T17:00:28.000Z" - }, - "end": { - "$date": "2021-04-02T17:40:26.000Z" - }, - "events": [ - { - "uuid": "fc00ec96-d4bd-4062-b63d-00eff4f97e6c", - "start": { - "$date": "2021-04-02T17:00:28.000Z" - }, - "end": { - "$date": "2021-04-02T17:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3a01208a-fe58-46f6-a963-c14dae0671b3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-02T17:41:22.000Z" - }, - "end": { - "$date": "2021-04-02T20:25:03.000Z" - }, - "events": [ - { - "uuid": "f6bd0ce2-606e-4af1-91ef-14de1bc9a130", - "start": { - "$date": "2021-04-02T17:41:22.000Z" - }, - "end": { - "$date": "2021-04-02T20:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "07bcb4dd-fd51-4aa8-9c06-83619e446fd7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-02T19:47:38.000Z" - }, - "end": { - "$date": "2021-04-02T22:38:02.000Z" - }, - "events": [ - { - "uuid": "edfcf9c4-8636-4871-a6af-b652e3ef05bd", - "start": { - "$date": "2021-04-02T19:47:38.000Z" - }, - "end": { - "$date": "2021-04-02T22:38:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "43e39b0b-78d9-4249-8f09-1d1cf2e9c5f2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-02T19:58:17.000Z" - }, - "end": { - "$date": "2021-04-02T20:36:39.000Z" - }, - "events": [ - { - "uuid": "f1c40855-5709-4ac6-9463-78994c3dade3", - "start": { - "$date": "2021-04-02T19:58:17.000Z" - }, - "end": { - "$date": "2021-04-02T20:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e2d68129-582b-44b3-834c-b17d23a5517f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-02T20:25:34.000Z" - }, - "end": { - "$date": "2021-04-02T20:54:56.000Z" - }, - "events": [ - { - "uuid": "eca0e0b4-72f4-454a-a2c3-ce548dbbcf2c", - "start": { - "$date": "2021-04-02T20:25:34.000Z" - }, - "end": { - "$date": "2021-04-02T20:54:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0dd5bc90-9f08-41ae-845f-8aeb22038077", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-02T20:38:10.000Z" - }, - "end": { - "$date": "2021-04-03T00:20:29.000Z" - }, - "events": [ - { - "uuid": "c22dc3b2-8007-48e9-8cb4-f72e565a3a6d", - "start": { - "$date": "2021-04-02T20:38:10.000Z" - }, - "end": { - "$date": "2021-04-03T00:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "82488ae3-1745-4a0e-bf04-684881a35ede", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-02T20:55:22.000Z" - }, - "end": { - "$date": "2021-04-02T21:47:56.000Z" - }, - "events": [ - { - "uuid": "eaa72e9f-8bc1-41ed-a0bf-450e1faa337e", - "start": { - "$date": "2021-04-02T20:55:22.000Z" - }, - "end": { - "$date": "2021-04-02T21:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "745fb60a-05d2-4802-8822-c8d9f3639b1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-02T21:00:34.000Z" - }, - "end": { - "$date": "2021-04-02T21:23:09.000Z" - }, - "events": [ - { - "uuid": "1ed6beef-0d8c-48e3-a6a6-c66424cb8537", - "start": { - "$date": "2021-04-02T21:00:34.000Z" - }, - "end": { - "$date": "2021-04-02T21:23:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "27db4254-5f21-4492-9d87-6b908426be0b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-02T21:27:41.000Z" - }, - "end": { - "$date": "2021-04-02T22:49:43.000Z" - }, - "events": [ - { - "uuid": "cc030941-b9fb-4f5a-a032-7e5bb152794e", - "start": { - "$date": "2021-04-02T21:27:41.000Z" - }, - "end": { - "$date": "2021-04-02T22:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71dd54d2-1b64-4a22-8f06-02c5560d571b", - "uuid": "e64c1a2f-1d7b-4863-9d53-51bd7aa0611b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-02T22:03:04.000Z" - }, - "end": { - "$date": "2021-04-02T22:42:29.000Z" - }, - "events": [ - { - "uuid": "32fc0a02-6ea8-4db7-b8b4-8eed7c8bbca4", - "start": { - "$date": "2021-04-02T22:03:04.000Z" - }, - "end": { - "$date": "2021-04-02T22:24:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6a2b04a-2f03-428b-88df-dc4505ac8e5c", - "start": { - "$date": "2021-04-02T22:24:04.000Z" - }, - "end": { - "$date": "2021-04-02T22:25:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15321ea5-5baa-4922-8f73-3965b67608fb", - "start": { - "$date": "2021-04-02T22:25:04.000Z" - }, - "end": { - "$date": "2021-04-02T22:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "278cb8c7-20b0-4076-a1c8-284e744fa93b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-02T22:04:41.000Z" - }, - "end": { - "$date": "2021-04-03T00:31:28.000Z" - }, - "events": [ - { - "uuid": "f7c562b0-2094-48a6-b977-78e74f9c523c", - "start": { - "$date": "2021-04-02T22:04:41.000Z" - }, - "end": { - "$date": "2021-04-03T00:29:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e30d974f-c4ff-42e8-be3d-b8828f8a638e", - "start": { - "$date": "2021-04-03T00:29:41.000Z" - }, - "end": { - "$date": "2021-04-03T00:31:28.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "005e4bea-b5eb-4aac-8eb5-73ca29f1d1a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-02T22:39:51.000Z" - }, - "end": { - "$date": "2021-04-02T23:17:21.000Z" - }, - "events": [ - { - "uuid": "075fc854-ac84-47f9-93cf-2cd1ca1b5094", - "start": { - "$date": "2021-04-02T22:39:51.000Z" - }, - "end": { - "$date": "2021-04-02T23:17:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ec73297a-0e6a-4e2b-9f32-f056a5a1f129", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-02T22:43:49.000Z" - }, - "end": { - "$date": "2021-04-02T23:58:35.000Z" - }, - "events": [ - { - "uuid": "f91da94b-fd6d-45fe-82ae-b37275ee6e8a", - "start": { - "$date": "2021-04-02T22:43:49.000Z" - }, - "end": { - "$date": "2021-04-02T23:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "1987ebde-0e23-4359-9976-e108d06d85e4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T01:06:30.000Z" - }, - "end": { - "$date": "2021-04-03T02:04:07.000Z" - }, - "events": [ - { - "uuid": "60249078-9f22-4f3d-85eb-d5b79e4f4758", - "start": { - "$date": "2021-04-03T01:06:30.000Z" - }, - "end": { - "$date": "2021-04-03T02:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a169e811-e624-4e54-b583-7f655c3ae8d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-03T01:10:55.000Z" - }, - "end": { - "$date": "2021-04-03T04:07:35.000Z" - }, - "events": [ - { - "uuid": "59e4295f-2916-4783-82a2-6e521d2afca0", - "start": { - "$date": "2021-04-03T01:10:55.000Z" - }, - "end": { - "$date": "2021-04-03T04:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "07d40c71-bba5-4acb-815b-136f2bb9c016", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-03T01:12:49.000Z" - }, - "end": { - "$date": "2021-04-03T04:09:51.000Z" - }, - "events": [ - { - "uuid": "697e49c9-248d-4da4-acd0-b495dd45bf17", - "start": { - "$date": "2021-04-03T01:12:49.000Z" - }, - "end": { - "$date": "2021-04-03T04:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "31dae10a-466c-4cb3-8ffb-365261ed1a86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T01:33:13.000Z" - }, - "end": { - "$date": "2021-04-03T01:52:20.000Z" - }, - "events": [ - { - "uuid": "115d6f82-9e84-417f-a7c4-d71d88693310", - "start": { - "$date": "2021-04-03T01:33:13.000Z" - }, - "end": { - "$date": "2021-04-03T01:44:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa694e94-7bfc-4526-8391-a1313b120c09", - "start": { - "$date": "2021-04-03T01:44:13.000Z" - }, - "end": { - "$date": "2021-04-03T01:48:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a004d4b-b6f4-4c93-ae92-380c0ffd0ed6", - "start": { - "$date": "2021-04-03T01:48:13.000Z" - }, - "end": { - "$date": "2021-04-03T01:52:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "5c7327aa-ae6d-417a-8a1c-d6e9991819d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T01:52:55.000Z" - }, - "end": { - "$date": "2021-04-03T02:38:16.000Z" - }, - "events": [ - { - "uuid": "2568c9c8-8554-45d1-bb30-53c091cc4b19", - "start": { - "$date": "2021-04-03T01:52:55.000Z" - }, - "end": { - "$date": "2021-04-03T02:38:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "9d70e1be-b463-49e6-a577-19da8c0f00ca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T02:04:37.000Z" - }, - "end": { - "$date": "2021-04-03T02:37:58.000Z" - }, - "events": [ - { - "uuid": "1af0e5ac-f67e-4514-9482-04c83a9369c8", - "start": { - "$date": "2021-04-03T02:04:37.000Z" - }, - "end": { - "$date": "2021-04-03T02:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c932078c-bda2-4655-ac4b-cd17479e4be9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T02:39:53.000Z" - }, - "end": { - "$date": "2021-04-03T03:24:29.000Z" - }, - "events": [ - { - "uuid": "0730ffa6-7dd6-4d95-9334-3d0195725bff", - "start": { - "$date": "2021-04-03T02:39:53.000Z" - }, - "end": { - "$date": "2021-04-03T03:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "28edf7e8-e12a-4575-93f9-29883d50d8c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T02:40:51.000Z" - }, - "end": { - "$date": "2021-04-03T03:24:28.000Z" - }, - "events": [ - { - "uuid": "799c1fe7-d4ca-4436-9926-84d8fa5e5175", - "start": { - "$date": "2021-04-03T02:40:51.000Z" - }, - "end": { - "$date": "2021-04-03T03:24:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9e5daa56-3d85-4780-b440-052380997475", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T02:53:06.000Z" - }, - "end": { - "$date": "2021-04-03T08:11:11.000Z" - }, - "events": [ - { - "uuid": "db4a6548-a162-4eae-b626-67b327fd9c8f", - "start": { - "$date": "2021-04-03T02:53:06.000Z" - }, - "end": { - "$date": "2021-04-03T08:11:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "3dde6f2c-1e43-476a-b57e-a455f7ac4dd4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T03:28:20.000Z" - }, - "end": { - "$date": "2021-04-03T04:30:42.000Z" - }, - "events": [ - { - "uuid": "6c710a9a-e865-4945-b2d9-0d8b478cb37f", - "start": { - "$date": "2021-04-03T03:28:20.000Z" - }, - "end": { - "$date": "2021-04-03T04:30:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "59d2e5e9-f474-4566-a460-40370b546d86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T03:31:33.000Z" - }, - "end": { - "$date": "2021-04-03T04:30:35.000Z" - }, - "events": [ - { - "uuid": "d8a327e3-2029-4353-8584-ca52dbb4624e", - "start": { - "$date": "2021-04-03T03:31:33.000Z" - }, - "end": { - "$date": "2021-04-03T04:30:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "504aa712-6da0-4fe0-9ca7-9679dcefd830", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T04:00:11.000Z" - }, - "end": { - "$date": "2021-04-03T04:48:22.000Z" - }, - "events": [ - { - "uuid": "5a5ef454-b9fa-4c5c-815e-5455de0d4d7d", - "start": { - "$date": "2021-04-03T04:00:11.000Z" - }, - "end": { - "$date": "2021-04-03T04:48:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "7a4a3273-5b3e-46cf-ac9c-1edd7d32636a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-03T04:07:40.000Z" - }, - "end": { - "$date": "2021-04-03T06:28:07.000Z" - }, - "events": [ - { - "uuid": "1cac47c6-43da-468b-b08a-a0aff53a902d", - "start": { - "$date": "2021-04-03T04:07:40.000Z" - }, - "end": { - "$date": "2021-04-03T06:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b9c32539-1095-4186-bdda-017f9e9cb836", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-03T06:27:23.000Z" - }, - "end": { - "$date": "2021-04-03T07:52:04.000Z" - }, - "events": [ - { - "uuid": "fc009072-8ced-48cd-87b5-e4de016d3366", - "start": { - "$date": "2021-04-03T06:27:23.000Z" - }, - "end": { - "$date": "2021-04-03T07:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "dcdc47e0-55d5-4bdd-880b-88d431462d65", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-03T06:27:55.000Z" - }, - "end": { - "$date": "2021-04-03T10:58:07.000Z" - }, - "events": [ - { - "uuid": "e08e3e1b-f7bb-4e4d-b0b3-19bb0f6514bc", - "start": { - "$date": "2021-04-03T06:27:55.000Z" - }, - "end": { - "$date": "2021-04-03T10:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "82efc43d-c1e8-4459-9567-992af2bd742c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T04:31:04.000Z" - }, - "end": { - "$date": "2021-04-03T04:36:35.000Z" - }, - "events": [ - { - "uuid": "5b2fc286-0abf-4923-a636-75427ea631c4", - "start": { - "$date": "2021-04-03T04:31:04.000Z" - }, - "end": { - "$date": "2021-04-03T04:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "cdae4fd3-cf41-470a-86e5-f1d4e1ce947f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-03T04:42:06.000Z" - }, - "end": { - "$date": "2021-04-03T05:37:39.000Z" - }, - "events": [ - { - "uuid": "aaf1117f-e48c-41d0-a56c-91c5b8386978", - "start": { - "$date": "2021-04-03T04:42:06.000Z" - }, - "end": { - "$date": "2021-04-03T05:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3715b773-8dbb-4058-881a-d17af1ef6cca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T05:35:51.000Z" - }, - "end": { - "$date": "2021-04-03T08:00:59.000Z" - }, - "events": [ - { - "uuid": "b0f24078-d74f-4737-a4f3-c7fb1b93962a", - "start": { - "$date": "2021-04-03T05:35:51.000Z" - }, - "end": { - "$date": "2021-04-03T08:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "9b796795-08ae-4abb-83f2-d49cde32a56a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T05:10:51.000Z" - }, - "end": { - "$date": "2021-04-03T07:08:09.000Z" - }, - "events": [ - { - "uuid": "731fe359-40e0-46fc-8e23-ccf16d9b1cb2", - "start": { - "$date": "2021-04-03T05:10:51.000Z" - }, - "end": { - "$date": "2021-04-03T07:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76f3cd1e-96f9-476f-a060-df422f547983", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-03T05:36:33.000Z" - }, - "end": { - "$date": "2021-04-03T05:57:05.000Z" - }, - "events": [ - { - "uuid": "bbc2c628-0848-4919-8d72-edba1351b6a2", - "start": { - "$date": "2021-04-03T05:36:33.000Z" - }, - "end": { - "$date": "2021-04-03T05:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ed80af1-bae9-41a7-af29-327951a4b2f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-03T06:01:38.000Z" - }, - "end": { - "$date": "2021-04-03T06:32:54.000Z" - }, - "events": [ - { - "uuid": "9a3c85e6-fceb-4d9b-a3d7-eb5b6a7a34bd", - "start": { - "$date": "2021-04-03T06:01:38.000Z" - }, - "end": { - "$date": "2021-04-03T06:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a641e31-64a4-4f40-ab54-e7dd93e8b04c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-03T06:39:34.000Z" - }, - "end": { - "$date": "2021-04-03T07:02:52.000Z" - }, - "events": [ - { - "uuid": "f079b062-c355-4b16-a05b-a7f796067df1", - "start": { - "$date": "2021-04-03T06:39:34.000Z" - }, - "end": { - "$date": "2021-04-03T07:02:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32493a4d-7b84-42b6-8ae5-2477f2f1584a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-03T07:12:35.000Z" - }, - "end": { - "$date": "2021-04-03T07:34:51.000Z" - }, - "events": [ - { - "uuid": "a6960944-34d8-4ce7-b3c8-bf67f6596810", - "start": { - "$date": "2021-04-03T07:12:35.000Z" - }, - "end": { - "$date": "2021-04-03T07:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0abe9059-86a1-4d82-b63e-cbd378525198", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-03T07:48:06.000Z" - }, - "end": { - "$date": "2021-04-03T08:04:12.000Z" - }, - "events": [ - { - "uuid": "76cedaae-0a6b-4437-bc4d-24703142c608", - "start": { - "$date": "2021-04-03T07:48:06.000Z" - }, - "end": { - "$date": "2021-04-03T08:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89258913-6349-4fbc-9a87-82bc5e4a1cfd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-03T08:19:02.000Z" - }, - "end": { - "$date": "2021-04-03T08:38:28.000Z" - }, - "events": [ - { - "uuid": "c3c159b2-cc96-4210-a732-a42586a44415", - "start": { - "$date": "2021-04-03T08:19:02.000Z" - }, - "end": { - "$date": "2021-04-03T08:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "df0682b5-a55e-4c74-b620-0203ec4d5262", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T08:11:57.000Z" - }, - "end": { - "$date": "2021-04-03T08:21:58.000Z" - }, - "events": [ - { - "uuid": "d1558f5c-9607-4673-a4ed-7cbcba9db81e", - "start": { - "$date": "2021-04-03T08:11:57.000Z" - }, - "end": { - "$date": "2021-04-03T08:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "bfd21265-754a-4566-a003-59a58e47080e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T14:03:38.000Z" - }, - "end": { - "$date": "2021-04-03T14:28:12.000Z" - }, - "events": [ - { - "uuid": "da0c40e6-0bce-4001-83f3-86f0732f7230", - "start": { - "$date": "2021-04-03T14:03:38.000Z" - }, - "end": { - "$date": "2021-04-03T14:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "adc81f59-2f7e-48ec-aae8-6608039960c1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T15:02:21.000Z" - }, - "end": { - "$date": "2021-04-03T15:36:07.000Z" - }, - "events": [ - { - "uuid": "dc6d9de4-250e-4130-9bf7-0d990f6add00", - "start": { - "$date": "2021-04-03T15:02:21.000Z" - }, - "end": { - "$date": "2021-04-03T15:36:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "9414c719-5e68-4d96-a0a1-a8cb3d1d412d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T15:04:57.000Z" - }, - "end": { - "$date": "2021-04-03T15:38:20.000Z" - }, - "events": [ - { - "uuid": "4e467f47-2668-44d1-96c9-5db50cfa5eaa", - "start": { - "$date": "2021-04-03T15:04:57.000Z" - }, - "end": { - "$date": "2021-04-03T15:38:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "368f1a6f-8b6e-4898-bf5a-59fcbbd1f6d0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T15:38:34.000Z" - }, - "end": { - "$date": "2021-04-03T18:36:03.000Z" - }, - "events": [ - { - "uuid": "69ceff37-955a-4bd2-a8a5-4c431ed87d66", - "start": { - "$date": "2021-04-03T15:38:34.000Z" - }, - "end": { - "$date": "2021-04-03T18:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6392307-d78d-4d32-aacd-d52ba7e71d27", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T16:23:32.000Z" - }, - "end": { - "$date": "2021-04-03T16:54:16.000Z" - }, - "events": [ - { - "uuid": "dbc28c88-7c0d-4dab-b06d-647dca8ebd78", - "start": { - "$date": "2021-04-03T16:23:32.000Z" - }, - "end": { - "$date": "2021-04-03T16:46:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d832e7d3-e79b-46b8-ab5a-dc0296abba59", - "start": { - "$date": "2021-04-03T16:46:32.000Z" - }, - "end": { - "$date": "2021-04-03T16:51:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b9dff3c-5355-41f6-9c4b-80339e691275", - "start": { - "$date": "2021-04-03T16:51:32.000Z" - }, - "end": { - "$date": "2021-04-03T16:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cf200e75-47eb-47d6-8108-bc0d1e35ddad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T16:40:51.000Z" - }, - "end": { - "$date": "2021-04-03T16:44:41.000Z" - }, - "events": [ - { - "uuid": "6fbe0a4f-d6bd-44e9-9b28-c769a06bab5a", - "start": { - "$date": "2021-04-03T16:40:51.000Z" - }, - "end": { - "$date": "2021-04-03T16:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f3da6f59-9837-4ced-b10c-45c4213251b7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T16:44:57.000Z" - }, - "end": { - "$date": "2021-04-03T17:53:02.000Z" - }, - "events": [ - { - "uuid": "496b5679-72ef-438d-af31-d00521a10e5a", - "start": { - "$date": "2021-04-03T16:44:57.000Z" - }, - "end": { - "$date": "2021-04-03T17:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b222f46e-f4ba-4787-858b-47d19171f679", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T17:19:56.000Z" - }, - "end": { - "$date": "2021-04-03T17:27:06.000Z" - }, - "events": [ - { - "uuid": "ab9cad1e-1eae-4b79-b257-95b052930782", - "start": { - "$date": "2021-04-03T17:19:56.000Z" - }, - "end": { - "$date": "2021-04-03T17:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2acfe23b-a4cc-4079-abe9-938aa2a9024d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T17:29:47.000Z" - }, - "end": { - "$date": "2021-04-03T17:37:57.000Z" - }, - "events": [ - { - "uuid": "cc4b6f72-a94c-49e6-ad1d-0360304c2c5a", - "start": { - "$date": "2021-04-03T17:29:47.000Z" - }, - "end": { - "$date": "2021-04-03T17:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a512ed56-3cb1-4a2e-b82c-192a624b8c51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T18:17:35.000Z" - }, - "end": { - "$date": "2021-04-03T18:46:51.000Z" - }, - "events": [ - { - "uuid": "dc8539d0-eec7-4d57-854d-f971f6fff967", - "start": { - "$date": "2021-04-03T18:17:35.000Z" - }, - "end": { - "$date": "2021-04-03T18:46:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "5c378527-c8b4-40b0-a398-fddb2a8cc38a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T18:47:28.000Z" - }, - "end": { - "$date": "2021-04-03T20:40:27.000Z" - }, - "events": [ - { - "uuid": "d661ad4f-7d48-4d23-b0ab-b4b69e214640", - "start": { - "$date": "2021-04-03T18:47:28.000Z" - }, - "end": { - "$date": "2021-04-03T20:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c87b769c-d31c-41bb-9f5d-829d6ee2e562", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T18:47:55.000Z" - }, - "end": { - "$date": "2021-04-03T18:51:17.000Z" - }, - "events": [ - { - "uuid": "7cc707c9-a59c-4c9c-b9d2-f0fe66149e20", - "start": { - "$date": "2021-04-03T18:47:55.000Z" - }, - "end": { - "$date": "2021-04-03T18:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63c3e3d9-0527-4ae4-8882-318da903408f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T19:26:21.000Z" - }, - "end": { - "$date": "2021-04-03T20:02:12.000Z" - }, - "events": [ - { - "uuid": "1d780275-3e91-4c2e-8cb1-83570d6493d6", - "start": { - "$date": "2021-04-03T19:26:21.000Z" - }, - "end": { - "$date": "2021-04-03T20:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "73de3d83-e41c-461d-a271-66f65e4fd7ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T19:40:16.000Z" - }, - "end": { - "$date": "2021-04-03T20:04:41.000Z" - }, - "events": [ - { - "uuid": "2147d1cd-72a0-4ff6-b2fa-71f0e48118e4", - "start": { - "$date": "2021-04-03T19:40:16.000Z" - }, - "end": { - "$date": "2021-04-03T20:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71dd54d2-1b64-4a22-8f06-02c5560d571b", - "uuid": "e1de9b9c-4c71-45e1-a25c-c754f30c213f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-03T19:44:42.000Z" - }, - "end": { - "$date": "2021-04-03T20:27:51.000Z" - }, - "events": [ - { - "uuid": "9fe6a096-52f0-476c-a5fd-32278a7059be", - "start": { - "$date": "2021-04-03T19:44:42.000Z" - }, - "end": { - "$date": "2021-04-03T20:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c228ce7b-db63-493f-900b-107827b88434", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-03T19:46:35.000Z" - }, - "end": { - "$date": "2021-04-03T19:47:46.000Z" - }, - "events": [ - { - "uuid": "390be1fe-497c-4aa7-b470-741d1ed95129", - "start": { - "$date": "2021-04-03T19:46:35.000Z" - }, - "end": { - "$date": "2021-04-03T19:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "3e351a0b-63fc-4b54-b8cb-b5fe43f93f85", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T20:01:18.000Z" - }, - "end": { - "$date": "2021-04-03T20:40:16.000Z" - }, - "events": [ - { - "uuid": "58ddfdf3-69e2-401f-a5f1-94fcff5e67bf", - "start": { - "$date": "2021-04-03T20:01:18.000Z" - }, - "end": { - "$date": "2021-04-03T20:40:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1ecb294e-4be4-4185-a5bb-0fb12b0f3efe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T23:15:28.000Z" - }, - "end": { - "$date": "2021-04-03T23:25:10.000Z" - }, - "events": [ - { - "uuid": "b1453fa2-2c5d-403b-85df-b19e3bf5ff34", - "start": { - "$date": "2021-04-03T23:15:28.000Z" - }, - "end": { - "$date": "2021-04-04T01:30:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd9e015d-1177-4153-860b-61b0e179549a", - "start": { - "$date": "2021-04-04T01:30:28.000Z" - }, - "end": { - "$date": "2021-04-03T23:25:10.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5e8cfa8c-7066-4dd6-a8ce-6105ef58dc36", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T20:41:15.000Z" - }, - "end": { - "$date": "2021-04-03T21:53:40.000Z" - }, - "events": [ - { - "uuid": "93968003-bb43-44f0-8082-79ffc0ed9ccd", - "start": { - "$date": "2021-04-03T20:41:15.000Z" - }, - "end": { - "$date": "2021-04-03T21:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "717194dc-2a33-4f2a-8860-f6cebb0b8093", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-03T20:51:46.000Z" - }, - "end": { - "$date": "2021-04-04T00:06:34.000Z" - }, - "events": [ - { - "uuid": "d624a056-5045-4df6-88da-a1b645d24b50", - "start": { - "$date": "2021-04-03T20:51:46.000Z" - }, - "end": { - "$date": "2021-04-04T00:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "33567907-756e-40f6-bbb0-1b83f74d396c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-03T21:32:02.000Z" - }, - "end": { - "$date": "2021-04-04T00:06:06.000Z" - }, - "events": [ - { - "uuid": "8c764b48-f70e-4370-9751-2dae1b95bedd", - "start": { - "$date": "2021-04-03T21:32:02.000Z" - }, - "end": { - "$date": "2021-04-04T00:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "03d15b03-1a21-456c-9a5b-4b36a848118b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T22:19:02.000Z" - }, - "end": { - "$date": "2021-04-03T23:08:54.000Z" - }, - "events": [ - { - "uuid": "ec1769d5-dd73-43a7-af53-41a0efa350cb", - "start": { - "$date": "2021-04-03T22:19:02.000Z" - }, - "end": { - "$date": "2021-04-03T23:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b36bafe8-a63a-4c9e-9c64-2131d7535b5e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T23:17:15.000Z" - }, - "end": { - "$date": "2021-04-03T23:45:28.000Z" - }, - "events": [ - { - "uuid": "f1ca7db6-8d69-47df-bfbc-6c7759fddadd", - "start": { - "$date": "2021-04-03T23:17:15.000Z" - }, - "end": { - "$date": "2021-04-03T23:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "203e41cc-bb30-4977-8f80-53957587e3f4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-03T23:22:11.000Z" - }, - "end": { - "$date": "2021-04-04T02:09:25.000Z" - }, - "events": [ - { - "uuid": "6f8651f7-e631-4051-b126-b5dfe18997f8", - "start": { - "$date": "2021-04-03T23:22:11.000Z" - }, - "end": { - "$date": "2021-04-04T00:23:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a9b03ca-3271-46f7-9abb-0ef051dff625", - "start": { - "$date": "2021-04-04T00:23:11.000Z" - }, - "end": { - "$date": "2021-04-04T00:28:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "67739899-5654-42f0-a9af-fbc978f9d6c2", - "start": { - "$date": "2021-04-04T00:28:11.000Z" - }, - "end": { - "$date": "2021-04-04T00:53:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0b77d4f1-1e50-426c-b60a-a9507623d309", - "start": { - "$date": "2021-04-04T00:53:11.000Z" - }, - "end": { - "$date": "2021-04-04T01:26:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8edfd94-2166-4468-b320-7d06fdc095cd", - "start": { - "$date": "2021-04-04T01:26:11.000Z" - }, - "end": { - "$date": "2021-04-04T02:01:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "17799f45-cd57-47c3-8c92-80e7b08e9b17", - "start": { - "$date": "2021-04-04T02:01:11.000Z" - }, - "end": { - "$date": "2021-04-04T02:02:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "81b2eda9-d911-410e-97ca-ace3b9e7efda", - "start": { - "$date": "2021-04-04T02:02:11.000Z" - }, - "end": { - "$date": "2021-04-04T02:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "67d5bb3c-d1f4-4b16-ba7d-271bc2a1316c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-03T23:28:22.000Z" - }, - "end": { - "$date": "2021-04-04T00:02:33.000Z" - }, - "events": [ - { - "uuid": "8c9a0593-1431-49fe-bc5d-957212b6eb8d", - "start": { - "$date": "2021-04-03T23:28:22.000Z" - }, - "end": { - "$date": "2021-04-04T00:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "438563b2-cc76-4ed8-b9a9-11fe25ce869a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-03T23:44:56.000Z" - }, - "end": { - "$date": "2021-04-04T00:12:49.000Z" - }, - "events": [ - { - "uuid": "48bbad2c-ad02-4a4f-9c80-077baeae433b", - "start": { - "$date": "2021-04-03T23:44:56.000Z" - }, - "end": { - "$date": "2021-04-04T00:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "6c58c8b4-0869-407e-923a-d9d5c5edd4d0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-03T23:47:42.000Z" - }, - "end": { - "$date": "2021-04-03T23:58:59.000Z" - }, - "events": [ - { - "uuid": "322b3445-b4b6-4dc0-a9c9-bc22a4fdb1e3", - "start": { - "$date": "2021-04-03T23:47:42.000Z" - }, - "end": { - "$date": "2021-04-03T23:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "50927170-5f79-4f58-b716-69e06a0be527", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T00:14:48.000Z" - }, - "end": { - "$date": "2021-04-04T02:23:32.000Z" - }, - "events": [ - { - "uuid": "81cc2c18-0af7-424b-b32d-11f62b263ab6", - "start": { - "$date": "2021-04-04T00:14:48.000Z" - }, - "end": { - "$date": "2021-04-04T02:23:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "47a27651-4218-41f4-9412-c40112afe26f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T00:14:55.000Z" - }, - "end": { - "$date": "2021-04-04T01:51:02.000Z" - }, - "events": [ - { - "uuid": "23946750-adb3-408c-9f1d-8216c5df4393", - "start": { - "$date": "2021-04-04T00:14:55.000Z" - }, - "end": { - "$date": "2021-04-04T00:39:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13e6d424-2032-4f3a-a2a6-ab250ca97d18", - "start": { - "$date": "2021-04-04T00:39:55.000Z" - }, - "end": { - "$date": "2021-04-04T00:44:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "323d3b0c-265f-4a57-94e4-c8cbfdda5815", - "start": { - "$date": "2021-04-04T00:44:55.000Z" - }, - "end": { - "$date": "2021-04-04T00:54:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc42314f-1601-445e-b1a9-1bba7681ef01", - "start": { - "$date": "2021-04-04T00:54:55.000Z" - }, - "end": { - "$date": "2021-04-04T01:17:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "243dc297-3194-4793-b84e-f2075e04617a", - "start": { - "$date": "2021-04-04T01:17:55.000Z" - }, - "end": { - "$date": "2021-04-04T01:27:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09b6ac4c-a3b8-42f0-b8e9-6a7b15b9b9ce", - "start": { - "$date": "2021-04-04T01:27:55.000Z" - }, - "end": { - "$date": "2021-04-04T01:51:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6f61e54c-2a16-458a-86ac-740346c4f8fd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-04T00:54:51.000Z" - }, - "end": { - "$date": "2021-04-04T01:25:16.000Z" - }, - "events": [ - { - "uuid": "50adce5b-f3b0-436a-80ae-411b19706b35", - "start": { - "$date": "2021-04-04T00:54:51.000Z" - }, - "end": { - "$date": "2021-04-04T01:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "d363ab48-94ab-4ba4-8924-7149ee6275dd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-04T01:04:40.000Z" - }, - "end": { - "$date": "2021-04-04T01:15:51.000Z" - }, - "events": [ - { - "uuid": "9b328d2c-eeb8-4b67-a9af-53feb00ff64d", - "start": { - "$date": "2021-04-04T01:04:40.000Z" - }, - "end": { - "$date": "2021-04-04T01:15:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1456c9ce-a423-43f7-92ce-73bc3885511c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-04T01:10:46.000Z" - }, - "end": { - "$date": "2021-04-04T01:49:52.000Z" - }, - "events": [ - { - "uuid": "e77e6c34-9c8d-4f0a-9f54-21c2bb2cd25a", - "start": { - "$date": "2021-04-04T01:10:46.000Z" - }, - "end": { - "$date": "2021-04-04T01:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cfbf0394-44f8-4aee-820c-08f24878dd00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-04T01:33:38.000Z" - }, - "end": { - "$date": "2021-04-04T04:36:49.000Z" - }, - "events": [ - { - "uuid": "1ddd3c8f-b429-4354-91da-e4e67fd98773", - "start": { - "$date": "2021-04-04T01:33:38.000Z" - }, - "end": { - "$date": "2021-04-04T04:36:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "fbad687f-56fb-4e59-b0ae-1625ff38399a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-04T01:42:53.000Z" - }, - "end": { - "$date": "2021-04-04T02:23:31.000Z" - }, - "events": [ - { - "uuid": "572bbddc-dc53-45f5-a24d-53497f9874f9", - "start": { - "$date": "2021-04-04T01:42:53.000Z" - }, - "end": { - "$date": "2021-04-04T02:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f587b66b-4a15-4448-bfec-aa96a9c0343d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-04T02:03:07.000Z" - }, - "end": { - "$date": "2021-04-04T02:34:41.000Z" - }, - "events": [ - { - "uuid": "be9f4628-825a-4d3e-8c84-0af0d24fb37c", - "start": { - "$date": "2021-04-04T02:03:07.000Z" - }, - "end": { - "$date": "2021-04-04T02:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "56376b74-f715-4cab-9835-7c544ee215d0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-04T02:09:14.000Z" - }, - "end": { - "$date": "2021-04-04T05:49:02.000Z" - }, - "events": [ - { - "uuid": "c82b03f4-76b5-4e93-a1db-c7ac4a73c9d1", - "start": { - "$date": "2021-04-04T02:09:14.000Z" - }, - "end": { - "$date": "2021-04-04T05:49:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ec71d001-10b6-40d4-beac-f34bbaa89ecb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-04T02:24:31.000Z" - }, - "end": { - "$date": "2021-04-04T03:14:47.000Z" - }, - "events": [ - { - "uuid": "d7da18dd-d02c-4c9a-9637-9cb658396fb0", - "start": { - "$date": "2021-04-04T02:24:31.000Z" - }, - "end": { - "$date": "2021-04-04T03:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d4d19f09-8a1d-4f23-b162-91efd2dc2c0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T02:25:31.000Z" - }, - "end": { - "$date": "2021-04-04T03:14:43.000Z" - }, - "events": [ - { - "uuid": "70277cac-9e5d-4c33-bc4b-cd710d8e8796", - "start": { - "$date": "2021-04-04T02:25:31.000Z" - }, - "end": { - "$date": "2021-04-04T03:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4086f3c-0cbc-48d6-b662-fe2b06c61660", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-04T03:03:04.000Z" - }, - "end": { - "$date": "2021-04-04T03:37:58.000Z" - }, - "events": [ - { - "uuid": "99fc788f-66fd-4137-8163-3ca7cbffa3fb", - "start": { - "$date": "2021-04-04T03:03:04.000Z" - }, - "end": { - "$date": "2021-04-04T03:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d9afa684-0522-4b08-b2c8-d252d8140f4f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-04T02:39:44.000Z" - }, - "end": { - "$date": "2021-04-04T02:54:06.000Z" - }, - "events": [ - { - "uuid": "1636fea3-0a42-4364-b76b-f7c8b8cad738", - "start": { - "$date": "2021-04-04T02:39:44.000Z" - }, - "end": { - "$date": "2021-04-04T02:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c3bf9515-dfe0-47a8-a286-f4d2373c777f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-04T02:53:52.000Z" - }, - "end": { - "$date": "2021-04-04T05:49:12.000Z" - }, - "events": [ - { - "uuid": "d95f3427-d7f9-4380-a67f-f4e1b85ed5a3", - "start": { - "$date": "2021-04-04T02:53:52.000Z" - }, - "end": { - "$date": "2021-04-04T05:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "786ff645-3197-48d6-b7d0-fe888041a91d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T03:17:57.000Z" - }, - "end": { - "$date": "2021-04-04T03:53:41.000Z" - }, - "events": [ - { - "uuid": "e9a464f0-58ab-420b-b7de-1e8251fd3950", - "start": { - "$date": "2021-04-04T03:17:57.000Z" - }, - "end": { - "$date": "2021-04-04T03:53:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d87169f-5d99-4f17-8f1d-e545ab977dab", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-04T03:52:05.000Z" - }, - "end": { - "$date": "2021-04-04T04:25:08.000Z" - }, - "events": [ - { - "uuid": "02f6b16a-41fa-45f5-8a04-17008f0b8815", - "start": { - "$date": "2021-04-04T03:52:05.000Z" - }, - "end": { - "$date": "2021-04-04T04:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "efa155be-fc7e-4e10-8f11-90efe8adcc9a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-04T03:40:36.000Z" - }, - "end": { - "$date": "2021-04-04T05:10:02.000Z" - }, - "events": [ - { - "uuid": "4d454889-492b-4980-9541-749d262b7b7f", - "start": { - "$date": "2021-04-04T03:40:36.000Z" - }, - "end": { - "$date": "2021-04-04T05:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "226f8630-9348-405d-8e68-e26e9b2c1ea9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T04:09:36.000Z" - }, - "end": { - "$date": "2021-04-04T06:38:28.000Z" - }, - "events": [ - { - "uuid": "c96b3c39-a7d1-4b6c-b040-be7a792f6965", - "start": { - "$date": "2021-04-04T04:09:36.000Z" - }, - "end": { - "$date": "2021-04-04T06:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "80e7b2df-5936-4426-984b-8fd84781c89d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T04:46:29.000Z" - }, - "end": { - "$date": "2021-04-04T04:59:27.000Z" - }, - "events": [ - { - "uuid": "6284ec98-486c-4dcb-bf3d-4e95868a2b39", - "start": { - "$date": "2021-04-04T04:46:29.000Z" - }, - "end": { - "$date": "2021-04-04T04:59:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "54ae9a3f-ee92-4835-8aa1-bc3d2d128db1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-04T04:56:11.000Z" - }, - "end": { - "$date": "2021-04-04T05:29:56.000Z" - }, - "events": [ - { - "uuid": "bfbcf81c-6810-4527-95e8-63f1dcf008cc", - "start": { - "$date": "2021-04-04T04:56:11.000Z" - }, - "end": { - "$date": "2021-04-04T05:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a827d4ed-cdf9-4062-b9f5-b20dada1c6b4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T05:53:59.000Z" - }, - "end": { - "$date": "2021-04-04T06:58:53.000Z" - }, - "events": [ - { - "uuid": "ac2dbfd8-6c57-41e9-a793-c124794256ce", - "start": { - "$date": "2021-04-04T05:53:59.000Z" - }, - "end": { - "$date": "2021-04-04T06:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "09e82dcb-5abd-44f4-b8bb-d21b4f191fce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-04T05:10:24.000Z" - }, - "end": { - "$date": "2021-04-04T06:46:12.000Z" - }, - "events": [ - { - "uuid": "1fee2e6b-4758-4f81-9e72-351a531da816", - "start": { - "$date": "2021-04-04T05:10:24.000Z" - }, - "end": { - "$date": "2021-04-04T06:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "399ffe82-6a15-4d85-ba8f-1bd961ffe5de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T06:42:57.000Z" - }, - "end": { - "$date": "2021-04-04T07:04:03.000Z" - }, - "events": [ - { - "uuid": "d331bfb2-a247-4c41-aa79-6a7ec294b245", - "start": { - "$date": "2021-04-04T06:42:57.000Z" - }, - "end": { - "$date": "2021-04-04T07:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "102abb9a-be99-45c7-87f0-7eac83f5c628", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T16:09:19.000Z" - }, - "end": { - "$date": "2021-04-04T16:09:26.000Z" - }, - "events": [ - { - "uuid": "5aeec74a-76e4-4731-b0e1-74b74fafb0bf", - "start": { - "$date": "2021-04-04T16:09:19.000Z" - }, - "end": { - "$date": "2021-04-04T16:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "026001f7-1c14-4cc5-a890-5db67d5705e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T16:20:15.000Z" - }, - "end": { - "$date": "2021-04-04T17:28:58.000Z" - }, - "events": [ - { - "uuid": "8a1e5faa-431c-41ca-9d2e-ea57ec367b57", - "start": { - "$date": "2021-04-04T16:20:15.000Z" - }, - "end": { - "$date": "2021-04-04T17:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcad3f66-a13f-4e77-9bd5-f39dbd3c9084", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-04T16:44:59.000Z" - }, - "end": { - "$date": "2021-04-04T17:17:05.000Z" - }, - "events": [ - { - "uuid": "ec5b218d-de84-4340-b471-f94d73c8c96d", - "start": { - "$date": "2021-04-04T16:44:59.000Z" - }, - "end": { - "$date": "2021-04-04T17:17:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc7acea9-bf13-4dcd-852c-22a4b130dce4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T16:56:26.000Z" - }, - "end": { - "$date": "2021-04-04T19:04:31.000Z" - }, - "events": [ - { - "uuid": "03d2327d-b943-4f30-8b93-8946abfeec24", - "start": { - "$date": "2021-04-04T16:56:26.000Z" - }, - "end": { - "$date": "2021-04-04T19:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b615ad7d-0f7d-4446-9886-fadb9578b17b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-04T17:21:21.000Z" - }, - "end": { - "$date": "2021-04-04T17:50:12.000Z" - }, - "events": [ - { - "uuid": "9647c62a-8ce8-4a3b-9d3f-9b9f731c2cf4", - "start": { - "$date": "2021-04-04T17:21:21.000Z" - }, - "end": { - "$date": "2021-04-04T17:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9fc70aa-9fbc-434c-a3d1-ab4bffd09c5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T17:29:11.000Z" - }, - "end": { - "$date": "2021-04-04T19:06:20.000Z" - }, - "events": [ - { - "uuid": "27915f08-6abd-4c6e-9f54-3c9c4d2754ba", - "start": { - "$date": "2021-04-04T17:29:11.000Z" - }, - "end": { - "$date": "2021-04-04T19:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a9b80e2d-6bd9-4e0a-8432-e2482ee64e41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-04T20:27:06.000Z" - }, - "end": { - "$date": "2021-04-04T23:44:09.000Z" - }, - "events": [ - { - "uuid": "407dd350-a5a6-4978-abc0-4d389f3791f5", - "start": { - "$date": "2021-04-04T20:27:06.000Z" - }, - "end": { - "$date": "2021-04-04T23:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "18950e86-1f5d-47fb-93b0-55262d6f206f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-04T19:05:09.000Z" - }, - "end": { - "$date": "2021-04-04T20:10:48.000Z" - }, - "events": [ - { - "uuid": "09529251-e6d6-4b10-af6a-761bb4f8ef5a", - "start": { - "$date": "2021-04-04T19:05:09.000Z" - }, - "end": { - "$date": "2021-04-04T20:10:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bcf1e9c6-b7c7-416e-b032-a552e41ed764", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T19:06:23.000Z" - }, - "end": { - "$date": "2021-04-04T21:48:58.000Z" - }, - "events": [ - { - "uuid": "27689c59-af60-4801-87b1-b64659b6f219", - "start": { - "$date": "2021-04-04T19:06:23.000Z" - }, - "end": { - "$date": "2021-04-04T20:02:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd93e7d4-444a-4d0e-ae89-ab5cb33dbbd9", - "start": { - "$date": "2021-04-04T20:02:23.000Z" - }, - "end": { - "$date": "2021-04-04T20:07:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6be77d4a-aff0-4ab8-bfaa-caf120828f1b", - "start": { - "$date": "2021-04-04T20:07:23.000Z" - }, - "end": { - "$date": "2021-04-04T20:17:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3ecfb2f9-08da-4770-91fb-ee39225dd612", - "start": { - "$date": "2021-04-04T20:17:23.000Z" - }, - "end": { - "$date": "2021-04-04T20:41:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3815e416-4c80-4f43-8dad-f07b3db0124f", - "start": { - "$date": "2021-04-04T20:41:23.000Z" - }, - "end": { - "$date": "2021-04-04T20:51:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12bbaa26-cf37-499c-a026-e0c592261bb8", - "start": { - "$date": "2021-04-04T20:51:23.000Z" - }, - "end": { - "$date": "2021-04-04T21:30:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de7a8feb-f05a-4b89-b7b6-66975b0a99e0", - "start": { - "$date": "2021-04-04T21:30:23.000Z" - }, - "end": { - "$date": "2021-04-04T21:33:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f14aa1c-d969-469f-bbb5-dcdb2c3c4f5f", - "start": { - "$date": "2021-04-04T21:33:23.000Z" - }, - "end": { - "$date": "2021-04-04T21:47:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f06ad09a-19aa-45ba-a8f8-ad22b91726c6", - "start": { - "$date": "2021-04-04T21:47:23.000Z" - }, - "end": { - "$date": "2021-04-04T21:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "6f85d71a-5360-490f-a8d4-0abff6d6278e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T19:48:52.000Z" - }, - "end": { - "$date": "2021-04-04T19:55:42.000Z" - }, - "events": [ - { - "uuid": "a7d81259-3ee5-4092-a0ce-d6b6b4b83332", - "start": { - "$date": "2021-04-04T19:48:52.000Z" - }, - "end": { - "$date": "2021-04-04T19:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "553ad28b-25aa-4c44-a231-4f059a22d151", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-04T19:54:54.000Z" - }, - "end": { - "$date": "2021-04-04T22:48:01.000Z" - }, - "events": [ - { - "uuid": "2f06829f-def7-4ba6-8499-aafd472baaa9", - "start": { - "$date": "2021-04-04T19:54:54.000Z" - }, - "end": { - "$date": "2021-04-04T22:48:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "8fc53ac3-dd5e-4176-aa9b-d8d5bf605735", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T19:55:57.000Z" - }, - "end": { - "$date": "2021-04-04T22:45:37.000Z" - }, - "events": [ - { - "uuid": "65202f77-2570-4fb6-8879-c09f82b5ebae", - "start": { - "$date": "2021-04-04T19:55:57.000Z" - }, - "end": { - "$date": "2021-04-04T22:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5208512d-428c-44d8-a61f-e9c1ac72b20a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-04T19:59:55.000Z" - }, - "end": { - "$date": "2021-04-04T22:13:55.000Z" - }, - "events": [ - { - "uuid": "9294eac0-dd64-4349-913d-bb6c9bb80c8f", - "start": { - "$date": "2021-04-04T19:59:55.000Z" - }, - "end": { - "$date": "2021-04-04T22:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "880467e4-4300-4638-868a-b2dbff4f6f7a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T21:50:43.000Z" - }, - "end": { - "$date": "2021-04-04T22:51:51.000Z" - }, - "events": [ - { - "uuid": "e1eca8d1-56d9-46e4-9f20-8a539f3cf378", - "start": { - "$date": "2021-04-04T21:50:43.000Z" - }, - "end": { - "$date": "2021-04-04T22:51:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ee572763-8dc2-499d-8cf9-03b683413a06", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-04T22:22:39.000Z" - }, - "end": { - "$date": "2021-04-04T22:48:42.000Z" - }, - "events": [ - { - "uuid": "65cfe9bb-5bcc-43be-a7c5-061bed83a4fd", - "start": { - "$date": "2021-04-04T22:22:39.000Z" - }, - "end": { - "$date": "2021-04-04T22:33:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff4f7366-634c-4125-a6f0-dbac7dacdd17", - "start": { - "$date": "2021-04-04T22:33:39.000Z" - }, - "end": { - "$date": "2021-04-04T22:38:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "063ffe91-4ba5-4128-bc81-fe4d8da4d4ee", - "start": { - "$date": "2021-04-04T22:38:39.000Z" - }, - "end": { - "$date": "2021-04-04T22:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "99f2c543-3038-4c1d-9c8c-a20b0b97e183", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-04T22:40:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:08:53.000Z" - }, - "events": [ - { - "uuid": "65decc01-b6d3-46ba-a3a0-882f29b771f6", - "start": { - "$date": "2021-04-04T22:40:06.000Z" - }, - "end": { - "$date": "2021-04-04T23:54:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a58997f-eaae-41f3-aabb-b935e7d8f190", - "start": { - "$date": "2021-04-04T23:54:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:00:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c11483a8-fa83-45c4-b1fd-7af61821bbbc", - "start": { - "$date": "2021-04-05T00:00:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:02:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d308c25-9827-470b-8658-2b4962bfe2ed", - "start": { - "$date": "2021-04-05T00:02:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:03:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a7839dbe-0b22-43ac-960f-8f95f891f28b", - "start": { - "$date": "2021-04-05T00:03:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:05:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "050734cb-263e-43ed-a733-87e11f01916a", - "start": { - "$date": "2021-04-05T00:05:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:07:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4baf32fa-5f3e-477d-b0f8-c67b41402761", - "start": { - "$date": "2021-04-05T00:07:06.000Z" - }, - "end": { - "$date": "2021-04-05T00:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f671445b-801e-495b-b6d6-aec4d719c169", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-04T22:49:37.000Z" - }, - "end": { - "$date": "2021-04-04T23:39:35.000Z" - }, - "events": [ - { - "uuid": "33539876-5f1d-48b3-a7e9-abea21aa576d", - "start": { - "$date": "2021-04-04T22:49:37.000Z" - }, - "end": { - "$date": "2021-04-04T23:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2eacebb4-7102-42a7-8ebe-80df719ae76b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T22:52:06.000Z" - }, - "end": { - "$date": "2021-04-04T23:25:22.000Z" - }, - "events": [ - { - "uuid": "5ea36902-05ba-4f62-bd8e-63b9c5e6c618", - "start": { - "$date": "2021-04-04T22:52:06.000Z" - }, - "end": { - "$date": "2021-04-04T23:25:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c582b37f-8a4a-4cc1-8569-c8aa4096e5e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T23:29:57.000Z" - }, - "end": { - "$date": "2021-04-04T23:43:43.000Z" - }, - "events": [ - { - "uuid": "0f120e24-58e6-4995-a80e-ae29bfce67aa", - "start": { - "$date": "2021-04-04T23:29:57.000Z" - }, - "end": { - "$date": "2021-04-04T23:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fb9ee1c0-3588-4349-8cbd-94aa81a51980", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-04T23:45:20.000Z" - }, - "end": { - "$date": "2021-04-05T00:16:27.000Z" - }, - "events": [ - { - "uuid": "20c75c4f-9ef2-477b-909c-9f67a508450f", - "start": { - "$date": "2021-04-04T23:45:20.000Z" - }, - "end": { - "$date": "2021-04-05T00:16:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "eec328d1-34ae-439a-a611-826ec76942fd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-04T23:47:28.000Z" - }, - "end": { - "$date": "2021-04-04T23:52:26.000Z" - }, - "events": [ - { - "uuid": "4dda7ad8-2ab9-4d4a-851f-569b9f5b0f89", - "start": { - "$date": "2021-04-04T23:47:28.000Z" - }, - "end": { - "$date": "2021-04-04T23:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "333ed557-7e8d-45fd-85e2-c410c88282d7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T23:47:28.000Z" - }, - "end": { - "$date": "2021-04-04T23:48:43.000Z" - }, - "events": [ - { - "uuid": "6d414b33-3bc8-4599-b7a9-6d4fd2663515", - "start": { - "$date": "2021-04-04T23:47:28.000Z" - }, - "end": { - "$date": "2021-04-04T23:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b8a6e8c3-7453-4f10-ab8c-2b0bf0408e27", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-04T23:48:53.000Z" - }, - "end": { - "$date": "2021-04-05T00:34:04.000Z" - }, - "events": [ - { - "uuid": "4dd13826-84c3-405a-b54e-8c730421ec1e", - "start": { - "$date": "2021-04-04T23:48:53.000Z" - }, - "end": { - "$date": "2021-04-05T00:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "766a1ec8-cda1-48b0-871d-6c19d97abd0d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-04T23:59:02.000Z" - }, - "end": { - "$date": "2021-04-05T00:35:28.000Z" - }, - "events": [ - { - "uuid": "1b3e3624-c8dc-4667-aada-9b14037649ed", - "start": { - "$date": "2021-04-04T23:59:02.000Z" - }, - "end": { - "$date": "2021-04-05T00:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "2018c571-c7e5-4ee4-ae2a-7dda5d8f1e56", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-05T00:08:09.000Z" - }, - "end": { - "$date": "2021-04-05T00:34:24.000Z" - }, - "events": [ - { - "uuid": "a61ddc2d-69f6-4c3e-962b-c4ba0e2c634b", - "start": { - "$date": "2021-04-05T00:08:09.000Z" - }, - "end": { - "$date": "2021-04-05T00:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "895a1071-d144-42d6-81bc-1ed260c17256", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-05T00:20:53.000Z" - }, - "end": { - "$date": "2021-04-05T00:28:19.000Z" - }, - "events": [ - { - "uuid": "7cac575d-6ea6-423d-8c0c-ead60770c9b0", - "start": { - "$date": "2021-04-05T00:20:53.000Z" - }, - "end": { - "$date": "2021-04-05T00:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d5677bfd-92e9-4422-8b99-441240625608", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T00:35:10.000Z" - }, - "end": { - "$date": "2021-04-05T01:48:38.000Z" - }, - "events": [ - { - "uuid": "df03f1cf-a6fa-45be-bd7c-7360a12ec4f3", - "start": { - "$date": "2021-04-05T00:35:10.000Z" - }, - "end": { - "$date": "2021-04-05T00:51:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62aab3d6-069f-4b0f-8fb9-41a05706e3e0", - "start": { - "$date": "2021-04-05T00:51:10.000Z" - }, - "end": { - "$date": "2021-04-05T00:55:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9eb61f5f-53a4-47d9-902d-f60778fb5b9f", - "start": { - "$date": "2021-04-05T00:55:10.000Z" - }, - "end": { - "$date": "2021-04-05T01:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "2c672375-8931-4db4-81f5-04286aad718c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-05T01:06:20.000Z" - }, - "end": { - "$date": "2021-04-05T03:22:30.000Z" - }, - "events": [ - { - "uuid": "7ec8c417-962a-44dc-90e7-755777bb01ef", - "start": { - "$date": "2021-04-05T01:06:20.000Z" - }, - "end": { - "$date": "2021-04-05T02:49:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a6e9131-8f0b-4d60-90dc-35d6a5d46839", - "start": { - "$date": "2021-04-05T02:49:20.000Z" - }, - "end": { - "$date": "2021-04-05T02:51:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "896eb1ba-3801-4faa-ba06-407a17c4ba84", - "start": { - "$date": "2021-04-05T02:51:20.000Z" - }, - "end": { - "$date": "2021-04-05T03:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d202a01-9fd5-4994-af98-b0e85217b01c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-05T01:30:32.000Z" - }, - "end": { - "$date": "2021-04-05T01:38:58.000Z" - }, - "events": [ - { - "uuid": "282d6d8c-3563-45b4-a985-cd0bde6bf02f", - "start": { - "$date": "2021-04-05T01:30:32.000Z" - }, - "end": { - "$date": "2021-04-05T01:38:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "uuid": "a736fac3-72fc-4651-b9ae-cd9a1c13a239", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T01:50:53.000Z" - }, - "end": { - "$date": "2021-04-05T02:02:33.000Z" - }, - "events": [ - { - "uuid": "420ba50b-1ace-4cc0-a897-3eaa93cb07f8", - "start": { - "$date": "2021-04-05T01:50:53.000Z" - }, - "end": { - "$date": "2021-04-05T02:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", - "uuid": "3859f743-b64f-4e54-ad55-1a1b6da6153c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-05T02:17:11.000Z" - }, - "end": { - "$date": "2021-04-05T03:11:58.000Z" - }, - "events": [ - { - "uuid": "9753df03-058b-49c2-9aa8-cd49b4bd6fcf", - "start": { - "$date": "2021-04-05T02:17:11.000Z" - }, - "end": { - "$date": "2021-04-05T03:11:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", - "uuid": "6ca72fbc-a462-4021-949f-ff84a5fd4873", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-05T02:20:47.000Z" - }, - "end": { - "$date": "2021-04-05T03:11:53.000Z" - }, - "events": [ - { - "uuid": "9cef1f05-0be9-4f81-88d9-beaa477ad422", - "start": { - "$date": "2021-04-05T02:20:47.000Z" - }, - "end": { - "$date": "2021-04-05T03:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", - "uuid": "2efc0616-77b3-4f29-a18b-78f225f3a702", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T02:20:59.000Z" - }, - "end": { - "$date": "2021-04-05T03:12:05.000Z" - }, - "events": [ - { - "uuid": "e7ea1e29-52e0-4c3d-9b81-3643d4011002", - "start": { - "$date": "2021-04-05T02:20:59.000Z" - }, - "end": { - "$date": "2021-04-05T03:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7405b7f4-be4d-4f8e-9544-4560d6f17861", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T02:23:06.000Z" - }, - "end": { - "$date": "2021-04-05T03:05:32.000Z" - }, - "events": [ - { - "uuid": "72ecf4c7-0604-4c0f-90eb-3f9af82ba132", - "start": { - "$date": "2021-04-05T02:23:06.000Z" - }, - "end": { - "$date": "2021-04-05T03:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f8536fb-4ff1-4c42-9236-ab0e1a246e89", - "uuid": "add63f70-af2f-4621-9dd9-d508186efcbd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-05T02:25:34.000Z" - }, - "end": { - "$date": "2021-04-05T03:10:51.000Z" - }, - "events": [ - { - "uuid": "6315ee8f-00d3-4b41-8524-86a1d8273020", - "start": { - "$date": "2021-04-05T02:25:34.000Z" - }, - "end": { - "$date": "2021-04-05T03:10:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "855f8ad7-3264-4e94-a561-8732c8bd288b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T03:06:12.000Z" - }, - "end": { - "$date": "2021-04-05T03:28:29.000Z" - }, - "events": [ - { - "uuid": "2ecda632-5f59-49b6-8af0-a0e266642539", - "start": { - "$date": "2021-04-05T03:06:12.000Z" - }, - "end": { - "$date": "2021-04-05T03:28:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4f1cc127-81bd-4d7a-b824-1bf2a6ab3cee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-05T03:11:26.000Z" - }, - "end": { - "$date": "2021-04-05T04:54:16.000Z" - }, - "events": [ - { - "uuid": "c1539953-daff-4ba1-bd38-968ade9bf421", - "start": { - "$date": "2021-04-05T03:11:26.000Z" - }, - "end": { - "$date": "2021-04-05T04:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "04fc1df1-a977-48ac-a381-e65c8d991a01", - "uuid": "88b06e33-1ba0-4949-b7a4-c4171083c116", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-05T03:13:38.000Z" - }, - "end": { - "$date": "2021-04-05T03:14:58.000Z" - }, - "events": [ - { - "uuid": "31946201-2635-4878-8231-8d545487a2fd", - "start": { - "$date": "2021-04-05T03:13:38.000Z" - }, - "end": { - "$date": "2021-04-05T03:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "566deadb-358f-4f54-b392-27a59e86797f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T03:40:08.000Z" - }, - "end": { - "$date": "2021-04-05T04:16:12.000Z" - }, - "events": [ - { - "uuid": "d164a7a7-e076-4c63-84ac-1af072887e59", - "start": { - "$date": "2021-04-05T03:40:08.000Z" - }, - "end": { - "$date": "2021-04-05T04:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb89e830-6144-4c83-9c10-4301d5f3c0b5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-05T04:35:43.000Z" - }, - "end": { - "$date": "2021-04-05T05:06:53.000Z" - }, - "events": [ - { - "uuid": "8550a782-33fd-4c2e-b520-f4ff117d2985", - "start": { - "$date": "2021-04-05T04:35:43.000Z" - }, - "end": { - "$date": "2021-04-05T05:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "96f2cab8-1a90-4bce-b7c2-0b66002c440d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T04:57:03.000Z" - }, - "end": { - "$date": "2021-04-05T04:58:58.000Z" - }, - "events": [ - { - "uuid": "fe918089-0ddd-4671-8e8b-bba64f62edc3", - "start": { - "$date": "2021-04-05T04:57:03.000Z" - }, - "end": { - "$date": "2021-04-05T04:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "85699a90-b929-4067-ac3d-7efae33366f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-05T04:57:14.000Z" - }, - "end": { - "$date": "2021-04-05T04:58:44.000Z" - }, - "events": [ - { - "uuid": "7e198993-7075-4e70-b14e-6ae065f2d655", - "start": { - "$date": "2021-04-05T04:57:14.000Z" - }, - "end": { - "$date": "2021-04-05T04:58:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da330bf2-595f-4d1c-be05-0cae96bd7fad", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-05T05:11:03.000Z" - }, - "end": { - "$date": "2021-04-05T05:42:05.000Z" - }, - "events": [ - { - "uuid": "ce92eb1b-e9d4-4c78-858f-1ffdf02771cd", - "start": { - "$date": "2021-04-05T05:11:03.000Z" - }, - "end": { - "$date": "2021-04-05T05:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1be438ea-7360-4895-8dfa-65445836b300", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-05T05:26:51.000Z" - }, - "end": { - "$date": "2021-04-05T07:59:51.000Z" - }, - "events": [ - { - "uuid": "167a796a-dbf5-4143-9910-d32ff0ba6f30", - "start": { - "$date": "2021-04-05T05:26:51.000Z" - }, - "end": { - "$date": "2021-04-05T07:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14502628-5f65-450b-b364-951a2ce630ae", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-05T06:06:17.000Z" - }, - "end": { - "$date": "2021-04-05T06:34:37.000Z" - }, - "events": [ - { - "uuid": "1e04f8fc-5e1e-40d8-92cb-881049365ae1", - "start": { - "$date": "2021-04-05T06:06:17.000Z" - }, - "end": { - "$date": "2021-04-05T06:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33a9ecaf-505b-476e-b044-705edbd26de8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T16:31:51.000Z" - }, - "end": { - "$date": "2021-04-05T16:59:03.000Z" - }, - "events": [ - { - "uuid": "6c1370f7-de42-4447-8687-1ee23935d959", - "start": { - "$date": "2021-04-05T16:31:51.000Z" - }, - "end": { - "$date": "2021-04-05T17:07:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c352179-4bdd-489e-944e-fb95bffb9486", - "start": { - "$date": "2021-04-05T17:07:51.000Z" - }, - "end": { - "$date": "2021-04-05T17:12:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c65b1d6-338a-4a50-8bc4-252bc615c06f", - "start": { - "$date": "2021-04-05T17:12:51.000Z" - }, - "end": { - "$date": "2021-04-05T16:59:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "fdaf9633-eb27-489c-8949-e2306c00a203", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T14:28:41.000Z" - }, - "end": { - "$date": "2021-04-05T15:35:38.000Z" - }, - "events": [ - { - "uuid": "1c5514c0-ba3f-41a8-a940-0258738eff28", - "start": { - "$date": "2021-04-05T14:28:41.000Z" - }, - "end": { - "$date": "2021-04-05T15:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1e71e5a1-5b42-4855-85a1-80129271d67f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T16:04:28.000Z" - }, - "end": { - "$date": "2021-04-05T17:00:42.000Z" - }, - "events": [ - { - "uuid": "c85e08e9-9037-4ea2-b9e6-9308001cb6fc", - "start": { - "$date": "2021-04-05T16:04:28.000Z" - }, - "end": { - "$date": "2021-04-05T16:15:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de4030ef-df11-4dbb-8253-0bf1e601bbc4", - "start": { - "$date": "2021-04-05T16:15:28.000Z" - }, - "end": { - "$date": "2021-04-05T16:46:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8de0ff24-0e9a-4e80-810b-8bb11d6ed8ae", - "start": { - "$date": "2021-04-05T16:46:28.000Z" - }, - "end": { - "$date": "2021-04-05T17:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8ca577f-2ad1-44ef-b039-d7ebcf52b10c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T16:59:24.000Z" - }, - "end": { - "$date": "2021-04-05T17:04:14.000Z" - }, - "events": [ - { - "uuid": "f0d628d9-ddb0-45bc-a309-ae7513c3f4e8", - "start": { - "$date": "2021-04-05T16:59:24.000Z" - }, - "end": { - "$date": "2021-04-05T17:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "aa808ff4-a64c-429c-8e15-4cc2acb37200", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T17:03:43.000Z" - }, - "end": { - "$date": "2021-04-05T17:23:50.000Z" - }, - "events": [ - { - "uuid": "eae3707e-410d-40a1-8699-c8e02eb8a9f9", - "start": { - "$date": "2021-04-05T17:03:43.000Z" - }, - "end": { - "$date": "2021-04-05T17:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "801315fa-d102-4dee-abaa-760c0f103150", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T17:25:21.000Z" - }, - "end": { - "$date": "2021-04-05T17:28:56.000Z" - }, - "events": [ - { - "uuid": "dd51d650-d09c-4872-998c-8897043f8c19", - "start": { - "$date": "2021-04-05T17:25:21.000Z" - }, - "end": { - "$date": "2021-04-05T17:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7736cb25-a1e8-4857-b7a0-c84dcdc4f6eb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T17:29:06.000Z" - }, - "end": { - "$date": "2021-04-05T19:15:07.000Z" - }, - "events": [ - { - "uuid": "3c0798e6-0d84-49fb-bf59-9d96444ef124", - "start": { - "$date": "2021-04-05T17:29:06.000Z" - }, - "end": { - "$date": "2021-04-05T19:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e607df2a-0ec7-49cb-b7f4-080134ae8ff9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-05T17:30:08.000Z" - }, - "end": { - "$date": "2021-04-05T21:12:40.000Z" - }, - "events": [ - { - "uuid": "c3e7da69-25b2-4bed-85e4-2c7c320aca15", - "start": { - "$date": "2021-04-05T17:30:08.000Z" - }, - "end": { - "$date": "2021-04-05T21:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8a1c0c1f-aacb-42af-b431-f1e448ac0144", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T17:47:41.000Z" - }, - "end": { - "$date": "2021-04-05T18:00:57.000Z" - }, - "events": [ - { - "uuid": "cd3e35ca-5c8a-4497-a033-762bb02e2d8e", - "start": { - "$date": "2021-04-05T17:47:41.000Z" - }, - "end": { - "$date": "2021-04-05T18:00:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "990ff4e4-a53d-4a3e-9b7a-aba4280494a4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-05T18:41:21.000Z" - }, - "end": { - "$date": "2021-04-05T19:25:37.000Z" - }, - "events": [ - { - "uuid": "ac2d88ef-bd11-4252-abe5-89abe4817d48", - "start": { - "$date": "2021-04-05T18:41:21.000Z" - }, - "end": { - "$date": "2021-04-05T19:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5bae96da-ffa5-4a0d-a68d-470fdb81262d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-05T19:25:20.000Z" - }, - "end": { - "$date": "2021-04-05T20:18:41.000Z" - }, - "events": [ - { - "uuid": "af69666e-99b7-4502-8d43-3b029bd31c70", - "start": { - "$date": "2021-04-05T19:25:20.000Z" - }, - "end": { - "$date": "2021-04-05T20:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cd7c60b3-2cc0-4476-b958-3e236a3e3eac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-05T19:43:06.000Z" - }, - "end": { - "$date": "2021-04-05T20:17:10.000Z" - }, - "events": [ - { - "uuid": "d9ab6feb-c1df-47e2-aad1-43fe2e0b6010", - "start": { - "$date": "2021-04-05T19:43:06.000Z" - }, - "end": { - "$date": "2021-04-05T20:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "787351e6-2451-43ad-a4b9-f3cba5698378", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-05T19:51:24.000Z" - }, - "end": { - "$date": "2021-04-05T20:28:45.000Z" - }, - "events": [ - { - "uuid": "c1036bfa-bf1c-4a99-8676-e89d2a6e3582", - "start": { - "$date": "2021-04-05T19:51:24.000Z" - }, - "end": { - "$date": "2021-04-05T20:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ab609955-d760-4fb5-a37f-33fbb64151c3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-05T19:54:08.000Z" - }, - "end": { - "$date": "2021-04-05T20:04:02.000Z" - }, - "events": [ - { - "uuid": "b3ada46f-dcd0-4a34-8d06-aa1cf5eb1dca", - "start": { - "$date": "2021-04-05T19:54:08.000Z" - }, - "end": { - "$date": "2021-04-05T20:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "caede395-ac14-4362-92b6-f6861d8faead", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-05T21:04:28.000Z" - }, - "end": { - "$date": "2021-04-05T21:44:57.000Z" - }, - "events": [ - { - "uuid": "4524eb60-e1ca-46f0-bf7b-5eeccd695f5e", - "start": { - "$date": "2021-04-05T21:04:28.000Z" - }, - "end": { - "$date": "2021-04-05T21:44:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "c118fa5d-a621-4d8f-b22e-c89b2742d6c6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-05T21:20:52.000Z" - }, - "end": { - "$date": "2021-04-05T23:26:26.000Z" - }, - "events": [ - { - "uuid": "5bd3d6cd-d3fe-4e89-a17f-1494c5ca9d29", - "start": { - "$date": "2021-04-05T21:20:52.000Z" - }, - "end": { - "$date": "2021-04-05T23:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2ac29ff6-803e-4c4a-9c1c-28419dbebb05", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-05T21:46:14.000Z" - }, - "end": { - "$date": "2021-04-06T00:00:02.000Z" - }, - "events": [ - { - "uuid": "f89825dd-ce3e-4d19-889a-3183a658bb71", - "start": { - "$date": "2021-04-05T21:46:14.000Z" - }, - "end": { - "$date": "2021-04-06T00:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3ca45230-940e-4383-8b88-ada18757ebcd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-05T22:17:15.000Z" - }, - "end": { - "$date": "2021-04-06T01:13:42.000Z" - }, - "events": [ - { - "uuid": "4629cec5-a8e4-42ed-9eb6-adad720b0817", - "start": { - "$date": "2021-04-05T22:17:15.000Z" - }, - "end": { - "$date": "2021-04-06T01:13:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9a3f90a5-d10c-4ec6-ba09-68d38ef9b97d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T00:44:46.000Z" - }, - "end": { - "$date": "2021-04-06T01:12:05.000Z" - }, - "events": [ - { - "uuid": "be2baf6a-afda-4b0f-9539-b1fbab6474a9", - "start": { - "$date": "2021-04-06T00:44:46.000Z" - }, - "end": { - "$date": "2021-04-06T01:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bdc90080-853f-4fd0-b577-cfd41a35f0c7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-06T00:45:04.000Z" - }, - "end": { - "$date": "2021-04-06T03:08:15.000Z" - }, - "events": [ - { - "uuid": "e7d1e43a-a4ae-4693-aa4b-6b92cc4f39e9", - "start": { - "$date": "2021-04-06T00:45:04.000Z" - }, - "end": { - "$date": "2021-04-06T01:27:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5164e35c-7b1d-4978-b106-d48e038b9ace", - "start": { - "$date": "2021-04-06T01:27:04.000Z" - }, - "end": { - "$date": "2021-04-06T01:37:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b0d2716-4456-470b-b51a-80b6b9e71dff", - "start": { - "$date": "2021-04-06T01:37:04.000Z" - }, - "end": { - "$date": "2021-04-06T03:08:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "53de5d45-4ce4-4510-932f-7bb630484459", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T01:15:46.000Z" - }, - "end": { - "$date": "2021-04-06T01:17:20.000Z" - }, - "events": [ - { - "uuid": "2dac0e59-d9fe-4df9-9150-7a4f7478d23a", - "start": { - "$date": "2021-04-06T01:15:46.000Z" - }, - "end": { - "$date": "2021-04-06T01:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "61bed3bf-daf1-4edb-8207-30df6dcae8f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T01:20:17.000Z" - }, - "end": { - "$date": "2021-04-06T01:55:47.000Z" - }, - "events": [ - { - "uuid": "4be97b7d-4557-43f9-997b-0a538795a842", - "start": { - "$date": "2021-04-06T01:20:17.000Z" - }, - "end": { - "$date": "2021-04-06T01:55:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c48dae7f-7b7c-4348-890d-c8187318dd0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-06T01:35:50.000Z" - }, - "end": { - "$date": "2021-04-06T03:15:21.000Z" - }, - "events": [ - { - "uuid": "f36cf6ce-f787-4280-86e7-2cb3fdcc6329", - "start": { - "$date": "2021-04-06T01:35:50.000Z" - }, - "end": { - "$date": "2021-04-06T03:15:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cc6d5133-3e00-4bfe-aafb-093b21baf631", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T01:56:28.000Z" - }, - "end": { - "$date": "2021-04-06T02:55:31.000Z" - }, - "events": [ - { - "uuid": "fd36fbf6-c346-49c1-b4bb-161aab881b8d", - "start": { - "$date": "2021-04-06T01:56:28.000Z" - }, - "end": { - "$date": "2021-04-06T02:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "5886ce1b-9d3b-4cf9-a6cf-bc2881fae52a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T01:59:17.000Z" - }, - "end": { - "$date": "2021-04-06T02:27:59.000Z" - }, - "events": [ - { - "uuid": "ba1ab574-1c21-4c01-b4db-2e9970e48950", - "start": { - "$date": "2021-04-06T01:59:17.000Z" - }, - "end": { - "$date": "2021-04-06T02:27:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2380b73d-b4b1-4f40-b285-06cf51103e85", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-06T02:00:38.000Z" - }, - "end": { - "$date": "2021-04-06T04:44:24.000Z" - }, - "events": [ - { - "uuid": "874e1e15-40a6-4cf7-95fa-af17045d4d6e", - "start": { - "$date": "2021-04-06T02:00:38.000Z" - }, - "end": { - "$date": "2021-04-06T03:46:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4627b704-af27-4596-b5d6-e3d5c52b4f92", - "start": { - "$date": "2021-04-06T03:46:38.000Z" - }, - "end": { - "$date": "2021-04-06T03:51:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "01f6de70-b7d9-43f9-a9ff-3815e6385543", - "start": { - "$date": "2021-04-06T03:51:38.000Z" - }, - "end": { - "$date": "2021-04-06T04:01:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73f72f3b-a546-4a0d-8e33-595eb3903ba0", - "start": { - "$date": "2021-04-06T04:01:38.000Z" - }, - "end": { - "$date": "2021-04-06T04:08:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9f04d13-ba74-4d25-b460-82a1e1bf71fd", - "start": { - "$date": "2021-04-06T04:08:38.000Z" - }, - "end": { - "$date": "2021-04-06T04:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bbd3bd7-6cd3-4083-b2d4-c3be7cb69be4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T02:28:59.000Z" - }, - "end": { - "$date": "2021-04-06T03:03:05.000Z" - }, - "events": [ - { - "uuid": "ca1f80b8-54bd-4108-90a5-a1628d834659", - "start": { - "$date": "2021-04-06T02:28:59.000Z" - }, - "end": { - "$date": "2021-04-06T03:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "072da1ea-d2b5-46b8-8d3a-91967565855b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T03:03:16.000Z" - }, - "end": { - "$date": "2021-04-06T03:17:31.000Z" - }, - "events": [ - { - "uuid": "42d51ecd-8734-47b4-b8ad-b0a727ac2884", - "start": { - "$date": "2021-04-06T03:03:16.000Z" - }, - "end": { - "$date": "2021-04-06T03:17:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5070660f-a192-427d-bfb3-4e1ec7f3618e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T03:29:48.000Z" - }, - "end": { - "$date": "2021-04-06T04:30:25.000Z" - }, - "events": [ - { - "uuid": "e8fbe882-4efc-431f-b1f6-d709db4bdd31", - "start": { - "$date": "2021-04-06T03:29:48.000Z" - }, - "end": { - "$date": "2021-04-06T04:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3c6c0795-b6f4-445b-9099-8e1d158eba3d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-06T03:31:03.000Z" - }, - "end": { - "$date": "2021-04-06T04:30:25.000Z" - }, - "events": [ - { - "uuid": "0e77e379-9304-4a88-8149-9feebba81cb8", - "start": { - "$date": "2021-04-06T03:31:03.000Z" - }, - "end": { - "$date": "2021-04-06T04:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96f40ff4-d33a-430e-a3ce-91855ed08eba", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-06T04:36:21.000Z" - }, - "end": { - "$date": "2021-04-06T04:59:14.000Z" - }, - "events": [ - { - "uuid": "6c5e7715-4973-407e-b550-1c5b2d674187", - "start": { - "$date": "2021-04-06T04:36:21.000Z" - }, - "end": { - "$date": "2021-04-06T04:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7182093-4bb9-4702-bc6a-82086efb743b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T04:17:59.000Z" - }, - "end": { - "$date": "2021-04-06T04:42:25.000Z" - }, - "events": [ - { - "uuid": "99dec259-4ba3-4cea-8b4f-4282542cc975", - "start": { - "$date": "2021-04-06T04:17:59.000Z" - }, - "end": { - "$date": "2021-04-06T04:42:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "d8a1c176-fe04-4b37-8d76-e660f6be768e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T04:38:06.000Z" - }, - "end": { - "$date": "2021-04-06T04:43:16.000Z" - }, - "events": [ - { - "uuid": "67a87902-1869-440f-848d-2c555c4477fe", - "start": { - "$date": "2021-04-06T04:38:06.000Z" - }, - "end": { - "$date": "2021-04-06T04:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07de0f62-a172-464a-b716-0c713756d98f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T04:45:30.000Z" - }, - "end": { - "$date": "2021-04-06T05:14:06.000Z" - }, - "events": [ - { - "uuid": "17aa06e1-7a36-4588-a345-b01f89da7fc3", - "start": { - "$date": "2021-04-06T04:45:30.000Z" - }, - "end": { - "$date": "2021-04-06T05:14:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b6acde02-2bc7-42c3-8154-ecc170923198", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-06T04:45:15.000Z" - }, - "end": { - "$date": "2021-04-06T05:01:42.000Z" - }, - "events": [ - { - "uuid": "ab89cd2f-dd9e-4df5-aea5-c674fad7de58", - "start": { - "$date": "2021-04-06T04:45:15.000Z" - }, - "end": { - "$date": "2021-04-06T05:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b99b4cd4-c463-4947-93b3-14753f51b4e8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-06T05:02:41.000Z" - }, - "end": { - "$date": "2021-04-06T05:14:37.000Z" - }, - "events": [ - { - "uuid": "cedb342d-07be-43a9-a8b9-4a64269f5046", - "start": { - "$date": "2021-04-06T05:02:41.000Z" - }, - "end": { - "$date": "2021-04-06T05:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d78fbbe3-fc8f-4291-a9da-8ae2fce016b8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-06T05:19:11.000Z" - }, - "end": { - "$date": "2021-04-06T05:32:22.000Z" - }, - "events": [ - { - "uuid": "14c38f50-0466-4782-bccd-de77ad036605", - "start": { - "$date": "2021-04-06T05:19:11.000Z" - }, - "end": { - "$date": "2021-04-06T05:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8e3c760-c0e9-41cc-9ac4-8ef963425677", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-06T05:34:52.000Z" - }, - "end": { - "$date": "2021-04-06T05:53:35.000Z" - }, - "events": [ - { - "uuid": "9fedb800-11e8-455e-b2eb-5c6753c393fe", - "start": { - "$date": "2021-04-06T05:34:52.000Z" - }, - "end": { - "$date": "2021-04-06T05:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "81808eab-83c8-4628-9b13-c2ea0c5290d0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T14:06:49.000Z" - }, - "end": { - "$date": "2021-04-06T15:14:20.000Z" - }, - "events": [ - { - "uuid": "00174795-00b2-47ba-9028-f65b5b2843c5", - "start": { - "$date": "2021-04-06T14:06:49.000Z" - }, - "end": { - "$date": "2021-04-06T15:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "23a2c7dd-e0b0-43b3-ae13-512db0c2a69c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T15:15:01.000Z" - }, - "end": { - "$date": "2021-04-06T15:54:56.000Z" - }, - "events": [ - { - "uuid": "2fa43b08-ba0d-4e8f-ae2e-2b95eeb84ba9", - "start": { - "$date": "2021-04-06T15:15:01.000Z" - }, - "end": { - "$date": "2021-04-06T15:54:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "5548d896-7b71-4bd6-be52-312bcf95ac0d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T15:55:43.000Z" - }, - "end": { - "$date": "2021-04-06T16:36:07.000Z" - }, - "events": [ - { - "uuid": "45fcf183-decf-4f4c-b7f4-6fa737d5114f", - "start": { - "$date": "2021-04-06T15:55:43.000Z" - }, - "end": { - "$date": "2021-04-06T16:36:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "723c6308-184d-4810-9d49-f2cbb83892f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T16:32:47.000Z" - }, - "end": { - "$date": "2021-04-06T17:02:42.000Z" - }, - "events": [ - { - "uuid": "9afba09f-83a5-4c45-aedd-2be944d962e1", - "start": { - "$date": "2021-04-06T16:32:47.000Z" - }, - "end": { - "$date": "2021-04-06T17:02:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "5e32fbbe-920b-46a1-a65e-e147af8b0d3a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T17:06:30.000Z" - }, - "end": { - "$date": "2021-04-06T17:26:11.000Z" - }, - "events": [ - { - "uuid": "13206db1-1375-48be-a362-85db0da30a7c", - "start": { - "$date": "2021-04-06T17:06:30.000Z" - }, - "end": { - "$date": "2021-04-06T17:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "5cc39502-dd0b-46e8-baa4-54a2fd92e18e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T17:26:31.000Z" - }, - "end": { - "$date": "2021-04-06T18:04:32.000Z" - }, - "events": [ - { - "uuid": "f86985a1-ce2e-409d-aa3f-b17c5e5e8aa3", - "start": { - "$date": "2021-04-06T17:26:31.000Z" - }, - "end": { - "$date": "2021-04-06T18:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4dd64711-99d7-4539-b09f-df15a51b9dc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-06T18:14:22.000Z" - }, - "end": { - "$date": "2021-04-06T20:13:27.000Z" - }, - "events": [ - { - "uuid": "a1e9b39c-228c-48ab-9dfe-21dd856ba013", - "start": { - "$date": "2021-04-06T18:14:22.000Z" - }, - "end": { - "$date": "2021-04-06T19:18:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2562e2e0-8a92-4768-9686-db17b37efa2d", - "start": { - "$date": "2021-04-06T19:18:22.000Z" - }, - "end": { - "$date": "2021-04-06T19:20:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "569613d1-03db-491d-b7d3-2cdca844533c", - "start": { - "$date": "2021-04-06T19:20:22.000Z" - }, - "end": { - "$date": "2021-04-06T19:30:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09df4ceb-c0ce-484b-a72c-5d807f261d9b", - "start": { - "$date": "2021-04-06T19:30:22.000Z" - }, - "end": { - "$date": "2021-04-06T19:35:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aec96bee-ee40-456d-ae64-b6f52f9c2422", - "start": { - "$date": "2021-04-06T19:35:22.000Z" - }, - "end": { - "$date": "2021-04-06T20:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "46044683-720d-48e6-b419-d9789e922dfd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-06T18:33:20.000Z" - }, - "end": { - "$date": "2021-04-06T19:19:29.000Z" - }, - "events": [ - { - "uuid": "0d94a88d-1f56-482c-985e-4300909f8e01", - "start": { - "$date": "2021-04-06T18:33:20.000Z" - }, - "end": { - "$date": "2021-04-06T19:19:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5da9831-57d5-4b6a-b3b9-8be1f907a9bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T18:36:16.000Z" - }, - "end": { - "$date": "2021-04-06T19:02:55.000Z" - }, - "events": [ - { - "uuid": "27c7bf4a-744c-4742-8ea7-3d29c94c47e4", - "start": { - "$date": "2021-04-06T18:36:16.000Z" - }, - "end": { - "$date": "2021-04-06T19:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf9491c7-4efd-430a-8d05-ca985ae0289b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T19:12:22.000Z" - }, - "end": { - "$date": "2021-04-06T19:48:14.000Z" - }, - "events": [ - { - "uuid": "81c9bca4-bb86-4d5e-9598-c4421146c848", - "start": { - "$date": "2021-04-06T19:12:22.000Z" - }, - "end": { - "$date": "2021-04-06T19:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e27d0474-351e-4efe-83a5-e9ff1c536852", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-06T19:21:48.000Z" - }, - "end": { - "$date": "2021-04-06T20:39:28.000Z" - }, - "events": [ - { - "uuid": "0c0a4e63-4ff7-4156-afa6-3e7c3d5dbb19", - "start": { - "$date": "2021-04-06T19:21:48.000Z" - }, - "end": { - "$date": "2021-04-06T19:45:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6fd07f9-6f83-491b-afd6-446ee481e3c1", - "start": { - "$date": "2021-04-06T19:45:48.000Z" - }, - "end": { - "$date": "2021-04-06T19:57:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f5e5042-9007-4fa4-8e1c-c112958c2129", - "start": { - "$date": "2021-04-06T19:57:48.000Z" - }, - "end": { - "$date": "2021-04-06T20:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a7ea6435-958d-4143-8c4d-543888f6d4ed", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-06T20:58:17.000Z" - }, - "end": { - "$date": "2021-04-06T22:59:59.000Z" - }, - "events": [ - { - "uuid": "c2a0007a-8adc-4957-862d-ab5d2b9235c5", - "start": { - "$date": "2021-04-06T20:58:17.000Z" - }, - "end": { - "$date": "2021-04-06T22:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2c506de3-5bc7-4932-a585-1133e13e074c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-06T21:42:23.000Z" - }, - "end": { - "$date": "2021-04-07T00:01:55.000Z" - }, - "events": [ - { - "uuid": "1022b39b-eca1-467f-9044-e9802a3783cc", - "start": { - "$date": "2021-04-06T21:42:23.000Z" - }, - "end": { - "$date": "2021-04-06T22:03:23.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "6aca0669-ce8a-424f-bcc9-f28450dfe063", - "start": { - "$date": "2021-04-06T22:03:23.000Z" - }, - "end": { - "$date": "2021-04-07T00:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25004c2c-b3ec-424e-92a1-d47649e523bd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-06T23:59:22.000Z" - }, - "end": { - "$date": "2021-04-07T00:23:34.000Z" - }, - "events": [ - { - "uuid": "74d5dc0d-f081-4875-9364-8cab2de2bf32", - "start": { - "$date": "2021-04-06T23:59:22.000Z" - }, - "end": { - "$date": "2021-04-07T00:23:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3477c706-eda6-485d-8552-1cc7356f5e98", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-07T00:02:16.000Z" - }, - "end": { - "$date": "2021-04-07T01:11:49.000Z" - }, - "events": [ - { - "uuid": "c2604186-d0df-41db-a380-7212184c6ad9", - "start": { - "$date": "2021-04-07T00:02:16.000Z" - }, - "end": { - "$date": "2021-04-07T01:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "902201c3-2cbb-4f37-962b-78a9d1e646fe", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-07T01:24:23.000Z" - }, - "end": { - "$date": "2021-04-07T01:50:02.000Z" - }, - "events": [ - { - "uuid": "1826b414-feb9-4b77-ae85-a72e7f21ba14", - "start": { - "$date": "2021-04-07T01:24:23.000Z" - }, - "end": { - "$date": "2021-04-07T01:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ef053a77-0fb9-4b06-95de-3fb0a9bd6655", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-07T01:44:37.000Z" - }, - "end": { - "$date": "2021-04-07T05:04:32.000Z" - }, - "events": [ - { - "uuid": "50f6f60f-8d29-457f-8c34-592a4b1f4024", - "start": { - "$date": "2021-04-07T01:44:37.000Z" - }, - "end": { - "$date": "2021-04-07T03:35:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8233982-a066-4dd6-8d95-04a4cdd57ae3", - "start": { - "$date": "2021-04-07T03:35:37.000Z" - }, - "end": { - "$date": "2021-04-07T03:39:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "93bd7af2-0e9d-494c-89c4-81dfcc8ea48c", - "start": { - "$date": "2021-04-07T03:39:37.000Z" - }, - "end": { - "$date": "2021-04-07T05:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "211c5be3-fe27-49b7-8e88-55e6889e7145", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-07T02:32:28.000Z" - }, - "end": { - "$date": "2021-04-07T03:02:31.000Z" - }, - "events": [ - { - "uuid": "bda396d7-40c6-481d-a388-3762d6348485", - "start": { - "$date": "2021-04-07T02:32:28.000Z" - }, - "end": { - "$date": "2021-04-07T02:46:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab731d3d-fdc4-49c6-baeb-fd3c602e3dd1", - "start": { - "$date": "2021-04-07T02:46:28.000Z" - }, - "end": { - "$date": "2021-04-07T02:48:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "72b86f49-17b6-4c42-b038-8d0ee58b6d21", - "start": { - "$date": "2021-04-07T02:48:28.000Z" - }, - "end": { - "$date": "2021-04-07T03:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e7a7fdb2-9844-4588-975f-5ad324a5d7d5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-07T02:33:02.000Z" - }, - "end": { - "$date": "2021-04-07T04:24:37.000Z" - }, - "events": [ - { - "uuid": "51989230-8314-41c9-8414-175833086dde", - "start": { - "$date": "2021-04-07T02:33:02.000Z" - }, - "end": { - "$date": "2021-04-07T04:24:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "31d8f4a7-deae-4f1d-9f3b-eb342aa3b40a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-07T03:27:23.000Z" - }, - "end": { - "$date": "2021-04-07T03:31:44.000Z" - }, - "events": [ - { - "uuid": "ff6c73f0-fd12-4db8-97fc-c51af39d8fbb", - "start": { - "$date": "2021-04-07T03:27:23.000Z" - }, - "end": { - "$date": "2021-04-07T03:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b1e36e5-6c6e-49d0-95c0-12b548ee7d36", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-07T04:55:07.000Z" - }, - "end": { - "$date": "2021-04-07T04:56:42.000Z" - }, - "events": [ - { - "uuid": "276c2c51-cf24-4a84-8a09-25b7b9df437c", - "start": { - "$date": "2021-04-07T04:55:07.000Z" - }, - "end": { - "$date": "2021-04-07T04:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63c1c68e-25cb-4219-a984-76b8ca94b282", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-07T04:24:53.000Z" - }, - "end": { - "$date": "2021-04-07T05:29:40.000Z" - }, - "events": [ - { - "uuid": "3c2ade6a-b8db-453b-a515-1a9d0087983c", - "start": { - "$date": "2021-04-07T04:24:53.000Z" - }, - "end": { - "$date": "2021-04-07T05:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7eac49f8-9c22-40a6-9611-70cb15a9f585", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-07T04:25:43.000Z" - }, - "end": { - "$date": "2021-04-07T04:50:13.000Z" - }, - "events": [ - { - "uuid": "380138c7-8140-46ee-8c30-f0844e165c57", - "start": { - "$date": "2021-04-07T04:25:43.000Z" - }, - "end": { - "$date": "2021-04-07T04:50:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "6e14441b-389c-4356-89a7-506243e75254", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-07T04:42:01.000Z" - }, - "end": { - "$date": "2021-04-07T06:32:31.000Z" - }, - "events": [ - { - "uuid": "545542e9-f119-41e0-99f7-4c01ce8e534a", - "start": { - "$date": "2021-04-07T04:42:01.000Z" - }, - "end": { - "$date": "2021-04-07T06:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "a674ed81-2c5f-43c2-a597-e12d25f3ca72", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-07T14:19:53.000Z" - }, - "end": { - "$date": "2021-04-07T14:41:50.000Z" - }, - "events": [ - { - "uuid": "3575a184-9c68-4931-afd2-a2852edd0921", - "start": { - "$date": "2021-04-07T14:19:53.000Z" - }, - "end": { - "$date": "2021-04-07T14:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15be835c-0941-4e3c-b33f-08a334368100", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-07T17:42:38.000Z" - }, - "end": { - "$date": "2021-04-07T18:01:27.000Z" - }, - "events": [ - { - "uuid": "c9af88be-d24c-4ede-a384-9f3fa9de0df0", - "start": { - "$date": "2021-04-07T17:42:38.000Z" - }, - "end": { - "$date": "2021-04-07T18:01:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0487c9ae-5fa9-4cda-b361-3c273eb07335", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-07T18:31:31.000Z" - }, - "end": { - "$date": "2021-04-07T18:49:25.000Z" - }, - "events": [ - { - "uuid": "ef817bd2-06bd-4a9a-b898-85a07941d773", - "start": { - "$date": "2021-04-07T18:31:31.000Z" - }, - "end": { - "$date": "2021-04-07T18:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5abfd9fa-5758-4edc-b6fb-c5d01fa10068", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-07T19:34:26.000Z" - }, - "end": { - "$date": "2021-04-07T19:36:41.000Z" - }, - "events": [ - { - "uuid": "2d9546f2-e631-4b8a-a675-acefed07e922", - "start": { - "$date": "2021-04-07T19:34:26.000Z" - }, - "end": { - "$date": "2021-04-07T19:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "090a7424-40b9-441f-892f-aded42131887", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-07T19:36:01.000Z" - }, - "end": { - "$date": "2021-04-07T20:58:08.000Z" - }, - "events": [ - { - "uuid": "e8de3f71-74ee-4184-a998-5b568abd40ef", - "start": { - "$date": "2021-04-07T19:36:01.000Z" - }, - "end": { - "$date": "2021-04-07T20:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d0047aa3-6a1b-4dc2-852d-7a7a9295b7db", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-07T19:40:17.000Z" - }, - "end": { - "$date": "2021-04-07T19:52:49.000Z" - }, - "events": [ - { - "uuid": "791bc08a-7bcf-46a1-9bdf-c5e20b2e2e5b", - "start": { - "$date": "2021-04-07T19:40:17.000Z" - }, - "end": { - "$date": "2021-04-07T19:52:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "04dce7ed-d8de-40be-993d-999a39f43fa8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-07T19:40:43.000Z" - }, - "end": { - "$date": "2021-04-07T19:55:38.000Z" - }, - "events": [ - { - "uuid": "ae7d5cab-15a8-4ff0-8706-50ddfa1c6c21", - "start": { - "$date": "2021-04-07T19:40:43.000Z" - }, - "end": { - "$date": "2021-04-07T19:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f2a4f581-e775-4a59-b2a0-e1f389bc3353", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-07T19:56:50.000Z" - }, - "end": { - "$date": "2021-04-07T21:23:17.000Z" - }, - "events": [ - { - "uuid": "5412afd7-5104-4586-89d0-140a25ee9624", - "start": { - "$date": "2021-04-07T19:56:50.000Z" - }, - "end": { - "$date": "2021-04-07T21:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "eb264150-b1b0-4e00-bc75-1ad0e3af03d5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-07T21:01:23.000Z" - }, - "end": { - "$date": "2021-04-08T00:35:37.000Z" - }, - "events": [ - { - "uuid": "2c97631d-1da0-4aa4-a6ac-77d58e6c6c42", - "start": { - "$date": "2021-04-07T21:01:23.000Z" - }, - "end": { - "$date": "2021-04-08T00:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cc285abf-6a0e-47cf-a7bd-409788d2ee6c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-07T21:28:15.000Z" - }, - "end": { - "$date": "2021-04-07T21:48:04.000Z" - }, - "events": [ - { - "uuid": "cecdf5a2-a403-4dc8-b0e8-90fa0f04d337", - "start": { - "$date": "2021-04-07T21:28:15.000Z" - }, - "end": { - "$date": "2021-04-07T21:48:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2b230b49-2dba-4d92-b532-a88e270c1715", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-07T23:26:22.000Z" - }, - "end": { - "$date": "2021-04-08T01:48:20.000Z" - }, - "events": [ - { - "uuid": "a3100b89-7884-4ba2-9d99-04d94a0f4c4a", - "start": { - "$date": "2021-04-07T23:26:22.000Z" - }, - "end": { - "$date": "2021-04-08T01:15:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5a4761a-d214-4357-8e92-de0beb602ef8", - "start": { - "$date": "2021-04-08T01:15:22.000Z" - }, - "end": { - "$date": "2021-04-08T01:17:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23b9fd6c-6b54-46d5-99a7-23cc650b2e30", - "start": { - "$date": "2021-04-08T01:17:22.000Z" - }, - "end": { - "$date": "2021-04-08T01:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6e6518fb-96fe-4bd7-b2e3-09460d4af361", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-07T23:49:10.000Z" - }, - "end": { - "$date": "2021-04-08T00:39:12.000Z" - }, - "events": [ - { - "uuid": "adb9e5fa-36a5-4f2b-bca0-3882ca3412a8", - "start": { - "$date": "2021-04-07T23:49:10.000Z" - }, - "end": { - "$date": "2021-04-08T00:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2173706c-ba8a-4f41-a859-3078bda0e4f2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-08T00:51:35.000Z" - }, - "end": { - "$date": "2021-04-08T02:40:38.000Z" - }, - "events": [ - { - "uuid": "3d734cfa-3451-4ec7-807b-7b8298b23a7e", - "start": { - "$date": "2021-04-08T00:51:35.000Z" - }, - "end": { - "$date": "2021-04-08T02:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "afa67212-4f18-4397-bccc-f889f2917e3f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-08T00:53:41.000Z" - }, - "end": { - "$date": "2021-04-08T02:40:42.000Z" - }, - "events": [ - { - "uuid": "e8a15768-172a-492c-a4d7-da19f657292a", - "start": { - "$date": "2021-04-08T00:53:41.000Z" - }, - "end": { - "$date": "2021-04-08T02:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "abf3d14d-e36a-4c1a-a39e-b025b1446346", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-08T01:02:20.000Z" - }, - "end": { - "$date": "2021-04-08T02:40:31.000Z" - }, - "events": [ - { - "uuid": "f4b0f858-d40e-47a7-be22-47af2eab0847", - "start": { - "$date": "2021-04-08T01:02:20.000Z" - }, - "end": { - "$date": "2021-04-08T02:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "091a8e57-6873-453b-b0b0-f43b6ece0423", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-08T01:16:36.000Z" - }, - "end": { - "$date": "2021-04-08T01:23:42.000Z" - }, - "events": [ - { - "uuid": "8603a3d8-067f-4889-ae4d-f4620bffc9d7", - "start": { - "$date": "2021-04-08T01:16:36.000Z" - }, - "end": { - "$date": "2021-04-08T01:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8d997016-59c5-49e2-8ae0-40f50bd0190c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-08T01:30:07.000Z" - }, - "end": { - "$date": "2021-04-08T03:27:32.000Z" - }, - "events": [ - { - "uuid": "6704fec7-19cb-4e4b-89ce-fa4c9b3f00ba", - "start": { - "$date": "2021-04-08T01:30:07.000Z" - }, - "end": { - "$date": "2021-04-08T03:27:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "807c93e9-ed82-477c-9ca1-15093b051f4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T01:46:04.000Z" - }, - "end": { - "$date": "2021-04-08T02:32:07.000Z" - }, - "events": [ - { - "uuid": "5e7c1802-79c6-41aa-ab6d-a01474eaa720", - "start": { - "$date": "2021-04-08T01:46:04.000Z" - }, - "end": { - "$date": "2021-04-08T02:32:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eb71a1fc-acde-43d4-8fda-3af5c85490ee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T01:50:41.000Z" - }, - "end": { - "$date": "2021-04-08T02:14:52.000Z" - }, - "events": [ - { - "uuid": "336dae4d-8c24-41ae-b79f-666489a911b5", - "start": { - "$date": "2021-04-08T01:50:41.000Z" - }, - "end": { - "$date": "2021-04-08T02:14:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d92e61cb-6882-48ad-8a73-0d9bd9fe42ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T02:39:31.000Z" - }, - "end": { - "$date": "2021-04-08T03:41:08.000Z" - }, - "events": [ - { - "uuid": "aa2cce69-c60f-4d2b-a3bb-3cf24f64162c", - "start": { - "$date": "2021-04-08T02:39:31.000Z" - }, - "end": { - "$date": "2021-04-08T03:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "488c8b0a-ebb8-4830-b13e-5f937bbb3d2f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T02:32:17.000Z" - }, - "end": { - "$date": "2021-04-08T03:04:08.000Z" - }, - "events": [ - { - "uuid": "717ce5ef-c219-4572-9fff-982676f77994", - "start": { - "$date": "2021-04-08T02:32:17.000Z" - }, - "end": { - "$date": "2021-04-08T03:04:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "29ab8a61-b5d9-448f-ae19-49a4abceef49", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-08T02:46:20.000Z" - }, - "end": { - "$date": "2021-04-08T03:26:06.000Z" - }, - "events": [ - { - "uuid": "ac582a6b-a5bf-43eb-a408-3123cec4cbb7", - "start": { - "$date": "2021-04-08T02:46:20.000Z" - }, - "end": { - "$date": "2021-04-08T03:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a1168c0a-8b5c-4be8-aecf-6de38b445f82", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T03:04:17.000Z" - }, - "end": { - "$date": "2021-04-08T03:41:18.000Z" - }, - "events": [ - { - "uuid": "8091fa1e-163b-44a8-8993-09363b4cda86", - "start": { - "$date": "2021-04-08T03:04:17.000Z" - }, - "end": { - "$date": "2021-04-08T03:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d522433-ab0e-4d49-9adb-ce8ca9ae8012", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-08T03:25:16.000Z" - }, - "end": { - "$date": "2021-04-08T04:05:32.000Z" - }, - "events": [ - { - "uuid": "48b3af4a-b8fa-4ec6-b5df-7873a08e2d3f", - "start": { - "$date": "2021-04-08T03:25:16.000Z" - }, - "end": { - "$date": "2021-04-08T04:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "373e36dc-73d3-4add-9570-3ca87754ea3c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-08T03:35:17.000Z" - }, - "end": { - "$date": "2021-04-08T03:41:38.000Z" - }, - "events": [ - { - "uuid": "f1f4feeb-1c67-4000-ad1b-01e36bd72c32", - "start": { - "$date": "2021-04-08T03:35:17.000Z" - }, - "end": { - "$date": "2021-04-08T03:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "12d870cf-725c-4e86-8796-f4e6e754574e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T03:41:23.000Z" - }, - "end": { - "$date": "2021-04-08T04:38:29.000Z" - }, - "events": [ - { - "uuid": "d1e714e8-bd31-4d17-ba31-848c6f135e8d", - "start": { - "$date": "2021-04-08T03:41:23.000Z" - }, - "end": { - "$date": "2021-04-08T04:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "3fbc8fa7-f129-425f-b82c-884d28a2feb6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T03:42:24.000Z" - }, - "end": { - "$date": "2021-04-08T04:09:10.000Z" - }, - "events": [ - { - "uuid": "5fcfbb58-7f17-4359-9f3a-c5cb13b13c80", - "start": { - "$date": "2021-04-08T03:42:24.000Z" - }, - "end": { - "$date": "2021-04-08T04:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "c2956087-fc1c-4861-bca9-01d455f9ad18", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-08T03:43:13.000Z" - }, - "end": { - "$date": "2021-04-08T04:38:04.000Z" - }, - "events": [ - { - "uuid": "71eca99c-e96f-4463-b076-bd988148db43", - "start": { - "$date": "2021-04-08T03:43:13.000Z" - }, - "end": { - "$date": "2021-04-08T04:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9019290-acd4-4aca-8c1c-e84fcf6a6de6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-08T04:11:02.000Z" - }, - "end": { - "$date": "2021-04-08T04:40:54.000Z" - }, - "events": [ - { - "uuid": "61209577-8f00-41c9-97a4-8a53b8c5d6cb", - "start": { - "$date": "2021-04-08T04:11:02.000Z" - }, - "end": { - "$date": "2021-04-08T04:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "d7a77889-888b-41b9-92ff-4a73b97701ef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-08T04:15:09.000Z" - }, - "end": { - "$date": "2021-04-08T04:16:19.000Z" - }, - "events": [ - { - "uuid": "79c597d6-8ad8-4895-b838-8be2da4cb5f9", - "start": { - "$date": "2021-04-08T04:15:09.000Z" - }, - "end": { - "$date": "2021-04-08T04:16:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "e6f095ed-a4bd-4121-a31f-5448e067169a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-08T04:25:31.000Z" - }, - "end": { - "$date": "2021-04-08T04:38:03.000Z" - }, - "events": [ - { - "uuid": "2d94c537-0e10-4ad1-8591-013b1884e295", - "start": { - "$date": "2021-04-08T04:25:31.000Z" - }, - "end": { - "$date": "2021-04-08T04:38:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "561041bd-fce3-4cff-a704-928eef096be9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-08T04:34:42.000Z" - }, - "end": { - "$date": "2021-04-08T05:44:59.000Z" - }, - "events": [ - { - "uuid": "c67f41ff-7d76-4f92-8966-6cf3a506cf6a", - "start": { - "$date": "2021-04-08T04:34:42.000Z" - }, - "end": { - "$date": "2021-04-08T05:44:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "567963b6-5b26-4e4d-a999-b697b9addaf0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T04:39:14.000Z" - }, - "end": { - "$date": "2021-04-08T05:38:06.000Z" - }, - "events": [ - { - "uuid": "9a65b124-33c0-4972-b5a5-ba8dbc1483e1", - "start": { - "$date": "2021-04-08T04:39:14.000Z" - }, - "end": { - "$date": "2021-04-08T05:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abbcc787-03ae-4388-a99f-d310c27f399a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-08T05:05:27.000Z" - }, - "end": { - "$date": "2021-04-08T05:40:18.000Z" - }, - "events": [ - { - "uuid": "a2a9759f-4abe-4434-9773-5cf2c38c7cc2", - "start": { - "$date": "2021-04-08T05:05:27.000Z" - }, - "end": { - "$date": "2021-04-08T05:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "be622355-6e52-458b-b888-adc96503ad08", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T05:38:16.000Z" - }, - "end": { - "$date": "2021-04-08T06:25:08.000Z" - }, - "events": [ - { - "uuid": "e277a4ab-c18b-48cb-bb09-0d4e6d9d1135", - "start": { - "$date": "2021-04-08T05:38:16.000Z" - }, - "end": { - "$date": "2021-04-08T06:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d8876cf2-501b-4660-b5f3-13c56e905d18", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T05:45:31.000Z" - }, - "end": { - "$date": "2021-04-08T15:03:26.000Z" - }, - "events": [ - { - "uuid": "d057a90e-c0ab-4ad8-8959-a47b6af953ab", - "start": { - "$date": "2021-04-08T05:45:31.000Z" - }, - "end": { - "$date": "2021-04-08T08:57:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed73a22b-a2fb-4c31-a675-b43c5be2c405", - "start": { - "$date": "2021-04-08T08:57:31.000Z" - }, - "end": { - "$date": "2021-04-08T09:02:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b8830829-971c-4d3d-b5db-c77b0993e7f8", - "start": { - "$date": "2021-04-08T09:02:31.000Z" - }, - "end": { - "$date": "2021-04-08T09:12:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dad23c6a-dc50-4762-8fc6-93b8959b2b16", - "start": { - "$date": "2021-04-08T09:12:31.000Z" - }, - "end": { - "$date": "2021-04-08T09:51:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a7281704-5a5a-458f-92aa-f39ae5612ebb", - "start": { - "$date": "2021-04-08T09:51:31.000Z" - }, - "end": { - "$date": "2021-04-08T10:02:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3a4fe082-4222-4a6a-9eac-179392495d20", - "start": { - "$date": "2021-04-08T10:02:31.000Z" - }, - "end": { - "$date": "2021-04-08T14:50:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "467acc25-99ab-4fe9-955f-f9134940d764", - "start": { - "$date": "2021-04-08T14:50:31.000Z" - }, - "end": { - "$date": "2021-04-08T14:52:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "083d3269-ac5a-4bfb-ad4d-3f539f1eaa3d", - "start": { - "$date": "2021-04-08T14:52:31.000Z" - }, - "end": { - "$date": "2021-04-08T15:03:26.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "72420a67-5dc8-4e88-98b2-05a846554949", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T14:40:28.000Z" - }, - "end": { - "$date": "2021-04-08T14:42:53.000Z" - }, - "events": [ - { - "uuid": "bcee7933-f611-4c91-9371-c0f443d0725f", - "start": { - "$date": "2021-04-08T14:40:28.000Z" - }, - "end": { - "$date": "2021-04-08T14:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "9a06f629-cc54-4812-b32e-357b93a925ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T14:43:13.000Z" - }, - "end": { - "$date": "2021-04-08T15:40:54.000Z" - }, - "events": [ - { - "uuid": "e18534bb-79a8-4224-93fe-d8f7c980a5fe", - "start": { - "$date": "2021-04-08T14:43:13.000Z" - }, - "end": { - "$date": "2021-04-08T15:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5392d947-6731-4832-8100-ad6298484a39", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-08T14:43:53.000Z" - }, - "end": { - "$date": "2021-04-08T16:55:30.000Z" - }, - "events": [ - { - "uuid": "a11eec16-4e9a-4be4-a9f3-a23141703bb4", - "start": { - "$date": "2021-04-08T14:43:53.000Z" - }, - "end": { - "$date": "2021-04-08T16:55:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "35dd05d3-d424-4bba-b1a7-a603c6958f3b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T15:05:02.000Z" - }, - "end": { - "$date": "2021-04-08T18:33:36.000Z" - }, - "events": [ - { - "uuid": "6a6d6eb0-642a-4e26-9580-27abd1934d84", - "start": { - "$date": "2021-04-08T15:05:02.000Z" - }, - "end": { - "$date": "2021-04-08T18:18:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9fbb684b-cf60-40bb-accf-b29d8bea49f6", - "start": { - "$date": "2021-04-08T18:18:02.000Z" - }, - "end": { - "$date": "2021-04-08T18:23:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d56fb295-f2cf-40e5-beac-6e4c8e038b8e", - "start": { - "$date": "2021-04-08T18:23:02.000Z" - }, - "end": { - "$date": "2021-04-08T18:33:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7f1f338-afc9-45f6-be9a-38c754f4af2a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-08T16:10:33.000Z" - }, - "end": { - "$date": "2021-04-08T16:46:19.000Z" - }, - "events": [ - { - "uuid": "9b581c20-cd25-4e14-9f26-ea2958b9e967", - "start": { - "$date": "2021-04-08T16:10:33.000Z" - }, - "end": { - "$date": "2021-04-08T16:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "759a2dab-3b75-40c2-a7e3-ae3e9b9a2929", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-08T17:13:01.000Z" - }, - "end": { - "$date": "2021-04-08T17:33:48.000Z" - }, - "events": [ - { - "uuid": "92f7cbc7-e7ec-4dfe-ae52-347c91f63b78", - "start": { - "$date": "2021-04-08T17:13:01.000Z" - }, - "end": { - "$date": "2021-04-08T17:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fc55fa89-734f-4310-81ce-1ba99c1ed210", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-08T18:37:49.000Z" - }, - "end": { - "$date": "2021-04-08T20:02:35.000Z" - }, - "events": [ - { - "uuid": "3790ee17-a80b-4496-b61c-fc946abd298e", - "start": { - "$date": "2021-04-08T18:37:49.000Z" - }, - "end": { - "$date": "2021-04-08T20:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4321541e-dfe5-4b25-9fb8-5ca9b1c44e7c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-08T19:13:59.000Z" - }, - "end": { - "$date": "2021-04-08T19:50:56.000Z" - }, - "events": [ - { - "uuid": "90adb968-51e2-44f3-899b-f22baebca442", - "start": { - "$date": "2021-04-08T19:13:59.000Z" - }, - "end": { - "$date": "2021-04-08T19:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b8d59a58-5cb7-4fb7-bc9c-f9fde177e850", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-08T19:30:37.000Z" - }, - "end": { - "$date": "2021-04-08T20:43:28.000Z" - }, - "events": [ - { - "uuid": "93fe7350-f785-4b88-9ff8-fa1ca15ec3f1", - "start": { - "$date": "2021-04-08T19:30:37.000Z" - }, - "end": { - "$date": "2021-04-08T20:43:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8e942083-3d16-4d01-a951-ad540c0cc669", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T19:37:07.000Z" - }, - "end": { - "$date": "2021-04-08T19:48:27.000Z" - }, - "events": [ - { - "uuid": "25d10310-a641-4aab-8be0-03cc1d71d9a0", - "start": { - "$date": "2021-04-08T19:37:07.000Z" - }, - "end": { - "$date": "2021-04-08T19:38:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c37cb94d-1cc4-453f-b3dc-ae0e92223a20", - "start": { - "$date": "2021-04-08T19:38:07.000Z" - }, - "end": { - "$date": "2021-04-08T19:48:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2e0b21f3-a648-4b68-ba2b-3977ef1cfc7e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-08T21:26:23.000Z" - }, - "end": { - "$date": "2021-04-09T00:35:10.000Z" - }, - "events": [ - { - "uuid": "c4f419bd-7328-4cb9-8fd5-4be8f7cccfff", - "start": { - "$date": "2021-04-08T21:26:23.000Z" - }, - "end": { - "$date": "2021-04-09T00:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fa5d4411-596e-4390-b65b-893ec09085f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-08T22:12:58.000Z" - }, - "end": { - "$date": "2021-04-09T00:18:33.000Z" - }, - "events": [ - { - "uuid": "48623775-a44b-4618-87f0-ae1f77bacb8c", - "start": { - "$date": "2021-04-08T22:12:58.000Z" - }, - "end": { - "$date": "2021-04-09T00:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0bb86c5-eef5-462a-baaa-5873e9fdadf0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-08T23:27:50.000Z" - }, - "end": { - "$date": "2021-04-08T23:47:47.000Z" - }, - "events": [ - { - "uuid": "40aac598-7c21-4c08-9578-90a82c370f4e", - "start": { - "$date": "2021-04-08T23:27:50.000Z" - }, - "end": { - "$date": "2021-04-08T23:47:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "270161d9-3f01-46db-a79a-aaa557079ae1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-08T23:29:55.000Z" - }, - "end": { - "$date": "2021-04-08T23:47:48.000Z" - }, - "events": [ - { - "uuid": "c9f27896-ee8c-481d-b876-858890d1225e", - "start": { - "$date": "2021-04-08T23:29:55.000Z" - }, - "end": { - "$date": "2021-04-08T23:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "15ea34e7-420f-499a-9b6d-1ea23afa78d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-08T23:39:39.000Z" - }, - "end": { - "$date": "2021-04-09T05:36:53.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-08T23:39:39.000Z" - }, - "end": { - "$date": "2021-04-09T05:36:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f66e6b07-9672-4861-8e13-e41510829b26", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-08T23:41:37.000Z" - }, - "end": { - "$date": "2021-04-08T23:47:18.000Z" - }, - "events": [ - { - "uuid": "96169fe9-8dd6-4062-bcb1-434eb1a80b74", - "start": { - "$date": "2021-04-08T23:41:37.000Z" - }, - "end": { - "$date": "2021-04-08T23:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "044d5465-fa13-4410-aadd-33f0c48ca482", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-08T23:51:31.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:04.000Z" - }, - "events": [ - { - "uuid": "348e3722-83a7-4598-a02a-e47b9f59975b", - "start": { - "$date": "2021-04-08T23:51:31.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe716c72-0588-4296-922f-0aa8cacfa866", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-08T23:51:36.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:01.000Z" - }, - "events": [ - { - "uuid": "caee37a5-17c0-4db2-8dc1-2686f286139e", - "start": { - "$date": "2021-04-08T23:51:36.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d9f8cf0-3274-47c7-937b-6e16c2176808", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-08T23:51:26.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:04.000Z" - }, - "events": [ - { - "uuid": "de4b9eca-b3e2-4edb-bcbb-34fb1d34c274", - "start": { - "$date": "2021-04-08T23:51:26.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bbcf3a1-24fc-4e48-a8b0-7c269a7c5213", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-08T23:51:56.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:00.000Z" - }, - "events": [ - { - "uuid": "a01a5450-1a65-498a-9118-d3807b6528f5", - "start": { - "$date": "2021-04-08T23:51:56.000Z" - }, - "end": { - "$date": "2021-04-09T00:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5db46715-c944-4e34-98b3-3fa1405dbe7e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-09T00:23:57.000Z" - }, - "end": { - "$date": "2021-04-09T00:40:34.000Z" - }, - "events": [ - { - "uuid": "38a3c1ec-54db-4a0f-a9f9-20c0d6f17b46", - "start": { - "$date": "2021-04-09T00:23:57.000Z" - }, - "end": { - "$date": "2021-04-09T00:40:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "099ca11f-b424-4cf8-98a7-3f2ed3dff5db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-09T00:24:36.000Z" - }, - "end": { - "$date": "2021-04-09T00:40:35.000Z" - }, - "events": [ - { - "uuid": "b8f27b0d-32fa-4747-b9a3-da3411327a97", - "start": { - "$date": "2021-04-09T00:24:36.000Z" - }, - "end": { - "$date": "2021-04-09T00:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3daed6a-918b-40fd-aff5-a432ef24feee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-09T00:24:36.000Z" - }, - "end": { - "$date": "2021-04-09T00:40:38.000Z" - }, - "events": [ - { - "uuid": "ea47eb44-7320-49eb-9211-6fa3bae41804", - "start": { - "$date": "2021-04-09T00:24:36.000Z" - }, - "end": { - "$date": "2021-04-09T00:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "825f8198-d6a5-4c4e-bf4b-aac823e2e498", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-09T01:11:56.000Z" - }, - "end": { - "$date": "2021-04-09T02:34:52.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-09T01:11:56.000Z" - }, - "end": { - "$date": "2021-04-09T02:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "021504a7-d805-422d-bb9f-bcad7db058bd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-09T01:57:49.000Z" - }, - "end": { - "$date": "2021-04-09T03:11:19.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-09T01:57:49.000Z" - }, - "end": { - "$date": "2021-04-09T03:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d572917d-2484-4f67-b16c-030f550853a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T01:57:55.000Z" - }, - "end": { - "$date": "2021-04-09T03:10:23.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-09T01:57:55.000Z" - }, - "end": { - "$date": "2021-04-09T03:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9c378c5-abba-423a-a683-baf654d0d53b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-09T02:56:40.000Z" - }, - "end": { - "$date": "2021-04-09T04:19:18.000Z" - }, - "events": [ - { - "uuid": "f5954269-09fd-4215-aa91-f81a395c607d", - "start": { - "$date": "2021-04-09T02:56:40.000Z" - }, - "end": { - "$date": "2021-04-09T04:19:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "277a6080-fdc7-4437-b588-f7bed01e18e5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-09T03:08:38.000Z" - }, - "end": { - "$date": "2021-04-09T04:19:33.000Z" - }, - "events": [ - { - "uuid": "d303e404-8e92-4a8b-b1e8-bcccf93078e8", - "start": { - "$date": "2021-04-09T03:08:38.000Z" - }, - "end": { - "$date": "2021-04-09T04:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "98ea134f-6a0c-436b-a27c-7e1c51fcb7a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-09T03:10:39.000Z" - }, - "end": { - "$date": "2021-04-09T04:19:10.000Z" - }, - "events": [ - { - "uuid": "ec918fda-1286-4dd1-8caa-ac82d3013146", - "start": { - "$date": "2021-04-09T03:10:39.000Z" - }, - "end": { - "$date": "2021-04-09T04:19:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "9f8393d5-f5c6-42b8-afbb-fcc69f472b17", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T03:10:58.000Z" - }, - "end": { - "$date": "2021-04-09T03:47:04.000Z" - }, - "events": [ - { - "uuid": "212f32b8-ad60-4a88-a43e-28045b3ac1b1", - "start": { - "$date": "2021-04-09T03:10:58.000Z" - }, - "end": { - "$date": "2021-04-09T03:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1312132b-1189-4a86-a5af-342686976cbd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-09T03:57:55.000Z" - }, - "end": { - "$date": "2021-04-09T05:38:04.000Z" - }, - "events": [ - { - "uuid": "9bbe882b-8433-424b-b0b9-af8be68619aa", - "start": { - "$date": "2021-04-09T03:57:55.000Z" - }, - "end": { - "$date": "2021-04-09T05:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ffb01047-cc8e-4e42-8f0d-b893078d99e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T04:07:21.000Z" - }, - "end": { - "$date": "2021-04-09T04:59:02.000Z" - }, - "events": [ - { - "uuid": "f5fa5eef-c948-4fe3-8e1a-111a2577bbb5", - "start": { - "$date": "2021-04-09T04:07:21.000Z" - }, - "end": { - "$date": "2021-04-09T04:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f5812700-fe66-48ee-9acf-59fafdf16c85", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-09T04:09:30.000Z" - }, - "end": { - "$date": "2021-04-09T04:55:55.000Z" - }, - "events": [ - { - "uuid": "41774644-9f30-4cc1-990c-9a68a694678b", - "start": { - "$date": "2021-04-09T04:09:30.000Z" - }, - "end": { - "$date": "2021-04-09T04:55:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "196f0fc7-caac-414b-b580-ffc67533e614", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-09T04:15:48.000Z" - }, - "end": { - "$date": "2021-04-09T04:40:08.000Z" - }, - "events": [ - { - "uuid": "a126702c-d528-46f5-8bce-c4cd253b1d3e", - "start": { - "$date": "2021-04-09T04:15:48.000Z" - }, - "end": { - "$date": "2021-04-09T04:40:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "417ef05c-0174-4485-a740-a194ae6a442e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-09T04:22:37.000Z" - }, - "end": { - "$date": "2021-04-09T06:52:50.000Z" - }, - "events": [ - { - "uuid": "5f35d363-1d27-4804-b472-92743fb44f83", - "start": { - "$date": "2021-04-09T04:22:37.000Z" - }, - "end": { - "$date": "2021-04-09T06:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6525224b-45f2-4b59-aee8-1345cdb96108", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T04:59:42.000Z" - }, - "end": { - "$date": "2021-04-09T05:03:57.000Z" - }, - "events": [ - { - "uuid": "eb398ec6-1a95-4df8-a905-13cb22289112", - "start": { - "$date": "2021-04-09T04:59:42.000Z" - }, - "end": { - "$date": "2021-04-09T05:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3790ab13-8005-42c7-a110-1077d29f2d59", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-09T05:04:26.000Z" - }, - "end": { - "$date": "2021-04-09T05:24:56.000Z" - }, - "events": [ - { - "uuid": "a09f551a-8541-4bbf-982e-0c20f752e51d", - "start": { - "$date": "2021-04-09T05:04:26.000Z" - }, - "end": { - "$date": "2021-04-09T05:24:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3072188f-478f-4f45-84e6-68bcdced4cf7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-09T05:18:42.000Z" - }, - "end": { - "$date": "2021-04-09T05:44:17.000Z" - }, - "events": [ - { - "uuid": "a37fcba6-1bed-4142-a5d0-8b0b2aa0418f", - "start": { - "$date": "2021-04-09T05:18:42.000Z" - }, - "end": { - "$date": "2021-04-09T05:44:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c6561b8-d834-43b6-9de7-2d7d9e868a0f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-09T05:29:31.000Z" - }, - "end": { - "$date": "2021-04-09T05:47:56.000Z" - }, - "events": [ - { - "uuid": "b9c84aa9-0bee-49a2-ab69-8abf44d1e347", - "start": { - "$date": "2021-04-09T05:29:31.000Z" - }, - "end": { - "$date": "2021-04-09T05:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "36bd4a97-f420-45b5-8f56-b6d3825b4cdd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-09T14:16:53.000Z" - }, - "end": { - "$date": "2021-04-09T14:18:48.000Z" - }, - "events": [ - { - "uuid": "51ba1526-4326-463c-a29c-189fdac9161d", - "start": { - "$date": "2021-04-09T14:16:53.000Z" - }, - "end": { - "$date": "2021-04-09T14:18:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f60ce6a6-abb4-4b9a-be58-88e1d38e6615", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-09T14:19:08.000Z" - }, - "end": { - "$date": "2021-04-09T16:14:01.000Z" - }, - "events": [ - { - "uuid": "eaddb8db-a9b8-4fdc-8f84-56c0250623bb", - "start": { - "$date": "2021-04-09T14:19:08.000Z" - }, - "end": { - "$date": "2021-04-09T16:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "91a9b439-3c60-4bcb-afd9-bb2cd2c34ade", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T14:25:35.000Z" - }, - "end": { - "$date": "2021-04-09T14:49:58.000Z" - }, - "events": [ - { - "uuid": "a35d59f6-f834-40a7-b9f0-33d6bad5c042", - "start": { - "$date": "2021-04-09T14:25:35.000Z" - }, - "end": { - "$date": "2021-04-09T14:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "6bb8f808-166e-4f6f-9bb2-8f8b3703d1d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T14:50:28.000Z" - }, - "end": { - "$date": "2021-04-09T15:27:27.000Z" - }, - "events": [ - { - "uuid": "be6a4828-8b47-477e-b235-714c18d04a18", - "start": { - "$date": "2021-04-09T14:50:28.000Z" - }, - "end": { - "$date": "2021-04-09T15:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c965e2b-bfb1-49b3-bbda-46c6fec8564d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-09T15:23:24.000Z" - }, - "end": { - "$date": "2021-04-09T15:44:28.000Z" - }, - "events": [ - { - "uuid": "97409478-f735-4d1b-a027-cf7d9e06b2e6", - "start": { - "$date": "2021-04-09T15:23:24.000Z" - }, - "end": { - "$date": "2021-04-09T15:44:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b5eb7c23-c24a-46be-b1aa-18d73e4363c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-09T15:28:02.000Z" - }, - "end": { - "$date": "2021-04-09T16:00:11.000Z" - }, - "events": [ - { - "uuid": "2320e721-7c69-4cb2-9e54-87cc8b925156", - "start": { - "$date": "2021-04-09T15:28:02.000Z" - }, - "end": { - "$date": "2021-04-09T16:00:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "bbf196f2-5ebb-4106-b2b5-9cc15e5e6d5e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-09T16:23:08.000Z" - }, - "end": { - "$date": "2021-04-09T16:45:16.000Z" - }, - "events": [ - { - "uuid": "d254dbd1-1c05-4d5d-9509-d83bbfcc4062", - "start": { - "$date": "2021-04-09T16:23:08.000Z" - }, - "end": { - "$date": "2021-04-09T16:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e302195e-a7c4-4a14-b43c-f1f5a58bba4e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-09T17:41:36.000Z" - }, - "end": { - "$date": "2021-04-09T19:26:35.000Z" - }, - "events": [ - { - "uuid": "f9557dc1-d893-46f2-9ebc-59bf91b317d6", - "start": { - "$date": "2021-04-09T17:41:36.000Z" - }, - "end": { - "$date": "2021-04-09T19:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4a3d0f8f-a7ac-48e4-999c-5c92c714b547", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-09T17:47:34.000Z" - }, - "end": { - "$date": "2021-04-09T19:08:59.000Z" - }, - "events": [ - { - "uuid": "763eea0c-63a6-41ff-a7a9-8ca37d5f60a8", - "start": { - "$date": "2021-04-09T17:47:34.000Z" - }, - "end": { - "$date": "2021-04-09T19:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ff51da67-7764-46f0-a3c4-396b8d8a79a7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-09T19:48:32.000Z" - }, - "end": { - "$date": "2021-04-09T19:49:03.000Z" - }, - "events": [ - { - "uuid": "067d747c-07e8-4ab9-a459-608bed1afe77", - "start": { - "$date": "2021-04-09T19:48:32.000Z" - }, - "end": { - "$date": "2021-04-09T19:49:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9acdb532-d155-4cbf-95eb-d1a1e9071137", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-09T19:47:30.000Z" - }, - "end": { - "$date": "2021-04-09T19:50:22.000Z" - }, - "events": [ - { - "uuid": "aa6faea9-efbe-4c34-9deb-ae1e3bb5bf9f", - "start": { - "$date": "2021-04-09T19:47:30.000Z" - }, - "end": { - "$date": "2021-04-09T19:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fe5b5ea-f3ec-4fb2-a643-b56aedac6c1f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-09T19:54:56.000Z" - }, - "end": { - "$date": "2021-04-09T20:23:00.000Z" - }, - "events": [ - { - "uuid": "575ef969-39dc-49ba-aa9a-c3ce6d3d94ac", - "start": { - "$date": "2021-04-09T19:54:56.000Z" - }, - "end": { - "$date": "2021-04-09T20:23:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "61468dfc-7068-4e9a-ab94-2b1a0311133b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-09T19:54:43.000Z" - }, - "end": { - "$date": "2021-04-10T00:42:02.000Z" - }, - "events": [ - { - "uuid": "705acda0-6182-44a9-b8e3-d3fa4d1b132c", - "start": { - "$date": "2021-04-09T19:54:43.000Z" - }, - "end": { - "$date": "2021-04-10T00:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a4e42f97-07a0-44de-96d8-0a54caf6075f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-09T19:48:32.000Z" - }, - "end": { - "$date": "2021-04-09T23:42:41.000Z" - }, - "events": [ - { - "uuid": "f5c27eee-4823-47f4-8c49-78d927ff8924", - "start": { - "$date": "2021-04-09T19:48:32.000Z" - }, - "end": { - "$date": "2021-04-09T23:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ef2b320-48ca-4910-92db-23b1e3956cfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-09T20:32:38.000Z" - }, - "end": { - "$date": "2021-04-09T20:50:17.000Z" - }, - "events": [ - { - "uuid": "b4fafbd1-c3d7-4016-8390-5ff71b4fac43", - "start": { - "$date": "2021-04-09T20:32:38.000Z" - }, - "end": { - "$date": "2021-04-09T20:50:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "37b88cfb-330a-455f-9cae-9e1737ab14e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-09T21:51:26.000Z" - }, - "end": { - "$date": "2021-04-09T23:27:40.000Z" - }, - "events": [ - { - "uuid": "5a24aa48-141f-4bf5-ac8e-4e71dd25c396", - "start": { - "$date": "2021-04-09T21:51:26.000Z" - }, - "end": { - "$date": "2021-04-09T23:27:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "62ccbcea-bf79-4088-8ec0-7474b25af580", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-09T23:48:17.000Z" - }, - "end": { - "$date": "2021-04-10T00:22:11.000Z" - }, - "events": [ - { - "uuid": "b7175b4e-94e6-4d73-b6af-5fd5f9f5ea9c", - "start": { - "$date": "2021-04-09T23:48:17.000Z" - }, - "end": { - "$date": "2021-04-10T00:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "dcccd9d2-6a38-4faa-b1e0-01f96e8d11f5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-10T00:00:16.000Z" - }, - "end": { - "$date": "2021-04-10T00:01:34.000Z" - }, - "events": [ - { - "uuid": "85f9c286-d7cc-4b3b-845d-92a64f02f06f", - "start": { - "$date": "2021-04-10T00:00:16.000Z" - }, - "end": { - "$date": "2021-04-10T00:01:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0b4acba5-601b-4472-9f6c-f7a703ae15e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-10T00:02:13.000Z" - }, - "end": { - "$date": "2021-04-10T03:42:17.000Z" - }, - "events": [ - { - "uuid": "22823ade-ff8d-478a-b704-3c0ea02eabdc", - "start": { - "$date": "2021-04-10T00:02:13.000Z" - }, - "end": { - "$date": "2021-04-10T03:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "75018c0f-ffb4-459c-a83e-1de5bf791555", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-10T00:31:18.000Z" - }, - "end": { - "$date": "2021-04-10T00:32:58.000Z" - }, - "events": [ - { - "uuid": "6fb9704f-6216-4f90-b899-c0534ba75893", - "start": { - "$date": "2021-04-10T00:31:18.000Z" - }, - "end": { - "$date": "2021-04-10T00:32:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "492989bb-7498-46ed-945f-afc750b94b55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-10T00:43:58.000Z" - }, - "end": { - "$date": "2021-04-10T01:23:00.000Z" - }, - "events": [ - { - "uuid": "635b8659-f9e6-4e49-a2be-a13d34ccbcf4", - "start": { - "$date": "2021-04-10T00:43:58.000Z" - }, - "end": { - "$date": "2021-04-10T01:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71dd54d2-1b64-4a22-8f06-02c5560d571b", - "uuid": "0fe638ae-a932-4391-86e6-f320825df6f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-10T01:04:12.000Z" - }, - "end": { - "$date": "2021-04-10T01:47:18.000Z" - }, - "events": [ - { - "uuid": "13800ef7-645e-467e-a3b9-70952dfab2e9", - "start": { - "$date": "2021-04-10T01:04:12.000Z" - }, - "end": { - "$date": "2021-04-10T01:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0b779db7-a7be-45e5-bfd8-ee4877e1f279", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-10T01:24:05.000Z" - }, - "end": { - "$date": "2021-04-10T02:25:45.000Z" - }, - "events": [ - { - "uuid": "5208e1e9-92de-4673-b84c-502c9c396e33", - "start": { - "$date": "2021-04-10T01:24:05.000Z" - }, - "end": { - "$date": "2021-04-10T02:25:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1b85f49f-7b22-4be6-ad67-9ef18920ef6b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-10T01:40:44.000Z" - }, - "end": { - "$date": "2021-04-10T10:44:42.000Z" - }, - "events": [ - { - "uuid": "de2e0a3f-2c2e-413b-aeef-765c9d54c1a0", - "start": { - "$date": "2021-04-10T01:40:44.000Z" - }, - "end": { - "$date": "2021-04-10T10:44:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d67c8f75-8f19-4c5b-bdba-363ba85765c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T02:26:02.000Z" - }, - "end": { - "$date": "2021-04-10T02:28:12.000Z" - }, - "events": [ - { - "uuid": "6dbaae92-f228-4f5d-a1bd-c86f6454f5e5", - "start": { - "$date": "2021-04-10T02:26:02.000Z" - }, - "end": { - "$date": "2021-04-10T02:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "90336e62-f938-4757-a2f9-af18f553b496", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-10T02:26:05.000Z" - }, - "end": { - "$date": "2021-04-10T05:33:38.000Z" - }, - "events": [ - { - "uuid": "5f923292-0c8c-481e-b03f-2c41aa811662", - "start": { - "$date": "2021-04-10T02:26:05.000Z" - }, - "end": { - "$date": "2021-04-10T05:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9f2f0185-b0c5-4986-810e-06bd61f306c8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-10T02:28:30.000Z" - }, - "end": { - "$date": "2021-04-10T04:05:20.000Z" - }, - "events": [ - { - "uuid": "0501b3b7-ead8-4f91-b1e0-90995ff18f54", - "start": { - "$date": "2021-04-10T02:28:30.000Z" - }, - "end": { - "$date": "2021-04-10T04:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "da4cd20f-39b0-4852-8c37-65c801f44299", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-10T08:55:21.000Z" - }, - "end": { - "$date": "2021-04-10T08:58:12.000Z" - }, - "events": [ - { - "uuid": "8442f681-0a7a-4f57-b488-a05807e20223", - "start": { - "$date": "2021-04-10T08:55:21.000Z" - }, - "end": { - "$date": "2021-04-10T08:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9a76833a-7476-4fc7-bbcd-f7d7cef8e248", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T02:29:37.000Z" - }, - "end": { - "$date": "2021-04-10T04:05:29.000Z" - }, - "events": [ - { - "uuid": "1eba9c57-7e5a-4284-8f09-9d36ca083973", - "start": { - "$date": "2021-04-10T02:29:37.000Z" - }, - "end": { - "$date": "2021-04-10T04:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "87ef6a61-9983-4b99-ac76-f7749f8aa522", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-10T02:46:23.000Z" - }, - "end": { - "$date": "2021-04-10T05:01:38.000Z" - }, - "events": [ - { - "uuid": "b2ae8ae1-ff30-4c93-b833-bcd8d2f3823e", - "start": { - "$date": "2021-04-10T02:46:23.000Z" - }, - "end": { - "$date": "2021-04-10T05:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "e7d76e09-faad-4548-99f6-abf9c47a7c56", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-10T03:35:50.000Z" - }, - "end": { - "$date": "2021-04-10T04:59:08.000Z" - }, - "events": [ - { - "uuid": "0d82bd53-2a31-4682-a080-145348cada3e", - "start": { - "$date": "2021-04-10T03:35:50.000Z" - }, - "end": { - "$date": "2021-04-10T04:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "06a53e7f-cb40-4511-8089-5c717b7ace48", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T04:09:14.000Z" - }, - "end": { - "$date": "2021-04-10T04:56:15.000Z" - }, - "events": [ - { - "uuid": "74319750-2ba8-44c9-8ceb-cde96b29b453", - "start": { - "$date": "2021-04-10T04:09:14.000Z" - }, - "end": { - "$date": "2021-04-10T04:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "e26dd1be-cecf-4466-b459-0595e134677c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-10T04:18:07.000Z" - }, - "end": { - "$date": "2021-04-10T04:59:05.000Z" - }, - "events": [ - { - "uuid": "9a9b7f3a-fd92-4bb5-b4c9-7a2497ed56d8", - "start": { - "$date": "2021-04-10T04:18:07.000Z" - }, - "end": { - "$date": "2021-04-10T04:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fc2dc709-b11c-457a-80d7-7271f30ad758", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-10T04:33:09.000Z" - }, - "end": { - "$date": "2021-04-10T05:22:44.000Z" - }, - "events": [ - { - "uuid": "0e99fd10-fc88-4ec0-a2de-588e766e445d", - "start": { - "$date": "2021-04-10T04:33:09.000Z" - }, - "end": { - "$date": "2021-04-10T05:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "d4d2c2a7-d539-4b7c-9dc6-e3b4afe9f92a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T05:05:36.000Z" - }, - "end": { - "$date": "2021-04-10T05:09:11.000Z" - }, - "events": [ - { - "uuid": "c9c9a6ca-0a1b-43d5-a1fc-1015907a4ba7", - "start": { - "$date": "2021-04-10T05:05:36.000Z" - }, - "end": { - "$date": "2021-04-10T05:09:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "ce19fbc4-e691-419f-959c-1333114bdf2f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-10T05:06:42.000Z" - }, - "end": { - "$date": "2021-04-10T05:08:23.000Z" - }, - "events": [ - { - "uuid": "13003f27-e868-4c6a-9ea0-df649c81d5d1", - "start": { - "$date": "2021-04-10T05:06:42.000Z" - }, - "end": { - "$date": "2021-04-10T05:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "39883c04-fd2c-4082-878b-81640ece7397", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-10T05:08:28.000Z" - }, - "end": { - "$date": "2021-04-10T06:27:06.000Z" - }, - "events": [ - { - "uuid": "b5d4dbe9-3e3d-4c8a-8664-1e24ed827ebc", - "start": { - "$date": "2021-04-10T05:08:28.000Z" - }, - "end": { - "$date": "2021-04-10T06:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "c5a145e7-b4e6-4930-a811-ef62ae231234", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T05:09:16.000Z" - }, - "end": { - "$date": "2021-04-10T06:26:55.000Z" - }, - "events": [ - { - "uuid": "7c02c5e2-9d69-44c4-8cda-7797c81d3ce7", - "start": { - "$date": "2021-04-10T05:09:16.000Z" - }, - "end": { - "$date": "2021-04-10T06:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e7759a23-b840-4f1a-b879-06a99c0eacbb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-10T05:24:36.000Z" - }, - "end": { - "$date": "2021-04-10T08:16:56.000Z" - }, - "events": [ - { - "uuid": "e32c93fa-2e27-4989-9be1-f189966647ee", - "start": { - "$date": "2021-04-10T05:24:36.000Z" - }, - "end": { - "$date": "2021-04-10T08:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b3cd99b-d09e-47a0-a7d8-196dc159bd75", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-10T05:54:17.000Z" - }, - "end": { - "$date": "2021-04-10T06:31:37.000Z" - }, - "events": [ - { - "uuid": "40ea3aaf-e611-46e3-b3a3-4c7861b6a650", - "start": { - "$date": "2021-04-10T05:54:17.000Z" - }, - "end": { - "$date": "2021-04-10T06:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec1f4589-ee01-4657-8047-cf8f3c369078", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-10T06:34:50.000Z" - }, - "end": { - "$date": "2021-04-10T06:37:32.000Z" - }, - "events": [ - { - "uuid": "28d1ca06-e2a2-44c0-adb2-d87f8bafb466", - "start": { - "$date": "2021-04-10T06:34:50.000Z" - }, - "end": { - "$date": "2021-04-10T06:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68960519-3386-4bdd-b92a-49d1a008ef91", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-10T06:48:04.000Z" - }, - "end": { - "$date": "2021-04-10T07:10:41.000Z" - }, - "events": [ - { - "uuid": "1a2a3b9d-c432-46aa-bf16-e6bf11da7611", - "start": { - "$date": "2021-04-10T06:48:04.000Z" - }, - "end": { - "$date": "2021-04-10T07:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d38de8c-9088-47c3-bf1d-62e9bc67790c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-10T06:47:15.000Z" - }, - "end": { - "$date": "2021-04-10T07:10:45.000Z" - }, - "events": [ - { - "uuid": "8f1b932b-8aeb-441d-919b-80cefa4563f9", - "start": { - "$date": "2021-04-10T06:47:15.000Z" - }, - "end": { - "$date": "2021-04-10T07:10:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d3b7b4d-32b5-4dd7-b054-5258f769be72", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-10T07:15:00.000Z" - }, - "end": { - "$date": "2021-04-10T07:33:20.000Z" - }, - "events": [ - { - "uuid": "c9746d87-4cd1-4191-90ea-5f551a72ad37", - "start": { - "$date": "2021-04-10T07:15:00.000Z" - }, - "end": { - "$date": "2021-04-10T07:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d10e6fe-c27e-4f36-a7a3-a06c5553b08e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-10T07:15:01.000Z" - }, - "end": { - "$date": "2021-04-10T07:33:22.000Z" - }, - "events": [ - { - "uuid": "60b1853d-a9f0-4706-835b-4f8104b529ea", - "start": { - "$date": "2021-04-10T07:15:01.000Z" - }, - "end": { - "$date": "2021-04-10T07:33:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36462425-076b-484a-b8e9-a860046b63e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-10T08:12:28.000Z" - }, - "end": { - "$date": "2021-04-10T08:42:43.000Z" - }, - "events": [ - { - "uuid": "ceaabefb-5c33-494d-8c04-40be57843114", - "start": { - "$date": "2021-04-10T08:12:28.000Z" - }, - "end": { - "$date": "2021-04-10T08:42:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0227887b-9452-4a68-96b7-3def4d29bb2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T16:31:31.000Z" - }, - "end": { - "$date": "2021-04-10T17:09:32.000Z" - }, - "events": [ - { - "uuid": "1c17c5ff-641c-42ba-882e-107ec2cd8ee4", - "start": { - "$date": "2021-04-10T16:31:31.000Z" - }, - "end": { - "$date": "2021-04-10T17:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "06b1be9f-b768-4bfa-b9e5-eb8e3828f4e4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T17:09:42.000Z" - }, - "end": { - "$date": "2021-04-10T18:21:38.000Z" - }, - "events": [ - { - "uuid": "06a98c18-862d-4cf4-bc08-91da8d2b9b04", - "start": { - "$date": "2021-04-10T17:09:42.000Z" - }, - "end": { - "$date": "2021-04-10T18:21:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ef6b459b-18c3-4fe0-ad68-e4af1705ffed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-10T17:23:58.000Z" - }, - "end": { - "$date": "2021-04-10T18:56:31.000Z" - }, - "events": [ - { - "uuid": "c972c19c-f1fb-4e36-9143-cea194b78dc0", - "start": { - "$date": "2021-04-10T17:23:58.000Z" - }, - "end": { - "$date": "2021-04-10T17:57:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "07435ff6-ee1a-4811-9bb4-f787f874eb63", - "start": { - "$date": "2021-04-10T17:57:58.000Z" - }, - "end": { - "$date": "2021-04-10T17:58:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff2b8c0d-dbee-4e84-a8db-35f221b813d6", - "start": { - "$date": "2021-04-10T17:58:58.000Z" - }, - "end": { - "$date": "2021-04-10T18:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "30c71921-3b8c-4849-987d-0fa331ec654a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-10T19:16:41.000Z" - }, - "end": { - "$date": "2021-04-10T19:57:10.000Z" - }, - "events": [ - { - "uuid": "814afc29-73d4-4a00-9b38-66b31fb3244b", - "start": { - "$date": "2021-04-10T19:16:41.000Z" - }, - "end": { - "$date": "2021-04-10T19:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a7682fcd-7fdf-4c3f-a696-205187b1d93a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-10T20:00:55.000Z" - }, - "end": { - "$date": "2021-04-10T21:54:28.000Z" - }, - "events": [ - { - "uuid": "b267042d-ec8c-4bf4-98bb-9057a26e55e1", - "start": { - "$date": "2021-04-10T20:00:55.000Z" - }, - "end": { - "$date": "2021-04-10T21:54:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "80aa5e0e-b4a6-4a12-88fb-1ab749a60047", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-10T20:06:10.000Z" - }, - "end": { - "$date": "2021-04-10T20:24:44.000Z" - }, - "events": [ - { - "uuid": "97d6aa5a-4bd5-4727-9b20-8d82f828c3d6", - "start": { - "$date": "2021-04-10T20:06:10.000Z" - }, - "end": { - "$date": "2021-04-10T20:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "29c32836-f853-4f67-8314-72b278fdb40e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-10T20:29:34.000Z" - }, - "end": { - "$date": "2021-04-11T00:01:29.000Z" - }, - "events": [ - { - "uuid": "7c78951b-bae6-4a2e-b593-3c41d6c5373e", - "start": { - "$date": "2021-04-10T20:29:34.000Z" - }, - "end": { - "$date": "2021-04-11T00:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "227aad5a-356d-4eb4-a241-2461a75beaa7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-10T23:34:42.000Z" - }, - "end": { - "$date": "2021-04-11T00:07:21.000Z" - }, - "events": [ - { - "uuid": "3eccff2b-1dc9-4067-aaf5-99a01fb66916", - "start": { - "$date": "2021-04-10T23:34:42.000Z" - }, - "end": { - "$date": "2021-04-11T00:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "23bfe6b3-0cb0-4966-b394-95f5d9cbe88b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-10T20:52:55.000Z" - }, - "end": { - "$date": "2021-04-10T21:23:55.000Z" - }, - "events": [ - { - "uuid": "e7661457-0be0-4a9c-931c-b019a6a2508a", - "start": { - "$date": "2021-04-10T20:52:55.000Z" - }, - "end": { - "$date": "2021-04-10T21:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "74bdc8e5-2dbd-4015-944f-c5d3fc2d26d0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-10T20:55:21.000Z" - }, - "end": { - "$date": "2021-04-11T01:03:28.000Z" - }, - "events": [ - { - "uuid": "bda06019-c687-464f-9e63-4828f708ac8b", - "start": { - "$date": "2021-04-10T20:55:21.000Z" - }, - "end": { - "$date": "2021-04-11T00:54:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a671b560-9378-49b6-be57-c968adaa93be", - "start": { - "$date": "2021-04-11T00:54:21.000Z" - }, - "end": { - "$date": "2021-04-11T01:03:28.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1882661c-710a-4be9-be64-a64c33f50afc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-10T21:24:06.000Z" - }, - "end": { - "$date": "2021-04-10T22:39:03.000Z" - }, - "events": [ - { - "uuid": "5201cd9c-66b0-4a62-a9ee-539156c22679", - "start": { - "$date": "2021-04-10T21:24:06.000Z" - }, - "end": { - "$date": "2021-04-10T22:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0878bac7-5728-4168-8635-843cf974d356", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-10T21:55:14.000Z" - }, - "end": { - "$date": "2021-04-10T22:31:58.000Z" - }, - "events": [ - { - "uuid": "7a1a72c8-0c28-4dbe-b7a0-29646836ee49", - "start": { - "$date": "2021-04-10T21:55:14.000Z" - }, - "end": { - "$date": "2021-04-10T22:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fb3d1c43-da8d-4416-87d0-277d56c4e7b7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-10T21:59:28.000Z" - }, - "end": { - "$date": "2021-04-10T22:44:35.000Z" - }, - "events": [ - { - "uuid": "0685152e-e4d6-40dd-86b9-add2b7a4487b", - "start": { - "$date": "2021-04-10T21:59:28.000Z" - }, - "end": { - "$date": "2021-04-10T22:44:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9eccf02d-5308-4104-a3ae-c8f7b138913b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T22:17:42.000Z" - }, - "end": { - "$date": "2021-04-10T22:44:22.000Z" - }, - "events": [ - { - "uuid": "4e1adfbb-fe53-4669-9356-08f41025cec3", - "start": { - "$date": "2021-04-10T22:17:42.000Z" - }, - "end": { - "$date": "2021-04-10T22:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "12e41f7e-1fd6-4969-9b07-430ab1707721", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-10T22:47:06.000Z" - }, - "end": { - "$date": "2021-04-10T22:53:01.000Z" - }, - "events": [ - { - "uuid": "0df47471-eed9-44d4-8def-a86e3796fd24", - "start": { - "$date": "2021-04-10T22:47:06.000Z" - }, - "end": { - "$date": "2021-04-10T22:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5864e4cd-41a6-4e35-9f48-e231b437d947", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-10T22:48:07.000Z" - }, - "end": { - "$date": "2021-04-11T02:35:53.000Z" - }, - "events": [ - { - "uuid": "d4eb1e89-e6f0-4324-8a06-d2447bbdd78d", - "start": { - "$date": "2021-04-10T22:48:07.000Z" - }, - "end": { - "$date": "2021-04-11T02:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "106d0418-527b-4c7e-b005-2a252dc700d0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T01:09:16.000Z" - }, - "end": { - "$date": "2021-04-11T01:37:27.000Z" - }, - "events": [ - { - "uuid": "b8d74f82-5131-49b9-8c85-98528edd79f5", - "start": { - "$date": "2021-04-11T01:09:16.000Z" - }, - "end": { - "$date": "2021-04-11T01:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0e7ab52d-0ed4-475c-a089-222b905cff28", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-11T01:12:30.000Z" - }, - "end": { - "$date": "2021-04-11T01:24:46.000Z" - }, - "events": [ - { - "uuid": "e35862ce-fc1a-4a5b-ad1d-ea255030f6a3", - "start": { - "$date": "2021-04-11T01:12:30.000Z" - }, - "end": { - "$date": "2021-04-11T01:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2d8738e-032f-47ea-87b0-9bc2a3f693f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-11T01:42:04.000Z" - }, - "end": { - "$date": "2021-04-11T06:09:05.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-11T01:42:04.000Z" - }, - "end": { - "$date": "2021-04-11T06:09:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "968d9131-3925-47f2-83fb-5671dfcb9e96", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-11T01:46:38.000Z" - }, - "end": { - "$date": "2021-04-11T01:57:05.000Z" - }, - "events": [ - { - "uuid": "55b8bac1-a698-4585-8d9a-796a06ba8160", - "start": { - "$date": "2021-04-11T01:46:38.000Z" - }, - "end": { - "$date": "2021-04-11T01:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9532a148-3b44-4801-a0a8-95d2067facfc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T02:41:30.000Z" - }, - "end": { - "$date": "2021-04-11T03:08:57.000Z" - }, - "events": [ - { - "uuid": "3ec360bf-e45f-4c36-bf12-131e2c5f337e", - "start": { - "$date": "2021-04-11T02:41:30.000Z" - }, - "end": { - "$date": "2021-04-11T02:52:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "732d1499-41bd-419a-b8db-4488868da5eb", - "start": { - "$date": "2021-04-11T02:52:30.000Z" - }, - "end": { - "$date": "2021-04-11T03:08:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bfd5df68-078f-445d-bb30-8858b4e8a311", - "start": { - "$date": "2021-04-11T03:08:30.000Z" - }, - "end": { - "$date": "2021-04-11T03:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d1fa52f6-3d3f-4cd9-a59b-8777b74c5046", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-11T02:10:40.000Z" - }, - "end": { - "$date": "2021-04-11T04:05:26.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-11T02:10:40.000Z" - }, - "end": { - "$date": "2021-04-11T04:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ce94de30-d743-43ee-a116-a46951e0d293", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-11T02:23:18.000Z" - }, - "end": { - "$date": "2021-04-11T06:47:57.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-11T02:23:18.000Z" - }, - "end": { - "$date": "2021-04-11T06:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "26d40c04-f540-49df-9455-76465764e196", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-11T02:36:04.000Z" - }, - "end": { - "$date": "2021-04-11T05:36:36.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-11T02:36:04.000Z" - }, - "end": { - "$date": "2021-04-11T05:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6b7efedb-cd23-40dd-bab2-f53965e508f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T03:17:18.000Z" - }, - "end": { - "$date": "2021-04-11T05:10:48.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-11T03:17:18.000Z" - }, - "end": { - "$date": "2021-04-11T05:10:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c905b043-ec8d-407d-8858-d8d3191a59de", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-11T03:44:08.000Z" - }, - "end": { - "$date": "2021-04-11T06:45:41.000Z" - }, - "events": [ - { - "uuid": "0c8da962-63c0-4a78-8a1a-3e8022697192", - "start": { - "$date": "2021-04-11T03:44:08.000Z" - }, - "end": { - "$date": "2021-04-11T06:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fae4bdf2-3c97-48d1-85d1-58d62d92ac5d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-11T04:06:04.000Z" - }, - "end": { - "$date": "2021-04-11T04:32:18.000Z" - }, - "events": [ - { - "uuid": "73132943-25ba-4d91-9371-ad50d254fa95", - "start": { - "$date": "2021-04-11T04:06:04.000Z" - }, - "end": { - "$date": "2021-04-11T04:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "a9186ac9-fdae-4c12-90a0-dbd494494018", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-11T04:59:30.000Z" - }, - "end": { - "$date": "2021-04-11T06:32:25.000Z" - }, - "events": [ - { - "uuid": "3006b464-9f37-40bd-acf2-60d2c023128e", - "start": { - "$date": "2021-04-11T04:59:30.000Z" - }, - "end": { - "$date": "2021-04-11T06:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a20898fd-e29c-4619-9e24-a830068c7d3d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-11T05:31:01.000Z" - }, - "end": { - "$date": "2021-04-11T06:42:32.000Z" - }, - "events": [ - { - "uuid": "88bd105c-dbc1-432f-afc0-83e032a33aea", - "start": { - "$date": "2021-04-11T05:31:01.000Z" - }, - "end": { - "$date": "2021-04-11T06:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "654a4878-204e-41b6-8777-ec1f50f0852d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-11T05:36:46.000Z" - }, - "end": { - "$date": "2021-04-11T06:10:47.000Z" - }, - "events": [ - { - "uuid": "91c77e41-c5ba-4a22-af39-819456ffba14", - "start": { - "$date": "2021-04-11T05:36:46.000Z" - }, - "end": { - "$date": "2021-04-11T06:10:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4356b47-012e-49ce-9544-042240253eca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-11T08:03:34.000Z" - }, - "end": { - "$date": "2021-04-11T08:03:29.000Z" - }, - "events": [ - { - "uuid": "cf309d32-1aa4-41d9-981f-5609454cfd9a", - "start": { - "$date": "2021-04-11T08:03:34.000Z" - }, - "end": { - "$date": "2021-04-11T08:03:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9aa2a54f-38d9-47e8-8d20-ba2167051f44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-11T15:01:05.000Z" - }, - "end": { - "$date": "2021-04-11T15:53:32.000Z" - }, - "events": [ - { - "uuid": "f5dff155-27ca-4518-8fde-7a22c00b2322", - "start": { - "$date": "2021-04-11T15:01:05.000Z" - }, - "end": { - "$date": "2021-04-11T15:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "85817640-2a61-472a-8c1e-93fed9801e2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T16:06:38.000Z" - }, - "end": { - "$date": "2021-04-11T16:56:59.000Z" - }, - "events": [ - { - "uuid": "aa5a3a22-4d38-4225-8828-77f87919f726", - "start": { - "$date": "2021-04-11T16:06:38.000Z" - }, - "end": { - "$date": "2021-04-11T16:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2ad79211-61b9-4acc-a8c5-85822de32119", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-11T16:44:48.000Z" - }, - "end": { - "$date": "2021-04-11T17:59:28.000Z" - }, - "events": [ - { - "uuid": "67ab6d71-34a6-4498-be72-e48736af3013", - "start": { - "$date": "2021-04-11T16:44:48.000Z" - }, - "end": { - "$date": "2021-04-11T17:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e10146c5-e7f9-4ebb-a5ed-17e547f0eef1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-11T16:44:54.000Z" - }, - "end": { - "$date": "2021-04-11T19:04:00.000Z" - }, - "events": [ - { - "uuid": "580fe103-0a34-4624-9932-a95975c1a132", - "start": { - "$date": "2021-04-11T16:44:54.000Z" - }, - "end": { - "$date": "2021-04-11T19:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76a5a39d-5db9-41cc-b1f0-7f7c084dc7a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T17:02:45.000Z" - }, - "end": { - "$date": "2021-04-11T17:31:06.000Z" - }, - "events": [ - { - "uuid": "691252e0-55dd-49c7-a588-5a8a819e1ef1", - "start": { - "$date": "2021-04-11T17:02:45.000Z" - }, - "end": { - "$date": "2021-04-11T17:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2be7725f-be99-4ab1-9734-6962293bf81b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T17:32:16.000Z" - }, - "end": { - "$date": "2021-04-11T19:35:33.000Z" - }, - "events": [ - { - "uuid": "dfdc2a17-d648-4eae-8826-a85ead70f595", - "start": { - "$date": "2021-04-11T17:32:16.000Z" - }, - "end": { - "$date": "2021-04-11T19:35:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ae0b020e-e562-430d-9de2-ccc2eca4cea1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-11T18:32:47.000Z" - }, - "end": { - "$date": "2021-04-11T19:23:12.000Z" - }, - "events": [ - { - "uuid": "71923a6b-0bf9-4e5a-bc80-47ce3f955c25", - "start": { - "$date": "2021-04-11T18:32:47.000Z" - }, - "end": { - "$date": "2021-04-11T19:23:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6234a514-254f-4ced-9d56-682374551ee8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-11T19:14:30.000Z" - }, - "end": { - "$date": "2021-04-11T22:03:36.000Z" - }, - "events": [ - { - "uuid": "7dc4feae-3855-48e3-8734-7f34b208acfe", - "start": { - "$date": "2021-04-11T19:14:30.000Z" - }, - "end": { - "$date": "2021-04-11T22:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c42a71b8-ae11-4b53-9d2e-58d28d85cf56", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-11T19:39:24.000Z" - }, - "end": { - "$date": "2021-04-11T20:26:45.000Z" - }, - "events": [ - { - "uuid": "0f062464-65e9-4387-b1bf-c92dfc4e1450", - "start": { - "$date": "2021-04-11T19:39:24.000Z" - }, - "end": { - "$date": "2021-04-11T20:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fac9f486-f61d-4cae-b75c-223c405e294e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-11T20:06:24.000Z" - }, - "end": { - "$date": "2021-04-11T21:34:17.000Z" - }, - "events": [ - { - "uuid": "ed56f5b5-e6d6-4b81-a1c4-716eaf68fe9c", - "start": { - "$date": "2021-04-11T20:06:24.000Z" - }, - "end": { - "$date": "2021-04-11T21:34:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "4fcf0bcc-39fa-416a-b67d-4f41508ee137", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-11T21:12:44.000Z" - }, - "end": { - "$date": "2021-04-11T21:24:54.000Z" - }, - "events": [ - { - "uuid": "223e5f5b-8fdf-405b-83f0-b8be115a3500", - "start": { - "$date": "2021-04-11T21:12:44.000Z" - }, - "end": { - "$date": "2021-04-11T21:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dd6983d3-065e-4295-9793-9f4cca52c4b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-11T21:16:02.000Z" - }, - "end": { - "$date": "2021-04-11T21:18:27.000Z" - }, - "events": [ - { - "uuid": "68698280-f162-4395-b8e2-ebf797a9ae2f", - "start": { - "$date": "2021-04-11T21:16:02.000Z" - }, - "end": { - "$date": "2021-04-11T21:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "9dc4abd7-46c5-4e89-bb1b-4c0ccb980c56", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-11T22:21:30.000Z" - }, - "end": { - "$date": "2021-04-11T22:37:15.000Z" - }, - "events": [ - { - "uuid": "ceefc193-e640-409f-b262-25a08f8d6e3b", - "start": { - "$date": "2021-04-11T22:21:30.000Z" - }, - "end": { - "$date": "2021-04-11T22:37:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "286ed534-855d-4f37-967e-c415ecdffa31", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-11T22:25:41.000Z" - }, - "end": { - "$date": "2021-04-11T23:11:25.000Z" - }, - "events": [ - { - "uuid": "59ebb0cb-09e0-4eea-ad3d-d44307ccb198", - "start": { - "$date": "2021-04-11T22:25:41.000Z" - }, - "end": { - "$date": "2021-04-11T23:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "242b61a0-cedf-49cc-ad2a-09bb310f8103", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-11T22:26:57.000Z" - }, - "end": { - "$date": "2021-04-11T22:55:44.000Z" - }, - "events": [ - { - "uuid": "743bc01f-6e3e-44f9-8c9e-56e642352106", - "start": { - "$date": "2021-04-11T22:26:57.000Z" - }, - "end": { - "$date": "2021-04-11T22:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "46d41abf-f24f-4820-ae9d-cc1be72e4cd6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-11T23:01:07.000Z" - }, - "end": { - "$date": "2021-04-12T01:27:39.000Z" - }, - "events": [ - { - "uuid": "86aebe21-4ad2-4d30-9b0f-730c568fef72", - "start": { - "$date": "2021-04-11T23:01:07.000Z" - }, - "end": { - "$date": "2021-04-12T01:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "32d42c9a-d74a-4412-8f0c-d3bdfc485d5e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-11T23:04:28.000Z" - }, - "end": { - "$date": "2021-04-11T23:28:27.000Z" - }, - "events": [ - { - "uuid": "74ef9c1e-927c-4dec-a3ab-260a44f25860", - "start": { - "$date": "2021-04-11T23:04:28.000Z" - }, - "end": { - "$date": "2021-04-11T23:28:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "da41b05f-8366-477e-8803-5b47d3f7530e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-11T23:07:49.000Z" - }, - "end": { - "$date": "2021-04-11T23:10:29.000Z" - }, - "events": [ - { - "uuid": "d3928102-724f-4e00-8485-e169a8e887c6", - "start": { - "$date": "2021-04-11T23:07:49.000Z" - }, - "end": { - "$date": "2021-04-11T23:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6ffda8d2-d298-44ae-935e-4cae58970ce6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-11T23:10:44.000Z" - }, - "end": { - "$date": "2021-04-12T00:25:44.000Z" - }, - "events": [ - { - "uuid": "3a5eaac3-a92f-408e-8c1b-157966af85a7", - "start": { - "$date": "2021-04-11T23:10:44.000Z" - }, - "end": { - "$date": "2021-04-12T00:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d00a049a-73f3-462b-a92d-aa75c80c45f4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-12T01:46:44.000Z" - }, - "end": { - "$date": "2021-04-12T02:10:39.000Z" - }, - "events": [ - { - "uuid": "d6942d28-426b-42c9-a3a8-96045eba7ff5", - "start": { - "$date": "2021-04-12T01:46:44.000Z" - }, - "end": { - "$date": "2021-04-12T02:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9e9c9cec-89c6-4683-8f39-9ae6269bac70", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-12T01:47:04.000Z" - }, - "end": { - "$date": "2021-04-12T02:10:05.000Z" - }, - "events": [ - { - "uuid": "5235acc2-a65a-4054-ae0d-9f87ca570ab1", - "start": { - "$date": "2021-04-12T01:47:04.000Z" - }, - "end": { - "$date": "2021-04-12T02:10:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8d72aa94-ff34-4782-b522-71ec0c965c19", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-12T02:02:00.000Z" - }, - "end": { - "$date": "2021-04-12T04:35:50.000Z" - }, - "events": [ - { - "uuid": "7483313d-6209-4c21-ad14-46e56bbe74bf", - "start": { - "$date": "2021-04-12T02:02:00.000Z" - }, - "end": { - "$date": "2021-04-12T04:35:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5eeb8281-1cdf-438e-9c51-e57227ebcd40", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-12T02:18:15.000Z" - }, - "end": { - "$date": "2021-04-12T04:47:33.000Z" - }, - "events": [ - { - "uuid": "da059219-c4e8-4709-a3a1-a30475919025", - "start": { - "$date": "2021-04-12T02:18:15.000Z" - }, - "end": { - "$date": "2021-04-12T04:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "eee37538-89cf-4aba-a615-7d9ce013eb68", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-12T02:45:49.000Z" - }, - "end": { - "$date": "2021-04-12T05:28:24.000Z" - }, - "events": [ - { - "uuid": "89a7dbe3-588a-436c-b159-ea724489fc84", - "start": { - "$date": "2021-04-12T02:45:49.000Z" - }, - "end": { - "$date": "2021-04-12T05:28:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e80cae8f-be9f-42c8-b685-8d5ef891cf70", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-12T03:44:12.000Z" - }, - "end": { - "$date": "2021-04-12T04:10:27.000Z" - }, - "events": [ - { - "uuid": "990e74e1-41b1-4f77-accd-e12f8b0cebab", - "start": { - "$date": "2021-04-12T03:44:12.000Z" - }, - "end": { - "$date": "2021-04-12T04:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4a1a744e-5976-4d5d-bfd6-216b5c9bea27", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-12T03:36:55.000Z" - }, - "end": { - "$date": "2021-04-12T04:48:12.000Z" - }, - "events": [ - { - "uuid": "e133bf22-9129-4662-8e66-174ec10e0a56", - "start": { - "$date": "2021-04-12T03:36:55.000Z" - }, - "end": { - "$date": "2021-04-12T04:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98c6b359-6b72-438c-8688-7ef7354f7e20", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-12T04:15:43.000Z" - }, - "end": { - "$date": "2021-04-12T04:39:32.000Z" - }, - "events": [ - { - "uuid": "2977d47a-7233-43f8-b69e-643f78e62b61", - "start": { - "$date": "2021-04-12T04:15:43.000Z" - }, - "end": { - "$date": "2021-04-12T04:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7fc1d71-ef67-45a9-8bb3-b01bafce85cb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-12T04:45:09.000Z" - }, - "end": { - "$date": "2021-04-12T05:04:04.000Z" - }, - "events": [ - { - "uuid": "9620ffa0-2696-4dce-a308-4ce5766265f6", - "start": { - "$date": "2021-04-12T04:45:09.000Z" - }, - "end": { - "$date": "2021-04-12T05:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "57a93e06-8459-4250-8b3f-d5dfffe46c55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-12T04:51:31.000Z" - }, - "end": { - "$date": "2021-04-12T05:30:52.000Z" - }, - "events": [ - { - "uuid": "c44b3262-b382-4bad-883e-30d2cc5fbd62", - "start": { - "$date": "2021-04-12T04:51:31.000Z" - }, - "end": { - "$date": "2021-04-12T05:30:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b83e0757-06a3-4bd3-98f1-31aab27ae810", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-12T05:09:34.000Z" - }, - "end": { - "$date": "2021-04-12T05:30:32.000Z" - }, - "events": [ - { - "uuid": "0a582fac-0559-485b-ab43-728474243786", - "start": { - "$date": "2021-04-12T05:09:34.000Z" - }, - "end": { - "$date": "2021-04-12T05:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c1dbad35-d853-490a-9537-7dc0c535b034", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-12T05:32:18.000Z" - }, - "end": { - "$date": "2021-04-12T05:53:02.000Z" - }, - "events": [ - { - "uuid": "b64c8350-2070-4b05-9d67-6eee282e9da7", - "start": { - "$date": "2021-04-12T05:32:18.000Z" - }, - "end": { - "$date": "2021-04-12T05:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "97d32b3e-8230-4fa6-9dde-2d49d1d0e8c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-12T05:32:37.000Z" - }, - "end": { - "$date": "2021-04-12T05:36:42.000Z" - }, - "events": [ - { - "uuid": "52b2743d-0267-47a6-905c-1de847f7d715", - "start": { - "$date": "2021-04-12T05:32:37.000Z" - }, - "end": { - "$date": "2021-04-12T05:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a501ba5e-712c-411c-a578-8215328f6d70", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-12T05:38:57.000Z" - }, - "end": { - "$date": "2021-04-12T05:53:04.000Z" - }, - "events": [ - { - "uuid": "edd0917e-372e-4807-a455-e7fa1056143b", - "start": { - "$date": "2021-04-12T05:38:57.000Z" - }, - "end": { - "$date": "2021-04-12T05:53:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "98ee3f89-5627-4672-8d4f-d7d0edbc21f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-12T15:36:47.000Z" - }, - "end": { - "$date": "2021-04-12T16:12:12.000Z" - }, - "events": [ - { - "uuid": "0e553050-217a-4fe4-9adf-a975109e6d2c", - "start": { - "$date": "2021-04-12T15:36:47.000Z" - }, - "end": { - "$date": "2021-04-12T16:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ca1c4093-2d5d-42a1-aca6-6a496b936431", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-12T15:38:17.000Z" - }, - "end": { - "$date": "2021-04-12T16:04:31.000Z" - }, - "events": [ - { - "uuid": "7386470c-c3b1-46e0-b05e-2ec87974c684", - "start": { - "$date": "2021-04-12T15:38:17.000Z" - }, - "end": { - "$date": "2021-04-12T16:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "54e7f347-f7cf-45a8-bb41-4cc34b7301bb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-12T16:14:33.000Z" - }, - "end": { - "$date": "2021-04-12T16:42:06.000Z" - }, - "events": [ - { - "uuid": "cdc23dc7-8219-4061-9230-d2688c1e52a0", - "start": { - "$date": "2021-04-12T16:14:33.000Z" - }, - "end": { - "$date": "2021-04-12T16:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d2dc2c64-7cfe-47eb-afc2-f1a052efd687", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-12T16:14:37.000Z" - }, - "end": { - "$date": "2021-04-12T16:55:36.000Z" - }, - "events": [ - { - "uuid": "4d31bc3f-8c20-4128-84df-93b59f2351cb", - "start": { - "$date": "2021-04-12T16:14:37.000Z" - }, - "end": { - "$date": "2021-04-12T16:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcee6cd8-4257-4c75-8fd4-12d26943761e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-12T18:00:26.000Z" - }, - "end": { - "$date": "2021-04-12T18:35:27.000Z" - }, - "events": [ - { - "uuid": "c0e9f2a6-b621-4df7-8519-a1788530d523", - "start": { - "$date": "2021-04-12T18:00:26.000Z" - }, - "end": { - "$date": "2021-04-12T18:35:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3edc2415-f3f2-4f83-a232-3e228fdaca85", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-12T19:27:56.000Z" - }, - "end": { - "$date": "2021-04-12T20:05:53.000Z" - }, - "events": [ - { - "uuid": "2e308937-cc9c-4760-9420-fe52a88ce95c", - "start": { - "$date": "2021-04-12T19:27:56.000Z" - }, - "end": { - "$date": "2021-04-12T20:05:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a40aaeec-afc6-468f-a790-13fb9fc55134", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-12T19:47:14.000Z" - }, - "end": { - "$date": "2021-04-12T20:06:57.000Z" - }, - "events": [ - { - "uuid": "b8c899a6-d573-43d6-a3a8-1bbfd36e775a", - "start": { - "$date": "2021-04-12T19:47:14.000Z" - }, - "end": { - "$date": "2021-04-12T20:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6ed69818-c60b-4ae9-b69e-12e440f8bc3c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-12T20:53:51.000Z" - }, - "end": { - "$date": "2021-04-13T01:08:02.000Z" - }, - "events": [ - { - "uuid": "9a1c67ad-4c5f-470d-9e84-cd536cb554c8", - "start": { - "$date": "2021-04-12T20:53:51.000Z" - }, - "end": { - "$date": "2021-04-13T01:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "2a1c81ee-d54b-4bdc-9dfb-a9d5abb83e8b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-12T23:40:53.000Z" - }, - "end": { - "$date": "2021-04-13T00:40:16.000Z" - }, - "events": [ - { - "uuid": "c821d020-5a4b-44b0-956a-c2f8e0eef24b", - "start": { - "$date": "2021-04-12T23:40:53.000Z" - }, - "end": { - "$date": "2021-04-13T00:40:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "622fd127-9290-4524-873c-e7305b69a451", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-13T00:22:37.000Z" - }, - "end": { - "$date": "2021-04-13T00:29:57.000Z" - }, - "events": [ - { - "uuid": "ac9b9cab-f43f-417a-9103-fede29c18498", - "start": { - "$date": "2021-04-13T00:22:37.000Z" - }, - "end": { - "$date": "2021-04-13T00:29:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "3b73cfa6-0b3f-4682-bc05-259972cb08bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T00:36:16.000Z" - }, - "end": { - "$date": "2021-04-13T01:41:38.000Z" - }, - "events": [ - { - "uuid": "6bf98c2d-2221-4ace-b38c-32ad92e145e9", - "start": { - "$date": "2021-04-13T00:36:16.000Z" - }, - "end": { - "$date": "2021-04-13T01:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "43f9cbc9-4360-438f-a17e-a4b9f2d80e3c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-13T01:30:55.000Z" - }, - "end": { - "$date": "2021-04-13T01:58:20.000Z" - }, - "events": [ - { - "uuid": "26e310be-0641-4cf8-83a0-2158b18507f0", - "start": { - "$date": "2021-04-13T01:30:55.000Z" - }, - "end": { - "$date": "2021-04-13T01:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d77eb1db-ec29-402f-8056-9afadfd873a3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-13T01:41:01.000Z" - }, - "end": { - "$date": "2021-04-13T04:02:23.000Z" - }, - "events": [ - { - "uuid": "4982d5d5-f8cb-476f-b677-b1aed57e96f8", - "start": { - "$date": "2021-04-13T01:41:01.000Z" - }, - "end": { - "$date": "2021-04-13T02:53:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb63260a-7d74-40bc-8e13-7f426beee750", - "start": { - "$date": "2021-04-13T02:53:01.000Z" - }, - "end": { - "$date": "2021-04-13T02:58:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74694020-1839-4d23-8f07-123ef1b1c1c2", - "start": { - "$date": "2021-04-13T02:58:01.000Z" - }, - "end": { - "$date": "2021-04-13T04:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6cc7e4ad-0f85-49bc-ad8e-16a1c75f5c77", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T01:59:05.000Z" - }, - "end": { - "$date": "2021-04-13T03:16:36.000Z" - }, - "events": [ - { - "uuid": "da0fe075-2fa6-4aa3-afce-c643ad546717", - "start": { - "$date": "2021-04-13T01:59:05.000Z" - }, - "end": { - "$date": "2021-04-13T03:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "28a3698f-5da2-4f42-b09e-4b006a9fc2f1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-13T01:55:06.000Z" - }, - "end": { - "$date": "2021-04-13T04:45:48.000Z" - }, - "events": [ - { - "uuid": "717eb24d-7aa9-4ddb-92c5-9781848cc471", - "start": { - "$date": "2021-04-13T01:55:06.000Z" - }, - "end": { - "$date": "2021-04-13T04:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3a3366ee-cae7-43c0-b795-0d1580a16bf3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-13T01:56:40.000Z" - }, - "end": { - "$date": "2021-04-13T01:59:20.000Z" - }, - "events": [ - { - "uuid": "d7e34b2c-6665-4b14-baff-731b4ece5ab7", - "start": { - "$date": "2021-04-13T01:56:40.000Z" - }, - "end": { - "$date": "2021-04-13T01:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a36efd31-7941-4c0c-88ea-14e764d67014", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-13T01:58:55.000Z" - }, - "end": { - "$date": "2021-04-13T04:46:16.000Z" - }, - "events": [ - { - "uuid": "41409407-5b73-4d5e-8a2e-768422ab6d56", - "start": { - "$date": "2021-04-13T01:58:55.000Z" - }, - "end": { - "$date": "2021-04-13T04:46:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49f72fe6-0390-4e17-8b79-69f3978b1e6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T03:22:16.000Z" - }, - "end": { - "$date": "2021-04-13T03:45:44.000Z" - }, - "events": [ - { - "uuid": "0ef98201-c7ba-4e67-a9b4-88de370377ff", - "start": { - "$date": "2021-04-13T03:22:16.000Z" - }, - "end": { - "$date": "2021-04-13T03:45:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ccbd4d20-d103-4478-a361-a9ef58f7c346", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-13T03:51:31.000Z" - }, - "end": { - "$date": "2021-04-13T04:07:57.000Z" - }, - "events": [ - { - "uuid": "a32e29b6-4e36-441d-83ab-55a79a6579a8", - "start": { - "$date": "2021-04-13T03:51:31.000Z" - }, - "end": { - "$date": "2021-04-13T04:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bae95c18-923b-4f15-9831-5100b77191ba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-13T03:35:51.000Z" - }, - "end": { - "$date": "2021-04-13T03:46:17.000Z" - }, - "events": [ - { - "uuid": "934388e5-ce89-48a1-aab0-0431b33b23eb", - "start": { - "$date": "2021-04-13T03:35:51.000Z" - }, - "end": { - "$date": "2021-04-13T03:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "be4493d7-06f2-42e5-8a1e-a7bd295b52ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-13T03:41:04.000Z" - }, - "end": { - "$date": "2021-04-13T04:51:16.000Z" - }, - "events": [ - { - "uuid": "0bda6bb0-cc45-4a14-8ccc-2b56c1e8842b", - "start": { - "$date": "2021-04-13T03:41:04.000Z" - }, - "end": { - "$date": "2021-04-13T04:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c7785101-4b31-43b3-8ef4-a65c35c5f75f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-13T03:42:51.000Z" - }, - "end": { - "$date": "2021-04-13T05:05:27.000Z" - }, - "events": [ - { - "uuid": "74d5eb63-447b-4504-91ea-8df027288ebd", - "start": { - "$date": "2021-04-13T03:42:51.000Z" - }, - "end": { - "$date": "2021-04-13T05:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5bf2b95-d626-4687-b824-3001e9b43d9b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T03:50:08.000Z" - }, - "end": { - "$date": "2021-04-13T04:08:10.000Z" - }, - "events": [ - { - "uuid": "6c63dece-8c77-4ae8-b108-7ab4ae087046", - "start": { - "$date": "2021-04-13T03:50:08.000Z" - }, - "end": { - "$date": "2021-04-13T04:08:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e329a5e3-a6c5-435c-8754-bb361b85dc52", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-13T03:50:03.000Z" - }, - "end": { - "$date": "2021-04-13T04:08:08.000Z" - }, - "events": [ - { - "uuid": "6931444b-e619-47cb-9139-7555b798bd9f", - "start": { - "$date": "2021-04-13T03:50:03.000Z" - }, - "end": { - "$date": "2021-04-13T04:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2bd8d33d-0053-4b4c-804b-4440ad31511c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T04:05:48.000Z" - }, - "end": { - "$date": "2021-04-13T04:39:23.000Z" - }, - "events": [ - { - "uuid": "20a118dd-aa37-4580-b90c-ad8dc85eec26", - "start": { - "$date": "2021-04-13T04:05:48.000Z" - }, - "end": { - "$date": "2021-04-13T04:39:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "134c1c5f-fecb-416d-87de-d740e9bfcd56", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-13T04:13:27.000Z" - }, - "end": { - "$date": "2021-04-13T04:32:17.000Z" - }, - "events": [ - { - "uuid": "62ff3156-4d83-427d-a937-5f14d1acebb4", - "start": { - "$date": "2021-04-13T04:13:27.000Z" - }, - "end": { - "$date": "2021-04-13T04:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "762056e9-2043-460b-8d60-eb552107b72d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-13T04:12:04.000Z" - }, - "end": { - "$date": "2021-04-13T04:32:25.000Z" - }, - "events": [ - { - "uuid": "e9041003-1a01-4c85-8fad-ea4488b3c8f3", - "start": { - "$date": "2021-04-13T04:12:04.000Z" - }, - "end": { - "$date": "2021-04-13T04:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c1a7d7a8-9870-42d5-96d7-b7a79062b505", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-13T04:18:08.000Z" - }, - "end": { - "$date": "2021-04-13T05:01:53.000Z" - }, - "events": [ - { - "uuid": "15be637c-94c8-42ed-8e20-c202d94e9705", - "start": { - "$date": "2021-04-13T04:18:08.000Z" - }, - "end": { - "$date": "2021-04-13T04:30:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "580a4cb9-085f-4510-be3b-74cebeab699c", - "start": { - "$date": "2021-04-13T04:30:08.000Z" - }, - "end": { - "$date": "2021-04-13T04:36:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba7cb8cc-6797-4469-8856-96f718fa882b", - "start": { - "$date": "2021-04-13T04:36:08.000Z" - }, - "end": { - "$date": "2021-04-13T05:01:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eaee64aa-cc69-43c5-b35c-2749b903c4bc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-13T04:45:05.000Z" - }, - "end": { - "$date": "2021-04-13T05:10:10.000Z" - }, - "events": [ - { - "uuid": "5ccf3928-d03b-4604-a718-d1af76a5f418", - "start": { - "$date": "2021-04-13T04:45:05.000Z" - }, - "end": { - "$date": "2021-04-13T05:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39c642bb-336d-4e62-8399-b3ccc0b91e21", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-13T04:53:11.000Z" - }, - "end": { - "$date": "2021-04-13T05:28:18.000Z" - }, - "events": [ - { - "uuid": "8e8e98e1-eadc-4e4c-8c6b-c13b429fe21f", - "start": { - "$date": "2021-04-13T04:53:11.000Z" - }, - "end": { - "$date": "2021-04-13T05:28:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "73bc812b-8a99-46ae-80e5-7683342efb16", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-13T04:52:22.000Z" - }, - "end": { - "$date": "2021-04-13T06:10:24.000Z" - }, - "events": [ - { - "uuid": "e04d88d7-793a-4c65-a1c2-04b272bacc2e", - "start": { - "$date": "2021-04-13T04:52:22.000Z" - }, - "end": { - "$date": "2021-04-13T06:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef7e4629-9ac2-47f4-9352-a0d5fa73d5ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T05:28:35.000Z" - }, - "end": { - "$date": "2021-04-13T05:52:42.000Z" - }, - "events": [ - { - "uuid": "c92e4698-1847-4ef5-ae76-6a9d5a9cdd0e", - "start": { - "$date": "2021-04-13T05:28:35.000Z" - }, - "end": { - "$date": "2021-04-13T05:52:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1996ff1f-cac0-4778-ab33-e13abe85fe91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T06:32:43.000Z" - }, - "end": { - "$date": "2021-04-13T06:32:38.000Z" - }, - "events": [ - { - "uuid": "d27af9b6-962b-42cb-9ec0-b2760a0112b2", - "start": { - "$date": "2021-04-13T06:32:43.000Z" - }, - "end": { - "$date": "2021-04-13T06:32:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d770ffb4-9b4c-401e-a9e7-c2296de818b0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-13T06:11:05.000Z" - }, - "end": { - "$date": "2021-04-13T06:22:19.000Z" - }, - "events": [ - { - "uuid": "7d7e9d3f-79c0-4339-803c-2cf7f031b728", - "start": { - "$date": "2021-04-13T06:11:05.000Z" - }, - "end": { - "$date": "2021-04-13T06:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "95fec1a6-a1d6-459d-a5ea-8945b53ed94c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-13T06:27:18.000Z" - }, - "end": { - "$date": "2021-04-13T07:33:14.000Z" - }, - "events": [ - { - "uuid": "d3abdd49-0551-45b9-b860-6209abde6cb2", - "start": { - "$date": "2021-04-13T06:27:18.000Z" - }, - "end": { - "$date": "2021-04-13T07:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "600875bf-534a-4468-a1b9-5305e9b25bcc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T06:42:36.000Z" - }, - "end": { - "$date": "2021-04-13T07:00:41.000Z" - }, - "events": [ - { - "uuid": "b6951ab9-c4ef-48e5-a8a4-9708e56653b3", - "start": { - "$date": "2021-04-13T06:42:36.000Z" - }, - "end": { - "$date": "2021-04-13T07:00:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6b46053-7559-403c-9ac7-dd7926c2512d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T17:03:06.000Z" - }, - "end": { - "$date": "2021-04-13T17:28:52.000Z" - }, - "events": [ - { - "uuid": "8ce88481-9970-4dfb-9e0d-4ee9883de711", - "start": { - "$date": "2021-04-13T17:03:06.000Z" - }, - "end": { - "$date": "2021-04-13T17:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6276662a-ff98-4d9b-90ef-204eacd79c55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T18:33:35.000Z" - }, - "end": { - "$date": "2021-04-13T18:55:45.000Z" - }, - "events": [ - { - "uuid": "e8f59903-e39b-4a60-834a-818dc7f80a24", - "start": { - "$date": "2021-04-13T18:33:35.000Z" - }, - "end": { - "$date": "2021-04-13T18:55:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a601623a-7b86-49bc-9272-9dcb90e55b64", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T18:58:38.000Z" - }, - "end": { - "$date": "2021-04-13T19:12:12.000Z" - }, - "events": [ - { - "uuid": "2d5df6f3-da99-4589-a343-fdf2e9e7ccf6", - "start": { - "$date": "2021-04-13T18:58:38.000Z" - }, - "end": { - "$date": "2021-04-13T19:12:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "104ca6e0-aed4-4f53-aaf9-e1c169511d22", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T19:15:59.000Z" - }, - "end": { - "$date": "2021-04-13T19:40:18.000Z" - }, - "events": [ - { - "uuid": "4213c1ed-76d6-4457-abd5-a5afdc727c10", - "start": { - "$date": "2021-04-13T19:15:59.000Z" - }, - "end": { - "$date": "2021-04-13T19:40:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c943a4d2-4b71-48ab-894f-412a0c7eebbc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-13T19:23:29.000Z" - }, - "end": { - "$date": "2021-04-13T19:50:24.000Z" - }, - "events": [ - { - "uuid": "de6ac7fa-76dc-435b-965c-61a66ee6f8c1", - "start": { - "$date": "2021-04-13T19:23:29.000Z" - }, - "end": { - "$date": "2021-04-13T19:50:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1c72bf00-b8db-4db7-b278-970a33c7ed83", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T19:40:06.000Z" - }, - "end": { - "$date": "2021-04-13T20:15:41.000Z" - }, - "events": [ - { - "uuid": "88257c2b-36bc-4dd6-9f6b-b459d906791b", - "start": { - "$date": "2021-04-13T19:40:06.000Z" - }, - "end": { - "$date": "2021-04-13T20:15:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2df91d17-90ff-45d1-b8da-6345e41fc9a1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-13T20:03:40.000Z" - }, - "end": { - "$date": "2021-04-13T22:37:56.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-13T20:03:40.000Z" - }, - "end": { - "$date": "2021-04-13T22:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "190c88e4-1b64-48cd-8e82-c30439de9469", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-13T20:57:08.000Z" - }, - "end": { - "$date": "2021-04-14T00:51:02.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-13T20:57:08.000Z" - }, - "end": { - "$date": "2021-04-14T00:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e0180a24-eece-4450-981b-3a0c9b290abb", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-13T21:43:10.000Z" - }, - "end": { - "$date": "2021-04-13T22:57:40.000Z" - }, - "events": [ - { - "uuid": "aa9a71eb-bab3-4ce3-8694-e561ad8c7cc8", - "start": { - "$date": "2021-04-13T21:43:10.000Z" - }, - "end": { - "$date": "2021-04-13T22:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc430c9a-3c38-4cc0-8883-3e2379c3c738", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T22:36:18.000Z" - }, - "end": { - "$date": "2021-04-13T22:56:05.000Z" - }, - "events": [ - { - "uuid": "d1b6d972-aeda-4652-80bb-db27cfe2a290", - "start": { - "$date": "2021-04-13T22:36:18.000Z" - }, - "end": { - "$date": "2021-04-13T22:56:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef1c6db3-6699-4357-99bd-81e641091175", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T22:38:45.000Z" - }, - "end": { - "$date": "2021-04-13T23:18:13.000Z" - }, - "events": [ - { - "uuid": "1323fcff-be41-4117-88ee-34dc6e4aab4c", - "start": { - "$date": "2021-04-13T22:38:45.000Z" - }, - "end": { - "$date": "2021-04-13T23:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "317f48ee-3469-42e1-95a7-2d6a84c9a085", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T23:22:38.000Z" - }, - "end": { - "$date": "2021-04-13T23:45:40.000Z" - }, - "events": [ - { - "uuid": "184afcce-7496-4045-813a-4c648c730b50", - "start": { - "$date": "2021-04-13T23:22:38.000Z" - }, - "end": { - "$date": "2021-04-13T23:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85e90af2-9bbd-439b-b4eb-6cd84980d715", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-13T23:37:48.000Z" - }, - "end": { - "$date": "2021-04-13T23:53:36.000Z" - }, - "events": [ - { - "uuid": "b160ce26-26c8-499a-b08b-dccc7e3125b4", - "start": { - "$date": "2021-04-13T23:37:48.000Z" - }, - "end": { - "$date": "2021-04-13T23:53:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "4fe80104-39d5-4ac4-997f-1a6393a8ad61", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-13T23:52:10.000Z" - }, - "end": { - "$date": "2021-04-14T00:25:32.000Z" - }, - "events": [ - { - "uuid": "154a1748-5386-4ba9-810a-b86e3882e61c", - "start": { - "$date": "2021-04-13T23:52:10.000Z" - }, - "end": { - "$date": "2021-04-14T00:25:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "81e8d577-dd4c-4235-83e5-341a73873d3b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-14T00:15:03.000Z" - }, - "end": { - "$date": "2021-04-14T00:29:45.000Z" - }, - "events": [ - { - "uuid": "95803ef4-e932-4a84-a525-3a364facdabf", - "start": { - "$date": "2021-04-14T00:15:03.000Z" - }, - "end": { - "$date": "2021-04-14T00:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7f894cf4-c531-48f4-8a12-89a8496459a2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-14T00:25:32.000Z" - }, - "end": { - "$date": "2021-04-14T01:24:14.000Z" - }, - "events": [ - { - "uuid": "6c4a12f4-754c-42f4-bb1e-fffa462f43ea", - "start": { - "$date": "2021-04-14T00:25:32.000Z" - }, - "end": { - "$date": "2021-04-14T01:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "20897f87-bb55-4506-9b95-83af90e82aeb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-14T00:43:17.000Z" - }, - "end": { - "$date": "2021-04-14T00:52:34.000Z" - }, - "events": [ - { - "uuid": "75e4c0c1-d625-47cd-b187-fa1743e0e105", - "start": { - "$date": "2021-04-14T00:43:17.000Z" - }, - "end": { - "$date": "2021-04-14T00:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d178fc56-2e8f-404e-b360-f67b58a0b701", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-14T02:12:57.000Z" - }, - "end": { - "$date": "2021-04-14T03:46:40.000Z" - }, - "events": [ - { - "uuid": "cf4afba6-ecc1-4b7d-9469-d0be3450f0ea", - "start": { - "$date": "2021-04-14T02:12:57.000Z" - }, - "end": { - "$date": "2021-04-14T03:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a15e10f7-8560-4ff1-95da-3a9d06a7ece5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-14T02:13:00.000Z" - }, - "end": { - "$date": "2021-04-14T05:00:13.000Z" - }, - "events": [ - { - "uuid": "f61863ed-746c-45d6-b61d-1ba564b0b59b", - "start": { - "$date": "2021-04-14T02:13:00.000Z" - }, - "end": { - "$date": "2021-04-14T05:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "a9244a98-2761-414a-9f57-0cc2fafdea9a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-14T02:19:23.000Z" - }, - "end": { - "$date": "2021-04-14T04:28:47.000Z" - }, - "events": [ - { - "uuid": "f5940bbd-fa34-4844-88ea-da3f80e826ac", - "start": { - "$date": "2021-04-14T02:19:23.000Z" - }, - "end": { - "$date": "2021-04-14T04:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "09bd8418-3af0-4226-97f4-acf91bfcc217", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-14T02:21:28.000Z" - }, - "end": { - "$date": "2021-04-14T03:34:01.000Z" - }, - "events": [ - { - "uuid": "3ec50cb6-4bed-4b15-b3f2-c4a6f55b580c", - "start": { - "$date": "2021-04-14T02:21:28.000Z" - }, - "end": { - "$date": "2021-04-14T03:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb5b4277-3074-4e60-afe9-3fc8897edb94", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-14T02:34:00.000Z" - }, - "end": { - "$date": "2021-04-14T03:15:03.000Z" - }, - "events": [ - { - "uuid": "55bd5c60-363a-4fdf-a245-99fc2df7af0c", - "start": { - "$date": "2021-04-14T02:34:00.000Z" - }, - "end": { - "$date": "2021-04-14T03:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7750c667-9873-4db3-8a85-dbd5e5f96f97", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-14T03:22:01.000Z" - }, - "end": { - "$date": "2021-04-14T03:48:27.000Z" - }, - "events": [ - { - "uuid": "d22f5ce9-1458-44dc-9731-61177e606e49", - "start": { - "$date": "2021-04-14T03:22:01.000Z" - }, - "end": { - "$date": "2021-04-14T03:48:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "35624bcf-0377-4bec-9a4c-f75820dbb45b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-14T03:32:03.000Z" - }, - "end": { - "$date": "2021-04-14T04:35:57.000Z" - }, - "events": [ - { - "uuid": "3f875715-1e1a-49ed-935d-747c153cc5e4", - "start": { - "$date": "2021-04-14T03:32:03.000Z" - }, - "end": { - "$date": "2021-04-14T04:35:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b48c1c51-df3b-45c5-bac5-823e0bbbb436", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-14T03:47:49.000Z" - }, - "end": { - "$date": "2021-04-14T03:52:28.000Z" - }, - "events": [ - { - "uuid": "8d27f1dd-9bcb-446c-b97a-6457e7cfdb3c", - "start": { - "$date": "2021-04-14T03:47:49.000Z" - }, - "end": { - "$date": "2021-04-14T03:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0f54d09-2970-49f5-a445-36c7cc4685e7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-14T03:53:47.000Z" - }, - "end": { - "$date": "2021-04-14T04:30:32.000Z" - }, - "events": [ - { - "uuid": "4f4193bc-5225-4bac-9892-a53bd4f5f93a", - "start": { - "$date": "2021-04-14T03:53:47.000Z" - }, - "end": { - "$date": "2021-04-14T04:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c0f02f2e-ee25-496c-aeb8-25bb81a74497", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-14T07:22:30.000Z" - }, - "end": { - "$date": "2021-04-14T07:29:36.000Z" - }, - "events": [ - { - "uuid": "fd44b4d5-721f-40f3-a730-1b5fd2e09b35", - "start": { - "$date": "2021-04-14T07:22:30.000Z" - }, - "end": { - "$date": "2021-04-14T07:29:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9b1acaf-00fc-4d8a-9000-1473c9725566", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-14T04:23:15.000Z" - }, - "end": { - "$date": "2021-04-14T07:38:35.000Z" - }, - "events": [ - { - "uuid": "29bea9e4-c283-4a1f-a2b9-e4d14f4c6ad5", - "start": { - "$date": "2021-04-14T04:23:15.000Z" - }, - "end": { - "$date": "2021-04-14T07:37:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19c05424-ac7f-44b0-915d-66d977c112e2", - "start": { - "$date": "2021-04-14T07:37:15.000Z" - }, - "end": { - "$date": "2021-04-14T07:38:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dd2e45ae-dfd7-402a-80bc-3496b97fa6d2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-14T04:30:32.000Z" - }, - "end": { - "$date": "2021-04-14T05:11:48.000Z" - }, - "events": [ - { - "uuid": "8e76a39c-1df7-4fb7-a092-4faefc2cb125", - "start": { - "$date": "2021-04-14T04:30:32.000Z" - }, - "end": { - "$date": "2021-04-14T05:11:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d384736-5af2-49d7-acb8-fcfb6dab1bec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-14T04:35:51.000Z" - }, - "end": { - "$date": "2021-04-14T05:29:40.000Z" - }, - "events": [ - { - "uuid": "a23849c5-4b86-4db7-b3c7-38cac0ac9e6a", - "start": { - "$date": "2021-04-14T04:35:51.000Z" - }, - "end": { - "$date": "2021-04-14T05:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "6695d540-6403-4e77-a828-9325e6e0a632", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-14T04:37:51.000Z" - }, - "end": { - "$date": "2021-04-14T05:54:38.000Z" - }, - "events": [ - { - "uuid": "cde108cc-e351-4c2b-89b0-61ecabaa972e", - "start": { - "$date": "2021-04-14T04:37:51.000Z" - }, - "end": { - "$date": "2021-04-14T05:54:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9257a709-ab1e-40d6-99a3-4e7bc668115e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-14T05:26:24.000Z" - }, - "end": { - "$date": "2021-04-14T06:15:45.000Z" - }, - "events": [ - { - "uuid": "bfde16d9-21d0-4f42-925f-bf42c8064142", - "start": { - "$date": "2021-04-14T05:26:24.000Z" - }, - "end": { - "$date": "2021-04-14T06:15:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "bcbc5d70-a4b9-4666-9422-8850b4ce895d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-14T13:55:13.000Z" - }, - "end": { - "$date": "2021-04-14T15:37:57.000Z" - }, - "events": [ - { - "uuid": "1b3323c9-13fa-45b8-9d75-c79fbef3b7d1", - "start": { - "$date": "2021-04-14T13:55:13.000Z" - }, - "end": { - "$date": "2021-04-14T15:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4844e37c-f515-4b90-9914-ed1d6065f20c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-14T16:05:54.000Z" - }, - "end": { - "$date": "2021-04-14T16:50:54.000Z" - }, - "events": [ - { - "uuid": "06d745d6-ec92-4d89-83c2-085a9a91436f", - "start": { - "$date": "2021-04-14T16:05:54.000Z" - }, - "end": { - "$date": "2021-04-14T16:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e84eb74f-ab2a-44e8-a679-cb2f90decddb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-14T16:38:19.000Z" - }, - "end": { - "$date": "2021-04-14T18:12:56.000Z" - }, - "events": [ - { - "uuid": "0654776a-5322-4984-884c-c3d4ac5a11a2", - "start": { - "$date": "2021-04-14T16:38:19.000Z" - }, - "end": { - "$date": "2021-04-14T17:38:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "840ea2d6-5810-4772-a95d-4b681e5c7744", - "start": { - "$date": "2021-04-14T17:38:19.000Z" - }, - "end": { - "$date": "2021-04-14T18:06:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "89cf452c-4a8e-426f-80a8-62f510cdc04e", - "start": { - "$date": "2021-04-14T18:06:19.000Z" - }, - "end": { - "$date": "2021-04-14T18:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "36b0097b-c627-46ee-b6c9-0e1c5f18edde", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-14T17:42:38.000Z" - }, - "end": { - "$date": "2021-04-14T17:51:49.000Z" - }, - "events": [ - { - "uuid": "7649d2a5-20c8-4efc-9cf0-4d00f98fba9f", - "start": { - "$date": "2021-04-14T17:42:38.000Z" - }, - "end": { - "$date": "2021-04-14T17:51:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bdc8f8ea-f144-4c6e-95b3-ed5895ba28d2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-14T17:51:54.000Z" - }, - "end": { - "$date": "2021-04-14T18:44:07.000Z" - }, - "events": [ - { - "uuid": "e5024e37-d830-4e16-854d-9ea35505d24c", - "start": { - "$date": "2021-04-14T17:51:54.000Z" - }, - "end": { - "$date": "2021-04-14T18:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7beef507-f287-45f8-9985-d093ab0f90cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-14T18:13:37.000Z" - }, - "end": { - "$date": "2021-04-14T19:31:01.000Z" - }, - "events": [ - { - "uuid": "8baa5464-f466-45ab-905b-ea91f04baede", - "start": { - "$date": "2021-04-14T18:13:37.000Z" - }, - "end": { - "$date": "2021-04-14T18:57:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67a8bcec-3738-48bf-b045-5a82efec9e9f", - "start": { - "$date": "2021-04-14T18:57:37.000Z" - }, - "end": { - "$date": "2021-04-14T18:58:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b9a9192-d7e5-40ac-a31a-61e97300dcc5", - "start": { - "$date": "2021-04-14T18:58:37.000Z" - }, - "end": { - "$date": "2021-04-14T19:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "28a410af-5012-4588-ad5d-a6078a0f4b37", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-14T19:25:54.000Z" - }, - "end": { - "$date": "2021-04-14T19:41:18.000Z" - }, - "events": [ - { - "uuid": "4e7a5881-ffe4-4551-893b-6cd6df59508a", - "start": { - "$date": "2021-04-14T19:25:54.000Z" - }, - "end": { - "$date": "2021-04-14T19:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "306d2179-3a9c-4bac-907e-134804c2081e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-14T19:45:38.000Z" - }, - "end": { - "$date": "2021-04-14T21:25:34.000Z" - }, - "events": [ - { - "uuid": "09ce13f5-be10-4b8b-9e6f-dcf5aa7130e6", - "start": { - "$date": "2021-04-14T19:45:38.000Z" - }, - "end": { - "$date": "2021-04-14T21:25:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "55e6f84d-c854-4984-b548-952e86a75a6b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-14T20:04:49.000Z" - }, - "end": { - "$date": "2021-04-14T20:57:03.000Z" - }, - "events": [ - { - "uuid": "18ed1eeb-404e-4444-bc2a-a4c9326d577d", - "start": { - "$date": "2021-04-14T20:04:49.000Z" - }, - "end": { - "$date": "2021-04-14T20:57:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "29636401-41b0-4e15-98e3-af02bacad515", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-14T20:27:46.000Z" - }, - "end": { - "$date": "2021-04-14T21:40:15.000Z" - }, - "events": [ - { - "uuid": "cefef79d-cb4b-42e6-8c95-28cca3f92add", - "start": { - "$date": "2021-04-14T20:27:46.000Z" - }, - "end": { - "$date": "2021-04-14T21:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9dd3f25f-ba57-41cc-acfb-d85ab5d0e560", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-14T21:09:45.000Z" - }, - "end": { - "$date": "2021-04-15T00:34:32.000Z" - }, - "events": [ - { - "uuid": "714c2ab2-1f4a-44cc-88f3-69fc4783eb59", - "start": { - "$date": "2021-04-14T21:09:45.000Z" - }, - "end": { - "$date": "2021-04-15T00:34:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f6487159-b61c-4b16-b1bd-7bf2d9556d88", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-14T23:24:08.000Z" - }, - "end": { - "$date": "2021-04-14T23:24:18.000Z" - }, - "events": [ - { - "uuid": "5e643dab-2809-45be-bbf4-344882dac8c8", - "start": { - "$date": "2021-04-14T23:24:08.000Z" - }, - "end": { - "$date": "2021-04-14T23:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "af90854c-1dbd-4014-a506-48bea7aee00a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-14T23:49:31.000Z" - }, - "end": { - "$date": "2021-04-15T00:20:32.000Z" - }, - "events": [ - { - "uuid": "c40532a7-d558-4fc0-a1d6-fef9d6c859e6", - "start": { - "$date": "2021-04-14T23:49:31.000Z" - }, - "end": { - "$date": "2021-04-15T00:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "9e705ebd-1839-476c-884a-75146512976a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T00:22:33.000Z" - }, - "end": { - "$date": "2021-04-15T01:17:39.000Z" - }, - "events": [ - { - "uuid": "64da6649-b23f-4010-b493-bc446a825793", - "start": { - "$date": "2021-04-15T00:22:33.000Z" - }, - "end": { - "$date": "2021-04-15T01:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aee826a8-e541-4913-9c5f-6611e0aed349", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-15T00:24:47.000Z" - }, - "end": { - "$date": "2021-04-15T02:11:05.000Z" - }, - "events": [ - { - "uuid": "aa90e5a2-f34c-4991-b538-d774a5bb8145", - "start": { - "$date": "2021-04-15T00:24:47.000Z" - }, - "end": { - "$date": "2021-04-15T02:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3d1599ca-f2bc-48cd-9fbb-3e5e9a8a1fd6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-15T01:04:15.000Z" - }, - "end": { - "$date": "2021-04-15T02:47:18.000Z" - }, - "events": [ - { - "uuid": "e312dd59-deb5-4d78-9faa-3fedfd322578", - "start": { - "$date": "2021-04-15T01:04:15.000Z" - }, - "end": { - "$date": "2021-04-15T02:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b10846bb-024d-460e-9eb9-735de12315fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T01:43:16.000Z" - }, - "end": { - "$date": "2021-04-15T03:09:24.000Z" - }, - "events": [ - { - "uuid": "e9e785a3-a54e-4798-9b16-ca16b26d234d", - "start": { - "$date": "2021-04-15T01:43:16.000Z" - }, - "end": { - "$date": "2021-04-15T03:09:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "06c969f6-b083-403e-958c-e3664a208d9e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T02:05:21.000Z" - }, - "end": { - "$date": "2021-04-15T02:37:56.000Z" - }, - "events": [ - { - "uuid": "0ea8ef9d-ec55-46d5-a4a2-7ca2071ada07", - "start": { - "$date": "2021-04-15T02:05:21.000Z" - }, - "end": { - "$date": "2021-04-15T02:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bfb15251-a186-4236-897c-ac7bc5857607", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-15T02:12:23.000Z" - }, - "end": { - "$date": "2021-04-15T04:58:59.000Z" - }, - "events": [ - { - "uuid": "2617d086-4613-43b1-87f4-4e36710d24c5", - "start": { - "$date": "2021-04-15T02:12:23.000Z" - }, - "end": { - "$date": "2021-04-15T04:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d795c04e-a14a-4bff-bd2a-2d5266b5fb70", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-15T02:30:19.000Z" - }, - "end": { - "$date": "2021-04-15T03:12:21.000Z" - }, - "events": [ - { - "uuid": "d255a125-642e-4f05-b781-b6403e4b89c5", - "start": { - "$date": "2021-04-15T02:30:19.000Z" - }, - "end": { - "$date": "2021-04-15T03:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "64bb516e-fa74-4e4e-9bd3-aed4e7a91844", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T02:38:07.000Z" - }, - "end": { - "$date": "2021-04-15T04:22:01.000Z" - }, - "events": [ - { - "uuid": "862e0ad6-2dad-4f67-8678-05790ed43261", - "start": { - "$date": "2021-04-15T02:38:07.000Z" - }, - "end": { - "$date": "2021-04-15T04:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d18d67bd-3c60-46ee-8e50-7ab124eba2ba", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-15T02:48:46.000Z" - }, - "end": { - "$date": "2021-04-15T06:35:58.000Z" - }, - "events": [ - { - "uuid": "04811f23-9f45-42ba-b11c-a98c81d384af", - "start": { - "$date": "2021-04-15T02:48:46.000Z" - }, - "end": { - "$date": "2021-04-15T06:35:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "778ca817-cd90-47fc-8e64-038e1e8798bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-15T02:50:58.000Z" - }, - "end": { - "$date": "2021-04-15T03:59:37.000Z" - }, - "events": [ - { - "uuid": "08c7f78a-eba6-4333-9207-7cb094265c98", - "start": { - "$date": "2021-04-15T02:50:58.000Z" - }, - "end": { - "$date": "2021-04-15T03:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1eb90930-f4cc-4700-b1ed-68709aca9e1e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T02:58:26.000Z" - }, - "end": { - "$date": "2021-04-15T03:07:14.000Z" - }, - "events": [ - { - "uuid": "47943b6f-54de-4d91-aeef-a3c9553b0f65", - "start": { - "$date": "2021-04-15T02:58:26.000Z" - }, - "end": { - "$date": "2021-04-15T03:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "fbcfc47c-5fcb-4c6f-b6de-08b0ffd86c9d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T03:14:38.000Z" - }, - "end": { - "$date": "2021-04-15T03:19:34.000Z" - }, - "events": [ - { - "uuid": "23ad447e-59fe-4285-8320-f2513d03af91", - "start": { - "$date": "2021-04-15T03:14:38.000Z" - }, - "end": { - "$date": "2021-04-15T03:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "076f2a98-ca4a-4f19-a71c-95435061f412", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T03:11:10.000Z" - }, - "end": { - "$date": "2021-04-15T03:54:01.000Z" - }, - "events": [ - { - "uuid": "8c32191f-d296-4c4a-8cad-88258bdeb3ff", - "start": { - "$date": "2021-04-15T03:11:10.000Z" - }, - "end": { - "$date": "2021-04-15T03:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "46aacf98-0191-44ce-b85c-54b9492ec131", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-15T03:13:36.000Z" - }, - "end": { - "$date": "2021-04-15T04:32:28.000Z" - }, - "events": [ - { - "uuid": "d22255a9-1c90-49e1-923c-20f4a6e6eab5", - "start": { - "$date": "2021-04-15T03:13:36.000Z" - }, - "end": { - "$date": "2021-04-15T04:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "5ce7e4c5-4f84-430b-ad40-306f7a797a00", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T03:18:48.000Z" - }, - "end": { - "$date": "2021-04-15T03:53:09.000Z" - }, - "events": [ - { - "uuid": "98e402b0-8bf3-4fd3-9b14-3b46aa8464d3", - "start": { - "$date": "2021-04-15T03:18:48.000Z" - }, - "end": { - "$date": "2021-04-15T03:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5ec4abd-6037-40e0-9544-dda09a8f36f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-15T03:46:55.000Z" - }, - "end": { - "$date": "2021-04-15T04:00:30.000Z" - }, - "events": [ - { - "uuid": "0230b9bf-ace2-4e2d-b27b-84f981744958", - "start": { - "$date": "2021-04-15T03:46:55.000Z" - }, - "end": { - "$date": "2021-04-15T04:00:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6d906854-2777-44dc-896d-3108267b6d3d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T03:52:53.000Z" - }, - "end": { - "$date": "2021-04-15T04:58:22.000Z" - }, - "events": [ - { - "uuid": "15a6493b-662e-498c-90be-ea17bab9f90b", - "start": { - "$date": "2021-04-15T03:52:53.000Z" - }, - "end": { - "$date": "2021-04-15T04:58:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5dfab55c-84fd-40c7-a22a-b63bc10f07be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T03:59:27.000Z" - }, - "end": { - "$date": "2021-04-15T04:57:48.000Z" - }, - "events": [ - { - "uuid": "6d980c38-34cd-4363-992c-7ddebf9cb0d1", - "start": { - "$date": "2021-04-15T03:59:27.000Z" - }, - "end": { - "$date": "2021-04-15T04:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d6929cbc-d2d3-4888-81eb-24204681a395", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-15T03:59:57.000Z" - }, - "end": { - "$date": "2021-04-15T04:58:16.000Z" - }, - "events": [ - { - "uuid": "59178a3a-69b5-49e1-b8ef-4402c23697bf", - "start": { - "$date": "2021-04-15T03:59:57.000Z" - }, - "end": { - "$date": "2021-04-15T04:58:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f9a7960-9c56-4ea4-a2a5-2638ed1ca1d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-15T04:05:41.000Z" - }, - "end": { - "$date": "2021-04-15T04:25:29.000Z" - }, - "events": [ - { - "uuid": "fe41b9d8-8036-451e-ade4-35a47410df15", - "start": { - "$date": "2021-04-15T04:05:41.000Z" - }, - "end": { - "$date": "2021-04-15T04:25:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05c247ca-832d-4e83-bd38-bdd7cc81fba6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-15T04:02:22.000Z" - }, - "end": { - "$date": "2021-04-15T05:10:22.000Z" - }, - "events": [ - { - "uuid": "1ef706e2-72c1-40ee-af80-39ef0a302b0b", - "start": { - "$date": "2021-04-15T04:02:22.000Z" - }, - "end": { - "$date": "2021-04-15T05:10:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02eb40e1-30c3-4bb8-9dff-d03388f39b8e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T04:22:31.000Z" - }, - "end": { - "$date": "2021-04-15T04:35:43.000Z" - }, - "events": [ - { - "uuid": "c79bfe06-9328-46e7-8073-09c1261254b1", - "start": { - "$date": "2021-04-15T04:22:31.000Z" - }, - "end": { - "$date": "2021-04-15T04:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "208f02d1-9b8f-4078-8e37-defd1f6e296b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-15T04:29:34.000Z" - }, - "end": { - "$date": "2021-04-15T04:45:32.000Z" - }, - "events": [ - { - "uuid": "88e54381-cbd6-4838-9c45-7037d77bfaa8", - "start": { - "$date": "2021-04-15T04:29:34.000Z" - }, - "end": { - "$date": "2021-04-15T04:45:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4fa9686-ba42-4caa-8334-d4f45f99c1a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-15T04:29:45.000Z" - }, - "end": { - "$date": "2021-04-15T04:45:20.000Z" - }, - "events": [ - { - "uuid": "bd05e7e6-3e1e-452f-9afe-3a687828d737", - "start": { - "$date": "2021-04-15T04:29:45.000Z" - }, - "end": { - "$date": "2021-04-15T04:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ee6036c1-7ef7-4dc1-aaf3-47cb35a3f322", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-15T04:33:01.000Z" - }, - "end": { - "$date": "2021-04-15T05:37:46.000Z" - }, - "events": [ - { - "uuid": "b813799b-a4bd-42a3-9cc3-d1159b948108", - "start": { - "$date": "2021-04-15T04:33:01.000Z" - }, - "end": { - "$date": "2021-04-15T05:37:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "80bd8f94-130d-456d-9110-4f917439c896", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T04:36:33.000Z" - }, - "end": { - "$date": "2021-04-15T05:08:36.000Z" - }, - "events": [ - { - "uuid": "dcb9a96a-fe49-488b-9fb0-4c65d0a2296e", - "start": { - "$date": "2021-04-15T04:36:33.000Z" - }, - "end": { - "$date": "2021-04-15T05:08:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2cd37c53-4755-4d29-850d-af7a5dc5f4df", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-15T04:36:54.000Z" - }, - "end": { - "$date": "2021-04-15T04:57:07.000Z" - }, - "events": [ - { - "uuid": "c7cd97aa-ac8d-4797-87fe-ebe0f311a66b", - "start": { - "$date": "2021-04-15T04:36:54.000Z" - }, - "end": { - "$date": "2021-04-15T04:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a028246b-cbe9-42af-ac00-4135873b86e3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-15T04:48:40.000Z" - }, - "end": { - "$date": "2021-04-15T05:07:43.000Z" - }, - "events": [ - { - "uuid": "c1b37539-fe7a-4c25-a7a8-3f50a4b97a51", - "start": { - "$date": "2021-04-15T04:48:40.000Z" - }, - "end": { - "$date": "2021-04-15T05:07:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49703290-32d2-48ba-afb1-3f47d746de47", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-15T04:49:31.000Z" - }, - "end": { - "$date": "2021-04-15T05:07:39.000Z" - }, - "events": [ - { - "uuid": "fa314bed-402a-4a67-a832-83abb41a377c", - "start": { - "$date": "2021-04-15T04:49:31.000Z" - }, - "end": { - "$date": "2021-04-15T05:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bd7d0535-35a1-4b3c-8936-ba512b2db237", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T05:08:51.000Z" - }, - "end": { - "$date": "2021-04-15T06:40:54.000Z" - }, - "events": [ - { - "uuid": "a434625e-df16-4e9b-8e2e-3e880af5010e", - "start": { - "$date": "2021-04-15T05:08:51.000Z" - }, - "end": { - "$date": "2021-04-15T06:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f3fe64a-63ff-449c-9841-b3c171d70b3c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-15T05:20:23.000Z" - }, - "end": { - "$date": "2021-04-15T05:51:40.000Z" - }, - "events": [ - { - "uuid": "33406088-2c2c-4d4d-bec9-50ee585efd3d", - "start": { - "$date": "2021-04-15T05:20:23.000Z" - }, - "end": { - "$date": "2021-04-15T05:51:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c328a5fe-3d56-4d9d-9988-1bb049f97dc7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-15T05:44:53.000Z" - }, - "end": { - "$date": "2021-04-15T07:11:53.000Z" - }, - "events": [ - { - "uuid": "d915ea8e-e18f-4b09-9a89-da0ed7b58615", - "start": { - "$date": "2021-04-15T05:44:53.000Z" - }, - "end": { - "$date": "2021-04-15T07:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "58bb0cd0-f94c-4b94-af1f-504042ef4c4d", - "uuid": "10bb6fe0-dba8-43dc-829b-f24d0b95541f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-15T13:26:56.000Z" - }, - "end": { - "$date": "2021-04-15T13:33:20.000Z" - }, - "events": [ - { - "uuid": "1e3c91dd-e446-4ad4-84f1-0249a30054dc", - "start": { - "$date": "2021-04-15T13:26:56.000Z" - }, - "end": { - "$date": "2021-04-15T13:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "58bb0cd0-f94c-4b94-af1f-504042ef4c4d", - "uuid": "a0f956f7-7a7f-4e1d-a986-5da8e243880d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-15T13:33:42.000Z" - }, - "end": { - "$date": "2021-04-15T15:24:05.000Z" - }, - "events": [ - { - "uuid": "0ca486ce-ff05-4019-9de1-2691b483ad6c", - "start": { - "$date": "2021-04-15T13:33:42.000Z" - }, - "end": { - "$date": "2021-04-15T15:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "280c21ec-4caa-4fdf-8ce8-89cab2609f62", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-15T14:26:57.000Z" - }, - "end": { - "$date": "2021-04-15T14:28:52.000Z" - }, - "events": [ - { - "uuid": "c5a53a68-6f9e-488d-baaa-99b2feb4dadb", - "start": { - "$date": "2021-04-15T14:26:57.000Z" - }, - "end": { - "$date": "2021-04-15T14:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "41b20444-4242-4141-a66b-7423b71b22c3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-15T14:33:57.000Z" - }, - "end": { - "$date": "2021-04-15T14:35:52.000Z" - }, - "events": [ - { - "uuid": "cfb76145-846d-4692-b739-a7e6fc748090", - "start": { - "$date": "2021-04-15T14:33:57.000Z" - }, - "end": { - "$date": "2021-04-15T14:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5bdde397-5506-4c9d-8a4a-7e7747848cc9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-15T14:37:22.000Z" - }, - "end": { - "$date": "2021-04-15T14:39:13.000Z" - }, - "events": [ - { - "uuid": "3926e5d7-6ac7-4427-a9f3-1b945936db2f", - "start": { - "$date": "2021-04-15T14:37:22.000Z" - }, - "end": { - "$date": "2021-04-15T14:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1484f02b-a6e9-4605-b654-e38c89a1ad78", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T15:32:31.000Z" - }, - "end": { - "$date": "2021-04-15T15:45:40.000Z" - }, - "events": [ - { - "uuid": "c7070785-c6ee-4f17-9072-0df50d848ee4", - "start": { - "$date": "2021-04-15T15:32:31.000Z" - }, - "end": { - "$date": "2021-04-15T15:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "776d3c32-6809-4f93-9c18-c131b9fbcd93", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-15T16:13:28.000Z" - }, - "end": { - "$date": "2021-04-15T16:27:23.000Z" - }, - "events": [ - { - "uuid": "94885c2b-a70c-4744-a963-f5ec30215e0f", - "start": { - "$date": "2021-04-15T16:13:28.000Z" - }, - "end": { - "$date": "2021-04-15T16:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "35214492-0732-4552-a01c-b537dc6cb098", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-15T16:39:57.000Z" - }, - "end": { - "$date": "2021-04-15T17:12:19.000Z" - }, - "events": [ - { - "uuid": "41761e0b-1614-447e-bb15-b4e9f2434554", - "start": { - "$date": "2021-04-15T16:39:57.000Z" - }, - "end": { - "$date": "2021-04-15T17:12:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1b9cf0f4-75a3-4386-a179-baf1d42c00c9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-15T18:49:37.000Z" - }, - "end": { - "$date": "2021-04-15T18:52:34.000Z" - }, - "events": [ - { - "uuid": "954d8cce-e01a-45f7-9e43-0433d700e08e", - "start": { - "$date": "2021-04-15T18:49:37.000Z" - }, - "end": { - "$date": "2021-04-15T18:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "1b0709df-f80a-49f4-82a2-9d57ba13503b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T18:54:13.000Z" - }, - "end": { - "$date": "2021-04-15T18:59:13.000Z" - }, - "events": [ - { - "uuid": "e4927bbf-763b-44c5-bb91-444ab46cbcb8", - "start": { - "$date": "2021-04-15T18:54:13.000Z" - }, - "end": { - "$date": "2021-04-15T18:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "73a19db5-09f4-4ba8-a5a0-a4b920417f41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-15T18:59:59.000Z" - }, - "end": { - "$date": "2021-04-15T19:50:02.000Z" - }, - "events": [ - { - "uuid": "cde72044-d680-4efd-93d5-f3b2d880a671", - "start": { - "$date": "2021-04-15T18:59:59.000Z" - }, - "end": { - "$date": "2021-04-15T19:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "ece5a5c4-5770-49f9-845e-d668efcf79d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T19:07:39.000Z" - }, - "end": { - "$date": "2021-04-15T19:44:05.000Z" - }, - "events": [ - { - "uuid": "74cd14e2-290f-4507-ab15-2a36cadd53fe", - "start": { - "$date": "2021-04-15T19:07:39.000Z" - }, - "end": { - "$date": "2021-04-15T19:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "89dfa6a5-0c7c-4d3d-aec1-8159ee414a7d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T19:29:34.000Z" - }, - "end": { - "$date": "2021-04-15T19:53:46.000Z" - }, - "events": [ - { - "uuid": "6c272f23-3cae-4e83-bbaf-6bc8620343ad", - "start": { - "$date": "2021-04-15T19:29:34.000Z" - }, - "end": { - "$date": "2021-04-15T19:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ee4af108-a6ac-4380-a772-854c9ab7eea3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T19:50:19.000Z" - }, - "end": { - "$date": "2021-04-15T20:15:55.000Z" - }, - "events": [ - { - "uuid": "3be84694-6c78-431d-8431-08a768033196", - "start": { - "$date": "2021-04-15T19:50:19.000Z" - }, - "end": { - "$date": "2021-04-15T20:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2dba5302-9a29-4c31-b3b0-677f5b4213eb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T20:23:07.000Z" - }, - "end": { - "$date": "2021-04-15T20:48:35.000Z" - }, - "events": [ - { - "uuid": "99b32716-d35b-4928-a6b2-6e51abc60c83", - "start": { - "$date": "2021-04-15T20:23:07.000Z" - }, - "end": { - "$date": "2021-04-15T20:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f73ea22a-57af-489c-a961-b433d22f17ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-15T20:25:17.000Z" - }, - "end": { - "$date": "2021-04-16T00:02:26.000Z" - }, - "events": [ - { - "uuid": "dcc5318b-2e05-4076-bde8-18dccecdadcc", - "start": { - "$date": "2021-04-15T20:25:17.000Z" - }, - "end": { - "$date": "2021-04-15T22:16:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e766e3c7-5957-4e97-8d2c-e5ffad300179", - "start": { - "$date": "2021-04-15T22:16:17.000Z" - }, - "end": { - "$date": "2021-04-15T22:18:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e1b4689-0fc4-487a-9421-0d49d3bc2f54", - "start": { - "$date": "2021-04-15T22:18:17.000Z" - }, - "end": { - "$date": "2021-04-15T23:45:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6cc35314-30b1-4992-ae92-d366fae37818", - "start": { - "$date": "2021-04-15T23:45:17.000Z" - }, - "end": { - "$date": "2021-04-15T23:50:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "878ca95c-dfa2-4856-9650-a921293e5762", - "start": { - "$date": "2021-04-15T23:50:17.000Z" - }, - "end": { - "$date": "2021-04-16T00:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "dc72c368-a34e-4f8e-9d35-faac9d164a56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T20:38:55.000Z" - }, - "end": { - "$date": "2021-04-15T21:00:05.000Z" - }, - "events": [ - { - "uuid": "dfd5ef34-019c-4b2f-84af-3c7289f7ef1a", - "start": { - "$date": "2021-04-15T20:38:55.000Z" - }, - "end": { - "$date": "2021-04-15T21:00:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "c50a2009-9d1a-4c98-afe5-d088c7af9b86", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-15T21:05:54.000Z" - }, - "end": { - "$date": "2021-04-15T21:39:17.000Z" - }, - "events": [ - { - "uuid": "b806c4b5-2c5f-4529-9b22-4a9580078872", - "start": { - "$date": "2021-04-15T21:05:54.000Z" - }, - "end": { - "$date": "2021-04-15T21:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "180bc466-80db-44a1-af82-c08b3f5cbf11", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-15T21:17:14.000Z" - }, - "end": { - "$date": "2021-04-16T00:26:04.000Z" - }, - "events": [ - { - "uuid": "0f1bc84a-f151-430e-b761-6e151d259f4a", - "start": { - "$date": "2021-04-15T21:17:14.000Z" - }, - "end": { - "$date": "2021-04-16T00:26:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b2469d7d-2466-4ac7-981a-6a4d4e80f660", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-15T22:34:50.000Z" - }, - "end": { - "$date": "2021-04-16T02:35:26.000Z" - }, - "events": [ - { - "uuid": "911417a7-e55f-4151-b3f0-ff91abe52803", - "start": { - "$date": "2021-04-15T22:34:50.000Z" - }, - "end": { - "$date": "2021-04-16T02:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d59ad7c4-96a7-4dfa-a642-7290311d6c35", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-15T22:39:22.000Z" - }, - "end": { - "$date": "2021-04-15T23:39:29.000Z" - }, - "events": [ - { - "uuid": "ca3a617c-3690-44df-9ca9-0f038e7e841f", - "start": { - "$date": "2021-04-15T22:39:22.000Z" - }, - "end": { - "$date": "2021-04-15T23:39:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23a9929a-d24d-4815-ba2f-56555d2bcc13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-15T22:57:09.000Z" - }, - "end": { - "$date": "2021-04-15T23:13:53.000Z" - }, - "events": [ - { - "uuid": "71131517-6ad9-46bf-8bed-3d39233cf0e7", - "start": { - "$date": "2021-04-15T22:57:09.000Z" - }, - "end": { - "$date": "2021-04-15T23:13:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24317c8f-bff7-4b2e-994c-76be95c694a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-15T23:14:47.000Z" - }, - "end": { - "$date": "2021-04-15T23:36:25.000Z" - }, - "events": [ - { - "uuid": "8326ef8d-2925-4f0b-a386-972a6ad501a9", - "start": { - "$date": "2021-04-15T23:14:47.000Z" - }, - "end": { - "$date": "2021-04-15T23:36:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b150cfe-a90f-4e26-8c7c-1de00404eaa9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T00:36:14.000Z" - }, - "end": { - "$date": "2021-04-16T00:46:56.000Z" - }, - "events": [ - { - "uuid": "bf88fae4-4c56-441f-8c95-57cd9915dbf2", - "start": { - "$date": "2021-04-16T00:36:14.000Z" - }, - "end": { - "$date": "2021-04-16T00:46:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d29c670-be7e-42ae-85f1-8a6780b4cd8c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T00:53:01.000Z" - }, - "end": { - "$date": "2021-04-16T01:14:51.000Z" - }, - "events": [ - { - "uuid": "73cb6468-2aa4-4bfe-a8c6-a2e26a460818", - "start": { - "$date": "2021-04-16T00:53:01.000Z" - }, - "end": { - "$date": "2021-04-16T01:14:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "aedd6aa7-7fd4-4196-9d92-5915be09c66e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-16T01:06:52.000Z" - }, - "end": { - "$date": "2021-04-16T01:08:45.000Z" - }, - "events": [ - { - "uuid": "9300e8aa-2a28-4d38-8748-779b6f29edca", - "start": { - "$date": "2021-04-16T01:06:52.000Z" - }, - "end": { - "$date": "2021-04-16T01:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5cd75c86-9524-4f81-9330-048952086f47", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T01:08:44.000Z" - }, - "end": { - "$date": "2021-04-16T02:36:02.000Z" - }, - "events": [ - { - "uuid": "32c0a58e-df81-414b-b7d2-01366543cac3", - "start": { - "$date": "2021-04-16T01:08:44.000Z" - }, - "end": { - "$date": "2021-04-16T02:36:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "7af3c309-3411-4bd9-8e3d-41aaf2ef92ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-16T01:09:35.000Z" - }, - "end": { - "$date": "2021-04-16T01:25:50.000Z" - }, - "events": [ - { - "uuid": "3703240b-1442-4064-9bf0-ef135ad6a9a2", - "start": { - "$date": "2021-04-16T01:09:35.000Z" - }, - "end": { - "$date": "2021-04-16T01:25:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6274b538-66b0-462c-a841-9824f94ee538", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T01:20:57.000Z" - }, - "end": { - "$date": "2021-04-16T01:44:15.000Z" - }, - "events": [ - { - "uuid": "f6bb5ca7-7871-4715-a221-9a05f52219d0", - "start": { - "$date": "2021-04-16T01:20:57.000Z" - }, - "end": { - "$date": "2021-04-16T01:44:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5a177b1-f015-4b2b-ab28-d7759228d53a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-16T01:20:48.000Z" - }, - "end": { - "$date": "2021-04-16T01:44:08.000Z" - }, - "events": [ - { - "uuid": "1de213b5-5500-41dc-bdc7-b84b04c33b75", - "start": { - "$date": "2021-04-16T01:20:48.000Z" - }, - "end": { - "$date": "2021-04-16T01:44:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bad67ae1-93b8-4427-9567-716afd26c375", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-16T01:25:58.000Z" - }, - "end": { - "$date": "2021-04-16T01:52:59.000Z" - }, - "events": [ - { - "uuid": "52a8c055-9619-46c6-a51a-33eac6a6ab0d", - "start": { - "$date": "2021-04-16T01:25:58.000Z" - }, - "end": { - "$date": "2021-04-16T01:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e98d365a-53f3-4424-80b3-3186447a15ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T01:47:54.000Z" - }, - "end": { - "$date": "2021-04-16T02:09:40.000Z" - }, - "events": [ - { - "uuid": "dce18049-227f-486c-8cce-6aff5e9a1088", - "start": { - "$date": "2021-04-16T01:47:54.000Z" - }, - "end": { - "$date": "2021-04-16T02:09:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d0be2d0-a1fe-46ce-a5ec-85ddf4895272", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-16T01:47:45.000Z" - }, - "end": { - "$date": "2021-04-16T02:09:36.000Z" - }, - "events": [ - { - "uuid": "78b65b14-5133-46f9-90d8-c90c00b86567", - "start": { - "$date": "2021-04-16T01:47:45.000Z" - }, - "end": { - "$date": "2021-04-16T02:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "d34bdab7-18ca-488a-b1cb-db9c429042ef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-16T04:05:28.000Z" - }, - "end": { - "$date": "2021-04-16T04:43:25.000Z" - }, - "events": [ - { - "uuid": "ff399917-4185-4851-b8e7-ed66b57da271", - "start": { - "$date": "2021-04-16T04:05:28.000Z" - }, - "end": { - "$date": "2021-04-16T04:43:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "ff2903c3-1bf8-4502-8831-6d949c409c13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T02:38:38.000Z" - }, - "end": { - "$date": "2021-04-16T02:45:13.000Z" - }, - "events": [ - { - "uuid": "35b09404-532a-4902-9cff-a3232fc7a45a", - "start": { - "$date": "2021-04-16T02:38:38.000Z" - }, - "end": { - "$date": "2021-04-16T02:45:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "0c049445-c61a-4ef6-ab6a-fd6c9e87133b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-16T02:50:16.000Z" - }, - "end": { - "$date": "2021-04-16T03:23:47.000Z" - }, - "events": [ - { - "uuid": "65fd10d0-eba5-42f0-a38b-745511d7188b", - "start": { - "$date": "2021-04-16T02:50:16.000Z" - }, - "end": { - "$date": "2021-04-16T03:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "bfa086dc-6756-420c-9973-a7f89aeb9c58", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T03:25:56.000Z" - }, - "end": { - "$date": "2021-04-16T03:45:18.000Z" - }, - "events": [ - { - "uuid": "8a3d17b2-b59a-491e-a54f-b350dcf50615", - "start": { - "$date": "2021-04-16T03:25:56.000Z" - }, - "end": { - "$date": "2021-04-16T03:39:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d227e45e-8711-49eb-a1f2-e94ed6e7af5e", - "start": { - "$date": "2021-04-16T03:39:56.000Z" - }, - "end": { - "$date": "2021-04-16T03:45:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "15745048-5990-426b-a406-3f2a33db6167", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-16T03:26:00.000Z" - }, - "end": { - "$date": "2021-04-16T03:34:26.000Z" - }, - "events": [ - { - "uuid": "ed357208-a47c-4343-9afd-e63f1f330c6b", - "start": { - "$date": "2021-04-16T03:26:00.000Z" - }, - "end": { - "$date": "2021-04-16T03:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2dc88ee0-7870-4b3c-ae92-ab675b933055", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T04:13:35.000Z" - }, - "end": { - "$date": "2021-04-16T05:04:43.000Z" - }, - "events": [ - { - "uuid": "dc080a1e-93fc-40be-8e83-ad006d57f1c1", - "start": { - "$date": "2021-04-16T04:13:35.000Z" - }, - "end": { - "$date": "2021-04-16T05:04:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ec76d8c-38dc-4282-82a0-8ae46e21d6a5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-16T04:02:59.000Z" - }, - "end": { - "$date": "2021-04-16T04:32:10.000Z" - }, - "events": [ - { - "uuid": "5eedf96b-2ee2-4dfc-bf19-380eb1ba432d", - "start": { - "$date": "2021-04-16T04:02:59.000Z" - }, - "end": { - "$date": "2021-04-16T04:32:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "16c64365-8831-43d7-b3bf-d33caeecdc58", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-16T04:00:52.000Z" - }, - "end": { - "$date": "2021-04-16T05:04:41.000Z" - }, - "events": [ - { - "uuid": "7511c7fa-4a3d-4c15-8ad7-be1e802e2aaf", - "start": { - "$date": "2021-04-16T04:00:52.000Z" - }, - "end": { - "$date": "2021-04-16T05:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "2317f6b9-9ac9-4d3d-920c-69ae14eb43db", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-16T04:11:32.000Z" - }, - "end": { - "$date": "2021-04-16T04:38:10.000Z" - }, - "events": [ - { - "uuid": "b162162e-def2-4e44-b525-833cc2b83cb7", - "start": { - "$date": "2021-04-16T04:11:32.000Z" - }, - "end": { - "$date": "2021-04-16T04:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c122cbce-8b6a-43a6-8e8e-60c840dbdbc9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-16T04:39:30.000Z" - }, - "end": { - "$date": "2021-04-16T04:47:57.000Z" - }, - "events": [ - { - "uuid": "dcc553e6-baa5-461c-9142-3dc72674fa85", - "start": { - "$date": "2021-04-16T04:39:30.000Z" - }, - "end": { - "$date": "2021-04-16T04:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "49fbeef4-c32b-45b8-81e7-ca19fa901b84", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-16T04:42:05.000Z" - }, - "end": { - "$date": "2021-04-16T06:37:17.000Z" - }, - "events": [ - { - "uuid": "e10fc9fa-9289-4baa-96ad-121665810425", - "start": { - "$date": "2021-04-16T04:42:05.000Z" - }, - "end": { - "$date": "2021-04-16T06:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "31af274a-3135-4499-95f1-d82160c81a7b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-16T04:49:20.000Z" - }, - "end": { - "$date": "2021-04-16T07:19:43.000Z" - }, - "events": [ - { - "uuid": "d5ee3676-9b0d-41f1-a402-e2a4fa469d5f", - "start": { - "$date": "2021-04-16T04:49:20.000Z" - }, - "end": { - "$date": "2021-04-16T07:19:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a3052f6-11f0-4f10-ad39-fdbd4c50d2c7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T05:04:10.000Z" - }, - "end": { - "$date": "2021-04-16T05:15:07.000Z" - }, - "events": [ - { - "uuid": "db9a1ccf-cd19-42ff-8382-e761232d7d7c", - "start": { - "$date": "2021-04-16T05:04:10.000Z" - }, - "end": { - "$date": "2021-04-16T05:15:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "deb1bac0-bd03-4e38-a7c7-ff6258ccb086", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T05:15:22.000Z" - }, - "end": { - "$date": "2021-04-16T05:29:22.000Z" - }, - "events": [ - { - "uuid": "c6a0cb3b-ed87-496e-afbe-2dcf7805ee61", - "start": { - "$date": "2021-04-16T05:15:22.000Z" - }, - "end": { - "$date": "2021-04-16T05:29:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "704a07bb-d796-4bb0-b10f-6cfb4d309084", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-16T05:25:59.000Z" - }, - "end": { - "$date": "2021-04-16T05:43:02.000Z" - }, - "events": [ - { - "uuid": "3ffbb314-51ca-4247-8d07-753262f75118", - "start": { - "$date": "2021-04-16T05:25:59.000Z" - }, - "end": { - "$date": "2021-04-16T05:26:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7a64f72-a449-4d11-812f-65048f5aca1c", - "start": { - "$date": "2021-04-16T05:26:59.000Z" - }, - "end": { - "$date": "2021-04-16T05:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffe9001a-6381-4207-b993-07ae1df7c8db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T05:32:21.000Z" - }, - "end": { - "$date": "2021-04-16T05:53:17.000Z" - }, - "events": [ - { - "uuid": "9d5a2ddd-09df-408b-b545-9032bda5f30d", - "start": { - "$date": "2021-04-16T05:32:21.000Z" - }, - "end": { - "$date": "2021-04-16T05:53:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2497c6f-b5ba-4f10-87ba-99e95ac77ae5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-16T05:33:08.000Z" - }, - "end": { - "$date": "2021-04-16T06:30:16.000Z" - }, - "events": [ - { - "uuid": "a20b81ed-09c2-4750-a266-831ad60cf577", - "start": { - "$date": "2021-04-16T05:33:08.000Z" - }, - "end": { - "$date": "2021-04-16T06:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "632b34a7-c959-46e1-88a7-3e92357528e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T05:57:07.000Z" - }, - "end": { - "$date": "2021-04-16T06:11:49.000Z" - }, - "events": [ - { - "uuid": "fcb58ec5-9451-4512-9350-0b6ccfa5f96e", - "start": { - "$date": "2021-04-16T05:57:07.000Z" - }, - "end": { - "$date": "2021-04-16T06:11:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "260dd621-7b46-486a-8c86-1ab3eab48c14", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T06:04:25.000Z" - }, - "end": { - "$date": "2021-04-16T06:22:51.000Z" - }, - "events": [ - { - "uuid": "67393788-dd3f-4910-af11-206e57945b70", - "start": { - "$date": "2021-04-16T06:04:25.000Z" - }, - "end": { - "$date": "2021-04-16T06:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a58b44e-8bce-428d-8828-6cc181ccec74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T06:14:48.000Z" - }, - "end": { - "$date": "2021-04-16T06:31:18.000Z" - }, - "events": [ - { - "uuid": "43fa8a26-f1f5-481f-ba69-64482a7c5535", - "start": { - "$date": "2021-04-16T06:14:48.000Z" - }, - "end": { - "$date": "2021-04-16T06:31:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "65d5a307-7937-40e0-a6bb-9a80cae8a1cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-16T06:30:24.000Z" - }, - "end": { - "$date": "2021-04-16T07:20:22.000Z" - }, - "events": [ - { - "uuid": "0a0b00b4-3dc6-4807-b8e4-1fab10db5b0a", - "start": { - "$date": "2021-04-16T06:30:24.000Z" - }, - "end": { - "$date": "2021-04-16T07:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f3538a11-aaaf-47a2-8499-2d8d06b53088", - "uuid": "e6992db0-acd3-492e-864e-4ecf55fad793", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T13:23:34.000Z" - }, - "end": { - "$date": "2021-04-16T13:25:55.000Z" - }, - "events": [ - { - "uuid": "8030cf74-4246-4b92-81f6-00791bd5b071", - "start": { - "$date": "2021-04-16T13:23:34.000Z" - }, - "end": { - "$date": "2021-04-16T13:25:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e4db422d-f8ec-4182-99f0-d0b50ca6dbd2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T13:28:10.000Z" - }, - "end": { - "$date": "2021-04-16T13:29:50.000Z" - }, - "events": [ - { - "uuid": "796e5bad-2afa-4969-aac6-73c3b7ee7724", - "start": { - "$date": "2021-04-16T13:28:10.000Z" - }, - "end": { - "$date": "2021-04-16T13:29:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "f1c70b98-914f-4686-a807-8d06d4b378fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T13:29:55.000Z" - }, - "end": { - "$date": "2021-04-16T13:31:00.000Z" - }, - "events": [ - { - "uuid": "523e02ee-0622-4c29-93ed-453fd7364d4d", - "start": { - "$date": "2021-04-16T13:29:55.000Z" - }, - "end": { - "$date": "2021-04-16T13:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "12e8df4d-c1a9-415c-8fb2-34cdaf025062", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T13:31:41.000Z" - }, - "end": { - "$date": "2021-04-16T14:20:57.000Z" - }, - "events": [ - { - "uuid": "bfb7269e-5fe1-430d-9813-58c0ebc63739", - "start": { - "$date": "2021-04-16T13:31:41.000Z" - }, - "end": { - "$date": "2021-04-16T14:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd360e02-0148-4971-86fb-3f1ecba5ed51", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T15:45:20.000Z" - }, - "end": { - "$date": "2021-04-16T16:16:58.000Z" - }, - "events": [ - { - "uuid": "76e53914-6a0e-459e-bb99-1116f9be0d12", - "start": { - "$date": "2021-04-16T15:45:20.000Z" - }, - "end": { - "$date": "2021-04-16T16:16:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "61951298-6482-48a4-91b3-a94b2b8a6aa1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-16T15:50:40.000Z" - }, - "end": { - "$date": "2021-04-16T16:29:35.000Z" - }, - "events": [ - { - "uuid": "629369d5-4f1e-4cd0-9033-6cca3d13fb09", - "start": { - "$date": "2021-04-16T15:50:40.000Z" - }, - "end": { - "$date": "2021-04-16T16:29:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f05fa148-f056-41d1-a291-5dc217c524db", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T16:18:08.000Z" - }, - "end": { - "$date": "2021-04-16T16:19:23.000Z" - }, - "events": [ - { - "uuid": "26b2ea14-603d-41d6-a8d9-12bf509a652b", - "start": { - "$date": "2021-04-16T16:18:08.000Z" - }, - "end": { - "$date": "2021-04-16T16:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30b595b8-4322-4fad-9937-f082e8e43af9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T16:22:26.000Z" - }, - "end": { - "$date": "2021-04-16T17:04:01.000Z" - }, - "events": [ - { - "uuid": "0bc8233f-e222-45ce-ab2b-0c2aaf373082", - "start": { - "$date": "2021-04-16T16:22:26.000Z" - }, - "end": { - "$date": "2021-04-16T17:04:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7b1fb294-4fb0-4c4c-ae9b-91be615e1998", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T20:22:27.000Z" - }, - "end": { - "$date": "2021-04-16T20:27:17.000Z" - }, - "events": [ - { - "uuid": "a8f7e678-e539-4f38-9ee6-e77d4e155567", - "start": { - "$date": "2021-04-16T20:22:27.000Z" - }, - "end": { - "$date": "2021-04-16T22:41:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "650de57b-8cff-4fbf-9a11-9a773fb67495", - "start": { - "$date": "2021-04-16T22:41:27.000Z" - }, - "end": { - "$date": "2021-04-16T22:53:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f2298be0-534e-440d-ade1-08f993fe1589", - "start": { - "$date": "2021-04-16T22:53:27.000Z" - }, - "end": { - "$date": "2021-04-16T22:55:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0ed7b5f-f0df-41ef-a557-f16fe6bfe1aa", - "start": { - "$date": "2021-04-16T22:55:27.000Z" - }, - "end": { - "$date": "2021-04-16T23:06:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "672b406e-5fa3-40a5-b032-69e2e954dbd4", - "start": { - "$date": "2021-04-16T23:06:27.000Z" - }, - "end": { - "$date": "2021-04-16T23:08:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50e09e58-0671-4c03-9168-6c8ef146e23f", - "start": { - "$date": "2021-04-16T23:08:27.000Z" - }, - "end": { - "$date": "2021-04-16T23:11:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f27c605c-3140-430e-805e-f4a8a10854be", - "start": { - "$date": "2021-04-16T23:11:27.000Z" - }, - "end": { - "$date": "2021-04-16T23:13:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c6cdfb1-0a67-498a-9d78-e6cdbf72a243", - "start": { - "$date": "2021-04-16T23:13:27.000Z" - }, - "end": { - "$date": "2021-04-16T23:48:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ccffa24-cf3a-4b4c-a77c-a3bd5dca8081", - "start": { - "$date": "2021-04-16T23:48:27.000Z" - }, - "end": { - "$date": "2021-04-17T00:19:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e6c3d80-e6c4-4275-8277-6b6961240511", - "start": { - "$date": "2021-04-17T00:19:27.000Z" - }, - "end": { - "$date": "2021-04-17T00:23:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f5c603d1-69c9-4716-8a23-ee166484e79b", - "start": { - "$date": "2021-04-17T00:23:27.000Z" - }, - "end": { - "$date": "2021-04-16T20:27:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "924c7d8b-dd6d-4367-8806-c88e8b8b5ffc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-16T17:07:33.000Z" - }, - "end": { - "$date": "2021-04-16T17:30:14.000Z" - }, - "events": [ - { - "uuid": "82db07a3-0fec-4eaa-aed6-84cfdf153efb", - "start": { - "$date": "2021-04-16T17:07:33.000Z" - }, - "end": { - "$date": "2021-04-16T17:30:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "dacfa757-ff6b-42ae-8892-31aa6ba94088", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T17:22:00.000Z" - }, - "end": { - "$date": "2021-04-16T17:22:10.000Z" - }, - "events": [ - { - "uuid": "cc3b0858-76a7-4396-bf03-d5c9d2a8c946", - "start": { - "$date": "2021-04-16T17:22:00.000Z" - }, - "end": { - "$date": "2021-04-16T17:22:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a705d28f-24e3-41ea-b446-f8d60c12f14a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T17:27:30.000Z" - }, - "end": { - "$date": "2021-04-16T17:56:26.000Z" - }, - "events": [ - { - "uuid": "f07aeca4-e258-4efa-923d-c91bda673cab", - "start": { - "$date": "2021-04-16T17:27:30.000Z" - }, - "end": { - "$date": "2021-04-16T17:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58258e1f-f018-4e26-8212-52e37ce48d33", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-16T17:36:52.000Z" - }, - "end": { - "$date": "2021-04-16T17:37:57.000Z" - }, - "events": [ - { - "uuid": "d55ed4eb-c131-434d-a82f-ce711dea35d5", - "start": { - "$date": "2021-04-16T17:36:52.000Z" - }, - "end": { - "$date": "2021-04-16T17:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "43173273-cbd4-4d6b-a1b7-2e51e4438be5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-16T17:59:53.000Z" - }, - "end": { - "$date": "2021-04-16T18:42:29.000Z" - }, - "events": [ - { - "uuid": "479cfb23-8e2c-4dfe-8a4e-2e42455b9a7f", - "start": { - "$date": "2021-04-16T17:59:53.000Z" - }, - "end": { - "$date": "2021-04-16T18:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "7ac50bce-1b9a-4f66-a67c-fe1a5840038f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T19:12:13.000Z" - }, - "end": { - "$date": "2021-04-16T22:23:59.000Z" - }, - "events": [ - { - "uuid": "203ed193-697f-4dc3-b067-1a4a80b8bae4", - "start": { - "$date": "2021-04-16T19:12:13.000Z" - }, - "end": { - "$date": "2021-04-16T19:37:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8a1488c-1c1b-4031-8001-a2365804c6fa", - "start": { - "$date": "2021-04-16T19:37:13.000Z" - }, - "end": { - "$date": "2021-04-16T19:43:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de769819-f8ad-4b2b-a37b-6d911087e91b", - "start": { - "$date": "2021-04-16T19:43:13.000Z" - }, - "end": { - "$date": "2021-04-16T22:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4823617f-d321-4162-9531-45a50fe4e0d1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-16T19:10:59.000Z" - }, - "end": { - "$date": "2021-04-16T21:46:41.000Z" - }, - "events": [ - { - "uuid": "e33302fd-a855-4cee-acd1-b9d1ebaa4480", - "start": { - "$date": "2021-04-16T19:10:59.000Z" - }, - "end": { - "$date": "2021-04-16T21:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "aaf05252-d228-4a5f-829a-275d240b0a42", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-16T19:23:08.000Z" - }, - "end": { - "$date": "2021-04-16T20:21:41.000Z" - }, - "events": [ - { - "uuid": "74432d2e-4ebe-4297-b633-97d9605753af", - "start": { - "$date": "2021-04-16T19:23:08.000Z" - }, - "end": { - "$date": "2021-04-16T20:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8be4c1ac-1493-4504-9e98-2ca9566d0f28", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-16T19:33:35.000Z" - }, - "end": { - "$date": "2021-04-16T19:54:25.000Z" - }, - "events": [ - { - "uuid": "c2b749a9-d411-444d-8708-b17fe4d3e1bc", - "start": { - "$date": "2021-04-16T19:33:35.000Z" - }, - "end": { - "$date": "2021-04-16T19:45:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25acf4ab-0014-4fe4-8ad5-15b1ff371108", - "start": { - "$date": "2021-04-16T19:45:35.000Z" - }, - "end": { - "$date": "2021-04-16T19:54:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ab6ca7ef-03a3-4303-bd39-d6706628edac", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-16T20:05:27.000Z" - }, - "end": { - "$date": "2021-04-16T20:31:14.000Z" - }, - "events": [ - { - "uuid": "d6586656-6939-4b68-91b2-e6ceba8f4641", - "start": { - "$date": "2021-04-16T20:05:27.000Z" - }, - "end": { - "$date": "2021-04-16T20:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dda70802-6f3e-49ec-bc24-47ecddb937ef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T21:05:24.000Z" - }, - "end": { - "$date": "2021-04-16T21:24:03.000Z" - }, - "events": [ - { - "uuid": "6826c36a-d3e4-4355-abd4-47de1e3be48c", - "start": { - "$date": "2021-04-16T21:05:24.000Z" - }, - "end": { - "$date": "2021-04-16T21:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "ba3c7a31-b2ec-432e-9aa1-2de281fed5cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T21:32:10.000Z" - }, - "end": { - "$date": "2021-04-16T21:54:55.000Z" - }, - "events": [ - { - "uuid": "1f5f9e32-9933-4b50-87c7-853575bd4bde", - "start": { - "$date": "2021-04-16T21:32:10.000Z" - }, - "end": { - "$date": "2021-04-16T21:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b4cd17d3-32d7-4e3e-a0bd-cd94ea13035e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T21:56:00.000Z" - }, - "end": { - "$date": "2021-04-16T22:27:06.000Z" - }, - "events": [ - { - "uuid": "b34c29e2-2f91-4844-8ece-5be5dc20e7c8", - "start": { - "$date": "2021-04-16T21:56:00.000Z" - }, - "end": { - "$date": "2021-04-16T22:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f03c3e72-c5e2-452c-b947-70ae596d2403", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T22:24:04.000Z" - }, - "end": { - "$date": "2021-04-16T22:31:39.000Z" - }, - "events": [ - { - "uuid": "229132a3-1d97-4336-a80b-98be64d71e4f", - "start": { - "$date": "2021-04-16T22:24:04.000Z" - }, - "end": { - "$date": "2021-04-16T22:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ebfeda06-1404-4b27-bd15-c36cc382c54f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T22:34:30.000Z" - }, - "end": { - "$date": "2021-04-16T22:45:50.000Z" - }, - "events": [ - { - "uuid": "7c892a71-458a-4555-afdb-13b46d4193b6", - "start": { - "$date": "2021-04-16T22:34:30.000Z" - }, - "end": { - "$date": "2021-04-16T22:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "d37b2604-50ef-44fd-9d2c-fae0750e9211", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T22:45:55.000Z" - }, - "end": { - "$date": "2021-04-16T22:48:30.000Z" - }, - "events": [ - { - "uuid": "21b1d763-f586-4618-af8e-2949e106fc9f", - "start": { - "$date": "2021-04-16T22:45:55.000Z" - }, - "end": { - "$date": "2021-04-16T22:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8e5e09ae-5eb3-4efb-9307-315447297ad7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T22:49:25.000Z" - }, - "end": { - "$date": "2021-04-16T23:09:01.000Z" - }, - "events": [ - { - "uuid": "17e01ba0-66fa-44e1-97fc-f372c5933485", - "start": { - "$date": "2021-04-16T22:49:25.000Z" - }, - "end": { - "$date": "2021-04-16T23:09:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "57ed9878-4f97-46fa-9f05-3057221a8641", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T23:09:06.000Z" - }, - "end": { - "$date": "2021-04-16T23:32:37.000Z" - }, - "events": [ - { - "uuid": "ef41ea37-bdd9-459f-8e4d-e4f4c02aecea", - "start": { - "$date": "2021-04-16T23:09:06.000Z" - }, - "end": { - "$date": "2021-04-16T23:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "002b820b-16af-4973-a344-f387f19e5d9b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T23:32:42.000Z" - }, - "end": { - "$date": "2021-04-16T23:55:36.000Z" - }, - "events": [ - { - "uuid": "32b30271-5f84-46aa-bd24-883b6310aa69", - "start": { - "$date": "2021-04-16T23:32:42.000Z" - }, - "end": { - "$date": "2021-04-16T23:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "fa7d127e-ff9f-4533-97c2-3c552f80bb8f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-16T23:48:03.000Z" - }, - "end": { - "$date": "2021-04-16T23:57:29.000Z" - }, - "events": [ - { - "uuid": "f23ed144-001b-499f-bd6e-748604e8ebee", - "start": { - "$date": "2021-04-16T23:48:03.000Z" - }, - "end": { - "$date": "2021-04-16T23:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f5112699-4351-446f-a7a1-fb90a2401bc6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-16T23:49:54.000Z" - }, - "end": { - "$date": "2021-04-17T00:28:34.000Z" - }, - "events": [ - { - "uuid": "377ce0db-8721-4a4e-9222-316694c76deb", - "start": { - "$date": "2021-04-16T23:49:54.000Z" - }, - "end": { - "$date": "2021-04-17T00:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f767d7a3-657c-4c4b-8593-10a46e4fa549", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-16T23:51:23.000Z" - }, - "end": { - "$date": "2021-04-17T00:29:18.000Z" - }, - "events": [ - { - "uuid": "bb5dc026-b680-4475-8653-1f03ae653302", - "start": { - "$date": "2021-04-16T23:51:23.000Z" - }, - "end": { - "$date": "2021-04-17T00:29:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "58b92fa2-9f51-4f92-8c1b-0b24acd54253", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-17T02:12:16.000Z" - }, - "end": { - "$date": "2021-04-17T02:22:47.000Z" - }, - "events": [ - { - "uuid": "9824677d-5e01-4834-909a-1263e760ad88", - "start": { - "$date": "2021-04-17T02:12:16.000Z" - }, - "end": { - "$date": "2021-04-17T02:22:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "d3a00736-1cd7-4ba3-9618-a94163aaf5c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-16T23:58:13.000Z" - }, - "end": { - "$date": "2021-04-17T00:08:58.000Z" - }, - "events": [ - { - "uuid": "acb06d9e-972e-4335-8511-bec1044d4343", - "start": { - "$date": "2021-04-16T23:58:13.000Z" - }, - "end": { - "$date": "2021-04-17T00:08:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c0c75769-8df5-43dc-b5dd-e71a26f802d6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T00:09:03.000Z" - }, - "end": { - "$date": "2021-04-17T00:21:43.000Z" - }, - "events": [ - { - "uuid": "fcb4cb51-a457-49aa-8a4c-c6dde44a2130", - "start": { - "$date": "2021-04-17T00:09:03.000Z" - }, - "end": { - "$date": "2021-04-17T00:21:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "bb880a6d-c01c-420d-8221-c722ceaa6289", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T00:21:48.000Z" - }, - "end": { - "$date": "2021-04-17T01:01:20.000Z" - }, - "events": [ - { - "uuid": "6db2c0bd-9197-4733-8d6c-4f397a6ca8e9", - "start": { - "$date": "2021-04-17T00:21:48.000Z" - }, - "end": { - "$date": "2021-04-17T01:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "6cf2d533-4677-458c-8cd9-48314101e544", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-17T00:40:12.000Z" - }, - "end": { - "$date": "2021-04-17T00:55:08.000Z" - }, - "events": [ - { - "uuid": "c1a10fbe-faf8-4d57-bb9b-d7e79f0c42e0", - "start": { - "$date": "2021-04-17T00:40:12.000Z" - }, - "end": { - "$date": "2021-04-17T00:55:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e4293f45-e307-4560-a805-2a11a8686025", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T01:01:25.000Z" - }, - "end": { - "$date": "2021-04-17T01:30:01.000Z" - }, - "events": [ - { - "uuid": "a7a864cb-50a6-445a-aad5-1ebd8d04bd40", - "start": { - "$date": "2021-04-17T01:01:25.000Z" - }, - "end": { - "$date": "2021-04-17T01:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "46b1a047-6708-42d9-b4dc-981e6a4402e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-17T01:10:16.000Z" - }, - "end": { - "$date": "2021-04-17T03:45:34.000Z" - }, - "events": [ - { - "uuid": "bf8497cd-ae18-4595-a7fa-582053e5197c", - "start": { - "$date": "2021-04-17T01:10:16.000Z" - }, - "end": { - "$date": "2021-04-17T03:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "11a3662c-0194-43b4-83d4-872ab6d3a4e1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T01:30:21.000Z" - }, - "end": { - "$date": "2021-04-17T01:34:01.000Z" - }, - "events": [ - { - "uuid": "e5bf51f8-3daa-4fdc-9b9f-512008df5878", - "start": { - "$date": "2021-04-17T01:30:21.000Z" - }, - "end": { - "$date": "2021-04-17T01:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "10c7e67d-c20b-4970-974b-caaf4436ad64", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T01:34:06.000Z" - }, - "end": { - "$date": "2021-04-17T02:08:42.000Z" - }, - "events": [ - { - "uuid": "fcb8e5df-913e-425a-89d5-f29f5a83d6a2", - "start": { - "$date": "2021-04-17T01:34:06.000Z" - }, - "end": { - "$date": "2021-04-17T02:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "af1c80fc-a18c-4073-9931-f47a140e5f38", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-17T01:53:43.000Z" - }, - "end": { - "$date": "2021-04-17T04:18:58.000Z" - }, - "events": [ - { - "uuid": "84b4e4a7-3aee-442a-ac65-90056d1d0296", - "start": { - "$date": "2021-04-17T01:53:43.000Z" - }, - "end": { - "$date": "2021-04-17T04:18:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "57e7bc49-1194-444f-85b4-bef0ec98a025", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-17T04:34:26.000Z" - }, - "end": { - "$date": "2021-04-17T10:58:12.000Z" - }, - "events": [ - { - "uuid": "910a0175-4e0d-41bf-b1fa-3265dc09e6a9", - "start": { - "$date": "2021-04-17T04:34:26.000Z" - }, - "end": { - "$date": "2021-04-17T10:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f078ad77-ff16-4ac2-8958-81726214dd53", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T02:08:47.000Z" - }, - "end": { - "$date": "2021-04-17T02:34:18.000Z" - }, - "events": [ - { - "uuid": "2a8f97ba-eca1-406b-9687-79405461855f", - "start": { - "$date": "2021-04-17T02:08:47.000Z" - }, - "end": { - "$date": "2021-04-17T02:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a19e8301-523f-4ee1-ab92-91ec611a0111", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-17T03:56:01.000Z" - }, - "end": { - "$date": "2021-04-17T04:18:07.000Z" - }, - "events": [ - { - "uuid": "d0385cfc-0c81-42e4-a939-1f0cf0c4b4e3", - "start": { - "$date": "2021-04-17T03:56:01.000Z" - }, - "end": { - "$date": "2021-04-17T04:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a6893160-d2d5-497f-afc5-856805ccfdac", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-17T04:28:42.000Z" - }, - "end": { - "$date": "2021-04-17T06:12:48.000Z" - }, - "events": [ - { - "uuid": "937e8ff0-9dc2-44c4-bb2d-fce47f22e8fa", - "start": { - "$date": "2021-04-17T04:28:42.000Z" - }, - "end": { - "$date": "2021-04-17T06:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "a7ba1fcd-53b4-44b4-8642-55277d773635", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T02:34:23.000Z" - }, - "end": { - "$date": "2021-04-17T03:02:14.000Z" - }, - "events": [ - { - "uuid": "76d66d2c-6221-412c-aba8-1f572908c0d7", - "start": { - "$date": "2021-04-17T02:34:23.000Z" - }, - "end": { - "$date": "2021-04-17T03:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "0bdf2303-5e65-4d3f-b01d-208dba4be87f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-17T02:37:25.000Z" - }, - "end": { - "$date": "2021-04-17T08:40:12.000Z" - }, - "events": [ - { - "uuid": "4f485d49-e3ce-4547-b0e4-a2faeeaa90a6", - "start": { - "$date": "2021-04-17T02:37:25.000Z" - }, - "end": { - "$date": "2021-04-17T06:16:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01db8afa-5e49-4f8f-a01d-4e5911012108", - "start": { - "$date": "2021-04-17T06:16:25.000Z" - }, - "end": { - "$date": "2021-04-17T06:18:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6cf70634-3ca0-492b-b02d-23f737646ddb", - "start": { - "$date": "2021-04-17T06:18:25.000Z" - }, - "end": { - "$date": "2021-04-17T08:40:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "627db0ac-0432-43f0-98dc-86995ba3f9a2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-17T02:50:14.000Z" - }, - "end": { - "$date": "2021-04-17T03:23:18.000Z" - }, - "events": [ - { - "uuid": "eb79252d-16d0-45d0-801a-bbeb1a2771b4", - "start": { - "$date": "2021-04-17T02:50:14.000Z" - }, - "end": { - "$date": "2021-04-17T03:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "8ea43820-f83e-4804-83c9-ac005fdb0c7a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T03:02:59.000Z" - }, - "end": { - "$date": "2021-04-17T03:04:19.000Z" - }, - "events": [ - { - "uuid": "4210e859-653b-4443-ba54-23ce31b86206", - "start": { - "$date": "2021-04-17T03:02:59.000Z" - }, - "end": { - "$date": "2021-04-17T03:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c28cb099-a5d0-4d63-924d-000f442a092f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T03:06:49.000Z" - }, - "end": { - "$date": "2021-04-17T03:21:20.000Z" - }, - "events": [ - { - "uuid": "02153780-7b3d-408c-aafb-96880aedd9ec", - "start": { - "$date": "2021-04-17T03:06:49.000Z" - }, - "end": { - "$date": "2021-04-17T03:21:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "01aa6a3a-c16e-43d5-8b86-e3664670ab0a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T03:21:40.000Z" - }, - "end": { - "$date": "2021-04-17T03:22:35.000Z" - }, - "events": [ - { - "uuid": "7692c1c4-b394-4d12-98ef-fb5bba0239fb", - "start": { - "$date": "2021-04-17T03:21:40.000Z" - }, - "end": { - "$date": "2021-04-17T03:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "87f60cf2-8d8d-4e07-a501-e11cb1b8650b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T03:22:50.000Z" - }, - "end": { - "$date": "2021-04-17T04:03:26.000Z" - }, - "events": [ - { - "uuid": "400813a5-8804-49eb-8d63-3bdfc84a736d", - "start": { - "$date": "2021-04-17T03:22:50.000Z" - }, - "end": { - "$date": "2021-04-17T04:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "638599c1-8332-4ea8-ac95-95d3b168ac5f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-17T03:38:21.000Z" - }, - "end": { - "$date": "2021-04-17T06:13:46.000Z" - }, - "events": [ - { - "uuid": "33ca7158-e495-4d27-bc95-1ab890d58367", - "start": { - "$date": "2021-04-17T03:38:21.000Z" - }, - "end": { - "$date": "2021-04-17T06:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "98b297cb-ffb1-4bb2-b528-3e01a1456fa9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-17T03:45:44.000Z" - }, - "end": { - "$date": "2021-04-17T04:21:05.000Z" - }, - "events": [ - { - "uuid": "979354f9-538b-42cf-a920-aea0992e627c", - "start": { - "$date": "2021-04-17T03:45:44.000Z" - }, - "end": { - "$date": "2021-04-17T04:21:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e1e70a46-2e53-40b9-97f1-ef8673e93573", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-17T04:07:59.000Z" - }, - "end": { - "$date": "2021-04-17T04:14:46.000Z" - }, - "events": [ - { - "uuid": "ea4577b9-4f1b-4edd-a772-96b454b1bd1c", - "start": { - "$date": "2021-04-17T04:07:59.000Z" - }, - "end": { - "$date": "2021-04-17T04:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "d1509883-8c8b-4e2f-ad44-51130cf1668c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-17T04:34:57.000Z" - }, - "end": { - "$date": "2021-04-17T08:41:49.000Z" - }, - "events": [ - { - "uuid": "b2ec38e2-dcbe-4ed3-ac56-d98befc7643e", - "start": { - "$date": "2021-04-17T04:34:57.000Z" - }, - "end": { - "$date": "2021-04-17T08:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "702053d0-7840-49fc-a217-c61721cd580e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-17T04:19:33.000Z" - }, - "end": { - "$date": "2021-04-17T05:11:11.000Z" - }, - "events": [ - { - "uuid": "3b927f65-22c4-4f23-9bd0-cf50a5c12047", - "start": { - "$date": "2021-04-17T04:19:33.000Z" - }, - "end": { - "$date": "2021-04-17T05:11:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a8787bdc-fd00-436e-82db-a7626a124fdc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-17T05:49:27.000Z" - }, - "end": { - "$date": "2021-04-17T06:55:39.000Z" - }, - "events": [ - { - "uuid": "da23d413-bd4c-45f8-ae8f-80021b8069af", - "start": { - "$date": "2021-04-17T05:49:27.000Z" - }, - "end": { - "$date": "2021-04-17T06:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2a0b0c6b-926f-4202-b94a-67bc93a65bdc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-17T08:40:46.000Z" - }, - "end": { - "$date": "2021-04-17T09:44:33.000Z" - }, - "events": [ - { - "uuid": "99781997-94d6-4f02-8d4c-da1ca4db521b", - "start": { - "$date": "2021-04-17T08:40:46.000Z" - }, - "end": { - "$date": "2021-04-17T09:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "537c5ebf-2b58-48b7-891f-572f98647001", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-17T14:53:27.000Z" - }, - "end": { - "$date": "2021-04-17T15:01:02.000Z" - }, - "events": [ - { - "uuid": "f05227d9-e8fb-483a-bf2a-ec0042cd9980", - "start": { - "$date": "2021-04-17T14:53:27.000Z" - }, - "end": { - "$date": "2021-04-17T15:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "704c251d-ab8f-4270-a7d1-7431e20c3696", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T15:53:40.000Z" - }, - "end": { - "$date": "2021-04-17T20:17:57.000Z" - }, - "events": [ - { - "uuid": "988486ae-6dc3-4abc-9aaf-86000d567396", - "start": { - "$date": "2021-04-17T15:53:40.000Z" - }, - "end": { - "$date": "2021-04-17T20:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4242a316-fd66-43bc-9e13-e5fa2fb91fcd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-17T15:55:20.000Z" - }, - "end": { - "$date": "2021-04-17T16:44:30.000Z" - }, - "events": [ - { - "uuid": "20a58473-cc7c-4b96-a1f3-4dae8a155a0b", - "start": { - "$date": "2021-04-17T15:55:20.000Z" - }, - "end": { - "$date": "2021-04-17T16:44:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "22c0926b-8f79-4395-9cfd-c4186fe8673c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-17T15:59:08.000Z" - }, - "end": { - "$date": "2021-04-17T16:00:28.000Z" - }, - "events": [ - { - "uuid": "c2c8fbfb-4565-4f0e-810a-844b4939a0d5", - "start": { - "$date": "2021-04-17T15:59:08.000Z" - }, - "end": { - "$date": "2021-04-17T16:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02e918d6-8ce7-4180-ada6-4c7f14b9c570", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-17T17:17:18.000Z" - }, - "end": { - "$date": "2021-04-17T18:45:32.000Z" - }, - "events": [ - { - "uuid": "09173cac-b8ea-4cd7-8940-4d39fd5afead", - "start": { - "$date": "2021-04-17T17:17:18.000Z" - }, - "end": { - "$date": "2021-04-17T18:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4aaae09e-43e3-468b-8689-cfb9eedfa67b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-17T18:02:38.000Z" - }, - "end": { - "$date": "2021-04-17T23:07:36.000Z" - }, - "events": [ - { - "uuid": "038733fc-f9e0-4e6d-b7a2-f7a8446a173d", - "start": { - "$date": "2021-04-17T18:02:38.000Z" - }, - "end": { - "$date": "2021-04-17T20:09:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f845a2f0-411e-499c-8f02-c8bd0d0212fb", - "start": { - "$date": "2021-04-17T20:09:38.000Z" - }, - "end": { - "$date": "2021-04-17T20:12:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "08c682ef-3101-460e-a94e-71fa4b6f72e3", - "start": { - "$date": "2021-04-17T20:12:38.000Z" - }, - "end": { - "$date": "2021-04-17T21:00:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eafd4d12-4d53-4985-aa65-d2a26e13c524", - "start": { - "$date": "2021-04-17T21:00:38.000Z" - }, - "end": { - "$date": "2021-04-17T22:04:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a3a087c-8b54-4626-a9a3-c61ae6f1ef0e", - "start": { - "$date": "2021-04-17T22:04:38.000Z" - }, - "end": { - "$date": "2021-04-17T23:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f4c66ec0-66d4-4563-8534-5cdf28c4eb81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-17T19:25:27.000Z" - }, - "end": { - "$date": "2021-04-17T21:17:20.000Z" - }, - "events": [ - { - "uuid": "dc48dc53-90d4-4ad0-a1f8-6280fddcd224", - "start": { - "$date": "2021-04-17T19:25:27.000Z" - }, - "end": { - "$date": "2021-04-17T21:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "61e9df68-ae21-41ce-8f30-c17ddd8b8f57", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T20:24:37.000Z" - }, - "end": { - "$date": "2021-04-17T20:34:03.000Z" - }, - "events": [ - { - "uuid": "d31a7884-25cd-46c3-b9fc-117515645a70", - "start": { - "$date": "2021-04-17T20:24:37.000Z" - }, - "end": { - "$date": "2021-04-17T20:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3248fd53-0d17-4427-8c20-10075a57e75c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-17T20:27:39.000Z" - }, - "end": { - "$date": "2021-04-17T22:10:30.000Z" - }, - "events": [ - { - "uuid": "bd2ab509-43fa-4113-83ed-7d6cef9cbd31", - "start": { - "$date": "2021-04-17T20:27:39.000Z" - }, - "end": { - "$date": "2021-04-17T22:10:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "5eb3d207-41dd-4a68-a88a-82f00f1dbdac", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-17T20:36:25.000Z" - }, - "end": { - "$date": "2021-04-17T20:37:55.000Z" - }, - "events": [ - { - "uuid": "2f7baee3-08e6-4cd4-b692-ae14f667c8b6", - "start": { - "$date": "2021-04-17T20:36:25.000Z" - }, - "end": { - "$date": "2021-04-17T20:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e80db68a-6a79-4e38-8171-369cc5033fc2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-17T22:15:56.000Z" - }, - "end": { - "$date": "2021-04-18T00:14:12.000Z" - }, - "events": [ - { - "uuid": "3a74c342-dc52-46ec-8e3e-6428d5cdddc1", - "start": { - "$date": "2021-04-17T22:15:56.000Z" - }, - "end": { - "$date": "2021-04-18T00:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "70671cd2-cb00-4dd1-b154-d66cfe0ac930", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-17T20:39:58.000Z" - }, - "end": { - "$date": "2021-04-18T06:01:01.000Z" - }, - "events": [ - { - "uuid": "3ab2fd3e-d42c-4bf0-9265-f99d0d51a617", - "start": { - "$date": "2021-04-17T20:39:58.000Z" - }, - "end": { - "$date": "2021-04-18T06:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e45a4ee-0489-49ef-8f81-19ab2a8ff4b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-17T21:02:58.000Z" - }, - "end": { - "$date": "2021-04-17T21:23:10.000Z" - }, - "events": [ - { - "uuid": "738b45ab-20db-41ac-bea2-798b69635045", - "start": { - "$date": "2021-04-17T21:02:58.000Z" - }, - "end": { - "$date": "2021-04-17T21:23:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b1a7481-1dca-40be-8637-e5866537618d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-17T23:17:38.000Z" - }, - "end": { - "$date": "2021-04-17T23:52:06.000Z" - }, - "events": [ - { - "uuid": "45a6bd49-e10b-4923-910a-29d02c326f69", - "start": { - "$date": "2021-04-17T23:17:38.000Z" - }, - "end": { - "$date": "2021-04-17T23:52:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "da0eab17-f9bf-453a-a707-4d8f2393e67c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-17T22:05:32.000Z" - }, - "end": { - "$date": "2021-04-17T23:35:24.000Z" - }, - "events": [ - { - "uuid": "85b1eeee-1973-4a72-918d-4c61ee1d954c", - "start": { - "$date": "2021-04-17T22:05:32.000Z" - }, - "end": { - "$date": "2021-04-17T23:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4a5c801a-fe52-4d97-9b2e-763f5e64249c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-17T22:09:49.000Z" - }, - "end": { - "$date": "2021-04-17T22:13:31.000Z" - }, - "events": [ - { - "uuid": "3b212250-d881-402a-8aaa-bbabb42db553", - "start": { - "$date": "2021-04-17T22:09:49.000Z" - }, - "end": { - "$date": "2021-04-17T22:13:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d52cf5e7-7720-4bf1-ba6b-d157844a3dfe", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-17T22:12:44.000Z" - }, - "end": { - "$date": "2021-04-18T00:14:20.000Z" - }, - "events": [ - { - "uuid": "f2b1b8df-41a3-48ee-9270-ba73f6f22ca2", - "start": { - "$date": "2021-04-17T22:12:44.000Z" - }, - "end": { - "$date": "2021-04-18T00:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb0606f2-0973-4307-9fe7-cc52d0547431", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-17T23:57:07.000Z" - }, - "end": { - "$date": "2021-04-18T00:16:10.000Z" - }, - "events": [ - { - "uuid": "591b2cb0-7587-4dd9-a23e-7b77a93ac313", - "start": { - "$date": "2021-04-17T23:57:07.000Z" - }, - "end": { - "$date": "2021-04-18T00:16:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "32580231-c608-4ca4-bcac-a1d66d89e48b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T00:14:55.000Z" - }, - "end": { - "$date": "2021-04-18T00:43:03.000Z" - }, - "events": [ - { - "uuid": "ac6c29a3-9b69-4fe6-9ce4-8e8e3db29c77", - "start": { - "$date": "2021-04-18T00:14:55.000Z" - }, - "end": { - "$date": "2021-04-18T00:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43e765ca-c974-4dba-a3d6-df44ceff2139", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T00:20:03.000Z" - }, - "end": { - "$date": "2021-04-18T00:39:33.000Z" - }, - "events": [ - { - "uuid": "ff8d106d-07e9-43c0-b332-778d5ced63dd", - "start": { - "$date": "2021-04-18T00:20:03.000Z" - }, - "end": { - "$date": "2021-04-18T00:39:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b48617cf-a34b-4e81-8ce9-c035b8ef16ae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-18T00:31:16.000Z" - }, - "end": { - "$date": "2021-04-18T03:01:15.000Z" - }, - "events": [ - { - "uuid": "24fa26f3-6ec3-441c-b4c6-5022fe5786df", - "start": { - "$date": "2021-04-18T00:31:16.000Z" - }, - "end": { - "$date": "2021-04-18T03:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0fb7b30f-9105-4f98-90f3-c64afb33bda5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T00:43:44.000Z" - }, - "end": { - "$date": "2021-04-18T01:22:59.000Z" - }, - "events": [ - { - "uuid": "73e415db-b80b-475d-af67-aa8cac30d7f3", - "start": { - "$date": "2021-04-18T00:43:44.000Z" - }, - "end": { - "$date": "2021-04-18T01:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "144f8504-32a7-4f2a-aac4-3eb345aa9dda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T02:15:56.000Z" - }, - "end": { - "$date": "2021-04-18T02:30:17.000Z" - }, - "events": [ - { - "uuid": "9884f41c-58b0-4964-a3c3-775eaa73bbe7", - "start": { - "$date": "2021-04-18T02:15:56.000Z" - }, - "end": { - "$date": "2021-04-18T02:30:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c1659246-d3cd-456f-815c-6c352b1abc0f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-18T02:27:41.000Z" - }, - "end": { - "$date": "2021-04-18T07:22:03.000Z" - }, - "events": [ - { - "uuid": "f413e5e1-3b38-4933-8de0-a567f07a93c2", - "start": { - "$date": "2021-04-18T02:27:41.000Z" - }, - "end": { - "$date": "2021-04-18T07:22:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "321888a3-f59f-48dd-b6b9-dc584c59f650", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-18T02:28:39.000Z" - }, - "end": { - "$date": "2021-04-18T05:54:33.000Z" - }, - "events": [ - { - "uuid": "2554cff8-ce08-47e1-b218-5847ff0d2ed7", - "start": { - "$date": "2021-04-18T02:28:39.000Z" - }, - "end": { - "$date": "2021-04-18T05:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a652b18-b701-4825-8cbb-d1096c75824d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T03:05:19.000Z" - }, - "end": { - "$date": "2021-04-18T03:05:29.000Z" - }, - "events": [ - { - "uuid": "dffebf35-b41c-4263-ba63-f9c228743c8c", - "start": { - "$date": "2021-04-18T03:05:19.000Z" - }, - "end": { - "$date": "2021-04-18T03:05:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "35e3dc9c-0a18-4755-b7d7-3483a7865b10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T02:41:21.000Z" - }, - "end": { - "$date": "2021-04-18T04:31:44.000Z" - }, - "events": [ - { - "uuid": "960dca8f-764b-4a97-a475-3692f62df6c8", - "start": { - "$date": "2021-04-18T02:41:21.000Z" - }, - "end": { - "$date": "2021-04-18T04:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2b72dd2-b5f3-4d17-a70b-d0759fa9b4af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T03:14:05.000Z" - }, - "end": { - "$date": "2021-04-18T03:31:07.000Z" - }, - "events": [ - { - "uuid": "01b72d37-b1a0-40ed-bc3d-a71bd36ecd18", - "start": { - "$date": "2021-04-18T03:14:05.000Z" - }, - "end": { - "$date": "2021-04-18T03:31:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "4e2712ec-f4c9-468c-869f-e660a0660c08", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-18T03:12:17.000Z" - }, - "end": { - "$date": "2021-04-18T09:13:10.000Z" - }, - "events": [ - { - "uuid": "c0b3a0c4-6e11-4871-88e7-7adfebfe8eeb", - "start": { - "$date": "2021-04-18T03:12:17.000Z" - }, - "end": { - "$date": "2021-04-18T05:20:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f3387626-883d-42e9-b6bd-d7c35ad1caf8", - "start": { - "$date": "2021-04-18T05:20:17.000Z" - }, - "end": { - "$date": "2021-04-18T05:26:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0eabdfb-4772-4e74-9697-c2a2ae0a125f", - "start": { - "$date": "2021-04-18T05:26:17.000Z" - }, - "end": { - "$date": "2021-04-18T09:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2b94fc45-a895-407b-84ed-44319cea200e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-18T03:21:55.000Z" - }, - "end": { - "$date": "2021-04-18T06:43:43.000Z" - }, - "events": [ - { - "uuid": "f4005b67-cae8-41b6-a95f-62fc654bbfcd", - "start": { - "$date": "2021-04-18T03:21:55.000Z" - }, - "end": { - "$date": "2021-04-18T06:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "1480e31c-2ce0-4c45-9420-d5699fb643c7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-18T03:32:41.000Z" - }, - "end": { - "$date": "2021-04-18T06:49:25.000Z" - }, - "events": [ - { - "uuid": "042adf3e-b23f-4f9a-9910-a82f238d387b", - "start": { - "$date": "2021-04-18T03:32:41.000Z" - }, - "end": { - "$date": "2021-04-18T06:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "adba79df-2751-4fbd-b9e3-35aeba4ba5a3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-18T05:55:18.000Z" - }, - "end": { - "$date": "2021-04-18T06:42:56.000Z" - }, - "events": [ - { - "uuid": "5e89382f-56a6-4181-b97b-6ff83faac9c1", - "start": { - "$date": "2021-04-18T05:55:18.000Z" - }, - "end": { - "$date": "2021-04-18T06:42:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "33893bbe-849d-4e53-9fe7-f3c9fe0c73cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-18T06:53:51.000Z" - }, - "end": { - "$date": "2021-04-18T08:17:14.000Z" - }, - "events": [ - { - "uuid": "06933cd2-16b7-4422-87d6-37d6659d62dc", - "start": { - "$date": "2021-04-18T06:53:51.000Z" - }, - "end": { - "$date": "2021-04-18T08:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce52e037-c255-428e-9deb-e8328e8736cb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-18T06:59:22.000Z" - }, - "end": { - "$date": "2021-04-18T10:39:09.000Z" - }, - "events": [ - { - "uuid": "02268f2e-727d-4257-ac32-913ff2ac8daa", - "start": { - "$date": "2021-04-18T06:59:22.000Z" - }, - "end": { - "$date": "2021-04-18T10:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3229d500-b77d-4f75-bbb8-730e0ba62c4c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-18T07:11:22.000Z" - }, - "end": { - "$date": "2021-04-18T07:23:17.000Z" - }, - "events": [ - { - "uuid": "00b50dfa-71ec-49bc-ae1d-20b414fc04a1", - "start": { - "$date": "2021-04-18T07:11:22.000Z" - }, - "end": { - "$date": "2021-04-18T07:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "563dd815-50ec-4c79-bef7-67435c6fd886", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-18T07:44:28.000Z" - }, - "end": { - "$date": "2021-04-18T10:39:26.000Z" - }, - "events": [ - { - "uuid": "cd79c324-fede-4a48-bf33-bc2c1849fb0e", - "start": { - "$date": "2021-04-18T07:44:28.000Z" - }, - "end": { - "$date": "2021-04-18T10:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ace9abe8-8ce4-4a15-96f2-b91be0c9259f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-18T08:42:22.000Z" - }, - "end": { - "$date": "2021-04-18T08:51:42.000Z" - }, - "events": [ - { - "uuid": "8d7ef02c-45e2-45ca-86d7-3efdbdcb65fb", - "start": { - "$date": "2021-04-18T08:42:22.000Z" - }, - "end": { - "$date": "2021-04-18T08:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "98773499-16ea-4b02-b960-3a0c0e13090f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-18T15:57:49.000Z" - }, - "end": { - "$date": "2021-04-18T15:57:52.000Z" - }, - "events": [ - { - "uuid": "d147f538-e276-4fb3-8c08-51837b833908", - "start": { - "$date": "2021-04-18T15:57:49.000Z" - }, - "end": { - "$date": "2021-04-18T15:57:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "02f1b9a9-66ce-4fae-93e7-1a7875d80a7a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T15:28:52.000Z" - }, - "end": { - "$date": "2021-04-18T18:32:34.000Z" - }, - "events": [ - { - "uuid": "f8ee8e15-0c23-4636-97be-4acb932631a9", - "start": { - "$date": "2021-04-18T15:28:52.000Z" - }, - "end": { - "$date": "2021-04-18T18:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ee244a55-dbfc-4123-bee1-3136be18b4b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-18T16:14:36.000Z" - }, - "end": { - "$date": "2021-04-18T16:35:08.000Z" - }, - "events": [ - { - "uuid": "6f8523e0-1b00-44a5-ae97-98b00d8ef484", - "start": { - "$date": "2021-04-18T16:14:36.000Z" - }, - "end": { - "$date": "2021-04-18T16:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "6862c821-cffc-4fba-afbd-db1c597cb1d7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-18T16:15:45.000Z" - }, - "end": { - "$date": "2021-04-18T19:10:28.000Z" - }, - "events": [ - { - "uuid": "c1f452d7-45ca-4969-a760-45201c5b5af7", - "start": { - "$date": "2021-04-18T16:15:45.000Z" - }, - "end": { - "$date": "2021-04-18T19:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5d8d0354-6dcb-43d7-811a-0150c799691b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T16:21:49.000Z" - }, - "end": { - "$date": "2021-04-18T18:28:31.000Z" - }, - "events": [ - { - "uuid": "e9c6aed9-6b77-4b93-b249-5db10ddf2bd1", - "start": { - "$date": "2021-04-18T16:21:49.000Z" - }, - "end": { - "$date": "2021-04-18T18:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1fd72da7-793f-4a38-9a22-333664f4eb08", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-18T18:39:49.000Z" - }, - "end": { - "$date": "2021-04-18T20:18:03.000Z" - }, - "events": [ - { - "uuid": "ae4cac03-fb81-42e1-8183-49646a9a88ff", - "start": { - "$date": "2021-04-18T18:39:49.000Z" - }, - "end": { - "$date": "2021-04-18T20:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "eb679cb4-eb49-4ce6-8edc-229871350ed6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T18:51:06.000Z" - }, - "end": { - "$date": "2021-04-18T19:23:47.000Z" - }, - "events": [ - { - "uuid": "f4e4cb58-1303-4ec0-9379-dc4a6ae04c61", - "start": { - "$date": "2021-04-18T18:51:06.000Z" - }, - "end": { - "$date": "2021-04-18T19:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "673f2786-8e53-41bc-b98d-52e6e041be2d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-18T19:32:28.000Z" - }, - "end": { - "$date": "2021-04-18T20:30:06.000Z" - }, - "events": [ - { - "uuid": "9c352990-7660-4dd3-8b33-5814894fa8f8", - "start": { - "$date": "2021-04-18T19:32:28.000Z" - }, - "end": { - "$date": "2021-04-18T20:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "61966bf3-beb4-41a7-b962-d2e8d4341bcc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T20:21:09.000Z" - }, - "end": { - "$date": "2021-04-18T22:48:06.000Z" - }, - "events": [ - { - "uuid": "9285ba8b-dcfa-4d98-b91f-a1a0603933cc", - "start": { - "$date": "2021-04-18T20:21:09.000Z" - }, - "end": { - "$date": "2021-04-18T22:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3feb7c40-3c69-4790-b788-4490fe720a01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-18T20:24:29.000Z" - }, - "end": { - "$date": "2021-04-18T20:25:59.000Z" - }, - "events": [ - { - "uuid": "86ac6603-9f1e-4599-8a54-eb2beade80e6", - "start": { - "$date": "2021-04-18T20:24:29.000Z" - }, - "end": { - "$date": "2021-04-18T20:25:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "72d71602-3845-4f1a-bcef-9b675c39923a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T21:14:21.000Z" - }, - "end": { - "$date": "2021-04-18T22:11:58.000Z" - }, - "events": [ - { - "uuid": "9ba06690-6da9-4ce3-9046-e9a9fbe4da45", - "start": { - "$date": "2021-04-18T21:14:21.000Z" - }, - "end": { - "$date": "2021-04-18T22:11:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d3418344-6999-4a94-9f22-a55295c4e40c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-18T21:25:46.000Z" - }, - "end": { - "$date": "2021-04-18T22:46:19.000Z" - }, - "events": [ - { - "uuid": "6696ef76-6f31-46e0-bf0b-c3e3ea3cc308", - "start": { - "$date": "2021-04-18T21:25:46.000Z" - }, - "end": { - "$date": "2021-04-18T22:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d727841-1a11-428c-8db3-8f9673d31ce5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T22:12:01.000Z" - }, - "end": { - "$date": "2021-04-18T22:36:12.000Z" - }, - "events": [ - { - "uuid": "03b68ca4-3adc-4310-b660-479f4bb705e8", - "start": { - "$date": "2021-04-18T22:12:01.000Z" - }, - "end": { - "$date": "2021-04-18T22:36:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e54ed928-f340-41c1-ba43-bc1ce895d0bf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-18T22:12:43.000Z" - }, - "end": { - "$date": "2021-04-18T23:21:57.000Z" - }, - "events": [ - { - "uuid": "34df1eb6-edd9-4d6b-8bae-ba58b4de9c2f", - "start": { - "$date": "2021-04-18T22:12:43.000Z" - }, - "end": { - "$date": "2021-04-18T23:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40bff525-8408-4969-bece-8cd7399c62ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T23:26:35.000Z" - }, - "end": { - "$date": "2021-04-18T23:39:46.000Z" - }, - "events": [ - { - "uuid": "9ff3d942-5b74-44fc-9cce-bf112ef1a1c5", - "start": { - "$date": "2021-04-18T23:26:35.000Z" - }, - "end": { - "$date": "2021-04-18T23:39:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "e214f2c7-c58f-44f5-a2cc-16919632b2ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T22:38:46.000Z" - }, - "end": { - "$date": "2021-04-18T22:38:56.000Z" - }, - "events": [ - { - "uuid": "e212b699-5595-4250-b08b-42404064c321", - "start": { - "$date": "2021-04-18T22:38:46.000Z" - }, - "end": { - "$date": "2021-04-18T22:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5276bd33-3f83-424e-90a7-f17e533200bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T22:39:11.000Z" - }, - "end": { - "$date": "2021-04-18T23:21:58.000Z" - }, - "events": [ - { - "uuid": "27214437-dcf4-4b97-85be-6fd6e4cea24e", - "start": { - "$date": "2021-04-18T22:39:11.000Z" - }, - "end": { - "$date": "2021-04-18T23:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "00acd64f-40f0-4d18-a179-95581f6628d8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T22:48:26.000Z" - }, - "end": { - "$date": "2021-04-18T22:55:01.000Z" - }, - "events": [ - { - "uuid": "452a1c1a-12e1-4e7d-97fa-704ddeee2c9a", - "start": { - "$date": "2021-04-18T22:48:26.000Z" - }, - "end": { - "$date": "2021-04-18T22:55:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "32f60daa-c856-4782-8e27-d58d663228ef", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T22:55:56.000Z" - }, - "end": { - "$date": "2021-04-18T23:03:58.000Z" - }, - "events": [ - { - "uuid": "9f63f5d0-81e4-426d-8054-64afc979a315", - "start": { - "$date": "2021-04-18T22:55:56.000Z" - }, - "end": { - "$date": "2021-04-18T23:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b515623c-a555-4674-bc64-bc08829f4722", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T23:04:23.000Z" - }, - "end": { - "$date": "2021-04-18T23:17:58.000Z" - }, - "events": [ - { - "uuid": "8d48ae3a-2b60-45f6-8b1f-3ccca31167d4", - "start": { - "$date": "2021-04-18T23:04:23.000Z" - }, - "end": { - "$date": "2021-04-18T23:17:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d5992b1d-7122-4b79-99af-e8aaba41b486", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T23:19:04.000Z" - }, - "end": { - "$date": "2021-04-18T23:21:34.000Z" - }, - "events": [ - { - "uuid": "39585539-c386-4db4-8ce1-256ac51fe277", - "start": { - "$date": "2021-04-18T23:19:04.000Z" - }, - "end": { - "$date": "2021-04-18T23:21:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88b9ca05-ec75-492f-8da7-f579e535a260", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T23:27:09.000Z" - }, - "end": { - "$date": "2021-04-18T23:39:39.000Z" - }, - "events": [ - { - "uuid": "8dc26ae9-52fb-4fa4-9aa7-dc335a9ab5c7", - "start": { - "$date": "2021-04-18T23:27:09.000Z" - }, - "end": { - "$date": "2021-04-18T23:39:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "684afe22-99ec-42ef-b372-0f6b1a9f9c20", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-18T23:24:53.000Z" - }, - "end": { - "$date": "2021-04-18T23:43:58.000Z" - }, - "events": [ - { - "uuid": "3026f9de-db7b-48f2-b0c7-66b34f2dcdf9", - "start": { - "$date": "2021-04-18T23:24:53.000Z" - }, - "end": { - "$date": "2021-04-18T23:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2689554-d809-49cf-860c-64c3dbaa87ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-18T23:42:51.000Z" - }, - "end": { - "$date": "2021-04-18T23:58:37.000Z" - }, - "events": [ - { - "uuid": "2d8939d2-8802-45f2-b043-45a36f2a1b7f", - "start": { - "$date": "2021-04-18T23:42:51.000Z" - }, - "end": { - "$date": "2021-04-18T23:58:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fe16730-4b32-4d73-9ae5-aa1ed9a89ecf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-18T23:43:20.000Z" - }, - "end": { - "$date": "2021-04-18T23:58:30.000Z" - }, - "events": [ - { - "uuid": "5e27b226-b387-4add-9830-de2d58f38162", - "start": { - "$date": "2021-04-18T23:43:20.000Z" - }, - "end": { - "$date": "2021-04-18T23:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "addcb02b-f8e6-4f68-8467-d0da8d6c0b30", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T00:04:47.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:40.000Z" - }, - "events": [ - { - "uuid": "97f9b2c0-6f80-4f7c-ae49-1b136ad1d64b", - "start": { - "$date": "2021-04-19T00:04:47.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "032f2b90-9045-4329-8960-a395996430b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-19T00:04:42.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:28.000Z" - }, - "events": [ - { - "uuid": "dbf64cca-d3b2-427b-a012-5151bc2786a0", - "start": { - "$date": "2021-04-19T00:04:42.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43ea68ed-454a-4651-bd58-eddf5d6b7a53", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T00:05:14.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:25.000Z" - }, - "events": [ - { - "uuid": "dfc29787-5d5a-47da-a5c3-5a312c0f4641", - "start": { - "$date": "2021-04-19T00:05:14.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "857dfd4a-4b4a-4e0b-8ced-9796788cd268", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-19T00:05:30.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:31.000Z" - }, - "events": [ - { - "uuid": "6261475a-e37b-4735-8873-4ab80024b573", - "start": { - "$date": "2021-04-19T00:05:30.000Z" - }, - "end": { - "$date": "2021-04-19T00:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12e5835c-6651-4f6f-ba3f-14340700acb5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T00:36:08.000Z" - }, - "end": { - "$date": "2021-04-19T00:52:25.000Z" - }, - "events": [ - { - "uuid": "37803ce3-f4eb-4cfb-b00f-2778814891a8", - "start": { - "$date": "2021-04-19T00:36:08.000Z" - }, - "end": { - "$date": "2021-04-19T00:52:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5d066479-766b-4105-a89d-6a018103adb5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T00:32:50.000Z" - }, - "end": { - "$date": "2021-04-19T00:34:25.000Z" - }, - "events": [ - { - "uuid": "5b3a9ba7-9d91-4d32-98e5-e9e8d93eb446", - "start": { - "$date": "2021-04-19T00:32:50.000Z" - }, - "end": { - "$date": "2021-04-19T00:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7477210-5f4a-464e-a674-72310eaf7247", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-19T00:35:59.000Z" - }, - "end": { - "$date": "2021-04-19T00:52:25.000Z" - }, - "events": [ - { - "uuid": "7e819baf-f9ff-4931-9fad-4d31cb7c4fd5", - "start": { - "$date": "2021-04-19T00:35:59.000Z" - }, - "end": { - "$date": "2021-04-19T00:52:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9430cf3a-b8df-40a5-90ac-a75a2be7bce7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-19T00:36:41.000Z" - }, - "end": { - "$date": "2021-04-19T00:52:21.000Z" - }, - "events": [ - { - "uuid": "79a89552-462d-46bc-a5d8-9a6ea188e8ca", - "start": { - "$date": "2021-04-19T00:36:41.000Z" - }, - "end": { - "$date": "2021-04-19T00:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "981ffbc5-b9c7-42bb-92a2-f1eedb8a0d97", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T00:35:00.000Z" - }, - "end": { - "$date": "2021-04-19T00:38:25.000Z" - }, - "events": [ - { - "uuid": "c4508dc7-c873-4615-96cf-c5ff102b2419", - "start": { - "$date": "2021-04-19T00:35:00.000Z" - }, - "end": { - "$date": "2021-04-19T00:38:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "61752e1d-4539-4244-af07-be10189c11b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T00:38:55.000Z" - }, - "end": { - "$date": "2021-04-19T00:48:51.000Z" - }, - "events": [ - { - "uuid": "fb850d5c-dff3-4274-8a0f-53983b204373", - "start": { - "$date": "2021-04-19T00:38:55.000Z" - }, - "end": { - "$date": "2021-04-19T00:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "37038a2b-a5c8-4020-99e5-8d4a5cebbb06", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-19T00:41:49.000Z" - }, - "end": { - "$date": "2021-04-19T00:43:08.000Z" - }, - "events": [ - { - "uuid": "610be389-0f6e-4966-9e0a-92174543f134", - "start": { - "$date": "2021-04-19T00:41:49.000Z" - }, - "end": { - "$date": "2021-04-19T00:43:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a73e7b4e-0d6c-4129-89cf-953fb1a7cbaf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-19T00:43:39.000Z" - }, - "end": { - "$date": "2021-04-19T02:12:54.000Z" - }, - "events": [ - { - "uuid": "ed3a4df4-b850-4a79-84f9-fb92276fa4b2", - "start": { - "$date": "2021-04-19T00:43:39.000Z" - }, - "end": { - "$date": "2021-04-19T02:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c076c63-7c7c-4624-a891-8f49c8041269", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T00:56:15.000Z" - }, - "end": { - "$date": "2021-04-19T01:18:04.000Z" - }, - "events": [ - { - "uuid": "056803d5-15f6-41c3-94a0-791559205e09", - "start": { - "$date": "2021-04-19T00:56:15.000Z" - }, - "end": { - "$date": "2021-04-19T01:18:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4ce65a7a-2f5f-48bf-a22b-bdf7b8712f31", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T00:54:07.000Z" - }, - "end": { - "$date": "2021-04-19T01:24:53.000Z" - }, - "events": [ - { - "uuid": "c24e4fd0-c2cd-4811-98c1-43eec9e62c27", - "start": { - "$date": "2021-04-19T00:54:07.000Z" - }, - "end": { - "$date": "2021-04-19T01:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e946aaa-874a-487a-8aa8-17e11cafbd13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T01:21:21.000Z" - }, - "end": { - "$date": "2021-04-19T01:44:53.000Z" - }, - "events": [ - { - "uuid": "3fc581c1-eeb5-44bb-8e96-c61d6fc1ad9e", - "start": { - "$date": "2021-04-19T01:21:21.000Z" - }, - "end": { - "$date": "2021-04-19T01:44:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22b55149-bad6-4c2c-a1b1-a8f6e95d95aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T01:48:08.000Z" - }, - "end": { - "$date": "2021-04-19T02:10:44.000Z" - }, - "events": [ - { - "uuid": "f4783511-6f25-4a9b-8d24-db780a4cc368", - "start": { - "$date": "2021-04-19T01:48:08.000Z" - }, - "end": { - "$date": "2021-04-19T02:10:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "1da94c9c-aaa7-4e87-a213-40279fbb2d0b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T02:09:56.000Z" - }, - "end": { - "$date": "2021-04-19T02:33:22.000Z" - }, - "events": [ - { - "uuid": "8fba4bcd-ff8a-426a-a947-7b36f0f165b4", - "start": { - "$date": "2021-04-19T02:09:56.000Z" - }, - "end": { - "$date": "2021-04-19T02:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1aff8dc8-abe1-4f42-b120-3ee07f10d8eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T02:14:35.000Z" - }, - "end": { - "$date": "2021-04-19T02:29:06.000Z" - }, - "events": [ - { - "uuid": "f67d9113-8d17-4804-a0f0-78eada9d0428", - "start": { - "$date": "2021-04-19T02:14:35.000Z" - }, - "end": { - "$date": "2021-04-19T02:29:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "62a9aa8a-b1cf-48dc-ae90-2c9aee80f3b5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-19T02:15:24.000Z" - }, - "end": { - "$date": "2021-04-19T02:55:41.000Z" - }, - "events": [ - { - "uuid": "7d9dd1ea-ffcd-42ae-8e85-3230779f46aa", - "start": { - "$date": "2021-04-19T02:15:24.000Z" - }, - "end": { - "$date": "2021-04-19T02:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2fdef7c-11d9-46a0-99b7-33d6f373651b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-19T02:21:34.000Z" - }, - "end": { - "$date": "2021-04-19T02:41:12.000Z" - }, - "events": [ - { - "uuid": "8b7500e9-a503-4599-bbab-d741ce88623a", - "start": { - "$date": "2021-04-19T02:21:34.000Z" - }, - "end": { - "$date": "2021-04-19T02:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3ec91045-1a12-4ccd-916f-92476f060c42", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T02:34:32.000Z" - }, - "end": { - "$date": "2021-04-19T02:36:58.000Z" - }, - "events": [ - { - "uuid": "846111b3-2145-4b17-976b-8c5a2447513c", - "start": { - "$date": "2021-04-19T02:34:32.000Z" - }, - "end": { - "$date": "2021-04-19T02:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "69d3ec91-0eba-4dec-bd21-6de5d0bc6ca7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T03:42:06.000Z" - }, - "end": { - "$date": "2021-04-19T04:23:21.000Z" - }, - "events": [ - { - "uuid": "2df19b7e-6b86-4f6b-81a2-0b295432163c", - "start": { - "$date": "2021-04-19T03:42:06.000Z" - }, - "end": { - "$date": "2021-04-19T04:23:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "85f97e3d-d8f9-4757-95b5-f015dd794937", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-19T03:20:11.000Z" - }, - "end": { - "$date": "2021-04-19T04:59:18.000Z" - }, - "events": [ - { - "uuid": "1a17603f-416f-485e-82de-8242e6a555e2", - "start": { - "$date": "2021-04-19T03:20:11.000Z" - }, - "end": { - "$date": "2021-04-19T04:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "98806841-a1e4-4a20-b4f5-5d638a2d5768", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-19T03:20:23.000Z" - }, - "end": { - "$date": "2021-04-19T04:59:20.000Z" - }, - "events": [ - { - "uuid": "06a38f94-4bd4-4763-849c-32d235649f6f", - "start": { - "$date": "2021-04-19T03:20:23.000Z" - }, - "end": { - "$date": "2021-04-19T04:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "abec5153-bfb5-4dc6-9fa3-5248fa964fe7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-19T04:19:39.000Z" - }, - "end": { - "$date": "2021-04-19T06:49:42.000Z" - }, - "events": [ - { - "uuid": "32dfa039-41df-44f1-9641-a92f2259dd11", - "start": { - "$date": "2021-04-19T04:19:39.000Z" - }, - "end": { - "$date": "2021-04-19T06:49:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "d9b3580b-6fa2-410d-bf13-0059c4fac9fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T04:34:57.000Z" - }, - "end": { - "$date": "2021-04-19T04:46:33.000Z" - }, - "events": [ - { - "uuid": "168284ab-e643-474d-8296-36ab9c92b6ba", - "start": { - "$date": "2021-04-19T04:34:57.000Z" - }, - "end": { - "$date": "2021-04-19T04:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7459ed26-fa6a-4ffc-8197-ce2a58d2fa31", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T05:00:08.000Z" - }, - "end": { - "$date": "2021-04-19T05:04:10.000Z" - }, - "events": [ - { - "uuid": "401f9887-e512-45bd-a4fb-4c06cd351e4c", - "start": { - "$date": "2021-04-19T05:00:08.000Z" - }, - "end": { - "$date": "2021-04-19T05:04:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "412df875-fa6a-4182-ada7-7ba13d4bcc9e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T05:18:27.000Z" - }, - "end": { - "$date": "2021-04-19T05:53:40.000Z" - }, - "events": [ - { - "uuid": "9c238776-bd57-4630-b6c7-b0a59852e597", - "start": { - "$date": "2021-04-19T05:18:27.000Z" - }, - "end": { - "$date": "2021-04-19T05:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "462ce924-7b5c-4aa3-b945-ddfce51d6acf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-19T12:13:04.000Z" - }, - "end": { - "$date": "2021-04-19T12:40:54.000Z" - }, - "events": [ - { - "uuid": "a5cf7cc0-3640-4706-9020-b15f2bdd7818", - "start": { - "$date": "2021-04-19T12:13:04.000Z" - }, - "end": { - "$date": "2021-04-19T12:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2358ca1d-05bd-44a3-8bc6-64d1a54da919", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T13:43:26.000Z" - }, - "end": { - "$date": "2021-04-19T14:49:29.000Z" - }, - "events": [ - { - "uuid": "6a569e85-0a82-4c34-bb4c-5c657a415116", - "start": { - "$date": "2021-04-19T13:43:26.000Z" - }, - "end": { - "$date": "2021-04-19T14:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3251cfed-7f60-4cad-8deb-29d559e4d7df", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-19T14:15:56.000Z" - }, - "end": { - "$date": "2021-04-19T14:45:11.000Z" - }, - "events": [ - { - "uuid": "2e39b093-84a2-493d-83ad-bb5ddf4b0049", - "start": { - "$date": "2021-04-19T14:15:56.000Z" - }, - "end": { - "$date": "2021-04-19T14:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b2727b39-71fd-4924-a06b-dfb965b72773", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-19T15:06:21.000Z" - }, - "end": { - "$date": "2021-04-19T15:28:56.000Z" - }, - "events": [ - { - "uuid": "3ee896d5-e1e1-4b7e-a0c2-979ccd6ffaad", - "start": { - "$date": "2021-04-19T15:06:21.000Z" - }, - "end": { - "$date": "2021-04-19T15:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4211a8bf-25c0-44a5-9256-3d24ee00ef43", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T15:45:02.000Z" - }, - "end": { - "$date": "2021-04-19T16:07:34.000Z" - }, - "events": [ - { - "uuid": "8aae2417-b264-4486-b921-ea463edeaef6", - "start": { - "$date": "2021-04-19T15:45:02.000Z" - }, - "end": { - "$date": "2021-04-19T16:07:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a3d9d1d-da2f-469b-a514-ec295ec3da42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T16:11:19.000Z" - }, - "end": { - "$date": "2021-04-19T16:34:54.000Z" - }, - "events": [ - { - "uuid": "f5528e46-c1d9-4f2d-80b4-a752da0fa011", - "start": { - "$date": "2021-04-19T16:11:19.000Z" - }, - "end": { - "$date": "2021-04-19T16:34:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d7272638-15c1-44dd-bf93-080233e9b714", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-19T16:20:32.000Z" - }, - "end": { - "$date": "2021-04-19T18:43:13.000Z" - }, - "events": [ - { - "uuid": "694cd0bc-8fa4-4af5-bd2d-507a3d4dae47", - "start": { - "$date": "2021-04-19T16:20:32.000Z" - }, - "end": { - "$date": "2021-04-19T18:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb19335d-7fa9-4282-b95d-630586c6b2c7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T17:27:29.000Z" - }, - "end": { - "$date": "2021-04-19T18:01:29.000Z" - }, - "events": [ - { - "uuid": "fc0e61a0-6a1f-4cdd-9892-cf303694a040", - "start": { - "$date": "2021-04-19T17:27:29.000Z" - }, - "end": { - "$date": "2021-04-19T18:01:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "176a6a24-dae7-45fd-97c8-793653d3910f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T17:23:39.000Z" - }, - "end": { - "$date": "2021-04-19T19:58:01.000Z" - }, - "events": [ - { - "uuid": "be9c1a92-b90f-45f6-97f9-a1f801e984c8", - "start": { - "$date": "2021-04-19T17:23:39.000Z" - }, - "end": { - "$date": "2021-04-19T19:58:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fe14b26-556c-47df-a39c-06d61044aa49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T18:07:55.000Z" - }, - "end": { - "$date": "2021-04-19T18:22:05.000Z" - }, - "events": [ - { - "uuid": "6cf68d2b-01f4-49b6-ad20-2f8e0a5c1e00", - "start": { - "$date": "2021-04-19T18:07:55.000Z" - }, - "end": { - "$date": "2021-04-19T18:22:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfd3d792-6ded-4bae-970e-bbc77907baa4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T18:25:56.000Z" - }, - "end": { - "$date": "2021-04-19T18:58:03.000Z" - }, - "events": [ - { - "uuid": "16ff22ea-48c4-4807-8ba2-0bb6fe091e57", - "start": { - "$date": "2021-04-19T18:25:56.000Z" - }, - "end": { - "$date": "2021-04-19T18:58:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b5e74c35-415d-43cd-8a4f-fb465abdb3f4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-19T19:16:02.000Z" - }, - "end": { - "$date": "2021-04-19T20:04:04.000Z" - }, - "events": [ - { - "uuid": "03f1b38b-61fc-4903-90c8-28c2cae7c45b", - "start": { - "$date": "2021-04-19T19:16:02.000Z" - }, - "end": { - "$date": "2021-04-19T20:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa6ca615-1e61-4782-b567-1b1b04e3dbfc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T19:55:44.000Z" - }, - "end": { - "$date": "2021-04-19T20:28:41.000Z" - }, - "events": [ - { - "uuid": "e6b0000f-d3bc-4ca7-a0ce-4ce218894051", - "start": { - "$date": "2021-04-19T19:55:44.000Z" - }, - "end": { - "$date": "2021-04-19T20:28:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "cf39b0e4-0841-4d3e-a285-8be37c07c55b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-19T20:06:09.000Z" - }, - "end": { - "$date": "2021-04-19T20:10:39.000Z" - }, - "events": [ - { - "uuid": "9e041ef4-93b5-4540-87d9-ed1d302567ac", - "start": { - "$date": "2021-04-19T20:06:09.000Z" - }, - "end": { - "$date": "2021-04-19T20:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c13ef5a8-245a-4c6c-84d1-422991abfd25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T20:36:23.000Z" - }, - "end": { - "$date": "2021-04-19T21:12:42.000Z" - }, - "events": [ - { - "uuid": "b3bba473-149f-460d-b329-3411c9e9a4a9", - "start": { - "$date": "2021-04-19T20:36:23.000Z" - }, - "end": { - "$date": "2021-04-19T21:12:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b548af7a-d700-43dc-852b-7a12059cecbe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-19T20:47:33.000Z" - }, - "end": { - "$date": "2021-04-19T21:51:10.000Z" - }, - "events": [ - { - "uuid": "9e35b2ff-ebc4-4312-ad7b-f82514ee7241", - "start": { - "$date": "2021-04-19T20:47:33.000Z" - }, - "end": { - "$date": "2021-04-19T21:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "a5349a8f-0f67-4b90-959a-81e290f754de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T20:48:18.000Z" - }, - "end": { - "$date": "2021-04-19T21:01:39.000Z" - }, - "events": [ - { - "uuid": "19e32eba-6398-4dff-a066-7ccf1b115cc5", - "start": { - "$date": "2021-04-19T20:48:18.000Z" - }, - "end": { - "$date": "2021-04-19T21:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "77147966-9e3a-4e61-b6ad-aa146886e179", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-19T21:06:39.000Z" - }, - "end": { - "$date": "2021-04-19T23:40:45.000Z" - }, - "events": [ - { - "uuid": "66bcb795-d4a3-4c89-bc7b-71685ba5c9ce", - "start": { - "$date": "2021-04-19T21:06:39.000Z" - }, - "end": { - "$date": "2021-04-19T23:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd183681-ec1c-43b5-b7fd-f33fe25180d6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-19T21:28:50.000Z" - }, - "end": { - "$date": "2021-04-19T21:50:02.000Z" - }, - "events": [ - { - "uuid": "aaf530d2-7507-4271-a842-66cb0f5c70d7", - "start": { - "$date": "2021-04-19T21:28:50.000Z" - }, - "end": { - "$date": "2021-04-19T21:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2ec270ca-64c7-4ae1-9c99-1e5c5c6664b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T21:18:29.000Z" - }, - "end": { - "$date": "2021-04-19T21:19:29.000Z" - }, - "events": [ - { - "uuid": "70207247-aae5-4359-bc5f-00cdc79d442c", - "start": { - "$date": "2021-04-19T21:18:29.000Z" - }, - "end": { - "$date": "2021-04-19T21:19:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9098ef5-be65-4350-aec1-8236a7b39c98", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T21:28:52.000Z" - }, - "end": { - "$date": "2021-04-19T21:50:07.000Z" - }, - "events": [ - { - "uuid": "44ab6370-6465-4bbd-864d-db75b9448f80", - "start": { - "$date": "2021-04-19T21:28:52.000Z" - }, - "end": { - "$date": "2021-04-19T21:50:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "84cc5572-92c9-475d-b018-81d42d351d91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T21:26:04.000Z" - }, - "end": { - "$date": "2021-04-19T22:14:35.000Z" - }, - "events": [ - { - "uuid": "f5d31879-b19a-41e2-a1c1-a182ba80c41e", - "start": { - "$date": "2021-04-19T21:26:04.000Z" - }, - "end": { - "$date": "2021-04-19T22:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "16c0e96d-2ef7-407b-9eb1-b10f328e36c1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-19T21:31:00.000Z" - }, - "end": { - "$date": "2021-04-20T00:14:55.000Z" - }, - "events": [ - { - "uuid": "2d73e8b2-fafd-4cb1-94bf-3f4ddd6f1c59", - "start": { - "$date": "2021-04-19T21:31:00.000Z" - }, - "end": { - "$date": "2021-04-20T00:14:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e5a6f6d-eca3-489c-950a-658c57f6b376", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-19T21:55:52.000Z" - }, - "end": { - "$date": "2021-04-19T22:19:58.000Z" - }, - "events": [ - { - "uuid": "66f31137-0451-461d-b2b8-c1793cfc4471", - "start": { - "$date": "2021-04-19T21:55:52.000Z" - }, - "end": { - "$date": "2021-04-19T22:19:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50a282a5-b8d1-4740-abed-67d8da854ffd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T21:55:48.000Z" - }, - "end": { - "$date": "2021-04-19T22:20:05.000Z" - }, - "events": [ - { - "uuid": "29e05f5d-5afe-4d90-aad7-37cf54900f8b", - "start": { - "$date": "2021-04-19T21:55:48.000Z" - }, - "end": { - "$date": "2021-04-19T22:20:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e5007e7d-48b9-43c3-8e5b-0f674dec979a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-19T22:19:13.000Z" - }, - "end": { - "$date": "2021-04-19T23:40:36.000Z" - }, - "events": [ - { - "uuid": "95dc536b-84ad-4278-88bb-6208fc731422", - "start": { - "$date": "2021-04-19T22:19:13.000Z" - }, - "end": { - "$date": "2021-04-19T23:40:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13528b19-18d0-49ca-9cc3-8464d59ca2cf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-19T22:19:58.000Z" - }, - "end": { - "$date": "2021-04-19T22:21:11.000Z" - }, - "events": [ - { - "uuid": "7aa7622a-3866-41aa-95a6-9ef215d15b75", - "start": { - "$date": "2021-04-19T22:19:58.000Z" - }, - "end": { - "$date": "2021-04-19T22:21:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d19a09dc-3f2a-41de-9300-a4fc2599b9c0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T22:26:36.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:59.000Z" - }, - "events": [ - { - "uuid": "34826d1c-f551-4f97-95c1-13551d38dbc2", - "start": { - "$date": "2021-04-19T22:26:36.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86d46a94-abfe-485d-8f28-bb22be723fc1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-19T22:28:45.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:50.000Z" - }, - "events": [ - { - "uuid": "f628377e-ac20-49f4-90e8-07d017892183", - "start": { - "$date": "2021-04-19T22:28:45.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1b2f13a-87c0-4d01-8c8b-a380835a345e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-19T22:28:19.000Z" - }, - "end": { - "$date": "2021-04-19T22:53:02.000Z" - }, - "events": [ - { - "uuid": "6c8cd06f-bd7f-4d47-b1b6-c59c9870da85", - "start": { - "$date": "2021-04-19T22:28:19.000Z" - }, - "end": { - "$date": "2021-04-19T22:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2631da7d-f94d-4108-8e7a-5d3c9c8f1f24", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-19T22:26:38.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:59.000Z" - }, - "events": [ - { - "uuid": "075bd638-c48b-4542-9270-1c16b3661e0c", - "start": { - "$date": "2021-04-19T22:26:38.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "572a0fce-70d6-4907-a56e-d55877309021", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T22:27:41.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:51.000Z" - }, - "events": [ - { - "uuid": "0539ab30-161d-433c-8279-18490442a4fa", - "start": { - "$date": "2021-04-19T22:27:41.000Z" - }, - "end": { - "$date": "2021-04-19T22:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c4a7d36-00df-42f3-9628-92dc225d123b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T22:56:07.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:50.000Z" - }, - "events": [ - { - "uuid": "00e73faf-1e03-48f7-bae3-ff0c762748bf", - "start": { - "$date": "2021-04-19T22:56:07.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89c65a0f-f917-4882-80ac-817cc8b28b13", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-19T22:56:06.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:46.000Z" - }, - "events": [ - { - "uuid": "eec1de64-8a75-48cb-90ab-248703b3a3f1", - "start": { - "$date": "2021-04-19T22:56:06.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8d9ac86-4915-4311-a28a-c3aeb01b4cca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T22:56:26.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:42.000Z" - }, - "events": [ - { - "uuid": "5cf2a11a-5e02-44ef-9118-7190c1ca16df", - "start": { - "$date": "2021-04-19T22:56:26.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaae3484-4f81-4c1d-b83b-614e472a61a7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-19T22:56:05.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:58.000Z" - }, - "events": [ - { - "uuid": "3072bea9-e9b5-45fb-8fc0-2c05b258db82", - "start": { - "$date": "2021-04-19T22:56:05.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82a2abc6-e133-4b2d-952d-274aa64f10a4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-19T22:56:16.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:48.000Z" - }, - "events": [ - { - "uuid": "c9b99f6d-e724-4402-8c43-ba9a66c79b53", - "start": { - "$date": "2021-04-19T22:56:16.000Z" - }, - "end": { - "$date": "2021-04-19T23:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c45182e5-aeb0-4062-a806-699faa90f41e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-19T23:15:10.000Z" - }, - "end": { - "$date": "2021-04-20T00:09:31.000Z" - }, - "events": [ - { - "uuid": "342bc574-c06e-4d69-a817-5d41e6a09b0c", - "start": { - "$date": "2021-04-19T23:15:10.000Z" - }, - "end": { - "$date": "2021-04-20T00:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc45cf85-746c-495d-8c71-c070cc1d065d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-19T23:30:13.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:22.000Z" - }, - "events": [ - { - "uuid": "7d49bc60-28e4-439c-82e7-39881d738046", - "start": { - "$date": "2021-04-19T23:30:13.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51bf6b78-7772-4bc3-b042-d3ae2e60ed49", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-19T23:30:07.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:12.000Z" - }, - "events": [ - { - "uuid": "85dc21d1-4d5c-41b3-beb3-ee6447be848b", - "start": { - "$date": "2021-04-19T23:30:07.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f8ba8bc-4b95-43b1-ae43-7f2228ab8771", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-19T23:30:12.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:12.000Z" - }, - "events": [ - { - "uuid": "2b81a4ce-5b67-4b04-abf9-36638c90f181", - "start": { - "$date": "2021-04-19T23:30:12.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ae89606-bef5-4768-9b0c-f5da1b3cbe36", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-19T23:30:11.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:17.000Z" - }, - "events": [ - { - "uuid": "82bd58e5-b928-451d-acee-2e5235c25e13", - "start": { - "$date": "2021-04-19T23:30:11.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41bafe8c-126b-46c5-9cec-5bce029b0614", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-19T23:30:43.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:16.000Z" - }, - "events": [ - { - "uuid": "07e1af75-e415-4aa6-ac08-70f839ac7d4a", - "start": { - "$date": "2021-04-19T23:30:43.000Z" - }, - "end": { - "$date": "2021-04-19T23:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "3219fff2-fd87-4ac9-9ce2-a6da9319c9d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-19T23:50:12.000Z" - }, - "end": { - "$date": "2021-04-20T00:04:09.000Z" - }, - "events": [ - { - "uuid": "87776907-baef-4888-8564-7a13efb33841", - "start": { - "$date": "2021-04-19T23:50:12.000Z" - }, - "end": { - "$date": "2021-04-20T00:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "f7a1afc4-8574-4d82-8dee-23416cdd0fd3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-20T03:05:27.000Z" - }, - "end": { - "$date": "2021-04-20T03:47:54.000Z" - }, - "events": [ - { - "uuid": "4729f8a3-e192-48eb-a88f-023311b9abf0", - "start": { - "$date": "2021-04-20T03:05:27.000Z" - }, - "end": { - "$date": "2021-04-20T05:57:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99ae5899-ace7-42fa-8aff-02fde5130348", - "start": { - "$date": "2021-04-20T05:57:27.000Z" - }, - "end": { - "$date": "2021-04-20T06:02:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "059bc09a-6bc9-461a-8de6-e05a93f4fca4", - "start": { - "$date": "2021-04-20T06:02:27.000Z" - }, - "end": { - "$date": "2021-04-20T03:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "ea9c6329-9933-4f50-8057-7d3b0a7bce96", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-20T00:15:54.000Z" - }, - "end": { - "$date": "2021-04-20T01:28:37.000Z" - }, - "events": [ - { - "uuid": "c2958907-27a1-436d-954a-895672a25caf", - "start": { - "$date": "2021-04-20T00:15:54.000Z" - }, - "end": { - "$date": "2021-04-20T01:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c58c3373-47cd-44db-bb2f-a214cfa0f383", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-20T00:15:26.000Z" - }, - "end": { - "$date": "2021-04-20T00:37:06.000Z" - }, - "events": [ - { - "uuid": "a80f0dda-32d5-4e4b-8b80-436f8017ddb8", - "start": { - "$date": "2021-04-20T00:15:26.000Z" - }, - "end": { - "$date": "2021-04-20T00:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "ac5eb0a8-4e79-4126-bb55-b8da76c488b1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-20T00:55:17.000Z" - }, - "end": { - "$date": "2021-04-20T05:09:46.000Z" - }, - "events": [ - { - "uuid": "b81f69ad-d012-4f82-bbae-f294821747fa", - "start": { - "$date": "2021-04-20T00:55:17.000Z" - }, - "end": { - "$date": "2021-04-20T02:47:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d37ac2f-5ea6-44e8-8335-d6a2ac84d095", - "start": { - "$date": "2021-04-20T02:47:17.000Z" - }, - "end": { - "$date": "2021-04-20T02:52:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "249c2274-e75b-4724-951f-d15b0357db79", - "start": { - "$date": "2021-04-20T02:52:17.000Z" - }, - "end": { - "$date": "2021-04-20T03:02:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7bf45e9-f1be-400c-8a37-502bb3513db4", - "start": { - "$date": "2021-04-20T03:02:17.000Z" - }, - "end": { - "$date": "2021-04-20T03:22:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "797f3724-7b7c-4e8f-97ec-62d25d1012fd", - "start": { - "$date": "2021-04-20T03:22:17.000Z" - }, - "end": { - "$date": "2021-04-20T05:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9e7489df-ef23-47aa-a304-c6819158c15f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T01:25:31.000Z" - }, - "end": { - "$date": "2021-04-20T04:18:06.000Z" - }, - "events": [ - { - "uuid": "c59b5426-b168-4a3c-af2e-30dfa5015590", - "start": { - "$date": "2021-04-20T01:25:31.000Z" - }, - "end": { - "$date": "2021-04-20T04:18:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1cad509e-8f9a-4629-aea4-7ecaa3faadbb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-20T03:11:03.000Z" - }, - "end": { - "$date": "2021-04-20T03:48:14.000Z" - }, - "events": [ - { - "uuid": "8f25bfa8-6e1d-4ebd-b470-96d2d7c364c8", - "start": { - "$date": "2021-04-20T03:11:03.000Z" - }, - "end": { - "$date": "2021-04-20T04:28:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "002d6c67-3d11-4cbb-878e-3d27f3164412", - "start": { - "$date": "2021-04-20T04:28:03.000Z" - }, - "end": { - "$date": "2021-04-20T04:31:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8deff97c-6a1b-4a83-8698-80d936fb2b32", - "start": { - "$date": "2021-04-20T04:31:03.000Z" - }, - "end": { - "$date": "2021-04-20T04:46:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "307b1f4f-df1c-411d-b0cd-3a4ebe4ae592", - "start": { - "$date": "2021-04-20T04:46:03.000Z" - }, - "end": { - "$date": "2021-04-20T04:52:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7fcc112-6050-4f14-bed7-d48be326788f", - "start": { - "$date": "2021-04-20T04:52:03.000Z" - }, - "end": { - "$date": "2021-04-20T03:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8e5bb24c-da5c-47bb-a641-64e2970bc11a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-20T02:11:53.000Z" - }, - "end": { - "$date": "2021-04-20T04:01:21.000Z" - }, - "events": [ - { - "uuid": "09cd6284-ca29-44de-9d69-3472c76a1296", - "start": { - "$date": "2021-04-20T02:11:53.000Z" - }, - "end": { - "$date": "2021-04-20T04:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c0f4c5c-3c3d-4ab0-b8d0-a6b869b2b552", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-20T03:14:51.000Z" - }, - "end": { - "$date": "2021-04-20T03:31:31.000Z" - }, - "events": [ - { - "uuid": "fe9e0fcc-3583-41c6-b681-77ef20ff8c81", - "start": { - "$date": "2021-04-20T03:14:51.000Z" - }, - "end": { - "$date": "2021-04-20T03:31:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d6458d90-3c92-473e-a5d1-908516f8291f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-20T03:14:46.000Z" - }, - "end": { - "$date": "2021-04-20T06:08:07.000Z" - }, - "events": [ - { - "uuid": "2271b621-1424-4e6c-86f4-5bb69feab871", - "start": { - "$date": "2021-04-20T03:14:46.000Z" - }, - "end": { - "$date": "2021-04-20T06:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "d0ee5e65-1ed4-4042-bfbe-836ee7b3aaa0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-20T03:16:04.000Z" - }, - "end": { - "$date": "2021-04-20T03:17:20.000Z" - }, - "events": [ - { - "uuid": "75dda870-d8fa-46f0-a5fa-f0b55792dd2a", - "start": { - "$date": "2021-04-20T03:16:04.000Z" - }, - "end": { - "$date": "2021-04-20T03:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9480c747-7b88-41c8-831b-f9c4118dfcf2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-20T03:18:48.000Z" - }, - "end": { - "$date": "2021-04-20T06:08:12.000Z" - }, - "events": [ - { - "uuid": "eb58e5b5-e941-4d4e-bf39-b0f8c6ca04c7", - "start": { - "$date": "2021-04-20T03:18:48.000Z" - }, - "end": { - "$date": "2021-04-20T06:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f003c606-5821-4fb3-9ba3-7e7ba3bf6060", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-20T04:03:02.000Z" - }, - "end": { - "$date": "2021-04-20T05:38:26.000Z" - }, - "events": [ - { - "uuid": "d8b5759c-fe41-44b3-9e13-7c69800ca43e", - "start": { - "$date": "2021-04-20T04:03:02.000Z" - }, - "end": { - "$date": "2021-04-20T05:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "61b01565-3a34-4068-aef7-8fc25e066fea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-20T04:35:20.000Z" - }, - "end": { - "$date": "2021-04-20T04:48:15.000Z" - }, - "events": [ - { - "uuid": "d92552f1-6da9-4e3c-9199-582594751809", - "start": { - "$date": "2021-04-20T04:35:20.000Z" - }, - "end": { - "$date": "2021-04-20T04:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "ff636011-4a03-4925-a3b7-004e75f5f761", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-20T04:43:24.000Z" - }, - "end": { - "$date": "2021-04-20T04:50:04.000Z" - }, - "events": [ - { - "uuid": "6f55e577-dabf-4874-9e92-c7cd3156d34c", - "start": { - "$date": "2021-04-20T04:43:24.000Z" - }, - "end": { - "$date": "2021-04-20T04:50:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "7d5b4768-7309-4879-8a65-80e24e5cdaad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-20T05:20:22.000Z" - }, - "end": { - "$date": "2021-04-20T05:45:34.000Z" - }, - "events": [ - { - "uuid": "37b8ebd6-1fc9-458c-b30c-d33fdecb3fdc", - "start": { - "$date": "2021-04-20T05:20:22.000Z" - }, - "end": { - "$date": "2021-04-20T05:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "987c82cd-bc76-4c44-8b41-00d077610466", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-20T05:49:48.000Z" - }, - "end": { - "$date": "2021-04-20T06:15:48.000Z" - }, - "events": [ - { - "uuid": "c389df36-1676-4416-a402-4d172436d489", - "start": { - "$date": "2021-04-20T05:49:48.000Z" - }, - "end": { - "$date": "2021-04-20T06:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c987c798-2ef2-4d19-bc22-26a43d943555", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-20T06:07:27.000Z" - }, - "end": { - "$date": "2021-04-20T06:10:22.000Z" - }, - "events": [ - { - "uuid": "ee8bbe70-7536-44db-99e3-ef7f4d70c07a", - "start": { - "$date": "2021-04-20T06:07:27.000Z" - }, - "end": { - "$date": "2021-04-20T06:10:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f7b094ec-20ae-4d6b-bc65-7c3d876ada7e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-20T06:16:34.000Z" - }, - "end": { - "$date": "2021-04-20T06:34:34.000Z" - }, - "events": [ - { - "uuid": "d77ba4a0-f4f9-4ab0-a1ca-31de10b421ef", - "start": { - "$date": "2021-04-20T06:16:34.000Z" - }, - "end": { - "$date": "2021-04-20T06:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c3e3fe5b-8894-492b-b9bf-9183e0ffcba7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-20T14:25:30.000Z" - }, - "end": { - "$date": "2021-04-20T14:30:43.000Z" - }, - "events": [ - { - "uuid": "7a428d99-a8f9-48c1-84ef-0bda7bbc51ae", - "start": { - "$date": "2021-04-20T14:25:30.000Z" - }, - "end": { - "$date": "2021-04-20T14:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2a4df815-4178-483b-91e7-320c2784489e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-20T15:30:51.000Z" - }, - "end": { - "$date": "2021-04-20T15:36:04.000Z" - }, - "events": [ - { - "uuid": "0bfb7544-a771-45b4-8e98-ffa927be5f48", - "start": { - "$date": "2021-04-20T15:30:51.000Z" - }, - "end": { - "$date": "2021-04-20T15:36:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1db8864a-30db-4967-ba06-ee3a12e0ad83", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-20T16:29:16.000Z" - }, - "end": { - "$date": "2021-04-20T17:03:36.000Z" - }, - "events": [ - { - "uuid": "fab7dce1-098d-4b2f-895c-b407d8d55372", - "start": { - "$date": "2021-04-20T16:29:16.000Z" - }, - "end": { - "$date": "2021-04-20T17:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9cddd24-ca23-4278-8690-57eeaaed49b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-20T17:22:59.000Z" - }, - "end": { - "$date": "2021-04-20T17:58:48.000Z" - }, - "events": [ - { - "uuid": "a257fa84-3f4d-44c3-b5cf-6c8b14de6162", - "start": { - "$date": "2021-04-20T17:22:59.000Z" - }, - "end": { - "$date": "2021-04-20T17:58:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ce7d1563-1e50-4871-b0c4-8ad09242d3ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T18:43:57.000Z" - }, - "end": { - "$date": "2021-04-20T18:46:02.000Z" - }, - "events": [ - { - "uuid": "38a11dbe-d4ea-4161-8d4c-2fce307a2efa", - "start": { - "$date": "2021-04-20T18:43:57.000Z" - }, - "end": { - "$date": "2021-04-20T18:46:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ba9610d9-b3cf-4a66-b2e9-e06054ac740a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T18:46:12.000Z" - }, - "end": { - "$date": "2021-04-20T18:58:47.000Z" - }, - "events": [ - { - "uuid": "b9bd9f35-1c5f-4a72-883f-bcc876ec460e", - "start": { - "$date": "2021-04-20T18:46:12.000Z" - }, - "end": { - "$date": "2021-04-20T18:58:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "75b00033-0f33-49d3-bab2-f71e55948497", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T19:14:53.000Z" - }, - "end": { - "$date": "2021-04-20T19:44:58.000Z" - }, - "events": [ - { - "uuid": "93790b4d-2c36-47c8-ab7d-5e792edfa854", - "start": { - "$date": "2021-04-20T19:14:53.000Z" - }, - "end": { - "$date": "2021-04-20T19:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5166d32f-dc87-4abe-a203-4c9833dc80ba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-20T19:24:06.000Z" - }, - "end": { - "$date": "2021-04-20T20:28:33.000Z" - }, - "events": [ - { - "uuid": "02aac14e-3f26-4f56-9f15-d00f44e3ea7d", - "start": { - "$date": "2021-04-20T19:24:06.000Z" - }, - "end": { - "$date": "2021-04-20T19:56:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29d6e187-a555-43b9-890e-84ea97606dcb", - "start": { - "$date": "2021-04-20T19:56:06.000Z" - }, - "end": { - "$date": "2021-04-20T20:07:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef3a69d0-59b8-4776-b65e-325f1b80e273", - "start": { - "$date": "2021-04-20T20:07:06.000Z" - }, - "end": { - "$date": "2021-04-20T20:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "785e52f5-cccc-4484-b0d7-19ea71fb2d62", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-20T19:59:41.000Z" - }, - "end": { - "$date": "2021-04-20T20:43:42.000Z" - }, - "events": [ - { - "uuid": "eb24fc3e-b4ff-4feb-8c41-259c6149dc50", - "start": { - "$date": "2021-04-20T19:59:41.000Z" - }, - "end": { - "$date": "2021-04-20T20:43:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "6cd37e63-e0d4-43ef-915b-b6c888c1a2cd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-20T20:10:45.000Z" - }, - "end": { - "$date": "2021-04-21T06:38:48.000Z" - }, - "events": [ - { - "uuid": "9e92bde0-f41d-4bab-a0c3-4b1c31837a78", - "start": { - "$date": "2021-04-20T20:10:45.000Z" - }, - "end": { - "$date": "2021-04-20T23:45:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a087c04-f29f-4ee8-acdc-e4756893c315", - "start": { - "$date": "2021-04-20T23:45:45.000Z" - }, - "end": { - "$date": "2021-04-20T23:49:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c0559dd-9b59-4778-924e-9cd35fbda28d", - "start": { - "$date": "2021-04-20T23:49:45.000Z" - }, - "end": { - "$date": "2021-04-21T00:38:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bce41aad-ba18-4318-b667-13509a5e3ea7", - "start": { - "$date": "2021-04-21T00:38:45.000Z" - }, - "end": { - "$date": "2021-04-21T00:41:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5d7bce36-5974-4a6e-aa68-c5d084968beb", - "start": { - "$date": "2021-04-21T00:41:45.000Z" - }, - "end": { - "$date": "2021-04-21T01:23:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0d5025d-dbd6-43d1-acf8-baca5af37d02", - "start": { - "$date": "2021-04-21T01:23:45.000Z" - }, - "end": { - "$date": "2021-04-21T03:44:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96612701-e479-4c26-a434-7021b3bc6c15", - "start": { - "$date": "2021-04-21T03:44:45.000Z" - }, - "end": { - "$date": "2021-04-21T04:59:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "07d17955-d15b-4a40-b4de-1e2e8a726676", - "start": { - "$date": "2021-04-21T04:59:45.000Z" - }, - "end": { - "$date": "2021-04-21T05:00:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3c796bd4-1e91-4be0-87ec-544421bb99be", - "start": { - "$date": "2021-04-21T05:00:45.000Z" - }, - "end": { - "$date": "2021-04-21T06:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9d9709a9-196d-4a03-a7d6-1292d1884c3c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T20:11:15.000Z" - }, - "end": { - "$date": "2021-04-20T20:49:02.000Z" - }, - "events": [ - { - "uuid": "c330f744-22c9-43fb-ac46-68c8fc53d206", - "start": { - "$date": "2021-04-20T20:11:15.000Z" - }, - "end": { - "$date": "2021-04-20T20:49:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "be40fe12-98c9-4e36-9b30-80f0d229a3d2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-20T21:30:00.000Z" - }, - "end": { - "$date": "2021-04-20T23:24:57.000Z" - }, - "events": [ - { - "uuid": "4b1bc98f-3c8f-443d-afc6-3baa10f407ff", - "start": { - "$date": "2021-04-20T21:30:00.000Z" - }, - "end": { - "$date": "2021-04-20T23:24:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96c66081-1bab-489b-8a83-5b20a6b3fc58", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T21:55:41.000Z" - }, - "end": { - "$date": "2021-04-20T23:07:18.000Z" - }, - "events": [ - { - "uuid": "fa3c49b2-1196-4754-acf3-d9fea8450e65", - "start": { - "$date": "2021-04-20T21:55:41.000Z" - }, - "end": { - "$date": "2021-04-20T23:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0979be63-1fd4-430f-b7f9-9e23c667fb5f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-20T22:04:50.000Z" - }, - "end": { - "$date": "2021-04-20T22:51:28.000Z" - }, - "events": [ - { - "uuid": "eacf2c17-73cf-4e94-9681-d0f9eb2db8d8", - "start": { - "$date": "2021-04-20T22:04:50.000Z" - }, - "end": { - "$date": "2021-04-20T22:51:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43bd2412-50e3-45b5-9b7b-d861afeefb68", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-20T22:20:41.000Z" - }, - "end": { - "$date": "2021-04-20T22:57:49.000Z" - }, - "events": [ - { - "uuid": "bbfbe8f8-8e5a-48b6-b52d-a837ee141e1b", - "start": { - "$date": "2021-04-20T22:20:41.000Z" - }, - "end": { - "$date": "2021-04-20T22:57:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25d55168-003b-4b01-8190-054f8d59b06f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-20T22:31:18.000Z" - }, - "end": { - "$date": "2021-04-20T22:37:50.000Z" - }, - "events": [ - { - "uuid": "f53113a8-afcc-4ef1-926f-de4e6edb930d", - "start": { - "$date": "2021-04-20T22:31:18.000Z" - }, - "end": { - "$date": "2021-04-20T22:37:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6c9f6c44-d320-41fc-a4e2-7f874afa94ac", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-20T22:38:54.000Z" - }, - "end": { - "$date": "2021-04-20T23:35:54.000Z" - }, - "events": [ - { - "uuid": "83e76baf-b83d-4fdb-8750-26d4deb99459", - "start": { - "$date": "2021-04-20T22:38:54.000Z" - }, - "end": { - "$date": "2021-04-20T23:35:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7b23079d-af41-437c-ace2-c5614f7f47df", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-20T22:51:01.000Z" - }, - "end": { - "$date": "2021-04-20T23:10:09.000Z" - }, - "events": [ - { - "uuid": "87cdfca3-4f3e-4aef-9d5d-608a77de34eb", - "start": { - "$date": "2021-04-20T22:51:01.000Z" - }, - "end": { - "$date": "2021-04-20T23:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cafc1a4f-875a-43fa-ab3f-3be9071311e2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-20T23:25:35.000Z" - }, - "end": { - "$date": "2021-04-20T23:49:39.000Z" - }, - "events": [ - { - "uuid": "7bb49266-7d07-4498-b703-60675fa96b65", - "start": { - "$date": "2021-04-20T23:25:35.000Z" - }, - "end": { - "$date": "2021-04-20T23:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "251238e3-a9d9-457d-a6c8-1d26c594766a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-20T23:45:14.000Z" - }, - "end": { - "$date": "2021-04-21T00:30:30.000Z" - }, - "events": [ - { - "uuid": "ae29f04c-24ed-4e9b-84de-37334a921467", - "start": { - "$date": "2021-04-20T23:45:14.000Z" - }, - "end": { - "$date": "2021-04-21T00:30:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0f1d227f-2cf5-41db-81fe-6c6df5279a8d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-20T23:25:35.000Z" - }, - "end": { - "$date": "2021-04-21T00:01:50.000Z" - }, - "events": [ - { - "uuid": "d7906551-16ce-4ff6-a00b-ffdeb23b4d72", - "start": { - "$date": "2021-04-20T23:25:35.000Z" - }, - "end": { - "$date": "2021-04-21T00:01:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "58485b05-4d83-4d63-a2ba-7b66ad0fae26", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T00:31:15.000Z" - }, - "end": { - "$date": "2021-04-21T01:30:30.000Z" - }, - "events": [ - { - "uuid": "a73c3954-6799-4972-bf92-f36cfa822855", - "start": { - "$date": "2021-04-21T00:31:15.000Z" - }, - "end": { - "$date": "2021-04-21T01:30:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b8d57fd4-3c9f-40f1-b782-1077b201c6ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-21T00:50:28.000Z" - }, - "end": { - "$date": "2021-04-21T03:02:08.000Z" - }, - "events": [ - { - "uuid": "34012fc0-c320-4ed2-b509-594d3a2e40eb", - "start": { - "$date": "2021-04-21T00:50:28.000Z" - }, - "end": { - "$date": "2021-04-21T03:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c3691b7-3ca0-4a6b-823f-1243364a2b87", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-21T00:51:08.000Z" - }, - "end": { - "$date": "2021-04-21T02:07:48.000Z" - }, - "events": [ - { - "uuid": "2fe516d3-a63c-47ad-bd06-a8b18b7155b1", - "start": { - "$date": "2021-04-21T00:51:08.000Z" - }, - "end": { - "$date": "2021-04-21T02:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "91359370-2855-400c-852e-5159249276f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T01:51:06.000Z" - }, - "end": { - "$date": "2021-04-21T03:46:43.000Z" - }, - "events": [ - { - "uuid": "52ac4072-758e-40bc-99e8-7c71a7054ac3", - "start": { - "$date": "2021-04-21T01:51:06.000Z" - }, - "end": { - "$date": "2021-04-21T03:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "07b63c1b-853b-4951-ad4f-a62c36bb352b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-21T01:55:31.000Z" - }, - "end": { - "$date": "2021-04-21T04:53:11.000Z" - }, - "events": [ - { - "uuid": "3713d35c-8b4f-4e98-803d-ebb4c3b96b07", - "start": { - "$date": "2021-04-21T01:55:31.000Z" - }, - "end": { - "$date": "2021-04-21T04:53:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "55c50e74-5dea-4d4d-b7de-9516eab8fbe5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-21T01:56:26.000Z" - }, - "end": { - "$date": "2021-04-21T04:52:53.000Z" - }, - "events": [ - { - "uuid": "00fd609a-1bf1-4b02-a13f-1c02c4662767", - "start": { - "$date": "2021-04-21T01:56:26.000Z" - }, - "end": { - "$date": "2021-04-21T04:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "50bb43f3-1701-4394-8c9c-8efd8184cc57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-21T01:58:34.000Z" - }, - "end": { - "$date": "2021-04-21T02:44:33.000Z" - }, - "events": [ - { - "uuid": "584185db-fa8c-4ef2-bb67-a59681f3ada1", - "start": { - "$date": "2021-04-21T01:58:34.000Z" - }, - "end": { - "$date": "2021-04-21T02:17:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe44ff7f-654d-4caf-a30c-1f7c72d5df8c", - "start": { - "$date": "2021-04-21T02:17:34.000Z" - }, - "end": { - "$date": "2021-04-21T02:34:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2bbef4a9-2a85-4be4-9e67-8688f6e150db", - "start": { - "$date": "2021-04-21T02:34:34.000Z" - }, - "end": { - "$date": "2021-04-21T02:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9322ff91-a090-42c9-9a49-30c56ed8de8d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-21T02:10:21.000Z" - }, - "end": { - "$date": "2021-04-21T02:46:31.000Z" - }, - "events": [ - { - "uuid": "e8bc13db-be80-44fa-99ce-a509a93648a2", - "start": { - "$date": "2021-04-21T02:10:21.000Z" - }, - "end": { - "$date": "2021-04-21T02:46:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "f8a02af0-24bf-48b3-8b46-2b28cf33a431", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-21T02:06:43.000Z" - }, - "end": { - "$date": "2021-04-21T05:18:37.000Z" - }, - "events": [ - { - "uuid": "c96e816b-bcfa-47bc-85e9-9a6596553f2f", - "start": { - "$date": "2021-04-21T02:06:43.000Z" - }, - "end": { - "$date": "2021-04-21T05:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93bf1c22-4256-413a-89e2-4d40fc516538", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-21T02:11:54.000Z" - }, - "end": { - "$date": "2021-04-21T02:46:35.000Z" - }, - "events": [ - { - "uuid": "b8ae331c-6804-4db8-84e7-85f61909e8db", - "start": { - "$date": "2021-04-21T02:11:54.000Z" - }, - "end": { - "$date": "2021-04-21T02:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07c05044-2eb9-4e26-8bf2-d04e9c1a9d03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-21T02:46:52.000Z" - }, - "end": { - "$date": "2021-04-21T02:48:30.000Z" - }, - "events": [ - { - "uuid": "6161efa4-102f-49e1-a03d-4c700caa49df", - "start": { - "$date": "2021-04-21T02:46:52.000Z" - }, - "end": { - "$date": "2021-04-21T02:48:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "3238a56b-bf04-4402-a191-a465b83bd026", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-21T03:20:45.000Z" - }, - "end": { - "$date": "2021-04-21T03:29:46.000Z" - }, - "events": [ - { - "uuid": "1fc36d75-52e0-45e5-933e-d42b1c326e22", - "start": { - "$date": "2021-04-21T03:20:45.000Z" - }, - "end": { - "$date": "2021-04-21T03:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c6fe770b-990a-43ac-a166-75857887f221", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-21T03:30:01.000Z" - }, - "end": { - "$date": "2021-04-21T04:18:27.000Z" - }, - "events": [ - { - "uuid": "61c66be5-5522-4c02-8af3-79626cdf838e", - "start": { - "$date": "2021-04-21T03:30:01.000Z" - }, - "end": { - "$date": "2021-04-21T04:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a13df71c-d3c8-4a7c-9638-f73e17a1b765", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-21T03:47:37.000Z" - }, - "end": { - "$date": "2021-04-21T13:43:56.000Z" - }, - "events": [ - { - "uuid": "c9767192-c644-4701-a893-c244709b9974", - "start": { - "$date": "2021-04-21T03:47:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:00:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b72db2dc-381a-41fb-9a50-4a506799b143", - "start": { - "$date": "2021-04-21T04:00:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:05:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "57a2c951-148d-428a-b2e1-832fd71382bb", - "start": { - "$date": "2021-04-21T04:05:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:15:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77995bd2-f554-4cc1-93df-747fcb2694d1", - "start": { - "$date": "2021-04-21T04:15:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:20:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee5235b3-4dc0-4755-b329-7a12a70cc6b5", - "start": { - "$date": "2021-04-21T04:20:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:30:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13e515a4-23d9-48ae-8d08-b50128319456", - "start": { - "$date": "2021-04-21T04:30:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:35:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e607c912-1dc2-4839-8bbc-013a0865f394", - "start": { - "$date": "2021-04-21T04:35:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:45:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "52f5376c-8ca5-40df-81fa-33ef22f2fe5d", - "start": { - "$date": "2021-04-21T04:45:37.000Z" - }, - "end": { - "$date": "2021-04-21T04:51:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "88adf402-bf26-4902-975d-8c71a8a4f776", - "start": { - "$date": "2021-04-21T04:51:37.000Z" - }, - "end": { - "$date": "2021-04-21T05:12:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d65e4355-d3e1-4439-ba4c-ea93705f5d8b", - "start": { - "$date": "2021-04-21T05:12:37.000Z" - }, - "end": { - "$date": "2021-04-21T13:43:56.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "14928c0f-b70d-48e9-9b3d-3d3961e73169", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-21T04:40:25.000Z" - }, - "end": { - "$date": "2021-04-21T05:12:45.000Z" - }, - "events": [ - { - "uuid": "d6f7c20c-2051-4d84-a3d7-43277b95bfe7", - "start": { - "$date": "2021-04-21T04:40:25.000Z" - }, - "end": { - "$date": "2021-04-21T05:12:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "46947013-8ad8-4ad0-8e7e-1f5ac1e9e0e2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-21T05:29:27.000Z" - }, - "end": { - "$date": "2021-04-21T05:31:52.000Z" - }, - "events": [ - { - "uuid": "3981a7ed-78d8-48c4-88b7-827887a97e2e", - "start": { - "$date": "2021-04-21T05:29:27.000Z" - }, - "end": { - "$date": "2021-04-21T05:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2c90379d-a64c-46b5-8546-41890456eac2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T13:51:05.000Z" - }, - "end": { - "$date": "2021-04-21T14:02:27.000Z" - }, - "events": [ - { - "uuid": "d5881834-f95f-4901-996e-f9492045694f", - "start": { - "$date": "2021-04-21T13:51:05.000Z" - }, - "end": { - "$date": "2021-04-21T14:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "fbdb4071-3134-4d77-9d5c-3c63c8271f29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T14:17:57.000Z" - }, - "end": { - "$date": "2021-04-21T14:47:29.000Z" - }, - "events": [ - { - "uuid": "ae860404-0f07-45c5-b35e-50179879f199", - "start": { - "$date": "2021-04-21T14:17:57.000Z" - }, - "end": { - "$date": "2021-04-21T14:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abc8f3dc-7456-42bd-9260-fa664fa98860", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-21T14:32:31.000Z" - }, - "end": { - "$date": "2021-04-21T15:04:53.000Z" - }, - "events": [ - { - "uuid": "5ad3a926-a9d9-4f40-b406-11c6705622fe", - "start": { - "$date": "2021-04-21T14:32:31.000Z" - }, - "end": { - "$date": "2021-04-21T15:04:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ee812c4d-fdfe-4852-bb9a-4e7507b0c190", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-21T15:08:31.000Z" - }, - "end": { - "$date": "2021-04-21T15:40:03.000Z" - }, - "events": [ - { - "uuid": "f509542d-28a6-4e3e-8fbd-9c85bf3fc422", - "start": { - "$date": "2021-04-21T15:08:31.000Z" - }, - "end": { - "$date": "2021-04-21T15:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "27b5f9c6-8ee7-4bc4-ad9f-a5bfb5f99468", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T17:31:09.000Z" - }, - "end": { - "$date": "2021-04-21T18:03:37.000Z" - }, - "events": [ - { - "uuid": "845af4c7-7237-45c7-95ca-b169c4c16e5c", - "start": { - "$date": "2021-04-21T17:31:09.000Z" - }, - "end": { - "$date": "2021-04-21T18:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "76ae8314-8b56-40f0-a70d-0d2e03e56ce0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-21T19:21:36.000Z" - }, - "end": { - "$date": "2021-04-21T20:55:23.000Z" - }, - "events": [ - { - "uuid": "51c5e251-2be9-4421-8a53-cb76a02e4d74", - "start": { - "$date": "2021-04-21T19:21:36.000Z" - }, - "end": { - "$date": "2021-04-21T20:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "da188514-4c45-4a34-8f3f-7bd4ca5e5c87", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-21T19:22:48.000Z" - }, - "end": { - "$date": "2021-04-21T19:23:48.000Z" - }, - "events": [ - { - "uuid": "124356b0-a8cb-4f44-97ac-1708e96b3fc8", - "start": { - "$date": "2021-04-21T19:22:48.000Z" - }, - "end": { - "$date": "2021-04-21T19:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3f2fa996-d02d-49de-9ec3-b0b46f6521a4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-21T19:24:14.000Z" - }, - "end": { - "$date": "2021-04-21T21:16:44.000Z" - }, - "events": [ - { - "uuid": "c63fc941-da2e-4e17-9c8f-fb902a86a859", - "start": { - "$date": "2021-04-21T19:24:14.000Z" - }, - "end": { - "$date": "2021-04-21T21:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "842ea0d3-9a44-4408-93b7-a41f339e39ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-21T20:07:47.000Z" - }, - "end": { - "$date": "2021-04-21T20:46:56.000Z" - }, - "events": [ - { - "uuid": "cd28c58e-8b6f-4b2a-a55c-1636b9eb7eeb", - "start": { - "$date": "2021-04-21T20:07:47.000Z" - }, - "end": { - "$date": "2021-04-21T20:46:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "78b17db7-3bb6-4d1e-a3b4-f62a983c66d6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-21T20:56:20.000Z" - }, - "end": { - "$date": "2021-04-21T21:17:26.000Z" - }, - "events": [ - { - "uuid": "6bc6a9dd-e361-413f-96da-32480925f55e", - "start": { - "$date": "2021-04-21T20:56:20.000Z" - }, - "end": { - "$date": "2021-04-21T21:17:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c642412-cd27-4d13-b353-52f74582865c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-21T21:05:17.000Z" - }, - "end": { - "$date": "2021-04-21T21:29:40.000Z" - }, - "events": [ - { - "uuid": "76b96841-3c1f-491b-b706-ae1adc8cc7b1", - "start": { - "$date": "2021-04-21T21:05:17.000Z" - }, - "end": { - "$date": "2021-04-21T21:29:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "71816612-7b90-47ed-bce7-bff6532fc58a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-21T21:18:28.000Z" - }, - "end": { - "$date": "2021-04-21T22:07:11.000Z" - }, - "events": [ - { - "uuid": "a581e6e6-8a67-41d5-800d-65518ab60a3e", - "start": { - "$date": "2021-04-21T21:18:28.000Z" - }, - "end": { - "$date": "2021-04-21T22:07:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fb9dddda-ee89-4d3e-8c80-17c340996ae0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-21T21:19:50.000Z" - }, - "end": { - "$date": "2021-04-21T23:15:57.000Z" - }, - "events": [ - { - "uuid": "9b9edc92-1a37-4bcd-8bdb-d9f77ebc3a79", - "start": { - "$date": "2021-04-21T21:19:50.000Z" - }, - "end": { - "$date": "2021-04-21T23:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3b3658ef-730b-4060-b946-7dd2b71fbfd3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T21:35:46.000Z" - }, - "end": { - "$date": "2021-04-21T22:34:55.000Z" - }, - "events": [ - { - "uuid": "c03af2f4-12d8-434e-8591-85f6a3d7c2ed", - "start": { - "$date": "2021-04-21T21:35:46.000Z" - }, - "end": { - "$date": "2021-04-21T22:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3de1303f-5860-4cc0-9db4-ebadab8d9e56", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-21T21:41:48.000Z" - }, - "end": { - "$date": "2021-04-21T21:50:39.000Z" - }, - "events": [ - { - "uuid": "ef5c2e02-e40b-4ddb-9629-c1616f88d85c", - "start": { - "$date": "2021-04-21T21:41:48.000Z" - }, - "end": { - "$date": "2021-04-21T21:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "35fd229a-de0d-4fe9-b373-5db762fd682b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-21T21:53:50.000Z" - }, - "end": { - "$date": "2021-04-21T22:05:06.000Z" - }, - "events": [ - { - "uuid": "6710378b-b5d7-482c-8ffd-1156ec445dc7", - "start": { - "$date": "2021-04-21T21:53:50.000Z" - }, - "end": { - "$date": "2021-04-21T22:05:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "44020ad8-cac4-4183-a59a-1ddd7c9a2032", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-21T22:05:35.000Z" - }, - "end": { - "$date": "2021-04-21T22:37:28.000Z" - }, - "events": [ - { - "uuid": "33852352-e49b-4a2e-b8f4-aeb40f1e24f8", - "start": { - "$date": "2021-04-21T22:05:35.000Z" - }, - "end": { - "$date": "2021-04-21T22:37:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7d9f5b34-6414-4254-8727-b0d1847bdd51", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-21T22:12:47.000Z" - }, - "end": { - "$date": "2021-04-21T22:30:15.000Z" - }, - "events": [ - { - "uuid": "d8f5db12-d311-4aa8-bd39-e1ff1551a211", - "start": { - "$date": "2021-04-21T22:12:47.000Z" - }, - "end": { - "$date": "2021-04-21T22:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "62f7a9cb-d521-45ee-a1ba-a2c594ec67f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-21T22:40:54.000Z" - }, - "end": { - "$date": "2021-04-22T00:02:23.000Z" - }, - "events": [ - { - "uuid": "295e046e-1170-4a7a-830c-0d7f085e2468", - "start": { - "$date": "2021-04-21T22:40:54.000Z" - }, - "end": { - "$date": "2021-04-22T00:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1edb2e92-f33a-4bd1-9356-ae4430ff6fea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-21T23:18:02.000Z" - }, - "end": { - "$date": "2021-04-21T23:34:23.000Z" - }, - "events": [ - { - "uuid": "b34a0228-808c-4071-8fa6-19fefe4709da", - "start": { - "$date": "2021-04-21T23:18:02.000Z" - }, - "end": { - "$date": "2021-04-21T23:34:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5f903dad-8c59-4bbf-a190-4f7549c1b14d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-21T23:31:47.000Z" - }, - "end": { - "$date": "2021-04-21T23:54:48.000Z" - }, - "events": [ - { - "uuid": "c49b91ba-bfed-45b0-8fe5-b7744cfd73b8", - "start": { - "$date": "2021-04-21T23:31:47.000Z" - }, - "end": { - "$date": "2021-04-21T23:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "93239539-7b4f-4602-b6cc-fc36ae7cccad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-21T23:52:16.000Z" - }, - "end": { - "$date": "2021-04-22T00:12:38.000Z" - }, - "events": [ - { - "uuid": "b7d1b2ed-6f94-4639-9bcc-d277049d1c63", - "start": { - "$date": "2021-04-21T23:52:16.000Z" - }, - "end": { - "$date": "2021-04-22T00:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d5401d57-b829-4790-a485-47a99243fc90", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-22T00:42:30.000Z" - }, - "end": { - "$date": "2021-04-22T01:08:03.000Z" - }, - "events": [ - { - "uuid": "f3f9e5a3-c9ea-4f7a-8436-121b74f91773", - "start": { - "$date": "2021-04-22T00:42:30.000Z" - }, - "end": { - "$date": "2021-04-22T01:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c788d521-2697-4ff2-8a74-7ac21e1f14a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-22T01:29:12.000Z" - }, - "end": { - "$date": "2021-04-22T04:11:35.000Z" - }, - "events": [ - { - "uuid": "c32c59d8-0557-40dc-bd78-e54a8a7b8e65", - "start": { - "$date": "2021-04-22T01:29:12.000Z" - }, - "end": { - "$date": "2021-04-22T04:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c26d3fea-9804-4010-aa55-d0547bf2b12c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-22T01:29:29.000Z" - }, - "end": { - "$date": "2021-04-22T03:17:42.000Z" - }, - "events": [ - { - "uuid": "ec4bb5fb-0f74-4286-ac9f-3131fb609b69", - "start": { - "$date": "2021-04-22T01:29:29.000Z" - }, - "end": { - "$date": "2021-04-22T03:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1875facb-54c9-4285-95a7-61a81820baf9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-22T01:32:21.000Z" - }, - "end": { - "$date": "2021-04-22T02:14:12.000Z" - }, - "events": [ - { - "uuid": "2ff88afb-d7be-4ab7-9f59-054800c54d4c", - "start": { - "$date": "2021-04-22T01:32:21.000Z" - }, - "end": { - "$date": "2021-04-22T02:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9425945-b8e6-46c4-8c10-d2fd7a76d0ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-22T01:37:54.000Z" - }, - "end": { - "$date": "2021-04-22T02:02:18.000Z" - }, - "events": [ - { - "uuid": "db978867-695c-406a-8927-84d24724a183", - "start": { - "$date": "2021-04-22T01:37:54.000Z" - }, - "end": { - "$date": "2021-04-22T02:02:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7edb04c-f38b-4785-be3d-2f31ad0dfb1f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-22T01:38:00.000Z" - }, - "end": { - "$date": "2021-04-22T02:02:11.000Z" - }, - "events": [ - { - "uuid": "e7179bf9-c75e-4191-ac9d-8a842d9be5f4", - "start": { - "$date": "2021-04-22T01:38:00.000Z" - }, - "end": { - "$date": "2021-04-22T02:02:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "642d56a2-996c-4721-bde2-dce93a7175ec", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-22T01:40:24.000Z" - }, - "end": { - "$date": "2021-04-22T01:42:58.000Z" - }, - "events": [ - { - "uuid": "aa3aadc3-60a5-43b0-a155-4660278c4d0b", - "start": { - "$date": "2021-04-22T01:40:24.000Z" - }, - "end": { - "$date": "2021-04-22T01:42:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aff56dd3-cce4-4bd4-9290-45d3f194f926", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-22T01:41:41.000Z" - }, - "end": { - "$date": "2021-04-22T02:37:03.000Z" - }, - "events": [ - { - "uuid": "080ddfdb-e71c-453b-b673-15834b07a6bf", - "start": { - "$date": "2021-04-22T01:41:41.000Z" - }, - "end": { - "$date": "2021-04-22T02:37:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "a6c00ced-1a1b-4d5f-bb8a-3ba3ec970a48", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-22T01:47:15.000Z" - }, - "end": { - "$date": "2021-04-22T05:19:03.000Z" - }, - "events": [ - { - "uuid": "a9e4f995-d194-4887-b0ed-3304019c1a77", - "start": { - "$date": "2021-04-22T01:47:15.000Z" - }, - "end": { - "$date": "2021-04-22T02:05:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7d4fa7f-f278-4e35-99f0-a8f49568c79f", - "start": { - "$date": "2021-04-22T02:05:15.000Z" - }, - "end": { - "$date": "2021-04-22T02:07:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aec3ea5a-3622-4422-89b4-b51a8896312c", - "start": { - "$date": "2021-04-22T02:07:15.000Z" - }, - "end": { - "$date": "2021-04-22T05:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "a47e88bc-3ede-4a07-8e28-61ccbab48968", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-22T01:56:51.000Z" - }, - "end": { - "$date": "2021-04-22T08:43:01.000Z" - }, - "events": [ - { - "uuid": "c037ce3f-017b-4925-abcc-400c9a94b4a9", - "start": { - "$date": "2021-04-22T01:56:51.000Z" - }, - "end": { - "$date": "2021-04-22T01:57:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c860aab6-114f-4c96-a5b6-7a673d48e2c5", - "start": { - "$date": "2021-04-22T01:57:51.000Z" - }, - "end": { - "$date": "2021-04-22T01:58:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43f74965-0ec6-4567-8f80-63a80ed23690", - "start": { - "$date": "2021-04-22T01:58:51.000Z" - }, - "end": { - "$date": "2021-04-22T02:00:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bbd9c9d6-7859-42aa-b8bb-0e76aae10ad7", - "start": { - "$date": "2021-04-22T02:00:51.000Z" - }, - "end": { - "$date": "2021-04-22T02:47:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c6e0b374-976c-4ba4-a70e-e0d760845951", - "start": { - "$date": "2021-04-22T02:47:51.000Z" - }, - "end": { - "$date": "2021-04-22T02:59:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebdfecf2-5c38-4ec6-9764-50dedf09abd3", - "start": { - "$date": "2021-04-22T02:59:51.000Z" - }, - "end": { - "$date": "2021-04-22T03:10:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d5b574e-b72d-47cd-b1a3-04db28dcc37e", - "start": { - "$date": "2021-04-22T03:10:51.000Z" - }, - "end": { - "$date": "2021-04-22T05:11:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9263fe5c-69ab-4b7d-a5a5-6309ea5b5b2e", - "start": { - "$date": "2021-04-22T05:11:51.000Z" - }, - "end": { - "$date": "2021-04-22T05:19:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0ee253fb-dafa-4c01-8ff0-53b469184788", - "start": { - "$date": "2021-04-22T05:19:51.000Z" - }, - "end": { - "$date": "2021-04-22T06:08:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa4b7a81-25ba-4d1b-b6b1-87d0b88078eb", - "start": { - "$date": "2021-04-22T06:08:51.000Z" - }, - "end": { - "$date": "2021-04-22T06:10:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1749fd4a-1bb1-49be-b795-80b32581399a", - "start": { - "$date": "2021-04-22T06:10:51.000Z" - }, - "end": { - "$date": "2021-04-22T06:49:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c91280db-5769-4b52-9a4f-d133dd8a3387", - "start": { - "$date": "2021-04-22T06:49:51.000Z" - }, - "end": { - "$date": "2021-04-22T06:50:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b958c43-97c4-4a2b-bc06-c8e4cc8e05b6", - "start": { - "$date": "2021-04-22T06:50:51.000Z" - }, - "end": { - "$date": "2021-04-22T08:43:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e4e299e-5b34-4c12-bf52-7589d6b2e3a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-22T02:05:30.000Z" - }, - "end": { - "$date": "2021-04-22T02:36:49.000Z" - }, - "events": [ - { - "uuid": "42f9c11a-f5c7-473b-865a-35038d40f35b", - "start": { - "$date": "2021-04-22T02:05:30.000Z" - }, - "end": { - "$date": "2021-04-22T02:36:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4c619dc-31e5-4529-946d-c60ead131ad5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-22T02:05:31.000Z" - }, - "end": { - "$date": "2021-04-22T02:36:47.000Z" - }, - "events": [ - { - "uuid": "3ad204b7-76fd-4f8b-8380-01f0ff3f7a78", - "start": { - "$date": "2021-04-22T02:05:31.000Z" - }, - "end": { - "$date": "2021-04-22T02:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ffafc7d1-32a1-4860-917c-d84a5eed17cd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-22T02:29:47.000Z" - }, - "end": { - "$date": "2021-04-22T02:36:18.000Z" - }, - "events": [ - { - "uuid": "c031a45a-e091-4f86-a446-440fc533c293", - "start": { - "$date": "2021-04-22T02:29:47.000Z" - }, - "end": { - "$date": "2021-04-22T02:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "30f76194-b5f3-40b7-bf33-0ee9a6ed61fb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-22T02:31:02.000Z" - }, - "end": { - "$date": "2021-04-22T04:51:38.000Z" - }, - "events": [ - { - "uuid": "992517c5-d819-44e2-8b56-5e7ed4bf10af", - "start": { - "$date": "2021-04-22T02:31:02.000Z" - }, - "end": { - "$date": "2021-04-22T03:33:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "773edd12-5fc5-4eb7-93a8-fe88e1e6ff30", - "start": { - "$date": "2021-04-22T03:33:02.000Z" - }, - "end": { - "$date": "2021-04-22T03:46:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c5dac9a-a1a6-4f77-b836-bdc6fa6ac1ff", - "start": { - "$date": "2021-04-22T03:46:02.000Z" - }, - "end": { - "$date": "2021-04-22T04:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eecfaec-8c80-4413-aecf-9dff7ea3ac66", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-22T02:45:32.000Z" - }, - "end": { - "$date": "2021-04-22T03:01:08.000Z" - }, - "events": [ - { - "uuid": "68c12185-b901-4a7b-915b-e79d7d23c0a6", - "start": { - "$date": "2021-04-22T02:45:32.000Z" - }, - "end": { - "$date": "2021-04-22T03:01:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71222a43-9b42-4779-ab64-d2a2757b0ed0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-22T02:47:13.000Z" - }, - "end": { - "$date": "2021-04-22T03:01:09.000Z" - }, - "events": [ - { - "uuid": "c4ebe45f-188f-4938-bf48-b46f143d615d", - "start": { - "$date": "2021-04-22T02:47:13.000Z" - }, - "end": { - "$date": "2021-04-22T03:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b5659ed1-415e-465b-9638-16f89eba2d74", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-22T03:18:17.000Z" - }, - "end": { - "$date": "2021-04-22T03:19:38.000Z" - }, - "events": [ - { - "uuid": "1923fd38-79cb-4ad7-8cde-54d8b8cdbbae", - "start": { - "$date": "2021-04-22T03:18:17.000Z" - }, - "end": { - "$date": "2021-04-22T03:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "898267c8-b17b-47a6-975a-077453f8b40b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-22T03:19:47.000Z" - }, - "end": { - "$date": "2021-04-22T06:00:36.000Z" - }, - "events": [ - { - "uuid": "c50abdfc-f203-4c41-82e4-74fd5085a83e", - "start": { - "$date": "2021-04-22T03:19:47.000Z" - }, - "end": { - "$date": "2021-04-22T06:00:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "231f95ce-4092-4788-a6de-15e30bbd5876", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-22T03:43:33.000Z" - }, - "end": { - "$date": "2021-04-22T04:31:21.000Z" - }, - "events": [ - { - "uuid": "19714227-4ab7-4d67-b00f-7ee9fd56769c", - "start": { - "$date": "2021-04-22T03:43:33.000Z" - }, - "end": { - "$date": "2021-04-22T04:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e5b35881-8620-4cd5-8f52-dc5293a66aa3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-22T03:45:08.000Z" - }, - "end": { - "$date": "2021-04-22T06:32:54.000Z" - }, - "events": [ - { - "uuid": "2b5ac727-6a0f-4810-857b-bb54aacdd50d", - "start": { - "$date": "2021-04-22T03:45:08.000Z" - }, - "end": { - "$date": "2021-04-22T06:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d11c3f12-410f-48ea-8a91-d587e4cf4959", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-22T04:30:46.000Z" - }, - "end": { - "$date": "2021-04-22T06:32:56.000Z" - }, - "events": [ - { - "uuid": "30057172-82da-4db8-a805-2436bdcf3bb7", - "start": { - "$date": "2021-04-22T04:30:46.000Z" - }, - "end": { - "$date": "2021-04-22T06:32:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "4d1fe6fa-8411-478d-bf51-7d5e0f44bb1d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-22T04:54:59.000Z" - }, - "end": { - "$date": "2021-04-22T05:40:29.000Z" - }, - "events": [ - { - "uuid": "291db785-9a02-4c56-85be-e215a72d91fe", - "start": { - "$date": "2021-04-22T04:54:59.000Z" - }, - "end": { - "$date": "2021-04-22T05:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9b877055-c017-49bc-9e08-dddb2f87e09b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-22T14:16:42.000Z" - }, - "end": { - "$date": "2021-04-22T14:48:05.000Z" - }, - "events": [ - { - "uuid": "a3b2e050-f7e8-46d1-adc1-331480241f85", - "start": { - "$date": "2021-04-22T14:16:42.000Z" - }, - "end": { - "$date": "2021-04-22T14:48:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a2a9d4e8-d4e1-4bd2-9532-1c1ac4c0de6c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-22T17:29:14.000Z" - }, - "end": { - "$date": "2021-04-22T17:30:14.000Z" - }, - "events": [ - { - "uuid": "48fca917-2011-4f96-9e25-aef6b5738faa", - "start": { - "$date": "2021-04-22T17:29:14.000Z" - }, - "end": { - "$date": "2021-04-22T17:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "462b30d9-1ac1-4b24-ab2f-4df6f3f3939c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-22T17:30:44.000Z" - }, - "end": { - "$date": "2021-04-22T18:12:56.000Z" - }, - "events": [ - { - "uuid": "7c23f566-2236-433f-adfd-e33eda4d7dba", - "start": { - "$date": "2021-04-22T17:30:44.000Z" - }, - "end": { - "$date": "2021-04-22T18:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cfecfe6b-19e0-46b9-a75d-0af9aa5c33ea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-22T18:15:26.000Z" - }, - "end": { - "$date": "2021-04-22T18:50:07.000Z" - }, - "events": [ - { - "uuid": "0ac5812f-57c1-4944-adfd-9d51bf284eff", - "start": { - "$date": "2021-04-22T18:15:26.000Z" - }, - "end": { - "$date": "2021-04-22T18:50:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bc0ab71e-70d4-4ee0-bcd0-53c69a675255", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-22T18:21:04.000Z" - }, - "end": { - "$date": "2021-04-22T19:04:29.000Z" - }, - "events": [ - { - "uuid": "c2d32460-048b-4b9d-8358-3d7b44019206", - "start": { - "$date": "2021-04-22T18:21:04.000Z" - }, - "end": { - "$date": "2021-04-22T19:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0bbbde02-5774-4ec9-9d76-45c4c708a258", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-22T19:16:10.000Z" - }, - "end": { - "$date": "2021-04-22T21:03:39.000Z" - }, - "events": [ - { - "uuid": "00696d38-d34e-496a-be1b-2fb253e994cf", - "start": { - "$date": "2021-04-22T19:16:10.000Z" - }, - "end": { - "$date": "2021-04-22T21:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "19f75512-cd08-4169-8338-01d642b42cd0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-22T20:39:08.000Z" - }, - "end": { - "$date": "2021-04-22T21:08:46.000Z" - }, - "events": [ - { - "uuid": "78c4e52e-ecd8-4022-bfa5-487b7d56cb2a", - "start": { - "$date": "2021-04-22T20:39:08.000Z" - }, - "end": { - "$date": "2021-04-22T21:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "c9f48012-5822-453b-af14-3a62252707e9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-22T21:44:41.000Z" - }, - "end": { - "$date": "2021-04-23T04:08:24.000Z" - }, - "events": [ - { - "uuid": "c0c76b06-66e8-4f33-89a2-78d632c6590d", - "start": { - "$date": "2021-04-22T21:44:41.000Z" - }, - "end": { - "$date": "2021-04-23T00:15:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d350144-1675-45bc-af6b-f253991f31d8", - "start": { - "$date": "2021-04-23T00:15:41.000Z" - }, - "end": { - "$date": "2021-04-23T00:57:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "57fdb6f9-e8bc-4205-8e4f-3936f2214100", - "start": { - "$date": "2021-04-23T00:57:41.000Z" - }, - "end": { - "$date": "2021-04-23T00:59:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "92a514f6-68c2-4010-8289-261eda983c80", - "start": { - "$date": "2021-04-23T00:59:41.000Z" - }, - "end": { - "$date": "2021-04-23T01:20:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "199418ef-2b8b-432e-9d90-70194db84d9b", - "start": { - "$date": "2021-04-23T01:20:41.000Z" - }, - "end": { - "$date": "2021-04-23T01:52:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe1d0431-be8a-428d-9726-cf875079dbc7", - "start": { - "$date": "2021-04-23T01:52:41.000Z" - }, - "end": { - "$date": "2021-04-23T02:12:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "93b71a73-138a-4d30-9da7-796896432121", - "start": { - "$date": "2021-04-23T02:12:41.000Z" - }, - "end": { - "$date": "2021-04-23T02:15:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c0e9ce6-4092-44c9-bed3-8e716facd7d8", - "start": { - "$date": "2021-04-23T02:15:41.000Z" - }, - "end": { - "$date": "2021-04-23T02:16:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e65c223b-8a1c-47d8-aae3-48e18b784f69", - "start": { - "$date": "2021-04-23T02:16:41.000Z" - }, - "end": { - "$date": "2021-04-23T02:18:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb1b44ef-390c-4362-a5ad-e76cb3bc0bba", - "start": { - "$date": "2021-04-23T02:18:41.000Z" - }, - "end": { - "$date": "2021-04-23T02:31:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "140cbd21-4aef-4a68-8d45-4eadd5f62a13", - "start": { - "$date": "2021-04-23T02:31:41.000Z" - }, - "end": { - "$date": "2021-04-23T04:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cb245618-5968-494a-9114-174917db326f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-22T23:21:27.000Z" - }, - "end": { - "$date": "2021-04-23T00:16:14.000Z" - }, - "events": [ - { - "uuid": "ec8fd5af-966e-485a-bd65-a19779e06ef8", - "start": { - "$date": "2021-04-22T23:21:27.000Z" - }, - "end": { - "$date": "2021-04-23T00:16:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "7970df0f-9742-48b7-b673-ca8f491c420f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-23T00:55:42.000Z" - }, - "end": { - "$date": "2021-04-23T03:52:50.000Z" - }, - "events": [ - { - "uuid": "bdcc4ac5-36b8-47f4-8980-a074b14c8de8", - "start": { - "$date": "2021-04-23T00:55:42.000Z" - }, - "end": { - "$date": "2021-04-23T03:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fb8dbe05-94b5-4f7a-b9ba-00be58266e3d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-23T01:53:04.000Z" - }, - "end": { - "$date": "2021-04-23T02:55:29.000Z" - }, - "events": [ - { - "uuid": "11a55ee3-2951-4191-8ced-5dd0d62dd1e6", - "start": { - "$date": "2021-04-23T01:53:04.000Z" - }, - "end": { - "$date": "2021-04-23T02:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "97517ead-9a68-4601-88a3-5f12eed28602", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T02:42:45.000Z" - }, - "end": { - "$date": "2021-04-23T02:52:19.000Z" - }, - "events": [ - { - "uuid": "c49da245-18f7-44de-b310-096bdc95145d", - "start": { - "$date": "2021-04-23T02:42:45.000Z" - }, - "end": { - "$date": "2021-04-23T02:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "227ad6a7-5aa4-487c-9066-be2a3bf3c20f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-23T02:55:48.000Z" - }, - "end": { - "$date": "2021-04-23T03:26:40.000Z" - }, - "events": [ - { - "uuid": "276396d0-14a8-4f44-8c32-af58773c7f0a", - "start": { - "$date": "2021-04-23T02:55:48.000Z" - }, - "end": { - "$date": "2021-04-23T03:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3288b77d-53cf-4fd8-ab54-90428bf40e55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-23T05:15:15.000Z" - }, - "end": { - "$date": "2021-04-23T05:15:20.000Z" - }, - "events": [ - { - "uuid": "8db1f982-224b-4f2c-b581-caf0529c8a77", - "start": { - "$date": "2021-04-23T05:15:15.000Z" - }, - "end": { - "$date": "2021-04-23T05:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "44a4bf37-76f8-4ed0-96db-771e18533184", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-23T03:57:40.000Z" - }, - "end": { - "$date": "2021-04-23T06:48:26.000Z" - }, - "events": [ - { - "uuid": "9afb704f-81d1-420e-9be3-3ac6d8d3e41e", - "start": { - "$date": "2021-04-23T03:57:40.000Z" - }, - "end": { - "$date": "2021-04-23T06:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "98f15dff-c572-4069-8948-1a4f25c5dcd3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-23T04:10:01.000Z" - }, - "end": { - "$date": "2021-04-23T05:37:33.000Z" - }, - "events": [ - { - "uuid": "1ebcd841-e19d-4f6e-ae7b-ef20d53f0437", - "start": { - "$date": "2021-04-23T04:10:01.000Z" - }, - "end": { - "$date": "2021-04-23T05:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "18390aa0-0c03-4291-b241-5027d9684987", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-23T04:33:36.000Z" - }, - "end": { - "$date": "2021-04-23T04:46:11.000Z" - }, - "events": [ - { - "uuid": "5834e0c1-640d-418b-839c-0a59db34f166", - "start": { - "$date": "2021-04-23T04:33:36.000Z" - }, - "end": { - "$date": "2021-04-23T04:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f6236a9e-09bf-4410-9445-b73faa9bc709", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-23T05:15:30.000Z" - }, - "end": { - "$date": "2021-04-23T06:13:36.000Z" - }, - "events": [ - { - "uuid": "45cecc24-dc33-411b-a9cf-e39b1770461c", - "start": { - "$date": "2021-04-23T05:15:30.000Z" - }, - "end": { - "$date": "2021-04-23T06:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c290815e-9c5a-4cdf-8f5b-8590ea722808", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T05:24:55.000Z" - }, - "end": { - "$date": "2021-04-23T06:12:46.000Z" - }, - "events": [ - { - "uuid": "a5359935-10c8-4106-812d-6630120bf66a", - "start": { - "$date": "2021-04-23T05:24:55.000Z" - }, - "end": { - "$date": "2021-04-23T06:12:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cece6b58-e496-4364-a714-90a4f3e0162c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-23T06:29:33.000Z" - }, - "end": { - "$date": "2021-04-23T07:44:32.000Z" - }, - "events": [ - { - "uuid": "14cef091-6f7b-4fc8-8a77-d6b7cf17043e", - "start": { - "$date": "2021-04-23T06:29:33.000Z" - }, - "end": { - "$date": "2021-04-23T07:00:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "301e9816-ac33-43c9-b936-09e47f5d7fbd", - "start": { - "$date": "2021-04-23T07:00:33.000Z" - }, - "end": { - "$date": "2021-04-23T07:05:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c8039c1-4c3f-43d6-bb7e-bd319656beb7", - "start": { - "$date": "2021-04-23T07:05:33.000Z" - }, - "end": { - "$date": "2021-04-23T07:44:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2eb6f2cd-66d4-47c2-9e98-5658650a5389", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-23T15:24:19.000Z" - }, - "end": { - "$date": "2021-04-23T16:44:05.000Z" - }, - "events": [ - { - "uuid": "b74a2b57-efda-40fd-8ca8-24cb8811bd4b", - "start": { - "$date": "2021-04-23T15:24:19.000Z" - }, - "end": { - "$date": "2021-04-23T16:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "509cade5-4643-4509-94a3-5f33a4129eef", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-23T16:31:12.000Z" - }, - "end": { - "$date": "2021-04-23T16:47:32.000Z" - }, - "events": [ - { - "uuid": "a0918f47-f886-4053-aebd-389aecb5d33c", - "start": { - "$date": "2021-04-23T16:31:12.000Z" - }, - "end": { - "$date": "2021-04-23T16:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3db5331a-3386-485e-b69e-65e8724d8109", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-23T16:31:42.000Z" - }, - "end": { - "$date": "2021-04-23T16:47:44.000Z" - }, - "events": [ - { - "uuid": "f36f10c2-4826-4d4e-b5e4-fa9a597970d4", - "start": { - "$date": "2021-04-23T16:31:42.000Z" - }, - "end": { - "$date": "2021-04-23T16:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "174ce048-96bb-4149-9ff1-b8485470375f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T16:33:28.000Z" - }, - "end": { - "$date": "2021-04-23T17:34:16.000Z" - }, - "events": [ - { - "uuid": "98418cb2-fb4b-4758-a0f2-bb996c51f180", - "start": { - "$date": "2021-04-23T16:33:28.000Z" - }, - "end": { - "$date": "2021-04-23T17:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "660f97ff-cfa1-468a-8c33-08aa77e40445", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-23T16:50:48.000Z" - }, - "end": { - "$date": "2021-04-23T17:16:45.000Z" - }, - "events": [ - { - "uuid": "5a857c3f-82ae-4621-bdfb-9b58a4b3cd3c", - "start": { - "$date": "2021-04-23T16:50:48.000Z" - }, - "end": { - "$date": "2021-04-23T17:16:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03d4dc69-97ad-4b2f-8019-328e4648a061", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-23T16:50:43.000Z" - }, - "end": { - "$date": "2021-04-23T17:16:36.000Z" - }, - "events": [ - { - "uuid": "ed52f39c-5d13-4c79-ad6d-88bca4d744d8", - "start": { - "$date": "2021-04-23T16:50:43.000Z" - }, - "end": { - "$date": "2021-04-23T17:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "aa1fd658-1b2a-4f8e-9cd9-f792b65fdaec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T17:41:58.000Z" - }, - "end": { - "$date": "2021-04-23T18:36:35.000Z" - }, - "events": [ - { - "uuid": "ef3b9149-6eb7-4ce0-a2b7-ed1d58b8ca5f", - "start": { - "$date": "2021-04-23T17:41:58.000Z" - }, - "end": { - "$date": "2021-04-23T18:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "19451e46-4f35-4cb9-8568-c2ba38ef7209", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-23T19:26:22.000Z" - }, - "end": { - "$date": "2021-04-23T20:03:35.000Z" - }, - "events": [ - { - "uuid": "df442109-efa6-4957-9169-e086ebcfa482", - "start": { - "$date": "2021-04-23T19:26:22.000Z" - }, - "end": { - "$date": "2021-04-23T20:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5df0485a-b278-49c6-b88d-f0b07be98faf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-23T19:29:20.000Z" - }, - "end": { - "$date": "2021-04-23T20:08:02.000Z" - }, - "events": [ - { - "uuid": "aabff9ab-495d-47b1-a0df-2c246f85c4a5", - "start": { - "$date": "2021-04-23T19:29:20.000Z" - }, - "end": { - "$date": "2021-04-23T20:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1cf35d9f-566e-494d-ba98-717c207d8dbf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-23T20:12:02.000Z" - }, - "end": { - "$date": "2021-04-23T21:33:40.000Z" - }, - "events": [ - { - "uuid": "9d7b9e75-48b5-43fc-999c-cb649bad76b0", - "start": { - "$date": "2021-04-23T20:12:02.000Z" - }, - "end": { - "$date": "2021-04-23T21:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e8fce44f-b14e-4ee5-89a8-4fe9698df608", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-23T20:35:52.000Z" - }, - "end": { - "$date": "2021-04-23T21:32:50.000Z" - }, - "events": [ - { - "uuid": "61166ccb-7f32-4394-95f0-5f83004c96c3", - "start": { - "$date": "2021-04-23T20:35:52.000Z" - }, - "end": { - "$date": "2021-04-23T21:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "abd11085-755e-4a2f-9e76-10ed9db6cb13", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T21:00:56.000Z" - }, - "end": { - "$date": "2021-04-23T21:03:10.000Z" - }, - "events": [ - { - "uuid": "bbd72603-ac02-48ba-a591-925e6e06f2bd", - "start": { - "$date": "2021-04-23T21:00:56.000Z" - }, - "end": { - "$date": "2021-04-23T21:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "1107cff4-b674-4ef4-ae16-b434d288d42e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T21:03:26.000Z" - }, - "end": { - "$date": "2021-04-23T21:43:01.000Z" - }, - "events": [ - { - "uuid": "f0f911e2-bd0b-47ac-a463-5c6b45cfd1f6", - "start": { - "$date": "2021-04-23T21:03:26.000Z" - }, - "end": { - "$date": "2021-04-23T21:43:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a70e9202-57e0-4599-bb34-ff818dbc9139", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-23T21:27:12.000Z" - }, - "end": { - "$date": "2021-04-23T21:41:11.000Z" - }, - "events": [ - { - "uuid": "c151dd2b-d82f-4de7-8c6b-ae8d1b9ebe12", - "start": { - "$date": "2021-04-23T21:27:12.000Z" - }, - "end": { - "$date": "2021-04-23T21:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f617b8b8-ff1e-4a7c-b6af-b6fbe07ca939", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-23T21:43:30.000Z" - }, - "end": { - "$date": "2021-04-23T22:15:06.000Z" - }, - "events": [ - { - "uuid": "2ad752fe-7079-4626-9a79-263d7132b3e6", - "start": { - "$date": "2021-04-23T21:43:30.000Z" - }, - "end": { - "$date": "2021-04-23T22:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b1e1ab6-7d00-472f-925f-8023c984c0d3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-23T22:25:21.000Z" - }, - "end": { - "$date": "2021-04-23T22:41:06.000Z" - }, - "events": [ - { - "uuid": "dc930fe3-3dc0-43b1-acfb-329799892f8d", - "start": { - "$date": "2021-04-23T22:25:21.000Z" - }, - "end": { - "$date": "2021-04-23T22:41:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "b26a7209-f576-42be-9c6d-041eecad92ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T22:31:39.000Z" - }, - "end": { - "$date": "2021-04-23T22:59:14.000Z" - }, - "events": [ - { - "uuid": "2e50e265-b1a4-4003-ae83-00398c4f64c6", - "start": { - "$date": "2021-04-23T22:31:39.000Z" - }, - "end": { - "$date": "2021-04-23T22:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5e24bfca-abd1-47ba-930e-ffcb9db74477", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-23T23:25:08.000Z" - }, - "end": { - "$date": "2021-04-24T01:00:00.000Z" - }, - "events": [ - { - "uuid": "0252a243-27ae-4f8f-b307-9c78b7cd249f", - "start": { - "$date": "2021-04-23T23:25:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:07:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f01c6599-85d0-41fe-8567-e2b5de0cb536", - "start": { - "$date": "2021-04-24T00:07:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:12:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11402384-3c3f-473f-97bd-cb2839f6ae5e", - "start": { - "$date": "2021-04-24T00:12:08.000Z" - }, - "end": { - "$date": "2021-04-24T01:00:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "c03983d6-0ec0-42d3-a218-575c13b6f464", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-23T23:49:08.000Z" - }, - "end": { - "$date": "2021-04-24T02:20:09.000Z" - }, - "events": [ - { - "uuid": "a0293868-6d25-4688-8f43-28808f436c0e", - "start": { - "$date": "2021-04-23T23:49:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:20:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae7bc1b8-24bd-4beb-bea9-8dc37a4da4c1", - "start": { - "$date": "2021-04-24T00:20:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:24:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6d547d6-e384-49d6-af3f-aec1befc11e4", - "start": { - "$date": "2021-04-24T00:24:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:39:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c1154dc-16f3-496b-aaf8-4d98a2b8fb9a", - "start": { - "$date": "2021-04-24T00:39:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:44:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c230fdce-0401-4f76-9800-662aa1a2f3ae", - "start": { - "$date": "2021-04-24T00:44:08.000Z" - }, - "end": { - "$date": "2021-04-24T00:54:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83a254d4-ce9c-4a05-97e9-9613eab5377b", - "start": { - "$date": "2021-04-24T00:54:08.000Z" - }, - "end": { - "$date": "2021-04-24T01:23:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "720a7868-84b3-416d-ad38-257d294be26f", - "start": { - "$date": "2021-04-24T01:23:08.000Z" - }, - "end": { - "$date": "2021-04-24T02:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33d347be-ba23-4a37-8fe4-58e2a6542ce6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T01:39:03.000Z" - }, - "end": { - "$date": "2021-04-24T02:07:30.000Z" - }, - "events": [ - { - "uuid": "7f0dcfcb-6c68-4cf9-a902-9b26fbc1a2b7", - "start": { - "$date": "2021-04-24T01:39:03.000Z" - }, - "end": { - "$date": "2021-04-24T02:07:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc056a3b-1c51-4a01-b283-acc75a623ce1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T02:12:12.000Z" - }, - "end": { - "$date": "2021-04-24T02:38:55.000Z" - }, - "events": [ - { - "uuid": "a41c29d7-963d-4b32-840a-004dcb5dc30c", - "start": { - "$date": "2021-04-24T02:12:12.000Z" - }, - "end": { - "$date": "2021-04-24T02:38:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7a38edea-7b08-4567-9c53-6203fac1f64c", - "uuid": "ac1af032-fdde-475c-9f5a-765a24e54027", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-24T02:09:37.000Z" - }, - "end": { - "$date": "2021-04-24T02:10:45.000Z" - }, - "events": [ - { - "uuid": "379448d0-8d1a-41d9-a542-c5ea98e5f5c0", - "start": { - "$date": "2021-04-24T02:09:37.000Z" - }, - "end": { - "$date": "2021-04-24T02:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "7191b80e-8918-471f-9e94-b4f722ae1639", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T02:21:11.000Z" - }, - "end": { - "$date": "2021-04-24T06:19:25.000Z" - }, - "events": [ - { - "uuid": "9454d0b6-1aea-4391-ab42-36df662548ac", - "start": { - "$date": "2021-04-24T02:21:11.000Z" - }, - "end": { - "$date": "2021-04-24T04:11:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "afb83cc5-1d8a-4957-a488-0ecdf93f7c76", - "start": { - "$date": "2021-04-24T04:11:11.000Z" - }, - "end": { - "$date": "2021-04-24T04:14:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2227587f-dd0c-445a-86e3-51c5585f37c3", - "start": { - "$date": "2021-04-24T04:14:11.000Z" - }, - "end": { - "$date": "2021-04-24T04:24:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73d33f28-5fa9-495c-80cf-5c8c3c5f6316", - "start": { - "$date": "2021-04-24T04:24:11.000Z" - }, - "end": { - "$date": "2021-04-24T04:37:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c93d2c96-27be-436a-bcd7-ac0df9188cc4", - "start": { - "$date": "2021-04-24T04:37:11.000Z" - }, - "end": { - "$date": "2021-04-24T06:19:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0830e8a-c61d-49f0-80a7-f55f0fe8ead2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T03:01:22.000Z" - }, - "end": { - "$date": "2021-04-24T03:01:22.000Z" - }, - "events": [ - { - "uuid": "6f819a6d-a8d5-46d9-8ef1-e44ba9ee609e", - "start": { - "$date": "2021-04-24T03:01:22.000Z" - }, - "end": { - "$date": "2021-04-24T03:01:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a774914e-15cc-41ff-b475-f0e4bbb8d081", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T03:04:25.000Z" - }, - "end": { - "$date": "2021-04-24T03:23:16.000Z" - }, - "events": [ - { - "uuid": "1590b441-8bfb-4c56-a03c-c9c8fd8aa933", - "start": { - "$date": "2021-04-24T03:04:25.000Z" - }, - "end": { - "$date": "2021-04-24T03:23:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "111b257c-b36f-48e6-95b5-137c71f27e25", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-24T03:24:14.000Z" - }, - "end": { - "$date": "2021-04-24T03:30:59.000Z" - }, - "events": [ - { - "uuid": "152e7d58-5caa-467e-9f25-355cd4647c0c", - "start": { - "$date": "2021-04-24T03:24:14.000Z" - }, - "end": { - "$date": "2021-04-24T03:30:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "32c4cd66-0d13-40e1-b6d2-ee87276f6e46", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-24T03:31:34.000Z" - }, - "end": { - "$date": "2021-04-24T05:46:49.000Z" - }, - "events": [ - { - "uuid": "79ca0d38-1f84-4b9a-9148-21986170e52c", - "start": { - "$date": "2021-04-24T03:31:34.000Z" - }, - "end": { - "$date": "2021-04-24T05:46:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a82688e3-63b9-49f5-bd46-1aa66edb0ff8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T04:16:50.000Z" - }, - "end": { - "$date": "2021-04-24T04:20:37.000Z" - }, - "events": [ - { - "uuid": "fd9394ec-874c-46c6-bc02-afef1ae23049", - "start": { - "$date": "2021-04-24T04:16:50.000Z" - }, - "end": { - "$date": "2021-04-24T04:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0ede3ff-bca2-48d6-aa04-cf8c15a66bab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-24T04:49:06.000Z" - }, - "end": { - "$date": "2021-04-24T05:58:52.000Z" - }, - "events": [ - { - "uuid": "24b74e8e-6c8d-4aac-941f-b1683cade173", - "start": { - "$date": "2021-04-24T04:49:06.000Z" - }, - "end": { - "$date": "2021-04-24T05:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "28fa6d8e-ea9d-420c-928c-72fed340c9c1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T04:16:50.000Z" - }, - "end": { - "$date": "2021-04-24T04:32:31.000Z" - }, - "events": [ - { - "uuid": "c8f2ad4e-37fb-480f-9a84-3a313355beca", - "start": { - "$date": "2021-04-24T04:16:50.000Z" - }, - "end": { - "$date": "2021-04-24T04:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1acd87e7-2740-4d68-8d10-6b1b7f599326", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-24T04:23:12.000Z" - }, - "end": { - "$date": "2021-04-24T05:58:57.000Z" - }, - "events": [ - { - "uuid": "f910994f-49d1-4b45-b36a-d6e4dfd638b3", - "start": { - "$date": "2021-04-24T04:23:12.000Z" - }, - "end": { - "$date": "2021-04-24T05:58:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f5154d65-946d-4947-b7b9-abf8c0660e4d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T04:32:41.000Z" - }, - "end": { - "$date": "2021-04-24T06:00:41.000Z" - }, - "events": [ - { - "uuid": "a3d31431-d380-4dfa-bbf9-ff97ef64f861", - "start": { - "$date": "2021-04-24T04:32:41.000Z" - }, - "end": { - "$date": "2021-04-24T06:00:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7e1e19e-faa7-400c-8a0f-ada394860efe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-24T04:40:24.000Z" - }, - "end": { - "$date": "2021-04-24T08:57:29.000Z" - }, - "events": [ - { - "uuid": "8db296cb-a6e4-40e5-ab66-ac0870ec48bb", - "start": { - "$date": "2021-04-24T04:40:24.000Z" - }, - "end": { - "$date": "2021-04-24T08:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff94c6c8-ea53-45b3-aebe-84357da85dfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T05:10:27.000Z" - }, - "end": { - "$date": "2021-04-24T05:30:48.000Z" - }, - "events": [ - { - "uuid": "93456c30-894a-42dd-b1df-6661e20d3e91", - "start": { - "$date": "2021-04-24T05:10:27.000Z" - }, - "end": { - "$date": "2021-04-24T05:30:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fff882d-924e-4ba4-80c9-61eb849af62f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T05:33:44.000Z" - }, - "end": { - "$date": "2021-04-24T05:55:19.000Z" - }, - "events": [ - { - "uuid": "99c90e84-e3a1-4a89-ada1-5288658faccd", - "start": { - "$date": "2021-04-24T05:33:44.000Z" - }, - "end": { - "$date": "2021-04-24T05:55:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3fe81306-1d36-448d-b8b9-e457a15a0319", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-24T05:38:00.000Z" - }, - "end": { - "$date": "2021-04-24T07:06:12.000Z" - }, - "events": [ - { - "uuid": "16fd3984-d3ae-47a1-a32c-99c92db01eab", - "start": { - "$date": "2021-04-24T05:38:00.000Z" - }, - "end": { - "$date": "2021-04-24T07:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "de15927c-3be9-4ffe-9b5b-eed886327d70", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-24T05:48:19.000Z" - }, - "end": { - "$date": "2021-04-24T06:55:47.000Z" - }, - "events": [ - { - "uuid": "708864fc-f9a6-472a-83ce-17391dba3523", - "start": { - "$date": "2021-04-24T05:48:19.000Z" - }, - "end": { - "$date": "2021-04-24T06:55:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1c9fd15-76a7-4863-a1b5-637f4b774791", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T06:00:35.000Z" - }, - "end": { - "$date": "2021-04-24T06:32:32.000Z" - }, - "events": [ - { - "uuid": "755d01de-b99e-46c6-8c3e-047c63babbca", - "start": { - "$date": "2021-04-24T06:00:35.000Z" - }, - "end": { - "$date": "2021-04-24T06:32:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a5ceff98-d104-441e-ac46-399dbdbcc6f7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T06:00:45.000Z" - }, - "end": { - "$date": "2021-04-24T06:11:35.000Z" - }, - "events": [ - { - "uuid": "bc7907e2-d1c0-455d-9431-cd316a7feccc", - "start": { - "$date": "2021-04-24T06:00:45.000Z" - }, - "end": { - "$date": "2021-04-24T06:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7d1f9791-c185-4322-89e0-6eb64b381a0f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T06:17:50.000Z" - }, - "end": { - "$date": "2021-04-24T07:02:51.000Z" - }, - "events": [ - { - "uuid": "44d84e9b-b662-48c8-ba17-e2ae638a5b59", - "start": { - "$date": "2021-04-24T06:17:50.000Z" - }, - "end": { - "$date": "2021-04-24T07:02:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6635db7c-8d41-40bc-8452-11bca2a8e399", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T06:36:29.000Z" - }, - "end": { - "$date": "2021-04-24T06:37:45.000Z" - }, - "events": [ - { - "uuid": "326e310a-e9db-48e0-9fbe-d5fa6e54cf61", - "start": { - "$date": "2021-04-24T06:36:29.000Z" - }, - "end": { - "$date": "2021-04-24T06:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "131807fd-f11c-4c33-b441-c529b76c2141", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T06:38:28.000Z" - }, - "end": { - "$date": "2021-04-24T07:40:03.000Z" - }, - "events": [ - { - "uuid": "00db8f81-4f9a-4e81-89da-3b42b46eef75", - "start": { - "$date": "2021-04-24T06:38:28.000Z" - }, - "end": { - "$date": "2021-04-24T07:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b59aad01-0c46-4a0e-86db-666f4514c669", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T08:05:23.000Z" - }, - "end": { - "$date": "2021-04-24T08:09:28.000Z" - }, - "events": [ - { - "uuid": "8169bfb4-91b3-4005-9bbc-f76653adf8f3", - "start": { - "$date": "2021-04-24T08:05:23.000Z" - }, - "end": { - "$date": "2021-04-24T08:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "dd58145c-c641-49a1-8136-6dd8923cd840", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T08:21:09.000Z" - }, - "end": { - "$date": "2021-04-24T08:29:14.000Z" - }, - "events": [ - { - "uuid": "7a87a3ff-5454-4257-9316-fa57aed0b352", - "start": { - "$date": "2021-04-24T08:21:09.000Z" - }, - "end": { - "$date": "2021-04-24T08:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "676ae71e-edfe-4605-8d5b-58808da1e694", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-24T08:25:05.000Z" - }, - "end": { - "$date": "2021-04-24T08:37:21.000Z" - }, - "events": [ - { - "uuid": "504f102b-9543-4ba8-823f-bdd0c1fa0a54", - "start": { - "$date": "2021-04-24T08:25:05.000Z" - }, - "end": { - "$date": "2021-04-24T08:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "e02ef453-798e-479a-b0ff-82cbda637560", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T08:31:02.000Z" - }, - "end": { - "$date": "2021-04-24T10:00:24.000Z" - }, - "events": [ - { - "uuid": "2ea61147-1f69-492c-bf1e-6c375cacf972", - "start": { - "$date": "2021-04-24T08:31:02.000Z" - }, - "end": { - "$date": "2021-04-24T10:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ab96d9ce-3f2f-4053-b1f3-6a7ef760f391", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-24T15:11:44.000Z" - }, - "end": { - "$date": "2021-04-24T15:25:15.000Z" - }, - "events": [ - { - "uuid": "71a35059-40aa-48df-aa6a-a76b8f8703b5", - "start": { - "$date": "2021-04-24T15:11:44.000Z" - }, - "end": { - "$date": "2021-04-24T15:25:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "d90b9ef5-4ec7-40f7-a9c3-ffdbf4e126a3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-24T16:34:33.000Z" - }, - "end": { - "$date": "2021-04-24T18:52:55.000Z" - }, - "events": [ - { - "uuid": "eb910444-2cd1-4d16-a72d-4d0eab2c069e", - "start": { - "$date": "2021-04-24T16:34:33.000Z" - }, - "end": { - "$date": "2021-04-24T18:30:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "443dee4f-1e69-4edb-be1b-1798d6f4b6bf", - "start": { - "$date": "2021-04-24T18:30:33.000Z" - }, - "end": { - "$date": "2021-04-24T18:37:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c78139e3-ef3a-47f9-94a3-6648316b4312", - "start": { - "$date": "2021-04-24T18:37:33.000Z" - }, - "end": { - "$date": "2021-04-24T18:52:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "707e10df-7098-4720-a7a2-442351a4fd53", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-24T16:37:17.000Z" - }, - "end": { - "$date": "2021-04-24T18:01:39.000Z" - }, - "events": [ - { - "uuid": "3ebebcd0-c5ff-4242-b1ce-92598f588015", - "start": { - "$date": "2021-04-24T16:37:17.000Z" - }, - "end": { - "$date": "2021-04-24T18:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ee2e666b-e827-4af5-bba4-2a3dbb3a032c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-24T19:10:59.000Z" - }, - "end": { - "$date": "2021-04-24T19:50:54.000Z" - }, - "events": [ - { - "uuid": "fa9b6d7b-105b-4787-93b8-9e33381722f7", - "start": { - "$date": "2021-04-24T19:10:59.000Z" - }, - "end": { - "$date": "2021-04-24T19:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "faea2fe2-7020-4d3b-97ee-8cfff400542e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-24T20:32:34.000Z" - }, - "end": { - "$date": "2021-04-24T21:01:32.000Z" - }, - "events": [ - { - "uuid": "25499a7d-22e0-4a54-a454-c795a0259a57", - "start": { - "$date": "2021-04-24T20:32:34.000Z" - }, - "end": { - "$date": "2021-04-24T21:01:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2c0b591e-9aaf-47eb-b2ad-abc8c7fff1ea", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T20:43:13.000Z" - }, - "end": { - "$date": "2021-04-24T21:19:57.000Z" - }, - "events": [ - { - "uuid": "5c2b8591-a64c-4bcb-8187-1c55efc19095", - "start": { - "$date": "2021-04-24T20:43:13.000Z" - }, - "end": { - "$date": "2021-04-24T21:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "fc7e68ad-9427-4b9b-9335-1dd9e3cc86a7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-24T21:01:37.000Z" - }, - "end": { - "$date": "2021-04-25T04:54:30.000Z" - }, - "events": [ - { - "uuid": "a2098d44-24ee-4227-94f4-957f33e72640", - "start": { - "$date": "2021-04-24T21:01:37.000Z" - }, - "end": { - "$date": "2021-04-25T04:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "81b8c6d8-d114-46b7-bb2a-b194ef3d5358", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-24T21:06:23.000Z" - }, - "end": { - "$date": "2021-04-25T00:56:56.000Z" - }, - "events": [ - { - "uuid": "5e3ec393-6992-4c06-b4c5-08582e9df952", - "start": { - "$date": "2021-04-24T21:06:23.000Z" - }, - "end": { - "$date": "2021-04-25T00:24:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41178f4b-3634-4328-a393-d30961bca134", - "start": { - "$date": "2021-04-25T00:24:23.000Z" - }, - "end": { - "$date": "2021-04-25T00:29:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94ac267e-195d-4874-b95a-acf4150506db", - "start": { - "$date": "2021-04-25T00:29:23.000Z" - }, - "end": { - "$date": "2021-04-25T00:39:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14e2b335-05a2-45c7-b5f6-3edb618da747", - "start": { - "$date": "2021-04-25T00:39:23.000Z" - }, - "end": { - "$date": "2021-04-25T00:56:56.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91ff5fb5-6973-4e7d-b75d-d0f359c61398", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T22:38:54.000Z" - }, - "end": { - "$date": "2021-04-24T23:00:28.000Z" - }, - "events": [ - { - "uuid": "ec5b448e-cc7f-4a61-9c79-67960f7eb55e", - "start": { - "$date": "2021-04-24T22:38:54.000Z" - }, - "end": { - "$date": "2021-04-24T23:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cb5d05b6-6e67-4a21-9ac2-dab6f61c7e84", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-24T23:06:47.000Z" - }, - "end": { - "$date": "2021-04-24T23:56:39.000Z" - }, - "events": [ - { - "uuid": "cb2dd811-5b60-4581-97c7-71eaf6aa6c6a", - "start": { - "$date": "2021-04-24T23:06:47.000Z" - }, - "end": { - "$date": "2021-04-24T23:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6df10bf4-c225-48b9-b0c0-dfcfd7dc6459", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T23:08:02.000Z" - }, - "end": { - "$date": "2021-04-24T23:11:44.000Z" - }, - "events": [ - { - "uuid": "5df20cdf-862d-4f29-86e6-39aaa14c5dc9", - "start": { - "$date": "2021-04-24T23:08:02.000Z" - }, - "end": { - "$date": "2021-04-24T23:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1e5e1604-05fc-4e39-a5c3-37b8001eb808", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-24T23:11:58.000Z" - }, - "end": { - "$date": "2021-04-24T23:56:47.000Z" - }, - "events": [ - { - "uuid": "6ace37ec-1767-4f75-a1d4-d854bf91a1ef", - "start": { - "$date": "2021-04-24T23:11:58.000Z" - }, - "end": { - "$date": "2021-04-24T23:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c7914e0-fe2a-48f0-b6e7-f6799996868c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-24T23:44:55.000Z" - }, - "end": { - "$date": "2021-04-24T23:58:37.000Z" - }, - "events": [ - { - "uuid": "a9c4df9c-613a-43d2-bc93-99e550a00377", - "start": { - "$date": "2021-04-24T23:44:55.000Z" - }, - "end": { - "$date": "2021-04-24T23:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ead2c25-94f1-44bd-aaad-dff4e463596f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-24T23:41:49.000Z" - }, - "end": { - "$date": "2021-04-24T23:58:44.000Z" - }, - "events": [ - { - "uuid": "4f17c8cc-109c-4efb-a284-388865fe063e", - "start": { - "$date": "2021-04-24T23:41:49.000Z" - }, - "end": { - "$date": "2021-04-24T23:58:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "8222304d-d6a9-4e2f-9651-4669c35edb88", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T00:00:20.000Z" - }, - "end": { - "$date": "2021-04-25T00:57:18.000Z" - }, - "events": [ - { - "uuid": "a4022fdf-b01f-49aa-a3ce-09fa359d931e", - "start": { - "$date": "2021-04-25T00:00:20.000Z" - }, - "end": { - "$date": "2021-04-25T00:57:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb13f84d-0d6a-4e0e-bd06-fc6c16ac0341", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T00:08:55.000Z" - }, - "end": { - "$date": "2021-04-25T00:34:59.000Z" - }, - "events": [ - { - "uuid": "929e7f87-a022-49c9-8082-f5e29061585c", - "start": { - "$date": "2021-04-25T00:08:55.000Z" - }, - "end": { - "$date": "2021-04-25T00:34:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7102b4ae-68e9-4758-876f-f5892e00ad4e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T00:09:18.000Z" - }, - "end": { - "$date": "2021-04-25T00:35:53.000Z" - }, - "events": [ - { - "uuid": "adf96bdb-0464-4304-a044-508cbc7d89d2", - "start": { - "$date": "2021-04-25T00:09:18.000Z" - }, - "end": { - "$date": "2021-04-25T00:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d04ba5c4-a912-43c7-8ed5-57d5de795de4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T00:41:56.000Z" - }, - "end": { - "$date": "2021-04-25T01:10:15.000Z" - }, - "events": [ - { - "uuid": "4e017b2e-3580-42a3-865c-377b943464a4", - "start": { - "$date": "2021-04-25T00:41:56.000Z" - }, - "end": { - "$date": "2021-04-25T01:10:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bff6537c-dc7a-44a3-88d0-be2e7f79c61b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-25T00:42:35.000Z" - }, - "end": { - "$date": "2021-04-25T01:10:06.000Z" - }, - "events": [ - { - "uuid": "587f4038-8d55-4383-8f75-a3a879eba635", - "start": { - "$date": "2021-04-25T00:42:35.000Z" - }, - "end": { - "$date": "2021-04-25T01:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8635d59b-e9a6-4b53-835f-81d8cb6204a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T00:42:27.000Z" - }, - "end": { - "$date": "2021-04-25T01:10:17.000Z" - }, - "events": [ - { - "uuid": "b30b8844-5498-4cab-925b-964b8d452238", - "start": { - "$date": "2021-04-25T00:42:27.000Z" - }, - "end": { - "$date": "2021-04-25T01:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a34a0a0-9a5d-48ec-a569-a81b821c6a37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T01:18:52.000Z" - }, - "end": { - "$date": "2021-04-25T01:31:20.000Z" - }, - "events": [ - { - "uuid": "73a558cf-7f6d-4896-a817-5eca01dbf9cc", - "start": { - "$date": "2021-04-25T01:18:52.000Z" - }, - "end": { - "$date": "2021-04-25T01:31:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99e88c45-d447-4150-a06a-66780c564f5e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-25T01:10:40.000Z" - }, - "end": { - "$date": "2021-04-25T01:15:39.000Z" - }, - "events": [ - { - "uuid": "10e9eb1e-617f-45db-8bcd-752890952998", - "start": { - "$date": "2021-04-25T01:10:40.000Z" - }, - "end": { - "$date": "2021-04-25T01:15:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cba419d-15c5-46b5-96e2-8368446f1513", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T01:10:41.000Z" - }, - "end": { - "$date": "2021-04-25T01:15:40.000Z" - }, - "events": [ - { - "uuid": "3a833aa9-7d7b-4f68-acb4-097c122ba555", - "start": { - "$date": "2021-04-25T01:10:41.000Z" - }, - "end": { - "$date": "2021-04-25T01:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c2f94d3-7ddf-4713-9710-641daa6a0b15", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-25T01:18:46.000Z" - }, - "end": { - "$date": "2021-04-25T01:31:07.000Z" - }, - "events": [ - { - "uuid": "0cd79ca8-92b1-4fa5-aa71-f204cb4034ad", - "start": { - "$date": "2021-04-25T01:18:46.000Z" - }, - "end": { - "$date": "2021-04-25T01:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4ada884-ef7d-41f5-842b-5c1b224cb325", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T01:18:46.000Z" - }, - "end": { - "$date": "2021-04-25T01:31:07.000Z" - }, - "events": [ - { - "uuid": "2f7eac6c-29ec-47a5-b8c6-2fdb562d50b6", - "start": { - "$date": "2021-04-25T01:18:46.000Z" - }, - "end": { - "$date": "2021-04-25T01:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8540339-5945-43b0-af05-bcc015af06a0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T02:08:50.000Z" - }, - "end": { - "$date": "2021-04-25T04:42:31.000Z" - }, - "events": [ - { - "uuid": "4d3065a4-5447-4633-a1bc-e77ed1effe3b", - "start": { - "$date": "2021-04-25T02:08:50.000Z" - }, - "end": { - "$date": "2021-04-25T04:40:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae90125c-2ca7-4247-912e-ca4ed46902f5", - "start": { - "$date": "2021-04-25T04:40:50.000Z" - }, - "end": { - "$date": "2021-04-25T04:42:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5f5e8798-616f-42bb-843b-2b8100df572a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T02:10:42.000Z" - }, - "end": { - "$date": "2021-04-25T06:06:35.000Z" - }, - "events": [ - { - "uuid": "455a1462-e356-441d-ad63-dacdd8f5561d", - "start": { - "$date": "2021-04-25T02:10:42.000Z" - }, - "end": { - "$date": "2021-04-25T06:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "937c6f11-1392-40ff-8731-94e8aab3996c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T03:12:31.000Z" - }, - "end": { - "$date": "2021-04-25T03:12:55.000Z" - }, - "events": [ - { - "uuid": "2f8d1076-10ab-40a3-8caf-ff2f2051c7b9", - "start": { - "$date": "2021-04-25T03:12:31.000Z" - }, - "end": { - "$date": "2021-04-25T03:12:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3ad935d9-a3a0-49af-aebf-f658ea4fd4a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T03:20:02.000Z" - }, - "end": { - "$date": "2021-04-25T03:28:16.000Z" - }, - "events": [ - { - "uuid": "6a4d3ada-b579-4aca-965f-e914ccd011b9", - "start": { - "$date": "2021-04-25T03:20:02.000Z" - }, - "end": { - "$date": "2021-04-25T03:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3d274fc2-ed26-405a-8a09-360bab517fad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-25T03:32:57.000Z" - }, - "end": { - "$date": "2021-04-25T06:21:52.000Z" - }, - "events": [ - { - "uuid": "24bfc2f5-9ab8-4651-8be7-55f22b2d40df", - "start": { - "$date": "2021-04-25T03:32:57.000Z" - }, - "end": { - "$date": "2021-04-25T06:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "edd5df4b-3ef5-401f-8412-e74d736727d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-25T03:52:52.000Z" - }, - "end": { - "$date": "2021-04-25T07:03:38.000Z" - }, - "events": [ - { - "uuid": "9cc50fe9-2fee-4ba6-8f8b-59a23b7ceee5", - "start": { - "$date": "2021-04-25T03:52:52.000Z" - }, - "end": { - "$date": "2021-04-25T07:03:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8e5e1ae5-b192-41c7-b835-8e4746c2b24f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T03:56:22.000Z" - }, - "end": { - "$date": "2021-04-25T05:11:30.000Z" - }, - "events": [ - { - "uuid": "52b997a1-c0a9-449c-bf63-5b7734877038", - "start": { - "$date": "2021-04-25T03:56:22.000Z" - }, - "end": { - "$date": "2021-04-25T05:11:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f566aaf1-f31a-4c87-9213-a9a4acc20e5f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-25T04:13:51.000Z" - }, - "end": { - "$date": "2021-04-25T05:16:18.000Z" - }, - "events": [ - { - "uuid": "f6128a55-0533-45bc-88fe-1040f43185b5", - "start": { - "$date": "2021-04-25T04:13:51.000Z" - }, - "end": { - "$date": "2021-04-25T05:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7b770922-2c13-40c9-a9c6-0b27b6889f5a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T05:09:30.000Z" - }, - "end": { - "$date": "2021-04-25T05:10:54.000Z" - }, - "events": [ - { - "uuid": "a29a7019-b1a2-4ba2-b9ad-be4de89a7e8b", - "start": { - "$date": "2021-04-25T05:09:30.000Z" - }, - "end": { - "$date": "2021-04-25T05:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "d9868b28-d47f-45e4-ab73-e6320212c16d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T05:11:15.000Z" - }, - "end": { - "$date": "2021-04-25T05:26:45.000Z" - }, - "events": [ - { - "uuid": "f95e4adc-fac4-4b78-ab07-c9d37e7f011e", - "start": { - "$date": "2021-04-25T05:11:15.000Z" - }, - "end": { - "$date": "2021-04-25T05:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f1617452-2a03-4961-8944-0f09db313a53", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-25T05:16:33.000Z" - }, - "end": { - "$date": "2021-04-25T06:21:50.000Z" - }, - "events": [ - { - "uuid": "75201417-98c9-4916-9650-64ed4697eab6", - "start": { - "$date": "2021-04-25T05:16:33.000Z" - }, - "end": { - "$date": "2021-04-25T06:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8c35b1b6-a04f-43ab-90ea-61717d1c33fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T02:08:50.000Z" - }, - "end": { - "$date": "2021-04-25T05:26:32.000Z" - }, - "events": [ - { - "uuid": "66630920-600c-4667-b190-e92763464616", - "start": { - "$date": "2021-04-25T02:08:50.000Z" - }, - "end": { - "$date": "2021-04-25T05:26:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba1411d8-ae2b-4cf0-84e7-1cbcc08d8297", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T05:26:51.000Z" - }, - "end": { - "$date": "2021-04-25T06:23:52.000Z" - }, - "events": [ - { - "uuid": "ec2dc8e6-6d6a-4b70-bba9-639e8c9509c8", - "start": { - "$date": "2021-04-25T05:26:51.000Z" - }, - "end": { - "$date": "2021-04-25T06:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9744590a-1aec-4188-8c52-b39d9ad86785", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T05:30:56.000Z" - }, - "end": { - "$date": "2021-04-25T05:47:27.000Z" - }, - "events": [ - { - "uuid": "adc47cee-13e2-46d1-8781-c990b6786432", - "start": { - "$date": "2021-04-25T05:30:56.000Z" - }, - "end": { - "$date": "2021-04-25T05:47:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8e1a76d-4a01-441d-ba57-7d589f8eb183", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T05:31:18.000Z" - }, - "end": { - "$date": "2021-04-25T05:47:29.000Z" - }, - "events": [ - { - "uuid": "364c5378-793f-4d95-9498-e4e49632949d", - "start": { - "$date": "2021-04-25T05:31:18.000Z" - }, - "end": { - "$date": "2021-04-25T05:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29869766-a549-44ac-9051-334d8cad4bf1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T05:53:18.000Z" - }, - "end": { - "$date": "2021-04-25T06:17:03.000Z" - }, - "events": [ - { - "uuid": "cf5e6842-4362-4dd3-a646-ead64817f2b7", - "start": { - "$date": "2021-04-25T05:53:18.000Z" - }, - "end": { - "$date": "2021-04-25T06:17:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c36039b4-81c4-4d98-9151-f424df48fc7e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T05:54:45.000Z" - }, - "end": { - "$date": "2021-04-25T06:16:54.000Z" - }, - "events": [ - { - "uuid": "fdbe55a0-1344-4b24-ab0e-511c2f0b5671", - "start": { - "$date": "2021-04-25T05:54:45.000Z" - }, - "end": { - "$date": "2021-04-25T06:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de91b4c1-21e0-4200-9283-b9b0e8464ebd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T05:53:14.000Z" - }, - "end": { - "$date": "2021-04-25T06:16:58.000Z" - }, - "events": [ - { - "uuid": "98442034-e1a7-4694-b7a1-2d48a82c6a71", - "start": { - "$date": "2021-04-25T05:53:14.000Z" - }, - "end": { - "$date": "2021-04-25T06:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "867d7136-e732-43f7-adb4-652fc6f93d09", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T06:08:19.000Z" - }, - "end": { - "$date": "2021-04-25T06:17:27.000Z" - }, - "events": [ - { - "uuid": "7e492206-9f71-4702-ab52-4bf8482cf726", - "start": { - "$date": "2021-04-25T06:08:19.000Z" - }, - "end": { - "$date": "2021-04-25T06:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3ad3b4b-b901-4391-a9c2-fc313ae05fbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T06:20:44.000Z" - }, - "end": { - "$date": "2021-04-25T06:46:29.000Z" - }, - "events": [ - { - "uuid": "551ca74e-77aa-4110-9556-8d1e7c16d3c2", - "start": { - "$date": "2021-04-25T06:20:44.000Z" - }, - "end": { - "$date": "2021-04-25T06:46:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "140fcce5-22a5-4cee-946d-0f0b1c6a7ca2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T06:21:25.000Z" - }, - "end": { - "$date": "2021-04-25T06:46:25.000Z" - }, - "events": [ - { - "uuid": "80f3e18f-2c58-4bed-88b7-5e9cf98cd5e2", - "start": { - "$date": "2021-04-25T06:21:25.000Z" - }, - "end": { - "$date": "2021-04-25T06:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "427ea902-4366-49fc-bc23-6777a66aaf93", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T06:20:44.000Z" - }, - "end": { - "$date": "2021-04-25T06:46:37.000Z" - }, - "events": [ - { - "uuid": "991585ec-c211-4fcc-8f78-fd7c46fdb2b4", - "start": { - "$date": "2021-04-25T06:20:44.000Z" - }, - "end": { - "$date": "2021-04-25T06:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "cc7b420a-0adb-4ff9-a73d-e67f4e0dfa43", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-25T06:24:07.000Z" - }, - "end": { - "$date": "2021-04-25T07:23:35.000Z" - }, - "events": [ - { - "uuid": "64840acf-5b61-41d2-b535-259ed0f977e3", - "start": { - "$date": "2021-04-25T06:24:07.000Z" - }, - "end": { - "$date": "2021-04-25T07:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "953ef71d-3dfd-4297-987d-8db7d28daf51", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-25T08:45:22.000Z" - }, - "end": { - "$date": "2021-04-25T09:12:33.000Z" - }, - "events": [ - { - "uuid": "cac6ba5d-b6c4-4a5f-b684-982cbd4f5182", - "start": { - "$date": "2021-04-25T08:45:22.000Z" - }, - "end": { - "$date": "2021-04-25T09:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9697b8c-c31b-4889-a4d6-7422ab147074", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T06:50:15.000Z" - }, - "end": { - "$date": "2021-04-25T07:09:42.000Z" - }, - "events": [ - { - "uuid": "32e0106f-f3ad-462f-b51f-2dae4781b335", - "start": { - "$date": "2021-04-25T06:50:15.000Z" - }, - "end": { - "$date": "2021-04-25T07:09:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9993af65-a1db-4356-82cb-5a3e51a222bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T06:47:06.000Z" - }, - "end": { - "$date": "2021-04-25T06:49:40.000Z" - }, - "events": [ - { - "uuid": "4c94d820-8388-42e6-b2bf-57759014bcbb", - "start": { - "$date": "2021-04-25T06:47:06.000Z" - }, - "end": { - "$date": "2021-04-25T06:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20a0f401-1e65-4a18-9286-f8c3e24cd820", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T06:50:32.000Z" - }, - "end": { - "$date": "2021-04-25T07:10:07.000Z" - }, - "events": [ - { - "uuid": "83b03314-d94e-4077-8428-6aad78f8454f", - "start": { - "$date": "2021-04-25T06:50:32.000Z" - }, - "end": { - "$date": "2021-04-25T07:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7cc93d60-d824-4a01-9098-4471919fa0d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-25T06:51:50.000Z" - }, - "end": { - "$date": "2021-04-25T08:05:56.000Z" - }, - "events": [ - { - "uuid": "be44a8f8-9e4a-44ed-a56d-05f404c48302", - "start": { - "$date": "2021-04-25T06:51:50.000Z" - }, - "end": { - "$date": "2021-04-25T08:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f5446e5e-d357-4bdd-83f2-1cc712e7dcfd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T06:52:12.000Z" - }, - "end": { - "$date": "2021-04-25T07:41:07.000Z" - }, - "events": [ - { - "uuid": "7d7123b3-ad35-4d76-aa24-2f3546c3da51", - "start": { - "$date": "2021-04-25T06:52:12.000Z" - }, - "end": { - "$date": "2021-04-25T07:41:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb2f19c0-82c9-467a-a5fb-e55e08b426d9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T07:12:10.000Z" - }, - "end": { - "$date": "2021-04-25T07:27:02.000Z" - }, - "events": [ - { - "uuid": "4bf560d0-2774-4e81-bd27-f4ca3c99238c", - "start": { - "$date": "2021-04-25T07:12:10.000Z" - }, - "end": { - "$date": "2021-04-25T07:27:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98267f17-b351-4dfa-92dd-1f20547793be", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T07:12:13.000Z" - }, - "end": { - "$date": "2021-04-25T07:26:58.000Z" - }, - "events": [ - { - "uuid": "5d9b4dc5-8679-4193-8f34-16c36d6a928a", - "start": { - "$date": "2021-04-25T07:12:13.000Z" - }, - "end": { - "$date": "2021-04-25T07:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2d7125bb-a0f1-4f6c-af4e-e4ec5d25871c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-25T07:18:57.000Z" - }, - "end": { - "$date": "2021-04-25T09:45:26.000Z" - }, - "events": [ - { - "uuid": "6bb4e1b6-ee77-43bd-8746-a4c008f15226", - "start": { - "$date": "2021-04-25T07:18:57.000Z" - }, - "end": { - "$date": "2021-04-25T07:53:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad1a5aa7-dcae-49aa-bbfb-0e2b2679a662", - "start": { - "$date": "2021-04-25T07:53:57.000Z" - }, - "end": { - "$date": "2021-04-25T08:08:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f245f88d-48de-400d-a28e-416dcd75304b", - "start": { - "$date": "2021-04-25T08:08:57.000Z" - }, - "end": { - "$date": "2021-04-25T09:45:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c951892b-8059-400b-958e-c35ae9700951", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T07:30:26.000Z" - }, - "end": { - "$date": "2021-04-25T08:01:23.000Z" - }, - "events": [ - { - "uuid": "59c45abb-94f1-4504-a125-f5ff459ff161", - "start": { - "$date": "2021-04-25T07:30:26.000Z" - }, - "end": { - "$date": "2021-04-25T08:01:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f94cad52-16d2-4a2a-8381-2b77e10a496b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T07:30:26.000Z" - }, - "end": { - "$date": "2021-04-25T08:01:22.000Z" - }, - "events": [ - { - "uuid": "e11cdff6-6635-498f-a6ef-3afbeb1677a6", - "start": { - "$date": "2021-04-25T07:30:26.000Z" - }, - "end": { - "$date": "2021-04-25T08:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3bae3eef-d887-4540-a3b9-e4831b9f5e66", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T07:35:55.000Z" - }, - "end": { - "$date": "2021-04-25T11:21:26.000Z" - }, - "events": [ - { - "uuid": "fb7060e2-15d7-4d2a-b965-5f22a5900076", - "start": { - "$date": "2021-04-25T07:35:55.000Z" - }, - "end": { - "$date": "2021-04-25T11:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "460d653a-c992-4383-8b31-cc55d04b9057", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T08:06:38.000Z" - }, - "end": { - "$date": "2021-04-25T08:36:56.000Z" - }, - "events": [ - { - "uuid": "b8537238-a5b9-4630-bd71-4ca5319aeec0", - "start": { - "$date": "2021-04-25T08:06:38.000Z" - }, - "end": { - "$date": "2021-04-25T08:36:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "310c9547-fcd5-4086-a4f4-c1c987cbfe77", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T08:07:03.000Z" - }, - "end": { - "$date": "2021-04-25T08:37:55.000Z" - }, - "events": [ - { - "uuid": "615ae233-9534-4076-9e05-6149a07910c9", - "start": { - "$date": "2021-04-25T08:07:03.000Z" - }, - "end": { - "$date": "2021-04-25T08:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b491f9f6-9b53-4731-82c2-1f5bf448d184", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T08:45:05.000Z" - }, - "end": { - "$date": "2021-04-25T09:12:35.000Z" - }, - "events": [ - { - "uuid": "b01fdac9-f96e-4bae-80fa-e13bfdae9289", - "start": { - "$date": "2021-04-25T08:45:05.000Z" - }, - "end": { - "$date": "2021-04-25T09:12:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6f993bf-96fe-4592-bc34-644e3bdb2d83", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T08:40:11.000Z" - }, - "end": { - "$date": "2021-04-25T08:40:27.000Z" - }, - "events": [ - { - "uuid": "414a8c7f-0ffe-4f07-94f9-7d77ba2a0a2c", - "start": { - "$date": "2021-04-25T08:40:11.000Z" - }, - "end": { - "$date": "2021-04-25T08:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcc43480-52a9-4707-bb64-d3fb1ac26823", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T08:45:02.000Z" - }, - "end": { - "$date": "2021-04-25T09:12:36.000Z" - }, - "events": [ - { - "uuid": "a951f933-5dd7-48e7-a94d-3a9ac1dc1f1e", - "start": { - "$date": "2021-04-25T08:45:02.000Z" - }, - "end": { - "$date": "2021-04-25T09:12:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b2c0871-b89d-4d05-9086-6cb2e35ef695", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-25T14:25:42.000Z" - }, - "end": { - "$date": "2021-04-25T16:10:40.000Z" - }, - "events": [ - { - "uuid": "e4aeed79-235f-427a-8132-eec430b0d108", - "start": { - "$date": "2021-04-25T14:25:42.000Z" - }, - "end": { - "$date": "2021-04-25T16:10:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "983b6937-f298-42ba-a176-3fcacdc19499", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T14:37:12.000Z" - }, - "end": { - "$date": "2021-04-25T14:41:06.000Z" - }, - "events": [ - { - "uuid": "030a7d27-538e-4d6a-9a68-26fbd7a66990", - "start": { - "$date": "2021-04-25T14:37:12.000Z" - }, - "end": { - "$date": "2021-04-25T14:41:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a4672658-006e-4070-8c27-87b0b8f89054", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T15:11:15.000Z" - }, - "end": { - "$date": "2021-04-25T16:20:53.000Z" - }, - "events": [ - { - "uuid": "7e8e020e-fbb3-4b06-9ae4-1b1615b7730b", - "start": { - "$date": "2021-04-25T15:11:15.000Z" - }, - "end": { - "$date": "2021-04-25T16:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", - "uuid": "22e83694-9c0b-4ab9-ab49-5889cf57a7e9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-25T15:19:57.000Z" - }, - "end": { - "$date": "2021-04-25T15:32:06.000Z" - }, - "events": [ - { - "uuid": "ba28c9c4-55e7-48d6-967c-083d0a2d5b47", - "start": { - "$date": "2021-04-25T15:19:57.000Z" - }, - "end": { - "$date": "2021-04-25T15:32:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "131b0480-7619-4be5-873b-d234e4439871", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T17:08:06.000Z" - }, - "end": { - "$date": "2021-04-25T17:24:11.000Z" - }, - "events": [ - { - "uuid": "d8c3b7b5-788e-457a-b46a-75dac030768d", - "start": { - "$date": "2021-04-25T17:08:06.000Z" - }, - "end": { - "$date": "2021-04-25T17:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "50965c0a-6cc0-4c0d-901b-b3ffdb78c60c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T16:33:30.000Z" - }, - "end": { - "$date": "2021-04-25T17:05:00.000Z" - }, - "events": [ - { - "uuid": "76bded15-d4cb-4aa5-b7d8-c5ca010cc7bf", - "start": { - "$date": "2021-04-25T16:33:30.000Z" - }, - "end": { - "$date": "2021-04-25T17:05:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "117aa98c-a577-4bc6-a731-c56f4d42f680", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-25T16:41:10.000Z" - }, - "end": { - "$date": "2021-04-25T18:45:24.000Z" - }, - "events": [ - { - "uuid": "be8920f1-5e12-4545-b311-842866af5c3e", - "start": { - "$date": "2021-04-25T16:41:10.000Z" - }, - "end": { - "$date": "2021-04-25T18:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7ae9f087-df46-4086-996a-cb8741daba2f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T17:00:29.000Z" - }, - "end": { - "$date": "2021-04-25T17:25:25.000Z" - }, - "events": [ - { - "uuid": "ede6a3c4-16a2-4c44-add4-a4134569eccd", - "start": { - "$date": "2021-04-25T17:00:29.000Z" - }, - "end": { - "$date": "2021-04-25T17:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "215961cb-870c-454c-af36-3fff2bfd61f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T17:38:40.000Z" - }, - "end": { - "$date": "2021-04-25T17:54:00.000Z" - }, - "events": [ - { - "uuid": "6b80283c-7742-475a-b0f2-aeae5d1abc3c", - "start": { - "$date": "2021-04-25T17:38:40.000Z" - }, - "end": { - "$date": "2021-04-25T17:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb0b2656-8ac2-4952-94b8-a13621204081", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-25T17:54:06.000Z" - }, - "end": { - "$date": "2021-04-25T20:58:20.000Z" - }, - "events": [ - { - "uuid": "29d46a39-7777-46fa-b1a6-5fa862efaafb", - "start": { - "$date": "2021-04-25T17:54:06.000Z" - }, - "end": { - "$date": "2021-04-25T20:54:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe04b367-fdee-4a35-9418-481f56d1eafa", - "start": { - "$date": "2021-04-25T20:54:06.000Z" - }, - "end": { - "$date": "2021-04-25T20:56:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "caebe5bb-40c8-453f-9cde-88f2a148fa1b", - "start": { - "$date": "2021-04-25T20:56:06.000Z" - }, - "end": { - "$date": "2021-04-25T20:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d9bf1dbc-50b1-450f-a130-5c8a0735058d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-25T18:42:14.000Z" - }, - "end": { - "$date": "2021-04-25T18:46:25.000Z" - }, - "events": [ - { - "uuid": "0f57cfe2-8b2e-4e98-878c-1a443374b1d2", - "start": { - "$date": "2021-04-25T18:42:14.000Z" - }, - "end": { - "$date": "2021-04-25T18:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f7fb323-b3c2-4331-ab5d-3571bb6ef701", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T19:13:14.000Z" - }, - "end": { - "$date": "2021-04-25T19:18:41.000Z" - }, - "events": [ - { - "uuid": "c28cb301-aab1-42c2-92e3-33f35830a87b", - "start": { - "$date": "2021-04-25T19:13:14.000Z" - }, - "end": { - "$date": "2021-04-25T19:18:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "77cad82e-6bd8-45a4-9f38-5c688535fd96", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T19:18:58.000Z" - }, - "end": { - "$date": "2021-04-25T20:33:17.000Z" - }, - "events": [ - { - "uuid": "a733226f-b06f-46a5-a411-92165de72ee5", - "start": { - "$date": "2021-04-25T19:18:58.000Z" - }, - "end": { - "$date": "2021-04-25T20:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9491e69f-d2de-47a6-b6f5-a9ae85f07a6e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T19:31:12.000Z" - }, - "end": { - "$date": "2021-04-25T20:48:45.000Z" - }, - "events": [ - { - "uuid": "a34a55cd-dc46-4999-ab83-eed711275241", - "start": { - "$date": "2021-04-25T19:31:12.000Z" - }, - "end": { - "$date": "2021-04-25T20:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "010dfdd8-21a1-472f-a823-b8bfa6807ccd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-25T20:21:58.000Z" - }, - "end": { - "$date": "2021-04-25T20:32:09.000Z" - }, - "events": [ - { - "uuid": "ea974553-9126-412d-98a6-a8cbf44e3b55", - "start": { - "$date": "2021-04-25T20:21:58.000Z" - }, - "end": { - "$date": "2021-04-25T20:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39026743-e940-4c60-bc07-b5749fe0e6dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T20:49:59.000Z" - }, - "end": { - "$date": "2021-04-25T21:24:23.000Z" - }, - "events": [ - { - "uuid": "c0842831-494d-4825-a03b-ab1f36decb62", - "start": { - "$date": "2021-04-25T20:49:59.000Z" - }, - "end": { - "$date": "2021-04-25T21:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cb853d4-06ad-4c5d-b108-9f3e2d2c6b15", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T21:30:16.000Z" - }, - "end": { - "$date": "2021-04-25T22:01:59.000Z" - }, - "events": [ - { - "uuid": "f491ebde-0dfe-4543-bfda-094243903fde", - "start": { - "$date": "2021-04-25T21:30:16.000Z" - }, - "end": { - "$date": "2021-04-25T22:01:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d20e3db-7ff6-4c0e-a950-2243be42a826", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T21:30:16.000Z" - }, - "end": { - "$date": "2021-04-25T22:02:23.000Z" - }, - "events": [ - { - "uuid": "9f5cb431-8fab-494b-a73e-0bb75624c34c", - "start": { - "$date": "2021-04-25T21:30:16.000Z" - }, - "end": { - "$date": "2021-04-25T22:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "321c503f-5b25-4111-9d53-b4cb4c675292", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T21:29:15.000Z" - }, - "end": { - "$date": "2021-04-25T22:01:21.000Z" - }, - "events": [ - { - "uuid": "6d1b78d2-8352-437b-8ab8-f230aff53386", - "start": { - "$date": "2021-04-25T21:29:15.000Z" - }, - "end": { - "$date": "2021-04-25T22:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bd208d98-728c-4d6e-9eed-43477891788c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T21:35:12.000Z" - }, - "end": { - "$date": "2021-04-25T21:49:26.000Z" - }, - "events": [ - { - "uuid": "9e92b095-9c56-4fdb-802d-cb504c2e52f2", - "start": { - "$date": "2021-04-25T21:35:12.000Z" - }, - "end": { - "$date": "2021-04-25T21:49:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b05e5499-c23b-4e2f-9b66-4c06f6306f5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-25T22:26:34.000Z" - }, - "end": { - "$date": "2021-04-25T22:48:53.000Z" - }, - "events": [ - { - "uuid": "0b5e4d26-c002-4823-bb9d-a4a041213b00", - "start": { - "$date": "2021-04-25T22:26:34.000Z" - }, - "end": { - "$date": "2021-04-25T22:48:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e207113c-5901-4779-8dbe-ea408546c43e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-25T22:08:28.000Z" - }, - "end": { - "$date": "2021-04-26T00:15:46.000Z" - }, - "events": [ - { - "uuid": "a5723e43-2b8d-4241-ab8f-00961f30608a", - "start": { - "$date": "2021-04-25T22:08:28.000Z" - }, - "end": { - "$date": "2021-04-26T00:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "19a78d90-871c-450e-9c18-52eb1123847f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T22:09:47.000Z" - }, - "end": { - "$date": "2021-04-25T22:10:52.000Z" - }, - "events": [ - { - "uuid": "35220c26-3564-4772-bcca-a3acd8080c9f", - "start": { - "$date": "2021-04-25T22:09:47.000Z" - }, - "end": { - "$date": "2021-04-25T22:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "925ae1ac-6798-4f06-a9ed-de8e60778771", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T22:09:55.000Z" - }, - "end": { - "$date": "2021-04-25T22:14:43.000Z" - }, - "events": [ - { - "uuid": "4e6e0eb4-aa4b-4698-b12d-086b0c30d0f7", - "start": { - "$date": "2021-04-25T22:09:55.000Z" - }, - "end": { - "$date": "2021-04-25T22:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "61c0ffa0-adbe-4240-9775-872bb43214f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-25T22:11:07.000Z" - }, - "end": { - "$date": "2021-04-26T00:14:58.000Z" - }, - "events": [ - { - "uuid": "762c2365-8676-4623-b387-a01742c6b739", - "start": { - "$date": "2021-04-25T22:11:07.000Z" - }, - "end": { - "$date": "2021-04-26T00:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "684fcdea-3af1-4a4b-8e4c-c6e9a33bb1cc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T22:19:32.000Z" - }, - "end": { - "$date": "2021-04-25T22:22:10.000Z" - }, - "events": [ - { - "uuid": "4da6780e-60f9-4372-9e24-0e9b7a1562b3", - "start": { - "$date": "2021-04-25T22:19:32.000Z" - }, - "end": { - "$date": "2021-04-25T22:22:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8dec0bf-0134-4a7c-a703-aa539717da0f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-25T22:26:35.000Z" - }, - "end": { - "$date": "2021-04-25T22:49:04.000Z" - }, - "events": [ - { - "uuid": "395e267b-4151-4724-b3c4-58ad70902160", - "start": { - "$date": "2021-04-25T22:26:35.000Z" - }, - "end": { - "$date": "2021-04-25T22:49:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5aff2db0-4258-4df1-b729-666136adeb99", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T22:22:27.000Z" - }, - "end": { - "$date": "2021-04-25T22:25:18.000Z" - }, - "events": [ - { - "uuid": "cc3aa356-01b5-49a0-b024-014107c58da3", - "start": { - "$date": "2021-04-25T22:22:27.000Z" - }, - "end": { - "$date": "2021-04-25T22:25:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c20eb8e2-14d9-43ea-9d30-5dbaeb2e4cb1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-25T22:25:28.000Z" - }, - "end": { - "$date": "2021-04-26T00:15:34.000Z" - }, - "events": [ - { - "uuid": "7422737d-0868-498d-953f-3e580012932e", - "start": { - "$date": "2021-04-25T22:25:28.000Z" - }, - "end": { - "$date": "2021-04-26T00:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e968fa17-2813-407f-bd06-d1371612bd0b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-25T23:20:12.000Z" - }, - "end": { - "$date": "2021-04-26T00:17:04.000Z" - }, - "events": [ - { - "uuid": "efb01d33-129c-4e14-aa82-a4960c756797", - "start": { - "$date": "2021-04-25T23:20:12.000Z" - }, - "end": { - "$date": "2021-04-26T00:04:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "676d4c86-395e-4859-babe-abbe93010678", - "start": { - "$date": "2021-04-26T00:04:12.000Z" - }, - "end": { - "$date": "2021-04-26T00:17:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2f922cca-79b5-4d86-8265-c27e3ea73436", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-26T03:07:26.000Z" - }, - "end": { - "$date": "2021-04-26T03:11:45.000Z" - }, - "events": [ - { - "uuid": "772e6180-3bd2-4119-8ed5-866af98c5cf6", - "start": { - "$date": "2021-04-26T03:07:26.000Z" - }, - "end": { - "$date": "2021-04-26T03:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61dadf42-2f55-4aa5-85f6-86ec072ed5b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-26T02:22:13.000Z" - }, - "end": { - "$date": "2021-04-26T03:08:22.000Z" - }, - "events": [ - { - "uuid": "61167103-e140-4ce5-b955-5bf1763ec0ee", - "start": { - "$date": "2021-04-26T02:22:13.000Z" - }, - "end": { - "$date": "2021-04-26T03:08:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee83a211-c9e4-41a2-a3fe-345a5148d83b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-26T02:25:10.000Z" - }, - "end": { - "$date": "2021-04-26T04:27:25.000Z" - }, - "events": [ - { - "uuid": "055b9bda-b91a-494c-b57f-7af31a483433", - "start": { - "$date": "2021-04-26T02:25:10.000Z" - }, - "end": { - "$date": "2021-04-26T03:13:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "32de458a-e9dc-47a5-8b0e-780b5195c568", - "start": { - "$date": "2021-04-26T03:13:10.000Z" - }, - "end": { - "$date": "2021-04-26T03:15:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80d7f094-a30f-4cf1-ac4e-2ec7d338ef0a", - "start": { - "$date": "2021-04-26T03:15:10.000Z" - }, - "end": { - "$date": "2021-04-26T03:26:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bba07c4a-74fe-43ad-85ca-4b44f8786c5f", - "start": { - "$date": "2021-04-26T03:26:10.000Z" - }, - "end": { - "$date": "2021-04-26T03:29:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f921550e-1f4e-4471-baf4-3736a5bc9868", - "start": { - "$date": "2021-04-26T03:29:10.000Z" - }, - "end": { - "$date": "2021-04-26T04:27:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18ee19bf-c90a-4927-82ee-8ea5b8eebb37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-26T03:15:41.000Z" - }, - "end": { - "$date": "2021-04-26T03:52:50.000Z" - }, - "events": [ - { - "uuid": "17d0f505-7a9c-433f-aa4b-5a698deec198", - "start": { - "$date": "2021-04-26T03:15:41.000Z" - }, - "end": { - "$date": "2021-04-26T03:52:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7d665aa-c329-464d-884e-47390ee4e29b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-26T03:15:53.000Z" - }, - "end": { - "$date": "2021-04-26T03:52:47.000Z" - }, - "events": [ - { - "uuid": "3a1af0a3-3d31-440d-956b-082be488ddf9", - "start": { - "$date": "2021-04-26T03:15:53.000Z" - }, - "end": { - "$date": "2021-04-26T03:52:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6ca8fb6b-c732-4ad7-adeb-c529a96f0d83", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-26T03:12:01.000Z" - }, - "end": { - "$date": "2021-04-26T04:26:09.000Z" - }, - "events": [ - { - "uuid": "303111b6-95f0-4f4d-a43e-92bae676ccd7", - "start": { - "$date": "2021-04-26T03:12:01.000Z" - }, - "end": { - "$date": "2021-04-26T04:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "2f48254e-2807-40ac-9e45-fa3947c86107", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-26T03:21:10.000Z" - }, - "end": { - "$date": "2021-04-26T04:30:36.000Z" - }, - "events": [ - { - "uuid": "120d0987-df37-4187-b845-d7a2b2480e54", - "start": { - "$date": "2021-04-26T03:21:10.000Z" - }, - "end": { - "$date": "2021-04-26T04:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d811940-3c7a-4e05-a4ed-1118b45acab7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-26T04:02:38.000Z" - }, - "end": { - "$date": "2021-04-26T04:26:00.000Z" - }, - "events": [ - { - "uuid": "73b002a4-8b10-4de9-bef2-23b3b2e98d60", - "start": { - "$date": "2021-04-26T04:02:38.000Z" - }, - "end": { - "$date": "2021-04-26T04:26:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaa0f521-fb57-43f8-b898-f70b29a6bf8d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-26T03:55:59.000Z" - }, - "end": { - "$date": "2021-04-26T04:01:01.000Z" - }, - "events": [ - { - "uuid": "0b62b90d-d57a-4569-a467-aa9de6ece978", - "start": { - "$date": "2021-04-26T03:55:59.000Z" - }, - "end": { - "$date": "2021-04-26T04:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5ffb0a5c-3ca3-43a5-b6b6-16297baea2ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-26T03:58:36.000Z" - }, - "end": { - "$date": "2021-04-26T06:15:05.000Z" - }, - "events": [ - { - "uuid": "77073809-dd8b-4201-b671-5bbf546c0943", - "start": { - "$date": "2021-04-26T03:58:36.000Z" - }, - "end": { - "$date": "2021-04-26T05:07:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70740179-8dde-43ce-bc67-f15b0cd1fac4", - "start": { - "$date": "2021-04-26T05:07:36.000Z" - }, - "end": { - "$date": "2021-04-26T05:17:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5690f38-66f8-490c-9d6d-e9fbde487c93", - "start": { - "$date": "2021-04-26T05:17:36.000Z" - }, - "end": { - "$date": "2021-04-26T06:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c18ff015-6467-41a9-93c3-cb2d932bc946", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-26T04:10:15.000Z" - }, - "end": { - "$date": "2021-04-26T04:25:59.000Z" - }, - "events": [ - { - "uuid": "86fc6a23-cf2c-4b7b-b2d0-efe9e063cc6e", - "start": { - "$date": "2021-04-26T04:10:15.000Z" - }, - "end": { - "$date": "2021-04-26T04:25:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2607ad83-fbfe-4644-979c-b500099c5fd0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-26T04:21:49.000Z" - }, - "end": { - "$date": "2021-04-26T05:42:59.000Z" - }, - "events": [ - { - "uuid": "d020c545-2a71-4b9c-b27c-e084e44c3107", - "start": { - "$date": "2021-04-26T04:21:49.000Z" - }, - "end": { - "$date": "2021-04-26T05:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ff007919-1b05-4541-9641-6bcb4a446fa8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-26T04:35:12.000Z" - }, - "end": { - "$date": "2021-04-26T06:00:02.000Z" - }, - "events": [ - { - "uuid": "c37fc281-32a1-42bf-b88c-3a8530bb517b", - "start": { - "$date": "2021-04-26T04:35:12.000Z" - }, - "end": { - "$date": "2021-04-26T06:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6b8d0cda-d57d-4d73-988f-7c0d3e088787", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-26T15:05:39.000Z" - }, - "end": { - "$date": "2021-04-26T16:15:14.000Z" - }, - "events": [ - { - "uuid": "d141badc-a53b-4265-aa20-e139af56a6f1", - "start": { - "$date": "2021-04-26T15:05:39.000Z" - }, - "end": { - "$date": "2021-04-26T16:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c051ebf-858a-4952-b151-5b6123424928", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-26T16:57:28.000Z" - }, - "end": { - "$date": "2021-04-26T17:24:57.000Z" - }, - "events": [ - { - "uuid": "f58179b2-8842-4c43-9a8f-377987a9b7bd", - "start": { - "$date": "2021-04-26T16:57:28.000Z" - }, - "end": { - "$date": "2021-04-26T17:24:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "35ed4060-2a6c-4464-a3a5-029aed7258bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-26T17:20:04.000Z" - }, - "end": { - "$date": "2021-04-26T18:35:13.000Z" - }, - "events": [ - { - "uuid": "b36fb4b6-d52c-4a42-b3b3-7619facba618", - "start": { - "$date": "2021-04-26T17:20:04.000Z" - }, - "end": { - "$date": "2021-04-26T18:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a31848ad-1bd2-4a1c-aa75-2b9f3a60b41f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-26T18:36:19.000Z" - }, - "end": { - "$date": "2021-04-26T19:03:10.000Z" - }, - "events": [ - { - "uuid": "8d4d73a3-1cb2-43f4-8d97-f1b415869cb3", - "start": { - "$date": "2021-04-26T18:36:19.000Z" - }, - "end": { - "$date": "2021-04-26T19:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4cdcc7b1-2e6b-4d89-b136-be0de00be76d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-26T19:04:51.000Z" - }, - "end": { - "$date": "2021-04-26T20:24:22.000Z" - }, - "events": [ - { - "uuid": "bada93dc-3944-46f5-8803-eeef780f115e", - "start": { - "$date": "2021-04-26T19:04:51.000Z" - }, - "end": { - "$date": "2021-04-26T19:50:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14f88052-be28-4d6f-a724-5de69dd43f33", - "start": { - "$date": "2021-04-26T19:50:51.000Z" - }, - "end": { - "$date": "2021-04-26T19:53:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7cc3dc7-a59d-44ba-a436-2edf6e4782e3", - "start": { - "$date": "2021-04-26T19:53:51.000Z" - }, - "end": { - "$date": "2021-04-26T20:24:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "22abf682-6fde-4065-a84b-05b0dbc1da6c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-26T19:18:11.000Z" - }, - "end": { - "$date": "2021-04-26T22:04:21.000Z" - }, - "events": [ - { - "uuid": "6e17eafd-017d-47ca-b31e-fbf2c71448e3", - "start": { - "$date": "2021-04-26T19:18:11.000Z" - }, - "end": { - "$date": "2021-04-26T22:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "43b737b9-32b9-4881-af7e-592c4d714c16", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-26T20:38:23.000Z" - }, - "end": { - "$date": "2021-04-26T20:42:06.000Z" - }, - "events": [ - { - "uuid": "6a81e876-4e31-40de-912a-83bbd8ef6ba7", - "start": { - "$date": "2021-04-26T20:38:23.000Z" - }, - "end": { - "$date": "2021-04-26T20:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7b288552-c222-437f-bcc1-58ef0f228148", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-26T20:46:09.000Z" - }, - "end": { - "$date": "2021-04-26T21:41:02.000Z" - }, - "events": [ - { - "uuid": "7116c47c-2346-4c46-b717-d3c641982250", - "start": { - "$date": "2021-04-26T20:46:09.000Z" - }, - "end": { - "$date": "2021-04-26T21:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d702f961-c27c-42ad-80a5-e6f06a82131f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-26T22:04:31.000Z" - }, - "end": { - "$date": "2021-04-26T22:43:34.000Z" - }, - "events": [ - { - "uuid": "6348099c-6c51-46e8-81dc-df8cb479cca4", - "start": { - "$date": "2021-04-26T22:04:31.000Z" - }, - "end": { - "$date": "2021-04-26T22:43:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "ce31f330-6999-417e-9245-ffdbe5d477ff", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-26T22:05:14.000Z" - }, - "end": { - "$date": "2021-04-26T22:07:20.000Z" - }, - "events": [ - { - "uuid": "1124934b-ea22-431b-8712-449ea6868598", - "start": { - "$date": "2021-04-26T22:05:14.000Z" - }, - "end": { - "$date": "2021-04-26T22:07:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "bfcf182d-3031-4aa3-b718-a0547726967d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-27T00:20:02.000Z" - }, - "end": { - "$date": "2021-04-27T00:50:47.000Z" - }, - "events": [ - { - "uuid": "14da12c8-6c50-4a05-8abd-7b6c619921e5", - "start": { - "$date": "2021-04-27T00:20:02.000Z" - }, - "end": { - "$date": "2021-04-27T00:50:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75a439db-d610-40f6-9995-08b14ee599ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T00:37:17.000Z" - }, - "end": { - "$date": "2021-04-27T01:10:06.000Z" - }, - "events": [ - { - "uuid": "ac37a9f4-25ed-402b-8f74-cb08772bbcb3", - "start": { - "$date": "2021-04-27T00:37:17.000Z" - }, - "end": { - "$date": "2021-04-27T01:10:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "9ead516b-6f90-4063-a4c2-c0cff71531d6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-27T00:25:53.000Z" - }, - "end": { - "$date": "2021-04-27T02:04:36.000Z" - }, - "events": [ - { - "uuid": "c9f9ca0e-d2aa-4091-98a4-b6f2e6f040e5", - "start": { - "$date": "2021-04-27T00:25:53.000Z" - }, - "end": { - "$date": "2021-04-27T02:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35999f77-2f7e-4bc9-aa13-cd285fec2f35", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T00:37:15.000Z" - }, - "end": { - "$date": "2021-04-27T01:10:05.000Z" - }, - "events": [ - { - "uuid": "886a6349-ab59-4b5f-80cf-454c4ae68c0f", - "start": { - "$date": "2021-04-27T00:37:15.000Z" - }, - "end": { - "$date": "2021-04-27T01:10:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "68ea7742-713f-4cc0-ac7c-0666d0b3924d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-27T00:43:28.000Z" - }, - "end": { - "$date": "2021-04-27T02:04:07.000Z" - }, - "events": [ - { - "uuid": "ee35d81a-d3e0-4a48-840b-4976d3f8b265", - "start": { - "$date": "2021-04-27T00:43:28.000Z" - }, - "end": { - "$date": "2021-04-27T02:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "07e70928-9d36-4a3b-864b-581653f84dd4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-27T00:54:44.000Z" - }, - "end": { - "$date": "2021-04-27T01:40:51.000Z" - }, - "events": [ - { - "uuid": "c38b2572-9d86-4269-b3cd-46070be411b6", - "start": { - "$date": "2021-04-27T00:54:44.000Z" - }, - "end": { - "$date": "2021-04-27T01:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "42b70e43-92e9-47c6-8908-5027dad406ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-27T01:06:23.000Z" - }, - "end": { - "$date": "2021-04-27T03:27:14.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T01:06:23.000Z" - }, - "end": { - "$date": "2021-04-27T03:27:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d97c810b-b8ab-40ea-85ef-7b3920ba0064", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-27T01:06:23.000Z" - }, - "end": { - "$date": "2021-04-27T03:27:28.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T01:06:23.000Z" - }, - "end": { - "$date": "2021-04-27T03:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e372a06d-9337-45b2-82ea-4ab1fa5842e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T01:27:42.000Z" - }, - "end": { - "$date": "2021-04-27T02:02:42.000Z" - }, - "events": [ - { - "uuid": "f80d5702-7ddc-46d5-82df-76caa1fc38e0", - "start": { - "$date": "2021-04-27T01:27:42.000Z" - }, - "end": { - "$date": "2021-04-27T02:02:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8fd0900-2108-4cf9-9ee7-440e243c2d1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T01:29:19.000Z" - }, - "end": { - "$date": "2021-04-27T02:02:36.000Z" - }, - "events": [ - { - "uuid": "f04ca26b-c827-4d18-bc42-2c5527c31801", - "start": { - "$date": "2021-04-27T01:29:19.000Z" - }, - "end": { - "$date": "2021-04-27T02:02:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5952680b-548b-4a84-b5ab-e5b414209c1f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-27T01:23:11.000Z" - }, - "end": { - "$date": "2021-04-27T01:24:36.000Z" - }, - "events": [ - { - "uuid": "8141ff64-6da6-4630-bb6d-c86d99923ded", - "start": { - "$date": "2021-04-27T01:23:11.000Z" - }, - "end": { - "$date": "2021-04-27T01:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "716dc7cd-ea93-4a77-a0a8-1e059fb14fcb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-27T01:24:47.000Z" - }, - "end": { - "$date": "2021-04-27T01:48:47.000Z" - }, - "events": [ - { - "uuid": "ac960256-d49e-4aec-ad84-08bac3df8524", - "start": { - "$date": "2021-04-27T01:24:47.000Z" - }, - "end": { - "$date": "2021-04-27T01:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0bccf696-7bb6-4a2a-85e3-6bb938656d80", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-27T01:54:28.000Z" - }, - "end": { - "$date": "2021-04-27T05:04:09.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T01:54:28.000Z" - }, - "end": { - "$date": "2021-04-27T05:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81064c2d-d879-4bf5-8ca7-592ab230ef4d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T02:09:09.000Z" - }, - "end": { - "$date": "2021-04-27T02:38:13.000Z" - }, - "events": [ - { - "uuid": "11bbecc8-1734-4589-a97e-80501d08a153", - "start": { - "$date": "2021-04-27T02:09:09.000Z" - }, - "end": { - "$date": "2021-04-27T02:38:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eb0cff60-8376-4384-b5a9-6b57dda26f9a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-27T02:03:30.000Z" - }, - "end": { - "$date": "2021-04-27T03:30:00.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T02:03:30.000Z" - }, - "end": { - "$date": "2021-04-27T03:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35a30134-4e86-40c4-8114-261d41568667", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T02:10:06.000Z" - }, - "end": { - "$date": "2021-04-27T02:38:12.000Z" - }, - "events": [ - { - "uuid": "8f26933e-828d-4c23-a17e-ecfd40e136d3", - "start": { - "$date": "2021-04-27T02:10:06.000Z" - }, - "end": { - "$date": "2021-04-27T02:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb3a2dd7-380e-4b27-8382-539d725adf6f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-27T02:05:54.000Z" - }, - "end": { - "$date": "2021-04-27T02:07:19.000Z" - }, - "events": [ - { - "uuid": "97631e69-6a46-42b4-8440-b9a5a2a8ac29", - "start": { - "$date": "2021-04-27T02:05:54.000Z" - }, - "end": { - "$date": "2021-04-27T02:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eec10587-9350-4af8-9ba9-d986afbf08bf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-27T02:07:39.000Z" - }, - "end": { - "$date": "2021-04-27T02:48:37.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T02:07:39.000Z" - }, - "end": { - "$date": "2021-04-27T02:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", - "uuid": "6aced8c1-78ba-48e9-adbe-164b450ae122", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-27T02:08:40.000Z" - }, - "end": { - "$date": "2021-04-27T04:01:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T02:08:40.000Z" - }, - "end": { - "$date": "2021-04-27T04:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57041070-addb-4d13-ad3e-3b45d19ff893", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T02:45:27.000Z" - }, - "end": { - "$date": "2021-04-27T03:08:48.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T02:45:27.000Z" - }, - "end": { - "$date": "2021-04-27T03:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ce440f6-37da-4d73-92a0-a3de5106e7e5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T02:45:23.000Z" - }, - "end": { - "$date": "2021-04-27T03:08:48.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-04-27T02:45:23.000Z" - }, - "end": { - "$date": "2021-04-27T03:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6dcabe2-e283-401e-9d39-f2d17a595b9c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T03:15:53.000Z" - }, - "end": { - "$date": "2021-04-27T03:40:41.000Z" - }, - "events": [ - { - "uuid": "94c058d5-6db4-4853-ac61-461af4284d88", - "start": { - "$date": "2021-04-27T03:15:53.000Z" - }, - "end": { - "$date": "2021-04-27T03:40:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd3b1248-4171-4922-8be0-51c5aaff00b7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T03:15:49.000Z" - }, - "end": { - "$date": "2021-04-27T03:40:43.000Z" - }, - "events": [ - { - "uuid": "703a903f-a5c0-49ae-b6a3-7a4abdb58a34", - "start": { - "$date": "2021-04-27T03:15:49.000Z" - }, - "end": { - "$date": "2021-04-27T03:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5bc75ada-25fb-4639-b811-4340a6ef933d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-27T03:24:03.000Z" - }, - "end": { - "$date": "2021-04-27T03:35:19.000Z" - }, - "events": [ - { - "uuid": "82621acb-43e0-4bce-87c0-d42d1f6a9017", - "start": { - "$date": "2021-04-27T03:24:03.000Z" - }, - "end": { - "$date": "2021-04-27T03:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "829e8758-111b-407b-b53b-90ae8962eb90", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T03:45:15.000Z" - }, - "end": { - "$date": "2021-04-27T04:04:11.000Z" - }, - "events": [ - { - "uuid": "6b002514-f226-47c9-9b55-edf58204ee6e", - "start": { - "$date": "2021-04-27T03:45:15.000Z" - }, - "end": { - "$date": "2021-04-27T04:04:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fe1e7fe-2135-4c49-ab1b-006a2585cb35", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T03:45:11.000Z" - }, - "end": { - "$date": "2021-04-27T04:04:12.000Z" - }, - "events": [ - { - "uuid": "1ef1a7dd-4ed1-4e96-9f17-02acfa70b01c", - "start": { - "$date": "2021-04-27T03:45:11.000Z" - }, - "end": { - "$date": "2021-04-27T04:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a6fef1a3-20ba-4a9e-b081-ed0bbb8d0ee0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-27T04:11:43.000Z" - }, - "end": { - "$date": "2021-04-27T05:02:44.000Z" - }, - "events": [ - { - "uuid": "1bb04989-62fc-4b3a-b47e-c3321c52be7e", - "start": { - "$date": "2021-04-27T04:11:43.000Z" - }, - "end": { - "$date": "2021-04-27T05:02:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbb6be18-cf6a-4507-9b08-69b2f71b93c7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-27T04:36:48.000Z" - }, - "end": { - "$date": "2021-04-27T05:10:18.000Z" - }, - "events": [ - { - "uuid": "5db7e93d-b457-4e93-b237-59f6a50313e5", - "start": { - "$date": "2021-04-27T04:36:48.000Z" - }, - "end": { - "$date": "2021-04-27T05:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cf47a55f-c0c4-4369-980f-3b56a415c7ba", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-27T05:03:04.000Z" - }, - "end": { - "$date": "2021-04-27T05:22:05.000Z" - }, - "events": [ - { - "uuid": "d5a86f51-4c99-48f2-8f2a-5306cbea483c", - "start": { - "$date": "2021-04-27T05:03:04.000Z" - }, - "end": { - "$date": "2021-04-27T05:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "38f65cbf-2c0e-4db3-823c-7e0b65460bbf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-27T05:22:41.000Z" - }, - "end": { - "$date": "2021-04-27T05:56:29.000Z" - }, - "events": [ - { - "uuid": "c4a0a7e9-7afd-445f-a469-49e49f985d58", - "start": { - "$date": "2021-04-27T05:22:41.000Z" - }, - "end": { - "$date": "2021-04-27T05:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d170cbdb-1e87-4220-830e-022143a37689", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-27T05:27:46.000Z" - }, - "end": { - "$date": "2021-04-27T05:44:07.000Z" - }, - "events": [ - { - "uuid": "c8597afb-d57f-41ce-8e5d-c27606543819", - "start": { - "$date": "2021-04-27T05:27:46.000Z" - }, - "end": { - "$date": "2021-04-27T05:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7429c90b-2f85-44a0-88f2-e630b76ac4c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T05:34:42.000Z" - }, - "end": { - "$date": "2021-04-27T06:06:42.000Z" - }, - "events": [ - { - "uuid": "7b4e2118-ba76-4aae-b5fb-178847169259", - "start": { - "$date": "2021-04-27T05:34:42.000Z" - }, - "end": { - "$date": "2021-04-27T06:06:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4eb23b1b-d35b-4287-9321-8c8462fa4921", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T06:13:07.000Z" - }, - "end": { - "$date": "2021-04-27T06:51:09.000Z" - }, - "events": [ - { - "uuid": "8c7bbdf6-72e2-49b4-92c8-5efe5c676023", - "start": { - "$date": "2021-04-27T06:13:07.000Z" - }, - "end": { - "$date": "2021-04-27T06:51:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c38b8f78-a97e-4f02-b200-3df95ee6ab4e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-27T06:26:49.000Z" - }, - "end": { - "$date": "2021-04-27T07:02:20.000Z" - }, - "events": [ - { - "uuid": "320aadf8-2a30-4395-9c79-d2b9605ee2af", - "start": { - "$date": "2021-04-27T06:26:49.000Z" - }, - "end": { - "$date": "2021-04-27T07:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "96334fe8-b278-4bbb-a5d6-cfe57c6171ba", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-27T15:32:33.000Z" - }, - "end": { - "$date": "2021-04-27T19:17:02.000Z" - }, - "events": [ - { - "uuid": "00537ffd-62a1-452e-bbce-0974cdb9f667", - "start": { - "$date": "2021-04-27T15:32:33.000Z" - }, - "end": { - "$date": "2021-04-27T19:17:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4edd5bce-c97a-49d6-bc33-50d91ea07b4f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T18:54:34.000Z" - }, - "end": { - "$date": "2021-04-27T18:56:08.000Z" - }, - "events": [ - { - "uuid": "33c1d26c-7cba-4551-8fc9-3952407a2ca1", - "start": { - "$date": "2021-04-27T18:54:34.000Z" - }, - "end": { - "$date": "2021-04-27T18:56:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "866eb4b0-0aec-42c3-b03e-100162b540ea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-27T19:13:21.000Z" - }, - "end": { - "$date": "2021-04-27T19:15:17.000Z" - }, - "events": [ - { - "uuid": "620d42f8-3527-46c1-9729-5c207f9304ee", - "start": { - "$date": "2021-04-27T19:13:21.000Z" - }, - "end": { - "$date": "2021-04-27T19:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0eb9884f-aaa3-40c2-9a89-8eb2b8229e89", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-27T19:42:41.000Z" - }, - "end": { - "$date": "2021-04-27T19:47:07.000Z" - }, - "events": [ - { - "uuid": "9159a7fc-d597-4ec4-a430-3ff4833425f9", - "start": { - "$date": "2021-04-27T19:42:41.000Z" - }, - "end": { - "$date": "2021-04-27T19:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ee6f8586-659c-482b-8ee8-27978bef7124", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-27T20:14:27.000Z" - }, - "end": { - "$date": "2021-04-27T20:51:16.000Z" - }, - "events": [ - { - "uuid": "13b05b24-3a21-4a10-acf8-b5dd97c24ac1", - "start": { - "$date": "2021-04-27T20:14:27.000Z" - }, - "end": { - "$date": "2021-04-27T20:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7f705bd7-53b9-4383-a9a7-19265cfbece6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-27T21:17:19.000Z" - }, - "end": { - "$date": "2021-04-27T21:42:23.000Z" - }, - "events": [ - { - "uuid": "762123b4-877f-420d-9e65-b7da9612524d", - "start": { - "$date": "2021-04-27T21:17:19.000Z" - }, - "end": { - "$date": "2021-04-27T21:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ab87de6-1266-42b9-afa7-9ab08e1993d3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-27T21:35:54.000Z" - }, - "end": { - "$date": "2021-04-28T00:12:27.000Z" - }, - "events": [ - { - "uuid": "06dbba46-52b7-4e59-8f5f-e362f3428d42", - "start": { - "$date": "2021-04-27T21:35:54.000Z" - }, - "end": { - "$date": "2021-04-28T00:12:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", - "uuid": "1c767090-67f6-4e33-9224-d2f28f0aea07", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-27T21:43:26.000Z" - }, - "end": { - "$date": "2021-04-27T22:21:42.000Z" - }, - "events": [ - { - "uuid": "719a7269-1d3f-4adc-ab7c-f56189f380f4", - "start": { - "$date": "2021-04-27T21:43:26.000Z" - }, - "end": { - "$date": "2021-04-27T22:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "742c9a02-8d93-43e1-8cb4-afdd9c217922", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-27T22:44:40.000Z" - }, - "end": { - "$date": "2021-04-27T22:48:44.000Z" - }, - "events": [ - { - "uuid": "ae5a0bad-62cb-4a31-b121-8844bc6e6816", - "start": { - "$date": "2021-04-27T22:44:40.000Z" - }, - "end": { - "$date": "2021-04-27T22:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "736f76d4-606e-4027-829f-d77954bed951", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-27T22:47:23.000Z" - }, - "end": { - "$date": "2021-04-27T22:50:03.000Z" - }, - "events": [ - { - "uuid": "c6b86644-7574-454a-b4df-045e4f40d9cf", - "start": { - "$date": "2021-04-27T22:47:23.000Z" - }, - "end": { - "$date": "2021-04-27T22:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28569f20-1b06-4eb1-a152-e860fe1f9572", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T22:53:20.000Z" - }, - "end": { - "$date": "2021-04-27T23:25:16.000Z" - }, - "events": [ - { - "uuid": "8012058b-1084-4bcb-9ff1-a483c231a8a7", - "start": { - "$date": "2021-04-27T22:53:20.000Z" - }, - "end": { - "$date": "2021-04-27T23:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e442edcf-c0cf-4845-a61a-eb2e71af6bc6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-27T23:25:12.000Z" - }, - "end": { - "$date": "2021-04-27T23:27:34.000Z" - }, - "events": [ - { - "uuid": "ac30e725-e183-4ad0-a15e-beaa385ebd90", - "start": { - "$date": "2021-04-27T23:25:12.000Z" - }, - "end": { - "$date": "2021-04-27T23:27:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e13845e-466c-4999-9b30-3971362b392e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T23:29:15.000Z" - }, - "end": { - "$date": "2021-04-27T23:55:12.000Z" - }, - "events": [ - { - "uuid": "779da91e-5f3a-45fb-bf2f-17af64f7d291", - "start": { - "$date": "2021-04-27T23:29:15.000Z" - }, - "end": { - "$date": "2021-04-27T23:55:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ba406e6-9d41-4c74-aff2-c7c13cfaa568", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-27T23:55:10.000Z" - }, - "end": { - "$date": "2021-04-27T23:55:31.000Z" - }, - "events": [ - { - "uuid": "9e1542f2-6554-4de6-9764-bb37c7b0197e", - "start": { - "$date": "2021-04-27T23:55:10.000Z" - }, - "end": { - "$date": "2021-04-27T23:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09ac3775-e45d-49fc-b959-7cdb54caaae5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-27T23:56:10.000Z" - }, - "end": { - "$date": "2021-04-27T23:58:29.000Z" - }, - "events": [ - { - "uuid": "fd7fece3-cdf2-47c2-8900-4b4d94e55b54", - "start": { - "$date": "2021-04-27T23:56:10.000Z" - }, - "end": { - "$date": "2021-04-27T23:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6aa2136a-f5d2-4ec1-8442-ae60cd41760e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-28T00:00:08.000Z" - }, - "end": { - "$date": "2021-04-28T00:19:11.000Z" - }, - "events": [ - { - "uuid": "ed104f38-6bd8-42dd-8c0d-c16d6377420b", - "start": { - "$date": "2021-04-28T00:00:08.000Z" - }, - "end": { - "$date": "2021-04-28T00:19:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eabaad1b-cc88-45d5-8405-8afa1da8deb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T00:00:17.000Z" - }, - "end": { - "$date": "2021-04-28T00:19:14.000Z" - }, - "events": [ - { - "uuid": "44c3a2a2-022b-4177-9983-7f21893ce89d", - "start": { - "$date": "2021-04-28T00:00:17.000Z" - }, - "end": { - "$date": "2021-04-28T00:19:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1faf7628-78d9-4206-b55b-54918e451dca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-28T00:00:33.000Z" - }, - "end": { - "$date": "2021-04-28T00:33:34.000Z" - }, - "events": [ - { - "uuid": "ca539300-e225-432d-9147-f9d5e1d9cf8b", - "start": { - "$date": "2021-04-28T00:00:33.000Z" - }, - "end": { - "$date": "2021-04-28T00:33:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b34b9f1b-73fe-477e-bfaf-080d6eefb4ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T00:24:10.000Z" - }, - "end": { - "$date": "2021-04-28T00:40:01.000Z" - }, - "events": [ - { - "uuid": "0e039562-b976-481e-9ed6-a30682df1490", - "start": { - "$date": "2021-04-28T00:24:10.000Z" - }, - "end": { - "$date": "2021-04-28T00:40:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20039d8f-d263-462d-849b-46537ddc539d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-28T00:20:57.000Z" - }, - "end": { - "$date": "2021-04-28T00:21:12.000Z" - }, - "events": [ - { - "uuid": "8de3a2f3-184c-40ee-b38c-18f6c3223870", - "start": { - "$date": "2021-04-28T00:20:57.000Z" - }, - "end": { - "$date": "2021-04-28T00:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "885f6b5f-25b0-44de-8e28-6cacf1ba7908", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T00:20:55.000Z" - }, - "end": { - "$date": "2021-04-28T00:21:13.000Z" - }, - "events": [ - { - "uuid": "81f1f291-f337-48e0-8eb2-2898fc347634", - "start": { - "$date": "2021-04-28T00:20:55.000Z" - }, - "end": { - "$date": "2021-04-28T00:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44f6ea7a-a910-4e75-b8f3-edeca91b61e2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T00:24:05.000Z" - }, - "end": { - "$date": "2021-04-28T00:39:53.000Z" - }, - "events": [ - { - "uuid": "5f2b0a8c-6654-4222-b51c-7fe7950dab6c", - "start": { - "$date": "2021-04-28T00:24:05.000Z" - }, - "end": { - "$date": "2021-04-28T00:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6311353e-7bcb-4d69-8ba7-9fcb3048ba20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-28T00:24:44.000Z" - }, - "end": { - "$date": "2021-04-28T00:40:00.000Z" - }, - "events": [ - { - "uuid": "19d1c18e-3ee7-4128-ab32-54019d0a24c8", - "start": { - "$date": "2021-04-28T00:24:44.000Z" - }, - "end": { - "$date": "2021-04-28T00:40:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "834898be-450d-45b7-aedd-91baf59b2047", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T00:43:19.000Z" - }, - "end": { - "$date": "2021-04-28T01:03:08.000Z" - }, - "events": [ - { - "uuid": "fd32b93d-b714-411f-a420-12cd7519a49c", - "start": { - "$date": "2021-04-28T00:43:19.000Z" - }, - "end": { - "$date": "2021-04-28T01:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed205767-5d6e-482d-8805-2c4e11912276", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-28T00:43:55.000Z" - }, - "end": { - "$date": "2021-04-28T01:03:01.000Z" - }, - "events": [ - { - "uuid": "428a07ac-b770-40c3-b28f-1194d6bcc651", - "start": { - "$date": "2021-04-28T00:43:55.000Z" - }, - "end": { - "$date": "2021-04-28T01:03:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72265cd8-6af9-40ed-8fca-5714542aaae9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T00:44:21.000Z" - }, - "end": { - "$date": "2021-04-28T01:03:00.000Z" - }, - "events": [ - { - "uuid": "d59fc418-2831-4794-a0aa-52624646f263", - "start": { - "$date": "2021-04-28T00:44:21.000Z" - }, - "end": { - "$date": "2021-04-28T01:03:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7ae4d69f-19dc-47e3-8d22-b1fa0f24df0a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-28T01:15:37.000Z" - }, - "end": { - "$date": "2021-04-28T01:31:16.000Z" - }, - "events": [ - { - "uuid": "7092cd3b-4cac-42f5-abc8-cbed7f7eb72d", - "start": { - "$date": "2021-04-28T01:15:37.000Z" - }, - "end": { - "$date": "2021-04-28T01:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "0e638f70-de4d-4679-923b-96ce6a142750", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-04-28T01:16:50.000Z" - }, - "end": { - "$date": "2021-04-28T02:59:59.000Z" - }, - "events": [ - { - "uuid": "35fd7e51-c3a1-48fb-9573-452ce23de16d", - "start": { - "$date": "2021-04-28T01:16:50.000Z" - }, - "end": { - "$date": "2021-04-28T02:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "98a18312-f05b-42b6-b904-00ed61700890", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-28T01:37:57.000Z" - }, - "end": { - "$date": "2021-04-28T04:39:37.000Z" - }, - "events": [ - { - "uuid": "97bab2f8-7942-41f3-8be0-05fca919a194", - "start": { - "$date": "2021-04-28T01:37:57.000Z" - }, - "end": { - "$date": "2021-04-28T04:39:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6853250c-ea8d-49d6-bf68-5ba77ea3a01a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-28T01:38:37.000Z" - }, - "end": { - "$date": "2021-04-28T04:39:08.000Z" - }, - "events": [ - { - "uuid": "9b4f31a1-ad9b-44c9-b848-e514da573350", - "start": { - "$date": "2021-04-28T01:38:37.000Z" - }, - "end": { - "$date": "2021-04-28T04:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "11ec11c0-f6a0-4a73-8582-34a277a39bdb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-28T04:45:28.000Z" - }, - "end": { - "$date": "2021-04-28T07:26:03.000Z" - }, - "events": [ - { - "uuid": "f45da7c5-6b1c-4d45-a733-8d109822ea5c", - "start": { - "$date": "2021-04-28T04:45:28.000Z" - }, - "end": { - "$date": "2021-04-28T07:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dfb88f68-349f-4b9a-85fd-c1b90403b298", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T01:43:15.000Z" - }, - "end": { - "$date": "2021-04-28T01:54:29.000Z" - }, - "events": [ - { - "uuid": "21c44122-516d-4f88-82fc-2d16fba4c45b", - "start": { - "$date": "2021-04-28T01:43:15.000Z" - }, - "end": { - "$date": "2021-04-28T01:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a17f74d4-baa1-4a85-b7a7-609aa2dc9baf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-28T01:46:55.000Z" - }, - "end": { - "$date": "2021-04-28T02:04:27.000Z" - }, - "events": [ - { - "uuid": "e0cbb43c-91d5-4eca-80c3-a41989faba95", - "start": { - "$date": "2021-04-28T01:46:55.000Z" - }, - "end": { - "$date": "2021-04-28T02:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "1b4a3a17-75b7-49cd-847c-54c95de5386c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-28T02:05:27.000Z" - }, - "end": { - "$date": "2021-04-28T02:06:47.000Z" - }, - "events": [ - { - "uuid": "c87599df-b44a-4cff-9691-e359b969fb72", - "start": { - "$date": "2021-04-28T02:05:27.000Z" - }, - "end": { - "$date": "2021-04-28T02:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "d3047a40-1bef-4f4d-8c1d-b183dfe9f3d8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-28T02:06:58.000Z" - }, - "end": { - "$date": "2021-04-28T02:36:05.000Z" - }, - "events": [ - { - "uuid": "07016d2e-5253-4902-81a6-e26191871b56", - "start": { - "$date": "2021-04-28T02:06:58.000Z" - }, - "end": { - "$date": "2021-04-28T02:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "a3103a1a-d4bb-452a-8044-eeabce9a0489", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-28T02:36:25.000Z" - }, - "end": { - "$date": "2021-04-28T02:44:00.000Z" - }, - "events": [ - { - "uuid": "204aca6a-b18c-4e50-98a7-290d929f544f", - "start": { - "$date": "2021-04-28T02:36:25.000Z" - }, - "end": { - "$date": "2021-04-28T02:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "2a6c8721-073a-4e40-a4f5-202e327f7841", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-28T02:40:08.000Z" - }, - "end": { - "$date": "2021-04-28T05:37:40.000Z" - }, - "events": [ - { - "uuid": "ee489f29-f969-4d1c-b74a-ee41693bf56a", - "start": { - "$date": "2021-04-28T02:40:08.000Z" - }, - "end": { - "$date": "2021-04-28T03:19:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d50fe6bd-180d-4885-bbc4-cb7d0024a88d", - "start": { - "$date": "2021-04-28T03:19:08.000Z" - }, - "end": { - "$date": "2021-04-28T03:24:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5dbbe544-c884-4148-a1cf-47ffe53176c4", - "start": { - "$date": "2021-04-28T03:24:08.000Z" - }, - "end": { - "$date": "2021-04-28T03:34:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "733513c0-3d01-44c8-ab61-f53e23cb02de", - "start": { - "$date": "2021-04-28T03:34:08.000Z" - }, - "end": { - "$date": "2021-04-28T03:50:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "175d7c39-6edf-4b17-9b63-feae4c29198f", - "start": { - "$date": "2021-04-28T03:50:08.000Z" - }, - "end": { - "$date": "2021-04-28T04:00:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "656c3ad1-3ca7-41c6-b545-dd37c8f5b1d9", - "start": { - "$date": "2021-04-28T04:00:08.000Z" - }, - "end": { - "$date": "2021-04-28T04:20:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f2edc751-6db5-4060-87c9-1a25cac9da14", - "start": { - "$date": "2021-04-28T04:20:08.000Z" - }, - "end": { - "$date": "2021-04-28T04:53:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c179d6fe-33b7-4017-a6e3-3eb102a8c4b1", - "start": { - "$date": "2021-04-28T04:53:08.000Z" - }, - "end": { - "$date": "2021-04-28T05:11:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bbe5b743-2789-4ad4-b9b5-61ba597d1ea3", - "start": { - "$date": "2021-04-28T05:11:08.000Z" - }, - "end": { - "$date": "2021-04-28T05:37:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c9f66a0-6e3b-4c0b-b395-c846ce89d592", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-28T03:33:38.000Z" - }, - "end": { - "$date": "2021-04-28T03:47:10.000Z" - }, - "events": [ - { - "uuid": "76e7d4d8-bd5d-4ebd-9a53-a17932216e41", - "start": { - "$date": "2021-04-28T03:33:38.000Z" - }, - "end": { - "$date": "2021-04-28T04:01:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f9c5138-bb21-43f8-bf81-6cbd22c58838", - "start": { - "$date": "2021-04-28T04:01:38.000Z" - }, - "end": { - "$date": "2021-04-28T04:06:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6222eacb-c061-4771-a7d4-31294846dbb7", - "start": { - "$date": "2021-04-28T04:06:38.000Z" - }, - "end": { - "$date": "2021-04-28T04:16:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64e5a3c4-4595-4765-a1b7-4a91a8f1d862", - "start": { - "$date": "2021-04-28T04:16:38.000Z" - }, - "end": { - "$date": "2021-04-28T03:47:10.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5a83142-bb82-4756-b804-be904862769a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-28T03:52:16.000Z" - }, - "end": { - "$date": "2021-04-28T04:09:52.000Z" - }, - "events": [ - { - "uuid": "ae86d53a-20bc-4d12-8671-fe0e4396017f", - "start": { - "$date": "2021-04-28T03:52:16.000Z" - }, - "end": { - "$date": "2021-04-28T04:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4aab2b95-59ec-4e98-a1fc-c45138562d3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-28T03:47:15.000Z" - }, - "end": { - "$date": "2021-04-28T06:02:24.000Z" - }, - "events": [ - { - "uuid": "7c874d8c-b42d-408e-a2ce-8e75daf2c21e", - "start": { - "$date": "2021-04-28T03:47:15.000Z" - }, - "end": { - "$date": "2021-04-28T06:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b2df783-74b0-4ef1-9a7b-9e05db3bece2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-28T04:12:56.000Z" - }, - "end": { - "$date": "2021-04-28T04:32:39.000Z" - }, - "events": [ - { - "uuid": "2a81af39-2577-4405-9c5f-b8c73347eaf8", - "start": { - "$date": "2021-04-28T04:12:56.000Z" - }, - "end": { - "$date": "2021-04-28T04:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a99be53-eea2-4bee-abfe-ab73cc8e79e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-28T04:36:47.000Z" - }, - "end": { - "$date": "2021-04-28T04:54:23.000Z" - }, - "events": [ - { - "uuid": "6f4d4236-da94-4a4c-92b4-e1b4a9e5b202", - "start": { - "$date": "2021-04-28T04:36:47.000Z" - }, - "end": { - "$date": "2021-04-28T04:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1055798-ca88-454a-adbe-695ff8dc33f2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-28T04:55:44.000Z" - }, - "end": { - "$date": "2021-04-28T04:59:01.000Z" - }, - "events": [ - { - "uuid": "a622ac85-6a3c-4b79-aabe-9588b9a75b86", - "start": { - "$date": "2021-04-28T04:55:44.000Z" - }, - "end": { - "$date": "2021-04-28T04:59:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a48934c1-982f-4543-a42e-c5c2e73b8356", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-28T05:02:48.000Z" - }, - "end": { - "$date": "2021-04-28T05:40:04.000Z" - }, - "events": [ - { - "uuid": "2a987b96-86d9-46df-ba73-5d195be90f76", - "start": { - "$date": "2021-04-28T05:02:48.000Z" - }, - "end": { - "$date": "2021-04-28T05:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "46498231-5684-4b05-8896-709a92f508d7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-04-28T05:02:39.000Z" - }, - "end": { - "$date": "2021-04-28T05:03:45.000Z" - }, - "events": [ - { - "uuid": "a648a3b2-8e4b-472f-a968-46a445427521", - "start": { - "$date": "2021-04-28T05:02:39.000Z" - }, - "end": { - "$date": "2021-04-28T05:03:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "62da7a94-69f0-48f0-99b5-92b84b0120a7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-28T05:28:37.000Z" - }, - "end": { - "$date": "2021-04-28T08:27:37.000Z" - }, - "events": [ - { - "uuid": "a0651b23-c117-4d31-8e17-d8c68ffd3ab1", - "start": { - "$date": "2021-04-28T05:28:37.000Z" - }, - "end": { - "$date": "2021-04-28T08:27:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "3b686485-85dc-45d1-8ccb-94a9869e0e4b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-28T15:50:03.000Z" - }, - "end": { - "$date": "2021-04-28T20:42:10.000Z" - }, - "events": [ - { - "uuid": "e0db9e1b-a956-4c6d-95ad-ae10691b2605", - "start": { - "$date": "2021-04-28T15:50:03.000Z" - }, - "end": { - "$date": "2021-04-28T20:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbc87161-8340-4807-9f26-813c8ccc8c5e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T16:12:07.000Z" - }, - "end": { - "$date": "2021-04-28T16:39:19.000Z" - }, - "events": [ - { - "uuid": "169955c3-6e64-48d7-977b-954634c961ae", - "start": { - "$date": "2021-04-28T16:12:07.000Z" - }, - "end": { - "$date": "2021-04-28T16:39:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4e6375b4-7b45-4a36-bfb1-3b2e3cf6e9d6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-28T16:22:48.000Z" - }, - "end": { - "$date": "2021-04-28T17:04:56.000Z" - }, - "events": [ - { - "uuid": "fae2b5a2-a57f-4787-8dbb-74841c3c1d8e", - "start": { - "$date": "2021-04-28T16:22:48.000Z" - }, - "end": { - "$date": "2021-04-28T17:04:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e82ed354-0a9b-4537-b715-74a0bb596471", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T16:44:21.000Z" - }, - "end": { - "$date": "2021-04-28T17:14:43.000Z" - }, - "events": [ - { - "uuid": "f24536cd-ad79-47db-832d-c15ecbaa1a65", - "start": { - "$date": "2021-04-28T16:44:21.000Z" - }, - "end": { - "$date": "2021-04-28T17:14:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6c5a7382-9346-40e1-b11d-f977db003256", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-28T18:45:27.000Z" - }, - "end": { - "$date": "2021-04-28T21:38:41.000Z" - }, - "events": [ - { - "uuid": "cc6a8086-8687-4f5c-ae8c-7a6bd397eed5", - "start": { - "$date": "2021-04-28T18:45:27.000Z" - }, - "end": { - "$date": "2021-04-28T18:56:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9020226-eee4-4e27-ba27-b6c1341b67dc", - "start": { - "$date": "2021-04-28T18:56:27.000Z" - }, - "end": { - "$date": "2021-04-28T19:04:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e195af8-118b-42ea-a4bd-772d5d97cfdf", - "start": { - "$date": "2021-04-28T19:04:27.000Z" - }, - "end": { - "$date": "2021-04-28T21:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68664197-2367-4adc-86c4-8caa4076e8a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T20:03:43.000Z" - }, - "end": { - "$date": "2021-04-28T20:32:06.000Z" - }, - "events": [ - { - "uuid": "92dddeeb-dc7b-46fa-9afb-fc4c0f840f63", - "start": { - "$date": "2021-04-28T20:03:43.000Z" - }, - "end": { - "$date": "2021-04-28T20:32:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "912d2b00-bcd8-40ad-b517-058723f64bf6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-28T20:12:47.000Z" - }, - "end": { - "$date": "2021-04-28T22:47:47.000Z" - }, - "events": [ - { - "uuid": "992307df-6825-4ef2-97bb-319efe2d765c", - "start": { - "$date": "2021-04-28T20:12:47.000Z" - }, - "end": { - "$date": "2021-04-28T22:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "33a96c12-6dd0-4626-9563-ab3d6bc09d72", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-28T20:42:21.000Z" - }, - "end": { - "$date": "2021-04-28T22:37:05.000Z" - }, - "events": [ - { - "uuid": "a508c390-fca1-4a8a-9829-51c98d1c4164", - "start": { - "$date": "2021-04-28T20:42:21.000Z" - }, - "end": { - "$date": "2021-04-28T22:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ea18f95c-255d-421d-8234-0dc6c3f72c51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-28T21:08:11.000Z" - }, - "end": { - "$date": "2021-04-28T21:52:21.000Z" - }, - "events": [ - { - "uuid": "c2aacace-5421-4d11-9cde-4c70fe451f83", - "start": { - "$date": "2021-04-28T21:08:11.000Z" - }, - "end": { - "$date": "2021-04-28T21:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "eb08603f-eac4-463c-b6fb-ed20aeac4d74", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-28T21:56:03.000Z" - }, - "end": { - "$date": "2021-04-28T22:15:03.000Z" - }, - "events": [ - { - "uuid": "c74b7576-cb6a-482b-b86e-5a360a47c2a3", - "start": { - "$date": "2021-04-28T21:56:03.000Z" - }, - "end": { - "$date": "2021-04-28T22:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ae167e1-51b1-4b3f-a88a-ebce6a9721f0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T22:23:39.000Z" - }, - "end": { - "$date": "2021-04-28T22:41:37.000Z" - }, - "events": [ - { - "uuid": "202b4fef-144b-4ca2-b508-f1a6b6921561", - "start": { - "$date": "2021-04-28T22:23:39.000Z" - }, - "end": { - "$date": "2021-04-28T22:41:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2a7a7ad8-dd57-4829-b438-1118213fa94d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-28T22:33:43.000Z" - }, - "end": { - "$date": "2021-04-28T22:54:55.000Z" - }, - "events": [ - { - "uuid": "40bcb2df-f1aa-418d-8aeb-eb9ac78c524d", - "start": { - "$date": "2021-04-28T22:33:43.000Z" - }, - "end": { - "$date": "2021-04-28T22:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8efe1315-6993-4554-ab94-959aa99c784d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T22:44:12.000Z" - }, - "end": { - "$date": "2021-04-28T22:54:23.000Z" - }, - "events": [ - { - "uuid": "5e332dfe-770e-4078-aef5-3fd08b7fc21e", - "start": { - "$date": "2021-04-28T22:44:12.000Z" - }, - "end": { - "$date": "2021-04-28T22:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc5bd6b6-95cf-492d-96a6-c0232a9ef9e3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T22:58:03.000Z" - }, - "end": { - "$date": "2021-04-28T23:15:44.000Z" - }, - "events": [ - { - "uuid": "9f5ab71d-b3f3-4e26-99d6-9aaf9f22d23c", - "start": { - "$date": "2021-04-28T22:58:03.000Z" - }, - "end": { - "$date": "2021-04-28T23:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49e65e8d-bd3c-4064-a1a0-abcf9adab05e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T23:22:08.000Z" - }, - "end": { - "$date": "2021-04-28T23:35:47.000Z" - }, - "events": [ - { - "uuid": "5d480030-3cb0-408a-9db8-eefa60e14dd8", - "start": { - "$date": "2021-04-28T23:22:08.000Z" - }, - "end": { - "$date": "2021-04-28T23:35:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "001ba045-1edb-4564-9ec3-aacd34e4ef4a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T23:21:59.000Z" - }, - "end": { - "$date": "2021-04-28T23:35:36.000Z" - }, - "events": [ - { - "uuid": "6c1d2c48-3d65-4505-83e5-c01c695dd198", - "start": { - "$date": "2021-04-28T23:21:59.000Z" - }, - "end": { - "$date": "2021-04-28T23:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "771bb3a7-2ba8-4179-a00c-0f904615e13e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-28T23:27:44.000Z" - }, - "end": { - "$date": "2021-04-28T23:43:20.000Z" - }, - "events": [ - { - "uuid": "c1e88b9e-505f-432c-8535-b2ff088f2bc2", - "start": { - "$date": "2021-04-28T23:27:44.000Z" - }, - "end": { - "$date": "2021-04-28T23:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a7a8858-6b95-47d1-abc8-819a9d1b87b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-28T23:41:45.000Z" - }, - "end": { - "$date": "2021-04-28T23:56:31.000Z" - }, - "events": [ - { - "uuid": "7664ff77-388c-4027-8f9a-072fbab50b73", - "start": { - "$date": "2021-04-28T23:41:45.000Z" - }, - "end": { - "$date": "2021-04-28T23:56:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bee8aa71-29e0-4fa6-a914-3122a139f357", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-28T23:39:36.000Z" - }, - "end": { - "$date": "2021-04-28T23:56:22.000Z" - }, - "events": [ - { - "uuid": "2792079d-6a04-46f1-8867-ebe8000118fc", - "start": { - "$date": "2021-04-28T23:39:36.000Z" - }, - "end": { - "$date": "2021-04-28T23:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c625c776-1600-4184-a4ce-919a66aa4bfd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T00:55:11.000Z" - }, - "end": { - "$date": "2021-04-29T01:14:41.000Z" - }, - "events": [ - { - "uuid": "a9fe12e0-ce84-47f6-aca6-0ebb2af7a853", - "start": { - "$date": "2021-04-29T00:55:11.000Z" - }, - "end": { - "$date": "2021-04-29T01:20:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa4671be-0832-4f17-b050-b93575002f00", - "start": { - "$date": "2021-04-29T01:20:11.000Z" - }, - "end": { - "$date": "2021-04-29T02:04:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74e4b3ed-72c6-4eff-910f-822ac0d5ae52", - "start": { - "$date": "2021-04-29T02:04:11.000Z" - }, - "end": { - "$date": "2021-04-29T01:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80f0f3ca-8632-4123-bf2b-f951eedb0bde", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T00:00:01.000Z" - }, - "end": { - "$date": "2021-04-29T00:19:03.000Z" - }, - "events": [ - { - "uuid": "ad1356a9-d300-4312-a0bf-aedc836dce43", - "start": { - "$date": "2021-04-29T00:00:01.000Z" - }, - "end": { - "$date": "2021-04-29T00:19:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a8b553d-0e0a-4bda-b15d-617dcde94cc2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T00:01:12.000Z" - }, - "end": { - "$date": "2021-04-29T00:18:59.000Z" - }, - "events": [ - { - "uuid": "cd7f6471-a23c-4c51-96dc-5b9d190e02e0", - "start": { - "$date": "2021-04-29T00:01:12.000Z" - }, - "end": { - "$date": "2021-04-29T00:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b339522-dc7b-4b78-bc40-31d661ccd17a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T00:37:07.000Z" - }, - "end": { - "$date": "2021-04-29T01:06:40.000Z" - }, - "events": [ - { - "uuid": "4ff9294f-78be-4962-887d-50b50254eef4", - "start": { - "$date": "2021-04-29T00:37:07.000Z" - }, - "end": { - "$date": "2021-04-29T01:06:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99590ab8-ffbe-4be7-9f8c-0dd11c749d2e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T00:38:07.000Z" - }, - "end": { - "$date": "2021-04-29T01:06:38.000Z" - }, - "events": [ - { - "uuid": "94ec2902-a7bf-4565-9f7e-ca4aaab6a5bc", - "start": { - "$date": "2021-04-29T00:38:07.000Z" - }, - "end": { - "$date": "2021-04-29T01:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24e7ecf2-a860-4b5e-bf35-a9e9e356eb54", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T00:49:30.000Z" - }, - "end": { - "$date": "2021-04-29T01:06:32.000Z" - }, - "events": [ - { - "uuid": "05451643-da34-44f1-a388-0a8467a4ead2", - "start": { - "$date": "2021-04-29T00:49:30.000Z" - }, - "end": { - "$date": "2021-04-29T01:06:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cb9795d-fefc-4a74-a978-91a71e4c9c66", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T01:45:14.000Z" - }, - "end": { - "$date": "2021-04-29T02:26:57.000Z" - }, - "events": [ - { - "uuid": "c4a437cd-5543-4a1f-9a72-5f6c57d6d2b5", - "start": { - "$date": "2021-04-29T01:45:14.000Z" - }, - "end": { - "$date": "2021-04-29T02:26:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd54a42b-77de-4150-ae41-4214f65de81c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T01:23:12.000Z" - }, - "end": { - "$date": "2021-04-29T01:37:23.000Z" - }, - "events": [ - { - "uuid": "a1987778-79d0-43f9-94b4-4733fdb197ec", - "start": { - "$date": "2021-04-29T01:23:12.000Z" - }, - "end": { - "$date": "2021-04-29T01:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "676d84d3-ed13-4e4c-a3e1-70ea058461f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T01:39:55.000Z" - }, - "end": { - "$date": "2021-04-29T01:50:25.000Z" - }, - "events": [ - { - "uuid": "8443cc87-3087-4e7b-912d-cc714a4113e5", - "start": { - "$date": "2021-04-29T01:39:55.000Z" - }, - "end": { - "$date": "2021-04-29T01:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4792046-2973-43ef-99a1-cadd0b0f13c0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T01:23:12.000Z" - }, - "end": { - "$date": "2021-04-29T01:40:19.000Z" - }, - "events": [ - { - "uuid": "5ab44226-389a-4441-8117-3a50d1331af9", - "start": { - "$date": "2021-04-29T01:23:12.000Z" - }, - "end": { - "$date": "2021-04-29T01:40:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35da22d6-f03b-4a2e-b834-7268e0c21b2d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T01:40:54.000Z" - }, - "end": { - "$date": "2021-04-29T02:38:23.000Z" - }, - "events": [ - { - "uuid": "91be95c1-418b-484b-870b-6233564d8993", - "start": { - "$date": "2021-04-29T01:40:54.000Z" - }, - "end": { - "$date": "2021-04-29T02:38:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51d58bb0-6528-427f-918d-54afde5c1743", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T01:51:21.000Z" - }, - "end": { - "$date": "2021-04-29T02:10:56.000Z" - }, - "events": [ - { - "uuid": "74f08989-aa01-4a36-ae5d-c01d6810239d", - "start": { - "$date": "2021-04-29T01:51:21.000Z" - }, - "end": { - "$date": "2021-04-29T02:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6e4c357-41ee-4684-ab9d-43b7c6acbe61", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T02:13:57.000Z" - }, - "end": { - "$date": "2021-04-29T02:27:47.000Z" - }, - "events": [ - { - "uuid": "ad065f29-1060-405f-9771-fe86eeba278b", - "start": { - "$date": "2021-04-29T02:13:57.000Z" - }, - "end": { - "$date": "2021-04-29T02:27:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "b77abd78-78ce-41ca-b1f4-63b13579758c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T02:26:33.000Z" - }, - "end": { - "$date": "2021-04-29T02:29:39.000Z" - }, - "events": [ - { - "uuid": "b2f1c3bb-0607-45aa-9a07-c5f4886658a2", - "start": { - "$date": "2021-04-29T02:26:33.000Z" - }, - "end": { - "$date": "2021-04-29T02:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01c1fa71-478b-4aaa-ab51-001856127062", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T02:50:00.000Z" - }, - "end": { - "$date": "2021-04-29T03:16:37.000Z" - }, - "events": [ - { - "uuid": "560e5755-8b9c-468d-94e9-2f2679ed2c4e", - "start": { - "$date": "2021-04-29T02:50:00.000Z" - }, - "end": { - "$date": "2021-04-29T03:16:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54b27209-f2fa-4432-9936-9b13eba40346", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T02:29:53.000Z" - }, - "end": { - "$date": "2021-04-29T02:45:43.000Z" - }, - "events": [ - { - "uuid": "5c69ea8b-4a42-4f82-b8ac-f58fd5b74e03", - "start": { - "$date": "2021-04-29T02:29:53.000Z" - }, - "end": { - "$date": "2021-04-29T02:45:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "ad5a9e4f-f7d3-47a7-ac63-eb1ec4b2328a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-29T02:33:29.000Z" - }, - "end": { - "$date": "2021-04-29T03:23:49.000Z" - }, - "events": [ - { - "uuid": "4126cf55-c9d0-4f1e-8c90-8eb80829d4ad", - "start": { - "$date": "2021-04-29T02:33:29.000Z" - }, - "end": { - "$date": "2021-04-29T03:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "150af93c-b27e-4be1-b489-e1591f53f814", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-29T02:38:12.000Z" - }, - "end": { - "$date": "2021-04-29T03:33:56.000Z" - }, - "events": [ - { - "uuid": "23a46352-fa94-4c09-950f-4c8b46598349", - "start": { - "$date": "2021-04-29T02:38:12.000Z" - }, - "end": { - "$date": "2021-04-29T03:33:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f1acb42-9e99-477f-be82-11e54ec94875", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T02:49:46.000Z" - }, - "end": { - "$date": "2021-04-29T03:16:38.000Z" - }, - "events": [ - { - "uuid": "17bd52d6-08cf-46be-bd50-6b46e28cb7af", - "start": { - "$date": "2021-04-29T02:49:46.000Z" - }, - "end": { - "$date": "2021-04-29T03:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6000bf8-d9df-4ee5-8fd2-443abd0dd116", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T02:51:21.000Z" - }, - "end": { - "$date": "2021-04-29T03:16:33.000Z" - }, - "events": [ - { - "uuid": "4ba239e9-f258-4bfd-b36b-55d8673e9c7b", - "start": { - "$date": "2021-04-29T02:51:21.000Z" - }, - "end": { - "$date": "2021-04-29T03:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f9a4f28-64e9-4e02-b783-bbd7a8515018", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T02:49:39.000Z" - }, - "end": { - "$date": "2021-04-29T03:05:55.000Z" - }, - "events": [ - { - "uuid": "b32e06de-569d-49f4-9f78-43f31362a598", - "start": { - "$date": "2021-04-29T02:49:39.000Z" - }, - "end": { - "$date": "2021-04-29T03:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd8eb877-7db5-439c-9cb7-24ef27361e50", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T03:10:31.000Z" - }, - "end": { - "$date": "2021-04-29T03:24:46.000Z" - }, - "events": [ - { - "uuid": "8757c815-e6c3-48b0-8833-c092fa8035ba", - "start": { - "$date": "2021-04-29T03:10:31.000Z" - }, - "end": { - "$date": "2021-04-29T03:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a40d722-b127-43a7-afe2-aedfda8b729c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-29T03:13:38.000Z" - }, - "end": { - "$date": "2021-04-29T04:14:00.000Z" - }, - "events": [ - { - "uuid": "112f70d5-12c2-413e-a19f-ff6bd2b045b0", - "start": { - "$date": "2021-04-29T03:13:38.000Z" - }, - "end": { - "$date": "2021-04-29T04:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb331484-3e43-42ec-98c5-20366d07ebf3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T03:19:51.000Z" - }, - "end": { - "$date": "2021-04-29T03:43:38.000Z" - }, - "events": [ - { - "uuid": "947453e5-0cad-45fa-b96f-ebb5cf54b4ec", - "start": { - "$date": "2021-04-29T03:19:51.000Z" - }, - "end": { - "$date": "2021-04-29T03:43:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92254762-7b7d-4cee-a34b-927aeea6454f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T03:19:43.000Z" - }, - "end": { - "$date": "2021-04-29T03:43:25.000Z" - }, - "events": [ - { - "uuid": "40ccce63-de39-4ba3-8692-c106c9bfc6b9", - "start": { - "$date": "2021-04-29T03:19:43.000Z" - }, - "end": { - "$date": "2021-04-29T03:43:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5aa5b40-9164-4893-a17d-127785d6e932", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T03:19:41.000Z" - }, - "end": { - "$date": "2021-04-29T03:43:36.000Z" - }, - "events": [ - { - "uuid": "6e94c497-67e2-4c60-86e6-cb1715db4b38", - "start": { - "$date": "2021-04-29T03:19:41.000Z" - }, - "end": { - "$date": "2021-04-29T03:43:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e51e7d08-6b60-4f00-93b8-12547f890ac8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-29T03:24:20.000Z" - }, - "end": { - "$date": "2021-04-29T04:29:20.000Z" - }, - "events": [ - { - "uuid": "199fe14c-8942-4071-8cd4-04529674267f", - "start": { - "$date": "2021-04-29T03:24:20.000Z" - }, - "end": { - "$date": "2021-04-29T04:29:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5ad21779-d8de-4537-8259-8bb7c7c9c5f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T03:32:58.000Z" - }, - "end": { - "$date": "2021-04-29T03:52:08.000Z" - }, - "events": [ - { - "uuid": "eedbec26-ce55-4de9-8a65-06304e978263", - "start": { - "$date": "2021-04-29T03:32:58.000Z" - }, - "end": { - "$date": "2021-04-29T03:52:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "045a7517-5081-4f91-8492-ccd858d75ac2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-29T03:34:51.000Z" - }, - "end": { - "$date": "2021-04-29T07:39:59.000Z" - }, - "events": [ - { - "uuid": "9eb29482-5aac-4c8c-aa74-c29c5c0481d6", - "start": { - "$date": "2021-04-29T03:34:51.000Z" - }, - "end": { - "$date": "2021-04-29T07:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0749ef3e-f5ad-4a7f-bfc8-656530b49255", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T04:07:09.000Z" - }, - "end": { - "$date": "2021-04-29T04:31:25.000Z" - }, - "events": [ - { - "uuid": "498fd64a-25c1-473d-9bbc-406ea34806d4", - "start": { - "$date": "2021-04-29T04:07:09.000Z" - }, - "end": { - "$date": "2021-04-29T04:31:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8cab0769-d30f-4d04-95d6-f738f6e81886", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T03:52:19.000Z" - }, - "end": { - "$date": "2021-04-29T04:37:45.000Z" - }, - "events": [ - { - "uuid": "c0b7bcef-3ce9-4704-a652-bad5bb981152", - "start": { - "$date": "2021-04-29T03:52:19.000Z" - }, - "end": { - "$date": "2021-04-29T04:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "70513ad3-6fed-4ae1-8ce0-d724cea47d56", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-29T03:56:39.000Z" - }, - "end": { - "$date": "2021-04-29T04:34:25.000Z" - }, - "events": [ - { - "uuid": "e3a88db3-044e-4a0c-94fc-9f8eca220d73", - "start": { - "$date": "2021-04-29T03:56:39.000Z" - }, - "end": { - "$date": "2021-04-29T04:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1aa91337-d9c9-4ceb-812d-67431cbd2d16", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-29T04:08:06.000Z" - }, - "end": { - "$date": "2021-04-29T04:31:16.000Z" - }, - "events": [ - { - "uuid": "30bf098f-c3d4-477e-a0e2-6d792e8292d2", - "start": { - "$date": "2021-04-29T04:08:06.000Z" - }, - "end": { - "$date": "2021-04-29T04:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d208924d-d82c-4b91-b25b-053f951c5507", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T04:06:58.000Z" - }, - "end": { - "$date": "2021-04-29T04:31:21.000Z" - }, - "events": [ - { - "uuid": "604f1fb7-0ea3-49f1-ac31-7fd12199ac34", - "start": { - "$date": "2021-04-29T04:06:58.000Z" - }, - "end": { - "$date": "2021-04-29T04:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57e95b6b-22ee-48c5-9d93-1e8ce71617b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T04:38:17.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:23.000Z" - }, - "events": [ - { - "uuid": "26e448db-5458-4736-8950-4fbcbb5dbc90", - "start": { - "$date": "2021-04-29T04:38:17.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62970f84-8e88-4919-a32b-8a77de8b6eea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-29T04:33:07.000Z" - }, - "end": { - "$date": "2021-04-29T05:28:23.000Z" - }, - "events": [ - { - "uuid": "be5b3ce5-c3df-4a7a-b254-e9695542ba1f", - "start": { - "$date": "2021-04-29T04:33:07.000Z" - }, - "end": { - "$date": "2021-04-29T05:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f044edce-6f96-46f3-99bd-d81ccdfd085b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T04:56:30.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:12.000Z" - }, - "events": [ - { - "uuid": "048ec2fa-e1d2-435d-be3c-5dae60dc1fbc", - "start": { - "$date": "2021-04-29T04:56:30.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3bed332-8c47-4c85-884f-f21e64a3d1ec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-29T05:18:12.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:51.000Z" - }, - "events": [ - { - "uuid": "81edb2a4-aa02-4398-b999-9f1a70784a62", - "start": { - "$date": "2021-04-29T05:18:12.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcdd56e2-52de-4555-b068-d4ee3f3750fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T04:39:01.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:20.000Z" - }, - "events": [ - { - "uuid": "c4b4ab9a-a6fe-4fb0-ac1d-26307e7fa884", - "start": { - "$date": "2021-04-29T04:39:01.000Z" - }, - "end": { - "$date": "2021-04-29T05:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1cd422bf-c4ee-4727-88f1-e0a1242a9fb4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-29T04:37:17.000Z" - }, - "end": { - "$date": "2021-04-29T06:14:17.000Z" - }, - "events": [ - { - "uuid": "906c6f64-bf27-4100-82c9-32a574b86c9b", - "start": { - "$date": "2021-04-29T04:37:17.000Z" - }, - "end": { - "$date": "2021-04-29T06:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "279e93d9-8009-4639-93b4-2e83b6534797", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T04:40:21.000Z" - }, - "end": { - "$date": "2021-04-29T05:01:37.000Z" - }, - "events": [ - { - "uuid": "7ceea319-a746-4597-a06a-1619eedd7a1e", - "start": { - "$date": "2021-04-29T04:40:21.000Z" - }, - "end": { - "$date": "2021-04-29T05:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10f0d0bd-8162-4201-a9fc-c89a4191a8eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T05:21:29.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:18.000Z" - }, - "events": [ - { - "uuid": "9c19c414-f918-4ca3-bbfd-3afa15d11de7", - "start": { - "$date": "2021-04-29T05:21:29.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52e53625-5a0a-428e-8300-5edaf2c0a8b9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-29T05:21:28.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:18.000Z" - }, - "events": [ - { - "uuid": "b38a32fc-9eef-4336-bf34-a739c1c5dc8f", - "start": { - "$date": "2021-04-29T05:21:28.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d304b40-0911-4d1d-9e39-154ee091450f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T05:21:36.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:23.000Z" - }, - "events": [ - { - "uuid": "31162e6e-c010-46f6-a80f-976917b2e38f", - "start": { - "$date": "2021-04-29T05:21:36.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7005afc3-d136-4bd4-b84a-ca21a8fdf3a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T05:21:16.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:25.000Z" - }, - "events": [ - { - "uuid": "63798be1-35b6-4aff-8208-3a65734586a4", - "start": { - "$date": "2021-04-29T05:21:16.000Z" - }, - "end": { - "$date": "2021-04-29T05:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7807b49c-c0ec-4656-9353-c57bd5a6b7bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T05:37:35.000Z" - }, - "end": { - "$date": "2021-04-29T05:50:11.000Z" - }, - "events": [ - { - "uuid": "8f56d936-4b90-4e12-87cf-c2fb19383812", - "start": { - "$date": "2021-04-29T05:37:35.000Z" - }, - "end": { - "$date": "2021-04-29T05:50:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2343d9b-e7ca-4bbf-b891-b01566975add", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-29T05:37:23.000Z" - }, - "end": { - "$date": "2021-04-29T05:50:03.000Z" - }, - "events": [ - { - "uuid": "c65351ed-5df9-470b-8d8f-74765625c758", - "start": { - "$date": "2021-04-29T05:37:23.000Z" - }, - "end": { - "$date": "2021-04-29T05:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67761c07-7cc5-4438-a35f-3a50e43c18ce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T05:37:52.000Z" - }, - "end": { - "$date": "2021-04-29T05:50:11.000Z" - }, - "events": [ - { - "uuid": "46182b07-d6e5-4cb4-9036-7caa86b0154b", - "start": { - "$date": "2021-04-29T05:37:52.000Z" - }, - "end": { - "$date": "2021-04-29T05:50:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0b13142-b8f2-4069-88d0-ebc4d4982de6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T05:37:37.000Z" - }, - "end": { - "$date": "2021-04-29T05:49:59.000Z" - }, - "events": [ - { - "uuid": "4fd70f65-0970-4123-91b0-972edcc70579", - "start": { - "$date": "2021-04-29T05:37:37.000Z" - }, - "end": { - "$date": "2021-04-29T05:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "43e6370f-8312-4046-8aaf-280bfa0d6b65", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-29T05:36:52.000Z" - }, - "end": { - "$date": "2021-04-29T08:22:52.000Z" - }, - "events": [ - { - "uuid": "56961102-3dd9-4337-bc49-5265556c545f", - "start": { - "$date": "2021-04-29T05:36:52.000Z" - }, - "end": { - "$date": "2021-04-29T08:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2eacfef3-94fa-49cf-9a45-76d82183de04", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T05:52:36.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:17.000Z" - }, - "events": [ - { - "uuid": "21234526-6478-40b1-bdf4-de490cf01cb4", - "start": { - "$date": "2021-04-29T05:52:36.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f179d984-e369-4418-9605-dfaea4d8d6b0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-29T05:52:28.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:09.000Z" - }, - "events": [ - { - "uuid": "c57d8322-bbea-4021-8c57-4c7f6ef240b2", - "start": { - "$date": "2021-04-29T05:52:28.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9753aad-a19f-4043-bc4e-010b4daa9608", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T05:52:43.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:10.000Z" - }, - "events": [ - { - "uuid": "21862607-aa96-4ac4-963f-a50bad022765", - "start": { - "$date": "2021-04-29T05:52:43.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56f8dd6f-db1e-49ca-8f71-8c1e835b2989", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-29T05:52:23.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:21.000Z" - }, - "events": [ - { - "uuid": "315a35ca-c27d-4bc9-b7cb-cb4cce4afd90", - "start": { - "$date": "2021-04-29T05:52:23.000Z" - }, - "end": { - "$date": "2021-04-29T06:16:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fe01a6a0-7b70-4f8d-8c6f-ef03b9354686", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-29T06:26:58.000Z" - }, - "end": { - "$date": "2021-04-29T07:15:25.000Z" - }, - "events": [ - { - "uuid": "bbd8dd99-ccb7-4799-88f5-88b7c7584dd8", - "start": { - "$date": "2021-04-29T06:26:58.000Z" - }, - "end": { - "$date": "2021-04-29T07:15:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e79790cf-ab83-44c5-b682-5d3e65e296ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T15:31:30.000Z" - }, - "end": { - "$date": "2021-04-29T16:22:02.000Z" - }, - "events": [ - { - "uuid": "07193a1f-bcff-4934-9852-929eb3ff2efb", - "start": { - "$date": "2021-04-29T15:31:30.000Z" - }, - "end": { - "$date": "2021-04-29T16:22:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5f75f73-fb6b-455c-903f-796be60de96b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T16:18:23.000Z" - }, - "end": { - "$date": "2021-04-29T16:37:33.000Z" - }, - "events": [ - { - "uuid": "f8c0fbde-4b6c-43c5-9c50-5b5954fe5543", - "start": { - "$date": "2021-04-29T16:18:23.000Z" - }, - "end": { - "$date": "2021-04-29T16:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "29fc9f1b-a091-4707-aab4-bc53a6afb621", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-29T16:35:38.000Z" - }, - "end": { - "$date": "2021-04-29T17:57:06.000Z" - }, - "events": [ - { - "uuid": "d70bd9ce-2c21-48c2-8c16-73df5e2dedef", - "start": { - "$date": "2021-04-29T16:35:38.000Z" - }, - "end": { - "$date": "2021-04-29T16:53:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7eaef545-e5c0-49fa-b1a9-83f7a37c2cc2", - "start": { - "$date": "2021-04-29T16:53:38.000Z" - }, - "end": { - "$date": "2021-04-29T17:21:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bdee5f2d-583f-48b3-ada7-93c76d46bf1d", - "start": { - "$date": "2021-04-29T17:21:38.000Z" - }, - "end": { - "$date": "2021-04-29T17:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9af7cdd3-661e-41db-b7a0-667d618c4c45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T16:38:44.000Z" - }, - "end": { - "$date": "2021-04-29T16:53:00.000Z" - }, - "events": [ - { - "uuid": "1489bf87-13ce-4f72-94a7-f26f87cc9be1", - "start": { - "$date": "2021-04-29T16:38:44.000Z" - }, - "end": { - "$date": "2021-04-29T16:53:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9f7f845-0ae3-4c19-8342-56487fc07c47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T16:53:07.000Z" - }, - "end": { - "$date": "2021-04-29T17:59:19.000Z" - }, - "events": [ - { - "uuid": "26307dcc-9bf6-4557-9ea3-0d9b21f48294", - "start": { - "$date": "2021-04-29T16:53:07.000Z" - }, - "end": { - "$date": "2021-04-29T17:59:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0df6adb4-560a-4d96-a40a-5b33a410810c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-29T18:00:22.000Z" - }, - "end": { - "$date": "2021-04-29T18:44:59.000Z" - }, - "events": [ - { - "uuid": "9bb7ea5a-ec28-409b-8815-3ab615177395", - "start": { - "$date": "2021-04-29T18:00:22.000Z" - }, - "end": { - "$date": "2021-04-29T18:44:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce1158d0-acb7-4449-a380-b90162766ce6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T19:26:08.000Z" - }, - "end": { - "$date": "2021-04-29T19:45:38.000Z" - }, - "events": [ - { - "uuid": "235451f8-fd0e-43c9-bbd2-bb5e03ce32fd", - "start": { - "$date": "2021-04-29T19:26:08.000Z" - }, - "end": { - "$date": "2021-04-29T19:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9ec75179-4f38-4802-aac6-0618494b03c2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-29T19:34:07.000Z" - }, - "end": { - "$date": "2021-04-29T19:42:20.000Z" - }, - "events": [ - { - "uuid": "4e30f8e0-1641-4c59-a7f2-28f99cbbea7e", - "start": { - "$date": "2021-04-29T19:34:07.000Z" - }, - "end": { - "$date": "2021-04-29T19:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c851749a-5b72-4c9c-afd7-6bbf5d2a6945", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T19:48:40.000Z" - }, - "end": { - "$date": "2021-04-29T20:07:56.000Z" - }, - "events": [ - { - "uuid": "49d757ef-0cd5-4ace-903d-7dcc4593d1d2", - "start": { - "$date": "2021-04-29T19:48:40.000Z" - }, - "end": { - "$date": "2021-04-29T20:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a08f5ab8-214a-4508-9655-0fb98540c3d0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-29T21:10:47.000Z" - }, - "end": { - "$date": "2021-04-29T23:38:34.000Z" - }, - "events": [ - { - "uuid": "a969d9c1-5b0c-473f-a525-bd9aac79f038", - "start": { - "$date": "2021-04-29T21:10:47.000Z" - }, - "end": { - "$date": "2021-04-29T22:54:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70eaef1d-767e-4dcf-9d72-b14c74192b8e", - "start": { - "$date": "2021-04-29T22:54:47.000Z" - }, - "end": { - "$date": "2021-04-29T22:55:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db9e0b8e-4e06-4e48-ac98-c35a3b38cb81", - "start": { - "$date": "2021-04-29T22:55:47.000Z" - }, - "end": { - "$date": "2021-04-29T22:58:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc5327ae-2976-44a1-b422-aa6cc0f66746", - "start": { - "$date": "2021-04-29T22:58:47.000Z" - }, - "end": { - "$date": "2021-04-29T23:18:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f996908-7e31-4067-ba2a-d1d5c35a0d58", - "start": { - "$date": "2021-04-29T23:18:47.000Z" - }, - "end": { - "$date": "2021-04-29T23:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b73dbd4-f4c2-4833-a4d6-56d457a87036", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T20:11:17.000Z" - }, - "end": { - "$date": "2021-04-29T20:25:42.000Z" - }, - "events": [ - { - "uuid": "2cdde40e-6c73-47b8-ba06-21fbac70cdf0", - "start": { - "$date": "2021-04-29T20:11:17.000Z" - }, - "end": { - "$date": "2021-04-29T20:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a91a3813-70b4-4674-8d7e-3db20bc5908d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-29T20:09:33.000Z" - }, - "end": { - "$date": "2021-04-29T21:46:25.000Z" - }, - "events": [ - { - "uuid": "bfbee054-375a-43e2-bb0b-bee30a972855", - "start": { - "$date": "2021-04-29T20:09:33.000Z" - }, - "end": { - "$date": "2021-04-29T20:28:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c1d18c5-4707-4b6f-9db1-579d38b2a2ee", - "start": { - "$date": "2021-04-29T20:28:33.000Z" - }, - "end": { - "$date": "2021-04-29T20:37:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ccb787c7-a49e-4dfa-9ebe-b28f38e27593", - "start": { - "$date": "2021-04-29T20:37:33.000Z" - }, - "end": { - "$date": "2021-04-29T21:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c26913c-acc3-4985-a592-161db4d62440", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T20:29:14.000Z" - }, - "end": { - "$date": "2021-04-29T20:46:04.000Z" - }, - "events": [ - { - "uuid": "2a859c8f-b29b-4035-ae3f-745fed3520cd", - "start": { - "$date": "2021-04-29T20:29:14.000Z" - }, - "end": { - "$date": "2021-04-29T20:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "470d8383-3b8d-4ddc-9f49-6156abbd055f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-29T21:46:31.000Z" - }, - "end": { - "$date": "2021-04-30T00:13:56.000Z" - }, - "events": [ - { - "uuid": "c6ddc230-18e7-4092-91cb-0b9a48123e9c", - "start": { - "$date": "2021-04-29T21:46:31.000Z" - }, - "end": { - "$date": "2021-04-30T00:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73c17035-fcc3-4b91-aeae-72522a67d393", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-29T21:56:03.000Z" - }, - "end": { - "$date": "2021-04-29T22:41:40.000Z" - }, - "events": [ - { - "uuid": "94de3886-38eb-485f-848a-edf7e19b0344", - "start": { - "$date": "2021-04-29T21:56:03.000Z" - }, - "end": { - "$date": "2021-04-29T22:41:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc966244-10eb-44e3-a859-e396921f0edc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T22:58:24.000Z" - }, - "end": { - "$date": "2021-04-29T23:10:54.000Z" - }, - "events": [ - { - "uuid": "134d9601-0ee4-47ff-8f44-8c373959b713", - "start": { - "$date": "2021-04-29T22:58:24.000Z" - }, - "end": { - "$date": "2021-04-29T23:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "949013dc-8dd1-4705-bc71-22f50dd4fc1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T23:25:41.000Z" - }, - "end": { - "$date": "2021-04-29T23:25:45.000Z" - }, - "events": [ - { - "uuid": "1eec2994-dd62-4dae-a097-767028ce815e", - "start": { - "$date": "2021-04-29T23:25:41.000Z" - }, - "end": { - "$date": "2021-04-29T23:25:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cfc0153-b410-4d6c-8c4a-83664a9a0b9f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-29T23:32:21.000Z" - }, - "end": { - "$date": "2021-04-29T23:53:01.000Z" - }, - "events": [ - { - "uuid": "6ff47a28-5c23-4cf9-81cd-278bda97fc59", - "start": { - "$date": "2021-04-29T23:32:21.000Z" - }, - "end": { - "$date": "2021-04-29T23:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b9428b72-eab3-412a-acfc-dccc9e55ea5a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-29T23:28:06.000Z" - }, - "end": { - "$date": "2021-04-30T00:11:42.000Z" - }, - "events": [ - { - "uuid": "0604e2eb-6360-4cea-a574-67f3511f7ecc", - "start": { - "$date": "2021-04-29T23:28:06.000Z" - }, - "end": { - "$date": "2021-04-30T00:11:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "15609cc6-f522-40a0-976e-ffda6924e76a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-04-29T23:55:52.000Z" - }, - "end": { - "$date": "2021-04-30T00:09:06.000Z" - }, - "events": [ - { - "uuid": "a0b65258-19d9-4f5c-8936-d480531e4054", - "start": { - "$date": "2021-04-29T23:55:52.000Z" - }, - "end": { - "$date": "2021-04-30T00:09:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "44b8afcd-0edc-4580-95de-a2688a904239", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-29T23:59:29.000Z" - }, - "end": { - "$date": "2021-04-30T00:04:39.000Z" - }, - "events": [ - { - "uuid": "3636dad4-b448-41cf-b71c-bb8bd9cfab4f", - "start": { - "$date": "2021-04-29T23:59:29.000Z" - }, - "end": { - "$date": "2021-04-30T00:04:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "17ae5885-31b2-4ada-96df-53f84ed5d798", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T01:03:38.000Z" - }, - "end": { - "$date": "2021-04-30T02:08:28.000Z" - }, - "events": [ - { - "uuid": "1392de9c-e56b-4b28-849e-1ec5c0c55bb5", - "start": { - "$date": "2021-04-30T01:03:38.000Z" - }, - "end": { - "$date": "2021-04-30T02:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "feb816e8-61b7-431c-b020-2a09cfbafcbf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-30T01:17:38.000Z" - }, - "end": { - "$date": "2021-04-30T01:20:51.000Z" - }, - "events": [ - { - "uuid": "af31883b-88e2-48a8-9cc5-72a39fbebd2c", - "start": { - "$date": "2021-04-30T01:17:38.000Z" - }, - "end": { - "$date": "2021-04-30T01:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c36783b0-8533-44bb-af6e-031a5b87c9c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-30T03:38:50.000Z" - }, - "end": { - "$date": "2021-04-30T04:20:58.000Z" - }, - "events": [ - { - "uuid": "6f301f62-ccf9-4dd3-821e-7e47bcd13cc6", - "start": { - "$date": "2021-04-30T03:38:50.000Z" - }, - "end": { - "$date": "2021-04-30T04:20:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "011bb076-d216-4339-a1f8-0156ecc3e2d7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-30T01:21:09.000Z" - }, - "end": { - "$date": "2021-04-30T01:55:20.000Z" - }, - "events": [ - { - "uuid": "233c79d3-ce9b-4b1f-ab2b-cb7148f657ee", - "start": { - "$date": "2021-04-30T01:21:09.000Z" - }, - "end": { - "$date": "2021-04-30T01:55:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "88c740f5-f1b2-486a-ba7b-be9bc43bf322", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T01:26:38.000Z" - }, - "end": { - "$date": "2021-04-30T01:30:23.000Z" - }, - "events": [ - { - "uuid": "3514a2bd-c94a-4a18-ab9d-7c67a7e9b589", - "start": { - "$date": "2021-04-30T01:26:38.000Z" - }, - "end": { - "$date": "2021-04-30T01:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "d67040c4-6e26-463c-8442-08a27c3a7edb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-30T01:31:01.000Z" - }, - "end": { - "$date": "2021-04-30T01:33:33.000Z" - }, - "events": [ - { - "uuid": "86e15598-228d-49c3-ac47-fd2527c04c96", - "start": { - "$date": "2021-04-30T01:31:01.000Z" - }, - "end": { - "$date": "2021-04-30T01:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "31a2e123-b58e-4e8b-887c-6f1cc6a7f2b8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T01:31:09.000Z" - }, - "end": { - "$date": "2021-04-30T03:07:53.000Z" - }, - "events": [ - { - "uuid": "37d9f241-dcc2-421a-8ddf-0e02298fe72f", - "start": { - "$date": "2021-04-30T01:31:09.000Z" - }, - "end": { - "$date": "2021-04-30T03:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "f76233f1-c013-43da-9f93-ac959e578b3b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-30T01:35:22.000Z" - }, - "end": { - "$date": "2021-04-30T01:55:17.000Z" - }, - "events": [ - { - "uuid": "0d0d989d-4c9d-4050-b36a-1b47e6073570", - "start": { - "$date": "2021-04-30T01:35:22.000Z" - }, - "end": { - "$date": "2021-04-30T01:55:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f91bbffb-6510-4075-94b7-fe8d5945b0d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-30T01:47:25.000Z" - }, - "end": { - "$date": "2021-04-30T01:48:44.000Z" - }, - "events": [ - { - "uuid": "690adf0e-0e64-4507-bddd-609ae02a695d", - "start": { - "$date": "2021-04-30T01:47:25.000Z" - }, - "end": { - "$date": "2021-04-30T01:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c4bb496f-42d4-4cee-8414-88d60f0010ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-30T01:49:00.000Z" - }, - "end": { - "$date": "2021-04-30T02:00:05.000Z" - }, - "events": [ - { - "uuid": "3200f459-e6cf-48b4-83e8-3e965c345dbb", - "start": { - "$date": "2021-04-30T01:49:00.000Z" - }, - "end": { - "$date": "2021-04-30T02:00:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d0559701-5a6c-4f1d-b9e8-d01298c64ff8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-30T01:56:14.000Z" - }, - "end": { - "$date": "2021-04-30T01:58:48.000Z" - }, - "events": [ - { - "uuid": "5e3e5037-0dc2-4c9a-8148-142eb0db3d43", - "start": { - "$date": "2021-04-30T01:56:14.000Z" - }, - "end": { - "$date": "2021-04-30T01:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3bd69d1b-6b99-4d97-bba1-69ec98d51266", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-30T01:59:04.000Z" - }, - "end": { - "$date": "2021-04-30T06:11:17.000Z" - }, - "events": [ - { - "uuid": "bacacd29-c976-4314-a62d-a0d0b0f72286", - "start": { - "$date": "2021-04-30T01:59:04.000Z" - }, - "end": { - "$date": "2021-04-30T06:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "7511c4be-63dd-45b5-a624-40e0fa6e04a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-30T01:59:56.000Z" - }, - "end": { - "$date": "2021-04-30T02:13:29.000Z" - }, - "events": [ - { - "uuid": "01c7b95a-553e-438f-86c8-ae03f698b269", - "start": { - "$date": "2021-04-30T01:59:56.000Z" - }, - "end": { - "$date": "2021-04-30T02:13:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "96f75594-5651-4272-b90e-acd81d88c8f3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-30T02:16:28.000Z" - }, - "end": { - "$date": "2021-04-30T02:55:22.000Z" - }, - "events": [ - { - "uuid": "b7cbe440-d5c7-4de2-bb4a-74e6bffc49a9", - "start": { - "$date": "2021-04-30T02:16:28.000Z" - }, - "end": { - "$date": "2021-04-30T02:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "445b9277-3c25-4f7a-a97f-ac7affc03142", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T02:28:12.000Z" - }, - "end": { - "$date": "2021-04-30T02:45:22.000Z" - }, - "events": [ - { - "uuid": "1108a5bb-4677-4a5b-b62d-dc36fd7f8327", - "start": { - "$date": "2021-04-30T02:28:12.000Z" - }, - "end": { - "$date": "2021-04-30T02:45:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbd7892b-c8eb-4317-bdff-da04f2810d2b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-30T02:36:59.000Z" - }, - "end": { - "$date": "2021-04-30T03:01:40.000Z" - }, - "events": [ - { - "uuid": "42589aac-85f5-4274-b9c9-eb53154f944d", - "start": { - "$date": "2021-04-30T02:36:59.000Z" - }, - "end": { - "$date": "2021-04-30T03:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "07dd6e4c-d6d9-4261-9fab-a0d894765b7d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T02:45:48.000Z" - }, - "end": { - "$date": "2021-04-30T14:18:07.000Z" - }, - "events": [ - { - "uuid": "a749e2c8-50ad-4210-baf9-06a01e5c01c1", - "start": { - "$date": "2021-04-30T02:45:48.000Z" - }, - "end": { - "$date": "2021-04-30T04:32:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0d64d1a-9cb8-41e6-bcf9-7995c1dbd0eb", - "start": { - "$date": "2021-04-30T04:32:48.000Z" - }, - "end": { - "$date": "2021-04-30T13:47:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5581b042-d948-4ea5-b5be-eb576291eece", - "start": { - "$date": "2021-04-30T13:47:48.000Z" - }, - "end": { - "$date": "2021-04-30T13:51:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "657c8932-cc7f-4c0c-a1e0-34b592873a7e", - "start": { - "$date": "2021-04-30T13:51:48.000Z" - }, - "end": { - "$date": "2021-04-30T13:58:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "acdc397c-9275-49f2-a206-c9cdaf9b7282", - "start": { - "$date": "2021-04-30T13:58:48.000Z" - }, - "end": { - "$date": "2021-04-30T14:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62286353-b751-49a5-9cf1-30170500c14e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-30T03:17:32.000Z" - }, - "end": { - "$date": "2021-04-30T03:43:14.000Z" - }, - "events": [ - { - "uuid": "456911a4-8733-4bc9-bf15-0bd510755273", - "start": { - "$date": "2021-04-30T03:17:32.000Z" - }, - "end": { - "$date": "2021-04-30T03:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "78ee1036-1002-47d5-8118-a5a8c6f94f7f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T03:41:51.000Z" - }, - "end": { - "$date": "2021-04-30T03:58:37.000Z" - }, - "events": [ - { - "uuid": "a159b136-c763-4899-8996-fc31729168f7", - "start": { - "$date": "2021-04-30T03:41:51.000Z" - }, - "end": { - "$date": "2021-04-30T03:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30373f9e-2d4b-4e52-806e-7b66b625086d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-30T04:02:49.000Z" - }, - "end": { - "$date": "2021-04-30T04:21:19.000Z" - }, - "events": [ - { - "uuid": "3f80ce87-222a-4d06-8e21-cdc2ab7a806e", - "start": { - "$date": "2021-04-30T04:02:49.000Z" - }, - "end": { - "$date": "2021-04-30T04:21:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9af56a6-b260-4d65-874c-d483de96d1b2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-30T04:03:33.000Z" - }, - "end": { - "$date": "2021-04-30T04:41:20.000Z" - }, - "events": [ - { - "uuid": "5edbdd04-413b-4c46-b561-97cf7909ebfd", - "start": { - "$date": "2021-04-30T04:03:33.000Z" - }, - "end": { - "$date": "2021-04-30T04:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "9b4191fe-1e53-4fc6-b58e-9e67932e5116", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T03:59:12.000Z" - }, - "end": { - "$date": "2021-04-30T04:06:32.000Z" - }, - "events": [ - { - "uuid": "e8abc530-8f4c-4675-b6ce-3c36ba309f9f", - "start": { - "$date": "2021-04-30T03:59:12.000Z" - }, - "end": { - "$date": "2021-04-30T04:06:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "65558efb-b3df-4f62-8d57-7aa04c8afb61", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T04:10:37.000Z" - }, - "end": { - "$date": "2021-04-30T04:28:39.000Z" - }, - "events": [ - { - "uuid": "27378803-9062-48c7-ae37-beef399653dc", - "start": { - "$date": "2021-04-30T04:10:37.000Z" - }, - "end": { - "$date": "2021-04-30T04:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7147b360-dfc1-494b-9590-b2bd73528463", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-04-30T04:11:03.000Z" - }, - "end": { - "$date": "2021-04-30T07:20:23.000Z" - }, - "events": [ - { - "uuid": "12ca6d75-be5b-4ef1-8588-3141db555148", - "start": { - "$date": "2021-04-30T04:11:03.000Z" - }, - "end": { - "$date": "2021-04-30T07:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "74b5ea8d-6a05-4138-b58f-d62d3575c8d3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-04-30T04:28:10.000Z" - }, - "end": { - "$date": "2021-04-30T05:54:56.000Z" - }, - "events": [ - { - "uuid": "dff7a2d3-af36-4976-bd0b-6b12a2ddaa4e", - "start": { - "$date": "2021-04-30T04:28:10.000Z" - }, - "end": { - "$date": "2021-04-30T05:54:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a0cb273d-fd21-4521-922b-c8fb20578b6e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-30T05:06:27.000Z" - }, - "end": { - "$date": "2021-04-30T05:15:58.000Z" - }, - "events": [ - { - "uuid": "87937f30-8436-467e-922d-700d738d2eed", - "start": { - "$date": "2021-04-30T05:06:27.000Z" - }, - "end": { - "$date": "2021-04-30T05:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80483f65-843e-4d84-953b-3301e50eabf9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-04-30T05:23:03.000Z" - }, - "end": { - "$date": "2021-04-30T05:59:01.000Z" - }, - "events": [ - { - "uuid": "a1bae4c0-174e-49a5-bfd1-4b50ab41b4e2", - "start": { - "$date": "2021-04-30T05:23:03.000Z" - }, - "end": { - "$date": "2021-04-30T05:59:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0322cb63-93e4-47b3-b42f-215559e683e6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-30T05:46:36.000Z" - }, - "end": { - "$date": "2021-04-30T06:10:38.000Z" - }, - "events": [ - { - "uuid": "d80c48ec-d24f-4005-af1e-9b3eb108e42c", - "start": { - "$date": "2021-04-30T05:46:36.000Z" - }, - "end": { - "$date": "2021-04-30T06:10:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "612d74cc-9fd7-48d5-b695-f44757ed51fa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T05:50:05.000Z" - }, - "end": { - "$date": "2021-04-30T06:19:45.000Z" - }, - "events": [ - { - "uuid": "f4ca52f7-1e9b-4d49-940c-dfc593dfbe34", - "start": { - "$date": "2021-04-30T05:50:05.000Z" - }, - "end": { - "$date": "2021-04-30T06:19:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "f3a1f45e-3ed4-4212-9960-737119bff796", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T06:23:30.000Z" - }, - "end": { - "$date": "2021-04-30T06:27:16.000Z" - }, - "events": [ - { - "uuid": "992d8444-6848-42e5-a886-5254b884331c", - "start": { - "$date": "2021-04-30T06:23:30.000Z" - }, - "end": { - "$date": "2021-04-30T06:27:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "de20329a-3f49-45a5-9f86-6f8a4560410e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-04-30T06:24:41.000Z" - }, - "end": { - "$date": "2021-04-30T06:40:01.000Z" - }, - "events": [ - { - "uuid": "9f8764fa-7fe3-4182-84ac-ea79e474ff38", - "start": { - "$date": "2021-04-30T06:24:41.000Z" - }, - "end": { - "$date": "2021-04-30T06:40:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "79daa32d-251c-409f-b120-59c51c76bdad", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-30T14:25:03.000Z" - }, - "end": { - "$date": "2021-04-30T14:32:52.000Z" - }, - "events": [ - { - "uuid": "68a97dbb-cbe4-44fc-a4de-d637adb796f8", - "start": { - "$date": "2021-04-30T14:25:03.000Z" - }, - "end": { - "$date": "2021-04-30T14:32:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "91a22031-3903-4200-89de-a714929b27e0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-30T14:34:01.000Z" - }, - "end": { - "$date": "2021-04-30T14:42:09.000Z" - }, - "events": [ - { - "uuid": "ca77264e-586a-4cb1-9ff7-f282de3029e5", - "start": { - "$date": "2021-04-30T14:34:01.000Z" - }, - "end": { - "$date": "2021-04-30T14:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "a52d64d8-945e-4d41-bbd9-3c5c2b5e30bd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-30T14:49:45.000Z" - }, - "end": { - "$date": "2021-04-30T14:49:56.000Z" - }, - "events": [ - { - "uuid": "7133802d-4fd4-4e26-9484-f3550b10fff5", - "start": { - "$date": "2021-04-30T14:49:45.000Z" - }, - "end": { - "$date": "2021-04-30T14:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "dccd23d0-b5b0-4a63-b9d7-66a25870c064", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-30T15:01:34.000Z" - }, - "end": { - "$date": "2021-04-30T15:01:45.000Z" - }, - "events": [ - { - "uuid": "989cfc94-76cf-4b7b-88fe-7a2ec0cc5592", - "start": { - "$date": "2021-04-30T15:01:34.000Z" - }, - "end": { - "$date": "2021-04-30T15:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "13db4abf-b534-4edf-87f3-8fdb75246f21", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-30T15:06:25.000Z" - }, - "end": { - "$date": "2021-04-30T19:51:54.000Z" - }, - "events": [ - { - "uuid": "ea8bfcf4-0560-447d-8cd6-80cd0700068d", - "start": { - "$date": "2021-04-30T15:06:25.000Z" - }, - "end": { - "$date": "2021-04-30T19:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "97fc78da-6111-49f9-b1ef-d92fa6be5b6b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T15:56:44.000Z" - }, - "end": { - "$date": "2021-04-30T15:58:54.000Z" - }, - "events": [ - { - "uuid": "4fd28630-cf26-4278-a6bd-001dd3b61b8f", - "start": { - "$date": "2021-04-30T15:56:44.000Z" - }, - "end": { - "$date": "2021-04-30T15:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "e21d9674-1d91-424b-bb9b-deeff40a7aab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T15:59:14.000Z" - }, - "end": { - "$date": "2021-04-30T16:00:33.000Z" - }, - "events": [ - { - "uuid": "74a4e810-72da-495c-b083-11dfa618e38b", - "start": { - "$date": "2021-04-30T15:59:14.000Z" - }, - "end": { - "$date": "2021-04-30T16:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "b1129c26-d73c-43e9-a86b-34b7ee0eb94c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T16:00:46.000Z" - }, - "end": { - "$date": "2021-04-30T16:02:46.000Z" - }, - "events": [ - { - "uuid": "adddcb5d-cdfc-41d5-9c4e-5985106c225e", - "start": { - "$date": "2021-04-30T16:00:46.000Z" - }, - "end": { - "$date": "2021-04-30T16:02:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "22a2e85f-4593-481e-983f-2ec84c1f3526", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T16:21:45.000Z" - }, - "end": { - "$date": "2021-04-30T18:09:43.000Z" - }, - "events": [ - { - "uuid": "e185c442-add6-4703-82c2-90682d62c803", - "start": { - "$date": "2021-04-30T16:21:45.000Z" - }, - "end": { - "$date": "2021-04-30T17:50:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "479fdc91-b0bb-46c7-a8de-c72233cf4729", - "start": { - "$date": "2021-04-30T17:50:45.000Z" - }, - "end": { - "$date": "2021-04-30T18:09:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f0ef39c-9777-432b-a5d3-aa9057f1a9f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T18:06:10.000Z" - }, - "end": { - "$date": "2021-04-30T18:26:16.000Z" - }, - "events": [ - { - "uuid": "349c7899-1f69-48fe-a460-00112dc3c314", - "start": { - "$date": "2021-04-30T18:06:10.000Z" - }, - "end": { - "$date": "2021-04-30T18:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2ff00f46-78e8-4976-a4b3-982b498bb73a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T18:09:49.000Z" - }, - "end": { - "$date": "2021-04-30T19:24:31.000Z" - }, - "events": [ - { - "uuid": "05edb7de-daba-4d90-8a0c-5430ba512dc9", - "start": { - "$date": "2021-04-30T18:09:49.000Z" - }, - "end": { - "$date": "2021-04-30T19:24:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fab325b-c91f-45a9-931f-d91151712640", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T18:30:42.000Z" - }, - "end": { - "$date": "2021-04-30T18:47:29.000Z" - }, - "events": [ - { - "uuid": "8a9be23b-711e-42d6-bb5d-ab4605e31f67", - "start": { - "$date": "2021-04-30T18:30:42.000Z" - }, - "end": { - "$date": "2021-04-30T18:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87021ed3-b69a-4078-8ae6-5e3e8e20929c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T19:01:22.000Z" - }, - "end": { - "$date": "2021-04-30T19:16:58.000Z" - }, - "events": [ - { - "uuid": "70eb3d90-05ed-4e2c-8f86-ab949e534bc5", - "start": { - "$date": "2021-04-30T19:01:22.000Z" - }, - "end": { - "$date": "2021-04-30T19:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91a09707-9aef-48dc-aaf0-c0c886de4259", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T19:21:14.000Z" - }, - "end": { - "$date": "2021-04-30T19:39:45.000Z" - }, - "events": [ - { - "uuid": "2f4ad218-98cb-4e2f-bb1c-987ed4bda00d", - "start": { - "$date": "2021-04-30T19:21:14.000Z" - }, - "end": { - "$date": "2021-04-30T19:39:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "169ad38f-b344-44e3-9cc0-97dac1645c0a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-30T19:41:31.000Z" - }, - "end": { - "$date": "2021-04-30T20:28:11.000Z" - }, - "events": [ - { - "uuid": "ef31953b-65d8-4884-98cf-5042d51bfd7d", - "start": { - "$date": "2021-04-30T19:41:31.000Z" - }, - "end": { - "$date": "2021-04-30T20:28:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4d53baa2-dae2-4cf5-a5cf-05e7680badb6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-04-30T19:33:52.000Z" - }, - "end": { - "$date": "2021-05-01T03:35:13.000Z" - }, - "events": [ - { - "uuid": "5c8a0276-7ec8-40e9-9d38-fc4c441d5ff5", - "start": { - "$date": "2021-04-30T19:33:52.000Z" - }, - "end": { - "$date": "2021-05-01T03:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a3c0884c-d104-422b-a384-8c537bf48294", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-04-30T21:13:25.000Z" - }, - "end": { - "$date": "2021-04-30T21:27:27.000Z" - }, - "events": [ - { - "uuid": "609b8684-e846-4067-ab56-0d7a78c34c03", - "start": { - "$date": "2021-04-30T21:13:25.000Z" - }, - "end": { - "$date": "2021-04-30T22:21:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff57c78f-abd8-422d-a1d9-7915989d6ac3", - "start": { - "$date": "2021-04-30T22:21:25.000Z" - }, - "end": { - "$date": "2021-04-30T22:27:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2ff9192-d807-45ef-bf7f-76ba81240f0f", - "start": { - "$date": "2021-04-30T22:27:25.000Z" - }, - "end": { - "$date": "2021-04-30T21:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "04cfb0e8-8081-40f8-b6cc-728f421e6704", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-04-30T19:59:59.000Z" - }, - "end": { - "$date": "2021-04-30T20:32:40.000Z" - }, - "events": [ - { - "uuid": "e5b6489e-7156-4bc1-905a-b8530036355c", - "start": { - "$date": "2021-04-30T19:59:59.000Z" - }, - "end": { - "$date": "2021-04-30T20:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c4af49e-88ee-486f-a530-5489cef09dcb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-30T20:40:35.000Z" - }, - "end": { - "$date": "2021-04-30T21:07:11.000Z" - }, - "events": [ - { - "uuid": "0da1266a-cc8e-4541-97b3-14efdf8e8436", - "start": { - "$date": "2021-04-30T20:40:35.000Z" - }, - "end": { - "$date": "2021-04-30T21:07:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a07b943-fe4f-48d1-989b-03c76541e04b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-30T20:31:56.000Z" - }, - "end": { - "$date": "2021-04-30T20:34:24.000Z" - }, - "events": [ - { - "uuid": "840f2817-ff91-4970-b401-93bb923b6562", - "start": { - "$date": "2021-04-30T20:31:56.000Z" - }, - "end": { - "$date": "2021-04-30T20:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2f6dbbf-1fca-4883-92cf-f48d69633101", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-04-30T22:06:34.000Z" - }, - "end": { - "$date": "2021-04-30T22:07:44.000Z" - }, - "events": [ - { - "uuid": "d4156e8b-ba59-46e8-95ba-1d89f2863daa", - "start": { - "$date": "2021-04-30T22:06:34.000Z" - }, - "end": { - "$date": "2021-04-30T22:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "e4d6485a-03bf-49c3-8f3a-d7af45f25e4e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-04-30T22:03:35.000Z" - }, - "end": { - "$date": "2021-05-01T04:00:16.000Z" - }, - "events": [ - { - "uuid": "72f9fc0f-05ae-4d2e-9fda-59fb8a80d13d", - "start": { - "$date": "2021-04-30T22:03:35.000Z" - }, - "end": { - "$date": "2021-05-01T04:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "aad316d1-59d2-4c97-bedf-41d84cfd856c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T20:52:57.000Z" - }, - "end": { - "$date": "2021-04-30T21:20:13.000Z" - }, - "events": [ - { - "uuid": "ed37fc72-5021-403a-a124-9187259f4881", - "start": { - "$date": "2021-04-30T20:52:57.000Z" - }, - "end": { - "$date": "2021-04-30T21:20:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "684a5311-2f4e-423c-83ff-d424e771b458", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-30T21:13:40.000Z" - }, - "end": { - "$date": "2021-04-30T21:34:10.000Z" - }, - "events": [ - { - "uuid": "1dfe83ef-d08d-4bf5-afd1-4eaeda44f0e9", - "start": { - "$date": "2021-04-30T21:13:40.000Z" - }, - "end": { - "$date": "2021-04-30T21:34:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e07f701e-8a2b-41ce-a0a5-07effb7a79fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T21:24:59.000Z" - }, - "end": { - "$date": "2021-04-30T21:40:49.000Z" - }, - "events": [ - { - "uuid": "1904095f-a263-4843-82bf-495783d19c1c", - "start": { - "$date": "2021-04-30T21:24:59.000Z" - }, - "end": { - "$date": "2021-04-30T21:40:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebf21e44-5fd3-4d0a-8a18-fcd46c88509e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-04-30T21:39:47.000Z" - }, - "end": { - "$date": "2021-04-30T22:06:45.000Z" - }, - "events": [ - { - "uuid": "bf760521-7270-4977-b5c2-39993f42ea8a", - "start": { - "$date": "2021-04-30T21:39:47.000Z" - }, - "end": { - "$date": "2021-04-30T22:06:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "398a804f-43f5-4ca0-93ac-c31139065488", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T22:46:18.000Z" - }, - "end": { - "$date": "2021-04-30T23:50:49.000Z" - }, - "events": [ - { - "uuid": "a94afd52-50fa-4972-bf91-0249eb12d5fa", - "start": { - "$date": "2021-04-30T22:46:18.000Z" - }, - "end": { - "$date": "2021-04-30T23:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a79ad178-290a-4d93-a8aa-abaa6e1ab473", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T21:42:05.000Z" - }, - "end": { - "$date": "2021-04-30T21:55:45.000Z" - }, - "events": [ - { - "uuid": "72da0dec-488e-4796-af96-ea0b99c74030", - "start": { - "$date": "2021-04-30T21:42:05.000Z" - }, - "end": { - "$date": "2021-04-30T21:55:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e547d3ac-52da-45c8-a629-6a66735485fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T22:01:47.000Z" - }, - "end": { - "$date": "2021-04-30T22:18:50.000Z" - }, - "events": [ - { - "uuid": "49142864-f8a5-46d0-88f6-d0dcd89b9085", - "start": { - "$date": "2021-04-30T22:01:47.000Z" - }, - "end": { - "$date": "2021-04-30T22:18:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "620c61f5-73f6-47b5-9bb4-82a20df81950", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T22:22:18.000Z" - }, - "end": { - "$date": "2021-04-30T22:43:49.000Z" - }, - "events": [ - { - "uuid": "f8cc3dbb-4069-4836-858c-a5ed2be1661e", - "start": { - "$date": "2021-04-30T22:22:18.000Z" - }, - "end": { - "$date": "2021-04-30T22:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f768b0f1-c9eb-4b6d-a2c4-52d558fd4bea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-04-30T22:49:45.000Z" - }, - "end": { - "$date": "2021-04-30T23:09:51.000Z" - }, - "events": [ - { - "uuid": "4526995c-2258-4af4-ba82-fab1999fa6a8", - "start": { - "$date": "2021-04-30T22:49:45.000Z" - }, - "end": { - "$date": "2021-04-30T23:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1b479603-2c86-46f5-96cf-2d922de31e80", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-04-30T23:52:04.000Z" - }, - "end": { - "$date": "2021-05-01T00:12:00.000Z" - }, - "events": [ - { - "uuid": "455cfa4d-f724-4237-88d7-3a7de77410ca", - "start": { - "$date": "2021-04-30T23:52:04.000Z" - }, - "end": { - "$date": "2021-05-01T00:12:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6c5a97ce-5bc4-45a9-b46f-085177f923f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T01:19:48.000Z" - }, - "end": { - "$date": "2021-05-01T01:24:43.000Z" - }, - "events": [ - { - "uuid": "6edd51d9-aa2d-4d13-813c-65f24ddeb9bc", - "start": { - "$date": "2021-05-01T01:19:48.000Z" - }, - "end": { - "$date": "2021-05-01T02:00:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "970d8def-499e-4c3c-af9f-c9bae04f15aa", - "start": { - "$date": "2021-05-01T02:00:48.000Z" - }, - "end": { - "$date": "2021-05-01T02:05:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0cad39a2-6de3-40a5-bda6-ed6ed49366e4", - "start": { - "$date": "2021-05-01T02:05:48.000Z" - }, - "end": { - "$date": "2021-05-01T02:15:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c990374-1d02-420a-8a4b-6c636edd3209", - "start": { - "$date": "2021-05-01T02:15:48.000Z" - }, - "end": { - "$date": "2021-05-01T02:19:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b5079307-5be7-40d9-abab-7dd6879299c2", - "start": { - "$date": "2021-05-01T02:19:48.000Z" - }, - "end": { - "$date": "2021-05-01T01:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "482c66d7-d2df-4f1f-893b-b66b1560116d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T00:30:55.000Z" - }, - "end": { - "$date": "2021-05-01T00:44:11.000Z" - }, - "events": [ - { - "uuid": "15ec1d33-3af6-49df-9ea3-94dddda6e931", - "start": { - "$date": "2021-05-01T00:30:55.000Z" - }, - "end": { - "$date": "2021-05-01T00:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e59c583-9173-48a8-8c0d-52d1dec3b4a2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T00:59:41.000Z" - }, - "end": { - "$date": "2021-05-01T01:17:37.000Z" - }, - "events": [ - { - "uuid": "c8eb98f1-d637-498e-a010-da52710e83ea", - "start": { - "$date": "2021-05-01T00:59:41.000Z" - }, - "end": { - "$date": "2021-05-01T01:10:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8d1fe39-7193-4acb-9bf5-48656926cd46", - "start": { - "$date": "2021-05-01T01:10:41.000Z" - }, - "end": { - "$date": "2021-05-01T01:14:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91361302-2f7f-42e7-9193-dfb0aa5173d9", - "start": { - "$date": "2021-05-01T01:14:41.000Z" - }, - "end": { - "$date": "2021-05-01T01:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "dee22ca6-9e19-4ad6-93a5-238fec807e32", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T01:41:47.000Z" - }, - "end": { - "$date": "2021-05-01T01:51:42.000Z" - }, - "events": [ - { - "uuid": "4ee3dd70-b51d-435d-bc0b-3afca494ce6f", - "start": { - "$date": "2021-05-01T01:41:47.000Z" - }, - "end": { - "$date": "2021-05-01T01:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "effba8fb-6fac-475b-a23d-8d276b49baee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T01:51:54.000Z" - }, - "end": { - "$date": "2021-05-01T01:53:21.000Z" - }, - "events": [ - { - "uuid": "345adf1a-2f51-4f89-a725-f5786c51ee3b", - "start": { - "$date": "2021-05-01T01:51:54.000Z" - }, - "end": { - "$date": "2021-05-01T01:53:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "dcc87753-5991-40e1-860c-677da0f054d5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T01:53:37.000Z" - }, - "end": { - "$date": "2021-05-01T02:12:47.000Z" - }, - "events": [ - { - "uuid": "5da194f4-8f36-4a9d-a24d-e0c0e19b3140", - "start": { - "$date": "2021-05-01T01:53:37.000Z" - }, - "end": { - "$date": "2021-05-01T02:12:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01f965db-02ee-455f-947b-6146415ec412", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T01:57:30.000Z" - }, - "end": { - "$date": "2021-05-01T01:59:19.000Z" - }, - "events": [ - { - "uuid": "d760f2b9-bb33-40ad-911b-fda60515a289", - "start": { - "$date": "2021-05-01T01:57:30.000Z" - }, - "end": { - "$date": "2021-05-01T01:59:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dec59530-7663-4e04-a12d-f609b51345c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T02:13:02.000Z" - }, - "end": { - "$date": "2021-05-01T02:14:22.000Z" - }, - "events": [ - { - "uuid": "194e17d4-a049-4ea2-944a-8ab875992be8", - "start": { - "$date": "2021-05-01T02:13:02.000Z" - }, - "end": { - "$date": "2021-05-01T02:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1565b313-c856-40ca-83b7-cd9f2a856351", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T02:17:03.000Z" - }, - "end": { - "$date": "2021-05-01T03:14:10.000Z" - }, - "events": [ - { - "uuid": "e987a3b5-d45f-43bb-963b-1da00ae32c79", - "start": { - "$date": "2021-05-01T02:17:03.000Z" - }, - "end": { - "$date": "2021-05-01T03:01:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40d4c069-7e8c-460b-a242-7a28933f5557", - "start": { - "$date": "2021-05-01T03:01:03.000Z" - }, - "end": { - "$date": "2021-05-01T03:06:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "351c3a12-75b2-4d96-a9bc-8d193d8f0632", - "start": { - "$date": "2021-05-01T03:06:03.000Z" - }, - "end": { - "$date": "2021-05-01T03:14:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "d82a5700-a9d6-49e9-b11d-f55e683ed873", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-01T02:47:55.000Z" - }, - "end": { - "$date": "2021-05-01T03:26:16.000Z" - }, - "events": [ - { - "uuid": "dfb341fe-8fa1-48fd-b8fe-85003e569529", - "start": { - "$date": "2021-05-01T02:47:55.000Z" - }, - "end": { - "$date": "2021-05-01T03:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "753abb42-0716-464d-be0c-11b089ccea8a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T02:49:16.000Z" - }, - "end": { - "$date": "2021-05-01T03:33:27.000Z" - }, - "events": [ - { - "uuid": "b05d54a6-2ce8-4880-bc1f-f5c74df772e3", - "start": { - "$date": "2021-05-01T02:49:16.000Z" - }, - "end": { - "$date": "2021-05-01T03:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "6e68a1ba-a4d7-4375-b0ed-a5ff110b2b8a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T03:14:50.000Z" - }, - "end": { - "$date": "2021-05-01T03:46:51.000Z" - }, - "events": [ - { - "uuid": "b072bc8a-595d-4ceb-a291-b7c8911c1653", - "start": { - "$date": "2021-05-01T03:14:50.000Z" - }, - "end": { - "$date": "2021-05-01T03:46:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bae770a-896e-4b9b-a3b0-067e598fe9b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T03:36:49.000Z" - }, - "end": { - "$date": "2021-05-01T04:05:26.000Z" - }, - "events": [ - { - "uuid": "afb9ad56-de5e-488a-b242-2bc3754450fa", - "start": { - "$date": "2021-05-01T03:36:49.000Z" - }, - "end": { - "$date": "2021-05-01T04:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "090ea119-d685-4526-a48b-073de705b80e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-01T03:32:32.000Z" - }, - "end": { - "$date": "2021-05-01T04:47:06.000Z" - }, - "events": [ - { - "uuid": "3c504d8c-aeaf-4f6a-8acc-a83c25f055e0", - "start": { - "$date": "2021-05-01T03:32:32.000Z" - }, - "end": { - "$date": "2021-05-01T04:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "e0f71461-d801-4b12-bae6-8d955c8761b2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-01T03:35:58.000Z" - }, - "end": { - "$date": "2021-05-01T05:02:54.000Z" - }, - "events": [ - { - "uuid": "c89bef64-42f6-471b-abd9-77a598a5901d", - "start": { - "$date": "2021-05-01T03:35:58.000Z" - }, - "end": { - "$date": "2021-05-01T05:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6b19448b-991c-40d9-8992-46209bc56ff3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T03:46:20.000Z" - }, - "end": { - "$date": "2021-05-01T04:09:42.000Z" - }, - "events": [ - { - "uuid": "22cb2f37-5c31-4cce-b556-146240e40369", - "start": { - "$date": "2021-05-01T03:46:20.000Z" - }, - "end": { - "$date": "2021-05-01T04:09:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "cf276188-494b-45ef-81ff-1fe312db0c0c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-01T03:57:43.000Z" - }, - "end": { - "$date": "2021-05-01T05:02:58.000Z" - }, - "events": [ - { - "uuid": "7fb8cdab-b95a-4965-bfc6-0d87797d2008", - "start": { - "$date": "2021-05-01T03:57:43.000Z" - }, - "end": { - "$date": "2021-05-01T05:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33245baa-130f-4410-852d-80e49e2134ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T04:10:40.000Z" - }, - "end": { - "$date": "2021-05-01T04:45:01.000Z" - }, - "events": [ - { - "uuid": "44592bf7-0b16-4206-82a2-6e843a6c3318", - "start": { - "$date": "2021-05-01T04:10:40.000Z" - }, - "end": { - "$date": "2021-05-01T04:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0758a5fb-5347-4d82-962a-666b992506fd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T04:10:28.000Z" - }, - "end": { - "$date": "2021-05-01T05:26:11.000Z" - }, - "events": [ - { - "uuid": "3236a87d-9ec3-4ae9-a01e-40d35bc880df", - "start": { - "$date": "2021-05-01T04:10:28.000Z" - }, - "end": { - "$date": "2021-05-01T05:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f90da21-5686-4f05-b975-9a1cca2c9b86", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-01T04:25:28.000Z" - }, - "end": { - "$date": "2021-05-01T04:56:32.000Z" - }, - "events": [ - { - "uuid": "8f369e5f-ba28-4e5c-9c5b-ecda358c3944", - "start": { - "$date": "2021-05-01T04:25:28.000Z" - }, - "end": { - "$date": "2021-05-01T04:56:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e8d49443-e72c-42cc-899e-92b4daffab55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T04:31:08.000Z" - }, - "end": { - "$date": "2021-05-01T04:32:07.000Z" - }, - "events": [ - { - "uuid": "511ab716-a0ee-47d1-a671-a8b02a3048e2", - "start": { - "$date": "2021-05-01T04:31:08.000Z" - }, - "end": { - "$date": "2021-05-01T04:32:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "feeb7f83-1c50-428a-977f-fc4902550216", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T04:32:33.000Z" - }, - "end": { - "$date": "2021-05-01T05:09:14.000Z" - }, - "events": [ - { - "uuid": "85c9b87f-f84e-4e67-a205-67f1f14cc8ac", - "start": { - "$date": "2021-05-01T04:32:33.000Z" - }, - "end": { - "$date": "2021-05-01T04:42:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd97c672-a0c2-492c-8093-25f883a17682", - "start": { - "$date": "2021-05-01T04:42:33.000Z" - }, - "end": { - "$date": "2021-05-01T04:47:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa8bf3e3-f2c6-4c84-a52c-697c677776bf", - "start": { - "$date": "2021-05-01T04:47:33.000Z" - }, - "end": { - "$date": "2021-05-01T04:57:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c4ac6ad-4267-49a5-8390-2e89fd14f87e", - "start": { - "$date": "2021-05-01T04:57:33.000Z" - }, - "end": { - "$date": "2021-05-01T05:01:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "95c1720d-7ec7-420b-a35e-5b89f1d2174d", - "start": { - "$date": "2021-05-01T05:01:33.000Z" - }, - "end": { - "$date": "2021-05-01T05:09:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce6ab61d-822a-442d-af62-91d8730f2df5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T05:02:33.000Z" - }, - "end": { - "$date": "2021-05-01T05:28:25.000Z" - }, - "events": [ - { - "uuid": "f0ff3ea4-f50a-44d7-a37d-78650331f71d", - "start": { - "$date": "2021-05-01T05:02:33.000Z" - }, - "end": { - "$date": "2021-05-01T05:28:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4821897-e643-4f55-8303-5ff00c0ebe60", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-01T05:01:29.000Z" - }, - "end": { - "$date": "2021-05-01T05:28:27.000Z" - }, - "events": [ - { - "uuid": "ab4d891d-d639-4339-b7af-f135c7c4112c", - "start": { - "$date": "2021-05-01T05:01:29.000Z" - }, - "end": { - "$date": "2021-05-01T05:28:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d43f6083-e7da-4f2f-99df-09e38dc1cb01", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T05:28:45.000Z" - }, - "end": { - "$date": "2021-05-01T05:38:51.000Z" - }, - "events": [ - { - "uuid": "4ab7fc52-300e-4d40-8946-81cc13e586ff", - "start": { - "$date": "2021-05-01T05:28:45.000Z" - }, - "end": { - "$date": "2021-05-01T05:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bd56d14c-5a05-4e75-a7c2-f3e30c2193d9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-01T05:34:37.000Z" - }, - "end": { - "$date": "2021-05-01T06:45:14.000Z" - }, - "events": [ - { - "uuid": "f49ee45f-5567-421a-ac02-3027ef88a405", - "start": { - "$date": "2021-05-01T05:34:37.000Z" - }, - "end": { - "$date": "2021-05-01T06:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "6cd5fbd0-b107-467c-b558-fa6ab189897f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T07:54:40.000Z" - }, - "end": { - "$date": "2021-05-01T09:27:59.000Z" - }, - "events": [ - { - "uuid": "b74fb10e-79ac-41ae-bb69-20f1fcde0e5f", - "start": { - "$date": "2021-05-01T07:54:40.000Z" - }, - "end": { - "$date": "2021-05-01T09:27:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "694481ee-8105-45df-9ba2-83cb75fadcf1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-01T05:55:35.000Z" - }, - "end": { - "$date": "2021-05-01T07:42:34.000Z" - }, - "events": [ - { - "uuid": "1d3fe5e3-c020-4a4b-a57a-6ffa4f67e7a0", - "start": { - "$date": "2021-05-01T05:55:35.000Z" - }, - "end": { - "$date": "2021-05-01T07:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "cbfd105b-5ba6-4402-8952-4a6d73f6a1de", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-01T06:50:34.000Z" - }, - "end": { - "$date": "2021-05-01T07:16:42.000Z" - }, - "events": [ - { - "uuid": "79394d8b-4f9b-46be-aa68-21bcd462ea94", - "start": { - "$date": "2021-05-01T06:50:34.000Z" - }, - "end": { - "$date": "2021-05-01T07:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6c12aff1-dc7a-4daf-b7a3-e506da97265a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-01T06:50:37.000Z" - }, - "end": { - "$date": "2021-05-01T06:58:13.000Z" - }, - "events": [ - { - "uuid": "7fcf1d89-e466-4c6c-a62e-e9d534081425", - "start": { - "$date": "2021-05-01T06:50:37.000Z" - }, - "end": { - "$date": "2021-05-01T06:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "59debf6a-5de5-403b-8e84-d8a9519c589b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-01T06:52:06.000Z" - }, - "end": { - "$date": "2021-05-01T06:55:31.000Z" - }, - "events": [ - { - "uuid": "6a769d8c-0ab5-4fce-8e50-a4ef4e35118a", - "start": { - "$date": "2021-05-01T06:52:06.000Z" - }, - "end": { - "$date": "2021-05-01T06:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4db807f8-e95c-460d-b75e-7e5729900a16", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T09:36:11.000Z" - }, - "end": { - "$date": "2021-05-01T09:59:12.000Z" - }, - "events": [ - { - "uuid": "9e58e2a8-4afb-4fc9-ba26-00418eb96026", - "start": { - "$date": "2021-05-01T09:36:11.000Z" - }, - "end": { - "$date": "2021-05-01T09:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "79db1795-5944-4b5e-999e-c1ffe5f8a530", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-01T12:59:57.000Z" - }, - "end": { - "$date": "2021-05-01T13:05:25.000Z" - }, - "events": [ - { - "uuid": "4af29631-da43-46fb-9d1d-0480065b0df7", - "start": { - "$date": "2021-05-01T12:59:57.000Z" - }, - "end": { - "$date": "2021-05-01T13:05:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "c0c5a2e0-0673-4bc4-88e8-7b02c6aac886", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-01T16:48:26.000Z" - }, - "end": { - "$date": "2021-05-01T16:48:33.000Z" - }, - "events": [ - { - "uuid": "5509ea74-b77b-4f2f-b71e-2bd7bbc9e1a5", - "start": { - "$date": "2021-05-01T16:48:26.000Z" - }, - "end": { - "$date": "2021-05-01T16:48:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f8ef1cd9-c7aa-4b07-bddb-a643fa55fa6e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T14:19:49.000Z" - }, - "end": { - "$date": "2021-05-01T14:39:16.000Z" - }, - "events": [ - { - "uuid": "316af4fb-4c84-4c19-a699-9c5c0ecb7443", - "start": { - "$date": "2021-05-01T14:19:49.000Z" - }, - "end": { - "$date": "2021-05-01T14:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8ced300c-99bc-4c37-98ee-d4771afd18ab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T14:41:37.000Z" - }, - "end": { - "$date": "2021-05-01T15:31:11.000Z" - }, - "events": [ - { - "uuid": "24d998fd-fb39-405c-8e78-89767152d663", - "start": { - "$date": "2021-05-01T14:41:37.000Z" - }, - "end": { - "$date": "2021-05-01T15:31:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "91858b35-6fe5-4ed4-b4a6-55453ef25fb5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T15:31:37.000Z" - }, - "end": { - "$date": "2021-05-01T16:02:39.000Z" - }, - "events": [ - { - "uuid": "88f11d0c-c12b-4420-81e6-87b1ac4d8cbe", - "start": { - "$date": "2021-05-01T15:31:37.000Z" - }, - "end": { - "$date": "2021-05-01T16:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6c6e262e-1002-4c29-9c94-d831d0c36ca1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T16:03:49.000Z" - }, - "end": { - "$date": "2021-05-01T16:09:00.000Z" - }, - "events": [ - { - "uuid": "f6e2f2d1-ddf0-46e2-a0b1-895f5bf81a13", - "start": { - "$date": "2021-05-01T16:03:49.000Z" - }, - "end": { - "$date": "2021-05-01T16:09:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1540e572-d26f-43f1-800c-8c9ee62d2575", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T16:09:25.000Z" - }, - "end": { - "$date": "2021-05-01T16:24:46.000Z" - }, - "events": [ - { - "uuid": "2fbd7010-99a9-490d-9124-11e8acb0e00c", - "start": { - "$date": "2021-05-01T16:09:25.000Z" - }, - "end": { - "$date": "2021-05-01T16:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad0b3b36-37a7-42ab-851d-eb5926cb1510", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T16:25:01.000Z" - }, - "end": { - "$date": "2021-05-01T17:12:10.000Z" - }, - "events": [ - { - "uuid": "078be67a-8081-4051-8b23-301473bc645a", - "start": { - "$date": "2021-05-01T16:25:01.000Z" - }, - "end": { - "$date": "2021-05-01T17:12:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a425acb7-3d82-4299-8562-89c9c790e067", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-01T16:36:35.000Z" - }, - "end": { - "$date": "2021-05-01T17:11:59.000Z" - }, - "events": [ - { - "uuid": "ab78d1ae-dfb9-4b8e-bfee-062990b275b8", - "start": { - "$date": "2021-05-01T16:36:35.000Z" - }, - "end": { - "$date": "2021-05-01T17:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "0a42a9ca-ed2f-4375-a21b-7f3c955d5720", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T17:20:36.000Z" - }, - "end": { - "$date": "2021-05-01T17:38:06.000Z" - }, - "events": [ - { - "uuid": "1bc0f46e-a6b3-4ea6-8511-18e3874add76", - "start": { - "$date": "2021-05-01T17:20:36.000Z" - }, - "end": { - "$date": "2021-05-01T17:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "44a9fed6-14bb-475b-9a65-8a814beb161b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T17:38:46.000Z" - }, - "end": { - "$date": "2021-05-01T17:41:46.000Z" - }, - "events": [ - { - "uuid": "83d6c4cc-50e0-4695-b76e-b91a458f019f", - "start": { - "$date": "2021-05-01T17:38:46.000Z" - }, - "end": { - "$date": "2021-05-01T17:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "752fb626-a991-4e4b-81de-3ae4e73e0020", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T17:42:01.000Z" - }, - "end": { - "$date": "2021-05-01T23:40:41.000Z" - }, - "events": [ - { - "uuid": "2412fd60-78c6-466d-9550-1ffd5d14e0ec", - "start": { - "$date": "2021-05-01T17:42:01.000Z" - }, - "end": { - "$date": "2021-05-01T20:17:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "654df55a-b9d2-450f-9973-a6146579a77f", - "start": { - "$date": "2021-05-01T20:17:01.000Z" - }, - "end": { - "$date": "2021-05-01T21:58:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0983b6b4-e8dc-4e5a-afa5-1d74c104899e", - "start": { - "$date": "2021-05-01T21:58:01.000Z" - }, - "end": { - "$date": "2021-05-01T22:18:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0af5a00f-4db1-4e86-9760-e3962634595b", - "start": { - "$date": "2021-05-01T22:18:01.000Z" - }, - "end": { - "$date": "2021-05-01T22:23:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5be3519c-0378-4a2b-9bb6-9075c3afca35", - "start": { - "$date": "2021-05-01T22:23:01.000Z" - }, - "end": { - "$date": "2021-05-01T22:43:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c0920216-924e-483f-be69-b5a9a00d1b2f", - "start": { - "$date": "2021-05-01T22:43:01.000Z" - }, - "end": { - "$date": "2021-05-01T23:12:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "63dbb72e-789b-46e8-ba62-ca06d8ec791f", - "start": { - "$date": "2021-05-01T23:12:01.000Z" - }, - "end": { - "$date": "2021-05-01T23:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a44764ad-e713-497c-8b24-c448044bad73", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T18:06:18.000Z" - }, - "end": { - "$date": "2021-05-01T18:25:33.000Z" - }, - "events": [ - { - "uuid": "44d41235-7644-4f20-a864-48929f5631ba", - "start": { - "$date": "2021-05-01T18:06:18.000Z" - }, - "end": { - "$date": "2021-05-01T18:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "0a798484-1c0b-4f97-a8f0-291d61de304a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-01T18:21:54.000Z" - }, - "end": { - "$date": "2021-05-01T18:23:05.000Z" - }, - "events": [ - { - "uuid": "a6d4290d-2f05-4500-8277-c4088c6a40b7", - "start": { - "$date": "2021-05-01T18:21:54.000Z" - }, - "end": { - "$date": "2021-05-01T18:23:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce1c0361-4b78-4762-9fa8-ef6fbbb41e46", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T18:29:44.000Z" - }, - "end": { - "$date": "2021-05-01T18:42:14.000Z" - }, - "events": [ - { - "uuid": "cf07de93-18c1-4073-9877-ea361936899e", - "start": { - "$date": "2021-05-01T18:29:44.000Z" - }, - "end": { - "$date": "2021-05-01T18:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7803f155-5a62-4ac2-b4d1-c74fafafb781", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T18:44:25.000Z" - }, - "end": { - "$date": "2021-05-01T19:04:56.000Z" - }, - "events": [ - { - "uuid": "199635ff-3f5a-490b-adcf-35561871d5f4", - "start": { - "$date": "2021-05-01T18:44:25.000Z" - }, - "end": { - "$date": "2021-05-01T19:04:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3d30dca-56f4-4ece-8e84-e91cccc51055", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T18:55:38.000Z" - }, - "end": { - "$date": "2021-05-01T19:25:16.000Z" - }, - "events": [ - { - "uuid": "fc68d1ad-7fbd-4b47-a956-b026427478cc", - "start": { - "$date": "2021-05-01T18:55:38.000Z" - }, - "end": { - "$date": "2021-05-01T19:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3315f0fc-f730-4305-98b2-1e2a56be262a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-01T20:37:58.000Z" - }, - "end": { - "$date": "2021-05-01T20:51:55.000Z" - }, - "events": [ - { - "uuid": "3a595c57-b722-424f-a4f6-ae757e61c3e4", - "start": { - "$date": "2021-05-01T20:37:58.000Z" - }, - "end": { - "$date": "2021-05-01T20:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fbd559a-6a20-438a-a673-66b53162a485", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T21:09:40.000Z" - }, - "end": { - "$date": "2021-05-01T21:36:10.000Z" - }, - "events": [ - { - "uuid": "7cada639-4fe2-4da8-b3b5-6dde624cc4e4", - "start": { - "$date": "2021-05-01T21:09:40.000Z" - }, - "end": { - "$date": "2021-05-01T21:41:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7ef3e1f-3fcf-4541-8842-592f58015ab7", - "start": { - "$date": "2021-05-01T21:41:40.000Z" - }, - "end": { - "$date": "2021-05-01T21:42:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97ee60c3-dc2a-4570-894b-855e669da092", - "start": { - "$date": "2021-05-01T21:42:40.000Z" - }, - "end": { - "$date": "2021-05-01T21:58:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "effd2e41-2da3-41fa-a33f-6e7cc213cb82", - "start": { - "$date": "2021-05-01T21:58:40.000Z" - }, - "end": { - "$date": "2021-05-01T22:00:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4114b57-2947-4923-a1e1-13a1650c8c1c", - "start": { - "$date": "2021-05-01T22:00:40.000Z" - }, - "end": { - "$date": "2021-05-01T21:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9126be98-23cc-4d75-b018-75c17958ee70", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T19:30:38.000Z" - }, - "end": { - "$date": "2021-05-01T19:34:28.000Z" - }, - "events": [ - { - "uuid": "37298def-0471-41fb-a4b8-0fb205745dde", - "start": { - "$date": "2021-05-01T19:30:38.000Z" - }, - "end": { - "$date": "2021-05-01T19:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8c559e21-380b-4883-b5a7-89539c0e2818", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-01T19:55:31.000Z" - }, - "end": { - "$date": "2021-05-01T20:11:58.000Z" - }, - "events": [ - { - "uuid": "37216cd3-44a6-46fb-a8fd-8fd57370e698", - "start": { - "$date": "2021-05-01T19:55:31.000Z" - }, - "end": { - "$date": "2021-05-01T20:11:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "fbca90c8-7b7b-45b3-a7f3-ebfe2fc903ee", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-01T20:13:53.000Z" - }, - "end": { - "$date": "2021-05-01T22:04:12.000Z" - }, - "events": [ - { - "uuid": "b6079f3e-6cce-4f63-bb6b-ef4bdf959d71", - "start": { - "$date": "2021-05-01T20:13:53.000Z" - }, - "end": { - "$date": "2021-05-01T22:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f59843c3-a6ef-4d97-9fa7-91f698cd8973", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-01T21:36:22.000Z" - }, - "end": { - "$date": "2021-05-01T22:47:43.000Z" - }, - "events": [ - { - "uuid": "707c09c8-55cb-4262-90db-5d90f812f0b9", - "start": { - "$date": "2021-05-01T21:36:22.000Z" - }, - "end": { - "$date": "2021-05-01T22:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2a379df-c1eb-4895-88c7-bf06aacfca19", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T21:37:11.000Z" - }, - "end": { - "$date": "2021-05-01T22:50:38.000Z" - }, - "events": [ - { - "uuid": "0a4ce4d4-f0b0-4cba-81cb-76c24d7c3cc9", - "start": { - "$date": "2021-05-01T21:37:11.000Z" - }, - "end": { - "$date": "2021-05-01T21:57:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d8d904b1-593e-4c56-84c8-ece9bef323dd", - "start": { - "$date": "2021-05-01T21:57:11.000Z" - }, - "end": { - "$date": "2021-05-01T22:49:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee92de75-a9c8-4945-850e-bedf7df72a8a", - "start": { - "$date": "2021-05-01T22:49:11.000Z" - }, - "end": { - "$date": "2021-05-01T22:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99504383-f7c0-4bd8-8f25-b3e2d8315029", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-01T22:53:28.000Z" - }, - "end": { - "$date": "2021-05-01T23:56:04.000Z" - }, - "events": [ - { - "uuid": "2fcf7a43-c8a4-4148-87e0-179412a45cba", - "start": { - "$date": "2021-05-01T22:53:28.000Z" - }, - "end": { - "$date": "2021-05-01T23:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab306ca9-44cf-407a-9601-0b86d9709121", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-01T23:16:36.000Z" - }, - "end": { - "$date": "2021-05-01T23:49:26.000Z" - }, - "events": [ - { - "uuid": "5c343215-edc6-4ee7-967b-c36ddaad9613", - "start": { - "$date": "2021-05-01T23:16:36.000Z" - }, - "end": { - "$date": "2021-05-01T23:49:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa6df1d8-b3e5-4cae-81f2-86378d2c4ae0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-01T23:16:41.000Z" - }, - "end": { - "$date": "2021-05-01T23:49:21.000Z" - }, - "events": [ - { - "uuid": "89d89778-8be6-4241-b70a-dca1d2a931bf", - "start": { - "$date": "2021-05-01T23:16:41.000Z" - }, - "end": { - "$date": "2021-05-01T23:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "4cfa0bb7-ecd4-48c4-aef4-0d92b4049a61", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-01T23:41:51.000Z" - }, - "end": { - "$date": "2021-05-02T00:09:33.000Z" - }, - "events": [ - { - "uuid": "c9272d83-db59-471a-a05e-e3e0bb8c437e", - "start": { - "$date": "2021-05-01T23:41:51.000Z" - }, - "end": { - "$date": "2021-05-02T00:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8589038c-2e64-4339-a083-8b4710bebf81", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T02:35:47.000Z" - }, - "end": { - "$date": "2021-05-02T03:00:09.000Z" - }, - "events": [ - { - "uuid": "fe9593a9-8d29-406c-a88d-35d7b520ad12", - "start": { - "$date": "2021-05-02T02:35:47.000Z" - }, - "end": { - "$date": "2021-05-02T02:49:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31e56efb-e767-454f-b52b-b1675cee3121", - "start": { - "$date": "2021-05-02T02:49:47.000Z" - }, - "end": { - "$date": "2021-05-02T02:50:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be04443a-c497-4d42-b1ff-c20f6792aa64", - "start": { - "$date": "2021-05-02T02:50:47.000Z" - }, - "end": { - "$date": "2021-05-02T02:51:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc429454-5ea8-41f2-a740-6d5f408aec19", - "start": { - "$date": "2021-05-02T02:51:47.000Z" - }, - "end": { - "$date": "2021-05-02T02:56:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "707bae92-856f-4956-ba91-a44d2a8a759b", - "start": { - "$date": "2021-05-02T02:56:47.000Z" - }, - "end": { - "$date": "2021-05-02T03:13:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ac840daa-e02b-4567-a399-9f88edf4c93f", - "start": { - "$date": "2021-05-02T03:13:47.000Z" - }, - "end": { - "$date": "2021-05-02T03:51:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7cabb2d4-52a4-4104-a830-2a02a7d3b853", - "start": { - "$date": "2021-05-02T03:51:47.000Z" - }, - "end": { - "$date": "2021-05-02T04:01:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3442dece-15b8-46b2-8415-f9b4eaf108e5", - "start": { - "$date": "2021-05-02T04:01:47.000Z" - }, - "end": { - "$date": "2021-05-02T04:41:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "205e5187-24c3-4621-b037-153be0115fa3", - "start": { - "$date": "2021-05-02T04:41:47.000Z" - }, - "end": { - "$date": "2021-05-02T04:55:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "18159922-062e-4846-b86f-20e45a1fd00c", - "start": { - "$date": "2021-05-02T04:55:47.000Z" - }, - "end": { - "$date": "2021-05-02T04:56:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef916d99-eba3-4c38-95e5-84b79301915f", - "start": { - "$date": "2021-05-02T04:56:47.000Z" - }, - "end": { - "$date": "2021-05-02T04:58:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70925448-42ba-436a-b6e2-68258335df53", - "start": { - "$date": "2021-05-02T04:58:47.000Z" - }, - "end": { - "$date": "2021-05-02T05:01:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7d6e44b9-66ef-4151-b615-3cc43abaf025", - "start": { - "$date": "2021-05-02T05:01:47.000Z" - }, - "end": { - "$date": "2021-05-02T05:03:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a2edd42-c995-407f-a8d5-c92586152551", - "start": { - "$date": "2021-05-02T05:03:47.000Z" - }, - "end": { - "$date": "2021-05-02T05:06:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6311938e-044a-4d52-bcce-e56299162f2f", - "start": { - "$date": "2021-05-02T05:06:47.000Z" - }, - "end": { - "$date": "2021-05-02T03:00:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f426a41c-8be0-4cd4-a407-a413beadcf12", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-01T23:52:32.000Z" - }, - "end": { - "$date": "2021-05-01T23:55:21.000Z" - }, - "events": [ - { - "uuid": "f1050c3d-06ea-46ff-b632-2e6660ff11a5", - "start": { - "$date": "2021-05-01T23:52:32.000Z" - }, - "end": { - "$date": "2021-05-01T23:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67b9ae4e-8cb0-43f2-a294-96b564084f0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-02T00:10:14.000Z" - }, - "end": { - "$date": "2021-05-02T00:10:23.000Z" - }, - "events": [ - { - "uuid": "20f426fa-1509-4264-a608-e47e8be9b744", - "start": { - "$date": "2021-05-02T00:10:14.000Z" - }, - "end": { - "$date": "2021-05-02T00:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e8ba9163-0710-43c7-83d1-a9f1ffcb258c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T00:09:03.000Z" - }, - "end": { - "$date": "2021-05-02T00:35:43.000Z" - }, - "events": [ - { - "uuid": "31b5c6e4-ccff-4826-98be-bfcfab040469", - "start": { - "$date": "2021-05-02T00:09:03.000Z" - }, - "end": { - "$date": "2021-05-02T00:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5cb68fdb-1849-4618-ba09-7e847433979b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-02T00:10:59.000Z" - }, - "end": { - "$date": "2021-05-02T01:46:03.000Z" - }, - "events": [ - { - "uuid": "64803be0-2038-472b-a6c2-6e0828fc90f2", - "start": { - "$date": "2021-05-02T00:10:59.000Z" - }, - "end": { - "$date": "2021-05-02T01:35:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad55daa8-eb8a-4f11-bc17-93d45a439d45", - "start": { - "$date": "2021-05-02T01:35:59.000Z" - }, - "end": { - "$date": "2021-05-02T01:43:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d364c69-48e2-4544-aff2-9f2c8e6541d9", - "start": { - "$date": "2021-05-02T01:43:59.000Z" - }, - "end": { - "$date": "2021-05-02T01:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "72f7557f-9a0d-45f0-ada4-79040bb0543f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-02T01:53:12.000Z" - }, - "end": { - "$date": "2021-05-02T01:53:23.000Z" - }, - "events": [ - { - "uuid": "9ae0cbd6-aaaa-43fd-81b9-c5a68701c6ba", - "start": { - "$date": "2021-05-02T01:53:12.000Z" - }, - "end": { - "$date": "2021-05-02T01:53:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "25b201d5-8fde-4e9a-8e82-bdfdccb15336", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T01:23:11.000Z" - }, - "end": { - "$date": "2021-05-02T02:25:03.000Z" - }, - "events": [ - { - "uuid": "27202455-05e0-4683-82a8-66e96ce2c4ee", - "start": { - "$date": "2021-05-02T01:23:11.000Z" - }, - "end": { - "$date": "2021-05-02T02:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d74a21d1-818b-4bbc-b14d-e01ff83ca921", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-02T02:02:11.000Z" - }, - "end": { - "$date": "2021-05-02T02:15:27.000Z" - }, - "events": [ - { - "uuid": "8cd1d055-8c99-4e49-a956-f9c0072877c2", - "start": { - "$date": "2021-05-02T02:02:11.000Z" - }, - "end": { - "$date": "2021-05-02T02:15:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a92ea44d-a90a-4c35-afff-baa6f9d32349", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-02T04:28:41.000Z" - }, - "end": { - "$date": "2021-05-02T04:38:23.000Z" - }, - "events": [ - { - "uuid": "27d6af5c-0dfd-4915-856d-1050e8c65f13", - "start": { - "$date": "2021-05-02T04:28:41.000Z" - }, - "end": { - "$date": "2021-05-02T05:36:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24be6777-3cce-4b48-a134-998846c69f0f", - "start": { - "$date": "2021-05-02T05:36:41.000Z" - }, - "end": { - "$date": "2021-05-02T05:50:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cdc0f41e-21e4-4a50-8176-f037726c620d", - "start": { - "$date": "2021-05-02T05:50:41.000Z" - }, - "end": { - "$date": "2021-05-02T04:38:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0a87a4eb-760c-460c-a408-ea9d0ac4abcd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T02:25:11.000Z" - }, - "end": { - "$date": "2021-05-02T03:39:34.000Z" - }, - "events": [ - { - "uuid": "4ffabab0-7752-4f15-8f0c-0b27a7524d5e", - "start": { - "$date": "2021-05-02T02:25:11.000Z" - }, - "end": { - "$date": "2021-05-02T03:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4a1d1381-2a2f-47ae-87df-01b2c3b193bb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-02T02:41:29.000Z" - }, - "end": { - "$date": "2021-05-02T02:49:50.000Z" - }, - "events": [ - { - "uuid": "f31902ed-7dc0-4b4b-8393-a21705d45a23", - "start": { - "$date": "2021-05-02T02:41:29.000Z" - }, - "end": { - "$date": "2021-05-02T02:49:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "56a4e0dc-2b3f-4d69-bd2e-e7992ea7d1fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-02T03:31:28.000Z" - }, - "end": { - "$date": "2021-05-02T04:51:21.000Z" - }, - "events": [ - { - "uuid": "9277637d-cbfe-4a8a-b503-8e8a5fea5c2c", - "start": { - "$date": "2021-05-02T03:31:28.000Z" - }, - "end": { - "$date": "2021-05-02T04:51:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "01c6278c-ea5c-4aab-991e-d8d14d5f6788", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T02:45:05.000Z" - }, - "end": { - "$date": "2021-05-02T02:53:45.000Z" - }, - "events": [ - { - "uuid": "d04a6a96-e7c2-4f6b-bc21-aa46e15de87e", - "start": { - "$date": "2021-05-02T02:45:05.000Z" - }, - "end": { - "$date": "2021-05-02T02:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ec0992e9-6c19-44a6-99b0-10916f8cc252", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-02T02:47:50.000Z" - }, - "end": { - "$date": "2021-05-02T04:03:11.000Z" - }, - "events": [ - { - "uuid": "0559d45b-48b8-474d-8d59-6997c0d9e617", - "start": { - "$date": "2021-05-02T02:47:50.000Z" - }, - "end": { - "$date": "2021-05-02T04:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ffbf87fc-1331-4bc7-8d72-d81083f64ba1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-02T02:50:20.000Z" - }, - "end": { - "$date": "2021-05-02T03:14:27.000Z" - }, - "events": [ - { - "uuid": "fd967f65-782b-4385-b260-713bf6a90dcf", - "start": { - "$date": "2021-05-02T02:50:20.000Z" - }, - "end": { - "$date": "2021-05-02T03:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9925c83b-4374-43be-b27c-9cb645dbc903", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T02:58:20.000Z" - }, - "end": { - "$date": "2021-05-02T04:03:14.000Z" - }, - "events": [ - { - "uuid": "c7fbca5f-b7dd-4ed8-bc69-a5078bc7d700", - "start": { - "$date": "2021-05-02T02:58:20.000Z" - }, - "end": { - "$date": "2021-05-02T04:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae6119c8-22bd-41fd-bac7-f7658596df44", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T03:56:37.000Z" - }, - "end": { - "$date": "2021-05-02T04:29:10.000Z" - }, - "events": [ - { - "uuid": "91ac117f-89bb-4d71-8b2a-53a1f31a0ed7", - "start": { - "$date": "2021-05-02T03:56:37.000Z" - }, - "end": { - "$date": "2021-05-02T04:11:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19f638ac-b876-4844-8360-71b40178b782", - "start": { - "$date": "2021-05-02T04:11:37.000Z" - }, - "end": { - "$date": "2021-05-02T04:37:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a076c910-a6fb-4cdc-a281-0eaae1790ba4", - "start": { - "$date": "2021-05-02T04:37:37.000Z" - }, - "end": { - "$date": "2021-05-02T04:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "98491702-18f0-4797-a640-5afa55362f8a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T03:39:39.000Z" - }, - "end": { - "$date": "2021-05-02T04:29:06.000Z" - }, - "events": [ - { - "uuid": "5bf57097-f7fa-475f-a0cf-2187a16d6703", - "start": { - "$date": "2021-05-02T03:39:39.000Z" - }, - "end": { - "$date": "2021-05-02T04:29:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d2eda0e7-9744-400a-bfee-eb9cee950658", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T05:36:54.000Z" - }, - "end": { - "$date": "2021-05-02T05:44:59.000Z" - }, - "events": [ - { - "uuid": "5bfa778c-5431-485b-8fff-8394067c38d6", - "start": { - "$date": "2021-05-02T05:36:54.000Z" - }, - "end": { - "$date": "2021-05-02T05:44:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fb03692-93f8-470b-9109-1e4d09ef335b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T04:29:32.000Z" - }, - "end": { - "$date": "2021-05-02T05:06:47.000Z" - }, - "events": [ - { - "uuid": "8923b353-a4cd-4e4c-a089-926177f00e98", - "start": { - "$date": "2021-05-02T04:29:32.000Z" - }, - "end": { - "$date": "2021-05-02T04:49:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "404493e6-8455-4467-bf94-9ade7a28efee", - "start": { - "$date": "2021-05-02T04:49:32.000Z" - }, - "end": { - "$date": "2021-05-02T04:52:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f467b83f-a667-4880-ae2a-21c1f2cde6a6", - "start": { - "$date": "2021-05-02T04:52:32.000Z" - }, - "end": { - "$date": "2021-05-02T05:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f94ba90e-7bc0-4b77-ae71-be72867a3fcd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-02T04:31:38.000Z" - }, - "end": { - "$date": "2021-05-02T07:26:53.000Z" - }, - "events": [ - { - "uuid": "19b097ef-b497-428f-bf51-5c2080e400d4", - "start": { - "$date": "2021-05-02T04:31:38.000Z" - }, - "end": { - "$date": "2021-05-02T07:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e1416ed9-366e-4c98-9fae-1dd237a0206a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T05:45:09.000Z" - }, - "end": { - "$date": "2021-05-02T06:21:41.000Z" - }, - "events": [ - { - "uuid": "01c8bdde-b325-45fd-b96b-15a86696337b", - "start": { - "$date": "2021-05-02T05:45:09.000Z" - }, - "end": { - "$date": "2021-05-02T06:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "fe2abf3c-d68e-4550-9a0c-1a9b533b815b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T06:22:11.000Z" - }, - "end": { - "$date": "2021-05-02T06:43:31.000Z" - }, - "events": [ - { - "uuid": "81108db4-0e9e-496c-8d0b-895d501357f9", - "start": { - "$date": "2021-05-02T06:22:11.000Z" - }, - "end": { - "$date": "2021-05-02T06:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", - "uuid": "b09b00c3-23a0-4292-8d9c-0f5f0a8a1dad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T07:20:08.000Z" - }, - "end": { - "$date": "2021-05-02T07:25:13.000Z" - }, - "events": [ - { - "uuid": "dfa98ad7-50ab-4885-9114-e5a6f30aa4b3", - "start": { - "$date": "2021-05-02T07:20:08.000Z" - }, - "end": { - "$date": "2021-05-02T07:25:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "4876e647-fdd5-41e0-ade2-d086d923aba9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-02T07:29:59.000Z" - }, - "end": { - "$date": "2021-05-02T08:10:56.000Z" - }, - "events": [ - { - "uuid": "3dcf091d-94a7-4dd7-ab85-093e237d5260", - "start": { - "$date": "2021-05-02T07:29:59.000Z" - }, - "end": { - "$date": "2021-05-02T08:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "e7abb366-1e82-420a-8b47-db33daf07ccf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T07:51:53.000Z" - }, - "end": { - "$date": "2021-05-02T08:46:05.000Z" - }, - "events": [ - { - "uuid": "54e084b0-8257-424a-b2c1-cf8e866fe10b", - "start": { - "$date": "2021-05-02T07:51:53.000Z" - }, - "end": { - "$date": "2021-05-02T08:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "260d577b-f961-4b28-a4fd-7ccb07935108", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-02T08:30:18.000Z" - }, - "end": { - "$date": "2021-05-02T09:25:10.000Z" - }, - "events": [ - { - "uuid": "f92cfcd4-6c4c-42a6-b94d-f8a24cbe240a", - "start": { - "$date": "2021-05-02T08:30:18.000Z" - }, - "end": { - "$date": "2021-05-02T09:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "57808cf5-d4f4-4f0a-af88-53e8469c1eb0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T08:47:50.000Z" - }, - "end": { - "$date": "2021-05-02T09:39:08.000Z" - }, - "events": [ - { - "uuid": "a396281b-a41a-42d6-a9ae-0da8fa344fbb", - "start": { - "$date": "2021-05-02T08:47:50.000Z" - }, - "end": { - "$date": "2021-05-02T09:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e92f80b6-a5f7-4493-a0fe-8f3f35fb4654", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T09:39:19.000Z" - }, - "end": { - "$date": "2021-05-02T09:49:35.000Z" - }, - "events": [ - { - "uuid": "f4ee9a68-e6da-4456-b0c0-94ee9449c2b1", - "start": { - "$date": "2021-05-02T09:39:19.000Z" - }, - "end": { - "$date": "2021-05-02T09:49:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4754ef44-8efa-46de-945a-b8c53cd31066", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T09:49:45.000Z" - }, - "end": { - "$date": "2021-05-02T10:10:04.000Z" - }, - "events": [ - { - "uuid": "13370a0e-f0c4-44d7-adcc-6a44784b6107", - "start": { - "$date": "2021-05-02T09:49:45.000Z" - }, - "end": { - "$date": "2021-05-02T10:10:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "4cb405fb-7537-4e5a-9843-e6a18477d975", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-02T13:30:02.000Z" - }, - "end": { - "$date": "2021-05-02T13:30:08.000Z" - }, - "events": [ - { - "uuid": "3e87cbfc-5334-4228-87c5-8b4548aa640a", - "start": { - "$date": "2021-05-02T13:30:02.000Z" - }, - "end": { - "$date": "2021-05-02T13:30:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1353764b-c34f-475b-9cf1-89892fa18aaa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T13:12:11.000Z" - }, - "end": { - "$date": "2021-05-02T13:45:05.000Z" - }, - "events": [ - { - "uuid": "41fbfe74-a474-4dc9-bea3-8a2229b0664a", - "start": { - "$date": "2021-05-02T13:12:11.000Z" - }, - "end": { - "$date": "2021-05-02T13:45:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e8f32dc-688c-493c-96c0-23f4fc45dbfd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T13:52:57.000Z" - }, - "end": { - "$date": "2021-05-02T14:19:44.000Z" - }, - "events": [ - { - "uuid": "892f5e92-6ef3-42a9-a64c-42566a9d34d5", - "start": { - "$date": "2021-05-02T13:52:57.000Z" - }, - "end": { - "$date": "2021-05-02T14:19:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "1ec99ec1-c64d-4c72-b884-36b75aee9f31", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T14:15:42.000Z" - }, - "end": { - "$date": "2021-05-02T14:45:11.000Z" - }, - "events": [ - { - "uuid": "e9ff26e0-9ca1-4d1c-a010-f4f79f099e2f", - "start": { - "$date": "2021-05-02T14:15:42.000Z" - }, - "end": { - "$date": "2021-05-02T14:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "886297c0-52d7-4cb5-97a8-5df3d163ec35", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T14:25:56.000Z" - }, - "end": { - "$date": "2021-05-02T15:01:40.000Z" - }, - "events": [ - { - "uuid": "1d4062ba-dac1-4a5f-8fb7-13fa708b86f2", - "start": { - "$date": "2021-05-02T14:25:56.000Z" - }, - "end": { - "$date": "2021-05-02T15:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9d10a6a-a16e-42c5-966e-bc90de755dcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T14:45:51.000Z" - }, - "end": { - "$date": "2021-05-02T15:40:54.000Z" - }, - "events": [ - { - "uuid": "bd61e6ee-e1aa-43f4-a4b2-faa993b96145", - "start": { - "$date": "2021-05-02T14:45:51.000Z" - }, - "end": { - "$date": "2021-05-02T15:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc5ad0ac-fcf8-472b-91c4-d0c6fc3601e5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T15:06:40.000Z" - }, - "end": { - "$date": "2021-05-02T15:34:43.000Z" - }, - "events": [ - { - "uuid": "8af61b04-3bc2-4b62-95c7-94c10a7c3332", - "start": { - "$date": "2021-05-02T15:06:40.000Z" - }, - "end": { - "$date": "2021-05-02T15:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a7b8fdeb-3686-4d20-b991-fbb4a41e5145", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-02T23:20:41.000Z" - }, - "end": { - "$date": "2021-05-02T23:53:31.000Z" - }, - "events": [ - { - "uuid": "8e8f448e-cbc2-4756-beaa-00655d38dc1e", - "start": { - "$date": "2021-05-02T23:20:41.000Z" - }, - "end": { - "$date": "2021-05-02T23:57:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e7bede7-d549-4528-861d-faa37a900c1b", - "start": { - "$date": "2021-05-02T23:57:41.000Z" - }, - "end": { - "$date": "2021-05-02T23:59:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32f77ff9-6088-4ef6-916d-43a114f2555c", - "start": { - "$date": "2021-05-02T23:59:41.000Z" - }, - "end": { - "$date": "2021-05-03T04:16:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d0e3bce-b0b9-4e3f-8cfd-6b273d2494c0", - "start": { - "$date": "2021-05-03T04:16:41.000Z" - }, - "end": { - "$date": "2021-05-03T04:43:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e85a1f68-ccf4-4bfa-b60e-2d1caa6eed35", - "start": { - "$date": "2021-05-03T04:43:41.000Z" - }, - "end": { - "$date": "2021-05-03T06:12:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1793b2da-2138-4685-9acb-140b388c0018", - "start": { - "$date": "2021-05-03T06:12:41.000Z" - }, - "end": { - "$date": "2021-05-03T06:40:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9ddab46b-4f13-48c8-8a9e-8e0dbba4e457", - "start": { - "$date": "2021-05-03T06:40:41.000Z" - }, - "end": { - "$date": "2021-05-02T23:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91380eda-929e-4d16-93f0-454b7219e3e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T16:10:48.000Z" - }, - "end": { - "$date": "2021-05-02T16:24:30.000Z" - }, - "events": [ - { - "uuid": "53090871-5744-4a25-abae-38b6904015af", - "start": { - "$date": "2021-05-02T16:10:48.000Z" - }, - "end": { - "$date": "2021-05-02T16:25:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a96de37-d9fe-42cf-b3ba-7905c8e62f4d", - "start": { - "$date": "2021-05-02T16:25:48.000Z" - }, - "end": { - "$date": "2021-05-02T16:32:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15cff21b-9e07-4dec-92e3-83d9f4676d08", - "start": { - "$date": "2021-05-02T16:32:48.000Z" - }, - "end": { - "$date": "2021-05-02T16:24:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "31a8cf15-9fd7-4fd4-9deb-ee06fc6470ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T15:41:04.000Z" - }, - "end": { - "$date": "2021-05-02T16:29:49.000Z" - }, - "events": [ - { - "uuid": "c961c595-977c-4a3e-89a7-fedee7b5c1f4", - "start": { - "$date": "2021-05-02T15:41:04.000Z" - }, - "end": { - "$date": "2021-05-02T16:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "002ce6d8-088c-415b-8466-373f9c5e9144", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T16:29:20.000Z" - }, - "end": { - "$date": "2021-05-02T17:06:29.000Z" - }, - "events": [ - { - "uuid": "e3fb0670-e8b5-42ec-9971-48ae7faee1dd", - "start": { - "$date": "2021-05-02T16:29:20.000Z" - }, - "end": { - "$date": "2021-05-02T17:06:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "14765424-b817-42d4-83a1-8af1d1aad2f0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T16:39:00.000Z" - }, - "end": { - "$date": "2021-05-02T16:47:21.000Z" - }, - "events": [ - { - "uuid": "b777f898-3df8-4488-a97b-5c6c8f15ed3c", - "start": { - "$date": "2021-05-02T16:39:00.000Z" - }, - "end": { - "$date": "2021-05-02T16:47:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4b8105ca-5582-4f3a-bbef-90427b87fae5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T16:47:31.000Z" - }, - "end": { - "$date": "2021-05-02T17:38:42.000Z" - }, - "events": [ - { - "uuid": "e988e381-9282-42ea-a40f-243c4571a129", - "start": { - "$date": "2021-05-02T16:47:31.000Z" - }, - "end": { - "$date": "2021-05-02T17:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41ec599d-8fe0-4f39-abca-e5cf0b2e999f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T17:10:50.000Z" - }, - "end": { - "$date": "2021-05-02T17:23:36.000Z" - }, - "events": [ - { - "uuid": "74ef5590-1bf2-4787-acca-b72659f4e678", - "start": { - "$date": "2021-05-02T17:10:50.000Z" - }, - "end": { - "$date": "2021-05-02T17:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "719842ad-a15f-40a9-b9b0-1ba734ccf6b0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T17:28:43.000Z" - }, - "end": { - "$date": "2021-05-02T17:57:11.000Z" - }, - "events": [ - { - "uuid": "c0fb6316-027f-4b30-8af7-34337e263d4d", - "start": { - "$date": "2021-05-02T17:28:43.000Z" - }, - "end": { - "$date": "2021-05-02T17:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "916f585d-6e81-44dc-ad80-0559595481f5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-02T17:46:54.000Z" - }, - "end": { - "$date": "2021-05-02T18:02:21.000Z" - }, - "events": [ - { - "uuid": "5e5ede3b-ee04-4384-8d40-a4ea5c3d9576", - "start": { - "$date": "2021-05-02T17:46:54.000Z" - }, - "end": { - "$date": "2021-05-02T18:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5a56ff2d-abe9-4ec2-9503-a77eac00a953", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-03T00:04:20.000Z" - }, - "end": { - "$date": "2021-05-03T00:32:08.000Z" - }, - "events": [ - { - "uuid": "f270ace5-3920-46cf-8818-6649aa95fe31", - "start": { - "$date": "2021-05-03T00:04:20.000Z" - }, - "end": { - "$date": "2021-05-03T02:50:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d9b869e-2dfb-4bae-b02b-92de8b663039", - "start": { - "$date": "2021-05-03T02:50:20.000Z" - }, - "end": { - "$date": "2021-05-03T02:55:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af3e51dd-6943-4d26-94c1-ffee33d57a3f", - "start": { - "$date": "2021-05-03T02:55:20.000Z" - }, - "end": { - "$date": "2021-05-03T04:36:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46ea55f0-5326-484b-9462-cafcd4bbbc7a", - "start": { - "$date": "2021-05-03T04:36:20.000Z" - }, - "end": { - "$date": "2021-05-03T04:42:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6662b40-af72-4210-b174-deb1fbc02963", - "start": { - "$date": "2021-05-03T04:42:20.000Z" - }, - "end": { - "$date": "2021-05-03T04:44:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b269f92-739c-451b-a86c-6c9b2a01c488", - "start": { - "$date": "2021-05-03T04:44:20.000Z" - }, - "end": { - "$date": "2021-05-03T05:26:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3dec1d47-1b40-44c7-8f12-e35511ee9ab8", - "start": { - "$date": "2021-05-03T05:26:20.000Z" - }, - "end": { - "$date": "2021-05-03T06:22:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa136b31-222a-4ede-9948-14a124a5f20d", - "start": { - "$date": "2021-05-03T06:22:20.000Z" - }, - "end": { - "$date": "2021-05-03T00:32:08.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69e3b2e8-09d5-4eb8-8532-2b4e38143516", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T19:31:11.000Z" - }, - "end": { - "$date": "2021-05-02T20:03:54.000Z" - }, - "events": [ - { - "uuid": "134df324-9240-4bc5-ab35-1f5af9bbf05d", - "start": { - "$date": "2021-05-02T19:31:11.000Z" - }, - "end": { - "$date": "2021-05-02T20:03:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0721553a-1cd6-46d1-bb7a-c6da356a3db2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T19:45:09.000Z" - }, - "end": { - "$date": "2021-05-02T22:13:27.000Z" - }, - "events": [ - { - "uuid": "6f0d6e26-fd87-4921-be83-60a7560b1210", - "start": { - "$date": "2021-05-02T19:45:09.000Z" - }, - "end": { - "$date": "2021-05-02T21:13:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2db033fb-6aec-4644-9bd0-f7c861cc5845", - "start": { - "$date": "2021-05-02T21:13:09.000Z" - }, - "end": { - "$date": "2021-05-02T21:16:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8859687c-7509-4f6d-8fb8-d50db8e5910f", - "start": { - "$date": "2021-05-02T21:16:09.000Z" - }, - "end": { - "$date": "2021-05-02T21:26:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40d8ad3f-7533-4dc9-b19b-15134abf82f1", - "start": { - "$date": "2021-05-02T21:26:09.000Z" - }, - "end": { - "$date": "2021-05-02T21:27:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "75c68e06-56bb-400b-808d-7c99224afd14", - "start": { - "$date": "2021-05-02T21:27:09.000Z" - }, - "end": { - "$date": "2021-05-02T22:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61d5ae9c-6842-4d89-b2c1-55986a597719", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-02T20:09:05.000Z" - }, - "end": { - "$date": "2021-05-02T20:44:09.000Z" - }, - "events": [ - { - "uuid": "f6c52b10-0c85-4215-9261-3cce62f3a6ac", - "start": { - "$date": "2021-05-02T20:09:05.000Z" - }, - "end": { - "$date": "2021-05-02T20:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecdb1c90-9735-4769-9b49-2a468a5deaf9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-02T20:28:07.000Z" - }, - "end": { - "$date": "2021-05-02T20:50:02.000Z" - }, - "events": [ - { - "uuid": "d49e7633-045a-48e4-8efd-9e4a3cc28347", - "start": { - "$date": "2021-05-02T20:28:07.000Z" - }, - "end": { - "$date": "2021-05-02T20:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d4331b85-d056-4dfd-91f5-e511e577f735", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-02T20:34:40.000Z" - }, - "end": { - "$date": "2021-05-02T22:44:11.000Z" - }, - "events": [ - { - "uuid": "cffde5fb-b75a-4080-979e-437825e083ee", - "start": { - "$date": "2021-05-02T20:34:40.000Z" - }, - "end": { - "$date": "2021-05-02T21:14:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e28665c-6e05-49e7-bc81-2adc22feac69", - "start": { - "$date": "2021-05-02T21:14:40.000Z" - }, - "end": { - "$date": "2021-05-02T21:19:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e4747579-4551-472f-b61c-ae9a37bbea9e", - "start": { - "$date": "2021-05-02T21:19:40.000Z" - }, - "end": { - "$date": "2021-05-02T21:34:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a11c630-fe65-4536-b222-2043a6fa9522", - "start": { - "$date": "2021-05-02T21:34:40.000Z" - }, - "end": { - "$date": "2021-05-02T22:34:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8cda0b4d-e0e4-459f-b628-bd451f458e8a", - "start": { - "$date": "2021-05-02T22:34:40.000Z" - }, - "end": { - "$date": "2021-05-02T22:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64167b2a-5d52-4f78-a16b-6407cf093b98", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-03T01:25:55.000Z" - }, - "end": { - "$date": "2021-05-03T01:57:33.000Z" - }, - "events": [ - { - "uuid": "0f2f501c-ea6b-4c86-aa6e-f282bd251695", - "start": { - "$date": "2021-05-03T01:25:55.000Z" - }, - "end": { - "$date": "2021-05-03T02:14:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7383af35-cfdc-4687-9daa-fcdec51c4c1e", - "start": { - "$date": "2021-05-03T02:14:55.000Z" - }, - "end": { - "$date": "2021-05-03T04:37:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c7f1eeca-433f-4d64-adbd-486d0323add9", - "start": { - "$date": "2021-05-03T04:37:55.000Z" - }, - "end": { - "$date": "2021-05-03T04:47:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "90a43f56-dc7e-4bb1-96cd-08808ca32a0b", - "start": { - "$date": "2021-05-03T04:47:55.000Z" - }, - "end": { - "$date": "2021-05-03T05:52:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "807f68d0-e529-4466-ba4e-5e56f3c9bf3c", - "start": { - "$date": "2021-05-03T05:52:55.000Z" - }, - "end": { - "$date": "2021-05-03T01:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d9392522-1c58-4c2e-a131-c5eaa9b8f0cf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T22:45:07.000Z" - }, - "end": { - "$date": "2021-05-02T22:52:32.000Z" - }, - "events": [ - { - "uuid": "b1440ffb-8416-40fd-b676-fd70b4e3857d", - "start": { - "$date": "2021-05-02T22:45:07.000Z" - }, - "end": { - "$date": "2021-05-02T22:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3415c55a-1b5b-402b-987b-518ea377629a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-02T22:52:44.000Z" - }, - "end": { - "$date": "2021-05-02T23:53:29.000Z" - }, - "events": [ - { - "uuid": "b5f71a72-6730-4e66-9dec-4d24812277c7", - "start": { - "$date": "2021-05-02T22:52:44.000Z" - }, - "end": { - "$date": "2021-05-02T23:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9934a7e6-56ef-465c-b36e-ca220a7478c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-02T23:14:03.000Z" - }, - "end": { - "$date": "2021-05-02T23:52:31.000Z" - }, - "events": [ - { - "uuid": "de0c10ab-8099-4355-a412-b97d9625de5b", - "start": { - "$date": "2021-05-02T23:14:03.000Z" - }, - "end": { - "$date": "2021-05-02T23:52:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "27b1eccd-2810-4752-9a76-65ab687bbeb2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-03T00:03:22.000Z" - }, - "end": { - "$date": "2021-05-03T00:15:17.000Z" - }, - "events": [ - { - "uuid": "2ff22738-7a12-4b20-97e6-150b287f8b31", - "start": { - "$date": "2021-05-03T00:03:22.000Z" - }, - "end": { - "$date": "2021-05-03T00:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3d1b2250-a3aa-4f92-bbc9-6df8e96081be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-03T00:07:14.000Z" - }, - "end": { - "$date": "2021-05-03T02:43:24.000Z" - }, - "events": [ - { - "uuid": "cf74f16a-f927-4217-bc5c-9b1eccb7d9b9", - "start": { - "$date": "2021-05-03T00:07:14.000Z" - }, - "end": { - "$date": "2021-05-03T01:18:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "344a7337-518b-471a-8f4d-3947b6b6e914", - "start": { - "$date": "2021-05-03T01:18:14.000Z" - }, - "end": { - "$date": "2021-05-03T01:52:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97814357-2c73-49c2-a1a4-cbc5b7d41069", - "start": { - "$date": "2021-05-03T01:52:14.000Z" - }, - "end": { - "$date": "2021-05-03T02:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6ae7449f-f82c-4844-8221-926155e0f09b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-03T01:30:23.000Z" - }, - "end": { - "$date": "2021-05-03T01:39:28.000Z" - }, - "events": [ - { - "uuid": "83744e55-bdfc-4983-8e66-b040c3a0961b", - "start": { - "$date": "2021-05-03T01:30:23.000Z" - }, - "end": { - "$date": "2021-05-03T01:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e970d29e-f4ed-407d-9acf-5afd7aad44a3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-03T05:13:03.000Z" - }, - "end": { - "$date": "2021-05-03T05:45:06.000Z" - }, - "events": [ - { - "uuid": "7e1f8ec0-7b6f-4769-aafe-6e3b834d6c53", - "start": { - "$date": "2021-05-03T05:13:03.000Z" - }, - "end": { - "$date": "2021-05-03T05:54:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5e64338-435f-4054-89a6-1b59cd19fe31", - "start": { - "$date": "2021-05-03T05:54:03.000Z" - }, - "end": { - "$date": "2021-05-03T06:09:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64211b9a-707b-413a-9e2e-379600929408", - "start": { - "$date": "2021-05-03T06:09:03.000Z" - }, - "end": { - "$date": "2021-05-03T06:34:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d3ee810-99f3-4ffa-a3e8-caaff888c7ac", - "start": { - "$date": "2021-05-03T06:34:03.000Z" - }, - "end": { - "$date": "2021-05-03T07:27:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb3428e8-c354-43b4-849c-964749e4ade0", - "start": { - "$date": "2021-05-03T07:27:03.000Z" - }, - "end": { - "$date": "2021-05-03T07:41:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "96889608-c36f-4cef-9712-4c414ffbee54", - "start": { - "$date": "2021-05-03T07:41:03.000Z" - }, - "end": { - "$date": "2021-05-03T08:08:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91ee1b13-2ff6-49e5-b4c5-749ab57c14fd", - "start": { - "$date": "2021-05-03T08:08:03.000Z" - }, - "end": { - "$date": "2021-05-03T05:45:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "70785909-2d82-4f33-89b8-36bca6a989df", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-03T01:59:18.000Z" - }, - "end": { - "$date": "2021-05-03T02:52:41.000Z" - }, - "events": [ - { - "uuid": "d9c9ecb2-b6ce-429d-a635-6cbb24512398", - "start": { - "$date": "2021-05-03T01:59:18.000Z" - }, - "end": { - "$date": "2021-05-03T02:52:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f00dd9de-5392-4e28-af35-09676da3b9f9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-03T02:26:47.000Z" - }, - "end": { - "$date": "2021-05-03T03:49:07.000Z" - }, - "events": [ - { - "uuid": "5600d6a1-6194-4f76-9f6e-82e68af5d69b", - "start": { - "$date": "2021-05-03T02:26:47.000Z" - }, - "end": { - "$date": "2021-05-03T03:49:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "86a20111-d6eb-4b5a-9e56-8af390c41bbf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-03T04:47:34.000Z" - }, - "end": { - "$date": "2021-05-03T04:47:53.000Z" - }, - "events": [ - { - "uuid": "4f5f1ea4-1c79-47bf-a1cf-eba68f943209", - "start": { - "$date": "2021-05-03T04:47:34.000Z" - }, - "end": { - "$date": "2021-05-03T04:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8bb9c5f4-4d4d-4e97-9992-d31d013f69d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T04:05:50.000Z" - }, - "end": { - "$date": "2021-05-04T04:40:51.000Z" - }, - "events": [ - { - "uuid": "4697e964-70fd-4699-9585-9dbf84b20f2d", - "start": { - "$date": "2021-05-04T04:05:50.000Z" - }, - "end": { - "$date": "2021-05-04T04:51:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3c79169-6e92-4ad2-b85b-8367bcf2bc73", - "start": { - "$date": "2021-05-04T04:51:50.000Z" - }, - "end": { - "$date": "2021-05-04T05:29:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af54dd6e-e866-453a-96cd-885288bbdbdf", - "start": { - "$date": "2021-05-04T05:29:50.000Z" - }, - "end": { - "$date": "2021-05-04T05:32:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "96bb42ef-2f09-4cc1-9203-1c0b8c6450c9", - "start": { - "$date": "2021-05-04T05:32:50.000Z" - }, - "end": { - "$date": "2021-05-04T05:36:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c18c9d9-3b13-4f05-985a-8843b5f6578a", - "start": { - "$date": "2021-05-04T05:36:50.000Z" - }, - "end": { - "$date": "2021-05-04T05:39:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4f72db57-cc53-478e-b3e5-3d615dd29007", - "start": { - "$date": "2021-05-04T05:39:50.000Z" - }, - "end": { - "$date": "2021-05-04T05:40:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70150122-2d5c-429e-a641-da93566a8277", - "start": { - "$date": "2021-05-04T05:40:50.000Z" - }, - "end": { - "$date": "2021-05-04T05:42:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ee6d625-f643-48e0-a918-77acad807230", - "start": { - "$date": "2021-05-04T05:42:50.000Z" - }, - "end": { - "$date": "2021-05-04T14:37:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2cd76506-358d-4b75-ae9e-793b7fd33f24", - "start": { - "$date": "2021-05-04T14:37:50.000Z" - }, - "end": { - "$date": "2021-05-04T14:43:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f7e14cf-4f8f-46a5-80a3-59d413c2c139", - "start": { - "$date": "2021-05-04T14:43:50.000Z" - }, - "end": { - "$date": "2021-05-04T14:55:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0c038ec-50dd-4537-9e87-507d1835cbbe", - "start": { - "$date": "2021-05-04T14:55:50.000Z" - }, - "end": { - "$date": "2021-05-04T16:11:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "87e66757-a231-48f4-b5e0-9657bfb9bbd0", - "start": { - "$date": "2021-05-04T16:11:50.000Z" - }, - "end": { - "$date": "2021-05-04T16:16:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "17667352-ff69-4897-b8d6-3cc59a5f8291", - "start": { - "$date": "2021-05-04T16:16:50.000Z" - }, - "end": { - "$date": "2021-05-04T16:41:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9ef8cf3-aa0f-4ba6-afc5-2a66c0efcef3", - "start": { - "$date": "2021-05-04T16:41:50.000Z" - }, - "end": { - "$date": "2021-05-04T16:44:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f75586ca-c0b4-4593-9a2e-0b3a2cac06b3", - "start": { - "$date": "2021-05-04T16:44:50.000Z" - }, - "end": { - "$date": "2021-05-04T21:24:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7f6b548-3adf-43c3-afcd-c68840dc1d5f", - "start": { - "$date": "2021-05-04T21:24:50.000Z" - }, - "end": { - "$date": "2021-05-04T21:50:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "194cec2f-0f94-423e-90dd-1cbeb0cc2d94", - "start": { - "$date": "2021-05-04T21:50:50.000Z" - }, - "end": { - "$date": "2021-05-05T00:07:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "332ebad4-d527-4748-a980-8f2202a73cb5", - "start": { - "$date": "2021-05-05T00:07:50.000Z" - }, - "end": { - "$date": "2021-05-05T00:48:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03deba7a-ec5f-4155-80ce-0c73b68553eb", - "start": { - "$date": "2021-05-05T00:48:50.000Z" - }, - "end": { - "$date": "2021-05-05T01:02:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c3822879-2f34-44db-a9ac-ac14123766f6", - "start": { - "$date": "2021-05-05T01:02:50.000Z" - }, - "end": { - "$date": "2021-05-05T01:27:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a5063eb-9d90-41e1-89b4-07014fdfa349", - "start": { - "$date": "2021-05-05T01:27:50.000Z" - }, - "end": { - "$date": "2021-05-05T03:13:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea43f9fe-1d2d-430f-a802-2c2d58a63fa6", - "start": { - "$date": "2021-05-05T03:13:50.000Z" - }, - "end": { - "$date": "2021-05-05T03:18:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "655e0587-4e0d-4dd2-9b4a-8fd3b7c0eb26", - "start": { - "$date": "2021-05-05T03:18:50.000Z" - }, - "end": { - "$date": "2021-05-04T04:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d95516bc-1853-4c19-bdbc-05810ee9497b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-03T02:48:54.000Z" - }, - "end": { - "$date": "2021-05-03T06:10:04.000Z" - }, - "events": [ - { - "uuid": "5e6f7c20-7ee6-4a67-9621-31576ff1d47d", - "start": { - "$date": "2021-05-03T02:48:54.000Z" - }, - "end": { - "$date": "2021-05-03T03:06:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f64acdc-0f35-418c-a7ee-ab7fd73ee79e", - "start": { - "$date": "2021-05-03T03:06:54.000Z" - }, - "end": { - "$date": "2021-05-03T03:11:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "200e145e-3e8b-49f3-9312-e4e10206a710", - "start": { - "$date": "2021-05-03T03:11:54.000Z" - }, - "end": { - "$date": "2021-05-03T06:10:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf3ff97c-3a88-4565-9af4-0e502499b72b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-03T03:03:30.000Z" - }, - "end": { - "$date": "2021-05-03T03:37:50.000Z" - }, - "events": [ - { - "uuid": "6828437a-a05d-4caa-984f-23f84b520ade", - "start": { - "$date": "2021-05-03T03:03:30.000Z" - }, - "end": { - "$date": "2021-05-03T03:37:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "7c00f423-194b-4dc9-a619-aeeef968da82", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-03T03:01:23.000Z" - }, - "end": { - "$date": "2021-05-03T04:54:58.000Z" - }, - "events": [ - { - "uuid": "3cfc4406-1adb-465b-888c-cce1de27449a", - "start": { - "$date": "2021-05-03T03:01:23.000Z" - }, - "end": { - "$date": "2021-05-03T04:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "047ef04c-5624-457a-8b48-e5a7c1ccdc3e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-03T03:58:54.000Z" - }, - "end": { - "$date": "2021-05-03T04:30:56.000Z" - }, - "events": [ - { - "uuid": "9d72c1f1-d770-4b6b-a62c-acf53a452ea1", - "start": { - "$date": "2021-05-03T03:58:54.000Z" - }, - "end": { - "$date": "2021-05-03T04:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "47b06dcb-92b7-4e1a-ba8f-dc2e8e6eae56", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-03T04:22:35.000Z" - }, - "end": { - "$date": "2021-05-03T04:44:36.000Z" - }, - "events": [ - { - "uuid": "39b77174-b714-4a02-a4b6-f981a38837de", - "start": { - "$date": "2021-05-03T04:22:35.000Z" - }, - "end": { - "$date": "2021-05-03T04:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "134e96b2-8fea-4773-abcc-c080b869821d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-03T04:25:00.000Z" - }, - "end": { - "$date": "2021-05-03T04:31:05.000Z" - }, - "events": [ - { - "uuid": "8f4f62e3-c546-4ca1-95bc-86536329e5a5", - "start": { - "$date": "2021-05-03T04:25:00.000Z" - }, - "end": { - "$date": "2021-05-03T04:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69147d54-bb81-4fa1-ad60-7c91ccdc70b3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-03T04:37:45.000Z" - }, - "end": { - "$date": "2021-05-03T05:00:39.000Z" - }, - "events": [ - { - "uuid": "f4e6c60d-9fb6-4559-9026-c629a117c8da", - "start": { - "$date": "2021-05-03T04:37:45.000Z" - }, - "end": { - "$date": "2021-05-03T05:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3b8ee375-1003-4994-9fa4-8eb1366c4cdf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-03T07:33:09.000Z" - }, - "end": { - "$date": "2021-05-03T08:17:57.000Z" - }, - "events": [ - { - "uuid": "e937a9d6-5725-476e-a06a-d8daa84a6afa", - "start": { - "$date": "2021-05-03T07:33:09.000Z" - }, - "end": { - "$date": "2021-05-03T07:45:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35a1cd36-7d80-4031-93d7-5398ff2cf106", - "start": { - "$date": "2021-05-03T07:45:09.000Z" - }, - "end": { - "$date": "2021-05-03T07:58:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "55991516-8f2e-42fe-8c48-f425508bf4c8", - "start": { - "$date": "2021-05-03T07:58:09.000Z" - }, - "end": { - "$date": "2021-05-03T08:01:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c554903-d29f-4231-ad91-d056fa861d72", - "start": { - "$date": "2021-05-03T08:01:09.000Z" - }, - "end": { - "$date": "2021-05-03T09:21:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "107e29d5-b676-4650-a9ed-a47855c1d3c1", - "start": { - "$date": "2021-05-03T09:21:09.000Z" - }, - "end": { - "$date": "2021-05-03T09:25:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22cf1060-38e8-4ba0-a06b-aae333ff6a9e", - "start": { - "$date": "2021-05-03T09:25:09.000Z" - }, - "end": { - "$date": "2021-05-03T09:37:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7dd98f55-9f9b-4a77-b6b3-7e5618a8c4cc", - "start": { - "$date": "2021-05-03T09:37:09.000Z" - }, - "end": { - "$date": "2021-05-03T08:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a2f1721b-9173-43a7-8cd8-f2a4a230008f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-03T04:57:30.000Z" - }, - "end": { - "$date": "2021-05-03T08:14:37.000Z" - }, - "events": [ - { - "uuid": "1c7cd157-9d69-4c52-9578-4bce573593fa", - "start": { - "$date": "2021-05-03T04:57:30.000Z" - }, - "end": { - "$date": "2021-05-03T08:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24b84476-a30e-46eb-a545-1490cab686d8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-03T05:45:19.000Z" - }, - "end": { - "$date": "2021-05-03T13:34:01.000Z" - }, - "events": [ - { - "uuid": "69b15a0b-02e3-4838-929e-3aa7eeb6fccb", - "start": { - "$date": "2021-05-03T05:45:19.000Z" - }, - "end": { - "$date": "2021-05-03T06:03:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "756320aa-5fb6-49c1-9e2a-6ff335919f0d", - "start": { - "$date": "2021-05-03T06:03:19.000Z" - }, - "end": { - "$date": "2021-05-03T06:06:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dcc257b5-2cbc-4872-98c6-4f44ba0e9195", - "start": { - "$date": "2021-05-03T06:06:19.000Z" - }, - "end": { - "$date": "2021-05-03T06:30:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d76a41a0-8956-4d3a-8a25-bd975e0da988", - "start": { - "$date": "2021-05-03T06:30:19.000Z" - }, - "end": { - "$date": "2021-05-03T13:04:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9845a6eb-ed22-439c-a7fa-6694046dcd6e", - "start": { - "$date": "2021-05-03T13:04:19.000Z" - }, - "end": { - "$date": "2021-05-03T13:05:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08ab34f7-b3f6-486a-b798-6b3d86d6cc8c", - "start": { - "$date": "2021-05-03T13:05:19.000Z" - }, - "end": { - "$date": "2021-05-03T13:25:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb7816ba-85a1-4df6-a1f4-cf0a75500f30", - "start": { - "$date": "2021-05-03T13:25:19.000Z" - }, - "end": { - "$date": "2021-05-03T13:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "afeef365-7750-44e0-9fc3-d2dfbfc632cf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-03T07:48:47.000Z" - }, - "end": { - "$date": "2021-05-03T08:19:29.000Z" - }, - "events": [ - { - "uuid": "c8e0250e-9b67-48d0-b3db-21cfc017f4c1", - "start": { - "$date": "2021-05-03T07:48:47.000Z" - }, - "end": { - "$date": "2021-05-03T08:19:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e0e5af8c-e33c-4c63-8f61-ed095a8f273e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-03T15:35:19.000Z" - }, - "end": { - "$date": "2021-05-03T16:02:09.000Z" - }, - "events": [ - { - "uuid": "3a0b3eae-945f-4666-9730-cda0af6e0ceb", - "start": { - "$date": "2021-05-03T15:35:19.000Z" - }, - "end": { - "$date": "2021-05-03T16:02:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f186abf-11a8-4c73-9e40-57b6f93f200b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-03T21:04:28.000Z" - }, - "end": { - "$date": "2021-05-03T21:04:53.000Z" - }, - "events": [ - { - "uuid": "d59a88c6-6f94-4da7-88f9-d6f474f71abc", - "start": { - "$date": "2021-05-03T21:04:28.000Z" - }, - "end": { - "$date": "2021-05-03T21:45:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e90e4af7-93db-4d1c-ac2f-478c73d9c6dd", - "start": { - "$date": "2021-05-03T21:45:28.000Z" - }, - "end": { - "$date": "2021-05-03T21:47:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "590fb4e9-c0a7-4698-837a-6f29958971a7", - "start": { - "$date": "2021-05-03T21:47:28.000Z" - }, - "end": { - "$date": "2021-05-03T22:33:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dec6bad2-809e-402e-92d5-7d9b45102a3b", - "start": { - "$date": "2021-05-03T22:33:28.000Z" - }, - "end": { - "$date": "2021-05-03T22:38:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b17c1a97-132c-4d6b-957b-6fd0f491fea7", - "start": { - "$date": "2021-05-03T22:38:28.000Z" - }, - "end": { - "$date": "2021-05-03T22:48:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9df43bac-3e29-436b-8a90-93789b35eb48", - "start": { - "$date": "2021-05-03T22:48:28.000Z" - }, - "end": { - "$date": "2021-05-03T23:11:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9fcd602b-1783-478e-ad51-76cbfab3c4f5", - "start": { - "$date": "2021-05-03T23:11:28.000Z" - }, - "end": { - "$date": "2021-05-04T00:19:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "316237e3-6e68-439a-81dc-3a8c80c19a04", - "start": { - "$date": "2021-05-04T00:19:28.000Z" - }, - "end": { - "$date": "2021-05-04T00:28:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a745e631-ce4c-4ce9-a7f8-54b9b1b64272", - "start": { - "$date": "2021-05-04T00:28:28.000Z" - }, - "end": { - "$date": "2021-05-04T00:45:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e754815f-2306-4e24-99a9-15c3d99b0376", - "start": { - "$date": "2021-05-04T00:45:28.000Z" - }, - "end": { - "$date": "2021-05-04T00:52:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2f65940-bf33-4070-bf05-1082fa6d3bbc", - "start": { - "$date": "2021-05-04T00:52:28.000Z" - }, - "end": { - "$date": "2021-05-04T01:08:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8aec26e-3361-4889-9afa-8d17523465d6", - "start": { - "$date": "2021-05-04T01:08:28.000Z" - }, - "end": { - "$date": "2021-05-04T01:42:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df8295f7-416e-4975-ac4a-eaee152f5439", - "start": { - "$date": "2021-05-04T01:42:28.000Z" - }, - "end": { - "$date": "2021-05-03T21:04:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "81de9605-285a-4878-82c6-db6a0005fd69", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-03T21:34:07.000Z" - }, - "end": { - "$date": "2021-05-03T21:35:18.000Z" - }, - "events": [ - { - "uuid": "38fd9096-fd1d-40d3-9f8a-ad015618a0e6", - "start": { - "$date": "2021-05-03T21:34:07.000Z" - }, - "end": { - "$date": "2021-05-03T21:47:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9321fadc-0580-4db4-9dcc-1b4ebdc0c840", - "start": { - "$date": "2021-05-03T21:47:07.000Z" - }, - "end": { - "$date": "2021-05-03T22:05:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f5d5bf50-99a9-4bd2-927e-79a00c75115a", - "start": { - "$date": "2021-05-03T22:05:07.000Z" - }, - "end": { - "$date": "2021-05-03T22:09:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "220f36f5-be1f-49b6-bb99-84d747ef3b3b", - "start": { - "$date": "2021-05-03T22:09:07.000Z" - }, - "end": { - "$date": "2021-05-03T22:11:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61086000-9ab5-48c0-b626-5b406efc4a87", - "start": { - "$date": "2021-05-03T22:11:07.000Z" - }, - "end": { - "$date": "2021-05-03T22:14:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6c0cdb0-6782-48f7-adcb-b3871c125105", - "start": { - "$date": "2021-05-03T22:14:07.000Z" - }, - "end": { - "$date": "2021-05-03T22:18:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b5ff5de-d486-45db-829f-19c0e738531a", - "start": { - "$date": "2021-05-03T22:18:07.000Z" - }, - "end": { - "$date": "2021-05-03T22:21:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4922ad7d-16b9-41af-9734-9b8d66b71fed", - "start": { - "$date": "2021-05-03T22:21:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:02:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "981cd4cd-7761-47bf-b08f-41f599aa992d", - "start": { - "$date": "2021-05-03T23:02:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:06:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3fd30e84-c889-4c79-8e5a-70bbb4a2d772", - "start": { - "$date": "2021-05-03T23:06:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:08:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "57900a83-ac60-4804-a745-793e58243a59", - "start": { - "$date": "2021-05-03T23:08:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:10:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3876399f-d514-444e-90a5-125a88ea9b64", - "start": { - "$date": "2021-05-03T23:10:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:17:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b6d2900-6a41-42e2-9076-59e7bf7ce9f7", - "start": { - "$date": "2021-05-03T23:17:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:22:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60ecec38-5621-4d6d-88f1-5cbd4a6f20c1", - "start": { - "$date": "2021-05-03T23:22:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:45:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cda92885-59af-4dcc-b061-d5f054ab4ab5", - "start": { - "$date": "2021-05-03T23:45:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:47:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db338061-21a0-46c8-a3d6-a99882a97913", - "start": { - "$date": "2021-05-03T23:47:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:48:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db767c87-1a98-469c-9443-739cb73c5ef2", - "start": { - "$date": "2021-05-03T23:48:07.000Z" - }, - "end": { - "$date": "2021-05-03T23:51:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7728156-6fe0-4bab-b1ce-42e5a5bda7d5", - "start": { - "$date": "2021-05-03T23:51:07.000Z" - }, - "end": { - "$date": "2021-05-04T00:35:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd0b2741-3f9b-4d79-847a-67152288d3ba", - "start": { - "$date": "2021-05-04T00:35:07.000Z" - }, - "end": { - "$date": "2021-05-04T00:37:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aae63471-54c4-472f-8ba0-10f92bffe5b6", - "start": { - "$date": "2021-05-04T00:37:07.000Z" - }, - "end": { - "$date": "2021-05-04T00:50:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1bfd07d3-e2d1-41b4-9b9e-37c88a3a071b", - "start": { - "$date": "2021-05-04T00:50:07.000Z" - }, - "end": { - "$date": "2021-05-04T00:52:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "902603b6-8d01-4c31-b554-fb99edb9ddb2", - "start": { - "$date": "2021-05-04T00:52:07.000Z" - }, - "end": { - "$date": "2021-05-04T01:00:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f630ff85-2b9a-47a7-bf50-e7947b0751f6", - "start": { - "$date": "2021-05-04T01:00:07.000Z" - }, - "end": { - "$date": "2021-05-03T21:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "2ad3ebcb-836a-43a0-b31d-90f9acd944ee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-03T20:37:47.000Z" - }, - "end": { - "$date": "2021-05-03T21:43:14.000Z" - }, - "events": [ - { - "uuid": "a150ffbd-9eb7-442e-806f-71c67b87e386", - "start": { - "$date": "2021-05-03T20:37:47.000Z" - }, - "end": { - "$date": "2021-05-03T21:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "773facb5-1ec9-4acd-9f8f-94887b3b90ca", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-03T20:55:54.000Z" - }, - "end": { - "$date": "2021-05-03T22:41:13.000Z" - }, - "events": [ - { - "uuid": "1b955961-46ae-4fab-81a7-62bbfc90aefa", - "start": { - "$date": "2021-05-03T20:55:54.000Z" - }, - "end": { - "$date": "2021-05-03T22:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4227eff5-fdd1-45f9-b498-04c721acd539", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-03T21:35:25.000Z" - }, - "end": { - "$date": "2021-05-03T21:46:28.000Z" - }, - "events": [ - { - "uuid": "4d0aed59-bc9b-4675-a3da-97fadac3d931", - "start": { - "$date": "2021-05-03T21:35:25.000Z" - }, - "end": { - "$date": "2021-05-03T21:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "2f306aeb-8cea-4d1e-af64-f0be45ea64e1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-03T21:42:03.000Z" - }, - "end": { - "$date": "2021-05-03T22:17:11.000Z" - }, - "events": [ - { - "uuid": "326bb973-c515-4c81-8d53-18cc9d03af3a", - "start": { - "$date": "2021-05-03T21:42:03.000Z" - }, - "end": { - "$date": "2021-05-03T22:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d4be8826-ff69-47da-9b5d-a9940657ba81", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-03T21:55:17.000Z" - }, - "end": { - "$date": "2021-05-03T22:13:40.000Z" - }, - "events": [ - { - "uuid": "e9cef1e7-f8d9-4c20-a923-ed1a8ef55095", - "start": { - "$date": "2021-05-03T21:55:17.000Z" - }, - "end": { - "$date": "2021-05-03T22:06:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d54d6c95-f77a-45ff-a9d1-4a7a4fd6e096", - "start": { - "$date": "2021-05-03T22:06:17.000Z" - }, - "end": { - "$date": "2021-05-03T22:11:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b009311d-0af1-4870-bc1b-1a69da50a7f2", - "start": { - "$date": "2021-05-03T22:11:17.000Z" - }, - "end": { - "$date": "2021-05-03T22:13:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e4a736c2-a97e-4e1e-8f12-1091e7cedf44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-04T02:06:10.000Z" - }, - "end": { - "$date": "2021-05-04T02:38:10.000Z" - }, - "events": [ - { - "uuid": "58eb76d6-1c39-47e1-9b69-da625269efd3", - "start": { - "$date": "2021-05-04T02:06:10.000Z" - }, - "end": { - "$date": "2021-05-04T03:13:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08a3abd2-80fc-4763-9a01-7baa64e3ea10", - "start": { - "$date": "2021-05-04T03:13:10.000Z" - }, - "end": { - "$date": "2021-05-04T03:14:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2804c66b-48ba-48b9-9287-e32bacdf7707", - "start": { - "$date": "2021-05-04T03:14:10.000Z" - }, - "end": { - "$date": "2021-05-04T04:12:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4353b655-5cc2-4305-9ccc-6ea9108d4bf1", - "start": { - "$date": "2021-05-04T04:12:10.000Z" - }, - "end": { - "$date": "2021-05-04T04:44:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70a1f7c1-ccaf-41b1-a66d-08d95a7050ea", - "start": { - "$date": "2021-05-04T04:44:10.000Z" - }, - "end": { - "$date": "2021-05-04T04:54:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dae2e593-e806-433d-8d76-7a334109337e", - "start": { - "$date": "2021-05-04T04:54:10.000Z" - }, - "end": { - "$date": "2021-05-04T05:07:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4ef03454-574c-47a2-9b63-d7fab2f9ee9a", - "start": { - "$date": "2021-05-04T05:07:10.000Z" - }, - "end": { - "$date": "2021-05-04T05:16:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb1211e8-4bc2-483c-b309-421352cbe80f", - "start": { - "$date": "2021-05-04T05:16:10.000Z" - }, - "end": { - "$date": "2021-05-04T05:22:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e583a9ea-f499-4d6c-b942-d076cc52cbf6", - "start": { - "$date": "2021-05-04T05:22:10.000Z" - }, - "end": { - "$date": "2021-05-04T05:24:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd959db5-54f8-49c7-8e1a-1eb2140200ee", - "start": { - "$date": "2021-05-04T05:24:10.000Z" - }, - "end": { - "$date": "2021-05-04T05:27:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb2442b5-22fc-417d-a46b-5f43a32dea14", - "start": { - "$date": "2021-05-04T05:27:10.000Z" - }, - "end": { - "$date": "2021-05-04T05:30:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0ad0373-cbe9-4ac1-8a73-ebdcbf0326db", - "start": { - "$date": "2021-05-04T05:30:10.000Z" - }, - "end": { - "$date": "2021-05-04T06:05:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6144aca5-a75f-4df0-9395-892b3fe32c83", - "start": { - "$date": "2021-05-04T06:05:10.000Z" - }, - "end": { - "$date": "2021-05-04T02:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f1b5dddc-2a23-41c7-a70c-9ad25ae83812", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-03T22:17:11.000Z" - }, - "end": { - "$date": "2021-05-04T00:08:46.000Z" - }, - "events": [ - { - "uuid": "3223e474-3ffc-42e2-9fe8-9a09b0b64c54", - "start": { - "$date": "2021-05-03T22:17:11.000Z" - }, - "end": { - "$date": "2021-05-04T00:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d3cade70-802a-4c67-9c80-9db2be6e34d2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-03T22:28:16.000Z" - }, - "end": { - "$date": "2021-05-03T22:42:08.000Z" - }, - "events": [ - { - "uuid": "dcfae146-4781-4722-b587-a099a06bcd01", - "start": { - "$date": "2021-05-03T22:28:16.000Z" - }, - "end": { - "$date": "2021-05-03T22:42:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", - "uuid": "bb7b91c8-75dd-4402-a2ae-5803e5918002", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-04T01:00:34.000Z" - }, - "end": { - "$date": "2021-05-04T02:29:36.000Z" - }, - "events": [ - { - "uuid": "57f5416f-6c0a-4051-9a7e-c10ce9b7fd5a", - "start": { - "$date": "2021-05-04T01:00:34.000Z" - }, - "end": { - "$date": "2021-05-04T02:29:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59b37048-b65f-438d-8b08-a8150905e3ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-04T01:49:51.000Z" - }, - "end": { - "$date": "2021-05-04T02:11:28.000Z" - }, - "events": [ - { - "uuid": "1e4e350d-c464-4155-9985-2c8a0626a535", - "start": { - "$date": "2021-05-04T01:49:51.000Z" - }, - "end": { - "$date": "2021-05-04T02:02:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24b0d6b4-0b0a-4e93-9da5-c1c6140ab879", - "start": { - "$date": "2021-05-04T02:02:51.000Z" - }, - "end": { - "$date": "2021-05-04T02:03:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec7bf75e-34c5-4084-9c5d-d569f5f67e7d", - "start": { - "$date": "2021-05-04T02:03:51.000Z" - }, - "end": { - "$date": "2021-05-04T02:11:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1e9dcdc7-ccc5-4367-9ab1-b1144d192836", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-04T02:10:40.000Z" - }, - "end": { - "$date": "2021-05-04T05:31:18.000Z" - }, - "events": [ - { - "uuid": "fba06e6b-10bd-4ddd-9910-86ca4a79b9de", - "start": { - "$date": "2021-05-04T02:10:40.000Z" - }, - "end": { - "$date": "2021-05-04T05:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "295a455f-18b0-4a61-9b94-fe5ecb29acf0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-04T02:19:44.000Z" - }, - "end": { - "$date": "2021-05-04T02:43:59.000Z" - }, - "events": [ - { - "uuid": "0d86bb08-0ba2-4ccb-a589-3153b08b4364", - "start": { - "$date": "2021-05-04T02:19:44.000Z" - }, - "end": { - "$date": "2021-05-04T02:43:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "847245e3-ed40-456e-a28f-a30ac7bfb095", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T02:35:07.000Z" - }, - "end": { - "$date": "2021-05-04T03:08:30.000Z" - }, - "events": [ - { - "uuid": "14694bc4-e7f1-4144-ae82-52e12f3255ee", - "start": { - "$date": "2021-05-04T02:35:07.000Z" - }, - "end": { - "$date": "2021-05-04T03:08:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ff8a1d4-ac76-4bfd-9e1f-8269ec0425f5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-04T02:53:20.000Z" - }, - "end": { - "$date": "2021-05-04T03:16:10.000Z" - }, - "events": [ - { - "uuid": "2a32ffa9-1f24-4078-811c-8ebdd3bee64e", - "start": { - "$date": "2021-05-04T02:53:20.000Z" - }, - "end": { - "$date": "2021-05-04T03:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c991f6e6-5905-4cd9-a2f9-a8f767d1e152", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-04T04:01:46.000Z" - }, - "end": { - "$date": "2021-05-04T05:31:16.000Z" - }, - "events": [ - { - "uuid": "78ed6d45-dbf3-4de8-be7e-baa410402c7d", - "start": { - "$date": "2021-05-04T04:01:46.000Z" - }, - "end": { - "$date": "2021-05-04T05:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8faee560-bdb6-47cf-9835-b93fc57a44bd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-04T02:54:21.000Z" - }, - "end": { - "$date": "2021-05-04T05:47:31.000Z" - }, - "events": [ - { - "uuid": "ba4b26db-ef30-4024-9985-5dae63195c7d", - "start": { - "$date": "2021-05-04T02:54:21.000Z" - }, - "end": { - "$date": "2021-05-04T05:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "05006079-81cb-4b23-ab0a-c4975aaf23e9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-04T03:07:27.000Z" - }, - "end": { - "$date": "2021-05-04T03:09:59.000Z" - }, - "events": [ - { - "uuid": "ca0bdaa2-6a6b-4f8c-91f3-b354978f89d5", - "start": { - "$date": "2021-05-04T03:07:27.000Z" - }, - "end": { - "$date": "2021-05-04T03:09:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "8a17da26-f0c2-46ec-a4eb-d8627107b81b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-04T03:08:44.000Z" - }, - "end": { - "$date": "2021-05-04T03:21:34.000Z" - }, - "events": [ - { - "uuid": "29b831fa-81f3-4981-aa66-649d54a9ad8b", - "start": { - "$date": "2021-05-04T03:08:44.000Z" - }, - "end": { - "$date": "2021-05-04T03:21:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59335161-12eb-4f5a-b352-4e4988150920", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T03:09:42.000Z" - }, - "end": { - "$date": "2021-05-04T03:42:39.000Z" - }, - "events": [ - { - "uuid": "96abed64-221e-4f2b-9d7d-ab352af20487", - "start": { - "$date": "2021-05-04T03:09:42.000Z" - }, - "end": { - "$date": "2021-05-04T03:42:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f43c119d-847a-457a-ad56-001d3038f4ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-04T03:10:18.000Z" - }, - "end": { - "$date": "2021-05-04T03:40:05.000Z" - }, - "events": [ - { - "uuid": "ebfa6e13-f405-4f94-9f3e-d7d61ce6fe4b", - "start": { - "$date": "2021-05-04T03:10:18.000Z" - }, - "end": { - "$date": "2021-05-04T03:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1dedb1b-0318-4180-89f6-0c0b119dfa1d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-04T03:24:00.000Z" - }, - "end": { - "$date": "2021-05-04T03:47:41.000Z" - }, - "events": [ - { - "uuid": "7b9341c7-dc38-44dc-99f9-11246ff2c061", - "start": { - "$date": "2021-05-04T03:24:00.000Z" - }, - "end": { - "$date": "2021-05-04T03:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "276a87e7-5716-42a2-a3d0-4811090a8e75", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-04T03:32:47.000Z" - }, - "end": { - "$date": "2021-05-04T03:46:41.000Z" - }, - "events": [ - { - "uuid": "7e8cf225-fb89-41e5-8f4e-7e37d27543db", - "start": { - "$date": "2021-05-04T03:32:47.000Z" - }, - "end": { - "$date": "2021-05-04T03:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b95d0def-ef01-49a2-9b15-14d888e5f1e6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-04T03:40:20.000Z" - }, - "end": { - "$date": "2021-05-04T05:54:46.000Z" - }, - "events": [ - { - "uuid": "2b009557-4ae3-4069-9108-fddab0e02a7a", - "start": { - "$date": "2021-05-04T03:40:20.000Z" - }, - "end": { - "$date": "2021-05-04T05:54:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "578267e1-3e55-435b-ae15-36e78b465e04", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-04T03:53:11.000Z" - }, - "end": { - "$date": "2021-05-04T04:29:00.000Z" - }, - "events": [ - { - "uuid": "4cf4793a-c25e-4534-bdf1-5765febb5e97", - "start": { - "$date": "2021-05-04T03:53:11.000Z" - }, - "end": { - "$date": "2021-05-04T04:29:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aea2bbc7-ef2a-4857-b374-1b5c3bfecc11", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-04T03:53:18.000Z" - }, - "end": { - "$date": "2021-05-04T04:12:34.000Z" - }, - "events": [ - { - "uuid": "e921210e-d173-4f6e-98ba-21a103ddfc75", - "start": { - "$date": "2021-05-04T03:53:18.000Z" - }, - "end": { - "$date": "2021-05-04T04:12:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3d950d21-8daf-47c5-8e29-c36467bd9f68", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-04T04:00:03.000Z" - }, - "end": { - "$date": "2021-05-04T05:37:08.000Z" - }, - "events": [ - { - "uuid": "48f5d285-ad79-4cd7-905e-83158d3b12c8", - "start": { - "$date": "2021-05-04T04:00:03.000Z" - }, - "end": { - "$date": "2021-05-04T05:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1c99ecc5-5d99-4058-9f1c-bf9e856a5649", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-04T04:07:15.000Z" - }, - "end": { - "$date": "2021-05-04T05:32:35.000Z" - }, - "events": [ - { - "uuid": "49c91368-1d8e-467c-a282-48e04fb3a4a6", - "start": { - "$date": "2021-05-04T04:07:15.000Z" - }, - "end": { - "$date": "2021-05-04T05:32:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68e895d0-106b-4a63-8829-c8f93e19f858", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T04:34:40.000Z" - }, - "end": { - "$date": "2021-05-04T05:34:58.000Z" - }, - "events": [ - { - "uuid": "eba6e714-4053-48f2-a00a-716c9e86ac12", - "start": { - "$date": "2021-05-04T04:34:40.000Z" - }, - "end": { - "$date": "2021-05-04T05:34:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53de1747-6496-470a-981c-56395a1af9f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-04T04:34:32.000Z" - }, - "end": { - "$date": "2021-05-04T05:34:48.000Z" - }, - "events": [ - { - "uuid": "b4e3997e-4476-40c6-9e6f-9b079fe8057c", - "start": { - "$date": "2021-05-04T04:34:32.000Z" - }, - "end": { - "$date": "2021-05-04T05:34:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07dfd76a-2a81-4872-84dc-13f82db44020", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-04T05:00:08.000Z" - }, - "end": { - "$date": "2021-05-04T05:30:00.000Z" - }, - "events": [ - { - "uuid": "a4ed35be-a47c-474f-bf83-263ab91b3b05", - "start": { - "$date": "2021-05-04T05:00:08.000Z" - }, - "end": { - "$date": "2021-05-04T05:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02173623-645e-4f53-8c7b-d35b2ee3ea78", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T14:38:23.000Z" - }, - "end": { - "$date": "2021-05-04T15:14:33.000Z" - }, - "events": [ - { - "uuid": "6f3da28d-041c-4175-8895-d4f24846eb7d", - "start": { - "$date": "2021-05-04T14:38:23.000Z" - }, - "end": { - "$date": "2021-05-04T15:14:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f3d5239b-7ecd-4e2a-ba66-6c21ae2edd8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T15:12:28.000Z" - }, - "end": { - "$date": "2021-05-04T16:11:34.000Z" - }, - "events": [ - { - "uuid": "0d6b2d87-8585-43ca-80cb-c7bb8157984f", - "start": { - "$date": "2021-05-04T15:12:28.000Z" - }, - "end": { - "$date": "2021-05-04T15:38:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c89d3c90-1051-422a-ae14-5d7bf131f3ce", - "start": { - "$date": "2021-05-04T15:38:28.000Z" - }, - "end": { - "$date": "2021-05-04T15:54:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b1867d9a-a385-44bc-8ff0-e96fb38f9bda", - "start": { - "$date": "2021-05-04T15:54:28.000Z" - }, - "end": { - "$date": "2021-05-04T16:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdd18dd3-0b49-4db6-a9d5-e0d1a8e1640f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T15:18:48.000Z" - }, - "end": { - "$date": "2021-05-04T15:33:29.000Z" - }, - "events": [ - { - "uuid": "b09b12a7-134a-44d4-a097-90c5e275fef2", - "start": { - "$date": "2021-05-04T15:18:48.000Z" - }, - "end": { - "$date": "2021-05-04T15:33:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00513dcb-cc26-411a-97e8-09d7bb406a71", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T15:41:28.000Z" - }, - "end": { - "$date": "2021-05-04T16:09:10.000Z" - }, - "events": [ - { - "uuid": "812c4a71-930c-4dfd-bd03-dc792338116b", - "start": { - "$date": "2021-05-04T15:41:28.000Z" - }, - "end": { - "$date": "2021-05-04T16:09:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b731ac53-497f-44fa-987b-f99dddb8b804", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T16:10:21.000Z" - }, - "end": { - "$date": "2021-05-04T16:45:06.000Z" - }, - "events": [ - { - "uuid": "bedc57ac-cf76-4d43-ad12-e507a12bd755", - "start": { - "$date": "2021-05-04T16:10:21.000Z" - }, - "end": { - "$date": "2021-05-04T16:45:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c014e8d6-170f-4344-a922-6836c67d07c8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T16:39:43.000Z" - }, - "end": { - "$date": "2021-05-04T16:44:41.000Z" - }, - "events": [ - { - "uuid": "683011cb-96ea-4dcb-b7b3-7dad65378cdd", - "start": { - "$date": "2021-05-04T16:39:43.000Z" - }, - "end": { - "$date": "2021-05-04T16:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62dbeaa0-ce5a-4bb5-913a-2eb43dbe9dd2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-04T16:51:22.000Z" - }, - "end": { - "$date": "2021-05-04T17:09:59.000Z" - }, - "events": [ - { - "uuid": "019308ca-6670-4d4d-9ad3-c80331c838ca", - "start": { - "$date": "2021-05-04T16:51:22.000Z" - }, - "end": { - "$date": "2021-05-04T17:09:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d068d8c9-89bf-49e9-b0e1-7f180b1bec4c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T16:49:44.000Z" - }, - "end": { - "$date": "2021-05-04T17:11:00.000Z" - }, - "events": [ - { - "uuid": "71b49318-818d-4510-bc65-58b79b5de4bb", - "start": { - "$date": "2021-05-04T16:49:44.000Z" - }, - "end": { - "$date": "2021-05-04T17:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "016eaeb9-54e9-4144-bd2f-bb5e4031cfb1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T17:28:55.000Z" - }, - "end": { - "$date": "2021-05-04T18:03:22.000Z" - }, - "events": [ - { - "uuid": "4a6d8208-5905-4c11-92e6-10a7af71a4bb", - "start": { - "$date": "2021-05-04T17:28:55.000Z" - }, - "end": { - "$date": "2021-05-04T18:03:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "465e0e91-1fe5-46a8-adf6-79cde6101626", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T18:07:59.000Z" - }, - "end": { - "$date": "2021-05-04T18:42:07.000Z" - }, - "events": [ - { - "uuid": "adc348ba-2935-4743-86f3-f141a1b9b64f", - "start": { - "$date": "2021-05-04T18:07:59.000Z" - }, - "end": { - "$date": "2021-05-04T18:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "dcc8bc83-92c3-4652-afe8-eecc9da512a3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-05T05:46:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:35:02.000Z" - }, - "events": [ - { - "uuid": "7124e5f2-26dd-43f7-945b-d4ca93fa62b6", - "start": { - "$date": "2021-05-05T05:46:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:10:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fade1c16-a421-459f-be4f-5f4c22626d63", - "start": { - "$date": "2021-05-05T06:10:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:20:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3644a27e-c217-4084-b210-e72acd9cd3fd", - "start": { - "$date": "2021-05-05T06:20:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:29:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af0579b1-8724-4c90-acd3-5ac743104a9d", - "start": { - "$date": "2021-05-05T06:29:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:45:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8dbf54a-b09f-4bfe-bc9d-bba07187b102", - "start": { - "$date": "2021-05-05T06:45:46.000Z" - }, - "end": { - "$date": "2021-05-05T08:13:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "53e32c02-0d9b-4de2-9ed2-a466a21ea369", - "start": { - "$date": "2021-05-05T08:13:46.000Z" - }, - "end": { - "$date": "2021-05-05T08:16:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc05236a-35aa-4d50-9712-945a747fb07d", - "start": { - "$date": "2021-05-05T08:16:46.000Z" - }, - "end": { - "$date": "2021-05-05T08:17:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2940de1-f5e9-425e-9354-42715ea2eb8a", - "start": { - "$date": "2021-05-05T08:17:46.000Z" - }, - "end": { - "$date": "2021-05-05T09:07:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96b6a19a-d8ce-4641-8acd-bff683b5691a", - "start": { - "$date": "2021-05-05T09:07:46.000Z" - }, - "end": { - "$date": "2021-05-05T09:09:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3e6fc660-0bdf-4040-8d9c-d3c88196d009", - "start": { - "$date": "2021-05-05T09:09:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:11:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf747715-40c6-4edc-99f4-3b7824254139", - "start": { - "$date": "2021-05-05T10:11:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:14:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "23219cb1-43d9-4f75-8fc9-6921590eab5b", - "start": { - "$date": "2021-05-05T10:14:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:20:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "95b93012-2688-4273-9dc7-f9bde4efd9d3", - "start": { - "$date": "2021-05-05T10:20:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:23:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "260363e0-fe1f-47d7-884f-eac38261e48c", - "start": { - "$date": "2021-05-05T10:23:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:32:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "da7fb411-2818-442e-8524-02baa5665232", - "start": { - "$date": "2021-05-05T10:32:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:34:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f8b71626-5af4-43bd-975a-43c2063f2a03", - "start": { - "$date": "2021-05-05T10:34:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:50:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a74272c2-079d-48ee-8a8e-61912e4afaf1", - "start": { - "$date": "2021-05-05T10:50:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:53:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7030c651-d10c-477f-afe0-c6628d4f1981", - "start": { - "$date": "2021-05-05T10:53:46.000Z" - }, - "end": { - "$date": "2021-05-05T10:56:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7eca9ad-9ab5-48f8-a906-335fc3d025bc", - "start": { - "$date": "2021-05-05T10:56:46.000Z" - }, - "end": { - "$date": "2021-05-05T11:32:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "386b62a0-4a90-4c1b-b266-6ff494210921", - "start": { - "$date": "2021-05-05T11:32:46.000Z" - }, - "end": { - "$date": "2021-05-05T11:36:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "defe0729-671a-469b-bb4e-c8685f567e09", - "start": { - "$date": "2021-05-05T11:36:46.000Z" - }, - "end": { - "$date": "2021-05-05T11:37:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e11d037-9603-4b1e-91ad-e44d8d7ec383", - "start": { - "$date": "2021-05-05T11:37:46.000Z" - }, - "end": { - "$date": "2021-05-05T11:41:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a70e208a-f433-40d2-bb93-0ed0a732f88b", - "start": { - "$date": "2021-05-05T11:41:46.000Z" - }, - "end": { - "$date": "2021-05-05T11:43:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b1433fe-6050-4a3f-bc00-bf1edcd1b722", - "start": { - "$date": "2021-05-05T11:43:46.000Z" - }, - "end": { - "$date": "2021-05-05T12:10:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96b376dd-dd47-453f-89b1-7fa4280ba088", - "start": { - "$date": "2021-05-05T12:10:46.000Z" - }, - "end": { - "$date": "2021-05-05T13:30:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29e0950b-0769-45cc-8a19-99164750d3eb", - "start": { - "$date": "2021-05-05T13:30:46.000Z" - }, - "end": { - "$date": "2021-05-05T13:32:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a207b6c-8ba9-4590-9c68-e4bbf642ceab", - "start": { - "$date": "2021-05-05T13:32:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d3e0f5b5-ee7d-41d9-920e-74f6678a17d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T18:42:28.000Z" - }, - "end": { - "$date": "2021-05-04T19:48:19.000Z" - }, - "events": [ - { - "uuid": "a79a42f6-adc4-462f-bd93-ca37bfc539f7", - "start": { - "$date": "2021-05-04T18:42:28.000Z" - }, - "end": { - "$date": "2021-05-04T18:53:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb445c6d-1878-4293-90ed-7e06dcdb9c63", - "start": { - "$date": "2021-05-04T18:53:28.000Z" - }, - "end": { - "$date": "2021-05-04T19:00:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96e06d10-011b-4ea3-94cf-b8fb08233576", - "start": { - "$date": "2021-05-04T19:00:28.000Z" - }, - "end": { - "$date": "2021-05-04T19:48:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7c78c068-bec7-46bf-b241-ab09071f95b2", - "uuid": "4fdfb183-9330-47b0-919f-a280507aaa68", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-04T19:31:50.000Z" - }, - "end": { - "$date": "2021-05-04T20:06:18.000Z" - }, - "events": [ - { - "uuid": "7cfb5c6b-41aa-4c2f-9f35-5977e50409cb", - "start": { - "$date": "2021-05-04T19:31:50.000Z" - }, - "end": { - "$date": "2021-05-04T20:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e006cd2-dd05-4df4-80fa-df601d59273a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T19:49:15.000Z" - }, - "end": { - "$date": "2021-05-04T20:16:07.000Z" - }, - "events": [ - { - "uuid": "fbbbc8a8-a32e-468c-aaa6-fc30b18cb5f1", - "start": { - "$date": "2021-05-04T19:49:15.000Z" - }, - "end": { - "$date": "2021-05-04T20:16:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96d5fa96-debc-4a70-819e-438946b7af6f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-04T20:37:04.000Z" - }, - "end": { - "$date": "2021-05-04T20:56:04.000Z" - }, - "events": [ - { - "uuid": "47b82567-55a5-49ad-af8b-308db33d57fc", - "start": { - "$date": "2021-05-04T20:37:04.000Z" - }, - "end": { - "$date": "2021-05-04T20:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c56528a0-04d3-4ab3-8844-3f8f123b029c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T00:38:28.000Z" - }, - "end": { - "$date": "2021-05-05T02:28:44.000Z" - }, - "events": [ - { - "uuid": "f8da7c27-8168-448a-81bd-7d20a8337263", - "start": { - "$date": "2021-05-05T00:38:28.000Z" - }, - "end": { - "$date": "2021-05-05T01:03:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f93e3ccb-9241-4d98-98ce-3b9cd8602c64", - "start": { - "$date": "2021-05-05T01:03:28.000Z" - }, - "end": { - "$date": "2021-05-05T01:33:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6138f8ec-4f71-4a22-a4fd-b180134d400e", - "start": { - "$date": "2021-05-05T01:33:28.000Z" - }, - "end": { - "$date": "2021-05-05T03:06:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01a6666f-5836-4d95-b336-4cfc0ba76b4c", - "start": { - "$date": "2021-05-05T03:06:28.000Z" - }, - "end": { - "$date": "2021-05-05T03:33:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4fbd1e9e-1f17-42ba-a9d6-396b1496ddab", - "start": { - "$date": "2021-05-05T03:33:28.000Z" - }, - "end": { - "$date": "2021-05-05T02:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7beb8bb7-05c4-4e04-b71c-53b420cbf113", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-04T21:17:45.000Z" - }, - "end": { - "$date": "2021-05-04T21:19:49.000Z" - }, - "events": [ - { - "uuid": "44b1c9fd-a380-4639-8fb4-e92b73365ef4", - "start": { - "$date": "2021-05-04T21:17:45.000Z" - }, - "end": { - "$date": "2021-05-04T21:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b8ad24d9-80a4-4c07-9dc8-bfd9799177cd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-04T21:17:57.000Z" - }, - "end": { - "$date": "2021-05-04T21:45:18.000Z" - }, - "events": [ - { - "uuid": "a88f9c4a-fab3-4e7b-8caa-fe0c95217af6", - "start": { - "$date": "2021-05-04T21:17:57.000Z" - }, - "end": { - "$date": "2021-05-04T21:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b739de7b-4b36-4be3-a116-ec24d521b6cb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-04T22:22:15.000Z" - }, - "end": { - "$date": "2021-05-04T22:45:35.000Z" - }, - "events": [ - { - "uuid": "d67ce76e-1ccd-43df-bf64-56306ff0c8c1", - "start": { - "$date": "2021-05-04T22:22:15.000Z" - }, - "end": { - "$date": "2021-05-04T22:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "88c9e234-71d7-4a24-96ce-a7604958efae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-04T23:03:23.000Z" - }, - "end": { - "$date": "2021-05-04T23:27:54.000Z" - }, - "events": [ - { - "uuid": "066092ef-6552-4f17-98e1-f53dd28fb2ee", - "start": { - "$date": "2021-05-04T23:03:23.000Z" - }, - "end": { - "$date": "2021-05-04T23:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e238306-289f-42ae-9e8e-635477b7d863", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T00:00:22.000Z" - }, - "end": { - "$date": "2021-05-05T00:26:58.000Z" - }, - "events": [ - { - "uuid": "b273814b-60aa-46d8-a637-e48d09354b77", - "start": { - "$date": "2021-05-05T00:00:22.000Z" - }, - "end": { - "$date": "2021-05-05T00:26:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "43fc0d91-783b-4a0b-8fc9-3a76797dfe41", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-05T00:26:22.000Z" - }, - "end": { - "$date": "2021-05-05T00:37:07.000Z" - }, - "events": [ - { - "uuid": "738b8de1-aecb-40bc-9ea7-008ffc9c38ea", - "start": { - "$date": "2021-05-05T00:26:22.000Z" - }, - "end": { - "$date": "2021-05-05T00:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45aae78e-4c2f-44cc-a51d-3af5912dd566", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T00:32:19.000Z" - }, - "end": { - "$date": "2021-05-05T00:52:33.000Z" - }, - "events": [ - { - "uuid": "316b3ac8-3d71-416d-b07a-36d500af2a07", - "start": { - "$date": "2021-05-05T00:32:19.000Z" - }, - "end": { - "$date": "2021-05-05T00:52:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1653b98a-989d-4245-a2ce-8b9abdaf41c7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T00:53:29.000Z" - }, - "end": { - "$date": "2021-05-05T01:21:12.000Z" - }, - "events": [ - { - "uuid": "b9bd7d8f-7e5a-4204-809a-583ed79547a7", - "start": { - "$date": "2021-05-05T00:53:29.000Z" - }, - "end": { - "$date": "2021-05-05T01:21:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "46d18d3c-b8ba-4c13-9570-6a8eee3b98d9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-05T00:52:59.000Z" - }, - "end": { - "$date": "2021-05-05T04:07:24.000Z" - }, - "events": [ - { - "uuid": "49ce6dc7-516a-4f32-a1e7-8eff64ee4ece", - "start": { - "$date": "2021-05-05T00:52:59.000Z" - }, - "end": { - "$date": "2021-05-05T04:07:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c0e9c5b-d845-44a7-b05f-9ec5603f9bcb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T01:26:56.000Z" - }, - "end": { - "$date": "2021-05-05T01:52:37.000Z" - }, - "events": [ - { - "uuid": "d09d2687-6095-4aa6-8842-26e7d513e42a", - "start": { - "$date": "2021-05-05T01:26:56.000Z" - }, - "end": { - "$date": "2021-05-05T01:52:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c86ad08-7710-4b3f-99a7-0bc8f4605699", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T01:35:20.000Z" - }, - "end": { - "$date": "2021-05-05T01:40:15.000Z" - }, - "events": [ - { - "uuid": "2b78d58a-cfb3-4afd-a87b-f8a78b0532c7", - "start": { - "$date": "2021-05-05T01:35:20.000Z" - }, - "end": { - "$date": "2021-05-05T01:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5db29724-57a2-4af1-900f-126e15748fa9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T01:55:11.000Z" - }, - "end": { - "$date": "2021-05-05T02:16:21.000Z" - }, - "events": [ - { - "uuid": "e9e72203-baf2-4a2c-9d27-08beac81d849", - "start": { - "$date": "2021-05-05T01:55:11.000Z" - }, - "end": { - "$date": "2021-05-05T02:16:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13629c8a-44a9-4565-90fc-ed18a910d3be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T01:59:27.000Z" - }, - "end": { - "$date": "2021-05-05T02:33:18.000Z" - }, - "events": [ - { - "uuid": "b4c60740-b19a-4110-aa90-9fc367c957cc", - "start": { - "$date": "2021-05-05T01:59:27.000Z" - }, - "end": { - "$date": "2021-05-05T02:33:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e2a95b8-7b03-4f58-8f23-dee1ed4d1b03", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T02:39:14.000Z" - }, - "end": { - "$date": "2021-05-05T03:19:15.000Z" - }, - "events": [ - { - "uuid": "87a79d9a-4124-49a6-8eaa-84d162a5e105", - "start": { - "$date": "2021-05-05T02:39:14.000Z" - }, - "end": { - "$date": "2021-05-05T03:19:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d831da56-9363-4bd0-93ed-446642145474", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T02:31:20.000Z" - }, - "end": { - "$date": "2021-05-05T03:08:27.000Z" - }, - "events": [ - { - "uuid": "64cfe60d-08d7-4424-a10b-04cd86354dd4", - "start": { - "$date": "2021-05-05T02:31:20.000Z" - }, - "end": { - "$date": "2021-05-05T03:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08acac8d-dec6-4fc3-b658-8629d760558a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T02:38:42.000Z" - }, - "end": { - "$date": "2021-05-05T03:19:16.000Z" - }, - "events": [ - { - "uuid": "fcd0cdcf-f4ed-4b91-96d0-2e6e6c72848f", - "start": { - "$date": "2021-05-05T02:38:42.000Z" - }, - "end": { - "$date": "2021-05-05T03:19:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fbf27c24-cc3c-4891-927d-7aff185c09db", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T03:08:58.000Z" - }, - "end": { - "$date": "2021-05-05T03:21:53.000Z" - }, - "events": [ - { - "uuid": "54c96e5f-87dd-4a64-b29e-49e8e3fbf47e", - "start": { - "$date": "2021-05-05T03:08:58.000Z" - }, - "end": { - "$date": "2021-05-05T03:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "be604c08-e909-44b3-8f34-4090cb3035aa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-05T03:16:06.000Z" - }, - "end": { - "$date": "2021-05-05T06:04:23.000Z" - }, - "events": [ - { - "uuid": "48df7a1e-dcb7-4cdc-a44a-e75d919cd6ef", - "start": { - "$date": "2021-05-05T03:16:06.000Z" - }, - "end": { - "$date": "2021-05-05T06:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5bfbdaa-0571-43db-9e1a-8f3ee54390a7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T03:24:35.000Z" - }, - "end": { - "$date": "2021-05-05T03:50:46.000Z" - }, - "events": [ - { - "uuid": "875888d5-d819-47b6-bbf0-0e1f95c5d4d4", - "start": { - "$date": "2021-05-05T03:24:35.000Z" - }, - "end": { - "$date": "2021-05-05T03:50:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74fff108-4af7-45d7-a322-dfc7060e4983", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T03:23:59.000Z" - }, - "end": { - "$date": "2021-05-05T03:50:54.000Z" - }, - "events": [ - { - "uuid": "1b513cc6-501f-45f7-81c7-11f04770c1d4", - "start": { - "$date": "2021-05-05T03:23:59.000Z" - }, - "end": { - "$date": "2021-05-05T03:50:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "acf0ec58-a964-4760-a46e-12518bae4e12", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-05T03:22:19.000Z" - }, - "end": { - "$date": "2021-05-05T06:04:19.000Z" - }, - "events": [ - { - "uuid": "8e1b6124-72df-4981-a1da-d22cd3ddf373", - "start": { - "$date": "2021-05-05T03:22:19.000Z" - }, - "end": { - "$date": "2021-05-05T06:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c71a7d82-c1c5-477d-a08f-8785d155c3e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T03:33:47.000Z" - }, - "end": { - "$date": "2021-05-05T04:09:59.000Z" - }, - "events": [ - { - "uuid": "116ad11a-cd13-4df4-97b5-6d30cd5e9917", - "start": { - "$date": "2021-05-05T03:33:47.000Z" - }, - "end": { - "$date": "2021-05-05T04:09:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f918efb-fcf7-4723-977d-fcd16bfbb787", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T04:01:56.000Z" - }, - "end": { - "$date": "2021-05-05T04:45:33.000Z" - }, - "events": [ - { - "uuid": "39ebdee7-12d2-4b67-be37-1e8caf99c289", - "start": { - "$date": "2021-05-05T04:01:56.000Z" - }, - "end": { - "$date": "2021-05-05T04:45:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74159029-1864-4a2e-9bf4-6d01b354f1ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T04:01:47.000Z" - }, - "end": { - "$date": "2021-05-05T04:45:28.000Z" - }, - "events": [ - { - "uuid": "665009f0-3df2-4ca0-bb92-076bf2858561", - "start": { - "$date": "2021-05-05T04:01:47.000Z" - }, - "end": { - "$date": "2021-05-05T04:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "65b649fa-398f-4e2b-a93a-ef70cb65abd4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T04:16:16.000Z" - }, - "end": { - "$date": "2021-05-05T04:46:14.000Z" - }, - "events": [ - { - "uuid": "07031090-ab20-4033-8780-5a2e6d23e5c2", - "start": { - "$date": "2021-05-05T04:16:16.000Z" - }, - "end": { - "$date": "2021-05-05T04:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fd58fb65-bff7-4253-8030-ae9b8c108004", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-05T04:26:20.000Z" - }, - "end": { - "$date": "2021-05-05T05:56:53.000Z" - }, - "events": [ - { - "uuid": "e1bf6ea9-dbb6-4c65-878f-d7c1fa5ac004", - "start": { - "$date": "2021-05-05T04:26:20.000Z" - }, - "end": { - "$date": "2021-05-05T05:56:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b8f975b2-b64a-459d-af35-0bea8e45c942", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T22:01:52.000Z" - }, - "end": { - "$date": "2021-05-05T22:05:52.000Z" - }, - "events": [ - { - "uuid": "a4dbeb24-d7b3-4106-aa11-5a344bf4fcc7", - "start": { - "$date": "2021-05-05T22:01:52.000Z" - }, - "end": { - "$date": "2021-05-05T22:12:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "454e4a82-8e7e-452e-87c1-3a4ebf4ea2b6", - "start": { - "$date": "2021-05-05T22:12:52.000Z" - }, - "end": { - "$date": "2021-05-05T22:19:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20f4ccbe-bc12-4a8a-b539-f393840303f2", - "start": { - "$date": "2021-05-05T22:19:52.000Z" - }, - "end": { - "$date": "2021-05-05T22:21:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "afcb438c-f65e-49bf-b0e9-758c6f72b9af", - "start": { - "$date": "2021-05-05T22:21:52.000Z" - }, - "end": { - "$date": "2021-05-06T08:37:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "813b4042-4833-4eb9-b8ec-00862129bb5f", - "start": { - "$date": "2021-05-06T08:37:52.000Z" - }, - "end": { - "$date": "2021-05-06T08:41:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "649acf97-2679-4f0c-b8a8-cf66f5a7c4c3", - "start": { - "$date": "2021-05-06T08:41:52.000Z" - }, - "end": { - "$date": "2021-05-06T08:59:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f67c934e-ac81-407d-8beb-360ff8497a93", - "start": { - "$date": "2021-05-06T08:59:52.000Z" - }, - "end": { - "$date": "2021-05-06T09:23:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "333335f7-2a56-4c3c-8257-9f52cd0eb00a", - "start": { - "$date": "2021-05-06T09:23:52.000Z" - }, - "end": { - "$date": "2021-05-06T09:27:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "24085c68-6ef4-4465-a74d-1c2a012a0ded", - "start": { - "$date": "2021-05-06T09:27:52.000Z" - }, - "end": { - "$date": "2021-05-06T10:09:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e956cdb2-5a25-45cf-8d4a-2049faf6db10", - "start": { - "$date": "2021-05-06T10:09:52.000Z" - }, - "end": { - "$date": "2021-05-06T10:26:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18f01cc9-4fc8-4fd2-9c36-e527b96ed5b9", - "start": { - "$date": "2021-05-06T10:26:52.000Z" - }, - "end": { - "$date": "2021-05-06T10:36:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f3cf213-8303-438c-a81f-83f58e86e93c", - "start": { - "$date": "2021-05-06T10:36:52.000Z" - }, - "end": { - "$date": "2021-05-06T10:37:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e3188bc-a2cb-49cd-b348-a1a9ef7a8b0a", - "start": { - "$date": "2021-05-06T10:37:52.000Z" - }, - "end": { - "$date": "2021-05-06T13:17:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97fee802-0213-407f-be79-e731a56af933", - "start": { - "$date": "2021-05-06T13:17:52.000Z" - }, - "end": { - "$date": "2021-05-06T14:34:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "892197c8-dc96-49d3-ac1b-7299d3a6b3a5", - "start": { - "$date": "2021-05-06T14:34:52.000Z" - }, - "end": { - "$date": "2021-05-05T22:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ffc93c13-7440-482d-a324-24c067a0a743", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-05T04:48:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:28:20.000Z" - }, - "events": [ - { - "uuid": "c5170aa6-9c8a-484d-88a8-f573633758a6", - "start": { - "$date": "2021-05-05T04:48:46.000Z" - }, - "end": { - "$date": "2021-05-05T06:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1a801ba-22f3-4340-8f3a-da3632a06e6b", - "uuid": "4e1f98db-9630-473b-8f74-6bf3ca956f12", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-05T05:02:16.000Z" - }, - "end": { - "$date": "2021-05-05T05:15:02.000Z" - }, - "events": [ - { - "uuid": "16fbd790-1253-4790-99fd-c010ff677a4a", - "start": { - "$date": "2021-05-05T05:02:16.000Z" - }, - "end": { - "$date": "2021-05-05T05:15:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4bb5a31e-1be5-43b9-bb37-da52fc48a07f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-05T05:07:43.000Z" - }, - "end": { - "$date": "2021-05-05T05:12:10.000Z" - }, - "events": [ - { - "uuid": "23933e25-4dee-4ae1-98dc-a2330e690f6b", - "start": { - "$date": "2021-05-05T05:07:43.000Z" - }, - "end": { - "$date": "2021-05-05T05:12:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b84899c-b2a8-4cdf-8e77-63e8d63f57f9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-05T05:21:33.000Z" - }, - "end": { - "$date": "2021-05-05T05:54:24.000Z" - }, - "events": [ - { - "uuid": "cd0b073e-cad4-4fdb-a791-6c55b4ad26e0", - "start": { - "$date": "2021-05-05T05:21:33.000Z" - }, - "end": { - "$date": "2021-05-05T05:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16ae7080-cbdb-4d8b-9a42-c0b0650c68d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T05:41:32.000Z" - }, - "end": { - "$date": "2021-05-05T06:20:06.000Z" - }, - "events": [ - { - "uuid": "c2f17c4a-37c4-4aab-b766-1f803699a78c", - "start": { - "$date": "2021-05-05T05:41:32.000Z" - }, - "end": { - "$date": "2021-05-05T06:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e77e14f6-ec52-44c4-9742-0da4d80601bb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T06:27:16.000Z" - }, - "end": { - "$date": "2021-05-05T06:50:03.000Z" - }, - "events": [ - { - "uuid": "0dd1cceb-4612-4bd6-b81b-6cd76682396a", - "start": { - "$date": "2021-05-05T06:27:16.000Z" - }, - "end": { - "$date": "2021-05-05T06:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8da6cf46-ef5f-4ea1-bcaf-ea4a95fd090b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T07:44:28.000Z" - }, - "end": { - "$date": "2021-05-05T08:08:54.000Z" - }, - "events": [ - { - "uuid": "36b57e32-c4f0-478e-87e9-2574bac28bf5", - "start": { - "$date": "2021-05-05T07:44:28.000Z" - }, - "end": { - "$date": "2021-05-05T08:08:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f023264-7e7d-49d9-aada-aecf548b2042", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T08:13:51.000Z" - }, - "end": { - "$date": "2021-05-05T08:43:32.000Z" - }, - "events": [ - { - "uuid": "13da5f8c-a492-463a-bf75-2d9a19415f7f", - "start": { - "$date": "2021-05-05T08:13:51.000Z" - }, - "end": { - "$date": "2021-05-05T08:43:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86649c7c-7d5c-4b5e-8420-b847e8ba3f1b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T08:48:34.000Z" - }, - "end": { - "$date": "2021-05-05T09:21:37.000Z" - }, - "events": [ - { - "uuid": "1e3071d4-ac94-4b0e-a843-22b22302fd32", - "start": { - "$date": "2021-05-05T08:48:34.000Z" - }, - "end": { - "$date": "2021-05-05T09:21:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bee70228-bc46-43e8-9ff5-c3051f399185", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T11:00:41.000Z" - }, - "end": { - "$date": "2021-05-05T11:48:05.000Z" - }, - "events": [ - { - "uuid": "11167d9c-1e98-474a-b67f-b20fb0e22538", - "start": { - "$date": "2021-05-05T11:00:41.000Z" - }, - "end": { - "$date": "2021-05-05T11:48:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "04c581a7-abd9-4a60-a918-4e33d6ec59f9", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-05T20:02:57.000Z" - }, - "end": { - "$date": "2021-05-06T02:10:20.000Z" - }, - "events": [ - { - "uuid": "56be7b43-b704-48a3-9dd4-ca2ede504a35", - "start": { - "$date": "2021-05-05T20:02:57.000Z" - }, - "end": { - "$date": "2021-05-06T02:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "671b57c9-6966-498f-9851-06d1313ebba1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-05T20:17:43.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:47.000Z" - }, - "events": [ - { - "uuid": "09b5def6-bd9b-42be-b382-5c3d282c1353", - "start": { - "$date": "2021-05-05T20:17:43.000Z" - }, - "end": { - "$date": "2021-05-05T20:26:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95a9fb1d-7200-4f29-9b4a-8813c933aa73", - "start": { - "$date": "2021-05-05T20:26:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:18:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97284a38-7797-483d-9655-51d308423c85", - "start": { - "$date": "2021-05-05T21:18:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:25:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c43f18be-1da1-4e30-8f8e-86220072dfd4", - "start": { - "$date": "2021-05-05T21:25:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:32:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f7ddf5f-7b9e-4226-82d5-3dfcfdcfc102", - "start": { - "$date": "2021-05-05T21:32:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:36:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f75cb27-26f2-40bb-8250-b3229f969102", - "start": { - "$date": "2021-05-05T21:36:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:37:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b38078d-0934-4c86-95c8-2b93a502913e", - "start": { - "$date": "2021-05-05T21:37:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:39:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "776683e4-a474-4211-9465-782a86153996", - "start": { - "$date": "2021-05-05T21:39:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:53:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61857853-5bd7-4fba-99a0-5906fd04cd66", - "start": { - "$date": "2021-05-05T21:53:43.000Z" - }, - "end": { - "$date": "2021-05-05T21:55:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b886d0fd-a3ab-43a3-993f-0ee725c8b7bd", - "start": { - "$date": "2021-05-05T21:55:43.000Z" - }, - "end": { - "$date": "2021-05-05T22:00:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9528b9f7-de55-427e-9e68-3873ab5a9537", - "start": { - "$date": "2021-05-05T22:00:43.000Z" - }, - "end": { - "$date": "2021-05-05T22:02:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "433328a6-ea78-4911-9023-df5b152dc8f0", - "start": { - "$date": "2021-05-05T22:02:43.000Z" - }, - "end": { - "$date": "2021-05-05T22:05:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41aec64c-454b-4aee-adf8-35bfc803a2ba", - "start": { - "$date": "2021-05-05T22:05:43.000Z" - }, - "end": { - "$date": "2021-05-05T23:21:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "956efcad-ef8a-49c2-9226-ec08f03979be", - "start": { - "$date": "2021-05-05T23:21:43.000Z" - }, - "end": { - "$date": "2021-05-05T23:29:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c65812c3-34ef-492d-b8d1-b67ae6394d02", - "start": { - "$date": "2021-05-05T23:29:43.000Z" - }, - "end": { - "$date": "2021-05-05T23:33:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74fb2ea8-fef8-4630-9283-c963cc821577", - "start": { - "$date": "2021-05-05T23:33:43.000Z" - }, - "end": { - "$date": "2021-05-05T23:55:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7cb78fc1-96b2-4d95-9733-df2b64676e29", - "start": { - "$date": "2021-05-05T23:55:43.000Z" - }, - "end": { - "$date": "2021-05-06T00:00:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6672639-aa28-423a-9b53-f309c15f3085", - "start": { - "$date": "2021-05-06T00:00:43.000Z" - }, - "end": { - "$date": "2021-05-06T00:40:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6601b5b0-c138-496b-bb6d-79912109f432", - "start": { - "$date": "2021-05-06T00:40:43.000Z" - }, - "end": { - "$date": "2021-05-06T00:42:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c014845e-7b85-4781-b156-486d18a5a9d2", - "start": { - "$date": "2021-05-06T00:42:43.000Z" - }, - "end": { - "$date": "2021-05-06T00:43:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5719be4e-4977-4ad3-8e5b-3a2f5d2549fc", - "start": { - "$date": "2021-05-06T00:43:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:04:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "600391f6-326a-4eba-bfe7-72e162ee3690", - "start": { - "$date": "2021-05-06T01:04:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:11:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "77364340-36b6-443e-b74d-61a6f5d07abd", - "start": { - "$date": "2021-05-06T01:11:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:13:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f9a43e5-9e0e-42d4-8269-b53a96081fa2", - "start": { - "$date": "2021-05-06T01:13:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:34:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eec6c9f6-e77d-4e7f-b22c-10636292043b", - "start": { - "$date": "2021-05-06T01:34:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:36:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a62b772-920b-41ca-af3e-877af79e6f7a", - "start": { - "$date": "2021-05-06T01:36:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:12:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "485a837d-5efc-4fcf-8c6b-47a427f5cb75", - "start": { - "$date": "2021-05-06T02:12:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:14:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dbab4e01-61fc-411b-a2e6-4181658c2442", - "start": { - "$date": "2021-05-06T02:14:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:20:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c1ad624-1b82-4c5a-8c37-6016bdd82099", - "start": { - "$date": "2021-05-06T02:20:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:22:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4fbe4b2a-391a-47bd-b28a-2959806c9b23", - "start": { - "$date": "2021-05-06T02:22:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:40:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b1565e1a-7446-448d-a6d1-a8d82ad52883", - "start": { - "$date": "2021-05-06T02:40:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:42:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d14a88f0-4181-4b08-9751-fdd715dc2fe5", - "start": { - "$date": "2021-05-06T02:42:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:56:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8bdbd0ea-ee24-48e2-99fa-808a17ea1939", - "start": { - "$date": "2021-05-06T02:56:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:58:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "192562db-b395-40b8-80ef-e6d0da017eb0", - "start": { - "$date": "2021-05-06T02:58:43.000Z" - }, - "end": { - "$date": "2021-05-06T02:59:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9d150639-be4d-4d30-8b43-1e1440bcbf78", - "start": { - "$date": "2021-05-06T02:59:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:02:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dbb91383-83b8-4d8d-8080-055b96f4d5fa", - "start": { - "$date": "2021-05-06T03:02:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:19:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5e1a6a1-73ce-46ab-9309-275bf958ec15", - "start": { - "$date": "2021-05-06T03:19:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:21:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "564ea372-8c59-49f6-bcd4-c685a9239b1f", - "start": { - "$date": "2021-05-06T03:21:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:22:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f824bca7-0888-4e26-a47c-679a9cb4aee4", - "start": { - "$date": "2021-05-06T03:22:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:24:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "326498bf-6c3a-4020-be0c-960643d0a5bd", - "start": { - "$date": "2021-05-06T03:24:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:25:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e6de23d0-abc3-49bf-907b-c253b17c5ca6", - "start": { - "$date": "2021-05-06T03:25:43.000Z" - }, - "end": { - "$date": "2021-05-06T03:27:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b864a129-2736-4743-a036-43ed815efb94", - "start": { - "$date": "2021-05-06T03:27:43.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1fd8e918-0f4f-41ee-8924-58843c0453cb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-05T18:41:37.000Z" - }, - "end": { - "$date": "2021-05-05T19:54:54.000Z" - }, - "events": [ - { - "uuid": "640b7103-799e-44f2-99c7-c4fa79ddb54e", - "start": { - "$date": "2021-05-05T18:41:37.000Z" - }, - "end": { - "$date": "2021-05-05T19:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3b7a227a-05ec-4b21-b0d1-e0b1f97cb606", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-05T21:01:22.000Z" - }, - "end": { - "$date": "2021-05-05T22:01:57.000Z" - }, - "events": [ - { - "uuid": "5c406caf-1721-41db-851d-e1d040ff9931", - "start": { - "$date": "2021-05-05T21:01:22.000Z" - }, - "end": { - "$date": "2021-05-05T22:01:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cb6f7ba-23c7-4562-8b69-731ebddc5dec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T21:47:42.000Z" - }, - "end": { - "$date": "2021-05-05T22:26:23.000Z" - }, - "events": [ - { - "uuid": "e454bd4d-8056-4eab-9668-f28a59aee683", - "start": { - "$date": "2021-05-05T21:47:42.000Z" - }, - "end": { - "$date": "2021-05-05T22:26:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d0a6150-2ffc-4d56-91a8-936ada4f4227", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T22:07:58.000Z" - }, - "end": { - "$date": "2021-05-05T22:37:44.000Z" - }, - "events": [ - { - "uuid": "805e91ed-c81d-410d-92ee-5c3196f97d55", - "start": { - "$date": "2021-05-05T22:07:58.000Z" - }, - "end": { - "$date": "2021-05-05T22:37:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27a8a051-b98f-4119-a143-0d6ed96d413f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T22:28:00.000Z" - }, - "end": { - "$date": "2021-05-05T22:30:53.000Z" - }, - "events": [ - { - "uuid": "651f395d-5ec8-49ce-9a99-e4f6471e8ea5", - "start": { - "$date": "2021-05-05T22:28:00.000Z" - }, - "end": { - "$date": "2021-05-05T22:30:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70213199-7dd7-4ec5-a0cd-9f4683b741d8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-05T22:44:01.000Z" - }, - "end": { - "$date": "2021-05-05T23:02:29.000Z" - }, - "events": [ - { - "uuid": "b264107c-810b-4f74-9067-0ee8aa43a206", - "start": { - "$date": "2021-05-05T22:44:01.000Z" - }, - "end": { - "$date": "2021-05-05T23:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "829ed4f0-42f0-40e8-9085-3b8d7b0b17f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T22:33:34.000Z" - }, - "end": { - "$date": "2021-05-05T22:36:12.000Z" - }, - "events": [ - { - "uuid": "1418bf27-cd52-481d-b2e6-bdf59ecd3c25", - "start": { - "$date": "2021-05-05T22:33:34.000Z" - }, - "end": { - "$date": "2021-05-05T22:36:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec254487-bc4e-48ac-ab24-717f6d90fd97", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T22:33:33.000Z" - }, - "end": { - "$date": "2021-05-05T22:36:16.000Z" - }, - "events": [ - { - "uuid": "327e646b-3aae-4561-b7e8-477c039dda22", - "start": { - "$date": "2021-05-05T22:33:33.000Z" - }, - "end": { - "$date": "2021-05-05T22:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a43be9a9-4b21-4bf3-a43e-1be63e21445c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T22:36:19.000Z" - }, - "end": { - "$date": "2021-05-05T22:40:23.000Z" - }, - "events": [ - { - "uuid": "5da8c607-447c-4898-af05-01acb5761409", - "start": { - "$date": "2021-05-05T22:36:19.000Z" - }, - "end": { - "$date": "2021-05-05T22:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "058cdc8d-2b9c-44a3-9047-0184a3ef3b3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T22:36:19.000Z" - }, - "end": { - "$date": "2021-05-05T22:40:22.000Z" - }, - "events": [ - { - "uuid": "329d6f46-25df-4878-b24c-9ecb0289aee5", - "start": { - "$date": "2021-05-05T22:36:19.000Z" - }, - "end": { - "$date": "2021-05-05T22:40:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1d4cb58e-066a-4725-aaa2-415ec2b2d0bd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-05T22:38:50.000Z" - }, - "end": { - "$date": "2021-05-06T00:42:03.000Z" - }, - "events": [ - { - "uuid": "56ce0788-9d25-4024-88bf-bb33405ebac3", - "start": { - "$date": "2021-05-05T22:38:50.000Z" - }, - "end": { - "$date": "2021-05-06T00:04:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "540f1335-b716-4f26-a127-99ad17814fb2", - "start": { - "$date": "2021-05-06T00:04:50.000Z" - }, - "end": { - "$date": "2021-05-06T00:39:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "405d2f39-3dbd-4c31-88fb-4015c264ab96", - "start": { - "$date": "2021-05-06T00:39:50.000Z" - }, - "end": { - "$date": "2021-05-06T00:42:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1bfd82e-2406-4a98-9f78-9b47e3e80c5a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T22:43:57.000Z" - }, - "end": { - "$date": "2021-05-05T23:02:27.000Z" - }, - "events": [ - { - "uuid": "a1982cba-04fe-40fa-ae36-8acdc443be18", - "start": { - "$date": "2021-05-05T22:43:57.000Z" - }, - "end": { - "$date": "2021-05-05T23:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d5886ff-a7df-4e42-a601-8289e85d67cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T22:44:01.000Z" - }, - "end": { - "$date": "2021-05-05T23:02:32.000Z" - }, - "events": [ - { - "uuid": "ab5ea1b9-764e-4ce8-990d-efa529a0bfce", - "start": { - "$date": "2021-05-05T22:44:01.000Z" - }, - "end": { - "$date": "2021-05-05T23:02:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0f0a56a-7ab4-43cd-83bd-1b85ca2e023b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-05T23:05:52.000Z" - }, - "end": { - "$date": "2021-05-05T23:37:10.000Z" - }, - "events": [ - { - "uuid": "1cb2fc17-1d19-4f82-bc77-f076b39f04ad", - "start": { - "$date": "2021-05-05T23:05:52.000Z" - }, - "end": { - "$date": "2021-05-05T23:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "379267f4-ab02-4529-9e75-6099de24d752", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T23:06:28.000Z" - }, - "end": { - "$date": "2021-05-05T23:37:09.000Z" - }, - "events": [ - { - "uuid": "8a23342a-7617-4dfe-a6aa-4416d51bc7c0", - "start": { - "$date": "2021-05-05T23:06:28.000Z" - }, - "end": { - "$date": "2021-05-05T23:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78cdf176-e905-42cc-9957-d0138c1d5357", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T23:05:53.000Z" - }, - "end": { - "$date": "2021-05-05T23:37:20.000Z" - }, - "events": [ - { - "uuid": "df9b4d41-7c47-4d63-8454-291cb5ce8850", - "start": { - "$date": "2021-05-05T23:05:53.000Z" - }, - "end": { - "$date": "2021-05-05T23:37:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ad4d7f73-55e2-4e53-952b-f8214b3f69dc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-05-05T23:19:56.000Z" - }, - "end": { - "$date": "2021-05-05T23:56:42.000Z" - }, - "events": [ - { - "uuid": "55e7ed81-8945-4d47-8dfc-74182879fc6f", - "start": { - "$date": "2021-05-05T23:19:56.000Z" - }, - "end": { - "$date": "2021-05-05T23:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cd87db9-fb17-4d60-b085-2c957a965aaf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-05T23:39:22.000Z" - }, - "end": { - "$date": "2021-05-05T23:58:10.000Z" - }, - "events": [ - { - "uuid": "86cd0be2-a57f-4445-9fff-81bde69fb0a2", - "start": { - "$date": "2021-05-05T23:39:22.000Z" - }, - "end": { - "$date": "2021-05-05T23:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed8330f3-f3cc-4e53-93ea-c9e5efb10d9f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-05T23:41:50.000Z" - }, - "end": { - "$date": "2021-05-05T23:58:15.000Z" - }, - "events": [ - { - "uuid": "33efb0a0-2fa0-4ef6-8122-bc85676b3037", - "start": { - "$date": "2021-05-05T23:41:50.000Z" - }, - "end": { - "$date": "2021-05-05T23:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "735856cf-9ddb-431c-94c3-78c77ccb0bca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-05T23:39:19.000Z" - }, - "end": { - "$date": "2021-05-05T23:58:19.000Z" - }, - "events": [ - { - "uuid": "ec5bfde2-a071-49c8-9be1-6e1b46d0e9c9", - "start": { - "$date": "2021-05-05T23:39:19.000Z" - }, - "end": { - "$date": "2021-05-05T23:58:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ed718def-868f-40fb-9c12-c0addb3a3dd6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-05-05T23:57:41.000Z" - }, - "end": { - "$date": "2021-05-06T00:15:34.000Z" - }, - "events": [ - { - "uuid": "b6ef554f-92e7-4b31-8498-6521acc8f1f4", - "start": { - "$date": "2021-05-05T23:57:41.000Z" - }, - "end": { - "$date": "2021-05-06T00:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4a09f20-1ae9-4a23-8144-da05c2de73c6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T00:00:58.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:21.000Z" - }, - "events": [ - { - "uuid": "235f2549-ce48-4aaf-a6a7-705f23b22b3c", - "start": { - "$date": "2021-05-06T00:00:58.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8ef7199-bf41-4d10-b2ab-8aaacc77d6b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T00:00:40.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:30.000Z" - }, - "events": [ - { - "uuid": "0dc6ec99-a7c3-471f-8344-98737fffdc18", - "start": { - "$date": "2021-05-06T00:00:40.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab566003-3f34-4c48-b552-1932f60fc637", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T00:03:01.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:24.000Z" - }, - "events": [ - { - "uuid": "521f2f50-25be-44cb-9e9c-8ce4517fc14f", - "start": { - "$date": "2021-05-06T00:03:01.000Z" - }, - "end": { - "$date": "2021-05-06T00:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f52d02a-7eae-4d3b-8c1e-a8f8836f7260", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T00:43:59.000Z" - }, - "end": { - "$date": "2021-05-06T01:18:21.000Z" - }, - "events": [ - { - "uuid": "5023326f-2bd0-478d-b511-8b92060d9b2c", - "start": { - "$date": "2021-05-06T00:43:59.000Z" - }, - "end": { - "$date": "2021-05-06T01:18:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8e2045fc-6921-4134-949c-94018984fe8a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-06T01:01:33.000Z" - }, - "end": { - "$date": "2021-05-06T03:08:01.000Z" - }, - "events": [ - { - "uuid": "597a3e33-bd15-4e74-bf14-e8dd352a09d2", - "start": { - "$date": "2021-05-06T01:01:33.000Z" - }, - "end": { - "$date": "2021-05-06T03:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9c490979-d496-488b-84e2-1b5196a42df8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-05T20:17:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:03:06.000Z" - }, - "events": [ - { - "uuid": "cc59cd1c-fc12-46db-a1aa-435a1516b461", - "start": { - "$date": "2021-05-05T20:17:43.000Z" - }, - "end": { - "$date": "2021-05-06T01:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1aca2ad7-5c12-47ea-95df-8a79ab7c7c15", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-06T01:04:11.000Z" - }, - "end": { - "$date": "2021-05-06T01:11:47.000Z" - }, - "events": [ - { - "uuid": "733633ea-bfea-467a-af40-983c81e78cef", - "start": { - "$date": "2021-05-06T01:04:11.000Z" - }, - "end": { - "$date": "2021-05-06T01:11:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "52352a9d-03a5-439b-979c-9f924dada9fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-06T01:15:47.000Z" - }, - "end": { - "$date": "2021-05-06T03:07:55.000Z" - }, - "events": [ - { - "uuid": "603f5de4-6408-432d-a0c6-d9ed9fa46ad0", - "start": { - "$date": "2021-05-06T01:15:47.000Z" - }, - "end": { - "$date": "2021-05-06T03:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5af7f620-3490-4103-aff6-b0e4cf7c5dbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T01:23:41.000Z" - }, - "end": { - "$date": "2021-05-06T01:52:00.000Z" - }, - "events": [ - { - "uuid": "bad0bce4-1640-4577-a12d-e2d2072796de", - "start": { - "$date": "2021-05-06T01:23:41.000Z" - }, - "end": { - "$date": "2021-05-06T01:52:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b62d3209-7991-4425-8e8f-f5ac01e39682", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T01:23:36.000Z" - }, - "end": { - "$date": "2021-05-06T01:51:52.000Z" - }, - "events": [ - { - "uuid": "ed98e2c2-2336-4066-9efc-6c9c70c322f5", - "start": { - "$date": "2021-05-06T01:23:36.000Z" - }, - "end": { - "$date": "2021-05-06T01:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "42815e8d-a991-4b1f-ae7e-15adb808b94f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T01:19:37.000Z" - }, - "end": { - "$date": "2021-05-06T02:44:12.000Z" - }, - "events": [ - { - "uuid": "fa4bb9a8-9f86-4935-a5dd-34576b39c413", - "start": { - "$date": "2021-05-06T01:19:37.000Z" - }, - "end": { - "$date": "2021-05-06T02:44:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2998befe-6419-4694-895a-f9c728299bf0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T02:02:59.000Z" - }, - "end": { - "$date": "2021-05-06T02:31:15.000Z" - }, - "events": [ - { - "uuid": "de497d12-42f2-4753-a634-9c0d30fe7752", - "start": { - "$date": "2021-05-06T02:02:59.000Z" - }, - "end": { - "$date": "2021-05-06T02:31:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3eb59ed5-2fce-4cde-b592-410c78c66c7a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T02:04:04.000Z" - }, - "end": { - "$date": "2021-05-06T02:31:09.000Z" - }, - "events": [ - { - "uuid": "1d2551ae-53b0-4ce7-8b25-294248282cc2", - "start": { - "$date": "2021-05-06T02:04:04.000Z" - }, - "end": { - "$date": "2021-05-06T02:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c88d4f7d-a775-45ea-95db-2327c36e38ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T02:35:36.000Z" - }, - "end": { - "$date": "2021-05-06T03:04:43.000Z" - }, - "events": [ - { - "uuid": "ddae37f5-eedc-4744-9156-3aee8f29f906", - "start": { - "$date": "2021-05-06T02:35:36.000Z" - }, - "end": { - "$date": "2021-05-06T03:04:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "766114e2-785b-4054-bf01-abd378cd2962", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T02:35:30.000Z" - }, - "end": { - "$date": "2021-05-06T03:04:36.000Z" - }, - "events": [ - { - "uuid": "fe262384-feb8-4b91-a30f-86a41080c694", - "start": { - "$date": "2021-05-06T02:35:30.000Z" - }, - "end": { - "$date": "2021-05-06T03:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c2c324b3-e4e1-4965-93b8-8587e8d011e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T03:08:00.000Z" - }, - "end": { - "$date": "2021-05-06T03:17:50.000Z" - }, - "events": [ - { - "uuid": "a1773f26-9d30-43c5-8397-bb6ad742ff00", - "start": { - "$date": "2021-05-06T03:08:00.000Z" - }, - "end": { - "$date": "2021-05-06T03:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "547ff5c6-4de4-470b-90dc-dd204ebb50f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T03:13:53.000Z" - }, - "end": { - "$date": "2021-05-06T03:50:40.000Z" - }, - "events": [ - { - "uuid": "89a771f7-7468-42bd-b939-bacea683b698", - "start": { - "$date": "2021-05-06T03:13:53.000Z" - }, - "end": { - "$date": "2021-05-06T03:50:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e41eea38-058e-4312-9703-a6d06f7d627d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T03:13:48.000Z" - }, - "end": { - "$date": "2021-05-06T03:50:29.000Z" - }, - "events": [ - { - "uuid": "ca68ea71-62d4-4825-b1e6-40ec33e34ef4", - "start": { - "$date": "2021-05-06T03:13:48.000Z" - }, - "end": { - "$date": "2021-05-06T03:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", - "uuid": "95d50c96-286f-4c81-89a2-51705bc7248c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T03:22:17.000Z" - }, - "end": { - "$date": "2021-05-06T03:32:03.000Z" - }, - "events": [ - { - "uuid": "578ac915-b929-4f30-861a-6d13760a50cf", - "start": { - "$date": "2021-05-06T03:22:17.000Z" - }, - "end": { - "$date": "2021-05-06T03:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4ff33332-a144-4fff-88d4-b46e1b60802d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-06T03:29:45.000Z" - }, - "end": { - "$date": "2021-05-06T07:32:37.000Z" - }, - "events": [ - { - "uuid": "4eabeb83-1876-45d6-9300-57f63eb54c03", - "start": { - "$date": "2021-05-06T03:29:45.000Z" - }, - "end": { - "$date": "2021-05-06T03:49:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c81c7ad5-0306-48e8-b331-a57d6e7fcbd8", - "start": { - "$date": "2021-05-06T03:49:45.000Z" - }, - "end": { - "$date": "2021-05-06T03:50:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7fc3168a-7704-4a3f-9e61-0fd279129ed6", - "start": { - "$date": "2021-05-06T03:50:45.000Z" - }, - "end": { - "$date": "2021-05-06T03:56:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd3b8332-5af0-4d02-9cf8-975fc287ff97", - "start": { - "$date": "2021-05-06T03:56:45.000Z" - }, - "end": { - "$date": "2021-05-06T04:09:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59e2b688-89c7-49a3-bffe-dc0c9e877a84", - "start": { - "$date": "2021-05-06T04:09:45.000Z" - }, - "end": { - "$date": "2021-05-06T04:14:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddccdaaa-04df-43c4-a4a6-89df2f24b0eb", - "start": { - "$date": "2021-05-06T04:14:45.000Z" - }, - "end": { - "$date": "2021-05-06T04:31:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "494eaead-8a0d-44d3-90e0-e672e264ed0d", - "start": { - "$date": "2021-05-06T04:31:45.000Z" - }, - "end": { - "$date": "2021-05-06T04:33:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6514d9c2-5654-448e-a499-e47a1c1da9ac", - "start": { - "$date": "2021-05-06T04:33:45.000Z" - }, - "end": { - "$date": "2021-05-06T04:45:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4ce22c96-9238-4ec5-97ca-449a1f7375ac", - "start": { - "$date": "2021-05-06T04:45:45.000Z" - }, - "end": { - "$date": "2021-05-06T04:47:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12cba9f1-ae98-4b5b-9d84-fcabef34da3b", - "start": { - "$date": "2021-05-06T04:47:45.000Z" - }, - "end": { - "$date": "2021-05-06T05:28:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edfab408-817e-4fa8-9964-2b0c10fc840f", - "start": { - "$date": "2021-05-06T05:28:45.000Z" - }, - "end": { - "$date": "2021-05-06T05:30:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6968df35-2fc1-439d-af73-089cecc4a8ff", - "start": { - "$date": "2021-05-06T05:30:45.000Z" - }, - "end": { - "$date": "2021-05-06T06:14:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b9735f7f-e37e-4953-9410-379b876c73fb", - "start": { - "$date": "2021-05-06T06:14:45.000Z" - }, - "end": { - "$date": "2021-05-06T06:16:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ce6edfd-a4b4-4497-ad68-d6eec606e8ba", - "start": { - "$date": "2021-05-06T06:16:45.000Z" - }, - "end": { - "$date": "2021-05-06T06:20:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8aa1a48-d9d7-4d54-8f7a-5a3ffb7a35f9", - "start": { - "$date": "2021-05-06T06:20:45.000Z" - }, - "end": { - "$date": "2021-05-06T06:22:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "617d584c-17b9-40ff-95d3-6642a860e3fb", - "start": { - "$date": "2021-05-06T06:22:45.000Z" - }, - "end": { - "$date": "2021-05-06T06:30:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0be705f0-8cbb-40fb-8494-2d1e112d64ad", - "start": { - "$date": "2021-05-06T06:30:45.000Z" - }, - "end": { - "$date": "2021-05-06T06:32:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a0ca91c-32cb-40f9-bed9-47400ae536f7", - "start": { - "$date": "2021-05-06T06:32:45.000Z" - }, - "end": { - "$date": "2021-05-06T07:32:37.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "5a31cc37-bbcf-4a79-9e28-7e1e5fcc35ad", - "uuid": "592e186a-bf0e-4272-b4c8-c3430e544899", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T03:32:23.000Z" - }, - "end": { - "$date": "2021-05-06T03:36:08.000Z" - }, - "events": [ - { - "uuid": "586cf7de-fade-4acb-af69-076f427de860", - "start": { - "$date": "2021-05-06T03:32:23.000Z" - }, - "end": { - "$date": "2021-05-06T03:36:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63c2021-12b2-42d6-8294-c042018280b3", - "uuid": "12b717ed-ffb9-41da-b56b-15bba9225e3b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T03:36:43.000Z" - }, - "end": { - "$date": "2021-05-06T04:08:20.000Z" - }, - "events": [ - { - "uuid": "92c29d73-d2ae-4079-af0d-c7baa2b4a56d", - "start": { - "$date": "2021-05-06T03:36:43.000Z" - }, - "end": { - "$date": "2021-05-06T04:08:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a23e6817-7403-46a6-945a-61248c13bf56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T04:03:12.000Z" - }, - "end": { - "$date": "2021-05-06T04:43:41.000Z" - }, - "events": [ - { - "uuid": "0bdeee70-3a12-4315-aa7b-d59914b1f325", - "start": { - "$date": "2021-05-06T04:03:12.000Z" - }, - "end": { - "$date": "2021-05-06T04:43:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "468a7151-0b38-479a-9378-d93d375159ba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T03:53:21.000Z" - }, - "end": { - "$date": "2021-05-06T03:55:58.000Z" - }, - "events": [ - { - "uuid": "94045778-a468-4693-a414-dd31550fdd70", - "start": { - "$date": "2021-05-06T03:53:21.000Z" - }, - "end": { - "$date": "2021-05-06T03:55:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "e18219de-bae4-40a0-bde4-ce5a156ea259", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T03:56:06.000Z" - }, - "end": { - "$date": "2021-05-06T03:58:29.000Z" - }, - "events": [ - { - "uuid": "b686da38-d71e-44bb-a3fb-1b84ae066fff", - "start": { - "$date": "2021-05-06T03:56:06.000Z" - }, - "end": { - "$date": "2021-05-06T03:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e90503c-4ba4-4a61-86d9-7dbae6f60e15", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T04:03:15.000Z" - }, - "end": { - "$date": "2021-05-06T04:43:31.000Z" - }, - "events": [ - { - "uuid": "8155606d-a8f1-456d-a620-350a724ee878", - "start": { - "$date": "2021-05-06T04:03:15.000Z" - }, - "end": { - "$date": "2021-05-06T04:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "423e01da-bc09-408b-b40a-fc8ca1bfaac2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T03:58:43.000Z" - }, - "end": { - "$date": "2021-05-06T04:20:57.000Z" - }, - "events": [ - { - "uuid": "070796e8-7679-46b6-b3ed-ed4bdb6c03ea", - "start": { - "$date": "2021-05-06T03:58:43.000Z" - }, - "end": { - "$date": "2021-05-06T04:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "22104ebf-2dde-462d-94c8-d564dbe1628d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T04:11:25.000Z" - }, - "end": { - "$date": "2021-05-06T05:20:32.000Z" - }, - "events": [ - { - "uuid": "e8bdaed1-1ea0-40cb-97a7-d8186db8c0fb", - "start": { - "$date": "2021-05-06T04:11:25.000Z" - }, - "end": { - "$date": "2021-05-06T05:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "80dcd84b-03d5-4e2c-8168-9ab1df0ddcf0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-06T04:14:37.000Z" - }, - "end": { - "$date": "2021-05-06T06:07:02.000Z" - }, - "events": [ - { - "uuid": "4a8d2041-553e-442c-8c6f-2e990650004d", - "start": { - "$date": "2021-05-06T04:14:37.000Z" - }, - "end": { - "$date": "2021-05-06T04:55:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f341e651-0fdb-4cdc-87a4-56f2a2ba88a9", - "start": { - "$date": "2021-05-06T04:55:37.000Z" - }, - "end": { - "$date": "2021-05-06T05:01:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a8cb093-d074-406f-b8d7-88932a0257eb", - "start": { - "$date": "2021-05-06T05:01:37.000Z" - }, - "end": { - "$date": "2021-05-06T06:07:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a294579-27b1-4acc-821e-d6947a6676e7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T04:22:43.000Z" - }, - "end": { - "$date": "2021-05-06T04:52:34.000Z" - }, - "events": [ - { - "uuid": "4e979121-d40a-4b41-ac49-3e56a45e7a30", - "start": { - "$date": "2021-05-06T04:22:43.000Z" - }, - "end": { - "$date": "2021-05-06T04:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8d98c76-e07a-4802-acba-8fcffc5621f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T04:50:46.000Z" - }, - "end": { - "$date": "2021-05-06T05:29:42.000Z" - }, - "events": [ - { - "uuid": "e842e652-726c-42d3-8af2-664a64b93f2b", - "start": { - "$date": "2021-05-06T04:50:46.000Z" - }, - "end": { - "$date": "2021-05-06T05:29:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6de5855-53e5-480e-a3e8-16aef78af337", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T05:29:38.000Z" - }, - "end": { - "$date": "2021-05-06T05:33:31.000Z" - }, - "events": [ - { - "uuid": "3000f8bf-17f2-4282-b676-333d05c629f5", - "start": { - "$date": "2021-05-06T05:29:38.000Z" - }, - "end": { - "$date": "2021-05-06T05:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "38f1cbae-0b85-4df3-bf8e-5874b58280bb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T04:54:11.000Z" - }, - "end": { - "$date": "2021-05-06T04:56:39.000Z" - }, - "events": [ - { - "uuid": "17bc8cce-73b4-4fba-bff5-13650cb8a7cc", - "start": { - "$date": "2021-05-06T04:54:11.000Z" - }, - "end": { - "$date": "2021-05-06T04:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "13f7010a-aa97-4a3e-a852-2e035d4ae172", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T04:56:46.000Z" - }, - "end": { - "$date": "2021-05-06T04:59:59.000Z" - }, - "events": [ - { - "uuid": "d34fdabf-e0c8-43d2-a171-9bb04e6eb4eb", - "start": { - "$date": "2021-05-06T04:56:46.000Z" - }, - "end": { - "$date": "2021-05-06T04:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1d7999a8-4c3f-4580-b848-5fdddf710a6d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T05:46:49.000Z" - }, - "end": { - "$date": "2021-05-06T05:51:15.000Z" - }, - "events": [ - { - "uuid": "5e880bc3-952a-407c-95ac-a25624f293d1", - "start": { - "$date": "2021-05-06T05:46:49.000Z" - }, - "end": { - "$date": "2021-05-06T05:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d576974e-5831-4652-b834-cd354abd14e7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-06T05:59:12.000Z" - }, - "end": { - "$date": "2021-05-06T06:30:40.000Z" - }, - "events": [ - { - "uuid": "3b8cf638-47de-454d-ac15-fc85e9d2feb6", - "start": { - "$date": "2021-05-06T05:59:12.000Z" - }, - "end": { - "$date": "2021-05-06T06:30:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "109e2c91-4efc-4aed-b2c4-341f84a655d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T06:17:10.000Z" - }, - "end": { - "$date": "2021-05-06T06:20:20.000Z" - }, - "events": [ - { - "uuid": "9904b8d6-f124-4196-b804-7ec4aead86e5", - "start": { - "$date": "2021-05-06T06:17:10.000Z" - }, - "end": { - "$date": "2021-05-06T06:20:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "c4bcfcad-c1d6-411e-9fce-d537ff5887b0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T06:20:55.000Z" - }, - "end": { - "$date": "2021-05-06T06:22:46.000Z" - }, - "events": [ - { - "uuid": "c5b51bd5-79ad-49b2-a0c3-8cafc95e530a", - "start": { - "$date": "2021-05-06T06:20:55.000Z" - }, - "end": { - "$date": "2021-05-06T06:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "9532661a-21f8-4893-ac3c-d5b285ddf3ff", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T06:51:14.000Z" - }, - "end": { - "$date": "2021-05-06T07:30:42.000Z" - }, - "events": [ - { - "uuid": "30aef88d-508e-4c81-bf79-bf0e4491c41b", - "start": { - "$date": "2021-05-06T06:51:14.000Z" - }, - "end": { - "$date": "2021-05-06T07:30:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52ce5d12-361b-4745-9f60-3912065afd2e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T07:19:13.000Z" - }, - "end": { - "$date": "2021-05-06T07:50:27.000Z" - }, - "events": [ - { - "uuid": "6b76357f-8534-4857-b36c-ed97ead19c66", - "start": { - "$date": "2021-05-06T07:19:13.000Z" - }, - "end": { - "$date": "2021-05-06T07:50:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2afdb029-ac01-4b73-a702-51c771f56b29", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T08:00:51.000Z" - }, - "end": { - "$date": "2021-05-06T08:29:48.000Z" - }, - "events": [ - { - "uuid": "cd7cbd56-1480-4f10-a969-8885c6abae2c", - "start": { - "$date": "2021-05-06T08:00:51.000Z" - }, - "end": { - "$date": "2021-05-06T08:29:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3551d2ab-e8b0-4a66-9852-c960c1fc6996", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T08:42:48.000Z" - }, - "end": { - "$date": "2021-05-06T09:14:55.000Z" - }, - "events": [ - { - "uuid": "9ea44d8f-56f4-4d81-8493-616a07476e7e", - "start": { - "$date": "2021-05-06T08:42:48.000Z" - }, - "end": { - "$date": "2021-05-06T09:14:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3cdc3774-c5e8-403c-9cdc-491e511339c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-06T14:12:14.000Z" - }, - "end": { - "$date": "2021-05-06T15:23:09.000Z" - }, - "events": [ - { - "uuid": "dbd0ffe1-3403-42f6-8fc5-882824053304", - "start": { - "$date": "2021-05-06T14:12:14.000Z" - }, - "end": { - "$date": "2021-05-06T15:23:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7d685a81-b1dd-4658-aae8-95932d2cfdc3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T14:42:05.000Z" - }, - "end": { - "$date": "2021-05-06T15:50:03.000Z" - }, - "events": [ - { - "uuid": "600fece8-16df-4f98-a3f4-a63feb27dc54", - "start": { - "$date": "2021-05-06T14:42:05.000Z" - }, - "end": { - "$date": "2021-05-06T15:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "828c8496-4b2c-4896-bc17-d55abd70828e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T15:03:00.000Z" - }, - "end": { - "$date": "2021-05-06T17:17:50.000Z" - }, - "events": [ - { - "uuid": "eadf8091-4d85-4e49-b65b-b96c45f0a395", - "start": { - "$date": "2021-05-06T15:03:00.000Z" - }, - "end": { - "$date": "2021-05-06T17:11:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c0eeb86-adba-40ee-8692-b502d8a876cc", - "start": { - "$date": "2021-05-06T17:11:00.000Z" - }, - "end": { - "$date": "2021-05-06T17:17:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7923df3c-ecf5-4a00-8c12-6ab99e45f938", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-06T21:45:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:05:02.000Z" - }, - "events": [ - { - "uuid": "2dcaf835-5310-4782-a229-f0566cd56041", - "start": { - "$date": "2021-05-06T21:45:30.000Z" - }, - "end": { - "$date": "2021-05-06T21:47:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7011a49c-7f9c-485a-9a32-90f3d87260c1", - "start": { - "$date": "2021-05-06T21:47:30.000Z" - }, - "end": { - "$date": "2021-05-06T21:49:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "954a753c-d81d-4aee-b6b0-25a414e17a9c", - "start": { - "$date": "2021-05-06T21:49:30.000Z" - }, - "end": { - "$date": "2021-05-06T21:54:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fed9e24a-1d6d-4d4b-940d-483f2f13f67f", - "start": { - "$date": "2021-05-06T21:54:30.000Z" - }, - "end": { - "$date": "2021-05-06T21:58:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4df670c-e4aa-4536-9470-23a08946fa5d", - "start": { - "$date": "2021-05-06T21:58:30.000Z" - }, - "end": { - "$date": "2021-05-06T22:00:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff07e834-bff0-413a-8e86-b3911f707ac9", - "start": { - "$date": "2021-05-06T22:00:30.000Z" - }, - "end": { - "$date": "2021-05-06T22:30:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4ee3e836-176c-4728-9541-2e4cc124b285", - "start": { - "$date": "2021-05-06T22:30:30.000Z" - }, - "end": { - "$date": "2021-05-06T22:32:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2f9da36-5c5a-401c-8aeb-cfdb2add7525", - "start": { - "$date": "2021-05-06T22:32:30.000Z" - }, - "end": { - "$date": "2021-05-06T23:30:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eaa6797c-4360-4ea0-8ccc-9da220dcc170", - "start": { - "$date": "2021-05-06T23:30:30.000Z" - }, - "end": { - "$date": "2021-05-06T23:34:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0dc2a7dc-bddc-43b0-b6dd-0704b11ed86f", - "start": { - "$date": "2021-05-06T23:34:30.000Z" - }, - "end": { - "$date": "2021-05-06T23:41:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64759048-8724-4590-834c-3828f928debc", - "start": { - "$date": "2021-05-06T23:41:30.000Z" - }, - "end": { - "$date": "2021-05-06T23:46:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24988f5e-ee3a-4582-8584-79330de21030", - "start": { - "$date": "2021-05-06T23:46:30.000Z" - }, - "end": { - "$date": "2021-05-06T23:55:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a89d7e35-ba27-4dee-9521-5de7af7dc71d", - "start": { - "$date": "2021-05-06T23:55:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:01:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "150ea9d3-f843-4816-b6f7-815631a38525", - "start": { - "$date": "2021-05-07T00:01:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:28:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7b8a8514-e10e-4b0d-9022-d5451f99d6b1", - "start": { - "$date": "2021-05-07T00:28:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:39:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6aca8f9-9401-470c-b353-42d224cfc521", - "start": { - "$date": "2021-05-07T00:39:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:47:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a1a1ada7-3128-48e0-b4ef-73737866e74d", - "start": { - "$date": "2021-05-07T00:47:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:49:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f309e5a6-f779-4ef8-ac8b-9e636a42bb69", - "start": { - "$date": "2021-05-07T00:49:30.000Z" - }, - "end": { - "$date": "2021-05-07T01:05:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ef60c48-f5e2-4ee3-bb41-e1a006a11264", - "start": { - "$date": "2021-05-07T01:05:30.000Z" - }, - "end": { - "$date": "2021-05-07T01:07:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e93315d5-0982-41dc-8fa8-4888fd457a1e", - "start": { - "$date": "2021-05-07T01:07:30.000Z" - }, - "end": { - "$date": "2021-05-07T01:48:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0218708e-5461-449d-85e7-2c98721515b6", - "start": { - "$date": "2021-05-07T01:48:30.000Z" - }, - "end": { - "$date": "2021-05-07T03:11:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45e36297-7b14-4757-90af-ecac4f35467d", - "start": { - "$date": "2021-05-07T03:11:30.000Z" - }, - "end": { - "$date": "2021-05-07T03:57:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "22829b92-b0bc-4eda-970e-96b2754354d7", - "start": { - "$date": "2021-05-07T03:57:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:03:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "607ac472-e9fb-4c48-8fad-312f7569e34d", - "start": { - "$date": "2021-05-07T04:03:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:15:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "05121592-96e7-4b03-8576-75daf259a5bc", - "start": { - "$date": "2021-05-07T04:15:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:25:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80f4c73b-7a1c-4354-8287-16234a152805", - "start": { - "$date": "2021-05-07T04:25:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:26:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "245ed0af-dcb7-4f15-b4a2-95f1b0b9e794", - "start": { - "$date": "2021-05-07T04:26:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:28:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c3659546-8503-4409-982c-340311badb28", - "start": { - "$date": "2021-05-07T04:28:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:38:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f70ad868-1ba0-496b-b287-fac9f4444288", - "start": { - "$date": "2021-05-07T04:38:30.000Z" - }, - "end": { - "$date": "2021-05-07T04:40:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6b8e643d-d6e2-42a0-bb6a-cda272fad9f8", - "start": { - "$date": "2021-05-07T04:40:30.000Z" - }, - "end": { - "$date": "2021-05-07T05:15:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43d5c5fa-85db-4132-969c-8c8efc5c441a", - "start": { - "$date": "2021-05-07T05:15:30.000Z" - }, - "end": { - "$date": "2021-05-07T05:17:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f973138-f095-4577-9d85-43a091bf7e09", - "start": { - "$date": "2021-05-07T05:17:30.000Z" - }, - "end": { - "$date": "2021-05-07T05:21:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be9a8551-8afd-4fb6-b11e-a9228765671d", - "start": { - "$date": "2021-05-07T05:21:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4f908c1-7e42-49cd-90cd-f179db1992c8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T17:21:55.000Z" - }, - "end": { - "$date": "2021-05-06T17:59:12.000Z" - }, - "events": [ - { - "uuid": "ac2d9479-268d-4661-9477-0278afd9ada3", - "start": { - "$date": "2021-05-06T17:21:55.000Z" - }, - "end": { - "$date": "2021-05-06T17:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "807ffe0d-2680-49b8-8c6a-89469b1602e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T18:08:36.000Z" - }, - "end": { - "$date": "2021-05-06T18:34:52.000Z" - }, - "events": [ - { - "uuid": "52e65ca3-8b49-458a-ad96-7fb449a09cea", - "start": { - "$date": "2021-05-06T18:08:36.000Z" - }, - "end": { - "$date": "2021-05-06T18:34:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8ae96e5-becb-49c9-a496-6843da1c6b2b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-06T18:23:47.000Z" - }, - "end": { - "$date": "2021-05-06T18:44:31.000Z" - }, - "events": [ - { - "uuid": "d3445999-8fd4-413a-be5e-b61a61c77bc3", - "start": { - "$date": "2021-05-06T18:23:47.000Z" - }, - "end": { - "$date": "2021-05-06T18:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b84bf10c-7d2f-4963-813f-b280af6806fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T18:40:05.000Z" - }, - "end": { - "$date": "2021-05-06T19:06:02.000Z" - }, - "events": [ - { - "uuid": "596d5f2d-cf79-47c3-8a52-b0a1032cba9c", - "start": { - "$date": "2021-05-06T18:40:05.000Z" - }, - "end": { - "$date": "2021-05-06T19:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8b7b287-bf90-417e-b69d-7aa1d4ed88d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T19:08:47.000Z" - }, - "end": { - "$date": "2021-05-06T19:40:14.000Z" - }, - "events": [ - { - "uuid": "043594c0-d216-4958-820e-6337b04f3f8d", - "start": { - "$date": "2021-05-06T19:08:47.000Z" - }, - "end": { - "$date": "2021-05-06T19:40:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "455dabe6-f834-4de6-bb31-86b09217f71d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T19:18:15.000Z" - }, - "end": { - "$date": "2021-05-06T19:51:05.000Z" - }, - "events": [ - { - "uuid": "0dbd2faf-ca47-43cb-ab5f-5eb91f52269c", - "start": { - "$date": "2021-05-06T19:18:15.000Z" - }, - "end": { - "$date": "2021-05-06T19:51:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "146d0993-2dd9-4923-8c83-c2cce83086d7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T19:18:18.000Z" - }, - "end": { - "$date": "2021-05-06T19:53:12.000Z" - }, - "events": [ - { - "uuid": "158f0f77-01ec-4107-a87d-8a635cd733d5", - "start": { - "$date": "2021-05-06T19:18:18.000Z" - }, - "end": { - "$date": "2021-05-06T19:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9672e6c1-96b7-4f22-816f-bc2b84b916dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T19:57:31.000Z" - }, - "end": { - "$date": "2021-05-06T20:25:40.000Z" - }, - "events": [ - { - "uuid": "56bddaec-03bc-4ef1-a1c7-696220f4a9c6", - "start": { - "$date": "2021-05-06T19:57:31.000Z" - }, - "end": { - "$date": "2021-05-06T20:25:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0210bac9-7609-473c-af77-399c159b04d5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T19:57:22.000Z" - }, - "end": { - "$date": "2021-05-06T20:25:33.000Z" - }, - "events": [ - { - "uuid": "f4e08d9b-4bb4-4ee8-91ce-d03dca51a6d1", - "start": { - "$date": "2021-05-06T19:57:22.000Z" - }, - "end": { - "$date": "2021-05-06T20:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c4d3e14-41ed-446a-b1cf-cce9f224f09c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T21:37:43.000Z" - }, - "end": { - "$date": "2021-05-06T22:17:35.000Z" - }, - "events": [ - { - "uuid": "1885dbe2-edf4-4671-a29c-c810d932b3ad", - "start": { - "$date": "2021-05-06T21:37:43.000Z" - }, - "end": { - "$date": "2021-05-06T22:17:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b27e1a3a-bbfc-43b2-95ce-9c605f4a02eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T20:52:27.000Z" - }, - "end": { - "$date": "2021-05-06T20:55:42.000Z" - }, - "events": [ - { - "uuid": "7411fc06-1da3-426c-91e0-6dfe46ee9b0d", - "start": { - "$date": "2021-05-06T20:52:27.000Z" - }, - "end": { - "$date": "2021-05-06T20:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c05ff927-4b17-4846-91b5-1223fc016dee", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T20:56:31.000Z" - }, - "end": { - "$date": "2021-05-06T21:15:33.000Z" - }, - "events": [ - { - "uuid": "95dd5a7f-5925-4ef7-be22-f7fe4457baed", - "start": { - "$date": "2021-05-06T20:56:31.000Z" - }, - "end": { - "$date": "2021-05-06T21:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "36224475-73c1-4b0c-a3a5-232b3045514c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T21:07:03.000Z" - }, - "end": { - "$date": "2021-05-06T21:28:26.000Z" - }, - "events": [ - { - "uuid": "231946db-dc51-449c-a401-0afd424f837c", - "start": { - "$date": "2021-05-06T21:07:03.000Z" - }, - "end": { - "$date": "2021-05-06T21:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f31a1be1-98d0-4d1e-9649-4d0c0ffbcb76", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T20:25:33.000Z" - }, - "end": { - "$date": "2021-05-06T21:15:43.000Z" - }, - "events": [ - { - "uuid": "75698421-53ea-490a-be49-7754266ec42c", - "start": { - "$date": "2021-05-06T20:25:33.000Z" - }, - "end": { - "$date": "2021-05-06T21:15:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5184ee62-f6c5-4b40-a214-374b16c467fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T21:27:36.000Z" - }, - "end": { - "$date": "2021-05-06T21:53:45.000Z" - }, - "events": [ - { - "uuid": "00f62a39-b50c-4dbd-8b45-3bb009fd7b9e", - "start": { - "$date": "2021-05-06T21:27:36.000Z" - }, - "end": { - "$date": "2021-05-06T21:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83e9cd2c-dd31-4c77-8ed0-a40436e04557", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T21:31:15.000Z" - }, - "end": { - "$date": "2021-05-06T21:53:12.000Z" - }, - "events": [ - { - "uuid": "81e30276-cb55-4a2d-b738-37a27d7ad832", - "start": { - "$date": "2021-05-06T21:31:15.000Z" - }, - "end": { - "$date": "2021-05-06T21:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17a159a8-aaf3-4daa-a5cb-8ddf85491dcb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T21:30:36.000Z" - }, - "end": { - "$date": "2021-05-06T21:52:23.000Z" - }, - "events": [ - { - "uuid": "e5a6e302-a82e-4a34-8e5f-0210a7a567da", - "start": { - "$date": "2021-05-06T21:30:36.000Z" - }, - "end": { - "$date": "2021-05-06T21:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9906bb85-1f0a-4984-9afe-374785c4f830", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T21:54:42.000Z" - }, - "end": { - "$date": "2021-05-06T22:34:25.000Z" - }, - "events": [ - { - "uuid": "d8eab6a4-7a72-4f6a-b3d4-417e6d7c29ff", - "start": { - "$date": "2021-05-06T21:54:42.000Z" - }, - "end": { - "$date": "2021-05-06T22:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2215bbcf-57f3-4dc3-a286-54173b984311", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T21:54:39.000Z" - }, - "end": { - "$date": "2021-05-06T22:34:33.000Z" - }, - "events": [ - { - "uuid": "e36a2390-3d7c-4fae-b2fb-3cd118afb01c", - "start": { - "$date": "2021-05-06T21:54:39.000Z" - }, - "end": { - "$date": "2021-05-06T22:34:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "188c2102-1fe1-43ba-a1d8-f6f5431abdfe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T21:55:13.000Z" - }, - "end": { - "$date": "2021-05-06T22:34:26.000Z" - }, - "events": [ - { - "uuid": "e3224206-3b55-4ead-97cd-3906056a664e", - "start": { - "$date": "2021-05-06T21:55:13.000Z" - }, - "end": { - "$date": "2021-05-06T22:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a848d105-df3f-4d0a-8749-147964335a9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-06T22:34:41.000Z" - }, - "end": { - "$date": "2021-05-07T00:57:40.000Z" - }, - "events": [ - { - "uuid": "83900f64-48bb-4151-8971-8f54025d9959", - "start": { - "$date": "2021-05-06T22:34:41.000Z" - }, - "end": { - "$date": "2021-05-06T22:50:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "488afe6d-d4c2-4e45-8743-70125d15035e", - "start": { - "$date": "2021-05-06T22:50:41.000Z" - }, - "end": { - "$date": "2021-05-06T23:27:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca303007-824a-420c-9762-b23495a9fa8b", - "start": { - "$date": "2021-05-06T23:27:41.000Z" - }, - "end": { - "$date": "2021-05-07T00:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a5e9553-3acc-4afc-8721-acf83ee27981", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T22:37:15.000Z" - }, - "end": { - "$date": "2021-05-06T22:58:26.000Z" - }, - "events": [ - { - "uuid": "33f6ff1c-ffe3-4c3d-8939-9934dd958d7c", - "start": { - "$date": "2021-05-06T22:37:15.000Z" - }, - "end": { - "$date": "2021-05-06T22:58:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9320b06-246f-4d63-85dd-93f007a64e77", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T22:36:43.000Z" - }, - "end": { - "$date": "2021-05-06T22:58:25.000Z" - }, - "events": [ - { - "uuid": "03115531-b6f4-4bd9-8914-cf4633121388", - "start": { - "$date": "2021-05-06T22:36:43.000Z" - }, - "end": { - "$date": "2021-05-06T22:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ad59f44-1a0f-46cf-a0ab-61833548abf2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-06T22:36:52.000Z" - }, - "end": { - "$date": "2021-05-06T22:58:37.000Z" - }, - "events": [ - { - "uuid": "f41d9d25-856f-4863-bfe1-d374b2b96037", - "start": { - "$date": "2021-05-06T22:36:52.000Z" - }, - "end": { - "$date": "2021-05-06T22:58:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "602df2bd-b158-4dd1-afdb-be1e1c7cd908", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-06T22:39:50.000Z" - }, - "end": { - "$date": "2021-05-06T23:02:41.000Z" - }, - "events": [ - { - "uuid": "c1ea84df-a823-4274-9c45-a63445c7a898", - "start": { - "$date": "2021-05-06T22:39:50.000Z" - }, - "end": { - "$date": "2021-05-06T23:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72b6f53d-6ff6-427e-a030-ded147e15c04", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T23:04:31.000Z" - }, - "end": { - "$date": "2021-05-06T23:31:32.000Z" - }, - "events": [ - { - "uuid": "97040dca-f386-414f-8c1d-833bfe21549d", - "start": { - "$date": "2021-05-06T23:04:31.000Z" - }, - "end": { - "$date": "2021-05-06T23:31:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "243d8cb6-0f16-4d7f-81e7-2d82cc038870", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T23:05:05.000Z" - }, - "end": { - "$date": "2021-05-06T23:31:39.000Z" - }, - "events": [ - { - "uuid": "975d4880-ad01-4007-9eab-af1c26b11914", - "start": { - "$date": "2021-05-06T23:05:05.000Z" - }, - "end": { - "$date": "2021-05-06T23:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "70fd3b78-85e0-41ad-8bb3-f8ef065a6747", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-06T23:30:46.000Z" - }, - "end": { - "$date": "2021-05-07T00:02:05.000Z" - }, - "events": [ - { - "uuid": "634d720e-8aac-4695-81ce-09cfe2899533", - "start": { - "$date": "2021-05-06T23:30:46.000Z" - }, - "end": { - "$date": "2021-05-07T00:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de6fa36d-6c25-42c1-880d-02dd115510df", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-06T23:33:27.000Z" - }, - "end": { - "$date": "2021-05-06T23:51:03.000Z" - }, - "events": [ - { - "uuid": "a93e1622-fb35-4c88-8337-5bf6674c5d7d", - "start": { - "$date": "2021-05-06T23:33:27.000Z" - }, - "end": { - "$date": "2021-05-06T23:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02bc1626-7150-4c67-b45e-92c11b321a12", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-06T23:32:51.000Z" - }, - "end": { - "$date": "2021-05-06T23:50:58.000Z" - }, - "events": [ - { - "uuid": "e8f374a9-1c41-4c09-b153-48515e5bceca", - "start": { - "$date": "2021-05-06T23:32:51.000Z" - }, - "end": { - "$date": "2021-05-06T23:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "e5c95f1b-40f1-459a-9f55-15b0a6d94656", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-07T00:38:25.000Z" - }, - "end": { - "$date": "2021-05-07T00:40:22.000Z" - }, - "events": [ - { - "uuid": "8c770e6f-980d-4106-9169-dbf8c807fd91", - "start": { - "$date": "2021-05-07T00:38:25.000Z" - }, - "end": { - "$date": "2021-05-07T00:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ea8f4d76-659a-469c-9c31-8494b18b91e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-06T21:45:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:42:23.000Z" - }, - "events": [ - { - "uuid": "46746714-7159-4172-aedc-122e9c907231", - "start": { - "$date": "2021-05-06T21:45:30.000Z" - }, - "end": { - "$date": "2021-05-07T00:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4d155950-2edc-488e-9d07-60c00eb94dd9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-07T00:43:17.000Z" - }, - "end": { - "$date": "2021-05-07T01:42:52.000Z" - }, - "events": [ - { - "uuid": "fec31885-b70f-49ef-a45e-ff350dbed4c0", - "start": { - "$date": "2021-05-07T00:43:17.000Z" - }, - "end": { - "$date": "2021-05-07T01:14:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4015000-4467-49b4-ae7f-e913f26fca51", - "start": { - "$date": "2021-05-07T01:14:17.000Z" - }, - "end": { - "$date": "2021-05-07T01:42:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c41b4b01-8407-441f-9699-18a547cdaa43", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T00:50:26.000Z" - }, - "end": { - "$date": "2021-05-07T01:21:01.000Z" - }, - "events": [ - { - "uuid": "4034f468-94b4-47b9-8222-c788767a32f7", - "start": { - "$date": "2021-05-07T00:50:26.000Z" - }, - "end": { - "$date": "2021-05-07T01:21:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "2b004710-9edd-4600-bea4-84bbba9a836a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-07T00:46:21.000Z" - }, - "end": { - "$date": "2021-05-07T01:56:42.000Z" - }, - "events": [ - { - "uuid": "d9d0fecc-d71d-4fbb-9d73-2985a5988f59", - "start": { - "$date": "2021-05-07T00:46:21.000Z" - }, - "end": { - "$date": "2021-05-07T01:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "de73559b-8b51-488d-acdd-518b856f5469", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T00:57:48.000Z" - }, - "end": { - "$date": "2021-05-07T03:47:14.000Z" - }, - "events": [ - { - "uuid": "8f5fe9e2-a55b-45aa-9f15-840c9d1cd63c", - "start": { - "$date": "2021-05-07T00:57:48.000Z" - }, - "end": { - "$date": "2021-05-07T03:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1d956de-dcd9-4b0e-96ef-5fc8b766f93a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T01:28:17.000Z" - }, - "end": { - "$date": "2021-05-07T01:55:07.000Z" - }, - "events": [ - { - "uuid": "8a78e3cd-2936-491d-adf4-ab45d5475b76", - "start": { - "$date": "2021-05-07T01:28:17.000Z" - }, - "end": { - "$date": "2021-05-07T01:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fd252e0b-6733-4e4b-a44f-ae84ce13376b", - "uuid": "7b2b4f08-760b-4736-a6b8-f2e86752d8a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T01:26:52.000Z" - }, - "end": { - "$date": "2021-05-07T04:30:58.000Z" - }, - "events": [ - { - "uuid": "e0e59bcb-65cd-4f15-8b43-d23a6b274aa6", - "start": { - "$date": "2021-05-07T01:26:52.000Z" - }, - "end": { - "$date": "2021-05-07T01:49:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b84d5397-38b9-4c3b-89d8-e63bf6690cfd", - "start": { - "$date": "2021-05-07T01:49:52.000Z" - }, - "end": { - "$date": "2021-05-07T02:00:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2bfe683f-c7ce-4983-adef-de1f9cbbef54", - "start": { - "$date": "2021-05-07T02:00:52.000Z" - }, - "end": { - "$date": "2021-05-07T02:10:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2f0a564-03a0-4fdf-9500-bc964e37a874", - "start": { - "$date": "2021-05-07T02:10:52.000Z" - }, - "end": { - "$date": "2021-05-07T02:14:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b2f5606f-c427-4829-bcf9-189e7c3cc9fe", - "start": { - "$date": "2021-05-07T02:14:52.000Z" - }, - "end": { - "$date": "2021-05-07T02:24:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04b7980c-f89b-4bb6-b7fd-542d5bc4a7a8", - "start": { - "$date": "2021-05-07T02:24:52.000Z" - }, - "end": { - "$date": "2021-05-07T04:30:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2884de2f-2775-49f0-a3a2-d19fc40cdf59", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-07T01:29:42.000Z" - }, - "end": { - "$date": "2021-05-07T01:31:37.000Z" - }, - "events": [ - { - "uuid": "898bdc4d-c324-47a9-b859-3e4d90a179aa", - "start": { - "$date": "2021-05-07T01:29:42.000Z" - }, - "end": { - "$date": "2021-05-07T01:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a33ee3da-fa6f-46f6-8a06-917cd6a1bec8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-07T01:36:38.000Z" - }, - "end": { - "$date": "2021-05-07T01:38:09.000Z" - }, - "events": [ - { - "uuid": "943425cc-0d90-4c84-a45d-cad4fac0de5a", - "start": { - "$date": "2021-05-07T01:36:38.000Z" - }, - "end": { - "$date": "2021-05-07T01:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "018ca49f-e3a3-47ad-94d5-0ccee1e5e388", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-07T01:43:00.000Z" - }, - "end": { - "$date": "2021-05-07T04:50:37.000Z" - }, - "events": [ - { - "uuid": "36df0e29-80b1-4e97-a6f0-86acc9963675", - "start": { - "$date": "2021-05-07T01:43:00.000Z" - }, - "end": { - "$date": "2021-05-07T03:33:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ebe2c78-053c-4a5f-afe3-bfa61314107b", - "start": { - "$date": "2021-05-07T03:33:00.000Z" - }, - "end": { - "$date": "2021-05-07T03:42:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3acc10fe-9af6-4cef-ae1d-0a63c500e4e9", - "start": { - "$date": "2021-05-07T03:42:00.000Z" - }, - "end": { - "$date": "2021-05-07T03:49:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6b854919-7449-485d-bc88-ec1c41eff4b8", - "start": { - "$date": "2021-05-07T03:49:00.000Z" - }, - "end": { - "$date": "2021-05-07T04:35:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "25e9d7a2-b595-4f98-a766-49524b2723a8", - "start": { - "$date": "2021-05-07T04:35:00.000Z" - }, - "end": { - "$date": "2021-05-07T04:40:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c1e81a0-e674-4c06-b7f0-3aa3d6db9745", - "start": { - "$date": "2021-05-07T04:40:00.000Z" - }, - "end": { - "$date": "2021-05-07T04:47:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba00f403-0f72-4307-bfce-c097b2f93156", - "start": { - "$date": "2021-05-07T04:47:00.000Z" - }, - "end": { - "$date": "2021-05-07T04:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "110ee6a5-2d95-4b20-90fb-2061f2aaa3d2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T02:00:28.000Z" - }, - "end": { - "$date": "2021-05-07T02:32:38.000Z" - }, - "events": [ - { - "uuid": "5c53a160-4e81-4d0a-a48a-15d6ae63c144", - "start": { - "$date": "2021-05-07T02:00:28.000Z" - }, - "end": { - "$date": "2021-05-07T02:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fb890dfd-68b4-48f6-ab39-447cd5007c09", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-07T02:08:23.000Z" - }, - "end": { - "$date": "2021-05-07T02:21:02.000Z" - }, - "events": [ - { - "uuid": "62dfb5fc-4b95-4017-a2f5-cb473d44b21e", - "start": { - "$date": "2021-05-07T02:08:23.000Z" - }, - "end": { - "$date": "2021-05-07T02:21:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "f6a22f26-f310-49ea-bfaa-61f9f10db4ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-07T02:21:46.000Z" - }, - "end": { - "$date": "2021-05-07T06:04:02.000Z" - }, - "events": [ - { - "uuid": "376dde04-2f70-42a4-8adf-e1addb6cc690", - "start": { - "$date": "2021-05-07T02:21:46.000Z" - }, - "end": { - "$date": "2021-05-07T06:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7286afca-7895-4eb5-925d-fde329ec8d93", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T02:46:55.000Z" - }, - "end": { - "$date": "2021-05-07T03:12:11.000Z" - }, - "events": [ - { - "uuid": "7c82506a-fd0e-4165-966a-2cfba3f54309", - "start": { - "$date": "2021-05-07T02:46:55.000Z" - }, - "end": { - "$date": "2021-05-07T03:12:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42c237cd-dad7-4d7c-90e6-bb79cf90ddbb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T02:46:54.000Z" - }, - "end": { - "$date": "2021-05-07T03:12:20.000Z" - }, - "events": [ - { - "uuid": "84b056c0-f6f4-48b0-ba3a-52788c7b4bf8", - "start": { - "$date": "2021-05-07T02:46:54.000Z" - }, - "end": { - "$date": "2021-05-07T03:12:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eade0ed2-e5cb-4c56-b23a-f0180e79be2c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T03:17:26.000Z" - }, - "end": { - "$date": "2021-05-07T03:52:42.000Z" - }, - "events": [ - { - "uuid": "b4cfa426-73b8-44d6-b7b6-1af2818e947c", - "start": { - "$date": "2021-05-07T03:17:26.000Z" - }, - "end": { - "$date": "2021-05-07T03:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "383f91c1-9e8f-41b9-9bed-835a00c9c326", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T03:17:31.000Z" - }, - "end": { - "$date": "2021-05-07T03:52:52.000Z" - }, - "events": [ - { - "uuid": "405889a0-76b3-4405-891e-09bc1e093205", - "start": { - "$date": "2021-05-07T03:17:31.000Z" - }, - "end": { - "$date": "2021-05-07T03:52:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "81994b7d-4745-4879-8a29-3fe6bc27db54", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-07T03:47:08.000Z" - }, - "end": { - "$date": "2021-05-07T03:48:34.000Z" - }, - "events": [ - { - "uuid": "2e82883b-65c8-438a-8fa6-03ce955a5d59", - "start": { - "$date": "2021-05-07T03:47:08.000Z" - }, - "end": { - "$date": "2021-05-07T03:48:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "80cff85d-7488-48e8-8224-cb37f0307d12", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T03:47:34.000Z" - }, - "end": { - "$date": "2021-05-07T04:46:11.000Z" - }, - "events": [ - { - "uuid": "eee8bd34-c055-48e0-a30a-c4bfbc65aaff", - "start": { - "$date": "2021-05-07T03:47:34.000Z" - }, - "end": { - "$date": "2021-05-07T04:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e118dd22-9ad6-4170-b5ec-bed3bfdfa8e4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-07T03:48:43.000Z" - }, - "end": { - "$date": "2021-05-07T06:39:42.000Z" - }, - "events": [ - { - "uuid": "0d5a356d-9f49-41d5-a057-cd5fc2ebc5de", - "start": { - "$date": "2021-05-07T03:48:43.000Z" - }, - "end": { - "$date": "2021-05-07T06:39:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e91db99d-743a-424a-90f5-130f2e39b1fa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T05:56:55.000Z" - }, - "end": { - "$date": "2021-05-07T06:17:46.000Z" - }, - "events": [ - { - "uuid": "beb66142-5464-4349-80ff-b19c25067ebd", - "start": { - "$date": "2021-05-07T05:56:55.000Z" - }, - "end": { - "$date": "2021-05-07T06:17:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ac24ab39-89e3-4834-95e2-cfbac3dab816", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-07T04:16:41.000Z" - }, - "end": { - "$date": "2021-05-07T06:19:41.000Z" - }, - "events": [ - { - "uuid": "5f2e765e-909e-4650-9c8f-f6455ee51bdb", - "start": { - "$date": "2021-05-07T04:16:41.000Z" - }, - "end": { - "$date": "2021-05-07T06:19:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "78970295-c3f8-484f-a24d-49b19b8b86c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-07T04:51:06.000Z" - }, - "end": { - "$date": "2021-05-07T06:39:53.000Z" - }, - "events": [ - { - "uuid": "87017e3a-7905-4bb0-bb2c-7d74aa84375e", - "start": { - "$date": "2021-05-07T04:51:06.000Z" - }, - "end": { - "$date": "2021-05-07T06:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17e5b0bd-8ef7-4f9a-99ff-24e7bd36d471", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T07:43:11.000Z" - }, - "end": { - "$date": "2021-05-07T08:15:53.000Z" - }, - "events": [ - { - "uuid": "28adc1f7-8b96-4b89-9557-820d125a083e", - "start": { - "$date": "2021-05-07T07:43:11.000Z" - }, - "end": { - "$date": "2021-05-07T07:54:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "862426dc-2fb4-441a-9eed-6bfd0cfa252a", - "start": { - "$date": "2021-05-07T07:54:11.000Z" - }, - "end": { - "$date": "2021-05-07T09:04:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e536d964-0a80-4532-8cbc-faae232291de", - "start": { - "$date": "2021-05-07T09:04:11.000Z" - }, - "end": { - "$date": "2021-05-07T08:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36568433-0fcd-43df-94db-397654448b8e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T08:32:48.000Z" - }, - "end": { - "$date": "2021-05-07T08:43:58.000Z" - }, - "events": [ - { - "uuid": "7a655c5e-1a10-4637-9974-76b0fa6f3839", - "start": { - "$date": "2021-05-07T08:32:48.000Z" - }, - "end": { - "$date": "2021-05-07T08:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4368e665-691b-4eda-9c40-05b1d2e23f5f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T08:44:13.000Z" - }, - "end": { - "$date": "2021-05-07T14:39:09.000Z" - }, - "events": [ - { - "uuid": "c0ff3a20-096a-43ec-b0f5-7cc53fe72950", - "start": { - "$date": "2021-05-07T08:44:13.000Z" - }, - "end": { - "$date": "2021-05-07T08:55:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2e91ce9-c6d5-4161-ba33-b8bd5295fd06", - "start": { - "$date": "2021-05-07T08:55:13.000Z" - }, - "end": { - "$date": "2021-05-07T14:21:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "743dd0b6-b4da-425f-85b6-dc477df87067", - "start": { - "$date": "2021-05-07T14:21:13.000Z" - }, - "end": { - "$date": "2021-05-07T14:31:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7fe5a225-7c63-432a-8a29-6feffdad020c", - "start": { - "$date": "2021-05-07T14:31:13.000Z" - }, - "end": { - "$date": "2021-05-07T14:39:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "fd252e0b-6733-4e4b-a44f-ae84ce13376b", - "uuid": "10bbd323-c29e-4efb-857e-b8041ee2ee38", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T13:51:28.000Z" - }, - "end": { - "$date": "2021-05-07T14:23:31.000Z" - }, - "events": [ - { - "uuid": "116632e7-8ef5-4260-b2cb-2418bd7a2ad1", - "start": { - "$date": "2021-05-07T13:51:28.000Z" - }, - "end": { - "$date": "2021-05-07T14:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6143afa9-3f12-4c5c-b471-16166b7d8c1c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-07T14:01:16.000Z" - }, - "end": { - "$date": "2021-05-07T14:33:32.000Z" - }, - "events": [ - { - "uuid": "9079445b-cd9c-4ec1-be8e-6d70607a8154", - "start": { - "$date": "2021-05-07T14:01:16.000Z" - }, - "end": { - "$date": "2021-05-07T14:33:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43d703f5-6ad9-41e2-8187-33026e48608f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-07T14:34:53.000Z" - }, - "end": { - "$date": "2021-05-07T14:52:23.000Z" - }, - "events": [ - { - "uuid": "0034545e-c23a-4cbb-9e7b-05e63bc1da9d", - "start": { - "$date": "2021-05-07T14:34:53.000Z" - }, - "end": { - "$date": "2021-05-07T14:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "a6961abe-bf71-4e9c-bf99-f092b18b3149", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T14:38:21.000Z" - }, - "end": { - "$date": "2021-05-07T14:41:31.000Z" - }, - "events": [ - { - "uuid": "eeeafa96-bb42-483f-8ab9-9bdbb584c8e1", - "start": { - "$date": "2021-05-07T14:38:21.000Z" - }, - "end": { - "$date": "2021-05-07T14:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dded3e94-fd66-4797-aa51-d227e6f66415", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-07T14:53:24.000Z" - }, - "end": { - "$date": "2021-05-07T15:12:34.000Z" - }, - "events": [ - { - "uuid": "5169df62-41ad-4df2-aa25-9a535751e43a", - "start": { - "$date": "2021-05-07T14:53:24.000Z" - }, - "end": { - "$date": "2021-05-07T15:12:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1ad552d8-ac94-48c7-a905-28cca7f54cf4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T15:29:45.000Z" - }, - "end": { - "$date": "2021-05-07T16:28:24.000Z" - }, - "events": [ - { - "uuid": "be0c6422-2653-4377-b7d7-2dd059d6b25a", - "start": { - "$date": "2021-05-07T15:29:45.000Z" - }, - "end": { - "$date": "2021-05-07T16:26:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c0775b9c-0188-47de-875a-a0d772297496", - "start": { - "$date": "2021-05-07T16:26:45.000Z" - }, - "end": { - "$date": "2021-05-07T16:28:24.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "36d1e43e-a009-4a26-915d-002143998a63", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T15:56:35.000Z" - }, - "end": { - "$date": "2021-05-07T16:55:32.000Z" - }, - "events": [ - { - "uuid": "bff06a46-6f84-40c0-ada3-e83441288856", - "start": { - "$date": "2021-05-07T15:56:35.000Z" - }, - "end": { - "$date": "2021-05-07T16:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c74b87bf-a7e0-452e-b1d9-c2899ea0ef05", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T16:31:14.000Z" - }, - "end": { - "$date": "2021-05-07T17:01:02.000Z" - }, - "events": [ - { - "uuid": "d67d0d44-3324-4e7b-86da-5a0e62dbc6a5", - "start": { - "$date": "2021-05-07T16:31:14.000Z" - }, - "end": { - "$date": "2021-05-07T17:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86a2bdb3-957d-4e79-be71-c2db5f1b06f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T16:57:37.000Z" - }, - "end": { - "$date": "2021-05-07T17:53:59.000Z" - }, - "events": [ - { - "uuid": "2c00a326-0af2-44cd-b1e1-4f9c2e718547", - "start": { - "$date": "2021-05-07T16:57:37.000Z" - }, - "end": { - "$date": "2021-05-07T17:53:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "179d07e5-722d-45f7-8a5a-34b7d2961760", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T17:01:17.000Z" - }, - "end": { - "$date": "2021-05-07T17:54:18.000Z" - }, - "events": [ - { - "uuid": "1094570d-87fc-4f11-a41a-1016905cc67f", - "start": { - "$date": "2021-05-07T17:01:17.000Z" - }, - "end": { - "$date": "2021-05-07T17:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "673a95c0-2313-4664-aae4-1bf77b53c492", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-07T17:47:14.000Z" - }, - "end": { - "$date": "2021-05-07T19:17:57.000Z" - }, - "events": [ - { - "uuid": "2c4fb485-dbaa-4590-bd7d-8ee6e99e2bfe", - "start": { - "$date": "2021-05-07T17:47:14.000Z" - }, - "end": { - "$date": "2021-05-07T17:54:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c92ba9fb-115f-4ffc-92ba-c9ad33452ec6", - "start": { - "$date": "2021-05-07T17:54:14.000Z" - }, - "end": { - "$date": "2021-05-07T18:20:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "125888d1-dbd5-42c4-9289-46e81d6cf3b0", - "start": { - "$date": "2021-05-07T18:20:14.000Z" - }, - "end": { - "$date": "2021-05-07T18:22:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e9f26a8-baed-4bd1-993b-bd5dd8f932a0", - "start": { - "$date": "2021-05-07T18:22:14.000Z" - }, - "end": { - "$date": "2021-05-07T18:26:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20d42b7f-7636-461a-8879-61283bbb95e0", - "start": { - "$date": "2021-05-07T18:26:14.000Z" - }, - "end": { - "$date": "2021-05-07T18:28:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2843af2-543c-4701-a422-2db1797ef162", - "start": { - "$date": "2021-05-07T18:28:14.000Z" - }, - "end": { - "$date": "2021-05-07T19:17:57.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fb0b264-68ab-45c1-99ff-bd929417e9c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T18:01:19.000Z" - }, - "end": { - "$date": "2021-05-07T18:21:52.000Z" - }, - "events": [ - { - "uuid": "27b431e8-fd2b-47eb-973d-84e14d509d9b", - "start": { - "$date": "2021-05-07T18:01:19.000Z" - }, - "end": { - "$date": "2021-05-07T18:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9484c7ab-810f-4521-a6cc-b6219e23d660", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T18:04:15.000Z" - }, - "end": { - "$date": "2021-05-07T18:23:46.000Z" - }, - "events": [ - { - "uuid": "8e8d0c43-30d9-495b-94be-821a342579de", - "start": { - "$date": "2021-05-07T18:04:15.000Z" - }, - "end": { - "$date": "2021-05-07T18:23:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "af609c02-95e2-4650-917c-63e75c75c6bc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-07T18:05:17.000Z" - }, - "end": { - "$date": "2021-05-07T18:10:57.000Z" - }, - "events": [ - { - "uuid": "929fec26-9e2e-492a-97cd-b70cce286453", - "start": { - "$date": "2021-05-07T18:05:17.000Z" - }, - "end": { - "$date": "2021-05-07T18:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c2c1e97-93aa-45ac-810b-56ebfdb1d82b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T18:27:43.000Z" - }, - "end": { - "$date": "2021-05-07T18:39:54.000Z" - }, - "events": [ - { - "uuid": "2c903489-8b86-413b-9ca0-9ff1865625b0", - "start": { - "$date": "2021-05-07T18:27:43.000Z" - }, - "end": { - "$date": "2021-05-07T18:39:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7beebc22-55f1-419c-9d02-d5c3be076960", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T18:44:25.000Z" - }, - "end": { - "$date": "2021-05-07T19:04:48.000Z" - }, - "events": [ - { - "uuid": "7fb15215-1c40-4e3d-9812-4d48843ad66c", - "start": { - "$date": "2021-05-07T18:44:25.000Z" - }, - "end": { - "$date": "2021-05-07T19:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "979c344f-6c64-43c3-bd8b-508f0f43e586", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T18:52:16.000Z" - }, - "end": { - "$date": "2021-05-07T18:54:47.000Z" - }, - "events": [ - { - "uuid": "9184411c-5dd4-426d-99d1-c7181d44d227", - "start": { - "$date": "2021-05-07T18:52:16.000Z" - }, - "end": { - "$date": "2021-05-07T18:54:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "53a61251-3616-402d-8496-1b5ab4b4378d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-07T18:53:54.000Z" - }, - "end": { - "$date": "2021-05-07T21:22:56.000Z" - }, - "events": [ - { - "uuid": "c5f5dbf4-f5e8-4381-b25c-8d0f49ddb6d0", - "start": { - "$date": "2021-05-07T18:53:54.000Z" - }, - "end": { - "$date": "2021-05-07T21:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0f4f1048-00bb-427d-92f7-994f124e536b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T18:55:02.000Z" - }, - "end": { - "$date": "2021-05-07T19:29:35.000Z" - }, - "events": [ - { - "uuid": "8982e2e2-12a8-48c9-94bd-f24cc3c08c9a", - "start": { - "$date": "2021-05-07T18:55:02.000Z" - }, - "end": { - "$date": "2021-05-07T19:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "38e6c9b4-3140-4ce2-86d4-21653bc1c5f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T19:08:18.000Z" - }, - "end": { - "$date": "2021-05-07T22:18:04.000Z" - }, - "events": [ - { - "uuid": "96448c46-c32c-408f-9ee0-bfeed7b4126a", - "start": { - "$date": "2021-05-07T19:08:18.000Z" - }, - "end": { - "$date": "2021-05-07T19:43:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63741310-c227-4f2b-a4e0-2ca4fc840e81", - "start": { - "$date": "2021-05-07T19:43:18.000Z" - }, - "end": { - "$date": "2021-05-07T19:46:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8a8b530-fd7a-469e-bebc-42fdc9d17cdc", - "start": { - "$date": "2021-05-07T19:46:18.000Z" - }, - "end": { - "$date": "2021-05-07T21:59:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8d471c3-6adf-4f5d-a436-9bcd6776e587", - "start": { - "$date": "2021-05-07T21:59:18.000Z" - }, - "end": { - "$date": "2021-05-07T22:16:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8899cca-2efe-437c-acc1-fc623fcb3612", - "start": { - "$date": "2021-05-07T22:16:18.000Z" - }, - "end": { - "$date": "2021-05-07T22:18:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a385a289-fa0e-43f2-b63c-a0df6fffa3b8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-07T19:14:29.000Z" - }, - "end": { - "$date": "2021-05-07T19:15:46.000Z" - }, - "events": [ - { - "uuid": "f20acef0-8603-4d53-9273-7d9be45cf19d", - "start": { - "$date": "2021-05-07T19:14:29.000Z" - }, - "end": { - "$date": "2021-05-07T19:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3aa66f26-bc12-46ed-aa9d-a60ac8dd3ece", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-07T19:16:25.000Z" - }, - "end": { - "$date": "2021-05-07T20:20:41.000Z" - }, - "events": [ - { - "uuid": "9c06ffe4-97d9-484c-b411-063fb969fc86", - "start": { - "$date": "2021-05-07T19:16:25.000Z" - }, - "end": { - "$date": "2021-05-07T20:20:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "78507fb3-0871-4d6d-ab07-8e2f4eba0fa7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-07T19:18:47.000Z" - }, - "end": { - "$date": "2021-05-07T23:36:22.000Z" - }, - "events": [ - { - "uuid": "b9c7a3e2-1a0d-4209-85bd-c459656a51bf", - "start": { - "$date": "2021-05-07T19:18:47.000Z" - }, - "end": { - "$date": "2021-05-07T19:20:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bd5bdfc-cb8a-4542-ab0d-fdbaa71a5cc7", - "start": { - "$date": "2021-05-07T19:20:47.000Z" - }, - "end": { - "$date": "2021-05-07T20:09:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "abe76183-7b21-4452-a623-768a3f0ed3e5", - "start": { - "$date": "2021-05-07T20:09:47.000Z" - }, - "end": { - "$date": "2021-05-07T20:11:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6775d704-4d33-45fc-a9f0-1d05d27b7c79", - "start": { - "$date": "2021-05-07T20:11:47.000Z" - }, - "end": { - "$date": "2021-05-07T20:59:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3eef4a81-6a9e-4cf3-ac6b-ae2c257d7c2b", - "start": { - "$date": "2021-05-07T20:59:47.000Z" - }, - "end": { - "$date": "2021-05-07T21:00:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4067856e-91b6-46f1-b503-d2b9c4e79ab9", - "start": { - "$date": "2021-05-07T21:00:47.000Z" - }, - "end": { - "$date": "2021-05-07T21:36:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d316a25-52d0-47fb-b757-d29e7f36d7ad", - "start": { - "$date": "2021-05-07T21:36:47.000Z" - }, - "end": { - "$date": "2021-05-07T21:38:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d4b4f9e0-4d59-45d9-addf-b03f510671fe", - "start": { - "$date": "2021-05-07T21:38:47.000Z" - }, - "end": { - "$date": "2021-05-07T21:45:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03dce4e0-6258-4db9-837c-01b1519d34fa", - "start": { - "$date": "2021-05-07T21:45:47.000Z" - }, - "end": { - "$date": "2021-05-07T21:48:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b92a5716-8668-4e41-bdd2-fd08b6301466", - "start": { - "$date": "2021-05-07T21:48:47.000Z" - }, - "end": { - "$date": "2021-05-07T22:07:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "807d223c-4afc-40c8-8d34-da06c30eb532", - "start": { - "$date": "2021-05-07T22:07:47.000Z" - }, - "end": { - "$date": "2021-05-07T22:13:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0acf13c-5501-4320-b6eb-98897cdfb992", - "start": { - "$date": "2021-05-07T22:13:47.000Z" - }, - "end": { - "$date": "2021-05-07T22:14:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d58d2b4-fd27-4744-b2ae-4f9b36e3a26b", - "start": { - "$date": "2021-05-07T22:14:47.000Z" - }, - "end": { - "$date": "2021-05-07T22:16:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55b4dbeb-3969-4aa6-bfd4-9e850d18bca9", - "start": { - "$date": "2021-05-07T22:16:47.000Z" - }, - "end": { - "$date": "2021-05-07T23:29:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90f04a3f-0e7f-4355-a76f-3c9836b33f83", - "start": { - "$date": "2021-05-07T23:29:47.000Z" - }, - "end": { - "$date": "2021-05-07T23:36:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68c9abf8-d0f6-42ee-90c6-579db231cffc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T20:26:30.000Z" - }, - "end": { - "$date": "2021-05-07T20:57:31.000Z" - }, - "events": [ - { - "uuid": "a151514a-97b5-4c9a-bfc1-617eb6045e77", - "start": { - "$date": "2021-05-07T20:26:30.000Z" - }, - "end": { - "$date": "2021-05-07T20:57:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10bb4d41-252f-4415-ab36-57a9dc171ab8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T20:26:22.000Z" - }, - "end": { - "$date": "2021-05-07T20:57:34.000Z" - }, - "events": [ - { - "uuid": "8e94d7d7-7eae-4280-8890-c14872764937", - "start": { - "$date": "2021-05-07T20:26:22.000Z" - }, - "end": { - "$date": "2021-05-07T20:57:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "020800c8-d674-47a6-8245-75e344293bf2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-07T21:22:24.000Z" - }, - "end": { - "$date": "2021-05-07T21:51:15.000Z" - }, - "events": [ - { - "uuid": "747de192-dc45-4708-b14c-4722daffeedb", - "start": { - "$date": "2021-05-07T21:22:24.000Z" - }, - "end": { - "$date": "2021-05-07T21:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4d6c4f78-4c8f-431d-a7b3-dc164707f28e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-07T20:59:16.000Z" - }, - "end": { - "$date": "2021-05-08T00:51:33.000Z" - }, - "events": [ - { - "uuid": "182756ef-abf4-418a-93ef-eab53b2447a9", - "start": { - "$date": "2021-05-07T20:59:16.000Z" - }, - "end": { - "$date": "2021-05-08T00:51:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f22cdcd7-ff49-45da-b0b2-61919f682183", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T20:59:49.000Z" - }, - "end": { - "$date": "2021-05-07T21:04:59.000Z" - }, - "events": [ - { - "uuid": "18b973f1-5535-4e57-b1ef-c7afe4bc1466", - "start": { - "$date": "2021-05-07T20:59:49.000Z" - }, - "end": { - "$date": "2021-05-07T21:04:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01dc728b-8cc9-4b31-89f2-986177476071", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T21:20:26.000Z" - }, - "end": { - "$date": "2021-05-07T21:51:20.000Z" - }, - "events": [ - { - "uuid": "f2145a8b-bcec-4be0-a97f-525c4b5d2c6b", - "start": { - "$date": "2021-05-07T21:20:26.000Z" - }, - "end": { - "$date": "2021-05-07T21:51:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "029a4f62-ce75-40d9-8d82-1fff552ca2e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-07T21:27:40.000Z" - }, - "end": { - "$date": "2021-05-07T22:51:16.000Z" - }, - "events": [ - { - "uuid": "bfbc5b00-c88f-4140-8f80-873d53fddc79", - "start": { - "$date": "2021-05-07T21:27:40.000Z" - }, - "end": { - "$date": "2021-05-07T22:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4baab1d2-7fb3-49e9-aab9-56af9a23a06f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T00:41:59.000Z" - }, - "end": { - "$date": "2021-05-08T00:42:36.000Z" - }, - "events": [ - { - "uuid": "40ab75fd-756e-4c59-bdfc-05ca5fb8f22d", - "start": { - "$date": "2021-05-08T00:41:59.000Z" - }, - "end": { - "$date": "2021-05-08T00:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5917b4a-14f7-44cd-8717-371990af88c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T22:23:24.000Z" - }, - "end": { - "$date": "2021-05-07T22:56:28.000Z" - }, - "events": [ - { - "uuid": "d89a1078-6b63-49d1-89bf-665ad05b7783", - "start": { - "$date": "2021-05-07T22:23:24.000Z" - }, - "end": { - "$date": "2021-05-07T22:56:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6638d2a2-f7dc-4fde-9d6e-c61ea767bd46", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T22:23:25.000Z" - }, - "end": { - "$date": "2021-05-07T22:51:54.000Z" - }, - "events": [ - { - "uuid": "65fe088e-10a7-4b51-ba81-3fba1d62b056", - "start": { - "$date": "2021-05-07T22:23:25.000Z" - }, - "end": { - "$date": "2021-05-07T22:51:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0b6cf149-23c1-4e91-9672-859004070a45", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-07T22:51:25.000Z" - }, - "end": { - "$date": "2021-05-07T23:05:46.000Z" - }, - "events": [ - { - "uuid": "7a01eab5-3fad-483b-b684-004109b583a0", - "start": { - "$date": "2021-05-07T22:51:25.000Z" - }, - "end": { - "$date": "2021-05-07T23:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bd5594a-d127-4b38-b859-494484916c5e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-07T22:57:00.000Z" - }, - "end": { - "$date": "2021-05-07T23:19:32.000Z" - }, - "events": [ - { - "uuid": "3bc1bff1-1582-4d05-8131-9317533166ae", - "start": { - "$date": "2021-05-07T22:57:00.000Z" - }, - "end": { - "$date": "2021-05-07T23:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6865f4cc-b462-48b5-8c6d-67b2289a3336", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-07T22:59:58.000Z" - }, - "end": { - "$date": "2021-05-07T23:15:24.000Z" - }, - "events": [ - { - "uuid": "f79fc2f7-5159-48f8-8e7c-6bc7238cb62c", - "start": { - "$date": "2021-05-07T22:59:58.000Z" - }, - "end": { - "$date": "2021-05-07T23:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7d1eb70-0985-4b88-86d8-393dcb68a173", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T22:57:06.000Z" - }, - "end": { - "$date": "2021-05-07T23:19:06.000Z" - }, - "events": [ - { - "uuid": "ab4529e2-4b5c-4c1d-8c7b-12ab83e335e3", - "start": { - "$date": "2021-05-07T22:57:06.000Z" - }, - "end": { - "$date": "2021-05-07T23:19:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "9d361fa5-1b93-4d94-a841-815e223792a0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-07T23:01:16.000Z" - }, - "end": { - "$date": "2021-05-07T23:55:15.000Z" - }, - "events": [ - { - "uuid": "696f4f7c-3789-40ea-a00b-e8193bcc3cef", - "start": { - "$date": "2021-05-07T23:01:16.000Z" - }, - "end": { - "$date": "2021-05-07T23:55:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4819542d-f0bf-460a-aa5e-a9e21cbe59dc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-07T23:06:05.000Z" - }, - "end": { - "$date": "2021-05-08T01:34:03.000Z" - }, - "events": [ - { - "uuid": "8e4a67b5-042a-4fe8-ac72-7f0b61864039", - "start": { - "$date": "2021-05-07T23:06:05.000Z" - }, - "end": { - "$date": "2021-05-08T00:43:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea803656-a34b-4f4f-8608-2f9642322f0d", - "start": { - "$date": "2021-05-08T00:43:05.000Z" - }, - "end": { - "$date": "2021-05-08T01:34:03.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d00e7719-c5d1-401b-83d2-0b6367bdb197", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-07T23:07:50.000Z" - }, - "end": { - "$date": "2021-05-07T23:33:31.000Z" - }, - "events": [ - { - "uuid": "6ffc8e90-865c-4e41-b95c-cda368e7689f", - "start": { - "$date": "2021-05-07T23:07:50.000Z" - }, - "end": { - "$date": "2021-05-07T23:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0e724d49-6d76-46cb-9832-0d7931e4a611", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T05:04:16.000Z" - }, - "end": { - "$date": "2021-05-08T05:46:49.000Z" - }, - "events": [ - { - "uuid": "aa45a8b1-1f59-4e27-921b-1eea5866cb0f", - "start": { - "$date": "2021-05-08T05:04:16.000Z" - }, - "end": { - "$date": "2021-05-08T08:21:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9aff444d-04af-4d03-85e8-53963c5861bd", - "start": { - "$date": "2021-05-08T08:21:16.000Z" - }, - "end": { - "$date": "2021-05-08T08:37:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ff585a6-cde1-4c99-bf88-9717e57f0b1c", - "start": { - "$date": "2021-05-08T08:37:16.000Z" - }, - "end": { - "$date": "2021-05-08T05:46:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bb67ab2-afd6-4db2-a5fe-3df5a562fb12", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-07T23:21:21.000Z" - }, - "end": { - "$date": "2021-05-08T00:00:14.000Z" - }, - "events": [ - { - "uuid": "be7e060f-c518-4518-85b3-56aba83107c2", - "start": { - "$date": "2021-05-07T23:21:21.000Z" - }, - "end": { - "$date": "2021-05-08T00:00:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3f0d916-193c-4034-8615-334863c0cc36", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-07T23:21:10.000Z" - }, - "end": { - "$date": "2021-05-07T23:50:12.000Z" - }, - "events": [ - { - "uuid": "19ba8da8-14fc-4fb1-b930-caeaf139cd76", - "start": { - "$date": "2021-05-07T23:21:10.000Z" - }, - "end": { - "$date": "2021-05-07T23:50:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e891b62-898c-4f26-994b-3e763cd9ac77", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-07T23:34:55.000Z" - }, - "end": { - "$date": "2021-05-08T00:08:48.000Z" - }, - "events": [ - { - "uuid": "7f87bc42-b55d-42f3-b57b-a45146097107", - "start": { - "$date": "2021-05-07T23:34:55.000Z" - }, - "end": { - "$date": "2021-05-08T00:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6b2c4508-0101-4c72-ac99-f8a1be864c58", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-07T23:52:12.000Z" - }, - "end": { - "$date": "2021-05-08T00:49:33.000Z" - }, - "events": [ - { - "uuid": "46162d40-8cc2-4465-840f-a92b746233d9", - "start": { - "$date": "2021-05-07T23:52:12.000Z" - }, - "end": { - "$date": "2021-05-08T00:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcd4e746-240a-426f-9a13-7b5f37620d96", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-08T00:04:25.000Z" - }, - "end": { - "$date": "2021-05-08T00:23:46.000Z" - }, - "events": [ - { - "uuid": "da25bbfb-5581-4318-87e3-dcdc39655ba3", - "start": { - "$date": "2021-05-08T00:04:25.000Z" - }, - "end": { - "$date": "2021-05-08T00:23:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1cff63a-3519-489e-a695-cd444e1023b9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-08T00:04:29.000Z" - }, - "end": { - "$date": "2021-05-08T00:23:52.000Z" - }, - "events": [ - { - "uuid": "462b1478-8595-41b6-b817-a614bb6c97f8", - "start": { - "$date": "2021-05-08T00:04:29.000Z" - }, - "end": { - "$date": "2021-05-08T00:23:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91032fd1-c337-4f04-bee4-59d7146377cf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-08T00:26:31.000Z" - }, - "end": { - "$date": "2021-05-08T00:41:56.000Z" - }, - "events": [ - { - "uuid": "ed7f9faa-7d6d-4e06-8e89-c2fa874cfed3", - "start": { - "$date": "2021-05-08T00:26:31.000Z" - }, - "end": { - "$date": "2021-05-08T00:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f0b6272b-9113-4c6e-a4b8-039f2a129262", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T01:05:45.000Z" - }, - "end": { - "$date": "2021-05-08T01:56:30.000Z" - }, - "events": [ - { - "uuid": "2892867d-adf4-458b-83d9-7ae9dd7d5c85", - "start": { - "$date": "2021-05-08T01:05:45.000Z" - }, - "end": { - "$date": "2021-05-08T01:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d68556c3-b8ab-4ac5-b642-18171f2d8efd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T05:00:16.000Z" - }, - "end": { - "$date": "2021-05-08T07:56:45.000Z" - }, - "events": [ - { - "uuid": "7fbbe987-818b-4ca5-ab46-98cff037c099", - "start": { - "$date": "2021-05-08T05:00:16.000Z" - }, - "end": { - "$date": "2021-05-08T05:02:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24f5715a-b4d5-4244-8f43-c8ab8cbfa6be", - "start": { - "$date": "2021-05-08T05:02:16.000Z" - }, - "end": { - "$date": "2021-05-08T06:31:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1207d0e9-3084-4134-bba2-bdca6b1714ea", - "start": { - "$date": "2021-05-08T06:31:16.000Z" - }, - "end": { - "$date": "2021-05-08T06:33:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80d2e721-6a30-46e1-8409-4edb268e1b61", - "start": { - "$date": "2021-05-08T06:33:16.000Z" - }, - "end": { - "$date": "2021-05-08T06:39:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c90452f-f577-49ab-8f60-4c0a31b89ec5", - "start": { - "$date": "2021-05-08T06:39:16.000Z" - }, - "end": { - "$date": "2021-05-08T06:41:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f3a6880d-1dab-4a2c-8bbe-5833d0e04040", - "start": { - "$date": "2021-05-08T06:41:16.000Z" - }, - "end": { - "$date": "2021-05-08T06:43:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "397582d2-abd5-4c95-8f7c-eeed448ec277", - "start": { - "$date": "2021-05-08T06:43:16.000Z" - }, - "end": { - "$date": "2021-05-08T06:47:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f054b827-2a04-479f-871d-584dc7540e0f", - "start": { - "$date": "2021-05-08T06:47:16.000Z" - }, - "end": { - "$date": "2021-05-08T07:20:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6c5244b-1f1f-49e3-9b2d-1bccecacc262", - "start": { - "$date": "2021-05-08T07:20:16.000Z" - }, - "end": { - "$date": "2021-05-08T07:23:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1cb585d6-57fa-4657-961d-2f3ae9850378", - "start": { - "$date": "2021-05-08T07:23:16.000Z" - }, - "end": { - "$date": "2021-05-08T07:32:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b1245444-5825-4f57-9231-99b34b379bd7", - "start": { - "$date": "2021-05-08T07:32:16.000Z" - }, - "end": { - "$date": "2021-05-08T07:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "459903b7-6f72-429d-b7c0-083fcc56e5cf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-08T02:04:15.000Z" - }, - "end": { - "$date": "2021-05-08T02:54:53.000Z" - }, - "events": [ - { - "uuid": "1e660e39-8b74-4e94-add3-b4b5f5485616", - "start": { - "$date": "2021-05-08T02:04:15.000Z" - }, - "end": { - "$date": "2021-05-08T02:18:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51cee512-1e31-4bff-b8d6-83c40e986831", - "start": { - "$date": "2021-05-08T02:18:15.000Z" - }, - "end": { - "$date": "2021-05-08T02:19:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "33cacc85-80a2-4cd3-bff0-f46f69d7d425", - "start": { - "$date": "2021-05-08T02:19:15.000Z" - }, - "end": { - "$date": "2021-05-08T02:29:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5f184fa-339f-45ba-8098-95dd8150f811", - "start": { - "$date": "2021-05-08T02:29:15.000Z" - }, - "end": { - "$date": "2021-05-08T02:33:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "079e6695-baef-4669-b6bc-5561481ae936", - "start": { - "$date": "2021-05-08T02:33:15.000Z" - }, - "end": { - "$date": "2021-05-08T02:54:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f5e87cf4-ecde-4c73-a11b-25bc2255b4a2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T02:27:22.000Z" - }, - "end": { - "$date": "2021-05-08T04:28:21.000Z" - }, - "events": [ - { - "uuid": "114f05da-ef69-49eb-8364-cf77d2b754d4", - "start": { - "$date": "2021-05-08T02:27:22.000Z" - }, - "end": { - "$date": "2021-05-08T04:28:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "ddac09ae-0df8-4fcf-bffd-9287900e0dd8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-08T02:28:37.000Z" - }, - "end": { - "$date": "2021-05-08T02:38:10.000Z" - }, - "events": [ - { - "uuid": "a6ccdb05-129d-406b-8c5b-71e2f4bc9c5f", - "start": { - "$date": "2021-05-08T02:28:37.000Z" - }, - "end": { - "$date": "2021-05-08T02:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d43e563-ccbc-4e60-8f15-283f403cc3be", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-08T04:41:51.000Z" - }, - "end": { - "$date": "2021-05-08T04:57:29.000Z" - }, - "events": [ - { - "uuid": "b3069852-f5b9-4648-936f-fbec1c100702", - "start": { - "$date": "2021-05-08T04:41:51.000Z" - }, - "end": { - "$date": "2021-05-08T04:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3caaeb38-a7c9-4c75-a686-c8adaca3194b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-08T03:26:41.000Z" - }, - "end": { - "$date": "2021-05-08T07:11:30.000Z" - }, - "events": [ - { - "uuid": "d01f020a-2416-4a8e-8ee7-48108bfd2b23", - "start": { - "$date": "2021-05-08T03:26:41.000Z" - }, - "end": { - "$date": "2021-05-08T07:11:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "389ec2c4-49a5-4ede-919a-9a236d71d2eb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-08T04:26:50.000Z" - }, - "end": { - "$date": "2021-05-08T08:03:07.000Z" - }, - "events": [ - { - "uuid": "774083a9-dbd2-40b2-8940-2fea3b0ce3fd", - "start": { - "$date": "2021-05-08T04:26:50.000Z" - }, - "end": { - "$date": "2021-05-08T08:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c12fa1c3-06e8-433e-b9aa-49093445e7db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T00:41:59.000Z" - }, - "end": { - "$date": "2021-05-08T04:54:09.000Z" - }, - "events": [ - { - "uuid": "ddb0fb16-3bde-4fb1-b865-b9dc6ed436a2", - "start": { - "$date": "2021-05-08T00:41:59.000Z" - }, - "end": { - "$date": "2021-05-08T04:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "45fb4fbe-37dd-4f26-a47f-983054f6a41d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T04:38:42.000Z" - }, - "end": { - "$date": "2021-05-08T07:19:03.000Z" - }, - "events": [ - { - "uuid": "af931a54-92e6-4ef1-a675-b76a3da0562b", - "start": { - "$date": "2021-05-08T04:38:42.000Z" - }, - "end": { - "$date": "2021-05-08T07:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c96b8de4-833b-4224-93b1-1c117d1f0ba8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T04:39:57.000Z" - }, - "end": { - "$date": "2021-05-08T07:06:59.000Z" - }, - "events": [ - { - "uuid": "5355ef81-bd42-45c7-ac94-d16d8a7a5d1f", - "start": { - "$date": "2021-05-08T04:39:57.000Z" - }, - "end": { - "$date": "2021-05-08T07:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f67b7b8c-af34-43dc-aca2-7ccc900efd64", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T04:54:24.000Z" - }, - "end": { - "$date": "2021-05-08T06:29:25.000Z" - }, - "events": [ - { - "uuid": "77794b90-7ae7-4710-9a49-0f0dfa4d3e01", - "start": { - "$date": "2021-05-08T04:54:24.000Z" - }, - "end": { - "$date": "2021-05-08T06:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "05f06ca3-a7a5-40f8-af29-9fc76092aed4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T05:49:04.000Z" - }, - "end": { - "$date": "2021-05-08T06:38:26.000Z" - }, - "events": [ - { - "uuid": "938264a6-85c2-4a21-85d8-e16705384b1d", - "start": { - "$date": "2021-05-08T05:49:04.000Z" - }, - "end": { - "$date": "2021-05-08T06:38:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "adc271a8-edba-4a0b-a617-fb219c278619", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-08T06:15:02.000Z" - }, - "end": { - "$date": "2021-05-08T06:57:01.000Z" - }, - "events": [ - { - "uuid": "4b722b8a-72f5-4b67-9b6f-9ede77c8a313", - "start": { - "$date": "2021-05-08T06:15:02.000Z" - }, - "end": { - "$date": "2021-05-08T06:57:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "d559c0f8-06ef-4366-b372-c1dbb7a955be", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T06:30:03.000Z" - }, - "end": { - "$date": "2021-05-08T06:37:18.000Z" - }, - "events": [ - { - "uuid": "05c6f089-232e-4901-93c0-d693e04fcb89", - "start": { - "$date": "2021-05-08T06:30:03.000Z" - }, - "end": { - "$date": "2021-05-08T06:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9150512f-4870-4ef2-8564-4979d9e9dfef", - "uuid": "b40db6a1-5ce0-4b43-91c1-5360e5a21c38", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T06:37:28.000Z" - }, - "end": { - "$date": "2021-05-08T07:52:58.000Z" - }, - "events": [ - { - "uuid": "6473078c-c3f7-483c-809b-8238a57d2241", - "start": { - "$date": "2021-05-08T06:37:28.000Z" - }, - "end": { - "$date": "2021-05-08T07:46:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "571abf99-11f3-4f85-9f7d-cae9a4813522", - "start": { - "$date": "2021-05-08T07:46:28.000Z" - }, - "end": { - "$date": "2021-05-08T07:47:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cf7f21cb-5ebd-490f-bee5-b2ae1744b946", - "start": { - "$date": "2021-05-08T07:47:28.000Z" - }, - "end": { - "$date": "2021-05-08T07:49:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d48f4634-212c-44d0-b96e-985c2f8086c9", - "start": { - "$date": "2021-05-08T07:49:28.000Z" - }, - "end": { - "$date": "2021-05-08T07:52:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3809c2f7-cc27-4132-9968-37373a20673e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T07:22:04.000Z" - }, - "end": { - "$date": "2021-05-08T07:24:34.000Z" - }, - "events": [ - { - "uuid": "1b5d492f-c083-41ff-994b-13cffc6e2916", - "start": { - "$date": "2021-05-08T07:22:04.000Z" - }, - "end": { - "$date": "2021-05-08T07:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "208e2aab-15ed-4684-88d5-84921674eab2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T07:27:35.000Z" - }, - "end": { - "$date": "2021-05-08T07:59:37.000Z" - }, - "events": [ - { - "uuid": "e2188925-fa31-4397-8441-bc8bbf602b91", - "start": { - "$date": "2021-05-08T07:27:35.000Z" - }, - "end": { - "$date": "2021-05-08T07:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3ce44c28-1587-46e6-ae75-55a13c6007d9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-08T07:37:38.000Z" - }, - "end": { - "$date": "2021-05-08T07:58:24.000Z" - }, - "events": [ - { - "uuid": "83e1763f-b76d-49bb-b7ff-c7eb2c7eff24", - "start": { - "$date": "2021-05-08T07:37:38.000Z" - }, - "end": { - "$date": "2021-05-08T07:58:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b5b48f02-c45c-497c-91e3-37b8ceb1da46", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T08:23:22.000Z" - }, - "end": { - "$date": "2021-05-08T09:07:14.000Z" - }, - "events": [ - { - "uuid": "f84bb0eb-fdac-4741-9d57-10023bd6f99e", - "start": { - "$date": "2021-05-08T08:23:22.000Z" - }, - "end": { - "$date": "2021-05-08T09:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9059ceda-4fee-4745-a406-e1fb2d0b4680", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-08T08:43:37.000Z" - }, - "end": { - "$date": "2021-05-08T09:18:40.000Z" - }, - "events": [ - { - "uuid": "7cc11009-1eaf-4253-927a-565e782ef55e", - "start": { - "$date": "2021-05-08T08:43:37.000Z" - }, - "end": { - "$date": "2021-05-08T09:18:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "938de2df-a717-42a2-8d83-0d7a8880e0c9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T09:12:53.000Z" - }, - "end": { - "$date": "2021-05-08T09:24:14.000Z" - }, - "events": [ - { - "uuid": "bb3fa541-6d15-47a4-8737-995103e2656d", - "start": { - "$date": "2021-05-08T09:12:53.000Z" - }, - "end": { - "$date": "2021-05-08T09:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85e57152-3f22-4dd9-908e-d19516bb9804", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-08T09:19:05.000Z" - }, - "end": { - "$date": "2021-05-08T09:54:39.000Z" - }, - "events": [ - { - "uuid": "5df4c866-8e79-4edf-b3fb-9e8d9e0f3db3", - "start": { - "$date": "2021-05-08T09:19:05.000Z" - }, - "end": { - "$date": "2021-05-08T09:54:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8c858096-5883-4aaa-a6b8-f7da621f3e23", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T09:44:11.000Z" - }, - "end": { - "$date": "2021-05-08T09:50:42.000Z" - }, - "events": [ - { - "uuid": "b2cb825e-6db0-46bf-a042-5cb3e84f855a", - "start": { - "$date": "2021-05-08T09:44:11.000Z" - }, - "end": { - "$date": "2021-05-08T09:50:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a72f2bfd-6ddf-4bce-97e6-6607262015bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-08T09:56:23.000Z" - }, - "end": { - "$date": "2021-05-08T10:25:41.000Z" - }, - "events": [ - { - "uuid": "9888619c-fc22-469a-a3b4-ae8d4b66cae1", - "start": { - "$date": "2021-05-08T09:56:23.000Z" - }, - "end": { - "$date": "2021-05-08T10:25:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eddc9d52-b9ce-454a-9e83-d41cd29d8498", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T12:50:33.000Z" - }, - "end": { - "$date": "2021-05-08T13:41:13.000Z" - }, - "events": [ - { - "uuid": "8f9ef489-8a46-4443-89b6-b3ea964929db", - "start": { - "$date": "2021-05-08T12:50:33.000Z" - }, - "end": { - "$date": "2021-05-08T13:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "25ba473c-e697-4d84-8908-e646e05a3815", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T14:14:52.000Z" - }, - "end": { - "$date": "2021-05-08T15:45:01.000Z" - }, - "events": [ - { - "uuid": "b1f5e87d-871a-4273-91a6-07a152bc352c", - "start": { - "$date": "2021-05-08T14:14:52.000Z" - }, - "end": { - "$date": "2021-05-08T15:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "86b09019-f47d-461c-b204-0db790cacc74", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T15:58:45.000Z" - }, - "end": { - "$date": "2021-05-08T16:19:25.000Z" - }, - "events": [ - { - "uuid": "88a8551d-d8c6-4ef4-aa9d-956155d39951", - "start": { - "$date": "2021-05-08T15:58:45.000Z" - }, - "end": { - "$date": "2021-05-08T16:19:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "ac17628f-3521-48bb-b0a1-9f071507a421", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T16:19:56.000Z" - }, - "end": { - "$date": "2021-05-08T16:36:46.000Z" - }, - "events": [ - { - "uuid": "52ef03f8-f353-44e8-9a91-d4c6379e9fe3", - "start": { - "$date": "2021-05-08T16:19:56.000Z" - }, - "end": { - "$date": "2021-05-08T16:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "922bf0f5-930e-41e0-b921-61df0be2599b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T16:38:02.000Z" - }, - "end": { - "$date": "2021-05-08T16:42:07.000Z" - }, - "events": [ - { - "uuid": "825f18a1-0d54-4b77-bc74-5eebb640eb67", - "start": { - "$date": "2021-05-08T16:38:02.000Z" - }, - "end": { - "$date": "2021-05-08T16:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "78be1eb2-3b3f-4481-bca2-53a061aa4190", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T16:42:37.000Z" - }, - "end": { - "$date": "2021-05-08T16:45:42.000Z" - }, - "events": [ - { - "uuid": "be25eb3b-2f63-4d42-ab52-851d0923be41", - "start": { - "$date": "2021-05-08T16:42:37.000Z" - }, - "end": { - "$date": "2021-05-08T16:45:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b52df0d1-344a-45d0-b4da-24bcb97c7a14", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T16:46:02.000Z" - }, - "end": { - "$date": "2021-05-08T17:46:34.000Z" - }, - "events": [ - { - "uuid": "708a7d6a-b7fa-410f-af54-e99693fb6bff", - "start": { - "$date": "2021-05-08T16:46:02.000Z" - }, - "end": { - "$date": "2021-05-08T17:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7a1b5584-b15b-4bfe-89ca-fe7f97314452", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T19:49:17.000Z" - }, - "end": { - "$date": "2021-05-08T19:50:37.000Z" - }, - "events": [ - { - "uuid": "16290b69-1aa0-41b2-922e-e7420cec868d", - "start": { - "$date": "2021-05-08T19:49:17.000Z" - }, - "end": { - "$date": "2021-05-08T20:09:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2598de7d-ff8d-46f1-b3e8-3f5a8887bded", - "start": { - "$date": "2021-05-08T20:09:17.000Z" - }, - "end": { - "$date": "2021-05-08T20:13:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c26a1cc-7cf5-492e-abfe-6b1c6e95633f", - "start": { - "$date": "2021-05-08T20:13:17.000Z" - }, - "end": { - "$date": "2021-05-08T20:36:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e640557-d1bb-4b0c-b3a0-6767363554c7", - "start": { - "$date": "2021-05-08T20:36:17.000Z" - }, - "end": { - "$date": "2021-05-08T20:46:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8a07bd1-c85d-4e63-8d50-5cd1aa092108", - "start": { - "$date": "2021-05-08T20:46:17.000Z" - }, - "end": { - "$date": "2021-05-08T21:48:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4f0f9b78-1589-44b8-93f2-038386d71bce", - "start": { - "$date": "2021-05-08T21:48:17.000Z" - }, - "end": { - "$date": "2021-05-08T21:50:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6b78515-2397-4963-be0f-26c98c12e5c6", - "start": { - "$date": "2021-05-08T21:50:17.000Z" - }, - "end": { - "$date": "2021-05-08T21:53:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d2254db-a00c-49a3-9f9d-40ec8fdbab84", - "start": { - "$date": "2021-05-08T21:53:17.000Z" - }, - "end": { - "$date": "2021-05-08T22:03:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d21dc059-1e42-4dc6-b0ed-d915e2c98c8a", - "start": { - "$date": "2021-05-08T22:03:17.000Z" - }, - "end": { - "$date": "2021-05-08T19:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0faffaf6-18e7-4da4-b05e-d4ad964f349a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T17:53:15.000Z" - }, - "end": { - "$date": "2021-05-08T19:11:21.000Z" - }, - "events": [ - { - "uuid": "d3597b04-bdd1-40a2-b8ca-e82ec71cedef", - "start": { - "$date": "2021-05-08T17:53:15.000Z" - }, - "end": { - "$date": "2021-05-08T19:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2762fccf-0ba3-4a4d-a00c-cf5865910d02", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T20:16:59.000Z" - }, - "end": { - "$date": "2021-05-08T20:17:04.000Z" - }, - "events": [ - { - "uuid": "afb76023-e240-4513-b8f6-269795d56e6e", - "start": { - "$date": "2021-05-08T20:16:59.000Z" - }, - "end": { - "$date": "2021-05-08T20:17:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "806a1e2b-cd9a-4146-bf8f-fde22b8d364c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T19:15:56.000Z" - }, - "end": { - "$date": "2021-05-08T19:36:48.000Z" - }, - "events": [ - { - "uuid": "e12f3090-1418-4054-aa7c-a93d22509048", - "start": { - "$date": "2021-05-08T19:15:56.000Z" - }, - "end": { - "$date": "2021-05-08T19:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c3c8d446-a318-4848-a147-49c1bd41a0e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T19:16:12.000Z" - }, - "end": { - "$date": "2021-05-08T20:06:55.000Z" - }, - "events": [ - { - "uuid": "4e6e146b-f509-4638-bb3b-71dfdb91a5ef", - "start": { - "$date": "2021-05-08T19:16:12.000Z" - }, - "end": { - "$date": "2021-05-08T19:45:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6711654-d6d2-4019-a30a-d215c6876266", - "start": { - "$date": "2021-05-08T19:45:12.000Z" - }, - "end": { - "$date": "2021-05-08T19:54:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6415464-fb3c-44b9-abb8-09effc9dd722", - "start": { - "$date": "2021-05-08T19:54:12.000Z" - }, - "end": { - "$date": "2021-05-08T20:04:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c92e04f5-0b52-4e13-9024-5760cd14b1a0", - "start": { - "$date": "2021-05-08T20:04:12.000Z" - }, - "end": { - "$date": "2021-05-08T20:06:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d0776661-9ab0-4be0-abe4-57a1d7f099cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T19:51:52.000Z" - }, - "end": { - "$date": "2021-05-08T19:53:38.000Z" - }, - "events": [ - { - "uuid": "58ecddfd-fc1e-4780-8210-81dc362b608d", - "start": { - "$date": "2021-05-08T19:51:52.000Z" - }, - "end": { - "$date": "2021-05-08T19:53:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4531216e-9fa4-459d-b609-47d199fb2490", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T19:55:37.000Z" - }, - "end": { - "$date": "2021-05-08T20:03:58.000Z" - }, - "events": [ - { - "uuid": "351797bb-f7aa-47b3-b84c-d4035415210f", - "start": { - "$date": "2021-05-08T19:55:37.000Z" - }, - "end": { - "$date": "2021-05-08T20:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "622c4471-97e6-4607-8f93-2203b9e0ffae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T19:57:39.000Z" - }, - "end": { - "$date": "2021-05-08T20:16:56.000Z" - }, - "events": [ - { - "uuid": "07bcb1af-2e53-49e5-a598-8415b316d8ec", - "start": { - "$date": "2021-05-08T19:57:39.000Z" - }, - "end": { - "$date": "2021-05-08T20:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1b224a53-54cd-4c35-b72e-c88a9941ecfd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T20:04:33.000Z" - }, - "end": { - "$date": "2021-05-08T20:05:38.000Z" - }, - "events": [ - { - "uuid": "0ac9a823-81fd-49c0-bd27-45019ffb36d6", - "start": { - "$date": "2021-05-08T20:04:33.000Z" - }, - "end": { - "$date": "2021-05-08T20:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ede3ebfb-efae-41ea-afe1-bb1eaf3f190c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T20:06:08.000Z" - }, - "end": { - "$date": "2021-05-08T21:34:40.000Z" - }, - "events": [ - { - "uuid": "ff9f7c0d-7a63-436a-8db1-398671f8488b", - "start": { - "$date": "2021-05-08T20:06:08.000Z" - }, - "end": { - "$date": "2021-05-08T21:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0fb30a94-22dc-48f7-82a2-ca8af959b94b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-08T20:09:25.000Z" - }, - "end": { - "$date": "2021-05-08T22:05:53.000Z" - }, - "events": [ - { - "uuid": "07d5f57f-1226-4692-8bdb-f2a40121d878", - "start": { - "$date": "2021-05-08T20:09:25.000Z" - }, - "end": { - "$date": "2021-05-08T22:05:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ca3c583-486d-4e0e-98e5-34365011675c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T20:34:00.000Z" - }, - "end": { - "$date": "2021-05-08T21:11:01.000Z" - }, - "events": [ - { - "uuid": "d2bb5431-79f7-4a0b-a35f-823917c10c1e", - "start": { - "$date": "2021-05-08T20:34:00.000Z" - }, - "end": { - "$date": "2021-05-08T21:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "512cecdc-f159-47cd-ad82-1693aef3ae48", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T21:44:31.000Z" - }, - "end": { - "$date": "2021-05-08T22:18:17.000Z" - }, - "events": [ - { - "uuid": "11c2a11e-d674-404a-a6c0-8cfa02197c5b", - "start": { - "$date": "2021-05-08T21:44:31.000Z" - }, - "end": { - "$date": "2021-05-08T21:55:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d2ce5314-2fec-4882-89da-542fe35ebf20", - "start": { - "$date": "2021-05-08T21:55:31.000Z" - }, - "end": { - "$date": "2021-05-08T22:10:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "693f4c35-6d9d-4b04-b0b5-7ba7e9a2145b", - "start": { - "$date": "2021-05-08T22:10:31.000Z" - }, - "end": { - "$date": "2021-05-08T22:18:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "caa329db-6c33-415d-b94d-deae25be24f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-08T21:18:22.000Z" - }, - "end": { - "$date": "2021-05-08T22:28:15.000Z" - }, - "events": [ - { - "uuid": "a1438ac8-bf7c-4e78-8086-f05850e44678", - "start": { - "$date": "2021-05-08T21:18:22.000Z" - }, - "end": { - "$date": "2021-05-08T22:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8293961b-fd57-42e3-a80d-a6ecf0ba5640", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-08T21:32:31.000Z" - }, - "end": { - "$date": "2021-05-08T22:18:51.000Z" - }, - "events": [ - { - "uuid": "8a027b2c-47a2-4c08-8d81-3497419b10c0", - "start": { - "$date": "2021-05-08T21:32:31.000Z" - }, - "end": { - "$date": "2021-05-08T22:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0d8e834e-91af-4d95-b857-a47b84cda6fe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T21:37:47.000Z" - }, - "end": { - "$date": "2021-05-08T22:01:10.000Z" - }, - "events": [ - { - "uuid": "10793aae-7333-482d-96d8-329a2cbc9d59", - "start": { - "$date": "2021-05-08T21:37:47.000Z" - }, - "end": { - "$date": "2021-05-08T22:01:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "dbb3aff1-2247-49e1-bb80-04a611b04a15", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T22:04:26.000Z" - }, - "end": { - "$date": "2021-05-08T22:46:19.000Z" - }, - "events": [ - { - "uuid": "64b2aa6a-319c-42fb-b204-4bf121ad550b", - "start": { - "$date": "2021-05-08T22:04:26.000Z" - }, - "end": { - "$date": "2021-05-08T22:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4c99e801-7602-4704-9ef9-e9084b2e6ed2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-08T22:16:26.000Z" - }, - "end": { - "$date": "2021-05-09T02:19:37.000Z" - }, - "events": [ - { - "uuid": "8a7de7a4-bdcc-409c-98a0-4c7ff96c6b9f", - "start": { - "$date": "2021-05-08T22:16:26.000Z" - }, - "end": { - "$date": "2021-05-08T23:44:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "961dd5fd-c3f5-4554-a51e-996f1646a8e4", - "start": { - "$date": "2021-05-08T23:44:26.000Z" - }, - "end": { - "$date": "2021-05-08T23:54:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "51aad3b7-99b6-4c1d-ae12-cfea8f78636b", - "start": { - "$date": "2021-05-08T23:54:26.000Z" - }, - "end": { - "$date": "2021-05-09T02:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb0bc380-e9dc-48c9-91d9-82d49fcfee95", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T22:19:14.000Z" - }, - "end": { - "$date": "2021-05-08T22:21:32.000Z" - }, - "events": [ - { - "uuid": "34667404-93db-4283-b01a-b6cc1cc321af", - "start": { - "$date": "2021-05-08T22:19:14.000Z" - }, - "end": { - "$date": "2021-05-08T22:21:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e7ea940-0de2-4d41-9c71-62ea8f63fe25", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-08T22:22:48.000Z" - }, - "end": { - "$date": "2021-05-08T22:43:18.000Z" - }, - "events": [ - { - "uuid": "917654f8-1594-4281-95b4-04204783957c", - "start": { - "$date": "2021-05-08T22:22:48.000Z" - }, - "end": { - "$date": "2021-05-08T22:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58cb5a6d-793b-429f-b13f-fe721bb37df8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T22:24:17.000Z" - }, - "end": { - "$date": "2021-05-08T22:43:14.000Z" - }, - "events": [ - { - "uuid": "18ce5afd-6f71-4dc3-9a6d-ff98437bf410", - "start": { - "$date": "2021-05-08T22:24:17.000Z" - }, - "end": { - "$date": "2021-05-08T22:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4286c302-a681-4332-9357-ec94928c055f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-08T23:01:10.000Z" - }, - "end": { - "$date": "2021-05-08T23:22:31.000Z" - }, - "events": [ - { - "uuid": "36f73fb9-2f3f-436b-9328-09d353b0974a", - "start": { - "$date": "2021-05-08T23:01:10.000Z" - }, - "end": { - "$date": "2021-05-08T23:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c22f6b74-4277-4a5f-9a56-fac3eb7b69c5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T22:44:44.000Z" - }, - "end": { - "$date": "2021-05-08T23:00:41.000Z" - }, - "events": [ - { - "uuid": "872225cc-c5c1-4f61-a203-cf1474dcc6d4", - "start": { - "$date": "2021-05-08T22:44:44.000Z" - }, - "end": { - "$date": "2021-05-08T23:00:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "90083a01-470c-48b0-8d43-a3556df1d2d1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T22:46:25.000Z" - }, - "end": { - "$date": "2021-05-08T23:00:12.000Z" - }, - "events": [ - { - "uuid": "39618c39-5d7e-48ac-8578-665c7d0febdf", - "start": { - "$date": "2021-05-08T22:46:25.000Z" - }, - "end": { - "$date": "2021-05-08T23:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17095993-5b4f-4ae0-9356-26dc2d79cdc2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-08T23:01:34.000Z" - }, - "end": { - "$date": "2021-05-08T23:18:11.000Z" - }, - "events": [ - { - "uuid": "d89bbef2-f59c-4400-bb2a-59d897227b00", - "start": { - "$date": "2021-05-08T23:01:34.000Z" - }, - "end": { - "$date": "2021-05-08T23:18:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3349a313-1467-4a4a-b4b1-30bfe101c9dd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T23:16:34.000Z" - }, - "end": { - "$date": "2021-05-08T23:16:38.000Z" - }, - "events": [ - { - "uuid": "e990dc47-b117-4e2b-978b-5adc4e774294", - "start": { - "$date": "2021-05-08T23:16:34.000Z" - }, - "end": { - "$date": "2021-05-08T23:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "641249e7-15e6-438e-94ab-247f4bf2131b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-08T23:01:36.000Z" - }, - "end": { - "$date": "2021-05-08T23:22:23.000Z" - }, - "events": [ - { - "uuid": "6db5d092-a104-40cf-b7b3-59d3691714c7", - "start": { - "$date": "2021-05-08T23:01:36.000Z" - }, - "end": { - "$date": "2021-05-08T23:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "24528977-1f55-4cbe-840e-e6c2c938fd24", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-08T23:17:51.000Z" - }, - "end": { - "$date": "2021-05-08T23:58:42.000Z" - }, - "events": [ - { - "uuid": "7d59a2da-affe-41c0-9374-bd74b00311d5", - "start": { - "$date": "2021-05-08T23:17:51.000Z" - }, - "end": { - "$date": "2021-05-08T23:18:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4167d18c-faf5-4f68-a205-689e04798e9d", - "start": { - "$date": "2021-05-08T23:18:51.000Z" - }, - "end": { - "$date": "2021-05-08T23:58:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c2550e46-b9d8-4ea7-9d8e-2698311a265a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-09T00:46:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:36:39.000Z" - }, - "events": [ - { - "uuid": "28c5b5db-6745-4526-bdda-f2eb42451f48", - "start": { - "$date": "2021-05-09T00:46:14.000Z" - }, - "end": { - "$date": "2021-05-09T00:48:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6062df95-34a9-4b43-ba7a-85affe1e36d0", - "start": { - "$date": "2021-05-09T00:48:14.000Z" - }, - "end": { - "$date": "2021-05-09T01:16:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7a6f72f-6678-4126-b336-6d939463f27c", - "start": { - "$date": "2021-05-09T01:16:14.000Z" - }, - "end": { - "$date": "2021-05-09T01:18:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b9f0cc66-2783-495c-ab57-df831fa375cc", - "start": { - "$date": "2021-05-09T01:18:14.000Z" - }, - "end": { - "$date": "2021-05-09T01:59:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "601da60f-3ca7-4ab5-b335-07a81de3f43f", - "start": { - "$date": "2021-05-09T01:59:14.000Z" - }, - "end": { - "$date": "2021-05-09T02:03:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ac6d657c-2b8f-4b3a-951e-f27917f087c6", - "start": { - "$date": "2021-05-09T02:03:14.000Z" - }, - "end": { - "$date": "2021-05-09T02:27:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e19e460-2b3b-47ec-9565-774efd53febc", - "start": { - "$date": "2021-05-09T02:27:14.000Z" - }, - "end": { - "$date": "2021-05-09T02:29:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93ad34f8-74d8-435c-8430-1e1098ec3f98", - "start": { - "$date": "2021-05-09T02:29:14.000Z" - }, - "end": { - "$date": "2021-05-09T02:36:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6a8111b-7666-44c8-9566-7f493f26f3c3", - "start": { - "$date": "2021-05-09T02:36:14.000Z" - }, - "end": { - "$date": "2021-05-09T02:38:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6c32ecc-8568-4aff-856a-892f2b2d524a", - "start": { - "$date": "2021-05-09T02:38:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:07:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0b464b41-1321-4e82-8bd5-0d7a53ca0055", - "start": { - "$date": "2021-05-09T03:07:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:12:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e11f8fa-4878-48f4-a5e0-d7ceaf10fbb2", - "start": { - "$date": "2021-05-09T03:12:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:18:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "401ec827-2a9a-4b86-9e38-a88a0eaba664", - "start": { - "$date": "2021-05-09T03:18:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:20:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06b9a33b-7b85-4be2-b7cf-24486868ea1c", - "start": { - "$date": "2021-05-09T03:20:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:25:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9d36b923-9cb6-42e2-825d-85b5b38355c2", - "start": { - "$date": "2021-05-09T03:25:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:28:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4b38d6b-4a92-4726-896b-2fd1e2720276", - "start": { - "$date": "2021-05-09T03:28:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:31:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b3d1a42-22eb-4834-ad1a-b2e59c8c917f", - "start": { - "$date": "2021-05-09T03:31:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:33:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db1425a9-5b9c-4203-98b2-f76d85b10054", - "start": { - "$date": "2021-05-09T03:33:14.000Z" - }, - "end": { - "$date": "2021-05-09T03:48:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d622d288-5de1-420f-b038-a0366638124d", - "start": { - "$date": "2021-05-09T03:48:14.000Z" - }, - "end": { - "$date": "2021-05-09T04:00:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62881dd4-f072-4ce6-8479-cb850ff89bd4", - "start": { - "$date": "2021-05-09T04:00:14.000Z" - }, - "end": { - "$date": "2021-05-09T04:52:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fe9422d2-1f7c-4b91-8a0a-304410ac4f85", - "start": { - "$date": "2021-05-09T04:52:14.000Z" - }, - "end": { - "$date": "2021-05-09T04:54:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "904372aa-8ad5-448d-9f43-43f4325e883f", - "start": { - "$date": "2021-05-09T04:54:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:01:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf73a91f-81ab-462b-99c3-cbf23135ae3f", - "start": { - "$date": "2021-05-09T05:01:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:03:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cba23122-0757-4cc1-93da-3980ca89f2e6", - "start": { - "$date": "2021-05-09T05:03:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:07:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ead17a0a-11a3-4f82-a813-5c1aea2a1b97", - "start": { - "$date": "2021-05-09T05:07:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:09:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5dd4c7c-a7e3-42d2-94ee-83fe57f75c73", - "start": { - "$date": "2021-05-09T05:09:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:17:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4c74c165-5881-418b-8a6e-87e6000626cf", - "start": { - "$date": "2021-05-09T05:17:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:20:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51906d88-dfaf-42c9-9137-51e1ad3c6f6b", - "start": { - "$date": "2021-05-09T05:20:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:23:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97b56681-1ffc-4af7-b7a4-f1f99c63abfc", - "start": { - "$date": "2021-05-09T05:23:14.000Z" - }, - "end": { - "$date": "2021-05-09T05:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a82fd760-1c15-4503-8fb7-520e7748a226", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-09T01:55:37.000Z" - }, - "end": { - "$date": "2021-05-09T02:24:18.000Z" - }, - "events": [ - { - "uuid": "d6d1915c-c6c8-494c-bce2-5a618cdc5424", - "start": { - "$date": "2021-05-09T01:55:37.000Z" - }, - "end": { - "$date": "2021-05-09T02:25:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db0bfe45-81d0-49d4-80c2-f2dea7635788", - "start": { - "$date": "2021-05-09T02:25:37.000Z" - }, - "end": { - "$date": "2021-05-09T02:35:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04a4571e-484f-4d9b-b560-ea19133a1f33", - "start": { - "$date": "2021-05-09T02:35:37.000Z" - }, - "end": { - "$date": "2021-05-09T02:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6f7508ca-2b30-4d4a-bcd8-e208f298c9b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-09T01:19:30.000Z" - }, - "end": { - "$date": "2021-05-09T02:17:11.000Z" - }, - "events": [ - { - "uuid": "0d3ba010-2d15-4159-9624-a2e8f0e484fe", - "start": { - "$date": "2021-05-09T01:19:30.000Z" - }, - "end": { - "$date": "2021-05-09T02:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "75b3da15-39c3-4c48-9d75-13519c891603", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T01:19:28.000Z" - }, - "end": { - "$date": "2021-05-09T01:45:38.000Z" - }, - "events": [ - { - "uuid": "76c30c2e-8548-49df-99f1-2daa520e3174", - "start": { - "$date": "2021-05-09T01:19:28.000Z" - }, - "end": { - "$date": "2021-05-09T01:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8e390a25-8599-4165-abd0-3e7088fdfa7a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T01:19:28.000Z" - }, - "end": { - "$date": "2021-05-09T02:01:22.000Z" - }, - "events": [ - { - "uuid": "57fad1a5-e19c-4970-9210-6e866e03a63b", - "start": { - "$date": "2021-05-09T01:19:28.000Z" - }, - "end": { - "$date": "2021-05-09T02:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b4616ef-d080-429c-8fc6-d3e358f3dd07", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-09T02:31:48.000Z" - }, - "end": { - "$date": "2021-05-09T02:57:48.000Z" - }, - "events": [ - { - "uuid": "e41ebde1-38b2-4cb3-83b3-6933475036a7", - "start": { - "$date": "2021-05-09T02:31:48.000Z" - }, - "end": { - "$date": "2021-05-09T02:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b0b41b4a-cc58-4ca1-8e6e-abd737faf4ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-09T02:28:58.000Z" - }, - "end": { - "$date": "2021-05-09T02:56:04.000Z" - }, - "events": [ - { - "uuid": "97dc7341-00a5-4323-b1e7-944f2dc3732f", - "start": { - "$date": "2021-05-09T02:28:58.000Z" - }, - "end": { - "$date": "2021-05-09T02:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "28b1c49e-f5d2-44a9-a387-52f20157a6b7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-09T02:52:25.000Z" - }, - "end": { - "$date": "2021-05-09T07:35:26.000Z" - }, - "events": [ - { - "uuid": "f25f4425-2c5d-4851-8b27-e3ff56d3db67", - "start": { - "$date": "2021-05-09T02:52:25.000Z" - }, - "end": { - "$date": "2021-05-09T07:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f9655dad-0293-44c9-b77a-92072fc20744", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-09T03:40:49.000Z" - }, - "end": { - "$date": "2021-05-09T06:20:08.000Z" - }, - "events": [ - { - "uuid": "f6ed33d0-1209-439f-8ef5-ff22474c33c1", - "start": { - "$date": "2021-05-09T03:40:49.000Z" - }, - "end": { - "$date": "2021-05-09T06:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "c0ad5ba9-9ecc-4152-af85-fe9da5f1aabc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-09T04:17:53.000Z" - }, - "end": { - "$date": "2021-05-09T05:35:17.000Z" - }, - "events": [ - { - "uuid": "6c7492ce-3c7e-4840-b991-ca4abfda0488", - "start": { - "$date": "2021-05-09T04:17:53.000Z" - }, - "end": { - "$date": "2021-05-09T05:35:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6f19a6c2-67f2-4da4-94c4-396888e16dc8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-09T04:27:16.000Z" - }, - "end": { - "$date": "2021-05-09T07:35:25.000Z" - }, - "events": [ - { - "uuid": "da458c27-75bd-4ce7-942f-ebc21ec74580", - "start": { - "$date": "2021-05-09T04:27:16.000Z" - }, - "end": { - "$date": "2021-05-09T07:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1cececdf-69ce-4bc7-b01a-3107c1f956ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T04:36:33.000Z" - }, - "end": { - "$date": "2021-05-09T06:21:50.000Z" - }, - "events": [ - { - "uuid": "262d70de-9a94-428c-8d3a-314a51b44789", - "start": { - "$date": "2021-05-09T04:36:33.000Z" - }, - "end": { - "$date": "2021-05-09T06:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ac0b2d66-a610-484e-ba08-b7bd4987e721", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-09T04:46:35.000Z" - }, - "end": { - "$date": "2021-05-09T05:18:18.000Z" - }, - "events": [ - { - "uuid": "4737e45f-a786-48ae-87bc-c282017c2339", - "start": { - "$date": "2021-05-09T04:46:35.000Z" - }, - "end": { - "$date": "2021-05-09T05:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "36ee5120-9261-49f9-a240-84eb788914b4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T05:16:40.000Z" - }, - "end": { - "$date": "2021-05-09T05:34:14.000Z" - }, - "events": [ - { - "uuid": "45cdf4e8-95f1-4df0-a3b3-a9bdff7c2f35", - "start": { - "$date": "2021-05-09T05:16:40.000Z" - }, - "end": { - "$date": "2021-05-09T05:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "103bc253-f5b2-4eb2-8cbe-624e975bb133", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-09T05:18:48.000Z" - }, - "end": { - "$date": "2021-05-09T05:28:41.000Z" - }, - "events": [ - { - "uuid": "ede913ed-1df4-41be-9123-cca883dc2e91", - "start": { - "$date": "2021-05-09T05:18:48.000Z" - }, - "end": { - "$date": "2021-05-09T05:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3d036a5-ee03-4dff-aaf9-a84a6b52405e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T05:24:46.000Z" - }, - "end": { - "$date": "2021-05-09T05:56:41.000Z" - }, - "events": [ - { - "uuid": "7e3dc0f8-6f22-4b0f-b265-233d446de6b7", - "start": { - "$date": "2021-05-09T05:24:46.000Z" - }, - "end": { - "$date": "2021-05-09T05:56:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "5af59d27-bb3a-4d89-816d-6844c3794a6b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-09T05:28:26.000Z" - }, - "end": { - "$date": "2021-05-09T07:56:00.000Z" - }, - "events": [ - { - "uuid": "beffed5f-6acd-4576-a0f7-1e1544fb0c7d", - "start": { - "$date": "2021-05-09T05:28:26.000Z" - }, - "end": { - "$date": "2021-05-09T07:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "17a09459-0e1c-452b-a8c4-8b1826c745cb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T05:37:46.000Z" - }, - "end": { - "$date": "2021-05-09T07:56:43.000Z" - }, - "events": [ - { - "uuid": "6732cc08-1a2c-4344-b859-54ec2dbc437a", - "start": { - "$date": "2021-05-09T05:37:46.000Z" - }, - "end": { - "$date": "2021-05-09T07:12:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2f654ac-1124-4bf9-81c0-b95b1c578225", - "start": { - "$date": "2021-05-09T07:12:46.000Z" - }, - "end": { - "$date": "2021-05-09T07:56:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "66916c85-f25a-4dd8-a06f-8292c82af92f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-09T06:23:44.000Z" - }, - "end": { - "$date": "2021-05-09T06:33:49.000Z" - }, - "events": [ - { - "uuid": "801fc84b-f2da-4311-b14a-99053d015d56", - "start": { - "$date": "2021-05-09T06:23:44.000Z" - }, - "end": { - "$date": "2021-05-09T06:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "1648d62d-7621-4229-b6cf-0dc933cc07d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T06:30:41.000Z" - }, - "end": { - "$date": "2021-05-09T06:35:51.000Z" - }, - "events": [ - { - "uuid": "b6022ecb-4b6a-4dc0-af7d-9c51a156a578", - "start": { - "$date": "2021-05-09T06:30:41.000Z" - }, - "end": { - "$date": "2021-05-09T06:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "647a77cd-737d-4137-bd46-cbbe83fd1711", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-09T06:35:00.000Z" - }, - "end": { - "$date": "2021-05-09T08:26:45.000Z" - }, - "events": [ - { - "uuid": "a237dbf9-6afc-44fc-85a0-07ce54b93c69", - "start": { - "$date": "2021-05-09T06:35:00.000Z" - }, - "end": { - "$date": "2021-05-09T08:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cf19fc4d-931d-4595-849d-6c9daeca8f8b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-09T07:58:52.000Z" - }, - "end": { - "$date": "2021-05-09T08:03:08.000Z" - }, - "events": [ - { - "uuid": "da67eba4-5aef-4364-b6f7-f7c2af519371", - "start": { - "$date": "2021-05-09T07:58:52.000Z" - }, - "end": { - "$date": "2021-05-09T08:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f1242bf-577c-42c9-8110-1e7d91c7b225", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T08:13:45.000Z" - }, - "end": { - "$date": "2021-05-09T08:43:47.000Z" - }, - "events": [ - { - "uuid": "07b5cb8a-6a47-42e9-b1f5-de0eeb45f064", - "start": { - "$date": "2021-05-09T08:13:45.000Z" - }, - "end": { - "$date": "2021-05-09T08:43:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0319e8a8-e4bc-43c1-8460-d894292b7f20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T08:45:19.000Z" - }, - "end": { - "$date": "2021-05-09T09:18:53.000Z" - }, - "events": [ - { - "uuid": "15fd7a92-98ca-4635-bd34-cb4645e81840", - "start": { - "$date": "2021-05-09T08:45:19.000Z" - }, - "end": { - "$date": "2021-05-09T09:18:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "58004ad0-a2ac-404f-878b-65700a13d285", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T14:10:16.000Z" - }, - "end": { - "$date": "2021-05-09T14:41:17.000Z" - }, - "events": [ - { - "uuid": "cff32a94-1202-4c9f-8fb5-aadc4222a727", - "start": { - "$date": "2021-05-09T14:10:16.000Z" - }, - "end": { - "$date": "2021-05-09T14:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "091696eb-ee79-447b-a6dd-5a4a05cbebcf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T14:55:45.000Z" - }, - "end": { - "$date": "2021-05-09T15:04:16.000Z" - }, - "events": [ - { - "uuid": "f13241cf-02a6-4a91-a628-365902085b3f", - "start": { - "$date": "2021-05-09T14:55:45.000Z" - }, - "end": { - "$date": "2021-05-09T15:04:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "1d5a6de5-5594-4669-b211-3cf1e4ac7236", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T15:05:01.000Z" - }, - "end": { - "$date": "2021-05-09T15:18:01.000Z" - }, - "events": [ - { - "uuid": "90e878a7-aa4c-4efa-a96c-0b75e404c59e", - "start": { - "$date": "2021-05-09T15:05:01.000Z" - }, - "end": { - "$date": "2021-05-09T15:18:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5ab8693b-123c-41c9-93ef-e9a76117d0b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T15:20:17.000Z" - }, - "end": { - "$date": "2021-05-09T15:50:43.000Z" - }, - "events": [ - { - "uuid": "68fd881b-ab06-40fd-a073-691ac406f266", - "start": { - "$date": "2021-05-09T15:20:17.000Z" - }, - "end": { - "$date": "2021-05-09T15:50:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3cd28999-f7c9-482a-807a-d1c243d88e27", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T18:10:04.000Z" - }, - "end": { - "$date": "2021-05-09T18:10:14.000Z" - }, - "events": [ - { - "uuid": "c802e221-78d8-44cb-beba-a34ef234c470", - "start": { - "$date": "2021-05-09T18:10:04.000Z" - }, - "end": { - "$date": "2021-05-09T18:35:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5059bc75-6490-4e63-a618-61825de3c61b", - "start": { - "$date": "2021-05-09T18:35:04.000Z" - }, - "end": { - "$date": "2021-05-09T18:45:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db7fd1ad-8327-42c6-9c6e-c9fcc3526e1c", - "start": { - "$date": "2021-05-09T18:45:04.000Z" - }, - "end": { - "$date": "2021-05-09T18:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "34a3d69d-b09f-43e0-b137-08ddffc3274a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T15:51:09.000Z" - }, - "end": { - "$date": "2021-05-09T15:54:49.000Z" - }, - "events": [ - { - "uuid": "1473ed70-3bac-4757-a125-0475b1d58bca", - "start": { - "$date": "2021-05-09T15:51:09.000Z" - }, - "end": { - "$date": "2021-05-09T15:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3e604da5-96c4-4c08-8ae7-ffcfc3d46c1a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T15:54:45.000Z" - }, - "end": { - "$date": "2021-05-09T16:43:52.000Z" - }, - "events": [ - { - "uuid": "a1a1df70-d0b2-4a13-afdb-0dcc3572ddb1", - "start": { - "$date": "2021-05-09T15:54:45.000Z" - }, - "end": { - "$date": "2021-05-09T16:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", - "uuid": "1c10d13c-4f84-4184-a5de-b1fa939e733b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T15:56:24.000Z" - }, - "end": { - "$date": "2021-05-09T16:30:00.000Z" - }, - "events": [ - { - "uuid": "7887a454-b53f-4185-9ffe-e562cdf651fe", - "start": { - "$date": "2021-05-09T15:56:24.000Z" - }, - "end": { - "$date": "2021-05-09T16:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d63ab244-d7be-40b6-be33-4d04d1c9e969", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-09T18:53:46.000Z" - }, - "end": { - "$date": "2021-05-09T21:17:04.000Z" - }, - "events": [ - { - "uuid": "f894356f-03a8-4279-be3b-7349f31f5cfe", - "start": { - "$date": "2021-05-09T18:53:46.000Z" - }, - "end": { - "$date": "2021-05-09T19:24:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f503d23-8571-4653-b6b3-ebba74161905", - "start": { - "$date": "2021-05-09T19:24:46.000Z" - }, - "end": { - "$date": "2021-05-09T20:17:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b2c30db0-63d7-4358-bfe0-26e282487407", - "start": { - "$date": "2021-05-09T20:17:46.000Z" - }, - "end": { - "$date": "2021-05-09T23:22:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7da46c24-fecc-4568-bd05-ea4a5a5d4166", - "start": { - "$date": "2021-05-09T23:22:46.000Z" - }, - "end": { - "$date": "2021-05-09T23:53:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "207f6301-d2f3-4b17-b08f-238e89f4ec45", - "start": { - "$date": "2021-05-09T23:53:46.000Z" - }, - "end": { - "$date": "2021-05-09T21:17:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfab06dc-92b6-484c-95c3-e11831ad5889", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T16:44:50.000Z" - }, - "end": { - "$date": "2021-05-09T17:02:14.000Z" - }, - "events": [ - { - "uuid": "ed31006c-90a5-4e44-93a7-39346a2258a1", - "start": { - "$date": "2021-05-09T16:44:50.000Z" - }, - "end": { - "$date": "2021-05-09T17:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fcdd4026-8d7e-4e38-836d-b98f8cc69402", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T17:05:48.000Z" - }, - "end": { - "$date": "2021-05-09T17:15:33.000Z" - }, - "events": [ - { - "uuid": "b92668b5-a075-49f2-8ace-8d9accc2ba22", - "start": { - "$date": "2021-05-09T17:05:48.000Z" - }, - "end": { - "$date": "2021-05-09T17:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1c9542a3-9e7b-42a7-963f-857019ee8a38", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T17:15:48.000Z" - }, - "end": { - "$date": "2021-05-09T17:41:20.000Z" - }, - "events": [ - { - "uuid": "618d7f44-56ad-4f46-9dbf-2844d08b0fe7", - "start": { - "$date": "2021-05-09T17:15:48.000Z" - }, - "end": { - "$date": "2021-05-09T17:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "775af28c-5856-49bc-a493-c06bb57d80bb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T18:00:24.000Z" - }, - "end": { - "$date": "2021-05-09T18:59:07.000Z" - }, - "events": [ - { - "uuid": "aea6f490-7f28-48bc-a116-426cec4cf8b1", - "start": { - "$date": "2021-05-09T18:00:24.000Z" - }, - "end": { - "$date": "2021-05-09T18:59:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "648203a6-9871-4449-86c7-a0d8808ab19d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T18:14:05.000Z" - }, - "end": { - "$date": "2021-05-09T19:05:09.000Z" - }, - "events": [ - { - "uuid": "e0c8b355-0d00-4729-aff6-e2dc35a13516", - "start": { - "$date": "2021-05-09T18:14:05.000Z" - }, - "end": { - "$date": "2021-05-09T19:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b1ed78b-ea20-49ee-aee1-5beafd3c397e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T19:06:49.000Z" - }, - "end": { - "$date": "2021-05-09T19:22:50.000Z" - }, - "events": [ - { - "uuid": "3a213617-5faa-4181-a7c7-13e36a5ffc14", - "start": { - "$date": "2021-05-09T19:06:49.000Z" - }, - "end": { - "$date": "2021-05-09T19:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3d8877a8-93c8-49b4-b865-c4517ae75696", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T19:19:19.000Z" - }, - "end": { - "$date": "2021-05-09T19:27:19.000Z" - }, - "events": [ - { - "uuid": "b9571395-a5f5-422c-84fa-6845cad573e6", - "start": { - "$date": "2021-05-09T19:19:19.000Z" - }, - "end": { - "$date": "2021-05-09T19:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a62ff79d-0577-4521-9a53-6c8412c7570b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-09T19:21:01.000Z" - }, - "end": { - "$date": "2021-05-09T20:20:47.000Z" - }, - "events": [ - { - "uuid": "8664ce6c-635c-498d-b27b-880c9ddb85a8", - "start": { - "$date": "2021-05-09T19:21:01.000Z" - }, - "end": { - "$date": "2021-05-09T20:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06ea041f-2fec-4ed2-9bff-f9b386792468", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T19:24:40.000Z" - }, - "end": { - "$date": "2021-05-09T19:42:51.000Z" - }, - "events": [ - { - "uuid": "93d56c84-9d43-4100-8b69-744d9cf3c205", - "start": { - "$date": "2021-05-09T19:24:40.000Z" - }, - "end": { - "$date": "2021-05-09T19:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "040388a1-128a-4418-9fa2-68984c4422bf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T19:27:40.000Z" - }, - "end": { - "$date": "2021-05-09T20:17:22.000Z" - }, - "events": [ - { - "uuid": "eae0cd1e-f484-4872-863e-0fd4d16d1cbf", - "start": { - "$date": "2021-05-09T19:27:40.000Z" - }, - "end": { - "$date": "2021-05-09T19:59:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa372038-ff47-4e56-89a6-ea07d27af3a6", - "start": { - "$date": "2021-05-09T19:59:40.000Z" - }, - "end": { - "$date": "2021-05-09T20:03:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f738f5a3-4b3e-4e27-9196-d0bb833308b6", - "start": { - "$date": "2021-05-09T20:03:40.000Z" - }, - "end": { - "$date": "2021-05-09T20:14:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d0848f4-41d4-48bf-b99e-b254a19cd385", - "start": { - "$date": "2021-05-09T20:14:40.000Z" - }, - "end": { - "$date": "2021-05-09T20:17:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a7c4e9a-ae22-4e77-8d30-5a1cb3119f3a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T19:45:06.000Z" - }, - "end": { - "$date": "2021-05-09T20:04:02.000Z" - }, - "events": [ - { - "uuid": "5717fc9c-1f88-426f-ac79-e0d01cbc30b2", - "start": { - "$date": "2021-05-09T19:45:06.000Z" - }, - "end": { - "$date": "2021-05-09T20:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9c4f3843-a5c5-43e5-8d16-ffb61bdf1b05", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-09T19:47:07.000Z" - }, - "end": { - "$date": "2021-05-09T20:52:15.000Z" - }, - "events": [ - { - "uuid": "b092b59a-aca6-43b2-abef-92dcca269104", - "start": { - "$date": "2021-05-09T19:47:07.000Z" - }, - "end": { - "$date": "2021-05-09T20:52:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d5858fa3-a156-4511-ae9d-6e6751b1cd51", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-09T20:08:37.000Z" - }, - "end": { - "$date": "2021-05-09T20:24:34.000Z" - }, - "events": [ - { - "uuid": "6900af22-d8ee-48de-998a-4424f3cc6bcf", - "start": { - "$date": "2021-05-09T20:08:37.000Z" - }, - "end": { - "$date": "2021-05-09T20:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dbe58796-aa38-456d-bbeb-f3dfd829d5c3", - "uuid": "99dfac6d-ace3-4ecc-bd8e-088a3925fdbd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-09T20:18:02.000Z" - }, - "end": { - "$date": "2021-05-10T02:25:19.000Z" - }, - "events": [ - { - "uuid": "d58d1cb6-f012-415c-b034-2787d8aade03", - "start": { - "$date": "2021-05-09T20:18:02.000Z" - }, - "end": { - "$date": "2021-05-09T23:19:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cebfb1e9-acb6-40d1-bd4a-a14b93bbda98", - "start": { - "$date": "2021-05-09T23:19:02.000Z" - }, - "end": { - "$date": "2021-05-10T00:43:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61c0fbb3-6348-4f6c-93ea-f69149119c1f", - "start": { - "$date": "2021-05-10T00:43:02.000Z" - }, - "end": { - "$date": "2021-05-10T02:23:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9770016a-b974-40b1-93b2-a8d6b3b59b90", - "start": { - "$date": "2021-05-10T02:23:02.000Z" - }, - "end": { - "$date": "2021-05-10T02:24:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e3b6a37-6d61-46cc-a998-d6d110d2745a", - "start": { - "$date": "2021-05-10T02:24:02.000Z" - }, - "end": { - "$date": "2021-05-10T02:25:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "75330d63-62c6-45e5-a774-ae0b3f267e87", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-09T20:45:57.000Z" - }, - "end": { - "$date": "2021-05-10T00:40:06.000Z" - }, - "events": [ - { - "uuid": "fe00aeb6-20c4-4526-86ae-b5e5aa820a53", - "start": { - "$date": "2021-05-09T20:45:57.000Z" - }, - "end": { - "$date": "2021-05-09T21:50:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6c5cf06-4dd4-4d69-a1ef-6a14ac8e4f05", - "start": { - "$date": "2021-05-09T21:50:57.000Z" - }, - "end": { - "$date": "2021-05-09T22:33:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6926fac-af6c-4cc1-a3be-672405b69fd3", - "start": { - "$date": "2021-05-09T22:33:57.000Z" - }, - "end": { - "$date": "2021-05-09T23:16:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "320ff9cf-da23-48de-8b65-0a322fd36b51", - "start": { - "$date": "2021-05-09T23:16:57.000Z" - }, - "end": { - "$date": "2021-05-09T23:17:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ab12945b-aafa-4a6b-a330-79a5122e2864", - "start": { - "$date": "2021-05-09T23:17:57.000Z" - }, - "end": { - "$date": "2021-05-09T23:20:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f2593eb-4396-4839-a272-11bafb799e4a", - "start": { - "$date": "2021-05-09T23:20:57.000Z" - }, - "end": { - "$date": "2021-05-09T23:37:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc8b316b-86ca-47ee-8e30-13b2ca14a281", - "start": { - "$date": "2021-05-09T23:37:57.000Z" - }, - "end": { - "$date": "2021-05-09T23:38:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f89ab55-5691-4b08-937a-f0ff540e3149", - "start": { - "$date": "2021-05-09T23:38:57.000Z" - }, - "end": { - "$date": "2021-05-10T00:31:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1d9395e4-32b3-4be1-b03d-a5e56cbed991", - "start": { - "$date": "2021-05-10T00:31:57.000Z" - }, - "end": { - "$date": "2021-05-10T00:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56faecd4-a828-456f-8a1c-cdb0e9c13a62", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T20:53:57.000Z" - }, - "end": { - "$date": "2021-05-09T21:19:03.000Z" - }, - "events": [ - { - "uuid": "cc0d268f-2e46-43d9-98fa-1db37a5d484d", - "start": { - "$date": "2021-05-09T20:53:57.000Z" - }, - "end": { - "$date": "2021-05-09T21:19:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fccad133-0774-46bf-ba53-39867cf15972", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T21:01:34.000Z" - }, - "end": { - "$date": "2021-05-09T21:10:24.000Z" - }, - "events": [ - { - "uuid": "b1f8baa4-4c75-4ad9-94c6-014b44ab769e", - "start": { - "$date": "2021-05-09T21:01:34.000Z" - }, - "end": { - "$date": "2021-05-09T21:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dff60b3b-ea2b-43ac-aa66-e824d3b4e62c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T21:10:30.000Z" - }, - "end": { - "$date": "2021-05-09T21:41:57.000Z" - }, - "events": [ - { - "uuid": "0cb98ab5-551b-4cb7-97f8-db086938d460", - "start": { - "$date": "2021-05-09T21:10:30.000Z" - }, - "end": { - "$date": "2021-05-09T21:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdd23823-70d9-448f-8563-9de5fc51a340", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T03:07:47.000Z" - }, - "end": { - "$date": "2021-05-10T05:26:58.000Z" - }, - "events": [ - { - "uuid": "78fdb6ee-3031-400a-adf6-17c97c19fa2b", - "start": { - "$date": "2021-05-10T03:07:47.000Z" - }, - "end": { - "$date": "2021-05-10T05:16:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e05077d-4adb-4d32-b52f-61672fdc2f0d", - "start": { - "$date": "2021-05-10T05:16:47.000Z" - }, - "end": { - "$date": "2021-05-10T05:50:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f67f2b94-06ba-462c-9dd0-804547127a88", - "start": { - "$date": "2021-05-10T05:50:47.000Z" - }, - "end": { - "$date": "2021-05-10T05:54:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64f7ced5-eb4c-4d19-80e9-135048885db0", - "start": { - "$date": "2021-05-10T05:54:47.000Z" - }, - "end": { - "$date": "2021-05-10T06:28:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb4013ce-40ec-4caf-912d-d8363f52dbc2", - "start": { - "$date": "2021-05-10T06:28:47.000Z" - }, - "end": { - "$date": "2021-05-10T06:39:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e778b91d-8be4-477e-bc2f-4beb1f00a4bd", - "start": { - "$date": "2021-05-10T06:39:47.000Z" - }, - "end": { - "$date": "2021-05-10T07:05:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11f71731-48eb-425a-9087-1568c63c0a88", - "start": { - "$date": "2021-05-10T07:05:47.000Z" - }, - "end": { - "$date": "2021-05-10T08:34:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8d2673b-57de-4419-ac27-59972930b313", - "start": { - "$date": "2021-05-10T08:34:47.000Z" - }, - "end": { - "$date": "2021-05-10T08:41:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f8e16ee-29c9-4c75-8c14-d86b6e79635a", - "start": { - "$date": "2021-05-10T08:41:47.000Z" - }, - "end": { - "$date": "2021-05-10T05:26:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "733ab998-69b8-440f-8b46-2eddca7a00c7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T21:24:39.000Z" - }, - "end": { - "$date": "2021-05-09T22:01:28.000Z" - }, - "events": [ - { - "uuid": "3fecd94a-73f6-4791-845b-54c417ef9c62", - "start": { - "$date": "2021-05-09T21:24:39.000Z" - }, - "end": { - "$date": "2021-05-09T22:01:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", - "uuid": "cab01bed-31f2-4f44-9363-4c819f4f03f0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-09T21:42:17.000Z" - }, - "end": { - "$date": "2021-05-09T23:12:42.000Z" - }, - "events": [ - { - "uuid": "295f2620-1808-49ab-af74-bf02c6d2ce7c", - "start": { - "$date": "2021-05-09T21:42:17.000Z" - }, - "end": { - "$date": "2021-05-09T23:12:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efdd4ce5-f332-4934-bbcf-c4c67cf6324a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T22:12:03.000Z" - }, - "end": { - "$date": "2021-05-09T22:29:55.000Z" - }, - "events": [ - { - "uuid": "d14c36ee-1f73-4078-b48e-033612965dad", - "start": { - "$date": "2021-05-09T22:12:03.000Z" - }, - "end": { - "$date": "2021-05-09T22:29:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87e268c5-f128-4d21-a59e-de08e19e91bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T22:35:41.000Z" - }, - "end": { - "$date": "2021-05-09T23:06:37.000Z" - }, - "events": [ - { - "uuid": "a53a729e-527e-4d79-81d3-303225752f19", - "start": { - "$date": "2021-05-09T22:35:41.000Z" - }, - "end": { - "$date": "2021-05-09T23:06:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c11a5523-ab82-4b99-9da1-ef1dbb971119", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T23:11:58.000Z" - }, - "end": { - "$date": "2021-05-09T23:41:22.000Z" - }, - "events": [ - { - "uuid": "a9932992-7e0c-4c4a-a55b-162b54c0d96b", - "start": { - "$date": "2021-05-09T23:11:58.000Z" - }, - "end": { - "$date": "2021-05-09T23:41:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91bf7de2-5340-43af-baed-3a5727389dfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-09T23:47:17.000Z" - }, - "end": { - "$date": "2021-05-10T00:13:39.000Z" - }, - "events": [ - { - "uuid": "aede9ab4-828d-4a5b-a9f5-25959f274a11", - "start": { - "$date": "2021-05-09T23:47:17.000Z" - }, - "end": { - "$date": "2021-05-10T00:13:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9deffd3b-fbf6-460b-9f99-19dfa91233fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-10T01:15:55.000Z" - }, - "end": { - "$date": "2021-05-10T01:48:59.000Z" - }, - "events": [ - { - "uuid": "fdcac9da-3f0d-4b28-8832-f2d4537a8c33", - "start": { - "$date": "2021-05-10T01:15:55.000Z" - }, - "end": { - "$date": "2021-05-10T01:48:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "01975009-8466-4b1d-8107-9269517c22be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T01:17:30.000Z" - }, - "end": { - "$date": "2021-05-10T01:18:30.000Z" - }, - "events": [ - { - "uuid": "61c3b10f-ca3a-4be1-8428-2ed344fba53b", - "start": { - "$date": "2021-05-10T01:17:30.000Z" - }, - "end": { - "$date": "2021-05-10T01:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "60aecef2-9c12-4a93-a97c-baf4bef0eb6c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-10T01:18:52.000Z" - }, - "end": { - "$date": "2021-05-10T02:00:58.000Z" - }, - "events": [ - { - "uuid": "8da31637-cfa4-4feb-9533-f2dfb8637a8d", - "start": { - "$date": "2021-05-10T01:18:52.000Z" - }, - "end": { - "$date": "2021-05-10T02:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "f9d58836-dabb-4014-91d6-494aa95122b1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T01:19:25.000Z" - }, - "end": { - "$date": "2021-05-10T01:22:55.000Z" - }, - "events": [ - { - "uuid": "fc6ef440-4eca-4dce-af0e-e9ce6ad32d6f", - "start": { - "$date": "2021-05-10T01:19:25.000Z" - }, - "end": { - "$date": "2021-05-10T01:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3a331883-6f8c-415a-87ad-a2f97acbbfaa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-10T01:23:10.000Z" - }, - "end": { - "$date": "2021-05-10T03:40:29.000Z" - }, - "events": [ - { - "uuid": "ba6c450a-fcd9-4095-a019-a09084855dff", - "start": { - "$date": "2021-05-10T01:23:10.000Z" - }, - "end": { - "$date": "2021-05-10T03:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "fdff8b84-bd44-49e0-87c2-5764453b2e88", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T01:23:12.000Z" - }, - "end": { - "$date": "2021-05-10T01:24:27.000Z" - }, - "events": [ - { - "uuid": "2c602633-6f79-4c47-8a3c-82ad6ee55ee8", - "start": { - "$date": "2021-05-10T01:23:12.000Z" - }, - "end": { - "$date": "2021-05-10T01:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2740ffb1-1515-4dd7-95a8-e2e98e388776", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T01:24:46.000Z" - }, - "end": { - "$date": "2021-05-10T01:56:19.000Z" - }, - "events": [ - { - "uuid": "f0749f04-9070-4aae-b2db-801c1068ddc6", - "start": { - "$date": "2021-05-10T01:24:46.000Z" - }, - "end": { - "$date": "2021-05-10T01:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6f0c439a-a5a0-48c5-9370-59acff7cb45e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-10T01:37:33.000Z" - }, - "end": { - "$date": "2021-05-10T01:44:13.000Z" - }, - "events": [ - { - "uuid": "c1ea1706-2657-4422-93cc-bba666096234", - "start": { - "$date": "2021-05-10T01:37:33.000Z" - }, - "end": { - "$date": "2021-05-10T01:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c24b6637-2ee6-4374-8baf-338e577bcaf1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-10T01:47:13.000Z" - }, - "end": { - "$date": "2021-05-10T02:05:55.000Z" - }, - "events": [ - { - "uuid": "9c87b673-ff9d-4558-ab20-348f42a04a60", - "start": { - "$date": "2021-05-10T01:47:13.000Z" - }, - "end": { - "$date": "2021-05-10T02:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b5a8b819-f3fd-4449-96b4-897421cf004e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T01:56:39.000Z" - }, - "end": { - "$date": "2021-05-10T03:40:25.000Z" - }, - "events": [ - { - "uuid": "e27a6f0a-54eb-42ed-ba1f-ccee0aa9225f", - "start": { - "$date": "2021-05-10T01:56:39.000Z" - }, - "end": { - "$date": "2021-05-10T03:40:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2f8754a1-0c02-4bc7-bee3-8dab692bfd81", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-10T02:05:15.000Z" - }, - "end": { - "$date": "2021-05-10T05:12:27.000Z" - }, - "events": [ - { - "uuid": "f3e12a03-516a-4963-90a1-11704984696a", - "start": { - "$date": "2021-05-10T02:05:15.000Z" - }, - "end": { - "$date": "2021-05-10T05:12:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c2dde297-6143-49cb-a7d7-3aced4515944", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-10T02:12:06.000Z" - }, - "end": { - "$date": "2021-05-10T03:40:08.000Z" - }, - "events": [ - { - "uuid": "6e37b974-8f52-47fe-b7db-3ea262480306", - "start": { - "$date": "2021-05-10T02:12:06.000Z" - }, - "end": { - "$date": "2021-05-10T03:40:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "313aea1e-b625-4b39-a77d-392116baf680", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-10T02:15:34.000Z" - }, - "end": { - "$date": "2021-05-10T05:27:23.000Z" - }, - "events": [ - { - "uuid": "be9aa826-aed3-46a3-946a-da2a695fc731", - "start": { - "$date": "2021-05-10T02:15:34.000Z" - }, - "end": { - "$date": "2021-05-10T05:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "e24e0e0b-041a-4324-ad2d-bcf5420a9a78", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-10T03:23:34.000Z" - }, - "end": { - "$date": "2021-05-10T03:45:11.000Z" - }, - "events": [ - { - "uuid": "19e6cecf-fb04-447c-8804-01b89e9ed4ad", - "start": { - "$date": "2021-05-10T03:23:34.000Z" - }, - "end": { - "$date": "2021-05-10T03:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "12ef1a48-8e95-4b7c-8859-2b60ea9da53e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-10T03:40:13.000Z" - }, - "end": { - "$date": "2021-05-10T04:24:24.000Z" - }, - "events": [ - { - "uuid": "a7893908-1d81-4851-b539-a4c31e01af21", - "start": { - "$date": "2021-05-10T03:40:13.000Z" - }, - "end": { - "$date": "2021-05-10T04:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c79f740b-2b9b-4686-9603-b8dc8bffe4b1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T03:40:55.000Z" - }, - "end": { - "$date": "2021-05-10T03:59:01.000Z" - }, - "events": [ - { - "uuid": "6d329b6e-397b-4021-bffd-1d07f5585554", - "start": { - "$date": "2021-05-10T03:40:55.000Z" - }, - "end": { - "$date": "2021-05-10T03:59:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "0addcf39-cdb9-4fcc-91e2-bfeb03bfa080", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-10T03:45:22.000Z" - }, - "end": { - "$date": "2021-05-10T06:05:27.000Z" - }, - "events": [ - { - "uuid": "c1ceeecb-f016-45c4-bbc4-c31f6ef98376", - "start": { - "$date": "2021-05-10T03:45:22.000Z" - }, - "end": { - "$date": "2021-05-10T06:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "9b58bde1-2dab-4e9e-874c-3a3fe09f6099", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T04:04:47.000Z" - }, - "end": { - "$date": "2021-05-10T04:21:52.000Z" - }, - "events": [ - { - "uuid": "421002ed-ab8d-4f43-8e86-7343a3914da9", - "start": { - "$date": "2021-05-10T04:04:47.000Z" - }, - "end": { - "$date": "2021-05-10T04:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fb01096d-c203-464e-9ae1-9e2dac9949fc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-10T04:07:32.000Z" - }, - "end": { - "$date": "2021-05-10T04:47:14.000Z" - }, - "events": [ - { - "uuid": "205041b9-2ac0-4336-ac6e-33bd712c303d", - "start": { - "$date": "2021-05-10T04:07:32.000Z" - }, - "end": { - "$date": "2021-05-10T04:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a6e74dc8-6a13-4aa8-a28e-520f4f8b81b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T04:24:33.000Z" - }, - "end": { - "$date": "2021-05-10T04:48:26.000Z" - }, - "events": [ - { - "uuid": "592e2234-0a40-48f3-92f6-e9b99f0e0d6f", - "start": { - "$date": "2021-05-10T04:24:33.000Z" - }, - "end": { - "$date": "2021-05-10T04:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c30dcee-6979-4e5f-af4e-fea75928ac49", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-10T04:50:43.000Z" - }, - "end": { - "$date": "2021-05-10T05:30:02.000Z" - }, - "events": [ - { - "uuid": "fddce7d5-810f-43d8-8312-af68902e4961", - "start": { - "$date": "2021-05-10T04:50:43.000Z" - }, - "end": { - "$date": "2021-05-10T05:30:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d3eed64c-18fc-425a-9067-e746c9b93d7e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-10T04:48:51.000Z" - }, - "end": { - "$date": "2021-05-10T04:55:06.000Z" - }, - "events": [ - { - "uuid": "f32c1196-3c2b-4b3a-ac51-81cfd59ff93e", - "start": { - "$date": "2021-05-10T04:48:51.000Z" - }, - "end": { - "$date": "2021-05-10T04:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "080f74e2-b9bb-405a-9cdb-5fded920de4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T04:49:15.000Z" - }, - "end": { - "$date": "2021-05-10T04:51:41.000Z" - }, - "events": [ - { - "uuid": "5a321b06-0550-4aae-8900-b39a6dcdbd32", - "start": { - "$date": "2021-05-10T04:49:15.000Z" - }, - "end": { - "$date": "2021-05-10T04:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d87ceebb-bf06-4e60-afca-ede738a73a63", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T04:51:51.000Z" - }, - "end": { - "$date": "2021-05-10T04:55:02.000Z" - }, - "events": [ - { - "uuid": "4f4d51ec-e1cc-485e-9301-0e1660de4d38", - "start": { - "$date": "2021-05-10T04:51:51.000Z" - }, - "end": { - "$date": "2021-05-10T04:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3a64a3c0-590f-49fb-84ec-d55981e29361", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-10T05:14:08.000Z" - }, - "end": { - "$date": "2021-05-10T05:27:13.000Z" - }, - "events": [ - { - "uuid": "b4fed750-cef2-4e5d-a58d-b8a3266bd018", - "start": { - "$date": "2021-05-10T05:14:08.000Z" - }, - "end": { - "$date": "2021-05-10T05:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2cc74b18-b14a-4e64-a13f-d2c9e625432b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-10T05:15:08.000Z" - }, - "end": { - "$date": "2021-05-10T05:43:24.000Z" - }, - "events": [ - { - "uuid": "04f12a8a-6d5e-451e-a66d-e88354b8878d", - "start": { - "$date": "2021-05-10T05:15:08.000Z" - }, - "end": { - "$date": "2021-05-10T05:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "70d949bd-4d7c-42ff-9122-6a7f6145b12c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-10T14:39:48.000Z" - }, - "end": { - "$date": "2021-05-10T17:47:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-05-10T14:39:48.000Z" - }, - "end": { - "$date": "2021-05-10T17:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7fdff42c-ac09-4e14-9917-d12d7804c449", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T15:11:05.000Z" - }, - "end": { - "$date": "2021-05-10T15:54:11.000Z" - }, - "events": [ - { - "uuid": "65603c33-f5ea-40c3-bdbf-8ca5a339145d", - "start": { - "$date": "2021-05-10T15:11:05.000Z" - }, - "end": { - "$date": "2021-05-10T15:54:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "475853fe-f257-4cc2-909f-e8809ef07b73", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-10T15:34:02.000Z" - }, - "end": { - "$date": "2021-05-10T16:22:44.000Z" - }, - "events": [ - { - "uuid": "13a6c763-3c82-42b5-9fd0-2932ccac4462", - "start": { - "$date": "2021-05-10T15:34:02.000Z" - }, - "end": { - "$date": "2021-05-10T16:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "110dc580-243d-4202-a750-ada27f17ece0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T16:43:48.000Z" - }, - "end": { - "$date": "2021-05-10T17:20:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-05-10T16:43:48.000Z" - }, - "end": { - "$date": "2021-05-10T17:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6ca1a813-d7bc-4c27-a441-24ca3d3ca258", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-10T18:18:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:20:35.000Z" - }, - "events": [ - { - "uuid": "1d925d74-3eb2-406b-911f-c98b5ef73460", - "start": { - "$date": "2021-05-10T18:18:15.000Z" - }, - "end": { - "$date": "2021-05-10T18:30:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc492def-bf9d-416a-ae89-2c133b38fd98", - "start": { - "$date": "2021-05-10T18:30:15.000Z" - }, - "end": { - "$date": "2021-05-10T18:31:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e387edf-cf6d-48f7-b158-ba656724eb77", - "start": { - "$date": "2021-05-10T18:31:15.000Z" - }, - "end": { - "$date": "2021-05-10T18:34:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad2a4013-961d-4864-b48e-025172e03fcd", - "start": { - "$date": "2021-05-10T18:34:15.000Z" - }, - "end": { - "$date": "2021-05-10T18:43:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a60facaa-3aa4-4f4c-8689-f69445fade7e", - "start": { - "$date": "2021-05-10T18:43:15.000Z" - }, - "end": { - "$date": "2021-05-10T18:47:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ffd2773-346d-48ab-830c-4c9dedc7d5ea", - "start": { - "$date": "2021-05-10T18:47:15.000Z" - }, - "end": { - "$date": "2021-05-10T19:03:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b59c095-e2b0-4b89-a45c-ec91851f49bc", - "start": { - "$date": "2021-05-10T19:03:15.000Z" - }, - "end": { - "$date": "2021-05-10T19:05:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0675138-a55f-402a-94fb-404857b75ddf", - "start": { - "$date": "2021-05-10T19:05:15.000Z" - }, - "end": { - "$date": "2021-05-10T19:12:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6f9b2e2d-7d1b-4da4-bdd2-a76e30e487b0", - "start": { - "$date": "2021-05-10T19:12:15.000Z" - }, - "end": { - "$date": "2021-05-10T19:14:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb8f2f1a-e32a-432f-bfed-927d3a4083ce", - "start": { - "$date": "2021-05-10T19:14:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:30:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32b6c0ec-ba1a-44e0-b192-d29fc698ae0c", - "start": { - "$date": "2021-05-10T21:30:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:36:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08f3db92-a811-4e94-826c-ddafd78a274f", - "start": { - "$date": "2021-05-10T21:36:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:38:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c7c22c7-294a-4c06-bdde-38103fa1267e", - "start": { - "$date": "2021-05-10T21:38:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:40:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f924286d-2459-4b62-a7d6-aee689a01155", - "start": { - "$date": "2021-05-10T21:40:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:52:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b19f507-52e6-44b9-8a2b-c9c7dcf94e39", - "start": { - "$date": "2021-05-10T21:52:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:55:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "34d5e2d7-368e-4fbd-9a89-5a9c7cc8f212", - "start": { - "$date": "2021-05-10T21:55:15.000Z" - }, - "end": { - "$date": "2021-05-10T21:57:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "51588271-3c06-492b-b844-e795525ef623", - "start": { - "$date": "2021-05-10T21:57:15.000Z" - }, - "end": { - "$date": "2021-05-10T22:05:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2b1ff958-75d7-43de-a7ba-160b8dbf0f75", - "start": { - "$date": "2021-05-10T22:05:15.000Z" - }, - "end": { - "$date": "2021-05-10T22:51:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "560536a3-29a9-4175-9b46-9d4b9c1cc9ad", - "start": { - "$date": "2021-05-10T22:51:15.000Z" - }, - "end": { - "$date": "2021-05-10T22:54:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6696dce-7275-4b76-99b4-ffc174ea9434", - "start": { - "$date": "2021-05-10T22:54:15.000Z" - }, - "end": { - "$date": "2021-05-10T23:14:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bbb90d32-905c-4b9b-9c5a-3d0b66394bff", - "start": { - "$date": "2021-05-10T23:14:15.000Z" - }, - "end": { - "$date": "2021-05-10T23:17:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f85093e7-76e6-4f99-9713-92d650a811c4", - "start": { - "$date": "2021-05-10T23:17:15.000Z" - }, - "end": { - "$date": "2021-05-10T23:38:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0cec778-362c-4cb4-8ab2-ac1f0555cd03", - "start": { - "$date": "2021-05-10T23:38:15.000Z" - }, - "end": { - "$date": "2021-05-10T23:42:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "198755ba-18b7-4ca1-b687-671e5a347bc8", - "start": { - "$date": "2021-05-10T23:42:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:00:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b8aefed-baee-437b-b3bc-cf1e5b339776", - "start": { - "$date": "2021-05-11T00:00:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:08:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5817a822-2675-481f-b5a6-67562913ee44", - "start": { - "$date": "2021-05-11T00:08:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:09:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0f6116aa-2c9c-4b1b-b8e3-1ce01ee6ddbf", - "start": { - "$date": "2021-05-11T00:09:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:11:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73892211-3f2c-431e-9d35-aade12ab2211", - "start": { - "$date": "2021-05-11T00:11:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:12:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1796a167-01c5-499b-8590-4295007e9350", - "start": { - "$date": "2021-05-11T00:12:15.000Z" - }, - "end": { - "$date": "2021-05-11T00:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4389c19-12f7-4c4e-a751-05854df7424d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T18:21:54.000Z" - }, - "end": { - "$date": "2021-05-10T19:01:57.000Z" - }, - "events": [ - { - "uuid": "6bcf2bbf-11a6-4731-849d-11ffb79ca5fb", - "start": { - "$date": "2021-05-10T18:21:54.000Z" - }, - "end": { - "$date": "2021-05-10T19:01:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "16ad43be-73f7-4a97-bc31-dd2f42c1a9c1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-10T18:28:58.000Z" - }, - "end": { - "$date": "2021-05-10T18:31:08.000Z" - }, - "events": [ - { - "uuid": "4ebec844-e9a1-4b5e-aec4-109628551e7f", - "start": { - "$date": "2021-05-10T18:28:58.000Z" - }, - "end": { - "$date": "2021-05-10T18:31:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b78687d2-5be7-4564-ba37-333a998a9e04", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-10T19:27:19.000Z" - }, - "end": { - "$date": "2021-05-10T19:53:45.000Z" - }, - "events": [ - { - "uuid": "b55cb95f-5b37-4e27-a853-baffd5232f92", - "start": { - "$date": "2021-05-10T19:27:19.000Z" - }, - "end": { - "$date": "2021-05-10T19:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1991a4bd-1c9c-4117-b4f2-d463af28fef3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-10T21:14:35.000Z" - }, - "end": { - "$date": "2021-05-10T21:56:30.000Z" - }, - "events": [ - { - "uuid": "bab20de8-346a-4572-9436-aa19af314b14", - "start": { - "$date": "2021-05-10T21:14:35.000Z" - }, - "end": { - "$date": "2021-05-10T21:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "51bdd793-a239-4661-8243-856b522a2def", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T21:31:16.000Z" - }, - "end": { - "$date": "2021-05-10T21:46:13.000Z" - }, - "events": [ - { - "uuid": "8250c037-be0e-4a7b-b98d-4077e2795bbf", - "start": { - "$date": "2021-05-10T21:31:16.000Z" - }, - "end": { - "$date": "2021-05-10T21:46:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "368b99d8-49a0-4748-a17a-373c71269913", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T21:48:54.000Z" - }, - "end": { - "$date": "2021-05-10T22:16:47.000Z" - }, - "events": [ - { - "uuid": "c21e8518-5b9f-44dd-b23f-81ee5b300a46", - "start": { - "$date": "2021-05-10T21:48:54.000Z" - }, - "end": { - "$date": "2021-05-10T22:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "84ba4c6d-cdc7-4fa1-adee-19ea978bc380", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-10T21:48:22.000Z" - }, - "end": { - "$date": "2021-05-10T23:37:39.000Z" - }, - "events": [ - { - "uuid": "f45d7b2a-0260-4459-94f9-27e40feeaefd", - "start": { - "$date": "2021-05-10T21:48:22.000Z" - }, - "end": { - "$date": "2021-05-10T23:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "db722b65-b190-4082-a09c-1d690e86a6f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T21:50:49.000Z" - }, - "end": { - "$date": "2021-05-10T21:53:40.000Z" - }, - "events": [ - { - "uuid": "9de21b08-1b5b-46bb-b9d7-9cbc0443884d", - "start": { - "$date": "2021-05-10T21:50:49.000Z" - }, - "end": { - "$date": "2021-05-10T21:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "12add4f5-356d-4059-810a-84c4ae9d107b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T21:54:04.000Z" - }, - "end": { - "$date": "2021-05-10T23:16:53.000Z" - }, - "events": [ - { - "uuid": "1e78b5df-07d5-4841-9547-9dc015477447", - "start": { - "$date": "2021-05-10T21:54:04.000Z" - }, - "end": { - "$date": "2021-05-10T23:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c3cc322-1b86-4b3c-bde2-9551232402cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T22:35:43.000Z" - }, - "end": { - "$date": "2021-05-10T22:47:49.000Z" - }, - "events": [ - { - "uuid": "1bb88055-0542-4d65-96e0-e55ecf027c09", - "start": { - "$date": "2021-05-10T22:35:43.000Z" - }, - "end": { - "$date": "2021-05-10T22:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a34e1c36-3f3e-4c7e-8bf3-4e9d5164f765", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-10T22:52:14.000Z" - }, - "end": { - "$date": "2021-05-10T23:06:05.000Z" - }, - "events": [ - { - "uuid": "3350c421-2d21-4fb2-ae71-b11d2e1d89f5", - "start": { - "$date": "2021-05-10T22:52:14.000Z" - }, - "end": { - "$date": "2021-05-10T23:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "edf168ec-bf6f-48f5-ab3b-08623e616139", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-10T23:36:31.000Z" - }, - "end": { - "$date": "2021-05-10T23:44:22.000Z" - }, - "events": [ - { - "uuid": "7248bc28-9461-4123-848e-36d45f4a20a8", - "start": { - "$date": "2021-05-10T23:36:31.000Z" - }, - "end": { - "$date": "2021-05-10T23:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "956b8a19-0c54-4dc0-b807-35a0751574e7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-11T00:26:30.000Z" - }, - "end": { - "$date": "2021-05-11T01:15:53.000Z" - }, - "events": [ - { - "uuid": "85aecdf7-31d6-49a2-9b06-1b74427551cb", - "start": { - "$date": "2021-05-11T00:26:30.000Z" - }, - "end": { - "$date": "2021-05-11T01:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "152b73c4-7c46-4dab-b372-1b2f397596ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T01:29:33.000Z" - }, - "end": { - "$date": "2021-05-11T01:46:04.000Z" - }, - "events": [ - { - "uuid": "bb7536e8-6356-443d-85b3-c9274feeef2a", - "start": { - "$date": "2021-05-11T01:29:33.000Z" - }, - "end": { - "$date": "2021-05-11T01:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "4d7089ef-682e-4ed9-af3a-088f06d808c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-11T01:31:31.000Z" - }, - "end": { - "$date": "2021-05-11T01:42:57.000Z" - }, - "events": [ - { - "uuid": "abcaa87b-fabd-4892-b732-9c55bfc0b484", - "start": { - "$date": "2021-05-11T01:31:31.000Z" - }, - "end": { - "$date": "2021-05-11T01:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "05d16ac2-b538-476a-9083-5faefa3d10af", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-11T01:43:07.000Z" - }, - "end": { - "$date": "2021-05-11T02:08:25.000Z" - }, - "events": [ - { - "uuid": "5ab50e14-2593-4a9d-bd1e-e932ee26ddad", - "start": { - "$date": "2021-05-11T01:43:07.000Z" - }, - "end": { - "$date": "2021-05-11T02:08:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e4096d6-297a-483f-892e-fcc71fbe2f7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T01:47:54.000Z" - }, - "end": { - "$date": "2021-05-11T02:16:47.000Z" - }, - "events": [ - { - "uuid": "0475efd3-4fb0-4f5d-8902-2563b8ad6ef8", - "start": { - "$date": "2021-05-11T01:47:54.000Z" - }, - "end": { - "$date": "2021-05-11T02:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c932e176-77d3-43cb-89a5-6ee218b6da5c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-11T02:15:56.000Z" - }, - "end": { - "$date": "2021-05-11T02:45:34.000Z" - }, - "events": [ - { - "uuid": "62e5642b-7e04-45e5-925d-49df2f678f24", - "start": { - "$date": "2021-05-11T02:15:56.000Z" - }, - "end": { - "$date": "2021-05-11T02:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bb31d591-8ab0-4bfb-9230-591370ffce81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T02:18:26.000Z" - }, - "end": { - "$date": "2021-05-11T04:16:26.000Z" - }, - "events": [ - { - "uuid": "bbe668f0-8ee8-4615-b32f-639f0d1fcfe9", - "start": { - "$date": "2021-05-11T02:18:26.000Z" - }, - "end": { - "$date": "2021-05-11T04:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fa756686-ddb6-49eb-9e2e-c2ea5f476cdd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-11T02:36:47.000Z" - }, - "end": { - "$date": "2021-05-11T03:10:29.000Z" - }, - "events": [ - { - "uuid": "80b9387e-a6f0-4b29-b9d4-6f912bf0d576", - "start": { - "$date": "2021-05-11T02:36:47.000Z" - }, - "end": { - "$date": "2021-05-11T03:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "eb83161b-98ed-4700-87c4-2f7dd3455196", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-11T02:37:10.000Z" - }, - "end": { - "$date": "2021-05-11T02:41:55.000Z" - }, - "events": [ - { - "uuid": "dc57cc5f-eae4-4001-b2c8-388f0b374aad", - "start": { - "$date": "2021-05-11T02:37:10.000Z" - }, - "end": { - "$date": "2021-05-11T02:40:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04882ad9-316d-4c93-8366-a1c11abbcb3a", - "start": { - "$date": "2021-05-11T02:40:10.000Z" - }, - "end": { - "$date": "2021-05-11T02:41:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8c547cdf-73dc-469b-9c49-2d158912ed44", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-11T02:44:16.000Z" - }, - "end": { - "$date": "2021-05-11T03:10:32.000Z" - }, - "events": [ - { - "uuid": "0c9e431f-3f82-40f3-b89a-3411c7fc1264", - "start": { - "$date": "2021-05-11T02:44:16.000Z" - }, - "end": { - "$date": "2021-05-11T03:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfedcac7-ef97-4c9e-8894-aa7d1ce15393", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-11T02:59:58.000Z" - }, - "end": { - "$date": "2021-05-11T03:37:07.000Z" - }, - "events": [ - { - "uuid": "79d5f34d-2047-445c-8317-4a914d0760cc", - "start": { - "$date": "2021-05-11T02:59:58.000Z" - }, - "end": { - "$date": "2021-05-11T03:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c3c76c0f-575f-4609-938a-95e3304dd841", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-11T03:01:03.000Z" - }, - "end": { - "$date": "2021-05-11T05:52:51.000Z" - }, - "events": [ - { - "uuid": "7022f4a6-a4ea-4cae-b983-a106118008fd", - "start": { - "$date": "2021-05-11T03:01:03.000Z" - }, - "end": { - "$date": "2021-05-11T05:52:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "bcfd8693-fcbf-4249-8f53-cb97d8a06bd0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-11T03:11:18.000Z" - }, - "end": { - "$date": "2021-05-11T03:55:46.000Z" - }, - "events": [ - { - "uuid": "e8720d86-426c-44cc-85d4-297fd38c2cd4", - "start": { - "$date": "2021-05-11T03:11:18.000Z" - }, - "end": { - "$date": "2021-05-11T03:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "923da681-369a-4812-bdb7-361c4c10739e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-11T03:11:57.000Z" - }, - "end": { - "$date": "2021-05-11T08:37:14.000Z" - }, - "events": [ - { - "uuid": "81ae531d-3b16-4e63-91b5-e4777b5d83c0", - "start": { - "$date": "2021-05-11T03:11:57.000Z" - }, - "end": { - "$date": "2021-05-11T03:13:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06b1e2b5-1b59-491d-9e06-d00499c77e28", - "start": { - "$date": "2021-05-11T03:13:57.000Z" - }, - "end": { - "$date": "2021-05-11T03:16:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f060495-4caf-48dd-a6a4-d877bbf0cb9c", - "start": { - "$date": "2021-05-11T03:16:57.000Z" - }, - "end": { - "$date": "2021-05-11T03:18:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1794f40-642a-4b20-9753-c2ea5704b010", - "start": { - "$date": "2021-05-11T03:18:57.000Z" - }, - "end": { - "$date": "2021-05-11T03:39:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0968312f-b668-4bdb-83d8-71df6f9bda53", - "start": { - "$date": "2021-05-11T03:39:57.000Z" - }, - "end": { - "$date": "2021-05-11T03:41:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4b3c63e-638f-4053-a143-2ec7116af39c", - "start": { - "$date": "2021-05-11T03:41:57.000Z" - }, - "end": { - "$date": "2021-05-11T04:13:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ddfc8b05-375f-468a-86d8-4ecaf3114798", - "start": { - "$date": "2021-05-11T04:13:57.000Z" - }, - "end": { - "$date": "2021-05-11T04:17:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86c4406f-41c5-41f7-99b6-397b0ce62c2d", - "start": { - "$date": "2021-05-11T04:17:57.000Z" - }, - "end": { - "$date": "2021-05-11T04:39:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0428aa6f-a39e-41a1-9423-783cc2e7bfaf", - "start": { - "$date": "2021-05-11T04:39:57.000Z" - }, - "end": { - "$date": "2021-05-11T04:41:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03bd9970-60a3-40f4-9acd-9c2847e6c695", - "start": { - "$date": "2021-05-11T04:41:57.000Z" - }, - "end": { - "$date": "2021-05-11T04:43:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9f4248e2-4215-4f6e-bb87-2a5458434431", - "start": { - "$date": "2021-05-11T04:43:57.000Z" - }, - "end": { - "$date": "2021-05-11T04:45:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7cd23285-553f-4ec6-a8c4-174d6c102a71", - "start": { - "$date": "2021-05-11T04:45:57.000Z" - }, - "end": { - "$date": "2021-05-11T05:49:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6e78dcc-e81d-493f-a08e-4a362759f25b", - "start": { - "$date": "2021-05-11T05:49:57.000Z" - }, - "end": { - "$date": "2021-05-11T05:51:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d70b1e70-dc2f-49c2-a9f6-523e696e7d0c", - "start": { - "$date": "2021-05-11T05:51:57.000Z" - }, - "end": { - "$date": "2021-05-11T05:54:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b9c4986c-c17f-43df-8c48-546a7cdabe06", - "start": { - "$date": "2021-05-11T05:54:57.000Z" - }, - "end": { - "$date": "2021-05-11T05:59:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d73d03d2-f500-4859-9344-fb2c9204a2c3", - "start": { - "$date": "2021-05-11T05:59:57.000Z" - }, - "end": { - "$date": "2021-05-11T08:37:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "361460ba-3281-419e-892e-125420899055", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-11T03:13:20.000Z" - }, - "end": { - "$date": "2021-05-11T04:10:52.000Z" - }, - "events": [ - { - "uuid": "e4e6a69c-ce44-4e2a-babe-c91969244b98", - "start": { - "$date": "2021-05-11T03:13:20.000Z" - }, - "end": { - "$date": "2021-05-11T04:02:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "66840e12-c521-491f-81f3-d034ca352127", - "start": { - "$date": "2021-05-11T04:02:20.000Z" - }, - "end": { - "$date": "2021-05-11T04:10:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "f3ba104a-761d-447d-9a58-5ff424c18ac3", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-05-11T03:17:26.000Z" - }, - "end": { - "$date": "2021-05-11T03:41:29.000Z" - }, - "events": [ - { - "uuid": "920c3a01-cb33-4e09-a20d-2891c882e5a1", - "start": { - "$date": "2021-05-11T03:17:26.000Z" - }, - "end": { - "$date": "2021-05-11T03:41:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d31d9fe-95e4-4712-b573-8631a8cfb333", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-11T04:02:11.000Z" - }, - "end": { - "$date": "2021-05-11T04:41:26.000Z" - }, - "events": [ - { - "uuid": "0a4df03f-7bdf-49c3-ad0a-b2f4567d743f", - "start": { - "$date": "2021-05-11T04:02:11.000Z" - }, - "end": { - "$date": "2021-05-11T04:15:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f4ac5cc-a64e-439a-ae86-acceafeafac1", - "start": { - "$date": "2021-05-11T04:15:11.000Z" - }, - "end": { - "$date": "2021-05-11T04:21:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d5bdf753-4a5b-48e8-9b1c-bbc07230e9f8", - "start": { - "$date": "2021-05-11T04:21:11.000Z" - }, - "end": { - "$date": "2021-05-11T04:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "cfc06183-1af0-408a-80e3-1b3e11da8789", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-05-11T03:41:29.000Z" - }, - "end": { - "$date": "2021-05-11T05:31:24.000Z" - }, - "events": [ - { - "uuid": "2253c5ca-d644-49df-b3f8-464bc8d679a4", - "start": { - "$date": "2021-05-11T03:41:29.000Z" - }, - "end": { - "$date": "2021-05-11T05:31:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "8f966b22-ffa4-4396-b499-28990ab96336", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-11T04:00:32.000Z" - }, - "end": { - "$date": "2021-05-11T04:04:22.000Z" - }, - "events": [ - { - "uuid": "c9e1aa8e-7f50-479f-96de-a613682ad7f1", - "start": { - "$date": "2021-05-11T04:00:32.000Z" - }, - "end": { - "$date": "2021-05-11T04:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3332ebb1-d169-4c87-b8c9-ee0695d46f6a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T04:17:56.000Z" - }, - "end": { - "$date": "2021-05-11T04:35:02.000Z" - }, - "events": [ - { - "uuid": "46a6d3dc-4f14-4656-8c1a-a3eae3fe01ae", - "start": { - "$date": "2021-05-11T04:17:56.000Z" - }, - "end": { - "$date": "2021-05-11T04:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e3b33cb4-1ec7-4437-8604-b283c466eb9b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-11T04:30:12.000Z" - }, - "end": { - "$date": "2021-05-11T05:57:01.000Z" - }, - "events": [ - { - "uuid": "f7baa5e1-c6f6-4c6e-bd03-a5dfff3e2ec1", - "start": { - "$date": "2021-05-11T04:30:12.000Z" - }, - "end": { - "$date": "2021-05-11T05:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f0f2eea9-a0f4-4708-98f2-a4160a0ba03a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T04:35:07.000Z" - }, - "end": { - "$date": "2021-05-11T17:19:23.000Z" - }, - "events": [ - { - "uuid": "4aa41b2b-d982-420f-baf0-6eff2befc47a", - "start": { - "$date": "2021-05-11T04:35:07.000Z" - }, - "end": { - "$date": "2021-05-11T05:07:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2452f291-f40a-4f4b-8e34-1f5067f74bd3", - "start": { - "$date": "2021-05-11T05:07:07.000Z" - }, - "end": { - "$date": "2021-05-11T14:40:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8fe44e9-9142-4c78-a2c0-496b4eec0ae5", - "start": { - "$date": "2021-05-11T14:40:07.000Z" - }, - "end": { - "$date": "2021-05-11T14:42:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c6320ba-dd0e-4f1b-bdc5-4b5143bd9eac", - "start": { - "$date": "2021-05-11T14:42:07.000Z" - }, - "end": { - "$date": "2021-05-11T14:56:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6a37ad9f-a45f-4a64-9a4f-979f4153812a", - "start": { - "$date": "2021-05-11T14:56:07.000Z" - }, - "end": { - "$date": "2021-05-11T17:01:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74c5d7e2-755c-413e-95ef-c5d8ac861001", - "start": { - "$date": "2021-05-11T17:01:07.000Z" - }, - "end": { - "$date": "2021-05-11T17:03:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e10739ee-c49d-4b2c-b770-419e8ddc3734", - "start": { - "$date": "2021-05-11T17:03:07.000Z" - }, - "end": { - "$date": "2021-05-11T17:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a458ed7f-5568-4a84-87b4-77d1449ce8d9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-11T04:46:46.000Z" - }, - "end": { - "$date": "2021-05-11T05:19:35.000Z" - }, - "events": [ - { - "uuid": "97314f65-9908-4002-abe9-45b0369685b8", - "start": { - "$date": "2021-05-11T04:46:46.000Z" - }, - "end": { - "$date": "2021-05-11T05:19:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4bd32adc-37bc-44cb-b46d-f4a454b2c565", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-11T04:46:39.000Z" - }, - "end": { - "$date": "2021-05-11T05:07:45.000Z" - }, - "events": [ - { - "uuid": "98a89baa-b233-4247-8862-e07b939a7866", - "start": { - "$date": "2021-05-11T04:46:39.000Z" - }, - "end": { - "$date": "2021-05-11T05:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6def7cfa-2f7d-4a7e-8bc5-73f285b1bee5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-11T05:11:04.000Z" - }, - "end": { - "$date": "2021-05-11T05:35:15.000Z" - }, - "events": [ - { - "uuid": "b48e2d72-5d68-4e38-bf8d-61e4a46c9e40", - "start": { - "$date": "2021-05-11T05:11:04.000Z" - }, - "end": { - "$date": "2021-05-11T05:35:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c3ac2503-6729-4db2-89ea-d16c4a76c381", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-11T05:31:35.000Z" - }, - "end": { - "$date": "2021-05-11T06:03:27.000Z" - }, - "events": [ - { - "uuid": "b43b3fe8-6981-4d43-8203-5094ce1dfa4a", - "start": { - "$date": "2021-05-11T05:31:35.000Z" - }, - "end": { - "$date": "2021-05-11T06:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3389ce1b-df71-4d8b-b953-f79a01ed49b8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-11T05:50:16.000Z" - }, - "end": { - "$date": "2021-05-11T06:24:03.000Z" - }, - "events": [ - { - "uuid": "48799777-36e5-4f6d-8152-48e7011721e9", - "start": { - "$date": "2021-05-11T05:50:16.000Z" - }, - "end": { - "$date": "2021-05-11T06:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "9959184b-ce57-4720-bac8-01e8b400ca68", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-11T05:46:26.000Z" - }, - "end": { - "$date": "2021-05-11T07:25:09.000Z" - }, - "events": [ - { - "uuid": "7ea4caf9-4b3b-484d-9094-1e55ab408f42", - "start": { - "$date": "2021-05-11T05:46:26.000Z" - }, - "end": { - "$date": "2021-05-11T07:25:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fcdec553-9b6a-4811-b0f5-aacf7965dbd2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-11T05:57:40.000Z" - }, - "end": { - "$date": "2021-05-11T06:57:21.000Z" - }, - "events": [ - { - "uuid": "009db257-7263-407b-a58b-9f1884e89fa6", - "start": { - "$date": "2021-05-11T05:57:40.000Z" - }, - "end": { - "$date": "2021-05-11T06:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "5dff6ce7-51f0-4116-8f28-b9c950131491", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-11T18:11:36.000Z" - }, - "end": { - "$date": "2021-05-11T18:20:10.000Z" - }, - "events": [ - { - "uuid": "5ea48485-64d5-4a50-8d44-0e9f8f6546e3", - "start": { - "$date": "2021-05-11T18:11:36.000Z" - }, - "end": { - "$date": "2021-05-11T18:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1142e513-11f4-4349-96f6-c4c2857f8924", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T18:30:04.000Z" - }, - "end": { - "$date": "2021-05-11T18:55:47.000Z" - }, - "events": [ - { - "uuid": "7f531d9a-2223-4568-8d10-310dd5d1d615", - "start": { - "$date": "2021-05-11T18:30:04.000Z" - }, - "end": { - "$date": "2021-05-11T19:02:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "91795adb-808b-4831-920a-9067182b1139", - "start": { - "$date": "2021-05-11T19:02:04.000Z" - }, - "end": { - "$date": "2021-05-11T19:22:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "246d6c76-6770-4208-9134-6e676d2c33e8", - "start": { - "$date": "2021-05-11T19:22:04.000Z" - }, - "end": { - "$date": "2021-05-11T18:55:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "db7804d5-eef1-4958-b76b-acaa74e624dd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-11T17:29:46.000Z" - }, - "end": { - "$date": "2021-05-11T17:30:24.000Z" - }, - "events": [ - { - "uuid": "55db1668-d0f6-4d38-bc2b-5323ba5a6cac", - "start": { - "$date": "2021-05-11T17:29:46.000Z" - }, - "end": { - "$date": "2021-05-11T17:30:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee5b634d-1b80-4110-b92a-01e413d7bc84", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-11T17:23:10.000Z" - }, - "end": { - "$date": "2021-05-11T19:06:23.000Z" - }, - "events": [ - { - "uuid": "8f7aca3e-04e6-4e47-ac9f-ce4b02ade0d4", - "start": { - "$date": "2021-05-11T17:23:10.000Z" - }, - "end": { - "$date": "2021-05-11T19:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "793357cc-d2cf-43b1-8928-d88e389160d8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-11T19:07:49.000Z" - }, - "end": { - "$date": "2021-05-11T19:11:23.000Z" - }, - "events": [ - { - "uuid": "69c57784-a928-4269-af06-b361c3ef91cc", - "start": { - "$date": "2021-05-11T19:07:49.000Z" - }, - "end": { - "$date": "2021-05-11T19:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ad2f83fa-5956-4439-95a3-e5ef77890f9e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-11T19:39:58.000Z" - }, - "end": { - "$date": "2021-05-11T20:06:36.000Z" - }, - "events": [ - { - "uuid": "d443ef65-988e-4f44-b632-eeea391c0f43", - "start": { - "$date": "2021-05-11T19:39:58.000Z" - }, - "end": { - "$date": "2021-05-11T20:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "b1c84b12-f413-44a3-8626-b4a395fba3f2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-11T19:58:11.000Z" - }, - "end": { - "$date": "2021-05-12T12:50:47.000Z" - }, - "events": [ - { - "uuid": "73faadea-56d1-4295-a818-d41febe8ff92", - "start": { - "$date": "2021-05-11T19:58:11.000Z" - }, - "end": { - "$date": "2021-05-11T20:37:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "861752f1-5c90-439c-bc13-b281bd3d531c", - "start": { - "$date": "2021-05-11T20:37:11.000Z" - }, - "end": { - "$date": "2021-05-11T20:39:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "705bf3f8-29a3-4cd0-9721-869f55089fea", - "start": { - "$date": "2021-05-11T20:39:11.000Z" - }, - "end": { - "$date": "2021-05-11T23:01:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ccd4ebe-3d69-47c0-9f4c-28281fbf08c5", - "start": { - "$date": "2021-05-11T23:01:11.000Z" - }, - "end": { - "$date": "2021-05-12T00:04:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef6a57da-4b2f-4aa7-8f06-f72730ffa136", - "start": { - "$date": "2021-05-12T00:04:11.000Z" - }, - "end": { - "$date": "2021-05-12T00:14:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6543fde2-88f1-4136-aae8-111424bc56f2", - "start": { - "$date": "2021-05-12T00:14:11.000Z" - }, - "end": { - "$date": "2021-05-12T01:47:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cf3d91b8-aebd-4a4e-b99c-fcfa5fdbf8cc", - "start": { - "$date": "2021-05-12T01:47:11.000Z" - }, - "end": { - "$date": "2021-05-12T01:50:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7aca1865-7a51-4865-ac90-34f9ed2b259e", - "start": { - "$date": "2021-05-12T01:50:11.000Z" - }, - "end": { - "$date": "2021-05-12T02:15:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d620bd3-37f6-48e1-b0ec-c5bd85ebfaf5", - "start": { - "$date": "2021-05-12T02:15:11.000Z" - }, - "end": { - "$date": "2021-05-12T02:20:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7ec8287-a9e7-452a-9342-2eb6c7936aaa", - "start": { - "$date": "2021-05-12T02:20:11.000Z" - }, - "end": { - "$date": "2021-05-12T02:32:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f26d3862-ce67-4164-954e-4d2a5c2a5918", - "start": { - "$date": "2021-05-12T02:32:11.000Z" - }, - "end": { - "$date": "2021-05-12T04:27:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6dc750f9-5819-4182-a106-bd712ba350ec", - "start": { - "$date": "2021-05-12T04:27:11.000Z" - }, - "end": { - "$date": "2021-05-12T04:28:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3781b132-2153-4d59-be76-d0258d1b98b3", - "start": { - "$date": "2021-05-12T04:28:11.000Z" - }, - "end": { - "$date": "2021-05-12T04:38:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70dff0dd-810c-48a9-9d39-ecd247235e2d", - "start": { - "$date": "2021-05-12T04:38:11.000Z" - }, - "end": { - "$date": "2021-05-12T04:40:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6f830f78-e27e-4619-8f81-39efaeaea186", - "start": { - "$date": "2021-05-12T04:40:11.000Z" - }, - "end": { - "$date": "2021-05-12T07:47:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "373af060-d623-4128-b5ad-72b08a7e3f5b", - "start": { - "$date": "2021-05-12T07:47:11.000Z" - }, - "end": { - "$date": "2021-05-12T12:50:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06a1e22c-c0f7-4441-874e-bce5e3e43027", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-11T19:59:38.000Z" - }, - "end": { - "$date": "2021-05-11T22:06:15.000Z" - }, - "events": [ - { - "uuid": "be5105e7-cbd8-4ecf-879b-4ec8bcd975bd", - "start": { - "$date": "2021-05-11T19:59:38.000Z" - }, - "end": { - "$date": "2021-05-11T20:36:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f47b090-2cb4-4bdf-af29-490ea6149f5f", - "start": { - "$date": "2021-05-11T20:36:38.000Z" - }, - "end": { - "$date": "2021-05-11T21:02:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e3d1c8a-b1a6-4bc2-8c06-1ba8e3b396e1", - "start": { - "$date": "2021-05-11T21:02:38.000Z" - }, - "end": { - "$date": "2021-05-11T22:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "a5adfe51-4f00-4fe1-ac7b-7c6fc64fe7ff", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-11T20:26:46.000Z" - }, - "end": { - "$date": "2021-05-12T06:45:45.000Z" - }, - "events": [ - { - "uuid": "1310df3a-93ac-470c-9554-4c9a4d42a736", - "start": { - "$date": "2021-05-11T20:26:46.000Z" - }, - "end": { - "$date": "2021-05-11T23:34:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8dfc6806-7d3e-4f65-8f3e-9111a4a33b46", - "start": { - "$date": "2021-05-11T23:34:46.000Z" - }, - "end": { - "$date": "2021-05-12T00:12:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a8ee1e5-5a8b-4c73-abcf-074a298c2e92", - "start": { - "$date": "2021-05-12T00:12:46.000Z" - }, - "end": { - "$date": "2021-05-12T06:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f88ecbd4-49c1-41dc-807c-de189b6cf3de", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-11T20:50:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:41:45.000Z" - }, - "events": [ - { - "uuid": "875f6637-bd55-4b8f-ab27-4bf8e549d229", - "start": { - "$date": "2021-05-11T20:50:49.000Z" - }, - "end": { - "$date": "2021-05-11T21:50:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6fb2982-b938-4c12-a065-9cfbd10e0aa4", - "start": { - "$date": "2021-05-11T21:50:49.000Z" - }, - "end": { - "$date": "2021-05-11T22:07:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a992a1cc-c311-4e13-8cd6-a0a895d916c0", - "start": { - "$date": "2021-05-11T22:07:49.000Z" - }, - "end": { - "$date": "2021-05-11T22:10:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8689bb66-41e4-49cb-90c1-326ce1097471", - "start": { - "$date": "2021-05-11T22:10:49.000Z" - }, - "end": { - "$date": "2021-05-11T22:12:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47a9d202-d81e-456b-8c3b-1b15dfe2d4d8", - "start": { - "$date": "2021-05-11T22:12:49.000Z" - }, - "end": { - "$date": "2021-05-11T22:24:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3f155a1-407d-4a57-a44a-d3d9986d9c02", - "start": { - "$date": "2021-05-11T22:24:49.000Z" - }, - "end": { - "$date": "2021-05-11T22:41:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd19bd70-e70b-4647-8ee9-1b82df5f84ea", - "start": { - "$date": "2021-05-11T22:41:49.000Z" - }, - "end": { - "$date": "2021-05-11T22:43:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5a031d8-1490-4e22-a643-77947b191143", - "start": { - "$date": "2021-05-11T22:43:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:07:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f05e731a-1e79-42d8-beab-8121e03fb051", - "start": { - "$date": "2021-05-12T00:07:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:18:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f80df1c-767c-47ea-b73d-a7db749d9051", - "start": { - "$date": "2021-05-12T00:18:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:30:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "56e33bbd-afc1-4500-9383-500a614be41d", - "start": { - "$date": "2021-05-12T00:30:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:32:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "531208a3-7299-401d-8e6d-d0916b65c165", - "start": { - "$date": "2021-05-12T00:32:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:34:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8ea841e-37be-4bf7-ae8c-5dbd264ae81c", - "start": { - "$date": "2021-05-12T00:34:49.000Z" - }, - "end": { - "$date": "2021-05-12T00:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9e607727-c7ea-45e4-a74e-4041552416e5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-11T21:22:16.000Z" - }, - "end": { - "$date": "2021-05-11T23:23:59.000Z" - }, - "events": [ - { - "uuid": "f8cdcc1d-0d8f-44c4-802f-d07a6e238d0f", - "start": { - "$date": "2021-05-11T21:22:16.000Z" - }, - "end": { - "$date": "2021-05-11T23:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "e37817f0-84c4-40e5-a94d-5f889bb98828", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-11T22:28:10.000Z" - }, - "end": { - "$date": "2021-05-12T00:07:34.000Z" - }, - "events": [ - { - "uuid": "c0bc4843-b37d-4d3f-a9ae-129594e0e51c", - "start": { - "$date": "2021-05-11T22:28:10.000Z" - }, - "end": { - "$date": "2021-05-11T23:36:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "23031cc2-653d-4fc1-822e-4329db2c6a86", - "start": { - "$date": "2021-05-11T23:36:10.000Z" - }, - "end": { - "$date": "2021-05-12T00:45:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ea5a0c7-8f80-4cc9-9b05-b365b6f32f8b", - "start": { - "$date": "2021-05-12T00:45:10.000Z" - }, - "end": { - "$date": "2021-05-12T00:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ab24fdb1-83f6-4f5a-a3f5-1660993aaec9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T01:40:48.000Z" - }, - "end": { - "$date": "2021-05-12T02:22:13.000Z" - }, - "events": [ - { - "uuid": "c4175e6d-ede9-488e-acd4-8c37a5efc0fb", - "start": { - "$date": "2021-05-12T01:40:48.000Z" - }, - "end": { - "$date": "2021-05-12T03:17:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "448d07b4-d266-4f3c-9e07-e113ca4f6932", - "start": { - "$date": "2021-05-12T03:17:48.000Z" - }, - "end": { - "$date": "2021-05-12T03:21:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7df670cc-64a6-4951-9117-c9c66bbf8147", - "start": { - "$date": "2021-05-12T03:21:48.000Z" - }, - "end": { - "$date": "2021-05-12T05:00:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "939ee63e-0df7-445d-ae4b-ffeeb023b37b", - "start": { - "$date": "2021-05-12T05:00:48.000Z" - }, - "end": { - "$date": "2021-05-12T05:11:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04598dce-f2bf-4cb8-91ab-37256a752b3e", - "start": { - "$date": "2021-05-12T05:11:48.000Z" - }, - "end": { - "$date": "2021-05-12T02:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a0444601-49f7-404d-af30-f2af72a7741e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-11T23:02:26.000Z" - }, - "end": { - "$date": "2021-05-11T23:14:48.000Z" - }, - "events": [ - { - "uuid": "cae034b7-2cf3-4972-9247-505a4d82858d", - "start": { - "$date": "2021-05-11T23:02:26.000Z" - }, - "end": { - "$date": "2021-05-11T23:14:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b36fe278-2922-4f35-a293-6e45e917573b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-11T23:28:30.000Z" - }, - "end": { - "$date": "2021-05-11T23:43:50.000Z" - }, - "events": [ - { - "uuid": "5f45edc8-b165-41f3-aaab-e53b37cdf80d", - "start": { - "$date": "2021-05-11T23:28:30.000Z" - }, - "end": { - "$date": "2021-05-11T23:43:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3070e56-68a7-4c21-b6ba-fe8c7aab1eb6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-11T23:44:51.000Z" - }, - "end": { - "$date": "2021-05-12T00:01:51.000Z" - }, - "events": [ - { - "uuid": "9bbb6e1d-1be7-4dbe-a17f-0e7b9cb5a897", - "start": { - "$date": "2021-05-11T23:44:51.000Z" - }, - "end": { - "$date": "2021-05-12T00:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3321c243-8b56-4359-a844-44b78c40f3b8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-12T00:03:42.000Z" - }, - "end": { - "$date": "2021-05-12T00:22:22.000Z" - }, - "events": [ - { - "uuid": "afacbd0f-86b3-4c9d-affc-d600879d552e", - "start": { - "$date": "2021-05-12T00:03:42.000Z" - }, - "end": { - "$date": "2021-05-12T00:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "07509ea7-31e9-4b6f-9bb2-048b0c976f7c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-12T00:41:54.000Z" - }, - "end": { - "$date": "2021-05-12T02:20:26.000Z" - }, - "events": [ - { - "uuid": "60d189ef-821a-4da9-b3a1-a40ab81f27d3", - "start": { - "$date": "2021-05-12T00:41:54.000Z" - }, - "end": { - "$date": "2021-05-12T00:43:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "887bdd52-efe5-40f2-82d2-8d805e6da2d8", - "start": { - "$date": "2021-05-12T00:43:54.000Z" - }, - "end": { - "$date": "2021-05-12T00:44:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "716ea638-4600-4641-ba55-ef9d8fc43d62", - "start": { - "$date": "2021-05-12T00:44:54.000Z" - }, - "end": { - "$date": "2021-05-12T00:46:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6271335-4d01-46f5-af72-ac0d7b1d879e", - "start": { - "$date": "2021-05-12T00:46:54.000Z" - }, - "end": { - "$date": "2021-05-12T00:49:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7f977ec-9904-4903-ba59-7af849b29f13", - "start": { - "$date": "2021-05-12T00:49:54.000Z" - }, - "end": { - "$date": "2021-05-12T00:52:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c5904b2-974b-4f57-9a8d-20ab47dfbfb3", - "start": { - "$date": "2021-05-12T00:52:54.000Z" - }, - "end": { - "$date": "2021-05-12T01:37:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7c861b47-a5e3-4166-ba8a-1d938df5777a", - "start": { - "$date": "2021-05-12T01:37:54.000Z" - }, - "end": { - "$date": "2021-05-12T01:40:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffe72c84-42b3-4c3f-9729-74095ec144ca", - "start": { - "$date": "2021-05-12T01:40:54.000Z" - }, - "end": { - "$date": "2021-05-12T01:42:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e464e83-394e-400e-a14e-caf493026ec0", - "start": { - "$date": "2021-05-12T01:42:54.000Z" - }, - "end": { - "$date": "2021-05-12T01:46:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "07f752c9-7ee7-4e3f-916f-eeb62ce1de79", - "start": { - "$date": "2021-05-12T01:46:54.000Z" - }, - "end": { - "$date": "2021-05-12T01:53:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "78149784-82c3-49cb-99ae-3a129552d130", - "start": { - "$date": "2021-05-12T01:53:54.000Z" - }, - "end": { - "$date": "2021-05-12T02:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd115589-0081-44c8-b7e4-d0abbe14732a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T01:18:34.000Z" - }, - "end": { - "$date": "2021-05-12T01:54:42.000Z" - }, - "events": [ - { - "uuid": "5d5cf0c0-0c3b-47bb-80d3-5acde00dd665", - "start": { - "$date": "2021-05-12T01:18:34.000Z" - }, - "end": { - "$date": "2021-05-12T01:54:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0d5f13a-c1bd-44b6-906e-9d4ec31b5a58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T02:28:31.000Z" - }, - "end": { - "$date": "2021-05-12T03:10:01.000Z" - }, - "events": [ - { - "uuid": "c99420d0-ec43-45a2-9ecc-c884adf47e6d", - "start": { - "$date": "2021-05-12T02:28:31.000Z" - }, - "end": { - "$date": "2021-05-12T03:10:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "91a77fde-32cc-468f-956d-1b37b30c0cbb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-12T02:06:36.000Z" - }, - "end": { - "$date": "2021-05-12T05:26:44.000Z" - }, - "events": [ - { - "uuid": "5f4e115f-76a6-4a34-9a9d-0696da7f91f8", - "start": { - "$date": "2021-05-12T02:06:36.000Z" - }, - "end": { - "$date": "2021-05-12T05:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c4278228-a88b-4047-9a31-6655fb6ba77a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-12T02:36:55.000Z" - }, - "end": { - "$date": "2021-05-12T02:44:57.000Z" - }, - "events": [ - { - "uuid": "8e00a51a-273d-41d1-bb0c-40bd5bd81334", - "start": { - "$date": "2021-05-12T02:36:55.000Z" - }, - "end": { - "$date": "2021-05-12T02:44:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a938d320-d6dd-44c2-9a9e-302e2d85930d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-12T02:45:57.000Z" - }, - "end": { - "$date": "2021-05-12T06:25:30.000Z" - }, - "events": [ - { - "uuid": "7f910c10-33cc-4fe8-9140-da6b4fcdd401", - "start": { - "$date": "2021-05-12T02:45:57.000Z" - }, - "end": { - "$date": "2021-05-12T05:33:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a80ebef-c013-4dfb-8e63-4f831d467766", - "start": { - "$date": "2021-05-12T05:33:57.000Z" - }, - "end": { - "$date": "2021-05-12T05:34:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "66e7b5f4-2221-447d-86c7-e1c53fbcb545", - "start": { - "$date": "2021-05-12T05:34:57.000Z" - }, - "end": { - "$date": "2021-05-12T06:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ace770d5-216f-4aa0-8697-2c8f65c98416", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T02:52:34.000Z" - }, - "end": { - "$date": "2021-05-12T03:17:09.000Z" - }, - "events": [ - { - "uuid": "624ded19-5f1b-45fb-afd2-b6e919bc918e", - "start": { - "$date": "2021-05-12T02:52:34.000Z" - }, - "end": { - "$date": "2021-05-12T03:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2a50c8a7-1a8c-4275-b70c-de5e753d30c9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-12T02:57:07.000Z" - }, - "end": { - "$date": "2021-05-12T03:30:56.000Z" - }, - "events": [ - { - "uuid": "0ccd70c8-f26e-4a8d-9bd6-aec56dd45004", - "start": { - "$date": "2021-05-12T02:57:07.000Z" - }, - "end": { - "$date": "2021-05-12T03:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "605e014b-b796-4950-ba39-bf6a0d171e56", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-12T03:07:08.000Z" - }, - "end": { - "$date": "2021-05-12T05:41:34.000Z" - }, - "events": [ - { - "uuid": "b61f677a-39a8-4bb3-acac-56371d4f9160", - "start": { - "$date": "2021-05-12T03:07:08.000Z" - }, - "end": { - "$date": "2021-05-12T05:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e10d9350-0b7d-4d74-ac73-e2e80164f978", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T03:18:06.000Z" - }, - "end": { - "$date": "2021-05-12T03:41:23.000Z" - }, - "events": [ - { - "uuid": "bdd2c906-9a6b-417d-882c-9a82609242eb", - "start": { - "$date": "2021-05-12T03:18:06.000Z" - }, - "end": { - "$date": "2021-05-12T03:41:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d630ad0e-402a-420c-b06f-0d756609dec1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T03:17:14.000Z" - }, - "end": { - "$date": "2021-05-12T03:22:40.000Z" - }, - "events": [ - { - "uuid": "9679894f-6435-4b90-a757-ed065c9b4fa5", - "start": { - "$date": "2021-05-12T03:17:14.000Z" - }, - "end": { - "$date": "2021-05-12T03:22:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ccdf8b5d-3b53-4df7-9598-460d727ac9f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T03:31:11.000Z" - }, - "end": { - "$date": "2021-05-12T03:36:12.000Z" - }, - "events": [ - { - "uuid": "396d7cf3-d700-4047-b5cc-df5280d8ab33", - "start": { - "$date": "2021-05-12T03:31:11.000Z" - }, - "end": { - "$date": "2021-05-12T03:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ea826ab3-d0a7-49fc-918e-51e9345933d0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-12T03:35:02.000Z" - }, - "end": { - "$date": "2021-05-12T07:28:58.000Z" - }, - "events": [ - { - "uuid": "2c6a9e7f-4898-4f87-abf0-71432095694e", - "start": { - "$date": "2021-05-12T03:35:02.000Z" - }, - "end": { - "$date": "2021-05-12T07:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "21768cb8-e383-434c-9dc3-ec0357d227d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T03:36:22.000Z" - }, - "end": { - "$date": "2021-05-12T03:37:28.000Z" - }, - "events": [ - { - "uuid": "85727a37-969e-4d8d-81d0-17ef44204e6b", - "start": { - "$date": "2021-05-12T03:36:22.000Z" - }, - "end": { - "$date": "2021-05-12T03:37:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8e08226f-50b5-4570-8a83-98cbdbed1e49", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T03:37:47.000Z" - }, - "end": { - "$date": "2021-05-12T04:31:41.000Z" - }, - "events": [ - { - "uuid": "be383a27-446b-48d6-bcc6-c29a9f16c988", - "start": { - "$date": "2021-05-12T03:37:47.000Z" - }, - "end": { - "$date": "2021-05-12T04:31:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d4c90a2-5104-4f9e-af92-62922c451fb7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-12T03:46:23.000Z" - }, - "end": { - "$date": "2021-05-12T04:15:25.000Z" - }, - "events": [ - { - "uuid": "ada761eb-f34a-4bf1-a17f-fe66bce54efd", - "start": { - "$date": "2021-05-12T03:46:23.000Z" - }, - "end": { - "$date": "2021-05-12T04:15:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b88303da-c483-4898-8416-06df58e18874", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T03:46:13.000Z" - }, - "end": { - "$date": "2021-05-12T04:15:14.000Z" - }, - "events": [ - { - "uuid": "a42fdc18-5435-45de-ac77-b44967c9fd49", - "start": { - "$date": "2021-05-12T03:46:13.000Z" - }, - "end": { - "$date": "2021-05-12T04:15:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "947dbb6f-e5f4-4655-ae63-49dc790e83de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-12T04:19:56.000Z" - }, - "end": { - "$date": "2021-05-12T04:46:12.000Z" - }, - "events": [ - { - "uuid": "89c3468a-82db-42c1-8259-2da976399c39", - "start": { - "$date": "2021-05-12T04:19:56.000Z" - }, - "end": { - "$date": "2021-05-12T04:46:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7821727-0cb2-46e7-a2bf-effe18f300c7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T04:19:49.000Z" - }, - "end": { - "$date": "2021-05-12T04:46:15.000Z" - }, - "events": [ - { - "uuid": "d8e58497-57ca-4ccb-a3cd-3da8c495b417", - "start": { - "$date": "2021-05-12T04:19:49.000Z" - }, - "end": { - "$date": "2021-05-12T04:46:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eafdd5cd-75c6-4a4c-99f0-f0c46d9845c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T04:35:06.000Z" - }, - "end": { - "$date": "2021-05-12T04:47:27.000Z" - }, - "events": [ - { - "uuid": "375f7a15-9b50-49e7-a3dd-99145e68bbaf", - "start": { - "$date": "2021-05-12T04:35:06.000Z" - }, - "end": { - "$date": "2021-05-12T04:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3286d734-d095-4e38-b881-d289cf74f3ac", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-12T04:42:13.000Z" - }, - "end": { - "$date": "2021-05-12T07:29:00.000Z" - }, - "events": [ - { - "uuid": "f4feb2ed-503f-4211-9a9d-ccaee245a37e", - "start": { - "$date": "2021-05-12T04:42:13.000Z" - }, - "end": { - "$date": "2021-05-12T07:29:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75751660-ae07-4afc-8f47-2532d72b24be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-12T04:55:50.000Z" - }, - "end": { - "$date": "2021-05-12T05:17:28.000Z" - }, - "events": [ - { - "uuid": "8362d2c0-7a57-49e3-ad2e-0505e2bf8192", - "start": { - "$date": "2021-05-12T04:55:50.000Z" - }, - "end": { - "$date": "2021-05-12T05:17:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa1c7243-9998-4ca5-88ae-d043b7542903", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T05:03:43.000Z" - }, - "end": { - "$date": "2021-05-12T17:12:25.000Z" - }, - "events": [ - { - "uuid": "044f1546-000c-432c-89d2-2a42934361b3", - "start": { - "$date": "2021-05-12T05:03:43.000Z" - }, - "end": { - "$date": "2021-05-12T05:32:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "260debda-953a-4db3-a6bf-f63ed9bc497f", - "start": { - "$date": "2021-05-12T05:32:43.000Z" - }, - "end": { - "$date": "2021-05-12T05:50:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b52d8c97-f690-4593-bc15-4b6e35ddafae", - "start": { - "$date": "2021-05-12T05:50:43.000Z" - }, - "end": { - "$date": "2021-05-12T05:52:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49d37079-9dbd-4780-b99a-971af40175b3", - "start": { - "$date": "2021-05-12T05:52:43.000Z" - }, - "end": { - "$date": "2021-05-12T05:58:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a02ae1bd-b4d5-429f-a465-1f3ade9d6ab5", - "start": { - "$date": "2021-05-12T05:58:43.000Z" - }, - "end": { - "$date": "2021-05-12T06:00:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc697763-917f-476b-ab42-3a965c541680", - "start": { - "$date": "2021-05-12T06:00:43.000Z" - }, - "end": { - "$date": "2021-05-12T15:54:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "419360b3-9e01-4323-bafc-2f73969cfab1", - "start": { - "$date": "2021-05-12T15:54:43.000Z" - }, - "end": { - "$date": "2021-05-12T15:58:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6163df17-b4cd-423f-a35e-82a4dbc6d69b", - "start": { - "$date": "2021-05-12T15:58:43.000Z" - }, - "end": { - "$date": "2021-05-12T16:04:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9fd5e5b4-afc3-48be-872f-420026f2b0d5", - "start": { - "$date": "2021-05-12T16:04:43.000Z" - }, - "end": { - "$date": "2021-05-12T16:06:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "65548d70-909f-45b4-82de-fee3817b84aa", - "start": { - "$date": "2021-05-12T16:06:43.000Z" - }, - "end": { - "$date": "2021-05-12T16:12:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7e1fc092-132d-401f-a458-fb38de9d10d7", - "start": { - "$date": "2021-05-12T16:12:43.000Z" - }, - "end": { - "$date": "2021-05-12T16:14:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ecad2a15-f692-4419-8b3b-d6f50af25250", - "start": { - "$date": "2021-05-12T16:14:43.000Z" - }, - "end": { - "$date": "2021-05-12T16:36:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df9b130d-8088-4553-a683-c10c4acebb04", - "start": { - "$date": "2021-05-12T16:36:43.000Z" - }, - "end": { - "$date": "2021-05-12T17:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55a8bb71-345e-4cc8-92d0-5173e44507c8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T04:50:27.000Z" - }, - "end": { - "$date": "2021-05-12T04:50:42.000Z" - }, - "events": [ - { - "uuid": "b3919f7f-f0c2-417c-8422-18363dfb34ec", - "start": { - "$date": "2021-05-12T04:50:27.000Z" - }, - "end": { - "$date": "2021-05-12T04:50:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1eab980b-d2a8-4bfb-8adf-18e2809dbb3a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T05:17:17.000Z" - }, - "end": { - "$date": "2021-05-12T05:20:27.000Z" - }, - "events": [ - { - "uuid": "8b1e5f5b-42f1-45fb-9cf1-a4ca0804f271", - "start": { - "$date": "2021-05-12T05:17:17.000Z" - }, - "end": { - "$date": "2021-05-12T05:20:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "233bc245-616f-4a7d-8676-2672810f858f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-12T05:29:34.000Z" - }, - "end": { - "$date": "2021-05-12T05:29:49.000Z" - }, - "events": [ - { - "uuid": "ea632cc2-7bbb-4ebf-8542-c28fffc7d3e2", - "start": { - "$date": "2021-05-12T05:29:34.000Z" - }, - "end": { - "$date": "2021-05-12T05:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc42f1df-ccb2-4696-94b5-eda92b024a83", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-12T05:33:00.000Z" - }, - "end": { - "$date": "2021-05-12T06:10:35.000Z" - }, - "events": [ - { - "uuid": "91f867b4-542e-4629-af7c-a98f0cf1c58b", - "start": { - "$date": "2021-05-12T05:33:00.000Z" - }, - "end": { - "$date": "2021-05-12T06:10:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd2c598f-d26d-4921-81ee-d5adee1bad71", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-12T05:34:50.000Z" - }, - "end": { - "$date": "2021-05-12T06:10:21.000Z" - }, - "events": [ - { - "uuid": "4b5215d6-bb61-45a0-9ee0-db5e850f3ebe", - "start": { - "$date": "2021-05-12T05:34:50.000Z" - }, - "end": { - "$date": "2021-05-12T06:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ffc9ff6-75ff-4512-a9b9-eae6e1265665", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T05:33:34.000Z" - }, - "end": { - "$date": "2021-05-12T06:10:25.000Z" - }, - "events": [ - { - "uuid": "39a7743d-ce88-4532-a9aa-eaaaa86f1656", - "start": { - "$date": "2021-05-12T05:33:34.000Z" - }, - "end": { - "$date": "2021-05-12T06:10:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50a742b9-8b47-4092-9083-0bd17374cafa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-12T06:53:53.000Z" - }, - "end": { - "$date": "2021-05-12T07:25:53.000Z" - }, - "events": [ - { - "uuid": "f5246744-c48d-4478-b8a7-977db001b561", - "start": { - "$date": "2021-05-12T06:53:53.000Z" - }, - "end": { - "$date": "2021-05-12T07:25:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "f36a7674-6181-4bb3-b438-814932993c77", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-12T12:56:12.000Z" - }, - "end": { - "$date": "2021-05-12T12:56:16.000Z" - }, - "events": [ - { - "uuid": "e2f051cf-e4f8-452a-a02e-d93d87d228f2", - "start": { - "$date": "2021-05-12T12:56:12.000Z" - }, - "end": { - "$date": "2021-05-12T12:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "21eff3bd-f256-4984-b212-52cfe8f4dde2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-12T12:58:18.000Z" - }, - "end": { - "$date": "2021-05-12T12:58:26.000Z" - }, - "events": [ - { - "uuid": "2aa933fa-7830-47cf-8f62-34daa08cfbde", - "start": { - "$date": "2021-05-12T12:58:18.000Z" - }, - "end": { - "$date": "2021-05-12T12:58:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "3280f47c-36d2-4946-96c7-47de23f52f99", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-12T12:59:38.000Z" - }, - "end": { - "$date": "2021-05-12T13:01:47.000Z" - }, - "events": [ - { - "uuid": "5267d539-3fcd-47c8-9ca5-4e9055aca590", - "start": { - "$date": "2021-05-12T12:59:38.000Z" - }, - "end": { - "$date": "2021-05-12T13:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "883180d0-a6c9-4446-b652-1075ec8bbb7e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-12T13:05:09.000Z" - }, - "end": { - "$date": "2021-05-12T13:05:12.000Z" - }, - "events": [ - { - "uuid": "6fc4c6d0-fdde-4b2b-a4b1-ff41678e37c5", - "start": { - "$date": "2021-05-12T13:05:09.000Z" - }, - "end": { - "$date": "2021-05-12T13:05:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "1129202a-34af-4b97-ae04-dbacf33c25e8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-12T21:19:46.000Z" - }, - "end": { - "$date": "2021-05-13T00:12:09.000Z" - }, - "events": [ - { - "uuid": "4458409a-9ff4-45c4-b3da-e43a8054c0d8", - "start": { - "$date": "2021-05-12T21:19:46.000Z" - }, - "end": { - "$date": "2021-05-13T01:25:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4999554d-7e2f-40f4-91b3-515d0483bb88", - "start": { - "$date": "2021-05-13T01:25:46.000Z" - }, - "end": { - "$date": "2021-05-13T01:39:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ecbb907-8c42-4240-b7de-e40c735488fd", - "start": { - "$date": "2021-05-13T01:39:46.000Z" - }, - "end": { - "$date": "2021-05-13T00:12:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3f95a80d-f7dc-4dbf-bc48-1e5cde1247c2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-12T14:07:46.000Z" - }, - "end": { - "$date": "2021-05-12T15:42:54.000Z" - }, - "events": [ - { - "uuid": "5f583d5e-dc79-489a-85b4-4ba8559d70e1", - "start": { - "$date": "2021-05-12T14:07:46.000Z" - }, - "end": { - "$date": "2021-05-12T15:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "502baebe-752a-45f2-96f3-23c308c1d4fc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-05-12T15:12:45.000Z" - }, - "end": { - "$date": "2021-05-12T18:57:56.000Z" - }, - "events": [ - { - "uuid": "d6a7f2d9-65e3-4b19-84db-bed4e43fc1db", - "start": { - "$date": "2021-05-12T15:12:45.000Z" - }, - "end": { - "$date": "2021-05-12T18:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "92031d2b-61b6-41aa-a394-a840b8f1d6b6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-12T16:19:02.000Z" - }, - "end": { - "$date": "2021-05-12T16:56:08.000Z" - }, - "events": [ - { - "uuid": "fb10d4bb-8f72-4841-a795-f8461a3e98ca", - "start": { - "$date": "2021-05-12T16:19:02.000Z" - }, - "end": { - "$date": "2021-05-12T16:56:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a73bce63-1694-4e2c-8481-3360017d3470", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-12T18:35:26.000Z" - }, - "end": { - "$date": "2021-05-12T19:44:06.000Z" - }, - "events": [ - { - "uuid": "72d33a59-b634-4947-bd0c-e73af21f1dad", - "start": { - "$date": "2021-05-12T18:35:26.000Z" - }, - "end": { - "$date": "2021-05-12T20:18:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab0c9f03-09ad-4805-8a4a-94e8f6e897f5", - "start": { - "$date": "2021-05-12T20:18:26.000Z" - }, - "end": { - "$date": "2021-05-12T20:23:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dc37d6f0-3740-47b7-8cc4-8d4943f27ff9", - "start": { - "$date": "2021-05-12T20:23:26.000Z" - }, - "end": { - "$date": "2021-05-12T20:33:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c94b3091-d46c-490d-82f1-6b6428ea6847", - "start": { - "$date": "2021-05-12T20:33:26.000Z" - }, - "end": { - "$date": "2021-05-12T20:34:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc4cce56-cb3b-4097-b563-8ef7d78921ff", - "start": { - "$date": "2021-05-12T20:34:26.000Z" - }, - "end": { - "$date": "2021-05-12T20:36:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d937fd4-7f4c-4efa-9188-0b81523379b1", - "start": { - "$date": "2021-05-12T20:36:26.000Z" - }, - "end": { - "$date": "2021-05-12T19:44:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fae02c2c-6751-48c9-87e1-a6e7620156ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T17:27:35.000Z" - }, - "end": { - "$date": "2021-05-12T18:09:13.000Z" - }, - "events": [ - { - "uuid": "d2bdb3fe-6295-46fb-b032-74d5ac9ac301", - "start": { - "$date": "2021-05-12T17:27:35.000Z" - }, - "end": { - "$date": "2021-05-12T18:09:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54dcddef-6ff4-4d11-9262-fb6ac707b1a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T18:11:03.000Z" - }, - "end": { - "$date": "2021-05-12T18:43:01.000Z" - }, - "events": [ - { - "uuid": "3e691df4-e48f-4a7a-ace1-20c6bcc99634", - "start": { - "$date": "2021-05-12T18:11:03.000Z" - }, - "end": { - "$date": "2021-05-12T18:43:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "76c7f48d-1b66-48ad-b22b-f97ec35db3f9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-12T18:38:56.000Z" - }, - "end": { - "$date": "2021-05-12T19:18:29.000Z" - }, - "events": [ - { - "uuid": "d2e5485f-59ed-4d2f-86e6-9b4530c53c05", - "start": { - "$date": "2021-05-12T18:38:56.000Z" - }, - "end": { - "$date": "2021-05-12T18:43:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d7d435c-daa8-477a-9fd4-4ceb892e557b", - "start": { - "$date": "2021-05-12T18:43:56.000Z" - }, - "end": { - "$date": "2021-05-12T19:18:29.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1955a421-6173-45f6-9c41-40f28f3bb227", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T18:47:25.000Z" - }, - "end": { - "$date": "2021-05-12T18:54:17.000Z" - }, - "events": [ - { - "uuid": "1663bbb9-9455-4d97-a619-193a97b9a6c5", - "start": { - "$date": "2021-05-12T18:47:25.000Z" - }, - "end": { - "$date": "2021-05-12T18:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0db2efe-2da2-48b2-a5bb-b10a43fd764d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T19:36:55.000Z" - }, - "end": { - "$date": "2021-05-12T19:48:27.000Z" - }, - "events": [ - { - "uuid": "c3299bd2-eee8-4015-a249-f08b26f302c4", - "start": { - "$date": "2021-05-12T19:36:55.000Z" - }, - "end": { - "$date": "2021-05-12T19:48:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "21feb2d5-1296-4e5d-992f-cd95d767b67a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-12T19:16:06.000Z" - }, - "end": { - "$date": "2021-05-12T20:13:07.000Z" - }, - "events": [ - { - "uuid": "f13ecdc4-2887-402a-9c6b-d425b60e166c", - "start": { - "$date": "2021-05-12T19:16:06.000Z" - }, - "end": { - "$date": "2021-05-12T20:13:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ae13fb00-104b-4d45-b139-2d8bad21784a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-13T06:26:21.000Z" - }, - "end": { - "$date": "2021-05-13T06:26:45.000Z" - }, - "events": [ - { - "uuid": "574cb83c-c776-4e2e-a2c7-b9a9f96043a1", - "start": { - "$date": "2021-05-13T06:26:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:11:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12bfebc4-599e-4151-a719-2087a071b6d5", - "start": { - "$date": "2021-05-13T07:11:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:32:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8c67547-3ce9-4da8-922e-2b7f15279745", - "start": { - "$date": "2021-05-13T07:32:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:34:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b67d7749-323a-4e7c-a726-b176fd75a0ce", - "start": { - "$date": "2021-05-13T07:34:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:40:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "915c57a0-541e-4fa6-a7ee-65466e5cfb2d", - "start": { - "$date": "2021-05-13T07:40:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:42:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83036596-541a-4083-aff5-885c68ba288e", - "start": { - "$date": "2021-05-13T07:42:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:55:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8b7538f-95a8-46fe-8051-4132bb6dd48e", - "start": { - "$date": "2021-05-13T07:55:21.000Z" - }, - "end": { - "$date": "2021-05-13T07:57:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "802c7e44-87ac-48f4-9960-cbea57c9da1e", - "start": { - "$date": "2021-05-13T07:57:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:02:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "265f8afa-cf80-4744-8239-ad04f3a81f09", - "start": { - "$date": "2021-05-13T08:02:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:10:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d832e6f4-6bbe-4a1a-805f-635f5a6f0ef2", - "start": { - "$date": "2021-05-13T08:10:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:14:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "66f99f73-93c5-450d-8d42-fde33660b24f", - "start": { - "$date": "2021-05-13T08:14:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:17:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78b1ac40-ef0c-4ca0-93dc-b9808c1b4661", - "start": { - "$date": "2021-05-13T08:17:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:18:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b843f464-1597-47fd-b620-f83ed24b973b", - "start": { - "$date": "2021-05-13T08:18:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:20:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01bb9dfa-2466-47c2-9cf2-1e5fcbf11c63", - "start": { - "$date": "2021-05-13T08:20:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:27:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "05c59395-efd0-4bbe-80f0-c54fd32e5d41", - "start": { - "$date": "2021-05-13T08:27:21.000Z" - }, - "end": { - "$date": "2021-05-13T08:29:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b88e5eeb-bfaf-40d0-96d0-185e0f1f0126", - "start": { - "$date": "2021-05-13T08:29:21.000Z" - }, - "end": { - "$date": "2021-05-13T09:03:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32716cfc-6d1a-4875-bd15-6f057fc2dd07", - "start": { - "$date": "2021-05-13T09:03:21.000Z" - }, - "end": { - "$date": "2021-05-13T09:08:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd29b46f-817f-48b9-a0fe-86f5eecf61b9", - "start": { - "$date": "2021-05-13T09:08:21.000Z" - }, - "end": { - "$date": "2021-05-13T09:09:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73215928-154c-41ff-9e9d-85a48b414660", - "start": { - "$date": "2021-05-13T09:09:21.000Z" - }, - "end": { - "$date": "2021-05-13T09:11:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "865fb6ff-d700-44ad-9adb-4cc71ac03826", - "start": { - "$date": "2021-05-13T09:11:21.000Z" - }, - "end": { - "$date": "2021-05-13T10:28:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5c7de46-92bc-46a2-b7a0-3009b70b200c", - "start": { - "$date": "2021-05-13T10:28:21.000Z" - }, - "end": { - "$date": "2021-05-13T10:33:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffa08fca-893f-45b3-8d9f-ca3558eb9a25", - "start": { - "$date": "2021-05-13T10:33:21.000Z" - }, - "end": { - "$date": "2021-05-13T11:08:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58ab232e-2dd5-487e-823e-da83ece2736e", - "start": { - "$date": "2021-05-13T11:08:21.000Z" - }, - "end": { - "$date": "2021-05-13T11:10:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a229f130-1fe3-4d2c-9ed5-f0796eba3f6c", - "start": { - "$date": "2021-05-13T11:10:21.000Z" - }, - "end": { - "$date": "2021-05-13T11:55:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4bdd37ac-e9df-497a-ba6d-0f9fa0852009", - "start": { - "$date": "2021-05-13T11:55:21.000Z" - }, - "end": { - "$date": "2021-05-13T12:04:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f2ca164-885b-462f-9003-280d582c640b", - "start": { - "$date": "2021-05-13T12:04:21.000Z" - }, - "end": { - "$date": "2021-05-13T12:05:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ac70b647-ec0c-446e-8810-e4a2baf7b017", - "start": { - "$date": "2021-05-13T12:05:21.000Z" - }, - "end": { - "$date": "2021-05-13T12:07:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73ea2ed7-84ad-4099-b128-ea382a30abae", - "start": { - "$date": "2021-05-13T12:07:21.000Z" - }, - "end": { - "$date": "2021-05-13T12:56:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1656ad86-4293-4199-9378-e0f239b82a90", - "start": { - "$date": "2021-05-13T12:56:21.000Z" - }, - "end": { - "$date": "2021-05-13T12:58:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb163e32-6136-484f-9f1d-175c8191910b", - "start": { - "$date": "2021-05-13T12:58:21.000Z" - }, - "end": { - "$date": "2021-05-13T13:02:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7216b330-bf9b-4898-907a-5bb94312687d", - "start": { - "$date": "2021-05-13T13:02:21.000Z" - }, - "end": { - "$date": "2021-05-13T06:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "b0af5808-3dc7-49fd-a66d-43ef3483b25f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-12T19:53:52.000Z" - }, - "end": { - "$date": "2021-05-12T21:09:25.000Z" - }, - "events": [ - { - "uuid": "b335e7de-e41b-4def-a548-77abfac5bc26", - "start": { - "$date": "2021-05-12T19:53:52.000Z" - }, - "end": { - "$date": "2021-05-12T21:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cdb2c3ae-3bed-4401-becc-df17e47f947c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T20:26:25.000Z" - }, - "end": { - "$date": "2021-05-12T23:36:28.000Z" - }, - "events": [ - { - "uuid": "caa87554-a704-4d79-b080-87bf14c988a0", - "start": { - "$date": "2021-05-12T20:26:25.000Z" - }, - "end": { - "$date": "2021-05-12T20:44:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7792f4da-cf28-4be8-8d2a-b10f1c926655", - "start": { - "$date": "2021-05-12T20:44:25.000Z" - }, - "end": { - "$date": "2021-05-12T20:45:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7da78538-80f0-49ef-af59-adeb4dfb5fc1", - "start": { - "$date": "2021-05-12T20:45:25.000Z" - }, - "end": { - "$date": "2021-05-12T23:36:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "551b7f9c-bf61-4f5e-a887-5889c92470a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-12T21:09:45.000Z" - }, - "end": { - "$date": "2021-05-12T22:39:09.000Z" - }, - "events": [ - { - "uuid": "49165788-dee7-41ad-a4d8-ab0fdf55da83", - "start": { - "$date": "2021-05-12T21:09:45.000Z" - }, - "end": { - "$date": "2021-05-12T22:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b4aa563-b48b-4f13-8578-ee750652855c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-12T22:23:40.000Z" - }, - "end": { - "$date": "2021-05-12T23:13:11.000Z" - }, - "events": [ - { - "uuid": "ae67a48d-a567-4c93-a873-fc06cc13f4fa", - "start": { - "$date": "2021-05-12T22:23:40.000Z" - }, - "end": { - "$date": "2021-05-12T23:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4bae2db7-8ce9-4e8d-9a83-913cdbdbf70d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-13T00:37:13.000Z" - }, - "end": { - "$date": "2021-05-13T01:14:22.000Z" - }, - "events": [ - { - "uuid": "70f1363b-5394-48ee-9d46-cf45608dc656", - "start": { - "$date": "2021-05-13T00:37:13.000Z" - }, - "end": { - "$date": "2021-05-13T01:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fd118fcf-9154-4df2-b86b-c3f740fb29b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-12T23:56:00.000Z" - }, - "end": { - "$date": "2021-05-13T00:37:10.000Z" - }, - "events": [ - { - "uuid": "c95e4651-31be-4b54-a405-9daf0b0e6955", - "start": { - "$date": "2021-05-12T23:56:00.000Z" - }, - "end": { - "$date": "2021-05-13T00:11:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd4ce8f1-325e-4bab-afbc-006e869e66d1", - "start": { - "$date": "2021-05-13T00:11:00.000Z" - }, - "end": { - "$date": "2021-05-13T00:35:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23849bfb-b973-4118-9bbe-99146f45cdb3", - "start": { - "$date": "2021-05-13T00:35:00.000Z" - }, - "end": { - "$date": "2021-05-13T00:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72472782-0d07-4ae6-a0af-4daabdf89f44", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T00:38:27.000Z" - }, - "end": { - "$date": "2021-05-13T02:00:43.000Z" - }, - "events": [ - { - "uuid": "b951bf99-1e4a-4dfb-b895-37ccf3eb6d15", - "start": { - "$date": "2021-05-13T00:38:27.000Z" - }, - "end": { - "$date": "2021-05-13T01:40:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "28a6c336-a74a-4d53-8be2-12e05e414b72", - "start": { - "$date": "2021-05-13T01:40:27.000Z" - }, - "end": { - "$date": "2021-05-13T01:51:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "185eec40-c88e-4e8b-b9ef-a6b34b837a65", - "start": { - "$date": "2021-05-13T01:51:27.000Z" - }, - "end": { - "$date": "2021-05-13T02:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9bde6d27-d4ad-4a1a-a09d-689f42df7a21", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-13T01:04:22.000Z" - }, - "end": { - "$date": "2021-05-13T02:18:37.000Z" - }, - "events": [ - { - "uuid": "75036fdc-a9f5-4821-a387-fd2d07fa0d5b", - "start": { - "$date": "2021-05-13T01:04:22.000Z" - }, - "end": { - "$date": "2021-05-13T02:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "46028a60-6046-4b1a-8179-ff2038486f9b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T02:01:41.000Z" - }, - "end": { - "$date": "2021-05-13T05:17:10.000Z" - }, - "events": [ - { - "uuid": "3c6d0c39-804e-453c-bbb0-d53c116a2568", - "start": { - "$date": "2021-05-13T02:01:41.000Z" - }, - "end": { - "$date": "2021-05-13T05:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "459d5f71-d7b9-4ccc-9838-9937861b328a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-13T02:07:04.000Z" - }, - "end": { - "$date": "2021-05-13T06:26:08.000Z" - }, - "events": [ - { - "uuid": "b747a046-f267-4b36-a5f1-b2943dcfffd5", - "start": { - "$date": "2021-05-13T02:07:04.000Z" - }, - "end": { - "$date": "2021-05-13T06:26:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "566dc512-5791-4ff6-9bc3-ac06726aeb41", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-13T02:08:03.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:49.000Z" - }, - "events": [ - { - "uuid": "9dedf9c7-8342-43c7-9f4c-113c4ef23600", - "start": { - "$date": "2021-05-13T02:08:03.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a17aa50b-3d2a-439a-93fa-00a99a5f0268", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-13T02:08:31.000Z" - }, - "end": { - "$date": "2021-05-13T02:13:41.000Z" - }, - "events": [ - { - "uuid": "e5f35efa-76ca-440a-b42d-bef7885ca05f", - "start": { - "$date": "2021-05-13T02:08:31.000Z" - }, - "end": { - "$date": "2021-05-13T02:13:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d08fa93-78e6-4432-9634-0db6106a1d70", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-13T02:14:15.000Z" - }, - "end": { - "$date": "2021-05-13T02:46:06.000Z" - }, - "events": [ - { - "uuid": "ba0a0820-cf2e-48b7-8317-11fb0ddeb900", - "start": { - "$date": "2021-05-13T02:14:15.000Z" - }, - "end": { - "$date": "2021-05-13T02:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55f58722-b12a-4104-8aa0-6a62a7826f2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-13T02:14:22.000Z" - }, - "end": { - "$date": "2021-05-13T02:46:19.000Z" - }, - "events": [ - { - "uuid": "6f0896a5-547f-4ff6-bb46-e7bdcb124782", - "start": { - "$date": "2021-05-13T02:14:22.000Z" - }, - "end": { - "$date": "2021-05-13T02:46:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "f2e7f443-0c84-43a3-aba3-7f9b24d41ed8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-13T02:13:45.000Z" - }, - "end": { - "$date": "2021-05-13T03:01:21.000Z" - }, - "events": [ - { - "uuid": "3d561c3b-04bd-48f4-ab12-8ff07d56f408", - "start": { - "$date": "2021-05-13T02:13:45.000Z" - }, - "end": { - "$date": "2021-05-13T02:41:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "adf703b7-9163-44f7-8e34-4b6dfc505bc7", - "start": { - "$date": "2021-05-13T02:41:45.000Z" - }, - "end": { - "$date": "2021-05-13T02:46:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "539778f4-8f81-412d-ba45-3e933f452c69", - "start": { - "$date": "2021-05-13T02:46:45.000Z" - }, - "end": { - "$date": "2021-05-13T02:56:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f9ea8cd7-ea99-4667-9c79-26049b21d060", - "start": { - "$date": "2021-05-13T02:56:45.000Z" - }, - "end": { - "$date": "2021-05-13T03:01:21.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7090a417-38c7-4fc7-9b65-ad289a5af120", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-13T02:37:45.000Z" - }, - "end": { - "$date": "2021-05-13T02:41:31.000Z" - }, - "events": [ - { - "uuid": "0e0f87a2-1407-4cc0-a6d4-fa906aa543d6", - "start": { - "$date": "2021-05-13T02:37:45.000Z" - }, - "end": { - "$date": "2021-05-13T02:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "0d2585e5-705d-4ae9-a43c-6b472110cd14", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-13T02:46:22.000Z" - }, - "end": { - "$date": "2021-05-13T03:51:08.000Z" - }, - "events": [ - { - "uuid": "d844a393-899b-4852-85b8-385ddf4019ff", - "start": { - "$date": "2021-05-13T02:46:22.000Z" - }, - "end": { - "$date": "2021-05-13T03:51:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9954926f-4c1a-4131-b07f-5b01795d1dae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-13T03:45:42.000Z" - }, - "end": { - "$date": "2021-05-13T04:10:01.000Z" - }, - "events": [ - { - "uuid": "10bef4ca-aad3-4aa1-875d-33bb76a11449", - "start": { - "$date": "2021-05-13T03:45:42.000Z" - }, - "end": { - "$date": "2021-05-13T04:28:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e47d2a5-b1a9-42d8-ad96-b04606b7a710", - "start": { - "$date": "2021-05-13T04:28:42.000Z" - }, - "end": { - "$date": "2021-05-13T04:31:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "892aa5d1-a9e3-4226-9997-7ac989a4d583", - "start": { - "$date": "2021-05-13T04:31:42.000Z" - }, - "end": { - "$date": "2021-05-13T04:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5919b78a-f439-4bac-9cc3-b2a5356165eb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-13T03:27:48.000Z" - }, - "end": { - "$date": "2021-05-13T03:56:57.000Z" - }, - "events": [ - { - "uuid": "fc8d3d03-7ac2-4ccd-8590-158572929369", - "start": { - "$date": "2021-05-13T03:27:48.000Z" - }, - "end": { - "$date": "2021-05-13T03:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2933d7b2-d2de-45e5-ac16-84bed5f94df8", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-13T03:29:19.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:51.000Z" - }, - "events": [ - { - "uuid": "a9529256-27f9-4ce9-8b33-5869f5e5f67d", - "start": { - "$date": "2021-05-13T03:29:19.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c42b0aa-f50f-4892-814b-4df66766e04a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-13T03:45:14.000Z" - }, - "end": { - "$date": "2021-05-13T04:10:06.000Z" - }, - "events": [ - { - "uuid": "28a1e05a-ba51-4a97-ae1c-817e4f8c3f8e", - "start": { - "$date": "2021-05-13T03:45:14.000Z" - }, - "end": { - "$date": "2021-05-13T04:10:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4667319-1d4f-443e-80b8-4f4ab0c02912", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-13T04:16:03.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:34.000Z" - }, - "events": [ - { - "uuid": "8796fbcf-bf66-46d5-ae8b-8afbc11e9c8f", - "start": { - "$date": "2021-05-13T04:16:03.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdbfc13a-21d4-458e-9b1e-8ea0b30cf530", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-13T04:16:12.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:42.000Z" - }, - "events": [ - { - "uuid": "b3b5880e-b334-4d7f-a239-ac7198a25e07", - "start": { - "$date": "2021-05-13T04:16:12.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc9040eb-0410-474f-99f1-604d8486303f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-13T04:23:20.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:31.000Z" - }, - "events": [ - { - "uuid": "b3a4c071-8d78-4751-9bd4-00063e22ca29", - "start": { - "$date": "2021-05-13T04:23:20.000Z" - }, - "end": { - "$date": "2021-05-13T04:50:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a38d38ee-ee2b-493b-86d2-fb3f362946ef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-13T04:21:36.000Z" - }, - "end": { - "$date": "2021-05-13T04:43:44.000Z" - }, - "events": [ - { - "uuid": "9654b84a-bdab-4091-9fd7-04fb0d4dc1de", - "start": { - "$date": "2021-05-13T04:21:36.000Z" - }, - "end": { - "$date": "2021-05-13T04:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c6bdaa7c-4e12-498a-9e06-e75ac920e1f1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-13T04:35:59.000Z" - }, - "end": { - "$date": "2021-05-13T05:55:42.000Z" - }, - "events": [ - { - "uuid": "1d160bb5-8454-4673-b498-4f671b19d72a", - "start": { - "$date": "2021-05-13T04:35:59.000Z" - }, - "end": { - "$date": "2021-05-13T05:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "27bbc34a-82f8-41fb-a061-8819f358022d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-13T04:38:48.000Z" - }, - "end": { - "$date": "2021-05-13T06:28:52.000Z" - }, - "events": [ - { - "uuid": "b291650c-a50d-4cdc-a34f-8117518e7f08", - "start": { - "$date": "2021-05-13T04:38:48.000Z" - }, - "end": { - "$date": "2021-05-13T06:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a18af6b4-431f-4c79-ace9-07daf4cf2161", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-13T04:55:39.000Z" - }, - "end": { - "$date": "2021-05-13T05:34:45.000Z" - }, - "events": [ - { - "uuid": "34972fcc-1b85-4300-a1b4-e2367a492740", - "start": { - "$date": "2021-05-13T04:55:39.000Z" - }, - "end": { - "$date": "2021-05-13T05:34:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdd3c2b1-c18b-48c9-97ff-8a002883b9bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-13T04:55:51.000Z" - }, - "end": { - "$date": "2021-05-13T05:34:50.000Z" - }, - "events": [ - { - "uuid": "1f6eab1a-b840-411b-8394-c0de0bc4966a", - "start": { - "$date": "2021-05-13T04:55:51.000Z" - }, - "end": { - "$date": "2021-05-13T05:34:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f356be91-6615-4983-97c6-345ef193770d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-13T04:56:10.000Z" - }, - "end": { - "$date": "2021-05-13T05:34:41.000Z" - }, - "events": [ - { - "uuid": "c02b1122-4acd-4e39-9476-530ca23d5084", - "start": { - "$date": "2021-05-13T04:56:10.000Z" - }, - "end": { - "$date": "2021-05-13T05:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b676c7cf-4197-4b65-8182-3548fec927a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T05:19:35.000Z" - }, - "end": { - "$date": "2021-05-13T16:31:15.000Z" - }, - "events": [ - { - "uuid": "977bd932-a176-40cd-aa55-4f74bb49167b", - "start": { - "$date": "2021-05-13T05:19:35.000Z" - }, - "end": { - "$date": "2021-05-13T05:32:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "afc44b53-5742-4bd7-9eb7-c6e6fd0b9ed3", - "start": { - "$date": "2021-05-13T05:32:35.000Z" - }, - "end": { - "$date": "2021-05-13T05:56:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "699ed496-094f-431d-948d-94b06578c37e", - "start": { - "$date": "2021-05-13T05:56:35.000Z" - }, - "end": { - "$date": "2021-05-13T05:59:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e94d205d-1b16-4ffc-8af8-6a70b00218b6", - "start": { - "$date": "2021-05-13T05:59:35.000Z" - }, - "end": { - "$date": "2021-05-13T06:00:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f29af2a1-9140-4513-9bd5-a4828b5906ec", - "start": { - "$date": "2021-05-13T06:00:35.000Z" - }, - "end": { - "$date": "2021-05-13T06:07:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f1cfca6-6e00-4e05-9252-ef2d32b8dd00", - "start": { - "$date": "2021-05-13T06:07:35.000Z" - }, - "end": { - "$date": "2021-05-13T06:08:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "951c340d-b62e-4d5c-8cd1-46559ef54d48", - "start": { - "$date": "2021-05-13T06:08:35.000Z" - }, - "end": { - "$date": "2021-05-13T06:10:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0603fef-6934-49b9-bef4-c11f2a2b85f4", - "start": { - "$date": "2021-05-13T06:10:35.000Z" - }, - "end": { - "$date": "2021-05-13T15:36:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca8d0fc4-9e23-42a6-8fd9-4928e211c02d", - "start": { - "$date": "2021-05-13T15:36:35.000Z" - }, - "end": { - "$date": "2021-05-13T15:42:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9faa9056-908f-4960-a84a-78288ac35e76", - "start": { - "$date": "2021-05-13T15:42:35.000Z" - }, - "end": { - "$date": "2021-05-13T16:21:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7adba1c-d6d7-4bac-956d-683844706f5b", - "start": { - "$date": "2021-05-13T16:21:35.000Z" - }, - "end": { - "$date": "2021-05-13T16:31:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad724df3-f522-4ae8-a1e9-ab2f796e1dd7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-13T05:42:01.000Z" - }, - "end": { - "$date": "2021-05-13T06:07:47.000Z" - }, - "events": [ - { - "uuid": "3a692f4a-a619-4be1-9733-d601af50b6ac", - "start": { - "$date": "2021-05-13T05:42:01.000Z" - }, - "end": { - "$date": "2021-05-13T06:07:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37dbccbd-e1e6-455d-95d1-854397f908f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-13T06:10:18.000Z" - }, - "end": { - "$date": "2021-05-13T06:43:08.000Z" - }, - "events": [ - { - "uuid": "53a9b72c-7eef-4077-a083-8af58f0ff4ce", - "start": { - "$date": "2021-05-13T06:10:18.000Z" - }, - "end": { - "$date": "2021-05-13T06:43:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "bba28e81-2101-4660-b427-a2e3efa6bb1b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-13T14:13:57.000Z" - }, - "end": { - "$date": "2021-05-13T14:14:01.000Z" - }, - "events": [ - { - "uuid": "b31bc870-323c-4686-bcf9-8ee10bb6cd92", - "start": { - "$date": "2021-05-13T14:13:57.000Z" - }, - "end": { - "$date": "2021-05-13T14:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "ea1ee00d-0274-4fd4-b123-21e29b6cfd93", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-13T16:37:37.000Z" - }, - "end": { - "$date": "2021-05-13T16:37:41.000Z" - }, - "events": [ - { - "uuid": "af94d04e-05ef-40f1-a1aa-13043697b22f", - "start": { - "$date": "2021-05-13T16:37:37.000Z" - }, - "end": { - "$date": "2021-05-13T16:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "840af257-0bc8-49de-9003-121e3157c628", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-13T15:08:50.000Z" - }, - "end": { - "$date": "2021-05-13T17:04:00.000Z" - }, - "events": [ - { - "uuid": "72fb2d87-5633-46a4-8693-5314ab0ee080", - "start": { - "$date": "2021-05-13T15:08:50.000Z" - }, - "end": { - "$date": "2021-05-13T17:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b724521-932a-4b05-9c95-22ad509c218e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T16:31:28.000Z" - }, - "end": { - "$date": "2021-05-13T16:46:26.000Z" - }, - "events": [ - { - "uuid": "bb83219a-8880-43a9-a133-567d5eb83dd5", - "start": { - "$date": "2021-05-13T16:31:28.000Z" - }, - "end": { - "$date": "2021-05-13T16:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "dce91815-52a9-47a4-9766-b4c7fbf17846", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T16:46:27.000Z" - }, - "end": { - "$date": "2021-05-13T17:25:10.000Z" - }, - "events": [ - { - "uuid": "957e1d4f-575d-44ea-94b2-9c4be0c54644", - "start": { - "$date": "2021-05-13T16:46:27.000Z" - }, - "end": { - "$date": "2021-05-13T17:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5924eae5-eb12-4adf-805b-e1723d0be3d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T17:26:40.000Z" - }, - "end": { - "$date": "2021-05-13T17:47:47.000Z" - }, - "events": [ - { - "uuid": "fa05e2c7-c1f7-4cea-90e1-6e7cc72ac118", - "start": { - "$date": "2021-05-13T17:26:40.000Z" - }, - "end": { - "$date": "2021-05-13T17:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cb4382a5-2ee2-411f-ab68-1a9493f967c8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-13T17:31:17.000Z" - }, - "end": { - "$date": "2021-05-13T19:02:41.000Z" - }, - "events": [ - { - "uuid": "cdfc8028-968a-4f6d-9201-b7f50eae7642", - "start": { - "$date": "2021-05-13T17:31:17.000Z" - }, - "end": { - "$date": "2021-05-13T17:37:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c05200ab-2792-4f91-93d3-03efefb7b040", - "start": { - "$date": "2021-05-13T17:37:17.000Z" - }, - "end": { - "$date": "2021-05-13T18:19:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8471f639-2c39-461c-9732-74a22d9d2a22", - "start": { - "$date": "2021-05-13T18:19:17.000Z" - }, - "end": { - "$date": "2021-05-13T18:30:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "28709146-1af8-49aa-be1f-7a616675543b", - "start": { - "$date": "2021-05-13T18:30:17.000Z" - }, - "end": { - "$date": "2021-05-13T18:38:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6425220-4872-4101-a39d-149ba9ed0747", - "start": { - "$date": "2021-05-13T18:38:17.000Z" - }, - "end": { - "$date": "2021-05-13T18:40:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3508aa1b-b0d5-46ce-841f-6d47ea811163", - "start": { - "$date": "2021-05-13T18:40:17.000Z" - }, - "end": { - "$date": "2021-05-13T19:02:41.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fe8e3e7d-cc1d-4c1f-934a-3cce3e41e85c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-13T17:47:51.000Z" - }, - "end": { - "$date": "2021-05-13T18:39:40.000Z" - }, - "events": [ - { - "uuid": "26a89c7a-f74a-4e13-8cbc-92181fcfeb5d", - "start": { - "$date": "2021-05-13T17:47:51.000Z" - }, - "end": { - "$date": "2021-05-13T18:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c1f4528-4cfa-4fff-84ca-c80a62897c8c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T18:07:02.000Z" - }, - "end": { - "$date": "2021-05-13T18:11:43.000Z" - }, - "events": [ - { - "uuid": "8f0b075a-70ba-45d4-b5f0-ac9564628e90", - "start": { - "$date": "2021-05-13T18:07:02.000Z" - }, - "end": { - "$date": "2021-05-13T18:11:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "14fbbc21-13bb-447b-b5e0-08597a098ebc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T18:11:52.000Z" - }, - "end": { - "$date": "2021-05-13T19:02:28.000Z" - }, - "events": [ - { - "uuid": "dc221e8e-c8b3-4a86-a196-c2601225b34f", - "start": { - "$date": "2021-05-13T18:11:52.000Z" - }, - "end": { - "$date": "2021-05-13T19:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "d74c40ca-af02-455a-9979-768c3d14b667", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-13T21:49:54.000Z" - }, - "end": { - "$date": "2021-05-13T23:22:08.000Z" - }, - "events": [ - { - "uuid": "6489164c-cdd2-4244-8fdc-3ce891098ea1", - "start": { - "$date": "2021-05-13T21:49:54.000Z" - }, - "end": { - "$date": "2021-05-13T22:58:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "858416b5-7aa0-4837-8150-f064432ac9ab", - "start": { - "$date": "2021-05-13T22:58:54.000Z" - }, - "end": { - "$date": "2021-05-13T23:39:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1bd0cb4-bb97-4e68-a3d9-385ab048d2cc", - "start": { - "$date": "2021-05-13T23:39:54.000Z" - }, - "end": { - "$date": "2021-05-13T23:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6fe8aabe-7145-4ade-b0e1-3a589fa108d5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-13T20:05:35.000Z" - }, - "end": { - "$date": "2021-05-13T20:54:29.000Z" - }, - "events": [ - { - "uuid": "e69a8fbe-d7b5-407a-aca8-c3f174506586", - "start": { - "$date": "2021-05-13T20:05:35.000Z" - }, - "end": { - "$date": "2021-05-13T20:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "54d3a497-fd2d-4160-9709-e32a3e5f973c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-13T20:24:30.000Z" - }, - "end": { - "$date": "2021-05-13T21:05:55.000Z" - }, - "events": [ - { - "uuid": "eb2cec9a-b087-41eb-9935-7ffb1b20e350", - "start": { - "$date": "2021-05-13T20:24:30.000Z" - }, - "end": { - "$date": "2021-05-13T21:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4e64f6e3-193b-4431-b0d5-0daffca229b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-13T22:50:34.000Z" - }, - "end": { - "$date": "2021-05-14T00:30:47.000Z" - }, - "events": [ - { - "uuid": "4139731b-2c72-4f25-8ab7-1a09aaf48d2d", - "start": { - "$date": "2021-05-13T22:50:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:00:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4643208-ffff-426e-ab99-e5e629590ebc", - "start": { - "$date": "2021-05-13T23:00:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:04:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "490ea52c-cc2f-4df7-ad85-937cb57f1764", - "start": { - "$date": "2021-05-13T23:04:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:06:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd6bec1d-6b15-4bdf-934e-217c0ba8122d", - "start": { - "$date": "2021-05-13T23:06:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:22:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2727e047-dac0-40b2-bd4a-a338244c2523", - "start": { - "$date": "2021-05-13T23:22:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:24:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f42b7251-ed2b-41bc-8dce-9d31c55ab9a8", - "start": { - "$date": "2021-05-13T23:24:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:29:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec61263a-577e-4765-b0f4-00c53e3d7913", - "start": { - "$date": "2021-05-13T23:29:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:31:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3474160-a17f-46b2-8feb-3ed15415f799", - "start": { - "$date": "2021-05-13T23:31:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:32:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "faacbb7d-7013-430a-82f6-06faed49b5e6", - "start": { - "$date": "2021-05-13T23:32:34.000Z" - }, - "end": { - "$date": "2021-05-13T23:34:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6feb84f2-c3eb-4d0e-84ae-bf4c0d8c429f", - "start": { - "$date": "2021-05-13T23:34:34.000Z" - }, - "end": { - "$date": "2021-05-14T00:00:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "24b4b4ff-d76d-4da0-84ab-39b6eb91c058", - "start": { - "$date": "2021-05-14T00:00:34.000Z" - }, - "end": { - "$date": "2021-05-14T00:05:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b7ab8ee-5834-4b67-bebb-1599e733767a", - "start": { - "$date": "2021-05-14T00:05:34.000Z" - }, - "end": { - "$date": "2021-05-14T00:27:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6cea9c3-9adb-450a-bd7e-85d211508b24", - "start": { - "$date": "2021-05-14T00:27:34.000Z" - }, - "end": { - "$date": "2021-05-14T00:30:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b178adde-0c3f-45e7-bd17-620b3e19863f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-13T23:20:24.000Z" - }, - "end": { - "$date": "2021-05-14T00:45:36.000Z" - }, - "events": [ - { - "uuid": "6cafeaa0-0cb8-40bb-a8ca-e79e90cacb4c", - "start": { - "$date": "2021-05-13T23:20:24.000Z" - }, - "end": { - "$date": "2021-05-14T00:45:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a799a5d9-711a-4f79-9d54-6c71a3d3110a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-13T23:26:31.000Z" - }, - "end": { - "$date": "2021-05-13T23:37:07.000Z" - }, - "events": [ - { - "uuid": "f30c9885-dd60-4c16-a33e-71a052126c02", - "start": { - "$date": "2021-05-13T23:26:31.000Z" - }, - "end": { - "$date": "2021-05-13T23:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00272149-32a2-4871-8bf0-9e0e3f2d9d41", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-13T23:34:29.000Z" - }, - "end": { - "$date": "2021-05-14T00:04:32.000Z" - }, - "events": [ - { - "uuid": "c7be0d25-a294-4707-a233-b794184409a2", - "start": { - "$date": "2021-05-13T23:34:29.000Z" - }, - "end": { - "$date": "2021-05-14T00:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6d2f4ac-627b-41c8-841a-d23602f29d36", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-14T00:23:36.000Z" - }, - "end": { - "$date": "2021-05-14T00:49:43.000Z" - }, - "events": [ - { - "uuid": "d2884186-c3d0-4c92-82d3-cb33cc9244b2", - "start": { - "$date": "2021-05-14T00:23:36.000Z" - }, - "end": { - "$date": "2021-05-14T00:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "256dedcb-8b2a-44c6-afa4-5fb6a4fbb4cb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-14T00:35:15.000Z" - }, - "end": { - "$date": "2021-05-14T01:15:28.000Z" - }, - "events": [ - { - "uuid": "25e3caa0-3b5a-4353-92ab-32190de17355", - "start": { - "$date": "2021-05-14T00:35:15.000Z" - }, - "end": { - "$date": "2021-05-14T01:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3ce4698e-983c-4929-b4c0-f1c782dece40", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-14T00:49:20.000Z" - }, - "end": { - "$date": "2021-05-14T00:55:34.000Z" - }, - "events": [ - { - "uuid": "819f6585-8272-43fe-98bd-b9b75bf15f2c", - "start": { - "$date": "2021-05-14T00:49:20.000Z" - }, - "end": { - "$date": "2021-05-14T00:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8df8e394-413e-4d1e-a066-e1a272739380", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-14T01:35:53.000Z" - }, - "end": { - "$date": "2021-05-14T02:07:49.000Z" - }, - "events": [ - { - "uuid": "b4d0f3f1-413b-4b4b-a21f-8276c1ebc163", - "start": { - "$date": "2021-05-14T01:35:53.000Z" - }, - "end": { - "$date": "2021-05-14T02:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9a319cea-89c7-45ba-9c13-24ef076b528c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-14T01:07:19.000Z" - }, - "end": { - "$date": "2021-05-14T01:48:04.000Z" - }, - "events": [ - { - "uuid": "b2b8b631-2ac4-4875-ab89-2fb1b9450d0a", - "start": { - "$date": "2021-05-14T01:07:19.000Z" - }, - "end": { - "$date": "2021-05-14T01:48:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dd60ce6f-c219-4cc0-b79c-3db1df566a9c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-14T01:15:53.000Z" - }, - "end": { - "$date": "2021-05-14T01:25:04.000Z" - }, - "events": [ - { - "uuid": "56a8c046-af8b-4879-a2d3-ba7097485599", - "start": { - "$date": "2021-05-14T01:15:53.000Z" - }, - "end": { - "$date": "2021-05-14T01:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "514fd25c-ca0f-4497-8252-f70fa7f4ec37", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-14T01:28:24.000Z" - }, - "end": { - "$date": "2021-05-14T01:34:19.000Z" - }, - "events": [ - { - "uuid": "df42abf6-2b56-450c-a72d-b2d0524ffc6d", - "start": { - "$date": "2021-05-14T01:28:24.000Z" - }, - "end": { - "$date": "2021-05-14T01:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f0e59eec-3256-47d0-ac8c-929e2f897196", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T01:29:26.000Z" - }, - "end": { - "$date": "2021-05-14T01:48:46.000Z" - }, - "events": [ - { - "uuid": "202c6025-45dd-4276-85e0-9c2a13d0c63e", - "start": { - "$date": "2021-05-14T01:29:26.000Z" - }, - "end": { - "$date": "2021-05-14T01:48:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7137255-cdbc-483c-a5d7-c37e0ebefd53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-14T01:35:57.000Z" - }, - "end": { - "$date": "2021-05-14T02:07:49.000Z" - }, - "events": [ - { - "uuid": "418486f6-582a-47a7-9a38-952654f35472", - "start": { - "$date": "2021-05-14T01:35:57.000Z" - }, - "end": { - "$date": "2021-05-14T02:07:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f19b3f2a-fd95-431a-aab9-84537dd20529", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-14T02:04:58.000Z" - }, - "end": { - "$date": "2021-05-14T03:33:10.000Z" - }, - "events": [ - { - "uuid": "225acaa5-998a-4664-8324-c4c04666a71b", - "start": { - "$date": "2021-05-14T02:04:58.000Z" - }, - "end": { - "$date": "2021-05-14T03:33:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab88d2be-4261-4011-854a-4419899810f2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-14T01:48:30.000Z" - }, - "end": { - "$date": "2021-05-14T04:33:48.000Z" - }, - "events": [ - { - "uuid": "f3d170c9-5596-45ae-b15d-7010246c7389", - "start": { - "$date": "2021-05-14T01:48:30.000Z" - }, - "end": { - "$date": "2021-05-14T04:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "34a8e568-3cd1-4ee8-b08d-7f75f67574b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T01:49:26.000Z" - }, - "end": { - "$date": "2021-05-14T03:58:05.000Z" - }, - "events": [ - { - "uuid": "209485eb-9606-4c77-ae74-39e969de35eb", - "start": { - "$date": "2021-05-14T01:49:26.000Z" - }, - "end": { - "$date": "2021-05-14T03:58:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "195fe78b-086f-4eb3-b038-983f683193c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-14T01:52:20.000Z" - }, - "end": { - "$date": "2021-05-14T02:00:34.000Z" - }, - "events": [ - { - "uuid": "73e32cf3-e7cb-4137-9f63-b181933feb3d", - "start": { - "$date": "2021-05-14T01:52:20.000Z" - }, - "end": { - "$date": "2021-05-14T02:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "822987c1-60b7-4c0b-b993-e398c8d584ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-14T02:14:20.000Z" - }, - "end": { - "$date": "2021-05-14T02:40:55.000Z" - }, - "events": [ - { - "uuid": "580ad2e7-5fd0-4210-a5f6-e9782358ac43", - "start": { - "$date": "2021-05-14T02:14:20.000Z" - }, - "end": { - "$date": "2021-05-14T02:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f107210-fc56-4977-99a3-50484de2adac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-14T02:14:24.000Z" - }, - "end": { - "$date": "2021-05-14T02:41:11.000Z" - }, - "events": [ - { - "uuid": "1766fe0e-5309-4bf2-8395-f37a8512e16e", - "start": { - "$date": "2021-05-14T02:14:24.000Z" - }, - "end": { - "$date": "2021-05-14T02:41:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "690f8513-4d29-4ce7-90cf-34e890eb7985", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-14T02:17:26.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:30.000Z" - }, - "events": [ - { - "uuid": "14097be3-7abc-4364-8ca5-627c876e773c", - "start": { - "$date": "2021-05-14T02:17:26.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8e9e1504-4d87-4f3a-b76d-17129cb762bf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-14T02:29:59.000Z" - }, - "end": { - "$date": "2021-05-14T03:21:40.000Z" - }, - "events": [ - { - "uuid": "d8a14119-8d01-4a9f-ac1e-de165a591322", - "start": { - "$date": "2021-05-14T02:29:59.000Z" - }, - "end": { - "$date": "2021-05-14T03:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a20cce46-cf37-485f-a697-669524584a3f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-14T02:33:41.000Z" - }, - "end": { - "$date": "2021-05-14T04:33:58.000Z" - }, - "events": [ - { - "uuid": "00ec63fc-1005-431c-8f15-866f6da67280", - "start": { - "$date": "2021-05-14T02:33:41.000Z" - }, - "end": { - "$date": "2021-05-14T04:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ac01f43-fc31-4436-87cb-3d91a390d537", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-14T02:45:35.000Z" - }, - "end": { - "$date": "2021-05-14T03:23:31.000Z" - }, - "events": [ - { - "uuid": "70d86240-103d-434a-8630-1afc84662705", - "start": { - "$date": "2021-05-14T02:45:35.000Z" - }, - "end": { - "$date": "2021-05-14T03:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0faa8a9b-bd7f-4a10-b909-6001ebd867d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-14T02:45:38.000Z" - }, - "end": { - "$date": "2021-05-14T03:23:45.000Z" - }, - "events": [ - { - "uuid": "92b8a88f-6c9b-4310-9848-b0d12ff452ea", - "start": { - "$date": "2021-05-14T02:45:38.000Z" - }, - "end": { - "$date": "2021-05-14T03:23:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9814eb97-a592-4a85-bd1a-7804cb12241d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T03:11:05.000Z" - }, - "end": { - "$date": "2021-05-14T03:15:43.000Z" - }, - "events": [ - { - "uuid": "18d10164-dde1-4e85-850b-9b4dba908661", - "start": { - "$date": "2021-05-14T03:11:05.000Z" - }, - "end": { - "$date": "2021-05-14T03:15:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e4232c9b-9b5c-45fa-a793-8b72dbf49be6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T03:16:12.000Z" - }, - "end": { - "$date": "2021-05-14T03:25:55.000Z" - }, - "events": [ - { - "uuid": "a4320827-101e-4dc6-b2ef-d4dde0eba44d", - "start": { - "$date": "2021-05-14T03:16:12.000Z" - }, - "end": { - "$date": "2021-05-14T03:25:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae6be065-d5f1-4dbb-abfb-f6fa2e594314", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-14T03:47:07.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:22.000Z" - }, - "events": [ - { - "uuid": "c31026bd-1659-4f98-b6b2-9e9c590cf393", - "start": { - "$date": "2021-05-14T03:47:07.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49174f50-b0fe-4b47-a2a7-871c73fed8f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-14T03:25:02.000Z" - }, - "end": { - "$date": "2021-05-14T03:28:08.000Z" - }, - "events": [ - { - "uuid": "13dc7832-c2d3-4ecc-b00d-807dc2267b8d", - "start": { - "$date": "2021-05-14T03:25:02.000Z" - }, - "end": { - "$date": "2021-05-14T03:28:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9a0e9918-ca04-415c-9fd8-b27e5c92fa0c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T03:28:47.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:24.000Z" - }, - "events": [ - { - "uuid": "fb863169-59ab-4142-b497-9d0ec38647d7", - "start": { - "$date": "2021-05-14T03:28:47.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "9218f651-a6c6-49e3-a500-b2581250002f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-14T03:34:50.000Z" - }, - "end": { - "$date": "2021-05-14T04:37:52.000Z" - }, - "events": [ - { - "uuid": "cc8995e6-25e1-41a9-a54d-9271eaef4cb6", - "start": { - "$date": "2021-05-14T03:34:50.000Z" - }, - "end": { - "$date": "2021-05-14T04:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e0e30e0-262a-4fdf-a79a-baa5cd7652a5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-14T03:46:19.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:31.000Z" - }, - "events": [ - { - "uuid": "1f6745dd-4a7c-474f-97de-d11e65213618", - "start": { - "$date": "2021-05-14T03:46:19.000Z" - }, - "end": { - "$date": "2021-05-14T04:17:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "cdf2d10c-ff37-45ac-82c9-cb67cc2f6e84", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-14T03:40:57.000Z" - }, - "end": { - "$date": "2021-05-14T04:36:14.000Z" - }, - "events": [ - { - "uuid": "a5ec4ffc-657a-48a4-a9d1-9dfed0112d0d", - "start": { - "$date": "2021-05-14T03:40:57.000Z" - }, - "end": { - "$date": "2021-05-14T04:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "770da195-cd4b-44f9-a93c-24b19712cc96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T04:00:34.000Z" - }, - "end": { - "$date": "2021-05-14T04:21:11.000Z" - }, - "events": [ - { - "uuid": "73712476-60f9-4ce4-95d4-acb8d9ee8418", - "start": { - "$date": "2021-05-14T04:00:34.000Z" - }, - "end": { - "$date": "2021-05-14T04:21:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "047bf8a0-d71d-47f1-b7f0-d8b3d9ba593f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-14T04:18:50.000Z" - }, - "end": { - "$date": "2021-05-14T04:36:59.000Z" - }, - "events": [ - { - "uuid": "f8e16919-87db-422b-8375-88aa999129da", - "start": { - "$date": "2021-05-14T04:18:50.000Z" - }, - "end": { - "$date": "2021-05-14T04:36:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "812311ea-0aac-47e5-95bb-d013348b1703", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-14T04:18:47.000Z" - }, - "end": { - "$date": "2021-05-14T04:37:00.000Z" - }, - "events": [ - { - "uuid": "73852248-754f-4dad-a10e-6490388aae12", - "start": { - "$date": "2021-05-14T04:18:47.000Z" - }, - "end": { - "$date": "2021-05-14T04:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "720e379f-3312-4a78-83b0-5647f3f01dcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T04:19:15.000Z" - }, - "end": { - "$date": "2021-05-14T04:36:50.000Z" - }, - "events": [ - { - "uuid": "fc4318cc-2e93-47cd-883b-5348aa1ab06d", - "start": { - "$date": "2021-05-14T04:19:15.000Z" - }, - "end": { - "$date": "2021-05-14T04:36:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b047abca-93eb-486e-b43a-f56cb9477dee", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-14T04:47:11.000Z" - }, - "end": { - "$date": "2021-05-14T05:27:42.000Z" - }, - "events": [ - { - "uuid": "b32e3eea-dee8-4b81-bcae-5f92612069b0", - "start": { - "$date": "2021-05-14T04:47:11.000Z" - }, - "end": { - "$date": "2021-05-14T05:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "53886989-ff42-4c8a-992d-e6df35398501", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T04:46:27.000Z" - }, - "end": { - "$date": "2021-05-14T05:32:49.000Z" - }, - "events": [ - { - "uuid": "8b8339a6-fe1a-44ef-969a-33bced299d91", - "start": { - "$date": "2021-05-14T04:46:27.000Z" - }, - "end": { - "$date": "2021-05-14T05:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "abb2c7f4-5f2c-4159-9495-d1cdf34af24e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-14T04:47:34.000Z" - }, - "end": { - "$date": "2021-05-14T05:06:13.000Z" - }, - "events": [ - { - "uuid": "cbe8acc3-99c0-4cc0-90e8-32cd0b631ccf", - "start": { - "$date": "2021-05-14T04:47:34.000Z" - }, - "end": { - "$date": "2021-05-14T05:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "b0952254-a70e-4838-9017-88e854c6cbc5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-14T05:08:01.000Z" - }, - "end": { - "$date": "2021-05-14T09:45:23.000Z" - }, - "events": [ - { - "uuid": "7b80ca87-3343-4228-ae77-5c1be0d4778e", - "start": { - "$date": "2021-05-14T05:08:01.000Z" - }, - "end": { - "$date": "2021-05-14T09:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5da85cde-6aa5-451d-9be7-8323caa58b6e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-14T05:33:47.000Z" - }, - "end": { - "$date": "2021-05-14T05:55:43.000Z" - }, - "events": [ - { - "uuid": "dceda54a-8cfc-44f8-aec9-e3e66c6f7b1f", - "start": { - "$date": "2021-05-14T05:33:47.000Z" - }, - "end": { - "$date": "2021-05-14T05:55:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "2b6f2efd-29b8-41e8-9b15-90dd659c5803", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T05:34:49.000Z" - }, - "end": { - "$date": "2021-05-14T05:44:19.000Z" - }, - "events": [ - { - "uuid": "a74dc69b-7839-4462-9358-412060f6d7f4", - "start": { - "$date": "2021-05-14T05:34:49.000Z" - }, - "end": { - "$date": "2021-05-14T05:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "29eb58d5-2ac4-4bbe-8917-b7dc4542772f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-14T14:21:01.000Z" - }, - "end": { - "$date": "2021-05-14T15:44:47.000Z" - }, - "events": [ - { - "uuid": "978e0f6b-c86c-4c28-98fc-2f20619406bb", - "start": { - "$date": "2021-05-14T14:21:01.000Z" - }, - "end": { - "$date": "2021-05-14T15:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c40d0312-f47f-4e8b-b38e-8d043fbbb321", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T15:00:49.000Z" - }, - "end": { - "$date": "2021-05-14T21:03:06.000Z" - }, - "events": [ - { - "uuid": "9b47ee31-63ff-4d47-90f1-9bfe79a18591", - "start": { - "$date": "2021-05-14T15:00:49.000Z" - }, - "end": { - "$date": "2021-05-14T15:13:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "94fac3c5-2da1-46bd-b47b-eb173bf76bf5", - "start": { - "$date": "2021-05-14T15:13:49.000Z" - }, - "end": { - "$date": "2021-05-14T15:25:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64378a1c-c9c6-437a-ba3d-3a68eaa632ff", - "start": { - "$date": "2021-05-14T15:25:49.000Z" - }, - "end": { - "$date": "2021-05-14T17:55:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8a80266-b99f-4369-afd4-d63c80817349", - "start": { - "$date": "2021-05-14T17:55:49.000Z" - }, - "end": { - "$date": "2021-05-14T18:07:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca52b366-f61a-4397-9f24-730ccc31a460", - "start": { - "$date": "2021-05-14T18:07:49.000Z" - }, - "end": { - "$date": "2021-05-14T18:09:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a68d803-d631-462b-901b-9dc9d6aba20f", - "start": { - "$date": "2021-05-14T18:09:49.000Z" - }, - "end": { - "$date": "2021-05-14T19:15:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b89bb804-866c-4961-9dfe-fc094614f664", - "start": { - "$date": "2021-05-14T19:15:49.000Z" - }, - "end": { - "$date": "2021-05-14T19:25:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f050eafd-f177-4c4b-ae56-e9b90b5b035c", - "start": { - "$date": "2021-05-14T19:25:49.000Z" - }, - "end": { - "$date": "2021-05-14T19:28:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45eaefd7-f6a1-4207-b728-1548fa8262d8", - "start": { - "$date": "2021-05-14T19:28:49.000Z" - }, - "end": { - "$date": "2021-05-14T21:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3fa4846b-a19a-4d07-8b7b-c5c88d8b8c3d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-14T16:10:36.000Z" - }, - "end": { - "$date": "2021-05-14T16:57:01.000Z" - }, - "events": [ - { - "uuid": "7b387e47-28e9-4ede-b7ef-b54a4defaf15", - "start": { - "$date": "2021-05-14T16:10:36.000Z" - }, - "end": { - "$date": "2021-05-14T16:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "65f2f068-cc1f-45de-a6d4-e9b47ea859bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-14T18:04:54.000Z" - }, - "end": { - "$date": "2021-05-14T23:54:53.000Z" - }, - "events": [ - { - "uuid": "1c601bf9-b2c5-47ad-8f53-8ddb4c4ca8bb", - "start": { - "$date": "2021-05-14T18:04:54.000Z" - }, - "end": { - "$date": "2021-05-14T18:11:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62f0757f-61b8-4c52-9090-8e48fddeb412", - "start": { - "$date": "2021-05-14T18:11:54.000Z" - }, - "end": { - "$date": "2021-05-14T18:12:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2713744-7a97-4214-aaa5-3ea57ea93c1b", - "start": { - "$date": "2021-05-14T18:12:54.000Z" - }, - "end": { - "$date": "2021-05-14T18:14:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2b0982cf-a0b2-4bbe-809b-84ce0a1cb2f0", - "start": { - "$date": "2021-05-14T18:14:54.000Z" - }, - "end": { - "$date": "2021-05-14T18:18:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e10e837-1542-46cf-85f4-2f54da5b47d4", - "start": { - "$date": "2021-05-14T18:18:54.000Z" - }, - "end": { - "$date": "2021-05-14T18:26:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4f98ddfc-f189-4afb-b55a-b793616d5ed4", - "start": { - "$date": "2021-05-14T18:26:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:00:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a802c94-2f01-476a-aad0-178a1cb9925d", - "start": { - "$date": "2021-05-14T19:00:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:02:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78fe56ff-06e9-4b64-8f6b-8cf5554022dd", - "start": { - "$date": "2021-05-14T19:02:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:04:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d964059b-e210-47d8-aa81-11ec174bae09", - "start": { - "$date": "2021-05-14T19:04:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:06:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d158b9e-bf04-4e55-bf21-44c280227d43", - "start": { - "$date": "2021-05-14T19:06:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:07:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f875f40c-15fe-41a5-95af-a72e0367274b", - "start": { - "$date": "2021-05-14T19:07:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:10:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0c0ceec5-59d1-4537-a716-ddf88c68b58a", - "start": { - "$date": "2021-05-14T19:10:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:14:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b1f83a71-9fb8-48d1-ba73-5f10f68c4055", - "start": { - "$date": "2021-05-14T19:14:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:53:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19491551-4864-416f-9229-05b24567a971", - "start": { - "$date": "2021-05-14T19:53:54.000Z" - }, - "end": { - "$date": "2021-05-14T19:57:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec7e317b-b17b-49f2-9406-392f56a6a80c", - "start": { - "$date": "2021-05-14T19:57:54.000Z" - }, - "end": { - "$date": "2021-05-14T20:06:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1014f775-5ba9-458c-9888-65be8f94b2a2", - "start": { - "$date": "2021-05-14T20:06:54.000Z" - }, - "end": { - "$date": "2021-05-14T20:42:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b59ec879-9734-48f5-a414-6102824e9ed4", - "start": { - "$date": "2021-05-14T20:42:54.000Z" - }, - "end": { - "$date": "2021-05-14T20:44:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7153cc8c-88ff-4557-957a-b689aad5f04c", - "start": { - "$date": "2021-05-14T20:44:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:14:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "46c6831e-5a24-4a5d-a3b4-e26441e969fd", - "start": { - "$date": "2021-05-14T21:14:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:17:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7bb7c9ab-64f2-4dc5-9870-ace21e5c5953", - "start": { - "$date": "2021-05-14T21:17:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:18:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7bf5872-741e-4d4e-93a1-f6eadfadb96b", - "start": { - "$date": "2021-05-14T21:18:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:20:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9172139-39c5-480d-b64a-9c015930c41c", - "start": { - "$date": "2021-05-14T21:20:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:33:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f0337cb-3ff7-4ed0-abc1-56b3efb5fc3d", - "start": { - "$date": "2021-05-14T21:33:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:36:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2b93bcf5-47a3-4c4d-8b43-03f988c21102", - "start": { - "$date": "2021-05-14T21:36:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:54:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "794d6155-113a-48a3-929a-b886ea23d994", - "start": { - "$date": "2021-05-14T21:54:54.000Z" - }, - "end": { - "$date": "2021-05-14T21:56:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4c0e979-3721-4b32-9847-99c1c5e35d42", - "start": { - "$date": "2021-05-14T21:56:54.000Z" - }, - "end": { - "$date": "2021-05-14T22:50:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03594f1d-f5fe-4b03-bdbb-2bcd0b09ecbd", - "start": { - "$date": "2021-05-14T22:50:54.000Z" - }, - "end": { - "$date": "2021-05-14T22:52:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26859040-a369-4d9d-a648-ab40e7f5c7b0", - "start": { - "$date": "2021-05-14T22:52:54.000Z" - }, - "end": { - "$date": "2021-05-14T23:06:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48e8b261-3e79-428b-bf6d-e322eaad9162", - "start": { - "$date": "2021-05-14T23:06:54.000Z" - }, - "end": { - "$date": "2021-05-14T23:08:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a250d4cb-8993-4b17-8fc8-7923de09f174", - "start": { - "$date": "2021-05-14T23:08:54.000Z" - }, - "end": { - "$date": "2021-05-14T23:52:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7d6f23e1-eef1-49ee-b0ff-b6303e01fff0", - "start": { - "$date": "2021-05-14T23:52:54.000Z" - }, - "end": { - "$date": "2021-05-14T23:54:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bc3268b6-0520-4cc2-9eb8-430e798b779a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-14T19:03:27.000Z" - }, - "end": { - "$date": "2021-05-14T20:45:09.000Z" - }, - "events": [ - { - "uuid": "b42d8e28-dc8c-42e2-9ec0-e81ec0423e97", - "start": { - "$date": "2021-05-14T19:03:27.000Z" - }, - "end": { - "$date": "2021-05-14T20:45:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d115fb2d-ed61-4418-acb2-89a9d030b74d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T21:06:01.000Z" - }, - "end": { - "$date": "2021-05-14T21:21:42.000Z" - }, - "events": [ - { - "uuid": "f590ea81-318f-430f-9051-1789e3d76bba", - "start": { - "$date": "2021-05-14T21:06:01.000Z" - }, - "end": { - "$date": "2021-05-14T21:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6df8a849-07ff-4ec3-96c8-faecfe62e984", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T21:25:07.000Z" - }, - "end": { - "$date": "2021-05-14T21:45:43.000Z" - }, - "events": [ - { - "uuid": "ad9f8b06-b28e-477d-a912-5c8eaa6f8f19", - "start": { - "$date": "2021-05-14T21:25:07.000Z" - }, - "end": { - "$date": "2021-05-14T21:45:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d8b376e3-bd33-452e-a14b-0e6ad60bdce5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T21:45:52.000Z" - }, - "end": { - "$date": "2021-05-14T23:06:52.000Z" - }, - "events": [ - { - "uuid": "ad1ec503-4a64-4116-99c9-c63d665380c5", - "start": { - "$date": "2021-05-14T21:45:52.000Z" - }, - "end": { - "$date": "2021-05-14T23:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "2f121627-7c46-4ae1-9896-9594ee21cf88", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-14T22:49:32.000Z" - }, - "end": { - "$date": "2021-05-15T01:15:52.000Z" - }, - "events": [ - { - "uuid": "0462de18-5c69-4d48-8a6d-cf82115ffa66", - "start": { - "$date": "2021-05-14T22:49:32.000Z" - }, - "end": { - "$date": "2021-05-15T01:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "46ec3058-aa0b-4250-85c6-461bf5ca41c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-14T23:08:06.000Z" - }, - "end": { - "$date": "2021-05-14T23:32:14.000Z" - }, - "events": [ - { - "uuid": "eebde38d-5cdf-48e0-8d05-18b55e738ab0", - "start": { - "$date": "2021-05-14T23:08:06.000Z" - }, - "end": { - "$date": "2021-05-14T23:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "42a20528-6bda-4beb-9cf6-787252856409", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T23:15:26.000Z" - }, - "end": { - "$date": "2021-05-14T23:16:46.000Z" - }, - "events": [ - { - "uuid": "f843214d-ed4f-4dbf-b316-6413f4b7a6da", - "start": { - "$date": "2021-05-14T23:15:26.000Z" - }, - "end": { - "$date": "2021-05-14T23:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d7bea410-d7cd-41a6-82de-3ed54a9d66d4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-14T23:18:03.000Z" - }, - "end": { - "$date": "2021-05-15T00:43:17.000Z" - }, - "events": [ - { - "uuid": "02836fe4-3277-4eb4-a7c0-99b6c72293a0", - "start": { - "$date": "2021-05-14T23:18:03.000Z" - }, - "end": { - "$date": "2021-05-15T00:09:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6525573f-d1ef-4404-9daf-355009a0e35e", - "start": { - "$date": "2021-05-15T00:09:03.000Z" - }, - "end": { - "$date": "2021-05-15T00:11:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b5d80365-a45d-4b68-a4f2-8e3edd801db9", - "start": { - "$date": "2021-05-15T00:11:03.000Z" - }, - "end": { - "$date": "2021-05-15T00:13:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0dc7f33f-a729-403e-8c9b-c93a291f20d9", - "start": { - "$date": "2021-05-15T00:13:03.000Z" - }, - "end": { - "$date": "2021-05-15T00:23:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "428eee9e-b5bc-48c3-9b6e-98e9c778fc61", - "start": { - "$date": "2021-05-15T00:23:03.000Z" - }, - "end": { - "$date": "2021-05-15T00:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "86c49199-ef98-41d3-845a-8268c51ea6be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T23:19:07.000Z" - }, - "end": { - "$date": "2021-05-14T23:52:02.000Z" - }, - "events": [ - { - "uuid": "001697e2-4d3a-43d1-9b12-d3570f68a549", - "start": { - "$date": "2021-05-14T23:19:07.000Z" - }, - "end": { - "$date": "2021-05-14T23:52:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "fc16cb2c-c337-4af7-8ccb-fd9e4aa2e7c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-14T23:54:28.000Z" - }, - "end": { - "$date": "2021-05-15T00:04:23.000Z" - }, - "events": [ - { - "uuid": "a9c22476-8555-40f4-b0a9-beee80e9b523", - "start": { - "$date": "2021-05-14T23:54:28.000Z" - }, - "end": { - "$date": "2021-05-15T00:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c84e97b-e5e9-46ab-861d-262e7addcb0e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-15T01:06:41.000Z" - }, - "end": { - "$date": "2021-05-15T01:35:47.000Z" - }, - "events": [ - { - "uuid": "c5f39bad-f43b-427c-868a-bc03ac7ff0c4", - "start": { - "$date": "2021-05-15T01:06:41.000Z" - }, - "end": { - "$date": "2021-05-15T01:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "74f3eb2b-ee9e-4ff5-9f96-61ca74508a72", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-15T01:15:09.000Z" - }, - "end": { - "$date": "2021-05-15T07:21:29.000Z" - }, - "events": [ - { - "uuid": "1a020202-bbf9-4988-ad8f-69eb669a750f", - "start": { - "$date": "2021-05-15T01:15:09.000Z" - }, - "end": { - "$date": "2021-05-15T07:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6892cfb7-4003-44ea-9c99-e4304db34d4f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-15T01:39:12.000Z" - }, - "end": { - "$date": "2021-05-15T02:27:35.000Z" - }, - "events": [ - { - "uuid": "4d627b1c-174f-4a7a-8ed4-780dd10d0ee8", - "start": { - "$date": "2021-05-15T01:39:12.000Z" - }, - "end": { - "$date": "2021-05-15T02:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "73e6f2c9-f24a-4f53-9f51-ffdd80ddbf3e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T01:51:53.000Z" - }, - "end": { - "$date": "2021-05-15T04:09:17.000Z" - }, - "events": [ - { - "uuid": "54c06624-10b0-42c0-ac9e-a82bb235f75c", - "start": { - "$date": "2021-05-15T01:51:53.000Z" - }, - "end": { - "$date": "2021-05-15T04:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "57c722fa-0f07-4c4c-86e9-b37b97f78bc9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-15T02:40:41.000Z" - }, - "end": { - "$date": "2021-05-15T03:11:19.000Z" - }, - "events": [ - { - "uuid": "7f07fc38-b20e-444a-aebc-5f08b8ad3d6c", - "start": { - "$date": "2021-05-15T02:40:41.000Z" - }, - "end": { - "$date": "2021-05-15T03:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8000ae04-2181-480a-ac57-13ab2cf5706d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-15T03:11:03.000Z" - }, - "end": { - "$date": "2021-05-15T05:17:41.000Z" - }, - "events": [ - { - "uuid": "63694f68-00af-4ba6-bc0c-155a5ef9b9a4", - "start": { - "$date": "2021-05-15T03:11:03.000Z" - }, - "end": { - "$date": "2021-05-15T05:45:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "916358a9-c6b1-467e-bfbf-22d6ef331f33", - "start": { - "$date": "2021-05-15T05:45:03.000Z" - }, - "end": { - "$date": "2021-05-15T05:17:41.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6ff475e7-5837-40d3-b8fa-13ce06e1c921", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-15T02:46:38.000Z" - }, - "end": { - "$date": "2021-05-15T02:47:43.000Z" - }, - "events": [ - { - "uuid": "e946d64f-5e6d-43a0-9260-c4cc49b3ff93", - "start": { - "$date": "2021-05-15T02:46:38.000Z" - }, - "end": { - "$date": "2021-05-15T02:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e194551e-304b-4372-ae05-686e5889a5f8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-15T02:47:58.000Z" - }, - "end": { - "$date": "2021-05-15T03:04:34.000Z" - }, - "events": [ - { - "uuid": "0539146a-07f2-4579-b111-262c88a16451", - "start": { - "$date": "2021-05-15T02:47:58.000Z" - }, - "end": { - "$date": "2021-05-15T03:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "27c29f52-23f8-406c-bef7-8ed9b41c6859", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-15T03:09:15.000Z" - }, - "end": { - "$date": "2021-05-15T05:21:31.000Z" - }, - "events": [ - { - "uuid": "6df810fd-59a3-405e-8eb3-4bac7baa6363", - "start": { - "$date": "2021-05-15T03:09:15.000Z" - }, - "end": { - "$date": "2021-05-15T05:21:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a71d2f1-e7b2-47b6-aa1f-6e68d219ae45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-15T21:30:43.000Z" - }, - "end": { - "$date": "2021-05-15T21:53:50.000Z" - }, - "events": [ - { - "uuid": "9ac6949f-d85e-49a5-a08b-cdf6538e5f2e", - "start": { - "$date": "2021-05-15T21:30:43.000Z" - }, - "end": { - "$date": "2021-05-15T23:59:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3e9411f-caee-45f2-844a-b77d6e396cf0", - "start": { - "$date": "2021-05-15T23:59:43.000Z" - }, - "end": { - "$date": "2021-05-16T03:29:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df2baca2-f50a-4145-a471-f3882f71d5c8", - "start": { - "$date": "2021-05-16T03:29:43.000Z" - }, - "end": { - "$date": "2021-05-16T03:39:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d50f1ad7-fde5-44fe-a96f-f36536564bc0", - "start": { - "$date": "2021-05-16T03:39:43.000Z" - }, - "end": { - "$date": "2021-05-16T09:34:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "51505530-51d4-43c2-9b30-d539b8ce84ce", - "start": { - "$date": "2021-05-16T09:34:43.000Z" - }, - "end": { - "$date": "2021-05-16T09:38:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "facf7535-ed3d-4f6c-9fa4-df0634c6fe84", - "start": { - "$date": "2021-05-16T09:38:43.000Z" - }, - "end": { - "$date": "2021-05-16T09:54:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d185cc4b-4d4f-4b93-a3e8-e23212adb869", - "start": { - "$date": "2021-05-16T09:54:43.000Z" - }, - "end": { - "$date": "2021-05-16T11:19:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f183c3c9-9b7b-405e-99df-dd4ee3f96b4f", - "start": { - "$date": "2021-05-16T11:19:43.000Z" - }, - "end": { - "$date": "2021-05-16T11:25:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43c5b617-3fbc-4485-878d-de1cdd0176d9", - "start": { - "$date": "2021-05-16T11:25:43.000Z" - }, - "end": { - "$date": "2021-05-16T15:11:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e8ea168-5719-4de9-bbd5-7c206f0f703d", - "start": { - "$date": "2021-05-16T15:11:43.000Z" - }, - "end": { - "$date": "2021-05-16T15:31:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a612b242-458b-4191-b813-136b5a92b475", - "start": { - "$date": "2021-05-16T15:31:43.000Z" - }, - "end": { - "$date": "2021-05-15T21:53:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8191037f-13fd-4f07-bbc8-f93803561ba4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T03:35:14.000Z" - }, - "end": { - "$date": "2021-05-15T03:37:38.000Z" - }, - "events": [ - { - "uuid": "8488c0d5-5bd6-417f-b203-753f787802ac", - "start": { - "$date": "2021-05-15T03:35:14.000Z" - }, - "end": { - "$date": "2021-05-15T03:37:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "72e32328-e10b-415f-a488-39d16ef68bfe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T03:44:24.000Z" - }, - "end": { - "$date": "2021-05-15T03:49:14.000Z" - }, - "events": [ - { - "uuid": "0b0d3728-db0d-4679-b7c5-08f4a35e5f60", - "start": { - "$date": "2021-05-15T03:44:24.000Z" - }, - "end": { - "$date": "2021-05-15T03:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba3b5a58-beca-4e4c-b95a-01b6f83b3b62", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T03:51:50.000Z" - }, - "end": { - "$date": "2021-05-15T04:44:40.000Z" - }, - "events": [ - { - "uuid": "5853eb8a-0932-4b8d-bc3a-db1e97f91ac4", - "start": { - "$date": "2021-05-15T03:51:50.000Z" - }, - "end": { - "$date": "2021-05-15T04:44:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "ff2d6634-e5f5-41ac-8698-367664ec551f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-15T04:06:16.000Z" - }, - "end": { - "$date": "2021-05-15T09:01:53.000Z" - }, - "events": [ - { - "uuid": "9c4b53c1-e551-4808-8456-19f692378625", - "start": { - "$date": "2021-05-15T04:06:16.000Z" - }, - "end": { - "$date": "2021-05-15T04:08:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78bfb06d-229f-4fbf-95ca-af79c67644e1", - "start": { - "$date": "2021-05-15T04:08:16.000Z" - }, - "end": { - "$date": "2021-05-15T04:09:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "501e8351-eb20-4332-aae5-4d41adff3a21", - "start": { - "$date": "2021-05-15T04:09:16.000Z" - }, - "end": { - "$date": "2021-05-15T09:01:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "faaaf133-f90e-4de4-8123-8422817cb246", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T04:24:49.000Z" - }, - "end": { - "$date": "2021-05-15T04:33:50.000Z" - }, - "events": [ - { - "uuid": "ad3bab39-5479-4e6d-9f9a-aa0079b5d1c5", - "start": { - "$date": "2021-05-15T04:24:49.000Z" - }, - "end": { - "$date": "2021-05-15T04:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7213d631-f8da-46e1-9635-5c03bac35650", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T04:45:01.000Z" - }, - "end": { - "$date": "2021-05-15T05:51:38.000Z" - }, - "events": [ - { - "uuid": "6c217f72-c54c-4a3a-a438-9b41126f3f0e", - "start": { - "$date": "2021-05-15T04:45:01.000Z" - }, - "end": { - "$date": "2021-05-15T05:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5c45e01c-db00-45ff-9d64-16a3209ce4da", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T04:45:17.000Z" - }, - "end": { - "$date": "2021-05-15T05:51:37.000Z" - }, - "events": [ - { - "uuid": "f1f930c5-71b9-4e89-8430-0cf2d8434614", - "start": { - "$date": "2021-05-15T04:45:17.000Z" - }, - "end": { - "$date": "2021-05-15T05:51:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f1945ee5-a163-4a26-bfbb-ac079bc7b61a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-15T05:35:33.000Z" - }, - "end": { - "$date": "2021-05-15T05:36:53.000Z" - }, - "events": [ - { - "uuid": "941b03d3-92fe-43da-886f-146a49aaaa3b", - "start": { - "$date": "2021-05-15T05:35:33.000Z" - }, - "end": { - "$date": "2021-05-15T05:36:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a3d86a3d-9980-4d11-b13d-776d2834efe8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T05:54:04.000Z" - }, - "end": { - "$date": "2021-05-15T06:00:29.000Z" - }, - "events": [ - { - "uuid": "da3fb734-561c-4e62-9d0c-8378e76b47c5", - "start": { - "$date": "2021-05-15T05:54:04.000Z" - }, - "end": { - "$date": "2021-05-15T06:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a220aca5-4f17-4429-9c87-0e40821e5b12", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T06:07:00.000Z" - }, - "end": { - "$date": "2021-05-15T06:07:05.000Z" - }, - "events": [ - { - "uuid": "add90177-9e45-4de2-bf7b-a06f60bcd0ee", - "start": { - "$date": "2021-05-15T06:07:00.000Z" - }, - "end": { - "$date": "2021-05-15T06:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "240ae3a7-4c01-4808-9880-db9e1680518e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T06:02:29.000Z" - }, - "end": { - "$date": "2021-05-15T06:05:33.000Z" - }, - "events": [ - { - "uuid": "6eb86e88-c4eb-4245-a5ec-aa5b3ebee57d", - "start": { - "$date": "2021-05-15T06:02:29.000Z" - }, - "end": { - "$date": "2021-05-15T06:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8058e61a-f967-40c1-ad5c-19e3f3a8f127", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T06:07:49.000Z" - }, - "end": { - "$date": "2021-05-15T06:09:43.000Z" - }, - "events": [ - { - "uuid": "78660e94-89b8-447b-96af-2c986365b871", - "start": { - "$date": "2021-05-15T06:07:49.000Z" - }, - "end": { - "$date": "2021-05-15T06:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53259882-8731-45de-8cd0-bbafb454ca63", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-15T06:23:23.000Z" - }, - "end": { - "$date": "2021-05-15T06:56:09.000Z" - }, - "events": [ - { - "uuid": "c77e98ae-7b61-41d9-a0d8-2c1b425d3ef1", - "start": { - "$date": "2021-05-15T06:23:23.000Z" - }, - "end": { - "$date": "2021-05-15T06:56:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "918c55e4-5082-417f-a8b9-676063cca5c8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T06:39:43.000Z" - }, - "end": { - "$date": "2021-05-15T06:42:34.000Z" - }, - "events": [ - { - "uuid": "e471be0f-6243-4fde-9839-b40908100933", - "start": { - "$date": "2021-05-15T06:39:43.000Z" - }, - "end": { - "$date": "2021-05-15T06:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "affe8253-b3ab-42b6-a3b1-953f37ea6300", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-15T07:02:07.000Z" - }, - "end": { - "$date": "2021-05-15T07:41:18.000Z" - }, - "events": [ - { - "uuid": "d7fd6daf-1caf-45a8-9124-fc97c9f19583", - "start": { - "$date": "2021-05-15T07:02:07.000Z" - }, - "end": { - "$date": "2021-05-15T07:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0330ca17-5fee-4d09-b4c2-5623db79874f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-15T07:01:09.000Z" - }, - "end": { - "$date": "2021-05-15T07:41:27.000Z" - }, - "events": [ - { - "uuid": "083cf6f2-4d2b-44a0-b14f-c22bb52cc004", - "start": { - "$date": "2021-05-15T07:01:09.000Z" - }, - "end": { - "$date": "2021-05-15T07:41:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7380a31-a4e0-4f00-a348-af29944104f7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-15T18:48:01.000Z" - }, - "end": { - "$date": "2021-05-15T19:13:39.000Z" - }, - "events": [ - { - "uuid": "c167eb3a-5fde-49f9-aaad-e7317fb3c58d", - "start": { - "$date": "2021-05-15T18:48:01.000Z" - }, - "end": { - "$date": "2021-05-15T19:17:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6170f67-4a00-4faa-9e80-8eb3e6de9760", - "start": { - "$date": "2021-05-15T19:17:01.000Z" - }, - "end": { - "$date": "2021-05-15T23:37:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd4963b2-faef-4ca6-a897-706639bede49", - "start": { - "$date": "2021-05-15T23:37:01.000Z" - }, - "end": { - "$date": "2021-05-15T23:48:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "746a5fdd-3f0f-405c-ae0f-1d6e6e397ba6", - "start": { - "$date": "2021-05-15T23:48:01.000Z" - }, - "end": { - "$date": "2021-05-16T03:32:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "755e14fc-2247-4d5c-8fbd-f00e9115288f", - "start": { - "$date": "2021-05-16T03:32:01.000Z" - }, - "end": { - "$date": "2021-05-16T03:34:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd4ef32e-c00b-41c7-acfa-6360d6503c89", - "start": { - "$date": "2021-05-16T03:34:01.000Z" - }, - "end": { - "$date": "2021-05-16T03:39:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47dbb343-fb55-4f0b-a3ab-b1b5204373bf", - "start": { - "$date": "2021-05-16T03:39:01.000Z" - }, - "end": { - "$date": "2021-05-16T03:41:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69bee504-f971-4951-8b53-5787d467c8b2", - "start": { - "$date": "2021-05-16T03:41:01.000Z" - }, - "end": { - "$date": "2021-05-16T03:46:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "935ad458-7c5b-41dd-a4dc-3fe1e4d02bd0", - "start": { - "$date": "2021-05-16T03:46:01.000Z" - }, - "end": { - "$date": "2021-05-16T04:16:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e148342-ad10-4ffc-9c8f-b416ee2a1cf7", - "start": { - "$date": "2021-05-16T04:16:01.000Z" - }, - "end": { - "$date": "2021-05-16T04:20:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "554ba91c-55e4-4669-9f14-626a66a4fbb1", - "start": { - "$date": "2021-05-16T04:20:01.000Z" - }, - "end": { - "$date": "2021-05-16T04:52:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "32dd36b2-ca3b-4e27-a40d-143e0d874eed", - "start": { - "$date": "2021-05-16T04:52:01.000Z" - }, - "end": { - "$date": "2021-05-16T04:55:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "063c7f69-0068-492f-aa93-190c3b10d457", - "start": { - "$date": "2021-05-16T04:55:01.000Z" - }, - "end": { - "$date": "2021-05-16T05:43:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c452ea18-cdb6-4ec1-b25c-c6d3c1586093", - "start": { - "$date": "2021-05-16T05:43:01.000Z" - }, - "end": { - "$date": "2021-05-16T05:44:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4f54b259-825a-48c6-952c-dedb042ea4c6", - "start": { - "$date": "2021-05-16T05:44:01.000Z" - }, - "end": { - "$date": "2021-05-15T19:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63f218ef-b7fe-4fdc-ab5d-8e2a895b23c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-15T08:34:35.000Z" - }, - "end": { - "$date": "2021-05-15T09:06:28.000Z" - }, - "events": [ - { - "uuid": "646c9c04-d911-4786-852b-cffe684907b3", - "start": { - "$date": "2021-05-15T08:34:35.000Z" - }, - "end": { - "$date": "2021-05-15T09:06:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "37be6a2d-efab-4f5a-9778-f510e7e2105d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T13:16:34.000Z" - }, - "end": { - "$date": "2021-05-15T13:41:44.000Z" - }, - "events": [ - { - "uuid": "9e027af3-03aa-4e29-817c-94b540037794", - "start": { - "$date": "2021-05-15T13:16:34.000Z" - }, - "end": { - "$date": "2021-05-15T13:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f81309e9-5566-4355-9311-26f68afead99", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T13:45:55.000Z" - }, - "end": { - "$date": "2021-05-15T15:50:34.000Z" - }, - "events": [ - { - "uuid": "d6da9036-0d2c-4801-9dc8-195312b65eb8", - "start": { - "$date": "2021-05-15T13:45:55.000Z" - }, - "end": { - "$date": "2021-05-15T15:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "72746bca-656c-4074-84a6-19f7732a39fd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-15T14:00:50.000Z" - }, - "end": { - "$date": "2021-05-15T14:02:05.000Z" - }, - "events": [ - { - "uuid": "897e91b0-5621-466c-bdcd-62ba10c5005a", - "start": { - "$date": "2021-05-15T14:00:50.000Z" - }, - "end": { - "$date": "2021-05-15T14:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bddb3c48-11a0-47b0-b251-cfea68bdb93d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-15T14:02:10.000Z" - }, - "end": { - "$date": "2021-05-15T17:10:24.000Z" - }, - "events": [ - { - "uuid": "3b62e3e1-c145-48c5-ab28-0a234a497cf1", - "start": { - "$date": "2021-05-15T14:02:10.000Z" - }, - "end": { - "$date": "2021-05-15T17:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0c513dc8-b8c4-4055-b194-8978b02eb18c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T16:01:30.000Z" - }, - "end": { - "$date": "2021-05-15T16:04:40.000Z" - }, - "events": [ - { - "uuid": "d41c048e-ab96-4b66-8315-47d07e2af6de", - "start": { - "$date": "2021-05-15T16:01:30.000Z" - }, - "end": { - "$date": "2021-05-15T16:04:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f2e426b-1483-451d-85db-11ac2ad6b308", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T16:04:50.000Z" - }, - "end": { - "$date": "2021-05-15T16:49:31.000Z" - }, - "events": [ - { - "uuid": "e2ed167e-ba68-4715-8526-93e5178cd668", - "start": { - "$date": "2021-05-15T16:04:50.000Z" - }, - "end": { - "$date": "2021-05-15T16:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "22c5061f-aaac-4cfd-b8e7-68a20cfe96e2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-15T16:49:37.000Z" - }, - "end": { - "$date": "2021-05-15T17:07:03.000Z" - }, - "events": [ - { - "uuid": "83ae329a-cbca-4046-b59e-b101c1c500b7", - "start": { - "$date": "2021-05-15T16:49:37.000Z" - }, - "end": { - "$date": "2021-05-15T17:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5d26f7d7-3641-4ff4-99a3-76c4fb58130d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T16:49:41.000Z" - }, - "end": { - "$date": "2021-05-15T17:01:21.000Z" - }, - "events": [ - { - "uuid": "557556c7-18bf-40fb-984c-753cc059aa67", - "start": { - "$date": "2021-05-15T16:49:41.000Z" - }, - "end": { - "$date": "2021-05-15T17:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "04dae6bb-40fc-4f04-a5df-00292b124c31", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-15T17:07:28.000Z" - }, - "end": { - "$date": "2021-05-15T18:28:45.000Z" - }, - "events": [ - { - "uuid": "8b2a322f-70ba-45e7-9f67-5f95db655edd", - "start": { - "$date": "2021-05-15T17:07:28.000Z" - }, - "end": { - "$date": "2021-05-15T18:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0f284020-15b2-4ee5-b92c-0d9efe30caf8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T17:47:27.000Z" - }, - "end": { - "$date": "2021-05-15T17:56:22.000Z" - }, - "events": [ - { - "uuid": "6f54e5ce-242c-48cb-86c8-946f6ce9d212", - "start": { - "$date": "2021-05-15T17:47:27.000Z" - }, - "end": { - "$date": "2021-05-15T17:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d99e76ec-0676-44c2-a3fc-3d9639ead197", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T17:56:57.000Z" - }, - "end": { - "$date": "2021-05-15T18:01:27.000Z" - }, - "events": [ - { - "uuid": "ad544877-1efc-4846-b6dd-0b292ccbc893", - "start": { - "$date": "2021-05-15T17:56:57.000Z" - }, - "end": { - "$date": "2021-05-15T18:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "12e0c4ed-ef87-4c1e-ae9f-01ebd29250c5", - "uuid": "76a229fd-8401-4460-81ea-45b02279a680", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T18:02:03.000Z" - }, - "end": { - "$date": "2021-05-15T19:01:23.000Z" - }, - "events": [ - { - "uuid": "3a9fafe6-8b01-49fe-a266-7a851590acd5", - "start": { - "$date": "2021-05-15T18:02:03.000Z" - }, - "end": { - "$date": "2021-05-15T19:01:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "972580e7-d645-4a9d-83ee-3bdea7e9a0d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T18:29:13.000Z" - }, - "end": { - "$date": "2021-05-15T19:55:00.000Z" - }, - "events": [ - { - "uuid": "6b5357bd-1e45-4bb2-9ffe-11b5a997d24d", - "start": { - "$date": "2021-05-15T18:29:13.000Z" - }, - "end": { - "$date": "2021-05-15T19:55:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "e3790f0e-42a7-4791-874a-882e72063ecb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-16T00:11:28.000Z" - }, - "end": { - "$date": "2021-05-16T00:13:45.000Z" - }, - "events": [ - { - "uuid": "1975556c-22d4-4abc-8435-7671abe91c78", - "start": { - "$date": "2021-05-16T00:11:28.000Z" - }, - "end": { - "$date": "2021-05-16T01:13:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03059192-87db-46a1-a28a-e7661f91e3b1", - "start": { - "$date": "2021-05-16T01:13:28.000Z" - }, - "end": { - "$date": "2021-05-16T01:41:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d59b6c9e-825c-4e99-a7a8-fad6dcb0276a", - "start": { - "$date": "2021-05-16T01:41:28.000Z" - }, - "end": { - "$date": "2021-05-16T01:43:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8702c1cd-74c0-4442-a3cb-293ec535d93b", - "start": { - "$date": "2021-05-16T01:43:28.000Z" - }, - "end": { - "$date": "2021-05-16T01:49:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a111b882-6a4c-439f-9dfa-4066e12a996e", - "start": { - "$date": "2021-05-16T01:49:28.000Z" - }, - "end": { - "$date": "2021-05-16T01:51:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "813cd140-80e4-4c8a-8f48-776286d32a22", - "start": { - "$date": "2021-05-16T01:51:28.000Z" - }, - "end": { - "$date": "2021-05-16T02:34:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d45e9d9-8ae1-4096-ad62-f9b1fe8b43df", - "start": { - "$date": "2021-05-16T02:34:28.000Z" - }, - "end": { - "$date": "2021-05-16T02:36:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dd7b9948-5477-4a66-96d1-739e19aac50d", - "start": { - "$date": "2021-05-16T02:36:28.000Z" - }, - "end": { - "$date": "2021-05-16T03:02:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7ea80011-5e06-4f60-84f5-c13a232ab8dd", - "start": { - "$date": "2021-05-16T03:02:28.000Z" - }, - "end": { - "$date": "2021-05-16T03:04:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d60a1e2c-6bbc-4850-8310-d890413f1e7e", - "start": { - "$date": "2021-05-16T03:04:28.000Z" - }, - "end": { - "$date": "2021-05-16T03:05:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f0a80846-1a08-49a6-bb7c-610b8b5ab1d8", - "start": { - "$date": "2021-05-16T03:05:28.000Z" - }, - "end": { - "$date": "2021-05-16T03:07:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "54caa158-4e69-47dd-8747-47255ce4eb87", - "start": { - "$date": "2021-05-16T03:07:28.000Z" - }, - "end": { - "$date": "2021-05-16T04:26:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "71fe494d-ac91-45ed-9f64-ae50d3432008", - "start": { - "$date": "2021-05-16T04:26:28.000Z" - }, - "end": { - "$date": "2021-05-16T00:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a198202b-a5af-4e6b-b391-38bd01ce4560", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-15T21:48:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:10:33.000Z" - }, - "events": [ - { - "uuid": "35b44038-fc08-47e1-a10e-4c714851ea9c", - "start": { - "$date": "2021-05-15T21:48:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:15:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "16752f79-6c8a-4718-aa06-a7ee988516d7", - "start": { - "$date": "2021-05-15T22:15:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:16:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a993aa87-b39e-4ea5-b029-a349967a68b3", - "start": { - "$date": "2021-05-15T22:16:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:26:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9835a61-8fe8-4fa9-9a83-c20eb6baf402", - "start": { - "$date": "2021-05-15T22:26:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:37:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4bc5c440-f90d-4a99-9cc0-798bd7d64574", - "start": { - "$date": "2021-05-15T22:37:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:38:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9550d2b0-1e2b-4476-8b13-77f3cb3037a4", - "start": { - "$date": "2021-05-15T22:38:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:42:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44aa49cc-7ff4-4dc2-99e8-9b34e047e612", - "start": { - "$date": "2021-05-15T22:42:56.000Z" - }, - "end": { - "$date": "2021-05-15T22:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71ef092a-ea41-462a-b4a0-c4de3396bf75", - "uuid": "49101b94-4e6e-4873-90d6-a18402b462dd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T19:34:16.000Z" - }, - "end": { - "$date": "2021-05-15T19:43:42.000Z" - }, - "events": [ - { - "uuid": "cfe11d08-c552-4799-b093-6a3197b664fd", - "start": { - "$date": "2021-05-15T19:34:16.000Z" - }, - "end": { - "$date": "2021-05-15T19:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8c461bb4-4e40-4de5-aa72-b658c28ade5e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-15T19:35:22.000Z" - }, - "end": { - "$date": "2021-05-15T20:36:37.000Z" - }, - "events": [ - { - "uuid": "48ebef8b-58d2-4727-b114-85d5baeb2eec", - "start": { - "$date": "2021-05-15T19:35:22.000Z" - }, - "end": { - "$date": "2021-05-15T20:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e0da8968-762e-4ae2-8cc2-27ffce7d73de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T19:54:38.000Z" - }, - "end": { - "$date": "2021-05-15T21:40:20.000Z" - }, - "events": [ - { - "uuid": "6c0b0779-6e3a-4b30-9a3b-fe66e7dc9cce", - "start": { - "$date": "2021-05-15T19:54:38.000Z" - }, - "end": { - "$date": "2021-05-15T21:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cf8f234b-aeca-4421-84ff-fbf393f1906b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T19:55:21.000Z" - }, - "end": { - "$date": "2021-05-15T21:38:42.000Z" - }, - "events": [ - { - "uuid": "2cd8f257-e1e7-48f4-b34b-a5caeb253b7f", - "start": { - "$date": "2021-05-15T19:55:21.000Z" - }, - "end": { - "$date": "2021-05-15T21:06:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a6e8867-7958-464e-a713-e641738e59a7", - "start": { - "$date": "2021-05-15T21:06:21.000Z" - }, - "end": { - "$date": "2021-05-15T21:07:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4bbf2156-8a0f-4d86-9f79-1dbe194fe51b", - "start": { - "$date": "2021-05-15T21:07:21.000Z" - }, - "end": { - "$date": "2021-05-15T21:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "5c138c84-7f93-43af-ad1c-f8d660b809d5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-15T20:37:07.000Z" - }, - "end": { - "$date": "2021-05-15T21:51:21.000Z" - }, - "events": [ - { - "uuid": "9e4bef6f-e9f6-47a6-b5a7-1e2b2c3f9d37", - "start": { - "$date": "2021-05-15T20:37:07.000Z" - }, - "end": { - "$date": "2021-05-15T21:51:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d8c16a12-b857-4bda-a908-d45420a0047e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-15T21:23:32.000Z" - }, - "end": { - "$date": "2021-05-15T21:33:28.000Z" - }, - "events": [ - { - "uuid": "6d1b5190-2e25-4938-8a84-fc92b6c2b032", - "start": { - "$date": "2021-05-15T21:23:32.000Z" - }, - "end": { - "$date": "2021-05-15T21:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "413d2eaa-d05b-4398-aae8-3cbfb7cb4bbd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-15T21:39:04.000Z" - }, - "end": { - "$date": "2021-05-15T23:47:38.000Z" - }, - "events": [ - { - "uuid": "a1ddf17d-5bef-4846-b7a0-53b9f78f8906", - "start": { - "$date": "2021-05-15T21:39:04.000Z" - }, - "end": { - "$date": "2021-05-15T23:47:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e07d3454-17c1-47d7-95d8-afa44b7c3231", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T22:19:12.000Z" - }, - "end": { - "$date": "2021-05-15T22:19:16.000Z" - }, - "events": [ - { - "uuid": "7deda58c-9f4f-4adb-b60b-b7455687395d", - "start": { - "$date": "2021-05-15T22:19:12.000Z" - }, - "end": { - "$date": "2021-05-15T22:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e37baec9-9320-40d7-bd10-10089b5008a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T23:01:19.000Z" - }, - "end": { - "$date": "2021-05-15T23:53:40.000Z" - }, - "events": [ - { - "uuid": "a4c6ad28-ec2f-4cdf-8ea7-2f2db9d0038c", - "start": { - "$date": "2021-05-15T23:01:19.000Z" - }, - "end": { - "$date": "2021-05-15T23:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "236a6672-7861-4d0d-b8f2-bc4d339d1215", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-15T22:55:10.000Z" - }, - "end": { - "$date": "2021-05-15T23:15:00.000Z" - }, - "events": [ - { - "uuid": "da381e41-f652-41d1-8a59-d3570300605e", - "start": { - "$date": "2021-05-15T22:55:10.000Z" - }, - "end": { - "$date": "2021-05-15T23:15:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1f30986e-52ba-4613-912a-80c38fcf0a2a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-15T23:17:00.000Z" - }, - "end": { - "$date": "2021-05-16T00:11:33.000Z" - }, - "events": [ - { - "uuid": "068ddf88-6d82-44f7-bc8f-da44467fa837", - "start": { - "$date": "2021-05-15T23:17:00.000Z" - }, - "end": { - "$date": "2021-05-16T00:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b58c5ac9-33d1-456e-b66a-976172909600", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-15T23:52:39.000Z" - }, - "end": { - "$date": "2021-05-15T23:59:35.000Z" - }, - "events": [ - { - "uuid": "787f4a4a-070d-461e-b583-be5748cf6df0", - "start": { - "$date": "2021-05-15T23:52:39.000Z" - }, - "end": { - "$date": "2021-05-15T23:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "0ac3a65b-4c19-4ed6-aeae-c229c78617f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-15T23:54:45.000Z" - }, - "end": { - "$date": "2021-05-16T00:52:26.000Z" - }, - "events": [ - { - "uuid": "6b4b44fd-e8ab-46b5-affc-3552163009fd", - "start": { - "$date": "2021-05-15T23:54:45.000Z" - }, - "end": { - "$date": "2021-05-16T00:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "aec27d28-1413-41b5-afa8-d1891c182cb7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-15T23:59:45.000Z" - }, - "end": { - "$date": "2021-05-16T00:14:27.000Z" - }, - "events": [ - { - "uuid": "37f0c4cb-1c06-46d0-b19a-35b3f19e1262", - "start": { - "$date": "2021-05-15T23:59:45.000Z" - }, - "end": { - "$date": "2021-05-16T00:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a9c8261f-73de-4097-9fb8-ae4aa4146853", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T00:17:21.000Z" - }, - "end": { - "$date": "2021-05-16T03:31:58.000Z" - }, - "events": [ - { - "uuid": "513ac562-8e3b-452b-ac4d-4a57e91aa859", - "start": { - "$date": "2021-05-16T00:17:21.000Z" - }, - "end": { - "$date": "2021-05-16T03:10:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5443d23d-e728-4352-b9ac-964635f7e119", - "start": { - "$date": "2021-05-16T03:10:21.000Z" - }, - "end": { - "$date": "2021-05-16T03:20:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e888710b-ed00-4942-a3f4-d030f8494cdb", - "start": { - "$date": "2021-05-16T03:20:21.000Z" - }, - "end": { - "$date": "2021-05-16T03:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8cf37626-e26c-447b-adcd-fb2b7f46a5fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T00:52:52.000Z" - }, - "end": { - "$date": "2021-05-16T01:50:29.000Z" - }, - "events": [ - { - "uuid": "7fbdac77-d86f-45f7-aec3-c42796d57c0d", - "start": { - "$date": "2021-05-16T00:52:52.000Z" - }, - "end": { - "$date": "2021-05-16T01:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "171f7450-cd0f-49d3-9797-9148e035b890", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-16T01:46:42.000Z" - }, - "end": { - "$date": "2021-05-16T02:31:54.000Z" - }, - "events": [ - { - "uuid": "4cb8d423-3b6e-4936-8da5-3f42307a502c", - "start": { - "$date": "2021-05-16T01:46:42.000Z" - }, - "end": { - "$date": "2021-05-16T02:31:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04a12e9b-9b7e-41a9-b139-02e0a734b6fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T01:47:12.000Z" - }, - "end": { - "$date": "2021-05-16T02:31:54.000Z" - }, - "events": [ - { - "uuid": "3c46598f-cc5a-4f05-913b-52abdc04b610", - "start": { - "$date": "2021-05-16T01:47:12.000Z" - }, - "end": { - "$date": "2021-05-16T02:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "8bdc9991-7702-4905-83fa-ebdbfa0b3f1f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T01:46:16.000Z" - }, - "end": { - "$date": "2021-05-16T02:56:24.000Z" - }, - "events": [ - { - "uuid": "9669fb2e-1447-4805-a256-40ee1eb751b8", - "start": { - "$date": "2021-05-16T01:46:16.000Z" - }, - "end": { - "$date": "2021-05-16T02:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "73f65b07-bd22-4ee0-bf69-13bb098c81c1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-16T02:15:12.000Z" - }, - "end": { - "$date": "2021-05-16T03:45:31.000Z" - }, - "events": [ - { - "uuid": "229f2371-cc69-40cf-ad37-4fad1c7b41f9", - "start": { - "$date": "2021-05-16T02:15:12.000Z" - }, - "end": { - "$date": "2021-05-16T02:54:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c7b2e58-97b0-4d63-afd3-59d9f2fe4df8", - "start": { - "$date": "2021-05-16T02:54:12.000Z" - }, - "end": { - "$date": "2021-05-16T02:56:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4489c80b-e137-454a-a0cb-5e576febdf62", - "start": { - "$date": "2021-05-16T02:56:12.000Z" - }, - "end": { - "$date": "2021-05-16T03:45:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f5a67046-1d36-4dc2-89af-135e6f5d453d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T02:56:49.000Z" - }, - "end": { - "$date": "2021-05-16T04:37:13.000Z" - }, - "events": [ - { - "uuid": "25b8838c-c090-448e-98af-17e7ba771586", - "start": { - "$date": "2021-05-16T02:56:49.000Z" - }, - "end": { - "$date": "2021-05-16T04:37:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2c3ed80a-5fe6-4271-ad77-82ce9c783d05", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T03:31:53.000Z" - }, - "end": { - "$date": "2021-05-16T04:23:29.000Z" - }, - "events": [ - { - "uuid": "d858a08f-3d25-48dd-bd52-ca9c855cded1", - "start": { - "$date": "2021-05-16T03:31:53.000Z" - }, - "end": { - "$date": "2021-05-16T04:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "888355a2-9317-4d64-a4dc-f960d8038ec9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T03:32:12.000Z" - }, - "end": { - "$date": "2021-05-16T04:10:13.000Z" - }, - "events": [ - { - "uuid": "e7362ed5-2e89-4164-a08c-c78816959998", - "start": { - "$date": "2021-05-16T03:32:12.000Z" - }, - "end": { - "$date": "2021-05-16T04:10:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "963cc64a-5951-48cd-a19a-28c16d5f0644", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-16T03:33:00.000Z" - }, - "end": { - "$date": "2021-05-16T04:38:27.000Z" - }, - "events": [ - { - "uuid": "a04864c1-f3e9-4696-82e3-e01d8fc9d109", - "start": { - "$date": "2021-05-16T03:33:00.000Z" - }, - "end": { - "$date": "2021-05-16T04:38:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "99398c4f-6ba2-468f-a94b-968f0a528e56", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-16T03:45:42.000Z" - }, - "end": { - "$date": "2021-05-16T04:30:33.000Z" - }, - "events": [ - { - "uuid": "c4c4b480-32ea-402d-8988-764880857096", - "start": { - "$date": "2021-05-16T03:45:42.000Z" - }, - "end": { - "$date": "2021-05-16T04:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b5d6e313-0d08-4036-91ae-1a5dc4cb383f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-16T04:04:37.000Z" - }, - "end": { - "$date": "2021-05-16T05:31:58.000Z" - }, - "events": [ - { - "uuid": "1ffbee81-16bc-415b-8030-f71a58d76f50", - "start": { - "$date": "2021-05-16T04:04:37.000Z" - }, - "end": { - "$date": "2021-05-16T05:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf798057-a1ab-43c8-bbb6-8cff6863eb29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T04:10:27.000Z" - }, - "end": { - "$date": "2021-05-16T05:31:45.000Z" - }, - "events": [ - { - "uuid": "98960cc8-7d8c-49b5-aa25-f0306ee04255", - "start": { - "$date": "2021-05-16T04:10:27.000Z" - }, - "end": { - "$date": "2021-05-16T05:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d01650a3-35a8-4771-8b12-941866a2b366", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-16T04:22:53.000Z" - }, - "end": { - "$date": "2021-05-16T06:59:52.000Z" - }, - "events": [ - { - "uuid": "11b95e55-8702-4cd7-b2b4-860aa8ca54b7", - "start": { - "$date": "2021-05-16T04:22:53.000Z" - }, - "end": { - "$date": "2021-05-16T06:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff4abafe-d409-447c-a696-27c30375eaf5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-16T04:27:16.000Z" - }, - "end": { - "$date": "2021-05-16T07:00:25.000Z" - }, - "events": [ - { - "uuid": "d9a2dff8-22d2-4976-8379-4988fbc94e77", - "start": { - "$date": "2021-05-16T04:27:16.000Z" - }, - "end": { - "$date": "2021-05-16T07:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8e0720b2-71ed-4eea-919b-d5a6165b9d2b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-16T04:30:49.000Z" - }, - "end": { - "$date": "2021-05-16T07:46:27.000Z" - }, - "events": [ - { - "uuid": "8019d3e2-244c-43ad-96de-6c4837dcb567", - "start": { - "$date": "2021-05-16T04:30:49.000Z" - }, - "end": { - "$date": "2021-05-16T05:23:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d42ed115-6609-4e98-9826-2156b74a3936", - "start": { - "$date": "2021-05-16T05:23:49.000Z" - }, - "end": { - "$date": "2021-05-16T05:40:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5edd97e-203d-4a1c-a4d8-76202856a209", - "start": { - "$date": "2021-05-16T05:40:49.000Z" - }, - "end": { - "$date": "2021-05-16T07:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82d2184b-637c-4eb0-b29a-f821bd44061d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-16T04:47:56.000Z" - }, - "end": { - "$date": "2021-05-16T05:16:36.000Z" - }, - "events": [ - { - "uuid": "7f6b732e-bfdb-4c16-a7c5-dd25146b3876", - "start": { - "$date": "2021-05-16T04:47:56.000Z" - }, - "end": { - "$date": "2021-05-16T05:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fbcdb51f-648e-49c3-a8a4-5c1eda4a0f10", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T05:11:19.000Z" - }, - "end": { - "$date": "2021-05-16T05:25:59.000Z" - }, - "events": [ - { - "uuid": "100c4932-cbca-4f8d-823a-3b000958f984", - "start": { - "$date": "2021-05-16T05:11:19.000Z" - }, - "end": { - "$date": "2021-05-16T05:25:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e22268f-0e33-4b6e-9d22-1bea46a7d7b2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-16T05:19:51.000Z" - }, - "end": { - "$date": "2021-05-16T05:38:17.000Z" - }, - "events": [ - { - "uuid": "d4323b49-d19b-4981-b0c7-9c62605f24d0", - "start": { - "$date": "2021-05-16T05:19:51.000Z" - }, - "end": { - "$date": "2021-05-16T05:38:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "25ef6342-41ca-4d79-8c81-96a16aa74c7c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-16T05:32:43.000Z" - }, - "end": { - "$date": "2021-05-16T06:27:14.000Z" - }, - "events": [ - { - "uuid": "b4c945b5-e673-4450-806d-cd62c2557d73", - "start": { - "$date": "2021-05-16T05:32:43.000Z" - }, - "end": { - "$date": "2021-05-16T06:27:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5c0e6a14-4615-4e25-8e6a-92c7d880c3ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T05:58:39.000Z" - }, - "end": { - "$date": "2021-05-16T15:37:00.000Z" - }, - "events": [ - { - "uuid": "cda51c18-2066-4804-b5aa-352454888894", - "start": { - "$date": "2021-05-16T05:58:39.000Z" - }, - "end": { - "$date": "2021-05-16T06:11:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a4dc7dc-6aef-4a97-a2cc-ee5c367065bf", - "start": { - "$date": "2021-05-16T06:11:39.000Z" - }, - "end": { - "$date": "2021-05-16T15:03:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20bf92c5-d9c9-4da6-9697-062627c81f77", - "start": { - "$date": "2021-05-16T15:03:39.000Z" - }, - "end": { - "$date": "2021-05-16T15:06:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2210983-040c-429f-b954-fb89d1490af2", - "start": { - "$date": "2021-05-16T15:06:39.000Z" - }, - "end": { - "$date": "2021-05-16T15:17:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f2c1b2f-a260-4bc6-a4b4-784942d12e05", - "start": { - "$date": "2021-05-16T15:17:39.000Z" - }, - "end": { - "$date": "2021-05-16T15:29:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e23e0a45-c27a-4718-b2d8-1d7a7f913310", - "start": { - "$date": "2021-05-16T15:29:39.000Z" - }, - "end": { - "$date": "2021-05-16T15:37:00.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "331085f3-33e7-4a2b-aa08-3942e7d07db7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-16T06:31:45.000Z" - }, - "end": { - "$date": "2021-05-16T06:36:31.000Z" - }, - "events": [ - { - "uuid": "e2da65be-3f63-452b-921d-1a11a014ebed", - "start": { - "$date": "2021-05-16T06:31:45.000Z" - }, - "end": { - "$date": "2021-05-16T06:32:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6fb65f58-f977-4aaa-93cf-e7ca347ce409", - "start": { - "$date": "2021-05-16T06:32:45.000Z" - }, - "end": { - "$date": "2021-05-16T06:36:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "4f72e78a-4d87-4b92-87cd-d3c58d0b55fe", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-16T06:48:33.000Z" - }, - "end": { - "$date": "2021-05-16T09:21:56.000Z" - }, - "events": [ - { - "uuid": "bf1320b6-744f-4605-9f19-0f9d35a6171a", - "start": { - "$date": "2021-05-16T06:48:33.000Z" - }, - "end": { - "$date": "2021-05-16T09:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "db0178b0-6e1d-4ff1-b218-f1ea5c16bcfa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-16T06:52:33.000Z" - }, - "end": { - "$date": "2021-05-16T07:03:40.000Z" - }, - "events": [ - { - "uuid": "8fbc8aca-1951-4182-b793-02a57d3d17ec", - "start": { - "$date": "2021-05-16T06:52:33.000Z" - }, - "end": { - "$date": "2021-05-16T07:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecb80068-b940-4093-a0bc-3f8795afa06f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-16T08:31:33.000Z" - }, - "end": { - "$date": "2021-05-16T08:57:36.000Z" - }, - "events": [ - { - "uuid": "a5d35a65-3aa9-43f4-a45d-f6423045f1c1", - "start": { - "$date": "2021-05-16T08:31:33.000Z" - }, - "end": { - "$date": "2021-05-16T08:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3332f357-0f79-4666-a66c-25a1611cfbe3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-16T09:03:59.000Z" - }, - "end": { - "$date": "2021-05-16T09:26:14.000Z" - }, - "events": [ - { - "uuid": "1a36ce78-4c2b-4305-829c-6467a43e0a79", - "start": { - "$date": "2021-05-16T09:03:59.000Z" - }, - "end": { - "$date": "2021-05-16T09:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "175aca88-239e-4c0a-ba33-7a010e2aa10e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T13:45:46.000Z" - }, - "end": { - "$date": "2021-05-16T13:50:52.000Z" - }, - "events": [ - { - "uuid": "8ab4ba37-bf7d-410b-b95f-1bf32e36c872", - "start": { - "$date": "2021-05-16T13:45:46.000Z" - }, - "end": { - "$date": "2021-05-16T13:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "701b7903-5ecd-4a45-a819-6909cc7bf2e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T14:09:49.000Z" - }, - "end": { - "$date": "2021-05-16T16:01:36.000Z" - }, - "events": [ - { - "uuid": "24d54f3d-b7b2-484a-87f8-8994831cd77d", - "start": { - "$date": "2021-05-16T14:09:49.000Z" - }, - "end": { - "$date": "2021-05-16T16:01:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dfe99d0d-8a35-4d61-921f-3ccaf85bec5a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T16:01:26.000Z" - }, - "end": { - "$date": "2021-05-16T16:25:21.000Z" - }, - "events": [ - { - "uuid": "2cc2a9f6-3c15-4cd5-98b2-cc939909bb9c", - "start": { - "$date": "2021-05-16T16:01:26.000Z" - }, - "end": { - "$date": "2021-05-16T16:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7459725-c689-478b-9f3e-56b1bcbbe78d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T15:45:48.000Z" - }, - "end": { - "$date": "2021-05-16T16:13:00.000Z" - }, - "events": [ - { - "uuid": "a66b6be0-8708-4d43-9ad0-315d52170129", - "start": { - "$date": "2021-05-16T15:45:48.000Z" - }, - "end": { - "$date": "2021-05-16T16:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "10012192-bd54-4856-827a-3c3388cca3de", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T16:01:56.000Z" - }, - "end": { - "$date": "2021-05-16T16:13:12.000Z" - }, - "events": [ - { - "uuid": "e55eed55-635f-477e-aa73-5ccb1854c1ad", - "start": { - "$date": "2021-05-16T16:01:56.000Z" - }, - "end": { - "$date": "2021-05-16T16:13:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fc399c4f-5d6e-4fd8-97fe-0e6ffcce9921", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T16:21:10.000Z" - }, - "end": { - "$date": "2021-05-16T17:03:55.000Z" - }, - "events": [ - { - "uuid": "ff67c96b-4236-48e6-a238-5f3d2325b4ff", - "start": { - "$date": "2021-05-16T16:21:10.000Z" - }, - "end": { - "$date": "2021-05-16T17:03:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26efb9c5-d4dc-4614-a65f-1c80cfb83b69", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T16:20:33.000Z" - }, - "end": { - "$date": "2021-05-16T16:50:06.000Z" - }, - "events": [ - { - "uuid": "adcb7299-5ed5-4e8a-82b1-02719a08824f", - "start": { - "$date": "2021-05-16T16:20:33.000Z" - }, - "end": { - "$date": "2021-05-16T16:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9a5df43d-3c9e-4535-b1c7-d4fbf1a09a0c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-16T16:32:37.000Z" - }, - "end": { - "$date": "2021-05-16T19:07:25.000Z" - }, - "events": [ - { - "uuid": "22016113-8b43-489d-86c7-c59b13734958", - "start": { - "$date": "2021-05-16T16:32:37.000Z" - }, - "end": { - "$date": "2021-05-16T19:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d40dbe14-e122-41ed-9fb9-5bdaa57b832b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T16:57:13.000Z" - }, - "end": { - "$date": "2021-05-16T17:32:22.000Z" - }, - "events": [ - { - "uuid": "291aad67-5cc3-4ec5-8a90-9e7ee80f9826", - "start": { - "$date": "2021-05-16T16:57:13.000Z" - }, - "end": { - "$date": "2021-05-16T17:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a9fd6c62-657f-4a16-8c5f-ba8c76a612e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T16:58:09.000Z" - }, - "end": { - "$date": "2021-05-16T17:01:04.000Z" - }, - "events": [ - { - "uuid": "5731fca7-2eb3-4b33-8fb7-234765454a82", - "start": { - "$date": "2021-05-16T16:58:09.000Z" - }, - "end": { - "$date": "2021-05-16T17:01:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a92e39da-d497-48b2-8ff6-bb252940e197", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T17:11:51.000Z" - }, - "end": { - "$date": "2021-05-16T18:03:33.000Z" - }, - "events": [ - { - "uuid": "a124d3c0-53cc-4256-ac22-9da38460f624", - "start": { - "$date": "2021-05-16T17:11:51.000Z" - }, - "end": { - "$date": "2021-05-16T18:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "4296d2f5-508a-4e97-be61-15e66afb0b3a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T17:15:01.000Z" - }, - "end": { - "$date": "2021-05-16T17:22:17.000Z" - }, - "events": [ - { - "uuid": "6861faf0-b6ea-4a78-9bbf-b2c7be1afc2a", - "start": { - "$date": "2021-05-16T17:15:01.000Z" - }, - "end": { - "$date": "2021-05-16T17:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "9f46038c-8499-4ad6-a959-94ef4323c428", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T17:27:48.000Z" - }, - "end": { - "$date": "2021-05-16T18:00:28.000Z" - }, - "events": [ - { - "uuid": "ef0ad185-bba6-435b-a234-07b071dcf851", - "start": { - "$date": "2021-05-16T17:27:48.000Z" - }, - "end": { - "$date": "2021-05-16T18:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "204f48b0-2c30-4198-a3b9-4bb0a119d8c8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T18:01:48.000Z" - }, - "end": { - "$date": "2021-05-16T18:19:19.000Z" - }, - "events": [ - { - "uuid": "4765de41-b6da-4264-bf8f-fda3554bae7a", - "start": { - "$date": "2021-05-16T18:01:48.000Z" - }, - "end": { - "$date": "2021-05-16T18:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba3f23b1-0894-451c-b890-d4c7adf0287e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T18:05:04.000Z" - }, - "end": { - "$date": "2021-05-16T18:28:44.000Z" - }, - "events": [ - { - "uuid": "714e9000-bdfd-4fc1-9e98-07a3e2ab1d85", - "start": { - "$date": "2021-05-16T18:05:04.000Z" - }, - "end": { - "$date": "2021-05-16T18:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "91d007f7-5adb-4594-ad15-7fd00d04cd06", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T18:19:08.000Z" - }, - "end": { - "$date": "2021-05-16T18:36:11.000Z" - }, - "events": [ - { - "uuid": "1227f585-a136-49a8-a83f-7caf89ff6aa4", - "start": { - "$date": "2021-05-16T18:19:08.000Z" - }, - "end": { - "$date": "2021-05-16T18:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7bf6b098-d981-412a-b4c9-f8c9b2accbb8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-16T18:27:42.000Z" - }, - "end": { - "$date": "2021-05-16T18:47:23.000Z" - }, - "events": [ - { - "uuid": "9a81b598-2f0e-4044-866c-44e321646df3", - "start": { - "$date": "2021-05-16T18:27:42.000Z" - }, - "end": { - "$date": "2021-05-16T18:47:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f1992da3-8758-4f6c-a103-7b52d91b213b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T18:55:53.000Z" - }, - "end": { - "$date": "2021-05-16T19:07:39.000Z" - }, - "events": [ - { - "uuid": "b5b0f97b-9d60-45a1-900e-c8af0486fed5", - "start": { - "$date": "2021-05-16T18:55:53.000Z" - }, - "end": { - "$date": "2021-05-16T19:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ff8be7e5-ca54-4e1c-8c7c-671d0f3568a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-16T18:31:41.000Z" - }, - "end": { - "$date": "2021-05-16T19:55:29.000Z" - }, - "events": [ - { - "uuid": "fc142b5f-4f8b-4bc6-9bfd-52c3138ad668", - "start": { - "$date": "2021-05-16T18:31:41.000Z" - }, - "end": { - "$date": "2021-05-16T18:58:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7cb7aac5-377b-469a-bbbf-f1a47b18ebef", - "start": { - "$date": "2021-05-16T18:58:41.000Z" - }, - "end": { - "$date": "2021-05-16T19:00:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0a49336f-97e2-41f5-85af-231b3253969d", - "start": { - "$date": "2021-05-16T19:00:41.000Z" - }, - "end": { - "$date": "2021-05-16T19:19:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb3b94f0-18a9-42b3-bdbc-78c8f6f9091b", - "start": { - "$date": "2021-05-16T19:19:41.000Z" - }, - "end": { - "$date": "2021-05-16T19:24:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa807fdb-964e-482c-a13f-ee5c66191766", - "start": { - "$date": "2021-05-16T19:24:41.000Z" - }, - "end": { - "$date": "2021-05-16T19:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "49f610b5-ea41-4b08-ae51-0e3e74ff224b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T18:49:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:52:56.000Z" - }, - "events": [ - { - "uuid": "d097b0e5-5fd5-49b7-843c-df4675b08efa", - "start": { - "$date": "2021-05-16T18:49:39.000Z" - }, - "end": { - "$date": "2021-05-16T19:47:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4bae44fe-3750-4727-a786-c21ac71b91bb", - "start": { - "$date": "2021-05-16T19:47:39.000Z" - }, - "end": { - "$date": "2021-05-16T19:53:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "380085b3-b6c7-4199-a12b-fc8c9e19aedb", - "start": { - "$date": "2021-05-16T19:53:39.000Z" - }, - "end": { - "$date": "2021-05-16T19:55:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7ea4698-1082-478a-a40f-1a79f18c3ed1", - "start": { - "$date": "2021-05-16T19:55:39.000Z" - }, - "end": { - "$date": "2021-05-16T19:59:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6ed0b532-c631-4cd3-b6b0-0e5c15f64d89", - "start": { - "$date": "2021-05-16T19:59:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:01:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e8b6f6b-54fb-425a-a970-0755c80f6a48", - "start": { - "$date": "2021-05-16T20:01:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:23:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de1c5941-d50e-4870-9cb4-dcdb21573c7c", - "start": { - "$date": "2021-05-16T20:23:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:25:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97827cd7-d5f2-494f-8dd8-db86dc337a58", - "start": { - "$date": "2021-05-16T20:25:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:40:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a7ec8b8-2118-4dce-bb55-1be5934305a2", - "start": { - "$date": "2021-05-16T20:40:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "955db964-ea9b-4a97-9511-7626b0eaa32e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T19:07:34.000Z" - }, - "end": { - "$date": "2021-05-16T19:25:58.000Z" - }, - "events": [ - { - "uuid": "083668f3-5a2e-47ed-bf0c-a5ea6d061203", - "start": { - "$date": "2021-05-16T19:07:34.000Z" - }, - "end": { - "$date": "2021-05-16T19:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "369bf7ce-e506-4de7-9ff8-0527124c421a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T19:10:31.000Z" - }, - "end": { - "$date": "2021-05-16T19:11:33.000Z" - }, - "events": [ - { - "uuid": "89bce0ae-6609-4461-8dca-9c245c397843", - "start": { - "$date": "2021-05-16T19:10:31.000Z" - }, - "end": { - "$date": "2021-05-16T19:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "629d39e8-3066-4fc5-a81a-d3bbd5ebbe22", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T19:11:35.000Z" - }, - "end": { - "$date": "2021-05-16T19:25:36.000Z" - }, - "events": [ - { - "uuid": "aa83d426-13ba-4c8d-9f38-d166ea154c57", - "start": { - "$date": "2021-05-16T19:11:35.000Z" - }, - "end": { - "$date": "2021-05-16T19:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "68c91905-771d-42c8-9475-7dd6cc808d86", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-16T19:18:33.000Z" - }, - "end": { - "$date": "2021-05-16T19:30:20.000Z" - }, - "events": [ - { - "uuid": "a72e3e97-2c16-46c5-bf99-d70720daaf29", - "start": { - "$date": "2021-05-16T19:18:33.000Z" - }, - "end": { - "$date": "2021-05-16T19:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5809bccd-3c80-407c-afb6-19baff713f84", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-16T19:19:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:43:58.000Z" - }, - "events": [ - { - "uuid": "7a535589-bda2-403e-8f34-d02f42cc8c14", - "start": { - "$date": "2021-05-16T19:19:39.000Z" - }, - "end": { - "$date": "2021-05-16T20:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2f800156-29f4-4585-a241-2b1751e5f02c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T19:25:47.000Z" - }, - "end": { - "$date": "2021-05-16T20:07:18.000Z" - }, - "events": [ - { - "uuid": "9d13ec22-5f0b-48c5-bb41-cb6077c616c6", - "start": { - "$date": "2021-05-16T19:25:47.000Z" - }, - "end": { - "$date": "2021-05-16T20:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "242db072-89a7-46f6-96cd-9d924e94b1af", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T19:42:50.000Z" - }, - "end": { - "$date": "2021-05-16T20:20:35.000Z" - }, - "events": [ - { - "uuid": "a247aea2-df04-462d-aa43-481c3a646bae", - "start": { - "$date": "2021-05-16T19:42:50.000Z" - }, - "end": { - "$date": "2021-05-16T20:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "74b13687-79f7-48bf-a2eb-a98c6b6a357a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-16T19:40:19.000Z" - }, - "end": { - "$date": "2021-05-16T20:52:39.000Z" - }, - "events": [ - { - "uuid": "02dcce08-752c-4ecb-89e5-8527033e2508", - "start": { - "$date": "2021-05-16T19:40:19.000Z" - }, - "end": { - "$date": "2021-05-16T20:52:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1fa5036-d0ae-4e28-afed-a60cfd73e5df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T21:03:22.000Z" - }, - "end": { - "$date": "2021-05-16T21:32:36.000Z" - }, - "events": [ - { - "uuid": "b414b9b9-f514-4779-b902-efb363b26b22", - "start": { - "$date": "2021-05-16T21:03:22.000Z" - }, - "end": { - "$date": "2021-05-16T21:14:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "34732337-0ac7-4648-9f85-f1f02300440e", - "start": { - "$date": "2021-05-16T21:14:22.000Z" - }, - "end": { - "$date": "2021-05-16T21:28:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52446ca0-5de7-416a-b775-3062620692cb", - "start": { - "$date": "2021-05-16T21:28:22.000Z" - }, - "end": { - "$date": "2021-05-16T21:30:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1154b731-59a1-4a7f-a79e-ece74c6d540b", - "start": { - "$date": "2021-05-16T21:30:22.000Z" - }, - "end": { - "$date": "2021-05-16T21:37:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8315473a-d9e0-4fcc-a87c-7b944731d57f", - "start": { - "$date": "2021-05-16T21:37:22.000Z" - }, - "end": { - "$date": "2021-05-16T21:32:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c9534e7b-49d7-4ddc-827b-6b9c23f70d73", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-16T20:22:57.000Z" - }, - "end": { - "$date": "2021-05-16T20:27:43.000Z" - }, - "events": [ - { - "uuid": "af7b9ad7-dfa1-4d04-a332-6c14c4c5f2bd", - "start": { - "$date": "2021-05-16T20:22:57.000Z" - }, - "end": { - "$date": "2021-05-16T20:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a6306e56-6a4e-453f-ade1-dd3134e26cc7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-16T20:36:33.000Z" - }, - "end": { - "$date": "2021-05-16T20:49:14.000Z" - }, - "events": [ - { - "uuid": "0f57c0a5-1422-4282-a9af-e085aaed9d55", - "start": { - "$date": "2021-05-16T20:36:33.000Z" - }, - "end": { - "$date": "2021-05-16T20:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bc584291-e265-43d9-8561-8ea637010f50", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-16T22:20:47.000Z" - }, - "end": { - "$date": "2021-05-17T00:30:12.000Z" - }, - "events": [ - { - "uuid": "a0d507e6-3c74-462c-ae24-4262744e0a54", - "start": { - "$date": "2021-05-16T22:20:47.000Z" - }, - "end": { - "$date": "2021-05-17T00:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "de1c2bce-209b-4256-af87-f88515946942", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-16T20:49:30.000Z" - }, - "end": { - "$date": "2021-05-17T00:24:24.000Z" - }, - "events": [ - { - "uuid": "62dbdbdd-120d-46ee-9b2e-1a5f58397d25", - "start": { - "$date": "2021-05-16T20:49:30.000Z" - }, - "end": { - "$date": "2021-05-17T00:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5b924a15-9362-45b6-a159-37c1ca902559", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-16T23:33:12.000Z" - }, - "end": { - "$date": "2021-05-17T00:30:10.000Z" - }, - "events": [ - { - "uuid": "9a576081-f19a-4a68-b065-b00f2faa85a9", - "start": { - "$date": "2021-05-16T23:33:12.000Z" - }, - "end": { - "$date": "2021-05-17T00:29:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8f3bed1-3f3b-40f5-9c8f-77cf0bae9612", - "start": { - "$date": "2021-05-17T00:29:12.000Z" - }, - "end": { - "$date": "2021-05-17T00:35:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e553e7d-a21f-4d05-b4d7-c7879abec291", - "start": { - "$date": "2021-05-17T00:35:12.000Z" - }, - "end": { - "$date": "2021-05-17T00:37:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a79e07a-b50f-4955-be93-0ce3bd28b29a", - "start": { - "$date": "2021-05-17T00:37:12.000Z" - }, - "end": { - "$date": "2021-05-17T00:57:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f891c115-7fa1-45e8-b403-01fe3cf638c8", - "start": { - "$date": "2021-05-17T00:57:12.000Z" - }, - "end": { - "$date": "2021-05-17T00:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55499acf-d1ee-4c9d-b359-83aef3789342", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T22:00:40.000Z" - }, - "end": { - "$date": "2021-05-16T22:34:57.000Z" - }, - "events": [ - { - "uuid": "6baa4119-c4fe-4930-8b3c-98c69513cb9f", - "start": { - "$date": "2021-05-16T22:00:40.000Z" - }, - "end": { - "$date": "2021-05-16T22:34:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f2f00b92-3d06-407f-91d2-98ad3893e0c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-16T22:13:41.000Z" - }, - "end": { - "$date": "2021-05-16T23:40:31.000Z" - }, - "events": [ - { - "uuid": "eba73675-c0a2-4423-b27a-68d1a8e5792f", - "start": { - "$date": "2021-05-16T22:13:41.000Z" - }, - "end": { - "$date": "2021-05-16T23:40:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76147cb4-2c6e-44cb-b6b4-c3cb1b2c7180", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-16T22:17:57.000Z" - }, - "end": { - "$date": "2021-05-17T00:29:03.000Z" - }, - "events": [ - { - "uuid": "859864a4-bbed-4708-a437-a016df268720", - "start": { - "$date": "2021-05-16T22:17:57.000Z" - }, - "end": { - "$date": "2021-05-17T00:29:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "18596ae0-e311-417e-839f-b559a9d48363", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-16T22:45:24.000Z" - }, - "end": { - "$date": "2021-05-16T23:39:30.000Z" - }, - "events": [ - { - "uuid": "eac08ec6-962c-4f85-a6dc-47a44af3bc1e", - "start": { - "$date": "2021-05-16T22:45:24.000Z" - }, - "end": { - "$date": "2021-05-16T23:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5da37ff6-1f39-4a9e-9180-37823391e399", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-16T23:07:55.000Z" - }, - "end": { - "$date": "2021-05-17T00:52:00.000Z" - }, - "events": [ - { - "uuid": "c695b3c2-492f-4d5f-8522-8ebd6d3b558c", - "start": { - "$date": "2021-05-16T23:07:55.000Z" - }, - "end": { - "$date": "2021-05-16T23:28:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95070eef-6c63-42e0-b206-ebf97e3e8838", - "start": { - "$date": "2021-05-16T23:28:55.000Z" - }, - "end": { - "$date": "2021-05-16T23:31:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bdf738e2-4577-4088-8b70-e4496ffc0ad1", - "start": { - "$date": "2021-05-16T23:31:55.000Z" - }, - "end": { - "$date": "2021-05-17T00:42:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "220e23d0-d312-40e1-a30f-83eedb6177b3", - "start": { - "$date": "2021-05-17T00:42:55.000Z" - }, - "end": { - "$date": "2021-05-17T00:45:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e075215b-26b9-4288-8a9e-b08f03f31136", - "start": { - "$date": "2021-05-17T00:45:55.000Z" - }, - "end": { - "$date": "2021-05-17T00:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "eff93bd9-9e47-44f7-9def-601b935febeb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-17T00:24:45.000Z" - }, - "end": { - "$date": "2021-05-17T00:34:26.000Z" - }, - "events": [ - { - "uuid": "ce9fc1ed-4ac2-452b-abd2-ff42b2ff5d83", - "start": { - "$date": "2021-05-17T00:24:45.000Z" - }, - "end": { - "$date": "2021-05-17T00:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "84658ebf-a042-4ea3-87a9-e2c07115066a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-17T03:19:23.000Z" - }, - "end": { - "$date": "2021-05-17T04:38:43.000Z" - }, - "events": [ - { - "uuid": "94213bf2-052e-4ca0-a941-88aec9527c1f", - "start": { - "$date": "2021-05-17T03:19:23.000Z" - }, - "end": { - "$date": "2021-05-17T06:18:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6863e1e0-9aa2-4ccb-bf7d-cacc4515fed9", - "start": { - "$date": "2021-05-17T06:18:23.000Z" - }, - "end": { - "$date": "2021-05-17T06:43:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "059ee0bc-05d3-4c02-9a22-ee7ab934528f", - "start": { - "$date": "2021-05-17T06:43:23.000Z" - }, - "end": { - "$date": "2021-05-17T04:38:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e41b6045-7f62-4016-bc33-6361acd3d8e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-17T01:21:16.000Z" - }, - "end": { - "$date": "2021-05-17T07:20:18.000Z" - }, - "events": [ - { - "uuid": "2f757316-7701-4869-9a98-72d68952c0e1", - "start": { - "$date": "2021-05-17T01:21:16.000Z" - }, - "end": { - "$date": "2021-05-17T07:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c6e13263-dfbc-4c6c-92d6-852f0a20fd97", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-17T01:24:25.000Z" - }, - "end": { - "$date": "2021-05-17T09:01:33.000Z" - }, - "events": [ - { - "uuid": "2ea5da17-9565-44b0-9022-9026407b9c15", - "start": { - "$date": "2021-05-17T01:24:25.000Z" - }, - "end": { - "$date": "2021-05-17T02:35:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc1c01d2-e3a3-4288-a2ca-e047b0d410f0", - "start": { - "$date": "2021-05-17T02:35:25.000Z" - }, - "end": { - "$date": "2021-05-17T02:47:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1453ee94-42b8-4edd-8e48-c2bf057b5058", - "start": { - "$date": "2021-05-17T02:47:25.000Z" - }, - "end": { - "$date": "2021-05-17T02:49:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a1ed7b2-0c4e-4f85-bb1d-2d2349c7e958", - "start": { - "$date": "2021-05-17T02:49:25.000Z" - }, - "end": { - "$date": "2021-05-17T03:30:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c773f138-b399-4709-b007-49f7581ff9b2", - "start": { - "$date": "2021-05-17T03:30:25.000Z" - }, - "end": { - "$date": "2021-05-17T03:32:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce3d53fd-49b0-4ce8-8d0e-e0696159b9c0", - "start": { - "$date": "2021-05-17T03:32:25.000Z" - }, - "end": { - "$date": "2021-05-17T03:59:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dcd03f7d-effb-4fe3-b74d-c0e341c14c3a", - "start": { - "$date": "2021-05-17T03:59:25.000Z" - }, - "end": { - "$date": "2021-05-17T04:01:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85df7585-7a4b-4219-b74e-fa5a831e23e4", - "start": { - "$date": "2021-05-17T04:01:25.000Z" - }, - "end": { - "$date": "2021-05-17T04:07:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d66c2fde-2b2f-4456-86dd-44e8890630d6", - "start": { - "$date": "2021-05-17T04:07:25.000Z" - }, - "end": { - "$date": "2021-05-17T04:09:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5e31616-5519-4248-a140-713d173693ce", - "start": { - "$date": "2021-05-17T04:09:25.000Z" - }, - "end": { - "$date": "2021-05-17T04:25:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2371f929-e4de-40cc-86da-e77f49c2e74c", - "start": { - "$date": "2021-05-17T04:25:25.000Z" - }, - "end": { - "$date": "2021-05-17T04:36:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95584c3f-b320-4ce0-862b-b98db8d10803", - "start": { - "$date": "2021-05-17T04:36:25.000Z" - }, - "end": { - "$date": "2021-05-17T05:42:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1d102ba0-29a6-42e0-ac5d-1fc12c32023d", - "start": { - "$date": "2021-05-17T05:42:25.000Z" - }, - "end": { - "$date": "2021-05-17T05:44:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5c0d0d5-77a7-4411-87bf-60755ea236a8", - "start": { - "$date": "2021-05-17T05:44:25.000Z" - }, - "end": { - "$date": "2021-05-17T05:45:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9e2daeb1-9a83-4045-92de-e3e513b374dd", - "start": { - "$date": "2021-05-17T05:45:25.000Z" - }, - "end": { - "$date": "2021-05-17T05:47:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "11b653f4-ee21-4c6a-8f78-117d41fc8abb", - "start": { - "$date": "2021-05-17T05:47:25.000Z" - }, - "end": { - "$date": "2021-05-17T06:09:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7593f7f2-3ad5-403b-a6fe-9edc7cc1a8df", - "start": { - "$date": "2021-05-17T06:09:25.000Z" - }, - "end": { - "$date": "2021-05-17T06:54:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d0dd66f-92da-440d-97e8-3532003b1743", - "start": { - "$date": "2021-05-17T06:54:25.000Z" - }, - "end": { - "$date": "2021-05-17T06:56:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53098042-4057-429f-b71c-ee28e8dfed9d", - "start": { - "$date": "2021-05-17T06:56:25.000Z" - }, - "end": { - "$date": "2021-05-17T06:58:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b77d3690-d08d-4984-ad7e-0964477e36f5", - "start": { - "$date": "2021-05-17T06:58:25.000Z" - }, - "end": { - "$date": "2021-05-17T08:33:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7943467-9912-4f78-95a9-38af3edb4b5d", - "start": { - "$date": "2021-05-17T08:33:25.000Z" - }, - "end": { - "$date": "2021-05-17T08:42:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "221d7141-6fe6-4278-b962-9f22f5423d3f", - "start": { - "$date": "2021-05-17T08:42:25.000Z" - }, - "end": { - "$date": "2021-05-17T08:50:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d84c7304-aa77-45b0-8517-8c09a874c4bf", - "start": { - "$date": "2021-05-17T08:50:25.000Z" - }, - "end": { - "$date": "2021-05-17T08:58:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f0f04f0d-8101-4f4a-8e27-ad73806c8f89", - "start": { - "$date": "2021-05-17T08:58:25.000Z" - }, - "end": { - "$date": "2021-05-17T08:59:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8167750f-5bef-49ac-9628-462a6f8c59d8", - "start": { - "$date": "2021-05-17T08:59:25.000Z" - }, - "end": { - "$date": "2021-05-17T09:01:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2f399d92-0bbd-4f55-b372-752d91cafc78", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T01:27:47.000Z" - }, - "end": { - "$date": "2021-05-17T02:21:10.000Z" - }, - "events": [ - { - "uuid": "58f1ab4e-d0d7-4ca3-9096-f4e2cf197ec2", - "start": { - "$date": "2021-05-17T01:27:47.000Z" - }, - "end": { - "$date": "2021-05-17T02:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "aa640bbf-4f4b-46c4-83be-089cd57a6865", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-17T01:56:42.000Z" - }, - "end": { - "$date": "2021-05-17T02:45:38.000Z" - }, - "events": [ - { - "uuid": "83386d4d-6eb2-492f-bba4-de415e081b55", - "start": { - "$date": "2021-05-17T01:56:42.000Z" - }, - "end": { - "$date": "2021-05-17T02:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "df23f129-426d-4880-b2bb-912b0afe865f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-17T02:07:12.000Z" - }, - "end": { - "$date": "2021-05-17T02:34:55.000Z" - }, - "events": [ - { - "uuid": "5ed82b34-aa2b-4f09-b365-130363b80d75", - "start": { - "$date": "2021-05-17T02:07:12.000Z" - }, - "end": { - "$date": "2021-05-17T02:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "be8f4d37-da12-4d3a-b826-d85aa94bcb5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-17T02:19:01.000Z" - }, - "end": { - "$date": "2021-05-17T05:01:45.000Z" - }, - "events": [ - { - "uuid": "4032ca10-eed4-4659-9b51-f643d4415625", - "start": { - "$date": "2021-05-17T02:19:01.000Z" - }, - "end": { - "$date": "2021-05-17T05:01:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f010e3f9-a77f-480d-9695-000aace53291", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T02:21:21.000Z" - }, - "end": { - "$date": "2021-05-17T05:01:26.000Z" - }, - "events": [ - { - "uuid": "2d666361-6a05-451f-96dd-f13e25db3118", - "start": { - "$date": "2021-05-17T02:21:21.000Z" - }, - "end": { - "$date": "2021-05-17T05:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "953d4d85-4861-4b3f-9042-d67bb2799f0d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-17T02:46:28.000Z" - }, - "end": { - "$date": "2021-05-17T04:38:27.000Z" - }, - "events": [ - { - "uuid": "d5fceb50-5e3a-4d38-9c60-3cc74a3a8f24", - "start": { - "$date": "2021-05-17T02:46:28.000Z" - }, - "end": { - "$date": "2021-05-17T04:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92304090-d880-4b76-bb6c-5be7479145ef", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-17T03:34:32.000Z" - }, - "end": { - "$date": "2021-05-17T04:06:40.000Z" - }, - "events": [ - { - "uuid": "190c3d1e-9a07-4138-a4e5-143a33ab9d3d", - "start": { - "$date": "2021-05-17T03:34:32.000Z" - }, - "end": { - "$date": "2021-05-17T04:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "04d2cead-5b32-495e-a6c7-28ec65830629", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T03:48:37.000Z" - }, - "end": { - "$date": "2021-05-17T04:50:35.000Z" - }, - "events": [ - { - "uuid": "930ad4e3-64cc-47ce-a8a3-439734507bd8", - "start": { - "$date": "2021-05-17T03:48:37.000Z" - }, - "end": { - "$date": "2021-05-17T04:18:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ba66ed3-4f44-4d93-91f3-a45f7bf8910e", - "start": { - "$date": "2021-05-17T04:18:37.000Z" - }, - "end": { - "$date": "2021-05-17T04:19:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "19a33ea7-ce3f-41ed-b38c-d055de220080", - "start": { - "$date": "2021-05-17T04:19:37.000Z" - }, - "end": { - "$date": "2021-05-17T04:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48a13566-208d-4957-a83b-621d2252e6cd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-17T04:12:15.000Z" - }, - "end": { - "$date": "2021-05-17T04:45:03.000Z" - }, - "events": [ - { - "uuid": "d8e40173-a1b0-465d-9a6b-7951d7466531", - "start": { - "$date": "2021-05-17T04:12:15.000Z" - }, - "end": { - "$date": "2021-05-17T04:45:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "804cac7e-dea9-4b0f-8bad-98c5e0dafa0e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-17T04:45:18.000Z" - }, - "end": { - "$date": "2021-05-17T04:59:33.000Z" - }, - "events": [ - { - "uuid": "c32ea316-a672-42a8-a65b-dc72dec01ebf", - "start": { - "$date": "2021-05-17T04:45:18.000Z" - }, - "end": { - "$date": "2021-05-17T04:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4224fdb9-fb5a-4ff2-8807-92207a6e9adb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-17T04:55:29.000Z" - }, - "end": { - "$date": "2021-05-17T05:12:01.000Z" - }, - "events": [ - { - "uuid": "df116cb8-e2ac-43be-8081-35710f5c88e6", - "start": { - "$date": "2021-05-17T04:55:29.000Z" - }, - "end": { - "$date": "2021-05-17T05:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "45053aad-fe18-496c-8a07-0429d9ca33d8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T05:02:37.000Z" - }, - "end": { - "$date": "2021-05-17T16:12:45.000Z" - }, - "events": [ - { - "uuid": "90bcbc7b-0c70-46fa-8a5b-8e5981bf31f1", - "start": { - "$date": "2021-05-17T05:02:37.000Z" - }, - "end": { - "$date": "2021-05-17T05:14:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c6c8dca-c6e2-4fd4-9bfc-38df462f45ca", - "start": { - "$date": "2021-05-17T05:14:37.000Z" - }, - "end": { - "$date": "2021-05-17T15:05:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "039f7f03-bff3-4d88-b345-f81f222590f3", - "start": { - "$date": "2021-05-17T15:05:37.000Z" - }, - "end": { - "$date": "2021-05-17T15:10:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2201a307-4b14-46c0-ace8-324d6dff2793", - "start": { - "$date": "2021-05-17T15:10:37.000Z" - }, - "end": { - "$date": "2021-05-17T15:21:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "067747fc-16f8-4a71-addd-e3149af0a5b3", - "start": { - "$date": "2021-05-17T15:21:37.000Z" - }, - "end": { - "$date": "2021-05-17T15:31:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7fe73cf3-3658-4243-89f1-f97d6fd365b2", - "start": { - "$date": "2021-05-17T15:31:37.000Z" - }, - "end": { - "$date": "2021-05-17T15:34:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5fd94f71-2781-4482-85d7-772057fe8653", - "start": { - "$date": "2021-05-17T15:34:37.000Z" - }, - "end": { - "$date": "2021-05-17T16:04:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3090b33d-4967-4a2d-bafe-003b202c42b4", - "start": { - "$date": "2021-05-17T16:04:37.000Z" - }, - "end": { - "$date": "2021-05-17T16:05:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "60ef5b26-7e6f-4337-9f62-85c0e8224664", - "start": { - "$date": "2021-05-17T16:05:37.000Z" - }, - "end": { - "$date": "2021-05-17T16:12:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3726462c-ff06-406b-8103-f182cd1cb72c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-17T05:14:32.000Z" - }, - "end": { - "$date": "2021-05-17T05:37:36.000Z" - }, - "events": [ - { - "uuid": "925a836c-6035-4274-a1f5-86a28828282b", - "start": { - "$date": "2021-05-17T05:14:32.000Z" - }, - "end": { - "$date": "2021-05-17T05:37:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dce5b414-c6eb-4262-a8af-f1c0590b8aea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-17T05:14:30.000Z" - }, - "end": { - "$date": "2021-05-17T05:37:26.000Z" - }, - "events": [ - { - "uuid": "260a1799-1b34-4383-8652-6f63ac9b8bee", - "start": { - "$date": "2021-05-17T05:14:30.000Z" - }, - "end": { - "$date": "2021-05-17T05:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c81a212-33ba-40f4-85ca-9f03fb653cc2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-17T05:17:12.000Z" - }, - "end": { - "$date": "2021-05-17T05:46:30.000Z" - }, - "events": [ - { - "uuid": "294402d3-c64d-45c9-a39f-5e79c536ebd9", - "start": { - "$date": "2021-05-17T05:17:12.000Z" - }, - "end": { - "$date": "2021-05-17T05:46:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de3e974c-6eb5-468b-b531-7bd7e95aa61f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-17T05:42:34.000Z" - }, - "end": { - "$date": "2021-05-17T06:03:35.000Z" - }, - "events": [ - { - "uuid": "533d66e6-7c65-4931-afc8-2e4a89dd8247", - "start": { - "$date": "2021-05-17T05:42:34.000Z" - }, - "end": { - "$date": "2021-05-17T06:03:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bfc8aac-63dd-4b0e-90b0-61674fe519d2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-17T05:42:32.000Z" - }, - "end": { - "$date": "2021-05-17T06:03:27.000Z" - }, - "events": [ - { - "uuid": "2272f68a-c950-447e-a833-96ce4f043fdb", - "start": { - "$date": "2021-05-17T05:42:32.000Z" - }, - "end": { - "$date": "2021-05-17T06:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdb4995d-2e6b-402d-a893-52bd7631ba15", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-17T05:52:51.000Z" - }, - "end": { - "$date": "2021-05-17T06:17:23.000Z" - }, - "events": [ - { - "uuid": "aa68cfe9-2c78-4e1a-bad1-bb3a076e1aef", - "start": { - "$date": "2021-05-17T05:52:51.000Z" - }, - "end": { - "$date": "2021-05-17T06:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7faf2ff-463a-4367-9ad5-82af7e3e6317", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-17T06:30:36.000Z" - }, - "end": { - "$date": "2021-05-17T07:05:04.000Z" - }, - "events": [ - { - "uuid": "d9fbf86c-91a0-4a79-9210-01960fd394d9", - "start": { - "$date": "2021-05-17T06:30:36.000Z" - }, - "end": { - "$date": "2021-05-17T07:05:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9a80e9ad-5ec8-4398-96b1-b67e5fb6e761", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-17T13:47:20.000Z" - }, - "end": { - "$date": "2021-05-17T14:26:38.000Z" - }, - "events": [ - { - "uuid": "fdcabcc1-a1cf-43e3-a038-cec198fac7dc", - "start": { - "$date": "2021-05-17T13:47:20.000Z" - }, - "end": { - "$date": "2021-05-17T14:26:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "b0bb51e7-ed2d-4ec5-b3ad-88e3c48767cd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-17T14:26:55.000Z" - }, - "end": { - "$date": "2021-05-17T16:30:20.000Z" - }, - "events": [ - { - "uuid": "ca8664b1-8ef5-4371-bbf9-ecd752eb5d88", - "start": { - "$date": "2021-05-17T14:26:55.000Z" - }, - "end": { - "$date": "2021-05-17T16:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "41165e6a-7782-4cb2-9bb6-736b8ece6e1d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-17T14:39:19.000Z" - }, - "end": { - "$date": "2021-05-17T15:18:13.000Z" - }, - "events": [ - { - "uuid": "48eb3316-431f-4ae9-8d08-360f2a353948", - "start": { - "$date": "2021-05-17T14:39:19.000Z" - }, - "end": { - "$date": "2021-05-17T15:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f1da3a14-772a-41d6-acb3-21d80707ef66", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-17T15:22:14.000Z" - }, - "end": { - "$date": "2021-05-17T15:37:29.000Z" - }, - "events": [ - { - "uuid": "897555e1-a3bd-45a1-afdf-4465ae2b4951", - "start": { - "$date": "2021-05-17T15:22:14.000Z" - }, - "end": { - "$date": "2021-05-17T15:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2e5869ad-c98d-47bb-8ecf-252880fb5664", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-17T15:27:57.000Z" - }, - "end": { - "$date": "2021-05-17T15:36:00.000Z" - }, - "events": [ - { - "uuid": "493b7484-8392-431c-b90b-38b2155315d6", - "start": { - "$date": "2021-05-17T15:27:57.000Z" - }, - "end": { - "$date": "2021-05-17T15:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38962999-ece6-4418-8101-caa9482d3e66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T16:13:31.000Z" - }, - "end": { - "$date": "2021-05-17T16:45:13.000Z" - }, - "events": [ - { - "uuid": "636c581d-2748-4a30-bf55-948220907839", - "start": { - "$date": "2021-05-17T16:13:31.000Z" - }, - "end": { - "$date": "2021-05-17T16:45:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7dbf0b59-34fc-4795-8820-b6932c945778", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T17:22:53.000Z" - }, - "end": { - "$date": "2021-05-17T17:41:48.000Z" - }, - "events": [ - { - "uuid": "f5325134-8171-46c7-8086-050c0dcb09d5", - "start": { - "$date": "2021-05-17T17:22:53.000Z" - }, - "end": { - "$date": "2021-05-17T17:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f17f04b5-cfd2-4e29-93c1-07a7554f413f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-17T16:47:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:57:59.000Z" - }, - "events": [ - { - "uuid": "6e1f0822-a534-4319-84bb-7fa0d48a45cf", - "start": { - "$date": "2021-05-17T16:47:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:23:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50ada64f-b3d6-4941-9ae4-cccd052b2c94", - "start": { - "$date": "2021-05-17T17:23:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:24:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f2dc6e64-0b11-4d0f-852e-909f11c47b3d", - "start": { - "$date": "2021-05-17T17:24:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:27:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "304e1a9b-e29d-4788-99a7-56d2da168d6d", - "start": { - "$date": "2021-05-17T17:27:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:30:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39f3bbf7-446a-4850-9a67-edcb95f23c47", - "start": { - "$date": "2021-05-17T17:30:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:32:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb4777b4-0c6a-40c8-b9cc-80e0eeeed45e", - "start": { - "$date": "2021-05-17T17:32:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:53:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7c93834c-c0b8-41db-a254-5f0a3b89cffa", - "start": { - "$date": "2021-05-17T17:53:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:55:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3ee5d9bc-2a6c-413f-b67e-897dae47fda2", - "start": { - "$date": "2021-05-17T17:55:18.000Z" - }, - "end": { - "$date": "2021-05-17T17:58:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7dedc003-fbce-4856-8b12-df9ee22dd905", - "start": { - "$date": "2021-05-17T17:58:18.000Z" - }, - "end": { - "$date": "2021-05-17T18:01:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "657c4334-45e7-4f7c-add2-365e387cb943", - "start": { - "$date": "2021-05-17T18:01:18.000Z" - }, - "end": { - "$date": "2021-05-17T18:27:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6fd8aa3a-8d8d-4918-a064-3a069b26c69a", - "start": { - "$date": "2021-05-17T18:27:18.000Z" - }, - "end": { - "$date": "2021-05-17T18:34:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7515529f-db74-4e4c-9636-a0e898010e00", - "start": { - "$date": "2021-05-17T18:34:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:04:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f242672-4b06-4352-b5ec-12aeb938eb33", - "start": { - "$date": "2021-05-17T19:04:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:06:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb7a9d6e-fddb-4607-95ba-d92c36e710c3", - "start": { - "$date": "2021-05-17T19:06:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:28:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d946123b-df29-41a3-8a40-e32bfcefb417", - "start": { - "$date": "2021-05-17T19:28:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:31:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c50fd4d1-b491-4675-bd71-bedddcbf4815", - "start": { - "$date": "2021-05-17T19:31:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:56:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3073ad2a-d227-422f-94f3-3d27db10a6e3", - "start": { - "$date": "2021-05-17T19:56:18.000Z" - }, - "end": { - "$date": "2021-05-17T19:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6ed07ef5-2496-40f9-8fb7-631dcb7ff55d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T19:58:21.000Z" - }, - "end": { - "$date": "2021-05-17T20:18:13.000Z" - }, - "events": [ - { - "uuid": "f5be48df-fbe2-45ec-adcd-c5bb40db3d82", - "start": { - "$date": "2021-05-17T19:58:21.000Z" - }, - "end": { - "$date": "2021-05-17T20:28:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a7e62bb-1a65-442f-9934-0d6810985013", - "start": { - "$date": "2021-05-17T20:28:21.000Z" - }, - "end": { - "$date": "2021-05-17T20:31:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "191483c3-8398-4587-b71a-ca077227c9d7", - "start": { - "$date": "2021-05-17T20:31:21.000Z" - }, - "end": { - "$date": "2021-05-17T20:44:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c3eb2fd-9572-412b-b355-6a853089f778", - "start": { - "$date": "2021-05-17T20:44:21.000Z" - }, - "end": { - "$date": "2021-05-17T21:02:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b9685f2-a5ed-41b4-ba7a-936ae917505d", - "start": { - "$date": "2021-05-17T21:02:21.000Z" - }, - "end": { - "$date": "2021-05-17T21:04:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45c3558a-9b7f-47e6-8c3a-a76fbf38fe05", - "start": { - "$date": "2021-05-17T21:04:21.000Z" - }, - "end": { - "$date": "2021-05-17T21:06:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d156035-056a-44a2-9150-a7ab18ab97a6", - "start": { - "$date": "2021-05-17T21:06:21.000Z" - }, - "end": { - "$date": "2021-05-17T21:08:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7164705-5a59-4b82-b89c-dbdc932b7bce", - "start": { - "$date": "2021-05-17T21:08:21.000Z" - }, - "end": { - "$date": "2021-05-17T21:26:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "72b67982-a901-4448-ad59-1d60b038552c", - "start": { - "$date": "2021-05-17T21:26:21.000Z" - }, - "end": { - "$date": "2021-05-17T20:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bdff7ac1-633e-44a7-afc5-deb26009bab9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-17T20:11:07.000Z" - }, - "end": { - "$date": "2021-05-18T01:49:11.000Z" - }, - "events": [ - { - "uuid": "b5f6091e-ffd3-4883-a71f-e52b96d62412", - "start": { - "$date": "2021-05-17T20:11:07.000Z" - }, - "end": { - "$date": "2021-05-17T20:18:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f8f70303-8953-49d4-bffe-c118e890b520", - "start": { - "$date": "2021-05-17T20:18:07.000Z" - }, - "end": { - "$date": "2021-05-17T20:25:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa234a6d-6ee7-4e37-9ac6-8eda5c5c4c10", - "start": { - "$date": "2021-05-17T20:25:07.000Z" - }, - "end": { - "$date": "2021-05-17T20:30:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77396016-424b-44bc-b067-618537ce6a71", - "start": { - "$date": "2021-05-17T20:30:07.000Z" - }, - "end": { - "$date": "2021-05-17T21:04:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91ab22d9-fa79-4b4a-aa76-6aad5c261b5b", - "start": { - "$date": "2021-05-17T21:04:07.000Z" - }, - "end": { - "$date": "2021-05-17T21:06:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cef756b5-2016-4033-8e97-0fdeb763439c", - "start": { - "$date": "2021-05-17T21:06:07.000Z" - }, - "end": { - "$date": "2021-05-17T21:07:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7b0119b-1a0e-4a09-813c-dcd4fdfa82a8", - "start": { - "$date": "2021-05-17T21:07:07.000Z" - }, - "end": { - "$date": "2021-05-17T21:09:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f126b2b4-90a2-419c-98cd-ee50f41b82c0", - "start": { - "$date": "2021-05-17T21:09:07.000Z" - }, - "end": { - "$date": "2021-05-17T21:59:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94d5b02c-359d-4bf8-b2c4-9c0631552d60", - "start": { - "$date": "2021-05-17T21:59:07.000Z" - }, - "end": { - "$date": "2021-05-17T22:02:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ad23419-5b9c-45f2-9000-6408e4ab91d5", - "start": { - "$date": "2021-05-17T22:02:07.000Z" - }, - "end": { - "$date": "2021-05-17T22:36:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed20684d-18ef-4cb0-9d05-e55d46a60046", - "start": { - "$date": "2021-05-17T22:36:07.000Z" - }, - "end": { - "$date": "2021-05-17T22:38:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a78412d-73c3-46f3-a404-cb747e4067c7", - "start": { - "$date": "2021-05-17T22:38:07.000Z" - }, - "end": { - "$date": "2021-05-17T23:31:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ad7f20fe-e3f9-486b-ba99-6ce27340cf62", - "start": { - "$date": "2021-05-17T23:31:07.000Z" - }, - "end": { - "$date": "2021-05-17T23:33:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6843f359-19f8-48e3-b596-37613fc95487", - "start": { - "$date": "2021-05-17T23:33:07.000Z" - }, - "end": { - "$date": "2021-05-18T00:23:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c1d2981b-0864-4279-9504-886fee5d09a7", - "start": { - "$date": "2021-05-18T00:23:07.000Z" - }, - "end": { - "$date": "2021-05-18T00:25:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "657106f8-d7ed-4ee7-9213-23c390d51819", - "start": { - "$date": "2021-05-18T00:25:07.000Z" - }, - "end": { - "$date": "2021-05-18T00:46:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7bba038-350d-431b-a3d2-9e9c3f18e35c", - "start": { - "$date": "2021-05-18T00:46:07.000Z" - }, - "end": { - "$date": "2021-05-18T00:48:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5a6d5fb-219d-472d-8286-e3a5e3cfb748", - "start": { - "$date": "2021-05-18T00:48:07.000Z" - }, - "end": { - "$date": "2021-05-18T00:56:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4080b383-06ae-4bf5-9b6a-ca92c3a7eec1", - "start": { - "$date": "2021-05-18T00:56:07.000Z" - }, - "end": { - "$date": "2021-05-18T01:28:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "833a3ff5-490b-45bd-b016-2955ce323109", - "start": { - "$date": "2021-05-18T01:28:07.000Z" - }, - "end": { - "$date": "2021-05-18T01:39:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b22ec732-652f-419d-a1b2-1f5f76c1d27d", - "start": { - "$date": "2021-05-18T01:39:07.000Z" - }, - "end": { - "$date": "2021-05-18T01:41:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d77232b-9f5f-4449-bc5d-c20bc222ab97", - "start": { - "$date": "2021-05-18T01:41:07.000Z" - }, - "end": { - "$date": "2021-05-18T01:44:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a73054c4-03c3-4c8c-9809-6cee868bb9f2", - "start": { - "$date": "2021-05-18T01:44:07.000Z" - }, - "end": { - "$date": "2021-05-18T01:49:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7045826a-c20f-4edb-b0e5-7b0bbd52e230", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T20:19:05.000Z" - }, - "end": { - "$date": "2021-05-17T20:48:56.000Z" - }, - "events": [ - { - "uuid": "11935ba0-7e48-4102-8fa0-90e0fdb4fea9", - "start": { - "$date": "2021-05-17T20:19:05.000Z" - }, - "end": { - "$date": "2021-05-17T20:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "942831f7-d5d3-4124-bd53-56b0caf5eeab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-17T20:23:09.000Z" - }, - "end": { - "$date": "2021-05-17T22:50:15.000Z" - }, - "events": [ - { - "uuid": "e7b8f425-037a-4f14-8a1d-7670cd638aa1", - "start": { - "$date": "2021-05-17T20:23:09.000Z" - }, - "end": { - "$date": "2021-05-17T22:10:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73eefdbf-1861-47f6-b45a-f9854b92ad67", - "start": { - "$date": "2021-05-17T22:10:09.000Z" - }, - "end": { - "$date": "2021-05-17T22:15:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14177e54-3e3d-45e2-a971-8095c81d8f2b", - "start": { - "$date": "2021-05-17T22:15:09.000Z" - }, - "end": { - "$date": "2021-05-17T22:50:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "809a4fc3-40f0-4d77-9b7b-052bd30e0937", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-17T20:42:54.000Z" - }, - "end": { - "$date": "2021-05-17T20:47:09.000Z" - }, - "events": [ - { - "uuid": "da79218f-ee59-4a02-a9ab-82bff870358d", - "start": { - "$date": "2021-05-17T20:42:54.000Z" - }, - "end": { - "$date": "2021-05-17T20:47:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "850f7dcb-3e0a-43f5-820e-2ee21f7a8e38", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-17T21:01:49.000Z" - }, - "end": { - "$date": "2021-05-17T22:53:24.000Z" - }, - "events": [ - { - "uuid": "e812f619-ed70-4173-b6f9-4664fa310606", - "start": { - "$date": "2021-05-17T21:01:49.000Z" - }, - "end": { - "$date": "2021-05-17T22:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "7ae95acc-ed9e-4288-bcf2-478177f63f18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T21:19:01.000Z" - }, - "end": { - "$date": "2021-05-17T21:21:00.000Z" - }, - "events": [ - { - "uuid": "b68219be-f080-49b9-a998-0180661334c7", - "start": { - "$date": "2021-05-17T21:19:01.000Z" - }, - "end": { - "$date": "2021-05-17T21:21:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "cbe65ab8-448e-4a21-be8f-2eee4233ab73", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T21:21:46.000Z" - }, - "end": { - "$date": "2021-05-17T21:38:56.000Z" - }, - "events": [ - { - "uuid": "3d6fae55-66be-4109-80d1-6a9bc349dfb3", - "start": { - "$date": "2021-05-17T21:21:46.000Z" - }, - "end": { - "$date": "2021-05-17T21:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "4e7c3db3-eb36-4e18-9231-b16f7060703f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T21:41:22.000Z" - }, - "end": { - "$date": "2021-05-17T22:00:12.000Z" - }, - "events": [ - { - "uuid": "2f091f32-7148-45f5-9c09-8de557f88639", - "start": { - "$date": "2021-05-17T21:41:22.000Z" - }, - "end": { - "$date": "2021-05-17T22:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8051753f-9dfd-4e76-b155-0350101bb6f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T22:03:33.000Z" - }, - "end": { - "$date": "2021-05-17T22:30:33.000Z" - }, - "events": [ - { - "uuid": "afc12227-2060-4b08-aeab-4b41f1cbd5f8", - "start": { - "$date": "2021-05-17T22:03:33.000Z" - }, - "end": { - "$date": "2021-05-17T22:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "3114f4d1-853e-428a-ac77-55b864b55254", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T22:35:08.000Z" - }, - "end": { - "$date": "2021-05-17T23:05:44.000Z" - }, - "events": [ - { - "uuid": "131e9229-6dfd-420e-a778-c220f488e804", - "start": { - "$date": "2021-05-17T22:35:08.000Z" - }, - "end": { - "$date": "2021-05-17T23:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22c840af-3710-49ac-9fa4-bbef5a7a96f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T22:44:26.000Z" - }, - "end": { - "$date": "2021-05-17T23:12:03.000Z" - }, - "events": [ - { - "uuid": "82009f8d-15c1-4634-b91b-3e7113d81e29", - "start": { - "$date": "2021-05-17T22:44:26.000Z" - }, - "end": { - "$date": "2021-05-17T23:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "9a01d679-d4de-4181-b9d8-a6da81598916", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-17T22:53:56.000Z" - }, - "end": { - "$date": "2021-05-18T00:51:42.000Z" - }, - "events": [ - { - "uuid": "ac00daa6-61be-4d2c-b807-7503b4970ac7", - "start": { - "$date": "2021-05-17T22:53:56.000Z" - }, - "end": { - "$date": "2021-05-18T00:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1905c974-1c94-4b99-97c4-32960a925c3e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-17T23:12:14.000Z" - }, - "end": { - "$date": "2021-05-17T23:59:31.000Z" - }, - "events": [ - { - "uuid": "52bbfb6f-fdaf-458f-974c-ba1dfd354865", - "start": { - "$date": "2021-05-17T23:12:14.000Z" - }, - "end": { - "$date": "2021-05-17T23:26:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5c41f00-fc81-4308-9e5a-3422818c9915", - "start": { - "$date": "2021-05-17T23:26:14.000Z" - }, - "end": { - "$date": "2021-05-17T23:58:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e8de237-9ca3-456e-8eaa-8bcfb7dc9d2e", - "start": { - "$date": "2021-05-17T23:58:14.000Z" - }, - "end": { - "$date": "2021-05-17T23:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4cfc5d6-3f37-44d1-a5c9-dad55ecf0c23", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-17T23:37:38.000Z" - }, - "end": { - "$date": "2021-05-18T00:02:49.000Z" - }, - "events": [ - { - "uuid": "094e495c-38ed-4cfe-88ec-4da7c2f85341", - "start": { - "$date": "2021-05-17T23:37:38.000Z" - }, - "end": { - "$date": "2021-05-18T00:02:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0fba3e01-fc00-4beb-adc8-e124218569f9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-17T23:34:03.000Z" - }, - "end": { - "$date": "2021-05-17T23:39:09.000Z" - }, - "events": [ - { - "uuid": "7a2f1fc9-943d-4e7d-b622-ba3a85e44f94", - "start": { - "$date": "2021-05-17T23:34:03.000Z" - }, - "end": { - "$date": "2021-05-17T23:39:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f318c985-3d6c-4c2e-9c80-5bf90803b555", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-17T23:46:04.000Z" - }, - "end": { - "$date": "2021-05-18T00:16:15.000Z" - }, - "events": [ - { - "uuid": "25d6246c-fbcd-4bd8-80a7-a0c7410d16b4", - "start": { - "$date": "2021-05-17T23:46:04.000Z" - }, - "end": { - "$date": "2021-05-18T00:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "96b3c9aa-38a8-433e-8637-d7f4355f279a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T00:00:12.000Z" - }, - "end": { - "$date": "2021-05-18T01:29:58.000Z" - }, - "events": [ - { - "uuid": "c0d11e6a-5c1e-404c-a080-76d1b92429ec", - "start": { - "$date": "2021-05-18T00:00:12.000Z" - }, - "end": { - "$date": "2021-05-18T01:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0417d7f-7fa9-41b1-9f74-953db3d91f9a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-18T01:12:42.000Z" - }, - "end": { - "$date": "2021-05-18T01:37:38.000Z" - }, - "events": [ - { - "uuid": "1c8e322e-cd45-44f8-b777-038d2e5122db", - "start": { - "$date": "2021-05-18T01:12:42.000Z" - }, - "end": { - "$date": "2021-05-18T01:29:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "59d4e021-af63-4d64-bb9c-11729713e701", - "start": { - "$date": "2021-05-18T01:29:42.000Z" - }, - "end": { - "$date": "2021-05-18T01:37:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "24fd6506-1a4f-45c1-ad02-9f4d49d6a78f", - "start": { - "$date": "2021-05-18T01:37:42.000Z" - }, - "end": { - "$date": "2021-05-18T01:37:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "26e99ea9-52aa-413e-b7c0-9e2affc59519", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-18T00:16:03.000Z" - }, - "end": { - "$date": "2021-05-18T03:52:17.000Z" - }, - "events": [ - { - "uuid": "38ae59db-d582-40da-b470-e0d0476fa208", - "start": { - "$date": "2021-05-18T00:16:03.000Z" - }, - "end": { - "$date": "2021-05-18T03:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "2b80f935-23a9-4cda-af5f-f32170da5d03", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-18T00:19:35.000Z" - }, - "end": { - "$date": "2021-05-18T01:34:21.000Z" - }, - "events": [ - { - "uuid": "1c94a554-566b-42c3-a5c8-a0fa56ba4215", - "start": { - "$date": "2021-05-18T00:19:35.000Z" - }, - "end": { - "$date": "2021-05-18T01:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1e522a92-76b8-4673-a10e-cd5bbc47882f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-18T00:54:35.000Z" - }, - "end": { - "$date": "2021-05-18T01:06:51.000Z" - }, - "events": [ - { - "uuid": "e4c7072e-2586-493c-aaa0-b7a94e4486a4", - "start": { - "$date": "2021-05-18T00:54:35.000Z" - }, - "end": { - "$date": "2021-05-18T01:06:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f8f15685-bbf7-4ab7-a808-217ce95466b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-18T01:02:16.000Z" - }, - "end": { - "$date": "2021-05-18T01:27:07.000Z" - }, - "events": [ - { - "uuid": "f8d0f65d-f6ff-42dc-8e12-fcc0ff06a6de", - "start": { - "$date": "2021-05-18T01:02:16.000Z" - }, - "end": { - "$date": "2021-05-18T01:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df1719bf-5846-4466-8e31-06300fa14eea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-18T01:12:46.000Z" - }, - "end": { - "$date": "2021-05-18T01:37:46.000Z" - }, - "events": [ - { - "uuid": "2651d509-94ec-4c5f-b7e9-bd4edc3ba394", - "start": { - "$date": "2021-05-18T01:12:46.000Z" - }, - "end": { - "$date": "2021-05-18T01:37:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d3dee037-4ec6-4368-a9db-0d99337a84f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-18T01:28:47.000Z" - }, - "end": { - "$date": "2021-05-18T01:39:12.000Z" - }, - "events": [ - { - "uuid": "e0971ee7-8082-4997-9d0a-31948a59d667", - "start": { - "$date": "2021-05-18T01:28:47.000Z" - }, - "end": { - "$date": "2021-05-18T01:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "af21d4d7-363d-4126-8d4f-05e9613e1604", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-18T01:32:19.000Z" - }, - "end": { - "$date": "2021-05-18T01:40:09.000Z" - }, - "events": [ - { - "uuid": "647905ff-288b-486e-9d30-02be4dd33f62", - "start": { - "$date": "2021-05-18T01:32:19.000Z" - }, - "end": { - "$date": "2021-05-18T01:40:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a4b9a471-8152-4799-b9db-24900f0784d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T01:35:49.000Z" - }, - "end": { - "$date": "2021-05-18T03:53:19.000Z" - }, - "events": [ - { - "uuid": "5ac49237-5549-4c39-9113-bca22cd9a0b9", - "start": { - "$date": "2021-05-18T01:35:49.000Z" - }, - "end": { - "$date": "2021-05-18T03:53:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8f958bdd-ac6d-40e0-9431-6018829576ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-18T01:39:32.000Z" - }, - "end": { - "$date": "2021-05-18T03:53:47.000Z" - }, - "events": [ - { - "uuid": "1721a18f-72e3-4913-958c-a1d152637e4e", - "start": { - "$date": "2021-05-18T01:39:32.000Z" - }, - "end": { - "$date": "2021-05-18T03:53:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "12819625-2722-437e-a865-e337366d6129", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-18T01:39:47.000Z" - }, - "end": { - "$date": "2021-05-18T02:41:26.000Z" - }, - "events": [ - { - "uuid": "2ce5f6b5-a1de-4780-8091-f8b3aec9efcc", - "start": { - "$date": "2021-05-18T01:39:47.000Z" - }, - "end": { - "$date": "2021-05-18T02:29:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0dab615-7783-466b-a500-c13a1e94d4d0", - "start": { - "$date": "2021-05-18T02:29:47.000Z" - }, - "end": { - "$date": "2021-05-18T02:39:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bda3f953-98bf-4ab2-98a4-bd9dea997251", - "start": { - "$date": "2021-05-18T02:39:47.000Z" - }, - "end": { - "$date": "2021-05-18T02:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "035d4f5f-3443-4868-a717-0ef6103a76a9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-18T01:39:48.000Z" - }, - "end": { - "$date": "2021-05-18T03:53:16.000Z" - }, - "events": [ - { - "uuid": "8d1bddd1-7d00-4448-a6cb-619625b9905a", - "start": { - "$date": "2021-05-18T01:39:48.000Z" - }, - "end": { - "$date": "2021-05-18T03:53:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dd6bdbf4-33f7-49b2-8810-d21deeca5d8a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-18T01:40:14.000Z" - }, - "end": { - "$date": "2021-05-18T02:20:30.000Z" - }, - "events": [ - { - "uuid": "ca70d568-70d1-4ee1-b133-a212425b9988", - "start": { - "$date": "2021-05-18T01:40:14.000Z" - }, - "end": { - "$date": "2021-05-18T02:20:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26d34977-fd54-453c-83ec-832dd6a99bf3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-18T01:49:26.000Z" - }, - "end": { - "$date": "2021-05-18T01:51:23.000Z" - }, - "events": [ - { - "uuid": "3b3fdf1a-e274-458e-bf07-0f2df2ec85d6", - "start": { - "$date": "2021-05-18T01:49:26.000Z" - }, - "end": { - "$date": "2021-05-18T01:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c95e1c21-fad3-42b5-a1f1-024cc35ecdd8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-18T01:49:57.000Z" - }, - "end": { - "$date": "2021-05-18T09:28:47.000Z" - }, - "events": [ - { - "uuid": "04d72011-5cb5-4452-bb7a-084475ce9a57", - "start": { - "$date": "2021-05-18T01:49:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:04:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6547a25-48a2-474e-8ffc-2524cf72f5b9", - "start": { - "$date": "2021-05-18T04:04:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:06:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3dbb2cec-1348-45ea-8b40-b89159229a9f", - "start": { - "$date": "2021-05-18T04:06:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:08:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6b2b91e4-abc8-4fdb-bdb1-7e02822ff0bd", - "start": { - "$date": "2021-05-18T04:08:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:19:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e9153f2-7f60-44c1-86a5-67974c3819eb", - "start": { - "$date": "2021-05-18T04:19:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:21:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4bede89-067b-487e-8948-cc8d6365764f", - "start": { - "$date": "2021-05-18T04:21:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:25:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "02ec96da-9ea4-4b02-ab6e-781c485b0029", - "start": { - "$date": "2021-05-18T04:25:57.000Z" - }, - "end": { - "$date": "2021-05-18T04:27:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35dc5b91-784e-4375-8537-0bdab070324f", - "start": { - "$date": "2021-05-18T04:27:57.000Z" - }, - "end": { - "$date": "2021-05-18T05:21:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8b38f07f-b974-4ea6-a7f1-d3a837958e8e", - "start": { - "$date": "2021-05-18T05:21:57.000Z" - }, - "end": { - "$date": "2021-05-18T05:23:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25d05fc7-c477-41de-b190-4f0fb394638b", - "start": { - "$date": "2021-05-18T05:23:57.000Z" - }, - "end": { - "$date": "2021-05-18T05:53:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b020dc77-5562-4961-81fd-0863417b3ba8", - "start": { - "$date": "2021-05-18T05:53:57.000Z" - }, - "end": { - "$date": "2021-05-18T05:56:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51e7efc1-6888-471b-8f1a-8bdf948a7ec5", - "start": { - "$date": "2021-05-18T05:56:57.000Z" - }, - "end": { - "$date": "2021-05-18T05:58:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d264ea4-3109-4eab-8d38-200e3cde7b38", - "start": { - "$date": "2021-05-18T05:58:57.000Z" - }, - "end": { - "$date": "2021-05-18T06:02:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60b5a871-4c41-4127-a86d-a940d659ef39", - "start": { - "$date": "2021-05-18T06:02:57.000Z" - }, - "end": { - "$date": "2021-05-18T06:29:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8850fb6-f690-40d2-b7b9-8b9f9cef7756", - "start": { - "$date": "2021-05-18T06:29:57.000Z" - }, - "end": { - "$date": "2021-05-18T06:32:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df3abbf2-1566-454c-82e4-67374bf5e6e0", - "start": { - "$date": "2021-05-18T06:32:57.000Z" - }, - "end": { - "$date": "2021-05-18T09:16:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "01a03626-fd5c-47a2-a3c1-e8cde5ea5f15", - "start": { - "$date": "2021-05-18T09:16:57.000Z" - }, - "end": { - "$date": "2021-05-18T09:19:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77e679cf-a572-4233-a927-6df45687637c", - "start": { - "$date": "2021-05-18T09:19:57.000Z" - }, - "end": { - "$date": "2021-05-18T09:26:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5a57c94-f112-471e-8447-5c2923d385f3", - "start": { - "$date": "2021-05-18T09:26:57.000Z" - }, - "end": { - "$date": "2021-05-18T09:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "4c3cd37c-0424-4d06-97e9-9d703dc2d4e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-18T01:55:25.000Z" - }, - "end": { - "$date": "2021-05-18T02:39:52.000Z" - }, - "events": [ - { - "uuid": "67eaac16-98b1-4ba8-a488-be83d9a710b4", - "start": { - "$date": "2021-05-18T01:55:25.000Z" - }, - "end": { - "$date": "2021-05-18T02:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e53bdd5d-a450-4725-88da-fac84262c627", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-18T02:20:40.000Z" - }, - "end": { - "$date": "2021-05-18T02:35:10.000Z" - }, - "events": [ - { - "uuid": "25062230-7530-4d6e-9e3b-527b02bc88d2", - "start": { - "$date": "2021-05-18T02:20:40.000Z" - }, - "end": { - "$date": "2021-05-18T02:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bb481080-26f9-4a15-a513-3b3ad6dcaa0c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-18T02:35:20.000Z" - }, - "end": { - "$date": "2021-05-18T03:58:12.000Z" - }, - "events": [ - { - "uuid": "c1b3c0ae-3c70-493e-8583-00208b512d63", - "start": { - "$date": "2021-05-18T02:35:20.000Z" - }, - "end": { - "$date": "2021-05-18T03:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dbdd79d0-ca02-476f-a443-49e848a63749", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-18T02:41:56.000Z" - }, - "end": { - "$date": "2021-05-18T03:40:30.000Z" - }, - "events": [ - { - "uuid": "8364bbd7-0cf0-459d-ab01-3192baebddda", - "start": { - "$date": "2021-05-18T02:41:56.000Z" - }, - "end": { - "$date": "2021-05-18T03:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4b89d106-b886-44c8-b2f5-e18f0bac090c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-18T02:46:13.000Z" - }, - "end": { - "$date": "2021-05-18T02:51:18.000Z" - }, - "events": [ - { - "uuid": "6980fd84-7d9c-4057-942e-8b24955b52e0", - "start": { - "$date": "2021-05-18T02:46:13.000Z" - }, - "end": { - "$date": "2021-05-18T02:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4551894a-36f9-4f8d-b15f-5c8e2ff514d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-18T03:52:37.000Z" - }, - "end": { - "$date": "2021-05-18T06:13:36.000Z" - }, - "events": [ - { - "uuid": "19d0d93b-1499-4073-977d-722aff2eedcf", - "start": { - "$date": "2021-05-18T03:52:37.000Z" - }, - "end": { - "$date": "2021-05-18T06:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a917cf89-9d40-48e6-9333-6e971b91401a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-18T04:07:09.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:39.000Z" - }, - "events": [ - { - "uuid": "981fff7d-bc50-4407-b993-c3b951dd9ba6", - "start": { - "$date": "2021-05-18T04:07:09.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63468a4e-88e3-483d-a7d1-93675795057e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T04:07:26.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:40.000Z" - }, - "events": [ - { - "uuid": "201853d6-dd39-422c-b687-a206bff80e14", - "start": { - "$date": "2021-05-18T04:07:26.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26322e82-81f3-4a48-be00-b4d92433c985", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-18T04:07:08.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:39.000Z" - }, - "events": [ - { - "uuid": "7409afb0-f7e1-42ee-bc46-64c61ebf5053", - "start": { - "$date": "2021-05-18T04:07:08.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "392aada8-a0ef-4420-9406-9029ef34a1af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-18T04:07:04.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:45.000Z" - }, - "events": [ - { - "uuid": "2b5294d1-05ff-4691-abd0-7ae687cb080c", - "start": { - "$date": "2021-05-18T04:07:04.000Z" - }, - "end": { - "$date": "2021-05-18T04:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d34f3e07-7dfc-4cb6-b868-81223d93e0ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-18T04:26:40.000Z" - }, - "end": { - "$date": "2021-05-18T04:59:56.000Z" - }, - "events": [ - { - "uuid": "1c6837b2-369a-426b-a7a0-35765490498c", - "start": { - "$date": "2021-05-18T04:26:40.000Z" - }, - "end": { - "$date": "2021-05-18T04:59:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a56b135d-9a07-462e-8a45-7218f8dedc94", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-18T04:26:39.000Z" - }, - "end": { - "$date": "2021-05-18T04:59:51.000Z" - }, - "events": [ - { - "uuid": "0c25a72e-1521-4f5e-916f-5bee8166c967", - "start": { - "$date": "2021-05-18T04:26:39.000Z" - }, - "end": { - "$date": "2021-05-18T04:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1738357a-75ab-4a2d-a643-d65f0ae7b1b1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-18T04:26:45.000Z" - }, - "end": { - "$date": "2021-05-18T04:59:46.000Z" - }, - "events": [ - { - "uuid": "62a4dbaa-8c14-4c44-aef4-2128f98a7269", - "start": { - "$date": "2021-05-18T04:26:45.000Z" - }, - "end": { - "$date": "2021-05-18T04:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "55def058-c918-4be6-aaf3-5abb8c71e3a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T04:24:51.000Z" - }, - "end": { - "$date": "2021-05-18T17:15:07.000Z" - }, - "events": [ - { - "uuid": "e2c09a66-26ba-4aa2-b081-8d7ce462bdc2", - "start": { - "$date": "2021-05-18T04:24:51.000Z" - }, - "end": { - "$date": "2021-05-18T04:37:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d226395-3ad7-4079-b942-b440efebd43e", - "start": { - "$date": "2021-05-18T04:37:51.000Z" - }, - "end": { - "$date": "2021-05-18T05:14:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8912182-e0e3-4be6-a54a-e16f02ba9b18", - "start": { - "$date": "2021-05-18T05:14:51.000Z" - }, - "end": { - "$date": "2021-05-18T05:16:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "213ff77b-c5af-472f-a628-07b5f3f3738e", - "start": { - "$date": "2021-05-18T05:16:51.000Z" - }, - "end": { - "$date": "2021-05-18T15:37:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce02f397-08fd-423c-84d2-526cb6e3fea1", - "start": { - "$date": "2021-05-18T15:37:51.000Z" - }, - "end": { - "$date": "2021-05-18T15:40:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46a2959b-0871-423d-b34a-9580489cf14b", - "start": { - "$date": "2021-05-18T15:40:51.000Z" - }, - "end": { - "$date": "2021-05-18T15:49:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a33a3a78-087c-4715-abfd-b62ba12ffb08", - "start": { - "$date": "2021-05-18T15:49:51.000Z" - }, - "end": { - "$date": "2021-05-18T17:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "3fb48ad6-2153-4792-a38a-1d2fa938dbd3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-18T04:26:15.000Z" - }, - "end": { - "$date": "2021-05-18T05:40:30.000Z" - }, - "events": [ - { - "uuid": "1f57596f-2032-4515-9ad8-f31eb11319b7", - "start": { - "$date": "2021-05-18T04:26:15.000Z" - }, - "end": { - "$date": "2021-05-18T05:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d3517b4-420f-45ed-8b95-192ecb460bcc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-18T05:05:56.000Z" - }, - "end": { - "$date": "2021-05-18T05:39:17.000Z" - }, - "events": [ - { - "uuid": "5f0b4d11-55ce-4b65-b7b8-b73d701dd7ff", - "start": { - "$date": "2021-05-18T05:05:56.000Z" - }, - "end": { - "$date": "2021-05-18T05:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0563a9b8-0d38-4cf3-a45a-9a6e41f8ce5f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-18T14:39:44.000Z" - }, - "end": { - "$date": "2021-05-18T15:45:28.000Z" - }, - "events": [ - { - "uuid": "372abdf6-7896-4f88-b758-345fec77bfed", - "start": { - "$date": "2021-05-18T14:39:44.000Z" - }, - "end": { - "$date": "2021-05-18T15:03:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "38c9a449-234f-4b7f-a165-1fbf9fd5ec08", - "start": { - "$date": "2021-05-18T15:03:44.000Z" - }, - "end": { - "$date": "2021-05-18T15:19:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8bec8b7b-4cb2-4801-a6fe-020683409a46", - "start": { - "$date": "2021-05-18T15:19:44.000Z" - }, - "end": { - "$date": "2021-05-18T15:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "740ea8e2-f320-4fc2-b829-63ad4e61a0b7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-18T15:45:43.000Z" - }, - "end": { - "$date": "2021-05-18T16:48:35.000Z" - }, - "events": [ - { - "uuid": "b19df70d-4c63-4039-9205-0273e3e784ae", - "start": { - "$date": "2021-05-18T15:45:43.000Z" - }, - "end": { - "$date": "2021-05-18T16:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "548444f8-9101-4659-a6ed-4518cd222346", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-18T16:47:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:15:26.000Z" - }, - "events": [ - { - "uuid": "72bb877b-9f12-426a-bb77-25d6f9c719bb", - "start": { - "$date": "2021-05-18T16:47:50.000Z" - }, - "end": { - "$date": "2021-05-18T16:53:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b2b2045-494a-40be-bd20-0d867b4f7f4a", - "start": { - "$date": "2021-05-18T16:53:50.000Z" - }, - "end": { - "$date": "2021-05-18T17:44:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "994462ad-61c3-419d-8044-dae90921b7c0", - "start": { - "$date": "2021-05-18T17:44:50.000Z" - }, - "end": { - "$date": "2021-05-18T17:48:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "53e071e8-dedc-43cd-b8e1-ca7ded7c4705", - "start": { - "$date": "2021-05-18T17:48:50.000Z" - }, - "end": { - "$date": "2021-05-18T17:56:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "869ef43c-d778-43cb-a2fc-f945ce6b7e84", - "start": { - "$date": "2021-05-18T17:56:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:00:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b70c1c06-570d-4f56-95ac-2dc41550382f", - "start": { - "$date": "2021-05-18T18:00:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:02:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "444e319e-2854-42fa-9d8c-80db5a1f4c6c", - "start": { - "$date": "2021-05-18T18:02:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:04:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2def88e7-1738-4fc9-9911-e86ab040bd1e", - "start": { - "$date": "2021-05-18T18:04:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:16:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9122d2ce-4f80-45fc-b66b-354a9537365a", - "start": { - "$date": "2021-05-18T18:16:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:18:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "91a8d233-414f-4571-b689-ed3fb335e348", - "start": { - "$date": "2021-05-18T18:18:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:32:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ccdf491f-8b59-4346-8011-952bf6f9057a", - "start": { - "$date": "2021-05-18T18:32:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:34:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58c45718-fe69-4fed-9ce5-49ca801231c7", - "start": { - "$date": "2021-05-18T18:34:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:46:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "605cf4cb-dc8e-4684-bf3d-f856d2d39e86", - "start": { - "$date": "2021-05-18T18:46:50.000Z" - }, - "end": { - "$date": "2021-05-18T18:49:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3db52c3b-5875-48d9-be43-c639a97c9c28", - "start": { - "$date": "2021-05-18T18:49:50.000Z" - }, - "end": { - "$date": "2021-05-18T19:23:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f415171c-4bfe-410b-b141-ca4491902f8f", - "start": { - "$date": "2021-05-18T19:23:50.000Z" - }, - "end": { - "$date": "2021-05-18T19:25:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8bdbec0f-5509-4f39-bd5e-3ee70525b9ab", - "start": { - "$date": "2021-05-18T19:25:50.000Z" - }, - "end": { - "$date": "2021-05-18T19:30:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6fa0325-3117-4b17-9d12-10c43c444b01", - "start": { - "$date": "2021-05-18T19:30:50.000Z" - }, - "end": { - "$date": "2021-05-18T19:32:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc04e75b-14be-4fd2-a749-2b7a06ceb8a9", - "start": { - "$date": "2021-05-18T19:32:50.000Z" - }, - "end": { - "$date": "2021-05-18T19:47:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc702a3a-f79b-4abc-8156-a24e46d5316c", - "start": { - "$date": "2021-05-18T19:47:50.000Z" - }, - "end": { - "$date": "2021-05-18T19:49:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b5ed020-6fef-4986-9c1c-27a18662c1ee", - "start": { - "$date": "2021-05-18T19:49:50.000Z" - }, - "end": { - "$date": "2021-05-18T20:39:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d357c662-c506-4aca-8ef2-11947962f555", - "start": { - "$date": "2021-05-18T20:39:50.000Z" - }, - "end": { - "$date": "2021-05-18T20:41:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1c06a11-6940-4147-a70f-2bcb3da1c957", - "start": { - "$date": "2021-05-18T20:41:50.000Z" - }, - "end": { - "$date": "2021-05-18T20:44:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cf4ef482-f4db-43bf-8248-8368184b5144", - "start": { - "$date": "2021-05-18T20:44:50.000Z" - }, - "end": { - "$date": "2021-05-18T20:46:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d71d33f1-d952-4a43-a692-e81ccd5bf4f5", - "start": { - "$date": "2021-05-18T20:46:50.000Z" - }, - "end": { - "$date": "2021-05-18T21:11:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "66aa0478-8b76-45cc-a706-29529b45f90e", - "start": { - "$date": "2021-05-18T21:11:50.000Z" - }, - "end": { - "$date": "2021-05-18T21:15:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "726259c4-6157-4ff4-aec9-f3a42fcbd999", - "start": { - "$date": "2021-05-18T21:15:50.000Z" - }, - "end": { - "$date": "2021-05-18T22:38:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a808b754-03b7-45b7-a524-834ecc5dc699", - "start": { - "$date": "2021-05-18T22:38:50.000Z" - }, - "end": { - "$date": "2021-05-18T22:41:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72d44b55-daa9-40dd-a924-7e1b04928d82", - "start": { - "$date": "2021-05-18T22:41:50.000Z" - }, - "end": { - "$date": "2021-05-18T22:52:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d92d9dd1-e064-4cf1-9cfb-de805d8e1f53", - "start": { - "$date": "2021-05-18T22:52:50.000Z" - }, - "end": { - "$date": "2021-05-18T22:57:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89463e6c-1995-4df7-8f74-df21d27501db", - "start": { - "$date": "2021-05-18T22:57:50.000Z" - }, - "end": { - "$date": "2021-05-18T22:58:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb7a7393-af55-4ed6-ada1-5446f5514861", - "start": { - "$date": "2021-05-18T22:58:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:00:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4e76dd7-299b-4488-bd6a-582fc7b8885b", - "start": { - "$date": "2021-05-18T23:00:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:08:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4902e28f-35da-493e-b2c3-31b8c5771109", - "start": { - "$date": "2021-05-18T23:08:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:10:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2b492a43-82ef-45e3-96a5-bd0474bdfe29", - "start": { - "$date": "2021-05-18T23:10:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:24:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e833d7ef-ea40-4814-bfca-8c47fb13b2d1", - "start": { - "$date": "2021-05-18T23:24:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:26:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c81d81ce-0d5b-4bba-bd07-f1487a44776b", - "start": { - "$date": "2021-05-18T23:26:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:48:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b568462f-2a9e-4c8e-8403-64af193005de", - "start": { - "$date": "2021-05-18T23:48:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:50:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1221ddb-cb80-4e43-b9bb-a58dfabccf7b", - "start": { - "$date": "2021-05-18T23:50:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:51:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9d9405f-3fb0-4948-b4e2-5269b3047366", - "start": { - "$date": "2021-05-18T23:51:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:53:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "15469d3c-b91a-48d9-86a3-43df6212768e", - "start": { - "$date": "2021-05-18T23:53:50.000Z" - }, - "end": { - "$date": "2021-05-18T23:59:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "60c02236-021c-4a20-ae95-b831bf313a9d", - "start": { - "$date": "2021-05-18T23:59:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:03:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c938ee12-22a2-4199-8851-71e56f7d5ba2", - "start": { - "$date": "2021-05-19T00:03:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:07:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7590bbb2-575c-4e24-bab8-c4f1bfe2c185", - "start": { - "$date": "2021-05-19T00:07:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:10:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6077f92-3a85-4e18-9745-ac3c6e7d57d6", - "start": { - "$date": "2021-05-19T00:10:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:11:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d3119f95-9e29-4c1f-9948-66b38b441edc", - "start": { - "$date": "2021-05-19T00:11:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:13:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bfd01b62-cad8-4788-a26a-1fba81b9d32a", - "start": { - "$date": "2021-05-19T00:13:50.000Z" - }, - "end": { - "$date": "2021-05-19T00:15:26.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "338589a8-990c-4222-b212-4b8b1708e584", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T17:48:08.000Z" - }, - "end": { - "$date": "2021-05-18T18:30:45.000Z" - }, - "events": [ - { - "uuid": "051de4fb-d579-40c2-88c6-2d011b324982", - "start": { - "$date": "2021-05-18T17:48:08.000Z" - }, - "end": { - "$date": "2021-05-18T18:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ada85362-36cd-40e1-8d9e-fb8bc316ded7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-18T18:33:23.000Z" - }, - "end": { - "$date": "2021-05-18T19:20:35.000Z" - }, - "events": [ - { - "uuid": "a6b90e50-c097-4ea9-81f2-352d37cb94fc", - "start": { - "$date": "2021-05-18T18:33:23.000Z" - }, - "end": { - "$date": "2021-05-18T19:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0ca3f658-903f-408d-816b-d5b0bdb96a84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T18:39:32.000Z" - }, - "end": { - "$date": "2021-05-18T18:55:02.000Z" - }, - "events": [ - { - "uuid": "59f5ff4d-ba0c-4a1c-8b6c-fd9ee21cf4c3", - "start": { - "$date": "2021-05-18T18:39:32.000Z" - }, - "end": { - "$date": "2021-05-18T18:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "84ee31aa-869d-4ab4-8b67-47e04677938b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T20:04:45.000Z" - }, - "end": { - "$date": "2021-05-18T20:56:01.000Z" - }, - "events": [ - { - "uuid": "0c6f52c2-1fb4-430c-a4b9-2a82267c9ccd", - "start": { - "$date": "2021-05-18T20:04:45.000Z" - }, - "end": { - "$date": "2021-05-18T20:56:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "96bdadde-928e-4f5b-a382-3c7945e15f60", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-18T21:08:15.000Z" - }, - "end": { - "$date": "2021-05-18T21:08:16.000Z" - }, - "events": [ - { - "uuid": "3fa9cd17-19b8-4c59-961a-49aee76393c6", - "start": { - "$date": "2021-05-18T21:08:15.000Z" - }, - "end": { - "$date": "2021-05-18T21:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "1ab4b33f-41be-4224-9c47-8520c3b0cf3c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-18T22:45:09.000Z" - }, - "end": { - "$date": "2021-05-19T03:52:05.000Z" - }, - "events": [ - { - "uuid": "f1061d90-b32d-443e-87df-7890a93f49ed", - "start": { - "$date": "2021-05-18T22:45:09.000Z" - }, - "end": { - "$date": "2021-05-19T01:21:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f69c6ce6-76a8-415c-b522-abc8857211e0", - "start": { - "$date": "2021-05-19T01:21:09.000Z" - }, - "end": { - "$date": "2021-05-19T03:52:05.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "50e3e7e5-fd59-4673-ad1d-6e067bf00d87", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T21:44:48.000Z" - }, - "end": { - "$date": "2021-05-18T22:25:25.000Z" - }, - "events": [ - { - "uuid": "7c6539a4-52bb-4c7d-ac27-e6753b5d9976", - "start": { - "$date": "2021-05-18T21:44:48.000Z" - }, - "end": { - "$date": "2021-05-18T22:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "4e4ccab8-b5b6-4b03-b827-3183acc39781", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-18T21:58:03.000Z" - }, - "end": { - "$date": "2021-05-18T23:26:40.000Z" - }, - "events": [ - { - "uuid": "7515f676-cd26-470c-95fc-8e612308e868", - "start": { - "$date": "2021-05-18T21:58:03.000Z" - }, - "end": { - "$date": "2021-05-18T23:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "df0a45f8-ab34-48de-a870-784c486966a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-18T23:03:08.000Z" - }, - "end": { - "$date": "2021-05-19T00:06:05.000Z" - }, - "events": [ - { - "uuid": "013ecf77-db36-424e-9a1a-e1d27417b515", - "start": { - "$date": "2021-05-18T23:03:08.000Z" - }, - "end": { - "$date": "2021-05-19T00:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3665eb1e-bdcb-48f6-928c-f10a220df923", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-18T23:27:06.000Z" - }, - "end": { - "$date": "2021-05-19T00:06:23.000Z" - }, - "events": [ - { - "uuid": "caef4f44-22ae-4ae2-bc28-efae742fd1fe", - "start": { - "$date": "2021-05-18T23:27:06.000Z" - }, - "end": { - "$date": "2021-05-19T00:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "08b66ceb-b0cb-4ec7-97b7-84ec6476fd00", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-18T23:28:00.000Z" - }, - "end": { - "$date": "2021-05-19T07:01:17.000Z" - }, - "events": [ - { - "uuid": "1cde5085-8e16-4cbe-b634-0b2bb45c1ed1", - "start": { - "$date": "2021-05-18T23:28:00.000Z" - }, - "end": { - "$date": "2021-05-19T00:21:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fce99cf2-b275-41a9-8a0d-5635de52b7ef", - "start": { - "$date": "2021-05-19T00:21:00.000Z" - }, - "end": { - "$date": "2021-05-19T00:26:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b5624f10-a068-440d-ae59-525581d27d9e", - "start": { - "$date": "2021-05-19T00:26:00.000Z" - }, - "end": { - "$date": "2021-05-19T00:39:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58665383-ccf6-4257-ba88-8e1abe4bd974", - "start": { - "$date": "2021-05-19T00:39:00.000Z" - }, - "end": { - "$date": "2021-05-19T00:51:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de8aedbe-fb69-4a05-9ba1-21469274d046", - "start": { - "$date": "2021-05-19T00:51:00.000Z" - }, - "end": { - "$date": "2021-05-19T02:00:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0fd4171a-96c6-4c35-88b2-5c7bb5d0f75f", - "start": { - "$date": "2021-05-19T02:00:00.000Z" - }, - "end": { - "$date": "2021-05-19T02:04:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8ea0035-2583-488d-9f5c-4219728ffd55", - "start": { - "$date": "2021-05-19T02:04:00.000Z" - }, - "end": { - "$date": "2021-05-19T07:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "08faf276-cafd-4360-aa5e-8c749f8ad62a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-18T23:38:20.000Z" - }, - "end": { - "$date": "2021-05-19T00:06:12.000Z" - }, - "events": [ - { - "uuid": "273bb5a0-90bf-4a70-ac09-be47bb6f21f9", - "start": { - "$date": "2021-05-18T23:38:20.000Z" - }, - "end": { - "$date": "2021-05-19T00:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "a81e9ad9-4a2d-49e9-8731-4968e138cf78", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-19T00:06:34.000Z" - }, - "end": { - "$date": "2021-05-19T00:49:23.000Z" - }, - "events": [ - { - "uuid": "1e2c70ca-92de-4c51-8939-f706c8b51ee5", - "start": { - "$date": "2021-05-19T00:06:34.000Z" - }, - "end": { - "$date": "2021-05-19T00:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28b3b43e-2556-48e7-8f08-f8a9bc813c44", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-19T00:44:15.000Z" - }, - "end": { - "$date": "2021-05-19T00:47:42.000Z" - }, - "events": [ - { - "uuid": "4544a14f-d619-4f7e-bbff-bc31cf67c1e6", - "start": { - "$date": "2021-05-19T00:44:15.000Z" - }, - "end": { - "$date": "2021-05-19T00:47:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b570b58c-d701-4626-b94a-b3342bb1978c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T00:51:24.000Z" - }, - "end": { - "$date": "2021-05-19T02:01:09.000Z" - }, - "events": [ - { - "uuid": "fa41e8d2-7ae0-4fda-a3ea-083f57ce17ec", - "start": { - "$date": "2021-05-19T00:51:24.000Z" - }, - "end": { - "$date": "2021-05-19T02:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ed2db7f3-40ec-4869-ad59-f3dcdc6bb78d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-19T00:51:24.000Z" - }, - "end": { - "$date": "2021-05-19T01:36:52.000Z" - }, - "events": [ - { - "uuid": "aa0f6a25-a3d7-417a-b041-7a1f1b373a5d", - "start": { - "$date": "2021-05-19T00:51:24.000Z" - }, - "end": { - "$date": "2021-05-19T01:36:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40e39592-3752-4a24-b885-b82923603214", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-19T01:35:17.000Z" - }, - "end": { - "$date": "2021-05-19T02:06:54.000Z" - }, - "events": [ - { - "uuid": "09be1fba-7a46-4b80-a4a2-8703f314f206", - "start": { - "$date": "2021-05-19T01:35:17.000Z" - }, - "end": { - "$date": "2021-05-19T02:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "364621a0-1980-48f0-9aab-d33912bad2d7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T02:05:01.000Z" - }, - "end": { - "$date": "2021-05-19T02:49:43.000Z" - }, - "events": [ - { - "uuid": "419fda24-0f41-4996-8617-052fcd437f44", - "start": { - "$date": "2021-05-19T02:05:01.000Z" - }, - "end": { - "$date": "2021-05-19T02:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9a13c661-6bb1-47a6-bfcc-eae6f61509bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-19T02:08:02.000Z" - }, - "end": { - "$date": "2021-05-19T02:57:44.000Z" - }, - "events": [ - { - "uuid": "47c21d4c-12fc-4463-9485-2c4b643d8d31", - "start": { - "$date": "2021-05-19T02:08:02.000Z" - }, - "end": { - "$date": "2021-05-19T02:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e5b35ae-6054-47c6-b487-750d98975343", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-19T02:35:17.000Z" - }, - "end": { - "$date": "2021-05-19T03:37:04.000Z" - }, - "events": [ - { - "uuid": "e1ae5709-f367-4ab9-bd57-fce775cf32e7", - "start": { - "$date": "2021-05-19T02:35:17.000Z" - }, - "end": { - "$date": "2021-05-19T03:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "066c440c-5f07-4469-8cae-4efffed1fd0d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-19T02:36:13.000Z" - }, - "end": { - "$date": "2021-05-19T02:37:23.000Z" - }, - "events": [ - { - "uuid": "7a503990-8d8a-4c63-83a5-95ca4fd0568a", - "start": { - "$date": "2021-05-19T02:36:13.000Z" - }, - "end": { - "$date": "2021-05-19T02:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9031dc7-92e0-49fd-b3e7-1741a1889fef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-19T03:22:10.000Z" - }, - "end": { - "$date": "2021-05-19T03:48:26.000Z" - }, - "events": [ - { - "uuid": "d48d7b5b-9162-4880-b899-3a3071b19ff9", - "start": { - "$date": "2021-05-19T03:22:10.000Z" - }, - "end": { - "$date": "2021-05-19T03:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "28440cfe-9a74-4565-af16-6a725a3b8528", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-19T02:56:39.000Z" - }, - "end": { - "$date": "2021-05-19T05:04:41.000Z" - }, - "events": [ - { - "uuid": "429d64c1-f378-4bfd-a08e-ed741a452c33", - "start": { - "$date": "2021-05-19T02:56:39.000Z" - }, - "end": { - "$date": "2021-05-19T05:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b50f3c95-2aed-43d7-baeb-8e7f129cefaa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T02:58:10.000Z" - }, - "end": { - "$date": "2021-05-19T04:29:24.000Z" - }, - "events": [ - { - "uuid": "b853490e-f983-4395-856b-23da652768c4", - "start": { - "$date": "2021-05-19T02:58:10.000Z" - }, - "end": { - "$date": "2021-05-19T04:29:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "746a331a-f902-4df0-a188-b612b0d2196a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-19T02:58:15.000Z" - }, - "end": { - "$date": "2021-05-19T05:04:50.000Z" - }, - "events": [ - { - "uuid": "ea51f49b-70b1-45a5-beb2-7af583b6e091", - "start": { - "$date": "2021-05-19T02:58:15.000Z" - }, - "end": { - "$date": "2021-05-19T05:04:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d65b952-a12a-4d3d-ac66-778a04d66343", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-19T04:12:15.000Z" - }, - "end": { - "$date": "2021-05-19T04:40:41.000Z" - }, - "events": [ - { - "uuid": "c6e9e064-1987-4c3c-b37d-a382f646cf0a", - "start": { - "$date": "2021-05-19T04:12:15.000Z" - }, - "end": { - "$date": "2021-05-19T04:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "149708df-521f-4adc-bb77-497eb85e520f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-19T04:34:29.000Z" - }, - "end": { - "$date": "2021-05-19T05:16:10.000Z" - }, - "events": [ - { - "uuid": "e91d9901-20da-4ad2-ae8a-cc2e6862fc34", - "start": { - "$date": "2021-05-19T04:34:29.000Z" - }, - "end": { - "$date": "2021-05-19T05:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d175d34c-2368-4ee4-b19f-534f8ea01904", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-19T04:42:49.000Z" - }, - "end": { - "$date": "2021-05-19T05:13:35.000Z" - }, - "events": [ - { - "uuid": "1123620c-da05-44e3-ae7a-977ea10a78cd", - "start": { - "$date": "2021-05-19T04:42:49.000Z" - }, - "end": { - "$date": "2021-05-19T05:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "296a1fbc-55d6-4074-ba9c-271ee84bbd29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T04:56:03.000Z" - }, - "end": { - "$date": "2021-05-19T06:08:38.000Z" - }, - "events": [ - { - "uuid": "48d913e5-808d-4210-a577-0943f4c605e7", - "start": { - "$date": "2021-05-19T04:56:03.000Z" - }, - "end": { - "$date": "2021-05-19T05:26:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "23567bf4-3d6b-4f7c-ac20-6792d1d577d2", - "start": { - "$date": "2021-05-19T05:26:03.000Z" - }, - "end": { - "$date": "2021-05-19T05:50:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5c16aa4f-63eb-4a51-833f-955185badc70", - "start": { - "$date": "2021-05-19T05:50:03.000Z" - }, - "end": { - "$date": "2021-05-19T05:52:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "281dbbc2-d7ed-4584-a218-cb34c918e150", - "start": { - "$date": "2021-05-19T05:52:03.000Z" - }, - "end": { - "$date": "2021-05-19T06:08:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c9e028ae-f6fe-4a44-9701-445ce4700384", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-19T05:05:02.000Z" - }, - "end": { - "$date": "2021-05-19T05:11:49.000Z" - }, - "events": [ - { - "uuid": "9ef76369-9d6a-4846-a9d0-c0fa9bb1914c", - "start": { - "$date": "2021-05-19T05:05:02.000Z" - }, - "end": { - "$date": "2021-05-19T05:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f7347423-8a63-45e8-9fe6-6af30e333693", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-19T05:09:18.000Z" - }, - "end": { - "$date": "2021-05-19T05:19:20.000Z" - }, - "events": [ - { - "uuid": "3adce72c-7d15-4217-bac4-3537c43c4880", - "start": { - "$date": "2021-05-19T05:09:18.000Z" - }, - "end": { - "$date": "2021-05-19T05:19:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "29013eb4-2251-4145-b32f-5aa50175d2e7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-19T05:21:53.000Z" - }, - "end": { - "$date": "2021-05-19T06:11:14.000Z" - }, - "events": [ - { - "uuid": "5c189ec8-d3fc-47aa-a6ab-93122281a301", - "start": { - "$date": "2021-05-19T05:21:53.000Z" - }, - "end": { - "$date": "2021-05-19T06:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5369097e-c79c-4b0c-b031-b38907bf0923", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-19T05:30:05.000Z" - }, - "end": { - "$date": "2021-05-19T06:06:53.000Z" - }, - "events": [ - { - "uuid": "81f53cb3-ece4-4c06-a2bd-ee3a548fbbd1", - "start": { - "$date": "2021-05-19T05:30:05.000Z" - }, - "end": { - "$date": "2021-05-19T06:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5786bb1b-d18f-459c-8b8f-8437e38ce35b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-19T06:08:43.000Z" - }, - "end": { - "$date": "2021-05-19T06:16:39.000Z" - }, - "events": [ - { - "uuid": "712815ce-5831-4652-84c2-7ed608176bd2", - "start": { - "$date": "2021-05-19T06:08:43.000Z" - }, - "end": { - "$date": "2021-05-19T06:16:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2cb798f9-5d38-44bd-9816-13acd870f1ef", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-19T14:37:00.000Z" - }, - "end": { - "$date": "2021-05-19T15:47:33.000Z" - }, - "events": [ - { - "uuid": "c3bce3dc-a455-4fe7-9dc9-042db455c293", - "start": { - "$date": "2021-05-19T14:37:00.000Z" - }, - "end": { - "$date": "2021-05-19T15:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8a4a62c0-b104-4ece-b814-77b7d63fa954", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T15:33:14.000Z" - }, - "end": { - "$date": "2021-05-19T17:13:47.000Z" - }, - "events": [ - { - "uuid": "1dbdb38e-1181-4209-aa5c-dcc1e5139e00", - "start": { - "$date": "2021-05-19T15:33:14.000Z" - }, - "end": { - "$date": "2021-05-19T16:49:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81897dfa-c7f1-4289-bd32-9b0731632ea1", - "start": { - "$date": "2021-05-19T16:49:14.000Z" - }, - "end": { - "$date": "2021-05-19T16:56:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a243b697-068b-43a1-9ee3-f19d293c2cfa", - "start": { - "$date": "2021-05-19T16:56:14.000Z" - }, - "end": { - "$date": "2021-05-19T17:13:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "fd1bb115-9b0d-4eff-8aae-1178d12c3b39", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-19T15:47:50.000Z" - }, - "end": { - "$date": "2021-05-19T16:19:37.000Z" - }, - "events": [ - { - "uuid": "7cca086d-510c-4cdb-a405-713def41950b", - "start": { - "$date": "2021-05-19T15:47:50.000Z" - }, - "end": { - "$date": "2021-05-19T16:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad99d6a6-0f45-4d66-89b6-f9507730cd5d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T17:25:48.000Z" - }, - "end": { - "$date": "2021-05-19T17:43:34.000Z" - }, - "events": [ - { - "uuid": "f7049b74-57d3-4128-bf64-b5298abfa9aa", - "start": { - "$date": "2021-05-19T17:25:48.000Z" - }, - "end": { - "$date": "2021-05-19T17:43:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e991346-8b1c-4d06-a5e8-86c1125b82f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T17:48:45.000Z" - }, - "end": { - "$date": "2021-05-19T18:05:16.000Z" - }, - "events": [ - { - "uuid": "0cad3257-3b18-4214-8215-4240f8d40de9", - "start": { - "$date": "2021-05-19T17:48:45.000Z" - }, - "end": { - "$date": "2021-05-19T18:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86a88178-b4cb-4c13-a4c1-d459f7b401c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T18:11:12.000Z" - }, - "end": { - "$date": "2021-05-19T18:25:23.000Z" - }, - "events": [ - { - "uuid": "603f0d15-308f-4b0f-a133-9f9611e4a729", - "start": { - "$date": "2021-05-19T18:11:12.000Z" - }, - "end": { - "$date": "2021-05-19T18:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a579a646-8453-4d88-b6fe-789386c45fee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-19T22:40:41.000Z" - }, - "end": { - "$date": "2021-05-19T23:29:29.000Z" - }, - "events": [ - { - "uuid": "6d6e3b6a-7e74-4d16-a29c-3fbdd442d2d3", - "start": { - "$date": "2021-05-19T22:40:41.000Z" - }, - "end": { - "$date": "2021-05-20T00:11:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c72a4f3-4774-4e98-adeb-0e77fe18997f", - "start": { - "$date": "2021-05-20T00:11:41.000Z" - }, - "end": { - "$date": "2021-05-20T00:12:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e3f348d0-a165-4da2-b747-ad4bd4b289a6", - "start": { - "$date": "2021-05-20T00:12:41.000Z" - }, - "end": { - "$date": "2021-05-20T01:02:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d1cbe7e2-bc9a-4251-ba6e-7876fc67eb59", - "start": { - "$date": "2021-05-20T01:02:41.000Z" - }, - "end": { - "$date": "2021-05-20T01:25:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e9b1a9d-116a-44c6-a153-00822d637cbb", - "start": { - "$date": "2021-05-20T01:25:41.000Z" - }, - "end": { - "$date": "2021-05-20T03:08:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2cc81d20-2d37-4bdb-94bf-8956a493054d", - "start": { - "$date": "2021-05-20T03:08:41.000Z" - }, - "end": { - "$date": "2021-05-20T03:37:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6b2e6fe-4765-4d72-b016-ba19865d402b", - "start": { - "$date": "2021-05-20T03:37:41.000Z" - }, - "end": { - "$date": "2021-05-19T23:29:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b82893f8-ea18-466d-a6e7-32a3aac478a0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-19T18:36:03.000Z" - }, - "end": { - "$date": "2021-05-19T20:09:34.000Z" - }, - "events": [ - { - "uuid": "83dfd25a-0b2d-4f85-b992-cc3d46643312", - "start": { - "$date": "2021-05-19T18:36:03.000Z" - }, - "end": { - "$date": "2021-05-19T18:51:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7707001b-771d-4f13-bf9f-b97c60268df8", - "start": { - "$date": "2021-05-19T18:51:03.000Z" - }, - "end": { - "$date": "2021-05-19T18:53:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9426bd45-c913-495d-bbbc-34345eff69ed", - "start": { - "$date": "2021-05-19T18:53:03.000Z" - }, - "end": { - "$date": "2021-05-19T18:55:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "87774a09-1955-4b1a-a3ef-8ad65e1b3d2b", - "start": { - "$date": "2021-05-19T18:55:03.000Z" - }, - "end": { - "$date": "2021-05-19T19:48:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "531f179a-c403-4904-ae29-254bccff2e5d", - "start": { - "$date": "2021-05-19T19:48:03.000Z" - }, - "end": { - "$date": "2021-05-19T19:50:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d4bfdce-7833-4293-a8fa-6953a14e7d5b", - "start": { - "$date": "2021-05-19T19:50:03.000Z" - }, - "end": { - "$date": "2021-05-19T20:07:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "039c72b4-a84a-4456-bb65-af4e9b19a0ee", - "start": { - "$date": "2021-05-19T20:07:03.000Z" - }, - "end": { - "$date": "2021-05-19T20:09:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0b332cd9-2b0b-481b-870a-557c6ed1e261", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-19T19:47:12.000Z" - }, - "end": { - "$date": "2021-05-19T19:53:29.000Z" - }, - "events": [ - { - "uuid": "caf5cbfe-12ef-4308-b5e9-cb434eb3e412", - "start": { - "$date": "2021-05-19T19:47:12.000Z" - }, - "end": { - "$date": "2021-05-19T19:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d9ac9646-df78-4cbf-b443-0298673d869a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-19T20:31:40.000Z" - }, - "end": { - "$date": "2021-05-20T01:13:38.000Z" - }, - "events": [ - { - "uuid": "8f79e0dc-a51d-4972-8f57-0c1885987610", - "start": { - "$date": "2021-05-19T20:31:40.000Z" - }, - "end": { - "$date": "2021-05-19T21:30:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4a9534c-78cd-4c26-9e79-54c77452325f", - "start": { - "$date": "2021-05-19T21:30:40.000Z" - }, - "end": { - "$date": "2021-05-19T22:19:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed075996-41ce-4f1a-9799-cd65455d470e", - "start": { - "$date": "2021-05-19T22:19:40.000Z" - }, - "end": { - "$date": "2021-05-19T22:22:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7cab43c0-dd40-4bee-81f2-c5e56f0efc4b", - "start": { - "$date": "2021-05-19T22:22:40.000Z" - }, - "end": { - "$date": "2021-05-19T22:41:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d9a99afa-4662-4095-aa53-f70fcb06aa96", - "start": { - "$date": "2021-05-19T22:41:40.000Z" - }, - "end": { - "$date": "2021-05-19T22:47:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "59f2578d-e9dc-4305-b93d-82f5070a9946", - "start": { - "$date": "2021-05-19T22:47:40.000Z" - }, - "end": { - "$date": "2021-05-19T22:52:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7500ee9d-98fe-462d-92dd-8c4a721d491a", - "start": { - "$date": "2021-05-19T22:52:40.000Z" - }, - "end": { - "$date": "2021-05-19T23:03:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3237d24-d09f-42c4-9633-f63a13e22524", - "start": { - "$date": "2021-05-19T23:03:40.000Z" - }, - "end": { - "$date": "2021-05-19T23:04:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b4b5d4e-b111-4f10-b531-edd2de1d3f9f", - "start": { - "$date": "2021-05-19T23:04:40.000Z" - }, - "end": { - "$date": "2021-05-19T23:11:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01d37da4-ab75-4cca-8ae8-dfd98a05e87b", - "start": { - "$date": "2021-05-19T23:11:40.000Z" - }, - "end": { - "$date": "2021-05-20T00:36:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1518e819-7699-41ef-bdb6-33d904584738", - "start": { - "$date": "2021-05-20T00:36:40.000Z" - }, - "end": { - "$date": "2021-05-20T00:39:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae2c1749-b2f7-4c3c-bf5c-0a1a1a79a007", - "start": { - "$date": "2021-05-20T00:39:40.000Z" - }, - "end": { - "$date": "2021-05-20T00:43:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98b2bc00-4c26-4471-8b58-b366ea587d05", - "start": { - "$date": "2021-05-20T00:43:40.000Z" - }, - "end": { - "$date": "2021-05-20T00:45:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c78b1a31-f070-42d4-9b24-9d4ac103a525", - "start": { - "$date": "2021-05-20T00:45:40.000Z" - }, - "end": { - "$date": "2021-05-20T01:07:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dd5b4533-cd43-48d0-b2d6-419dd41cdf94", - "start": { - "$date": "2021-05-20T01:07:40.000Z" - }, - "end": { - "$date": "2021-05-20T01:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f0f16fbd-3a98-48d6-bccf-949074f79588", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-19T20:32:54.000Z" - }, - "end": { - "$date": "2021-05-20T06:37:32.000Z" - }, - "events": [ - { - "uuid": "5c5acfc4-82b2-4ffa-80ca-37ac32e1d647", - "start": { - "$date": "2021-05-19T20:32:54.000Z" - }, - "end": { - "$date": "2021-05-20T00:19:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "154f3af6-bd8c-4c27-aae0-162193a1b036", - "start": { - "$date": "2021-05-20T00:19:54.000Z" - }, - "end": { - "$date": "2021-05-20T00:24:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e474dd6f-e141-42de-aeb6-260e84f9b22a", - "start": { - "$date": "2021-05-20T00:24:54.000Z" - }, - "end": { - "$date": "2021-05-20T03:50:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db2c8254-b311-453e-ba2f-da4e0866db07", - "start": { - "$date": "2021-05-20T03:50:54.000Z" - }, - "end": { - "$date": "2021-05-20T03:56:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d39ec6aa-e59a-4449-907b-32064c51447d", - "start": { - "$date": "2021-05-20T03:56:54.000Z" - }, - "end": { - "$date": "2021-05-20T06:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "60389d80-85b4-4ba3-9bb5-2e67d58f34c0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-19T21:14:33.000Z" - }, - "end": { - "$date": "2021-05-19T22:40:47.000Z" - }, - "events": [ - { - "uuid": "f25e992c-6103-4af7-a91a-bbf3a04cc1b8", - "start": { - "$date": "2021-05-19T21:14:33.000Z" - }, - "end": { - "$date": "2021-05-19T22:40:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "c63d92cd-e5a9-4177-bcab-d73225a2c22a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-19T22:42:09.000Z" - }, - "end": { - "$date": "2021-05-20T00:57:36.000Z" - }, - "events": [ - { - "uuid": "99e2b03f-17b9-45ed-b0e1-d96044d366e9", - "start": { - "$date": "2021-05-19T22:42:09.000Z" - }, - "end": { - "$date": "2021-05-20T00:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "729b435e-c5a6-46d0-8db4-967a073aabb1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T00:15:15.000Z" - }, - "end": { - "$date": "2021-05-20T02:47:31.000Z" - }, - "events": [ - { - "uuid": "f3a4841d-42e7-43e1-8ab6-5bd9073d9b6e", - "start": { - "$date": "2021-05-20T00:15:15.000Z" - }, - "end": { - "$date": "2021-05-20T00:44:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "beaf6c4c-ebfa-4eca-961f-35bf510af39c", - "start": { - "$date": "2021-05-20T00:44:15.000Z" - }, - "end": { - "$date": "2021-05-20T00:56:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90af2588-457f-4152-837f-e2f2f87c2da6", - "start": { - "$date": "2021-05-20T00:56:15.000Z" - }, - "end": { - "$date": "2021-05-20T02:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b64da253-4abe-4889-a5fc-a5e5ec4e229f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-20T01:18:41.000Z" - }, - "end": { - "$date": "2021-05-20T01:54:23.000Z" - }, - "events": [ - { - "uuid": "7b0d8d3e-e453-4043-a3ff-c1a16da88dca", - "start": { - "$date": "2021-05-20T01:18:41.000Z" - }, - "end": { - "$date": "2021-05-20T01:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7c0d2466-63a7-4f31-8373-fb5a27283268", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-20T01:26:41.000Z" - }, - "end": { - "$date": "2021-05-20T02:47:35.000Z" - }, - "events": [ - { - "uuid": "274378d7-4ac3-46b4-9937-dc0447acaf1f", - "start": { - "$date": "2021-05-20T01:26:41.000Z" - }, - "end": { - "$date": "2021-05-20T01:55:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "42457012-be3f-4136-a1eb-31ccdf2e1536", - "start": { - "$date": "2021-05-20T01:55:41.000Z" - }, - "end": { - "$date": "2021-05-20T02:12:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03edc0d9-9955-4667-a206-d445041d1767", - "start": { - "$date": "2021-05-20T02:12:41.000Z" - }, - "end": { - "$date": "2021-05-20T02:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47cce4ae-77ff-433e-bdc5-7c3e87e3dd42", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-20T02:58:42.000Z" - }, - "end": { - "$date": "2021-05-20T03:25:03.000Z" - }, - "events": [ - { - "uuid": "36d55e70-faba-4663-97fa-54ad6746dae8", - "start": { - "$date": "2021-05-20T02:58:42.000Z" - }, - "end": { - "$date": "2021-05-20T03:09:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0cb1676b-c772-47d0-bdec-d7b14d9e1551", - "start": { - "$date": "2021-05-20T03:09:42.000Z" - }, - "end": { - "$date": "2021-05-20T03:10:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97da63e9-6868-4a14-a155-7376a2ebf9d8", - "start": { - "$date": "2021-05-20T03:10:42.000Z" - }, - "end": { - "$date": "2021-05-20T03:12:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bd6ac08-cf8c-47c0-99ec-5f5d362465d6", - "start": { - "$date": "2021-05-20T03:12:42.000Z" - }, - "end": { - "$date": "2021-05-20T03:18:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98c181ab-6e90-485e-b43e-e8105790d955", - "start": { - "$date": "2021-05-20T03:18:42.000Z" - }, - "end": { - "$date": "2021-05-20T03:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "8666e2f1-5990-4b27-a598-ee0c996d3c13", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-20T02:22:18.000Z" - }, - "end": { - "$date": "2021-05-20T04:14:17.000Z" - }, - "events": [ - { - "uuid": "0dca4a81-7d9f-4005-945e-55d2381393a8", - "start": { - "$date": "2021-05-20T02:22:18.000Z" - }, - "end": { - "$date": "2021-05-20T04:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "535a3617-4b20-4f08-9c7e-57512f01b297", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-20T02:47:10.000Z" - }, - "end": { - "$date": "2021-05-20T04:22:53.000Z" - }, - "events": [ - { - "uuid": "0041603e-ec4d-4f52-9c59-fff5001d0645", - "start": { - "$date": "2021-05-20T02:47:10.000Z" - }, - "end": { - "$date": "2021-05-20T04:22:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1fc92a16-004f-4898-a897-3684353b7069", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T02:47:46.000Z" - }, - "end": { - "$date": "2021-05-20T04:22:20.000Z" - }, - "events": [ - { - "uuid": "902b203a-4643-4954-a9f9-549f16d95b7c", - "start": { - "$date": "2021-05-20T02:47:46.000Z" - }, - "end": { - "$date": "2021-05-20T04:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cab8bd3c-3e93-49a9-909b-3dc3bcb8e0bd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-20T02:48:14.000Z" - }, - "end": { - "$date": "2021-05-20T02:49:23.000Z" - }, - "events": [ - { - "uuid": "4990e8c9-aa0d-460e-b1cd-6d09575ddc18", - "start": { - "$date": "2021-05-20T02:48:14.000Z" - }, - "end": { - "$date": "2021-05-20T02:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c27b5d41-9639-49ff-a7ca-79505a35893f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-20T02:58:41.000Z" - }, - "end": { - "$date": "2021-05-20T03:25:14.000Z" - }, - "events": [ - { - "uuid": "3ab15d30-7ddf-455d-a82b-6d4abf57e8f5", - "start": { - "$date": "2021-05-20T02:58:41.000Z" - }, - "end": { - "$date": "2021-05-20T03:25:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b51d48a7-7b24-4b0a-92e3-906ee4ce2521", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-20T02:49:20.000Z" - }, - "end": { - "$date": "2021-05-20T04:22:49.000Z" - }, - "events": [ - { - "uuid": "23f23c17-aca6-4a54-a56f-667503e4c975", - "start": { - "$date": "2021-05-20T02:49:20.000Z" - }, - "end": { - "$date": "2021-05-20T04:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e31745db-14f4-476d-8d2f-3fd7c59a4117", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-20T02:58:43.000Z" - }, - "end": { - "$date": "2021-05-20T03:25:11.000Z" - }, - "events": [ - { - "uuid": "feabe3d2-3636-4332-847a-ee0ec6923e82", - "start": { - "$date": "2021-05-20T02:58:43.000Z" - }, - "end": { - "$date": "2021-05-20T03:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "0570494a-5d5d-40a1-8abb-2dbcfa6e1bcb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-20T03:06:18.000Z" - }, - "end": { - "$date": "2021-05-20T03:29:03.000Z" - }, - "events": [ - { - "uuid": "223f9030-1b6f-4fe4-8734-e8aaaf458313", - "start": { - "$date": "2021-05-20T03:06:18.000Z" - }, - "end": { - "$date": "2021-05-20T03:29:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f5c51151-fd43-47d2-a4c5-5f5892171234", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-20T03:22:45.000Z" - }, - "end": { - "$date": "2021-05-20T04:35:24.000Z" - }, - "events": [ - { - "uuid": "c24a887b-398b-447d-b474-4779bbe454a7", - "start": { - "$date": "2021-05-20T03:22:45.000Z" - }, - "end": { - "$date": "2021-05-20T04:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7294b3ae-7fef-4de6-b29b-691096b55b5f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-20T03:28:32.000Z" - }, - "end": { - "$date": "2021-05-20T03:53:12.000Z" - }, - "events": [ - { - "uuid": "0d2e05fe-fe12-4d32-81a4-5d1e9e43481e", - "start": { - "$date": "2021-05-20T03:28:32.000Z" - }, - "end": { - "$date": "2021-05-20T03:53:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "698575a2-4b4d-428d-b6b5-60bb87bb18dc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-20T03:29:04.000Z" - }, - "end": { - "$date": "2021-05-20T03:52:50.000Z" - }, - "events": [ - { - "uuid": "709fd066-b93f-429d-b72f-57142bc855b7", - "start": { - "$date": "2021-05-20T03:29:04.000Z" - }, - "end": { - "$date": "2021-05-20T03:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1c26112-a93f-412a-a4b7-0e4f33183d28", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-20T03:28:29.000Z" - }, - "end": { - "$date": "2021-05-20T03:52:50.000Z" - }, - "events": [ - { - "uuid": "6fe944f3-8183-4009-8906-a67b6e736f04", - "start": { - "$date": "2021-05-20T03:28:29.000Z" - }, - "end": { - "$date": "2021-05-20T03:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc3cd09e-2344-42a9-b77b-f1df76591b8e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-20T03:29:14.000Z" - }, - "end": { - "$date": "2021-05-20T04:35:00.000Z" - }, - "events": [ - { - "uuid": "d414bca0-34e1-4ad3-9a3f-0fe8e6135de2", - "start": { - "$date": "2021-05-20T03:29:14.000Z" - }, - "end": { - "$date": "2021-05-20T04:35:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a62afd26-65d7-4750-a3fd-c41495534fa8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-20T03:56:44.000Z" - }, - "end": { - "$date": "2021-05-20T04:30:14.000Z" - }, - "events": [ - { - "uuid": "07a6b368-d1cb-417c-ba37-19e0b4fab32d", - "start": { - "$date": "2021-05-20T03:56:44.000Z" - }, - "end": { - "$date": "2021-05-20T04:30:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f051fbe6-0fbc-400b-8c5f-942fdfff49fa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-20T03:56:50.000Z" - }, - "end": { - "$date": "2021-05-20T04:30:14.000Z" - }, - "events": [ - { - "uuid": "723c4038-118f-40f2-9718-3af7ae178752", - "start": { - "$date": "2021-05-20T03:56:50.000Z" - }, - "end": { - "$date": "2021-05-20T04:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fac8fe93-119f-478d-b122-6a7e41ddbb20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-20T03:58:26.000Z" - }, - "end": { - "$date": "2021-05-20T04:30:12.000Z" - }, - "events": [ - { - "uuid": "c95e7a7a-85cb-40ea-983c-8c3d44534e01", - "start": { - "$date": "2021-05-20T03:58:26.000Z" - }, - "end": { - "$date": "2021-05-20T04:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "b5599ac2-57ee-4f61-899f-c349a568f6e8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-20T03:54:51.000Z" - }, - "end": { - "$date": "2021-05-20T03:56:07.000Z" - }, - "events": [ - { - "uuid": "e12b4514-e7b4-4ae9-9a1e-0880944f6742", - "start": { - "$date": "2021-05-20T03:54:51.000Z" - }, - "end": { - "$date": "2021-05-20T03:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "891a3ad3-a004-4951-b7b9-0ed9690a4aa3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T04:23:00.000Z" - }, - "end": { - "$date": "2021-05-20T16:41:23.000Z" - }, - "events": [ - { - "uuid": "597121a4-7487-411c-9009-12cf6b57782c", - "start": { - "$date": "2021-05-20T04:23:00.000Z" - }, - "end": { - "$date": "2021-05-20T04:47:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f3657bc6-9ff6-4474-9f94-98496ec72afe", - "start": { - "$date": "2021-05-20T04:47:00.000Z" - }, - "end": { - "$date": "2021-05-20T05:24:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4a483eda-4e86-4eb4-bbea-baadf9f32268", - "start": { - "$date": "2021-05-20T05:24:00.000Z" - }, - "end": { - "$date": "2021-05-20T05:26:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a4f00a9-ba08-4a4e-b0d7-390194f1273b", - "start": { - "$date": "2021-05-20T05:26:00.000Z" - }, - "end": { - "$date": "2021-05-20T14:57:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84a1a0e2-1a8b-46e5-b3d7-60936e8a2504", - "start": { - "$date": "2021-05-20T14:57:00.000Z" - }, - "end": { - "$date": "2021-05-20T14:59:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "422ee6d2-f912-4398-b0a2-09cf1bc3353b", - "start": { - "$date": "2021-05-20T14:59:00.000Z" - }, - "end": { - "$date": "2021-05-20T15:00:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f05b554-d99a-499f-9bc4-47e27bdb4719", - "start": { - "$date": "2021-05-20T15:00:00.000Z" - }, - "end": { - "$date": "2021-05-20T15:04:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "415743b0-e9c3-47d2-bd28-ca4b9ca2543f", - "start": { - "$date": "2021-05-20T15:04:00.000Z" - }, - "end": { - "$date": "2021-05-20T15:17:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "679b2ef0-7ef1-4583-8122-50205ed1e1d4", - "start": { - "$date": "2021-05-20T15:17:00.000Z" - }, - "end": { - "$date": "2021-05-20T15:27:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99891cc4-17b7-46d4-bff7-da850f35c1bb", - "start": { - "$date": "2021-05-20T15:27:00.000Z" - }, - "end": { - "$date": "2021-05-20T15:29:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb8c602b-4c49-4222-9f9d-a137f63e56d2", - "start": { - "$date": "2021-05-20T15:29:00.000Z" - }, - "end": { - "$date": "2021-05-20T16:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "108c2c7d-d6fc-4ad3-ba1a-e2a2d8af3674", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-20T04:26:14.000Z" - }, - "end": { - "$date": "2021-05-20T05:36:02.000Z" - }, - "events": [ - { - "uuid": "c4bb7d96-5633-45cd-995f-7c386cd93913", - "start": { - "$date": "2021-05-20T04:26:14.000Z" - }, - "end": { - "$date": "2021-05-20T04:39:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2efbc34-ef0c-4f53-b8bb-82b7d26b32db", - "start": { - "$date": "2021-05-20T04:39:14.000Z" - }, - "end": { - "$date": "2021-05-20T05:06:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2568518-89d3-4225-a7ca-5a455fb3eb8a", - "start": { - "$date": "2021-05-20T05:06:14.000Z" - }, - "end": { - "$date": "2021-05-20T05:36:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6500cb11-419e-4424-9b2b-b3e5ab680fb3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-20T04:30:18.000Z" - }, - "end": { - "$date": "2021-05-20T05:20:53.000Z" - }, - "events": [ - { - "uuid": "7579fdb7-5b26-4d16-ad59-9380f4675afb", - "start": { - "$date": "2021-05-20T04:30:18.000Z" - }, - "end": { - "$date": "2021-05-20T05:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3134f071-1815-4c01-99d6-ef222891312a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-20T05:38:57.000Z" - }, - "end": { - "$date": "2021-05-20T05:47:57.000Z" - }, - "events": [ - { - "uuid": "9d4e2a96-90bb-4b76-a1e5-bbf1c3d8edd5", - "start": { - "$date": "2021-05-20T05:38:57.000Z" - }, - "end": { - "$date": "2021-05-20T05:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdf58d38-a10c-4e3c-ac48-e8671930369e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-20T05:37:49.000Z" - }, - "end": { - "$date": "2021-05-20T06:06:21.000Z" - }, - "events": [ - { - "uuid": "06e03dfc-76ee-4185-95aa-971d073ee86d", - "start": { - "$date": "2021-05-20T05:37:49.000Z" - }, - "end": { - "$date": "2021-05-20T06:06:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d756eafe-29bc-41da-965d-b6aa8297264e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-20T06:11:12.000Z" - }, - "end": { - "$date": "2021-05-20T06:39:27.000Z" - }, - "events": [ - { - "uuid": "b348d6ea-f89d-4b88-add3-9b901220f540", - "start": { - "$date": "2021-05-20T06:11:12.000Z" - }, - "end": { - "$date": "2021-05-20T06:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bcc200c7-b7b9-478f-b199-cd79b8e19d90", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-20T06:37:48.000Z" - }, - "end": { - "$date": "2021-05-20T07:04:22.000Z" - }, - "events": [ - { - "uuid": "d87af15a-d0a4-4913-abaa-f67cc411b28c", - "start": { - "$date": "2021-05-20T06:37:48.000Z" - }, - "end": { - "$date": "2021-05-20T07:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7ee93662-8007-4fd1-8434-e555927e3b87", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-20T13:57:17.000Z" - }, - "end": { - "$date": "2021-05-20T14:27:06.000Z" - }, - "events": [ - { - "uuid": "559de04c-2c56-4c67-9010-e74ad37afa67", - "start": { - "$date": "2021-05-20T13:57:17.000Z" - }, - "end": { - "$date": "2021-05-20T14:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "4a34ba93-7ce0-402f-ae53-db919ac5cb93", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-20T14:28:36.000Z" - }, - "end": { - "$date": "2021-05-20T16:04:42.000Z" - }, - "events": [ - { - "uuid": "674cdfc6-00e9-488f-84bb-2fb20ca4b403", - "start": { - "$date": "2021-05-20T14:28:36.000Z" - }, - "end": { - "$date": "2021-05-20T16:04:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0e0bab2c-37ca-4930-9a37-4e8f10afc5a8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T17:16:05.000Z" - }, - "end": { - "$date": "2021-05-20T18:19:54.000Z" - }, - "events": [ - { - "uuid": "ca7b1c6d-01ce-49cf-953c-e86c6d47afbf", - "start": { - "$date": "2021-05-20T17:16:05.000Z" - }, - "end": { - "$date": "2021-05-20T18:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4c8ec19d-4868-4f7a-b1cd-1377f14e956e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-20T17:55:56.000Z" - }, - "end": { - "$date": "2021-05-20T19:47:19.000Z" - }, - "events": [ - { - "uuid": "ead0e067-1721-40c1-9b34-ff87885fbf80", - "start": { - "$date": "2021-05-20T17:55:56.000Z" - }, - "end": { - "$date": "2021-05-20T19:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5bdcf36c-f84b-4863-acc9-3357883837d3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-20T18:11:01.000Z" - }, - "end": { - "$date": "2021-05-20T19:40:08.000Z" - }, - "events": [ - { - "uuid": "f917d382-ff3b-4c4b-bae9-9e2c5681bd50", - "start": { - "$date": "2021-05-20T18:11:01.000Z" - }, - "end": { - "$date": "2021-05-20T19:40:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ac9ab468-15ec-44ce-a8c8-f130b7d88bab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T19:02:42.000Z" - }, - "end": { - "$date": "2021-05-20T19:03:42.000Z" - }, - "events": [ - { - "uuid": "ea738c61-6649-4cc0-b8be-c9e2f86ab27b", - "start": { - "$date": "2021-05-20T19:02:42.000Z" - }, - "end": { - "$date": "2021-05-20T19:03:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fceac8f0-fdbb-4fa7-936d-2a3c0d67aa48", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T19:03:57.000Z" - }, - "end": { - "$date": "2021-05-20T19:04:57.000Z" - }, - "events": [ - { - "uuid": "13950104-21db-4596-a845-a957e5792251", - "start": { - "$date": "2021-05-20T19:03:57.000Z" - }, - "end": { - "$date": "2021-05-20T19:04:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "832d8bb7-28e2-4024-a0cd-76983f39ffa0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T19:05:17.000Z" - }, - "end": { - "$date": "2021-05-20T19:15:44.000Z" - }, - "events": [ - { - "uuid": "e9f6a48d-9153-419b-80e8-532fe8f845cd", - "start": { - "$date": "2021-05-20T19:05:17.000Z" - }, - "end": { - "$date": "2021-05-20T19:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "14bbff65-a348-420e-a6e1-2fe9b7bed83c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T19:18:29.000Z" - }, - "end": { - "$date": "2021-05-20T20:08:12.000Z" - }, - "events": [ - { - "uuid": "5162ea76-4cc2-4720-bc9b-d537a2500bdb", - "start": { - "$date": "2021-05-20T19:18:29.000Z" - }, - "end": { - "$date": "2021-05-20T20:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6f023296-3dbb-4352-81b3-fd65f2dee3fb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-20T19:41:34.000Z" - }, - "end": { - "$date": "2021-05-20T21:59:36.000Z" - }, - "events": [ - { - "uuid": "6baeb8a8-b146-4160-ac9f-a5ed6bba3a8a", - "start": { - "$date": "2021-05-20T19:41:34.000Z" - }, - "end": { - "$date": "2021-05-20T21:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b9168eac-bd1c-4f3c-bb9b-96a0565412bf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-20T19:47:18.000Z" - }, - "end": { - "$date": "2021-05-20T21:24:46.000Z" - }, - "events": [ - { - "uuid": "4e717211-3259-459e-be06-eb4c53b088a4", - "start": { - "$date": "2021-05-20T19:47:18.000Z" - }, - "end": { - "$date": "2021-05-20T21:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6fc1253-bf3c-4c35-8d34-5d3a05abb035", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T21:43:51.000Z" - }, - "end": { - "$date": "2021-05-20T22:06:48.000Z" - }, - "events": [ - { - "uuid": "ddacdf52-d4d2-40e6-a084-ce89cb2e5eb1", - "start": { - "$date": "2021-05-20T21:43:51.000Z" - }, - "end": { - "$date": "2021-05-20T22:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8feb1787-9bcc-46c1-83f7-46f25eb244fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T22:07:53.000Z" - }, - "end": { - "$date": "2021-05-20T22:31:10.000Z" - }, - "events": [ - { - "uuid": "ba425949-35bd-4a1a-8db0-7ed6e64a325f", - "start": { - "$date": "2021-05-20T22:07:53.000Z" - }, - "end": { - "$date": "2021-05-20T22:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50591fcc-2428-42c5-88ed-ff8576a01ed6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T23:28:18.000Z" - }, - "end": { - "$date": "2021-05-20T23:41:45.000Z" - }, - "events": [ - { - "uuid": "6a4ab62f-1f16-47e4-be81-9f9c2d0ce710", - "start": { - "$date": "2021-05-20T23:28:18.000Z" - }, - "end": { - "$date": "2021-05-20T23:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "57f3ce39-9879-4b80-80f7-1ea2ce931f51", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-20T23:26:44.000Z" - }, - "end": { - "$date": "2021-05-21T00:57:24.000Z" - }, - "events": [ - { - "uuid": "56d062bf-6076-42c5-a420-190d9d6acde2", - "start": { - "$date": "2021-05-20T23:26:44.000Z" - }, - "end": { - "$date": "2021-05-21T00:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "961a5eaa-768c-4cd2-b033-c23c9207ece9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-20T23:44:25.000Z" - }, - "end": { - "$date": "2021-05-21T00:03:56.000Z" - }, - "events": [ - { - "uuid": "4f36018a-1377-4752-a284-3a4baeb1d102", - "start": { - "$date": "2021-05-20T23:44:25.000Z" - }, - "end": { - "$date": "2021-05-21T00:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4789946c-0baf-415b-b850-fcdba98d86e5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-21T00:48:06.000Z" - }, - "end": { - "$date": "2021-05-21T07:13:08.000Z" - }, - "events": [ - { - "uuid": "6e97b536-ecaa-45b3-8f72-edcebedb609d", - "start": { - "$date": "2021-05-21T00:48:06.000Z" - }, - "end": { - "$date": "2021-05-21T02:00:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37627375-27a4-4e45-8344-5f59c4a8fdec", - "start": { - "$date": "2021-05-21T02:00:06.000Z" - }, - "end": { - "$date": "2021-05-21T02:05:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "243ca1b7-aca8-436a-8eb7-8cbe2787d705", - "start": { - "$date": "2021-05-21T02:05:06.000Z" - }, - "end": { - "$date": "2021-05-21T07:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5138db70-423c-4cf7-ae9e-d8028f19bf5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-21T01:08:37.000Z" - }, - "end": { - "$date": "2021-05-21T01:09:46.000Z" - }, - "events": [ - { - "uuid": "c95949ca-fe94-462e-8444-93bda4c5a17b", - "start": { - "$date": "2021-05-21T01:08:37.000Z" - }, - "end": { - "$date": "2021-05-21T01:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2642a7c4-3b48-48d5-8c94-35e7f1b171e5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-21T01:11:02.000Z" - }, - "end": { - "$date": "2021-05-21T02:12:31.000Z" - }, - "events": [ - { - "uuid": "6ba093f6-ad56-44b1-9c4b-225626dd6f46", - "start": { - "$date": "2021-05-21T01:11:02.000Z" - }, - "end": { - "$date": "2021-05-21T02:12:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fbb3b06a-26dd-4a2d-a7d0-e7d15460ca9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-21T03:50:12.000Z" - }, - "end": { - "$date": "2021-05-21T04:56:26.000Z" - }, - "events": [ - { - "uuid": "1db6411f-1de0-4eab-9b49-5366da4f78a4", - "start": { - "$date": "2021-05-21T03:50:12.000Z" - }, - "end": { - "$date": "2021-05-21T04:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "7dde8bba-7a76-4b03-b55e-bb2d8181c418", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-21T02:44:50.000Z" - }, - "end": { - "$date": "2021-05-21T13:33:57.000Z" - }, - "events": [ - { - "uuid": "34ea42e1-e18b-4e28-a60d-df7434057ba7", - "start": { - "$date": "2021-05-21T02:44:50.000Z" - }, - "end": { - "$date": "2021-05-21T03:57:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2652c4c6-88e6-433e-a295-0c6f2edd1681", - "start": { - "$date": "2021-05-21T03:57:50.000Z" - }, - "end": { - "$date": "2021-05-21T04:00:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec2841be-b551-4bb2-8db2-2fbbc4276245", - "start": { - "$date": "2021-05-21T04:00:50.000Z" - }, - "end": { - "$date": "2021-05-21T04:02:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "162160a2-ec1a-42f9-994c-bed4be93d782", - "start": { - "$date": "2021-05-21T04:02:50.000Z" - }, - "end": { - "$date": "2021-05-21T12:53:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f22e798f-dcd8-4cfd-9f30-ab0c1d3a63b6", - "start": { - "$date": "2021-05-21T12:53:50.000Z" - }, - "end": { - "$date": "2021-05-21T12:56:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e27ff67b-3cf2-44b8-bcda-cf01164859ac", - "start": { - "$date": "2021-05-21T12:56:50.000Z" - }, - "end": { - "$date": "2021-05-21T13:52:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e380b6e0-9d7e-429f-9ba6-4a925726d558", - "start": { - "$date": "2021-05-21T13:52:50.000Z" - }, - "end": { - "$date": "2021-05-21T13:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4e621e71-038c-44b0-9147-fa589df49efe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-21T02:14:44.000Z" - }, - "end": { - "$date": "2021-05-21T02:14:49.000Z" - }, - "events": [ - { - "uuid": "58795ecb-f1fd-43ca-bc82-947a9bec6bee", - "start": { - "$date": "2021-05-21T02:14:44.000Z" - }, - "end": { - "$date": "2021-05-21T02:14:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "234dab75-e818-4cc6-835d-f3176c209e1c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-21T02:12:56.000Z" - }, - "end": { - "$date": "2021-05-21T05:00:50.000Z" - }, - "events": [ - { - "uuid": "a0b19eac-6242-4c9e-a9a4-e0ccb26de31f", - "start": { - "$date": "2021-05-21T02:12:56.000Z" - }, - "end": { - "$date": "2021-05-21T05:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "baebd8f2-818e-4f62-b056-c05476c3b612", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-21T02:16:14.000Z" - }, - "end": { - "$date": "2021-05-21T03:53:45.000Z" - }, - "events": [ - { - "uuid": "2896f3d4-a1c5-42ce-84ad-7d0ee751d475", - "start": { - "$date": "2021-05-21T02:16:14.000Z" - }, - "end": { - "$date": "2021-05-21T03:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "55fb536f-c2b0-4caa-9979-8133635eca02", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-21T02:28:15.000Z" - }, - "end": { - "$date": "2021-05-21T04:24:20.000Z" - }, - "events": [ - { - "uuid": "c047d87d-e4ba-45dc-bb41-539afb5bbf61", - "start": { - "$date": "2021-05-21T02:28:15.000Z" - }, - "end": { - "$date": "2021-05-21T04:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "efac376c-0793-44af-82e6-d272840489cf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-21T02:29:13.000Z" - }, - "end": { - "$date": "2021-05-21T04:56:46.000Z" - }, - "events": [ - { - "uuid": "81579074-948d-4032-86e0-6a68cb5cd3e6", - "start": { - "$date": "2021-05-21T02:29:13.000Z" - }, - "end": { - "$date": "2021-05-21T04:56:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7c2f71e8-e6e7-412c-b0fc-c2ef0b249212", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-21T02:34:26.000Z" - }, - "end": { - "$date": "2021-05-21T05:00:12.000Z" - }, - "events": [ - { - "uuid": "4a61b465-25e6-4c74-80a5-2b1c30127b6b", - "start": { - "$date": "2021-05-21T02:34:26.000Z" - }, - "end": { - "$date": "2021-05-21T05:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c962a9ed-5307-4634-9ee5-41e928e86355", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-21T03:54:25.000Z" - }, - "end": { - "$date": "2021-05-21T04:17:53.000Z" - }, - "events": [ - { - "uuid": "459fc59f-044d-4094-8a63-07031b589ee2", - "start": { - "$date": "2021-05-21T03:54:25.000Z" - }, - "end": { - "$date": "2021-05-21T04:17:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "74aa1299-25cd-49e2-94cf-4b1fe1367985", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-21T04:13:04.000Z" - }, - "end": { - "$date": "2021-05-21T04:56:38.000Z" - }, - "events": [ - { - "uuid": "c0a06f77-fac6-44d9-89da-921d4a9ea741", - "start": { - "$date": "2021-05-21T04:13:04.000Z" - }, - "end": { - "$date": "2021-05-21T04:56:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "15402577-6ad2-406c-ae76-6ae1b919420d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-21T04:26:51.000Z" - }, - "end": { - "$date": "2021-05-21T05:18:07.000Z" - }, - "events": [ - { - "uuid": "04908e35-0d8e-48d1-9633-00adef7204fa", - "start": { - "$date": "2021-05-21T04:26:51.000Z" - }, - "end": { - "$date": "2021-05-21T05:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1070ac64-c848-4f7e-ae29-de5e88b52015", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-21T04:34:33.000Z" - }, - "end": { - "$date": "2021-05-21T05:01:36.000Z" - }, - "events": [ - { - "uuid": "0faae78b-5519-439b-981d-95c63b4e0fb5", - "start": { - "$date": "2021-05-21T04:34:33.000Z" - }, - "end": { - "$date": "2021-05-21T05:01:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fcb1b471-cee3-4176-a39f-17855a70c97b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-21T04:57:31.000Z" - }, - "end": { - "$date": "2021-05-21T16:37:54.000Z" - }, - "events": [ - { - "uuid": "396a65e8-810a-4453-b14a-72bbe76bfeff", - "start": { - "$date": "2021-05-21T04:57:31.000Z" - }, - "end": { - "$date": "2021-05-21T05:09:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b9a7ccfe-b4ee-43e9-bb3f-eb0428bc5a86", - "start": { - "$date": "2021-05-21T05:09:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:14:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec681800-8814-475b-aba8-6229b7bd649b", - "start": { - "$date": "2021-05-21T14:14:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:16:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c565c38-5075-4123-953e-7b0316565e08", - "start": { - "$date": "2021-05-21T14:16:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:25:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2083c102-442f-4f5c-a149-558aa12b6ff9", - "start": { - "$date": "2021-05-21T14:25:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:27:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f1daf13-f138-41fc-92b0-a03049032ec2", - "start": { - "$date": "2021-05-21T14:27:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:37:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "911aa48b-e64f-4ac7-9089-409ad262bb13", - "start": { - "$date": "2021-05-21T14:37:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:54:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "576bb971-a53e-4992-bab8-3faed4c22640", - "start": { - "$date": "2021-05-21T14:54:31.000Z" - }, - "end": { - "$date": "2021-05-21T14:58:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20f6fa66-fdb1-4262-8aa6-84c6a244eceb", - "start": { - "$date": "2021-05-21T14:58:31.000Z" - }, - "end": { - "$date": "2021-05-21T16:37:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b24279f0-792d-4410-9031-952bbe3b1107", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-21T05:04:42.000Z" - }, - "end": { - "$date": "2021-05-21T05:38:34.000Z" - }, - "events": [ - { - "uuid": "fb62bc7c-354d-46a9-a031-83e58a5cb5c8", - "start": { - "$date": "2021-05-21T05:04:42.000Z" - }, - "end": { - "$date": "2021-05-21T05:38:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a01d2cb-66ef-40d2-a849-80994e17497b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-21T05:04:40.000Z" - }, - "end": { - "$date": "2021-05-21T05:38:20.000Z" - }, - "events": [ - { - "uuid": "a16b57c7-1f6f-4b89-a506-e7dfb5b8ad5e", - "start": { - "$date": "2021-05-21T05:04:40.000Z" - }, - "end": { - "$date": "2021-05-21T05:38:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "28bb753e-0430-4e3e-acf1-eef24e2fc15d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-21T05:01:45.000Z" - }, - "end": { - "$date": "2021-05-21T08:01:43.000Z" - }, - "events": [ - { - "uuid": "212f6ef0-807e-46d6-99d2-9a63a239b2b4", - "start": { - "$date": "2021-05-21T05:01:45.000Z" - }, - "end": { - "$date": "2021-05-21T08:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e648385a-c621-4992-a55d-c2795211f62a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-21T05:08:03.000Z" - }, - "end": { - "$date": "2021-05-21T05:40:23.000Z" - }, - "events": [ - { - "uuid": "3875a4c0-1446-4369-b13d-5bb1a1d6d605", - "start": { - "$date": "2021-05-21T05:08:03.000Z" - }, - "end": { - "$date": "2021-05-21T05:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35c4b1f1-6caa-4d7d-80e1-2e361223b6a4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-21T05:49:43.000Z" - }, - "end": { - "$date": "2021-05-21T06:20:06.000Z" - }, - "events": [ - { - "uuid": "99f1dc26-48c3-4d60-a9bd-d7d58bcd010c", - "start": { - "$date": "2021-05-21T05:49:43.000Z" - }, - "end": { - "$date": "2021-05-21T06:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5eea2586-3623-4382-a7ab-a69d5030bbad", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-21T14:21:54.000Z" - }, - "end": { - "$date": "2021-05-21T14:59:48.000Z" - }, - "events": [ - { - "uuid": "91f593ed-f292-4616-b986-692379ee0978", - "start": { - "$date": "2021-05-21T14:21:54.000Z" - }, - "end": { - "$date": "2021-05-21T14:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "0f1ae010-9048-4d34-84f2-4a715a260d75", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-21T15:00:04.000Z" - }, - "end": { - "$date": "2021-05-21T16:39:47.000Z" - }, - "events": [ - { - "uuid": "dc68c546-e54e-48ad-b7ab-f7a1f1e72fa7", - "start": { - "$date": "2021-05-21T15:00:04.000Z" - }, - "end": { - "$date": "2021-05-21T16:39:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b4e5b593-6d90-4404-9374-65144e7419f9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-21T17:58:05.000Z" - }, - "end": { - "$date": "2021-05-21T20:47:00.000Z" - }, - "events": [ - { - "uuid": "9c47feff-5b8c-4e2e-bc88-9e470855ae9a", - "start": { - "$date": "2021-05-21T17:58:05.000Z" - }, - "end": { - "$date": "2021-05-21T20:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5c760f7d-058d-4f4b-bcf4-0ef17d520118", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-21T19:14:39.000Z" - }, - "end": { - "$date": "2021-05-21T19:33:24.000Z" - }, - "events": [ - { - "uuid": "2d9e6b30-de8e-410b-8012-65cd88731465", - "start": { - "$date": "2021-05-21T19:14:39.000Z" - }, - "end": { - "$date": "2021-05-21T19:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "0178adac-970a-453d-8aee-ee5f60bfb6e6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-21T21:13:05.000Z" - }, - "end": { - "$date": "2021-05-21T21:16:47.000Z" - }, - "events": [ - { - "uuid": "af583c90-a437-4c37-af63-468c6055f870", - "start": { - "$date": "2021-05-21T21:13:05.000Z" - }, - "end": { - "$date": "2021-05-21T21:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ea4dec32-16c5-43d8-882d-eee67917c11c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-21T20:13:08.000Z" - }, - "end": { - "$date": "2021-05-21T20:41:31.000Z" - }, - "events": [ - { - "uuid": "2a4b44c8-8d10-4b32-8540-f0ce548d5b4d", - "start": { - "$date": "2021-05-21T20:13:08.000Z" - }, - "end": { - "$date": "2021-05-21T20:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "78a24c94-e32b-44a7-8fca-50459cc382d1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-21T20:24:41.000Z" - }, - "end": { - "$date": "2021-05-22T09:04:05.000Z" - }, - "events": [ - { - "uuid": "18221384-ba82-4006-bc91-9bbbaea1ffd7", - "start": { - "$date": "2021-05-21T20:24:41.000Z" - }, - "end": { - "$date": "2021-05-21T21:58:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "17df48ec-ca0f-46c0-a2d8-54fd069238a7", - "start": { - "$date": "2021-05-21T21:58:41.000Z" - }, - "end": { - "$date": "2021-05-21T22:17:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "214de191-e74a-4d98-8488-aa8ded6e2761", - "start": { - "$date": "2021-05-21T22:17:41.000Z" - }, - "end": { - "$date": "2021-05-22T02:34:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c300f5b7-8e8d-4313-82cf-022424a08018", - "start": { - "$date": "2021-05-22T02:34:41.000Z" - }, - "end": { - "$date": "2021-05-22T02:49:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "447fc009-2732-4e23-ab4b-ee6bb930ef09", - "start": { - "$date": "2021-05-22T02:49:41.000Z" - }, - "end": { - "$date": "2021-05-22T09:04:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5e4b45a0-8f94-442d-a433-0b1c4ed57837", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-21T20:42:56.000Z" - }, - "end": { - "$date": "2021-05-21T21:22:18.000Z" - }, - "events": [ - { - "uuid": "750684dd-2e14-4de2-a616-e25a41861007", - "start": { - "$date": "2021-05-21T20:42:56.000Z" - }, - "end": { - "$date": "2021-05-21T21:22:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "0ee4cef6-7d5f-483d-87bf-622024d66f45", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-21T21:14:48.000Z" - }, - "end": { - "$date": "2021-05-21T22:14:29.000Z" - }, - "events": [ - { - "uuid": "044e0f55-a03c-476e-858b-60abd3d1b3ee", - "start": { - "$date": "2021-05-21T21:14:48.000Z" - }, - "end": { - "$date": "2021-05-21T22:14:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dcc2f3f0-0572-4339-92f4-e770d5a619f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-21T21:23:18.000Z" - }, - "end": { - "$date": "2021-05-21T21:24:19.000Z" - }, - "events": [ - { - "uuid": "56cd658d-f3ad-4a29-b9ae-a162a0854953", - "start": { - "$date": "2021-05-21T21:23:18.000Z" - }, - "end": { - "$date": "2021-05-21T21:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "88e6ae73-dd1a-4550-98ba-961954d920b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-21T21:24:33.000Z" - }, - "end": { - "$date": "2021-05-21T21:41:10.000Z" - }, - "events": [ - { - "uuid": "003bf3c4-a3db-4f97-95ae-2bd781f11f66", - "start": { - "$date": "2021-05-21T21:24:33.000Z" - }, - "end": { - "$date": "2021-05-21T21:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "c4ab2ccf-aadc-4e53-924a-eee3c5714e1d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-21T21:40:01.000Z" - }, - "end": { - "$date": "2021-05-21T23:06:02.000Z" - }, - "events": [ - { - "uuid": "3cd245e2-4656-4244-ac61-aacf6fa21e74", - "start": { - "$date": "2021-05-21T21:40:01.000Z" - }, - "end": { - "$date": "2021-05-21T23:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca89aab3-6077-4b32-b6af-883094d2ffac", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-21T21:56:49.000Z" - }, - "end": { - "$date": "2021-05-21T22:26:07.000Z" - }, - "events": [ - { - "uuid": "40ecc5d6-7e6e-47ea-8fbf-c6f80454bf2c", - "start": { - "$date": "2021-05-21T21:56:49.000Z" - }, - "end": { - "$date": "2021-05-21T22:26:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "195edb3e-b186-40bc-979b-1fd080619137", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-21T22:18:54.000Z" - }, - "end": { - "$date": "2021-05-21T22:59:30.000Z" - }, - "events": [ - { - "uuid": "5d919b29-531f-4f24-a270-144aa2e59c2a", - "start": { - "$date": "2021-05-21T22:18:54.000Z" - }, - "end": { - "$date": "2021-05-21T22:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "74aca192-b718-4dcd-a538-e1569bb1f881", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-21T23:01:00.000Z" - }, - "end": { - "$date": "2021-05-22T00:05:26.000Z" - }, - "events": [ - { - "uuid": "60863a68-9290-4fb5-a7d5-7f140fbd6363", - "start": { - "$date": "2021-05-21T23:01:00.000Z" - }, - "end": { - "$date": "2021-05-22T00:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8263e9ca-b611-4aff-8a2f-776faad77fb7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T00:33:05.000Z" - }, - "end": { - "$date": "2021-05-22T01:46:41.000Z" - }, - "events": [ - { - "uuid": "65e3449c-4c5b-432d-a499-b2cd1bc4fd15", - "start": { - "$date": "2021-05-22T00:33:05.000Z" - }, - "end": { - "$date": "2021-05-22T01:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f833f646-d15c-4a27-a21a-098ee5058b91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T01:24:11.000Z" - }, - "end": { - "$date": "2021-05-22T01:24:31.000Z" - }, - "events": [ - { - "uuid": "289b57b6-a5ba-444d-b0a0-da5d445c710a", - "start": { - "$date": "2021-05-22T01:24:11.000Z" - }, - "end": { - "$date": "2021-05-22T01:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5a2c0a4-5533-4e20-9ff2-8ca058d8144d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-22T00:56:13.000Z" - }, - "end": { - "$date": "2021-05-22T01:34:05.000Z" - }, - "events": [ - { - "uuid": "07d4b6c6-d7ea-44e2-a900-8c68d8dde9f8", - "start": { - "$date": "2021-05-22T00:56:13.000Z" - }, - "end": { - "$date": "2021-05-22T01:34:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3be3446d-6dbb-4449-aa31-342c358676f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T01:24:41.000Z" - }, - "end": { - "$date": "2021-05-22T02:00:28.000Z" - }, - "events": [ - { - "uuid": "01ec379f-0c8a-4592-855c-5f233b61009d", - "start": { - "$date": "2021-05-22T01:24:41.000Z" - }, - "end": { - "$date": "2021-05-22T02:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5179ead1-64c0-48ad-a3d5-f0c9cb0b10f0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-22T01:33:01.000Z" - }, - "end": { - "$date": "2021-05-22T02:57:24.000Z" - }, - "events": [ - { - "uuid": "9a0aa2a8-c3cd-4720-94d8-89fba41ddb1b", - "start": { - "$date": "2021-05-22T01:33:01.000Z" - }, - "end": { - "$date": "2021-05-22T02:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c4eddcef-4134-4566-99ec-e31c6cc2bbb1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-22T01:42:45.000Z" - }, - "end": { - "$date": "2021-05-22T01:53:24.000Z" - }, - "events": [ - { - "uuid": "eaee4b10-d568-4fc7-a839-ae84d1d796b7", - "start": { - "$date": "2021-05-22T01:42:45.000Z" - }, - "end": { - "$date": "2021-05-22T01:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7a48099d-a620-469c-be02-db2a6217ddfb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T01:46:51.000Z" - }, - "end": { - "$date": "2021-05-22T04:25:13.000Z" - }, - "events": [ - { - "uuid": "26322ca1-bc75-4606-bddf-dc1fdb236e3a", - "start": { - "$date": "2021-05-22T01:46:51.000Z" - }, - "end": { - "$date": "2021-05-22T04:25:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "73d3abd7-bc66-4524-8f55-eed69598f728", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-22T01:55:50.000Z" - }, - "end": { - "$date": "2021-05-22T03:09:31.000Z" - }, - "events": [ - { - "uuid": "ba9e37fa-0621-4357-8c79-bd7a255b2a39", - "start": { - "$date": "2021-05-22T01:55:50.000Z" - }, - "end": { - "$date": "2021-05-22T03:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "69a36c71-313e-4ac1-b3d7-3bfbe0ab4e48", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T02:06:34.000Z" - }, - "end": { - "$date": "2021-05-22T02:46:42.000Z" - }, - "events": [ - { - "uuid": "926dccbe-9c3e-4a76-8fdd-c6ea137ebd79", - "start": { - "$date": "2021-05-22T02:06:34.000Z" - }, - "end": { - "$date": "2021-05-22T02:46:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7c3a00cb-3146-4a70-8dc6-e6c63166c5fd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-22T02:50:11.000Z" - }, - "end": { - "$date": "2021-05-22T05:07:59.000Z" - }, - "events": [ - { - "uuid": "8d4bfc19-8101-488d-bffa-dadcaa47929f", - "start": { - "$date": "2021-05-22T02:50:11.000Z" - }, - "end": { - "$date": "2021-05-22T05:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4dffdb29-6705-45af-a381-bdcba4119a88", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T02:50:48.000Z" - }, - "end": { - "$date": "2021-05-22T04:26:53.000Z" - }, - "events": [ - { - "uuid": "82c24b65-9281-49f3-a9fe-6d6c45142a33", - "start": { - "$date": "2021-05-22T02:50:48.000Z" - }, - "end": { - "$date": "2021-05-22T04:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e1e7115d-b370-4eaa-a6b9-44fd1785f592", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-22T02:58:16.000Z" - }, - "end": { - "$date": "2021-05-22T05:12:56.000Z" - }, - "events": [ - { - "uuid": "0bad539b-d9e5-4adf-aaa0-be2b699de110", - "start": { - "$date": "2021-05-22T02:58:16.000Z" - }, - "end": { - "$date": "2021-05-22T05:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "698c0404-9f88-4d52-8545-a4041cb9e59d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-22T03:10:13.000Z" - }, - "end": { - "$date": "2021-05-22T04:46:38.000Z" - }, - "events": [ - { - "uuid": "a29d2be0-e184-4ba8-a56b-4a6e442d9c65", - "start": { - "$date": "2021-05-22T03:10:13.000Z" - }, - "end": { - "$date": "2021-05-22T04:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fbff63f1-d265-47f1-b06d-44b8f3a0830e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-22T04:27:30.000Z" - }, - "end": { - "$date": "2021-05-22T05:24:54.000Z" - }, - "events": [ - { - "uuid": "2aff7307-8202-44ef-af55-eeaeebc5cf3b", - "start": { - "$date": "2021-05-22T04:27:30.000Z" - }, - "end": { - "$date": "2021-05-22T05:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a6226455-14fe-4646-9309-9e5fa07344a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-22T05:13:53.000Z" - }, - "end": { - "$date": "2021-05-22T06:37:39.000Z" - }, - "events": [ - { - "uuid": "8365f108-8535-4b51-8699-de5b39c9a144", - "start": { - "$date": "2021-05-22T05:13:53.000Z" - }, - "end": { - "$date": "2021-05-22T06:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64e3b19f-21f0-4480-bcc5-cf44cca76bc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-22T05:36:31.000Z" - }, - "end": { - "$date": "2021-05-22T06:02:03.000Z" - }, - "events": [ - { - "uuid": "eb7099e2-6227-4059-ac80-2adcb473f237", - "start": { - "$date": "2021-05-22T05:36:31.000Z" - }, - "end": { - "$date": "2021-05-22T06:02:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af2c6ee2-fb28-4aab-a2f8-1286806a6041", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-22T05:37:45.000Z" - }, - "end": { - "$date": "2021-05-22T06:01:56.000Z" - }, - "events": [ - { - "uuid": "8f33fca0-3a48-47f3-a531-d3d299d80e95", - "start": { - "$date": "2021-05-22T05:37:45.000Z" - }, - "end": { - "$date": "2021-05-22T06:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bd1303be-659c-453f-a0b0-61e32a46439a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-22T05:48:25.000Z" - }, - "end": { - "$date": "2021-05-22T05:58:59.000Z" - }, - "events": [ - { - "uuid": "aeb03220-05e6-4d83-9c0e-338c83c7f183", - "start": { - "$date": "2021-05-22T05:48:25.000Z" - }, - "end": { - "$date": "2021-05-22T05:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "09cde5c2-38ca-4304-8aa0-17edc076a937", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T05:36:27.000Z" - }, - "end": { - "$date": "2021-05-22T08:20:45.000Z" - }, - "events": [ - { - "uuid": "ce566568-6afc-4bb1-a325-3dc202b3bfd7", - "start": { - "$date": "2021-05-22T05:36:27.000Z" - }, - "end": { - "$date": "2021-05-22T08:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38921f79-fe81-4746-835a-607ebe2ed273", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-22T06:06:37.000Z" - }, - "end": { - "$date": "2021-05-22T06:33:35.000Z" - }, - "events": [ - { - "uuid": "05021559-593e-4387-8942-5dc8ff2e1c5f", - "start": { - "$date": "2021-05-22T06:06:37.000Z" - }, - "end": { - "$date": "2021-05-22T06:33:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83ceeb4c-abe8-411d-af01-8032e25199ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-22T06:06:36.000Z" - }, - "end": { - "$date": "2021-05-22T06:33:22.000Z" - }, - "events": [ - { - "uuid": "ce16fd2e-3530-437f-ab8e-b2517b4e575d", - "start": { - "$date": "2021-05-22T06:06:36.000Z" - }, - "end": { - "$date": "2021-05-22T06:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cc82645e-df18-4081-8f18-2ea948c2605d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-22T06:43:25.000Z" - }, - "end": { - "$date": "2021-05-22T07:02:17.000Z" - }, - "events": [ - { - "uuid": "ec38c869-410c-4e7e-847e-66a74c510de4", - "start": { - "$date": "2021-05-22T06:43:25.000Z" - }, - "end": { - "$date": "2021-05-22T07:02:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4076b113-c2b3-498d-be32-c9abb71644c9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-22T07:21:59.000Z" - }, - "end": { - "$date": "2021-05-22T07:52:27.000Z" - }, - "events": [ - { - "uuid": "d3cce843-d8d9-4391-8787-5657c54a5ad7", - "start": { - "$date": "2021-05-22T07:21:59.000Z" - }, - "end": { - "$date": "2021-05-22T07:52:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c4ea7cd-57fc-48f3-b588-11ca49d073a2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-22T07:58:15.000Z" - }, - "end": { - "$date": "2021-05-22T08:25:06.000Z" - }, - "events": [ - { - "uuid": "9bc3fa2e-12ca-4264-8401-70a579785a97", - "start": { - "$date": "2021-05-22T07:58:15.000Z" - }, - "end": { - "$date": "2021-05-22T08:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c087ccb3-d3da-4dd2-8d63-96a041453272", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-22T11:02:45.000Z" - }, - "end": { - "$date": "2021-05-22T20:52:00.000Z" - }, - "events": [ - { - "uuid": "5957e17c-1f60-44e0-8711-65b203e009b0", - "start": { - "$date": "2021-05-22T11:02:45.000Z" - }, - "end": { - "$date": "2021-05-22T20:52:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "24985ae7-b115-460c-a932-fa15a093f260", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T11:04:43.000Z" - }, - "end": { - "$date": "2021-05-22T11:55:31.000Z" - }, - "events": [ - { - "uuid": "86c7c63c-f62f-4956-897a-60dfd4e3a984", - "start": { - "$date": "2021-05-22T11:04:43.000Z" - }, - "end": { - "$date": "2021-05-22T11:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "2363bb90-2978-4546-9f81-8db584365caa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T13:36:53.000Z" - }, - "end": { - "$date": "2021-05-22T14:42:40.000Z" - }, - "events": [ - { - "uuid": "bb4a1581-3972-4db1-ab76-dd5283ec8eea", - "start": { - "$date": "2021-05-22T13:36:53.000Z" - }, - "end": { - "$date": "2021-05-22T14:42:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1c9a38d8-2330-4e0c-8010-8166ea55972d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T14:55:57.000Z" - }, - "end": { - "$date": "2021-05-22T15:13:18.000Z" - }, - "events": [ - { - "uuid": "ea691149-ff36-48f8-89b0-fdc285a6b3d1", - "start": { - "$date": "2021-05-22T14:55:57.000Z" - }, - "end": { - "$date": "2021-05-22T15:13:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "fd9e2e15-68e9-46b4-a773-443513188956", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T15:14:23.000Z" - }, - "end": { - "$date": "2021-05-22T15:52:43.000Z" - }, - "events": [ - { - "uuid": "efd8b20a-1114-42d5-8b0a-64f3945de184", - "start": { - "$date": "2021-05-22T15:14:23.000Z" - }, - "end": { - "$date": "2021-05-22T15:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a5bc1de9-015a-4cfd-8efc-8692cc67df78", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T16:01:34.000Z" - }, - "end": { - "$date": "2021-05-22T17:15:26.000Z" - }, - "events": [ - { - "uuid": "13f90f2c-1c61-40d9-92f9-ee44f0b29e2d", - "start": { - "$date": "2021-05-22T16:01:34.000Z" - }, - "end": { - "$date": "2021-05-22T17:15:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cc6a46d-dd68-466c-9749-aea801502606", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-22T16:53:51.000Z" - }, - "end": { - "$date": "2021-05-22T17:26:47.000Z" - }, - "events": [ - { - "uuid": "45f913ea-cd84-473d-b283-3d347bb4c3cc", - "start": { - "$date": "2021-05-22T16:53:51.000Z" - }, - "end": { - "$date": "2021-05-22T17:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6740941e-74f3-4818-9532-7e95a9754021", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T16:52:02.000Z" - }, - "end": { - "$date": "2021-05-22T19:04:42.000Z" - }, - "events": [ - { - "uuid": "43d56ccc-9730-4951-87c5-70dace6094d6", - "start": { - "$date": "2021-05-22T16:52:02.000Z" - }, - "end": { - "$date": "2021-05-22T17:08:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ae25606-3ae6-482e-b0fe-c26aaeef714a", - "start": { - "$date": "2021-05-22T17:08:02.000Z" - }, - "end": { - "$date": "2021-05-22T17:34:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fede7f07-1861-44e4-8819-29c77b94050c", - "start": { - "$date": "2021-05-22T17:34:02.000Z" - }, - "end": { - "$date": "2021-05-22T18:02:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3c29a213-2092-4f2d-b63f-a1efc6222736", - "start": { - "$date": "2021-05-22T18:02:02.000Z" - }, - "end": { - "$date": "2021-05-22T18:08:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb91301a-906f-46d9-8707-783b3d8d4527", - "start": { - "$date": "2021-05-22T18:08:02.000Z" - }, - "end": { - "$date": "2021-05-22T18:19:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c79d908f-3210-40c6-ad08-30db1293c620", - "start": { - "$date": "2021-05-22T18:19:02.000Z" - }, - "end": { - "$date": "2021-05-22T18:20:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c274e144-589c-4670-8fc0-67437acff58a", - "start": { - "$date": "2021-05-22T18:20:02.000Z" - }, - "end": { - "$date": "2021-05-22T19:04:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "4c48159c-994f-43f8-bffe-d77ec9ba7fe1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T17:24:27.000Z" - }, - "end": { - "$date": "2021-05-22T17:30:32.000Z" - }, - "events": [ - { - "uuid": "57ddf602-3499-4d65-83a7-1cbd8a3a20c2", - "start": { - "$date": "2021-05-22T17:24:27.000Z" - }, - "end": { - "$date": "2021-05-22T17:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "784579c1-c735-46ea-adf3-67f886c04b78", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-22T17:27:06.000Z" - }, - "end": { - "$date": "2021-05-22T18:32:45.000Z" - }, - "events": [ - { - "uuid": "dc68cddc-71a2-42c7-a480-e6e247cbd953", - "start": { - "$date": "2021-05-22T17:27:06.000Z" - }, - "end": { - "$date": "2021-05-22T17:52:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "02a949ad-5e93-49c0-ae01-7bbdd7367d25", - "start": { - "$date": "2021-05-22T17:52:06.000Z" - }, - "end": { - "$date": "2021-05-22T17:56:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c3860fee-0709-4eeb-bbfa-487037891940", - "start": { - "$date": "2021-05-22T17:56:06.000Z" - }, - "end": { - "$date": "2021-05-22T18:13:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0cb20434-a889-4ac5-95d8-a27a67f1d7fb", - "start": { - "$date": "2021-05-22T18:13:06.000Z" - }, - "end": { - "$date": "2021-05-22T18:17:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7cb76bd5-b9cf-47ef-8ffa-6e93a5e7fffb", - "start": { - "$date": "2021-05-22T18:17:06.000Z" - }, - "end": { - "$date": "2021-05-22T18:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "91c97cc1-af32-495d-ab59-627f9fff567b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T18:07:27.000Z" - }, - "end": { - "$date": "2021-05-22T19:31:34.000Z" - }, - "events": [ - { - "uuid": "260ed352-6942-4174-ba3f-b0c67b669ae2", - "start": { - "$date": "2021-05-22T18:07:27.000Z" - }, - "end": { - "$date": "2021-05-22T19:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0b9855a1-9e31-4ce6-9de6-642ad026a347", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-22T18:58:35.000Z" - }, - "end": { - "$date": "2021-05-22T21:12:15.000Z" - }, - "events": [ - { - "uuid": "60ab87a4-3334-4efc-98fe-ac593466bdd9", - "start": { - "$date": "2021-05-22T18:58:35.000Z" - }, - "end": { - "$date": "2021-05-22T21:12:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5f9769a-7dfc-4dd5-99a3-e7877a64f95d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T19:05:22.000Z" - }, - "end": { - "$date": "2021-05-22T19:37:59.000Z" - }, - "events": [ - { - "uuid": "c78d6eee-14c3-4ad3-b855-0456fa569058", - "start": { - "$date": "2021-05-22T19:05:22.000Z" - }, - "end": { - "$date": "2021-05-22T19:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3f7e1928-e670-479e-bc2c-be4ff4317a51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T19:38:04.000Z" - }, - "end": { - "$date": "2021-05-22T19:57:28.000Z" - }, - "events": [ - { - "uuid": "4bc79714-dd2c-47b1-931d-a0b9f099ae4d", - "start": { - "$date": "2021-05-22T19:38:04.000Z" - }, - "end": { - "$date": "2021-05-22T19:49:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "02000959-2aad-478f-aecf-961e3cd4d643", - "start": { - "$date": "2021-05-22T19:49:04.000Z" - }, - "end": { - "$date": "2021-05-22T19:55:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8482cdd-540e-4025-9e7e-5d768458d5b3", - "start": { - "$date": "2021-05-22T19:55:04.000Z" - }, - "end": { - "$date": "2021-05-22T19:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3fd6f84-4a1a-422b-bb68-9f8a883d00a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T20:08:23.000Z" - }, - "end": { - "$date": "2021-05-22T20:08:28.000Z" - }, - "events": [ - { - "uuid": "af1f0121-e8da-465a-852f-473134ad3022", - "start": { - "$date": "2021-05-22T20:08:23.000Z" - }, - "end": { - "$date": "2021-05-22T20:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5a45854-d089-440c-a615-24c9b503c2f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T20:08:48.000Z" - }, - "end": { - "$date": "2021-05-22T20:30:13.000Z" - }, - "events": [ - { - "uuid": "c83b144b-3ca6-4ded-bb54-6ae4ff263f08", - "start": { - "$date": "2021-05-22T20:08:48.000Z" - }, - "end": { - "$date": "2021-05-22T20:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6772b5e-eadd-4f7d-83d3-5f3af2ce61e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T20:57:59.000Z" - }, - "end": { - "$date": "2021-05-22T21:41:27.000Z" - }, - "events": [ - { - "uuid": "502d3b72-a46d-405a-9f5a-cfaff3fc3d73", - "start": { - "$date": "2021-05-22T20:57:59.000Z" - }, - "end": { - "$date": "2021-05-22T21:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f6a8b25f-0979-408c-81f0-cba4b255a7af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-22T20:37:25.000Z" - }, - "end": { - "$date": "2021-05-22T21:26:55.000Z" - }, - "events": [ - { - "uuid": "4360b6a4-b130-492e-babd-080b2abf61da", - "start": { - "$date": "2021-05-22T20:37:25.000Z" - }, - "end": { - "$date": "2021-05-22T21:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "756bfa93-dfdc-4498-a652-9b6c0f45cf21", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T20:37:48.000Z" - }, - "end": { - "$date": "2021-05-22T21:42:31.000Z" - }, - "events": [ - { - "uuid": "d485a517-0715-4b6f-af0c-932e4d9ff2ec", - "start": { - "$date": "2021-05-22T20:37:48.000Z" - }, - "end": { - "$date": "2021-05-22T21:42:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9a634053-9c99-441b-959f-970c19e0ec78", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-22T21:42:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:13:52.000Z" - }, - "events": [ - { - "uuid": "1305da42-043b-4b2e-9980-1a9107a2396d", - "start": { - "$date": "2021-05-22T21:42:27.000Z" - }, - "end": { - "$date": "2021-05-22T22:14:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5645629c-1a4f-41a3-a488-cb54900b7497", - "start": { - "$date": "2021-05-22T22:14:27.000Z" - }, - "end": { - "$date": "2021-05-22T22:33:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2a02f2da-a248-4fa0-9679-e2feece180c9", - "start": { - "$date": "2021-05-22T22:33:27.000Z" - }, - "end": { - "$date": "2021-05-22T22:46:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f8c0699-997a-4892-84e6-0b6626f9bbba", - "start": { - "$date": "2021-05-22T22:46:27.000Z" - }, - "end": { - "$date": "2021-05-22T22:58:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "320caa12-dfa6-4f97-8566-411d3961d753", - "start": { - "$date": "2021-05-22T22:58:27.000Z" - }, - "end": { - "$date": "2021-05-22T23:40:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d69fb3e-4022-4817-9fbc-4442f7ded748", - "start": { - "$date": "2021-05-22T23:40:27.000Z" - }, - "end": { - "$date": "2021-05-23T00:08:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ea9e22f-a15a-4977-80c7-9cfca439d5fc", - "start": { - "$date": "2021-05-23T00:08:27.000Z" - }, - "end": { - "$date": "2021-05-23T00:32:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b481ea73-8bcc-42e3-b568-e490eb177f14", - "start": { - "$date": "2021-05-23T00:32:27.000Z" - }, - "end": { - "$date": "2021-05-23T00:56:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97db83e6-bbf9-4a5d-b647-fa52a0b0caf7", - "start": { - "$date": "2021-05-23T00:56:27.000Z" - }, - "end": { - "$date": "2021-05-23T00:59:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a732c41-9bbc-4fdb-b4dd-bcb46b3a8a11", - "start": { - "$date": "2021-05-23T00:59:27.000Z" - }, - "end": { - "$date": "2021-05-23T02:00:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43cbd782-3c72-4f31-965e-7bc3f061e0e7", - "start": { - "$date": "2021-05-23T02:00:27.000Z" - }, - "end": { - "$date": "2021-05-23T02:02:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d294b5a-deb7-4dd5-86a7-1f9c6c391a07", - "start": { - "$date": "2021-05-23T02:02:27.000Z" - }, - "end": { - "$date": "2021-05-23T02:54:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff50eddb-7ee4-4e9d-93fe-b2358126557f", - "start": { - "$date": "2021-05-23T02:54:27.000Z" - }, - "end": { - "$date": "2021-05-23T02:59:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbfcbbb0-0238-405c-99c8-3506193950e7", - "start": { - "$date": "2021-05-23T02:59:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:04:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4fa32f0-c508-4105-b04f-061ca46f1203", - "start": { - "$date": "2021-05-23T03:04:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:06:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d1bc0dad-7e39-453f-b6cb-b3c25e075412", - "start": { - "$date": "2021-05-23T03:06:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:11:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41f1f7fa-927f-4655-bb74-bafe10831587", - "start": { - "$date": "2021-05-23T03:11:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "df7567cb-0c95-43ba-ac13-753d195426b3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-22T21:46:42.000Z" - }, - "end": { - "$date": "2021-05-22T22:07:43.000Z" - }, - "events": [ - { - "uuid": "d27d83fd-c6ca-486f-8ec0-70c6e9aa13f9", - "start": { - "$date": "2021-05-22T21:46:42.000Z" - }, - "end": { - "$date": "2021-05-22T22:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "bd123af1-932e-4775-b684-77aa26dbbf15", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-22T21:49:38.000Z" - }, - "end": { - "$date": "2021-05-23T00:12:31.000Z" - }, - "events": [ - { - "uuid": "9d8093e2-5008-405b-9bac-01fdd30071a8", - "start": { - "$date": "2021-05-22T21:49:38.000Z" - }, - "end": { - "$date": "2021-05-23T00:12:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b6557a15-0b77-4568-a799-434e9ace928e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-22T22:38:42.000Z" - }, - "end": { - "$date": "2021-05-23T08:08:54.000Z" - }, - "events": [ - { - "uuid": "0d2a75fc-59b6-4f2b-8e65-40f95dd57596", - "start": { - "$date": "2021-05-22T22:38:42.000Z" - }, - "end": { - "$date": "2021-05-23T04:10:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd57c385-ecc4-4603-9d58-3bf612c40992", - "start": { - "$date": "2021-05-23T04:10:42.000Z" - }, - "end": { - "$date": "2021-05-23T04:15:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3430f990-16e0-4e73-a1ad-99396d874a4d", - "start": { - "$date": "2021-05-23T04:15:42.000Z" - }, - "end": { - "$date": "2021-05-23T04:25:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b0559f3-de4b-4191-96bd-f2f32ab4ae47", - "start": { - "$date": "2021-05-23T04:25:42.000Z" - }, - "end": { - "$date": "2021-05-23T04:26:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8fd8484e-9699-4d44-bf05-d215bc4c6780", - "start": { - "$date": "2021-05-23T04:26:42.000Z" - }, - "end": { - "$date": "2021-05-23T08:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "1af324bc-50b8-4124-bb00-ee5075413358", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-22T23:04:55.000Z" - }, - "end": { - "$date": "2021-05-23T00:29:31.000Z" - }, - "events": [ - { - "uuid": "0ffde33c-6e49-44f5-8186-5a77dd15433d", - "start": { - "$date": "2021-05-22T23:04:55.000Z" - }, - "end": { - "$date": "2021-05-23T00:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c42760c-0127-4bbe-868f-fbc30ee2c4de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-23T01:27:01.000Z" - }, - "end": { - "$date": "2021-05-23T02:02:18.000Z" - }, - "events": [ - { - "uuid": "0343340a-a1bc-4308-9d2d-0cf1076171d5", - "start": { - "$date": "2021-05-23T01:27:01.000Z" - }, - "end": { - "$date": "2021-05-23T02:00:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22b6d961-fb82-4344-997b-0251a7daf879", - "start": { - "$date": "2021-05-23T02:00:01.000Z" - }, - "end": { - "$date": "2021-05-23T02:02:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b4181d7-12e1-458f-8c94-cce79210f4ae", - "start": { - "$date": "2021-05-23T02:02:01.000Z" - }, - "end": { - "$date": "2021-05-23T02:02:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3ffef743-a11a-465e-94b8-eb26f549a568", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-23T00:53:18.000Z" - }, - "end": { - "$date": "2021-05-23T01:11:39.000Z" - }, - "events": [ - { - "uuid": "d203950d-713e-4d4d-a05c-d73478c7ee8c", - "start": { - "$date": "2021-05-23T00:53:18.000Z" - }, - "end": { - "$date": "2021-05-23T01:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "96aee078-a048-4ac3-b2d6-a48ce944d80c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-23T01:13:53.000Z" - }, - "end": { - "$date": "2021-05-23T01:20:59.000Z" - }, - "events": [ - { - "uuid": "23c19eb2-8997-47e6-b83b-dacad4f84739", - "start": { - "$date": "2021-05-23T01:13:53.000Z" - }, - "end": { - "$date": "2021-05-23T01:20:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2820e99-ada1-49f5-9860-a300e507fc4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-23T01:21:04.000Z" - }, - "end": { - "$date": "2021-05-23T03:26:23.000Z" - }, - "events": [ - { - "uuid": "4bad9532-db6c-4118-9ac7-1a9fbaf439dc", - "start": { - "$date": "2021-05-23T01:21:04.000Z" - }, - "end": { - "$date": "2021-05-23T03:26:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6b9e2ef9-4783-4de2-ac8a-01b61a71803d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-23T01:43:02.000Z" - }, - "end": { - "$date": "2021-05-23T03:33:44.000Z" - }, - "events": [ - { - "uuid": "1a4812db-707b-4b98-96ca-4257509ee4ea", - "start": { - "$date": "2021-05-23T01:43:02.000Z" - }, - "end": { - "$date": "2021-05-23T03:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "642904d9-3f7b-48bd-bf74-15b585387fac", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T01:57:46.000Z" - }, - "end": { - "$date": "2021-05-23T04:22:33.000Z" - }, - "events": [ - { - "uuid": "c6d2f585-e0c4-4ecd-9a7d-f3727a0124cb", - "start": { - "$date": "2021-05-23T01:57:46.000Z" - }, - "end": { - "$date": "2021-05-23T04:22:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "680b1fa8-55f0-462b-a29a-c9cc5a2cf227", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-23T03:15:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:51:15.000Z" - }, - "events": [ - { - "uuid": "86372e2c-683a-49c1-8518-a60400be7613", - "start": { - "$date": "2021-05-23T03:15:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:36:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86c4da79-a05c-4848-bef3-43625fd05c24", - "start": { - "$date": "2021-05-23T03:36:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:37:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "628e1821-3b8f-4376-b1cb-4887a6e54c1d", - "start": { - "$date": "2021-05-23T03:37:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:47:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bcfffc9e-168c-4093-9d64-e65056670179", - "start": { - "$date": "2021-05-23T03:47:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:50:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1d053350-c671-4abe-a9df-cb9be216672e", - "start": { - "$date": "2021-05-23T03:50:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:53:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a69f6a13-d3d0-40cb-be9e-26ef732f0cd7", - "start": { - "$date": "2021-05-23T03:53:30.000Z" - }, - "end": { - "$date": "2021-05-23T04:09:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80cf71c7-bc9d-4f6a-8e8e-c8382ad753f7", - "start": { - "$date": "2021-05-23T04:09:30.000Z" - }, - "end": { - "$date": "2021-05-23T04:11:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9889bfa3-0474-4761-942a-127a892ecdba", - "start": { - "$date": "2021-05-23T04:11:30.000Z" - }, - "end": { - "$date": "2021-05-23T04:14:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7da0e15-4cae-4884-b79b-9e65891e8f01", - "start": { - "$date": "2021-05-23T04:14:30.000Z" - }, - "end": { - "$date": "2021-05-23T03:51:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df82f11c-5811-47bd-a914-7fccf4ef9f94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T03:15:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:51:09.000Z" - }, - "events": [ - { - "uuid": "a9d3dd6c-44a8-46bb-8734-bbb9a736b876", - "start": { - "$date": "2021-05-23T03:15:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "733bd563-3331-4ed9-a4be-38984a459e73", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-23T03:26:33.000Z" - }, - "end": { - "$date": "2021-05-23T04:19:56.000Z" - }, - "events": [ - { - "uuid": "a1894b92-274b-44c0-a15e-f83e332135f9", - "start": { - "$date": "2021-05-23T03:26:33.000Z" - }, - "end": { - "$date": "2021-05-23T04:19:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b23c6b05-6b35-461f-ac01-6a84fa9e99db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-23T03:51:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:53:20.000Z" - }, - "events": [ - { - "uuid": "70af5fde-8760-4343-bcfa-050ff2c3c7b5", - "start": { - "$date": "2021-05-23T03:51:27.000Z" - }, - "end": { - "$date": "2021-05-23T03:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4b1ce6f2-9cb5-43f9-aae9-8cfb2529f555", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T03:54:08.000Z" - }, - "end": { - "$date": "2021-05-23T16:49:14.000Z" - }, - "events": [ - { - "uuid": "98fe6ac6-b272-4b50-b9a3-f8ded0b04baa", - "start": { - "$date": "2021-05-23T03:54:08.000Z" - }, - "end": { - "$date": "2021-05-23T04:05:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9b2b052-fd11-4b1d-9960-3ed49a5a0072", - "start": { - "$date": "2021-05-23T04:05:08.000Z" - }, - "end": { - "$date": "2021-05-23T15:18:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39d3da21-473f-4495-b2ce-decc24b5fb76", - "start": { - "$date": "2021-05-23T15:18:08.000Z" - }, - "end": { - "$date": "2021-05-23T15:20:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80e240ff-c956-469d-8802-1d6645315658", - "start": { - "$date": "2021-05-23T15:20:08.000Z" - }, - "end": { - "$date": "2021-05-23T15:29:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0098b060-c4f0-46e4-bbf5-82d43cae9db7", - "start": { - "$date": "2021-05-23T15:29:08.000Z" - }, - "end": { - "$date": "2021-05-23T16:15:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9717f0b-6fd7-4173-b6f9-cf179d40c83f", - "start": { - "$date": "2021-05-23T16:15:08.000Z" - }, - "end": { - "$date": "2021-05-23T16:42:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4a5c1a69-2921-461e-8b7b-26a55a2008b2", - "start": { - "$date": "2021-05-23T16:42:08.000Z" - }, - "end": { - "$date": "2021-05-23T16:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c65c1b75-3e21-4e05-a35c-93694d66a32f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-23T04:20:21.000Z" - }, - "end": { - "$date": "2021-05-23T04:34:26.000Z" - }, - "events": [ - { - "uuid": "0f390e99-3904-4f17-b461-4ff5c19e4b39", - "start": { - "$date": "2021-05-23T04:20:21.000Z" - }, - "end": { - "$date": "2021-05-23T04:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "fb41fe1a-9dfb-4783-aaa4-b052a7f947cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-23T04:26:08.000Z" - }, - "end": { - "$date": "2021-05-23T05:37:03.000Z" - }, - "events": [ - { - "uuid": "2fe0bec9-1c60-4af0-9377-8c999209fcd5", - "start": { - "$date": "2021-05-23T04:26:08.000Z" - }, - "end": { - "$date": "2021-05-23T05:37:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "dbe89e51-79af-43af-8daa-9074cb9c6a4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-23T04:40:37.000Z" - }, - "end": { - "$date": "2021-05-23T05:07:52.000Z" - }, - "events": [ - { - "uuid": "fbbe4487-61aa-4350-9ebb-2de154162191", - "start": { - "$date": "2021-05-23T04:40:37.000Z" - }, - "end": { - "$date": "2021-05-23T05:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2235c2aa-89ed-4751-a5c1-e1ae211b8b2a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T05:11:23.000Z" - }, - "end": { - "$date": "2021-05-23T05:13:18.000Z" - }, - "events": [ - { - "uuid": "054d34de-d1c0-47be-9fd6-da545f8d89ec", - "start": { - "$date": "2021-05-23T05:11:23.000Z" - }, - "end": { - "$date": "2021-05-23T05:13:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1a801ba-22f3-4340-8f3a-da3632a06e6b", - "uuid": "b987f5dd-f259-4e49-8e5b-d7de48197492", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T05:13:53.000Z" - }, - "end": { - "$date": "2021-05-23T05:24:48.000Z" - }, - "events": [ - { - "uuid": "9bcd9488-24df-481a-9256-bab96a3c5341", - "start": { - "$date": "2021-05-23T05:13:53.000Z" - }, - "end": { - "$date": "2021-05-23T05:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "69d99181-883b-4629-96f8-d6f94073b56c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T05:25:29.000Z" - }, - "end": { - "$date": "2021-05-23T06:56:26.000Z" - }, - "events": [ - { - "uuid": "1587b252-f8de-4a6c-9230-6b80f7685dd9", - "start": { - "$date": "2021-05-23T05:25:29.000Z" - }, - "end": { - "$date": "2021-05-23T06:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bbed2c5-dc32-4399-9089-7213f1d1324a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-23T08:16:47.000Z" - }, - "end": { - "$date": "2021-05-23T08:50:54.000Z" - }, - "events": [ - { - "uuid": "945433c0-15a7-4cae-b411-7a7ea318c3f9", - "start": { - "$date": "2021-05-23T08:16:47.000Z" - }, - "end": { - "$date": "2021-05-23T08:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0be622cf-0c6c-4afd-bb5b-f56e0c80c84e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-23T09:01:11.000Z" - }, - "end": { - "$date": "2021-05-23T09:36:56.000Z" - }, - "events": [ - { - "uuid": "a81ac3d1-fd4d-45e9-8192-cabdf4dd96ee", - "start": { - "$date": "2021-05-23T09:01:11.000Z" - }, - "end": { - "$date": "2021-05-23T09:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "f867b744-24b4-4d0b-824c-3281fe1745a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T15:31:16.000Z" - }, - "end": { - "$date": "2021-05-23T15:49:31.000Z" - }, - "events": [ - { - "uuid": "0494a78c-bbea-4599-b01a-90329996f54b", - "start": { - "$date": "2021-05-23T15:31:16.000Z" - }, - "end": { - "$date": "2021-05-23T15:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6fda2c3-1b10-4003-bcdd-7b1b7c2bd588", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-23T15:46:01.000Z" - }, - "end": { - "$date": "2021-05-23T16:18:35.000Z" - }, - "events": [ - { - "uuid": "4d2131ee-2e3e-4646-9b47-086974f00a6c", - "start": { - "$date": "2021-05-23T15:46:01.000Z" - }, - "end": { - "$date": "2021-05-23T16:18:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63db3741-1688-48e0-b791-3be1188ddeb1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T16:02:44.000Z" - }, - "end": { - "$date": "2021-05-23T16:57:14.000Z" - }, - "events": [ - { - "uuid": "ecac4c1a-c851-4093-bb76-723705f23016", - "start": { - "$date": "2021-05-23T16:02:44.000Z" - }, - "end": { - "$date": "2021-05-23T16:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5338f8c3-749e-4c06-a56a-02e1ff4ac0d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T16:50:39.000Z" - }, - "end": { - "$date": "2021-05-23T17:16:56.000Z" - }, - "events": [ - { - "uuid": "b39da88c-0954-4bb1-b8d3-086f0046c697", - "start": { - "$date": "2021-05-23T16:50:39.000Z" - }, - "end": { - "$date": "2021-05-23T17:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "745139e3-f992-417a-bb43-f0b793cd117b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T17:50:27.000Z" - }, - "end": { - "$date": "2021-05-23T19:15:39.000Z" - }, - "events": [ - { - "uuid": "213ec47c-6cb7-4551-9f2b-b4705dd4cbf1", - "start": { - "$date": "2021-05-23T17:50:27.000Z" - }, - "end": { - "$date": "2021-05-23T19:15:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d490194b-34eb-4082-81f9-a5c81eb7c86d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-23T17:31:14.000Z" - }, - "end": { - "$date": "2021-05-23T17:38:24.000Z" - }, - "events": [ - { - "uuid": "b030b007-7984-4676-8866-22ca536221b3", - "start": { - "$date": "2021-05-23T17:31:14.000Z" - }, - "end": { - "$date": "2021-05-23T17:38:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1ae64de-410a-4680-95bf-bb095322aa29", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-23T19:37:13.000Z" - }, - "end": { - "$date": "2021-05-23T20:07:53.000Z" - }, - "events": [ - { - "uuid": "3b911f15-a989-4b6d-818a-d2c7d3bf37f5", - "start": { - "$date": "2021-05-23T19:37:13.000Z" - }, - "end": { - "$date": "2021-05-23T20:07:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ba86047-8a41-4916-bd0f-df87735953be", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T20:04:36.000Z" - }, - "end": { - "$date": "2021-05-23T20:15:27.000Z" - }, - "events": [ - { - "uuid": "4ea477b1-d6af-485c-a01e-cee1d5621c75", - "start": { - "$date": "2021-05-23T20:04:36.000Z" - }, - "end": { - "$date": "2021-05-23T20:15:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18dafdd3-8e94-4959-949e-88b5c1aa2673", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T20:49:02.000Z" - }, - "end": { - "$date": "2021-05-23T21:00:57.000Z" - }, - "events": [ - { - "uuid": "1fbb183a-cf9c-43d9-8f0f-ecccbdcb4a7c", - "start": { - "$date": "2021-05-23T20:49:02.000Z" - }, - "end": { - "$date": "2021-05-23T21:00:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c1e9c90c-c78a-4369-935f-f845396d7e81", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T20:47:13.000Z" - }, - "end": { - "$date": "2021-05-23T23:10:59.000Z" - }, - "events": [ - { - "uuid": "67dea810-2e49-472a-961e-929536071eb9", - "start": { - "$date": "2021-05-23T20:47:13.000Z" - }, - "end": { - "$date": "2021-05-23T23:10:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "529a611b-f707-4c0a-a60d-6678e1a156b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T21:03:47.000Z" - }, - "end": { - "$date": "2021-05-23T21:27:33.000Z" - }, - "events": [ - { - "uuid": "6b018dd3-03ec-4b56-898b-3002cfdebd8e", - "start": { - "$date": "2021-05-23T21:03:47.000Z" - }, - "end": { - "$date": "2021-05-23T21:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4b1b35ad-db23-45cf-ab0a-adecfa3c4d0d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-23T21:02:32.000Z" - }, - "end": { - "$date": "2021-05-23T21:49:28.000Z" - }, - "events": [ - { - "uuid": "2122165f-ab7e-463e-9d67-012c200a878d", - "start": { - "$date": "2021-05-23T21:02:32.000Z" - }, - "end": { - "$date": "2021-05-23T21:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21f553c9-3f87-433a-9b28-32a048ee6217", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-23T22:27:47.000Z" - }, - "end": { - "$date": "2021-05-23T22:54:23.000Z" - }, - "events": [ - { - "uuid": "47e61b56-53aa-44ce-86ba-e7869bf51dfb", - "start": { - "$date": "2021-05-23T22:27:47.000Z" - }, - "end": { - "$date": "2021-05-23T22:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad3aea45-a70d-4b0d-bef7-b8e470de5822", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-23T23:05:15.000Z" - }, - "end": { - "$date": "2021-05-23T23:42:19.000Z" - }, - "events": [ - { - "uuid": "93244407-3add-4dad-a301-dafacc50990f", - "start": { - "$date": "2021-05-23T23:05:15.000Z" - }, - "end": { - "$date": "2021-05-23T23:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbc8cdef-c37e-4ee7-9699-e8a2a535d244", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T23:05:12.000Z" - }, - "end": { - "$date": "2021-05-23T23:42:09.000Z" - }, - "events": [ - { - "uuid": "b375a588-3833-4d48-822b-711705db1118", - "start": { - "$date": "2021-05-23T23:05:12.000Z" - }, - "end": { - "$date": "2021-05-23T23:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8af4bba2-5042-4690-83a5-24931a63e25e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-23T23:11:10.000Z" - }, - "end": { - "$date": "2021-05-24T00:14:16.000Z" - }, - "events": [ - { - "uuid": "b49f2af9-1c20-4ea5-b97d-9728a2c6b126", - "start": { - "$date": "2021-05-23T23:11:10.000Z" - }, - "end": { - "$date": "2021-05-24T00:14:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbfd2485-5f9a-40f2-9b98-bfd355732dd3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-23T23:44:15.000Z" - }, - "end": { - "$date": "2021-05-24T00:10:24.000Z" - }, - "events": [ - { - "uuid": "187306e9-761c-4a7a-8f92-816b5422431b", - "start": { - "$date": "2021-05-23T23:44:15.000Z" - }, - "end": { - "$date": "2021-05-24T00:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7ef1df6-11b1-4a8b-aa5f-39b04c7b29c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-23T23:44:09.000Z" - }, - "end": { - "$date": "2021-05-24T00:07:36.000Z" - }, - "events": [ - { - "uuid": "19cbcf71-afdf-4ccc-a9a8-90b0281da027", - "start": { - "$date": "2021-05-23T23:44:09.000Z" - }, - "end": { - "$date": "2021-05-24T00:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8639a5af-2cf6-4a5b-9433-262af4d57b83", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-24T00:44:16.000Z" - }, - "end": { - "$date": "2021-05-24T07:00:48.000Z" - }, - "events": [ - { - "uuid": "572a0719-119d-40df-8e9f-a78de179c744", - "start": { - "$date": "2021-05-24T00:44:16.000Z" - }, - "end": { - "$date": "2021-05-24T07:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06b145fa-f371-48aa-b761-3d40f9b7ff45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T00:10:40.000Z" - }, - "end": { - "$date": "2021-05-24T00:18:31.000Z" - }, - "events": [ - { - "uuid": "297a294b-8355-4f43-a1b3-fd217e2d317b", - "start": { - "$date": "2021-05-24T00:10:40.000Z" - }, - "end": { - "$date": "2021-05-24T00:18:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aa4be865-c8af-48d9-a875-2bddc1ae742a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-24T00:15:37.000Z" - }, - "end": { - "$date": "2021-05-24T02:04:06.000Z" - }, - "events": [ - { - "uuid": "5643e893-708b-4a40-adbb-1a01609efbb0", - "start": { - "$date": "2021-05-24T00:15:37.000Z" - }, - "end": { - "$date": "2021-05-24T02:04:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e882144-26e1-4f1a-be89-96c3a9e6baaf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T00:23:41.000Z" - }, - "end": { - "$date": "2021-05-24T01:06:17.000Z" - }, - "events": [ - { - "uuid": "fd2dfbb1-d1fd-436f-8323-8eb78a2c46d4", - "start": { - "$date": "2021-05-24T00:23:41.000Z" - }, - "end": { - "$date": "2021-05-24T01:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "581feba1-871d-45fa-8732-af612702c648", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T00:18:31.000Z" - }, - "end": { - "$date": "2021-05-24T03:17:15.000Z" - }, - "events": [ - { - "uuid": "0b0a5e9b-8276-422d-889b-bde9cd3104de", - "start": { - "$date": "2021-05-24T00:18:31.000Z" - }, - "end": { - "$date": "2021-05-24T01:41:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b75bcfac-65d1-4b58-97b2-55ca56f1c9ef", - "start": { - "$date": "2021-05-24T01:41:31.000Z" - }, - "end": { - "$date": "2021-05-24T01:59:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ca65c23-23b9-4b8a-9d38-1a13b1eb2701", - "start": { - "$date": "2021-05-24T01:59:31.000Z" - }, - "end": { - "$date": "2021-05-24T03:17:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22fb029d-8cb5-4c97-b975-0c62a44740c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T00:24:47.000Z" - }, - "end": { - "$date": "2021-05-24T01:06:08.000Z" - }, - "events": [ - { - "uuid": "b5b9a2ac-8ace-41f3-95c3-7289e251040f", - "start": { - "$date": "2021-05-24T00:24:47.000Z" - }, - "end": { - "$date": "2021-05-24T01:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8c1d3f13-1d1b-4b6c-b47f-6b852bfa745f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-24T02:06:57.000Z" - }, - "end": { - "$date": "2021-05-24T02:07:02.000Z" - }, - "events": [ - { - "uuid": "33358de5-9f39-4033-9503-f353d415e72a", - "start": { - "$date": "2021-05-24T02:06:57.000Z" - }, - "end": { - "$date": "2021-05-24T03:09:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "568f697f-28ff-43a3-a788-60bbc8d5cb15", - "start": { - "$date": "2021-05-24T03:09:57.000Z" - }, - "end": { - "$date": "2021-05-24T03:11:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be6fcb3c-ab4b-4581-b05b-50724d72fc19", - "start": { - "$date": "2021-05-24T03:11:57.000Z" - }, - "end": { - "$date": "2021-05-24T02:07:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "944bee5c-7337-4974-9ff2-8f85f648aaaf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T01:25:21.000Z" - }, - "end": { - "$date": "2021-05-24T01:46:45.000Z" - }, - "events": [ - { - "uuid": "077645c2-caaf-4cce-9214-fc382c28cc2a", - "start": { - "$date": "2021-05-24T01:25:21.000Z" - }, - "end": { - "$date": "2021-05-24T01:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a61ae54-74d9-40f7-991a-5a1dc3957189", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T01:25:12.000Z" - }, - "end": { - "$date": "2021-05-24T01:46:30.000Z" - }, - "events": [ - { - "uuid": "15d63608-7efa-431a-905d-9fd53deb3d59", - "start": { - "$date": "2021-05-24T01:25:12.000Z" - }, - "end": { - "$date": "2021-05-24T01:46:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21655578-49f4-4953-9beb-071d27bc2af1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T01:51:24.000Z" - }, - "end": { - "$date": "2021-05-24T02:26:51.000Z" - }, - "events": [ - { - "uuid": "7d54c156-1ace-496a-9fc6-22e73302529c", - "start": { - "$date": "2021-05-24T01:51:24.000Z" - }, - "end": { - "$date": "2021-05-24T02:26:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "f9b51c0a-6cec-4a86-b6e4-789e5a9009cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-24T02:10:37.000Z" - }, - "end": { - "$date": "2021-05-24T02:14:42.000Z" - }, - "events": [ - { - "uuid": "f7374469-d12d-45d3-8d78-afac37e4b097", - "start": { - "$date": "2021-05-24T02:10:37.000Z" - }, - "end": { - "$date": "2021-05-24T02:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7a652fb4-a2ab-4202-bdcb-e3e4feb431cf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T03:13:30.000Z" - }, - "end": { - "$date": "2021-05-24T05:18:21.000Z" - }, - "events": [ - { - "uuid": "40fc9ece-41d4-4629-8fb4-f0db4258fa30", - "start": { - "$date": "2021-05-24T03:13:30.000Z" - }, - "end": { - "$date": "2021-05-24T05:18:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2362ff82-d2c5-49a3-bc23-650223276265", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T03:17:55.000Z" - }, - "end": { - "$date": "2021-05-24T03:23:16.000Z" - }, - "events": [ - { - "uuid": "b97231ed-2d4b-402c-9ce2-6b0d75a95cb9", - "start": { - "$date": "2021-05-24T03:17:55.000Z" - }, - "end": { - "$date": "2021-05-24T03:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f1a960ef-16e5-4923-92ee-fa946b146026", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T03:23:35.000Z" - }, - "end": { - "$date": "2021-05-24T05:17:50.000Z" - }, - "events": [ - { - "uuid": "29d9a37e-76ab-429b-a3b6-eac4a4f7a774", - "start": { - "$date": "2021-05-24T03:23:35.000Z" - }, - "end": { - "$date": "2021-05-24T05:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1a023d00-6702-4fa5-ae11-8100a856bc54", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-24T03:34:43.000Z" - }, - "end": { - "$date": "2021-05-24T03:43:48.000Z" - }, - "events": [ - { - "uuid": "e639d83b-033d-4e9e-bffd-dea6f5d18079", - "start": { - "$date": "2021-05-24T03:34:43.000Z" - }, - "end": { - "$date": "2021-05-24T03:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ef6fa0ba-dc85-4660-a7c2-f59ab5cb4f1c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-24T03:46:14.000Z" - }, - "end": { - "$date": "2021-05-24T06:10:15.000Z" - }, - "events": [ - { - "uuid": "acde932f-5700-496b-a5ef-0040ae9a352a", - "start": { - "$date": "2021-05-24T03:46:14.000Z" - }, - "end": { - "$date": "2021-05-24T06:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d1b1f1db-22d1-4db1-850b-420b544d837d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T04:19:09.000Z" - }, - "end": { - "$date": "2021-05-24T04:27:02.000Z" - }, - "events": [ - { - "uuid": "27ac51de-4a80-4af0-8b88-e833c6469e3b", - "start": { - "$date": "2021-05-24T04:19:09.000Z" - }, - "end": { - "$date": "2021-05-24T04:27:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9f383964-e63d-453f-87d1-1f8c0701959a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T04:27:17.000Z" - }, - "end": { - "$date": "2021-05-24T05:18:25.000Z" - }, - "events": [ - { - "uuid": "fe522c50-3497-48b2-bb73-c662581e37e4", - "start": { - "$date": "2021-05-24T04:27:17.000Z" - }, - "end": { - "$date": "2021-05-24T05:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "96f06d56-6324-48cd-b739-1cb112115573", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-24T04:49:15.000Z" - }, - "end": { - "$date": "2021-05-24T06:10:23.000Z" - }, - "events": [ - { - "uuid": "71ddc13d-139e-4937-88d7-27a5d1adcb01", - "start": { - "$date": "2021-05-24T04:49:15.000Z" - }, - "end": { - "$date": "2021-05-24T06:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cfe5c2f8-6e5d-4dc2-bf44-0ec53232af76", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T05:18:24.000Z" - }, - "end": { - "$date": "2021-05-24T19:40:17.000Z" - }, - "events": [ - { - "uuid": "bc5d4d81-a317-42c1-87bd-06d0e1f0c29f", - "start": { - "$date": "2021-05-24T05:18:24.000Z" - }, - "end": { - "$date": "2021-05-24T05:30:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "334a39a4-cee1-4045-9577-b41f5aa68340", - "start": { - "$date": "2021-05-24T05:30:24.000Z" - }, - "end": { - "$date": "2021-05-24T15:23:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b5b64f8-6310-4ebe-9146-02a18c1375ce", - "start": { - "$date": "2021-05-24T15:23:24.000Z" - }, - "end": { - "$date": "2021-05-24T15:25:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f1e40c8-8955-41b8-a664-e275d0def480", - "start": { - "$date": "2021-05-24T15:25:24.000Z" - }, - "end": { - "$date": "2021-05-24T15:40:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "87722afe-8184-4a35-ba8d-57873c41eb83", - "start": { - "$date": "2021-05-24T15:40:24.000Z" - }, - "end": { - "$date": "2021-05-24T16:39:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "322145b9-fbb9-4461-a9f4-5bdf87ac2df8", - "start": { - "$date": "2021-05-24T16:39:24.000Z" - }, - "end": { - "$date": "2021-05-24T16:42:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e3fd13a-0ca4-4462-853f-0c99fea3bdb5", - "start": { - "$date": "2021-05-24T16:42:24.000Z" - }, - "end": { - "$date": "2021-05-24T17:57:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e330e2ab-9232-4e12-a9bd-02219e407b3e", - "start": { - "$date": "2021-05-24T17:57:24.000Z" - }, - "end": { - "$date": "2021-05-24T18:00:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f1bde42-c5b1-49a3-b4a5-e087dfa38441", - "start": { - "$date": "2021-05-24T18:00:24.000Z" - }, - "end": { - "$date": "2021-05-24T18:02:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7499dbc1-7233-412c-b5a9-2e8eb16a815f", - "start": { - "$date": "2021-05-24T18:02:24.000Z" - }, - "end": { - "$date": "2021-05-24T18:11:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "054ca32e-eeb1-4d69-81cd-7b187f1273c7", - "start": { - "$date": "2021-05-24T18:11:24.000Z" - }, - "end": { - "$date": "2021-05-24T18:13:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc8ee947-fbd8-4c74-90bf-0d9c46af34ca", - "start": { - "$date": "2021-05-24T18:13:24.000Z" - }, - "end": { - "$date": "2021-05-24T18:26:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18dc33e9-1376-4e4b-be30-5a0147f0e21f", - "start": { - "$date": "2021-05-24T18:26:24.000Z" - }, - "end": { - "$date": "2021-05-24T18:31:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c62fbeef-cd1b-4781-b562-da1e41807c21", - "start": { - "$date": "2021-05-24T18:31:24.000Z" - }, - "end": { - "$date": "2021-05-24T19:40:17.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69937d5d-ed84-409c-b560-c7f8fc7a33cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T05:27:58.000Z" - }, - "end": { - "$date": "2021-05-24T05:35:30.000Z" - }, - "events": [ - { - "uuid": "f1a539e1-b6a8-43f1-b2c6-7501b640e099", - "start": { - "$date": "2021-05-24T05:27:58.000Z" - }, - "end": { - "$date": "2021-05-24T05:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9909398d-4a19-4915-be3a-2e4b272893f6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T05:27:57.000Z" - }, - "end": { - "$date": "2021-05-24T05:35:20.000Z" - }, - "events": [ - { - "uuid": "94add120-8d7b-4230-8cdd-08722ebb7dbb", - "start": { - "$date": "2021-05-24T05:27:57.000Z" - }, - "end": { - "$date": "2021-05-24T05:35:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6d4a0cd-dd13-4bdd-83db-bae4fd4e4885", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T05:40:25.000Z" - }, - "end": { - "$date": "2021-05-24T06:26:05.000Z" - }, - "events": [ - { - "uuid": "27099ffb-80ce-46c4-896a-75515040290f", - "start": { - "$date": "2021-05-24T05:40:25.000Z" - }, - "end": { - "$date": "2021-05-24T06:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a28284c0-15e3-4dac-859b-743fe34163ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T05:40:23.000Z" - }, - "end": { - "$date": "2021-05-24T06:26:46.000Z" - }, - "events": [ - { - "uuid": "bae1265f-1f54-4fa7-bfb9-0ce026c04b12", - "start": { - "$date": "2021-05-24T05:40:23.000Z" - }, - "end": { - "$date": "2021-05-24T06:26:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f2d63a8-1cd4-4ea3-939b-c348aeb9ff1a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-24T06:37:00.000Z" - }, - "end": { - "$date": "2021-05-24T07:03:40.000Z" - }, - "events": [ - { - "uuid": "2780d299-4c48-46ce-a832-86601b1527fb", - "start": { - "$date": "2021-05-24T06:37:00.000Z" - }, - "end": { - "$date": "2021-05-24T07:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9f51b814-ed08-47a9-95b3-6cdfffd443d7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-24T14:43:35.000Z" - }, - "end": { - "$date": "2021-05-24T15:50:52.000Z" - }, - "events": [ - { - "uuid": "19fedb01-c92d-4a27-9a1a-add62cb41be8", - "start": { - "$date": "2021-05-24T14:43:35.000Z" - }, - "end": { - "$date": "2021-05-24T15:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a82eebf9-c16a-4a68-b9e6-f870e4e95013", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T15:24:24.000Z" - }, - "end": { - "$date": "2021-05-24T15:25:54.000Z" - }, - "events": [ - { - "uuid": "9a1acff5-3e36-4d1a-aa70-1ed7dbb8332c", - "start": { - "$date": "2021-05-24T15:24:24.000Z" - }, - "end": { - "$date": "2021-05-24T15:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f76c66a-8df1-42d8-b0df-73ca8d60104f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T16:03:25.000Z" - }, - "end": { - "$date": "2021-05-24T16:26:37.000Z" - }, - "events": [ - { - "uuid": "58a7cef0-8d78-4116-9dc5-d0f26b97fa61", - "start": { - "$date": "2021-05-24T16:03:25.000Z" - }, - "end": { - "$date": "2021-05-24T16:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "bc15a542-95c2-459b-a94e-647c1faea75c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-24T18:27:36.000Z" - }, - "end": { - "$date": "2021-05-24T18:27:41.000Z" - }, - "events": [ - { - "uuid": "605dddeb-3c51-45f4-a8b8-5fdbda3f0778", - "start": { - "$date": "2021-05-24T18:27:36.000Z" - }, - "end": { - "$date": "2021-05-24T18:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "52d6b293-90a1-4fbe-80d4-c8f56b4017fb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-24T16:13:48.000Z" - }, - "end": { - "$date": "2021-05-24T17:03:49.000Z" - }, - "events": [ - { - "uuid": "8346935e-1f57-4753-8ee9-06ad4e6e6b9d", - "start": { - "$date": "2021-05-24T16:13:48.000Z" - }, - "end": { - "$date": "2021-05-24T17:03:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c16c5930-64dc-4c8f-b648-a46d88292267", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T16:31:29.000Z" - }, - "end": { - "$date": "2021-05-24T17:03:23.000Z" - }, - "events": [ - { - "uuid": "1e4f8f31-1d53-497b-8b76-e5e43741f6db", - "start": { - "$date": "2021-05-24T16:31:29.000Z" - }, - "end": { - "$date": "2021-05-24T17:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b6236fe-8ea0-4c49-babb-c1f55f13bb48", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T17:13:06.000Z" - }, - "end": { - "$date": "2021-05-24T17:43:21.000Z" - }, - "events": [ - { - "uuid": "27aca905-c41f-4b36-ae8b-af970a7fb45b", - "start": { - "$date": "2021-05-24T17:13:06.000Z" - }, - "end": { - "$date": "2021-05-24T17:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b50cba0-0962-42a6-8c4d-64e55abf26ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T17:13:02.000Z" - }, - "end": { - "$date": "2021-05-24T17:43:18.000Z" - }, - "events": [ - { - "uuid": "c326fdfe-f61e-4809-bd86-ff2538e06c06", - "start": { - "$date": "2021-05-24T17:13:02.000Z" - }, - "end": { - "$date": "2021-05-24T17:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cfb18e6-8b44-4d67-aa6d-3601cc7e6d5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T18:29:39.000Z" - }, - "end": { - "$date": "2021-05-24T18:29:37.000Z" - }, - "events": [ - { - "uuid": "a0115f53-552d-4bcb-914b-ebf3413b86b6", - "start": { - "$date": "2021-05-24T18:29:39.000Z" - }, - "end": { - "$date": "2021-05-24T18:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4b9d96af-49e3-4833-9206-42c441265aa7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T19:57:04.000Z" - }, - "end": { - "$date": "2021-05-24T21:01:34.000Z" - }, - "events": [ - { - "uuid": "9f89d8a5-7d9b-4c1f-a384-0bc77bba6734", - "start": { - "$date": "2021-05-24T19:57:04.000Z" - }, - "end": { - "$date": "2021-05-24T21:01:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "efed8007-7e54-4042-9a17-a79b2d008f96", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-24T20:17:37.000Z" - }, - "end": { - "$date": "2021-05-24T21:21:56.000Z" - }, - "events": [ - { - "uuid": "7cec2d3b-e1e5-4d33-823c-1cd4e3317f64", - "start": { - "$date": "2021-05-24T20:17:37.000Z" - }, - "end": { - "$date": "2021-05-24T21:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69c82692-8176-4d82-9dd9-d0191fc8734a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T21:04:46.000Z" - }, - "end": { - "$date": "2021-05-24T21:33:23.000Z" - }, - "events": [ - { - "uuid": "19ffd45b-2fcd-419e-8dbf-b3fd2e0da5cc", - "start": { - "$date": "2021-05-24T21:04:46.000Z" - }, - "end": { - "$date": "2021-05-24T21:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8412c6b-9b60-45ee-a0d4-e1b2a82ac85e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T21:05:09.000Z" - }, - "end": { - "$date": "2021-05-24T21:30:32.000Z" - }, - "events": [ - { - "uuid": "8dbf1e15-db15-4c42-af5f-9249115595ee", - "start": { - "$date": "2021-05-24T21:05:09.000Z" - }, - "end": { - "$date": "2021-05-24T21:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "408e6449-f116-4266-b6a7-bf56eaf4451d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-24T21:17:20.000Z" - }, - "end": { - "$date": "2021-05-24T21:30:05.000Z" - }, - "events": [ - { - "uuid": "3c9094d7-49e4-4c84-969f-02d5ab38d3ef", - "start": { - "$date": "2021-05-24T21:17:20.000Z" - }, - "end": { - "$date": "2021-05-24T21:30:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b54deeca-df51-462e-9c62-9d6f4614dc98", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-24T21:21:40.000Z" - }, - "end": { - "$date": "2021-05-24T21:42:07.000Z" - }, - "events": [ - { - "uuid": "e09ddb76-de46-4d1f-90db-600eae8759e2", - "start": { - "$date": "2021-05-24T21:21:40.000Z" - }, - "end": { - "$date": "2021-05-24T21:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2b36018f-6ef5-4b4e-8be2-baf291e4c34d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-24T21:22:01.000Z" - }, - "end": { - "$date": "2021-05-25T04:41:15.000Z" - }, - "events": [ - { - "uuid": "9212c17e-e2e8-41f2-9a71-13736e71938f", - "start": { - "$date": "2021-05-24T21:22:01.000Z" - }, - "end": { - "$date": "2021-05-25T03:35:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f8e430ab-68e6-4974-9a56-a3d25613d580", - "start": { - "$date": "2021-05-25T03:35:01.000Z" - }, - "end": { - "$date": "2021-05-25T03:49:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c1cb761c-7702-4a21-87e1-d0dbb33683c1", - "start": { - "$date": "2021-05-25T03:49:01.000Z" - }, - "end": { - "$date": "2021-05-25T04:41:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fa84874-ab7a-4c31-ba3f-1fc1869261ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T22:01:44.000Z" - }, - "end": { - "$date": "2021-05-24T22:01:41.000Z" - }, - "events": [ - { - "uuid": "1664c422-cfbd-46dd-9420-31a1f1e5e309", - "start": { - "$date": "2021-05-24T22:01:44.000Z" - }, - "end": { - "$date": "2021-05-24T22:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c58dd88c-19e9-43f1-a1a3-f35870c832fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-24T21:35:32.000Z" - }, - "end": { - "$date": "2021-05-24T22:07:23.000Z" - }, - "events": [ - { - "uuid": "a6f5bf70-c037-4591-ae3a-6b03215aab04", - "start": { - "$date": "2021-05-24T21:35:32.000Z" - }, - "end": { - "$date": "2021-05-24T22:07:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2b193f4-8f6c-43f5-87c6-58c35b15bcb6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-24T21:40:27.000Z" - }, - "end": { - "$date": "2021-05-25T00:42:52.000Z" - }, - "events": [ - { - "uuid": "84b4a2d0-756b-4269-884e-09b4b5590c38", - "start": { - "$date": "2021-05-24T21:40:27.000Z" - }, - "end": { - "$date": "2021-05-25T00:42:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "d1c239f9-4d1b-47ba-8587-e696ac34aabb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-24T21:42:29.000Z" - }, - "end": { - "$date": "2021-05-24T22:22:52.000Z" - }, - "events": [ - { - "uuid": "22e3bc22-d30b-414a-9215-0280b3b8af2b", - "start": { - "$date": "2021-05-24T21:42:29.000Z" - }, - "end": { - "$date": "2021-05-24T22:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86e15367-7393-4f87-ba6e-6532c02f0011", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T22:06:24.000Z" - }, - "end": { - "$date": "2021-05-24T22:34:20.000Z" - }, - "events": [ - { - "uuid": "bc9ff3bd-efb9-43de-9fa7-4548cdb7414a", - "start": { - "$date": "2021-05-24T22:06:24.000Z" - }, - "end": { - "$date": "2021-05-24T22:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01a7ee95-5dee-44b4-81d1-32713b382da4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T22:06:19.000Z" - }, - "end": { - "$date": "2021-05-24T22:34:10.000Z" - }, - "events": [ - { - "uuid": "8b2e9200-bdbb-447f-a19a-2fdfbf9738dc", - "start": { - "$date": "2021-05-24T22:06:19.000Z" - }, - "end": { - "$date": "2021-05-24T22:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "20702873-cd06-4158-8bc9-348c31313178", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-24T22:06:41.000Z" - }, - "end": { - "$date": "2021-05-24T22:57:16.000Z" - }, - "events": [ - { - "uuid": "487b922c-80b5-4ac5-b3e4-e49931ea8925", - "start": { - "$date": "2021-05-24T22:06:41.000Z" - }, - "end": { - "$date": "2021-05-24T22:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a0196185-b255-44ba-8dbe-1167916c11c4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-24T22:26:43.000Z" - }, - "end": { - "$date": "2021-05-25T01:14:32.000Z" - }, - "events": [ - { - "uuid": "70749d4c-baa2-48f4-999b-06455085f0bf", - "start": { - "$date": "2021-05-24T22:26:43.000Z" - }, - "end": { - "$date": "2021-05-25T00:05:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "301900c3-99b4-4328-b7d2-9764f9903151", - "start": { - "$date": "2021-05-25T00:05:43.000Z" - }, - "end": { - "$date": "2021-05-25T00:15:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70f62ef8-0cf1-4b96-bb54-39213164a4be", - "start": { - "$date": "2021-05-25T00:15:43.000Z" - }, - "end": { - "$date": "2021-05-25T01:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "449bc78e-2604-4ac9-8aa2-6e81fb8485a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T22:40:31.000Z" - }, - "end": { - "$date": "2021-05-24T23:06:51.000Z" - }, - "events": [ - { - "uuid": "87ec9b08-7282-4dde-aff4-a2fd2f8c59fa", - "start": { - "$date": "2021-05-24T22:40:31.000Z" - }, - "end": { - "$date": "2021-05-24T23:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "056afa2a-f95f-4fb2-b41d-a46b40c88c20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T22:40:26.000Z" - }, - "end": { - "$date": "2021-05-24T23:06:37.000Z" - }, - "events": [ - { - "uuid": "c64b9213-ee10-4493-860b-1230622e5b34", - "start": { - "$date": "2021-05-24T22:40:26.000Z" - }, - "end": { - "$date": "2021-05-24T23:06:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff2dd895-d8eb-4516-9c6f-f752fd27e588", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T23:14:27.000Z" - }, - "end": { - "$date": "2021-05-24T23:36:32.000Z" - }, - "events": [ - { - "uuid": "6bf4b0ca-bd40-4ab5-b9e2-5c050d20c48c", - "start": { - "$date": "2021-05-24T23:14:27.000Z" - }, - "end": { - "$date": "2021-05-24T23:36:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ac28541-f6d3-41db-83c2-1b41fec37b4c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T23:14:19.000Z" - }, - "end": { - "$date": "2021-05-24T23:36:25.000Z" - }, - "events": [ - { - "uuid": "da2971f4-2b82-4fba-baa9-577eddd09e50", - "start": { - "$date": "2021-05-24T23:14:19.000Z" - }, - "end": { - "$date": "2021-05-24T23:36:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92717330-2b93-4bc1-a833-c9ad991d3b65", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-24T23:19:09.000Z" - }, - "end": { - "$date": "2021-05-25T01:03:30.000Z" - }, - "events": [ - { - "uuid": "35223f74-1b90-4707-b213-90e1cc924a1a", - "start": { - "$date": "2021-05-24T23:19:09.000Z" - }, - "end": { - "$date": "2021-05-24T23:20:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "353df7c3-18d7-4d81-a2d4-2f27af7f963f", - "start": { - "$date": "2021-05-24T23:20:09.000Z" - }, - "end": { - "$date": "2021-05-25T01:03:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "dc46d22c-d43c-4074-a7a1-63b5ec08b79d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-24T23:25:01.000Z" - }, - "end": { - "$date": "2021-05-25T00:22:37.000Z" - }, - "events": [ - { - "uuid": "8bdc196e-674e-4911-89fa-3608b7165471", - "start": { - "$date": "2021-05-24T23:25:01.000Z" - }, - "end": { - "$date": "2021-05-25T00:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d289fedd-4b9b-4203-af93-0a4354b5b191", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-24T23:47:11.000Z" - }, - "end": { - "$date": "2021-05-25T00:13:46.000Z" - }, - "events": [ - { - "uuid": "3769f79d-1dbb-4df8-97d7-23f4803d2275", - "start": { - "$date": "2021-05-24T23:47:11.000Z" - }, - "end": { - "$date": "2021-05-25T00:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2082876-d855-49a1-91a5-c7dc965b3a6d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-24T23:47:06.000Z" - }, - "end": { - "$date": "2021-05-25T00:13:41.000Z" - }, - "events": [ - { - "uuid": "5a75f12c-3e17-4c52-b691-27df98fe2aa3", - "start": { - "$date": "2021-05-24T23:47:06.000Z" - }, - "end": { - "$date": "2021-05-25T00:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c501ea17-09b1-4de6-b38e-d8f6883f9e06", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-25T03:38:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:06:00.000Z" - }, - "events": [ - { - "uuid": "421b407a-acc8-42f0-b161-4d3918f7758c", - "start": { - "$date": "2021-05-25T03:38:49.000Z" - }, - "end": { - "$date": "2021-05-25T03:49:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b4435aa-e67c-428a-8efc-4be67f1f005c", - "start": { - "$date": "2021-05-25T03:49:49.000Z" - }, - "end": { - "$date": "2021-05-25T03:52:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "536fe468-e32a-4050-96a7-92d16838c743", - "start": { - "$date": "2021-05-25T03:52:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:02:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46c0ba13-8b8f-40af-81cc-f0338fd90db6", - "start": { - "$date": "2021-05-25T04:02:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:03:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dda9f3cc-96ff-4ad3-b7dc-1445f1d22506", - "start": { - "$date": "2021-05-25T04:03:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:14:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "016f9e4c-265e-4ae3-a3b4-8fe90106ea2b", - "start": { - "$date": "2021-05-25T04:14:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:17:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7454505-2dde-4c4b-b2ba-80ab2d55c8c9", - "start": { - "$date": "2021-05-25T04:17:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:33:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a725735-f2db-47d5-b999-3d88cb5cef2b", - "start": { - "$date": "2021-05-25T04:33:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:41:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9c2160c-337e-4049-9f30-bb114b6ab428", - "start": { - "$date": "2021-05-25T04:41:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:52:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c45fdfd0-74af-4c50-8165-e2b4b31b18d5", - "start": { - "$date": "2021-05-25T04:52:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:53:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb859436-1df7-4b51-9575-591471153e35", - "start": { - "$date": "2021-05-25T04:53:49.000Z" - }, - "end": { - "$date": "2021-05-25T06:30:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d944134f-b392-4549-9427-8a360ea57087", - "start": { - "$date": "2021-05-25T06:30:49.000Z" - }, - "end": { - "$date": "2021-05-25T06:47:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b421dc16-ffc3-4138-b8dc-f6494aa25bba", - "start": { - "$date": "2021-05-25T06:47:49.000Z" - }, - "end": { - "$date": "2021-05-25T06:49:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f58f16d-d25d-445d-a9ea-1d929b09d3e6", - "start": { - "$date": "2021-05-25T06:49:49.000Z" - }, - "end": { - "$date": "2021-05-25T06:57:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2dfa6fa8-1875-4b77-8f06-6f96b0882b72", - "start": { - "$date": "2021-05-25T06:57:49.000Z" - }, - "end": { - "$date": "2021-05-25T04:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ec502667-9b89-44a3-a21d-f7cca9cc9db8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T00:14:19.000Z" - }, - "end": { - "$date": "2021-05-25T02:07:01.000Z" - }, - "events": [ - { - "uuid": "b4bdd14b-f4e0-4ad5-81cf-fb460f28fb4e", - "start": { - "$date": "2021-05-25T00:14:19.000Z" - }, - "end": { - "$date": "2021-05-25T01:34:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dfa6b949-bb4e-4563-aacb-4bcb25a2aeb9", - "start": { - "$date": "2021-05-25T01:34:19.000Z" - }, - "end": { - "$date": "2021-05-25T01:43:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0070ab6e-c8a0-4798-aa6c-faf8d1aca2fb", - "start": { - "$date": "2021-05-25T01:43:19.000Z" - }, - "end": { - "$date": "2021-05-25T02:07:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "abcc46ed-dc80-4363-853e-3052545d568f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-25T00:20:12.000Z" - }, - "end": { - "$date": "2021-05-25T01:00:52.000Z" - }, - "events": [ - { - "uuid": "c21891b5-008c-42d6-af5d-a43cb8d52a09", - "start": { - "$date": "2021-05-25T00:20:12.000Z" - }, - "end": { - "$date": "2021-05-25T01:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7385963f-893c-4bc0-b245-d8f3cff376a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T00:47:10.000Z" - }, - "end": { - "$date": "2021-05-25T01:17:14.000Z" - }, - "events": [ - { - "uuid": "5c13adca-3831-4f2c-9349-342fe4d1dde6", - "start": { - "$date": "2021-05-25T00:47:10.000Z" - }, - "end": { - "$date": "2021-05-25T01:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c90f791-416c-4331-b67d-34b482f70f18", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-25T01:12:37.000Z" - }, - "end": { - "$date": "2021-05-25T04:43:43.000Z" - }, - "events": [ - { - "uuid": "1c20a3fa-d498-4af7-97ed-17c969cb00e9", - "start": { - "$date": "2021-05-25T01:12:37.000Z" - }, - "end": { - "$date": "2021-05-25T04:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "20b3da18-9d9a-41d7-ae68-c4f7543cfa3f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-25T01:17:42.000Z" - }, - "end": { - "$date": "2021-05-25T04:44:15.000Z" - }, - "events": [ - { - "uuid": "c439ce3e-ece6-4adf-9fb5-47313e6ad966", - "start": { - "$date": "2021-05-25T01:17:42.000Z" - }, - "end": { - "$date": "2021-05-25T04:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "289eedce-94a8-47d5-b0c0-334c616f5c21", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-25T01:36:36.000Z" - }, - "end": { - "$date": "2021-05-25T03:14:32.000Z" - }, - "events": [ - { - "uuid": "0cb10787-5eb1-4e95-be88-da0d3a58e8df", - "start": { - "$date": "2021-05-25T01:36:36.000Z" - }, - "end": { - "$date": "2021-05-25T03:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "965f7adf-cbad-4b9e-b77c-e0441680b7c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-25T01:36:44.000Z" - }, - "end": { - "$date": "2021-05-25T03:14:44.000Z" - }, - "events": [ - { - "uuid": "3d2c06ce-4874-443c-a889-a680814158c2", - "start": { - "$date": "2021-05-25T01:36:44.000Z" - }, - "end": { - "$date": "2021-05-25T03:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c792c8f3-a804-48b1-b5d9-4ba92739c0d6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-25T01:47:07.000Z" - }, - "end": { - "$date": "2021-05-25T01:50:47.000Z" - }, - "events": [ - { - "uuid": "b73c9938-ed81-4304-b23d-84f76594a6cc", - "start": { - "$date": "2021-05-25T01:47:07.000Z" - }, - "end": { - "$date": "2021-05-25T01:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "10a6295d-0fac-436a-ba43-262a4f479f72", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T02:08:16.000Z" - }, - "end": { - "$date": "2021-05-25T04:43:44.000Z" - }, - "events": [ - { - "uuid": "8723d971-43d2-4e20-a311-595871ec6f78", - "start": { - "$date": "2021-05-25T02:08:16.000Z" - }, - "end": { - "$date": "2021-05-25T04:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "49a9a107-f9d8-45b4-a8a7-94abd9e8017a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-25T03:41:49.000Z" - }, - "end": { - "$date": "2021-05-25T05:44:41.000Z" - }, - "events": [ - { - "uuid": "d5e79097-7b26-4555-8864-5c809d9dc9e8", - "start": { - "$date": "2021-05-25T03:41:49.000Z" - }, - "end": { - "$date": "2021-05-25T05:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2265c186-f642-46b9-84f4-79a78340e24e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-25T04:15:00.000Z" - }, - "end": { - "$date": "2021-05-25T04:18:13.000Z" - }, - "events": [ - { - "uuid": "aa279313-45f2-43ed-b629-a9a71756ec2d", - "start": { - "$date": "2021-05-25T04:15:00.000Z" - }, - "end": { - "$date": "2021-05-25T04:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b663b3e-16e9-4d49-be46-9b202dba0102", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T04:15:01.000Z" - }, - "end": { - "$date": "2021-05-25T04:16:51.000Z" - }, - "events": [ - { - "uuid": "743db5e0-b6ba-4d6b-94f5-f8b2c787db47", - "start": { - "$date": "2021-05-25T04:15:01.000Z" - }, - "end": { - "$date": "2021-05-25T04:16:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e058b0f4-a373-46de-a203-1a481d578312", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-25T06:29:40.000Z" - }, - "end": { - "$date": "2021-05-25T06:32:12.000Z" - }, - "events": [ - { - "uuid": "1f2be8fc-6c61-4a5f-9729-3f7cc097b70e", - "start": { - "$date": "2021-05-25T06:29:40.000Z" - }, - "end": { - "$date": "2021-05-25T06:32:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fb9b5e2-3897-42d0-983f-8679da3040cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T04:59:35.000Z" - }, - "end": { - "$date": "2021-05-25T04:59:35.000Z" - }, - "events": [ - { - "uuid": "3fe7a549-3249-4a28-8e1f-98f98fec0b02", - "start": { - "$date": "2021-05-25T04:59:35.000Z" - }, - "end": { - "$date": "2021-05-25T04:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "41630a7b-7c9e-4e66-8e53-494f1073a3df", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-25T04:18:58.000Z" - }, - "end": { - "$date": "2021-05-25T05:44:25.000Z" - }, - "events": [ - { - "uuid": "058bb70b-9844-4f06-bb5c-885382432dfe", - "start": { - "$date": "2021-05-25T04:18:58.000Z" - }, - "end": { - "$date": "2021-05-25T05:44:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3744dc33-c134-46ae-996d-4657cf3e7b45", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-25T04:41:30.000Z" - }, - "end": { - "$date": "2021-05-25T07:27:23.000Z" - }, - "events": [ - { - "uuid": "3cf9edfd-6717-4b18-9640-c63944455e5c", - "start": { - "$date": "2021-05-25T04:41:30.000Z" - }, - "end": { - "$date": "2021-05-25T07:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "59627001-b654-42b1-b070-1e6f8e4fb6ad", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-25T04:43:43.000Z" - }, - "end": { - "$date": "2021-05-25T04:54:20.000Z" - }, - "events": [ - { - "uuid": "9c684bd4-6631-451a-b245-c10a87e30397", - "start": { - "$date": "2021-05-25T04:43:43.000Z" - }, - "end": { - "$date": "2021-05-25T04:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "585dfb3b-6c45-4ca5-b11d-381a2a70e816", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T05:05:47.000Z" - }, - "end": { - "$date": "2021-05-25T05:44:12.000Z" - }, - "events": [ - { - "uuid": "d04ffb30-8e9f-49cb-acea-6ef386136927", - "start": { - "$date": "2021-05-25T05:05:47.000Z" - }, - "end": { - "$date": "2021-05-25T05:44:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "693811e4-6482-41d5-9f60-5499e9fe7aea", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-25T05:12:45.000Z" - }, - "end": { - "$date": "2021-05-25T05:36:13.000Z" - }, - "events": [ - { - "uuid": "9b7eb09b-b1dc-43bc-86ff-6e8380f171db", - "start": { - "$date": "2021-05-25T05:12:45.000Z" - }, - "end": { - "$date": "2021-05-25T05:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4660144-1844-4441-8711-78c0199a4f1f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T05:50:14.000Z" - }, - "end": { - "$date": "2021-05-25T06:30:43.000Z" - }, - "events": [ - { - "uuid": "a4e89e94-f47a-435e-af2c-eceb71ef4468", - "start": { - "$date": "2021-05-25T05:50:14.000Z" - }, - "end": { - "$date": "2021-05-25T06:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5246a565-2bf6-4099-8f59-49b7c6e4bcf9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T06:04:46.000Z" - }, - "end": { - "$date": "2021-05-25T16:26:52.000Z" - }, - "events": [ - { - "uuid": "9c5a21be-ea23-4140-9bd0-618edf05ba5b", - "start": { - "$date": "2021-05-25T06:04:46.000Z" - }, - "end": { - "$date": "2021-05-25T06:16:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d438571c-fd89-407e-965a-be89deb52db4", - "start": { - "$date": "2021-05-25T06:16:46.000Z" - }, - "end": { - "$date": "2021-05-25T15:16:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d580435-cce5-47bc-aa33-de533184f416", - "start": { - "$date": "2021-05-25T15:16:46.000Z" - }, - "end": { - "$date": "2021-05-25T15:18:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63ce21c9-4da5-4f0d-8bd8-c34bf2ce5477", - "start": { - "$date": "2021-05-25T15:18:46.000Z" - }, - "end": { - "$date": "2021-05-25T15:33:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a064ef4f-7012-4c6f-b8a7-6b81f0cdfc6c", - "start": { - "$date": "2021-05-25T15:33:46.000Z" - }, - "end": { - "$date": "2021-05-25T15:35:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9faf804-d8ef-48b5-b040-22089565e37d", - "start": { - "$date": "2021-05-25T15:35:46.000Z" - }, - "end": { - "$date": "2021-05-25T15:43:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e1cf9629-871c-45c7-97ca-d827b4728dd6", - "start": { - "$date": "2021-05-25T15:43:46.000Z" - }, - "end": { - "$date": "2021-05-25T15:53:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b14c27a-743d-47ed-925f-1b4f0bda9f55", - "start": { - "$date": "2021-05-25T15:53:46.000Z" - }, - "end": { - "$date": "2021-05-25T16:02:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f407fbdf-6a50-4010-a33d-bd2063b55922", - "start": { - "$date": "2021-05-25T16:02:46.000Z" - }, - "end": { - "$date": "2021-05-25T16:26:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "607b90fe-70a6-46c3-948c-0078bb9bd8a0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-25T12:07:10.000Z" - }, - "end": { - "$date": "2021-05-25T13:09:36.000Z" - }, - "events": [ - { - "uuid": "33d19f36-2adf-4520-987a-a82ac51cf7ce", - "start": { - "$date": "2021-05-25T12:07:10.000Z" - }, - "end": { - "$date": "2021-05-25T13:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "d3ba17fd-badb-43b6-89d6-facdd161d879", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-25T14:12:30.000Z" - }, - "end": { - "$date": "2021-05-25T15:49:45.000Z" - }, - "events": [ - { - "uuid": "5ff2fef8-199e-416d-99fd-2cfb6750d4ea", - "start": { - "$date": "2021-05-25T14:12:30.000Z" - }, - "end": { - "$date": "2021-05-25T15:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "896dd646-08e9-49a2-a61c-680a174bb604", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-05-25T21:25:31.000Z" - }, - "end": { - "$date": "2021-05-25T21:25:36.000Z" - }, - "events": [ - { - "uuid": "3c1ac7d6-1dba-43b2-879f-7225ead4bde2", - "start": { - "$date": "2021-05-25T21:25:31.000Z" - }, - "end": { - "$date": "2021-05-26T01:03:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed939810-bc6e-4a44-a72a-0ade9b279575", - "start": { - "$date": "2021-05-26T01:03:31.000Z" - }, - "end": { - "$date": "2021-05-26T01:05:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f39c1be4-85d7-4631-849b-846ce42172e2", - "start": { - "$date": "2021-05-26T01:05:31.000Z" - }, - "end": { - "$date": "2021-05-26T01:15:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b0ee3bc-6c10-4d90-9eac-fe7f40839f87", - "start": { - "$date": "2021-05-26T01:15:31.000Z" - }, - "end": { - "$date": "2021-05-26T01:46:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f5bb4d53-b472-4eab-affc-071d6807ad75", - "start": { - "$date": "2021-05-26T01:46:31.000Z" - }, - "end": { - "$date": "2021-05-25T21:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "763d35c1-5053-453a-8e42-67fb382eb6c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-25T16:10:46.000Z" - }, - "end": { - "$date": "2021-05-25T16:13:08.000Z" - }, - "events": [ - { - "uuid": "d5fe7a17-9dfd-42a6-9c16-5d48604db99d", - "start": { - "$date": "2021-05-25T16:10:46.000Z" - }, - "end": { - "$date": "2021-05-25T16:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "42c02ba7-6a5d-4be8-8c48-beed6c91cac7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T16:27:05.000Z" - }, - "end": { - "$date": "2021-05-25T17:50:19.000Z" - }, - "events": [ - { - "uuid": "132503d5-9aab-4199-b8e0-8bd6d9ba9ae2", - "start": { - "$date": "2021-05-25T16:27:05.000Z" - }, - "end": { - "$date": "2021-05-25T17:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2c30312-59ec-4526-bcfb-26645fbe8d22", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T17:59:04.000Z" - }, - "end": { - "$date": "2021-05-25T18:34:43.000Z" - }, - "events": [ - { - "uuid": "a119a1a4-7da4-4142-a5db-2034fad84cf1", - "start": { - "$date": "2021-05-25T17:59:04.000Z" - }, - "end": { - "$date": "2021-05-25T18:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "38fece4e-2b8c-406a-a061-0b6e6d1d13e7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-25T17:53:51.000Z" - }, - "end": { - "$date": "2021-05-25T20:48:41.000Z" - }, - "events": [ - { - "uuid": "fdd1104c-81cd-4081-8852-850b6b5db3e7", - "start": { - "$date": "2021-05-25T17:53:51.000Z" - }, - "end": { - "$date": "2021-05-25T17:57:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5e7b199-fd68-4bee-b648-94f07e6cef19", - "start": { - "$date": "2021-05-25T17:57:51.000Z" - }, - "end": { - "$date": "2021-05-25T18:06:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b4c709d-2111-42e1-9197-ffc6db3ac88c", - "start": { - "$date": "2021-05-25T18:06:51.000Z" - }, - "end": { - "$date": "2021-05-25T18:09:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45fd60b3-719f-4bef-acfb-84ed14b64fba", - "start": { - "$date": "2021-05-25T18:09:51.000Z" - }, - "end": { - "$date": "2021-05-25T18:21:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1efd53f0-1b85-4793-a964-bcfef3d56859", - "start": { - "$date": "2021-05-25T18:21:51.000Z" - }, - "end": { - "$date": "2021-05-25T18:23:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aaa63ea3-c9f9-4c8d-9408-57e2311df45d", - "start": { - "$date": "2021-05-25T18:23:51.000Z" - }, - "end": { - "$date": "2021-05-25T18:46:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96aae52d-1220-458b-bdaa-7565216d9ae1", - "start": { - "$date": "2021-05-25T18:46:51.000Z" - }, - "end": { - "$date": "2021-05-25T18:49:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d048ffc9-e5fc-4e98-a2c7-ebb1e60f4acb", - "start": { - "$date": "2021-05-25T18:49:51.000Z" - }, - "end": { - "$date": "2021-05-25T19:28:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2731acf7-03e1-4669-a90a-5c86f7f6f34d", - "start": { - "$date": "2021-05-25T19:28:51.000Z" - }, - "end": { - "$date": "2021-05-25T19:43:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc744718-d4da-4db1-9b3d-b35a8b833d29", - "start": { - "$date": "2021-05-25T19:43:51.000Z" - }, - "end": { - "$date": "2021-05-25T19:48:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d177d62f-7614-40ea-ae17-2b309cc5fc2d", - "start": { - "$date": "2021-05-25T19:48:51.000Z" - }, - "end": { - "$date": "2021-05-25T19:52:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de17a631-7066-41ec-b1d8-802fb79fec16", - "start": { - "$date": "2021-05-25T19:52:51.000Z" - }, - "end": { - "$date": "2021-05-25T20:48:41.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92323d62-f203-479b-9795-0547be3778f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T18:34:26.000Z" - }, - "end": { - "$date": "2021-05-25T18:39:06.000Z" - }, - "events": [ - { - "uuid": "2c544ac7-b469-4ded-bbcb-0c3d84f50ced", - "start": { - "$date": "2021-05-25T18:34:26.000Z" - }, - "end": { - "$date": "2021-05-25T18:39:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "331b763f-c62a-4391-9f48-4938240f9086", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-25T18:47:56.000Z" - }, - "end": { - "$date": "2021-05-25T19:30:17.000Z" - }, - "events": [ - { - "uuid": "a7473969-56cf-4f60-ba4a-7352d9305330", - "start": { - "$date": "2021-05-25T18:47:56.000Z" - }, - "end": { - "$date": "2021-05-25T19:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7efba39-c3e8-4102-9e59-89978aab1f09", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T18:44:54.000Z" - }, - "end": { - "$date": "2021-05-25T19:30:18.000Z" - }, - "events": [ - { - "uuid": "f9afe7ad-76c1-4729-bd17-9daa0c8bbf86", - "start": { - "$date": "2021-05-25T18:44:54.000Z" - }, - "end": { - "$date": "2021-05-25T19:30:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75106d95-cb56-41b0-a598-6bcc72af3065", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T19:36:51.000Z" - }, - "end": { - "$date": "2021-05-25T19:39:22.000Z" - }, - "events": [ - { - "uuid": "e704163f-3690-45fe-aeef-5e6a0d36ac50", - "start": { - "$date": "2021-05-25T19:36:51.000Z" - }, - "end": { - "$date": "2021-05-25T19:39:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a080b7b5-d695-4307-80d8-dc9fa457266e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-25T19:05:09.000Z" - }, - "end": { - "$date": "2021-05-25T20:38:56.000Z" - }, - "events": [ - { - "uuid": "64848209-6270-48d6-a1a8-99660b3174c6", - "start": { - "$date": "2021-05-25T19:05:09.000Z" - }, - "end": { - "$date": "2021-05-25T20:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47aa4c53-909f-4326-8e66-e2ec591d95bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T19:35:26.000Z" - }, - "end": { - "$date": "2021-05-25T20:09:44.000Z" - }, - "events": [ - { - "uuid": "66cc26aa-2ee2-402c-9fde-6aac595b952d", - "start": { - "$date": "2021-05-25T19:35:26.000Z" - }, - "end": { - "$date": "2021-05-25T20:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "33e8f434-a15c-45b7-bc74-7c60048bc084", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-25T19:46:47.000Z" - }, - "end": { - "$date": "2021-05-25T21:30:01.000Z" - }, - "events": [ - { - "uuid": "0806d728-2f87-4e2e-9fc1-f4de605a58cc", - "start": { - "$date": "2021-05-25T19:46:47.000Z" - }, - "end": { - "$date": "2021-05-25T21:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6959d1f-c15b-4e88-ad3c-75191d51981a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T20:16:53.000Z" - }, - "end": { - "$date": "2021-05-25T20:26:53.000Z" - }, - "events": [ - { - "uuid": "1a3b2cbe-9883-4235-851a-85d03c49e63c", - "start": { - "$date": "2021-05-25T20:16:53.000Z" - }, - "end": { - "$date": "2021-05-25T20:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e244590f-6327-4152-b604-d38c941958b1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T20:28:29.000Z" - }, - "end": { - "$date": "2021-05-25T21:04:07.000Z" - }, - "events": [ - { - "uuid": "f01e3246-06f3-4d9d-bbdd-1b107cf642f0", - "start": { - "$date": "2021-05-25T20:28:29.000Z" - }, - "end": { - "$date": "2021-05-25T21:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0c41960-4530-4791-9596-e8fd941acdc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T20:52:27.000Z" - }, - "end": { - "$date": "2021-05-25T20:52:24.000Z" - }, - "events": [ - { - "uuid": "5e8c7c54-d74a-4da9-bb96-028a73217dfc", - "start": { - "$date": "2021-05-25T20:52:27.000Z" - }, - "end": { - "$date": "2021-05-25T20:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a79be2d2-cf69-41fe-8a31-f19fbd9c9d49", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-25T20:51:12.000Z" - }, - "end": { - "$date": "2021-05-26T00:05:16.000Z" - }, - "events": [ - { - "uuid": "9533b653-ffd3-4c67-ac10-9df04a57015c", - "start": { - "$date": "2021-05-25T20:51:12.000Z" - }, - "end": { - "$date": "2021-05-25T20:53:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a896127-df37-4cc9-8948-a10e65c01983", - "start": { - "$date": "2021-05-25T20:53:12.000Z" - }, - "end": { - "$date": "2021-05-25T21:21:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b3ffc2be-60e7-4113-97d4-202f5fe6a4e7", - "start": { - "$date": "2021-05-25T21:21:12.000Z" - }, - "end": { - "$date": "2021-05-25T21:23:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "11cae076-5275-4760-a8de-0e0303416c67", - "start": { - "$date": "2021-05-25T21:23:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:05:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf203b68-c883-4a39-8741-7c01e47e4519", - "start": { - "$date": "2021-05-25T22:05:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:08:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56b1c627-fa0b-4e76-b103-1e40af03c669", - "start": { - "$date": "2021-05-25T22:08:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:12:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e56d8bf4-a984-4f23-bc30-bf800e30dacc", - "start": { - "$date": "2021-05-25T22:12:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:16:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8026c6d8-4703-49f7-9084-9390a4c4feed", - "start": { - "$date": "2021-05-25T22:16:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:17:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eddd50b1-db51-4043-a144-bf381edde453", - "start": { - "$date": "2021-05-25T22:17:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:18:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fdfb9de6-678a-4cfa-8ea6-7d8920487dfa", - "start": { - "$date": "2021-05-25T22:18:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:29:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6a5e460-2ef5-4431-b28e-bc0d86e1516f", - "start": { - "$date": "2021-05-25T22:29:12.000Z" - }, - "end": { - "$date": "2021-05-25T22:32:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b67a6be-2168-4b36-9789-c0785b882f05", - "start": { - "$date": "2021-05-25T22:32:12.000Z" - }, - "end": { - "$date": "2021-05-25T23:15:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ac11f534-6782-4c97-a485-064874101914", - "start": { - "$date": "2021-05-25T23:15:12.000Z" - }, - "end": { - "$date": "2021-05-25T23:17:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "173b7e6c-5acd-40ff-add4-9f1e3fa93c76", - "start": { - "$date": "2021-05-25T23:17:12.000Z" - }, - "end": { - "$date": "2021-05-25T23:24:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79897f31-1214-4843-bc89-5a00f203c509", - "start": { - "$date": "2021-05-25T23:24:12.000Z" - }, - "end": { - "$date": "2021-05-25T23:26:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc79864a-1e83-49ce-a136-885bf9c9a0d5", - "start": { - "$date": "2021-05-25T23:26:12.000Z" - }, - "end": { - "$date": "2021-05-25T23:50:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b16ff933-c391-41a8-84a3-ada9ce82ab34", - "start": { - "$date": "2021-05-25T23:50:12.000Z" - }, - "end": { - "$date": "2021-05-25T23:52:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "65740ecf-fcde-4b2b-84a8-797e4b0da98e", - "start": { - "$date": "2021-05-25T23:52:12.000Z" - }, - "end": { - "$date": "2021-05-26T00:05:16.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "37d33bd6-2b7f-49c1-96a7-876b5bfbdcb0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-25T21:36:00.000Z" - }, - "end": { - "$date": "2021-05-26T00:18:10.000Z" - }, - "events": [ - { - "uuid": "b9e406d5-4368-4bb9-8da0-1c3f920eeb49", - "start": { - "$date": "2021-05-25T21:36:00.000Z" - }, - "end": { - "$date": "2021-05-26T00:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f5a46833-866e-465d-9720-8c86688044e7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-25T21:48:10.000Z" - }, - "end": { - "$date": "2021-05-26T07:42:48.000Z" - }, - "events": [ - { - "uuid": "8563f7ca-3844-4c57-99e9-ed18aa27bd78", - "start": { - "$date": "2021-05-25T21:48:10.000Z" - }, - "end": { - "$date": "2021-05-26T01:35:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "153cb96d-30f7-4dc8-a114-f6e5c2a29b59", - "start": { - "$date": "2021-05-26T01:35:10.000Z" - }, - "end": { - "$date": "2021-05-26T01:40:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed2c7177-7728-440d-95c6-ab8111380983", - "start": { - "$date": "2021-05-26T01:40:10.000Z" - }, - "end": { - "$date": "2021-05-26T01:50:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64f99826-46c4-4ef0-81c4-d30ee63d75a1", - "start": { - "$date": "2021-05-26T01:50:10.000Z" - }, - "end": { - "$date": "2021-05-26T02:01:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf3ce096-3ec1-4edd-8c32-9809f70160f9", - "start": { - "$date": "2021-05-26T02:01:10.000Z" - }, - "end": { - "$date": "2021-05-26T07:42:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "56811b48-17e6-46df-be0c-ba6f9824d484", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-25T21:57:22.000Z" - }, - "end": { - "$date": "2021-05-25T23:27:47.000Z" - }, - "events": [ - { - "uuid": "f59f4b2a-394b-4295-9204-ffb8ca1665d2", - "start": { - "$date": "2021-05-25T21:57:22.000Z" - }, - "end": { - "$date": "2021-05-25T23:27:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54d30937-018c-4d26-84df-47ad47e64bcc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T22:44:39.000Z" - }, - "end": { - "$date": "2021-05-25T22:44:36.000Z" - }, - "events": [ - { - "uuid": "c0667675-b59f-4d64-ac1f-eda633177441", - "start": { - "$date": "2021-05-25T22:44:39.000Z" - }, - "end": { - "$date": "2021-05-25T22:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1b9484d-d75e-4e46-88d9-25e4552fe6bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T22:47:04.000Z" - }, - "end": { - "$date": "2021-05-25T23:11:50.000Z" - }, - "events": [ - { - "uuid": "8cf69551-64e7-45cc-8b30-d30646653eb9", - "start": { - "$date": "2021-05-25T22:47:04.000Z" - }, - "end": { - "$date": "2021-05-25T23:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51b9a272-e916-45eb-b0dc-8f767648f2f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-25T23:20:16.000Z" - }, - "end": { - "$date": "2021-05-25T23:48:32.000Z" - }, - "events": [ - { - "uuid": "3d321649-f023-4cb9-9a37-3e91be98897b", - "start": { - "$date": "2021-05-25T23:20:16.000Z" - }, - "end": { - "$date": "2021-05-25T23:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cb40cd1-d0dc-4f24-9120-5ce566d24c0d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T23:18:30.000Z" - }, - "end": { - "$date": "2021-05-25T23:48:34.000Z" - }, - "events": [ - { - "uuid": "566fb188-6a16-483c-b31c-cbf6250b1080", - "start": { - "$date": "2021-05-25T23:18:30.000Z" - }, - "end": { - "$date": "2021-05-25T23:48:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5546f62d-e2e7-4919-afa4-aac190adc7a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-25T23:26:45.000Z" - }, - "end": { - "$date": "2021-05-26T00:49:12.000Z" - }, - "events": [ - { - "uuid": "d7184417-7631-45f1-8847-921346ac0a9f", - "start": { - "$date": "2021-05-25T23:26:45.000Z" - }, - "end": { - "$date": "2021-05-25T23:37:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "21805233-117c-4ed1-a3a1-c57b9efbc343", - "start": { - "$date": "2021-05-25T23:37:45.000Z" - }, - "end": { - "$date": "2021-05-26T00:49:12.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a254e88-93c2-4681-ac03-6694dd47a6fc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-25T23:54:37.000Z" - }, - "end": { - "$date": "2021-05-26T00:20:42.000Z" - }, - "events": [ - { - "uuid": "a1c3a6f3-fabc-4d75-a8ad-2ebed2e42217", - "start": { - "$date": "2021-05-25T23:54:37.000Z" - }, - "end": { - "$date": "2021-05-26T00:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7eb9b2ca-97c4-4f8a-8274-17df70668d02", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-25T23:54:17.000Z" - }, - "end": { - "$date": "2021-05-26T00:20:53.000Z" - }, - "events": [ - { - "uuid": "75d05917-0e81-46ed-a255-a347df94f7f2", - "start": { - "$date": "2021-05-25T23:54:17.000Z" - }, - "end": { - "$date": "2021-05-26T00:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f90c2559-f5aa-45b7-95c1-ade6a62000b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-26T00:26:38.000Z" - }, - "end": { - "$date": "2021-05-26T01:02:19.000Z" - }, - "events": [ - { - "uuid": "c3c8411a-1688-4bc7-a996-8463da2e587c", - "start": { - "$date": "2021-05-26T00:26:38.000Z" - }, - "end": { - "$date": "2021-05-26T01:02:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "091d9a04-a3d3-4100-a157-d838c60eb565", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T00:26:45.000Z" - }, - "end": { - "$date": "2021-05-26T01:02:26.000Z" - }, - "events": [ - { - "uuid": "a8978b51-00dc-436e-937e-02f4ce4d20c3", - "start": { - "$date": "2021-05-26T00:26:45.000Z" - }, - "end": { - "$date": "2021-05-26T01:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8db29cdc-2aba-4606-9d5b-35ce755a5e5d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-26T01:00:40.000Z" - }, - "end": { - "$date": "2021-05-26T01:11:21.000Z" - }, - "events": [ - { - "uuid": "5a669dfe-9380-4367-afc0-3aaebdf0e959", - "start": { - "$date": "2021-05-26T01:00:40.000Z" - }, - "end": { - "$date": "2021-05-26T01:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0589acaa-37f9-4a88-92d6-007a28e70706", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-05-26T01:11:39.000Z" - }, - "end": { - "$date": "2021-05-26T01:42:15.000Z" - }, - "events": [ - { - "uuid": "36e36940-88af-4027-bf5b-09cc366c31b8", - "start": { - "$date": "2021-05-26T01:11:39.000Z" - }, - "end": { - "$date": "2021-05-26T01:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "581372ab-1397-4a73-9c51-bc8816b944e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T01:11:14.000Z" - }, - "end": { - "$date": "2021-05-26T01:42:21.000Z" - }, - "events": [ - { - "uuid": "1f7d46da-9fb9-4064-b171-85e6d500d708", - "start": { - "$date": "2021-05-26T01:11:14.000Z" - }, - "end": { - "$date": "2021-05-26T01:42:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7dfc2456-71c3-403b-ada2-8b381919137c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T01:17:08.000Z" - }, - "end": { - "$date": "2021-05-26T01:19:53.000Z" - }, - "events": [ - { - "uuid": "7053a6e5-fb26-4dae-be3f-8cd5f0c766aa", - "start": { - "$date": "2021-05-26T01:17:08.000Z" - }, - "end": { - "$date": "2021-05-26T01:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d0567f35-d95a-4abc-b959-e48ddbf929db", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-26T05:15:48.000Z" - }, - "end": { - "$date": "2021-05-26T16:08:17.000Z" - }, - "events": [ - { - "uuid": "ddcf037a-fc81-47be-9555-c6e38977b2fc", - "start": { - "$date": "2021-05-26T05:15:48.000Z" - }, - "end": { - "$date": "2021-05-26T06:18:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86648490-3e3c-4e26-a2c3-853194eeee98", - "start": { - "$date": "2021-05-26T06:18:48.000Z" - }, - "end": { - "$date": "2021-05-26T06:24:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4c111ac3-a3f6-4e2b-b565-079da6575822", - "start": { - "$date": "2021-05-26T06:24:48.000Z" - }, - "end": { - "$date": "2021-05-26T09:44:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d3ebc45-f70d-4abe-ab6c-7526d961ee1b", - "start": { - "$date": "2021-05-26T09:44:48.000Z" - }, - "end": { - "$date": "2021-05-26T09:57:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4dafad14-9680-4766-812c-808bce291dd8", - "start": { - "$date": "2021-05-26T09:57:48.000Z" - }, - "end": { - "$date": "2021-05-26T10:16:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba588910-f8c7-4bf7-929d-d82bd552b17b", - "start": { - "$date": "2021-05-26T10:16:48.000Z" - }, - "end": { - "$date": "2021-05-26T10:17:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5902819a-99eb-446d-8597-55dac4a8d51c", - "start": { - "$date": "2021-05-26T10:17:48.000Z" - }, - "end": { - "$date": "2021-05-26T10:27:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd5426e5-c104-4d75-81b4-1f26b11083b0", - "start": { - "$date": "2021-05-26T10:27:48.000Z" - }, - "end": { - "$date": "2021-05-26T19:05:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79a08c22-5d32-4a1e-a852-85b6252919cf", - "start": { - "$date": "2021-05-26T19:05:48.000Z" - }, - "end": { - "$date": "2021-05-26T19:09:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "613e1c4d-fdc1-4140-b92e-e429e0b2d52a", - "start": { - "$date": "2021-05-26T19:09:48.000Z" - }, - "end": { - "$date": "2021-05-26T19:15:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "24ad60fe-ca4e-4e37-baed-8fc673697df8", - "start": { - "$date": "2021-05-26T19:15:48.000Z" - }, - "end": { - "$date": "2021-05-26T19:18:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6708b91a-218d-4aa6-9561-e6a51f503a31", - "start": { - "$date": "2021-05-26T19:18:48.000Z" - }, - "end": { - "$date": "2021-05-26T19:51:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ede170dd-5985-4a70-8994-fff383db1019", - "start": { - "$date": "2021-05-26T19:51:48.000Z" - }, - "end": { - "$date": "2021-05-26T16:08:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b9f4b403-c4b4-4c22-bbae-05899cfab600", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T01:20:38.000Z" - }, - "end": { - "$date": "2021-05-26T03:36:38.000Z" - }, - "events": [ - { - "uuid": "32dab34e-c7b5-4cc8-8013-26c9d33296d1", - "start": { - "$date": "2021-05-26T01:20:38.000Z" - }, - "end": { - "$date": "2021-05-26T03:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "98cb7d2c-e2e3-4965-9c9c-52e3d696a9c7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-26T01:54:11.000Z" - }, - "end": { - "$date": "2021-05-26T02:26:31.000Z" - }, - "events": [ - { - "uuid": "37fb770b-5898-4f10-bcac-af0b47cc579a", - "start": { - "$date": "2021-05-26T01:54:11.000Z" - }, - "end": { - "$date": "2021-05-26T02:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "beeb8aa0-cefa-456b-9042-7420c8b6bb87", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-26T02:06:09.000Z" - }, - "end": { - "$date": "2021-05-26T03:20:41.000Z" - }, - "events": [ - { - "uuid": "8a2526b3-dd7b-42af-a915-f706bf5bed2e", - "start": { - "$date": "2021-05-26T02:06:09.000Z" - }, - "end": { - "$date": "2021-05-26T03:20:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "855c4e40-24e6-4f9b-9cce-2e679d3b2382", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-26T03:33:21.000Z" - }, - "end": { - "$date": "2021-05-26T05:33:54.000Z" - }, - "events": [ - { - "uuid": "42c6aeb3-fceb-451b-8bbb-12aae7f7dd1f", - "start": { - "$date": "2021-05-26T03:33:21.000Z" - }, - "end": { - "$date": "2021-05-26T05:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79b3d549-dfb5-40aa-8a31-1a32e8b962df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T03:39:48.000Z" - }, - "end": { - "$date": "2021-05-26T04:07:55.000Z" - }, - "events": [ - { - "uuid": "0a55ba87-c5b7-4717-8324-230e73847025", - "start": { - "$date": "2021-05-26T03:39:48.000Z" - }, - "end": { - "$date": "2021-05-26T04:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "78a0f67d-dd02-4c82-9eac-84329dcca822", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T03:38:46.000Z" - }, - "end": { - "$date": "2021-05-26T05:34:09.000Z" - }, - "events": [ - { - "uuid": "22937df3-0445-4fdf-b95d-cd89ad07e299", - "start": { - "$date": "2021-05-26T03:38:46.000Z" - }, - "end": { - "$date": "2021-05-26T05:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7531d245-66fe-414a-80cd-0583943ec031", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-26T03:45:25.000Z" - }, - "end": { - "$date": "2021-05-26T04:04:51.000Z" - }, - "events": [ - { - "uuid": "eb5ec32e-58ec-4eb9-8c00-bea7f5c9a451", - "start": { - "$date": "2021-05-26T03:45:25.000Z" - }, - "end": { - "$date": "2021-05-26T04:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2a68ee97-7eeb-479c-9522-ad9d7dae3a25", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-26T03:45:58.000Z" - }, - "end": { - "$date": "2021-05-26T04:04:23.000Z" - }, - "events": [ - { - "uuid": "7ba39cde-6e9e-4f88-9c01-a638b37e3c85", - "start": { - "$date": "2021-05-26T03:45:58.000Z" - }, - "end": { - "$date": "2021-05-26T04:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0337470-ad42-41d8-baa4-80259c9345c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T04:14:25.000Z" - }, - "end": { - "$date": "2021-05-26T04:44:00.000Z" - }, - "events": [ - { - "uuid": "874d69af-c7d2-425a-a44d-5e2f2fcc6871", - "start": { - "$date": "2021-05-26T04:14:25.000Z" - }, - "end": { - "$date": "2021-05-26T04:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c46af244-5303-4173-ac77-1b67f49defc2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-26T04:09:47.000Z" - }, - "end": { - "$date": "2021-05-26T04:58:23.000Z" - }, - "events": [ - { - "uuid": "d5f54eb9-fa4f-496f-94f8-5f795496c851", - "start": { - "$date": "2021-05-26T04:09:47.000Z" - }, - "end": { - "$date": "2021-05-26T04:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "297c702a-e913-429a-a3a3-2447b6473b4b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-26T04:22:48.000Z" - }, - "end": { - "$date": "2021-05-26T04:55:43.000Z" - }, - "events": [ - { - "uuid": "f75bce70-6f59-46f8-8319-2c7f2c48c0f1", - "start": { - "$date": "2021-05-26T04:22:48.000Z" - }, - "end": { - "$date": "2021-05-26T04:55:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4955ad0-bdab-4044-b719-9a30edb27f38", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T04:50:21.000Z" - }, - "end": { - "$date": "2021-05-26T05:14:21.000Z" - }, - "events": [ - { - "uuid": "2989f5b4-cd9a-4d6e-94f5-10578da9508c", - "start": { - "$date": "2021-05-26T04:50:21.000Z" - }, - "end": { - "$date": "2021-05-26T05:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91ccf43f-199f-4f4b-9eb2-55e8ce372013", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-26T04:59:47.000Z" - }, - "end": { - "$date": "2021-05-26T05:31:48.000Z" - }, - "events": [ - { - "uuid": "052154fb-5f1b-42c8-89b5-6276a672ca7c", - "start": { - "$date": "2021-05-26T04:59:47.000Z" - }, - "end": { - "$date": "2021-05-26T05:31:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "c89b0e67-5baa-46af-95c5-796c59748634", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-26T04:58:33.000Z" - }, - "end": { - "$date": "2021-05-26T06:10:40.000Z" - }, - "events": [ - { - "uuid": "51c0d314-398c-456f-81b2-7af8c4ab81a0", - "start": { - "$date": "2021-05-26T04:58:33.000Z" - }, - "end": { - "$date": "2021-05-26T06:10:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d39fb38-10db-4740-a68b-e25437fbe22f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T05:19:28.000Z" - }, - "end": { - "$date": "2021-05-26T05:52:42.000Z" - }, - "events": [ - { - "uuid": "77d00111-39ab-47f0-b300-6e0a62b020c6", - "start": { - "$date": "2021-05-26T05:19:28.000Z" - }, - "end": { - "$date": "2021-05-26T05:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64be62d5-c5c1-4695-be07-4c546627484a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-05-26T05:44:52.000Z" - }, - "end": { - "$date": "2021-05-26T06:09:39.000Z" - }, - "events": [ - { - "uuid": "042f1e53-c124-427d-8f7f-dd6517acf469", - "start": { - "$date": "2021-05-26T05:44:52.000Z" - }, - "end": { - "$date": "2021-05-26T06:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2732fbeb-97da-41f2-9396-81ad80a60c86", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-26T05:48:14.000Z" - }, - "end": { - "$date": "2021-05-26T06:02:54.000Z" - }, - "events": [ - { - "uuid": "407a9b89-a30a-4b0c-b36b-d4262d29b795", - "start": { - "$date": "2021-05-26T05:48:14.000Z" - }, - "end": { - "$date": "2021-05-26T06:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "74e147ab-adb7-402c-b3d4-290e325b321d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-26T06:11:26.000Z" - }, - "end": { - "$date": "2021-05-26T06:31:31.000Z" - }, - "events": [ - { - "uuid": "4c97ed41-c19a-4bbc-a940-5a480be1d176", - "start": { - "$date": "2021-05-26T06:11:26.000Z" - }, - "end": { - "$date": "2021-05-26T06:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "91e7e110-addb-4e01-9135-8ae263355afb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-26T06:43:33.000Z" - }, - "end": { - "$date": "2021-05-26T07:39:27.000Z" - }, - "events": [ - { - "uuid": "c9fcb615-7cbe-46fb-9b33-1936568f1500", - "start": { - "$date": "2021-05-26T06:43:33.000Z" - }, - "end": { - "$date": "2021-05-26T07:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3b6ea51a-bc04-4c7c-9d67-f329d8668b33", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-26T15:01:19.000Z" - }, - "end": { - "$date": "2021-05-26T16:05:42.000Z" - }, - "events": [ - { - "uuid": "36343416-2eb1-4c06-83b8-7d2fb6c7dab5", - "start": { - "$date": "2021-05-26T15:01:19.000Z" - }, - "end": { - "$date": "2021-05-26T16:05:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "5fedc47d-f790-4a74-8a3a-7951d03d8316", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-26T16:06:31.000Z" - }, - "end": { - "$date": "2021-05-26T16:09:53.000Z" - }, - "events": [ - { - "uuid": "20df4141-a960-43e4-a88e-7f677f90ae72", - "start": { - "$date": "2021-05-26T16:06:31.000Z" - }, - "end": { - "$date": "2021-05-26T16:09:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bd09fa2b-da86-48c0-bc42-5fb025308f57", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-26T16:08:28.000Z" - }, - "end": { - "$date": "2021-05-26T16:13:19.000Z" - }, - "events": [ - { - "uuid": "c6c87490-0117-46a5-ad6b-8ded3036c895", - "start": { - "$date": "2021-05-26T16:08:28.000Z" - }, - "end": { - "$date": "2021-05-26T16:13:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "77eeba88-88f0-4a12-b56e-3f1637e39167", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-26T16:13:24.000Z" - }, - "end": { - "$date": "2021-05-26T16:29:58.000Z" - }, - "events": [ - { - "uuid": "089daa24-a994-4775-bdff-eabb8a588e14", - "start": { - "$date": "2021-05-26T16:13:24.000Z" - }, - "end": { - "$date": "2021-05-26T16:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5129dcf-3a75-4c3f-83f4-1c093f2f7a73", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-26T16:33:08.000Z" - }, - "end": { - "$date": "2021-05-26T17:07:42.000Z" - }, - "events": [ - { - "uuid": "c395ef01-eaf5-412f-a251-ccd4189cd897", - "start": { - "$date": "2021-05-26T16:33:08.000Z" - }, - "end": { - "$date": "2021-05-26T17:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6d519d09-99f3-4e5e-b394-e3f24b04224a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T18:21:01.000Z" - }, - "end": { - "$date": "2021-05-26T18:23:27.000Z" - }, - "events": [ - { - "uuid": "c72863e3-0dc1-4913-9aed-6cd51e67eb88", - "start": { - "$date": "2021-05-26T18:21:01.000Z" - }, - "end": { - "$date": "2021-05-26T18:23:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7a19d11d-533d-4aad-b7d7-577023b33df7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T18:24:16.000Z" - }, - "end": { - "$date": "2021-05-26T20:00:35.000Z" - }, - "events": [ - { - "uuid": "c3243834-51e0-4275-a724-90fcd7ece83f", - "start": { - "$date": "2021-05-26T18:24:16.000Z" - }, - "end": { - "$date": "2021-05-26T18:38:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b96c1e5-1220-4ec8-ba02-6ce03e417bce", - "start": { - "$date": "2021-05-26T18:38:16.000Z" - }, - "end": { - "$date": "2021-05-26T18:49:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "770de985-5bec-41b4-91e0-f141f3440465", - "start": { - "$date": "2021-05-26T18:49:16.000Z" - }, - "end": { - "$date": "2021-05-26T18:51:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "134ef105-3d55-417f-bcd2-c181f2f6fa71", - "start": { - "$date": "2021-05-26T18:51:16.000Z" - }, - "end": { - "$date": "2021-05-26T18:56:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6bbb9a1a-6913-4fe1-bfbc-7e64bfd27bb0", - "start": { - "$date": "2021-05-26T18:56:16.000Z" - }, - "end": { - "$date": "2021-05-26T18:59:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5594f7ca-50dd-4185-bb69-9ea60536d714", - "start": { - "$date": "2021-05-26T18:59:16.000Z" - }, - "end": { - "$date": "2021-05-26T19:14:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54a42ba1-98d4-47d7-a198-e1669b5e7105", - "start": { - "$date": "2021-05-26T19:14:16.000Z" - }, - "end": { - "$date": "2021-05-26T19:16:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9fb35002-419d-49c4-b223-773e19f31280", - "start": { - "$date": "2021-05-26T19:16:16.000Z" - }, - "end": { - "$date": "2021-05-26T19:49:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1d48b06f-d2ce-4b1c-a9a4-50d5b4c75879", - "start": { - "$date": "2021-05-26T19:49:16.000Z" - }, - "end": { - "$date": "2021-05-26T19:56:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7cb290e3-67a2-4a24-8391-76168d563fec", - "start": { - "$date": "2021-05-26T19:56:16.000Z" - }, - "end": { - "$date": "2021-05-26T19:57:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e501f1ad-d586-419d-8367-e9f8c5fd7d21", - "start": { - "$date": "2021-05-26T19:57:16.000Z" - }, - "end": { - "$date": "2021-05-26T20:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "927d8b1e-6254-43c9-81ce-35436be22258", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-26T19:17:17.000Z" - }, - "end": { - "$date": "2021-05-26T19:50:56.000Z" - }, - "events": [ - { - "uuid": "e440aa6c-c46e-48d2-b26e-345fee5d30c6", - "start": { - "$date": "2021-05-26T19:17:17.000Z" - }, - "end": { - "$date": "2021-05-26T19:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbb9c3c8-3cf5-415c-a658-055714c54888", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T19:16:35.000Z" - }, - "end": { - "$date": "2021-05-26T19:50:59.000Z" - }, - "events": [ - { - "uuid": "94a74004-f354-416e-8464-e036c4d90d9e", - "start": { - "$date": "2021-05-26T19:16:35.000Z" - }, - "end": { - "$date": "2021-05-26T19:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd6ab583-a39b-40b1-b543-04c95129962f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-26T20:00:35.000Z" - }, - "end": { - "$date": "2021-05-26T20:29:04.000Z" - }, - "events": [ - { - "uuid": "44914128-a81c-45af-b6b5-7c3a3046c65a", - "start": { - "$date": "2021-05-26T20:00:35.000Z" - }, - "end": { - "$date": "2021-05-26T20:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ff4b5ac-7fb7-4dbf-ae79-955260392469", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T19:59:28.000Z" - }, - "end": { - "$date": "2021-05-26T20:29:13.000Z" - }, - "events": [ - { - "uuid": "951dd7d0-2161-4855-82c3-78138fff62e8", - "start": { - "$date": "2021-05-26T19:59:28.000Z" - }, - "end": { - "$date": "2021-05-26T20:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7d4b6995-8bfe-447e-a367-811b3d0568e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-26T20:01:14.000Z" - }, - "end": { - "$date": "2021-05-26T20:48:06.000Z" - }, - "events": [ - { - "uuid": "1cb66330-97d6-4b63-974c-fec4c69ed089", - "start": { - "$date": "2021-05-26T20:01:14.000Z" - }, - "end": { - "$date": "2021-05-26T20:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "31398703-e9f3-4a00-bed7-3bb05a21172e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T20:03:50.000Z" - }, - "end": { - "$date": "2021-05-26T20:47:22.000Z" - }, - "events": [ - { - "uuid": "9ee763ae-5f2c-4f14-8aba-ef88127f3c31", - "start": { - "$date": "2021-05-26T20:03:50.000Z" - }, - "end": { - "$date": "2021-05-26T20:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5fd06842-4973-46a4-b269-f5cf1ba6eb9c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-26T20:10:15.000Z" - }, - "end": { - "$date": "2021-05-27T07:27:00.000Z" - }, - "events": [ - { - "uuid": "a37a0833-1599-4d8a-857d-50b42fde0d91", - "start": { - "$date": "2021-05-26T20:10:15.000Z" - }, - "end": { - "$date": "2021-05-26T21:25:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "474d5cd1-dfeb-470d-9497-b833ba005562", - "start": { - "$date": "2021-05-26T21:25:15.000Z" - }, - "end": { - "$date": "2021-05-26T22:38:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "536dc6a0-17de-449b-ace0-51e6d9e0de63", - "start": { - "$date": "2021-05-26T22:38:15.000Z" - }, - "end": { - "$date": "2021-05-27T00:26:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d9a0998-2e39-4185-a4dc-2c09800cc55a", - "start": { - "$date": "2021-05-27T00:26:15.000Z" - }, - "end": { - "$date": "2021-05-27T00:30:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6eceb57d-3ef3-4324-8d44-59f922b852bb", - "start": { - "$date": "2021-05-27T00:30:15.000Z" - }, - "end": { - "$date": "2021-05-27T03:24:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8650bd9-15c1-4dfb-b6f6-70767d559e3b", - "start": { - "$date": "2021-05-27T03:24:15.000Z" - }, - "end": { - "$date": "2021-05-27T03:29:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c272cef7-1d54-4c34-9259-6d5fb8f5afe3", - "start": { - "$date": "2021-05-27T03:29:15.000Z" - }, - "end": { - "$date": "2021-05-27T03:39:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da7944b5-67d2-40be-8d25-0814b3155b29", - "start": { - "$date": "2021-05-27T03:39:15.000Z" - }, - "end": { - "$date": "2021-05-27T03:40:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e30bd09-4879-4c54-af40-47e81e198f31", - "start": { - "$date": "2021-05-27T03:40:15.000Z" - }, - "end": { - "$date": "2021-05-27T07:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cafe66a6-8dbb-4e21-80c1-ea441b67525a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-26T20:44:18.000Z" - }, - "end": { - "$date": "2021-05-26T21:02:56.000Z" - }, - "events": [ - { - "uuid": "624beddf-1cc5-495b-a397-fbeb618ad8d7", - "start": { - "$date": "2021-05-26T20:44:18.000Z" - }, - "end": { - "$date": "2021-05-26T21:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ca68f444-9845-483e-834f-2e9e0ee884c3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-26T20:29:57.000Z" - }, - "end": { - "$date": "2021-05-26T20:38:17.000Z" - }, - "events": [ - { - "uuid": "a9004981-ad04-48d3-8245-62d1993caf8e", - "start": { - "$date": "2021-05-26T20:29:57.000Z" - }, - "end": { - "$date": "2021-05-26T20:38:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d5051e3-f05f-41ce-a921-c72a4e81d721", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T20:44:27.000Z" - }, - "end": { - "$date": "2021-05-26T21:02:55.000Z" - }, - "events": [ - { - "uuid": "625c16e7-089e-40c5-87f4-b85fded02e3a", - "start": { - "$date": "2021-05-26T20:44:27.000Z" - }, - "end": { - "$date": "2021-05-26T21:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0d268d64-4211-4d45-897b-f0a7c226c82c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-26T20:51:02.000Z" - }, - "end": { - "$date": "2021-05-27T02:18:39.000Z" - }, - "events": [ - { - "uuid": "ad835934-a94b-479e-b96c-437f3f5dfa77", - "start": { - "$date": "2021-05-26T20:51:02.000Z" - }, - "end": { - "$date": "2021-05-26T21:50:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a8d31b3c-218b-4037-8093-a2fffcd151ef", - "start": { - "$date": "2021-05-26T21:50:02.000Z" - }, - "end": { - "$date": "2021-05-26T22:11:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc4b0697-e3ad-4eb6-aafa-914787eec3e4", - "start": { - "$date": "2021-05-26T22:11:02.000Z" - }, - "end": { - "$date": "2021-05-26T22:13:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "abeb9a33-71e4-48f5-b42b-7277a1e21f22", - "start": { - "$date": "2021-05-26T22:13:02.000Z" - }, - "end": { - "$date": "2021-05-26T22:16:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20e5bb11-fd22-427d-8121-68cb4d443819", - "start": { - "$date": "2021-05-26T22:16:02.000Z" - }, - "end": { - "$date": "2021-05-26T22:27:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b782b331-a9d8-4106-9173-d67b3b630b6a", - "start": { - "$date": "2021-05-26T22:27:02.000Z" - }, - "end": { - "$date": "2021-05-26T23:02:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59ac5737-a064-4a30-837f-8959b03f80e5", - "start": { - "$date": "2021-05-26T23:02:02.000Z" - }, - "end": { - "$date": "2021-05-26T23:04:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9efaca7-89f0-4f85-8314-1a97765d35d4", - "start": { - "$date": "2021-05-26T23:04:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:01:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a09e463b-7e04-453b-87b1-dc3ccc968e95", - "start": { - "$date": "2021-05-27T00:01:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:04:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82a591c6-fec1-487b-832d-8d72507b7fec", - "start": { - "$date": "2021-05-27T00:04:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:09:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98e924ae-f650-48f2-9ce1-f96ecbd63e82", - "start": { - "$date": "2021-05-27T00:09:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:11:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aae80f35-4d45-4d3a-bb5c-44ae67e2da30", - "start": { - "$date": "2021-05-27T00:11:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:15:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e33a50a-a0cc-4bc5-a31a-831ab873a5dc", - "start": { - "$date": "2021-05-27T00:15:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:17:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4d9f542-a960-4b29-a6ef-0272811e531e", - "start": { - "$date": "2021-05-27T00:17:02.000Z" - }, - "end": { - "$date": "2021-05-27T00:44:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c6daddcd-8b74-4134-8350-70c91c8ba38b", - "start": { - "$date": "2021-05-27T00:44:02.000Z" - }, - "end": { - "$date": "2021-05-27T01:03:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de04cd6d-573b-4cfd-bfe8-f3a7b6980546", - "start": { - "$date": "2021-05-27T01:03:02.000Z" - }, - "end": { - "$date": "2021-05-27T01:22:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3384e0b0-88dd-4add-97ae-016bd778198b", - "start": { - "$date": "2021-05-27T01:22:02.000Z" - }, - "end": { - "$date": "2021-05-27T01:24:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e33a2ab8-de98-4238-bd9c-071e2013f56b", - "start": { - "$date": "2021-05-27T01:24:02.000Z" - }, - "end": { - "$date": "2021-05-27T02:14:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2b15d6d-51c2-4fb6-9529-502564e6da36", - "start": { - "$date": "2021-05-27T02:14:02.000Z" - }, - "end": { - "$date": "2021-05-27T02:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c4d32f0-de2b-4646-bbff-579deea62482", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T21:23:01.000Z" - }, - "end": { - "$date": "2021-05-26T21:52:26.000Z" - }, - "events": [ - { - "uuid": "84e3e5b8-c24c-4523-ac14-e44556c2ebfe", - "start": { - "$date": "2021-05-26T21:23:01.000Z" - }, - "end": { - "$date": "2021-05-26T21:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7f6996e-93e0-459b-9d6c-3f1825461a5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T21:58:02.000Z" - }, - "end": { - "$date": "2021-05-26T22:32:05.000Z" - }, - "events": [ - { - "uuid": "758ad315-bd0e-4c9a-bbc5-305b8c89c2df", - "start": { - "$date": "2021-05-26T21:58:02.000Z" - }, - "end": { - "$date": "2021-05-26T22:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d618bf7-0a2a-49bb-8140-cdf47830a9ba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-26T22:43:35.000Z" - }, - "end": { - "$date": "2021-05-26T23:05:58.000Z" - }, - "events": [ - { - "uuid": "87fb6325-6154-46bf-8c1a-c18ee732cc91", - "start": { - "$date": "2021-05-26T22:43:35.000Z" - }, - "end": { - "$date": "2021-05-26T23:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c42080d-6247-4cb3-8057-0788ee4b5c74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T22:43:42.000Z" - }, - "end": { - "$date": "2021-05-26T23:06:09.000Z" - }, - "events": [ - { - "uuid": "c63d00df-a711-4c0f-b1a4-537ee0eacd21", - "start": { - "$date": "2021-05-26T22:43:42.000Z" - }, - "end": { - "$date": "2021-05-26T23:06:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8fe4a747-4751-4675-9c62-fda3d85b1a74", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-26T22:48:38.000Z" - }, - "end": { - "$date": "2021-05-26T23:39:03.000Z" - }, - "events": [ - { - "uuid": "d3d4150d-c35a-4b3e-b745-11be5f58367d", - "start": { - "$date": "2021-05-26T22:48:38.000Z" - }, - "end": { - "$date": "2021-05-26T23:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1b1007b-283f-416c-8648-b0247095412e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-26T23:13:07.000Z" - }, - "end": { - "$date": "2021-05-26T23:42:14.000Z" - }, - "events": [ - { - "uuid": "4bce98c6-76c8-43b4-a244-457df69a664a", - "start": { - "$date": "2021-05-26T23:13:07.000Z" - }, - "end": { - "$date": "2021-05-26T23:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7e24450-5da9-4ce9-b5f8-cdbb413ebd53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T23:13:11.000Z" - }, - "end": { - "$date": "2021-05-26T23:42:18.000Z" - }, - "events": [ - { - "uuid": "f198daa4-987b-4d13-b39a-59f104d9754b", - "start": { - "$date": "2021-05-26T23:13:11.000Z" - }, - "end": { - "$date": "2021-05-26T23:42:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90578ffa-a5fb-46a4-ab7d-87c3a451051c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-26T23:48:54.000Z" - }, - "end": { - "$date": "2021-05-27T00:16:58.000Z" - }, - "events": [ - { - "uuid": "df606e90-4627-479a-9139-5b7d6f4c95e8", - "start": { - "$date": "2021-05-26T23:48:54.000Z" - }, - "end": { - "$date": "2021-05-27T00:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bea2f67-459c-4a7f-8fef-1718379b9be3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-26T23:47:23.000Z" - }, - "end": { - "$date": "2021-05-27T00:16:47.000Z" - }, - "events": [ - { - "uuid": "a0974a02-dfcf-45fe-a80b-244b25f3e4f4", - "start": { - "$date": "2021-05-26T23:47:23.000Z" - }, - "end": { - "$date": "2021-05-27T00:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "144b3f79-57f8-4025-9449-15280a5c6714", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T01:24:43.000Z" - }, - "end": { - "$date": "2021-05-27T01:44:26.000Z" - }, - "events": [ - { - "uuid": "b45284e1-11c1-4fd6-84ef-cbdcfc97f964", - "start": { - "$date": "2021-05-27T01:24:43.000Z" - }, - "end": { - "$date": "2021-05-27T01:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1b2503ad-cecd-4669-9d24-d131c8f0092f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-27T01:41:57.000Z" - }, - "end": { - "$date": "2021-05-27T02:58:56.000Z" - }, - "events": [ - { - "uuid": "41a0fbd7-87ea-4bee-86a9-be52a747132a", - "start": { - "$date": "2021-05-27T01:41:57.000Z" - }, - "end": { - "$date": "2021-05-27T02:42:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af382251-34ac-41dc-a34a-1fd74b7b13cb", - "start": { - "$date": "2021-05-27T02:42:57.000Z" - }, - "end": { - "$date": "2021-05-27T02:58:56.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d18efffc-b0cd-4eb0-8e94-7d2f0ae23a60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T01:44:49.000Z" - }, - "end": { - "$date": "2021-05-27T02:01:03.000Z" - }, - "events": [ - { - "uuid": "34dd0c51-10f0-49fb-9033-b929e92ab051", - "start": { - "$date": "2021-05-27T01:44:49.000Z" - }, - "end": { - "$date": "2021-05-27T02:01:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0dac749d-0da0-4cca-a40c-2252626c05bc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-27T02:19:28.000Z" - }, - "end": { - "$date": "2021-05-27T03:26:02.000Z" - }, - "events": [ - { - "uuid": "581076be-9fdb-4921-b8de-ff871ed3fd0b", - "start": { - "$date": "2021-05-27T02:19:28.000Z" - }, - "end": { - "$date": "2021-05-27T03:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b7df1643-48de-4fed-94ef-d0ec0b2eb935", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T02:43:00.000Z" - }, - "end": { - "$date": "2021-05-27T03:20:05.000Z" - }, - "events": [ - { - "uuid": "ccafb13d-d5d4-4fb3-ba06-2aa397cfe1da", - "start": { - "$date": "2021-05-27T02:43:00.000Z" - }, - "end": { - "$date": "2021-05-27T03:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "efc6dbdb-8b81-41c5-a408-93ffb7a53932", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-27T04:45:33.000Z" - }, - "end": { - "$date": "2021-05-27T05:31:21.000Z" - }, - "events": [ - { - "uuid": "d7292f77-b69e-4f99-8c04-080f901a0eb6", - "start": { - "$date": "2021-05-27T04:45:33.000Z" - }, - "end": { - "$date": "2021-05-27T05:39:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e75f436-bcaf-43bf-9a1f-188b161780fa", - "start": { - "$date": "2021-05-27T05:39:33.000Z" - }, - "end": { - "$date": "2021-05-27T05:53:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa4fa3ec-6a5b-48c3-925b-e58f93b8fa13", - "start": { - "$date": "2021-05-27T05:53:33.000Z" - }, - "end": { - "$date": "2021-05-27T06:12:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "291a3606-10ac-4341-ba39-83535b44fa3e", - "start": { - "$date": "2021-05-27T06:12:33.000Z" - }, - "end": { - "$date": "2021-05-27T06:22:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aeac2543-44c0-4926-a3ba-f130242fe0f6", - "start": { - "$date": "2021-05-27T06:22:33.000Z" - }, - "end": { - "$date": "2021-05-27T06:51:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "959b3618-6c59-4e2f-9914-ba8e57c60ed6", - "start": { - "$date": "2021-05-27T06:51:33.000Z" - }, - "end": { - "$date": "2021-05-27T07:07:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "72d97f0a-3fe3-4229-b4f0-53db54ff5b63", - "start": { - "$date": "2021-05-27T07:07:33.000Z" - }, - "end": { - "$date": "2021-05-27T05:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8f2f26bb-0d97-4a96-b6f7-e5feb7bde255", - "uuid": "b27c4ddf-7fca-4b13-b75f-f8c3179e9dba", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-27T02:56:14.000Z" - }, - "end": { - "$date": "2021-05-27T03:08:44.000Z" - }, - "events": [ - { - "uuid": "8358dee5-f5e2-491c-bfb9-ab1525249126", - "start": { - "$date": "2021-05-27T02:56:14.000Z" - }, - "end": { - "$date": "2021-05-27T03:08:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eba569a6-174c-48ae-beca-b2b895854300", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T03:11:41.000Z" - }, - "end": { - "$date": "2021-05-27T03:37:59.000Z" - }, - "events": [ - { - "uuid": "d68d9d95-7bf8-4f62-92f0-bbd425bce123", - "start": { - "$date": "2021-05-27T03:11:41.000Z" - }, - "end": { - "$date": "2021-05-27T03:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "603065f5-0ca8-4820-b983-5e65d0b70a18", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-27T03:20:11.000Z" - }, - "end": { - "$date": "2021-05-27T04:38:44.000Z" - }, - "events": [ - { - "uuid": "b04ecf3b-fa6b-45b5-bf57-d9e3695e7d99", - "start": { - "$date": "2021-05-27T03:20:11.000Z" - }, - "end": { - "$date": "2021-05-27T04:38:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3f59f708-1930-441d-80c4-f56ad46b023b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T03:24:10.000Z" - }, - "end": { - "$date": "2021-05-27T04:36:51.000Z" - }, - "events": [ - { - "uuid": "ff0c5881-f13f-4d88-b357-1f474895b1a8", - "start": { - "$date": "2021-05-27T03:24:10.000Z" - }, - "end": { - "$date": "2021-05-27T04:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fba4d993-d3c3-4607-860f-ae54f19b5741", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-27T03:26:46.000Z" - }, - "end": { - "$date": "2021-05-27T04:38:42.000Z" - }, - "events": [ - { - "uuid": "45f1bce2-7965-45d5-bcc8-30f10a819960", - "start": { - "$date": "2021-05-27T03:26:46.000Z" - }, - "end": { - "$date": "2021-05-27T04:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "uuid": "472cab98-8dcc-4ec5-8789-743fba1ecffd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-27T03:36:16.000Z" - }, - "end": { - "$date": "2021-05-27T03:38:10.000Z" - }, - "events": [ - { - "uuid": "c153f561-28db-4deb-8eba-d0d849c03491", - "start": { - "$date": "2021-05-27T03:36:16.000Z" - }, - "end": { - "$date": "2021-05-27T03:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "debeeec5-f693-4403-b215-f7ce291750aa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-27T03:45:16.000Z" - }, - "end": { - "$date": "2021-05-27T04:23:56.000Z" - }, - "events": [ - { - "uuid": "73dcac67-88d9-4e4e-bf6d-c92fc84e2d2f", - "start": { - "$date": "2021-05-27T03:45:16.000Z" - }, - "end": { - "$date": "2021-05-27T04:23:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b32410d7-55c8-4e20-a713-2e16c99a9cef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T03:43:36.000Z" - }, - "end": { - "$date": "2021-05-27T04:24:04.000Z" - }, - "events": [ - { - "uuid": "b0556836-9d90-4ff8-a653-19d1e73164cf", - "start": { - "$date": "2021-05-27T03:43:36.000Z" - }, - "end": { - "$date": "2021-05-27T04:24:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e468de62-8de5-4dac-b2d1-66f5b4eb6564", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-27T03:56:55.000Z" - }, - "end": { - "$date": "2021-05-27T04:08:19.000Z" - }, - "events": [ - { - "uuid": "361f58ef-3a90-414f-91cf-af56cc46b6a8", - "start": { - "$date": "2021-05-27T03:56:55.000Z" - }, - "end": { - "$date": "2021-05-27T04:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6ae8afb-60dc-4c3d-b580-850ec35f4364", - "uuid": "f90db5f8-6875-4c01-9076-f89fd35eca1c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-27T04:13:09.000Z" - }, - "end": { - "$date": "2021-05-27T04:16:39.000Z" - }, - "events": [ - { - "uuid": "b0d6ab93-3e68-4335-983e-c8a6e826d84e", - "start": { - "$date": "2021-05-27T04:13:09.000Z" - }, - "end": { - "$date": "2021-05-27T04:16:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29087a92-a63d-4efb-8420-dfeca1a5082e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-27T04:29:19.000Z" - }, - "end": { - "$date": "2021-05-27T04:52:17.000Z" - }, - "events": [ - { - "uuid": "88303c8b-130b-4d45-8547-fd99ed36bd9b", - "start": { - "$date": "2021-05-27T04:29:19.000Z" - }, - "end": { - "$date": "2021-05-27T04:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac6924c1-e005-44ca-8b89-59d3d7f2f620", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T04:28:49.000Z" - }, - "end": { - "$date": "2021-05-27T04:52:14.000Z" - }, - "events": [ - { - "uuid": "585e8630-c4de-49d3-aa47-c924de6594ec", - "start": { - "$date": "2021-05-27T04:28:49.000Z" - }, - "end": { - "$date": "2021-05-27T04:52:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5efcf183-c6a2-4535-8a76-f3c813f206cc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T04:38:46.000Z" - }, - "end": { - "$date": "2021-05-27T12:02:44.000Z" - }, - "events": [ - { - "uuid": "15afd5f9-b079-4858-b4ed-1c69a098eb10", - "start": { - "$date": "2021-05-27T04:38:46.000Z" - }, - "end": { - "$date": "2021-05-27T04:50:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c6ca1a43-9d51-40c6-af05-1a0519221fec", - "start": { - "$date": "2021-05-27T04:50:46.000Z" - }, - "end": { - "$date": "2021-05-27T04:57:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f5acad95-350a-4d2d-ac7c-d80418450a70", - "start": { - "$date": "2021-05-27T04:57:46.000Z" - }, - "end": { - "$date": "2021-05-27T04:59:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9088a31-11e8-4ac0-98a5-68ad4b6b83d8", - "start": { - "$date": "2021-05-27T04:59:46.000Z" - }, - "end": { - "$date": "2021-05-27T05:04:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f8f39a3f-a7b9-4514-92c8-5af00b172b12", - "start": { - "$date": "2021-05-27T05:04:46.000Z" - }, - "end": { - "$date": "2021-05-27T05:06:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "32917aef-1839-41f4-9501-852bbc888223", - "start": { - "$date": "2021-05-27T05:06:46.000Z" - }, - "end": { - "$date": "2021-05-27T05:07:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6003d895-09a0-4e72-8421-938468981e9d", - "start": { - "$date": "2021-05-27T05:07:46.000Z" - }, - "end": { - "$date": "2021-05-27T05:09:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb9b1fe0-a852-4ca1-8b91-1a5a32b7a725", - "start": { - "$date": "2021-05-27T05:09:46.000Z" - }, - "end": { - "$date": "2021-05-27T12:02:44.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3228829b-93ee-4f72-9eeb-e6dba4fc4d7e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-27T04:38:53.000Z" - }, - "end": { - "$date": "2021-05-27T04:44:15.000Z" - }, - "events": [ - { - "uuid": "41edf61e-f1ae-4e8e-885f-fe60c26e8fc6", - "start": { - "$date": "2021-05-27T04:38:53.000Z" - }, - "end": { - "$date": "2021-05-27T04:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "056c2d24-d9c1-4649-881c-b588849addc0", - "uuid": "239ad872-b3a2-4c3a-9e98-f5cf1f56b215", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-27T04:40:22.000Z" - }, - "end": { - "$date": "2021-05-27T05:08:01.000Z" - }, - "events": [ - { - "uuid": "52ce2d00-70c6-4869-ab33-5f1334ea08fe", - "start": { - "$date": "2021-05-27T04:40:22.000Z" - }, - "end": { - "$date": "2021-05-27T05:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "dc94e7bd-eaf9-4f47-a08b-85b333d7fe6f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-27T04:43:50.000Z" - }, - "end": { - "$date": "2021-05-27T06:06:59.000Z" - }, - "events": [ - { - "uuid": "8fbb1d4c-8d49-4b27-98ed-3dfe38fe608b", - "start": { - "$date": "2021-05-27T04:43:50.000Z" - }, - "end": { - "$date": "2021-05-27T05:27:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2c0cbf7-054a-4b0c-8a9c-bea223060236", - "start": { - "$date": "2021-05-27T05:27:50.000Z" - }, - "end": { - "$date": "2021-05-27T05:35:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef0b5c79-85e9-4e20-b89d-8829982e6dac", - "start": { - "$date": "2021-05-27T05:35:50.000Z" - }, - "end": { - "$date": "2021-05-27T06:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51d57c43-ed1c-45f7-875c-e2ee2b8dbece", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T04:57:06.000Z" - }, - "end": { - "$date": "2021-05-27T04:58:12.000Z" - }, - "events": [ - { - "uuid": "7e5327f5-5d9d-422b-9e76-49a53b41bed5", - "start": { - "$date": "2021-05-27T04:57:06.000Z" - }, - "end": { - "$date": "2021-05-27T04:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d197df8-4364-4404-bcf4-29b45ff361d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T04:58:36.000Z" - }, - "end": { - "$date": "2021-05-27T05:22:50.000Z" - }, - "events": [ - { - "uuid": "b493e959-3230-4e0c-9853-f6186d59fea8", - "start": { - "$date": "2021-05-27T04:58:36.000Z" - }, - "end": { - "$date": "2021-05-27T05:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdf7c1c2-d0ef-4ccc-8952-b42c4ce16adc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T05:26:50.000Z" - }, - "end": { - "$date": "2021-05-27T06:00:28.000Z" - }, - "events": [ - { - "uuid": "a5d608b0-bafa-436b-89e2-d23a8e459d12", - "start": { - "$date": "2021-05-27T05:26:50.000Z" - }, - "end": { - "$date": "2021-05-27T06:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ef00f10-9571-4512-8d01-a5c32c3f16ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-27T05:35:13.000Z" - }, - "end": { - "$date": "2021-05-27T05:36:57.000Z" - }, - "events": [ - { - "uuid": "f65ce473-3c8e-43a5-8d58-ac2b474d1ef7", - "start": { - "$date": "2021-05-27T05:35:13.000Z" - }, - "end": { - "$date": "2021-05-27T05:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "09288dc8-ca3e-49a8-a08f-40214c17b4c5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-27T15:05:22.000Z" - }, - "end": { - "$date": "2021-05-27T16:48:43.000Z" - }, - "events": [ - { - "uuid": "751303f3-6d32-4988-bb60-5f0cd7744591", - "start": { - "$date": "2021-05-27T15:05:22.000Z" - }, - "end": { - "$date": "2021-05-27T16:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bac75415-f296-4904-9550-bf3f847466d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T15:22:25.000Z" - }, - "end": { - "$date": "2021-05-27T15:49:52.000Z" - }, - "events": [ - { - "uuid": "5da4fd0e-2761-48d3-b775-a3784d17dd45", - "start": { - "$date": "2021-05-27T15:22:25.000Z" - }, - "end": { - "$date": "2021-05-27T15:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "72839ca4-1c5f-4d70-8ba4-84464b44bd8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T15:41:44.000Z" - }, - "end": { - "$date": "2021-05-27T16:48:42.000Z" - }, - "events": [ - { - "uuid": "dda1eec6-ea61-447d-9e40-1a0dd62caab3", - "start": { - "$date": "2021-05-27T15:41:44.000Z" - }, - "end": { - "$date": "2021-05-27T16:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e66de49d-6cb7-49fb-a1b6-e1fe72538031", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T15:51:04.000Z" - }, - "end": { - "$date": "2021-05-27T16:33:12.000Z" - }, - "events": [ - { - "uuid": "c90570bf-8935-4634-8f4f-6784d6ad0fae", - "start": { - "$date": "2021-05-27T15:51:04.000Z" - }, - "end": { - "$date": "2021-05-27T16:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "24634183-f349-46fa-b100-f05d83cb22dc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-27T16:24:11.000Z" - }, - "end": { - "$date": "2021-05-27T17:13:26.000Z" - }, - "events": [ - { - "uuid": "ab45fdf0-467b-43bf-951b-24de80ed1477", - "start": { - "$date": "2021-05-27T16:24:11.000Z" - }, - "end": { - "$date": "2021-05-27T17:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01ce492b-61de-47e4-b988-807b9122d4de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T17:03:53.000Z" - }, - "end": { - "$date": "2021-05-27T17:52:05.000Z" - }, - "events": [ - { - "uuid": "6f94dcdd-c234-4a47-b17c-9449f38f0ffc", - "start": { - "$date": "2021-05-27T17:03:53.000Z" - }, - "end": { - "$date": "2021-05-27T17:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5322c4fe-b944-4f94-882a-46138f4edbf7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T18:00:21.000Z" - }, - "end": { - "$date": "2021-05-27T18:39:38.000Z" - }, - "events": [ - { - "uuid": "65064c28-31be-4557-add1-00199246cc69", - "start": { - "$date": "2021-05-27T18:00:21.000Z" - }, - "end": { - "$date": "2021-05-27T18:39:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a197b675-4fcd-422f-be71-a2a0d351274b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T18:25:43.000Z" - }, - "end": { - "$date": "2021-05-27T18:27:04.000Z" - }, - "events": [ - { - "uuid": "d4384fa1-d38d-4870-a886-4fc27048a3d7", - "start": { - "$date": "2021-05-27T18:25:43.000Z" - }, - "end": { - "$date": "2021-05-27T18:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d45548e5-d4e2-4541-b4f5-d870473f9e1a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-27T18:28:04.000Z" - }, - "end": { - "$date": "2021-05-28T00:50:15.000Z" - }, - "events": [ - { - "uuid": "4defae3b-1526-4404-b9b8-9b21fd9cee78", - "start": { - "$date": "2021-05-27T18:28:04.000Z" - }, - "end": { - "$date": "2021-05-27T18:40:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cdcedcd1-c1b8-4948-933f-0bc4520d63fb", - "start": { - "$date": "2021-05-27T18:40:04.000Z" - }, - "end": { - "$date": "2021-05-27T18:51:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "75b001ae-c7b8-442e-b6ed-b2fda0edeb2c", - "start": { - "$date": "2021-05-27T18:51:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:21:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e75572ec-2707-4dea-93e6-0876b79a02dd", - "start": { - "$date": "2021-05-27T20:21:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:25:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3bcac19f-1edc-412c-ac60-f21a7a0cd0a0", - "start": { - "$date": "2021-05-27T20:25:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:28:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62aa0344-37b5-4dfd-af9e-abff975e3e09", - "start": { - "$date": "2021-05-27T20:28:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:43:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c1fe4db9-5fab-49bf-b0b3-903c9ce41c90", - "start": { - "$date": "2021-05-27T20:43:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:47:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3838d52e-95b4-4b20-8e09-c333380864db", - "start": { - "$date": "2021-05-27T20:47:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:52:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dffaf0a8-1038-4e15-b6d5-f0bb7aec3b0a", - "start": { - "$date": "2021-05-27T20:52:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:54:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7a3830b-fb64-43ec-83b2-074e0f7fb825", - "start": { - "$date": "2021-05-27T20:54:04.000Z" - }, - "end": { - "$date": "2021-05-27T20:55:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba448309-6e0c-4967-9e15-0deece20338b", - "start": { - "$date": "2021-05-27T20:55:04.000Z" - }, - "end": { - "$date": "2021-05-27T21:05:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74455b75-9de1-414f-b256-7bab8f6a9a90", - "start": { - "$date": "2021-05-27T21:05:04.000Z" - }, - "end": { - "$date": "2021-05-27T21:42:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0306adb-262f-4d88-ae55-802162d34e2c", - "start": { - "$date": "2021-05-27T21:42:04.000Z" - }, - "end": { - "$date": "2021-05-27T21:45:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "353bca97-8d3f-4c94-9a04-62a508b44aae", - "start": { - "$date": "2021-05-27T21:45:04.000Z" - }, - "end": { - "$date": "2021-05-27T21:50:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cdb76f1e-7b87-4b94-8ea5-a9df786094b6", - "start": { - "$date": "2021-05-27T21:50:04.000Z" - }, - "end": { - "$date": "2021-05-27T21:52:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "395bade1-a062-4cdf-b9f3-f10228a1a812", - "start": { - "$date": "2021-05-27T21:52:04.000Z" - }, - "end": { - "$date": "2021-05-27T22:22:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0a1daffd-92db-4d0d-a062-36da333cc7a7", - "start": { - "$date": "2021-05-27T22:22:04.000Z" - }, - "end": { - "$date": "2021-05-27T22:33:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "572367a6-0e3a-4f65-8a17-cb2734b3f13e", - "start": { - "$date": "2021-05-27T22:33:04.000Z" - }, - "end": { - "$date": "2021-05-28T00:33:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e18c5984-8463-4797-9486-590ec3515c51", - "start": { - "$date": "2021-05-28T00:33:04.000Z" - }, - "end": { - "$date": "2021-05-28T00:50:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bb315113-589f-46b4-ab54-6a98f127bfc1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-27T18:35:08.000Z" - }, - "end": { - "$date": "2021-05-27T19:09:32.000Z" - }, - "events": [ - { - "uuid": "d496d74a-3594-4fb0-ad6b-bc88c1fdcd97", - "start": { - "$date": "2021-05-27T18:35:08.000Z" - }, - "end": { - "$date": "2021-05-27T18:51:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2585706f-88a9-4049-be46-4338cbd7bbfc", - "start": { - "$date": "2021-05-27T18:51:08.000Z" - }, - "end": { - "$date": "2021-05-27T19:08:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "466eb3eb-1965-40fc-a16b-2d9ea07190b3", - "start": { - "$date": "2021-05-27T19:08:08.000Z" - }, - "end": { - "$date": "2021-05-27T19:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "43d95a14-0c45-4f22-88ce-031dbc1f43cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-27T23:56:20.000Z" - }, - "end": { - "$date": "2021-05-27T23:57:55.000Z" - }, - "events": [ - { - "uuid": "c44a6994-e4fa-4804-925a-42506be25a46", - "start": { - "$date": "2021-05-27T23:56:20.000Z" - }, - "end": { - "$date": "2021-05-28T01:34:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ac58f1bf-ae0b-4564-9350-16dbab6036c7", - "start": { - "$date": "2021-05-28T01:34:20.000Z" - }, - "end": { - "$date": "2021-05-28T01:40:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fcb5dd12-ded2-4b29-8a67-bf5975cb02aa", - "start": { - "$date": "2021-05-28T01:40:20.000Z" - }, - "end": { - "$date": "2021-05-28T01:42:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd37c606-14ec-462a-b962-56cbfd9ad2de", - "start": { - "$date": "2021-05-28T01:42:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:03:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a4d57ec-f2af-4a7a-9f90-dc8eb3e72bd2", - "start": { - "$date": "2021-05-28T02:03:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:06:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "526ce380-38d7-40d9-8b0b-ec22c59648b0", - "start": { - "$date": "2021-05-28T02:06:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:10:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1714924d-766f-4375-99d5-329f4868274c", - "start": { - "$date": "2021-05-28T02:10:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:13:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd6d8fda-947a-4660-a69b-170c756db992", - "start": { - "$date": "2021-05-28T02:13:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:20:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "85f33178-0e5c-41eb-9890-2e06ead39ad7", - "start": { - "$date": "2021-05-28T02:20:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:35:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "990adefb-d869-4f09-aff7-ca57c309b1d7", - "start": { - "$date": "2021-05-28T02:35:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:40:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "308fd496-b7ee-4039-aea2-14942dd5a555", - "start": { - "$date": "2021-05-28T02:40:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:43:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f636be3-edd4-4372-aa5f-7db6a3532fd4", - "start": { - "$date": "2021-05-28T02:43:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:46:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "38a7f41b-ba06-400a-a89d-076b228a0319", - "start": { - "$date": "2021-05-28T02:46:20.000Z" - }, - "end": { - "$date": "2021-05-28T02:57:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "985315a6-0f39-403b-bb4e-21d6c5684bce", - "start": { - "$date": "2021-05-28T02:57:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:03:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "739df23c-6f10-4295-9aaa-f9af2303d785", - "start": { - "$date": "2021-05-28T03:03:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:12:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9195a6ae-eb59-4d40-a05e-68fc2ba060d9", - "start": { - "$date": "2021-05-28T03:12:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:24:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7fc1dcaf-c824-4a26-bf32-9842c5da4264", - "start": { - "$date": "2021-05-28T03:24:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:28:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6ae0ec4-ead8-49d2-bb43-b793d78e9680", - "start": { - "$date": "2021-05-28T03:28:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:48:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "406a1b34-3cad-43de-a2f7-b671034f87ad", - "start": { - "$date": "2021-05-28T03:48:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:50:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f8db2c4-c7b6-47ba-8693-4b0727f41f6c", - "start": { - "$date": "2021-05-28T03:50:20.000Z" - }, - "end": { - "$date": "2021-05-28T04:00:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "17f1fe2a-facc-483e-bf36-c958d223d5d3", - "start": { - "$date": "2021-05-28T04:00:20.000Z" - }, - "end": { - "$date": "2021-05-27T23:57:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f249ff80-51bb-4be3-8839-df194992562f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-27T19:26:32.000Z" - }, - "end": { - "$date": "2021-05-27T20:49:00.000Z" - }, - "events": [ - { - "uuid": "8197677d-21c0-4dcd-9aca-4af4442a7e34", - "start": { - "$date": "2021-05-27T19:26:32.000Z" - }, - "end": { - "$date": "2021-05-27T20:49:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea289897-01f6-441b-894b-67c1da06754b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T19:37:57.000Z" - }, - "end": { - "$date": "2021-05-27T20:16:25.000Z" - }, - "events": [ - { - "uuid": "c7b7d3be-ddeb-4b69-91c3-22fb209ed2d9", - "start": { - "$date": "2021-05-27T19:37:57.000Z" - }, - "end": { - "$date": "2021-05-27T20:16:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22246371-cda2-44fb-bc8a-abbe7f653931", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T20:23:19.000Z" - }, - "end": { - "$date": "2021-05-27T20:56:30.000Z" - }, - "events": [ - { - "uuid": "2f41022d-75a5-49c5-b5c9-9a68eb91370e", - "start": { - "$date": "2021-05-27T20:23:19.000Z" - }, - "end": { - "$date": "2021-05-27T20:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "11ebe06b-1b86-4c93-b92d-42400d57f8b7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-27T20:53:34.000Z" - }, - "end": { - "$date": "2021-05-28T01:01:45.000Z" - }, - "events": [ - { - "uuid": "78f4338c-c735-4c2a-b673-60fad3876329", - "start": { - "$date": "2021-05-27T20:53:34.000Z" - }, - "end": { - "$date": "2021-05-28T01:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08241a97-ddc1-45be-8d4a-736efdb98b20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-27T21:02:40.000Z" - }, - "end": { - "$date": "2021-05-27T21:35:13.000Z" - }, - "events": [ - { - "uuid": "c172718f-ea92-415e-8ddb-bc0889e1624e", - "start": { - "$date": "2021-05-27T21:02:40.000Z" - }, - "end": { - "$date": "2021-05-27T21:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "32313341-56fb-4fb3-a6e9-69b53563fd29", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-27T21:04:29.000Z" - }, - "end": { - "$date": "2021-05-27T21:06:04.000Z" - }, - "events": [ - { - "uuid": "94c943bc-b71b-4cbb-8515-a4aa14a68576", - "start": { - "$date": "2021-05-27T21:04:29.000Z" - }, - "end": { - "$date": "2021-05-27T21:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6d73eec7-e7cd-402b-984d-d15b45d6ad05", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-27T21:06:44.000Z" - }, - "end": { - "$date": "2021-05-28T00:34:41.000Z" - }, - "events": [ - { - "uuid": "029c8de9-be96-465d-a3de-a300b27f5e83", - "start": { - "$date": "2021-05-27T21:06:44.000Z" - }, - "end": { - "$date": "2021-05-27T22:39:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "529ace20-04f7-432d-929d-adc50146f81c", - "start": { - "$date": "2021-05-27T22:39:44.000Z" - }, - "end": { - "$date": "2021-05-27T22:40:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b5806f3-8bd1-4b9b-ae55-e1f183ba7a2a", - "start": { - "$date": "2021-05-27T22:40:44.000Z" - }, - "end": { - "$date": "2021-05-28T00:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75457164-96cd-4ee6-a8c6-ab045dbc50f6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T00:10:29.000Z" - }, - "end": { - "$date": "2021-05-28T00:22:20.000Z" - }, - "events": [ - { - "uuid": "58755814-c3bb-45be-b2c0-87058510dd1f", - "start": { - "$date": "2021-05-28T00:10:29.000Z" - }, - "end": { - "$date": "2021-05-28T00:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a611f3c-d4b2-4cd9-bc89-ef804ddcaedc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T00:25:37.000Z" - }, - "end": { - "$date": "2021-05-28T00:42:06.000Z" - }, - "events": [ - { - "uuid": "519d7a39-192b-4002-b983-0ec928c61c31", - "start": { - "$date": "2021-05-28T00:25:37.000Z" - }, - "end": { - "$date": "2021-05-28T00:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7a8afd9-d52e-4a03-9fd2-f7f79b8f08b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T00:44:19.000Z" - }, - "end": { - "$date": "2021-05-28T01:00:11.000Z" - }, - "events": [ - { - "uuid": "735ff254-296e-4bd1-9dd7-51e374564963", - "start": { - "$date": "2021-05-28T00:44:19.000Z" - }, - "end": { - "$date": "2021-05-28T01:00:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfdddb15-102b-4d1e-ade0-78cd27938645", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T00:50:14.000Z" - }, - "end": { - "$date": "2021-05-28T01:10:03.000Z" - }, - "events": [ - { - "uuid": "4d0c0ed4-a4be-4e18-b866-52126cd743fa", - "start": { - "$date": "2021-05-28T00:50:14.000Z" - }, - "end": { - "$date": "2021-05-28T01:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "00abc642-4b98-469e-b6f3-ae3b21d7e624", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T00:53:10.000Z" - }, - "end": { - "$date": "2021-05-28T01:27:19.000Z" - }, - "events": [ - { - "uuid": "3dac247c-c6fe-4bf3-9748-18dab826298c", - "start": { - "$date": "2021-05-28T00:53:10.000Z" - }, - "end": { - "$date": "2021-05-28T01:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c599744d-9055-41fa-8e71-7194ff3f740d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T01:14:19.000Z" - }, - "end": { - "$date": "2021-05-28T01:26:54.000Z" - }, - "events": [ - { - "uuid": "01a03350-25ec-446c-9b4a-65fb58b41d5b", - "start": { - "$date": "2021-05-28T01:14:19.000Z" - }, - "end": { - "$date": "2021-05-28T01:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cf12bbf-679d-4595-8f0d-f1431ea5c602", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T01:13:35.000Z" - }, - "end": { - "$date": "2021-05-28T01:27:02.000Z" - }, - "events": [ - { - "uuid": "567ffaf6-cf8e-47eb-81bd-da062bc080fb", - "start": { - "$date": "2021-05-28T01:13:35.000Z" - }, - "end": { - "$date": "2021-05-28T01:27:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f42801a8-2d7d-4332-983d-637142e9e4c8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T01:31:20.000Z" - }, - "end": { - "$date": "2021-05-28T01:51:00.000Z" - }, - "events": [ - { - "uuid": "389e909c-e95d-4834-8dee-206c8ceca75c", - "start": { - "$date": "2021-05-28T01:31:20.000Z" - }, - "end": { - "$date": "2021-05-28T01:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e376491c-5f9b-417f-b7b8-b2da2bad4a38", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T01:30:12.000Z" - }, - "end": { - "$date": "2021-05-28T01:51:11.000Z" - }, - "events": [ - { - "uuid": "5e10a584-25c5-47e4-91d4-97a364f6aab7", - "start": { - "$date": "2021-05-28T01:30:12.000Z" - }, - "end": { - "$date": "2021-05-28T01:51:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26b30d39-a924-4d4d-beb5-7bcb167eba70", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T01:31:15.000Z" - }, - "end": { - "$date": "2021-05-28T01:51:05.000Z" - }, - "events": [ - { - "uuid": "63be1252-68dd-46a2-8eff-4d85afeeaf69", - "start": { - "$date": "2021-05-28T01:31:15.000Z" - }, - "end": { - "$date": "2021-05-28T01:51:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0307b8fd-17a3-4781-b2ae-0702adfe7820", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T01:38:52.000Z" - }, - "end": { - "$date": "2021-05-28T02:56:32.000Z" - }, - "events": [ - { - "uuid": "e5b67f61-a9af-4770-a711-0cba8fd99c5b", - "start": { - "$date": "2021-05-28T01:38:52.000Z" - }, - "end": { - "$date": "2021-05-28T02:29:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed38d5c0-7ba6-4502-af6a-6a137d05abf6", - "start": { - "$date": "2021-05-28T02:29:52.000Z" - }, - "end": { - "$date": "2021-05-28T02:34:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "822c6d78-5288-4d7e-a141-dad82d5ae7c6", - "start": { - "$date": "2021-05-28T02:34:52.000Z" - }, - "end": { - "$date": "2021-05-28T02:45:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4ae1d1e-6ffa-4238-bc9f-365b9c4e7e66", - "start": { - "$date": "2021-05-28T02:45:52.000Z" - }, - "end": { - "$date": "2021-05-28T02:49:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c7983d2a-0216-4fb2-8550-bee5937e10b4", - "start": { - "$date": "2021-05-28T02:49:52.000Z" - }, - "end": { - "$date": "2021-05-28T02:56:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "eeee718b-d07c-46c7-8e7c-fd43f46a6b2f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-28T01:47:24.000Z" - }, - "end": { - "$date": "2021-05-28T07:35:36.000Z" - }, - "events": [ - { - "uuid": "5f21025d-10e5-48df-8983-e86626ddb092", - "start": { - "$date": "2021-05-28T01:47:24.000Z" - }, - "end": { - "$date": "2021-05-28T07:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bef5904-c3dc-4f9b-bfde-370df2eb5cc4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T01:55:51.000Z" - }, - "end": { - "$date": "2021-05-28T02:12:57.000Z" - }, - "events": [ - { - "uuid": "ca59dcbf-7819-44e3-962f-e5729530f4db", - "start": { - "$date": "2021-05-28T01:55:51.000Z" - }, - "end": { - "$date": "2021-05-28T02:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e60bc94e-f56b-4dc4-bef9-b625110c44b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T01:56:00.000Z" - }, - "end": { - "$date": "2021-05-28T02:12:40.000Z" - }, - "events": [ - { - "uuid": "8d8fd119-5d89-4326-9791-1c22a0ed4792", - "start": { - "$date": "2021-05-28T01:56:00.000Z" - }, - "end": { - "$date": "2021-05-28T02:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "035b9ad8-4e54-4dbb-8afb-01a34b8a75f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T01:54:38.000Z" - }, - "end": { - "$date": "2021-05-28T02:12:51.000Z" - }, - "events": [ - { - "uuid": "90849184-8666-4e81-8454-530f59a7d680", - "start": { - "$date": "2021-05-28T01:54:38.000Z" - }, - "end": { - "$date": "2021-05-28T02:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ca0518b5-f8a8-44d2-b437-22bf49c30ea8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-28T02:01:14.000Z" - }, - "end": { - "$date": "2021-05-28T06:13:33.000Z" - }, - "events": [ - { - "uuid": "dce94a08-f18a-4f30-8ee9-a655797e2534", - "start": { - "$date": "2021-05-28T02:01:14.000Z" - }, - "end": { - "$date": "2021-05-28T03:52:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24949fc4-e497-4ba5-9891-7a7317b728ab", - "start": { - "$date": "2021-05-28T03:52:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:07:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "121ce478-2003-421e-afc3-7bffe4aa4171", - "start": { - "$date": "2021-05-28T04:07:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:09:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f5ff102-d038-4e36-b140-7c836f68664b", - "start": { - "$date": "2021-05-28T04:09:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:15:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c24e2b12-c05f-48e0-8666-6e4f71ab3e7e", - "start": { - "$date": "2021-05-28T04:15:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:17:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7fbc73d0-dee9-4664-ba28-b868027c02b7", - "start": { - "$date": "2021-05-28T04:17:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:33:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5345c5c7-4c99-44b1-a0d4-86b898179aa1", - "start": { - "$date": "2021-05-28T04:33:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:35:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9bf12edc-29be-4a00-a175-77b8581b786d", - "start": { - "$date": "2021-05-28T04:35:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:50:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8fa9c47-e7ac-4f49-a5ca-561853bf9089", - "start": { - "$date": "2021-05-28T04:50:14.000Z" - }, - "end": { - "$date": "2021-05-28T04:52:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6c1e0138-b709-403a-b31f-a1a6c93e139c", - "start": { - "$date": "2021-05-28T04:52:14.000Z" - }, - "end": { - "$date": "2021-05-28T06:10:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f30e6fd7-4d55-43c9-81eb-092753db0c1d", - "start": { - "$date": "2021-05-28T06:10:14.000Z" - }, - "end": { - "$date": "2021-05-28T06:12:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5cb88e2-35db-4c1c-9b64-4227be0b5db7", - "start": { - "$date": "2021-05-28T06:12:14.000Z" - }, - "end": { - "$date": "2021-05-28T06:13:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a5f7a72-71ee-4fd4-a72b-9a8383404fb3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T02:18:07.000Z" - }, - "end": { - "$date": "2021-05-28T02:37:43.000Z" - }, - "events": [ - { - "uuid": "62688711-2f8c-47e4-ba59-6326e5abf55e", - "start": { - "$date": "2021-05-28T02:18:07.000Z" - }, - "end": { - "$date": "2021-05-28T02:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "869b4e88-15a1-4b91-ac86-c4a209d315b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T02:16:14.000Z" - }, - "end": { - "$date": "2021-05-28T02:37:49.000Z" - }, - "events": [ - { - "uuid": "c68efc1d-f431-4f50-85f8-9c7452880ef3", - "start": { - "$date": "2021-05-28T02:16:14.000Z" - }, - "end": { - "$date": "2021-05-28T02:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7320b66f-8dbb-40a2-836c-f2c5eeca381f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T02:37:36.000Z" - }, - "end": { - "$date": "2021-05-28T02:37:51.000Z" - }, - "events": [ - { - "uuid": "ad9386bc-fe83-46d3-9f61-4cba91b7bfde", - "start": { - "$date": "2021-05-28T02:37:36.000Z" - }, - "end": { - "$date": "2021-05-28T02:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6ae8afb-60dc-4c3d-b580-850ec35f4364", - "uuid": "1b9446ba-51b3-4c94-b57c-9e6a03059598", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-05-28T02:26:40.000Z" - }, - "end": { - "$date": "2021-05-28T02:29:25.000Z" - }, - "events": [ - { - "uuid": "aad9c0ce-af22-413a-8f54-5826ec56e643", - "start": { - "$date": "2021-05-28T02:26:40.000Z" - }, - "end": { - "$date": "2021-05-28T02:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "c8fe3f12-444f-4b72-9630-a6907f4cbf68", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-28T02:37:31.000Z" - }, - "end": { - "$date": "2021-05-28T03:01:19.000Z" - }, - "events": [ - { - "uuid": "38263fd5-4b15-43cc-944a-ee2a5e2f618f", - "start": { - "$date": "2021-05-28T02:37:31.000Z" - }, - "end": { - "$date": "2021-05-28T03:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c9e4569-781f-44b7-9fe2-9bf0ab5883d6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T02:40:38.000Z" - }, - "end": { - "$date": "2021-05-28T02:58:18.000Z" - }, - "events": [ - { - "uuid": "1bad5720-62f1-40f5-859b-bbf307c2775d", - "start": { - "$date": "2021-05-28T02:40:38.000Z" - }, - "end": { - "$date": "2021-05-28T02:58:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95b2b064-c6bb-4431-9eeb-dedad80eab77", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T02:40:46.000Z" - }, - "end": { - "$date": "2021-05-28T02:58:20.000Z" - }, - "events": [ - { - "uuid": "09677aa6-56e9-489f-b0aa-bef0399b4a58", - "start": { - "$date": "2021-05-28T02:40:46.000Z" - }, - "end": { - "$date": "2021-05-28T02:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de8b1792-b433-4f91-80aa-ec9b749d227c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T02:58:11.000Z" - }, - "end": { - "$date": "2021-05-28T02:58:36.000Z" - }, - "events": [ - { - "uuid": "63e4b26a-da4f-44b6-a1f1-d17e14d5d23e", - "start": { - "$date": "2021-05-28T02:58:11.000Z" - }, - "end": { - "$date": "2021-05-28T02:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ceb4dfae-5cbd-40a9-bb4e-2bfbf873eca7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T02:56:59.000Z" - }, - "end": { - "$date": "2021-05-28T03:09:39.000Z" - }, - "events": [ - { - "uuid": "8a4cec7a-13ff-4753-bff7-296de5049e63", - "start": { - "$date": "2021-05-28T02:56:59.000Z" - }, - "end": { - "$date": "2021-05-28T03:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11d0e94c-4058-4cca-aa0e-063b48713a3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T03:02:12.000Z" - }, - "end": { - "$date": "2021-05-28T03:12:24.000Z" - }, - "events": [ - { - "uuid": "d0cc1c36-cc6e-4b87-9f8e-cc68fd647fd2", - "start": { - "$date": "2021-05-28T03:02:12.000Z" - }, - "end": { - "$date": "2021-05-28T03:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6b924732-463e-4331-bf6e-90d6ed2305d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T02:59:01.000Z" - }, - "end": { - "$date": "2021-05-28T03:23:23.000Z" - }, - "events": [ - { - "uuid": "c9c44887-0648-4b1c-b5e3-0ecbec42622c", - "start": { - "$date": "2021-05-28T02:59:01.000Z" - }, - "end": { - "$date": "2021-05-28T03:10:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff9f5ea2-b0ec-430a-8296-ca1345d1fe5c", - "start": { - "$date": "2021-05-28T03:10:01.000Z" - }, - "end": { - "$date": "2021-05-28T03:19:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b46a4e70-da47-45f8-aa62-e02bfaa88d3f", - "start": { - "$date": "2021-05-28T03:19:01.000Z" - }, - "end": { - "$date": "2021-05-28T03:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "56fb6aa8-f5c1-43a1-8fd0-a4652d76548e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-28T02:58:59.000Z" - }, - "end": { - "$date": "2021-05-28T03:51:22.000Z" - }, - "events": [ - { - "uuid": "dedc36e3-5cc6-4c3b-b12f-8191f822cae2", - "start": { - "$date": "2021-05-28T02:58:59.000Z" - }, - "end": { - "$date": "2021-05-28T03:51:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ea6e9598-e2c2-469d-a7fc-b06a80fffcf3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T03:11:00.000Z" - }, - "end": { - "$date": "2021-05-28T03:50:51.000Z" - }, - "events": [ - { - "uuid": "b8bb6e52-6aef-48db-9eff-8adba0e812ea", - "start": { - "$date": "2021-05-28T03:11:00.000Z" - }, - "end": { - "$date": "2021-05-28T03:50:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9607b017-f662-47cc-a2a8-fca503d2aadc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T03:16:08.000Z" - }, - "end": { - "$date": "2021-05-28T03:33:27.000Z" - }, - "events": [ - { - "uuid": "156592dc-1d33-4bbe-8e3f-9378245639b8", - "start": { - "$date": "2021-05-28T03:16:08.000Z" - }, - "end": { - "$date": "2021-05-28T03:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c75ca769-4a5c-436a-9e53-ba39f6ce590d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-28T03:18:31.000Z" - }, - "end": { - "$date": "2021-05-28T03:21:50.000Z" - }, - "events": [ - { - "uuid": "1e5c7347-70e0-47cf-b9a3-b50ae21fea20", - "start": { - "$date": "2021-05-28T03:18:31.000Z" - }, - "end": { - "$date": "2021-05-28T03:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c92a6b31-1e86-4765-952e-7e9bcbb9d4aa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-28T03:24:42.000Z" - }, - "end": { - "$date": "2021-05-28T04:10:35.000Z" - }, - "events": [ - { - "uuid": "30313acb-6302-4322-83c8-77119711f02e", - "start": { - "$date": "2021-05-28T03:24:42.000Z" - }, - "end": { - "$date": "2021-05-28T04:10:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a077307-7226-402e-8900-54905454d873", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T03:37:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:57:33.000Z" - }, - "events": [ - { - "uuid": "8ccb3e85-c300-4d64-acc6-7d5d2adfb369", - "start": { - "$date": "2021-05-28T03:37:20.000Z" - }, - "end": { - "$date": "2021-05-28T03:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "0ce2fc85-36e9-4d19-b51d-125280f8a940", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T03:51:17.000Z" - }, - "end": { - "$date": "2021-05-28T04:20:21.000Z" - }, - "events": [ - { - "uuid": "5abf38db-6f82-4bde-8ee3-a4bc03a34c24", - "start": { - "$date": "2021-05-28T03:51:17.000Z" - }, - "end": { - "$date": "2021-05-28T04:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f872ff4-73e7-498b-b54f-22302e01e63d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T04:02:56.000Z" - }, - "end": { - "$date": "2021-05-28T04:22:22.000Z" - }, - "events": [ - { - "uuid": "ee9f7837-c571-422a-8f1d-d6cb47b8ae24", - "start": { - "$date": "2021-05-28T04:02:56.000Z" - }, - "end": { - "$date": "2021-05-28T04:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "347aaaaf-e1c5-443a-9762-68eb65607af1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T04:25:37.000Z" - }, - "end": { - "$date": "2021-05-28T04:41:17.000Z" - }, - "events": [ - { - "uuid": "a12e8123-99c0-422b-a5d4-355d9920e5d0", - "start": { - "$date": "2021-05-28T04:25:37.000Z" - }, - "end": { - "$date": "2021-05-28T04:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8059c1b5-07d5-411b-8e22-a8d5bda9367e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T05:12:41.000Z" - }, - "end": { - "$date": "2021-05-28T05:33:41.000Z" - }, - "events": [ - { - "uuid": "6b2e5a4b-3acb-47f4-b6e3-ad7ecd08ca45", - "start": { - "$date": "2021-05-28T05:12:41.000Z" - }, - "end": { - "$date": "2021-05-28T05:33:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "08c91104-cfe1-4a60-9bd5-3e31f3773572", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T04:32:30.000Z" - }, - "end": { - "$date": "2021-05-28T15:02:55.000Z" - }, - "events": [ - { - "uuid": "921a0861-25ef-4310-b593-a845d335aeb6", - "start": { - "$date": "2021-05-28T04:32:30.000Z" - }, - "end": { - "$date": "2021-05-28T05:50:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "47a77a8e-548e-428d-ba6f-e7624c807e1f", - "start": { - "$date": "2021-05-28T05:50:30.000Z" - }, - "end": { - "$date": "2021-05-28T06:37:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4507b784-2d6b-4a37-b8d3-bb536bc98a3b", - "start": { - "$date": "2021-05-28T06:37:30.000Z" - }, - "end": { - "$date": "2021-05-28T06:47:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e86c964-2fcd-4fda-8d57-bce7b3472df5", - "start": { - "$date": "2021-05-28T06:47:30.000Z" - }, - "end": { - "$date": "2021-05-28T14:34:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f513c187-a232-48ab-a776-c0c489a51b1b", - "start": { - "$date": "2021-05-28T14:34:30.000Z" - }, - "end": { - "$date": "2021-05-28T14:36:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2bc83a1-e7e9-4699-b9b5-c3f1cf7cd715", - "start": { - "$date": "2021-05-28T14:36:30.000Z" - }, - "end": { - "$date": "2021-05-28T14:46:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb1d75dd-46b2-4d07-8a5e-146118c3bb42", - "start": { - "$date": "2021-05-28T14:46:30.000Z" - }, - "end": { - "$date": "2021-05-28T14:51:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "238e141b-97a2-4f17-9b09-664a5f586bad", - "start": { - "$date": "2021-05-28T14:51:30.000Z" - }, - "end": { - "$date": "2021-05-28T15:02:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebaded36-8226-46c2-920c-799cf9c39d8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T04:43:53.000Z" - }, - "end": { - "$date": "2021-05-28T05:02:58.000Z" - }, - "events": [ - { - "uuid": "7eaf0b74-aab5-46ec-b94a-aa6f8d5af539", - "start": { - "$date": "2021-05-28T04:43:53.000Z" - }, - "end": { - "$date": "2021-05-28T05:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5191f0c0-3c0a-4dad-87e1-e724a2a44e50", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T05:07:30.000Z" - }, - "end": { - "$date": "2021-05-28T05:22:35.000Z" - }, - "events": [ - { - "uuid": "81fcb707-5742-4044-a90d-c42a1e927994", - "start": { - "$date": "2021-05-28T05:07:30.000Z" - }, - "end": { - "$date": "2021-05-28T05:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a915e8bf-5ac3-4cd9-95dd-7b6dcbf07ecc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T05:58:11.000Z" - }, - "end": { - "$date": "2021-05-28T06:14:03.000Z" - }, - "events": [ - { - "uuid": "98f421b8-15ec-4596-8d60-4cb692029e1f", - "start": { - "$date": "2021-05-28T05:58:11.000Z" - }, - "end": { - "$date": "2021-05-28T06:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "719acb63-15ff-4125-a637-cb1ff0f51ad5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T05:34:07.000Z" - }, - "end": { - "$date": "2021-05-28T07:04:40.000Z" - }, - "events": [ - { - "uuid": "ce2a1a34-f916-4040-a70d-3052c1feb9c4", - "start": { - "$date": "2021-05-28T05:34:07.000Z" - }, - "end": { - "$date": "2021-05-28T07:04:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96e89ac2-1d56-4c1e-bc81-bfcf977fc994", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T06:17:18.000Z" - }, - "end": { - "$date": "2021-05-28T06:31:23.000Z" - }, - "events": [ - { - "uuid": "ccb0462a-5868-466f-89b9-e720719bd163", - "start": { - "$date": "2021-05-28T06:17:18.000Z" - }, - "end": { - "$date": "2021-05-28T06:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "feea7eaf-47a5-4f95-8f37-823d109e1b6a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T07:05:07.000Z" - }, - "end": { - "$date": "2021-05-28T07:06:40.000Z" - }, - "events": [ - { - "uuid": "49dc6040-0053-45b3-b704-6a14e4e197e0", - "start": { - "$date": "2021-05-28T07:05:07.000Z" - }, - "end": { - "$date": "2021-05-28T07:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1f37be20-829b-4347-bbbe-e47e798890b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T07:18:38.000Z" - }, - "end": { - "$date": "2021-05-28T07:31:03.000Z" - }, - "events": [ - { - "uuid": "91f83fbf-054f-4ec2-bd16-f1c1c1176666", - "start": { - "$date": "2021-05-28T07:18:38.000Z" - }, - "end": { - "$date": "2021-05-28T07:31:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fd563ea5-f22c-4ce6-907b-2b48010c3e36", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-28T14:09:22.000Z" - }, - "end": { - "$date": "2021-05-28T15:09:19.000Z" - }, - "events": [ - { - "uuid": "4a08e727-0969-4f92-aef3-8bd5728707aa", - "start": { - "$date": "2021-05-28T14:09:22.000Z" - }, - "end": { - "$date": "2021-05-28T15:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "98f908a7-f617-479a-b8e2-00fd1424ffde", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T15:04:06.000Z" - }, - "end": { - "$date": "2021-05-28T15:10:01.000Z" - }, - "events": [ - { - "uuid": "c0f7bf14-1db6-4d69-b43c-80ee16f5b3a5", - "start": { - "$date": "2021-05-28T15:04:06.000Z" - }, - "end": { - "$date": "2021-05-28T15:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b9e48e04-d28e-4cd4-8b72-86b3d0992d30", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T15:47:44.000Z" - }, - "end": { - "$date": "2021-05-28T16:21:30.000Z" - }, - "events": [ - { - "uuid": "cf72142e-12b7-4e4b-8658-fd0c401de2ed", - "start": { - "$date": "2021-05-28T15:47:44.000Z" - }, - "end": { - "$date": "2021-05-28T16:21:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6f697225-1da9-45fa-9aff-18d7335be2bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T16:22:02.000Z" - }, - "end": { - "$date": "2021-05-28T16:25:04.000Z" - }, - "events": [ - { - "uuid": "5591ff55-ec4a-4cce-b0f8-9d745c316324", - "start": { - "$date": "2021-05-28T16:22:02.000Z" - }, - "end": { - "$date": "2021-05-28T16:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9807fbcb-bd24-44fc-85c0-6554e5cef9fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T16:30:27.000Z" - }, - "end": { - "$date": "2021-05-28T16:42:07.000Z" - }, - "events": [ - { - "uuid": "86f836b4-ccaa-406a-9f6f-431d1d1e1747", - "start": { - "$date": "2021-05-28T16:30:27.000Z" - }, - "end": { - "$date": "2021-05-28T16:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2d97632-41f2-40de-b7ff-c6143db3a30e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T16:46:04.000Z" - }, - "end": { - "$date": "2021-05-28T17:07:56.000Z" - }, - "events": [ - { - "uuid": "773e4c7c-b96e-4cee-9bff-faa241b6e45c", - "start": { - "$date": "2021-05-28T16:46:04.000Z" - }, - "end": { - "$date": "2021-05-28T17:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c4c625c6-c684-4f62-a65f-e9bebc0bb411", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-28T02:01:14.000Z" - }, - "end": { - "$date": "2021-05-28T17:53:34.000Z" - }, - "events": [ - { - "uuid": "8aeca5bd-bb4c-4912-8014-0cedffcd2251", - "start": { - "$date": "2021-05-28T02:01:14.000Z" - }, - "end": { - "$date": "2021-05-28T17:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f4fdcf61-175e-4c2c-82d6-eb5242e0c0b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-28T19:35:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:00:49.000Z" - }, - "events": [ - { - "uuid": "e90fbf1d-1a24-4630-9da2-79ede97fbea0", - "start": { - "$date": "2021-05-28T19:35:45.000Z" - }, - "end": { - "$date": "2021-05-28T21:45:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d635eec-a2d8-47fb-8d9f-651bf9714117", - "start": { - "$date": "2021-05-28T21:45:45.000Z" - }, - "end": { - "$date": "2021-05-28T21:59:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b428e6d-45c1-47c9-a731-ce6fdd5f6ed0", - "start": { - "$date": "2021-05-28T21:59:45.000Z" - }, - "end": { - "$date": "2021-05-28T22:01:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8e220c3e-4937-415c-8419-6f0d5dddee9d", - "start": { - "$date": "2021-05-28T22:01:45.000Z" - }, - "end": { - "$date": "2021-05-28T22:53:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "290263e2-b788-449d-88ce-caa9c5a52400", - "start": { - "$date": "2021-05-28T22:53:45.000Z" - }, - "end": { - "$date": "2021-05-28T22:57:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "422840ea-03e9-4f85-a6c9-d63e55786fe6", - "start": { - "$date": "2021-05-28T22:57:45.000Z" - }, - "end": { - "$date": "2021-05-28T23:58:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8f70204-ea0b-458b-9f82-d093ce804eae", - "start": { - "$date": "2021-05-28T23:58:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:00:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25fa4947-440c-4567-9c1b-ed98990e8cc0", - "start": { - "$date": "2021-05-29T00:00:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:03:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91ef86b0-6013-467a-855e-82db34bf70ee", - "start": { - "$date": "2021-05-29T00:03:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:06:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e58aabff-7a49-4bad-bc73-b233ae7244b8", - "start": { - "$date": "2021-05-29T00:06:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:07:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7926644f-c016-4742-9db6-4a07b7211838", - "start": { - "$date": "2021-05-29T00:07:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:09:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "398af264-4920-4d7e-9eca-1c5af1decac6", - "start": { - "$date": "2021-05-29T00:09:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:10:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4418bd34-80a7-4e4d-b505-e5324f06709a", - "start": { - "$date": "2021-05-29T00:10:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:20:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9cb291da-9484-4fa5-82a8-69f1dca57254", - "start": { - "$date": "2021-05-29T00:20:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:27:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e3bb7726-2f5b-4bfb-8df6-dd180a971cdc", - "start": { - "$date": "2021-05-29T00:27:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:29:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3af9e0c0-63e6-4d1a-8f16-e83747c4a114", - "start": { - "$date": "2021-05-29T00:29:45.000Z" - }, - "end": { - "$date": "2021-05-29T01:26:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "31437c31-52c0-4377-8cb7-64cfffeef3b9", - "start": { - "$date": "2021-05-29T01:26:45.000Z" - }, - "end": { - "$date": "2021-05-29T00:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a13f3fb-d2b6-49db-a908-f6bf3bf49305", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T18:17:03.000Z" - }, - "end": { - "$date": "2021-05-28T18:43:40.000Z" - }, - "events": [ - { - "uuid": "66b9ffcd-75d9-4f7a-8dc0-dcffc5b13a3b", - "start": { - "$date": "2021-05-28T18:17:03.000Z" - }, - "end": { - "$date": "2021-05-28T18:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6526f07d-6233-4207-a4af-1ba2cb5ca8ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T18:46:20.000Z" - }, - "end": { - "$date": "2021-05-28T19:22:02.000Z" - }, - "events": [ - { - "uuid": "332d0325-2ed3-43b4-8791-15a48aa278b6", - "start": { - "$date": "2021-05-28T18:46:20.000Z" - }, - "end": { - "$date": "2021-05-28T19:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "85855eed-b10f-467e-ad88-bc292e6e8993", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-28T18:48:53.000Z" - }, - "end": { - "$date": "2021-05-28T20:09:10.000Z" - }, - "events": [ - { - "uuid": "3e29a9e3-1ced-4be9-a024-1dcfaf5ff957", - "start": { - "$date": "2021-05-28T18:48:53.000Z" - }, - "end": { - "$date": "2021-05-28T20:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d46eb350-0f03-43f6-8472-9b038a666408", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-05-28T19:46:32.000Z" - }, - "end": { - "$date": "2021-05-28T20:47:44.000Z" - }, - "events": [ - { - "uuid": "a4aabe11-91a8-408f-8e64-4d28b8411c14", - "start": { - "$date": "2021-05-28T19:46:32.000Z" - }, - "end": { - "$date": "2021-05-28T20:06:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1796f3a-886f-4160-b658-8dc4ae3a6735", - "start": { - "$date": "2021-05-28T20:06:32.000Z" - }, - "end": { - "$date": "2021-05-28T20:16:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7d0d48e-862c-4850-b8a7-2644e1517866", - "start": { - "$date": "2021-05-28T20:16:32.000Z" - }, - "end": { - "$date": "2021-05-28T20:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d13b491b-db8d-4752-a02d-ded867d62b7a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-28T20:09:36.000Z" - }, - "end": { - "$date": "2021-05-28T22:38:19.000Z" - }, - "events": [ - { - "uuid": "0e78cb56-3c49-4bf8-b495-48790b61cccc", - "start": { - "$date": "2021-05-28T20:09:36.000Z" - }, - "end": { - "$date": "2021-05-28T22:38:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ac2d91f-43a4-4490-89cf-5af5df482509", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T20:49:21.000Z" - }, - "end": { - "$date": "2021-05-28T21:09:05.000Z" - }, - "events": [ - { - "uuid": "090000f2-fc1e-47ab-ab33-08c93eff15fc", - "start": { - "$date": "2021-05-28T20:49:21.000Z" - }, - "end": { - "$date": "2021-05-28T21:09:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcd36f82-8795-40e3-b3a7-8057f60155dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-28T21:13:10.000Z" - }, - "end": { - "$date": "2021-05-28T21:27:15.000Z" - }, - "events": [ - { - "uuid": "498fecbb-67c0-434e-a26b-0bac11fa2f5f", - "start": { - "$date": "2021-05-28T21:13:10.000Z" - }, - "end": { - "$date": "2021-05-28T21:27:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5fb56259-2e4f-433e-8626-6a8ac43c61f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T21:14:30.000Z" - }, - "end": { - "$date": "2021-05-28T21:37:37.000Z" - }, - "events": [ - { - "uuid": "c0ef3ac2-7920-4269-ae84-99b0fb477531", - "start": { - "$date": "2021-05-28T21:14:30.000Z" - }, - "end": { - "$date": "2021-05-28T21:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "28730240-f66f-4301-83e2-4461d997af67", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T21:28:28.000Z" - }, - "end": { - "$date": "2021-05-28T21:37:17.000Z" - }, - "events": [ - { - "uuid": "874aba85-dcf1-4ad9-926f-a279e1d7a86c", - "start": { - "$date": "2021-05-28T21:28:28.000Z" - }, - "end": { - "$date": "2021-05-28T21:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a525f873-716b-44f2-a476-046a54ced7e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-28T21:38:13.000Z" - }, - "end": { - "$date": "2021-05-29T00:54:21.000Z" - }, - "events": [ - { - "uuid": "4a6fa41a-ebac-484e-8d64-a35103958325", - "start": { - "$date": "2021-05-28T21:38:13.000Z" - }, - "end": { - "$date": "2021-05-29T00:15:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b7163bf-32bd-4873-b4eb-f7c0f42e146c", - "start": { - "$date": "2021-05-29T00:15:13.000Z" - }, - "end": { - "$date": "2021-05-29T00:47:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73c4fb55-3cd1-41c2-9c4c-3639f9a60141", - "start": { - "$date": "2021-05-29T00:47:13.000Z" - }, - "end": { - "$date": "2021-05-29T00:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a20d4d48-ead3-47a7-a0f1-713d711988dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T21:47:33.000Z" - }, - "end": { - "$date": "2021-05-28T22:11:53.000Z" - }, - "events": [ - { - "uuid": "8e5da831-a422-47b4-ae7f-6087215255fb", - "start": { - "$date": "2021-05-28T21:47:33.000Z" - }, - "end": { - "$date": "2021-05-28T22:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7ee4462f-fdb9-486a-a5c1-7f8510305585", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-28T22:48:00.000Z" - }, - "end": { - "$date": "2021-05-28T22:48:39.000Z" - }, - "events": [ - { - "uuid": "1d92a40a-797c-4d1f-b085-b2115b12d38a", - "start": { - "$date": "2021-05-28T22:48:00.000Z" - }, - "end": { - "$date": "2021-05-28T22:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "23fde991-9231-49c7-abbc-b510d58fcbe3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-28T22:52:40.000Z" - }, - "end": { - "$date": "2021-05-29T00:04:34.000Z" - }, - "events": [ - { - "uuid": "4a9b93af-703f-4c0a-9c97-21a71943b421", - "start": { - "$date": "2021-05-28T22:52:40.000Z" - }, - "end": { - "$date": "2021-05-29T00:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9af524e6-e323-4d54-9a35-c1ea18bb222f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-28T23:11:55.000Z" - }, - "end": { - "$date": "2021-05-28T23:36:06.000Z" - }, - "events": [ - { - "uuid": "0ac0bbe4-aeeb-41c7-99cb-8121f43f9a5a", - "start": { - "$date": "2021-05-28T23:11:55.000Z" - }, - "end": { - "$date": "2021-05-28T23:36:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ba847962-8127-49b8-b865-3e8588b81333", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T00:03:59.000Z" - }, - "end": { - "$date": "2021-05-29T02:28:24.000Z" - }, - "events": [ - { - "uuid": "8bfcf2b4-2766-456c-81a3-b54bad2cf5e1", - "start": { - "$date": "2021-05-29T00:03:59.000Z" - }, - "end": { - "$date": "2021-05-29T00:32:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c0a2b234-9ec5-4e36-82ac-cace2e72ba82", - "start": { - "$date": "2021-05-29T00:32:59.000Z" - }, - "end": { - "$date": "2021-05-29T00:56:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c99096f-4f1b-4174-8bb4-5bc1ecc4b215", - "start": { - "$date": "2021-05-29T00:56:59.000Z" - }, - "end": { - "$date": "2021-05-29T00:59:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25b3905b-7644-48e5-afe8-d38687b9f242", - "start": { - "$date": "2021-05-29T00:59:59.000Z" - }, - "end": { - "$date": "2021-05-29T01:54:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2a2cc7d0-98bd-44c1-889f-eef11313edc7", - "start": { - "$date": "2021-05-29T01:54:59.000Z" - }, - "end": { - "$date": "2021-05-29T02:28:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f670e87c-fc92-4b62-8f17-241cbaabf433", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T00:29:46.000Z" - }, - "end": { - "$date": "2021-05-29T02:54:45.000Z" - }, - "events": [ - { - "uuid": "ce11c284-00ff-45b4-be34-8cb3486342db", - "start": { - "$date": "2021-05-29T00:29:46.000Z" - }, - "end": { - "$date": "2021-05-29T02:38:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "643962f7-75d0-4d07-9a01-026c67ce5b98", - "start": { - "$date": "2021-05-29T02:38:46.000Z" - }, - "end": { - "$date": "2021-05-29T02:46:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0366958c-5b33-43c8-8d56-2c39b87a5b52", - "start": { - "$date": "2021-05-29T02:46:46.000Z" - }, - "end": { - "$date": "2021-05-29T02:48:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "79fbb652-510d-4bdd-bc92-4bb1e01aeaab", - "start": { - "$date": "2021-05-29T02:48:46.000Z" - }, - "end": { - "$date": "2021-05-29T02:54:45.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2dfceb47-3bab-40b7-af35-43d17afb1fc0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-29T01:53:03.000Z" - }, - "end": { - "$date": "2021-05-29T02:05:20.000Z" - }, - "events": [ - { - "uuid": "92cbec90-946a-4708-9dfe-ee65641a0b83", - "start": { - "$date": "2021-05-29T01:53:03.000Z" - }, - "end": { - "$date": "2021-05-29T02:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1caf5c32-9489-42ac-82d0-007f2d40521c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T02:16:41.000Z" - }, - "end": { - "$date": "2021-05-29T02:20:49.000Z" - }, - "events": [ - { - "uuid": "49e39a75-5928-4043-96ee-902b4ffec89c", - "start": { - "$date": "2021-05-29T02:16:41.000Z" - }, - "end": { - "$date": "2021-05-29T02:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f937bdc-0f0b-48ec-b46e-bb220b9d06b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T02:29:35.000Z" - }, - "end": { - "$date": "2021-05-29T02:37:04.000Z" - }, - "events": [ - { - "uuid": "9ab47314-d745-40df-8193-82c5230cb8c2", - "start": { - "$date": "2021-05-29T02:29:35.000Z" - }, - "end": { - "$date": "2021-05-29T02:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a3fa3486-36b4-454f-8e9b-84631d1c0ab4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T02:28:29.000Z" - }, - "end": { - "$date": "2021-05-29T03:56:16.000Z" - }, - "events": [ - { - "uuid": "6258e7f9-2b3d-4dca-8a50-2c9289884fae", - "start": { - "$date": "2021-05-29T02:28:29.000Z" - }, - "end": { - "$date": "2021-05-29T03:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "28b6d3e2-dd4a-4d2e-9c5e-d00656dc1451", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-29T02:35:12.000Z" - }, - "end": { - "$date": "2021-05-29T12:47:13.000Z" - }, - "events": [ - { - "uuid": "51dd9e1d-d952-4a8b-b2e6-adeaf5e2a66a", - "start": { - "$date": "2021-05-29T02:35:12.000Z" - }, - "end": { - "$date": "2021-05-29T04:13:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "382b571d-9045-4a4f-a73d-0f9ca7ca6af1", - "start": { - "$date": "2021-05-29T04:13:12.000Z" - }, - "end": { - "$date": "2021-05-29T04:18:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9b2f803-8967-4f58-b9e0-5e603609fdac", - "start": { - "$date": "2021-05-29T04:18:12.000Z" - }, - "end": { - "$date": "2021-05-29T04:28:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a34a007-2128-40e8-866b-5ae6eb9ad9de", - "start": { - "$date": "2021-05-29T04:28:12.000Z" - }, - "end": { - "$date": "2021-05-29T09:28:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11b9fa6f-d9e4-4c0c-b7cb-232539cca7b6", - "start": { - "$date": "2021-05-29T09:28:12.000Z" - }, - "end": { - "$date": "2021-05-29T09:38:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "adf4288d-3e35-4fba-a964-18d3e1df93b9", - "start": { - "$date": "2021-05-29T09:38:12.000Z" - }, - "end": { - "$date": "2021-05-29T12:47:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0927fef2-cdd4-4616-8b3d-cbb8914e3c06", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T02:42:12.000Z" - }, - "end": { - "$date": "2021-05-29T02:47:08.000Z" - }, - "events": [ - { - "uuid": "afb38994-55c4-43e8-a714-6d1dd3aa94d2", - "start": { - "$date": "2021-05-29T02:42:12.000Z" - }, - "end": { - "$date": "2021-05-29T02:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b769f126-e71b-42a8-8537-7b5768f11e1f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T02:55:03.000Z" - }, - "end": { - "$date": "2021-05-29T03:16:10.000Z" - }, - "events": [ - { - "uuid": "8ef32603-4345-4fc5-a640-f09fb2208c56", - "start": { - "$date": "2021-05-29T02:55:03.000Z" - }, - "end": { - "$date": "2021-05-29T03:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fb9d42f5-58fe-480e-ac00-4fd8af133b8c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T02:55:30.000Z" - }, - "end": { - "$date": "2021-05-29T03:09:37.000Z" - }, - "events": [ - { - "uuid": "955c2662-1abf-40f4-9c1a-892e653a6dbc", - "start": { - "$date": "2021-05-29T02:55:30.000Z" - }, - "end": { - "$date": "2021-05-29T03:09:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b7b7437c-f45d-426f-aea2-b93647265720", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T03:10:22.000Z" - }, - "end": { - "$date": "2021-05-29T05:45:50.000Z" - }, - "events": [ - { - "uuid": "0ec3e154-9c17-47fa-ae37-c4359b1a3cf5", - "start": { - "$date": "2021-05-29T03:10:22.000Z" - }, - "end": { - "$date": "2021-05-29T05:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d8d5ae9-22da-4666-b071-34605581ea5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T03:20:14.000Z" - }, - "end": { - "$date": "2021-05-29T03:44:54.000Z" - }, - "events": [ - { - "uuid": "d1323a63-27a7-4292-bc40-55f0e352f49f", - "start": { - "$date": "2021-05-29T03:20:14.000Z" - }, - "end": { - "$date": "2021-05-29T03:44:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "a5902231-b3f9-480a-baa6-d9afafbddfdd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-29T03:31:38.000Z" - }, - "end": { - "$date": "2021-05-29T07:49:37.000Z" - }, - "events": [ - { - "uuid": "901a948d-4d1b-4ca5-bd90-be3814759dc6", - "start": { - "$date": "2021-05-29T03:31:38.000Z" - }, - "end": { - "$date": "2021-05-29T07:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "03d15165-b60d-487d-ad74-30c0ba05efb5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T04:00:59.000Z" - }, - "end": { - "$date": "2021-05-29T05:14:42.000Z" - }, - "events": [ - { - "uuid": "2f1eaea6-d157-467e-baf0-aac54ee7b119", - "start": { - "$date": "2021-05-29T04:00:59.000Z" - }, - "end": { - "$date": "2021-05-29T05:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3282ad81-d061-4787-9c46-d07daed7a6e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T03:53:36.000Z" - }, - "end": { - "$date": "2021-05-29T04:22:46.000Z" - }, - "events": [ - { - "uuid": "4d2be84f-bd1c-4820-b8d2-6ef0a2a56d56", - "start": { - "$date": "2021-05-29T03:53:36.000Z" - }, - "end": { - "$date": "2021-05-29T04:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19431fa4-aad1-4056-b839-6a7d9ca779a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T03:58:26.000Z" - }, - "end": { - "$date": "2021-05-29T04:28:44.000Z" - }, - "events": [ - { - "uuid": "c97c0723-4eac-44b8-a2f5-1ed866d57eaa", - "start": { - "$date": "2021-05-29T03:58:26.000Z" - }, - "end": { - "$date": "2021-05-29T04:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba852475-884e-42c6-be20-be9ae035b120", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T04:29:13.000Z" - }, - "end": { - "$date": "2021-05-29T05:10:21.000Z" - }, - "events": [ - { - "uuid": "8837f15f-5416-4cce-85d3-644b92094efd", - "start": { - "$date": "2021-05-29T04:29:13.000Z" - }, - "end": { - "$date": "2021-05-29T05:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "999aacb7-114c-4e8d-ac0f-577b4762f9e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T04:28:49.000Z" - }, - "end": { - "$date": "2021-05-29T15:14:23.000Z" - }, - "events": [ - { - "uuid": "5c85931c-fc15-4c89-8459-10ce819068bf", - "start": { - "$date": "2021-05-29T04:28:49.000Z" - }, - "end": { - "$date": "2021-05-29T04:53:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "900efe1c-9260-4488-a5bc-65812e628d04", - "start": { - "$date": "2021-05-29T04:53:49.000Z" - }, - "end": { - "$date": "2021-05-29T14:33:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09493df2-94cb-4c89-9cf5-a2d7e6828362", - "start": { - "$date": "2021-05-29T14:33:49.000Z" - }, - "end": { - "$date": "2021-05-29T14:35:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fda3318b-de28-4561-a159-2687e475bb9c", - "start": { - "$date": "2021-05-29T14:35:49.000Z" - }, - "end": { - "$date": "2021-05-29T14:36:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3546ec40-cfe5-4804-8da9-168a705c7f45", - "start": { - "$date": "2021-05-29T14:36:49.000Z" - }, - "end": { - "$date": "2021-05-29T14:38:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2543780-e51e-4a9b-b1f3-07cdeaef0d00", - "start": { - "$date": "2021-05-29T14:38:49.000Z" - }, - "end": { - "$date": "2021-05-29T14:49:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a7b08b8-c3fa-4962-95c1-b2c4e37082be", - "start": { - "$date": "2021-05-29T14:49:49.000Z" - }, - "end": { - "$date": "2021-05-29T14:59:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d727032d-eec6-4672-8b14-d15be5f2e123", - "start": { - "$date": "2021-05-29T14:59:49.000Z" - }, - "end": { - "$date": "2021-05-29T15:04:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5a676c28-688e-47d0-a39a-2114268cb299", - "start": { - "$date": "2021-05-29T15:04:49.000Z" - }, - "end": { - "$date": "2021-05-29T15:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed258e74-3095-4f63-8fb5-05e78027d588", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T05:16:32.000Z" - }, - "end": { - "$date": "2021-05-29T06:01:40.000Z" - }, - "events": [ - { - "uuid": "d6c61a77-0c18-4cda-a2e5-854640553a68", - "start": { - "$date": "2021-05-29T05:16:32.000Z" - }, - "end": { - "$date": "2021-05-29T06:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7c992ec8-9928-43ee-84d9-84d70a1f8cde", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T05:40:46.000Z" - }, - "end": { - "$date": "2021-05-29T06:55:39.000Z" - }, - "events": [ - { - "uuid": "9cf9e5b2-68f9-49c3-9f31-bef8db1fa378", - "start": { - "$date": "2021-05-29T05:40:46.000Z" - }, - "end": { - "$date": "2021-05-29T06:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3300ef65-44c2-49fa-8a27-d424cfdbe1b7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T06:33:43.000Z" - }, - "end": { - "$date": "2021-05-29T07:23:32.000Z" - }, - "events": [ - { - "uuid": "258ae34b-7c89-4bf5-a171-0c7bcd0c5d8a", - "start": { - "$date": "2021-05-29T06:33:43.000Z" - }, - "end": { - "$date": "2021-05-29T07:23:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a86e6dfb-525b-4cbf-aa8b-50bb5a650047", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T06:38:34.000Z" - }, - "end": { - "$date": "2021-05-29T07:23:18.000Z" - }, - "events": [ - { - "uuid": "c75d2051-6544-4c29-80c9-da446d70b53a", - "start": { - "$date": "2021-05-29T06:38:34.000Z" - }, - "end": { - "$date": "2021-05-29T07:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e3ca8160-dc22-41eb-8f5a-d29af3e915af", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T06:56:54.000Z" - }, - "end": { - "$date": "2021-05-29T07:22:01.000Z" - }, - "events": [ - { - "uuid": "4946e08f-e989-4d14-a8e2-1e4c40e1af76", - "start": { - "$date": "2021-05-29T06:56:54.000Z" - }, - "end": { - "$date": "2021-05-29T07:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "52ec99e7-81bc-4e58-bf2f-19a7fd8f3cf9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T07:24:52.000Z" - }, - "end": { - "$date": "2021-05-29T08:15:44.000Z" - }, - "events": [ - { - "uuid": "34a3606e-ad70-4c93-8b0e-e45aef3b2a74", - "start": { - "$date": "2021-05-29T07:24:52.000Z" - }, - "end": { - "$date": "2021-05-29T08:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1148b430-ca23-4dee-9cef-2fe57ddd8795", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-29T13:11:04.000Z" - }, - "end": { - "$date": "2021-05-29T13:38:41.000Z" - }, - "events": [ - { - "uuid": "acd7e917-0bc6-401d-86bd-092d7dfdc85d", - "start": { - "$date": "2021-05-29T13:11:04.000Z" - }, - "end": { - "$date": "2021-05-29T13:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b70c66fe-ff53-4613-86d8-92a35cc43227", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T13:59:45.000Z" - }, - "end": { - "$date": "2021-05-29T15:06:30.000Z" - }, - "events": [ - { - "uuid": "00e9c9a7-8a2d-4182-ba48-57c32f36cb6e", - "start": { - "$date": "2021-05-29T13:59:45.000Z" - }, - "end": { - "$date": "2021-05-29T14:25:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b20787b-d1de-4f83-b208-606ee5616cbd", - "start": { - "$date": "2021-05-29T14:25:45.000Z" - }, - "end": { - "$date": "2021-05-29T14:28:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d498d9b7-c3ec-4631-b1f6-20064c9abfa2", - "start": { - "$date": "2021-05-29T14:28:45.000Z" - }, - "end": { - "$date": "2021-05-29T15:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ccd456fc-a777-48ac-98f1-e8a0aaad5264", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T15:19:04.000Z" - }, - "end": { - "$date": "2021-05-29T16:05:00.000Z" - }, - "events": [ - { - "uuid": "0b36c88b-a99a-4fe0-b65f-e21e998d5bc0", - "start": { - "$date": "2021-05-29T15:19:04.000Z" - }, - "end": { - "$date": "2021-05-29T16:05:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "a3d9e7f2-f0df-4f08-a730-eb71cde231fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T15:20:33.000Z" - }, - "end": { - "$date": "2021-05-29T16:31:44.000Z" - }, - "events": [ - { - "uuid": "f9ea6077-fd00-4540-ad57-b10e3d734d87", - "start": { - "$date": "2021-05-29T15:20:33.000Z" - }, - "end": { - "$date": "2021-05-29T16:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8ec73818-7f81-49a2-a06c-02f7b2e70836", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T16:01:58.000Z" - }, - "end": { - "$date": "2021-05-29T18:00:39.000Z" - }, - "events": [ - { - "uuid": "aaec5bac-f2f3-471f-ae1e-9e3a5a11a4d0", - "start": { - "$date": "2021-05-29T16:01:58.000Z" - }, - "end": { - "$date": "2021-05-29T18:00:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "230b6bd6-b6b9-4a41-a726-8c3aba3501b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T16:05:15.000Z" - }, - "end": { - "$date": "2021-05-29T17:34:31.000Z" - }, - "events": [ - { - "uuid": "fa694f8b-4f76-455f-8a69-34414291fb23", - "start": { - "$date": "2021-05-29T16:05:15.000Z" - }, - "end": { - "$date": "2021-05-29T17:34:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7e284a50-0f71-4ea8-86a1-647510358569", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-29T16:10:42.000Z" - }, - "end": { - "$date": "2021-05-30T04:58:37.000Z" - }, - "events": [ - { - "uuid": "ed3f12fe-6495-429f-b014-a186bbb97f86", - "start": { - "$date": "2021-05-29T16:10:42.000Z" - }, - "end": { - "$date": "2021-05-29T16:40:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f032e482-fe41-47eb-b5bd-7bd88c450603", - "start": { - "$date": "2021-05-29T16:40:42.000Z" - }, - "end": { - "$date": "2021-05-29T16:45:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58d61a1d-7be4-4e6b-8394-8a4df80add02", - "start": { - "$date": "2021-05-29T16:45:42.000Z" - }, - "end": { - "$date": "2021-05-29T20:19:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d3412fc-d356-4e5f-aae1-6edf9a532872", - "start": { - "$date": "2021-05-29T20:19:42.000Z" - }, - "end": { - "$date": "2021-05-29T20:24:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dda6fc08-d62e-4908-97fd-9355d616cc4e", - "start": { - "$date": "2021-05-29T20:24:42.000Z" - }, - "end": { - "$date": "2021-05-30T02:13:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b10d78d-9a9f-42f2-8ce3-19b0f6c349f7", - "start": { - "$date": "2021-05-30T02:13:42.000Z" - }, - "end": { - "$date": "2021-05-30T02:39:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ab998ebb-4dc3-45b6-9cfc-e4bc3ee4a145", - "start": { - "$date": "2021-05-30T02:39:42.000Z" - }, - "end": { - "$date": "2021-05-30T04:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "0c9e8f39-c1e5-485d-a04e-9dc6b170bf01", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T16:31:55.000Z" - }, - "end": { - "$date": "2021-05-29T18:24:43.000Z" - }, - "events": [ - { - "uuid": "28244eeb-dea1-4ed6-a276-51dee8948412", - "start": { - "$date": "2021-05-29T16:31:55.000Z" - }, - "end": { - "$date": "2021-05-29T18:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "963e7b82-def8-4aa9-a047-f49c979d1816", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T17:17:50.000Z" - }, - "end": { - "$date": "2021-05-29T17:33:44.000Z" - }, - "events": [ - { - "uuid": "f4f02c30-689d-4d5d-96f1-faac56b593d2", - "start": { - "$date": "2021-05-29T17:17:50.000Z" - }, - "end": { - "$date": "2021-05-29T17:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a2b8380-82e5-43b2-a8c9-c231da752ac5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T17:51:46.000Z" - }, - "end": { - "$date": "2021-05-29T17:59:10.000Z" - }, - "events": [ - { - "uuid": "b9bd4f75-a87d-43e2-a391-597416785db1", - "start": { - "$date": "2021-05-29T17:51:46.000Z" - }, - "end": { - "$date": "2021-05-29T17:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08c19529-1c98-42af-ac0c-2aae322b7891", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T18:00:53.000Z" - }, - "end": { - "$date": "2021-05-29T18:02:17.000Z" - }, - "events": [ - { - "uuid": "9f976a15-048c-461a-8717-bd5a5f9faad1", - "start": { - "$date": "2021-05-29T18:00:53.000Z" - }, - "end": { - "$date": "2021-05-29T18:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "480b9034-00df-454b-92f8-73deb8e93249", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T19:12:49.000Z" - }, - "end": { - "$date": "2021-05-29T20:29:08.000Z" - }, - "events": [ - { - "uuid": "85c145d4-5223-4bc3-bb81-779adc3f429d", - "start": { - "$date": "2021-05-29T19:12:49.000Z" - }, - "end": { - "$date": "2021-05-29T20:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "910b939b-6139-4f49-b1f8-130bcdbf7e09", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T18:02:43.000Z" - }, - "end": { - "$date": "2021-05-29T19:07:08.000Z" - }, - "events": [ - { - "uuid": "07109da1-5435-42f2-ae32-b79027c2eba8", - "start": { - "$date": "2021-05-29T18:02:43.000Z" - }, - "end": { - "$date": "2021-05-29T19:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "be1cb68b-c0d7-424a-9d06-3b0066834716", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T18:13:21.000Z" - }, - "end": { - "$date": "2021-05-29T18:13:36.000Z" - }, - "events": [ - { - "uuid": "263108d8-05f1-44fb-bac3-c6cbbd879007", - "start": { - "$date": "2021-05-29T18:13:21.000Z" - }, - "end": { - "$date": "2021-05-29T18:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f950a199-6cb9-4c1b-8070-046c576a02a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T18:14:06.000Z" - }, - "end": { - "$date": "2021-05-29T18:22:21.000Z" - }, - "events": [ - { - "uuid": "1dc16ad0-7463-4313-bab3-d41155a6dd53", - "start": { - "$date": "2021-05-29T18:14:06.000Z" - }, - "end": { - "$date": "2021-05-29T18:22:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f87494a1-d7f9-4038-a1f0-edfb7b0efcf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T18:22:46.000Z" - }, - "end": { - "$date": "2021-05-29T19:08:32.000Z" - }, - "events": [ - { - "uuid": "75f3cab8-473a-4d07-8a6c-677dac333642", - "start": { - "$date": "2021-05-29T18:22:46.000Z" - }, - "end": { - "$date": "2021-05-29T19:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5f2aef72-f6df-4aa3-943c-46cfc775a765", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T18:24:58.000Z" - }, - "end": { - "$date": "2021-05-29T19:14:49.000Z" - }, - "events": [ - { - "uuid": "ff238101-8aac-4446-acfe-44e30567f3c3", - "start": { - "$date": "2021-05-29T18:24:58.000Z" - }, - "end": { - "$date": "2021-05-29T19:14:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5251e23c-821b-490d-afdf-34a970753c0d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T19:40:41.000Z" - }, - "end": { - "$date": "2021-05-29T20:07:23.000Z" - }, - "events": [ - { - "uuid": "a5f7403c-7aa1-4689-aaab-8d6601c49baa", - "start": { - "$date": "2021-05-29T19:40:41.000Z" - }, - "end": { - "$date": "2021-05-29T20:07:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e498c99f-4464-417a-ab92-7bfd7d5bdd29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T20:08:14.000Z" - }, - "end": { - "$date": "2021-05-29T20:39:40.000Z" - }, - "events": [ - { - "uuid": "3e319f8e-fbc2-410d-90e0-894453307b44", - "start": { - "$date": "2021-05-29T20:08:14.000Z" - }, - "end": { - "$date": "2021-05-29T20:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df106288-4b73-49d6-a12e-83bdd678fa28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T20:17:22.000Z" - }, - "end": { - "$date": "2021-05-29T20:49:43.000Z" - }, - "events": [ - { - "uuid": "a690c53d-0e48-4bd0-8954-9ea9522f3a32", - "start": { - "$date": "2021-05-29T20:17:22.000Z" - }, - "end": { - "$date": "2021-05-29T20:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "8cd9a022-d6d1-4a67-84c3-aff66a047e5a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T20:20:33.000Z" - }, - "end": { - "$date": "2021-05-29T20:25:38.000Z" - }, - "events": [ - { - "uuid": "c1049938-54c2-40b7-a137-e7930d146501", - "start": { - "$date": "2021-05-29T20:20:33.000Z" - }, - "end": { - "$date": "2021-05-29T20:25:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "b36639c6-7ae0-4388-965c-eec2f4a97a80", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-29T20:36:15.000Z" - }, - "end": { - "$date": "2021-05-29T22:06:01.000Z" - }, - "events": [ - { - "uuid": "778950ed-467f-4f31-bcc0-2759fcc54d4f", - "start": { - "$date": "2021-05-29T20:36:15.000Z" - }, - "end": { - "$date": "2021-05-29T22:06:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5602b4e7-2430-46c1-a645-9ea0bfbde7ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T20:42:30.000Z" - }, - "end": { - "$date": "2021-05-29T21:05:26.000Z" - }, - "events": [ - { - "uuid": "02e23a94-bb45-4f88-b645-d88b4239ce49", - "start": { - "$date": "2021-05-29T20:42:30.000Z" - }, - "end": { - "$date": "2021-05-29T21:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04c67789-ed49-4f36-93ba-eb84bcffc324", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T20:58:29.000Z" - }, - "end": { - "$date": "2021-05-29T21:14:37.000Z" - }, - "events": [ - { - "uuid": "2caf6c7b-c5db-4a7e-a293-20ec1589a797", - "start": { - "$date": "2021-05-29T20:58:29.000Z" - }, - "end": { - "$date": "2021-05-29T21:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b56adb4-bb8e-4d33-9be6-bbc5e01b9898", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T21:32:41.000Z" - }, - "end": { - "$date": "2021-05-29T21:56:39.000Z" - }, - "events": [ - { - "uuid": "62a43216-872c-43f3-8cea-ea5df73d58fc", - "start": { - "$date": "2021-05-29T21:32:41.000Z" - }, - "end": { - "$date": "2021-05-29T21:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b4b27407-b532-413c-a04c-a3f29d63daf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-29T21:40:03.000Z" - }, - "end": { - "$date": "2021-05-30T03:38:15.000Z" - }, - "events": [ - { - "uuid": "1fd78398-ea43-4847-ad67-9ba1e68106aa", - "start": { - "$date": "2021-05-29T21:40:03.000Z" - }, - "end": { - "$date": "2021-05-29T21:51:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e87ef9c6-4166-461c-89b0-dd50add5f87f", - "start": { - "$date": "2021-05-29T21:51:03.000Z" - }, - "end": { - "$date": "2021-05-29T22:01:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce69327d-88b1-4c62-a581-9941b19d0e50", - "start": { - "$date": "2021-05-29T22:01:03.000Z" - }, - "end": { - "$date": "2021-05-29T22:11:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3572ca0b-db4f-408f-8a2a-91becae23650", - "start": { - "$date": "2021-05-29T22:11:03.000Z" - }, - "end": { - "$date": "2021-05-29T22:12:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73f92794-5282-475e-9658-212641c21730", - "start": { - "$date": "2021-05-29T22:12:03.000Z" - }, - "end": { - "$date": "2021-05-29T23:56:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "548a22b0-4f36-4602-ba85-fcd57b118c93", - "start": { - "$date": "2021-05-29T23:56:03.000Z" - }, - "end": { - "$date": "2021-05-30T00:09:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "448a92ff-4fca-4706-95a6-97fecdefa5f2", - "start": { - "$date": "2021-05-30T00:09:03.000Z" - }, - "end": { - "$date": "2021-05-30T03:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1767b16-ed5f-440f-97f9-f611007a2b84", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T22:45:08.000Z" - }, - "end": { - "$date": "2021-05-29T23:12:29.000Z" - }, - "events": [ - { - "uuid": "7c01e4e7-272f-4892-bc86-b43a16755bab", - "start": { - "$date": "2021-05-29T22:45:08.000Z" - }, - "end": { - "$date": "2021-05-29T23:12:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4d46316-d810-4114-8e86-507f942bd617", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-29T23:13:36.000Z" - }, - "end": { - "$date": "2021-05-29T23:52:20.000Z" - }, - "events": [ - { - "uuid": "d38e6990-27d1-4b52-9d71-418ba6723a77", - "start": { - "$date": "2021-05-29T23:13:36.000Z" - }, - "end": { - "$date": "2021-05-29T23:52:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4348306-c4f5-49a7-94be-8ecf174c330d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-29T23:13:25.000Z" - }, - "end": { - "$date": "2021-05-29T23:52:17.000Z" - }, - "events": [ - { - "uuid": "2f5f1c0f-90c1-4a92-99c9-0e9da75b196e", - "start": { - "$date": "2021-05-29T23:13:25.000Z" - }, - "end": { - "$date": "2021-05-29T23:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "60699c54-9803-4ca2-a1b8-02358a171f16", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-29T23:37:57.000Z" - }, - "end": { - "$date": "2021-05-30T00:27:28.000Z" - }, - "events": [ - { - "uuid": "b2218ec4-c959-405c-b41a-bc61df274d61", - "start": { - "$date": "2021-05-29T23:37:57.000Z" - }, - "end": { - "$date": "2021-05-30T00:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b735d88-efa9-4a4e-9a36-21f3b6dbd35e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T00:05:05.000Z" - }, - "end": { - "$date": "2021-05-30T00:36:10.000Z" - }, - "events": [ - { - "uuid": "07bac127-2ed5-47c9-a15b-dd87f3c9c264", - "start": { - "$date": "2021-05-30T00:05:05.000Z" - }, - "end": { - "$date": "2021-05-30T00:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96f0dd26-bec8-42df-b5c0-5136bcebaa5f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-30T00:55:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:24:08.000Z" - }, - "events": [ - { - "uuid": "d0ff2988-5ea7-4921-a4c7-63e1ba64ce5b", - "start": { - "$date": "2021-05-30T00:55:02.000Z" - }, - "end": { - "$date": "2021-05-30T02:29:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "886d1321-ac2b-4f84-b0a0-61d2a3ba3c97", - "start": { - "$date": "2021-05-30T02:29:02.000Z" - }, - "end": { - "$date": "2021-05-30T02:57:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3bd9d6a4-b848-4cb5-b426-0ac4a9f7ff36", - "start": { - "$date": "2021-05-30T02:57:02.000Z" - }, - "end": { - "$date": "2021-05-30T03:07:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e99efece-6f30-420c-89c6-1574011ac74c", - "start": { - "$date": "2021-05-30T03:07:02.000Z" - }, - "end": { - "$date": "2021-05-30T03:10:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e107b674-47ab-4365-aeba-11a3e1e87836", - "start": { - "$date": "2021-05-30T03:10:02.000Z" - }, - "end": { - "$date": "2021-05-30T04:30:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6318926a-c1cc-48a9-b55a-1f7cf23fcf4c", - "start": { - "$date": "2021-05-30T04:30:02.000Z" - }, - "end": { - "$date": "2021-05-30T04:33:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6585c0e2-2a78-45ab-9907-83633ec87b77", - "start": { - "$date": "2021-05-30T04:33:02.000Z" - }, - "end": { - "$date": "2021-05-30T05:22:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "153c2021-e100-4bad-9d2d-bede932fcf67", - "start": { - "$date": "2021-05-30T05:22:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:00:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5628c477-bf66-402f-9642-7d308c5925f2", - "start": { - "$date": "2021-05-30T15:00:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:02:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a21f59c2-7616-4f7c-a375-526df272e996", - "start": { - "$date": "2021-05-30T15:02:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:23:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec6bd20f-b23e-4136-9072-747f484c9935", - "start": { - "$date": "2021-05-30T15:23:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:39:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f860dbfb-b6ae-4dd9-bd9c-ecf69545d112", - "start": { - "$date": "2021-05-30T15:39:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:48:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2675a102-880f-4803-88eb-46c747ff2a2f", - "start": { - "$date": "2021-05-30T15:48:02.000Z" - }, - "end": { - "$date": "2021-05-30T15:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90aa4cd9-4ffa-4816-a7db-6baff96a6dc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T01:13:32.000Z" - }, - "end": { - "$date": "2021-05-30T01:35:06.000Z" - }, - "events": [ - { - "uuid": "721577e8-5529-4b2b-98b3-f7856238c9a8", - "start": { - "$date": "2021-05-30T01:13:32.000Z" - }, - "end": { - "$date": "2021-05-30T01:35:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ef92e99b-2c74-43ac-a483-e16964459207", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-30T01:28:03.000Z" - }, - "end": { - "$date": "2021-05-30T06:08:03.000Z" - }, - "events": [ - { - "uuid": "19d09cb5-a2a4-495f-84af-4d0c11048e7f", - "start": { - "$date": "2021-05-30T01:28:03.000Z" - }, - "end": { - "$date": "2021-05-30T04:08:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7d4f404d-2782-45ea-ab20-2de53521d224", - "start": { - "$date": "2021-05-30T04:08:03.000Z" - }, - "end": { - "$date": "2021-05-30T04:10:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "88888f05-da2f-4141-9aba-186aa3c55ab5", - "start": { - "$date": "2021-05-30T04:10:03.000Z" - }, - "end": { - "$date": "2021-05-30T04:33:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8dfcd007-d390-46d6-a34f-688a417375c2", - "start": { - "$date": "2021-05-30T04:33:03.000Z" - }, - "end": { - "$date": "2021-05-30T04:35:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "148e92b4-862f-441f-af13-dc320903435a", - "start": { - "$date": "2021-05-30T04:35:03.000Z" - }, - "end": { - "$date": "2021-05-30T04:48:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "27562f6b-b800-430b-b05a-c6b3f613ec6f", - "start": { - "$date": "2021-05-30T04:48:03.000Z" - }, - "end": { - "$date": "2021-05-30T05:17:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "55b312d9-14d6-4fa6-b20c-334b5d50b461", - "start": { - "$date": "2021-05-30T05:17:03.000Z" - }, - "end": { - "$date": "2021-05-30T05:19:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a1621eb-1263-4003-9180-7588e6aa3231", - "start": { - "$date": "2021-05-30T05:19:03.000Z" - }, - "end": { - "$date": "2021-05-30T05:51:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "553184a4-2fe4-4b48-8810-270126b13a44", - "start": { - "$date": "2021-05-30T05:51:03.000Z" - }, - "end": { - "$date": "2021-05-30T05:55:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5a617ed-6713-4f28-8cb1-f44537f73f8c", - "start": { - "$date": "2021-05-30T05:55:03.000Z" - }, - "end": { - "$date": "2021-05-30T06:02:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2f84321c-173f-4a1f-bcc0-3457e4f0a78d", - "start": { - "$date": "2021-05-30T06:02:03.000Z" - }, - "end": { - "$date": "2021-05-30T06:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e056c239-87ae-4655-b73e-db8911020383", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T01:39:04.000Z" - }, - "end": { - "$date": "2021-05-30T02:15:29.000Z" - }, - "events": [ - { - "uuid": "925f93aa-584e-4e69-bade-c174f24dcd27", - "start": { - "$date": "2021-05-30T01:39:04.000Z" - }, - "end": { - "$date": "2021-05-30T02:15:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06150e33-7c2d-442a-9543-8e07acb0c416", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T02:18:03.000Z" - }, - "end": { - "$date": "2021-05-30T02:21:32.000Z" - }, - "events": [ - { - "uuid": "7f51f5f8-62e0-438e-9c77-b722d445f619", - "start": { - "$date": "2021-05-30T02:18:03.000Z" - }, - "end": { - "$date": "2021-05-30T02:21:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "220e77e1-d5e0-4578-b979-c7c1b0a6c909", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T02:29:02.000Z" - }, - "end": { - "$date": "2021-05-30T02:49:47.000Z" - }, - "events": [ - { - "uuid": "411d3701-aa40-4810-bbd1-6da3a84520bc", - "start": { - "$date": "2021-05-30T02:29:02.000Z" - }, - "end": { - "$date": "2021-05-30T02:49:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef329896-1efd-4fa5-a700-213162c5e8b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T03:19:19.000Z" - }, - "end": { - "$date": "2021-05-30T03:32:37.000Z" - }, - "events": [ - { - "uuid": "60510e26-98fe-420d-a080-ac7a2bcb6a2c", - "start": { - "$date": "2021-05-30T03:19:19.000Z" - }, - "end": { - "$date": "2021-05-30T03:31:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12800ee0-ddfd-4736-bd86-d2d4a4b2ee04", - "start": { - "$date": "2021-05-30T03:31:19.000Z" - }, - "end": { - "$date": "2021-05-30T03:33:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "799293d5-6922-4543-a945-0734349dd4b2", - "start": { - "$date": "2021-05-30T03:33:19.000Z" - }, - "end": { - "$date": "2021-05-30T03:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2492f381-2fd8-4b37-808d-2c79914597ff", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-30T03:04:04.000Z" - }, - "end": { - "$date": "2021-05-30T03:10:17.000Z" - }, - "events": [ - { - "uuid": "feb4f9dc-a7f9-4802-b64d-731574b2026d", - "start": { - "$date": "2021-05-30T03:04:04.000Z" - }, - "end": { - "$date": "2021-05-30T03:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "972157bf-9bc1-425e-b197-4ff76a6efe28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T03:11:54.000Z" - }, - "end": { - "$date": "2021-05-30T03:13:14.000Z" - }, - "events": [ - { - "uuid": "dfa73c08-7e4e-4066-969e-0e2d02b8fe9c", - "start": { - "$date": "2021-05-30T03:11:54.000Z" - }, - "end": { - "$date": "2021-05-30T03:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "adbd9563-706f-45b3-b2b0-8ff2664ed242", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T03:14:54.000Z" - }, - "end": { - "$date": "2021-05-30T03:39:30.000Z" - }, - "events": [ - { - "uuid": "39a65492-74a7-482f-9f7e-345252da3041", - "start": { - "$date": "2021-05-30T03:14:54.000Z" - }, - "end": { - "$date": "2021-05-30T03:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bada37a5-ff41-49cb-86e8-fa111d9cb057", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-30T03:19:20.000Z" - }, - "end": { - "$date": "2021-05-30T03:32:34.000Z" - }, - "events": [ - { - "uuid": "5e4890af-60f0-44f4-88d5-a847d9e5d45c", - "start": { - "$date": "2021-05-30T03:19:20.000Z" - }, - "end": { - "$date": "2021-05-30T03:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5d0a869-5f08-45e6-a3e4-9d897a99c69f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T03:38:06.000Z" - }, - "end": { - "$date": "2021-05-30T03:58:14.000Z" - }, - "events": [ - { - "uuid": "8d00177a-22f4-4a38-b3cb-f839765065ff", - "start": { - "$date": "2021-05-30T03:38:06.000Z" - }, - "end": { - "$date": "2021-05-30T03:58:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1277cde-f2dd-4418-bd95-253117930d18", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-30T03:38:57.000Z" - }, - "end": { - "$date": "2021-05-30T03:58:03.000Z" - }, - "events": [ - { - "uuid": "63fb3755-b11b-4650-82a2-25c2990db280", - "start": { - "$date": "2021-05-30T03:38:57.000Z" - }, - "end": { - "$date": "2021-05-30T03:58:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7413853-6a7d-4975-b6a4-239127068c97", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T04:01:58.000Z" - }, - "end": { - "$date": "2021-05-30T04:18:32.000Z" - }, - "events": [ - { - "uuid": "f50f9acf-2a98-4054-9d44-dd44d00b814d", - "start": { - "$date": "2021-05-30T04:01:58.000Z" - }, - "end": { - "$date": "2021-05-30T04:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29639f7c-91fd-4137-9fd4-4bbbc04f8543", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-05-30T04:03:38.000Z" - }, - "end": { - "$date": "2021-05-30T04:18:25.000Z" - }, - "events": [ - { - "uuid": "8adf8e82-ed52-4c0f-a82d-801cdd45af3c", - "start": { - "$date": "2021-05-30T04:03:38.000Z" - }, - "end": { - "$date": "2021-05-30T04:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb547daf-4103-4b85-8cb4-1b1023ce966c", - "uuid": "05f1ccea-a1f2-4e24-a4c3-b952526c708c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-05-30T03:59:54.000Z" - }, - "end": { - "$date": "2021-05-30T07:38:30.000Z" - }, - "events": [ - { - "uuid": "04493901-ad77-400a-b114-1c12d4452e6b", - "start": { - "$date": "2021-05-30T03:59:54.000Z" - }, - "end": { - "$date": "2021-05-30T07:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "5b78ebd9-8883-4a10-b284-c816edd20bab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T04:17:36.000Z" - }, - "end": { - "$date": "2021-05-30T04:33:41.000Z" - }, - "events": [ - { - "uuid": "c55eac24-458a-4505-bb86-fca79889509b", - "start": { - "$date": "2021-05-30T04:17:36.000Z" - }, - "end": { - "$date": "2021-05-30T04:33:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91fb3f40-1a2a-4683-a97c-765d3479560d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T04:23:15.000Z" - }, - "end": { - "$date": "2021-05-30T04:52:02.000Z" - }, - "events": [ - { - "uuid": "0211c2fa-d6c0-4fe5-9c58-110d0016a26a", - "start": { - "$date": "2021-05-30T04:23:15.000Z" - }, - "end": { - "$date": "2021-05-30T04:52:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "818470ff-d784-4fde-9f14-cc6e74da5eb5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T04:58:47.000Z" - }, - "end": { - "$date": "2021-05-30T05:36:12.000Z" - }, - "events": [ - { - "uuid": "ca1ebad4-9dd8-4ee8-b261-e82aa7ca296c", - "start": { - "$date": "2021-05-30T04:58:47.000Z" - }, - "end": { - "$date": "2021-05-30T05:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "4aea9271-8b70-4bf3-808c-b11fbd9c4ee0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T04:58:25.000Z" - }, - "end": { - "$date": "2021-05-30T05:44:37.000Z" - }, - "events": [ - { - "uuid": "f699421b-c037-40cc-bb51-c13cb96b6437", - "start": { - "$date": "2021-05-30T04:58:25.000Z" - }, - "end": { - "$date": "2021-05-30T05:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8bc3214a-f7cf-4d88-8f62-ba8835a79f41", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-30T04:58:46.000Z" - }, - "end": { - "$date": "2021-05-30T06:32:24.000Z" - }, - "events": [ - { - "uuid": "64f84f65-6ee1-4b17-b1b0-05b2db5a6f3a", - "start": { - "$date": "2021-05-30T04:58:46.000Z" - }, - "end": { - "$date": "2021-05-30T06:32:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "704fb9ff-2111-4f66-8aec-2d02b00f8265", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T05:44:44.000Z" - }, - "end": { - "$date": "2021-05-30T06:11:45.000Z" - }, - "events": [ - { - "uuid": "2766d402-f2eb-4345-8cc3-7cb9d6cc278f", - "start": { - "$date": "2021-05-30T05:44:44.000Z" - }, - "end": { - "$date": "2021-05-30T06:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "591cb129-67da-42f0-bb4c-69e8e406e053", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-30T06:32:59.000Z" - }, - "end": { - "$date": "2021-05-30T07:49:30.000Z" - }, - "events": [ - { - "uuid": "73bffa88-ced5-4ca5-8c94-06aa946b1eef", - "start": { - "$date": "2021-05-30T06:32:59.000Z" - }, - "end": { - "$date": "2021-05-30T07:49:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e7ee6f76-eab7-4592-bf6f-885c9e38285b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T13:53:12.000Z" - }, - "end": { - "$date": "2021-05-30T14:53:33.000Z" - }, - "events": [ - { - "uuid": "98b89243-3660-458c-b813-11b2306f3653", - "start": { - "$date": "2021-05-30T13:53:12.000Z" - }, - "end": { - "$date": "2021-05-30T14:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f8ce278a-e830-4ac5-b303-f3f4cf907d42", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T14:16:49.000Z" - }, - "end": { - "$date": "2021-05-30T15:02:55.000Z" - }, - "events": [ - { - "uuid": "812ac0ba-52de-41df-a9b1-1f70b9d2720c", - "start": { - "$date": "2021-05-30T14:16:49.000Z" - }, - "end": { - "$date": "2021-05-30T15:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "3786e696-9640-439f-babb-25c79b075fb1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T14:53:38.000Z" - }, - "end": { - "$date": "2021-05-30T17:28:43.000Z" - }, - "events": [ - { - "uuid": "bc778a69-cdc5-4caa-90fd-6245609432ac", - "start": { - "$date": "2021-05-30T14:53:38.000Z" - }, - "end": { - "$date": "2021-05-30T17:28:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "76fd8fe5-28b7-4c23-9e3f-4ada98bce40a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T15:03:06.000Z" - }, - "end": { - "$date": "2021-05-30T17:28:45.000Z" - }, - "events": [ - { - "uuid": "031ab364-517a-4de4-8803-a6f1af32c3aa", - "start": { - "$date": "2021-05-30T15:03:06.000Z" - }, - "end": { - "$date": "2021-05-30T17:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "559f8b2c-87c1-402d-8553-18a0e13f0b13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-30T17:28:51.000Z" - }, - "end": { - "$date": "2021-05-30T18:43:48.000Z" - }, - "events": [ - { - "uuid": "37dc9466-1add-4bd8-913a-6d0a370a0629", - "start": { - "$date": "2021-05-30T17:28:51.000Z" - }, - "end": { - "$date": "2021-05-30T18:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8b67bb11-caf0-4e45-90ce-9fe39e673253", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T17:29:53.000Z" - }, - "end": { - "$date": "2021-05-30T18:24:32.000Z" - }, - "events": [ - { - "uuid": "6b5c878d-fbd2-4d63-b1e6-680e38689c92", - "start": { - "$date": "2021-05-30T17:29:53.000Z" - }, - "end": { - "$date": "2021-05-30T18:24:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91b143d7-636a-4687-8834-7dce3a5ad730", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T17:56:24.000Z" - }, - "end": { - "$date": "2021-05-30T18:28:53.000Z" - }, - "events": [ - { - "uuid": "1f0a3589-c699-415f-bdc7-228cf9475642", - "start": { - "$date": "2021-05-30T17:56:24.000Z" - }, - "end": { - "$date": "2021-05-30T18:28:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6efa3f20-e04c-48be-9e62-a9ea8280addc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T18:34:47.000Z" - }, - "end": { - "$date": "2021-05-30T19:09:27.000Z" - }, - "events": [ - { - "uuid": "7ea66d26-ca01-4365-b6fd-5cf9c0c49372", - "start": { - "$date": "2021-05-30T18:34:47.000Z" - }, - "end": { - "$date": "2021-05-30T19:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45da35e1-5e25-4689-a851-51ec30e8e872", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-30T18:35:38.000Z" - }, - "end": { - "$date": "2021-05-30T19:09:30.000Z" - }, - "events": [ - { - "uuid": "32c812d7-b0b7-4127-9870-d585947fe3fe", - "start": { - "$date": "2021-05-30T18:35:38.000Z" - }, - "end": { - "$date": "2021-05-30T19:09:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5cb0d84c-c4cd-48cb-acbb-61264c46e6bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T18:49:02.000Z" - }, - "end": { - "$date": "2021-05-30T19:12:48.000Z" - }, - "events": [ - { - "uuid": "3fbe9165-eda8-4061-a016-ebd09752b79a", - "start": { - "$date": "2021-05-30T18:49:02.000Z" - }, - "end": { - "$date": "2021-05-30T19:04:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "031f5a5a-cbcc-4c8f-9ff1-9f78feead9c8", - "start": { - "$date": "2021-05-30T19:04:02.000Z" - }, - "end": { - "$date": "2021-05-30T19:09:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d03cf0d1-d6c2-4fef-84dd-5ab114e91980", - "start": { - "$date": "2021-05-30T19:09:02.000Z" - }, - "end": { - "$date": "2021-05-30T19:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "19de3c02-1f5a-4f79-9165-f4be4044d4ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T19:11:48.000Z" - }, - "end": { - "$date": "2021-05-30T21:04:54.000Z" - }, - "events": [ - { - "uuid": "8712a246-bb9f-4014-8524-5acd9ffea4a5", - "start": { - "$date": "2021-05-30T19:11:48.000Z" - }, - "end": { - "$date": "2021-05-30T20:06:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d05caaa2-b129-4808-99cc-12178cb63648", - "start": { - "$date": "2021-05-30T20:06:48.000Z" - }, - "end": { - "$date": "2021-05-30T20:20:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c0b1aa8-7356-4817-b8b4-d2e020383535", - "start": { - "$date": "2021-05-30T20:20:48.000Z" - }, - "end": { - "$date": "2021-05-30T21:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "372796fe-f645-47b6-9c11-dd07ad007786", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-30T19:12:14.000Z" - }, - "end": { - "$date": "2021-05-30T19:51:05.000Z" - }, - "events": [ - { - "uuid": "b099022d-dc94-4837-89d7-427e5e47f5ee", - "start": { - "$date": "2021-05-30T19:12:14.000Z" - }, - "end": { - "$date": "2021-05-30T19:51:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "24f13b13-63a5-4e58-b741-111125016b17", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-30T19:17:36.000Z" - }, - "end": { - "$date": "2021-05-30T19:51:35.000Z" - }, - "events": [ - { - "uuid": "66fc576f-b63f-4332-aa7a-f39248b71d62", - "start": { - "$date": "2021-05-30T19:17:36.000Z" - }, - "end": { - "$date": "2021-05-30T19:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "63b1ad75-409c-4628-9362-d0d622af6354", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-30T19:19:09.000Z" - }, - "end": { - "$date": "2021-05-31T00:25:55.000Z" - }, - "events": [ - { - "uuid": "dc899ee2-7ccb-4c58-8a86-b05881d43887", - "start": { - "$date": "2021-05-30T19:19:09.000Z" - }, - "end": { - "$date": "2021-05-30T22:03:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6b059ce6-fdbd-4990-a93c-180e7ab64e0b", - "start": { - "$date": "2021-05-30T22:03:09.000Z" - }, - "end": { - "$date": "2021-05-30T22:08:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0b5280f0-aad4-4bbf-8015-1f028fa6d3f6", - "start": { - "$date": "2021-05-30T22:08:09.000Z" - }, - "end": { - "$date": "2021-05-30T22:18:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19dc315c-efe3-4600-9d8d-b15b54935903", - "start": { - "$date": "2021-05-30T22:18:09.000Z" - }, - "end": { - "$date": "2021-05-30T22:33:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "76eefe57-e325-4794-98b4-76a347ce0548", - "start": { - "$date": "2021-05-30T22:33:09.000Z" - }, - "end": { - "$date": "2021-05-30T22:59:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a69d7216-eabb-4f63-94ce-df336603d9d4", - "start": { - "$date": "2021-05-30T22:59:09.000Z" - }, - "end": { - "$date": "2021-05-30T23:02:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dfcc24c3-9b56-4e51-9d8a-d9437da7aa9d", - "start": { - "$date": "2021-05-30T23:02:09.000Z" - }, - "end": { - "$date": "2021-05-31T00:25:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "dd76691f-faf1-441c-ab30-cd655b51ff53", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T20:16:36.000Z" - }, - "end": { - "$date": "2021-05-30T20:18:11.000Z" - }, - "events": [ - { - "uuid": "9af5d388-6562-43e2-8cab-b8360ee09b2c", - "start": { - "$date": "2021-05-30T20:16:36.000Z" - }, - "end": { - "$date": "2021-05-30T20:18:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "59492c4d-1577-4a45-9239-47e97ac4a399", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T20:18:21.000Z" - }, - "end": { - "$date": "2021-05-30T20:42:41.000Z" - }, - "events": [ - { - "uuid": "870ed959-9040-4abc-80b8-774b4b92fab4", - "start": { - "$date": "2021-05-30T20:18:21.000Z" - }, - "end": { - "$date": "2021-05-30T20:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "589a49e3-00cf-41ac-81ca-62f4773279ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-30T20:24:56.000Z" - }, - "end": { - "$date": "2021-05-30T21:04:46.000Z" - }, - "events": [ - { - "uuid": "2d591199-9694-4206-b99d-0085a1c15a1d", - "start": { - "$date": "2021-05-30T20:24:56.000Z" - }, - "end": { - "$date": "2021-05-30T21:04:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0c4a4652-7df4-4f4b-b96b-709b13022624", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-30T20:26:50.000Z" - }, - "end": { - "$date": "2021-05-30T21:04:44.000Z" - }, - "events": [ - { - "uuid": "1f15e251-4612-4daa-9199-951c21f57a86", - "start": { - "$date": "2021-05-30T20:26:50.000Z" - }, - "end": { - "$date": "2021-05-30T21:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "63c69825-1a44-41e9-a0b5-db866deb8d2d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-30T21:05:23.000Z" - }, - "end": { - "$date": "2021-05-30T21:06:49.000Z" - }, - "events": [ - { - "uuid": "32d895d3-5c54-4f94-a2d3-023796924b74", - "start": { - "$date": "2021-05-30T21:05:23.000Z" - }, - "end": { - "$date": "2021-05-30T21:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d1a8f88-d76c-4078-bde1-37cd2f77ab3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T21:11:17.000Z" - }, - "end": { - "$date": "2021-05-30T21:33:25.000Z" - }, - "events": [ - { - "uuid": "622d5cf0-b946-4aaa-b764-58b6c5c70a68", - "start": { - "$date": "2021-05-30T21:11:17.000Z" - }, - "end": { - "$date": "2021-05-30T21:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c23996e9-0334-42de-93f8-982c7987437b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-30T21:07:58.000Z" - }, - "end": { - "$date": "2021-05-30T21:35:04.000Z" - }, - "events": [ - { - "uuid": "663daafa-da4f-4370-abad-30468fcf4103", - "start": { - "$date": "2021-05-30T21:07:58.000Z" - }, - "end": { - "$date": "2021-05-30T21:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "fb8e4dca-8826-455c-8ec7-8140850889bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T21:17:53.000Z" - }, - "end": { - "$date": "2021-05-30T21:19:34.000Z" - }, - "events": [ - { - "uuid": "fd22e6cb-e694-4459-a39d-06f0be24db7a", - "start": { - "$date": "2021-05-30T21:17:53.000Z" - }, - "end": { - "$date": "2021-05-30T21:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "0c43b788-f078-4cc6-8cc1-73632c4cb1b9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T21:20:29.000Z" - }, - "end": { - "$date": "2021-05-30T21:21:59.000Z" - }, - "events": [ - { - "uuid": "7bd55ff3-2a00-451b-a2e9-66ea06eabcaf", - "start": { - "$date": "2021-05-30T21:20:29.000Z" - }, - "end": { - "$date": "2021-05-30T21:21:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aad54e6d-96b6-4f94-824c-6ca22a486937", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-30T21:35:18.000Z" - }, - "end": { - "$date": "2021-05-30T23:55:47.000Z" - }, - "events": [ - { - "uuid": "7f2b22f2-0a05-452a-a6be-fac790aafb49", - "start": { - "$date": "2021-05-30T21:35:18.000Z" - }, - "end": { - "$date": "2021-05-30T23:55:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fb643a1f-6b32-4465-ae3d-f9c1b239e027", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-30T21:35:33.000Z" - }, - "end": { - "$date": "2021-05-31T00:29:44.000Z" - }, - "events": [ - { - "uuid": "9983afe6-ff5c-47e6-901f-7748accfbd03", - "start": { - "$date": "2021-05-30T21:35:33.000Z" - }, - "end": { - "$date": "2021-05-31T00:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "621f4e6c-17e0-47ba-a43e-8c9ef7d5f195", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-30T23:59:32.000Z" - }, - "end": { - "$date": "2021-05-31T02:08:09.000Z" - }, - "events": [ - { - "uuid": "163e3245-67d4-4ad7-8c36-376376ba3b5e", - "start": { - "$date": "2021-05-30T23:59:32.000Z" - }, - "end": { - "$date": "2021-05-31T04:06:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8329465b-430a-4035-9b1c-04ca549bf11a", - "start": { - "$date": "2021-05-31T04:06:32.000Z" - }, - "end": { - "$date": "2021-05-31T04:15:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "37e403e3-5b41-422a-897a-2bdd06bd2a51", - "start": { - "$date": "2021-05-31T04:15:32.000Z" - }, - "end": { - "$date": "2021-05-31T02:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "8340186b-e714-4525-99e0-5278f284d4ec", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T21:46:10.000Z" - }, - "end": { - "$date": "2021-05-30T21:47:20.000Z" - }, - "events": [ - { - "uuid": "b364f119-e44d-4b4c-9eef-c04577ff0c5a", - "start": { - "$date": "2021-05-30T21:46:10.000Z" - }, - "end": { - "$date": "2021-05-30T21:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "76b8b3cf-29ff-44d3-808b-72daf7932904", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T21:54:31.000Z" - }, - "end": { - "$date": "2021-05-30T21:55:51.000Z" - }, - "events": [ - { - "uuid": "88ea838a-ff3d-40e3-a041-d6a51cfe166f", - "start": { - "$date": "2021-05-30T21:54:31.000Z" - }, - "end": { - "$date": "2021-05-30T21:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "be4212a9-6fc1-4328-85b6-8584fba12356", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T21:59:07.000Z" - }, - "end": { - "$date": "2021-05-30T22:05:02.000Z" - }, - "events": [ - { - "uuid": "917204e1-3969-483e-9cfe-b21677ee6077", - "start": { - "$date": "2021-05-30T21:59:07.000Z" - }, - "end": { - "$date": "2021-05-30T22:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "57a4c9fb-4a11-468e-8b93-88ae6df208c1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-30T22:09:33.000Z" - }, - "end": { - "$date": "2021-05-30T23:45:18.000Z" - }, - "events": [ - { - "uuid": "b47a8eb4-f1fd-48d6-8a87-92a5bbba9e57", - "start": { - "$date": "2021-05-30T22:09:33.000Z" - }, - "end": { - "$date": "2021-05-30T23:18:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09d4e90c-f7ee-4f77-b4b5-9a1cbd51d35a", - "start": { - "$date": "2021-05-30T23:18:33.000Z" - }, - "end": { - "$date": "2021-05-30T23:23:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8b84949-0c07-4912-9300-b29c921d4815", - "start": { - "$date": "2021-05-30T23:23:33.000Z" - }, - "end": { - "$date": "2021-05-30T23:33:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "485604d1-9bd9-457e-af24-9e67a53a9b4e", - "start": { - "$date": "2021-05-30T23:33:33.000Z" - }, - "end": { - "$date": "2021-05-30T23:42:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "27292c4d-e320-4f0c-9685-3344fec22da5", - "start": { - "$date": "2021-05-30T23:42:33.000Z" - }, - "end": { - "$date": "2021-05-30T23:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69ce5173-d8d2-4e2c-8f9e-11ef9efb8e40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T00:01:56.000Z" - }, - "end": { - "$date": "2021-05-31T00:18:12.000Z" - }, - "events": [ - { - "uuid": "093755cc-b2df-4bcd-bc6b-9a7962456684", - "start": { - "$date": "2021-05-31T00:01:56.000Z" - }, - "end": { - "$date": "2021-05-31T00:18:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a1f984e-095f-44ec-acc7-edeca0d092b9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-31T00:07:53.000Z" - }, - "end": { - "$date": "2021-05-31T01:44:00.000Z" - }, - "events": [ - { - "uuid": "1eb27a1c-aece-46bc-a85d-18946c5e8037", - "start": { - "$date": "2021-05-31T00:07:53.000Z" - }, - "end": { - "$date": "2021-05-31T01:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "581ec648-f483-4b19-9006-69d2ca72cb88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T00:29:05.000Z" - }, - "end": { - "$date": "2021-05-31T00:44:09.000Z" - }, - "events": [ - { - "uuid": "f4156598-2a67-4cce-be02-5e7adf9ae535", - "start": { - "$date": "2021-05-31T00:29:05.000Z" - }, - "end": { - "$date": "2021-05-31T00:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5e1f6603-03f5-446b-93e3-c0c77301d2b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T00:26:05.000Z" - }, - "end": { - "$date": "2021-05-31T01:44:53.000Z" - }, - "events": [ - { - "uuid": "bc472e67-f6ac-41b3-8652-3bc11d219a26", - "start": { - "$date": "2021-05-31T00:26:05.000Z" - }, - "end": { - "$date": "2021-05-31T01:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "dead093e-0807-4481-a2c5-add4442641ec", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-31T00:30:43.000Z" - }, - "end": { - "$date": "2021-05-31T01:19:53.000Z" - }, - "events": [ - { - "uuid": "7a206792-fcc1-44fd-8864-2df36fa7b254", - "start": { - "$date": "2021-05-31T00:30:43.000Z" - }, - "end": { - "$date": "2021-05-31T01:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36353096-36a2-4cd3-b213-f730d9d437e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T02:14:14.000Z" - }, - "end": { - "$date": "2021-05-31T02:54:48.000Z" - }, - "events": [ - { - "uuid": "5b2a4ab2-b66c-4ef8-8ba4-acd99e3dda0e", - "start": { - "$date": "2021-05-31T02:14:14.000Z" - }, - "end": { - "$date": "2021-05-31T02:30:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4f6890e-6a5c-4455-a866-ed93d6d35aa7", - "start": { - "$date": "2021-05-31T02:30:14.000Z" - }, - "end": { - "$date": "2021-05-31T03:12:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2ce0a48-2d5b-4d65-a138-cf3f9ce7b2ea", - "start": { - "$date": "2021-05-31T03:12:14.000Z" - }, - "end": { - "$date": "2021-05-31T02:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e73404b7-e2a6-4866-b1c8-ef66569dea35", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T01:45:03.000Z" - }, - "end": { - "$date": "2021-05-31T03:14:19.000Z" - }, - "events": [ - { - "uuid": "543d540e-5895-4277-b7f5-3bcd2a412337", - "start": { - "$date": "2021-05-31T01:45:03.000Z" - }, - "end": { - "$date": "2021-05-31T03:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f3a160a0-d327-4763-a638-92e068e84173", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-31T02:09:23.000Z" - }, - "end": { - "$date": "2021-05-31T03:47:21.000Z" - }, - "events": [ - { - "uuid": "96ac2eec-5f65-4e0e-a41b-3b3ea24a5081", - "start": { - "$date": "2021-05-31T02:09:23.000Z" - }, - "end": { - "$date": "2021-05-31T03:47:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a9fda58-a7c8-47a7-a1b3-48bd08bd250f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-31T02:15:35.000Z" - }, - "end": { - "$date": "2021-05-31T02:54:40.000Z" - }, - "events": [ - { - "uuid": "17a5fa4e-ce47-4c63-af42-ffc169ceb777", - "start": { - "$date": "2021-05-31T02:15:35.000Z" - }, - "end": { - "$date": "2021-05-31T02:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "f058f717-2229-4f15-a374-23e3b82afe6c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-31T02:19:17.000Z" - }, - "end": { - "$date": "2021-05-31T04:13:41.000Z" - }, - "events": [ - { - "uuid": "9da5af88-6c18-46a2-a3f7-35f7d225683e", - "start": { - "$date": "2021-05-31T02:19:17.000Z" - }, - "end": { - "$date": "2021-05-31T02:30:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c15ad1e-4c25-4056-82c2-5e7a2026887d", - "start": { - "$date": "2021-05-31T02:30:17.000Z" - }, - "end": { - "$date": "2021-05-31T02:35:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cff3105b-1376-4370-8684-d02d9542d882", - "start": { - "$date": "2021-05-31T02:35:17.000Z" - }, - "end": { - "$date": "2021-05-31T02:46:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4899afd-38ba-4741-bf11-3e298568c7c4", - "start": { - "$date": "2021-05-31T02:46:17.000Z" - }, - "end": { - "$date": "2021-05-31T04:09:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7acae78-e0d4-464e-bfeb-1b7ecbcc037a", - "start": { - "$date": "2021-05-31T04:09:17.000Z" - }, - "end": { - "$date": "2021-05-31T04:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5a851954-ac74-4eb0-8fb9-9ec109811644", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-31T03:59:28.000Z" - }, - "end": { - "$date": "2021-05-31T04:01:02.000Z" - }, - "events": [ - { - "uuid": "23e7d4a4-4b86-47e6-8687-df88ef0b1c76", - "start": { - "$date": "2021-05-31T03:59:28.000Z" - }, - "end": { - "$date": "2021-05-31T04:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4bac111-ce46-467d-9ccd-157f386e2b4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T03:07:34.000Z" - }, - "end": { - "$date": "2021-05-31T03:39:51.000Z" - }, - "events": [ - { - "uuid": "4f8a2893-8f92-4c5b-b195-ab43f9c95d39", - "start": { - "$date": "2021-05-31T03:07:34.000Z" - }, - "end": { - "$date": "2021-05-31T03:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "70914884-0b76-48e3-baf3-bb4142451719", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T03:47:53.000Z" - }, - "end": { - "$date": "2021-05-31T03:51:58.000Z" - }, - "events": [ - { - "uuid": "2ef4b57b-bece-416b-a875-32efb0437c6b", - "start": { - "$date": "2021-05-31T03:47:53.000Z" - }, - "end": { - "$date": "2021-05-31T03:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3162593-3340-47ee-8d74-df2a52585566", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T04:00:13.000Z" - }, - "end": { - "$date": "2021-05-31T04:30:12.000Z" - }, - "events": [ - { - "uuid": "e960208c-000a-46c8-8010-1aed2bb4929c", - "start": { - "$date": "2021-05-31T04:00:13.000Z" - }, - "end": { - "$date": "2021-05-31T04:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e8b100b-e36f-46fa-9669-a88bcc18aa5c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-31T04:03:33.000Z" - }, - "end": { - "$date": "2021-05-31T04:40:19.000Z" - }, - "events": [ - { - "uuid": "04d4890b-6cae-432c-8e3e-ed69b59f7b1a", - "start": { - "$date": "2021-05-31T04:03:33.000Z" - }, - "end": { - "$date": "2021-05-31T04:40:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c53b1f6f-5f41-41fb-bf00-f3ecb99db339", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T04:02:06.000Z" - }, - "end": { - "$date": "2021-05-31T04:06:03.000Z" - }, - "events": [ - { - "uuid": "7550dc65-ca95-4cdc-bf28-cec896505c76", - "start": { - "$date": "2021-05-31T04:02:06.000Z" - }, - "end": { - "$date": "2021-05-31T04:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c444b525-b95e-4315-bee4-86559d362c22", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T04:17:17.000Z" - }, - "end": { - "$date": "2021-05-31T04:26:52.000Z" - }, - "events": [ - { - "uuid": "70aaa221-dd67-46bf-a334-119fbc6bed06", - "start": { - "$date": "2021-05-31T04:17:17.000Z" - }, - "end": { - "$date": "2021-05-31T04:26:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d57c9ddc-c561-4b2f-92b7-c2eab7671b1a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-31T04:19:52.000Z" - }, - "end": { - "$date": "2021-05-31T05:23:19.000Z" - }, - "events": [ - { - "uuid": "287232b4-9496-4a74-b3f4-413fb21a9bfe", - "start": { - "$date": "2021-05-31T04:19:52.000Z" - }, - "end": { - "$date": "2021-05-31T05:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "30ac7cb7-9fba-43b9-8dba-253323bef7dd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T04:27:42.000Z" - }, - "end": { - "$date": "2021-05-31T04:40:52.000Z" - }, - "events": [ - { - "uuid": "9983a6b1-2528-4d8b-ac14-c99cae8272bc", - "start": { - "$date": "2021-05-31T04:27:42.000Z" - }, - "end": { - "$date": "2021-05-31T04:37:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30ebe0c4-034e-4042-abf8-cc7dd544ef38", - "start": { - "$date": "2021-05-31T04:37:42.000Z" - }, - "end": { - "$date": "2021-05-31T04:40:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "429679f6-2b1a-4d25-90bd-bdb848f993fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T04:36:00.000Z" - }, - "end": { - "$date": "2021-05-31T05:05:05.000Z" - }, - "events": [ - { - "uuid": "c372a97a-061b-4a81-9074-96b4239b348d", - "start": { - "$date": "2021-05-31T04:36:00.000Z" - }, - "end": { - "$date": "2021-05-31T05:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cc38ef81-7796-4d1c-a1e4-e962f28d0b8a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-05-31T15:43:40.000Z" - }, - "end": { - "$date": "2021-05-31T16:06:13.000Z" - }, - "events": [ - { - "uuid": "1b233a56-7c53-490a-861c-cf6c7e746945", - "start": { - "$date": "2021-05-31T15:43:40.000Z" - }, - "end": { - "$date": "2021-05-31T15:59:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eed931fc-92d3-42e1-90b4-b8aef01cd414", - "start": { - "$date": "2021-05-31T15:59:40.000Z" - }, - "end": { - "$date": "2021-05-31T16:05:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b50da0bc-3af8-4e4c-971f-0561a66a249c", - "start": { - "$date": "2021-05-31T16:05:40.000Z" - }, - "end": { - "$date": "2021-05-31T16:07:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b5442a4-3abb-48fb-8cac-0ab315c6de9c", - "start": { - "$date": "2021-05-31T16:07:40.000Z" - }, - "end": { - "$date": "2021-06-01T01:53:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d4b11a3-60d7-414d-aece-93260a32f059", - "start": { - "$date": "2021-06-01T01:53:40.000Z" - }, - "end": { - "$date": "2021-06-01T01:55:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "405a348b-ff08-4cdf-9b10-8f70c8eb3dfa", - "start": { - "$date": "2021-06-01T01:55:40.000Z" - }, - "end": { - "$date": "2021-06-01T02:46:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf0f5676-8e15-4be6-b139-b934b6fae05b", - "start": { - "$date": "2021-06-01T02:46:40.000Z" - }, - "end": { - "$date": "2021-05-31T16:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "66fc9fa4-04f3-427f-b4fa-5652ea798a13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T04:50:33.000Z" - }, - "end": { - "$date": "2021-05-31T05:22:15.000Z" - }, - "events": [ - { - "uuid": "88705f2d-bbdd-4f7c-9758-5ec020abf976", - "start": { - "$date": "2021-05-31T04:50:33.000Z" - }, - "end": { - "$date": "2021-05-31T05:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb77c466-ef32-4fe4-8a09-2d7f591c55ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T05:10:21.000Z" - }, - "end": { - "$date": "2021-05-31T05:42:31.000Z" - }, - "events": [ - { - "uuid": "9dd515ca-6291-4574-983e-0faf552b5794", - "start": { - "$date": "2021-05-31T05:10:21.000Z" - }, - "end": { - "$date": "2021-05-31T05:42:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "04df419f-29bf-4428-86af-900ba1e1c63e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T05:10:31.000Z" - }, - "end": { - "$date": "2021-05-31T05:20:06.000Z" - }, - "events": [ - { - "uuid": "a859fef8-8982-4de2-bfe3-288638b86cc4", - "start": { - "$date": "2021-05-31T05:10:31.000Z" - }, - "end": { - "$date": "2021-05-31T05:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f9ab014-ed83-4116-b03d-998a9775ff73", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T05:44:05.000Z" - }, - "end": { - "$date": "2021-05-31T05:50:30.000Z" - }, - "events": [ - { - "uuid": "d38672a6-a7ac-4dcb-bf1f-f6b32b4fda2c", - "start": { - "$date": "2021-05-31T05:44:05.000Z" - }, - "end": { - "$date": "2021-05-31T05:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "25af5566-64ef-4443-897c-cca90b41a673", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T06:02:58.000Z" - }, - "end": { - "$date": "2021-05-31T06:17:26.000Z" - }, - "events": [ - { - "uuid": "df86ec86-8a65-4895-b5b1-3f13a5a25301", - "start": { - "$date": "2021-05-31T06:02:58.000Z" - }, - "end": { - "$date": "2021-05-31T06:17:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "37430782-cfc1-4a4e-baec-52dd7c07d50e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-31T12:54:25.000Z" - }, - "end": { - "$date": "2021-05-31T14:00:09.000Z" - }, - "events": [ - { - "uuid": "9a5cbde4-b6e2-4d1f-ab80-3a364b42ebd9", - "start": { - "$date": "2021-05-31T12:54:25.000Z" - }, - "end": { - "$date": "2021-05-31T14:00:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "cb875987-6aef-4172-bbb2-5554f09a2328", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-31T14:05:41.000Z" - }, - "end": { - "$date": "2021-05-31T14:09:16.000Z" - }, - "events": [ - { - "uuid": "87a115a6-4e8a-4b16-8615-c469bcc7fbd4", - "start": { - "$date": "2021-05-31T14:05:41.000Z" - }, - "end": { - "$date": "2021-05-31T14:09:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8bdca13d-fc24-49e1-bb9c-abe18ed998c7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T14:37:44.000Z" - }, - "end": { - "$date": "2021-05-31T15:57:18.000Z" - }, - "events": [ - { - "uuid": "f42c0d56-7f18-4b37-a772-23ce5ab7885f", - "start": { - "$date": "2021-05-31T14:37:44.000Z" - }, - "end": { - "$date": "2021-05-31T15:57:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b5edf715-96a6-409a-8d86-72441169cf92", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T15:57:50.000Z" - }, - "end": { - "$date": "2021-05-31T16:18:16.000Z" - }, - "events": [ - { - "uuid": "38e77faf-c827-4ad1-9524-382ce14b1218", - "start": { - "$date": "2021-05-31T15:57:50.000Z" - }, - "end": { - "$date": "2021-05-31T16:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "365aaa72-1c3c-469a-8abc-45695175e548", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T16:18:53.000Z" - }, - "end": { - "$date": "2021-05-31T18:28:31.000Z" - }, - "events": [ - { - "uuid": "19e89cdb-5616-46c2-b179-091f3ba85734", - "start": { - "$date": "2021-05-31T16:18:53.000Z" - }, - "end": { - "$date": "2021-05-31T18:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d52f1807-736a-4727-a262-f8f833024a75", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-31T16:59:57.000Z" - }, - "end": { - "$date": "2021-05-31T21:58:53.000Z" - }, - "events": [ - { - "uuid": "95d0169d-3322-48fd-b163-1dd14007940e", - "start": { - "$date": "2021-05-31T16:59:57.000Z" - }, - "end": { - "$date": "2021-05-31T21:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5161525d-8bf6-49e7-87d6-d21b66555f2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T17:52:53.000Z" - }, - "end": { - "$date": "2021-05-31T18:28:41.000Z" - }, - "events": [ - { - "uuid": "99f5c252-6044-4ae8-a4bd-8f31b0aa2e37", - "start": { - "$date": "2021-05-31T17:52:53.000Z" - }, - "end": { - "$date": "2021-05-31T18:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2bbde574-f7e2-48b7-94c8-330fe195dd1e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-31T18:26:34.000Z" - }, - "end": { - "$date": "2021-05-31T19:12:51.000Z" - }, - "events": [ - { - "uuid": "24bcdb05-f163-43cc-8d55-66e7a7b39bdf", - "start": { - "$date": "2021-05-31T18:26:34.000Z" - }, - "end": { - "$date": "2021-05-31T19:02:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed67ddd7-ed92-43b3-90b3-0176213ec20f", - "start": { - "$date": "2021-05-31T19:02:34.000Z" - }, - "end": { - "$date": "2021-05-31T19:12:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bcd0be3-16db-4d0a-8340-299f431fdd1b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T19:33:18.000Z" - }, - "end": { - "$date": "2021-05-31T20:01:12.000Z" - }, - "events": [ - { - "uuid": "6fc22b44-8e13-45f6-9f3e-234a43f1f8b5", - "start": { - "$date": "2021-05-31T19:33:18.000Z" - }, - "end": { - "$date": "2021-05-31T19:49:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e50ca63-8fd6-4750-91e5-7e2ac716a35c", - "start": { - "$date": "2021-05-31T19:49:18.000Z" - }, - "end": { - "$date": "2021-05-31T20:33:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52839793-8520-44a3-9dc6-a8417e37a017", - "start": { - "$date": "2021-05-31T20:33:18.000Z" - }, - "end": { - "$date": "2021-05-31T20:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "ad4bc99d-20a4-49db-886e-f639d414b318", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T18:31:48.000Z" - }, - "end": { - "$date": "2021-05-31T19:16:00.000Z" - }, - "events": [ - { - "uuid": "e81cfa09-b2c4-4b09-a7ea-dc727be3b547", - "start": { - "$date": "2021-05-31T18:31:48.000Z" - }, - "end": { - "$date": "2021-05-31T19:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "758ea086-e0cb-463a-a32e-830af523bc20", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T19:12:52.000Z" - }, - "end": { - "$date": "2021-05-31T19:25:08.000Z" - }, - "events": [ - { - "uuid": "404be1a2-37d5-4e3e-a820-4fd1a9b96993", - "start": { - "$date": "2021-05-31T19:12:52.000Z" - }, - "end": { - "$date": "2021-05-31T19:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "63a1f8b3-8b1a-43ab-acdd-abd4293412c0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T19:16:52.000Z" - }, - "end": { - "$date": "2021-05-31T20:40:27.000Z" - }, - "events": [ - { - "uuid": "df018668-6a6e-4d7a-a32d-b29a7978a099", - "start": { - "$date": "2021-05-31T19:16:52.000Z" - }, - "end": { - "$date": "2021-05-31T20:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8095bdb3-5ac7-4ab6-9dae-c7e22599343e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T19:43:13.000Z" - }, - "end": { - "$date": "2021-05-31T19:46:06.000Z" - }, - "events": [ - { - "uuid": "121d1cfa-3978-46ec-aea7-aa6e66e1161b", - "start": { - "$date": "2021-05-31T19:43:13.000Z" - }, - "end": { - "$date": "2021-05-31T19:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5757abbf-ec31-40cf-83ec-cd140dcdeb0a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T19:49:05.000Z" - }, - "end": { - "$date": "2021-05-31T20:03:31.000Z" - }, - "events": [ - { - "uuid": "42aedec0-eb5d-4eb2-8c6e-9dd1704a6b3a", - "start": { - "$date": "2021-05-31T19:49:05.000Z" - }, - "end": { - "$date": "2021-05-31T20:03:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34d99541-0da4-4fea-9b32-40ae71bfe7bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T20:48:16.000Z" - }, - "end": { - "$date": "2021-05-31T21:21:45.000Z" - }, - "events": [ - { - "uuid": "ae3791f9-bae6-4e8e-a9cf-f32d3aeca05f", - "start": { - "$date": "2021-05-31T20:48:16.000Z" - }, - "end": { - "$date": "2021-05-31T21:07:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddb7da8e-0cd0-4100-a533-06cd67240b27", - "start": { - "$date": "2021-05-31T21:07:16.000Z" - }, - "end": { - "$date": "2021-05-31T21:27:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "50cc1e75-45a0-4a35-8f6f-451998d5dac7", - "start": { - "$date": "2021-05-31T21:27:16.000Z" - }, - "end": { - "$date": "2021-05-31T21:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a48f1335-7967-40c1-b7a0-d5983d3a4ca7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-05-31T20:42:09.000Z" - }, - "end": { - "$date": "2021-05-31T21:13:02.000Z" - }, - "events": [ - { - "uuid": "9cfbd6b6-46ae-431b-a540-06606fb9e5b5", - "start": { - "$date": "2021-05-31T20:42:09.000Z" - }, - "end": { - "$date": "2021-05-31T21:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97998e64-f6f7-417a-b368-a4b93f53906d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T21:26:56.000Z" - }, - "end": { - "$date": "2021-05-31T21:43:11.000Z" - }, - "events": [ - { - "uuid": "153034d0-367c-4103-b7c0-4445c4c2acf7", - "start": { - "$date": "2021-05-31T21:26:56.000Z" - }, - "end": { - "$date": "2021-05-31T21:43:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbbfa971-0609-46f8-a027-67b78272f145", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T21:50:00.000Z" - }, - "end": { - "$date": "2021-05-31T22:17:37.000Z" - }, - "events": [ - { - "uuid": "f5fc9de9-74bd-492b-88ef-892d02dd7514", - "start": { - "$date": "2021-05-31T21:50:00.000Z" - }, - "end": { - "$date": "2021-05-31T22:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b41657ce-3a6f-4b3e-ac1c-51b17ed31122", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-31T16:59:57.000Z" - }, - "end": { - "$date": "2021-05-31T23:22:48.000Z" - }, - "events": [ - { - "uuid": "e6ea2fde-b3fa-4b3f-a604-f50bd674f194", - "start": { - "$date": "2021-05-31T16:59:57.000Z" - }, - "end": { - "$date": "2021-05-31T23:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e3aaddb-b820-436f-98b9-47ceb567caeb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-05-31T22:23:30.000Z" - }, - "end": { - "$date": "2021-05-31T22:57:38.000Z" - }, - "events": [ - { - "uuid": "12cde324-7c46-4677-af0d-c2b7f25941ba", - "start": { - "$date": "2021-05-31T22:23:30.000Z" - }, - "end": { - "$date": "2021-05-31T22:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dd89bc48-6970-4475-887d-b5ce08144265", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-05-31T22:49:48.000Z" - }, - "end": { - "$date": "2021-05-31T23:23:59.000Z" - }, - "events": [ - { - "uuid": "e2e37fed-974a-4e30-8f91-24c470b45f56", - "start": { - "$date": "2021-05-31T22:49:48.000Z" - }, - "end": { - "$date": "2021-05-31T23:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "a7ca496e-d4d9-42fd-a86c-e2c869f67ebf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-05-31T23:13:05.000Z" - }, - "end": { - "$date": "2021-06-01T02:04:25.000Z" - }, - "events": [ - { - "uuid": "e1423556-6ab4-4a6e-baec-943053800a4a", - "start": { - "$date": "2021-05-31T23:13:05.000Z" - }, - "end": { - "$date": "2021-06-01T00:13:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "288bc74e-79ea-4775-9f2e-24a52fc38248", - "start": { - "$date": "2021-06-01T00:13:05.000Z" - }, - "end": { - "$date": "2021-06-01T00:38:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6dd4c83a-1a45-4460-915b-dfc92cbd8dc9", - "start": { - "$date": "2021-06-01T00:38:05.000Z" - }, - "end": { - "$date": "2021-06-01T02:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "785c5332-cf76-4bbe-9a21-26e4887f2975", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-05-31T23:20:42.000Z" - }, - "end": { - "$date": "2021-06-01T01:23:35.000Z" - }, - "events": [ - { - "uuid": "583e921d-03b9-4710-bbe4-0b15d4f6bebc", - "start": { - "$date": "2021-05-31T23:20:42.000Z" - }, - "end": { - "$date": "2021-06-01T01:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2d045ffd-6501-4fd8-ab6e-17143c7fa899", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-05-31T23:28:17.000Z" - }, - "end": { - "$date": "2021-05-31T23:55:44.000Z" - }, - "events": [ - { - "uuid": "b5bad213-b631-41d6-b486-61eddf304dbe", - "start": { - "$date": "2021-05-31T23:28:17.000Z" - }, - "end": { - "$date": "2021-05-31T23:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d33fb41-321f-47ca-86c4-f6dfd5feab91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T00:21:49.000Z" - }, - "end": { - "$date": "2021-06-01T00:40:27.000Z" - }, - "events": [ - { - "uuid": "725e6916-a34c-4a74-8415-0f8cdf100292", - "start": { - "$date": "2021-06-01T00:21:49.000Z" - }, - "end": { - "$date": "2021-06-01T00:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "77c73879-4cee-473e-a161-e5c097ca4f3e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-01T01:24:38.000Z" - }, - "end": { - "$date": "2021-06-01T01:25:37.000Z" - }, - "events": [ - { - "uuid": "9eae3d84-0c5c-4a29-91f1-f1c3661c004e", - "start": { - "$date": "2021-06-01T01:24:38.000Z" - }, - "end": { - "$date": "2021-06-01T01:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "166e2538-766a-40d6-9eed-0875c0cac942", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-01T00:34:20.000Z" - }, - "end": { - "$date": "2021-06-01T04:21:31.000Z" - }, - "events": [ - { - "uuid": "58b052d7-af23-462e-aea5-13837bdc04e9", - "start": { - "$date": "2021-06-01T00:34:20.000Z" - }, - "end": { - "$date": "2021-06-01T04:21:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76852bd8-1d0f-467f-895f-d7de65fc33c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T00:46:19.000Z" - }, - "end": { - "$date": "2021-06-01T00:57:45.000Z" - }, - "events": [ - { - "uuid": "8a387539-ee0a-4f02-842c-334369592fcb", - "start": { - "$date": "2021-06-01T00:46:19.000Z" - }, - "end": { - "$date": "2021-06-01T00:57:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1b23bce-0851-4731-bf0e-537f3a7cbe54", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T01:09:08.000Z" - }, - "end": { - "$date": "2021-06-01T01:33:39.000Z" - }, - "events": [ - { - "uuid": "8f73ce15-74d0-47ca-8f34-912f46145dc9", - "start": { - "$date": "2021-06-01T01:09:08.000Z" - }, - "end": { - "$date": "2021-06-01T01:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bdd25d55-2c40-41ba-982f-06dac8594792", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-01T03:38:53.000Z" - }, - "end": { - "$date": "2021-06-01T15:23:29.000Z" - }, - "events": [ - { - "uuid": "5f6b694d-2d40-4001-b550-1bda15d0de9f", - "start": { - "$date": "2021-06-01T03:38:53.000Z" - }, - "end": { - "$date": "2021-06-01T06:52:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7791bedd-0751-429d-8b3e-495a2254e398", - "start": { - "$date": "2021-06-01T06:52:53.000Z" - }, - "end": { - "$date": "2021-06-01T07:01:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54f7a90e-44bb-4df3-ad7c-e6adb18147f7", - "start": { - "$date": "2021-06-01T07:01:53.000Z" - }, - "end": { - "$date": "2021-06-01T07:14:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6de1266-374d-4493-8cb6-f771ddbc58ee", - "start": { - "$date": "2021-06-01T07:14:53.000Z" - }, - "end": { - "$date": "2021-06-01T16:54:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "104d14a1-a641-42d1-96b2-fd08606e5ac5", - "start": { - "$date": "2021-06-01T16:54:53.000Z" - }, - "end": { - "$date": "2021-06-01T17:05:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e94cf14-f921-4b6e-b175-0abba9cd56c7", - "start": { - "$date": "2021-06-01T17:05:53.000Z" - }, - "end": { - "$date": "2021-06-01T17:12:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44cee003-6363-4f7b-b751-d303cc165029", - "start": { - "$date": "2021-06-01T17:12:53.000Z" - }, - "end": { - "$date": "2021-06-01T15:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bbb7cbf-7ce0-4f21-94d0-bae60ba5598b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T01:38:20.000Z" - }, - "end": { - "$date": "2021-06-01T02:14:07.000Z" - }, - "events": [ - { - "uuid": "be7521dd-3402-4a15-8f21-d4f33835559f", - "start": { - "$date": "2021-06-01T01:38:20.000Z" - }, - "end": { - "$date": "2021-06-01T02:14:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "580ba51b-e224-4ee0-a54e-d7d5984933c3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-01T02:25:48.000Z" - }, - "end": { - "$date": "2021-06-01T02:45:23.000Z" - }, - "events": [ - { - "uuid": "72fae381-f83c-40f3-a317-cdfe48f3345b", - "start": { - "$date": "2021-06-01T02:25:48.000Z" - }, - "end": { - "$date": "2021-06-01T02:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "25470bdd-1d07-498c-a537-44d685813914", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-01T02:29:46.000Z" - }, - "end": { - "$date": "2021-06-01T07:57:21.000Z" - }, - "events": [ - { - "uuid": "a340b0ae-9b5b-4f8f-a911-706380f8069a", - "start": { - "$date": "2021-06-01T02:29:46.000Z" - }, - "end": { - "$date": "2021-06-01T03:38:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e1bb1ef-2b72-4fe0-97ee-951d608c4f11", - "start": { - "$date": "2021-06-01T03:38:46.000Z" - }, - "end": { - "$date": "2021-06-01T03:42:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9328b3c2-62c5-4b3a-b33b-9ccc9d0839df", - "start": { - "$date": "2021-06-01T03:42:46.000Z" - }, - "end": { - "$date": "2021-06-01T03:44:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "57bc5fb5-05e1-465d-a8fd-9c210f632843", - "start": { - "$date": "2021-06-01T03:44:46.000Z" - }, - "end": { - "$date": "2021-06-01T04:12:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0a0c9a60-a6f6-42da-a3ec-96954e4f81bb", - "start": { - "$date": "2021-06-01T04:12:46.000Z" - }, - "end": { - "$date": "2021-06-01T04:15:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0da8191f-c615-4bf7-be55-1a3dfb5e27c8", - "start": { - "$date": "2021-06-01T04:15:46.000Z" - }, - "end": { - "$date": "2021-06-01T05:04:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1d3552af-d0e3-44fa-a50b-253a3f827d8d", - "start": { - "$date": "2021-06-01T05:04:46.000Z" - }, - "end": { - "$date": "2021-06-01T05:06:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd7d4588-feb1-48ea-96ae-b2c633d6b3b0", - "start": { - "$date": "2021-06-01T05:06:46.000Z" - }, - "end": { - "$date": "2021-06-01T05:46:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "efcf31da-5485-4f65-b8cd-a350ad2ad896", - "start": { - "$date": "2021-06-01T05:46:46.000Z" - }, - "end": { - "$date": "2021-06-01T05:48:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "547a41cc-0ec8-4920-84c0-ea37e3944c91", - "start": { - "$date": "2021-06-01T05:48:46.000Z" - }, - "end": { - "$date": "2021-06-01T06:02:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c685747-b28f-4a3b-972f-15a214629b54", - "start": { - "$date": "2021-06-01T06:02:46.000Z" - }, - "end": { - "$date": "2021-06-01T06:14:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ff92c6b-3eec-42c4-8975-592f7b302724", - "start": { - "$date": "2021-06-01T06:14:46.000Z" - }, - "end": { - "$date": "2021-06-01T06:35:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e936783-9008-4bbc-a070-d59f633113e8", - "start": { - "$date": "2021-06-01T06:35:46.000Z" - }, - "end": { - "$date": "2021-06-01T06:37:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d469277a-398f-4c04-b757-6432306c470e", - "start": { - "$date": "2021-06-01T06:37:46.000Z" - }, - "end": { - "$date": "2021-06-01T06:55:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e3d21b5-fda6-4ec6-9ed5-27da6e05b5c8", - "start": { - "$date": "2021-06-01T06:55:46.000Z" - }, - "end": { - "$date": "2021-06-01T06:57:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6b3978a-6529-4ab7-a226-05cf989acd6e", - "start": { - "$date": "2021-06-01T06:57:46.000Z" - }, - "end": { - "$date": "2021-06-01T07:57:21.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "20246309-6fe1-4b3a-9726-053b4922afde", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-01T02:45:54.000Z" - }, - "end": { - "$date": "2021-06-01T03:56:18.000Z" - }, - "events": [ - { - "uuid": "41b238a6-e314-489a-bd44-2f24ccdc1083", - "start": { - "$date": "2021-06-01T02:45:54.000Z" - }, - "end": { - "$date": "2021-06-01T03:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0f36cc4d-0588-4ba2-8bee-21cd31534955", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-01T03:47:38.000Z" - }, - "end": { - "$date": "2021-06-01T04:23:32.000Z" - }, - "events": [ - { - "uuid": "3e7696b8-6df4-48ba-a3d8-c84efeefd60a", - "start": { - "$date": "2021-06-01T03:47:38.000Z" - }, - "end": { - "$date": "2021-06-01T04:23:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "356852d7-c108-4ccc-bb52-7344f3f024df", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-01T04:22:57.000Z" - }, - "end": { - "$date": "2021-06-01T05:07:47.000Z" - }, - "events": [ - { - "uuid": "f22022cc-a208-4da1-a904-c44f35ea626d", - "start": { - "$date": "2021-06-01T04:22:57.000Z" - }, - "end": { - "$date": "2021-06-01T05:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec9cf0d2-5f54-4170-91ae-53055f7565ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T04:51:10.000Z" - }, - "end": { - "$date": "2021-06-01T05:14:08.000Z" - }, - "events": [ - { - "uuid": "00e24424-4a18-4a31-8a98-2a9138a20cce", - "start": { - "$date": "2021-06-01T04:51:10.000Z" - }, - "end": { - "$date": "2021-06-01T05:14:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "58dcf6a7-116d-46fc-9f3c-07bdb11cc147", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-01T13:00:46.000Z" - }, - "end": { - "$date": "2021-06-02T02:00:22.000Z" - }, - "events": [ - { - "uuid": "acc5527a-870f-42f0-98a9-d65c5f9dc4a2", - "start": { - "$date": "2021-06-01T13:00:46.000Z" - }, - "end": { - "$date": "2021-06-01T13:48:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e8e770d-711b-45a3-a97b-ca192a835ca9", - "start": { - "$date": "2021-06-01T13:48:46.000Z" - }, - "end": { - "$date": "2021-06-01T13:53:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c27959b9-365e-4014-aa7e-884e9c3dd2be", - "start": { - "$date": "2021-06-01T13:53:46.000Z" - }, - "end": { - "$date": "2021-06-01T14:03:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb7e323d-f091-4dc0-9d76-e58d5fd93deb", - "start": { - "$date": "2021-06-01T14:03:46.000Z" - }, - "end": { - "$date": "2021-06-01T19:03:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73f54937-bfe0-44ab-807e-6fc9862dca2f", - "start": { - "$date": "2021-06-01T19:03:46.000Z" - }, - "end": { - "$date": "2021-06-01T19:13:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72e2860e-373e-46bf-ba1e-2944b64b0883", - "start": { - "$date": "2021-06-01T19:13:46.000Z" - }, - "end": { - "$date": "2021-06-02T02:00:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "10107393-e6e7-4289-8877-15b045d501f9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-01T15:19:20.000Z" - }, - "end": { - "$date": "2021-06-01T16:18:19.000Z" - }, - "events": [ - { - "uuid": "8d5a4a8a-17d4-4377-a10e-6459eadac8f1", - "start": { - "$date": "2021-06-01T15:19:20.000Z" - }, - "end": { - "$date": "2021-06-01T16:18:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "14cd7a52-36de-4dc1-a5df-f886e176a940", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-01T16:24:49.000Z" - }, - "end": { - "$date": "2021-06-01T16:57:45.000Z" - }, - "events": [ - { - "uuid": "f839f1ff-b269-46a7-bb34-03dcc5e982c8", - "start": { - "$date": "2021-06-01T16:24:49.000Z" - }, - "end": { - "$date": "2021-06-01T16:57:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3522aae3-db68-4471-ac93-cc37e6855a24", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-01T17:07:51.000Z" - }, - "end": { - "$date": "2021-06-01T17:38:10.000Z" - }, - "events": [ - { - "uuid": "d36db342-31ca-4486-a3c6-50fa9504c4c0", - "start": { - "$date": "2021-06-01T17:07:51.000Z" - }, - "end": { - "$date": "2021-06-01T17:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1fec3123-255a-4de4-927e-71063a20ada9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-01T18:03:25.000Z" - }, - "end": { - "$date": "2021-06-01T18:47:16.000Z" - }, - "events": [ - { - "uuid": "e8b4d180-0a91-42cd-94d0-cae3a6019fcc", - "start": { - "$date": "2021-06-01T18:03:25.000Z" - }, - "end": { - "$date": "2021-06-01T18:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2431a6e1-08ec-43e7-878d-9701a073a527", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T20:46:35.000Z" - }, - "end": { - "$date": "2021-06-01T21:21:04.000Z" - }, - "events": [ - { - "uuid": "992b1a86-e259-4411-8bac-828bdc4f792d", - "start": { - "$date": "2021-06-01T20:46:35.000Z" - }, - "end": { - "$date": "2021-06-01T21:02:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e7de52b-677e-412f-9f17-8c97c319f3fc", - "start": { - "$date": "2021-06-01T21:02:35.000Z" - }, - "end": { - "$date": "2021-06-01T21:46:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e0461854-13fe-4ba3-9824-d33a1ea37d56", - "start": { - "$date": "2021-06-01T21:46:35.000Z" - }, - "end": { - "$date": "2021-06-01T21:21:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af2c60d6-e671-41bf-a913-12ae9ab39ce1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-01T20:46:53.000Z" - }, - "end": { - "$date": "2021-06-01T21:18:28.000Z" - }, - "events": [ - { - "uuid": "bb35f163-12f7-4053-ad42-9a14fdf6e411", - "start": { - "$date": "2021-06-01T20:46:53.000Z" - }, - "end": { - "$date": "2021-06-01T21:18:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "d4ab3969-6e1c-49a2-b802-d16ae21f7207", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-01T21:17:43.000Z" - }, - "end": { - "$date": "2021-06-01T22:42:09.000Z" - }, - "events": [ - { - "uuid": "bd32f6c4-2651-4b96-89ea-7394ed28bd32", - "start": { - "$date": "2021-06-01T21:17:43.000Z" - }, - "end": { - "$date": "2021-06-01T22:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d2ed805d-3b75-4eb2-96ae-54e1a8a41d24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-01T21:22:10.000Z" - }, - "end": { - "$date": "2021-06-01T21:24:59.000Z" - }, - "events": [ - { - "uuid": "5069c58d-08fc-4279-9d1a-48627caca01c", - "start": { - "$date": "2021-06-01T21:22:10.000Z" - }, - "end": { - "$date": "2021-06-01T21:24:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "de0adc96-8857-45ef-8d29-2a7817016ed8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-01T21:37:29.000Z" - }, - "end": { - "$date": "2021-06-02T00:05:52.000Z" - }, - "events": [ - { - "uuid": "857a7b18-f250-4920-b6d5-ce2b88ed5ce6", - "start": { - "$date": "2021-06-01T21:37:29.000Z" - }, - "end": { - "$date": "2021-06-02T00:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b7a546ea-ae7f-4792-91ac-738275ebf6a9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-01T21:54:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:58:50.000Z" - }, - "events": [ - { - "uuid": "180f337c-5270-4d9e-a35a-7a1c0c2727f0", - "start": { - "$date": "2021-06-01T21:54:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:29:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6194e071-910e-4c00-92d9-906ca1fd7986", - "start": { - "$date": "2021-06-02T02:29:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:39:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d03bde38-5c3d-4801-80ae-7f7d019af5fe", - "start": { - "$date": "2021-06-02T02:39:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:41:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8331e4cf-6b89-4065-8df5-4e9628e08d1a", - "start": { - "$date": "2021-06-02T02:41:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:42:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0441a9d0-c0a0-4a81-ade6-58542de0257a", - "start": { - "$date": "2021-06-02T02:42:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:54:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d35b65f6-a687-4b44-a3fd-c2e0a6b26334", - "start": { - "$date": "2021-06-02T02:54:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:57:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "25fab950-5310-45c1-97d3-400b4d8385d6", - "start": { - "$date": "2021-06-02T02:57:44.000Z" - }, - "end": { - "$date": "2021-06-02T02:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a3d50324-c99b-4745-b589-e0f6b66ec2dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-01T22:47:42.000Z" - }, - "end": { - "$date": "2021-06-01T23:36:16.000Z" - }, - "events": [ - { - "uuid": "fcf759b4-f04d-4a21-90d5-deb13c2a3e9b", - "start": { - "$date": "2021-06-01T22:47:42.000Z" - }, - "end": { - "$date": "2021-06-01T23:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e50ea786-2e10-4866-a3c3-98d26bb08c95", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-01T23:37:18.000Z" - }, - "end": { - "$date": "2021-06-02T00:56:36.000Z" - }, - "events": [ - { - "uuid": "8b8bf5be-da3c-409b-b76b-53a35a5ca655", - "start": { - "$date": "2021-06-01T23:37:18.000Z" - }, - "end": { - "$date": "2021-06-02T00:56:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8696439-1112-4740-b029-6ad06fe66f2c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-01T23:57:16.000Z" - }, - "end": { - "$date": "2021-06-02T00:27:48.000Z" - }, - "events": [ - { - "uuid": "9a766dde-b411-4334-bfe4-9c164cf0a3c8", - "start": { - "$date": "2021-06-01T23:57:16.000Z" - }, - "end": { - "$date": "2021-06-02T00:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e079000-3d46-445c-9faa-8af5634a3eda", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T00:43:19.000Z" - }, - "end": { - "$date": "2021-06-02T00:43:38.000Z" - }, - "events": [ - { - "uuid": "56668402-10e2-423c-9ec3-ef02b66158de", - "start": { - "$date": "2021-06-02T00:43:19.000Z" - }, - "end": { - "$date": "2021-06-02T00:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbf06e44-5098-45b2-a481-e29ce07474b9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T00:33:18.000Z" - }, - "end": { - "$date": "2021-06-02T01:18:16.000Z" - }, - "events": [ - { - "uuid": "fd1e565f-3244-4abf-8a43-d50653623b9d", - "start": { - "$date": "2021-06-02T00:33:18.000Z" - }, - "end": { - "$date": "2021-06-02T01:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ffd60c0-bcaf-4590-9920-ca6df9aa37c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-02T00:37:42.000Z" - }, - "end": { - "$date": "2021-06-02T01:18:03.000Z" - }, - "events": [ - { - "uuid": "1addbf20-9a82-4b24-a162-0325ed4bea8a", - "start": { - "$date": "2021-06-02T00:37:42.000Z" - }, - "end": { - "$date": "2021-06-02T01:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b67adb76-2b94-4400-996b-a7e8b464d6ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T00:57:26.000Z" - }, - "end": { - "$date": "2021-06-02T01:23:29.000Z" - }, - "events": [ - { - "uuid": "6c23fb9b-8720-4bd6-a786-558e71de1821", - "start": { - "$date": "2021-06-02T00:57:26.000Z" - }, - "end": { - "$date": "2021-06-02T01:11:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36589e37-db51-48a9-ace9-5b97da17ae44", - "start": { - "$date": "2021-06-02T01:11:26.000Z" - }, - "end": { - "$date": "2021-06-02T01:23:29.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "cde208d5-ef5b-4c0d-976f-41a68106dfb1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T01:07:49.000Z" - }, - "end": { - "$date": "2021-06-02T01:16:27.000Z" - }, - "events": [ - { - "uuid": "c129914b-235c-4ab4-99aa-348ecedc1344", - "start": { - "$date": "2021-06-02T01:07:49.000Z" - }, - "end": { - "$date": "2021-06-02T01:16:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "41a7c51b-8975-4c94-abef-4f2bda77a329", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T01:27:30.000Z" - }, - "end": { - "$date": "2021-06-02T01:37:51.000Z" - }, - "events": [ - { - "uuid": "13678e70-a4fd-4d5f-8c07-4e3fd65b1959", - "start": { - "$date": "2021-06-02T01:27:30.000Z" - }, - "end": { - "$date": "2021-06-02T01:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a1c15333-f311-4a2e-a61e-ad0259ad6467", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-02T01:28:29.000Z" - }, - "end": { - "$date": "2021-06-02T01:36:10.000Z" - }, - "events": [ - { - "uuid": "2f35acd3-48f7-48d4-b7d4-a4949621b4c0", - "start": { - "$date": "2021-06-02T01:28:29.000Z" - }, - "end": { - "$date": "2021-06-02T01:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "537f557c-60d7-43df-a3e6-12e3895ca858", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T01:28:56.000Z" - }, - "end": { - "$date": "2021-06-02T01:33:15.000Z" - }, - "events": [ - { - "uuid": "7986ea16-9cf6-45e5-b872-d519ad760f1b", - "start": { - "$date": "2021-06-02T01:28:56.000Z" - }, - "end": { - "$date": "2021-06-02T01:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f3fbbabd-3926-4baa-beab-f2137eea0fc5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T01:33:27.000Z" - }, - "end": { - "$date": "2021-06-02T02:32:41.000Z" - }, - "events": [ - { - "uuid": "4e61db1b-9110-47b0-95d3-fd05ab525c71", - "start": { - "$date": "2021-06-02T01:33:27.000Z" - }, - "end": { - "$date": "2021-06-02T02:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "026291cf-5281-412e-ba1e-b02659feda2c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-02T01:36:25.000Z" - }, - "end": { - "$date": "2021-06-02T01:40:10.000Z" - }, - "events": [ - { - "uuid": "9adbb263-b745-4de7-9e3a-d8e1875cc826", - "start": { - "$date": "2021-06-02T01:36:25.000Z" - }, - "end": { - "$date": "2021-06-02T01:40:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "d777ac24-75da-4004-888a-1f3a5c7db677", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-02T01:36:49.000Z" - }, - "end": { - "$date": "2021-06-02T01:38:29.000Z" - }, - "events": [ - { - "uuid": "11827a02-2a34-457f-8666-59997288f767", - "start": { - "$date": "2021-06-02T01:36:49.000Z" - }, - "end": { - "$date": "2021-06-02T01:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "315b432c-b524-4e13-a002-c08208c0819c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T02:09:47.000Z" - }, - "end": { - "$date": "2021-06-02T02:32:08.000Z" - }, - "events": [ - { - "uuid": "cb0e9134-1fad-4ba5-8527-6f59ee452023", - "start": { - "$date": "2021-06-02T02:09:47.000Z" - }, - "end": { - "$date": "2021-06-02T02:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5237797-317c-471c-93fd-7be94c3b7bae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T02:10:16.000Z" - }, - "end": { - "$date": "2021-06-02T02:31:51.000Z" - }, - "events": [ - { - "uuid": "19a68365-f412-4347-93c2-2f4356c302fe", - "start": { - "$date": "2021-06-02T02:10:16.000Z" - }, - "end": { - "$date": "2021-06-02T02:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "571222aa-7edb-4dbc-84c4-63dcd7f4d47a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T03:23:33.000Z" - }, - "end": { - "$date": "2021-06-02T04:45:22.000Z" - }, - "events": [ - { - "uuid": "dd3bac73-1147-4fee-9fb1-b9275d73e659", - "start": { - "$date": "2021-06-02T03:23:33.000Z" - }, - "end": { - "$date": "2021-06-02T04:45:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ace4ad1-f0bf-43a4-8b55-84cb7893a9a4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-02T02:41:24.000Z" - }, - "end": { - "$date": "2021-06-02T05:24:59.000Z" - }, - "events": [ - { - "uuid": "e3598859-f7a8-40f3-b6d6-bd7277db19fe", - "start": { - "$date": "2021-06-02T02:41:24.000Z" - }, - "end": { - "$date": "2021-06-02T05:24:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9eb210af-fe75-4d0d-bb6f-d0104b3e5459", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T03:04:20.000Z" - }, - "end": { - "$date": "2021-06-02T04:08:35.000Z" - }, - "events": [ - { - "uuid": "d02654fd-da82-4601-b55d-bd5387787fc9", - "start": { - "$date": "2021-06-02T03:04:20.000Z" - }, - "end": { - "$date": "2021-06-02T04:08:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ef8c4d0f-4220-4917-b8bd-e1c95ec45db9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-02T03:31:14.000Z" - }, - "end": { - "$date": "2021-06-02T06:48:59.000Z" - }, - "events": [ - { - "uuid": "e9867731-1e77-4bbc-a46d-ec5ec73edd2b", - "start": { - "$date": "2021-06-02T03:31:14.000Z" - }, - "end": { - "$date": "2021-06-02T06:48:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2d9ca538-68d3-4dd3-bca4-e0833b89690f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-02T04:12:40.000Z" - }, - "end": { - "$date": "2021-06-02T14:40:38.000Z" - }, - "events": [ - { - "uuid": "dcb28410-4a51-4442-b0a5-eb6b08f52395", - "start": { - "$date": "2021-06-02T04:12:40.000Z" - }, - "end": { - "$date": "2021-06-02T05:08:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26ba3da9-00ed-4989-a468-dee06d95f4b2", - "start": { - "$date": "2021-06-02T05:08:40.000Z" - }, - "end": { - "$date": "2021-06-02T05:15:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ac53e26-7a68-4e83-a9de-8f02c60f876d", - "start": { - "$date": "2021-06-02T05:15:40.000Z" - }, - "end": { - "$date": "2021-06-02T05:33:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "190334e3-c430-4809-baf1-97cd264e94aa", - "start": { - "$date": "2021-06-02T05:33:40.000Z" - }, - "end": { - "$date": "2021-06-02T06:24:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f2c19198-46a3-4971-a459-a20a9045f675", - "start": { - "$date": "2021-06-02T06:24:40.000Z" - }, - "end": { - "$date": "2021-06-02T06:34:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e42d526-26de-4e17-977b-9e79fb34d87b", - "start": { - "$date": "2021-06-02T06:34:40.000Z" - }, - "end": { - "$date": "2021-06-02T14:49:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cfd9d662-ee56-4ffd-9e16-84a5dbe4b7d9", - "start": { - "$date": "2021-06-02T14:49:40.000Z" - }, - "end": { - "$date": "2021-06-02T14:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ffe1c194-a89b-4fb4-8bda-1dff940d4f34", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T03:46:14.000Z" - }, - "end": { - "$date": "2021-06-02T05:00:16.000Z" - }, - "events": [ - { - "uuid": "227bcda3-5127-45ed-a978-25c297ec0c9f", - "start": { - "$date": "2021-06-02T03:46:14.000Z" - }, - "end": { - "$date": "2021-06-02T05:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bcf70007-9d79-4f4e-b9b0-d51995080526", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-02T03:48:07.000Z" - }, - "end": { - "$date": "2021-06-02T04:53:47.000Z" - }, - "events": [ - { - "uuid": "d1d0c05f-9c4f-4c79-b4e6-f0ced3d13e03", - "start": { - "$date": "2021-06-02T03:48:07.000Z" - }, - "end": { - "$date": "2021-06-02T04:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f071df1-d9b2-4e6d-8be0-b18e13671f19", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-02T03:50:42.000Z" - }, - "end": { - "$date": "2021-06-02T05:09:33.000Z" - }, - "events": [ - { - "uuid": "a79f28a2-8828-480a-9ac1-b37249c7cc88", - "start": { - "$date": "2021-06-02T03:50:42.000Z" - }, - "end": { - "$date": "2021-06-02T04:02:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e29054ac-2b08-4c6f-9050-374d9aaf49b2", - "start": { - "$date": "2021-06-02T04:02:42.000Z" - }, - "end": { - "$date": "2021-06-02T04:04:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b104464-f8e4-46cd-9a9e-cefc2ea124eb", - "start": { - "$date": "2021-06-02T04:04:42.000Z" - }, - "end": { - "$date": "2021-06-02T04:24:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce71ae6f-5ea6-4d9b-ba06-c0d682962547", - "start": { - "$date": "2021-06-02T04:24:42.000Z" - }, - "end": { - "$date": "2021-06-02T05:02:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "482b6dc0-8a9e-47db-9733-0e47cb6abf70", - "start": { - "$date": "2021-06-02T05:02:42.000Z" - }, - "end": { - "$date": "2021-06-02T05:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77d52e93-fda1-454d-b5d5-28dcb45ab7d7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-02T03:58:15.000Z" - }, - "end": { - "$date": "2021-06-02T04:21:33.000Z" - }, - "events": [ - { - "uuid": "a45649bb-1177-481f-add0-e713e7dfde27", - "start": { - "$date": "2021-06-02T03:58:15.000Z" - }, - "end": { - "$date": "2021-06-02T04:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4c475b8-3d14-4812-ac6e-187b495d9eff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T04:15:47.000Z" - }, - "end": { - "$date": "2021-06-02T04:44:28.000Z" - }, - "events": [ - { - "uuid": "60cba8b0-7b0a-4b31-a40a-a8cc2bb3c5a2", - "start": { - "$date": "2021-06-02T04:15:47.000Z" - }, - "end": { - "$date": "2021-06-02T04:44:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdb0cf76-8085-47ff-83d7-ae41374ef52f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-02T04:29:20.000Z" - }, - "end": { - "$date": "2021-06-02T05:03:35.000Z" - }, - "events": [ - { - "uuid": "cc9460c4-52fc-426b-9669-7e40e7fcf961", - "start": { - "$date": "2021-06-02T04:29:20.000Z" - }, - "end": { - "$date": "2021-06-02T05:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b09bc41d-23ae-4ef6-bd94-1af4954249b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T04:51:11.000Z" - }, - "end": { - "$date": "2021-06-02T05:30:31.000Z" - }, - "events": [ - { - "uuid": "ea133b9d-4625-406b-9daf-0cd97dbf6d2d", - "start": { - "$date": "2021-06-02T04:51:11.000Z" - }, - "end": { - "$date": "2021-06-02T05:30:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6a872176-5796-4c6e-9184-3a3c537ef6b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T16:07:19.000Z" - }, - "end": { - "$date": "2021-06-02T16:14:30.000Z" - }, - "events": [ - { - "uuid": "7b7f2ae4-0921-4084-8942-01fc5e2a2223", - "start": { - "$date": "2021-06-02T16:07:19.000Z" - }, - "end": { - "$date": "2021-06-02T16:23:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "445ba047-d153-4668-af3c-b675c8fa6786", - "start": { - "$date": "2021-06-02T16:23:19.000Z" - }, - "end": { - "$date": "2021-06-02T16:36:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "041506e1-ad10-488b-84cc-dcbd922a2c45", - "start": { - "$date": "2021-06-02T16:36:19.000Z" - }, - "end": { - "$date": "2021-06-02T16:38:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a674cc61-4111-4002-a900-3410d47f4cfe", - "start": { - "$date": "2021-06-02T16:38:19.000Z" - }, - "end": { - "$date": "2021-06-03T01:38:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "08595e5d-c0f7-4556-836c-f8aad8fe91d4", - "start": { - "$date": "2021-06-03T01:38:19.000Z" - }, - "end": { - "$date": "2021-06-03T01:40:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49b5a62c-cfaf-4bb3-9002-4267bdfffd1b", - "start": { - "$date": "2021-06-03T01:40:19.000Z" - }, - "end": { - "$date": "2021-06-03T01:50:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d627265d-60c2-4c1d-b48d-e91c45acdc56", - "start": { - "$date": "2021-06-03T01:50:19.000Z" - }, - "end": { - "$date": "2021-06-03T02:00:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50c45689-821e-4a7d-b97f-8c5aef44d5fd", - "start": { - "$date": "2021-06-03T02:00:19.000Z" - }, - "end": { - "$date": "2021-06-03T02:19:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11a4d98c-245f-430d-a4d0-853afcb96fd6", - "start": { - "$date": "2021-06-03T02:19:19.000Z" - }, - "end": { - "$date": "2021-06-02T16:14:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "7da30105-5659-4c6c-97a0-e36ad5bb6ce2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T05:16:05.000Z" - }, - "end": { - "$date": "2021-06-02T05:17:59.000Z" - }, - "events": [ - { - "uuid": "936ba4c2-e43e-48e4-a5cd-550da6639531", - "start": { - "$date": "2021-06-02T05:16:05.000Z" - }, - "end": { - "$date": "2021-06-02T05:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "92fd9a15-e233-4901-a700-1f48b2cc46b8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T05:18:05.000Z" - }, - "end": { - "$date": "2021-06-02T06:06:34.000Z" - }, - "events": [ - { - "uuid": "3abcb5f0-b0ac-489c-90cc-10e766d0c675", - "start": { - "$date": "2021-06-02T05:18:05.000Z" - }, - "end": { - "$date": "2021-06-02T06:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2337c9e8-8c29-4b12-9e12-4d11f91bd8e0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-02T05:30:19.000Z" - }, - "end": { - "$date": "2021-06-02T05:36:13.000Z" - }, - "events": [ - { - "uuid": "608dd495-a2ae-4254-a719-41518446033d", - "start": { - "$date": "2021-06-02T05:30:19.000Z" - }, - "end": { - "$date": "2021-06-02T05:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b255224b-fe85-407e-9165-72018d28bd67", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-02T13:05:14.000Z" - }, - "end": { - "$date": "2021-06-02T13:28:41.000Z" - }, - "events": [ - { - "uuid": "36e248f8-64f9-4381-8897-8befc6d024d3", - "start": { - "$date": "2021-06-02T13:05:14.000Z" - }, - "end": { - "$date": "2021-06-02T13:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7ff85101-ba6f-49b4-9fa7-ce564c7ee9d5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-02T14:28:47.000Z" - }, - "end": { - "$date": "2021-06-02T17:09:06.000Z" - }, - "events": [ - { - "uuid": "e46e236e-966b-44ca-8ac2-db79000b41d7", - "start": { - "$date": "2021-06-02T14:28:47.000Z" - }, - "end": { - "$date": "2021-06-02T17:09:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "6c2ac8c6-7ae2-4eff-8ea1-38dea9999a80", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-02T14:40:43.000Z" - }, - "end": { - "$date": "2021-06-03T01:07:18.000Z" - }, - "events": [ - { - "uuid": "7ec16c64-5834-4b72-ae03-0467e1a0c6c6", - "start": { - "$date": "2021-06-02T14:40:43.000Z" - }, - "end": { - "$date": "2021-06-02T15:25:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a9812bb-1164-483e-bd1e-9ea3c4f53aac", - "start": { - "$date": "2021-06-02T15:25:43.000Z" - }, - "end": { - "$date": "2021-06-02T15:55:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f319433f-47e9-440e-8301-63e7d012a355", - "start": { - "$date": "2021-06-02T15:55:43.000Z" - }, - "end": { - "$date": "2021-06-02T16:11:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b92efe5a-e89b-43cf-88e3-7b550db0f305", - "start": { - "$date": "2021-06-02T16:11:43.000Z" - }, - "end": { - "$date": "2021-06-02T16:12:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98f5a001-4353-4a0c-b221-793faa0e505a", - "start": { - "$date": "2021-06-02T16:12:43.000Z" - }, - "end": { - "$date": "2021-06-02T16:50:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "826c5170-8fad-42bf-aa5a-4573d6bd3fef", - "start": { - "$date": "2021-06-02T16:50:43.000Z" - }, - "end": { - "$date": "2021-06-02T17:00:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e5bd8fc-7a4b-472e-a81b-e6805fad36e7", - "start": { - "$date": "2021-06-02T17:00:43.000Z" - }, - "end": { - "$date": "2021-06-02T17:12:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dff8b623-1d86-4585-9b2b-6b09d3857108", - "start": { - "$date": "2021-06-02T17:12:43.000Z" - }, - "end": { - "$date": "2021-06-02T17:13:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa21661f-da26-4678-8ef2-d0d9298af69b", - "start": { - "$date": "2021-06-02T17:13:43.000Z" - }, - "end": { - "$date": "2021-06-02T17:23:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89ec004a-931a-4372-8099-0de59fe79b14", - "start": { - "$date": "2021-06-02T17:23:43.000Z" - }, - "end": { - "$date": "2021-06-02T17:44:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0e76523-fda9-476e-87e6-acb7aeee4edd", - "start": { - "$date": "2021-06-02T17:44:43.000Z" - }, - "end": { - "$date": "2021-06-02T17:56:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a22db563-6b85-4595-957c-d89b2b45f832", - "start": { - "$date": "2021-06-02T17:56:43.000Z" - }, - "end": { - "$date": "2021-06-02T19:01:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7cb2f026-438d-44d4-8736-db33b84883c3", - "start": { - "$date": "2021-06-02T19:01:43.000Z" - }, - "end": { - "$date": "2021-06-02T19:11:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b3d0a3f5-8c0a-454a-94a7-4d70b691bd0c", - "start": { - "$date": "2021-06-02T19:11:43.000Z" - }, - "end": { - "$date": "2021-06-03T01:07:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3919102f-c3d5-44d5-97c0-009259f4641b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-02T15:47:04.000Z" - }, - "end": { - "$date": "2021-06-02T16:49:10.000Z" - }, - "events": [ - { - "uuid": "2e9f7285-a82c-4096-8b9b-51acfc76b14f", - "start": { - "$date": "2021-06-02T15:47:04.000Z" - }, - "end": { - "$date": "2021-06-02T16:49:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83c4951f-60df-4166-8243-8bc38c0a1cf0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T16:16:25.000Z" - }, - "end": { - "$date": "2021-06-02T16:52:17.000Z" - }, - "events": [ - { - "uuid": "d1e2c9ff-ac22-4bbd-8467-8846d83884de", - "start": { - "$date": "2021-06-02T16:16:25.000Z" - }, - "end": { - "$date": "2021-06-02T16:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2705cfff-b623-4dac-993f-2aeb90c7b338", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T16:58:19.000Z" - }, - "end": { - "$date": "2021-06-02T17:35:46.000Z" - }, - "events": [ - { - "uuid": "d38c2d75-b85a-408d-a8e5-e8752e77f7a8", - "start": { - "$date": "2021-06-02T16:58:19.000Z" - }, - "end": { - "$date": "2021-06-02T17:35:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e64f775d-1aa4-4cf6-ae24-5d3e4fafab7c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T18:19:07.000Z" - }, - "end": { - "$date": "2021-06-02T19:07:14.000Z" - }, - "events": [ - { - "uuid": "32bf0af9-e03a-439b-94ab-16b9a9414043", - "start": { - "$date": "2021-06-02T18:19:07.000Z" - }, - "end": { - "$date": "2021-06-02T19:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7123f677-c8bf-4bcc-ad10-615fcd245c92", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T19:24:45.000Z" - }, - "end": { - "$date": "2021-06-02T19:52:46.000Z" - }, - "events": [ - { - "uuid": "b5dcd07d-aecd-4e2c-b9df-a948580dcf00", - "start": { - "$date": "2021-06-02T19:24:45.000Z" - }, - "end": { - "$date": "2021-06-02T19:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbed7916-2455-4758-b1ba-b59d1298c886", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T19:26:51.000Z" - }, - "end": { - "$date": "2021-06-02T19:52:36.000Z" - }, - "events": [ - { - "uuid": "c5a38b6f-c1f8-4bc5-8d47-d3292649b43f", - "start": { - "$date": "2021-06-02T19:26:51.000Z" - }, - "end": { - "$date": "2021-06-02T19:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26d5e577-1013-42fb-aadc-7b39f2f91585", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T20:02:51.000Z" - }, - "end": { - "$date": "2021-06-02T20:28:51.000Z" - }, - "events": [ - { - "uuid": "e44a94eb-dc27-4b29-beab-cc4198e4e111", - "start": { - "$date": "2021-06-02T20:02:51.000Z" - }, - "end": { - "$date": "2021-06-02T20:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6f9e8e9-ad48-40fe-8359-775b688a719e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T20:02:42.000Z" - }, - "end": { - "$date": "2021-06-02T20:28:48.000Z" - }, - "events": [ - { - "uuid": "29bcc268-3277-43ff-b830-54c3274a12bd", - "start": { - "$date": "2021-06-02T20:02:42.000Z" - }, - "end": { - "$date": "2021-06-02T20:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8513c1e-ec20-45e7-b077-1ebe31fde3dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T20:34:20.000Z" - }, - "end": { - "$date": "2021-06-02T21:07:38.000Z" - }, - "events": [ - { - "uuid": "c86a9dc1-a544-47f1-9e80-cc38bed172f5", - "start": { - "$date": "2021-06-02T20:34:20.000Z" - }, - "end": { - "$date": "2021-06-02T21:07:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c24891a-786d-41ec-85d4-af56ff19e4de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T20:37:03.000Z" - }, - "end": { - "$date": "2021-06-02T21:07:36.000Z" - }, - "events": [ - { - "uuid": "15638317-c7f6-40f9-94eb-3de24628c037", - "start": { - "$date": "2021-06-02T20:37:03.000Z" - }, - "end": { - "$date": "2021-06-02T21:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "764ba11d-9976-441b-8f28-68a7cc4962e7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-02T21:01:33.000Z" - }, - "end": { - "$date": "2021-06-02T23:47:47.000Z" - }, - "events": [ - { - "uuid": "f46fc519-241e-4697-83f5-938c7b38c7fd", - "start": { - "$date": "2021-06-02T21:01:33.000Z" - }, - "end": { - "$date": "2021-06-02T23:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24020ce1-3671-4ec4-a472-4a4612ff651c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-02T21:02:15.000Z" - }, - "end": { - "$date": "2021-06-02T23:48:24.000Z" - }, - "events": [ - { - "uuid": "cdd0b7ef-ff50-45e7-a182-6d59c0d6e386", - "start": { - "$date": "2021-06-02T21:02:15.000Z" - }, - "end": { - "$date": "2021-06-02T23:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd4cfc9b-7f5f-450f-a126-effeff8ecf56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T21:11:09.000Z" - }, - "end": { - "$date": "2021-06-02T22:58:08.000Z" - }, - "events": [ - { - "uuid": "7d1b28de-8a9a-4f12-a530-136aca6a4030", - "start": { - "$date": "2021-06-02T21:11:09.000Z" - }, - "end": { - "$date": "2021-06-02T22:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96ceb7f1-5c56-4cfd-8bd1-a1237c004c3a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-02T21:14:03.000Z" - }, - "end": { - "$date": "2021-06-02T22:15:28.000Z" - }, - "events": [ - { - "uuid": "5df799f9-5feb-48f2-b3ce-c29aa765f91b", - "start": { - "$date": "2021-06-02T21:14:03.000Z" - }, - "end": { - "$date": "2021-06-02T22:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "563c5181-f5c7-48e3-bef2-7c96ee701b57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T21:16:18.000Z" - }, - "end": { - "$date": "2021-06-02T22:21:14.000Z" - }, - "events": [ - { - "uuid": "8d7fc91b-ca02-4ad0-bfb2-b10fa3351c50", - "start": { - "$date": "2021-06-02T21:16:18.000Z" - }, - "end": { - "$date": "2021-06-02T22:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ee7da934-71e0-4ba8-b191-cf0225bc6ec6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-02T21:20:14.000Z" - }, - "end": { - "$date": "2021-06-03T00:01:05.000Z" - }, - "events": [ - { - "uuid": "06d8f014-c284-4864-a90f-bcb86f939d6b", - "start": { - "$date": "2021-06-02T21:20:14.000Z" - }, - "end": { - "$date": "2021-06-03T00:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2eb53754-d8bb-46f8-b286-6af5cb2b25cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T22:22:31.000Z" - }, - "end": { - "$date": "2021-06-02T23:00:15.000Z" - }, - "events": [ - { - "uuid": "68f15ca9-527d-4f86-a347-b1bc0554e0bd", - "start": { - "$date": "2021-06-02T22:22:31.000Z" - }, - "end": { - "$date": "2021-06-02T23:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "c584262e-2d8f-40af-8118-f2c8e376a026", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T23:07:02.000Z" - }, - "end": { - "$date": "2021-06-02T23:26:56.000Z" - }, - "events": [ - { - "uuid": "0d53e6ae-a9a7-4079-b0a6-969e0e0f4915", - "start": { - "$date": "2021-06-02T23:07:02.000Z" - }, - "end": { - "$date": "2021-06-02T23:26:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e5254e43-6baf-406c-9588-1b583058ce5e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-02T23:20:02.000Z" - }, - "end": { - "$date": "2021-06-03T05:24:20.000Z" - }, - "events": [ - { - "uuid": "ec07a530-45ca-4095-8aec-8bc7adb75463", - "start": { - "$date": "2021-06-02T23:20:02.000Z" - }, - "end": { - "$date": "2021-06-03T00:00:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fdaaaf1f-8a7d-4dd3-b614-cd2388b38d7d", - "start": { - "$date": "2021-06-03T00:00:02.000Z" - }, - "end": { - "$date": "2021-06-03T00:03:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7d2222af-28e5-45cf-ad17-ab80777c3cdc", - "start": { - "$date": "2021-06-03T00:03:02.000Z" - }, - "end": { - "$date": "2021-06-03T03:54:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c43c4eef-02cf-4aff-ad91-49d30f20ff11", - "start": { - "$date": "2021-06-03T03:54:02.000Z" - }, - "end": { - "$date": "2021-06-03T03:59:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb3e8cf7-a029-4924-8ec6-408a0893e4af", - "start": { - "$date": "2021-06-03T03:59:02.000Z" - }, - "end": { - "$date": "2021-06-03T05:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5ed46682-c035-4e47-bbae-f730225cfa84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-02T23:24:47.000Z" - }, - "end": { - "$date": "2021-06-02T23:36:13.000Z" - }, - "events": [ - { - "uuid": "54667fbe-7c60-4d5d-9484-e0ba470d7def", - "start": { - "$date": "2021-06-02T23:24:47.000Z" - }, - "end": { - "$date": "2021-06-02T23:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b1bdcbe1-7cc6-4ced-880a-a9c3ddc41256", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-02T23:34:49.000Z" - }, - "end": { - "$date": "2021-06-02T23:37:37.000Z" - }, - "events": [ - { - "uuid": "03122741-195c-45ea-b395-b14f903d0ce4", - "start": { - "$date": "2021-06-02T23:34:49.000Z" - }, - "end": { - "$date": "2021-06-02T23:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ca8638ad-a17e-42b0-b010-3be0b50e65b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T00:09:49.000Z" - }, - "end": { - "$date": "2021-06-03T01:04:38.000Z" - }, - "events": [ - { - "uuid": "52dbc23f-b038-468a-be78-4ade29cf6df9", - "start": { - "$date": "2021-06-03T00:09:49.000Z" - }, - "end": { - "$date": "2021-06-03T01:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a529cd5-c5da-4ba3-a9a2-96e97e1374e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-03T01:14:37.000Z" - }, - "end": { - "$date": "2021-06-03T01:43:04.000Z" - }, - "events": [ - { - "uuid": "e76ecc23-c56e-4adf-862b-bb584d80488c", - "start": { - "$date": "2021-06-03T01:14:37.000Z" - }, - "end": { - "$date": "2021-06-03T01:43:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02313c38-b5ca-4506-996b-2ae1ea9dd1d6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-03T01:14:34.000Z" - }, - "end": { - "$date": "2021-06-03T01:42:55.000Z" - }, - "events": [ - { - "uuid": "cb13a914-9287-436a-8470-10c4cfd2bcb1", - "start": { - "$date": "2021-06-03T01:14:34.000Z" - }, - "end": { - "$date": "2021-06-03T01:42:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0026db94-6464-44a1-9c01-62156dae12b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-03T01:52:55.000Z" - }, - "end": { - "$date": "2021-06-03T02:52:25.000Z" - }, - "events": [ - { - "uuid": "97960c4c-f124-4627-974e-13dfbf685298", - "start": { - "$date": "2021-06-03T01:52:55.000Z" - }, - "end": { - "$date": "2021-06-03T02:52:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83348197-8195-48a2-a430-a57640c30b2b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-03T01:43:29.000Z" - }, - "end": { - "$date": "2021-06-03T01:44:40.000Z" - }, - "events": [ - { - "uuid": "0004f738-df84-49e6-8722-f6c9b192fd0e", - "start": { - "$date": "2021-06-03T01:43:29.000Z" - }, - "end": { - "$date": "2021-06-03T01:44:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96ba2259-a065-41bf-8e02-6849079125db", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T01:45:40.000Z" - }, - "end": { - "$date": "2021-06-03T01:47:11.000Z" - }, - "events": [ - { - "uuid": "5b1db76e-ce8f-446f-8283-74d666124662", - "start": { - "$date": "2021-06-03T01:45:40.000Z" - }, - "end": { - "$date": "2021-06-03T01:47:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51ca362b-38f5-4aef-b169-eeebe4ee0055", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-03T01:45:39.000Z" - }, - "end": { - "$date": "2021-06-03T01:47:10.000Z" - }, - "events": [ - { - "uuid": "73955404-8573-4a9a-9e99-ceedacafa422", - "start": { - "$date": "2021-06-03T01:45:39.000Z" - }, - "end": { - "$date": "2021-06-03T01:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7aea8be-d1b2-4734-8132-38358ef9aea8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-03T01:56:21.000Z" - }, - "end": { - "$date": "2021-06-03T02:52:12.000Z" - }, - "events": [ - { - "uuid": "bc814c1a-63d0-48af-a2fb-6b5c86f4cc8c", - "start": { - "$date": "2021-06-03T01:56:21.000Z" - }, - "end": { - "$date": "2021-06-03T02:52:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "8f1bb77b-d511-4a9f-8ea8-8b49bc901e51", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T03:06:10.000Z" - }, - "end": { - "$date": "2021-06-03T04:45:26.000Z" - }, - "events": [ - { - "uuid": "2daec2ef-77ee-4bb5-89e0-0c6406a05b69", - "start": { - "$date": "2021-06-03T03:06:10.000Z" - }, - "end": { - "$date": "2021-06-03T03:37:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a6b84fdb-2c84-4080-8666-1ad90b9f5a03", - "start": { - "$date": "2021-06-03T03:37:10.000Z" - }, - "end": { - "$date": "2021-06-03T03:39:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e797822-6ceb-453a-8e46-457f01222e2d", - "start": { - "$date": "2021-06-03T03:39:10.000Z" - }, - "end": { - "$date": "2021-06-03T04:45:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bb9c7567-bea6-4f7e-974f-dc3398cb27ad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-03T02:18:57.000Z" - }, - "end": { - "$date": "2021-06-03T04:03:19.000Z" - }, - "events": [ - { - "uuid": "79b1d46d-c860-4f27-b297-7317090ffb68", - "start": { - "$date": "2021-06-03T02:18:57.000Z" - }, - "end": { - "$date": "2021-06-03T04:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9908151-7586-40b0-9177-e5da13743662", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-03T02:58:55.000Z" - }, - "end": { - "$date": "2021-06-03T03:29:07.000Z" - }, - "events": [ - { - "uuid": "8018e3ed-d98a-4cee-b372-39e00b3ad163", - "start": { - "$date": "2021-06-03T02:58:55.000Z" - }, - "end": { - "$date": "2021-06-03T03:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c70ad434-fb2c-4080-9ce8-f5c1acee669d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-03T04:01:20.000Z" - }, - "end": { - "$date": "2021-06-03T04:43:31.000Z" - }, - "events": [ - { - "uuid": "75c4eadb-24d5-4942-8dbf-35c8dddf5b32", - "start": { - "$date": "2021-06-03T04:01:20.000Z" - }, - "end": { - "$date": "2021-06-03T04:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4d381aa9-6a31-4200-a118-8a2ffe1ef97b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T14:53:01.000Z" - }, - "end": { - "$date": "2021-06-03T20:31:54.000Z" - }, - "events": [ - { - "uuid": "5fc6e9e3-aa3e-476c-b15a-17682bac2412", - "start": { - "$date": "2021-06-03T14:53:01.000Z" - }, - "end": { - "$date": "2021-06-03T15:22:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c04e3017-e6b3-4bf7-87b8-563c68ebeef7", - "start": { - "$date": "2021-06-03T15:22:01.000Z" - }, - "end": { - "$date": "2021-06-03T21:01:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a6605a2-c68c-4215-ba5b-0535dfefbad4", - "start": { - "$date": "2021-06-03T21:01:01.000Z" - }, - "end": { - "$date": "2021-06-03T21:03:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89cff933-ce58-4108-ab63-0f00b005d323", - "start": { - "$date": "2021-06-03T21:03:01.000Z" - }, - "end": { - "$date": "2021-06-03T21:18:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84b5a399-73a1-47e8-9933-eef06306ffbd", - "start": { - "$date": "2021-06-03T21:18:01.000Z" - }, - "end": { - "$date": "2021-06-03T21:51:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0d09b1f-f6b8-4774-9fe0-4cf593f7de60", - "start": { - "$date": "2021-06-03T21:51:01.000Z" - }, - "end": { - "$date": "2021-06-03T22:10:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3525e540-595a-48d1-aebf-8b6f365400ec", - "start": { - "$date": "2021-06-03T22:10:01.000Z" - }, - "end": { - "$date": "2021-06-03T22:12:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ca048102-413f-4d29-8040-73f30269857f", - "start": { - "$date": "2021-06-03T22:12:01.000Z" - }, - "end": { - "$date": "2021-06-03T22:22:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c459a22a-250f-472d-96d6-a90876a0b9e0", - "start": { - "$date": "2021-06-03T22:22:01.000Z" - }, - "end": { - "$date": "2021-06-04T00:01:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "edcb5f26-17a1-4b08-bf65-316764b5ad89", - "start": { - "$date": "2021-06-04T00:01:01.000Z" - }, - "end": { - "$date": "2021-06-04T00:03:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14634a90-6e92-4595-8a33-b5825cfc563e", - "start": { - "$date": "2021-06-04T00:03:01.000Z" - }, - "end": { - "$date": "2021-06-04T01:09:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7dceeda-5920-4ca5-b9d4-b9a30db2ac73", - "start": { - "$date": "2021-06-04T01:09:01.000Z" - }, - "end": { - "$date": "2021-06-04T01:10:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b24cd564-357c-43ca-8698-7007e5463caf", - "start": { - "$date": "2021-06-04T01:10:01.000Z" - }, - "end": { - "$date": "2021-06-04T01:48:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4cbaa9b6-3dee-44a1-a194-a806a2d77222", - "start": { - "$date": "2021-06-04T01:48:01.000Z" - }, - "end": { - "$date": "2021-06-04T02:12:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42ec6912-82b0-4f8f-9955-5bb60e04bde0", - "start": { - "$date": "2021-06-04T02:12:01.000Z" - }, - "end": { - "$date": "2021-06-04T02:14:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44d98554-b17b-4498-a687-2f01506886b8", - "start": { - "$date": "2021-06-04T02:14:01.000Z" - }, - "end": { - "$date": "2021-06-04T04:15:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "589becd9-bddd-4718-99f4-b08144084165", - "start": { - "$date": "2021-06-04T04:15:01.000Z" - }, - "end": { - "$date": "2021-06-04T04:17:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3531fc7d-5fba-4b0b-b941-4d4695cf71d5", - "start": { - "$date": "2021-06-04T04:17:01.000Z" - }, - "end": { - "$date": "2021-06-03T20:31:54.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "98a05154-eb4e-401f-819e-addf03f6e7e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T05:02:53.000Z" - }, - "end": { - "$date": "2021-06-03T06:09:31.000Z" - }, - "events": [ - { - "uuid": "90b6f577-16cb-4d87-ad65-3635712447af", - "start": { - "$date": "2021-06-03T05:02:53.000Z" - }, - "end": { - "$date": "2021-06-03T06:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a3b5da7-6787-449a-8a33-b5236740029d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-03T05:21:41.000Z" - }, - "end": { - "$date": "2021-06-03T05:49:56.000Z" - }, - "events": [ - { - "uuid": "d782d632-29ff-4766-90e9-ff01ac63db0a", - "start": { - "$date": "2021-06-03T05:21:41.000Z" - }, - "end": { - "$date": "2021-06-03T05:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "2711df2d-222f-4bcd-bebd-1528b4736ef5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-03T05:26:50.000Z" - }, - "end": { - "$date": "2021-06-03T05:30:05.000Z" - }, - "events": [ - { - "uuid": "ab9f2300-04cb-4247-8c87-0ce422248b32", - "start": { - "$date": "2021-06-03T05:26:50.000Z" - }, - "end": { - "$date": "2021-06-03T05:30:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1275c9a7-0fa9-4ba5-8652-402678d49e9b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-03T05:31:31.000Z" - }, - "end": { - "$date": "2021-06-03T05:50:12.000Z" - }, - "events": [ - { - "uuid": "1f6f0cc9-3932-4be0-88a8-d843c921acbe", - "start": { - "$date": "2021-06-03T05:31:31.000Z" - }, - "end": { - "$date": "2021-06-03T05:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0529d3ff-7466-4168-baa3-983bc9c3730a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-03T05:50:38.000Z" - }, - "end": { - "$date": "2021-06-03T05:53:02.000Z" - }, - "events": [ - { - "uuid": "7c678812-db24-4d68-9bd7-09094c71018c", - "start": { - "$date": "2021-06-03T05:50:38.000Z" - }, - "end": { - "$date": "2021-06-03T05:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdd54133-10de-4291-bc62-0718e4713636", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-03T05:56:35.000Z" - }, - "end": { - "$date": "2021-06-03T06:38:01.000Z" - }, - "events": [ - { - "uuid": "5fd65034-c3af-4c85-a92d-2a9c1f03ed9e", - "start": { - "$date": "2021-06-03T05:56:35.000Z" - }, - "end": { - "$date": "2021-06-03T06:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "86c3a893-94c8-4d96-a23b-ac9db203eaf6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-03T06:07:43.000Z" - }, - "end": { - "$date": "2021-06-03T06:22:11.000Z" - }, - "events": [ - { - "uuid": "15d80462-d3d6-4931-90cb-75f84fa29667", - "start": { - "$date": "2021-06-03T06:07:43.000Z" - }, - "end": { - "$date": "2021-06-03T06:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e00661bc-bad5-406e-a89d-b3833986c909", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-03T12:30:46.000Z" - }, - "end": { - "$date": "2021-06-03T13:16:14.000Z" - }, - "events": [ - { - "uuid": "e4fc6dc7-7452-42ee-b92f-36dbc49d7f27", - "start": { - "$date": "2021-06-03T12:30:46.000Z" - }, - "end": { - "$date": "2021-06-03T13:16:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d0deff96-2403-4245-ae95-4fad9d0310b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-03T13:19:50.000Z" - }, - "end": { - "$date": "2021-06-03T13:37:09.000Z" - }, - "events": [ - { - "uuid": "91f1d9fa-d308-43c4-82ee-fb48376612ab", - "start": { - "$date": "2021-06-03T13:19:50.000Z" - }, - "end": { - "$date": "2021-06-03T13:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "902e0bb1-0d70-4d13-9137-b490bee579c3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T14:02:13.000Z" - }, - "end": { - "$date": "2021-06-03T15:07:38.000Z" - }, - "events": [ - { - "uuid": "ec05a9f3-98ca-45aa-a10b-2fc334118d33", - "start": { - "$date": "2021-06-03T14:02:13.000Z" - }, - "end": { - "$date": "2021-06-03T15:01:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8fba17f0-26ab-4786-a508-98dc4b41d5f6", - "start": { - "$date": "2021-06-03T15:01:13.000Z" - }, - "end": { - "$date": "2021-06-03T15:06:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e3bf8a8-181f-4946-8097-bff350c9a4d0", - "start": { - "$date": "2021-06-03T15:06:13.000Z" - }, - "end": { - "$date": "2021-06-03T15:07:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9fb14c8d-e5d4-4945-b740-cddefca61fff", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-03T14:10:14.000Z" - }, - "end": { - "$date": "2021-06-03T14:58:32.000Z" - }, - "events": [ - { - "uuid": "e9934e08-e951-4764-ade8-2f7fb67ef5fa", - "start": { - "$date": "2021-06-03T14:10:14.000Z" - }, - "end": { - "$date": "2021-06-03T14:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "23f5acbb-c50f-4608-82b6-37e2e17e1735", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T15:08:13.000Z" - }, - "end": { - "$date": "2021-06-03T15:42:14.000Z" - }, - "events": [ - { - "uuid": "380c60ca-fec3-45dd-a340-9d8ed67ca400", - "start": { - "$date": "2021-06-03T15:08:13.000Z" - }, - "end": { - "$date": "2021-06-03T15:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "01090a49-9f10-48f8-9aa9-3ebbb4216c30", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T15:43:48.000Z" - }, - "end": { - "$date": "2021-06-03T15:45:48.000Z" - }, - "events": [ - { - "uuid": "1875d864-85ad-40d6-8b99-6bd9a1bd808d", - "start": { - "$date": "2021-06-03T15:43:48.000Z" - }, - "end": { - "$date": "2021-06-03T15:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cd48a434-a4d8-45a3-af0a-97931b14f5f7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-03T19:07:55.000Z" - }, - "end": { - "$date": "2021-06-04T08:10:55.000Z" - }, - "events": [ - { - "uuid": "ccc630ec-d3db-4621-9874-8dd6d19fd678", - "start": { - "$date": "2021-06-03T19:07:55.000Z" - }, - "end": { - "$date": "2021-06-03T19:56:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1df85538-ba33-49ed-87c1-23f616ed396e", - "start": { - "$date": "2021-06-03T19:56:55.000Z" - }, - "end": { - "$date": "2021-06-03T20:27:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ccb757e0-f0d0-449a-82a6-75797f3b4194", - "start": { - "$date": "2021-06-03T20:27:55.000Z" - }, - "end": { - "$date": "2021-06-03T21:33:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "00a1370a-a0b4-4e62-8a2e-77988a6d6708", - "start": { - "$date": "2021-06-03T21:33:55.000Z" - }, - "end": { - "$date": "2021-06-03T21:35:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e84cf66e-4a4f-4e9b-b3e2-c691fd824662", - "start": { - "$date": "2021-06-03T21:35:55.000Z" - }, - "end": { - "$date": "2021-06-04T02:18:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ddaaeb2-eaec-40f4-af1a-f94841ae6f96", - "start": { - "$date": "2021-06-04T02:18:55.000Z" - }, - "end": { - "$date": "2021-06-04T02:34:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74cf583a-0beb-4de4-9f92-4c31ca064cb1", - "start": { - "$date": "2021-06-04T02:34:55.000Z" - }, - "end": { - "$date": "2021-06-04T08:10:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97fd42b9-5823-4525-ba6f-24d5c19a5c1a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-03T20:20:00.000Z" - }, - "end": { - "$date": "2021-06-03T20:55:22.000Z" - }, - "events": [ - { - "uuid": "88bece4a-f696-4c4e-8b18-4fb8c302d612", - "start": { - "$date": "2021-06-03T20:20:00.000Z" - }, - "end": { - "$date": "2021-06-03T20:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "57114aec-bb5a-448c-a477-545bfa14c6b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T21:07:25.000Z" - }, - "end": { - "$date": "2021-06-03T22:03:04.000Z" - }, - "events": [ - { - "uuid": "bebe0ef5-5c12-4c33-9dd3-439cbd1dc7c7", - "start": { - "$date": "2021-06-03T21:07:25.000Z" - }, - "end": { - "$date": "2021-06-03T22:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "654227cd-63bf-46a4-a881-359ed18278c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T21:14:44.000Z" - }, - "end": { - "$date": "2021-06-03T21:16:24.000Z" - }, - "events": [ - { - "uuid": "45f4f8fa-ace7-40e6-a7ae-4b4c121c3a87", - "start": { - "$date": "2021-06-03T21:14:44.000Z" - }, - "end": { - "$date": "2021-06-03T21:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "29c1e5fe-ecdf-404f-8a78-1ef235e5c816", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T21:16:35.000Z" - }, - "end": { - "$date": "2021-06-03T21:55:46.000Z" - }, - "events": [ - { - "uuid": "8a1d11ff-4bd1-4b82-bd7b-a5917443544d", - "start": { - "$date": "2021-06-03T21:16:35.000Z" - }, - "end": { - "$date": "2021-06-03T21:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a9a3819e-e67a-4cd4-9460-683371091114", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-03T21:27:39.000Z" - }, - "end": { - "$date": "2021-06-03T21:50:31.000Z" - }, - "events": [ - { - "uuid": "50ac8c0c-7c33-4e00-b36e-8714636dfa5b", - "start": { - "$date": "2021-06-03T21:27:39.000Z" - }, - "end": { - "$date": "2021-06-03T21:50:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a0aad2f-75e9-4409-b7d7-7c5adb2e4d34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-03T22:04:21.000Z" - }, - "end": { - "$date": "2021-06-03T22:29:10.000Z" - }, - "events": [ - { - "uuid": "b3b64764-9e51-443e-9352-2f8a53e4595c", - "start": { - "$date": "2021-06-03T22:04:21.000Z" - }, - "end": { - "$date": "2021-06-03T22:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "bd64baef-33ef-4c4a-b219-63241037da08", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T22:03:31.000Z" - }, - "end": { - "$date": "2021-06-03T22:32:56.000Z" - }, - "events": [ - { - "uuid": "873574ef-f891-46b2-9816-ace916086b82", - "start": { - "$date": "2021-06-03T22:03:31.000Z" - }, - "end": { - "$date": "2021-06-03T22:32:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f0c2f52f-2d97-4178-821f-c2f2a708946a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T22:19:15.000Z" - }, - "end": { - "$date": "2021-06-03T22:58:50.000Z" - }, - "events": [ - { - "uuid": "d73d7523-c569-4f12-836f-d7d75f7b3ee2", - "start": { - "$date": "2021-06-03T22:19:15.000Z" - }, - "end": { - "$date": "2021-06-03T22:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "a0cb3317-a667-404e-b440-2460cb33ba2f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T22:35:56.000Z" - }, - "end": { - "$date": "2021-06-03T22:39:39.000Z" - }, - "events": [ - { - "uuid": "625494d6-8f37-4446-8797-744c1d782f4c", - "start": { - "$date": "2021-06-03T22:35:56.000Z" - }, - "end": { - "$date": "2021-06-03T22:39:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "6d5ddc6f-0fbd-4dfa-9d59-ec579c5fe651", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-03T22:40:27.000Z" - }, - "end": { - "$date": "2021-06-03T23:59:48.000Z" - }, - "events": [ - { - "uuid": "85efa904-a7c0-411f-ad58-498c37900ef5", - "start": { - "$date": "2021-06-03T22:40:27.000Z" - }, - "end": { - "$date": "2021-06-03T23:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "697363ee-7e32-4525-b5a4-80762344a7d3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-03T22:41:58.000Z" - }, - "end": { - "$date": "2021-06-04T00:04:29.000Z" - }, - "events": [ - { - "uuid": "6d59711e-8199-417e-b5c9-092ccb2ba581", - "start": { - "$date": "2021-06-03T22:41:58.000Z" - }, - "end": { - "$date": "2021-06-04T00:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "940b07e6-49b3-4035-8629-e21b7cf164f0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-03T22:48:46.000Z" - }, - "end": { - "$date": "2021-06-03T22:50:16.000Z" - }, - "events": [ - { - "uuid": "73721ca2-5de3-498c-ab04-dea65a1deb97", - "start": { - "$date": "2021-06-03T22:48:46.000Z" - }, - "end": { - "$date": "2021-06-03T22:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "42cb115a-84c3-4bc9-97e4-7bcdc2c76618", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-03T23:03:27.000Z" - }, - "end": { - "$date": "2021-06-04T00:04:24.000Z" - }, - "events": [ - { - "uuid": "fbb47111-4bd0-4358-a0d8-ec0714580022", - "start": { - "$date": "2021-06-03T23:03:27.000Z" - }, - "end": { - "$date": "2021-06-04T00:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "52beba45-1cdb-4bb5-8b43-46563ca95772", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-03T23:19:56.000Z" - }, - "end": { - "$date": "2021-06-03T23:43:32.000Z" - }, - "events": [ - { - "uuid": "11a35a10-d665-4241-a5ad-887589725473", - "start": { - "$date": "2021-06-03T23:19:56.000Z" - }, - "end": { - "$date": "2021-06-03T23:43:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b6f8fd49-0c41-4845-b608-32a9718872d0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T00:17:55.000Z" - }, - "end": { - "$date": "2021-06-04T01:00:03.000Z" - }, - "events": [ - { - "uuid": "162623a7-5716-4465-9f3a-735d48ca0e25", - "start": { - "$date": "2021-06-04T00:17:55.000Z" - }, - "end": { - "$date": "2021-06-04T01:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35e5bb3d-be80-41dc-bcfb-e0bd31a70282", - "uuid": "aa052af8-8f7c-4ad5-86b3-e686e8591109", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-06-04T00:23:31.000Z" - }, - "end": { - "$date": "2021-06-04T01:59:10.000Z" - }, - "events": [ - { - "uuid": "2c0b22ee-8bf0-4f1b-9bf6-a5c77739b50b", - "start": { - "$date": "2021-06-04T00:23:31.000Z" - }, - "end": { - "$date": "2021-06-04T01:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "629e93cd-29a3-41c5-9e91-cda2d43115d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T01:02:09.000Z" - }, - "end": { - "$date": "2021-06-04T01:04:18.000Z" - }, - "events": [ - { - "uuid": "7225291d-91c6-4a6d-adb7-2e8d2251dafc", - "start": { - "$date": "2021-06-04T01:02:09.000Z" - }, - "end": { - "$date": "2021-06-04T01:04:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19fd764a-5a65-4c87-a5c5-022a16de9f36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T01:41:12.000Z" - }, - "end": { - "$date": "2021-06-04T02:31:56.000Z" - }, - "events": [ - { - "uuid": "706e2c84-5493-42fc-846e-6a49914e508b", - "start": { - "$date": "2021-06-04T01:41:12.000Z" - }, - "end": { - "$date": "2021-06-04T02:31:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "88d0d122-465c-451c-923e-67fc1dbb1da9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-04T03:28:13.000Z" - }, - "end": { - "$date": "2021-06-04T05:36:56.000Z" - }, - "events": [ - { - "uuid": "f60a6a51-15c1-495d-b75c-1e190e95ef2c", - "start": { - "$date": "2021-06-04T03:28:13.000Z" - }, - "end": { - "$date": "2021-06-04T05:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "9f4e9b67-b5b9-4504-ad08-8c7c31a60cf7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T01:44:47.000Z" - }, - "end": { - "$date": "2021-06-04T01:46:26.000Z" - }, - "events": [ - { - "uuid": "1dbd0b33-f16c-4b95-858e-8835724ca7ed", - "start": { - "$date": "2021-06-04T01:44:47.000Z" - }, - "end": { - "$date": "2021-06-04T01:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f555739a-886c-4b7f-96fc-4886686f9a7e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-04T02:37:13.000Z" - }, - "end": { - "$date": "2021-06-04T02:37:28.000Z" - }, - "events": [ - { - "uuid": "d840860c-bc6b-4932-aca2-a386ed41f159", - "start": { - "$date": "2021-06-04T02:37:13.000Z" - }, - "end": { - "$date": "2021-06-04T02:37:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5720ed4b-9506-4acf-ba6d-eb8292ad0d7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T04:56:16.000Z" - }, - "end": { - "$date": "2021-06-04T16:15:09.000Z" - }, - "events": [ - { - "uuid": "2def2868-b2af-418b-b665-3fff20fa0dd3", - "start": { - "$date": "2021-06-04T04:56:16.000Z" - }, - "end": { - "$date": "2021-06-04T05:17:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb9c5f5f-761a-4877-8dea-a4e2e444011b", - "start": { - "$date": "2021-06-04T05:17:16.000Z" - }, - "end": { - "$date": "2021-06-04T05:44:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cdca9fa9-6f42-48b0-90db-ce66a36e3158", - "start": { - "$date": "2021-06-04T05:44:16.000Z" - }, - "end": { - "$date": "2021-06-04T07:32:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88fc0998-216a-4559-86f1-4627e42b3d97", - "start": { - "$date": "2021-06-04T07:32:16.000Z" - }, - "end": { - "$date": "2021-06-04T17:29:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d5c6607-5b9d-4821-9459-d7fe11195d81", - "start": { - "$date": "2021-06-04T17:29:16.000Z" - }, - "end": { - "$date": "2021-06-04T17:31:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69ba1b49-8f9a-4c11-9fe6-cb28fc64c525", - "start": { - "$date": "2021-06-04T17:31:16.000Z" - }, - "end": { - "$date": "2021-06-04T17:40:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2eea647c-9a0c-408a-8006-0a6be32e8133", - "start": { - "$date": "2021-06-04T17:40:16.000Z" - }, - "end": { - "$date": "2021-06-04T17:50:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "efed15a0-6822-4a70-8397-03463b542869", - "start": { - "$date": "2021-06-04T17:50:16.000Z" - }, - "end": { - "$date": "2021-06-04T18:04:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4415d415-feb0-4697-b1e8-ec29b735905f", - "start": { - "$date": "2021-06-04T18:04:16.000Z" - }, - "end": { - "$date": "2021-06-04T16:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "d1210cf6-7f52-4799-affd-7d30826b2e5f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-04T02:37:44.000Z" - }, - "end": { - "$date": "2021-06-04T03:31:16.000Z" - }, - "events": [ - { - "uuid": "1f756589-b9d7-4cab-8938-6018a72755cb", - "start": { - "$date": "2021-06-04T02:37:44.000Z" - }, - "end": { - "$date": "2021-06-04T03:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b1194154-ece5-46b7-9a22-32a2ecc6a4c5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-04T03:27:07.000Z" - }, - "end": { - "$date": "2021-06-04T03:31:00.000Z" - }, - "events": [ - { - "uuid": "efc522aa-6f8f-49b8-855c-e594d43d4205", - "start": { - "$date": "2021-06-04T03:27:07.000Z" - }, - "end": { - "$date": "2021-06-04T03:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "11e5694f-895d-472f-a896-89632add0615", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-04T03:31:13.000Z" - }, - "end": { - "$date": "2021-06-04T05:36:57.000Z" - }, - "events": [ - { - "uuid": "6232a972-a6a2-4ae6-ab69-44d7fa079f97", - "start": { - "$date": "2021-06-04T03:31:13.000Z" - }, - "end": { - "$date": "2021-06-04T05:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2d398209-bbb3-4c3d-991f-36a79ca269da", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-04T03:32:27.000Z" - }, - "end": { - "$date": "2021-06-04T03:49:59.000Z" - }, - "events": [ - { - "uuid": "62c60d81-1238-47e4-aa6f-afd49aa2e3ef", - "start": { - "$date": "2021-06-04T03:32:27.000Z" - }, - "end": { - "$date": "2021-06-04T03:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "c2660e30-c594-444a-86bf-0744f176db98", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T04:05:38.000Z" - }, - "end": { - "$date": "2021-06-04T04:25:47.000Z" - }, - "events": [ - { - "uuid": "25dbf32b-3c7b-40aa-840a-62aba4c8f642", - "start": { - "$date": "2021-06-04T04:05:38.000Z" - }, - "end": { - "$date": "2021-06-04T04:25:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "126449b0-727a-4fcb-b1a7-9485213be848", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-04T04:11:51.000Z" - }, - "end": { - "$date": "2021-06-04T04:41:29.000Z" - }, - "events": [ - { - "uuid": "8ac6d6d1-8cf8-44fe-bfb8-46092ee0e583", - "start": { - "$date": "2021-06-04T04:11:51.000Z" - }, - "end": { - "$date": "2021-06-04T04:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "e4485183-b599-43fe-aff2-f72138cf2564", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-04T04:11:17.000Z" - }, - "end": { - "$date": "2021-06-04T04:27:08.000Z" - }, - "events": [ - { - "uuid": "be92b01e-ab57-4f3e-9066-e833f1371196", - "start": { - "$date": "2021-06-04T04:11:17.000Z" - }, - "end": { - "$date": "2021-06-04T04:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "02df9ecc-c09b-4e53-9e2f-8696cfb985b4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-04T04:11:40.000Z" - }, - "end": { - "$date": "2021-06-04T04:25:51.000Z" - }, - "events": [ - { - "uuid": "d658f4fd-c59b-4e38-8757-9de2be2a9f96", - "start": { - "$date": "2021-06-04T04:11:40.000Z" - }, - "end": { - "$date": "2021-06-04T04:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "88ce4f6b-215f-4cd9-8012-37b2144b3ce9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-04T04:26:13.000Z" - }, - "end": { - "$date": "2021-06-04T05:07:00.000Z" - }, - "events": [ - { - "uuid": "b0739f09-d360-47d9-aeac-4adb8cd61918", - "start": { - "$date": "2021-06-04T04:26:13.000Z" - }, - "end": { - "$date": "2021-06-04T05:07:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "14581a44-a6f2-4c85-8fc8-bac120a2d91b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T04:26:54.000Z" - }, - "end": { - "$date": "2021-06-04T05:06:58.000Z" - }, - "events": [ - { - "uuid": "02f6a524-188e-426a-a8d7-18df2a0ce9bf", - "start": { - "$date": "2021-06-04T04:26:54.000Z" - }, - "end": { - "$date": "2021-06-04T05:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfc1f90c-ff80-407f-8c4e-fbab4e712fb8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-04T04:43:39.000Z" - }, - "end": { - "$date": "2021-06-04T04:45:46.000Z" - }, - "events": [ - { - "uuid": "47834b27-05fe-4161-b49d-3b018af0d670", - "start": { - "$date": "2021-06-04T04:43:39.000Z" - }, - "end": { - "$date": "2021-06-04T04:45:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "e7aa85cd-aec5-4436-b048-77f81f67a5f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T05:07:53.000Z" - }, - "end": { - "$date": "2021-06-04T05:21:23.000Z" - }, - "events": [ - { - "uuid": "999c57d2-5ae1-4de7-bee9-ad41987b0fe6", - "start": { - "$date": "2021-06-04T05:07:53.000Z" - }, - "end": { - "$date": "2021-06-04T05:21:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "9b76dbf4-3d9d-43b6-8f89-5e7fc55ae558", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T05:24:43.000Z" - }, - "end": { - "$date": "2021-06-04T06:16:16.000Z" - }, - "events": [ - { - "uuid": "8e21857e-6114-406b-ad65-f108b5a15a75", - "start": { - "$date": "2021-06-04T05:24:43.000Z" - }, - "end": { - "$date": "2021-06-04T06:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "563dc61f-311f-4fd4-b222-1fecd1a99a15", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-04T05:46:40.000Z" - }, - "end": { - "$date": "2021-06-04T06:25:36.000Z" - }, - "events": [ - { - "uuid": "506c58b4-b6bc-4284-90df-e307eb388ee0", - "start": { - "$date": "2021-06-04T05:46:40.000Z" - }, - "end": { - "$date": "2021-06-04T06:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "c5fe547c-067c-46ef-8d4e-eccd9633ec07", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T06:30:54.000Z" - }, - "end": { - "$date": "2021-06-04T06:56:09.000Z" - }, - "events": [ - { - "uuid": "70c690b9-7a48-4d25-bf5e-2289440d0215", - "start": { - "$date": "2021-06-04T06:30:54.000Z" - }, - "end": { - "$date": "2021-06-04T06:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "01ad2063-abba-476a-8282-ccd7f6982efb", - "uuid": "19ba77c8-d740-4114-bff1-267c0fc0cbef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T06:56:55.000Z" - }, - "end": { - "$date": "2021-06-04T06:58:50.000Z" - }, - "events": [ - { - "uuid": "0fca9f76-08c6-489a-9a91-342c97c03bc7", - "start": { - "$date": "2021-06-04T06:56:55.000Z" - }, - "end": { - "$date": "2021-06-04T06:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "493495ce-1efd-4225-b5e5-bfcf3d5dac6f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-04T11:55:07.000Z" - }, - "end": { - "$date": "2021-06-04T12:31:17.000Z" - }, - "events": [ - { - "uuid": "01b66b3a-bc6f-4b9c-b186-69a98b7b6923", - "start": { - "$date": "2021-06-04T11:55:07.000Z" - }, - "end": { - "$date": "2021-06-04T12:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "59596264-3c14-4d08-9249-f1f404580b8d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-04T12:41:10.000Z" - }, - "end": { - "$date": "2021-06-04T12:43:49.000Z" - }, - "events": [ - { - "uuid": "1db17594-3c6c-412f-b174-000b4cdb1272", - "start": { - "$date": "2021-06-04T12:41:10.000Z" - }, - "end": { - "$date": "2021-06-04T12:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "212c9278-0038-4972-b2a3-c26ec9f65345", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T14:42:52.000Z" - }, - "end": { - "$date": "2021-06-04T14:50:52.000Z" - }, - "events": [ - { - "uuid": "476d49c3-c2cb-4e08-8891-de7b6455b01f", - "start": { - "$date": "2021-06-04T14:42:52.000Z" - }, - "end": { - "$date": "2021-06-04T14:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0b4274df-c20a-4d9a-b62c-d7ba2e1f886a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T14:59:33.000Z" - }, - "end": { - "$date": "2021-06-04T15:15:56.000Z" - }, - "events": [ - { - "uuid": "16199b19-0009-44cc-9d9a-e841bb273411", - "start": { - "$date": "2021-06-04T14:59:33.000Z" - }, - "end": { - "$date": "2021-06-04T15:15:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "da815056-8c95-4d75-908c-6c974952b00e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T15:16:16.000Z" - }, - "end": { - "$date": "2021-06-04T15:24:02.000Z" - }, - "events": [ - { - "uuid": "6b634cee-d12b-4c43-9ef6-1d392df31a0d", - "start": { - "$date": "2021-06-04T15:16:16.000Z" - }, - "end": { - "$date": "2021-06-04T15:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dc331488-bd74-404c-a0f9-84c8b996a8e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T15:24:27.000Z" - }, - "end": { - "$date": "2021-06-04T15:52:43.000Z" - }, - "events": [ - { - "uuid": "a713fc6b-bbf7-46e0-ab62-c63230cb0308", - "start": { - "$date": "2021-06-04T15:24:27.000Z" - }, - "end": { - "$date": "2021-06-04T15:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "849ea1f8-0055-4ea8-abc3-a0694d898ef0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-04T15:45:13.000Z" - }, - "end": { - "$date": "2021-06-04T16:19:40.000Z" - }, - "events": [ - { - "uuid": "969cc1ed-c228-4214-ac44-be080878b126", - "start": { - "$date": "2021-06-04T15:45:13.000Z" - }, - "end": { - "$date": "2021-06-04T16:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7b725bf7-46a9-43ca-94de-261ac82f7e41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T16:16:55.000Z" - }, - "end": { - "$date": "2021-06-04T17:48:29.000Z" - }, - "events": [ - { - "uuid": "5aa31b17-cfb1-4fa6-8fee-eafad5a314dd", - "start": { - "$date": "2021-06-04T16:16:55.000Z" - }, - "end": { - "$date": "2021-06-04T17:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "7f1240be-2b8e-4799-8275-8cb6242403e6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-04T16:20:46.000Z" - }, - "end": { - "$date": "2021-06-04T16:50:21.000Z" - }, - "events": [ - { - "uuid": "035649b0-bbe3-430b-a0f9-a23feebf4782", - "start": { - "$date": "2021-06-04T16:20:46.000Z" - }, - "end": { - "$date": "2021-06-04T16:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad701293-d469-4ac7-adee-2385cc737d28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T17:03:44.000Z" - }, - "end": { - "$date": "2021-06-04T17:59:52.000Z" - }, - "events": [ - { - "uuid": "24100d82-99ed-4571-a1e8-06df4cd6c811", - "start": { - "$date": "2021-06-04T17:03:44.000Z" - }, - "end": { - "$date": "2021-06-04T17:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ae6d649a-5d35-4a7b-b7e3-301337200708", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T18:00:27.000Z" - }, - "end": { - "$date": "2021-06-04T18:10:07.000Z" - }, - "events": [ - { - "uuid": "2e727cd8-4908-48f8-b2fe-44c79a881362", - "start": { - "$date": "2021-06-04T18:00:27.000Z" - }, - "end": { - "$date": "2021-06-04T18:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "161b75d3-a9c6-4dfa-b7ca-fe3b49fc2882", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T18:40:53.000Z" - }, - "end": { - "$date": "2021-06-04T19:19:49.000Z" - }, - "events": [ - { - "uuid": "e8231ce8-5f90-4294-b850-ed1d5a6d5a12", - "start": { - "$date": "2021-06-04T18:40:53.000Z" - }, - "end": { - "$date": "2021-06-04T19:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "df90974a-0a95-41ef-ab80-e99aa668ba0b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-04T18:49:28.000Z" - }, - "end": { - "$date": "2021-06-05T01:32:08.000Z" - }, - "events": [ - { - "uuid": "718b14aa-02e2-4b5d-ad67-0fffc7661638", - "start": { - "$date": "2021-06-04T18:49:28.000Z" - }, - "end": { - "$date": "2021-06-04T19:16:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b279b0ff-b2dc-41f7-aa5d-fbcd0a2cca6e", - "start": { - "$date": "2021-06-04T19:16:28.000Z" - }, - "end": { - "$date": "2021-06-04T19:21:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6855cdd8-afd4-4166-8e60-af2a276c105a", - "start": { - "$date": "2021-06-04T19:21:28.000Z" - }, - "end": { - "$date": "2021-06-04T19:31:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "524c8015-2317-4317-a8ab-66e7b0eb69d4", - "start": { - "$date": "2021-06-04T19:31:28.000Z" - }, - "end": { - "$date": "2021-06-04T19:35:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5a8f8829-c1c7-4f3c-b7c0-fa53faac42b2", - "start": { - "$date": "2021-06-04T19:35:28.000Z" - }, - "end": { - "$date": "2021-06-05T00:45:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "faa5b9d5-ace8-474c-bf78-a550ff297efe", - "start": { - "$date": "2021-06-05T00:45:28.000Z" - }, - "end": { - "$date": "2021-06-05T00:49:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dd84fe1b-1a1b-429b-ad45-a97d0d74564c", - "start": { - "$date": "2021-06-05T00:49:28.000Z" - }, - "end": { - "$date": "2021-06-05T00:51:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b51ce7fe-051b-41cc-8568-4ff01f49d84f", - "start": { - "$date": "2021-06-05T00:51:28.000Z" - }, - "end": { - "$date": "2021-06-05T00:55:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af8bb12e-9a04-44b3-98d5-a9c0bd323d0c", - "start": { - "$date": "2021-06-05T00:55:28.000Z" - }, - "end": { - "$date": "2021-06-05T01:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "844d1771-bbd0-4a4d-ab71-4b3f2ecdec41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T19:30:37.000Z" - }, - "end": { - "$date": "2021-06-04T20:04:38.000Z" - }, - "events": [ - { - "uuid": "9bf8264a-63e9-41ee-98c7-87120f888dd6", - "start": { - "$date": "2021-06-04T19:30:37.000Z" - }, - "end": { - "$date": "2021-06-04T20:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f057fae7-11c5-40af-8dff-9b9452499423", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T20:23:06.000Z" - }, - "end": { - "$date": "2021-06-04T20:58:42.000Z" - }, - "events": [ - { - "uuid": "72a7c8b1-cacd-4c9c-a6b7-5cc82272ff68", - "start": { - "$date": "2021-06-04T20:23:06.000Z" - }, - "end": { - "$date": "2021-06-04T20:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "97fa4b2b-29fc-4870-941b-4fa2186d6bf5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-04T21:00:29.000Z" - }, - "end": { - "$date": "2021-06-04T22:08:32.000Z" - }, - "events": [ - { - "uuid": "1c041e32-27cb-4391-abe8-e219ea8bf412", - "start": { - "$date": "2021-06-04T21:00:29.000Z" - }, - "end": { - "$date": "2021-06-04T22:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82f53553-7d4f-4229-afbc-93856bd07210", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T22:01:14.000Z" - }, - "end": { - "$date": "2021-06-04T22:34:46.000Z" - }, - "events": [ - { - "uuid": "370a6506-2cad-442e-874d-42c1dd549fcd", - "start": { - "$date": "2021-06-04T22:01:14.000Z" - }, - "end": { - "$date": "2021-06-04T22:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2207882b-0eab-42a3-b733-c31c0f2ebe66", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T02:46:57.000Z" - }, - "end": { - "$date": "2021-06-05T04:36:34.000Z" - }, - "events": [ - { - "uuid": "48ad782d-7a04-439c-ad7d-32c6e71d36d5", - "start": { - "$date": "2021-06-05T02:46:57.000Z" - }, - "end": { - "$date": "2021-06-05T04:39:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d18e88f-12bc-4655-b975-f4c40b4b2c04", - "start": { - "$date": "2021-06-05T04:39:57.000Z" - }, - "end": { - "$date": "2021-06-05T05:02:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2cedb067-71ad-4865-93f3-5678e7d331ae", - "start": { - "$date": "2021-06-05T05:02:57.000Z" - }, - "end": { - "$date": "2021-06-05T05:06:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1165e6a1-e2a0-497e-8a2c-b7698191464d", - "start": { - "$date": "2021-06-05T05:06:57.000Z" - }, - "end": { - "$date": "2021-06-05T05:46:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9a15534-c8ae-452e-8750-2b1d45e277ff", - "start": { - "$date": "2021-06-05T05:46:57.000Z" - }, - "end": { - "$date": "2021-06-05T06:17:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe23e255-35df-4d25-9596-995ded2fb0ad", - "start": { - "$date": "2021-06-05T06:17:57.000Z" - }, - "end": { - "$date": "2021-06-05T06:22:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a4af7ad-13b0-4b7a-a8ed-aecb60a1f662", - "start": { - "$date": "2021-06-05T06:22:57.000Z" - }, - "end": { - "$date": "2021-06-05T06:32:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8c9e7bb-8552-4e29-882e-8ddd11359546", - "start": { - "$date": "2021-06-05T06:32:57.000Z" - }, - "end": { - "$date": "2021-06-05T06:34:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11fe6227-2864-4bd6-851f-322bd608510d", - "start": { - "$date": "2021-06-05T06:34:57.000Z" - }, - "end": { - "$date": "2021-06-05T06:58:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ce374aa-07cb-452a-a081-62244cb51630", - "start": { - "$date": "2021-06-05T06:58:57.000Z" - }, - "end": { - "$date": "2021-06-05T07:00:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "10b5266a-23ee-450e-97b1-b13af5551d5f", - "start": { - "$date": "2021-06-05T07:00:57.000Z" - }, - "end": { - "$date": "2021-06-05T04:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab2d9c78-993a-4b0a-b580-168e94351744", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-04T23:36:41.000Z" - }, - "end": { - "$date": "2021-06-05T00:16:21.000Z" - }, - "events": [ - { - "uuid": "11b85c83-4d79-48e9-aeb2-034f7d23d9b8", - "start": { - "$date": "2021-06-04T23:36:41.000Z" - }, - "end": { - "$date": "2021-06-05T00:16:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "31be1fda-03c0-43ff-8c53-f6d814a4c5c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T00:16:52.000Z" - }, - "end": { - "$date": "2021-06-05T02:34:40.000Z" - }, - "events": [ - { - "uuid": "c2ae9ff8-9b0c-4f3a-a251-d6031145c73a", - "start": { - "$date": "2021-06-05T00:16:52.000Z" - }, - "end": { - "$date": "2021-06-05T01:51:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "05656428-7783-4087-b572-4bc01ec74597", - "start": { - "$date": "2021-06-05T01:51:52.000Z" - }, - "end": { - "$date": "2021-06-05T01:55:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c7f3ba1-5c92-4577-bf07-fd7de0869cd4", - "start": { - "$date": "2021-06-05T01:55:52.000Z" - }, - "end": { - "$date": "2021-06-05T02:24:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33d18bcb-613a-46b3-a7ba-6794a0f70c27", - "start": { - "$date": "2021-06-05T02:24:52.000Z" - }, - "end": { - "$date": "2021-06-05T02:26:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9dde9552-5092-4768-8037-e98d567763e6", - "start": { - "$date": "2021-06-05T02:26:52.000Z" - }, - "end": { - "$date": "2021-06-05T02:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "23314cfd-4982-49ee-8ff0-6c5d49d193a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-05T01:32:23.000Z" - }, - "end": { - "$date": "2021-06-05T09:49:23.000Z" - }, - "events": [ - { - "uuid": "adfcccf8-faa2-45c2-8f31-ff938364b545", - "start": { - "$date": "2021-06-05T01:32:23.000Z" - }, - "end": { - "$date": "2021-06-05T09:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2d80a3e6-fddd-4567-b150-ac9e9abe7907", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-05T01:59:21.000Z" - }, - "end": { - "$date": "2021-06-05T03:11:59.000Z" - }, - "events": [ - { - "uuid": "ed85603c-c720-4fdd-acfd-b2e410a09d30", - "start": { - "$date": "2021-06-05T01:59:21.000Z" - }, - "end": { - "$date": "2021-06-05T02:14:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2c819afd-cdb2-4944-8dd7-6113d9316570", - "start": { - "$date": "2021-06-05T02:14:21.000Z" - }, - "end": { - "$date": "2021-06-05T02:34:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7b25d049-9aa0-4893-a038-d18bc401f9d6", - "start": { - "$date": "2021-06-05T02:34:21.000Z" - }, - "end": { - "$date": "2021-06-05T03:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "47d7f5d2-8a5d-43f6-851d-d52d6b9e09fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-05T02:01:42.000Z" - }, - "end": { - "$date": "2021-06-05T03:27:22.000Z" - }, - "events": [ - { - "uuid": "3f402f52-436e-454a-8f5a-68f9c3f5a239", - "start": { - "$date": "2021-06-05T02:01:42.000Z" - }, - "end": { - "$date": "2021-06-05T03:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1be818f8-b562-43c1-8667-5e4c81e4b058", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-05T02:27:36.000Z" - }, - "end": { - "$date": "2021-06-05T02:59:52.000Z" - }, - "events": [ - { - "uuid": "88709858-0316-4017-a86c-4c8454adc6aa", - "start": { - "$date": "2021-06-05T02:27:36.000Z" - }, - "end": { - "$date": "2021-06-05T02:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b5b987e-fb94-4bdd-a4d1-7366c7f51a5f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-05T02:32:42.000Z" - }, - "end": { - "$date": "2021-06-05T02:34:04.000Z" - }, - "events": [ - { - "uuid": "478ff42e-7e70-48da-a2a1-f1e8afe4f90e", - "start": { - "$date": "2021-06-05T02:32:42.000Z" - }, - "end": { - "$date": "2021-06-05T02:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "309a2771-e36b-4248-b52f-91e4ccf5ce28", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T02:35:14.000Z" - }, - "end": { - "$date": "2021-06-05T03:02:06.000Z" - }, - "events": [ - { - "uuid": "90dd0092-c432-42e7-af07-542d6ba9483a", - "start": { - "$date": "2021-06-05T02:35:14.000Z" - }, - "end": { - "$date": "2021-06-05T03:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "acbd5aa7-827b-469b-823e-7e4926696204", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-05T02:44:32.000Z" - }, - "end": { - "$date": "2021-06-05T04:36:05.000Z" - }, - "events": [ - { - "uuid": "30ba182b-f202-432b-b2ac-6d4c22a6ff99", - "start": { - "$date": "2021-06-05T02:44:32.000Z" - }, - "end": { - "$date": "2021-06-05T04:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a09413ad-6dbc-42e0-972f-62803be60d5c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-05T03:05:20.000Z" - }, - "end": { - "$date": "2021-06-05T03:49:23.000Z" - }, - "events": [ - { - "uuid": "1b3f6566-3c4c-4d66-9698-f29e1699b07f", - "start": { - "$date": "2021-06-05T03:05:20.000Z" - }, - "end": { - "$date": "2021-06-05T03:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "73b98f3c-cbac-4861-8302-0503197a8d04", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T03:03:19.000Z" - }, - "end": { - "$date": "2021-06-05T03:03:28.000Z" - }, - "events": [ - { - "uuid": "bd178770-0029-42cd-a2c2-8de09c584abc", - "start": { - "$date": "2021-06-05T03:03:19.000Z" - }, - "end": { - "$date": "2021-06-05T03:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58763ee2-e283-4757-845a-fd7253e187b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T03:05:14.000Z" - }, - "end": { - "$date": "2021-06-05T03:40:16.000Z" - }, - "events": [ - { - "uuid": "0875b569-592e-405b-9966-b140bf1ea3ac", - "start": { - "$date": "2021-06-05T03:05:14.000Z" - }, - "end": { - "$date": "2021-06-05T03:40:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf33d580-663a-444c-9b12-a9b1edfc2fb6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T03:42:37.000Z" - }, - "end": { - "$date": "2021-06-05T04:20:29.000Z" - }, - "events": [ - { - "uuid": "6f09e019-5237-4f33-9c5e-fa4ca88733f7", - "start": { - "$date": "2021-06-05T03:42:37.000Z" - }, - "end": { - "$date": "2021-06-05T04:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "019636ed-7aa9-4a3a-acb5-997e058e8e12", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T05:11:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:23:44.000Z" - }, - "events": [ - { - "uuid": "794f9b81-5275-416f-a605-4515854e47fd", - "start": { - "$date": "2021-06-05T05:11:02.000Z" - }, - "end": { - "$date": "2021-06-05T06:13:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e10ffe9-3020-404d-bc9d-7f7e8699b73e", - "start": { - "$date": "2021-06-05T06:13:02.000Z" - }, - "end": { - "$date": "2021-06-05T08:01:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c551fb1b-556a-4679-9c17-f858626fdeed", - "start": { - "$date": "2021-06-05T08:01:02.000Z" - }, - "end": { - "$date": "2021-06-05T08:03:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "827cff45-adba-42ae-9f47-1285c0b95077", - "start": { - "$date": "2021-06-05T08:03:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:18:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a0aef51-0ba4-4a31-a71e-3da0897d18d3", - "start": { - "$date": "2021-06-05T17:18:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:21:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c901dbf4-d39a-4416-a653-0a403b2b666c", - "start": { - "$date": "2021-06-05T17:21:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:31:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98abffa5-d60d-4ef7-ba3a-99988ba3cce4", - "start": { - "$date": "2021-06-05T17:31:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:41:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95269d31-a28c-47e8-a1e6-e0f496549550", - "start": { - "$date": "2021-06-05T17:41:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:55:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f30c98d-8b59-4bf4-9efa-38350d9565d0", - "start": { - "$date": "2021-06-05T17:55:02.000Z" - }, - "end": { - "$date": "2021-06-05T17:23:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e73b6a33-3210-47c8-94f6-511f1f4f8cde", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-05T04:28:40.000Z" - }, - "end": { - "$date": "2021-06-05T05:11:21.000Z" - }, - "events": [ - { - "uuid": "be682b2d-415f-404c-89f0-6d4b8adfe293", - "start": { - "$date": "2021-06-05T04:28:40.000Z" - }, - "end": { - "$date": "2021-06-05T05:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "c4cfeed9-f905-4f45-8ec7-70b266c61760", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T04:36:52.000Z" - }, - "end": { - "$date": "2021-06-05T05:01:01.000Z" - }, - "events": [ - { - "uuid": "19633f77-06f9-4de6-bf88-69730685f8f4", - "start": { - "$date": "2021-06-05T04:36:52.000Z" - }, - "end": { - "$date": "2021-06-05T05:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "a6f2c2d1-e7c8-4554-9386-946282d87e84", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-05T04:37:13.000Z" - }, - "end": { - "$date": "2021-06-05T05:01:03.000Z" - }, - "events": [ - { - "uuid": "b9622d63-3fc1-454b-b91e-89a2ff215c88", - "start": { - "$date": "2021-06-05T04:37:13.000Z" - }, - "end": { - "$date": "2021-06-05T05:01:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83bd80a6-5096-4e1a-871d-116918900f84", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-05T05:46:58.000Z" - }, - "end": { - "$date": "2021-06-05T06:15:54.000Z" - }, - "events": [ - { - "uuid": "f020aa17-50b2-4bf2-a97f-e3aa62067036", - "start": { - "$date": "2021-06-05T05:46:58.000Z" - }, - "end": { - "$date": "2021-06-05T06:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39624743-2736-49ff-81fa-efcc3f547252", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-05T06:28:00.000Z" - }, - "end": { - "$date": "2021-06-05T06:58:38.000Z" - }, - "events": [ - { - "uuid": "9adf6b67-440f-4e20-8fcf-b2df1aa42e45", - "start": { - "$date": "2021-06-05T06:28:00.000Z" - }, - "end": { - "$date": "2021-06-05T06:58:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c082949f-1545-4e82-be4c-d908723d4e7b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-05T12:32:12.000Z" - }, - "end": { - "$date": "2021-06-05T12:41:03.000Z" - }, - "events": [ - { - "uuid": "c08fe50f-ad1a-4742-aee0-2575c7511d44", - "start": { - "$date": "2021-06-05T12:32:12.000Z" - }, - "end": { - "$date": "2021-06-05T12:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "00162138-a533-4b46-9d78-421a54fcac96", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-05T12:42:03.000Z" - }, - "end": { - "$date": "2021-06-05T12:47:53.000Z" - }, - "events": [ - { - "uuid": "1061488b-fef8-4aa5-bc13-f5c747177f72", - "start": { - "$date": "2021-06-05T12:42:03.000Z" - }, - "end": { - "$date": "2021-06-05T12:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "90e912cf-8e90-453c-a7e6-9d80951c9747", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T14:12:00.000Z" - }, - "end": { - "$date": "2021-06-05T14:40:13.000Z" - }, - "events": [ - { - "uuid": "36a15aa7-1290-46d2-9031-8005f6cab5cb", - "start": { - "$date": "2021-06-05T14:12:00.000Z" - }, - "end": { - "$date": "2021-06-05T14:24:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c4d7268b-d662-42e3-9715-b987c32ae16d", - "start": { - "$date": "2021-06-05T14:24:00.000Z" - }, - "end": { - "$date": "2021-06-05T14:26:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b91de83-ad47-4b9b-9b8f-84a93594e453", - "start": { - "$date": "2021-06-05T14:26:00.000Z" - }, - "end": { - "$date": "2021-06-05T14:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a650adeb-e6de-453c-b0d8-dd0f20e9f040", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T15:05:32.000Z" - }, - "end": { - "$date": "2021-06-05T15:10:13.000Z" - }, - "events": [ - { - "uuid": "bfbcf63a-c6e4-4dd6-9a6b-0d14ecbf9d25", - "start": { - "$date": "2021-06-05T15:05:32.000Z" - }, - "end": { - "$date": "2021-06-05T15:10:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "29d93a13-d1eb-4a24-8605-fbddba9a8e08", - "uuid": "2752b725-62b3-40ca-838d-08612a26ed69", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T16:36:03.000Z" - }, - "end": { - "$date": "2021-06-05T16:47:54.000Z" - }, - "events": [ - { - "uuid": "7abbf510-9c05-4437-897e-ece95123c63f", - "start": { - "$date": "2021-06-05T16:36:03.000Z" - }, - "end": { - "$date": "2021-06-05T16:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8b8f304a-9944-444d-b3b4-202fbbe7c880", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T17:12:27.000Z" - }, - "end": { - "$date": "2021-06-05T18:14:29.000Z" - }, - "events": [ - { - "uuid": "d228041a-aa5c-487c-9605-2d7e54e5ca22", - "start": { - "$date": "2021-06-05T17:12:27.000Z" - }, - "end": { - "$date": "2021-06-05T18:14:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a78a864a-50ab-4be6-81b9-50c020ada680", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T17:29:25.000Z" - }, - "end": { - "$date": "2021-06-05T18:33:51.000Z" - }, - "events": [ - { - "uuid": "54348c38-f987-40c0-8283-7aac0d7a7b1f", - "start": { - "$date": "2021-06-05T17:29:25.000Z" - }, - "end": { - "$date": "2021-06-05T18:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "45fdbb14-720e-4567-bf92-0d0360e080a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T18:15:24.000Z" - }, - "end": { - "$date": "2021-06-05T18:20:25.000Z" - }, - "events": [ - { - "uuid": "afccac9e-47e8-4e07-b983-39be79b85ea7", - "start": { - "$date": "2021-06-05T18:15:24.000Z" - }, - "end": { - "$date": "2021-06-05T18:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b90f174e-a894-4fe0-97c1-61308be9dedc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T18:24:10.000Z" - }, - "end": { - "$date": "2021-06-05T19:01:02.000Z" - }, - "events": [ - { - "uuid": "7d7cd016-b211-4167-8aed-08e623a8f89b", - "start": { - "$date": "2021-06-05T18:24:10.000Z" - }, - "end": { - "$date": "2021-06-05T19:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a26bb28-98ff-4f90-838b-b1d7474ca7c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T18:35:32.000Z" - }, - "end": { - "$date": "2021-06-05T19:05:23.000Z" - }, - "events": [ - { - "uuid": "b22e700f-97dc-4f85-b834-6aff6a565f46", - "start": { - "$date": "2021-06-05T18:35:32.000Z" - }, - "end": { - "$date": "2021-06-05T19:05:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bf4cb686-be23-4dc2-af83-d40740d1bb04", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T19:02:22.000Z" - }, - "end": { - "$date": "2021-06-05T19:41:29.000Z" - }, - "events": [ - { - "uuid": "a55b1446-bd2b-4c14-b4b2-c3d4ff43560d", - "start": { - "$date": "2021-06-05T19:02:22.000Z" - }, - "end": { - "$date": "2021-06-05T19:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e31614e5-089c-43e0-9285-ce54e7ad33d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T19:52:56.000Z" - }, - "end": { - "$date": "2021-06-05T20:08:21.000Z" - }, - "events": [ - { - "uuid": "7e631470-61ab-496a-9663-71fdaffbb125", - "start": { - "$date": "2021-06-05T19:52:56.000Z" - }, - "end": { - "$date": "2021-06-05T20:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "71b79e43-28ce-4f88-91cb-c0b87ea92fad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T19:54:36.000Z" - }, - "end": { - "$date": "2021-06-05T20:04:47.000Z" - }, - "events": [ - { - "uuid": "8d58f354-4bb3-4ef3-afd3-adf9333ee796", - "start": { - "$date": "2021-06-05T19:54:36.000Z" - }, - "end": { - "$date": "2021-06-05T20:04:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "02d5c472-5d09-400a-b7aa-8160c27d60ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-05T19:59:17.000Z" - }, - "end": { - "$date": "2021-06-05T21:10:06.000Z" - }, - "events": [ - { - "uuid": "263b200c-dd02-4fe3-8658-d7fe4bea7d1d", - "start": { - "$date": "2021-06-05T19:59:17.000Z" - }, - "end": { - "$date": "2021-06-05T20:34:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "772208e8-4403-4983-bf89-d89edb00497f", - "start": { - "$date": "2021-06-05T20:34:17.000Z" - }, - "end": { - "$date": "2021-06-05T20:39:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f59bcb87-4c34-4797-a1de-09d8e94fa771", - "start": { - "$date": "2021-06-05T20:39:17.000Z" - }, - "end": { - "$date": "2021-06-05T20:57:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c529bb3d-edb2-480c-aa10-a690e80fc7a3", - "start": { - "$date": "2021-06-05T20:57:17.000Z" - }, - "end": { - "$date": "2021-06-05T21:10:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "11a99275-f180-4151-af0e-d4930a33753c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-05T20:07:08.000Z" - }, - "end": { - "$date": "2021-06-05T21:17:33.000Z" - }, - "events": [ - { - "uuid": "02714df2-4b8b-4fac-9d93-e85f52d8f7e8", - "start": { - "$date": "2021-06-05T20:07:08.000Z" - }, - "end": { - "$date": "2021-06-05T20:49:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41a16e16-6187-46d2-b83a-1c773c77f438", - "start": { - "$date": "2021-06-05T20:49:08.000Z" - }, - "end": { - "$date": "2021-06-05T20:56:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "31b89a22-ee65-4270-8fc9-adec862b1680", - "start": { - "$date": "2021-06-05T20:56:08.000Z" - }, - "end": { - "$date": "2021-06-05T21:06:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25521e63-2ca5-411a-999d-f775dfdf605e", - "start": { - "$date": "2021-06-05T21:06:08.000Z" - }, - "end": { - "$date": "2021-06-05T21:11:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79d91b8c-f157-4e02-a38b-469e4eed26d2", - "start": { - "$date": "2021-06-05T21:11:08.000Z" - }, - "end": { - "$date": "2021-06-05T21:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff5ff509-9fbf-4a45-bdae-46e85859a527", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-05T20:34:54.000Z" - }, - "end": { - "$date": "2021-06-05T23:40:39.000Z" - }, - "events": [ - { - "uuid": "336c17b6-9ce1-4f9f-afaa-0590d0b6d92f", - "start": { - "$date": "2021-06-05T20:34:54.000Z" - }, - "end": { - "$date": "2021-06-05T23:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6292a65b-0417-4e57-865f-5c7b5db0c3ff", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-06T01:05:18.000Z" - }, - "end": { - "$date": "2021-06-06T01:07:06.000Z" - }, - "events": [ - { - "uuid": "499fd9f5-fea2-47a6-a220-fe63eb93368a", - "start": { - "$date": "2021-06-06T01:05:18.000Z" - }, - "end": { - "$date": "2021-06-06T04:28:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "711a81bc-6a24-434a-a974-bf40ac49c2cc", - "start": { - "$date": "2021-06-06T04:28:18.000Z" - }, - "end": { - "$date": "2021-06-06T04:32:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e66206f8-cdc8-4800-95e5-90cd95c44bb6", - "start": { - "$date": "2021-06-06T04:32:18.000Z" - }, - "end": { - "$date": "2021-06-06T04:42:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "237a092c-1c27-4b92-a025-8979b4806337", - "start": { - "$date": "2021-06-06T04:42:18.000Z" - }, - "end": { - "$date": "2021-06-06T04:52:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "40aef5e3-370e-4f37-91d8-0597c967a41f", - "start": { - "$date": "2021-06-06T04:52:18.000Z" - }, - "end": { - "$date": "2021-06-06T05:34:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20fdaf94-6b0b-4a7b-b378-ca43853bf6f6", - "start": { - "$date": "2021-06-06T05:34:18.000Z" - }, - "end": { - "$date": "2021-06-06T01:07:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a03ba21-3f92-43bf-b217-4b5f0234667f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T20:41:07.000Z" - }, - "end": { - "$date": "2021-06-05T23:41:38.000Z" - }, - "events": [ - { - "uuid": "5e93cd61-5cd4-4cad-9711-6570814a62ad", - "start": { - "$date": "2021-06-05T20:41:07.000Z" - }, - "end": { - "$date": "2021-06-05T23:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0be76f87-8e3c-417a-bfac-e610d7694ba6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-05T21:42:13.000Z" - }, - "end": { - "$date": "2021-06-06T10:49:56.000Z" - }, - "events": [ - { - "uuid": "7d5d8874-f803-4f4a-96c0-f20cfd3d580f", - "start": { - "$date": "2021-06-05T21:42:13.000Z" - }, - "end": { - "$date": "2021-06-06T01:38:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "68d1ff3f-bce6-455d-b6c1-572ccbfd89f4", - "start": { - "$date": "2021-06-06T01:38:13.000Z" - }, - "end": { - "$date": "2021-06-06T01:54:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94795db3-70f2-4349-bff5-f1aeeaa2e6d0", - "start": { - "$date": "2021-06-06T01:54:13.000Z" - }, - "end": { - "$date": "2021-06-06T02:08:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec075c99-704e-4c39-aad3-cef69a850567", - "start": { - "$date": "2021-06-06T02:08:13.000Z" - }, - "end": { - "$date": "2021-06-06T02:12:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e20d3452-f4c4-4bd4-98a7-cf85a0d85663", - "start": { - "$date": "2021-06-06T02:12:13.000Z" - }, - "end": { - "$date": "2021-06-06T02:16:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "459e69c2-d5ae-4018-9253-54bebb84158e", - "start": { - "$date": "2021-06-06T02:16:13.000Z" - }, - "end": { - "$date": "2021-06-06T02:29:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f3ee6faa-d9de-44ac-83cf-4741c8e94b6f", - "start": { - "$date": "2021-06-06T02:29:13.000Z" - }, - "end": { - "$date": "2021-06-06T02:41:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ccaccbf-7d24-498f-bfeb-2fa2839c9c0d", - "start": { - "$date": "2021-06-06T02:41:13.000Z" - }, - "end": { - "$date": "2021-06-06T02:51:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e352187-bdb0-4eb2-9777-995b6a96c5ba", - "start": { - "$date": "2021-06-06T02:51:13.000Z" - }, - "end": { - "$date": "2021-06-06T08:20:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2e4fd34-e96c-461e-89b7-2d0ade6cc5dd", - "start": { - "$date": "2021-06-06T08:20:13.000Z" - }, - "end": { - "$date": "2021-06-06T08:40:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eaf0e9ff-d1fe-4a28-b348-1e6563c260c6", - "start": { - "$date": "2021-06-06T08:40:13.000Z" - }, - "end": { - "$date": "2021-06-06T10:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ce09c5d1-6ef6-4d5a-a073-edefe9efb3d3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-05T20:22:41.000Z" - }, - "end": { - "$date": "2021-06-05T22:28:35.000Z" - }, - "events": [ - { - "uuid": "99a6b65f-de9c-42d8-880f-6f201ee76e47", - "start": { - "$date": "2021-06-05T20:22:41.000Z" - }, - "end": { - "$date": "2021-06-05T22:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "47629b1d-c46a-41fb-ad49-95843ba457a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-05T23:47:09.000Z" - }, - "end": { - "$date": "2021-06-06T02:39:41.000Z" - }, - "events": [ - { - "uuid": "ad837c4c-14bf-4839-9cb2-35d1f5661c37", - "start": { - "$date": "2021-06-05T23:47:09.000Z" - }, - "end": { - "$date": "2021-06-06T00:00:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "05c05672-d725-4f0b-bfa8-5ac41aa62293", - "start": { - "$date": "2021-06-06T00:00:09.000Z" - }, - "end": { - "$date": "2021-06-06T00:04:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "02dfa9a0-23e9-4413-9eb8-5e316826bd43", - "start": { - "$date": "2021-06-06T00:04:09.000Z" - }, - "end": { - "$date": "2021-06-06T00:06:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88530f34-40c4-4f6a-a392-ac64884f02db", - "start": { - "$date": "2021-06-06T00:06:09.000Z" - }, - "end": { - "$date": "2021-06-06T00:23:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c016665e-4c92-4565-94d7-cb2745a92592", - "start": { - "$date": "2021-06-06T00:23:09.000Z" - }, - "end": { - "$date": "2021-06-06T02:15:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ee8c03e-6d6e-42f4-b314-a4d66d0fe4cb", - "start": { - "$date": "2021-06-06T02:15:09.000Z" - }, - "end": { - "$date": "2021-06-06T02:37:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "78c33be8-6b61-48ce-b892-b14d64a24edb", - "start": { - "$date": "2021-06-06T02:37:09.000Z" - }, - "end": { - "$date": "2021-06-06T02:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6ef0aae7-f5ee-4a52-892d-07ba383fed01", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-06T03:24:01.000Z" - }, - "end": { - "$date": "2021-06-06T03:24:50.000Z" - }, - "events": [ - { - "uuid": "a733d54e-d996-4618-91ef-d8d9474a823b", - "start": { - "$date": "2021-06-06T03:24:01.000Z" - }, - "end": { - "$date": "2021-06-06T03:27:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23ebb498-58f0-4724-992e-6124744f1cc0", - "start": { - "$date": "2021-06-06T03:27:01.000Z" - }, - "end": { - "$date": "2021-06-06T03:24:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c2ff482a-cc72-4a57-8da8-cb88ea3c9283", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-06T01:47:25.000Z" - }, - "end": { - "$date": "2021-06-06T01:50:39.000Z" - }, - "events": [ - { - "uuid": "eacd28a1-fc79-4930-aaea-694a26c13c94", - "start": { - "$date": "2021-06-06T01:47:25.000Z" - }, - "end": { - "$date": "2021-06-06T01:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7fd53897-d912-444d-8f28-2db0369bb14d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T02:04:05.000Z" - }, - "end": { - "$date": "2021-06-06T02:11:31.000Z" - }, - "events": [ - { - "uuid": "fe25b440-7983-4d59-90c8-f7583f477a51", - "start": { - "$date": "2021-06-06T02:04:05.000Z" - }, - "end": { - "$date": "2021-06-06T02:11:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ce19f862-ac77-4114-9496-ae8cea771003", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T02:21:28.000Z" - }, - "end": { - "$date": "2021-06-06T04:02:23.000Z" - }, - "events": [ - { - "uuid": "8206461c-8ea0-4901-8c4c-10273345e83f", - "start": { - "$date": "2021-06-06T02:21:28.000Z" - }, - "end": { - "$date": "2021-06-06T02:51:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b8a7e31f-c1ee-4d60-96c1-41911ce1568d", - "start": { - "$date": "2021-06-06T02:51:28.000Z" - }, - "end": { - "$date": "2021-06-06T02:56:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d413bea4-523e-4b3c-9a36-dd04d82b2faf", - "start": { - "$date": "2021-06-06T02:56:28.000Z" - }, - "end": { - "$date": "2021-06-06T03:16:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1530b730-2ce2-4edc-8d01-9a5810df9780", - "start": { - "$date": "2021-06-06T03:16:28.000Z" - }, - "end": { - "$date": "2021-06-06T03:32:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e31661e4-c3d9-458e-8dfe-2bb30aae2e7e", - "start": { - "$date": "2021-06-06T03:32:28.000Z" - }, - "end": { - "$date": "2021-06-06T04:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee8e8964-0a31-4a4e-af67-5e312c0d47b4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-06T02:38:00.000Z" - }, - "end": { - "$date": "2021-06-06T03:15:32.000Z" - }, - "events": [ - { - "uuid": "01876319-c66b-4994-a7b3-a6fb7b7e4791", - "start": { - "$date": "2021-06-06T02:38:00.000Z" - }, - "end": { - "$date": "2021-06-06T03:15:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "846bed71-af8e-4e06-adc1-3ba09de8faf5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-06T02:40:47.000Z" - }, - "end": { - "$date": "2021-06-06T03:19:54.000Z" - }, - "events": [ - { - "uuid": "1cc37f99-12b7-492a-bb38-90c1d8a8d26b", - "start": { - "$date": "2021-06-06T02:40:47.000Z" - }, - "end": { - "$date": "2021-06-06T03:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0e20f81b-9efd-4db0-9260-1cb40d311465", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-06T03:07:53.000Z" - }, - "end": { - "$date": "2021-06-06T09:01:15.000Z" - }, - "events": [ - { - "uuid": "8ced6b18-a445-4554-8f1c-e78910f10260", - "start": { - "$date": "2021-06-06T03:07:53.000Z" - }, - "end": { - "$date": "2021-06-06T09:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "89a2357d-5417-4df3-9745-995f76c436fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-06T03:43:26.000Z" - }, - "end": { - "$date": "2021-06-06T05:30:36.000Z" - }, - "events": [ - { - "uuid": "031d1472-b271-419a-bf1e-7f13ee7c2992", - "start": { - "$date": "2021-06-06T03:43:26.000Z" - }, - "end": { - "$date": "2021-06-06T05:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6fed053b-01b9-4434-bfd3-765a77dd0517", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-06T03:25:21.000Z" - }, - "end": { - "$date": "2021-06-06T09:02:20.000Z" - }, - "events": [ - { - "uuid": "300cf733-f062-4454-ac1d-5b5b8b914b10", - "start": { - "$date": "2021-06-06T03:25:21.000Z" - }, - "end": { - "$date": "2021-06-06T09:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c7484304-a1d3-436f-b0b7-891a0e207074", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-06T03:25:54.000Z" - }, - "end": { - "$date": "2021-06-06T03:35:35.000Z" - }, - "events": [ - { - "uuid": "8eec437e-b572-494d-be7f-3fe67f25ce29", - "start": { - "$date": "2021-06-06T03:25:54.000Z" - }, - "end": { - "$date": "2021-06-06T03:35:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5e3e3cbc-d6ec-405f-b3d9-e231f119746a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-06T03:35:50.000Z" - }, - "end": { - "$date": "2021-06-06T04:19:39.000Z" - }, - "events": [ - { - "uuid": "2f03cea4-78ad-4336-ac38-61bf85effd35", - "start": { - "$date": "2021-06-06T03:35:50.000Z" - }, - "end": { - "$date": "2021-06-06T04:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f9cfaf2c-644e-4330-9ced-389915ff5639", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-06T03:37:33.000Z" - }, - "end": { - "$date": "2021-06-06T04:19:44.000Z" - }, - "events": [ - { - "uuid": "23b3ba67-b24c-464e-8616-e1e28ce8848d", - "start": { - "$date": "2021-06-06T03:37:33.000Z" - }, - "end": { - "$date": "2021-06-06T04:19:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "893e9c9f-c7c1-43db-bc7c-bd5997869acf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-06T03:51:19.000Z" - }, - "end": { - "$date": "2021-06-06T06:01:45.000Z" - }, - "events": [ - { - "uuid": "258bb7b3-cb3a-47f4-899e-c2178bba0321", - "start": { - "$date": "2021-06-06T03:51:19.000Z" - }, - "end": { - "$date": "2021-06-06T06:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e0dee5ab-adad-4394-babc-1530e9b11e59", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T04:10:02.000Z" - }, - "end": { - "$date": "2021-06-06T04:45:28.000Z" - }, - "events": [ - { - "uuid": "491a3e3b-5efb-4c73-af33-9242c7fb53c5", - "start": { - "$date": "2021-06-06T04:10:02.000Z" - }, - "end": { - "$date": "2021-06-06T04:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "67107643-c60b-4b17-8929-e214668458c4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-06T05:50:12.000Z" - }, - "end": { - "$date": "2021-06-06T06:43:03.000Z" - }, - "events": [ - { - "uuid": "0094686c-c6a3-4666-b4e1-30af594602ee", - "start": { - "$date": "2021-06-06T05:50:12.000Z" - }, - "end": { - "$date": "2021-06-06T06:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f83dc38c-24aa-4ba0-8c6c-d2c3abeeb897", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-06T06:17:43.000Z" - }, - "end": { - "$date": "2021-06-06T16:57:51.000Z" - }, - "events": [ - { - "uuid": "9417cf22-2677-482d-a326-fcb14958f156", - "start": { - "$date": "2021-06-06T06:17:43.000Z" - }, - "end": { - "$date": "2021-06-06T06:43:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4dd3cc45-3fda-41a0-8f51-08615e8c2768", - "start": { - "$date": "2021-06-06T06:43:43.000Z" - }, - "end": { - "$date": "2021-06-06T15:07:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2ab44bb6-539d-4267-b271-f0869fed9af6", - "start": { - "$date": "2021-06-06T15:07:43.000Z" - }, - "end": { - "$date": "2021-06-06T15:09:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8535d6d5-f5f8-48ea-b857-912ee02e7d45", - "start": { - "$date": "2021-06-06T15:09:43.000Z" - }, - "end": { - "$date": "2021-06-06T15:34:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e091b02a-d538-4ac1-a4b7-a5bf0ea875f7", - "start": { - "$date": "2021-06-06T15:34:43.000Z" - }, - "end": { - "$date": "2021-06-06T16:46:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3644049e-1a4f-43f4-81a1-5e79d871e891", - "start": { - "$date": "2021-06-06T16:46:43.000Z" - }, - "end": { - "$date": "2021-06-06T16:49:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c265dde-451c-4ac2-9b15-bceb32c35933", - "start": { - "$date": "2021-06-06T16:49:43.000Z" - }, - "end": { - "$date": "2021-06-06T16:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2afb434-73af-4a04-8b02-63c9c9b43ad0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-06T09:14:29.000Z" - }, - "end": { - "$date": "2021-06-06T09:14:34.000Z" - }, - "events": [ - { - "uuid": "cca57914-1ce6-4db0-a7e4-7ef956f22680", - "start": { - "$date": "2021-06-06T09:14:29.000Z" - }, - "end": { - "$date": "2021-06-06T09:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "518175af-86c3-48da-a7d1-aa219ca80932", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-06T14:10:33.000Z" - }, - "end": { - "$date": "2021-06-06T15:16:54.000Z" - }, - "events": [ - { - "uuid": "e2d4b5b0-53b0-45cc-981b-ce370335973e", - "start": { - "$date": "2021-06-06T14:10:33.000Z" - }, - "end": { - "$date": "2021-06-06T15:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "da9d4777-bcfb-4a91-b8c4-9f014bea29f6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T15:41:43.000Z" - }, - "end": { - "$date": "2021-06-06T17:00:20.000Z" - }, - "events": [ - { - "uuid": "2870e04c-64c3-4c06-95c3-4044afb9f1b2", - "start": { - "$date": "2021-06-06T15:41:43.000Z" - }, - "end": { - "$date": "2021-06-06T17:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b2d0f84d-19c8-4358-b24f-ad67a730ad1b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-06T18:17:37.000Z" - }, - "end": { - "$date": "2021-06-06T18:17:42.000Z" - }, - "events": [ - { - "uuid": "21f9bb03-b86e-4073-a959-ea2cc2828e3a", - "start": { - "$date": "2021-06-06T18:17:37.000Z" - }, - "end": { - "$date": "2021-06-06T18:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b52a77d2-a556-408d-8f9d-a3adb99efae6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T17:00:25.000Z" - }, - "end": { - "$date": "2021-06-06T17:26:44.000Z" - }, - "events": [ - { - "uuid": "40dab1fb-cab8-4a41-b30c-c138235dda45", - "start": { - "$date": "2021-06-06T17:00:25.000Z" - }, - "end": { - "$date": "2021-06-06T17:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "365487b2-409e-4534-9f6a-93cdcec82f29", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T17:27:14.000Z" - }, - "end": { - "$date": "2021-06-06T19:00:29.000Z" - }, - "events": [ - { - "uuid": "3ee05759-66f1-4019-8af1-cc429cf8388d", - "start": { - "$date": "2021-06-06T17:27:14.000Z" - }, - "end": { - "$date": "2021-06-06T19:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a99d289b-1622-40e6-91fc-fdca60ac0d32", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-06T18:18:12.000Z" - }, - "end": { - "$date": "2021-06-06T21:02:13.000Z" - }, - "events": [ - { - "uuid": "c11aa80a-b7cb-4285-b476-8c1295f41874", - "start": { - "$date": "2021-06-06T18:18:12.000Z" - }, - "end": { - "$date": "2021-06-06T19:21:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40826ea8-5d81-44ec-9c38-c606fde7c038", - "start": { - "$date": "2021-06-06T19:21:12.000Z" - }, - "end": { - "$date": "2021-06-06T19:46:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8afc9bf2-f02e-49e1-ab2d-9ed899926625", - "start": { - "$date": "2021-06-06T19:46:12.000Z" - }, - "end": { - "$date": "2021-06-06T20:02:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41ebc5be-7ac8-4934-af96-9da481239995", - "start": { - "$date": "2021-06-06T20:02:12.000Z" - }, - "end": { - "$date": "2021-06-06T20:34:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e17c322d-c528-4e08-9d26-4087b6f66c5c", - "start": { - "$date": "2021-06-06T20:34:12.000Z" - }, - "end": { - "$date": "2021-06-06T21:02:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0948233f-5445-498d-a75e-287100a3094e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-06T18:18:17.000Z" - }, - "end": { - "$date": "2021-06-06T20:37:16.000Z" - }, - "events": [ - { - "uuid": "9b04d285-91a3-458b-a1c9-4e78ed309250", - "start": { - "$date": "2021-06-06T18:18:17.000Z" - }, - "end": { - "$date": "2021-06-06T20:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "21e975c7-6ffc-4860-99b4-8d920d797dcf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T19:26:23.000Z" - }, - "end": { - "$date": "2021-06-06T19:50:20.000Z" - }, - "events": [ - { - "uuid": "8896bf81-c0f7-47eb-928d-acbe873787d0", - "start": { - "$date": "2021-06-06T19:26:23.000Z" - }, - "end": { - "$date": "2021-06-06T19:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f35a2c6-d5c0-4092-86c0-8c2ad80330aa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-06T19:46:25.000Z" - }, - "end": { - "$date": "2021-06-07T09:24:15.000Z" - }, - "events": [ - { - "uuid": "e9f8b4e0-cfc0-4a28-bc4a-4594fdb84525", - "start": { - "$date": "2021-06-06T19:46:25.000Z" - }, - "end": { - "$date": "2021-06-06T20:08:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb695d2b-6f06-4b3f-9b7d-d3a28eab2e1e", - "start": { - "$date": "2021-06-06T20:08:25.000Z" - }, - "end": { - "$date": "2021-06-06T20:16:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c86534ed-ee86-48ae-86a6-6ef2e6c3c5f1", - "start": { - "$date": "2021-06-06T20:16:25.000Z" - }, - "end": { - "$date": "2021-06-07T05:01:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a7d49b5-8cb3-4c8b-9e71-b177a7accdaa", - "start": { - "$date": "2021-06-07T05:01:25.000Z" - }, - "end": { - "$date": "2021-06-07T05:11:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7261c715-8df6-409a-bcaa-09d54fb37f9d", - "start": { - "$date": "2021-06-07T05:11:25.000Z" - }, - "end": { - "$date": "2021-06-07T09:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "fa4a7651-1281-4148-adaf-d5672c985418", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T20:05:01.000Z" - }, - "end": { - "$date": "2021-06-06T20:36:19.000Z" - }, - "events": [ - { - "uuid": "dfff17e5-a3a3-4aeb-b9aa-e460e8a73e3c", - "start": { - "$date": "2021-06-06T20:05:01.000Z" - }, - "end": { - "$date": "2021-06-06T20:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "a7507d01-4f80-4cfb-b75a-d79bd30975b0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T20:36:32.000Z" - }, - "end": { - "$date": "2021-06-06T20:44:55.000Z" - }, - "events": [ - { - "uuid": "ab46a4b5-289d-4387-b7f1-b2c42d90e694", - "start": { - "$date": "2021-06-06T20:36:32.000Z" - }, - "end": { - "$date": "2021-06-06T20:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f377b4e4-eb55-4fe7-9267-be4b53d76db6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T20:45:08.000Z" - }, - "end": { - "$date": "2021-06-06T21:12:29.000Z" - }, - "events": [ - { - "uuid": "662074fa-8623-416e-a049-0687ddcd99fa", - "start": { - "$date": "2021-06-06T20:45:08.000Z" - }, - "end": { - "$date": "2021-06-06T21:12:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fa244b7e-4aa8-477a-a27c-2b1993dd5703", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-06T21:02:19.000Z" - }, - "end": { - "$date": "2021-06-07T00:01:14.000Z" - }, - "events": [ - { - "uuid": "2dfa1f0a-99ab-4897-9cac-3c9f69e170a4", - "start": { - "$date": "2021-06-06T21:02:19.000Z" - }, - "end": { - "$date": "2021-06-07T00:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ed3aaa15-f7da-4bd8-bb98-a32a8a507fb4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-06T21:02:24.000Z" - }, - "end": { - "$date": "2021-06-06T23:59:10.000Z" - }, - "events": [ - { - "uuid": "6a7f5b26-94fa-4bca-a8f2-1ae73d074671", - "start": { - "$date": "2021-06-06T21:02:24.000Z" - }, - "end": { - "$date": "2021-06-06T23:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6b85423c-508d-4955-bee0-7f86edefb138", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-06T21:05:26.000Z" - }, - "end": { - "$date": "2021-06-06T23:59:25.000Z" - }, - "events": [ - { - "uuid": "0e19363b-0910-4bef-ac84-41668fd08892", - "start": { - "$date": "2021-06-06T21:05:26.000Z" - }, - "end": { - "$date": "2021-06-06T23:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "42de15de-c62d-4a6d-8392-5678d7bbcbf4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-06T21:15:08.000Z" - }, - "end": { - "$date": "2021-06-07T02:38:15.000Z" - }, - "events": [ - { - "uuid": "ee0c2dad-c68c-4774-bd76-2e9a5fc2a0ba", - "start": { - "$date": "2021-06-06T21:15:08.000Z" - }, - "end": { - "$date": "2021-06-07T02:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "0ce5074c-e5d3-4ce6-86ef-c7f3620294aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-07T05:23:33.000Z" - }, - "end": { - "$date": "2021-06-07T13:49:17.000Z" - }, - "events": [ - { - "uuid": "81d7bfc9-143f-450f-a1fa-3177622eee53", - "start": { - "$date": "2021-06-07T05:23:33.000Z" - }, - "end": { - "$date": "2021-06-07T08:11:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d1828932-bd2e-40bf-a06b-01ea12bd1341", - "start": { - "$date": "2021-06-07T08:11:33.000Z" - }, - "end": { - "$date": "2021-06-07T08:29:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5678cf51-0142-4a23-a863-965b55dd89d0", - "start": { - "$date": "2021-06-07T08:29:33.000Z" - }, - "end": { - "$date": "2021-06-07T08:39:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77ea28e2-f6cc-4be1-892d-22de0aad9a98", - "start": { - "$date": "2021-06-07T08:39:33.000Z" - }, - "end": { - "$date": "2021-06-07T09:30:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3118c471-4f43-46a9-8aaa-78ef5e46d7d9", - "start": { - "$date": "2021-06-07T09:30:33.000Z" - }, - "end": { - "$date": "2021-06-07T09:40:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6627738f-67e8-4b3b-ae3c-bf6853be7385", - "start": { - "$date": "2021-06-07T09:40:33.000Z" - }, - "end": { - "$date": "2021-06-07T09:50:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5bb663d6-d8c9-43c3-b3fd-3fe4a62c226e", - "start": { - "$date": "2021-06-07T09:50:33.000Z" - }, - "end": { - "$date": "2021-06-07T11:11:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbb1e4ee-b4ec-43ba-9839-b99dc71e1bef", - "start": { - "$date": "2021-06-07T11:11:33.000Z" - }, - "end": { - "$date": "2021-06-07T11:16:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9441e243-e983-407e-aee1-5df41f15e434", - "start": { - "$date": "2021-06-07T11:16:33.000Z" - }, - "end": { - "$date": "2021-06-07T11:34:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04f2e27f-7b96-4ebd-be48-c53225ae9f36", - "start": { - "$date": "2021-06-07T11:34:33.000Z" - }, - "end": { - "$date": "2021-06-07T12:12:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3372fee1-eb36-4c22-ba1f-8a630efac211", - "start": { - "$date": "2021-06-07T12:12:33.000Z" - }, - "end": { - "$date": "2021-06-07T12:22:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "11cef502-7881-48ce-8730-63d093d035ef", - "start": { - "$date": "2021-06-07T12:22:33.000Z" - }, - "end": { - "$date": "2021-06-07T12:36:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "282eb306-e1a2-4c95-ac4d-c5992a4dbdc6", - "start": { - "$date": "2021-06-07T12:36:33.000Z" - }, - "end": { - "$date": "2021-06-07T12:46:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06153a53-0767-41a1-a2dd-8ca8f481b74a", - "start": { - "$date": "2021-06-07T12:46:33.000Z" - }, - "end": { - "$date": "2021-06-07T17:46:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea92c289-e161-4dff-a15b-6e408823f681", - "start": { - "$date": "2021-06-07T17:46:33.000Z" - }, - "end": { - "$date": "2021-06-07T17:56:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8ea096a0-78c0-435e-8db2-6ddf2d5e3ec1", - "start": { - "$date": "2021-06-07T17:56:33.000Z" - }, - "end": { - "$date": "2021-06-07T19:21:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2dfe9316-3906-4590-b925-c1ac84bd4970", - "start": { - "$date": "2021-06-07T19:21:33.000Z" - }, - "end": { - "$date": "2021-06-07T13:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9e3b01f7-4aae-4d8b-8680-9f7736e221da", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-07T00:13:32.000Z" - }, - "end": { - "$date": "2021-06-07T00:54:29.000Z" - }, - "events": [ - { - "uuid": "62637326-1511-4b77-ac94-ac0945918bec", - "start": { - "$date": "2021-06-07T00:13:32.000Z" - }, - "end": { - "$date": "2021-06-07T00:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "888cfae9-732f-4453-af5f-76cb5e3d74a2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T02:06:03.000Z" - }, - "end": { - "$date": "2021-06-07T04:28:00.000Z" - }, - "events": [ - { - "uuid": "575ff2f6-b64a-46a3-89e8-b4d272da15e2", - "start": { - "$date": "2021-06-07T02:06:03.000Z" - }, - "end": { - "$date": "2021-06-07T02:39:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ff86662-ea1f-46a7-88e5-febf8f16b871", - "start": { - "$date": "2021-06-07T02:39:03.000Z" - }, - "end": { - "$date": "2021-06-07T03:18:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4898f07b-2fc9-4e59-962a-ce5ee6a61919", - "start": { - "$date": "2021-06-07T03:18:03.000Z" - }, - "end": { - "$date": "2021-06-07T04:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0dc2c51d-4b9a-4660-807e-0c99490bf08b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-07T02:13:59.000Z" - }, - "end": { - "$date": "2021-06-07T03:02:06.000Z" - }, - "events": [ - { - "uuid": "719764c1-ac6b-4c3f-a333-a002e5326873", - "start": { - "$date": "2021-06-07T02:13:59.000Z" - }, - "end": { - "$date": "2021-06-07T03:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5a4bb50f-2f1d-4248-bfbb-def495f9876d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-07T02:36:57.000Z" - }, - "end": { - "$date": "2021-06-07T02:53:24.000Z" - }, - "events": [ - { - "uuid": "cd8c2e46-d78b-4828-9206-13a93996c653", - "start": { - "$date": "2021-06-07T02:36:57.000Z" - }, - "end": { - "$date": "2021-06-07T02:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bfa722d5-2db2-4816-a806-956bcc10f619", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-07T02:54:53.000Z" - }, - "end": { - "$date": "2021-06-07T06:20:53.000Z" - }, - "events": [ - { - "uuid": "1249c143-44de-46a7-ad63-47822e428340", - "start": { - "$date": "2021-06-07T02:54:53.000Z" - }, - "end": { - "$date": "2021-06-07T06:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d12aadd0-9b03-4b69-a175-93ccd98a1299", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-07T03:02:27.000Z" - }, - "end": { - "$date": "2021-06-07T06:56:15.000Z" - }, - "events": [ - { - "uuid": "77a4e128-fc8b-4d33-bc40-939f880b153b", - "start": { - "$date": "2021-06-07T03:02:27.000Z" - }, - "end": { - "$date": "2021-06-07T06:54:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a024f2bd-0968-4c3d-bed5-3516add7bc39", - "start": { - "$date": "2021-06-07T06:54:27.000Z" - }, - "end": { - "$date": "2021-06-07T06:56:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8b40a64-c25c-4600-9dce-4df1c09025a2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-07T03:50:42.000Z" - }, - "end": { - "$date": "2021-06-07T03:55:28.000Z" - }, - "events": [ - { - "uuid": "8210cb28-65bc-4f87-a10f-3a559c8386a2", - "start": { - "$date": "2021-06-07T03:50:42.000Z" - }, - "end": { - "$date": "2021-06-07T03:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da02a03e-a4c4-46af-a833-ea3c7eb605fe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-07T04:00:48.000Z" - }, - "end": { - "$date": "2021-06-07T04:22:19.000Z" - }, - "events": [ - { - "uuid": "1fd97d5b-3bc7-4e74-9032-d61244d20c85", - "start": { - "$date": "2021-06-07T04:00:48.000Z" - }, - "end": { - "$date": "2021-06-07T04:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "371517dd-1fb8-4a0f-9427-006a7fedc6f9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-07T04:27:29.000Z" - }, - "end": { - "$date": "2021-06-07T04:56:50.000Z" - }, - "events": [ - { - "uuid": "b30e28a1-ec59-4ca6-b499-32387f641706", - "start": { - "$date": "2021-06-07T04:27:29.000Z" - }, - "end": { - "$date": "2021-06-07T04:56:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "52ed08b4-f8b9-40cc-84f9-bf41636e64fe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T04:28:10.000Z" - }, - "end": { - "$date": "2021-06-07T05:38:52.000Z" - }, - "events": [ - { - "uuid": "7d8da86d-acec-4e16-a1bf-12dd239031f6", - "start": { - "$date": "2021-06-07T04:28:10.000Z" - }, - "end": { - "$date": "2021-06-07T05:38:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eea0a566-9b4f-45dd-b816-db8158884377", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-07T04:32:56.000Z" - }, - "end": { - "$date": "2021-06-07T05:36:49.000Z" - }, - "events": [ - { - "uuid": "1766fc9c-09bc-452a-b537-2e71a69dda54", - "start": { - "$date": "2021-06-07T04:32:56.000Z" - }, - "end": { - "$date": "2021-06-07T05:36:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fe784ab-2e5a-4b52-9fba-6eaf3d5a523a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-07T04:57:06.000Z" - }, - "end": { - "$date": "2021-06-07T05:02:43.000Z" - }, - "events": [ - { - "uuid": "f98fe5d3-ba74-45e9-a35b-6117351980b8", - "start": { - "$date": "2021-06-07T04:57:06.000Z" - }, - "end": { - "$date": "2021-06-07T05:02:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "74ba0876-7a3c-4ebb-bfd4-aada80db5d38", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-07T05:37:42.000Z" - }, - "end": { - "$date": "2021-06-07T05:55:11.000Z" - }, - "events": [ - { - "uuid": "024b176a-e8a5-42a0-bf99-ec2dbb74121a", - "start": { - "$date": "2021-06-07T05:37:42.000Z" - }, - "end": { - "$date": "2021-06-07T05:55:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "43891d25-82e8-44a2-acb1-c632938df091", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T17:12:26.000Z" - }, - "end": { - "$date": "2021-06-07T18:13:13.000Z" - }, - "events": [ - { - "uuid": "21426441-4404-48a6-a3f3-c89dbdfc9333", - "start": { - "$date": "2021-06-07T17:12:26.000Z" - }, - "end": { - "$date": "2021-06-07T17:25:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d33a9158-9ab3-476b-9d89-6e7422f61f90", - "start": { - "$date": "2021-06-07T17:25:26.000Z" - }, - "end": { - "$date": "2021-06-08T03:04:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "19f930c1-a218-4078-8273-0b8f34f593e5", - "start": { - "$date": "2021-06-08T03:04:26.000Z" - }, - "end": { - "$date": "2021-06-08T03:08:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63fe5a1b-29c4-40d6-a1e9-2e77b51cb663", - "start": { - "$date": "2021-06-08T03:08:26.000Z" - }, - "end": { - "$date": "2021-06-08T03:24:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c61b9a7e-f49c-468b-bd5c-2ff68ddd1242", - "start": { - "$date": "2021-06-08T03:24:26.000Z" - }, - "end": { - "$date": "2021-06-08T04:37:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46b2e266-1daa-44ca-afc0-42728074bb3c", - "start": { - "$date": "2021-06-08T04:37:26.000Z" - }, - "end": { - "$date": "2021-06-08T04:41:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2dcff3b1-07f3-42c1-a5a0-d67a4dca1c3c", - "start": { - "$date": "2021-06-08T04:41:26.000Z" - }, - "end": { - "$date": "2021-06-07T18:13:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba1c254e-9ea5-4666-b813-992f9e0ebce9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-07T13:05:15.000Z" - }, - "end": { - "$date": "2021-06-07T13:27:27.000Z" - }, - "events": [ - { - "uuid": "0bb444b6-cdc7-4f3c-8140-d72317a2d779", - "start": { - "$date": "2021-06-07T13:05:15.000Z" - }, - "end": { - "$date": "2021-06-07T13:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "3319244b-38dd-4ca1-bfcf-93ba7bc2710b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-07T13:37:13.000Z" - }, - "end": { - "$date": "2021-06-07T13:51:54.000Z" - }, - "events": [ - { - "uuid": "da7c4d82-d8a0-4d1f-898d-d634b068509c", - "start": { - "$date": "2021-06-07T13:37:13.000Z" - }, - "end": { - "$date": "2021-06-07T13:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "be9deca5-169b-4be1-9717-dab3a78de3d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T19:09:31.000Z" - }, - "end": { - "$date": "2021-06-07T19:40:12.000Z" - }, - "events": [ - { - "uuid": "9fe0fcbe-c359-42c8-a43e-b96a3e11b3a8", - "start": { - "$date": "2021-06-07T19:09:31.000Z" - }, - "end": { - "$date": "2021-06-07T19:21:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "28fbd69a-61e4-4a0a-ab01-8ff9477678a6", - "start": { - "$date": "2021-06-07T19:21:31.000Z" - }, - "end": { - "$date": "2021-06-07T19:40:12.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e51ef0f9-2292-4a16-9374-11446a786818", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-07T19:16:51.000Z" - }, - "end": { - "$date": "2021-06-07T19:46:33.000Z" - }, - "events": [ - { - "uuid": "e25f941a-2e4d-4c99-abdc-5b48eda2735b", - "start": { - "$date": "2021-06-07T19:16:51.000Z" - }, - "end": { - "$date": "2021-06-07T19:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7898977e-bf4a-408f-aa43-a4049b244229", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T19:43:22.000Z" - }, - "end": { - "$date": "2021-06-07T19:53:43.000Z" - }, - "events": [ - { - "uuid": "fa46351f-fe0e-4765-9877-222d489e1c99", - "start": { - "$date": "2021-06-07T19:43:22.000Z" - }, - "end": { - "$date": "2021-06-07T19:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abc7a10e-32b8-4c40-a408-782745c16096", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-07T19:46:37.000Z" - }, - "end": { - "$date": "2021-06-07T19:49:06.000Z" - }, - "events": [ - { - "uuid": "6dc8734a-7079-46d8-ac69-a8eb14f6b4f4", - "start": { - "$date": "2021-06-07T19:46:37.000Z" - }, - "end": { - "$date": "2021-06-07T19:49:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb055c7c-366f-4378-a0c6-5015c713ac72", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T20:33:37.000Z" - }, - "end": { - "$date": "2021-06-07T20:35:17.000Z" - }, - "events": [ - { - "uuid": "5d402239-22d9-4a5f-a775-af8dc900dd26", - "start": { - "$date": "2021-06-07T20:33:37.000Z" - }, - "end": { - "$date": "2021-06-07T20:35:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1065b003-0768-46b3-80b0-f2fb568c6fa8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-07T20:02:25.000Z" - }, - "end": { - "$date": "2021-06-07T20:39:38.000Z" - }, - "events": [ - { - "uuid": "0f7465a1-4c1e-4583-af35-921386b829ec", - "start": { - "$date": "2021-06-07T20:02:25.000Z" - }, - "end": { - "$date": "2021-06-07T20:39:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a2f96f0a-e1d6-4762-92ba-a91a2b874946", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T20:35:22.000Z" - }, - "end": { - "$date": "2021-06-07T21:09:01.000Z" - }, - "events": [ - { - "uuid": "ad407bd3-973d-439c-af9a-3751cd07d5a6", - "start": { - "$date": "2021-06-07T20:35:22.000Z" - }, - "end": { - "$date": "2021-06-07T21:09:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59c3a672-18b1-4bb4-8679-4db360ca6d9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T21:10:27.000Z" - }, - "end": { - "$date": "2021-06-07T21:42:20.000Z" - }, - "events": [ - { - "uuid": "f19ed0f6-4c06-4cee-8bc6-5cc00ff6176c", - "start": { - "$date": "2021-06-07T21:10:27.000Z" - }, - "end": { - "$date": "2021-06-07T21:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "04b8be20-8d2a-4fc9-872c-6261a6d1aadb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-07T21:19:42.000Z" - }, - "end": { - "$date": "2021-06-07T21:44:20.000Z" - }, - "events": [ - { - "uuid": "4c47132a-f984-4c7e-b982-6cfdd2ccfe3e", - "start": { - "$date": "2021-06-07T21:19:42.000Z" - }, - "end": { - "$date": "2021-06-07T21:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "380342c6-ccff-4e06-a041-53c1a825e719", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-07T21:40:59.000Z" - }, - "end": { - "$date": "2021-06-07T21:55:19.000Z" - }, - "events": [ - { - "uuid": "facd3e0f-27e5-4c19-9574-3f8b3f18597e", - "start": { - "$date": "2021-06-07T21:40:59.000Z" - }, - "end": { - "$date": "2021-06-07T21:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "25dc9d93-5ba2-478b-a8b9-e09eed0638f2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-07T21:53:05.000Z" - }, - "end": { - "$date": "2021-06-07T22:53:57.000Z" - }, - "events": [ - { - "uuid": "22f8057b-1f4f-4227-852c-3073f17cbd09", - "start": { - "$date": "2021-06-07T21:53:05.000Z" - }, - "end": { - "$date": "2021-06-07T22:53:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3f250fde-6f91-4398-8060-7ca9edb65a8d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-07T21:57:50.000Z" - }, - "end": { - "$date": "2021-06-07T22:15:40.000Z" - }, - "events": [ - { - "uuid": "7ea54c0f-23df-4353-9189-bacf465f05ce", - "start": { - "$date": "2021-06-07T21:57:50.000Z" - }, - "end": { - "$date": "2021-06-07T22:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "332d8692-9c0e-4e87-abc7-8b1223e2d721", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T22:05:55.000Z" - }, - "end": { - "$date": "2021-06-07T22:34:43.000Z" - }, - "events": [ - { - "uuid": "46716b5b-c6c8-427c-ae6d-bc88fc433111", - "start": { - "$date": "2021-06-07T22:05:55.000Z" - }, - "end": { - "$date": "2021-06-07T22:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "a55561e1-3ba1-4f47-8248-05fddd74a51a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-07T22:16:06.000Z" - }, - "end": { - "$date": "2021-06-08T02:00:42.000Z" - }, - "events": [ - { - "uuid": "9c4a2241-1634-4f4e-8aa9-9df98debad37", - "start": { - "$date": "2021-06-07T22:16:06.000Z" - }, - "end": { - "$date": "2021-06-07T22:55:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0efd9bf-c58f-4861-acc9-ffdfd2858ba0", - "start": { - "$date": "2021-06-07T22:55:06.000Z" - }, - "end": { - "$date": "2021-06-07T23:42:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6879cf3-37a2-48e6-9060-f21e72189f84", - "start": { - "$date": "2021-06-07T23:42:06.000Z" - }, - "end": { - "$date": "2021-06-07T23:52:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd295708-bffa-45fe-be50-79b571b95021", - "start": { - "$date": "2021-06-07T23:52:06.000Z" - }, - "end": { - "$date": "2021-06-08T01:42:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0064a11a-b478-424c-951d-8bf1e8c3ca33", - "start": { - "$date": "2021-06-08T01:42:06.000Z" - }, - "end": { - "$date": "2021-06-08T02:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fcded7e-b68a-4042-8e8f-795b2a52d804", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-07T22:36:28.000Z" - }, - "end": { - "$date": "2021-06-07T23:12:11.000Z" - }, - "events": [ - { - "uuid": "b636d805-445d-4728-b24b-50cc7f07b2d5", - "start": { - "$date": "2021-06-07T22:36:28.000Z" - }, - "end": { - "$date": "2021-06-07T23:12:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "11acde94-0128-4b94-8b0f-e46c2e537fed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-07T23:04:17.000Z" - }, - "end": { - "$date": "2021-06-08T01:18:44.000Z" - }, - "events": [ - { - "uuid": "28524e53-3f2a-4ec7-8289-e3b0b4e6d894", - "start": { - "$date": "2021-06-07T23:04:17.000Z" - }, - "end": { - "$date": "2021-06-08T00:36:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c7e36d0-1883-4485-8997-910de3cd1dee", - "start": { - "$date": "2021-06-08T00:36:17.000Z" - }, - "end": { - "$date": "2021-06-08T00:56:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43866a86-0e7a-4f26-9265-1a9bf148f93e", - "start": { - "$date": "2021-06-08T00:56:17.000Z" - }, - "end": { - "$date": "2021-06-08T01:18:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "983367b1-74d2-4af4-be61-5a5642aaaee0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-07T23:22:00.000Z" - }, - "end": { - "$date": "2021-06-08T00:31:04.000Z" - }, - "events": [ - { - "uuid": "fab02994-6c51-425f-b52d-15e0f828855d", - "start": { - "$date": "2021-06-07T23:22:00.000Z" - }, - "end": { - "$date": "2021-06-08T00:31:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c277b363-56aa-413b-a8c9-c051a4aa6d8a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T00:42:28.000Z" - }, - "end": { - "$date": "2021-06-08T01:16:31.000Z" - }, - "events": [ - { - "uuid": "1f41ce9f-6303-457f-b74e-9d09b0d3bafb", - "start": { - "$date": "2021-06-08T00:42:28.000Z" - }, - "end": { - "$date": "2021-06-08T01:16:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b6db366-4265-4859-91e4-23755fbcf245", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T00:56:24.000Z" - }, - "end": { - "$date": "2021-06-08T01:20:49.000Z" - }, - "events": [ - { - "uuid": "93164b9d-29e5-4938-8e6e-98f5c5efc6da", - "start": { - "$date": "2021-06-08T00:56:24.000Z" - }, - "end": { - "$date": "2021-06-08T01:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6986c43c-96d7-4113-8d9b-97de9152b155", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-08T00:57:32.000Z" - }, - "end": { - "$date": "2021-06-08T00:58:37.000Z" - }, - "events": [ - { - "uuid": "ad5e98ed-a89a-4653-a84b-0077dff7321c", - "start": { - "$date": "2021-06-08T00:57:32.000Z" - }, - "end": { - "$date": "2021-06-08T00:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab033b02-4784-43b1-9b84-21c6e837a4ae", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-08T01:17:29.000Z" - }, - "end": { - "$date": "2021-06-08T05:58:28.000Z" - }, - "events": [ - { - "uuid": "956fd3c8-3d5f-4eeb-93f4-9581511fb956", - "start": { - "$date": "2021-06-08T01:17:29.000Z" - }, - "end": { - "$date": "2021-06-08T05:58:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5b197ee8-89ec-4e17-8fc8-6438a30c07e5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T01:18:55.000Z" - }, - "end": { - "$date": "2021-06-08T01:28:46.000Z" - }, - "events": [ - { - "uuid": "34e01a59-d718-41d2-afd9-3bd8e1f448ad", - "start": { - "$date": "2021-06-08T01:18:55.000Z" - }, - "end": { - "$date": "2021-06-08T01:28:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8907423f-ac16-4183-bdac-607f6557468f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T01:21:45.000Z" - }, - "end": { - "$date": "2021-06-08T02:02:25.000Z" - }, - "events": [ - { - "uuid": "40e52802-543f-4ce6-851e-4596d5888d97", - "start": { - "$date": "2021-06-08T01:21:45.000Z" - }, - "end": { - "$date": "2021-06-08T02:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "389c565f-02b7-49bd-9090-e47ea5f80c4c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T01:32:00.000Z" - }, - "end": { - "$date": "2021-06-08T01:50:06.000Z" - }, - "events": [ - { - "uuid": "4ccb36db-9fe0-43c7-81b0-cecb904f889c", - "start": { - "$date": "2021-06-08T01:32:00.000Z" - }, - "end": { - "$date": "2021-06-08T01:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "88de8d81-29cd-4a5e-8280-97d902d83e4c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-07T03:02:27.000Z" - }, - "end": { - "$date": "2021-06-08T01:37:09.000Z" - }, - "events": [ - { - "uuid": "51059eb9-7170-4f07-a486-8d376bb826c8", - "start": { - "$date": "2021-06-07T03:02:27.000Z" - }, - "end": { - "$date": "2021-06-08T01:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62d01766-e353-4903-9491-17d59269f754", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-08T01:35:02.000Z" - }, - "end": { - "$date": "2021-06-08T03:26:51.000Z" - }, - "events": [ - { - "uuid": "b6c7e76e-48d0-4f56-b845-0eb1063854ba", - "start": { - "$date": "2021-06-08T01:35:02.000Z" - }, - "end": { - "$date": "2021-06-08T03:26:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "10a7857a-97fe-4716-bfc8-bfcb9b9cd4e5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-08T01:38:01.000Z" - }, - "end": { - "$date": "2021-06-08T02:25:18.000Z" - }, - "events": [ - { - "uuid": "893b8ab3-4230-4049-aa6a-8162ef11ad73", - "start": { - "$date": "2021-06-08T01:38:01.000Z" - }, - "end": { - "$date": "2021-06-08T02:25:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ee4ad82a-1352-46eb-917b-8546dd2f5e15", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T01:52:51.000Z" - }, - "end": { - "$date": "2021-06-08T02:48:12.000Z" - }, - "events": [ - { - "uuid": "346fed15-def7-48c0-9792-eff1e060b8e3", - "start": { - "$date": "2021-06-08T01:52:51.000Z" - }, - "end": { - "$date": "2021-06-08T02:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0f0b46ba-8d0d-4910-94b3-a4f78956b69f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-08T02:00:53.000Z" - }, - "end": { - "$date": "2021-06-08T03:26:35.000Z" - }, - "events": [ - { - "uuid": "f836f220-fffe-4a2f-aad9-59d1cfd24674", - "start": { - "$date": "2021-06-08T02:00:53.000Z" - }, - "end": { - "$date": "2021-06-08T03:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9baa50d4-ba81-4547-8c08-2c8fdcee7de0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T02:02:27.000Z" - }, - "end": { - "$date": "2021-06-08T02:03:36.000Z" - }, - "events": [ - { - "uuid": "0415a260-b0a1-412c-83d4-20346d1aea13", - "start": { - "$date": "2021-06-08T02:02:27.000Z" - }, - "end": { - "$date": "2021-06-08T02:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b24a70dc-ea9a-40df-b8fc-0c4c0c73ba0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T02:43:29.000Z" - }, - "end": { - "$date": "2021-06-08T02:48:50.000Z" - }, - "events": [ - { - "uuid": "aad38dda-f167-4dda-9c10-106ea7d2297a", - "start": { - "$date": "2021-06-08T02:43:29.000Z" - }, - "end": { - "$date": "2021-06-08T02:48:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "20e37526-115b-42ce-aa07-f684098bc46e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-08T02:26:10.000Z" - }, - "end": { - "$date": "2021-06-08T02:37:15.000Z" - }, - "events": [ - { - "uuid": "b4ff398d-ddfe-47fd-a936-bbf2935154ee", - "start": { - "$date": "2021-06-08T02:26:10.000Z" - }, - "end": { - "$date": "2021-06-08T02:37:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4078075a-017d-4857-a7bf-9c51d817a173", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-08T02:38:01.000Z" - }, - "end": { - "$date": "2021-06-08T02:51:28.000Z" - }, - "events": [ - { - "uuid": "f7113271-7a56-4939-aca4-7c8d6d222f48", - "start": { - "$date": "2021-06-08T02:38:01.000Z" - }, - "end": { - "$date": "2021-06-08T02:51:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7e8fa028-e808-4385-bd23-b534a220ef6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T02:48:39.000Z" - }, - "end": { - "$date": "2021-06-08T03:04:33.000Z" - }, - "events": [ - { - "uuid": "d4952cc1-70e7-4972-b64f-a10fa9d33cef", - "start": { - "$date": "2021-06-08T02:48:39.000Z" - }, - "end": { - "$date": "2021-06-08T03:04:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f3d850a0-8004-465f-a666-e582f8912e36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T02:51:45.000Z" - }, - "end": { - "$date": "2021-06-08T05:57:25.000Z" - }, - "events": [ - { - "uuid": "e3337950-f99b-426e-9afe-82679609940b", - "start": { - "$date": "2021-06-08T02:51:45.000Z" - }, - "end": { - "$date": "2021-06-08T05:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "041c18bf-5be9-4716-93f6-2d0794e84749", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-08T02:52:39.000Z" - }, - "end": { - "$date": "2021-06-08T05:58:24.000Z" - }, - "events": [ - { - "uuid": "a745736e-4abd-4b24-a632-b55211b35dcc", - "start": { - "$date": "2021-06-08T02:52:39.000Z" - }, - "end": { - "$date": "2021-06-08T05:58:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cfef4b17-e172-40cd-8050-ac234713bca5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T03:04:36.000Z" - }, - "end": { - "$date": "2021-06-08T09:44:44.000Z" - }, - "events": [ - { - "uuid": "2ff7831d-b8ca-49b2-b0ba-7a0b892474eb", - "start": { - "$date": "2021-06-08T03:04:36.000Z" - }, - "end": { - "$date": "2021-06-08T09:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dec5016d-8209-4117-8952-d05d8cbd3679", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T03:14:41.000Z" - }, - "end": { - "$date": "2021-06-08T03:39:48.000Z" - }, - "events": [ - { - "uuid": "5bfa6887-4ced-4766-b3c0-b1c8fff28fa8", - "start": { - "$date": "2021-06-08T03:14:41.000Z" - }, - "end": { - "$date": "2021-06-08T03:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "360d471a-8c5d-4add-90b5-3fcd8f17fe7e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-08T03:28:35.000Z" - }, - "end": { - "$date": "2021-06-08T04:09:38.000Z" - }, - "events": [ - { - "uuid": "39c24741-676e-4cac-bcf1-364c191f98c2", - "start": { - "$date": "2021-06-08T03:28:35.000Z" - }, - "end": { - "$date": "2021-06-08T04:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "6540b627-a099-4259-b341-7ea13ac0f365", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-08T04:09:53.000Z" - }, - "end": { - "$date": "2021-06-08T04:56:12.000Z" - }, - "events": [ - { - "uuid": "ce4c15e5-400f-432d-9622-7d0b2ecae321", - "start": { - "$date": "2021-06-08T04:09:53.000Z" - }, - "end": { - "$date": "2021-06-08T04:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1db13a4c-0dee-4eef-8772-d86f302cd3f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T04:14:48.000Z" - }, - "end": { - "$date": "2021-06-08T05:57:44.000Z" - }, - "events": [ - { - "uuid": "1840ab89-cf10-427b-9165-aea03be5f2c8", - "start": { - "$date": "2021-06-08T04:14:48.000Z" - }, - "end": { - "$date": "2021-06-08T05:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3dc68fb0-5463-43e0-a646-2e3d0d904c6d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-08T04:59:16.000Z" - }, - "end": { - "$date": "2021-06-08T05:08:01.000Z" - }, - "events": [ - { - "uuid": "41d50eb2-2e7f-4109-907d-c408385afdb5", - "start": { - "$date": "2021-06-08T04:59:16.000Z" - }, - "end": { - "$date": "2021-06-08T05:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "47317f5d-0c21-4161-bfff-7ec7b0fe0635", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-08T05:30:31.000Z" - }, - "end": { - "$date": "2021-06-08T05:53:07.000Z" - }, - "events": [ - { - "uuid": "06056de6-1c25-4280-aa4c-d38b3c9790e2", - "start": { - "$date": "2021-06-08T05:30:31.000Z" - }, - "end": { - "$date": "2021-06-08T05:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "4d25b89f-1347-4b2f-9e4c-64b213c82018", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T06:15:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:33:22.000Z" - }, - "events": [ - { - "uuid": "0d2f9e30-2ab4-42fc-9d1f-653416b5651c", - "start": { - "$date": "2021-06-08T06:15:28.000Z" - }, - "end": { - "$date": "2021-06-08T06:27:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5cfe6a3f-98fb-4764-8156-5235de5c6986", - "start": { - "$date": "2021-06-08T06:27:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:04:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f259aa18-00bd-49a1-a7d8-d305696d2ab8", - "start": { - "$date": "2021-06-08T15:04:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:08:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41a5d76e-fbfb-4219-916f-84ea31e37936", - "start": { - "$date": "2021-06-08T15:08:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:16:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90aa78ef-5243-46e4-bd72-add34a1415d8", - "start": { - "$date": "2021-06-08T15:16:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:26:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26370008-f264-4256-8df2-8ea272121ec8", - "start": { - "$date": "2021-06-08T15:26:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:31:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e26a9d8-da12-475a-b8a6-e0d7ad71c9e8", - "start": { - "$date": "2021-06-08T15:31:28.000Z" - }, - "end": { - "$date": "2021-06-08T15:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0bc3aaf1-2d53-4baa-9232-eed6f8321f67", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-08T13:48:37.000Z" - }, - "end": { - "$date": "2021-06-08T15:05:02.000Z" - }, - "events": [ - { - "uuid": "1a4781e4-33e6-4a95-81e7-7a78c1d032d4", - "start": { - "$date": "2021-06-08T13:48:37.000Z" - }, - "end": { - "$date": "2021-06-08T15:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "68588845-9283-4fb2-9db2-2de81414012e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-08T15:05:42.000Z" - }, - "end": { - "$date": "2021-06-08T15:53:48.000Z" - }, - "events": [ - { - "uuid": "48fbc3fd-bec0-4e47-9a0e-f02589ba0f9e", - "start": { - "$date": "2021-06-08T15:05:42.000Z" - }, - "end": { - "$date": "2021-06-08T15:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61760994-6152-4040-b2ec-cfabfd5a8cc8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T15:35:27.000Z" - }, - "end": { - "$date": "2021-06-08T16:18:35.000Z" - }, - "events": [ - { - "uuid": "8da03cbe-539f-4479-a2f6-af3a4f389588", - "start": { - "$date": "2021-06-08T15:35:27.000Z" - }, - "end": { - "$date": "2021-06-08T16:18:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "baa01249-d642-44d2-802f-3bef53e7ad93", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T16:19:15.000Z" - }, - "end": { - "$date": "2021-06-08T16:49:42.000Z" - }, - "events": [ - { - "uuid": "4cf1a76d-cf2d-4dd4-be6a-d9a9cb478eb2", - "start": { - "$date": "2021-06-08T16:19:15.000Z" - }, - "end": { - "$date": "2021-06-08T16:49:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60f4c316-7260-4d1f-9507-dd0058e48fd2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T16:31:58.000Z" - }, - "end": { - "$date": "2021-06-08T17:03:14.000Z" - }, - "events": [ - { - "uuid": "f4a213bf-06a1-42f3-9b4f-b978d7e1218a", - "start": { - "$date": "2021-06-08T16:31:58.000Z" - }, - "end": { - "$date": "2021-06-08T17:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c65c8cb2-f1e2-4ed7-ab14-65dc098839c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T17:05:20.000Z" - }, - "end": { - "$date": "2021-06-08T17:45:10.000Z" - }, - "events": [ - { - "uuid": "81ce566b-6564-4c7c-851d-0cf23e66fb0d", - "start": { - "$date": "2021-06-08T17:05:20.000Z" - }, - "end": { - "$date": "2021-06-08T17:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05e58487-2f44-4e21-bfc4-1de3412a8a35", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T18:01:15.000Z" - }, - "end": { - "$date": "2021-06-08T18:40:19.000Z" - }, - "events": [ - { - "uuid": "7f346d80-c558-4a5a-99f0-3efe5e1b06fe", - "start": { - "$date": "2021-06-08T18:01:15.000Z" - }, - "end": { - "$date": "2021-06-08T18:40:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ce86af7d-cad8-4cc2-9cf1-111904192224", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T18:42:19.000Z" - }, - "end": { - "$date": "2021-06-08T18:57:27.000Z" - }, - "events": [ - { - "uuid": "2b5710ad-197b-4d44-8c45-510dc11db1bf", - "start": { - "$date": "2021-06-08T18:42:19.000Z" - }, - "end": { - "$date": "2021-06-08T18:57:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "433b8c70-3c5c-41ca-a28c-34c936f4f814", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T19:00:17.000Z" - }, - "end": { - "$date": "2021-06-08T19:38:55.000Z" - }, - "events": [ - { - "uuid": "34d1b2f7-20c4-4e00-84b3-b9cc09f9770a", - "start": { - "$date": "2021-06-08T19:00:17.000Z" - }, - "end": { - "$date": "2021-06-08T19:38:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00d32289-6882-4dd6-a045-021f6b4cbea7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T19:00:26.000Z" - }, - "end": { - "$date": "2021-06-08T19:32:19.000Z" - }, - "events": [ - { - "uuid": "1e143967-7c7d-40f1-b164-705fd2eb8f87", - "start": { - "$date": "2021-06-08T19:00:26.000Z" - }, - "end": { - "$date": "2021-06-08T19:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c1656112-a159-43e6-90ae-eb348721c8b7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-08T19:27:26.000Z" - }, - "end": { - "$date": "2021-06-08T20:33:53.000Z" - }, - "events": [ - { - "uuid": "eb8aad1a-dfe9-4b1d-a38b-708dc7862466", - "start": { - "$date": "2021-06-08T19:27:26.000Z" - }, - "end": { - "$date": "2021-06-08T20:03:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "52ba5016-d3b1-47cf-89be-6a8b61f950fd", - "start": { - "$date": "2021-06-08T20:03:26.000Z" - }, - "end": { - "$date": "2021-06-08T20:10:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d2aef43-d4eb-424a-b59b-983f671c74b5", - "start": { - "$date": "2021-06-08T20:10:26.000Z" - }, - "end": { - "$date": "2021-06-08T20:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0360e4ef-21fe-4930-aeca-90f41a642f8f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T19:41:16.000Z" - }, - "end": { - "$date": "2021-06-08T19:55:31.000Z" - }, - "events": [ - { - "uuid": "29dfe7ec-9759-4a88-8afd-c2394a5e491d", - "start": { - "$date": "2021-06-08T19:41:16.000Z" - }, - "end": { - "$date": "2021-06-08T19:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4177d950-8ac2-44de-867b-31c9ba9d365e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-08T20:01:35.000Z" - }, - "end": { - "$date": "2021-06-08T20:34:33.000Z" - }, - "events": [ - { - "uuid": "421523c9-229a-46de-ad8b-905515a24dbe", - "start": { - "$date": "2021-06-08T20:01:35.000Z" - }, - "end": { - "$date": "2021-06-08T20:34:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9fe314ae-3b7c-4f90-8361-741b72cf4c77", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-08T20:31:37.000Z" - }, - "end": { - "$date": "2021-06-08T21:17:14.000Z" - }, - "events": [ - { - "uuid": "bf9d3b1d-7d5c-4556-954e-3d5d3fa6a8ab", - "start": { - "$date": "2021-06-08T20:31:37.000Z" - }, - "end": { - "$date": "2021-06-08T21:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1ba93105-5e2a-47b4-ae00-00eb91783935", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-08T20:35:53.000Z" - }, - "end": { - "$date": "2021-06-08T20:55:57.000Z" - }, - "events": [ - { - "uuid": "e7923ec9-9b2f-433d-904a-24e05e1b8135", - "start": { - "$date": "2021-06-08T20:35:53.000Z" - }, - "end": { - "$date": "2021-06-08T20:55:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ff8fbbb2-4f4a-4624-a01e-e35b984cb499", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-08T21:03:04.000Z" - }, - "end": { - "$date": "2021-06-08T21:06:49.000Z" - }, - "events": [ - { - "uuid": "573b00f4-1121-42c5-9030-04c8cd9d14e5", - "start": { - "$date": "2021-06-08T21:03:04.000Z" - }, - "end": { - "$date": "2021-06-08T21:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "13b2888d-fdab-4efd-ba1c-44d52f3f2698", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-08T21:08:00.000Z" - }, - "end": { - "$date": "2021-06-08T22:27:03.000Z" - }, - "events": [ - { - "uuid": "95bf3c87-e7cd-4fea-9345-187fc335402d", - "start": { - "$date": "2021-06-08T21:08:00.000Z" - }, - "end": { - "$date": "2021-06-08T22:27:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a9227efb-71e1-49b7-b2b6-73748d43ba79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T21:36:22.000Z" - }, - "end": { - "$date": "2021-06-08T23:03:28.000Z" - }, - "events": [ - { - "uuid": "98cc84d2-4ce5-4422-9f94-69565a0cf2b5", - "start": { - "$date": "2021-06-08T21:36:22.000Z" - }, - "end": { - "$date": "2021-06-08T23:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "6b1aa4df-ef7b-479a-b387-22aacfce2527", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-08T22:57:23.000Z" - }, - "end": { - "$date": "2021-06-09T00:46:23.000Z" - }, - "events": [ - { - "uuid": "40b0d6ca-ef08-49d4-bfa4-86b4de62b45d", - "start": { - "$date": "2021-06-08T22:57:23.000Z" - }, - "end": { - "$date": "2021-06-09T00:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3692a125-bcb9-467e-abdc-da6c3f308fd3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-08T23:02:46.000Z" - }, - "end": { - "$date": "2021-06-08T23:04:18.000Z" - }, - "events": [ - { - "uuid": "81efaaf1-3f34-4efa-bca6-144fa398bfa8", - "start": { - "$date": "2021-06-08T23:02:46.000Z" - }, - "end": { - "$date": "2021-06-08T23:04:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4ac76319-f396-4a0f-89c9-1d2ba349dd7e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T23:03:42.000Z" - }, - "end": { - "$date": "2021-06-08T23:43:58.000Z" - }, - "events": [ - { - "uuid": "443b99e0-83db-4129-bb5c-599adc65e3bc", - "start": { - "$date": "2021-06-08T23:03:42.000Z" - }, - "end": { - "$date": "2021-06-08T23:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "487e0d72-bfd4-426f-ac8c-c7a2e07e549e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-08T23:36:47.000Z" - }, - "end": { - "$date": "2021-06-08T23:45:44.000Z" - }, - "events": [ - { - "uuid": "0d3303f7-4289-4215-a4b4-2879dd3bd49d", - "start": { - "$date": "2021-06-08T23:36:47.000Z" - }, - "end": { - "$date": "2021-06-08T23:45:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f5f9914a-004b-4f72-8501-ebbc33f3d3ea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-08T23:45:03.000Z" - }, - "end": { - "$date": "2021-06-08T23:47:17.000Z" - }, - "events": [ - { - "uuid": "d6fc8820-68fc-499b-8ddb-c16182720226", - "start": { - "$date": "2021-06-08T23:45:03.000Z" - }, - "end": { - "$date": "2021-06-08T23:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c412d09-02ee-4216-b49d-46a2e99c3a1c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-08T23:50:54.000Z" - }, - "end": { - "$date": "2021-06-09T00:10:40.000Z" - }, - "events": [ - { - "uuid": "5dc5d0d3-0f6a-47d6-adca-209e1501c1f7", - "start": { - "$date": "2021-06-08T23:50:54.000Z" - }, - "end": { - "$date": "2021-06-09T00:10:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "b1849baa-3593-4d36-b082-212c4957cbe6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T00:16:47.000Z" - }, - "end": { - "$date": "2021-06-09T00:17:03.000Z" - }, - "events": [ - { - "uuid": "eb80da6b-bd8c-4c13-9e69-2dad10827e77", - "start": { - "$date": "2021-06-09T00:16:47.000Z" - }, - "end": { - "$date": "2021-06-09T00:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a941fe75-897e-4c92-a455-099d2123c3ff", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T00:28:17.000Z" - }, - "end": { - "$date": "2021-06-09T00:55:02.000Z" - }, - "events": [ - { - "uuid": "7deb8e16-476b-4c10-8076-e50105cb5f8b", - "start": { - "$date": "2021-06-09T00:28:17.000Z" - }, - "end": { - "$date": "2021-06-09T00:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "2d95887e-7a86-4105-a481-c26520e48fac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T00:46:44.000Z" - }, - "end": { - "$date": "2021-06-09T02:33:01.000Z" - }, - "events": [ - { - "uuid": "2d62ff0c-c662-438e-a516-788f5ad8f326", - "start": { - "$date": "2021-06-09T00:46:44.000Z" - }, - "end": { - "$date": "2021-06-09T02:33:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5342f541-d505-4d1e-a990-e76d6f42d65c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T00:49:08.000Z" - }, - "end": { - "$date": "2021-06-09T01:24:15.000Z" - }, - "events": [ - { - "uuid": "3cc5309c-5f61-4991-b5e2-2f97c879a7e9", - "start": { - "$date": "2021-06-09T00:49:08.000Z" - }, - "end": { - "$date": "2021-06-09T01:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0c200028-6813-4487-95c9-7683cebb0343", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-09T00:48:52.000Z" - }, - "end": { - "$date": "2021-06-09T07:13:39.000Z" - }, - "events": [ - { - "uuid": "18cfa6a7-2937-4186-aff3-fdbfdcbfbe9b", - "start": { - "$date": "2021-06-09T00:48:52.000Z" - }, - "end": { - "$date": "2021-06-09T07:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "40fdce10-4f61-41f1-8409-c17016a039bc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-09T00:51:56.000Z" - }, - "end": { - "$date": "2021-06-09T01:33:14.000Z" - }, - "events": [ - { - "uuid": "ac8c3a4a-c647-4ff5-a15c-9406adefd101", - "start": { - "$date": "2021-06-09T00:51:56.000Z" - }, - "end": { - "$date": "2021-06-09T01:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1fc28675-9cd5-4a61-8ee0-7771e7bd363a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T01:03:52.000Z" - }, - "end": { - "$date": "2021-06-09T01:12:23.000Z" - }, - "events": [ - { - "uuid": "deb69c81-da59-4dd6-a8dc-80abdb47923b", - "start": { - "$date": "2021-06-09T01:03:52.000Z" - }, - "end": { - "$date": "2021-06-09T01:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "81bb8c2e-46b3-4bb8-b985-1b25ac096ac4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T01:08:17.000Z" - }, - "end": { - "$date": "2021-06-09T01:30:06.000Z" - }, - "events": [ - { - "uuid": "db7714b0-c929-47a1-89ce-a8d871b894be", - "start": { - "$date": "2021-06-09T01:08:17.000Z" - }, - "end": { - "$date": "2021-06-09T01:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7f8f6f54-71d5-4053-8dd5-602b059d44c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-09T01:18:09.000Z" - }, - "end": { - "$date": "2021-06-09T01:23:40.000Z" - }, - "events": [ - { - "uuid": "335fbc7c-2a3a-45ab-b9de-4bc20e89fcd8", - "start": { - "$date": "2021-06-09T01:18:09.000Z" - }, - "end": { - "$date": "2021-06-09T01:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "03841995-6a4b-4288-95a9-94e478906925", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T01:32:15.000Z" - }, - "end": { - "$date": "2021-06-09T01:46:25.000Z" - }, - "events": [ - { - "uuid": "2deb8c3d-9d75-43d0-8435-7179b330dc81", - "start": { - "$date": "2021-06-09T01:32:15.000Z" - }, - "end": { - "$date": "2021-06-09T01:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef667598-bfb0-4d54-b094-56469aa88f26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T01:36:42.000Z" - }, - "end": { - "$date": "2021-06-09T02:03:47.000Z" - }, - "events": [ - { - "uuid": "6240ca39-87fa-440b-905c-ba06103dc720", - "start": { - "$date": "2021-06-09T01:36:42.000Z" - }, - "end": { - "$date": "2021-06-09T02:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c973d1e8-afdf-462a-8e4d-cfc57202cfb2", - "uuid": "7dd406b4-3d86-4d77-bfd6-2ce3fb0a3244", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T01:49:45.000Z" - }, - "end": { - "$date": "2021-06-09T01:51:56.000Z" - }, - "events": [ - { - "uuid": "40695d57-8a65-44f9-bf2b-9f3265f99b17", - "start": { - "$date": "2021-06-09T01:49:45.000Z" - }, - "end": { - "$date": "2021-06-09T01:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "50ec84f1-b026-408d-93dd-ac5f18213fc7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T01:52:41.000Z" - }, - "end": { - "$date": "2021-06-09T03:42:12.000Z" - }, - "events": [ - { - "uuid": "4f428483-d5a9-4d67-9395-b127d98d4265", - "start": { - "$date": "2021-06-09T01:52:41.000Z" - }, - "end": { - "$date": "2021-06-09T03:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "35606d36-5543-4d55-bcdb-bb14a8a0bfc9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T01:53:49.000Z" - }, - "end": { - "$date": "2021-06-09T01:54:59.000Z" - }, - "events": [ - { - "uuid": "383af7e3-ddbd-4d20-956d-e1ba4d3286d0", - "start": { - "$date": "2021-06-09T01:53:49.000Z" - }, - "end": { - "$date": "2021-06-09T01:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5286fd64-599b-46b4-b3aa-b4aa0ed949a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T01:55:09.000Z" - }, - "end": { - "$date": "2021-06-09T01:56:09.000Z" - }, - "events": [ - { - "uuid": "06c0088f-b6df-4ce9-88dd-ebd63f8b4d79", - "start": { - "$date": "2021-06-09T01:55:09.000Z" - }, - "end": { - "$date": "2021-06-09T01:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "53985836-a3bc-4227-bd0f-56b9de20702a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-09T01:56:22.000Z" - }, - "end": { - "$date": "2021-06-09T07:20:04.000Z" - }, - "events": [ - { - "uuid": "d1cd5f58-b0c9-4b79-a210-f1391c365310", - "start": { - "$date": "2021-06-09T01:56:22.000Z" - }, - "end": { - "$date": "2021-06-09T07:20:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1301f530-a5aa-436f-b006-7936471c556a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T01:57:20.000Z" - }, - "end": { - "$date": "2021-06-09T02:00:16.000Z" - }, - "events": [ - { - "uuid": "05149a1a-d65c-43c8-bc9e-0f01444e3538", - "start": { - "$date": "2021-06-09T01:57:20.000Z" - }, - "end": { - "$date": "2021-06-09T02:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dc0947f3-bb56-4c0b-9515-694ab1762440", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T02:00:31.000Z" - }, - "end": { - "$date": "2021-06-09T03:41:13.000Z" - }, - "events": [ - { - "uuid": "1de4fd7a-0a72-4bd6-9f47-faf787716b78", - "start": { - "$date": "2021-06-09T02:00:31.000Z" - }, - "end": { - "$date": "2021-06-09T03:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e440007-9c5c-4be8-96cf-6e3f28d412a0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T02:04:40.000Z" - }, - "end": { - "$date": "2021-06-09T02:38:37.000Z" - }, - "events": [ - { - "uuid": "1672e963-6476-4ef9-8dd7-3e8a1397e1ac", - "start": { - "$date": "2021-06-09T02:04:40.000Z" - }, - "end": { - "$date": "2021-06-09T02:38:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9eface14-574b-4740-b6c2-9712ba24eee9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-09T02:19:47.000Z" - }, - "end": { - "$date": "2021-06-09T03:18:14.000Z" - }, - "events": [ - { - "uuid": "bc817165-5148-4aa6-bdae-bb28f0099e14", - "start": { - "$date": "2021-06-09T02:19:47.000Z" - }, - "end": { - "$date": "2021-06-09T03:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "25b67717-656a-4415-81ea-c0543eb80946", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-09T02:22:09.000Z" - }, - "end": { - "$date": "2021-06-09T04:01:02.000Z" - }, - "events": [ - { - "uuid": "855f73ce-8ac7-4227-84c6-7409a1cbb421", - "start": { - "$date": "2021-06-09T02:22:09.000Z" - }, - "end": { - "$date": "2021-06-09T04:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "855d50cc-6bd2-4e8f-b633-1d808d87050a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T02:43:16.000Z" - }, - "end": { - "$date": "2021-06-09T03:07:53.000Z" - }, - "events": [ - { - "uuid": "f894098d-4cc6-40da-9e59-150197e039ef", - "start": { - "$date": "2021-06-09T02:43:16.000Z" - }, - "end": { - "$date": "2021-06-09T03:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6f4a3194-9c66-48a6-9ac9-f42b83233c7c", - "uuid": "a32c0332-935f-476e-a8f2-c4d3809658ad", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-06-09T02:50:20.000Z" - }, - "end": { - "$date": "2021-06-10T06:14:34.000Z" - }, - "events": [ - { - "uuid": "212b2a78-d818-4ae7-923f-04106c7f53de", - "start": { - "$date": "2021-06-09T02:50:20.000Z" - }, - "end": { - "$date": "2021-06-09T02:51:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36de94db-1e13-489e-a379-d4e950f282bb", - "start": { - "$date": "2021-06-09T02:51:20.000Z" - }, - "end": { - "$date": "2021-06-09T03:04:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85408684-bb00-4fbf-966d-31309b60cee4", - "start": { - "$date": "2021-06-09T03:04:20.000Z" - }, - "end": { - "$date": "2021-06-09T10:56:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8dcdb525-4ef6-4ffb-92bb-cba69355d257", - "start": { - "$date": "2021-06-09T10:56:20.000Z" - }, - "end": { - "$date": "2021-06-09T12:31:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dd20d47a-aa65-4547-a546-89706c6db1a7", - "start": { - "$date": "2021-06-09T12:31:20.000Z" - }, - "end": { - "$date": "2021-06-09T16:54:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db9dbf52-c6ba-4d93-9544-04e52f0949dc", - "start": { - "$date": "2021-06-09T16:54:20.000Z" - }, - "end": { - "$date": "2021-06-09T16:56:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "52d0a832-b19b-443d-a1fd-bd1f504bc9c2", - "start": { - "$date": "2021-06-09T16:56:20.000Z" - }, - "end": { - "$date": "2021-06-09T17:05:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae7f1bfc-b610-4565-b8f5-146eb81b6974", - "start": { - "$date": "2021-06-09T17:05:20.000Z" - }, - "end": { - "$date": "2021-06-09T17:07:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b591dc28-9569-494a-bc8b-9862c8ca6881", - "start": { - "$date": "2021-06-09T17:07:20.000Z" - }, - "end": { - "$date": "2021-06-09T17:53:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c24ba9f-2279-4d0d-a8bb-6d3a570407ce", - "start": { - "$date": "2021-06-09T17:53:20.000Z" - }, - "end": { - "$date": "2021-06-09T18:45:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c1e682f-d85a-43c3-8b69-2ab4e2797d67", - "start": { - "$date": "2021-06-09T18:45:20.000Z" - }, - "end": { - "$date": "2021-06-09T18:48:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb7ce334-6565-47f3-b052-24f5dedc3309", - "start": { - "$date": "2021-06-09T18:48:20.000Z" - }, - "end": { - "$date": "2021-06-09T18:59:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5751657d-ff73-4d10-bf58-95edd6443829", - "start": { - "$date": "2021-06-09T18:59:20.000Z" - }, - "end": { - "$date": "2021-06-09T19:00:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec729e2e-ce05-404f-8960-47a7bd5c13ee", - "start": { - "$date": "2021-06-09T19:00:20.000Z" - }, - "end": { - "$date": "2021-06-09T19:10:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "42ce1b25-48af-4a0d-a76d-e847cc54f606", - "start": { - "$date": "2021-06-09T19:10:20.000Z" - }, - "end": { - "$date": "2021-06-09T21:38:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "adc0a1ea-8a43-4561-9d3a-d7bc7429bde7", - "start": { - "$date": "2021-06-09T21:38:20.000Z" - }, - "end": { - "$date": "2021-06-09T21:42:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5426885b-178e-4237-b69f-e6bc69ddee4a", - "start": { - "$date": "2021-06-09T21:42:20.000Z" - }, - "end": { - "$date": "2021-06-10T02:36:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f9d6ae4f-1899-4c79-9966-98a0f106f7c4", - "start": { - "$date": "2021-06-10T02:36:20.000Z" - }, - "end": { - "$date": "2021-06-10T02:38:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "023a15b8-61d2-45fc-927f-cc07d7a89547", - "start": { - "$date": "2021-06-10T02:38:20.000Z" - }, - "end": { - "$date": "2021-06-10T04:25:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af9240de-e215-4daa-851f-cba82117253d", - "start": { - "$date": "2021-06-10T04:25:20.000Z" - }, - "end": { - "$date": "2021-06-10T04:36:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98a2f1a8-3164-444d-b2f6-e36f23586013", - "start": { - "$date": "2021-06-10T04:36:20.000Z" - }, - "end": { - "$date": "2021-06-10T06:01:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "467a09fa-67ea-442c-a7d3-b501862bf78d", - "start": { - "$date": "2021-06-10T06:01:20.000Z" - }, - "end": { - "$date": "2021-06-10T06:12:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddc6a7ff-51ff-4290-a8df-0b76cdda7903", - "start": { - "$date": "2021-06-10T06:12:20.000Z" - }, - "end": { - "$date": "2021-06-10T06:14:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "653f1177-5c3d-4ae6-84e4-cf8a983f2dc1", - "start": { - "$date": "2021-06-10T06:14:20.000Z" - }, - "end": { - "$date": "2021-06-10T06:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff538deb-0b2d-442c-b141-281f7abfc922", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T03:09:02.000Z" - }, - "end": { - "$date": "2021-06-09T03:36:46.000Z" - }, - "events": [ - { - "uuid": "701f707e-f049-4108-a37b-0a42bd6a35a9", - "start": { - "$date": "2021-06-09T03:09:02.000Z" - }, - "end": { - "$date": "2021-06-09T03:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "eb60b520-0900-4aa2-a2b5-37856f90780b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-09T03:23:19.000Z" - }, - "end": { - "$date": "2021-06-09T03:50:16.000Z" - }, - "events": [ - { - "uuid": "29874842-5988-4419-8b8c-842c8decb252", - "start": { - "$date": "2021-06-09T03:23:19.000Z" - }, - "end": { - "$date": "2021-06-09T03:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f502ee54-99b7-4be1-9771-2283bad521e5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T03:30:21.000Z" - }, - "end": { - "$date": "2021-06-09T03:47:08.000Z" - }, - "events": [ - { - "uuid": "9c3b9c6b-e0df-44f0-bfcd-4db1f7803698", - "start": { - "$date": "2021-06-09T03:30:21.000Z" - }, - "end": { - "$date": "2021-06-09T03:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c3de2d5-ed27-4856-91da-51c8491be0d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T03:51:24.000Z" - }, - "end": { - "$date": "2021-06-09T04:03:25.000Z" - }, - "events": [ - { - "uuid": "6970154b-5b0f-4023-b579-562504216a0c", - "start": { - "$date": "2021-06-09T03:51:24.000Z" - }, - "end": { - "$date": "2021-06-09T04:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ecf7da8b-518c-409d-a453-e8cb92e237f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T03:42:49.000Z" - }, - "end": { - "$date": "2021-06-09T03:44:19.000Z" - }, - "events": [ - { - "uuid": "cfd2d5ec-de55-4262-b216-4fa291d2401d", - "start": { - "$date": "2021-06-09T03:42:49.000Z" - }, - "end": { - "$date": "2021-06-09T03:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d61d8a0e-b487-48c7-84f6-9f36bba29c71", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T03:44:26.000Z" - }, - "end": { - "$date": "2021-06-09T08:03:41.000Z" - }, - "events": [ - { - "uuid": "29508d25-867e-4be5-bd3e-6ef7ec44b548", - "start": { - "$date": "2021-06-09T03:44:26.000Z" - }, - "end": { - "$date": "2021-06-09T08:03:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "773f30bc-1326-4fc8-ad09-11c160f6d5e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T03:51:25.000Z" - }, - "end": { - "$date": "2021-06-09T04:03:14.000Z" - }, - "events": [ - { - "uuid": "f5631726-b049-4de4-a326-4850e25cdf51", - "start": { - "$date": "2021-06-09T03:51:25.000Z" - }, - "end": { - "$date": "2021-06-09T04:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5db57dc8-a1eb-407b-a85e-f2111ac33d0a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T03:51:07.000Z" - }, - "end": { - "$date": "2021-06-09T04:03:28.000Z" - }, - "events": [ - { - "uuid": "7f74ee38-4b07-48f4-a63d-72db48a2427f", - "start": { - "$date": "2021-06-09T03:51:07.000Z" - }, - "end": { - "$date": "2021-06-09T04:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "beadf1d7-4329-4168-93bd-65c228c04395", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-09T03:50:42.000Z" - }, - "end": { - "$date": "2021-06-09T04:08:53.000Z" - }, - "events": [ - { - "uuid": "1aecdab2-9dc3-4da3-82e0-71923ad4b1b2", - "start": { - "$date": "2021-06-09T03:50:42.000Z" - }, - "end": { - "$date": "2021-06-09T04:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d08abc38-c01d-43fc-b64a-4371e2ddc694", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T04:08:15.000Z" - }, - "end": { - "$date": "2021-06-09T04:24:39.000Z" - }, - "events": [ - { - "uuid": "71b088c5-f485-4b9f-8ba7-e0f431140b65", - "start": { - "$date": "2021-06-09T04:08:15.000Z" - }, - "end": { - "$date": "2021-06-09T04:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "903d9599-c63d-4988-815b-f1e93c6ae02e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T04:04:02.000Z" - }, - "end": { - "$date": "2021-06-09T04:05:07.000Z" - }, - "events": [ - { - "uuid": "39b31fe3-3a1a-41d3-bb28-7167d84f2ac1", - "start": { - "$date": "2021-06-09T04:04:02.000Z" - }, - "end": { - "$date": "2021-06-09T04:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4df48430-4cc0-4fb2-9fa7-6b8954d3364d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T04:04:00.000Z" - }, - "end": { - "$date": "2021-06-09T04:05:08.000Z" - }, - "events": [ - { - "uuid": "4dbe8cf2-2e7d-4a75-8efd-1fb2343f3893", - "start": { - "$date": "2021-06-09T04:04:00.000Z" - }, - "end": { - "$date": "2021-06-09T04:05:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e402ad1e-8f3b-42e4-b6ff-9d5acd6487f9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T04:08:33.000Z" - }, - "end": { - "$date": "2021-06-09T04:24:32.000Z" - }, - "events": [ - { - "uuid": "c1ddfa21-5a87-4234-bbd1-d9a07c4c4844", - "start": { - "$date": "2021-06-09T04:08:33.000Z" - }, - "end": { - "$date": "2021-06-09T04:24:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d24b8d63-417b-4743-915d-5251e308798b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T04:08:11.000Z" - }, - "end": { - "$date": "2021-06-09T04:24:25.000Z" - }, - "events": [ - { - "uuid": "e1f75264-73eb-4636-9078-ea0356b836b6", - "start": { - "$date": "2021-06-09T04:08:11.000Z" - }, - "end": { - "$date": "2021-06-09T04:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "6953e118-1f80-4e5d-9f93-345704624f05", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-09T04:10:53.000Z" - }, - "end": { - "$date": "2021-06-09T04:26:34.000Z" - }, - "events": [ - { - "uuid": "319d6a26-d417-4e4a-8c71-45a351228bc7", - "start": { - "$date": "2021-06-09T04:10:53.000Z" - }, - "end": { - "$date": "2021-06-09T04:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8399fe9f-f6d9-4080-a861-99f7f6cebd44", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T04:27:52.000Z" - }, - "end": { - "$date": "2021-06-09T04:49:18.000Z" - }, - "events": [ - { - "uuid": "14e6cc71-3337-49a9-9515-92a948e7b7ca", - "start": { - "$date": "2021-06-09T04:27:52.000Z" - }, - "end": { - "$date": "2021-06-09T04:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c81b6111-0be4-40b2-8852-746237c1d046", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T04:29:47.000Z" - }, - "end": { - "$date": "2021-06-09T04:49:06.000Z" - }, - "events": [ - { - "uuid": "c407990f-d566-438c-8241-99189dedb14b", - "start": { - "$date": "2021-06-09T04:29:47.000Z" - }, - "end": { - "$date": "2021-06-09T04:49:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41fc2cc4-bbe3-470e-b574-7fe7f076aa13", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T04:27:49.000Z" - }, - "end": { - "$date": "2021-06-09T04:49:22.000Z" - }, - "events": [ - { - "uuid": "47a901cf-82bd-40b8-bd0c-29d8e9e266a6", - "start": { - "$date": "2021-06-09T04:27:49.000Z" - }, - "end": { - "$date": "2021-06-09T04:49:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "466b001d-769d-4265-b5d0-e23c0a2615d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-09T04:33:05.000Z" - }, - "end": { - "$date": "2021-06-09T04:38:21.000Z" - }, - "events": [ - { - "uuid": "349e0875-6e7a-4eaa-8741-d2f7169b1c73", - "start": { - "$date": "2021-06-09T04:33:05.000Z" - }, - "end": { - "$date": "2021-06-09T04:38:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "2533b031-f28c-4528-b682-8337179d0a8c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-09T04:41:12.000Z" - }, - "end": { - "$date": "2021-06-09T04:59:36.000Z" - }, - "events": [ - { - "uuid": "500534b1-cffa-43a1-8904-1a2a25d50576", - "start": { - "$date": "2021-06-09T04:41:12.000Z" - }, - "end": { - "$date": "2021-06-09T04:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "e9f54d8a-a6cd-43b8-a2b2-5baefd4d81a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T05:34:20.000Z" - }, - "end": { - "$date": "2021-06-09T06:46:17.000Z" - }, - "events": [ - { - "uuid": "2433ca83-f58e-47d1-a423-9eeb0494a2de", - "start": { - "$date": "2021-06-09T05:34:20.000Z" - }, - "end": { - "$date": "2021-06-09T06:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8eba5099-97cb-4355-8344-22f26ca9586d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T04:50:27.000Z" - }, - "end": { - "$date": "2021-06-09T15:40:42.000Z" - }, - "events": [ - { - "uuid": "ec3c6c1f-ac44-4654-822e-ed3698e4ea7b", - "start": { - "$date": "2021-06-09T04:50:27.000Z" - }, - "end": { - "$date": "2021-06-09T05:01:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2c9c1910-16fd-4397-ae89-0d0d86acc262", - "start": { - "$date": "2021-06-09T05:01:27.000Z" - }, - "end": { - "$date": "2021-06-09T14:28:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc672a0d-fa6d-4b42-927e-c479b438d776", - "start": { - "$date": "2021-06-09T14:28:27.000Z" - }, - "end": { - "$date": "2021-06-09T14:31:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d3c42af-a50c-4944-b077-688fe3d8ff4f", - "start": { - "$date": "2021-06-09T14:31:27.000Z" - }, - "end": { - "$date": "2021-06-09T14:50:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "724a5790-76de-4fa3-9e76-96f2d74c6551", - "start": { - "$date": "2021-06-09T14:50:27.000Z" - }, - "end": { - "$date": "2021-06-09T15:02:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "933ea09e-c5ba-4431-953f-da9f88329b82", - "start": { - "$date": "2021-06-09T15:02:27.000Z" - }, - "end": { - "$date": "2021-06-09T15:05:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "37166f5e-ad11-4e70-943d-fdfe8e7095d1", - "start": { - "$date": "2021-06-09T15:05:27.000Z" - }, - "end": { - "$date": "2021-06-09T15:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "03dcc77f-7174-4f2d-b5a2-1cfd81d93428", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-09T04:53:16.000Z" - }, - "end": { - "$date": "2021-06-09T06:14:48.000Z" - }, - "events": [ - { - "uuid": "e43857c0-c18a-469d-b04f-abbd35ca770d", - "start": { - "$date": "2021-06-09T04:53:16.000Z" - }, - "end": { - "$date": "2021-06-09T06:14:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "a1febf69-998e-4dbd-b0d3-8704f578f4fc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-09T05:00:11.000Z" - }, - "end": { - "$date": "2021-06-09T05:48:26.000Z" - }, - "events": [ - { - "uuid": "cd65ae49-28ec-406d-bfbb-305aa1201248", - "start": { - "$date": "2021-06-09T05:00:11.000Z" - }, - "end": { - "$date": "2021-06-09T05:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3ffbd306-a764-496b-a3d4-0210cb53e156", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T05:13:17.000Z" - }, - "end": { - "$date": "2021-06-09T06:42:42.000Z" - }, - "events": [ - { - "uuid": "1e2bd3cb-0543-4b06-b447-9ca4f2418f46", - "start": { - "$date": "2021-06-09T05:13:17.000Z" - }, - "end": { - "$date": "2021-06-09T06:42:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5aab3c63-f95e-4e45-8ddb-ad8e7b779f73", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-09T07:26:55.000Z" - }, - "end": { - "$date": "2021-06-09T08:03:52.000Z" - }, - "events": [ - { - "uuid": "a62cb54c-65b4-493e-bf5e-e86de894692d", - "start": { - "$date": "2021-06-09T07:26:55.000Z" - }, - "end": { - "$date": "2021-06-09T08:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", - "uuid": "ae7dfcdf-c8b2-4c47-9f35-ea38e6169e8b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T08:13:12.000Z" - }, - "end": { - "$date": "2021-06-09T08:14:18.000Z" - }, - "events": [ - { - "uuid": "c8721faf-3227-4706-b174-f742502713ce", - "start": { - "$date": "2021-06-09T08:13:12.000Z" - }, - "end": { - "$date": "2021-06-09T08:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "3a09d20d-fcac-4602-ab66-987b2a63d048", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-09T14:58:38.000Z" - }, - "end": { - "$date": "2021-06-09T15:00:21.000Z" - }, - "events": [ - { - "uuid": "04c05c55-de67-43a1-82cc-a8fce25dcc9b", - "start": { - "$date": "2021-06-09T14:58:38.000Z" - }, - "end": { - "$date": "2021-06-09T15:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a25fbe5-0ff8-473f-a852-92ba9c21e914", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T16:52:45.000Z" - }, - "end": { - "$date": "2021-06-09T17:17:24.000Z" - }, - "events": [ - { - "uuid": "d7fc6c91-752f-406c-bc22-367de56803a5", - "start": { - "$date": "2021-06-09T16:52:45.000Z" - }, - "end": { - "$date": "2021-06-09T17:17:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20e38d2c-80ff-4b44-936a-3e97ea625860", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T18:45:19.000Z" - }, - "end": { - "$date": "2021-06-09T18:54:43.000Z" - }, - "events": [ - { - "uuid": "49ada9bf-6da3-470f-856b-0e2ca4c980be", - "start": { - "$date": "2021-06-09T18:45:19.000Z" - }, - "end": { - "$date": "2021-06-09T18:54:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50858f52-0114-4f38-8d29-eb4a2d490d60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-09T18:59:20.000Z" - }, - "end": { - "$date": "2021-06-09T19:18:49.000Z" - }, - "events": [ - { - "uuid": "8a744264-be26-4523-aaec-e69722bf160f", - "start": { - "$date": "2021-06-09T18:59:20.000Z" - }, - "end": { - "$date": "2021-06-09T19:18:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "796796c3-1659-4cbe-a3e0-771e0703108e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T19:30:20.000Z" - }, - "end": { - "$date": "2021-06-09T19:34:48.000Z" - }, - "events": [ - { - "uuid": "32220a40-a504-4503-865e-9cbf7f50d99b", - "start": { - "$date": "2021-06-09T19:30:20.000Z" - }, - "end": { - "$date": "2021-06-09T19:34:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0cc07b09-66ca-4727-b3a9-f31a3b4c538d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-09T21:10:38.000Z" - }, - "end": { - "$date": "2021-06-10T00:24:31.000Z" - }, - "events": [ - { - "uuid": "bd751249-d432-46c2-a09a-a2729ed76511", - "start": { - "$date": "2021-06-09T21:10:38.000Z" - }, - "end": { - "$date": "2021-06-10T00:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b065494c-9abe-47af-84ed-462f4728ff03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-09T20:38:10.000Z" - }, - "end": { - "$date": "2021-06-09T21:16:21.000Z" - }, - "events": [ - { - "uuid": "19a845c4-57fc-4b5e-85c8-700ff8ca2375", - "start": { - "$date": "2021-06-09T20:38:10.000Z" - }, - "end": { - "$date": "2021-06-09T21:16:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e0b30622-c954-4f82-913a-a30da80c6a7e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-09T20:58:01.000Z" - }, - "end": { - "$date": "2021-06-09T23:57:43.000Z" - }, - "events": [ - { - "uuid": "e1db73c8-9525-48f7-8b09-db91f0378c17", - "start": { - "$date": "2021-06-09T20:58:01.000Z" - }, - "end": { - "$date": "2021-06-09T23:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "58258ff5-1d69-4e27-9358-b837454f6c0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-09T21:31:41.000Z" - }, - "end": { - "$date": "2021-06-10T05:12:53.000Z" - }, - "events": [ - { - "uuid": "0eb1b643-0498-4187-8913-364f6c99f9f3", - "start": { - "$date": "2021-06-09T21:31:41.000Z" - }, - "end": { - "$date": "2021-06-10T00:43:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08b42a7b-1028-499c-8b58-b3d67887d620", - "start": { - "$date": "2021-06-10T00:43:41.000Z" - }, - "end": { - "$date": "2021-06-10T00:50:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f3ae0b6-c6fc-409e-9d89-2a53a5d02e0e", - "start": { - "$date": "2021-06-10T00:50:41.000Z" - }, - "end": { - "$date": "2021-06-10T01:25:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3670b6a0-2172-4bd2-8649-4663b29e629f", - "start": { - "$date": "2021-06-10T01:25:41.000Z" - }, - "end": { - "$date": "2021-06-10T01:30:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "526e2785-6cea-480d-a244-b0235c925984", - "start": { - "$date": "2021-06-10T01:30:41.000Z" - }, - "end": { - "$date": "2021-06-10T05:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b7893bda-ca9d-490c-9c68-5b424a262efa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T22:07:45.000Z" - }, - "end": { - "$date": "2021-06-09T22:32:56.000Z" - }, - "events": [ - { - "uuid": "69d9192d-08af-486d-8361-b472adc9cbb8", - "start": { - "$date": "2021-06-09T22:07:45.000Z" - }, - "end": { - "$date": "2021-06-09T22:32:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "a2c0009d-4f0c-4db2-9703-1cd25426b05d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T22:36:37.000Z" - }, - "end": { - "$date": "2021-06-09T22:54:23.000Z" - }, - "events": [ - { - "uuid": "14387887-517a-435a-ae65-c6ab8eef8b23", - "start": { - "$date": "2021-06-09T22:36:37.000Z" - }, - "end": { - "$date": "2021-06-09T22:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a6767e18-bd9d-4c64-8ec7-a12b4d118267", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T22:55:04.000Z" - }, - "end": { - "$date": "2021-06-09T23:07:19.000Z" - }, - "events": [ - { - "uuid": "7c6e9495-5894-4b9f-8bb5-0d44072c3987", - "start": { - "$date": "2021-06-09T22:55:04.000Z" - }, - "end": { - "$date": "2021-06-09T23:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "b984c78b-bc6a-4ce4-82ec-42fb1e7d8626", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T23:12:30.000Z" - }, - "end": { - "$date": "2021-06-09T23:56:05.000Z" - }, - "events": [ - { - "uuid": "5629f80c-881f-4b4f-8033-cdb9fa27adb3", - "start": { - "$date": "2021-06-09T23:12:30.000Z" - }, - "end": { - "$date": "2021-06-09T23:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "378eb1cc-90c3-4f20-92a3-f04d4c753693", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-09T23:59:36.000Z" - }, - "end": { - "$date": "2021-06-10T00:15:36.000Z" - }, - "events": [ - { - "uuid": "7d594252-5945-4ad8-b6cf-a475f5de1743", - "start": { - "$date": "2021-06-09T23:59:36.000Z" - }, - "end": { - "$date": "2021-06-10T00:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd596502-7984-4237-bde7-aa15d1a4615c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T00:43:41.000Z" - }, - "end": { - "$date": "2021-06-10T00:56:15.000Z" - }, - "events": [ - { - "uuid": "fa8f413d-f678-4124-8676-461490551f2b", - "start": { - "$date": "2021-06-10T00:43:41.000Z" - }, - "end": { - "$date": "2021-06-10T00:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "9f8d3ddc-c659-48b3-93e0-a3c7f40361e6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T00:24:33.000Z" - }, - "end": { - "$date": "2021-06-10T00:42:24.000Z" - }, - "events": [ - { - "uuid": "8f7cc2bf-a724-42b7-bea8-e08bea764e6f", - "start": { - "$date": "2021-06-10T00:24:33.000Z" - }, - "end": { - "$date": "2021-06-10T00:42:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da8adb3c-565c-442d-b0a0-49b224c8e3b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T00:43:57.000Z" - }, - "end": { - "$date": "2021-06-10T00:56:12.000Z" - }, - "events": [ - { - "uuid": "7b52429e-c2d0-48bd-83d5-f0c5a6204e00", - "start": { - "$date": "2021-06-10T00:43:57.000Z" - }, - "end": { - "$date": "2021-06-10T00:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f91906b0-465f-48a3-934c-895a0bc2c5f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T00:42:44.000Z" - }, - "end": { - "$date": "2021-06-10T00:54:45.000Z" - }, - "events": [ - { - "uuid": "3c0d46d8-92cd-4138-b182-79e5e4b6c72a", - "start": { - "$date": "2021-06-10T00:42:44.000Z" - }, - "end": { - "$date": "2021-06-10T00:54:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7aa33806-1b9c-442e-936d-9c29c86950e0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T01:02:12.000Z" - }, - "end": { - "$date": "2021-06-10T01:18:22.000Z" - }, - "events": [ - { - "uuid": "004870a4-9941-44a6-bc59-4d8ec1a98e01", - "start": { - "$date": "2021-06-10T01:02:12.000Z" - }, - "end": { - "$date": "2021-06-10T01:18:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "a06e2920-741c-4ee7-9659-be5bf7a25377", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T00:56:46.000Z" - }, - "end": { - "$date": "2021-06-10T01:37:02.000Z" - }, - "events": [ - { - "uuid": "3024a9b8-1748-4f9d-b975-c523246f318e", - "start": { - "$date": "2021-06-10T00:56:46.000Z" - }, - "end": { - "$date": "2021-06-10T01:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2dbb1a4-fa03-4029-b610-9ba218f11751", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T01:02:48.000Z" - }, - "end": { - "$date": "2021-06-10T01:18:08.000Z" - }, - "events": [ - { - "uuid": "1ff03dcc-7627-4865-ba86-381e34b3ad83", - "start": { - "$date": "2021-06-10T01:02:48.000Z" - }, - "end": { - "$date": "2021-06-10T01:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a82d1c83-307f-4c20-86ef-18236a258f93", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-10T01:14:33.000Z" - }, - "end": { - "$date": "2021-06-10T01:51:35.000Z" - }, - "events": [ - { - "uuid": "4d00d22d-fb67-4710-852f-0b9939d2c9e5", - "start": { - "$date": "2021-06-10T01:14:33.000Z" - }, - "end": { - "$date": "2021-06-10T01:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "091bb7ef-38b8-4801-88df-f6c5730ad673", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T01:19:28.000Z" - }, - "end": { - "$date": "2021-06-10T01:22:46.000Z" - }, - "events": [ - { - "uuid": "11c76b40-fc43-420b-89c7-5c480430dd3e", - "start": { - "$date": "2021-06-10T01:19:28.000Z" - }, - "end": { - "$date": "2021-06-10T01:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "96dd480f-4f44-4002-adcd-3ac9953adf93", - "uuid": "a5b23e03-06a9-4bca-8642-aae872fc308e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T01:23:03.000Z" - }, - "end": { - "$date": "2021-06-10T02:11:09.000Z" - }, - "events": [ - { - "uuid": "f0bf8182-60dc-4884-8fc0-f034bbf064e8", - "start": { - "$date": "2021-06-10T01:23:03.000Z" - }, - "end": { - "$date": "2021-06-10T02:11:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9e48e629-daf6-4260-bcbd-fd88c3996701", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-10T01:36:50.000Z" - }, - "end": { - "$date": "2021-06-10T03:52:05.000Z" - }, - "events": [ - { - "uuid": "9f4a7dc5-6c68-4de9-94e8-c5887a907ec9", - "start": { - "$date": "2021-06-10T01:36:50.000Z" - }, - "end": { - "$date": "2021-06-10T03:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "12573884-088a-4e72-8148-5ef69f2563f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T01:37:07.000Z" - }, - "end": { - "$date": "2021-06-10T03:52:05.000Z" - }, - "events": [ - { - "uuid": "325507f5-b27f-46e6-acee-5db7bc97c7ef", - "start": { - "$date": "2021-06-10T01:37:07.000Z" - }, - "end": { - "$date": "2021-06-10T02:30:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "403a10ec-95bb-4751-9fd8-fea5c2be94fc", - "start": { - "$date": "2021-06-10T02:30:07.000Z" - }, - "end": { - "$date": "2021-06-10T02:35:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb128b3d-3db9-4f26-9afc-6bfb4df4ae16", - "start": { - "$date": "2021-06-10T02:35:07.000Z" - }, - "end": { - "$date": "2021-06-10T02:45:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19ddee20-4364-4324-9d33-c502796a081c", - "start": { - "$date": "2021-06-10T02:45:07.000Z" - }, - "end": { - "$date": "2021-06-10T02:50:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3c3d98dd-7e9d-4df1-a63d-36b21a43f5b3", - "start": { - "$date": "2021-06-10T02:50:07.000Z" - }, - "end": { - "$date": "2021-06-10T03:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "2e70d442-9cde-4bc7-8487-212e16b68741", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T02:14:26.000Z" - }, - "end": { - "$date": "2021-06-10T02:18:00.000Z" - }, - "events": [ - { - "uuid": "f78cfc1a-9891-4575-97b5-d9402bae57bd", - "start": { - "$date": "2021-06-10T02:14:26.000Z" - }, - "end": { - "$date": "2021-06-10T02:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1fc4b4de-bf81-40be-be54-107f0048bec7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T02:18:14.000Z" - }, - "end": { - "$date": "2021-06-10T03:41:47.000Z" - }, - "events": [ - { - "uuid": "3e2e2844-07f0-4489-96e6-00bba283b5dd", - "start": { - "$date": "2021-06-10T02:18:14.000Z" - }, - "end": { - "$date": "2021-06-10T03:41:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5630a73-3906-4ea7-88fe-3c70843eacbc", - "uuid": "322fd02b-f1a8-4482-9d0d-71d37feeef44", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T02:20:12.000Z" - }, - "end": { - "$date": "2021-06-10T02:43:59.000Z" - }, - "events": [ - { - "uuid": "fdb5982a-ddd5-4165-9ed6-6d0531355b47", - "start": { - "$date": "2021-06-10T02:20:12.000Z" - }, - "end": { - "$date": "2021-06-10T02:43:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", - "uuid": "6b1c486a-abdc-4e08-a510-3eebfff3b972", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-10T02:37:56.000Z" - }, - "end": { - "$date": "2021-06-10T02:49:48.000Z" - }, - "events": [ - { - "uuid": "0d3c958e-89cd-4594-a3c6-e43fdc75f68c", - "start": { - "$date": "2021-06-10T02:37:56.000Z" - }, - "end": { - "$date": "2021-06-10T02:49:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36987121-8695-4861-8e24-562c81371f29", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T02:41:46.000Z" - }, - "end": { - "$date": "2021-06-10T02:45:06.000Z" - }, - "events": [ - { - "uuid": "8584f298-ed90-4eda-bcbd-1e9e10c3b0eb", - "start": { - "$date": "2021-06-10T02:41:46.000Z" - }, - "end": { - "$date": "2021-06-10T02:45:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "397b560d-3f9b-4491-ad87-a986663857a1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T02:55:01.000Z" - }, - "end": { - "$date": "2021-06-10T03:14:50.000Z" - }, - "events": [ - { - "uuid": "17314cb2-2cb8-4fc3-b23e-871ce7c2e2d6", - "start": { - "$date": "2021-06-10T02:55:01.000Z" - }, - "end": { - "$date": "2021-06-10T03:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", - "uuid": "d8cf20ef-e031-41f9-a92d-316c67ca1c9a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-10T02:50:28.000Z" - }, - "end": { - "$date": "2021-06-10T03:08:35.000Z" - }, - "events": [ - { - "uuid": "7b3bf428-f532-4bad-aca5-a55e5da1ec00", - "start": { - "$date": "2021-06-10T02:50:28.000Z" - }, - "end": { - "$date": "2021-06-10T03:08:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9317f81e-429a-4b50-8b5b-5cf41edf1826", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T02:54:38.000Z" - }, - "end": { - "$date": "2021-06-10T03:14:59.000Z" - }, - "events": [ - { - "uuid": "d2eb71f9-f8a1-45f9-a0f6-4f6f4fd82894", - "start": { - "$date": "2021-06-10T02:54:38.000Z" - }, - "end": { - "$date": "2021-06-10T03:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c6c7a4ae-6e25-45a8-9864-0c7a9ddc7a32", - "uuid": "437288a7-fb9f-4c1c-bc92-77c945875cc7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-10T03:08:50.000Z" - }, - "end": { - "$date": "2021-06-10T04:29:53.000Z" - }, - "events": [ - { - "uuid": "9ff54ae2-b587-4481-a976-78e4376e64cf", - "start": { - "$date": "2021-06-10T03:08:50.000Z" - }, - "end": { - "$date": "2021-06-10T04:29:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "050c8be8-6d65-422a-ac23-a593c5287961", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T03:20:27.000Z" - }, - "end": { - "$date": "2021-06-10T03:39:52.000Z" - }, - "events": [ - { - "uuid": "abd272a4-674e-43ae-b87b-4757bde64bc9", - "start": { - "$date": "2021-06-10T03:20:27.000Z" - }, - "end": { - "$date": "2021-06-10T03:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb867744-f8f5-4e28-87ad-6ce7392a5a26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T03:19:49.000Z" - }, - "end": { - "$date": "2021-06-10T03:39:49.000Z" - }, - "events": [ - { - "uuid": "a9d707fb-9869-4896-b638-34f0d331720b", - "start": { - "$date": "2021-06-10T03:19:49.000Z" - }, - "end": { - "$date": "2021-06-10T03:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0df2bd1-b4a3-4ac4-8f83-79220b8fd635", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-10T03:34:29.000Z" - }, - "end": { - "$date": "2021-06-10T04:16:28.000Z" - }, - "events": [ - { - "uuid": "c1b008b4-3306-4386-934d-349af51e6861", - "start": { - "$date": "2021-06-10T03:34:29.000Z" - }, - "end": { - "$date": "2021-06-10T04:16:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e856045-1d49-4192-9fb2-5d18eb55d44a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T03:50:29.000Z" - }, - "end": { - "$date": "2021-06-10T04:05:34.000Z" - }, - "events": [ - { - "uuid": "53c822d7-d061-4f44-94ee-65ef41a27e34", - "start": { - "$date": "2021-06-10T03:50:29.000Z" - }, - "end": { - "$date": "2021-06-10T04:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6563a221-f187-4dfc-b603-37559d7b37b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T04:05:22.000Z" - }, - "end": { - "$date": "2021-06-10T04:06:17.000Z" - }, - "events": [ - { - "uuid": "fba1a5b5-7338-4239-9f13-6e8899630913", - "start": { - "$date": "2021-06-10T04:05:22.000Z" - }, - "end": { - "$date": "2021-06-10T04:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f45af10c-6936-4da0-9690-a68ca6ee91d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T03:50:36.000Z" - }, - "end": { - "$date": "2021-06-10T04:05:38.000Z" - }, - "events": [ - { - "uuid": "29cadedb-40ef-4117-a3bb-b5ffb305d468", - "start": { - "$date": "2021-06-10T03:50:36.000Z" - }, - "end": { - "$date": "2021-06-10T04:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "2b7aa19f-d044-4140-9c2d-07e0be6bd554", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T03:53:01.000Z" - }, - "end": { - "$date": "2021-06-10T06:21:48.000Z" - }, - "events": [ - { - "uuid": "27f19659-ccaa-4bc6-bb35-70a46106ed9b", - "start": { - "$date": "2021-06-10T03:53:01.000Z" - }, - "end": { - "$date": "2021-06-10T06:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6761ea11-5458-488c-bff5-6d84400f1621", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T04:09:41.000Z" - }, - "end": { - "$date": "2021-06-10T04:27:50.000Z" - }, - "events": [ - { - "uuid": "0c42b508-718a-4e06-8fcb-49d5e99f89f3", - "start": { - "$date": "2021-06-10T04:09:41.000Z" - }, - "end": { - "$date": "2021-06-10T04:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "649cd702-0087-4be7-8b7e-a97e0ff9f431", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T04:09:48.000Z" - }, - "end": { - "$date": "2021-06-10T04:27:53.000Z" - }, - "events": [ - { - "uuid": "b8d9c145-3b14-4a82-b893-dfb963e1e72a", - "start": { - "$date": "2021-06-10T04:09:48.000Z" - }, - "end": { - "$date": "2021-06-10T04:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80c35e63-c909-410a-81f9-4120a228df98", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T04:09:27.000Z" - }, - "end": { - "$date": "2021-06-10T04:28:04.000Z" - }, - "events": [ - { - "uuid": "27644ef6-155f-4b67-a3f9-884c58802099", - "start": { - "$date": "2021-06-10T04:09:27.000Z" - }, - "end": { - "$date": "2021-06-10T04:28:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6440f53f-3efb-485f-bfd6-bf9ff2f61a6a", - "uuid": "5c4401e8-c79f-4bed-9645-c24ff518e09c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-10T04:18:42.000Z" - }, - "end": { - "$date": "2021-06-10T04:29:38.000Z" - }, - "events": [ - { - "uuid": "6a054904-dd2a-4dcd-880f-24e584e4d842", - "start": { - "$date": "2021-06-10T04:18:42.000Z" - }, - "end": { - "$date": "2021-06-10T04:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b03b658d-e0fe-4ae6-9b96-3e52acace2c1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T04:32:12.000Z" - }, - "end": { - "$date": "2021-06-10T04:48:36.000Z" - }, - "events": [ - { - "uuid": "e17315b4-17fe-4f38-b4d0-d19f0248f3d4", - "start": { - "$date": "2021-06-10T04:32:12.000Z" - }, - "end": { - "$date": "2021-06-10T04:48:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92abff3a-9ede-4aa7-95a6-4aeb200266c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T04:32:13.000Z" - }, - "end": { - "$date": "2021-06-10T04:48:23.000Z" - }, - "events": [ - { - "uuid": "521e3adf-e09c-4749-b599-e5922e6d71c9", - "start": { - "$date": "2021-06-10T04:32:13.000Z" - }, - "end": { - "$date": "2021-06-10T04:48:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "960ee3ae-1575-4f75-aa1f-1f074a45da2c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T04:31:55.000Z" - }, - "end": { - "$date": "2021-06-10T04:48:34.000Z" - }, - "events": [ - { - "uuid": "4962ea21-2146-4d38-8ec9-bcc4809b666f", - "start": { - "$date": "2021-06-10T04:31:55.000Z" - }, - "end": { - "$date": "2021-06-10T04:48:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "226711b4-edc6-4c38-bab4-1be010e701e2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-10T05:09:20.000Z" - }, - "end": { - "$date": "2021-06-10T05:10:07.000Z" - }, - "events": [ - { - "uuid": "ebae749a-cffa-4ffe-b07e-f8c03609be7f", - "start": { - "$date": "2021-06-10T05:09:20.000Z" - }, - "end": { - "$date": "2021-06-10T05:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b0f46871-7511-411e-a341-e2eb690e7182", - "uuid": "4b47b26d-15b3-48e1-9c91-6e76093e86aa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-10T04:30:07.000Z" - }, - "end": { - "$date": "2021-06-10T05:13:18.000Z" - }, - "events": [ - { - "uuid": "f93920d5-31f8-4171-a651-2833abb86c4a", - "start": { - "$date": "2021-06-10T04:30:07.000Z" - }, - "end": { - "$date": "2021-06-10T05:13:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5460a844-aca3-4a48-aa93-7a4cd0508a93", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T04:52:23.000Z" - }, - "end": { - "$date": "2021-06-10T05:09:13.000Z" - }, - "events": [ - { - "uuid": "5c75e95e-36f4-4113-8868-cec850c57635", - "start": { - "$date": "2021-06-10T04:52:23.000Z" - }, - "end": { - "$date": "2021-06-10T05:09:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e93bf637-03d1-4828-85b7-fd4a70d08f81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T04:52:30.000Z" - }, - "end": { - "$date": "2021-06-10T05:09:26.000Z" - }, - "events": [ - { - "uuid": "d4730339-568c-4833-a45b-002b2bb9b58b", - "start": { - "$date": "2021-06-10T04:52:30.000Z" - }, - "end": { - "$date": "2021-06-10T05:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39654c46-c7d5-4400-9638-b9705e9e1120", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-10T04:52:38.000Z" - }, - "end": { - "$date": "2021-06-10T05:09:17.000Z" - }, - "events": [ - { - "uuid": "576ee08c-e59b-4a7e-8471-b4f4a7860d2e", - "start": { - "$date": "2021-06-10T04:52:38.000Z" - }, - "end": { - "$date": "2021-06-10T05:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c168130f-593a-4315-99ea-bba25a548cca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T05:10:21.000Z" - }, - "end": { - "$date": "2021-06-10T05:55:40.000Z" - }, - "events": [ - { - "uuid": "013b5e6a-f062-4f5f-bcde-d6e98b7c200d", - "start": { - "$date": "2021-06-10T05:10:21.000Z" - }, - "end": { - "$date": "2021-06-10T05:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f466d0bf-ffe9-4833-9eb3-479d8728dc46", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-10T05:10:50.000Z" - }, - "end": { - "$date": "2021-06-10T05:23:01.000Z" - }, - "events": [ - { - "uuid": "65a6bc57-950a-4d2d-b8d5-e785ca316611", - "start": { - "$date": "2021-06-10T05:10:50.000Z" - }, - "end": { - "$date": "2021-06-10T05:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8de9a021-28f8-4e12-b2b0-9733f54a7e29", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-10T05:13:10.000Z" - }, - "end": { - "$date": "2021-06-10T05:15:15.000Z" - }, - "events": [ - { - "uuid": "a5f62204-2240-42aa-8eee-a0b58d209e63", - "start": { - "$date": "2021-06-10T05:13:10.000Z" - }, - "end": { - "$date": "2021-06-10T05:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "872bac10-a178-4c3c-8e37-311ce62587ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-10T05:13:59.000Z" - }, - "end": { - "$date": "2021-06-10T07:08:03.000Z" - }, - "events": [ - { - "uuid": "b7bf3097-bb36-468f-8ce2-efa020193afb", - "start": { - "$date": "2021-06-10T05:13:59.000Z" - }, - "end": { - "$date": "2021-06-10T07:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "37e19695-df01-4ea1-a186-20f2c7eb3f23", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-10T05:14:07.000Z" - }, - "end": { - "$date": "2021-06-10T05:23:03.000Z" - }, - "events": [ - { - "uuid": "acf25683-0f0a-452d-88b0-7ae68138e96d", - "start": { - "$date": "2021-06-10T05:14:07.000Z" - }, - "end": { - "$date": "2021-06-10T05:23:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8c90fc3-5d18-4328-bd8c-60b2101a8f48", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-10T05:19:36.000Z" - }, - "end": { - "$date": "2021-06-10T05:56:11.000Z" - }, - "events": [ - { - "uuid": "33e3e0f7-e20a-4c87-bd4a-5a1911a8c143", - "start": { - "$date": "2021-06-10T05:19:36.000Z" - }, - "end": { - "$date": "2021-06-10T05:56:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "39243a62-d0ce-4a38-bc02-bb985a126e2f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-10T05:23:22.000Z" - }, - "end": { - "$date": "2021-06-10T08:19:35.000Z" - }, - "events": [ - { - "uuid": "3b1346cf-145f-4a76-8669-3df88d8719b8", - "start": { - "$date": "2021-06-10T05:23:22.000Z" - }, - "end": { - "$date": "2021-06-10T08:18:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4670eddf-b673-4bfd-9bce-69d136705ed6", - "start": { - "$date": "2021-06-10T08:18:22.000Z" - }, - "end": { - "$date": "2021-06-10T08:19:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8ea3d1c-87cb-4fd3-aed9-b968b1715733", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-10T05:23:23.000Z" - }, - "end": { - "$date": "2021-06-10T19:57:17.000Z" - }, - "events": [ - { - "uuid": "cbae2e05-ca2f-42aa-8519-5962f2c87534", - "start": { - "$date": "2021-06-10T05:23:23.000Z" - }, - "end": { - "$date": "2021-06-10T08:35:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56840b20-1148-41c1-bc6b-39a9d35d2c45", - "start": { - "$date": "2021-06-10T08:35:23.000Z" - }, - "end": { - "$date": "2021-06-10T10:00:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0be69560-d918-4c4f-953f-f8a091c41050", - "start": { - "$date": "2021-06-10T10:00:23.000Z" - }, - "end": { - "$date": "2021-06-10T10:10:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e89009aa-1dfa-4b60-95d7-5ea7c04d494b", - "start": { - "$date": "2021-06-10T10:10:23.000Z" - }, - "end": { - "$date": "2021-06-10T17:00:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4079ec1e-db14-4163-acae-af9eb9922fda", - "start": { - "$date": "2021-06-10T17:00:23.000Z" - }, - "end": { - "$date": "2021-06-10T17:04:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a651985-6ac8-4d59-b427-29d9ff27c0f5", - "start": { - "$date": "2021-06-10T17:04:23.000Z" - }, - "end": { - "$date": "2021-06-10T18:58:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7a3e022-1394-4b36-a45b-adba252e7349", - "start": { - "$date": "2021-06-10T18:58:23.000Z" - }, - "end": { - "$date": "2021-06-10T19:01:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d632cce1-d95f-4378-8bd3-7a7893fab99a", - "start": { - "$date": "2021-06-10T19:01:23.000Z" - }, - "end": { - "$date": "2021-06-10T19:04:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8af1b75d-ba7d-4793-b26f-136df5425029", - "start": { - "$date": "2021-06-10T19:04:23.000Z" - }, - "end": { - "$date": "2021-06-10T19:57:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4f460a9d-47e6-440d-b7e4-c5f5f068841a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-10T14:41:40.000Z" - }, - "end": { - "$date": "2021-06-10T15:33:28.000Z" - }, - "events": [ - { - "uuid": "a0c0fe02-50be-42dc-b4b5-285f36f89ff5", - "start": { - "$date": "2021-06-10T14:41:40.000Z" - }, - "end": { - "$date": "2021-06-10T15:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "56587e6f-5dc5-4c2d-b824-f40f41de00b9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-10T15:56:07.000Z" - }, - "end": { - "$date": "2021-06-10T16:11:49.000Z" - }, - "events": [ - { - "uuid": "fd8d0c57-1bb7-4264-b517-209532b34758", - "start": { - "$date": "2021-06-10T15:56:07.000Z" - }, - "end": { - "$date": "2021-06-10T16:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fc5af23-059b-4c5f-a88b-3ac9625242a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T16:01:55.000Z" - }, - "end": { - "$date": "2021-06-10T16:36:32.000Z" - }, - "events": [ - { - "uuid": "939346bc-1447-49e5-b0ac-7f58b8d19c69", - "start": { - "$date": "2021-06-10T16:01:55.000Z" - }, - "end": { - "$date": "2021-06-10T16:36:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58015e95-d5b6-4a02-98e5-ba0bdc4198ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T16:46:08.000Z" - }, - "end": { - "$date": "2021-06-10T17:16:40.000Z" - }, - "events": [ - { - "uuid": "01867abe-28b3-4b1b-9a49-59c276277a29", - "start": { - "$date": "2021-06-10T16:46:08.000Z" - }, - "end": { - "$date": "2021-06-10T17:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "e6990de8-5e66-41b2-8334-05dff5581458", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T17:18:00.000Z" - }, - "end": { - "$date": "2021-06-10T18:22:11.000Z" - }, - "events": [ - { - "uuid": "fb8b5ac0-a7f4-413a-9ee8-4998d5b0eb47", - "start": { - "$date": "2021-06-10T17:18:00.000Z" - }, - "end": { - "$date": "2021-06-10T18:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7eaa9a16-8e7b-478b-a789-8b9b5420134a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T19:01:07.000Z" - }, - "end": { - "$date": "2021-06-10T19:19:31.000Z" - }, - "events": [ - { - "uuid": "4a6f311f-10a7-4a96-b77b-3c9e238b955c", - "start": { - "$date": "2021-06-10T19:01:07.000Z" - }, - "end": { - "$date": "2021-06-10T19:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba9be85b-4d52-4808-9262-65089d1a0834", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T19:10:23.000Z" - }, - "end": { - "$date": "2021-06-10T19:12:28.000Z" - }, - "events": [ - { - "uuid": "871d9127-7079-487a-8c90-ae89dd8c5973", - "start": { - "$date": "2021-06-10T19:10:23.000Z" - }, - "end": { - "$date": "2021-06-10T19:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6cd676a7-f304-4d75-bb74-bea875bdbcb5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T19:12:58.000Z" - }, - "end": { - "$date": "2021-06-10T19:14:08.000Z" - }, - "events": [ - { - "uuid": "bf59f4b2-c01c-472a-befe-e2206ed46e9d", - "start": { - "$date": "2021-06-10T19:12:58.000Z" - }, - "end": { - "$date": "2021-06-10T19:14:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8c35d36c-f01a-4954-8061-4de012dafa35", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T19:14:38.000Z" - }, - "end": { - "$date": "2021-06-10T19:17:08.000Z" - }, - "events": [ - { - "uuid": "d9079516-fc31-4dd7-8e1c-d4879665f2e2", - "start": { - "$date": "2021-06-10T19:14:38.000Z" - }, - "end": { - "$date": "2021-06-10T19:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "767eb8a5-3547-4944-8d1f-cd4e8b17cd3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T19:25:48.000Z" - }, - "end": { - "$date": "2021-06-10T19:56:12.000Z" - }, - "events": [ - { - "uuid": "39c34e50-f1fa-4e25-972c-f7d5abe2f13b", - "start": { - "$date": "2021-06-10T19:25:48.000Z" - }, - "end": { - "$date": "2021-06-10T19:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbef9a15-7578-4d24-b533-f1ce1f1f6db7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T19:26:39.000Z" - }, - "end": { - "$date": "2021-06-10T19:56:04.000Z" - }, - "events": [ - { - "uuid": "32756d97-3f14-44e1-ad1d-8deffb348ac3", - "start": { - "$date": "2021-06-10T19:26:39.000Z" - }, - "end": { - "$date": "2021-06-10T19:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22cc2132-f788-473e-b1f8-ba7e267e26df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T20:01:55.000Z" - }, - "end": { - "$date": "2021-06-10T20:56:14.000Z" - }, - "events": [ - { - "uuid": "94010e20-7fdd-4045-96f9-f5cb2047b4eb", - "start": { - "$date": "2021-06-10T20:01:55.000Z" - }, - "end": { - "$date": "2021-06-10T20:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3561bdb-3e9b-487d-b770-d686b1b7d51f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T20:02:25.000Z" - }, - "end": { - "$date": "2021-06-10T20:56:05.000Z" - }, - "events": [ - { - "uuid": "b0c220b1-794f-45ff-9d94-ad0a3205b63e", - "start": { - "$date": "2021-06-10T20:02:25.000Z" - }, - "end": { - "$date": "2021-06-10T20:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "65a47f5c-56f2-4355-8b39-8fe2b7f087c5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-10T20:52:01.000Z" - }, - "end": { - "$date": "2021-06-11T01:21:24.000Z" - }, - "events": [ - { - "uuid": "8ae0784c-1bfc-4da1-b729-66c646273095", - "start": { - "$date": "2021-06-10T20:52:01.000Z" - }, - "end": { - "$date": "2021-06-10T21:55:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e08fbb90-6c3a-40b0-82f4-eb4548526404", - "start": { - "$date": "2021-06-10T21:55:01.000Z" - }, - "end": { - "$date": "2021-06-10T22:00:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "807699ce-a773-4561-bd15-c9ab579169e2", - "start": { - "$date": "2021-06-10T22:00:01.000Z" - }, - "end": { - "$date": "2021-06-11T01:21:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "659539cb-a459-43c0-b317-d7a862c4eab7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T21:22:05.000Z" - }, - "end": { - "$date": "2021-06-10T21:46:43.000Z" - }, - "events": [ - { - "uuid": "b8667345-aa29-46fd-b4a2-fa79fcd5bf89", - "start": { - "$date": "2021-06-10T21:22:05.000Z" - }, - "end": { - "$date": "2021-06-10T21:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1a7cfa82-290a-461c-9255-a85eedf0aef6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-10T21:43:54.000Z" - }, - "end": { - "$date": "2021-06-10T22:08:06.000Z" - }, - "events": [ - { - "uuid": "0466b3cd-7636-4076-a213-85152c120b5d", - "start": { - "$date": "2021-06-10T21:43:54.000Z" - }, - "end": { - "$date": "2021-06-10T22:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b74265ff-222c-42e6-9df6-faaf023a2e77", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T21:49:51.000Z" - }, - "end": { - "$date": "2021-06-10T22:06:50.000Z" - }, - "events": [ - { - "uuid": "fd0bc22c-d79b-4738-bea7-00bfe4cbc1db", - "start": { - "$date": "2021-06-10T21:49:51.000Z" - }, - "end": { - "$date": "2021-06-10T22:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "3797a651-5514-4bc1-a345-8ee9fde8f202", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-10T21:55:18.000Z" - }, - "end": { - "$date": "2021-06-10T22:33:14.000Z" - }, - "events": [ - { - "uuid": "e0c6109d-f047-426d-a7c3-e4676c327b11", - "start": { - "$date": "2021-06-10T21:55:18.000Z" - }, - "end": { - "$date": "2021-06-10T22:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "320f013b-b870-4cd6-9b03-eee0bbc83608", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-10T22:10:27.000Z" - }, - "end": { - "$date": "2021-06-10T22:30:54.000Z" - }, - "events": [ - { - "uuid": "daeca096-ac3f-42c6-a510-5dec92bbdd0e", - "start": { - "$date": "2021-06-10T22:10:27.000Z" - }, - "end": { - "$date": "2021-06-10T22:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "260e3605-215b-4f82-8df7-7a82d48b4219", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T22:18:03.000Z" - }, - "end": { - "$date": "2021-06-10T22:21:14.000Z" - }, - "events": [ - { - "uuid": "54599727-0564-4a63-a659-6c8e54a39ee9", - "start": { - "$date": "2021-06-10T22:18:03.000Z" - }, - "end": { - "$date": "2021-06-10T22:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "f7b2feec-f62b-45da-9502-4e66fe5577fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T22:21:19.000Z" - }, - "end": { - "$date": "2021-06-10T22:27:30.000Z" - }, - "events": [ - { - "uuid": "1e914d9e-b48a-4ce9-b741-81c7725fbe19", - "start": { - "$date": "2021-06-10T22:21:19.000Z" - }, - "end": { - "$date": "2021-06-10T22:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d3187ec1-7bb3-453f-ae42-5432c8e5df80", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-10T22:27:47.000Z" - }, - "end": { - "$date": "2021-06-10T23:47:54.000Z" - }, - "events": [ - { - "uuid": "f8899edd-8c11-4b47-95b4-3165b4a740d8", - "start": { - "$date": "2021-06-10T22:27:47.000Z" - }, - "end": { - "$date": "2021-06-10T23:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "759a2afc-ab5a-4d07-bdb1-6e163f48969d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T22:28:50.000Z" - }, - "end": { - "$date": "2021-06-10T23:47:53.000Z" - }, - "events": [ - { - "uuid": "3de2ff4b-2c0a-4b02-abc5-e21442509a9a", - "start": { - "$date": "2021-06-10T22:28:50.000Z" - }, - "end": { - "$date": "2021-06-10T23:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "5ad4fffb-3ea1-40d8-ae54-6b791906373c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-10T23:48:33.000Z" - }, - "end": { - "$date": "2021-06-11T05:07:19.000Z" - }, - "events": [ - { - "uuid": "4b9df144-6eaa-420b-85d7-204077adc431", - "start": { - "$date": "2021-06-10T23:48:33.000Z" - }, - "end": { - "$date": "2021-06-11T00:10:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a88208d-9a7c-4a9b-ae7b-a214878bd3ef", - "start": { - "$date": "2021-06-11T00:10:33.000Z" - }, - "end": { - "$date": "2021-06-11T00:15:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e4df610-06a9-49d6-8dc4-fb320653675d", - "start": { - "$date": "2021-06-11T00:15:33.000Z" - }, - "end": { - "$date": "2021-06-11T00:25:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8dc23101-8a9d-4035-b016-08161474e9f6", - "start": { - "$date": "2021-06-11T00:25:33.000Z" - }, - "end": { - "$date": "2021-06-11T01:44:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "183b8cdf-0f49-4514-b023-0a95e568457a", - "start": { - "$date": "2021-06-11T01:44:33.000Z" - }, - "end": { - "$date": "2021-06-11T05:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc178ccd-555c-4fa1-94b4-cfdb14460712", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T00:19:03.000Z" - }, - "end": { - "$date": "2021-06-11T01:03:12.000Z" - }, - "events": [ - { - "uuid": "ec738537-57e7-44b8-af7b-70b99845fb93", - "start": { - "$date": "2021-06-11T00:19:03.000Z" - }, - "end": { - "$date": "2021-06-11T01:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f6aa1ca-8a8e-420a-ad6e-dd8abd21d7c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T01:11:26.000Z" - }, - "end": { - "$date": "2021-06-11T01:28:10.000Z" - }, - "events": [ - { - "uuid": "50eae54e-30e0-4449-9631-73bb6b3b9e13", - "start": { - "$date": "2021-06-11T01:11:26.000Z" - }, - "end": { - "$date": "2021-06-11T01:28:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "999d2a0d-1977-4a25-af4a-660deb54b5d7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T01:12:26.000Z" - }, - "end": { - "$date": "2021-06-11T01:27:56.000Z" - }, - "events": [ - { - "uuid": "7c8c2787-c9ed-4741-85f7-d9b05acd8315", - "start": { - "$date": "2021-06-11T01:12:26.000Z" - }, - "end": { - "$date": "2021-06-11T01:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6b86f2bf-08c4-4cc0-8b92-41c455599655", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-11T01:21:30.000Z" - }, - "end": { - "$date": "2021-06-11T01:37:47.000Z" - }, - "events": [ - { - "uuid": "28dcb752-8aae-4057-84f8-bbcd76504721", - "start": { - "$date": "2021-06-11T01:21:30.000Z" - }, - "end": { - "$date": "2021-06-11T01:37:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "115aae18-d125-49f9-b875-8e3e334b53c9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T01:35:14.000Z" - }, - "end": { - "$date": "2021-06-11T01:55:33.000Z" - }, - "events": [ - { - "uuid": "fb54e3f4-52ab-42ae-b068-885cd640a15e", - "start": { - "$date": "2021-06-11T01:35:14.000Z" - }, - "end": { - "$date": "2021-06-11T01:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0aa19a7e-5eb0-41e5-8df6-9ce79bfed34e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T01:35:11.000Z" - }, - "end": { - "$date": "2021-06-11T01:55:26.000Z" - }, - "events": [ - { - "uuid": "c8904ab1-124f-4b76-aa7c-3b2ab8794315", - "start": { - "$date": "2021-06-11T01:35:11.000Z" - }, - "end": { - "$date": "2021-06-11T01:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcb8cab7-b740-40b4-a290-c1b7e477c818", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T01:35:42.000Z" - }, - "end": { - "$date": "2021-06-11T01:55:22.000Z" - }, - "events": [ - { - "uuid": "cd6ab339-5a85-40c7-a354-05ec6df6b7fd", - "start": { - "$date": "2021-06-11T01:35:42.000Z" - }, - "end": { - "$date": "2021-06-11T01:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cda6d9d3-c057-44ab-93db-7aae019ae1ed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-11T01:45:19.000Z" - }, - "end": { - "$date": "2021-06-11T07:38:25.000Z" - }, - "events": [ - { - "uuid": "bee75ff1-09cb-4cdf-92e3-73e6725f929c", - "start": { - "$date": "2021-06-11T01:45:19.000Z" - }, - "end": { - "$date": "2021-06-11T02:19:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c896eff5-6f08-420c-8ef0-367d9e1416e8", - "start": { - "$date": "2021-06-11T02:19:19.000Z" - }, - "end": { - "$date": "2021-06-11T02:20:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7ba9cba-6801-47b4-a1ff-581f50439699", - "start": { - "$date": "2021-06-11T02:20:19.000Z" - }, - "end": { - "$date": "2021-06-11T02:34:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "82a48c17-f5c4-4d4f-9b51-403c42713d70", - "start": { - "$date": "2021-06-11T02:34:19.000Z" - }, - "end": { - "$date": "2021-06-11T02:39:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41ac6169-6a50-4f95-ab7c-33f644c60662", - "start": { - "$date": "2021-06-11T02:39:19.000Z" - }, - "end": { - "$date": "2021-06-11T07:38:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8a5b0a8-18f4-4602-902f-24e2de105e9a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T01:59:30.000Z" - }, - "end": { - "$date": "2021-06-11T02:16:31.000Z" - }, - "events": [ - { - "uuid": "099e4d51-999c-47db-9040-fa8e8bc0c839", - "start": { - "$date": "2021-06-11T01:59:30.000Z" - }, - "end": { - "$date": "2021-06-11T02:16:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "558660ac-9f2a-4cf1-921f-b74007477098", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T02:01:57.000Z" - }, - "end": { - "$date": "2021-06-11T02:16:27.000Z" - }, - "events": [ - { - "uuid": "e002d822-56fb-4ecf-93cf-a2cee80e425c", - "start": { - "$date": "2021-06-11T02:01:57.000Z" - }, - "end": { - "$date": "2021-06-11T02:16:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb0ef14f-d34e-422b-bd59-b88851eeea65", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T02:00:27.000Z" - }, - "end": { - "$date": "2021-06-11T02:16:22.000Z" - }, - "events": [ - { - "uuid": "ab63823c-5a3b-494d-89be-0a215d2765e8", - "start": { - "$date": "2021-06-11T02:00:27.000Z" - }, - "end": { - "$date": "2021-06-11T02:16:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbfe313a-a3cb-4af9-92cb-432692644415", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T02:29:18.000Z" - }, - "end": { - "$date": "2021-06-11T02:49:45.000Z" - }, - "events": [ - { - "uuid": "ed188bc0-ecd9-4fc5-9c2f-cb5463ce9300", - "start": { - "$date": "2021-06-11T02:29:18.000Z" - }, - "end": { - "$date": "2021-06-11T02:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae9825c5-206e-43f5-bda4-6df634ca6f22", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T02:17:31.000Z" - }, - "end": { - "$date": "2021-06-11T02:20:31.000Z" - }, - "events": [ - { - "uuid": "1d707475-ef62-43d6-a05a-2a40de4c5fec", - "start": { - "$date": "2021-06-11T02:17:31.000Z" - }, - "end": { - "$date": "2021-06-11T02:20:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc89fe34-a122-4bf5-ab5b-813f2f51bab9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T02:17:31.000Z" - }, - "end": { - "$date": "2021-06-11T02:20:32.000Z" - }, - "events": [ - { - "uuid": "84402c89-2784-4a7f-b13d-ce443493dfc4", - "start": { - "$date": "2021-06-11T02:17:31.000Z" - }, - "end": { - "$date": "2021-06-11T02:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc355e3b-3a33-43e1-8fa5-556b305359c1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T02:30:24.000Z" - }, - "end": { - "$date": "2021-06-11T02:49:34.000Z" - }, - "events": [ - { - "uuid": "df3a91c8-8607-4b9a-ad1a-0e2aa5e7fb58", - "start": { - "$date": "2021-06-11T02:30:24.000Z" - }, - "end": { - "$date": "2021-06-11T02:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2538d4d0-db1c-471d-ab73-d36405854a2f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T02:29:14.000Z" - }, - "end": { - "$date": "2021-06-11T02:49:40.000Z" - }, - "events": [ - { - "uuid": "bd456270-9acc-40ca-9d8a-7467067165be", - "start": { - "$date": "2021-06-11T02:29:14.000Z" - }, - "end": { - "$date": "2021-06-11T02:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60e8cefb-40dd-4910-8349-91f1d36d448d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T02:55:00.000Z" - }, - "end": { - "$date": "2021-06-11T03:15:15.000Z" - }, - "events": [ - { - "uuid": "413560bb-f54d-4d96-bd5c-630272626b20", - "start": { - "$date": "2021-06-11T02:55:00.000Z" - }, - "end": { - "$date": "2021-06-11T03:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99badda8-a967-433c-be1b-71dc5536b0c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T02:55:55.000Z" - }, - "end": { - "$date": "2021-06-11T03:15:05.000Z" - }, - "events": [ - { - "uuid": "af9ef9cf-3f7a-408e-ae54-d0bb8bc124a8", - "start": { - "$date": "2021-06-11T02:55:55.000Z" - }, - "end": { - "$date": "2021-06-11T03:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b4b742b-198c-44d5-a953-939f24f0ef97", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T02:54:56.000Z" - }, - "end": { - "$date": "2021-06-11T03:15:07.000Z" - }, - "events": [ - { - "uuid": "933d5619-d33e-4071-8623-4b4fcf5c86f2", - "start": { - "$date": "2021-06-11T02:54:56.000Z" - }, - "end": { - "$date": "2021-06-11T03:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3a54cbc-3d3d-4601-946a-19a6e7ab000a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T03:19:46.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:49.000Z" - }, - "events": [ - { - "uuid": "07d04b84-7e11-4217-b8d2-864d98cde02c", - "start": { - "$date": "2021-06-11T03:19:46.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e7b9c41-9201-4fa5-b90f-ecd005b85834", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T03:19:42.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:48.000Z" - }, - "events": [ - { - "uuid": "554fa533-f419-41cd-a1dd-d28fa5f780e0", - "start": { - "$date": "2021-06-11T03:19:42.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97e374a9-d742-4e76-9745-0fb36489f5c4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-11T03:21:06.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:40.000Z" - }, - "events": [ - { - "uuid": "b0bf2aaa-0278-406b-9ced-b787dcea4b05", - "start": { - "$date": "2021-06-11T03:21:06.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f28354b-eb91-4e92-927c-78dae3ceba0e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T03:21:16.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:41.000Z" - }, - "events": [ - { - "uuid": "8af4fa7a-f93e-4f51-baf2-9bb03964fa3e", - "start": { - "$date": "2021-06-11T03:21:16.000Z" - }, - "end": { - "$date": "2021-06-11T03:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "270f340d-e34d-4dd1-8ea8-1441a635529c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T03:45:52.000Z" - }, - "end": { - "$date": "2021-06-11T04:06:02.000Z" - }, - "events": [ - { - "uuid": "bf28f052-347e-4ba1-8d0e-c3511b72ba84", - "start": { - "$date": "2021-06-11T03:45:52.000Z" - }, - "end": { - "$date": "2021-06-11T04:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b461e8e-97f4-4932-8ce9-7fce11ebbdfb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-11T03:46:12.000Z" - }, - "end": { - "$date": "2021-06-11T04:05:51.000Z" - }, - "events": [ - { - "uuid": "93157d5e-271d-419a-81ef-93912914e574", - "start": { - "$date": "2021-06-11T03:46:12.000Z" - }, - "end": { - "$date": "2021-06-11T04:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b561b4a3-9991-4dd2-a680-a1b437f8875c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T03:45:44.000Z" - }, - "end": { - "$date": "2021-06-11T04:05:54.000Z" - }, - "events": [ - { - "uuid": "da62248e-81b0-4bcc-8357-07fd86f80b3c", - "start": { - "$date": "2021-06-11T03:45:44.000Z" - }, - "end": { - "$date": "2021-06-11T04:05:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd380b33-98c0-4a29-8af6-cbf8da521286", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T03:45:41.000Z" - }, - "end": { - "$date": "2021-06-11T04:05:52.000Z" - }, - "events": [ - { - "uuid": "3f786047-b590-4a9a-b09a-4cba6975ae30", - "start": { - "$date": "2021-06-11T03:45:41.000Z" - }, - "end": { - "$date": "2021-06-11T04:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "74ec0e74-fbee-411c-9e9a-2a1842ae235f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-11T03:58:10.000Z" - }, - "end": { - "$date": "2021-06-11T06:15:57.000Z" - }, - "events": [ - { - "uuid": "90458d13-3f38-4ecd-850c-cd1bf7098c2e", - "start": { - "$date": "2021-06-11T03:58:10.000Z" - }, - "end": { - "$date": "2021-06-11T06:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d9abe7e-d6dd-4991-a9b7-4dd50b5cd720", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T04:10:53.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:42.000Z" - }, - "events": [ - { - "uuid": "f66f6fd1-22eb-4785-a6c4-6dcf73a0bd5e", - "start": { - "$date": "2021-06-11T04:10:53.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d736d180-4cd7-4710-b94b-60ae8bde33d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T04:10:42.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:32.000Z" - }, - "events": [ - { - "uuid": "2390475d-cc93-4536-8186-1955ce9b9b78", - "start": { - "$date": "2021-06-11T04:10:42.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67272f7f-9756-444c-8c59-c647e762614b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-11T04:11:39.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:43.000Z" - }, - "events": [ - { - "uuid": "a4b7339d-4f83-4537-9d59-6bc3cac24fde", - "start": { - "$date": "2021-06-11T04:11:39.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4957e4de-fc87-4fd7-8566-28c0c2c83868", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T04:10:45.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:35.000Z" - }, - "events": [ - { - "uuid": "19e30733-68e5-4535-8656-55bf3e42e3cf", - "start": { - "$date": "2021-06-11T04:10:45.000Z" - }, - "end": { - "$date": "2021-06-11T04:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e655abb5-5380-457d-917e-e5d80534cc4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-11T04:31:10.000Z" - }, - "end": { - "$date": "2021-06-11T04:43:44.000Z" - }, - "events": [ - { - "uuid": "2af3c402-4ea6-4048-b866-54dc80a86986", - "start": { - "$date": "2021-06-11T04:31:10.000Z" - }, - "end": { - "$date": "2021-06-11T04:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d88bf57-31da-4f90-8e5b-b38ce10fdffa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T04:32:31.000Z" - }, - "end": { - "$date": "2021-06-11T04:43:36.000Z" - }, - "events": [ - { - "uuid": "102a4f6f-3641-44f7-9a2f-7da0115e6d0a", - "start": { - "$date": "2021-06-11T04:32:31.000Z" - }, - "end": { - "$date": "2021-06-11T04:43:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5fffa8a7-03a1-4756-8532-3107f4f87b4b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-11T04:31:55.000Z" - }, - "end": { - "$date": "2021-06-11T04:43:44.000Z" - }, - "events": [ - { - "uuid": "8fbc1d6d-3339-4891-81b7-54de60948464", - "start": { - "$date": "2021-06-11T04:31:55.000Z" - }, - "end": { - "$date": "2021-06-11T04:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b44ed2e8-a06e-4cfe-bfae-8e732e9fc927", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-11T04:53:32.000Z" - }, - "end": { - "$date": "2021-06-11T07:58:19.000Z" - }, - "events": [ - { - "uuid": "21f3d0b7-e8d8-4923-9bfe-c291bc22bcc8", - "start": { - "$date": "2021-06-11T04:53:32.000Z" - }, - "end": { - "$date": "2021-06-11T07:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cc417b6b-1bca-4a5b-9663-e45e3b4de1fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-11T05:07:35.000Z" - }, - "end": { - "$date": "2021-06-11T06:16:03.000Z" - }, - "events": [ - { - "uuid": "e8c3b3a6-430b-400c-a5d4-11f254afbc21", - "start": { - "$date": "2021-06-11T05:07:35.000Z" - }, - "end": { - "$date": "2021-06-11T06:16:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdba0320-0261-4656-857b-0facc225514a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-11T05:35:21.000Z" - }, - "end": { - "$date": "2021-06-11T05:52:37.000Z" - }, - "events": [ - { - "uuid": "93be6302-b785-4955-9a8d-75506adfd52e", - "start": { - "$date": "2021-06-11T05:35:21.000Z" - }, - "end": { - "$date": "2021-06-11T05:52:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84bca8c2-e3b3-459b-a149-68a437b02405", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-11T05:53:13.000Z" - }, - "end": { - "$date": "2021-06-11T05:54:40.000Z" - }, - "events": [ - { - "uuid": "80f6a2db-022e-4d17-9666-c89eda0c6441", - "start": { - "$date": "2021-06-11T05:53:13.000Z" - }, - "end": { - "$date": "2021-06-11T05:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ad18385-4db3-4d69-8de2-ca75567499f0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-11T05:54:42.000Z" - }, - "end": { - "$date": "2021-06-11T07:58:26.000Z" - }, - "events": [ - { - "uuid": "f25d6ed5-514d-4807-bd4d-d492831b8f93", - "start": { - "$date": "2021-06-11T05:54:42.000Z" - }, - "end": { - "$date": "2021-06-11T07:58:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9a458d8-902f-4ca6-8f47-ce0c9e08d56e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-11T06:01:02.000Z" - }, - "end": { - "$date": "2021-06-11T06:34:53.000Z" - }, - "events": [ - { - "uuid": "e8f37883-3255-4a6f-bbfa-842c9d47054a", - "start": { - "$date": "2021-06-11T06:01:02.000Z" - }, - "end": { - "$date": "2021-06-11T06:34:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12590e43-eb6d-4415-9e32-c9b34fe1919b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-11T06:40:08.000Z" - }, - "end": { - "$date": "2021-06-11T06:59:32.000Z" - }, - "events": [ - { - "uuid": "4bb650cf-ce27-4e87-8612-fc04cf271dd3", - "start": { - "$date": "2021-06-11T06:40:08.000Z" - }, - "end": { - "$date": "2021-06-11T06:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "854091d7-ab58-43ee-b2a3-a3a3c648f3d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-11T07:38:32.000Z" - }, - "end": { - "$date": "2021-06-11T10:45:00.000Z" - }, - "events": [ - { - "uuid": "ce30a5bb-5b97-4955-a4d0-7b9b17fe689f", - "start": { - "$date": "2021-06-11T07:38:32.000Z" - }, - "end": { - "$date": "2021-06-11T10:45:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "57557699-fc50-46ff-86d2-519d13bd6944", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-11T13:47:14.000Z" - }, - "end": { - "$date": "2021-06-11T14:53:20.000Z" - }, - "events": [ - { - "uuid": "caff4471-b090-47f0-8ee7-98a9c728816b", - "start": { - "$date": "2021-06-11T13:47:14.000Z" - }, - "end": { - "$date": "2021-06-11T14:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c633d11c-9328-44c2-803f-f1bc55df7018", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-11T14:12:57.000Z" - }, - "end": { - "$date": "2021-06-11T14:46:33.000Z" - }, - "events": [ - { - "uuid": "a1cb8b00-470e-497a-ab41-f81f93af9bcd", - "start": { - "$date": "2021-06-11T14:12:57.000Z" - }, - "end": { - "$date": "2021-06-11T14:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "f8a3115e-ef11-4060-a3e1-cd9c7c68a350", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-11T14:13:24.000Z" - }, - "end": { - "$date": "2021-06-11T14:14:26.000Z" - }, - "events": [ - { - "uuid": "21d5d2d9-1fca-4ca3-b211-f6c6c8cdc5a2", - "start": { - "$date": "2021-06-11T14:13:24.000Z" - }, - "end": { - "$date": "2021-06-11T14:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "eb475001-48f8-4f5d-b663-d3120fb76691", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-11T14:47:23.000Z" - }, - "end": { - "$date": "2021-06-11T15:07:34.000Z" - }, - "events": [ - { - "uuid": "41e218c3-495e-49e9-9794-6f7e378c7d6a", - "start": { - "$date": "2021-06-11T14:47:23.000Z" - }, - "end": { - "$date": "2021-06-11T15:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ca4b5d4a-aab4-4788-87ca-256cb3178c43", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T15:56:41.000Z" - }, - "end": { - "$date": "2021-06-11T16:35:26.000Z" - }, - "events": [ - { - "uuid": "7fcb67ae-ed26-4c0c-be5a-06cf93e59648", - "start": { - "$date": "2021-06-11T15:56:41.000Z" - }, - "end": { - "$date": "2021-06-11T16:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f0fe4deb-ff7a-4052-be64-e76fea8d2c79", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-11T16:42:35.000Z" - }, - "end": { - "$date": "2021-06-11T17:16:11.000Z" - }, - "events": [ - { - "uuid": "f1a20c15-81b4-4c87-8b8b-8af918970e00", - "start": { - "$date": "2021-06-11T16:42:35.000Z" - }, - "end": { - "$date": "2021-06-11T17:16:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "28842c97-cb3e-4501-97f0-77e5eb15a246", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T16:48:23.000Z" - }, - "end": { - "$date": "2021-06-11T17:50:07.000Z" - }, - "events": [ - { - "uuid": "488dbb97-22ec-4bb3-8d76-1eb5282b16c4", - "start": { - "$date": "2021-06-11T16:48:23.000Z" - }, - "end": { - "$date": "2021-06-11T17:50:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "59e48727-975c-4ed8-bc96-17d809ad0174", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-11T18:00:33.000Z" - }, - "end": { - "$date": "2021-06-11T19:17:14.000Z" - }, - "events": [ - { - "uuid": "484eb404-afa0-4b1b-b5ca-c5a78f953a2e", - "start": { - "$date": "2021-06-11T18:00:33.000Z" - }, - "end": { - "$date": "2021-06-11T19:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "87d588ff-adfe-4d65-87db-91953e3e0fb1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-11T19:06:42.000Z" - }, - "end": { - "$date": "2021-06-11T19:20:46.000Z" - }, - "events": [ - { - "uuid": "812c192e-1c64-491c-9bb8-726d4e0ec580", - "start": { - "$date": "2021-06-11T19:06:42.000Z" - }, - "end": { - "$date": "2021-06-11T19:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "25576d76-ccc7-41eb-b67c-dd993ad61e8a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-11T19:33:08.000Z" - }, - "end": { - "$date": "2021-06-11T20:36:36.000Z" - }, - "events": [ - { - "uuid": "9725519a-9e2f-45a9-952e-2b3ab7f2bcf9", - "start": { - "$date": "2021-06-11T19:33:08.000Z" - }, - "end": { - "$date": "2021-06-11T20:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a46c4cc8-3642-47df-9ff1-933a9f318749", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-11T19:54:09.000Z" - }, - "end": { - "$date": "2021-06-12T05:54:59.000Z" - }, - "events": [ - { - "uuid": "5068dff2-49fd-4f79-881a-653a04dbcdd8", - "start": { - "$date": "2021-06-11T19:54:09.000Z" - }, - "end": { - "$date": "2021-06-11T23:24:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ce6c8c7-6fb2-4d92-be3a-a1418b9a4399", - "start": { - "$date": "2021-06-11T23:24:09.000Z" - }, - "end": { - "$date": "2021-06-11T23:29:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d835ee81-42f2-4fb5-b6f6-406610acd5cc", - "start": { - "$date": "2021-06-11T23:29:09.000Z" - }, - "end": { - "$date": "2021-06-11T23:39:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "204ec569-4451-4989-aeff-e93f0602b867", - "start": { - "$date": "2021-06-11T23:39:09.000Z" - }, - "end": { - "$date": "2021-06-11T23:48:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69d22a1f-70df-49ff-a1f9-aa7852a4ce83", - "start": { - "$date": "2021-06-11T23:48:09.000Z" - }, - "end": { - "$date": "2021-06-12T00:30:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22abaef9-712a-4331-9968-9cea563118c6", - "start": { - "$date": "2021-06-12T00:30:09.000Z" - }, - "end": { - "$date": "2021-06-12T00:35:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "390ff19f-0ef9-4014-80a0-492aa0572a60", - "start": { - "$date": "2021-06-12T00:35:09.000Z" - }, - "end": { - "$date": "2021-06-12T00:45:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "761e39ca-bbd8-47c2-b2e4-da06049ef085", - "start": { - "$date": "2021-06-12T00:45:09.000Z" - }, - "end": { - "$date": "2021-06-12T00:46:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "671205bb-29e2-4ee5-b94d-b78069e0438d", - "start": { - "$date": "2021-06-12T00:46:09.000Z" - }, - "end": { - "$date": "2021-06-12T05:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "585c5705-085d-4c10-a9a7-b883b3f0c357", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-11T20:47:33.000Z" - }, - "end": { - "$date": "2021-06-11T20:50:22.000Z" - }, - "events": [ - { - "uuid": "74a0e53f-6ed6-4e7b-80d8-657e2db6a458", - "start": { - "$date": "2021-06-11T20:47:33.000Z" - }, - "end": { - "$date": "2021-06-11T20:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "dbf55d55-2dff-40ea-a50d-16e45c24974f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-11T20:51:13.000Z" - }, - "end": { - "$date": "2021-06-11T21:02:03.000Z" - }, - "events": [ - { - "uuid": "30248f0b-863e-4544-a09f-d3700c6082aa", - "start": { - "$date": "2021-06-11T20:51:13.000Z" - }, - "end": { - "$date": "2021-06-11T21:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "393af2fa-a38f-4b36-8d1f-9fe1d5ea4d96", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-11T22:13:45.000Z" - }, - "end": { - "$date": "2021-06-12T00:01:38.000Z" - }, - "events": [ - { - "uuid": "543a89f9-09f4-49b9-a6e3-4ce05f95e5b5", - "start": { - "$date": "2021-06-11T22:13:45.000Z" - }, - "end": { - "$date": "2021-06-11T22:24:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed94d5fa-f5b8-4702-9d4c-64c18ed023f3", - "start": { - "$date": "2021-06-11T22:24:45.000Z" - }, - "end": { - "$date": "2021-06-11T22:25:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "952925d6-fb69-4328-a146-eb3ec9f6f28f", - "start": { - "$date": "2021-06-11T22:25:45.000Z" - }, - "end": { - "$date": "2021-06-12T00:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "711dc856-6c6c-4ed9-b1a0-fe393238fbdd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-11T23:32:01.000Z" - }, - "end": { - "$date": "2021-06-12T01:26:31.000Z" - }, - "events": [ - { - "uuid": "2a2b0a5f-62f7-4bcc-b09b-f4294f0b5e19", - "start": { - "$date": "2021-06-11T23:32:01.000Z" - }, - "end": { - "$date": "2021-06-12T01:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "67c9a4d0-1bca-422f-bf2a-40f556927213", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-12T00:02:28.000Z" - }, - "end": { - "$date": "2021-06-12T00:58:51.000Z" - }, - "events": [ - { - "uuid": "e7bba99a-eabf-4cc0-a79b-ec1c7c2a67e6", - "start": { - "$date": "2021-06-12T00:02:28.000Z" - }, - "end": { - "$date": "2021-06-12T00:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e749cf44-f943-4246-b055-3aa980bdb056", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T00:24:21.000Z" - }, - "end": { - "$date": "2021-06-12T01:01:27.000Z" - }, - "events": [ - { - "uuid": "24970c30-66fe-4cea-b99b-93a2c8eba006", - "start": { - "$date": "2021-06-12T00:24:21.000Z" - }, - "end": { - "$date": "2021-06-12T01:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "677cabdd-9f60-4cb6-b2dd-9b7beb4ac0e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T00:49:29.000Z" - }, - "end": { - "$date": "2021-06-12T01:04:15.000Z" - }, - "events": [ - { - "uuid": "c3598547-4a20-4a43-8258-7b16a2ee48e0", - "start": { - "$date": "2021-06-12T00:49:29.000Z" - }, - "end": { - "$date": "2021-06-12T01:04:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ef071ef5-927c-40ac-b138-3ac41c31d05c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-12T00:46:42.000Z" - }, - "end": { - "$date": "2021-06-12T03:17:59.000Z" - }, - "events": [ - { - "uuid": "d4983787-1242-4afa-b901-80e57b0801e6", - "start": { - "$date": "2021-06-12T00:46:42.000Z" - }, - "end": { - "$date": "2021-06-12T01:19:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "520780ae-1127-4ebe-a22d-c2729cde3157", - "start": { - "$date": "2021-06-12T01:19:42.000Z" - }, - "end": { - "$date": "2021-06-12T01:45:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9fdd797e-ed84-4138-8fcc-7d54ad346e66", - "start": { - "$date": "2021-06-12T01:45:42.000Z" - }, - "end": { - "$date": "2021-06-12T02:04:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e580e20b-d95e-4d54-8277-740f33242f97", - "start": { - "$date": "2021-06-12T02:04:42.000Z" - }, - "end": { - "$date": "2021-06-12T02:05:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dd7d070a-d353-4308-a9bd-3f926dcf7728", - "start": { - "$date": "2021-06-12T02:05:42.000Z" - }, - "end": { - "$date": "2021-06-12T02:22:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d9782e0-dca6-464d-94b4-28fa8b13ddc3", - "start": { - "$date": "2021-06-12T02:22:42.000Z" - }, - "end": { - "$date": "2021-06-12T02:39:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "35311254-fc8e-449d-b6a2-6538934e6b6b", - "start": { - "$date": "2021-06-12T02:39:42.000Z" - }, - "end": { - "$date": "2021-06-12T02:53:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0215ca8c-ac94-4fff-acc7-52e4f76c1ae7", - "start": { - "$date": "2021-06-12T02:53:42.000Z" - }, - "end": { - "$date": "2021-06-12T03:13:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "acbd7f21-8429-4961-b49c-3347b9ecd3cf", - "start": { - "$date": "2021-06-12T03:13:42.000Z" - }, - "end": { - "$date": "2021-06-12T03:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "65dfe80e-f418-4a26-af47-bbde3bf09280", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-12T00:59:07.000Z" - }, - "end": { - "$date": "2021-06-12T01:18:47.000Z" - }, - "events": [ - { - "uuid": "5ac11205-e6aa-4faa-8c56-53bf18e42d5c", - "start": { - "$date": "2021-06-12T00:59:07.000Z" - }, - "end": { - "$date": "2021-06-12T01:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "38bfa758-17f1-436c-b3b2-1204c3e45c70", - "uuid": "905066d1-cb1f-4bda-9294-6c61567bc840", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T01:05:50.000Z" - }, - "end": { - "$date": "2021-06-12T02:05:26.000Z" - }, - "events": [ - { - "uuid": "02eb4014-30b8-4efb-917d-74d4f4940879", - "start": { - "$date": "2021-06-12T01:05:50.000Z" - }, - "end": { - "$date": "2021-06-12T02:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82d94203-8657-4587-9040-1ebc4cfe112b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T01:36:22.000Z" - }, - "end": { - "$date": "2021-06-12T02:09:20.000Z" - }, - "events": [ - { - "uuid": "e447ab8b-1fd1-4613-84a4-dc73d0c06d55", - "start": { - "$date": "2021-06-12T01:36:22.000Z" - }, - "end": { - "$date": "2021-06-12T02:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c056897-b024-40cc-824d-53fc5ac555da", - "uuid": "c117e149-764f-4e59-8979-b7c2451a55af", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-12T01:53:29.000Z" - }, - "end": { - "$date": "2021-06-12T03:06:22.000Z" - }, - "events": [ - { - "uuid": "7d14f03a-bb23-4e7d-9aec-e2cb4b7afe9e", - "start": { - "$date": "2021-06-12T01:53:29.000Z" - }, - "end": { - "$date": "2021-06-12T03:02:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b89984f-65b3-4682-b5c2-1bb55e27255b", - "start": { - "$date": "2021-06-12T03:02:29.000Z" - }, - "end": { - "$date": "2021-06-12T03:06:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9b432690-4407-4f27-a0fc-5594342401b6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-12T02:13:34.000Z" - }, - "end": { - "$date": "2021-06-12T06:25:55.000Z" - }, - "events": [ - { - "uuid": "720ac93f-2b41-449b-b4bb-7e5f65d62d7b", - "start": { - "$date": "2021-06-12T02:13:34.000Z" - }, - "end": { - "$date": "2021-06-12T06:25:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e6ebeef6-0606-4e29-b748-c0dcbc04da99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T02:23:45.000Z" - }, - "end": { - "$date": "2021-06-12T02:44:35.000Z" - }, - "events": [ - { - "uuid": "63c710dc-1615-438b-a39d-7894758601d5", - "start": { - "$date": "2021-06-12T02:23:45.000Z" - }, - "end": { - "$date": "2021-06-12T02:44:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1c15784b-2d92-48d4-a53f-68b7761016ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-12T02:33:05.000Z" - }, - "end": { - "$date": "2021-06-12T06:23:21.000Z" - }, - "events": [ - { - "uuid": "b78748cd-d28e-496d-91d5-6a1d4f0cda2a", - "start": { - "$date": "2021-06-12T02:33:05.000Z" - }, - "end": { - "$date": "2021-06-12T06:23:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "442f54ff-0430-4a68-81ec-17d158d00496", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T02:45:05.000Z" - }, - "end": { - "$date": "2021-06-12T04:18:13.000Z" - }, - "events": [ - { - "uuid": "131bf8d4-d372-4521-ae2d-b9173276640c", - "start": { - "$date": "2021-06-12T02:45:05.000Z" - }, - "end": { - "$date": "2021-06-12T04:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86fd7419-870c-4f47-a38a-0a0a239d7cfc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-12T03:06:42.000Z" - }, - "end": { - "$date": "2021-06-12T04:57:09.000Z" - }, - "events": [ - { - "uuid": "5c856d99-45cd-45c4-8018-45ec4c8de73b", - "start": { - "$date": "2021-06-12T03:06:42.000Z" - }, - "end": { - "$date": "2021-06-12T04:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2eddd98-0971-4cbb-9bb7-85e31a30b6fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-12T03:10:37.000Z" - }, - "end": { - "$date": "2021-06-12T04:57:09.000Z" - }, - "events": [ - { - "uuid": "2a056c82-326b-40eb-8343-97ad2e160a59", - "start": { - "$date": "2021-06-12T03:10:37.000Z" - }, - "end": { - "$date": "2021-06-12T04:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78ae3d0f-6698-455a-9e1c-e3ff663576b9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T03:50:51.000Z" - }, - "end": { - "$date": "2021-06-12T04:10:33.000Z" - }, - "events": [ - { - "uuid": "e3b0375c-3c3a-49a9-91de-64b58ee1bfdf", - "start": { - "$date": "2021-06-12T03:50:51.000Z" - }, - "end": { - "$date": "2021-06-12T04:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48e98964-3ea5-4456-a644-9f1b65002879", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T04:15:17.000Z" - }, - "end": { - "$date": "2021-06-12T04:27:51.000Z" - }, - "events": [ - { - "uuid": "c88a297a-bc81-4c43-92da-0fde48b8c839", - "start": { - "$date": "2021-06-12T04:15:17.000Z" - }, - "end": { - "$date": "2021-06-12T04:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ccee748-dd4c-4256-80ff-6566ac71c482", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T04:15:49.000Z" - }, - "end": { - "$date": "2021-06-12T04:27:52.000Z" - }, - "events": [ - { - "uuid": "97577619-fb86-4735-aa0f-9a45ab885316", - "start": { - "$date": "2021-06-12T04:15:49.000Z" - }, - "end": { - "$date": "2021-06-12T04:27:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c72133e-50ea-45ec-b126-5d1f6d74b633", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T04:33:38.000Z" - }, - "end": { - "$date": "2021-06-12T05:00:34.000Z" - }, - "events": [ - { - "uuid": "ae71cdd6-104c-4a82-9428-b08fdb1aac95", - "start": { - "$date": "2021-06-12T04:33:38.000Z" - }, - "end": { - "$date": "2021-06-12T05:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bac23e6-c309-4cfa-85b3-eb22509def82", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T04:33:40.000Z" - }, - "end": { - "$date": "2021-06-12T05:00:26.000Z" - }, - "events": [ - { - "uuid": "f4032569-a375-47fc-b789-cc0e2a5a8d91", - "start": { - "$date": "2021-06-12T04:33:40.000Z" - }, - "end": { - "$date": "2021-06-12T05:00:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "20c13f85-1fab-41da-9173-c0134da6b87e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-12T04:57:34.000Z" - }, - "end": { - "$date": "2021-06-12T05:21:46.000Z" - }, - "events": [ - { - "uuid": "a264ea0d-2000-40a3-b75b-8b357272edcf", - "start": { - "$date": "2021-06-12T04:57:34.000Z" - }, - "end": { - "$date": "2021-06-12T05:21:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "845d86c6-4aa2-4d4d-8689-958ca0af3950", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T05:04:45.000Z" - }, - "end": { - "$date": "2021-06-12T05:32:36.000Z" - }, - "events": [ - { - "uuid": "407c43a5-d7ec-4d03-b7f5-7c5e5800fc74", - "start": { - "$date": "2021-06-12T05:04:45.000Z" - }, - "end": { - "$date": "2021-06-12T05:32:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b669be37-20c0-45d1-a5a3-2b86ad98f0e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T05:04:51.000Z" - }, - "end": { - "$date": "2021-06-12T05:32:30.000Z" - }, - "events": [ - { - "uuid": "256e29cc-245d-4ac9-a920-2e825dcbd2e8", - "start": { - "$date": "2021-06-12T05:04:51.000Z" - }, - "end": { - "$date": "2021-06-12T05:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "38b8aa9b-32b4-4cfa-b2ef-c8ca4afb1051", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-12T05:29:12.000Z" - }, - "end": { - "$date": "2021-06-12T07:59:26.000Z" - }, - "events": [ - { - "uuid": "c43e4a87-c564-40ba-b100-b91e3d9b661a", - "start": { - "$date": "2021-06-12T05:29:12.000Z" - }, - "end": { - "$date": "2021-06-12T07:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a835430e-bb1b-446e-ac91-06e98a272341", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T05:37:11.000Z" - }, - "end": { - "$date": "2021-06-12T06:21:53.000Z" - }, - "events": [ - { - "uuid": "79ffedf0-fa93-4917-8ef8-cfc837cdb473", - "start": { - "$date": "2021-06-12T05:37:11.000Z" - }, - "end": { - "$date": "2021-06-12T06:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8638adc2-e888-4e02-953b-c5fb3e111873", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T05:37:46.000Z" - }, - "end": { - "$date": "2021-06-12T06:21:52.000Z" - }, - "events": [ - { - "uuid": "dc071e3d-0519-4d95-8cd9-7ff9993dd650", - "start": { - "$date": "2021-06-12T05:37:46.000Z" - }, - "end": { - "$date": "2021-06-12T06:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d2527458-7a6d-41be-a4e9-3666c3979e11", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-12T05:55:14.000Z" - }, - "end": { - "$date": "2021-06-12T08:31:53.000Z" - }, - "events": [ - { - "uuid": "a98f1084-1904-4c78-93b6-03b3bbdfda5d", - "start": { - "$date": "2021-06-12T05:55:14.000Z" - }, - "end": { - "$date": "2021-06-12T08:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8efe7097-6a15-485a-8f85-909c9e3fbcd1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T06:26:14.000Z" - }, - "end": { - "$date": "2021-06-12T06:44:52.000Z" - }, - "events": [ - { - "uuid": "addae983-d1f0-45ab-9c10-8860f08e528f", - "start": { - "$date": "2021-06-12T06:26:14.000Z" - }, - "end": { - "$date": "2021-06-12T06:44:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11e13a36-590d-40a3-918a-162165d4da3d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T06:26:17.000Z" - }, - "end": { - "$date": "2021-06-12T06:44:33.000Z" - }, - "events": [ - { - "uuid": "6c15656d-7f18-4a59-a39c-61641d7a35c1", - "start": { - "$date": "2021-06-12T06:26:17.000Z" - }, - "end": { - "$date": "2021-06-12T06:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5377eeee-f3a2-4949-81e3-ccb034a50cdb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-12T06:28:45.000Z" - }, - "end": { - "$date": "2021-06-12T06:59:21.000Z" - }, - "events": [ - { - "uuid": "c8c9a1a7-4fdf-4efb-b88c-d80c74c78ea9", - "start": { - "$date": "2021-06-12T06:28:45.000Z" - }, - "end": { - "$date": "2021-06-12T06:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "558f4c6d-99ef-4461-a80f-f1b89114ee5e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-12T06:59:35.000Z" - }, - "end": { - "$date": "2021-06-12T09:18:35.000Z" - }, - "events": [ - { - "uuid": "ad6ff7a0-53af-4bec-8eef-1a2998a73199", - "start": { - "$date": "2021-06-12T06:59:35.000Z" - }, - "end": { - "$date": "2021-06-12T09:18:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d4f71148-8c7f-46ef-9f21-e9f58c6f3b67", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-12T07:00:48.000Z" - }, - "end": { - "$date": "2021-06-12T09:19:05.000Z" - }, - "events": [ - { - "uuid": "fab68404-a543-45e4-991a-faf06e6dcaf8", - "start": { - "$date": "2021-06-12T07:00:48.000Z" - }, - "end": { - "$date": "2021-06-12T09:19:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "462abd89-1b4c-4ed2-8e8e-ddc0886be136", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T08:02:49.000Z" - }, - "end": { - "$date": "2021-06-12T08:33:50.000Z" - }, - "events": [ - { - "uuid": "4680bdd4-6ccc-4587-b818-143d2be43a8d", - "start": { - "$date": "2021-06-12T08:02:49.000Z" - }, - "end": { - "$date": "2021-06-12T08:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18f06f4b-b503-4303-99a1-8da1ea1c9050", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-12T08:46:26.000Z" - }, - "end": { - "$date": "2021-06-12T09:19:22.000Z" - }, - "events": [ - { - "uuid": "fbbfb0a2-472c-4c59-9b87-33030f0f4c56", - "start": { - "$date": "2021-06-12T08:46:26.000Z" - }, - "end": { - "$date": "2021-06-12T09:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "529b5225-0746-4f42-89cf-41d6924b70c9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-12T15:47:49.000Z" - }, - "end": { - "$date": "2021-06-12T16:26:14.000Z" - }, - "events": [ - { - "uuid": "c99c2deb-4583-42cf-b8af-59935cbf64b0", - "start": { - "$date": "2021-06-12T15:47:49.000Z" - }, - "end": { - "$date": "2021-06-12T16:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32930816-567b-4ecd-bf52-7aa66b8fa4ad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T15:53:37.000Z" - }, - "end": { - "$date": "2021-06-12T16:23:54.000Z" - }, - "events": [ - { - "uuid": "fa77c295-e95a-460d-ab9c-37dc35da48f2", - "start": { - "$date": "2021-06-12T15:53:37.000Z" - }, - "end": { - "$date": "2021-06-12T16:23:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "a78e8636-36a0-4529-ae64-2dfffbdbd073", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T17:00:39.000Z" - }, - "end": { - "$date": "2021-06-12T18:04:25.000Z" - }, - "events": [ - { - "uuid": "472aba4d-2140-4c23-b1df-987ff595ae55", - "start": { - "$date": "2021-06-12T17:00:39.000Z" - }, - "end": { - "$date": "2021-06-12T18:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "67eeea12-cc3f-4b77-b899-01cd16a227c0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-12T17:49:34.000Z" - }, - "end": { - "$date": "2021-06-12T21:53:29.000Z" - }, - "events": [ - { - "uuid": "31675bfa-75e7-419d-aa46-4594f8e6a474", - "start": { - "$date": "2021-06-12T17:49:34.000Z" - }, - "end": { - "$date": "2021-06-12T21:49:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8db18ea-ce40-4287-90f7-5c754a5ff8f8", - "start": { - "$date": "2021-06-12T21:49:34.000Z" - }, - "end": { - "$date": "2021-06-12T21:50:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "376e2137-79a6-434f-96d2-ef5d20e7d92b", - "start": { - "$date": "2021-06-12T21:50:34.000Z" - }, - "end": { - "$date": "2021-06-12T21:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "9f5d72fc-3b8f-4ec2-baab-f78500fe0882", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T18:05:30.000Z" - }, - "end": { - "$date": "2021-06-12T21:10:35.000Z" - }, - "events": [ - { - "uuid": "b952db97-c244-417b-be86-7e6e9f740d0d", - "start": { - "$date": "2021-06-12T18:05:30.000Z" - }, - "end": { - "$date": "2021-06-12T19:46:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddf93f44-963e-415c-a501-f9dadffbef05", - "start": { - "$date": "2021-06-12T19:46:30.000Z" - }, - "end": { - "$date": "2021-06-12T20:07:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c28af6c0-f84b-4e8a-957d-a53104c7d698", - "start": { - "$date": "2021-06-12T20:07:30.000Z" - }, - "end": { - "$date": "2021-06-12T21:10:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fc828ea-9d08-4944-8d16-cff676a4db03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T23:15:01.000Z" - }, - "end": { - "$date": "2021-06-12T23:15:08.000Z" - }, - "events": [ - { - "uuid": "b361801e-05f1-4821-8bf9-9b76144b3ed0", - "start": { - "$date": "2021-06-12T23:15:01.000Z" - }, - "end": { - "$date": "2021-06-12T23:33:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19e5254b-5844-4cb3-8db4-a7212f63bc40", - "start": { - "$date": "2021-06-12T23:33:01.000Z" - }, - "end": { - "$date": "2021-06-12T23:35:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4c7e7c98-655a-4686-bd6c-b930ce3ad5c9", - "start": { - "$date": "2021-06-12T23:35:01.000Z" - }, - "end": { - "$date": "2021-06-12T23:51:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6d0cb96-288d-445f-b837-40f1ad9147cc", - "start": { - "$date": "2021-06-12T23:51:01.000Z" - }, - "end": { - "$date": "2021-06-12T23:52:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e34bd60-caa3-4b4b-8552-fab1b5c594ab", - "start": { - "$date": "2021-06-12T23:52:01.000Z" - }, - "end": { - "$date": "2021-06-13T00:11:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d24da2ab-3312-457f-8025-146c358dd38e", - "start": { - "$date": "2021-06-13T00:11:01.000Z" - }, - "end": { - "$date": "2021-06-13T01:00:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5f86603-8f88-4081-baf9-de33ff337aba", - "start": { - "$date": "2021-06-13T01:00:01.000Z" - }, - "end": { - "$date": "2021-06-13T01:02:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "430d136d-844b-4312-9447-941631683f06", - "start": { - "$date": "2021-06-13T01:02:01.000Z" - }, - "end": { - "$date": "2021-06-13T01:46:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41751fb9-e47d-4182-b318-5794ce72b50d", - "start": { - "$date": "2021-06-13T01:46:01.000Z" - }, - "end": { - "$date": "2021-06-13T02:08:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "229babfa-9097-4a00-a8c0-111169d0e127", - "start": { - "$date": "2021-06-13T02:08:01.000Z" - }, - "end": { - "$date": "2021-06-13T02:12:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7088e7b8-b8c4-4f97-8e30-62eca12915b3", - "start": { - "$date": "2021-06-13T02:12:01.000Z" - }, - "end": { - "$date": "2021-06-13T02:16:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1cda65d0-b62b-4527-8fae-bc63caa421d2", - "start": { - "$date": "2021-06-13T02:16:01.000Z" - }, - "end": { - "$date": "2021-06-13T02:38:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "520e5bd4-89a2-4833-a796-a1266d12773b", - "start": { - "$date": "2021-06-13T02:38:01.000Z" - }, - "end": { - "$date": "2021-06-13T02:42:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4817ae3e-76fc-40c8-8e6b-f3d612ef7ecf", - "start": { - "$date": "2021-06-13T02:42:01.000Z" - }, - "end": { - "$date": "2021-06-13T03:29:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd4d4f28-6075-4709-8c79-f9a859cc8bb3", - "start": { - "$date": "2021-06-13T03:29:01.000Z" - }, - "end": { - "$date": "2021-06-12T23:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "18aedfb3-7353-4079-be37-3bd595d305d8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-12T19:20:06.000Z" - }, - "end": { - "$date": "2021-06-12T19:21:17.000Z" - }, - "events": [ - { - "uuid": "f60c8815-f1c8-4c1b-9f05-341c789140c9", - "start": { - "$date": "2021-06-12T19:20:06.000Z" - }, - "end": { - "$date": "2021-06-12T19:21:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "c99ae86a-0cf8-4998-b732-78c0c9f86109", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-12T19:21:26.000Z" - }, - "end": { - "$date": "2021-06-12T19:23:37.000Z" - }, - "events": [ - { - "uuid": "9bdccd16-e9b9-4e1a-a5c7-a7ba50ea3687", - "start": { - "$date": "2021-06-12T19:21:26.000Z" - }, - "end": { - "$date": "2021-06-12T19:23:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "c47b4199-5248-4c31-9763-75b552f27610", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-12T19:24:01.000Z" - }, - "end": { - "$date": "2021-06-12T20:50:07.000Z" - }, - "events": [ - { - "uuid": "1b138e33-010e-4938-a98b-e812b81c0022", - "start": { - "$date": "2021-06-12T19:24:01.000Z" - }, - "end": { - "$date": "2021-06-12T20:50:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f67a1b3-c222-4c36-b5d7-507df70e8730", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-12T21:01:17.000Z" - }, - "end": { - "$date": "2021-06-12T21:21:53.000Z" - }, - "events": [ - { - "uuid": "2995e5fc-dbac-4963-9583-6d9b94ce9767", - "start": { - "$date": "2021-06-12T21:01:17.000Z" - }, - "end": { - "$date": "2021-06-12T21:21:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "38cd6c4d-74a5-4d19-a6d2-eb478fd8cf8c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-12T20:55:16.000Z" - }, - "end": { - "$date": "2021-06-13T01:57:30.000Z" - }, - "events": [ - { - "uuid": "12bbe6af-f3f1-459c-9890-ac9421ca908e", - "start": { - "$date": "2021-06-12T20:55:16.000Z" - }, - "end": { - "$date": "2021-06-12T21:25:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e63968b1-effe-4587-896d-61d441bde4b1", - "start": { - "$date": "2021-06-12T21:25:16.000Z" - }, - "end": { - "$date": "2021-06-12T22:04:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fb431119-b2b9-4ca8-86f2-a76eb4798875", - "start": { - "$date": "2021-06-12T22:04:16.000Z" - }, - "end": { - "$date": "2021-06-13T01:57:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "30653e4f-bc7e-40b0-a974-9c2b98b71262", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-12T21:11:15.000Z" - }, - "end": { - "$date": "2021-06-12T22:39:51.000Z" - }, - "events": [ - { - "uuid": "b66c9f61-0d8c-464d-8003-1461ac62adde", - "start": { - "$date": "2021-06-12T21:11:15.000Z" - }, - "end": { - "$date": "2021-06-12T22:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "646a5bd9-ee09-4835-b5e6-bce7fa3c5774", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-12T21:59:04.000Z" - }, - "end": { - "$date": "2021-06-12T21:59:16.000Z" - }, - "events": [ - { - "uuid": "3da62713-3ed6-4c06-a561-d66af04a5e9b", - "start": { - "$date": "2021-06-12T21:59:04.000Z" - }, - "end": { - "$date": "2021-06-12T21:59:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "cfd05b95-b360-439f-821f-0b6282c7b79f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-12T22:05:38.000Z" - }, - "end": { - "$date": "2021-06-12T22:36:20.000Z" - }, - "events": [ - { - "uuid": "0c677f35-d89b-4449-acd0-aa5ca8a68b6f", - "start": { - "$date": "2021-06-12T22:05:38.000Z" - }, - "end": { - "$date": "2021-06-12T22:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a25abd1e-d5fd-4eaa-b752-54fb00947eb7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-12T22:36:50.000Z" - }, - "end": { - "$date": "2021-06-12T22:41:56.000Z" - }, - "events": [ - { - "uuid": "ea840c7b-2ca0-4a48-bac9-4aa1ee665689", - "start": { - "$date": "2021-06-12T22:36:50.000Z" - }, - "end": { - "$date": "2021-06-12T22:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49ffcdef-8586-4419-b9b8-d491e877700f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-12T23:19:48.000Z" - }, - "end": { - "$date": "2021-06-12T23:36:16.000Z" - }, - "events": [ - { - "uuid": "8272c35c-38c8-4eb1-b7f2-cfb811c045e7", - "start": { - "$date": "2021-06-12T23:19:48.000Z" - }, - "end": { - "$date": "2021-06-12T23:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74f5e4ff-9944-4af2-9483-f2d9388eaeb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-13T00:35:15.000Z" - }, - "end": { - "$date": "2021-06-13T01:14:58.000Z" - }, - "events": [ - { - "uuid": "03975195-a544-43b9-ac47-744e84e6039f", - "start": { - "$date": "2021-06-13T00:35:15.000Z" - }, - "end": { - "$date": "2021-06-13T00:58:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46475912-2018-4090-a523-7581f762c8be", - "start": { - "$date": "2021-06-13T00:58:15.000Z" - }, - "end": { - "$date": "2021-06-13T01:31:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "231b2ebb-aa1d-481c-b7d7-5f2069aa470b", - "start": { - "$date": "2021-06-13T01:31:15.000Z" - }, - "end": { - "$date": "2021-06-13T01:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d7cbafae-f9b6-489d-855e-ea49562925b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-12T23:38:50.000Z" - }, - "end": { - "$date": "2021-06-13T00:19:54.000Z" - }, - "events": [ - { - "uuid": "6b27ec2a-52da-4703-ad28-503863835cec", - "start": { - "$date": "2021-06-12T23:38:50.000Z" - }, - "end": { - "$date": "2021-06-13T00:14:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb30ad18-58a4-4970-9291-49dafaca1e87", - "start": { - "$date": "2021-06-13T00:14:50.000Z" - }, - "end": { - "$date": "2021-06-13T00:18:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0214c95b-a7cc-4e71-851d-1cc5ac494795", - "start": { - "$date": "2021-06-13T00:18:50.000Z" - }, - "end": { - "$date": "2021-06-13T00:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "4490c3bb-4328-4ec1-801e-70cfa7894e66", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T00:19:59.000Z" - }, - "end": { - "$date": "2021-06-13T01:10:02.000Z" - }, - "events": [ - { - "uuid": "16fc2e94-9d8d-4b23-8c78-d1fa1f6bd5ba", - "start": { - "$date": "2021-06-13T00:19:59.000Z" - }, - "end": { - "$date": "2021-06-13T01:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c392c6a-a5ae-4cf5-bab1-5a60d8e2bc83", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T00:44:40.000Z" - }, - "end": { - "$date": "2021-06-13T01:03:23.000Z" - }, - "events": [ - { - "uuid": "4ae71b68-05ef-4cac-ba2d-aa016b0d0646", - "start": { - "$date": "2021-06-13T00:44:40.000Z" - }, - "end": { - "$date": "2021-06-13T01:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "23b13edd-1b7f-413b-9f86-f1ea7c73698e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-13T00:48:59.000Z" - }, - "end": { - "$date": "2021-06-13T02:28:42.000Z" - }, - "events": [ - { - "uuid": "afe30c7f-7a7b-4206-be40-c93748e73603", - "start": { - "$date": "2021-06-13T00:48:59.000Z" - }, - "end": { - "$date": "2021-06-13T02:28:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f076a6b2-b733-4bc4-b296-ea443a50da82", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-13T01:07:07.000Z" - }, - "end": { - "$date": "2021-06-13T01:44:29.000Z" - }, - "events": [ - { - "uuid": "ff4b27a1-a119-4a4b-81d9-980dc37911c3", - "start": { - "$date": "2021-06-13T01:07:07.000Z" - }, - "end": { - "$date": "2021-06-13T01:44:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "673a95e8-643f-41fd-9e4a-079931e32efd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T01:05:29.000Z" - }, - "end": { - "$date": "2021-06-13T01:06:44.000Z" - }, - "events": [ - { - "uuid": "38a91eaf-c2d0-48e6-999d-c8d2aeca6a71", - "start": { - "$date": "2021-06-13T01:05:29.000Z" - }, - "end": { - "$date": "2021-06-13T01:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58e477c8-e5d1-47a1-b15a-b7fd95f20d02", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-13T01:19:06.000Z" - }, - "end": { - "$date": "2021-06-13T01:51:20.000Z" - }, - "events": [ - { - "uuid": "22d946a4-6f02-464a-97a4-84cb6d95adae", - "start": { - "$date": "2021-06-13T01:19:06.000Z" - }, - "end": { - "$date": "2021-06-13T01:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0dd5446-f2c0-4953-a4d3-3e77e98644be", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-13T02:28:04.000Z" - }, - "end": { - "$date": "2021-06-13T02:29:15.000Z" - }, - "events": [ - { - "uuid": "b5e49276-c9dc-4511-b667-39cdd469ac62", - "start": { - "$date": "2021-06-13T02:28:04.000Z" - }, - "end": { - "$date": "2021-06-13T02:29:04.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "e9e451a5-ebd9-4a8f-92cd-66dd66eb2d70", - "start": { - "$date": "2021-06-13T02:29:04.000Z" - }, - "end": { - "$date": "2021-06-13T02:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd64c601-9b34-4fd3-abae-63e05314bb3b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T01:48:58.000Z" - }, - "end": { - "$date": "2021-06-13T04:42:21.000Z" - }, - "events": [ - { - "uuid": "10000d26-4ab7-428c-a2e4-b20dae8f508f", - "start": { - "$date": "2021-06-13T01:48:58.000Z" - }, - "end": { - "$date": "2021-06-13T04:42:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b4263f7-686d-4430-8cb0-34b2814b44b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-13T01:58:15.000Z" - }, - "end": { - "$date": "2021-06-13T02:28:08.000Z" - }, - "events": [ - { - "uuid": "287f7f03-386b-4220-9275-6b1431d19db6", - "start": { - "$date": "2021-06-13T01:58:15.000Z" - }, - "end": { - "$date": "2021-06-13T02:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "455b0c09-6eb0-4ed1-88d6-bcc0e069e5d0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-13T01:58:14.000Z" - }, - "end": { - "$date": "2021-06-13T02:28:00.000Z" - }, - "events": [ - { - "uuid": "0910329c-bee7-49f5-b747-83aeaf4ae713", - "start": { - "$date": "2021-06-13T01:58:14.000Z" - }, - "end": { - "$date": "2021-06-13T02:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "34b4e31b-c26d-4689-92a8-2c4fa40b60b9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-13T02:01:40.000Z" - }, - "end": { - "$date": "2021-06-13T06:38:38.000Z" - }, - "events": [ - { - "uuid": "53cac17d-f00a-422c-b036-c75a3bf72975", - "start": { - "$date": "2021-06-13T02:01:40.000Z" - }, - "end": { - "$date": "2021-06-13T06:38:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "09193f07-1ea0-44d1-a26e-dc3f28ab2bba", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-13T02:59:56.000Z" - }, - "end": { - "$date": "2021-06-13T04:31:17.000Z" - }, - "events": [ - { - "uuid": "538b9985-88bb-43ad-987f-ef7ac97e1eca", - "start": { - "$date": "2021-06-13T02:59:56.000Z" - }, - "end": { - "$date": "2021-06-13T04:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "747f4fdb-055a-40d9-95d3-54a646567c9b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-13T03:34:01.000Z" - }, - "end": { - "$date": "2021-06-13T04:47:41.000Z" - }, - "events": [ - { - "uuid": "eb2fecad-e9eb-40f8-85a5-f77173a9fa7e", - "start": { - "$date": "2021-06-13T03:34:01.000Z" - }, - "end": { - "$date": "2021-06-13T04:26:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64f186ed-4f78-4b39-a27b-04dd21bcb424", - "start": { - "$date": "2021-06-13T04:26:01.000Z" - }, - "end": { - "$date": "2021-06-13T04:32:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8aa6720-adee-4f51-aa12-5a70c402cb27", - "start": { - "$date": "2021-06-13T04:32:01.000Z" - }, - "end": { - "$date": "2021-06-13T04:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "6c61e37e-595a-4a79-aef2-580068e41b68", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-13T04:39:08.000Z" - }, - "end": { - "$date": "2021-06-13T07:03:16.000Z" - }, - "events": [ - { - "uuid": "054df110-f907-4589-96c9-b878dcc724b7", - "start": { - "$date": "2021-06-13T04:39:08.000Z" - }, - "end": { - "$date": "2021-06-13T07:03:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "3def4bdd-839c-4d04-9454-dc9fae4e392c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-13T04:39:47.000Z" - }, - "end": { - "$date": "2021-06-13T04:49:08.000Z" - }, - "events": [ - { - "uuid": "2afe2557-12c2-40f5-bb1d-f83ce006c489", - "start": { - "$date": "2021-06-13T04:39:47.000Z" - }, - "end": { - "$date": "2021-06-13T04:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "d7bd3214-c6cd-4efa-8ed6-4c27241a8313", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T04:43:11.000Z" - }, - "end": { - "$date": "2021-06-13T04:52:01.000Z" - }, - "events": [ - { - "uuid": "ca421e79-8c57-4c45-ac62-a76439792f40", - "start": { - "$date": "2021-06-13T04:43:11.000Z" - }, - "end": { - "$date": "2021-06-13T04:52:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "5587585a-6b91-4493-8338-4fb8c5f502e0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-13T04:49:43.000Z" - }, - "end": { - "$date": "2021-06-13T07:03:08.000Z" - }, - "events": [ - { - "uuid": "c0611851-05e4-48f1-8aae-e355e900099e", - "start": { - "$date": "2021-06-13T04:49:43.000Z" - }, - "end": { - "$date": "2021-06-13T07:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6baa55c1-8e5d-4b46-b267-a8a78d1df640", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T04:54:01.000Z" - }, - "end": { - "$date": "2021-06-13T05:28:45.000Z" - }, - "events": [ - { - "uuid": "e044e86f-6742-4a0f-a2a3-565a587ef5be", - "start": { - "$date": "2021-06-13T04:54:01.000Z" - }, - "end": { - "$date": "2021-06-13T05:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a43c9884-9338-4218-8db8-e88e37bea15e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-13T05:09:44.000Z" - }, - "end": { - "$date": "2021-06-13T05:54:29.000Z" - }, - "events": [ - { - "uuid": "50bcb860-d21d-4ada-a13e-0ddaf18ba42c", - "start": { - "$date": "2021-06-13T05:09:44.000Z" - }, - "end": { - "$date": "2021-06-13T05:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d1a45a21-f248-4e17-bba1-94752e91dc72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T05:49:13.000Z" - }, - "end": { - "$date": "2021-06-13T08:18:56.000Z" - }, - "events": [ - { - "uuid": "8c92c21d-b650-4337-9b45-5ba5128d50e0", - "start": { - "$date": "2021-06-13T05:49:13.000Z" - }, - "end": { - "$date": "2021-06-13T08:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9808dc33-fc05-45c4-b12d-13f753427677", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-13T06:00:26.000Z" - }, - "end": { - "$date": "2021-06-13T06:34:58.000Z" - }, - "events": [ - { - "uuid": "1d0861ae-144a-4173-a209-d8bf7f213532", - "start": { - "$date": "2021-06-13T06:00:26.000Z" - }, - "end": { - "$date": "2021-06-13T06:34:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ef5de58-223b-4f24-8aad-2dd69ef19811", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-13T06:00:15.000Z" - }, - "end": { - "$date": "2021-06-13T06:34:56.000Z" - }, - "events": [ - { - "uuid": "dc1d9ffb-364d-439a-a61b-c1db0fc40842", - "start": { - "$date": "2021-06-13T06:00:15.000Z" - }, - "end": { - "$date": "2021-06-13T06:34:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7ec19a4c-7d99-40e5-95ec-fe7d56747912", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-13T06:39:28.000Z" - }, - "end": { - "$date": "2021-06-13T09:27:43.000Z" - }, - "events": [ - { - "uuid": "1bea46a7-27b5-479f-b0bc-c0bf761eae97", - "start": { - "$date": "2021-06-13T06:39:28.000Z" - }, - "end": { - "$date": "2021-06-13T09:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8d1d2bd4-9101-4a37-9589-9a0d5533c96c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T07:00:25.000Z" - }, - "end": { - "$date": "2021-06-13T07:56:53.000Z" - }, - "events": [ - { - "uuid": "4450a348-1e1e-4798-b151-059b24224f68", - "start": { - "$date": "2021-06-13T07:00:25.000Z" - }, - "end": { - "$date": "2021-06-13T07:56:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "168e2b28-8519-4ac0-9a8b-7a1982a9611a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-13T07:34:23.000Z" - }, - "end": { - "$date": "2021-06-13T07:59:43.000Z" - }, - "events": [ - { - "uuid": "e69839be-9353-434e-ac5d-59ee481e1dea", - "start": { - "$date": "2021-06-13T07:34:23.000Z" - }, - "end": { - "$date": "2021-06-13T07:59:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ee350e1-acbb-4a95-b329-4613c35f21e4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-13T08:04:33.000Z" - }, - "end": { - "$date": "2021-06-13T08:25:08.000Z" - }, - "events": [ - { - "uuid": "346bf945-3803-4dda-8919-c1470b58f3aa", - "start": { - "$date": "2021-06-13T08:04:33.000Z" - }, - "end": { - "$date": "2021-06-13T08:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "cf9b552e-9add-493e-9e8f-9af12097ca49", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T08:12:50.000Z" - }, - "end": { - "$date": "2021-06-13T15:08:48.000Z" - }, - "events": [ - { - "uuid": "a5d7d272-fd3e-42e5-bfaf-be9b53cd980c", - "start": { - "$date": "2021-06-13T08:12:50.000Z" - }, - "end": { - "$date": "2021-06-13T09:10:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae7eb79c-5fc8-4b77-9236-64078a92c73a", - "start": { - "$date": "2021-06-13T09:10:50.000Z" - }, - "end": { - "$date": "2021-06-13T12:07:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36101b54-d0cf-4c11-9c7b-65cb4f9d1fb4", - "start": { - "$date": "2021-06-13T12:07:50.000Z" - }, - "end": { - "$date": "2021-06-13T12:21:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bab8b554-f4dc-45a2-9a8c-369b8571307c", - "start": { - "$date": "2021-06-13T12:21:50.000Z" - }, - "end": { - "$date": "2021-06-13T14:54:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d4530d09-31ea-41d6-bd66-15fe0b35e546", - "start": { - "$date": "2021-06-13T14:54:50.000Z" - }, - "end": { - "$date": "2021-06-13T15:04:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85fa4cad-e528-4bd3-8e5a-2a8ec19026e7", - "start": { - "$date": "2021-06-13T15:04:50.000Z" - }, - "end": { - "$date": "2021-06-13T15:08:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "230fc88a-b6d4-45c9-81c4-4e2dbdbe8b8b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-13T08:31:09.000Z" - }, - "end": { - "$date": "2021-06-13T08:58:30.000Z" - }, - "events": [ - { - "uuid": "e655333c-d00d-48de-9d2f-4449e7161a86", - "start": { - "$date": "2021-06-13T08:31:09.000Z" - }, - "end": { - "$date": "2021-06-13T08:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a641a3a1-a407-45c1-94fd-c0c5dc3d1d97", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-13T15:17:14.000Z" - }, - "end": { - "$date": "2021-06-13T15:38:22.000Z" - }, - "events": [ - { - "uuid": "3e9d8a49-ebaf-4e8e-8e95-efc34da18d4c", - "start": { - "$date": "2021-06-13T15:17:14.000Z" - }, - "end": { - "$date": "2021-06-13T15:38:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fdf63de9-fcd1-4f4a-8ab1-cce71282a902", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T15:25:06.000Z" - }, - "end": { - "$date": "2021-06-13T16:59:54.000Z" - }, - "events": [ - { - "uuid": "c60c4f37-3ab8-4377-bb6e-83b6a1b87f9c", - "start": { - "$date": "2021-06-13T15:25:06.000Z" - }, - "end": { - "$date": "2021-06-13T16:59:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "1064a096-1367-4552-9e1a-7e61fdfe3f45", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-13T15:34:37.000Z" - }, - "end": { - "$date": "2021-06-13T16:09:21.000Z" - }, - "events": [ - { - "uuid": "c57813af-7009-4c27-a195-e5df31f8cc9d", - "start": { - "$date": "2021-06-13T15:34:37.000Z" - }, - "end": { - "$date": "2021-06-13T16:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7ab8ef84-ce44-4c73-a24e-bfc0cb5f9faf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-13T15:41:29.000Z" - }, - "end": { - "$date": "2021-06-13T17:28:09.000Z" - }, - "events": [ - { - "uuid": "861e87ac-6d0d-4932-963c-f1f117766bf1", - "start": { - "$date": "2021-06-13T15:41:29.000Z" - }, - "end": { - "$date": "2021-06-13T17:28:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8bdfae5b-7c1d-4133-9258-fbeb9984b3dc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-13T16:12:11.000Z" - }, - "end": { - "$date": "2021-06-13T16:58:32.000Z" - }, - "events": [ - { - "uuid": "fa1b9931-6dda-4960-9891-7a0c18fd7871", - "start": { - "$date": "2021-06-13T16:12:11.000Z" - }, - "end": { - "$date": "2021-06-13T16:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b25aec96-bc01-4dce-93a9-da900a7981d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-13T17:01:05.000Z" - }, - "end": { - "$date": "2021-06-13T17:01:05.000Z" - }, - "events": [ - { - "uuid": "5cd5f885-e798-4d67-9177-983b2aae4a84", - "start": { - "$date": "2021-06-13T17:01:05.000Z" - }, - "end": { - "$date": "2021-06-13T17:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "4aa14286-41de-4bbf-95dc-b26c5813dbda", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-13T17:01:10.000Z" - }, - "end": { - "$date": "2021-06-13T18:06:52.000Z" - }, - "events": [ - { - "uuid": "2899b671-726a-4575-9553-94686c977a79", - "start": { - "$date": "2021-06-13T17:01:10.000Z" - }, - "end": { - "$date": "2021-06-13T18:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "fa2dc5b4-59e8-417e-8591-067fca031ca3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-13T17:01:41.000Z" - }, - "end": { - "$date": "2021-06-13T17:03:52.000Z" - }, - "events": [ - { - "uuid": "4e40cc35-4516-430e-bbe5-4700eee74aa2", - "start": { - "$date": "2021-06-13T17:01:41.000Z" - }, - "end": { - "$date": "2021-06-13T17:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "bfc1fa21-2018-4bd5-9aa8-73124def1257", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-13T17:06:21.000Z" - }, - "end": { - "$date": "2021-06-13T17:07:25.000Z" - }, - "events": [ - { - "uuid": "7d9c673b-e997-4bc2-a729-17e521eefbd5", - "start": { - "$date": "2021-06-13T17:06:21.000Z" - }, - "end": { - "$date": "2021-06-13T17:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "139a04c1-7e4b-4ee2-9a92-207af862335b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-13T17:11:39.000Z" - }, - "end": { - "$date": "2021-06-13T17:27:27.000Z" - }, - "events": [ - { - "uuid": "75e2a875-aa2b-40e8-b121-bea855ba5e41", - "start": { - "$date": "2021-06-13T17:11:39.000Z" - }, - "end": { - "$date": "2021-06-13T17:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "55f46901-5249-4121-95b2-ab59eb5df95a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-13T17:29:52.000Z" - }, - "end": { - "$date": "2021-06-13T18:11:17.000Z" - }, - "events": [ - { - "uuid": "65ed828b-f7d3-4b6b-9f75-7c98406f80d5", - "start": { - "$date": "2021-06-13T17:29:52.000Z" - }, - "end": { - "$date": "2021-06-13T18:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "98317a9f-0a25-49ea-9502-8288caaa315f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T18:11:08.000Z" - }, - "end": { - "$date": "2021-06-13T18:40:40.000Z" - }, - "events": [ - { - "uuid": "441128e2-dc6c-4c9a-ab5b-1cb961c8139f", - "start": { - "$date": "2021-06-13T18:11:08.000Z" - }, - "end": { - "$date": "2021-06-13T18:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "a6690ae6-8859-4768-92df-d9d787b3496a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T18:41:50.000Z" - }, - "end": { - "$date": "2021-06-13T18:58:07.000Z" - }, - "events": [ - { - "uuid": "497206e4-45f0-4505-817c-c7df1482c2ce", - "start": { - "$date": "2021-06-13T18:41:50.000Z" - }, - "end": { - "$date": "2021-06-13T18:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "3a4f6f40-6a9f-4451-86ac-045c20c7b48f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-13T18:52:41.000Z" - }, - "end": { - "$date": "2021-06-13T18:58:01.000Z" - }, - "events": [ - { - "uuid": "fec77bb2-a3f5-4f0d-9689-04833d1a4682", - "start": { - "$date": "2021-06-13T18:52:41.000Z" - }, - "end": { - "$date": "2021-06-13T18:58:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "86e85b39-7e96-4334-82bf-ae8507e0b045", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T18:58:28.000Z" - }, - "end": { - "$date": "2021-06-13T21:38:58.000Z" - }, - "events": [ - { - "uuid": "49961500-d916-411c-9874-c35998ac88a9", - "start": { - "$date": "2021-06-13T18:58:28.000Z" - }, - "end": { - "$date": "2021-06-13T21:38:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "2778d75d-dd8a-44bc-b917-6f0f49287154", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-13T19:02:37.000Z" - }, - "end": { - "$date": "2021-06-13T19:36:47.000Z" - }, - "events": [ - { - "uuid": "6b5c168f-c8c5-4495-89ee-c1f2c68fdd79", - "start": { - "$date": "2021-06-13T19:02:37.000Z" - }, - "end": { - "$date": "2021-06-13T19:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "3f9ffd71-de48-47d9-b1d8-2fb75bc41d59", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-13T19:09:12.000Z" - }, - "end": { - "$date": "2021-06-13T20:38:18.000Z" - }, - "events": [ - { - "uuid": "16dd8560-a491-47d1-80e7-ff71845f1102", - "start": { - "$date": "2021-06-13T19:09:12.000Z" - }, - "end": { - "$date": "2021-06-13T20:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "3380150c-6347-4d72-9414-299487e7e3d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-13T20:09:18.000Z" - }, - "end": { - "$date": "2021-06-13T22:07:32.000Z" - }, - "events": [ - { - "uuid": "877097ae-514c-4b47-9fcc-03d9414de655", - "start": { - "$date": "2021-06-13T20:09:18.000Z" - }, - "end": { - "$date": "2021-06-13T22:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7d91a31f-306e-477b-a9ae-bb4f2c3a193d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-13T20:56:04.000Z" - }, - "end": { - "$date": "2021-06-13T22:36:08.000Z" - }, - "events": [ - { - "uuid": "5bcc7e75-c577-4317-93f1-2aa4443a4c00", - "start": { - "$date": "2021-06-13T20:56:04.000Z" - }, - "end": { - "$date": "2021-06-13T21:10:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "07bad434-822f-4ea1-9bc2-6fa4af741f98", - "start": { - "$date": "2021-06-13T21:10:04.000Z" - }, - "end": { - "$date": "2021-06-13T21:35:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70ac28a6-5457-4186-818f-d9b6ccfb0e35", - "start": { - "$date": "2021-06-13T21:35:04.000Z" - }, - "end": { - "$date": "2021-06-13T21:45:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70fe3438-b9f0-4e06-b1b0-665c6703ae56", - "start": { - "$date": "2021-06-13T21:45:04.000Z" - }, - "end": { - "$date": "2021-06-13T21:55:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9c9758e-e88e-4b0f-afba-363d775dc5d6", - "start": { - "$date": "2021-06-13T21:55:04.000Z" - }, - "end": { - "$date": "2021-06-13T22:36:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "5c122033-fb4e-47b8-b588-cfa4ebffcefb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-13T21:39:13.000Z" - }, - "end": { - "$date": "2021-06-14T00:43:50.000Z" - }, - "events": [ - { - "uuid": "5005e51b-9e69-48e2-b6ad-9d7ad85e4924", - "start": { - "$date": "2021-06-13T21:39:13.000Z" - }, - "end": { - "$date": "2021-06-13T22:17:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "165815a2-6c42-4dd4-87fc-c551e66b3472", - "start": { - "$date": "2021-06-13T22:17:13.000Z" - }, - "end": { - "$date": "2021-06-13T22:26:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73ff7eb9-6929-4c92-8bd2-49c04e2be3ef", - "start": { - "$date": "2021-06-13T22:26:13.000Z" - }, - "end": { - "$date": "2021-06-14T00:43:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "38bfa758-17f1-436c-b3b2-1204c3e45c70", - "uuid": "f2dc4c41-28cd-4b47-9fed-b7540285989a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-13T21:53:59.000Z" - }, - "end": { - "$date": "2021-06-13T23:33:29.000Z" - }, - "events": [ - { - "uuid": "ec3521be-6fb9-4d42-91ee-3e7ece114445", - "start": { - "$date": "2021-06-13T21:53:59.000Z" - }, - "end": { - "$date": "2021-06-13T23:33:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4cf0cc9e-08c7-4811-9488-3921d94de38f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-13T22:11:26.000Z" - }, - "end": { - "$date": "2021-06-13T22:17:23.000Z" - }, - "events": [ - { - "uuid": "db2992c8-6be4-48ca-9096-e4ed322cdf33", - "start": { - "$date": "2021-06-13T22:11:26.000Z" - }, - "end": { - "$date": "2021-06-13T22:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aac543be-da33-4eba-a6ea-8d7c75d84cf4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-13T22:17:48.000Z" - }, - "end": { - "$date": "2021-06-13T23:45:25.000Z" - }, - "events": [ - { - "uuid": "4075b335-b40e-4440-acd5-31cbf95b4058", - "start": { - "$date": "2021-06-13T22:17:48.000Z" - }, - "end": { - "$date": "2021-06-13T23:45:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3d7b0144-e600-4a6e-8510-7f5c06614c39", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-13T22:52:11.000Z" - }, - "end": { - "$date": "2021-06-14T05:02:52.000Z" - }, - "events": [ - { - "uuid": "fb193a0f-8b21-45cf-9542-019ad76fc029", - "start": { - "$date": "2021-06-13T22:52:11.000Z" - }, - "end": { - "$date": "2021-06-14T04:10:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d86d6e65-1551-485e-8ccf-8d21b1e42cfe", - "start": { - "$date": "2021-06-14T04:10:11.000Z" - }, - "end": { - "$date": "2021-06-14T04:13:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54140ed6-6c77-46f3-98f9-b775690d8932", - "start": { - "$date": "2021-06-14T04:13:11.000Z" - }, - "end": { - "$date": "2021-06-14T05:02:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "33c8a1d4-83a6-4c3b-8c83-50eabf020d83", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-14T00:44:05.000Z" - }, - "end": { - "$date": "2021-06-14T01:37:29.000Z" - }, - "events": [ - { - "uuid": "163944d1-77b1-48f8-8664-5642003b375f", - "start": { - "$date": "2021-06-14T00:44:05.000Z" - }, - "end": { - "$date": "2021-06-14T01:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "faa9c82f-ea6b-4b2f-9ac5-c66637517b61", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T01:16:54.000Z" - }, - "end": { - "$date": "2021-06-14T02:16:55.000Z" - }, - "events": [ - { - "uuid": "f2b49576-ac43-4a5f-825a-e5ce6c664cba", - "start": { - "$date": "2021-06-14T01:16:54.000Z" - }, - "end": { - "$date": "2021-06-14T02:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c21f3a53-15dc-431c-b98e-44b5541ad052", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-14T01:34:36.000Z" - }, - "end": { - "$date": "2021-06-14T01:54:12.000Z" - }, - "events": [ - { - "uuid": "be490ad7-70ee-4ac5-86d1-758477e03ad3", - "start": { - "$date": "2021-06-14T01:34:36.000Z" - }, - "end": { - "$date": "2021-06-14T01:54:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a13fa051-f527-4aa8-a2a1-0a79929e7a81", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-14T01:35:54.000Z" - }, - "end": { - "$date": "2021-06-14T01:54:14.000Z" - }, - "events": [ - { - "uuid": "07f3a763-d18b-4bd1-a991-c6da94b67d1d", - "start": { - "$date": "2021-06-14T01:35:54.000Z" - }, - "end": { - "$date": "2021-06-14T01:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "5b242fbb-844c-4992-a95a-c816ee275dae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-14T01:54:27.000Z" - }, - "end": { - "$date": "2021-06-14T02:31:30.000Z" - }, - "events": [ - { - "uuid": "c4fea048-d33a-416c-a7e0-5f87b456b4a5", - "start": { - "$date": "2021-06-14T01:54:27.000Z" - }, - "end": { - "$date": "2021-06-14T02:31:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "87133379-d17e-429e-bccb-90d7673359e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-14T01:55:15.000Z" - }, - "end": { - "$date": "2021-06-14T02:31:55.000Z" - }, - "events": [ - { - "uuid": "7a970f32-df2b-4c2a-b886-6df05e15fb82", - "start": { - "$date": "2021-06-14T01:55:15.000Z" - }, - "end": { - "$date": "2021-06-14T02:31:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "ea3d587c-1436-4886-868f-1628fed53629", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-14T01:55:22.000Z" - }, - "end": { - "$date": "2021-06-14T01:58:07.000Z" - }, - "events": [ - { - "uuid": "60fbb455-6636-4e1c-981d-3181d511623f", - "start": { - "$date": "2021-06-14T01:55:22.000Z" - }, - "end": { - "$date": "2021-06-14T01:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "d9c73195-0fb3-45fc-9146-50a9acf4fe63", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-14T01:58:17.000Z" - }, - "end": { - "$date": "2021-06-14T02:31:43.000Z" - }, - "events": [ - { - "uuid": "b33f41b4-09d2-4dbe-83f0-34b365f307b8", - "start": { - "$date": "2021-06-14T01:58:17.000Z" - }, - "end": { - "$date": "2021-06-14T02:31:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "2802dbd9-3b76-41e5-a7cd-b540ea100cb2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-14T02:33:21.000Z" - }, - "end": { - "$date": "2021-06-14T05:27:04.000Z" - }, - "events": [ - { - "uuid": "718e9ddd-cdaf-471e-a8dc-c57f34166ac9", - "start": { - "$date": "2021-06-14T02:33:21.000Z" - }, - "end": { - "$date": "2021-06-14T05:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "d3441960-589a-4909-8d2c-7ebfe0e9fef9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-14T02:34:06.000Z" - }, - "end": { - "$date": "2021-06-14T03:01:08.000Z" - }, - "events": [ - { - "uuid": "477567f3-59f1-4651-849c-38d66a79a2d5", - "start": { - "$date": "2021-06-14T02:34:06.000Z" - }, - "end": { - "$date": "2021-06-14T03:00:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5896f861-83fc-44e9-8b10-9474b2cc9b79", - "start": { - "$date": "2021-06-14T03:00:06.000Z" - }, - "end": { - "$date": "2021-06-14T03:01:08.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "ce5ca63b-6ab5-41e1-9ef5-d7129450f5d0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-14T02:34:14.000Z" - }, - "end": { - "$date": "2021-06-14T05:02:26.000Z" - }, - "events": [ - { - "uuid": "bebaca05-7083-4318-bdac-89b0630ac85c", - "start": { - "$date": "2021-06-14T02:34:14.000Z" - }, - "end": { - "$date": "2021-06-14T05:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "75ddc07c-2f09-4022-a097-57511f8babab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-14T03:13:50.000Z" - }, - "end": { - "$date": "2021-06-14T04:25:17.000Z" - }, - "events": [ - { - "uuid": "ba93218d-1876-4ce0-9c7a-9860ab008349", - "start": { - "$date": "2021-06-14T03:13:50.000Z" - }, - "end": { - "$date": "2021-06-14T04:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "21010d5c-b13b-4481-b4b9-aae21809d9e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T04:50:14.000Z" - }, - "end": { - "$date": "2021-06-14T05:25:39.000Z" - }, - "events": [ - { - "uuid": "e3964a6a-5eec-402b-9c28-8cf18c065b0c", - "start": { - "$date": "2021-06-14T04:50:14.000Z" - }, - "end": { - "$date": "2021-06-14T05:25:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "e6d10311-811b-4704-8dde-1f7950e43a6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-14T05:03:03.000Z" - }, - "end": { - "$date": "2021-06-14T06:30:37.000Z" - }, - "events": [ - { - "uuid": "e7908dfb-c95b-4b33-b0a7-e0f4dd7b6a6c", - "start": { - "$date": "2021-06-14T05:03:03.000Z" - }, - "end": { - "$date": "2021-06-14T06:30:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49dfc9cf-9ea1-435d-ba05-b6f4c7a823ac", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-14T05:53:13.000Z" - }, - "end": { - "$date": "2021-06-14T06:33:30.000Z" - }, - "events": [ - { - "uuid": "b4e3e051-ae2f-452b-9c56-430a8eae33b8", - "start": { - "$date": "2021-06-14T05:53:13.000Z" - }, - "end": { - "$date": "2021-06-14T06:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "102acf98-5da9-49c2-933d-d2777bf6489d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-14T06:06:30.000Z" - }, - "end": { - "$date": "2021-06-14T07:19:03.000Z" - }, - "events": [ - { - "uuid": "307a710b-2bf0-48d6-9a45-ed3a5c1a9982", - "start": { - "$date": "2021-06-14T06:06:30.000Z" - }, - "end": { - "$date": "2021-06-14T07:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6ced29e6-76e8-4689-b2b6-a13c345465d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-14T06:35:43.000Z" - }, - "end": { - "$date": "2021-06-14T06:45:38.000Z" - }, - "events": [ - { - "uuid": "00b7622d-0bc2-4dd1-8278-f8714abe2a13", - "start": { - "$date": "2021-06-14T06:35:43.000Z" - }, - "end": { - "$date": "2021-06-14T06:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "26318eb8-e6ff-4d6c-8531-d0c4208f326c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-14T06:45:45.000Z" - }, - "end": { - "$date": "2021-06-14T06:56:22.000Z" - }, - "events": [ - { - "uuid": "ba61a93b-d67b-4e0d-86db-34bd3be1c5d1", - "start": { - "$date": "2021-06-14T06:45:45.000Z" - }, - "end": { - "$date": "2021-06-14T06:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "43f72bff-3bbf-415e-b989-fc94ad33c028", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-14T06:56:33.000Z" - }, - "end": { - "$date": "2021-06-14T09:34:56.000Z" - }, - "events": [ - { - "uuid": "5212d655-7db8-4489-996c-dc63fdeacb40", - "start": { - "$date": "2021-06-14T06:56:33.000Z" - }, - "end": { - "$date": "2021-06-14T09:34:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5898b464-b2e8-483d-9152-719f5566c6c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T16:39:52.000Z" - }, - "end": { - "$date": "2021-06-14T17:25:26.000Z" - }, - "events": [ - { - "uuid": "1050cea2-494c-49a9-8047-a6dda4ca8259", - "start": { - "$date": "2021-06-14T16:39:52.000Z" - }, - "end": { - "$date": "2021-06-14T17:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "b77d733f-db5f-4beb-97fa-e2acd0e3a790", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-14T16:47:43.000Z" - }, - "end": { - "$date": "2021-06-14T17:30:54.000Z" - }, - "events": [ - { - "uuid": "5332245b-4d30-4767-9a47-e9ccf7c50109", - "start": { - "$date": "2021-06-14T16:47:43.000Z" - }, - "end": { - "$date": "2021-06-14T17:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "02c642e5-9c63-420c-a8d3-a269225452fc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-06-14T19:58:04.000Z" - }, - "end": { - "$date": "2021-06-14T20:56:48.000Z" - }, - "events": [ - { - "uuid": "5786df99-7f18-471e-a902-c0910e5a0e86", - "start": { - "$date": "2021-06-14T19:58:04.000Z" - }, - "end": { - "$date": "2021-06-14T20:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "49d69a99-c62d-45dd-886c-8cfad1df172e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T20:08:47.000Z" - }, - "end": { - "$date": "2021-06-14T20:24:13.000Z" - }, - "events": [ - { - "uuid": "cbdc98e9-9d53-496f-8325-ce946b5294ff", - "start": { - "$date": "2021-06-14T20:08:47.000Z" - }, - "end": { - "$date": "2021-06-14T20:24:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "831f7a73-d8ef-4777-aaba-8001f35182dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T20:42:51.000Z" - }, - "end": { - "$date": "2021-06-14T20:58:56.000Z" - }, - "events": [ - { - "uuid": "4abe170a-4f29-4d3b-af2b-a5c4ee9f6250", - "start": { - "$date": "2021-06-14T20:42:51.000Z" - }, - "end": { - "$date": "2021-06-14T20:58:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "48674d74-1a14-4e9e-ab2a-9e847f5098ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-14T20:36:34.000Z" - }, - "end": { - "$date": "2021-06-15T01:08:42.000Z" - }, - "events": [ - { - "uuid": "ff5232a4-b169-4e02-aa3e-b50bce7d2eaf", - "start": { - "$date": "2021-06-14T20:36:34.000Z" - }, - "end": { - "$date": "2021-06-15T01:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "17aee072-55b6-4198-9f5a-4f43861ad18b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T23:35:47.000Z" - }, - "end": { - "$date": "2021-06-14T23:35:52.000Z" - }, - "events": [ - { - "uuid": "eb0dd86d-094f-4930-a708-4ce36edaa59d", - "start": { - "$date": "2021-06-14T23:35:47.000Z" - }, - "end": { - "$date": "2021-06-15T01:58:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cdd5fa7f-72a4-44bb-bfad-d04c4e64b959", - "start": { - "$date": "2021-06-15T01:58:47.000Z" - }, - "end": { - "$date": "2021-06-15T02:00:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4314fc34-fea2-4a75-8e1b-b8a6c7ccd73b", - "start": { - "$date": "2021-06-15T02:00:47.000Z" - }, - "end": { - "$date": "2021-06-14T23:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bfcf8d85-c72c-46c4-83f7-48f90e35f6c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-14T22:54:02.000Z" - }, - "end": { - "$date": "2021-06-14T23:00:30.000Z" - }, - "events": [ - { - "uuid": "935685ab-efb2-424e-913a-7aaed05a955d", - "start": { - "$date": "2021-06-14T22:54:02.000Z" - }, - "end": { - "$date": "2021-06-14T23:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2bbd9794-4183-45c3-afc6-77c2ee48dd42", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-14T22:57:37.000Z" - }, - "end": { - "$date": "2021-06-14T23:16:38.000Z" - }, - "events": [ - { - "uuid": "376abf1f-0be1-43f3-a133-1672ece87a82", - "start": { - "$date": "2021-06-14T22:57:37.000Z" - }, - "end": { - "$date": "2021-06-14T23:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "096029a3-6ea5-4ca9-921d-6e34f2f27d8a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-14T23:00:47.000Z" - }, - "end": { - "$date": "2021-06-15T01:58:46.000Z" - }, - "events": [ - { - "uuid": "cb28816e-b671-4161-9958-4ec2f7454b9a", - "start": { - "$date": "2021-06-14T23:00:47.000Z" - }, - "end": { - "$date": "2021-06-15T01:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5c433aba-e7e6-4ce6-b312-fcc74d3cef1b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-14T23:25:21.000Z" - }, - "end": { - "$date": "2021-06-14T23:34:01.000Z" - }, - "events": [ - { - "uuid": "decb0986-ef5a-40c7-a7d7-fd7a0c256517", - "start": { - "$date": "2021-06-14T23:25:21.000Z" - }, - "end": { - "$date": "2021-06-14T23:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1efa463e-ea46-469e-97fe-d5838dc8f80d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-14T23:29:54.000Z" - }, - "end": { - "$date": "2021-06-15T00:00:10.000Z" - }, - "events": [ - { - "uuid": "6e59d6a6-d541-447e-a8b1-484987f1a0ed", - "start": { - "$date": "2021-06-14T23:29:54.000Z" - }, - "end": { - "$date": "2021-06-15T00:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9461bc2e-4f08-4fcb-b0c0-584f09c52901", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-14T23:36:03.000Z" - }, - "end": { - "$date": "2021-06-14T23:58:33.000Z" - }, - "events": [ - { - "uuid": "0fd97157-38c4-48c2-b653-5b15e1365ebf", - "start": { - "$date": "2021-06-14T23:36:03.000Z" - }, - "end": { - "$date": "2021-06-14T23:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f640d83-a65b-4b30-ac59-e92133368325", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T00:04:19.000Z" - }, - "end": { - "$date": "2021-06-15T00:23:28.000Z" - }, - "events": [ - { - "uuid": "0385f8c7-4070-4f97-b135-1d2efb89dc6a", - "start": { - "$date": "2021-06-15T00:04:19.000Z" - }, - "end": { - "$date": "2021-06-15T00:23:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c56a354-fb56-4382-8c73-808f45269b9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T00:39:11.000Z" - }, - "end": { - "$date": "2021-06-15T00:58:30.000Z" - }, - "events": [ - { - "uuid": "55888a3b-0f24-4835-a880-0b4f315edad6", - "start": { - "$date": "2021-06-15T00:39:11.000Z" - }, - "end": { - "$date": "2021-06-15T00:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d57c0744-d54b-4ff8-bfc2-9e21949d4df7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T01:10:47.000Z" - }, - "end": { - "$date": "2021-06-15T01:22:31.000Z" - }, - "events": [ - { - "uuid": "00f27e44-54b6-4064-9dd0-c3eb7dcc9ee3", - "start": { - "$date": "2021-06-15T01:10:47.000Z" - }, - "end": { - "$date": "2021-06-15T01:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "6f5c05b4-71e7-4adf-a689-5dd4f2a61620", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-15T01:00:38.000Z" - }, - "end": { - "$date": "2021-06-15T01:59:30.000Z" - }, - "events": [ - { - "uuid": "8e49360e-6f3d-4628-8227-1b9ad9a9ab23", - "start": { - "$date": "2021-06-15T01:00:38.000Z" - }, - "end": { - "$date": "2021-06-15T01:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56281b5d-0386-4818-b364-4982eb46716d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T01:47:40.000Z" - }, - "end": { - "$date": "2021-06-15T01:57:09.000Z" - }, - "events": [ - { - "uuid": "bffa14c2-6c1e-4094-897d-50d85913f55c", - "start": { - "$date": "2021-06-15T01:47:40.000Z" - }, - "end": { - "$date": "2021-06-15T01:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "f954ddff-233b-4708-8a39-4712c2c85c4f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-15T01:33:57.000Z" - }, - "end": { - "$date": "2021-06-15T05:51:10.000Z" - }, - "events": [ - { - "uuid": "77806b71-3984-4928-bb41-f7823cbb1cc3", - "start": { - "$date": "2021-06-15T01:33:57.000Z" - }, - "end": { - "$date": "2021-06-15T05:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "63fa4ba0-3d32-4c16-822a-3b1df63e6f84", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-15T04:14:23.000Z" - }, - "end": { - "$date": "2021-06-15T04:14:33.000Z" - }, - "events": [ - { - "uuid": "9ea9ae61-2f1a-4588-99b1-a9c262b33e20", - "start": { - "$date": "2021-06-15T04:14:23.000Z" - }, - "end": { - "$date": "2021-06-15T04:14:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eac14828-d46d-4c6e-93f2-568c46395603", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T02:30:28.000Z" - }, - "end": { - "$date": "2021-06-15T02:42:08.000Z" - }, - "events": [ - { - "uuid": "b3c0a6e9-6179-4726-90f4-35ea302d15bb", - "start": { - "$date": "2021-06-15T02:30:28.000Z" - }, - "end": { - "$date": "2021-06-15T02:42:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "559b4374-786d-4dab-bba5-d7bccb5eb355", - "start": { - "$date": "2021-06-15T02:42:28.000Z" - }, - "end": { - "$date": "2021-06-15T02:43:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "403e7727-fbbd-482a-b9b8-01745e3f9e48", - "start": { - "$date": "2021-06-15T02:43:28.000Z" - }, - "end": { - "$date": "2021-06-15T02:42:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3068099f-dfa3-42d8-9641-fba2a8f62ce9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-15T02:12:44.000Z" - }, - "end": { - "$date": "2021-06-15T02:28:58.000Z" - }, - "events": [ - { - "uuid": "27411db8-d39c-47d9-880d-e424bd5a7673", - "start": { - "$date": "2021-06-15T02:12:44.000Z" - }, - "end": { - "$date": "2021-06-15T02:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "321912f4-15df-4247-bdfb-5929dabc2425", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-15T02:23:00.000Z" - }, - "end": { - "$date": "2021-06-15T02:42:17.000Z" - }, - "events": [ - { - "uuid": "25db58f4-5074-47d2-b313-513edf7bb794", - "start": { - "$date": "2021-06-15T02:23:00.000Z" - }, - "end": { - "$date": "2021-06-15T02:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "646c1a43-fcec-4dba-9865-7b7b0e5e94b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T02:51:24.000Z" - }, - "end": { - "$date": "2021-06-15T03:06:59.000Z" - }, - "events": [ - { - "uuid": "4d925e48-697e-44da-8dd3-f041e0f51bf4", - "start": { - "$date": "2021-06-15T02:51:24.000Z" - }, - "end": { - "$date": "2021-06-15T03:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e44a1c56-83bb-4551-80c2-aa15e2bae651", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-15T02:50:17.000Z" - }, - "end": { - "$date": "2021-06-15T03:07:03.000Z" - }, - "events": [ - { - "uuid": "85458fa7-9166-45f1-97ab-f7bc081feb94", - "start": { - "$date": "2021-06-15T02:50:17.000Z" - }, - "end": { - "$date": "2021-06-15T03:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd7ae8f0-0a97-4a8f-8546-480b4177e405", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T03:14:45.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:24.000Z" - }, - "events": [ - { - "uuid": "548b2c8a-867e-4048-9688-8760f13a8ecb", - "start": { - "$date": "2021-06-15T03:14:45.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c6a842d-a21a-4363-9cc2-1c2d9328ed49", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-15T03:14:43.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:29.000Z" - }, - "events": [ - { - "uuid": "91665ef6-c531-4ef3-9ad7-d3aba6346120", - "start": { - "$date": "2021-06-15T03:14:43.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38de1186-4859-4cbf-b663-11b837ea6d35", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-15T03:14:57.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:31.000Z" - }, - "events": [ - { - "uuid": "c166fbb9-8b37-4430-be98-99bf37c802c8", - "start": { - "$date": "2021-06-15T03:14:57.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62b8b57e-9e4a-475d-be48-7953c7cb23fa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T03:14:49.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:34.000Z" - }, - "events": [ - { - "uuid": "ec32ea8b-ad71-4db5-a0fa-8585ae0271d8", - "start": { - "$date": "2021-06-15T03:14:49.000Z" - }, - "end": { - "$date": "2021-06-15T03:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a2d312d-70c9-4d74-8439-10709485fd5f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T03:33:11.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:25.000Z" - }, - "events": [ - { - "uuid": "0dbb7a5f-85ff-41a8-8d91-fc37aa561d05", - "start": { - "$date": "2021-06-15T03:33:11.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74e04fe1-b3bd-43b0-953f-9bee9c3543db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-15T03:32:48.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:23.000Z" - }, - "events": [ - { - "uuid": "d1107816-8720-4f16-b6b7-7d2487d7d298", - "start": { - "$date": "2021-06-15T03:32:48.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b963809-210d-4c50-94f8-b4a6356cdbc5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T03:32:20.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:35.000Z" - }, - "events": [ - { - "uuid": "bee054d1-5e41-43d6-86e1-5da0c5c4a2fe", - "start": { - "$date": "2021-06-15T03:32:20.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c24eab55-67c0-48e2-964b-a993f3b0b25f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-15T03:32:20.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:25.000Z" - }, - "events": [ - { - "uuid": "79bcb84f-1f5d-4a5b-84a8-f60f49b9d95f", - "start": { - "$date": "2021-06-15T03:32:20.000Z" - }, - "end": { - "$date": "2021-06-15T03:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fe1ff5f-ad73-4271-ae76-5810d7f6f1b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T03:51:31.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:00.000Z" - }, - "events": [ - { - "uuid": "9c0cf1b1-6925-4b77-a0d6-a657a95678fa", - "start": { - "$date": "2021-06-15T03:51:31.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ecbbe22-cec7-4cd2-8fb0-0819897d147f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-15T03:50:35.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:01.000Z" - }, - "events": [ - { - "uuid": "5824e672-7fda-495c-931b-be3349808e99", - "start": { - "$date": "2021-06-15T03:50:35.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89deba33-2334-463d-bdd0-69bb433600c8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-15T03:51:04.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:09.000Z" - }, - "events": [ - { - "uuid": "f520929f-706e-4dfb-8014-95e2106b86f1", - "start": { - "$date": "2021-06-15T03:51:04.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99dbe47f-fa58-467b-a6c1-ad5685ee7488", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T03:50:37.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:11.000Z" - }, - "events": [ - { - "uuid": "b8d6f10e-bec8-4a12-8427-75624ed07464", - "start": { - "$date": "2021-06-15T03:50:37.000Z" - }, - "end": { - "$date": "2021-06-15T04:08:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11183bd7-25bf-4508-b9b3-219ef41896af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T04:12:37.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:16.000Z" - }, - "events": [ - { - "uuid": "1663693c-740a-4eb5-a2ea-581ca97200b6", - "start": { - "$date": "2021-06-15T04:12:37.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94ea945a-1c33-40c9-baa1-c8f16c4c030b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T04:11:28.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:21.000Z" - }, - "events": [ - { - "uuid": "052b67eb-a479-4313-82b8-c338dbb49ea7", - "start": { - "$date": "2021-06-15T04:11:28.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72c6c726-8354-461d-8f03-eac2e6b9286d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-15T04:12:15.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:10.000Z" - }, - "events": [ - { - "uuid": "5f0c626b-1cff-4afa-8c9c-ab338483ea15", - "start": { - "$date": "2021-06-15T04:12:15.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b69a2d0a-79b6-4075-b4e7-62a52174c227", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-15T04:11:26.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:12.000Z" - }, - "events": [ - { - "uuid": "ee44412b-ca9c-4ee0-b68e-8d8e0e0fcbc2", - "start": { - "$date": "2021-06-15T04:11:26.000Z" - }, - "end": { - "$date": "2021-06-15T04:32:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6a03eff1-3889-4996-a234-43206242b567", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-15T04:12:59.000Z" - }, - "end": { - "$date": "2021-06-15T04:45:58.000Z" - }, - "events": [ - { - "uuid": "10e05b52-48a8-444d-8e1a-66fa6001f3f2", - "start": { - "$date": "2021-06-15T04:12:59.000Z" - }, - "end": { - "$date": "2021-06-15T04:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "d6e280cd-2227-4b62-b26f-057f0104d56d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-15T04:14:38.000Z" - }, - "end": { - "$date": "2021-06-15T05:51:17.000Z" - }, - "events": [ - { - "uuid": "50fca099-1a2c-463a-86ba-ea1125487a9b", - "start": { - "$date": "2021-06-15T04:14:38.000Z" - }, - "end": { - "$date": "2021-06-15T05:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cf5785cd-976e-4b8d-8d31-5a3fd42b10d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T04:35:24.000Z" - }, - "end": { - "$date": "2021-06-15T06:32:00.000Z" - }, - "events": [ - { - "uuid": "8ae0de06-df20-46c7-9a88-bcd36c267a05", - "start": { - "$date": "2021-06-15T04:35:24.000Z" - }, - "end": { - "$date": "2021-06-15T06:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51aad6dd-1836-42d5-97a2-0b33e75994bd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-15T04:44:36.000Z" - }, - "end": { - "$date": "2021-06-15T05:07:26.000Z" - }, - "events": [ - { - "uuid": "bf6c37c2-caa7-4af1-b38d-f73a651511e5", - "start": { - "$date": "2021-06-15T04:44:36.000Z" - }, - "end": { - "$date": "2021-06-15T05:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d79b0369-4fc2-4df4-846d-ed6f4bba6ae0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-15T05:13:22.000Z" - }, - "end": { - "$date": "2021-06-15T05:50:26.000Z" - }, - "events": [ - { - "uuid": "62bab04a-b2ab-490f-8835-1cf3dd2736ee", - "start": { - "$date": "2021-06-15T05:13:22.000Z" - }, - "end": { - "$date": "2021-06-15T05:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "65006055-9da9-4ddd-90c0-373cfe5ec74f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-15T05:55:46.000Z" - }, - "end": { - "$date": "2021-06-15T09:28:20.000Z" - }, - "events": [ - { - "uuid": "82cbba73-5422-4ca1-be89-8f85fb656fd8", - "start": { - "$date": "2021-06-15T05:55:46.000Z" - }, - "end": { - "$date": "2021-06-15T09:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "468223bc-ba21-492d-8acd-936dd9f385a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T15:50:40.000Z" - }, - "end": { - "$date": "2021-06-15T16:00:50.000Z" - }, - "events": [ - { - "uuid": "370074fe-227f-4413-b646-ea77103e3b8e", - "start": { - "$date": "2021-06-15T15:50:40.000Z" - }, - "end": { - "$date": "2021-06-15T16:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ab4850b-43b9-40f0-9511-b49c2df32be4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T16:06:06.000Z" - }, - "end": { - "$date": "2021-06-15T16:25:25.000Z" - }, - "events": [ - { - "uuid": "81f98d94-0341-46fe-b7d4-0ab00ea39c25", - "start": { - "$date": "2021-06-15T16:06:06.000Z" - }, - "end": { - "$date": "2021-06-15T16:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "266aff13-4a64-4973-8b49-17c0c0b1a4f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T17:36:28.000Z" - }, - "end": { - "$date": "2021-06-15T18:47:14.000Z" - }, - "events": [ - { - "uuid": "4740453a-0b40-465c-a567-3317c1ea896f", - "start": { - "$date": "2021-06-15T17:36:28.000Z" - }, - "end": { - "$date": "2021-06-15T18:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "c8e56a97-c1ae-44a1-ab70-b0922673b97f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T17:52:24.000Z" - }, - "end": { - "$date": "2021-06-15T19:02:31.000Z" - }, - "events": [ - { - "uuid": "72ff73bb-5fe7-4f3f-90d5-cf036cab0ab8", - "start": { - "$date": "2021-06-15T17:52:24.000Z" - }, - "end": { - "$date": "2021-06-15T19:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "35edd3ce-6e23-43ba-859f-728b6814a0be", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-15T19:27:51.000Z" - }, - "end": { - "$date": "2021-06-16T01:42:32.000Z" - }, - "events": [ - { - "uuid": "c9f1e6dc-be0c-4d80-9644-5505318cb64b", - "start": { - "$date": "2021-06-15T19:27:51.000Z" - }, - "end": { - "$date": "2021-06-16T01:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3ae97077-22bf-4aae-8a28-5e4984b7f188", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-15T19:36:49.000Z" - }, - "end": { - "$date": "2021-06-16T00:24:12.000Z" - }, - "events": [ - { - "uuid": "41e19c58-ef76-41a5-87be-08c3bf5a33cd", - "start": { - "$date": "2021-06-15T19:36:49.000Z" - }, - "end": { - "$date": "2021-06-16T00:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ed6adb99-60ab-4904-bcb6-0c2c46d10cd8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T20:35:04.000Z" - }, - "end": { - "$date": "2021-06-15T23:46:20.000Z" - }, - "events": [ - { - "uuid": "3dbb84bf-6fbe-4108-baca-925f7e6caa3e", - "start": { - "$date": "2021-06-15T20:35:04.000Z" - }, - "end": { - "$date": "2021-06-15T21:02:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d0847e4-cba6-4456-848d-8a4ad3489698", - "start": { - "$date": "2021-06-15T21:02:04.000Z" - }, - "end": { - "$date": "2021-06-15T21:10:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8592fcd6-20d2-48c4-b200-fe0fe1266d3b", - "start": { - "$date": "2021-06-15T21:10:04.000Z" - }, - "end": { - "$date": "2021-06-15T21:49:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6454f97f-8945-409c-9760-c7f138e58726", - "start": { - "$date": "2021-06-15T21:49:04.000Z" - }, - "end": { - "$date": "2021-06-15T21:52:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c524bc58-9ec8-4e3c-a3a3-978a8b9bbe29", - "start": { - "$date": "2021-06-15T21:52:04.000Z" - }, - "end": { - "$date": "2021-06-15T23:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "371454b1-3597-4585-b3b0-35a05aa87cd5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-15T21:56:52.000Z" - }, - "end": { - "$date": "2021-06-15T22:38:31.000Z" - }, - "events": [ - { - "uuid": "ff95b56e-24fa-4117-a874-a1221627abf3", - "start": { - "$date": "2021-06-15T21:56:52.000Z" - }, - "end": { - "$date": "2021-06-15T22:38:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "901cc764-5949-4d35-96da-200a0d92bef5", - "uuid": "62c47c19-8eb3-4771-b3d5-2e2732a90c1b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-15T22:15:39.000Z" - }, - "end": { - "$date": "2021-06-15T22:17:29.000Z" - }, - "events": [ - { - "uuid": "b47df54e-02c0-4a31-ba19-792d81f8a0aa", - "start": { - "$date": "2021-06-15T22:15:39.000Z" - }, - "end": { - "$date": "2021-06-15T22:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "88aa0928-eab8-4146-9250-31bad25ca180", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-15T22:21:29.000Z" - }, - "end": { - "$date": "2021-06-15T23:33:00.000Z" - }, - "events": [ - { - "uuid": "5c0a09cc-60da-4417-8ac0-cf319bc3daff", - "start": { - "$date": "2021-06-15T22:21:29.000Z" - }, - "end": { - "$date": "2021-06-15T23:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "378dddef-63ef-42f3-ac95-8825d1327043", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-15T23:36:12.000Z" - }, - "end": { - "$date": "2021-06-16T00:04:52.000Z" - }, - "events": [ - { - "uuid": "2f71e541-fe09-4e41-99f8-05de9c818e69", - "start": { - "$date": "2021-06-15T23:36:12.000Z" - }, - "end": { - "$date": "2021-06-16T00:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "255ba564-f7a0-4fe2-bda8-a8c092eb0b68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-15T23:35:41.000Z" - }, - "end": { - "$date": "2021-06-15T23:47:27.000Z" - }, - "events": [ - { - "uuid": "4cc287b1-7ed5-4260-a4f9-0e9437bc91cd", - "start": { - "$date": "2021-06-15T23:35:41.000Z" - }, - "end": { - "$date": "2021-06-15T23:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0502713-555c-4595-abe1-00508e18e185", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-15T23:47:36.000Z" - }, - "end": { - "$date": "2021-06-16T00:06:26.000Z" - }, - "events": [ - { - "uuid": "15a80d64-07a8-4ed9-b8c2-cf7fe7afc231", - "start": { - "$date": "2021-06-15T23:47:36.000Z" - }, - "end": { - "$date": "2021-06-16T00:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "1c193842-744a-47e8-8c29-e45de040e41a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-15T23:53:08.000Z" - }, - "end": { - "$date": "2021-06-16T00:43:29.000Z" - }, - "events": [ - { - "uuid": "cd944116-4f56-4036-a1bb-2ce2ffa97015", - "start": { - "$date": "2021-06-15T23:53:08.000Z" - }, - "end": { - "$date": "2021-06-16T00:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "048b9d77-2788-494d-9d3a-cafaf625a4a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-16T00:06:37.000Z" - }, - "end": { - "$date": "2021-06-16T01:37:55.000Z" - }, - "events": [ - { - "uuid": "0e2654e3-9674-4b9a-884b-7aed6ee1aa92", - "start": { - "$date": "2021-06-16T00:06:37.000Z" - }, - "end": { - "$date": "2021-06-16T00:50:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f1eb93f-c6b2-4ddd-bdd9-0537e6dfa6ff", - "start": { - "$date": "2021-06-16T00:50:37.000Z" - }, - "end": { - "$date": "2021-06-16T01:00:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2ba1d88-c24e-4182-86c0-15225a56e286", - "start": { - "$date": "2021-06-16T01:00:37.000Z" - }, - "end": { - "$date": "2021-06-16T01:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f4e88e7d-197b-486b-bc9c-49242935949b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-16T00:43:54.000Z" - }, - "end": { - "$date": "2021-06-16T00:56:34.000Z" - }, - "events": [ - { - "uuid": "6636abe0-1ec8-4c86-a0dc-3655048d0de0", - "start": { - "$date": "2021-06-16T00:43:54.000Z" - }, - "end": { - "$date": "2021-06-16T00:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "75dcb704-e727-4a5a-8ebb-c1a1a610748c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-16T01:26:38.000Z" - }, - "end": { - "$date": "2021-06-16T04:00:49.000Z" - }, - "events": [ - { - "uuid": "6dcec823-ddf6-4dbc-8639-0249e91355c0", - "start": { - "$date": "2021-06-16T01:26:38.000Z" - }, - "end": { - "$date": "2021-06-16T03:32:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ffcfe64-9f76-488e-bac9-de363f244110", - "start": { - "$date": "2021-06-16T03:32:38.000Z" - }, - "end": { - "$date": "2021-06-16T04:00:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63bd25d9-5689-41a8-b94e-734cfec470d9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-16T01:32:09.000Z" - }, - "end": { - "$date": "2021-06-16T02:24:05.000Z" - }, - "events": [ - { - "uuid": "503a8c3c-df37-46ae-8587-364411688899", - "start": { - "$date": "2021-06-16T01:32:09.000Z" - }, - "end": { - "$date": "2021-06-16T02:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "61ed7cc1-b1fb-42df-be04-5ecbd979ac65", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-16T01:46:11.000Z" - }, - "end": { - "$date": "2021-06-16T04:13:34.000Z" - }, - "events": [ - { - "uuid": "962550f9-e6da-4912-b149-c7f231f3f26f", - "start": { - "$date": "2021-06-16T01:46:11.000Z" - }, - "end": { - "$date": "2021-06-16T04:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a2ca3d4-6f9e-4e4d-b925-06af21cc5cc2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-16T03:34:38.000Z" - }, - "end": { - "$date": "2021-06-16T03:43:43.000Z" - }, - "events": [ - { - "uuid": "f19a3167-afcb-447f-a707-81a1880d4227", - "start": { - "$date": "2021-06-16T03:34:38.000Z" - }, - "end": { - "$date": "2021-06-16T03:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdc11292-76d1-4571-9ffc-a343395ea79e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-16T03:35:01.000Z" - }, - "end": { - "$date": "2021-06-16T03:43:41.000Z" - }, - "events": [ - { - "uuid": "4573eb6e-2f77-4c07-9ed8-a547ba0a425a", - "start": { - "$date": "2021-06-16T03:35:01.000Z" - }, - "end": { - "$date": "2021-06-16T03:43:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaafe92e-94ad-42e0-aefb-622843e27fa5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T03:34:38.000Z" - }, - "end": { - "$date": "2021-06-16T03:43:52.000Z" - }, - "events": [ - { - "uuid": "a0c38d85-6376-44b2-849b-764a2ce7ae90", - "start": { - "$date": "2021-06-16T03:34:38.000Z" - }, - "end": { - "$date": "2021-06-16T03:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f18e899-552e-4348-9184-77fa509a975a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-16T03:47:49.000Z" - }, - "end": { - "$date": "2021-06-16T04:07:04.000Z" - }, - "events": [ - { - "uuid": "997d0196-9e7b-4521-9ebc-c0bf63e9468a", - "start": { - "$date": "2021-06-16T03:47:49.000Z" - }, - "end": { - "$date": "2021-06-16T04:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d40d084d-38db-4cac-b161-3b7f4b03b786", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T03:47:19.000Z" - }, - "end": { - "$date": "2021-06-16T04:07:13.000Z" - }, - "events": [ - { - "uuid": "e5b0527b-6559-4be9-a18b-be80b10b4a9c", - "start": { - "$date": "2021-06-16T03:47:19.000Z" - }, - "end": { - "$date": "2021-06-16T04:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2223a88b-b4a1-4135-b698-43655de1f8ef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-16T03:48:06.000Z" - }, - "end": { - "$date": "2021-06-16T04:07:02.000Z" - }, - "events": [ - { - "uuid": "26551761-76e7-4b25-bb7b-e93a142a2b87", - "start": { - "$date": "2021-06-16T03:48:06.000Z" - }, - "end": { - "$date": "2021-06-16T04:07:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3149d08e-0777-420f-ac29-9ce3ff326bfb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-16T04:00:59.000Z" - }, - "end": { - "$date": "2021-06-16T12:48:35.000Z" - }, - "events": [ - { - "uuid": "4004daf6-8483-4c8c-bc6c-7d11353f4ae4", - "start": { - "$date": "2021-06-16T04:00:59.000Z" - }, - "end": { - "$date": "2021-06-16T04:10:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae007dd7-7e4d-487d-8901-96bba7fd5bb6", - "start": { - "$date": "2021-06-16T04:10:59.000Z" - }, - "end": { - "$date": "2021-06-16T04:33:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a9d01a4-6a7e-45d0-aeb9-560089d4ed29", - "start": { - "$date": "2021-06-16T04:33:59.000Z" - }, - "end": { - "$date": "2021-06-16T04:35:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8f5df73-a9c9-41af-9319-28fbdd131b40", - "start": { - "$date": "2021-06-16T04:35:59.000Z" - }, - "end": { - "$date": "2021-06-16T12:48:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2107e407-9e35-4a0a-926b-de2246dce2c7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-16T04:11:09.000Z" - }, - "end": { - "$date": "2021-06-16T04:23:59.000Z" - }, - "events": [ - { - "uuid": "d4841308-226d-44b7-87dc-af8ddb6b61eb", - "start": { - "$date": "2021-06-16T04:11:09.000Z" - }, - "end": { - "$date": "2021-06-16T04:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6974ef2b-f958-4bc2-b464-62c31590b999", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-16T04:11:27.000Z" - }, - "end": { - "$date": "2021-06-16T04:24:02.000Z" - }, - "events": [ - { - "uuid": "cb060071-7a57-49a1-a6a2-4ea5eee026ae", - "start": { - "$date": "2021-06-16T04:11:27.000Z" - }, - "end": { - "$date": "2021-06-16T04:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3d3729f-102c-45e1-923a-628b3b43e283", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T04:10:50.000Z" - }, - "end": { - "$date": "2021-06-16T04:24:12.000Z" - }, - "events": [ - { - "uuid": "b3ffaa7a-544f-48f7-8f76-3970f100530b", - "start": { - "$date": "2021-06-16T04:10:50.000Z" - }, - "end": { - "$date": "2021-06-16T04:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9384e545-e622-446c-8a97-f074729aeafb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-16T04:27:40.000Z" - }, - "end": { - "$date": "2021-06-16T04:47:10.000Z" - }, - "events": [ - { - "uuid": "e5e11131-5e9b-49a0-8427-3423a9c3bcb2", - "start": { - "$date": "2021-06-16T04:27:40.000Z" - }, - "end": { - "$date": "2021-06-16T04:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9037b507-6a4d-4566-acb1-620d9203ee3c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-16T04:27:12.000Z" - }, - "end": { - "$date": "2021-06-16T04:47:13.000Z" - }, - "events": [ - { - "uuid": "4fd49998-ca1b-4bac-971d-3af4110eba73", - "start": { - "$date": "2021-06-16T04:27:12.000Z" - }, - "end": { - "$date": "2021-06-16T04:47:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28e5871f-645f-4f99-a335-f58564824de2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T04:27:16.000Z" - }, - "end": { - "$date": "2021-06-16T04:47:19.000Z" - }, - "events": [ - { - "uuid": "948dd5b0-f40b-4985-afcd-038350b1537c", - "start": { - "$date": "2021-06-16T04:27:16.000Z" - }, - "end": { - "$date": "2021-06-16T04:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "652c770d-855b-4e27-94bb-d54c0648854a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-16T04:31:29.000Z" - }, - "end": { - "$date": "2021-06-16T04:59:41.000Z" - }, - "events": [ - { - "uuid": "66b39b7c-0c6d-403b-8838-caf255af4fa5", - "start": { - "$date": "2021-06-16T04:31:29.000Z" - }, - "end": { - "$date": "2021-06-16T04:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "6e86f8c0-9118-40ac-9771-c587052d5c12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-16T04:32:20.000Z" - }, - "end": { - "$date": "2021-06-16T05:10:22.000Z" - }, - "events": [ - { - "uuid": "8bc3facb-80ab-414d-a226-57566b188514", - "start": { - "$date": "2021-06-16T04:32:20.000Z" - }, - "end": { - "$date": "2021-06-16T05:10:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c3d0d42b-3ec2-4204-8eba-054d4dc6e2f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-16T05:03:24.000Z" - }, - "end": { - "$date": "2021-06-16T06:43:48.000Z" - }, - "events": [ - { - "uuid": "6c6904c4-c64d-4cab-be91-82333efdb842", - "start": { - "$date": "2021-06-16T05:03:24.000Z" - }, - "end": { - "$date": "2021-06-16T06:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c155e4b-117b-410e-b1ab-f6be01b53da2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-16T05:09:53.000Z" - }, - "end": { - "$date": "2021-06-16T05:41:12.000Z" - }, - "events": [ - { - "uuid": "7c4e3370-488b-4750-a059-6f53c3ec9959", - "start": { - "$date": "2021-06-16T05:09:53.000Z" - }, - "end": { - "$date": "2021-06-16T05:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ca57d259-1bc4-4f05-ad73-09d761427a95", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T05:08:06.000Z" - }, - "end": { - "$date": "2021-06-16T05:10:25.000Z" - }, - "events": [ - { - "uuid": "6bd87c14-90ff-4e80-91e3-e9585764c390", - "start": { - "$date": "2021-06-16T05:08:06.000Z" - }, - "end": { - "$date": "2021-06-16T05:10:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d985bf3f-4554-42ce-8469-128b80a64e90", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T05:08:06.000Z" - }, - "end": { - "$date": "2021-06-16T05:14:01.000Z" - }, - "events": [ - { - "uuid": "c55ce496-133e-4a77-858c-e33bd37ea7cb", - "start": { - "$date": "2021-06-16T05:08:06.000Z" - }, - "end": { - "$date": "2021-06-16T05:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bc512162-d64a-4568-a3e9-74505423469f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T05:17:34.000Z" - }, - "end": { - "$date": "2021-06-16T06:21:38.000Z" - }, - "events": [ - { - "uuid": "c1686db7-db63-4474-89ef-c8851c4b86dd", - "start": { - "$date": "2021-06-16T05:17:34.000Z" - }, - "end": { - "$date": "2021-06-16T06:21:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c50def7-f7a4-4a42-8e46-294d50d9b6d1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-16T05:47:59.000Z" - }, - "end": { - "$date": "2021-06-16T06:14:39.000Z" - }, - "events": [ - { - "uuid": "6a80acd6-4ace-4e08-b029-07c5e98cabe9", - "start": { - "$date": "2021-06-16T05:47:59.000Z" - }, - "end": { - "$date": "2021-06-16T06:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "08a3d90b-e87e-4d5a-9700-23e77f1a2f04", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T05:51:02.000Z" - }, - "end": { - "$date": "2021-06-16T06:12:48.000Z" - }, - "events": [ - { - "uuid": "f290ecfe-6678-4bfc-9fe3-47e4b9ea41e5", - "start": { - "$date": "2021-06-16T05:51:02.000Z" - }, - "end": { - "$date": "2021-06-16T06:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "aea18e27-dfd8-4e13-bdd1-202d9ecfd83b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T06:17:13.000Z" - }, - "end": { - "$date": "2021-06-16T06:19:13.000Z" - }, - "events": [ - { - "uuid": "6adedcb5-2754-4398-8491-8e707343e8c1", - "start": { - "$date": "2021-06-16T06:17:13.000Z" - }, - "end": { - "$date": "2021-06-16T06:19:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "84e71dc0-9dd5-45ea-8445-a9f50299f811", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T06:26:12.000Z" - }, - "end": { - "$date": "2021-06-16T06:27:39.000Z" - }, - "events": [ - { - "uuid": "d814e33f-9636-4f4a-a80e-3e714cff4f8b", - "start": { - "$date": "2021-06-16T06:26:12.000Z" - }, - "end": { - "$date": "2021-06-16T06:27:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e89d9d61-0ebc-45dd-98db-e98e83651ff0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T06:28:19.000Z" - }, - "end": { - "$date": "2021-06-16T06:30:39.000Z" - }, - "events": [ - { - "uuid": "f2d223ab-1bd2-4935-8e9e-32e9ec17c2e7", - "start": { - "$date": "2021-06-16T06:28:19.000Z" - }, - "end": { - "$date": "2021-06-16T06:30:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5a5862d6-378f-4cec-919c-2f0441b4f454", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T06:30:46.000Z" - }, - "end": { - "$date": "2021-06-16T06:32:07.000Z" - }, - "events": [ - { - "uuid": "acf4162d-bd7a-458e-a4e7-f298f8b4f1c9", - "start": { - "$date": "2021-06-16T06:30:46.000Z" - }, - "end": { - "$date": "2021-06-16T06:32:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "124131a0-4c35-476e-8dc8-2430beee3328", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T06:32:09.000Z" - }, - "end": { - "$date": "2021-06-16T06:35:42.000Z" - }, - "events": [ - { - "uuid": "a8e8245c-37eb-4232-9d10-b268bca3402f", - "start": { - "$date": "2021-06-16T06:32:09.000Z" - }, - "end": { - "$date": "2021-06-16T06:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "049d9c4a-495c-4e97-a9c8-faf5ba6e0169", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T06:58:26.000Z" - }, - "end": { - "$date": "2021-06-16T10:22:27.000Z" - }, - "events": [ - { - "uuid": "93a5548a-da1e-41dd-93f2-c55c46bd741e", - "start": { - "$date": "2021-06-16T06:58:26.000Z" - }, - "end": { - "$date": "2021-06-16T10:22:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "8d8d7db2-3880-4cfb-81bb-fcf88d3c92e3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-16T09:14:46.000Z" - }, - "end": { - "$date": "2021-06-16T10:07:50.000Z" - }, - "events": [ - { - "uuid": "f3a239ce-bb92-4886-90b0-2f83b71e7d36", - "start": { - "$date": "2021-06-16T09:14:46.000Z" - }, - "end": { - "$date": "2021-06-16T10:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ca75fba6-d232-4052-a476-d88ef1e51142", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-16T12:48:55.000Z" - }, - "end": { - "$date": "2021-06-16T13:19:07.000Z" - }, - "events": [ - { - "uuid": "4963baee-2fb9-485d-98b7-0e08cc7790ea", - "start": { - "$date": "2021-06-16T12:48:55.000Z" - }, - "end": { - "$date": "2021-06-16T13:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "e181992c-6945-41bc-bf2f-f9b0a8b51044", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-16T15:20:36.000Z" - }, - "end": { - "$date": "2021-06-16T18:18:18.000Z" - }, - "events": [ - { - "uuid": "6d850e0e-99aa-4b78-aa71-a9d3469a5622", - "start": { - "$date": "2021-06-16T15:20:36.000Z" - }, - "end": { - "$date": "2021-06-16T18:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f5884e38-2487-4338-94e9-f37d1110417b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T16:06:45.000Z" - }, - "end": { - "$date": "2021-06-16T16:26:22.000Z" - }, - "events": [ - { - "uuid": "33cb1385-6948-4e38-b58b-d787319a82a4", - "start": { - "$date": "2021-06-16T16:06:45.000Z" - }, - "end": { - "$date": "2021-06-16T16:26:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "339aae84-f689-4eff-b7d4-75ccf48b72ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T16:30:34.000Z" - }, - "end": { - "$date": "2021-06-16T16:51:56.000Z" - }, - "events": [ - { - "uuid": "32e61aca-c03a-413a-b201-6a111ca5ae9c", - "start": { - "$date": "2021-06-16T16:30:34.000Z" - }, - "end": { - "$date": "2021-06-16T16:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c458be2b-d49c-4910-b4ed-8075023a7cb3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T16:57:36.000Z" - }, - "end": { - "$date": "2021-06-16T17:14:06.000Z" - }, - "events": [ - { - "uuid": "c2c4af07-e188-4270-954e-ad4f921b0e71", - "start": { - "$date": "2021-06-16T16:57:36.000Z" - }, - "end": { - "$date": "2021-06-16T17:14:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "24946a43-e8c8-4517-b2b0-28c592e429a6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T17:15:58.000Z" - }, - "end": { - "$date": "2021-06-16T18:59:00.000Z" - }, - "events": [ - { - "uuid": "92c3ada7-23e0-4d32-86d3-a39a011ba57e", - "start": { - "$date": "2021-06-16T17:15:58.000Z" - }, - "end": { - "$date": "2021-06-16T18:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1fd91a8e-ea8b-47d9-ba17-6c88e0686729", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-16T18:35:01.000Z" - }, - "end": { - "$date": "2021-06-16T19:41:23.000Z" - }, - "events": [ - { - "uuid": "be18f2f8-5bf8-4344-a162-b276a7c30214", - "start": { - "$date": "2021-06-16T18:35:01.000Z" - }, - "end": { - "$date": "2021-06-16T19:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "452ae3ca-cdb4-4a3a-99ba-2cae3560bcb5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-16T19:51:46.000Z" - }, - "end": { - "$date": "2021-06-16T21:08:12.000Z" - }, - "events": [ - { - "uuid": "1498b3be-c44d-499d-afd9-b088b2a1bab0", - "start": { - "$date": "2021-06-16T19:51:46.000Z" - }, - "end": { - "$date": "2021-06-16T21:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "9b22579c-8f75-4586-bb69-448deb6cc1da", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-16T19:56:35.000Z" - }, - "end": { - "$date": "2021-06-16T20:32:57.000Z" - }, - "events": [ - { - "uuid": "c6630136-1081-42c5-9096-b090430a04b5", - "start": { - "$date": "2021-06-16T19:56:35.000Z" - }, - "end": { - "$date": "2021-06-16T20:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9ae410aa-f584-44e6-8318-d4a22987f297", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-16T20:26:52.000Z" - }, - "end": { - "$date": "2021-06-16T21:46:01.000Z" - }, - "events": [ - { - "uuid": "086b6d90-e6ce-4834-a7cb-26a45de1ac13", - "start": { - "$date": "2021-06-16T20:26:52.000Z" - }, - "end": { - "$date": "2021-06-16T21:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b7c6403a-2b0d-456b-bcc5-293cc4743f0e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-16T21:04:19.000Z" - }, - "end": { - "$date": "2021-06-17T06:10:18.000Z" - }, - "events": [ - { - "uuid": "e312bcf7-5485-4dbc-ab23-de49432376fc", - "start": { - "$date": "2021-06-16T21:04:19.000Z" - }, - "end": { - "$date": "2021-06-16T22:16:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab82b8a1-bb75-4ed4-a80e-83e779abd05e", - "start": { - "$date": "2021-06-16T22:16:19.000Z" - }, - "end": { - "$date": "2021-06-16T22:31:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "718c3edf-fc48-4a10-8418-56f96665b078", - "start": { - "$date": "2021-06-16T22:31:19.000Z" - }, - "end": { - "$date": "2021-06-17T03:53:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a14b68b-f2cf-4cd6-ad23-56fa500111a3", - "start": { - "$date": "2021-06-17T03:53:19.000Z" - }, - "end": { - "$date": "2021-06-17T03:58:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "25c30315-de91-4ea1-abf7-8391e76644b9", - "start": { - "$date": "2021-06-17T03:58:19.000Z" - }, - "end": { - "$date": "2021-06-17T04:08:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c56a16b2-622b-41fc-903a-57169ea992c0", - "start": { - "$date": "2021-06-17T04:08:19.000Z" - }, - "end": { - "$date": "2021-06-17T04:13:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e9e0c8a-1319-409b-a595-b65e6543b7cc", - "start": { - "$date": "2021-06-17T04:13:19.000Z" - }, - "end": { - "$date": "2021-06-17T06:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ce19c72e-39d1-4623-b03c-fcf9ab8cc143", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-16T21:11:43.000Z" - }, - "end": { - "$date": "2021-06-16T23:48:27.000Z" - }, - "events": [ - { - "uuid": "57179945-719d-4913-bf53-6f26d0cf331d", - "start": { - "$date": "2021-06-16T21:11:43.000Z" - }, - "end": { - "$date": "2021-06-16T23:48:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "461a56f0-a522-45bd-b22c-d21825e6465c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-16T21:12:47.000Z" - }, - "end": { - "$date": "2021-06-16T22:10:06.000Z" - }, - "events": [ - { - "uuid": "6df111bf-3ab7-4f3b-98ba-a0f1b658f270", - "start": { - "$date": "2021-06-16T21:12:47.000Z" - }, - "end": { - "$date": "2021-06-16T22:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "72c183cb-532c-4627-8c4d-fdfb70b10c28", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-16T21:47:17.000Z" - }, - "end": { - "$date": "2021-06-16T22:02:29.000Z" - }, - "events": [ - { - "uuid": "bb8af639-3308-44c6-a0e4-c4725938c6e1", - "start": { - "$date": "2021-06-16T21:47:17.000Z" - }, - "end": { - "$date": "2021-06-16T22:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "66f809b5-960c-4c6f-8916-e18106e2080f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-16T21:54:12.000Z" - }, - "end": { - "$date": "2021-06-16T22:06:35.000Z" - }, - "events": [ - { - "uuid": "cbdb4084-f496-4f9a-84c8-fe64d71ee160", - "start": { - "$date": "2021-06-16T21:54:12.000Z" - }, - "end": { - "$date": "2021-06-16T22:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0bd3d8d1-3f41-4e39-bad9-1d43d0a3de10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-16T22:10:15.000Z" - }, - "end": { - "$date": "2021-06-16T22:48:16.000Z" - }, - "events": [ - { - "uuid": "67594336-a6c9-453d-bb48-2c85e5edf09a", - "start": { - "$date": "2021-06-16T22:10:15.000Z" - }, - "end": { - "$date": "2021-06-16T22:48:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0690c3d1-7bf2-4446-9350-184a36d8c08e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-16T22:17:43.000Z" - }, - "end": { - "$date": "2021-06-16T23:26:15.000Z" - }, - "events": [ - { - "uuid": "6c19ebb6-73c1-4b18-89a9-fa325ade91f1", - "start": { - "$date": "2021-06-16T22:17:43.000Z" - }, - "end": { - "$date": "2021-06-16T23:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2a640d7d-ca52-4326-b288-33af01a41ffc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-16T22:52:29.000Z" - }, - "end": { - "$date": "2021-06-16T22:53:34.000Z" - }, - "events": [ - { - "uuid": "7d7669d8-3786-408b-b1f7-47eec8e7485b", - "start": { - "$date": "2021-06-16T22:52:29.000Z" - }, - "end": { - "$date": "2021-06-16T22:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "029b3662-5b02-410c-9071-44e22fa7cd07", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-16T22:53:44.000Z" - }, - "end": { - "$date": "2021-06-16T22:55:55.000Z" - }, - "events": [ - { - "uuid": "e9d52755-0e7b-4fb2-b5dc-b75097138bdf", - "start": { - "$date": "2021-06-16T22:53:44.000Z" - }, - "end": { - "$date": "2021-06-16T22:55:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "06ba5cb3-1d9b-405d-8616-6eb3f153ca73", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-16T22:56:00.000Z" - }, - "end": { - "$date": "2021-06-16T23:54:20.000Z" - }, - "events": [ - { - "uuid": "1cd738af-226c-4c9b-9724-8bdb43d8777a", - "start": { - "$date": "2021-06-16T22:56:00.000Z" - }, - "end": { - "$date": "2021-06-16T23:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "507b5951-a773-4647-895e-ab50e6bd3103", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-16T23:44:42.000Z" - }, - "end": { - "$date": "2021-06-17T10:11:02.000Z" - }, - "events": [ - { - "uuid": "2bfca79f-45f2-4269-998a-9d11c328830b", - "start": { - "$date": "2021-06-16T23:44:42.000Z" - }, - "end": { - "$date": "2021-06-17T00:23:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea14c422-ccd1-45f8-ad7b-8e0c55fd81fd", - "start": { - "$date": "2021-06-17T00:23:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:13:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48d22dd0-266d-4a64-b73c-924fb3bb5009", - "start": { - "$date": "2021-06-17T01:13:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:23:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3dd2e5f8-5e89-437a-937f-c9cfda5f6100", - "start": { - "$date": "2021-06-17T01:23:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:26:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18010a7e-09e5-4227-80e1-930ebc9fc913", - "start": { - "$date": "2021-06-17T01:26:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:29:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "663f0ec0-b408-4191-9de4-9a5719aec9cb", - "start": { - "$date": "2021-06-17T01:29:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:49:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb2ea0e9-e50e-495d-a27b-4b959f741da4", - "start": { - "$date": "2021-06-17T01:49:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:51:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de0baa54-8cac-41f6-ab60-795968cb3cca", - "start": { - "$date": "2021-06-17T01:51:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:54:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "857422c8-5976-42b7-a70f-d759517d853d", - "start": { - "$date": "2021-06-17T01:54:42.000Z" - }, - "end": { - "$date": "2021-06-17T01:56:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31292956-7c00-4ad6-94d8-0889f549bea4", - "start": { - "$date": "2021-06-17T01:56:42.000Z" - }, - "end": { - "$date": "2021-06-17T03:02:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "acd7dc72-51bc-43a0-85a6-92f9bece4912", - "start": { - "$date": "2021-06-17T03:02:42.000Z" - }, - "end": { - "$date": "2021-06-17T03:04:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c24930c1-5eb2-4625-977f-c51c4e04b853", - "start": { - "$date": "2021-06-17T03:04:42.000Z" - }, - "end": { - "$date": "2021-06-17T03:12:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba36d2ac-60f6-4665-b4b2-ff798cc57334", - "start": { - "$date": "2021-06-17T03:12:42.000Z" - }, - "end": { - "$date": "2021-06-17T03:16:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5fe6e7a-06dc-489b-a136-bd0575145bfc", - "start": { - "$date": "2021-06-17T03:16:42.000Z" - }, - "end": { - "$date": "2021-06-17T03:23:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6245db9a-637b-4185-a61c-9dcf1b9dd094", - "start": { - "$date": "2021-06-17T03:23:42.000Z" - }, - "end": { - "$date": "2021-06-17T03:33:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13294023-e46c-4d6a-bfdf-31932d6cdae6", - "start": { - "$date": "2021-06-17T03:33:42.000Z" - }, - "end": { - "$date": "2021-06-17T04:02:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "daa2e142-8b13-401c-8464-cf21755e5737", - "start": { - "$date": "2021-06-17T04:02:42.000Z" - }, - "end": { - "$date": "2021-06-17T04:04:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "820b8ebd-9a35-4e40-bd42-f4cee35163e0", - "start": { - "$date": "2021-06-17T04:04:42.000Z" - }, - "end": { - "$date": "2021-06-17T04:33:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "26f5b1ce-3b18-427d-b2a5-faad48cb1695", - "start": { - "$date": "2021-06-17T04:33:42.000Z" - }, - "end": { - "$date": "2021-06-17T04:36:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2adf7577-6dce-420a-8b8a-cbbcdd2ebee2", - "start": { - "$date": "2021-06-17T04:36:42.000Z" - }, - "end": { - "$date": "2021-06-17T05:08:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a06ce9c6-a8c9-482f-b0b7-86de3fed926e", - "start": { - "$date": "2021-06-17T05:08:42.000Z" - }, - "end": { - "$date": "2021-06-17T05:10:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "354bb650-5465-4014-8ac9-6b5703651659", - "start": { - "$date": "2021-06-17T05:10:42.000Z" - }, - "end": { - "$date": "2021-06-17T07:15:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0adca180-76c8-4ff2-8ea1-b95d6863de96", - "start": { - "$date": "2021-06-17T07:15:42.000Z" - }, - "end": { - "$date": "2021-06-17T07:25:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c663697-4dfb-480c-aa1a-7c38f46aa00c", - "start": { - "$date": "2021-06-17T07:25:42.000Z" - }, - "end": { - "$date": "2021-06-17T08:23:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aab34f4a-65b7-4095-9793-a266449c2a24", - "start": { - "$date": "2021-06-17T08:23:42.000Z" - }, - "end": { - "$date": "2021-06-17T08:33:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "646e0a1d-3829-46f8-b557-edc33f2d22f0", - "start": { - "$date": "2021-06-17T08:33:42.000Z" - }, - "end": { - "$date": "2021-06-17T10:09:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ecdd629c-f374-4959-8203-53693f87821f", - "start": { - "$date": "2021-06-17T10:09:42.000Z" - }, - "end": { - "$date": "2021-06-17T10:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c0c4d95-927e-4b6c-9eea-cc3bb322f144", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-17T00:16:47.000Z" - }, - "end": { - "$date": "2021-06-17T02:07:34.000Z" - }, - "events": [ - { - "uuid": "499f22cf-136a-4041-8ba5-505a5ef727e8", - "start": { - "$date": "2021-06-17T00:16:47.000Z" - }, - "end": { - "$date": "2021-06-17T01:07:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af480239-8270-4deb-ae95-57870fd8045a", - "start": { - "$date": "2021-06-17T01:07:47.000Z" - }, - "end": { - "$date": "2021-06-17T01:18:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a47f4d74-d0de-4282-be1b-59f4246b2201", - "start": { - "$date": "2021-06-17T01:18:47.000Z" - }, - "end": { - "$date": "2021-06-17T01:32:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "355fb667-68f5-4162-9f90-0fde5c993efa", - "start": { - "$date": "2021-06-17T01:32:47.000Z" - }, - "end": { - "$date": "2021-06-17T02:07:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "11d1a066-8e0d-49bb-899c-f2e1f0236de2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-17T00:36:25.000Z" - }, - "end": { - "$date": "2021-06-17T03:40:45.000Z" - }, - "events": [ - { - "uuid": "0d63aa44-f9f9-429d-9775-8f58eceed98f", - "start": { - "$date": "2021-06-17T00:36:25.000Z" - }, - "end": { - "$date": "2021-06-17T03:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "898a6a21-0648-494f-8663-affd60fce6c1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-17T00:44:08.000Z" - }, - "end": { - "$date": "2021-06-17T00:59:40.000Z" - }, - "events": [ - { - "uuid": "98017fcc-af75-4915-86e9-dff6d0ba79ec", - "start": { - "$date": "2021-06-17T00:44:08.000Z" - }, - "end": { - "$date": "2021-06-17T00:59:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ec9b6b2e-466c-4f06-b72b-3116fa59ecbf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T01:01:35.000Z" - }, - "end": { - "$date": "2021-06-17T01:03:40.000Z" - }, - "events": [ - { - "uuid": "1f998db2-37b0-4a8d-b702-11894834b080", - "start": { - "$date": "2021-06-17T01:01:35.000Z" - }, - "end": { - "$date": "2021-06-17T01:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08355822-da59-4ccb-ba3a-9d5a9fae8cac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T01:04:15.000Z" - }, - "end": { - "$date": "2021-06-17T01:21:45.000Z" - }, - "events": [ - { - "uuid": "ce86e1b5-60ec-48e6-8705-fdcbef920a63", - "start": { - "$date": "2021-06-17T01:04:15.000Z" - }, - "end": { - "$date": "2021-06-17T01:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "127058b5-5dd1-4a67-8b7a-417faaad419a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-17T01:16:02.000Z" - }, - "end": { - "$date": "2021-06-17T03:50:28.000Z" - }, - "events": [ - { - "uuid": "9d834ec7-da01-4d58-bf74-aa43b58138a9", - "start": { - "$date": "2021-06-17T01:16:02.000Z" - }, - "end": { - "$date": "2021-06-17T02:23:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa8f2e7c-7770-4d74-9568-9d606f2dd8eb", - "start": { - "$date": "2021-06-17T02:23:02.000Z" - }, - "end": { - "$date": "2021-06-17T02:31:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a41a4f3-5b01-4134-ae46-067220571532", - "start": { - "$date": "2021-06-17T02:31:02.000Z" - }, - "end": { - "$date": "2021-06-17T03:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "5e342591-3f6b-4e2c-b0ce-6c63da854a58", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T01:23:36.000Z" - }, - "end": { - "$date": "2021-06-17T03:46:11.000Z" - }, - "events": [ - { - "uuid": "0549c525-1415-4519-b6df-96f5f722b512", - "start": { - "$date": "2021-06-17T01:23:36.000Z" - }, - "end": { - "$date": "2021-06-17T03:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "014f044a-c0b4-4e61-a377-2a9d1ff41f62", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-17T01:27:23.000Z" - }, - "end": { - "$date": "2021-06-17T04:56:07.000Z" - }, - "events": [ - { - "uuid": "fa14980e-7d6c-4240-879a-c2ef0ab77574", - "start": { - "$date": "2021-06-17T01:27:23.000Z" - }, - "end": { - "$date": "2021-06-17T04:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e319bf05-5b0d-47a3-bdd0-3919087ce790", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-17T02:27:43.000Z" - }, - "end": { - "$date": "2021-06-17T03:59:59.000Z" - }, - "events": [ - { - "uuid": "b2ddf45c-a907-4bfd-bcc6-bf6f4a9fe355", - "start": { - "$date": "2021-06-17T02:27:43.000Z" - }, - "end": { - "$date": "2021-06-17T03:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "35761dbd-53e3-4f21-a1f4-defc5299e6da", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-17T02:37:19.000Z" - }, - "end": { - "$date": "2021-06-17T03:21:00.000Z" - }, - "events": [ - { - "uuid": "5b97e90e-9bb6-47e6-b994-f33dd6dc7a2a", - "start": { - "$date": "2021-06-17T02:37:19.000Z" - }, - "end": { - "$date": "2021-06-17T03:21:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "20323a68-ae7c-43a1-afd9-7c38210e86ae", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-17T03:21:24.000Z" - }, - "end": { - "$date": "2021-06-17T07:02:22.000Z" - }, - "events": [ - { - "uuid": "56e4abb0-b1ba-464b-ae94-c92ae7fbf19a", - "start": { - "$date": "2021-06-17T03:21:24.000Z" - }, - "end": { - "$date": "2021-06-17T07:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bbdf7098-5d9f-4810-a88c-7b0ec8becfa4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T03:48:36.000Z" - }, - "end": { - "$date": "2021-06-17T05:01:25.000Z" - }, - "events": [ - { - "uuid": "858b1cda-3bec-471f-9aa4-af66c3ef797b", - "start": { - "$date": "2021-06-17T03:48:36.000Z" - }, - "end": { - "$date": "2021-06-17T05:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87f73a5a-28da-4efd-a0d2-9bf93c65a8cd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-17T03:51:23.000Z" - }, - "end": { - "$date": "2021-06-17T05:31:32.000Z" - }, - "events": [ - { - "uuid": "cf3299a3-914a-4e1e-85a1-924d1fd4865e", - "start": { - "$date": "2021-06-17T03:51:23.000Z" - }, - "end": { - "$date": "2021-06-17T05:31:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "bb9e5438-841d-4abc-b488-b3a74611ab01", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-17T04:00:59.000Z" - }, - "end": { - "$date": "2021-06-17T04:30:39.000Z" - }, - "events": [ - { - "uuid": "b9105f6c-6e99-47a2-9936-7b4f049ced37", - "start": { - "$date": "2021-06-17T04:00:59.000Z" - }, - "end": { - "$date": "2021-06-17T04:30:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "399f52a3-6759-4971-b351-e46146ffa06b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-17T04:31:51.000Z" - }, - "end": { - "$date": "2021-06-17T05:31:57.000Z" - }, - "events": [ - { - "uuid": "b83fd080-938c-4d48-b81c-6211ce65705b", - "start": { - "$date": "2021-06-17T04:31:51.000Z" - }, - "end": { - "$date": "2021-06-17T05:31:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c6899ebc-aa98-41a6-b9a8-7939fc1e3636", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T05:01:59.000Z" - }, - "end": { - "$date": "2021-06-17T07:02:20.000Z" - }, - "events": [ - { - "uuid": "379223f6-65a1-44e3-a187-bbc335fb8279", - "start": { - "$date": "2021-06-17T05:01:59.000Z" - }, - "end": { - "$date": "2021-06-17T07:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "995470e1-a6d5-4347-a6ec-fa18f94754b5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-17T05:34:29.000Z" - }, - "end": { - "$date": "2021-06-17T06:14:00.000Z" - }, - "events": [ - { - "uuid": "8068d35c-8c00-4785-ae8a-e4082c9fb853", - "start": { - "$date": "2021-06-17T05:34:29.000Z" - }, - "end": { - "$date": "2021-06-17T06:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6bdc634e-e84a-4c9f-b4e2-9eb8725af9a0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-17T05:44:51.000Z" - }, - "end": { - "$date": "2021-06-17T07:03:44.000Z" - }, - "events": [ - { - "uuid": "5ac6e2e4-7072-42b1-8c3d-f04669fe6d5c", - "start": { - "$date": "2021-06-17T05:44:51.000Z" - }, - "end": { - "$date": "2021-06-17T07:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "57d76257-8a56-4e3e-8fa5-4d6b7ecdf207", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-17T05:45:53.000Z" - }, - "end": { - "$date": "2021-06-17T07:59:48.000Z" - }, - "events": [ - { - "uuid": "25c1f868-71f4-4b03-8f5d-397f2324b693", - "start": { - "$date": "2021-06-17T05:45:53.000Z" - }, - "end": { - "$date": "2021-06-17T07:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "82a8830a-f151-474a-af99-a7b7a90142ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-17T06:10:38.000Z" - }, - "end": { - "$date": "2021-06-17T09:49:18.000Z" - }, - "events": [ - { - "uuid": "cdcf3f47-e40a-4bcf-aac8-75ec94e0b221", - "start": { - "$date": "2021-06-17T06:10:38.000Z" - }, - "end": { - "$date": "2021-06-17T09:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edfe21fa-636e-43c2-b3f2-4b70869d4483", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-17T06:25:21.000Z" - }, - "end": { - "$date": "2021-06-17T06:54:01.000Z" - }, - "events": [ - { - "uuid": "d49db8ea-4f6d-4e07-b345-88ebf7e762f5", - "start": { - "$date": "2021-06-17T06:25:21.000Z" - }, - "end": { - "$date": "2021-06-17T06:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "79b81ee5-1a2b-4faa-9768-925322d55b78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-17T10:05:29.000Z" - }, - "end": { - "$date": "2021-06-17T10:37:50.000Z" - }, - "events": [ - { - "uuid": "1c2aa4de-a9a2-4b0a-86ca-fcd3bec4acb5", - "start": { - "$date": "2021-06-17T10:05:29.000Z" - }, - "end": { - "$date": "2021-06-17T10:37:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ad6949d-75f2-407b-9554-e5d75819f283", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-17T12:52:42.000Z" - }, - "end": { - "$date": "2021-06-17T13:00:59.000Z" - }, - "events": [ - { - "uuid": "bca5e18f-ccb6-4eb5-81d2-15afaa279cfe", - "start": { - "$date": "2021-06-17T12:52:42.000Z" - }, - "end": { - "$date": "2021-06-17T13:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "9e4167d8-d8fc-40cd-9f70-699c12b9cab1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-17T13:07:15.000Z" - }, - "end": { - "$date": "2021-06-17T13:19:31.000Z" - }, - "events": [ - { - "uuid": "7de15d82-5b00-4ca9-94c4-10559522f9c9", - "start": { - "$date": "2021-06-17T13:07:15.000Z" - }, - "end": { - "$date": "2021-06-17T13:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "46183c41-399d-4547-a1a2-93284e741809", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-17T13:57:24.000Z" - }, - "end": { - "$date": "2021-06-17T19:50:13.000Z" - }, - "events": [ - { - "uuid": "621e38d0-814c-4ec1-a855-d71b2673d9e5", - "start": { - "$date": "2021-06-17T13:57:24.000Z" - }, - "end": { - "$date": "2021-06-17T15:18:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9666f178-bc02-4ad4-b333-27fa1d5e8388", - "start": { - "$date": "2021-06-17T15:18:24.000Z" - }, - "end": { - "$date": "2021-06-17T15:30:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ccfc38df-41b5-4bcc-b90c-ed2e8517b5c4", - "start": { - "$date": "2021-06-17T15:30:24.000Z" - }, - "end": { - "$date": "2021-06-17T18:56:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d14a0514-412b-4b99-bf69-7d3e2bccec5d", - "start": { - "$date": "2021-06-17T18:56:24.000Z" - }, - "end": { - "$date": "2021-06-17T19:07:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a5a50b0b-b474-4bec-a339-a5d57fbdb7b1", - "start": { - "$date": "2021-06-17T19:07:24.000Z" - }, - "end": { - "$date": "2021-06-17T19:13:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a359e66b-40f4-4210-9ad6-8d5918111254", - "start": { - "$date": "2021-06-17T19:13:24.000Z" - }, - "end": { - "$date": "2021-06-17T19:50:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "253e36d1-9ee7-4d8b-82de-846eed8f2e9d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-17T15:47:19.000Z" - }, - "end": { - "$date": "2021-06-17T16:08:18.000Z" - }, - "events": [ - { - "uuid": "938d9531-c74a-4c98-954d-b391d754d4a6", - "start": { - "$date": "2021-06-17T15:47:19.000Z" - }, - "end": { - "$date": "2021-06-17T16:08:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2f0dc15a-ec6e-4bd0-88b7-1eb9ceb218f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-17T16:09:19.000Z" - }, - "end": { - "$date": "2021-06-17T16:55:34.000Z" - }, - "events": [ - { - "uuid": "3e145a77-2e59-4e21-8744-de484fe08791", - "start": { - "$date": "2021-06-17T16:09:19.000Z" - }, - "end": { - "$date": "2021-06-17T16:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab0932c5-a13c-402a-bb9c-3b87839065c4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-17T17:28:04.000Z" - }, - "end": { - "$date": "2021-06-17T18:02:54.000Z" - }, - "events": [ - { - "uuid": "251b7f0a-29ec-4a7a-b278-4f8d44551bb3", - "start": { - "$date": "2021-06-17T17:28:04.000Z" - }, - "end": { - "$date": "2021-06-17T18:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ed569033-5077-499a-afb6-5332bc778024", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-17T18:04:36.000Z" - }, - "end": { - "$date": "2021-06-17T20:56:02.000Z" - }, - "events": [ - { - "uuid": "ae9a5b0d-c659-4d46-940b-8ecbdab609c0", - "start": { - "$date": "2021-06-17T18:04:36.000Z" - }, - "end": { - "$date": "2021-06-17T19:00:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "43869027-890a-4984-b884-e6efa0d34f5c", - "start": { - "$date": "2021-06-17T19:00:36.000Z" - }, - "end": { - "$date": "2021-06-17T20:13:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5c5df61-cd06-4d39-9043-edfc4f260077", - "start": { - "$date": "2021-06-17T20:13:36.000Z" - }, - "end": { - "$date": "2021-06-17T20:15:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "750e59d8-8661-414f-932d-5d1e9eaf3a9a", - "start": { - "$date": "2021-06-17T20:15:36.000Z" - }, - "end": { - "$date": "2021-06-17T20:53:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f4874c9-dcda-4d0f-954f-02425e6e882c", - "start": { - "$date": "2021-06-17T20:53:36.000Z" - }, - "end": { - "$date": "2021-06-17T20:56:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f231ecd1-462c-4938-9192-b4baca75773f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T19:02:26.000Z" - }, - "end": { - "$date": "2021-06-17T20:55:52.000Z" - }, - "events": [ - { - "uuid": "03e652c7-e80e-4861-bc66-8c4937c9d81a", - "start": { - "$date": "2021-06-17T19:02:26.000Z" - }, - "end": { - "$date": "2021-06-17T20:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fd950cf9-060b-400e-a344-85502ad44e91", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-17T20:36:08.000Z" - }, - "end": { - "$date": "2021-06-17T21:35:41.000Z" - }, - "events": [ - { - "uuid": "590fb3e0-5145-496d-8c4d-4a7c9eec2973", - "start": { - "$date": "2021-06-17T20:36:08.000Z" - }, - "end": { - "$date": "2021-06-17T21:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a3cbfb1d-9ac3-459d-80ce-169b85c1a07f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-17T20:56:55.000Z" - }, - "end": { - "$date": "2021-06-18T04:57:48.000Z" - }, - "events": [ - { - "uuid": "fb79c019-e9c1-4da7-ab02-5d0ffe7dcf79", - "start": { - "$date": "2021-06-17T20:56:55.000Z" - }, - "end": { - "$date": "2021-06-17T23:30:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e260a84-d2b0-4858-b6c7-231c67f6a022", - "start": { - "$date": "2021-06-17T23:30:55.000Z" - }, - "end": { - "$date": "2021-06-18T00:20:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bffa16dd-7088-4326-bef9-2e9e42dbe699", - "start": { - "$date": "2021-06-18T00:20:55.000Z" - }, - "end": { - "$date": "2021-06-18T00:26:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "548cec07-4287-4945-9fe0-c92a80695d7e", - "start": { - "$date": "2021-06-18T00:26:55.000Z" - }, - "end": { - "$date": "2021-06-18T01:06:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90b89370-922d-46b0-98e0-0c4f79569c63", - "start": { - "$date": "2021-06-18T01:06:55.000Z" - }, - "end": { - "$date": "2021-06-18T01:09:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "298d6b3c-3146-4307-9358-7b7f944f78a2", - "start": { - "$date": "2021-06-18T01:09:55.000Z" - }, - "end": { - "$date": "2021-06-18T01:13:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f36fbe88-3439-4dfc-a215-fb2cef7c8eb9", - "start": { - "$date": "2021-06-18T01:13:55.000Z" - }, - "end": { - "$date": "2021-06-18T01:30:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de53f8d1-2bcd-459a-845a-e7a3e2d88d64", - "start": { - "$date": "2021-06-18T01:30:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:04:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5df9a1ea-ff51-4c74-bd0a-c1035e586b38", - "start": { - "$date": "2021-06-18T02:04:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:23:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5cff3121-b0cf-45db-a5d9-98a45ef8efcf", - "start": { - "$date": "2021-06-18T02:23:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:25:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7d0009a5-14cb-4f25-bb18-71a0c50b6bf8", - "start": { - "$date": "2021-06-18T02:25:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:27:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12256027-ba4c-4e8d-835f-5df60d446ada", - "start": { - "$date": "2021-06-18T02:27:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:28:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9efaa4fb-4bd7-4987-a0d1-35a6f8812179", - "start": { - "$date": "2021-06-18T02:28:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:31:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20a709d0-75d0-402a-95f7-554179199c03", - "start": { - "$date": "2021-06-18T02:31:55.000Z" - }, - "end": { - "$date": "2021-06-18T02:41:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e42b2157-c7e1-41a0-8316-85e7a36c6a64", - "start": { - "$date": "2021-06-18T02:41:55.000Z" - }, - "end": { - "$date": "2021-06-18T04:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f70cba6d-a420-457c-b881-c43a5c0df30c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-17T22:05:30.000Z" - }, - "end": { - "$date": "2021-06-17T23:54:29.000Z" - }, - "events": [ - { - "uuid": "7183d8da-6c49-4b2b-82d7-0c54825de604", - "start": { - "$date": "2021-06-17T22:05:30.000Z" - }, - "end": { - "$date": "2021-06-17T23:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "67a7594b-f534-4add-89c1-391bb7171cde", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-17T22:35:19.000Z" - }, - "end": { - "$date": "2021-06-18T09:07:51.000Z" - }, - "events": [ - { - "uuid": "3efe5084-ed8c-4d4c-a401-5f84fa83294a", - "start": { - "$date": "2021-06-17T22:35:19.000Z" - }, - "end": { - "$date": "2021-06-18T02:12:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8237fe0e-5137-4f10-82d7-02550f9183cd", - "start": { - "$date": "2021-06-18T02:12:19.000Z" - }, - "end": { - "$date": "2021-06-18T02:17:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "742c6ca4-893b-4ff2-9432-4733935c0baf", - "start": { - "$date": "2021-06-18T02:17:19.000Z" - }, - "end": { - "$date": "2021-06-18T09:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a3acad38-111a-41b9-9e4d-b3783801757d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-17T22:40:44.000Z" - }, - "end": { - "$date": "2021-06-17T23:54:36.000Z" - }, - "events": [ - { - "uuid": "b3846f3f-29cb-402b-8100-4d3587f8052a", - "start": { - "$date": "2021-06-17T22:40:44.000Z" - }, - "end": { - "$date": "2021-06-17T23:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1462ea10-661b-4302-b871-a1f693e55dcf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T23:10:28.000Z" - }, - "end": { - "$date": "2021-06-17T23:39:18.000Z" - }, - "events": [ - { - "uuid": "d807b99f-d5c1-4a15-9ce7-244f609f5544", - "start": { - "$date": "2021-06-17T23:10:28.000Z" - }, - "end": { - "$date": "2021-06-17T23:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9cc83d69-3371-4166-ac54-61c2ac0833e7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-17T23:39:59.000Z" - }, - "end": { - "$date": "2021-06-18T00:32:17.000Z" - }, - "events": [ - { - "uuid": "9a60d47e-a84b-43c4-816f-5f0013cdead8", - "start": { - "$date": "2021-06-17T23:39:59.000Z" - }, - "end": { - "$date": "2021-06-18T00:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "748ac801-2bcb-432e-9bd1-c36ffff1881e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-17T23:49:48.000Z" - }, - "end": { - "$date": "2021-06-18T00:34:04.000Z" - }, - "events": [ - { - "uuid": "f6d2e1ed-8214-4088-a6d6-60c36b0ae7fe", - "start": { - "$date": "2021-06-17T23:49:48.000Z" - }, - "end": { - "$date": "2021-06-18T00:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ed47e956-c6eb-4cae-a056-755f5fcff735", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-18T00:23:40.000Z" - }, - "end": { - "$date": "2021-06-18T01:04:18.000Z" - }, - "events": [ - { - "uuid": "98f0b923-fdad-484e-8c72-2227b29b2e94", - "start": { - "$date": "2021-06-18T00:23:40.000Z" - }, - "end": { - "$date": "2021-06-18T01:04:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cf4a1af9-fb0e-4ea2-b7fa-c3df48540d4e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-18T00:52:56.000Z" - }, - "end": { - "$date": "2021-06-18T01:17:34.000Z" - }, - "events": [ - { - "uuid": "bd0c045c-3ad9-4292-be34-0c9595285dd8", - "start": { - "$date": "2021-06-18T00:52:56.000Z" - }, - "end": { - "$date": "2021-06-18T01:17:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ee27ca3f-3a6e-4357-81f8-1f2bf34dab14", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-18T01:18:26.000Z" - }, - "end": { - "$date": "2021-06-18T01:19:48.000Z" - }, - "events": [ - { - "uuid": "eb44bf76-cbe5-487c-b617-ceebb01a0e01", - "start": { - "$date": "2021-06-18T01:18:26.000Z" - }, - "end": { - "$date": "2021-06-18T01:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "94e4eddd-42ca-498a-8839-95c41d72f5a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-18T01:22:09.000Z" - }, - "end": { - "$date": "2021-06-18T03:19:54.000Z" - }, - "events": [ - { - "uuid": "560bd018-9cda-40e1-b31b-330c18422a76", - "start": { - "$date": "2021-06-18T01:22:09.000Z" - }, - "end": { - "$date": "2021-06-18T02:29:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a548f923-44ef-4165-95e2-09c4486c557b", - "start": { - "$date": "2021-06-18T02:29:09.000Z" - }, - "end": { - "$date": "2021-06-18T03:00:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0304bbda-159b-47eb-ac8e-1510c14f8bb0", - "start": { - "$date": "2021-06-18T03:00:09.000Z" - }, - "end": { - "$date": "2021-06-18T03:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "7f82f30f-850c-458f-bb3d-5344958ee14e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-18T01:22:58.000Z" - }, - "end": { - "$date": "2021-06-18T07:05:52.000Z" - }, - "events": [ - { - "uuid": "27b10017-5670-4a30-aef5-c60cab727377", - "start": { - "$date": "2021-06-18T01:22:58.000Z" - }, - "end": { - "$date": "2021-06-18T07:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "83bb18d1-0bf1-456f-8e2e-884ffcbdc37c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-18T01:23:10.000Z" - }, - "end": { - "$date": "2021-06-18T07:05:21.000Z" - }, - "events": [ - { - "uuid": "6e670048-1f78-422a-8e63-f08e4de2215c", - "start": { - "$date": "2021-06-18T01:23:10.000Z" - }, - "end": { - "$date": "2021-06-18T07:05:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "996ed388-e8fa-48e4-9157-71fc0e1ef446", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-18T01:33:16.000Z" - }, - "end": { - "$date": "2021-06-18T05:31:17.000Z" - }, - "events": [ - { - "uuid": "fd574362-017e-4d7f-9c86-8afb12c42c38", - "start": { - "$date": "2021-06-18T01:33:16.000Z" - }, - "end": { - "$date": "2021-06-18T05:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4a72495e-de0d-43ab-9756-01b4d6828729", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-18T02:41:10.000Z" - }, - "end": { - "$date": "2021-06-18T02:42:56.000Z" - }, - "events": [ - { - "uuid": "022ec733-889b-41bc-94f1-5c9b80b05a8a", - "start": { - "$date": "2021-06-18T02:41:10.000Z" - }, - "end": { - "$date": "2021-06-18T02:42:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ed024fe8-6ac3-491a-90ad-3a5459720457", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-18T02:43:11.000Z" - }, - "end": { - "$date": "2021-06-18T03:18:49.000Z" - }, - "events": [ - { - "uuid": "6d955d8e-b8d6-4290-80a2-b61e59fb7bb6", - "start": { - "$date": "2021-06-18T02:43:11.000Z" - }, - "end": { - "$date": "2021-06-18T03:18:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d129474f-b3b8-43d7-9ce8-78ec53dfa357", - "uuid": "60b38020-ad5e-40cc-9c23-8bdbef3c5c25", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-18T03:22:14.000Z" - }, - "end": { - "$date": "2021-06-18T05:02:35.000Z" - }, - "events": [ - { - "uuid": "ae02f69c-2ecf-4289-8d76-aa159f6041ab", - "start": { - "$date": "2021-06-18T03:22:14.000Z" - }, - "end": { - "$date": "2021-06-18T05:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "455a76f5-0607-43f4-b7c6-93576fe7418a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-18T03:34:42.000Z" - }, - "end": { - "$date": "2021-06-18T04:12:38.000Z" - }, - "events": [ - { - "uuid": "da818237-23b7-4b52-9d55-04a432190284", - "start": { - "$date": "2021-06-18T03:34:42.000Z" - }, - "end": { - "$date": "2021-06-18T04:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0233f59-f285-4046-94fa-bac5d2c7a609", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-18T04:26:55.000Z" - }, - "end": { - "$date": "2021-06-18T04:47:09.000Z" - }, - "events": [ - { - "uuid": "a8b2b0e6-21bc-47aa-b738-bd2af7c523ae", - "start": { - "$date": "2021-06-18T04:26:55.000Z" - }, - "end": { - "$date": "2021-06-18T04:47:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50d2be04-3e28-4129-a3a2-0ec2d3174c13", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-18T04:55:36.000Z" - }, - "end": { - "$date": "2021-06-18T05:11:36.000Z" - }, - "events": [ - { - "uuid": "759f9f83-7fe7-4b96-8f24-3cf1bada147d", - "start": { - "$date": "2021-06-18T04:55:36.000Z" - }, - "end": { - "$date": "2021-06-18T05:11:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f24ab850-9860-44b2-95e9-c6825bdc06b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-18T05:33:05.000Z" - }, - "end": { - "$date": "2021-06-18T05:33:40.000Z" - }, - "events": [ - { - "uuid": "069b3cf4-37df-4b3f-994b-45da1447cbb9", - "start": { - "$date": "2021-06-18T05:33:05.000Z" - }, - "end": { - "$date": "2021-06-18T05:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "56acb0a9-536b-4694-b3ca-feff73412761", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T05:16:09.000Z" - }, - "end": { - "$date": "2021-06-18T05:20:30.000Z" - }, - "events": [ - { - "uuid": "64e4644f-fb41-4a8f-9c1d-9a78d5467711", - "start": { - "$date": "2021-06-18T05:16:09.000Z" - }, - "end": { - "$date": "2021-06-18T05:20:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30d6ce05-9de1-410e-9721-178fb45dfc79", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T05:36:20.000Z" - }, - "end": { - "$date": "2021-06-18T06:09:27.000Z" - }, - "events": [ - { - "uuid": "779349ec-8b1c-47ab-a931-88be88e3fd43", - "start": { - "$date": "2021-06-18T05:36:20.000Z" - }, - "end": { - "$date": "2021-06-18T06:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54cfc8ec-5613-4daf-ad6d-02648b3ff35b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-18T05:36:26.000Z" - }, - "end": { - "$date": "2021-06-18T06:09:21.000Z" - }, - "events": [ - { - "uuid": "948589f8-2dee-4ab6-8a6e-0a7274ceb698", - "start": { - "$date": "2021-06-18T05:36:26.000Z" - }, - "end": { - "$date": "2021-06-18T06:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "057661bf-b404-4ccf-b9a7-a1607684bb42", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-18T06:12:45.000Z" - }, - "end": { - "$date": "2021-06-18T07:34:12.000Z" - }, - "events": [ - { - "uuid": "59bb6e72-4371-4ca7-9d74-ff842eb652e7", - "start": { - "$date": "2021-06-18T06:12:45.000Z" - }, - "end": { - "$date": "2021-06-18T07:34:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d5ea81f-eac0-4403-8d4b-15af846f5d7b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-18T06:13:38.000Z" - }, - "end": { - "$date": "2021-06-18T06:15:07.000Z" - }, - "events": [ - { - "uuid": "c8e44db8-1446-4380-8490-bf754e2041a8", - "start": { - "$date": "2021-06-18T06:13:38.000Z" - }, - "end": { - "$date": "2021-06-18T06:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "69e80187-f42a-4949-8017-54ffe6258066", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-18T17:39:59.000Z" - }, - "end": { - "$date": "2021-06-18T19:03:31.000Z" - }, - "events": [ - { - "uuid": "b88db8a1-878f-45f3-b4c8-75561d8a6da8", - "start": { - "$date": "2021-06-18T17:39:59.000Z" - }, - "end": { - "$date": "2021-06-18T19:03:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "352f8c0a-4352-4bd3-81cd-60a7d208cec6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T17:51:53.000Z" - }, - "end": { - "$date": "2021-06-18T18:24:02.000Z" - }, - "events": [ - { - "uuid": "9910a443-654c-482d-a37d-c61d7e6df352", - "start": { - "$date": "2021-06-18T17:51:53.000Z" - }, - "end": { - "$date": "2021-06-18T18:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f0e82354-1ca3-4df5-aad0-de6bce03af25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-18T17:56:23.000Z" - }, - "end": { - "$date": "2021-06-19T05:01:54.000Z" - }, - "events": [ - { - "uuid": "9d2ae677-ad84-431e-a516-351a91a95da5", - "start": { - "$date": "2021-06-18T17:56:23.000Z" - }, - "end": { - "$date": "2021-06-18T20:04:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b2191f0-b35a-4127-8fba-e3238b1f53f0", - "start": { - "$date": "2021-06-18T20:04:23.000Z" - }, - "end": { - "$date": "2021-06-18T20:22:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c1a05f95-5529-4d5e-ac3d-a31541e41d2f", - "start": { - "$date": "2021-06-18T20:22:23.000Z" - }, - "end": { - "$date": "2021-06-18T20:30:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c5945ce1-69a0-4f54-8f58-1b3a68667bee", - "start": { - "$date": "2021-06-18T20:30:23.000Z" - }, - "end": { - "$date": "2021-06-18T21:16:23.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "ecf279fc-d620-4e89-921f-400fe9d8dba6", - "start": { - "$date": "2021-06-18T21:16:23.000Z" - }, - "end": { - "$date": "2021-06-18T22:04:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba5b5f46-667d-4a4d-b6e4-1f54b2981a91", - "start": { - "$date": "2021-06-18T22:04:23.000Z" - }, - "end": { - "$date": "2021-06-19T01:43:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "acb6a11c-a797-4572-89df-e09eef8678b7", - "start": { - "$date": "2021-06-19T01:43:23.000Z" - }, - "end": { - "$date": "2021-06-19T03:59:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4431dab0-847c-4751-a38b-a7bd658f9cc8", - "start": { - "$date": "2021-06-19T03:59:23.000Z" - }, - "end": { - "$date": "2021-06-19T04:00:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d56a07d4-4f3d-427a-bf12-0b79e4b7ab28", - "start": { - "$date": "2021-06-19T04:00:23.000Z" - }, - "end": { - "$date": "2021-06-19T04:02:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7ebe9f6-2ff4-4022-a66b-b83e4d3f1478", - "start": { - "$date": "2021-06-19T04:02:23.000Z" - }, - "end": { - "$date": "2021-06-19T05:00:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b76fe1c-f6e2-458d-8370-c1f70e888e9f", - "start": { - "$date": "2021-06-19T05:00:23.000Z" - }, - "end": { - "$date": "2021-06-19T05:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "51d7007b-0183-4d55-a948-b251500e494f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T18:27:43.000Z" - }, - "end": { - "$date": "2021-06-18T18:46:56.000Z" - }, - "events": [ - { - "uuid": "f28dddd8-9d98-4a47-add9-08fa7cde2591", - "start": { - "$date": "2021-06-18T18:27:43.000Z" - }, - "end": { - "$date": "2021-06-18T18:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "6b8db695-7249-4526-8a04-c816530d06a8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T18:47:06.000Z" - }, - "end": { - "$date": "2021-06-18T20:31:11.000Z" - }, - "events": [ - { - "uuid": "e6e298a5-9993-4bdc-a76a-099f44f2ead7", - "start": { - "$date": "2021-06-18T18:47:06.000Z" - }, - "end": { - "$date": "2021-06-18T20:31:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "91c5eb0c-5e78-40b2-aa89-e0400a298378", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-18T19:05:47.000Z" - }, - "end": { - "$date": "2021-06-18T19:31:47.000Z" - }, - "events": [ - { - "uuid": "1ebf590d-0b37-4440-9ac1-7eaca09d10c4", - "start": { - "$date": "2021-06-18T19:05:47.000Z" - }, - "end": { - "$date": "2021-06-18T19:31:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c96729c3-28de-4aba-838e-7b8a62fb82f9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-18T19:41:59.000Z" - }, - "end": { - "$date": "2021-06-18T22:30:58.000Z" - }, - "events": [ - { - "uuid": "35b70209-3f7a-4a5b-8fc6-0234a95123b2", - "start": { - "$date": "2021-06-18T19:41:59.000Z" - }, - "end": { - "$date": "2021-06-18T22:30:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36bb1c18-cf69-4872-8629-308cc71978bb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-18T19:55:44.000Z" - }, - "end": { - "$date": "2021-06-18T22:36:45.000Z" - }, - "events": [ - { - "uuid": "295aec20-d873-4ffe-a6d7-0548635d14d1", - "start": { - "$date": "2021-06-18T19:55:44.000Z" - }, - "end": { - "$date": "2021-06-18T22:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2224895d-c832-4433-a640-efbdf787db77", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T20:31:16.000Z" - }, - "end": { - "$date": "2021-06-18T21:25:17.000Z" - }, - "events": [ - { - "uuid": "291871e0-4453-4bea-9467-fc63bd5d63d7", - "start": { - "$date": "2021-06-18T20:31:16.000Z" - }, - "end": { - "$date": "2021-06-18T20:50:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "05b41def-419c-4041-8180-36467c2bcb8f", - "start": { - "$date": "2021-06-18T20:50:16.000Z" - }, - "end": { - "$date": "2021-06-18T20:54:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a514bd3-6ff9-4815-bce5-77b413124f84", - "start": { - "$date": "2021-06-18T20:54:16.000Z" - }, - "end": { - "$date": "2021-06-18T21:06:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ad92e18f-49bb-4959-8db8-c1df462ef784", - "start": { - "$date": "2021-06-18T21:06:16.000Z" - }, - "end": { - "$date": "2021-06-18T21:08:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff083914-f76a-4cff-9016-c94d64a70b4e", - "start": { - "$date": "2021-06-18T21:08:16.000Z" - }, - "end": { - "$date": "2021-06-18T21:21:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "79bfcb0c-5e96-4387-97cf-42819206c8e3", - "start": { - "$date": "2021-06-18T21:21:16.000Z" - }, - "end": { - "$date": "2021-06-18T21:25:17.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff4365b9-293e-438d-b3c4-3b667f9b1510", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-18T20:53:06.000Z" - }, - "end": { - "$date": "2021-06-18T21:10:58.000Z" - }, - "events": [ - { - "uuid": "28b35d5b-029c-4e72-80b9-b6e25a3ae038", - "start": { - "$date": "2021-06-18T20:53:06.000Z" - }, - "end": { - "$date": "2021-06-18T21:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6e75fb1d-dcb6-4d78-8c9b-b8b381abc21f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-18T21:11:08.000Z" - }, - "end": { - "$date": "2021-06-18T22:30:35.000Z" - }, - "events": [ - { - "uuid": "c3b0f38b-58be-45ae-994a-da22a301aab4", - "start": { - "$date": "2021-06-18T21:11:08.000Z" - }, - "end": { - "$date": "2021-06-18T22:30:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3c1ed31f-183f-4b27-9b49-550dcd7e397b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-18T21:24:35.000Z" - }, - "end": { - "$date": "2021-06-19T00:50:46.000Z" - }, - "events": [ - { - "uuid": "556149cd-e51c-4cb4-88b1-04d2a630de26", - "start": { - "$date": "2021-06-18T21:24:35.000Z" - }, - "end": { - "$date": "2021-06-19T00:50:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6d1bd18-0b98-4389-bec6-742c70a43188", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T22:19:48.000Z" - }, - "end": { - "$date": "2021-06-18T22:53:50.000Z" - }, - "events": [ - { - "uuid": "feb28211-b795-4ff4-8450-d2ec18c46e43", - "start": { - "$date": "2021-06-18T22:19:48.000Z" - }, - "end": { - "$date": "2021-06-18T22:53:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c731e573-8a66-4aa8-a3f8-be2c85be0360", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-18T22:25:14.000Z" - }, - "end": { - "$date": "2021-06-19T00:48:12.000Z" - }, - "events": [ - { - "uuid": "ec23e4c8-3d82-4695-bd73-f90f909eb28c", - "start": { - "$date": "2021-06-18T22:25:14.000Z" - }, - "end": { - "$date": "2021-06-19T00:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "8e8beee1-531d-421a-b453-73d851ccb555", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-18T22:30:36.000Z" - }, - "end": { - "$date": "2021-06-19T01:13:19.000Z" - }, - "events": [ - { - "uuid": "b27584ac-c4e4-4a14-9df0-8a2000c0341f", - "start": { - "$date": "2021-06-18T22:30:36.000Z" - }, - "end": { - "$date": "2021-06-19T01:13:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e63826a5-74ed-415f-8dc3-07744fe0bc4e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-18T22:55:05.000Z" - }, - "end": { - "$date": "2021-06-18T23:28:28.000Z" - }, - "events": [ - { - "uuid": "5b56f353-f53c-4522-bcf9-9a46b90379b3", - "start": { - "$date": "2021-06-18T22:55:05.000Z" - }, - "end": { - "$date": "2021-06-18T23:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "01aed660-6a30-49ed-bb12-58d6a03ea5e6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T00:48:38.000Z" - }, - "end": { - "$date": "2021-06-19T03:03:14.000Z" - }, - "events": [ - { - "uuid": "05589ae7-1d89-4290-9173-74aea5ef8505", - "start": { - "$date": "2021-06-19T00:48:38.000Z" - }, - "end": { - "$date": "2021-06-19T03:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b7435bae-0377-4e05-8e07-91c231522b97", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-19T00:52:08.000Z" - }, - "end": { - "$date": "2021-06-19T01:12:54.000Z" - }, - "events": [ - { - "uuid": "32f15b81-1bef-4c67-b652-0e2a33cc5fcf", - "start": { - "$date": "2021-06-19T00:52:08.000Z" - }, - "end": { - "$date": "2021-06-19T01:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6ffaa9e0-6b80-4a57-8932-9fb56e8e7600", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-19T01:00:30.000Z" - }, - "end": { - "$date": "2021-06-19T03:19:30.000Z" - }, - "events": [ - { - "uuid": "b3524d58-f319-4dbb-b673-78ea3c10ac96", - "start": { - "$date": "2021-06-19T01:00:30.000Z" - }, - "end": { - "$date": "2021-06-19T03:19:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d93d3ed4-71fb-4110-9172-038dcc2d8f72", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T01:42:50.000Z" - }, - "end": { - "$date": "2021-06-19T03:19:17.000Z" - }, - "events": [ - { - "uuid": "7ba30151-50e1-426e-9cc4-a4fda35ec904", - "start": { - "$date": "2021-06-19T01:42:50.000Z" - }, - "end": { - "$date": "2021-06-19T03:19:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "46c55ffa-53be-4c98-8d98-80cb6f1b3eb2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-19T02:04:09.000Z" - }, - "end": { - "$date": "2021-06-19T02:53:46.000Z" - }, - "events": [ - { - "uuid": "b2aadbee-6773-4922-9333-e36a5baa3c4b", - "start": { - "$date": "2021-06-19T02:04:09.000Z" - }, - "end": { - "$date": "2021-06-19T02:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa85c716-833f-41f4-9149-ca9187dc6a11", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T02:10:22.000Z" - }, - "end": { - "$date": "2021-06-19T02:42:25.000Z" - }, - "events": [ - { - "uuid": "2dbbb5de-ec90-4497-824e-ba6fd8d30979", - "start": { - "$date": "2021-06-19T02:10:22.000Z" - }, - "end": { - "$date": "2021-06-19T02:42:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "fa512d40-9621-4a55-9236-cf9869458918", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-19T02:13:00.000Z" - }, - "end": { - "$date": "2021-06-19T02:21:36.000Z" - }, - "events": [ - { - "uuid": "81154b7b-4e53-415e-afce-4ea68a60c686", - "start": { - "$date": "2021-06-19T02:13:00.000Z" - }, - "end": { - "$date": "2021-06-19T02:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fed3bb19-4a37-4184-a924-5c15b7cde0df", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-19T02:27:51.000Z" - }, - "end": { - "$date": "2021-06-19T07:11:35.000Z" - }, - "events": [ - { - "uuid": "8fe47d59-0805-4992-8ab6-2ebab8fe85fe", - "start": { - "$date": "2021-06-19T02:27:51.000Z" - }, - "end": { - "$date": "2021-06-19T07:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "dac84218-d0bf-4ec0-80cc-45abb8769833", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-19T02:43:35.000Z" - }, - "end": { - "$date": "2021-06-19T05:41:36.000Z" - }, - "events": [ - { - "uuid": "22596d8e-c008-40e2-bf1b-9f2d188e9b85", - "start": { - "$date": "2021-06-19T02:43:35.000Z" - }, - "end": { - "$date": "2021-06-19T05:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "472bc44e-e777-419f-ab61-296c6064a5c7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T02:48:28.000Z" - }, - "end": { - "$date": "2021-06-19T03:18:33.000Z" - }, - "events": [ - { - "uuid": "7b7effd6-9588-44ae-a362-339826f53046", - "start": { - "$date": "2021-06-19T02:48:28.000Z" - }, - "end": { - "$date": "2021-06-19T03:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "29e6c836-8299-4a94-8da8-c4363bb92854", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T03:10:35.000Z" - }, - "end": { - "$date": "2021-06-19T03:16:50.000Z" - }, - "events": [ - { - "uuid": "a0761f07-6ed2-4c69-bead-6fe1417eb214", - "start": { - "$date": "2021-06-19T03:10:35.000Z" - }, - "end": { - "$date": "2021-06-19T03:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "56237843-ed15-47a7-b0e7-2b4f2701b8a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T04:39:47.000Z" - }, - "end": { - "$date": "2021-06-19T05:16:42.000Z" - }, - "events": [ - { - "uuid": "830c752f-ca5f-4368-a173-e233c9d435fb", - "start": { - "$date": "2021-06-19T04:39:47.000Z" - }, - "end": { - "$date": "2021-06-19T05:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1639c7bc-7c1c-4d60-b913-e7531736bb26", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T03:32:55.000Z" - }, - "end": { - "$date": "2021-06-19T03:59:20.000Z" - }, - "events": [ - { - "uuid": "bd5128b3-0dba-4748-8891-ab6772d86f37", - "start": { - "$date": "2021-06-19T03:32:55.000Z" - }, - "end": { - "$date": "2021-06-19T03:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01c1849c-3719-4c32-a95a-c284bae98145", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T03:20:03.000Z" - }, - "end": { - "$date": "2021-06-19T05:11:45.000Z" - }, - "events": [ - { - "uuid": "e7fb1a86-e336-46ad-97e3-3e3c1bfcef4a", - "start": { - "$date": "2021-06-19T03:20:03.000Z" - }, - "end": { - "$date": "2021-06-19T05:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8293d135-fe37-4f03-8b7f-4e484ff3963a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-19T03:28:18.000Z" - }, - "end": { - "$date": "2021-06-19T05:12:26.000Z" - }, - "events": [ - { - "uuid": "51d66a28-e229-4525-8ab6-962698f096d0", - "start": { - "$date": "2021-06-19T03:28:18.000Z" - }, - "end": { - "$date": "2021-06-19T05:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "89d4abcb-4e1d-4534-9e8a-d65b2b02548d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-19T03:42:09.000Z" - }, - "end": { - "$date": "2021-06-19T07:03:54.000Z" - }, - "events": [ - { - "uuid": "0a0d0dbb-c1e4-4d56-82b7-1066e8368907", - "start": { - "$date": "2021-06-19T03:42:09.000Z" - }, - "end": { - "$date": "2021-06-19T07:03:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71d75724-a381-4071-ade6-0b942cac3198", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T04:04:06.000Z" - }, - "end": { - "$date": "2021-06-19T04:30:45.000Z" - }, - "events": [ - { - "uuid": "02831fba-bee4-4a9f-ab5b-e42c71651a36", - "start": { - "$date": "2021-06-19T04:04:06.000Z" - }, - "end": { - "$date": "2021-06-19T04:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "10e49861-eeab-49c9-8ba5-e1e774fc4f61", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-19T04:30:07.000Z" - }, - "end": { - "$date": "2021-06-19T04:39:27.000Z" - }, - "events": [ - { - "uuid": "11d7dd5b-14c8-456a-b66f-d7d70a8815f2", - "start": { - "$date": "2021-06-19T04:30:07.000Z" - }, - "end": { - "$date": "2021-06-19T04:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "a9f81ece-d120-40e4-b7d0-68736a2f3bdd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-19T04:40:37.000Z" - }, - "end": { - "$date": "2021-06-19T05:17:48.000Z" - }, - "events": [ - { - "uuid": "9b66d388-086c-465f-a8f9-0dc0c7adb582", - "start": { - "$date": "2021-06-19T04:40:37.000Z" - }, - "end": { - "$date": "2021-06-19T05:17:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbcc2fa6-7947-4749-a87c-379c06179d01", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T04:47:24.000Z" - }, - "end": { - "$date": "2021-06-19T05:22:00.000Z" - }, - "events": [ - { - "uuid": "1d76f3ad-4a1d-4cf2-9281-309b98e54012", - "start": { - "$date": "2021-06-19T04:47:24.000Z" - }, - "end": { - "$date": "2021-06-19T05:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3c8ad0f5-e12c-4720-bb03-200c31450a25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-19T05:03:58.000Z" - }, - "end": { - "$date": "2021-06-19T05:22:08.000Z" - }, - "events": [ - { - "uuid": "78b8083c-5ca4-4ade-afac-e9e76fe9f30a", - "start": { - "$date": "2021-06-19T05:03:58.000Z" - }, - "end": { - "$date": "2021-06-19T05:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "b391ce2b-c817-40ad-be70-03eb4d7fc547", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T05:17:28.000Z" - }, - "end": { - "$date": "2021-06-19T07:49:14.000Z" - }, - "events": [ - { - "uuid": "7e5e56a8-a997-45ec-9eed-246460c5a36a", - "start": { - "$date": "2021-06-19T05:17:28.000Z" - }, - "end": { - "$date": "2021-06-19T07:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "a112a46b-4d1c-4a5e-8f7b-fb32e5b1ad01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-19T05:19:13.000Z" - }, - "end": { - "$date": "2021-06-19T07:49:16.000Z" - }, - "events": [ - { - "uuid": "026ce9ee-5439-413f-99f4-dcef38bcfb99", - "start": { - "$date": "2021-06-19T05:19:13.000Z" - }, - "end": { - "$date": "2021-06-19T07:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "754b6b14-d654-4504-aae7-2fbdabc7ec19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-19T05:47:24.000Z" - }, - "end": { - "$date": "2021-06-19T05:47:41.000Z" - }, - "events": [ - { - "uuid": "67d0c93a-9307-424b-afdc-e7ad14851472", - "start": { - "$date": "2021-06-19T05:47:24.000Z" - }, - "end": { - "$date": "2021-06-19T05:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce8c518c-cf94-4e15-b1d8-f77c6619db7a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T05:27:05.000Z" - }, - "end": { - "$date": "2021-06-19T05:47:11.000Z" - }, - "events": [ - { - "uuid": "c1925e82-087f-479b-8983-4300eeac99e8", - "start": { - "$date": "2021-06-19T05:27:05.000Z" - }, - "end": { - "$date": "2021-06-19T05:47:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d310d656-de0f-423a-89cd-4503928fc7d7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-19T05:37:09.000Z" - }, - "end": { - "$date": "2021-06-19T07:04:41.000Z" - }, - "events": [ - { - "uuid": "b43259d0-2078-4d4b-ba24-89b622afb76c", - "start": { - "$date": "2021-06-19T05:37:09.000Z" - }, - "end": { - "$date": "2021-06-19T07:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c9147af-8daa-46ca-955f-e761749bb56c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-19T05:40:58.000Z" - }, - "end": { - "$date": "2021-06-19T06:22:15.000Z" - }, - "events": [ - { - "uuid": "cc26a644-a340-4134-aa85-c6b16301a5a5", - "start": { - "$date": "2021-06-19T05:40:58.000Z" - }, - "end": { - "$date": "2021-06-19T06:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a3a777e-231a-4fda-afd8-fa2a25c37a0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-19T06:08:22.000Z" - }, - "end": { - "$date": "2021-06-19T06:08:28.000Z" - }, - "events": [ - { - "uuid": "860706d8-9ec8-49c4-8504-c656339341cb", - "start": { - "$date": "2021-06-19T06:08:22.000Z" - }, - "end": { - "$date": "2021-06-19T06:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d45b5c20-9384-45ef-b61d-3792e53e4a8c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-19T05:52:41.000Z" - }, - "end": { - "$date": "2021-06-19T06:08:01.000Z" - }, - "events": [ - { - "uuid": "c4c740a9-0877-4af7-adcd-784bc37e6faf", - "start": { - "$date": "2021-06-19T05:52:41.000Z" - }, - "end": { - "$date": "2021-06-19T06:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4f19b7c-6924-497d-8f48-e8d30457dd89", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-19T06:44:45.000Z" - }, - "end": { - "$date": "2021-06-20T00:16:51.000Z" - }, - "events": [ - { - "uuid": "469d54e7-768f-408f-99d8-53647892dc9c", - "start": { - "$date": "2021-06-19T06:44:45.000Z" - }, - "end": { - "$date": "2021-06-19T08:06:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c5eb9bb3-00e2-4930-b637-1a09e0b3bbcb", - "start": { - "$date": "2021-06-19T08:06:45.000Z" - }, - "end": { - "$date": "2021-06-19T13:06:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9afd7ec9-e08b-46e8-ba1c-740ce8b046e3", - "start": { - "$date": "2021-06-19T13:06:45.000Z" - }, - "end": { - "$date": "2021-06-19T13:16:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e69f0343-185f-4667-bd18-b2fad289df7b", - "start": { - "$date": "2021-06-19T13:16:45.000Z" - }, - "end": { - "$date": "2021-06-19T17:25:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23a71172-2eb7-4a47-b84a-a598124d3db7", - "start": { - "$date": "2021-06-19T17:25:45.000Z" - }, - "end": { - "$date": "2021-06-19T17:27:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d95a99bc-65d0-4299-ac9f-02db1b5d9002", - "start": { - "$date": "2021-06-19T17:27:45.000Z" - }, - "end": { - "$date": "2021-06-19T17:40:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45bbbb8e-6264-4bbf-8abf-f5de3b5ad2b7", - "start": { - "$date": "2021-06-19T17:40:45.000Z" - }, - "end": { - "$date": "2021-06-19T17:44:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4874d7ba-0837-4268-8c71-c89c35ec2416", - "start": { - "$date": "2021-06-19T17:44:45.000Z" - }, - "end": { - "$date": "2021-06-19T18:21:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2d1de02-31d2-4041-921b-a211d2b5869e", - "start": { - "$date": "2021-06-19T18:21:45.000Z" - }, - "end": { - "$date": "2021-06-19T18:23:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7199e5a8-d2bb-4a60-a7ec-6658e082bd22", - "start": { - "$date": "2021-06-19T18:23:45.000Z" - }, - "end": { - "$date": "2021-06-19T20:32:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4629cc28-c653-4a61-9d52-07e1fb9b6299", - "start": { - "$date": "2021-06-19T20:32:45.000Z" - }, - "end": { - "$date": "2021-06-19T20:35:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8795d831-243c-439f-a30f-63b11b94376e", - "start": { - "$date": "2021-06-19T20:35:45.000Z" - }, - "end": { - "$date": "2021-06-19T20:39:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b51123b3-f06e-49a9-9d22-8987d96c6391", - "start": { - "$date": "2021-06-19T20:39:45.000Z" - }, - "end": { - "$date": "2021-06-19T20:41:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c4bc5614-942c-438f-a8a9-9a45ed23f86c", - "start": { - "$date": "2021-06-19T20:41:45.000Z" - }, - "end": { - "$date": "2021-06-19T22:22:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d622e64d-442b-4dd5-8b4a-6631374efb3a", - "start": { - "$date": "2021-06-19T22:22:45.000Z" - }, - "end": { - "$date": "2021-06-19T23:28:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35d70994-1cf8-41e5-a265-d8f10a0bb4f6", - "start": { - "$date": "2021-06-19T23:28:45.000Z" - }, - "end": { - "$date": "2021-06-19T23:34:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0aec3d33-7540-4a16-ada0-9d378a9b0d07", - "start": { - "$date": "2021-06-19T23:34:45.000Z" - }, - "end": { - "$date": "2021-06-20T00:00:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba764bf0-4c2d-4385-ae8c-c815599be3c9", - "start": { - "$date": "2021-06-20T00:00:45.000Z" - }, - "end": { - "$date": "2021-06-20T00:47:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c197dad4-3f89-4e4f-95e5-283134ff5b9b", - "start": { - "$date": "2021-06-20T00:47:45.000Z" - }, - "end": { - "$date": "2021-06-20T00:16:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "64aea0fe-b1af-4ef7-af2e-645a11c59e1f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-19T07:12:36.000Z" - }, - "end": { - "$date": "2021-06-19T08:55:41.000Z" - }, - "events": [ - { - "uuid": "59bc1c15-db76-413c-95a4-3b7999df3775", - "start": { - "$date": "2021-06-19T07:12:36.000Z" - }, - "end": { - "$date": "2021-06-19T08:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e3569702-fb46-4a5c-9ffe-51a3a945d123", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-19T08:56:13.000Z" - }, - "end": { - "$date": "2021-06-19T09:39:24.000Z" - }, - "events": [ - { - "uuid": "e0e0625b-508b-45fd-93ea-f4cfbfb1bd4e", - "start": { - "$date": "2021-06-19T08:56:13.000Z" - }, - "end": { - "$date": "2021-06-19T09:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "de682ed3-3cc0-45e2-b278-90dc8b0d5af7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-19T14:01:25.000Z" - }, - "end": { - "$date": "2021-06-19T16:10:26.000Z" - }, - "events": [ - { - "uuid": "29a43289-50b6-4dbd-b0c4-2d0d7defd749", - "start": { - "$date": "2021-06-19T14:01:25.000Z" - }, - "end": { - "$date": "2021-06-19T16:10:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "693f6e55-0970-4dfc-a0b5-ee2c2ee2d1c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T15:52:43.000Z" - }, - "end": { - "$date": "2021-06-19T16:16:17.000Z" - }, - "events": [ - { - "uuid": "8a51386d-c074-40ca-871d-8eaef31a6135", - "start": { - "$date": "2021-06-19T15:52:43.000Z" - }, - "end": { - "$date": "2021-06-19T16:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "d917d11b-ba7a-46af-abc2-ac9e4454cbe4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-19T16:12:51.000Z" - }, - "end": { - "$date": "2021-06-19T17:15:52.000Z" - }, - "events": [ - { - "uuid": "ce896e96-743d-4c7a-9a61-7ed37dd4a842", - "start": { - "$date": "2021-06-19T16:12:51.000Z" - }, - "end": { - "$date": "2021-06-19T17:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", - "uuid": "13eb22c6-587c-4f9c-9574-e6ab3608ff4f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T16:20:28.000Z" - }, - "end": { - "$date": "2021-06-19T16:34:03.000Z" - }, - "events": [ - { - "uuid": "7a577dcd-a2c0-409f-aba7-d48c33c2ae31", - "start": { - "$date": "2021-06-19T16:20:28.000Z" - }, - "end": { - "$date": "2021-06-19T16:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f777a66c-c81e-4568-97db-f8575f70eed9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T16:46:07.000Z" - }, - "end": { - "$date": "2021-06-19T17:41:52.000Z" - }, - "events": [ - { - "uuid": "ff713a96-1924-46c6-8b51-5af13e55b659", - "start": { - "$date": "2021-06-19T16:46:07.000Z" - }, - "end": { - "$date": "2021-06-19T17:41:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebb7bd2c-ae71-4659-a786-86ab959ee33d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T16:55:31.000Z" - }, - "end": { - "$date": "2021-06-19T17:05:05.000Z" - }, - "events": [ - { - "uuid": "956b41c6-262f-4381-bbf1-44d5795925f7", - "start": { - "$date": "2021-06-19T16:55:31.000Z" - }, - "end": { - "$date": "2021-06-19T17:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92cb30ed-2cdf-4cd0-a64e-f6d94897dbf2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T17:06:10.000Z" - }, - "end": { - "$date": "2021-06-19T17:44:17.000Z" - }, - "events": [ - { - "uuid": "7b1bd4d2-ff5e-4aba-a39b-4be0e53d2ea3", - "start": { - "$date": "2021-06-19T17:06:10.000Z" - }, - "end": { - "$date": "2021-06-19T17:44:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "5fe0544a-6058-4ba7-b3ae-167b4ebb49a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T18:08:29.000Z" - }, - "end": { - "$date": "2021-06-19T18:30:10.000Z" - }, - "events": [ - { - "uuid": "db021209-9f92-4357-90df-1f06d38ef97d", - "start": { - "$date": "2021-06-19T18:08:29.000Z" - }, - "end": { - "$date": "2021-06-19T18:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3b5c5dfc-daa2-461b-af76-84fa9ca5fc0a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-19T18:18:32.000Z" - }, - "end": { - "$date": "2021-06-19T23:18:32.000Z" - }, - "events": [ - { - "uuid": "901e4ddb-6383-4301-8241-5ad19255e260", - "start": { - "$date": "2021-06-19T18:18:32.000Z" - }, - "end": { - "$date": "2021-06-19T19:57:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bbd7ad5c-1393-44c0-b051-39ebd80c609b", - "start": { - "$date": "2021-06-19T19:57:32.000Z" - }, - "end": { - "$date": "2021-06-19T20:03:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ad4abdcd-50f4-411e-992b-59104c5cebed", - "start": { - "$date": "2021-06-19T20:03:32.000Z" - }, - "end": { - "$date": "2021-06-19T23:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "dae1e94a-91c4-4bd6-9169-c319354703af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-19T19:11:52.000Z" - }, - "end": { - "$date": "2021-06-19T19:57:23.000Z" - }, - "events": [ - { - "uuid": "c935b9af-d6b0-4ae3-a1c5-cc2bd3225ce3", - "start": { - "$date": "2021-06-19T19:11:52.000Z" - }, - "end": { - "$date": "2021-06-19T19:57:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "39786a63-6f98-4266-b32b-86b7a7f485ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-19T19:38:16.000Z" - }, - "end": { - "$date": "2021-06-19T20:21:54.000Z" - }, - "events": [ - { - "uuid": "9a987438-9002-4975-aed9-ceb8ff799c79", - "start": { - "$date": "2021-06-19T19:38:16.000Z" - }, - "end": { - "$date": "2021-06-19T20:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb8f10b1-35e8-4997-9df7-6ebaa64abf63", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T20:05:51.000Z" - }, - "end": { - "$date": "2021-06-19T20:22:35.000Z" - }, - "events": [ - { - "uuid": "8e9acc2b-336f-4032-a84d-05f3b1075d19", - "start": { - "$date": "2021-06-19T20:05:51.000Z" - }, - "end": { - "$date": "2021-06-19T20:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "8d633c5b-ab77-4485-b532-65499a7e0a74", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T20:23:01.000Z" - }, - "end": { - "$date": "2021-06-19T20:55:35.000Z" - }, - "events": [ - { - "uuid": "1ab0dbf5-e017-42b2-b532-f58931f834b7", - "start": { - "$date": "2021-06-19T20:23:01.000Z" - }, - "end": { - "$date": "2021-06-19T20:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "18243d51-a176-44e6-9cec-bc606b830cca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-19T20:46:42.000Z" - }, - "end": { - "$date": "2021-06-19T21:00:43.000Z" - }, - "events": [ - { - "uuid": "78c21ec8-7682-4243-b593-fef96e7e3948", - "start": { - "$date": "2021-06-19T20:46:42.000Z" - }, - "end": { - "$date": "2021-06-19T21:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "7316e1b0-69bc-4d67-bfeb-bf0ca0b2d29c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-19T20:59:28.000Z" - }, - "end": { - "$date": "2021-06-19T21:31:38.000Z" - }, - "events": [ - { - "uuid": "44f88ebc-775e-4d10-ae42-b7122dc63c17", - "start": { - "$date": "2021-06-19T20:59:28.000Z" - }, - "end": { - "$date": "2021-06-19T21:31:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "bc4e10dc-d386-4c11-94e7-8dd0cafa945a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T21:48:32.000Z" - }, - "end": { - "$date": "2021-06-19T21:57:37.000Z" - }, - "events": [ - { - "uuid": "ec874aee-9950-4ded-b97a-f4292b850f7a", - "start": { - "$date": "2021-06-19T21:48:32.000Z" - }, - "end": { - "$date": "2021-06-19T21:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3ac4d3c1-1825-4f1e-b67a-c5e7ffee4211", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-19T21:56:38.000Z" - }, - "end": { - "$date": "2021-06-19T23:03:05.000Z" - }, - "events": [ - { - "uuid": "e655f8c4-3566-411f-8988-597cf92e0437", - "start": { - "$date": "2021-06-19T21:56:38.000Z" - }, - "end": { - "$date": "2021-06-19T23:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3cbdfee2-1132-4be7-b9d8-8dd128a5544b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T21:59:12.000Z" - }, - "end": { - "$date": "2021-06-19T22:00:43.000Z" - }, - "events": [ - { - "uuid": "c8b53d44-6be7-4954-8c91-3a7003d2591d", - "start": { - "$date": "2021-06-19T21:59:12.000Z" - }, - "end": { - "$date": "2021-06-19T22:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b001714d-0f9d-4deb-8d4b-2decb0d4faf9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T22:00:48.000Z" - }, - "end": { - "$date": "2021-06-19T22:07:28.000Z" - }, - "events": [ - { - "uuid": "948b08af-f136-4f90-8386-d1acda2b14b1", - "start": { - "$date": "2021-06-19T22:00:48.000Z" - }, - "end": { - "$date": "2021-06-19T22:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "221ab74c-9d94-40ab-8d1a-f8b1f48cc7ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-19T22:17:38.000Z" - }, - "end": { - "$date": "2021-06-20T00:13:09.000Z" - }, - "events": [ - { - "uuid": "52f73b6c-bc23-48d7-90cb-8df9b236749b", - "start": { - "$date": "2021-06-19T22:17:38.000Z" - }, - "end": { - "$date": "2021-06-20T00:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ddf2979-7c78-4ab3-9eb0-be4db6d3e739", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-19T22:24:35.000Z" - }, - "end": { - "$date": "2021-06-19T22:59:25.000Z" - }, - "events": [ - { - "uuid": "b0c677d2-7291-46f5-acb9-4b246fc9234e", - "start": { - "$date": "2021-06-19T22:24:35.000Z" - }, - "end": { - "$date": "2021-06-19T22:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "dc4e144f-15e8-4d17-83f7-154b8b5893bf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-19T22:20:47.000Z" - }, - "end": { - "$date": "2021-06-20T00:12:37.000Z" - }, - "events": [ - { - "uuid": "8dc72aa4-900d-4938-8d14-ca61028bad21", - "start": { - "$date": "2021-06-19T22:20:47.000Z" - }, - "end": { - "$date": "2021-06-20T00:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0df9fccb-267a-4992-84b7-993fc4d981a8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-19T22:42:36.000Z" - }, - "end": { - "$date": "2021-06-20T00:43:07.000Z" - }, - "events": [ - { - "uuid": "1795018c-d786-4b8e-8db8-9cad2c7234fc", - "start": { - "$date": "2021-06-19T22:42:36.000Z" - }, - "end": { - "$date": "2021-06-19T23:17:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "47c50cf6-764d-4e77-8a5d-10c0367faa75", - "start": { - "$date": "2021-06-19T23:17:36.000Z" - }, - "end": { - "$date": "2021-06-20T00:35:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d26a624-be49-4259-87ee-9c127911b739", - "start": { - "$date": "2021-06-20T00:35:36.000Z" - }, - "end": { - "$date": "2021-06-20T00:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5970c28c-4c1d-457d-8e2c-311d221e2810", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T00:11:51.000Z" - }, - "end": { - "$date": "2021-06-20T00:30:12.000Z" - }, - "events": [ - { - "uuid": "065c9945-f956-4383-9287-0073183300d1", - "start": { - "$date": "2021-06-20T00:11:51.000Z" - }, - "end": { - "$date": "2021-06-20T00:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8dbfc99-155a-43d7-91a6-8db019d76a55", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T00:49:18.000Z" - }, - "end": { - "$date": "2021-06-20T00:49:37.000Z" - }, - "events": [ - { - "uuid": "6bf6e46a-4e07-456d-bc3a-cd1431a82d42", - "start": { - "$date": "2021-06-20T00:49:18.000Z" - }, - "end": { - "$date": "2021-06-20T00:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ec258e4-8b20-4e95-91ab-6c7fcd68609f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T00:51:47.000Z" - }, - "end": { - "$date": "2021-06-20T00:51:48.000Z" - }, - "events": [ - { - "uuid": "32f3d0b1-f1bf-43fd-916e-6e6aadf4a85a", - "start": { - "$date": "2021-06-20T00:51:47.000Z" - }, - "end": { - "$date": "2021-06-20T00:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7aa7463c-d64b-4ccd-99e2-1bde9881d88e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T00:30:04.000Z" - }, - "end": { - "$date": "2021-06-20T00:46:00.000Z" - }, - "events": [ - { - "uuid": "122fa5fb-9d01-4e86-9c2b-76d1455212a3", - "start": { - "$date": "2021-06-20T00:30:04.000Z" - }, - "end": { - "$date": "2021-06-20T00:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "d0773ec5-239c-44e0-8d12-d89384210461", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T00:44:17.000Z" - }, - "end": { - "$date": "2021-06-20T01:30:31.000Z" - }, - "events": [ - { - "uuid": "fae69ddf-fe8f-4119-bde2-590c86c913c3", - "start": { - "$date": "2021-06-20T00:44:17.000Z" - }, - "end": { - "$date": "2021-06-20T01:30:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e372aea-d1ab-45ce-b40b-6259ea1d012a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T00:54:28.000Z" - }, - "end": { - "$date": "2021-06-20T01:28:42.000Z" - }, - "events": [ - { - "uuid": "9a6e3d3e-43cf-4944-920e-9559143ff244", - "start": { - "$date": "2021-06-20T00:54:28.000Z" - }, - "end": { - "$date": "2021-06-20T01:28:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a39d9f28-5213-404c-9287-27e8ecd7f307", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T00:54:23.000Z" - }, - "end": { - "$date": "2021-06-20T01:28:41.000Z" - }, - "events": [ - { - "uuid": "206b5a8b-2085-4d7b-98ad-e805541cef44", - "start": { - "$date": "2021-06-20T00:54:23.000Z" - }, - "end": { - "$date": "2021-06-20T01:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e123be1c-0a19-4d9e-9d5b-62fb6273280c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T01:13:00.000Z" - }, - "end": { - "$date": "2021-06-20T01:25:50.000Z" - }, - "events": [ - { - "uuid": "9c0452c9-7161-407b-acf5-5847c8c84b72", - "start": { - "$date": "2021-06-20T01:13:00.000Z" - }, - "end": { - "$date": "2021-06-20T01:25:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d1dd1ef-5d66-4d5b-aa47-ec269a0daf6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T02:05:25.000Z" - }, - "end": { - "$date": "2021-06-20T02:10:46.000Z" - }, - "events": [ - { - "uuid": "932ae682-3bd6-451e-bd23-bd2a045247a6", - "start": { - "$date": "2021-06-20T02:05:25.000Z" - }, - "end": { - "$date": "2021-06-20T02:10:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1afdd02-4bd4-4d18-b233-94cef0dd44a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T01:31:46.000Z" - }, - "end": { - "$date": "2021-06-20T02:07:59.000Z" - }, - "events": [ - { - "uuid": "c6c9820b-95a3-4fe2-8baf-b8fb00586891", - "start": { - "$date": "2021-06-20T01:31:46.000Z" - }, - "end": { - "$date": "2021-06-20T02:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1d203c5-034d-46a9-9d4a-8e1bafe376cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T01:43:47.000Z" - }, - "end": { - "$date": "2021-06-20T02:07:49.000Z" - }, - "events": [ - { - "uuid": "117843f9-0e1c-4bc8-b503-d9f2d71afa8f", - "start": { - "$date": "2021-06-20T01:43:47.000Z" - }, - "end": { - "$date": "2021-06-20T02:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0f1a01bb-ea6a-4193-acf5-afaf9aee2571", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T01:30:46.000Z" - }, - "end": { - "$date": "2021-06-20T02:13:10.000Z" - }, - "events": [ - { - "uuid": "a2ee3ee4-b715-4142-88c4-88526f6850fb", - "start": { - "$date": "2021-06-20T01:30:46.000Z" - }, - "end": { - "$date": "2021-06-20T02:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6099fe5d-c78f-4404-b020-004e1bda197c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T01:39:34.000Z" - }, - "end": { - "$date": "2021-06-20T01:57:49.000Z" - }, - "events": [ - { - "uuid": "a2465d0a-2caa-4a17-9476-0b98a36de257", - "start": { - "$date": "2021-06-20T01:39:34.000Z" - }, - "end": { - "$date": "2021-06-20T01:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "302d34a2-2d58-4228-a102-0f28fcd109a0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T01:57:34.000Z" - }, - "end": { - "$date": "2021-06-20T04:28:00.000Z" - }, - "events": [ - { - "uuid": "27ad1f72-42e0-48ee-b302-bf4e301dfa1d", - "start": { - "$date": "2021-06-20T01:57:34.000Z" - }, - "end": { - "$date": "2021-06-20T04:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "458d9210-acb7-490d-9bf9-f5b64f6f9a02", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T02:08:13.000Z" - }, - "end": { - "$date": "2021-06-20T02:09:44.000Z" - }, - "events": [ - { - "uuid": "313c8fe6-e95d-42bf-b770-ef9fa7153814", - "start": { - "$date": "2021-06-20T02:08:13.000Z" - }, - "end": { - "$date": "2021-06-20T02:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65d55593-e649-4fa3-8ba1-5f20db8c32a9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T02:37:18.000Z" - }, - "end": { - "$date": "2021-06-20T02:37:20.000Z" - }, - "events": [ - { - "uuid": "8c421815-a23c-45fb-9bb9-9eabfd6b94f8", - "start": { - "$date": "2021-06-20T02:37:18.000Z" - }, - "end": { - "$date": "2021-06-20T02:37:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93e755e7-6c2a-44e2-b220-9af74a3bebea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T02:13:19.000Z" - }, - "end": { - "$date": "2021-06-20T02:49:16.000Z" - }, - "events": [ - { - "uuid": "840d1c9c-da33-462c-ae92-d9e4ce7693c6", - "start": { - "$date": "2021-06-20T02:13:19.000Z" - }, - "end": { - "$date": "2021-06-20T02:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7daba283-b3e1-4580-a9a1-f18f5d79c3a3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T02:13:05.000Z" - }, - "end": { - "$date": "2021-06-20T02:49:23.000Z" - }, - "events": [ - { - "uuid": "34b51a3a-a463-42bb-8d15-a441f2072238", - "start": { - "$date": "2021-06-20T02:13:05.000Z" - }, - "end": { - "$date": "2021-06-20T02:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed1d47d5-3cad-4d92-a9d0-d3e798e853fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T02:50:25.000Z" - }, - "end": { - "$date": "2021-06-20T03:25:10.000Z" - }, - "events": [ - { - "uuid": "43a8932b-19f4-489f-b118-d8c6536d18e6", - "start": { - "$date": "2021-06-20T02:50:25.000Z" - }, - "end": { - "$date": "2021-06-20T03:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "38afc0cb-df5b-4072-b43b-03257ef431a6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T02:37:59.000Z" - }, - "end": { - "$date": "2021-06-20T07:11:26.000Z" - }, - "events": [ - { - "uuid": "45faef56-8d4f-4b06-9f81-423e9adb154e", - "start": { - "$date": "2021-06-20T02:37:59.000Z" - }, - "end": { - "$date": "2021-06-20T07:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3422adb0-82cb-44be-9c23-b8ffd0cc7d5b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T02:42:53.000Z" - }, - "end": { - "$date": "2021-06-20T02:47:09.000Z" - }, - "events": [ - { - "uuid": "0c35d882-6cae-4e2b-8c48-4c458f45ead5", - "start": { - "$date": "2021-06-20T02:42:53.000Z" - }, - "end": { - "$date": "2021-06-20T02:47:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "29978e9f-8dbf-43ba-a1fb-0c2d2091a3ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T02:47:29.000Z" - }, - "end": { - "$date": "2021-06-20T02:58:17.000Z" - }, - "events": [ - { - "uuid": "4a19fc5d-58e8-413a-b581-c859ce4e9431", - "start": { - "$date": "2021-06-20T02:47:29.000Z" - }, - "end": { - "$date": "2021-06-20T02:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf72d848-844e-4d22-8ddb-df92675c3dd7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T02:50:31.000Z" - }, - "end": { - "$date": "2021-06-20T03:28:09.000Z" - }, - "events": [ - { - "uuid": "a332f116-1f98-450e-b9f4-b9ac0a1a8632", - "start": { - "$date": "2021-06-20T02:50:31.000Z" - }, - "end": { - "$date": "2021-06-20T03:28:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee750723-b9a1-40f5-a68c-3bb3cf341523", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T02:50:53.000Z" - }, - "end": { - "$date": "2021-06-20T03:28:21.000Z" - }, - "events": [ - { - "uuid": "a18d5880-7dd7-45e5-a931-73b88cd0d5a6", - "start": { - "$date": "2021-06-20T02:50:53.000Z" - }, - "end": { - "$date": "2021-06-20T03:28:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "c5a6f2ec-d01f-4392-9ea5-e5f4dc4c1599", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-20T03:15:09.000Z" - }, - "end": { - "$date": "2021-06-20T05:06:46.000Z" - }, - "events": [ - { - "uuid": "d7f016da-e030-4fb4-a388-eb5e4cee57ca", - "start": { - "$date": "2021-06-20T03:15:09.000Z" - }, - "end": { - "$date": "2021-06-20T05:06:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "a8f079f1-a27a-4e05-a0fd-d62ad5d7e662", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-20T05:05:13.000Z" - }, - "end": { - "$date": "2021-06-20T05:05:18.000Z" - }, - "events": [ - { - "uuid": "0ee50710-fddd-4542-9a9d-83e550855db8", - "start": { - "$date": "2021-06-20T05:05:13.000Z" - }, - "end": { - "$date": "2021-06-20T05:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "bc48c95f-7409-413e-af5d-61b8770a7e29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T04:42:24.000Z" - }, - "end": { - "$date": "2021-06-20T05:41:13.000Z" - }, - "events": [ - { - "uuid": "810d9c08-ad24-4ec5-9954-942473f81972", - "start": { - "$date": "2021-06-20T04:42:24.000Z" - }, - "end": { - "$date": "2021-06-20T04:55:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99673a47-5d2a-469b-9588-1230b3fdaaa0", - "start": { - "$date": "2021-06-20T04:55:24.000Z" - }, - "end": { - "$date": "2021-06-20T04:58:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8defcde7-6e16-4392-9b7f-3ce31ccdce6a", - "start": { - "$date": "2021-06-20T04:58:24.000Z" - }, - "end": { - "$date": "2021-06-20T05:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "098c3005-d977-4ad0-bf4b-0d910cc6d304", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T04:20:01.000Z" - }, - "end": { - "$date": "2021-06-20T04:51:46.000Z" - }, - "events": [ - { - "uuid": "18a903fe-234f-490d-92a5-d0039f7a5a90", - "start": { - "$date": "2021-06-20T04:20:01.000Z" - }, - "end": { - "$date": "2021-06-20T04:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "56f5939d-d67f-4eb7-88eb-9f98432daf0b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T04:23:45.000Z" - }, - "end": { - "$date": "2021-06-20T04:26:40.000Z" - }, - "events": [ - { - "uuid": "ba37c06c-a5ce-4a0d-b428-10617ac199b0", - "start": { - "$date": "2021-06-20T04:23:45.000Z" - }, - "end": { - "$date": "2021-06-20T04:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "586ce051-2850-4070-aa27-edd39141ed5c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T04:26:59.000Z" - }, - "end": { - "$date": "2021-06-20T04:32:53.000Z" - }, - "events": [ - { - "uuid": "b34ab6cc-d5bd-486f-a40d-5f3a1f11cd29", - "start": { - "$date": "2021-06-20T04:26:59.000Z" - }, - "end": { - "$date": "2021-06-20T04:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "f01858da-08cc-41b7-8c69-ca8519e6d9f1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T04:28:06.000Z" - }, - "end": { - "$date": "2021-06-20T06:36:01.000Z" - }, - "events": [ - { - "uuid": "d53bedc3-eb63-4dab-b487-c06390ffafb3", - "start": { - "$date": "2021-06-20T04:28:06.000Z" - }, - "end": { - "$date": "2021-06-20T06:36:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "248d6521-9760-4a8a-b8fa-873754a5f102", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T04:33:26.000Z" - }, - "end": { - "$date": "2021-06-20T05:50:20.000Z" - }, - "events": [ - { - "uuid": "8608c603-95af-45f3-ade2-26a1b5f7f317", - "start": { - "$date": "2021-06-20T04:33:26.000Z" - }, - "end": { - "$date": "2021-06-20T05:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "802b78db-9cee-45f3-a4ca-113006dd2517", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T04:33:36.000Z" - }, - "end": { - "$date": "2021-06-20T06:05:44.000Z" - }, - "events": [ - { - "uuid": "26954266-2d7a-4d91-8b7b-cb97b6de6f3c", - "start": { - "$date": "2021-06-20T04:33:36.000Z" - }, - "end": { - "$date": "2021-06-20T06:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "60f0b1e9-3800-48c9-93fa-1835421b9658", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T04:52:00.000Z" - }, - "end": { - "$date": "2021-06-20T05:39:27.000Z" - }, - "events": [ - { - "uuid": "04bd0b47-5992-47b0-8526-bc1e336f87f8", - "start": { - "$date": "2021-06-20T04:52:00.000Z" - }, - "end": { - "$date": "2021-06-20T05:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "f12b8705-f377-49e4-802d-8aa2cc54ee4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-20T04:57:53.000Z" - }, - "end": { - "$date": "2021-06-20T06:04:51.000Z" - }, - "events": [ - { - "uuid": "32ecbc7e-c81b-4ced-aa7a-69dac4a6eaef", - "start": { - "$date": "2021-06-20T04:57:53.000Z" - }, - "end": { - "$date": "2021-06-20T05:43:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7c7bc25-c1b2-447a-bc3b-d06ba26e1ec9", - "start": { - "$date": "2021-06-20T05:43:53.000Z" - }, - "end": { - "$date": "2021-06-20T05:55:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42b34663-9e6b-42f3-b430-d6fc86e3dfdf", - "start": { - "$date": "2021-06-20T05:55:53.000Z" - }, - "end": { - "$date": "2021-06-20T06:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "7e9b0d2d-b30e-496a-9777-2f41b925a151", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-20T05:05:28.000Z" - }, - "end": { - "$date": "2021-06-20T08:21:44.000Z" - }, - "events": [ - { - "uuid": "3093f7b7-e675-4ae0-aace-9fa97d9ac345", - "start": { - "$date": "2021-06-20T05:05:28.000Z" - }, - "end": { - "$date": "2021-06-20T08:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "cce0de6b-fd64-4a18-a39f-94f096a37463", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-20T05:06:51.000Z" - }, - "end": { - "$date": "2021-06-20T08:21:41.000Z" - }, - "events": [ - { - "uuid": "06007fb1-e266-42f7-85c1-ace1b1c6a174", - "start": { - "$date": "2021-06-20T05:06:51.000Z" - }, - "end": { - "$date": "2021-06-20T08:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "28bc5277-1c47-4132-9d4f-d6fe9335dfa5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T05:41:43.000Z" - }, - "end": { - "$date": "2021-06-20T06:02:06.000Z" - }, - "events": [ - { - "uuid": "7d5a8b96-dace-4e27-82a8-a20136e03bdb", - "start": { - "$date": "2021-06-20T05:41:43.000Z" - }, - "end": { - "$date": "2021-06-20T06:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "142c2c67-037c-4b65-89d5-db1fed88a9c0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T05:57:47.000Z" - }, - "end": { - "$date": "2021-06-20T06:37:02.000Z" - }, - "events": [ - { - "uuid": "00e061cf-15a4-447d-8e24-d9b5bdd0b9e0", - "start": { - "$date": "2021-06-20T05:57:47.000Z" - }, - "end": { - "$date": "2021-06-20T06:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a9cc843-4d2f-48c5-999b-2260571de789", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T05:56:48.000Z" - }, - "end": { - "$date": "2021-06-20T06:28:51.000Z" - }, - "events": [ - { - "uuid": "1870934b-5672-4f0d-8499-9fa4dc76d81f", - "start": { - "$date": "2021-06-20T05:56:48.000Z" - }, - "end": { - "$date": "2021-06-20T06:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ba5cee0-bdfd-4b4d-9ad6-6080430d47b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T06:36:26.000Z" - }, - "end": { - "$date": "2021-06-20T07:06:51.000Z" - }, - "events": [ - { - "uuid": "a6519f22-d79f-463a-970f-c08bd65f7d10", - "start": { - "$date": "2021-06-20T06:36:26.000Z" - }, - "end": { - "$date": "2021-06-20T07:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aad2f27f-b197-4745-8462-8ff83b0f2eb7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-20T06:38:03.000Z" - }, - "end": { - "$date": "2021-06-20T11:29:58.000Z" - }, - "events": [ - { - "uuid": "472cb727-9806-4cfc-8e13-afaf8c76a48a", - "start": { - "$date": "2021-06-20T06:38:03.000Z" - }, - "end": { - "$date": "2021-06-20T07:02:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "095593df-f3b7-464c-95cd-eff8cd6f9e26", - "start": { - "$date": "2021-06-20T07:02:03.000Z" - }, - "end": { - "$date": "2021-06-20T07:13:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "015cef09-63c5-4aaf-a41e-742b688b47f9", - "start": { - "$date": "2021-06-20T07:13:03.000Z" - }, - "end": { - "$date": "2021-06-20T07:18:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01e315b7-343c-49f5-a43d-061b741e8245", - "start": { - "$date": "2021-06-20T07:18:03.000Z" - }, - "end": { - "$date": "2021-06-20T11:29:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d48a563c-70f2-4aa1-876a-e84e4cf00b27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-20T06:38:18.000Z" - }, - "end": { - "$date": "2021-06-21T04:04:21.000Z" - }, - "events": [ - { - "uuid": "21096cfd-ca57-4d4c-8def-c7f6b6c08eb9", - "start": { - "$date": "2021-06-20T06:38:18.000Z" - }, - "end": { - "$date": "2021-06-20T07:20:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbcf8293-26e3-4b23-9b77-a14a014492bf", - "start": { - "$date": "2021-06-20T07:20:18.000Z" - }, - "end": { - "$date": "2021-06-20T17:10:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b2fb359-f2b6-47ce-a478-b506f762652d", - "start": { - "$date": "2021-06-20T17:10:18.000Z" - }, - "end": { - "$date": "2021-06-20T17:57:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "16f9a93d-c635-4b2e-aa7e-974bc39c2a6a", - "start": { - "$date": "2021-06-20T17:57:18.000Z" - }, - "end": { - "$date": "2021-06-20T18:41:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0ca0eba-dc8e-4ee4-8d3d-a2e7dd8238a4", - "start": { - "$date": "2021-06-20T18:41:18.000Z" - }, - "end": { - "$date": "2021-06-20T18:43:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8cd474ee-8c8a-48ea-88b8-e220c285023c", - "start": { - "$date": "2021-06-20T18:43:18.000Z" - }, - "end": { - "$date": "2021-06-20T19:46:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "156476c6-89ec-42ef-a3be-f9fb8277cecf", - "start": { - "$date": "2021-06-20T19:46:18.000Z" - }, - "end": { - "$date": "2021-06-20T19:49:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b6bae25-84d3-4154-a34b-11dd6f8c1f07", - "start": { - "$date": "2021-06-20T19:49:18.000Z" - }, - "end": { - "$date": "2021-06-20T21:10:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e3721e84-ca20-402c-b31e-a70e9bf686b0", - "start": { - "$date": "2021-06-20T21:10:18.000Z" - }, - "end": { - "$date": "2021-06-20T22:54:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0591259e-0e2a-495d-8a8a-4d40a0531549", - "start": { - "$date": "2021-06-20T22:54:18.000Z" - }, - "end": { - "$date": "2021-06-21T02:47:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9651f883-dd9d-49b2-8e3f-6a56ccbdf0cc", - "start": { - "$date": "2021-06-21T02:47:18.000Z" - }, - "end": { - "$date": "2021-06-21T04:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "310d1f37-1469-4200-8657-b75d5d3c86d8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-20T07:36:48.000Z" - }, - "end": { - "$date": "2021-06-20T08:07:21.000Z" - }, - "events": [ - { - "uuid": "3d7a942d-0af6-4a0f-98dd-b7d508f36f87", - "start": { - "$date": "2021-06-20T07:36:48.000Z" - }, - "end": { - "$date": "2021-06-20T08:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "97ceca3f-029a-4dee-8c84-a1dc10090e9d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T08:00:06.000Z" - }, - "end": { - "$date": "2021-06-20T10:04:32.000Z" - }, - "events": [ - { - "uuid": "178149c0-e53d-4d73-86b9-c393d651766e", - "start": { - "$date": "2021-06-20T08:00:06.000Z" - }, - "end": { - "$date": "2021-06-20T10:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83cc862a-22c2-4177-b831-121e4ea97aa8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-20T08:11:51.000Z" - }, - "end": { - "$date": "2021-06-20T08:36:14.000Z" - }, - "events": [ - { - "uuid": "cba5d5f5-4dc2-4bf2-ae45-a6d8b2adee5b", - "start": { - "$date": "2021-06-20T08:11:51.000Z" - }, - "end": { - "$date": "2021-06-20T08:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ec567890-1c69-4270-9f5e-92878d36596a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T10:04:57.000Z" - }, - "end": { - "$date": "2021-06-20T10:31:54.000Z" - }, - "events": [ - { - "uuid": "4e552bf9-389b-4104-81c9-86274c42afe8", - "start": { - "$date": "2021-06-20T10:04:57.000Z" - }, - "end": { - "$date": "2021-06-20T10:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b223ff8c-1cc7-4b8d-b8f6-b00b92f19f2b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T11:24:09.000Z" - }, - "end": { - "$date": "2021-06-20T11:47:48.000Z" - }, - "events": [ - { - "uuid": "6c75083c-d861-4cb2-aad8-1cc3392246fa", - "start": { - "$date": "2021-06-20T11:24:09.000Z" - }, - "end": { - "$date": "2021-06-20T11:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "05f1065c-16dc-4915-a3a9-e75d689d8ebd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T11:48:06.000Z" - }, - "end": { - "$date": "2021-06-20T14:55:27.000Z" - }, - "events": [ - { - "uuid": "b9703565-2769-43ea-8df5-1a2442a569f6", - "start": { - "$date": "2021-06-20T11:48:06.000Z" - }, - "end": { - "$date": "2021-06-20T13:52:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03a863be-62dd-4c80-86ab-9c6b644be115", - "start": { - "$date": "2021-06-20T13:52:06.000Z" - }, - "end": { - "$date": "2021-06-20T14:50:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5218e5d-ad74-4153-86a7-e4a604a10a35", - "start": { - "$date": "2021-06-20T14:50:06.000Z" - }, - "end": { - "$date": "2021-06-20T14:55:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cd6ce31b-c1c2-43db-90c6-18a85e874944", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T14:08:53.000Z" - }, - "end": { - "$date": "2021-06-20T16:32:14.000Z" - }, - "events": [ - { - "uuid": "773734dc-fe12-4361-b662-9cde61de9f8e", - "start": { - "$date": "2021-06-20T14:08:53.000Z" - }, - "end": { - "$date": "2021-06-20T16:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "e7398bcc-0723-4fae-80ad-32930f2ae57f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-20T15:03:59.000Z" - }, - "end": { - "$date": "2021-06-20T15:22:49.000Z" - }, - "events": [ - { - "uuid": "f0fbaa0d-7d86-44d5-91f2-a9c2a3d80dcd", - "start": { - "$date": "2021-06-20T15:03:59.000Z" - }, - "end": { - "$date": "2021-06-20T15:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fea36b83-3d88-44b8-874d-bcd2e8497b7d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-20T15:17:09.000Z" - }, - "end": { - "$date": "2021-06-20T22:34:51.000Z" - }, - "events": [ - { - "uuid": "c01d1126-2b35-4f0a-b38c-e92dd010bfc4", - "start": { - "$date": "2021-06-20T15:17:09.000Z" - }, - "end": { - "$date": "2021-06-20T19:52:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "368c5ba9-d3ae-4fa9-b6b9-8c1e619cec57", - "start": { - "$date": "2021-06-20T19:52:09.000Z" - }, - "end": { - "$date": "2021-06-20T19:57:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99f97b4c-4e9d-47f4-b1e6-ad90ee2c8922", - "start": { - "$date": "2021-06-20T19:57:09.000Z" - }, - "end": { - "$date": "2021-06-20T20:07:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c476af4-edd4-4d5b-91f4-b3501e0a78a2", - "start": { - "$date": "2021-06-20T20:07:09.000Z" - }, - "end": { - "$date": "2021-06-20T21:18:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3871fe99-eee3-4f4a-9a70-dc1b71cbe97c", - "start": { - "$date": "2021-06-20T21:18:09.000Z" - }, - "end": { - "$date": "2021-06-20T21:20:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "52fa1897-326b-44e8-a2a8-338e494cc76f", - "start": { - "$date": "2021-06-20T21:20:09.000Z" - }, - "end": { - "$date": "2021-06-20T21:49:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5051f5ef-66ca-480d-b8a0-2c718d64d119", - "start": { - "$date": "2021-06-20T21:49:09.000Z" - }, - "end": { - "$date": "2021-06-20T21:54:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d99fb2fe-5eb3-4118-a0f5-72932af77054", - "start": { - "$date": "2021-06-20T21:54:09.000Z" - }, - "end": { - "$date": "2021-06-20T22:34:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "69854ce2-93cd-4ac8-87f4-158d2c5af449", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-20T15:23:26.000Z" - }, - "end": { - "$date": "2021-06-20T16:32:05.000Z" - }, - "events": [ - { - "uuid": "e924f9ac-dcd5-4fa0-a236-06ded78fd56c", - "start": { - "$date": "2021-06-20T15:23:26.000Z" - }, - "end": { - "$date": "2021-06-20T15:50:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "517905d1-c34b-4549-813f-3d2e32788407", - "start": { - "$date": "2021-06-20T15:50:26.000Z" - }, - "end": { - "$date": "2021-06-20T15:51:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b994f87d-117b-4045-b310-c604a68dc8d7", - "start": { - "$date": "2021-06-20T15:51:26.000Z" - }, - "end": { - "$date": "2021-06-20T16:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", - "uuid": "34c23071-8dae-4e9c-94a1-4233d7864642", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-20T15:23:56.000Z" - }, - "end": { - "$date": "2021-06-20T15:56:13.000Z" - }, - "events": [ - { - "uuid": "f29cff1d-e5cd-4d17-9619-714d0f224cfd", - "start": { - "$date": "2021-06-20T15:23:56.000Z" - }, - "end": { - "$date": "2021-06-20T15:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "60d2e579-8cf8-4dc5-9f30-63c3f183c0d2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-20T16:21:19.000Z" - }, - "end": { - "$date": "2021-06-20T16:28:59.000Z" - }, - "events": [ - { - "uuid": "1625457f-d128-46c4-b555-bbae6ab12974", - "start": { - "$date": "2021-06-20T16:21:19.000Z" - }, - "end": { - "$date": "2021-06-20T16:28:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "bf156ff1-f580-41eb-a7db-4889de55b6e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-20T16:29:15.000Z" - }, - "end": { - "$date": "2021-06-20T16:52:21.000Z" - }, - "events": [ - { - "uuid": "e3d7ee7c-f8c4-4215-8552-016ed6b430ab", - "start": { - "$date": "2021-06-20T16:29:15.000Z" - }, - "end": { - "$date": "2021-06-20T16:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a2d1eaa6-46e1-4ea6-9ba2-cc2295c0e513", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-21T04:10:10.000Z" - }, - "end": { - "$date": "2021-06-21T05:56:15.000Z" - }, - "events": [ - { - "uuid": "7ab1c873-a34d-4c40-b0a0-5a141ba18b4e", - "start": { - "$date": "2021-06-21T04:10:10.000Z" - }, - "end": { - "$date": "2021-06-21T04:46:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "abb1a95b-9d90-4908-8c92-dea8f47444a3", - "start": { - "$date": "2021-06-21T04:46:10.000Z" - }, - "end": { - "$date": "2021-06-21T05:16:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af65b0e8-3cda-4680-836e-10a137da12f1", - "start": { - "$date": "2021-06-21T05:16:10.000Z" - }, - "end": { - "$date": "2021-06-21T05:26:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5e89bde8-b99f-4fed-9962-972f8507f872", - "start": { - "$date": "2021-06-21T05:26:10.000Z" - }, - "end": { - "$date": "2021-06-21T06:15:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b537606-02d5-417a-bbd9-12551249e007", - "start": { - "$date": "2021-06-21T06:15:10.000Z" - }, - "end": { - "$date": "2021-06-21T07:40:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef6d9152-42e3-4e60-815e-bea0e72a32b9", - "start": { - "$date": "2021-06-21T07:40:10.000Z" - }, - "end": { - "$date": "2021-06-21T07:43:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7a4ce2ce-c665-45a9-9937-35879a8e7bee", - "start": { - "$date": "2021-06-21T07:43:10.000Z" - }, - "end": { - "$date": "2021-06-21T10:17:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50e1c2dd-6e90-4806-9f95-47ba4742f88e", - "start": { - "$date": "2021-06-21T10:17:10.000Z" - }, - "end": { - "$date": "2021-06-21T12:12:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edc6975b-fcf9-4038-a83b-18d5e23b9e74", - "start": { - "$date": "2021-06-21T12:12:10.000Z" - }, - "end": { - "$date": "2021-06-21T12:22:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26f8f471-5116-4234-8ff9-b9edc3e6b33b", - "start": { - "$date": "2021-06-21T12:22:10.000Z" - }, - "end": { - "$date": "2021-06-21T12:44:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0071359-955e-4d72-8acc-282a5211060e", - "start": { - "$date": "2021-06-21T12:44:10.000Z" - }, - "end": { - "$date": "2021-06-21T14:02:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8af80c81-8672-4046-80bf-6f75495a9d0b", - "start": { - "$date": "2021-06-21T14:02:10.000Z" - }, - "end": { - "$date": "2021-06-21T14:03:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4950cc11-a403-4000-b30c-d6f2862c4485", - "start": { - "$date": "2021-06-21T14:03:10.000Z" - }, - "end": { - "$date": "2021-06-21T14:05:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df6d0df1-e22f-4e3e-be6f-e1d29ccb4a42", - "start": { - "$date": "2021-06-21T14:05:10.000Z" - }, - "end": { - "$date": "2021-06-21T15:25:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f4daa67-3775-4579-8980-83a90e29f810", - "start": { - "$date": "2021-06-21T15:25:10.000Z" - }, - "end": { - "$date": "2021-06-21T15:27:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3d18fcb9-10ae-4461-ab2b-95e10c36ca3e", - "start": { - "$date": "2021-06-21T15:27:10.000Z" - }, - "end": { - "$date": "2021-06-21T15:36:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "22a11376-2d38-4bdf-a448-04580bb5f3f2", - "start": { - "$date": "2021-06-21T15:36:10.000Z" - }, - "end": { - "$date": "2021-06-21T05:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "d2d1e728-b5ca-4d7d-ac76-02e99ae37114", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T18:20:20.000Z" - }, - "end": { - "$date": "2021-06-20T18:25:11.000Z" - }, - "events": [ - { - "uuid": "17e9610f-243a-4231-b240-863dfb3097a0", - "start": { - "$date": "2021-06-20T18:20:20.000Z" - }, - "end": { - "$date": "2021-06-20T18:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4c98b7a6-6d44-4217-b8be-1941d003ff2a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T18:28:06.000Z" - }, - "end": { - "$date": "2021-06-20T18:33:02.000Z" - }, - "events": [ - { - "uuid": "2c81becc-c0bc-4aa3-9258-d3bcaf74b9c8", - "start": { - "$date": "2021-06-20T18:28:06.000Z" - }, - "end": { - "$date": "2021-06-20T18:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7ef41887-d55b-42e7-84c2-793ecf57feb8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-20T18:33:27.000Z" - }, - "end": { - "$date": "2021-06-20T18:36:37.000Z" - }, - "events": [ - { - "uuid": "21be285c-1bf4-4a84-9a16-0430c48576aa", - "start": { - "$date": "2021-06-20T18:33:27.000Z" - }, - "end": { - "$date": "2021-06-20T18:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3cc5af60-876e-40a7-a3c3-341ef75cebc8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-20T18:55:46.000Z" - }, - "end": { - "$date": "2021-06-20T19:25:16.000Z" - }, - "events": [ - { - "uuid": "481314dc-4cff-4ad7-bffb-9ee74158048a", - "start": { - "$date": "2021-06-20T18:55:46.000Z" - }, - "end": { - "$date": "2021-06-20T19:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1b730280-da54-438c-9844-41ea63ce3293", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T19:13:15.000Z" - }, - "end": { - "$date": "2021-06-20T19:20:25.000Z" - }, - "events": [ - { - "uuid": "997c1f24-e865-424b-8940-75a17325bb84", - "start": { - "$date": "2021-06-20T19:13:15.000Z" - }, - "end": { - "$date": "2021-06-20T19:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b512c5e5-09de-4d65-b06e-c1f032473602", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-20T19:19:20.000Z" - }, - "end": { - "$date": "2021-06-20T22:29:01.000Z" - }, - "events": [ - { - "uuid": "fcc5f656-6c48-40c3-987d-1afdd6c7bad0", - "start": { - "$date": "2021-06-20T19:19:20.000Z" - }, - "end": { - "$date": "2021-06-20T22:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ac9995f9-19a3-40f3-9ed9-64c193ba3bff", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-20T19:26:27.000Z" - }, - "end": { - "$date": "2021-06-20T22:29:07.000Z" - }, - "events": [ - { - "uuid": "7ec6c97f-3a10-4092-89f7-c72765eb5869", - "start": { - "$date": "2021-06-20T19:26:27.000Z" - }, - "end": { - "$date": "2021-06-20T22:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a1f84475-adda-4a10-921c-40a7d8b8e656", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T20:22:59.000Z" - }, - "end": { - "$date": "2021-06-20T20:25:10.000Z" - }, - "events": [ - { - "uuid": "5d6446a0-26a6-453b-b863-1ec4cdca2876", - "start": { - "$date": "2021-06-20T20:22:59.000Z" - }, - "end": { - "$date": "2021-06-20T20:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8a6d542e-380d-48f3-9626-17b0c0a5f5a2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-20T22:30:15.000Z" - }, - "end": { - "$date": "2021-06-20T23:12:24.000Z" - }, - "events": [ - { - "uuid": "eb0607e4-de97-449e-8331-bc153727af4e", - "start": { - "$date": "2021-06-20T22:30:15.000Z" - }, - "end": { - "$date": "2021-06-20T23:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a72dee84-5bcb-4fb1-997a-3f96a674b615", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-20T22:51:24.000Z" - }, - "end": { - "$date": "2021-06-20T23:08:57.000Z" - }, - "events": [ - { - "uuid": "aa53c34f-e441-4534-ad49-5aba3519de92", - "start": { - "$date": "2021-06-20T22:51:24.000Z" - }, - "end": { - "$date": "2021-06-20T23:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "931902ae-9976-43d8-a7d9-33b955acba39", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-20T23:19:10.000Z" - }, - "end": { - "$date": "2021-06-20T23:56:51.000Z" - }, - "events": [ - { - "uuid": "4dbd9400-edec-4a25-b2d9-09103e909ba6", - "start": { - "$date": "2021-06-20T23:19:10.000Z" - }, - "end": { - "$date": "2021-06-20T23:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "92bcd36f-be23-4ee6-bc29-6bdc37d0fb0a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-21T02:46:56.000Z" - }, - "end": { - "$date": "2021-06-21T06:31:33.000Z" - }, - "events": [ - { - "uuid": "cf0a9f80-5934-49a5-a3c4-fc52011080b4", - "start": { - "$date": "2021-06-21T02:46:56.000Z" - }, - "end": { - "$date": "2021-06-21T06:31:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "05197dd7-8253-435c-9b7f-9c92beda8b1e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-21T02:47:32.000Z" - }, - "end": { - "$date": "2021-06-21T06:31:58.000Z" - }, - "events": [ - { - "uuid": "b9137867-abf9-4bf3-9297-8caab93765ed", - "start": { - "$date": "2021-06-21T02:47:32.000Z" - }, - "end": { - "$date": "2021-06-21T06:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e366b0b8-292a-47b4-9fb5-c4d8d0e2bce3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-21T02:50:31.000Z" - }, - "end": { - "$date": "2021-06-21T08:35:46.000Z" - }, - "events": [ - { - "uuid": "1b1d7a47-8911-4208-a55d-812d4dbd76e6", - "start": { - "$date": "2021-06-21T02:50:31.000Z" - }, - "end": { - "$date": "2021-06-21T08:35:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c01d8765-2779-4a33-9165-805837ba9154", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-21T03:01:30.000Z" - }, - "end": { - "$date": "2021-06-21T03:30:54.000Z" - }, - "events": [ - { - "uuid": "180c2d0c-ad2b-43db-b794-5f96cd426298", - "start": { - "$date": "2021-06-21T03:01:30.000Z" - }, - "end": { - "$date": "2021-06-21T03:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cd87e798-611b-4847-aa06-882354c5f9b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-21T03:11:41.000Z" - }, - "end": { - "$date": "2021-06-21T04:02:48.000Z" - }, - "events": [ - { - "uuid": "08005bd1-7e18-476b-9a8d-f572e89d72c8", - "start": { - "$date": "2021-06-21T03:11:41.000Z" - }, - "end": { - "$date": "2021-06-21T04:02:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "96add697-cbb7-42f3-89b5-de37dcd29512", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-21T03:54:39.000Z" - }, - "end": { - "$date": "2021-06-21T04:42:48.000Z" - }, - "events": [ - { - "uuid": "1c860b79-2b15-4248-9213-a0ecf661079c", - "start": { - "$date": "2021-06-21T03:54:39.000Z" - }, - "end": { - "$date": "2021-06-21T04:42:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b777fa1-41f9-4904-a34a-58c316e626e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-21T04:05:15.000Z" - }, - "end": { - "$date": "2021-06-21T04:06:46.000Z" - }, - "events": [ - { - "uuid": "ae36334f-9ac4-4c95-a0fb-a4c51872b6f1", - "start": { - "$date": "2021-06-21T04:05:15.000Z" - }, - "end": { - "$date": "2021-06-21T04:06:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fec61691-db64-4cfd-a398-0e44d4411b50", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-21T04:06:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:56:58.000Z" - }, - "events": [ - { - "uuid": "8b14cb87-91c6-4c6b-a062-33fafa70c4e9", - "start": { - "$date": "2021-06-21T04:06:57.000Z" - }, - "end": { - "$date": "2021-06-21T05:30:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7327fa0e-3915-4d3a-87f6-e7722d88352f", - "start": { - "$date": "2021-06-21T05:30:57.000Z" - }, - "end": { - "$date": "2021-06-21T06:59:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53d00f79-cfeb-44ed-884e-43effe93a8ba", - "start": { - "$date": "2021-06-21T06:59:57.000Z" - }, - "end": { - "$date": "2021-06-21T07:40:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "217dfbc4-d03b-4580-bc62-82c82821f1dd", - "start": { - "$date": "2021-06-21T07:40:57.000Z" - }, - "end": { - "$date": "2021-06-21T15:01:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee80538e-1c8f-4905-a5f6-d1fc8193a88a", - "start": { - "$date": "2021-06-21T15:01:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:31:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4444f210-2d9e-45e2-8d57-72866cc85b80", - "start": { - "$date": "2021-06-21T16:31:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:39:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9976af69-6ea1-46dd-ad4b-67abe1bb3071", - "start": { - "$date": "2021-06-21T16:39:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:42:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "43a643b2-2cfa-4da3-9a7d-879072c7507f", - "start": { - "$date": "2021-06-21T16:42:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:47:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "781677ed-396c-446a-bba8-33fa70e91d26", - "start": { - "$date": "2021-06-21T16:47:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:51:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a21918d6-fe98-4a5d-a435-a3cdc2202db9", - "start": { - "$date": "2021-06-21T16:51:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:53:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "78da37f3-a0bd-4afe-90a1-97ecd749947d", - "start": { - "$date": "2021-06-21T16:53:57.000Z" - }, - "end": { - "$date": "2021-06-21T16:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4d6a0256-f92a-47e1-9147-084580005fd4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-21T04:10:26.000Z" - }, - "end": { - "$date": "2021-06-21T06:31:30.000Z" - }, - "events": [ - { - "uuid": "c82b7548-3ac5-4627-ad46-216fc505acbe", - "start": { - "$date": "2021-06-21T04:10:26.000Z" - }, - "end": { - "$date": "2021-06-21T06:31:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "712eacac-b622-4507-8b2e-eed8f8338cb1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-21T04:31:44.000Z" - }, - "end": { - "$date": "2021-06-21T04:51:43.000Z" - }, - "events": [ - { - "uuid": "06e4eaba-6ab6-4f13-b6ab-5f9ba5c1bc26", - "start": { - "$date": "2021-06-21T04:31:44.000Z" - }, - "end": { - "$date": "2021-06-21T04:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a304cd7-f3a2-45cc-8a2e-5c2c49dff70a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-21T05:03:29.000Z" - }, - "end": { - "$date": "2021-06-21T05:36:48.000Z" - }, - "events": [ - { - "uuid": "7916a3a5-a87e-4ac4-ada4-f7c16a98f175", - "start": { - "$date": "2021-06-21T05:03:29.000Z" - }, - "end": { - "$date": "2021-06-21T05:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "ffd513de-9d24-4f3f-a424-d3bb3d6d7ae4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-21T06:44:53.000Z" - }, - "end": { - "$date": "2021-06-21T06:46:04.000Z" - }, - "events": [ - { - "uuid": "12d38a90-1eec-44a0-b1fe-615ade70f27d", - "start": { - "$date": "2021-06-21T06:44:53.000Z" - }, - "end": { - "$date": "2021-06-21T06:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "414ae502-d0f5-4809-87a0-c53162085d91", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-21T06:34:08.000Z" - }, - "end": { - "$date": "2021-06-21T09:50:04.000Z" - }, - "events": [ - { - "uuid": "4733afd0-64ed-472f-98dd-eeb9d1af2f86", - "start": { - "$date": "2021-06-21T06:34:08.000Z" - }, - "end": { - "$date": "2021-06-21T09:50:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "b4973613-ad41-4b66-a9d3-29b4e1baceaf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-21T06:46:14.000Z" - }, - "end": { - "$date": "2021-06-21T06:54:54.000Z" - }, - "events": [ - { - "uuid": "a0e37a77-3ed8-4f7c-9e2e-55920da127cf", - "start": { - "$date": "2021-06-21T06:46:14.000Z" - }, - "end": { - "$date": "2021-06-21T06:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "5e7aa612-8235-49ab-9a41-199d672c8854", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-21T06:55:39.000Z" - }, - "end": { - "$date": "2021-06-21T09:48:16.000Z" - }, - "events": [ - { - "uuid": "a67b45d8-106f-4717-8304-3e4cb83d6fbb", - "start": { - "$date": "2021-06-21T06:55:39.000Z" - }, - "end": { - "$date": "2021-06-21T09:48:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "d5e59054-0936-437a-9f89-5fb82541e91d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-21T16:21:48.000Z" - }, - "end": { - "$date": "2021-06-21T17:01:25.000Z" - }, - "events": [ - { - "uuid": "7fb36920-e0f2-405b-9c8f-4f06e80f02a5", - "start": { - "$date": "2021-06-21T16:21:48.000Z" - }, - "end": { - "$date": "2021-06-21T17:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3af65031-37a3-41c6-b986-36c959b849b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-21T18:31:33.000Z" - }, - "end": { - "$date": "2021-06-21T18:31:44.000Z" - }, - "events": [ - { - "uuid": "105eeed7-504a-4aed-a053-47e1c1cd6d63", - "start": { - "$date": "2021-06-21T18:31:33.000Z" - }, - "end": { - "$date": "2021-06-21T18:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "f25e2b98-29a7-4b9c-988a-3091a400e094", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-21T17:01:52.000Z" - }, - "end": { - "$date": "2021-06-21T18:29:00.000Z" - }, - "events": [ - { - "uuid": "346ba5a2-692a-42f3-b674-ea0ecbbbfd0d", - "start": { - "$date": "2021-06-21T17:01:52.000Z" - }, - "end": { - "$date": "2021-06-21T18:29:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "6684c0a7-5f57-462c-abe0-d17c5cddb393", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-21T17:06:11.000Z" - }, - "end": { - "$date": "2021-06-21T17:07:47.000Z" - }, - "events": [ - { - "uuid": "8aa81271-c3ce-4dbf-9451-14d06a696eac", - "start": { - "$date": "2021-06-21T17:06:11.000Z" - }, - "end": { - "$date": "2021-06-21T17:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "3750f913-502e-4a18-9321-47dfb0a0e17e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-21T17:08:36.000Z" - }, - "end": { - "$date": "2021-06-21T17:13:23.000Z" - }, - "events": [ - { - "uuid": "2e90e3ac-8968-4382-b44f-e33c1422e4c6", - "start": { - "$date": "2021-06-21T17:08:36.000Z" - }, - "end": { - "$date": "2021-06-21T17:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "cdd0f8e0-74ec-49a9-aa3b-089eea34a867", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-21T17:14:22.000Z" - }, - "end": { - "$date": "2021-06-21T17:17:18.000Z" - }, - "events": [ - { - "uuid": "30522c3c-f2ae-4130-b116-817b5c09e5e6", - "start": { - "$date": "2021-06-21T17:14:22.000Z" - }, - "end": { - "$date": "2021-06-21T17:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "6ed26c2e-a2fa-4e52-8e16-e778cf5b3e6e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-21T17:20:03.000Z" - }, - "end": { - "$date": "2021-06-21T17:27:59.000Z" - }, - "events": [ - { - "uuid": "d0018bd2-9805-4732-a61c-45a1e301fd6a", - "start": { - "$date": "2021-06-21T17:20:03.000Z" - }, - "end": { - "$date": "2021-06-21T17:27:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "176c992e-548c-4fe4-a6b4-1b988929fd3e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-21T18:33:01.000Z" - }, - "end": { - "$date": "2021-06-21T22:11:23.000Z" - }, - "events": [ - { - "uuid": "43a60968-1e38-4f02-89b9-cd369c84a9f6", - "start": { - "$date": "2021-06-21T18:33:01.000Z" - }, - "end": { - "$date": "2021-06-21T19:25:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "075e4ead-6c1f-4958-a781-88be10dc8345", - "start": { - "$date": "2021-06-21T19:25:01.000Z" - }, - "end": { - "$date": "2021-06-21T20:35:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58c4daf6-7773-4f93-b3de-503450a2392a", - "start": { - "$date": "2021-06-21T20:35:01.000Z" - }, - "end": { - "$date": "2021-06-21T20:58:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "780d79cd-b781-4188-93d3-7bc4ad3056f5", - "start": { - "$date": "2021-06-21T20:58:01.000Z" - }, - "end": { - "$date": "2021-06-21T21:47:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "06716ca0-1ead-4214-a801-62f403bc9b2f", - "start": { - "$date": "2021-06-21T21:47:01.000Z" - }, - "end": { - "$date": "2021-06-21T21:57:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "376f8fe0-0542-49fd-a7e5-619ebbfabbfe", - "start": { - "$date": "2021-06-21T21:57:01.000Z" - }, - "end": { - "$date": "2021-06-21T22:09:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc074b57-88e6-48ea-a3de-174f4226f62d", - "start": { - "$date": "2021-06-21T22:09:01.000Z" - }, - "end": { - "$date": "2021-06-21T22:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbb4654e-a2b0-499a-ae6f-33d31f4c1a49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-21T19:44:37.000Z" - }, - "end": { - "$date": "2021-06-21T19:46:41.000Z" - }, - "events": [ - { - "uuid": "949ece8f-1c3a-41e2-be69-bdb9df947b65", - "start": { - "$date": "2021-06-21T19:44:37.000Z" - }, - "end": { - "$date": "2021-06-21T19:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "a6308262-df04-4efe-ad16-75552a9ddfcd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-21T21:23:45.000Z" - }, - "end": { - "$date": "2021-06-21T22:01:40.000Z" - }, - "events": [ - { - "uuid": "0328ed5f-6f08-4bed-9971-ed08fa1813f1", - "start": { - "$date": "2021-06-21T21:23:45.000Z" - }, - "end": { - "$date": "2021-06-21T21:34:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "580476cc-4700-48ab-a9c0-140234e29547", - "start": { - "$date": "2021-06-21T21:34:45.000Z" - }, - "end": { - "$date": "2021-06-21T22:26:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de35bb00-d7e6-4fb8-882d-223900ad18aa", - "start": { - "$date": "2021-06-21T22:26:45.000Z" - }, - "end": { - "$date": "2021-06-21T22:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b9db77f9-7753-41c3-bada-852c593962f4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-21T22:26:54.000Z" - }, - "end": { - "$date": "2021-06-21T22:32:29.000Z" - }, - "events": [ - { - "uuid": "a1376f0a-0ab1-47c8-be5d-b1ff759cd3f8", - "start": { - "$date": "2021-06-21T22:26:54.000Z" - }, - "end": { - "$date": "2021-06-21T22:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "caa4eb67-8210-4007-bf03-1d1cc3e682d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-21T22:32:49.000Z" - }, - "end": { - "$date": "2021-06-22T01:31:01.000Z" - }, - "events": [ - { - "uuid": "cdcbe1b1-3067-4d84-afea-030f1adc628d", - "start": { - "$date": "2021-06-21T22:32:49.000Z" - }, - "end": { - "$date": "2021-06-22T00:30:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f714804b-3e86-42ec-b0e3-3ba76fcce12f", - "start": { - "$date": "2021-06-22T00:30:49.000Z" - }, - "end": { - "$date": "2021-06-22T00:35:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc204055-6582-4e94-bb8b-763a9618d267", - "start": { - "$date": "2021-06-22T00:35:49.000Z" - }, - "end": { - "$date": "2021-06-22T00:45:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d74ce1e1-1256-4ab6-a3d8-1020435def63", - "start": { - "$date": "2021-06-22T00:45:49.000Z" - }, - "end": { - "$date": "2021-06-22T00:52:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f61b679-5d46-49ff-9d06-1cefd6968fec", - "start": { - "$date": "2021-06-22T00:52:49.000Z" - }, - "end": { - "$date": "2021-06-22T01:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6812d472-fca1-4719-a339-2d2992cf0a86", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-21T22:39:02.000Z" - }, - "end": { - "$date": "2021-06-22T00:24:27.000Z" - }, - "events": [ - { - "uuid": "8065ed98-a410-4260-844d-15a143e78be9", - "start": { - "$date": "2021-06-21T22:39:02.000Z" - }, - "end": { - "$date": "2021-06-22T00:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "971e240d-4fa0-4356-a142-ae4084d3620b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-21T22:51:54.000Z" - }, - "end": { - "$date": "2021-06-22T03:03:24.000Z" - }, - "events": [ - { - "uuid": "6f0cdf64-f3dd-49c1-95cb-34c25d33d3f6", - "start": { - "$date": "2021-06-21T22:51:54.000Z" - }, - "end": { - "$date": "2021-06-22T02:14:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c818487a-b280-45bd-b958-218649fd35ab", - "start": { - "$date": "2021-06-22T02:14:54.000Z" - }, - "end": { - "$date": "2021-06-22T03:03:24.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "ff566590-e109-4280-acd3-57e9b40382ef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-21T23:24:22.000Z" - }, - "end": { - "$date": "2021-06-22T00:59:18.000Z" - }, - "events": [ - { - "uuid": "a4b4bf3c-440b-4716-beb7-48853427706b", - "start": { - "$date": "2021-06-21T23:24:22.000Z" - }, - "end": { - "$date": "2021-06-22T00:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "0ef59424-ae0a-4c5c-a7bd-590cc0472039", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-21T23:57:07.000Z" - }, - "end": { - "$date": "2021-06-22T00:22:57.000Z" - }, - "events": [ - { - "uuid": "5d4e3b97-422a-4a6d-89b6-e51a0655f21c", - "start": { - "$date": "2021-06-21T23:57:07.000Z" - }, - "end": { - "$date": "2021-06-22T00:22:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87c9d0b3-0e15-4ec7-8ac4-2c4a0e6e8b1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-21T20:59:02.000Z" - }, - "end": { - "$date": "2021-06-22T01:58:47.000Z" - }, - "events": [ - { - "uuid": "891097d1-a8e5-47fb-98b2-abb0318adc4a", - "start": { - "$date": "2021-06-21T20:59:02.000Z" - }, - "end": { - "$date": "2021-06-22T01:58:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f48c8120-0578-4d01-88db-f6a537fd774d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-22T01:31:46.000Z" - }, - "end": { - "$date": "2021-06-22T05:26:05.000Z" - }, - "events": [ - { - "uuid": "2dfdcd09-1d7f-4a00-be84-811a6a201a9e", - "start": { - "$date": "2021-06-22T01:31:46.000Z" - }, - "end": { - "$date": "2021-06-22T05:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f882381f-2d8f-411d-8b00-9ecdc1341252", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-22T02:04:18.000Z" - }, - "end": { - "$date": "2021-06-22T04:38:01.000Z" - }, - "events": [ - { - "uuid": "a29cf67d-7b94-4a2b-8e33-32870cafac84", - "start": { - "$date": "2021-06-22T02:04:18.000Z" - }, - "end": { - "$date": "2021-06-22T04:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d0d90b4-e2be-4443-b932-5a1b190c6566", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-22T02:04:51.000Z" - }, - "end": { - "$date": "2021-06-22T02:23:12.000Z" - }, - "events": [ - { - "uuid": "802bd0ad-a9da-4598-a478-ea8a1a081bcc", - "start": { - "$date": "2021-06-22T02:04:51.000Z" - }, - "end": { - "$date": "2021-06-22T02:23:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "4ad242bd-24dc-42da-afc5-98d46279cf06", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T02:20:42.000Z" - }, - "end": { - "$date": "2021-06-22T03:58:53.000Z" - }, - "events": [ - { - "uuid": "4579503c-42eb-4628-90bd-1dec0557a276", - "start": { - "$date": "2021-06-22T02:20:42.000Z" - }, - "end": { - "$date": "2021-06-22T03:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "960328ea-c20a-47b4-8f61-518e92bcd82a", - "uuid": "5b28a21a-3787-49a2-b2f7-97bfaffe0af2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-22T02:23:12.000Z" - }, - "end": { - "$date": "2021-06-22T03:58:54.000Z" - }, - "events": [ - { - "uuid": "da54a6d8-671f-40de-963e-7e5366bd978e", - "start": { - "$date": "2021-06-22T02:23:12.000Z" - }, - "end": { - "$date": "2021-06-22T03:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1fe27b5-ac83-416c-8096-31e1ad3cd2d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-22T03:49:56.000Z" - }, - "end": { - "$date": "2021-06-22T03:50:04.000Z" - }, - "events": [ - { - "uuid": "82cb09d5-3bb9-4c40-98d0-ef0a120d4f84", - "start": { - "$date": "2021-06-22T03:49:56.000Z" - }, - "end": { - "$date": "2021-06-22T03:50:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6b3bc8c-284b-430e-b383-68dfd20a18fe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T03:49:43.000Z" - }, - "end": { - "$date": "2021-06-22T03:51:21.000Z" - }, - "events": [ - { - "uuid": "f2cec299-4a8b-47e6-ae9d-c26c8ebef269", - "start": { - "$date": "2021-06-22T03:49:43.000Z" - }, - "end": { - "$date": "2021-06-22T03:51:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d9c8c7c-f0bc-4d86-8b48-b62d8baaaed6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-22T04:02:35.000Z" - }, - "end": { - "$date": "2021-06-22T04:03:18.000Z" - }, - "events": [ - { - "uuid": "96c68b1b-fb66-498f-9025-1f4d0b8f9527", - "start": { - "$date": "2021-06-22T04:02:35.000Z" - }, - "end": { - "$date": "2021-06-22T04:03:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88e78a3a-5b32-443e-890c-9b179f24b3a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-22T04:48:05.000Z" - }, - "end": { - "$date": "2021-06-22T04:48:15.000Z" - }, - "events": [ - { - "uuid": "fb6f0729-b671-459a-9219-c26588a581c6", - "start": { - "$date": "2021-06-22T04:48:05.000Z" - }, - "end": { - "$date": "2021-06-22T04:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "c779fd40-c1bc-45b5-9845-ded8594c1fdc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-22T03:58:59.000Z" - }, - "end": { - "$date": "2021-06-22T05:58:51.000Z" - }, - "events": [ - { - "uuid": "bad1baa4-2442-496c-9ded-8ba7c1cc5a14", - "start": { - "$date": "2021-06-22T03:58:59.000Z" - }, - "end": { - "$date": "2021-06-22T05:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "e1459320-a05a-475f-b171-77ca4c9fed54", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T03:59:18.000Z" - }, - "end": { - "$date": "2021-06-22T05:59:06.000Z" - }, - "events": [ - { - "uuid": "91f0798b-c611-4b33-960c-4027e3f4a58f", - "start": { - "$date": "2021-06-22T03:59:18.000Z" - }, - "end": { - "$date": "2021-06-22T05:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1dcc173c-a0b2-42b2-8c6c-748d27435f17", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-06-22T04:10:50.000Z" - }, - "end": { - "$date": "2021-06-22T04:47:56.000Z" - }, - "events": [ - { - "uuid": "2d3ab472-da39-455a-8a75-1c550a09a9d4", - "start": { - "$date": "2021-06-22T04:10:50.000Z" - }, - "end": { - "$date": "2021-06-22T04:47:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "415c0246-0bb6-4221-85cd-925de2ee1d36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T04:11:35.000Z" - }, - "end": { - "$date": "2021-06-22T04:47:50.000Z" - }, - "events": [ - { - "uuid": "76c7d5ae-bc2f-4445-a0cf-f2acfa0dbf23", - "start": { - "$date": "2021-06-22T04:11:35.000Z" - }, - "end": { - "$date": "2021-06-22T04:47:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9440c6b4-1a8b-4c30-8af1-7af4e4d37443", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-22T04:24:20.000Z" - }, - "end": { - "$date": "2021-06-22T05:06:20.000Z" - }, - "events": [ - { - "uuid": "1033fd69-a958-49fd-9e04-f8078ebe4753", - "start": { - "$date": "2021-06-22T04:24:20.000Z" - }, - "end": { - "$date": "2021-06-22T05:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "1f374999-1160-4beb-a665-15f84f0591ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-22T04:48:54.000Z" - }, - "end": { - "$date": "2021-06-22T05:48:03.000Z" - }, - "events": [ - { - "uuid": "e30c8f72-b0c4-4ab6-a946-d05c6a891759", - "start": { - "$date": "2021-06-22T04:48:54.000Z" - }, - "end": { - "$date": "2021-06-22T05:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7209efe5-8ee1-4d6c-974b-beb496aeb21f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-22T06:05:56.000Z" - }, - "end": { - "$date": "2021-06-22T07:40:51.000Z" - }, - "events": [ - { - "uuid": "21d762d3-c70d-4c40-9582-f221d04927d4", - "start": { - "$date": "2021-06-22T06:05:56.000Z" - }, - "end": { - "$date": "2021-06-22T07:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1d178fd3-d165-4e49-94db-5c59989780b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T06:17:07.000Z" - }, - "end": { - "$date": "2021-06-22T09:18:19.000Z" - }, - "events": [ - { - "uuid": "d7d29161-4b26-4880-b741-5f6eb05d1de8", - "start": { - "$date": "2021-06-22T06:17:07.000Z" - }, - "end": { - "$date": "2021-06-22T07:15:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe81c002-6f50-418f-b35d-7f0d9fc66263", - "start": { - "$date": "2021-06-22T07:15:07.000Z" - }, - "end": { - "$date": "2021-06-22T07:21:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a33f2f6d-9f2c-4652-aece-69943ad968b7", - "start": { - "$date": "2021-06-22T07:21:07.000Z" - }, - "end": { - "$date": "2021-06-22T09:18:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "72de5e87-5ee0-40d4-99a8-20c6b5675377", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-22T13:54:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:54:30.000Z" - }, - "events": [ - { - "uuid": "6ff9d032-1d09-456d-852a-6cdd73e899d2", - "start": { - "$date": "2021-06-22T13:54:51.000Z" - }, - "end": { - "$date": "2021-06-22T15:14:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d44087b5-9402-4f2b-92c4-6f24c7eeac17", - "start": { - "$date": "2021-06-22T15:14:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:15:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "63050449-24cb-4cfd-8e12-c744a4184d4f", - "start": { - "$date": "2021-06-22T16:15:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:18:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39fc3a4b-04da-486d-81dd-9f239cc5f8b2", - "start": { - "$date": "2021-06-22T16:18:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:28:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e63d1754-adb0-4d23-91c8-f331a2b8c694", - "start": { - "$date": "2021-06-22T16:28:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:31:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8017778-7358-4f3e-af83-75878d3c4b08", - "start": { - "$date": "2021-06-22T16:31:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:44:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "becf0509-cd02-48f7-b966-c784c3868587", - "start": { - "$date": "2021-06-22T16:44:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:49:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "790cd0b1-f558-43cd-8d86-7233c32208ac", - "start": { - "$date": "2021-06-22T16:49:51.000Z" - }, - "end": { - "$date": "2021-06-22T16:54:30.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3def299a-5743-47a2-bc5c-829af08f385d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T17:42:19.000Z" - }, - "end": { - "$date": "2021-06-22T17:47:44.000Z" - }, - "events": [ - { - "uuid": "d64941ba-f1ab-46b4-834f-f74e7898346c", - "start": { - "$date": "2021-06-22T17:42:19.000Z" - }, - "end": { - "$date": "2021-06-22T17:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3a57d14d-3b44-4e24-8bae-4db3f67ce751", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T17:50:00.000Z" - }, - "end": { - "$date": "2021-06-22T18:36:41.000Z" - }, - "events": [ - { - "uuid": "8741bd9a-8acb-4819-ac28-a165c39c8ace", - "start": { - "$date": "2021-06-22T17:50:00.000Z" - }, - "end": { - "$date": "2021-06-22T18:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "704490a4-3bd1-410a-a034-d22d8c45b337", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-22T18:31:29.000Z" - }, - "end": { - "$date": "2021-06-22T18:41:18.000Z" - }, - "events": [ - { - "uuid": "4d03ea45-81b7-4e05-9a02-209b315df96c", - "start": { - "$date": "2021-06-22T18:31:29.000Z" - }, - "end": { - "$date": "2021-06-22T18:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "51c68bac-b137-4a40-a4fa-ab8084add168", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T18:54:14.000Z" - }, - "end": { - "$date": "2021-06-22T20:24:54.000Z" - }, - "events": [ - { - "uuid": "56089e73-c751-4e2a-a574-fad6a260bffd", - "start": { - "$date": "2021-06-22T18:54:14.000Z" - }, - "end": { - "$date": "2021-06-22T20:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba773125-fa74-4c48-b6b5-91ab010cdb59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-22T20:03:54.000Z" - }, - "end": { - "$date": "2021-06-22T20:46:22.000Z" - }, - "events": [ - { - "uuid": "f5a12560-7761-4817-94c3-ee83963a6a9d", - "start": { - "$date": "2021-06-22T20:03:54.000Z" - }, - "end": { - "$date": "2021-06-22T20:46:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d89edb33-205c-4674-a02b-dd15f86fa9d4", - "start": { - "$date": "2021-06-22T20:46:54.000Z" - }, - "end": { - "$date": "2021-06-22T20:46:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "6ba6d40e-8a72-460f-b626-9c362c955141", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T20:09:53.000Z" - }, - "end": { - "$date": "2021-06-22T20:14:19.000Z" - }, - "events": [ - { - "uuid": "d9d79983-65af-4459-9164-4b47d906e206", - "start": { - "$date": "2021-06-22T20:09:53.000Z" - }, - "end": { - "$date": "2021-06-22T20:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7a01a6ef-be83-4bf1-b3cc-c2d34fabae72", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T20:24:55.000Z" - }, - "end": { - "$date": "2021-06-22T20:45:02.000Z" - }, - "events": [ - { - "uuid": "0335dd9d-ed74-46ed-9381-e94a739aa7ce", - "start": { - "$date": "2021-06-22T20:24:55.000Z" - }, - "end": { - "$date": "2021-06-22T20:45:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2aa962f9-6f21-44f6-a294-d462f9d7b221", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T20:25:31.000Z" - }, - "end": { - "$date": "2021-06-22T20:27:19.000Z" - }, - "events": [ - { - "uuid": "56fe7129-ad56-4cd5-bb5a-57cf65e25439", - "start": { - "$date": "2021-06-22T20:25:31.000Z" - }, - "end": { - "$date": "2021-06-22T20:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d7b5c22-80e5-48ba-a6b3-0a5b235057ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T21:01:34.000Z" - }, - "end": { - "$date": "2021-06-22T21:29:24.000Z" - }, - "events": [ - { - "uuid": "f86b919e-c544-4cfc-8ef3-d078c0924e24", - "start": { - "$date": "2021-06-22T21:01:34.000Z" - }, - "end": { - "$date": "2021-06-22T21:29:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fa35b004-545c-4194-bbc5-9cda33e4005f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T21:01:50.000Z" - }, - "end": { - "$date": "2021-06-22T21:38:51.000Z" - }, - "events": [ - { - "uuid": "30924064-6e5d-41a9-a467-9b170b1b7029", - "start": { - "$date": "2021-06-22T21:01:50.000Z" - }, - "end": { - "$date": "2021-06-22T21:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3464f024-c0b4-4e48-83aa-790f1bf5fdde", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-22T21:33:04.000Z" - }, - "end": { - "$date": "2021-06-22T21:45:14.000Z" - }, - "events": [ - { - "uuid": "079c20aa-b216-4f7f-8f13-965eeecfffcd", - "start": { - "$date": "2021-06-22T21:33:04.000Z" - }, - "end": { - "$date": "2021-06-22T21:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "aefd9882-d549-4fe6-a53f-9f4c63758672", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-22T21:56:57.000Z" - }, - "end": { - "$date": "2021-06-22T22:42:01.000Z" - }, - "events": [ - { - "uuid": "e0a2e8c2-3ef2-44cf-9f58-361ff5edc46d", - "start": { - "$date": "2021-06-22T21:56:57.000Z" - }, - "end": { - "$date": "2021-06-22T22:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "89a30c61-534c-45bc-9d77-d6849f04bc62", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-22T22:30:27.000Z" - }, - "end": { - "$date": "2021-06-23T01:50:06.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-22T22:30:27.000Z" - }, - "end": { - "$date": "2021-06-23T01:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c999f517-df77-4108-af65-dda416a8b3e6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-22T23:16:21.000Z" - }, - "end": { - "$date": "2021-06-22T23:51:43.000Z" - }, - "events": [ - { - "uuid": "50c4b6cb-c5e5-4a56-b4ae-5fc91591bd65", - "start": { - "$date": "2021-06-22T23:16:21.000Z" - }, - "end": { - "$date": "2021-06-22T23:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "93d3532a-c398-41ab-b627-248019dc0e41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-22T23:24:34.000Z" - }, - "end": { - "$date": "2021-06-23T00:12:31.000Z" - }, - "events": [ - { - "uuid": "96a439bb-5a0c-482c-9e26-2c0ee499597b", - "start": { - "$date": "2021-06-22T23:24:34.000Z" - }, - "end": { - "$date": "2021-06-23T00:12:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "c6d9bd63-0f7d-46a9-8252-23ef3e6832be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-23T00:02:39.000Z" - }, - "end": { - "$date": "2021-06-23T04:22:23.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-23T00:02:39.000Z" - }, - "end": { - "$date": "2021-06-23T04:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "44ed9d81-ae0b-42e6-86c2-4ce6ffa0d4ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-23T00:12:42.000Z" - }, - "end": { - "$date": "2021-06-23T00:18:39.000Z" - }, - "events": [ - { - "uuid": "1adf2d3b-747f-4911-bb73-1f78b679a37d", - "start": { - "$date": "2021-06-23T00:12:42.000Z" - }, - "end": { - "$date": "2021-06-23T00:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "46b0ba9c-5b55-475c-9508-aa2ecf3bfa53", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T00:25:11.000Z" - }, - "end": { - "$date": "2021-06-23T01:38:11.000Z" - }, - "events": [ - { - "uuid": "1e89d348-14c7-4e5f-b9df-0e4fd3e2d51e", - "start": { - "$date": "2021-06-23T00:25:11.000Z" - }, - "end": { - "$date": "2021-06-23T01:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8739b393-7316-40f5-9d7f-01838ee013e9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-23T06:11:39.000Z" - }, - "end": { - "$date": "2021-06-23T07:16:18.000Z" - }, - "events": [ - { - "uuid": "b2cd07ea-9f88-419d-9ebb-fa568e564564", - "start": { - "$date": "2021-06-23T06:11:39.000Z" - }, - "end": { - "$date": "2021-06-23T07:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dc97c121-5f35-433a-89c3-0add2aba0a3e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-23T01:49:31.000Z" - }, - "end": { - "$date": "2021-06-23T06:11:50.000Z" - }, - "events": [ - { - "uuid": "b87c6816-9730-4257-b6c0-cff4dfc8fe6c", - "start": { - "$date": "2021-06-23T01:49:31.000Z" - }, - "end": { - "$date": "2021-06-23T06:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "cf0a4d2c-58c7-4da7-b83b-a815f290d2b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-23T01:54:57.000Z" - }, - "end": { - "$date": "2021-06-23T04:22:05.000Z" - }, - "events": [ - { - "uuid": "17f1eedb-839c-45d7-aee5-c6192679dbc2", - "start": { - "$date": "2021-06-23T01:54:57.000Z" - }, - "end": { - "$date": "2021-06-23T04:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6bc875c5-92f3-4575-a288-614771f2d6dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T02:05:24.000Z" - }, - "end": { - "$date": "2021-06-23T05:16:49.000Z" - }, - "events": [ - { - "uuid": "79d6a049-8710-4623-996b-8cd79754c685", - "start": { - "$date": "2021-06-23T02:05:24.000Z" - }, - "end": { - "$date": "2021-06-23T05:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cb433f9f-a012-4d09-b9db-1a02379f2439", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-23T02:21:30.000Z" - }, - "end": { - "$date": "2021-06-23T03:38:11.000Z" - }, - "events": [ - { - "uuid": "081248c5-c8e3-4ad4-89ee-70fa0cdde713", - "start": { - "$date": "2021-06-23T02:21:30.000Z" - }, - "end": { - "$date": "2021-06-23T03:11:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cdb7e978-8718-4cb3-8ac5-bfa5707b173e", - "start": { - "$date": "2021-06-23T03:11:30.000Z" - }, - "end": { - "$date": "2021-06-23T03:12:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32355061-18dc-412e-8594-36ed5f68bd0c", - "start": { - "$date": "2021-06-23T03:12:30.000Z" - }, - "end": { - "$date": "2021-06-23T03:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eec2b323-0953-4eb5-9f26-3bc338e0a20f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-23T03:12:31.000Z" - }, - "end": { - "$date": "2021-06-23T03:45:10.000Z" - }, - "events": [ - { - "uuid": "abac61c0-5b36-43d0-b470-180e6434bc55", - "start": { - "$date": "2021-06-23T03:12:31.000Z" - }, - "end": { - "$date": "2021-06-23T03:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "ed005577-bad1-414b-aadb-97e51694721d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-23T03:20:06.000Z" - }, - "end": { - "$date": "2021-06-23T05:38:34.000Z" - }, - "events": [ - { - "uuid": "fffb9daa-2945-4e12-8993-de1ffbfe2714", - "start": { - "$date": "2021-06-23T03:20:06.000Z" - }, - "end": { - "$date": "2021-06-23T05:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "6d820e7a-424c-4a53-b0a8-c0c0e625bccc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T03:24:12.000Z" - }, - "end": { - "$date": "2021-06-23T03:26:09.000Z" - }, - "events": [ - { - "uuid": "b7ce224a-3cae-4253-b6be-c74d24cb457e", - "start": { - "$date": "2021-06-23T03:24:12.000Z" - }, - "end": { - "$date": "2021-06-23T03:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "7b0a05ad-2106-4588-aafe-43ed7885f26b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T03:26:47.000Z" - }, - "end": { - "$date": "2021-06-23T03:31:15.000Z" - }, - "events": [ - { - "uuid": "2cffb0d6-d50a-4821-968f-6f533dcb9af5", - "start": { - "$date": "2021-06-23T03:26:47.000Z" - }, - "end": { - "$date": "2021-06-23T03:31:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "855991ad-a197-4338-af7a-d0873e785063", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T03:34:40.000Z" - }, - "end": { - "$date": "2021-06-23T03:35:57.000Z" - }, - "events": [ - { - "uuid": "6fa66820-c751-4584-b03f-8356e3831b8d", - "start": { - "$date": "2021-06-23T03:34:40.000Z" - }, - "end": { - "$date": "2021-06-23T03:35:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "b925b9c5-c3ba-4af2-8b7f-97df769f5662", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T03:38:45.000Z" - }, - "end": { - "$date": "2021-06-23T03:40:42.000Z" - }, - "events": [ - { - "uuid": "47fdc21b-da6b-45eb-9171-8e71f56dd63f", - "start": { - "$date": "2021-06-23T03:38:45.000Z" - }, - "end": { - "$date": "2021-06-23T03:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0e1ecfc9-5218-457a-b857-a42b83a8118f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-23T03:39:29.000Z" - }, - "end": { - "$date": "2021-06-23T03:49:50.000Z" - }, - "events": [ - { - "uuid": "86e78161-f8b8-4678-8407-fcbf077040ca", - "start": { - "$date": "2021-06-23T03:39:29.000Z" - }, - "end": { - "$date": "2021-06-23T03:49:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d0a0e95-c1d9-4f14-a89c-ba80b03ef0b9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-23T03:51:46.000Z" - }, - "end": { - "$date": "2021-06-23T04:24:09.000Z" - }, - "events": [ - { - "uuid": "4624df13-1d22-43e9-ad90-5329671f7957", - "start": { - "$date": "2021-06-23T03:51:46.000Z" - }, - "end": { - "$date": "2021-06-23T04:24:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "4eac8f1a-2511-4c0b-bae9-0eec7e4229a1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T03:47:10.000Z" - }, - "end": { - "$date": "2021-06-23T03:48:25.000Z" - }, - "events": [ - { - "uuid": "29747060-0a61-4998-b6aa-e79dffeb7b6f", - "start": { - "$date": "2021-06-23T03:47:10.000Z" - }, - "end": { - "$date": "2021-06-23T03:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "49e89ffc-fa30-43a1-a714-b953db19fab5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-23T03:49:59.000Z" - }, - "end": { - "$date": "2021-06-23T06:11:28.000Z" - }, - "events": [ - { - "uuid": "1ef6bb85-951f-4204-ab74-7c6b8bdf4811", - "start": { - "$date": "2021-06-23T03:49:59.000Z" - }, - "end": { - "$date": "2021-06-23T06:11:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "33604062-c30c-42fd-ab57-1de946a2aebc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T03:59:53.000Z" - }, - "end": { - "$date": "2021-06-23T04:00:50.000Z" - }, - "events": [ - { - "uuid": "ee95e8ca-172b-4526-9281-871038818c14", - "start": { - "$date": "2021-06-23T03:59:53.000Z" - }, - "end": { - "$date": "2021-06-23T04:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "817659c1-1c75-4310-92ca-61401c6539a8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T04:01:38.000Z" - }, - "end": { - "$date": "2021-06-23T04:03:17.000Z" - }, - "events": [ - { - "uuid": "5af8b6ab-aa14-4ca3-9a98-3794b3518488", - "start": { - "$date": "2021-06-23T04:01:38.000Z" - }, - "end": { - "$date": "2021-06-23T04:03:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3d51d2b9-4c80-44c4-9818-f2ba4bca4d29", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T04:03:55.000Z" - }, - "end": { - "$date": "2021-06-23T04:06:22.000Z" - }, - "events": [ - { - "uuid": "49f7aa75-d6ef-4f70-81be-217451e3ac92", - "start": { - "$date": "2021-06-23T04:03:55.000Z" - }, - "end": { - "$date": "2021-06-23T04:06:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "7d643295-6002-4d0f-813e-e228a7dcf40b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T04:06:40.000Z" - }, - "end": { - "$date": "2021-06-23T04:25:44.000Z" - }, - "events": [ - { - "uuid": "b8e232eb-8f6b-4cd4-bf43-047278e0daac", - "start": { - "$date": "2021-06-23T04:06:40.000Z" - }, - "end": { - "$date": "2021-06-23T04:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30132c54-6254-4734-a3a0-4f7c8fe90b5f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-23T05:00:12.000Z" - }, - "end": { - "$date": "2021-06-23T05:17:14.000Z" - }, - "events": [ - { - "uuid": "95a6eb5e-2435-4599-929c-6d01c2b1cbf2", - "start": { - "$date": "2021-06-23T05:00:12.000Z" - }, - "end": { - "$date": "2021-06-23T05:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "0f8d0148-a6e6-47b4-bb84-af5e23b287fa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T04:26:12.000Z" - }, - "end": { - "$date": "2021-06-23T04:27:24.000Z" - }, - "events": [ - { - "uuid": "0d29c158-384d-48fd-84a9-6fd730bc081a", - "start": { - "$date": "2021-06-23T04:26:12.000Z" - }, - "end": { - "$date": "2021-06-23T04:27:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "345a8520-711a-433c-9e02-3835402d2df8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T04:27:42.000Z" - }, - "end": { - "$date": "2021-06-23T04:35:26.000Z" - }, - "events": [ - { - "uuid": "e83ff816-dc3e-45c0-a9bd-4f9a00f1686f", - "start": { - "$date": "2021-06-23T04:27:42.000Z" - }, - "end": { - "$date": "2021-06-23T04:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "2078236e-4cf0-4406-b39e-56b80a887d7f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-23T05:12:04.000Z" - }, - "end": { - "$date": "2021-06-23T05:17:44.000Z" - }, - "events": [ - { - "uuid": "b45c3f7c-befd-414a-bd7c-aa7caa5809bf", - "start": { - "$date": "2021-06-23T05:12:04.000Z" - }, - "end": { - "$date": "2021-06-23T05:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5443b98d-5284-4a8d-9578-3faf5693f837", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-23T05:22:46.000Z" - }, - "end": { - "$date": "2021-06-23T06:11:59.000Z" - }, - "events": [ - { - "uuid": "e029322d-390f-44a3-8957-a5d0d959f916", - "start": { - "$date": "2021-06-23T05:22:46.000Z" - }, - "end": { - "$date": "2021-06-23T06:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8d336044-962f-4196-8640-e54e2a38089e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-23T05:41:20.000Z" - }, - "end": { - "$date": "2021-06-23T06:29:33.000Z" - }, - "events": [ - { - "uuid": "2395f1fe-336b-4cc2-8bcb-f7c38875af34", - "start": { - "$date": "2021-06-23T05:41:20.000Z" - }, - "end": { - "$date": "2021-06-23T06:29:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "fc9ae493-d218-4713-8850-0155d80374be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-23T06:12:40.000Z" - }, - "end": { - "$date": "2021-06-23T08:05:09.000Z" - }, - "events": [ - { - "uuid": "d6df8d0a-9e32-4a92-8f77-39ffce8c5479", - "start": { - "$date": "2021-06-23T06:12:40.000Z" - }, - "end": { - "$date": "2021-06-23T08:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "87daed7c-1f34-4e15-b19b-740f28d57dbb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-23T06:16:41.000Z" - }, - "end": { - "$date": "2021-06-23T07:12:26.000Z" - }, - "events": [ - { - "uuid": "5b1d86bf-b0c5-4539-8f13-74f9e6731595", - "start": { - "$date": "2021-06-23T06:16:41.000Z" - }, - "end": { - "$date": "2021-06-23T07:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "956227c2-817e-4b56-94b8-d75f7a7dafb7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-23T11:10:58.000Z" - }, - "end": { - "$date": "2021-06-23T12:41:44.000Z" - }, - "events": [ - { - "uuid": "ff4b90bf-720d-4e72-8e66-1c3e5ff07044", - "start": { - "$date": "2021-06-23T11:10:58.000Z" - }, - "end": { - "$date": "2021-06-23T12:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f15946fb-f6c4-40d8-85ce-ef9b1566ad2f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-23T16:47:07.000Z" - }, - "end": { - "$date": "2021-06-24T06:05:52.000Z" - }, - "events": [ - { - "uuid": "525582dc-c669-4a69-9f1e-afad74618cf8", - "start": { - "$date": "2021-06-23T16:47:07.000Z" - }, - "end": { - "$date": "2021-06-23T17:14:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63fe45b9-039b-469a-afb1-99c9da6baeee", - "start": { - "$date": "2021-06-23T17:14:07.000Z" - }, - "end": { - "$date": "2021-06-23T17:27:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5831a6fd-6ef8-481b-90a2-30f8bf8a2db5", - "start": { - "$date": "2021-06-23T17:27:07.000Z" - }, - "end": { - "$date": "2021-06-23T17:37:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22d848f6-1482-43f8-a328-afb84bf500bf", - "start": { - "$date": "2021-06-23T17:37:07.000Z" - }, - "end": { - "$date": "2021-06-24T00:27:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae863d1f-708f-4445-a510-e342334a3abb", - "start": { - "$date": "2021-06-24T00:27:07.000Z" - }, - "end": { - "$date": "2021-06-24T02:59:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "34c2f631-3251-4c8e-9a01-776cf69bc2cf", - "start": { - "$date": "2021-06-24T02:59:07.000Z" - }, - "end": { - "$date": "2021-06-24T03:04:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c9b5cb9-97ef-4537-bced-d8ad9bb742bf", - "start": { - "$date": "2021-06-24T03:04:07.000Z" - }, - "end": { - "$date": "2021-06-24T04:15:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "705298b9-a28d-40eb-a30f-fef370804c23", - "start": { - "$date": "2021-06-24T04:15:07.000Z" - }, - "end": { - "$date": "2021-06-24T04:20:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e02b2d1f-53cc-4c18-9f64-9885f773b58e", - "start": { - "$date": "2021-06-24T04:20:07.000Z" - }, - "end": { - "$date": "2021-06-24T06:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "cadb076b-0117-4471-95e5-0c81366d0b82", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-23T17:05:32.000Z" - }, - "end": { - "$date": "2021-06-23T18:17:15.000Z" - }, - "events": [ - { - "uuid": "9585910e-b661-4cb0-b7f6-752cbe03ff09", - "start": { - "$date": "2021-06-23T17:05:32.000Z" - }, - "end": { - "$date": "2021-06-23T18:17:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "452fe337-90d9-4e25-bf3b-cd91b9201cdf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T17:13:56.000Z" - }, - "end": { - "$date": "2021-06-23T17:24:07.000Z" - }, - "events": [ - { - "uuid": "5ba17de6-9061-44e1-844e-5aad5bfb1a98", - "start": { - "$date": "2021-06-23T17:13:56.000Z" - }, - "end": { - "$date": "2021-06-23T17:24:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f6e6b01e-58ff-42a3-91a0-f0aaf4f59bcc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T17:36:57.000Z" - }, - "end": { - "$date": "2021-06-23T17:38:02.000Z" - }, - "events": [ - { - "uuid": "3b083715-2ff0-4df1-9d8e-1b8dab52beb7", - "start": { - "$date": "2021-06-23T17:36:57.000Z" - }, - "end": { - "$date": "2021-06-23T17:38:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a0a9ce90-dfbe-4914-ae77-5925749aaa34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T17:38:12.000Z" - }, - "end": { - "$date": "2021-06-23T17:48:33.000Z" - }, - "events": [ - { - "uuid": "11bd1213-1320-48f1-98d2-9c6788ef20fa", - "start": { - "$date": "2021-06-23T17:38:12.000Z" - }, - "end": { - "$date": "2021-06-23T17:48:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "eed6a1b0-4adb-49bd-b07a-0255b1ff29a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T19:08:24.000Z" - }, - "end": { - "$date": "2021-06-23T19:23:05.000Z" - }, - "events": [ - { - "uuid": "ed378dc8-2b16-40f7-aa8f-09403cef23ee", - "start": { - "$date": "2021-06-23T19:08:24.000Z" - }, - "end": { - "$date": "2021-06-23T19:23:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "cbcb9954-c112-40ba-8a51-afa607d3d450", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-23T20:53:32.000Z" - }, - "end": { - "$date": "2021-06-23T21:07:03.000Z" - }, - "events": [ - { - "uuid": "b151741d-b315-49a9-af94-623f0d747c4b", - "start": { - "$date": "2021-06-23T20:53:32.000Z" - }, - "end": { - "$date": "2021-06-23T21:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "e63519d2-6861-4ff9-8f1a-791c8cd159ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-23T21:32:39.000Z" - }, - "end": { - "$date": "2021-06-23T21:54:54.000Z" - }, - "events": [ - { - "uuid": "446081d1-0b57-49fa-8cae-e1e6b8e3164e", - "start": { - "$date": "2021-06-23T21:32:39.000Z" - }, - "end": { - "$date": "2021-06-23T21:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "37b90ce9-7f65-4b4f-bfea-40a684666160", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-23T21:52:27.000Z" - }, - "end": { - "$date": "2021-06-23T22:18:39.000Z" - }, - "events": [ - { - "uuid": "e55c8614-5db0-4c56-beba-700d088ecfbd", - "start": { - "$date": "2021-06-23T21:52:27.000Z" - }, - "end": { - "$date": "2021-06-23T22:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c0cd488e-5f39-4962-a5eb-f7522dc55ddd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-23T22:31:17.000Z" - }, - "end": { - "$date": "2021-06-24T00:14:59.000Z" - }, - "events": [ - { - "uuid": "0c7afaba-4706-452c-bc48-0b6306ad2f91", - "start": { - "$date": "2021-06-23T22:31:17.000Z" - }, - "end": { - "$date": "2021-06-23T23:23:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "149db74f-79c4-480c-a011-ebda7bee5563", - "start": { - "$date": "2021-06-23T23:23:17.000Z" - }, - "end": { - "$date": "2021-06-23T23:37:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e42327f-33c1-4077-bacf-9119f763fdc5", - "start": { - "$date": "2021-06-23T23:37:17.000Z" - }, - "end": { - "$date": "2021-06-24T00:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "df9702c6-fef6-4a96-bb7e-5801819c6e68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-23T22:59:19.000Z" - }, - "end": { - "$date": "2021-06-23T23:01:39.000Z" - }, - "events": [ - { - "uuid": "8efeec4b-e6dc-4718-9a85-edfa936301ff", - "start": { - "$date": "2021-06-23T22:59:19.000Z" - }, - "end": { - "$date": "2021-06-23T23:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "941ba242-8742-4dbb-a0c2-212c42b4fe34", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T23:06:53.000Z" - }, - "end": { - "$date": "2021-06-23T23:22:03.000Z" - }, - "events": [ - { - "uuid": "73e89b70-b5bb-47bb-bbc5-71a6f000514a", - "start": { - "$date": "2021-06-23T23:06:53.000Z" - }, - "end": { - "$date": "2021-06-23T23:22:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "6f1d183b-cb78-4691-9dbf-ce2a9c13f039", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T23:27:55.000Z" - }, - "end": { - "$date": "2021-06-23T23:30:54.000Z" - }, - "events": [ - { - "uuid": "a19b7f90-09ee-4ba6-b2de-ee1cc196f7ca", - "start": { - "$date": "2021-06-23T23:27:55.000Z" - }, - "end": { - "$date": "2021-06-23T23:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "9285e78e-968e-408f-a4bf-d0fda8f1b232", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T23:31:11.000Z" - }, - "end": { - "$date": "2021-06-23T23:34:44.000Z" - }, - "events": [ - { - "uuid": "0a79667c-25fd-419b-a37c-740b48f49954", - "start": { - "$date": "2021-06-23T23:31:11.000Z" - }, - "end": { - "$date": "2021-06-23T23:34:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "8f49a075-0a3b-4d49-bbff-522d08591bc3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-23T23:37:55.000Z" - }, - "end": { - "$date": "2021-06-23T23:39:57.000Z" - }, - "events": [ - { - "uuid": "8aadd160-254c-4f5a-a0a5-d28ab413549e", - "start": { - "$date": "2021-06-23T23:37:55.000Z" - }, - "end": { - "$date": "2021-06-23T23:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "75494ab4-b3cb-4106-b0a7-2af27da00b50", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-24T00:27:05.000Z" - }, - "end": { - "$date": "2021-06-24T00:28:15.000Z" - }, - "events": [ - { - "uuid": "14ddbb80-6fe9-45d7-80f5-435e72cf0d2b", - "start": { - "$date": "2021-06-24T00:27:05.000Z" - }, - "end": { - "$date": "2021-06-24T00:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "06cd8ffa-deb5-4215-84af-b92c6a85c242", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-24T00:37:50.000Z" - }, - "end": { - "$date": "2021-06-24T01:18:28.000Z" - }, - "events": [ - { - "uuid": "7f75ea4d-f307-4bfa-b84f-8405d00f4207", - "start": { - "$date": "2021-06-24T00:37:50.000Z" - }, - "end": { - "$date": "2021-06-24T01:18:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "35bc4688-79f3-4a9e-bc53-8fa186331184", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-24T04:39:12.000Z" - }, - "end": { - "$date": "2021-06-24T04:39:22.000Z" - }, - "events": [ - { - "uuid": "966b3ecc-d3bc-46a9-b99e-131789e3b682", - "start": { - "$date": "2021-06-24T04:39:12.000Z" - }, - "end": { - "$date": "2021-06-24T04:59:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "59ba989f-e159-42fd-b4ee-1a9140eec72f", - "start": { - "$date": "2021-06-24T04:59:12.000Z" - }, - "end": { - "$date": "2021-06-24T05:25:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "26c3409b-98ef-4f74-91c8-511c43a485f0", - "start": { - "$date": "2021-06-24T05:25:12.000Z" - }, - "end": { - "$date": "2021-06-24T04:39:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4d5cf158-5f4f-4f31-9f43-ccf5c37bd46b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-24T01:47:23.000Z" - }, - "end": { - "$date": "2021-06-24T02:37:02.000Z" - }, - "events": [ - { - "uuid": "fc9ef10b-787c-4300-b20e-97cb43d628e2", - "start": { - "$date": "2021-06-24T01:47:23.000Z" - }, - "end": { - "$date": "2021-06-24T02:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6853e253-7e91-46ca-aefb-768e7c087ef9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-24T01:50:23.000Z" - }, - "end": { - "$date": "2021-06-24T02:04:05.000Z" - }, - "events": [ - { - "uuid": "7dcb8926-621c-45c4-9dad-49e902755f90", - "start": { - "$date": "2021-06-24T01:50:23.000Z" - }, - "end": { - "$date": "2021-06-24T02:04:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "57e8ca02-03c2-4cf6-812a-e3585772e216", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-24T02:02:39.000Z" - }, - "end": { - "$date": "2021-06-24T03:34:40.000Z" - }, - "events": [ - { - "uuid": "12117c9a-0120-403b-bec0-e67b751e13f1", - "start": { - "$date": "2021-06-24T02:02:39.000Z" - }, - "end": { - "$date": "2021-06-24T03:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bea78ad-45b3-4799-be2c-fcb43e38f819", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T02:14:10.000Z" - }, - "end": { - "$date": "2021-06-24T02:46:40.000Z" - }, - "events": [ - { - "uuid": "0632c02e-6c32-4758-aa19-e0f72aa60169", - "start": { - "$date": "2021-06-24T02:14:10.000Z" - }, - "end": { - "$date": "2021-06-24T02:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f1a9ada-fa84-4a9c-9cec-b42be04eadeb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T02:48:31.000Z" - }, - "end": { - "$date": "2021-06-24T03:16:15.000Z" - }, - "events": [ - { - "uuid": "f7c678d2-8c16-4877-be64-dda9508cb15b", - "start": { - "$date": "2021-06-24T02:48:31.000Z" - }, - "end": { - "$date": "2021-06-24T03:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d237d430-2f95-491f-986f-3be2cf3dcbc2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-24T02:52:06.000Z" - }, - "end": { - "$date": "2021-06-24T04:12:29.000Z" - }, - "events": [ - { - "uuid": "61eb1ba0-a293-4e14-819e-232f99a8f0a9", - "start": { - "$date": "2021-06-24T02:52:06.000Z" - }, - "end": { - "$date": "2021-06-24T04:12:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af130259-e326-4921-a6b9-98f7508c6bfd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T03:17:09.000Z" - }, - "end": { - "$date": "2021-06-24T03:40:07.000Z" - }, - "events": [ - { - "uuid": "3030feea-f067-4e60-8fdc-45945dcf9816", - "start": { - "$date": "2021-06-24T03:17:09.000Z" - }, - "end": { - "$date": "2021-06-24T03:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "983be989-cbe1-49d3-bb00-679db620e291", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-24T03:33:11.000Z" - }, - "end": { - "$date": "2021-06-24T04:39:18.000Z" - }, - "events": [ - { - "uuid": "53f3d366-a721-4da5-bf5b-9b4ebbf2c34c", - "start": { - "$date": "2021-06-24T03:33:11.000Z" - }, - "end": { - "$date": "2021-06-24T04:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1c1a59eb-8bb4-48d3-bce5-9d75f0bd13a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-24T03:35:40.000Z" - }, - "end": { - "$date": "2021-06-24T06:44:58.000Z" - }, - "events": [ - { - "uuid": "01743a47-bf30-4345-a88c-f15683ff6471", - "start": { - "$date": "2021-06-24T03:35:40.000Z" - }, - "end": { - "$date": "2021-06-24T06:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f4023c3-770d-4144-ba50-666be116340a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-24T04:01:57.000Z" - }, - "end": { - "$date": "2021-06-24T04:40:38.000Z" - }, - "events": [ - { - "uuid": "044be351-aa38-411f-9f71-8ab3e5c4813f", - "start": { - "$date": "2021-06-24T04:01:57.000Z" - }, - "end": { - "$date": "2021-06-24T04:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1bc9ae44-97e0-4be2-b803-764b05dde888", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-24T04:41:04.000Z" - }, - "end": { - "$date": "2021-06-24T05:11:55.000Z" - }, - "events": [ - { - "uuid": "06c10e8b-1a11-41f3-863c-90ff86d50215", - "start": { - "$date": "2021-06-24T04:41:04.000Z" - }, - "end": { - "$date": "2021-06-24T05:11:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ee3ae55-0941-4d8a-9bf8-941e6c86a142", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-24T04:55:24.000Z" - }, - "end": { - "$date": "2021-06-24T05:09:22.000Z" - }, - "events": [ - { - "uuid": "1c643d88-efa0-4859-ae7b-0de4caaa876d", - "start": { - "$date": "2021-06-24T04:55:24.000Z" - }, - "end": { - "$date": "2021-06-24T05:09:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "459d5233-46f0-4bb8-a709-24c5084bc056", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-24T05:12:03.000Z" - }, - "end": { - "$date": "2021-06-24T06:44:47.000Z" - }, - "events": [ - { - "uuid": "af0a1188-fd1b-4721-88d8-06b2ebe8ba77", - "start": { - "$date": "2021-06-24T05:12:03.000Z" - }, - "end": { - "$date": "2021-06-24T06:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f3afd5de-6c53-4b57-a8a3-1b6ed18e575c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-24T05:29:00.000Z" - }, - "end": { - "$date": "2021-06-24T06:44:41.000Z" - }, - "events": [ - { - "uuid": "3a9a2da9-a876-4456-b93a-fdfbff7b3730", - "start": { - "$date": "2021-06-24T05:29:00.000Z" - }, - "end": { - "$date": "2021-06-24T06:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c1a5c9d-5810-43af-8ff4-ee84f8a99366", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T06:19:09.000Z" - }, - "end": { - "$date": "2021-06-24T06:52:39.000Z" - }, - "events": [ - { - "uuid": "b5071dff-3bae-4daa-8c81-1778c7507ebf", - "start": { - "$date": "2021-06-24T06:19:09.000Z" - }, - "end": { - "$date": "2021-06-24T06:52:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "01bc06f4-a412-4f55-9ed0-8fcf4a542ef0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-24T06:45:05.000Z" - }, - "end": { - "$date": "2021-06-24T07:12:39.000Z" - }, - "events": [ - { - "uuid": "598e81b7-a490-464d-976e-89534b60e306", - "start": { - "$date": "2021-06-24T06:45:05.000Z" - }, - "end": { - "$date": "2021-06-24T07:12:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "06c101d6-9336-4bf1-90fa-ca3b042d3705", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-25T04:08:09.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:31.000Z" - }, - "events": [ - { - "uuid": "8033d55e-eef3-4a7c-9a49-4cafdc7f92af", - "start": { - "$date": "2021-06-25T04:08:09.000Z" - }, - "end": { - "$date": "2021-06-25T04:26:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c67cecd5-c74c-462c-bf81-dff858f159c7", - "start": { - "$date": "2021-06-25T04:26:09.000Z" - }, - "end": { - "$date": "2021-06-25T04:32:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4a317bca-3b49-4cdb-b61f-1d12f89a1b06", - "start": { - "$date": "2021-06-25T04:32:09.000Z" - }, - "end": { - "$date": "2021-06-25T04:42:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "add292df-7d4d-4f98-909e-1140e2982368", - "start": { - "$date": "2021-06-25T04:42:09.000Z" - }, - "end": { - "$date": "2021-06-25T05:03:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0a18161-8232-49ab-911d-411d34c52f98", - "start": { - "$date": "2021-06-25T05:03:09.000Z" - }, - "end": { - "$date": "2021-06-25T07:33:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e790a96-a989-433b-b3c6-5a98af9b01b2", - "start": { - "$date": "2021-06-25T07:33:09.000Z" - }, - "end": { - "$date": "2021-06-25T07:43:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "714c05c8-7fba-4bdb-985d-90a3c939e0cb", - "start": { - "$date": "2021-06-25T07:43:09.000Z" - }, - "end": { - "$date": "2021-06-25T09:52:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a5c6caa-4141-4753-8d61-1c00cac92326", - "start": { - "$date": "2021-06-25T09:52:09.000Z" - }, - "end": { - "$date": "2021-06-25T09:58:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a764cfd0-014b-49f4-832e-9634a976914a", - "start": { - "$date": "2021-06-25T09:58:09.000Z" - }, - "end": { - "$date": "2021-06-25T10:28:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0613f3e-9789-4eba-84ce-8a1d5ef3af40", - "start": { - "$date": "2021-06-25T10:28:09.000Z" - }, - "end": { - "$date": "2021-06-25T10:58:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "361b2f38-09f9-4ed5-9e76-a969e63b4de6", - "start": { - "$date": "2021-06-25T10:58:09.000Z" - }, - "end": { - "$date": "2021-06-25T12:54:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fca71713-b377-456b-8aae-f652fa567e3f", - "start": { - "$date": "2021-06-25T12:54:09.000Z" - }, - "end": { - "$date": "2021-06-25T14:12:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be81f14e-3d0c-4ca9-8720-b8a77d6ad440", - "start": { - "$date": "2021-06-25T14:12:09.000Z" - }, - "end": { - "$date": "2021-06-25T14:24:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f337432-e29d-43af-b741-12545d795138", - "start": { - "$date": "2021-06-25T14:24:09.000Z" - }, - "end": { - "$date": "2021-06-25T14:33:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "816b34f7-29c7-419c-8d6a-f2c999cb565f", - "start": { - "$date": "2021-06-25T14:33:09.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0bf71c53-f23b-4ba1-9ab3-12dcfcfb2b94", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-24T17:00:43.000Z" - }, - "end": { - "$date": "2021-06-24T18:29:42.000Z" - }, - "events": [ - { - "uuid": "e11e799b-8a2e-4f12-a92d-bb33e2a76cf8", - "start": { - "$date": "2021-06-24T17:00:43.000Z" - }, - "end": { - "$date": "2021-06-24T18:00:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51965bc5-5419-4eca-ad55-54dd11d71317", - "start": { - "$date": "2021-06-24T18:00:43.000Z" - }, - "end": { - "$date": "2021-06-24T18:14:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8861b85-78bb-4a0b-9383-afe17a8112e8", - "start": { - "$date": "2021-06-24T18:14:43.000Z" - }, - "end": { - "$date": "2021-06-24T18:24:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98f8d6cf-d5b9-4b3c-a00c-ec7ca778db9f", - "start": { - "$date": "2021-06-24T18:24:43.000Z" - }, - "end": { - "$date": "2021-06-24T18:29:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2032af8d-587b-47b0-b538-02aa9ff5d0e6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-24T15:59:09.000Z" - }, - "end": { - "$date": "2021-06-24T16:25:41.000Z" - }, - "events": [ - { - "uuid": "05beefc1-5fb2-48be-8404-5096725c17a0", - "start": { - "$date": "2021-06-24T15:59:09.000Z" - }, - "end": { - "$date": "2021-06-24T16:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "941d6d58-d4c2-445f-b606-db590af133ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T17:12:58.000Z" - }, - "end": { - "$date": "2021-06-24T17:52:44.000Z" - }, - "events": [ - { - "uuid": "916058c9-21c4-4107-9dcd-ba9e60f842ae", - "start": { - "$date": "2021-06-24T17:12:58.000Z" - }, - "end": { - "$date": "2021-06-24T17:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "601c227b-1644-49c6-a4e7-abd74475457a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-24T17:40:31.000Z" - }, - "end": { - "$date": "2021-06-24T17:41:40.000Z" - }, - "events": [ - { - "uuid": "51a10590-4600-4c7a-a2e0-7e55baede4de", - "start": { - "$date": "2021-06-24T17:40:31.000Z" - }, - "end": { - "$date": "2021-06-24T17:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "90f1232c-dfdb-4913-a473-b8b042c4a087", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-24T17:42:06.000Z" - }, - "end": { - "$date": "2021-06-24T18:26:36.000Z" - }, - "events": [ - { - "uuid": "82446ec6-134f-4c7c-a039-9cebc72876ae", - "start": { - "$date": "2021-06-24T17:42:06.000Z" - }, - "end": { - "$date": "2021-06-24T18:26:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5670f6a8-12b8-4998-8f3a-6296b6279324", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-24T19:02:40.000Z" - }, - "end": { - "$date": "2021-06-24T21:44:27.000Z" - }, - "events": [ - { - "uuid": "4d2a3260-3bda-48df-9f7e-c351e944e955", - "start": { - "$date": "2021-06-24T19:02:40.000Z" - }, - "end": { - "$date": "2021-06-24T21:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "24d80195-2e18-4474-95a5-bce64d0dea48", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-24T19:41:29.000Z" - }, - "end": { - "$date": "2021-06-24T20:13:12.000Z" - }, - "events": [ - { - "uuid": "ce9f9908-65dd-4d52-9504-f48b21a548dd", - "start": { - "$date": "2021-06-24T19:41:29.000Z" - }, - "end": { - "$date": "2021-06-24T20:13:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "971a90a1-decc-4ded-9f05-54c9c75820df", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-24T20:15:55.000Z" - }, - "end": { - "$date": "2021-06-24T20:23:43.000Z" - }, - "events": [ - { - "uuid": "972b4ded-1efd-4915-bddd-d5f6e51deca2", - "start": { - "$date": "2021-06-24T20:15:55.000Z" - }, - "end": { - "$date": "2021-06-24T20:23:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2b6a461-c25b-470c-af09-f989f1602e35", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T20:19:46.000Z" - }, - "end": { - "$date": "2021-06-24T20:48:20.000Z" - }, - "events": [ - { - "uuid": "63e95951-8c55-4185-9075-61ebd1f76d64", - "start": { - "$date": "2021-06-24T20:19:46.000Z" - }, - "end": { - "$date": "2021-06-24T20:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "069b4927-3ae3-4e14-bca7-3f97043c0386", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-24T20:53:03.000Z" - }, - "end": { - "$date": "2021-06-24T21:14:05.000Z" - }, - "events": [ - { - "uuid": "e2561f82-b058-4bb1-b964-c48f53b30a49", - "start": { - "$date": "2021-06-24T20:53:03.000Z" - }, - "end": { - "$date": "2021-06-24T21:14:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1262ae13-6dba-42ca-89eb-940bf74bfca9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-24T20:56:33.000Z" - }, - "end": { - "$date": "2021-06-24T21:07:42.000Z" - }, - "events": [ - { - "uuid": "f71b6033-9207-4f08-8b49-f8ed4f174885", - "start": { - "$date": "2021-06-24T20:56:33.000Z" - }, - "end": { - "$date": "2021-06-24T21:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "33d24fca-1e9a-4c3d-9d4b-2e053df3dea2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-24T20:56:48.000Z" - }, - "end": { - "$date": "2021-06-24T21:01:39.000Z" - }, - "events": [ - { - "uuid": "1fc9238b-5756-47c3-aa1e-888bcb0b1ce6", - "start": { - "$date": "2021-06-24T20:56:48.000Z" - }, - "end": { - "$date": "2021-06-24T21:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "3f56d709-5704-4c1b-afb4-9f5bdee38c2d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-24T21:03:25.000Z" - }, - "end": { - "$date": "2021-06-24T21:14:12.000Z" - }, - "events": [ - { - "uuid": "05a3b523-65e2-46a5-8a5d-833dfab10530", - "start": { - "$date": "2021-06-24T21:03:25.000Z" - }, - "end": { - "$date": "2021-06-24T21:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "78773899-a66c-4e11-ad3a-cbd441f676e9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-24T21:14:18.000Z" - }, - "end": { - "$date": "2021-06-24T22:08:38.000Z" - }, - "events": [ - { - "uuid": "1934ef36-95e6-4cbe-9918-3c02e97d555a", - "start": { - "$date": "2021-06-24T21:14:18.000Z" - }, - "end": { - "$date": "2021-06-24T22:08:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "90e267f1-ce66-41a0-98e3-7dbfbcb633d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-24T21:36:07.000Z" - }, - "end": { - "$date": "2021-06-25T06:11:04.000Z" - }, - "events": [ - { - "uuid": "7d8f98ff-ce2a-4ca8-9e90-fc0a1b2e4f92", - "start": { - "$date": "2021-06-24T21:36:07.000Z" - }, - "end": { - "$date": "2021-06-24T22:11:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d8d74a1-435b-4783-912e-d4d0c1b1ebd8", - "start": { - "$date": "2021-06-24T22:11:07.000Z" - }, - "end": { - "$date": "2021-06-24T22:14:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61308153-12c8-498e-bd02-292baa37dbf5", - "start": { - "$date": "2021-06-24T22:14:07.000Z" - }, - "end": { - "$date": "2021-06-25T04:12:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d65953b-b61a-4f69-97b4-b2bf20d64eb0", - "start": { - "$date": "2021-06-25T04:12:07.000Z" - }, - "end": { - "$date": "2021-06-25T04:15:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "21ff56b7-4c7c-4fab-820a-f94432c49d05", - "start": { - "$date": "2021-06-25T04:15:07.000Z" - }, - "end": { - "$date": "2021-06-25T06:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "02e1b8d2-60d9-44a7-a7f7-62672fc4be0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-24T22:39:58.000Z" - }, - "end": { - "$date": "2021-06-24T22:43:06.000Z" - }, - "events": [ - { - "uuid": "ea700658-2896-409b-b8fd-56fc354802ef", - "start": { - "$date": "2021-06-24T22:39:58.000Z" - }, - "end": { - "$date": "2021-06-24T22:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "cb681126-ced9-4d3d-b1f5-213474db5513", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-24T22:57:11.000Z" - }, - "end": { - "$date": "2021-06-24T23:13:34.000Z" - }, - "events": [ - { - "uuid": "c6f92105-020b-497c-ae55-f7c04fea51c2", - "start": { - "$date": "2021-06-24T22:57:11.000Z" - }, - "end": { - "$date": "2021-06-24T23:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ee531fa-0713-432d-baac-1a2b532b28af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-24T23:19:41.000Z" - }, - "end": { - "$date": "2021-06-24T23:51:09.000Z" - }, - "events": [ - { - "uuid": "45cd2de5-0b09-433c-b0ed-678fbda6a6eb", - "start": { - "$date": "2021-06-24T23:19:41.000Z" - }, - "end": { - "$date": "2021-06-24T23:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "c8ba5aba-3ce7-4d6e-a319-283012706b90", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T00:13:03.000Z" - }, - "end": { - "$date": "2021-06-25T00:19:48.000Z" - }, - "events": [ - { - "uuid": "ebbf00aa-cfa7-4be0-b1b9-66e9d443b867", - "start": { - "$date": "2021-06-25T00:13:03.000Z" - }, - "end": { - "$date": "2021-06-25T00:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "d1f2c147-36b5-4720-b90a-ce92cdb61c36", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T00:20:10.000Z" - }, - "end": { - "$date": "2021-06-25T00:42:17.000Z" - }, - "events": [ - { - "uuid": "1f2836b5-4202-465e-a989-28b56c38fe24", - "start": { - "$date": "2021-06-25T00:20:10.000Z" - }, - "end": { - "$date": "2021-06-25T00:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "5ea8b244-1fa4-4271-a6ee-1258250e1d31", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-25T01:18:03.000Z" - }, - "end": { - "$date": "2021-06-25T01:56:59.000Z" - }, - "events": [ - { - "uuid": "395dfdca-8da1-480d-b839-08977fe21ce9", - "start": { - "$date": "2021-06-25T01:18:03.000Z" - }, - "end": { - "$date": "2021-06-25T01:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "1b273d35-b188-4254-b09b-4c56a2fc0d60", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T01:25:43.000Z" - }, - "end": { - "$date": "2021-06-25T01:29:48.000Z" - }, - "events": [ - { - "uuid": "681045fa-6c79-4ee1-bd6f-ef16e2e75c8e", - "start": { - "$date": "2021-06-25T01:25:43.000Z" - }, - "end": { - "$date": "2021-06-25T01:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "e821b5e5-c671-4596-bfb6-5cea219b4c6a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T01:30:33.000Z" - }, - "end": { - "$date": "2021-06-25T01:31:42.000Z" - }, - "events": [ - { - "uuid": "de61e41f-0d2c-42fa-808c-4592b04a080e", - "start": { - "$date": "2021-06-25T01:30:33.000Z" - }, - "end": { - "$date": "2021-06-25T01:31:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "3329a742-bcf8-44e6-9fb2-6aec62e4eb59", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T01:35:40.000Z" - }, - "end": { - "$date": "2021-06-25T01:39:34.000Z" - }, - "events": [ - { - "uuid": "d4d9890d-bdee-4eee-ab5d-d804b1609de9", - "start": { - "$date": "2021-06-25T01:35:40.000Z" - }, - "end": { - "$date": "2021-06-25T01:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3ff0b1e-9d87-4037-83bf-b37cee35c696", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-25T01:55:45.000Z" - }, - "end": { - "$date": "2021-06-25T02:21:25.000Z" - }, - "events": [ - { - "uuid": "afa38461-16c7-46bf-b221-c4ade922e91e", - "start": { - "$date": "2021-06-25T01:55:45.000Z" - }, - "end": { - "$date": "2021-06-25T02:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9d036b1-509f-44b5-bc2c-a27276367faf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-25T02:02:07.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:48.000Z" - }, - "events": [ - { - "uuid": "0f08ae6b-52d9-4289-adc8-7cd1c71d8e59", - "start": { - "$date": "2021-06-25T02:02:07.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "775c1781-b0df-41b0-8213-72f2d6ca898b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-25T02:03:05.000Z" - }, - "end": { - "$date": "2021-06-25T02:08:26.000Z" - }, - "events": [ - { - "uuid": "9a14adfc-ccaf-4cd0-b8a2-d723fe33b1c0", - "start": { - "$date": "2021-06-25T02:03:05.000Z" - }, - "end": { - "$date": "2021-06-25T02:08:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5f1d0418-97ae-4376-9332-b42e908dc1ba", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-25T02:03:06.000Z" - }, - "end": { - "$date": "2021-06-25T02:13:27.000Z" - }, - "events": [ - { - "uuid": "ce9b122c-d4ae-4d4b-ba7d-50781f4f5ca1", - "start": { - "$date": "2021-06-25T02:03:06.000Z" - }, - "end": { - "$date": "2021-06-25T02:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "af83fb98-7688-4045-87f1-6b12c4310636", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-25T02:11:11.000Z" - }, - "end": { - "$date": "2021-06-25T02:13:43.000Z" - }, - "events": [ - { - "uuid": "e745a006-1416-4c98-9eab-63479902b9e1", - "start": { - "$date": "2021-06-25T02:11:11.000Z" - }, - "end": { - "$date": "2021-06-25T02:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eb48d1e8-8809-45a0-ae52-9d73a2f553f4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-25T02:13:50.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:11.000Z" - }, - "events": [ - { - "uuid": "3bc8034d-a5f3-453f-bd4b-d488866cb033", - "start": { - "$date": "2021-06-25T02:13:50.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "373873cf-6317-4a5c-99a0-3b59cb587e2c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-25T02:16:12.000Z" - }, - "end": { - "$date": "2021-06-25T02:17:32.000Z" - }, - "events": [ - { - "uuid": "4b501153-2085-4224-83b7-799acfd6f8ea", - "start": { - "$date": "2021-06-25T02:16:12.000Z" - }, - "end": { - "$date": "2021-06-25T02:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a706cbd9-d53c-463b-9a07-a40ce3d01c67", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-25T02:17:42.000Z" - }, - "end": { - "$date": "2021-06-25T04:45:05.000Z" - }, - "events": [ - { - "uuid": "02347630-8d08-4183-b913-f613b50b2238", - "start": { - "$date": "2021-06-25T02:17:42.000Z" - }, - "end": { - "$date": "2021-06-25T04:20:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7e7caec-bf81-4aea-b24a-b6d1bf5abaaf", - "start": { - "$date": "2021-06-25T04:20:42.000Z" - }, - "end": { - "$date": "2021-06-25T04:29:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "694a0785-575a-40a4-8bfb-0d39063bb39e", - "start": { - "$date": "2021-06-25T04:29:42.000Z" - }, - "end": { - "$date": "2021-06-25T04:39:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7b2a5fe-9f19-48ba-b28f-c61128175e1a", - "start": { - "$date": "2021-06-25T04:39:42.000Z" - }, - "end": { - "$date": "2021-06-25T04:43:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "608e6b81-53c2-4cee-a57d-e2b637967a55", - "start": { - "$date": "2021-06-25T04:43:42.000Z" - }, - "end": { - "$date": "2021-06-25T04:45:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87f9adbe-235e-4a1c-8769-37b077346b36", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-25T02:23:50.000Z" - }, - "end": { - "$date": "2021-06-25T02:45:20.000Z" - }, - "events": [ - { - "uuid": "995c472f-801c-465b-b0bb-a165bffc14c9", - "start": { - "$date": "2021-06-25T02:23:50.000Z" - }, - "end": { - "$date": "2021-06-25T02:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "ff15ab27-e86f-4083-93a0-3ab24af4af3c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T02:22:13.000Z" - }, - "end": { - "$date": "2021-06-25T02:26:41.000Z" - }, - "events": [ - { - "uuid": "b141bc8e-67c1-4e13-8b7f-f10424d20414", - "start": { - "$date": "2021-06-25T02:22:13.000Z" - }, - "end": { - "$date": "2021-06-25T02:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7e7d2042-e76f-4bed-9dfc-648e8cfa0dd3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T02:25:46.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:38.000Z" - }, - "events": [ - { - "uuid": "e04ecebb-5043-4d06-be0f-64fc1bb56234", - "start": { - "$date": "2021-06-25T02:25:46.000Z" - }, - "end": { - "$date": "2021-06-25T04:08:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a39ab516-552a-4fee-a33b-29cbe6549437", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T02:37:44.000Z" - }, - "end": { - "$date": "2021-06-25T04:47:01.000Z" - }, - "events": [ - { - "uuid": "e910be42-42c6-4423-abde-13c3d0189b15", - "start": { - "$date": "2021-06-25T02:37:44.000Z" - }, - "end": { - "$date": "2021-06-25T04:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "2a0ba109-8ac6-4c9f-92d3-96682e515d69", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-25T02:38:57.000Z" - }, - "end": { - "$date": "2021-06-25T05:41:23.000Z" - }, - "events": [ - { - "uuid": "c621cb98-8b1a-4488-b217-718871d98d6a", - "start": { - "$date": "2021-06-25T02:38:57.000Z" - }, - "end": { - "$date": "2021-06-25T05:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2838116e-fa52-4be6-bd26-202ed1eecaaf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-25T02:57:33.000Z" - }, - "end": { - "$date": "2021-06-25T03:26:41.000Z" - }, - "events": [ - { - "uuid": "acc97511-6922-4090-bde1-1b8e9b4881c9", - "start": { - "$date": "2021-06-25T02:57:33.000Z" - }, - "end": { - "$date": "2021-06-25T03:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "31b43afc-1c10-4cc3-bd81-d7f69e6a314c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T04:09:41.000Z" - }, - "end": { - "$date": "2021-06-25T07:40:08.000Z" - }, - "events": [ - { - "uuid": "00dc0045-256d-4bd1-9992-6e8630a9b2cd", - "start": { - "$date": "2021-06-25T04:09:41.000Z" - }, - "end": { - "$date": "2021-06-25T07:40:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "6f337637-8bd5-46de-9b60-6bde7a8f6e10", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-25T04:45:24.000Z" - }, - "end": { - "$date": "2021-06-25T04:49:15.000Z" - }, - "events": [ - { - "uuid": "b91fdc39-2994-4bd7-bc55-ae2ee83602d5", - "start": { - "$date": "2021-06-25T04:45:24.000Z" - }, - "end": { - "$date": "2021-06-25T04:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "04396e3a-cc5d-4c2a-abda-03258c5b92a9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-25T04:50:10.000Z" - }, - "end": { - "$date": "2021-06-25T07:40:39.000Z" - }, - "events": [ - { - "uuid": "ccd1001e-2893-457a-a80f-92be62d347ae", - "start": { - "$date": "2021-06-25T04:50:10.000Z" - }, - "end": { - "$date": "2021-06-25T07:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "227932ec-e1ee-42ed-8b68-b2e8f35ad934", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-25T04:52:31.000Z" - }, - "end": { - "$date": "2021-06-25T06:38:41.000Z" - }, - "events": [ - { - "uuid": "a282a887-03a3-4e11-b949-837f41e1d1d6", - "start": { - "$date": "2021-06-25T04:52:31.000Z" - }, - "end": { - "$date": "2021-06-25T06:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "867b12f4-b66a-47a1-b913-826c5a0edbfd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T05:44:39.000Z" - }, - "end": { - "$date": "2021-06-25T06:49:48.000Z" - }, - "events": [ - { - "uuid": "8d56f081-18d3-49e0-a236-7973b77f058f", - "start": { - "$date": "2021-06-25T05:44:39.000Z" - }, - "end": { - "$date": "2021-06-25T06:49:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "51dfae43-e404-4fa1-83cd-26063a4d1528", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-25T05:47:08.000Z" - }, - "end": { - "$date": "2021-06-25T05:48:48.000Z" - }, - "events": [ - { - "uuid": "7b9a2e66-276f-47ce-a161-4c4add454eca", - "start": { - "$date": "2021-06-25T05:47:08.000Z" - }, - "end": { - "$date": "2021-06-25T05:48:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ab121764-f316-403d-8ff0-fd05ea856870", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-25T05:49:59.000Z" - }, - "end": { - "$date": "2021-06-25T06:50:00.000Z" - }, - "events": [ - { - "uuid": "cb0f0770-8af0-4e8d-9087-962d7ba68db0", - "start": { - "$date": "2021-06-25T05:49:59.000Z" - }, - "end": { - "$date": "2021-06-25T06:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ae838f12-83d6-4609-b038-adea6d2e0170", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-25T12:12:13.000Z" - }, - "end": { - "$date": "2021-06-25T13:32:15.000Z" - }, - "events": [ - { - "uuid": "7272716c-d474-4c4c-b4aa-f7a94e22eb86", - "start": { - "$date": "2021-06-25T12:12:13.000Z" - }, - "end": { - "$date": "2021-06-25T13:32:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "ca4e0e85-3439-4b05-a358-8e352d4906f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T03:59:12.000Z" - }, - "end": { - "$date": "2021-06-26T05:48:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-26T03:59:12.000Z" - }, - "end": { - "$date": "2021-06-26T05:48:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3a4e404d-d498-40d2-8798-b6f551ef2468", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T15:18:14.000Z" - }, - "end": { - "$date": "2021-06-25T15:22:55.000Z" - }, - "events": [ - { - "uuid": "ead736ad-af3f-4796-8a0d-fdea075a4fd7", - "start": { - "$date": "2021-06-25T15:18:14.000Z" - }, - "end": { - "$date": "2021-06-25T15:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ee91fcfb-5e2a-438a-b2ec-2bfb3780b401", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-25T15:23:10.000Z" - }, - "end": { - "$date": "2021-06-25T15:38:57.000Z" - }, - "events": [ - { - "uuid": "ad63eedf-0422-4e94-b4d9-b65227eb91f4", - "start": { - "$date": "2021-06-25T15:23:10.000Z" - }, - "end": { - "$date": "2021-06-25T15:33:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31d5db62-1ea3-4eee-a260-3d1e95cf6d89", - "start": { - "$date": "2021-06-25T15:33:10.000Z" - }, - "end": { - "$date": "2021-06-25T15:36:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2701cf2f-085d-400d-96aa-eb102b8fd78e", - "start": { - "$date": "2021-06-25T15:36:10.000Z" - }, - "end": { - "$date": "2021-06-25T15:38:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c04688af-c407-4d2b-851a-a4bbbb05674d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-25T15:28:47.000Z" - }, - "end": { - "$date": "2021-06-25T16:20:34.000Z" - }, - "events": [ - { - "uuid": "b7f45d8f-3a45-49df-9994-a77b47b0eacc", - "start": { - "$date": "2021-06-25T15:28:47.000Z" - }, - "end": { - "$date": "2021-06-25T16:20:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "6f99c786-4b1b-4225-94ec-50feb2aa2759", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-25T15:49:24.000Z" - }, - "end": { - "$date": "2021-06-25T16:32:12.000Z" - }, - "events": [ - { - "uuid": "274adfb7-15bc-4b1d-92af-cfdeb1915686", - "start": { - "$date": "2021-06-25T15:49:24.000Z" - }, - "end": { - "$date": "2021-06-25T16:32:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "5d7e78b5-8c3e-4e6c-9164-9a404e847097", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T15:54:06.000Z" - }, - "end": { - "$date": "2021-06-25T16:41:05.000Z" - }, - "events": [ - { - "uuid": "eda11b41-f16b-4af6-b900-3773bd5455d5", - "start": { - "$date": "2021-06-25T15:54:06.000Z" - }, - "end": { - "$date": "2021-06-25T16:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa6360b3-2eda-4f90-af99-801fe71a8292", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T17:14:57.000Z" - }, - "end": { - "$date": "2021-06-25T17:53:01.000Z" - }, - "events": [ - { - "uuid": "ad85878f-2e5e-4a60-b5b8-ff46d8e2a508", - "start": { - "$date": "2021-06-25T17:14:57.000Z" - }, - "end": { - "$date": "2021-06-25T17:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c51edfa9-aa05-4f16-983f-39fc4733f92a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T17:55:23.000Z" - }, - "end": { - "$date": "2021-06-25T18:30:25.000Z" - }, - "events": [ - { - "uuid": "de243c5b-e8fd-4187-b2ca-e0a686613146", - "start": { - "$date": "2021-06-25T17:55:23.000Z" - }, - "end": { - "$date": "2021-06-25T18:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5df02aa7-7bce-42c9-a999-d4b9798b9f45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T18:32:52.000Z" - }, - "end": { - "$date": "2021-06-25T19:41:30.000Z" - }, - "events": [ - { - "uuid": "c8244289-e927-4691-b858-ae073e85543d", - "start": { - "$date": "2021-06-25T18:32:52.000Z" - }, - "end": { - "$date": "2021-06-25T18:52:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7d43cb9e-fe2b-4e92-8178-5cf71512f02f", - "start": { - "$date": "2021-06-25T18:52:52.000Z" - }, - "end": { - "$date": "2021-06-25T19:41:30.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "d318d833-be9e-4ef0-bd98-65b84be3b380", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T19:42:34.000Z" - }, - "end": { - "$date": "2021-06-25T20:07:55.000Z" - }, - "events": [ - { - "uuid": "ec2ac26e-2eb3-4371-a371-9ad0808eb710", - "start": { - "$date": "2021-06-25T19:42:34.000Z" - }, - "end": { - "$date": "2021-06-25T20:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5c57de3f-3a72-4a97-b397-9c692eddd50c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-25T19:58:55.000Z" - }, - "end": { - "$date": "2021-06-25T20:43:00.000Z" - }, - "events": [ - { - "uuid": "8caaebc6-64d2-4ed8-bce4-13cceb05f2bd", - "start": { - "$date": "2021-06-25T19:58:55.000Z" - }, - "end": { - "$date": "2021-06-25T20:43:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6b020df-c9c2-4190-9bef-a841b0157695", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T20:11:08.000Z" - }, - "end": { - "$date": "2021-06-25T20:48:35.000Z" - }, - "events": [ - { - "uuid": "14499c2c-93d3-4a17-a8f1-acffea8c9465", - "start": { - "$date": "2021-06-25T20:11:08.000Z" - }, - "end": { - "$date": "2021-06-25T20:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cabbbc4-a2c5-40c0-8713-336a57e98187", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T21:19:30.000Z" - }, - "end": { - "$date": "2021-06-25T21:43:37.000Z" - }, - "events": [ - { - "uuid": "262c1868-d0cb-4517-b88c-ad151170a52d", - "start": { - "$date": "2021-06-25T21:19:30.000Z" - }, - "end": { - "$date": "2021-06-25T21:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7db54b8b-3c24-4248-8fe8-a8c3470f974f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-25T21:46:06.000Z" - }, - "end": { - "$date": "2021-06-25T22:21:18.000Z" - }, - "events": [ - { - "uuid": "60d9b5a6-9615-48c5-988d-1ee077e32a97", - "start": { - "$date": "2021-06-25T21:46:06.000Z" - }, - "end": { - "$date": "2021-06-25T22:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d607ad91-1a41-4e22-b19f-5978ca17de6c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-25T21:50:02.000Z" - }, - "end": { - "$date": "2021-06-25T22:56:32.000Z" - }, - "events": [ - { - "uuid": "b52dc7ac-db7b-4d7d-93ca-cd8d304bd1df", - "start": { - "$date": "2021-06-25T21:50:02.000Z" - }, - "end": { - "$date": "2021-06-25T22:56:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "b9d505fd-0bda-4c46-91a9-eeecc4517dff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-25T22:19:21.000Z" - }, - "end": { - "$date": "2021-06-25T22:44:50.000Z" - }, - "events": [ - { - "uuid": "443420a6-872c-42a4-8881-c7366254083d", - "start": { - "$date": "2021-06-25T22:19:21.000Z" - }, - "end": { - "$date": "2021-06-25T22:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ae4d616b-cef0-4012-b3cc-4b3618d0eb72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-25T23:53:31.000Z" - }, - "end": { - "$date": "2021-06-26T00:36:52.000Z" - }, - "events": [ - { - "uuid": "a99db92f-ecc6-4fdf-ac53-87cd07dfcbd3", - "start": { - "$date": "2021-06-25T23:53:31.000Z" - }, - "end": { - "$date": "2021-06-26T00:36:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cba99064-4cde-4ca6-9dc4-d794c6bf0503", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-26T01:41:42.000Z" - }, - "end": { - "$date": "2021-06-26T01:50:52.000Z" - }, - "events": [ - { - "uuid": "2b625c42-2b04-48c0-970c-1bfb9abf4f91", - "start": { - "$date": "2021-06-26T01:41:42.000Z" - }, - "end": { - "$date": "2021-06-26T01:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3ee05c33-078f-434a-9a04-1bb1a431c8ae", - "uuid": "8f507be1-e36a-4ee0-af93-282efb364bf1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T02:06:54.000Z" - }, - "end": { - "$date": "2021-06-26T04:31:21.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-26T02:06:54.000Z" - }, - "end": { - "$date": "2021-06-26T04:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4f5fbf2b-f99a-439d-89aa-813090cd8eea", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-06-26T02:09:59.000Z" - }, - "end": { - "$date": "2021-06-26T03:13:36.000Z" - }, - "events": [ - { - "uuid": "8b0b65cb-05db-4e2e-8542-942b5ade22e3", - "start": { - "$date": "2021-06-26T02:09:59.000Z" - }, - "end": { - "$date": "2021-06-26T03:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "29f8bd60-a232-425a-890d-62547894b63b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-26T02:57:17.000Z" - }, - "end": { - "$date": "2021-06-26T03:38:41.000Z" - }, - "events": [ - { - "uuid": "e05a2a8a-fa95-4f06-bbe6-e816110e7664", - "start": { - "$date": "2021-06-26T02:57:17.000Z" - }, - "end": { - "$date": "2021-06-26T03:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "feb4cb5f-6c4a-4bb6-aafe-0b6d8c216157", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-26T03:19:57.000Z" - }, - "end": { - "$date": "2021-06-26T04:26:59.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-26T03:19:57.000Z" - }, - "end": { - "$date": "2021-06-26T04:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "361740b0-e5fe-4bab-a465-8886f6481300", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T03:44:41.000Z" - }, - "end": { - "$date": "2021-06-26T04:13:58.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-26T03:44:41.000Z" - }, - "end": { - "$date": "2021-06-26T04:13:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "56fe7fae-cf2f-4585-b047-a742aa608bf5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-26T03:42:22.000Z" - }, - "end": { - "$date": "2021-06-26T06:59:22.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-26T03:42:22.000Z" - }, - "end": { - "$date": "2021-06-26T06:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d12b2551-7b47-43e8-9fb1-cf669621658c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-26T03:54:04.000Z" - }, - "end": { - "$date": "2021-06-26T03:56:24.000Z" - }, - "events": [ - { - "uuid": "edfec3b7-8c2b-41b7-bf50-c049e0d0d4dc", - "start": { - "$date": "2021-06-26T03:54:04.000Z" - }, - "end": { - "$date": "2021-06-26T03:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5c7a3e1b-65d0-4332-adc8-79e5934ece29", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-26T03:57:07.000Z" - }, - "end": { - "$date": "2021-06-26T06:37:45.000Z" - }, - "events": [ - { - "uuid": "ff837011-2808-4618-9b1d-3ac41c2f84f8", - "start": { - "$date": "2021-06-26T03:57:07.000Z" - }, - "end": { - "$date": "2021-06-26T06:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "012ba40b-ec67-4098-9f0a-c2fc872a68a4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-26T03:57:24.000Z" - }, - "end": { - "$date": "2021-06-26T06:38:19.000Z" - }, - "events": [ - { - "uuid": "dcd6a63d-dce0-440f-aca2-3b95863ed9fb", - "start": { - "$date": "2021-06-26T03:57:24.000Z" - }, - "end": { - "$date": "2021-06-26T06:38:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cda03ab-0548-4630-bdf3-4a5d2aca6357", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T04:19:25.000Z" - }, - "end": { - "$date": "2021-06-26T04:55:54.000Z" - }, - "events": [ - { - "uuid": "0f04e948-5d43-4c73-81cc-6703d2a1a52c", - "start": { - "$date": "2021-06-26T04:19:25.000Z" - }, - "end": { - "$date": "2021-06-26T04:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ad3aa476-a7d5-4d51-a548-5415df967654", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-26T04:17:14.000Z" - }, - "end": { - "$date": "2021-06-26T06:37:00.000Z" - }, - "events": [ - { - "uuid": "55b775c8-74dd-4fdf-b7e1-3f922629a32f", - "start": { - "$date": "2021-06-26T04:17:14.000Z" - }, - "end": { - "$date": "2021-06-26T04:18:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2705fc5b-a550-4cd6-956a-4d69f7b47421", - "start": { - "$date": "2021-06-26T04:18:14.000Z" - }, - "end": { - "$date": "2021-06-26T04:30:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "51cb9120-5d2c-4bff-8736-4f0e98f741b2", - "start": { - "$date": "2021-06-26T04:30:14.000Z" - }, - "end": { - "$date": "2021-06-26T06:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "81114c3b-9b1c-44ae-a04c-49c44b8ccbb0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-26T04:27:14.000Z" - }, - "end": { - "$date": "2021-06-26T19:46:06.000Z" - }, - "events": [ - { - "uuid": "1f86c657-8abd-47fd-ae95-ac3865b4c48f", - "start": { - "$date": "2021-06-26T04:27:14.000Z" - }, - "end": { - "$date": "2021-06-26T07:11:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8775a7fc-e5eb-4d70-8694-1cf1408ad8af", - "start": { - "$date": "2021-06-26T07:11:14.000Z" - }, - "end": { - "$date": "2021-06-26T15:37:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74154b04-910d-45e4-affa-6c28db5c8ebf", - "start": { - "$date": "2021-06-26T15:37:14.000Z" - }, - "end": { - "$date": "2021-06-26T15:47:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74b1cf44-9888-41e5-9aff-f4a05c1aa504", - "start": { - "$date": "2021-06-26T15:47:14.000Z" - }, - "end": { - "$date": "2021-06-26T19:46:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "23dc97e1-e745-4979-8436-bf0b71373ce6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-26T04:28:53.000Z" - }, - "end": { - "$date": "2021-06-26T04:42:23.000Z" - }, - "events": [ - { - "uuid": "f3dbac03-26bf-4d46-89e8-80abcf0da430", - "start": { - "$date": "2021-06-26T04:28:53.000Z" - }, - "end": { - "$date": "2021-06-26T04:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92ca6856-c02f-4b88-a60d-e3a568ef23fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-26T04:46:03.000Z" - }, - "end": { - "$date": "2021-06-26T05:53:59.000Z" - }, - "events": [ - { - "uuid": "79462bff-a378-48c6-aa33-e9268886a56b", - "start": { - "$date": "2021-06-26T04:46:03.000Z" - }, - "end": { - "$date": "2021-06-26T05:53:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28eeb495-dff2-4799-a402-b8db09a7bad2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T05:04:35.000Z" - }, - "end": { - "$date": "2021-06-26T05:34:05.000Z" - }, - "events": [ - { - "uuid": "b42d3c3c-a240-42d2-b53b-eec87736ee65", - "start": { - "$date": "2021-06-26T05:04:35.000Z" - }, - "end": { - "$date": "2021-06-26T05:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5ef54e5-5297-4e4e-913e-8ee2b38e809f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T05:01:23.000Z" - }, - "end": { - "$date": "2021-06-26T05:49:57.000Z" - }, - "events": [ - { - "uuid": "126d425f-92b5-485a-8861-461aefc46776", - "start": { - "$date": "2021-06-26T05:01:23.000Z" - }, - "end": { - "$date": "2021-06-26T05:49:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b6362ae-2ce5-41b6-840a-dfd7b535e752", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T05:46:00.000Z" - }, - "end": { - "$date": "2021-06-26T06:22:43.000Z" - }, - "events": [ - { - "uuid": "906709bc-fb68-465c-9379-042e3eae2664", - "start": { - "$date": "2021-06-26T05:46:00.000Z" - }, - "end": { - "$date": "2021-06-26T06:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d244a9ef-472b-4b0b-bea3-78c6a640e094", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T06:22:50.000Z" - }, - "end": { - "$date": "2021-06-26T06:46:56.000Z" - }, - "events": [ - { - "uuid": "e7b04ce3-0d33-4d37-b415-a5bd13f83f4e", - "start": { - "$date": "2021-06-26T06:22:50.000Z" - }, - "end": { - "$date": "2021-06-26T06:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "298eb9e4-f49d-4a5a-b666-c4a88a212b79", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T06:52:17.000Z" - }, - "end": { - "$date": "2021-06-26T07:21:10.000Z" - }, - "events": [ - { - "uuid": "0e6aded6-a1ff-4ad6-ab7a-b98c328361eb", - "start": { - "$date": "2021-06-26T06:52:17.000Z" - }, - "end": { - "$date": "2021-06-26T07:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1260c21-4149-4275-bc0e-7926d384b727", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T06:47:48.000Z" - }, - "end": { - "$date": "2021-06-26T07:28:38.000Z" - }, - "events": [ - { - "uuid": "a060b4d3-898c-42de-891d-5da8843976bc", - "start": { - "$date": "2021-06-26T06:47:48.000Z" - }, - "end": { - "$date": "2021-06-26T07:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "8af37e2a-2348-41f8-820f-430dc64a52c8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-26T07:00:34.000Z" - }, - "end": { - "$date": "2021-06-26T10:04:11.000Z" - }, - "events": [ - { - "uuid": "23d61fcf-1154-4100-8a9f-aef8decd0904", - "start": { - "$date": "2021-06-26T07:00:34.000Z" - }, - "end": { - "$date": "2021-06-26T08:44:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d1fea6a-3336-4da3-b2c7-e52bc06e9a95", - "start": { - "$date": "2021-06-26T08:44:34.000Z" - }, - "end": { - "$date": "2021-06-26T08:49:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f3d61db7-59e9-4661-91e7-a07e46442a3b", - "start": { - "$date": "2021-06-26T08:49:34.000Z" - }, - "end": { - "$date": "2021-06-26T09:20:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4da756a0-6d4d-4b2f-877d-8d601ff6cf26", - "start": { - "$date": "2021-06-26T09:20:34.000Z" - }, - "end": { - "$date": "2021-06-26T09:25:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd7effd2-e4c9-40c1-8e2a-a1a25ab2d9de", - "start": { - "$date": "2021-06-26T09:25:34.000Z" - }, - "end": { - "$date": "2021-06-26T10:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "158d5881-6c78-4172-9ffb-6817e215f794", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T07:22:59.000Z" - }, - "end": { - "$date": "2021-06-26T08:00:33.000Z" - }, - "events": [ - { - "uuid": "3f7dc4d2-8f62-4545-8522-c06acecca8bb", - "start": { - "$date": "2021-06-26T07:22:59.000Z" - }, - "end": { - "$date": "2021-06-26T08:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08bfa5e2-2c6d-4f9b-b9da-cb832ae4cad8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T08:03:07.000Z" - }, - "end": { - "$date": "2021-06-26T08:39:31.000Z" - }, - "events": [ - { - "uuid": "03af3c24-c8c9-4fca-bb5d-129419a6c0ed", - "start": { - "$date": "2021-06-26T08:03:07.000Z" - }, - "end": { - "$date": "2021-06-26T08:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89860c8d-9907-4cc8-b363-62f0296572e6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-26T08:41:20.000Z" - }, - "end": { - "$date": "2021-06-26T09:16:08.000Z" - }, - "events": [ - { - "uuid": "a292c62e-77a3-48f8-aac9-6d49f648e929", - "start": { - "$date": "2021-06-26T08:41:20.000Z" - }, - "end": { - "$date": "2021-06-26T09:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9770cdef-f2ba-45ac-beb9-623a074b67fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-26T10:04:39.000Z" - }, - "end": { - "$date": "2021-06-26T11:08:20.000Z" - }, - "events": [ - { - "uuid": "b5a72247-5e46-4e1a-9375-523e77abe63a", - "start": { - "$date": "2021-06-26T10:04:39.000Z" - }, - "end": { - "$date": "2021-06-26T11:08:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "462f313a-2693-4e08-ab8b-6a269600b060", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T17:30:56.000Z" - }, - "end": { - "$date": "2021-06-26T18:03:17.000Z" - }, - "events": [ - { - "uuid": "56947572-d2be-45d8-8f44-af419fced790", - "start": { - "$date": "2021-06-26T17:30:56.000Z" - }, - "end": { - "$date": "2021-06-26T18:03:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1eaee746-a156-4b53-a6cc-1bbae4adc363", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T18:03:52.000Z" - }, - "end": { - "$date": "2021-06-26T19:36:32.000Z" - }, - "events": [ - { - "uuid": "c0dc776f-0aa6-4351-ac8f-db8277ada4af", - "start": { - "$date": "2021-06-26T18:03:52.000Z" - }, - "end": { - "$date": "2021-06-26T19:36:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "6f624f7e-35dc-46b6-973f-27a5a24d7ce4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T18:08:11.000Z" - }, - "end": { - "$date": "2021-06-26T18:14:39.000Z" - }, - "events": [ - { - "uuid": "c735d0c2-860e-4b4c-b103-6e443017ab25", - "start": { - "$date": "2021-06-26T18:08:11.000Z" - }, - "end": { - "$date": "2021-06-26T18:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "d5146a67-c50f-4c47-93e6-0579469cd211", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T18:17:32.000Z" - }, - "end": { - "$date": "2021-06-26T18:24:19.000Z" - }, - "events": [ - { - "uuid": "16ef7835-a6b9-4a72-b861-2866d25055a0", - "start": { - "$date": "2021-06-26T18:17:32.000Z" - }, - "end": { - "$date": "2021-06-26T18:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "4b159bdc-45d2-4a0b-b21c-26cb971bc487", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T18:27:39.000Z" - }, - "end": { - "$date": "2021-06-26T18:43:39.000Z" - }, - "events": [ - { - "uuid": "5ab88489-a7a9-478e-b270-1d34b8d93314", - "start": { - "$date": "2021-06-26T18:27:39.000Z" - }, - "end": { - "$date": "2021-06-26T18:43:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "8b03062a-96ab-4e77-9f5c-0f73e9006382", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T19:02:50.000Z" - }, - "end": { - "$date": "2021-06-26T19:06:11.000Z" - }, - "events": [ - { - "uuid": "21ce361d-ef1b-4658-a027-3cc4bab192cc", - "start": { - "$date": "2021-06-26T19:02:50.000Z" - }, - "end": { - "$date": "2021-06-26T19:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "44518864-a1c0-4b81-a7f8-7bb38c530578", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-26T19:46:11.000Z" - }, - "end": { - "$date": "2021-06-26T20:21:04.000Z" - }, - "events": [ - { - "uuid": "46e347b5-7134-478c-9d7a-c82544434f31", - "start": { - "$date": "2021-06-26T19:46:11.000Z" - }, - "end": { - "$date": "2021-06-26T20:21:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "1bfc8fc6-70be-4668-ae89-867a87ba32d1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-26T21:27:03.000Z" - }, - "end": { - "$date": "2021-06-26T21:28:08.000Z" - }, - "events": [ - { - "uuid": "bf0ec40e-e8e7-46d1-bf8e-0c055bc716e5", - "start": { - "$date": "2021-06-26T21:27:03.000Z" - }, - "end": { - "$date": "2021-06-26T21:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "affda1d3-bde2-430f-a9ab-ffd3bc70f0e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T21:47:36.000Z" - }, - "end": { - "$date": "2021-06-26T22:22:10.000Z" - }, - "events": [ - { - "uuid": "64d3e63e-317d-452e-88a1-2c60e09c2fd6", - "start": { - "$date": "2021-06-26T21:47:36.000Z" - }, - "end": { - "$date": "2021-06-26T22:22:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23550d97-3500-49fd-b247-57313f18d432", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T21:54:33.000Z" - }, - "end": { - "$date": "2021-06-26T22:21:59.000Z" - }, - "events": [ - { - "uuid": "770e3ef0-0ae2-477c-976d-49b78da4ab52", - "start": { - "$date": "2021-06-26T21:54:33.000Z" - }, - "end": { - "$date": "2021-06-26T22:21:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "815522a0-8605-4ad8-9635-c75b2e73ace9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-26T22:07:41.000Z" - }, - "end": { - "$date": "2021-06-27T01:18:26.000Z" - }, - "events": [ - { - "uuid": "a09445d1-eda2-4a12-8799-896f30d561e1", - "start": { - "$date": "2021-06-26T22:07:41.000Z" - }, - "end": { - "$date": "2021-06-27T01:18:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "01dd409a-ae7b-40b9-9ecf-6fba0647ca64", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T22:44:48.000Z" - }, - "end": { - "$date": "2021-06-26T22:48:43.000Z" - }, - "events": [ - { - "uuid": "8619a76c-36d5-4080-9ff3-d117e3f06c50", - "start": { - "$date": "2021-06-26T22:44:48.000Z" - }, - "end": { - "$date": "2021-06-26T22:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "46478888-5379-4b38-8d4b-252d9debe62b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T22:29:40.000Z" - }, - "end": { - "$date": "2021-06-26T22:54:15.000Z" - }, - "events": [ - { - "uuid": "9236c4ff-4b3b-45d3-917b-4fab77fc6f05", - "start": { - "$date": "2021-06-26T22:29:40.000Z" - }, - "end": { - "$date": "2021-06-26T22:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "4a0e3dad-9309-4876-be29-c2e042c8f54c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-26T23:12:02.000Z" - }, - "end": { - "$date": "2021-06-26T23:18:40.000Z" - }, - "events": [ - { - "uuid": "1feddbfb-f255-42c1-825e-5bef69a9c471", - "start": { - "$date": "2021-06-26T23:12:02.000Z" - }, - "end": { - "$date": "2021-06-26T23:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "91b01f1c-5686-4abe-b43f-8dbbdf1a171a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T22:54:46.000Z" - }, - "end": { - "$date": "2021-06-26T23:10:32.000Z" - }, - "events": [ - { - "uuid": "a68465e1-d09b-464b-8e8d-72a1e584694e", - "start": { - "$date": "2021-06-26T22:54:46.000Z" - }, - "end": { - "$date": "2021-06-26T23:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "73fd0ab0-efcc-4240-b284-ac6373df5ecf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-27T02:12:34.000Z" - }, - "end": { - "$date": "2021-06-27T04:52:04.000Z" - }, - "events": [ - { - "uuid": "9c1435b8-4d0c-490d-bd1b-3fe66d4c53dd", - "start": { - "$date": "2021-06-27T02:12:34.000Z" - }, - "end": { - "$date": "2021-06-27T03:54:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb04217f-337c-4aee-ab69-5c42250b96d6", - "start": { - "$date": "2021-06-27T03:54:34.000Z" - }, - "end": { - "$date": "2021-06-27T04:00:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "056b9486-e034-48e7-936a-3b6648ec36a8", - "start": { - "$date": "2021-06-27T04:00:34.000Z" - }, - "end": { - "$date": "2021-06-27T05:14:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c2124366-ac96-4171-8433-404ff2bc72ed", - "start": { - "$date": "2021-06-27T05:14:34.000Z" - }, - "end": { - "$date": "2021-06-27T05:15:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "05c4c7a6-6b8f-4c34-b40e-590a559652d7", - "start": { - "$date": "2021-06-27T05:15:34.000Z" - }, - "end": { - "$date": "2021-06-27T05:18:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3296ced3-b998-4c6a-a692-2b41f7ebf8fa", - "start": { - "$date": "2021-06-27T05:18:34.000Z" - }, - "end": { - "$date": "2021-06-27T06:17:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "736a6c2f-93af-4896-9f53-bcd33d5591fc", - "start": { - "$date": "2021-06-27T06:17:34.000Z" - }, - "end": { - "$date": "2021-06-27T06:20:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d5fdfe0-d45c-4127-a7c8-24b04d8b0755", - "start": { - "$date": "2021-06-27T06:20:34.000Z" - }, - "end": { - "$date": "2021-06-27T06:52:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5acdbc7-8557-46cc-8c03-8d55b191b202", - "start": { - "$date": "2021-06-27T06:52:34.000Z" - }, - "end": { - "$date": "2021-06-27T07:09:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "264bffc7-5873-4179-b70c-4593bcfab541", - "start": { - "$date": "2021-06-27T07:09:34.000Z" - }, - "end": { - "$date": "2021-06-27T07:35:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc893fc4-0c2b-4b4b-adcc-e13541cbab78", - "start": { - "$date": "2021-06-27T07:35:34.000Z" - }, - "end": { - "$date": "2021-06-27T04:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "68f151e1-e133-4582-8928-46768d40588f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T23:47:46.000Z" - }, - "end": { - "$date": "2021-06-26T23:53:31.000Z" - }, - "events": [ - { - "uuid": "6fc65b40-b523-40b1-b080-cfc88e11e019", - "start": { - "$date": "2021-06-26T23:47:46.000Z" - }, - "end": { - "$date": "2021-06-26T23:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "67aeefd0-d120-4a0a-aff3-87a9c7abc54e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-26T23:53:46.000Z" - }, - "end": { - "$date": "2021-06-27T01:09:13.000Z" - }, - "events": [ - { - "uuid": "cf32f186-24bc-4cd0-a1f1-2c604c06d99d", - "start": { - "$date": "2021-06-26T23:53:46.000Z" - }, - "end": { - "$date": "2021-06-27T01:09:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1296b879-6b9d-4f59-a4ce-007af63e08be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-27T00:01:06.000Z" - }, - "end": { - "$date": "2021-06-27T01:02:17.000Z" - }, - "events": [ - { - "uuid": "d7f980d2-3fbe-4133-8d4a-1562d6e6ae29", - "start": { - "$date": "2021-06-27T00:01:06.000Z" - }, - "end": { - "$date": "2021-06-27T01:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bf39418a-e2a0-469d-ae25-2f346bc4ef44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T00:13:04.000Z" - }, - "end": { - "$date": "2021-06-27T00:18:46.000Z" - }, - "events": [ - { - "uuid": "250d0a9b-a22e-48d6-a8eb-ae4f28177add", - "start": { - "$date": "2021-06-27T00:13:04.000Z" - }, - "end": { - "$date": "2021-06-27T00:18:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6d35ad86-c890-4d7d-b31c-baef93e6c4fb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T00:20:04.000Z" - }, - "end": { - "$date": "2021-06-27T00:45:23.000Z" - }, - "events": [ - { - "uuid": "c782c607-cc98-4311-afa7-7a62218b2896", - "start": { - "$date": "2021-06-27T00:20:04.000Z" - }, - "end": { - "$date": "2021-06-27T00:45:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "541d8738-2ef6-45ae-aa96-290d3bb484b7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-27T00:53:53.000Z" - }, - "end": { - "$date": "2021-06-27T03:35:35.000Z" - }, - "events": [ - { - "uuid": "e6cca25a-bde3-40b0-baaf-cfa1983fe845", - "start": { - "$date": "2021-06-27T00:53:53.000Z" - }, - "end": { - "$date": "2021-06-27T02:26:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff064b2b-ef2d-4529-9595-db76ff0fb066", - "start": { - "$date": "2021-06-27T02:26:53.000Z" - }, - "end": { - "$date": "2021-06-27T02:41:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e607790-da7c-42f7-b631-c70de0746cf5", - "start": { - "$date": "2021-06-27T02:41:53.000Z" - }, - "end": { - "$date": "2021-06-27T03:20:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "76778e8f-4d1d-4a28-8230-e0dea56e44d6", - "start": { - "$date": "2021-06-27T03:20:53.000Z" - }, - "end": { - "$date": "2021-06-27T03:35:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f62b487a-a340-4c62-8e9e-96abcdef529f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-27T01:29:35.000Z" - }, - "end": { - "$date": "2021-06-27T03:57:42.000Z" - }, - "events": [ - { - "uuid": "bbb9e0fe-0ca4-4ba1-86f8-fb4bbd5e39fc", - "start": { - "$date": "2021-06-27T01:29:35.000Z" - }, - "end": { - "$date": "2021-06-27T03:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0e85457f-e61c-4bbb-9451-6d399fc2e1da", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-27T02:12:53.000Z" - }, - "end": { - "$date": "2021-06-27T02:16:19.000Z" - }, - "events": [ - { - "uuid": "51da5234-ad0c-43ef-9d19-f77cad9162e8", - "start": { - "$date": "2021-06-27T02:12:53.000Z" - }, - "end": { - "$date": "2021-06-27T02:16:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ab34a8b1-08ff-463e-b69a-f502418a7e01", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T02:43:53.000Z" - }, - "end": { - "$date": "2021-06-27T03:53:58.000Z" - }, - "events": [ - { - "uuid": "fc40da97-2814-4945-889c-6d1cede64086", - "start": { - "$date": "2021-06-27T02:43:53.000Z" - }, - "end": { - "$date": "2021-06-27T03:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1007c3dc-1b2f-4277-8027-9258ca424a32", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-27T02:58:43.000Z" - }, - "end": { - "$date": "2021-06-27T03:26:43.000Z" - }, - "events": [ - { - "uuid": "d99755ac-b607-4b78-b75b-b5d14c75a166", - "start": { - "$date": "2021-06-27T02:58:43.000Z" - }, - "end": { - "$date": "2021-06-27T03:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d94b125d-3c54-4356-9e87-560f8eb263d1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-27T03:27:43.000Z" - }, - "end": { - "$date": "2021-06-27T03:58:31.000Z" - }, - "events": [ - { - "uuid": "1dea47de-231f-4e33-a0bb-ea616fa1ed3c", - "start": { - "$date": "2021-06-27T03:27:43.000Z" - }, - "end": { - "$date": "2021-06-27T03:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e10b6794-d7d0-471b-99d3-825c68ebd5a3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-27T03:33:14.000Z" - }, - "end": { - "$date": "2021-06-27T03:49:52.000Z" - }, - "events": [ - { - "uuid": "45f90095-5a90-4d2a-9726-e566a1be25fe", - "start": { - "$date": "2021-06-27T03:33:14.000Z" - }, - "end": { - "$date": "2021-06-27T03:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "145e9500-8220-4a27-8d8e-d4e468c7dd11", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-27T03:58:52.000Z" - }, - "end": { - "$date": "2021-06-27T04:04:42.000Z" - }, - "events": [ - { - "uuid": "e338a9b9-92ff-438e-b973-9e9ab3db91b6", - "start": { - "$date": "2021-06-27T03:58:52.000Z" - }, - "end": { - "$date": "2021-06-27T04:04:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d2c6a1b-069b-4e4c-ba8e-f05db8813836", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-27T05:15:45.000Z" - }, - "end": { - "$date": "2021-06-27T05:16:38.000Z" - }, - "events": [ - { - "uuid": "fefe1b2e-09c6-480d-9106-62e0e1994134", - "start": { - "$date": "2021-06-27T05:15:45.000Z" - }, - "end": { - "$date": "2021-06-27T05:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2cfb2b3d-6fd4-4a0f-8f11-5d11c15cc608", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-27T03:59:56.000Z" - }, - "end": { - "$date": "2021-06-27T04:45:28.000Z" - }, - "events": [ - { - "uuid": "4b3438b0-9984-4e9f-be84-adc0c921df4a", - "start": { - "$date": "2021-06-27T03:59:56.000Z" - }, - "end": { - "$date": "2021-06-27T04:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "78713e5e-dc71-424f-8aca-2df31192c2a1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-27T04:05:22.000Z" - }, - "end": { - "$date": "2021-06-27T04:45:51.000Z" - }, - "events": [ - { - "uuid": "0ae5f375-c725-4d0b-b975-54673e4e3511", - "start": { - "$date": "2021-06-27T04:05:22.000Z" - }, - "end": { - "$date": "2021-06-27T04:45:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "922b64f6-dab8-488e-8052-7c38cc5ceb7a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-27T04:25:40.000Z" - }, - "end": { - "$date": "2021-06-27T05:53:40.000Z" - }, - "events": [ - { - "uuid": "5761c8cd-4911-444e-b062-b6ebca55e935", - "start": { - "$date": "2021-06-27T04:25:40.000Z" - }, - "end": { - "$date": "2021-06-27T05:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a3f052e2-5f78-4534-8002-a88296b82e67", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-27T04:40:47.000Z" - }, - "end": { - "$date": "2021-06-27T07:08:47.000Z" - }, - "events": [ - { - "uuid": "45e7c157-4f04-4380-bf71-46cc60f6fda0", - "start": { - "$date": "2021-06-27T04:40:47.000Z" - }, - "end": { - "$date": "2021-06-27T07:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5c25e698-9ba7-47c5-b5cc-9380b0370e1a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-27T04:46:32.000Z" - }, - "end": { - "$date": "2021-06-27T05:54:21.000Z" - }, - "events": [ - { - "uuid": "9849ece8-1882-4321-a535-07a258394e0e", - "start": { - "$date": "2021-06-27T04:46:32.000Z" - }, - "end": { - "$date": "2021-06-27T05:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1d0eb1b9-7daf-4f0a-9ac6-bf743821bbc4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-27T04:48:36.000Z" - }, - "end": { - "$date": "2021-06-27T05:29:25.000Z" - }, - "events": [ - { - "uuid": "6597980e-8a79-4a16-8dbd-c889866ac08d", - "start": { - "$date": "2021-06-27T04:48:36.000Z" - }, - "end": { - "$date": "2021-06-27T05:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5abe7a26-b1f4-4856-b607-48a08f279fe1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-27T04:48:56.000Z" - }, - "end": { - "$date": "2021-06-27T04:51:37.000Z" - }, - "events": [ - { - "uuid": "94866aa0-cb33-40dd-84ea-af6d29137b10", - "start": { - "$date": "2021-06-27T04:48:56.000Z" - }, - "end": { - "$date": "2021-06-27T04:51:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3230d8b5-02f3-437f-b026-534c1132e298", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-27T04:51:52.000Z" - }, - "end": { - "$date": "2021-06-27T05:51:50.000Z" - }, - "events": [ - { - "uuid": "aef66140-6e32-4ab7-bd43-3d380c818b50", - "start": { - "$date": "2021-06-27T04:51:52.000Z" - }, - "end": { - "$date": "2021-06-27T05:51:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "267a0452-fd56-472a-b7a8-3ce05212186b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-27T04:52:31.000Z" - }, - "end": { - "$date": "2021-06-27T05:53:46.000Z" - }, - "events": [ - { - "uuid": "db50a22e-3090-46ca-a48a-ee5813f4b0b1", - "start": { - "$date": "2021-06-27T04:52:31.000Z" - }, - "end": { - "$date": "2021-06-27T05:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7403b8b3-c56c-4b64-8493-ae68b61437b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-27T04:52:40.000Z" - }, - "end": { - "$date": "2021-06-27T05:53:20.000Z" - }, - "events": [ - { - "uuid": "8cca8c46-018d-4858-a931-7820edff8b82", - "start": { - "$date": "2021-06-27T04:52:40.000Z" - }, - "end": { - "$date": "2021-06-27T05:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "7f2b1129-fc38-4894-892b-8b5d8c329386", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-27T08:01:02.000Z" - }, - "end": { - "$date": "2021-06-27T08:01:48.000Z" - }, - "events": [ - { - "uuid": "92a05a47-bd66-47a2-af6d-926efa4f5248", - "start": { - "$date": "2021-06-27T08:01:02.000Z" - }, - "end": { - "$date": "2021-06-27T08:01:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "e679d376-c911-4f90-999f-983f6d5291b4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-27T06:27:12.000Z" - }, - "end": { - "$date": "2021-06-27T08:17:42.000Z" - }, - "events": [ - { - "uuid": "c383573e-8651-4156-9feb-b8bc896351ae", - "start": { - "$date": "2021-06-27T06:27:12.000Z" - }, - "end": { - "$date": "2021-06-27T08:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b13183a2-dafd-4309-b6a2-4334d33c85a9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-27T07:12:07.000Z" - }, - "end": { - "$date": "2021-06-27T10:13:48.000Z" - }, - "events": [ - { - "uuid": "33cec02d-e78e-4870-b135-b0388f334803", - "start": { - "$date": "2021-06-27T07:12:07.000Z" - }, - "end": { - "$date": "2021-06-27T10:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23267d52-f6c3-430a-a16f-742bd6ff55a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-27T07:28:39.000Z" - }, - "end": { - "$date": "2021-06-27T08:22:22.000Z" - }, - "events": [ - { - "uuid": "d6f14259-c799-4b05-b481-b004440db424", - "start": { - "$date": "2021-06-27T07:28:39.000Z" - }, - "end": { - "$date": "2021-06-27T08:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2953cbbf-22db-47ea-8c46-92428fa4778f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-27T08:23:32.000Z" - }, - "end": { - "$date": "2021-06-27T08:56:38.000Z" - }, - "events": [ - { - "uuid": "44f9c282-cb3f-4efd-b59c-02d63717099d", - "start": { - "$date": "2021-06-27T08:23:32.000Z" - }, - "end": { - "$date": "2021-06-27T08:56:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7281f7fb-5782-4bfc-bfd2-1943a40d2505", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-27T08:57:40.000Z" - }, - "end": { - "$date": "2021-06-27T09:32:53.000Z" - }, - "events": [ - { - "uuid": "832ffd57-749e-44b6-a872-82564947a796", - "start": { - "$date": "2021-06-27T08:57:40.000Z" - }, - "end": { - "$date": "2021-06-27T09:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "254c3860-c0bb-4c04-a99c-549221d63a01", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-27T10:14:02.000Z" - }, - "end": { - "$date": "2021-06-27T10:16:27.000Z" - }, - "events": [ - { - "uuid": "0018d123-311e-44d2-923c-f834a494ac17", - "start": { - "$date": "2021-06-27T10:14:02.000Z" - }, - "end": { - "$date": "2021-06-27T10:16:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "40d5f8e6-9ef3-41e9-80ad-31861ffaabcd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-27T10:16:42.000Z" - }, - "end": { - "$date": "2021-06-27T10:26:12.000Z" - }, - "events": [ - { - "uuid": "bc19c3a1-fa20-46b5-998d-94243160c71f", - "start": { - "$date": "2021-06-27T10:16:42.000Z" - }, - "end": { - "$date": "2021-06-27T10:26:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2482f8df-f09a-4467-a8b9-91fa84b6f6e8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-27T12:39:52.000Z" - }, - "end": { - "$date": "2021-06-27T13:29:21.000Z" - }, - "events": [ - { - "uuid": "23e90647-0b58-4a43-9fc1-f1f12fb9a1ed", - "start": { - "$date": "2021-06-27T12:39:52.000Z" - }, - "end": { - "$date": "2021-06-27T13:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ba8cbfb9-3777-437f-becb-88afef9f55f5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-27T13:54:37.000Z" - }, - "end": { - "$date": "2021-06-27T14:02:08.000Z" - }, - "events": [ - { - "uuid": "4f539de8-1b50-43c3-9ae5-4d01bcdf768d", - "start": { - "$date": "2021-06-27T13:54:37.000Z" - }, - "end": { - "$date": "2021-06-27T14:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6867837e-8854-4713-a62a-7e184aa1554a", - "uuid": "99d81c82-5739-4fe4-8136-25b2814e1f04", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-27T14:10:37.000Z" - }, - "end": { - "$date": "2021-06-27T14:31:53.000Z" - }, - "events": [ - { - "uuid": "067b8086-6f32-467e-b4c5-9688882faf4d", - "start": { - "$date": "2021-06-27T14:10:37.000Z" - }, - "end": { - "$date": "2021-06-27T14:22:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a6de499-4d1c-47da-a003-cc8a5ec0c154", - "start": { - "$date": "2021-06-27T14:22:37.000Z" - }, - "end": { - "$date": "2021-06-27T14:23:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d59b94c3-3857-4e53-9266-7f1d9eb9711c", - "start": { - "$date": "2021-06-27T14:23:37.000Z" - }, - "end": { - "$date": "2021-06-27T14:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9d3ff7d4-5ac6-4b2b-83c2-b350c4e9f608", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T15:14:42.000Z" - }, - "end": { - "$date": "2021-06-27T15:16:12.000Z" - }, - "events": [ - { - "uuid": "d0db2306-0e55-48cb-86dc-11b8500b294f", - "start": { - "$date": "2021-06-27T15:14:42.000Z" - }, - "end": { - "$date": "2021-06-27T15:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fa8bb6ee-8fed-4b34-9c5f-f3c6f7b5f5cf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T15:23:23.000Z" - }, - "end": { - "$date": "2021-06-27T15:53:47.000Z" - }, - "events": [ - { - "uuid": "d9d1c8eb-26f9-4ded-ad8b-894db583c3d3", - "start": { - "$date": "2021-06-27T15:23:23.000Z" - }, - "end": { - "$date": "2021-06-27T15:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b2632484-b630-4cb6-8ed1-346c8022efa3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-27T16:17:16.000Z" - }, - "end": { - "$date": "2021-06-27T17:19:44.000Z" - }, - "events": [ - { - "uuid": "099bd834-db30-4622-9ccc-e4f7162a2ac1", - "start": { - "$date": "2021-06-27T16:17:16.000Z" - }, - "end": { - "$date": "2021-06-27T17:19:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "704b9131-57dd-4501-8e18-65ee0339530d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-27T16:52:27.000Z" - }, - "end": { - "$date": "2021-06-27T16:52:32.000Z" - }, - "events": [ - { - "uuid": "ea1698bd-f764-49a1-935b-0f60afc8f3a4", - "start": { - "$date": "2021-06-27T16:52:27.000Z" - }, - "end": { - "$date": "2021-06-27T16:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "901978fc-07b4-44e6-a9fb-60c76e84a347", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-27T16:56:37.000Z" - }, - "end": { - "$date": "2021-06-27T19:58:21.000Z" - }, - "events": [ - { - "uuid": "17b9799f-11ff-49f7-bb9a-b9923b739b21", - "start": { - "$date": "2021-06-27T16:56:37.000Z" - }, - "end": { - "$date": "2021-06-27T19:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "4c1e628f-8b0e-4330-be65-b490fef08e59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-27T20:53:07.000Z" - }, - "end": { - "$date": "2021-06-27T20:53:29.000Z" - }, - "events": [ - { - "uuid": "76183e9a-2daa-4530-8bc9-41c1d2c7a56e", - "start": { - "$date": "2021-06-27T20:53:07.000Z" - }, - "end": { - "$date": "2021-06-27T20:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fef4cec1-35fe-4ef1-b5d1-9f2497e910e0", - "uuid": "9e68216a-473c-4124-b2e3-13c5d42086ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-27T20:37:36.000Z" - }, - "end": { - "$date": "2021-06-27T21:11:16.000Z" - }, - "events": [ - { - "uuid": "aa4ec71d-2dd4-4c82-91bf-b0eba59da5d2", - "start": { - "$date": "2021-06-27T20:37:36.000Z" - }, - "end": { - "$date": "2021-06-27T21:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1f141c83-d242-4fe5-9e81-34322fd5d1e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-27T20:48:38.000Z" - }, - "end": { - "$date": "2021-06-28T00:26:37.000Z" - }, - "events": [ - { - "uuid": "b8fc6b3e-7c9b-4860-ac33-e39cd89c024e", - "start": { - "$date": "2021-06-27T20:48:38.000Z" - }, - "end": { - "$date": "2021-06-28T00:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3e8eb985-88de-40d9-b802-696f665d4af4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-27T20:51:59.000Z" - }, - "end": { - "$date": "2021-06-27T22:27:56.000Z" - }, - "events": [ - { - "uuid": "c0506304-0f57-4bea-8b7e-8f90e0b7765a", - "start": { - "$date": "2021-06-27T20:51:59.000Z" - }, - "end": { - "$date": "2021-06-27T22:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3a3e26b5-4e1c-4651-b8cf-e67410925295", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-27T20:53:23.000Z" - }, - "end": { - "$date": "2021-06-27T22:25:56.000Z" - }, - "events": [ - { - "uuid": "0e91d292-97de-4632-a359-da4bbb120f69", - "start": { - "$date": "2021-06-27T20:53:23.000Z" - }, - "end": { - "$date": "2021-06-27T22:25:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "9a96c37a-b443-47e0-89ef-3690938c20b0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-27T21:02:15.000Z" - }, - "end": { - "$date": "2021-06-27T21:55:18.000Z" - }, - "events": [ - { - "uuid": "9e2de52d-5fe1-4925-8039-f48a2d0fa4ff", - "start": { - "$date": "2021-06-27T21:02:15.000Z" - }, - "end": { - "$date": "2021-06-27T21:55:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cb93d696-56ae-4555-9ccc-cd7bd598f3b1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-27T21:17:08.000Z" - }, - "end": { - "$date": "2021-06-27T21:21:37.000Z" - }, - "events": [ - { - "uuid": "c9836c07-47c4-487d-ad7c-6c81e761e021", - "start": { - "$date": "2021-06-27T21:17:08.000Z" - }, - "end": { - "$date": "2021-06-27T21:21:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "80e0d5a2-30d2-4f2f-b047-c44c308d0f7d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T21:33:57.000Z" - }, - "end": { - "$date": "2021-06-27T23:08:53.000Z" - }, - "events": [ - { - "uuid": "1375c2f4-d74a-4240-83ab-2bc63a993dd5", - "start": { - "$date": "2021-06-27T21:33:57.000Z" - }, - "end": { - "$date": "2021-06-27T23:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b8ba871b-20e2-4925-9f7b-0816fd44aec0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-27T21:34:09.000Z" - }, - "end": { - "$date": "2021-06-27T22:40:51.000Z" - }, - "events": [ - { - "uuid": "8cf1140a-6d3c-4b9c-b41e-b8f33a074e5c", - "start": { - "$date": "2021-06-27T21:34:09.000Z" - }, - "end": { - "$date": "2021-06-27T22:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "90a9bacf-1c1b-44fb-88ac-fa825e196550", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-27T22:50:23.000Z" - }, - "end": { - "$date": "2021-06-28T00:51:20.000Z" - }, - "events": [ - { - "uuid": "22b02ed8-1200-42c2-9d5f-bba3d4a1bb59", - "start": { - "$date": "2021-06-27T22:50:23.000Z" - }, - "end": { - "$date": "2021-06-28T00:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f7d4b2af-8b2e-4e09-97ec-647332623067", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-27T22:53:03.000Z" - }, - "end": { - "$date": "2021-06-27T23:32:44.000Z" - }, - "events": [ - { - "uuid": "2e29e600-c258-4db1-a353-9682000646cb", - "start": { - "$date": "2021-06-27T22:53:03.000Z" - }, - "end": { - "$date": "2021-06-27T23:32:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e357e3f2-1bfd-4b31-a13f-5a8a217a768b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-27T23:49:39.000Z" - }, - "end": { - "$date": "2021-06-28T13:25:33.000Z" - }, - "events": [ - { - "uuid": "d5a4fbde-f2b8-411f-8aa8-03c968e3f5f5", - "start": { - "$date": "2021-06-27T23:49:39.000Z" - }, - "end": { - "$date": "2021-06-28T03:14:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c62950e4-a13b-4f0f-b7c2-0d4e1284cc8f", - "start": { - "$date": "2021-06-28T03:14:39.000Z" - }, - "end": { - "$date": "2021-06-28T03:19:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59370b85-b2d1-4d8c-a2b4-c0ccb2d2919f", - "start": { - "$date": "2021-06-28T03:19:39.000Z" - }, - "end": { - "$date": "2021-06-28T03:29:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69ebc624-f5ef-4c31-a43c-93ec4b253579", - "start": { - "$date": "2021-06-28T03:29:39.000Z" - }, - "end": { - "$date": "2021-06-28T08:29:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8cb2653d-d07f-42a1-b6c3-b1b830ea73cc", - "start": { - "$date": "2021-06-28T08:29:39.000Z" - }, - "end": { - "$date": "2021-06-28T08:39:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c2f9d234-222a-474e-b23d-c1dcb53696b1", - "start": { - "$date": "2021-06-28T08:39:39.000Z" - }, - "end": { - "$date": "2021-06-28T13:25:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "272e82be-68f6-484b-9bb8-06e77ec0836d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-28T00:51:35.000Z" - }, - "end": { - "$date": "2021-06-28T01:33:45.000Z" - }, - "events": [ - { - "uuid": "29ec9a52-65d3-4a9e-bbde-1fce97f4712e", - "start": { - "$date": "2021-06-28T00:51:35.000Z" - }, - "end": { - "$date": "2021-06-28T01:33:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fd71887d-3206-4747-b9ec-db3f18d9425e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-28T01:56:36.000Z" - }, - "end": { - "$date": "2021-06-28T02:32:37.000Z" - }, - "events": [ - { - "uuid": "cf9d88ae-f361-4637-abeb-74d1cfd7c86a", - "start": { - "$date": "2021-06-28T01:56:36.000Z" - }, - "end": { - "$date": "2021-06-28T02:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84c95629-7b5b-4260-af2c-377e4b3d3a3f", - "uuid": "a996b959-2fe7-45f8-9a5b-1971acee3fbf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-28T02:14:19.000Z" - }, - "end": { - "$date": "2021-06-28T02:19:24.000Z" - }, - "events": [ - { - "uuid": "47a7c1d9-2d70-49c6-bab6-c0bba6cf514b", - "start": { - "$date": "2021-06-28T02:14:19.000Z" - }, - "end": { - "$date": "2021-06-28T02:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "063fb6ae-fe73-4d72-9328-f70215400d00", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-28T02:21:10.000Z" - }, - "end": { - "$date": "2021-06-28T02:29:45.000Z" - }, - "events": [ - { - "uuid": "99d5a23b-45c0-408a-ac26-753f7f566e7d", - "start": { - "$date": "2021-06-28T02:21:10.000Z" - }, - "end": { - "$date": "2021-06-28T02:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "38973a67-5856-40c4-9995-7b54bad7d3b7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-28T02:27:35.000Z" - }, - "end": { - "$date": "2021-06-28T05:12:13.000Z" - }, - "events": [ - { - "uuid": "380d4c85-0844-4415-b63d-fd771fecd646", - "start": { - "$date": "2021-06-28T02:27:35.000Z" - }, - "end": { - "$date": "2021-06-28T05:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "4cdfc033-42f0-40ca-a890-423a9cd66dc1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-28T02:39:06.000Z" - }, - "end": { - "$date": "2021-06-28T02:41:41.000Z" - }, - "events": [ - { - "uuid": "42bda85d-ccf9-4f74-855e-95e31b3f9dc5", - "start": { - "$date": "2021-06-28T02:39:06.000Z" - }, - "end": { - "$date": "2021-06-28T02:41:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "fbf4c624-9bdc-4c98-9f56-08a90192374a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-28T02:41:46.000Z" - }, - "end": { - "$date": "2021-06-28T03:15:56.000Z" - }, - "events": [ - { - "uuid": "41f7bdc6-a52d-486d-94bf-52e15e8c3637", - "start": { - "$date": "2021-06-28T02:41:46.000Z" - }, - "end": { - "$date": "2021-06-28T03:15:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "0621b11d-9796-4069-9837-5ce1e9e5a925", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-28T03:04:16.000Z" - }, - "end": { - "$date": "2021-06-28T04:14:32.000Z" - }, - "events": [ - { - "uuid": "f3de0a27-dc4d-4f76-bda7-bf577b666492", - "start": { - "$date": "2021-06-28T03:04:16.000Z" - }, - "end": { - "$date": "2021-06-28T04:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0af9597-899a-49b3-af3d-7a3c4038307e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-28T03:27:24.000Z" - }, - "end": { - "$date": "2021-06-28T03:41:14.000Z" - }, - "events": [ - { - "uuid": "d24e0979-6a01-4b42-9e80-4a719ee13e8a", - "start": { - "$date": "2021-06-28T03:27:24.000Z" - }, - "end": { - "$date": "2021-06-28T03:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d481099-d761-4ecd-a52a-20831c483bb3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-28T03:42:45.000Z" - }, - "end": { - "$date": "2021-06-28T03:59:55.000Z" - }, - "events": [ - { - "uuid": "1f92bc64-6972-44a8-9c83-3a44a83266b2", - "start": { - "$date": "2021-06-28T03:42:45.000Z" - }, - "end": { - "$date": "2021-06-28T03:59:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f33fb0d4-24c0-4f04-b692-8892993313bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-28T04:03:26.000Z" - }, - "end": { - "$date": "2021-06-28T04:07:57.000Z" - }, - "events": [ - { - "uuid": "20b2deb9-d90e-4f7d-8d8a-15e6e6eb00a5", - "start": { - "$date": "2021-06-28T04:03:26.000Z" - }, - "end": { - "$date": "2021-06-28T04:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa703b6a-9947-4322-895e-4b1cc2bfe7d0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-28T04:31:19.000Z" - }, - "end": { - "$date": "2021-06-28T04:57:05.000Z" - }, - "events": [ - { - "uuid": "82605472-798f-460e-a725-ba8eaa644a30", - "start": { - "$date": "2021-06-28T04:31:19.000Z" - }, - "end": { - "$date": "2021-06-28T04:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b5313be-bc02-40b1-a218-d31332f75e01", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-28T05:10:46.000Z" - }, - "end": { - "$date": "2021-06-28T05:45:37.000Z" - }, - "events": [ - { - "uuid": "852303eb-dbf3-4698-a1bb-79857737c23c", - "start": { - "$date": "2021-06-28T05:10:46.000Z" - }, - "end": { - "$date": "2021-06-28T05:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ffec5c6b-3ad5-41a4-a3a4-992243fa0abc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T04:58:38.000Z" - }, - "end": { - "$date": "2021-06-28T07:28:52.000Z" - }, - "events": [ - { - "uuid": "cf740191-b04c-4f1a-9653-db4e003711de", - "start": { - "$date": "2021-06-28T04:58:38.000Z" - }, - "end": { - "$date": "2021-06-28T07:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4498cfb8-4e68-4789-b3e3-a755c38bd29f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-28T05:15:16.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:53.000Z" - }, - "events": [ - { - "uuid": "960574b0-177c-493b-8608-9f8035a79f00", - "start": { - "$date": "2021-06-28T05:15:16.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7a8e8691-eb24-4d01-b382-b4cbfb58a41a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-28T05:18:22.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:14.000Z" - }, - "events": [ - { - "uuid": "0e844c8a-a308-4bf6-b2ae-3e3d18fbe69f", - "start": { - "$date": "2021-06-28T05:18:22.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b251cc0b-70b2-4dc4-bf12-125bc2b9f9ec", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-28T05:20:06.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:57.000Z" - }, - "events": [ - { - "uuid": "1452a885-c169-4106-a7a6-e3b5235b5f2a", - "start": { - "$date": "2021-06-28T05:20:06.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9636eb37-fd2a-4e20-88b8-45b050448c4e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-28T05:42:21.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:56.000Z" - }, - "events": [ - { - "uuid": "ad79c9d3-586c-417d-b956-7a9856705628", - "start": { - "$date": "2021-06-28T05:42:21.000Z" - }, - "end": { - "$date": "2021-06-28T05:53:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29aba4f8-6836-400a-acba-c7cafc2c94f8", - "start": { - "$date": "2021-06-28T05:53:21.000Z" - }, - "end": { - "$date": "2021-06-28T05:55:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18f2d998-ffc1-43b4-aeed-09880127f4a3", - "start": { - "$date": "2021-06-28T05:55:21.000Z" - }, - "end": { - "$date": "2021-06-28T06:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "cf97fc7c-317d-4618-a1df-5083058022ef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T07:33:08.000Z" - }, - "end": { - "$date": "2021-06-28T08:23:00.000Z" - }, - "events": [ - { - "uuid": "424fee4f-2ecd-42ca-83db-ba011ebc0e78", - "start": { - "$date": "2021-06-28T07:33:08.000Z" - }, - "end": { - "$date": "2021-06-28T08:02:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cea391c6-408a-487e-a93c-1aab685bff64", - "start": { - "$date": "2021-06-28T08:02:08.000Z" - }, - "end": { - "$date": "2021-06-28T08:07:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "19c25f1e-14a0-4696-99e9-ac10d2ff9004", - "start": { - "$date": "2021-06-28T08:07:08.000Z" - }, - "end": { - "$date": "2021-06-28T08:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "ea6e8ee3-60ae-492b-a9d2-8c1fdf87b4a3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T08:45:14.000Z" - }, - "end": { - "$date": "2021-06-28T11:20:37.000Z" - }, - "events": [ - { - "uuid": "6ce86cd4-04e8-4bb1-825e-2e5b246808da", - "start": { - "$date": "2021-06-28T08:45:14.000Z" - }, - "end": { - "$date": "2021-06-28T11:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1e4f5b88-beff-47c0-8b1a-b72e67266907", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T11:21:15.000Z" - }, - "end": { - "$date": "2021-06-28T11:28:19.000Z" - }, - "events": [ - { - "uuid": "deea8e63-7b79-404e-a4f6-8697033448a4", - "start": { - "$date": "2021-06-28T11:21:15.000Z" - }, - "end": { - "$date": "2021-06-28T11:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b19ae3fc-8d61-4db2-9026-727809248c8c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T11:58:13.000Z" - }, - "end": { - "$date": "2021-06-28T12:52:44.000Z" - }, - "events": [ - { - "uuid": "63e92ba1-0328-4743-b3d4-6d6685516648", - "start": { - "$date": "2021-06-28T11:58:13.000Z" - }, - "end": { - "$date": "2021-06-28T12:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "3617f2c8-357d-4bd0-acb8-4218ca15dae8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-28T12:53:58.000Z" - }, - "end": { - "$date": "2021-06-28T13:58:10.000Z" - }, - "events": [ - { - "uuid": "9b04193d-2e3b-4a1d-8a4d-4f9ae7bbcccd", - "start": { - "$date": "2021-06-28T12:53:58.000Z" - }, - "end": { - "$date": "2021-06-28T13:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8f67c4a4-c81c-4ef5-9934-a1229e21805b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T15:31:45.000Z" - }, - "end": { - "$date": "2021-06-28T15:34:55.000Z" - }, - "events": [ - { - "uuid": "be6c4916-d0b2-4690-93c7-48ac58e018e3", - "start": { - "$date": "2021-06-28T15:31:45.000Z" - }, - "end": { - "$date": "2021-06-28T15:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a1e8f522-d232-44be-a5e5-6779f21399d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T15:36:30.000Z" - }, - "end": { - "$date": "2021-06-28T15:38:35.000Z" - }, - "events": [ - { - "uuid": "179f7af5-1e01-4484-82c9-1e4277efc89d", - "start": { - "$date": "2021-06-28T15:36:30.000Z" - }, - "end": { - "$date": "2021-06-28T15:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "341db9d3-6b0c-4b9b-9a83-67767d2f5862", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T16:08:43.000Z" - }, - "end": { - "$date": "2021-06-28T16:18:59.000Z" - }, - "events": [ - { - "uuid": "188c7d84-2db2-4275-b603-c333626333c7", - "start": { - "$date": "2021-06-28T16:08:43.000Z" - }, - "end": { - "$date": "2021-06-28T16:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0a0fdd4a-53b1-4927-aa20-099704536080", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T16:19:19.000Z" - }, - "end": { - "$date": "2021-06-28T16:21:44.000Z" - }, - "events": [ - { - "uuid": "b8beff64-8208-49b4-8aaa-813167dd3fc7", - "start": { - "$date": "2021-06-28T16:19:19.000Z" - }, - "end": { - "$date": "2021-06-28T16:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "164107a9-c37a-4792-baa1-7b3a800798ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T16:26:55.000Z" - }, - "end": { - "$date": "2021-06-28T16:28:14.000Z" - }, - "events": [ - { - "uuid": "085ab3a3-f159-43ee-aa4e-b21bbc87bf8c", - "start": { - "$date": "2021-06-28T16:26:55.000Z" - }, - "end": { - "$date": "2021-06-28T16:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "066737f1-8c8d-402b-aa35-517b171b3664", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T17:30:32.000Z" - }, - "end": { - "$date": "2021-06-28T17:47:49.000Z" - }, - "events": [ - { - "uuid": "d1d52c3c-a996-46c7-a4d4-efb5b42d6247", - "start": { - "$date": "2021-06-28T17:30:32.000Z" - }, - "end": { - "$date": "2021-06-28T17:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "678a5357-cea0-45a2-9f57-aa58705f0070", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T17:48:45.000Z" - }, - "end": { - "$date": "2021-06-28T17:55:20.000Z" - }, - "events": [ - { - "uuid": "1a0621e4-0361-43b3-bd04-f2b3f8211b67", - "start": { - "$date": "2021-06-28T17:48:45.000Z" - }, - "end": { - "$date": "2021-06-28T17:55:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "90689ecd-97d0-4a22-83d7-8f20e25a6083", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T17:55:36.000Z" - }, - "end": { - "$date": "2021-06-28T18:09:51.000Z" - }, - "events": [ - { - "uuid": "712c0086-0a9a-47d2-ac6c-3f802acb9a5b", - "start": { - "$date": "2021-06-28T17:55:36.000Z" - }, - "end": { - "$date": "2021-06-28T18:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "59689b83-1927-41c2-8f8e-930ea279f741", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T18:10:07.000Z" - }, - "end": { - "$date": "2021-06-28T18:11:41.000Z" - }, - "events": [ - { - "uuid": "b7810833-4668-495c-afbd-7c2b2576ec16", - "start": { - "$date": "2021-06-28T18:10:07.000Z" - }, - "end": { - "$date": "2021-06-28T18:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "89363e10-aca0-4232-9b2c-f3a372838d25", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T18:11:52.000Z" - }, - "end": { - "$date": "2021-06-28T18:13:52.000Z" - }, - "events": [ - { - "uuid": "a7d453ea-a1a1-4e06-ad47-32e080b64987", - "start": { - "$date": "2021-06-28T18:11:52.000Z" - }, - "end": { - "$date": "2021-06-28T18:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b6bb53fd-edcf-4819-bf74-48f3ac6913b2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T18:15:16.000Z" - }, - "end": { - "$date": "2021-06-28T19:07:35.000Z" - }, - "events": [ - { - "uuid": "9117ecf8-b570-44b6-a524-4922b7f7a4c2", - "start": { - "$date": "2021-06-28T18:15:16.000Z" - }, - "end": { - "$date": "2021-06-28T19:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7d5ef160-3e02-4965-b8b1-c2cba5060f54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-28T18:23:25.000Z" - }, - "end": { - "$date": "2021-06-28T18:41:11.000Z" - }, - "events": [ - { - "uuid": "080fbc38-e4e3-42ad-9207-4653853983e0", - "start": { - "$date": "2021-06-28T18:23:25.000Z" - }, - "end": { - "$date": "2021-06-28T18:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "18c58c11-49b3-4abb-a3b3-e77f4dd64817", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-28T18:56:34.000Z" - }, - "end": { - "$date": "2021-06-28T20:43:15.000Z" - }, - "events": [ - { - "uuid": "161bf8b2-64b9-493c-80d0-cb9eebf66715", - "start": { - "$date": "2021-06-28T18:56:34.000Z" - }, - "end": { - "$date": "2021-06-28T20:38:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85a84401-76cc-4265-8b02-398fde23db45", - "start": { - "$date": "2021-06-28T20:38:34.000Z" - }, - "end": { - "$date": "2021-06-28T20:40:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a32ba5ab-9ae2-4263-b903-f4ab21f2d932", - "start": { - "$date": "2021-06-28T20:40:34.000Z" - }, - "end": { - "$date": "2021-06-28T20:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a3bce861-0352-4bcc-a220-d6d40dbd92e9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T19:35:45.000Z" - }, - "end": { - "$date": "2021-06-28T19:43:45.000Z" - }, - "events": [ - { - "uuid": "355f75d0-2f16-4959-a416-1591e9f6aefc", - "start": { - "$date": "2021-06-28T19:35:45.000Z" - }, - "end": { - "$date": "2021-06-28T19:43:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "00805b13-8541-4a8a-93cb-08bd41171d7c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-28T20:12:39.000Z" - }, - "end": { - "$date": "2021-06-28T20:24:03.000Z" - }, - "events": [ - { - "uuid": "2ec3089f-7694-43d6-a1d2-9bf6ec00477c", - "start": { - "$date": "2021-06-28T20:12:39.000Z" - }, - "end": { - "$date": "2021-06-28T20:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "db1d471b-e010-40a3-94bc-2606da7982e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-28T20:44:00.000Z" - }, - "end": { - "$date": "2021-06-28T20:59:13.000Z" - }, - "events": [ - { - "uuid": "f1d90ed7-e4d4-45c4-bff8-d60b3d452c55", - "start": { - "$date": "2021-06-28T20:44:00.000Z" - }, - "end": { - "$date": "2021-06-28T20:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "7e4acb2e-4d8b-4fbc-b57a-ab4b97b7f242", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-28T21:00:08.000Z" - }, - "end": { - "$date": "2021-06-28T21:35:20.000Z" - }, - "events": [ - { - "uuid": "649e8387-c12e-4852-845a-f02069c9140b", - "start": { - "$date": "2021-06-28T21:00:08.000Z" - }, - "end": { - "$date": "2021-06-28T21:35:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb514df2-5696-426a-842a-4924e28b802b", - "uuid": "20beb9c0-99ff-4280-a2ad-4344ccb18413", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-28T21:11:51.000Z" - }, - "end": { - "$date": "2021-06-28T21:19:50.000Z" - }, - "events": [ - { - "uuid": "d9f86a67-a26f-40f5-8316-c096df96e94f", - "start": { - "$date": "2021-06-28T21:11:51.000Z" - }, - "end": { - "$date": "2021-06-28T21:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "6586d103-bb89-44d8-bc9f-d4f98f080bfc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-28T22:19:29.000Z" - }, - "end": { - "$date": "2021-06-28T23:07:06.000Z" - }, - "events": [ - { - "uuid": "518707cf-395d-409e-8f59-f94b06a3721c", - "start": { - "$date": "2021-06-28T22:19:29.000Z" - }, - "end": { - "$date": "2021-06-28T23:07:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8697effb-22a5-4c33-8f12-d89e6eae4df1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-29T00:05:54.000Z" - }, - "end": { - "$date": "2021-06-29T01:38:45.000Z" - }, - "events": [ - { - "uuid": "d9d88d48-989f-4a77-bbd3-e20c71fc6c8c", - "start": { - "$date": "2021-06-29T00:05:54.000Z" - }, - "end": { - "$date": "2021-06-29T01:15:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "112bfbd2-f2b1-4c20-8a1a-5e8784b7f95f", - "start": { - "$date": "2021-06-29T01:15:54.000Z" - }, - "end": { - "$date": "2021-06-29T01:16:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7860697-4bd6-4af5-b71a-6c86dc4fb682", - "start": { - "$date": "2021-06-29T01:16:54.000Z" - }, - "end": { - "$date": "2021-06-29T01:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f789071c-a829-43a6-aedd-f67f1be02104", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-29T00:16:58.000Z" - }, - "end": { - "$date": "2021-06-29T00:26:03.000Z" - }, - "events": [ - { - "uuid": "06e45314-768f-450d-94d2-4fd04a4cad32", - "start": { - "$date": "2021-06-29T00:16:58.000Z" - }, - "end": { - "$date": "2021-06-29T00:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d8eb5934-7c2d-4d7d-b7e1-4bc78e4602f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T00:48:05.000Z" - }, - "end": { - "$date": "2021-06-29T00:51:04.000Z" - }, - "events": [ - { - "uuid": "a0828c79-78bf-4d59-93bf-1a4ffcde02b5", - "start": { - "$date": "2021-06-29T00:48:05.000Z" - }, - "end": { - "$date": "2021-06-29T00:51:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cd73bfe7-6bf8-4503-8d94-88096af7913f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-29T00:53:13.000Z" - }, - "end": { - "$date": "2021-06-29T01:17:37.000Z" - }, - "events": [ - { - "uuid": "ad24ce20-7c2d-4547-bc62-d32ab9651ec9", - "start": { - "$date": "2021-06-29T00:53:13.000Z" - }, - "end": { - "$date": "2021-06-29T01:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "3667d40b-e2b6-43df-809d-fcf16301b124", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T01:03:10.000Z" - }, - "end": { - "$date": "2021-06-29T01:06:35.000Z" - }, - "events": [ - { - "uuid": "21c9aa00-a14a-4a3b-a3f6-31d85517a53a", - "start": { - "$date": "2021-06-29T01:03:10.000Z" - }, - "end": { - "$date": "2021-06-29T01:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fdc483dd-ce48-4bba-af04-860e6f68702d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-29T01:58:15.000Z" - }, - "end": { - "$date": "2021-06-29T03:27:08.000Z" - }, - "events": [ - { - "uuid": "dc3b63d1-e972-4d6b-8192-3fc5cca733d2", - "start": { - "$date": "2021-06-29T01:58:15.000Z" - }, - "end": { - "$date": "2021-06-29T03:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fb11f03b-fb6b-4b5d-b794-d91aefcf1eab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T02:25:10.000Z" - }, - "end": { - "$date": "2021-06-29T04:08:34.000Z" - }, - "events": [ - { - "uuid": "623566e4-44f1-4797-a4f8-febb915cad73", - "start": { - "$date": "2021-06-29T02:25:10.000Z" - }, - "end": { - "$date": "2021-06-29T03:02:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ee4f669-760e-44e3-9536-5cf8e901604c", - "start": { - "$date": "2021-06-29T03:02:10.000Z" - }, - "end": { - "$date": "2021-06-29T03:07:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6a7515c4-5f39-46f0-9e43-c5ad916e473c", - "start": { - "$date": "2021-06-29T03:07:10.000Z" - }, - "end": { - "$date": "2021-06-29T03:54:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4f7e71f3-18ec-4eb8-8bd3-97ba67b66af0", - "start": { - "$date": "2021-06-29T03:54:10.000Z" - }, - "end": { - "$date": "2021-06-29T03:55:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b779510a-deba-4c9b-abb1-9b301a1902cb", - "start": { - "$date": "2021-06-29T03:55:10.000Z" - }, - "end": { - "$date": "2021-06-29T04:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94330410-830c-48da-982c-802f2c682400", - "uuid": "f441c535-ec91-4523-8fef-04ac6b138a10", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-29T03:32:17.000Z" - }, - "end": { - "$date": "2021-06-29T04:55:13.000Z" - }, - "events": [ - { - "uuid": "699345a1-6e15-4502-b51f-144cac017002", - "start": { - "$date": "2021-06-29T03:32:17.000Z" - }, - "end": { - "$date": "2021-06-29T04:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94330410-830c-48da-982c-802f2c682400", - "uuid": "4edeaf54-2b95-43f7-8c7f-c8d40147e35a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-29T03:36:08.000Z" - }, - "end": { - "$date": "2021-06-29T04:36:18.000Z" - }, - "events": [ - { - "uuid": "f7bb7b61-7e9d-4891-abc2-47966855b10e", - "start": { - "$date": "2021-06-29T03:36:08.000Z" - }, - "end": { - "$date": "2021-06-29T04:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "8c9d6019-935e-405c-a1cd-e4e98e2974c7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-06-29T03:48:11.000Z" - }, - "end": { - "$date": "2021-06-29T06:44:28.000Z" - }, - "events": [ - { - "uuid": "1e1ae85f-dba0-43b0-b3fb-05568d70c808", - "start": { - "$date": "2021-06-29T03:48:11.000Z" - }, - "end": { - "$date": "2021-06-29T06:44:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "7a42785a-caac-4df0-b495-06424ce463a3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T04:12:14.000Z" - }, - "end": { - "$date": "2021-06-29T06:01:55.000Z" - }, - "events": [ - { - "uuid": "a90306cf-105f-4c6c-8ba6-3a9acb67b1c6", - "start": { - "$date": "2021-06-29T04:12:14.000Z" - }, - "end": { - "$date": "2021-06-29T06:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54893b93-1a5b-4a04-96e1-3f1e796be001", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-29T04:26:50.000Z" - }, - "end": { - "$date": "2021-06-29T04:38:45.000Z" - }, - "events": [ - { - "uuid": "7a4d5d9c-2160-4f34-b4d5-7a2338ce1a1a", - "start": { - "$date": "2021-06-29T04:26:50.000Z" - }, - "end": { - "$date": "2021-06-29T04:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d47f478d-f792-4d4e-900b-45ece79ecb40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-29T04:30:43.000Z" - }, - "end": { - "$date": "2021-06-29T04:32:48.000Z" - }, - "events": [ - { - "uuid": "c1cb5fa3-dbf3-4a18-947c-6fc29ef7205b", - "start": { - "$date": "2021-06-29T04:30:43.000Z" - }, - "end": { - "$date": "2021-06-29T04:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "bdd4f072-bd2e-4d87-b4b4-4d4a0c82ffb9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-29T04:32:14.000Z" - }, - "end": { - "$date": "2021-06-29T06:31:30.000Z" - }, - "events": [ - { - "uuid": "26a7dd2d-d869-49a1-8cfa-acedf004202e", - "start": { - "$date": "2021-06-29T04:32:14.000Z" - }, - "end": { - "$date": "2021-06-29T06:31:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "821a06ac-7b87-41ae-9789-eea3e53af678", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-29T05:00:49.000Z" - }, - "end": { - "$date": "2021-06-29T06:31:31.000Z" - }, - "events": [ - { - "uuid": "52d9b9ce-2378-4a5b-a7c7-b8bc13f81e0d", - "start": { - "$date": "2021-06-29T05:00:49.000Z" - }, - "end": { - "$date": "2021-06-29T06:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3aba3aa-134a-4c36-ae27-8c2cbd526d35", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-29T04:44:06.000Z" - }, - "end": { - "$date": "2021-06-29T05:10:11.000Z" - }, - "events": [ - { - "uuid": "33e75719-256a-48f3-a50a-32d63aefef01", - "start": { - "$date": "2021-06-29T04:44:06.000Z" - }, - "end": { - "$date": "2021-06-29T05:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1b71ec61-68c8-40f0-b605-0e59a2ee11ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-29T04:49:01.000Z" - }, - "end": { - "$date": "2021-06-29T04:52:11.000Z" - }, - "events": [ - { - "uuid": "10f4b018-1bd0-46d1-8ba4-2ffa81cdf788", - "start": { - "$date": "2021-06-29T04:49:01.000Z" - }, - "end": { - "$date": "2021-06-29T04:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "165a5003-f62e-4197-8099-8ff392758168", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-29T05:02:28.000Z" - }, - "end": { - "$date": "2021-06-29T05:37:26.000Z" - }, - "events": [ - { - "uuid": "46baab0c-23e9-4fa9-bf82-68a5f84b89c6", - "start": { - "$date": "2021-06-29T05:02:28.000Z" - }, - "end": { - "$date": "2021-06-29T05:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e015de50-67c3-454d-87ee-5fafd1529543", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-29T05:15:16.000Z" - }, - "end": { - "$date": "2021-06-29T05:37:24.000Z" - }, - "events": [ - { - "uuid": "404362e2-ef36-4d0c-8fe5-9c1ba5df7075", - "start": { - "$date": "2021-06-29T05:15:16.000Z" - }, - "end": { - "$date": "2021-06-29T05:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b12cc44c-3150-437e-a19f-b0bf5dc3daed", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-29T05:42:17.000Z" - }, - "end": { - "$date": "2021-06-29T06:16:07.000Z" - }, - "events": [ - { - "uuid": "c3a7572c-e3d0-4ece-8dda-57933b33572f", - "start": { - "$date": "2021-06-29T05:42:17.000Z" - }, - "end": { - "$date": "2021-06-29T06:16:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "7f1fbd8c-a86f-43d5-ae81-2c8b916ca321", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-29T06:55:00.000Z" - }, - "end": { - "$date": "2021-06-29T08:14:21.000Z" - }, - "events": [ - { - "uuid": "59d85893-7fd0-46f9-835c-e9c019f623c0", - "start": { - "$date": "2021-06-29T06:55:00.000Z" - }, - "end": { - "$date": "2021-06-29T08:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c8e99d73-fc8b-4582-b3bc-a6c4898ca983", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-29T16:24:43.000Z" - }, - "end": { - "$date": "2021-06-29T16:34:43.000Z" - }, - "events": [ - { - "uuid": "0110946a-cdf9-422b-b446-481adad1ad24", - "start": { - "$date": "2021-06-29T16:24:43.000Z" - }, - "end": { - "$date": "2021-06-29T16:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "7acc2e0e-571b-4121-bd58-549c419b7666", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-29T18:45:41.000Z" - }, - "end": { - "$date": "2021-06-29T18:46:05.000Z" - }, - "events": [ - { - "uuid": "b0f6191f-cf1b-4e56-9098-a9321ed0f57a", - "start": { - "$date": "2021-06-29T18:45:41.000Z" - }, - "end": { - "$date": "2021-06-29T18:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c272891e-e336-4175-a3ea-d909201db439", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-29T16:55:40.000Z" - }, - "end": { - "$date": "2021-06-29T17:41:25.000Z" - }, - "events": [ - { - "uuid": "5f6b3d7f-1866-41fb-ac87-b63393e59ce1", - "start": { - "$date": "2021-06-29T16:55:40.000Z" - }, - "end": { - "$date": "2021-06-29T17:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "515390eb-9115-4439-a1ab-62eed39850cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-29T17:07:12.000Z" - }, - "end": { - "$date": "2021-06-29T19:12:35.000Z" - }, - "events": [ - { - "uuid": "60ae0955-2fd7-4b34-8d07-7ed40ecb94ea", - "start": { - "$date": "2021-06-29T17:07:12.000Z" - }, - "end": { - "$date": "2021-06-29T19:12:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ebbbff35-cdbb-4be7-844b-24390183238f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-29T18:13:17.000Z" - }, - "end": { - "$date": "2021-06-29T19:16:11.000Z" - }, - "events": [ - { - "uuid": "db9d527e-d593-4050-87c6-8f3425bf5d3c", - "start": { - "$date": "2021-06-29T18:13:17.000Z" - }, - "end": { - "$date": "2021-06-29T19:16:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cbdd20bf-49fa-4a5e-b1e0-72c69ae31434", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-29T18:20:49.000Z" - }, - "end": { - "$date": "2021-06-29T19:03:05.000Z" - }, - "events": [ - { - "uuid": "0154a8b7-aaeb-4e7b-99cf-d31fbe0ec3cc", - "start": { - "$date": "2021-06-29T18:20:49.000Z" - }, - "end": { - "$date": "2021-06-29T19:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "44f5a996-973f-433e-8eb7-6f364242cae4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-29T19:45:52.000Z" - }, - "end": { - "$date": "2021-06-29T20:36:15.000Z" - }, - "events": [ - { - "uuid": "b5bf5f53-8328-4591-95b3-81ed82776e6b", - "start": { - "$date": "2021-06-29T19:45:52.000Z" - }, - "end": { - "$date": "2021-06-29T20:36:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8a0822b0-a4f4-4e57-b6bf-efdda5c8530c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-29T19:53:15.000Z" - }, - "end": { - "$date": "2021-06-29T19:56:15.000Z" - }, - "events": [ - { - "uuid": "4748aba5-a5df-4eb4-aa9b-2a946c696376", - "start": { - "$date": "2021-06-29T19:53:15.000Z" - }, - "end": { - "$date": "2021-06-29T19:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2af56a70-0d59-456b-97a0-617011ae25e2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-06-29T19:56:46.000Z" - }, - "end": { - "$date": "2021-06-29T20:24:15.000Z" - }, - "events": [ - { - "uuid": "643bff93-21df-4e17-87e2-333bd02046e3", - "start": { - "$date": "2021-06-29T19:56:46.000Z" - }, - "end": { - "$date": "2021-06-29T20:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24e48245-d31b-4bff-8099-71fbc4c71ab2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-29T20:00:12.000Z" - }, - "end": { - "$date": "2021-06-29T20:37:18.000Z" - }, - "events": [ - { - "uuid": "1bf6b997-298c-4f29-8773-cc1b9b0bab14", - "start": { - "$date": "2021-06-29T20:00:12.000Z" - }, - "end": { - "$date": "2021-06-29T20:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "67db10e7-bd48-41d0-b986-a0d15784ecf0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-29T20:01:09.000Z" - }, - "end": { - "$date": "2021-06-29T20:03:38.000Z" - }, - "events": [ - { - "uuid": "733333b6-c76a-457e-a4b4-63c8cc1ff2a8", - "start": { - "$date": "2021-06-29T20:01:09.000Z" - }, - "end": { - "$date": "2021-06-29T20:03:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae69f2df-e937-41b5-bf87-66be2e5293c7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-29T20:03:59.000Z" - }, - "end": { - "$date": "2021-06-29T20:39:00.000Z" - }, - "events": [ - { - "uuid": "5c24d153-c7fb-4c84-b1db-e6be8508f5ea", - "start": { - "$date": "2021-06-29T20:03:59.000Z" - }, - "end": { - "$date": "2021-06-29T20:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9c638286-a6cf-4542-8783-617ce37f6a9a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T20:37:10.000Z" - }, - "end": { - "$date": "2021-06-29T20:48:30.000Z" - }, - "events": [ - { - "uuid": "aaf56ae8-e787-4d89-a0c3-59db7e53bfeb", - "start": { - "$date": "2021-06-29T20:37:10.000Z" - }, - "end": { - "$date": "2021-06-29T20:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e8c46e02-03b3-4c64-a8c1-bcb730bcbafa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-29T20:41:29.000Z" - }, - "end": { - "$date": "2021-06-29T20:51:09.000Z" - }, - "events": [ - { - "uuid": "f3bdad85-42a0-419b-96d2-9380f7eca7de", - "start": { - "$date": "2021-06-29T20:41:29.000Z" - }, - "end": { - "$date": "2021-06-29T20:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "3f923013-d4cb-4a6c-b45f-a74727bfcb01", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T20:54:13.000Z" - }, - "end": { - "$date": "2021-06-29T23:40:13.000Z" - }, - "events": [ - { - "uuid": "7498a358-2c64-4148-b109-7c9eb7462abf", - "start": { - "$date": "2021-06-29T20:54:13.000Z" - }, - "end": { - "$date": "2021-06-29T23:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fdde2584-e78d-4c0c-be47-e3a16ea9a653", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-29T22:31:41.000Z" - }, - "end": { - "$date": "2021-06-29T22:33:42.000Z" - }, - "events": [ - { - "uuid": "7fb22c66-5c0b-4ad4-b848-4587dd42ed2f", - "start": { - "$date": "2021-06-29T22:31:41.000Z" - }, - "end": { - "$date": "2021-06-29T22:33:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "4d68c2d5-afdb-43b4-90ec-0b9a20c651ab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-29T22:54:59.000Z" - }, - "end": { - "$date": "2021-06-30T01:47:46.000Z" - }, - "events": [ - { - "uuid": "56f1a3bb-6d79-45dd-8742-7e3241584b58", - "start": { - "$date": "2021-06-29T22:54:59.000Z" - }, - "end": { - "$date": "2021-06-30T01:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "8ce01159-12ec-411c-b222-87186d1e8416", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-29T22:34:57.000Z" - }, - "end": { - "$date": "2021-06-29T22:53:27.000Z" - }, - "events": [ - { - "uuid": "d35bc660-a605-4d93-aee3-731a80f85b2c", - "start": { - "$date": "2021-06-29T22:34:57.000Z" - }, - "end": { - "$date": "2021-06-29T22:53:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "96074d34-73df-441c-bdba-2d9d936c701c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-06-29T22:42:57.000Z" - }, - "end": { - "$date": "2021-06-30T01:24:54.000Z" - }, - "events": [ - { - "uuid": "82523091-9088-4277-959b-680be1a2eef4", - "start": { - "$date": "2021-06-29T22:42:57.000Z" - }, - "end": { - "$date": "2021-06-30T01:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "077042e3-8540-40ad-80ab-5e87a6310577", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-29T23:41:05.000Z" - }, - "end": { - "$date": "2021-06-29T23:42:21.000Z" - }, - "events": [ - { - "uuid": "4f3eb5b4-a331-4a08-ab74-d51a2d2ab1d5", - "start": { - "$date": "2021-06-29T23:41:05.000Z" - }, - "end": { - "$date": "2021-06-29T23:42:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5f1dc05e-c56e-4d7e-b119-b418f28559c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T00:08:43.000Z" - }, - "end": { - "$date": "2021-06-30T00:24:44.000Z" - }, - "events": [ - { - "uuid": "0f7d72cf-c66a-43ea-a50c-a8a45ff8ad85", - "start": { - "$date": "2021-06-30T00:08:43.000Z" - }, - "end": { - "$date": "2021-06-30T00:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c0e0992b-6fc2-4da4-a636-6ce0c341d64f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T00:37:01.000Z" - }, - "end": { - "$date": "2021-06-30T01:17:12.000Z" - }, - "events": [ - { - "uuid": "e758354f-2bd3-4dfb-a6cd-393f1dff59c7", - "start": { - "$date": "2021-06-30T00:37:01.000Z" - }, - "end": { - "$date": "2021-06-30T01:17:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "372727c2-1f30-4426-b81e-c7a5ddee6334", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-30T01:49:59.000Z" - }, - "end": { - "$date": "2021-06-30T03:18:51.000Z" - }, - "events": [ - { - "uuid": "dce14845-ac14-4e4d-8ce7-0237218fc8cb", - "start": { - "$date": "2021-06-30T01:49:59.000Z" - }, - "end": { - "$date": "2021-06-30T03:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "bb579e05-a80b-4139-bc5e-38139f1a91af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-06-30T02:03:01.000Z" - }, - "end": { - "$date": "2021-06-30T03:11:55.000Z" - }, - "events": [ - { - "uuid": "0bb4b8ef-c681-45f8-9283-8cc395004009", - "start": { - "$date": "2021-06-30T02:03:01.000Z" - }, - "end": { - "$date": "2021-06-30T03:11:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "fdc3e929-ba61-401f-91ca-3e4602a585d1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-30T02:02:37.000Z" - }, - "end": { - "$date": "2021-06-30T03:58:52.000Z" - }, - "events": [ - { - "uuid": "075b3a17-b502-4d53-a283-8f8eab5b66b7", - "start": { - "$date": "2021-06-30T02:02:37.000Z" - }, - "end": { - "$date": "2021-06-30T02:15:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e41c3522-b791-45a2-803d-3305e18b880c", - "start": { - "$date": "2021-06-30T02:15:37.000Z" - }, - "end": { - "$date": "2021-06-30T03:00:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04d7f89c-c3b4-4939-8410-610ea45c3f35", - "start": { - "$date": "2021-06-30T03:00:37.000Z" - }, - "end": { - "$date": "2021-06-30T03:07:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3dd0c10c-0114-4709-bed7-860d3e15c8dc", - "start": { - "$date": "2021-06-30T03:07:37.000Z" - }, - "end": { - "$date": "2021-06-30T03:28:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73f132b5-7f5e-42cc-bd8e-e721b253e4c7", - "start": { - "$date": "2021-06-30T03:28:37.000Z" - }, - "end": { - "$date": "2021-06-30T03:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "39e62d71-6b7e-4107-9d0e-387c6abd383a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-06-30T02:11:58.000Z" - }, - "end": { - "$date": "2021-06-30T05:40:17.000Z" - }, - "events": [ - { - "uuid": "d7d55895-a63e-40f0-9df9-bab7ab301e43", - "start": { - "$date": "2021-06-30T02:11:58.000Z" - }, - "end": { - "$date": "2021-06-30T05:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "bcc780c3-0f12-44aa-b65f-6465cdd20a39", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-30T02:13:00.000Z" - }, - "end": { - "$date": "2021-06-30T05:40:13.000Z" - }, - "events": [ - { - "uuid": "1f59ebdb-d0ce-4351-8a95-4428a44a97b4", - "start": { - "$date": "2021-06-30T02:13:00.000Z" - }, - "end": { - "$date": "2021-06-30T05:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bebc0e3b-8dda-4845-b977-1300e5d13145", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-30T02:25:26.000Z" - }, - "end": { - "$date": "2021-06-30T02:47:07.000Z" - }, - "events": [ - { - "uuid": "f7a395b4-14e7-4cdb-b540-5c9f5295d080", - "start": { - "$date": "2021-06-30T02:25:26.000Z" - }, - "end": { - "$date": "2021-06-30T02:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "666875ec-60ce-45dd-aec6-269031dbfcf2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-30T02:54:43.000Z" - }, - "end": { - "$date": "2021-06-30T03:41:34.000Z" - }, - "events": [ - { - "uuid": "76e1eef0-b2b1-4cb5-a86c-5407aae5762e", - "start": { - "$date": "2021-06-30T02:54:43.000Z" - }, - "end": { - "$date": "2021-06-30T03:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "2f2f4cc1-fb81-4558-bc43-b447bd7804b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T02:59:52.000Z" - }, - "end": { - "$date": "2021-06-30T06:09:04.000Z" - }, - "events": [ - { - "uuid": "715e40ba-b398-4f96-bbfc-b561b274e487", - "start": { - "$date": "2021-06-30T02:59:52.000Z" - }, - "end": { - "$date": "2021-06-30T06:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "375280f5-1ab3-4693-a1a0-09f0ae4e87ce", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-30T03:55:41.000Z" - }, - "end": { - "$date": "2021-06-30T04:15:55.000Z" - }, - "events": [ - { - "uuid": "0d7c87af-7a2c-4916-96f4-614c972b9fd2", - "start": { - "$date": "2021-06-30T03:55:41.000Z" - }, - "end": { - "$date": "2021-06-30T04:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "3c5f8b9f-3d37-4fe0-bd10-154564d54cd0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-06-30T04:00:47.000Z" - }, - "end": { - "$date": "2021-06-30T05:54:09.000Z" - }, - "events": [ - { - "uuid": "3099a2ec-7dd5-4c07-a12d-a73a22c87f65", - "start": { - "$date": "2021-06-30T04:00:47.000Z" - }, - "end": { - "$date": "2021-06-30T05:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "560ed1b3-28b9-43ee-8c18-701dde9e8ada", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-30T05:02:00.000Z" - }, - "end": { - "$date": "2021-06-30T05:22:41.000Z" - }, - "events": [ - { - "uuid": "6b7a73a1-9ac0-4567-937d-ac1b2a55842b", - "start": { - "$date": "2021-06-30T05:02:00.000Z" - }, - "end": { - "$date": "2021-06-30T05:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9979e186-d4a4-429f-8ae2-6d078e5eaa7a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-30T05:39:36.000Z" - }, - "end": { - "$date": "2021-06-30T06:02:11.000Z" - }, - "events": [ - { - "uuid": "829ea219-d358-4c5b-9c04-63892f43c59b", - "start": { - "$date": "2021-06-30T05:39:36.000Z" - }, - "end": { - "$date": "2021-06-30T06:02:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5b37977-9040-4552-87fb-c417721a78bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-06-30T06:05:36.000Z" - }, - "end": { - "$date": "2021-06-30T06:33:17.000Z" - }, - "events": [ - { - "uuid": "fd9a8270-6700-4347-81ba-e29517b873de", - "start": { - "$date": "2021-06-30T06:05:36.000Z" - }, - "end": { - "$date": "2021-06-30T06:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7d761301-c431-41a4-a0ed-145641e3a570", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T06:13:13.000Z" - }, - "end": { - "$date": "2021-06-30T06:27:13.000Z" - }, - "events": [ - { - "uuid": "1ec4353a-ae13-47ab-aea4-5051d879b617", - "start": { - "$date": "2021-06-30T06:13:13.000Z" - }, - "end": { - "$date": "2021-06-30T06:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "41ccc47f-54b1-4e79-a649-c20057844186", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T06:37:48.000Z" - }, - "end": { - "$date": "2021-06-30T08:10:43.000Z" - }, - "events": [ - { - "uuid": "751269b7-3155-4205-85e0-4d689b166666", - "start": { - "$date": "2021-06-30T06:37:48.000Z" - }, - "end": { - "$date": "2021-06-30T08:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2b9c895a-ca53-4fc6-b2a1-3999f7488eb0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-30T16:35:47.000Z" - }, - "end": { - "$date": "2021-06-30T17:17:38.000Z" - }, - "events": [ - { - "uuid": "bf023eac-d535-43eb-ab29-beebebdc230a", - "start": { - "$date": "2021-06-30T16:35:47.000Z" - }, - "end": { - "$date": "2021-06-30T17:17:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c29572a1-66cd-4915-9327-7f3b7e0c9732", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-30T16:36:31.000Z" - }, - "end": { - "$date": "2021-06-30T17:57:11.000Z" - }, - "events": [ - { - "uuid": "2a75b13c-6c85-471d-b65e-36e4121fc2f3", - "start": { - "$date": "2021-06-30T16:36:31.000Z" - }, - "end": { - "$date": "2021-06-30T17:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "119ccca6-0fc1-46dd-a7f5-d709364ba8ff", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-06-30T17:34:07.000Z" - }, - "end": { - "$date": "2021-06-30T18:04:01.000Z" - }, - "events": [ - { - "uuid": "3f556386-b120-420d-ad82-970a417aa665", - "start": { - "$date": "2021-06-30T17:34:07.000Z" - }, - "end": { - "$date": "2021-06-30T18:04:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4d109a19-b677-486b-926e-8677553505cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T19:25:12.000Z" - }, - "end": { - "$date": "2021-06-30T20:27:11.000Z" - }, - "events": [ - { - "uuid": "72ce05e6-8927-4943-9caf-b855d922705b", - "start": { - "$date": "2021-06-30T19:25:12.000Z" - }, - "end": { - "$date": "2021-06-30T20:01:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46e77ba1-a53a-4b30-964a-532cc26753cf", - "start": { - "$date": "2021-06-30T20:01:12.000Z" - }, - "end": { - "$date": "2021-06-30T20:11:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a79f57da-74e3-484a-9d12-04bbf62b0be6", - "start": { - "$date": "2021-06-30T20:11:12.000Z" - }, - "end": { - "$date": "2021-06-30T20:27:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b3ba79a7-2378-4fdb-acc5-7d051d20dc91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-30T20:20:32.000Z" - }, - "end": { - "$date": "2021-06-30T20:28:57.000Z" - }, - "events": [ - { - "uuid": "1874d619-7189-4b8c-b5d4-2e0213bdcd17", - "start": { - "$date": "2021-06-30T20:20:32.000Z" - }, - "end": { - "$date": "2021-06-30T20:28:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "acb4cc07-566c-41ba-bbe6-88da1632b339", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T20:27:31.000Z" - }, - "end": { - "$date": "2021-06-30T20:37:22.000Z" - }, - "events": [ - { - "uuid": "22d9a332-1c76-4f33-9b6c-6537e3db1124", - "start": { - "$date": "2021-06-30T20:27:31.000Z" - }, - "end": { - "$date": "2021-06-30T20:37:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7cf39725-3dd0-4a9f-8f8e-c2a9cc6e9c79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-06-30T20:42:44.000Z" - }, - "end": { - "$date": "2021-07-01T02:17:59.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-30T20:42:44.000Z" - }, - "end": { - "$date": "2021-07-01T02:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cad80689-f88c-426a-bb81-ff59fc70350a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-06-30T21:58:18.000Z" - }, - "end": { - "$date": "2021-07-01T03:28:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-30T21:58:18.000Z" - }, - "end": { - "$date": "2021-07-01T03:28:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f6611a21-36ad-4369-aa44-e8c55309ecca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-30T22:09:08.000Z" - }, - "end": { - "$date": "2021-06-30T23:08:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-06-30T22:09:08.000Z" - }, - "end": { - "$date": "2021-06-30T23:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "35a40488-390a-4209-8768-e77a90fcba46", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-06-30T23:09:11.000Z" - }, - "end": { - "$date": "2021-07-01T00:05:27.000Z" - }, - "events": [ - { - "uuid": "65cdb563-0f44-4ef5-8831-198efc0a0acf", - "start": { - "$date": "2021-06-30T23:09:11.000Z" - }, - "end": { - "$date": "2021-06-30T23:37:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f3a90c8-bda3-42fc-8d40-dfe2f6b801e0", - "start": { - "$date": "2021-06-30T23:37:11.000Z" - }, - "end": { - "$date": "2021-07-01T00:05:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "73afe8b5-6929-4a13-a401-7d8c35a9ab53", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-30T23:11:38.000Z" - }, - "end": { - "$date": "2021-06-30T23:28:10.000Z" - }, - "events": [ - { - "uuid": "56a66a7a-13ae-493c-9e47-7e40b5885cfe", - "start": { - "$date": "2021-06-30T23:11:38.000Z" - }, - "end": { - "$date": "2021-06-30T23:28:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "553389fb-8472-4dfc-a503-874696a98eb1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-06-30T23:45:56.000Z" - }, - "end": { - "$date": "2021-07-01T02:05:27.000Z" - }, - "events": [ - { - "uuid": "c8d4e6c7-88de-459a-8761-bcce6eb56f71", - "start": { - "$date": "2021-06-30T23:45:56.000Z" - }, - "end": { - "$date": "2021-07-01T02:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e770151c-855e-4125-9995-64e6dad08204", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-01T02:18:49.000Z" - }, - "end": { - "$date": "2021-07-01T07:48:32.000Z" - }, - "events": [ - { - "uuid": "8f472466-64ab-440e-9452-e6bec0883db2", - "start": { - "$date": "2021-07-01T02:18:49.000Z" - }, - "end": { - "$date": "2021-07-01T04:07:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41430ce8-f8c3-401e-8f96-d292faf18bfe", - "start": { - "$date": "2021-07-01T04:07:49.000Z" - }, - "end": { - "$date": "2021-07-01T04:15:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3446ca2f-a1c9-42ac-835f-63b2c5f8feee", - "start": { - "$date": "2021-07-01T04:15:49.000Z" - }, - "end": { - "$date": "2021-07-01T07:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "3e6ac81d-2045-48a6-b606-e37a88a4db81", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-01T04:24:45.000Z" - }, - "end": { - "$date": "2021-07-01T06:00:17.000Z" - }, - "events": [ - { - "uuid": "64f65899-6e80-42ca-8298-c27545d6b2e1", - "start": { - "$date": "2021-07-01T04:24:45.000Z" - }, - "end": { - "$date": "2021-07-01T06:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "a91c14dd-b93c-425d-872d-f507e5325312", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-01T04:24:50.000Z" - }, - "end": { - "$date": "2021-07-01T06:00:08.000Z" - }, - "events": [ - { - "uuid": "6ef219c6-7770-4ce0-b7f6-f2e87b3803e1", - "start": { - "$date": "2021-07-01T04:24:50.000Z" - }, - "end": { - "$date": "2021-07-01T06:00:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "abeddda7-c389-418d-8abc-03dd5478480a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-01T05:10:58.000Z" - }, - "end": { - "$date": "2021-07-01T06:21:15.000Z" - }, - "events": [ - { - "uuid": "1b9adecf-9093-41e5-b263-865f198528e6", - "start": { - "$date": "2021-07-01T05:10:58.000Z" - }, - "end": { - "$date": "2021-07-01T06:21:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a6c716ba-28db-487d-8dc0-157ccf5f7f8a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-01T12:39:37.000Z" - }, - "end": { - "$date": "2021-07-01T13:58:33.000Z" - }, - "events": [ - { - "uuid": "7b4cfb4e-f9d9-4a0e-bf5c-7ef6a05dbdeb", - "start": { - "$date": "2021-07-01T12:39:37.000Z" - }, - "end": { - "$date": "2021-07-01T13:25:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f636b63a-249f-463c-a05b-8bf0fd50eb20", - "start": { - "$date": "2021-07-01T13:25:37.000Z" - }, - "end": { - "$date": "2021-07-01T13:37:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0576bd41-3911-4389-b2f5-027ca7b8fd6d", - "start": { - "$date": "2021-07-01T13:37:37.000Z" - }, - "end": { - "$date": "2021-07-01T13:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fa5bc735-bc0a-4493-a2bf-5a33cdb11956", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-01T15:19:17.000Z" - }, - "end": { - "$date": "2021-07-01T15:54:19.000Z" - }, - "events": [ - { - "uuid": "6c2d137e-39d2-4ef7-80d6-607d781a1ade", - "start": { - "$date": "2021-07-01T15:19:17.000Z" - }, - "end": { - "$date": "2021-07-01T15:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1b17824c-034c-48ad-bd3a-03229f460450", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-01T15:54:59.000Z" - }, - "end": { - "$date": "2021-07-01T23:22:07.000Z" - }, - "events": [ - { - "uuid": "6ff0f685-7065-4ef9-949b-0269964ba91e", - "start": { - "$date": "2021-07-01T15:54:59.000Z" - }, - "end": { - "$date": "2021-07-01T16:05:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d716c4c2-1334-45f9-bcf1-77a91d45a112", - "start": { - "$date": "2021-07-01T16:05:59.000Z" - }, - "end": { - "$date": "2021-07-01T16:29:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7329a1e6-05b1-40c0-8853-787b7ee5e6cf", - "start": { - "$date": "2021-07-01T16:29:59.000Z" - }, - "end": { - "$date": "2021-07-01T22:05:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dca840ac-f32c-43d8-b41f-57c0caac1f2b", - "start": { - "$date": "2021-07-01T22:05:59.000Z" - }, - "end": { - "$date": "2021-07-01T22:29:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea6c8311-954c-480d-b206-3f47f275699e", - "start": { - "$date": "2021-07-01T22:29:59.000Z" - }, - "end": { - "$date": "2021-07-01T22:41:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9f4202d4-6527-4596-ad4e-086073b3288c", - "start": { - "$date": "2021-07-01T22:41:59.000Z" - }, - "end": { - "$date": "2021-07-01T23:22:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "9689b235-c769-4229-a3e8-51b364b98a27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-01T17:15:44.000Z" - }, - "end": { - "$date": "2021-07-01T17:43:25.000Z" - }, - "events": [ - { - "uuid": "0480a44a-8b84-423a-942a-d4ab98ba69fc", - "start": { - "$date": "2021-07-01T17:15:44.000Z" - }, - "end": { - "$date": "2021-07-01T17:43:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9c15fe8-776b-4ac0-b167-3cba13c976be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-01T17:40:18.000Z" - }, - "end": { - "$date": "2021-07-01T19:29:39.000Z" - }, - "events": [ - { - "uuid": "df029a00-e105-4334-9732-2b96dc32adb2", - "start": { - "$date": "2021-07-01T17:40:18.000Z" - }, - "end": { - "$date": "2021-07-01T19:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9fe41454-f646-4cb2-a8e5-3e03bec151ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-01T17:41:16.000Z" - }, - "end": { - "$date": "2021-07-01T17:42:42.000Z" - }, - "events": [ - { - "uuid": "fb5cf111-6a29-4174-bf92-af0546353407", - "start": { - "$date": "2021-07-01T17:41:16.000Z" - }, - "end": { - "$date": "2021-07-01T17:42:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b7119c95-a4ad-439c-9944-8b274931b082", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-01T17:43:02.000Z" - }, - "end": { - "$date": "2021-07-01T17:45:33.000Z" - }, - "events": [ - { - "uuid": "575e3776-e402-4eb4-8fc0-7d2d48a596e5", - "start": { - "$date": "2021-07-01T17:43:02.000Z" - }, - "end": { - "$date": "2021-07-01T17:45:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "aead911a-6888-433f-ad7c-d401c291a933", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-01T17:46:13.000Z" - }, - "end": { - "$date": "2021-07-01T18:40:23.000Z" - }, - "events": [ - { - "uuid": "d003be57-1cbe-48a6-bae2-7e0560feb9a9", - "start": { - "$date": "2021-07-01T17:46:13.000Z" - }, - "end": { - "$date": "2021-07-01T18:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8384b740-d69a-473e-813b-1ea3b92e2b3d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-01T17:47:10.000Z" - }, - "end": { - "$date": "2021-07-01T18:57:50.000Z" - }, - "events": [ - { - "uuid": "4dd5917c-e903-40de-9c77-2a65fb0fe119", - "start": { - "$date": "2021-07-01T17:47:10.000Z" - }, - "end": { - "$date": "2021-07-01T18:57:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e822a465-95cd-416e-b509-cc30315e5a48", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-01T17:48:05.000Z" - }, - "end": { - "$date": "2021-07-01T18:49:12.000Z" - }, - "events": [ - { - "uuid": "edf66737-a538-451b-aa18-7c655e16ebf9", - "start": { - "$date": "2021-07-01T17:48:05.000Z" - }, - "end": { - "$date": "2021-07-01T18:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "92547117-1bd0-42d1-bea5-89956ba26665", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-01T18:40:24.000Z" - }, - "end": { - "$date": "2021-07-01T19:39:53.000Z" - }, - "events": [ - { - "uuid": "e3fa0b10-0005-411c-9229-3d0c18f61142", - "start": { - "$date": "2021-07-01T18:40:24.000Z" - }, - "end": { - "$date": "2021-07-01T19:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "c040ef9e-20d2-4427-a9fb-ecfaafb27748", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-01T21:17:07.000Z" - }, - "end": { - "$date": "2021-07-01T21:17:32.000Z" - }, - "events": [ - { - "uuid": "c3486dbe-3a4e-4e97-8501-b1188ae12cff", - "start": { - "$date": "2021-07-01T21:17:07.000Z" - }, - "end": { - "$date": "2021-07-01T21:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "904a5776-37a6-4729-8d6c-a11caa8ffacd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-02T01:38:55.000Z" - }, - "end": { - "$date": "2021-07-02T01:38:59.000Z" - }, - "events": [ - { - "uuid": "1cb73f5f-767e-444c-b12b-e8745dff258a", - "start": { - "$date": "2021-07-02T01:38:55.000Z" - }, - "end": { - "$date": "2021-07-02T01:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3f147270-80dd-4d5d-a393-529d75721012", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-01T22:48:34.000Z" - }, - "end": { - "$date": "2021-07-02T02:23:42.000Z" - }, - "events": [ - { - "uuid": "d5fb7bd0-d340-43b1-a09b-7cb31b45c41b", - "start": { - "$date": "2021-07-01T22:48:34.000Z" - }, - "end": { - "$date": "2021-07-02T01:43:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "934f521b-3779-42c6-9c52-1ef25c661f3e", - "start": { - "$date": "2021-07-02T01:43:34.000Z" - }, - "end": { - "$date": "2021-07-02T01:44:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5f8606b-a591-40c9-baed-638336549f9c", - "start": { - "$date": "2021-07-02T01:44:34.000Z" - }, - "end": { - "$date": "2021-07-02T02:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f7a31440-2ee2-413c-b3d9-46798b107406", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-01T22:56:35.000Z" - }, - "end": { - "$date": "2021-07-02T01:22:09.000Z" - }, - "events": [ - { - "uuid": "34015ea3-a762-45cf-a25d-9936afccbcaa", - "start": { - "$date": "2021-07-01T22:56:35.000Z" - }, - "end": { - "$date": "2021-07-02T01:22:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "18036f70-da55-460e-a8fe-b5b76800d3d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-02T03:42:44.000Z" - }, - "end": { - "$date": "2021-07-02T09:09:34.000Z" - }, - "events": [ - { - "uuid": "7335e5fa-388d-4e49-9ca8-63cea9f78bea", - "start": { - "$date": "2021-07-02T03:42:44.000Z" - }, - "end": { - "$date": "2021-07-02T09:09:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fdae996e-c7cb-4153-b1fe-b7a891eabb88", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-02T03:53:47.000Z" - }, - "end": { - "$date": "2021-07-02T05:15:52.000Z" - }, - "events": [ - { - "uuid": "fd551371-84d7-4696-a3fa-925b6f2ce831", - "start": { - "$date": "2021-07-02T03:53:47.000Z" - }, - "end": { - "$date": "2021-07-02T05:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "550aa5b0-8537-4b38-97ea-5ad3df16cb6c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-02T03:54:10.000Z" - }, - "end": { - "$date": "2021-07-02T05:15:42.000Z" - }, - "events": [ - { - "uuid": "80096bad-d0c0-4378-a2e2-daef8525bbbd", - "start": { - "$date": "2021-07-02T03:54:10.000Z" - }, - "end": { - "$date": "2021-07-02T05:15:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "66485119-6258-49ee-b5ba-e672e251c1d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-02T03:57:14.000Z" - }, - "end": { - "$date": "2021-07-02T04:59:25.000Z" - }, - "events": [ - { - "uuid": "19dbfe43-0e5b-4cc8-a4ee-4b2ec487cc25", - "start": { - "$date": "2021-07-02T03:57:14.000Z" - }, - "end": { - "$date": "2021-07-02T04:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5298dd4f-82c3-4b87-a04d-e35d6e5af18f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-02T03:58:06.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:23.000Z" - }, - "events": [ - { - "uuid": "1dbaf8c7-8a6d-400b-9e49-c7583706a390", - "start": { - "$date": "2021-07-02T03:58:06.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a1fbfd7b-3973-4adf-9e97-f329e291378e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-02T03:58:42.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:15.000Z" - }, - "events": [ - { - "uuid": "8d5fa65f-0b02-49a3-a5d0-fbf3c3ebb72d", - "start": { - "$date": "2021-07-02T03:58:42.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "78f563a9-2cb1-4ab1-8afa-c40c99727668", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-02T04:02:12.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:26.000Z" - }, - "events": [ - { - "uuid": "d184840c-c9ea-4a73-9b65-db0c5d78c8ec", - "start": { - "$date": "2021-07-02T04:02:12.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d12d0ca4-ffa0-43a2-9f31-90cc9eb6f68f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-02T04:06:30.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:16.000Z" - }, - "events": [ - { - "uuid": "2e7130de-0f89-4d8e-9946-cb65c04e7d76", - "start": { - "$date": "2021-07-02T04:06:30.000Z" - }, - "end": { - "$date": "2021-07-02T05:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "3b696150-8247-4c01-b09f-0e5a5f6829d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-02T05:10:36.000Z" - }, - "end": { - "$date": "2021-07-02T06:08:07.000Z" - }, - "events": [ - { - "uuid": "4465ff8f-3084-4024-b28d-eca6bbfb9b7a", - "start": { - "$date": "2021-07-02T05:10:36.000Z" - }, - "end": { - "$date": "2021-07-02T06:08:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "04d1976c-9738-4662-b6bc-d50998b73d24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-02T09:09:49.000Z" - }, - "end": { - "$date": "2021-07-02T10:21:46.000Z" - }, - "events": [ - { - "uuid": "c8e91199-2ded-460f-98b5-d956c139579b", - "start": { - "$date": "2021-07-02T09:09:49.000Z" - }, - "end": { - "$date": "2021-07-02T10:21:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "f83d68cb-d548-4065-b984-02e3b974713e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-02T17:58:50.000Z" - }, - "end": { - "$date": "2021-07-02T17:58:53.000Z" - }, - "events": [ - { - "uuid": "93030783-24fc-4ed8-97cc-cfc4ddf62038", - "start": { - "$date": "2021-07-02T17:58:50.000Z" - }, - "end": { - "$date": "2021-07-02T17:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5dbd37db-2244-4859-a921-ce80842f1687", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-02T17:00:15.000Z" - }, - "end": { - "$date": "2021-07-02T17:43:06.000Z" - }, - "events": [ - { - "uuid": "1f1b3000-987b-4ab8-8b49-6128db0efaae", - "start": { - "$date": "2021-07-02T17:00:15.000Z" - }, - "end": { - "$date": "2021-07-02T17:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1e45dc49-0fc5-4d8e-922c-97a09b51b527", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T17:37:25.000Z" - }, - "end": { - "$date": "2021-07-02T18:29:18.000Z" - }, - "events": [ - { - "uuid": "fb0c996f-dcd2-4c7c-9dd2-e337ade2338b", - "start": { - "$date": "2021-07-02T17:37:25.000Z" - }, - "end": { - "$date": "2021-07-02T18:29:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "aecb2bd9-c5ed-4cf4-b1e8-b005f7b8c8bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-02T17:44:04.000Z" - }, - "end": { - "$date": "2021-07-02T20:06:15.000Z" - }, - "events": [ - { - "uuid": "dbad0d2a-d6c6-432f-ade9-1e760aac3375", - "start": { - "$date": "2021-07-02T17:44:04.000Z" - }, - "end": { - "$date": "2021-07-02T18:55:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7aad11bd-aefd-424d-b4aa-e1083bcfc52c", - "start": { - "$date": "2021-07-02T18:55:04.000Z" - }, - "end": { - "$date": "2021-07-02T18:57:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52585abc-a6ab-4e9d-9e70-5b8fe8f8947b", - "start": { - "$date": "2021-07-02T18:57:04.000Z" - }, - "end": { - "$date": "2021-07-02T20:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d1221608-b7a3-4f66-ab24-15db588f0c30", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T19:03:22.000Z" - }, - "end": { - "$date": "2021-07-02T20:25:58.000Z" - }, - "events": [ - { - "uuid": "c52d8dda-aad4-49a7-aeec-97cfc03eb789", - "start": { - "$date": "2021-07-02T19:03:22.000Z" - }, - "end": { - "$date": "2021-07-02T20:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "5023da0b-8031-4ab6-818a-669fdccbf653", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-02T19:03:43.000Z" - }, - "end": { - "$date": "2021-07-02T19:26:43.000Z" - }, - "events": [ - { - "uuid": "bc3862f1-d409-431b-84b5-a21f90026ebf", - "start": { - "$date": "2021-07-02T19:03:43.000Z" - }, - "end": { - "$date": "2021-07-02T19:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e1c115fd-abfd-447c-a0dd-6b6dd9634548", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-02T20:04:33.000Z" - }, - "end": { - "$date": "2021-07-02T20:47:10.000Z" - }, - "events": [ - { - "uuid": "f784ed73-34d7-4ca6-a29e-9c0e965f3841", - "start": { - "$date": "2021-07-02T20:04:33.000Z" - }, - "end": { - "$date": "2021-07-02T20:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1344f78e-2c6a-410a-b4fd-712583615fee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-02T20:38:53.000Z" - }, - "end": { - "$date": "2021-07-02T20:48:02.000Z" - }, - "events": [ - { - "uuid": "e40dc9be-92cf-4f43-8a3a-53ebf6e9b795", - "start": { - "$date": "2021-07-02T20:38:53.000Z" - }, - "end": { - "$date": "2021-07-02T20:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0a3c006c-7b37-4a6e-863b-4597450e06d8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T20:38:59.000Z" - }, - "end": { - "$date": "2021-07-02T20:47:52.000Z" - }, - "events": [ - { - "uuid": "8250fef2-a52c-444d-8069-06f8f2dd2129", - "start": { - "$date": "2021-07-02T20:38:59.000Z" - }, - "end": { - "$date": "2021-07-02T20:47:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "85dc7768-1595-4d17-827c-7f75e96d8db5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-02T20:47:30.000Z" - }, - "end": { - "$date": "2021-07-02T22:06:18.000Z" - }, - "events": [ - { - "uuid": "8d3b9b36-7ceb-41f7-b147-87f9cdbbeb57", - "start": { - "$date": "2021-07-02T20:47:30.000Z" - }, - "end": { - "$date": "2021-07-02T22:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "92e8e6c4-9944-4b3c-8520-6104e025c2a3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T20:48:27.000Z" - }, - "end": { - "$date": "2021-07-02T22:05:44.000Z" - }, - "events": [ - { - "uuid": "6de705ca-f179-4ba2-8b14-5aa40bbefab4", - "start": { - "$date": "2021-07-02T20:48:27.000Z" - }, - "end": { - "$date": "2021-07-02T22:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a0e8339a-1f17-494c-8aca-59efaa644b42", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-02T20:48:48.000Z" - }, - "end": { - "$date": "2021-07-02T22:05:39.000Z" - }, - "events": [ - { - "uuid": "e5e19519-53f8-44ff-8d40-d2178fa19069", - "start": { - "$date": "2021-07-02T20:48:48.000Z" - }, - "end": { - "$date": "2021-07-02T22:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "d7ed1c34-1348-439a-a8be-b3e7d46da7c9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-02T21:03:43.000Z" - }, - "end": { - "$date": "2021-07-02T21:07:29.000Z" - }, - "events": [ - { - "uuid": "84b29362-1c0a-4265-9c23-469148cc12dd", - "start": { - "$date": "2021-07-02T21:03:43.000Z" - }, - "end": { - "$date": "2021-07-02T21:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "0c44ea2b-744c-43d1-81eb-45be67edbd23", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-02T21:09:04.000Z" - }, - "end": { - "$date": "2021-07-02T21:17:03.000Z" - }, - "events": [ - { - "uuid": "fb347d54-eda9-4409-9f0c-22e6bef4de4b", - "start": { - "$date": "2021-07-02T21:09:04.000Z" - }, - "end": { - "$date": "2021-07-02T21:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "af99d871-af10-4ee3-a44a-4db0d3517e45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-02T21:19:28.000Z" - }, - "end": { - "$date": "2021-07-02T22:00:25.000Z" - }, - "events": [ - { - "uuid": "f58f192f-f805-4c90-a836-5313829aeb50", - "start": { - "$date": "2021-07-02T21:19:28.000Z" - }, - "end": { - "$date": "2021-07-02T22:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "57aefcfe-7ec8-49c3-8233-3554cc874437", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-02T22:00:58.000Z" - }, - "end": { - "$date": "2021-07-02T22:19:15.000Z" - }, - "events": [ - { - "uuid": "87ef31ad-1d19-4c07-958b-c7af7007a516", - "start": { - "$date": "2021-07-02T22:00:58.000Z" - }, - "end": { - "$date": "2021-07-02T22:19:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0920b8a0-a7b7-432f-9326-468fdb2bdb38", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-02T22:21:15.000Z" - }, - "end": { - "$date": "2021-07-03T00:03:35.000Z" - }, - "events": [ - { - "uuid": "5d133868-5755-4721-abd7-4fd10882056f", - "start": { - "$date": "2021-07-02T22:21:15.000Z" - }, - "end": { - "$date": "2021-07-03T00:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "037d5ef8-3f54-401c-9923-a875b9a30e54", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T22:08:24.000Z" - }, - "end": { - "$date": "2021-07-02T22:20:59.000Z" - }, - "events": [ - { - "uuid": "f60761cf-a34f-46be-9947-d1ae29c9f051", - "start": { - "$date": "2021-07-02T22:08:24.000Z" - }, - "end": { - "$date": "2021-07-02T22:20:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9c4d9303-dceb-4903-a5d2-77d8b3a7808e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-02T22:18:37.000Z" - }, - "end": { - "$date": "2021-07-02T23:00:43.000Z" - }, - "events": [ - { - "uuid": "98d006a1-578e-4b86-98a3-1059125c259e", - "start": { - "$date": "2021-07-02T22:18:37.000Z" - }, - "end": { - "$date": "2021-07-02T23:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08b7fc73-5450-4bb6-811a-3eb4ca9229c6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-02T22:19:08.000Z" - }, - "end": { - "$date": "2021-07-02T23:27:12.000Z" - }, - "events": [ - { - "uuid": "f9270008-d2fc-4a64-852e-0aa3f8515dae", - "start": { - "$date": "2021-07-02T22:19:08.000Z" - }, - "end": { - "$date": "2021-07-02T23:27:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "080baf11-bb13-45af-914b-42a7253d2211", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-02T22:20:30.000Z" - }, - "end": { - "$date": "2021-07-03T00:20:37.000Z" - }, - "events": [ - { - "uuid": "da5f278c-a640-4b26-b6fc-7700b87c3067", - "start": { - "$date": "2021-07-02T22:20:30.000Z" - }, - "end": { - "$date": "2021-07-02T23:13:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffa7bf36-dfb8-4d28-bd79-d82f395419ab", - "start": { - "$date": "2021-07-02T23:13:30.000Z" - }, - "end": { - "$date": "2021-07-02T23:17:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b136a97e-701d-4c9e-884a-02bb5082eed0", - "start": { - "$date": "2021-07-02T23:17:30.000Z" - }, - "end": { - "$date": "2021-07-03T00:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a437993-3183-4344-9b9a-a51217d69742", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-02T22:20:49.000Z" - }, - "end": { - "$date": "2021-07-02T23:27:18.000Z" - }, - "events": [ - { - "uuid": "610890f9-a857-4132-a01f-100acb9a0053", - "start": { - "$date": "2021-07-02T22:20:49.000Z" - }, - "end": { - "$date": "2021-07-02T23:27:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fb150bc3-8661-441b-b2a4-e7a5d8b7b58b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T22:22:04.000Z" - }, - "end": { - "$date": "2021-07-02T23:28:16.000Z" - }, - "events": [ - { - "uuid": "a56c0463-c818-471c-825e-cb634cd43f58", - "start": { - "$date": "2021-07-02T22:22:04.000Z" - }, - "end": { - "$date": "2021-07-02T23:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5a1fb182-32c4-44ef-bc83-8b3bee9dbff6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-02T22:28:01.000Z" - }, - "end": { - "$date": "2021-07-03T01:52:56.000Z" - }, - "events": [ - { - "uuid": "2cb57ad6-4a62-415e-810d-cdf60142e466", - "start": { - "$date": "2021-07-02T22:28:01.000Z" - }, - "end": { - "$date": "2021-07-03T01:30:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4761e9a2-2bc3-47b4-9c15-39e8056fa5ba", - "start": { - "$date": "2021-07-03T01:30:01.000Z" - }, - "end": { - "$date": "2021-07-03T01:33:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e212ef6-fe37-4cad-a64f-f2ef15dd5789", - "start": { - "$date": "2021-07-03T01:33:01.000Z" - }, - "end": { - "$date": "2021-07-03T01:45:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c0051a57-d1c7-4623-b559-f7546003ecd7", - "start": { - "$date": "2021-07-03T01:45:01.000Z" - }, - "end": { - "$date": "2021-07-03T01:51:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec59798f-ab29-4db1-be90-5b8f16352586", - "start": { - "$date": "2021-07-03T01:51:01.000Z" - }, - "end": { - "$date": "2021-07-03T01:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d3bb54b9-2f1e-486c-8831-ccedda6999ca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-02T22:48:42.000Z" - }, - "end": { - "$date": "2021-07-03T00:03:45.000Z" - }, - "events": [ - { - "uuid": "5c9b78bc-49d9-4da3-9a54-2e75fb369671", - "start": { - "$date": "2021-07-02T22:48:42.000Z" - }, - "end": { - "$date": "2021-07-03T00:03:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9a003d75-c4b2-44d6-a219-5bdbd8e238ba", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-02T23:11:34.000Z" - }, - "end": { - "$date": "2021-07-03T00:20:33.000Z" - }, - "events": [ - { - "uuid": "a8115509-9954-4026-a207-cdb5345e3d78", - "start": { - "$date": "2021-07-02T23:11:34.000Z" - }, - "end": { - "$date": "2021-07-03T00:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9f882903-ce79-418d-ab29-dd0bab46825f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-02T23:28:50.000Z" - }, - "end": { - "$date": "2021-07-03T01:58:30.000Z" - }, - "events": [ - { - "uuid": "3a0aaa68-7bf8-4bc6-96b7-2d8572bf5082", - "start": { - "$date": "2021-07-02T23:28:50.000Z" - }, - "end": { - "$date": "2021-07-03T00:18:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "907093cd-8ee7-46c5-9ded-2ec05f85922c", - "start": { - "$date": "2021-07-03T00:18:50.000Z" - }, - "end": { - "$date": "2021-07-03T00:24:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "05a85375-8502-438b-ad99-af4448105f71", - "start": { - "$date": "2021-07-03T00:24:50.000Z" - }, - "end": { - "$date": "2021-07-03T01:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7ebce693-dafe-4c0d-9ec6-80ccf2d5fd8b", - "uuid": "ce735389-1ba3-4c6c-b989-4adc18bee60c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T00:21:10.000Z" - }, - "end": { - "$date": "2021-07-03T00:55:17.000Z" - }, - "events": [ - { - "uuid": "7ed77695-fbd3-4168-9275-ebb7f2c337a7", - "start": { - "$date": "2021-07-03T00:21:10.000Z" - }, - "end": { - "$date": "2021-07-03T00:55:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516c8045-97c5-4666-baba-b14db6007763", - "uuid": "f7e02103-2bdc-4add-b247-eb4c36529a6e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T00:55:32.000Z" - }, - "end": { - "$date": "2021-07-03T01:25:19.000Z" - }, - "events": [ - { - "uuid": "aea168df-0bbb-4a29-b7e2-b8f8c8397d16", - "start": { - "$date": "2021-07-03T00:55:32.000Z" - }, - "end": { - "$date": "2021-07-03T01:25:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9d054125-93b4-4c65-84b2-fcdd85d2c2b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-03T01:18:16.000Z" - }, - "end": { - "$date": "2021-07-03T02:04:35.000Z" - }, - "events": [ - { - "uuid": "28198688-5bbe-4eda-9001-6c2309f7d8d2", - "start": { - "$date": "2021-07-03T01:18:16.000Z" - }, - "end": { - "$date": "2021-07-03T02:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2472dd06-bd92-4fd5-a2a5-ffd134653a1d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T02:28:58.000Z" - }, - "end": { - "$date": "2021-07-03T03:47:50.000Z" - }, - "events": [ - { - "uuid": "f62b8d95-e746-4d5f-8df3-cb3d43572ccb", - "start": { - "$date": "2021-07-03T02:28:58.000Z" - }, - "end": { - "$date": "2021-07-03T03:15:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b97295df-bc53-4a2b-80b1-ff454bdb30b4", - "start": { - "$date": "2021-07-03T03:15:58.000Z" - }, - "end": { - "$date": "2021-07-03T03:16:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "748995f3-cd52-407d-bf90-fe0b892c149b", - "start": { - "$date": "2021-07-03T03:16:58.000Z" - }, - "end": { - "$date": "2021-07-03T03:47:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4a5780a6-aa72-4244-9bb3-57953f7faa0f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-03T01:52:30.000Z" - }, - "end": { - "$date": "2021-07-03T03:21:44.000Z" - }, - "events": [ - { - "uuid": "99e60fca-3d88-40e8-8d74-751395c884a1", - "start": { - "$date": "2021-07-03T01:52:30.000Z" - }, - "end": { - "$date": "2021-07-03T03:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "89c3e5dd-67f2-4668-b2a8-149aa3dfeec4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-03T02:46:11.000Z" - }, - "end": { - "$date": "2021-07-03T05:24:38.000Z" - }, - "events": [ - { - "uuid": "7cb272f7-f611-45d9-8e0d-713aa3f7df2c", - "start": { - "$date": "2021-07-03T02:46:11.000Z" - }, - "end": { - "$date": "2021-07-03T05:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e6ad9c3b-a083-4fc3-b1d7-c518d469c0fa", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-03T02:47:16.000Z" - }, - "end": { - "$date": "2021-07-03T05:24:34.000Z" - }, - "events": [ - { - "uuid": "05c19db3-3e82-4221-b938-bdab6f54d047", - "start": { - "$date": "2021-07-03T02:47:16.000Z" - }, - "end": { - "$date": "2021-07-03T05:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4ba2864e-c852-40ca-b9dc-e570637f108e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-03T02:47:49.000Z" - }, - "end": { - "$date": "2021-07-03T05:18:47.000Z" - }, - "events": [ - { - "uuid": "01e691fe-83c9-4346-bac1-b30d6275594c", - "start": { - "$date": "2021-07-03T02:47:49.000Z" - }, - "end": { - "$date": "2021-07-03T05:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8b92758-349d-4b00-9e07-7bc67d49dc4b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-03T02:54:20.000Z" - }, - "end": { - "$date": "2021-07-03T05:23:26.000Z" - }, - "events": [ - { - "uuid": "062b0a41-48f8-4003-a634-74ea1bf8514f", - "start": { - "$date": "2021-07-03T02:54:20.000Z" - }, - "end": { - "$date": "2021-07-03T05:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "787333df-2f3a-4041-a54a-ffe158852fda", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-03T02:59:32.000Z" - }, - "end": { - "$date": "2021-07-03T05:10:12.000Z" - }, - "events": [ - { - "uuid": "b2951d97-a556-498c-b32f-4320a450d622", - "start": { - "$date": "2021-07-03T02:59:32.000Z" - }, - "end": { - "$date": "2021-07-03T05:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf319abf-d654-4596-a087-bdbaeab23bf2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-03T03:11:08.000Z" - }, - "end": { - "$date": "2021-07-03T05:23:08.000Z" - }, - "events": [ - { - "uuid": "6d5a8f4d-055b-4493-8ff0-a9cc7d984c04", - "start": { - "$date": "2021-07-03T03:11:08.000Z" - }, - "end": { - "$date": "2021-07-03T05:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5f05411a-30a8-44f1-b58c-f6af0e27b25d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-03T03:14:06.000Z" - }, - "end": { - "$date": "2021-07-03T08:10:57.000Z" - }, - "events": [ - { - "uuid": "883601b8-3bca-4f6b-a3e0-5bf986472c18", - "start": { - "$date": "2021-07-03T03:14:06.000Z" - }, - "end": { - "$date": "2021-07-03T08:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1c32df89-c19e-48ed-952b-a1747c770e73", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-03T03:15:04.000Z" - }, - "end": { - "$date": "2021-07-03T04:55:32.000Z" - }, - "events": [ - { - "uuid": "ee2b6b6e-598e-42b2-aa7a-179b085ca0f3", - "start": { - "$date": "2021-07-03T03:15:04.000Z" - }, - "end": { - "$date": "2021-07-03T04:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "b504878b-bc5b-4801-9fb2-471fbba59a79", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T03:47:55.000Z" - }, - "end": { - "$date": "2021-07-03T03:49:20.000Z" - }, - "events": [ - { - "uuid": "a47c0f11-b8ac-40e1-ad26-b4dd64af5e8b", - "start": { - "$date": "2021-07-03T03:47:55.000Z" - }, - "end": { - "$date": "2021-07-03T03:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "984d9413-4d57-4947-a9a3-6cba47b0d922", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T03:49:30.000Z" - }, - "end": { - "$date": "2021-07-03T03:52:35.000Z" - }, - "events": [ - { - "uuid": "9e4fd039-5aac-4dc6-8606-d17e45f125a9", - "start": { - "$date": "2021-07-03T03:49:30.000Z" - }, - "end": { - "$date": "2021-07-03T03:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "91c5587f-3dd0-4efb-bbdb-6aeab2c1ced6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T03:54:00.000Z" - }, - "end": { - "$date": "2021-07-03T04:13:51.000Z" - }, - "events": [ - { - "uuid": "540de980-c83f-4cd4-986e-f0aa41229b75", - "start": { - "$date": "2021-07-03T03:54:00.000Z" - }, - "end": { - "$date": "2021-07-03T04:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8db1879e-4406-4f08-88d6-4bd04032100c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T04:15:26.000Z" - }, - "end": { - "$date": "2021-07-03T05:10:13.000Z" - }, - "events": [ - { - "uuid": "77a17441-1303-4866-a987-d515735c6901", - "start": { - "$date": "2021-07-03T04:15:26.000Z" - }, - "end": { - "$date": "2021-07-03T05:10:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2991c7d3-a21c-4094-8b23-2dfac7c17a29", - "uuid": "bae40f42-2bf7-47c2-9b80-eb29d2512f16", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-03T05:25:26.000Z" - }, - "end": { - "$date": "2021-07-03T05:34:22.000Z" - }, - "events": [ - { - "uuid": "262da52e-f839-422f-9a91-7db710bd7221", - "start": { - "$date": "2021-07-03T05:25:26.000Z" - }, - "end": { - "$date": "2021-07-03T05:34:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "35445062-929a-4183-aa7e-2099c73a12dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-03T05:26:01.000Z" - }, - "end": { - "$date": "2021-07-03T07:34:09.000Z" - }, - "events": [ - { - "uuid": "3a65aca5-7f7e-4181-96a5-0b1b3155d7c4", - "start": { - "$date": "2021-07-03T05:26:01.000Z" - }, - "end": { - "$date": "2021-07-03T07:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5b42036b-94a1-4d1b-9252-ceaa6428b9d8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-03T06:02:53.000Z" - }, - "end": { - "$date": "2021-07-03T06:25:29.000Z" - }, - "events": [ - { - "uuid": "56604d55-81ab-4db3-8e45-b699b31a8c33", - "start": { - "$date": "2021-07-03T06:02:53.000Z" - }, - "end": { - "$date": "2021-07-03T06:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1e95c522-78ef-4998-879f-08e398e8317e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T06:19:41.000Z" - }, - "end": { - "$date": "2021-07-03T06:28:06.000Z" - }, - "events": [ - { - "uuid": "65859159-b105-4c7c-a022-fb9f0293a640", - "start": { - "$date": "2021-07-03T06:19:41.000Z" - }, - "end": { - "$date": "2021-07-03T06:28:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "929a570e-5910-4295-ba67-8b167dd5b8cf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T06:33:11.000Z" - }, - "end": { - "$date": "2021-07-03T06:59:37.000Z" - }, - "events": [ - { - "uuid": "2d89755e-dc3b-432f-a7dc-cead8ad6f7ce", - "start": { - "$date": "2021-07-03T06:33:11.000Z" - }, - "end": { - "$date": "2021-07-03T06:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "79f91736-275f-47a1-96df-f90ebb85bd0d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T07:00:12.000Z" - }, - "end": { - "$date": "2021-07-03T09:54:34.000Z" - }, - "events": [ - { - "uuid": "2cc39e89-555c-48a4-8b69-778969afe971", - "start": { - "$date": "2021-07-03T07:00:12.000Z" - }, - "end": { - "$date": "2021-07-03T09:54:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "b7b65ec5-7232-42a2-9d0a-9447729323a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-03T16:13:04.000Z" - }, - "end": { - "$date": "2021-07-03T16:33:21.000Z" - }, - "events": [ - { - "uuid": "1de436fa-03be-41d4-8bae-45f5aacf847a", - "start": { - "$date": "2021-07-03T16:13:04.000Z" - }, - "end": { - "$date": "2021-07-03T16:33:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "297d5bf9-0c39-48a2-89aa-c68b6e52988f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-03T18:44:10.000Z" - }, - "end": { - "$date": "2021-07-03T19:21:16.000Z" - }, - "events": [ - { - "uuid": "20ea7fab-c397-4178-b4a9-1523daa902c1", - "start": { - "$date": "2021-07-03T18:44:10.000Z" - }, - "end": { - "$date": "2021-07-03T19:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6feff81e-1c48-4361-8b55-bf21af6142ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-03T16:46:29.000Z" - }, - "end": { - "$date": "2021-07-03T18:58:46.000Z" - }, - "events": [ - { - "uuid": "4ce2e5ec-f0bd-417b-9fdd-8857816071bb", - "start": { - "$date": "2021-07-03T16:46:29.000Z" - }, - "end": { - "$date": "2021-07-03T18:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d22a5fa9-e038-4db3-8ebc-f85bb919c620", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T17:03:41.000Z" - }, - "end": { - "$date": "2021-07-03T19:25:27.000Z" - }, - "events": [ - { - "uuid": "761bc9ed-e330-4976-9e20-77446d4a7994", - "start": { - "$date": "2021-07-03T17:03:41.000Z" - }, - "end": { - "$date": "2021-07-03T19:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "2fb8841a-b04c-4fc3-a851-3dd23951c1ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-03T18:15:54.000Z" - }, - "end": { - "$date": "2021-07-03T19:14:38.000Z" - }, - "events": [ - { - "uuid": "1e8f1a73-f09f-4fea-a30c-50b9d13127a5", - "start": { - "$date": "2021-07-03T18:15:54.000Z" - }, - "end": { - "$date": "2021-07-03T19:14:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "93f25d04-15aa-4d8c-a737-d6fa52ce4212", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-03T19:16:20.000Z" - }, - "end": { - "$date": "2021-07-03T20:06:13.000Z" - }, - "events": [ - { - "uuid": "7205ad2d-07af-4899-a2eb-ceaeffc86b44", - "start": { - "$date": "2021-07-03T19:16:20.000Z" - }, - "end": { - "$date": "2021-07-03T20:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "34a9ab2b-f9bf-40db-8eda-cc738bac49d1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-03T20:29:03.000Z" - }, - "end": { - "$date": "2021-07-03T20:38:14.000Z" - }, - "events": [ - { - "uuid": "d6eb58e9-2f65-41e7-b674-123c1af96527", - "start": { - "$date": "2021-07-03T20:29:03.000Z" - }, - "end": { - "$date": "2021-07-03T20:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ed029fae-5693-476e-a46e-fa74dd722efb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-03T20:51:35.000Z" - }, - "end": { - "$date": "2021-07-03T21:09:44.000Z" - }, - "events": [ - { - "uuid": "8a6903db-cdf4-4609-bdae-ff118607617d", - "start": { - "$date": "2021-07-03T20:51:35.000Z" - }, - "end": { - "$date": "2021-07-03T21:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2c505666-caa3-4218-9389-52bf7abf04af", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T22:07:22.000Z" - }, - "end": { - "$date": "2021-07-03T23:11:54.000Z" - }, - "events": [ - { - "uuid": "6a3c1ed3-5dfa-4d81-9dc8-e31a0496e310", - "start": { - "$date": "2021-07-03T22:07:22.000Z" - }, - "end": { - "$date": "2021-07-03T23:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b7047e21-d51d-4a4b-9cc6-0279834a4bab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-03T22:19:26.000Z" - }, - "end": { - "$date": "2021-07-04T02:24:22.000Z" - }, - "events": [ - { - "uuid": "900e67de-7470-4886-93c3-060485d059f5", - "start": { - "$date": "2021-07-03T22:19:26.000Z" - }, - "end": { - "$date": "2021-07-04T02:24:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d2626290-656a-41dc-b900-cb506b9525bd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-03T22:20:16.000Z" - }, - "end": { - "$date": "2021-07-03T23:07:30.000Z" - }, - "events": [ - { - "uuid": "c20a276e-170c-412c-9035-63f8880d2310", - "start": { - "$date": "2021-07-03T22:20:16.000Z" - }, - "end": { - "$date": "2021-07-03T23:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a9833015-3c63-4a8d-a527-0e1dbb0884d0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-03T22:45:27.000Z" - }, - "end": { - "$date": "2021-07-04T03:03:44.000Z" - }, - "events": [ - { - "uuid": "8273d527-41fa-446e-ba6f-397ee862735c", - "start": { - "$date": "2021-07-03T22:45:27.000Z" - }, - "end": { - "$date": "2021-07-03T23:04:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d60cb053-fd7d-45f8-b03d-d8e4e61c044e", - "start": { - "$date": "2021-07-03T23:04:27.000Z" - }, - "end": { - "$date": "2021-07-03T23:09:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "158ce0d5-75ee-4d1d-935e-07be2c802df5", - "start": { - "$date": "2021-07-03T23:09:27.000Z" - }, - "end": { - "$date": "2021-07-03T23:24:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "66dcd930-4be2-4cee-9f15-d53ed373364e", - "start": { - "$date": "2021-07-03T23:24:27.000Z" - }, - "end": { - "$date": "2021-07-04T02:32:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d0ff6a02-55e6-492a-b560-64a2c7ab0e70", - "start": { - "$date": "2021-07-04T02:32:27.000Z" - }, - "end": { - "$date": "2021-07-04T02:49:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab2eef64-59e7-488d-9ba6-93454a72dfd8", - "start": { - "$date": "2021-07-04T02:49:27.000Z" - }, - "end": { - "$date": "2021-07-04T02:52:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c80a740f-a5d6-4e54-bd63-3155817b812c", - "start": { - "$date": "2021-07-04T02:52:27.000Z" - }, - "end": { - "$date": "2021-07-04T03:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0e07b99e-89d6-43fb-8ee2-21ca90152113", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T23:12:44.000Z" - }, - "end": { - "$date": "2021-07-03T23:37:22.000Z" - }, - "events": [ - { - "uuid": "c7c12fb8-378a-448f-93de-edced0c45189", - "start": { - "$date": "2021-07-03T23:12:44.000Z" - }, - "end": { - "$date": "2021-07-03T23:34:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72e25c74-aaec-435a-b915-c6ed0ce5713c", - "start": { - "$date": "2021-07-03T23:34:44.000Z" - }, - "end": { - "$date": "2021-07-03T23:37:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "0efd9fbd-e62d-4a9f-9e46-9c372cc48390", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-03T23:41:27.000Z" - }, - "end": { - "$date": "2021-07-04T01:09:02.000Z" - }, - "events": [ - { - "uuid": "01942565-697b-4ddf-ab1d-b28663f4c893", - "start": { - "$date": "2021-07-03T23:41:27.000Z" - }, - "end": { - "$date": "2021-07-04T01:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2dea8f14-e9b5-4b03-b4d5-87ff25860f6e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-03T23:55:09.000Z" - }, - "end": { - "$date": "2021-07-04T01:03:31.000Z" - }, - "events": [ - { - "uuid": "4f08de72-3c99-48d4-a315-dce60adc156a", - "start": { - "$date": "2021-07-03T23:55:09.000Z" - }, - "end": { - "$date": "2021-07-04T01:03:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "1d83e26f-2a25-425a-954f-07fe56877009", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-04T01:06:27.000Z" - }, - "end": { - "$date": "2021-07-04T04:01:24.000Z" - }, - "events": [ - { - "uuid": "90e09f6d-1d44-4123-a764-fcb55a6348ae", - "start": { - "$date": "2021-07-04T01:06:27.000Z" - }, - "end": { - "$date": "2021-07-04T04:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c39cfa9a-82f7-4260-9012-2034bf78c6be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T01:22:53.000Z" - }, - "end": { - "$date": "2021-07-04T01:56:14.000Z" - }, - "events": [ - { - "uuid": "433d7ab5-c69a-4db5-93ce-95f0a373fad5", - "start": { - "$date": "2021-07-04T01:22:53.000Z" - }, - "end": { - "$date": "2021-07-04T01:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "947ee47d-5e65-4908-85a2-b9dc1caa4754", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T01:23:20.000Z" - }, - "end": { - "$date": "2021-07-04T01:53:42.000Z" - }, - "events": [ - { - "uuid": "3851161b-d127-4d2f-9207-b69c3695b7a6", - "start": { - "$date": "2021-07-04T01:23:20.000Z" - }, - "end": { - "$date": "2021-07-04T01:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f471c6e5-c4a8-4222-8bef-f2bcc229fba1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-04T01:24:06.000Z" - }, - "end": { - "$date": "2021-07-04T01:53:20.000Z" - }, - "events": [ - { - "uuid": "8abebae3-b6a4-4f13-b4d4-f5b67ead7048", - "start": { - "$date": "2021-07-04T01:24:06.000Z" - }, - "end": { - "$date": "2021-07-04T01:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "924cdd37-7b00-4e65-9bc4-f8a88e602fbd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T01:32:16.000Z" - }, - "end": { - "$date": "2021-07-04T01:53:47.000Z" - }, - "events": [ - { - "uuid": "666c3320-7c70-4f6e-986e-a9b02f59b04f", - "start": { - "$date": "2021-07-04T01:32:16.000Z" - }, - "end": { - "$date": "2021-07-04T01:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "899f6e7f-dc97-4008-9d13-c768c1d4d797", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T01:56:11.000Z" - }, - "end": { - "$date": "2021-07-04T02:11:59.000Z" - }, - "events": [ - { - "uuid": "f95eb864-b569-453a-bb68-f090944ad9d3", - "start": { - "$date": "2021-07-04T01:56:11.000Z" - }, - "end": { - "$date": "2021-07-04T02:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1c42abf0-352a-47fd-83d4-b2869831c69b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-04T02:24:38.000Z" - }, - "end": { - "$date": "2021-07-04T06:29:30.000Z" - }, - "events": [ - { - "uuid": "b70ce4ae-f566-476d-870f-b01e4d8dd9bb", - "start": { - "$date": "2021-07-04T02:24:38.000Z" - }, - "end": { - "$date": "2021-07-04T02:39:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6bf4bf5e-d97e-4dc9-965c-c184a3690fe2", - "start": { - "$date": "2021-07-04T02:39:38.000Z" - }, - "end": { - "$date": "2021-07-04T02:40:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2e8f4ce-4e20-43be-b634-417393e47a27", - "start": { - "$date": "2021-07-04T02:40:38.000Z" - }, - "end": { - "$date": "2021-07-04T02:42:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ab9854c-97f6-48d0-ad72-97029407c5ff", - "start": { - "$date": "2021-07-04T02:42:38.000Z" - }, - "end": { - "$date": "2021-07-04T02:50:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a60e68b-972a-48c3-b4fe-1842372c7b33", - "start": { - "$date": "2021-07-04T02:50:38.000Z" - }, - "end": { - "$date": "2021-07-04T06:29:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "uuid": "9473ac9f-d560-4491-af8c-ea7ae63b9674", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T02:27:37.000Z" - }, - "end": { - "$date": "2021-07-04T02:30:27.000Z" - }, - "events": [ - { - "uuid": "1d88e8dc-8fbf-4db6-bc4f-d10a066eaae7", - "start": { - "$date": "2021-07-04T02:27:37.000Z" - }, - "end": { - "$date": "2021-07-04T02:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ec0a2499-7d5d-44b2-ac5f-f079d8e14c2f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T02:38:50.000Z" - }, - "end": { - "$date": "2021-07-04T03:02:28.000Z" - }, - "events": [ - { - "uuid": "6cda3849-d420-4f9c-aa13-5463357d1d32", - "start": { - "$date": "2021-07-04T02:38:50.000Z" - }, - "end": { - "$date": "2021-07-04T03:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "9df2cfe0-28d4-41f1-9ed1-99c43561a424", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T02:56:29.000Z" - }, - "end": { - "$date": "2021-07-04T06:08:39.000Z" - }, - "events": [ - { - "uuid": "775d7993-eb53-4000-b9f6-5e65caa2b1e6", - "start": { - "$date": "2021-07-04T02:56:29.000Z" - }, - "end": { - "$date": "2021-07-04T06:08:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a5757839-15bd-4f2e-ba16-4b55a3bc4a46", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-04T02:59:13.000Z" - }, - "end": { - "$date": "2021-07-04T03:00:53.000Z" - }, - "events": [ - { - "uuid": "0ce48b21-2aa5-4780-824f-27f2bc9b899c", - "start": { - "$date": "2021-07-04T02:59:13.000Z" - }, - "end": { - "$date": "2021-07-04T03:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86cff91d-97e7-4c25-9dca-be6f8e116f6c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-04T03:00:58.000Z" - }, - "end": { - "$date": "2021-07-04T04:37:07.000Z" - }, - "events": [ - { - "uuid": "cb16a20f-abcb-4180-9ee9-0013cb4e9766", - "start": { - "$date": "2021-07-04T03:00:58.000Z" - }, - "end": { - "$date": "2021-07-04T04:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "e1acbee6-cd7e-406e-bc00-55111045ec4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-04T03:01:42.000Z" - }, - "end": { - "$date": "2021-07-04T03:45:46.000Z" - }, - "events": [ - { - "uuid": "620dba03-63b3-42d3-b560-2b22ad898acd", - "start": { - "$date": "2021-07-04T03:01:42.000Z" - }, - "end": { - "$date": "2021-07-04T03:45:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "517e96d7-5604-449d-a9ac-9dbb131070cf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T03:03:18.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:30.000Z" - }, - "events": [ - { - "uuid": "0019b874-6101-4092-a1e7-20d7e7665fef", - "start": { - "$date": "2021-07-04T03:03:18.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "22c5f438-826f-4470-89f5-2c217982f55a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T04:00:43.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:31.000Z" - }, - "events": [ - { - "uuid": "56778ef7-e8c1-48cd-a828-854bd291c087", - "start": { - "$date": "2021-07-04T04:00:43.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "fdc77c23-df6a-4bd2-9cd4-a9f411e8b27a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T03:13:30.000Z" - }, - "end": { - "$date": "2021-07-04T04:03:58.000Z" - }, - "events": [ - { - "uuid": "6d254e77-1310-4967-9edd-c972ee2ee4c7", - "start": { - "$date": "2021-07-04T03:13:30.000Z" - }, - "end": { - "$date": "2021-07-04T04:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5e043925-f0bf-4609-b51f-b930d7f6bc8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-04T03:49:37.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:33.000Z" - }, - "events": [ - { - "uuid": "23f98b33-3171-4b12-bb0f-1af1e40fd53e", - "start": { - "$date": "2021-07-04T03:49:37.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "3ba9fac6-e388-4559-89c1-2a94f3d41c0d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T04:05:03.000Z" - }, - "end": { - "$date": "2021-07-04T04:23:54.000Z" - }, - "events": [ - { - "uuid": "fe5b0410-1cbd-4b60-8f09-61e74ef76762", - "start": { - "$date": "2021-07-04T04:05:03.000Z" - }, - "end": { - "$date": "2021-07-04T04:23:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "77f44c2b-3b84-46fd-90bb-fce1aabf330b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T04:26:54.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:38.000Z" - }, - "events": [ - { - "uuid": "52bdd10a-497d-47af-9b8f-e1ae3dd7f987", - "start": { - "$date": "2021-07-04T04:26:54.000Z" - }, - "end": { - "$date": "2021-07-04T06:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a226a0e8-bd23-44bb-ae1f-b1fc78b2eabc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T06:13:51.000Z" - }, - "end": { - "$date": "2021-07-04T07:20:07.000Z" - }, - "events": [ - { - "uuid": "246817d8-c63e-4412-a320-16deadae2828", - "start": { - "$date": "2021-07-04T06:13:51.000Z" - }, - "end": { - "$date": "2021-07-04T07:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b7d27aad-d57a-40b9-8034-88cf86da0252", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T06:17:11.000Z" - }, - "end": { - "$date": "2021-07-04T07:20:38.000Z" - }, - "events": [ - { - "uuid": "09ad36c9-f1d7-4c86-aec5-ab95db740ef2", - "start": { - "$date": "2021-07-04T06:17:11.000Z" - }, - "end": { - "$date": "2021-07-04T07:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "5e465d8d-8eb4-400e-b32d-b8bdb19419c5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-04T06:43:12.000Z" - }, - "end": { - "$date": "2021-07-04T07:51:22.000Z" - }, - "events": [ - { - "uuid": "50a6dd0b-1a67-4083-a75c-2c84f06ef1de", - "start": { - "$date": "2021-07-04T06:43:12.000Z" - }, - "end": { - "$date": "2021-07-04T07:51:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "e9ff33da-f171-4aa6-94b6-7e2b994318d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T15:12:45.000Z" - }, - "end": { - "$date": "2021-07-04T16:26:10.000Z" - }, - "events": [ - { - "uuid": "3f30289f-3169-4ced-b666-7e8856d9d612", - "start": { - "$date": "2021-07-04T15:12:45.000Z" - }, - "end": { - "$date": "2021-07-04T16:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b95f6930-8817-4c28-86fc-c6b42de36629", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-04T15:15:00.000Z" - }, - "end": { - "$date": "2021-07-04T16:47:24.000Z" - }, - "events": [ - { - "uuid": "15dd23b1-915c-42c1-a2c2-3eab05e1e944", - "start": { - "$date": "2021-07-04T15:15:00.000Z" - }, - "end": { - "$date": "2021-07-04T16:47:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "cb1b3835-0d66-4dc1-9a25-35b3dcd3ef0c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-04T16:19:33.000Z" - }, - "end": { - "$date": "2021-07-04T16:25:08.000Z" - }, - "events": [ - { - "uuid": "2c894067-4ac4-4022-a028-f920234b7ac7", - "start": { - "$date": "2021-07-04T16:19:33.000Z" - }, - "end": { - "$date": "2021-07-04T16:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "91b9e5e4-024f-42d7-b2ef-314cdc4dc6e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T16:27:45.000Z" - }, - "end": { - "$date": "2021-07-04T17:07:00.000Z" - }, - "events": [ - { - "uuid": "86cfac7f-88bc-47af-a4c2-e630a0dcd12a", - "start": { - "$date": "2021-07-04T16:27:45.000Z" - }, - "end": { - "$date": "2021-07-04T17:07:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b9b4b55d-8a34-4023-86eb-72ce3ff42372", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T16:54:11.000Z" - }, - "end": { - "$date": "2021-07-04T19:13:25.000Z" - }, - "events": [ - { - "uuid": "5c8c8c5c-3151-4414-b6bb-ebd75053b295", - "start": { - "$date": "2021-07-04T16:54:11.000Z" - }, - "end": { - "$date": "2021-07-04T19:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "88022cf2-cd6a-40b6-be59-5ef54a4d5ec8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-04T17:06:23.000Z" - }, - "end": { - "$date": "2021-07-04T19:35:47.000Z" - }, - "events": [ - { - "uuid": "d79ad17c-37d2-4d08-a362-b8a0799ca2ca", - "start": { - "$date": "2021-07-04T17:06:23.000Z" - }, - "end": { - "$date": "2021-07-04T18:53:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "05aaa945-e4c7-412a-bb24-d88e244307f3", - "start": { - "$date": "2021-07-04T18:53:23.000Z" - }, - "end": { - "$date": "2021-07-04T18:58:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a5c4f048-9451-4b6c-bcb4-6c82444809c8", - "start": { - "$date": "2021-07-04T18:58:23.000Z" - }, - "end": { - "$date": "2021-07-04T19:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "078f7504-a1a2-4d80-9be0-aaf3aefab9ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T17:08:00.000Z" - }, - "end": { - "$date": "2021-07-04T18:42:47.000Z" - }, - "events": [ - { - "uuid": "5036413a-8e5a-4148-800d-d29393b46f56", - "start": { - "$date": "2021-07-04T17:08:00.000Z" - }, - "end": { - "$date": "2021-07-04T18:30:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a2d9207-d976-48c3-8323-fd9838554868", - "start": { - "$date": "2021-07-04T18:30:00.000Z" - }, - "end": { - "$date": "2021-07-04T18:35:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74c9b898-5175-4388-b3b4-f206ba2572cf", - "start": { - "$date": "2021-07-04T18:35:00.000Z" - }, - "end": { - "$date": "2021-07-04T18:42:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2c5dedf1-d74e-479c-8a06-68d1dc1e26f1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-04T17:43:50.000Z" - }, - "end": { - "$date": "2021-07-04T17:56:16.000Z" - }, - "events": [ - { - "uuid": "3f5b1e03-c8b4-48aa-9bc1-08def0523180", - "start": { - "$date": "2021-07-04T17:43:50.000Z" - }, - "end": { - "$date": "2021-07-04T17:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "891ade60-4d9f-4b22-96a4-9c08e589872c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T19:02:18.000Z" - }, - "end": { - "$date": "2021-07-04T19:53:51.000Z" - }, - "events": [ - { - "uuid": "71600e7c-22ce-4816-9a02-3f630e7e7c34", - "start": { - "$date": "2021-07-04T19:02:18.000Z" - }, - "end": { - "$date": "2021-07-04T19:53:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c7136fea-ca4b-4797-aadb-7948a7d89eab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T19:26:42.000Z" - }, - "end": { - "$date": "2021-07-04T20:11:09.000Z" - }, - "events": [ - { - "uuid": "755e03ea-0ea5-4228-8f9b-7b358be642d6", - "start": { - "$date": "2021-07-04T19:26:42.000Z" - }, - "end": { - "$date": "2021-07-04T20:11:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5d08f1f0-0dee-4a3b-805d-5554d8bcc136", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-04T19:35:52.000Z" - }, - "end": { - "$date": "2021-07-04T19:38:07.000Z" - }, - "events": [ - { - "uuid": "e0828850-24a2-48dd-8f97-9b83199dd9ab", - "start": { - "$date": "2021-07-04T19:35:52.000Z" - }, - "end": { - "$date": "2021-07-04T19:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "93f0637a-c6c2-4014-ad1e-c5101d4264af", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-04T19:48:44.000Z" - }, - "end": { - "$date": "2021-07-04T20:45:24.000Z" - }, - "events": [ - { - "uuid": "bfe9993e-140e-4f26-b22e-d4dd80c023d8", - "start": { - "$date": "2021-07-04T19:48:44.000Z" - }, - "end": { - "$date": "2021-07-04T20:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "0c639623-72c6-4dec-ba86-74e0e2a48dc7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T19:55:20.000Z" - }, - "end": { - "$date": "2021-07-04T19:56:41.000Z" - }, - "events": [ - { - "uuid": "2b74a632-eb82-420d-88df-2d800e7676a8", - "start": { - "$date": "2021-07-04T19:55:20.000Z" - }, - "end": { - "$date": "2021-07-04T19:56:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1c6adb13-e9c3-46a2-b02a-2b45a34e3177", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-04T19:57:01.000Z" - }, - "end": { - "$date": "2021-07-04T21:16:34.000Z" - }, - "events": [ - { - "uuid": "f5e6ded1-3c33-40aa-82a4-649593447148", - "start": { - "$date": "2021-07-04T19:57:01.000Z" - }, - "end": { - "$date": "2021-07-04T20:52:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a65d5a1-9008-4d25-aafd-c2d6abdff418", - "start": { - "$date": "2021-07-04T20:52:01.000Z" - }, - "end": { - "$date": "2021-07-04T20:57:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "240f3830-5fd4-4648-8016-2d35df11dc36", - "start": { - "$date": "2021-07-04T20:57:01.000Z" - }, - "end": { - "$date": "2021-07-04T21:07:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "984bac26-c51f-48ed-b512-e1d7e7b829bc", - "start": { - "$date": "2021-07-04T21:07:01.000Z" - }, - "end": { - "$date": "2021-07-04T21:15:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6a6283a7-7700-4209-8ff3-f5e18b8679ec", - "start": { - "$date": "2021-07-04T21:15:01.000Z" - }, - "end": { - "$date": "2021-07-04T21:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a6e48990-b0bd-4cce-a196-e91c5d8019ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T20:32:49.000Z" - }, - "end": { - "$date": "2021-07-04T20:34:20.000Z" - }, - "events": [ - { - "uuid": "a14132d8-cb7a-4016-a1c4-f760f8accc02", - "start": { - "$date": "2021-07-04T20:32:49.000Z" - }, - "end": { - "$date": "2021-07-04T20:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e698ec25-c8f0-4626-8a88-e9aefe9f26c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T20:34:52.000Z" - }, - "end": { - "$date": "2021-07-04T20:36:27.000Z" - }, - "events": [ - { - "uuid": "919101b7-8bdd-43ee-9a60-a19546e2ce2f", - "start": { - "$date": "2021-07-04T20:34:52.000Z" - }, - "end": { - "$date": "2021-07-04T20:36:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22ae114c-ac8a-49b3-b4f4-64e26b8b978f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-04T20:46:58.000Z" - }, - "end": { - "$date": "2021-07-04T21:24:05.000Z" - }, - "events": [ - { - "uuid": "34951d4c-9c72-4ddc-83d1-e00b25cf7e6e", - "start": { - "$date": "2021-07-04T20:46:58.000Z" - }, - "end": { - "$date": "2021-07-04T21:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f90cc60-3f4f-45f4-9fc2-1e4d4cf48e88", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T20:38:35.000Z" - }, - "end": { - "$date": "2021-07-04T20:43:43.000Z" - }, - "events": [ - { - "uuid": "1d4d9fda-fa33-4c17-8047-74a93f3297f4", - "start": { - "$date": "2021-07-04T20:38:35.000Z" - }, - "end": { - "$date": "2021-07-04T20:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb664ddc-bd5b-495a-8cf7-85e003a5d5c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T20:38:34.000Z" - }, - "end": { - "$date": "2021-07-04T20:43:43.000Z" - }, - "events": [ - { - "uuid": "fbd2f052-7725-4923-b39f-9a8262793f0a", - "start": { - "$date": "2021-07-04T20:38:34.000Z" - }, - "end": { - "$date": "2021-07-04T20:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53d8ac6c-67a5-4f74-a9f6-e75206440c22", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T20:47:33.000Z" - }, - "end": { - "$date": "2021-07-04T21:20:10.000Z" - }, - "events": [ - { - "uuid": "c7e10250-4001-4568-b801-c473047d84a0", - "start": { - "$date": "2021-07-04T20:47:33.000Z" - }, - "end": { - "$date": "2021-07-04T21:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a31a8a0-92e6-4186-872d-40b97aef3fe6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T20:47:31.000Z" - }, - "end": { - "$date": "2021-07-04T21:24:04.000Z" - }, - "events": [ - { - "uuid": "f98cc39b-1bc8-4328-95ba-7f57551b8e15", - "start": { - "$date": "2021-07-04T20:47:31.000Z" - }, - "end": { - "$date": "2021-07-04T21:24:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "1fee7303-2a69-490a-a09a-6afda3450c10", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T21:29:43.000Z" - }, - "end": { - "$date": "2021-07-04T21:33:31.000Z" - }, - "events": [ - { - "uuid": "550aae7a-a0b7-4375-aee2-1ffe1e23b6f0", - "start": { - "$date": "2021-07-04T21:29:43.000Z" - }, - "end": { - "$date": "2021-07-04T21:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9b933af-5736-4119-86ce-9d0fe4c6a496", - "uuid": "47fd796a-f4a9-4049-8b3b-151078df56a8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T22:03:05.000Z" - }, - "end": { - "$date": "2021-07-04T22:03:31.000Z" - }, - "events": [ - { - "uuid": "90dd8370-a7d0-4124-97ab-ce136d69b7e6", - "start": { - "$date": "2021-07-04T22:03:05.000Z" - }, - "end": { - "$date": "2021-07-04T22:03:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e84939d7-a748-4d4a-8f46-f100e5a8cfd6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-04T22:07:03.000Z" - }, - "end": { - "$date": "2021-07-04T22:36:56.000Z" - }, - "events": [ - { - "uuid": "543240f6-7236-4a9f-b4b7-c78fc6c08a71", - "start": { - "$date": "2021-07-04T22:07:03.000Z" - }, - "end": { - "$date": "2021-07-04T22:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dac67082-98ba-4626-977e-dfcfdb2a01ad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-04T22:07:51.000Z" - }, - "end": { - "$date": "2021-07-04T22:34:46.000Z" - }, - "events": [ - { - "uuid": "1cd09464-20a1-43d4-97db-7345dac96068", - "start": { - "$date": "2021-07-04T22:07:51.000Z" - }, - "end": { - "$date": "2021-07-04T22:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "275c1bc2-4fad-4418-80a4-4e303a7f3057", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T23:47:58.000Z" - }, - "end": { - "$date": "2021-07-04T23:50:38.000Z" - }, - "events": [ - { - "uuid": "f8e3af79-f25f-47c6-bd3e-8137304279c2", - "start": { - "$date": "2021-07-04T23:47:58.000Z" - }, - "end": { - "$date": "2021-07-04T23:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "36877c89-92fe-47c3-81aa-557dceadfd35", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-04T23:54:18.000Z" - }, - "end": { - "$date": "2021-07-05T01:10:31.000Z" - }, - "events": [ - { - "uuid": "2d3b09d9-993c-490c-9621-abd4abfa74e8", - "start": { - "$date": "2021-07-04T23:54:18.000Z" - }, - "end": { - "$date": "2021-07-05T01:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3021b47e-63b3-4780-a68c-414626d5dbf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-05T01:15:56.000Z" - }, - "end": { - "$date": "2021-07-05T01:18:50.000Z" - }, - "events": [ - { - "uuid": "9d2e4ffa-6137-429b-9d4e-788ea67f7b37", - "start": { - "$date": "2021-07-05T01:15:56.000Z" - }, - "end": { - "$date": "2021-07-05T01:18:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6bfaaf56-4962-48aa-8a2f-bebaedf1fe2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T01:16:02.000Z" - }, - "end": { - "$date": "2021-07-05T01:17:22.000Z" - }, - "events": [ - { - "uuid": "58644577-7d74-43d2-bad3-c4fbe3745b24", - "start": { - "$date": "2021-07-05T01:16:02.000Z" - }, - "end": { - "$date": "2021-07-05T01:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "502b9714-98fb-4feb-938a-894f09b4156d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-05T01:16:27.000Z" - }, - "end": { - "$date": "2021-07-05T01:21:52.000Z" - }, - "events": [ - { - "uuid": "5756daa4-8c88-4721-ba7f-9ea6c6dc2a4e", - "start": { - "$date": "2021-07-05T01:16:27.000Z" - }, - "end": { - "$date": "2021-07-05T01:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "22ac0278-7d1e-4d19-87a7-fde2da598a76", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-05T01:19:06.000Z" - }, - "end": { - "$date": "2021-07-05T01:30:56.000Z" - }, - "events": [ - { - "uuid": "74d1699f-f82c-433c-90bf-0678cef3a395", - "start": { - "$date": "2021-07-05T01:19:06.000Z" - }, - "end": { - "$date": "2021-07-05T01:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "982ef882-1c3e-490d-91c9-ae027ca86beb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T01:21:33.000Z" - }, - "end": { - "$date": "2021-07-05T01:31:26.000Z" - }, - "events": [ - { - "uuid": "ea56f13d-409a-4c0e-9bf3-174cfed67939", - "start": { - "$date": "2021-07-05T01:21:33.000Z" - }, - "end": { - "$date": "2021-07-05T01:31:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3fe50e18-fedc-478b-b81a-8f247702a78b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-05T01:22:13.000Z" - }, - "end": { - "$date": "2021-07-05T01:27:03.000Z" - }, - "events": [ - { - "uuid": "4ea3c5d9-c1ae-4981-97f9-bd68d8ed9d92", - "start": { - "$date": "2021-07-05T01:22:13.000Z" - }, - "end": { - "$date": "2021-07-05T01:27:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c4e44abd-40e4-4233-a08b-590ff07a4a58", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-05T01:27:59.000Z" - }, - "end": { - "$date": "2021-07-05T01:31:14.000Z" - }, - "events": [ - { - "uuid": "5777877f-5f51-438d-97f2-b7c7fdcef166", - "start": { - "$date": "2021-07-05T01:27:59.000Z" - }, - "end": { - "$date": "2021-07-05T01:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a8a6e35-17ba-4508-9d7e-58937e75aab0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-05T02:13:18.000Z" - }, - "end": { - "$date": "2021-07-05T03:33:24.000Z" - }, - "events": [ - { - "uuid": "4d0f9958-719c-4497-8a54-2d13751df13d", - "start": { - "$date": "2021-07-05T02:13:18.000Z" - }, - "end": { - "$date": "2021-07-05T03:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7531bf0-d5ee-428a-afbf-85efd3f2c14a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T01:31:46.000Z" - }, - "end": { - "$date": "2021-07-05T02:10:12.000Z" - }, - "events": [ - { - "uuid": "799e4042-7c8f-4c39-b155-a9e167e3174d", - "start": { - "$date": "2021-07-05T01:31:46.000Z" - }, - "end": { - "$date": "2021-07-05T02:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6cfb3bc3-137f-454d-bc80-447018fbf2af", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-05T01:32:09.000Z" - }, - "end": { - "$date": "2021-07-05T02:10:06.000Z" - }, - "events": [ - { - "uuid": "1a830472-4803-4dcc-9e9b-5f0e7402b8e5", - "start": { - "$date": "2021-07-05T01:32:09.000Z" - }, - "end": { - "$date": "2021-07-05T02:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4905a203-21ed-42fa-8839-4a705dccd2f9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-05T01:38:49.000Z" - }, - "end": { - "$date": "2021-07-05T03:53:54.000Z" - }, - "events": [ - { - "uuid": "9a13cdfe-6dce-4dca-adf7-c58b89647075", - "start": { - "$date": "2021-07-05T01:38:49.000Z" - }, - "end": { - "$date": "2021-07-05T03:53:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0973f8db-d67d-470c-a613-c969b245ef19", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-05T02:13:06.000Z" - }, - "end": { - "$date": "2021-07-05T03:32:09.000Z" - }, - "events": [ - { - "uuid": "a8e0db2e-c2d2-488a-8d66-4a55284288e6", - "start": { - "$date": "2021-07-05T02:13:06.000Z" - }, - "end": { - "$date": "2021-07-05T03:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "a9924a93-ac81-47a8-a65a-d84ad96935a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T02:39:15.000Z" - }, - "end": { - "$date": "2021-07-05T03:35:19.000Z" - }, - "events": [ - { - "uuid": "2ac18b86-4c93-4071-9af4-25347e04a14c", - "start": { - "$date": "2021-07-05T02:39:15.000Z" - }, - "end": { - "$date": "2021-07-05T03:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df913281-fca2-44b8-b243-2fdb38b22819", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-05T03:33:14.000Z" - }, - "end": { - "$date": "2021-07-05T05:17:55.000Z" - }, - "events": [ - { - "uuid": "319a007b-b0f0-4ab7-aa03-1c4028cd1cdf", - "start": { - "$date": "2021-07-05T03:33:14.000Z" - }, - "end": { - "$date": "2021-07-05T05:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6de04778-53bb-4595-b0a9-885428689c9d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-05T03:33:35.000Z" - }, - "end": { - "$date": "2021-07-05T05:17:38.000Z" - }, - "events": [ - { - "uuid": "cdf20506-a520-478f-92bc-145551aad87e", - "start": { - "$date": "2021-07-05T03:33:35.000Z" - }, - "end": { - "$date": "2021-07-05T05:17:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a2ae7dbf-7783-4aea-b026-607983f74d5e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T03:35:39.000Z" - }, - "end": { - "$date": "2021-07-05T05:17:51.000Z" - }, - "events": [ - { - "uuid": "3bc58cb0-c61b-46e6-a123-6b359c414e65", - "start": { - "$date": "2021-07-05T03:35:39.000Z" - }, - "end": { - "$date": "2021-07-05T05:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "293eefb2-34a6-429e-97ee-6f20ec6acb44", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-05T04:25:34.000Z" - }, - "end": { - "$date": "2021-07-05T06:57:14.000Z" - }, - "events": [ - { - "uuid": "e2231d5a-4d27-465c-9541-8d550bd1cb62", - "start": { - "$date": "2021-07-05T04:25:34.000Z" - }, - "end": { - "$date": "2021-07-05T06:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "115018ea-de0e-4fe5-9ea5-a03474b1b718", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-04T21:57:29.000Z" - }, - "end": { - "$date": "2021-07-05T05:05:01.000Z" - }, - "events": [ - { - "uuid": "7dc48810-c777-4144-b227-a6155ad84f65", - "start": { - "$date": "2021-07-04T21:57:29.000Z" - }, - "end": { - "$date": "2021-07-05T05:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2a1cae04-942d-4e4d-9f89-c27faeadc7fe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-05T05:05:11.000Z" - }, - "end": { - "$date": "2021-07-05T07:51:00.000Z" - }, - "events": [ - { - "uuid": "feec8134-78a1-4d51-9baa-ecc5be8f889e", - "start": { - "$date": "2021-07-05T05:05:11.000Z" - }, - "end": { - "$date": "2021-07-05T07:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a09e1fac-5c6e-49fb-a8ec-63d353061390", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-05T05:57:21.000Z" - }, - "end": { - "$date": "2021-07-05T06:57:15.000Z" - }, - "events": [ - { - "uuid": "0a34f188-6d37-4f63-a100-372521358cba", - "start": { - "$date": "2021-07-05T05:57:21.000Z" - }, - "end": { - "$date": "2021-07-05T06:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "8dfe23b3-66cc-4e18-8d5a-112e432f5aee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T06:05:53.000Z" - }, - "end": { - "$date": "2021-07-05T08:00:46.000Z" - }, - "events": [ - { - "uuid": "9ba27ae9-2d43-491a-b9c9-16280e072a88", - "start": { - "$date": "2021-07-05T06:05:53.000Z" - }, - "end": { - "$date": "2021-07-05T08:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5c0c0fc0-4ef2-4727-84d5-dc8ee4b37e1c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-05T15:04:55.000Z" - }, - "end": { - "$date": "2021-07-05T15:18:47.000Z" - }, - "events": [ - { - "uuid": "11de0279-a87c-413d-b406-430fc802632f", - "start": { - "$date": "2021-07-05T15:04:55.000Z" - }, - "end": { - "$date": "2021-07-05T15:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "046d2b9f-dc82-4e5e-9c56-7c090a188127", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-05T15:25:18.000Z" - }, - "end": { - "$date": "2021-07-05T17:45:26.000Z" - }, - "events": [ - { - "uuid": "d865d53b-34a4-420a-9229-ff868077a6f3", - "start": { - "$date": "2021-07-05T15:25:18.000Z" - }, - "end": { - "$date": "2021-07-05T17:45:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "512f3cdb-c81d-428d-8379-87845d956a15", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-05T18:51:43.000Z" - }, - "end": { - "$date": "2021-07-05T19:02:10.000Z" - }, - "events": [ - { - "uuid": "ba04faf7-7fea-4b75-be92-1370e2ce3bc5", - "start": { - "$date": "2021-07-05T18:51:43.000Z" - }, - "end": { - "$date": "2021-07-05T21:59:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3a993c21-4a44-41c8-81a5-7f9d981c6d00", - "start": { - "$date": "2021-07-05T21:59:43.000Z" - }, - "end": { - "$date": "2021-07-05T22:04:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bda11850-275d-4627-b8f3-d39512bcbf3d", - "start": { - "$date": "2021-07-05T22:04:43.000Z" - }, - "end": { - "$date": "2021-07-05T22:14:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "92e7d218-e301-4ff2-a6ba-dfdeee2c1933", - "start": { - "$date": "2021-07-05T22:14:43.000Z" - }, - "end": { - "$date": "2021-07-05T19:02:10.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "3cb8262a-809f-4a06-a088-889aa12e4c9e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T17:41:24.000Z" - }, - "end": { - "$date": "2021-07-05T19:44:14.000Z" - }, - "events": [ - { - "uuid": "50b46723-ac3f-40c8-824e-d0316893d633", - "start": { - "$date": "2021-07-05T17:41:24.000Z" - }, - "end": { - "$date": "2021-07-05T17:56:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e25db2b6-d093-4473-92bf-4bb74a2c1ca1", - "start": { - "$date": "2021-07-05T17:56:24.000Z" - }, - "end": { - "$date": "2021-07-05T18:32:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "77fda72e-eda8-4de2-b586-77b377e9fd47", - "start": { - "$date": "2021-07-05T18:32:24.000Z" - }, - "end": { - "$date": "2021-07-05T18:35:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fdace4fd-8ad8-4016-b5b2-ead6c4c170c3", - "start": { - "$date": "2021-07-05T18:35:24.000Z" - }, - "end": { - "$date": "2021-07-05T18:40:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f0441e4-e49f-4543-8253-d61c4aa2d96b", - "start": { - "$date": "2021-07-05T18:40:24.000Z" - }, - "end": { - "$date": "2021-07-05T18:42:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "79c1695b-f38c-4682-9991-a202edc0deee", - "start": { - "$date": "2021-07-05T18:42:24.000Z" - }, - "end": { - "$date": "2021-07-05T18:49:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed198cc0-9b36-4c69-97ba-dffd536263c2", - "start": { - "$date": "2021-07-05T18:49:24.000Z" - }, - "end": { - "$date": "2021-07-05T19:44:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ae50996a-faa8-406c-8f82-afce58320f66", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-05T18:40:14.000Z" - }, - "end": { - "$date": "2021-07-05T18:51:32.000Z" - }, - "events": [ - { - "uuid": "934b4d4e-5512-41fd-9fce-fc32d9792f0d", - "start": { - "$date": "2021-07-05T18:40:14.000Z" - }, - "end": { - "$date": "2021-07-05T18:51:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "62a22088-92b3-44ef-8c21-d33b7909f8e8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-05T18:52:15.000Z" - }, - "end": { - "$date": "2021-07-05T20:27:53.000Z" - }, - "events": [ - { - "uuid": "1e4d0e57-fbdd-423d-b7ac-e455634effe3", - "start": { - "$date": "2021-07-05T18:52:15.000Z" - }, - "end": { - "$date": "2021-07-05T20:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "162ab8ed-18a9-4adc-a410-a42bbd280cbc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-05T19:00:40.000Z" - }, - "end": { - "$date": "2021-07-05T19:10:14.000Z" - }, - "events": [ - { - "uuid": "d84962d9-09f4-4f0f-8e3d-e553e9f4a1a2", - "start": { - "$date": "2021-07-05T19:00:40.000Z" - }, - "end": { - "$date": "2021-07-05T19:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "66e81c97-14a3-4483-8b27-65bb58a53276", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-05T19:31:28.000Z" - }, - "end": { - "$date": "2021-07-05T22:48:54.000Z" - }, - "events": [ - { - "uuid": "cad672fa-9b40-4550-a8dd-d2bbf2bab324", - "start": { - "$date": "2021-07-05T19:31:28.000Z" - }, - "end": { - "$date": "2021-07-05T21:39:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f418b29-2549-4c7a-9a09-ec4b4a00eef6", - "start": { - "$date": "2021-07-05T21:39:28.000Z" - }, - "end": { - "$date": "2021-07-05T21:44:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b530cd18-7a67-4070-a1df-b0f59765df5b", - "start": { - "$date": "2021-07-05T21:44:28.000Z" - }, - "end": { - "$date": "2021-07-05T22:48:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a55cad04-dda1-48f3-be0e-19a22d8eb8c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-05T19:40:08.000Z" - }, - "end": { - "$date": "2021-07-05T21:28:37.000Z" - }, - "events": [ - { - "uuid": "5905f538-8e65-4fd4-8938-f1617b4e9694", - "start": { - "$date": "2021-07-05T19:40:08.000Z" - }, - "end": { - "$date": "2021-07-05T21:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "693f3375-6b25-4ff4-a7de-a9d7ff2b95bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-05T19:41:13.000Z" - }, - "end": { - "$date": "2021-07-05T20:20:28.000Z" - }, - "events": [ - { - "uuid": "0bc8a166-71d4-4866-bc7c-000ebb66c22b", - "start": { - "$date": "2021-07-05T19:41:13.000Z" - }, - "end": { - "$date": "2021-07-05T20:20:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5de3da7c-1a9a-44e0-823c-e9b8706e01ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-06T00:43:22.000Z" - }, - "end": { - "$date": "2021-07-05T20:20:33.000Z" - }, - "events": [ - { - "uuid": "6fd7e0bc-5459-4b89-8656-75c29e9d1cc1", - "start": { - "$date": "2021-07-06T00:43:22.000Z" - }, - "end": { - "$date": "2021-07-05T20:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce295f0d-6a23-462d-a754-a394aa136505", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-05T19:44:35.000Z" - }, - "end": { - "$date": "2021-07-05T20:20:29.000Z" - }, - "events": [ - { - "uuid": "84990a79-e6a1-4947-9dbe-c9117be3b48e", - "start": { - "$date": "2021-07-05T19:44:35.000Z" - }, - "end": { - "$date": "2021-07-05T20:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "5f7972e5-3dae-4e4c-85ba-27fc78d037b4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-05T20:28:36.000Z" - }, - "end": { - "$date": "2021-07-06T00:03:51.000Z" - }, - "events": [ - { - "uuid": "ee4c6172-9f98-4437-b251-2bc13236c347", - "start": { - "$date": "2021-07-05T20:28:36.000Z" - }, - "end": { - "$date": "2021-07-05T23:44:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4910bdda-0487-41f4-bf10-4a2952d3e1c6", - "start": { - "$date": "2021-07-05T23:44:36.000Z" - }, - "end": { - "$date": "2021-07-06T00:03:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "90fe9999-e974-4458-92f9-82c133e6b1cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-05T20:42:33.000Z" - }, - "end": { - "$date": "2021-07-06T06:26:45.000Z" - }, - "events": [ - { - "uuid": "0aa53fb3-c73a-4520-8a7a-e45221da0822", - "start": { - "$date": "2021-07-05T20:42:33.000Z" - }, - "end": { - "$date": "2021-07-06T01:41:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed5838f9-4e3a-4dc9-9f62-8fc64ec18730", - "start": { - "$date": "2021-07-06T01:41:33.000Z" - }, - "end": { - "$date": "2021-07-06T01:49:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bec43872-1591-4d1d-ab7b-65a6f4136e7d", - "start": { - "$date": "2021-07-06T01:49:33.000Z" - }, - "end": { - "$date": "2021-07-06T02:11:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36710345-069e-4896-ab41-5c81359fee53", - "start": { - "$date": "2021-07-06T02:11:33.000Z" - }, - "end": { - "$date": "2021-07-06T02:14:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b24fc790-109d-4fc1-b95c-d2634c48d27c", - "start": { - "$date": "2021-07-06T02:14:33.000Z" - }, - "end": { - "$date": "2021-07-06T02:27:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1c44318-e14c-4eb0-9425-d35dc4efd8fc", - "start": { - "$date": "2021-07-06T02:27:33.000Z" - }, - "end": { - "$date": "2021-07-06T02:30:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59d631d1-a9e4-4d0a-a53e-5c0c5a464498", - "start": { - "$date": "2021-07-06T02:30:33.000Z" - }, - "end": { - "$date": "2021-07-06T06:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "858011d4-1782-40dc-9bd0-1c96fa484711", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-05T22:50:44.000Z" - }, - "end": { - "$date": "2021-07-06T00:22:37.000Z" - }, - "events": [ - { - "uuid": "8277150d-a7c9-49e8-b0b7-50d2f20d7d03", - "start": { - "$date": "2021-07-05T22:50:44.000Z" - }, - "end": { - "$date": "2021-07-06T00:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8b8389e5-ca27-443e-bd3b-288fba926590", - "uuid": "93696252-568a-4679-a106-52425283d72b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T00:04:03.000Z" - }, - "end": { - "$date": "2021-07-06T00:14:45.000Z" - }, - "events": [ - { - "uuid": "b41d9d46-93d2-4aab-ad58-a1390e470d72", - "start": { - "$date": "2021-07-06T00:04:03.000Z" - }, - "end": { - "$date": "2021-07-06T00:14:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "14598388-ac30-4547-bea4-f9f0e6f06a2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-06T00:52:04.000Z" - }, - "end": { - "$date": "2021-07-06T01:07:05.000Z" - }, - "events": [ - { - "uuid": "e1b25cba-f644-447e-a69a-13004ba43062", - "start": { - "$date": "2021-07-06T00:52:04.000Z" - }, - "end": { - "$date": "2021-07-06T01:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2b1604db-3402-4db6-ad5d-4ba2f573981b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-06T01:09:15.000Z" - }, - "end": { - "$date": "2021-07-06T01:26:31.000Z" - }, - "events": [ - { - "uuid": "01f92303-d6d6-4c2d-a68f-f247dca44617", - "start": { - "$date": "2021-07-06T01:09:15.000Z" - }, - "end": { - "$date": "2021-07-06T01:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2543edbb-4f45-47c5-8250-a3bd8ddcf384", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-06T01:32:16.000Z" - }, - "end": { - "$date": "2021-07-06T01:47:27.000Z" - }, - "events": [ - { - "uuid": "3d61f6ca-0b9b-43ff-a2f6-a9ea332c9398", - "start": { - "$date": "2021-07-06T01:32:16.000Z" - }, - "end": { - "$date": "2021-07-06T01:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "623b2db9-390d-4aa6-8251-3ef6ddd73dc3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T01:37:08.000Z" - }, - "end": { - "$date": "2021-07-06T02:00:35.000Z" - }, - "events": [ - { - "uuid": "9d7598b0-9891-420a-b63c-6ba134d6f6d7", - "start": { - "$date": "2021-07-06T01:37:08.000Z" - }, - "end": { - "$date": "2021-07-06T02:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ba34c56c-9589-4eaa-b4fe-d43729c7077a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T02:28:58.000Z" - }, - "end": { - "$date": "2021-07-06T07:07:35.000Z" - }, - "events": [ - { - "uuid": "006213ef-c61c-4f8e-8055-c060e6b6ccc3", - "start": { - "$date": "2021-07-06T02:28:58.000Z" - }, - "end": { - "$date": "2021-07-06T07:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6d8f4d3e-7cd0-4584-9a2e-ba1460946c84", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-06T02:29:16.000Z" - }, - "end": { - "$date": "2021-07-06T04:53:20.000Z" - }, - "events": [ - { - "uuid": "cdee6215-8d5f-4271-b07d-5ff9b182fd3b", - "start": { - "$date": "2021-07-06T02:29:16.000Z" - }, - "end": { - "$date": "2021-07-06T04:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8b8389e5-ca27-443e-bd3b-288fba926590", - "uuid": "400a2067-0661-497e-b09b-d69fc61cfb58", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T02:41:26.000Z" - }, - "end": { - "$date": "2021-07-06T02:59:29.000Z" - }, - "events": [ - { - "uuid": "d0277a4f-7449-4663-9a70-658af0a5a75d", - "start": { - "$date": "2021-07-06T02:41:26.000Z" - }, - "end": { - "$date": "2021-07-06T02:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "cdaf69f0-18e0-495b-9cd8-3fe929941699", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-06T02:46:11.000Z" - }, - "end": { - "$date": "2021-07-06T04:08:59.000Z" - }, - "events": [ - { - "uuid": "e420ffff-2c17-4bd4-8d02-e76a1219ac94", - "start": { - "$date": "2021-07-06T02:46:11.000Z" - }, - "end": { - "$date": "2021-07-06T04:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "63634bf2-9bde-4327-aaad-312ed4537c08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-06T04:57:59.000Z" - }, - "end": { - "$date": "2021-07-06T06:58:32.000Z" - }, - "events": [ - { - "uuid": "3df60e93-c540-43f5-851d-ba51d0beab77", - "start": { - "$date": "2021-07-06T04:57:59.000Z" - }, - "end": { - "$date": "2021-07-06T06:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cabf4b71-38db-4bd1-b7ad-883cefadec20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-06T05:12:22.000Z" - }, - "end": { - "$date": "2021-07-06T06:14:39.000Z" - }, - "events": [ - { - "uuid": "acd96558-bd9a-4d91-afb7-1ea92ec236a9", - "start": { - "$date": "2021-07-06T05:12:22.000Z" - }, - "end": { - "$date": "2021-07-06T06:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "16cc938e-2fbf-4c66-9d8f-a5699f08b312", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T16:13:15.000Z" - }, - "end": { - "$date": "2021-07-06T18:14:15.000Z" - }, - "events": [ - { - "uuid": "fd5d3ccf-df55-4a57-b34f-2fde0e4f1a74", - "start": { - "$date": "2021-07-06T16:13:15.000Z" - }, - "end": { - "$date": "2021-07-06T16:25:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1d9b2ab-3e23-4cbe-8580-2fd8e1a1189b", - "start": { - "$date": "2021-07-06T16:25:15.000Z" - }, - "end": { - "$date": "2021-07-06T16:51:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "460a1175-c033-483c-868d-3c5c39c234b2", - "start": { - "$date": "2021-07-06T16:51:15.000Z" - }, - "end": { - "$date": "2021-07-06T18:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "ccdbee2d-115b-48a8-babb-e413a41c80c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-06T16:46:47.000Z" - }, - "end": { - "$date": "2021-07-06T16:58:42.000Z" - }, - "events": [ - { - "uuid": "df595f0c-c18a-4608-ab84-b0f1e88124a6", - "start": { - "$date": "2021-07-06T16:46:47.000Z" - }, - "end": { - "$date": "2021-07-06T16:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "6bc5bead-82f7-4987-8d0e-31b91848f90b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-06T17:13:31.000Z" - }, - "end": { - "$date": "2021-07-06T19:10:56.000Z" - }, - "events": [ - { - "uuid": "9372a5c7-3b9f-4b56-8175-21d83a6ae0a5", - "start": { - "$date": "2021-07-06T17:13:31.000Z" - }, - "end": { - "$date": "2021-07-06T19:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "770fbeab-37fb-4bdb-a4d1-ad7aad16e698", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T17:17:14.000Z" - }, - "end": { - "$date": "2021-07-06T18:07:12.000Z" - }, - "events": [ - { - "uuid": "f92702ae-28b3-4f18-a6e9-80bcc873c553", - "start": { - "$date": "2021-07-06T17:17:14.000Z" - }, - "end": { - "$date": "2021-07-06T18:07:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "994237ab-80d5-43ca-b517-95606f214c32", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T18:09:12.000Z" - }, - "end": { - "$date": "2021-07-06T20:46:11.000Z" - }, - "events": [ - { - "uuid": "eda7f737-d971-4f9f-859b-04e04d8df9ab", - "start": { - "$date": "2021-07-06T18:09:12.000Z" - }, - "end": { - "$date": "2021-07-06T20:40:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5507117-b6fb-44b2-a09b-a7ce2145bfa5", - "start": { - "$date": "2021-07-06T20:40:12.000Z" - }, - "end": { - "$date": "2021-07-06T20:46:11.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dd2bc19f-aa0f-45d6-95da-a6ef93a76025", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T18:14:26.000Z" - }, - "end": { - "$date": "2021-07-06T20:14:11.000Z" - }, - "events": [ - { - "uuid": "9164432d-13d2-40ab-afa9-0b08f90b0076", - "start": { - "$date": "2021-07-06T18:14:26.000Z" - }, - "end": { - "$date": "2021-07-06T20:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3815710b-075f-4c6f-8d43-532fc3ef6fa5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-06T19:24:46.000Z" - }, - "end": { - "$date": "2021-07-06T20:01:57.000Z" - }, - "events": [ - { - "uuid": "8cda8541-5ce5-4982-b8d7-85d84dc61d04", - "start": { - "$date": "2021-07-06T19:24:46.000Z" - }, - "end": { - "$date": "2021-07-06T20:01:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "59f6faf7-ec72-4806-8261-ad7071e8b8f1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-06T19:55:31.000Z" - }, - "end": { - "$date": "2021-07-06T21:13:32.000Z" - }, - "events": [ - { - "uuid": "273f75ab-0243-4a79-aa6c-cfd984f76224", - "start": { - "$date": "2021-07-06T19:55:31.000Z" - }, - "end": { - "$date": "2021-07-06T21:13:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "3dbfeac1-3983-4b57-aa40-f2468f6bce49", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T20:20:48.000Z" - }, - "end": { - "$date": "2021-07-06T21:35:25.000Z" - }, - "events": [ - { - "uuid": "4d9b4cce-6d51-47f9-b3c4-c54f9f05384a", - "start": { - "$date": "2021-07-06T20:20:48.000Z" - }, - "end": { - "$date": "2021-07-06T21:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "862eb3d0-00e8-4614-b997-cc8d1f07dc45", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T20:48:11.000Z" - }, - "end": { - "$date": "2021-07-06T20:51:42.000Z" - }, - "events": [ - { - "uuid": "29f73a92-a293-4e4c-9a03-eb541cc89a06", - "start": { - "$date": "2021-07-06T20:48:11.000Z" - }, - "end": { - "$date": "2021-07-06T20:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "abd50082-d64b-4115-8775-368380c14473", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T21:32:53.000Z" - }, - "end": { - "$date": "2021-07-06T22:06:24.000Z" - }, - "events": [ - { - "uuid": "d0f0c23d-5869-4e84-96b8-2549ca8d8b55", - "start": { - "$date": "2021-07-06T21:32:53.000Z" - }, - "end": { - "$date": "2021-07-06T22:06:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6ad8e8c3-9669-4df0-9807-dfe6ca8e7bf8", - "uuid": "d0792dc1-c8b6-462c-b9ef-3e50aa90c734", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T21:41:06.000Z" - }, - "end": { - "$date": "2021-07-06T22:04:41.000Z" - }, - "events": [ - { - "uuid": "8f48b052-2f54-486b-9e1f-ce76611aa772", - "start": { - "$date": "2021-07-06T21:41:06.000Z" - }, - "end": { - "$date": "2021-07-06T22:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d6de4dc-4ccf-4ce7-9e02-ba03dbf8809d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T22:36:07.000Z" - }, - "end": { - "$date": "2021-07-06T22:40:13.000Z" - }, - "events": [ - { - "uuid": "723a8d12-a80b-4933-9a92-df96dd71ccb5", - "start": { - "$date": "2021-07-06T22:36:07.000Z" - }, - "end": { - "$date": "2021-07-06T22:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "369c794b-10c3-4525-9be8-aab5bc6c4e5a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T22:42:49.000Z" - }, - "end": { - "$date": "2021-07-06T23:06:22.000Z" - }, - "events": [ - { - "uuid": "f988b8db-a115-4c47-b2f0-fb0961ca23d5", - "start": { - "$date": "2021-07-06T22:42:49.000Z" - }, - "end": { - "$date": "2021-07-06T23:06:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "fb4ab920-0b1a-4b93-8936-3221ef905a48", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T22:43:13.000Z" - }, - "end": { - "$date": "2021-07-06T23:08:27.000Z" - }, - "events": [ - { - "uuid": "100d6927-7c2b-48a5-8d32-59934f21af59", - "start": { - "$date": "2021-07-06T22:43:13.000Z" - }, - "end": { - "$date": "2021-07-06T23:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ca20c11b-124a-414a-872c-e1c4f00c4751", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-06T22:48:27.000Z" - }, - "end": { - "$date": "2021-07-06T23:33:15.000Z" - }, - "events": [ - { - "uuid": "a2420cce-5ac5-454e-a1e5-f3e2296d76eb", - "start": { - "$date": "2021-07-06T22:48:27.000Z" - }, - "end": { - "$date": "2021-07-06T23:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f3a8df29-a061-4a0d-bd00-4b00f16aac67", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-06T21:46:25.000Z" - }, - "end": { - "$date": "2021-07-07T05:16:56.000Z" - }, - "events": [ - { - "uuid": "697aa530-664b-42e4-b310-6ec07bb269f9", - "start": { - "$date": "2021-07-06T21:46:25.000Z" - }, - "end": { - "$date": "2021-07-07T02:32:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a24ff24a-2b80-4769-be26-24a461f3545a", - "start": { - "$date": "2021-07-07T02:32:25.000Z" - }, - "end": { - "$date": "2021-07-07T02:36:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa0d184f-a3b0-4dec-8db1-b6c2b1056e23", - "start": { - "$date": "2021-07-07T02:36:25.000Z" - }, - "end": { - "$date": "2021-07-07T05:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "36e4e3d3-d293-4e5d-8430-538a5d169fa0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T23:09:21.000Z" - }, - "end": { - "$date": "2021-07-06T23:17:13.000Z" - }, - "events": [ - { - "uuid": "2f668f41-a716-46b6-a8fe-233b681bc103", - "start": { - "$date": "2021-07-06T23:09:21.000Z" - }, - "end": { - "$date": "2021-07-06T23:17:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4cab3425-4a19-4286-842f-5263f0172228", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-06T23:10:04.000Z" - }, - "end": { - "$date": "2021-07-06T23:51:01.000Z" - }, - "events": [ - { - "uuid": "c59ca592-433e-4801-a1c0-123782d355f2", - "start": { - "$date": "2021-07-06T23:10:04.000Z" - }, - "end": { - "$date": "2021-07-06T23:51:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "32afa08a-9218-486c-ad99-6f78458dbd3c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T23:10:08.000Z" - }, - "end": { - "$date": "2021-07-06T23:12:18.000Z" - }, - "events": [ - { - "uuid": "b8816543-fd34-4cbe-9d20-54a5a653e442", - "start": { - "$date": "2021-07-06T23:10:08.000Z" - }, - "end": { - "$date": "2021-07-06T23:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3691bae4-1a3b-47a2-8dba-3a692652254d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-06T23:18:07.000Z" - }, - "end": { - "$date": "2021-07-06T23:51:05.000Z" - }, - "events": [ - { - "uuid": "758dbbf6-c959-4f39-8d7e-c4af60367de8", - "start": { - "$date": "2021-07-06T23:18:07.000Z" - }, - "end": { - "$date": "2021-07-06T23:51:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "01f481e6-8d50-4544-9fad-8b6e404232de", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-06T23:34:40.000Z" - }, - "end": { - "$date": "2021-07-07T01:04:49.000Z" - }, - "events": [ - { - "uuid": "989ead78-c8af-4c8a-8315-cab2da451e55", - "start": { - "$date": "2021-07-06T23:34:40.000Z" - }, - "end": { - "$date": "2021-07-07T01:04:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "4e9ce4e8-3884-41c1-a2c9-ff261e1a4db0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-06T23:57:22.000Z" - }, - "end": { - "$date": "2021-07-07T00:02:48.000Z" - }, - "events": [ - { - "uuid": "bc1033e4-a0aa-4be7-852b-a4ea26b60d30", - "start": { - "$date": "2021-07-06T23:57:22.000Z" - }, - "end": { - "$date": "2021-07-07T00:02:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "c262877e-12c9-41b0-9122-414cbe44ae24", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T00:04:04.000Z" - }, - "end": { - "$date": "2021-07-07T00:47:46.000Z" - }, - "events": [ - { - "uuid": "668c5ad6-99ea-42f1-a79b-32d1f5c3471b", - "start": { - "$date": "2021-07-07T00:04:04.000Z" - }, - "end": { - "$date": "2021-07-07T00:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c81fa22f-a8bf-4e80-892e-5d4c411cf79d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T00:20:50.000Z" - }, - "end": { - "$date": "2021-07-07T00:40:20.000Z" - }, - "events": [ - { - "uuid": "071c5f65-d840-4817-991d-1aa5834051a9", - "start": { - "$date": "2021-07-07T00:20:50.000Z" - }, - "end": { - "$date": "2021-07-07T00:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "83c96d69-ed25-4691-b076-82249fd1f2e9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-07T00:53:38.000Z" - }, - "end": { - "$date": "2021-07-07T01:41:27.000Z" - }, - "events": [ - { - "uuid": "601f5d5e-1a45-496d-b148-bdc20e36c929", - "start": { - "$date": "2021-07-07T00:53:38.000Z" - }, - "end": { - "$date": "2021-07-07T01:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a11cfdc1-5327-4840-8479-b1a304b65f1f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T01:10:08.000Z" - }, - "end": { - "$date": "2021-07-07T01:41:14.000Z" - }, - "events": [ - { - "uuid": "0562b7d0-f0d2-4c23-8c5c-4b7bbd869342", - "start": { - "$date": "2021-07-07T01:10:08.000Z" - }, - "end": { - "$date": "2021-07-07T01:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "c6ffd1c8-7740-43d9-9197-4f8570896bb3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T01:40:42.000Z" - }, - "end": { - "$date": "2021-07-07T01:55:49.000Z" - }, - "events": [ - { - "uuid": "a4503b47-e4a6-476a-8e97-78445ee2250b", - "start": { - "$date": "2021-07-07T01:40:42.000Z" - }, - "end": { - "$date": "2021-07-07T01:55:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "072edc4a-0e28-4c83-9a0d-062ec5b5549e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-07T01:41:47.000Z" - }, - "end": { - "$date": "2021-07-07T03:34:56.000Z" - }, - "events": [ - { - "uuid": "54e00db3-cfd8-4add-897d-ecfdd5914b8a", - "start": { - "$date": "2021-07-07T01:41:47.000Z" - }, - "end": { - "$date": "2021-07-07T03:34:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "b97c4e3a-b129-46ff-b35d-ca666dc64160", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-07T01:42:40.000Z" - }, - "end": { - "$date": "2021-07-07T03:34:41.000Z" - }, - "events": [ - { - "uuid": "08657818-425a-49ad-8338-2e7cd35c0c4f", - "start": { - "$date": "2021-07-07T01:42:40.000Z" - }, - "end": { - "$date": "2021-07-07T03:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1be090de-5b0b-4d7e-9420-0d4f6ff99ae9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T01:55:54.000Z" - }, - "end": { - "$date": "2021-07-07T02:34:06.000Z" - }, - "events": [ - { - "uuid": "01b3fee5-6c51-4c89-89af-138661bebc57", - "start": { - "$date": "2021-07-07T01:55:54.000Z" - }, - "end": { - "$date": "2021-07-07T02:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5aaec3f6-757b-42c4-a033-3c8b7b331363", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T01:57:48.000Z" - }, - "end": { - "$date": "2021-07-07T03:32:21.000Z" - }, - "events": [ - { - "uuid": "c2923158-a932-47c2-af72-88caf1c2613d", - "start": { - "$date": "2021-07-07T01:57:48.000Z" - }, - "end": { - "$date": "2021-07-07T02:19:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a15655fa-0d84-40ad-97d3-7ea6af6ebd21", - "start": { - "$date": "2021-07-07T02:19:48.000Z" - }, - "end": { - "$date": "2021-07-07T02:52:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6465ad85-d17e-4ef2-b36c-db2c053fe49e", - "start": { - "$date": "2021-07-07T02:52:48.000Z" - }, - "end": { - "$date": "2021-07-07T03:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "e1af7450-2881-479f-8af5-120a5ba51ee9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T02:34:26.000Z" - }, - "end": { - "$date": "2021-07-07T02:50:41.000Z" - }, - "events": [ - { - "uuid": "f89d1c40-03ce-4b53-adfd-2fefe032e54b", - "start": { - "$date": "2021-07-07T02:34:26.000Z" - }, - "end": { - "$date": "2021-07-07T02:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4e5371b2-e054-4ac6-986c-34ff46c4d28b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T03:32:50.000Z" - }, - "end": { - "$date": "2021-07-07T03:56:28.000Z" - }, - "events": [ - { - "uuid": "0c5c93d6-f28a-470a-a0fb-74f61af568c9", - "start": { - "$date": "2021-07-07T03:32:50.000Z" - }, - "end": { - "$date": "2021-07-07T03:56:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9d292c45-2120-43e6-bb12-4d4cd105f96e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T03:47:27.000Z" - }, - "end": { - "$date": "2021-07-07T06:38:47.000Z" - }, - "events": [ - { - "uuid": "c5dd9c97-f4f4-4db5-b7bf-df79172c0aeb", - "start": { - "$date": "2021-07-07T03:47:27.000Z" - }, - "end": { - "$date": "2021-07-07T04:41:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64e9ecff-ad7a-46b2-a72f-1b248e4ed288", - "start": { - "$date": "2021-07-07T04:41:27.000Z" - }, - "end": { - "$date": "2021-07-07T04:43:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db8332bf-d1c8-4125-a1d8-c7acb0817d11", - "start": { - "$date": "2021-07-07T04:43:27.000Z" - }, - "end": { - "$date": "2021-07-07T04:45:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80050a3a-a946-45e8-babb-d4822d373701", - "start": { - "$date": "2021-07-07T04:45:27.000Z" - }, - "end": { - "$date": "2021-07-07T04:48:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1a40d40-3979-4932-9cf6-8d6b4c65812c", - "start": { - "$date": "2021-07-07T04:48:27.000Z" - }, - "end": { - "$date": "2021-07-07T05:12:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8fb92a5-34ca-416b-b1b9-09f4d8188255", - "start": { - "$date": "2021-07-07T05:12:27.000Z" - }, - "end": { - "$date": "2021-07-07T06:38:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ea1444db-1b85-4baa-bb72-3195a38baeae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T03:50:32.000Z" - }, - "end": { - "$date": "2021-07-07T03:54:57.000Z" - }, - "events": [ - { - "uuid": "f6a8e35e-2e91-482c-993c-a77cb20b16e0", - "start": { - "$date": "2021-07-07T03:50:32.000Z" - }, - "end": { - "$date": "2021-07-07T03:54:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3eca232a-7596-4320-ac05-dcf123955b5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-07T03:52:11.000Z" - }, - "end": { - "$date": "2021-07-07T05:59:42.000Z" - }, - "events": [ - { - "uuid": "2afbcf78-c263-4aa7-a9a8-a94ac0c478c7", - "start": { - "$date": "2021-07-07T03:52:11.000Z" - }, - "end": { - "$date": "2021-07-07T05:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "51686f72-6a17-4a4e-bb86-4cc7fbb03972", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T03:58:10.000Z" - }, - "end": { - "$date": "2021-07-07T04:42:00.000Z" - }, - "events": [ - { - "uuid": "65f86dda-4e84-431a-bbdf-c5688cd48a38", - "start": { - "$date": "2021-07-07T03:58:10.000Z" - }, - "end": { - "$date": "2021-07-07T04:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "082b169c-3e6b-4841-8eff-e3d3f64874d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T03:58:20.000Z" - }, - "end": { - "$date": "2021-07-07T04:30:45.000Z" - }, - "events": [ - { - "uuid": "7e43c9b9-53bb-4a15-b6ed-d4a6339d7a15", - "start": { - "$date": "2021-07-07T03:58:20.000Z" - }, - "end": { - "$date": "2021-07-07T04:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c61862a8-865a-4e0d-b309-e6ea08fd5570", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-07T03:59:10.000Z" - }, - "end": { - "$date": "2021-07-07T04:38:11.000Z" - }, - "events": [ - { - "uuid": "bda3e685-6fa8-4a87-83ca-151c9fa08a33", - "start": { - "$date": "2021-07-07T03:59:10.000Z" - }, - "end": { - "$date": "2021-07-07T04:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a388dbf0-d2da-4e37-8633-d11d9427ff27", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T03:59:28.000Z" - }, - "end": { - "$date": "2021-07-07T04:38:20.000Z" - }, - "events": [ - { - "uuid": "77f9a29e-09b1-4c5c-9134-f186c7eb8608", - "start": { - "$date": "2021-07-07T03:59:28.000Z" - }, - "end": { - "$date": "2021-07-07T04:38:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f4375ce9-3d71-4932-a9cf-565ccb54ca1e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T04:39:57.000Z" - }, - "end": { - "$date": "2021-07-07T05:26:48.000Z" - }, - "events": [ - { - "uuid": "69a5aa51-1e3c-4c9f-b8d1-afef437be102", - "start": { - "$date": "2021-07-07T04:39:57.000Z" - }, - "end": { - "$date": "2021-07-07T05:26:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "51983b2c-a8f1-4c5c-b2a4-85093ab904bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T04:42:51.000Z" - }, - "end": { - "$date": "2021-07-07T05:27:04.000Z" - }, - "events": [ - { - "uuid": "fc432b63-6289-45f2-818a-38bd5ec20fda", - "start": { - "$date": "2021-07-07T04:42:51.000Z" - }, - "end": { - "$date": "2021-07-07T05:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "8df6601c-2cbd-4462-9511-1fc4ffd942ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T05:29:19.000Z" - }, - "end": { - "$date": "2021-07-07T07:39:45.000Z" - }, - "events": [ - { - "uuid": "139a4d52-0c8b-40de-be63-044746d56dab", - "start": { - "$date": "2021-07-07T05:29:19.000Z" - }, - "end": { - "$date": "2021-07-07T07:39:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae1b58d1-ebbe-4df1-8c73-c3c15aa0b0ab", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-07T06:07:46.000Z" - }, - "end": { - "$date": "2021-07-07T06:30:23.000Z" - }, - "events": [ - { - "uuid": "3fdf86bc-59f2-4667-89a8-ffeb477c3695", - "start": { - "$date": "2021-07-07T06:07:46.000Z" - }, - "end": { - "$date": "2021-07-07T06:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f64dc0ae-6af6-4d59-b42e-9cb2c145ce2c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-07T06:40:25.000Z" - }, - "end": { - "$date": "2021-07-07T07:16:33.000Z" - }, - "events": [ - { - "uuid": "42ea33be-0e9c-4ee5-b811-a5d9914580f2", - "start": { - "$date": "2021-07-07T06:40:25.000Z" - }, - "end": { - "$date": "2021-07-07T07:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "2175f075-c58a-48df-ab01-6346c5bde744", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T07:07:36.000Z" - }, - "end": { - "$date": "2021-07-07T07:51:08.000Z" - }, - "events": [ - { - "uuid": "33b38b25-fde7-44c0-8340-9baf53bb19cd", - "start": { - "$date": "2021-07-07T07:07:36.000Z" - }, - "end": { - "$date": "2021-07-07T07:51:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7cef26a9-b74c-4605-8613-f872f1994838", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T13:59:55.000Z" - }, - "end": { - "$date": "2021-07-07T15:51:29.000Z" - }, - "events": [ - { - "uuid": "5820cb00-851e-42c6-982d-c64facc11173", - "start": { - "$date": "2021-07-07T13:59:55.000Z" - }, - "end": { - "$date": "2021-07-07T15:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bd80b4d7-100c-4b08-9651-d863a9797165", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T15:51:38.000Z" - }, - "end": { - "$date": "2021-07-07T15:59:00.000Z" - }, - "events": [ - { - "uuid": "31dbd198-2f15-4514-90b5-6617a5e166f5", - "start": { - "$date": "2021-07-07T15:51:38.000Z" - }, - "end": { - "$date": "2021-07-07T15:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "50feccb9-13bd-42c8-851f-da472f42dd1e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T15:59:09.000Z" - }, - "end": { - "$date": "2021-07-07T16:13:51.000Z" - }, - "events": [ - { - "uuid": "6f10dbd1-6627-4aba-a9e4-7ac9d116e7c1", - "start": { - "$date": "2021-07-07T15:59:09.000Z" - }, - "end": { - "$date": "2021-07-07T16:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d0e4670b-010c-4ddb-9ef1-41be47390a38", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T16:20:26.000Z" - }, - "end": { - "$date": "2021-07-07T16:34:43.000Z" - }, - "events": [ - { - "uuid": "c9b28ff1-8bc4-4534-892f-b76c823d7429", - "start": { - "$date": "2021-07-07T16:20:26.000Z" - }, - "end": { - "$date": "2021-07-07T16:34:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "fc53a6ab-f399-4460-bc1c-5516532d8c56", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T16:36:24.000Z" - }, - "end": { - "$date": "2021-07-07T16:53:04.000Z" - }, - "events": [ - { - "uuid": "b8603803-d28b-4ac9-bceb-d771eb82fd0d", - "start": { - "$date": "2021-07-07T16:36:24.000Z" - }, - "end": { - "$date": "2021-07-07T16:53:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "ae3cfb4a-1a19-4bf9-9b44-134e752d77cf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T16:54:50.000Z" - }, - "end": { - "$date": "2021-07-07T17:06:12.000Z" - }, - "events": [ - { - "uuid": "ae8cdfa9-882e-4b2c-8892-059860027ee1", - "start": { - "$date": "2021-07-07T16:54:50.000Z" - }, - "end": { - "$date": "2021-07-07T17:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "702658b7-200d-469f-b4fc-8c922d8ff7e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T16:58:56.000Z" - }, - "end": { - "$date": "2021-07-07T17:01:05.000Z" - }, - "events": [ - { - "uuid": "55698592-0296-4885-befe-02a9036090ca", - "start": { - "$date": "2021-07-07T16:58:56.000Z" - }, - "end": { - "$date": "2021-07-07T17:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "e01cfa8a-af14-4283-bf12-257237187718", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T17:03:06.000Z" - }, - "end": { - "$date": "2021-07-07T17:24:01.000Z" - }, - "events": [ - { - "uuid": "a4570089-5e75-4284-8f84-6717dffa47ed", - "start": { - "$date": "2021-07-07T17:03:06.000Z" - }, - "end": { - "$date": "2021-07-07T17:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86225278-d365-42cc-add8-0984dedad7d7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T17:19:16.000Z" - }, - "end": { - "$date": "2021-07-07T18:44:51.000Z" - }, - "events": [ - { - "uuid": "8330dbd5-4bac-4a63-a387-62ae88c595cc", - "start": { - "$date": "2021-07-07T17:19:16.000Z" - }, - "end": { - "$date": "2021-07-07T18:06:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88a6545e-ad95-4332-b7b0-bc3249453aee", - "start": { - "$date": "2021-07-07T18:06:16.000Z" - }, - "end": { - "$date": "2021-07-07T18:07:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "16db8071-18e3-4a2c-9d1b-1d4239406ba6", - "start": { - "$date": "2021-07-07T18:07:16.000Z" - }, - "end": { - "$date": "2021-07-07T18:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0656cf31-e6df-4dc5-b16f-27e1780870d2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-07T17:20:11.000Z" - }, - "end": { - "$date": "2021-07-07T19:42:55.000Z" - }, - "events": [ - { - "uuid": "5b5def57-c664-46b6-b105-53b68cf90f25", - "start": { - "$date": "2021-07-07T17:20:11.000Z" - }, - "end": { - "$date": "2021-07-07T19:42:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "722c71ec-b9e5-47ef-9628-c5b182af4c37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T17:57:42.000Z" - }, - "end": { - "$date": "2021-07-07T21:01:15.000Z" - }, - "events": [ - { - "uuid": "84215574-2c42-4a2c-96e4-684562377775", - "start": { - "$date": "2021-07-07T17:57:42.000Z" - }, - "end": { - "$date": "2021-07-07T21:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4ed6263d-060c-4783-93b6-61286098a6b3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-07T21:18:36.000Z" - }, - "end": { - "$date": "2021-07-08T00:11:19.000Z" - }, - "events": [ - { - "uuid": "c4f608b5-42f1-4b31-87f9-0ab105a31a0f", - "start": { - "$date": "2021-07-07T21:18:36.000Z" - }, - "end": { - "$date": "2021-07-08T00:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "25fadba8-88a1-4024-9d38-49c6ba8be907", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T21:33:28.000Z" - }, - "end": { - "$date": "2021-07-07T22:00:34.000Z" - }, - "events": [ - { - "uuid": "175df9f0-a6aa-4a65-a6e5-af9e591f6285", - "start": { - "$date": "2021-07-07T21:33:28.000Z" - }, - "end": { - "$date": "2021-07-07T22:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0d187e84-f29f-4548-b581-602977ba0156", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-07T22:05:15.000Z" - }, - "end": { - "$date": "2021-07-07T22:29:26.000Z" - }, - "events": [ - { - "uuid": "aefd2865-c75b-425f-9f34-aac5f160b292", - "start": { - "$date": "2021-07-07T22:05:15.000Z" - }, - "end": { - "$date": "2021-07-07T22:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c62e89f-4b42-4048-8d59-17ad44021a3b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-07T22:14:03.000Z" - }, - "end": { - "$date": "2021-07-07T23:10:19.000Z" - }, - "events": [ - { - "uuid": "71da544a-b087-4da6-9003-93ebe1b002de", - "start": { - "$date": "2021-07-07T22:14:03.000Z" - }, - "end": { - "$date": "2021-07-07T22:38:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1753a23f-9b59-4b0a-b7c9-9c6396af6fd9", - "start": { - "$date": "2021-07-07T22:38:03.000Z" - }, - "end": { - "$date": "2021-07-07T22:43:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ab5d8ef5-dc6e-4937-8223-27c47d4449d9", - "start": { - "$date": "2021-07-07T22:43:03.000Z" - }, - "end": { - "$date": "2021-07-07T22:53:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "887ea5c3-c2c6-4237-a682-8fa785e197d9", - "start": { - "$date": "2021-07-07T22:53:03.000Z" - }, - "end": { - "$date": "2021-07-07T22:57:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "16ee8a1d-3b39-475c-be9b-99a17ddba6a6", - "start": { - "$date": "2021-07-07T22:57:03.000Z" - }, - "end": { - "$date": "2021-07-07T23:10:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2ebb3e3-7ce1-480d-8f37-898d316dca5b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-07T22:24:32.000Z" - }, - "end": { - "$date": "2021-07-08T01:22:51.000Z" - }, - "events": [ - { - "uuid": "4f58b652-6c43-48e8-a0cc-ecff979b0d06", - "start": { - "$date": "2021-07-07T22:24:32.000Z" - }, - "end": { - "$date": "2021-07-07T23:33:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0f2a082-f6aa-43f1-8e22-db9e4119c256", - "start": { - "$date": "2021-07-07T23:33:32.000Z" - }, - "end": { - "$date": "2021-07-07T23:35:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e887b1e3-7425-4034-9025-e9d08465f784", - "start": { - "$date": "2021-07-07T23:35:32.000Z" - }, - "end": { - "$date": "2021-07-08T01:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "dbd28c61-57f6-4903-878d-826ac26f73f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-07T23:10:28.000Z" - }, - "end": { - "$date": "2021-07-08T00:26:42.000Z" - }, - "events": [ - { - "uuid": "2df9117a-deeb-42d1-8c69-70043392e1e6", - "start": { - "$date": "2021-07-07T23:10:28.000Z" - }, - "end": { - "$date": "2021-07-08T00:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "66d9651f-527b-4cbb-9c56-950a5b65115d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-08T01:06:11.000Z" - }, - "end": { - "$date": "2021-07-08T01:06:16.000Z" - }, - "events": [ - { - "uuid": "4b8153dc-86d8-4e48-ac73-c2633b1b53f5", - "start": { - "$date": "2021-07-08T01:06:11.000Z" - }, - "end": { - "$date": "2021-07-08T01:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6c991e1a-5127-49df-b4f7-9325ec287476", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-08T01:19:48.000Z" - }, - "end": { - "$date": "2021-07-08T03:15:13.000Z" - }, - "events": [ - { - "uuid": "a98b5d6f-cc18-4ae6-9ef1-5fb62fee6ccd", - "start": { - "$date": "2021-07-08T01:19:48.000Z" - }, - "end": { - "$date": "2021-07-08T03:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "33401d56-cb5d-46b7-a13c-d63202b64721", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T01:44:43.000Z" - }, - "end": { - "$date": "2021-07-08T03:20:49.000Z" - }, - "events": [ - { - "uuid": "af991101-d864-49cf-ae90-7748404f4a47", - "start": { - "$date": "2021-07-08T01:44:43.000Z" - }, - "end": { - "$date": "2021-07-08T03:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bbf744c6-21fc-48fb-8ab9-dbce0dae64a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-08T01:46:47.000Z" - }, - "end": { - "$date": "2021-07-08T03:14:46.000Z" - }, - "events": [ - { - "uuid": "dc34fac1-e807-4996-ac73-edd6e3ab4b99", - "start": { - "$date": "2021-07-08T01:46:47.000Z" - }, - "end": { - "$date": "2021-07-08T03:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9f41b8c9-63f1-48b5-a23d-98a0737607ae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-08T01:56:43.000Z" - }, - "end": { - "$date": "2021-07-08T06:49:20.000Z" - }, - "events": [ - { - "uuid": "871634d8-e987-4d8b-aafc-87a5325ec88c", - "start": { - "$date": "2021-07-08T01:56:43.000Z" - }, - "end": { - "$date": "2021-07-08T06:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "227d86f5-36e6-4e4c-b985-67c9fdc69510", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-08T02:27:15.000Z" - }, - "end": { - "$date": "2021-07-08T03:09:46.000Z" - }, - "events": [ - { - "uuid": "b07fc32c-fb88-44a0-8671-6d9f58917421", - "start": { - "$date": "2021-07-08T02:27:15.000Z" - }, - "end": { - "$date": "2021-07-08T03:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1980a1d6-9459-4bff-b5c3-a243b6ecf3f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-08T03:02:08.000Z" - }, - "end": { - "$date": "2021-07-08T03:58:40.000Z" - }, - "events": [ - { - "uuid": "218faca8-4da5-4edc-a31b-1d70db1b1b80", - "start": { - "$date": "2021-07-08T03:02:08.000Z" - }, - "end": { - "$date": "2021-07-08T03:13:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0adb3d99-8cf9-4b64-aaee-0611d3ab4218", - "start": { - "$date": "2021-07-08T03:13:08.000Z" - }, - "end": { - "$date": "2021-07-08T03:24:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8300ffb-3e0f-43ee-99db-b0d87c27fad3", - "start": { - "$date": "2021-07-08T03:24:08.000Z" - }, - "end": { - "$date": "2021-07-08T03:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "61dfcee9-f20b-4420-af78-f7f2ac803fbf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-08T03:09:53.000Z" - }, - "end": { - "$date": "2021-07-08T03:48:58.000Z" - }, - "events": [ - { - "uuid": "2fc892e5-f7e1-4d92-811c-45bf81eacdbf", - "start": { - "$date": "2021-07-08T03:09:53.000Z" - }, - "end": { - "$date": "2021-07-08T03:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "326dccee-21b1-442d-8405-690a3d85f041", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-08T03:15:16.000Z" - }, - "end": { - "$date": "2021-07-08T04:23:37.000Z" - }, - "events": [ - { - "uuid": "5c261e49-083a-4c22-b907-538b687859e3", - "start": { - "$date": "2021-07-08T03:15:16.000Z" - }, - "end": { - "$date": "2021-07-08T04:23:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9bd6b336-9343-4520-a1d6-5502275e6c05", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-08T03:16:18.000Z" - }, - "end": { - "$date": "2021-07-08T04:24:01.000Z" - }, - "events": [ - { - "uuid": "9f19b3f7-3856-441a-942f-b064eb2e1a69", - "start": { - "$date": "2021-07-08T03:16:18.000Z" - }, - "end": { - "$date": "2021-07-08T04:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "db7c18ab-db7c-46fe-a7fa-83e62d84ad06", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T03:44:34.000Z" - }, - "end": { - "$date": "2021-07-08T05:14:34.000Z" - }, - "events": [ - { - "uuid": "1bac3575-c587-4cc0-87b9-a09ba7ec1b8b", - "start": { - "$date": "2021-07-08T03:44:34.000Z" - }, - "end": { - "$date": "2021-07-08T05:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3aba0fbb-9e6e-424b-ae15-0d89d50ef846", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-08T04:01:50.000Z" - }, - "end": { - "$date": "2021-07-08T05:08:00.000Z" - }, - "events": [ - { - "uuid": "8e1348a5-fe5f-429f-a8e8-0589b6048bda", - "start": { - "$date": "2021-07-08T04:01:50.000Z" - }, - "end": { - "$date": "2021-07-08T05:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "08fe72b6-3f87-4ce7-83ee-1ab5ebaffe85", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-08T04:02:15.000Z" - }, - "end": { - "$date": "2021-07-08T05:08:06.000Z" - }, - "events": [ - { - "uuid": "35f6286f-acc2-473d-b038-6694cf8da864", - "start": { - "$date": "2021-07-08T04:02:15.000Z" - }, - "end": { - "$date": "2021-07-08T05:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "0849f701-f0f2-45db-b3df-2efb9c3b789a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T05:16:20.000Z" - }, - "end": { - "$date": "2021-07-08T05:19:22.000Z" - }, - "events": [ - { - "uuid": "bdfcc140-93e6-43c2-b8f3-d31bbf7898a4", - "start": { - "$date": "2021-07-08T05:16:20.000Z" - }, - "end": { - "$date": "2021-07-08T05:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "32b73f55-8429-41a2-8ef3-469b2c476c24", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-08T05:22:01.000Z" - }, - "end": { - "$date": "2021-07-08T05:43:21.000Z" - }, - "events": [ - { - "uuid": "e7cbfa1b-0d19-49bd-b476-06508c115af9", - "start": { - "$date": "2021-07-08T05:22:01.000Z" - }, - "end": { - "$date": "2021-07-08T05:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "05a9beaa-f4f2-49d6-a1b3-e50aa12f74a5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T05:25:58.000Z" - }, - "end": { - "$date": "2021-07-08T07:54:23.000Z" - }, - "events": [ - { - "uuid": "0a8989e0-cdf9-440e-8369-561d1d508bd3", - "start": { - "$date": "2021-07-08T05:25:58.000Z" - }, - "end": { - "$date": "2021-07-08T07:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "97466374-dcde-4938-bdb1-c10d6ec6ad13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-08T05:34:52.000Z" - }, - "end": { - "$date": "2021-07-08T05:42:54.000Z" - }, - "events": [ - { - "uuid": "a7ca9a5c-bbe1-4dd0-bad8-1ef11eb263bb", - "start": { - "$date": "2021-07-08T05:34:52.000Z" - }, - "end": { - "$date": "2021-07-08T05:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ae1c65a-c400-4096-84c4-116de7264970", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-08T06:12:36.000Z" - }, - "end": { - "$date": "2021-07-08T06:44:52.000Z" - }, - "events": [ - { - "uuid": "762af4f6-372c-45a6-9b5f-e573c1b637f8", - "start": { - "$date": "2021-07-08T06:12:36.000Z" - }, - "end": { - "$date": "2021-07-08T06:44:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37d68c3d-a620-4554-beac-ff0242fba465", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-08T06:46:01.000Z" - }, - "end": { - "$date": "2021-07-08T06:53:09.000Z" - }, - "events": [ - { - "uuid": "5bc26429-c488-4179-8248-128dcc9b6c38", - "start": { - "$date": "2021-07-08T06:46:01.000Z" - }, - "end": { - "$date": "2021-07-08T06:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "ecfdbd38-e12c-45e0-8c9c-06ad8a18de24", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-08T15:15:36.000Z" - }, - "end": { - "$date": "2021-07-08T15:15:42.000Z" - }, - "events": [ - { - "uuid": "eddcd5fa-24c8-43c6-9de3-ff86c1ed6684", - "start": { - "$date": "2021-07-08T15:15:36.000Z" - }, - "end": { - "$date": "2021-07-08T15:15:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b92a9297-5120-4b9f-8601-4b9d78f88ff4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-08T15:55:52.000Z" - }, - "end": { - "$date": "2021-07-08T18:26:05.000Z" - }, - "events": [ - { - "uuid": "4119f783-c117-4ff7-9bb3-af05169f76a4", - "start": { - "$date": "2021-07-08T15:55:52.000Z" - }, - "end": { - "$date": "2021-07-08T18:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "61d5b475-eeae-45fa-9705-bbebe47f7ba0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-08T16:08:31.000Z" - }, - "end": { - "$date": "2021-07-08T18:24:51.000Z" - }, - "events": [ - { - "uuid": "c6acf35f-fc1a-4000-becf-fce90fcbee5f", - "start": { - "$date": "2021-07-08T16:08:31.000Z" - }, - "end": { - "$date": "2021-07-08T18:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b7d257e0-dae0-46f4-a01c-0591f18f6b01", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-08T17:55:34.000Z" - }, - "end": { - "$date": "2021-07-08T17:58:55.000Z" - }, - "events": [ - { - "uuid": "e610c9bd-0dc4-4007-96ae-c756f7c968f0", - "start": { - "$date": "2021-07-08T17:55:34.000Z" - }, - "end": { - "$date": "2021-07-08T17:58:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "1bb3b186-5afc-4854-a411-81db03c35d8d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-08T23:30:51.000Z" - }, - "end": { - "$date": "2021-07-08T23:30:56.000Z" - }, - "events": [ - { - "uuid": "8565177d-97c8-4aab-8632-f0902c735cb5", - "start": { - "$date": "2021-07-08T23:30:51.000Z" - }, - "end": { - "$date": "2021-07-08T23:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "74ffa3ae-aecf-447d-9356-73776cff2e6b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-08T20:37:49.000Z" - }, - "end": { - "$date": "2021-07-08T21:41:36.000Z" - }, - "events": [ - { - "uuid": "9cb16d9d-c86a-4cc0-ae4f-e5e3884ce890", - "start": { - "$date": "2021-07-08T20:37:49.000Z" - }, - "end": { - "$date": "2021-07-08T21:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f19626d6-7d62-467a-b357-232def59bdce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T21:23:16.000Z" - }, - "end": { - "$date": "2021-07-08T21:23:13.000Z" - }, - "events": [ - { - "uuid": "9a637f56-983b-4f89-8749-daad1cd410d9", - "start": { - "$date": "2021-07-08T21:23:16.000Z" - }, - "end": { - "$date": "2021-07-08T21:23:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdc15f4e-965d-492e-ab53-d30364709f96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-08T21:26:48.000Z" - }, - "end": { - "$date": "2021-07-08T21:50:45.000Z" - }, - "events": [ - { - "uuid": "eb447260-e502-405f-acac-b54f46d1b5c9", - "start": { - "$date": "2021-07-08T21:26:48.000Z" - }, - "end": { - "$date": "2021-07-08T21:50:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dfeb71a-ec63-4552-854d-38ab7979f82f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T21:25:59.000Z" - }, - "end": { - "$date": "2021-07-08T21:50:42.000Z" - }, - "events": [ - { - "uuid": "d066e238-d492-4b75-8dee-812894c526a6", - "start": { - "$date": "2021-07-08T21:25:59.000Z" - }, - "end": { - "$date": "2021-07-08T21:50:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "6a24f7fe-1f06-4227-960f-a444fde69535", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-08T21:41:42.000Z" - }, - "end": { - "$date": "2021-07-08T22:56:45.000Z" - }, - "events": [ - { - "uuid": "4b83bfe0-ddb3-4b7e-b1d9-ff09954599ae", - "start": { - "$date": "2021-07-08T21:41:42.000Z" - }, - "end": { - "$date": "2021-07-08T22:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5aff1faa-db00-478c-9600-6a9ec2d21d37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T21:55:00.000Z" - }, - "end": { - "$date": "2021-07-08T22:22:47.000Z" - }, - "events": [ - { - "uuid": "1b624816-4cec-4b6b-9480-b5956c9280b3", - "start": { - "$date": "2021-07-08T21:55:00.000Z" - }, - "end": { - "$date": "2021-07-08T22:22:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa8e25e5-b05e-4544-961c-8c3fc300a000", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-08T21:56:09.000Z" - }, - "end": { - "$date": "2021-07-08T22:22:44.000Z" - }, - "events": [ - { - "uuid": "7fbae3a9-eebc-46c9-bb4d-471268f4a83c", - "start": { - "$date": "2021-07-08T21:56:09.000Z" - }, - "end": { - "$date": "2021-07-08T22:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b78c992a-6b4d-48df-9b21-0e95c4aa0c4c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-08T21:56:49.000Z" - }, - "end": { - "$date": "2021-07-08T22:11:36.000Z" - }, - "events": [ - { - "uuid": "4b3ef143-3812-4f1f-8e62-e960e12035a3", - "start": { - "$date": "2021-07-08T21:56:49.000Z" - }, - "end": { - "$date": "2021-07-08T22:11:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5b405415-e569-427c-b71d-26a693b692b2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-08T22:11:50.000Z" - }, - "end": { - "$date": "2021-07-08T23:46:53.000Z" - }, - "events": [ - { - "uuid": "d36495f0-3d2d-4236-b74a-33b96fa6aa19", - "start": { - "$date": "2021-07-08T22:11:50.000Z" - }, - "end": { - "$date": "2021-07-08T23:25:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "172a36bb-bf57-4aaa-ac64-170e0e044e41", - "start": { - "$date": "2021-07-08T23:25:50.000Z" - }, - "end": { - "$date": "2021-07-08T23:30:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c155e44-fbc5-4aca-9a7c-c50dfc85580d", - "start": { - "$date": "2021-07-08T23:30:50.000Z" - }, - "end": { - "$date": "2021-07-08T23:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a4c76ba-3526-4379-99d1-e55bf015865f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T22:27:27.000Z" - }, - "end": { - "$date": "2021-07-08T22:44:11.000Z" - }, - "events": [ - { - "uuid": "c23c199b-a47c-45bb-afcf-883b6b72508b", - "start": { - "$date": "2021-07-08T22:27:27.000Z" - }, - "end": { - "$date": "2021-07-08T22:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2792bcb1-acfa-460e-aa0a-cbfffd8e510c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-08T22:28:15.000Z" - }, - "end": { - "$date": "2021-07-08T22:44:00.000Z" - }, - "events": [ - { - "uuid": "130844aa-9210-469c-a2a9-01693534f055", - "start": { - "$date": "2021-07-08T22:28:15.000Z" - }, - "end": { - "$date": "2021-07-08T22:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2691890-6d83-473e-a0e7-faf161baf17a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T22:47:03.000Z" - }, - "end": { - "$date": "2021-07-08T23:16:34.000Z" - }, - "events": [ - { - "uuid": "9aae4fcf-b170-4fc3-9fd7-986ebbbbb8dc", - "start": { - "$date": "2021-07-08T22:47:03.000Z" - }, - "end": { - "$date": "2021-07-08T23:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "db4db870-a631-446f-ba7e-2a9d7e0146f1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-08T23:17:56.000Z" - }, - "end": { - "$date": "2021-07-08T23:43:06.000Z" - }, - "events": [ - { - "uuid": "887e8e07-a64b-4144-8b43-0f511b4b70bf", - "start": { - "$date": "2021-07-08T23:17:56.000Z" - }, - "end": { - "$date": "2021-07-08T23:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "c93f1a86-8948-4842-88ec-8972abe6534f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-08T23:26:16.000Z" - }, - "end": { - "$date": "2021-07-09T00:53:24.000Z" - }, - "events": [ - { - "uuid": "35f78858-8175-4e6b-8d5f-3568451e11ba", - "start": { - "$date": "2021-07-08T23:26:16.000Z" - }, - "end": { - "$date": "2021-07-08T23:53:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78679b11-4688-443a-a15d-b913cfc12ed2", - "start": { - "$date": "2021-07-08T23:53:16.000Z" - }, - "end": { - "$date": "2021-07-09T00:51:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "826f0f19-cfc5-43a3-b7fc-b0784a791778", - "start": { - "$date": "2021-07-09T00:51:16.000Z" - }, - "end": { - "$date": "2021-07-09T00:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "2fdd0e40-f6fd-4883-8242-7c3b20b5013c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-09T01:21:53.000Z" - }, - "end": { - "$date": "2021-07-09T01:21:58.000Z" - }, - "events": [ - { - "uuid": "c262e374-d1be-41c2-b4d4-6c6e442aeb43", - "start": { - "$date": "2021-07-09T01:21:53.000Z" - }, - "end": { - "$date": "2021-07-09T01:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "513ba13c-59b3-4e83-adf6-7626bf480323", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-08T23:47:12.000Z" - }, - "end": { - "$date": "2021-07-09T01:00:23.000Z" - }, - "events": [ - { - "uuid": "d66c6973-521e-4044-b0df-31d347b818e7", - "start": { - "$date": "2021-07-08T23:47:12.000Z" - }, - "end": { - "$date": "2021-07-09T00:50:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44537009-9036-410b-b4fa-b38d20ad3fe9", - "start": { - "$date": "2021-07-09T00:50:12.000Z" - }, - "end": { - "$date": "2021-07-09T00:54:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a342658-1641-44e3-b814-7f3277251e60", - "start": { - "$date": "2021-07-09T00:54:12.000Z" - }, - "end": { - "$date": "2021-07-09T01:00:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "f4665082-bef5-42f2-a779-233b37e93757", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T00:54:35.000Z" - }, - "end": { - "$date": "2021-07-09T03:01:22.000Z" - }, - "events": [ - { - "uuid": "4ffe37a7-b1a1-4d19-8722-7e8d8eac72eb", - "start": { - "$date": "2021-07-09T00:54:35.000Z" - }, - "end": { - "$date": "2021-07-09T03:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "96b7001c-cc4e-429b-ba0e-716cec3641c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-09T01:25:00.000Z" - }, - "end": { - "$date": "2021-07-09T01:36:30.000Z" - }, - "events": [ - { - "uuid": "b20b0cc6-3412-4785-97e4-95493ba2de13", - "start": { - "$date": "2021-07-09T01:25:00.000Z" - }, - "end": { - "$date": "2021-07-09T01:36:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "30183682-e791-4d8c-bbfd-e863dadc185e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-09T01:25:04.000Z" - }, - "end": { - "$date": "2021-07-09T02:04:01.000Z" - }, - "events": [ - { - "uuid": "172f8356-d730-41fe-97c5-3eebb7d96445", - "start": { - "$date": "2021-07-09T01:25:04.000Z" - }, - "end": { - "$date": "2021-07-09T02:04:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a7991ca9-1e40-4128-adf4-8658e0d34448", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-09T01:51:16.000Z" - }, - "end": { - "$date": "2021-07-09T04:40:43.000Z" - }, - "events": [ - { - "uuid": "af059060-d019-4207-8284-e266d8f7b408", - "start": { - "$date": "2021-07-09T01:51:16.000Z" - }, - "end": { - "$date": "2021-07-09T03:08:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea67da79-4ba6-4fbc-86e6-dbae534f5fdb", - "start": { - "$date": "2021-07-09T03:08:16.000Z" - }, - "end": { - "$date": "2021-07-09T03:09:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f92f794-dcf9-45d4-97b6-294f0da50b01", - "start": { - "$date": "2021-07-09T03:09:16.000Z" - }, - "end": { - "$date": "2021-07-09T03:14:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f077da8-8565-4e42-8a6c-f7f07cd23ab6", - "start": { - "$date": "2021-07-09T03:14:16.000Z" - }, - "end": { - "$date": "2021-07-09T03:20:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d0c121e9-f5ba-463a-a9d8-5fef19a3459a", - "start": { - "$date": "2021-07-09T03:20:16.000Z" - }, - "end": { - "$date": "2021-07-09T04:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0420fe7d-e7fc-43c6-b0a7-d6d2c124be30", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-09T02:06:51.000Z" - }, - "end": { - "$date": "2021-07-09T03:27:00.000Z" - }, - "events": [ - { - "uuid": "202e40f8-d8c6-44fc-8e62-fccc16c61222", - "start": { - "$date": "2021-07-09T02:06:51.000Z" - }, - "end": { - "$date": "2021-07-09T03:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "94b0201b-cb03-4802-8df7-5832e983e174", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-09T02:18:36.000Z" - }, - "end": { - "$date": "2021-07-09T04:56:02.000Z" - }, - "events": [ - { - "uuid": "1eabbb43-2450-4e71-aa01-829b330a99c1", - "start": { - "$date": "2021-07-09T02:18:36.000Z" - }, - "end": { - "$date": "2021-07-09T04:56:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3211c474-5451-4378-ba83-ac8d9e6f5e55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-09T02:56:19.000Z" - }, - "end": { - "$date": "2021-07-09T04:55:39.000Z" - }, - "events": [ - { - "uuid": "ae7b4798-2ff9-40e2-b172-03a91ff5c265", - "start": { - "$date": "2021-07-09T02:56:19.000Z" - }, - "end": { - "$date": "2021-07-09T04:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c5556534-3622-4beb-8943-c8272c7ae613", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T03:22:16.000Z" - }, - "end": { - "$date": "2021-07-09T04:55:54.000Z" - }, - "events": [ - { - "uuid": "f7518ebb-93cc-4e34-8b34-da04242ddb12", - "start": { - "$date": "2021-07-09T03:22:16.000Z" - }, - "end": { - "$date": "2021-07-09T04:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94a7736f-51f1-4ada-a45f-1dbf88c2290f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-09T04:00:37.000Z" - }, - "end": { - "$date": "2021-07-09T04:30:03.000Z" - }, - "events": [ - { - "uuid": "e0339612-f626-447c-98cb-c5ae0d7b85ba", - "start": { - "$date": "2021-07-09T04:00:37.000Z" - }, - "end": { - "$date": "2021-07-09T04:30:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "02e525d4-98a0-4460-b921-571012f7a8c7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-09T04:19:39.000Z" - }, - "end": { - "$date": "2021-07-09T04:55:51.000Z" - }, - "events": [ - { - "uuid": "2694c553-a084-4ca7-abfe-9ee2060a540f", - "start": { - "$date": "2021-07-09T04:19:39.000Z" - }, - "end": { - "$date": "2021-07-09T04:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddf6e713-f965-473d-9112-1351a7c7622b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-09T04:36:31.000Z" - }, - "end": { - "$date": "2021-07-09T05:12:48.000Z" - }, - "events": [ - { - "uuid": "dcc7d90d-a615-4aa1-9356-90287ee7826c", - "start": { - "$date": "2021-07-09T04:36:31.000Z" - }, - "end": { - "$date": "2021-07-09T05:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3695e4e9-4e70-4303-a011-2a44493155a6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-09T04:40:53.000Z" - }, - "end": { - "$date": "2021-07-09T09:37:55.000Z" - }, - "events": [ - { - "uuid": "d382217f-a693-48d1-a984-a44eec217367", - "start": { - "$date": "2021-07-09T04:40:53.000Z" - }, - "end": { - "$date": "2021-07-09T09:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "fa7e8793-b0ab-45d2-a396-43545c29f875", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-09T06:11:39.000Z" - }, - "end": { - "$date": "2021-07-09T06:11:45.000Z" - }, - "events": [ - { - "uuid": "4dfe5ba8-c2f4-431a-bef0-0ced9c22c439", - "start": { - "$date": "2021-07-09T06:11:39.000Z" - }, - "end": { - "$date": "2021-07-09T06:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49d0ab57-9826-4b82-bb9f-a3f91dad76ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T05:29:49.000Z" - }, - "end": { - "$date": "2021-07-09T05:29:49.000Z" - }, - "events": [ - { - "uuid": "22b93db1-4304-42d7-9a8c-c7ffc0834320", - "start": { - "$date": "2021-07-09T05:29:49.000Z" - }, - "end": { - "$date": "2021-07-09T05:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d12439ad-926a-4d96-bcc7-ee51c1cc2637", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-09T05:09:26.000Z" - }, - "end": { - "$date": "2021-07-09T05:11:15.000Z" - }, - "events": [ - { - "uuid": "41751bae-43b1-4bc3-bf92-864f755e99c6", - "start": { - "$date": "2021-07-09T05:09:26.000Z" - }, - "end": { - "$date": "2021-07-09T05:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "245edefc-df1d-4a48-b225-25f18bd5ff9a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T05:34:33.000Z" - }, - "end": { - "$date": "2021-07-09T06:01:49.000Z" - }, - "events": [ - { - "uuid": "9c5fd601-9d60-42e7-b7a9-c39b83a8a425", - "start": { - "$date": "2021-07-09T05:34:33.000Z" - }, - "end": { - "$date": "2021-07-09T06:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dce51e5a-9b87-42a8-bea2-61b3919878f1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-09T05:35:07.000Z" - }, - "end": { - "$date": "2021-07-09T06:01:42.000Z" - }, - "events": [ - { - "uuid": "e43ff91b-32ba-4493-a793-12cb964d4fe7", - "start": { - "$date": "2021-07-09T05:35:07.000Z" - }, - "end": { - "$date": "2021-07-09T06:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f180283-68fb-4b5e-ab7f-3fdfc2b91cba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T06:04:41.000Z" - }, - "end": { - "$date": "2021-07-09T06:27:51.000Z" - }, - "events": [ - { - "uuid": "2ff73962-b9d1-4653-aea1-f4fa188a07fc", - "start": { - "$date": "2021-07-09T06:04:41.000Z" - }, - "end": { - "$date": "2021-07-09T06:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dfca3ed-8008-402c-812f-cfb37787dbea", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-09T06:04:43.000Z" - }, - "end": { - "$date": "2021-07-09T06:27:53.000Z" - }, - "events": [ - { - "uuid": "aeb81867-7d40-4273-a17e-16247db3187b", - "start": { - "$date": "2021-07-09T06:04:43.000Z" - }, - "end": { - "$date": "2021-07-09T06:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28e27adb-0c68-4b46-91f5-fec17302c746", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T06:28:29.000Z" - }, - "end": { - "$date": "2021-07-09T06:33:20.000Z" - }, - "events": [ - { - "uuid": "f453babf-9a1b-447d-801f-94f45a7ccfcf", - "start": { - "$date": "2021-07-09T06:28:29.000Z" - }, - "end": { - "$date": "2021-07-09T06:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfca967e-d933-4f66-b420-560ff2e0e841", - "uuid": "4d6738ed-523d-4106-af1a-9425018d3f0b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T06:35:14.000Z" - }, - "end": { - "$date": "2021-07-09T19:48:48.000Z" - }, - "events": [ - { - "uuid": "be5070e0-1cdd-46ce-b22b-792b03cb5bf1", - "start": { - "$date": "2021-07-09T06:35:14.000Z" - }, - "end": { - "$date": "2021-07-09T08:21:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e141c116-9a42-4657-a865-5f3a59371d79", - "start": { - "$date": "2021-07-09T08:21:14.000Z" - }, - "end": { - "$date": "2021-07-09T15:09:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dd590e7c-146a-4c0e-8a0e-3c3c3094752e", - "start": { - "$date": "2021-07-09T15:09:14.000Z" - }, - "end": { - "$date": "2021-07-09T19:29:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7397d47-105c-4d70-bbfd-31ed25b7fa10", - "start": { - "$date": "2021-07-09T19:29:14.000Z" - }, - "end": { - "$date": "2021-07-09T19:46:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "30e0a010-3eda-4bd0-a2ce-ff3484c79986", - "start": { - "$date": "2021-07-09T19:46:14.000Z" - }, - "end": { - "$date": "2021-07-09T19:48:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "925171ad-baf3-4d7c-895c-372c30d34b80", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-09T14:30:49.000Z" - }, - "end": { - "$date": "2021-07-09T16:06:50.000Z" - }, - "events": [ - { - "uuid": "edc1e3e5-ca72-4a1b-8774-ef64532aefbe", - "start": { - "$date": "2021-07-09T14:30:49.000Z" - }, - "end": { - "$date": "2021-07-09T16:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f6178ee6-acb0-4f63-aaf8-0789b9a5dbb7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-09T14:47:26.000Z" - }, - "end": { - "$date": "2021-07-09T15:49:06.000Z" - }, - "events": [ - { - "uuid": "1c39137e-ceba-4273-89f9-7e834b584120", - "start": { - "$date": "2021-07-09T14:47:26.000Z" - }, - "end": { - "$date": "2021-07-09T15:49:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "e6646cc9-b418-4ba4-9407-14db562b4be7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-09T16:00:32.000Z" - }, - "end": { - "$date": "2021-07-09T19:05:53.000Z" - }, - "events": [ - { - "uuid": "855a8341-595b-4b61-9d75-677f2a89de00", - "start": { - "$date": "2021-07-09T16:00:32.000Z" - }, - "end": { - "$date": "2021-07-09T18:37:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d637f332-b5cc-4d5b-8ff2-8a19dc1b6b56", - "start": { - "$date": "2021-07-09T18:37:32.000Z" - }, - "end": { - "$date": "2021-07-09T19:05:53.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "a5b993ea-b03f-4dc3-a56e-8d10bbdc7fd5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-09T19:21:55.000Z" - }, - "end": { - "$date": "2021-07-09T19:40:27.000Z" - }, - "events": [ - { - "uuid": "c3c8d56e-912d-4ad6-a792-428fdefd0bc1", - "start": { - "$date": "2021-07-09T19:21:55.000Z" - }, - "end": { - "$date": "2021-07-09T19:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "143587aa-4c4a-4ec8-aceb-a043a7191d8f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-09T19:41:01.000Z" - }, - "end": { - "$date": "2021-07-09T21:22:36.000Z" - }, - "events": [ - { - "uuid": "940afb8a-b420-4546-ac41-76d707e4c376", - "start": { - "$date": "2021-07-09T19:41:01.000Z" - }, - "end": { - "$date": "2021-07-09T19:54:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "720f00b1-7b9a-42a6-9509-25d831bcea4a", - "start": { - "$date": "2021-07-09T19:54:01.000Z" - }, - "end": { - "$date": "2021-07-09T19:59:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "951f6344-355a-4ee9-b416-c78c3571611c", - "start": { - "$date": "2021-07-09T19:59:01.000Z" - }, - "end": { - "$date": "2021-07-09T21:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "de08254f-3f0b-4317-bdae-947feceb3d32", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-09T21:05:49.000Z" - }, - "end": { - "$date": "2021-07-09T22:39:24.000Z" - }, - "events": [ - { - "uuid": "ed682aea-aaed-47bb-8f79-e583293d41af", - "start": { - "$date": "2021-07-09T21:05:49.000Z" - }, - "end": { - "$date": "2021-07-09T22:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f416d007-50a2-41b6-8a3b-6c5fb72f22ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-09T22:35:59.000Z" - }, - "end": { - "$date": "2021-07-10T00:06:30.000Z" - }, - "events": [ - { - "uuid": "4b11bcfa-3513-4b64-a0ca-b8a0d2321067", - "start": { - "$date": "2021-07-09T22:35:59.000Z" - }, - "end": { - "$date": "2021-07-09T23:50:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95b7fdff-fc8c-48f3-820d-65665d7b1122", - "start": { - "$date": "2021-07-09T23:50:59.000Z" - }, - "end": { - "$date": "2021-07-09T23:57:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0578d9b2-9b70-46e7-9668-7453b0ca267a", - "start": { - "$date": "2021-07-09T23:57:59.000Z" - }, - "end": { - "$date": "2021-07-10T00:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab719214-fec0-42d7-aadc-274ad3ceb7a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-09T23:01:24.000Z" - }, - "end": { - "$date": "2021-07-10T00:47:07.000Z" - }, - "events": [ - { - "uuid": "bcbfa74b-52c9-4ffd-bd30-8e75c3c697df", - "start": { - "$date": "2021-07-09T23:01:24.000Z" - }, - "end": { - "$date": "2021-07-10T00:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4ecf4566-7e08-4b37-bfb9-f55c270f427c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-09T23:01:38.000Z" - }, - "end": { - "$date": "2021-07-10T00:49:08.000Z" - }, - "events": [ - { - "uuid": "988a869d-7210-431b-828e-75402a3d04e9", - "start": { - "$date": "2021-07-09T23:01:38.000Z" - }, - "end": { - "$date": "2021-07-10T00:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24016841-6b34-41c8-9ceb-40fba7ff1ed9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-09T23:01:42.000Z" - }, - "end": { - "$date": "2021-07-10T01:16:31.000Z" - }, - "events": [ - { - "uuid": "afc60f55-3cc2-4cc6-b8aa-b9b805a27f3e", - "start": { - "$date": "2021-07-09T23:01:42.000Z" - }, - "end": { - "$date": "2021-07-10T01:16:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d07103ba-7da9-436a-8e2e-af92f3bb9f5d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T02:01:24.000Z" - }, - "end": { - "$date": "2021-07-10T02:13:25.000Z" - }, - "events": [ - { - "uuid": "544e9c80-9d41-49d0-bc0e-883887949cc9", - "start": { - "$date": "2021-07-10T02:01:24.000Z" - }, - "end": { - "$date": "2021-07-10T02:27:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a41c0ab8-462e-4722-9228-5b82dda9a3a3", - "start": { - "$date": "2021-07-10T02:27:24.000Z" - }, - "end": { - "$date": "2021-07-10T02:50:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "35e2ee34-1228-46ce-92a9-1d1ae0307303", - "start": { - "$date": "2021-07-10T02:50:24.000Z" - }, - "end": { - "$date": "2021-07-10T02:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7be039aa-1279-4a60-8f34-520c6ff6efbc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T02:16:10.000Z" - }, - "end": { - "$date": "2021-07-10T02:43:26.000Z" - }, - "events": [ - { - "uuid": "49dc0682-6832-4089-bc11-c8605ef8d6b1", - "start": { - "$date": "2021-07-10T02:16:10.000Z" - }, - "end": { - "$date": "2021-07-10T02:43:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9472f58a-b82a-4cf7-b2da-0184091a574f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-10T02:40:14.000Z" - }, - "end": { - "$date": "2021-07-10T02:53:01.000Z" - }, - "events": [ - { - "uuid": "09ef92c0-afca-4bab-8e88-9486ee5b9ee5", - "start": { - "$date": "2021-07-10T02:40:14.000Z" - }, - "end": { - "$date": "2021-07-10T02:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "332a3299-aa69-41f7-b1eb-087fbee98330", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T02:46:58.000Z" - }, - "end": { - "$date": "2021-07-10T03:06:41.000Z" - }, - "events": [ - { - "uuid": "fa7e5c6f-db57-40e1-85f7-864d962dcf40", - "start": { - "$date": "2021-07-10T02:46:58.000Z" - }, - "end": { - "$date": "2021-07-10T03:06:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6ef67042-3ccc-4358-a039-8b818fc1eb6f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-10T02:58:15.000Z" - }, - "end": { - "$date": "2021-07-10T05:56:58.000Z" - }, - "events": [ - { - "uuid": "d32a355d-8e50-4796-9b72-9ca831e51bc3", - "start": { - "$date": "2021-07-10T02:58:15.000Z" - }, - "end": { - "$date": "2021-07-10T05:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79269d90-2ff6-47c3-be68-66ac43f7770c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T03:09:39.000Z" - }, - "end": { - "$date": "2021-07-10T03:29:44.000Z" - }, - "events": [ - { - "uuid": "778c919c-468e-43fb-aa4f-7e0c8fb211fa", - "start": { - "$date": "2021-07-10T03:09:39.000Z" - }, - "end": { - "$date": "2021-07-10T03:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7899e9bb-724f-4eb9-9d56-8e0fa0825179", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T03:33:30.000Z" - }, - "end": { - "$date": "2021-07-10T04:01:06.000Z" - }, - "events": [ - { - "uuid": "c75a7bce-4dfe-497c-a2b6-b12202045c2e", - "start": { - "$date": "2021-07-10T03:33:30.000Z" - }, - "end": { - "$date": "2021-07-10T04:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee35288d-2377-44c7-bce1-c0af408ba0fa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-10T03:43:44.000Z" - }, - "end": { - "$date": "2021-07-10T04:03:13.000Z" - }, - "events": [ - { - "uuid": "c47a4492-e5eb-4ec3-8c92-a61fca04b64f", - "start": { - "$date": "2021-07-10T03:43:44.000Z" - }, - "end": { - "$date": "2021-07-10T04:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0d6408b5-2652-418b-adfc-a5ba34587c9b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-10T03:50:16.000Z" - }, - "end": { - "$date": "2021-07-10T05:15:52.000Z" - }, - "events": [ - { - "uuid": "e3b54dd2-cd86-428d-aef2-cb00315a0ffb", - "start": { - "$date": "2021-07-10T03:50:16.000Z" - }, - "end": { - "$date": "2021-07-10T05:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bfc943c-5ec7-4e89-9ba8-07adf4a58cd9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T04:04:53.000Z" - }, - "end": { - "$date": "2021-07-10T04:18:51.000Z" - }, - "events": [ - { - "uuid": "67ddc8dc-7819-45e4-a1ca-40c682953fb7", - "start": { - "$date": "2021-07-10T04:04:53.000Z" - }, - "end": { - "$date": "2021-07-10T04:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "c48c4b3d-0302-4c6e-8402-4cb2fd05ebe0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-10T04:03:31.000Z" - }, - "end": { - "$date": "2021-07-10T17:12:48.000Z" - }, - "events": [ - { - "uuid": "c564c397-c174-461a-868b-f56a490c76e8", - "start": { - "$date": "2021-07-10T04:03:31.000Z" - }, - "end": { - "$date": "2021-07-10T04:38:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2fa04696-a7c3-49db-9484-37e69f5341ee", - "start": { - "$date": "2021-07-10T04:38:31.000Z" - }, - "end": { - "$date": "2021-07-10T04:42:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc19c962-2657-4c2d-a1c6-331ac8ddf129", - "start": { - "$date": "2021-07-10T04:42:31.000Z" - }, - "end": { - "$date": "2021-07-10T04:52:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b63d7135-7d39-4eb0-9441-11324e10c63b", - "start": { - "$date": "2021-07-10T04:52:31.000Z" - }, - "end": { - "$date": "2021-07-10T09:52:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1c74674-58b6-4076-88a7-e63771a075ab", - "start": { - "$date": "2021-07-10T09:52:31.000Z" - }, - "end": { - "$date": "2021-07-10T10:02:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e52195d0-310b-447f-babf-49dc8b7f295b", - "start": { - "$date": "2021-07-10T10:02:31.000Z" - }, - "end": { - "$date": "2021-07-10T15:24:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "385399ac-db47-49e8-b936-7df722e45d45", - "start": { - "$date": "2021-07-10T15:24:31.000Z" - }, - "end": { - "$date": "2021-07-10T15:34:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "334d9a8a-847a-4cfd-ba90-731ad00553d3", - "start": { - "$date": "2021-07-10T15:34:31.000Z" - }, - "end": { - "$date": "2021-07-10T17:12:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "99d5f8c9-a81e-4366-83df-8919e39d9e66", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-10T04:11:22.000Z" - }, - "end": { - "$date": "2021-07-10T05:55:51.000Z" - }, - "events": [ - { - "uuid": "059894e4-7630-4234-8ba6-a9a19a6cf47e", - "start": { - "$date": "2021-07-10T04:11:22.000Z" - }, - "end": { - "$date": "2021-07-10T05:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fccfca2-b51a-40e6-a7d6-a90d0735bff0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T04:27:41.000Z" - }, - "end": { - "$date": "2021-07-10T04:48:03.000Z" - }, - "events": [ - { - "uuid": "47673b70-22ef-4deb-923f-460bccf3f571", - "start": { - "$date": "2021-07-10T04:27:41.000Z" - }, - "end": { - "$date": "2021-07-10T04:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2d9d2fa9-2cf3-42c7-8836-7d3f43ca2b4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T05:17:15.000Z" - }, - "end": { - "$date": "2021-07-10T05:56:05.000Z" - }, - "events": [ - { - "uuid": "a2161ea6-f113-4aca-8aa6-36c8a328cdca", - "start": { - "$date": "2021-07-10T05:17:15.000Z" - }, - "end": { - "$date": "2021-07-10T05:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fae04560-4de5-4200-b1a7-b990b9dd1e47", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-10T05:36:51.000Z" - }, - "end": { - "$date": "2021-07-10T05:52:38.000Z" - }, - "events": [ - { - "uuid": "c56ceee2-1117-4d16-a6c7-6b265718f8f9", - "start": { - "$date": "2021-07-10T05:36:51.000Z" - }, - "end": { - "$date": "2021-07-10T05:52:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9e75cef-fb4a-4cc6-81c1-c90925e49d5e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-10T05:58:03.000Z" - }, - "end": { - "$date": "2021-07-10T06:32:47.000Z" - }, - "events": [ - { - "uuid": "9e60cbba-ec47-4dad-8bd8-83f6bf49d2fc", - "start": { - "$date": "2021-07-10T05:58:03.000Z" - }, - "end": { - "$date": "2021-07-10T06:32:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "829785bd-4687-46f7-a732-42825c5ab342", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T06:04:44.000Z" - }, - "end": { - "$date": "2021-07-10T06:31:55.000Z" - }, - "events": [ - { - "uuid": "db1dd2c0-cb9a-4d89-ad0e-9b1e0f80b60e", - "start": { - "$date": "2021-07-10T06:04:44.000Z" - }, - "end": { - "$date": "2021-07-10T06:31:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fa1d217-427d-48fd-91c1-41f89348a7c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-10T06:04:44.000Z" - }, - "end": { - "$date": "2021-07-10T06:31:49.000Z" - }, - "events": [ - { - "uuid": "c4c4f1e2-fb7e-434b-9317-08082184ed02", - "start": { - "$date": "2021-07-10T06:04:44.000Z" - }, - "end": { - "$date": "2021-07-10T06:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75ea3882-5299-4f39-a533-7acd5d765ab9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T06:37:10.000Z" - }, - "end": { - "$date": "2021-07-10T06:57:09.000Z" - }, - "events": [ - { - "uuid": "15be4237-1859-4d42-ac0e-77ae502cff58", - "start": { - "$date": "2021-07-10T06:37:10.000Z" - }, - "end": { - "$date": "2021-07-10T06:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47321adb-c8c1-4930-a24e-b5ea2e9ec0c4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-10T06:37:27.000Z" - }, - "end": { - "$date": "2021-07-10T06:56:58.000Z" - }, - "events": [ - { - "uuid": "440909c7-da55-4718-8a22-a3e5e765d931", - "start": { - "$date": "2021-07-10T06:37:27.000Z" - }, - "end": { - "$date": "2021-07-10T06:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df4fb868-e3b3-4939-b0f1-5f0ed5a9eb41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-10T06:37:05.000Z" - }, - "end": { - "$date": "2021-07-10T06:57:00.000Z" - }, - "events": [ - { - "uuid": "0d8c4480-8fee-4bfb-9e06-4e640267b8e1", - "start": { - "$date": "2021-07-10T06:37:05.000Z" - }, - "end": { - "$date": "2021-07-10T06:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26a8b364-5d6d-433c-a765-08f38610ad6e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T07:00:16.000Z" - }, - "end": { - "$date": "2021-07-10T07:30:25.000Z" - }, - "events": [ - { - "uuid": "fe4b8b82-99c7-42c2-9183-76d4887e6bfe", - "start": { - "$date": "2021-07-10T07:00:16.000Z" - }, - "end": { - "$date": "2021-07-10T07:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e461e52a-d515-4ba3-9e4b-28d3f5c03018", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-10T07:00:42.000Z" - }, - "end": { - "$date": "2021-07-10T07:30:14.000Z" - }, - "events": [ - { - "uuid": "fb744531-dbbf-4929-8d64-48490c116ac0", - "start": { - "$date": "2021-07-10T07:00:42.000Z" - }, - "end": { - "$date": "2021-07-10T07:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d342569-d5e9-4ffa-868b-29ce3792dd09", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-10T07:00:15.000Z" - }, - "end": { - "$date": "2021-07-10T07:30:16.000Z" - }, - "events": [ - { - "uuid": "2e04f82c-6b00-422e-b722-492743037186", - "start": { - "$date": "2021-07-10T07:00:15.000Z" - }, - "end": { - "$date": "2021-07-10T07:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b46caabf-9a47-444b-88e3-729d73c33bda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T07:36:04.000Z" - }, - "end": { - "$date": "2021-07-10T07:53:58.000Z" - }, - "events": [ - { - "uuid": "68c90683-1f53-4b11-aa70-f9242f2e71ad", - "start": { - "$date": "2021-07-10T07:36:04.000Z" - }, - "end": { - "$date": "2021-07-10T07:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf94eada-32d0-4eea-bc4a-7213a378b397", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-10T07:54:00.000Z" - }, - "end": { - "$date": "2021-07-10T07:55:06.000Z" - }, - "events": [ - { - "uuid": "4cf02750-4df9-4486-bdc9-e57492855056", - "start": { - "$date": "2021-07-10T07:54:00.000Z" - }, - "end": { - "$date": "2021-07-10T07:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95cb160e-641e-4ce0-b830-e565607135f7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-10T07:36:08.000Z" - }, - "end": { - "$date": "2021-07-10T07:53:45.000Z" - }, - "events": [ - { - "uuid": "1a21ccc3-fcea-4187-9008-90a0cf414746", - "start": { - "$date": "2021-07-10T07:36:08.000Z" - }, - "end": { - "$date": "2021-07-10T07:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c44b180f-ed75-4551-a19c-91d5058f4f1f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-10T15:32:17.000Z" - }, - "end": { - "$date": "2021-07-10T15:43:11.000Z" - }, - "events": [ - { - "uuid": "54651c77-67d2-4845-973b-2681406466c6", - "start": { - "$date": "2021-07-10T15:32:17.000Z" - }, - "end": { - "$date": "2021-07-10T15:43:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8c4f99a-d4d3-4545-a00f-736173da9052", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-10T15:46:17.000Z" - }, - "end": { - "$date": "2021-07-10T16:02:51.000Z" - }, - "events": [ - { - "uuid": "10ea3076-951b-4897-9e3f-bd76d470c1f5", - "start": { - "$date": "2021-07-10T15:46:17.000Z" - }, - "end": { - "$date": "2021-07-10T16:02:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "98b087c5-59e3-4f1f-8156-be2f85529bcd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-10T16:33:40.000Z" - }, - "end": { - "$date": "2021-07-10T18:19:22.000Z" - }, - "events": [ - { - "uuid": "32b8bb77-3669-4ac1-a300-70a53963df81", - "start": { - "$date": "2021-07-10T16:33:40.000Z" - }, - "end": { - "$date": "2021-07-10T18:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "4bb4d975-5ee8-49d9-bbd9-18ad2903fd76", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-10T17:19:44.000Z" - }, - "end": { - "$date": "2021-07-10T17:19:49.000Z" - }, - "events": [ - { - "uuid": "6c8fe828-3d41-4407-86fc-f91d04551a95", - "start": { - "$date": "2021-07-10T17:19:44.000Z" - }, - "end": { - "$date": "2021-07-10T17:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "01c953d2-3892-48ad-a90b-89508f55fd0b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-10T17:51:08.000Z" - }, - "end": { - "$date": "2021-07-10T19:29:54.000Z" - }, - "events": [ - { - "uuid": "3582cd06-06c2-437c-a818-2e15e256060e", - "start": { - "$date": "2021-07-10T17:51:08.000Z" - }, - "end": { - "$date": "2021-07-10T19:29:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "543ef5a9-323d-4cb6-8526-655503dde701", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-10T18:20:18.000Z" - }, - "end": { - "$date": "2021-07-10T20:14:02.000Z" - }, - "events": [ - { - "uuid": "9a0d5ca6-e26a-45b7-ba6b-8d5b1d5769e8", - "start": { - "$date": "2021-07-10T18:20:18.000Z" - }, - "end": { - "$date": "2021-07-10T20:14:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c2c604a2-2a85-4f67-acea-9d645743f41a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-10T18:34:51.000Z" - }, - "end": { - "$date": "2021-07-10T21:14:43.000Z" - }, - "events": [ - { - "uuid": "c939e527-0042-46f4-a014-41c65d767c65", - "start": { - "$date": "2021-07-10T18:34:51.000Z" - }, - "end": { - "$date": "2021-07-10T19:30:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a46862d-0322-48b2-8c11-ad45efc81d4d", - "start": { - "$date": "2021-07-10T19:30:51.000Z" - }, - "end": { - "$date": "2021-07-10T19:34:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a83def4-ec86-4dcb-813b-eb82e395d658", - "start": { - "$date": "2021-07-10T19:34:51.000Z" - }, - "end": { - "$date": "2021-07-10T19:51:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c84970db-501c-40b9-8b21-2936b3d8c505", - "start": { - "$date": "2021-07-10T19:51:51.000Z" - }, - "end": { - "$date": "2021-07-10T19:52:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "955e0441-f239-4e9b-80a6-03fe75a2516b", - "start": { - "$date": "2021-07-10T19:52:51.000Z" - }, - "end": { - "$date": "2021-07-10T21:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75364e82-dba3-4f68-bcd3-c72640bc4caa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T19:47:53.000Z" - }, - "end": { - "$date": "2021-07-10T20:23:54.000Z" - }, - "events": [ - { - "uuid": "61417abe-c5ce-4295-934a-a2e18c782a93", - "start": { - "$date": "2021-07-10T19:47:53.000Z" - }, - "end": { - "$date": "2021-07-10T20:23:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "2cc6211f-cba8-455c-9915-1f7e30369293", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-10T20:16:16.000Z" - }, - "end": { - "$date": "2021-07-10T21:06:37.000Z" - }, - "events": [ - { - "uuid": "5ee01bfc-1253-4909-9e4d-cee1a247eba3", - "start": { - "$date": "2021-07-10T20:16:16.000Z" - }, - "end": { - "$date": "2021-07-10T20:35:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbe34a22-157d-41cf-a30b-defae8663dfb", - "start": { - "$date": "2021-07-10T20:35:16.000Z" - }, - "end": { - "$date": "2021-07-10T20:40:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bafcc8f8-d6a1-4202-b324-09dd7a0b454c", - "start": { - "$date": "2021-07-10T20:40:16.000Z" - }, - "end": { - "$date": "2021-07-10T20:50:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa4d2642-90f2-494a-872b-29f57f4bd294", - "start": { - "$date": "2021-07-10T20:50:16.000Z" - }, - "end": { - "$date": "2021-07-10T21:04:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d8269e4-f151-47b9-bb03-0e930f71c8b8", - "start": { - "$date": "2021-07-10T21:04:16.000Z" - }, - "end": { - "$date": "2021-07-10T21:06:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3dd25971-f52c-4c9f-be86-364ff2a5a101", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T20:27:23.000Z" - }, - "end": { - "$date": "2021-07-10T20:46:46.000Z" - }, - "events": [ - { - "uuid": "7ce22a80-8ffe-4f49-95b0-df52bab9ace4", - "start": { - "$date": "2021-07-10T20:27:23.000Z" - }, - "end": { - "$date": "2021-07-10T20:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3517604f-258f-46e2-b768-4a3b8c796382", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-10T20:27:36.000Z" - }, - "end": { - "$date": "2021-07-10T21:02:20.000Z" - }, - "events": [ - { - "uuid": "d7719691-55dc-416e-b9a7-2529fa753c6c", - "start": { - "$date": "2021-07-10T20:27:36.000Z" - }, - "end": { - "$date": "2021-07-10T21:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ca6586e-281a-4d7a-b271-54a94342dd72", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T20:50:41.000Z" - }, - "end": { - "$date": "2021-07-10T21:16:03.000Z" - }, - "events": [ - { - "uuid": "95c9e156-b14a-41b0-bbc1-e78210f71a6e", - "start": { - "$date": "2021-07-10T20:50:41.000Z" - }, - "end": { - "$date": "2021-07-10T21:16:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c1b7a7f-165a-4208-897f-4304189b5c3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T21:21:16.000Z" - }, - "end": { - "$date": "2021-07-10T21:39:20.000Z" - }, - "events": [ - { - "uuid": "fc656f9b-d8b3-4c94-ad12-6389efdf6b36", - "start": { - "$date": "2021-07-10T21:21:16.000Z" - }, - "end": { - "$date": "2021-07-10T21:39:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a848ca48-286f-4cc0-8baa-e714c1862702", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T21:42:04.000Z" - }, - "end": { - "$date": "2021-07-10T21:56:48.000Z" - }, - "events": [ - { - "uuid": "48f33957-5a9c-4303-8ce0-c451d313afa5", - "start": { - "$date": "2021-07-10T21:42:04.000Z" - }, - "end": { - "$date": "2021-07-10T21:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0e95f420-375b-435e-8e11-5c116c8dcf2b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-10T21:42:53.000Z" - }, - "end": { - "$date": "2021-07-10T23:59:20.000Z" - }, - "events": [ - { - "uuid": "ef41d0ad-a5f1-4822-aa13-887d68f380b7", - "start": { - "$date": "2021-07-10T21:42:53.000Z" - }, - "end": { - "$date": "2021-07-10T23:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c9360865-97cb-4586-8bcc-39b1427cb8fd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-10T21:45:27.000Z" - }, - "end": { - "$date": "2021-07-10T23:17:50.000Z" - }, - "events": [ - { - "uuid": "d70cf663-ce3f-4be6-91dd-9dd991e4c76e", - "start": { - "$date": "2021-07-10T21:45:27.000Z" - }, - "end": { - "$date": "2021-07-10T23:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5753cb5-ccde-42a8-a5f0-cbe65871f1f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T21:57:10.000Z" - }, - "end": { - "$date": "2021-07-10T22:00:02.000Z" - }, - "events": [ - { - "uuid": "10528209-e69a-466c-96d1-8c1b762a6831", - "start": { - "$date": "2021-07-10T21:57:10.000Z" - }, - "end": { - "$date": "2021-07-10T22:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "5e37f8ee-a994-4844-8dca-fc9291695422", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-10T22:37:12.000Z" - }, - "end": { - "$date": "2021-07-10T22:39:01.000Z" - }, - "events": [ - { - "uuid": "040f7d5e-4870-4c7e-ba91-eb4b2242b911", - "start": { - "$date": "2021-07-10T22:37:12.000Z" - }, - "end": { - "$date": "2021-07-10T22:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a09401fd-e90f-443e-90b1-bfe62c607139", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T22:44:32.000Z" - }, - "end": { - "$date": "2021-07-10T23:12:08.000Z" - }, - "events": [ - { - "uuid": "5866265b-f0f7-412f-9efe-ac6edd2716be", - "start": { - "$date": "2021-07-10T22:44:32.000Z" - }, - "end": { - "$date": "2021-07-10T23:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "337da926-1dec-4143-96f4-c2327af83ccc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T23:14:36.000Z" - }, - "end": { - "$date": "2021-07-10T23:48:44.000Z" - }, - "events": [ - { - "uuid": "2d38e338-3317-4ac8-a00f-705080184b07", - "start": { - "$date": "2021-07-10T23:14:36.000Z" - }, - "end": { - "$date": "2021-07-10T23:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73d256cd-7722-4490-8dd4-6fef9520ac0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-10T23:53:16.000Z" - }, - "end": { - "$date": "2021-07-11T00:16:21.000Z" - }, - "events": [ - { - "uuid": "ed57a145-6164-4210-898d-440f08ad2252", - "start": { - "$date": "2021-07-10T23:53:16.000Z" - }, - "end": { - "$date": "2021-07-11T00:16:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "93609df0-da93-4bef-bdac-6644eb7679ef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-11T00:01:48.000Z" - }, - "end": { - "$date": "2021-07-11T05:31:36.000Z" - }, - "events": [ - { - "uuid": "154a2657-d810-4c8f-a965-f00d44b96f7d", - "start": { - "$date": "2021-07-11T00:01:48.000Z" - }, - "end": { - "$date": "2021-07-11T00:12:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d9628c8-ea76-4fdd-bdec-4e515b523928", - "start": { - "$date": "2021-07-11T00:12:48.000Z" - }, - "end": { - "$date": "2021-07-11T00:15:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "02dde1ec-8291-4ed4-9e27-1a80944c9adf", - "start": { - "$date": "2021-07-11T00:15:48.000Z" - }, - "end": { - "$date": "2021-07-11T02:42:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93182207-2ad1-4cf9-90a1-4c0ff1cea95f", - "start": { - "$date": "2021-07-11T02:42:48.000Z" - }, - "end": { - "$date": "2021-07-11T02:46:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db0882d5-4a61-463b-9785-0be2ac593ebf", - "start": { - "$date": "2021-07-11T02:46:48.000Z" - }, - "end": { - "$date": "2021-07-11T03:02:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e1633866-3422-45c0-b97d-0d676963309c", - "start": { - "$date": "2021-07-11T03:02:48.000Z" - }, - "end": { - "$date": "2021-07-11T03:06:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "837bf2ff-1df2-41dd-a971-d4a38a18c94e", - "start": { - "$date": "2021-07-11T03:06:48.000Z" - }, - "end": { - "$date": "2021-07-11T05:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c6bc34e-baa6-40d4-add0-a841d64dbccd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-11T01:04:17.000Z" - }, - "end": { - "$date": "2021-07-11T01:57:34.000Z" - }, - "events": [ - { - "uuid": "fd521135-fed6-40de-b1ca-174353c475cd", - "start": { - "$date": "2021-07-11T01:04:17.000Z" - }, - "end": { - "$date": "2021-07-11T01:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "be43a986-1977-452f-91c7-488ec1362c05", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-11T01:31:08.000Z" - }, - "end": { - "$date": "2021-07-11T01:56:48.000Z" - }, - "events": [ - { - "uuid": "29634c18-d4bc-4433-84c2-1ac385e44ae0", - "start": { - "$date": "2021-07-11T01:31:08.000Z" - }, - "end": { - "$date": "2021-07-11T01:42:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c8e68bb-ce11-41c1-94d4-cd1671faf383", - "start": { - "$date": "2021-07-11T01:42:08.000Z" - }, - "end": { - "$date": "2021-07-11T01:56:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ca3535f5-2f9e-42fd-b2fe-fdb3e8d8374c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-11T01:51:22.000Z" - }, - "end": { - "$date": "2021-07-11T01:54:18.000Z" - }, - "events": [ - { - "uuid": "97172d21-550a-40f9-a053-20537b290ab2", - "start": { - "$date": "2021-07-11T01:51:22.000Z" - }, - "end": { - "$date": "2021-07-11T01:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2aadb68f-de08-46de-b679-74f53a84800a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-11T02:11:13.000Z" - }, - "end": { - "$date": "2021-07-11T03:34:03.000Z" - }, - "events": [ - { - "uuid": "f488692c-0823-4cd4-a647-3038fb60e11a", - "start": { - "$date": "2021-07-11T02:11:13.000Z" - }, - "end": { - "$date": "2021-07-11T03:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74dadf95-2cff-4a09-ac26-2d6c59175b45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T02:15:10.000Z" - }, - "end": { - "$date": "2021-07-11T02:29:21.000Z" - }, - "events": [ - { - "uuid": "6ab0cb00-90e6-4e73-a46f-b6e271bd8b9c", - "start": { - "$date": "2021-07-11T02:15:10.000Z" - }, - "end": { - "$date": "2021-07-11T02:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6f41d81-2968-4cfc-804b-0cac335be030", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T02:51:27.000Z" - }, - "end": { - "$date": "2021-07-11T03:24:51.000Z" - }, - "events": [ - { - "uuid": "c4575344-33d6-4db5-ae01-fa6fe075d94c", - "start": { - "$date": "2021-07-11T02:51:27.000Z" - }, - "end": { - "$date": "2021-07-11T03:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c587dd82-e134-4f4b-a982-c6fb92dc42b1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-11T02:36:07.000Z" - }, - "end": { - "$date": "2021-07-11T04:21:47.000Z" - }, - "events": [ - { - "uuid": "59ecb369-49df-4c2d-a8d5-ceec82953130", - "start": { - "$date": "2021-07-11T02:36:07.000Z" - }, - "end": { - "$date": "2021-07-11T04:21:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ca195b9-00c0-4044-9648-bb089c7a0171", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T03:27:04.000Z" - }, - "end": { - "$date": "2021-07-11T04:04:25.000Z" - }, - "events": [ - { - "uuid": "ca91b3b2-6a5f-4e72-83c9-c785ff30546e", - "start": { - "$date": "2021-07-11T03:27:04.000Z" - }, - "end": { - "$date": "2021-07-11T04:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c33e7f48-70b0-4047-880f-8df30e70a452", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T04:11:24.000Z" - }, - "end": { - "$date": "2021-07-11T04:38:59.000Z" - }, - "events": [ - { - "uuid": "eeb04160-7096-4a8e-9586-47919cedc55d", - "start": { - "$date": "2021-07-11T04:11:24.000Z" - }, - "end": { - "$date": "2021-07-11T04:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d327a2bd-559e-43f3-bee4-e422ccafb06c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-11T04:11:27.000Z" - }, - "end": { - "$date": "2021-07-11T04:38:43.000Z" - }, - "events": [ - { - "uuid": "40f853c0-926a-4efb-a1df-834b4502aae2", - "start": { - "$date": "2021-07-11T04:11:27.000Z" - }, - "end": { - "$date": "2021-07-11T04:38:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b8b88174-fe3b-49f4-af95-c116b13315c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-11T04:28:09.000Z" - }, - "end": { - "$date": "2021-07-11T07:42:22.000Z" - }, - "events": [ - { - "uuid": "8b1edd3e-abf4-465c-a9e2-f022e2168a94", - "start": { - "$date": "2021-07-11T04:28:09.000Z" - }, - "end": { - "$date": "2021-07-11T07:42:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "eb911bb3-f008-4c5e-8389-3e22094a5768", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-11T04:39:20.000Z" - }, - "end": { - "$date": "2021-07-11T06:03:48.000Z" - }, - "events": [ - { - "uuid": "1899d5a5-e031-4726-b9e0-f5e36631073a", - "start": { - "$date": "2021-07-11T04:39:20.000Z" - }, - "end": { - "$date": "2021-07-11T06:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1044281b-5c96-4fcb-8f47-62689b953804", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T04:39:50.000Z" - }, - "end": { - "$date": "2021-07-11T05:08:07.000Z" - }, - "events": [ - { - "uuid": "ab35e855-d9eb-4ac2-8b03-a75ad10617ee", - "start": { - "$date": "2021-07-11T04:39:50.000Z" - }, - "end": { - "$date": "2021-07-11T05:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ccae984f-5d72-4345-b8db-98e5a5cd815d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-11T05:03:40.000Z" - }, - "end": { - "$date": "2021-07-11T06:24:39.000Z" - }, - "events": [ - { - "uuid": "e637a836-a609-4eb4-9490-75197ab71abf", - "start": { - "$date": "2021-07-11T05:03:40.000Z" - }, - "end": { - "$date": "2021-07-11T06:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "435e9ef1-44bf-4ba8-8f7a-bc2e2ea3dc1e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T05:09:15.000Z" - }, - "end": { - "$date": "2021-07-11T06:24:41.000Z" - }, - "events": [ - { - "uuid": "2be8f490-a542-4e64-a738-cd9d8b541d3c", - "start": { - "$date": "2021-07-11T05:09:15.000Z" - }, - "end": { - "$date": "2021-07-11T06:24:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab5cea9f-dfe5-4694-ae05-93cd2cb178ec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-11T05:47:53.000Z" - }, - "end": { - "$date": "2021-07-11T06:19:36.000Z" - }, - "events": [ - { - "uuid": "1456c652-eda4-406f-bce6-4483d2ad2044", - "start": { - "$date": "2021-07-11T05:47:53.000Z" - }, - "end": { - "$date": "2021-07-11T06:19:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "942ba4ee-a88b-49cb-9cff-6ca4651fe3bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-11T06:27:38.000Z" - }, - "end": { - "$date": "2021-07-11T06:59:00.000Z" - }, - "events": [ - { - "uuid": "616a704e-8f63-4a1b-8fab-ab4a4a838009", - "start": { - "$date": "2021-07-11T06:27:38.000Z" - }, - "end": { - "$date": "2021-07-11T06:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "83b3e1d2-97bb-4a0e-8156-bea7aaaa4c83", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-11T06:29:38.000Z" - }, - "end": { - "$date": "2021-07-11T06:32:05.000Z" - }, - "events": [ - { - "uuid": "5bbd1794-9de2-4f79-b244-0cd9e145574f", - "start": { - "$date": "2021-07-11T06:29:38.000Z" - }, - "end": { - "$date": "2021-07-11T06:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09a98791-984f-4f25-a7c6-c3d03f5f27fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T06:38:20.000Z" - }, - "end": { - "$date": "2021-07-11T06:53:47.000Z" - }, - "events": [ - { - "uuid": "9aef3c95-452d-4e32-8f28-c2c37b45d4b8", - "start": { - "$date": "2021-07-11T06:38:20.000Z" - }, - "end": { - "$date": "2021-07-11T06:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e18628e3-70ae-4be4-a84f-0415cb2529d7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T06:56:44.000Z" - }, - "end": { - "$date": "2021-07-11T07:16:20.000Z" - }, - "events": [ - { - "uuid": "9f15516c-19aa-4861-a491-a2ca9b2a3dac", - "start": { - "$date": "2021-07-11T06:56:44.000Z" - }, - "end": { - "$date": "2021-07-11T07:16:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2df25aa1-d25b-445b-bde5-86eb2cd56342", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-11T07:16:04.000Z" - }, - "end": { - "$date": "2021-07-11T07:49:22.000Z" - }, - "events": [ - { - "uuid": "3042342c-d50c-4565-99f4-43228ae96ea4", - "start": { - "$date": "2021-07-11T07:16:04.000Z" - }, - "end": { - "$date": "2021-07-11T07:49:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "73989257-aad2-42a5-b145-8909ad40b01b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-11T15:14:04.000Z" - }, - "end": { - "$date": "2021-07-11T16:41:38.000Z" - }, - "events": [ - { - "uuid": "016e48b6-ea8d-4ec8-9d27-dbae56ed1270", - "start": { - "$date": "2021-07-11T15:14:04.000Z" - }, - "end": { - "$date": "2021-07-11T16:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "0f504f78-a4c4-4f8c-ad27-c796f22ab6fc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-11T16:55:02.000Z" - }, - "end": { - "$date": "2021-07-11T20:51:06.000Z" - }, - "events": [ - { - "uuid": "4ec81e55-4a59-4cfb-8de0-86b47c93f5ad", - "start": { - "$date": "2021-07-11T16:55:02.000Z" - }, - "end": { - "$date": "2021-07-11T17:36:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "488ac882-5496-43b5-bfb9-1bb480b99c2c", - "start": { - "$date": "2021-07-11T17:36:02.000Z" - }, - "end": { - "$date": "2021-07-11T17:39:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98fafa36-b4a8-4abe-840a-abc863cb59f4", - "start": { - "$date": "2021-07-11T17:39:02.000Z" - }, - "end": { - "$date": "2021-07-11T20:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad476404-7dd3-4b7e-85c1-5812c5792e39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T18:28:51.000Z" - }, - "end": { - "$date": "2021-07-11T18:48:09.000Z" - }, - "events": [ - { - "uuid": "c0cbf34c-cca4-4fcd-879e-bf0246b11b1b", - "start": { - "$date": "2021-07-11T18:28:51.000Z" - }, - "end": { - "$date": "2021-07-11T18:48:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ea67cf93-48d4-434e-bce1-656107ca3b78", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-11T19:30:09.000Z" - }, - "end": { - "$date": "2021-07-11T21:35:09.000Z" - }, - "events": [ - { - "uuid": "cf4204da-d233-4eed-bf35-619fa6343688", - "start": { - "$date": "2021-07-11T19:30:09.000Z" - }, - "end": { - "$date": "2021-07-11T21:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8cf8d50b-0a75-468c-a359-2352fba01eab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-11T19:30:25.000Z" - }, - "end": { - "$date": "2021-07-11T20:42:59.000Z" - }, - "events": [ - { - "uuid": "a81044fe-697a-4876-a37a-4679d8c40892", - "start": { - "$date": "2021-07-11T19:30:25.000Z" - }, - "end": { - "$date": "2021-07-11T20:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbf85120-5dab-4ce3-b1e4-b66ab8e5a2e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T20:35:10.000Z" - }, - "end": { - "$date": "2021-07-11T21:03:15.000Z" - }, - "events": [ - { - "uuid": "79339f63-b088-42d2-90e1-88dd44333748", - "start": { - "$date": "2021-07-11T20:35:10.000Z" - }, - "end": { - "$date": "2021-07-11T21:03:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49378082-5aa4-4a2b-8d16-2069bb27b2fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T21:08:42.000Z" - }, - "end": { - "$date": "2021-07-11T21:33:13.000Z" - }, - "events": [ - { - "uuid": "3369cc45-713e-4f21-9ec9-add22c61e072", - "start": { - "$date": "2021-07-11T21:08:42.000Z" - }, - "end": { - "$date": "2021-07-11T21:33:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40643204-7b36-4813-bcfa-fbcde350ae05", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-11T21:10:20.000Z" - }, - "end": { - "$date": "2021-07-11T21:32:11.000Z" - }, - "events": [ - { - "uuid": "272b7ffc-603d-4a37-aeca-2f39250b1358", - "start": { - "$date": "2021-07-11T21:10:20.000Z" - }, - "end": { - "$date": "2021-07-11T21:32:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "e0af8ec0-0451-404b-87f7-a6e0cfa1f289", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-11T21:06:38.000Z" - }, - "end": { - "$date": "2021-07-11T22:17:50.000Z" - }, - "events": [ - { - "uuid": "d86a983a-f8f9-4ca6-af89-67b858b88f55", - "start": { - "$date": "2021-07-11T21:06:38.000Z" - }, - "end": { - "$date": "2021-07-11T21:21:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5455dc65-e02e-4566-a288-63378aa40064", - "start": { - "$date": "2021-07-11T21:21:38.000Z" - }, - "end": { - "$date": "2021-07-11T21:28:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d18e2a5e-72cd-488b-a073-3d305f643fcc", - "start": { - "$date": "2021-07-11T21:28:38.000Z" - }, - "end": { - "$date": "2021-07-11T22:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55da7816-f726-4e24-8835-2d016e83db88", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-11T22:57:23.000Z" - }, - "end": { - "$date": "2021-07-11T22:57:29.000Z" - }, - "events": [ - { - "uuid": "736ff8ac-143a-4544-ae29-b27ef8c1a36e", - "start": { - "$date": "2021-07-11T22:57:23.000Z" - }, - "end": { - "$date": "2021-07-11T22:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58f50c8b-36eb-4264-a03e-749143409923", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T21:40:01.000Z" - }, - "end": { - "$date": "2021-07-11T21:59:37.000Z" - }, - "events": [ - { - "uuid": "9d5d1486-e522-4e2c-82bc-0912c51682eb", - "start": { - "$date": "2021-07-11T21:40:01.000Z" - }, - "end": { - "$date": "2021-07-11T21:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94d7cd70-160e-401a-9b55-57cff1898631", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-11T22:57:27.000Z" - }, - "end": { - "$date": "2021-07-11T22:57:32.000Z" - }, - "events": [ - { - "uuid": "152cd027-4df8-457a-b582-c9cfd1a26feb", - "start": { - "$date": "2021-07-11T22:57:27.000Z" - }, - "end": { - "$date": "2021-07-11T22:57:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "2d157101-8b66-4d00-9e6d-b657b9d6da7f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-11T21:54:17.000Z" - }, - "end": { - "$date": "2021-07-11T22:08:27.000Z" - }, - "events": [ - { - "uuid": "c50de035-a7a0-4269-9159-605bde8a8390", - "start": { - "$date": "2021-07-11T21:54:17.000Z" - }, - "end": { - "$date": "2021-07-11T22:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaf07686-b225-47ab-a6eb-2de5ab5d6dca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T22:02:16.000Z" - }, - "end": { - "$date": "2021-07-11T22:22:49.000Z" - }, - "events": [ - { - "uuid": "562048df-ebf0-4fb1-bf65-cd1cb5d5639e", - "start": { - "$date": "2021-07-11T22:02:16.000Z" - }, - "end": { - "$date": "2021-07-11T22:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "005371f1-64f7-424e-a041-eef59fdbc877", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-11T22:27:18.000Z" - }, - "end": { - "$date": "2021-07-11T22:57:44.000Z" - }, - "events": [ - { - "uuid": "fbb3e85f-710a-49de-b599-3b6c74a400b5", - "start": { - "$date": "2021-07-11T22:27:18.000Z" - }, - "end": { - "$date": "2021-07-11T22:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffa2c8c9-ca5f-4e4c-af01-cd2cf0558cc7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T04:08:27.000Z" - }, - "end": { - "$date": "2021-07-12T04:25:35.000Z" - }, - "events": [ - { - "uuid": "aeaca794-73de-4652-8106-6fced2db2d36", - "start": { - "$date": "2021-07-12T04:08:27.000Z" - }, - "end": { - "$date": "2021-07-12T04:30:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5805bcd7-406a-4c6b-9ea1-44fcdde951c2", - "start": { - "$date": "2021-07-12T04:30:27.000Z" - }, - "end": { - "$date": "2021-07-12T05:26:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44719d30-ef3a-4634-a84a-6e6b007aa7c9", - "start": { - "$date": "2021-07-12T05:26:27.000Z" - }, - "end": { - "$date": "2021-07-12T05:50:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4657d9f5-6732-4864-8592-1f9adaaf85bd", - "start": { - "$date": "2021-07-12T05:50:27.000Z" - }, - "end": { - "$date": "2021-07-12T06:17:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "192831ae-43fb-4b6e-976b-25fc00ccd505", - "start": { - "$date": "2021-07-12T06:17:27.000Z" - }, - "end": { - "$date": "2021-07-12T06:21:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5db1841e-52d9-4bf4-85ec-db51b3ec7f77", - "start": { - "$date": "2021-07-12T06:21:27.000Z" - }, - "end": { - "$date": "2021-07-12T06:28:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "30a91ec4-987e-4c3c-ba9a-2dd4479ff31e", - "start": { - "$date": "2021-07-12T06:28:27.000Z" - }, - "end": { - "$date": "2021-07-12T06:31:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bf5f6d57-d458-4b61-ab00-7d9a3a851f92", - "start": { - "$date": "2021-07-12T06:31:27.000Z" - }, - "end": { - "$date": "2021-07-12T08:07:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2f4e8378-2e4f-4b5a-b647-12d46bb87374", - "start": { - "$date": "2021-07-12T08:07:27.000Z" - }, - "end": { - "$date": "2021-07-12T04:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "ebc8a362-2d5b-491e-bf41-bf9314e8f0cb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-12T00:05:01.000Z" - }, - "end": { - "$date": "2021-07-12T00:10:11.000Z" - }, - "events": [ - { - "uuid": "b94a0a4c-bd85-43a0-aae2-a8e251063b3b", - "start": { - "$date": "2021-07-12T00:05:01.000Z" - }, - "end": { - "$date": "2021-07-12T00:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "e5f7449c-a1ce-44f5-a869-aacec5824f8f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-12T00:29:50.000Z" - }, - "end": { - "$date": "2021-07-12T01:51:19.000Z" - }, - "events": [ - { - "uuid": "16e4ca77-12b4-4fda-b422-65c6651a4964", - "start": { - "$date": "2021-07-12T00:29:50.000Z" - }, - "end": { - "$date": "2021-07-12T01:26:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb8a024a-0664-495f-8121-7bfa224b0ded", - "start": { - "$date": "2021-07-12T01:26:50.000Z" - }, - "end": { - "$date": "2021-07-12T01:31:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0b6c9a47-d2f9-4160-96d7-4acfd7eabbee", - "start": { - "$date": "2021-07-12T01:31:50.000Z" - }, - "end": { - "$date": "2021-07-12T01:41:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5aaafdb7-a383-4d90-8724-d91c57d9a7cf", - "start": { - "$date": "2021-07-12T01:41:50.000Z" - }, - "end": { - "$date": "2021-07-12T01:51:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "68b0a9ff-4077-4781-b3e3-cb91ced2ac83", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-12T01:00:01.000Z" - }, - "end": { - "$date": "2021-07-12T01:43:37.000Z" - }, - "events": [ - { - "uuid": "8fe83cd4-06ee-4c5d-b514-3b011ed3c4f4", - "start": { - "$date": "2021-07-12T01:00:01.000Z" - }, - "end": { - "$date": "2021-07-12T01:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "47d4c27b-96f5-4a3d-83c9-cbb75c6545c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-12T01:44:37.000Z" - }, - "end": { - "$date": "2021-07-12T02:57:21.000Z" - }, - "events": [ - { - "uuid": "3cdba5c5-c38d-4fc4-9d42-4cec852c6133", - "start": { - "$date": "2021-07-12T01:44:37.000Z" - }, - "end": { - "$date": "2021-07-12T02:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2a3afbbd-383b-4f61-aefa-42846522e428", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-11T22:05:21.000Z" - }, - "end": { - "$date": "2021-07-12T07:20:38.000Z" - }, - "events": [ - { - "uuid": "7cfaa573-06cd-4a8b-9e4e-5419e896d235", - "start": { - "$date": "2021-07-11T22:05:21.000Z" - }, - "end": { - "$date": "2021-07-12T07:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "a16e479a-6aec-4cde-bd91-f27893be884e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-12T02:37:39.000Z" - }, - "end": { - "$date": "2021-07-12T03:16:34.000Z" - }, - "events": [ - { - "uuid": "475ff9c7-5395-4494-9cb0-1eb85a9df5da", - "start": { - "$date": "2021-07-12T02:37:39.000Z" - }, - "end": { - "$date": "2021-07-12T03:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ee375386-244c-4a13-9336-76de268cd357", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T03:16:03.000Z" - }, - "end": { - "$date": "2021-07-12T04:38:12.000Z" - }, - "events": [ - { - "uuid": "3eddd2e9-5441-427c-8b22-d2663d1034ba", - "start": { - "$date": "2021-07-12T03:16:03.000Z" - }, - "end": { - "$date": "2021-07-12T04:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "525b077f-ef8a-454c-9969-2763ae0d565b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-12T03:28:51.000Z" - }, - "end": { - "$date": "2021-07-12T05:37:47.000Z" - }, - "events": [ - { - "uuid": "1817e0ff-92c2-4b77-87da-1e14a726de82", - "start": { - "$date": "2021-07-12T03:28:51.000Z" - }, - "end": { - "$date": "2021-07-12T05:37:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "75f19a90-60b1-4ee5-9736-956c87e63802", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-12T04:15:19.000Z" - }, - "end": { - "$date": "2021-07-12T06:39:53.000Z" - }, - "events": [ - { - "uuid": "eded4ce5-940d-463b-b27a-5242bc4295a3", - "start": { - "$date": "2021-07-12T04:15:19.000Z" - }, - "end": { - "$date": "2021-07-12T06:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ccb030ec-519f-4808-af70-3d087fb71a8d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T04:39:38.000Z" - }, - "end": { - "$date": "2021-07-12T05:08:54.000Z" - }, - "events": [ - { - "uuid": "97ea1ca2-8cf5-4026-8559-51776381d517", - "start": { - "$date": "2021-07-12T04:39:38.000Z" - }, - "end": { - "$date": "2021-07-12T05:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f39c6e4-9e77-4197-b7e4-97500c660e57", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-12T04:36:09.000Z" - }, - "end": { - "$date": "2021-07-12T05:09:38.000Z" - }, - "events": [ - { - "uuid": "823bed79-d571-4656-a5bc-f3995dd28abe", - "start": { - "$date": "2021-07-12T04:36:09.000Z" - }, - "end": { - "$date": "2021-07-12T05:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48a54e9a-2807-4393-9ca7-7c1414fd577f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-12T05:24:41.000Z" - }, - "end": { - "$date": "2021-07-12T05:57:09.000Z" - }, - "events": [ - { - "uuid": "b7d59504-74f4-4a6e-95c2-9b7e28a437a9", - "start": { - "$date": "2021-07-12T05:24:41.000Z" - }, - "end": { - "$date": "2021-07-12T05:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6b1c0565-c3ae-4daf-a2d2-106edceab454", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T05:27:17.000Z" - }, - "end": { - "$date": "2021-07-12T06:40:18.000Z" - }, - "events": [ - { - "uuid": "3d63ab74-4e2d-45d4-8657-2ae77c144250", - "start": { - "$date": "2021-07-12T05:27:17.000Z" - }, - "end": { - "$date": "2021-07-12T06:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c2345f93-91ff-4147-9fe0-0c1a6ac1cd07", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-12T05:31:29.000Z" - }, - "end": { - "$date": "2021-07-12T06:49:12.000Z" - }, - "events": [ - { - "uuid": "675d31ce-c606-46d8-b7fb-c47708ca99d2", - "start": { - "$date": "2021-07-12T05:31:29.000Z" - }, - "end": { - "$date": "2021-07-12T06:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71a2761a-697d-4dfb-b7ad-31369d99721a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T06:43:52.000Z" - }, - "end": { - "$date": "2021-07-12T06:58:37.000Z" - }, - "events": [ - { - "uuid": "e2602758-0add-43c6-b5ef-e1322042f446", - "start": { - "$date": "2021-07-12T06:43:52.000Z" - }, - "end": { - "$date": "2021-07-12T06:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5db8395-faef-4f65-855e-0a9e66977927", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T07:02:38.000Z" - }, - "end": { - "$date": "2021-07-12T07:32:53.000Z" - }, - "events": [ - { - "uuid": "845ae5b2-a7f9-4a6b-ba2e-6c2dc1c93ec1", - "start": { - "$date": "2021-07-12T07:02:38.000Z" - }, - "end": { - "$date": "2021-07-12T07:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "711d3c86-e364-4acb-bcf4-85132e6b243c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T15:47:27.000Z" - }, - "end": { - "$date": "2021-07-12T16:06:30.000Z" - }, - "events": [ - { - "uuid": "1dea368e-3344-4134-aa9f-3fbd59469f38", - "start": { - "$date": "2021-07-12T15:47:27.000Z" - }, - "end": { - "$date": "2021-07-12T16:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7559afda-9737-4948-b259-5b4abcef0486", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T15:47:15.000Z" - }, - "end": { - "$date": "2021-07-12T17:11:49.000Z" - }, - "events": [ - { - "uuid": "f5e13ea7-8c4c-4e64-80a3-cd733344aa9b", - "start": { - "$date": "2021-07-12T15:47:15.000Z" - }, - "end": { - "$date": "2021-07-12T17:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31e0475d-0b89-4821-ba36-a8ecb87fed9a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T16:10:06.000Z" - }, - "end": { - "$date": "2021-07-12T16:30:14.000Z" - }, - "events": [ - { - "uuid": "4a6096c1-6634-4fe5-9721-4bd94afeb7c5", - "start": { - "$date": "2021-07-12T16:10:06.000Z" - }, - "end": { - "$date": "2021-07-12T16:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77ce3fb8-17c8-48a6-973a-6293ed8114d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T17:13:06.000Z" - }, - "end": { - "$date": "2021-07-12T17:33:45.000Z" - }, - "events": [ - { - "uuid": "1f4c4661-1693-4d72-a269-5ed494718a78", - "start": { - "$date": "2021-07-12T17:13:06.000Z" - }, - "end": { - "$date": "2021-07-12T17:33:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53a4c62d-56b7-4f4a-a03d-b9d3de3d550e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T17:37:35.000Z" - }, - "end": { - "$date": "2021-07-12T17:53:12.000Z" - }, - "events": [ - { - "uuid": "019e10fb-709d-4888-a704-483604296e7c", - "start": { - "$date": "2021-07-12T17:37:35.000Z" - }, - "end": { - "$date": "2021-07-12T17:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7df500db-0794-4ce6-8c72-81898c450703", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T17:54:34.000Z" - }, - "end": { - "$date": "2021-07-12T17:56:27.000Z" - }, - "events": [ - { - "uuid": "cdf459d8-95a0-4386-9eb1-f63b973b5be1", - "start": { - "$date": "2021-07-12T17:54:34.000Z" - }, - "end": { - "$date": "2021-07-12T17:56:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b184cd90-35cc-4ce8-a35e-9bcb86d535fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T18:25:54.000Z" - }, - "end": { - "$date": "2021-07-12T18:59:24.000Z" - }, - "events": [ - { - "uuid": "a039afb5-c942-44cd-8f04-cea962538593", - "start": { - "$date": "2021-07-12T18:25:54.000Z" - }, - "end": { - "$date": "2021-07-12T18:59:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21b7b61b-6a57-4928-8c36-f0a256375506", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T19:05:46.000Z" - }, - "end": { - "$date": "2021-07-12T19:17:22.000Z" - }, - "events": [ - { - "uuid": "dca831ef-abf7-4517-95d6-bf0b0f4b145c", - "start": { - "$date": "2021-07-12T19:05:46.000Z" - }, - "end": { - "$date": "2021-07-12T19:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8304caf-0730-45b4-a923-1dcb253161bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T19:44:59.000Z" - }, - "end": { - "$date": "2021-07-12T20:05:20.000Z" - }, - "events": [ - { - "uuid": "c3bd4ed9-232a-4fdf-8ce8-44b21651a4fa", - "start": { - "$date": "2021-07-12T19:44:59.000Z" - }, - "end": { - "$date": "2021-07-12T20:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d111ff9e-430b-43bd-b1c7-11bf502be775", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T19:46:45.000Z" - }, - "end": { - "$date": "2021-07-12T20:05:11.000Z" - }, - "events": [ - { - "uuid": "cf847b5b-313e-4320-8ce4-4abf2d68b066", - "start": { - "$date": "2021-07-12T19:46:45.000Z" - }, - "end": { - "$date": "2021-07-12T20:05:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de904f03-379f-4021-b71d-09240f0e8c72", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-12T20:09:07.000Z" - }, - "end": { - "$date": "2021-07-12T20:42:37.000Z" - }, - "events": [ - { - "uuid": "1f17ccb4-2a23-457a-a8de-15a9dce2d76f", - "start": { - "$date": "2021-07-12T20:09:07.000Z" - }, - "end": { - "$date": "2021-07-12T20:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e4af9b0-114d-4f1c-8c6a-f25118d00fb5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T20:13:11.000Z" - }, - "end": { - "$date": "2021-07-12T20:30:07.000Z" - }, - "events": [ - { - "uuid": "2a628be1-4005-4974-9e68-8af4e106c46d", - "start": { - "$date": "2021-07-12T20:13:11.000Z" - }, - "end": { - "$date": "2021-07-12T20:30:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "c4096e8b-a7ed-4137-9db2-4e3a2c6d5b10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T21:27:04.000Z" - }, - "end": { - "$date": "2021-07-12T22:25:08.000Z" - }, - "events": [ - { - "uuid": "c52de5e7-fd4c-4c57-af24-15d214ee1af1", - "start": { - "$date": "2021-07-12T21:27:04.000Z" - }, - "end": { - "$date": "2021-07-12T22:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7c71135a-1cb9-4a47-93e7-ec07ebc66516", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-12T21:52:08.000Z" - }, - "end": { - "$date": "2021-07-12T22:20:30.000Z" - }, - "events": [ - { - "uuid": "0af64d4b-e2f2-4a34-b5a5-e43c5c74c3b0", - "start": { - "$date": "2021-07-12T21:52:08.000Z" - }, - "end": { - "$date": "2021-07-12T22:20:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "df7a4d4a-bca7-46ff-8f30-20b3e9fc9a62", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T22:29:22.000Z" - }, - "end": { - "$date": "2021-07-12T23:04:30.000Z" - }, - "events": [ - { - "uuid": "bbe99085-e050-4d73-8af7-774653b612df", - "start": { - "$date": "2021-07-12T22:29:22.000Z" - }, - "end": { - "$date": "2021-07-12T23:04:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "624aa882-aa60-4f05-b424-f2d629de859d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-12T23:32:10.000Z" - }, - "end": { - "$date": "2021-07-12T23:34:10.000Z" - }, - "events": [ - { - "uuid": "583c037f-aa63-4d59-9f4c-0f70dbc63bf9", - "start": { - "$date": "2021-07-12T23:32:10.000Z" - }, - "end": { - "$date": "2021-07-12T23:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3f91ebdd-4c68-43e3-95a1-dc9adfc984e3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-12T23:34:21.000Z" - }, - "end": { - "$date": "2021-07-13T01:47:02.000Z" - }, - "events": [ - { - "uuid": "c73b0238-20b5-4f11-b9aa-7e59c6df3951", - "start": { - "$date": "2021-07-12T23:34:21.000Z" - }, - "end": { - "$date": "2021-07-13T01:47:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4e4d6129-3076-4a27-81d4-87006be60760", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-12T23:57:36.000Z" - }, - "end": { - "$date": "2021-07-13T00:36:11.000Z" - }, - "events": [ - { - "uuid": "ecf8e347-5010-4053-8e6a-7cdb4d81e096", - "start": { - "$date": "2021-07-12T23:57:36.000Z" - }, - "end": { - "$date": "2021-07-13T00:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b2ce18f4-ce6c-48f4-a00e-41dadd81c5ba", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-13T00:56:36.000Z" - }, - "end": { - "$date": "2021-07-13T07:33:45.000Z" - }, - "events": [ - { - "uuid": "96e76a48-e9b6-48f0-adf4-d4b9d67bb6f7", - "start": { - "$date": "2021-07-13T00:56:36.000Z" - }, - "end": { - "$date": "2021-07-13T07:33:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "da62e3a5-6dd0-4ea0-aedf-196a7c34a4d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T01:00:39.000Z" - }, - "end": { - "$date": "2021-07-13T01:44:26.000Z" - }, - "events": [ - { - "uuid": "b41a47b1-e9e6-4535-ac35-f5349cb150b0", - "start": { - "$date": "2021-07-13T01:00:39.000Z" - }, - "end": { - "$date": "2021-07-13T01:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b04cde8-cf2b-4bd8-a829-4b7ab587d30d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T02:43:21.000Z" - }, - "end": { - "$date": "2021-07-13T03:11:27.000Z" - }, - "events": [ - { - "uuid": "d8a7ca87-4246-4763-9ee1-f0c99e9f64f7", - "start": { - "$date": "2021-07-13T02:43:21.000Z" - }, - "end": { - "$date": "2021-07-13T03:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cc4a790-c716-4395-820f-46d31afe90be", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-13T03:01:50.000Z" - }, - "end": { - "$date": "2021-07-13T03:46:04.000Z" - }, - "events": [ - { - "uuid": "13cad25f-ed0f-4ada-b333-c30518e9207d", - "start": { - "$date": "2021-07-13T03:01:50.000Z" - }, - "end": { - "$date": "2021-07-13T03:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "54fa7c95-8ebc-4d2b-aade-bb7c3192ab8f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-13T03:07:16.000Z" - }, - "end": { - "$date": "2021-07-13T05:13:57.000Z" - }, - "events": [ - { - "uuid": "fc98b445-4efb-4b12-ba8e-cb870df96d92", - "start": { - "$date": "2021-07-13T03:07:16.000Z" - }, - "end": { - "$date": "2021-07-13T05:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9dfca9c3-f0ca-4168-9af9-4ae8cfd4e4b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T03:19:35.000Z" - }, - "end": { - "$date": "2021-07-13T03:38:37.000Z" - }, - "events": [ - { - "uuid": "9d23dbb2-09bb-468c-b302-5cb147fdaaaf", - "start": { - "$date": "2021-07-13T03:19:35.000Z" - }, - "end": { - "$date": "2021-07-13T03:38:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "03065364-06d9-4e5a-8fa2-bd1a99f56f47", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-13T03:19:49.000Z" - }, - "end": { - "$date": "2021-07-13T03:33:12.000Z" - }, - "events": [ - { - "uuid": "b954c0f7-d5e8-4856-aa0e-81f45e370201", - "start": { - "$date": "2021-07-13T03:19:49.000Z" - }, - "end": { - "$date": "2021-07-13T03:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4ce2dcbf-b7ca-46fc-9082-4c70efa4c2b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-13T03:33:22.000Z" - }, - "end": { - "$date": "2021-07-13T04:17:40.000Z" - }, - "events": [ - { - "uuid": "22fa746c-af1b-4ff6-bf9f-008bd43926f6", - "start": { - "$date": "2021-07-13T03:33:22.000Z" - }, - "end": { - "$date": "2021-07-13T03:45:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df3fd4cf-4b06-4c97-b698-e56efed025c2", - "start": { - "$date": "2021-07-13T03:45:22.000Z" - }, - "end": { - "$date": "2021-07-13T04:04:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84f84bae-5c0e-4d49-8d15-00e77683d246", - "start": { - "$date": "2021-07-13T04:04:22.000Z" - }, - "end": { - "$date": "2021-07-13T04:17:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "fc34f4dc-8373-4045-bd9e-ac14ae23769e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T03:38:55.000Z" - }, - "end": { - "$date": "2021-07-13T04:17:51.000Z" - }, - "events": [ - { - "uuid": "9a77d6c7-a42e-4f95-b9f4-560c74135af7", - "start": { - "$date": "2021-07-13T03:38:55.000Z" - }, - "end": { - "$date": "2021-07-13T04:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3180fb8-4bca-4db5-ae96-65af40ede0a6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-13T03:53:59.000Z" - }, - "end": { - "$date": "2021-07-13T04:22:35.000Z" - }, - "events": [ - { - "uuid": "a0549618-651e-4295-a8a9-a5c9af6c957f", - "start": { - "$date": "2021-07-13T03:53:59.000Z" - }, - "end": { - "$date": "2021-07-13T04:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "26cd9c89-fe9f-4c15-ab0c-5fb065777990", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-13T04:17:35.000Z" - }, - "end": { - "$date": "2021-07-13T05:14:47.000Z" - }, - "events": [ - { - "uuid": "2bb8204c-6617-4ceb-8a43-f0198c7a32a8", - "start": { - "$date": "2021-07-13T04:17:35.000Z" - }, - "end": { - "$date": "2021-07-13T05:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "af5e9c36-b704-48aa-af37-b158da449780", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T04:18:01.000Z" - }, - "end": { - "$date": "2021-07-13T05:14:24.000Z" - }, - "events": [ - { - "uuid": "ae137559-714f-4034-a7e8-77f7d8412a6a", - "start": { - "$date": "2021-07-13T04:18:01.000Z" - }, - "end": { - "$date": "2021-07-13T05:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a416c139-2e67-45b3-8fce-d20bba565447", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-13T04:18:11.000Z" - }, - "end": { - "$date": "2021-07-13T06:01:40.000Z" - }, - "events": [ - { - "uuid": "5679ffa8-35b1-4415-85b5-1140c1f5240c", - "start": { - "$date": "2021-07-13T04:18:11.000Z" - }, - "end": { - "$date": "2021-07-13T06:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cab43b4-43c3-4bc7-bc25-b89238905eb6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-13T04:47:38.000Z" - }, - "end": { - "$date": "2021-07-13T05:19:09.000Z" - }, - "events": [ - { - "uuid": "0bd4a1b3-f3cd-4dc7-ade0-d35fd794fe18", - "start": { - "$date": "2021-07-13T04:47:38.000Z" - }, - "end": { - "$date": "2021-07-13T05:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9624a0a2-8eb3-459f-a744-d5502cbdc470", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-13T04:28:03.000Z" - }, - "end": { - "$date": "2021-07-13T05:14:42.000Z" - }, - "events": [ - { - "uuid": "9af90d07-c664-4116-9c9c-695cc5a24b65", - "start": { - "$date": "2021-07-13T04:28:03.000Z" - }, - "end": { - "$date": "2021-07-13T05:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8acb957c-a8f9-4ef8-9fd1-df050cd3991d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-13T05:17:52.000Z" - }, - "end": { - "$date": "2021-07-13T06:13:47.000Z" - }, - "events": [ - { - "uuid": "5b635cfa-29a4-441c-9434-153ebb1192b9", - "start": { - "$date": "2021-07-13T05:17:52.000Z" - }, - "end": { - "$date": "2021-07-13T06:13:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4f06c14-f24b-45c7-a713-f2cd809a6c70", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-13T05:30:42.000Z" - }, - "end": { - "$date": "2021-07-13T06:09:35.000Z" - }, - "events": [ - { - "uuid": "0e52734a-1755-41fa-9189-9d4388019aaf", - "start": { - "$date": "2021-07-13T05:30:42.000Z" - }, - "end": { - "$date": "2021-07-13T06:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4c9ee81-8097-410d-a4ff-75f9fef575e6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-13T05:24:13.000Z" - }, - "end": { - "$date": "2021-07-13T05:27:58.000Z" - }, - "events": [ - { - "uuid": "29726d36-1beb-4fb1-83c7-f7cd89cbc29d", - "start": { - "$date": "2021-07-13T05:24:13.000Z" - }, - "end": { - "$date": "2021-07-13T05:27:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "739abb2a-db3d-4b8b-aac7-b9d7dbf4f7ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-13T06:09:56.000Z" - }, - "end": { - "$date": "2021-07-13T08:40:16.000Z" - }, - "events": [ - { - "uuid": "539e64df-b8c6-4837-895b-10082dbb43e4", - "start": { - "$date": "2021-07-13T06:09:56.000Z" - }, - "end": { - "$date": "2021-07-13T08:40:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "e352619a-9526-4ffb-b0f2-b19a5801c2e8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-13T13:38:39.000Z" - }, - "end": { - "$date": "2021-07-13T17:53:39.000Z" - }, - "events": [ - { - "uuid": "1ac88a07-fffb-415a-8f49-3c9e62594200", - "start": { - "$date": "2021-07-13T13:38:39.000Z" - }, - "end": { - "$date": "2021-07-13T17:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4a72f436-616a-4cd6-aa7c-8db30850d378", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T15:39:58.000Z" - }, - "end": { - "$date": "2021-07-13T16:48:11.000Z" - }, - "events": [ - { - "uuid": "005e5fe2-3ead-4ea8-82cf-2d5dcfcc3854", - "start": { - "$date": "2021-07-13T15:39:58.000Z" - }, - "end": { - "$date": "2021-07-13T15:55:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bff3bf28-e942-42fd-b429-494f6951f2e9", - "start": { - "$date": "2021-07-13T15:55:58.000Z" - }, - "end": { - "$date": "2021-07-13T15:58:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "68113a76-78a3-4140-b127-ca01e2df2c68", - "start": { - "$date": "2021-07-13T15:58:58.000Z" - }, - "end": { - "$date": "2021-07-13T16:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "uuid": "7e5cb468-a7f3-487a-9122-62446f92560d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-13T18:36:59.000Z" - }, - "end": { - "$date": "2021-07-13T18:37:14.000Z" - }, - "events": [ - { - "uuid": "3a8c6c05-d200-46b9-b96d-48bc0fff0154", - "start": { - "$date": "2021-07-13T18:36:59.000Z" - }, - "end": { - "$date": "2021-07-13T18:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "uuid": "72119aa9-3a1c-4d1d-9615-0cecdfa2b2c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-13T18:37:29.000Z" - }, - "end": { - "$date": "2021-07-13T20:01:35.000Z" - }, - "events": [ - { - "uuid": "abcb6c5b-780b-4928-bfd6-0346ebb2e22d", - "start": { - "$date": "2021-07-13T18:37:29.000Z" - }, - "end": { - "$date": "2021-07-13T20:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45395224-8ac2-40ce-a9e0-1facddd71022", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T20:23:54.000Z" - }, - "end": { - "$date": "2021-07-13T20:51:24.000Z" - }, - "events": [ - { - "uuid": "f1b13fa4-3835-4d56-9ed1-08d6d4580658", - "start": { - "$date": "2021-07-13T20:23:54.000Z" - }, - "end": { - "$date": "2021-07-13T20:51:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9bfcff8a-9868-49fa-9613-f02d64747f9b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-13T20:34:34.000Z" - }, - "end": { - "$date": "2021-07-13T22:31:50.000Z" - }, - "events": [ - { - "uuid": "e317a57d-2dc5-4592-9423-6cc3973c5975", - "start": { - "$date": "2021-07-13T20:34:34.000Z" - }, - "end": { - "$date": "2021-07-13T22:31:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "0b792597-beb0-4323-816a-c5c87848a2b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-13T21:03:36.000Z" - }, - "end": { - "$date": "2021-07-13T22:07:56.000Z" - }, - "events": [ - { - "uuid": "82371e31-a0a9-41a1-a9a0-bcb8cc694015", - "start": { - "$date": "2021-07-13T21:03:36.000Z" - }, - "end": { - "$date": "2021-07-13T22:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "35b2dbc5-ae87-4cda-874a-7ac95038e2b9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-13T23:49:52.000Z" - }, - "end": { - "$date": "2021-07-13T23:51:17.000Z" - }, - "events": [ - { - "uuid": "662af5cb-054c-4145-8628-df9adc4085b0", - "start": { - "$date": "2021-07-13T23:49:52.000Z" - }, - "end": { - "$date": "2021-07-13T23:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "db481dfa-e712-4f42-bec9-4c27dc97b400", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-13T22:32:56.000Z" - }, - "end": { - "$date": "2021-07-13T23:22:08.000Z" - }, - "events": [ - { - "uuid": "f5e318ac-8b9d-4341-b7d3-c80cec381c4e", - "start": { - "$date": "2021-07-13T22:32:56.000Z" - }, - "end": { - "$date": "2021-07-13T23:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a32ac828-241c-4956-8fbb-d903997a3151", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-13T23:23:28.000Z" - }, - "end": { - "$date": "2021-07-14T01:21:33.000Z" - }, - "events": [ - { - "uuid": "893296bd-30eb-4d7c-a2a8-f506a4b6a7ee", - "start": { - "$date": "2021-07-13T23:23:28.000Z" - }, - "end": { - "$date": "2021-07-14T01:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "42698506-8a1c-4508-821c-97e073818f7a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-14T00:58:02.000Z" - }, - "end": { - "$date": "2021-07-14T01:05:18.000Z" - }, - "events": [ - { - "uuid": "86044693-b10f-4e22-bb2b-18fa22cb70bc", - "start": { - "$date": "2021-07-14T00:58:02.000Z" - }, - "end": { - "$date": "2021-07-14T01:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "900f6d87-701e-4d89-8203-487afb4abb27", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-13T21:59:13.000Z" - }, - "end": { - "$date": "2021-07-14T06:55:54.000Z" - }, - "events": [ - { - "uuid": "48fb904f-7884-4f89-b10f-f553d6854c88", - "start": { - "$date": "2021-07-13T21:59:13.000Z" - }, - "end": { - "$date": "2021-07-13T23:11:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0a944d4-6836-4a66-97fe-f634a2186204", - "start": { - "$date": "2021-07-13T23:11:13.000Z" - }, - "end": { - "$date": "2021-07-13T23:16:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99e8c17a-77ae-4074-9fcb-7aff38a0c96e", - "start": { - "$date": "2021-07-13T23:16:13.000Z" - }, - "end": { - "$date": "2021-07-13T23:18:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "755e6e7d-f174-4ab3-9a42-7ffa31080ffb", - "start": { - "$date": "2021-07-13T23:18:13.000Z" - }, - "end": { - "$date": "2021-07-13T23:27:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "862c93ef-8b54-4723-9720-fa69542cd040", - "start": { - "$date": "2021-07-13T23:27:13.000Z" - }, - "end": { - "$date": "2021-07-13T23:39:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d68271e8-ab85-4dcd-81a6-e266bb091b1a", - "start": { - "$date": "2021-07-13T23:39:13.000Z" - }, - "end": { - "$date": "2021-07-13T23:49:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1386907d-7777-4cab-bd23-5e0daa95a880", - "start": { - "$date": "2021-07-13T23:49:13.000Z" - }, - "end": { - "$date": "2021-07-14T01:21:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddce00fb-8af7-479d-90f9-261673487565", - "start": { - "$date": "2021-07-14T01:21:13.000Z" - }, - "end": { - "$date": "2021-07-14T01:33:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "37645688-3468-466d-86c0-da07842af341", - "start": { - "$date": "2021-07-14T01:33:13.000Z" - }, - "end": { - "$date": "2021-07-14T03:00:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72f03984-7139-401b-a148-5cb7c5c955e9", - "start": { - "$date": "2021-07-14T03:00:13.000Z" - }, - "end": { - "$date": "2021-07-14T03:01:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a5364687-c1d9-4e1f-baa1-8f9c6bd76d91", - "start": { - "$date": "2021-07-14T03:01:13.000Z" - }, - "end": { - "$date": "2021-07-14T06:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "48e25bf1-1c9b-413a-bb42-abbfc4e34dcb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-14T01:22:09.000Z" - }, - "end": { - "$date": "2021-07-14T01:49:55.000Z" - }, - "events": [ - { - "uuid": "b3c91599-ca6a-4e56-8cb3-020e40dfe7b2", - "start": { - "$date": "2021-07-14T01:22:09.000Z" - }, - "end": { - "$date": "2021-07-14T01:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d19aa7c-fb11-4c5f-8cd2-2e19c105dc2a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-14T01:30:20.000Z" - }, - "end": { - "$date": "2021-07-14T03:49:11.000Z" - }, - "events": [ - { - "uuid": "2a93bf68-20cf-43b3-8b0e-7ae6f1cee48c", - "start": { - "$date": "2021-07-14T01:30:20.000Z" - }, - "end": { - "$date": "2021-07-14T03:49:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "uuid": "d6824cea-eb2e-4e6c-a484-2aeae2e0ec4b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-14T01:50:35.000Z" - }, - "end": { - "$date": "2021-07-14T01:59:50.000Z" - }, - "events": [ - { - "uuid": "e84b39c2-5c13-46ee-8d13-b5117c8e7325", - "start": { - "$date": "2021-07-14T01:50:35.000Z" - }, - "end": { - "$date": "2021-07-14T01:59:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3df0be5c-74f7-4def-80b8-f8e6831870b5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-14T02:59:46.000Z" - }, - "end": { - "$date": "2021-07-14T03:34:35.000Z" - }, - "events": [ - { - "uuid": "a1a51b47-dfdf-4766-9475-6d5755d7161a", - "start": { - "$date": "2021-07-14T02:59:46.000Z" - }, - "end": { - "$date": "2021-07-14T03:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30882068-4b39-4cda-98cd-a6bfea4b1734", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-14T03:44:47.000Z" - }, - "end": { - "$date": "2021-07-14T04:14:50.000Z" - }, - "events": [ - { - "uuid": "829e94cd-ffff-471c-8525-3c0e263be23d", - "start": { - "$date": "2021-07-14T03:44:47.000Z" - }, - "end": { - "$date": "2021-07-14T04:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0207c75a-4375-44e3-9d88-ca47b31d9a41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-14T03:46:18.000Z" - }, - "end": { - "$date": "2021-07-14T04:16:30.000Z" - }, - "events": [ - { - "uuid": "05edd71a-dfa7-4174-bcb6-ef4d909d455d", - "start": { - "$date": "2021-07-14T03:46:18.000Z" - }, - "end": { - "$date": "2021-07-14T04:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "222e4423-80a6-48de-9bbb-cb86f2f642ba", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-14T03:50:36.000Z" - }, - "end": { - "$date": "2021-07-14T05:50:59.000Z" - }, - "events": [ - { - "uuid": "8912be47-e1bf-466d-bef6-d3e48181b95e", - "start": { - "$date": "2021-07-14T03:50:36.000Z" - }, - "end": { - "$date": "2021-07-14T05:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "086f9724-9e55-4dca-8efa-1ad07c7c6b38", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-14T03:50:45.000Z" - }, - "end": { - "$date": "2021-07-14T06:59:41.000Z" - }, - "events": [ - { - "uuid": "3fc55736-d626-43cf-bd19-700319297922", - "start": { - "$date": "2021-07-14T03:50:45.000Z" - }, - "end": { - "$date": "2021-07-14T06:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cf213a8-5345-4bea-ac9a-57856fcf990f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-14T04:26:52.000Z" - }, - "end": { - "$date": "2021-07-14T04:55:45.000Z" - }, - "events": [ - { - "uuid": "ebe85e45-0eb6-4e0b-8d7a-a10f86ce6bc5", - "start": { - "$date": "2021-07-14T04:26:52.000Z" - }, - "end": { - "$date": "2021-07-14T04:55:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad25f528-e551-4894-b268-f7b5932e89c5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-14T04:56:04.000Z" - }, - "end": { - "$date": "2021-07-14T05:30:56.000Z" - }, - "events": [ - { - "uuid": "14198ec6-ad50-409c-ac20-32175ec7034b", - "start": { - "$date": "2021-07-14T04:56:04.000Z" - }, - "end": { - "$date": "2021-07-14T05:16:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "707c8fda-fd6b-45ec-8267-5e47bed9cda2", - "start": { - "$date": "2021-07-14T05:16:04.000Z" - }, - "end": { - "$date": "2021-07-14T05:17:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba6caa8f-0f44-4bc5-9836-a8da8d6fd472", - "start": { - "$date": "2021-07-14T05:17:04.000Z" - }, - "end": { - "$date": "2021-07-14T05:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95bc8393-a651-4f76-9903-289891beeb74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-14T05:29:10.000Z" - }, - "end": { - "$date": "2021-07-14T05:45:35.000Z" - }, - "events": [ - { - "uuid": "b859e512-7e85-44fd-9f1b-8e709cff52db", - "start": { - "$date": "2021-07-14T05:29:10.000Z" - }, - "end": { - "$date": "2021-07-14T05:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77cf6c23-d0b7-4f02-aaad-a227353db00d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-14T05:46:21.000Z" - }, - "end": { - "$date": "2021-07-14T06:10:29.000Z" - }, - "events": [ - { - "uuid": "0560fe9b-a1d7-4bb5-83df-f81c747eaaab", - "start": { - "$date": "2021-07-14T05:46:21.000Z" - }, - "end": { - "$date": "2021-07-14T06:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "122f7b58-a3e4-4273-81ab-e5f70be0c254", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-14T05:53:22.000Z" - }, - "end": { - "$date": "2021-07-14T06:11:05.000Z" - }, - "events": [ - { - "uuid": "9fdb630d-92e4-4bdb-87eb-9ffa1f2d7c1e", - "start": { - "$date": "2021-07-14T05:53:22.000Z" - }, - "end": { - "$date": "2021-07-14T06:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c2440e74-a838-4c1e-bd78-dea0baca5c36", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-14T06:11:12.000Z" - }, - "end": { - "$date": "2021-07-14T07:27:45.000Z" - }, - "events": [ - { - "uuid": "353ae8f8-907b-4da2-9600-6edc7f544a39", - "start": { - "$date": "2021-07-14T06:11:12.000Z" - }, - "end": { - "$date": "2021-07-14T07:27:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce1669fd-405d-4d91-ab72-ecc2cc09c2de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-14T06:13:52.000Z" - }, - "end": { - "$date": "2021-07-14T06:59:34.000Z" - }, - "events": [ - { - "uuid": "deaad150-c891-4c80-a88a-a3e8a888f6ac", - "start": { - "$date": "2021-07-14T06:13:52.000Z" - }, - "end": { - "$date": "2021-07-14T06:59:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f93061b-1f3d-478f-9da6-54a5567a97ea", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-14T06:14:51.000Z" - }, - "end": { - "$date": "2021-07-14T06:26:59.000Z" - }, - "events": [ - { - "uuid": "7af4c38f-0922-4522-883f-ce9549a41234", - "start": { - "$date": "2021-07-14T06:14:51.000Z" - }, - "end": { - "$date": "2021-07-14T06:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f0a30985-d174-4002-9f16-9bb4b5f0e74a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-14T13:29:12.000Z" - }, - "end": { - "$date": "2021-07-14T14:50:55.000Z" - }, - "events": [ - { - "uuid": "f83dff8d-efc4-42a8-8a49-23e09a9e72b3", - "start": { - "$date": "2021-07-14T13:29:12.000Z" - }, - "end": { - "$date": "2021-07-14T14:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f2c6afa8-8f02-4a82-9a9b-ebc5af54ba4a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-14T18:09:36.000Z" - }, - "end": { - "$date": "2021-07-14T18:31:13.000Z" - }, - "events": [ - { - "uuid": "26a1ba50-8bc2-4516-895f-9555291fd7fb", - "start": { - "$date": "2021-07-14T18:09:36.000Z" - }, - "end": { - "$date": "2021-07-14T18:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f08c5ce2-f251-4c0b-a2e5-7b6059aed5d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-14T20:17:06.000Z" - }, - "end": { - "$date": "2021-07-14T20:31:25.000Z" - }, - "events": [ - { - "uuid": "0fcfda7a-8b13-486e-8c62-bf6c1198f6ca", - "start": { - "$date": "2021-07-14T20:17:06.000Z" - }, - "end": { - "$date": "2021-07-14T20:31:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "59ce80a4-28a5-48d3-a289-64d3ce1a55e9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-14T20:28:38.000Z" - }, - "end": { - "$date": "2021-07-14T21:52:18.000Z" - }, - "events": [ - { - "uuid": "f06076dd-75c7-45ec-b690-3f62462c7bc8", - "start": { - "$date": "2021-07-14T20:28:38.000Z" - }, - "end": { - "$date": "2021-07-14T21:52:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb786d47-aff4-4efb-9d2f-f81a9f4fc4a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-14T20:32:25.000Z" - }, - "end": { - "$date": "2021-07-14T21:34:44.000Z" - }, - "events": [ - { - "uuid": "fbd2de11-afb7-473e-b2e1-76256ebaedc5", - "start": { - "$date": "2021-07-14T20:32:25.000Z" - }, - "end": { - "$date": "2021-07-14T21:34:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "5226ea2e-f722-4d09-bcf5-aafa8493ff7e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-14T23:18:01.000Z" - }, - "end": { - "$date": "2021-07-14T23:18:05.000Z" - }, - "events": [ - { - "uuid": "c0b931f8-da93-4ffc-9be1-192004893734", - "start": { - "$date": "2021-07-14T23:18:01.000Z" - }, - "end": { - "$date": "2021-07-14T23:18:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "e7171ece-0872-4eec-97ab-75709c169992", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-14T22:46:18.000Z" - }, - "end": { - "$date": "2021-07-15T01:23:32.000Z" - }, - "events": [ - { - "uuid": "bdbbe31b-6f73-42d8-8585-9576bc6689c4", - "start": { - "$date": "2021-07-14T22:46:18.000Z" - }, - "end": { - "$date": "2021-07-14T23:42:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "067e6b7c-2b9c-4322-9311-c17b6d31a2b4", - "start": { - "$date": "2021-07-14T23:42:18.000Z" - }, - "end": { - "$date": "2021-07-14T23:44:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b707ad8e-2f21-46d0-b24a-c41ca4ee8c3b", - "start": { - "$date": "2021-07-14T23:44:18.000Z" - }, - "end": { - "$date": "2021-07-15T01:23:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5b48a47a-d2b1-46bb-8014-2f3933250a2a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-14T23:13:00.000Z" - }, - "end": { - "$date": "2021-07-15T00:10:26.000Z" - }, - "events": [ - { - "uuid": "0aeffabd-e8a5-4a1c-91a8-9729da6991d6", - "start": { - "$date": "2021-07-14T23:13:00.000Z" - }, - "end": { - "$date": "2021-07-15T00:10:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "114268ff-7cd5-43bd-839e-8583f0249b70", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T00:55:59.000Z" - }, - "end": { - "$date": "2021-07-15T01:03:50.000Z" - }, - "events": [ - { - "uuid": "1b3377b3-4722-4a95-baa9-32c0c4d0c18a", - "start": { - "$date": "2021-07-15T00:55:59.000Z" - }, - "end": { - "$date": "2021-07-15T01:08:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "478f330b-1ead-48ac-a972-8f6c57bae34e", - "start": { - "$date": "2021-07-15T01:08:59.000Z" - }, - "end": { - "$date": "2021-07-15T01:10:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2a4412dc-30f0-473e-af07-9f234890b7d1", - "start": { - "$date": "2021-07-15T01:10:59.000Z" - }, - "end": { - "$date": "2021-07-15T01:03:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f65263f-c099-4b3d-bd0b-8f2c409e0009", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T01:23:56.000Z" - }, - "end": { - "$date": "2021-07-15T01:46:10.000Z" - }, - "events": [ - { - "uuid": "5fc02881-2460-4918-b08d-7efd60f65080", - "start": { - "$date": "2021-07-15T01:23:56.000Z" - }, - "end": { - "$date": "2021-07-15T01:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d00d581b-ed2f-4af6-826c-4afa3dbcc107", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-15T01:25:03.000Z" - }, - "end": { - "$date": "2021-07-15T08:03:17.000Z" - }, - "events": [ - { - "uuid": "742f27b8-baef-4ce4-8898-9c52be895d8e", - "start": { - "$date": "2021-07-15T01:25:03.000Z" - }, - "end": { - "$date": "2021-07-15T08:03:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "286db773-2d43-49f1-a0f8-a25b92f0ead4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-15T01:45:23.000Z" - }, - "end": { - "$date": "2021-07-15T05:16:02.000Z" - }, - "events": [ - { - "uuid": "cb7e1855-dec4-445e-a0b7-7b30a4987e9f", - "start": { - "$date": "2021-07-15T01:45:23.000Z" - }, - "end": { - "$date": "2021-07-15T05:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdce837b-bc7b-468a-87ce-9b9763cfdb0f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T01:49:27.000Z" - }, - "end": { - "$date": "2021-07-15T02:15:45.000Z" - }, - "events": [ - { - "uuid": "57c08606-072f-43b4-9a25-73d7b5e5a406", - "start": { - "$date": "2021-07-15T01:49:27.000Z" - }, - "end": { - "$date": "2021-07-15T02:15:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b281b2bf-5d6a-45cd-bef2-4bfd4d6ede7b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T02:18:28.000Z" - }, - "end": { - "$date": "2021-07-15T02:40:53.000Z" - }, - "events": [ - { - "uuid": "fddac0e9-5023-4653-8bef-3b3b5d8c6b80", - "start": { - "$date": "2021-07-15T02:18:28.000Z" - }, - "end": { - "$date": "2021-07-15T02:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "638aa330-50a7-4159-b4c9-e3c3ab631fdb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-15T02:56:11.000Z" - }, - "end": { - "$date": "2021-07-15T06:20:51.000Z" - }, - "events": [ - { - "uuid": "545a358d-a94f-41a8-a5ea-044ddfe07d9b", - "start": { - "$date": "2021-07-15T02:56:11.000Z" - }, - "end": { - "$date": "2021-07-15T06:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c910d3aa-9a43-4f2a-bb62-46a66d82dfb6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-15T03:28:19.000Z" - }, - "end": { - "$date": "2021-07-15T05:16:20.000Z" - }, - "events": [ - { - "uuid": "c8497f59-67c5-46dd-9df3-5bb44fc3a359", - "start": { - "$date": "2021-07-15T03:28:19.000Z" - }, - "end": { - "$date": "2021-07-15T05:16:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4cac806e-e8f0-4d45-a300-ea1d4b1ee5ce", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-15T04:07:12.000Z" - }, - "end": { - "$date": "2021-07-15T04:50:55.000Z" - }, - "events": [ - { - "uuid": "2cd8c26b-1cd8-4ed6-a7dc-a176d49cb688", - "start": { - "$date": "2021-07-15T04:07:12.000Z" - }, - "end": { - "$date": "2021-07-15T04:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36baf661-ee4c-4e3d-8ba6-56ccb6c36d76", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-15T04:36:17.000Z" - }, - "end": { - "$date": "2021-07-15T08:55:46.000Z" - }, - "events": [ - { - "uuid": "80695adb-88eb-42bc-9592-6b1f55680509", - "start": { - "$date": "2021-07-15T04:36:17.000Z" - }, - "end": { - "$date": "2021-07-15T04:51:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "38ffd6d8-c976-4365-8352-2d549d89aa9e", - "start": { - "$date": "2021-07-15T04:51:17.000Z" - }, - "end": { - "$date": "2021-07-15T04:52:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8f5f9d4-6af8-4c4f-b3bd-f6bd40593156", - "start": { - "$date": "2021-07-15T04:52:17.000Z" - }, - "end": { - "$date": "2021-07-15T08:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ff78686-895b-477a-b67d-cd88d7bca853", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-15T04:42:51.000Z" - }, - "end": { - "$date": "2021-07-15T05:13:29.000Z" - }, - "events": [ - { - "uuid": "598dc89a-870f-440c-a087-3d70de46c37b", - "start": { - "$date": "2021-07-15T04:42:51.000Z" - }, - "end": { - "$date": "2021-07-15T05:13:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0831e16-6124-455f-af42-56c39bbff09b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T05:05:57.000Z" - }, - "end": { - "$date": "2021-07-15T05:28:09.000Z" - }, - "events": [ - { - "uuid": "eeb5f39e-85dc-4b92-bdcd-62e8c74eec65", - "start": { - "$date": "2021-07-15T05:05:57.000Z" - }, - "end": { - "$date": "2021-07-15T05:28:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c31365e-d1a3-4134-af50-980f7f88d715", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-15T05:19:04.000Z" - }, - "end": { - "$date": "2021-07-15T05:49:52.000Z" - }, - "events": [ - { - "uuid": "23c52372-a8fe-4f6b-af4a-2c19a8aa0e99", - "start": { - "$date": "2021-07-15T05:19:04.000Z" - }, - "end": { - "$date": "2021-07-15T05:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "45d135e3-69e5-4458-98c9-5f5d3b8342a1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-15T05:15:53.000Z" - }, - "end": { - "$date": "2021-07-15T08:55:35.000Z" - }, - "events": [ - { - "uuid": "0ca25ef1-1224-470a-8c5e-f1f790dc1b2d", - "start": { - "$date": "2021-07-15T05:15:53.000Z" - }, - "end": { - "$date": "2021-07-15T08:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a795c1bb-80fb-42dd-920d-42330e417aa4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-15T05:30:29.000Z" - }, - "end": { - "$date": "2021-07-15T06:17:50.000Z" - }, - "events": [ - { - "uuid": "7b8ec442-b1b3-4aee-93ae-c10780d31a0e", - "start": { - "$date": "2021-07-15T05:30:29.000Z" - }, - "end": { - "$date": "2021-07-15T06:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e2bf568-6360-49d2-8023-66c3d6390d95", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-15T05:57:08.000Z" - }, - "end": { - "$date": "2021-07-15T06:31:17.000Z" - }, - "events": [ - { - "uuid": "32bd6b8b-c711-47fe-9ac4-63cc86f60410", - "start": { - "$date": "2021-07-15T05:57:08.000Z" - }, - "end": { - "$date": "2021-07-15T06:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f783f05-c9ba-4820-a635-23b810120d38", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-15T06:21:01.000Z" - }, - "end": { - "$date": "2021-07-15T06:46:55.000Z" - }, - "events": [ - { - "uuid": "51c6d28a-5796-4224-99c8-bab8eb479014", - "start": { - "$date": "2021-07-15T06:21:01.000Z" - }, - "end": { - "$date": "2021-07-15T06:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df6fa02b-c8e5-4fd4-918b-b30ac6e0418d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-15T06:34:27.000Z" - }, - "end": { - "$date": "2021-07-15T07:07:25.000Z" - }, - "events": [ - { - "uuid": "81501d69-17c2-4049-844f-12821d79fe95", - "start": { - "$date": "2021-07-15T06:34:27.000Z" - }, - "end": { - "$date": "2021-07-15T07:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ccfeb328-9d61-49f1-ad78-db5388b83da3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-15T13:48:35.000Z" - }, - "end": { - "$date": "2021-07-15T14:16:10.000Z" - }, - "events": [ - { - "uuid": "8252379c-30ee-4a89-be41-d854a6429744", - "start": { - "$date": "2021-07-15T13:48:35.000Z" - }, - "end": { - "$date": "2021-07-15T14:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0132817-0e40-4864-b05c-e9872a634a0d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T17:08:15.000Z" - }, - "end": { - "$date": "2021-07-15T17:34:08.000Z" - }, - "events": [ - { - "uuid": "af3ca455-dc9e-4cfe-969b-3eefe006d65b", - "start": { - "$date": "2021-07-15T17:08:15.000Z" - }, - "end": { - "$date": "2021-07-15T17:34:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "219699a0-4169-448b-b815-e55db0aed21f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-15T17:09:21.000Z" - }, - "end": { - "$date": "2021-07-15T17:37:51.000Z" - }, - "events": [ - { - "uuid": "4a574914-07ea-4fff-bcbf-07b84b13d7d0", - "start": { - "$date": "2021-07-15T17:09:21.000Z" - }, - "end": { - "$date": "2021-07-15T17:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc554b94-c73e-45bb-bf22-070e06a9f5be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T17:36:27.000Z" - }, - "end": { - "$date": "2021-07-15T18:00:46.000Z" - }, - "events": [ - { - "uuid": "e54ec309-33e7-4f03-8e5d-034dca29747a", - "start": { - "$date": "2021-07-15T17:36:27.000Z" - }, - "end": { - "$date": "2021-07-15T18:00:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13bf7aa2-ab2c-40d1-aaa8-babc18589998", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T18:04:09.000Z" - }, - "end": { - "$date": "2021-07-15T18:26:57.000Z" - }, - "events": [ - { - "uuid": "b6ec6763-95f6-41ea-8e57-67efb60cc68c", - "start": { - "$date": "2021-07-15T18:04:09.000Z" - }, - "end": { - "$date": "2021-07-15T18:26:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7eccdeea-dbc4-49a3-a9d2-b9924ce604d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T19:39:41.000Z" - }, - "end": { - "$date": "2021-07-15T20:08:26.000Z" - }, - "events": [ - { - "uuid": "b06ac6f2-c241-415e-a75b-eb76d129cbd6", - "start": { - "$date": "2021-07-15T19:39:41.000Z" - }, - "end": { - "$date": "2021-07-15T20:08:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "272cb271-f5fa-44f3-b4c6-a72fd9d58d2a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-15T19:40:29.000Z" - }, - "end": { - "$date": "2021-07-15T20:08:15.000Z" - }, - "events": [ - { - "uuid": "955c22fe-6c68-4a27-90de-3a64c19f0ad5", - "start": { - "$date": "2021-07-15T19:40:29.000Z" - }, - "end": { - "$date": "2021-07-15T20:08:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0522c946-3c11-4a36-b86b-8ecba81a6d1f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-15T19:50:08.000Z" - }, - "end": { - "$date": "2021-07-15T23:42:55.000Z" - }, - "events": [ - { - "uuid": "9e112a2e-72f5-419e-a99a-c107221fb304", - "start": { - "$date": "2021-07-15T19:50:08.000Z" - }, - "end": { - "$date": "2021-07-15T23:38:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e8db68c-21c1-4e93-b5ed-b3421cc5d69d", - "start": { - "$date": "2021-07-15T23:38:08.000Z" - }, - "end": { - "$date": "2021-07-15T23:42:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b842c66c-e803-4c6b-8c65-610510bafe43", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-15T19:58:15.000Z" - }, - "end": { - "$date": "2021-07-15T23:42:07.000Z" - }, - "events": [ - { - "uuid": "d2d60a30-d27b-4dca-8677-a2d8b9c426b3", - "start": { - "$date": "2021-07-15T19:58:15.000Z" - }, - "end": { - "$date": "2021-07-15T23:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "281502a5-62a6-480b-86d0-44f27c88784e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T20:17:34.000Z" - }, - "end": { - "$date": "2021-07-15T20:33:33.000Z" - }, - "events": [ - { - "uuid": "550338cb-716f-4b3e-9013-223275a0a7e2", - "start": { - "$date": "2021-07-15T20:17:34.000Z" - }, - "end": { - "$date": "2021-07-15T20:33:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ca8f661-a884-4f26-a7d1-11b69c6f27f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T20:36:35.000Z" - }, - "end": { - "$date": "2021-07-15T21:02:40.000Z" - }, - "events": [ - { - "uuid": "d4bf3141-71bb-4c4c-9dbd-77e468aa66c2", - "start": { - "$date": "2021-07-15T20:36:35.000Z" - }, - "end": { - "$date": "2021-07-15T21:02:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bb4e4c8-ef00-4b86-9fbb-4140ab18ce49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T21:10:32.000Z" - }, - "end": { - "$date": "2021-07-15T21:29:40.000Z" - }, - "events": [ - { - "uuid": "3e73de92-621b-40e9-ab12-a32faf059f40", - "start": { - "$date": "2021-07-15T21:10:32.000Z" - }, - "end": { - "$date": "2021-07-15T21:29:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efc2fa6f-1a2d-445e-8027-bb7ee02925bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-15T21:34:08.000Z" - }, - "end": { - "$date": "2021-07-15T21:59:35.000Z" - }, - "events": [ - { - "uuid": "cdc6d988-8429-4703-be45-04ac52437e2f", - "start": { - "$date": "2021-07-15T21:34:08.000Z" - }, - "end": { - "$date": "2021-07-15T21:59:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "31de5ed6-1919-4aeb-bfa5-6648b0281ef0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-15T21:12:05.000Z" - }, - "end": { - "$date": "2021-07-16T03:22:44.000Z" - }, - "events": [ - { - "uuid": "5922bb12-218c-4fb5-bc28-996d8fec4cd2", - "start": { - "$date": "2021-07-15T21:12:05.000Z" - }, - "end": { - "$date": "2021-07-16T03:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "771845b6-7103-4190-875c-57fe7d7f70e1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-15T23:13:33.000Z" - }, - "end": { - "$date": "2021-07-16T00:20:00.000Z" - }, - "events": [ - { - "uuid": "ab1f5169-7f2b-4055-811e-cd607267e5f0", - "start": { - "$date": "2021-07-15T23:13:33.000Z" - }, - "end": { - "$date": "2021-07-16T00:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0a935cbb-c5ef-42da-9edd-14fb99feaa5a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-16T01:47:15.000Z" - }, - "end": { - "$date": "2021-07-16T01:49:15.000Z" - }, - "events": [ - { - "uuid": "f95cfd71-26d9-40e8-8f3a-ab542b33d45c", - "start": { - "$date": "2021-07-16T01:47:15.000Z" - }, - "end": { - "$date": "2021-07-16T01:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8b0b0c29-3f0d-43d7-b233-be09e52f248a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-16T01:47:33.000Z" - }, - "end": { - "$date": "2021-07-16T03:44:37.000Z" - }, - "events": [ - { - "uuid": "4f3ae5bb-98d6-4958-995c-9bc098a3f627", - "start": { - "$date": "2021-07-16T01:47:33.000Z" - }, - "end": { - "$date": "2021-07-16T03:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "71b08dd9-df2a-40a8-98cb-bc0ed967c506", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-16T01:48:59.000Z" - }, - "end": { - "$date": "2021-07-16T05:14:36.000Z" - }, - "events": [ - { - "uuid": "fc2fb27a-f3e4-4b77-b880-d873ecdab906", - "start": { - "$date": "2021-07-16T01:48:59.000Z" - }, - "end": { - "$date": "2021-07-16T05:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "uuid": "68e06990-8210-4334-955c-5c914e2b3018", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-16T01:51:26.000Z" - }, - "end": { - "$date": "2021-07-16T02:06:26.000Z" - }, - "events": [ - { - "uuid": "f5f9092e-9e38-4aba-abfa-5ff9502cd373", - "start": { - "$date": "2021-07-16T01:51:26.000Z" - }, - "end": { - "$date": "2021-07-16T02:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "311ca1d3-6154-48fc-a142-bec3883f9ce4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-16T02:54:48.000Z" - }, - "end": { - "$date": "2021-07-16T02:54:58.000Z" - }, - "events": [ - { - "uuid": "a2d71a29-5342-4644-ae0c-d5a569dca74d", - "start": { - "$date": "2021-07-16T02:54:48.000Z" - }, - "end": { - "$date": "2021-07-16T02:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f9cdff2b-37c3-4885-b8ac-7303f8376787", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-16T02:35:58.000Z" - }, - "end": { - "$date": "2021-07-16T05:54:24.000Z" - }, - "events": [ - { - "uuid": "b29f760e-34aa-4623-9930-99128ed68886", - "start": { - "$date": "2021-07-16T02:35:58.000Z" - }, - "end": { - "$date": "2021-07-16T05:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "53eb4803-7ace-4594-9adf-9df3cdfb9eba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-16T02:37:57.000Z" - }, - "end": { - "$date": "2021-07-16T05:56:10.000Z" - }, - "events": [ - { - "uuid": "20652957-d1b2-4e93-b3e1-a10d7faa2d49", - "start": { - "$date": "2021-07-16T02:37:57.000Z" - }, - "end": { - "$date": "2021-07-16T05:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "be235465-f62f-4a89-8e5b-bafbdf14e723", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-16T02:55:18.000Z" - }, - "end": { - "$date": "2021-07-16T03:52:04.000Z" - }, - "events": [ - { - "uuid": "a4cf3b3f-d932-4259-ba0b-655d108007ea", - "start": { - "$date": "2021-07-16T02:55:18.000Z" - }, - "end": { - "$date": "2021-07-16T03:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e84d187-0be7-4838-b0d1-329e57dcd122", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-16T04:17:17.000Z" - }, - "end": { - "$date": "2021-07-16T04:49:41.000Z" - }, - "events": [ - { - "uuid": "a1a23a95-64cd-4122-a715-8218b9365629", - "start": { - "$date": "2021-07-16T04:17:17.000Z" - }, - "end": { - "$date": "2021-07-16T04:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6d1560fa-12f4-447d-9f60-1d78fb83e6b5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-16T04:20:36.000Z" - }, - "end": { - "$date": "2021-07-16T05:31:59.000Z" - }, - "events": [ - { - "uuid": "d1b4116d-ba41-49b3-a3a5-a8be2e957bcf", - "start": { - "$date": "2021-07-16T04:20:36.000Z" - }, - "end": { - "$date": "2021-07-16T05:31:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2236e7e8-c7c0-4ef1-91de-d65c685a9e52", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-16T04:33:49.000Z" - }, - "end": { - "$date": "2021-07-16T05:53:43.000Z" - }, - "events": [ - { - "uuid": "d534fac9-064c-4176-9dab-38a9ef2dc56f", - "start": { - "$date": "2021-07-16T04:33:49.000Z" - }, - "end": { - "$date": "2021-07-16T05:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4dcbe8a6-2e52-41be-bd17-e1e8e9d4d628", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-16T04:35:07.000Z" - }, - "end": { - "$date": "2021-07-16T05:54:12.000Z" - }, - "events": [ - { - "uuid": "3e82a55d-ad83-4ffb-875e-00c3bc71d073", - "start": { - "$date": "2021-07-16T04:35:07.000Z" - }, - "end": { - "$date": "2021-07-16T05:54:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "964fd759-a363-4157-9722-57b7b3c79b24", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-16T04:53:41.000Z" - }, - "end": { - "$date": "2021-07-16T05:17:19.000Z" - }, - "events": [ - { - "uuid": "0465aabb-25cf-4cea-b966-3b62ac2e42c3", - "start": { - "$date": "2021-07-16T04:53:41.000Z" - }, - "end": { - "$date": "2021-07-16T05:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "0e8472e4-8457-42b7-88cc-f633474d57a6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-16T08:36:41.000Z" - }, - "end": { - "$date": "2021-07-16T08:38:38.000Z" - }, - "events": [ - { - "uuid": "4c4babff-c28a-4549-841e-73df0f9ce18c", - "start": { - "$date": "2021-07-16T08:36:41.000Z" - }, - "end": { - "$date": "2021-07-16T12:06:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d87d10ad-933e-45b9-b5bb-5fd3d56773ed", - "start": { - "$date": "2021-07-16T12:06:41.000Z" - }, - "end": { - "$date": "2021-07-16T08:38:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f021ba89-0c48-44d8-97fb-24d99f045f37", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-16T05:26:09.000Z" - }, - "end": { - "$date": "2021-07-16T05:52:28.000Z" - }, - "events": [ - { - "uuid": "43043ae9-6552-462b-99dd-474ac5f24931", - "start": { - "$date": "2021-07-16T05:26:09.000Z" - }, - "end": { - "$date": "2021-07-16T05:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c03cebe9-674b-421f-b851-d45f87a378fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-16T05:32:09.000Z" - }, - "end": { - "$date": "2021-07-16T07:22:35.000Z" - }, - "events": [ - { - "uuid": "e7901be4-27bc-40d4-a24f-de00adcc0ffc", - "start": { - "$date": "2021-07-16T05:32:09.000Z" - }, - "end": { - "$date": "2021-07-16T07:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "273f9317-d507-4c82-be53-38066cc82e93", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-16T06:01:14.000Z" - }, - "end": { - "$date": "2021-07-16T06:33:32.000Z" - }, - "events": [ - { - "uuid": "daf5afbd-80ce-4d48-9edc-3fb533a1cab8", - "start": { - "$date": "2021-07-16T06:01:14.000Z" - }, - "end": { - "$date": "2021-07-16T06:33:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a555a01-d27c-4eb0-a4b9-f83e91f65757", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-16T06:17:49.000Z" - }, - "end": { - "$date": "2021-07-16T06:33:39.000Z" - }, - "events": [ - { - "uuid": "11cb8f95-0d1b-4d58-8988-7c358179a61d", - "start": { - "$date": "2021-07-16T06:17:49.000Z" - }, - "end": { - "$date": "2021-07-16T06:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "3118ae41-1d08-43e5-a2dc-b2ed868fee35", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-16T08:36:41.000Z" - }, - "end": { - "$date": "2021-07-16T14:35:48.000Z" - }, - "events": [ - { - "uuid": "a0966540-702e-4916-a6b4-fa35b32d5f31", - "start": { - "$date": "2021-07-16T08:36:41.000Z" - }, - "end": { - "$date": "2021-07-16T14:35:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5ed4eeb-1135-4723-8cb4-abcffd40b744", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-16T17:37:14.000Z" - }, - "end": { - "$date": "2021-07-16T19:47:26.000Z" - }, - "events": [ - { - "uuid": "e71dd1eb-fcaa-4309-a899-32d2398736b6", - "start": { - "$date": "2021-07-16T17:37:14.000Z" - }, - "end": { - "$date": "2021-07-16T18:08:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0852bbe9-f6ea-444d-8df9-184d6d76ee89", - "start": { - "$date": "2021-07-16T18:08:14.000Z" - }, - "end": { - "$date": "2021-07-16T19:47:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a657878f-3040-4b97-84e6-deb839c582ea", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-16T19:31:51.000Z" - }, - "end": { - "$date": "2021-07-16T20:51:02.000Z" - }, - "events": [ - { - "uuid": "de655ea6-c1bf-441c-bdcf-789b2b2d95db", - "start": { - "$date": "2021-07-16T19:31:51.000Z" - }, - "end": { - "$date": "2021-07-16T20:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "71ed193a-7fd3-4272-b083-dc857786e537", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-16T20:28:14.000Z" - }, - "end": { - "$date": "2021-07-16T23:48:08.000Z" - }, - "events": [ - { - "uuid": "302f089f-a3a4-489e-ae50-61f6fc7ba010", - "start": { - "$date": "2021-07-16T20:28:14.000Z" - }, - "end": { - "$date": "2021-07-16T23:03:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8efd6bb1-95ea-4f67-b718-78cfe275b9bb", - "start": { - "$date": "2021-07-16T23:03:14.000Z" - }, - "end": { - "$date": "2021-07-16T23:06:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4700101-a1bc-42e5-88c4-17797c51a400", - "start": { - "$date": "2021-07-16T23:06:14.000Z" - }, - "end": { - "$date": "2021-07-16T23:08:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31a9a22a-fe4a-4a3b-896d-dca4a7537247", - "start": { - "$date": "2021-07-16T23:08:14.000Z" - }, - "end": { - "$date": "2021-07-16T23:16:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8badf15-e4be-4c2a-ab71-78bc53e92527", - "start": { - "$date": "2021-07-16T23:16:14.000Z" - }, - "end": { - "$date": "2021-07-16T23:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f8aec50a-c6df-44d3-a5cf-16be4e01da85", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-16T22:09:24.000Z" - }, - "end": { - "$date": "2021-07-16T22:45:56.000Z" - }, - "events": [ - { - "uuid": "1560ff27-73b8-43ee-80fc-0e563e381c9c", - "start": { - "$date": "2021-07-16T22:09:24.000Z" - }, - "end": { - "$date": "2021-07-16T22:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bfacdc64-610b-490e-b2f8-21baa4a9b3d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-17T00:33:26.000Z" - }, - "end": { - "$date": "2021-07-17T07:12:44.000Z" - }, - "events": [ - { - "uuid": "154c89e5-258c-40b2-aead-d39eda57a45e", - "start": { - "$date": "2021-07-17T00:33:26.000Z" - }, - "end": { - "$date": "2021-07-17T07:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b680e822-1c0c-46b8-9238-fb2b242f1537", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-17T01:12:14.000Z" - }, - "end": { - "$date": "2021-07-17T05:21:12.000Z" - }, - "events": [ - { - "uuid": "5f26b580-4429-4bd0-8dd9-2710b99e3bfe", - "start": { - "$date": "2021-07-17T01:12:14.000Z" - }, - "end": { - "$date": "2021-07-17T05:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "03880a88-b8c7-44ba-a771-b96a64b04ddf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-17T06:47:18.000Z" - }, - "end": { - "$date": "2021-07-17T06:49:52.000Z" - }, - "events": [ - { - "uuid": "596563e3-01f8-4dd3-a444-3e14686a5218", - "start": { - "$date": "2021-07-17T06:47:18.000Z" - }, - "end": { - "$date": "2021-07-17T06:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dde4516e-be19-47be-9780-45912aef2444", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-17T01:47:37.000Z" - }, - "end": { - "$date": "2021-07-17T01:50:08.000Z" - }, - "events": [ - { - "uuid": "0b12d3e2-019a-49ab-ae5e-e491afae6fde", - "start": { - "$date": "2021-07-17T01:47:37.000Z" - }, - "end": { - "$date": "2021-07-17T01:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "333167f8-25f4-4a70-9ddf-2db4c271cdc7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-17T01:58:53.000Z" - }, - "end": { - "$date": "2021-07-17T04:15:53.000Z" - }, - "events": [ - { - "uuid": "afbeb914-21e2-47e0-805c-5fc1441e0cac", - "start": { - "$date": "2021-07-17T01:58:53.000Z" - }, - "end": { - "$date": "2021-07-17T04:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b74fb848-c15d-401a-801e-13fc9b7293a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-17T02:50:02.000Z" - }, - "end": { - "$date": "2021-07-17T03:08:16.000Z" - }, - "events": [ - { - "uuid": "4cc9f3eb-3b73-4792-87bd-b9ae15792a1a", - "start": { - "$date": "2021-07-17T02:50:02.000Z" - }, - "end": { - "$date": "2021-07-17T03:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "97725a0d-0107-44e3-bde2-76dcc7c37a03", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-17T03:04:05.000Z" - }, - "end": { - "$date": "2021-07-17T03:56:46.000Z" - }, - "events": [ - { - "uuid": "321df1ea-2a6b-45af-8699-b9e1a432be08", - "start": { - "$date": "2021-07-17T03:04:05.000Z" - }, - "end": { - "$date": "2021-07-17T03:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87dd33b2-3385-4332-8616-96eda44d9a88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-17T03:14:45.000Z" - }, - "end": { - "$date": "2021-07-17T03:41:09.000Z" - }, - "events": [ - { - "uuid": "1350088c-5b78-49c3-b94a-890bfbd2a5a6", - "start": { - "$date": "2021-07-17T03:14:45.000Z" - }, - "end": { - "$date": "2021-07-17T03:41:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "66e7fa4c-1cce-41f5-bdb5-39d42e96bcba", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-17T03:16:59.000Z" - }, - "end": { - "$date": "2021-07-17T04:15:51.000Z" - }, - "events": [ - { - "uuid": "ef4c4da7-f954-4339-ad99-3da4760f8f95", - "start": { - "$date": "2021-07-17T03:16:59.000Z" - }, - "end": { - "$date": "2021-07-17T04:15:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c483fe99-142b-48e8-8f45-cab15d5ab16f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-17T03:45:58.000Z" - }, - "end": { - "$date": "2021-07-17T04:15:57.000Z" - }, - "events": [ - { - "uuid": "93ee1743-2f1c-4c53-a1ae-b77274de0ad7", - "start": { - "$date": "2021-07-17T03:45:58.000Z" - }, - "end": { - "$date": "2021-07-17T04:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f4ea061-eb75-4246-b2ae-5c43d1d9e896", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-17T04:18:12.000Z" - }, - "end": { - "$date": "2021-07-17T04:34:18.000Z" - }, - "events": [ - { - "uuid": "498a3c87-e37c-4266-9b1d-f463bd288ef7", - "start": { - "$date": "2021-07-17T04:18:12.000Z" - }, - "end": { - "$date": "2021-07-17T04:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "38f073f8-8200-40b8-8f12-772b28401b6a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-17T04:17:08.000Z" - }, - "end": { - "$date": "2021-07-17T04:45:18.000Z" - }, - "events": [ - { - "uuid": "437e1159-8b96-41cc-a586-f1e157b8decd", - "start": { - "$date": "2021-07-17T04:17:08.000Z" - }, - "end": { - "$date": "2021-07-17T04:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ec2c1ab-f6bc-4eb9-ae10-785569f2b030", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T04:34:52.000Z" - }, - "end": { - "$date": "2021-07-17T05:09:40.000Z" - }, - "events": [ - { - "uuid": "93de21c0-88df-4679-aa25-2a6488cc5500", - "start": { - "$date": "2021-07-17T04:34:52.000Z" - }, - "end": { - "$date": "2021-07-17T05:09:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c8c0ea6-a0dd-464d-b08d-7f6233026f6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-17T04:34:43.000Z" - }, - "end": { - "$date": "2021-07-17T04:37:06.000Z" - }, - "events": [ - { - "uuid": "449aa791-523d-4ced-b154-18f2e8ccc811", - "start": { - "$date": "2021-07-17T04:34:43.000Z" - }, - "end": { - "$date": "2021-07-17T04:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e49794ed-17ee-49d1-9152-9b6673f686a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-17T04:56:11.000Z" - }, - "end": { - "$date": "2021-07-17T05:51:55.000Z" - }, - "events": [ - { - "uuid": "e85ba614-b19a-44ac-b733-932e00b705bf", - "start": { - "$date": "2021-07-17T04:56:11.000Z" - }, - "end": { - "$date": "2021-07-17T05:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbafb07f-71a3-4a27-8994-2800b9dcaf23", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T05:19:07.000Z" - }, - "end": { - "$date": "2021-07-17T05:45:30.000Z" - }, - "events": [ - { - "uuid": "f3b81846-d679-4a95-a39a-00901afcd187", - "start": { - "$date": "2021-07-17T05:19:07.000Z" - }, - "end": { - "$date": "2021-07-17T05:45:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36741fe2-2c3a-4e5e-869d-bb5f4ad8abe9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-17T05:11:40.000Z" - }, - "end": { - "$date": "2021-07-17T06:07:25.000Z" - }, - "events": [ - { - "uuid": "0a24f461-ee8f-4880-bd31-00f9ee2f45a7", - "start": { - "$date": "2021-07-17T05:11:40.000Z" - }, - "end": { - "$date": "2021-07-17T06:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "44866a81-d404-4715-ab7d-69fbfd81a522", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-17T05:23:07.000Z" - }, - "end": { - "$date": "2021-07-17T06:47:41.000Z" - }, - "events": [ - { - "uuid": "32384f9c-4d5d-4f63-9793-8acc7a5c7f73", - "start": { - "$date": "2021-07-17T05:23:07.000Z" - }, - "end": { - "$date": "2021-07-17T06:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c165ab0-e057-41f1-8d5e-55e993a01ec5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T05:55:56.000Z" - }, - "end": { - "$date": "2021-07-17T06:17:43.000Z" - }, - "events": [ - { - "uuid": "e3fbd7a6-e303-4506-b97b-2aa1b0fc2d58", - "start": { - "$date": "2021-07-17T05:55:56.000Z" - }, - "end": { - "$date": "2021-07-17T06:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4e710ab4-28c3-41b1-a7f6-a3cc024282ef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-17T05:52:30.000Z" - }, - "end": { - "$date": "2021-07-17T06:47:22.000Z" - }, - "events": [ - { - "uuid": "49099e49-27b7-4df8-aa10-6656cf9e6f9d", - "start": { - "$date": "2021-07-17T05:52:30.000Z" - }, - "end": { - "$date": "2021-07-17T06:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e72e138-ba4d-4fbd-9179-0d7bd55d775c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T06:23:55.000Z" - }, - "end": { - "$date": "2021-07-17T06:51:52.000Z" - }, - "events": [ - { - "uuid": "990aff01-b36b-4c27-bb99-bc6740cd0316", - "start": { - "$date": "2021-07-17T06:23:55.000Z" - }, - "end": { - "$date": "2021-07-17T06:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c53b431c-5ed4-4646-81ca-759e379dbdb3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T07:03:09.000Z" - }, - "end": { - "$date": "2021-07-17T07:30:27.000Z" - }, - "events": [ - { - "uuid": "28a375dc-bc6d-4d2c-bc12-863b1e9fe05d", - "start": { - "$date": "2021-07-17T07:03:09.000Z" - }, - "end": { - "$date": "2021-07-17T07:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "024f83c7-cb54-45b2-a600-7caa75683aed", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T07:36:43.000Z" - }, - "end": { - "$date": "2021-07-17T08:00:15.000Z" - }, - "events": [ - { - "uuid": "e3dd4f6c-df8e-476b-8ea9-16c47378d4f4", - "start": { - "$date": "2021-07-17T07:36:43.000Z" - }, - "end": { - "$date": "2021-07-17T08:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cede0aca-a292-4401-8af2-5c85deabcd2d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-17T08:06:46.000Z" - }, - "end": { - "$date": "2021-07-17T08:41:41.000Z" - }, - "events": [ - { - "uuid": "44c831bb-eed8-4365-9a53-c705eacd79ab", - "start": { - "$date": "2021-07-17T08:06:46.000Z" - }, - "end": { - "$date": "2021-07-17T08:41:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "882be0b0-ada3-4da5-99a0-6596f14bb1fe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-17T15:28:07.000Z" - }, - "end": { - "$date": "2021-07-17T16:21:57.000Z" - }, - "events": [ - { - "uuid": "071b11dc-7b7b-41ae-87a8-c56c27354773", - "start": { - "$date": "2021-07-17T15:28:07.000Z" - }, - "end": { - "$date": "2021-07-17T16:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9eb22e4f-6432-4afb-b755-8fc66aa743ba", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-17T16:18:22.000Z" - }, - "end": { - "$date": "2021-07-17T23:00:32.000Z" - }, - "events": [ - { - "uuid": "c382b967-de0d-4e37-bfac-fc56afa5e4ad", - "start": { - "$date": "2021-07-17T16:18:22.000Z" - }, - "end": { - "$date": "2021-07-17T21:03:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eefe5f60-74a0-4d6d-91ed-b7ac104c0fe0", - "start": { - "$date": "2021-07-17T21:03:22.000Z" - }, - "end": { - "$date": "2021-07-17T21:17:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f1ac9bc-35c9-4d34-b002-88d4d0795c37", - "start": { - "$date": "2021-07-17T21:17:22.000Z" - }, - "end": { - "$date": "2021-07-17T23:00:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fbbb516f-5722-4830-9600-6cbbc17a56c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-17T18:44:19.000Z" - }, - "end": { - "$date": "2021-07-17T20:59:29.000Z" - }, - "events": [ - { - "uuid": "6cd27021-75cf-46a9-9057-77ad22d166ed", - "start": { - "$date": "2021-07-17T18:44:19.000Z" - }, - "end": { - "$date": "2021-07-17T20:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0e3f62af-aec4-44e1-a346-283b77a5b2ef", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-17T22:35:17.000Z" - }, - "end": { - "$date": "2021-07-18T00:14:21.000Z" - }, - "events": [ - { - "uuid": "21826487-ad27-47b9-90c4-802d668c46e6", - "start": { - "$date": "2021-07-17T22:35:17.000Z" - }, - "end": { - "$date": "2021-07-18T00:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b57443a6-75d7-44d1-a2ea-d87918197da6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-17T23:00:41.000Z" - }, - "end": { - "$date": "2021-07-17T23:04:20.000Z" - }, - "events": [ - { - "uuid": "c986a5f3-3c57-472c-b8be-1f9486d14d69", - "start": { - "$date": "2021-07-17T23:00:41.000Z" - }, - "end": { - "$date": "2021-07-17T23:04:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "389847a5-ec29-42e6-b59f-e913529a19b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-17T23:06:48.000Z" - }, - "end": { - "$date": "2021-07-18T06:27:04.000Z" - }, - "events": [ - { - "uuid": "d6ff0486-358c-46ae-a646-bf9e103df11f", - "start": { - "$date": "2021-07-17T23:06:48.000Z" - }, - "end": { - "$date": "2021-07-18T03:07:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de23c460-cb4d-4d02-9072-6c454fc6b1ce", - "start": { - "$date": "2021-07-18T03:07:48.000Z" - }, - "end": { - "$date": "2021-07-18T03:12:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e487542a-87b5-4970-8c68-ddb0c643b4c7", - "start": { - "$date": "2021-07-18T03:12:48.000Z" - }, - "end": { - "$date": "2021-07-18T03:22:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0f321ca-4a5b-48b3-b680-7044f5bb4519", - "start": { - "$date": "2021-07-18T03:22:48.000Z" - }, - "end": { - "$date": "2021-07-18T03:25:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "76683b74-bbdb-4224-98ed-98b822b28df3", - "start": { - "$date": "2021-07-18T03:25:48.000Z" - }, - "end": { - "$date": "2021-07-18T06:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d351e30f-8dd4-4564-8052-5a2f51dc06db", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-17T23:38:37.000Z" - }, - "end": { - "$date": "2021-07-18T00:30:54.000Z" - }, - "events": [ - { - "uuid": "33ecec61-7b67-42a7-952a-a3be99b1cfea", - "start": { - "$date": "2021-07-17T23:38:37.000Z" - }, - "end": { - "$date": "2021-07-18T00:30:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "471e49f9-d7d2-48f1-879d-f5375d57522c", - "start": { - "$date": "2021-07-18T00:30:37.000Z" - }, - "end": { - "$date": "2021-07-18T00:30:54.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "7db7cf15-44e4-44ff-822c-4d4047281d81", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-17T23:55:06.000Z" - }, - "end": { - "$date": "2021-07-18T00:10:03.000Z" - }, - "events": [ - { - "uuid": "f295c24c-8325-474a-80fc-0121ca1bde17", - "start": { - "$date": "2021-07-17T23:55:06.000Z" - }, - "end": { - "$date": "2021-07-18T00:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "a85ede80-c270-4409-a60a-1c016ff1907e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-18T00:30:32.000Z" - }, - "end": { - "$date": "2021-07-18T01:51:36.000Z" - }, - "events": [ - { - "uuid": "f7195f5d-66a8-40db-82a6-db214604d86d", - "start": { - "$date": "2021-07-18T00:30:32.000Z" - }, - "end": { - "$date": "2021-07-18T00:54:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e4dc280-6774-44eb-8236-016e4fa38013", - "start": { - "$date": "2021-07-18T00:54:32.000Z" - }, - "end": { - "$date": "2021-07-18T01:00:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bdadc2f0-973f-4031-bed6-6ba1ceaa46c2", - "start": { - "$date": "2021-07-18T01:00:32.000Z" - }, - "end": { - "$date": "2021-07-18T01:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "431bc622-9ec4-45a9-9826-afc9ed6781cf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-18T01:09:02.000Z" - }, - "end": { - "$date": "2021-07-18T01:57:34.000Z" - }, - "events": [ - { - "uuid": "4b2b40d8-3aab-4e84-9426-79afc3b20a9e", - "start": { - "$date": "2021-07-18T01:09:02.000Z" - }, - "end": { - "$date": "2021-07-18T01:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a30f6440-b142-47b7-b8e9-247ddb2c9a79", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-18T01:10:43.000Z" - }, - "end": { - "$date": "2021-07-18T02:05:11.000Z" - }, - "events": [ - { - "uuid": "ac8551ac-1b30-441f-ab84-2718f037ab46", - "start": { - "$date": "2021-07-18T01:10:43.000Z" - }, - "end": { - "$date": "2021-07-18T02:05:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "28584343-f41f-4cf8-88c1-8aa139f8f6ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-18T02:06:19.000Z" - }, - "end": { - "$date": "2021-07-18T03:12:24.000Z" - }, - "events": [ - { - "uuid": "12317ddf-24ba-421d-9e44-fb0e6bafb9b7", - "start": { - "$date": "2021-07-18T02:06:19.000Z" - }, - "end": { - "$date": "2021-07-18T03:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f58a647-bd1e-4049-8a31-044ae50c0824", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T02:08:44.000Z" - }, - "end": { - "$date": "2021-07-18T02:27:29.000Z" - }, - "events": [ - { - "uuid": "bc2381b5-b654-49f9-9855-d2b397ccb272", - "start": { - "$date": "2021-07-18T02:08:44.000Z" - }, - "end": { - "$date": "2021-07-18T02:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fa1be73-60fd-423b-a387-032a78a40946", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T02:32:17.000Z" - }, - "end": { - "$date": "2021-07-18T02:56:26.000Z" - }, - "events": [ - { - "uuid": "76be7aa6-1360-4ecc-8823-4deef19d54f8", - "start": { - "$date": "2021-07-18T02:32:17.000Z" - }, - "end": { - "$date": "2021-07-18T02:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "4ee4402d-9f0e-43a3-8dbd-6ccc7d43e753", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-18T02:53:32.000Z" - }, - "end": { - "$date": "2021-07-18T07:04:23.000Z" - }, - "events": [ - { - "uuid": "afe38526-42a9-44b7-a2d5-50285085450d", - "start": { - "$date": "2021-07-18T02:53:32.000Z" - }, - "end": { - "$date": "2021-07-18T07:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "46ebc8e7-01f8-4bb8-ac7f-5148c7a64608", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-18T02:53:52.000Z" - }, - "end": { - "$date": "2021-07-18T07:04:27.000Z" - }, - "events": [ - { - "uuid": "4e8fe107-68bd-411e-b8aa-55a8d8c78f50", - "start": { - "$date": "2021-07-18T02:53:52.000Z" - }, - "end": { - "$date": "2021-07-18T07:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff76892c-59ea-47b5-9788-01007b522791", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T02:59:55.000Z" - }, - "end": { - "$date": "2021-07-18T03:21:00.000Z" - }, - "events": [ - { - "uuid": "a96ae36b-4296-4009-b8e6-7838c7065468", - "start": { - "$date": "2021-07-18T02:59:55.000Z" - }, - "end": { - "$date": "2021-07-18T03:21:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e0b158d0-650f-4e7f-84d9-351b116aa0d1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-18T03:33:29.000Z" - }, - "end": { - "$date": "2021-07-18T03:36:14.000Z" - }, - "events": [ - { - "uuid": "87d12558-a89a-44c0-b9c6-4d1cea677692", - "start": { - "$date": "2021-07-18T03:33:29.000Z" - }, - "end": { - "$date": "2021-07-18T03:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "44aa7502-50cf-462f-baf5-0e60fb154275", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-18T03:36:54.000Z" - }, - "end": { - "$date": "2021-07-18T07:04:17.000Z" - }, - "events": [ - { - "uuid": "24eacbf9-8e77-48f4-9d00-b0d6903aa6d7", - "start": { - "$date": "2021-07-18T03:36:54.000Z" - }, - "end": { - "$date": "2021-07-18T07:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13261545-9237-4cdb-a10a-03cff2489601", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-18T05:10:17.000Z" - }, - "end": { - "$date": "2021-07-18T05:31:34.000Z" - }, - "events": [ - { - "uuid": "ffee74b0-3836-4cd0-ac75-59a438904450", - "start": { - "$date": "2021-07-18T05:10:17.000Z" - }, - "end": { - "$date": "2021-07-18T05:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7af10e79-343f-4cdb-bd3b-82986449d22d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-18T05:36:55.000Z" - }, - "end": { - "$date": "2021-07-18T06:07:44.000Z" - }, - "events": [ - { - "uuid": "520d799d-e284-40df-bca7-1c9f3997decc", - "start": { - "$date": "2021-07-18T05:36:55.000Z" - }, - "end": { - "$date": "2021-07-18T06:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf9c7e42-f70c-4359-b384-b690c7da5ef8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-18T06:30:17.000Z" - }, - "end": { - "$date": "2021-07-18T07:07:18.000Z" - }, - "events": [ - { - "uuid": "cca85ec9-b954-44c1-9797-99d12a30acf2", - "start": { - "$date": "2021-07-18T06:30:17.000Z" - }, - "end": { - "$date": "2021-07-18T07:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "12e406bf-af14-4223-bf26-1d0dd021ded8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-18T07:10:38.000Z" - }, - "end": { - "$date": "2021-07-18T07:13:59.000Z" - }, - "events": [ - { - "uuid": "889ce74e-0d71-4b39-9db7-f099d6a4744b", - "start": { - "$date": "2021-07-18T07:10:38.000Z" - }, - "end": { - "$date": "2021-07-18T07:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29b54c8a-d95b-4f97-9d80-b3f3c324b330", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T08:02:36.000Z" - }, - "end": { - "$date": "2021-07-18T08:32:38.000Z" - }, - "events": [ - { - "uuid": "fec45683-1d3b-4c08-b7c3-228c63e5c100", - "start": { - "$date": "2021-07-18T08:02:36.000Z" - }, - "end": { - "$date": "2021-07-18T08:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68ee8777-9189-470b-bbbd-de0d74474ab7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T08:39:47.000Z" - }, - "end": { - "$date": "2021-07-18T09:16:54.000Z" - }, - "events": [ - { - "uuid": "4828b49c-f36e-4744-8c29-c64296c6eacf", - "start": { - "$date": "2021-07-18T08:39:47.000Z" - }, - "end": { - "$date": "2021-07-18T09:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8072cada-d750-4d17-9f68-1c6863b81bce", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-18T08:39:37.000Z" - }, - "end": { - "$date": "2021-07-18T09:16:42.000Z" - }, - "events": [ - { - "uuid": "dd569907-048d-4345-91d4-dc2dd9ea8a7a", - "start": { - "$date": "2021-07-18T08:39:37.000Z" - }, - "end": { - "$date": "2021-07-18T09:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "uuid": "2f048796-10cf-4962-b8c3-e773fc93cebb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-18T14:21:43.000Z" - }, - "end": { - "$date": "2021-07-18T15:10:56.000Z" - }, - "events": [ - { - "uuid": "b76d100e-cf3b-4c55-8661-3f4c88f7e1e1", - "start": { - "$date": "2021-07-18T14:21:43.000Z" - }, - "end": { - "$date": "2021-07-18T15:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d5c0d885-c541-490a-9a94-c789be7b0d42", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-18T16:29:24.000Z" - }, - "end": { - "$date": "2021-07-18T17:37:12.000Z" - }, - "events": [ - { - "uuid": "cc21fcf8-4f86-44ea-b786-c294af0584c0", - "start": { - "$date": "2021-07-18T16:29:24.000Z" - }, - "end": { - "$date": "2021-07-18T17:37:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "836ce057-61db-47de-ba09-e32763379306", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T19:12:45.000Z" - }, - "end": { - "$date": "2021-07-18T19:38:14.000Z" - }, - "events": [ - { - "uuid": "9d9e5883-c639-4a15-a80a-fea43288d69e", - "start": { - "$date": "2021-07-18T19:12:45.000Z" - }, - "end": { - "$date": "2021-07-18T19:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5bdef84c-2b06-4070-b507-c700500d18b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-18T19:10:57.000Z" - }, - "end": { - "$date": "2021-07-18T20:11:38.000Z" - }, - "events": [ - { - "uuid": "4e75d9c2-5ef1-42b6-a6b0-0c236bb25105", - "start": { - "$date": "2021-07-18T19:10:57.000Z" - }, - "end": { - "$date": "2021-07-18T20:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fee6c83-c151-4c53-94b4-2bac32bb8573", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T19:42:06.000Z" - }, - "end": { - "$date": "2021-07-18T20:13:24.000Z" - }, - "events": [ - { - "uuid": "647303ab-92d9-4335-a74e-22ca96e701f4", - "start": { - "$date": "2021-07-18T19:42:06.000Z" - }, - "end": { - "$date": "2021-07-18T20:13:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2de46aa1-0d13-45fa-ae1b-d8f6938349ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-18T20:14:18.000Z" - }, - "end": { - "$date": "2021-07-18T20:19:24.000Z" - }, - "events": [ - { - "uuid": "a45874b7-f999-4c17-a012-8f3f9fbd4232", - "start": { - "$date": "2021-07-18T20:14:18.000Z" - }, - "end": { - "$date": "2021-07-18T20:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6e81c01-7179-4dc8-90e6-24d6f841ae98", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T20:18:21.000Z" - }, - "end": { - "$date": "2021-07-18T20:36:13.000Z" - }, - "events": [ - { - "uuid": "630397a6-c206-4d5d-a0aa-e3db798e652c", - "start": { - "$date": "2021-07-18T20:18:21.000Z" - }, - "end": { - "$date": "2021-07-18T20:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "22361511-c88d-427b-88aa-0068ef819da6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-18T20:16:02.000Z" - }, - "end": { - "$date": "2021-07-18T21:28:44.000Z" - }, - "events": [ - { - "uuid": "543d79be-f7e3-421c-8779-ebe4eb55b304", - "start": { - "$date": "2021-07-18T20:16:02.000Z" - }, - "end": { - "$date": "2021-07-18T21:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f65f3068-d31d-4a43-93d7-beffcbf4c635", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-18T20:20:54.000Z" - }, - "end": { - "$date": "2021-07-18T21:24:13.000Z" - }, - "events": [ - { - "uuid": "ea7ba04a-bf07-485c-9de1-b7d5a35c5a78", - "start": { - "$date": "2021-07-18T20:20:54.000Z" - }, - "end": { - "$date": "2021-07-18T21:24:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d33a56b4-6c3e-4bd3-a35b-d27639e7d99e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-18T20:47:39.000Z" - }, - "end": { - "$date": "2021-07-18T21:04:25.000Z" - }, - "events": [ - { - "uuid": "661556b4-5842-4c33-b8c0-c00aa93629b9", - "start": { - "$date": "2021-07-18T20:47:39.000Z" - }, - "end": { - "$date": "2021-07-18T21:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb4186da-6c21-438d-926c-fe8f8b16a922", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T20:46:14.000Z" - }, - "end": { - "$date": "2021-07-18T21:04:37.000Z" - }, - "events": [ - { - "uuid": "c99aae03-464f-450a-8b8b-32f2a5d477d9", - "start": { - "$date": "2021-07-18T20:46:14.000Z" - }, - "end": { - "$date": "2021-07-18T21:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d08b3092-eb2f-4825-a1f8-80f7e43420fd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-18T21:07:36.000Z" - }, - "end": { - "$date": "2021-07-18T21:29:19.000Z" - }, - "events": [ - { - "uuid": "7e2f1a5a-f271-4adc-a9e0-92e13896cdfc", - "start": { - "$date": "2021-07-18T21:07:36.000Z" - }, - "end": { - "$date": "2021-07-18T21:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d315aba-fd37-41c7-a502-31abe6971fbc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T21:07:41.000Z" - }, - "end": { - "$date": "2021-07-18T21:29:26.000Z" - }, - "events": [ - { - "uuid": "3f51ebbf-866e-4879-ba33-14a9872c229b", - "start": { - "$date": "2021-07-18T21:07:41.000Z" - }, - "end": { - "$date": "2021-07-18T21:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "811dba3e-3223-4884-99a5-a5271d01be5e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-18T21:14:33.000Z" - }, - "end": { - "$date": "2021-07-18T23:46:27.000Z" - }, - "events": [ - { - "uuid": "14d09d56-7458-4d8d-892f-badaa7bfd610", - "start": { - "$date": "2021-07-18T21:14:33.000Z" - }, - "end": { - "$date": "2021-07-18T23:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5edd67f-3e22-40bf-a005-19f63697d174", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-18T21:29:19.000Z" - }, - "end": { - "$date": "2021-07-19T00:11:38.000Z" - }, - "events": [ - { - "uuid": "4e4a987b-f4e8-4949-8c6c-8c325a0ba57e", - "start": { - "$date": "2021-07-18T21:29:19.000Z" - }, - "end": { - "$date": "2021-07-19T00:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01a2a4ee-b3ca-4619-86d9-72d0e8d8cb8f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-18T21:29:54.000Z" - }, - "end": { - "$date": "2021-07-18T21:31:53.000Z" - }, - "events": [ - { - "uuid": "0b343c38-6fb3-4ca5-ac5e-638c586e5304", - "start": { - "$date": "2021-07-18T21:29:54.000Z" - }, - "end": { - "$date": "2021-07-18T21:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6ce3fe60-4172-4f3c-9373-2958c4343276", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-18T21:31:39.000Z" - }, - "end": { - "$date": "2021-07-18T22:50:58.000Z" - }, - "events": [ - { - "uuid": "aee1ff7e-937c-4da3-a1cc-cf285a47e7bc", - "start": { - "$date": "2021-07-18T21:31:39.000Z" - }, - "end": { - "$date": "2021-07-18T22:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b4b02edd-9b64-40f9-be76-b983885d5f1e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-18T21:34:23.000Z" - }, - "end": { - "$date": "2021-07-18T22:27:35.000Z" - }, - "events": [ - { - "uuid": "81c31874-d122-401b-929d-a5dd69cd309a", - "start": { - "$date": "2021-07-18T21:34:23.000Z" - }, - "end": { - "$date": "2021-07-18T22:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "06e32f2e-67f2-4338-a7bb-b9a338658da7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-18T21:34:25.000Z" - }, - "end": { - "$date": "2021-07-18T23:46:02.000Z" - }, - "events": [ - { - "uuid": "03f53754-8656-4fdc-b5fa-83dc4fe38756", - "start": { - "$date": "2021-07-18T21:34:25.000Z" - }, - "end": { - "$date": "2021-07-18T22:18:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c3fe7d6-f2ed-4fa8-a471-3f99d53dca5b", - "start": { - "$date": "2021-07-18T22:18:25.000Z" - }, - "end": { - "$date": "2021-07-18T23:46:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "938743c5-cfb4-4e58-8c81-6f5484ae63de", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-18T21:36:20.000Z" - }, - "end": { - "$date": "2021-07-19T00:10:43.000Z" - }, - "events": [ - { - "uuid": "c58a3900-ae78-4db1-98cc-0bffbe22423f", - "start": { - "$date": "2021-07-18T21:36:20.000Z" - }, - "end": { - "$date": "2021-07-19T00:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4e4d280c-2cca-4c1a-907e-59bb91be5c7b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-18T22:28:00.000Z" - }, - "end": { - "$date": "2021-07-18T23:55:04.000Z" - }, - "events": [ - { - "uuid": "9819da6c-fd12-4c4c-b69b-9cfcc0b267e3", - "start": { - "$date": "2021-07-18T22:28:00.000Z" - }, - "end": { - "$date": "2021-07-18T23:55:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a693a5c3-272a-4614-994c-d0e0877e3204", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T00:31:04.000Z" - }, - "end": { - "$date": "2021-07-19T01:01:29.000Z" - }, - "events": [ - { - "uuid": "4ee1eab4-84be-4711-8af8-1de9895315d9", - "start": { - "$date": "2021-07-19T00:31:04.000Z" - }, - "end": { - "$date": "2021-07-19T01:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c043394-7c1e-4f0f-ba98-717052fe95d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T00:31:20.000Z" - }, - "end": { - "$date": "2021-07-19T01:01:19.000Z" - }, - "events": [ - { - "uuid": "573501b4-d724-4b72-aaa3-93e9a00c8fdf", - "start": { - "$date": "2021-07-19T00:31:20.000Z" - }, - "end": { - "$date": "2021-07-19T01:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "701f2dcb-13ac-448a-a543-44a886cd0536", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-19T00:50:21.000Z" - }, - "end": { - "$date": "2021-07-19T01:03:53.000Z" - }, - "events": [ - { - "uuid": "4d9c4920-cbd8-4ce5-a0d5-436dfa9723c4", - "start": { - "$date": "2021-07-19T00:50:21.000Z" - }, - "end": { - "$date": "2021-07-19T01:03:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ad8b136-dc1d-4d28-8353-c5b940228502", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T01:05:16.000Z" - }, - "end": { - "$date": "2021-07-19T01:33:25.000Z" - }, - "events": [ - { - "uuid": "e527440b-7a69-4cec-a941-d14724d1559e", - "start": { - "$date": "2021-07-19T01:05:16.000Z" - }, - "end": { - "$date": "2021-07-19T01:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f96b5a71-43ac-4cea-bf88-493e0493043b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T01:07:06.000Z" - }, - "end": { - "$date": "2021-07-19T01:33:15.000Z" - }, - "events": [ - { - "uuid": "93f8e933-2207-4801-b695-0e96b8fd4800", - "start": { - "$date": "2021-07-19T01:07:06.000Z" - }, - "end": { - "$date": "2021-07-19T01:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9c1f81bd-ef0e-418f-b180-2cf828e53431", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-19T01:28:54.000Z" - }, - "end": { - "$date": "2021-07-19T02:14:29.000Z" - }, - "events": [ - { - "uuid": "4a575e5c-7d2a-4729-ac04-bace7ff75de6", - "start": { - "$date": "2021-07-19T01:28:54.000Z" - }, - "end": { - "$date": "2021-07-19T02:14:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a380d27e-2606-4fcd-87da-ba9063a4eb4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T02:38:49.000Z" - }, - "end": { - "$date": "2021-07-19T02:52:51.000Z" - }, - "events": [ - { - "uuid": "9d38fd69-b37a-4b36-8ea9-586025b9af5d", - "start": { - "$date": "2021-07-19T02:38:49.000Z" - }, - "end": { - "$date": "2021-07-19T02:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "37cf2d43-20fe-48b4-a231-666cdfc13fff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-19T01:34:01.000Z" - }, - "end": { - "$date": "2021-07-19T02:33:38.000Z" - }, - "events": [ - { - "uuid": "bf07c063-1803-4d88-baa3-dca75cdfb648", - "start": { - "$date": "2021-07-19T01:34:01.000Z" - }, - "end": { - "$date": "2021-07-19T02:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "85574bd6-dbce-432e-a943-9e04f88ceb67", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-19T02:08:11.000Z" - }, - "end": { - "$date": "2021-07-19T02:15:24.000Z" - }, - "events": [ - { - "uuid": "e4c49acc-3a76-4463-ba11-cfd1dafaa1bc", - "start": { - "$date": "2021-07-19T02:08:11.000Z" - }, - "end": { - "$date": "2021-07-19T02:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e135af1b-d965-4072-9a79-c7ce4c397ba4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-19T02:08:39.000Z" - }, - "end": { - "$date": "2021-07-19T02:15:49.000Z" - }, - "events": [ - { - "uuid": "4c25e9ad-f421-443d-ab26-71f05cb41849", - "start": { - "$date": "2021-07-19T02:08:39.000Z" - }, - "end": { - "$date": "2021-07-19T02:15:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "689520a9-8e46-4ee8-8b0e-6a3b70966686", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-19T02:15:29.000Z" - }, - "end": { - "$date": "2021-07-19T04:25:52.000Z" - }, - "events": [ - { - "uuid": "68e601f3-8217-4dde-ba77-f32a326feeaf", - "start": { - "$date": "2021-07-19T02:15:29.000Z" - }, - "end": { - "$date": "2021-07-19T04:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "5d465c94-bc7c-4a53-81ff-0cdd6dabbd98", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-19T02:16:10.000Z" - }, - "end": { - "$date": "2021-07-19T04:25:51.000Z" - }, - "events": [ - { - "uuid": "8d7c2dbf-12ad-4120-a82c-db78a08f3623", - "start": { - "$date": "2021-07-19T02:16:10.000Z" - }, - "end": { - "$date": "2021-07-19T04:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "73d76484-85cb-4681-be75-0903f3eeccbd", - "uuid": "f23b4071-dded-4767-93eb-8d9dbcbb1738", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-19T02:17:24.000Z" - }, - "end": { - "$date": "2021-07-19T04:25:56.000Z" - }, - "events": [ - { - "uuid": "820cc1c5-88f4-4008-9be4-6412938086e8", - "start": { - "$date": "2021-07-19T02:17:24.000Z" - }, - "end": { - "$date": "2021-07-19T04:25:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c4b08eef-91f2-4140-b8c1-906862f8e5c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-19T02:34:03.000Z" - }, - "end": { - "$date": "2021-07-19T04:52:57.000Z" - }, - "events": [ - { - "uuid": "33739e70-a723-4972-abc1-c67292dfd887", - "start": { - "$date": "2021-07-19T02:34:03.000Z" - }, - "end": { - "$date": "2021-07-19T03:06:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24cebf94-18f2-427b-b1cf-2fce9cf2f1cf", - "start": { - "$date": "2021-07-19T03:06:03.000Z" - }, - "end": { - "$date": "2021-07-19T03:11:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc10634c-a093-43c0-974d-0b54fe12945f", - "start": { - "$date": "2021-07-19T03:11:03.000Z" - }, - "end": { - "$date": "2021-07-19T03:21:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1eec1dfe-5a91-445c-a84d-76c0f37b0e7b", - "start": { - "$date": "2021-07-19T03:21:03.000Z" - }, - "end": { - "$date": "2021-07-19T03:26:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "87bae4a6-3c95-4832-b97d-585241c5e0ce", - "start": { - "$date": "2021-07-19T03:26:03.000Z" - }, - "end": { - "$date": "2021-07-19T03:36:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "90dc7b0d-c20a-4286-99fa-15817133b3a5", - "start": { - "$date": "2021-07-19T03:36:03.000Z" - }, - "end": { - "$date": "2021-07-19T03:41:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3c387d88-d0cf-40c1-9e2d-88be84dec4ee", - "start": { - "$date": "2021-07-19T03:41:03.000Z" - }, - "end": { - "$date": "2021-07-19T04:52:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59529d28-5968-46bd-9130-fcd8dbb62d89", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T02:39:40.000Z" - }, - "end": { - "$date": "2021-07-19T02:52:40.000Z" - }, - "events": [ - { - "uuid": "37211436-320a-4c93-af9b-a5a843ddcb19", - "start": { - "$date": "2021-07-19T02:39:40.000Z" - }, - "end": { - "$date": "2021-07-19T02:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "b90620e5-af56-469c-9244-009a391620a5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-19T02:38:58.000Z" - }, - "end": { - "$date": "2021-07-19T04:55:03.000Z" - }, - "events": [ - { - "uuid": "7ce027ba-76a6-4af0-9e18-2db5d5ca2390", - "start": { - "$date": "2021-07-19T02:38:58.000Z" - }, - "end": { - "$date": "2021-07-19T03:02:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc5e1e90-6dcc-49ca-84cd-2ebb167e4877", - "start": { - "$date": "2021-07-19T03:02:58.000Z" - }, - "end": { - "$date": "2021-07-19T03:33:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f64404f7-1980-4d75-8188-125e67329834", - "start": { - "$date": "2021-07-19T03:33:58.000Z" - }, - "end": { - "$date": "2021-07-19T03:46:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30fab84b-8c40-44d3-b825-d2bd8b283202", - "start": { - "$date": "2021-07-19T03:46:58.000Z" - }, - "end": { - "$date": "2021-07-19T04:55:03.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f798cccf-f52d-4152-b26c-41e62cce15bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T02:56:36.000Z" - }, - "end": { - "$date": "2021-07-19T03:17:51.000Z" - }, - "events": [ - { - "uuid": "c4079411-ea47-4113-b981-086b740600b2", - "start": { - "$date": "2021-07-19T02:56:36.000Z" - }, - "end": { - "$date": "2021-07-19T03:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1aefc8e6-7d76-456c-af02-0ef9f1c8323d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T02:57:26.000Z" - }, - "end": { - "$date": "2021-07-19T03:17:40.000Z" - }, - "events": [ - { - "uuid": "d151dc7d-40e8-4e54-8da3-f6d8503aefef", - "start": { - "$date": "2021-07-19T02:57:26.000Z" - }, - "end": { - "$date": "2021-07-19T03:17:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40ac7714-9f41-4b38-b81f-8301cd627ccb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T03:20:28.000Z" - }, - "end": { - "$date": "2021-07-19T03:46:47.000Z" - }, - "events": [ - { - "uuid": "81074090-966a-4b16-b6ca-4316bc095e69", - "start": { - "$date": "2021-07-19T03:20:28.000Z" - }, - "end": { - "$date": "2021-07-19T03:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ddfe36d-e0bd-446a-b9d0-e8335ca83303", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T03:20:47.000Z" - }, - "end": { - "$date": "2021-07-19T03:46:36.000Z" - }, - "events": [ - { - "uuid": "f48bd19b-8659-4844-bfa4-2392d2a50d97", - "start": { - "$date": "2021-07-19T03:20:47.000Z" - }, - "end": { - "$date": "2021-07-19T03:46:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5af645a1-22b9-404e-b1e0-f50e3902d9e0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-19T04:02:11.000Z" - }, - "end": { - "$date": "2021-07-19T04:07:01.000Z" - }, - "events": [ - { - "uuid": "a2d5dc72-e688-400f-b9ed-54dfb5faafc1", - "start": { - "$date": "2021-07-19T04:02:11.000Z" - }, - "end": { - "$date": "2021-07-19T04:07:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "63e0fc0a-3114-4704-8aa5-bfcf74e8c7ad", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-19T04:26:57.000Z" - }, - "end": { - "$date": "2021-07-19T06:13:48.000Z" - }, - "events": [ - { - "uuid": "45e2cb92-c8ff-4453-9e8a-d11f9bf368e3", - "start": { - "$date": "2021-07-19T04:26:57.000Z" - }, - "end": { - "$date": "2021-07-19T06:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "130b6c7b-09b2-4a4a-9051-46924389f5af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T04:45:00.000Z" - }, - "end": { - "$date": "2021-07-19T05:00:51.000Z" - }, - "events": [ - { - "uuid": "7790c7ed-a914-4f11-85f6-c92c7105a214", - "start": { - "$date": "2021-07-19T04:45:00.000Z" - }, - "end": { - "$date": "2021-07-19T05:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3d4c805-5bc3-40c9-bf8c-cc4c2780a232", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-19T04:57:54.000Z" - }, - "end": { - "$date": "2021-07-19T05:28:27.000Z" - }, - "events": [ - { - "uuid": "f8d70134-5492-4c24-bf13-6578e7bb6004", - "start": { - "$date": "2021-07-19T04:57:54.000Z" - }, - "end": { - "$date": "2021-07-19T05:28:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9dca1947-fa0f-4a92-9887-2557a7f6732b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-19T04:58:24.000Z" - }, - "end": { - "$date": "2021-07-19T06:15:26.000Z" - }, - "events": [ - { - "uuid": "032f3716-28ed-40db-9f46-b1a2cc1598ca", - "start": { - "$date": "2021-07-19T04:58:24.000Z" - }, - "end": { - "$date": "2021-07-19T06:15:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3052a279-d717-4be1-bced-ce3485074872", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T05:05:44.000Z" - }, - "end": { - "$date": "2021-07-19T05:32:59.000Z" - }, - "events": [ - { - "uuid": "5ff028f8-dca9-4a91-8eba-cfb30c57236e", - "start": { - "$date": "2021-07-19T05:05:44.000Z" - }, - "end": { - "$date": "2021-07-19T05:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "85fdc886-1c16-4d24-a3a8-c476cd2ceafa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-19T05:40:17.000Z" - }, - "end": { - "$date": "2021-07-19T05:59:18.000Z" - }, - "events": [ - { - "uuid": "78ff5f9e-e89e-4a10-9c37-e679b9ba6639", - "start": { - "$date": "2021-07-19T05:40:17.000Z" - }, - "end": { - "$date": "2021-07-19T05:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7347fe1-3ac8-4d00-99f8-d26aae57ea6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T05:59:19.000Z" - }, - "end": { - "$date": "2021-07-19T06:12:43.000Z" - }, - "events": [ - { - "uuid": "e93464de-a718-4fed-ae69-5413c52ed609", - "start": { - "$date": "2021-07-19T05:59:19.000Z" - }, - "end": { - "$date": "2021-07-19T06:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23f1e75b-8461-4759-b92f-86fbe29b0c88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T06:17:07.000Z" - }, - "end": { - "$date": "2021-07-19T06:42:38.000Z" - }, - "events": [ - { - "uuid": "2b711a57-8c1e-4564-be42-c14164df824b", - "start": { - "$date": "2021-07-19T06:17:07.000Z" - }, - "end": { - "$date": "2021-07-19T06:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e28d8b30-a771-46a4-991a-99db32954400", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-19T06:15:39.000Z" - }, - "end": { - "$date": "2021-07-19T06:45:33.000Z" - }, - "events": [ - { - "uuid": "335df33e-0791-4813-9941-011e41d2a97c", - "start": { - "$date": "2021-07-19T06:15:39.000Z" - }, - "end": { - "$date": "2021-07-19T06:45:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "84f716a4-1ae3-4f12-8fab-4353e443ed41", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-19T12:45:03.000Z" - }, - "end": { - "$date": "2021-07-19T14:51:43.000Z" - }, - "events": [ - { - "uuid": "465de1cd-27d3-49dc-82cf-03a88f3703cd", - "start": { - "$date": "2021-07-19T12:45:03.000Z" - }, - "end": { - "$date": "2021-07-19T14:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "8245d343-3ae3-47e8-ae7d-34af9a67fec2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-16T08:36:41.000Z" - }, - "end": { - "$date": "2021-07-19T13:11:50.000Z" - }, - "events": [ - { - "uuid": "2c17cd1f-aa1e-4f73-9590-02492b148724", - "start": { - "$date": "2021-07-16T08:36:41.000Z" - }, - "end": { - "$date": "2021-07-19T13:11:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "54056eff-ac3f-4954-aad9-656d363ad7e9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-19T14:58:09.000Z" - }, - "end": { - "$date": "2021-07-19T14:58:09.000Z" - }, - "events": [ - { - "uuid": "6470c653-1bf6-42cf-9210-7815302aff8e", - "start": { - "$date": "2021-07-19T14:58:09.000Z" - }, - "end": { - "$date": "2021-07-19T14:58:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40da3dc4-f84b-4166-a121-55472526df4d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T14:35:29.000Z" - }, - "end": { - "$date": "2021-07-19T14:49:03.000Z" - }, - "events": [ - { - "uuid": "841d4b5b-31b2-4875-aa5e-a7341170d650", - "start": { - "$date": "2021-07-19T14:35:29.000Z" - }, - "end": { - "$date": "2021-07-19T14:49:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "344d0bd1-496b-42b8-addc-1343c92b135e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T14:52:49.000Z" - }, - "end": { - "$date": "2021-07-19T15:15:24.000Z" - }, - "events": [ - { - "uuid": "cfb2028c-b90a-4261-b5ed-5479e5c5dac3", - "start": { - "$date": "2021-07-19T14:52:49.000Z" - }, - "end": { - "$date": "2021-07-19T15:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "58690473-1e80-4951-a402-ab7fd82a8182", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-19T14:52:32.000Z" - }, - "end": { - "$date": "2021-07-19T15:30:33.000Z" - }, - "events": [ - { - "uuid": "915238f3-8a43-47a6-9bcc-d8d6042bc0e5", - "start": { - "$date": "2021-07-19T14:52:32.000Z" - }, - "end": { - "$date": "2021-07-19T15:03:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef7a2e83-0e60-448c-b437-61e75ee840f3", - "start": { - "$date": "2021-07-19T15:03:32.000Z" - }, - "end": { - "$date": "2021-07-19T15:09:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "40ce12b3-14bc-4bb5-bbf4-3e1eb1ae2668", - "start": { - "$date": "2021-07-19T15:09:32.000Z" - }, - "end": { - "$date": "2021-07-19T15:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "965bc335-1a1a-4e09-b4de-43666f565709", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-19T15:43:04.000Z" - }, - "end": { - "$date": "2021-07-19T21:31:23.000Z" - }, - "events": [ - { - "uuid": "257c84ed-67f3-46d3-9084-a791fee82365", - "start": { - "$date": "2021-07-19T15:43:04.000Z" - }, - "end": { - "$date": "2021-07-19T16:29:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86135be8-ab0b-42b9-a1d2-2c034dff6ed0", - "start": { - "$date": "2021-07-19T16:29:04.000Z" - }, - "end": { - "$date": "2021-07-19T16:34:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "65d0f67a-9471-4d3a-a6be-b94d4c0791ff", - "start": { - "$date": "2021-07-19T16:34:04.000Z" - }, - "end": { - "$date": "2021-07-19T16:44:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f66d2c8b-1c95-4c02-ad73-69aa20df8e26", - "start": { - "$date": "2021-07-19T16:44:04.000Z" - }, - "end": { - "$date": "2021-07-19T16:53:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "444f7a6a-4a9b-4bb4-8f33-b6c9d66342b0", - "start": { - "$date": "2021-07-19T16:53:04.000Z" - }, - "end": { - "$date": "2021-07-19T19:12:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "16e902b9-4181-42fd-b301-b5d4f51f4af0", - "start": { - "$date": "2021-07-19T19:12:04.000Z" - }, - "end": { - "$date": "2021-07-19T19:16:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b8cc2d4-8544-4331-93c6-5a4ef47fe284", - "start": { - "$date": "2021-07-19T19:16:04.000Z" - }, - "end": { - "$date": "2021-07-19T21:24:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ab53767-282b-4e3d-9fae-898cb27509de", - "start": { - "$date": "2021-07-19T21:24:04.000Z" - }, - "end": { - "$date": "2021-07-19T21:29:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9cfb2a9c-1ffa-4315-b1dd-de15b241861a", - "start": { - "$date": "2021-07-19T21:29:04.000Z" - }, - "end": { - "$date": "2021-07-19T21:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd9f78ab-b92f-4107-a565-3614b53cba2a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T15:46:09.000Z" - }, - "end": { - "$date": "2021-07-19T16:02:29.000Z" - }, - "events": [ - { - "uuid": "7a8f64bf-a354-43da-9040-8aa63d57d5c2", - "start": { - "$date": "2021-07-19T15:46:09.000Z" - }, - "end": { - "$date": "2021-07-19T16:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d107ee16-2d5d-4c3f-ac4f-0caa87435f5d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T16:07:19.000Z" - }, - "end": { - "$date": "2021-07-19T16:31:43.000Z" - }, - "events": [ - { - "uuid": "1a1bfa83-40ef-4b40-8324-c701ce8ee1b7", - "start": { - "$date": "2021-07-19T16:07:19.000Z" - }, - "end": { - "$date": "2021-07-19T16:31:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50c5a943-f048-43f1-bc05-9518e84cc962", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T16:34:40.000Z" - }, - "end": { - "$date": "2021-07-19T16:53:19.000Z" - }, - "events": [ - { - "uuid": "0edc19c2-33c7-46f7-b676-9046243f56a4", - "start": { - "$date": "2021-07-19T16:34:40.000Z" - }, - "end": { - "$date": "2021-07-19T16:53:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d6ab84e-63ac-4cbe-a3b4-141a002e257b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T16:53:40.000Z" - }, - "end": { - "$date": "2021-07-19T16:55:29.000Z" - }, - "events": [ - { - "uuid": "6182b374-1ed5-4765-a4a5-0744dc74b719", - "start": { - "$date": "2021-07-19T16:53:40.000Z" - }, - "end": { - "$date": "2021-07-19T16:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1ba1a6d1-a72a-451a-8aa2-f5c94f14d785", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T16:56:15.000Z" - }, - "end": { - "$date": "2021-07-19T17:53:37.000Z" - }, - "events": [ - { - "uuid": "6eb76a3e-b4a0-49b9-abbd-4af0c2d70191", - "start": { - "$date": "2021-07-19T16:56:15.000Z" - }, - "end": { - "$date": "2021-07-19T17:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "45df827f-1ff3-4f74-9e5e-13bedd8ab393", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-19T18:34:14.000Z" - }, - "end": { - "$date": "2021-07-19T18:35:18.000Z" - }, - "events": [ - { - "uuid": "d4333c0c-8dab-4cf0-b2e7-4367f967c6c7", - "start": { - "$date": "2021-07-19T18:34:14.000Z" - }, - "end": { - "$date": "2021-07-19T18:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "599a57fe-54d7-4e85-a5dc-ae88b635e4d0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-19T19:35:30.000Z" - }, - "end": { - "$date": "2021-07-19T19:51:41.000Z" - }, - "events": [ - { - "uuid": "bd0238d8-bb30-4b38-b8fc-f59225b5e03a", - "start": { - "$date": "2021-07-19T19:35:30.000Z" - }, - "end": { - "$date": "2021-07-19T19:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "69cbf08f-a6dd-4ccb-868a-f57ef775baae", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-19T20:06:23.000Z" - }, - "end": { - "$date": "2021-07-19T21:15:05.000Z" - }, - "events": [ - { - "uuid": "101aee93-350f-4b5e-ab6e-101034bdbe88", - "start": { - "$date": "2021-07-19T20:06:23.000Z" - }, - "end": { - "$date": "2021-07-19T21:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cb138d2c-b499-475a-a28a-b904b41f1ef4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-19T20:34:19.000Z" - }, - "end": { - "$date": "2021-07-19T21:57:07.000Z" - }, - "events": [ - { - "uuid": "54b81853-5301-4f47-acc5-0a88aa0ac9c5", - "start": { - "$date": "2021-07-19T20:34:19.000Z" - }, - "end": { - "$date": "2021-07-19T21:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "591fcb5e-ef12-4bc2-8484-9785a6aa1768", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T20:44:18.000Z" - }, - "end": { - "$date": "2021-07-19T21:09:56.000Z" - }, - "events": [ - { - "uuid": "315b62bd-5f8c-4e25-bafd-ec7e9b697dfc", - "start": { - "$date": "2021-07-19T20:44:18.000Z" - }, - "end": { - "$date": "2021-07-19T20:55:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73239a46-3600-4bf4-b074-cf9544e5bb23", - "start": { - "$date": "2021-07-19T20:55:18.000Z" - }, - "end": { - "$date": "2021-07-19T20:56:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fe913adb-0e4a-4cee-8d2a-b5c18d24f6d3", - "start": { - "$date": "2021-07-19T20:56:18.000Z" - }, - "end": { - "$date": "2021-07-19T21:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b2a4df04-3181-4f07-b63a-f4b808c2ca66", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-19T20:45:35.000Z" - }, - "end": { - "$date": "2021-07-19T21:00:19.000Z" - }, - "events": [ - { - "uuid": "68319e06-eba4-439f-abea-4a8654c99be0", - "start": { - "$date": "2021-07-19T20:45:35.000Z" - }, - "end": { - "$date": "2021-07-19T21:00:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adbee815-c660-419d-895e-e14a1c8c9161", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T21:14:57.000Z" - }, - "end": { - "$date": "2021-07-19T21:36:21.000Z" - }, - "events": [ - { - "uuid": "86602e24-28ac-4a38-8c03-8acd111d7e93", - "start": { - "$date": "2021-07-19T21:14:57.000Z" - }, - "end": { - "$date": "2021-07-19T21:36:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b7d6e6a0-c040-42a7-aa1b-f5d65843c7b2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-19T21:31:33.000Z" - }, - "end": { - "$date": "2021-07-19T22:55:11.000Z" - }, - "events": [ - { - "uuid": "737b42f2-3af8-4cf1-b836-7fb19f60fb1c", - "start": { - "$date": "2021-07-19T21:31:33.000Z" - }, - "end": { - "$date": "2021-07-19T22:55:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65a87128-c402-4550-8d66-eaea3bcb8268", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T21:39:17.000Z" - }, - "end": { - "$date": "2021-07-19T22:01:21.000Z" - }, - "events": [ - { - "uuid": "56ba1339-a6b4-4b45-a3de-b363799f9261", - "start": { - "$date": "2021-07-19T21:39:17.000Z" - }, - "end": { - "$date": "2021-07-19T22:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "332a2246-996e-4375-887f-f5ab2e3df62a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-20T00:43:03.000Z" - }, - "end": { - "$date": "2021-07-20T00:43:28.000Z" - }, - "events": [ - { - "uuid": "fc533a11-f900-4fc5-9edb-f6cdf77c5275", - "start": { - "$date": "2021-07-20T00:43:03.000Z" - }, - "end": { - "$date": "2021-07-20T00:43:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a2a0c17-7e6a-4d21-9a47-ef0c5ac7899b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T22:07:35.000Z" - }, - "end": { - "$date": "2021-07-19T22:29:44.000Z" - }, - "events": [ - { - "uuid": "c70f7808-5527-451a-89e6-e4455c3819a9", - "start": { - "$date": "2021-07-19T22:07:35.000Z" - }, - "end": { - "$date": "2021-07-19T22:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d6ee3a0-0718-4d09-906f-4a5fcbe5f1c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-19T22:33:38.000Z" - }, - "end": { - "$date": "2021-07-19T23:08:08.000Z" - }, - "events": [ - { - "uuid": "f669b85f-dc98-49ca-95eb-6194b3b8677e", - "start": { - "$date": "2021-07-19T22:33:38.000Z" - }, - "end": { - "$date": "2021-07-19T23:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "971d3324-2846-4223-8a62-0b6936193165", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-19T22:41:36.000Z" - }, - "end": { - "$date": "2021-07-20T01:28:15.000Z" - }, - "events": [ - { - "uuid": "09463416-7379-403d-8b34-a1d86d9e946b", - "start": { - "$date": "2021-07-19T22:41:36.000Z" - }, - "end": { - "$date": "2021-07-19T22:52:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa2de2a6-eba1-4fd8-b898-b9533bedb1c5", - "start": { - "$date": "2021-07-19T22:52:36.000Z" - }, - "end": { - "$date": "2021-07-19T23:02:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "21a2dc38-be5c-49f7-8649-adee9d884378", - "start": { - "$date": "2021-07-19T23:02:36.000Z" - }, - "end": { - "$date": "2021-07-20T01:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5b65fd04-afd4-4c6c-b085-35dedf537384", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-19T22:53:30.000Z" - }, - "end": { - "$date": "2021-07-19T23:53:35.000Z" - }, - "events": [ - { - "uuid": "4ed22b97-2274-47d2-b3ba-9572632a09d7", - "start": { - "$date": "2021-07-19T22:53:30.000Z" - }, - "end": { - "$date": "2021-07-19T23:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "53dd09b0-e391-4ac6-ba88-754af65a7863", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-20T01:24:10.000Z" - }, - "end": { - "$date": "2021-07-20T03:53:16.000Z" - }, - "events": [ - { - "uuid": "85c1b0a2-1644-4c79-bbbd-339ac47b04ca", - "start": { - "$date": "2021-07-20T01:24:10.000Z" - }, - "end": { - "$date": "2021-07-20T03:53:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40b88906-a1ae-4d14-8e8a-71d0c3968583", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-20T01:28:17.000Z" - }, - "end": { - "$date": "2021-07-20T05:40:07.000Z" - }, - "events": [ - { - "uuid": "b86ba9a8-fd13-4741-aff7-15c44c3e4082", - "start": { - "$date": "2021-07-20T01:28:17.000Z" - }, - "end": { - "$date": "2021-07-20T05:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f4ce03a4-9d3a-4482-a7fe-f23ec957fc0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-20T01:28:21.000Z" - }, - "end": { - "$date": "2021-07-20T02:31:51.000Z" - }, - "events": [ - { - "uuid": "6ac09679-bf85-4449-8df0-a28d87dedad8", - "start": { - "$date": "2021-07-20T01:28:21.000Z" - }, - "end": { - "$date": "2021-07-20T02:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eb2605e7-31ba-4e2e-b307-21fad7e98ff0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-20T01:29:19.000Z" - }, - "end": { - "$date": "2021-07-20T05:39:57.000Z" - }, - "events": [ - { - "uuid": "3407d250-0b83-47e5-a4db-c341b6b16a8b", - "start": { - "$date": "2021-07-20T01:29:19.000Z" - }, - "end": { - "$date": "2021-07-20T05:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "54e1f98d-7ef7-4220-a51d-3969b6064dc2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-20T02:00:57.000Z" - }, - "end": { - "$date": "2021-07-20T03:36:29.000Z" - }, - "events": [ - { - "uuid": "27c28589-1e4a-409a-ac6e-fa47217f8f5a", - "start": { - "$date": "2021-07-20T02:00:57.000Z" - }, - "end": { - "$date": "2021-07-20T03:36:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7dcfed3b-bccb-44dc-a77b-8535327675d6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-20T02:09:47.000Z" - }, - "end": { - "$date": "2021-07-20T02:54:22.000Z" - }, - "events": [ - { - "uuid": "54550b1c-a410-4e2b-8b41-3d5cdf38953a", - "start": { - "$date": "2021-07-20T02:09:47.000Z" - }, - "end": { - "$date": "2021-07-20T02:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "d1c13e35-1b64-482b-8b1c-1381a0ca0aed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-20T02:54:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:46:04.000Z" - }, - "events": [ - { - "uuid": "be558e13-5bb4-4312-a81c-72a2c26b2184", - "start": { - "$date": "2021-07-20T02:54:38.000Z" - }, - "end": { - "$date": "2021-07-20T03:07:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74094cb2-2bbd-478c-8c1f-070fb4400d27", - "start": { - "$date": "2021-07-20T03:07:38.000Z" - }, - "end": { - "$date": "2021-07-20T05:41:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b716fc81-aa52-49bf-8796-fae65b3df9e6", - "start": { - "$date": "2021-07-20T05:41:38.000Z" - }, - "end": { - "$date": "2021-07-20T05:51:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebaff65e-fc71-4a66-8305-7ac17400ec56", - "start": { - "$date": "2021-07-20T05:51:38.000Z" - }, - "end": { - "$date": "2021-07-20T05:56:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "408af3c7-b8ff-4ded-ae37-1ed22f3c5100", - "start": { - "$date": "2021-07-20T05:56:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:06:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ac390a46-5f86-4c10-a658-8dfbc1a31326", - "start": { - "$date": "2021-07-20T06:06:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:11:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2607d80-75b1-4403-972d-1f329f3aad9b", - "start": { - "$date": "2021-07-20T06:11:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:21:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b24d096-d9f1-4375-b0a7-a03d3e00371c", - "start": { - "$date": "2021-07-20T06:21:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:26:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "685c5171-bce5-460e-b2c6-96630c71cc95", - "start": { - "$date": "2021-07-20T06:26:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:36:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1c270eb-44d9-458e-8fb5-5b8509442722", - "start": { - "$date": "2021-07-20T06:36:38.000Z" - }, - "end": { - "$date": "2021-07-20T06:46:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b188e95c-3b8d-4a27-8bb2-ce169fb1b761", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-20T05:38:16.000Z" - }, - "end": { - "$date": "2021-07-20T05:54:06.000Z" - }, - "events": [ - { - "uuid": "c04371bf-c082-48e8-a298-f5917e76ea48", - "start": { - "$date": "2021-07-20T05:38:16.000Z" - }, - "end": { - "$date": "2021-07-20T05:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6dfca50-00ae-452c-b1d5-be82a135c43c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-20T03:44:06.000Z" - }, - "end": { - "$date": "2021-07-20T04:08:24.000Z" - }, - "events": [ - { - "uuid": "aa646fca-e7e4-4999-9f4c-358218a75573", - "start": { - "$date": "2021-07-20T03:44:06.000Z" - }, - "end": { - "$date": "2021-07-20T04:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "354944e6-7645-4981-8802-f78bad8c67b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-20T03:53:47.000Z" - }, - "end": { - "$date": "2021-07-20T05:54:12.000Z" - }, - "events": [ - { - "uuid": "7ee36908-4eda-4686-8915-8c3a4c742d36", - "start": { - "$date": "2021-07-20T03:53:47.000Z" - }, - "end": { - "$date": "2021-07-20T05:54:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d32eb727-e3f7-47f9-b3ad-1e6b2de33b0e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-20T03:56:18.000Z" - }, - "end": { - "$date": "2021-07-20T05:39:53.000Z" - }, - "events": [ - { - "uuid": "3437904c-269a-40c5-83bb-b79f43650c29", - "start": { - "$date": "2021-07-20T03:56:18.000Z" - }, - "end": { - "$date": "2021-07-20T05:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6d545c2c-685f-432f-bd10-dbba2bf770bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-20T04:08:14.000Z" - }, - "end": { - "$date": "2021-07-20T05:13:56.000Z" - }, - "events": [ - { - "uuid": "c511f67a-039f-4687-82cd-81a277c4ebe6", - "start": { - "$date": "2021-07-20T04:08:14.000Z" - }, - "end": { - "$date": "2021-07-20T05:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "673158d4-084e-4763-905a-15adca72a134", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-20T04:13:19.000Z" - }, - "end": { - "$date": "2021-07-20T04:41:32.000Z" - }, - "events": [ - { - "uuid": "46c95a43-ff3c-4043-bc57-fda1478a301a", - "start": { - "$date": "2021-07-20T04:13:19.000Z" - }, - "end": { - "$date": "2021-07-20T04:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "253c5268-8e3d-45f8-9407-97a8eb99992f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-20T04:46:08.000Z" - }, - "end": { - "$date": "2021-07-20T05:15:46.000Z" - }, - "events": [ - { - "uuid": "c16444a7-c93e-4e54-bde4-b66737a59033", - "start": { - "$date": "2021-07-20T04:46:08.000Z" - }, - "end": { - "$date": "2021-07-20T05:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "815c6ac2-9937-4a18-960e-787604c517f0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-20T05:46:47.000Z" - }, - "end": { - "$date": "2021-07-20T06:16:00.000Z" - }, - "events": [ - { - "uuid": "d1e8df30-cd21-4cf4-9ccd-9efcd41fa04c", - "start": { - "$date": "2021-07-20T05:46:47.000Z" - }, - "end": { - "$date": "2021-07-20T06:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "41cbb5ae-ceb3-409d-a27c-fc81a0274208", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-20T05:40:08.000Z" - }, - "end": { - "$date": "2021-07-20T05:51:27.000Z" - }, - "events": [ - { - "uuid": "a447f816-4826-4133-895f-2a800982699e", - "start": { - "$date": "2021-07-20T05:40:08.000Z" - }, - "end": { - "$date": "2021-07-20T05:51:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "32c8e88f-d9f2-4b1b-9168-8c437d0fbd0d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-20T05:40:56.000Z" - }, - "end": { - "$date": "2021-07-20T06:02:26.000Z" - }, - "events": [ - { - "uuid": "c9c141bd-97e5-4387-b781-eba6e2601fc5", - "start": { - "$date": "2021-07-20T05:40:56.000Z" - }, - "end": { - "$date": "2021-07-20T06:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1bc057cc-e395-4217-a969-5149f0c6a56d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-20T13:17:35.000Z" - }, - "end": { - "$date": "2021-07-20T16:17:06.000Z" - }, - "events": [ - { - "uuid": "3e70fcf0-b97f-45c8-b282-f54f94379d87", - "start": { - "$date": "2021-07-20T13:17:35.000Z" - }, - "end": { - "$date": "2021-07-20T16:17:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "d67a28e7-e832-4a80-8a71-0a7fb53e7373", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-20T15:19:46.000Z" - }, - "end": { - "$date": "2021-07-20T15:19:49.000Z" - }, - "events": [ - { - "uuid": "ffec9f06-a1d3-4e11-a7f1-95529af218d4", - "start": { - "$date": "2021-07-20T15:19:46.000Z" - }, - "end": { - "$date": "2021-07-20T15:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7047fc50-44ff-42fa-bca8-66eee0b57eb3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-20T15:19:13.000Z" - }, - "end": { - "$date": "2021-07-20T17:33:51.000Z" - }, - "events": [ - { - "uuid": "4a210364-dc24-4108-befe-0613c24c7371", - "start": { - "$date": "2021-07-20T15:19:13.000Z" - }, - "end": { - "$date": "2021-07-20T17:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0dab7bda-a586-40bb-9426-b6c83af5525f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-20T17:43:27.000Z" - }, - "end": { - "$date": "2021-07-20T18:29:48.000Z" - }, - "events": [ - { - "uuid": "382a1142-c9bb-4bc5-bbd1-f6bbe0b18d56", - "start": { - "$date": "2021-07-20T17:43:27.000Z" - }, - "end": { - "$date": "2021-07-20T18:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "9632a23f-f581-4610-a1e9-3fd9ad47ec97", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-20T17:51:16.000Z" - }, - "end": { - "$date": "2021-07-20T18:22:22.000Z" - }, - "events": [ - { - "uuid": "8c034c0a-025c-48b1-a257-17956c8df220", - "start": { - "$date": "2021-07-20T17:51:16.000Z" - }, - "end": { - "$date": "2021-07-20T18:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6bfabb53-ca42-4634-8a4e-1ef824f47fef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-20T17:53:53.000Z" - }, - "end": { - "$date": "2021-07-20T18:08:53.000Z" - }, - "events": [ - { - "uuid": "c61afc76-5020-45a6-892c-b1e69ae6c0bf", - "start": { - "$date": "2021-07-20T17:53:53.000Z" - }, - "end": { - "$date": "2021-07-20T18:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "1cfe4337-d82e-4a3b-a1bb-345c878c3f24", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-20T18:23:38.000Z" - }, - "end": { - "$date": "2021-07-20T18:37:38.000Z" - }, - "events": [ - { - "uuid": "beb94dcd-6557-4511-9e33-d6453f8553d6", - "start": { - "$date": "2021-07-20T18:23:38.000Z" - }, - "end": { - "$date": "2021-07-20T18:37:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "3a89940b-eb21-4cb6-8291-9e322319725f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-20T21:21:06.000Z" - }, - "end": { - "$date": "2021-07-20T21:21:10.000Z" - }, - "events": [ - { - "uuid": "0d231fc9-51ba-44db-9216-3d69ed3cd755", - "start": { - "$date": "2021-07-20T21:21:06.000Z" - }, - "end": { - "$date": "2021-07-20T21:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "dd3eaf78-acad-409c-a7f4-1c15219d81d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-20T20:17:58.000Z" - }, - "end": { - "$date": "2021-07-20T21:03:44.000Z" - }, - "events": [ - { - "uuid": "f0f20601-d0e2-4cf1-9017-07a47265031f", - "start": { - "$date": "2021-07-20T20:17:58.000Z" - }, - "end": { - "$date": "2021-07-20T21:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fa500469-bed3-4aa9-84ec-90c41de653fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-20T20:18:25.000Z" - }, - "end": { - "$date": "2021-07-20T20:30:46.000Z" - }, - "events": [ - { - "uuid": "6674b0fd-27bd-4efc-8dd7-743e09f0ab55", - "start": { - "$date": "2021-07-20T20:18:25.000Z" - }, - "end": { - "$date": "2021-07-20T20:30:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0208f153-088f-4a27-ab30-aa54e8a795b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-20T21:08:55.000Z" - }, - "end": { - "$date": "2021-07-20T21:29:00.000Z" - }, - "events": [ - { - "uuid": "61ce3b3e-6890-4378-9955-3700cceb9b31", - "start": { - "$date": "2021-07-20T21:08:55.000Z" - }, - "end": { - "$date": "2021-07-20T21:29:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7cd0b505-2df9-4248-99de-dd71a02fb080", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-20T21:36:37.000Z" - }, - "end": { - "$date": "2021-07-20T22:35:47.000Z" - }, - "events": [ - { - "uuid": "6e844698-9d79-43a9-b31c-97070cd51e61", - "start": { - "$date": "2021-07-20T21:36:37.000Z" - }, - "end": { - "$date": "2021-07-20T22:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1ae40bf9-9d17-4226-9022-e33cf5e142e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-20T22:26:38.000Z" - }, - "end": { - "$date": "2021-07-20T22:49:29.000Z" - }, - "events": [ - { - "uuid": "4f45f746-3c30-49b2-ad01-981722c0d8f4", - "start": { - "$date": "2021-07-20T22:26:38.000Z" - }, - "end": { - "$date": "2021-07-20T22:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "649b31b0-029b-4df3-80b7-8081e400b72d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-20T22:36:45.000Z" - }, - "end": { - "$date": "2021-07-20T22:40:22.000Z" - }, - "events": [ - { - "uuid": "f96cfa78-9276-4ed3-b301-95fe50c4a123", - "start": { - "$date": "2021-07-20T22:36:45.000Z" - }, - "end": { - "$date": "2021-07-20T22:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4b193f8f-df6f-4b81-9133-a585030238a0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-20T22:40:35.000Z" - }, - "end": { - "$date": "2021-07-20T23:24:05.000Z" - }, - "events": [ - { - "uuid": "217b4870-cb7f-43b6-bcc7-7eca5c6b6f90", - "start": { - "$date": "2021-07-20T22:40:35.000Z" - }, - "end": { - "$date": "2021-07-20T23:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0c0b00c4-a4c3-4c28-8f85-297e0e3f34f5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-20T22:41:00.000Z" - }, - "end": { - "$date": "2021-07-20T22:56:14.000Z" - }, - "events": [ - { - "uuid": "6c1130ba-e88d-4024-b174-6c950a9fbc34", - "start": { - "$date": "2021-07-20T22:41:00.000Z" - }, - "end": { - "$date": "2021-07-20T22:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "550ed551-f418-4878-a5c2-489658652e3d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-20T22:53:49.000Z" - }, - "end": { - "$date": "2021-07-21T06:45:45.000Z" - }, - "events": [ - { - "uuid": "b134d9f8-f431-4e37-9339-755f754f20e4", - "start": { - "$date": "2021-07-20T22:53:49.000Z" - }, - "end": { - "$date": "2021-07-21T02:10:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af3f3a56-6f54-40f1-b4af-0c6c8df50832", - "start": { - "$date": "2021-07-21T02:10:49.000Z" - }, - "end": { - "$date": "2021-07-21T02:24:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f3198d25-ae4e-4bcf-bcbd-5ad6377d179c", - "start": { - "$date": "2021-07-21T02:24:49.000Z" - }, - "end": { - "$date": "2021-07-21T06:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ebad58af-19da-407b-ad0c-ab37f7cd0439", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-20T22:57:07.000Z" - }, - "end": { - "$date": "2021-07-20T23:37:07.000Z" - }, - "events": [ - { - "uuid": "205963c6-50da-4f63-821a-851e9e858b7e", - "start": { - "$date": "2021-07-20T22:57:07.000Z" - }, - "end": { - "$date": "2021-07-20T23:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "21b2823e-e89d-4a26-bed6-68e7929bdcb4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T00:00:47.000Z" - }, - "end": { - "$date": "2021-07-21T00:48:06.000Z" - }, - "events": [ - { - "uuid": "31e0aa30-c95c-4fad-af39-f60de3e8575b", - "start": { - "$date": "2021-07-21T00:00:47.000Z" - }, - "end": { - "$date": "2021-07-21T00:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c48829d-3c1f-45d8-a42d-9268aef21fa9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T00:25:03.000Z" - }, - "end": { - "$date": "2021-07-21T00:38:48.000Z" - }, - "events": [ - { - "uuid": "1b75cbff-9cc5-48e2-9c53-fc3f10e455c1", - "start": { - "$date": "2021-07-21T00:25:03.000Z" - }, - "end": { - "$date": "2021-07-21T00:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88a0cd92-c1e4-497f-962b-f05fd389bc6d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T00:25:20.000Z" - }, - "end": { - "$date": "2021-07-21T00:38:34.000Z" - }, - "events": [ - { - "uuid": "b4280e11-9fc1-4174-ace3-bebea48911f7", - "start": { - "$date": "2021-07-21T00:25:20.000Z" - }, - "end": { - "$date": "2021-07-21T00:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "be03ca35-c846-4417-8580-8e6979dd3164", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-21T00:33:47.000Z" - }, - "end": { - "$date": "2021-07-21T02:03:40.000Z" - }, - "events": [ - { - "uuid": "543b6ec7-6855-4804-98f6-98bc123c52af", - "start": { - "$date": "2021-07-21T00:33:47.000Z" - }, - "end": { - "$date": "2021-07-21T02:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0fd2d442-d0ec-4117-a71a-73457d6f48b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-21T00:36:43.000Z" - }, - "end": { - "$date": "2021-07-21T02:03:27.000Z" - }, - "events": [ - { - "uuid": "bb3cad8a-25dd-4401-8963-1d48b0174ed3", - "start": { - "$date": "2021-07-21T00:36:43.000Z" - }, - "end": { - "$date": "2021-07-21T02:03:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d910189e-5f6e-4693-8125-2d6120929c70", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T00:41:49.000Z" - }, - "end": { - "$date": "2021-07-21T01:12:20.000Z" - }, - "events": [ - { - "uuid": "fdf77c24-135a-4754-9f7f-904e79d1a9d5", - "start": { - "$date": "2021-07-21T00:41:49.000Z" - }, - "end": { - "$date": "2021-07-21T01:12:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ceeedc9e-d738-4cdd-9d29-72d0f8e4d909", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T00:41:45.000Z" - }, - "end": { - "$date": "2021-07-21T01:12:09.000Z" - }, - "events": [ - { - "uuid": "d695a410-a866-421a-a15c-cded683d8589", - "start": { - "$date": "2021-07-21T00:41:45.000Z" - }, - "end": { - "$date": "2021-07-21T01:12:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "155cf911-46fe-4753-9090-190978230e3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T01:15:27.000Z" - }, - "end": { - "$date": "2021-07-21T01:50:39.000Z" - }, - "events": [ - { - "uuid": "6f0b7e5e-21cc-4fd0-8c97-efcaafea2574", - "start": { - "$date": "2021-07-21T01:15:27.000Z" - }, - "end": { - "$date": "2021-07-21T01:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b76ffb51-a369-4fd4-abd9-fb2bba6f118b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T01:16:26.000Z" - }, - "end": { - "$date": "2021-07-21T01:50:30.000Z" - }, - "events": [ - { - "uuid": "644b3c79-d02d-4693-b18f-f04b2035804b", - "start": { - "$date": "2021-07-21T01:16:26.000Z" - }, - "end": { - "$date": "2021-07-21T01:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8b444ad-99c4-4586-9d2e-b6ca3f361eb4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T02:01:57.000Z" - }, - "end": { - "$date": "2021-07-21T02:03:41.000Z" - }, - "events": [ - { - "uuid": "b7e34f1e-1e66-49a7-a917-b1e7655d6448", - "start": { - "$date": "2021-07-21T02:01:57.000Z" - }, - "end": { - "$date": "2021-07-21T02:03:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "635fbbe2-60a6-4047-b3b0-6aedb0593d55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T02:04:17.000Z" - }, - "end": { - "$date": "2021-07-21T02:10:19.000Z" - }, - "events": [ - { - "uuid": "f2455fc6-d19a-4f8c-83a5-5dc1b724db6a", - "start": { - "$date": "2021-07-21T02:04:17.000Z" - }, - "end": { - "$date": "2021-07-21T02:10:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "04b44884-a833-48a5-8246-83bb2a82b355", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-21T02:11:44.000Z" - }, - "end": { - "$date": "2021-07-21T02:42:57.000Z" - }, - "events": [ - { - "uuid": "eb22731c-254f-411f-b938-2d5e516b5092", - "start": { - "$date": "2021-07-21T02:11:44.000Z" - }, - "end": { - "$date": "2021-07-21T02:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "84fbafaa-c553-4886-80b8-4a5cf306dbc1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-21T02:12:34.000Z" - }, - "end": { - "$date": "2021-07-21T02:45:41.000Z" - }, - "events": [ - { - "uuid": "0b8c819b-f45c-4dec-81e7-a7e4966d7d28", - "start": { - "$date": "2021-07-21T02:12:34.000Z" - }, - "end": { - "$date": "2021-07-21T02:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "3ca14c18-9dc7-4c0d-972f-8b4f07a49937", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T02:12:58.000Z" - }, - "end": { - "$date": "2021-07-21T02:43:18.000Z" - }, - "events": [ - { - "uuid": "f4e34af7-7c9c-4c74-b079-15979f2586df", - "start": { - "$date": "2021-07-21T02:12:58.000Z" - }, - "end": { - "$date": "2021-07-21T02:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "46e95ee5-02b2-4bb8-8d07-83fdc3c15ec9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-21T02:30:58.000Z" - }, - "end": { - "$date": "2021-07-21T02:43:48.000Z" - }, - "events": [ - { - "uuid": "a76f360a-8927-4c44-b6b5-c949c743b332", - "start": { - "$date": "2021-07-21T02:30:58.000Z" - }, - "end": { - "$date": "2021-07-21T02:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf90f37c-567f-46e9-b565-45691065931f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-21T02:42:45.000Z" - }, - "end": { - "$date": "2021-07-21T03:12:09.000Z" - }, - "events": [ - { - "uuid": "2d0bde78-5510-4196-9921-90aaf8fe08ca", - "start": { - "$date": "2021-07-21T02:42:45.000Z" - }, - "end": { - "$date": "2021-07-21T03:12:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd354964-0d9a-4dd9-84b5-f0b4845e4aeb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-21T02:44:04.000Z" - }, - "end": { - "$date": "2021-07-21T03:03:30.000Z" - }, - "events": [ - { - "uuid": "8ba9645d-9670-4b72-b4a4-b502a4862ea0", - "start": { - "$date": "2021-07-21T02:44:04.000Z" - }, - "end": { - "$date": "2021-07-21T03:03:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e4a852cd-78d2-4db2-a32f-be2dbab8f706", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-21T02:49:21.000Z" - }, - "end": { - "$date": "2021-07-21T03:53:58.000Z" - }, - "events": [ - { - "uuid": "ba8e51de-1301-4861-b5fe-b8b000842197", - "start": { - "$date": "2021-07-21T02:49:21.000Z" - }, - "end": { - "$date": "2021-07-21T03:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "94dc3b9d-2b87-4a6d-94b2-5f9eb4a0ae34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T02:50:49.000Z" - }, - "end": { - "$date": "2021-07-21T04:03:51.000Z" - }, - "events": [ - { - "uuid": "f68f4b26-d86c-4179-97df-9a0771e9a33f", - "start": { - "$date": "2021-07-21T02:50:49.000Z" - }, - "end": { - "$date": "2021-07-21T04:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d85805df-89fc-451d-aa71-fa2e4875623d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T03:03:04.000Z" - }, - "end": { - "$date": "2021-07-21T04:03:12.000Z" - }, - "events": [ - { - "uuid": "93ff7dfa-7aa4-4137-bdcd-4932349fd6ce", - "start": { - "$date": "2021-07-21T03:03:04.000Z" - }, - "end": { - "$date": "2021-07-21T04:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e51eb73c-e123-4781-a367-98e76cb3ebea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-21T03:03:51.000Z" - }, - "end": { - "$date": "2021-07-21T04:03:01.000Z" - }, - "events": [ - { - "uuid": "75350edc-e2d5-42eb-ae88-cd5a54846366", - "start": { - "$date": "2021-07-21T03:03:51.000Z" - }, - "end": { - "$date": "2021-07-21T04:03:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8f350105-e62c-4845-82c5-68edf1ac104f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-21T03:04:44.000Z" - }, - "end": { - "$date": "2021-07-21T04:11:37.000Z" - }, - "events": [ - { - "uuid": "19a5d41a-cd7a-4fc1-8495-d7f812e6d605", - "start": { - "$date": "2021-07-21T03:04:44.000Z" - }, - "end": { - "$date": "2021-07-21T04:11:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "879402dc-0b74-4933-814b-65b7fb32e961", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-21T03:19:16.000Z" - }, - "end": { - "$date": "2021-07-21T03:38:16.000Z" - }, - "events": [ - { - "uuid": "a6c829f6-735c-4b4d-803a-ee8b0b2bcfc9", - "start": { - "$date": "2021-07-21T03:19:16.000Z" - }, - "end": { - "$date": "2021-07-21T03:38:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "971626b2-4549-47af-849f-19d66a54ebd9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T04:07:32.000Z" - }, - "end": { - "$date": "2021-07-21T04:33:14.000Z" - }, - "events": [ - { - "uuid": "0208af26-1b1c-4a6c-b25a-ea904cfc9044", - "start": { - "$date": "2021-07-21T04:07:32.000Z" - }, - "end": { - "$date": "2021-07-21T04:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74e4a047-266d-4da8-83a8-caeb47a75a9d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-21T03:38:16.000Z" - }, - "end": { - "$date": "2021-07-21T04:10:04.000Z" - }, - "events": [ - { - "uuid": "3d023060-bf65-4648-a2a5-bc23fa18ae09", - "start": { - "$date": "2021-07-21T03:38:16.000Z" - }, - "end": { - "$date": "2021-07-21T04:10:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2b8f1bdb-7f9c-4672-9a49-9014c1a869fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T04:11:46.000Z" - }, - "end": { - "$date": "2021-07-21T04:30:29.000Z" - }, - "events": [ - { - "uuid": "ab5f3873-4766-472e-81e1-2b63a6f915f5", - "start": { - "$date": "2021-07-21T04:11:46.000Z" - }, - "end": { - "$date": "2021-07-21T04:30:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03a0ff55-0eb8-4a31-823b-2554dfbff9a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-21T04:20:59.000Z" - }, - "end": { - "$date": "2021-07-21T04:47:08.000Z" - }, - "events": [ - { - "uuid": "8d8322d8-2c90-4809-9489-0b4946e3a302", - "start": { - "$date": "2021-07-21T04:20:59.000Z" - }, - "end": { - "$date": "2021-07-21T04:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4510bf8c-398c-4ec4-9a29-f7e12abb77be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T04:34:15.000Z" - }, - "end": { - "$date": "2021-07-21T04:48:10.000Z" - }, - "events": [ - { - "uuid": "ecd7d285-66da-4401-a1fc-b7e512f17a0e", - "start": { - "$date": "2021-07-21T04:34:15.000Z" - }, - "end": { - "$date": "2021-07-21T04:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "22ca0c33-b2fa-487c-a766-4f5ab58f8f8a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-21T04:37:52.000Z" - }, - "end": { - "$date": "2021-07-21T05:20:58.000Z" - }, - "events": [ - { - "uuid": "1809a046-e8d2-42e0-99e2-5461f0c60c1d", - "start": { - "$date": "2021-07-21T04:37:52.000Z" - }, - "end": { - "$date": "2021-07-21T05:20:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "3627181a-d43f-4927-a113-439d47208d85", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T05:14:18.000Z" - }, - "end": { - "$date": "2021-07-21T05:58:51.000Z" - }, - "events": [ - { - "uuid": "494c4c72-b80f-44af-99bc-50da52c6edaf", - "start": { - "$date": "2021-07-21T05:14:18.000Z" - }, - "end": { - "$date": "2021-07-21T05:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "e7079699-b8fe-41a5-839a-950d29b2c5f3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-21T14:59:03.000Z" - }, - "end": { - "$date": "2021-07-21T14:59:08.000Z" - }, - "events": [ - { - "uuid": "2dececbc-ee65-45d7-8cd8-5f0448da2026", - "start": { - "$date": "2021-07-21T14:59:03.000Z" - }, - "end": { - "$date": "2021-07-21T14:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "73c8b5df-e3bd-4313-9a76-473709828c55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T14:12:23.000Z" - }, - "end": { - "$date": "2021-07-21T14:24:52.000Z" - }, - "events": [ - { - "uuid": "a6fa7b92-6ec3-4ed5-9f78-52829cdd7c73", - "start": { - "$date": "2021-07-21T14:12:23.000Z" - }, - "end": { - "$date": "2021-07-21T14:24:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "84d58fd0-5242-4c6e-ae8b-cc1e109d2832", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T14:27:45.000Z" - }, - "end": { - "$date": "2021-07-21T15:55:05.000Z" - }, - "events": [ - { - "uuid": "f644d0c4-ddbb-45c5-ba0c-a9f8c43853e3", - "start": { - "$date": "2021-07-21T14:27:45.000Z" - }, - "end": { - "$date": "2021-07-21T15:55:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee6543b8-3c21-4ad5-a0c0-144c8c6fe789", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T15:36:37.000Z" - }, - "end": { - "$date": "2021-07-21T15:55:50.000Z" - }, - "events": [ - { - "uuid": "fac955ac-91d3-430a-955f-2ca794e5d916", - "start": { - "$date": "2021-07-21T15:36:37.000Z" - }, - "end": { - "$date": "2021-07-21T15:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "ae8abcf2-74b6-4d62-9c50-60eb00171225", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T15:56:13.000Z" - }, - "end": { - "$date": "2021-07-21T16:24:32.000Z" - }, - "events": [ - { - "uuid": "f105c828-6576-4782-bf8b-15d17ee73287", - "start": { - "$date": "2021-07-21T15:56:13.000Z" - }, - "end": { - "$date": "2021-07-21T16:07:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f1f63cd-a243-477e-923c-8528dab4e962", - "start": { - "$date": "2021-07-21T16:07:13.000Z" - }, - "end": { - "$date": "2021-07-21T16:10:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "462118aa-6287-4a87-8c9c-ea890b268f84", - "start": { - "$date": "2021-07-21T16:10:13.000Z" - }, - "end": { - "$date": "2021-07-21T16:24:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77e5e496-e61e-4b11-acdc-f6d6cab8c101", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T16:06:44.000Z" - }, - "end": { - "$date": "2021-07-21T16:32:14.000Z" - }, - "events": [ - { - "uuid": "93673397-2869-4938-b1e5-d187db314861", - "start": { - "$date": "2021-07-21T16:06:44.000Z" - }, - "end": { - "$date": "2021-07-21T16:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c1cc863d-fb64-406a-b4b1-184f5cfdb106", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T16:29:06.000Z" - }, - "end": { - "$date": "2021-07-21T17:43:26.000Z" - }, - "events": [ - { - "uuid": "ec143600-8d19-4513-a8c7-2b5dd71a8e89", - "start": { - "$date": "2021-07-21T16:29:06.000Z" - }, - "end": { - "$date": "2021-07-21T17:43:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76535914-7da3-4b14-8c2f-f6a5085a850f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T16:37:25.000Z" - }, - "end": { - "$date": "2021-07-21T16:58:30.000Z" - }, - "events": [ - { - "uuid": "ecd76071-a760-4750-a7fd-b405d0d3a7de", - "start": { - "$date": "2021-07-21T16:37:25.000Z" - }, - "end": { - "$date": "2021-07-21T16:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "df77a42c-e5db-4d9c-8671-0d25a7ccb51c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-21T16:57:56.000Z" - }, - "end": { - "$date": "2021-07-21T17:21:08.000Z" - }, - "events": [ - { - "uuid": "05f0547f-99bc-480b-912c-f08c7229359c", - "start": { - "$date": "2021-07-21T16:57:56.000Z" - }, - "end": { - "$date": "2021-07-21T17:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "227ecd14-b5dc-4b9a-aaa1-a2edd57750ed", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-21T17:54:58.000Z" - }, - "end": { - "$date": "2021-07-21T19:09:32.000Z" - }, - "events": [ - { - "uuid": "050b37a6-66e4-40f1-bb98-6e5aeab2c392", - "start": { - "$date": "2021-07-21T17:54:58.000Z" - }, - "end": { - "$date": "2021-07-21T19:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "099637e8-aa0a-4b5f-8ba0-4c010cf0daff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T18:12:17.000Z" - }, - "end": { - "$date": "2021-07-21T18:46:27.000Z" - }, - "events": [ - { - "uuid": "96d63a3b-9d0d-43ff-b9c7-6b6f841500cb", - "start": { - "$date": "2021-07-21T18:12:17.000Z" - }, - "end": { - "$date": "2021-07-21T18:24:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a163b8fa-edcc-4e3c-82e3-3ee46221363f", - "start": { - "$date": "2021-07-21T18:24:17.000Z" - }, - "end": { - "$date": "2021-07-21T18:29:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "904308a9-44d0-484b-a3e4-f89b7e2f0c7c", - "start": { - "$date": "2021-07-21T18:29:17.000Z" - }, - "end": { - "$date": "2021-07-21T18:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "df07b3a7-167f-4132-9608-65c5b7eaf4a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T18:46:45.000Z" - }, - "end": { - "$date": "2021-07-21T19:13:43.000Z" - }, - "events": [ - { - "uuid": "e41a8934-f2b2-4fc8-96bf-b22e7ebada80", - "start": { - "$date": "2021-07-21T18:46:45.000Z" - }, - "end": { - "$date": "2021-07-21T19:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "48db2109-3b4b-46f9-85bd-197d151ac465", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-21T19:11:52.000Z" - }, - "end": { - "$date": "2021-07-21T20:19:02.000Z" - }, - "events": [ - { - "uuid": "000f0015-dd16-4a5e-9111-354b75ac05fa", - "start": { - "$date": "2021-07-21T19:11:52.000Z" - }, - "end": { - "$date": "2021-07-21T20:19:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c613c115-5cab-4acf-88af-ce5fb4e4bb2b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-21T19:18:08.000Z" - }, - "end": { - "$date": "2021-07-21T22:05:18.000Z" - }, - "events": [ - { - "uuid": "6f9c3031-d247-48ec-acd2-a03a4815d6f9", - "start": { - "$date": "2021-07-21T19:18:08.000Z" - }, - "end": { - "$date": "2021-07-21T22:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3daad71-fa4a-4455-92bd-15eeb37172b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T19:33:47.000Z" - }, - "end": { - "$date": "2021-07-21T19:51:54.000Z" - }, - "events": [ - { - "uuid": "77f0f703-0fd0-4024-a932-2264823e2012", - "start": { - "$date": "2021-07-21T19:33:47.000Z" - }, - "end": { - "$date": "2021-07-21T19:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44330dfc-a072-4f00-8635-ce38eced73c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T19:35:07.000Z" - }, - "end": { - "$date": "2021-07-21T19:51:51.000Z" - }, - "events": [ - { - "uuid": "146d80ef-05b8-47cd-906d-8a2e07e2d723", - "start": { - "$date": "2021-07-21T19:35:07.000Z" - }, - "end": { - "$date": "2021-07-21T19:51:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83602069-1180-402d-ba19-31a88a17cb28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T19:54:52.000Z" - }, - "end": { - "$date": "2021-07-21T20:23:31.000Z" - }, - "events": [ - { - "uuid": "22ac1681-bfde-4781-878f-afde3109b5fd", - "start": { - "$date": "2021-07-21T19:54:52.000Z" - }, - "end": { - "$date": "2021-07-21T20:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fc01b55f-4d01-4ae1-a89e-7771e144066f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T19:52:25.000Z" - }, - "end": { - "$date": "2021-07-21T20:16:48.000Z" - }, - "events": [ - { - "uuid": "397d107c-e96a-4b37-9146-4524446781a8", - "start": { - "$date": "2021-07-21T19:52:25.000Z" - }, - "end": { - "$date": "2021-07-21T20:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edb72392-edb6-4b56-b1b8-b6b16a5a7cae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-21T19:56:02.000Z" - }, - "end": { - "$date": "2021-07-21T20:23:22.000Z" - }, - "events": [ - { - "uuid": "8c30d7ac-6d91-4b2f-be11-670d104fbc2a", - "start": { - "$date": "2021-07-21T19:56:02.000Z" - }, - "end": { - "$date": "2021-07-21T20:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a53fa2cf-5a04-4513-9e70-8bb81fea42fa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T20:18:51.000Z" - }, - "end": { - "$date": "2021-07-21T21:48:08.000Z" - }, - "events": [ - { - "uuid": "9d0897c7-4f7d-4c21-993c-bdfd8e19ffac", - "start": { - "$date": "2021-07-21T20:18:51.000Z" - }, - "end": { - "$date": "2021-07-21T21:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6dd0f6f-bfc2-4564-a8ac-2a650e896c5e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T20:27:19.000Z" - }, - "end": { - "$date": "2021-07-21T20:53:50.000Z" - }, - "events": [ - { - "uuid": "defb7a56-5f98-446a-aa78-d9ae14840ad2", - "start": { - "$date": "2021-07-21T20:27:19.000Z" - }, - "end": { - "$date": "2021-07-21T20:53:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ea9119b-6b57-43c6-bbe7-69c2ef04e38a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-21T20:57:44.000Z" - }, - "end": { - "$date": "2021-07-21T21:21:55.000Z" - }, - "events": [ - { - "uuid": "b3e84365-0631-4f50-a89e-7a8bf99b9b65", - "start": { - "$date": "2021-07-21T20:57:44.000Z" - }, - "end": { - "$date": "2021-07-21T21:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "10117e50-901d-444d-bad2-a052c27a3847", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-21T22:20:30.000Z" - }, - "end": { - "$date": "2021-07-21T22:29:08.000Z" - }, - "events": [ - { - "uuid": "f332628d-681d-4e07-9247-f6c827f03858", - "start": { - "$date": "2021-07-21T22:20:30.000Z" - }, - "end": { - "$date": "2021-07-21T22:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "3336b4ea-995e-4e02-bd99-ef307f400d84", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-21T23:40:33.000Z" - }, - "end": { - "$date": "2021-07-22T00:05:34.000Z" - }, - "events": [ - { - "uuid": "b8573f05-4fb8-4985-ab7a-16f670937541", - "start": { - "$date": "2021-07-21T23:40:33.000Z" - }, - "end": { - "$date": "2021-07-22T00:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "193a174e-7531-4335-b4e4-2403f7491e9c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-21T22:59:31.000Z" - }, - "end": { - "$date": "2021-07-21T23:52:00.000Z" - }, - "events": [ - { - "uuid": "c907b8e3-9049-42bf-8a26-68a0fc4d7177", - "start": { - "$date": "2021-07-21T22:59:31.000Z" - }, - "end": { - "$date": "2021-07-21T23:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0da469d1-b348-4aa6-8a8d-2a67a9288c84", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-21T21:43:30.000Z" - }, - "end": { - "$date": "2021-07-22T03:45:32.000Z" - }, - "events": [ - { - "uuid": "c950dc6a-3f7b-433f-a3a6-87139a91c41f", - "start": { - "$date": "2021-07-21T21:43:30.000Z" - }, - "end": { - "$date": "2021-07-21T22:21:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a7e6a8f0-ed35-4c0e-8ffc-77a069810c43", - "start": { - "$date": "2021-07-21T22:21:30.000Z" - }, - "end": { - "$date": "2021-07-21T22:24:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6f0bcd7a-2c61-4ca8-b47d-a3f8a2120281", - "start": { - "$date": "2021-07-21T22:24:30.000Z" - }, - "end": { - "$date": "2021-07-21T23:40:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eaea8bc3-cd52-4c4a-bff8-9a471e422496", - "start": { - "$date": "2021-07-21T23:40:30.000Z" - }, - "end": { - "$date": "2021-07-21T23:45:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "95b21da0-0e32-48c4-8058-c2af96ca7c76", - "start": { - "$date": "2021-07-21T23:45:30.000Z" - }, - "end": { - "$date": "2021-07-21T23:55:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d8323de8-2507-4b14-b9dd-8a1074f98d13", - "start": { - "$date": "2021-07-21T23:55:30.000Z" - }, - "end": { - "$date": "2021-07-22T00:17:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15557da2-0950-469f-a8ee-f2c36e3f9fd7", - "start": { - "$date": "2021-07-22T00:17:30.000Z" - }, - "end": { - "$date": "2021-07-22T03:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cbc6d9ed-af08-49cc-b79d-90b21b9b4aaa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T00:52:39.000Z" - }, - "end": { - "$date": "2021-07-22T00:53:58.000Z" - }, - "events": [ - { - "uuid": "6481b06c-036b-4ae9-99e0-66e1a359c222", - "start": { - "$date": "2021-07-22T00:52:39.000Z" - }, - "end": { - "$date": "2021-07-22T00:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "469f8aee-5146-4101-9aab-4b0e1a6e92e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T00:54:09.000Z" - }, - "end": { - "$date": "2021-07-22T02:19:52.000Z" - }, - "events": [ - { - "uuid": "c7bb57b3-13dd-4c6d-ab02-ce43ca3c2f21", - "start": { - "$date": "2021-07-22T00:54:09.000Z" - }, - "end": { - "$date": "2021-07-22T02:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7f8c7c4c-4ca8-4e7c-b5f1-97585f058eb6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-22T01:20:16.000Z" - }, - "end": { - "$date": "2021-07-22T01:27:51.000Z" - }, - "events": [ - { - "uuid": "2c5fc3e1-cbc1-4461-ba5c-1270c6b90edb", - "start": { - "$date": "2021-07-22T01:20:16.000Z" - }, - "end": { - "$date": "2021-07-22T01:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f2bb5824-623d-4a3f-a8a0-f0077f955155", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-22T02:06:58.000Z" - }, - "end": { - "$date": "2021-07-22T04:28:54.000Z" - }, - "events": [ - { - "uuid": "4e7871ce-31d6-4ab1-8dc5-7e54571a6cb3", - "start": { - "$date": "2021-07-22T02:06:58.000Z" - }, - "end": { - "$date": "2021-07-22T04:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f18ba3cb-2372-4f0d-aa4d-68a74fcac712", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-22T02:08:52.000Z" - }, - "end": { - "$date": "2021-07-22T03:49:23.000Z" - }, - "events": [ - { - "uuid": "d87e8906-4cda-4608-8a1a-3a914a4e2bbe", - "start": { - "$date": "2021-07-22T02:08:52.000Z" - }, - "end": { - "$date": "2021-07-22T03:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "82473d11-4a86-49ca-a6bc-608d7607a39f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-22T02:41:49.000Z" - }, - "end": { - "$date": "2021-07-22T03:18:16.000Z" - }, - "events": [ - { - "uuid": "2d6e56de-bb3a-4974-af38-a7d200ea4e54", - "start": { - "$date": "2021-07-22T02:41:49.000Z" - }, - "end": { - "$date": "2021-07-22T03:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "27bd2bfa-c65a-437c-a2b0-a7fccce17c5e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-22T02:50:16.000Z" - }, - "end": { - "$date": "2021-07-22T03:57:15.000Z" - }, - "events": [ - { - "uuid": "e97cf90e-335c-4806-8e88-c111db8cbc90", - "start": { - "$date": "2021-07-22T02:50:16.000Z" - }, - "end": { - "$date": "2021-07-22T03:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a8df5dd-3e01-4865-9c7f-5be67e607e13", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-22T03:22:45.000Z" - }, - "end": { - "$date": "2021-07-22T04:00:40.000Z" - }, - "events": [ - { - "uuid": "22997880-7d00-48b1-87e2-ec71cdf0dd1d", - "start": { - "$date": "2021-07-22T03:22:45.000Z" - }, - "end": { - "$date": "2021-07-22T04:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b90da03-6a91-440a-93d6-451698206140", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T03:42:43.000Z" - }, - "end": { - "$date": "2021-07-22T04:12:59.000Z" - }, - "events": [ - { - "uuid": "edd031d1-7963-45ba-be5e-6961554234ae", - "start": { - "$date": "2021-07-22T03:42:43.000Z" - }, - "end": { - "$date": "2021-07-22T04:12:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "df6ed171-e0b9-431c-9fe4-2a414057c72d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-22T03:45:52.000Z" - }, - "end": { - "$date": "2021-07-22T04:41:09.000Z" - }, - "events": [ - { - "uuid": "836ddd0d-5756-4fbf-b29d-e48729af5ce9", - "start": { - "$date": "2021-07-22T03:45:52.000Z" - }, - "end": { - "$date": "2021-07-22T04:41:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7407a6d-bd4f-451c-85bf-ae3091037bab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-22T03:49:31.000Z" - }, - "end": { - "$date": "2021-07-22T04:28:53.000Z" - }, - "events": [ - { - "uuid": "3479c935-b35c-4951-89d5-5f09f68c4ff7", - "start": { - "$date": "2021-07-22T03:49:31.000Z" - }, - "end": { - "$date": "2021-07-22T04:28:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b72b001-520b-4abf-a0ed-17ae91c9f445", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-22T04:06:16.000Z" - }, - "end": { - "$date": "2021-07-22T04:44:12.000Z" - }, - "events": [ - { - "uuid": "05408b3e-f148-4684-96a4-8144604f4d57", - "start": { - "$date": "2021-07-22T04:06:16.000Z" - }, - "end": { - "$date": "2021-07-22T04:44:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7094c269-dd20-460e-89ce-5145a030dd29", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-22T04:05:58.000Z" - }, - "end": { - "$date": "2021-07-22T04:57:11.000Z" - }, - "events": [ - { - "uuid": "31a4c4ae-2a1e-42cf-aafc-d086c10af8f2", - "start": { - "$date": "2021-07-22T04:05:58.000Z" - }, - "end": { - "$date": "2021-07-22T04:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7198b2a-d2db-41ea-a170-f5141814d062", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T04:17:20.000Z" - }, - "end": { - "$date": "2021-07-22T04:31:30.000Z" - }, - "events": [ - { - "uuid": "9eeab332-c9da-4432-8229-316f1dcf3953", - "start": { - "$date": "2021-07-22T04:17:20.000Z" - }, - "end": { - "$date": "2021-07-22T04:31:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "573af0cd-0a9e-4e1c-86c0-cd18861da70e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T04:28:20.000Z" - }, - "end": { - "$date": "2021-07-22T04:36:00.000Z" - }, - "events": [ - { - "uuid": "b03b91a5-fa6e-4a8e-b265-2a99ad5e128b", - "start": { - "$date": "2021-07-22T04:28:20.000Z" - }, - "end": { - "$date": "2021-07-22T04:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d3214fda-5890-4769-b157-2d94ae10f561", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-22T04:29:18.000Z" - }, - "end": { - "$date": "2021-07-22T04:33:39.000Z" - }, - "events": [ - { - "uuid": "1e6bba2a-f644-491a-84aa-dd0a2400d8f9", - "start": { - "$date": "2021-07-22T04:29:18.000Z" - }, - "end": { - "$date": "2021-07-22T04:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d47c772-df5c-4058-8a3a-8d08f51db5d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T04:37:04.000Z" - }, - "end": { - "$date": "2021-07-22T05:11:42.000Z" - }, - "events": [ - { - "uuid": "b4fe1778-370f-461c-9484-333663e1f101", - "start": { - "$date": "2021-07-22T04:37:04.000Z" - }, - "end": { - "$date": "2021-07-22T05:11:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7df15c02-10b4-4851-9726-b4eb6f1da304", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-22T04:33:54.000Z" - }, - "end": { - "$date": "2021-07-22T05:15:53.000Z" - }, - "events": [ - { - "uuid": "a24f4af8-ab76-4a1f-89a1-c8b3a41459f6", - "start": { - "$date": "2021-07-22T04:33:54.000Z" - }, - "end": { - "$date": "2021-07-22T05:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f36f9bca-bde2-47e5-bb3e-a0804cc8f09f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-22T04:36:46.000Z" - }, - "end": { - "$date": "2021-07-22T05:06:11.000Z" - }, - "events": [ - { - "uuid": "2fa6dc65-e0b7-4a4d-903f-2682ed6a2425", - "start": { - "$date": "2021-07-22T04:36:46.000Z" - }, - "end": { - "$date": "2021-07-22T05:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "70c2294d-b3fb-4552-a1ba-b27b85d251bb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T04:37:47.000Z" - }, - "end": { - "$date": "2021-07-22T05:15:42.000Z" - }, - "events": [ - { - "uuid": "8b39ccdd-dd15-431f-a00c-0afd7db1a63a", - "start": { - "$date": "2021-07-22T04:37:47.000Z" - }, - "end": { - "$date": "2021-07-22T05:15:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7973161c-f5a1-4cc1-9746-2c9a732dac3d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-22T04:41:24.000Z" - }, - "end": { - "$date": "2021-07-22T07:09:35.000Z" - }, - "events": [ - { - "uuid": "4506b2ad-9e07-4f3d-9203-a15ef1eecab3", - "start": { - "$date": "2021-07-22T04:41:24.000Z" - }, - "end": { - "$date": "2021-07-22T07:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8991484b-834f-430a-82fe-206ec717b039", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-22T04:57:27.000Z" - }, - "end": { - "$date": "2021-07-22T05:20:18.000Z" - }, - "events": [ - { - "uuid": "4a59996a-4ada-4c1e-8847-ccd9670ba77c", - "start": { - "$date": "2021-07-22T04:57:27.000Z" - }, - "end": { - "$date": "2021-07-22T05:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dd693011-8476-48ed-bc0d-7cb89a07e80c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-22T05:20:49.000Z" - }, - "end": { - "$date": "2021-07-22T05:39:30.000Z" - }, - "events": [ - { - "uuid": "e765097f-cb07-4dc8-b09d-e0a02569e503", - "start": { - "$date": "2021-07-22T05:20:49.000Z" - }, - "end": { - "$date": "2021-07-22T05:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c14d402f-4510-4be2-9af2-1596f0b642df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T05:37:57.000Z" - }, - "end": { - "$date": "2021-07-22T06:02:23.000Z" - }, - "events": [ - { - "uuid": "272f8085-86c8-4acd-bdec-d1e988f5a269", - "start": { - "$date": "2021-07-22T05:37:57.000Z" - }, - "end": { - "$date": "2021-07-22T06:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8c77f20-9943-46cb-99c9-ea931c7ff2f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T06:06:30.000Z" - }, - "end": { - "$date": "2021-07-22T06:26:33.000Z" - }, - "events": [ - { - "uuid": "400b50fe-4aa9-48e7-826a-d1eaad18006e", - "start": { - "$date": "2021-07-22T06:06:30.000Z" - }, - "end": { - "$date": "2021-07-22T06:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "324bab21-9636-4f67-b46e-abd237881ffe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T06:31:41.000Z" - }, - "end": { - "$date": "2021-07-22T06:52:45.000Z" - }, - "events": [ - { - "uuid": "dff4e1f2-2925-435a-b9be-02842b6431f4", - "start": { - "$date": "2021-07-22T06:31:41.000Z" - }, - "end": { - "$date": "2021-07-22T06:52:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "feab4f48-990a-4b63-876c-e4bb556d8500", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-22T15:01:39.000Z" - }, - "end": { - "$date": "2021-07-22T15:01:44.000Z" - }, - "events": [ - { - "uuid": "16650534-a7c7-432e-af17-814cea147b81", - "start": { - "$date": "2021-07-22T15:01:39.000Z" - }, - "end": { - "$date": "2021-07-22T15:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "abfdb2b9-dd1c-4a25-80b2-ea71c8cc2e4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-22T14:41:58.000Z" - }, - "end": { - "$date": "2021-07-22T14:45:10.000Z" - }, - "events": [ - { - "uuid": "9558eb26-77c8-45e7-805c-6e9c400444b2", - "start": { - "$date": "2021-07-22T14:41:58.000Z" - }, - "end": { - "$date": "2021-07-22T14:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "034dd382-f278-47e6-802d-397bff1916f7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-22T14:49:30.000Z" - }, - "end": { - "$date": "2021-07-22T14:52:42.000Z" - }, - "events": [ - { - "uuid": "0a7b6f70-2eea-4d13-b4f0-7c6791007c37", - "start": { - "$date": "2021-07-22T14:49:30.000Z" - }, - "end": { - "$date": "2021-07-22T14:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ee3729d4-580e-465e-b2d7-fa6b92a35a6f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T15:27:02.000Z" - }, - "end": { - "$date": "2021-07-22T16:05:52.000Z" - }, - "events": [ - { - "uuid": "9ca556ba-665d-4404-8ba3-35f9275cfa91", - "start": { - "$date": "2021-07-22T15:27:02.000Z" - }, - "end": { - "$date": "2021-07-22T16:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f6f46e68-2de6-4f85-a956-383d0fac047a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T16:18:30.000Z" - }, - "end": { - "$date": "2021-07-22T17:16:25.000Z" - }, - "events": [ - { - "uuid": "79f7f1f7-f46b-4cb9-a162-d5071d44c3ac", - "start": { - "$date": "2021-07-22T16:18:30.000Z" - }, - "end": { - "$date": "2021-07-22T17:16:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55e89a29-25d0-4c18-9bd0-9c5c96a0e969", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T17:19:41.000Z" - }, - "end": { - "$date": "2021-07-22T17:34:50.000Z" - }, - "events": [ - { - "uuid": "111c0671-3d7a-4448-9dde-8dbcdbf0e167", - "start": { - "$date": "2021-07-22T17:19:41.000Z" - }, - "end": { - "$date": "2021-07-22T17:34:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58b9d1f3-d70a-4695-a88d-c28f1ae33cce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T17:28:55.000Z" - }, - "end": { - "$date": "2021-07-22T17:56:55.000Z" - }, - "events": [ - { - "uuid": "65499f86-f671-43ae-ab8a-bc5cf2a172d4", - "start": { - "$date": "2021-07-22T17:28:55.000Z" - }, - "end": { - "$date": "2021-07-22T17:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbdd6d43-b084-4932-a9ee-3f5baf7b0874", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T17:44:17.000Z" - }, - "end": { - "$date": "2021-07-22T18:01:26.000Z" - }, - "events": [ - { - "uuid": "7e7c491e-4167-4ee6-a925-cebbfda51799", - "start": { - "$date": "2021-07-22T17:44:17.000Z" - }, - "end": { - "$date": "2021-07-22T18:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3472878-27f1-4944-ac6d-f0200c72145f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-22T18:03:07.000Z" - }, - "end": { - "$date": "2021-07-22T18:35:17.000Z" - }, - "events": [ - { - "uuid": "9c3fe193-80e9-4154-b884-33dac7640748", - "start": { - "$date": "2021-07-22T18:03:07.000Z" - }, - "end": { - "$date": "2021-07-22T18:35:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7fb26cc-f2b2-4fd2-8b0b-000c89d49030", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T18:08:47.000Z" - }, - "end": { - "$date": "2021-07-22T18:33:17.000Z" - }, - "events": [ - { - "uuid": "f9915928-472e-41f8-80a0-40e070276228", - "start": { - "$date": "2021-07-22T18:08:47.000Z" - }, - "end": { - "$date": "2021-07-22T18:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ae1f8660-26c6-44cd-8cbc-3347af0a461f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-22T18:31:06.000Z" - }, - "end": { - "$date": "2021-07-22T19:34:04.000Z" - }, - "events": [ - { - "uuid": "de9e1a86-0652-409c-983d-5f26d5d542c0", - "start": { - "$date": "2021-07-22T18:31:06.000Z" - }, - "end": { - "$date": "2021-07-22T19:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "395c9bde-e3a9-48d9-b2ac-daff6fe01419", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-22T19:21:54.000Z" - }, - "end": { - "$date": "2021-07-22T19:40:30.000Z" - }, - "events": [ - { - "uuid": "d4a9a4f1-f4c4-4d26-beb9-e9097205dc15", - "start": { - "$date": "2021-07-22T19:21:54.000Z" - }, - "end": { - "$date": "2021-07-22T19:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "c2ee9bdb-0cb0-432d-aef6-4020c47843dd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-22T20:26:45.000Z" - }, - "end": { - "$date": "2021-07-22T21:27:55.000Z" - }, - "events": [ - { - "uuid": "e585b999-653c-47a3-b6f8-7e5d7b857fae", - "start": { - "$date": "2021-07-22T20:26:45.000Z" - }, - "end": { - "$date": "2021-07-22T21:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6ff55468-b47b-4657-9c43-16c820e39516", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-22T21:07:41.000Z" - }, - "end": { - "$date": "2021-07-23T00:49:32.000Z" - }, - "events": [ - { - "uuid": "6af09529-226c-492d-9329-1e64b68a545e", - "start": { - "$date": "2021-07-22T21:07:41.000Z" - }, - "end": { - "$date": "2021-07-23T00:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "17ffaf9d-628c-49d5-8341-6d6fde765830", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-22T22:53:35.000Z" - }, - "end": { - "$date": "2021-07-22T23:37:02.000Z" - }, - "events": [ - { - "uuid": "258b8b6a-f9e3-49b3-8d60-71846dd22f35", - "start": { - "$date": "2021-07-22T22:53:35.000Z" - }, - "end": { - "$date": "2021-07-22T23:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8ea513b5-1d0b-479a-81ed-817bfe05f0d2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-22T23:22:21.000Z" - }, - "end": { - "$date": "2021-07-23T00:07:46.000Z" - }, - "events": [ - { - "uuid": "884c1a68-7590-4680-aa84-d01d7fbb144d", - "start": { - "$date": "2021-07-22T23:22:21.000Z" - }, - "end": { - "$date": "2021-07-23T00:07:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "8eb8f559-890b-4349-94c1-7f2784f07a28", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-07-22T23:49:29.000Z" - }, - "end": { - "$date": "2021-07-23T01:42:52.000Z" - }, - "events": [ - { - "uuid": "bed12139-99fa-4192-81a9-d5691dac04e3", - "start": { - "$date": "2021-07-22T23:49:29.000Z" - }, - "end": { - "$date": "2021-07-23T01:42:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f12944ae-8880-47a1-aa4c-094bce7c5dea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-22T23:50:11.000Z" - }, - "end": { - "$date": "2021-07-23T05:38:54.000Z" - }, - "events": [ - { - "uuid": "6a78ac9d-a16f-4b68-982c-ad73c5e5472f", - "start": { - "$date": "2021-07-22T23:50:11.000Z" - }, - "end": { - "$date": "2021-07-23T01:06:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39ba574d-2346-45ac-8a87-14e4a1a508ef", - "start": { - "$date": "2021-07-23T01:06:11.000Z" - }, - "end": { - "$date": "2021-07-23T01:25:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0cfbbcd-3816-40ad-b316-4e646a590316", - "start": { - "$date": "2021-07-23T01:25:11.000Z" - }, - "end": { - "$date": "2021-07-23T04:06:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba86b589-80a2-42d1-9e5b-fab62ef72085", - "start": { - "$date": "2021-07-23T04:06:11.000Z" - }, - "end": { - "$date": "2021-07-23T04:11:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a528cf08-698f-48ae-a20f-9eba9a19f8b5", - "start": { - "$date": "2021-07-23T04:11:11.000Z" - }, - "end": { - "$date": "2021-07-23T05:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d305e04-4b7d-47a7-af53-55287b0f8ba7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T00:20:35.000Z" - }, - "end": { - "$date": "2021-07-23T00:51:56.000Z" - }, - "events": [ - { - "uuid": "ebe9fe41-7cb8-4308-a0f4-5296fd7adad8", - "start": { - "$date": "2021-07-23T00:20:35.000Z" - }, - "end": { - "$date": "2021-07-23T00:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96c49425-0bed-47f4-9622-f1e3676f11d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T00:16:27.000Z" - }, - "end": { - "$date": "2021-07-23T00:52:04.000Z" - }, - "events": [ - { - "uuid": "25a37a61-e4bb-425a-ba0f-e76732aa999f", - "start": { - "$date": "2021-07-23T00:16:27.000Z" - }, - "end": { - "$date": "2021-07-23T00:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c793372b-7593-42e5-a121-987764df1843", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T01:03:01.000Z" - }, - "end": { - "$date": "2021-07-23T01:24:27.000Z" - }, - "events": [ - { - "uuid": "4270c19c-01eb-48ac-8553-82cc754674a2", - "start": { - "$date": "2021-07-23T01:03:01.000Z" - }, - "end": { - "$date": "2021-07-23T01:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "93a510e6-26bc-4e56-8f2c-c691d6845de4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-23T00:58:22.000Z" - }, - "end": { - "$date": "2021-07-23T01:04:48.000Z" - }, - "events": [ - { - "uuid": "fc603895-918f-47a3-ac1d-76c1b6be2375", - "start": { - "$date": "2021-07-23T00:58:22.000Z" - }, - "end": { - "$date": "2021-07-23T01:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "311e8d36-aa5e-4165-8a45-4846a7679b48", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T01:03:02.000Z" - }, - "end": { - "$date": "2021-07-23T01:24:36.000Z" - }, - "events": [ - { - "uuid": "943d3a3e-06e4-4344-a1e1-1d2877e78768", - "start": { - "$date": "2021-07-23T01:03:02.000Z" - }, - "end": { - "$date": "2021-07-23T01:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a7e0b625-e114-40ef-8301-38ebc53e24cc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T01:24:18.000Z" - }, - "end": { - "$date": "2021-07-23T01:41:18.000Z" - }, - "events": [ - { - "uuid": "c8f25b02-47bc-47d0-ae5f-537b2fdd431d", - "start": { - "$date": "2021-07-23T01:24:18.000Z" - }, - "end": { - "$date": "2021-07-23T01:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28aa2730-3a39-4b98-84f1-8655ef52a524", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T01:33:46.000Z" - }, - "end": { - "$date": "2021-07-23T01:33:52.000Z" - }, - "events": [ - { - "uuid": "29ec477f-7e1d-432f-9340-70892ac3e60a", - "start": { - "$date": "2021-07-23T01:33:46.000Z" - }, - "end": { - "$date": "2021-07-23T01:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76d70418-a306-4207-9abd-3c7e94d739b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T01:33:53.000Z" - }, - "end": { - "$date": "2021-07-23T03:48:37.000Z" - }, - "events": [ - { - "uuid": "0d25881b-f3b5-4111-941d-61b91ccb44be", - "start": { - "$date": "2021-07-23T01:33:53.000Z" - }, - "end": { - "$date": "2021-07-23T03:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fcbc749a-ab6b-4285-b01e-ff195d83fb03", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-23T01:38:42.000Z" - }, - "end": { - "$date": "2021-07-23T04:43:16.000Z" - }, - "events": [ - { - "uuid": "4c60739f-89aa-4dc5-8e09-b524061037c7", - "start": { - "$date": "2021-07-23T01:38:42.000Z" - }, - "end": { - "$date": "2021-07-23T04:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e5cfbc01-9158-44d7-bf4d-f7a6f75e806f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-23T01:40:56.000Z" - }, - "end": { - "$date": "2021-07-23T06:09:01.000Z" - }, - "events": [ - { - "uuid": "ffc9218d-2e4e-464f-862c-768c0fb5c479", - "start": { - "$date": "2021-07-23T01:40:56.000Z" - }, - "end": { - "$date": "2021-07-23T06:09:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0d873dd4-785a-46ba-a5eb-c11e16f88550", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-23T01:41:31.000Z" - }, - "end": { - "$date": "2021-07-23T03:36:51.000Z" - }, - "events": [ - { - "uuid": "f30c3f4e-5f3e-4c82-aa46-1e11291cf638", - "start": { - "$date": "2021-07-23T01:41:31.000Z" - }, - "end": { - "$date": "2021-07-23T02:32:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c681eda-c8bc-406d-8338-3aed8311718d", - "start": { - "$date": "2021-07-23T02:32:31.000Z" - }, - "end": { - "$date": "2021-07-23T02:37:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "099b1bd4-a7cd-42fa-a35e-6c420716d51d", - "start": { - "$date": "2021-07-23T02:37:31.000Z" - }, - "end": { - "$date": "2021-07-23T02:47:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "afddb745-0510-4870-9c85-0488faf97318", - "start": { - "$date": "2021-07-23T02:47:31.000Z" - }, - "end": { - "$date": "2021-07-23T03:36:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "292a2e48-4a36-43bf-8001-603616bbecba", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T01:41:34.000Z" - }, - "end": { - "$date": "2021-07-23T01:44:33.000Z" - }, - "events": [ - { - "uuid": "0753e413-e709-414b-b2b0-aadf4df52178", - "start": { - "$date": "2021-07-23T01:41:34.000Z" - }, - "end": { - "$date": "2021-07-23T01:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "048e55e6-0080-4782-a49a-3185ae9b7212", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T01:43:38.000Z" - }, - "end": { - "$date": "2021-07-23T02:34:21.000Z" - }, - "events": [ - { - "uuid": "111c158f-7dfa-45c8-9745-686961834933", - "start": { - "$date": "2021-07-23T01:43:38.000Z" - }, - "end": { - "$date": "2021-07-23T02:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "12e1b977-ffc6-4c3f-93d6-3424eb7dcae1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T01:45:44.000Z" - }, - "end": { - "$date": "2021-07-23T03:49:01.000Z" - }, - "events": [ - { - "uuid": "58c61e3b-59e6-4a62-b8b6-4adb4349a20d", - "start": { - "$date": "2021-07-23T01:45:44.000Z" - }, - "end": { - "$date": "2021-07-23T03:49:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a96fa5f3-3445-4e29-ac87-8ea682b71ea0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-23T03:26:12.000Z" - }, - "end": { - "$date": "2021-07-23T04:09:58.000Z" - }, - "events": [ - { - "uuid": "f4522350-605a-44d3-b6b7-32bafcf64e7c", - "start": { - "$date": "2021-07-23T03:26:12.000Z" - }, - "end": { - "$date": "2021-07-23T04:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5a0ed6b3-7c84-4e1f-b888-6630a0e55cdf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T03:49:11.000Z" - }, - "end": { - "$date": "2021-07-23T03:58:54.000Z" - }, - "events": [ - { - "uuid": "c7bd9103-9800-4548-89b3-20dc0df79ec5", - "start": { - "$date": "2021-07-23T03:49:11.000Z" - }, - "end": { - "$date": "2021-07-23T03:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b1727b1e-e8e6-4a87-bc65-f249eb50eac0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-23T04:02:01.000Z" - }, - "end": { - "$date": "2021-07-23T05:30:23.000Z" - }, - "events": [ - { - "uuid": "9b2dba9c-de11-4249-810f-96388af40bcd", - "start": { - "$date": "2021-07-23T04:02:01.000Z" - }, - "end": { - "$date": "2021-07-23T05:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "26e9eed1-55f7-440f-b57e-3d97a4db5a91", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T04:02:10.000Z" - }, - "end": { - "$date": "2021-07-23T05:32:32.000Z" - }, - "events": [ - { - "uuid": "9421df8b-f22f-4cd5-ab2e-d26763f2db7a", - "start": { - "$date": "2021-07-23T04:02:10.000Z" - }, - "end": { - "$date": "2021-07-23T05:32:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30c6111b-0165-4202-96e4-e044bbf8be08", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-23T04:18:43.000Z" - }, - "end": { - "$date": "2021-07-23T04:58:11.000Z" - }, - "events": [ - { - "uuid": "1ad3e07e-1c94-453a-a98b-5e7b0d47b98c", - "start": { - "$date": "2021-07-23T04:18:43.000Z" - }, - "end": { - "$date": "2021-07-23T04:58:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b1c38bd5-fda7-42e0-bc46-51f5ebae817d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-23T04:26:59.000Z" - }, - "end": { - "$date": "2021-07-23T06:05:39.000Z" - }, - "events": [ - { - "uuid": "432091b3-aa27-4270-9316-b8b55813206a", - "start": { - "$date": "2021-07-23T04:26:59.000Z" - }, - "end": { - "$date": "2021-07-23T06:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afe13965-796f-46eb-9e7f-40393da8f595", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-23T05:18:25.000Z" - }, - "end": { - "$date": "2021-07-23T05:44:51.000Z" - }, - "events": [ - { - "uuid": "1ce2a544-189f-4d2a-9df3-2e4d9da21b66", - "start": { - "$date": "2021-07-23T05:18:25.000Z" - }, - "end": { - "$date": "2021-07-23T05:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3350b4ac-af40-4ac3-9544-f8dcfe7ebe13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T05:22:06.000Z" - }, - "end": { - "$date": "2021-07-23T05:48:42.000Z" - }, - "events": [ - { - "uuid": "8ab05337-9c73-4f78-ae6a-89deed9a1de0", - "start": { - "$date": "2021-07-23T05:22:06.000Z" - }, - "end": { - "$date": "2021-07-23T05:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "89bf3b37-53ae-4656-8dd8-9166b923d70d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T07:10:53.000Z" - }, - "end": { - "$date": "2021-07-23T07:13:23.000Z" - }, - "events": [ - { - "uuid": "0264c37f-1908-4630-a29f-4a9e2d8927e5", - "start": { - "$date": "2021-07-23T07:10:53.000Z" - }, - "end": { - "$date": "2021-07-23T07:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ab58e44-5027-4f72-bd9c-c5a4c2e7677c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T06:01:28.000Z" - }, - "end": { - "$date": "2021-07-23T06:17:20.000Z" - }, - "events": [ - { - "uuid": "ab407421-1665-451e-8bfa-4b455dd2e407", - "start": { - "$date": "2021-07-23T06:01:28.000Z" - }, - "end": { - "$date": "2021-07-23T06:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "991d22e0-a6d1-4315-9dcf-913dca5e4038", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-23T06:01:17.000Z" - }, - "end": { - "$date": "2021-07-23T06:17:03.000Z" - }, - "events": [ - { - "uuid": "67f4c3d8-8fd6-4cae-be0b-029a85bbd201", - "start": { - "$date": "2021-07-23T06:01:17.000Z" - }, - "end": { - "$date": "2021-07-23T06:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "61b88e86-6362-4c38-b920-89eac1529216", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-23T06:11:14.000Z" - }, - "end": { - "$date": "2021-07-23T07:32:37.000Z" - }, - "events": [ - { - "uuid": "fdcca419-1716-4852-b327-03acdac91067", - "start": { - "$date": "2021-07-23T06:11:14.000Z" - }, - "end": { - "$date": "2021-07-23T07:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0611a1ec-43ca-4e3a-9ca0-330994e3d315", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T06:35:33.000Z" - }, - "end": { - "$date": "2021-07-23T06:56:50.000Z" - }, - "events": [ - { - "uuid": "c031e51a-aa1b-4b4d-92ab-965f05291120", - "start": { - "$date": "2021-07-23T06:35:33.000Z" - }, - "end": { - "$date": "2021-07-23T06:56:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c27d6cd4-70a3-4913-bdcd-cc1a11688c36", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-23T06:51:21.000Z" - }, - "end": { - "$date": "2021-07-23T06:58:02.000Z" - }, - "events": [ - { - "uuid": "98163137-f018-432e-86a8-9bcf36abb303", - "start": { - "$date": "2021-07-23T06:51:21.000Z" - }, - "end": { - "$date": "2021-07-23T06:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d8f53959-6ebc-45a6-83e9-4d3118e1705f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-23T14:24:43.000Z" - }, - "end": { - "$date": "2021-07-23T15:48:28.000Z" - }, - "events": [ - { - "uuid": "6633e19d-24d3-4f70-9ae3-4835ea40c432", - "start": { - "$date": "2021-07-23T14:24:43.000Z" - }, - "end": { - "$date": "2021-07-23T15:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "2aea2d6b-1ff3-4b25-a674-af539a7493cc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-23T14:45:06.000Z" - }, - "end": { - "$date": "2021-07-23T15:55:24.000Z" - }, - "events": [ - { - "uuid": "049b422d-e004-44bc-88db-74406053cec4", - "start": { - "$date": "2021-07-23T14:45:06.000Z" - }, - "end": { - "$date": "2021-07-23T15:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1562bead-4ad0-4f07-9dc5-6a888cb70250", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-23T15:54:58.000Z" - }, - "end": { - "$date": "2021-07-23T16:21:40.000Z" - }, - "events": [ - { - "uuid": "d7f23ba9-55b8-41f4-9969-042e87078c86", - "start": { - "$date": "2021-07-23T15:54:58.000Z" - }, - "end": { - "$date": "2021-07-23T16:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76a4cf06-91ec-495f-962e-19a9638352b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T16:11:58.000Z" - }, - "end": { - "$date": "2021-07-23T16:28:28.000Z" - }, - "events": [ - { - "uuid": "cf46f8c0-be0a-47c7-983b-99374466da2e", - "start": { - "$date": "2021-07-23T16:11:58.000Z" - }, - "end": { - "$date": "2021-07-23T16:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89236ced-9289-488c-8e81-7ce8eec53f80", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T16:18:59.000Z" - }, - "end": { - "$date": "2021-07-23T16:43:25.000Z" - }, - "events": [ - { - "uuid": "2a0a09a6-6748-4906-9671-c987e8a3b78e", - "start": { - "$date": "2021-07-23T16:18:59.000Z" - }, - "end": { - "$date": "2021-07-23T16:43:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a5fb624-85ff-40e3-aa77-bad8d5b1c233", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T17:08:19.000Z" - }, - "end": { - "$date": "2021-07-23T17:37:00.000Z" - }, - "events": [ - { - "uuid": "0873fbd9-215a-48e6-8f67-26c7f260865f", - "start": { - "$date": "2021-07-23T17:08:19.000Z" - }, - "end": { - "$date": "2021-07-23T17:28:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea897db3-7dcd-47c1-80e6-b36a6e9f91f8", - "start": { - "$date": "2021-07-23T17:28:19.000Z" - }, - "end": { - "$date": "2021-07-23T17:41:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cfc2058c-3cef-4dd4-9e47-e81f903a47fa", - "start": { - "$date": "2021-07-23T17:41:19.000Z" - }, - "end": { - "$date": "2021-07-23T17:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dfac1cb-58e2-4355-a89a-7e580b2982b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T16:51:25.000Z" - }, - "end": { - "$date": "2021-07-23T17:32:50.000Z" - }, - "events": [ - { - "uuid": "154d263c-42d8-4f63-b4a5-0aa61d4c2b1d", - "start": { - "$date": "2021-07-23T16:51:25.000Z" - }, - "end": { - "$date": "2021-07-23T17:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "93bfa1d0-4ca5-4af7-adf6-1ceeaf3cebc5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-23T17:00:40.000Z" - }, - "end": { - "$date": "2021-07-23T17:42:22.000Z" - }, - "events": [ - { - "uuid": "9cb88fd6-c089-4e33-b41f-d3c6fdc38004", - "start": { - "$date": "2021-07-23T17:00:40.000Z" - }, - "end": { - "$date": "2021-07-23T17:11:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "157c5f6d-c072-4f8e-aeaa-a88f55a85204", - "start": { - "$date": "2021-07-23T17:11:40.000Z" - }, - "end": { - "$date": "2021-07-23T17:15:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d0f528e-196d-4dca-a61f-0d4db40d1374", - "start": { - "$date": "2021-07-23T17:15:40.000Z" - }, - "end": { - "$date": "2021-07-23T17:26:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f78f71f-57ce-4147-be29-484e4f77456d", - "start": { - "$date": "2021-07-23T17:26:40.000Z" - }, - "end": { - "$date": "2021-07-23T17:42:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a1e69230-3918-4215-a310-06f9add49d79", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-23T17:20:33.000Z" - }, - "end": { - "$date": "2021-07-23T17:48:37.000Z" - }, - "events": [ - { - "uuid": "5202690e-b8de-4219-8928-e543609ea7a1", - "start": { - "$date": "2021-07-23T17:20:33.000Z" - }, - "end": { - "$date": "2021-07-23T17:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48fb0725-b6c4-4efc-bb3b-5809840cb147", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-23T17:42:13.000Z" - }, - "end": { - "$date": "2021-07-23T18:05:46.000Z" - }, - "events": [ - { - "uuid": "667e37f1-256f-4903-a006-36cdb7fd914f", - "start": { - "$date": "2021-07-23T17:42:13.000Z" - }, - "end": { - "$date": "2021-07-23T18:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "130c849d-3970-4b54-8c90-a32e9e851b56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T17:42:06.000Z" - }, - "end": { - "$date": "2021-07-23T18:05:36.000Z" - }, - "events": [ - { - "uuid": "77b3a3cc-be8c-415f-ae9a-5b6afa32120a", - "start": { - "$date": "2021-07-23T17:42:06.000Z" - }, - "end": { - "$date": "2021-07-23T18:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3c037d73-69e1-4449-ab17-36a4c7ff350e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-23T17:20:33.000Z" - }, - "end": { - "$date": "2021-07-23T18:00:38.000Z" - }, - "events": [ - { - "uuid": "f55b54e7-3fcb-44d1-8077-ed8593adc730", - "start": { - "$date": "2021-07-23T17:20:33.000Z" - }, - "end": { - "$date": "2021-07-23T18:00:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f43e0415-aa67-4ac5-92a7-7a367c51a87e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T18:41:35.000Z" - }, - "end": { - "$date": "2021-07-23T18:48:25.000Z" - }, - "events": [ - { - "uuid": "d9d838da-aadd-42ba-aa71-93dcbd57c345", - "start": { - "$date": "2021-07-23T18:41:35.000Z" - }, - "end": { - "$date": "2021-07-23T18:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "d6b5029c-3e19-4db6-ade7-bd85bf356b92", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-23T20:43:49.000Z" - }, - "end": { - "$date": "2021-07-23T20:44:33.000Z" - }, - "events": [ - { - "uuid": "ba4b5183-9b96-4da5-9443-ed73f6044bed", - "start": { - "$date": "2021-07-23T20:43:49.000Z" - }, - "end": { - "$date": "2021-07-23T20:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2c02a29e-e33b-48f9-a4d9-e8bd7356c945", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-23T19:13:31.000Z" - }, - "end": { - "$date": "2021-07-23T19:38:13.000Z" - }, - "events": [ - { - "uuid": "e4ce2109-9a95-47e1-adfe-1c0ffbaab482", - "start": { - "$date": "2021-07-23T19:13:31.000Z" - }, - "end": { - "$date": "2021-07-23T19:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "80704e73-a0ed-4cdc-981c-ca7c61631c18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-23T19:22:42.000Z" - }, - "end": { - "$date": "2021-07-23T19:53:13.000Z" - }, - "events": [ - { - "uuid": "ff085ab0-a4ed-4108-bfb1-9e90b6f1669f", - "start": { - "$date": "2021-07-23T19:22:42.000Z" - }, - "end": { - "$date": "2021-07-23T19:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "0b1c953c-a682-40e9-8c1a-05b637b7b35c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-23T19:33:41.000Z" - }, - "end": { - "$date": "2021-07-23T19:43:27.000Z" - }, - "events": [ - { - "uuid": "78efbff3-6e85-4362-8144-957c73663fab", - "start": { - "$date": "2021-07-23T19:33:41.000Z" - }, - "end": { - "$date": "2021-07-23T19:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b8767964-b0bc-4fb0-a4f1-6c9ffd59e945", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-23T20:06:56.000Z" - }, - "end": { - "$date": "2021-07-23T20:56:07.000Z" - }, - "events": [ - { - "uuid": "c2fb138e-ceb4-437e-aa2f-c3aa86f11cda", - "start": { - "$date": "2021-07-23T20:06:56.000Z" - }, - "end": { - "$date": "2021-07-23T20:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "c8daae5d-f276-40e1-b747-64a5efc37c48", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-23T20:08:55.000Z" - }, - "end": { - "$date": "2021-07-23T20:54:46.000Z" - }, - "events": [ - { - "uuid": "2444a09b-0ce4-4cae-b327-2187eeead60f", - "start": { - "$date": "2021-07-23T20:08:55.000Z" - }, - "end": { - "$date": "2021-07-23T20:54:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "eec9b523-bedb-40bf-8e4a-f50eacfcff38", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-23T22:19:47.000Z" - }, - "end": { - "$date": "2021-07-23T23:18:25.000Z" - }, - "events": [ - { - "uuid": "4e041a9f-4f88-43b3-a673-a9f022b21d9c", - "start": { - "$date": "2021-07-23T22:19:47.000Z" - }, - "end": { - "$date": "2021-07-23T23:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a12161da-1be7-4071-a86a-ce93d385c211", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-23T22:29:43.000Z" - }, - "end": { - "$date": "2021-07-24T01:59:37.000Z" - }, - "events": [ - { - "uuid": "1f90e15d-300f-4e49-89e5-57b914d3f11f", - "start": { - "$date": "2021-07-23T22:29:43.000Z" - }, - "end": { - "$date": "2021-07-24T01:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "7f2084f7-3be3-4c80-90f3-c58a6e86f26d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-24T07:36:11.000Z" - }, - "end": { - "$date": "2021-07-24T07:36:15.000Z" - }, - "events": [ - { - "uuid": "e7551aad-964c-4acc-856d-fe196f4a2e62", - "start": { - "$date": "2021-07-24T07:36:11.000Z" - }, - "end": { - "$date": "2021-07-24T07:36:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "98e9c20f-db0d-4790-8646-6ecd30f3b82e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T00:15:43.000Z" - }, - "end": { - "$date": "2021-07-24T00:18:44.000Z" - }, - "events": [ - { - "uuid": "28e3495c-f769-4418-846a-0dfffc1d0156", - "start": { - "$date": "2021-07-24T00:15:43.000Z" - }, - "end": { - "$date": "2021-07-24T00:18:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "0cf4ae46-0849-48b6-b989-868f9025a0ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T00:20:53.000Z" - }, - "end": { - "$date": "2021-07-24T00:30:40.000Z" - }, - "events": [ - { - "uuid": "2d141f6a-e596-4eae-9b1c-0078df494dc0", - "start": { - "$date": "2021-07-24T00:20:53.000Z" - }, - "end": { - "$date": "2021-07-24T00:30:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "ecf7a6ec-14e9-4106-81b1-6abfafc9482f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T00:30:45.000Z" - }, - "end": { - "$date": "2021-07-24T00:32:20.000Z" - }, - "events": [ - { - "uuid": "cb994280-113e-471f-bff0-c160a5ae150e", - "start": { - "$date": "2021-07-24T00:30:45.000Z" - }, - "end": { - "$date": "2021-07-24T00:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "1eeb1229-ba78-497c-b1e0-57dba9f8c931", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T00:32:30.000Z" - }, - "end": { - "$date": "2021-07-24T01:40:10.000Z" - }, - "events": [ - { - "uuid": "0b8cbe44-f49c-45c7-ac92-8a9bafbad699", - "start": { - "$date": "2021-07-24T00:32:30.000Z" - }, - "end": { - "$date": "2021-07-24T01:40:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fd37914f-6002-488a-ab6d-5996f4401b52", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-24T01:18:02.000Z" - }, - "end": { - "$date": "2021-07-24T05:49:34.000Z" - }, - "events": [ - { - "uuid": "97987e0c-a074-4878-8fcd-71773b641ac0", - "start": { - "$date": "2021-07-24T01:18:02.000Z" - }, - "end": { - "$date": "2021-07-24T01:30:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b56625b3-ffbd-4fa3-ab23-0e3687176ed6", - "start": { - "$date": "2021-07-24T01:30:02.000Z" - }, - "end": { - "$date": "2021-07-24T01:48:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99317d9c-f737-44da-9df0-fd16a9115762", - "start": { - "$date": "2021-07-24T01:48:02.000Z" - }, - "end": { - "$date": "2021-07-24T05:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b5dcc42-e95a-40a6-bf2a-e1ff08e28ade", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T01:28:41.000Z" - }, - "end": { - "$date": "2021-07-24T01:53:43.000Z" - }, - "events": [ - { - "uuid": "451e08ba-6c72-4a50-9a7c-5f6ec3080241", - "start": { - "$date": "2021-07-24T01:28:41.000Z" - }, - "end": { - "$date": "2021-07-24T01:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", - "uuid": "3fa41bda-2fbc-45f8-8491-a8311141d6ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T01:41:44.000Z" - }, - "end": { - "$date": "2021-07-24T01:45:45.000Z" - }, - "events": [ - { - "uuid": "73be7420-cc2e-4a50-8390-373cd9dd145b", - "start": { - "$date": "2021-07-24T01:41:44.000Z" - }, - "end": { - "$date": "2021-07-24T01:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a1998ca3-d9dc-46ae-9452-5ec4737904b4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T01:52:51.000Z" - }, - "end": { - "$date": "2021-07-24T02:51:36.000Z" - }, - "events": [ - { - "uuid": "89ba1d49-638e-4633-be5a-e2934da43d48", - "start": { - "$date": "2021-07-24T01:52:51.000Z" - }, - "end": { - "$date": "2021-07-24T02:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "c5f28bce-62f4-4a69-aa64-ffc2a35435fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T01:54:10.000Z" - }, - "end": { - "$date": "2021-07-24T02:53:35.000Z" - }, - "events": [ - { - "uuid": "2679897a-a7f0-46a8-b596-9f291345049c", - "start": { - "$date": "2021-07-24T01:54:10.000Z" - }, - "end": { - "$date": "2021-07-24T02:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57d0bebe-ec88-4aa9-9c21-2ff1c4904674", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T01:58:14.000Z" - }, - "end": { - "$date": "2021-07-24T02:29:13.000Z" - }, - "events": [ - { - "uuid": "a640dba5-c277-406c-90f4-2e6b40f61135", - "start": { - "$date": "2021-07-24T01:58:14.000Z" - }, - "end": { - "$date": "2021-07-24T02:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "932a388d-1541-48c6-a923-0d94bbdb82ae", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-24T02:02:25.000Z" - }, - "end": { - "$date": "2021-07-24T02:49:56.000Z" - }, - "events": [ - { - "uuid": "c3d6ae9a-6a77-48cd-9c28-8b4227bfc143", - "start": { - "$date": "2021-07-24T02:02:25.000Z" - }, - "end": { - "$date": "2021-07-24T02:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "b9a3d62f-55a3-40a9-97e3-e8ed1b7d28d1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-24T02:22:53.000Z" - }, - "end": { - "$date": "2021-07-24T02:37:09.000Z" - }, - "events": [ - { - "uuid": "36a310da-3faa-4744-9f72-aedf9a8f46aa", - "start": { - "$date": "2021-07-24T02:22:53.000Z" - }, - "end": { - "$date": "2021-07-24T02:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9f0c3ce2-391c-4b5f-8898-87b61d753f30", - "uuid": "0b1c2e7d-a5cc-4cc0-a31e-44d24e5e292f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-24T02:53:47.000Z" - }, - "end": { - "$date": "2021-07-24T03:00:02.000Z" - }, - "events": [ - { - "uuid": "ce0ce397-9b6e-46a9-8618-55dc72eeec9f", - "start": { - "$date": "2021-07-24T02:53:47.000Z" - }, - "end": { - "$date": "2021-07-24T03:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "156f6717-956f-44c5-aa53-5958509834fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T02:56:44.000Z" - }, - "end": { - "$date": "2021-07-24T02:57:05.000Z" - }, - "events": [ - { - "uuid": "253864d7-5460-4233-a55c-f0217532f900", - "start": { - "$date": "2021-07-24T02:56:44.000Z" - }, - "end": { - "$date": "2021-07-24T02:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9a847a7c-8699-4dcd-bb48-9419626fa555", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-24T03:02:03.000Z" - }, - "end": { - "$date": "2021-07-24T03:20:24.000Z" - }, - "events": [ - { - "uuid": "a50ef8f6-77d1-4635-bfb0-614b3f408c83", - "start": { - "$date": "2021-07-24T03:02:03.000Z" - }, - "end": { - "$date": "2021-07-24T03:20:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "44301f6b-e8e7-4b01-ac04-4e4dabcb4faf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T03:02:15.000Z" - }, - "end": { - "$date": "2021-07-24T03:05:14.000Z" - }, - "events": [ - { - "uuid": "f56cdf7e-bc2a-4112-ba82-4916c78011d3", - "start": { - "$date": "2021-07-24T03:02:15.000Z" - }, - "end": { - "$date": "2021-07-24T03:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "5fc82e30-6c12-442e-a56e-4589923c57a8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T03:02:15.000Z" - }, - "end": { - "$date": "2021-07-24T03:07:13.000Z" - }, - "events": [ - { - "uuid": "4deb9d96-e939-4e74-a6d6-4c6dd212c4e5", - "start": { - "$date": "2021-07-24T03:02:15.000Z" - }, - "end": { - "$date": "2021-07-24T03:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "c03185c8-00bc-4620-8e77-2293236e5835", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T03:08:00.000Z" - }, - "end": { - "$date": "2021-07-24T03:12:21.000Z" - }, - "events": [ - { - "uuid": "8a0595b4-5d05-48e1-91c9-0b47794b5b86", - "start": { - "$date": "2021-07-24T03:08:00.000Z" - }, - "end": { - "$date": "2021-07-24T03:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6b91186-04ef-49e6-ab2e-6a8a269aac9d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-24T03:17:21.000Z" - }, - "end": { - "$date": "2021-07-24T03:51:06.000Z" - }, - "events": [ - { - "uuid": "5eae8548-8ef9-4d4d-8fe7-fed570859c8b", - "start": { - "$date": "2021-07-24T03:17:21.000Z" - }, - "end": { - "$date": "2021-07-24T03:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "2f699650-bd1c-4a5b-ba3d-c5364506fd45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T03:13:29.000Z" - }, - "end": { - "$date": "2021-07-24T03:15:17.000Z" - }, - "events": [ - { - "uuid": "83a2617b-08a6-4055-8a1b-9c3e5990f449", - "start": { - "$date": "2021-07-24T03:13:29.000Z" - }, - "end": { - "$date": "2021-07-24T03:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "1e8fd3d1-896f-452d-a9f6-902af4e694e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T02:54:54.000Z" - }, - "end": { - "$date": "2021-07-24T03:49:13.000Z" - }, - "events": [ - { - "uuid": "5a71b671-ad03-4ca9-8e20-7b619ecc440b", - "start": { - "$date": "2021-07-24T02:54:54.000Z" - }, - "end": { - "$date": "2021-07-24T03:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "117b5cbb-1361-4990-ae04-8e0edb5c8f31", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-24T03:29:12.000Z" - }, - "end": { - "$date": "2021-07-24T06:08:41.000Z" - }, - "events": [ - { - "uuid": "2574b957-7000-46db-9bb6-4f87ce1317ec", - "start": { - "$date": "2021-07-24T03:29:12.000Z" - }, - "end": { - "$date": "2021-07-24T06:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "622b7739-192b-46a2-b65b-f7f75e364316", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-24T03:51:00.000Z" - }, - "end": { - "$date": "2021-07-24T03:57:40.000Z" - }, - "events": [ - { - "uuid": "a9028bf8-4e21-4db8-96be-5ef7df301662", - "start": { - "$date": "2021-07-24T03:51:00.000Z" - }, - "end": { - "$date": "2021-07-24T03:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49fc8582-8580-49ad-a77f-ec9fa86a2adc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-24T04:03:42.000Z" - }, - "end": { - "$date": "2021-07-24T04:42:14.000Z" - }, - "events": [ - { - "uuid": "9e4b2643-0712-4605-8dc8-5646f4960c68", - "start": { - "$date": "2021-07-24T04:03:42.000Z" - }, - "end": { - "$date": "2021-07-24T04:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d3c6234d-601e-4a70-a8bd-6f65d87b089b", - "uuid": "a7adf7ce-3ef2-4292-a99a-23ef0b80aa4e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T03:54:09.000Z" - }, - "end": { - "$date": "2021-07-24T04:16:55.000Z" - }, - "events": [ - { - "uuid": "b15d8b27-8f70-4da4-9446-708e25acdaec", - "start": { - "$date": "2021-07-24T03:54:09.000Z" - }, - "end": { - "$date": "2021-07-24T04:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6188a09a-98b9-4b37-9608-f1e3daee5b58", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T04:23:09.000Z" - }, - "end": { - "$date": "2021-07-24T05:56:58.000Z" - }, - "events": [ - { - "uuid": "2d044bce-4987-4738-bbbc-6ea56160c412", - "start": { - "$date": "2021-07-24T04:23:09.000Z" - }, - "end": { - "$date": "2021-07-24T05:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "000cf836-c2a2-4651-b73c-33df15951c4e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-24T05:58:38.000Z" - }, - "end": { - "$date": "2021-07-24T06:26:15.000Z" - }, - "events": [ - { - "uuid": "d050f851-f335-4019-8220-2735fb1713c3", - "start": { - "$date": "2021-07-24T05:58:38.000Z" - }, - "end": { - "$date": "2021-07-24T06:23:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c01e7ed-03ce-418d-b773-f651a3fed308", - "start": { - "$date": "2021-07-24T06:23:38.000Z" - }, - "end": { - "$date": "2021-07-24T06:36:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32ffcca2-ef34-4d65-9563-f4031139b56d", - "start": { - "$date": "2021-07-24T06:36:38.000Z" - }, - "end": { - "$date": "2021-07-24T07:02:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "17f6e050-1a56-4f34-bfdf-f452e9264145", - "start": { - "$date": "2021-07-24T07:02:38.000Z" - }, - "end": { - "$date": "2021-07-24T07:08:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e76c418-9e82-492f-b54d-9a6739214a67", - "start": { - "$date": "2021-07-24T07:08:38.000Z" - }, - "end": { - "$date": "2021-07-24T06:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8288cb84-6ab2-47fb-ae2f-1eaeb168f86d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T05:15:39.000Z" - }, - "end": { - "$date": "2021-07-24T05:17:12.000Z" - }, - "events": [ - { - "uuid": "7b2b8226-9e70-450a-9aee-3462b06e86db", - "start": { - "$date": "2021-07-24T05:15:39.000Z" - }, - "end": { - "$date": "2021-07-24T05:17:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1239dd23-3834-46c5-bb56-06512c05a2c1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T05:17:34.000Z" - }, - "end": { - "$date": "2021-07-24T05:23:17.000Z" - }, - "events": [ - { - "uuid": "6d524f38-9243-4e1c-9a12-f497624e0579", - "start": { - "$date": "2021-07-24T05:17:34.000Z" - }, - "end": { - "$date": "2021-07-24T05:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a27b9ef-84bf-47b6-989a-1413138d43db", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-24T05:20:02.000Z" - }, - "end": { - "$date": "2021-07-24T07:50:28.000Z" - }, - "events": [ - { - "uuid": "2cbd18a2-4b51-4df2-9c44-0d986ff4d84e", - "start": { - "$date": "2021-07-24T05:20:02.000Z" - }, - "end": { - "$date": "2021-07-24T07:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68cf145a-0d42-4e83-8ab3-279acb186580", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T05:23:45.000Z" - }, - "end": { - "$date": "2021-07-24T06:30:52.000Z" - }, - "events": [ - { - "uuid": "c50581e0-6c54-4783-9a07-9d03db486fb0", - "start": { - "$date": "2021-07-24T05:23:45.000Z" - }, - "end": { - "$date": "2021-07-24T06:30:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3386e3dc-6d48-4580-bb18-f5c382b3705b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-24T05:47:57.000Z" - }, - "end": { - "$date": "2021-07-24T06:29:53.000Z" - }, - "events": [ - { - "uuid": "4b9b53e8-90a4-432a-8162-22b2bad707b7", - "start": { - "$date": "2021-07-24T05:47:57.000Z" - }, - "end": { - "$date": "2021-07-24T06:29:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f44b6aa-ea35-484e-afc0-9fb14b4844f3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-24T05:49:44.000Z" - }, - "end": { - "$date": "2021-07-24T11:42:57.000Z" - }, - "events": [ - { - "uuid": "0c3e1571-f93e-4421-9aa4-ed903ce9c558", - "start": { - "$date": "2021-07-24T05:49:44.000Z" - }, - "end": { - "$date": "2021-07-24T06:42:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef6bb715-7436-49f9-89c4-13678e5859cd", - "start": { - "$date": "2021-07-24T06:42:44.000Z" - }, - "end": { - "$date": "2021-07-24T06:47:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7cb188f3-fdbb-4827-abb1-131b670b740c", - "start": { - "$date": "2021-07-24T06:47:44.000Z" - }, - "end": { - "$date": "2021-07-24T06:57:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60a17378-3698-4383-ac24-f9390951771f", - "start": { - "$date": "2021-07-24T06:57:44.000Z" - }, - "end": { - "$date": "2021-07-24T06:59:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61cbc23f-275b-4b4b-90b0-eeb3affcaf0d", - "start": { - "$date": "2021-07-24T06:59:44.000Z" - }, - "end": { - "$date": "2021-07-24T09:43:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "faf5fea0-e9af-4845-bc61-7b3289d520cb", - "start": { - "$date": "2021-07-24T09:43:44.000Z" - }, - "end": { - "$date": "2021-07-24T09:47:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1e70a98-3857-452a-a483-54d346c46214", - "start": { - "$date": "2021-07-24T09:47:44.000Z" - }, - "end": { - "$date": "2021-07-24T11:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30c091e1-902e-4928-a997-f7bb29e28aed", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-24T06:36:14.000Z" - }, - "end": { - "$date": "2021-07-24T07:05:51.000Z" - }, - "events": [ - { - "uuid": "93a9ea1d-8e07-4894-8dca-e394a47ce8e5", - "start": { - "$date": "2021-07-24T06:36:14.000Z" - }, - "end": { - "$date": "2021-07-24T07:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c61e52b9-27d7-4cc3-916b-aa787d190b96", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T06:32:02.000Z" - }, - "end": { - "$date": "2021-07-24T07:50:32.000Z" - }, - "events": [ - { - "uuid": "c96ba8ed-d963-4b16-b889-dad97143b6ef", - "start": { - "$date": "2021-07-24T06:32:02.000Z" - }, - "end": { - "$date": "2021-07-24T07:50:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a56f824-3faa-4a93-aa07-bfa2a105a447", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-07-24T07:21:56.000Z" - }, - "end": { - "$date": "2021-07-24T08:02:20.000Z" - }, - "events": [ - { - "uuid": "2362092c-79aa-4f25-9573-d9f6a16d3b07", - "start": { - "$date": "2021-07-24T07:21:56.000Z" - }, - "end": { - "$date": "2021-07-24T08:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f6c767a7-2930-43d3-afc9-b46f56984769", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T07:52:14.000Z" - }, - "end": { - "$date": "2021-07-24T08:00:10.000Z" - }, - "events": [ - { - "uuid": "8000b8fb-5aa8-4bc1-ab27-5a83d4bc742b", - "start": { - "$date": "2021-07-24T07:52:14.000Z" - }, - "end": { - "$date": "2021-07-24T08:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "9f2c90b4-ad43-46c1-bf2f-8045e10564ef", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-24T14:27:01.000Z" - }, - "end": { - "$date": "2021-07-24T14:43:52.000Z" - }, - "events": [ - { - "uuid": "23c9eeb2-068c-4b24-a9ea-c61f1b31a715", - "start": { - "$date": "2021-07-24T14:27:01.000Z" - }, - "end": { - "$date": "2021-07-24T14:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "58da1ba9-82d5-42d6-8a82-3fdac8580a9d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T14:43:59.000Z" - }, - "end": { - "$date": "2021-07-24T17:24:11.000Z" - }, - "events": [ - { - "uuid": "2fd5760a-3f27-47ce-875d-09d5b313d07f", - "start": { - "$date": "2021-07-24T14:43:59.000Z" - }, - "end": { - "$date": "2021-07-24T17:14:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f51b72e-ecb8-4faa-9a56-fb2ed757c712", - "start": { - "$date": "2021-07-24T17:14:59.000Z" - }, - "end": { - "$date": "2021-07-24T17:19:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4beadf12-95f5-4ec8-b41d-059fc8857f8b", - "start": { - "$date": "2021-07-24T17:19:59.000Z" - }, - "end": { - "$date": "2021-07-24T17:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f39e4a4-bd35-484c-b576-03228c32e599", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T15:14:27.000Z" - }, - "end": { - "$date": "2021-07-24T15:17:23.000Z" - }, - "events": [ - { - "uuid": "7c4a7132-3328-41da-86ba-08a2f24b1a2b", - "start": { - "$date": "2021-07-24T15:14:27.000Z" - }, - "end": { - "$date": "2021-07-24T15:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "48028106-dbbb-4ffe-8dea-a3d52ba8ec80", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T15:22:29.000Z" - }, - "end": { - "$date": "2021-07-24T16:30:23.000Z" - }, - "events": [ - { - "uuid": "e6f7a441-c9ee-4f45-aaba-605551139b5c", - "start": { - "$date": "2021-07-24T15:22:29.000Z" - }, - "end": { - "$date": "2021-07-24T16:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f07dea7b-562c-4599-8950-b81dfb8c1565", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T16:34:53.000Z" - }, - "end": { - "$date": "2021-07-24T16:52:09.000Z" - }, - "events": [ - { - "uuid": "e788a5a0-2669-4f33-bc98-8b4c609af1aa", - "start": { - "$date": "2021-07-24T16:34:53.000Z" - }, - "end": { - "$date": "2021-07-24T16:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82742a39-2626-41b9-9f2d-d4fb0a2ea283", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T16:52:28.000Z" - }, - "end": { - "$date": "2021-07-24T17:06:19.000Z" - }, - "events": [ - { - "uuid": "41442b1a-10d8-422a-8dbe-b3b459d8e1d3", - "start": { - "$date": "2021-07-24T16:52:28.000Z" - }, - "end": { - "$date": "2021-07-24T17:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "3b7662ae-b369-428a-b7f3-64b591da7271", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-24T17:06:23.000Z" - }, - "end": { - "$date": "2021-07-24T17:35:36.000Z" - }, - "events": [ - { - "uuid": "b2cdadc5-54c0-4bdb-b776-7b5b2f1efe41", - "start": { - "$date": "2021-07-24T17:06:23.000Z" - }, - "end": { - "$date": "2021-07-24T17:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "0a002c00-eaa2-4adf-b243-84dbf407ea53", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T17:25:36.000Z" - }, - "end": { - "$date": "2021-07-24T18:16:38.000Z" - }, - "events": [ - { - "uuid": "0059a50e-b424-42f9-aff4-858308c7bf6b", - "start": { - "$date": "2021-07-24T17:25:36.000Z" - }, - "end": { - "$date": "2021-07-24T18:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "c32810bc-ba95-4803-b398-e022b73e93f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T18:28:25.000Z" - }, - "end": { - "$date": "2021-07-24T18:30:15.000Z" - }, - "events": [ - { - "uuid": "1ebf80bd-2175-42b4-a0be-f456cd52fc29", - "start": { - "$date": "2021-07-24T18:28:25.000Z" - }, - "end": { - "$date": "2021-07-24T18:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f27e2e76-bbe2-4cf9-9ff8-47540f3676ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-24T18:30:38.000Z" - }, - "end": { - "$date": "2021-07-24T21:10:14.000Z" - }, - "events": [ - { - "uuid": "7fee446c-962d-4d46-ba26-200168337d57", - "start": { - "$date": "2021-07-24T18:30:38.000Z" - }, - "end": { - "$date": "2021-07-24T21:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a8072bf-8d3e-4871-8035-ad54553e5e68", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T18:35:20.000Z" - }, - "end": { - "$date": "2021-07-24T19:00:37.000Z" - }, - "events": [ - { - "uuid": "41d1c458-a3cd-4671-a401-f10f3b66b39d", - "start": { - "$date": "2021-07-24T18:35:20.000Z" - }, - "end": { - "$date": "2021-07-24T19:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cc53a03d-7d53-43b8-a424-85983ef75b9f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-24T20:11:46.000Z" - }, - "end": { - "$date": "2021-07-24T20:59:46.000Z" - }, - "events": [ - { - "uuid": "8451b649-dfb8-4935-8d35-9a18e6e3a9ee", - "start": { - "$date": "2021-07-24T20:11:46.000Z" - }, - "end": { - "$date": "2021-07-24T20:27:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da83b23c-6374-40cf-bab2-7d8594b47427", - "start": { - "$date": "2021-07-24T20:27:46.000Z" - }, - "end": { - "$date": "2021-07-24T20:28:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6fe3a9ac-2bcd-4dde-9c3e-1a6d19e557cf", - "start": { - "$date": "2021-07-24T20:28:46.000Z" - }, - "end": { - "$date": "2021-07-24T20:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bc041257-304e-4956-8af9-ab51229d1234", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-24T20:29:43.000Z" - }, - "end": { - "$date": "2021-07-24T20:33:58.000Z" - }, - "events": [ - { - "uuid": "cb034629-39c6-42b5-b410-c2476c57e6c1", - "start": { - "$date": "2021-07-24T20:29:43.000Z" - }, - "end": { - "$date": "2021-07-24T20:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1dfda1ab-4f0e-4d1b-8aab-c404f4d7f90e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T21:06:31.000Z" - }, - "end": { - "$date": "2021-07-24T21:08:22.000Z" - }, - "events": [ - { - "uuid": "dd68f6e6-2ae4-4d26-88b6-acbc343b3b7f", - "start": { - "$date": "2021-07-24T21:06:31.000Z" - }, - "end": { - "$date": "2021-07-24T21:08:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab6a84aa-dfd4-4919-90c7-d6fdeabd02a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T21:11:41.000Z" - }, - "end": { - "$date": "2021-07-24T21:34:06.000Z" - }, - "events": [ - { - "uuid": "9433e00f-5849-444a-8b8a-597622ce8cf7", - "start": { - "$date": "2021-07-24T21:11:41.000Z" - }, - "end": { - "$date": "2021-07-24T21:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b03db8b1-76a6-414c-a08e-43d76a407898", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T21:13:12.000Z" - }, - "end": { - "$date": "2021-07-24T22:16:35.000Z" - }, - "events": [ - { - "uuid": "8b82accd-0820-4e94-9e25-35aae03794f0", - "start": { - "$date": "2021-07-24T21:13:12.000Z" - }, - "end": { - "$date": "2021-07-24T22:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56cfd8e9-377c-4801-a830-358a62ef2b4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T21:42:19.000Z" - }, - "end": { - "$date": "2021-07-24T22:08:23.000Z" - }, - "events": [ - { - "uuid": "d41cbed9-0f5a-40c3-b058-d360ae7aab26", - "start": { - "$date": "2021-07-24T21:42:19.000Z" - }, - "end": { - "$date": "2021-07-24T22:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57cea942-d105-451e-bb70-f27b58ea51c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-24T22:13:06.000Z" - }, - "end": { - "$date": "2021-07-24T22:45:15.000Z" - }, - "events": [ - { - "uuid": "4a6d189b-3e6f-48ed-8aa1-90685f37d8b0", - "start": { - "$date": "2021-07-24T22:13:06.000Z" - }, - "end": { - "$date": "2021-07-24T22:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "918d0674-4e94-4fb7-afca-7de0fdc679fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T22:17:20.000Z" - }, - "end": { - "$date": "2021-07-24T22:21:21.000Z" - }, - "events": [ - { - "uuid": "3a6e4531-57b4-47b0-9135-f89049abad7e", - "start": { - "$date": "2021-07-24T22:17:20.000Z" - }, - "end": { - "$date": "2021-07-24T22:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "276d0eec-875c-46c5-9427-eef1773b549f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T22:21:31.000Z" - }, - "end": { - "$date": "2021-07-24T22:36:48.000Z" - }, - "events": [ - { - "uuid": "9fe05948-3d70-4acc-adfb-0055d512dc45", - "start": { - "$date": "2021-07-24T22:21:31.000Z" - }, - "end": { - "$date": "2021-07-24T22:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4db08bab-c448-4279-ba60-b73fa405fbc2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-24T22:37:03.000Z" - }, - "end": { - "$date": "2021-07-25T01:04:09.000Z" - }, - "events": [ - { - "uuid": "c991f78d-58af-4f16-98bb-f72711b4616f", - "start": { - "$date": "2021-07-24T22:37:03.000Z" - }, - "end": { - "$date": "2021-07-25T01:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "90bc118b-5512-4464-a6ab-04d666de4512", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-24T23:34:38.000Z" - }, - "end": { - "$date": "2021-07-24T23:55:18.000Z" - }, - "events": [ - { - "uuid": "11f2ec61-08a3-46d4-87a9-2c7e88037673", - "start": { - "$date": "2021-07-24T23:34:38.000Z" - }, - "end": { - "$date": "2021-07-24T23:55:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a83239b-3e28-437f-bb0e-bb5d8d96031e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-25T00:01:32.000Z" - }, - "end": { - "$date": "2021-07-25T00:28:04.000Z" - }, - "events": [ - { - "uuid": "3498a228-d09d-452c-958f-3e952c3c174c", - "start": { - "$date": "2021-07-25T00:01:32.000Z" - }, - "end": { - "$date": "2021-07-25T00:28:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ccadf618-a60d-45c0-9add-24609dcfd016", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-25T00:33:08.000Z" - }, - "end": { - "$date": "2021-07-25T03:22:47.000Z" - }, - "events": [ - { - "uuid": "e512fbb7-d921-41c5-bd02-a22a343ba840", - "start": { - "$date": "2021-07-25T00:33:08.000Z" - }, - "end": { - "$date": "2021-07-25T01:00:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12be1005-d0fc-4d9a-9e41-465e2f6e735a", - "start": { - "$date": "2021-07-25T01:00:08.000Z" - }, - "end": { - "$date": "2021-07-25T01:12:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42d34669-db4a-4e00-a2a1-7afc0a50ecd6", - "start": { - "$date": "2021-07-25T01:12:08.000Z" - }, - "end": { - "$date": "2021-07-25T01:16:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dfa3a012-a343-4c89-beee-49c71b24c28b", - "start": { - "$date": "2021-07-25T01:16:08.000Z" - }, - "end": { - "$date": "2021-07-25T01:18:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5907143f-3357-4c64-9a1e-4b38c383e50f", - "start": { - "$date": "2021-07-25T01:18:08.000Z" - }, - "end": { - "$date": "2021-07-25T03:22:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7811057c-f510-42c9-b50e-70fb922bf8b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-25T01:28:44.000Z" - }, - "end": { - "$date": "2021-07-25T03:21:50.000Z" - }, - "events": [ - { - "uuid": "2d778404-23cb-4159-9924-40d2451a635d", - "start": { - "$date": "2021-07-25T01:28:44.000Z" - }, - "end": { - "$date": "2021-07-25T03:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "522132d5-bfe1-41ac-a0d3-7da59ab00b99", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-25T01:39:19.000Z" - }, - "end": { - "$date": "2021-07-25T03:22:06.000Z" - }, - "events": [ - { - "uuid": "7300f235-241c-4236-a559-252a775ed9df", - "start": { - "$date": "2021-07-25T01:39:19.000Z" - }, - "end": { - "$date": "2021-07-25T03:22:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7e6d552d-1e02-4dd5-8faf-2806e8e2d4cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-25T01:59:31.000Z" - }, - "end": { - "$date": "2021-07-25T02:10:37.000Z" - }, - "events": [ - { - "uuid": "160bda12-7f41-49f1-bd1e-d5d0ce7155a7", - "start": { - "$date": "2021-07-25T01:59:31.000Z" - }, - "end": { - "$date": "2021-07-25T02:10:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4341b86a-dff3-4029-aed0-826c7d9831e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-25T02:07:38.000Z" - }, - "end": { - "$date": "2021-07-25T05:13:56.000Z" - }, - "events": [ - { - "uuid": "504a0489-3bde-46a9-b696-e0987390ce94", - "start": { - "$date": "2021-07-25T02:07:38.000Z" - }, - "end": { - "$date": "2021-07-25T04:40:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1adff4cf-767e-4d3d-8c28-4e404a4e7800", - "start": { - "$date": "2021-07-25T04:40:38.000Z" - }, - "end": { - "$date": "2021-07-25T04:44:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "67d59ba2-c247-4b71-8a04-661b3ec24615", - "start": { - "$date": "2021-07-25T04:44:38.000Z" - }, - "end": { - "$date": "2021-07-25T05:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "407e3516-a26a-4c37-ba6a-164581c7e8a5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-25T02:12:02.000Z" - }, - "end": { - "$date": "2021-07-25T04:09:06.000Z" - }, - "events": [ - { - "uuid": "11b23e04-cc24-440f-a7b0-6e0b433046a5", - "start": { - "$date": "2021-07-25T02:12:02.000Z" - }, - "end": { - "$date": "2021-07-25T04:09:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00620b11-ce45-444d-93e4-0755621b782e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T03:17:41.000Z" - }, - "end": { - "$date": "2021-07-25T03:48:00.000Z" - }, - "events": [ - { - "uuid": "11670cef-021a-4b94-b10a-826b61e03be2", - "start": { - "$date": "2021-07-25T03:17:41.000Z" - }, - "end": { - "$date": "2021-07-25T03:48:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c72dc0fa-b325-4e19-9aef-39bd4da3db84", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-25T03:23:32.000Z" - }, - "end": { - "$date": "2021-07-25T04:14:59.000Z" - }, - "events": [ - { - "uuid": "16488dc1-8744-4d3d-bd39-d3404d49814b", - "start": { - "$date": "2021-07-25T03:23:32.000Z" - }, - "end": { - "$date": "2021-07-25T04:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "11bb95cc-c898-42a6-b0dd-99e1a3e55a38", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-25T03:26:34.000Z" - }, - "end": { - "$date": "2021-07-25T06:51:41.000Z" - }, - "events": [ - { - "uuid": "f9a2937f-6e4d-47a5-ba6e-9a33be310b93", - "start": { - "$date": "2021-07-25T03:26:34.000Z" - }, - "end": { - "$date": "2021-07-25T06:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1673f53f-5a1e-4e76-925a-7dd227e83c2b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T03:53:49.000Z" - }, - "end": { - "$date": "2021-07-25T04:18:14.000Z" - }, - "events": [ - { - "uuid": "c4543b21-f604-4d15-a248-95f986dff72d", - "start": { - "$date": "2021-07-25T03:53:49.000Z" - }, - "end": { - "$date": "2021-07-25T04:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21562213-25a9-4c88-bc0c-5435895ce266", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-25T03:53:37.000Z" - }, - "end": { - "$date": "2021-07-25T04:18:08.000Z" - }, - "events": [ - { - "uuid": "b62cd7db-1e54-4e30-aa9f-732d07666e1d", - "start": { - "$date": "2021-07-25T03:53:37.000Z" - }, - "end": { - "$date": "2021-07-25T04:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8131a3ef-b04a-42c1-8dae-bf62b7882bf9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-25T04:10:01.000Z" - }, - "end": { - "$date": "2021-07-25T08:27:16.000Z" - }, - "events": [ - { - "uuid": "09e060ca-764d-4ae0-8a4c-faad02b6baea", - "start": { - "$date": "2021-07-25T04:10:01.000Z" - }, - "end": { - "$date": "2021-07-25T08:27:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1e6721fe-b202-40c6-94b5-4aa7e5dd5054", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-25T04:11:04.000Z" - }, - "end": { - "$date": "2021-07-25T05:16:17.000Z" - }, - "events": [ - { - "uuid": "8224c29c-cd3c-4b5b-8bf5-a3ed95ea4600", - "start": { - "$date": "2021-07-25T04:11:04.000Z" - }, - "end": { - "$date": "2021-07-25T05:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f0b0030f-16c2-43a8-bdfd-b539500ae0ad", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-25T04:13:19.000Z" - }, - "end": { - "$date": "2021-07-25T06:41:17.000Z" - }, - "events": [ - { - "uuid": "a9bdb817-f06a-4bdb-980f-ec5b1ef32be8", - "start": { - "$date": "2021-07-25T04:13:19.000Z" - }, - "end": { - "$date": "2021-07-25T06:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "19c23122-437c-4645-97af-7abbc0d886ee", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-25T04:15:18.000Z" - }, - "end": { - "$date": "2021-07-25T06:40:13.000Z" - }, - "events": [ - { - "uuid": "f061ff32-fae4-408b-97a4-9fcef3d66e33", - "start": { - "$date": "2021-07-25T04:15:18.000Z" - }, - "end": { - "$date": "2021-07-25T06:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "319d73bd-738e-4c45-a5a2-61aea36baf27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T04:21:40.000Z" - }, - "end": { - "$date": "2021-07-25T04:40:23.000Z" - }, - "events": [ - { - "uuid": "40937d5e-85fc-4c61-b124-2cca429d2b4b", - "start": { - "$date": "2021-07-25T04:21:40.000Z" - }, - "end": { - "$date": "2021-07-25T04:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03dc1cff-4d9d-41d8-8add-d30976f72b86", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-25T04:21:57.000Z" - }, - "end": { - "$date": "2021-07-25T04:40:08.000Z" - }, - "events": [ - { - "uuid": "c7b6aabf-c9a1-4d6b-a336-94567ed2eedb", - "start": { - "$date": "2021-07-25T04:21:57.000Z" - }, - "end": { - "$date": "2021-07-25T04:40:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b9288996-7b27-4759-bad7-d5b0b6cfd383", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T05:12:10.000Z" - }, - "end": { - "$date": "2021-07-25T05:51:58.000Z" - }, - "events": [ - { - "uuid": "a62d1ab5-94b7-4caa-9ab1-72e89537b100", - "start": { - "$date": "2021-07-25T05:12:10.000Z" - }, - "end": { - "$date": "2021-07-25T05:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d31b66ed-300b-4b42-9f03-569fe4f13249", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-25T05:16:24.000Z" - }, - "end": { - "$date": "2021-07-25T06:40:11.000Z" - }, - "events": [ - { - "uuid": "f1bf643e-c504-4d6e-9163-603d6cabcb70", - "start": { - "$date": "2021-07-25T05:16:24.000Z" - }, - "end": { - "$date": "2021-07-25T06:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "643f5d13-54b0-4152-b752-e8774dfaadb4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-25T05:18:11.000Z" - }, - "end": { - "$date": "2021-07-25T05:36:36.000Z" - }, - "events": [ - { - "uuid": "27e6e2a9-8e71-45eb-8b4e-68e8f3929c19", - "start": { - "$date": "2021-07-25T05:18:11.000Z" - }, - "end": { - "$date": "2021-07-25T05:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2ba87e2b-e521-477c-945d-2a3fe8053a7c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-25T06:42:18.000Z" - }, - "end": { - "$date": "2021-07-25T08:07:51.000Z" - }, - "events": [ - { - "uuid": "6b5fa1ec-5c6c-4b22-a4cf-1150f16c2313", - "start": { - "$date": "2021-07-25T06:42:18.000Z" - }, - "end": { - "$date": "2021-07-25T08:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f56a649a-7e9c-4394-87f2-c4c451d0806e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-25T06:43:27.000Z" - }, - "end": { - "$date": "2021-07-25T06:55:39.000Z" - }, - "events": [ - { - "uuid": "da3d88cb-7faa-43e8-b9e1-7e3eeded4901", - "start": { - "$date": "2021-07-25T06:43:27.000Z" - }, - "end": { - "$date": "2021-07-25T06:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "c1b6eee0-5fce-4ebf-92a6-555e817e17ab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-25T13:45:28.000Z" - }, - "end": { - "$date": "2021-07-25T14:13:09.000Z" - }, - "events": [ - { - "uuid": "d3d31b0a-1206-4ac2-a131-bd78cc5e5c19", - "start": { - "$date": "2021-07-25T13:45:28.000Z" - }, - "end": { - "$date": "2021-07-25T14:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "f3edfdfb-1cd0-4f57-8453-b73ee5d1fde2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-25T14:45:23.000Z" - }, - "end": { - "$date": "2021-07-25T15:05:54.000Z" - }, - "events": [ - { - "uuid": "2a86fdf2-56e0-43f5-88a7-72a505bcc61e", - "start": { - "$date": "2021-07-25T14:45:23.000Z" - }, - "end": { - "$date": "2021-07-25T15:05:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0d848e81-d890-46e6-916c-a828f23e4ce1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-25T15:11:10.000Z" - }, - "end": { - "$date": "2021-07-25T15:20:40.000Z" - }, - "events": [ - { - "uuid": "1b461374-cd28-4014-bd50-65ebbcf84aa1", - "start": { - "$date": "2021-07-25T15:11:10.000Z" - }, - "end": { - "$date": "2021-07-25T15:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9111211e-8e46-49af-bce4-66c234112ac2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-25T15:37:51.000Z" - }, - "end": { - "$date": "2021-07-25T15:39:16.000Z" - }, - "events": [ - { - "uuid": "472f15d0-c537-4eea-b148-a88cdd4f9293", - "start": { - "$date": "2021-07-25T15:37:51.000Z" - }, - "end": { - "$date": "2021-07-25T15:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "41ba6246-36e1-44b4-b643-5d39e40f9789", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-25T15:39:28.000Z" - }, - "end": { - "$date": "2021-07-25T18:21:48.000Z" - }, - "events": [ - { - "uuid": "fd348e2e-8543-46a8-9567-f00130589e82", - "start": { - "$date": "2021-07-25T15:39:28.000Z" - }, - "end": { - "$date": "2021-07-25T16:55:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a3ce86f-4337-4c59-9a06-2032ba0c9775", - "start": { - "$date": "2021-07-25T16:55:28.000Z" - }, - "end": { - "$date": "2021-07-25T16:59:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae9f8566-cc29-4128-a9c0-5a1dedf0b1c8", - "start": { - "$date": "2021-07-25T16:59:28.000Z" - }, - "end": { - "$date": "2021-07-25T18:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d7c8d2e2-6c78-4926-ba6f-4372fc26c298", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-25T15:47:14.000Z" - }, - "end": { - "$date": "2021-07-25T16:05:23.000Z" - }, - "events": [ - { - "uuid": "1c7182a4-2209-44bf-b0ab-b3d2962a3dab", - "start": { - "$date": "2021-07-25T15:47:14.000Z" - }, - "end": { - "$date": "2021-07-25T16:00:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "edabed5d-edb6-4b07-91b7-fcf24feaec53", - "start": { - "$date": "2021-07-25T16:00:14.000Z" - }, - "end": { - "$date": "2021-07-25T16:03:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "484cb8fe-8b5b-40f2-b809-bdd36e7e9865", - "start": { - "$date": "2021-07-25T16:03:14.000Z" - }, - "end": { - "$date": "2021-07-25T16:05:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f870cb4c-e399-44e7-a412-436a9d591e2a", - "uuid": "488da489-fa6c-4774-80f4-a8feba41b2b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-25T16:40:28.000Z" - }, - "end": { - "$date": "2021-07-25T16:43:55.000Z" - }, - "events": [ - { - "uuid": "ba34320c-b7a8-4851-8022-b252f1ac7c52", - "start": { - "$date": "2021-07-25T16:40:28.000Z" - }, - "end": { - "$date": "2021-07-25T16:43:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "df6492dc-362b-40b8-be5e-b53f94207254", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-25T18:47:40.000Z" - }, - "end": { - "$date": "2021-07-25T18:54:24.000Z" - }, - "events": [ - { - "uuid": "636123c3-7a2b-45fb-a163-556edf9c44c5", - "start": { - "$date": "2021-07-25T18:47:40.000Z" - }, - "end": { - "$date": "2021-07-25T18:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "c4996911-f843-4261-a55f-57f5e53b3ab8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-25T18:56:01.000Z" - }, - "end": { - "$date": "2021-07-25T18:57:40.000Z" - }, - "events": [ - { - "uuid": "af162474-3bbc-4fa5-a8a1-b7826c6cadc7", - "start": { - "$date": "2021-07-25T18:56:01.000Z" - }, - "end": { - "$date": "2021-07-25T18:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "e8ff2ecb-2251-47a5-8e3b-58c754d5aa57", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-25T22:26:10.000Z" - }, - "end": { - "$date": "2021-07-25T22:26:19.000Z" - }, - "events": [ - { - "uuid": "c86d307d-d23a-4b7f-97af-edd3fe6c10c8", - "start": { - "$date": "2021-07-25T22:26:10.000Z" - }, - "end": { - "$date": "2021-07-25T22:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e90ee841-1bec-488a-8111-f60c0af3687a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-25T19:03:34.000Z" - }, - "end": { - "$date": "2021-07-25T19:11:38.000Z" - }, - "events": [ - { - "uuid": "4d1a7149-4b18-47ad-af1b-f15cd26be95a", - "start": { - "$date": "2021-07-25T19:03:34.000Z" - }, - "end": { - "$date": "2021-07-25T19:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4c08acb1-b0b7-4cd4-aa82-68006779307a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-25T20:45:44.000Z" - }, - "end": { - "$date": "2021-07-25T22:37:37.000Z" - }, - "events": [ - { - "uuid": "f5bc4ea7-080a-471c-9fd3-eff179e5ebca", - "start": { - "$date": "2021-07-25T20:45:44.000Z" - }, - "end": { - "$date": "2021-07-25T22:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f672d9ec-4286-4a91-b564-462b5e92a63b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-25T20:52:48.000Z" - }, - "end": { - "$date": "2021-07-25T22:30:06.000Z" - }, - "events": [ - { - "uuid": "222a1009-bddb-4011-8cb8-9aeb5f2e7cc9", - "start": { - "$date": "2021-07-25T20:52:48.000Z" - }, - "end": { - "$date": "2021-07-25T22:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca72186e-83bf-487d-9109-df452a096181", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T20:59:00.000Z" - }, - "end": { - "$date": "2021-07-25T21:21:56.000Z" - }, - "events": [ - { - "uuid": "e14fe7e8-c50f-41e8-82c4-ecf81d9b5aa2", - "start": { - "$date": "2021-07-25T20:59:00.000Z" - }, - "end": { - "$date": "2021-07-25T21:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dec194ef-e89a-4ef5-8dea-aa5decbd9045", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T21:27:12.000Z" - }, - "end": { - "$date": "2021-07-25T21:49:12.000Z" - }, - "events": [ - { - "uuid": "ba502c76-10cb-42e0-b900-2db6b1b9c47e", - "start": { - "$date": "2021-07-25T21:27:12.000Z" - }, - "end": { - "$date": "2021-07-25T21:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "9bcae871-4de9-49d8-9abf-49baf020b1a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-25T22:37:03.000Z" - }, - "end": { - "$date": "2021-07-25T22:58:51.000Z" - }, - "events": [ - { - "uuid": "294946f4-fe43-4440-bf5d-799f85025ba4", - "start": { - "$date": "2021-07-25T22:37:03.000Z" - }, - "end": { - "$date": "2021-07-25T22:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c768154c-5c18-4976-bd57-cfa278451d6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-25T21:55:55.000Z" - }, - "end": { - "$date": "2021-07-25T22:17:37.000Z" - }, - "events": [ - { - "uuid": "ec003b47-cca5-47b4-b270-27ead0b96096", - "start": { - "$date": "2021-07-25T21:55:55.000Z" - }, - "end": { - "$date": "2021-07-25T22:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6b6253c8-a715-4d88-b492-cceacea4d52b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-25T22:00:49.000Z" - }, - "end": { - "$date": "2021-07-26T04:12:54.000Z" - }, - "events": [ - { - "uuid": "ac26e16c-60b0-4a9c-bfd7-c9198113f745", - "start": { - "$date": "2021-07-25T22:00:49.000Z" - }, - "end": { - "$date": "2021-07-25T22:31:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2982ca98-7e70-4402-b684-57f127e71a59", - "start": { - "$date": "2021-07-25T22:31:49.000Z" - }, - "end": { - "$date": "2021-07-25T22:33:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c33662bd-815d-4dbb-abe3-1494064cca5d", - "start": { - "$date": "2021-07-25T22:33:49.000Z" - }, - "end": { - "$date": "2021-07-25T22:57:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bff25ad2-8fdc-40b8-9316-452a9fe3ae76", - "start": { - "$date": "2021-07-25T22:57:49.000Z" - }, - "end": { - "$date": "2021-07-25T23:18:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5487dceb-c455-422e-8edc-5a6f7bb8d127", - "start": { - "$date": "2021-07-25T23:18:49.000Z" - }, - "end": { - "$date": "2021-07-26T01:20:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9afafc47-bed1-4442-8a8b-9ce61595c8d2", - "start": { - "$date": "2021-07-26T01:20:49.000Z" - }, - "end": { - "$date": "2021-07-26T01:21:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "968ddec5-f4da-47f5-a7c3-0954f1e5e0d8", - "start": { - "$date": "2021-07-26T01:21:49.000Z" - }, - "end": { - "$date": "2021-07-26T04:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8f540249-52e0-4b9a-8cde-875b5bc10392", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-25T22:37:52.000Z" - }, - "end": { - "$date": "2021-07-25T23:50:51.000Z" - }, - "events": [ - { - "uuid": "c80a0721-2242-41ac-8156-7d828c5f9293", - "start": { - "$date": "2021-07-25T22:37:52.000Z" - }, - "end": { - "$date": "2021-07-25T23:50:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "da40fd8f-a490-4f99-9596-ef73d9207799", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-25T22:40:01.000Z" - }, - "end": { - "$date": "2021-07-26T00:05:44.000Z" - }, - "events": [ - { - "uuid": "951ed922-1654-460f-a219-d8b98b2ae5d3", - "start": { - "$date": "2021-07-25T22:40:01.000Z" - }, - "end": { - "$date": "2021-07-26T00:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "e87d1e3e-1feb-4ca7-ac55-b29189183b13", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-26T01:36:22.000Z" - }, - "end": { - "$date": "2021-07-26T01:50:57.000Z" - }, - "events": [ - { - "uuid": "dadfd016-3172-487d-8fb2-eb7cfbc9fad0", - "start": { - "$date": "2021-07-26T01:36:22.000Z" - }, - "end": { - "$date": "2021-07-26T01:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39be65bf-4be0-4917-bc4c-417f96c2e954", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T02:07:16.000Z" - }, - "end": { - "$date": "2021-07-26T02:29:15.000Z" - }, - "events": [ - { - "uuid": "c0b360ef-fcfc-4115-bd18-2ec62b46dc43", - "start": { - "$date": "2021-07-26T02:07:16.000Z" - }, - "end": { - "$date": "2021-07-26T02:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9d42b7c-be0b-4f94-899b-7bf3e514ca7b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T02:36:33.000Z" - }, - "end": { - "$date": "2021-07-26T03:11:37.000Z" - }, - "events": [ - { - "uuid": "a973dd77-913e-46c9-bdfe-72bf31719b8e", - "start": { - "$date": "2021-07-26T02:36:33.000Z" - }, - "end": { - "$date": "2021-07-26T03:11:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f832eb5e-0133-4813-a7a0-9041281ea779", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-26T03:12:47.000Z" - }, - "end": { - "$date": "2021-07-26T04:08:57.000Z" - }, - "events": [ - { - "uuid": "960b60bd-0477-42aa-a7a9-8628a3c8fd04", - "start": { - "$date": "2021-07-26T03:12:47.000Z" - }, - "end": { - "$date": "2021-07-26T04:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4b1a4163-f63b-46a8-8d7c-7fbb462f6fb7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-26T03:56:37.000Z" - }, - "end": { - "$date": "2021-07-26T04:47:53.000Z" - }, - "events": [ - { - "uuid": "f6b9770b-927d-478d-9ddb-930ee6693d49", - "start": { - "$date": "2021-07-26T03:56:37.000Z" - }, - "end": { - "$date": "2021-07-26T04:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "968f190f-0442-4d1d-ae49-2fadd55a06c9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-26T03:58:46.000Z" - }, - "end": { - "$date": "2021-07-26T05:16:08.000Z" - }, - "events": [ - { - "uuid": "fb2a2101-9bb5-41c8-8506-7c8c5cff3a85", - "start": { - "$date": "2021-07-26T03:58:46.000Z" - }, - "end": { - "$date": "2021-07-26T05:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4272b8fb-3eda-4c0b-9c44-77c225d9186e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-26T04:00:30.000Z" - }, - "end": { - "$date": "2021-07-26T05:06:08.000Z" - }, - "events": [ - { - "uuid": "2d6d228a-327f-4aa2-9ed8-bd520356bb90", - "start": { - "$date": "2021-07-26T04:00:30.000Z" - }, - "end": { - "$date": "2021-07-26T05:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dfb46f8c-9f0b-4066-ad3a-768ed10f68d0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-26T04:19:17.000Z" - }, - "end": { - "$date": "2021-07-26T06:54:04.000Z" - }, - "events": [ - { - "uuid": "ced0e4ba-77da-49a9-b3c2-7d114f04b224", - "start": { - "$date": "2021-07-26T04:19:17.000Z" - }, - "end": { - "$date": "2021-07-26T06:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc8ea0ee-2130-45f3-b438-aab2d4c44812", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T04:54:26.000Z" - }, - "end": { - "$date": "2021-07-26T05:18:38.000Z" - }, - "events": [ - { - "uuid": "808998d8-d1f7-417a-bcb1-1b9e16c0db33", - "start": { - "$date": "2021-07-26T04:54:26.000Z" - }, - "end": { - "$date": "2021-07-26T05:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9c61fcd1-55ea-4339-bca7-bb15a043581c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-26T04:56:56.000Z" - }, - "end": { - "$date": "2021-07-26T05:35:09.000Z" - }, - "events": [ - { - "uuid": "5c59d6f5-4147-4576-82a5-d735f294aa03", - "start": { - "$date": "2021-07-26T04:56:56.000Z" - }, - "end": { - "$date": "2021-07-26T05:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b887cdd2-3192-4777-94d4-f8de3199aefd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T05:23:44.000Z" - }, - "end": { - "$date": "2021-07-26T05:52:21.000Z" - }, - "events": [ - { - "uuid": "ee55473e-0ab5-4558-9842-77db57f30983", - "start": { - "$date": "2021-07-26T05:23:44.000Z" - }, - "end": { - "$date": "2021-07-26T05:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a7ebaba-15ee-4c35-843f-1e2043058c8a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-26T05:20:14.000Z" - }, - "end": { - "$date": "2021-07-26T05:22:19.000Z" - }, - "events": [ - { - "uuid": "001c3bf3-0829-4f65-976b-5b70519ed282", - "start": { - "$date": "2021-07-26T05:20:14.000Z" - }, - "end": { - "$date": "2021-07-26T05:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bc682f93-29f3-4fb6-911a-5c8e9d5f03bb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-26T05:22:29.000Z" - }, - "end": { - "$date": "2021-07-26T08:24:39.000Z" - }, - "events": [ - { - "uuid": "d74f19fe-0de1-408a-983d-1df547cd1076", - "start": { - "$date": "2021-07-26T05:22:29.000Z" - }, - "end": { - "$date": "2021-07-26T06:39:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a9223ca-2932-434e-be9a-b9453a8c839b", - "start": { - "$date": "2021-07-26T06:39:29.000Z" - }, - "end": { - "$date": "2021-07-26T06:47:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "652486e9-e9bd-4c59-85d2-17de877647b2", - "start": { - "$date": "2021-07-26T06:47:29.000Z" - }, - "end": { - "$date": "2021-07-26T06:49:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6572c39a-0a19-4d71-b6c6-4a2c52c9f20d", - "start": { - "$date": "2021-07-26T06:49:29.000Z" - }, - "end": { - "$date": "2021-07-26T06:56:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84baba69-f51d-4b8e-b819-0fd1075f6901", - "start": { - "$date": "2021-07-26T06:56:29.000Z" - }, - "end": { - "$date": "2021-07-26T08:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4e23a581-0089-4c7c-a77c-d97a1343a627", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-26T05:35:30.000Z" - }, - "end": { - "$date": "2021-07-26T07:26:04.000Z" - }, - "events": [ - { - "uuid": "5540e0a9-4654-44e5-bae8-9c7f2b89108e", - "start": { - "$date": "2021-07-26T05:35:30.000Z" - }, - "end": { - "$date": "2021-07-26T07:26:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "38a3266f-4724-44ab-8701-bdb5850c1052", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-26T07:41:44.000Z" - }, - "end": { - "$date": "2021-07-26T07:58:19.000Z" - }, - "events": [ - { - "uuid": "dd833dba-4f3a-4586-9962-a05eb6907dd1", - "start": { - "$date": "2021-07-26T07:41:44.000Z" - }, - "end": { - "$date": "2021-07-26T07:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "31ca4484-dd18-4c2d-a119-f84cce054136", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-26T15:25:13.000Z" - }, - "end": { - "$date": "2021-07-26T15:25:17.000Z" - }, - "events": [ - { - "uuid": "70c953e5-3467-41d4-b534-b5aa9211991c", - "start": { - "$date": "2021-07-26T15:25:13.000Z" - }, - "end": { - "$date": "2021-07-26T15:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a25a521f-8e8e-4bc2-ab57-35ee1f3b25a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-26T14:32:32.000Z" - }, - "end": { - "$date": "2021-07-26T18:25:17.000Z" - }, - "events": [ - { - "uuid": "039c4e71-1a1c-459c-9a17-fbb4560b2d6b", - "start": { - "$date": "2021-07-26T14:32:32.000Z" - }, - "end": { - "$date": "2021-07-26T14:50:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97163575-86ad-4d5e-ad0e-2e003bb580b7", - "start": { - "$date": "2021-07-26T14:50:32.000Z" - }, - "end": { - "$date": "2021-07-26T14:51:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "945ca7c5-64e6-4735-9044-e7d31216c99f", - "start": { - "$date": "2021-07-26T14:51:32.000Z" - }, - "end": { - "$date": "2021-07-26T18:07:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e08e8e89-7c52-4753-8ba9-9de58ae815a1", - "start": { - "$date": "2021-07-26T18:07:32.000Z" - }, - "end": { - "$date": "2021-07-26T18:12:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fb71c698-cc7e-45a0-b056-3f95e78f958d", - "start": { - "$date": "2021-07-26T18:12:32.000Z" - }, - "end": { - "$date": "2021-07-26T18:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "cb7c623a-8d94-4e89-acbe-568664ebcd31", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-26T16:44:34.000Z" - }, - "end": { - "$date": "2021-07-26T16:47:06.000Z" - }, - "events": [ - { - "uuid": "523be556-2a03-4635-ba4c-9ff60564b8b6", - "start": { - "$date": "2021-07-26T16:44:34.000Z" - }, - "end": { - "$date": "2021-07-26T16:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "a12da458-a1f8-4615-b0a2-0c329f02fe9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-26T17:06:20.000Z" - }, - "end": { - "$date": "2021-07-26T17:10:23.000Z" - }, - "events": [ - { - "uuid": "647440ea-2757-4996-9f7e-0829438b18a3", - "start": { - "$date": "2021-07-26T17:06:20.000Z" - }, - "end": { - "$date": "2021-07-26T17:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "a9d67f3f-7e2b-4fff-8c29-7ef284f37066", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-26T17:35:49.000Z" - }, - "end": { - "$date": "2021-07-26T17:38:47.000Z" - }, - "events": [ - { - "uuid": "116f059a-ed39-46c4-a332-a9042eb34908", - "start": { - "$date": "2021-07-26T17:35:49.000Z" - }, - "end": { - "$date": "2021-07-26T17:38:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bf7e1d9-9348-430b-b41d-7b00b5ab7f4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T17:26:07.000Z" - }, - "end": { - "$date": "2021-07-26T17:50:32.000Z" - }, - "events": [ - { - "uuid": "d7a2e829-0866-49d2-b06b-05cefd4c7616", - "start": { - "$date": "2021-07-26T17:26:07.000Z" - }, - "end": { - "$date": "2021-07-26T17:50:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1cac5d7f-8065-4d78-a10e-b8a73887840e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-26T18:39:03.000Z" - }, - "end": { - "$date": "2021-07-26T18:58:34.000Z" - }, - "events": [ - { - "uuid": "e80cff1f-7ebf-4f7b-afda-2aeb737f4fc4", - "start": { - "$date": "2021-07-26T18:39:03.000Z" - }, - "end": { - "$date": "2021-07-26T18:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fc8eb056-2f1d-4bd8-89f0-147faee2221f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-26T18:48:56.000Z" - }, - "end": { - "$date": "2021-07-26T18:52:09.000Z" - }, - "events": [ - { - "uuid": "c4296864-d8e0-4606-a64c-2c69feb0f98b", - "start": { - "$date": "2021-07-26T18:48:56.000Z" - }, - "end": { - "$date": "2021-07-26T18:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "94ae9384-8f53-4fce-8428-8e57cc5f9dc1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-27T01:08:11.000Z" - }, - "end": { - "$date": "2021-07-27T01:09:41.000Z" - }, - "events": [ - { - "uuid": "b31fe89e-1e04-4dda-aa18-2eb6f8fc0904", - "start": { - "$date": "2021-07-27T01:08:11.000Z" - }, - "end": { - "$date": "2021-07-27T04:37:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "54b66ade-f9bb-438b-a3bf-34d175ac80f0", - "start": { - "$date": "2021-07-27T04:37:11.000Z" - }, - "end": { - "$date": "2021-07-27T04:45:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa8a58b4-e93a-4e87-98ac-992beb80c733", - "start": { - "$date": "2021-07-27T04:45:11.000Z" - }, - "end": { - "$date": "2021-07-27T01:09:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ae3d447-7df8-4bf4-96d8-0e2d01649a39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T20:38:53.000Z" - }, - "end": { - "$date": "2021-07-26T20:58:29.000Z" - }, - "events": [ - { - "uuid": "ec50e6df-83c4-4feb-af92-7ff4a834614a", - "start": { - "$date": "2021-07-26T20:38:53.000Z" - }, - "end": { - "$date": "2021-07-26T20:58:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e27939cd-62a4-49f3-8b1a-01385ce7738b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-26T20:47:40.000Z" - }, - "end": { - "$date": "2021-07-27T00:18:43.000Z" - }, - "events": [ - { - "uuid": "96318967-1bef-412b-88d0-cb4d707bd461", - "start": { - "$date": "2021-07-26T20:47:40.000Z" - }, - "end": { - "$date": "2021-07-26T21:19:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6163580b-daa4-4380-8212-0ca2886f26a9", - "start": { - "$date": "2021-07-26T21:19:40.000Z" - }, - "end": { - "$date": "2021-07-26T21:21:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "89f74e42-755e-461b-97ad-351561028916", - "start": { - "$date": "2021-07-26T21:21:40.000Z" - }, - "end": { - "$date": "2021-07-27T00:18:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96fa594d-9aa6-4dbe-ab5a-c324d31f9c69", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T21:11:32.000Z" - }, - "end": { - "$date": "2021-07-26T21:31:16.000Z" - }, - "events": [ - { - "uuid": "f4a28b10-7bb5-4bfb-a56c-553cde564308", - "start": { - "$date": "2021-07-26T21:11:32.000Z" - }, - "end": { - "$date": "2021-07-26T21:31:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9751cc74-9f52-46f3-ae8f-d3e285828fd3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T21:38:40.000Z" - }, - "end": { - "$date": "2021-07-26T22:11:28.000Z" - }, - "events": [ - { - "uuid": "de059f0d-ee0c-44b8-b85e-5b549a1b2b8a", - "start": { - "$date": "2021-07-26T21:38:40.000Z" - }, - "end": { - "$date": "2021-07-26T22:11:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e58c7cd5-f505-4cf8-a8ef-71146479ad88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-26T22:17:18.000Z" - }, - "end": { - "$date": "2021-07-26T22:40:57.000Z" - }, - "events": [ - { - "uuid": "d5579952-8b84-4f69-a1d5-6c6f18e8ba09", - "start": { - "$date": "2021-07-26T22:17:18.000Z" - }, - "end": { - "$date": "2021-07-26T22:40:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b1f4a7f7-4bcd-4a92-a012-58671d920b4c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-26T23:03:13.000Z" - }, - "end": { - "$date": "2021-07-26T23:32:54.000Z" - }, - "events": [ - { - "uuid": "64179e62-ace7-4e71-8060-a7c55a65e870", - "start": { - "$date": "2021-07-26T23:03:13.000Z" - }, - "end": { - "$date": "2021-07-26T23:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "34af5199-abed-433e-9a60-a99a8afb958b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-26T23:35:32.000Z" - }, - "end": { - "$date": "2021-07-26T23:36:36.000Z" - }, - "events": [ - { - "uuid": "a7b093f6-293b-433d-9a66-39dd3c33193e", - "start": { - "$date": "2021-07-26T23:35:32.000Z" - }, - "end": { - "$date": "2021-07-26T23:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "071d4008-6e01-4b35-8b4d-9495a7ad6d7b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-26T23:36:45.000Z" - }, - "end": { - "$date": "2021-07-26T23:57:51.000Z" - }, - "events": [ - { - "uuid": "343eaa47-3617-439d-8c58-926a85d5d336", - "start": { - "$date": "2021-07-26T23:36:45.000Z" - }, - "end": { - "$date": "2021-07-26T23:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "68ca15a1-1510-42c3-a41e-3c9ef9dda1a2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-26T23:37:03.000Z" - }, - "end": { - "$date": "2021-07-26T23:42:45.000Z" - }, - "events": [ - { - "uuid": "bd8a041c-ecfe-44e8-b400-2d4cef753efa", - "start": { - "$date": "2021-07-26T23:37:03.000Z" - }, - "end": { - "$date": "2021-07-26T23:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "02803377-5d14-4a7f-a7b4-5357a1c05c69", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-26T23:38:25.000Z" - }, - "end": { - "$date": "2021-07-27T03:09:21.000Z" - }, - "events": [ - { - "uuid": "d9fd3562-83f7-4959-a5f2-ba5a6cb92cfa", - "start": { - "$date": "2021-07-26T23:38:25.000Z" - }, - "end": { - "$date": "2021-07-27T00:24:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7334f814-e252-4f0c-8b39-3653ab2d4608", - "start": { - "$date": "2021-07-27T00:24:25.000Z" - }, - "end": { - "$date": "2021-07-27T00:36:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec888348-0e32-42d4-99c9-0af63bbd8233", - "start": { - "$date": "2021-07-27T00:36:25.000Z" - }, - "end": { - "$date": "2021-07-27T03:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "12b820f0-e5ec-4292-85db-ae5ffe5a743d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-26T23:43:21.000Z" - }, - "end": { - "$date": "2021-07-26T23:44:40.000Z" - }, - "events": [ - { - "uuid": "d491bcff-93ce-4cf2-9b77-a1c6a5e32a50", - "start": { - "$date": "2021-07-26T23:43:21.000Z" - }, - "end": { - "$date": "2021-07-26T23:44:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0cb54f12-a9a0-45a3-94fa-be12d9128fba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-26T23:45:01.000Z" - }, - "end": { - "$date": "2021-07-26T23:48:26.000Z" - }, - "events": [ - { - "uuid": "9624b937-d48b-4f32-9195-a2af94d1e3d1", - "start": { - "$date": "2021-07-26T23:45:01.000Z" - }, - "end": { - "$date": "2021-07-26T23:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8bf5b64b-ed41-43c2-916f-b31b7f12df91", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-26T23:49:39.000Z" - }, - "end": { - "$date": "2021-07-27T02:15:40.000Z" - }, - "events": [ - { - "uuid": "299d9eb0-6237-4514-8275-2a0bfdf2a50d", - "start": { - "$date": "2021-07-26T23:49:39.000Z" - }, - "end": { - "$date": "2021-07-27T00:01:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb6f31ec-9988-4d73-9ef2-ce2dad5b6c4b", - "start": { - "$date": "2021-07-27T00:01:39.000Z" - }, - "end": { - "$date": "2021-07-27T01:32:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd80f106-1145-4b25-b60c-af0f8e0bb56b", - "start": { - "$date": "2021-07-27T01:32:39.000Z" - }, - "end": { - "$date": "2021-07-27T02:01:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3965498-052f-4677-a659-8665b6d2f5f1", - "start": { - "$date": "2021-07-27T02:01:39.000Z" - }, - "end": { - "$date": "2021-07-27T02:15:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "58daea67-d119-4954-9181-f17d81d5b912", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T00:00:48.000Z" - }, - "end": { - "$date": "2021-07-27T00:05:18.000Z" - }, - "events": [ - { - "uuid": "a8cb2a30-583f-423c-8c44-3b3be3066ae1", - "start": { - "$date": "2021-07-27T00:00:48.000Z" - }, - "end": { - "$date": "2021-07-27T00:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d9991a17-6743-47ce-8b3d-23bd0c070775", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-27T00:33:27.000Z" - }, - "end": { - "$date": "2021-07-27T01:05:24.000Z" - }, - "events": [ - { - "uuid": "44c831dd-e129-4144-bdc8-917d036ff0fb", - "start": { - "$date": "2021-07-27T00:33:27.000Z" - }, - "end": { - "$date": "2021-07-27T01:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "4b82d274-ee8f-4ef0-a387-f02616d12886", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T00:38:16.000Z" - }, - "end": { - "$date": "2021-07-27T01:00:17.000Z" - }, - "events": [ - { - "uuid": "817830c9-0a74-4e78-ac01-9e3edfce6678", - "start": { - "$date": "2021-07-27T00:38:16.000Z" - }, - "end": { - "$date": "2021-07-27T01:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a8532d16-0883-4f92-91ae-95b4f4a8776f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T01:00:52.000Z" - }, - "end": { - "$date": "2021-07-27T03:07:33.000Z" - }, - "events": [ - { - "uuid": "33fd35af-2d3d-48e4-a296-ba5080031c8f", - "start": { - "$date": "2021-07-27T01:00:52.000Z" - }, - "end": { - "$date": "2021-07-27T03:07:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3dff207d-1f01-4206-af42-89fa82b0df79", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-27T01:03:10.000Z" - }, - "end": { - "$date": "2021-07-27T03:56:17.000Z" - }, - "events": [ - { - "uuid": "ed387943-45bc-4510-b65d-68afefda4f7f", - "start": { - "$date": "2021-07-27T01:03:10.000Z" - }, - "end": { - "$date": "2021-07-27T03:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "aafe7ebf-1921-4265-bd34-7123e700d005", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-27T01:11:11.000Z" - }, - "end": { - "$date": "2021-07-27T01:44:22.000Z" - }, - "events": [ - { - "uuid": "32435082-d46b-4b5b-b13c-16c0d3621596", - "start": { - "$date": "2021-07-27T01:11:11.000Z" - }, - "end": { - "$date": "2021-07-27T01:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14f6e91f-9d94-4542-b243-efa9456f55de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-27T01:42:42.000Z" - }, - "end": { - "$date": "2021-07-27T03:44:58.000Z" - }, - "events": [ - { - "uuid": "763dd391-efe0-4eef-8d26-99441ffb1df7", - "start": { - "$date": "2021-07-27T01:42:42.000Z" - }, - "end": { - "$date": "2021-07-27T03:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5edc75bd-b1a3-4cb7-9a95-e5f465ce4907", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-27T01:43:10.000Z" - }, - "end": { - "$date": "2021-07-27T04:57:08.000Z" - }, - "events": [ - { - "uuid": "c97da141-985e-4529-a001-118131301820", - "start": { - "$date": "2021-07-27T01:43:10.000Z" - }, - "end": { - "$date": "2021-07-27T04:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "afeca1a2-6372-4494-954c-0e8883f9d63e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-27T01:44:45.000Z" - }, - "end": { - "$date": "2021-07-27T02:48:43.000Z" - }, - "events": [ - { - "uuid": "23677fce-bafa-459c-b322-7947a343afcf", - "start": { - "$date": "2021-07-27T01:44:45.000Z" - }, - "end": { - "$date": "2021-07-27T02:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "78de4016-dad1-47ae-93d3-6bd7543fbe4c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-27T02:24:28.000Z" - }, - "end": { - "$date": "2021-07-27T04:05:14.000Z" - }, - "events": [ - { - "uuid": "b3d1ea58-1d0e-45d2-87a2-31bb1b3b7855", - "start": { - "$date": "2021-07-27T02:24:28.000Z" - }, - "end": { - "$date": "2021-07-27T02:37:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2aabc34-dbb1-4209-aeaf-d8c8b6f2caad", - "start": { - "$date": "2021-07-27T02:37:28.000Z" - }, - "end": { - "$date": "2021-07-27T02:52:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f514f6d6-0bf0-4e30-b1bb-dbe0d24e2b4a", - "start": { - "$date": "2021-07-27T02:52:28.000Z" - }, - "end": { - "$date": "2021-07-27T04:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "019915ab-94b6-4522-befd-13baffef5857", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T02:46:59.000Z" - }, - "end": { - "$date": "2021-07-27T02:48:54.000Z" - }, - "events": [ - { - "uuid": "7dda696a-f50b-427b-857c-6ab31febd91a", - "start": { - "$date": "2021-07-27T02:46:59.000Z" - }, - "end": { - "$date": "2021-07-27T02:48:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b7ed0f98-0dc8-4aa2-a7e9-ee29a8aca4a1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T03:05:39.000Z" - }, - "end": { - "$date": "2021-07-27T03:14:02.000Z" - }, - "events": [ - { - "uuid": "3af15831-7884-44ce-8b7e-02d0d3ac7aff", - "start": { - "$date": "2021-07-27T03:05:39.000Z" - }, - "end": { - "$date": "2021-07-27T03:14:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba30a5a9-019c-4ace-a17b-5e18c69a4abd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-27T02:51:32.000Z" - }, - "end": { - "$date": "2021-07-27T04:56:57.000Z" - }, - "events": [ - { - "uuid": "ce7d1d51-0ef4-418f-8a7b-2915d4f65584", - "start": { - "$date": "2021-07-27T02:51:32.000Z" - }, - "end": { - "$date": "2021-07-27T04:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "73d84482-f0f3-4e84-abe9-f1e5e652505d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T03:09:36.000Z" - }, - "end": { - "$date": "2021-07-27T04:38:53.000Z" - }, - "events": [ - { - "uuid": "5f5fd84b-5835-436d-8d2f-174f1ee95db2", - "start": { - "$date": "2021-07-27T03:09:36.000Z" - }, - "end": { - "$date": "2021-07-27T03:50:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2294915-85be-4917-ad2b-91c391b83b81", - "start": { - "$date": "2021-07-27T03:50:36.000Z" - }, - "end": { - "$date": "2021-07-27T03:55:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58d9bdad-311d-4651-9038-4071de4bac5f", - "start": { - "$date": "2021-07-27T03:55:36.000Z" - }, - "end": { - "$date": "2021-07-27T04:05:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d34602d1-bb19-4445-b01a-949f10b9a4d7", - "start": { - "$date": "2021-07-27T04:05:36.000Z" - }, - "end": { - "$date": "2021-07-27T04:10:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "abd20078-7af8-4a6e-81ea-2b55f518d0bf", - "start": { - "$date": "2021-07-27T04:10:36.000Z" - }, - "end": { - "$date": "2021-07-27T04:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aa6a556d-060c-4fd9-a36f-5e488497c06f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T03:14:19.000Z" - }, - "end": { - "$date": "2021-07-27T03:21:23.000Z" - }, - "events": [ - { - "uuid": "e19090cc-b937-4685-ae7b-7af4609ab995", - "start": { - "$date": "2021-07-27T03:14:19.000Z" - }, - "end": { - "$date": "2021-07-27T03:21:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "511eda5d-e8f0-4681-b550-3a610b80e9f1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T03:25:00.000Z" - }, - "end": { - "$date": "2021-07-27T04:19:05.000Z" - }, - "events": [ - { - "uuid": "a76edccc-ef6b-4aba-8448-818e19480bab", - "start": { - "$date": "2021-07-27T03:25:00.000Z" - }, - "end": { - "$date": "2021-07-27T04:19:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "66bfd618-0bb6-4091-9903-59b700e72b65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T03:31:37.000Z" - }, - "end": { - "$date": "2021-07-27T03:56:03.000Z" - }, - "events": [ - { - "uuid": "97807dc5-4908-46ce-8680-9bf5d6951e5b", - "start": { - "$date": "2021-07-27T03:31:37.000Z" - }, - "end": { - "$date": "2021-07-27T03:56:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "64394865-fc96-4057-b753-5a3f7b950656", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-27T03:45:42.000Z" - }, - "end": { - "$date": "2021-07-27T04:18:56.000Z" - }, - "events": [ - { - "uuid": "12115907-2c7e-4d81-95cf-610d3637d414", - "start": { - "$date": "2021-07-27T03:45:42.000Z" - }, - "end": { - "$date": "2021-07-27T04:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3cd2705a-ac32-41e1-ba79-665b974ab141", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-27T03:45:58.000Z" - }, - "end": { - "$date": "2021-07-27T04:56:30.000Z" - }, - "events": [ - { - "uuid": "70079c16-1670-425c-aa96-8b6245f825a1", - "start": { - "$date": "2021-07-27T03:45:58.000Z" - }, - "end": { - "$date": "2021-07-27T04:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "476be57b-1eac-47ab-9dea-f82f328c78e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T03:57:05.000Z" - }, - "end": { - "$date": "2021-07-27T04:53:48.000Z" - }, - "events": [ - { - "uuid": "8635e6a6-1c0f-4b0f-8ad5-36b2920e0fe4", - "start": { - "$date": "2021-07-27T03:57:05.000Z" - }, - "end": { - "$date": "2021-07-27T04:25:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25ef7a7e-6d2a-44a6-895f-ad1bd0fb4818", - "start": { - "$date": "2021-07-27T04:25:05.000Z" - }, - "end": { - "$date": "2021-07-27T04:29:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "29fb9326-3c4d-4bff-8411-857067b1aa72", - "start": { - "$date": "2021-07-27T04:29:05.000Z" - }, - "end": { - "$date": "2021-07-27T04:53:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "45aa06a3-aec5-42d4-a2ab-03b3cc7d463d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-27T03:56:42.000Z" - }, - "end": { - "$date": "2021-07-27T04:50:59.000Z" - }, - "events": [ - { - "uuid": "9f2548a3-fcfb-46af-9e18-df0fc399b71c", - "start": { - "$date": "2021-07-27T03:56:42.000Z" - }, - "end": { - "$date": "2021-07-27T04:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f1d21df9-5744-494a-bd16-31b4d1331035", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T04:42:03.000Z" - }, - "end": { - "$date": "2021-07-27T06:38:16.000Z" - }, - "events": [ - { - "uuid": "c179694f-6173-49ae-859e-0cef90826a88", - "start": { - "$date": "2021-07-27T04:42:03.000Z" - }, - "end": { - "$date": "2021-07-27T06:38:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bbbb8661-2809-4cad-859e-a6593ddc1d55", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-27T04:57:30.000Z" - }, - "end": { - "$date": "2021-07-27T07:22:36.000Z" - }, - "events": [ - { - "uuid": "6a8f0fd2-43c9-4802-a53a-5b7fb7ed0d2f", - "start": { - "$date": "2021-07-27T04:57:30.000Z" - }, - "end": { - "$date": "2021-07-27T07:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6a50750f-a61a-44ec-9016-0de3830b4a9c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-27T04:58:13.000Z" - }, - "end": { - "$date": "2021-07-27T05:50:06.000Z" - }, - "events": [ - { - "uuid": "37a69cc2-97d4-4e5d-a46d-fb868f30b5d3", - "start": { - "$date": "2021-07-27T04:58:13.000Z" - }, - "end": { - "$date": "2021-07-27T05:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "97dd20d1-7cdb-4629-bec2-f6ab94442fc4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-27T04:59:04.000Z" - }, - "end": { - "$date": "2021-07-27T05:59:56.000Z" - }, - "events": [ - { - "uuid": "14845b6c-7c09-49e7-b3bd-7e263812887a", - "start": { - "$date": "2021-07-27T04:59:04.000Z" - }, - "end": { - "$date": "2021-07-27T05:59:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2ea51dda-5b96-499d-ae6c-007c31fc638b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T04:59:06.000Z" - }, - "end": { - "$date": "2021-07-27T05:02:57.000Z" - }, - "events": [ - { - "uuid": "593de881-c4ab-4613-a097-42501c5d9021", - "start": { - "$date": "2021-07-27T04:59:06.000Z" - }, - "end": { - "$date": "2021-07-27T05:02:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "51bd5637-d606-44e0-ab9c-d3abc514e69a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T05:03:46.000Z" - }, - "end": { - "$date": "2021-07-27T06:39:38.000Z" - }, - "events": [ - { - "uuid": "98c1d9d0-64f9-418e-a5d0-04fc9b5b8b26", - "start": { - "$date": "2021-07-27T05:03:46.000Z" - }, - "end": { - "$date": "2021-07-27T06:39:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8a11792-c41a-4b3e-ae8d-280debac4c49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-27T06:36:10.000Z" - }, - "end": { - "$date": "2021-07-27T07:04:08.000Z" - }, - "events": [ - { - "uuid": "210e74ab-2e7c-4701-8d16-ead1e47135d2", - "start": { - "$date": "2021-07-27T06:36:10.000Z" - }, - "end": { - "$date": "2021-07-27T07:04:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "cafaad42-00d3-4a35-8cc3-e67c948f21b8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-27T13:31:36.000Z" - }, - "end": { - "$date": "2021-07-27T15:17:03.000Z" - }, - "events": [ - { - "uuid": "03c26a21-bbb7-42e2-ae5c-60bde2f96b33", - "start": { - "$date": "2021-07-27T13:31:36.000Z" - }, - "end": { - "$date": "2021-07-27T15:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f3e4b9f2-ae00-4d47-b4a6-592d3563d6f7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T14:05:30.000Z" - }, - "end": { - "$date": "2021-07-27T14:44:22.000Z" - }, - "events": [ - { - "uuid": "7c896242-e3e0-4acc-b9ad-2cdf3eff43a7", - "start": { - "$date": "2021-07-27T14:05:30.000Z" - }, - "end": { - "$date": "2021-07-27T14:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2ae15167-3c17-4c53-97cf-06746bdae999", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T15:03:42.000Z" - }, - "end": { - "$date": "2021-07-27T15:14:43.000Z" - }, - "events": [ - { - "uuid": "c779303b-5ffa-48cb-9c34-ed14e9ab2c15", - "start": { - "$date": "2021-07-27T15:03:42.000Z" - }, - "end": { - "$date": "2021-07-27T15:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "023dd005-a450-430b-8bd1-5dbb7e68e8f1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T15:50:58.000Z" - }, - "end": { - "$date": "2021-07-27T16:56:26.000Z" - }, - "events": [ - { - "uuid": "fb4c822f-b172-4e1a-bed4-321ed213e621", - "start": { - "$date": "2021-07-27T15:50:58.000Z" - }, - "end": { - "$date": "2021-07-27T16:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "c135fab1-2eeb-4787-9d24-870ad6b596bb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T15:52:36.000Z" - }, - "end": { - "$date": "2021-07-27T16:32:08.000Z" - }, - "events": [ - { - "uuid": "059faae3-2d7b-4637-b515-1159da18a203", - "start": { - "$date": "2021-07-27T15:52:36.000Z" - }, - "end": { - "$date": "2021-07-27T16:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e5de1274-4b6b-45a1-8e0b-a810355ac485", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T16:23:10.000Z" - }, - "end": { - "$date": "2021-07-27T16:34:41.000Z" - }, - "events": [ - { - "uuid": "e7d85d6e-793b-4e09-a243-ea909076cf5d", - "start": { - "$date": "2021-07-27T16:23:10.000Z" - }, - "end": { - "$date": "2021-07-27T16:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "091a5d4e-7af2-4a0b-9c8a-54bad1ad9780", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T16:33:03.000Z" - }, - "end": { - "$date": "2021-07-27T16:34:28.000Z" - }, - "events": [ - { - "uuid": "de8b0e4e-be03-4a53-a6cc-2db326849f88", - "start": { - "$date": "2021-07-27T16:33:03.000Z" - }, - "end": { - "$date": "2021-07-27T16:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "df6549d0-a50b-42af-ab03-086d07473136", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-27T17:57:08.000Z" - }, - "end": { - "$date": "2021-07-27T20:09:49.000Z" - }, - "events": [ - { - "uuid": "243723a8-de4a-42a5-82a6-70a3156da4de", - "start": { - "$date": "2021-07-27T17:57:08.000Z" - }, - "end": { - "$date": "2021-07-27T20:09:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "526bf68b-32f9-4f26-be41-cfd5484b1dc4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T18:26:40.000Z" - }, - "end": { - "$date": "2021-07-27T18:37:06.000Z" - }, - "events": [ - { - "uuid": "9db51309-f477-45e4-98ef-86f5c8fc45a9", - "start": { - "$date": "2021-07-27T18:26:40.000Z" - }, - "end": { - "$date": "2021-07-27T18:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "057a5d36-c4c4-4f32-8254-b782a52cfec3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T19:29:21.000Z" - }, - "end": { - "$date": "2021-07-27T19:48:38.000Z" - }, - "events": [ - { - "uuid": "aace7266-af4c-41d2-bda7-84ba10265d9b", - "start": { - "$date": "2021-07-27T19:29:21.000Z" - }, - "end": { - "$date": "2021-07-27T19:42:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c65f6cd8-1eb8-44c2-863c-fa354db3d3e8", - "start": { - "$date": "2021-07-27T19:42:21.000Z" - }, - "end": { - "$date": "2021-07-27T19:48:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "56996095-b355-447c-8c92-0ed1b1910164", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-27T19:44:17.000Z" - }, - "end": { - "$date": "2021-07-27T19:45:37.000Z" - }, - "events": [ - { - "uuid": "830cf7b9-b2a9-4484-bce5-5ef270566d0f", - "start": { - "$date": "2021-07-27T19:44:17.000Z" - }, - "end": { - "$date": "2021-07-27T19:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "2740676d-c1d7-41a2-b423-29b5dc4b0267", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-28T00:16:10.000Z" - }, - "end": { - "$date": "2021-07-28T00:16:39.000Z" - }, - "events": [ - { - "uuid": "5112e1c9-b682-4761-b9f4-8b5faf21b6ef", - "start": { - "$date": "2021-07-28T00:16:10.000Z" - }, - "end": { - "$date": "2021-07-28T00:16:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "30a6d7ed-3ebd-40be-a258-abc757f998ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-27T20:36:24.000Z" - }, - "end": { - "$date": "2021-07-27T21:04:11.000Z" - }, - "events": [ - { - "uuid": "15fe8a6b-5f69-490a-8ca1-9fad20904f5f", - "start": { - "$date": "2021-07-27T20:36:24.000Z" - }, - "end": { - "$date": "2021-07-27T21:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1ac9f69c-bb41-4c45-ae36-9453085d57c2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T20:47:39.000Z" - }, - "end": { - "$date": "2021-07-27T21:02:16.000Z" - }, - "events": [ - { - "uuid": "f5a8904d-5580-452d-9a72-b4e1c9c197e6", - "start": { - "$date": "2021-07-27T20:47:39.000Z" - }, - "end": { - "$date": "2021-07-27T21:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "db0fe061-fb48-4b8b-82fe-a83079f1917f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T21:26:30.000Z" - }, - "end": { - "$date": "2021-07-27T22:24:58.000Z" - }, - "events": [ - { - "uuid": "f7dc6713-d945-4638-8657-5743927ba245", - "start": { - "$date": "2021-07-27T21:26:30.000Z" - }, - "end": { - "$date": "2021-07-27T22:24:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "efea6ac2-13e7-4333-9be6-78570255d4f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T22:25:18.000Z" - }, - "end": { - "$date": "2021-07-27T23:49:35.000Z" - }, - "events": [ - { - "uuid": "cc71165d-8168-46ea-9c15-c8727e89781f", - "start": { - "$date": "2021-07-27T22:25:18.000Z" - }, - "end": { - "$date": "2021-07-27T23:49:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "785e6350-ec2b-401e-a94d-3392d0513185", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-27T22:38:28.000Z" - }, - "end": { - "$date": "2021-07-27T23:30:04.000Z" - }, - "events": [ - { - "uuid": "f24f0708-54b6-4cae-b731-7bdbdc9aaa4e", - "start": { - "$date": "2021-07-27T22:38:28.000Z" - }, - "end": { - "$date": "2021-07-27T23:30:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "0ef34352-c26c-4ca0-baf9-5a41df0dfbf4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T23:08:24.000Z" - }, - "end": { - "$date": "2021-07-27T23:09:39.000Z" - }, - "events": [ - { - "uuid": "3d1e104f-d022-4257-ad5f-99d5cdfd6a0d", - "start": { - "$date": "2021-07-27T23:08:24.000Z" - }, - "end": { - "$date": "2021-07-27T23:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8b655edb-46d0-4f65-9561-96dc5c3d2a1b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-27T23:10:19.000Z" - }, - "end": { - "$date": "2021-07-28T03:37:21.000Z" - }, - "events": [ - { - "uuid": "bdeec88e-16b7-4f4e-abf2-420c2d61b5c7", - "start": { - "$date": "2021-07-27T23:10:19.000Z" - }, - "end": { - "$date": "2021-07-28T03:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "57cce1ed-ebfa-49c0-b595-f4256f77566a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-27T23:49:56.000Z" - }, - "end": { - "$date": "2021-07-28T00:52:22.000Z" - }, - "events": [ - { - "uuid": "884ab8f9-acbd-4184-89e6-71f1e5b6dc12", - "start": { - "$date": "2021-07-27T23:49:56.000Z" - }, - "end": { - "$date": "2021-07-28T00:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "44369781-0181-49df-a3e1-3c9ede7c949b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-28T00:17:30.000Z" - }, - "end": { - "$date": "2021-07-28T00:38:56.000Z" - }, - "events": [ - { - "uuid": "cc755ad8-9d7d-4f9d-b49a-da7bf5e02369", - "start": { - "$date": "2021-07-28T00:17:30.000Z" - }, - "end": { - "$date": "2021-07-28T00:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9caa0084-1020-4b59-9b7d-6f66132dfa76", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-28T02:10:05.000Z" - }, - "end": { - "$date": "2021-07-28T03:32:25.000Z" - }, - "events": [ - { - "uuid": "936f7406-f290-4d71-90d1-30910162c8e4", - "start": { - "$date": "2021-07-28T02:10:05.000Z" - }, - "end": { - "$date": "2021-07-28T03:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "74ec9b58-4ec8-43a1-b553-14ee3c4880ad", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-28T02:10:08.000Z" - }, - "end": { - "$date": "2021-07-28T03:32:19.000Z" - }, - "events": [ - { - "uuid": "cf99a541-11e3-41f2-b489-d0e89ce47bd0", - "start": { - "$date": "2021-07-28T02:10:08.000Z" - }, - "end": { - "$date": "2021-07-28T03:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9d3280bf-4824-47ae-9ea2-b7eb40412f58", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-28T02:12:05.000Z" - }, - "end": { - "$date": "2021-07-28T03:37:38.000Z" - }, - "events": [ - { - "uuid": "ce9a8373-87a7-4c64-aa2b-98ae6aa19c31", - "start": { - "$date": "2021-07-28T02:12:05.000Z" - }, - "end": { - "$date": "2021-07-28T03:37:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d75245b2-516d-4777-b061-0c02b05e09aa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T02:13:10.000Z" - }, - "end": { - "$date": "2021-07-28T03:21:41.000Z" - }, - "events": [ - { - "uuid": "ce7739d3-b99b-403e-9cc0-8a713955f678", - "start": { - "$date": "2021-07-28T02:13:10.000Z" - }, - "end": { - "$date": "2021-07-28T03:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "f9381cc9-77a4-43d2-9a9a-70725e970b42", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-28T03:20:09.000Z" - }, - "end": { - "$date": "2021-07-28T03:44:06.000Z" - }, - "events": [ - { - "uuid": "fd11c12a-cfb6-4bc9-9997-7ec98e95ea43", - "start": { - "$date": "2021-07-28T03:20:09.000Z" - }, - "end": { - "$date": "2021-07-28T03:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0db72dac-4fde-4751-8940-9fdbda550b71", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T03:21:54.000Z" - }, - "end": { - "$date": "2021-07-28T03:32:05.000Z" - }, - "events": [ - { - "uuid": "41059e05-7fc2-46c3-81f3-a005c77965fa", - "start": { - "$date": "2021-07-28T03:21:54.000Z" - }, - "end": { - "$date": "2021-07-28T03:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "33673d03-1cd1-4bd8-acbd-7c17e6c18d77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-28T03:25:34.000Z" - }, - "end": { - "$date": "2021-07-28T03:39:24.000Z" - }, - "events": [ - { - "uuid": "21efc212-17ae-49ef-aeb0-bdaeeb44c0f4", - "start": { - "$date": "2021-07-28T03:25:34.000Z" - }, - "end": { - "$date": "2021-07-28T03:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "072b13f6-602e-4217-bcc7-054302aa6534", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T03:33:14.000Z" - }, - "end": { - "$date": "2021-07-28T03:34:25.000Z" - }, - "events": [ - { - "uuid": "bb999acb-89da-4f4e-8506-0ed16297c159", - "start": { - "$date": "2021-07-28T03:33:14.000Z" - }, - "end": { - "$date": "2021-07-28T03:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d5c63929-58a7-4de1-aba6-1083ae97816d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-28T03:33:20.000Z" - }, - "end": { - "$date": "2021-07-28T03:40:40.000Z" - }, - "events": [ - { - "uuid": "d5e88387-d8cd-470a-829d-272879799566", - "start": { - "$date": "2021-07-28T03:33:20.000Z" - }, - "end": { - "$date": "2021-07-28T03:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9585043c-1222-4e16-baf5-e92a71448b99", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T03:34:44.000Z" - }, - "end": { - "$date": "2021-07-28T03:36:05.000Z" - }, - "events": [ - { - "uuid": "23660e07-969d-41b6-97e7-5e70f55acdbd", - "start": { - "$date": "2021-07-28T03:34:44.000Z" - }, - "end": { - "$date": "2021-07-28T03:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fb7dd27c-6253-4a23-9f16-662575d4c43e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T03:37:31.000Z" - }, - "end": { - "$date": "2021-07-28T07:10:56.000Z" - }, - "events": [ - { - "uuid": "1843f8a9-0546-4db3-bc88-22fda7de8a4d", - "start": { - "$date": "2021-07-28T03:37:31.000Z" - }, - "end": { - "$date": "2021-07-28T07:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "59e145e7-91a0-4c6c-98d5-162b6c5ecb3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-28T03:37:52.000Z" - }, - "end": { - "$date": "2021-07-28T03:40:03.000Z" - }, - "events": [ - { - "uuid": "c745d80b-1650-4fb1-aca5-1d231f4a9fb6", - "start": { - "$date": "2021-07-28T03:37:52.000Z" - }, - "end": { - "$date": "2021-07-28T03:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9e1ca001-b8f6-42f6-9713-ecbf674d71ec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T03:38:55.000Z" - }, - "end": { - "$date": "2021-07-28T04:15:17.000Z" - }, - "events": [ - { - "uuid": "d3aea849-3c37-4e01-a99a-4b473d520bac", - "start": { - "$date": "2021-07-28T03:38:55.000Z" - }, - "end": { - "$date": "2021-07-28T04:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "565f0aec-b3f3-4560-af70-b412c4faf5de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-28T03:39:55.000Z" - }, - "end": { - "$date": "2021-07-28T04:15:55.000Z" - }, - "events": [ - { - "uuid": "b2b6054b-e3c4-4c19-bee7-bc6e115795a7", - "start": { - "$date": "2021-07-28T03:39:55.000Z" - }, - "end": { - "$date": "2021-07-28T04:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "106f11a4-85b7-4212-a637-82d7329b2fd1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-28T03:44:47.000Z" - }, - "end": { - "$date": "2021-07-28T04:00:13.000Z" - }, - "events": [ - { - "uuid": "043ae9b3-382a-4d89-b784-45aefaf073a3", - "start": { - "$date": "2021-07-28T03:44:47.000Z" - }, - "end": { - "$date": "2021-07-28T04:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5f78ecf4-b26d-4a2f-8de3-ab24dac8027e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-28T03:56:49.000Z" - }, - "end": { - "$date": "2021-07-28T04:43:30.000Z" - }, - "events": [ - { - "uuid": "1a51f3c9-1640-4554-8d39-5483f95728a2", - "start": { - "$date": "2021-07-28T03:56:49.000Z" - }, - "end": { - "$date": "2021-07-28T04:43:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "50413937-13d9-4c17-af3f-de69959734d5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-28T03:57:33.000Z" - }, - "end": { - "$date": "2021-07-28T04:43:11.000Z" - }, - "events": [ - { - "uuid": "49d66dc0-ced0-455c-a70a-93cd4a8c1640", - "start": { - "$date": "2021-07-28T03:57:33.000Z" - }, - "end": { - "$date": "2021-07-28T04:43:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4bdf454a-c797-4c5f-97e5-ff26a056d512", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-28T04:00:11.000Z" - }, - "end": { - "$date": "2021-07-28T04:43:19.000Z" - }, - "events": [ - { - "uuid": "3422bddb-a7af-4d80-8462-95432f567a5f", - "start": { - "$date": "2021-07-28T04:00:11.000Z" - }, - "end": { - "$date": "2021-07-28T04:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f83d8aed-c0ff-4094-ac8d-72214fc8eccb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-28T04:16:11.000Z" - }, - "end": { - "$date": "2021-07-28T06:37:26.000Z" - }, - "events": [ - { - "uuid": "2e5de1ba-5646-4e53-9cb7-43c4210083fd", - "start": { - "$date": "2021-07-28T04:16:11.000Z" - }, - "end": { - "$date": "2021-07-28T06:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b34752c6-59f5-4391-9f7f-a4f7a007ccb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-28T04:33:54.000Z" - }, - "end": { - "$date": "2021-07-28T05:00:07.000Z" - }, - "events": [ - { - "uuid": "15f1f6d2-cfa6-4869-bac4-0356a7063c16", - "start": { - "$date": "2021-07-28T04:33:54.000Z" - }, - "end": { - "$date": "2021-07-28T05:00:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "15e1a0b1-e62d-473b-a8d9-97a31f3b3525", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-28T05:03:31.000Z" - }, - "end": { - "$date": "2021-07-28T06:39:32.000Z" - }, - "events": [ - { - "uuid": "feaca850-85c3-4f4f-a8c0-d9a15621c21a", - "start": { - "$date": "2021-07-28T05:03:31.000Z" - }, - "end": { - "$date": "2021-07-28T06:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f9a72307-f0ce-41f7-9420-e1a28f6cf665", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-28T12:34:42.000Z" - }, - "end": { - "$date": "2021-07-28T12:59:59.000Z" - }, - "events": [ - { - "uuid": "7fd40110-170c-403b-ae62-516853106b52", - "start": { - "$date": "2021-07-28T12:34:42.000Z" - }, - "end": { - "$date": "2021-07-28T12:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cd4e7b11-8697-4f70-87b3-15c8a4843467", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-28T13:30:32.000Z" - }, - "end": { - "$date": "2021-07-28T14:02:50.000Z" - }, - "events": [ - { - "uuid": "2585b0dc-8cb3-4a33-8d03-7dff63f2a9ac", - "start": { - "$date": "2021-07-28T13:30:32.000Z" - }, - "end": { - "$date": "2021-07-28T14:02:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5e5453ac-fef2-493d-9289-d099ab382039", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T17:07:09.000Z" - }, - "end": { - "$date": "2021-07-28T17:10:09.000Z" - }, - "events": [ - { - "uuid": "56817272-a204-4773-ade2-6c4fc2497453", - "start": { - "$date": "2021-07-28T17:07:09.000Z" - }, - "end": { - "$date": "2021-07-28T17:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3e04336f-ec07-4237-a8b7-ed471b66ad59", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T17:10:44.000Z" - }, - "end": { - "$date": "2021-07-28T17:15:28.000Z" - }, - "events": [ - { - "uuid": "ae5b59fa-4c3c-4d72-b9d8-0d4054c4f962", - "start": { - "$date": "2021-07-28T17:10:44.000Z" - }, - "end": { - "$date": "2021-07-28T17:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2822971a-2d26-45d9-9498-d00e1280c92d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-28T18:09:50.000Z" - }, - "end": { - "$date": "2021-07-28T18:37:00.000Z" - }, - "events": [ - { - "uuid": "92d661fd-dff1-4707-9757-ec58954b361c", - "start": { - "$date": "2021-07-28T18:09:50.000Z" - }, - "end": { - "$date": "2021-07-28T18:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dbdcd61e-0ec4-4330-a03f-f9b4f16976e5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T19:11:06.000Z" - }, - "end": { - "$date": "2021-07-28T19:17:26.000Z" - }, - "events": [ - { - "uuid": "187ba5d8-18b3-491d-aa11-9e36fbb8b99c", - "start": { - "$date": "2021-07-28T19:11:06.000Z" - }, - "end": { - "$date": "2021-07-28T19:17:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "53adb152-245d-43fa-99e9-25d188863228", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-28T19:50:14.000Z" - }, - "end": { - "$date": "2021-07-28T20:30:19.000Z" - }, - "events": [ - { - "uuid": "e49c57a3-11fa-415c-9cf6-40e0c6575ac3", - "start": { - "$date": "2021-07-28T19:50:14.000Z" - }, - "end": { - "$date": "2021-07-28T20:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24dd8458-6b8e-41f8-95ba-96e8d73ca83e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-28T20:40:29.000Z" - }, - "end": { - "$date": "2021-07-28T21:08:32.000Z" - }, - "events": [ - { - "uuid": "89120080-388e-4e3d-a90a-971d877b1280", - "start": { - "$date": "2021-07-28T20:40:29.000Z" - }, - "end": { - "$date": "2021-07-28T21:08:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "aa3825e7-7477-477f-8d47-14f133a70280", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T20:44:20.000Z" - }, - "end": { - "$date": "2021-07-28T20:46:50.000Z" - }, - "events": [ - { - "uuid": "10cc20e0-7d19-4433-b2e6-a253787ac5ec", - "start": { - "$date": "2021-07-28T20:44:20.000Z" - }, - "end": { - "$date": "2021-07-28T20:46:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "96cbf004-0ed8-4a0a-be64-ce1eb3fde2cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T21:35:30.000Z" - }, - "end": { - "$date": "2021-07-28T22:02:02.000Z" - }, - "events": [ - { - "uuid": "22504daf-8120-4d5d-9ccc-a2e149acd190", - "start": { - "$date": "2021-07-28T21:35:30.000Z" - }, - "end": { - "$date": "2021-07-28T21:50:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0da05fa4-e0aa-4b72-aeb6-c8625e5ee686", - "start": { - "$date": "2021-07-28T21:50:30.000Z" - }, - "end": { - "$date": "2021-07-28T22:02:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "84a77e5c-c338-477a-9555-9624300a284b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T21:52:36.000Z" - }, - "end": { - "$date": "2021-07-28T21:55:07.000Z" - }, - "events": [ - { - "uuid": "19aed3de-1074-4db8-9568-2b316cec7484", - "start": { - "$date": "2021-07-28T21:52:36.000Z" - }, - "end": { - "$date": "2021-07-28T21:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "26d33e11-c192-410b-8253-c48d5c3b8390", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T22:08:41.000Z" - }, - "end": { - "$date": "2021-07-28T22:12:06.000Z" - }, - "events": [ - { - "uuid": "8ce9e458-6a4f-46ae-8334-ffc1e55b1002", - "start": { - "$date": "2021-07-28T22:08:41.000Z" - }, - "end": { - "$date": "2021-07-28T22:12:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "681f1d8e-c2b7-4599-b551-60937d83ab8b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T22:12:31.000Z" - }, - "end": { - "$date": "2021-07-28T22:13:46.000Z" - }, - "events": [ - { - "uuid": "cc87ebe3-d0fa-4bbf-bc93-421ceb2a0f9b", - "start": { - "$date": "2021-07-28T22:12:31.000Z" - }, - "end": { - "$date": "2021-07-28T22:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1bced695-9127-4366-a950-479e7ee015b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T22:16:57.000Z" - }, - "end": { - "$date": "2021-07-28T22:57:46.000Z" - }, - "events": [ - { - "uuid": "91840fd0-0f16-4d11-83f8-3d994952cc69", - "start": { - "$date": "2021-07-28T22:16:57.000Z" - }, - "end": { - "$date": "2021-07-28T22:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "eee57ed7-093b-446c-8f4c-b1dd07651a13", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-28T22:55:43.000Z" - }, - "end": { - "$date": "2021-07-28T23:13:54.000Z" - }, - "events": [ - { - "uuid": "f8819274-4576-4306-a2f4-f9f490e5b714", - "start": { - "$date": "2021-07-28T22:55:43.000Z" - }, - "end": { - "$date": "2021-07-28T23:11:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c5e3860-e6f7-4cc2-b868-700c53f6322d", - "start": { - "$date": "2021-07-28T23:11:43.000Z" - }, - "end": { - "$date": "2021-07-28T23:13:54.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e11c5400-18da-455d-a50e-78448f8f4d4f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-28T22:57:35.000Z" - }, - "end": { - "$date": "2021-07-28T23:28:51.000Z" - }, - "events": [ - { - "uuid": "3a0f69e4-ce29-4433-b099-09f36c863b0a", - "start": { - "$date": "2021-07-28T22:57:35.000Z" - }, - "end": { - "$date": "2021-07-28T23:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6a145b06-2eb0-45d0-976e-286ef4fdec0a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-28T23:07:48.000Z" - }, - "end": { - "$date": "2021-07-28T23:29:20.000Z" - }, - "events": [ - { - "uuid": "19d155e0-4934-4ce9-8613-1d098f9efb80", - "start": { - "$date": "2021-07-28T23:07:48.000Z" - }, - "end": { - "$date": "2021-07-28T23:29:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "620a41e5-a016-4c32-8ec5-cc73cf487aff", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T00:02:40.000Z" - }, - "end": { - "$date": "2021-07-29T00:06:00.000Z" - }, - "events": [ - { - "uuid": "5dd5e715-6138-4faf-91d0-f537b0925f36", - "start": { - "$date": "2021-07-29T00:02:40.000Z" - }, - "end": { - "$date": "2021-07-29T00:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a91952f8-f951-47ad-b8ee-5ea1ad6800a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T00:18:11.000Z" - }, - "end": { - "$date": "2021-07-29T00:55:58.000Z" - }, - "events": [ - { - "uuid": "a31b95d6-33e2-46a7-ad82-e83366408b86", - "start": { - "$date": "2021-07-29T00:18:11.000Z" - }, - "end": { - "$date": "2021-07-29T00:55:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c534654d-9a6d-48da-88b2-4eb668fa92e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-29T00:18:16.000Z" - }, - "end": { - "$date": "2021-07-29T00:56:05.000Z" - }, - "events": [ - { - "uuid": "474db326-fde0-431a-9545-91339ce32365", - "start": { - "$date": "2021-07-29T00:18:16.000Z" - }, - "end": { - "$date": "2021-07-29T00:56:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "822428f8-2c89-4fc3-a6c0-571420e3e83a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T01:01:53.000Z" - }, - "end": { - "$date": "2021-07-29T01:18:33.000Z" - }, - "events": [ - { - "uuid": "3feb84ad-af7f-483c-a46e-052faa9b04c5", - "start": { - "$date": "2021-07-29T01:01:53.000Z" - }, - "end": { - "$date": "2021-07-29T01:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69a7bc44-eb02-4d84-ae5b-c4b4b1d8f180", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-29T01:01:23.000Z" - }, - "end": { - "$date": "2021-07-29T01:18:50.000Z" - }, - "events": [ - { - "uuid": "52f4063a-c8fa-4aa7-ba25-8e6604b36c14", - "start": { - "$date": "2021-07-29T01:01:23.000Z" - }, - "end": { - "$date": "2021-07-29T01:18:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "af480b83-3029-41c9-ba20-cda7127785f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T01:02:01.000Z" - }, - "end": { - "$date": "2021-07-29T02:46:26.000Z" - }, - "events": [ - { - "uuid": "ac914250-a214-4d09-9374-9d4e9de1adf1", - "start": { - "$date": "2021-07-29T01:02:01.000Z" - }, - "end": { - "$date": "2021-07-29T02:08:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd071736-b061-42a5-bec3-1b9e2663f63a", - "start": { - "$date": "2021-07-29T02:08:01.000Z" - }, - "end": { - "$date": "2021-07-29T02:10:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f0baf58-2310-465d-979e-f5e25f1ceca8", - "start": { - "$date": "2021-07-29T02:10:01.000Z" - }, - "end": { - "$date": "2021-07-29T02:23:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9d99d6f-a01a-4538-80a2-c54d5d080591", - "start": { - "$date": "2021-07-29T02:23:01.000Z" - }, - "end": { - "$date": "2021-07-29T02:29:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4880be3-7af1-41cc-9786-b73c0dc98534", - "start": { - "$date": "2021-07-29T02:29:01.000Z" - }, - "end": { - "$date": "2021-07-29T02:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6cecfda0-ac2f-43b1-850b-85ae832ec332", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T02:12:15.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:29.000Z" - }, - "events": [ - { - "uuid": "46f34812-6eb7-4db2-9116-0e959d5d3b74", - "start": { - "$date": "2021-07-29T02:12:15.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ace2b86d-b8f2-42ad-9dcc-a81d746aa731", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-29T02:46:43.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:08.000Z" - }, - "events": [ - { - "uuid": "e05b6e46-9516-4024-8de2-d71ae76dc1ed", - "start": { - "$date": "2021-07-29T02:46:43.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "35747bee-c5a4-4c63-85e5-9b3b0b1dfd69", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-29T02:26:39.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:48.000Z" - }, - "events": [ - { - "uuid": "b22e32df-2eeb-48c9-a565-0f43ba9ae572", - "start": { - "$date": "2021-07-29T02:26:39.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "39141e1f-edb2-4082-aafb-c67cc4aaed8f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-29T02:27:59.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:11.000Z" - }, - "events": [ - { - "uuid": "1585426d-7232-468b-bd09-219e1c496368", - "start": { - "$date": "2021-07-29T02:27:59.000Z" - }, - "end": { - "$date": "2021-07-29T04:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6a898409-bbd2-4fc7-9dce-456474ba8646", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-29T02:43:20.000Z" - }, - "end": { - "$date": "2021-07-29T04:47:09.000Z" - }, - "events": [ - { - "uuid": "cf572d37-3658-454a-b243-7e44107d6797", - "start": { - "$date": "2021-07-29T02:43:20.000Z" - }, - "end": { - "$date": "2021-07-29T04:26:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83d7e4cb-e7da-47a7-8e7f-a431595ae5d1", - "start": { - "$date": "2021-07-29T04:26:20.000Z" - }, - "end": { - "$date": "2021-07-29T04:29:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "83d454d5-3781-4f6c-b7dd-1398b9676d2f", - "start": { - "$date": "2021-07-29T04:29:20.000Z" - }, - "end": { - "$date": "2021-07-29T04:47:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "71d95bb7-ec59-44ce-bfc8-ec13ef5775b7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T02:46:34.000Z" - }, - "end": { - "$date": "2021-07-29T06:16:32.000Z" - }, - "events": [ - { - "uuid": "96c5fb40-08d8-4bae-aebc-4fdb2eca20b0", - "start": { - "$date": "2021-07-29T02:46:34.000Z" - }, - "end": { - "$date": "2021-07-29T06:16:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91d7d031-8190-4c03-8085-436f01ccadf7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-29T03:57:53.000Z" - }, - "end": { - "$date": "2021-07-29T05:16:47.000Z" - }, - "events": [ - { - "uuid": "512c0097-0299-44bf-b45f-2d3f32df64ef", - "start": { - "$date": "2021-07-29T03:57:53.000Z" - }, - "end": { - "$date": "2021-07-29T05:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3102787a-f3ef-45af-8db7-272c7c72d340", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-29T04:01:50.000Z" - }, - "end": { - "$date": "2021-07-29T04:58:21.000Z" - }, - "events": [ - { - "uuid": "c3e3ece2-1a41-4bf9-b1b5-fefb000cf285", - "start": { - "$date": "2021-07-29T04:01:50.000Z" - }, - "end": { - "$date": "2021-07-29T04:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f885c235-ec94-4934-ba75-1d481ecadafe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-29T04:02:06.000Z" - }, - "end": { - "$date": "2021-07-29T04:36:06.000Z" - }, - "events": [ - { - "uuid": "ebe1093e-fe89-4ece-b9ff-4f4cfbf650bd", - "start": { - "$date": "2021-07-29T04:02:06.000Z" - }, - "end": { - "$date": "2021-07-29T04:36:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "632556db-31da-43c8-bd03-954de81bf926", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-29T04:03:14.000Z" - }, - "end": { - "$date": "2021-07-29T05:03:36.000Z" - }, - "events": [ - { - "uuid": "03c4d70e-f5b3-421d-b595-591a9f6f0bbf", - "start": { - "$date": "2021-07-29T04:03:14.000Z" - }, - "end": { - "$date": "2021-07-29T05:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e6a0a65b-bbfb-46a5-9cb8-9a91c54f252b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-29T04:44:57.000Z" - }, - "end": { - "$date": "2021-07-29T04:46:02.000Z" - }, - "events": [ - { - "uuid": "6f3e404a-ae71-4bc5-9b97-0ff1644590d6", - "start": { - "$date": "2021-07-29T04:44:57.000Z" - }, - "end": { - "$date": "2021-07-29T04:46:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3a8215f1-f245-4b5a-acd1-047b16290565", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-29T04:46:42.000Z" - }, - "end": { - "$date": "2021-07-29T05:42:38.000Z" - }, - "events": [ - { - "uuid": "23805295-607b-44d8-97ed-f8b65a0f6a1e", - "start": { - "$date": "2021-07-29T04:46:42.000Z" - }, - "end": { - "$date": "2021-07-29T05:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "433ba304-03f3-4e61-a266-1b5b5f4ba133", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-29T04:47:25.000Z" - }, - "end": { - "$date": "2021-07-29T05:32:15.000Z" - }, - "events": [ - { - "uuid": "c6aadb77-3e4c-4840-af8d-30f216818975", - "start": { - "$date": "2021-07-29T04:47:25.000Z" - }, - "end": { - "$date": "2021-07-29T05:32:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c3ed774b-af43-4a12-baff-9626c57db256", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-29T04:59:23.000Z" - }, - "end": { - "$date": "2021-07-29T05:16:41.000Z" - }, - "events": [ - { - "uuid": "43ca6a2b-cfec-49b9-9959-fa75292d7c90", - "start": { - "$date": "2021-07-29T04:59:23.000Z" - }, - "end": { - "$date": "2021-07-29T05:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "523a20c3-7dc6-49cd-844a-70c76559f1dd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-29T05:03:45.000Z" - }, - "end": { - "$date": "2021-07-29T05:16:54.000Z" - }, - "events": [ - { - "uuid": "9e6421ff-d1b0-4acc-92f5-042331474096", - "start": { - "$date": "2021-07-29T05:03:45.000Z" - }, - "end": { - "$date": "2021-07-29T05:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "382092d2-af5a-4596-b1a7-a22036edacd4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-29T05:17:08.000Z" - }, - "end": { - "$date": "2021-07-29T06:06:49.000Z" - }, - "events": [ - { - "uuid": "68ebdfba-c98a-4889-803f-6a4473f8a929", - "start": { - "$date": "2021-07-29T05:17:08.000Z" - }, - "end": { - "$date": "2021-07-29T06:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8cbd2be-1d1b-4442-8343-e5d050077943", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-29T05:17:11.000Z" - }, - "end": { - "$date": "2021-07-29T06:05:38.000Z" - }, - "events": [ - { - "uuid": "e66cee43-1ba0-4c98-be6c-b0a87d73c170", - "start": { - "$date": "2021-07-29T05:17:11.000Z" - }, - "end": { - "$date": "2021-07-29T06:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "251efba5-733f-4afe-855c-0d4b9631e077", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-29T05:17:20.000Z" - }, - "end": { - "$date": "2021-07-29T06:06:42.000Z" - }, - "events": [ - { - "uuid": "f46b9ad2-6121-4e02-83b7-f58dba97281c", - "start": { - "$date": "2021-07-29T05:17:20.000Z" - }, - "end": { - "$date": "2021-07-29T06:06:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e579d8ba-e4de-4387-8726-fa2ea9db8dac", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-29T06:12:20.000Z" - }, - "end": { - "$date": "2021-07-29T06:33:36.000Z" - }, - "events": [ - { - "uuid": "f22cf287-0ed0-40e7-84c8-0666bd78d872", - "start": { - "$date": "2021-07-29T06:12:20.000Z" - }, - "end": { - "$date": "2021-07-29T06:33:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6ee1d692-67fd-4517-9374-ba8cef0efb78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T06:16:52.000Z" - }, - "end": { - "$date": "2021-07-29T07:53:55.000Z" - }, - "events": [ - { - "uuid": "06c2f697-e2f5-4c13-85a0-b9d64f1f3798", - "start": { - "$date": "2021-07-29T06:16:52.000Z" - }, - "end": { - "$date": "2021-07-29T07:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "41a087dd-6c02-4d85-81b6-d1ca4f856bf9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T07:54:36.000Z" - }, - "end": { - "$date": "2021-07-29T08:00:59.000Z" - }, - "events": [ - { - "uuid": "be8b8a6a-d9c8-443a-b4a7-c118a15a1185", - "start": { - "$date": "2021-07-29T07:54:36.000Z" - }, - "end": { - "$date": "2021-07-29T08:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "69c8e5b7-b008-44d5-b003-7e5bd371b1c1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-29T13:05:40.000Z" - }, - "end": { - "$date": "2021-07-29T13:49:02.000Z" - }, - "events": [ - { - "uuid": "b704736d-fa01-45ea-a99d-34270ad64f0b", - "start": { - "$date": "2021-07-29T13:05:40.000Z" - }, - "end": { - "$date": "2021-07-29T13:49:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "f39c01fc-54d3-4570-91a6-2e53f0475977", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-29T14:39:22.000Z" - }, - "end": { - "$date": "2021-07-29T14:39:25.000Z" - }, - "events": [ - { - "uuid": "96b563f7-9f5c-4136-92e2-99a124d2ebb4", - "start": { - "$date": "2021-07-29T14:39:22.000Z" - }, - "end": { - "$date": "2021-07-29T14:39:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cb673259-c6cd-4c5f-afaf-7238419e1fc4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T13:55:21.000Z" - }, - "end": { - "$date": "2021-07-29T14:03:55.000Z" - }, - "events": [ - { - "uuid": "f6d2f069-45c8-40e2-b3b7-da6ec8484691", - "start": { - "$date": "2021-07-29T13:55:21.000Z" - }, - "end": { - "$date": "2021-07-29T14:03:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4d80a6d2-d0ca-4425-ba49-ccffec5c523d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-29T14:01:45.000Z" - }, - "end": { - "$date": "2021-07-29T17:11:33.000Z" - }, - "events": [ - { - "uuid": "8c1104f5-b5bd-4b00-bf11-4f8e0875269d", - "start": { - "$date": "2021-07-29T14:01:45.000Z" - }, - "end": { - "$date": "2021-07-29T17:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3c42902e-fd4c-4a74-8884-6da531f09cd0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T15:55:00.000Z" - }, - "end": { - "$date": "2021-07-29T16:54:29.000Z" - }, - "events": [ - { - "uuid": "164343f6-2c2f-4916-b363-7372571f66fc", - "start": { - "$date": "2021-07-29T15:55:00.000Z" - }, - "end": { - "$date": "2021-07-29T16:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e602bfd8-c438-4153-bca2-bd4cca92dcf5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-29T16:02:13.000Z" - }, - "end": { - "$date": "2021-07-29T16:32:30.000Z" - }, - "events": [ - { - "uuid": "1f757298-06bb-4e02-829a-680c4d48ab1d", - "start": { - "$date": "2021-07-29T16:02:13.000Z" - }, - "end": { - "$date": "2021-07-29T16:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "afa47cc8-d4fc-4277-950a-7972de672462", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-29T18:00:09.000Z" - }, - "end": { - "$date": "2021-07-29T18:05:50.000Z" - }, - "events": [ - { - "uuid": "b07f17cc-f911-4639-ac94-eb9598083f8e", - "start": { - "$date": "2021-07-29T18:00:09.000Z" - }, - "end": { - "$date": "2021-07-29T18:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "044331ac-a20f-4862-a8cc-d2ddd24e6984", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-07-29T18:31:59.000Z" - }, - "end": { - "$date": "2021-07-29T18:42:37.000Z" - }, - "events": [ - { - "uuid": "3d12a2ef-3b64-480b-8f1f-1b907c992d98", - "start": { - "$date": "2021-07-29T18:31:59.000Z" - }, - "end": { - "$date": "2021-07-29T18:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "09baffca-7324-41b6-a4ea-e21c03dcf7eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T20:02:50.000Z" - }, - "end": { - "$date": "2021-07-29T20:03:10.000Z" - }, - "events": [ - { - "uuid": "ff9a2992-fd83-4c8a-a0e6-988a29d445cc", - "start": { - "$date": "2021-07-29T20:02:50.000Z" - }, - "end": { - "$date": "2021-07-29T20:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ffe1671-519f-40ef-aade-e3460a2bfd0d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-29T20:13:17.000Z" - }, - "end": { - "$date": "2021-07-29T20:46:56.000Z" - }, - "events": [ - { - "uuid": "8e52331e-0c61-471a-96b1-577edb83bf2f", - "start": { - "$date": "2021-07-29T20:13:17.000Z" - }, - "end": { - "$date": "2021-07-29T20:46:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "b9555c50-e526-4a52-be64-41e209bf8aa4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T20:56:29.000Z" - }, - "end": { - "$date": "2021-07-29T20:59:06.000Z" - }, - "events": [ - { - "uuid": "024fbac3-d64a-4da6-9154-c594cda4bd9a", - "start": { - "$date": "2021-07-29T20:56:29.000Z" - }, - "end": { - "$date": "2021-07-29T20:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "c46db914-9c55-413e-9d56-ef2bac0f71cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T21:59:35.000Z" - }, - "end": { - "$date": "2021-07-29T22:01:24.000Z" - }, - "events": [ - { - "uuid": "4e63a50c-abed-4707-95c8-63a66e002079", - "start": { - "$date": "2021-07-29T21:59:35.000Z" - }, - "end": { - "$date": "2021-07-29T22:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ceeed438-4be8-433b-9753-4ec109f22887", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-29T21:52:45.000Z" - }, - "end": { - "$date": "2021-07-30T00:10:33.000Z" - }, - "events": [ - { - "uuid": "a97878fc-6328-4c82-94c2-6c4505e0877b", - "start": { - "$date": "2021-07-29T21:52:45.000Z" - }, - "end": { - "$date": "2021-07-30T00:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "fc73b47f-033b-4ee2-a9ce-a760abb0c073", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T21:59:35.000Z" - }, - "end": { - "$date": "2021-07-29T22:04:34.000Z" - }, - "events": [ - { - "uuid": "12f78af9-5150-4aa5-9586-120079da235f", - "start": { - "$date": "2021-07-29T21:59:35.000Z" - }, - "end": { - "$date": "2021-07-29T22:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d8f34335-f763-4d63-a36b-c350aed56463", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-29T22:03:08.000Z" - }, - "end": { - "$date": "2021-07-30T02:10:21.000Z" - }, - "events": [ - { - "uuid": "a488e389-845d-425a-896a-10b985968876", - "start": { - "$date": "2021-07-29T22:03:08.000Z" - }, - "end": { - "$date": "2021-07-30T02:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "b537e954-a05e-4219-8979-d5a7b494e254", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-29T22:30:45.000Z" - }, - "end": { - "$date": "2021-07-29T22:31:06.000Z" - }, - "events": [ - { - "uuid": "04c9980f-a009-4f20-91b5-163c2c33df3c", - "start": { - "$date": "2021-07-29T22:30:45.000Z" - }, - "end": { - "$date": "2021-07-29T22:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87f17061-774f-4905-a145-74cda89a80d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-30T00:16:20.000Z" - }, - "end": { - "$date": "2021-07-30T02:05:34.000Z" - }, - "events": [ - { - "uuid": "a137b544-df13-4850-a6ec-fe36bd17241f", - "start": { - "$date": "2021-07-30T00:16:20.000Z" - }, - "end": { - "$date": "2021-07-30T02:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8c13b6f2-0ff1-46e4-8c79-9096671182ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-30T02:12:01.000Z" - }, - "end": { - "$date": "2021-07-30T03:16:11.000Z" - }, - "events": [ - { - "uuid": "aaab3be2-4d88-450c-87b6-0960faa22f6b", - "start": { - "$date": "2021-07-30T02:12:01.000Z" - }, - "end": { - "$date": "2021-07-30T03:16:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c8b3b42f-175c-4a46-954d-48ee197f3ad8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-30T02:27:01.000Z" - }, - "end": { - "$date": "2021-07-30T02:30:32.000Z" - }, - "events": [ - { - "uuid": "e4ac0005-def5-4ee6-8e63-44e23d7c4740", - "start": { - "$date": "2021-07-30T02:27:01.000Z" - }, - "end": { - "$date": "2021-07-30T02:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fce2da75-9dc0-4983-9c6b-a81edfdcbcc4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-30T03:09:58.000Z" - }, - "end": { - "$date": "2021-07-30T03:59:31.000Z" - }, - "events": [ - { - "uuid": "d0e62680-29ef-45cc-9c5d-1e3595851e5d", - "start": { - "$date": "2021-07-30T03:09:58.000Z" - }, - "end": { - "$date": "2021-07-30T03:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "77cc5e84-4d84-4cd8-89a0-b3a181464966", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-30T02:12:01.000Z" - }, - "end": { - "$date": "2021-07-30T07:54:00.000Z" - }, - "events": [ - { - "uuid": "13f868c9-5c68-4606-8003-c9f319816fde", - "start": { - "$date": "2021-07-30T02:12:01.000Z" - }, - "end": { - "$date": "2021-07-30T07:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0bc6ef78-cf0a-47ef-93ad-973dbbaa302c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-30T03:56:06.000Z" - }, - "end": { - "$date": "2021-07-30T05:08:23.000Z" - }, - "events": [ - { - "uuid": "82fddcc9-8bc8-4b48-b1d5-8aa582824925", - "start": { - "$date": "2021-07-30T03:56:06.000Z" - }, - "end": { - "$date": "2021-07-30T05:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a438ab67-2d41-4db3-94e3-0bf562c9b5a0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-07-30T03:56:41.000Z" - }, - "end": { - "$date": "2021-07-30T06:21:03.000Z" - }, - "events": [ - { - "uuid": "89bcb740-8eb9-49a2-b4a3-098e7796b670", - "start": { - "$date": "2021-07-30T03:56:41.000Z" - }, - "end": { - "$date": "2021-07-30T06:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2a67f827-45ee-4639-a06e-ab12092d5079", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-30T05:08:27.000Z" - }, - "end": { - "$date": "2021-07-30T06:21:42.000Z" - }, - "events": [ - { - "uuid": "ec6273ab-a064-4aae-a700-5ef6ba658c14", - "start": { - "$date": "2021-07-30T05:08:27.000Z" - }, - "end": { - "$date": "2021-07-30T06:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3062b44e-4803-4079-8b24-ebb61abcde36", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-30T14:31:45.000Z" - }, - "end": { - "$date": "2021-07-30T15:09:43.000Z" - }, - "events": [ - { - "uuid": "ff46a50c-dc73-4621-a55f-3162257003eb", - "start": { - "$date": "2021-07-30T14:31:45.000Z" - }, - "end": { - "$date": "2021-07-30T14:57:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4daa270e-3c19-4af5-9243-46cd648c072d", - "start": { - "$date": "2021-07-30T14:57:45.000Z" - }, - "end": { - "$date": "2021-07-30T15:04:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2da1746a-b684-40bd-a560-fdd60998fb58", - "start": { - "$date": "2021-07-30T15:04:45.000Z" - }, - "end": { - "$date": "2021-07-30T15:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "783f92a5-c264-43ef-a7d7-0c3b9a6780e8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-30T15:20:06.000Z" - }, - "end": { - "$date": "2021-07-30T18:50:04.000Z" - }, - "events": [ - { - "uuid": "bbf1cd47-1980-487b-afb5-6b8a0e7eeed1", - "start": { - "$date": "2021-07-30T15:20:06.000Z" - }, - "end": { - "$date": "2021-07-30T15:35:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4868f88-1167-496b-b2a6-dd8b611b71a5", - "start": { - "$date": "2021-07-30T15:35:06.000Z" - }, - "end": { - "$date": "2021-07-30T15:38:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "022d32c9-824f-41ba-82f6-c7b26f64be60", - "start": { - "$date": "2021-07-30T15:38:06.000Z" - }, - "end": { - "$date": "2021-07-30T18:22:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5840a78-3f5f-41e9-9246-6c501b8a319e", - "start": { - "$date": "2021-07-30T18:22:06.000Z" - }, - "end": { - "$date": "2021-07-30T18:50:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5885b975-efd4-40af-82de-2a83bf56fb66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-30T16:03:54.000Z" - }, - "end": { - "$date": "2021-07-30T17:35:21.000Z" - }, - "events": [ - { - "uuid": "74157d03-10b0-4346-b97a-4851a9966d61", - "start": { - "$date": "2021-07-30T16:03:54.000Z" - }, - "end": { - "$date": "2021-07-30T16:16:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36c8cb0a-42a5-452e-a6a8-4381d444216d", - "start": { - "$date": "2021-07-30T16:16:54.000Z" - }, - "end": { - "$date": "2021-07-30T16:18:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5c20405-4391-48c2-88b8-687c948f80ad", - "start": { - "$date": "2021-07-30T16:18:54.000Z" - }, - "end": { - "$date": "2021-07-30T17:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e75009dd-d4bb-4779-85f6-5bda10124b29", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-30T18:21:11.000Z" - }, - "end": { - "$date": "2021-07-30T18:22:56.000Z" - }, - "events": [ - { - "uuid": "c850a75b-d002-47fc-af0b-3bcbfdf2b0ca", - "start": { - "$date": "2021-07-30T18:21:11.000Z" - }, - "end": { - "$date": "2021-07-30T18:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d1fb0bc2-9a36-498f-bd63-bb8e7033425c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-30T18:26:12.000Z" - }, - "end": { - "$date": "2021-07-30T18:41:34.000Z" - }, - "events": [ - { - "uuid": "1999d448-4d74-4de3-8dc3-b7c8dfb8d3bf", - "start": { - "$date": "2021-07-30T18:26:12.000Z" - }, - "end": { - "$date": "2021-07-30T18:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3547aa48-7581-4e17-b55e-2dca41cf998b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-30T18:49:59.000Z" - }, - "end": { - "$date": "2021-07-30T20:31:13.000Z" - }, - "events": [ - { - "uuid": "90d6d888-89b8-40b2-94d6-846c7af04c7d", - "start": { - "$date": "2021-07-30T18:49:59.000Z" - }, - "end": { - "$date": "2021-07-30T20:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab1b7ce5-d1c6-43a3-bdd4-bf2a79e81f59", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-30T19:21:44.000Z" - }, - "end": { - "$date": "2021-07-30T20:05:16.000Z" - }, - "events": [ - { - "uuid": "e4f34b04-cadd-4ef8-a857-72764b0ba8bc", - "start": { - "$date": "2021-07-30T19:21:44.000Z" - }, - "end": { - "$date": "2021-07-30T20:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e4d0bee3-6fba-4525-a54d-6648582a112e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-30T20:12:28.000Z" - }, - "end": { - "$date": "2021-07-30T23:41:03.000Z" - }, - "events": [ - { - "uuid": "7a9e7578-8a89-4c3c-b2e5-207a9dce6e3c", - "start": { - "$date": "2021-07-30T20:12:28.000Z" - }, - "end": { - "$date": "2021-07-30T22:20:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1deed7cd-2741-4b7c-8386-28852a216850", - "start": { - "$date": "2021-07-30T22:20:28.000Z" - }, - "end": { - "$date": "2021-07-30T22:22:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fb90cb8b-e245-44f4-92d2-b7d78b93a47b", - "start": { - "$date": "2021-07-30T22:22:28.000Z" - }, - "end": { - "$date": "2021-07-30T22:32:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "082bdd93-0cdd-44a2-b80a-1dc5871aa183", - "start": { - "$date": "2021-07-30T22:32:28.000Z" - }, - "end": { - "$date": "2021-07-30T22:33:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2dd19da-13f8-4e6e-8a8a-1db8ce53896f", - "start": { - "$date": "2021-07-30T22:33:28.000Z" - }, - "end": { - "$date": "2021-07-30T23:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ec0391a5-ff2a-4e9d-8616-fff65178d45e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-07-30T21:17:22.000Z" - }, - "end": { - "$date": "2021-07-30T22:31:01.000Z" - }, - "events": [ - { - "uuid": "a5beed20-cde2-4cfa-bd19-2ad91e7a7d27", - "start": { - "$date": "2021-07-30T21:17:22.000Z" - }, - "end": { - "$date": "2021-07-30T22:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "be4c0b1a-9c9e-4a93-a7de-87587610139c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-30T22:24:32.000Z" - }, - "end": { - "$date": "2021-07-30T22:29:02.000Z" - }, - "events": [ - { - "uuid": "efa6751c-8066-4071-a718-1c40affc1675", - "start": { - "$date": "2021-07-30T22:24:32.000Z" - }, - "end": { - "$date": "2021-07-30T22:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "b2a71803-795b-4780-a348-c8dc9e7665a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-30T23:44:28.000Z" - }, - "end": { - "$date": "2021-07-30T23:45:58.000Z" - }, - "events": [ - { - "uuid": "07d8dafd-6d7d-4b3b-9fa1-893e5ba5fff7", - "start": { - "$date": "2021-07-30T23:44:28.000Z" - }, - "end": { - "$date": "2021-07-30T23:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3dbc6430-910c-4231-bc5a-21f6853fe56d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-30T23:13:19.000Z" - }, - "end": { - "$date": "2021-07-31T01:36:22.000Z" - }, - "events": [ - { - "uuid": "3b9fc147-cc8a-403e-9b2e-6720fe246add", - "start": { - "$date": "2021-07-30T23:13:19.000Z" - }, - "end": { - "$date": "2021-07-31T01:36:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "72b071b0-a9ec-4801-ba90-7ee2e6621a50", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-31T00:33:16.000Z" - }, - "end": { - "$date": "2021-07-31T02:08:54.000Z" - }, - "events": [ - { - "uuid": "8959d3c2-6c6d-48b1-a65c-6dae36834221", - "start": { - "$date": "2021-07-31T00:33:16.000Z" - }, - "end": { - "$date": "2021-07-31T02:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce3bcca0-83dc-462a-8fe3-1515aac393b3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-31T00:33:56.000Z" - }, - "end": { - "$date": "2021-07-31T02:17:37.000Z" - }, - "events": [ - { - "uuid": "2fd2580a-a175-498a-a9c8-e85927c13a85", - "start": { - "$date": "2021-07-31T00:33:56.000Z" - }, - "end": { - "$date": "2021-07-31T02:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4b12188b-512a-4524-b28c-c86cfcf60d67", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-31T00:39:05.000Z" - }, - "end": { - "$date": "2021-07-31T00:40:04.000Z" - }, - "events": [ - { - "uuid": "5419674a-c0ab-4703-9646-93825b1fe014", - "start": { - "$date": "2021-07-31T00:39:05.000Z" - }, - "end": { - "$date": "2021-07-31T00:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dbe227f1-4738-4fb2-8f79-496fb306221a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-31T00:40:10.000Z" - }, - "end": { - "$date": "2021-07-31T02:02:58.000Z" - }, - "events": [ - { - "uuid": "7b25af0b-b162-48c7-83db-00568bb452f5", - "start": { - "$date": "2021-07-31T00:40:10.000Z" - }, - "end": { - "$date": "2021-07-31T02:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4391fd70-ddf7-4fb3-9d0d-8db260e7f85e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-07-31T01:26:09.000Z" - }, - "end": { - "$date": "2021-07-31T03:34:41.000Z" - }, - "events": [ - { - "uuid": "2d8cb83c-890a-4f2c-9f63-4477190807e6", - "start": { - "$date": "2021-07-31T01:26:09.000Z" - }, - "end": { - "$date": "2021-07-31T03:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "49e3baf3-336a-46ef-a961-4836723c66a6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T02:00:35.000Z" - }, - "end": { - "$date": "2021-07-31T03:06:42.000Z" - }, - "events": [ - { - "uuid": "3d47b2b5-69c5-405d-9241-351ab26614f3", - "start": { - "$date": "2021-07-31T02:00:35.000Z" - }, - "end": { - "$date": "2021-07-31T03:06:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "62646de0-882b-4ec2-ab73-99d83969333d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T03:07:32.000Z" - }, - "end": { - "$date": "2021-07-31T07:30:45.000Z" - }, - "events": [ - { - "uuid": "8dba0680-4cb0-4e4a-a392-3a862828ed93", - "start": { - "$date": "2021-07-31T03:07:32.000Z" - }, - "end": { - "$date": "2021-07-31T07:21:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "956796fe-eef9-4130-ac2c-2faa693a4d06", - "start": { - "$date": "2021-07-31T07:21:32.000Z" - }, - "end": { - "$date": "2021-07-31T07:29:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7465793a-d409-4c2c-9331-f43296864774", - "start": { - "$date": "2021-07-31T07:29:32.000Z" - }, - "end": { - "$date": "2021-07-31T07:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36f983dc-100e-42a5-afd3-e3fabb0e159f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-07-31T03:42:38.000Z" - }, - "end": { - "$date": "2021-07-31T05:54:46.000Z" - }, - "events": [ - { - "uuid": "49d43bbf-e700-4b88-b0e9-7bc381ebbd59", - "start": { - "$date": "2021-07-31T03:42:38.000Z" - }, - "end": { - "$date": "2021-07-31T05:54:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b2bd6e3a-e135-4502-90bd-deffe1ebc8e3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-31T03:44:35.000Z" - }, - "end": { - "$date": "2021-07-31T06:58:59.000Z" - }, - "events": [ - { - "uuid": "23b7ce28-9368-4834-a5c1-71820a618ae9", - "start": { - "$date": "2021-07-31T03:44:35.000Z" - }, - "end": { - "$date": "2021-07-31T06:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "089de865-d70b-46be-adaf-e0a95cbaf3c6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-07-31T05:23:44.000Z" - }, - "end": { - "$date": "2021-07-31T05:54:55.000Z" - }, - "events": [ - { - "uuid": "a61d98a8-3c2e-4f95-8eef-43cf75572a8b", - "start": { - "$date": "2021-07-31T05:23:44.000Z" - }, - "end": { - "$date": "2021-07-31T05:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c564998-0c06-4870-ab8e-fdc18588c322", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-31T04:31:11.000Z" - }, - "end": { - "$date": "2021-07-31T05:08:03.000Z" - }, - "events": [ - { - "uuid": "a7a2260f-738d-4374-a2e5-c34dd3f8f456", - "start": { - "$date": "2021-07-31T04:31:11.000Z" - }, - "end": { - "$date": "2021-07-31T05:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "32e4ea50-8e4c-483a-af0f-86848bdd7258", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-31T04:55:38.000Z" - }, - "end": { - "$date": "2021-07-31T04:57:28.000Z" - }, - "events": [ - { - "uuid": "c5c1ba3d-5a4f-4cc0-8dba-2f02a2a79e87", - "start": { - "$date": "2021-07-31T04:55:38.000Z" - }, - "end": { - "$date": "2021-07-31T04:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c3985aa4-1387-4102-8e3f-169ef893445f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-31T04:57:58.000Z" - }, - "end": { - "$date": "2021-07-31T04:59:42.000Z" - }, - "events": [ - { - "uuid": "7b4a3fb9-eae6-49f4-9b8a-40935acb5fd8", - "start": { - "$date": "2021-07-31T04:57:58.000Z" - }, - "end": { - "$date": "2021-07-31T04:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "984f253d-2181-4558-9956-c2598235b2eb", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-31T05:00:20.000Z" - }, - "end": { - "$date": "2021-07-31T05:02:12.000Z" - }, - "events": [ - { - "uuid": "61cf3bac-0313-418b-ae9b-6672a5957828", - "start": { - "$date": "2021-07-31T05:00:20.000Z" - }, - "end": { - "$date": "2021-07-31T05:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "580404f3-612f-48d6-ad93-3f8b6726aa4f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-31T05:09:01.000Z" - }, - "end": { - "$date": "2021-07-31T09:13:49.000Z" - }, - "events": [ - { - "uuid": "45b4dea4-b4d8-40dc-b1b6-66007942f476", - "start": { - "$date": "2021-07-31T05:09:01.000Z" - }, - "end": { - "$date": "2021-07-31T05:39:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8b547e8d-2f0d-4c89-beea-014bbccbbcc1", - "start": { - "$date": "2021-07-31T05:39:01.000Z" - }, - "end": { - "$date": "2021-07-31T06:37:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f3dfa8bd-a59f-445a-8b20-d2eec0734d57", - "start": { - "$date": "2021-07-31T06:37:01.000Z" - }, - "end": { - "$date": "2021-07-31T09:13:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5a874d4b-a184-4fed-b29e-e2cd08172c6c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-31T05:10:18.000Z" - }, - "end": { - "$date": "2021-07-31T05:12:22.000Z" - }, - "events": [ - { - "uuid": "901044c1-d2ea-425d-a760-17e877b13aac", - "start": { - "$date": "2021-07-31T05:10:18.000Z" - }, - "end": { - "$date": "2021-07-31T05:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cb05630a-4725-4d99-80a4-97c63c83eb70", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-31T05:25:12.000Z" - }, - "end": { - "$date": "2021-07-31T05:30:02.000Z" - }, - "events": [ - { - "uuid": "452bd842-b12a-4c55-989f-afa4d5cece56", - "start": { - "$date": "2021-07-31T05:25:12.000Z" - }, - "end": { - "$date": "2021-07-31T05:30:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3690145f-25dd-4ad2-a37f-40d452a66112", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-07-31T05:37:24.000Z" - }, - "end": { - "$date": "2021-07-31T06:46:53.000Z" - }, - "events": [ - { - "uuid": "dcf2fa5b-e9d4-4803-a6c6-b42cdb8dcfc6", - "start": { - "$date": "2021-07-31T05:37:24.000Z" - }, - "end": { - "$date": "2021-07-31T06:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f9ed292-58e1-48af-a26e-e4df7c34c1bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-31T06:38:40.000Z" - }, - "end": { - "$date": "2021-07-31T07:01:06.000Z" - }, - "events": [ - { - "uuid": "09a7063a-39d0-4993-a5e0-fc324c2dde9e", - "start": { - "$date": "2021-07-31T06:38:40.000Z" - }, - "end": { - "$date": "2021-07-31T07:01:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c8e950d-f433-45d7-af42-7193392e7a00", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-07-31T07:05:18.000Z" - }, - "end": { - "$date": "2021-07-31T07:25:55.000Z" - }, - "events": [ - { - "uuid": "6a91d858-f8d0-4c1b-9240-b543b2411377", - "start": { - "$date": "2021-07-31T07:05:18.000Z" - }, - "end": { - "$date": "2021-07-31T07:25:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9bec3f72-de1c-4d69-89ec-4e80b9f7dd24", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T07:42:02.000Z" - }, - "end": { - "$date": "2021-07-31T09:14:44.000Z" - }, - "events": [ - { - "uuid": "1f1cf3a7-646c-4447-b1e6-d557c4a805e9", - "start": { - "$date": "2021-07-31T07:42:02.000Z" - }, - "end": { - "$date": "2021-07-31T09:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a48731d7-925e-4dfe-b5c5-8e9a384763b7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-31T09:14:04.000Z" - }, - "end": { - "$date": "2021-07-31T09:32:33.000Z" - }, - "events": [ - { - "uuid": "a173cd3a-695f-4220-854f-5538e1e34f2d", - "start": { - "$date": "2021-07-31T09:14:04.000Z" - }, - "end": { - "$date": "2021-07-31T09:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3926d374-d8e9-4735-8347-85bec77fad0b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T14:42:42.000Z" - }, - "end": { - "$date": "2021-07-31T15:25:51.000Z" - }, - "events": [ - { - "uuid": "e4dc2164-d1f1-415f-9257-51fcde467c60", - "start": { - "$date": "2021-07-31T14:42:42.000Z" - }, - "end": { - "$date": "2021-07-31T15:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "473799c2-d79f-4b0e-915a-3df931950b75", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-07-31T15:24:42.000Z" - }, - "end": { - "$date": "2021-07-31T15:59:41.000Z" - }, - "events": [ - { - "uuid": "47531bde-0d38-4e6f-9605-73711546d73d", - "start": { - "$date": "2021-07-31T15:24:42.000Z" - }, - "end": { - "$date": "2021-07-31T15:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f4501bf5-89bb-413b-88a1-77d9bb5917c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T15:26:15.000Z" - }, - "end": { - "$date": "2021-07-31T15:45:12.000Z" - }, - "events": [ - { - "uuid": "94f75fb3-d88c-449b-a73d-35dadbe3b191", - "start": { - "$date": "2021-07-31T15:26:15.000Z" - }, - "end": { - "$date": "2021-07-31T15:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "e6d1e08f-ea3c-4dd6-8190-44e2a6bae8e4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T15:51:27.000Z" - }, - "end": { - "$date": "2021-07-31T16:04:54.000Z" - }, - "events": [ - { - "uuid": "4ccc993c-28af-4506-8051-c6b4aff39851", - "start": { - "$date": "2021-07-31T15:51:27.000Z" - }, - "end": { - "$date": "2021-07-31T16:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "809f6636-7c40-4bd2-b451-58069173e193", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-07-31T15:59:47.000Z" - }, - "end": { - "$date": "2021-07-31T17:04:49.000Z" - }, - "events": [ - { - "uuid": "61c17d61-9c1f-4165-bb47-dc70e0275009", - "start": { - "$date": "2021-07-31T15:59:47.000Z" - }, - "end": { - "$date": "2021-07-31T16:19:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36e653a9-91f9-4491-83bb-a42173e45d83", - "start": { - "$date": "2021-07-31T16:19:47.000Z" - }, - "end": { - "$date": "2021-07-31T16:20:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc14ed21-1a57-4dfe-8e8c-f7635bc8498c", - "start": { - "$date": "2021-07-31T16:20:47.000Z" - }, - "end": { - "$date": "2021-07-31T17:04:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "91bc01a6-bae0-4002-a22f-1c8388b5ec87", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-31T16:25:55.000Z" - }, - "end": { - "$date": "2021-07-31T18:17:54.000Z" - }, - "events": [ - { - "uuid": "755c71e7-db95-465d-a88f-40ee4fe0e500", - "start": { - "$date": "2021-07-31T16:25:55.000Z" - }, - "end": { - "$date": "2021-07-31T18:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f2118556-d077-45f9-a543-39004f233f19", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T17:24:47.000Z" - }, - "end": { - "$date": "2021-07-31T19:36:36.000Z" - }, - "events": [ - { - "uuid": "fb44ea76-ebd1-4fd9-8681-3cc0afa3956e", - "start": { - "$date": "2021-07-31T17:24:47.000Z" - }, - "end": { - "$date": "2021-07-31T19:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3004a11a-4e80-4225-9861-8343dc577816", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-07-31T22:07:13.000Z" - }, - "end": { - "$date": "2021-07-31T23:15:02.000Z" - }, - "events": [ - { - "uuid": "6d3a4eed-301e-4d8c-b6f2-76bc1b3b7b23", - "start": { - "$date": "2021-07-31T22:07:13.000Z" - }, - "end": { - "$date": "2021-07-31T23:15:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d194cad2-b0ee-42c7-9d37-dc6cc3c89a8f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-07-31T22:37:15.000Z" - }, - "end": { - "$date": "2021-08-01T01:11:01.000Z" - }, - "events": [ - { - "uuid": "5936a88b-4ed8-4f77-9c76-6f64d2aa11e9", - "start": { - "$date": "2021-07-31T22:37:15.000Z" - }, - "end": { - "$date": "2021-08-01T01:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5469e10d-95a6-4af8-8038-4b52fc831dcc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-07-31T23:32:56.000Z" - }, - "end": { - "$date": "2021-08-01T03:04:49.000Z" - }, - "events": [ - { - "uuid": "2f782a76-bd8a-4b96-9403-0dd210965f19", - "start": { - "$date": "2021-07-31T23:32:56.000Z" - }, - "end": { - "$date": "2021-08-01T01:18:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0041f376-2bd7-47f7-8bcb-2a5532d39771", - "start": { - "$date": "2021-08-01T01:18:56.000Z" - }, - "end": { - "$date": "2021-08-01T01:20:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0174c8ee-becc-4e59-85c1-720c76a1fa34", - "start": { - "$date": "2021-08-01T01:20:56.000Z" - }, - "end": { - "$date": "2021-08-01T01:30:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f260074-3db7-47b7-ab33-7902a578624b", - "start": { - "$date": "2021-08-01T01:30:56.000Z" - }, - "end": { - "$date": "2021-08-01T01:40:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fa197650-c2d9-4086-923e-a5351492f534", - "start": { - "$date": "2021-08-01T01:40:56.000Z" - }, - "end": { - "$date": "2021-08-01T03:04:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8f701620-df24-4b3b-aa0d-bc6b36580a63", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-07-31T23:35:26.000Z" - }, - "end": { - "$date": "2021-08-01T00:43:44.000Z" - }, - "events": [ - { - "uuid": "885f1755-dca2-472a-8743-87cc4409816a", - "start": { - "$date": "2021-07-31T23:35:26.000Z" - }, - "end": { - "$date": "2021-08-01T00:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0d1587d1-cb22-4ecc-aa23-f7b70cb20083", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-01T00:04:03.000Z" - }, - "end": { - "$date": "2021-08-01T00:17:28.000Z" - }, - "events": [ - { - "uuid": "1b5b1d83-36c7-41e8-b0f2-e7a54c784ecc", - "start": { - "$date": "2021-08-01T00:04:03.000Z" - }, - "end": { - "$date": "2021-08-01T00:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "7f6ae396-db7e-4e80-90a7-923668f08c6b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T00:32:39.000Z" - }, - "end": { - "$date": "2021-08-01T00:36:36.000Z" - }, - "events": [ - { - "uuid": "b964247c-cd26-42fc-a5b5-fac81304b186", - "start": { - "$date": "2021-08-01T00:32:39.000Z" - }, - "end": { - "$date": "2021-08-01T00:36:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d1ec29e6-f924-426f-ba1a-a437c85650f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-01T01:11:16.000Z" - }, - "end": { - "$date": "2021-08-01T08:24:55.000Z" - }, - "events": [ - { - "uuid": "eba2283a-c1a2-40c2-b843-004433c61867", - "start": { - "$date": "2021-08-01T01:11:16.000Z" - }, - "end": { - "$date": "2021-08-01T02:35:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ba9656bb-beca-45ed-a6d4-ae5dcea99dda", - "start": { - "$date": "2021-08-01T02:35:16.000Z" - }, - "end": { - "$date": "2021-08-01T02:40:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6fab15aa-417a-42db-9869-11dcb8d5de8d", - "start": { - "$date": "2021-08-01T02:40:16.000Z" - }, - "end": { - "$date": "2021-08-01T02:50:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ac8b1c90-874b-4810-885d-8c20b95319a0", - "start": { - "$date": "2021-08-01T02:50:16.000Z" - }, - "end": { - "$date": "2021-08-01T02:56:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed6a7d42-0095-4a0e-96e8-5ccbd4d50beb", - "start": { - "$date": "2021-08-01T02:56:16.000Z" - }, - "end": { - "$date": "2021-08-01T08:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "650370aa-fa0e-4b29-aa3c-8ab27c1b25fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T02:07:15.000Z" - }, - "end": { - "$date": "2021-08-01T03:08:23.000Z" - }, - "events": [ - { - "uuid": "f842fd67-b39d-430d-b5e0-65818e97a39b", - "start": { - "$date": "2021-08-01T02:07:15.000Z" - }, - "end": { - "$date": "2021-08-01T03:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9dd82d6-181c-4bdf-921f-7570dc65b3cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T02:21:46.000Z" - }, - "end": { - "$date": "2021-08-01T02:44:45.000Z" - }, - "events": [ - { - "uuid": "e8cadb9f-d473-436b-a3cd-6ef1d5b4bf21", - "start": { - "$date": "2021-08-01T02:21:46.000Z" - }, - "end": { - "$date": "2021-08-01T02:44:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95876e2e-55a3-4a5c-ac7d-93a9cfd2bf53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T02:53:37.000Z" - }, - "end": { - "$date": "2021-08-01T03:07:35.000Z" - }, - "events": [ - { - "uuid": "80d9fc15-f091-47fb-82fb-c756dc515b74", - "start": { - "$date": "2021-08-01T02:53:37.000Z" - }, - "end": { - "$date": "2021-08-01T03:07:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8f39afe-bc82-4921-9ba1-e4f002194009", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T03:17:15.000Z" - }, - "end": { - "$date": "2021-08-01T03:41:30.000Z" - }, - "events": [ - { - "uuid": "07f78cb2-968a-498c-b2a0-bf5032d5c554", - "start": { - "$date": "2021-08-01T03:17:15.000Z" - }, - "end": { - "$date": "2021-08-01T03:41:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6630f248-30eb-4a3c-981d-6b812e441dc5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T04:05:36.000Z" - }, - "end": { - "$date": "2021-08-01T04:45:04.000Z" - }, - "events": [ - { - "uuid": "8f49bcd4-7aae-498d-b3c8-d6a5e0fecde9", - "start": { - "$date": "2021-08-01T04:05:36.000Z" - }, - "end": { - "$date": "2021-08-01T04:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "87ec5636-89c2-4589-b9b7-468c71400e55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T03:30:51.000Z" - }, - "end": { - "$date": "2021-08-01T04:08:43.000Z" - }, - "events": [ - { - "uuid": "086851b3-a3e4-4203-9bb1-1a20a379ddef", - "start": { - "$date": "2021-08-01T03:30:51.000Z" - }, - "end": { - "$date": "2021-08-01T04:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32c6c36b-8289-42a6-b3d5-edb0ef228488", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T03:42:05.000Z" - }, - "end": { - "$date": "2021-08-01T03:43:25.000Z" - }, - "events": [ - { - "uuid": "8cf80636-d002-485e-87ec-bd897d6faacf", - "start": { - "$date": "2021-08-01T03:42:05.000Z" - }, - "end": { - "$date": "2021-08-01T03:43:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9f2a4157-3f83-4533-8545-6da9de1fcd1c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T04:26:10.000Z" - }, - "end": { - "$date": "2021-08-01T04:51:45.000Z" - }, - "events": [ - { - "uuid": "acc34b0b-ccbf-46b7-9c1c-6ad0d60eec24", - "start": { - "$date": "2021-08-01T04:26:10.000Z" - }, - "end": { - "$date": "2021-08-01T04:51:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0a4c70f7-e30a-4bd3-8348-2a49b2f34ebf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-01T04:41:19.000Z" - }, - "end": { - "$date": "2021-08-01T04:53:31.000Z" - }, - "events": [ - { - "uuid": "98333149-03c9-40a5-974e-9433ce2a0a99", - "start": { - "$date": "2021-08-01T04:41:19.000Z" - }, - "end": { - "$date": "2021-08-01T04:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0a8b9364-88f8-49cc-a051-d020fc51a0f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T04:45:15.000Z" - }, - "end": { - "$date": "2021-08-01T05:54:55.000Z" - }, - "events": [ - { - "uuid": "cba26813-1998-4073-ad68-ecdca3cdcdfa", - "start": { - "$date": "2021-08-01T04:45:15.000Z" - }, - "end": { - "$date": "2021-08-01T05:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e7dca391-5d39-4bc4-a80f-8233e6a730c2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T04:51:50.000Z" - }, - "end": { - "$date": "2021-08-01T05:55:13.000Z" - }, - "events": [ - { - "uuid": "68f3883c-30ee-4157-ab29-dc66447a9b50", - "start": { - "$date": "2021-08-01T04:51:50.000Z" - }, - "end": { - "$date": "2021-08-01T05:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00e248fb-7b5f-4ddf-8673-c8c5adbac5dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T07:09:35.000Z" - }, - "end": { - "$date": "2021-08-01T07:45:23.000Z" - }, - "events": [ - { - "uuid": "27f3101a-e8ab-4485-89b0-86c57f2ce597", - "start": { - "$date": "2021-08-01T07:09:35.000Z" - }, - "end": { - "$date": "2021-08-01T07:45:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4b600898-30de-4a13-b47e-a0e23743e2cf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T14:29:43.000Z" - }, - "end": { - "$date": "2021-08-01T16:12:20.000Z" - }, - "events": [ - { - "uuid": "238846a5-f962-427e-82ec-92da60152a05", - "start": { - "$date": "2021-08-01T14:29:43.000Z" - }, - "end": { - "$date": "2021-08-01T16:12:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "186f260e-0281-40f0-8733-c82bd5315c16", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T14:02:59.000Z" - }, - "end": { - "$date": "2021-08-01T14:18:40.000Z" - }, - "events": [ - { - "uuid": "3fa89fd7-7530-4e91-9bd8-89e22264d85c", - "start": { - "$date": "2021-08-01T14:02:59.000Z" - }, - "end": { - "$date": "2021-08-01T14:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8caaee62-7724-43ed-b8b3-9222f9e7b075", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T14:18:55.000Z" - }, - "end": { - "$date": "2021-08-01T15:21:29.000Z" - }, - "events": [ - { - "uuid": "15cf9b43-838f-4b86-852c-2c40646eb6d1", - "start": { - "$date": "2021-08-01T14:18:55.000Z" - }, - "end": { - "$date": "2021-08-01T15:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ab2b38a2-8784-4593-9c42-ea57131e3de1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T18:02:48.000Z" - }, - "end": { - "$date": "2021-08-01T18:14:04.000Z" - }, - "events": [ - { - "uuid": "7c0653c0-c421-4bbe-b8b2-a1b470cc92a4", - "start": { - "$date": "2021-08-01T18:02:48.000Z" - }, - "end": { - "$date": "2021-08-01T18:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "33829f2a-c28a-4c0a-915a-156eedad329f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-01T16:53:27.000Z" - }, - "end": { - "$date": "2021-08-01T18:17:19.000Z" - }, - "events": [ - { - "uuid": "75271b38-5cb7-45a3-a466-e0ea33423c0a", - "start": { - "$date": "2021-08-01T16:53:27.000Z" - }, - "end": { - "$date": "2021-08-01T18:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "627cb9b3-69e0-4d87-8ab3-86687492a8f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T18:07:46.000Z" - }, - "end": { - "$date": "2021-08-01T18:21:53.000Z" - }, - "events": [ - { - "uuid": "749b5af1-a7ad-4f45-b5a6-a8961a3baa6b", - "start": { - "$date": "2021-08-01T18:07:46.000Z" - }, - "end": { - "$date": "2021-08-01T18:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1bad2859-2767-4f63-a6a0-41137272ba4f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-01T18:40:37.000Z" - }, - "end": { - "$date": "2021-08-01T21:55:53.000Z" - }, - "events": [ - { - "uuid": "52be9486-3407-48c8-aa51-e99ccd9f824a", - "start": { - "$date": "2021-08-01T18:40:37.000Z" - }, - "end": { - "$date": "2021-08-01T21:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "889fee6e-143e-45ff-907d-acd7b21d1d1d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T20:01:44.000Z" - }, - "end": { - "$date": "2021-08-01T20:55:18.000Z" - }, - "events": [ - { - "uuid": "956c1a13-b106-4aa2-b768-1a38ed06303f", - "start": { - "$date": "2021-08-01T20:01:44.000Z" - }, - "end": { - "$date": "2021-08-01T20:33:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "853cae8d-c361-4759-9751-fdb12d87c05d", - "start": { - "$date": "2021-08-01T20:33:44.000Z" - }, - "end": { - "$date": "2021-08-01T20:47:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af7fb6f0-db90-4293-a18c-3ec5456dd1cd", - "start": { - "$date": "2021-08-01T20:47:44.000Z" - }, - "end": { - "$date": "2021-08-01T20:55:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ce0a93e-faba-4fab-a0a4-99b750d060f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T20:10:01.000Z" - }, - "end": { - "$date": "2021-08-01T20:34:42.000Z" - }, - "events": [ - { - "uuid": "2a7f6fc7-6a91-4e76-a222-9448d12c5914", - "start": { - "$date": "2021-08-01T20:10:01.000Z" - }, - "end": { - "$date": "2021-08-01T20:34:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "11b66fa1-9589-4b56-a4df-8facf7f5d9a4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T21:12:43.000Z" - }, - "end": { - "$date": "2021-08-01T21:21:29.000Z" - }, - "events": [ - { - "uuid": "3d693640-4524-48fd-9405-a20069e5d1de", - "start": { - "$date": "2021-08-01T21:12:43.000Z" - }, - "end": { - "$date": "2021-08-01T21:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fe387d1c-7f3a-448a-9b86-b311a283aba4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-01T22:07:34.000Z" - }, - "end": { - "$date": "2021-08-01T22:17:44.000Z" - }, - "events": [ - { - "uuid": "c8aab44d-a293-47ad-b4e2-2ccf1c25b30d", - "start": { - "$date": "2021-08-01T22:07:34.000Z" - }, - "end": { - "$date": "2021-08-01T22:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ca82fbb8-43fe-4ee0-ab85-3d7e2ea9279a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-01T22:12:40.000Z" - }, - "end": { - "$date": "2021-08-02T08:06:02.000Z" - }, - "events": [ - { - "uuid": "b43d43f9-1616-45f2-815b-35764bd972b5", - "start": { - "$date": "2021-08-01T22:12:40.000Z" - }, - "end": { - "$date": "2021-08-02T08:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "effcba5c-f5f6-4df9-ac1b-ed56491c5c26", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-01T22:22:39.000Z" - }, - "end": { - "$date": "2021-08-01T23:44:21.000Z" - }, - "events": [ - { - "uuid": "0e10e7b3-8120-44d0-969b-dc8545e87fef", - "start": { - "$date": "2021-08-01T22:22:39.000Z" - }, - "end": { - "$date": "2021-08-01T22:55:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36995ccb-f22a-44fb-8d1c-e274558beab5", - "start": { - "$date": "2021-08-01T22:55:39.000Z" - }, - "end": { - "$date": "2021-08-01T22:57:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3219fbfa-6ce4-4494-82ed-bb7f34f1b9b7", - "start": { - "$date": "2021-08-01T22:57:39.000Z" - }, - "end": { - "$date": "2021-08-01T23:26:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "513e05d5-e108-4b60-beef-bb2dc2a70bef", - "start": { - "$date": "2021-08-01T23:26:39.000Z" - }, - "end": { - "$date": "2021-08-01T23:28:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c53ceae5-6b82-4cdc-b770-6b8492121424", - "start": { - "$date": "2021-08-01T23:28:39.000Z" - }, - "end": { - "$date": "2021-08-01T23:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d1d7860-0c00-4c39-895b-dadb34109171", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-01T22:31:20.000Z" - }, - "end": { - "$date": "2021-08-01T23:00:25.000Z" - }, - "events": [ - { - "uuid": "e90bcc76-7654-4b45-bcab-64604a9f7fe1", - "start": { - "$date": "2021-08-01T22:31:20.000Z" - }, - "end": { - "$date": "2021-08-01T23:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd44f326-f14d-42ac-a914-18191d75d547", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T23:00:55.000Z" - }, - "end": { - "$date": "2021-08-01T23:30:25.000Z" - }, - "events": [ - { - "uuid": "7b0f02d6-58f0-4eb1-944c-1fc5140c74d6", - "start": { - "$date": "2021-08-01T23:00:55.000Z" - }, - "end": { - "$date": "2021-08-01T23:30:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db0fc18b-ff6a-48d4-a3f6-f78e24c08fb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T23:30:31.000Z" - }, - "end": { - "$date": "2021-08-01T23:35:26.000Z" - }, - "events": [ - { - "uuid": "c457685d-4952-4602-82eb-cc40ee8d3cf5", - "start": { - "$date": "2021-08-01T23:30:31.000Z" - }, - "end": { - "$date": "2021-08-01T23:35:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c4a9b2c-9258-4740-bf76-aee24f504cdf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-01T23:37:53.000Z" - }, - "end": { - "$date": "2021-08-01T23:39:52.000Z" - }, - "events": [ - { - "uuid": "e6e5d1ec-d5a3-47b6-955a-13227cd27847", - "start": { - "$date": "2021-08-01T23:37:53.000Z" - }, - "end": { - "$date": "2021-08-01T23:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26fd08ff-446e-4a45-a32b-9904685ae5a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-01T23:38:08.000Z" - }, - "end": { - "$date": "2021-08-02T00:03:51.000Z" - }, - "events": [ - { - "uuid": "3e9b4a1e-1229-459a-a1d9-5223cc883277", - "start": { - "$date": "2021-08-01T23:38:08.000Z" - }, - "end": { - "$date": "2021-08-02T00:03:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9a2bb5ae-625d-48e1-a4d9-7d217393ec87", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-01T23:40:20.000Z" - }, - "end": { - "$date": "2021-08-02T00:30:21.000Z" - }, - "events": [ - { - "uuid": "0d02b1dd-206d-4847-9a94-30120fbcc55f", - "start": { - "$date": "2021-08-01T23:40:20.000Z" - }, - "end": { - "$date": "2021-08-02T00:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f1b6eaa-03ae-49bd-8557-64e593579656", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-02T00:09:47.000Z" - }, - "end": { - "$date": "2021-08-02T00:28:04.000Z" - }, - "events": [ - { - "uuid": "fee1ee52-2a36-4320-ac2c-a3e5b0a39f1a", - "start": { - "$date": "2021-08-02T00:09:47.000Z" - }, - "end": { - "$date": "2021-08-02T00:28:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b202a76b-afe0-4bda-849e-065d3625f5a9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T00:26:15.000Z" - }, - "end": { - "$date": "2021-08-02T00:29:21.000Z" - }, - "events": [ - { - "uuid": "21748050-f346-47e3-af8c-7db8ffaf6d6b", - "start": { - "$date": "2021-08-02T00:26:15.000Z" - }, - "end": { - "$date": "2021-08-02T00:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b50d1a2-cee5-4b41-9aad-8c9a9aa5375d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-02T00:33:16.000Z" - }, - "end": { - "$date": "2021-08-02T00:57:32.000Z" - }, - "events": [ - { - "uuid": "45f07d76-e4b4-4d24-aab6-483d7f25ab52", - "start": { - "$date": "2021-08-02T00:33:16.000Z" - }, - "end": { - "$date": "2021-08-02T00:57:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3347d929-ae0f-4ff4-b05f-12ca3dc9a538", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T00:37:52.000Z" - }, - "end": { - "$date": "2021-08-02T01:18:01.000Z" - }, - "events": [ - { - "uuid": "91c565e0-d284-4a75-8f7d-8e27e29863fd", - "start": { - "$date": "2021-08-02T00:37:52.000Z" - }, - "end": { - "$date": "2021-08-02T01:18:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "92b3906a-550c-47c0-b6e6-e49cee245fb9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-02T00:40:52.000Z" - }, - "end": { - "$date": "2021-08-02T00:42:07.000Z" - }, - "events": [ - { - "uuid": "854d08d5-1456-463a-94e8-a7b6db830da0", - "start": { - "$date": "2021-08-02T00:40:52.000Z" - }, - "end": { - "$date": "2021-08-02T00:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2807ca5e-553d-468c-90da-2b02d14b405c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-02T00:42:32.000Z" - }, - "end": { - "$date": "2021-08-02T02:40:16.000Z" - }, - "events": [ - { - "uuid": "51ec1572-9e6d-4969-95df-b86b67f04b3b", - "start": { - "$date": "2021-08-02T00:42:32.000Z" - }, - "end": { - "$date": "2021-08-02T02:40:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "85f51553-7430-43ee-8b61-319cf5a2676f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-02T01:24:51.000Z" - }, - "end": { - "$date": "2021-08-02T01:32:42.000Z" - }, - "events": [ - { - "uuid": "baacaf62-35e2-41a6-a8d4-22a534f5e0d8", - "start": { - "$date": "2021-08-02T01:24:51.000Z" - }, - "end": { - "$date": "2021-08-02T01:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "fc18f824-5bd3-46ef-8cd2-19234c176497", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-02T01:32:58.000Z" - }, - "end": { - "$date": "2021-08-02T03:33:32.000Z" - }, - "events": [ - { - "uuid": "afa68775-f808-4443-a490-6b82d7ca03c7", - "start": { - "$date": "2021-08-02T01:32:58.000Z" - }, - "end": { - "$date": "2021-08-02T03:33:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4625056a-417d-447f-932d-916e7dd41c9b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T01:18:44.000Z" - }, - "end": { - "$date": "2021-08-02T03:10:00.000Z" - }, - "events": [ - { - "uuid": "1cf0d186-722f-4e92-bfdc-b5c04f506f99", - "start": { - "$date": "2021-08-02T01:18:44.000Z" - }, - "end": { - "$date": "2021-08-02T03:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "abcdf43e-83d7-4a81-accf-bf6c6b3ba0b8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-02T02:51:23.000Z" - }, - "end": { - "$date": "2021-08-02T03:50:30.000Z" - }, - "events": [ - { - "uuid": "dada9e9a-7cda-4b68-b631-40098cfbe44e", - "start": { - "$date": "2021-08-02T02:51:23.000Z" - }, - "end": { - "$date": "2021-08-02T03:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "84ba34a2-e5cf-4d33-a76b-dfa3d627949d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T03:10:55.000Z" - }, - "end": { - "$date": "2021-08-02T04:42:03.000Z" - }, - "events": [ - { - "uuid": "c595ef07-b5b1-4f23-9c4b-cfabd8fb06b9", - "start": { - "$date": "2021-08-02T03:10:55.000Z" - }, - "end": { - "$date": "2021-08-02T04:16:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "847b84e8-21ec-489d-aa89-68e0a4377808", - "start": { - "$date": "2021-08-02T04:16:55.000Z" - }, - "end": { - "$date": "2021-08-02T04:20:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2861fa68-854b-4d9e-b3a8-091e93427c7c", - "start": { - "$date": "2021-08-02T04:20:55.000Z" - }, - "end": { - "$date": "2021-08-02T04:31:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "554ea126-8f1d-4023-b031-4c63947fc0db", - "start": { - "$date": "2021-08-02T04:31:55.000Z" - }, - "end": { - "$date": "2021-08-02T04:42:03.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ee5866cd-b56f-4917-a524-9318efa33845", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-02T03:12:16.000Z" - }, - "end": { - "$date": "2021-08-02T04:05:57.000Z" - }, - "events": [ - { - "uuid": "edf4a14a-8f89-4252-a26a-5cee260e33f9", - "start": { - "$date": "2021-08-02T03:12:16.000Z" - }, - "end": { - "$date": "2021-08-02T04:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "5c20d13c-8d48-4cc4-9dc8-70abac5508d5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-02T03:48:36.000Z" - }, - "end": { - "$date": "2021-08-02T03:49:40.000Z" - }, - "events": [ - { - "uuid": "99ef04d7-c50a-469e-acef-d640e65f81ab", - "start": { - "$date": "2021-08-02T03:48:36.000Z" - }, - "end": { - "$date": "2021-08-02T03:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "84feca48-a6a7-4b28-a854-149fe6efc39d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-02T03:50:06.000Z" - }, - "end": { - "$date": "2021-08-02T05:49:46.000Z" - }, - "events": [ - { - "uuid": "7413fb0b-131c-4a0d-89c6-a1ffc149c0e7", - "start": { - "$date": "2021-08-02T03:50:06.000Z" - }, - "end": { - "$date": "2021-08-02T05:49:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e6715b5e-e4f9-4882-bacc-fbff3c04f342", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-02T04:33:42.000Z" - }, - "end": { - "$date": "2021-08-02T05:13:14.000Z" - }, - "events": [ - { - "uuid": "8d4a427d-9f5d-492a-b111-6c48ca019add", - "start": { - "$date": "2021-08-02T04:33:42.000Z" - }, - "end": { - "$date": "2021-08-02T05:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "643eda45-2d3e-4f6e-9c8c-9af927efda08", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T04:43:03.000Z" - }, - "end": { - "$date": "2021-08-02T06:41:14.000Z" - }, - "events": [ - { - "uuid": "94114f91-9cf3-44ce-8dc5-694f5cd71e5e", - "start": { - "$date": "2021-08-02T04:43:03.000Z" - }, - "end": { - "$date": "2021-08-02T06:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "887bc724-2172-4b6a-8217-a2d10e8367a1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-02T04:57:40.000Z" - }, - "end": { - "$date": "2021-08-02T06:45:21.000Z" - }, - "events": [ - { - "uuid": "1837177b-df64-4a09-a4e3-9e9d234f2b7a", - "start": { - "$date": "2021-08-02T04:57:40.000Z" - }, - "end": { - "$date": "2021-08-02T06:45:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "157478d9-134d-4331-945d-a3790791323e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-02T05:07:49.000Z" - }, - "end": { - "$date": "2021-08-02T06:44:35.000Z" - }, - "events": [ - { - "uuid": "2b0d9294-9374-44e5-8553-1fab68285bb5", - "start": { - "$date": "2021-08-02T05:07:49.000Z" - }, - "end": { - "$date": "2021-08-02T06:44:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fad60986-e0a6-4ae3-8ac8-83c21838cff3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-02T05:38:28.000Z" - }, - "end": { - "$date": "2021-08-02T06:40:15.000Z" - }, - "events": [ - { - "uuid": "92bb01c9-47d3-41b9-a524-19d1909c45d9", - "start": { - "$date": "2021-08-02T05:38:28.000Z" - }, - "end": { - "$date": "2021-08-02T06:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "36c859c1-9d26-4297-8e9f-5e7186915945", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T06:41:59.000Z" - }, - "end": { - "$date": "2021-08-02T08:00:15.000Z" - }, - "events": [ - { - "uuid": "f1529f29-ebe5-4e6b-b908-f2c061b4ea4d", - "start": { - "$date": "2021-08-02T06:41:59.000Z" - }, - "end": { - "$date": "2021-08-02T08:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "63b5cab3-3938-4e15-94f6-ece9c055790c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-02T13:47:51.000Z" - }, - "end": { - "$date": "2021-08-02T14:15:22.000Z" - }, - "events": [ - { - "uuid": "d6c80698-1f53-4c0b-976d-0b8bfd7a52a5", - "start": { - "$date": "2021-08-02T13:47:51.000Z" - }, - "end": { - "$date": "2021-08-02T14:15:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "9ad764fa-a0d1-491b-acd5-cd84352b9fd8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-02T23:07:22.000Z" - }, - "end": { - "$date": "2021-08-02T23:07:32.000Z" - }, - "events": [ - { - "uuid": "6d0e2910-bbcc-448d-bdfb-411962e5115b", - "start": { - "$date": "2021-08-02T23:07:22.000Z" - }, - "end": { - "$date": "2021-08-02T23:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", - "uuid": "8d832ad7-6f9c-4d30-a0f5-49b2a32f038c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-02T15:26:33.000Z" - }, - "end": { - "$date": "2021-08-02T16:23:55.000Z" - }, - "events": [ - { - "uuid": "4d60fc53-3381-4989-84e3-95725cfc5ade", - "start": { - "$date": "2021-08-02T15:26:33.000Z" - }, - "end": { - "$date": "2021-08-02T16:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", - "uuid": "68976e96-d4c8-49fa-99a5-c74a2065512f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-02T18:42:32.000Z" - }, - "end": { - "$date": "2021-08-02T23:17:25.000Z" - }, - "events": [ - { - "uuid": "e87efc3c-62f6-4c1c-9a44-963969071c07", - "start": { - "$date": "2021-08-02T18:42:32.000Z" - }, - "end": { - "$date": "2021-08-02T21:28:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d311c0ea-62eb-4606-80fb-c4a3aa1f69df", - "start": { - "$date": "2021-08-02T21:28:32.000Z" - }, - "end": { - "$date": "2021-08-02T21:48:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eef7e852-c1d6-4df4-90f9-dd70142caf73", - "start": { - "$date": "2021-08-02T21:48:32.000Z" - }, - "end": { - "$date": "2021-08-02T23:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d74c0359-f702-456b-bfe4-efdc67f78e1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-02T19:23:27.000Z" - }, - "end": { - "$date": "2021-08-02T20:13:24.000Z" - }, - "events": [ - { - "uuid": "18816a1b-2c99-416d-a8c6-8c5cc6b37dfd", - "start": { - "$date": "2021-08-02T19:23:27.000Z" - }, - "end": { - "$date": "2021-08-02T20:13:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "1424a567-8a4a-4416-94a4-58dbc9faa7ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-02T20:46:13.000Z" - }, - "end": { - "$date": "2021-08-02T22:32:59.000Z" - }, - "events": [ - { - "uuid": "1799b256-742b-4b76-801f-e5f806e64e77", - "start": { - "$date": "2021-08-02T20:46:13.000Z" - }, - "end": { - "$date": "2021-08-02T22:32:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c816cf5e-70fc-4391-b461-57ff749c5162", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T22:11:52.000Z" - }, - "end": { - "$date": "2021-08-02T22:40:07.000Z" - }, - "events": [ - { - "uuid": "8302ec65-5772-4b3b-a701-91e4ee3f0a71", - "start": { - "$date": "2021-08-02T22:11:52.000Z" - }, - "end": { - "$date": "2021-08-02T22:26:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b34a394-edec-414b-ad8a-672171f66d6e", - "start": { - "$date": "2021-08-02T22:26:52.000Z" - }, - "end": { - "$date": "2021-08-02T22:33:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9bac5c5f-6c95-45ab-9ea4-57fb1addd157", - "start": { - "$date": "2021-08-02T22:33:52.000Z" - }, - "end": { - "$date": "2021-08-02T22:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "62c213cc-3c80-4ba5-bec8-a759a107ec89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-02T22:40:18.000Z" - }, - "end": { - "$date": "2021-08-03T01:37:01.000Z" - }, - "events": [ - { - "uuid": "f74b20a9-4abb-4809-9ab0-84af6604a3b4", - "start": { - "$date": "2021-08-02T22:40:18.000Z" - }, - "end": { - "$date": "2021-08-03T01:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "22db11f2-6e4c-490c-9317-8261e5160b3f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-03T00:05:34.000Z" - }, - "end": { - "$date": "2021-08-03T00:10:19.000Z" - }, - "events": [ - { - "uuid": "01a9aafa-8c6d-4a56-85cb-c77b54ca5178", - "start": { - "$date": "2021-08-03T00:05:34.000Z" - }, - "end": { - "$date": "2021-08-03T00:10:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "608774ab-02cc-41c8-839c-67564c4f8d05", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-03T00:40:12.000Z" - }, - "end": { - "$date": "2021-08-03T01:07:58.000Z" - }, - "events": [ - { - "uuid": "e1fe2731-490a-4853-b391-da8b23e24058", - "start": { - "$date": "2021-08-03T00:40:12.000Z" - }, - "end": { - "$date": "2021-08-03T01:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8efe91a2-64ea-4f40-a9f7-1a10b46d358f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-03T00:40:23.000Z" - }, - "end": { - "$date": "2021-08-03T01:07:59.000Z" - }, - "events": [ - { - "uuid": "001652ca-f52c-44ab-baf1-b6179a5a608a", - "start": { - "$date": "2021-08-03T00:40:23.000Z" - }, - "end": { - "$date": "2021-08-03T01:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", - "uuid": "4f35d15d-2dc8-4fff-b8a7-1efcb118446c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-03T00:46:00.000Z" - }, - "end": { - "$date": "2021-08-03T05:43:31.000Z" - }, - "events": [ - { - "uuid": "6d50f4bc-b2cc-421a-93a7-d7acfb75dbf4", - "start": { - "$date": "2021-08-03T00:46:00.000Z" - }, - "end": { - "$date": "2021-08-03T05:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6507b39b-623c-4cce-8b9e-3744a6f7abda", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-03T01:10:20.000Z" - }, - "end": { - "$date": "2021-08-03T04:04:28.000Z" - }, - "events": [ - { - "uuid": "829c4cb8-81ee-43b3-9bb6-8e89d9d34722", - "start": { - "$date": "2021-08-03T01:10:20.000Z" - }, - "end": { - "$date": "2021-08-03T04:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "161af98c-bef7-4b5e-87eb-c5b2386554ae", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-03T01:12:54.000Z" - }, - "end": { - "$date": "2021-08-03T01:15:19.000Z" - }, - "events": [ - { - "uuid": "f2257695-ea40-47dc-a3e8-a4d8456f6dec", - "start": { - "$date": "2021-08-03T01:12:54.000Z" - }, - "end": { - "$date": "2021-08-03T01:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "213eb804-f3f8-40a5-8799-c6dc7bce0aed", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-03T01:16:30.000Z" - }, - "end": { - "$date": "2021-08-03T04:41:16.000Z" - }, - "events": [ - { - "uuid": "9403ae25-77d9-44d2-99f5-cfd50556ad7e", - "start": { - "$date": "2021-08-03T01:16:30.000Z" - }, - "end": { - "$date": "2021-08-03T04:41:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ebf9ab17-fbba-4900-8ddd-50c6f51ee47a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-03T02:48:51.000Z" - }, - "end": { - "$date": "2021-08-03T02:49:14.000Z" - }, - "events": [ - { - "uuid": "ebbb09ac-ec82-4ecd-a215-d3acb57fa2f0", - "start": { - "$date": "2021-08-03T02:48:51.000Z" - }, - "end": { - "$date": "2021-08-03T03:08:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29dc69dc-8638-4c68-abf3-1e86c316d2bf", - "start": { - "$date": "2021-08-03T03:08:51.000Z" - }, - "end": { - "$date": "2021-08-03T03:23:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb3b7e91-5bfd-4ae2-a697-b7ceeadffbf5", - "start": { - "$date": "2021-08-03T03:23:51.000Z" - }, - "end": { - "$date": "2021-08-03T02:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "889df9b4-6d81-41c3-8160-31e15f3440d0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-03T01:37:32.000Z" - }, - "end": { - "$date": "2021-08-03T07:06:22.000Z" - }, - "events": [ - { - "uuid": "fc47f43a-1b06-40d0-ae22-28f43fd9ef0c", - "start": { - "$date": "2021-08-03T01:37:32.000Z" - }, - "end": { - "$date": "2021-08-03T06:53:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9dec3d4f-d912-4bcd-922e-cc81f52133cd", - "start": { - "$date": "2021-08-03T06:53:32.000Z" - }, - "end": { - "$date": "2021-08-03T06:58:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd6d6c90-1276-47a4-bb77-6b31d7f0d889", - "start": { - "$date": "2021-08-03T06:58:32.000Z" - }, - "end": { - "$date": "2021-08-03T07:06:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7be38f51-53b7-484e-ab18-1937de03c95f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-03T02:27:46.000Z" - }, - "end": { - "$date": "2021-08-03T03:08:53.000Z" - }, - "events": [ - { - "uuid": "e2405657-ecaa-4471-9ca8-c91fc8ceb96e", - "start": { - "$date": "2021-08-03T02:27:46.000Z" - }, - "end": { - "$date": "2021-08-03T03:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "9dd616d3-0d7c-4795-af91-4209c24df210", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-03T02:06:25.000Z" - }, - "end": { - "$date": "2021-08-03T03:57:40.000Z" - }, - "events": [ - { - "uuid": "353bd24c-47dc-401c-8d3e-780b5273abe1", - "start": { - "$date": "2021-08-03T02:06:25.000Z" - }, - "end": { - "$date": "2021-08-03T03:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "0db0e386-67c1-469d-a901-29538288ea10", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-03T04:40:52.000Z" - }, - "end": { - "$date": "2021-08-03T04:45:54.000Z" - }, - "events": [ - { - "uuid": "bc87e73a-3615-4600-93c4-60636b3b039f", - "start": { - "$date": "2021-08-03T04:40:52.000Z" - }, - "end": { - "$date": "2021-08-03T04:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e1db793d-076c-41b5-a392-f29ed0a6b6aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-03T04:45:23.000Z" - }, - "end": { - "$date": "2021-08-03T05:10:18.000Z" - }, - "events": [ - { - "uuid": "761b2f27-cc8a-481b-9061-0edf91197833", - "start": { - "$date": "2021-08-03T04:45:23.000Z" - }, - "end": { - "$date": "2021-08-03T05:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "6251d402-2891-4299-9f1d-2527f090d096", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-03T05:04:48.000Z" - }, - "end": { - "$date": "2021-08-03T06:27:16.000Z" - }, - "events": [ - { - "uuid": "be917939-5761-4bba-8956-5689a3d74bd4", - "start": { - "$date": "2021-08-03T05:04:48.000Z" - }, - "end": { - "$date": "2021-08-03T06:27:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4a03541e-10a0-41c9-8cea-1de0679f096a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-03T05:43:51.000Z" - }, - "end": { - "$date": "2021-08-03T08:41:02.000Z" - }, - "events": [ - { - "uuid": "5fcc47ec-bfb2-457f-814a-f8e984163754", - "start": { - "$date": "2021-08-03T05:43:51.000Z" - }, - "end": { - "$date": "2021-08-03T08:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "274dab64-6635-4117-be81-6dfdb3ddddca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-03T06:20:54.000Z" - }, - "end": { - "$date": "2021-08-03T09:27:01.000Z" - }, - "events": [ - { - "uuid": "fa2e0ee2-5769-4cdc-beb7-0b1a6cd2f872", - "start": { - "$date": "2021-08-03T06:20:54.000Z" - }, - "end": { - "$date": "2021-08-03T09:27:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3149faf1-0666-40a4-a0ca-6864b3c5b3ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-03T07:33:35.000Z" - }, - "end": { - "$date": "2021-08-03T08:40:30.000Z" - }, - "events": [ - { - "uuid": "675c8da1-c3b1-46e7-8b38-cc4e89005b7f", - "start": { - "$date": "2021-08-03T07:33:35.000Z" - }, - "end": { - "$date": "2021-08-03T08:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "baa8b5b6-459f-4d07-830a-991054dcf872", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-03T08:41:50.000Z" - }, - "end": { - "$date": "2021-08-03T08:46:38.000Z" - }, - "events": [ - { - "uuid": "d7523f8f-b772-41b9-94fb-79e0a3d14322", - "start": { - "$date": "2021-08-03T08:41:50.000Z" - }, - "end": { - "$date": "2021-08-03T08:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", - "uuid": "daf74a63-15e8-4c9a-903c-c5fbfbfaa40f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-03T08:42:17.000Z" - }, - "end": { - "$date": "2021-08-03T08:44:09.000Z" - }, - "events": [ - { - "uuid": "5b7a3fdc-107c-4ab4-877a-c5f46897063a", - "start": { - "$date": "2021-08-03T08:42:17.000Z" - }, - "end": { - "$date": "2021-08-03T08:44:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "d0193327-eea1-4fe1-b2f0-4eb793a16cdb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-03T17:35:08.000Z" - }, - "end": { - "$date": "2021-08-03T17:35:18.000Z" - }, - "events": [ - { - "uuid": "62772f40-5bf0-41e4-aed3-7d915ae1ed33", - "start": { - "$date": "2021-08-03T17:35:08.000Z" - }, - "end": { - "$date": "2021-08-03T17:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d9971fcb-8a67-4616-90f4-1e2a9f5cc07b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-03T14:48:35.000Z" - }, - "end": { - "$date": "2021-08-03T18:13:06.000Z" - }, - "events": [ - { - "uuid": "ea30c04d-9d75-4e85-a5b5-ec6e3039751d", - "start": { - "$date": "2021-08-03T14:48:35.000Z" - }, - "end": { - "$date": "2021-08-03T18:10:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "75f0bcc4-ac98-4f9c-880c-fe3a9b901fad", - "start": { - "$date": "2021-08-03T18:10:35.000Z" - }, - "end": { - "$date": "2021-08-03T18:13:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c3d366a0-f3ec-4c69-9e8f-718320da367f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-03T16:42:24.000Z" - }, - "end": { - "$date": "2021-08-03T17:20:40.000Z" - }, - "events": [ - { - "uuid": "2e331ba8-5dad-43e1-9698-1868bfa17f24", - "start": { - "$date": "2021-08-03T16:42:24.000Z" - }, - "end": { - "$date": "2021-08-03T17:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "b297b47f-1f97-4713-9298-5a31544dc151", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-03T17:15:05.000Z" - }, - "end": { - "$date": "2021-08-03T17:53:26.000Z" - }, - "events": [ - { - "uuid": "afa37939-9205-4c13-b3ba-3d9cd8367b6c", - "start": { - "$date": "2021-08-03T17:15:05.000Z" - }, - "end": { - "$date": "2021-08-03T17:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "eacc7ffb-ee55-4a92-b08a-95bf0a1b2278", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-03T18:17:45.000Z" - }, - "end": { - "$date": "2021-08-03T20:18:14.000Z" - }, - "events": [ - { - "uuid": "e4ce6d0c-da97-4119-9f3b-89801488be7a", - "start": { - "$date": "2021-08-03T18:17:45.000Z" - }, - "end": { - "$date": "2021-08-03T20:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "24faf77f-1cee-4654-a1fa-b9936af3cc0f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-03T18:28:33.000Z" - }, - "end": { - "$date": "2021-08-03T20:58:33.000Z" - }, - "events": [ - { - "uuid": "12985e97-0177-40db-9301-d8fccf32d4a3", - "start": { - "$date": "2021-08-03T18:28:33.000Z" - }, - "end": { - "$date": "2021-08-03T20:32:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9259bee2-9dd3-4697-8384-edf2cdc042ef", - "start": { - "$date": "2021-08-03T20:32:33.000Z" - }, - "end": { - "$date": "2021-08-03T20:34:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1611620d-c715-4021-87cb-1b73efb014b0", - "start": { - "$date": "2021-08-03T20:34:33.000Z" - }, - "end": { - "$date": "2021-08-03T20:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8b8cf1da-4fbc-449b-a932-df8c269f60d2", - "uuid": "9f4ad996-c9b7-408f-a9f7-58cffbdbe8ec", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T00:23:39.000Z" - }, - "end": { - "$date": "2021-08-04T00:24:34.000Z" - }, - "events": [ - { - "uuid": "bc3f5450-1f3e-4412-a9b1-1461ea3faa3f", - "start": { - "$date": "2021-08-04T00:23:39.000Z" - }, - "end": { - "$date": "2021-08-04T00:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9f6addaf-589f-4909-b610-ac4818fb4a74", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-03T21:10:32.000Z" - }, - "end": { - "$date": "2021-08-04T03:25:04.000Z" - }, - "events": [ - { - "uuid": "2a83a358-0b4a-4c5c-b97d-15d31b051636", - "start": { - "$date": "2021-08-03T21:10:32.000Z" - }, - "end": { - "$date": "2021-08-03T21:38:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd7686fc-7597-486d-b0b6-740cd0e27ed4", - "start": { - "$date": "2021-08-03T21:38:32.000Z" - }, - "end": { - "$date": "2021-08-03T22:51:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b2be281-7c79-4ea8-9182-640637bda930", - "start": { - "$date": "2021-08-03T22:51:32.000Z" - }, - "end": { - "$date": "2021-08-03T22:55:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60c9a817-172b-42c4-8c61-bef9e0ff979c", - "start": { - "$date": "2021-08-03T22:55:32.000Z" - }, - "end": { - "$date": "2021-08-03T22:56:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79c3aa85-59c9-49de-9a36-349e9c8bdd63", - "start": { - "$date": "2021-08-03T22:56:32.000Z" - }, - "end": { - "$date": "2021-08-04T00:47:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0b7fda5-abe5-4cc9-8145-e3b489bc06d2", - "start": { - "$date": "2021-08-04T00:47:32.000Z" - }, - "end": { - "$date": "2021-08-04T00:52:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c961b880-4203-4519-9977-9ba938d0c19e", - "start": { - "$date": "2021-08-04T00:52:32.000Z" - }, - "end": { - "$date": "2021-08-04T01:02:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0e9552d-5457-4178-9c7e-02ff7f12cdb8", - "start": { - "$date": "2021-08-04T01:02:32.000Z" - }, - "end": { - "$date": "2021-08-04T01:05:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "933ccd90-f617-4d7c-ad9d-ff01527f2e76", - "start": { - "$date": "2021-08-04T01:05:32.000Z" - }, - "end": { - "$date": "2021-08-04T03:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "daf3d483-e56c-430d-a1ab-9c66d00f66f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-03T21:13:24.000Z" - }, - "end": { - "$date": "2021-08-03T21:54:04.000Z" - }, - "events": [ - { - "uuid": "2c348397-baa2-4344-96db-d8bc27741018", - "start": { - "$date": "2021-08-03T21:13:24.000Z" - }, - "end": { - "$date": "2021-08-03T21:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "29e962f5-cd97-46da-824d-d19a7145d6c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-03T22:05:01.000Z" - }, - "end": { - "$date": "2021-08-03T23:05:10.000Z" - }, - "events": [ - { - "uuid": "9c98f1d1-c67b-41ec-b004-7798673a28eb", - "start": { - "$date": "2021-08-03T22:05:01.000Z" - }, - "end": { - "$date": "2021-08-03T23:05:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "e08fb3f3-7de6-40f6-af14-90222f905e5e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-03T23:13:53.000Z" - }, - "end": { - "$date": "2021-08-03T23:57:40.000Z" - }, - "events": [ - { - "uuid": "51527d65-3364-4613-a763-90bb6684daae", - "start": { - "$date": "2021-08-03T23:13:53.000Z" - }, - "end": { - "$date": "2021-08-03T23:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9da53e38-edfd-4f29-b8ed-59114bd7808d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-04T01:04:54.000Z" - }, - "end": { - "$date": "2021-08-04T03:52:24.000Z" - }, - "events": [ - { - "uuid": "0fa86480-08f8-4a09-85df-35ed0ea2f69f", - "start": { - "$date": "2021-08-04T01:04:54.000Z" - }, - "end": { - "$date": "2021-08-04T02:38:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3cad0ed-942f-47ef-b23f-7524c1c14ace", - "start": { - "$date": "2021-08-04T02:38:54.000Z" - }, - "end": { - "$date": "2021-08-04T02:55:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d78efdf4-904b-4ccd-bf5e-4ecd2371175d", - "start": { - "$date": "2021-08-04T02:55:54.000Z" - }, - "end": { - "$date": "2021-08-04T03:05:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cfc13715-32d4-46b3-bdbe-839f0d84bafd", - "start": { - "$date": "2021-08-04T03:05:54.000Z" - }, - "end": { - "$date": "2021-08-04T03:14:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2862e83-e3f7-4b4e-a7a5-d461cd41e80a", - "start": { - "$date": "2021-08-04T03:14:54.000Z" - }, - "end": { - "$date": "2021-08-04T03:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "38cd90c3-c8b9-4364-b704-cdaa7597e2b5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T01:08:20.000Z" - }, - "end": { - "$date": "2021-08-04T01:31:57.000Z" - }, - "events": [ - { - "uuid": "de8642f8-5c9a-4d07-8853-6051853d71a3", - "start": { - "$date": "2021-08-04T01:08:20.000Z" - }, - "end": { - "$date": "2021-08-04T01:31:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "31cce615-643c-4355-90a1-e69a499caae8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T01:29:06.000Z" - }, - "end": { - "$date": "2021-08-04T03:50:49.000Z" - }, - "events": [ - { - "uuid": "14c88f2c-0c59-43d1-8d07-0b304c7568b8", - "start": { - "$date": "2021-08-04T01:29:06.000Z" - }, - "end": { - "$date": "2021-08-04T02:51:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef3ebeaf-5026-4ea3-b006-975301f03ef4", - "start": { - "$date": "2021-08-04T02:51:06.000Z" - }, - "end": { - "$date": "2021-08-04T02:56:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90561346-0e26-4176-abc6-aeedca8b66bb", - "start": { - "$date": "2021-08-04T02:56:06.000Z" - }, - "end": { - "$date": "2021-08-04T03:08:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1beb1240-962d-47c1-bde2-868e68b67f53", - "start": { - "$date": "2021-08-04T03:08:06.000Z" - }, - "end": { - "$date": "2021-08-04T03:15:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c68e5983-891d-4078-a8af-91f6469a05c0", - "start": { - "$date": "2021-08-04T03:15:06.000Z" - }, - "end": { - "$date": "2021-08-04T03:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "3a07fb39-79b3-4991-b7cf-56119893973d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T01:41:57.000Z" - }, - "end": { - "$date": "2021-08-04T02:08:06.000Z" - }, - "events": [ - { - "uuid": "77422861-97d8-42b8-9950-191bf386acbb", - "start": { - "$date": "2021-08-04T01:41:57.000Z" - }, - "end": { - "$date": "2021-08-04T02:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "896c13fe-deeb-4abe-b9bb-4cc2cbabbf29", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-04T01:50:48.000Z" - }, - "end": { - "$date": "2021-08-04T02:16:59.000Z" - }, - "events": [ - { - "uuid": "da2bf5b6-61e6-47f2-bce0-6672b39c106e", - "start": { - "$date": "2021-08-04T01:50:48.000Z" - }, - "end": { - "$date": "2021-08-04T02:16:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eba1481d-0b68-44bb-bef3-ce5e65a399aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T01:53:15.000Z" - }, - "end": { - "$date": "2021-08-04T02:16:50.000Z" - }, - "events": [ - { - "uuid": "724915a9-a8d6-4e84-a0ae-6743be74e741", - "start": { - "$date": "2021-08-04T01:53:15.000Z" - }, - "end": { - "$date": "2021-08-04T02:16:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "178cd9a6-fa09-404e-bd39-0d0875d86924", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T01:52:57.000Z" - }, - "end": { - "$date": "2021-08-04T02:16:51.000Z" - }, - "events": [ - { - "uuid": "34b6ab86-17d7-45dc-8769-cad480d5acdd", - "start": { - "$date": "2021-08-04T01:52:57.000Z" - }, - "end": { - "$date": "2021-08-04T02:16:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "d5d47fad-4c34-4974-91df-156957303c87", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T02:26:11.000Z" - }, - "end": { - "$date": "2021-08-04T02:28:27.000Z" - }, - "events": [ - { - "uuid": "b7f97d56-1525-49d4-afff-d4c2d63c6d54", - "start": { - "$date": "2021-08-04T02:26:11.000Z" - }, - "end": { - "$date": "2021-08-04T02:28:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca139977-7b4e-4998-95f2-5523009c1cbe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-04T02:24:40.000Z" - }, - "end": { - "$date": "2021-08-04T02:53:20.000Z" - }, - "events": [ - { - "uuid": "980c412e-4833-414b-ac4c-5787d38b6c59", - "start": { - "$date": "2021-08-04T02:24:40.000Z" - }, - "end": { - "$date": "2021-08-04T02:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02e22542-5e8d-48ca-b1a1-2fb84feac498", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T02:25:37.000Z" - }, - "end": { - "$date": "2021-08-04T02:53:12.000Z" - }, - "events": [ - { - "uuid": "34bbc109-aac3-45a7-b087-f30856ce1e26", - "start": { - "$date": "2021-08-04T02:25:37.000Z" - }, - "end": { - "$date": "2021-08-04T02:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bef508d6-48ad-40c4-90f8-1b50941f4b2a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T02:24:40.000Z" - }, - "end": { - "$date": "2021-08-04T02:53:21.000Z" - }, - "events": [ - { - "uuid": "db779c93-f40b-494b-a855-96d2d3cc3364", - "start": { - "$date": "2021-08-04T02:24:40.000Z" - }, - "end": { - "$date": "2021-08-04T02:53:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "cf7bfdd2-72d9-4d40-bf1f-227426577b9c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T02:44:43.000Z" - }, - "end": { - "$date": "2021-08-04T02:44:48.000Z" - }, - "events": [ - { - "uuid": "e44448de-11b4-4e14-a23d-46ea071fcd3b", - "start": { - "$date": "2021-08-04T02:44:43.000Z" - }, - "end": { - "$date": "2021-08-04T02:44:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "97ff822e-ced4-4bc2-9a16-e7887724cfa9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-04T02:35:48.000Z" - }, - "end": { - "$date": "2021-08-04T03:10:17.000Z" - }, - "events": [ - { - "uuid": "4a2ba3e0-fa2e-4662-8fb7-76ab2640c572", - "start": { - "$date": "2021-08-04T02:35:48.000Z" - }, - "end": { - "$date": "2021-08-04T03:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9bca30a-5314-468f-a658-091b09889173", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T02:57:23.000Z" - }, - "end": { - "$date": "2021-08-04T03:23:32.000Z" - }, - "events": [ - { - "uuid": "c0fc4cd0-4f09-4b98-ae9e-10353cf39edc", - "start": { - "$date": "2021-08-04T02:57:23.000Z" - }, - "end": { - "$date": "2021-08-04T03:23:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "57a7f1f4-d609-41ad-a4e6-e86898115abc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-04T03:14:28.000Z" - }, - "end": { - "$date": "2021-08-04T03:16:09.000Z" - }, - "events": [ - { - "uuid": "a9535313-8e63-4086-88d7-2f78428326b5", - "start": { - "$date": "2021-08-04T03:14:28.000Z" - }, - "end": { - "$date": "2021-08-04T03:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df636c3a-f74a-447f-9c38-87d24dfd5012", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-04T03:31:22.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:29.000Z" - }, - "events": [ - { - "uuid": "7ba3f69f-2bad-47d2-959b-5876a7a22d77", - "start": { - "$date": "2021-08-04T03:31:22.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fc59ca95-ae17-4cae-bcf7-d053a2517ab5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-04T03:16:53.000Z" - }, - "end": { - "$date": "2021-08-04T03:18:14.000Z" - }, - "events": [ - { - "uuid": "b44593aa-6e3b-4193-baba-3eb8305c8038", - "start": { - "$date": "2021-08-04T03:16:53.000Z" - }, - "end": { - "$date": "2021-08-04T03:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b2fcf25f-909d-4c83-bbeb-cb22a6b2f095", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T03:18:30.000Z" - }, - "end": { - "$date": "2021-08-04T03:27:40.000Z" - }, - "events": [ - { - "uuid": "5c6f21d4-2c2f-4d55-a1af-8604078b7e55", - "start": { - "$date": "2021-08-04T03:18:30.000Z" - }, - "end": { - "$date": "2021-08-04T03:27:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ba6425ea-d347-48b1-bd99-3191c302148f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-04T03:22:49.000Z" - }, - "end": { - "$date": "2021-08-04T03:40:35.000Z" - }, - "events": [ - { - "uuid": "07716f1d-945b-40d5-8442-9803c55995e7", - "start": { - "$date": "2021-08-04T03:22:49.000Z" - }, - "end": { - "$date": "2021-08-04T03:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "674e3368-b09e-4fd1-bae3-b6725200977f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-04T03:23:40.000Z" - }, - "end": { - "$date": "2021-08-04T03:25:48.000Z" - }, - "events": [ - { - "uuid": "95e2435e-802a-4274-98c0-32645eb57cc1", - "start": { - "$date": "2021-08-04T03:23:40.000Z" - }, - "end": { - "$date": "2021-08-04T03:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0eaf98d8-cd2a-42c5-80ba-3b210f5b7988", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-03T21:10:32.000Z" - }, - "end": { - "$date": "2021-08-04T06:46:48.000Z" - }, - "events": [ - { - "uuid": "cb0498b3-6872-4d52-85c7-d5e50c53d977", - "start": { - "$date": "2021-08-03T21:10:32.000Z" - }, - "end": { - "$date": "2021-08-04T06:46:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ff1f5b4-8b5f-4d2f-8320-c788bbf3d812", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T03:32:11.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:20.000Z" - }, - "events": [ - { - "uuid": "5cb98107-5f9c-40a7-a278-235ceefc43db", - "start": { - "$date": "2021-08-04T03:32:11.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abb4e1fb-67ec-4458-bf06-43f08c927172", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-04T03:31:56.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:20.000Z" - }, - "events": [ - { - "uuid": "9e72ac83-e9cd-488c-a6c8-cf14aa221b35", - "start": { - "$date": "2021-08-04T03:31:56.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb4897b8-e113-4b09-b9f6-c1fb102b4f54", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T03:32:09.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:25.000Z" - }, - "events": [ - { - "uuid": "1bac8176-b422-415d-98ab-a453d6c4bfe5", - "start": { - "$date": "2021-08-04T03:32:09.000Z" - }, - "end": { - "$date": "2021-08-04T03:58:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3e21ce1f-ae47-44dc-a9b0-f8cd3ac1d480", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-04T03:31:30.000Z" - }, - "end": { - "$date": "2021-08-04T04:22:11.000Z" - }, - "events": [ - { - "uuid": "013d9138-1203-452d-934b-105efe4d3351", - "start": { - "$date": "2021-08-04T03:31:30.000Z" - }, - "end": { - "$date": "2021-08-04T04:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "10728ebc-7dbb-4c51-84a9-3373e70474eb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-04T03:41:20.000Z" - }, - "end": { - "$date": "2021-08-04T03:52:07.000Z" - }, - "events": [ - { - "uuid": "af2fff0a-b365-4e3a-85b8-c052e5a10c25", - "start": { - "$date": "2021-08-04T03:41:20.000Z" - }, - "end": { - "$date": "2021-08-04T03:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "68f51b5c-82a6-4459-8d49-bde91e9ea22b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T03:51:13.000Z" - }, - "end": { - "$date": "2021-08-04T05:24:21.000Z" - }, - "events": [ - { - "uuid": "17b4d35e-94fb-4822-ac43-42b6156c3d6c", - "start": { - "$date": "2021-08-04T03:51:13.000Z" - }, - "end": { - "$date": "2021-08-04T05:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e99d323b-4a35-482c-9eab-6c5f398115a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T03:59:38.000Z" - }, - "end": { - "$date": "2021-08-04T04:04:01.000Z" - }, - "events": [ - { - "uuid": "df2b973f-06a8-46ac-964d-47cf014ef243", - "start": { - "$date": "2021-08-04T03:59:38.000Z" - }, - "end": { - "$date": "2021-08-04T04:04:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "242baced-89c5-44e6-8dd1-23b995452965", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-04T03:59:52.000Z" - }, - "end": { - "$date": "2021-08-04T05:24:48.000Z" - }, - "events": [ - { - "uuid": "3bbffa6b-d8fc-4596-be2a-bcb1bc28351d", - "start": { - "$date": "2021-08-04T03:59:52.000Z" - }, - "end": { - "$date": "2021-08-04T05:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "101fc062-bdbb-47c2-9ba2-f1a3ba7d18d2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-04T03:59:57.000Z" - }, - "end": { - "$date": "2021-08-04T04:45:08.000Z" - }, - "events": [ - { - "uuid": "8a21bf16-f288-463f-b027-ec054b52622f", - "start": { - "$date": "2021-08-04T03:59:57.000Z" - }, - "end": { - "$date": "2021-08-04T04:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2a2caddf-9174-4e7b-8fd6-fffc651ead29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T04:01:31.000Z" - }, - "end": { - "$date": "2021-08-04T04:45:06.000Z" - }, - "events": [ - { - "uuid": "f7a03cb4-3d8e-4c12-b9bb-9535220f31a6", - "start": { - "$date": "2021-08-04T04:01:31.000Z" - }, - "end": { - "$date": "2021-08-04T04:45:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ffbfffed-59ec-4c6d-9cc2-a1510fc945a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-04T05:20:39.000Z" - }, - "end": { - "$date": "2021-08-04T06:34:00.000Z" - }, - "events": [ - { - "uuid": "5660a35a-45dd-44e9-afa8-62fed3934e59", - "start": { - "$date": "2021-08-04T05:20:39.000Z" - }, - "end": { - "$date": "2021-08-04T06:34:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e1f33dbe-8967-4467-a683-1f21586dc9c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T05:25:06.000Z" - }, - "end": { - "$date": "2021-08-04T06:33:44.000Z" - }, - "events": [ - { - "uuid": "b1e15b5e-64d2-48a0-80b9-153d41a92ae9", - "start": { - "$date": "2021-08-04T05:25:06.000Z" - }, - "end": { - "$date": "2021-08-04T06:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "44513bfa-6d8e-4e6a-ab30-b4f14f8f0a7a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-04T05:41:42.000Z" - }, - "end": { - "$date": "2021-08-04T06:42:14.000Z" - }, - "events": [ - { - "uuid": "626bdd9d-245d-4afb-8646-e2c204a70094", - "start": { - "$date": "2021-08-04T05:41:42.000Z" - }, - "end": { - "$date": "2021-08-04T06:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "28b06177-8764-409e-a059-081477c1ea17", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T06:34:39.000Z" - }, - "end": { - "$date": "2021-08-04T10:27:04.000Z" - }, - "events": [ - { - "uuid": "6d26ff2f-4042-4611-beeb-513bb640b42a", - "start": { - "$date": "2021-08-04T06:34:39.000Z" - }, - "end": { - "$date": "2021-08-04T10:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "57223b0b-d66a-4e34-aa4b-b5c7ccbb5ade", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T06:47:18.000Z" - }, - "end": { - "$date": "2021-08-04T07:14:31.000Z" - }, - "events": [ - { - "uuid": "24f15f8d-728a-4a81-8165-dfef0e9e346c", - "start": { - "$date": "2021-08-04T06:47:18.000Z" - }, - "end": { - "$date": "2021-08-04T07:14:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "250cc0aa-3afa-4363-8258-ca565a7d791f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-04T06:55:48.000Z" - }, - "end": { - "$date": "2021-08-04T08:09:59.000Z" - }, - "events": [ - { - "uuid": "5c5e4072-929a-4656-b816-577413b1f9da", - "start": { - "$date": "2021-08-04T06:55:48.000Z" - }, - "end": { - "$date": "2021-08-04T08:09:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2b4dcb39-f3c0-43f5-98ab-0c9d92372e93", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T07:15:01.000Z" - }, - "end": { - "$date": "2021-08-04T07:55:03.000Z" - }, - "events": [ - { - "uuid": "ab4510e3-a57b-4bfd-ad66-f3cc2ed9a243", - "start": { - "$date": "2021-08-04T07:15:01.000Z" - }, - "end": { - "$date": "2021-08-04T07:55:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2d29a950-d266-45e1-b1d5-ce7616ecf768", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T08:42:34.000Z" - }, - "end": { - "$date": "2021-08-04T09:49:03.000Z" - }, - "events": [ - { - "uuid": "be8a313f-592e-483b-a7ba-20751c683526", - "start": { - "$date": "2021-08-04T08:42:34.000Z" - }, - "end": { - "$date": "2021-08-04T09:42:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ef18788-c61c-42d6-9be7-f27e626a5850", - "start": { - "$date": "2021-08-04T09:42:34.000Z" - }, - "end": { - "$date": "2021-08-04T09:43:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb170f88-5afe-4282-9ed1-6494c4443a79", - "start": { - "$date": "2021-08-04T09:43:34.000Z" - }, - "end": { - "$date": "2021-08-04T09:49:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "de1aaae1-fe17-4dec-bafc-df7e7f25bbce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T09:49:43.000Z" - }, - "end": { - "$date": "2021-08-04T10:27:45.000Z" - }, - "events": [ - { - "uuid": "9f5b4f84-5915-4709-8ccf-51bc2b4efff1", - "start": { - "$date": "2021-08-04T09:49:43.000Z" - }, - "end": { - "$date": "2021-08-04T10:27:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "960ba996-6290-4c6a-9dfe-393eed70662e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T14:25:05.000Z" - }, - "end": { - "$date": "2021-08-04T18:42:46.000Z" - }, - "events": [ - { - "uuid": "ed9be071-86fa-4015-bdf1-8bc88d9f9c1a", - "start": { - "$date": "2021-08-04T14:25:05.000Z" - }, - "end": { - "$date": "2021-08-04T18:42:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "18515a82-6898-4177-87b3-ace3a870e3ac", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T15:50:29.000Z" - }, - "end": { - "$date": "2021-08-04T16:28:30.000Z" - }, - "events": [ - { - "uuid": "3588bb00-ccf2-496b-85c5-5ab3b0cfcb3a", - "start": { - "$date": "2021-08-04T15:50:29.000Z" - }, - "end": { - "$date": "2021-08-04T16:28:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1afb525d-f74e-4720-8f5e-7399ab5bd1ef", - "uuid": "e3a0f2c5-d4be-4b62-a3d0-ae3b8931bd76", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T16:36:08.000Z" - }, - "end": { - "$date": "2021-08-04T16:59:28.000Z" - }, - "events": [ - { - "uuid": "ef008857-faf3-47a4-b9fc-195556a2ec48", - "start": { - "$date": "2021-08-04T16:36:08.000Z" - }, - "end": { - "$date": "2021-08-04T16:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a38bda61-2c96-4fbc-8bf9-f95161624e4e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-04T16:56:57.000Z" - }, - "end": { - "$date": "2021-08-04T16:59:04.000Z" - }, - "events": [ - { - "uuid": "8fe13621-928e-4b0a-b433-e992e49145b3", - "start": { - "$date": "2021-08-04T16:56:57.000Z" - }, - "end": { - "$date": "2021-08-04T16:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "32a15c15-8d18-495d-83cd-c8e953728af4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T16:57:50.000Z" - }, - "end": { - "$date": "2021-08-04T17:04:00.000Z" - }, - "events": [ - { - "uuid": "e1ec18b7-571d-4bb4-9c3a-6687a3b4ebac", - "start": { - "$date": "2021-08-04T16:57:50.000Z" - }, - "end": { - "$date": "2021-08-04T17:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "008731a9-96b2-4b6b-88d4-cb0f3ed01bbf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T17:05:20.000Z" - }, - "end": { - "$date": "2021-08-04T17:06:43.000Z" - }, - "events": [ - { - "uuid": "42fc704e-dc88-41f7-a13a-ef2f295a65cd", - "start": { - "$date": "2021-08-04T17:05:20.000Z" - }, - "end": { - "$date": "2021-08-04T17:06:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "2e9c009d-a59a-4dc3-9948-bb66dc349dad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-04T17:07:54.000Z" - }, - "end": { - "$date": "2021-08-04T18:01:53.000Z" - }, - "events": [ - { - "uuid": "f007fb3e-2496-4296-b74f-cb76782566b4", - "start": { - "$date": "2021-08-04T17:07:54.000Z" - }, - "end": { - "$date": "2021-08-04T18:01:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a0f1cc74-a97a-48fa-b8b6-69ac061072b8", - "uuid": "897c2ebb-6808-4cd9-93f2-013087954fa0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T17:11:12.000Z" - }, - "end": { - "$date": "2021-08-04T19:19:07.000Z" - }, - "events": [ - { - "uuid": "055596a7-1fa1-4216-8be0-970c6463b8ed", - "start": { - "$date": "2021-08-04T17:11:12.000Z" - }, - "end": { - "$date": "2021-08-04T19:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "78a88e1b-fdd1-4ce9-b537-028e00196b79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T17:16:46.000Z" - }, - "end": { - "$date": "2021-08-04T17:59:48.000Z" - }, - "events": [ - { - "uuid": "32078e19-6022-4101-9b35-f5b9b4261a59", - "start": { - "$date": "2021-08-04T17:16:46.000Z" - }, - "end": { - "$date": "2021-08-04T17:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8598475d-8ab5-4455-a83f-2b578f8913d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T18:57:10.000Z" - }, - "end": { - "$date": "2021-08-04T19:01:25.000Z" - }, - "events": [ - { - "uuid": "d081346d-6e5e-41c7-b0f1-e394c3538f33", - "start": { - "$date": "2021-08-04T18:57:10.000Z" - }, - "end": { - "$date": "2021-08-04T19:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7b19fd68-4fd7-4bc7-bed3-e828d63357a1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T19:22:59.000Z" - }, - "end": { - "$date": "2021-08-04T19:25:58.000Z" - }, - "events": [ - { - "uuid": "9030d480-d1d3-438d-94db-f5ee2dad496f", - "start": { - "$date": "2021-08-04T19:22:59.000Z" - }, - "end": { - "$date": "2021-08-04T19:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "da5ccc12-1926-4413-9446-cd17740882e1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T19:26:20.000Z" - }, - "end": { - "$date": "2021-08-04T20:30:37.000Z" - }, - "events": [ - { - "uuid": "93bf69fe-090d-48af-8f17-88c2cace25cb", - "start": { - "$date": "2021-08-04T19:26:20.000Z" - }, - "end": { - "$date": "2021-08-04T20:30:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "05aaa069-2fd8-43f1-8193-7cf24165b70f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T20:12:22.000Z" - }, - "end": { - "$date": "2021-08-04T20:31:17.000Z" - }, - "events": [ - { - "uuid": "5f2fba54-75c7-40c4-b920-d96878ed482d", - "start": { - "$date": "2021-08-04T20:12:22.000Z" - }, - "end": { - "$date": "2021-08-04T20:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "6fa673a1-7322-4b37-9bed-129c5c61b360", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-04T20:44:08.000Z" - }, - "end": { - "$date": "2021-08-05T00:38:39.000Z" - }, - "events": [ - { - "uuid": "3009deda-6f72-4506-aae3-be01ca0f2348", - "start": { - "$date": "2021-08-04T20:44:08.000Z" - }, - "end": { - "$date": "2021-08-04T22:17:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "48f2fafb-b7fe-4339-98b8-bcaba974e431", - "start": { - "$date": "2021-08-04T22:17:08.000Z" - }, - "end": { - "$date": "2021-08-04T22:22:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ea710dd-ed22-445d-bb18-315e79e972c5", - "start": { - "$date": "2021-08-04T22:22:08.000Z" - }, - "end": { - "$date": "2021-08-05T00:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34a26d35-908b-4f19-bf87-94a2578577bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-04T21:06:58.000Z" - }, - "end": { - "$date": "2021-08-04T21:39:48.000Z" - }, - "events": [ - { - "uuid": "a87fa40e-588e-494d-b14a-887a7732ce17", - "start": { - "$date": "2021-08-04T21:06:58.000Z" - }, - "end": { - "$date": "2021-08-04T21:39:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "144d2f41-80ca-4e01-ac31-fcf840e9d4ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T21:08:23.000Z" - }, - "end": { - "$date": "2021-08-04T21:36:37.000Z" - }, - "events": [ - { - "uuid": "dffd7a24-f27c-46d5-8121-ffeddd8916bd", - "start": { - "$date": "2021-08-04T21:08:23.000Z" - }, - "end": { - "$date": "2021-08-04T21:36:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "cd9af750-d117-4738-b212-e49036cbc52c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-04T21:36:47.000Z" - }, - "end": { - "$date": "2021-08-04T23:48:33.000Z" - }, - "events": [ - { - "uuid": "8a7664d8-6871-4133-b305-0544d6bc535d", - "start": { - "$date": "2021-08-04T21:36:47.000Z" - }, - "end": { - "$date": "2021-08-04T23:48:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0fafc890-1d63-4f42-ac55-81bd4d1f3737", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-04T22:23:36.000Z" - }, - "end": { - "$date": "2021-08-04T23:16:33.000Z" - }, - "events": [ - { - "uuid": "c4e01627-6fb1-4d43-9d54-d99833a03239", - "start": { - "$date": "2021-08-04T22:23:36.000Z" - }, - "end": { - "$date": "2021-08-04T23:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e72842a2-b816-43c3-8a77-bff47f17de26", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T22:46:08.000Z" - }, - "end": { - "$date": "2021-08-04T23:23:41.000Z" - }, - "events": [ - { - "uuid": "290f5bfc-59d5-4a85-8f72-1ba6cfc3d37e", - "start": { - "$date": "2021-08-04T22:46:08.000Z" - }, - "end": { - "$date": "2021-08-04T23:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "76ad4671-22d2-4b14-98c0-ba8bbae5daa0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-04T22:55:55.000Z" - }, - "end": { - "$date": "2021-08-05T00:19:06.000Z" - }, - "events": [ - { - "uuid": "0293cbf5-8bdf-4386-b421-59cbc08fef7a", - "start": { - "$date": "2021-08-04T22:55:55.000Z" - }, - "end": { - "$date": "2021-08-04T23:27:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2c009b5-108e-4d9d-b02c-8bd0edb7e9a4", - "start": { - "$date": "2021-08-04T23:27:55.000Z" - }, - "end": { - "$date": "2021-08-05T00:05:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e626275d-24c6-405a-acdd-9977e978ba54", - "start": { - "$date": "2021-08-05T00:05:55.000Z" - }, - "end": { - "$date": "2021-08-05T00:07:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2f367e1-0d8a-4211-89b4-0884420a0f30", - "start": { - "$date": "2021-08-05T00:07:55.000Z" - }, - "end": { - "$date": "2021-08-05T00:08:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc01a00f-170b-4afd-9dd7-7778d4e35578", - "start": { - "$date": "2021-08-05T00:08:55.000Z" - }, - "end": { - "$date": "2021-08-05T00:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "89b59237-ee69-4d83-9934-ed76a27a0c04", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-04T23:24:06.000Z" - }, - "end": { - "$date": "2021-08-04T23:52:04.000Z" - }, - "events": [ - { - "uuid": "a8c0b1ad-32e8-4a1d-9608-aaa4d98080e9", - "start": { - "$date": "2021-08-04T23:24:06.000Z" - }, - "end": { - "$date": "2021-08-04T23:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3a95e66e-9bf1-43eb-8b41-d39b75ed325f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-04T23:24:28.000Z" - }, - "end": { - "$date": "2021-08-05T00:37:55.000Z" - }, - "events": [ - { - "uuid": "7f8feeac-6536-476c-ad35-d311e97c39e7", - "start": { - "$date": "2021-08-04T23:24:28.000Z" - }, - "end": { - "$date": "2021-08-05T00:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5e102cb7-8a64-4d44-8967-0383361c6dfe", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-05T00:07:10.000Z" - }, - "end": { - "$date": "2021-08-05T04:36:07.000Z" - }, - "events": [ - { - "uuid": "cf91d71e-7122-4d19-8454-f7482655d14a", - "start": { - "$date": "2021-08-05T00:07:10.000Z" - }, - "end": { - "$date": "2021-08-05T04:36:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b8c5ebbb-21cb-4117-85b7-dddce2a9ac93", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-05T00:19:15.000Z" - }, - "end": { - "$date": "2021-08-05T06:19:32.000Z" - }, - "events": [ - { - "uuid": "82989a80-ff06-4b06-9b92-66c86222d3bf", - "start": { - "$date": "2021-08-05T00:19:15.000Z" - }, - "end": { - "$date": "2021-08-05T06:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "501fe274-c692-4ca1-b374-f3708e1abce5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T00:22:44.000Z" - }, - "end": { - "$date": "2021-08-05T00:44:23.000Z" - }, - "events": [ - { - "uuid": "9ced3bfb-22a5-4849-beb7-38de9ce3cf5e", - "start": { - "$date": "2021-08-05T00:22:44.000Z" - }, - "end": { - "$date": "2021-08-05T00:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bb37106-421d-497e-8fb3-ec35741114cb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T01:36:53.000Z" - }, - "end": { - "$date": "2021-08-05T02:01:14.000Z" - }, - "events": [ - { - "uuid": "6740c416-0516-4a1c-92d0-82d4b9d711bd", - "start": { - "$date": "2021-08-05T01:36:53.000Z" - }, - "end": { - "$date": "2021-08-05T02:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6d747a2-af86-4913-bd5b-171b2db42bcc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T01:37:19.000Z" - }, - "end": { - "$date": "2021-08-05T02:01:04.000Z" - }, - "events": [ - { - "uuid": "bf51080e-e255-42ca-8b1b-331997709712", - "start": { - "$date": "2021-08-05T01:37:19.000Z" - }, - "end": { - "$date": "2021-08-05T02:01:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a8e08e01-e6b5-4d71-9570-7392280dbd41", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-05T01:46:15.000Z" - }, - "end": { - "$date": "2021-08-05T04:32:51.000Z" - }, - "events": [ - { - "uuid": "8f794dbb-1d1a-4432-a21f-521c94f46c4c", - "start": { - "$date": "2021-08-05T01:46:15.000Z" - }, - "end": { - "$date": "2021-08-05T04:32:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "743ee738-a148-4472-b850-d9d1a72551e5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T01:51:48.000Z" - }, - "end": { - "$date": "2021-08-05T02:29:49.000Z" - }, - "events": [ - { - "uuid": "1738c61a-e827-4c9c-beca-a7ac8327ca4b", - "start": { - "$date": "2021-08-05T01:51:48.000Z" - }, - "end": { - "$date": "2021-08-05T02:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f97242c-bae7-4591-aeb3-2f0a75495de0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T02:04:37.000Z" - }, - "end": { - "$date": "2021-08-05T02:35:51.000Z" - }, - "events": [ - { - "uuid": "258f540e-2071-49cd-bc23-3bfc86d34556", - "start": { - "$date": "2021-08-05T02:04:37.000Z" - }, - "end": { - "$date": "2021-08-05T02:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e03233bd-4d36-4a35-a3e6-302ed22f3b6b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T02:05:45.000Z" - }, - "end": { - "$date": "2021-08-05T02:35:40.000Z" - }, - "events": [ - { - "uuid": "cdfee028-13c3-4844-a116-b1f955340fc9", - "start": { - "$date": "2021-08-05T02:05:45.000Z" - }, - "end": { - "$date": "2021-08-05T02:35:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1dbc5625-b7ae-4537-bd39-c6458143d511", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-05T02:09:24.000Z" - }, - "end": { - "$date": "2021-08-05T03:41:16.000Z" - }, - "events": [ - { - "uuid": "8cb1933d-068d-4686-b8e2-a41e038cd538", - "start": { - "$date": "2021-08-05T02:09:24.000Z" - }, - "end": { - "$date": "2021-08-05T03:41:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ed0a9902-6326-4adb-864d-ab7a61038d3f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T02:29:59.000Z" - }, - "end": { - "$date": "2021-08-05T03:26:06.000Z" - }, - "events": [ - { - "uuid": "cec6c9d2-e8b4-4a33-b319-4a07ecc2d8a2", - "start": { - "$date": "2021-08-05T02:29:59.000Z" - }, - "end": { - "$date": "2021-08-05T03:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a6aef04-c3c5-42ec-bec5-3fd2fc71f9e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T02:36:37.000Z" - }, - "end": { - "$date": "2021-08-05T02:37:49.000Z" - }, - "events": [ - { - "uuid": "db2e6721-c4eb-4b82-a1eb-0160ab59bb52", - "start": { - "$date": "2021-08-05T02:36:37.000Z" - }, - "end": { - "$date": "2021-08-05T02:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f7b95239-f4c8-402b-afb8-9b90fe6dd115", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T02:47:55.000Z" - }, - "end": { - "$date": "2021-08-05T03:35:01.000Z" - }, - "events": [ - { - "uuid": "854f88d2-07de-4676-8881-692cfea8cd4d", - "start": { - "$date": "2021-08-05T02:47:55.000Z" - }, - "end": { - "$date": "2021-08-05T03:35:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6d5497ef-acd3-4900-9b76-217b1a8a79f0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T03:26:31.000Z" - }, - "end": { - "$date": "2021-08-05T06:25:15.000Z" - }, - "events": [ - { - "uuid": "edb5e32e-4748-4d29-8f10-fcf928275919", - "start": { - "$date": "2021-08-05T03:26:31.000Z" - }, - "end": { - "$date": "2021-08-05T04:36:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "330e7f27-5837-41b6-9d7b-db9399d011ab", - "start": { - "$date": "2021-08-05T04:36:31.000Z" - }, - "end": { - "$date": "2021-08-05T04:41:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "87064e87-1e4c-42b4-b1c7-5418bfe9aa5e", - "start": { - "$date": "2021-08-05T04:41:31.000Z" - }, - "end": { - "$date": "2021-08-05T06:25:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9290e7ce-cc4e-4ad7-98d9-64222c1045f8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-05T03:55:38.000Z" - }, - "end": { - "$date": "2021-08-05T04:47:39.000Z" - }, - "events": [ - { - "uuid": "e7be6464-f3b7-4f86-a659-4ecfca8ff399", - "start": { - "$date": "2021-08-05T03:55:38.000Z" - }, - "end": { - "$date": "2021-08-05T04:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1e4d1ac-93e6-4e2e-8aae-5e497681e19b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T04:18:45.000Z" - }, - "end": { - "$date": "2021-08-05T04:33:50.000Z" - }, - "events": [ - { - "uuid": "9ec3021c-69ed-42c5-8f18-c1829ea0ad76", - "start": { - "$date": "2021-08-05T04:18:45.000Z" - }, - "end": { - "$date": "2021-08-05T04:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "3be0747a-9d6b-4b68-a071-894e01ded03e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T04:35:16.000Z" - }, - "end": { - "$date": "2021-08-05T05:00:31.000Z" - }, - "events": [ - { - "uuid": "a124923d-4459-4c5a-9af6-b1b552975819", - "start": { - "$date": "2021-08-05T04:35:16.000Z" - }, - "end": { - "$date": "2021-08-05T05:00:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c816531c-c9f2-4b32-8ebf-092e57046cca", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-05T04:36:36.000Z" - }, - "end": { - "$date": "2021-08-05T04:44:43.000Z" - }, - "events": [ - { - "uuid": "bfb5b6fb-95e5-4975-a9ae-fcc7a7c4f78b", - "start": { - "$date": "2021-08-05T04:36:36.000Z" - }, - "end": { - "$date": "2021-08-05T04:44:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25ce17c0-a25c-4972-8b8d-660f1b635e5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T05:19:30.000Z" - }, - "end": { - "$date": "2021-08-05T05:55:12.000Z" - }, - "events": [ - { - "uuid": "58f6d622-a4ed-40c4-ae74-9ee4e908f435", - "start": { - "$date": "2021-08-05T05:19:30.000Z" - }, - "end": { - "$date": "2021-08-05T05:55:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c2e695fb-e84c-4dca-9d4d-da9e46e0e7d6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-05T05:43:25.000Z" - }, - "end": { - "$date": "2021-08-05T06:48:22.000Z" - }, - "events": [ - { - "uuid": "efdd2741-86d6-419b-bac9-5af97e12bc2b", - "start": { - "$date": "2021-08-05T05:43:25.000Z" - }, - "end": { - "$date": "2021-08-05T06:48:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "083aff59-22d7-41ff-9c16-d3fcd662d472", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-05T05:53:09.000Z" - }, - "end": { - "$date": "2021-08-05T07:28:22.000Z" - }, - "events": [ - { - "uuid": "9f15fd65-ba13-402f-ac49-a2935b5ab30e", - "start": { - "$date": "2021-08-05T05:53:09.000Z" - }, - "end": { - "$date": "2021-08-05T07:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a3a9590d-7724-4981-8c8a-86e19613b72e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T05:56:15.000Z" - }, - "end": { - "$date": "2021-08-05T06:48:35.000Z" - }, - "events": [ - { - "uuid": "3d2fd3ef-d650-4546-99b5-cb0a229e151f", - "start": { - "$date": "2021-08-05T05:56:15.000Z" - }, - "end": { - "$date": "2021-08-05T06:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b400664f-fbac-454c-a0ab-190127ef3141", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-05T07:49:13.000Z" - }, - "end": { - "$date": "2021-08-05T08:18:23.000Z" - }, - "events": [ - { - "uuid": "46e8b4a9-9167-4e07-9d87-71ee1aa95653", - "start": { - "$date": "2021-08-05T07:49:13.000Z" - }, - "end": { - "$date": "2021-08-05T08:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "38ef27b9-a4ff-4c27-a5b8-81629b401516", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-05T14:34:12.000Z" - }, - "end": { - "$date": "2021-08-05T15:13:48.000Z" - }, - "events": [ - { - "uuid": "a4158dda-85ed-4083-a02d-ffb34acd7425", - "start": { - "$date": "2021-08-05T14:34:12.000Z" - }, - "end": { - "$date": "2021-08-05T15:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55627e73-ee96-4f31-b665-ac605828784b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T15:14:40.000Z" - }, - "end": { - "$date": "2021-08-05T15:47:49.000Z" - }, - "events": [ - { - "uuid": "d0e169bb-55a3-40b3-806c-60f9fa3a5e0f", - "start": { - "$date": "2021-08-05T15:14:40.000Z" - }, - "end": { - "$date": "2021-08-05T15:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "86e41b36-d860-479d-9443-f9299d051eba", - "uuid": "aaf7f3c2-8475-42f2-bd26-685a53502a27", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-05T15:15:24.000Z" - }, - "end": { - "$date": "2021-08-05T16:19:42.000Z" - }, - "events": [ - { - "uuid": "015ffa90-6cb7-45b0-bac6-addaf82cd80d", - "start": { - "$date": "2021-08-05T15:15:24.000Z" - }, - "end": { - "$date": "2021-08-05T16:19:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "216ba044-920a-4126-93b7-0a0499454b1e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T16:28:31.000Z" - }, - "end": { - "$date": "2021-08-05T16:51:00.000Z" - }, - "events": [ - { - "uuid": "829efb43-1781-400e-bf96-05023ede5116", - "start": { - "$date": "2021-08-05T16:28:31.000Z" - }, - "end": { - "$date": "2021-08-05T16:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a4cc5b08-2ad8-43e7-82df-c7a79a34aad8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T16:09:17.000Z" - }, - "end": { - "$date": "2021-08-05T20:28:35.000Z" - }, - "events": [ - { - "uuid": "66e733e3-c4ba-474f-bd65-33de46162377", - "start": { - "$date": "2021-08-05T16:09:17.000Z" - }, - "end": { - "$date": "2021-08-05T18:54:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2bf94707-029d-4c1f-a0df-a540072a0d14", - "start": { - "$date": "2021-08-05T18:54:17.000Z" - }, - "end": { - "$date": "2021-08-05T18:58:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4ef29714-7e5c-4ab0-9770-d0cd5c12e98e", - "start": { - "$date": "2021-08-05T18:58:17.000Z" - }, - "end": { - "$date": "2021-08-05T20:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7f0c78fc-8903-4308-abc8-aee8d78c1e40", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-05T17:09:14.000Z" - }, - "end": { - "$date": "2021-08-05T18:12:42.000Z" - }, - "events": [ - { - "uuid": "c7f6c6b9-323a-41be-bc85-bd69916b468c", - "start": { - "$date": "2021-08-05T17:09:14.000Z" - }, - "end": { - "$date": "2021-08-05T18:12:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9d38923-a222-4bcf-a331-ee6d95a86bca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T18:05:30.000Z" - }, - "end": { - "$date": "2021-08-05T18:33:14.000Z" - }, - "events": [ - { - "uuid": "3b5edda7-2bf6-4d49-b5bf-309bdb1232bd", - "start": { - "$date": "2021-08-05T18:05:30.000Z" - }, - "end": { - "$date": "2021-08-05T18:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d4c8d6e-cabd-4d09-b1b0-06873e9d05c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T19:50:19.000Z" - }, - "end": { - "$date": "2021-08-05T20:15:03.000Z" - }, - "events": [ - { - "uuid": "4c52545a-935e-4b76-b603-9fb1d851f4e1", - "start": { - "$date": "2021-08-05T19:50:19.000Z" - }, - "end": { - "$date": "2021-08-05T20:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "765bad3d-ab0c-45fe-bd49-9bf01bdfb54c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T20:31:15.000Z" - }, - "end": { - "$date": "2021-08-05T20:34:05.000Z" - }, - "events": [ - { - "uuid": "11cae7ed-ae70-4142-a9f4-8503f23a349c", - "start": { - "$date": "2021-08-05T20:31:15.000Z" - }, - "end": { - "$date": "2021-08-05T20:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c65b57aa-a854-48b7-b461-1f71bd17a316", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T20:34:25.000Z" - }, - "end": { - "$date": "2021-08-05T21:08:32.000Z" - }, - "events": [ - { - "uuid": "7aead9a9-c277-4b98-a4ca-89838ae227df", - "start": { - "$date": "2021-08-05T20:34:25.000Z" - }, - "end": { - "$date": "2021-08-05T21:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "526d38e5-b630-44f6-baa1-4717cccf3de1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-05T21:52:51.000Z" - }, - "end": { - "$date": "2021-08-06T03:23:48.000Z" - }, - "events": [ - { - "uuid": "459a2c37-1c83-4f1f-9941-648448ae4b2f", - "start": { - "$date": "2021-08-05T21:52:51.000Z" - }, - "end": { - "$date": "2021-08-05T23:36:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7ab5680c-21d8-4a59-b73b-00ffeccad737", - "start": { - "$date": "2021-08-05T23:36:51.000Z" - }, - "end": { - "$date": "2021-08-05T23:41:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0d809d4-3f3f-435c-bd69-0e999ba5fd4b", - "start": { - "$date": "2021-08-05T23:41:51.000Z" - }, - "end": { - "$date": "2021-08-06T00:16:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1da0df24-7b1f-46cc-b563-d9d3d217d737", - "start": { - "$date": "2021-08-06T00:16:51.000Z" - }, - "end": { - "$date": "2021-08-06T01:39:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3b69c1bc-a0ca-4134-a866-1603306226c0", - "start": { - "$date": "2021-08-06T01:39:51.000Z" - }, - "end": { - "$date": "2021-08-06T01:42:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "79a3c434-9816-4e30-93e3-38a19c8363e5", - "start": { - "$date": "2021-08-06T01:42:51.000Z" - }, - "end": { - "$date": "2021-08-06T02:15:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "01ed95b7-3a10-46c1-814a-fdc06e50516f", - "start": { - "$date": "2021-08-06T02:15:51.000Z" - }, - "end": { - "$date": "2021-08-06T02:33:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4dad3a6f-4791-4499-b31c-dd547a74ece0", - "start": { - "$date": "2021-08-06T02:33:51.000Z" - }, - "end": { - "$date": "2021-08-06T02:40:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "24779439-9354-4039-a424-e69bd2c6005d", - "start": { - "$date": "2021-08-06T02:40:51.000Z" - }, - "end": { - "$date": "2021-08-06T03:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f6e50046-c2b9-42a1-9107-eadfcaa651c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T22:05:23.000Z" - }, - "end": { - "$date": "2021-08-05T22:16:17.000Z" - }, - "events": [ - { - "uuid": "03433c25-d8b9-4e32-a840-d31b414976ec", - "start": { - "$date": "2021-08-05T22:05:23.000Z" - }, - "end": { - "$date": "2021-08-05T22:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a04c442b-ffb2-4a0f-ab4a-8226ff8b007f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-05T23:30:48.000Z" - }, - "end": { - "$date": "2021-08-06T00:01:20.000Z" - }, - "events": [ - { - "uuid": "0274e1b4-7862-459f-a36e-c538265b1efd", - "start": { - "$date": "2021-08-05T23:30:48.000Z" - }, - "end": { - "$date": "2021-08-05T23:42:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2447bf07-7e96-434e-8006-54a72e4af8ac", - "start": { - "$date": "2021-08-05T23:42:48.000Z" - }, - "end": { - "$date": "2021-08-06T00:41:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8cb21525-1c76-4514-8d0d-b249079ed159", - "start": { - "$date": "2021-08-06T00:41:48.000Z" - }, - "end": { - "$date": "2021-08-06T00:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6231f489-2b0f-480c-a0c8-664c066d242f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-05T22:29:17.000Z" - }, - "end": { - "$date": "2021-08-05T22:43:42.000Z" - }, - "events": [ - { - "uuid": "a842a166-288d-4164-acd8-91d69155838f", - "start": { - "$date": "2021-08-05T22:29:17.000Z" - }, - "end": { - "$date": "2021-08-05T22:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "47572b4d-b52f-4a4a-a9a7-707c30ab75b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-05T22:42:55.000Z" - }, - "end": { - "$date": "2021-08-06T00:04:28.000Z" - }, - "events": [ - { - "uuid": "fe5fd2ce-a85d-470d-9d2e-3e48836f26ae", - "start": { - "$date": "2021-08-05T22:42:55.000Z" - }, - "end": { - "$date": "2021-08-05T23:31:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "218b081e-e41d-486d-892e-b9aedb9770a5", - "start": { - "$date": "2021-08-05T23:31:55.000Z" - }, - "end": { - "$date": "2021-08-05T23:41:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58e57c7d-f802-4ca9-9d48-fa14f98f786a", - "start": { - "$date": "2021-08-05T23:41:55.000Z" - }, - "end": { - "$date": "2021-08-06T00:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6667874-9072-476b-9f91-af72e3ee556a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T00:05:30.000Z" - }, - "end": { - "$date": "2021-08-06T00:26:34.000Z" - }, - "events": [ - { - "uuid": "5f81fdf5-7d33-4344-b27d-43095cc81d03", - "start": { - "$date": "2021-08-06T00:05:30.000Z" - }, - "end": { - "$date": "2021-08-06T00:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8d4d8cb-cdb4-4900-947c-84c76da9af49", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-06T00:10:23.000Z" - }, - "end": { - "$date": "2021-08-06T00:27:29.000Z" - }, - "events": [ - { - "uuid": "dda10c78-af81-4cce-bdff-7ddfa0e79d46", - "start": { - "$date": "2021-08-06T00:10:23.000Z" - }, - "end": { - "$date": "2021-08-06T00:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5124017e-8722-409d-95bf-6ee02e9037a9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-06T00:15:38.000Z" - }, - "end": { - "$date": "2021-08-06T00:48:41.000Z" - }, - "events": [ - { - "uuid": "df6a3904-a680-42ab-9b93-6264e2925b9e", - "start": { - "$date": "2021-08-06T00:15:38.000Z" - }, - "end": { - "$date": "2021-08-06T00:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37d00921-1ebb-4bcb-83d3-c37bac9634b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T00:30:31.000Z" - }, - "end": { - "$date": "2021-08-06T01:00:15.000Z" - }, - "events": [ - { - "uuid": "baa238da-f827-4727-9ad0-84a71176407d", - "start": { - "$date": "2021-08-06T00:30:31.000Z" - }, - "end": { - "$date": "2021-08-06T01:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91227640-86f0-44cd-aa35-efdce500bb73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T01:03:03.000Z" - }, - "end": { - "$date": "2021-08-06T01:20:51.000Z" - }, - "events": [ - { - "uuid": "58888652-8f6e-4ee7-98ec-7e3a2f646fb2", - "start": { - "$date": "2021-08-06T01:03:03.000Z" - }, - "end": { - "$date": "2021-08-06T01:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a686a757-8b74-4511-ae3a-55eeb7fe3ebe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T01:36:37.000Z" - }, - "end": { - "$date": "2021-08-06T01:49:37.000Z" - }, - "events": [ - { - "uuid": "04856a63-527a-4aab-9848-7292f4ee51bf", - "start": { - "$date": "2021-08-06T01:36:37.000Z" - }, - "end": { - "$date": "2021-08-06T01:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9440141-798a-42b6-8b92-7757316e4e17", - "uuid": "1b890343-f0b7-43b1-b06e-4229fc496225", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-06T02:33:15.000Z" - }, - "end": { - "$date": "2021-08-06T02:33:31.000Z" - }, - "events": [ - { - "uuid": "4ebc36a0-41c1-4c60-9f36-45e8525e47fd", - "start": { - "$date": "2021-08-06T02:33:15.000Z" - }, - "end": { - "$date": "2021-08-06T02:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e9e012d1-1992-40c5-ab3e-a483f770c6bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-06T01:44:13.000Z" - }, - "end": { - "$date": "2021-08-06T02:48:30.000Z" - }, - "events": [ - { - "uuid": "0efb05a5-07d1-482c-a3a4-6b6f75735e0f", - "start": { - "$date": "2021-08-06T01:44:13.000Z" - }, - "end": { - "$date": "2021-08-06T02:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b67fd98d-292a-4037-baaa-2466d964adf8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T01:55:50.000Z" - }, - "end": { - "$date": "2021-08-06T02:21:40.000Z" - }, - "events": [ - { - "uuid": "cd10e2b0-d1a0-4c91-ae27-1c7739af86f1", - "start": { - "$date": "2021-08-06T01:55:50.000Z" - }, - "end": { - "$date": "2021-08-06T02:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a67a65f-8c2d-47ac-b35a-468f8a6585e6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T02:25:52.000Z" - }, - "end": { - "$date": "2021-08-06T02:44:31.000Z" - }, - "events": [ - { - "uuid": "c1a9e214-36ef-49a0-98fd-15b8dce28479", - "start": { - "$date": "2021-08-06T02:25:52.000Z" - }, - "end": { - "$date": "2021-08-06T02:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36c988d0-390f-4d45-992c-901f8757cffe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T02:47:58.000Z" - }, - "end": { - "$date": "2021-08-06T03:11:54.000Z" - }, - "events": [ - { - "uuid": "34f64bf2-f022-4603-ac43-62fd24672167", - "start": { - "$date": "2021-08-06T02:47:58.000Z" - }, - "end": { - "$date": "2021-08-06T03:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c82b4fb-9088-4907-90f4-028a25bcc471", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-06T02:59:45.000Z" - }, - "end": { - "$date": "2021-08-06T04:14:47.000Z" - }, - "events": [ - { - "uuid": "a015498b-afcc-47df-a5fb-fd8766848c96", - "start": { - "$date": "2021-08-06T02:59:45.000Z" - }, - "end": { - "$date": "2021-08-06T04:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af3ee5fb-ab36-4c98-9b61-c2a722eee2f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T03:14:34.000Z" - }, - "end": { - "$date": "2021-08-06T03:43:13.000Z" - }, - "events": [ - { - "uuid": "616a42d7-33fb-45f1-8dc4-0417861b020f", - "start": { - "$date": "2021-08-06T03:14:34.000Z" - }, - "end": { - "$date": "2021-08-06T03:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94fc7380-91a5-41b9-a5f1-2fec34ab7ff6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-06T03:15:12.000Z" - }, - "end": { - "$date": "2021-08-06T03:43:02.000Z" - }, - "events": [ - { - "uuid": "96834505-bdc2-4a5b-977b-8abb5aab36b8", - "start": { - "$date": "2021-08-06T03:15:12.000Z" - }, - "end": { - "$date": "2021-08-06T03:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cf9b9ab9-af2c-4b14-82c0-3652423c6017", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-06T03:24:18.000Z" - }, - "end": { - "$date": "2021-08-06T04:13:54.000Z" - }, - "events": [ - { - "uuid": "4356e5e9-64cb-481b-ac1d-5a530b0d58d6", - "start": { - "$date": "2021-08-06T03:24:18.000Z" - }, - "end": { - "$date": "2021-08-06T04:13:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6b453783-d3c6-471a-9b37-1a582b1d152c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-06T00:15:38.000Z" - }, - "end": { - "$date": "2021-08-06T07:41:36.000Z" - }, - "events": [ - { - "uuid": "fcbb6808-a279-4fc5-994f-ce68590d3435", - "start": { - "$date": "2021-08-06T00:15:38.000Z" - }, - "end": { - "$date": "2021-08-06T07:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ca05f7f7-e737-4e4d-a79c-1add0a3186d8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-06T03:38:41.000Z" - }, - "end": { - "$date": "2021-08-06T03:46:08.000Z" - }, - "events": [ - { - "uuid": "d2643873-a22c-4b07-830d-ada02ef82632", - "start": { - "$date": "2021-08-06T03:38:41.000Z" - }, - "end": { - "$date": "2021-08-06T03:46:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6783de97-9e6f-42d7-8d91-422892c36d33", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T03:45:46.000Z" - }, - "end": { - "$date": "2021-08-06T04:10:08.000Z" - }, - "events": [ - { - "uuid": "16961522-8e25-4697-9cee-8d826dfc6784", - "start": { - "$date": "2021-08-06T03:45:46.000Z" - }, - "end": { - "$date": "2021-08-06T04:10:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8e36f93-8e0a-4925-951a-45738d66a54b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-06T03:45:37.000Z" - }, - "end": { - "$date": "2021-08-06T04:09:57.000Z" - }, - "events": [ - { - "uuid": "d3b92c68-0be1-4cb1-b32c-feeea82cd0c1", - "start": { - "$date": "2021-08-06T03:45:37.000Z" - }, - "end": { - "$date": "2021-08-06T04:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "1a1072d1-4689-4687-9e73-abf509fbd8ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-06T04:05:22.000Z" - }, - "end": { - "$date": "2021-08-06T05:46:37.000Z" - }, - "events": [ - { - "uuid": "2aaf0373-ba22-4960-8918-15b21853f116", - "start": { - "$date": "2021-08-06T04:05:22.000Z" - }, - "end": { - "$date": "2021-08-06T05:46:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "220d911d-3c16-42c8-b96a-27de3d7cd6c9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T04:13:08.000Z" - }, - "end": { - "$date": "2021-08-06T04:49:30.000Z" - }, - "events": [ - { - "uuid": "8ca69117-5e66-4b5a-9091-b4ab870c9420", - "start": { - "$date": "2021-08-06T04:13:08.000Z" - }, - "end": { - "$date": "2021-08-06T04:49:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e37245b-b64d-46c3-a023-4e7f3384664c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-06T04:13:58.000Z" - }, - "end": { - "$date": "2021-08-06T04:49:19.000Z" - }, - "events": [ - { - "uuid": "eaa62eb8-ffc4-429c-8e80-6d1c72a0fa7c", - "start": { - "$date": "2021-08-06T04:13:58.000Z" - }, - "end": { - "$date": "2021-08-06T04:49:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d9277a8d-3159-4c29-aaeb-a8fd25d7394a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-06T04:14:19.000Z" - }, - "end": { - "$date": "2021-08-06T06:29:15.000Z" - }, - "events": [ - { - "uuid": "abdf4fc1-c6ae-44ad-894f-ec03d91f47ca", - "start": { - "$date": "2021-08-06T04:14:19.000Z" - }, - "end": { - "$date": "2021-08-06T06:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "59b7c65f-8006-4095-8159-2020675bb42e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-06T04:15:41.000Z" - }, - "end": { - "$date": "2021-08-06T05:17:18.000Z" - }, - "events": [ - { - "uuid": "10e80527-b011-4c42-afd1-81e3d76c7913", - "start": { - "$date": "2021-08-06T04:15:41.000Z" - }, - "end": { - "$date": "2021-08-06T05:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fbb0dac7-2d9d-45e3-8b72-d4506a6cb6f0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-06T06:05:34.000Z" - }, - "end": { - "$date": "2021-08-06T07:01:40.000Z" - }, - "events": [ - { - "uuid": "36a430c9-9fd4-41ec-9d3a-74c953b76591", - "start": { - "$date": "2021-08-06T06:05:34.000Z" - }, - "end": { - "$date": "2021-08-06T07:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "83f0eba3-8aa3-4aa9-ac11-a9a551145af9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-06T07:41:47.000Z" - }, - "end": { - "$date": "2021-08-06T08:00:27.000Z" - }, - "events": [ - { - "uuid": "4ce78720-26d0-443e-a484-27878efc2a36", - "start": { - "$date": "2021-08-06T07:41:47.000Z" - }, - "end": { - "$date": "2021-08-06T08:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "dd21f65c-655b-46ac-b7a3-144c0ab1ce8c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-06T13:22:34.000Z" - }, - "end": { - "$date": "2021-08-06T20:20:27.000Z" - }, - "events": [ - { - "uuid": "9f0a8eb1-1b1a-4c59-9924-87c7103ac3aa", - "start": { - "$date": "2021-08-06T13:22:34.000Z" - }, - "end": { - "$date": "2021-08-06T14:38:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "75c48636-6663-4872-9e69-3e5be668a34d", - "start": { - "$date": "2021-08-06T14:38:34.000Z" - }, - "end": { - "$date": "2021-08-06T14:48:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb2cfe40-840b-449e-9e05-713403622390", - "start": { - "$date": "2021-08-06T14:48:34.000Z" - }, - "end": { - "$date": "2021-08-06T17:33:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f38e83df-1a3e-42a2-a5b0-25ce35fd48d3", - "start": { - "$date": "2021-08-06T17:33:34.000Z" - }, - "end": { - "$date": "2021-08-06T18:14:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "727fba98-9f95-4130-b34c-d6d1b80fd2fd", - "start": { - "$date": "2021-08-06T18:14:34.000Z" - }, - "end": { - "$date": "2021-08-06T18:24:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04991596-65de-47a9-9662-9286e755a0c8", - "start": { - "$date": "2021-08-06T18:24:34.000Z" - }, - "end": { - "$date": "2021-08-06T19:03:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9bb75275-e97d-4387-b582-f999431f742a", - "start": { - "$date": "2021-08-06T19:03:34.000Z" - }, - "end": { - "$date": "2021-08-06T19:13:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3c740b56-2e9c-48ec-a52b-16acde7f00ff", - "start": { - "$date": "2021-08-06T19:13:34.000Z" - }, - "end": { - "$date": "2021-08-06T20:20:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7631de4a-06f6-4a92-9ca4-e9eb75e9ede4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-06T14:34:32.000Z" - }, - "end": { - "$date": "2021-08-06T14:36:02.000Z" - }, - "events": [ - { - "uuid": "b4891671-c3b1-48be-ae37-21ba1c7e7779", - "start": { - "$date": "2021-08-06T14:34:32.000Z" - }, - "end": { - "$date": "2021-08-06T14:36:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dd49f885-5041-41fa-a148-0b7096e480a9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-06T15:33:57.000Z" - }, - "end": { - "$date": "2021-08-06T16:34:31.000Z" - }, - "events": [ - { - "uuid": "8d33745e-9fb2-4b75-977d-a1413c0f6046", - "start": { - "$date": "2021-08-06T15:33:57.000Z" - }, - "end": { - "$date": "2021-08-06T16:34:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd3bb81d-f871-47a9-b677-aa79311a594f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T15:47:35.000Z" - }, - "end": { - "$date": "2021-08-06T16:10:34.000Z" - }, - "events": [ - { - "uuid": "be14e578-87fb-4095-bb80-85795860717a", - "start": { - "$date": "2021-08-06T15:47:35.000Z" - }, - "end": { - "$date": "2021-08-06T16:10:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d56c417f-8261-4c24-a900-e458bab6b4d4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-06T19:45:16.000Z" - }, - "end": { - "$date": "2021-08-06T21:33:09.000Z" - }, - "events": [ - { - "uuid": "dac2e646-284a-4e86-8585-e8cb87a5bdfc", - "start": { - "$date": "2021-08-06T19:45:16.000Z" - }, - "end": { - "$date": "2021-08-06T21:33:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "cd2fa6b8-387d-44ae-94da-48a1a9334208", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-06T20:22:27.000Z" - }, - "end": { - "$date": "2021-08-06T21:17:03.000Z" - }, - "events": [ - { - "uuid": "df4ed1fd-3780-4c4c-a093-a56b56247a8a", - "start": { - "$date": "2021-08-06T20:22:27.000Z" - }, - "end": { - "$date": "2021-08-06T21:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e68b5a69-50a1-4df0-90ea-824610d61265", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-06T19:07:23.000Z" - }, - "end": { - "$date": "2021-08-06T21:25:07.000Z" - }, - "events": [ - { - "uuid": "267c33e9-2baf-46ff-9d6b-c30ae6d9aef2", - "start": { - "$date": "2021-08-06T19:07:23.000Z" - }, - "end": { - "$date": "2021-08-06T21:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6388a8d4-c183-411a-95d6-e2c1990e5ee2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-06T20:47:17.000Z" - }, - "end": { - "$date": "2021-08-06T20:48:23.000Z" - }, - "events": [ - { - "uuid": "d4f8ac25-a5cb-4097-8ca7-970724a55bfb", - "start": { - "$date": "2021-08-06T20:47:17.000Z" - }, - "end": { - "$date": "2021-08-06T20:48:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ee3ac37b-adab-4f47-bbb1-1014f6720a28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-06T21:07:45.000Z" - }, - "end": { - "$date": "2021-08-06T21:07:47.000Z" - }, - "events": [ - { - "uuid": "ef8e92a5-29b6-4867-913e-5309221b8031", - "start": { - "$date": "2021-08-06T21:07:45.000Z" - }, - "end": { - "$date": "2021-08-06T21:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c92f4d7f-2bbf-458e-8c6f-298399c0caba", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-06T21:25:14.000Z" - }, - "end": { - "$date": "2021-08-07T02:19:23.000Z" - }, - "events": [ - { - "uuid": "496ba00a-5162-49ca-bca3-b2027ab1186c", - "start": { - "$date": "2021-08-06T21:25:14.000Z" - }, - "end": { - "$date": "2021-08-07T00:48:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0238bcc-9292-4ce9-a891-4a7beacb1fa4", - "start": { - "$date": "2021-08-07T00:48:14.000Z" - }, - "end": { - "$date": "2021-08-07T00:53:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "07fbc245-5250-4ac3-81c3-bc15096963a8", - "start": { - "$date": "2021-08-07T00:53:14.000Z" - }, - "end": { - "$date": "2021-08-07T01:03:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ca82944-74de-4b35-96b3-001b757773f7", - "start": { - "$date": "2021-08-07T01:03:14.000Z" - }, - "end": { - "$date": "2021-08-07T01:10:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7d92dca-7fc5-4fe9-95bd-3fd2f143232f", - "start": { - "$date": "2021-08-07T01:10:14.000Z" - }, - "end": { - "$date": "2021-08-07T02:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e7c589e2-dcdc-4f13-b9d1-897e5db4c7ab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-06T23:14:57.000Z" - }, - "end": { - "$date": "2021-08-07T00:07:35.000Z" - }, - "events": [ - { - "uuid": "0ddf07d7-b25a-4853-a763-82249160e666", - "start": { - "$date": "2021-08-06T23:14:57.000Z" - }, - "end": { - "$date": "2021-08-07T00:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "909bccb8-63e1-4b1f-9e78-2d4de9c8b524", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-07T00:59:25.000Z" - }, - "end": { - "$date": "2021-08-07T02:53:35.000Z" - }, - "events": [ - { - "uuid": "12979e66-f5d4-48d5-9250-3ede492bd99f", - "start": { - "$date": "2021-08-07T00:59:25.000Z" - }, - "end": { - "$date": "2021-08-07T02:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3e7e5269-d4db-419a-95a0-cbd29239a23b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-07T02:19:48.000Z" - }, - "end": { - "$date": "2021-08-07T07:29:06.000Z" - }, - "events": [ - { - "uuid": "8c87391a-fba6-4f08-8cda-78ffb1b9b059", - "start": { - "$date": "2021-08-07T02:19:48.000Z" - }, - "end": { - "$date": "2021-08-07T07:29:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ccb59192-62f1-47c0-a22e-3d7b88343ae7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-07T02:58:57.000Z" - }, - "end": { - "$date": "2021-08-07T04:32:59.000Z" - }, - "events": [ - { - "uuid": "2c5f40c9-ffa2-4a99-8c28-ead46d033e35", - "start": { - "$date": "2021-08-07T02:58:57.000Z" - }, - "end": { - "$date": "2021-08-07T04:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a709e296-5293-4472-a581-0b0685e4edc5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-07T03:00:15.000Z" - }, - "end": { - "$date": "2021-08-07T05:00:56.000Z" - }, - "events": [ - { - "uuid": "e1444468-04ee-47f9-904e-391eb9a69368", - "start": { - "$date": "2021-08-07T03:00:15.000Z" - }, - "end": { - "$date": "2021-08-07T05:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ba5ef0c8-7a79-45ab-a515-8fe0774a8f64", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-07T03:27:07.000Z" - }, - "end": { - "$date": "2021-08-07T05:39:33.000Z" - }, - "events": [ - { - "uuid": "6eb71d20-292e-4fc2-b0dc-3918f40861a1", - "start": { - "$date": "2021-08-07T03:27:07.000Z" - }, - "end": { - "$date": "2021-08-07T05:39:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d828009b-86ad-4336-9cf3-99aee1384673", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-07T03:38:05.000Z" - }, - "end": { - "$date": "2021-08-07T03:55:27.000Z" - }, - "events": [ - { - "uuid": "a6235339-4118-4248-82aa-7da6897b3a13", - "start": { - "$date": "2021-08-07T03:38:05.000Z" - }, - "end": { - "$date": "2021-08-07T03:55:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a6d21594-4963-4af1-989e-3568eea143e7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-07T04:09:57.000Z" - }, - "end": { - "$date": "2021-08-07T05:39:34.000Z" - }, - "events": [ - { - "uuid": "6efa7ecf-d347-42ec-ae64-7d3a2320505b", - "start": { - "$date": "2021-08-07T04:09:57.000Z" - }, - "end": { - "$date": "2021-08-07T05:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "461deae6-4a28-4608-bdf7-087d054a2b51", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-07T05:14:03.000Z" - }, - "end": { - "$date": "2021-08-07T06:31:13.000Z" - }, - "events": [ - { - "uuid": "cfed2360-21e5-45b6-855e-7b158f7abed7", - "start": { - "$date": "2021-08-07T05:14:03.000Z" - }, - "end": { - "$date": "2021-08-07T06:00:03.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "11117bfe-8345-4d45-ba21-fa5c24248bfb", - "start": { - "$date": "2021-08-07T06:00:03.000Z" - }, - "end": { - "$date": "2021-08-07T06:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "76d74a97-5da2-41a3-b779-0d863fad8fc3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-07T05:56:30.000Z" - }, - "end": { - "$date": "2021-08-07T07:21:36.000Z" - }, - "events": [ - { - "uuid": "5dde6df8-0c69-4ca4-8bbe-e6dfe8e62361", - "start": { - "$date": "2021-08-07T05:56:30.000Z" - }, - "end": { - "$date": "2021-08-07T07:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "df71a241-00b6-4f07-b03f-4fa57bdbdbdd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-07T06:34:13.000Z" - }, - "end": { - "$date": "2021-08-07T06:55:41.000Z" - }, - "events": [ - { - "uuid": "21d615cf-56f4-443c-b51b-b76344dc0ef8", - "start": { - "$date": "2021-08-07T06:34:13.000Z" - }, - "end": { - "$date": "2021-08-07T06:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "04b1cccf-8844-4729-9fef-79e937266ae8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-07T07:06:54.000Z" - }, - "end": { - "$date": "2021-08-07T07:56:11.000Z" - }, - "events": [ - { - "uuid": "8dbeb4fe-645d-458f-8025-9631e0130aec", - "start": { - "$date": "2021-08-07T07:06:54.000Z" - }, - "end": { - "$date": "2021-08-07T07:56:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "40877e74-89b0-41e7-bd3f-494f6737afb9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-07T13:23:34.000Z" - }, - "end": { - "$date": "2021-08-07T17:34:39.000Z" - }, - "events": [ - { - "uuid": "fadb280e-3acd-4f6d-b0fb-6d12ad0de01a", - "start": { - "$date": "2021-08-07T13:23:34.000Z" - }, - "end": { - "$date": "2021-08-07T17:34:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d05ab0d7-7834-40c0-acf5-49ce4781a12b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-07T14:19:40.000Z" - }, - "end": { - "$date": "2021-08-07T14:48:06.000Z" - }, - "events": [ - { - "uuid": "130e0eae-b539-40e7-a797-e1148e132851", - "start": { - "$date": "2021-08-07T14:19:40.000Z" - }, - "end": { - "$date": "2021-08-07T14:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fb3f65f1-bd34-4361-91c3-9be20a68c76e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-07T15:20:39.000Z" - }, - "end": { - "$date": "2021-08-07T16:04:27.000Z" - }, - "events": [ - { - "uuid": "1385ed1e-93df-4dff-8755-f6ff87ca4ee4", - "start": { - "$date": "2021-08-07T15:20:39.000Z" - }, - "end": { - "$date": "2021-08-07T16:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c441005f-6965-4a26-86b5-27e5d9086af6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-07T17:36:12.000Z" - }, - "end": { - "$date": "2021-08-07T18:12:38.000Z" - }, - "events": [ - { - "uuid": "b3e8d920-9b95-42f0-876a-85300de1aec1", - "start": { - "$date": "2021-08-07T17:36:12.000Z" - }, - "end": { - "$date": "2021-08-07T18:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2da149c5-0b31-4748-a063-531850b0de9e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-07T17:43:42.000Z" - }, - "end": { - "$date": "2021-08-07T19:24:12.000Z" - }, - "events": [ - { - "uuid": "77f8589c-8936-444e-a6fd-0dcbea3d4b58", - "start": { - "$date": "2021-08-07T17:43:42.000Z" - }, - "end": { - "$date": "2021-08-07T19:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "428b017f-7e6a-4a07-9b43-bab5a1e233f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-07T18:12:58.000Z" - }, - "end": { - "$date": "2021-08-07T19:22:35.000Z" - }, - "events": [ - { - "uuid": "a8d103dc-4168-4dad-a91f-d95cb92f98e4", - "start": { - "$date": "2021-08-07T18:12:58.000Z" - }, - "end": { - "$date": "2021-08-07T19:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3e03b98d-99ec-4db5-b358-3b962f9e94e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-07T18:36:14.000Z" - }, - "end": { - "$date": "2021-08-07T19:07:35.000Z" - }, - "events": [ - { - "uuid": "68b9bf0d-1092-4572-8a31-be7e3112976e", - "start": { - "$date": "2021-08-07T18:36:14.000Z" - }, - "end": { - "$date": "2021-08-07T19:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "026784cd-dd20-4db4-96e4-6ec2b225cee3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-07T18:37:37.000Z" - }, - "end": { - "$date": "2021-08-07T22:28:28.000Z" - }, - "events": [ - { - "uuid": "c434b494-2b28-4afd-b581-ebc3e1118176", - "start": { - "$date": "2021-08-07T18:37:37.000Z" - }, - "end": { - "$date": "2021-08-07T18:51:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebaa1790-091d-48b3-b830-342723af3d5e", - "start": { - "$date": "2021-08-07T18:51:37.000Z" - }, - "end": { - "$date": "2021-08-07T19:24:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47d8f751-b219-4f7a-86c0-3313511a0b3b", - "start": { - "$date": "2021-08-07T19:24:37.000Z" - }, - "end": { - "$date": "2021-08-07T21:08:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a915ae6-712f-4d7d-a5f9-0ec5e94dbc06", - "start": { - "$date": "2021-08-07T21:08:37.000Z" - }, - "end": { - "$date": "2021-08-07T21:13:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "468a6ebd-77a8-47b3-9294-ee5004b2fbc4", - "start": { - "$date": "2021-08-07T21:13:37.000Z" - }, - "end": { - "$date": "2021-08-07T21:23:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dd13ea98-1b52-412a-b4c6-5dd68b73a088", - "start": { - "$date": "2021-08-07T21:23:37.000Z" - }, - "end": { - "$date": "2021-08-07T21:34:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1275af45-e8fa-49c4-813b-a4597b34c7d5", - "start": { - "$date": "2021-08-07T21:34:37.000Z" - }, - "end": { - "$date": "2021-08-07T22:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dbb13e77-b3bf-43b5-9ad1-76087d5b0c21", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-07T20:02:06.000Z" - }, - "end": { - "$date": "2021-08-07T20:12:03.000Z" - }, - "events": [ - { - "uuid": "7ec1531d-3dbb-4585-b588-88736a1ee475", - "start": { - "$date": "2021-08-07T20:02:06.000Z" - }, - "end": { - "$date": "2021-08-07T20:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "17bfcb8d-e8e4-44fa-9443-661366a918ec", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-07T21:34:11.000Z" - }, - "end": { - "$date": "2021-08-07T23:29:01.000Z" - }, - "events": [ - { - "uuid": "b6b095ec-ed4e-4b7d-94f9-f96eaf71a28f", - "start": { - "$date": "2021-08-07T21:34:11.000Z" - }, - "end": { - "$date": "2021-08-07T22:53:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25feefb8-a4ce-42a7-8194-87d26947991c", - "start": { - "$date": "2021-08-07T22:53:11.000Z" - }, - "end": { - "$date": "2021-08-07T22:58:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c621af4-3e2f-4cef-ba6d-91726ddd518e", - "start": { - "$date": "2021-08-07T22:58:11.000Z" - }, - "end": { - "$date": "2021-08-07T23:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "624d80b1-f40a-46b0-9616-2b7a1cbe3829", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-07T22:29:13.000Z" - }, - "end": { - "$date": "2021-08-08T04:45:14.000Z" - }, - "events": [ - { - "uuid": "66e2a424-0172-43d9-a0cc-1f056ea4d4e3", - "start": { - "$date": "2021-08-07T22:29:13.000Z" - }, - "end": { - "$date": "2021-08-08T04:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a9395903-3f43-414c-b8a9-ee0edc97ab63", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-07T23:33:27.000Z" - }, - "end": { - "$date": "2021-08-08T00:10:19.000Z" - }, - "events": [ - { - "uuid": "8899a616-9cbf-4d34-83d2-a7c53e06e15c", - "start": { - "$date": "2021-08-07T23:33:27.000Z" - }, - "end": { - "$date": "2021-08-08T00:10:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8bd4c247-6f4e-4440-ae60-60fdd991f697", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-07T23:58:27.000Z" - }, - "end": { - "$date": "2021-08-08T00:46:00.000Z" - }, - "events": [ - { - "uuid": "e9f99987-b153-4faf-96c1-f70d21cfe47d", - "start": { - "$date": "2021-08-07T23:58:27.000Z" - }, - "end": { - "$date": "2021-08-08T00:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7ceb0c2a-838a-4b82-a577-1f04ca6ab179", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-08T00:05:38.000Z" - }, - "end": { - "$date": "2021-08-08T00:39:05.000Z" - }, - "events": [ - { - "uuid": "82752117-0bd2-49af-a60e-d841c7bd3c21", - "start": { - "$date": "2021-08-08T00:05:38.000Z" - }, - "end": { - "$date": "2021-08-08T00:39:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "10eaa001-aa9a-4469-bf94-4ea81dc4fe1d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-08T00:43:34.000Z" - }, - "end": { - "$date": "2021-08-08T01:03:35.000Z" - }, - "events": [ - { - "uuid": "de597f53-8f00-4be2-8b84-66b5652aa114", - "start": { - "$date": "2021-08-08T00:43:34.000Z" - }, - "end": { - "$date": "2021-08-08T01:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "baf85781-851e-4b32-a958-0a760d5a1b28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T00:46:04.000Z" - }, - "end": { - "$date": "2021-08-08T01:03:36.000Z" - }, - "events": [ - { - "uuid": "659e3082-a738-4be5-aaa2-cebccf600395", - "start": { - "$date": "2021-08-08T00:46:04.000Z" - }, - "end": { - "$date": "2021-08-08T01:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "31f6461f-d6f4-4875-9d12-66ed2a92fe52", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T01:05:44.000Z" - }, - "end": { - "$date": "2021-08-08T01:33:22.000Z" - }, - "events": [ - { - "uuid": "19ca509d-bd0c-45ae-bf99-daa18689952c", - "start": { - "$date": "2021-08-08T01:05:44.000Z" - }, - "end": { - "$date": "2021-08-08T01:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1db17ea9-4b84-494c-b94e-9709dc99ede3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-08T01:11:32.000Z" - }, - "end": { - "$date": "2021-08-08T01:32:33.000Z" - }, - "events": [ - { - "uuid": "80ef002d-bba6-41ee-953e-d1d9430d086b", - "start": { - "$date": "2021-08-08T01:11:32.000Z" - }, - "end": { - "$date": "2021-08-08T01:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7e218f1b-6378-424b-9a2d-4b295376d184", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-08T01:30:04.000Z" - }, - "end": { - "$date": "2021-08-08T01:34:15.000Z" - }, - "events": [ - { - "uuid": "c03d26eb-62e1-4715-a68f-ac38c6afbf29", - "start": { - "$date": "2021-08-08T01:30:04.000Z" - }, - "end": { - "$date": "2021-08-08T01:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2cc2761-04d0-4e61-abc4-0d7f7b184e72", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T01:34:11.000Z" - }, - "end": { - "$date": "2021-08-08T01:41:43.000Z" - }, - "events": [ - { - "uuid": "eae718d4-95ea-43a0-b706-632be0bff85b", - "start": { - "$date": "2021-08-08T01:34:11.000Z" - }, - "end": { - "$date": "2021-08-08T01:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bab3d9eb-bbc6-4665-bad1-f5742d5744fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T01:44:47.000Z" - }, - "end": { - "$date": "2021-08-08T04:07:32.000Z" - }, - "events": [ - { - "uuid": "d70a928e-1f6a-4acd-ad4a-3f85ecbf7887", - "start": { - "$date": "2021-08-08T01:44:47.000Z" - }, - "end": { - "$date": "2021-08-08T04:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3de46bcf-a705-45f6-9d40-d7f12ddfa156", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-08T01:56:06.000Z" - }, - "end": { - "$date": "2021-08-08T02:33:16.000Z" - }, - "events": [ - { - "uuid": "d408f943-1a12-432b-a732-0c681410a3d1", - "start": { - "$date": "2021-08-08T01:56:06.000Z" - }, - "end": { - "$date": "2021-08-08T02:33:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a110bf8-f38b-48ef-9e72-145573dfaffb", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-08T03:15:25.000Z" - }, - "end": { - "$date": "2021-08-08T06:38:18.000Z" - }, - "events": [ - { - "uuid": "db8da095-935d-4100-8d60-53842685ff88", - "start": { - "$date": "2021-08-08T03:15:25.000Z" - }, - "end": { - "$date": "2021-08-08T06:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c1f1d47-16cc-4222-9910-05096d638470", - "uuid": "6e7b3168-f1e9-4f98-bd6d-f79b1e292bb6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-08T03:29:46.000Z" - }, - "end": { - "$date": "2021-08-08T03:37:06.000Z" - }, - "events": [ - { - "uuid": "fd590df6-3905-4106-bca5-39273f71d874", - "start": { - "$date": "2021-08-08T03:29:46.000Z" - }, - "end": { - "$date": "2021-08-08T03:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eadca4b1-244b-4240-96ff-0aa89e339a2e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T04:07:56.000Z" - }, - "end": { - "$date": "2021-08-08T05:19:04.000Z" - }, - "events": [ - { - "uuid": "6138f4a3-e90e-407e-84d9-24c21c005e76", - "start": { - "$date": "2021-08-08T04:07:56.000Z" - }, - "end": { - "$date": "2021-08-08T05:19:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e5d2baa7-f9c5-4000-b519-6d53a0ea73c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-08T04:50:05.000Z" - }, - "end": { - "$date": "2021-08-08T06:02:46.000Z" - }, - "events": [ - { - "uuid": "b47e848b-e5c3-4560-a204-fe9fbb879b54", - "start": { - "$date": "2021-08-08T04:50:05.000Z" - }, - "end": { - "$date": "2021-08-08T05:05:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "52288453-cfbc-4abd-84bd-41881e8806c8", - "start": { - "$date": "2021-08-08T05:05:05.000Z" - }, - "end": { - "$date": "2021-08-08T05:10:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d323ff2-7204-40a3-9747-26a53d267883", - "start": { - "$date": "2021-08-08T05:10:05.000Z" - }, - "end": { - "$date": "2021-08-08T05:20:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08ccad79-a44e-4d38-b3f8-f570a83233d6", - "start": { - "$date": "2021-08-08T05:20:05.000Z" - }, - "end": { - "$date": "2021-08-08T05:23:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7c1f21cc-14ac-49fa-8090-22b9816fe2c2", - "start": { - "$date": "2021-08-08T05:23:05.000Z" - }, - "end": { - "$date": "2021-08-08T05:25:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81b99df7-378a-4abd-9cd7-36f0d36b8222", - "start": { - "$date": "2021-08-08T05:25:05.000Z" - }, - "end": { - "$date": "2021-08-08T05:36:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48a31e36-5bd6-449b-9233-420ad00801fa", - "start": { - "$date": "2021-08-08T05:36:05.000Z" - }, - "end": { - "$date": "2021-08-08T06:02:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "36445d1c-38f4-455e-9657-eeb2b0384e62", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-08T04:53:37.000Z" - }, - "end": { - "$date": "2021-08-08T05:22:01.000Z" - }, - "events": [ - { - "uuid": "5298a5f0-ea61-4d2a-9ec5-62ba9a7a44a4", - "start": { - "$date": "2021-08-08T04:53:37.000Z" - }, - "end": { - "$date": "2021-08-08T05:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e798202-efab-4be9-aef8-265c384139c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-08T05:09:08.000Z" - }, - "end": { - "$date": "2021-08-08T06:38:19.000Z" - }, - "events": [ - { - "uuid": "ae8bbd54-6786-40c9-a1c0-1283989e370e", - "start": { - "$date": "2021-08-08T05:09:08.000Z" - }, - "end": { - "$date": "2021-08-08T06:38:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8a7bc4fd-9ecb-4baf-b22e-e8530c5ee40e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T05:20:03.000Z" - }, - "end": { - "$date": "2021-08-08T08:27:55.000Z" - }, - "events": [ - { - "uuid": "28328b38-faf5-4393-b049-bf8b8d0d9ac9", - "start": { - "$date": "2021-08-08T05:20:03.000Z" - }, - "end": { - "$date": "2021-08-08T08:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "65959aa3-bea4-457a-979f-f162135106aa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-08T05:39:49.000Z" - }, - "end": { - "$date": "2021-08-08T07:06:32.000Z" - }, - "events": [ - { - "uuid": "16229c1d-f245-4916-9e03-fb1894e67487", - "start": { - "$date": "2021-08-08T05:39:49.000Z" - }, - "end": { - "$date": "2021-08-08T07:06:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8626fe98-8835-4028-a5dd-5aecdbb5557a", - "uuid": "298d50fc-303f-4a94-84a6-31ab650e2e6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-08T06:03:22.000Z" - }, - "end": { - "$date": "2021-08-08T06:26:42.000Z" - }, - "events": [ - { - "uuid": "31926a1c-78bd-43db-9381-0b72b5d4cac8", - "start": { - "$date": "2021-08-08T06:03:22.000Z" - }, - "end": { - "$date": "2021-08-08T06:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8e63e39-d72c-434d-83c9-4f1b7f7468f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-08T07:09:51.000Z" - }, - "end": { - "$date": "2021-08-08T07:30:16.000Z" - }, - "events": [ - { - "uuid": "0f8b2243-582b-44c4-b6f4-24cffa07c7d1", - "start": { - "$date": "2021-08-08T07:09:51.000Z" - }, - "end": { - "$date": "2021-08-08T07:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e29529d-b3c6-49ef-92d1-9733a9d0ab76", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-08T07:41:37.000Z" - }, - "end": { - "$date": "2021-08-08T08:07:53.000Z" - }, - "events": [ - { - "uuid": "0ce02033-d49e-4e8a-90cd-70ad3848ba75", - "start": { - "$date": "2021-08-08T07:41:37.000Z" - }, - "end": { - "$date": "2021-08-08T08:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f333d35b-67d7-4297-9d48-6a221ad4d874", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-08T08:08:14.000Z" - }, - "end": { - "$date": "2021-08-08T09:17:32.000Z" - }, - "events": [ - { - "uuid": "9cf70b84-7819-4b76-afdc-f5aa2fb9b87f", - "start": { - "$date": "2021-08-08T08:08:14.000Z" - }, - "end": { - "$date": "2021-08-08T09:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7bd0c518-aefa-4f0e-8216-96c3e175bea6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T13:51:58.000Z" - }, - "end": { - "$date": "2021-08-08T14:54:22.000Z" - }, - "events": [ - { - "uuid": "b9862ec4-9f97-4a3a-a113-eb576e303395", - "start": { - "$date": "2021-08-08T13:51:58.000Z" - }, - "end": { - "$date": "2021-08-08T14:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f96d0b7e-ec90-4e8f-a406-2f51837afd84", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T14:08:53.000Z" - }, - "end": { - "$date": "2021-08-08T15:00:20.000Z" - }, - "events": [ - { - "uuid": "64cc3db8-3ba9-487d-b563-89e9100a33e9", - "start": { - "$date": "2021-08-08T14:08:53.000Z" - }, - "end": { - "$date": "2021-08-08T15:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "30fffa70-ef29-4370-910d-dd272387e50f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-08T14:53:51.000Z" - }, - "end": { - "$date": "2021-08-08T18:11:35.000Z" - }, - "events": [ - { - "uuid": "0b69d2fd-467b-4aa8-b9d8-de3059c5b41f", - "start": { - "$date": "2021-08-08T14:53:51.000Z" - }, - "end": { - "$date": "2021-08-08T18:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "30f3684d-4ccc-4ef7-990f-02e9aa7d308a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T14:54:36.000Z" - }, - "end": { - "$date": "2021-08-08T18:11:21.000Z" - }, - "events": [ - { - "uuid": "8e98db54-e560-45dc-a205-b440d25f8898", - "start": { - "$date": "2021-08-08T14:54:36.000Z" - }, - "end": { - "$date": "2021-08-08T18:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "74039963-ee82-4d4a-8f6b-89745d17bb0a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T16:21:23.000Z" - }, - "end": { - "$date": "2021-08-08T17:13:13.000Z" - }, - "events": [ - { - "uuid": "156f1899-49bc-46e0-807d-93107622f6e4", - "start": { - "$date": "2021-08-08T16:21:23.000Z" - }, - "end": { - "$date": "2021-08-08T17:13:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d58e1a4a-d4f3-4bab-ad1c-c62b14f178bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-08T16:56:48.000Z" - }, - "end": { - "$date": "2021-08-08T17:34:37.000Z" - }, - "events": [ - { - "uuid": "3837b2b4-60d0-4493-a183-fa6f2f28d1aa", - "start": { - "$date": "2021-08-08T16:56:48.000Z" - }, - "end": { - "$date": "2021-08-08T17:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e1b0275b-7e03-4d19-b5e1-0bb8d17cf176", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T17:18:59.000Z" - }, - "end": { - "$date": "2021-08-08T17:32:46.000Z" - }, - "events": [ - { - "uuid": "eef5845e-cc5c-4d18-9f5f-82eb6b49fe48", - "start": { - "$date": "2021-08-08T17:18:59.000Z" - }, - "end": { - "$date": "2021-08-08T17:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c198fbf3-dfea-4e81-9b5b-d03a0cbe5a44", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T17:37:32.000Z" - }, - "end": { - "$date": "2021-08-08T17:51:24.000Z" - }, - "events": [ - { - "uuid": "1ae2fb8c-d67a-4bc1-9d98-27d83f6dd2c9", - "start": { - "$date": "2021-08-08T17:37:32.000Z" - }, - "end": { - "$date": "2021-08-08T17:51:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "29b94c20-2150-4a03-a4dd-2b4d0e2ce500", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-08T17:40:05.000Z" - }, - "end": { - "$date": "2021-08-08T18:08:41.000Z" - }, - "events": [ - { - "uuid": "14ee3b39-09a6-4891-9829-5fa59ac967b7", - "start": { - "$date": "2021-08-08T17:40:05.000Z" - }, - "end": { - "$date": "2021-08-08T18:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c9cb6fec-f4ba-4658-b452-9652c4b23af3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-08T17:41:02.000Z" - }, - "end": { - "$date": "2021-08-08T17:42:58.000Z" - }, - "events": [ - { - "uuid": "2efad1db-fbe9-439b-af25-252b6a079d15", - "start": { - "$date": "2021-08-08T17:41:02.000Z" - }, - "end": { - "$date": "2021-08-08T17:42:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "58aad8d3-e0d6-486f-8718-d4d917d4e03b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T17:51:34.000Z" - }, - "end": { - "$date": "2021-08-08T18:53:49.000Z" - }, - "events": [ - { - "uuid": "724cbf5c-0deb-4574-91e1-f888487bdff0", - "start": { - "$date": "2021-08-08T17:51:34.000Z" - }, - "end": { - "$date": "2021-08-08T18:53:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "aff0932b-ae93-48ef-8861-081fd44f38ce", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-08T18:16:06.000Z" - }, - "end": { - "$date": "2021-08-08T18:46:12.000Z" - }, - "events": [ - { - "uuid": "114b2cc9-2912-4bb2-b987-e9c2cef7ec9a", - "start": { - "$date": "2021-08-08T18:16:06.000Z" - }, - "end": { - "$date": "2021-08-08T18:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3037d940-f749-4cb6-87e1-096ace3bbde6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-08T18:16:11.000Z" - }, - "end": { - "$date": "2021-08-08T18:47:45.000Z" - }, - "events": [ - { - "uuid": "9cb7e21c-fa1e-42ce-ad84-23958aa42c1c", - "start": { - "$date": "2021-08-08T18:16:11.000Z" - }, - "end": { - "$date": "2021-08-08T18:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "01e7da34-79b4-4922-bf36-e3a03651696e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-08T18:31:43.000Z" - }, - "end": { - "$date": "2021-08-08T19:24:05.000Z" - }, - "events": [ - { - "uuid": "3a89934a-4abe-42e2-9e77-d82eba474e9f", - "start": { - "$date": "2021-08-08T18:31:43.000Z" - }, - "end": { - "$date": "2021-08-08T19:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "72c50925-40bb-45cf-b169-1659d3327414", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-08T20:30:03.000Z" - }, - "end": { - "$date": "2021-08-08T20:54:16.000Z" - }, - "events": [ - { - "uuid": "cd6449c8-9a37-47c3-82fb-809b38e60e1c", - "start": { - "$date": "2021-08-08T20:30:03.000Z" - }, - "end": { - "$date": "2021-08-08T20:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2c0385c5-ffbc-4766-840b-27c15e1380c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-08T20:34:50.000Z" - }, - "end": { - "$date": "2021-08-08T21:22:20.000Z" - }, - "events": [ - { - "uuid": "48f2fcd4-a56e-466f-b4a5-fdcf59608d4e", - "start": { - "$date": "2021-08-08T20:34:50.000Z" - }, - "end": { - "$date": "2021-08-08T21:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "34e57b61-84af-4020-a3d2-cef52fa92fb5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-08T22:08:53.000Z" - }, - "end": { - "$date": "2021-08-08T22:24:19.000Z" - }, - "events": [ - { - "uuid": "d69c1e2b-89be-4f46-b764-5e67fe088298", - "start": { - "$date": "2021-08-08T22:08:53.000Z" - }, - "end": { - "$date": "2021-08-08T22:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b964658d-5287-44ef-aac8-7af1f84d777b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T22:10:19.000Z" - }, - "end": { - "$date": "2021-08-08T22:33:16.000Z" - }, - "events": [ - { - "uuid": "b84ef897-11f2-4ad8-b3b5-50b42e87c990", - "start": { - "$date": "2021-08-08T22:10:19.000Z" - }, - "end": { - "$date": "2021-08-08T22:33:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8e0875b4-df14-4d1e-abd2-5461d12e5adc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-08T22:30:15.000Z" - }, - "end": { - "$date": "2021-08-09T00:04:41.000Z" - }, - "events": [ - { - "uuid": "eb08652b-f100-435d-8afa-1bd2c5b5e1ba", - "start": { - "$date": "2021-08-08T22:30:15.000Z" - }, - "end": { - "$date": "2021-08-09T00:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "86e41b36-d860-479d-9443-f9299d051eba", - "uuid": "79570441-e510-4c54-959c-ee45795e7705", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-08T22:39:07.000Z" - }, - "end": { - "$date": "2021-08-08T23:19:32.000Z" - }, - "events": [ - { - "uuid": "86d72a47-93d2-4217-bc0c-5f8a7f866e79", - "start": { - "$date": "2021-08-08T22:39:07.000Z" - }, - "end": { - "$date": "2021-08-08T23:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da8e9a52-9b86-4a7c-b50f-a4a6e435fd81", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-08T23:43:03.000Z" - }, - "end": { - "$date": "2021-08-08T23:58:10.000Z" - }, - "events": [ - { - "uuid": "a9f5663b-6204-4887-ab4b-43b03f264e26", - "start": { - "$date": "2021-08-08T23:43:03.000Z" - }, - "end": { - "$date": "2021-08-08T23:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f08dead5-2d90-44f2-b0b2-45b4abe76362", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-09T00:05:04.000Z" - }, - "end": { - "$date": "2021-08-09T00:21:40.000Z" - }, - "events": [ - { - "uuid": "52f2daa8-b8c5-4722-bffb-d39496f1e3f2", - "start": { - "$date": "2021-08-09T00:05:04.000Z" - }, - "end": { - "$date": "2021-08-09T00:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "09f07ade-68e2-47b1-971c-9a6feda69ba8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-09T00:07:24.000Z" - }, - "end": { - "$date": "2021-08-09T00:36:04.000Z" - }, - "events": [ - { - "uuid": "ccdbb468-5182-4ef2-91bf-4a12e0a06534", - "start": { - "$date": "2021-08-09T00:07:24.000Z" - }, - "end": { - "$date": "2021-08-09T00:36:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bff6de2b-8f3e-4741-933e-d6a1a25c578d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-09T00:44:57.000Z" - }, - "end": { - "$date": "2021-08-09T02:37:21.000Z" - }, - "events": [ - { - "uuid": "bbd51646-930d-400b-8a5c-406cb9ccb1d9", - "start": { - "$date": "2021-08-09T00:44:57.000Z" - }, - "end": { - "$date": "2021-08-09T02:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "18d1ec61-2c0b-436a-b8ec-8bd5fbe181ed", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-09T00:52:57.000Z" - }, - "end": { - "$date": "2021-08-09T01:31:44.000Z" - }, - "events": [ - { - "uuid": "f5b7fa0c-53e6-4b13-834d-bc5c4dc16782", - "start": { - "$date": "2021-08-09T00:52:57.000Z" - }, - "end": { - "$date": "2021-08-09T01:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", - "uuid": "fa7e4085-50fa-4111-a75b-0570c8a7d04a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T01:12:56.000Z" - }, - "end": { - "$date": "2021-08-09T02:36:12.000Z" - }, - "events": [ - { - "uuid": "0974e93f-52ef-4489-8f74-3d9e31682766", - "start": { - "$date": "2021-08-09T01:12:56.000Z" - }, - "end": { - "$date": "2021-08-09T02:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d8e46055-38c0-415b-a164-ac916f06a357", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-09T01:53:34.000Z" - }, - "end": { - "$date": "2021-08-09T02:37:45.000Z" - }, - "events": [ - { - "uuid": "5aa63cd7-50f4-44ec-af0d-40be2ac6b815", - "start": { - "$date": "2021-08-09T01:53:34.000Z" - }, - "end": { - "$date": "2021-08-09T02:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "777e8634-3f57-4826-a61e-e61b7a7f3311", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-09T02:07:50.000Z" - }, - "end": { - "$date": "2021-08-09T04:47:16.000Z" - }, - "events": [ - { - "uuid": "d9d6d029-b070-413a-b87d-d8d4ca9153f9", - "start": { - "$date": "2021-08-09T02:07:50.000Z" - }, - "end": { - "$date": "2021-08-09T02:28:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0535a39-2112-425c-bac7-3280f53296c4", - "start": { - "$date": "2021-08-09T02:28:50.000Z" - }, - "end": { - "$date": "2021-08-09T02:30:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44e02346-855f-4376-b233-dfbefd2cc687", - "start": { - "$date": "2021-08-09T02:30:50.000Z" - }, - "end": { - "$date": "2021-08-09T02:42:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83ce8526-fbcf-4f9f-ac06-b3173fb1e9d0", - "start": { - "$date": "2021-08-09T02:42:50.000Z" - }, - "end": { - "$date": "2021-08-09T02:49:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1d4bbf2-1939-4366-8cf6-bb540a78a152", - "start": { - "$date": "2021-08-09T02:49:50.000Z" - }, - "end": { - "$date": "2021-08-09T03:04:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "21d0f3f6-b073-4ed7-ad77-d0b613284522", - "start": { - "$date": "2021-08-09T03:04:50.000Z" - }, - "end": { - "$date": "2021-08-09T03:41:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "75e64c5c-c934-4926-a2a5-a8989bd7d69e", - "start": { - "$date": "2021-08-09T03:41:50.000Z" - }, - "end": { - "$date": "2021-08-09T04:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0f225b0f-df65-40a3-ae9e-528f1c13714d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-09T02:41:32.000Z" - }, - "end": { - "$date": "2021-08-09T04:09:01.000Z" - }, - "events": [ - { - "uuid": "098dcb15-ff93-4151-a261-74dd971c4496", - "start": { - "$date": "2021-08-09T02:41:32.000Z" - }, - "end": { - "$date": "2021-08-09T04:09:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "cd580c87-c8ef-47ca-9a59-63e1f8d8a08c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-09T02:52:36.000Z" - }, - "end": { - "$date": "2021-08-09T04:08:24.000Z" - }, - "events": [ - { - "uuid": "c162c6a4-0801-4e15-b7c8-be527f434326", - "start": { - "$date": "2021-08-09T02:52:36.000Z" - }, - "end": { - "$date": "2021-08-09T04:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", - "uuid": "1f65b016-23c3-4603-b8dd-2290c0afdc78", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T02:53:04.000Z" - }, - "end": { - "$date": "2021-08-09T03:53:42.000Z" - }, - "events": [ - { - "uuid": "4e6230c1-a236-4a52-bee4-b4ba883aa5bf", - "start": { - "$date": "2021-08-09T02:53:04.000Z" - }, - "end": { - "$date": "2021-08-09T03:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb462b0a-6db9-42ed-88cc-fca6d71cb249", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-09T03:35:03.000Z" - }, - "end": { - "$date": "2021-08-09T04:15:32.000Z" - }, - "events": [ - { - "uuid": "986f1f7c-f1b0-48a6-a1b5-288bf78d8cef", - "start": { - "$date": "2021-08-09T03:35:03.000Z" - }, - "end": { - "$date": "2021-08-09T04:15:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea513ad9-b323-4e06-81e8-6d30ff8be4dc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-09T04:21:52.000Z" - }, - "end": { - "$date": "2021-08-09T04:58:23.000Z" - }, - "events": [ - { - "uuid": "f6f683d8-1885-4de5-80fc-578260a8e4e6", - "start": { - "$date": "2021-08-09T04:21:52.000Z" - }, - "end": { - "$date": "2021-08-09T04:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "84e286ff-1b81-4c69-8ed5-1adea94d5cd4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-09T04:28:56.000Z" - }, - "end": { - "$date": "2021-08-09T05:32:34.000Z" - }, - "events": [ - { - "uuid": "7ee53864-2a91-4107-9999-7a1aac88dac7", - "start": { - "$date": "2021-08-09T04:28:56.000Z" - }, - "end": { - "$date": "2021-08-09T05:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "5f919e24-5870-4bc7-8000-8f9b0c1f5382", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-09T04:32:06.000Z" - }, - "end": { - "$date": "2021-08-09T04:33:51.000Z" - }, - "events": [ - { - "uuid": "3e1aa816-775a-4b49-861a-5b0ad72fde23", - "start": { - "$date": "2021-08-09T04:32:06.000Z" - }, - "end": { - "$date": "2021-08-09T04:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "b23ce956-2d8a-4eaf-9d3d-64a7af58888a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-09T04:35:21.000Z" - }, - "end": { - "$date": "2021-08-09T04:36:26.000Z" - }, - "events": [ - { - "uuid": "b75d7429-8fdd-4dd2-b72b-37e69ceed6b8", - "start": { - "$date": "2021-08-09T04:35:21.000Z" - }, - "end": { - "$date": "2021-08-09T04:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "f2bb4211-9ac1-42ff-8c7b-58df7537902f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-09T04:43:42.000Z" - }, - "end": { - "$date": "2021-08-09T05:21:01.000Z" - }, - "events": [ - { - "uuid": "f681669e-bae0-4530-b92d-deb5b0ae842a", - "start": { - "$date": "2021-08-09T04:43:42.000Z" - }, - "end": { - "$date": "2021-08-09T05:21:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cc6f963-95cc-4349-8519-a0987f42806a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-09T05:19:16.000Z" - }, - "end": { - "$date": "2021-08-09T05:52:49.000Z" - }, - "events": [ - { - "uuid": "c0ac7a4a-c883-44e7-b7ec-bba254419c68", - "start": { - "$date": "2021-08-09T05:19:16.000Z" - }, - "end": { - "$date": "2021-08-09T05:52:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "86565fe8-0124-4e30-aed2-d94275b0f7a0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T12:45:35.000Z" - }, - "end": { - "$date": "2021-08-09T13:20:09.000Z" - }, - "events": [ - { - "uuid": "ab665877-4ae2-4587-987c-8edfeb4f5b5f", - "start": { - "$date": "2021-08-09T12:45:35.000Z" - }, - "end": { - "$date": "2021-08-09T13:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", - "uuid": "97f00ee7-4c62-45ba-b0be-1fba2dce6582", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T13:22:10.000Z" - }, - "end": { - "$date": "2021-08-09T14:39:28.000Z" - }, - "events": [ - { - "uuid": "d20ce0bb-c5a1-456d-ba27-e035fac08156", - "start": { - "$date": "2021-08-09T13:22:10.000Z" - }, - "end": { - "$date": "2021-08-09T14:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "05ccf1b1-be5a-4b50-a7b4-bd0ccbb933eb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-09T14:31:12.000Z" - }, - "end": { - "$date": "2021-08-09T16:59:33.000Z" - }, - "events": [ - { - "uuid": "2c685a6f-02b7-4057-a5f7-822667c8b2da", - "start": { - "$date": "2021-08-09T14:31:12.000Z" - }, - "end": { - "$date": "2021-08-09T16:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "3195ead8-52a2-470f-9abb-d44aa505bb77", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-09T15:35:08.000Z" - }, - "end": { - "$date": "2021-08-09T21:32:22.000Z" - }, - "events": [ - { - "uuid": "69627d83-f6bb-45f9-8429-0331b093966e", - "start": { - "$date": "2021-08-09T15:35:08.000Z" - }, - "end": { - "$date": "2021-08-09T21:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", - "uuid": "65af4514-1ddf-41c7-8d4c-d3ee7c9b98e5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T15:52:30.000Z" - }, - "end": { - "$date": "2021-08-09T17:08:03.000Z" - }, - "events": [ - { - "uuid": "d989c073-500b-4f1a-acf2-3a995e56cd08", - "start": { - "$date": "2021-08-09T15:52:30.000Z" - }, - "end": { - "$date": "2021-08-09T17:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "66118f5f-c4bb-403a-a780-a3dd5a9a269d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T18:06:26.000Z" - }, - "end": { - "$date": "2021-08-09T18:22:23.000Z" - }, - "events": [ - { - "uuid": "07245d5f-2c18-4b75-9064-498ae05ac09e", - "start": { - "$date": "2021-08-09T18:06:26.000Z" - }, - "end": { - "$date": "2021-08-09T18:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8b738fa-15ae-4370-8b6b-67c96f29fcc1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-09T18:09:48.000Z" - }, - "end": { - "$date": "2021-08-09T18:12:13.000Z" - }, - "events": [ - { - "uuid": "4371f2a8-da52-4be5-ba42-528c23ca7d0c", - "start": { - "$date": "2021-08-09T18:09:48.000Z" - }, - "end": { - "$date": "2021-08-09T18:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "140f5615-03c7-4ec9-8d87-ae5cec0b5963", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-09T18:12:42.000Z" - }, - "end": { - "$date": "2021-08-09T18:37:19.000Z" - }, - "events": [ - { - "uuid": "a95b88db-3a94-4b72-8357-6061795a7c8b", - "start": { - "$date": "2021-08-09T18:12:42.000Z" - }, - "end": { - "$date": "2021-08-09T18:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "15e441b8-2ab1-44ff-94c3-ca3a8a269b08", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T18:22:49.000Z" - }, - "end": { - "$date": "2021-08-09T19:13:31.000Z" - }, - "events": [ - { - "uuid": "c9f651a0-933e-4cbf-9e5f-a55caa948064", - "start": { - "$date": "2021-08-09T18:22:49.000Z" - }, - "end": { - "$date": "2021-08-09T19:13:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "024d276d-3823-40fc-855f-cdcce50b2605", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T19:13:57.000Z" - }, - "end": { - "$date": "2021-08-09T20:49:13.000Z" - }, - "events": [ - { - "uuid": "ffb68c2a-8d32-4527-a814-42e7bb1ceec4", - "start": { - "$date": "2021-08-09T19:13:57.000Z" - }, - "end": { - "$date": "2021-08-09T20:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3edc0018-12f0-448f-9eb8-c7ce54ef3e82", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-09T20:12:04.000Z" - }, - "end": { - "$date": "2021-08-09T20:54:14.000Z" - }, - "events": [ - { - "uuid": "e3fd58d4-482e-4f88-bff1-3d265b23b20e", - "start": { - "$date": "2021-08-09T20:12:04.000Z" - }, - "end": { - "$date": "2021-08-09T20:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", - "uuid": "b5f2beaa-c1fe-4c64-b931-0d31f148bbcb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-09T20:51:23.000Z" - }, - "end": { - "$date": "2021-08-09T21:29:12.000Z" - }, - "events": [ - { - "uuid": "e63aa5b8-6e3a-4ad4-a4b2-6d268b342048", - "start": { - "$date": "2021-08-09T20:51:23.000Z" - }, - "end": { - "$date": "2021-08-09T21:29:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "0c11a4a1-6d00-45e0-8fa2-14760135e353", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-09T22:37:14.000Z" - }, - "end": { - "$date": "2021-08-10T02:54:15.000Z" - }, - "events": [ - { - "uuid": "568c13d1-2028-4d57-ad65-d76b0b76dfc6", - "start": { - "$date": "2021-08-09T22:37:14.000Z" - }, - "end": { - "$date": "2021-08-10T02:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "db9bcf61-0138-4a8f-b4e6-be27ccbf85ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-10T00:29:11.000Z" - }, - "end": { - "$date": "2021-08-10T02:04:57.000Z" - }, - "events": [ - { - "uuid": "07e17863-5efe-470d-8975-ce36e044807f", - "start": { - "$date": "2021-08-10T00:29:11.000Z" - }, - "end": { - "$date": "2021-08-10T02:04:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b51488a6-4327-48a6-a437-ab640163e13c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-10T00:49:00.000Z" - }, - "end": { - "$date": "2021-08-10T01:55:00.000Z" - }, - "events": [ - { - "uuid": "6d0bd5ac-0dc7-4e25-a430-c689efcb8b66", - "start": { - "$date": "2021-08-10T00:49:00.000Z" - }, - "end": { - "$date": "2021-08-10T01:55:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3e557c34-06c8-47c6-9802-e4bfb31e705b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-10T00:58:09.000Z" - }, - "end": { - "$date": "2021-08-10T03:57:33.000Z" - }, - "events": [ - { - "uuid": "0532656d-ee86-43de-8fd7-bc6625957349", - "start": { - "$date": "2021-08-10T00:58:09.000Z" - }, - "end": { - "$date": "2021-08-10T03:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9101e95e-e92c-4bff-90f1-2db4738c3e73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-10T02:21:19.000Z" - }, - "end": { - "$date": "2021-08-10T02:56:54.000Z" - }, - "events": [ - { - "uuid": "0adc6f38-1ee6-4434-a27d-1b44c5641615", - "start": { - "$date": "2021-08-10T02:21:19.000Z" - }, - "end": { - "$date": "2021-08-10T02:56:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1c7b3069-dcce-4bc7-ab05-abbd51c6f957", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T02:25:16.000Z" - }, - "end": { - "$date": "2021-08-10T03:59:25.000Z" - }, - "events": [ - { - "uuid": "41d31f73-8e87-4b72-90a9-f2f7b4372f64", - "start": { - "$date": "2021-08-10T02:25:16.000Z" - }, - "end": { - "$date": "2021-08-10T02:48:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3ec6de26-92b0-427e-8fa6-2ed69269c86a", - "start": { - "$date": "2021-08-10T02:48:16.000Z" - }, - "end": { - "$date": "2021-08-10T02:53:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "339ad582-76f2-4cad-ae80-af9d6b7b9a98", - "start": { - "$date": "2021-08-10T02:53:16.000Z" - }, - "end": { - "$date": "2021-08-10T03:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab865bc4-0c21-4475-aa86-c40a019b08c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-10T03:26:04.000Z" - }, - "end": { - "$date": "2021-08-10T03:26:01.000Z" - }, - "events": [ - { - "uuid": "53e414f0-b6fb-472a-a341-da314bd7823c", - "start": { - "$date": "2021-08-10T03:26:04.000Z" - }, - "end": { - "$date": "2021-08-10T03:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b90da81-053f-467e-9bd0-cf54a8149b63", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-10T03:31:18.000Z" - }, - "end": { - "$date": "2021-08-10T04:03:56.000Z" - }, - "events": [ - { - "uuid": "367b4738-5e57-4d0b-a858-edf0ac604382", - "start": { - "$date": "2021-08-10T03:31:18.000Z" - }, - "end": { - "$date": "2021-08-10T04:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff6fd201-8126-4428-a542-6b2d07cfa673", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-10T03:57:53.000Z" - }, - "end": { - "$date": "2021-08-10T06:32:06.000Z" - }, - "events": [ - { - "uuid": "d1409949-6a49-432f-b4e4-40cfd78ce541", - "start": { - "$date": "2021-08-10T03:57:53.000Z" - }, - "end": { - "$date": "2021-08-10T06:32:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ddda8513-0a24-44c4-ab46-4e62365e521b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-10T03:59:03.000Z" - }, - "end": { - "$date": "2021-08-10T04:34:49.000Z" - }, - "events": [ - { - "uuid": "28478b48-2a91-433d-a24b-91ac4e95d2a0", - "start": { - "$date": "2021-08-10T03:59:03.000Z" - }, - "end": { - "$date": "2021-08-10T04:34:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd0b6ea3-d960-467c-bd5d-2b791d02023a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-10T04:09:00.000Z" - }, - "end": { - "$date": "2021-08-10T04:49:18.000Z" - }, - "events": [ - { - "uuid": "65fc5f36-ae97-4dec-b2f8-e70231d8bf87", - "start": { - "$date": "2021-08-10T04:09:00.000Z" - }, - "end": { - "$date": "2021-08-10T04:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce2e8354-6281-48a2-b2e8-214d814907b2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-10T04:05:26.000Z" - }, - "end": { - "$date": "2021-08-10T05:36:26.000Z" - }, - "events": [ - { - "uuid": "683b1318-660d-42e7-8c93-bde6957eea6e", - "start": { - "$date": "2021-08-10T04:05:26.000Z" - }, - "end": { - "$date": "2021-08-10T05:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4467945e-ce44-405f-8d23-dbfcfd189368", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T04:09:57.000Z" - }, - "end": { - "$date": "2021-08-10T05:08:19.000Z" - }, - "events": [ - { - "uuid": "f10aedcd-399a-4b3e-8959-8f979f4d3051", - "start": { - "$date": "2021-08-10T04:09:57.000Z" - }, - "end": { - "$date": "2021-08-10T05:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dc8a653a-ba55-4680-99bc-6a22a0463f75", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-10T04:27:23.000Z" - }, - "end": { - "$date": "2021-08-10T06:34:18.000Z" - }, - "events": [ - { - "uuid": "19839832-87e2-4994-bcf1-73e294d737a0", - "start": { - "$date": "2021-08-10T04:27:23.000Z" - }, - "end": { - "$date": "2021-08-10T06:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "1ae47d6d-ddfb-4434-965a-ed32d5aa6612", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-10T04:41:05.000Z" - }, - "end": { - "$date": "2021-08-10T04:49:25.000Z" - }, - "events": [ - { - "uuid": "4d1cc940-5b1f-4631-9162-79af2da97419", - "start": { - "$date": "2021-08-10T04:41:05.000Z" - }, - "end": { - "$date": "2021-08-10T04:49:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9bc6c01-f751-417e-85ce-31a4c8c04a21", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-10T04:52:32.000Z" - }, - "end": { - "$date": "2021-08-10T05:25:37.000Z" - }, - "events": [ - { - "uuid": "bfb52c01-6e07-40bd-bb77-3bf4c834fd97", - "start": { - "$date": "2021-08-10T04:52:32.000Z" - }, - "end": { - "$date": "2021-08-10T05:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "956c780e-b765-4ebd-b3b4-824a393fe3c8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-10T04:52:51.000Z" - }, - "end": { - "$date": "2021-08-10T05:06:56.000Z" - }, - "events": [ - { - "uuid": "e185c773-a862-42a6-b600-e9db01d91c08", - "start": { - "$date": "2021-08-10T04:52:51.000Z" - }, - "end": { - "$date": "2021-08-10T05:06:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "b8a932b4-468b-4e46-a17d-07830b3f44dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-10T05:07:07.000Z" - }, - "end": { - "$date": "2021-08-10T05:39:02.000Z" - }, - "events": [ - { - "uuid": "7a05c325-5d3a-4b80-8b34-1c5b39d16891", - "start": { - "$date": "2021-08-10T05:07:07.000Z" - }, - "end": { - "$date": "2021-08-10T05:39:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "06344b14-c889-46e9-a296-a6cb3bb3a074", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-10T05:17:27.000Z" - }, - "end": { - "$date": "2021-08-10T06:31:00.000Z" - }, - "events": [ - { - "uuid": "3562ff75-78e4-4759-8543-87e6712242b1", - "start": { - "$date": "2021-08-10T05:17:27.000Z" - }, - "end": { - "$date": "2021-08-10T06:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b35ae31-50f2-4aa5-b8ae-31e3c7b384c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-10T05:33:23.000Z" - }, - "end": { - "$date": "2021-08-10T06:10:11.000Z" - }, - "events": [ - { - "uuid": "473d750a-8cfd-4b6f-986a-87dd7389ffdd", - "start": { - "$date": "2021-08-10T05:33:23.000Z" - }, - "end": { - "$date": "2021-08-10T06:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e049da6-1d19-4cad-8266-a09a47ff445f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-10T06:14:44.000Z" - }, - "end": { - "$date": "2021-08-10T06:37:29.000Z" - }, - "events": [ - { - "uuid": "75e1b26c-5e71-4295-8212-c5066ded3425", - "start": { - "$date": "2021-08-10T06:14:44.000Z" - }, - "end": { - "$date": "2021-08-10T06:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "587bf73c-0dbe-4b29-b128-5b8734d5b4f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T14:31:51.000Z" - }, - "end": { - "$date": "2021-08-10T14:33:30.000Z" - }, - "events": [ - { - "uuid": "cdf0be12-9c48-442d-afc9-0b8d9a5d55e0", - "start": { - "$date": "2021-08-10T14:31:51.000Z" - }, - "end": { - "$date": "2021-08-10T14:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "108e749e-b419-4b49-9805-b19f94c3dc69", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T14:33:56.000Z" - }, - "end": { - "$date": "2021-08-10T16:16:17.000Z" - }, - "events": [ - { - "uuid": "adfae5be-92f0-44e6-94dc-d528e6d66b62", - "start": { - "$date": "2021-08-10T14:33:56.000Z" - }, - "end": { - "$date": "2021-08-10T16:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d7eaa6a0-550f-4697-82e7-4eeb4de36850", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T16:21:19.000Z" - }, - "end": { - "$date": "2021-08-10T16:39:10.000Z" - }, - "events": [ - { - "uuid": "99785931-22dd-4a9d-8a75-67f69d76ca2c", - "start": { - "$date": "2021-08-10T16:21:19.000Z" - }, - "end": { - "$date": "2021-08-10T16:39:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "583866f1-aaa3-4691-8aa1-1c061a6b2851", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T17:01:24.000Z" - }, - "end": { - "$date": "2021-08-10T19:46:27.000Z" - }, - "events": [ - { - "uuid": "0363f701-92c9-4125-9500-db7ad3a32472", - "start": { - "$date": "2021-08-10T17:01:24.000Z" - }, - "end": { - "$date": "2021-08-10T17:36:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2dbdaf8-ffd2-4e45-8ccd-b8003c77cb05", - "start": { - "$date": "2021-08-10T17:36:24.000Z" - }, - "end": { - "$date": "2021-08-10T17:46:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c8a3f56-3c08-48e7-9bed-62344872fd6d", - "start": { - "$date": "2021-08-10T17:46:24.000Z" - }, - "end": { - "$date": "2021-08-10T17:56:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6099ac51-9ff7-46a9-b851-f12c3978e9d4", - "start": { - "$date": "2021-08-10T17:56:24.000Z" - }, - "end": { - "$date": "2021-08-10T17:58:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "68c6d456-42bf-43c3-bdb1-68091dcbaabc", - "start": { - "$date": "2021-08-10T17:58:24.000Z" - }, - "end": { - "$date": "2021-08-10T19:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "90110c82-6c92-45d5-a6a9-997f9402a5a8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-10T19:18:52.000Z" - }, - "end": { - "$date": "2021-08-10T20:31:10.000Z" - }, - "events": [ - { - "uuid": "e0188cb5-d86f-4108-bcd0-d3195ee844bf", - "start": { - "$date": "2021-08-10T19:18:52.000Z" - }, - "end": { - "$date": "2021-08-10T20:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "104aaaa1-9147-4374-8d7b-69a50e6802ad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T19:46:48.000Z" - }, - "end": { - "$date": "2021-08-10T21:08:19.000Z" - }, - "events": [ - { - "uuid": "15e5f4e4-0859-404f-b314-4f388332b1ca", - "start": { - "$date": "2021-08-10T19:46:48.000Z" - }, - "end": { - "$date": "2021-08-10T20:48:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec8f7198-4684-49d5-b96e-1cb0571cd972", - "start": { - "$date": "2021-08-10T20:48:48.000Z" - }, - "end": { - "$date": "2021-08-10T21:08:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "20fccc12-15f9-4c29-8817-98406f72dcc2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-10T19:54:05.000Z" - }, - "end": { - "$date": "2021-08-11T00:16:09.000Z" - }, - "events": [ - { - "uuid": "8698c083-d8cb-4b85-b7dd-c25c5cae03dc", - "start": { - "$date": "2021-08-10T19:54:05.000Z" - }, - "end": { - "$date": "2021-08-11T00:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9217c710-be3d-47fe-8881-b10ce744e009", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T21:58:28.000Z" - }, - "end": { - "$date": "2021-08-10T22:19:56.000Z" - }, - "events": [ - { - "uuid": "8446fa3d-9f2c-4ae4-881f-828ea6c8ef61", - "start": { - "$date": "2021-08-10T21:58:28.000Z" - }, - "end": { - "$date": "2021-08-10T22:19:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2878feb2-e5c8-4d2a-b6d2-075b7efa1be3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-10T22:20:30.000Z" - }, - "end": { - "$date": "2021-08-10T22:24:46.000Z" - }, - "events": [ - { - "uuid": "c0ec4d88-4c88-4f78-b9e0-5b762c2b440b", - "start": { - "$date": "2021-08-10T22:20:30.000Z" - }, - "end": { - "$date": "2021-08-10T22:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "faeeed44-7962-441c-b705-3903e1ead4bc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-10T22:20:09.000Z" - }, - "end": { - "$date": "2021-08-10T23:48:58.000Z" - }, - "events": [ - { - "uuid": "6921cd7f-8f6a-4e0f-b11e-aa5bf2db034c", - "start": { - "$date": "2021-08-10T22:20:09.000Z" - }, - "end": { - "$date": "2021-08-10T23:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6918231e-21b2-47d0-a389-a78f9615b9b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-10T22:36:36.000Z" - }, - "end": { - "$date": "2021-08-10T22:59:37.000Z" - }, - "events": [ - { - "uuid": "8480d6f3-8aff-4e5e-a3e7-8ab731b31a9d", - "start": { - "$date": "2021-08-10T22:36:36.000Z" - }, - "end": { - "$date": "2021-08-10T22:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fde29bf7-24a4-47de-a016-75507dd1d28c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-10T23:06:31.000Z" - }, - "end": { - "$date": "2021-08-10T23:44:03.000Z" - }, - "events": [ - { - "uuid": "b20377d1-2dfd-4c13-a199-7f742dfdac01", - "start": { - "$date": "2021-08-10T23:06:31.000Z" - }, - "end": { - "$date": "2021-08-10T23:44:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "2a944548-80f1-4cdf-a053-11d7678bd4ba", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-11T00:34:46.000Z" - }, - "end": { - "$date": "2021-08-11T02:02:36.000Z" - }, - "events": [ - { - "uuid": "831a2fd9-f301-4e80-9ad6-f7a00a6aa303", - "start": { - "$date": "2021-08-11T00:34:46.000Z" - }, - "end": { - "$date": "2021-08-11T02:02:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b5c005df-6f3b-4818-8401-0550e9185538", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-11T01:18:13.000Z" - }, - "end": { - "$date": "2021-08-11T04:01:35.000Z" - }, - "events": [ - { - "uuid": "00ec501c-0ba8-45d5-8281-1b29324c59fb", - "start": { - "$date": "2021-08-11T01:18:13.000Z" - }, - "end": { - "$date": "2021-08-11T04:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "0a857bec-363a-44af-b71c-0cef523980fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-11T01:27:50.000Z" - }, - "end": { - "$date": "2021-08-11T02:39:45.000Z" - }, - "events": [ - { - "uuid": "f9e8e27e-3fd7-4d27-99b2-073dc07df84e", - "start": { - "$date": "2021-08-11T01:27:50.000Z" - }, - "end": { - "$date": "2021-08-11T02:39:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4ae6ebce-4561-4a26-9790-f0ff652703c4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-11T01:37:48.000Z" - }, - "end": { - "$date": "2021-08-11T04:00:13.000Z" - }, - "events": [ - { - "uuid": "cf13a96e-d3f6-4216-ba22-d6289cbb032d", - "start": { - "$date": "2021-08-11T01:37:48.000Z" - }, - "end": { - "$date": "2021-08-11T04:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de43fc78-4fd0-47e9-8682-50cf81fd55a0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T01:55:58.000Z" - }, - "end": { - "$date": "2021-08-11T02:28:49.000Z" - }, - "events": [ - { - "uuid": "2d30d2d3-13a2-46c4-b193-50a078725877", - "start": { - "$date": "2021-08-11T01:55:58.000Z" - }, - "end": { - "$date": "2021-08-11T02:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e62fb831-cbb3-4f6f-abbb-7885a1d4c864", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T02:30:03.000Z" - }, - "end": { - "$date": "2021-08-11T04:02:54.000Z" - }, - "events": [ - { - "uuid": "8e312acc-9494-4b3a-80a9-42ad9226d1e7", - "start": { - "$date": "2021-08-11T02:30:03.000Z" - }, - "end": { - "$date": "2021-08-11T04:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "4c76cea4-4684-42ab-bee2-701be9964942", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-11T02:39:55.000Z" - }, - "end": { - "$date": "2021-08-11T02:47:55.000Z" - }, - "events": [ - { - "uuid": "29687134-45c3-45d5-b183-c338dbb51190", - "start": { - "$date": "2021-08-11T02:39:55.000Z" - }, - "end": { - "$date": "2021-08-11T02:47:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0db7d253-102b-4e1f-9828-b452a4cfe0a7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-11T03:02:12.000Z" - }, - "end": { - "$date": "2021-08-11T03:50:57.000Z" - }, - "events": [ - { - "uuid": "cf563bfe-7099-4b87-ba91-8de3fc3cef87", - "start": { - "$date": "2021-08-11T03:02:12.000Z" - }, - "end": { - "$date": "2021-08-11T03:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f59dc6d1-c00e-4757-8c8b-b776b3333389", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-11T03:13:58.000Z" - }, - "end": { - "$date": "2021-08-11T03:41:27.000Z" - }, - "events": [ - { - "uuid": "42a78fe3-dec4-4052-93a6-5f53c8c2f6fb", - "start": { - "$date": "2021-08-11T03:13:58.000Z" - }, - "end": { - "$date": "2021-08-11T03:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b627bf62-b7ed-47c4-bc0f-f874d8c4be51", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-11T04:27:31.000Z" - }, - "end": { - "$date": "2021-08-11T05:07:56.000Z" - }, - "events": [ - { - "uuid": "fd4bb318-1928-4db6-9eb8-a83747921e0c", - "start": { - "$date": "2021-08-11T04:27:31.000Z" - }, - "end": { - "$date": "2021-08-11T05:07:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d32ef40-c2bb-4d96-b95e-80062afb824a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-11T03:50:56.000Z" - }, - "end": { - "$date": "2021-08-11T04:23:18.000Z" - }, - "events": [ - { - "uuid": "93f6f534-5620-49a4-be60-2f38f3370cb4", - "start": { - "$date": "2021-08-11T03:50:56.000Z" - }, - "end": { - "$date": "2021-08-11T04:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9e30f6cf-841f-446f-8278-be978bed1aa2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-11T03:51:01.000Z" - }, - "end": { - "$date": "2021-08-11T06:23:41.000Z" - }, - "events": [ - { - "uuid": "2200eb7d-66fd-494b-98be-c08b3c9b2449", - "start": { - "$date": "2021-08-11T03:51:01.000Z" - }, - "end": { - "$date": "2021-08-11T05:36:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b027157-f04d-4786-9b17-b65c88bcb386", - "start": { - "$date": "2021-08-11T05:36:01.000Z" - }, - "end": { - "$date": "2021-08-11T05:38:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3cf6e288-4e06-4e1a-a94e-b69ec62c8efa", - "start": { - "$date": "2021-08-11T05:38:01.000Z" - }, - "end": { - "$date": "2021-08-11T06:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2bebcb32-98d9-4b8e-b9a8-ff41c1de48c2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-11T04:01:45.000Z" - }, - "end": { - "$date": "2021-08-11T06:25:44.000Z" - }, - "events": [ - { - "uuid": "8135fd5e-2e92-4366-8a26-c9e6eb93aef4", - "start": { - "$date": "2021-08-11T04:01:45.000Z" - }, - "end": { - "$date": "2021-08-11T06:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f31d170c-c8b3-4bf4-b088-bec5d1da8b43", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-11T04:02:09.000Z" - }, - "end": { - "$date": "2021-08-11T06:26:26.000Z" - }, - "events": [ - { - "uuid": "a4d4e9f4-6d85-4218-b4ef-233803b14e93", - "start": { - "$date": "2021-08-11T04:02:09.000Z" - }, - "end": { - "$date": "2021-08-11T06:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "422542f9-6e37-408f-ac2d-1d9c58bf4df9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-11T04:08:51.000Z" - }, - "end": { - "$date": "2021-08-11T05:50:47.000Z" - }, - "events": [ - { - "uuid": "5f5584c8-5531-4224-9a34-01b5f0882fa6", - "start": { - "$date": "2021-08-11T04:08:51.000Z" - }, - "end": { - "$date": "2021-08-11T05:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "681467b8-2b0a-49ac-8210-80ecf08e0099", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-11T04:13:39.000Z" - }, - "end": { - "$date": "2021-08-11T06:32:54.000Z" - }, - "events": [ - { - "uuid": "1fb106ec-de29-46b4-bf3b-9900b52eb710", - "start": { - "$date": "2021-08-11T04:13:39.000Z" - }, - "end": { - "$date": "2021-08-11T06:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a90b9ac-1142-4f29-8079-237fa7c95c02", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-11T04:28:42.000Z" - }, - "end": { - "$date": "2021-08-11T05:07:54.000Z" - }, - "events": [ - { - "uuid": "a17a8993-b3f6-4e0b-8a27-3f44e67e6f7e", - "start": { - "$date": "2021-08-11T04:28:42.000Z" - }, - "end": { - "$date": "2021-08-11T05:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "29f15094-379a-4191-bae4-3108c0974746", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-11T05:33:03.000Z" - }, - "end": { - "$date": "2021-08-11T06:23:34.000Z" - }, - "events": [ - { - "uuid": "c3d69a48-c823-4d43-bdce-76135dcb3948", - "start": { - "$date": "2021-08-11T05:33:03.000Z" - }, - "end": { - "$date": "2021-08-11T06:23:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71113b64-1162-436a-8489-6a5a1661eb38", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-11T05:48:38.000Z" - }, - "end": { - "$date": "2021-08-11T06:09:15.000Z" - }, - "events": [ - { - "uuid": "535c5f8f-30a9-4577-8884-6f73b02e67a3", - "start": { - "$date": "2021-08-11T05:48:38.000Z" - }, - "end": { - "$date": "2021-08-11T06:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76d159cc-5230-49ea-9a22-cff30f30ecc7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-11T06:27:36.000Z" - }, - "end": { - "$date": "2021-08-11T06:30:40.000Z" - }, - "events": [ - { - "uuid": "51206072-4085-48dc-81f1-b94c196b2ab8", - "start": { - "$date": "2021-08-11T06:27:36.000Z" - }, - "end": { - "$date": "2021-08-11T06:30:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "600bbd57-6227-4fa8-8380-374d2bcf6f19", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-11T06:28:06.000Z" - }, - "end": { - "$date": "2021-08-11T06:37:22.000Z" - }, - "events": [ - { - "uuid": "123db7f0-1615-45c7-9b8f-0e00fcca837d", - "start": { - "$date": "2021-08-11T06:28:06.000Z" - }, - "end": { - "$date": "2021-08-11T06:37:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "565aca2a-16d6-4c5b-a4d1-80d704baaa8b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-11T06:28:32.000Z" - }, - "end": { - "$date": "2021-08-11T06:49:48.000Z" - }, - "events": [ - { - "uuid": "8eeece45-9d0e-49fa-9eea-57a599553ba3", - "start": { - "$date": "2021-08-11T06:28:32.000Z" - }, - "end": { - "$date": "2021-08-11T06:49:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f65f3d58-1537-4f95-9965-3d6fbe006264", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T14:45:02.000Z" - }, - "end": { - "$date": "2021-08-11T14:47:42.000Z" - }, - "events": [ - { - "uuid": "3f4a3ab8-a923-40fd-8a5b-7b6875071870", - "start": { - "$date": "2021-08-11T14:45:02.000Z" - }, - "end": { - "$date": "2021-08-11T14:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "94b519b6-a372-4a33-8644-444a5a6a2778", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T14:48:47.000Z" - }, - "end": { - "$date": "2021-08-11T16:14:13.000Z" - }, - "events": [ - { - "uuid": "8c0f2859-64eb-46e0-9cdb-3bd10e7be54b", - "start": { - "$date": "2021-08-11T14:48:47.000Z" - }, - "end": { - "$date": "2021-08-11T16:14:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "246c01b4-672d-4465-8cfc-795781fb1f24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T16:22:04.000Z" - }, - "end": { - "$date": "2021-08-11T16:54:09.000Z" - }, - "events": [ - { - "uuid": "5241dca2-5c5c-4591-8143-ced57108850d", - "start": { - "$date": "2021-08-11T16:22:04.000Z" - }, - "end": { - "$date": "2021-08-11T16:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "0e48df1e-51bf-45ec-8ffc-499028f1c5f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T16:15:29.000Z" - }, - "end": { - "$date": "2021-08-11T16:19:59.000Z" - }, - "events": [ - { - "uuid": "7d44f4a0-8968-4d5d-809c-892375798f6d", - "start": { - "$date": "2021-08-11T16:15:29.000Z" - }, - "end": { - "$date": "2021-08-11T16:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "12548d33-3f9a-4d4a-b08c-403f0c0557d6", - "uuid": "a70605bc-1989-4fa8-baaa-e60e792e0703", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-11T16:54:29.000Z" - }, - "end": { - "$date": "2021-08-11T17:36:10.000Z" - }, - "events": [ - { - "uuid": "9333b16a-03db-4e89-9bd4-40847dd2a6d9", - "start": { - "$date": "2021-08-11T16:54:29.000Z" - }, - "end": { - "$date": "2021-08-11T17:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a02e7217-e1fb-4d53-a93b-2c93d84045af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T17:06:05.000Z" - }, - "end": { - "$date": "2021-08-11T17:32:00.000Z" - }, - "events": [ - { - "uuid": "0c402614-20a5-49a6-9a3d-d7b7e5cf4349", - "start": { - "$date": "2021-08-11T17:06:05.000Z" - }, - "end": { - "$date": "2021-08-11T17:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "31747c7b-47fa-4643-846a-e195da118c71", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T17:25:37.000Z" - }, - "end": { - "$date": "2021-08-11T18:10:28.000Z" - }, - "events": [ - { - "uuid": "edd2faf3-bc01-42be-9bc0-27fc3066869f", - "start": { - "$date": "2021-08-11T17:25:37.000Z" - }, - "end": { - "$date": "2021-08-11T18:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dc039cb-1349-49a2-b022-ecb1172c368a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T18:31:33.000Z" - }, - "end": { - "$date": "2021-08-11T19:06:33.000Z" - }, - "events": [ - { - "uuid": "d6e8e63f-0f1b-4410-8771-f29b7fe6dcca", - "start": { - "$date": "2021-08-11T18:31:33.000Z" - }, - "end": { - "$date": "2021-08-11T19:06:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c7cf1339-a945-4870-bd79-ff484d514016", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-11T17:38:20.000Z" - }, - "end": { - "$date": "2021-08-11T18:52:20.000Z" - }, - "events": [ - { - "uuid": "dc6b8c43-fa72-454d-9d95-b872e3f09ff5", - "start": { - "$date": "2021-08-11T17:38:20.000Z" - }, - "end": { - "$date": "2021-08-11T18:52:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d0178762-c19e-46aa-b2a0-2ad4854fc2cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T18:33:37.000Z" - }, - "end": { - "$date": "2021-08-11T18:38:42.000Z" - }, - "events": [ - { - "uuid": "8339af93-60be-49db-80ca-c4bf0edb8389", - "start": { - "$date": "2021-08-11T18:33:37.000Z" - }, - "end": { - "$date": "2021-08-11T18:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "e0a6beb4-2c45-4c10-aa2d-8b9db355b8d6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T18:43:03.000Z" - }, - "end": { - "$date": "2021-08-11T21:28:48.000Z" - }, - "events": [ - { - "uuid": "5c340880-3434-47c4-a043-72291430c094", - "start": { - "$date": "2021-08-11T18:43:03.000Z" - }, - "end": { - "$date": "2021-08-11T21:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", - "uuid": "9171390f-90bf-4c75-92ab-f99df2beff50", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-11T19:05:32.000Z" - }, - "end": { - "$date": "2021-08-11T20:14:06.000Z" - }, - "events": [ - { - "uuid": "0a6c48d0-2c72-430b-8d5b-5008e9a0d254", - "start": { - "$date": "2021-08-11T19:05:32.000Z" - }, - "end": { - "$date": "2021-08-11T20:14:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8c6a20b5-bf3a-4744-a918-e9f8cb28558d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-11T20:50:54.000Z" - }, - "end": { - "$date": "2021-08-11T22:00:25.000Z" - }, - "events": [ - { - "uuid": "f8157c24-543f-45e0-b370-67406a3e6cfa", - "start": { - "$date": "2021-08-11T20:50:54.000Z" - }, - "end": { - "$date": "2021-08-11T22:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8b2cd67f-ad1c-4079-b1ba-ad2ceb6e1559", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T21:34:09.000Z" - }, - "end": { - "$date": "2021-08-11T22:26:36.000Z" - }, - "events": [ - { - "uuid": "4322277b-65a7-44a6-9442-928e40bc6c01", - "start": { - "$date": "2021-08-11T21:34:09.000Z" - }, - "end": { - "$date": "2021-08-11T22:26:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "363ff21f-1aef-4167-ba74-4ca57ca66df6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-11T22:12:00.000Z" - }, - "end": { - "$date": "2021-08-12T00:27:32.000Z" - }, - "events": [ - { - "uuid": "84ef2baa-ddf0-416c-834e-fe58b048a688", - "start": { - "$date": "2021-08-11T22:12:00.000Z" - }, - "end": { - "$date": "2021-08-12T00:27:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ff015a48-7155-4a7b-a9f6-896de7579c95", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-11T22:15:24.000Z" - }, - "end": { - "$date": "2021-08-11T23:50:21.000Z" - }, - "events": [ - { - "uuid": "b6a166a4-d079-45e0-80b6-0fe5e391fd13", - "start": { - "$date": "2021-08-11T22:15:24.000Z" - }, - "end": { - "$date": "2021-08-11T23:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "fb8a84cf-8fcd-41bd-8167-31d27904403f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T22:19:10.000Z" - }, - "end": { - "$date": "2021-08-11T22:26:55.000Z" - }, - "events": [ - { - "uuid": "6f449942-cfdd-46a7-94a7-0578370b5ee7", - "start": { - "$date": "2021-08-11T22:19:10.000Z" - }, - "end": { - "$date": "2021-08-11T22:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a43aec56-79f7-43f2-bbde-9e2498517441", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-11T22:34:08.000Z" - }, - "end": { - "$date": "2021-08-11T23:40:34.000Z" - }, - "events": [ - { - "uuid": "6ab2452d-6e72-4fd7-8d50-c701e9972df4", - "start": { - "$date": "2021-08-11T22:34:08.000Z" - }, - "end": { - "$date": "2021-08-11T23:40:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "daae9c31-7474-4d3f-b8bc-8cd5ad586d29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-11T23:24:05.000Z" - }, - "end": { - "$date": "2021-08-11T23:49:25.000Z" - }, - "events": [ - { - "uuid": "6fdc406b-ec56-4cfe-ba5e-3b02f44bd645", - "start": { - "$date": "2021-08-11T23:24:05.000Z" - }, - "end": { - "$date": "2021-08-11T23:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d9423102-9cc9-4d38-aabc-e31c16ad19d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-12T00:21:59.000Z" - }, - "end": { - "$date": "2021-08-12T01:10:17.000Z" - }, - "events": [ - { - "uuid": "b239d9ae-7e50-410d-a5e2-fc15c253c2a4", - "start": { - "$date": "2021-08-12T00:21:59.000Z" - }, - "end": { - "$date": "2021-08-12T01:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "c989b891-e00b-4156-987d-325ef25350c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-12T01:33:18.000Z" - }, - "end": { - "$date": "2021-08-12T01:47:34.000Z" - }, - "events": [ - { - "uuid": "0b48edf0-85b6-40c3-9a6a-b81c5d8ed022", - "start": { - "$date": "2021-08-12T01:33:18.000Z" - }, - "end": { - "$date": "2021-08-12T01:47:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "d3410c94-c99f-485a-8e17-1cff6f92e0d8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-12T01:35:02.000Z" - }, - "end": { - "$date": "2021-08-12T04:41:49.000Z" - }, - "events": [ - { - "uuid": "1b88b9ca-2350-456a-8f5b-77d5a963ce1c", - "start": { - "$date": "2021-08-12T01:35:02.000Z" - }, - "end": { - "$date": "2021-08-12T04:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "e08b3f98-1194-45ad-ac2d-d8215e5a63a0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-12T01:47:45.000Z" - }, - "end": { - "$date": "2021-08-12T02:47:50.000Z" - }, - "events": [ - { - "uuid": "baccf9bd-bc38-424e-a0cb-02879b9d4724", - "start": { - "$date": "2021-08-12T01:47:45.000Z" - }, - "end": { - "$date": "2021-08-12T02:47:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e211f9b7-3db1-44f7-9edb-1259e02bc8eb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-12T02:01:07.000Z" - }, - "end": { - "$date": "2021-08-12T04:15:47.000Z" - }, - "events": [ - { - "uuid": "17684d95-fd98-47c4-ba3b-350ca9e2463a", - "start": { - "$date": "2021-08-12T02:01:07.000Z" - }, - "end": { - "$date": "2021-08-12T04:15:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "38ef79b0-2acc-41d6-9952-461f468243cb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-12T02:01:39.000Z" - }, - "end": { - "$date": "2021-08-12T05:32:14.000Z" - }, - "events": [ - { - "uuid": "24f1ca41-bf60-42b2-9bac-a9d1b709d82d", - "start": { - "$date": "2021-08-12T02:01:39.000Z" - }, - "end": { - "$date": "2021-08-12T05:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd819dbc-617d-4f0a-9b19-1b217a04ea3d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-12T02:38:00.000Z" - }, - "end": { - "$date": "2021-08-12T03:01:20.000Z" - }, - "events": [ - { - "uuid": "e5a35b87-2764-4dc3-88ca-8256217fcd86", - "start": { - "$date": "2021-08-12T02:38:00.000Z" - }, - "end": { - "$date": "2021-08-12T03:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1ae95f67-125c-4656-8775-8c6d3b48f6be", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-12T02:39:41.000Z" - }, - "end": { - "$date": "2021-08-12T02:41:00.000Z" - }, - "events": [ - { - "uuid": "ff0a25fb-9b4e-4318-9523-ab9c0684c6fb", - "start": { - "$date": "2021-08-12T02:39:41.000Z" - }, - "end": { - "$date": "2021-08-12T02:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "d893a7d2-6236-4398-9422-9977e48c2f84", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-12T02:41:42.000Z" - }, - "end": { - "$date": "2021-08-12T03:32:28.000Z" - }, - "events": [ - { - "uuid": "93f6deb9-ed23-45e6-8136-75f2cb85601c", - "start": { - "$date": "2021-08-12T02:41:42.000Z" - }, - "end": { - "$date": "2021-08-12T03:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "2ef1dbff-38e4-4948-8f2e-78d82dfd2583", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T03:34:52.000Z" - }, - "end": { - "$date": "2021-08-12T03:52:48.000Z" - }, - "events": [ - { - "uuid": "ce061c56-9766-428a-8191-27b00eabcae2", - "start": { - "$date": "2021-08-12T03:34:52.000Z" - }, - "end": { - "$date": "2021-08-12T03:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fc6c7ff-a7a8-43f3-9f88-afd116f09a70", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-12T03:43:23.000Z" - }, - "end": { - "$date": "2021-08-12T04:18:14.000Z" - }, - "events": [ - { - "uuid": "4142a2c2-8456-419a-b484-d0bf3b08e7a3", - "start": { - "$date": "2021-08-12T03:43:23.000Z" - }, - "end": { - "$date": "2021-08-12T04:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d8d60da5-c1a6-4af0-928b-eacd9a105c57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T03:52:53.000Z" - }, - "end": { - "$date": "2021-08-12T04:59:25.000Z" - }, - "events": [ - { - "uuid": "44a79971-03e5-4708-9e63-5b951ca5f136", - "start": { - "$date": "2021-08-12T03:52:53.000Z" - }, - "end": { - "$date": "2021-08-12T04:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e27276c7-54de-4f84-8ce6-31ea99ec067c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-12T04:30:10.000Z" - }, - "end": { - "$date": "2021-08-12T04:56:41.000Z" - }, - "events": [ - { - "uuid": "9d8454de-3441-4fa1-b378-d6f0e634598a", - "start": { - "$date": "2021-08-12T04:30:10.000Z" - }, - "end": { - "$date": "2021-08-12T04:56:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "f9a7b41f-9d9c-45d7-b591-7fad319ab8df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T04:59:40.000Z" - }, - "end": { - "$date": "2021-08-12T06:21:28.000Z" - }, - "events": [ - { - "uuid": "b9235a82-865e-40d5-bb22-097aab73f4a0", - "start": { - "$date": "2021-08-12T04:59:40.000Z" - }, - "end": { - "$date": "2021-08-12T06:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60763a3d-df11-418f-a545-2520996ee937", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-12T05:05:18.000Z" - }, - "end": { - "$date": "2021-08-12T05:12:41.000Z" - }, - "events": [ - { - "uuid": "07df621a-608c-43e4-9505-6b847e3e8d80", - "start": { - "$date": "2021-08-12T05:05:18.000Z" - }, - "end": { - "$date": "2021-08-12T05:12:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "051cb7d1-e179-40de-a951-d7c34ff0fdd4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-12T05:19:17.000Z" - }, - "end": { - "$date": "2021-08-12T08:01:15.000Z" - }, - "events": [ - { - "uuid": "29ce843e-6c24-4f34-9252-07f57deeb840", - "start": { - "$date": "2021-08-12T05:19:17.000Z" - }, - "end": { - "$date": "2021-08-12T08:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c283d88-aa35-45ed-8e9e-06dc58aec773", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-12T05:25:54.000Z" - }, - "end": { - "$date": "2021-08-12T05:49:59.000Z" - }, - "events": [ - { - "uuid": "8d1bf65f-5dd5-40aa-b75f-db731a641fec", - "start": { - "$date": "2021-08-12T05:25:54.000Z" - }, - "end": { - "$date": "2021-08-12T05:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0fbc803d-7f54-49c2-9883-dd3b35abe86c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-12T05:48:23.000Z" - }, - "end": { - "$date": "2021-08-12T07:29:08.000Z" - }, - "events": [ - { - "uuid": "4f007f1c-a377-45bf-84aa-ef874a632499", - "start": { - "$date": "2021-08-12T05:48:23.000Z" - }, - "end": { - "$date": "2021-08-12T07:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "446d5eed-69a9-4a2c-8b39-0216b6779415", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-12T06:06:09.000Z" - }, - "end": { - "$date": "2021-08-12T07:24:55.000Z" - }, - "events": [ - { - "uuid": "b3257f37-1850-402f-8d36-4702efceedb3", - "start": { - "$date": "2021-08-12T06:06:09.000Z" - }, - "end": { - "$date": "2021-08-12T07:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d6b5627c-9b8c-496a-8f03-85af629056ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-12T06:52:06.000Z" - }, - "end": { - "$date": "2021-08-12T07:49:57.000Z" - }, - "events": [ - { - "uuid": "b48a42f2-e9b7-497f-a0a8-00b4553867b8", - "start": { - "$date": "2021-08-12T06:52:06.000Z" - }, - "end": { - "$date": "2021-08-12T07:49:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cb09e615-3d9c-4979-bff3-61fc8775c3c7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-12T09:44:58.000Z" - }, - "end": { - "$date": "2021-08-12T10:45:27.000Z" - }, - "events": [ - { - "uuid": "e71fab0b-a13f-4c1a-bfdc-bd6f52a7ed65", - "start": { - "$date": "2021-08-12T09:44:58.000Z" - }, - "end": { - "$date": "2021-08-12T10:45:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43a86ab2-334e-4dcb-9471-49f9dd4338b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-12T15:04:16.000Z" - }, - "end": { - "$date": "2021-08-12T15:05:16.000Z" - }, - "events": [ - { - "uuid": "565783f2-4b6e-4dcc-9b77-9f66d7541406", - "start": { - "$date": "2021-08-12T15:04:16.000Z" - }, - "end": { - "$date": "2021-08-12T15:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92a71dca-4919-41c4-9ed9-1a4cb7a4dffe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-12T15:10:45.000Z" - }, - "end": { - "$date": "2021-08-12T15:42:15.000Z" - }, - "events": [ - { - "uuid": "f7b09d2f-3eff-4691-a307-6103f8349167", - "start": { - "$date": "2021-08-12T15:10:45.000Z" - }, - "end": { - "$date": "2021-08-12T15:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2e929e00-bae6-4a1a-ab81-1c51c683a100", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-12T15:05:30.000Z" - }, - "end": { - "$date": "2021-08-12T15:52:26.000Z" - }, - "events": [ - { - "uuid": "7934faea-2853-41c5-9518-219ff81339d8", - "start": { - "$date": "2021-08-12T15:05:30.000Z" - }, - "end": { - "$date": "2021-08-12T15:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2580feff-d5e3-4770-80dd-a27c7c43a24c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-12T17:52:50.000Z" - }, - "end": { - "$date": "2021-08-12T18:22:37.000Z" - }, - "events": [ - { - "uuid": "4c6acfa1-870a-496b-b8c6-a68b3989d313", - "start": { - "$date": "2021-08-12T17:52:50.000Z" - }, - "end": { - "$date": "2021-08-12T18:22:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3dcdeb8-81d5-4e9b-a542-986f52e45310", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-12T17:53:03.000Z" - }, - "end": { - "$date": "2021-08-12T18:22:34.000Z" - }, - "events": [ - { - "uuid": "e4cdfd2f-02aa-426b-84bf-ce989a96c353", - "start": { - "$date": "2021-08-12T17:53:03.000Z" - }, - "end": { - "$date": "2021-08-12T18:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14b170d7-8bea-497c-8bf2-9f4dd8e2c8a9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-12T18:28:16.000Z" - }, - "end": { - "$date": "2021-08-12T18:52:33.000Z" - }, - "events": [ - { - "uuid": "e822caf5-5a25-45eb-b641-db1e2b762ae7", - "start": { - "$date": "2021-08-12T18:28:16.000Z" - }, - "end": { - "$date": "2021-08-12T18:52:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9449ba6b-323d-41e0-8bfc-8a88abb1ede0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-12T18:28:19.000Z" - }, - "end": { - "$date": "2021-08-12T18:52:34.000Z" - }, - "events": [ - { - "uuid": "9469904c-a7ce-4ab0-8b39-b0dcf853e785", - "start": { - "$date": "2021-08-12T18:28:19.000Z" - }, - "end": { - "$date": "2021-08-12T18:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a98103cf-b622-4f8f-95c7-1c3c25683eff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T20:11:03.000Z" - }, - "end": { - "$date": "2021-08-12T20:12:08.000Z" - }, - "events": [ - { - "uuid": "d426f868-4b60-4bf7-a7e5-8e176164afc1", - "start": { - "$date": "2021-08-12T20:11:03.000Z" - }, - "end": { - "$date": "2021-08-12T20:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cbb7fa9-d33a-4172-9029-0706a46936ca", - "uuid": "9c7a2f82-229a-4e1c-b001-8308a47099b1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T20:15:24.000Z" - }, - "end": { - "$date": "2021-08-12T20:52:35.000Z" - }, - "events": [ - { - "uuid": "7425b1ad-9441-49fb-a012-15c99c562e22", - "start": { - "$date": "2021-08-12T20:15:24.000Z" - }, - "end": { - "$date": "2021-08-12T20:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5b6c937b-862b-475a-827a-088d0d7353e5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-12T20:51:49.000Z" - }, - "end": { - "$date": "2021-08-13T01:28:16.000Z" - }, - "events": [ - { - "uuid": "56ff1eca-17a3-420b-bba2-43a763f3c3ad", - "start": { - "$date": "2021-08-12T20:51:49.000Z" - }, - "end": { - "$date": "2021-08-12T22:01:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "834b7856-0709-46e8-83a5-3646b7e25ae2", - "start": { - "$date": "2021-08-12T22:01:49.000Z" - }, - "end": { - "$date": "2021-08-12T22:06:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "50d82eb3-4b47-4374-881a-a58f3bb97fbd", - "start": { - "$date": "2021-08-12T22:06:49.000Z" - }, - "end": { - "$date": "2021-08-12T23:31:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de176894-82d0-4c5d-a6b4-eb0e20b7af98", - "start": { - "$date": "2021-08-12T23:31:49.000Z" - }, - "end": { - "$date": "2021-08-12T23:32:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b4d1e332-0f37-4206-8dec-1c903649d9e6", - "start": { - "$date": "2021-08-12T23:32:49.000Z" - }, - "end": { - "$date": "2021-08-13T00:03:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77906527-501e-4869-8f4d-79456d2c4c80", - "start": { - "$date": "2021-08-13T00:03:49.000Z" - }, - "end": { - "$date": "2021-08-13T00:10:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e5e884c-9ff7-47f3-b20a-fe7d2039bc33", - "start": { - "$date": "2021-08-13T00:10:49.000Z" - }, - "end": { - "$date": "2021-08-13T01:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9210ae1d-4969-4189-9dfd-7b8d4e75840a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T20:53:56.000Z" - }, - "end": { - "$date": "2021-08-12T20:55:53.000Z" - }, - "events": [ - { - "uuid": "732d0a08-b1c5-4f66-a943-15a235c1dd0e", - "start": { - "$date": "2021-08-12T20:53:56.000Z" - }, - "end": { - "$date": "2021-08-12T20:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "7053c22b-9dd6-44e5-8497-c1e7c7833d84", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T20:56:19.000Z" - }, - "end": { - "$date": "2021-08-12T23:16:29.000Z" - }, - "events": [ - { - "uuid": "0bd2fd7c-d418-4eb8-9510-90ff278b7e92", - "start": { - "$date": "2021-08-12T20:56:19.000Z" - }, - "end": { - "$date": "2021-08-12T23:16:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8c626653-6425-42d4-8df6-aeaca1d65b8d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-12T21:45:44.000Z" - }, - "end": { - "$date": "2021-08-12T21:50:37.000Z" - }, - "events": [ - { - "uuid": "ae39f3b8-fc94-4fdd-9764-e0206c04018c", - "start": { - "$date": "2021-08-12T21:45:44.000Z" - }, - "end": { - "$date": "2021-08-12T21:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d8cc8676-9456-4f51-be44-99ba62f0e3d4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-12T21:52:04.000Z" - }, - "end": { - "$date": "2021-08-13T07:29:13.000Z" - }, - "events": [ - { - "uuid": "b9bbd311-1a7d-4c95-ae41-e4a32e7363a9", - "start": { - "$date": "2021-08-12T21:52:04.000Z" - }, - "end": { - "$date": "2021-08-12T22:15:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3b008d2-9cc4-4d75-9b69-cf85bbc655f3", - "start": { - "$date": "2021-08-12T22:15:04.000Z" - }, - "end": { - "$date": "2021-08-12T22:20:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "697dbc8b-1bd1-4861-8e6c-e93dceb3926e", - "start": { - "$date": "2021-08-12T22:20:04.000Z" - }, - "end": { - "$date": "2021-08-12T22:30:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b56e4b1-a123-4332-8a97-11c9496aeb7b", - "start": { - "$date": "2021-08-12T22:30:04.000Z" - }, - "end": { - "$date": "2021-08-12T23:07:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9cff5ee8-f938-423e-a76c-68331b60834c", - "start": { - "$date": "2021-08-12T23:07:04.000Z" - }, - "end": { - "$date": "2021-08-12T23:18:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e00badc-0c25-4b51-82fe-a76cfc4d35e5", - "start": { - "$date": "2021-08-12T23:18:04.000Z" - }, - "end": { - "$date": "2021-08-13T01:00:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "532ae07d-2e72-49f9-9c91-e65850c6b681", - "start": { - "$date": "2021-08-13T01:00:04.000Z" - }, - "end": { - "$date": "2021-08-13T01:16:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "464125c9-d079-45e5-9bb2-772ef0d19a45", - "start": { - "$date": "2021-08-13T01:16:04.000Z" - }, - "end": { - "$date": "2021-08-13T01:17:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ad67fc26-fe7c-48e9-a3b2-0fa0abbfaab4", - "start": { - "$date": "2021-08-13T01:17:04.000Z" - }, - "end": { - "$date": "2021-08-13T01:19:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b98d2f3-74ee-44aa-b194-aba5732b1724", - "start": { - "$date": "2021-08-13T01:19:04.000Z" - }, - "end": { - "$date": "2021-08-13T01:32:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9dfec6e1-ce65-41c0-b3f5-31ba41a52702", - "start": { - "$date": "2021-08-13T01:32:04.000Z" - }, - "end": { - "$date": "2021-08-13T07:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "651eeaf9-dcc7-4c64-8153-d4f7a1f539ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-12T22:17:51.000Z" - }, - "end": { - "$date": "2021-08-12T22:47:43.000Z" - }, - "events": [ - { - "uuid": "63976c50-e4f4-4e66-82bc-dd6e4993b9be", - "start": { - "$date": "2021-08-12T22:17:51.000Z" - }, - "end": { - "$date": "2021-08-12T22:47:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "b4ac3b92-15e5-44b5-9654-d8332e8b3b70", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-12T23:18:14.000Z" - }, - "end": { - "$date": "2021-08-13T00:49:18.000Z" - }, - "events": [ - { - "uuid": "4e587e31-aeb3-4239-9bb9-c04bbd12e035", - "start": { - "$date": "2021-08-12T23:18:14.000Z" - }, - "end": { - "$date": "2021-08-13T00:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7348aed9-82ad-4ad4-83e3-c60b75212452", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T00:10:21.000Z" - }, - "end": { - "$date": "2021-08-13T00:39:22.000Z" - }, - "events": [ - { - "uuid": "a394dfc2-e83e-4cbd-9fa2-f8ad411a8d45", - "start": { - "$date": "2021-08-13T00:10:21.000Z" - }, - "end": { - "$date": "2021-08-13T00:39:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "129c8607-3c6e-480b-852f-f42e5835b6dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T00:38:44.000Z" - }, - "end": { - "$date": "2021-08-13T00:39:19.000Z" - }, - "events": [ - { - "uuid": "cc6d3e27-0ea0-4afb-b016-ad996643429d", - "start": { - "$date": "2021-08-13T00:38:44.000Z" - }, - "end": { - "$date": "2021-08-13T00:39:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07dd6f32-17af-4524-9529-6fca0dcbeb1b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T00:44:53.000Z" - }, - "end": { - "$date": "2021-08-13T01:35:15.000Z" - }, - "events": [ - { - "uuid": "2339889e-6858-4da7-b428-d578fca5ca27", - "start": { - "$date": "2021-08-13T00:44:53.000Z" - }, - "end": { - "$date": "2021-08-13T01:35:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9aaff2aa-5353-47ac-91b9-159aeadc04a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T00:45:45.000Z" - }, - "end": { - "$date": "2021-08-13T01:35:10.000Z" - }, - "events": [ - { - "uuid": "1bd19c2e-95a6-43ad-aae6-eb089f5c1bcb", - "start": { - "$date": "2021-08-13T00:45:45.000Z" - }, - "end": { - "$date": "2021-08-13T01:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "10ab715e-769e-4728-8872-949884252871", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-13T01:28:41.000Z" - }, - "end": { - "$date": "2021-08-13T02:46:35.000Z" - }, - "events": [ - { - "uuid": "bfc43398-bbf7-4b90-afd8-4b79aeaf2271", - "start": { - "$date": "2021-08-13T01:28:41.000Z" - }, - "end": { - "$date": "2021-08-13T02:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66ca7b01-30eb-4ba4-bf7c-120325014508", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T02:01:48.000Z" - }, - "end": { - "$date": "2021-08-13T02:26:53.000Z" - }, - "events": [ - { - "uuid": "dfcbd015-229d-4bd6-ab84-38dc87f80092", - "start": { - "$date": "2021-08-13T02:01:48.000Z" - }, - "end": { - "$date": "2021-08-13T02:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3a21659-4c72-437e-b851-0b9dca9c3c8a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T02:01:11.000Z" - }, - "end": { - "$date": "2021-08-13T02:26:52.000Z" - }, - "events": [ - { - "uuid": "d80ccc74-7896-437b-8bbd-3b1702034385", - "start": { - "$date": "2021-08-13T02:01:11.000Z" - }, - "end": { - "$date": "2021-08-13T02:26:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "992b549f-92dc-40d2-8403-43f2f0721a28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-13T01:59:18.000Z" - }, - "end": { - "$date": "2021-08-13T02:27:52.000Z" - }, - "events": [ - { - "uuid": "135cb321-bffa-41f7-a143-29cdd2311de4", - "start": { - "$date": "2021-08-13T01:59:18.000Z" - }, - "end": { - "$date": "2021-08-13T02:26:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "efdfba6b-9f5a-41aa-a13c-f69e417898ca", - "start": { - "$date": "2021-08-13T02:26:18.000Z" - }, - "end": { - "$date": "2021-08-13T02:27:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3586c7a2-c333-4341-a98e-4c488352e0a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T02:28:44.000Z" - }, - "end": { - "$date": "2021-08-13T02:43:04.000Z" - }, - "events": [ - { - "uuid": "4a4dd06a-44a4-4149-ba19-814937e83fbc", - "start": { - "$date": "2021-08-13T02:28:44.000Z" - }, - "end": { - "$date": "2021-08-13T02:43:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c48e84c-8ea8-41c2-bd40-0bc37fe16641", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T02:38:42.000Z" - }, - "end": { - "$date": "2021-08-13T02:40:05.000Z" - }, - "events": [ - { - "uuid": "b8597e35-9257-42b5-a841-7fc4ea3b16ff", - "start": { - "$date": "2021-08-13T02:38:42.000Z" - }, - "end": { - "$date": "2021-08-13T02:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1835c01a-f730-4e01-9090-9751fb0099b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T05:21:19.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:42.000Z" - }, - "events": [ - { - "uuid": "f8a9355e-7356-4a6d-b0be-218bb71d4633", - "start": { - "$date": "2021-08-13T05:21:19.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8b58fef-70ad-4a56-9b5b-262758fcd639", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T05:21:08.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:30.000Z" - }, - "events": [ - { - "uuid": "7f6ee038-23fb-4a86-8e6e-4e5572d26196", - "start": { - "$date": "2021-08-13T05:21:08.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "96b6efd3-8e92-41f4-a49f-d11dd93954af", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-13T02:54:07.000Z" - }, - "end": { - "$date": "2021-08-13T03:12:43.000Z" - }, - "events": [ - { - "uuid": "afa72d88-487a-4969-a0c9-d63d87adc125", - "start": { - "$date": "2021-08-13T02:54:07.000Z" - }, - "end": { - "$date": "2021-08-13T03:12:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "274bd15f-2aa3-46ff-b267-4775e9aab98d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-13T02:56:12.000Z" - }, - "end": { - "$date": "2021-08-13T03:33:24.000Z" - }, - "events": [ - { - "uuid": "8ad1c01a-5127-4a85-acc9-d57f8583ebba", - "start": { - "$date": "2021-08-13T02:56:12.000Z" - }, - "end": { - "$date": "2021-08-13T03:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07a235b4-4944-419d-9c45-b3413d08aeb0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-13T03:42:46.000Z" - }, - "end": { - "$date": "2021-08-13T03:57:42.000Z" - }, - "events": [ - { - "uuid": "e43602c3-f660-4532-8ed9-1a79f65c3864", - "start": { - "$date": "2021-08-13T03:42:46.000Z" - }, - "end": { - "$date": "2021-08-13T03:57:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5df9e36d-a03e-4f6a-bf04-af93c0fa206e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-13T03:32:23.000Z" - }, - "end": { - "$date": "2021-08-13T03:57:40.000Z" - }, - "events": [ - { - "uuid": "ff01d098-2ebb-4c04-985a-ccc7f42625ea", - "start": { - "$date": "2021-08-13T03:32:23.000Z" - }, - "end": { - "$date": "2021-08-13T03:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b3471fa3-80f4-4e82-9c76-513bf7dbbd27", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-13T03:33:40.000Z" - }, - "end": { - "$date": "2021-08-13T05:08:49.000Z" - }, - "events": [ - { - "uuid": "7bdc2992-ee22-49aa-aafe-2b274fdeed80", - "start": { - "$date": "2021-08-13T03:33:40.000Z" - }, - "end": { - "$date": "2021-08-13T05:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5156229-b484-4012-aee6-18e84a692a62", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-13T04:01:54.000Z" - }, - "end": { - "$date": "2021-08-13T04:32:26.000Z" - }, - "events": [ - { - "uuid": "22ceab74-6172-4dfc-8b41-917c5ac836ef", - "start": { - "$date": "2021-08-13T04:01:54.000Z" - }, - "end": { - "$date": "2021-08-13T04:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "291997fb-e45f-40e1-8a90-744c7781f002", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-13T04:01:31.000Z" - }, - "end": { - "$date": "2021-08-13T04:32:32.000Z" - }, - "events": [ - { - "uuid": "0e2c2960-4982-41e4-a598-4d054e13870f", - "start": { - "$date": "2021-08-13T04:01:31.000Z" - }, - "end": { - "$date": "2021-08-13T04:32:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "56cdbf28-79f4-4df7-ad75-ec35695c13fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-13T04:23:16.000Z" - }, - "end": { - "$date": "2021-08-13T04:24:55.000Z" - }, - "events": [ - { - "uuid": "7643a14a-ce29-4a06-9e92-851157e70ba6", - "start": { - "$date": "2021-08-13T04:23:16.000Z" - }, - "end": { - "$date": "2021-08-13T04:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "662a5d32-5e8a-4a44-9111-440ca240f0bc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-13T04:25:12.000Z" - }, - "end": { - "$date": "2021-08-13T04:33:41.000Z" - }, - "events": [ - { - "uuid": "62d6ad19-0c58-4d08-989e-d7523cdb1c2c", - "start": { - "$date": "2021-08-13T04:25:12.000Z" - }, - "end": { - "$date": "2021-08-13T04:33:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73ef398d-49d8-408c-89b3-18ed2806d835", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-13T04:37:25.000Z" - }, - "end": { - "$date": "2021-08-13T04:57:27.000Z" - }, - "events": [ - { - "uuid": "ce3355d1-7624-41ab-9c8d-5d967e643a78", - "start": { - "$date": "2021-08-13T04:37:25.000Z" - }, - "end": { - "$date": "2021-08-13T04:57:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88868e0d-0947-4ba0-a202-9977ccd52b35", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-13T04:36:57.000Z" - }, - "end": { - "$date": "2021-08-13T04:57:28.000Z" - }, - "events": [ - { - "uuid": "18f6111d-101b-42b7-8aeb-7ff433fd2fb7", - "start": { - "$date": "2021-08-13T04:36:57.000Z" - }, - "end": { - "$date": "2021-08-13T04:57:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab223093-83ec-4812-951b-c832900931fe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-13T04:36:57.000Z" - }, - "end": { - "$date": "2021-08-13T04:57:31.000Z" - }, - "events": [ - { - "uuid": "911ef174-aa7f-40de-9c81-de9c16020284", - "start": { - "$date": "2021-08-13T04:36:57.000Z" - }, - "end": { - "$date": "2021-08-13T04:57:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05e1dd54-00af-464f-a354-a307754d3b41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-13T05:21:14.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:37.000Z" - }, - "events": [ - { - "uuid": "4eda36ed-fd96-4f28-936e-f68f8e5b9bd5", - "start": { - "$date": "2021-08-13T05:21:14.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "879a57d0-cd39-4eef-9f71-5904876eaa7c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-13T05:21:12.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:28.000Z" - }, - "events": [ - { - "uuid": "c98ad15f-c9de-4266-96c1-a18e8ff5d821", - "start": { - "$date": "2021-08-13T05:21:12.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bc24fd6-ae14-4943-aa0e-0a573f3ca0fb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-13T05:21:06.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:34.000Z" - }, - "events": [ - { - "uuid": "f6549682-4eab-4c80-ad79-a349650b4673", - "start": { - "$date": "2021-08-13T05:21:06.000Z" - }, - "end": { - "$date": "2021-08-13T05:21:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "41ee1745-a5df-4d4a-8347-e8bc416c64b4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-13T05:20:21.000Z" - }, - "end": { - "$date": "2021-08-13T06:41:42.000Z" - }, - "events": [ - { - "uuid": "0daf2567-ed3c-4b6d-aec7-59311be50ebf", - "start": { - "$date": "2021-08-13T05:20:21.000Z" - }, - "end": { - "$date": "2021-08-13T06:41:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "486d10e6-a32d-4934-8d16-8b127948ebc0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-13T05:23:04.000Z" - }, - "end": { - "$date": "2021-08-13T08:32:37.000Z" - }, - "events": [ - { - "uuid": "f02af9d2-bc28-4944-ba67-a5ab8525df8d", - "start": { - "$date": "2021-08-13T05:23:04.000Z" - }, - "end": { - "$date": "2021-08-13T08:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "fafa48af-314f-4b7f-bae5-125dd140a08f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-13T05:42:05.000Z" - }, - "end": { - "$date": "2021-08-13T08:04:27.000Z" - }, - "events": [ - { - "uuid": "2f603fda-4dc6-4483-9d68-601626baae4e", - "start": { - "$date": "2021-08-13T05:42:05.000Z" - }, - "end": { - "$date": "2021-08-13T08:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "57accc4c-4332-4077-8bea-cf02efd41f1e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-13T07:13:27.000Z" - }, - "end": { - "$date": "2021-08-13T07:56:40.000Z" - }, - "events": [ - { - "uuid": "4d556351-1d34-4f65-9784-1037bc5d719e", - "start": { - "$date": "2021-08-13T07:13:27.000Z" - }, - "end": { - "$date": "2021-08-13T07:56:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43c46a7a-d9c5-42c4-8cb3-f0fc7eab36ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T15:55:54.000Z" - }, - "end": { - "$date": "2021-08-13T16:20:12.000Z" - }, - "events": [ - { - "uuid": "2e64a701-e8d2-41d0-bb9a-30db0baaa0d3", - "start": { - "$date": "2021-08-13T15:55:54.000Z" - }, - "end": { - "$date": "2021-08-13T16:20:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a11e43d5-5d1d-474f-a0d0-396aa354cd58", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T15:55:20.000Z" - }, - "end": { - "$date": "2021-08-13T16:20:11.000Z" - }, - "events": [ - { - "uuid": "1a6c5f54-9e90-4936-a00d-c6ba0f472d14", - "start": { - "$date": "2021-08-13T15:55:20.000Z" - }, - "end": { - "$date": "2021-08-13T16:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6860a8a4-213f-452a-88f2-4ccc0176e0c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-13T16:26:15.000Z" - }, - "end": { - "$date": "2021-08-13T17:01:14.000Z" - }, - "events": [ - { - "uuid": "ccfa938b-4bb0-4ff5-bb07-6d14300042d2", - "start": { - "$date": "2021-08-13T16:26:15.000Z" - }, - "end": { - "$date": "2021-08-13T17:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b80d41aa-7e10-4b50-91e6-bb921475b054", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-13T16:26:10.000Z" - }, - "end": { - "$date": "2021-08-13T17:01:11.000Z" - }, - "events": [ - { - "uuid": "73b7a89a-1b88-4110-8ee3-a70a4bb47773", - "start": { - "$date": "2021-08-13T16:26:10.000Z" - }, - "end": { - "$date": "2021-08-13T17:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "a2474ec6-448a-4844-99f6-d4ec61e8724a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-13T17:55:15.000Z" - }, - "end": { - "$date": "2021-08-13T23:06:45.000Z" - }, - "events": [ - { - "uuid": "d1ac292d-1344-4b68-bf10-f1ae2e358d20", - "start": { - "$date": "2021-08-13T17:55:15.000Z" - }, - "end": { - "$date": "2021-08-13T23:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b982a000-d0bb-416b-8dbf-a3ad0e0ab95d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-13T19:53:01.000Z" - }, - "end": { - "$date": "2021-08-13T21:07:21.000Z" - }, - "events": [ - { - "uuid": "ef953ec1-cd1a-4f63-ac7d-186707dd3e9e", - "start": { - "$date": "2021-08-13T19:53:01.000Z" - }, - "end": { - "$date": "2021-08-13T21:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "3e219226-60e9-45d1-87fd-891bac285000", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-13T20:21:35.000Z" - }, - "end": { - "$date": "2021-08-13T23:39:34.000Z" - }, - "events": [ - { - "uuid": "d2f1aa40-be97-4c8e-b63f-06c9a104035d", - "start": { - "$date": "2021-08-13T20:21:35.000Z" - }, - "end": { - "$date": "2021-08-13T23:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "0cf000d8-e34a-4447-b551-7833db4da39f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-13T20:56:57.000Z" - }, - "end": { - "$date": "2021-08-13T21:47:44.000Z" - }, - "events": [ - { - "uuid": "6a48e248-6e38-45a6-8262-6dc1b0321269", - "start": { - "$date": "2021-08-13T20:56:57.000Z" - }, - "end": { - "$date": "2021-08-13T21:47:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fe3d5bcc-8ca3-48a4-8ad8-f4c6c33f12b3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-13T21:37:04.000Z" - }, - "end": { - "$date": "2021-08-13T21:48:20.000Z" - }, - "events": [ - { - "uuid": "9a55c970-9927-4a6e-a6cf-dc4bd2ee92ef", - "start": { - "$date": "2021-08-13T21:37:04.000Z" - }, - "end": { - "$date": "2021-08-13T21:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "882afaf8-a827-4844-b3be-5e4136d8bbf9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-13T21:44:14.000Z" - }, - "end": { - "$date": "2021-08-14T02:45:42.000Z" - }, - "events": [ - { - "uuid": "8f41a414-303d-4022-ad40-955fe75ac060", - "start": { - "$date": "2021-08-13T21:44:14.000Z" - }, - "end": { - "$date": "2021-08-13T23:26:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2d4339c3-ecb9-4af4-92b9-2d1a695aa2a4", - "start": { - "$date": "2021-08-13T23:26:14.000Z" - }, - "end": { - "$date": "2021-08-13T23:31:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5baf447f-92c3-4c9c-9a89-e57f182966a0", - "start": { - "$date": "2021-08-13T23:31:14.000Z" - }, - "end": { - "$date": "2021-08-14T02:45:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "c2377de2-86f3-499b-b479-151ee1f6f6dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-13T21:51:45.000Z" - }, - "end": { - "$date": "2021-08-13T22:25:08.000Z" - }, - "events": [ - { - "uuid": "7c65a668-d0b3-4586-88a6-47f439565f2f", - "start": { - "$date": "2021-08-13T21:51:45.000Z" - }, - "end": { - "$date": "2021-08-13T22:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bf926d3-7db6-4108-b47d-191f43d72f36", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-13T22:25:18.000Z" - }, - "end": { - "$date": "2021-08-13T23:22:01.000Z" - }, - "events": [ - { - "uuid": "9d04b6fe-66e1-455b-9c01-bbacb9590b82", - "start": { - "$date": "2021-08-13T22:25:18.000Z" - }, - "end": { - "$date": "2021-08-13T23:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "1db0f006-b217-4c15-9ce1-aba4ece05ef9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-14T00:34:01.000Z" - }, - "end": { - "$date": "2021-08-14T03:03:52.000Z" - }, - "events": [ - { - "uuid": "f8fbd845-d2b0-4b15-9ac7-8ab7610a77df", - "start": { - "$date": "2021-08-14T00:34:01.000Z" - }, - "end": { - "$date": "2021-08-14T03:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c1669448-2067-4c90-bcdf-1679103f3336", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T00:37:46.000Z" - }, - "end": { - "$date": "2021-08-14T01:19:49.000Z" - }, - "events": [ - { - "uuid": "1fd06538-8cd1-4af9-8ce3-f935dfbc730c", - "start": { - "$date": "2021-08-14T00:37:46.000Z" - }, - "end": { - "$date": "2021-08-14T01:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79c34d7e-2664-42a5-8921-2ffb7b0f3830", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T01:09:01.000Z" - }, - "end": { - "$date": "2021-08-14T01:24:52.000Z" - }, - "events": [ - { - "uuid": "ec134632-22f8-4164-8d02-ba3f94ef1ddf", - "start": { - "$date": "2021-08-14T01:09:01.000Z" - }, - "end": { - "$date": "2021-08-14T01:24:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b496dd9d-b465-4b6a-b06f-da215ebc9d17", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-14T01:10:56.000Z" - }, - "end": { - "$date": "2021-08-14T06:00:56.000Z" - }, - "events": [ - { - "uuid": "aea8cd41-bb0b-498f-ac96-38393a157d75", - "start": { - "$date": "2021-08-14T01:10:56.000Z" - }, - "end": { - "$date": "2021-08-14T03:13:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbff42a3-12ef-481e-b752-2286f1313c6d", - "start": { - "$date": "2021-08-14T03:13:56.000Z" - }, - "end": { - "$date": "2021-08-14T03:24:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e6e2a89-d2bb-459f-bee5-88a238f4b4a3", - "start": { - "$date": "2021-08-14T03:24:56.000Z" - }, - "end": { - "$date": "2021-08-14T06:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0fa6166-4f11-4298-8e2d-fb1589239654", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T01:29:51.000Z" - }, - "end": { - "$date": "2021-08-14T01:58:22.000Z" - }, - "events": [ - { - "uuid": "eac29f42-f10e-495c-babc-9063d7df39a6", - "start": { - "$date": "2021-08-14T01:29:51.000Z" - }, - "end": { - "$date": "2021-08-14T01:58:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5078726-eabb-4c87-ab12-d19b09093c42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T02:03:22.000Z" - }, - "end": { - "$date": "2021-08-14T02:29:58.000Z" - }, - "events": [ - { - "uuid": "2424169c-7879-454e-9624-caefdcbb6706", - "start": { - "$date": "2021-08-14T02:03:22.000Z" - }, - "end": { - "$date": "2021-08-14T02:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b1875226-a12a-4726-a8a3-b199635ad60d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-14T02:13:47.000Z" - }, - "end": { - "$date": "2021-08-14T03:10:14.000Z" - }, - "events": [ - { - "uuid": "20eaef7b-2a78-4254-9765-8fba33761bd6", - "start": { - "$date": "2021-08-14T02:13:47.000Z" - }, - "end": { - "$date": "2021-08-14T02:28:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6af2085f-3c5c-437c-bcd1-4569dad1f2c4", - "start": { - "$date": "2021-08-14T02:28:47.000Z" - }, - "end": { - "$date": "2021-08-14T03:07:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a2c9e39-b592-4962-9fa2-0a92f11fcaab", - "start": { - "$date": "2021-08-14T03:07:47.000Z" - }, - "end": { - "$date": "2021-08-14T03:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34a46cc2-5380-4da0-87a0-4e2a4d26bef9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T02:35:38.000Z" - }, - "end": { - "$date": "2021-08-14T03:09:03.000Z" - }, - "events": [ - { - "uuid": "98cf428e-2ecf-4064-9dcd-7a82db614034", - "start": { - "$date": "2021-08-14T02:35:38.000Z" - }, - "end": { - "$date": "2021-08-14T03:09:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "dbc67e6c-cc04-4ebd-aff9-c94eaf509b3f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T02:47:07.000Z" - }, - "end": { - "$date": "2021-08-14T03:12:39.000Z" - }, - "events": [ - { - "uuid": "2288d26e-6d76-4dd7-9e50-a053d59ed800", - "start": { - "$date": "2021-08-14T02:47:07.000Z" - }, - "end": { - "$date": "2021-08-14T03:12:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8c2aeabf-e7df-4a22-b868-3d45943c6e90", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-14T03:11:43.000Z" - }, - "end": { - "$date": "2021-08-14T03:39:51.000Z" - }, - "events": [ - { - "uuid": "6db0ecde-062d-4613-9858-51cdbfb1b168", - "start": { - "$date": "2021-08-14T03:11:43.000Z" - }, - "end": { - "$date": "2021-08-14T03:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee04e0b3-5b72-488a-b4eb-0302e734ecf4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T03:13:04.000Z" - }, - "end": { - "$date": "2021-08-14T03:39:56.000Z" - }, - "events": [ - { - "uuid": "e033c087-5dba-4995-a6d7-a4360604a598", - "start": { - "$date": "2021-08-14T03:13:04.000Z" - }, - "end": { - "$date": "2021-08-14T03:39:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", - "uuid": "8ae88a5c-4633-4831-b22a-41d2c43e49f7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-14T03:24:21.000Z" - }, - "end": { - "$date": "2021-08-14T03:25:08.000Z" - }, - "events": [ - { - "uuid": "ec091b03-a431-4b0f-a566-1a8dcba3ee3d", - "start": { - "$date": "2021-08-14T03:24:21.000Z" - }, - "end": { - "$date": "2021-08-14T03:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "855f59a7-b8b5-473e-ba5e-8f9d96aa8903", - "uuid": "51340d65-a65e-4d6c-88dc-85c57e74dd29", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-14T03:26:56.000Z" - }, - "end": { - "$date": "2021-08-14T04:04:19.000Z" - }, - "events": [ - { - "uuid": "94dcfad0-b1b7-4c67-a71e-68920932b3eb", - "start": { - "$date": "2021-08-14T03:26:56.000Z" - }, - "end": { - "$date": "2021-08-14T03:53:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e649ff51-7f98-4fd6-abd4-4f7847a8645b", - "start": { - "$date": "2021-08-14T03:53:56.000Z" - }, - "end": { - "$date": "2021-08-14T04:04:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "40609dd9-ec6a-46fc-b052-3a94d9e7a791", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-14T03:40:30.000Z" - }, - "end": { - "$date": "2021-08-14T04:26:39.000Z" - }, - "events": [ - { - "uuid": "f6b9f9df-8f87-4cc7-8d0f-e01c72f55241", - "start": { - "$date": "2021-08-14T03:40:30.000Z" - }, - "end": { - "$date": "2021-08-14T04:26:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8cf2d319-8945-4a19-a151-6f3818aa3e4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T03:40:41.000Z" - }, - "end": { - "$date": "2021-08-14T04:25:09.000Z" - }, - "events": [ - { - "uuid": "25753243-ffab-4371-a219-cb805c381574", - "start": { - "$date": "2021-08-14T03:40:41.000Z" - }, - "end": { - "$date": "2021-08-14T04:25:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5c57099e-cf99-4233-b391-02bcc618e3a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T04:26:09.000Z" - }, - "end": { - "$date": "2021-08-14T05:49:27.000Z" - }, - "events": [ - { - "uuid": "4abb8e10-cb9b-4888-b360-3c7fa8c2834b", - "start": { - "$date": "2021-08-14T04:26:09.000Z" - }, - "end": { - "$date": "2021-08-14T05:49:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09ca3336-4ac1-4608-8ad6-85de16b9f0e2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T05:37:24.000Z" - }, - "end": { - "$date": "2021-08-14T05:56:19.000Z" - }, - "events": [ - { - "uuid": "21c19ba4-4826-48ac-bc23-d6009df477c5", - "start": { - "$date": "2021-08-14T05:37:24.000Z" - }, - "end": { - "$date": "2021-08-14T05:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "becb055d-96ca-4fe1-966e-6ed4799ad5a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T05:59:49.000Z" - }, - "end": { - "$date": "2021-08-14T06:11:54.000Z" - }, - "events": [ - { - "uuid": "7311e4a4-b140-4d81-b06a-98281588800f", - "start": { - "$date": "2021-08-14T05:59:49.000Z" - }, - "end": { - "$date": "2021-08-14T06:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "822c9336-41ed-48a6-a4b4-dfacfa98bbff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T05:58:02.000Z" - }, - "end": { - "$date": "2021-08-14T06:12:49.000Z" - }, - "events": [ - { - "uuid": "4d15fb89-f388-4a3a-b6fc-5b187a028be5", - "start": { - "$date": "2021-08-14T05:58:02.000Z" - }, - "end": { - "$date": "2021-08-14T06:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c391a26-0378-4886-8d4b-9e6ad97dff53", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-14T06:45:14.000Z" - }, - "end": { - "$date": "2021-08-14T07:22:50.000Z" - }, - "events": [ - { - "uuid": "c1840910-df46-425e-bacc-5c90adbbefbc", - "start": { - "$date": "2021-08-14T06:45:14.000Z" - }, - "end": { - "$date": "2021-08-14T07:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "124b7397-731d-4bcd-af8b-16f26db97875", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-14T06:50:59.000Z" - }, - "end": { - "$date": "2021-08-14T06:52:19.000Z" - }, - "events": [ - { - "uuid": "63035ef1-0e65-4c8f-b022-8695fbfc027b", - "start": { - "$date": "2021-08-14T06:50:59.000Z" - }, - "end": { - "$date": "2021-08-14T06:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e07e2e0-56d2-40e0-9207-0e9cb6325cf3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-14T07:32:46.000Z" - }, - "end": { - "$date": "2021-08-14T08:03:52.000Z" - }, - "events": [ - { - "uuid": "2ce6e2bb-2840-4ddb-ace7-16056f208922", - "start": { - "$date": "2021-08-14T07:32:46.000Z" - }, - "end": { - "$date": "2021-08-14T08:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "80e14b1b-6b26-4eda-bd51-d8769488e735", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T14:01:28.000Z" - }, - "end": { - "$date": "2021-08-14T17:25:26.000Z" - }, - "events": [ - { - "uuid": "609cb2bd-ac86-4efb-b901-124caf90758e", - "start": { - "$date": "2021-08-14T14:01:28.000Z" - }, - "end": { - "$date": "2021-08-14T17:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8807590f-3192-4e15-91ad-7a6f59cbd541", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T16:38:15.000Z" - }, - "end": { - "$date": "2021-08-14T17:33:02.000Z" - }, - "events": [ - { - "uuid": "073dfe86-bd24-4a8f-b36e-91da18357de0", - "start": { - "$date": "2021-08-14T16:38:15.000Z" - }, - "end": { - "$date": "2021-08-14T16:53:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46ced2b0-af28-4538-82b9-62468004566c", - "start": { - "$date": "2021-08-14T16:53:15.000Z" - }, - "end": { - "$date": "2021-08-14T17:01:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7ef109f3-11f4-43dc-87de-2cf2ebe98131", - "start": { - "$date": "2021-08-14T17:01:15.000Z" - }, - "end": { - "$date": "2021-08-14T17:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e7985900-4007-48b5-bcdc-eb97b2bf4956", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-14T17:40:23.000Z" - }, - "end": { - "$date": "2021-08-14T17:52:19.000Z" - }, - "events": [ - { - "uuid": "4f2df02c-f4c7-4828-85f4-457adb8cf76f", - "start": { - "$date": "2021-08-14T17:40:23.000Z" - }, - "end": { - "$date": "2021-08-14T17:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f81649a7-68b4-4790-ae39-ff05a7d61727", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T18:34:09.000Z" - }, - "end": { - "$date": "2021-08-14T19:01:39.000Z" - }, - "events": [ - { - "uuid": "6818cdc0-e0b2-46b4-a216-a24f03139daf", - "start": { - "$date": "2021-08-14T18:34:09.000Z" - }, - "end": { - "$date": "2021-08-14T19:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "26849b2d-5811-4139-af89-22a0e35daa37", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-14T19:00:59.000Z" - }, - "end": { - "$date": "2021-08-14T19:02:24.000Z" - }, - "events": [ - { - "uuid": "1c4ea6d9-7129-4fb8-9c9c-524a481a55a2", - "start": { - "$date": "2021-08-14T19:00:59.000Z" - }, - "end": { - "$date": "2021-08-14T19:02:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "cb1f44e4-407c-4800-804f-cf5fa92b61c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T19:11:26.000Z" - }, - "end": { - "$date": "2021-08-14T19:13:46.000Z" - }, - "events": [ - { - "uuid": "4835c923-7d42-4b13-9434-101bb70d03fd", - "start": { - "$date": "2021-08-14T19:11:26.000Z" - }, - "end": { - "$date": "2021-08-14T19:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "fc2bcfe9-4171-41f3-84ab-da660a47f687", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-14T19:33:34.000Z" - }, - "end": { - "$date": "2021-08-14T20:21:04.000Z" - }, - "events": [ - { - "uuid": "11bf7fb3-a86c-4d71-a0c1-d486d737dd39", - "start": { - "$date": "2021-08-14T19:33:34.000Z" - }, - "end": { - "$date": "2021-08-14T20:21:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b5b4d746-38be-4e47-a2e8-2c5511a342e4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T20:32:35.000Z" - }, - "end": { - "$date": "2021-08-14T20:53:41.000Z" - }, - "events": [ - { - "uuid": "bf5cd8e3-9e96-4742-a09d-b200f72f3c93", - "start": { - "$date": "2021-08-14T20:32:35.000Z" - }, - "end": { - "$date": "2021-08-14T20:53:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "406fb482-ffbc-485b-b512-a7450750365d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-14T20:38:02.000Z" - }, - "end": { - "$date": "2021-08-14T20:46:37.000Z" - }, - "events": [ - { - "uuid": "e78ba703-5936-41ec-b80a-3e07c95e2406", - "start": { - "$date": "2021-08-14T20:38:02.000Z" - }, - "end": { - "$date": "2021-08-14T20:46:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8626fe98-8835-4028-a5dd-5aecdbb5557a", - "uuid": "41b4facb-8a90-4d35-b648-6971c0a6a49c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-14T20:41:58.000Z" - }, - "end": { - "$date": "2021-08-14T23:07:09.000Z" - }, - "events": [ - { - "uuid": "b092189f-f60e-4af2-9094-3f06ff31045f", - "start": { - "$date": "2021-08-14T20:41:58.000Z" - }, - "end": { - "$date": "2021-08-14T23:07:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "8bed9026-b7ec-4c19-874d-ce1949b822b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-14T20:46:43.000Z" - }, - "end": { - "$date": "2021-08-14T21:07:15.000Z" - }, - "events": [ - { - "uuid": "5486624e-7bfd-4998-928e-910ab131ef30", - "start": { - "$date": "2021-08-14T20:46:43.000Z" - }, - "end": { - "$date": "2021-08-14T21:07:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "6da121a5-d30d-4b36-8244-c717e22aa4ee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-14T20:54:10.000Z" - }, - "end": { - "$date": "2021-08-15T03:55:24.000Z" - }, - "events": [ - { - "uuid": "84569736-1a03-4d0a-bfd7-17302b255b4d", - "start": { - "$date": "2021-08-14T20:54:10.000Z" - }, - "end": { - "$date": "2021-08-14T21:43:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3820425-2d45-4fcd-a3f5-58f1136763b9", - "start": { - "$date": "2021-08-14T21:43:10.000Z" - }, - "end": { - "$date": "2021-08-14T21:48:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a44281c-36d7-4e38-843b-d1d0577f9989", - "start": { - "$date": "2021-08-14T21:48:10.000Z" - }, - "end": { - "$date": "2021-08-14T21:58:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "326b56d6-b3cb-469d-a2f1-44a07fa7752c", - "start": { - "$date": "2021-08-14T21:58:10.000Z" - }, - "end": { - "$date": "2021-08-14T22:16:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f926ddbd-39ae-4845-ba67-4de675052c61", - "start": { - "$date": "2021-08-14T22:16:10.000Z" - }, - "end": { - "$date": "2021-08-14T22:26:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d06da001-7ad7-4cb5-9043-69bef126f850", - "start": { - "$date": "2021-08-14T22:26:10.000Z" - }, - "end": { - "$date": "2021-08-14T22:40:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca287c91-4e3e-492a-ac74-73c217738d2e", - "start": { - "$date": "2021-08-14T22:40:10.000Z" - }, - "end": { - "$date": "2021-08-14T23:33:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c012732f-2aa3-4e45-b6d5-704cbd8c5fd0", - "start": { - "$date": "2021-08-14T23:33:10.000Z" - }, - "end": { - "$date": "2021-08-14T23:37:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44696448-72c0-4d59-a9ad-5af120a2e138", - "start": { - "$date": "2021-08-14T23:37:10.000Z" - }, - "end": { - "$date": "2021-08-15T02:11:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3ca8c5a5-1064-44d7-814e-3c8e18168311", - "start": { - "$date": "2021-08-15T02:11:10.000Z" - }, - "end": { - "$date": "2021-08-15T02:15:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f72464d-d5e6-4770-b478-4ae38c2d9188", - "start": { - "$date": "2021-08-15T02:15:10.000Z" - }, - "end": { - "$date": "2021-08-15T02:25:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "177fae49-ab79-4776-a3f4-e1b3627878af", - "start": { - "$date": "2021-08-15T02:25:10.000Z" - }, - "end": { - "$date": "2021-08-15T02:28:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "044f97d0-cdb0-4837-b25c-c4363f08358b", - "start": { - "$date": "2021-08-15T02:28:10.000Z" - }, - "end": { - "$date": "2021-08-15T02:32:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7d75eab-a1ad-4e23-b542-7fe3b035633e", - "start": { - "$date": "2021-08-15T02:32:10.000Z" - }, - "end": { - "$date": "2021-08-15T03:51:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c037c2ab-a356-41f8-88f9-e3cea5b6ca55", - "start": { - "$date": "2021-08-15T03:51:10.000Z" - }, - "end": { - "$date": "2021-08-15T03:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ef204944-02c5-4b4f-99c8-2b6b70710afa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-14T22:21:46.000Z" - }, - "end": { - "$date": "2021-08-15T05:08:41.000Z" - }, - "events": [ - { - "uuid": "fe490d60-7e13-4e55-8b29-56870bb8f9f0", - "start": { - "$date": "2021-08-14T22:21:46.000Z" - }, - "end": { - "$date": "2021-08-15T05:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8626fe98-8835-4028-a5dd-5aecdbb5557a", - "uuid": "64994815-be57-4633-b22c-d485f41dccaf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-14T23:07:34.000Z" - }, - "end": { - "$date": "2021-08-14T23:53:20.000Z" - }, - "events": [ - { - "uuid": "5704a7f5-d4b0-43be-a2ed-c1545006c33e", - "start": { - "$date": "2021-08-14T23:07:34.000Z" - }, - "end": { - "$date": "2021-08-14T23:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fc587fc2-abef-4058-8d8b-8f1e2eae90d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-15T00:35:32.000Z" - }, - "end": { - "$date": "2021-08-15T01:20:02.000Z" - }, - "events": [ - { - "uuid": "c03ad917-a1e7-4827-8b54-fe65aaff8a63", - "start": { - "$date": "2021-08-15T00:35:32.000Z" - }, - "end": { - "$date": "2021-08-15T01:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "38b8552a-e7ad-479a-b23d-d40a98008224", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-15T01:17:53.000Z" - }, - "end": { - "$date": "2021-08-15T02:01:44.000Z" - }, - "events": [ - { - "uuid": "aeaf7325-d27f-466b-96a7-6137e21413ff", - "start": { - "$date": "2021-08-15T01:17:53.000Z" - }, - "end": { - "$date": "2021-08-15T02:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "02d7db8c-5361-4ac8-939d-7ba430788ae0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-15T02:10:10.000Z" - }, - "end": { - "$date": "2021-08-15T06:43:56.000Z" - }, - "events": [ - { - "uuid": "2c61c5e9-6424-44be-8743-9632fbbdb8fd", - "start": { - "$date": "2021-08-15T02:10:10.000Z" - }, - "end": { - "$date": "2021-08-15T06:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9f5a6cd4-3bb3-409d-b252-c3b056e8ec8a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T03:55:54.000Z" - }, - "end": { - "$date": "2021-08-15T03:57:10.000Z" - }, - "events": [ - { - "uuid": "bfaff390-6531-48c0-a46e-70e02634fe1d", - "start": { - "$date": "2021-08-15T03:55:54.000Z" - }, - "end": { - "$date": "2021-08-15T03:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "318088b1-7efc-41a4-aee8-6382377079b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T03:58:25.000Z" - }, - "end": { - "$date": "2021-08-15T03:59:45.000Z" - }, - "events": [ - { - "uuid": "6ad23bc2-e0a4-44c0-88a2-9b675c2c6145", - "start": { - "$date": "2021-08-15T03:58:25.000Z" - }, - "end": { - "$date": "2021-08-15T03:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a03277b-2e02-4144-9d9a-2acec2093ba7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-15T04:13:33.000Z" - }, - "end": { - "$date": "2021-08-15T04:48:43.000Z" - }, - "events": [ - { - "uuid": "557b5d01-5725-4232-a846-8a2ed24af2b9", - "start": { - "$date": "2021-08-15T04:13:33.000Z" - }, - "end": { - "$date": "2021-08-15T04:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8bc00828-82ef-4cfe-8d6b-3e9ee0638692", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T04:13:57.000Z" - }, - "end": { - "$date": "2021-08-15T04:48:43.000Z" - }, - "events": [ - { - "uuid": "a2cffc52-329f-45f6-8692-ecb9911d8ef3", - "start": { - "$date": "2021-08-15T04:13:57.000Z" - }, - "end": { - "$date": "2021-08-15T04:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fdb33703-6ebd-4bb6-8097-928d92e04770", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-15T04:28:25.000Z" - }, - "end": { - "$date": "2021-08-15T08:48:27.000Z" - }, - "events": [ - { - "uuid": "044fb8b7-14d9-4996-88d4-b23003d1bea3", - "start": { - "$date": "2021-08-15T04:28:25.000Z" - }, - "end": { - "$date": "2021-08-15T08:48:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bd37aa79-bcdf-4aa1-9a44-b1dc459e55ab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-15T04:45:38.000Z" - }, - "end": { - "$date": "2021-08-15T04:47:40.000Z" - }, - "events": [ - { - "uuid": "6c001909-a234-4e6e-a9f2-21c2c3543c37", - "start": { - "$date": "2021-08-15T04:45:38.000Z" - }, - "end": { - "$date": "2021-08-15T04:47:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "87faf8f2-040b-462f-aa99-61f09072aea0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-15T04:47:54.000Z" - }, - "end": { - "$date": "2021-08-15T05:52:35.000Z" - }, - "events": [ - { - "uuid": "f8f51f65-f63e-4dbb-a911-eb164d98bace", - "start": { - "$date": "2021-08-15T04:47:54.000Z" - }, - "end": { - "$date": "2021-08-15T05:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "36554604-9efa-4a9c-bc03-d0765cd47eac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T04:48:58.000Z" - }, - "end": { - "$date": "2021-08-15T05:59:10.000Z" - }, - "events": [ - { - "uuid": "24a252c8-3ede-47c0-8f5e-2c56bad1a257", - "start": { - "$date": "2021-08-15T04:48:58.000Z" - }, - "end": { - "$date": "2021-08-15T05:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "713af44c-4d7f-4959-8e8f-6c7654404243", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-15T04:49:03.000Z" - }, - "end": { - "$date": "2021-08-15T05:52:24.000Z" - }, - "events": [ - { - "uuid": "24718d05-ff47-4c45-99d6-2481b25593d5", - "start": { - "$date": "2021-08-15T04:49:03.000Z" - }, - "end": { - "$date": "2021-08-15T05:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1249e1bb-35c8-4697-942f-1ffb3a901fbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T04:54:30.000Z" - }, - "end": { - "$date": "2021-08-15T05:23:15.000Z" - }, - "events": [ - { - "uuid": "a9176bb0-e420-44ff-a89b-29d7076fc8d0", - "start": { - "$date": "2021-08-15T04:54:30.000Z" - }, - "end": { - "$date": "2021-08-15T05:23:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f325061-0165-43ed-b59e-9c589f70cd16", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-15T05:08:53.000Z" - }, - "end": { - "$date": "2021-08-15T06:23:20.000Z" - }, - "events": [ - { - "uuid": "5141db97-b919-4825-bace-feb6474546ea", - "start": { - "$date": "2021-08-15T05:08:53.000Z" - }, - "end": { - "$date": "2021-08-15T06:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "df4a4628-5693-46ae-95d2-508dc6c095a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-15T05:27:08.000Z" - }, - "end": { - "$date": "2021-08-15T06:18:43.000Z" - }, - "events": [ - { - "uuid": "64fd6d8f-f04b-4f52-9c6b-882071435c1c", - "start": { - "$date": "2021-08-15T05:27:08.000Z" - }, - "end": { - "$date": "2021-08-15T06:18:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f0387817-3d81-4d09-9346-1de56475ea4f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-15T06:08:49.000Z" - }, - "end": { - "$date": "2021-08-15T07:07:59.000Z" - }, - "events": [ - { - "uuid": "03fa3200-51c7-4dcc-9b60-e7c2c17eb051", - "start": { - "$date": "2021-08-15T06:08:49.000Z" - }, - "end": { - "$date": "2021-08-15T07:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "a8654e83-b4fe-4d91-aeae-a6632e20a884", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T06:13:27.000Z" - }, - "end": { - "$date": "2021-08-15T06:59:11.000Z" - }, - "events": [ - { - "uuid": "0dbae8d9-f075-4122-b8b0-2cdc108a8549", - "start": { - "$date": "2021-08-15T06:13:27.000Z" - }, - "end": { - "$date": "2021-08-15T06:37:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8cccca40-aaf1-4821-80f1-66a2349ced7d", - "start": { - "$date": "2021-08-15T06:37:27.000Z" - }, - "end": { - "$date": "2021-08-15T06:42:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b748a533-41ce-4ffc-804c-65abe2e84d9c", - "start": { - "$date": "2021-08-15T06:42:27.000Z" - }, - "end": { - "$date": "2021-08-15T06:52:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db3ca6a5-9f9c-4b2e-8be1-4f43cf03a782", - "start": { - "$date": "2021-08-15T06:52:27.000Z" - }, - "end": { - "$date": "2021-08-15T06:54:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b7450f70-9734-46da-b22f-830f09376e29", - "start": { - "$date": "2021-08-15T06:54:27.000Z" - }, - "end": { - "$date": "2021-08-15T06:59:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "3e9b38e0-634a-4fd9-81d9-d3dd0f177dd1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-15T06:34:35.000Z" - }, - "end": { - "$date": "2021-08-15T07:16:11.000Z" - }, - "events": [ - { - "uuid": "83ca4c88-dee6-417a-8128-e4d946f5c7cf", - "start": { - "$date": "2021-08-15T06:34:35.000Z" - }, - "end": { - "$date": "2021-08-15T07:16:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8c42274-d62a-4455-afb5-252bc4f655e2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-15T07:50:37.000Z" - }, - "end": { - "$date": "2021-08-15T08:23:39.000Z" - }, - "events": [ - { - "uuid": "3bda2fec-9852-49db-8b15-887945804b4e", - "start": { - "$date": "2021-08-15T07:50:37.000Z" - }, - "end": { - "$date": "2021-08-15T08:23:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18946cfb-b013-40f1-962b-a18385b51fe5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-15T08:32:09.000Z" - }, - "end": { - "$date": "2021-08-15T09:00:12.000Z" - }, - "events": [ - { - "uuid": "67976c40-5f0b-4bc9-9245-93d6a4c9413b", - "start": { - "$date": "2021-08-15T08:32:09.000Z" - }, - "end": { - "$date": "2021-08-15T09:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "fa4febe0-ba02-4434-b37e-96eb1da631a8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-15T14:11:24.000Z" - }, - "end": { - "$date": "2021-08-15T14:56:14.000Z" - }, - "events": [ - { - "uuid": "388182b7-9f4b-402d-9608-910bad676677", - "start": { - "$date": "2021-08-15T14:11:24.000Z" - }, - "end": { - "$date": "2021-08-15T14:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "95fc7065-bfb3-4b59-aa35-85c7b44d3696", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T15:08:25.000Z" - }, - "end": { - "$date": "2021-08-15T15:32:46.000Z" - }, - "events": [ - { - "uuid": "52497846-5af3-4f81-a733-b5d83997caf2", - "start": { - "$date": "2021-08-15T15:08:25.000Z" - }, - "end": { - "$date": "2021-08-15T15:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bd282bb1-b7d1-4364-8440-c2e2773aa5c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T15:33:30.000Z" - }, - "end": { - "$date": "2021-08-15T16:25:53.000Z" - }, - "events": [ - { - "uuid": "844a4867-c9b6-46f8-88a6-fc74fa8b3944", - "start": { - "$date": "2021-08-15T15:33:30.000Z" - }, - "end": { - "$date": "2021-08-15T16:25:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc761a20-7839-45be-b533-386c86e2a2a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T15:53:58.000Z" - }, - "end": { - "$date": "2021-08-15T16:17:37.000Z" - }, - "events": [ - { - "uuid": "5187cd1e-5360-4ce3-9e57-4fec7e9198e5", - "start": { - "$date": "2021-08-15T15:53:58.000Z" - }, - "end": { - "$date": "2021-08-15T16:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19ceff99-5192-4415-97d2-bf128687abb7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-15T15:54:23.000Z" - }, - "end": { - "$date": "2021-08-15T16:17:43.000Z" - }, - "events": [ - { - "uuid": "d85d8cd6-2e6c-4c83-9447-a49251746bfe", - "start": { - "$date": "2021-08-15T15:54:23.000Z" - }, - "end": { - "$date": "2021-08-15T16:17:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ced391cf-1f88-41f3-b06d-c0fdfe19cf0d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T16:27:19.000Z" - }, - "end": { - "$date": "2021-08-15T17:03:13.000Z" - }, - "events": [ - { - "uuid": "6134c8cd-1cd6-4f76-ba08-6cedaabc2f60", - "start": { - "$date": "2021-08-15T16:27:19.000Z" - }, - "end": { - "$date": "2021-08-15T17:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0593b2b7-2ec6-4982-b75f-c72ba0306cdc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-15T16:19:44.000Z" - }, - "end": { - "$date": "2021-08-15T16:22:48.000Z" - }, - "events": [ - { - "uuid": "60d5c2b9-01cd-43e7-82d7-abf51d6293b8", - "start": { - "$date": "2021-08-15T16:19:44.000Z" - }, - "end": { - "$date": "2021-08-15T16:22:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18f1cc98-e9c9-4a5e-91ae-c8b84397d023", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-15T16:27:19.000Z" - }, - "end": { - "$date": "2021-08-15T17:03:18.000Z" - }, - "events": [ - { - "uuid": "02ddbcba-100d-43a0-9045-08c78b93fb98", - "start": { - "$date": "2021-08-15T16:27:19.000Z" - }, - "end": { - "$date": "2021-08-15T17:03:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "dbd3ac1b-4feb-45dc-8353-90c46408c21b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T16:53:56.000Z" - }, - "end": { - "$date": "2021-08-15T17:52:33.000Z" - }, - "events": [ - { - "uuid": "8d626849-0d56-4643-90e4-260d8f86f074", - "start": { - "$date": "2021-08-15T16:53:56.000Z" - }, - "end": { - "$date": "2021-08-15T17:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "861e8516-d522-4ae2-8bcc-cb4a8e10cc89", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-15T17:03:29.000Z" - }, - "end": { - "$date": "2021-08-15T17:45:59.000Z" - }, - "events": [ - { - "uuid": "05016940-273b-4d87-8665-d8c13cabc352", - "start": { - "$date": "2021-08-15T17:03:29.000Z" - }, - "end": { - "$date": "2021-08-15T17:45:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98e177b6-a92c-4b7d-af19-40fe2351935b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T17:03:40.000Z" - }, - "end": { - "$date": "2021-08-15T19:00:02.000Z" - }, - "events": [ - { - "uuid": "6717fad7-7d3b-4020-95e5-898c82584303", - "start": { - "$date": "2021-08-15T17:03:40.000Z" - }, - "end": { - "$date": "2021-08-15T18:35:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7b0b8644-8d63-40e2-93bb-1c30e65c1444", - "start": { - "$date": "2021-08-15T18:35:40.000Z" - }, - "end": { - "$date": "2021-08-15T18:36:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03e727bc-03fa-4075-b8de-9e8434ecec3e", - "start": { - "$date": "2021-08-15T18:36:40.000Z" - }, - "end": { - "$date": "2021-08-15T19:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "96b69b3c-0686-46b6-8382-251e573213e2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-15T18:56:47.000Z" - }, - "end": { - "$date": "2021-08-15T20:33:49.000Z" - }, - "events": [ - { - "uuid": "e76d288c-651f-4720-b114-aee5775719ae", - "start": { - "$date": "2021-08-15T18:56:47.000Z" - }, - "end": { - "$date": "2021-08-15T20:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2fd053e1-4117-4c26-8119-a7c21411fd12", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-15T18:52:18.000Z" - }, - "end": { - "$date": "2021-08-15T18:52:23.000Z" - }, - "events": [ - { - "uuid": "7b515c71-a941-4796-a927-b764467f196c", - "start": { - "$date": "2021-08-15T18:52:18.000Z" - }, - "end": { - "$date": "2021-08-15T19:43:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "088b2b04-3cea-4afe-b205-b96b84e01f35", - "start": { - "$date": "2021-08-15T19:43:18.000Z" - }, - "end": { - "$date": "2021-08-15T19:46:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70842b08-8424-4ad3-825e-2e88c6dfbefd", - "start": { - "$date": "2021-08-15T19:46:18.000Z" - }, - "end": { - "$date": "2021-08-15T18:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0ffacc92-bfd7-4760-91b3-188ab563d91f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-15T19:28:43.000Z" - }, - "end": { - "$date": "2021-08-15T20:33:30.000Z" - }, - "events": [ - { - "uuid": "961ba266-2921-4f79-8de3-e218fe740888", - "start": { - "$date": "2021-08-15T19:28:43.000Z" - }, - "end": { - "$date": "2021-08-15T20:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee291bd9-f675-4979-9ce2-f825b828a6cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T20:15:52.000Z" - }, - "end": { - "$date": "2021-08-15T20:44:27.000Z" - }, - "events": [ - { - "uuid": "04bf8c08-682f-454e-b515-dd17404f4f65", - "start": { - "$date": "2021-08-15T20:15:52.000Z" - }, - "end": { - "$date": "2021-08-15T20:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "820f655b-1b8b-43b4-88b1-a1837a278ad9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T21:32:21.000Z" - }, - "end": { - "$date": "2021-08-15T22:24:27.000Z" - }, - "events": [ - { - "uuid": "58ab6d20-3db4-4ac7-82d0-8f1ebc7e60ff", - "start": { - "$date": "2021-08-15T21:32:21.000Z" - }, - "end": { - "$date": "2021-08-15T22:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b30e7aed-3951-47ae-8df3-1668f539071f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-15T22:13:24.000Z" - }, - "end": { - "$date": "2021-08-15T22:32:23.000Z" - }, - "events": [ - { - "uuid": "3acb3cf0-9a8c-45d9-a2cb-7ae5f45da8c8", - "start": { - "$date": "2021-08-15T22:13:24.000Z" - }, - "end": { - "$date": "2021-08-15T22:32:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dfe95657-72fb-4ca7-84b3-6411ccb45196", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-15T22:44:21.000Z" - }, - "end": { - "$date": "2021-08-16T01:51:38.000Z" - }, - "events": [ - { - "uuid": "7555cf0e-bb73-41ce-9733-e08edba743c4", - "start": { - "$date": "2021-08-15T22:44:21.000Z" - }, - "end": { - "$date": "2021-08-16T01:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "033d4724-2e03-4f13-9cbb-f6a7fdf2ca9b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-15T22:58:56.000Z" - }, - "end": { - "$date": "2021-08-16T01:21:58.000Z" - }, - "events": [ - { - "uuid": "42237a07-9f8e-4f44-815d-dac9da007ddc", - "start": { - "$date": "2021-08-15T22:58:56.000Z" - }, - "end": { - "$date": "2021-08-16T01:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3a149649-4c80-4804-b972-f2e55757466c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-15T22:03:01.000Z" - }, - "end": { - "$date": "2021-08-16T05:43:36.000Z" - }, - "events": [ - { - "uuid": "804c0b04-ea8a-491b-b485-6848b6634b55", - "start": { - "$date": "2021-08-15T22:03:01.000Z" - }, - "end": { - "$date": "2021-08-16T05:43:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1fbd2dc-d33a-43e8-b4bf-cb28a40fab58", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T23:15:48.000Z" - }, - "end": { - "$date": "2021-08-15T23:46:07.000Z" - }, - "events": [ - { - "uuid": "dd57685b-4969-4c20-b382-2f3508a1e29f", - "start": { - "$date": "2021-08-15T23:15:48.000Z" - }, - "end": { - "$date": "2021-08-15T23:46:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d23b1452-ba56-4e4e-a9ce-8915712ebf93", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-15T23:49:08.000Z" - }, - "end": { - "$date": "2021-08-16T00:06:23.000Z" - }, - "events": [ - { - "uuid": "27c6a79d-2f14-49c1-ab88-06b50c66372d", - "start": { - "$date": "2021-08-15T23:49:08.000Z" - }, - "end": { - "$date": "2021-08-16T00:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d2774df-64be-4f21-afd0-1b8b45e9e901", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T00:06:33.000Z" - }, - "end": { - "$date": "2021-08-16T00:07:35.000Z" - }, - "events": [ - { - "uuid": "01b8f4f7-6dff-4a92-88e3-4bce8d3d1d10", - "start": { - "$date": "2021-08-16T00:06:33.000Z" - }, - "end": { - "$date": "2021-08-16T00:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "333fb469-28cf-46c1-b795-da65b1066058", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-08-16T00:56:28.000Z" - }, - "end": { - "$date": "2021-08-16T00:59:22.000Z" - }, - "events": [ - { - "uuid": "2db370c9-8cce-43dc-88f4-b161ded1b632", - "start": { - "$date": "2021-08-16T00:56:28.000Z" - }, - "end": { - "$date": "2021-08-16T00:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "eb135b47-bcb8-436e-9468-25e8100a916d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T01:13:27.000Z" - }, - "end": { - "$date": "2021-08-16T02:10:39.000Z" - }, - "events": [ - { - "uuid": "854a2153-69e7-4a02-aa84-e82db24d6bd7", - "start": { - "$date": "2021-08-16T01:13:27.000Z" - }, - "end": { - "$date": "2021-08-16T02:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "6e8ab08c-f5ba-4f4a-b429-e041dfe01bb8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T01:14:35.000Z" - }, - "end": { - "$date": "2021-08-16T01:27:26.000Z" - }, - "events": [ - { - "uuid": "89ded4b2-e7a1-4eba-beb3-2b37c2d8439a", - "start": { - "$date": "2021-08-16T01:14:35.000Z" - }, - "end": { - "$date": "2021-08-16T01:27:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "65ef5805-5c46-44e5-971a-b10c3e432fa6", - "uuid": "4d4ad6b6-1f24-4b7b-8023-207edbe04f5a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-16T01:47:57.000Z" - }, - "end": { - "$date": "2021-08-16T09:57:56.000Z" - }, - "events": [ - { - "uuid": "1592d7d5-39e0-433a-9dea-614e7de5a2b7", - "start": { - "$date": "2021-08-16T01:47:57.000Z" - }, - "end": { - "$date": "2021-08-16T09:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b2226285-edf5-4902-9d2e-736d5661c294", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-16T01:53:46.000Z" - }, - "end": { - "$date": "2021-08-16T04:14:35.000Z" - }, - "events": [ - { - "uuid": "ca19c3e7-f4e6-464d-96b8-9823178f4fe1", - "start": { - "$date": "2021-08-16T01:53:46.000Z" - }, - "end": { - "$date": "2021-08-16T04:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "5fbd2338-1b89-418a-8c8d-697c01260123", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T02:24:34.000Z" - }, - "end": { - "$date": "2021-08-16T03:09:34.000Z" - }, - "events": [ - { - "uuid": "050efec8-4caa-41ec-9c01-5123f82fe562", - "start": { - "$date": "2021-08-16T02:24:34.000Z" - }, - "end": { - "$date": "2021-08-16T03:09:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a01a4c25-6526-428e-9558-c2a6703b1815", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-16T02:50:55.000Z" - }, - "end": { - "$date": "2021-08-16T04:18:17.000Z" - }, - "events": [ - { - "uuid": "45131923-fa8d-438f-a622-ce8b02b783b4", - "start": { - "$date": "2021-08-16T02:50:55.000Z" - }, - "end": { - "$date": "2021-08-16T04:18:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "62064401-5f8b-478d-a588-2c9ed99cb833", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T03:09:39.000Z" - }, - "end": { - "$date": "2021-08-16T03:55:10.000Z" - }, - "events": [ - { - "uuid": "5b18a89b-d2af-4c41-8079-e0de23164afe", - "start": { - "$date": "2021-08-16T03:09:39.000Z" - }, - "end": { - "$date": "2021-08-16T03:55:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "470eacc1-9ba9-4238-8faa-cfc0c69689e6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-16T04:00:23.000Z" - }, - "end": { - "$date": "2021-08-16T04:03:35.000Z" - }, - "events": [ - { - "uuid": "647086c4-f916-4511-b2ae-1838aa9ada1e", - "start": { - "$date": "2021-08-16T04:00:23.000Z" - }, - "end": { - "$date": "2021-08-16T04:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71077aa1-59fd-426a-9222-e40c958640e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T03:59:15.000Z" - }, - "end": { - "$date": "2021-08-16T04:45:59.000Z" - }, - "events": [ - { - "uuid": "611135ee-d466-4771-8c9e-b6a37e5e5802", - "start": { - "$date": "2021-08-16T03:59:15.000Z" - }, - "end": { - "$date": "2021-08-16T04:45:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "8306f2d1-ef5f-4faa-bb18-8b19cbadb63b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T03:59:51.000Z" - }, - "end": { - "$date": "2021-08-16T05:40:08.000Z" - }, - "events": [ - { - "uuid": "722b5419-d3b7-47cd-a093-f620c5625b8d", - "start": { - "$date": "2021-08-16T03:59:51.000Z" - }, - "end": { - "$date": "2021-08-16T05:40:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faa10430-7cab-4dc0-941c-8d576c0389fc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-16T04:11:58.000Z" - }, - "end": { - "$date": "2021-08-16T04:41:36.000Z" - }, - "events": [ - { - "uuid": "bf7fcb01-5465-4f9e-ad59-b33cdd9e55ff", - "start": { - "$date": "2021-08-16T04:11:58.000Z" - }, - "end": { - "$date": "2021-08-16T04:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bab2f569-b591-4f65-8f1a-ded4f84dc6d8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-16T04:18:51.000Z" - }, - "end": { - "$date": "2021-08-16T05:05:39.000Z" - }, - "events": [ - { - "uuid": "b6c43fc9-b31c-4cba-b3de-21b59b41254a", - "start": { - "$date": "2021-08-16T04:18:51.000Z" - }, - "end": { - "$date": "2021-08-16T05:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "545ee3e7-7f3d-4879-ab27-b9216bbc40e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-16T04:22:09.000Z" - }, - "end": { - "$date": "2021-08-16T05:51:34.000Z" - }, - "events": [ - { - "uuid": "2844cda6-557c-4dce-a3e0-9dbd98f79513", - "start": { - "$date": "2021-08-16T04:22:09.000Z" - }, - "end": { - "$date": "2021-08-16T05:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "98f9def2-08d1-4be1-87fd-2e084f845e5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-16T04:40:05.000Z" - }, - "end": { - "$date": "2021-08-16T05:10:28.000Z" - }, - "events": [ - { - "uuid": "6c0985f5-ee55-44fb-8295-2c419c6c9c07", - "start": { - "$date": "2021-08-16T04:40:05.000Z" - }, - "end": { - "$date": "2021-08-16T05:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3833c8d5-0b0c-4472-8e86-35e29421599d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-16T04:48:46.000Z" - }, - "end": { - "$date": "2021-08-16T05:39:32.000Z" - }, - "events": [ - { - "uuid": "15e03b0d-f547-4124-ab6d-c1e6b0ac2bd0", - "start": { - "$date": "2021-08-16T04:48:46.000Z" - }, - "end": { - "$date": "2021-08-16T05:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c47c69e4-33d4-4136-a4f9-624d11032817", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-16T05:05:48.000Z" - }, - "end": { - "$date": "2021-08-16T05:08:19.000Z" - }, - "events": [ - { - "uuid": "d4f07981-b7c7-474a-a769-4f444164d32d", - "start": { - "$date": "2021-08-16T05:05:48.000Z" - }, - "end": { - "$date": "2021-08-16T05:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "753e1058-15eb-446b-aa55-c04be58f1702", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-16T05:09:48.000Z" - }, - "end": { - "$date": "2021-08-16T05:51:55.000Z" - }, - "events": [ - { - "uuid": "b46bc77d-8b47-427b-954f-ecfe52f4d36b", - "start": { - "$date": "2021-08-16T05:09:48.000Z" - }, - "end": { - "$date": "2021-08-16T05:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01c04032-9a59-4fa5-9832-1c0b8dd4de22", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-16T05:47:36.000Z" - }, - "end": { - "$date": "2021-08-16T06:18:08.000Z" - }, - "events": [ - { - "uuid": "ed1c7614-d51b-4d52-addf-94a9f6cb31fa", - "start": { - "$date": "2021-08-16T05:47:36.000Z" - }, - "end": { - "$date": "2021-08-16T06:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "959d86fa-1c11-473c-a054-c2cbd9e801b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-16T06:21:52.000Z" - }, - "end": { - "$date": "2021-08-16T06:45:26.000Z" - }, - "events": [ - { - "uuid": "b98264ed-70ec-4d8d-a5e6-c9b8f4129440", - "start": { - "$date": "2021-08-16T06:21:52.000Z" - }, - "end": { - "$date": "2021-08-16T06:45:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dffcbab-0034-40e9-9984-c1a0dd3f833c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-16T06:48:54.000Z" - }, - "end": { - "$date": "2021-08-16T07:11:41.000Z" - }, - "events": [ - { - "uuid": "4976c095-73a5-450f-a412-b0c38a7f5c37", - "start": { - "$date": "2021-08-16T06:48:54.000Z" - }, - "end": { - "$date": "2021-08-16T07:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "be5ef5a0-8753-4eec-ba29-5ec5aac475b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T15:09:23.000Z" - }, - "end": { - "$date": "2021-08-16T15:10:23.000Z" - }, - "events": [ - { - "uuid": "13fc7c93-ff32-4d64-a4be-7428af963b23", - "start": { - "$date": "2021-08-16T15:09:23.000Z" - }, - "end": { - "$date": "2021-08-16T15:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "771730df-5946-42af-bdf1-f8cfceb50394", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T15:10:33.000Z" - }, - "end": { - "$date": "2021-08-16T17:08:43.000Z" - }, - "events": [ - { - "uuid": "12760514-25fc-4268-aa0a-11c18ea68c47", - "start": { - "$date": "2021-08-16T15:10:33.000Z" - }, - "end": { - "$date": "2021-08-16T16:02:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a11b1cb-264b-4d80-bec2-92aed18c16c1", - "start": { - "$date": "2021-08-16T16:02:33.000Z" - }, - "end": { - "$date": "2021-08-16T16:03:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "29d2376f-184c-4a0d-a95a-909496be5f36", - "start": { - "$date": "2021-08-16T16:03:33.000Z" - }, - "end": { - "$date": "2021-08-16T17:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a54f6954-2597-4400-974d-f4c808f21e0f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-16T15:27:55.000Z" - }, - "end": { - "$date": "2021-08-16T17:05:09.000Z" - }, - "events": [ - { - "uuid": "de01e8dd-6dcb-4041-9be0-37bb5818daff", - "start": { - "$date": "2021-08-16T15:27:55.000Z" - }, - "end": { - "$date": "2021-08-16T17:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "ea63bc19-53d9-4e5e-8be2-6ad373f68cb1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T15:35:04.000Z" - }, - "end": { - "$date": "2021-08-16T15:42:01.000Z" - }, - "events": [ - { - "uuid": "1dac2ec6-66a0-427a-87a2-01c2626d61f6", - "start": { - "$date": "2021-08-16T15:35:04.000Z" - }, - "end": { - "$date": "2021-08-16T15:42:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f25940c2-ef6a-4ae3-9e6e-30a446a3b86c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-16T17:05:33.000Z" - }, - "end": { - "$date": "2021-08-16T17:16:20.000Z" - }, - "events": [ - { - "uuid": "227d4b35-d990-4a65-af5a-901e7fdebf1e", - "start": { - "$date": "2021-08-16T17:05:33.000Z" - }, - "end": { - "$date": "2021-08-16T17:16:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef388677-2e4d-479d-b095-e393e2fbc99e", - "uuid": "dd09e0f2-4d47-4e73-9294-98cbccee494c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-16T17:20:05.000Z" - }, - "end": { - "$date": "2021-08-16T18:15:23.000Z" - }, - "events": [ - { - "uuid": "d6ae7726-5a68-4be6-9a91-6ccdbb680892", - "start": { - "$date": "2021-08-16T17:20:05.000Z" - }, - "end": { - "$date": "2021-08-16T18:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab3ac8b6-00b4-4854-8ff2-06e78616a0ab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-16T18:02:22.000Z" - }, - "end": { - "$date": "2021-08-16T18:33:30.000Z" - }, - "events": [ - { - "uuid": "40baef49-e1c7-4771-a480-749fcc9eca97", - "start": { - "$date": "2021-08-16T18:02:22.000Z" - }, - "end": { - "$date": "2021-08-16T18:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0edca088-5a32-4d56-bb14-4da55f68b95b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T18:02:53.000Z" - }, - "end": { - "$date": "2021-08-16T18:33:18.000Z" - }, - "events": [ - { - "uuid": "64898e51-cbf9-4980-b3bc-a8f0d10b31e9", - "start": { - "$date": "2021-08-16T18:02:53.000Z" - }, - "end": { - "$date": "2021-08-16T18:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "d485db5f-9733-4e8b-a5f8-841b4ddf848b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T18:15:52.000Z" - }, - "end": { - "$date": "2021-08-16T18:18:33.000Z" - }, - "events": [ - { - "uuid": "479f341f-c67e-4d4b-a2ba-cffd8e71fe0d", - "start": { - "$date": "2021-08-16T18:15:52.000Z" - }, - "end": { - "$date": "2021-08-16T18:18:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2fc7c3ad-d530-4b47-a0a6-c079f9592c4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-16T18:39:34.000Z" - }, - "end": { - "$date": "2021-08-16T19:26:19.000Z" - }, - "events": [ - { - "uuid": "d94220e0-e117-4d4b-9a98-7e855f47669a", - "start": { - "$date": "2021-08-16T18:39:34.000Z" - }, - "end": { - "$date": "2021-08-16T19:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "b38e0ff3-c864-40e0-9075-e8628977f182", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-16T19:54:00.000Z" - }, - "end": { - "$date": "2021-08-16T21:24:46.000Z" - }, - "events": [ - { - "uuid": "bf1f2ed6-f71d-4428-b752-2d0a2a962ebc", - "start": { - "$date": "2021-08-16T19:54:00.000Z" - }, - "end": { - "$date": "2021-08-16T21:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4dafaca7-bba3-4396-8ad5-20ae9b22edf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T20:12:07.000Z" - }, - "end": { - "$date": "2021-08-16T21:38:40.000Z" - }, - "events": [ - { - "uuid": "4a0770de-e702-459e-ac06-2d07ecc2f852", - "start": { - "$date": "2021-08-16T20:12:07.000Z" - }, - "end": { - "$date": "2021-08-16T21:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "484f1999-4fef-4253-92e1-61e10d3b5a97", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-16T21:36:43.000Z" - }, - "end": { - "$date": "2021-08-16T22:14:34.000Z" - }, - "events": [ - { - "uuid": "c9f8e787-734b-4376-942b-71892829a06b", - "start": { - "$date": "2021-08-16T21:36:43.000Z" - }, - "end": { - "$date": "2021-08-16T22:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a7871e94-b68c-4c68-b57d-db2f0ccf91d0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-16T21:46:28.000Z" - }, - "end": { - "$date": "2021-08-16T21:48:05.000Z" - }, - "events": [ - { - "uuid": "9f9c11ce-df3e-4834-91b8-cc974f43d2ec", - "start": { - "$date": "2021-08-16T21:46:28.000Z" - }, - "end": { - "$date": "2021-08-16T21:48:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "86f3df1a-1c37-4706-bfc8-1dc665333fd1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-16T21:49:23.000Z" - }, - "end": { - "$date": "2021-08-16T22:07:37.000Z" - }, - "events": [ - { - "uuid": "391de04a-c841-45ed-a2da-46bc8fac6063", - "start": { - "$date": "2021-08-16T21:49:23.000Z" - }, - "end": { - "$date": "2021-08-16T22:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "37a7642c-7d41-45a6-be59-1dfeb2f6e3d4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-16T22:06:03.000Z" - }, - "end": { - "$date": "2021-08-16T22:53:02.000Z" - }, - "events": [ - { - "uuid": "22c4950a-0f7e-4b89-95c9-876a6f541b33", - "start": { - "$date": "2021-08-16T22:06:03.000Z" - }, - "end": { - "$date": "2021-08-16T22:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "63030127-ec32-4a05-b5a7-1139bebf1d61", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-16T22:28:25.000Z" - }, - "end": { - "$date": "2021-08-16T23:22:17.000Z" - }, - "events": [ - { - "uuid": "10ac07b4-0473-4338-a8ca-156cfb1feb8f", - "start": { - "$date": "2021-08-16T22:28:25.000Z" - }, - "end": { - "$date": "2021-08-16T23:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd77d947-f54b-48b4-95e0-27d9555ce0fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-16T23:15:40.000Z" - }, - "end": { - "$date": "2021-08-16T23:44:50.000Z" - }, - "events": [ - { - "uuid": "c63e025e-7df3-4d5f-98ec-e5cf14e0c05f", - "start": { - "$date": "2021-08-16T23:15:40.000Z" - }, - "end": { - "$date": "2021-08-16T23:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "45c35d8a-2736-4990-9cf0-9af19167383b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T23:25:17.000Z" - }, - "end": { - "$date": "2021-08-16T23:27:53.000Z" - }, - "events": [ - { - "uuid": "0c410d0f-e8d7-4392-a221-7ce67c0f6055", - "start": { - "$date": "2021-08-16T23:25:17.000Z" - }, - "end": { - "$date": "2021-08-16T23:27:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "3069b5a3-5e37-4005-af93-07d0140279c5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T23:30:13.000Z" - }, - "end": { - "$date": "2021-08-16T23:56:18.000Z" - }, - "events": [ - { - "uuid": "765336ea-8e9f-4b65-ac9a-d59834262ba7", - "start": { - "$date": "2021-08-16T23:30:13.000Z" - }, - "end": { - "$date": "2021-08-16T23:56:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "2e750d4d-e0ff-461d-8395-f87b99bce2e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-16T23:57:07.000Z" - }, - "end": { - "$date": "2021-08-17T00:33:07.000Z" - }, - "events": [ - { - "uuid": "16df0d8b-4155-488b-b51a-ef024b749530", - "start": { - "$date": "2021-08-16T23:57:07.000Z" - }, - "end": { - "$date": "2021-08-17T00:33:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "65ef5805-5c46-44e5-971a-b10c3e432fa6", - "uuid": "ec75eba3-f6a6-44e7-8229-5cae447ab1b1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-17T01:03:06.000Z" - }, - "end": { - "$date": "2021-08-17T01:22:32.000Z" - }, - "events": [ - { - "uuid": "361993d3-5094-416b-aed2-2f755cfcc27b", - "start": { - "$date": "2021-08-17T01:03:06.000Z" - }, - "end": { - "$date": "2021-08-17T01:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "64a511f2-1c0e-4994-9132-c3cfb83d5ffc", - "uuid": "2a74a9b6-d8f0-42d6-b0d2-c4e0a67a8d3d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-17T01:58:10.000Z" - }, - "end": { - "$date": "2021-08-17T03:22:30.000Z" - }, - "events": [ - { - "uuid": "0eca3810-151d-433b-93d4-e77f9cd51d55", - "start": { - "$date": "2021-08-17T01:58:10.000Z" - }, - "end": { - "$date": "2021-08-17T03:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "62442b80-f7f1-4432-be31-a308a68a730b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-17T02:21:06.000Z" - }, - "end": { - "$date": "2021-08-17T02:49:22.000Z" - }, - "events": [ - { - "uuid": "0853de6a-82b4-4b67-a371-76ae45596c6d", - "start": { - "$date": "2021-08-17T02:21:06.000Z" - }, - "end": { - "$date": "2021-08-17T02:49:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "10c4e0cd-5942-4017-9b4d-bc99240e0fbe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-17T02:26:04.000Z" - }, - "end": { - "$date": "2021-08-17T02:38:51.000Z" - }, - "events": [ - { - "uuid": "ad7665a6-6ef7-4582-b581-f7d0c44e05f7", - "start": { - "$date": "2021-08-17T02:26:04.000Z" - }, - "end": { - "$date": "2021-08-17T02:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6947e78c-5bea-49ae-9c4d-06e7901fac83", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-17T02:46:42.000Z" - }, - "end": { - "$date": "2021-08-17T04:32:57.000Z" - }, - "events": [ - { - "uuid": "3fed3a78-3439-4449-8cdc-7729b821e7a0", - "start": { - "$date": "2021-08-17T02:46:42.000Z" - }, - "end": { - "$date": "2021-08-17T04:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "93f28899-45ee-47f9-b453-fc8ffde21b6c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-17T02:51:41.000Z" - }, - "end": { - "$date": "2021-08-17T02:57:05.000Z" - }, - "events": [ - { - "uuid": "60995186-8e24-44b0-b730-c25a198fb826", - "start": { - "$date": "2021-08-17T02:51:41.000Z" - }, - "end": { - "$date": "2021-08-17T02:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "168f84a8-a039-41b6-9291-31b582b029b6", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-17T03:00:31.000Z" - }, - "end": { - "$date": "2021-08-17T03:06:58.000Z" - }, - "events": [ - { - "uuid": "a3230140-8cb8-4bb6-b52a-603c18c5aad3", - "start": { - "$date": "2021-08-17T03:00:31.000Z" - }, - "end": { - "$date": "2021-08-17T03:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "50cf1dd0-5357-45f6-80ce-488af8b0a3e4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-17T03:02:07.000Z" - }, - "end": { - "$date": "2021-08-17T04:42:28.000Z" - }, - "events": [ - { - "uuid": "51431805-c224-4438-9ada-9e03e90b8b3a", - "start": { - "$date": "2021-08-17T03:02:07.000Z" - }, - "end": { - "$date": "2021-08-17T04:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "21e5e47a-bdb1-41fe-b064-9095665ec03a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-17T03:03:09.000Z" - }, - "end": { - "$date": "2021-08-17T04:00:51.000Z" - }, - "events": [ - { - "uuid": "6ea350e8-8727-4a79-a329-a0e1eb58183f", - "start": { - "$date": "2021-08-17T03:03:09.000Z" - }, - "end": { - "$date": "2021-08-17T04:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "426139a3-b34c-4d55-a7bc-c575bd5fe9d4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-17T03:07:02.000Z" - }, - "end": { - "$date": "2021-08-17T04:19:53.000Z" - }, - "events": [ - { - "uuid": "c45649a1-f6b6-4a3a-9c6b-15805c912fb8", - "start": { - "$date": "2021-08-17T03:07:02.000Z" - }, - "end": { - "$date": "2021-08-17T04:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "64a511f2-1c0e-4994-9132-c3cfb83d5ffc", - "uuid": "13c1463a-5aaa-4f26-bbfb-2ad77758d000", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-17T03:24:10.000Z" - }, - "end": { - "$date": "2021-08-17T03:30:56.000Z" - }, - "events": [ - { - "uuid": "d9c15895-7133-4c1f-b820-526004f9d253", - "start": { - "$date": "2021-08-17T03:24:10.000Z" - }, - "end": { - "$date": "2021-08-17T03:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "ea3283ea-bfbe-4ad5-b8f6-84761689ce9c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-17T03:34:52.000Z" - }, - "end": { - "$date": "2021-08-17T04:00:33.000Z" - }, - "events": [ - { - "uuid": "5eeb458e-e21e-465a-9b19-11e54feae478", - "start": { - "$date": "2021-08-17T03:34:52.000Z" - }, - "end": { - "$date": "2021-08-17T04:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "36805553-ba92-44c2-b4c5-c598b5c500f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-17T03:45:47.000Z" - }, - "end": { - "$date": "2021-08-17T03:52:45.000Z" - }, - "events": [ - { - "uuid": "7cb5d7f6-7367-432b-9aba-d811bd2713a9", - "start": { - "$date": "2021-08-17T03:45:47.000Z" - }, - "end": { - "$date": "2021-08-17T03:52:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3f70847e-f8fa-4696-994f-5e74e4790b2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-17T03:56:19.000Z" - }, - "end": { - "$date": "2021-08-17T05:01:25.000Z" - }, - "events": [ - { - "uuid": "c5cd4391-a553-458c-a667-c8236c3a59f7", - "start": { - "$date": "2021-08-17T03:56:19.000Z" - }, - "end": { - "$date": "2021-08-17T05:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88b69dbc-e1d6-4828-87d3-97078e3fe40e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-17T05:02:54.000Z" - }, - "end": { - "$date": "2021-08-17T05:04:11.000Z" - }, - "events": [ - { - "uuid": "db0ab336-faa3-4013-ab94-d3c6c86329ae", - "start": { - "$date": "2021-08-17T05:02:54.000Z" - }, - "end": { - "$date": "2021-08-17T05:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0c22e917-24fe-4ebe-9784-6c229df23c76", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-17T04:48:13.000Z" - }, - "end": { - "$date": "2021-08-17T05:16:19.000Z" - }, - "events": [ - { - "uuid": "5689a7dd-731a-46c0-9b68-24a4f1d01f8f", - "start": { - "$date": "2021-08-17T04:48:13.000Z" - }, - "end": { - "$date": "2021-08-17T05:16:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7e975923-8c2d-4329-bc7d-7c0235060840", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-16T22:34:42.000Z" - }, - "end": { - "$date": "2021-08-17T05:41:34.000Z" - }, - "events": [ - { - "uuid": "e3467977-9a86-47e6-8307-4832d8b3b268", - "start": { - "$date": "2021-08-16T22:34:42.000Z" - }, - "end": { - "$date": "2021-08-17T05:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94023d62-0d22-468c-a32b-34c06de50387", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-17T05:09:22.000Z" - }, - "end": { - "$date": "2021-08-17T05:26:24.000Z" - }, - "events": [ - { - "uuid": "ee9114fc-c94a-4cca-9b22-1882ba88e759", - "start": { - "$date": "2021-08-17T05:09:22.000Z" - }, - "end": { - "$date": "2021-08-17T05:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4fb6f16e-93e4-42fd-88d5-195ce62abacc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-17T05:27:37.000Z" - }, - "end": { - "$date": "2021-08-17T06:17:07.000Z" - }, - "events": [ - { - "uuid": "b3d8f8e5-c5c2-465e-ace0-631cd30b19a7", - "start": { - "$date": "2021-08-17T05:27:37.000Z" - }, - "end": { - "$date": "2021-08-17T06:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "afd66a5a-eb50-49e4-aa54-6a7f5a4b05f7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-17T05:27:57.000Z" - }, - "end": { - "$date": "2021-08-17T05:35:08.000Z" - }, - "events": [ - { - "uuid": "ca8bc3b9-b683-4e68-a9f1-7c253e1506bc", - "start": { - "$date": "2021-08-17T05:27:57.000Z" - }, - "end": { - "$date": "2021-08-17T05:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "ea0b4e30-a87e-4714-af1f-1c1387e87386", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-17T05:35:13.000Z" - }, - "end": { - "$date": "2021-08-17T06:46:21.000Z" - }, - "events": [ - { - "uuid": "9f055844-7ac5-4ba2-9416-22cc161f2a25", - "start": { - "$date": "2021-08-17T05:35:13.000Z" - }, - "end": { - "$date": "2021-08-17T06:46:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cdd8e10b-7a50-4959-9c18-05ffb7eb0ba5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-17T05:50:02.000Z" - }, - "end": { - "$date": "2021-08-17T06:35:18.000Z" - }, - "events": [ - { - "uuid": "efea91db-54ca-412a-a0c0-eef25903182d", - "start": { - "$date": "2021-08-17T05:50:02.000Z" - }, - "end": { - "$date": "2021-08-17T06:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "2ea0f4af-ebc3-466c-a781-9c9c5293588d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-17T16:15:26.000Z" - }, - "end": { - "$date": "2021-08-17T17:50:53.000Z" - }, - "events": [ - { - "uuid": "fce42e32-f86f-4895-80dc-49d6f6f53811", - "start": { - "$date": "2021-08-17T16:15:26.000Z" - }, - "end": { - "$date": "2021-08-17T17:50:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7039e4a2-d724-43a8-ba86-3817ad51c9fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-17T16:54:15.000Z" - }, - "end": { - "$date": "2021-08-17T17:28:45.000Z" - }, - "events": [ - { - "uuid": "c37e5f81-b9a1-4639-8da6-57387310d9e5", - "start": { - "$date": "2021-08-17T16:54:15.000Z" - }, - "end": { - "$date": "2021-08-17T17:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "971669e7-8e03-4b4c-922f-b60927c39ef1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-17T17:58:50.000Z" - }, - "end": { - "$date": "2021-08-17T19:03:09.000Z" - }, - "events": [ - { - "uuid": "fbd94087-6fd3-4aad-aba9-047b509982d5", - "start": { - "$date": "2021-08-17T17:58:50.000Z" - }, - "end": { - "$date": "2021-08-17T19:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "64c59c24-7d9c-4e16-9eb6-92cfa286aa34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-17T18:45:36.000Z" - }, - "end": { - "$date": "2021-08-17T19:28:47.000Z" - }, - "events": [ - { - "uuid": "98da0c92-55d2-4c3f-918f-344a816bf37b", - "start": { - "$date": "2021-08-17T18:45:36.000Z" - }, - "end": { - "$date": "2021-08-17T19:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "aa68052e-ad15-4dbf-92c8-d37b3c33b07b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-17T20:58:07.000Z" - }, - "end": { - "$date": "2021-08-17T21:54:39.000Z" - }, - "events": [ - { - "uuid": "55cf178c-9605-4b2b-a3a5-8ae5a93209e4", - "start": { - "$date": "2021-08-17T20:58:07.000Z" - }, - "end": { - "$date": "2021-08-17T21:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "412e4bb5-1e2d-4e37-9fe1-3f9d0825e9b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-17T21:56:24.000Z" - }, - "end": { - "$date": "2021-08-17T22:56:53.000Z" - }, - "events": [ - { - "uuid": "d298b5a2-c788-4d93-ab2c-567984020c8c", - "start": { - "$date": "2021-08-17T21:56:24.000Z" - }, - "end": { - "$date": "2021-08-17T22:56:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "476d707e-8301-4e66-a3b0-485f5dd917ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-17T22:26:25.000Z" - }, - "end": { - "$date": "2021-08-17T23:01:24.000Z" - }, - "events": [ - { - "uuid": "b832885c-bc52-4f45-9dc1-2926b6672b60", - "start": { - "$date": "2021-08-17T22:26:25.000Z" - }, - "end": { - "$date": "2021-08-17T23:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "501f368f-9e92-46d0-8647-774256d0351e", - "uuid": "4c292c81-6e2b-4ff9-beb2-7f93ee67c08d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-17T22:36:17.000Z" - }, - "end": { - "$date": "2021-08-17T23:01:21.000Z" - }, - "events": [ - { - "uuid": "b6c51301-bbe5-46c4-b9d6-be5a605143b9", - "start": { - "$date": "2021-08-17T22:36:17.000Z" - }, - "end": { - "$date": "2021-08-17T23:01:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ff63570d-692e-46aa-b7ad-5e0fe8daa9b1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-18T00:25:21.000Z" - }, - "end": { - "$date": "2021-08-18T06:02:36.000Z" - }, - "events": [ - { - "uuid": "605bdbd1-c05d-4ac7-ae17-0d7c62a7543d", - "start": { - "$date": "2021-08-18T00:25:21.000Z" - }, - "end": { - "$date": "2021-08-18T06:02:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "37c2dcfa-3d70-4816-8940-8774c701fc4a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-18T01:42:29.000Z" - }, - "end": { - "$date": "2021-08-18T03:24:55.000Z" - }, - "events": [ - { - "uuid": "fd815e7c-6ead-4d0c-94c0-6a4488407e56", - "start": { - "$date": "2021-08-18T01:42:29.000Z" - }, - "end": { - "$date": "2021-08-18T03:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bead1f9-e71b-43fe-a426-1598c419aaca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-18T02:06:42.000Z" - }, - "end": { - "$date": "2021-08-18T02:30:27.000Z" - }, - "events": [ - { - "uuid": "3c5ff544-5068-4db9-9a29-23972e089d55", - "start": { - "$date": "2021-08-18T02:06:42.000Z" - }, - "end": { - "$date": "2021-08-18T02:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "121175ee-e2d6-4c20-804f-3c841765b8cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-18T02:06:47.000Z" - }, - "end": { - "$date": "2021-08-18T02:30:23.000Z" - }, - "events": [ - { - "uuid": "32064ed9-ba2b-494c-b325-e4d3944eb0ee", - "start": { - "$date": "2021-08-18T02:06:47.000Z" - }, - "end": { - "$date": "2021-08-18T02:30:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4d9e17d-4521-4a7d-b873-1d2b7918e678", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-18T02:07:50.000Z" - }, - "end": { - "$date": "2021-08-18T02:30:26.000Z" - }, - "events": [ - { - "uuid": "fc5a4194-10ae-4263-b29f-f643c0a2205c", - "start": { - "$date": "2021-08-18T02:07:50.000Z" - }, - "end": { - "$date": "2021-08-18T02:30:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "11741bff-50f5-41d6-99c1-3da001d469ad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-18T02:04:31.000Z" - }, - "end": { - "$date": "2021-08-18T03:03:32.000Z" - }, - "events": [ - { - "uuid": "615c59e3-b177-4b01-80ae-bfb4353a3c7d", - "start": { - "$date": "2021-08-18T02:04:31.000Z" - }, - "end": { - "$date": "2021-08-18T03:03:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f1b823a-60d8-4b64-a3d6-572ffc48c825", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-18T02:30:56.000Z" - }, - "end": { - "$date": "2021-08-18T02:33:01.000Z" - }, - "events": [ - { - "uuid": "d354bcc3-2133-4b92-980f-01e5b8d7b948", - "start": { - "$date": "2021-08-18T02:30:56.000Z" - }, - "end": { - "$date": "2021-08-18T02:33:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c31fc410-32be-4c93-925f-0b0f525b7a41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-18T02:37:17.000Z" - }, - "end": { - "$date": "2021-08-18T02:59:18.000Z" - }, - "events": [ - { - "uuid": "04e3a12a-ec41-42a4-ac08-58481fe62973", - "start": { - "$date": "2021-08-18T02:37:17.000Z" - }, - "end": { - "$date": "2021-08-18T02:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61a69bed-0ee8-462d-a385-1e761c1c41e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-18T02:37:19.000Z" - }, - "end": { - "$date": "2021-08-18T02:59:20.000Z" - }, - "events": [ - { - "uuid": "79f651ae-07e5-4a43-9b38-28d448c49c89", - "start": { - "$date": "2021-08-18T02:37:19.000Z" - }, - "end": { - "$date": "2021-08-18T02:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b1349b9-80b9-450f-954e-ab354f6223b4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-18T02:37:16.000Z" - }, - "end": { - "$date": "2021-08-18T02:59:30.000Z" - }, - "events": [ - { - "uuid": "9d52f28a-2406-4c0b-aa5d-6f4eeb600770", - "start": { - "$date": "2021-08-18T02:37:16.000Z" - }, - "end": { - "$date": "2021-08-18T02:59:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "033f98f0-8089-4d6e-82ba-b23568a1d6b0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-18T03:01:35.000Z" - }, - "end": { - "$date": "2021-08-18T04:26:05.000Z" - }, - "events": [ - { - "uuid": "1eeaf678-ac4e-4cd4-aac7-98a839b894e4", - "start": { - "$date": "2021-08-18T03:01:35.000Z" - }, - "end": { - "$date": "2021-08-18T04:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65ef5805-5c46-44e5-971a-b10c3e432fa6", - "uuid": "3b28cd0c-3fa5-46e4-963a-206d47505e3b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-18T03:11:46.000Z" - }, - "end": { - "$date": "2021-08-18T09:59:14.000Z" - }, - "events": [ - { - "uuid": "5dc17e7b-2c01-47ce-9ebd-e601305ee44e", - "start": { - "$date": "2021-08-18T03:11:46.000Z" - }, - "end": { - "$date": "2021-08-18T09:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "55ceef81-79bc-4f0c-a480-90c7f32cb44a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-18T03:47:03.000Z" - }, - "end": { - "$date": "2021-08-18T05:45:19.000Z" - }, - "events": [ - { - "uuid": "919d1e75-8d00-473a-b979-d35f94719cc3", - "start": { - "$date": "2021-08-18T03:47:03.000Z" - }, - "end": { - "$date": "2021-08-18T05:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "912d7da5-2e6f-4dd0-ac68-5df7051c9594", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-18T04:16:36.000Z" - }, - "end": { - "$date": "2021-08-18T04:36:08.000Z" - }, - "events": [ - { - "uuid": "1c5bd2ea-6d6b-46ad-88ce-588dc3103f19", - "start": { - "$date": "2021-08-18T04:16:36.000Z" - }, - "end": { - "$date": "2021-08-18T04:36:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5b9b1e7-6eea-4aa2-af55-7fc0bf1e6ea7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-18T04:49:00.000Z" - }, - "end": { - "$date": "2021-08-18T05:18:33.000Z" - }, - "events": [ - { - "uuid": "458dc3ad-ba29-4fa3-a75b-0226f509dfa1", - "start": { - "$date": "2021-08-18T04:49:00.000Z" - }, - "end": { - "$date": "2021-08-18T05:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19164791-f782-4e10-b0ef-cfe695c5341a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-18T05:23:19.000Z" - }, - "end": { - "$date": "2021-08-18T05:53:02.000Z" - }, - "events": [ - { - "uuid": "1b318d48-6262-4736-86ec-938714a7f083", - "start": { - "$date": "2021-08-18T05:23:19.000Z" - }, - "end": { - "$date": "2021-08-18T05:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "39e70e72-3e38-4518-8912-bad040c773f3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-18T05:24:56.000Z" - }, - "end": { - "$date": "2021-08-18T06:39:51.000Z" - }, - "events": [ - { - "uuid": "cfaf17a7-c009-44e0-9a94-16a7b259548d", - "start": { - "$date": "2021-08-18T05:24:56.000Z" - }, - "end": { - "$date": "2021-08-18T06:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "b1752814-9332-4b39-b4e7-cc33bede8820", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-18T14:53:30.000Z" - }, - "end": { - "$date": "2021-08-18T15:52:41.000Z" - }, - "events": [ - { - "uuid": "4163bb0d-49c1-4c68-acb1-5c6094e12528", - "start": { - "$date": "2021-08-18T14:53:30.000Z" - }, - "end": { - "$date": "2021-08-18T15:52:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "2d53bdd0-bf9b-4084-8a77-34a787b05f18", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-18T15:53:27.000Z" - }, - "end": { - "$date": "2021-08-18T16:04:03.000Z" - }, - "events": [ - { - "uuid": "9047b7f8-8c66-4706-b616-88c53c91c25b", - "start": { - "$date": "2021-08-18T15:53:27.000Z" - }, - "end": { - "$date": "2021-08-18T16:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0ec02587-4fb1-4b70-91a6-a96e2ff909c5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-18T16:09:00.000Z" - }, - "end": { - "$date": "2021-08-18T16:16:40.000Z" - }, - "events": [ - { - "uuid": "3007158f-065e-4143-967c-26eb073aa5fa", - "start": { - "$date": "2021-08-18T16:09:00.000Z" - }, - "end": { - "$date": "2021-08-18T16:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "39198b1b-6592-4587-816d-9b2cc9948af7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-18T17:28:03.000Z" - }, - "end": { - "$date": "2021-08-18T18:00:16.000Z" - }, - "events": [ - { - "uuid": "a61b2c08-fcb7-4afc-b901-8fc9ac7bcf26", - "start": { - "$date": "2021-08-18T17:28:03.000Z" - }, - "end": { - "$date": "2021-08-18T18:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bee31fab-b6bd-42a4-9652-ad048c6b488d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-18T18:24:22.000Z" - }, - "end": { - "$date": "2021-08-18T18:45:13.000Z" - }, - "events": [ - { - "uuid": "369fde4c-b0b6-4e24-87cc-f12d5d738a39", - "start": { - "$date": "2021-08-18T18:24:22.000Z" - }, - "end": { - "$date": "2021-08-18T18:45:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "da446e4e-684d-4559-9c8b-0dc171d98724", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-18T18:38:31.000Z" - }, - "end": { - "$date": "2021-08-18T18:55:22.000Z" - }, - "events": [ - { - "uuid": "33a9c10d-df58-4421-9556-87f3c9d1a190", - "start": { - "$date": "2021-08-18T18:38:31.000Z" - }, - "end": { - "$date": "2021-08-18T18:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9407d54-e03e-4568-9907-43230a55f36e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-18T18:46:48.000Z" - }, - "end": { - "$date": "2021-08-18T19:01:29.000Z" - }, - "events": [ - { - "uuid": "8eb886ef-1658-43e8-88c3-50409ee7ba31", - "start": { - "$date": "2021-08-18T18:46:48.000Z" - }, - "end": { - "$date": "2021-08-18T19:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0451b740-0307-4fd2-bf3f-096ec3a54701", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-18T19:05:03.000Z" - }, - "end": { - "$date": "2021-08-18T19:27:54.000Z" - }, - "events": [ - { - "uuid": "19561f44-e100-40fd-a226-2c135639de0c", - "start": { - "$date": "2021-08-18T19:05:03.000Z" - }, - "end": { - "$date": "2021-08-18T19:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "501f368f-9e92-46d0-8647-774256d0351e", - "uuid": "3f4b81db-847b-4835-8b9a-623cd39b8fdf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-18T20:35:00.000Z" - }, - "end": { - "$date": "2021-08-18T21:23:12.000Z" - }, - "events": [ - { - "uuid": "84ead3cd-1e83-4574-9203-66744470875f", - "start": { - "$date": "2021-08-18T20:35:00.000Z" - }, - "end": { - "$date": "2021-08-18T21:23:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "501f368f-9e92-46d0-8647-774256d0351e", - "uuid": "0bd4eeb1-fcac-4be0-8e44-ed746ef45ccd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-18T21:23:17.000Z" - }, - "end": { - "$date": "2021-08-18T22:27:24.000Z" - }, - "events": [ - { - "uuid": "3cbc4f82-392a-4de8-a043-b5985cc65d9e", - "start": { - "$date": "2021-08-18T21:23:17.000Z" - }, - "end": { - "$date": "2021-08-18T22:27:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "933a7d24-1168-49e6-837b-fcd4caa6a1d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-18T22:13:48.000Z" - }, - "end": { - "$date": "2021-08-18T22:15:27.000Z" - }, - "events": [ - { - "uuid": "26ea202d-99ed-4815-9acf-f066a07fcea0", - "start": { - "$date": "2021-08-18T22:13:48.000Z" - }, - "end": { - "$date": "2021-08-18T22:15:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "408e38c8-c468-4766-af67-bcabfc882db9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-18T22:31:16.000Z" - }, - "end": { - "$date": "2021-08-18T22:44:32.000Z" - }, - "events": [ - { - "uuid": "3725833c-c03a-4d2d-9179-e1aebdb7d4cd", - "start": { - "$date": "2021-08-18T22:31:16.000Z" - }, - "end": { - "$date": "2021-08-18T22:44:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "525d3056-71ca-4222-b4d5-b345c50d04d6", - "uuid": "38d29420-2bdb-4462-a1b1-c4c64a9cde4a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-18T23:41:12.000Z" - }, - "end": { - "$date": "2021-08-18T23:43:13.000Z" - }, - "events": [ - { - "uuid": "c4ca6fbc-bbd1-4e2c-b617-41578fa43875", - "start": { - "$date": "2021-08-18T23:41:12.000Z" - }, - "end": { - "$date": "2021-08-18T23:43:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "525d3056-71ca-4222-b4d5-b345c50d04d6", - "uuid": "4c91998f-e875-4aee-ac71-b503f962a847", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-18T23:43:17.000Z" - }, - "end": { - "$date": "2021-08-18T23:51:43.000Z" - }, - "events": [ - { - "uuid": "d738bf7e-b32c-41e1-ad8d-70a83602a316", - "start": { - "$date": "2021-08-18T23:43:17.000Z" - }, - "end": { - "$date": "2021-08-18T23:51:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6706d57-95ef-4886-ad9a-5d99c959090e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-18T23:52:39.000Z" - }, - "end": { - "$date": "2021-08-19T00:15:10.000Z" - }, - "events": [ - { - "uuid": "69d74f8d-708e-47e1-b635-dc5dee2b2d71", - "start": { - "$date": "2021-08-18T23:52:39.000Z" - }, - "end": { - "$date": "2021-08-19T00:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35740e21-0e84-44f4-bad0-bddd33dd3bdc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-19T00:20:10.000Z" - }, - "end": { - "$date": "2021-08-19T00:39:12.000Z" - }, - "events": [ - { - "uuid": "6152577c-9656-459e-bdea-88bdb85826f1", - "start": { - "$date": "2021-08-19T00:20:10.000Z" - }, - "end": { - "$date": "2021-08-19T00:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee229462-3cb5-4f51-b491-a9faaf629ba3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-19T00:21:03.000Z" - }, - "end": { - "$date": "2021-08-19T00:39:09.000Z" - }, - "events": [ - { - "uuid": "c96b7c8a-f88a-4789-90fb-4b33bbeea131", - "start": { - "$date": "2021-08-19T00:21:03.000Z" - }, - "end": { - "$date": "2021-08-19T00:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "765e6ab8-b40d-47c5-9050-efb3b1ec7377", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T00:20:00.000Z" - }, - "end": { - "$date": "2021-08-19T00:39:06.000Z" - }, - "events": [ - { - "uuid": "40672770-6c97-45f1-a50e-03a2cc9365b9", - "start": { - "$date": "2021-08-19T00:20:00.000Z" - }, - "end": { - "$date": "2021-08-19T00:39:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0d4aa38c-2cb6-4c35-86df-58caffdebca9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-19T00:10:47.000Z" - }, - "end": { - "$date": "2021-08-19T06:11:54.000Z" - }, - "events": [ - { - "uuid": "3f287d2d-e3ba-40a6-a09e-62a39c9004b3", - "start": { - "$date": "2021-08-19T00:10:47.000Z" - }, - "end": { - "$date": "2021-08-19T01:19:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9a2136a-3071-4ec5-a778-c29257b0d1fe", - "start": { - "$date": "2021-08-19T01:19:47.000Z" - }, - "end": { - "$date": "2021-08-19T01:24:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "119d9b32-1e82-4178-8ea7-f3b24a79c332", - "start": { - "$date": "2021-08-19T01:24:47.000Z" - }, - "end": { - "$date": "2021-08-19T03:58:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "42bd05e2-44b8-4c8e-9ff1-7b93e797d86d", - "start": { - "$date": "2021-08-19T03:58:47.000Z" - }, - "end": { - "$date": "2021-08-19T04:00:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "54d2b1a7-a7e9-43be-ae78-05947d4e096d", - "start": { - "$date": "2021-08-19T04:00:47.000Z" - }, - "end": { - "$date": "2021-08-19T06:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "118b0b5e-4862-4bb4-808b-e726258710a0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-19T00:43:07.000Z" - }, - "end": { - "$date": "2021-08-19T01:03:42.000Z" - }, - "events": [ - { - "uuid": "6bb85699-cfc4-4297-a04f-6cd39b76f43f", - "start": { - "$date": "2021-08-19T00:43:07.000Z" - }, - "end": { - "$date": "2021-08-19T01:03:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9a780ed-e205-446b-b92f-316176e122eb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T00:43:55.000Z" - }, - "end": { - "$date": "2021-08-19T01:03:37.000Z" - }, - "events": [ - { - "uuid": "dca4b207-7d94-492b-8743-d067ff0399d4", - "start": { - "$date": "2021-08-19T00:43:55.000Z" - }, - "end": { - "$date": "2021-08-19T01:03:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdf719c9-f707-45e4-b891-45b691a0a6ca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-19T00:43:48.000Z" - }, - "end": { - "$date": "2021-08-19T01:03:34.000Z" - }, - "events": [ - { - "uuid": "96744cd8-7376-4269-a5bb-5c1d95b63fa5", - "start": { - "$date": "2021-08-19T00:43:48.000Z" - }, - "end": { - "$date": "2021-08-19T01:03:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ccd6a0c-2484-43be-94fd-08e88130d13d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-19T01:04:06.000Z" - }, - "end": { - "$date": "2021-08-19T01:06:13.000Z" - }, - "events": [ - { - "uuid": "4133f15c-8afb-4374-b088-684a6ca52007", - "start": { - "$date": "2021-08-19T01:04:06.000Z" - }, - "end": { - "$date": "2021-08-19T01:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "208db65c-043b-455a-9398-2763e923728d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-19T01:04:07.000Z" - }, - "end": { - "$date": "2021-08-19T01:06:15.000Z" - }, - "events": [ - { - "uuid": "df6c02e0-6169-42d6-b716-0aea8bcc3b50", - "start": { - "$date": "2021-08-19T01:04:07.000Z" - }, - "end": { - "$date": "2021-08-19T01:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4efc88c-8464-498b-922a-85639e14d6da", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T01:04:07.000Z" - }, - "end": { - "$date": "2021-08-19T01:06:15.000Z" - }, - "events": [ - { - "uuid": "ab245dc5-a0aa-45cc-b289-9c124b0427ed", - "start": { - "$date": "2021-08-19T01:04:07.000Z" - }, - "end": { - "$date": "2021-08-19T01:06:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "720ca966-27c1-4091-8ed5-5184dfac3d7e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T01:06:24.000Z" - }, - "end": { - "$date": "2021-08-19T01:07:37.000Z" - }, - "events": [ - { - "uuid": "dc133c85-90bd-4d09-8191-54dadeea5a88", - "start": { - "$date": "2021-08-19T01:06:24.000Z" - }, - "end": { - "$date": "2021-08-19T01:07:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "6e0b90d4-c0af-4e20-84ef-7d6e04631d71", - "uuid": "b189a441-892b-46cd-af17-36af54b24ee3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T01:34:03.000Z" - }, - "end": { - "$date": "2021-08-19T01:36:43.000Z" - }, - "events": [ - { - "uuid": "53518523-37c6-4729-aca9-f9f4101545f0", - "start": { - "$date": "2021-08-19T01:34:03.000Z" - }, - "end": { - "$date": "2021-08-19T01:36:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "52b2cc5c-2406-418e-aa39-33db0cae4f0c", - "uuid": "edc25526-6252-45c0-af5a-ec4cdba56d8a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T01:38:28.000Z" - }, - "end": { - "$date": "2021-08-19T01:56:59.000Z" - }, - "events": [ - { - "uuid": "82e03ab6-23d2-4a64-8d04-f4f69596d9cd", - "start": { - "$date": "2021-08-19T01:38:28.000Z" - }, - "end": { - "$date": "2021-08-19T01:56:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e70487c7-e598-4be7-ad6f-8440a59b258f", - "uuid": "be30df52-ce0c-4157-930d-0fb40a0d380a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T01:57:08.000Z" - }, - "end": { - "$date": "2021-08-19T02:06:06.000Z" - }, - "events": [ - { - "uuid": "3e772d60-ddf4-4986-81fb-917250545674", - "start": { - "$date": "2021-08-19T01:57:08.000Z" - }, - "end": { - "$date": "2021-08-19T02:06:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "13b230c4-0b8c-4402-a47c-312ec8dd062c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T02:19:03.000Z" - }, - "end": { - "$date": "2021-08-19T03:02:37.000Z" - }, - "events": [ - { - "uuid": "f2e86924-d830-4686-b716-d635a60feac9", - "start": { - "$date": "2021-08-19T02:19:03.000Z" - }, - "end": { - "$date": "2021-08-19T03:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "902beab4-6ff3-40c3-b43e-e9e27d194ea2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-19T02:36:38.000Z" - }, - "end": { - "$date": "2021-08-19T06:28:11.000Z" - }, - "events": [ - { - "uuid": "396801e1-dc11-453d-8eed-f044bb5f8c9e", - "start": { - "$date": "2021-08-19T02:36:38.000Z" - }, - "end": { - "$date": "2021-08-19T02:59:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f78c1125-c30e-42e6-8a86-18c16420ffd1", - "start": { - "$date": "2021-08-19T02:59:38.000Z" - }, - "end": { - "$date": "2021-08-19T03:04:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5fe32715-96fb-4af9-af97-e7a3fe4741a1", - "start": { - "$date": "2021-08-19T03:04:38.000Z" - }, - "end": { - "$date": "2021-08-19T03:06:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "61e6e0d5-f385-47ac-b347-824bcf47615a", - "start": { - "$date": "2021-08-19T03:06:38.000Z" - }, - "end": { - "$date": "2021-08-19T03:07:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "32b4bf47-c86a-4176-9f57-cfbc94815676", - "start": { - "$date": "2021-08-19T03:07:38.000Z" - }, - "end": { - "$date": "2021-08-19T03:09:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b3c8f2d6-5cf3-45f6-a3f5-815b8735c386", - "start": { - "$date": "2021-08-19T03:09:38.000Z" - }, - "end": { - "$date": "2021-08-19T03:12:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f51f2fe5-cd10-4dcf-9266-0e87164f0525", - "start": { - "$date": "2021-08-19T03:12:38.000Z" - }, - "end": { - "$date": "2021-08-19T06:28:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "43cd1d80-4125-4cc5-9181-fcecedd6469c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-19T03:31:56.000Z" - }, - "end": { - "$date": "2021-08-19T04:11:27.000Z" - }, - "events": [ - { - "uuid": "c5aa5cb8-1d35-4d85-bcfc-17518e2702cf", - "start": { - "$date": "2021-08-19T03:31:56.000Z" - }, - "end": { - "$date": "2021-08-19T04:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6df53a3a-9acb-4166-8416-d0edd92306d5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-19T03:55:30.000Z" - }, - "end": { - "$date": "2021-08-19T05:01:39.000Z" - }, - "events": [ - { - "uuid": "5ecd4cda-59a9-4021-a646-8e0ab01011e5", - "start": { - "$date": "2021-08-19T03:55:30.000Z" - }, - "end": { - "$date": "2021-08-19T05:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f9b199be-fe1b-4906-b62e-1086a19fd4ca", - "uuid": "4f207a6c-4038-4453-a616-85ce791f374c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T04:28:00.000Z" - }, - "end": { - "$date": "2021-08-19T04:29:29.000Z" - }, - "events": [ - { - "uuid": "aab355b8-f4b7-4333-987e-340b1612f402", - "start": { - "$date": "2021-08-19T04:28:00.000Z" - }, - "end": { - "$date": "2021-08-19T04:29:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f9b199be-fe1b-4906-b62e-1086a19fd4ca", - "uuid": "2eb42f45-1cce-4a85-a764-05b130f90947", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T04:29:35.000Z" - }, - "end": { - "$date": "2021-08-19T05:07:48.000Z" - }, - "events": [ - { - "uuid": "903f8abe-2a7c-48b5-842b-9264c1be5c4d", - "start": { - "$date": "2021-08-19T04:29:35.000Z" - }, - "end": { - "$date": "2021-08-19T05:07:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "580c03ab-ace7-422b-92be-d3b83f99a206", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-19T05:02:11.000Z" - }, - "end": { - "$date": "2021-08-19T05:33:50.000Z" - }, - "events": [ - { - "uuid": "c9025fef-e1d6-40a3-b5ec-8e33bde477cb", - "start": { - "$date": "2021-08-19T05:02:11.000Z" - }, - "end": { - "$date": "2021-08-19T05:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "360ffaf3-ca90-40a5-97cf-9cf08623e083", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-19T05:34:08.000Z" - }, - "end": { - "$date": "2021-08-19T05:35:50.000Z" - }, - "events": [ - { - "uuid": "b0286892-cd74-417e-97d2-2491c1cfbba4", - "start": { - "$date": "2021-08-19T05:34:08.000Z" - }, - "end": { - "$date": "2021-08-19T05:35:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae68c40e-3a7b-4820-8e00-03fb1fdf99a4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-19T05:45:46.000Z" - }, - "end": { - "$date": "2021-08-19T06:13:10.000Z" - }, - "events": [ - { - "uuid": "d1e1b8ba-6e43-4984-9b4e-0ed255abc62d", - "start": { - "$date": "2021-08-19T05:45:46.000Z" - }, - "end": { - "$date": "2021-08-19T06:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f442c527-2442-4072-8a44-eff80b828a47", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-19T06:31:22.000Z" - }, - "end": { - "$date": "2021-08-19T07:16:17.000Z" - }, - "events": [ - { - "uuid": "d2db2560-e666-4b5b-9cec-6d88a7de398d", - "start": { - "$date": "2021-08-19T06:31:22.000Z" - }, - "end": { - "$date": "2021-08-19T07:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3167b976-2e22-4f28-a1cb-56674d7a5d44", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-19T07:18:05.000Z" - }, - "end": { - "$date": "2021-08-19T07:34:22.000Z" - }, - "events": [ - { - "uuid": "0cc33e00-b592-489a-9b0a-a7806c4ce76f", - "start": { - "$date": "2021-08-19T07:18:05.000Z" - }, - "end": { - "$date": "2021-08-19T07:34:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2284483d-fff2-4c14-aa8e-8d3fd19af360", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-19T12:47:30.000Z" - }, - "end": { - "$date": "2021-08-19T12:58:13.000Z" - }, - "events": [ - { - "uuid": "3d7aeb04-da81-4dfd-a54e-ad11b30237a7", - "start": { - "$date": "2021-08-19T12:47:30.000Z" - }, - "end": { - "$date": "2021-08-19T12:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "577aabad-e2cd-44d7-ab2e-eaa431895c81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-19T15:57:29.000Z" - }, - "end": { - "$date": "2021-08-19T16:20:49.000Z" - }, - "events": [ - { - "uuid": "962c2d73-8e79-43f3-ba13-dd6be5b42090", - "start": { - "$date": "2021-08-19T15:57:29.000Z" - }, - "end": { - "$date": "2021-08-19T16:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "321f61f2-3248-4726-9de7-3d42c26aaa4b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-19T16:24:14.000Z" - }, - "end": { - "$date": "2021-08-19T17:23:47.000Z" - }, - "events": [ - { - "uuid": "89f15ed8-be0a-4a9c-802f-1f857754203f", - "start": { - "$date": "2021-08-19T16:24:14.000Z" - }, - "end": { - "$date": "2021-08-19T17:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "716ea75e-6a14-4a9b-a24c-4fc57e0ac17f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-19T17:50:38.000Z" - }, - "end": { - "$date": "2021-08-19T22:04:52.000Z" - }, - "events": [ - { - "uuid": "c6f1a955-9d64-41fc-af66-94559aa813b3", - "start": { - "$date": "2021-08-19T17:50:38.000Z" - }, - "end": { - "$date": "2021-08-19T22:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "68362e26-f478-4881-8fb5-f12c70f49a84", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-19T19:03:48.000Z" - }, - "end": { - "$date": "2021-08-19T20:42:04.000Z" - }, - "events": [ - { - "uuid": "7e96af2f-ec2d-4fe2-9b60-40c5d7e764af", - "start": { - "$date": "2021-08-19T19:03:48.000Z" - }, - "end": { - "$date": "2021-08-19T20:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92a7eaaa-18f5-4af5-b6fa-c38998e4346e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-19T19:31:28.000Z" - }, - "end": { - "$date": "2021-08-19T19:58:08.000Z" - }, - "events": [ - { - "uuid": "9c94c08e-e928-4fcd-a0ea-1e1996cfe892", - "start": { - "$date": "2021-08-19T19:31:28.000Z" - }, - "end": { - "$date": "2021-08-19T19:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ebb8bf1-d173-4340-951e-ed9d4e4ed887", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-19T20:03:34.000Z" - }, - "end": { - "$date": "2021-08-19T20:38:16.000Z" - }, - "events": [ - { - "uuid": "85fd41ab-0a21-4a9e-a9d3-315414a01a02", - "start": { - "$date": "2021-08-19T20:03:34.000Z" - }, - "end": { - "$date": "2021-08-19T20:38:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "1070b03b-017b-4d65-98f4-1a2c8a6134f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T22:23:38.000Z" - }, - "end": { - "$date": "2021-08-19T22:30:38.000Z" - }, - "events": [ - { - "uuid": "ca6f200a-973f-4bdf-9ee9-618fca687afa", - "start": { - "$date": "2021-08-19T22:23:38.000Z" - }, - "end": { - "$date": "2021-08-19T22:30:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "3435ce3e-1406-492d-9cfa-bf46aba9fe07", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T22:30:44.000Z" - }, - "end": { - "$date": "2021-08-19T22:34:09.000Z" - }, - "events": [ - { - "uuid": "bc07e406-8cdf-49fa-ac13-98a04bb155e2", - "start": { - "$date": "2021-08-19T22:30:44.000Z" - }, - "end": { - "$date": "2021-08-19T22:34:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "98daf0a6-19ec-437a-832b-a01aea7ef0bd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T22:37:44.000Z" - }, - "end": { - "$date": "2021-08-19T22:39:04.000Z" - }, - "events": [ - { - "uuid": "ba841cfe-5649-41a3-b33b-1654125216fd", - "start": { - "$date": "2021-08-19T22:37:44.000Z" - }, - "end": { - "$date": "2021-08-19T22:39:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "ddee5edf-daad-4a9e-8920-0dcc4b0b3277", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T22:39:15.000Z" - }, - "end": { - "$date": "2021-08-19T22:41:34.000Z" - }, - "events": [ - { - "uuid": "4e5d7b15-66a9-49c7-8aed-2bbcb5ffc230", - "start": { - "$date": "2021-08-19T22:39:15.000Z" - }, - "end": { - "$date": "2021-08-19T22:41:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "fc18f96d-1865-480e-a4c5-1e73258dbc8a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T22:42:10.000Z" - }, - "end": { - "$date": "2021-08-19T22:45:20.000Z" - }, - "events": [ - { - "uuid": "db701dad-04ea-4323-afac-24dce02cd23d", - "start": { - "$date": "2021-08-19T22:42:10.000Z" - }, - "end": { - "$date": "2021-08-19T22:45:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "08b2d2e6-96b0-4b2d-b2d2-1d28f052b192", - "uuid": "e7075fd1-4787-4a98-b070-dca1283ef89d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-19T22:45:25.000Z" - }, - "end": { - "$date": "2021-08-20T00:43:23.000Z" - }, - "events": [ - { - "uuid": "ae512b4e-4457-4863-b6a1-f8af4390e703", - "start": { - "$date": "2021-08-19T22:45:25.000Z" - }, - "end": { - "$date": "2021-08-20T00:43:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "29a83ab6-63fa-453b-8ba2-6f3d2fa18f0b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T22:48:43.000Z" - }, - "end": { - "$date": "2021-08-19T23:02:00.000Z" - }, - "events": [ - { - "uuid": "45a2978d-18a9-434e-8bef-bd245a433d6e", - "start": { - "$date": "2021-08-19T22:48:43.000Z" - }, - "end": { - "$date": "2021-08-19T23:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "27482b8e-02e7-46f7-8bb4-20ab2fc8658b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T23:03:45.000Z" - }, - "end": { - "$date": "2021-08-19T23:15:46.000Z" - }, - "events": [ - { - "uuid": "b5660cba-a915-49ab-abff-d89169315aa5", - "start": { - "$date": "2021-08-19T23:03:45.000Z" - }, - "end": { - "$date": "2021-08-19T23:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "994bd05c-8ba9-45f1-98a3-1603fb087ce0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T23:16:06.000Z" - }, - "end": { - "$date": "2021-08-19T23:22:27.000Z" - }, - "events": [ - { - "uuid": "18b20182-7ded-4442-9127-f43b7e8d0427", - "start": { - "$date": "2021-08-19T23:16:06.000Z" - }, - "end": { - "$date": "2021-08-19T23:22:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "4131ddf6-3f19-4257-8e60-ff4fe4e7e859", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T23:28:28.000Z" - }, - "end": { - "$date": "2021-08-19T23:29:53.000Z" - }, - "events": [ - { - "uuid": "7483f188-c02a-46d4-8cce-ac530b24b566", - "start": { - "$date": "2021-08-19T23:28:28.000Z" - }, - "end": { - "$date": "2021-08-19T23:29:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "5be1cc11-e198-4eff-bf92-b250f5e55ebd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T23:30:03.000Z" - }, - "end": { - "$date": "2021-08-19T23:36:09.000Z" - }, - "events": [ - { - "uuid": "2c328998-5ae6-4841-a85d-2a6c9b47e16a", - "start": { - "$date": "2021-08-19T23:30:03.000Z" - }, - "end": { - "$date": "2021-08-19T23:36:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5cda51b4-523e-4ccb-b8de-eaeb4f7747e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-19T23:41:35.000Z" - }, - "end": { - "$date": "2021-08-19T23:48:11.000Z" - }, - "events": [ - { - "uuid": "4038d775-b4ee-4abb-8787-38c7d5e69791", - "start": { - "$date": "2021-08-19T23:41:35.000Z" - }, - "end": { - "$date": "2021-08-19T23:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "b27f9dd0-aa13-4f95-b4a9-3f0e07b67465", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T00:11:55.000Z" - }, - "end": { - "$date": "2021-08-20T00:17:00.000Z" - }, - "events": [ - { - "uuid": "b53928ad-0da9-44d4-96ca-1df7b8f71a2a", - "start": { - "$date": "2021-08-20T00:11:55.000Z" - }, - "end": { - "$date": "2021-08-20T00:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "2ba70b8a-a6e9-473d-9784-e1fd85eb786d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T00:25:37.000Z" - }, - "end": { - "$date": "2021-08-20T00:27:22.000Z" - }, - "events": [ - { - "uuid": "5e8590ec-6d93-438d-b91a-14d8d29b55cd", - "start": { - "$date": "2021-08-20T00:25:37.000Z" - }, - "end": { - "$date": "2021-08-20T00:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "2be157b2-6fce-46f9-8240-9c65d49cc72a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T00:27:32.000Z" - }, - "end": { - "$date": "2021-08-20T00:47:11.000Z" - }, - "events": [ - { - "uuid": "839b7003-bf18-47e0-8e0c-64b9bd39eb68", - "start": { - "$date": "2021-08-20T00:27:32.000Z" - }, - "end": { - "$date": "2021-08-20T00:43:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbc03fe7-a511-4ab2-8829-49a97db83921", - "start": { - "$date": "2021-08-20T00:43:32.000Z" - }, - "end": { - "$date": "2021-08-20T00:44:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61f337af-7d17-4c7e-8b76-3475fbd83227", - "start": { - "$date": "2021-08-20T00:44:32.000Z" - }, - "end": { - "$date": "2021-08-20T00:47:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1650fc73-3453-469a-9790-5ec719bd61f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-20T00:55:15.000Z" - }, - "end": { - "$date": "2021-08-20T04:29:59.000Z" - }, - "events": [ - { - "uuid": "fff557fe-140f-4e15-8fb3-c7d78af23c0a", - "start": { - "$date": "2021-08-20T00:55:15.000Z" - }, - "end": { - "$date": "2021-08-20T04:29:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "23acd9c6-0704-4299-81d3-fb3b0ea2ad4f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-20T01:16:56.000Z" - }, - "end": { - "$date": "2021-08-20T03:09:38.000Z" - }, - "events": [ - { - "uuid": "d5cda935-cb3c-43f3-a7e5-ae9665666729", - "start": { - "$date": "2021-08-20T01:16:56.000Z" - }, - "end": { - "$date": "2021-08-20T03:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85a6c700-0a49-446d-a66c-4a9135257268", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-20T02:05:26.000Z" - }, - "end": { - "$date": "2021-08-20T02:25:57.000Z" - }, - "events": [ - { - "uuid": "64d155d6-400a-4223-acc6-a15f1a81be7d", - "start": { - "$date": "2021-08-20T02:05:26.000Z" - }, - "end": { - "$date": "2021-08-20T02:25:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee8fdccb-b2c6-49d8-a961-f0d11ee40eae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-20T02:05:15.000Z" - }, - "end": { - "$date": "2021-08-20T02:25:46.000Z" - }, - "events": [ - { - "uuid": "bfba7876-13a9-49bf-a47d-5d08b1071e1c", - "start": { - "$date": "2021-08-20T02:05:15.000Z" - }, - "end": { - "$date": "2021-08-20T02:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "759daa8f-1ae8-485f-9064-6575e5938dc9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-20T02:07:57.000Z" - }, - "end": { - "$date": "2021-08-20T06:02:02.000Z" - }, - "events": [ - { - "uuid": "1c2119fc-2036-40e6-8a2e-f4e5d507b570", - "start": { - "$date": "2021-08-20T02:07:57.000Z" - }, - "end": { - "$date": "2021-08-20T06:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5ed9dfe-9635-41be-bd60-38165bf1672c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-20T02:29:42.000Z" - }, - "end": { - "$date": "2021-08-20T02:56:41.000Z" - }, - "events": [ - { - "uuid": "370a9db6-3c37-463b-9a70-3e1f625ffd2d", - "start": { - "$date": "2021-08-20T02:29:42.000Z" - }, - "end": { - "$date": "2021-08-20T02:56:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1160645-0d06-48c3-b9b7-80ecd2826369", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-20T02:29:30.000Z" - }, - "end": { - "$date": "2021-08-20T02:56:31.000Z" - }, - "events": [ - { - "uuid": "d3fd0566-8c74-4413-b184-b181597dc36d", - "start": { - "$date": "2021-08-20T02:29:30.000Z" - }, - "end": { - "$date": "2021-08-20T02:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d523667d-ed7f-41bc-a3f8-5637102aa949", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-20T02:59:48.000Z" - }, - "end": { - "$date": "2021-08-20T03:15:27.000Z" - }, - "events": [ - { - "uuid": "c01e8326-dda9-472c-93b7-8849f515a1b6", - "start": { - "$date": "2021-08-20T02:59:48.000Z" - }, - "end": { - "$date": "2021-08-20T03:15:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "725fcd41-8f03-4155-ae3c-ffc240ad288d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-20T03:00:16.000Z" - }, - "end": { - "$date": "2021-08-20T03:15:16.000Z" - }, - "events": [ - { - "uuid": "95382447-bece-47fe-b7ab-ff55f82b1765", - "start": { - "$date": "2021-08-20T03:00:16.000Z" - }, - "end": { - "$date": "2021-08-20T03:15:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f53d3ea8-7354-45aa-90a8-79830f13dce1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-20T03:10:29.000Z" - }, - "end": { - "$date": "2021-08-20T06:34:27.000Z" - }, - "events": [ - { - "uuid": "6b95e7e5-d30a-45dd-afd4-2c04f7eb9e13", - "start": { - "$date": "2021-08-20T03:10:29.000Z" - }, - "end": { - "$date": "2021-08-20T06:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5b7d2ea-5eef-461a-82f5-1a3e6c1739de", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-20T03:37:21.000Z" - }, - "end": { - "$date": "2021-08-20T04:09:17.000Z" - }, - "events": [ - { - "uuid": "b3b4179b-bca8-42d7-9d8d-63eda2a30ac5", - "start": { - "$date": "2021-08-20T03:37:21.000Z" - }, - "end": { - "$date": "2021-08-20T04:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "00e6c44c-a9ad-472c-a6a6-1dbc0891282d", - "uuid": "f8a31463-dffb-461d-9e45-984e7e0297b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-20T03:56:28.000Z" - }, - "end": { - "$date": "2021-08-20T04:29:33.000Z" - }, - "events": [ - { - "uuid": "454ac06d-fe6a-44a5-becf-5adc482afbd7", - "start": { - "$date": "2021-08-20T03:56:28.000Z" - }, - "end": { - "$date": "2021-08-20T04:29:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "519176c9-6ced-4c37-a070-14c0b8031239", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-20T04:09:10.000Z" - }, - "end": { - "$date": "2021-08-20T06:43:00.000Z" - }, - "events": [ - { - "uuid": "b6ba103b-b840-4d30-afdf-bbb9191503e2", - "start": { - "$date": "2021-08-20T04:09:10.000Z" - }, - "end": { - "$date": "2021-08-20T06:43:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec2c8256-4a3b-4c16-ba59-a70f88b30859", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-20T04:20:07.000Z" - }, - "end": { - "$date": "2021-08-20T04:50:08.000Z" - }, - "events": [ - { - "uuid": "ba5e696b-4a0d-4379-acc8-73aadc9bcd5e", - "start": { - "$date": "2021-08-20T04:20:07.000Z" - }, - "end": { - "$date": "2021-08-20T04:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "da400e25-fe0e-4934-a6cd-5c7fea1b0b98", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-20T04:10:29.000Z" - }, - "end": { - "$date": "2021-08-20T06:32:20.000Z" - }, - "events": [ - { - "uuid": "b805a391-0525-4ba2-bc8f-d04e391730ad", - "start": { - "$date": "2021-08-20T04:10:29.000Z" - }, - "end": { - "$date": "2021-08-20T06:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f994eaf-653c-4dc7-a90c-da8114966e3a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-20T04:59:13.000Z" - }, - "end": { - "$date": "2021-08-20T05:25:44.000Z" - }, - "events": [ - { - "uuid": "30c05af5-ad9e-49b2-ad9e-1bd1c31b6026", - "start": { - "$date": "2021-08-20T04:59:13.000Z" - }, - "end": { - "$date": "2021-08-20T05:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e7f1110-cd1c-45a5-9079-f93e74d5e15e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-20T05:33:59.000Z" - }, - "end": { - "$date": "2021-08-20T06:00:35.000Z" - }, - "events": [ - { - "uuid": "092b36c0-a172-49ee-bef7-2f98aae8c2b5", - "start": { - "$date": "2021-08-20T05:33:59.000Z" - }, - "end": { - "$date": "2021-08-20T06:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2affebce-5f21-4435-9800-f5097cb1b331", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T05:30:59.000Z" - }, - "end": { - "$date": "2021-08-20T06:05:24.000Z" - }, - "events": [ - { - "uuid": "fb40c7ad-5602-48a5-9c79-429794c7db2e", - "start": { - "$date": "2021-08-20T05:30:59.000Z" - }, - "end": { - "$date": "2021-08-20T06:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f8dac19b-5287-47c0-8f9c-166730e6b69d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T05:30:59.000Z" - }, - "end": { - "$date": "2021-08-20T07:15:35.000Z" - }, - "events": [ - { - "uuid": "e4749c67-b6e3-46fd-8eb9-83983c2dc897", - "start": { - "$date": "2021-08-20T05:30:59.000Z" - }, - "end": { - "$date": "2021-08-20T07:15:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fff82f2d-109d-4f3b-9f05-9122cad0f2df", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-20T07:04:43.000Z" - }, - "end": { - "$date": "2021-08-20T07:37:26.000Z" - }, - "events": [ - { - "uuid": "3ce27a9f-150b-47de-89d3-5438e95d6585", - "start": { - "$date": "2021-08-20T07:04:43.000Z" - }, - "end": { - "$date": "2021-08-20T07:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4b329412-fd3e-4754-9bd6-61bf266c51d6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-20T13:38:27.000Z" - }, - "end": { - "$date": "2021-08-20T13:46:28.000Z" - }, - "events": [ - { - "uuid": "98e61d4b-4ba8-434b-a071-2b36ac9fff48", - "start": { - "$date": "2021-08-20T13:38:27.000Z" - }, - "end": { - "$date": "2021-08-20T13:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1a29c1c0-302b-41c3-ac48-24ace2315115", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-20T13:52:43.000Z" - }, - "end": { - "$date": "2021-08-20T14:00:26.000Z" - }, - "events": [ - { - "uuid": "f0e09129-4a9d-41bc-bc0e-85944f8cc048", - "start": { - "$date": "2021-08-20T13:52:43.000Z" - }, - "end": { - "$date": "2021-08-20T14:00:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "430f438f-c6dc-4b4d-8907-b1e4bbe435f2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-20T14:36:59.000Z" - }, - "end": { - "$date": "2021-08-20T14:41:26.000Z" - }, - "events": [ - { - "uuid": "af7f5ea9-fa2c-4c4b-a797-a4cc689a6e6a", - "start": { - "$date": "2021-08-20T14:36:59.000Z" - }, - "end": { - "$date": "2021-08-20T14:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2b7e37e3-981a-42e6-8024-31e0a08b5008", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-20T16:02:13.000Z" - }, - "end": { - "$date": "2021-08-20T16:28:32.000Z" - }, - "events": [ - { - "uuid": "1368fd4e-bc3e-4c64-9889-d1d6aad4e18c", - "start": { - "$date": "2021-08-20T16:02:13.000Z" - }, - "end": { - "$date": "2021-08-20T16:24:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1b45255f-027e-4267-9fa2-2e7db01ec280", - "start": { - "$date": "2021-08-20T16:24:13.000Z" - }, - "end": { - "$date": "2021-08-20T16:28:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5910976b-e72e-42b9-b06c-89749bd149f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-20T16:28:46.000Z" - }, - "end": { - "$date": "2021-08-20T17:19:59.000Z" - }, - "events": [ - { - "uuid": "9b09963f-d627-4bdc-bbc5-647db588fb64", - "start": { - "$date": "2021-08-20T16:28:46.000Z" - }, - "end": { - "$date": "2021-08-20T17:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "748e9364-7e34-49ef-bed9-b430ca2be997", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-20T18:41:41.000Z" - }, - "end": { - "$date": "2021-08-20T19:37:00.000Z" - }, - "events": [ - { - "uuid": "8ff390e2-8eb8-4f22-a31a-5ffd7dbb6081", - "start": { - "$date": "2021-08-20T18:41:41.000Z" - }, - "end": { - "$date": "2021-08-20T19:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70fb1704-1ac3-4f5d-af8d-2d1f4a76ab6c", - "uuid": "c69ede22-0d80-4dab-83aa-cc0156fefc74", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-20T18:48:54.000Z" - }, - "end": { - "$date": "2021-08-20T19:15:31.000Z" - }, - "events": [ - { - "uuid": "6a06846b-b4b3-46b0-9564-0405b8059cd4", - "start": { - "$date": "2021-08-20T18:48:54.000Z" - }, - "end": { - "$date": "2021-08-20T19:15:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "0ef675bf-ba0b-41a1-a5e4-4a95199555aa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-20T20:05:52.000Z" - }, - "end": { - "$date": "2021-08-20T20:09:08.000Z" - }, - "events": [ - { - "uuid": "aa415687-9561-41da-8ae1-ebc07646f3a2", - "start": { - "$date": "2021-08-20T20:05:52.000Z" - }, - "end": { - "$date": "2021-08-20T20:09:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e564be61-e8f2-4286-aede-a8c43136fb2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-20T21:02:03.000Z" - }, - "end": { - "$date": "2021-08-20T21:42:38.000Z" - }, - "events": [ - { - "uuid": "bbd20a4e-4c2a-4c74-9015-8dfecb772b37", - "start": { - "$date": "2021-08-20T21:02:03.000Z" - }, - "end": { - "$date": "2021-08-20T21:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7a8f1f3c-5f79-4bca-8b87-6f849bf2c955", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T22:15:43.000Z" - }, - "end": { - "$date": "2021-08-20T22:21:03.000Z" - }, - "events": [ - { - "uuid": "70c989f4-b9c0-4c5d-b349-5f25d6a045ef", - "start": { - "$date": "2021-08-20T22:15:43.000Z" - }, - "end": { - "$date": "2021-08-20T22:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5a54e48d-bd4c-4910-8a82-93c75cc0f351", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T22:28:50.000Z" - }, - "end": { - "$date": "2021-08-20T23:21:18.000Z" - }, - "events": [ - { - "uuid": "b41c6319-f339-4a93-874a-5399df5b6af9", - "start": { - "$date": "2021-08-20T22:28:50.000Z" - }, - "end": { - "$date": "2021-08-20T23:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8b84d7c8-b01c-4ac7-87a1-a5b967b4d74d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T23:41:33.000Z" - }, - "end": { - "$date": "2021-08-20T23:43:44.000Z" - }, - "events": [ - { - "uuid": "09fc67d0-bf74-4d14-8456-516d0e8de362", - "start": { - "$date": "2021-08-20T23:41:33.000Z" - }, - "end": { - "$date": "2021-08-20T23:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92756d69-5959-4d8d-b918-2d0e68ad1126", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T23:43:53.000Z" - }, - "end": { - "$date": "2021-08-20T23:51:25.000Z" - }, - "events": [ - { - "uuid": "bf495e5d-7ea4-4b93-bc7b-830ca8f73a17", - "start": { - "$date": "2021-08-20T23:43:53.000Z" - }, - "end": { - "$date": "2021-08-20T23:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2815c471-9342-4fc0-8523-8a477bda90d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T23:51:50.000Z" - }, - "end": { - "$date": "2021-08-20T23:59:36.000Z" - }, - "events": [ - { - "uuid": "3a3c7edd-2a54-457b-b4b0-1f70b793b897", - "start": { - "$date": "2021-08-20T23:51:50.000Z" - }, - "end": { - "$date": "2021-08-20T23:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "159916ad-4a4b-459f-ade1-d44b0e024538", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-20T23:51:50.000Z" - }, - "end": { - "$date": "2021-08-21T01:02:17.000Z" - }, - "events": [ - { - "uuid": "16b3ae9c-0c6b-4c82-a04d-4527c365f2f7", - "start": { - "$date": "2021-08-20T23:51:50.000Z" - }, - "end": { - "$date": "2021-08-21T01:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c08f370a-002c-4661-853c-72cc9e51fd46", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-21T00:42:03.000Z" - }, - "end": { - "$date": "2021-08-21T07:43:03.000Z" - }, - "events": [ - { - "uuid": "25ae383a-35ed-446b-8e3b-ca22c7802d39", - "start": { - "$date": "2021-08-21T00:42:03.000Z" - }, - "end": { - "$date": "2021-08-21T07:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d8dc0d3d-0304-49d9-9365-d736f248343d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-21T01:04:27.000Z" - }, - "end": { - "$date": "2021-08-21T01:44:50.000Z" - }, - "events": [ - { - "uuid": "48f2b213-8fbe-4ce4-9365-7c7a13654ac9", - "start": { - "$date": "2021-08-21T01:04:27.000Z" - }, - "end": { - "$date": "2021-08-21T01:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4efc384d-fa05-4aa6-871d-4b7ad734ab38", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-21T01:18:31.000Z" - }, - "end": { - "$date": "2021-08-21T01:21:37.000Z" - }, - "events": [ - { - "uuid": "8a4014b2-f6f1-4f32-b82d-1cbdd1ece49d", - "start": { - "$date": "2021-08-21T01:18:31.000Z" - }, - "end": { - "$date": "2021-08-21T01:21:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b40dec19-7850-4173-acfa-2760b9c39190", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-21T01:21:46.000Z" - }, - "end": { - "$date": "2021-08-21T01:26:37.000Z" - }, - "events": [ - { - "uuid": "6f10ea33-f6a2-4403-86ba-66dcc84965a5", - "start": { - "$date": "2021-08-21T01:21:46.000Z" - }, - "end": { - "$date": "2021-08-21T01:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f2bb9cfc-4a6d-41e3-bf51-8c676e76c259", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-21T01:27:47.000Z" - }, - "end": { - "$date": "2021-08-21T02:13:24.000Z" - }, - "events": [ - { - "uuid": "ff26b828-4181-4a77-a932-9f5a455d7112", - "start": { - "$date": "2021-08-21T01:27:47.000Z" - }, - "end": { - "$date": "2021-08-21T02:13:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "deedb00e-f825-40a7-9880-b3ea2144a08e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-21T01:53:23.000Z" - }, - "end": { - "$date": "2021-08-21T03:55:23.000Z" - }, - "events": [ - { - "uuid": "c5a96faf-94c6-4e9f-874f-b6888b09292e", - "start": { - "$date": "2021-08-21T01:53:23.000Z" - }, - "end": { - "$date": "2021-08-21T02:33:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e2b2daa-1e87-47fe-9abc-d75ecd64bd93", - "start": { - "$date": "2021-08-21T02:33:23.000Z" - }, - "end": { - "$date": "2021-08-21T02:47:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dae08226-0f2b-43a9-8c2d-56d7e6706667", - "start": { - "$date": "2021-08-21T02:47:23.000Z" - }, - "end": { - "$date": "2021-08-21T03:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "89f07535-13ab-4c48-8b25-c10b6c66f6aa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-21T02:37:04.000Z" - }, - "end": { - "$date": "2021-08-21T02:52:40.000Z" - }, - "events": [ - { - "uuid": "42a43e5c-f00d-4a46-b769-40bdce4fa0d9", - "start": { - "$date": "2021-08-21T02:37:04.000Z" - }, - "end": { - "$date": "2021-08-21T02:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca577b72-a646-40b5-ba12-c4d225b9b8c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-21T03:59:03.000Z" - }, - "end": { - "$date": "2021-08-21T04:00:47.000Z" - }, - "events": [ - { - "uuid": "fddff204-8fab-4f03-958d-e2c5038fe205", - "start": { - "$date": "2021-08-21T03:59:03.000Z" - }, - "end": { - "$date": "2021-08-21T04:00:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d81d1b58-57c4-425f-997d-8e9b706bbd15", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-21T03:59:04.000Z" - }, - "end": { - "$date": "2021-08-21T06:58:48.000Z" - }, - "events": [ - { - "uuid": "67ab3401-7318-4618-8b3d-fac6f2156fd8", - "start": { - "$date": "2021-08-21T03:59:04.000Z" - }, - "end": { - "$date": "2021-08-21T06:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e791edd5-53f7-4a99-9783-31eb5634bc17", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-21T05:27:19.000Z" - }, - "end": { - "$date": "2021-08-21T06:03:55.000Z" - }, - "events": [ - { - "uuid": "a484c0aa-4cf8-4bd1-a4df-8a7f1bd0ee4f", - "start": { - "$date": "2021-08-21T05:27:19.000Z" - }, - "end": { - "$date": "2021-08-21T06:03:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a16efaad-8b8c-4a66-9fe1-71416b60754b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-21T08:31:34.000Z" - }, - "end": { - "$date": "2021-08-21T08:52:09.000Z" - }, - "events": [ - { - "uuid": "925107bf-2fc8-439e-b25e-b155d6380dea", - "start": { - "$date": "2021-08-21T08:31:34.000Z" - }, - "end": { - "$date": "2021-08-21T08:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e50cc602-17bb-4f11-8458-1754beac121c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-21T13:48:08.000Z" - }, - "end": { - "$date": "2021-08-21T14:24:55.000Z" - }, - "events": [ - { - "uuid": "2f4074d4-0a34-4376-97d7-01fd3c681c3e", - "start": { - "$date": "2021-08-21T13:48:08.000Z" - }, - "end": { - "$date": "2021-08-21T14:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "73eca36d-a285-4f95-aa25-e324d841a56f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-21T17:38:55.000Z" - }, - "end": { - "$date": "2021-08-21T18:30:19.000Z" - }, - "events": [ - { - "uuid": "da4f30a9-6830-4e6f-a126-9507f9623721", - "start": { - "$date": "2021-08-21T17:38:55.000Z" - }, - "end": { - "$date": "2021-08-21T18:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c370a8f2-24e1-435c-876d-a0dc96ca5450", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-21T18:52:04.000Z" - }, - "end": { - "$date": "2021-08-21T19:51:25.000Z" - }, - "events": [ - { - "uuid": "c398ddff-4a94-4df5-8cd0-aca523a644e2", - "start": { - "$date": "2021-08-21T18:52:04.000Z" - }, - "end": { - "$date": "2021-08-21T19:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1fb03d6-45b9-4192-8e87-73303de5bec9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-21T19:21:45.000Z" - }, - "end": { - "$date": "2021-08-21T19:53:57.000Z" - }, - "events": [ - { - "uuid": "9bc48ade-5e5f-484b-bcd7-ba292c6efad9", - "start": { - "$date": "2021-08-21T19:21:45.000Z" - }, - "end": { - "$date": "2021-08-21T19:53:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "764f0419-5ed5-48ca-93e6-766e64d582c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-21T19:49:22.000Z" - }, - "end": { - "$date": "2021-08-21T20:00:03.000Z" - }, - "events": [ - { - "uuid": "03161924-3b9e-4d34-96e0-9d65a49e78b4", - "start": { - "$date": "2021-08-21T19:49:22.000Z" - }, - "end": { - "$date": "2021-08-21T20:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e2a4063-4f9b-4aeb-9bb8-2bc59ffdb641", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-21T19:54:48.000Z" - }, - "end": { - "$date": "2021-08-21T22:07:30.000Z" - }, - "events": [ - { - "uuid": "d8678c7e-857c-450d-b5c7-87ad5198bdda", - "start": { - "$date": "2021-08-21T19:54:48.000Z" - }, - "end": { - "$date": "2021-08-21T22:07:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "6ad1beac-9430-450d-ba1d-4e12ca5c4977", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-21T20:04:03.000Z" - }, - "end": { - "$date": "2021-08-21T21:08:43.000Z" - }, - "events": [ - { - "uuid": "8c0041fc-3c8c-4a66-97a9-8404eb9f4e6c", - "start": { - "$date": "2021-08-21T20:04:03.000Z" - }, - "end": { - "$date": "2021-08-21T21:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dd87b163-93ac-4b10-ac42-e899e3ed01c8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-21T22:57:02.000Z" - }, - "end": { - "$date": "2021-08-22T02:52:56.000Z" - }, - "events": [ - { - "uuid": "95d01da3-5e4a-4a6f-bbb8-d724e09261f3", - "start": { - "$date": "2021-08-21T22:57:02.000Z" - }, - "end": { - "$date": "2021-08-22T02:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7db543f3-dac5-4fdb-a639-6643b112c8b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T00:05:21.000Z" - }, - "end": { - "$date": "2021-08-22T00:06:01.000Z" - }, - "events": [ - { - "uuid": "ddb2fe99-0c7c-43d2-8db6-94425dd2c539", - "start": { - "$date": "2021-08-22T00:05:21.000Z" - }, - "end": { - "$date": "2021-08-22T00:06:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f1b8fa63-6be4-4e18-9897-b14874cd1e01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T00:06:21.000Z" - }, - "end": { - "$date": "2021-08-22T00:07:26.000Z" - }, - "events": [ - { - "uuid": "0a868d65-c38a-4714-87cf-b30caa85b231", - "start": { - "$date": "2021-08-22T00:06:21.000Z" - }, - "end": { - "$date": "2021-08-22T00:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d7a93cd5-9f7e-4dfe-becf-78f2b06eeab8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T00:07:36.000Z" - }, - "end": { - "$date": "2021-08-22T00:16:24.000Z" - }, - "events": [ - { - "uuid": "c2d68072-b53f-488e-a9ac-e7a4bfa5373e", - "start": { - "$date": "2021-08-22T00:07:36.000Z" - }, - "end": { - "$date": "2021-08-22T00:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "970f4357-d741-4ef2-9d25-c2f9dd09fc00", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T00:16:39.000Z" - }, - "end": { - "$date": "2021-08-22T00:18:04.000Z" - }, - "events": [ - { - "uuid": "2c079338-f862-44cb-ad1c-b1b45a8b6119", - "start": { - "$date": "2021-08-22T00:16:39.000Z" - }, - "end": { - "$date": "2021-08-22T00:18:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "67b2027d-ba9e-44fc-b725-dbcbac8dbc53", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-22T00:17:13.000Z" - }, - "end": { - "$date": "2021-08-22T02:46:01.000Z" - }, - "events": [ - { - "uuid": "e63fe2ec-17cf-4365-af01-53c1bc1d8528", - "start": { - "$date": "2021-08-22T00:17:13.000Z" - }, - "end": { - "$date": "2021-08-22T02:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "059db24a-91d6-4e03-99a0-494eb061d93c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T01:00:01.000Z" - }, - "end": { - "$date": "2021-08-22T01:11:12.000Z" - }, - "events": [ - { - "uuid": "2d60233a-493c-49b5-8b60-b8786c6595d6", - "start": { - "$date": "2021-08-22T01:00:01.000Z" - }, - "end": { - "$date": "2021-08-22T01:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "14234b9d-6410-48e0-b406-e96f1fa0ce44", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T01:40:58.000Z" - }, - "end": { - "$date": "2021-08-22T03:34:33.000Z" - }, - "events": [ - { - "uuid": "2ba0779f-123b-4ef3-a8f9-e47c2ca54f89", - "start": { - "$date": "2021-08-22T01:40:58.000Z" - }, - "end": { - "$date": "2021-08-22T03:34:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5a9f7a9-7e10-41ec-aded-7fdea69000fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-22T02:27:29.000Z" - }, - "end": { - "$date": "2021-08-22T02:55:35.000Z" - }, - "events": [ - { - "uuid": "45001902-7cf7-4340-8771-7832a90054f2", - "start": { - "$date": "2021-08-22T02:27:29.000Z" - }, - "end": { - "$date": "2021-08-22T02:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03593e52-d8d7-4794-9c96-a8ea2f5840fc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T02:22:44.000Z" - }, - "end": { - "$date": "2021-08-22T02:24:08.000Z" - }, - "events": [ - { - "uuid": "b09e9779-4ed9-4650-b9dd-084469d12028", - "start": { - "$date": "2021-08-22T02:22:44.000Z" - }, - "end": { - "$date": "2021-08-22T02:24:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0604ae9-83fc-4494-9aa4-8ca0ed2dd7b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T02:27:59.000Z" - }, - "end": { - "$date": "2021-08-22T02:55:40.000Z" - }, - "events": [ - { - "uuid": "2dda0b94-b7f1-41a4-bec6-b92c893f8717", - "start": { - "$date": "2021-08-22T02:27:59.000Z" - }, - "end": { - "$date": "2021-08-22T02:55:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a65c237-0d7e-4381-b375-c03313d1def2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T02:27:59.000Z" - }, - "end": { - "$date": "2021-08-22T02:55:25.000Z" - }, - "events": [ - { - "uuid": "8552dc68-dd38-4979-bd18-befc01331050", - "start": { - "$date": "2021-08-22T02:27:59.000Z" - }, - "end": { - "$date": "2021-08-22T02:55:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e50ada0b-9c41-4485-a5fb-d56b2e023f05", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-22T03:04:06.000Z" - }, - "end": { - "$date": "2021-08-22T03:19:32.000Z" - }, - "events": [ - { - "uuid": "705b0fda-276f-41bf-8b99-0703f7ac681d", - "start": { - "$date": "2021-08-22T03:04:06.000Z" - }, - "end": { - "$date": "2021-08-22T03:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7c9e3ba-20c0-4e55-a30f-fca98ed975ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T03:02:45.000Z" - }, - "end": { - "$date": "2021-08-22T03:19:36.000Z" - }, - "events": [ - { - "uuid": "1139108f-0f8c-4673-8156-2093faf1f834", - "start": { - "$date": "2021-08-22T03:02:45.000Z" - }, - "end": { - "$date": "2021-08-22T03:19:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70cb59fe-9cc0-4eec-94fa-c547f77182f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T03:02:04.000Z" - }, - "end": { - "$date": "2021-08-22T03:19:31.000Z" - }, - "events": [ - { - "uuid": "b3fd5da6-b7d2-475d-8da2-493c34f958d4", - "start": { - "$date": "2021-08-22T03:02:04.000Z" - }, - "end": { - "$date": "2021-08-22T03:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88ffa25e-635a-416b-950a-f5dbd1e6c603", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-22T03:23:47.000Z" - }, - "end": { - "$date": "2021-08-22T03:46:33.000Z" - }, - "events": [ - { - "uuid": "1d8b3b1f-2f2e-424b-a5ee-348def00e758", - "start": { - "$date": "2021-08-22T03:23:47.000Z" - }, - "end": { - "$date": "2021-08-22T03:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f473eac-8017-4f9d-b8df-8a7c579d8153", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T03:24:56.000Z" - }, - "end": { - "$date": "2021-08-22T03:46:36.000Z" - }, - "events": [ - { - "uuid": "dc65a8d7-540a-4bfa-b325-5ac38a49106d", - "start": { - "$date": "2021-08-22T03:24:56.000Z" - }, - "end": { - "$date": "2021-08-22T03:46:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da808447-be3b-40c6-a399-9a0fb446017a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T03:25:05.000Z" - }, - "end": { - "$date": "2021-08-22T03:46:31.000Z" - }, - "events": [ - { - "uuid": "443f9287-6a25-4a68-8275-07875042b590", - "start": { - "$date": "2021-08-22T03:25:05.000Z" - }, - "end": { - "$date": "2021-08-22T03:46:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6624ad5-9967-41d8-8d5d-05fc3ce88f76", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-22T03:53:24.000Z" - }, - "end": { - "$date": "2021-08-22T04:11:21.000Z" - }, - "events": [ - { - "uuid": "61570bd7-0d79-404d-b808-991fcc34c15d", - "start": { - "$date": "2021-08-22T03:53:24.000Z" - }, - "end": { - "$date": "2021-08-22T04:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b09c1b55-0fd3-496e-9800-6566e45521a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T03:49:39.000Z" - }, - "end": { - "$date": "2021-08-22T03:50:08.000Z" - }, - "events": [ - { - "uuid": "02ca20b0-211d-478a-9ba8-116d7c58984d", - "start": { - "$date": "2021-08-22T03:49:39.000Z" - }, - "end": { - "$date": "2021-08-22T03:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20aa591b-4a1f-4223-9740-3f96b96ea0f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T03:49:40.000Z" - }, - "end": { - "$date": "2021-08-22T03:50:07.000Z" - }, - "events": [ - { - "uuid": "a92c03c6-67db-464a-b976-1b633b9ddfab", - "start": { - "$date": "2021-08-22T03:49:40.000Z" - }, - "end": { - "$date": "2021-08-22T03:50:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa9ca55f-d2e5-4bda-8bb4-615cad568a30", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T04:09:56.000Z" - }, - "end": { - "$date": "2021-08-22T04:11:17.000Z" - }, - "events": [ - { - "uuid": "a8a36687-5505-4073-a16d-0d49cd7c257e", - "start": { - "$date": "2021-08-22T04:09:56.000Z" - }, - "end": { - "$date": "2021-08-22T04:11:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c6ffc56-0de0-4830-b34d-ff89baf7fdb8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T04:07:50.000Z" - }, - "end": { - "$date": "2021-08-22T04:11:12.000Z" - }, - "events": [ - { - "uuid": "e25ffc30-c1e0-4667-9825-2a7361d2346f", - "start": { - "$date": "2021-08-22T04:07:50.000Z" - }, - "end": { - "$date": "2021-08-22T04:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "90d35983-cee1-4826-bf75-24c057be7579", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-22T04:13:58.000Z" - }, - "end": { - "$date": "2021-08-22T07:20:22.000Z" - }, - "events": [ - { - "uuid": "ba18f8ad-7e48-4497-a002-d0ce16b28cdb", - "start": { - "$date": "2021-08-22T04:13:58.000Z" - }, - "end": { - "$date": "2021-08-22T07:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38f23859-1c39-4836-b71e-c8b4cc431248", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T04:11:16.000Z" - }, - "end": { - "$date": "2021-08-22T04:37:14.000Z" - }, - "events": [ - { - "uuid": "e302b9fa-6103-4dd8-b81a-753835ffb82a", - "start": { - "$date": "2021-08-22T04:11:16.000Z" - }, - "end": { - "$date": "2021-08-22T04:37:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94ba568f-46f7-4bad-84e9-1889a2829da9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-22T05:25:22.000Z" - }, - "end": { - "$date": "2021-08-22T05:58:34.000Z" - }, - "events": [ - { - "uuid": "6715f48e-4a39-44d9-adb7-aaaff39818bd", - "start": { - "$date": "2021-08-22T05:25:22.000Z" - }, - "end": { - "$date": "2021-08-22T05:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48bcd24b-c069-4006-a3d8-bcbf4a28a028", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-22T06:27:22.000Z" - }, - "end": { - "$date": "2021-08-22T06:52:33.000Z" - }, - "events": [ - { - "uuid": "7a37314d-625e-4a27-90dc-3cc3eefbcb0f", - "start": { - "$date": "2021-08-22T06:27:22.000Z" - }, - "end": { - "$date": "2021-08-22T06:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6d5e7b1-cf70-4b83-bbd9-2d8fab14a2c7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-22T06:57:18.000Z" - }, - "end": { - "$date": "2021-08-22T07:35:49.000Z" - }, - "events": [ - { - "uuid": "2def34b5-269f-45a1-8d24-0a406aeee10a", - "start": { - "$date": "2021-08-22T06:57:18.000Z" - }, - "end": { - "$date": "2021-08-22T07:35:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2d1aafde-1ced-4425-bfc3-ebac43c63a0a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T07:02:25.000Z" - }, - "end": { - "$date": "2021-08-22T07:05:10.000Z" - }, - "events": [ - { - "uuid": "ff4f96d4-aa3a-4e85-bfe3-e410add6d1aa", - "start": { - "$date": "2021-08-22T07:02:25.000Z" - }, - "end": { - "$date": "2021-08-22T07:05:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a524443b-6877-4b34-9a39-77e02f242da2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T07:09:11.000Z" - }, - "end": { - "$date": "2021-08-22T08:24:19.000Z" - }, - "events": [ - { - "uuid": "635ba8e7-8147-4e1d-92e6-0ca5c364b620", - "start": { - "$date": "2021-08-22T07:09:11.000Z" - }, - "end": { - "$date": "2021-08-22T08:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbdb8415-9e5b-4b81-9d86-7ca6927d08b9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-22T07:52:11.000Z" - }, - "end": { - "$date": "2021-08-22T08:23:21.000Z" - }, - "events": [ - { - "uuid": "a1a9034a-3c2b-4924-99f5-b3d5fccc87d8", - "start": { - "$date": "2021-08-22T07:52:11.000Z" - }, - "end": { - "$date": "2021-08-22T08:23:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c190e848-d034-4fa6-b1aa-fb72d202897b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T08:40:52.000Z" - }, - "end": { - "$date": "2021-08-22T08:55:38.000Z" - }, - "events": [ - { - "uuid": "1ed22471-78f2-4d64-aa1a-0c742fc940d3", - "start": { - "$date": "2021-08-22T08:40:52.000Z" - }, - "end": { - "$date": "2021-08-22T08:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff2f1df4-4f58-4d11-bb4c-9219e1d4c373", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T08:40:52.000Z" - }, - "end": { - "$date": "2021-08-22T09:04:27.000Z" - }, - "events": [ - { - "uuid": "7667dd40-9fc3-47c5-ba69-c1031d48b45a", - "start": { - "$date": "2021-08-22T08:40:52.000Z" - }, - "end": { - "$date": "2021-08-22T09:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "e84869f6-eb7b-4adc-8e84-cd17ef7ef361", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-22T19:33:40.000Z" - }, - "end": { - "$date": "2021-08-22T19:52:58.000Z" - }, - "events": [ - { - "uuid": "7a076bde-1187-4481-9db7-f2b47c317ee2", - "start": { - "$date": "2021-08-22T19:33:40.000Z" - }, - "end": { - "$date": "2021-08-22T19:52:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "311295bd-41d0-4cc2-a84b-81e27afa6065", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T15:37:22.000Z" - }, - "end": { - "$date": "2021-08-22T17:30:01.000Z" - }, - "events": [ - { - "uuid": "c0f37dc9-d90c-4041-9c5c-be787ca6d216", - "start": { - "$date": "2021-08-22T15:37:22.000Z" - }, - "end": { - "$date": "2021-08-22T17:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "d2c0c96d-b01d-4848-8be4-02c802e41ca6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T15:57:27.000Z" - }, - "end": { - "$date": "2021-08-22T16:00:48.000Z" - }, - "events": [ - { - "uuid": "27e07578-345e-4db8-9a47-c6c945c62d4f", - "start": { - "$date": "2021-08-22T15:57:27.000Z" - }, - "end": { - "$date": "2021-08-22T16:00:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "d8480016-593b-4b2f-b9c3-06a3c138bb8a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T16:01:24.000Z" - }, - "end": { - "$date": "2021-08-22T16:03:50.000Z" - }, - "events": [ - { - "uuid": "42ac2d08-1448-46be-a8c2-d7231d6d5bc9", - "start": { - "$date": "2021-08-22T16:01:24.000Z" - }, - "end": { - "$date": "2021-08-22T16:03:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "2d08d4ee-cbc5-4bea-8f66-3962cc9b3160", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T16:04:41.000Z" - }, - "end": { - "$date": "2021-08-22T16:07:06.000Z" - }, - "events": [ - { - "uuid": "1fe5182d-ebf9-41f7-b814-36bfd00b3af5", - "start": { - "$date": "2021-08-22T16:04:41.000Z" - }, - "end": { - "$date": "2021-08-22T16:07:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "cb7aaa12-c5f6-4287-bb60-a64b1ea51cf0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T16:07:37.000Z" - }, - "end": { - "$date": "2021-08-22T16:21:15.000Z" - }, - "events": [ - { - "uuid": "8c3d6d2b-0e26-43be-b020-66c2ac8e44d7", - "start": { - "$date": "2021-08-22T16:07:37.000Z" - }, - "end": { - "$date": "2021-08-22T16:21:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "379e0c72-a33a-4da6-a8a4-4a7971190243", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T16:21:36.000Z" - }, - "end": { - "$date": "2021-08-22T16:52:42.000Z" - }, - "events": [ - { - "uuid": "5c279517-edb2-4552-8fff-f64cf95c3bbe", - "start": { - "$date": "2021-08-22T16:21:36.000Z" - }, - "end": { - "$date": "2021-08-22T16:52:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2df353e9-0b6a-41ba-9874-c9692b6cbced", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-22T16:41:55.000Z" - }, - "end": { - "$date": "2021-08-22T16:46:27.000Z" - }, - "events": [ - { - "uuid": "56cbbdfa-3307-4459-a67c-25079af43c4c", - "start": { - "$date": "2021-08-22T16:41:55.000Z" - }, - "end": { - "$date": "2021-08-22T16:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "60dc1338-3f03-4ab9-95b6-f8f93247d5f2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T16:53:27.000Z" - }, - "end": { - "$date": "2021-08-22T17:23:40.000Z" - }, - "events": [ - { - "uuid": "b64c33da-766c-40e6-9d91-5c2fd4b20543", - "start": { - "$date": "2021-08-22T16:53:27.000Z" - }, - "end": { - "$date": "2021-08-22T17:23:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "501f368f-9e92-46d0-8647-774256d0351e", - "uuid": "76ea0a4e-dd94-4a52-97bf-887a215e262d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T17:27:28.000Z" - }, - "end": { - "$date": "2021-08-22T17:36:38.000Z" - }, - "events": [ - { - "uuid": "3bdd50d1-fe2a-4109-9899-48c0745aadae", - "start": { - "$date": "2021-08-22T17:27:28.000Z" - }, - "end": { - "$date": "2021-08-22T17:36:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", - "uuid": "926a3992-b6c9-415e-80bb-da568d5c9100", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T17:36:48.000Z" - }, - "end": { - "$date": "2021-08-22T18:21:28.000Z" - }, - "events": [ - { - "uuid": "d78e2a18-eca2-4511-aad8-ec9fded0b53a", - "start": { - "$date": "2021-08-22T17:36:48.000Z" - }, - "end": { - "$date": "2021-08-22T18:21:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", - "uuid": "296e5c32-81b3-4d43-a889-30fa70b599b7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T18:21:33.000Z" - }, - "end": { - "$date": "2021-08-22T18:53:40.000Z" - }, - "events": [ - { - "uuid": "e151d8bb-42e3-4478-b170-574501adf220", - "start": { - "$date": "2021-08-22T18:21:33.000Z" - }, - "end": { - "$date": "2021-08-22T18:53:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ad91f1b2-d022-41c9-8603-bb3e80651cea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-22T19:20:09.000Z" - }, - "end": { - "$date": "2021-08-22T19:32:25.000Z" - }, - "events": [ - { - "uuid": "9a5d390f-c411-4596-8e7a-c0d0890f2d82", - "start": { - "$date": "2021-08-22T19:20:09.000Z" - }, - "end": { - "$date": "2021-08-22T19:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "fd5aa846-652f-4d80-a262-fc8ee69edf01", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-22T20:03:15.000Z" - }, - "end": { - "$date": "2021-08-22T20:55:36.000Z" - }, - "events": [ - { - "uuid": "a21ece93-48fe-46ee-9a7c-89b84f9e4e31", - "start": { - "$date": "2021-08-22T20:03:15.000Z" - }, - "end": { - "$date": "2021-08-22T20:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "99fb5bab-bd50-4e54-b08d-d75964a6c0f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-22T20:55:51.000Z" - }, - "end": { - "$date": "2021-08-22T21:07:13.000Z" - }, - "events": [ - { - "uuid": "5494dcf7-5240-460a-bebe-e252e652ee8a", - "start": { - "$date": "2021-08-22T20:55:51.000Z" - }, - "end": { - "$date": "2021-08-22T21:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5252e3f7-a8ba-4ad0-947c-bf94a89c28c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-22T20:59:48.000Z" - }, - "end": { - "$date": "2021-08-22T21:46:26.000Z" - }, - "events": [ - { - "uuid": "d5404559-fadc-43fd-9630-8959731a935e", - "start": { - "$date": "2021-08-22T20:59:48.000Z" - }, - "end": { - "$date": "2021-08-22T21:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", - "uuid": "dbf50ef8-5562-49f4-9c38-291ff36e2599", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-22T21:12:51.000Z" - }, - "end": { - "$date": "2021-08-22T21:35:31.000Z" - }, - "events": [ - { - "uuid": "8d46d8e0-3333-44a0-a34b-2fe9a45e59bd", - "start": { - "$date": "2021-08-22T21:12:51.000Z" - }, - "end": { - "$date": "2021-08-22T21:35:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "474809cc-2476-48a1-ba28-b0e10278fd53", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T21:50:28.000Z" - }, - "end": { - "$date": "2021-08-22T22:02:41.000Z" - }, - "events": [ - { - "uuid": "c6a6a260-cb47-42c6-8733-ae3434ad56e3", - "start": { - "$date": "2021-08-22T21:50:28.000Z" - }, - "end": { - "$date": "2021-08-22T22:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "408c7509-83df-4b30-afa6-dff0c1461823", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T21:50:28.000Z" - }, - "end": { - "$date": "2021-08-22T22:19:40.000Z" - }, - "events": [ - { - "uuid": "0f240013-398b-44e2-960d-40cc4899685d", - "start": { - "$date": "2021-08-22T21:50:28.000Z" - }, - "end": { - "$date": "2021-08-22T22:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "2c7c0e24-0a49-4643-a53b-85f8e0ded557", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-22T22:12:22.000Z" - }, - "end": { - "$date": "2021-08-23T00:00:07.000Z" - }, - "events": [ - { - "uuid": "6a8b9c30-0e13-47ff-a120-3604ca1090c7", - "start": { - "$date": "2021-08-22T22:12:22.000Z" - }, - "end": { - "$date": "2021-08-23T00:00:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b44ef5da-3e7e-4692-82a7-4e9634a9ddbe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-22T22:16:12.000Z" - }, - "end": { - "$date": "2021-08-22T22:29:14.000Z" - }, - "events": [ - { - "uuid": "d54f4b14-856a-4437-8cbc-71e35872e04a", - "start": { - "$date": "2021-08-22T22:16:12.000Z" - }, - "end": { - "$date": "2021-08-22T22:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1e9e59e-6871-4618-95cb-2b7b9f9c3103", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T21:50:28.000Z" - }, - "end": { - "$date": "2021-08-22T22:39:49.000Z" - }, - "events": [ - { - "uuid": "481136f7-42a2-4e2f-beb9-b6c165422eed", - "start": { - "$date": "2021-08-22T21:50:28.000Z" - }, - "end": { - "$date": "2021-08-22T22:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3c1127ed-6406-43f4-a2e0-485b79728a4f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-22T23:36:37.000Z" - }, - "events": [ - { - "uuid": "1ed00076-7795-4d30-9bea-70a08dc6a486", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-22T23:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "980a990d-8182-4b87-95f3-d08666c60837", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-22T23:43:44.000Z" - }, - "events": [ - { - "uuid": "7bce3f84-c635-41d6-a59a-23b71ccb0c8a", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-22T23:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "09357eb8-f830-44e7-90a9-5b6f7bafc730", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-22T23:55:42.000Z" - }, - "events": [ - { - "uuid": "b2e61bc6-d5bc-4472-bf88-ba096776d8bb", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-22T23:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e05ffcc6-20da-4559-b443-1741512bfdc1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-23T00:21:28.000Z" - }, - "events": [ - { - "uuid": "98d381c7-00a5-4dc6-b719-2b8745d62949", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-23T00:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "40267fb2-e69e-465d-bcff-6c51033cfdd9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T00:04:53.000Z" - }, - "end": { - "$date": "2021-08-23T00:46:44.000Z" - }, - "events": [ - { - "uuid": "5234a13e-c3e6-4b2b-9f05-410ec8f71146", - "start": { - "$date": "2021-08-23T00:04:53.000Z" - }, - "end": { - "$date": "2021-08-23T00:46:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92e4d31c-373b-44f5-963f-b5aebc438c96", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-23T00:37:44.000Z" - }, - "events": [ - { - "uuid": "82f54cae-29b2-40e3-a946-d163feed03c0", - "start": { - "$date": "2021-08-22T22:52:16.000Z" - }, - "end": { - "$date": "2021-08-23T00:37:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "60bd5064-d2e7-48f7-80e2-52be3626816f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-23T00:23:15.000Z" - }, - "end": { - "$date": "2021-08-23T03:15:00.000Z" - }, - "events": [ - { - "uuid": "dc4d39ce-e222-4412-b31b-b2cb8887dd7d", - "start": { - "$date": "2021-08-23T00:23:15.000Z" - }, - "end": { - "$date": "2021-08-23T03:15:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "215b4209-d231-4037-aa5c-64915faf4271", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T01:26:16.000Z" - }, - "events": [ - { - "uuid": "e4778102-307b-4890-b177-725defb5c368", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T01:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "f2f31e0e-d536-4714-a9f4-33652d75e045", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T01:19:17.000Z" - }, - "end": { - "$date": "2021-08-23T02:07:11.000Z" - }, - "events": [ - { - "uuid": "bf49cd16-ff85-4d9e-8bf4-100798b57a92", - "start": { - "$date": "2021-08-23T01:19:17.000Z" - }, - "end": { - "$date": "2021-08-23T02:07:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f9d8a6b7-e6fd-40e7-bc3e-3796990772f3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T01:40:21.000Z" - }, - "events": [ - { - "uuid": "16e99508-cbdd-4ee8-a9ff-49b5efe27893", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T01:40:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3f495764-0a07-496f-a577-01d2c069a831", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T01:51:45.000Z" - }, - "events": [ - { - "uuid": "62d49508-1f5b-487c-a9ee-abc35592911c", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T01:51:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "420e078b-5a3e-40fb-b676-521b240959c2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T02:46:37.000Z" - }, - "events": [ - { - "uuid": "76e4c1f4-3d28-4fcd-bbea-fcf4eb54ffb9", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T02:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "11d7d6ac-a3b8-47ec-9859-1da9422a807c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-23T02:03:01.000Z" - }, - "end": { - "$date": "2021-08-23T02:07:52.000Z" - }, - "events": [ - { - "uuid": "9ef2d607-e51e-48b7-98f6-e5780155d494", - "start": { - "$date": "2021-08-23T02:03:01.000Z" - }, - "end": { - "$date": "2021-08-23T02:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "ad5a074c-c845-4110-81af-6512a434907b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-23T02:44:49.000Z" - }, - "end": { - "$date": "2021-08-23T03:38:53.000Z" - }, - "events": [ - { - "uuid": "35d26e7b-f777-4c08-8eb4-beb518a257c3", - "start": { - "$date": "2021-08-23T02:44:49.000Z" - }, - "end": { - "$date": "2021-08-23T03:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0a8c624c-665b-4c08-852b-7011bee394c2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T02:58:51.000Z" - }, - "events": [ - { - "uuid": "7d7e8278-943a-4650-965d-a02d17c38aaa", - "start": { - "$date": "2021-08-23T01:16:05.000Z" - }, - "end": { - "$date": "2021-08-23T02:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "860a38f2-5a36-447d-ba7c-fa51dcc00afc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-23T03:11:22.000Z" - }, - "end": { - "$date": "2021-08-23T03:40:44.000Z" - }, - "events": [ - { - "uuid": "f89621b6-452e-4fcb-9b1c-b70e37be70c5", - "start": { - "$date": "2021-08-23T03:11:22.000Z" - }, - "end": { - "$date": "2021-08-23T03:40:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6b895957-2982-4022-b903-c81c51af4f78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-23T03:18:34.000Z" - }, - "end": { - "$date": "2021-08-23T05:51:17.000Z" - }, - "events": [ - { - "uuid": "360e1a49-4ebd-4391-bae7-e8c0e856c63e", - "start": { - "$date": "2021-08-23T03:18:34.000Z" - }, - "end": { - "$date": "2021-08-23T05:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "05f0a04b-3bb5-48c9-b0e2-d8649fca51cd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T03:37:58.000Z" - }, - "end": { - "$date": "2021-08-23T03:47:46.000Z" - }, - "events": [ - { - "uuid": "b2b33fd9-f139-48a5-958c-591509edb60b", - "start": { - "$date": "2021-08-23T03:37:58.000Z" - }, - "end": { - "$date": "2021-08-23T03:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b3b1983-55be-42af-b70a-4e5e6618eb7e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-23T03:45:33.000Z" - }, - "end": { - "$date": "2021-08-23T04:10:49.000Z" - }, - "events": [ - { - "uuid": "e475a9c2-252b-4400-997f-57ba2628265e", - "start": { - "$date": "2021-08-23T03:45:33.000Z" - }, - "end": { - "$date": "2021-08-23T04:10:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "049d6df8-4dc0-42a3-a1c0-9bc267df1cc6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T03:48:24.000Z" - }, - "end": { - "$date": "2021-08-23T04:03:43.000Z" - }, - "events": [ - { - "uuid": "75e46934-b87e-458a-b763-f20b0a2790a7", - "start": { - "$date": "2021-08-23T03:48:24.000Z" - }, - "end": { - "$date": "2021-08-23T04:03:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f043cb3e-78fe-4ca1-b8ee-eb020f37221a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-23T04:16:04.000Z" - }, - "end": { - "$date": "2021-08-23T04:55:36.000Z" - }, - "events": [ - { - "uuid": "39e3afdd-368c-4085-a66c-10066bcabadb", - "start": { - "$date": "2021-08-23T04:16:04.000Z" - }, - "end": { - "$date": "2021-08-23T04:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "aed7f56f-fe86-4792-a682-c1882ac22ec6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-23T05:50:10.000Z" - }, - "end": { - "$date": "2021-08-23T06:53:51.000Z" - }, - "events": [ - { - "uuid": "847379cf-fbcf-4dc7-8ce3-77d202c60fd7", - "start": { - "$date": "2021-08-23T05:50:10.000Z" - }, - "end": { - "$date": "2021-08-23T06:53:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "e7dbed34-2d09-49b7-a8ac-43c06d5c59db", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T14:33:52.000Z" - }, - "end": { - "$date": "2021-08-23T15:10:24.000Z" - }, - "events": [ - { - "uuid": "9998bc29-c4d9-4a36-b46a-3425891d0c31", - "start": { - "$date": "2021-08-23T14:33:52.000Z" - }, - "end": { - "$date": "2021-08-23T15:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3e66be5f-7383-48e4-bcb4-23fa135067c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T15:10:44.000Z" - }, - "end": { - "$date": "2021-08-23T15:28:56.000Z" - }, - "events": [ - { - "uuid": "41b576df-8115-4d18-9970-10af68de17d7", - "start": { - "$date": "2021-08-23T15:10:44.000Z" - }, - "end": { - "$date": "2021-08-23T15:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "83c55b9c-5bcb-4da1-b97a-c3f6996b8d58", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-23T15:27:35.000Z" - }, - "end": { - "$date": "2021-08-23T15:28:49.000Z" - }, - "events": [ - { - "uuid": "13313d93-736b-4936-922e-5ac380e17938", - "start": { - "$date": "2021-08-23T15:27:35.000Z" - }, - "end": { - "$date": "2021-08-23T15:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "6642939a-ff3d-4dce-855e-0a550bc78745", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-23T15:28:55.000Z" - }, - "end": { - "$date": "2021-08-23T18:17:52.000Z" - }, - "events": [ - { - "uuid": "8e196326-1d14-44ed-92d8-d363f80c36e9", - "start": { - "$date": "2021-08-23T15:28:55.000Z" - }, - "end": { - "$date": "2021-08-23T18:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "f43cf9de-acbd-4e33-bef7-b63d2a8da2bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T15:38:22.000Z" - }, - "end": { - "$date": "2021-08-23T22:56:58.000Z" - }, - "events": [ - { - "uuid": "43063e99-1b05-4ded-8ba6-ff4a6d704921", - "start": { - "$date": "2021-08-23T15:38:22.000Z" - }, - "end": { - "$date": "2021-08-23T16:39:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3281f84d-c926-4060-a31b-71d2ca1be83e", - "start": { - "$date": "2021-08-23T16:39:22.000Z" - }, - "end": { - "$date": "2021-08-23T16:53:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "326f9e11-55ae-4d83-9ce2-010d632b85df", - "start": { - "$date": "2021-08-23T16:53:22.000Z" - }, - "end": { - "$date": "2021-08-23T17:41:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6ceca1d6-c9f0-4a9e-b4a7-7b6545f16e9a", - "start": { - "$date": "2021-08-23T17:41:22.000Z" - }, - "end": { - "$date": "2021-08-23T17:48:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af7e7ef2-68af-446e-a635-9eb85a286eeb", - "start": { - "$date": "2021-08-23T17:48:22.000Z" - }, - "end": { - "$date": "2021-08-23T18:08:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5d779c3-15b0-4a97-b864-1950807e679b", - "start": { - "$date": "2021-08-23T18:08:22.000Z" - }, - "end": { - "$date": "2021-08-23T18:18:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4cd8ae3d-f345-4b61-a5e8-7da0e8f7877d", - "start": { - "$date": "2021-08-23T18:18:22.000Z" - }, - "end": { - "$date": "2021-08-23T19:01:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1086291b-042b-4647-a664-3173deed5a73", - "start": { - "$date": "2021-08-23T19:01:22.000Z" - }, - "end": { - "$date": "2021-08-23T19:48:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc70c1a7-dbfc-49a7-b52b-f00e097fff62", - "start": { - "$date": "2021-08-23T19:48:22.000Z" - }, - "end": { - "$date": "2021-08-23T20:14:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12393976-fdeb-4f50-a024-71c89a8ddaef", - "start": { - "$date": "2021-08-23T20:14:22.000Z" - }, - "end": { - "$date": "2021-08-23T20:19:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98fa260b-a5a3-46d3-8065-c7c95f4fb766", - "start": { - "$date": "2021-08-23T20:19:22.000Z" - }, - "end": { - "$date": "2021-08-23T20:37:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37fb68ff-c1cb-45f0-a893-310e13c3adaf", - "start": { - "$date": "2021-08-23T20:37:22.000Z" - }, - "end": { - "$date": "2021-08-23T20:49:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23ea6c8a-a66e-4863-9f9a-dc11f276437d", - "start": { - "$date": "2021-08-23T20:49:22.000Z" - }, - "end": { - "$date": "2021-08-23T21:18:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5cb3532e-e322-4f49-8b21-55745d89e894", - "start": { - "$date": "2021-08-23T21:18:22.000Z" - }, - "end": { - "$date": "2021-08-23T22:50:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a0b79ce-344f-4545-92fe-f2d7715fe357", - "start": { - "$date": "2021-08-23T22:50:22.000Z" - }, - "end": { - "$date": "2021-08-23T22:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78919c54-31ba-43ba-a995-105cbcbf21ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-23T17:41:56.000Z" - }, - "end": { - "$date": "2021-08-23T18:06:30.000Z" - }, - "events": [ - { - "uuid": "17c1126a-7639-4af5-9b5a-397c1c4fc603", - "start": { - "$date": "2021-08-23T17:41:56.000Z" - }, - "end": { - "$date": "2021-08-23T18:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b40cd9b-a665-4a4a-8871-dbb0bf989f79", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-23T18:12:44.000Z" - }, - "end": { - "$date": "2021-08-23T18:32:25.000Z" - }, - "events": [ - { - "uuid": "7ac7a488-97c0-4c63-9a4f-e99b0eae9fb1", - "start": { - "$date": "2021-08-23T18:12:44.000Z" - }, - "end": { - "$date": "2021-08-23T18:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38fb76a8-a4af-4c76-a950-43483849cae9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-23T18:39:07.000Z" - }, - "end": { - "$date": "2021-08-23T19:02:21.000Z" - }, - "events": [ - { - "uuid": "48ac90d8-bab5-4131-a496-ebdaa3451a71", - "start": { - "$date": "2021-08-23T18:39:07.000Z" - }, - "end": { - "$date": "2021-08-23T19:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9378c878-6716-4e69-a278-3fd0e0f20538", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-23T19:14:43.000Z" - }, - "end": { - "$date": "2021-08-23T19:50:45.000Z" - }, - "events": [ - { - "uuid": "6f4b01f9-c8a8-477a-bdc2-95c9556632ee", - "start": { - "$date": "2021-08-23T19:14:43.000Z" - }, - "end": { - "$date": "2021-08-23T19:50:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b8202fc-77fc-4c5c-87f2-9561dcdb0a52", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-23T19:51:42.000Z" - }, - "end": { - "$date": "2021-08-23T20:42:05.000Z" - }, - "events": [ - { - "uuid": "695f64cc-4f84-411a-bc18-310d9ec50f65", - "start": { - "$date": "2021-08-23T19:51:42.000Z" - }, - "end": { - "$date": "2021-08-23T20:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b3a53ac8-e047-4737-be3c-3fbb2d69f581", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T23:06:39.000Z" - }, - "end": { - "$date": "2021-08-23T23:06:44.000Z" - }, - "events": [ - { - "uuid": "e8aae8d0-b989-4ad8-9514-a81558a278cf", - "start": { - "$date": "2021-08-23T23:06:39.000Z" - }, - "end": { - "$date": "2021-08-23T23:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bd5f0ee-a837-49ad-b6c0-d95915395eea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-23T23:07:04.000Z" - }, - "end": { - "$date": "2021-08-24T02:10:03.000Z" - }, - "events": [ - { - "uuid": "27882e49-4ddf-41a6-a757-4abcc09cc04b", - "start": { - "$date": "2021-08-23T23:07:04.000Z" - }, - "end": { - "$date": "2021-08-24T02:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", - "uuid": "278e16e8-4120-4bef-8beb-68dfce766cc7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-23T23:41:22.000Z" - }, - "end": { - "$date": "2021-08-23T23:42:32.000Z" - }, - "events": [ - { - "uuid": "5d181db1-75c3-41a6-8e39-bcadde072d37", - "start": { - "$date": "2021-08-23T23:41:22.000Z" - }, - "end": { - "$date": "2021-08-23T23:42:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e9c1eb2e-079e-4958-842d-97411d6a4b9b", - "uuid": "701843b7-dce0-4a2f-bcee-e34f471ee3f3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-24T00:39:58.000Z" - }, - "end": { - "$date": "2021-08-24T00:41:28.000Z" - }, - "events": [ - { - "uuid": "a6a6efb6-b178-4bf3-ae78-853dac133b82", - "start": { - "$date": "2021-08-24T00:39:58.000Z" - }, - "end": { - "$date": "2021-08-24T00:41:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "09571448-2d0f-4253-82e3-ebc9ee979187", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-24T00:48:34.000Z" - }, - "end": { - "$date": "2021-08-24T01:24:28.000Z" - }, - "events": [ - { - "uuid": "4ef697ca-0882-4065-8a90-0ad57371c298", - "start": { - "$date": "2021-08-24T00:48:34.000Z" - }, - "end": { - "$date": "2021-08-24T01:24:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99cb378b-0a38-4745-8168-f86e50fcb164", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T02:10:18.000Z" - }, - "end": { - "$date": "2021-08-24T04:34:03.000Z" - }, - "events": [ - { - "uuid": "8d866570-12ad-44a1-9370-f58ef2f6cd51", - "start": { - "$date": "2021-08-24T02:10:18.000Z" - }, - "end": { - "$date": "2021-08-24T04:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "1b5dba67-bbfe-470d-9836-ffefcada2864", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-24T02:34:18.000Z" - }, - "end": { - "$date": "2021-08-24T03:33:44.000Z" - }, - "events": [ - { - "uuid": "70ac609e-2068-4cad-b600-dfc7b13663bc", - "start": { - "$date": "2021-08-24T02:34:18.000Z" - }, - "end": { - "$date": "2021-08-24T03:33:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6b3dfe9a-7fec-45fe-a163-40ee3c7d2bd5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-24T02:34:28.000Z" - }, - "end": { - "$date": "2021-08-24T03:39:37.000Z" - }, - "events": [ - { - "uuid": "a4a0abae-1a5c-4da2-a3f2-03c96fc5478e", - "start": { - "$date": "2021-08-24T02:34:28.000Z" - }, - "end": { - "$date": "2021-08-24T03:39:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", - "uuid": "bf2645c7-4e3b-4435-aa17-d45f18722ba9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-24T03:33:48.000Z" - }, - "end": { - "$date": "2021-08-24T03:37:14.000Z" - }, - "events": [ - { - "uuid": "6119ae86-32c7-483b-ad32-96f16f88c290", - "start": { - "$date": "2021-08-24T03:33:48.000Z" - }, - "end": { - "$date": "2021-08-24T03:37:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", - "uuid": "c69f56a9-c283-40de-9562-ac0473c86341", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-24T03:37:29.000Z" - }, - "end": { - "$date": "2021-08-24T04:35:52.000Z" - }, - "events": [ - { - "uuid": "0e2d4dd0-0cb0-406b-a42f-dc6bf1d3c3e4", - "start": { - "$date": "2021-08-24T03:37:29.000Z" - }, - "end": { - "$date": "2021-08-24T04:35:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8e80a994-8c5b-4fae-ab7f-766966c0177c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-24T03:41:21.000Z" - }, - "end": { - "$date": "2021-08-24T05:33:40.000Z" - }, - "events": [ - { - "uuid": "54e95499-536f-42d3-88d6-01b3845fd526", - "start": { - "$date": "2021-08-24T03:41:21.000Z" - }, - "end": { - "$date": "2021-08-24T05:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4611d0c-db06-44fc-8fc6-f3ba0e6818f3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-24T04:40:17.000Z" - }, - "end": { - "$date": "2021-08-24T05:03:19.000Z" - }, - "events": [ - { - "uuid": "93c28dfb-3217-4ce7-881a-a105bf3d8b6b", - "start": { - "$date": "2021-08-24T04:40:17.000Z" - }, - "end": { - "$date": "2021-08-24T05:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35a72dff-29ff-4dc9-ab49-abc8c7e0e881", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-24T05:15:53.000Z" - }, - "end": { - "$date": "2021-08-24T05:52:50.000Z" - }, - "events": [ - { - "uuid": "f49825d0-d181-4add-b74b-526647ab16b0", - "start": { - "$date": "2021-08-24T05:15:53.000Z" - }, - "end": { - "$date": "2021-08-24T05:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cc809ebd-331f-41f1-979a-7db5d4347b71", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-24T03:41:21.000Z" - }, - "end": { - "$date": "2021-08-24T06:50:28.000Z" - }, - "events": [ - { - "uuid": "dfbeba0c-3815-4006-9d26-7286d575236a", - "start": { - "$date": "2021-08-24T03:41:21.000Z" - }, - "end": { - "$date": "2021-08-24T06:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adf83edd-7b65-4d2d-a35e-7b1dfc28e268", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-24T05:55:39.000Z" - }, - "end": { - "$date": "2021-08-24T06:00:46.000Z" - }, - "events": [ - { - "uuid": "d366c344-fc2b-40f1-99b5-9b9c8a008173", - "start": { - "$date": "2021-08-24T05:55:39.000Z" - }, - "end": { - "$date": "2021-08-24T06:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f50f770b-7e29-4c37-a38a-c40d099d6023", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-24T06:34:27.000Z" - }, - "end": { - "$date": "2021-08-24T06:52:57.000Z" - }, - "events": [ - { - "uuid": "72aadd10-073d-47d2-9a1f-e02129aee8cb", - "start": { - "$date": "2021-08-24T06:34:27.000Z" - }, - "end": { - "$date": "2021-08-24T06:52:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a82953ca-2160-42cf-a251-3fb33b994e5c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-24T03:41:21.000Z" - }, - "end": { - "$date": "2021-08-24T07:37:18.000Z" - }, - "events": [ - { - "uuid": "6d067f67-c4ed-4c83-bec8-3cf0afbf040c", - "start": { - "$date": "2021-08-24T03:41:21.000Z" - }, - "end": { - "$date": "2021-08-24T07:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98a57f07-0e43-4649-95d5-3dcd11d124bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-24T07:01:09.000Z" - }, - "end": { - "$date": "2021-08-24T07:34:09.000Z" - }, - "events": [ - { - "uuid": "b3f28a07-9c8a-45b4-abbd-db051e0a9a85", - "start": { - "$date": "2021-08-24T07:01:09.000Z" - }, - "end": { - "$date": "2021-08-24T07:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1747ff93-dd51-4b29-bacd-79642b095be3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-24T07:43:30.000Z" - }, - "end": { - "$date": "2021-08-24T08:15:01.000Z" - }, - "events": [ - { - "uuid": "a8305018-8e5c-4f27-a25c-dcef63ea4976", - "start": { - "$date": "2021-08-24T07:43:30.000Z" - }, - "end": { - "$date": "2021-08-24T08:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2eab47a4-bf46-4c9a-8a8d-f6008a16eacb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-24T08:20:18.000Z" - }, - "end": { - "$date": "2021-08-24T08:53:12.000Z" - }, - "events": [ - { - "uuid": "0b5674d2-0b7e-46ed-8cb1-a1d46840bd95", - "start": { - "$date": "2021-08-24T08:20:18.000Z" - }, - "end": { - "$date": "2021-08-24T08:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96f21782-08f5-4588-ab77-79e0dc1dc8d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-24T09:00:14.000Z" - }, - "end": { - "$date": "2021-08-24T09:32:03.000Z" - }, - "events": [ - { - "uuid": "b82165d8-1728-4e20-9312-db82025c9232", - "start": { - "$date": "2021-08-24T09:00:14.000Z" - }, - "end": { - "$date": "2021-08-24T09:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c760cede-05b1-4713-83e5-f1880c249018", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-24T09:48:58.000Z" - }, - "end": { - "$date": "2021-08-24T10:02:48.000Z" - }, - "events": [ - { - "uuid": "160e554a-416b-404a-8111-55070a72001a", - "start": { - "$date": "2021-08-24T09:48:58.000Z" - }, - "end": { - "$date": "2021-08-24T10:02:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "b516c151-54a3-43f7-b975-3f17259f4e04", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T14:28:45.000Z" - }, - "end": { - "$date": "2021-08-24T15:56:29.000Z" - }, - "events": [ - { - "uuid": "f8af5b5e-db19-4ae4-ac9b-40d790fc280f", - "start": { - "$date": "2021-08-24T14:28:45.000Z" - }, - "end": { - "$date": "2021-08-24T15:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d2132a3b-8d80-4c7f-be54-082a28fd9a84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-24T15:34:43.000Z" - }, - "end": { - "$date": "2021-08-24T16:39:41.000Z" - }, - "events": [ - { - "uuid": "ca1b5d87-2f2d-4c97-99d1-d6c268911139", - "start": { - "$date": "2021-08-24T15:34:43.000Z" - }, - "end": { - "$date": "2021-08-24T16:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0253048a-5fa0-445f-bdde-0ddb093d4991", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T15:58:14.000Z" - }, - "end": { - "$date": "2021-08-24T16:14:31.000Z" - }, - "events": [ - { - "uuid": "fc7e9cdb-7d87-4232-bd68-121e3224437f", - "start": { - "$date": "2021-08-24T15:58:14.000Z" - }, - "end": { - "$date": "2021-08-24T16:14:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5dd9fb1b-7ba4-4292-9bd6-739afb3dbc57", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T16:14:36.000Z" - }, - "end": { - "$date": "2021-08-24T16:45:52.000Z" - }, - "events": [ - { - "uuid": "6160a65a-e845-4746-828f-bdde01fd5bb4", - "start": { - "$date": "2021-08-24T16:14:36.000Z" - }, - "end": { - "$date": "2021-08-24T16:45:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "c7718b4c-1e1b-4453-8ef3-429f23702d9a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-24T17:04:27.000Z" - }, - "end": { - "$date": "2021-08-24T17:06:22.000Z" - }, - "events": [ - { - "uuid": "0895c041-306e-45ad-bebb-827e98e3c35f", - "start": { - "$date": "2021-08-24T17:04:27.000Z" - }, - "end": { - "$date": "2021-08-24T17:06:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "6304b781-9d05-438d-98ec-3530751ae3ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-24T17:06:30.000Z" - }, - "end": { - "$date": "2021-08-24T18:22:02.000Z" - }, - "events": [ - { - "uuid": "d353a199-a85d-4e1d-8793-6172f395fd53", - "start": { - "$date": "2021-08-24T17:06:30.000Z" - }, - "end": { - "$date": "2021-08-24T18:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62c4e081-8b6e-424c-9f84-936596265200", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T17:45:50.000Z" - }, - "end": { - "$date": "2021-08-24T19:48:57.000Z" - }, - "events": [ - { - "uuid": "825af129-9021-4c8e-bd0c-162f5469bb01", - "start": { - "$date": "2021-08-24T17:45:50.000Z" - }, - "end": { - "$date": "2021-08-24T19:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "198b1d18-40f8-4352-ad61-420daa36ca3a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T21:15:18.000Z" - }, - "end": { - "$date": "2021-08-24T21:16:39.000Z" - }, - "events": [ - { - "uuid": "180c570d-475d-4a4d-b0bb-28a7111cfcc7", - "start": { - "$date": "2021-08-24T21:15:18.000Z" - }, - "end": { - "$date": "2021-08-24T21:16:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6807e74f-5f62-465c-9103-c00da1430022", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T21:18:14.000Z" - }, - "end": { - "$date": "2021-08-24T21:47:15.000Z" - }, - "events": [ - { - "uuid": "19533ac1-5b0b-4d6b-85af-f400830c4a60", - "start": { - "$date": "2021-08-24T21:18:14.000Z" - }, - "end": { - "$date": "2021-08-24T21:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d854240a-8956-43e6-8338-7a327deb3084", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T23:18:39.000Z" - }, - "end": { - "$date": "2021-08-24T23:18:49.000Z" - }, - "events": [ - { - "uuid": "4d024713-620f-4f94-96ae-acbcf23bc5fe", - "start": { - "$date": "2021-08-24T23:18:39.000Z" - }, - "end": { - "$date": "2021-08-24T23:18:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3f9cdd91-c023-42b2-a671-71d2e2cf3662", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-24T23:51:43.000Z" - }, - "end": { - "$date": "2021-08-25T00:57:16.000Z" - }, - "events": [ - { - "uuid": "499ab2a7-aa9d-49df-afbb-66b7e3797bd7", - "start": { - "$date": "2021-08-24T23:51:43.000Z" - }, - "end": { - "$date": "2021-08-25T00:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "78d6842f-d7a5-4b73-a00e-9886be8b9784", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-25T00:19:52.000Z" - }, - "end": { - "$date": "2021-08-25T01:38:33.000Z" - }, - "events": [ - { - "uuid": "1cb986ae-7e53-4bdc-a830-013e3f7fc5a7", - "start": { - "$date": "2021-08-25T00:19:52.000Z" - }, - "end": { - "$date": "2021-08-25T01:38:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5e624eac-3e75-4880-a11b-71759963f314", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-25T01:38:40.000Z" - }, - "end": { - "$date": "2021-08-25T05:17:37.000Z" - }, - "events": [ - { - "uuid": "b38b0892-8402-463f-9911-c793fd70e90b", - "start": { - "$date": "2021-08-25T01:38:40.000Z" - }, - "end": { - "$date": "2021-08-25T05:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9fb47aa9-a580-4135-b468-324ef090882c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-25T01:54:44.000Z" - }, - "end": { - "$date": "2021-08-25T02:03:34.000Z" - }, - "events": [ - { - "uuid": "eaff7d8b-dd54-4f32-ac6a-86404c038b8a", - "start": { - "$date": "2021-08-25T01:54:44.000Z" - }, - "end": { - "$date": "2021-08-25T02:03:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "973c87ac-b8cb-4efe-8fa0-0172ead8d751", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T02:58:43.000Z" - }, - "end": { - "$date": "2021-08-25T03:29:52.000Z" - }, - "events": [ - { - "uuid": "bd1fa749-9018-409a-8b79-66fb58ab17a2", - "start": { - "$date": "2021-08-25T02:58:43.000Z" - }, - "end": { - "$date": "2021-08-25T03:29:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c8244d41-55eb-4dc9-8a84-e8ccdec3bc61", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T03:39:38.000Z" - }, - "end": { - "$date": "2021-08-25T03:41:34.000Z" - }, - "events": [ - { - "uuid": "11158df9-df72-4f27-b1f8-09486f30e5d3", - "start": { - "$date": "2021-08-25T03:39:38.000Z" - }, - "end": { - "$date": "2021-08-25T03:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0054340-7a4a-49f7-8c85-e4ef038612ce", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-25T04:37:34.000Z" - }, - "end": { - "$date": "2021-08-25T05:11:54.000Z" - }, - "events": [ - { - "uuid": "ddee4f38-ada5-4e70-b721-71512ec714e1", - "start": { - "$date": "2021-08-25T04:37:34.000Z" - }, - "end": { - "$date": "2021-08-25T05:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "070c7e35-c806-4dc2-8ecf-1c2456fac051", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-25T05:20:10.000Z" - }, - "end": { - "$date": "2021-08-25T05:45:40.000Z" - }, - "events": [ - { - "uuid": "105006f3-cc5a-4170-9ec8-4c0d5452794d", - "start": { - "$date": "2021-08-25T05:20:10.000Z" - }, - "end": { - "$date": "2021-08-25T05:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6d7ceb36-af99-4685-874b-97b9fba18069", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-25T05:17:45.000Z" - }, - "end": { - "$date": "2021-08-25T06:32:22.000Z" - }, - "events": [ - { - "uuid": "05208427-458b-4b89-b2ce-772826abbce4", - "start": { - "$date": "2021-08-25T05:17:45.000Z" - }, - "end": { - "$date": "2021-08-25T06:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ee23c23d-410f-4e01-a3e1-10431a84ed32", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T05:32:33.000Z" - }, - "end": { - "$date": "2021-08-25T06:57:58.000Z" - }, - "events": [ - { - "uuid": "2acab584-f90a-4c4b-8301-a6230e1e30bf", - "start": { - "$date": "2021-08-25T05:32:33.000Z" - }, - "end": { - "$date": "2021-08-25T06:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26b5ba70-c476-4a57-9d94-8e90d4315741", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T07:04:41.000Z" - }, - "end": { - "$date": "2021-08-25T07:41:51.000Z" - }, - "events": [ - { - "uuid": "f1fa334d-52a8-4860-901b-bc946baa0a44", - "start": { - "$date": "2021-08-25T07:04:41.000Z" - }, - "end": { - "$date": "2021-08-25T07:41:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65845e55-5c98-40bc-a2f4-49ce4be24de0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T07:56:09.000Z" - }, - "end": { - "$date": "2021-08-25T08:13:49.000Z" - }, - "events": [ - { - "uuid": "bbb08a6d-9227-4b93-8587-da6d27cb9456", - "start": { - "$date": "2021-08-25T07:56:09.000Z" - }, - "end": { - "$date": "2021-08-25T08:13:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "497e31b8-d459-4c05-98b0-5b8d7a00d524", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T15:14:32.000Z" - }, - "end": { - "$date": "2021-08-25T15:47:59.000Z" - }, - "events": [ - { - "uuid": "8efcea4e-5787-4815-8602-08aad8a253e0", - "start": { - "$date": "2021-08-25T15:14:32.000Z" - }, - "end": { - "$date": "2021-08-25T15:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a66d1bf1-12ad-481e-b882-2c2e32310cbe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T15:52:05.000Z" - }, - "end": { - "$date": "2021-08-25T15:56:51.000Z" - }, - "events": [ - { - "uuid": "8927eef6-3029-4cd8-8d2e-8743150922da", - "start": { - "$date": "2021-08-25T15:52:05.000Z" - }, - "end": { - "$date": "2021-08-25T15:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "afec0e83-a6c2-41e7-afa6-8946d29950bd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T15:57:06.000Z" - }, - "end": { - "$date": "2021-08-25T16:12:13.000Z" - }, - "events": [ - { - "uuid": "1e9f45fc-3b50-4be3-ab96-48f8b00f04fc", - "start": { - "$date": "2021-08-25T15:57:06.000Z" - }, - "end": { - "$date": "2021-08-25T16:12:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "da3f5266-840b-419d-9c16-6bfa0178f522", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T16:12:42.000Z" - }, - "end": { - "$date": "2021-08-25T16:33:49.000Z" - }, - "events": [ - { - "uuid": "544a933a-1504-4bb8-8a3f-59d939656d4c", - "start": { - "$date": "2021-08-25T16:12:42.000Z" - }, - "end": { - "$date": "2021-08-25T16:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "9d9ea98f-bb71-46bb-97be-eb93b8507544", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T16:42:25.000Z" - }, - "end": { - "$date": "2021-08-25T17:20:07.000Z" - }, - "events": [ - { - "uuid": "c27fbc68-0859-4069-a70e-768ef64f5bf1", - "start": { - "$date": "2021-08-25T16:42:25.000Z" - }, - "end": { - "$date": "2021-08-25T17:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e9e5391-9953-4cf2-811b-a0c58429b608", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T16:53:05.000Z" - }, - "end": { - "$date": "2021-08-25T17:27:22.000Z" - }, - "events": [ - { - "uuid": "bfa7d607-79e6-41fa-949f-bdf4f7352adb", - "start": { - "$date": "2021-08-25T16:53:05.000Z" - }, - "end": { - "$date": "2021-08-25T17:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a55b8593-c1ad-4974-9431-21004c2cab62", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-25T16:59:02.000Z" - }, - "end": { - "$date": "2021-08-25T17:48:39.000Z" - }, - "events": [ - { - "uuid": "126da525-0c59-45f5-9ff2-d40a36e7157f", - "start": { - "$date": "2021-08-25T16:59:02.000Z" - }, - "end": { - "$date": "2021-08-25T17:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "95ffef66-51e6-4a35-bd12-66c895b0c244", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-25T17:26:53.000Z" - }, - "end": { - "$date": "2021-08-25T17:35:44.000Z" - }, - "events": [ - { - "uuid": "627e6019-30c1-4e1e-8098-82c7a21fab9c", - "start": { - "$date": "2021-08-25T17:26:53.000Z" - }, - "end": { - "$date": "2021-08-25T17:35:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "c33582da-6a56-4be7-82c4-b52b323a6160", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-26T02:46:05.000Z" - }, - "end": { - "$date": "2021-08-26T02:46:10.000Z" - }, - "events": [ - { - "uuid": "9a3e9d68-7264-4298-9c1f-1a72d2440a56", - "start": { - "$date": "2021-08-26T02:46:05.000Z" - }, - "end": { - "$date": "2021-08-26T02:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8da88e56-ba2e-4afa-96cb-9f85a8d0d0d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T22:50:14.000Z" - }, - "end": { - "$date": "2021-08-25T23:16:30.000Z" - }, - "events": [ - { - "uuid": "5ec4ab92-1722-4073-90a2-d6063afed835", - "start": { - "$date": "2021-08-25T22:50:14.000Z" - }, - "end": { - "$date": "2021-08-25T23:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b36e3245-a5cf-4afb-b8b4-3ce7ed2f83dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T23:19:30.000Z" - }, - "end": { - "$date": "2021-08-25T23:29:59.000Z" - }, - "events": [ - { - "uuid": "fa9349b0-035e-454b-aecf-16c1dcecfb7b", - "start": { - "$date": "2021-08-25T23:19:30.000Z" - }, - "end": { - "$date": "2021-08-25T23:29:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c67ed99f-fb10-414b-9ee1-a284f2ee812f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T23:30:55.000Z" - }, - "end": { - "$date": "2021-08-25T23:32:32.000Z" - }, - "events": [ - { - "uuid": "fc8de455-c41d-4775-bc11-d36474b689ad", - "start": { - "$date": "2021-08-25T23:30:55.000Z" - }, - "end": { - "$date": "2021-08-25T23:32:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c3918a79-08bd-4774-aded-8f00af75f6bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-25T23:34:55.000Z" - }, - "end": { - "$date": "2021-08-26T00:19:12.000Z" - }, - "events": [ - { - "uuid": "2d843ab5-daef-4cd2-a008-deebb0f80823", - "start": { - "$date": "2021-08-25T23:34:55.000Z" - }, - "end": { - "$date": "2021-08-26T00:19:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8b82b2cc-2fc9-4031-8da2-92f9e7f4c9cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-25T23:55:42.000Z" - }, - "end": { - "$date": "2021-08-26T00:02:12.000Z" - }, - "events": [ - { - "uuid": "64f4d942-371c-4421-9286-655e01dbb336", - "start": { - "$date": "2021-08-25T23:55:42.000Z" - }, - "end": { - "$date": "2021-08-26T00:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "129b6164-6962-439f-898f-f59fe3238fad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-26T00:35:46.000Z" - }, - "end": { - "$date": "2021-08-26T01:04:27.000Z" - }, - "events": [ - { - "uuid": "ea04f9b5-a5b2-480e-830a-a8a9dbd13ce2", - "start": { - "$date": "2021-08-26T00:35:46.000Z" - }, - "end": { - "$date": "2021-08-26T01:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08138fb5-5020-4878-ae0a-b34f736a85e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-26T00:35:48.000Z" - }, - "end": { - "$date": "2021-08-26T01:04:19.000Z" - }, - "events": [ - { - "uuid": "6b0fea26-ea92-4a90-9a86-7a66cc2e2800", - "start": { - "$date": "2021-08-26T00:35:48.000Z" - }, - "end": { - "$date": "2021-08-26T01:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "66f57e5d-4174-47e4-91c7-8d089920e023", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-26T00:32:32.000Z" - }, - "end": { - "$date": "2021-08-26T02:19:03.000Z" - }, - "events": [ - { - "uuid": "9569d30f-3ee7-496b-8470-503e8aea2173", - "start": { - "$date": "2021-08-26T00:32:32.000Z" - }, - "end": { - "$date": "2021-08-26T02:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99899f28-4e04-46f2-bb14-2782f523260a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-26T01:08:28.000Z" - }, - "end": { - "$date": "2021-08-26T01:19:27.000Z" - }, - "events": [ - { - "uuid": "54e6ca65-3d66-41f8-9fbd-610d35862b53", - "start": { - "$date": "2021-08-26T01:08:28.000Z" - }, - "end": { - "$date": "2021-08-26T01:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba4bcd85-c5dc-47e3-86cc-a712799ad27d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-26T01:09:04.000Z" - }, - "end": { - "$date": "2021-08-26T01:19:19.000Z" - }, - "events": [ - { - "uuid": "e20b03ec-e304-4258-a278-77960bc1bb0d", - "start": { - "$date": "2021-08-26T01:09:04.000Z" - }, - "end": { - "$date": "2021-08-26T01:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "fa872ee1-8bbc-446d-8f7a-3a3f6a54e363", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-26T01:07:51.000Z" - }, - "end": { - "$date": "2021-08-26T01:21:37.000Z" - }, - "events": [ - { - "uuid": "965131c0-f4e2-49cd-aedc-a929bbabc6ea", - "start": { - "$date": "2021-08-26T01:07:51.000Z" - }, - "end": { - "$date": "2021-08-26T01:21:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "554e8d67-153b-4d1b-8799-9de0b959fd27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-26T01:25:09.000Z" - }, - "end": { - "$date": "2021-08-26T01:41:43.000Z" - }, - "events": [ - { - "uuid": "63fcd318-c5e3-49da-8373-89234a244f8c", - "start": { - "$date": "2021-08-26T01:25:09.000Z" - }, - "end": { - "$date": "2021-08-26T01:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "714b0e20-b7bd-4891-b1e0-02849f604b72", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-26T01:25:27.000Z" - }, - "end": { - "$date": "2021-08-26T01:41:32.000Z" - }, - "events": [ - { - "uuid": "23f4d354-2224-41ea-ab9e-8462cea32c0a", - "start": { - "$date": "2021-08-26T01:25:27.000Z" - }, - "end": { - "$date": "2021-08-26T01:41:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "4c9b14b6-d69f-4de3-992d-5d3f94005a6e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-26T01:36:11.000Z" - }, - "end": { - "$date": "2021-08-26T02:45:58.000Z" - }, - "events": [ - { - "uuid": "24d77ed6-18da-4f10-8316-43db13e046f9", - "start": { - "$date": "2021-08-26T01:36:11.000Z" - }, - "end": { - "$date": "2021-08-26T02:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca24cedc-05ea-4011-a5d1-eb77fd508e5d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-26T01:41:56.000Z" - }, - "end": { - "$date": "2021-08-26T01:54:04.000Z" - }, - "events": [ - { - "uuid": "f31e064f-d6fb-4104-b1fc-0e2c0a88878d", - "start": { - "$date": "2021-08-26T01:41:56.000Z" - }, - "end": { - "$date": "2021-08-26T01:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "768f5308-fa1d-4047-8b74-80e61de9ffab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-26T01:42:53.000Z" - }, - "end": { - "$date": "2021-08-26T02:41:14.000Z" - }, - "events": [ - { - "uuid": "99d340a7-6b26-4d78-989f-1a88859875bc", - "start": { - "$date": "2021-08-26T01:42:53.000Z" - }, - "end": { - "$date": "2021-08-26T02:41:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "7d99489e-eb0e-4ac5-b2bd-9d667e3ad3fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-26T02:19:12.000Z" - }, - "end": { - "$date": "2021-08-26T02:36:42.000Z" - }, - "events": [ - { - "uuid": "43279e41-a6d1-47ec-b7fc-a290436f6b29", - "start": { - "$date": "2021-08-26T02:19:12.000Z" - }, - "end": { - "$date": "2021-08-26T02:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4a678c11-6192-4c24-9466-8ba513228000", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-26T02:36:58.000Z" - }, - "end": { - "$date": "2021-08-26T05:33:11.000Z" - }, - "events": [ - { - "uuid": "629d2681-60c4-439c-9a7d-6a738c194523", - "start": { - "$date": "2021-08-26T02:36:58.000Z" - }, - "end": { - "$date": "2021-08-26T05:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "700e9b0e-0275-4b5b-929d-082dd8ec41e8", - "uuid": "1d767e06-16b0-4023-bf83-64f6512fb464", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-26T02:45:14.000Z" - }, - "end": { - "$date": "2021-08-26T02:56:25.000Z" - }, - "events": [ - { - "uuid": "05cb112b-b40d-4391-9ff1-06ee6029346f", - "start": { - "$date": "2021-08-26T02:45:14.000Z" - }, - "end": { - "$date": "2021-08-26T02:56:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "e72b229d-74a7-4497-81ae-6caf74b5c498", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-26T02:56:11.000Z" - }, - "end": { - "$date": "2021-08-26T03:21:12.000Z" - }, - "events": [ - { - "uuid": "bc00aa0d-1487-4ccb-b675-c18d4a4cba28", - "start": { - "$date": "2021-08-26T02:56:11.000Z" - }, - "end": { - "$date": "2021-08-26T03:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "28320ced-6663-451c-865f-e8e44725d60e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-26T03:18:24.000Z" - }, - "end": { - "$date": "2021-08-26T03:20:21.000Z" - }, - "events": [ - { - "uuid": "b4691f93-23f3-4c13-a27c-1497e74ad5e7", - "start": { - "$date": "2021-08-26T03:18:24.000Z" - }, - "end": { - "$date": "2021-08-26T03:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "074f327a-874d-49c5-a3dc-358e33f07764", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-26T03:24:37.000Z" - }, - "end": { - "$date": "2021-08-26T03:26:18.000Z" - }, - "events": [ - { - "uuid": "80a8d13a-fe32-4b6c-af64-9f6cc26100f7", - "start": { - "$date": "2021-08-26T03:24:37.000Z" - }, - "end": { - "$date": "2021-08-26T03:26:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "65b88241-5482-4dd5-a8c7-f78ef0799ebd", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-26T03:29:19.000Z" - }, - "end": { - "$date": "2021-08-26T04:24:11.000Z" - }, - "events": [ - { - "uuid": "03dc36c4-6655-49ac-b501-4c1ba6cd1617", - "start": { - "$date": "2021-08-26T03:29:19.000Z" - }, - "end": { - "$date": "2021-08-26T04:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "88479ca2-dac6-436b-8077-f114ee7736bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-26T03:32:03.000Z" - }, - "end": { - "$date": "2021-08-26T03:43:55.000Z" - }, - "events": [ - { - "uuid": "1b68ef18-f97c-47de-ae4f-3af8933dbc88", - "start": { - "$date": "2021-08-26T03:32:03.000Z" - }, - "end": { - "$date": "2021-08-26T03:43:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "7446aedd-73a3-4607-94c5-a19fbf1b3115", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-26T04:18:56.000Z" - }, - "end": { - "$date": "2021-08-26T05:18:19.000Z" - }, - "events": [ - { - "uuid": "16594726-7885-403f-a23d-e19193adb404", - "start": { - "$date": "2021-08-26T04:18:56.000Z" - }, - "end": { - "$date": "2021-08-26T05:18:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "76c22a5c-7085-4ae3-8c71-72f7bbe0d8b7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-26T04:24:31.000Z" - }, - "end": { - "$date": "2021-08-26T06:59:58.000Z" - }, - "events": [ - { - "uuid": "6b419e90-a4c6-4aff-bb90-23cff8027955", - "start": { - "$date": "2021-08-26T04:24:31.000Z" - }, - "end": { - "$date": "2021-08-26T06:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36360867-e8b9-4132-8ad8-47160ad55ca3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-26T04:57:36.000Z" - }, - "end": { - "$date": "2021-08-26T05:20:01.000Z" - }, - "events": [ - { - "uuid": "4e029fae-4e2c-4c4c-b5fa-1c27c2eea799", - "start": { - "$date": "2021-08-26T04:57:36.000Z" - }, - "end": { - "$date": "2021-08-26T05:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4e8341c5-6942-4044-9dae-78586b93afd0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-26T05:02:13.000Z" - }, - "end": { - "$date": "2021-08-26T07:21:00.000Z" - }, - "events": [ - { - "uuid": "b7eef270-f4c3-4004-ab25-e8c3ac81fd9b", - "start": { - "$date": "2021-08-26T05:02:13.000Z" - }, - "end": { - "$date": "2021-08-26T07:21:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8fc595fc-b7fd-4fea-b07d-c27a36d6fae6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-26T05:02:14.000Z" - }, - "end": { - "$date": "2021-08-26T07:20:48.000Z" - }, - "events": [ - { - "uuid": "3352047c-2cc2-4063-baba-7b856475ddd5", - "start": { - "$date": "2021-08-26T05:02:14.000Z" - }, - "end": { - "$date": "2021-08-26T07:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b7af7b7c-f2a9-4db0-8d44-4f7e84708863", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-26T05:36:12.000Z" - }, - "end": { - "$date": "2021-08-26T07:21:03.000Z" - }, - "events": [ - { - "uuid": "d106feec-2c7a-48f1-a9f4-23b0df624064", - "start": { - "$date": "2021-08-26T05:36:12.000Z" - }, - "end": { - "$date": "2021-08-26T07:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4724f6b0-a124-4913-ba0c-23a5609c3f13", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-26T07:22:59.000Z" - }, - "end": { - "$date": "2021-08-26T07:59:07.000Z" - }, - "events": [ - { - "uuid": "0e99477a-d655-4aca-b90c-066d11e8a507", - "start": { - "$date": "2021-08-26T07:22:59.000Z" - }, - "end": { - "$date": "2021-08-26T07:59:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "88dbd3bf-a4b0-4763-9cf2-2fd68fbe25fd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-26T07:26:00.000Z" - }, - "end": { - "$date": "2021-08-26T08:10:41.000Z" - }, - "events": [ - { - "uuid": "6222b522-9d99-4553-b265-f25f613441c2", - "start": { - "$date": "2021-08-26T07:26:00.000Z" - }, - "end": { - "$date": "2021-08-26T08:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "e889336b-f71a-4195-8009-ff52cd148422", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-26T15:13:19.000Z" - }, - "end": { - "$date": "2021-08-26T15:26:14.000Z" - }, - "events": [ - { - "uuid": "7a7d0db7-fc2f-49a7-9d99-dc31763a0081", - "start": { - "$date": "2021-08-26T15:13:19.000Z" - }, - "end": { - "$date": "2021-08-26T15:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4727bc1a-6d69-4a98-a63f-07658eab0f95", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-26T17:07:31.000Z" - }, - "end": { - "$date": "2021-08-26T19:11:19.000Z" - }, - "events": [ - { - "uuid": "bd57a5d9-bb9f-4658-ad38-2251a45e8e86", - "start": { - "$date": "2021-08-26T17:07:31.000Z" - }, - "end": { - "$date": "2021-08-26T19:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e188cca1-5fe5-4b47-b66c-2bfbec4274c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-26T19:11:34.000Z" - }, - "end": { - "$date": "2021-08-26T19:23:39.000Z" - }, - "events": [ - { - "uuid": "70879950-4b02-4415-be51-7b5a022fa496", - "start": { - "$date": "2021-08-26T19:11:34.000Z" - }, - "end": { - "$date": "2021-08-26T19:23:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f0ad3a2a-24a1-4a45-8e45-f1cf6c7b01fd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-26T22:29:20.000Z" - }, - "end": { - "$date": "2021-08-26T22:37:41.000Z" - }, - "events": [ - { - "uuid": "122741f5-5b4c-433a-ab28-3625a7ab90f7", - "start": { - "$date": "2021-08-26T22:29:20.000Z" - }, - "end": { - "$date": "2021-08-26T22:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b33b1b1f-9a51-4de7-81f5-c09034eeae55", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-27T01:04:59.000Z" - }, - "end": { - "$date": "2021-08-27T06:02:18.000Z" - }, - "events": [ - { - "uuid": "a29eb129-5f8e-4cb4-b3b3-25afa2a6004f", - "start": { - "$date": "2021-08-27T01:04:59.000Z" - }, - "end": { - "$date": "2021-08-27T06:02:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0052c8ea-024a-4e9b-8d5a-3246d202c8d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-27T02:13:08.000Z" - }, - "end": { - "$date": "2021-08-27T04:07:14.000Z" - }, - "events": [ - { - "uuid": "664e5734-a7e0-4898-ab3f-51ddf4ebe12a", - "start": { - "$date": "2021-08-27T02:13:08.000Z" - }, - "end": { - "$date": "2021-08-27T04:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "f5e18c83-422c-412e-89b1-ce74ba9662d1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-27T02:44:31.000Z" - }, - "end": { - "$date": "2021-08-27T03:20:58.000Z" - }, - "events": [ - { - "uuid": "9dfbbc00-6690-4ff8-97ed-8aad828a3c84", - "start": { - "$date": "2021-08-27T02:44:31.000Z" - }, - "end": { - "$date": "2021-08-27T03:20:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5afe54d1-03d8-49fe-bea2-d61a22b60cbb", - "uuid": "b1f56540-6ecd-4d54-a70d-9531573a0198", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-27T03:16:22.000Z" - }, - "end": { - "$date": "2021-08-27T03:37:39.000Z" - }, - "events": [ - { - "uuid": "67fd8077-cde5-428c-baee-451b6fa12e79", - "start": { - "$date": "2021-08-27T03:16:22.000Z" - }, - "end": { - "$date": "2021-08-27T03:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e8b5ffd5-8e9c-4670-a60e-96173c15cac1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-27T03:19:05.000Z" - }, - "end": { - "$date": "2021-08-27T04:22:23.000Z" - }, - "events": [ - { - "uuid": "99917d9a-d0b7-4445-9ff7-96a301fc0dd0", - "start": { - "$date": "2021-08-27T03:19:05.000Z" - }, - "end": { - "$date": "2021-08-27T03:33:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5acc8440-f14a-4deb-86b0-4dfa884b8e75", - "start": { - "$date": "2021-08-27T03:33:05.000Z" - }, - "end": { - "$date": "2021-08-27T03:36:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d9309d8-8cd6-4258-86bd-1d6331fbf7e1", - "start": { - "$date": "2021-08-27T03:36:05.000Z" - }, - "end": { - "$date": "2021-08-27T04:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1bcca548-828d-49f7-a874-f8176fabf4d4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-27T03:28:35.000Z" - }, - "end": { - "$date": "2021-08-27T05:35:21.000Z" - }, - "events": [ - { - "uuid": "2bcd2f0f-337d-462f-8311-fc7ea7f3a3a0", - "start": { - "$date": "2021-08-27T03:28:35.000Z" - }, - "end": { - "$date": "2021-08-27T05:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "07d6c034-9614-4091-a2d6-1f92719a5a91", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-27T03:27:54.000Z" - }, - "end": { - "$date": "2021-08-27T05:35:23.000Z" - }, - "events": [ - { - "uuid": "0d27dc1f-8ea8-4396-bc05-9cc45f612be0", - "start": { - "$date": "2021-08-27T03:27:54.000Z" - }, - "end": { - "$date": "2021-08-27T05:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "868aee4b-f4dc-4e5c-a9b6-18b234db58a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T03:30:56.000Z" - }, - "end": { - "$date": "2021-08-27T03:32:26.000Z" - }, - "events": [ - { - "uuid": "8f999a15-43a5-43f7-8583-411fea07e309", - "start": { - "$date": "2021-08-27T03:30:56.000Z" - }, - "end": { - "$date": "2021-08-27T03:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2641f937-e491-4cdf-811d-582eb179df6f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T03:32:41.000Z" - }, - "end": { - "$date": "2021-08-27T03:33:51.000Z" - }, - "events": [ - { - "uuid": "67abf547-5013-45d2-acda-d947355c18ce", - "start": { - "$date": "2021-08-27T03:32:41.000Z" - }, - "end": { - "$date": "2021-08-27T03:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a713de62-d05d-4c09-9c14-525f57d4d0dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T03:34:02.000Z" - }, - "end": { - "$date": "2021-08-27T04:06:47.000Z" - }, - "events": [ - { - "uuid": "c0a829e1-a23d-442d-8880-adad5d200703", - "start": { - "$date": "2021-08-27T03:34:02.000Z" - }, - "end": { - "$date": "2021-08-27T04:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01817496-e314-444a-b96b-94be8300a3a6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-27T03:34:20.000Z" - }, - "end": { - "$date": "2021-08-27T05:52:02.000Z" - }, - "events": [ - { - "uuid": "dc855e49-73d5-4cef-93b8-e7e37499d7fb", - "start": { - "$date": "2021-08-27T03:34:20.000Z" - }, - "end": { - "$date": "2021-08-27T05:52:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5afe54d1-03d8-49fe-bea2-d61a22b60cbb", - "uuid": "094ddd3d-d0bb-4458-bcf0-d69875bf854c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-27T04:09:19.000Z" - }, - "end": { - "$date": "2021-08-27T05:44:56.000Z" - }, - "events": [ - { - "uuid": "cdda997c-206b-4ddc-9eff-49d8b7f7d643", - "start": { - "$date": "2021-08-27T04:09:19.000Z" - }, - "end": { - "$date": "2021-08-27T05:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bb470236-ecfd-40a8-9dfa-dfdca250a16b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T04:10:17.000Z" - }, - "end": { - "$date": "2021-08-27T04:31:02.000Z" - }, - "events": [ - { - "uuid": "c6f0076d-b3c9-4240-a4a1-259fa223be65", - "start": { - "$date": "2021-08-27T04:10:17.000Z" - }, - "end": { - "$date": "2021-08-27T04:31:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "33ffe9f6-acd2-4016-a98f-e797744f6103", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-27T04:46:56.000Z" - }, - "end": { - "$date": "2021-08-27T05:57:07.000Z" - }, - "events": [ - { - "uuid": "9ef0ad69-435a-485e-9c6d-8d302684c599", - "start": { - "$date": "2021-08-27T04:46:56.000Z" - }, - "end": { - "$date": "2021-08-27T05:45:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6391ee3b-60c1-4101-b1e7-ce010228edc9", - "start": { - "$date": "2021-08-27T05:45:56.000Z" - }, - "end": { - "$date": "2021-08-27T05:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5220dbbe-bda2-4908-bbcf-ba22f46b897f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-27T05:06:59.000Z" - }, - "end": { - "$date": "2021-08-27T05:30:54.000Z" - }, - "events": [ - { - "uuid": "ee5b6724-ebbb-4813-9a92-c4a8824e6f17", - "start": { - "$date": "2021-08-27T05:06:59.000Z" - }, - "end": { - "$date": "2021-08-27T05:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da29a610-62c0-45ae-9970-037f986b4d4e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-27T05:32:16.000Z" - }, - "end": { - "$date": "2021-08-27T07:24:26.000Z" - }, - "events": [ - { - "uuid": "bec1a7c1-c50f-4e11-a719-b819b41d0f54", - "start": { - "$date": "2021-08-27T05:32:16.000Z" - }, - "end": { - "$date": "2021-08-27T07:24:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "751209f7-ac4c-44b1-b165-af45512114cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-27T05:36:26.000Z" - }, - "end": { - "$date": "2021-08-27T07:23:36.000Z" - }, - "events": [ - { - "uuid": "a908cb39-c2f3-411b-9833-aca2d8d97ff1", - "start": { - "$date": "2021-08-27T05:36:26.000Z" - }, - "end": { - "$date": "2021-08-27T07:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "66bd5aa5-7dcd-4ea2-ade3-80463ed21daa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-27T05:37:03.000Z" - }, - "end": { - "$date": "2021-08-27T06:18:38.000Z" - }, - "events": [ - { - "uuid": "3f3c8bcf-3297-4dd3-8643-7f5e31c1cab0", - "start": { - "$date": "2021-08-27T05:37:03.000Z" - }, - "end": { - "$date": "2021-08-27T06:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f09b9000-2761-4ddc-b6d9-697d223dae4b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-27T06:04:44.000Z" - }, - "end": { - "$date": "2021-08-27T06:38:32.000Z" - }, - "events": [ - { - "uuid": "d84246e1-5fee-4eb4-b8b9-02020e0d3076", - "start": { - "$date": "2021-08-27T06:04:44.000Z" - }, - "end": { - "$date": "2021-08-27T06:38:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54058096-c3f7-4547-a8ff-40eaab8d0084", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-27T06:32:25.000Z" - }, - "end": { - "$date": "2021-08-27T06:58:25.000Z" - }, - "events": [ - { - "uuid": "a1efcf69-cfaf-4e2e-a3a3-0f299f2782d3", - "start": { - "$date": "2021-08-27T06:32:25.000Z" - }, - "end": { - "$date": "2021-08-27T06:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b364386b-319d-4d99-b2b4-80af5cb48907", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T14:53:12.000Z" - }, - "end": { - "$date": "2021-08-27T16:10:01.000Z" - }, - "events": [ - { - "uuid": "68bdb43c-8758-4cdc-aee3-44c77bda42f9", - "start": { - "$date": "2021-08-27T14:53:12.000Z" - }, - "end": { - "$date": "2021-08-27T16:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "db1c9b43-b650-40ab-804b-bf1a797da00f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T19:16:47.000Z" - }, - "end": { - "$date": "2021-08-27T19:32:12.000Z" - }, - "events": [ - { - "uuid": "22732d5a-9d57-499c-b730-9c3b25516905", - "start": { - "$date": "2021-08-27T19:16:47.000Z" - }, - "end": { - "$date": "2021-08-27T19:32:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "423de23a-1503-42ec-a867-9f9f08e86b3e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-27T21:47:49.000Z" - }, - "end": { - "$date": "2021-08-28T06:44:29.000Z" - }, - "events": [ - { - "uuid": "e7eab549-3c81-4321-b00e-f3ca427108a6", - "start": { - "$date": "2021-08-27T21:47:49.000Z" - }, - "end": { - "$date": "2021-08-27T22:01:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "966d03c5-96cc-4fec-8634-8ae97d379bbd", - "start": { - "$date": "2021-08-27T22:01:49.000Z" - }, - "end": { - "$date": "2021-08-27T22:05:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45916da9-b842-4720-bbcd-d953cb204c20", - "start": { - "$date": "2021-08-27T22:05:49.000Z" - }, - "end": { - "$date": "2021-08-27T22:07:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7b5d029-9502-41c7-9fba-38f3fbcc70f8", - "start": { - "$date": "2021-08-27T22:07:49.000Z" - }, - "end": { - "$date": "2021-08-27T22:31:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e26f091-c098-4f5e-a8cd-105e4cc488ed", - "start": { - "$date": "2021-08-27T22:31:49.000Z" - }, - "end": { - "$date": "2021-08-27T23:31:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e79417c3-6e99-4a90-a191-4b22b86daac8", - "start": { - "$date": "2021-08-27T23:31:49.000Z" - }, - "end": { - "$date": "2021-08-27T23:32:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b619f36-a439-4433-b523-33905da287b2", - "start": { - "$date": "2021-08-27T23:32:49.000Z" - }, - "end": { - "$date": "2021-08-28T00:02:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c31d6e49-7254-4b7f-a5ee-9a9d2211b2d7", - "start": { - "$date": "2021-08-28T00:02:49.000Z" - }, - "end": { - "$date": "2021-08-28T00:07:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "86cc3181-b5ec-4273-8e4e-7fb6b633f47b", - "start": { - "$date": "2021-08-28T00:07:49.000Z" - }, - "end": { - "$date": "2021-08-28T00:17:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0696889b-d8ce-4d13-b925-c30fb65989a7", - "start": { - "$date": "2021-08-28T00:17:49.000Z" - }, - "end": { - "$date": "2021-08-28T00:22:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "919beedc-5169-40a5-90d3-5984142581e3", - "start": { - "$date": "2021-08-28T00:22:49.000Z" - }, - "end": { - "$date": "2021-08-28T00:25:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a847324c-6672-4a50-a539-44b55a41a96b", - "start": { - "$date": "2021-08-28T00:25:49.000Z" - }, - "end": { - "$date": "2021-08-28T01:07:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3ce911a4-5d15-4f9c-80cc-58a415e76064", - "start": { - "$date": "2021-08-28T01:07:49.000Z" - }, - "end": { - "$date": "2021-08-28T03:58:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a4746b2-051a-40bb-8b8d-8a66a4f7aff6", - "start": { - "$date": "2021-08-28T03:58:49.000Z" - }, - "end": { - "$date": "2021-08-28T04:03:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f973bbee-a7b7-4716-99e5-67cd97364011", - "start": { - "$date": "2021-08-28T04:03:49.000Z" - }, - "end": { - "$date": "2021-08-28T06:44:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "5dee2d23-4c36-469a-a812-42b90fbe6664", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-27T21:54:23.000Z" - }, - "end": { - "$date": "2021-08-27T22:44:58.000Z" - }, - "events": [ - { - "uuid": "7590c068-e781-4549-8a28-cfa9d479923c", - "start": { - "$date": "2021-08-27T21:54:23.000Z" - }, - "end": { - "$date": "2021-08-27T22:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e14f3e77-b45b-4097-a6bb-363c723ce5a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-27T22:13:28.000Z" - }, - "end": { - "$date": "2021-08-27T22:53:07.000Z" - }, - "events": [ - { - "uuid": "62247b27-23d6-4119-90c4-425db559a9ec", - "start": { - "$date": "2021-08-27T22:13:28.000Z" - }, - "end": { - "$date": "2021-08-27T22:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7595de58-5d97-4b49-9bd4-dbb21966a34d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-27T23:24:21.000Z" - }, - "end": { - "$date": "2021-08-27T23:56:12.000Z" - }, - "events": [ - { - "uuid": "cb9998e0-0697-485c-92d7-d335359d60af", - "start": { - "$date": "2021-08-27T23:24:21.000Z" - }, - "end": { - "$date": "2021-08-27T23:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f24fa4fd-a14a-4544-811b-346e33c99016", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-27T23:07:45.000Z" - }, - "end": { - "$date": "2021-08-27T23:54:54.000Z" - }, - "events": [ - { - "uuid": "e4a4fece-2bef-4e05-808d-c976dffb59e6", - "start": { - "$date": "2021-08-27T23:07:45.000Z" - }, - "end": { - "$date": "2021-08-27T23:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b82827b-dfe3-4875-90c6-4d06c87a78a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T00:01:52.000Z" - }, - "end": { - "$date": "2021-08-28T00:23:24.000Z" - }, - "events": [ - { - "uuid": "1203eeb1-fa46-4d1d-9aef-bba9a44bf607", - "start": { - "$date": "2021-08-28T00:01:52.000Z" - }, - "end": { - "$date": "2021-08-28T00:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b515e2b4-9b86-419f-8d12-b02312927d0f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T00:24:13.000Z" - }, - "end": { - "$date": "2021-08-28T02:06:20.000Z" - }, - "events": [ - { - "uuid": "02d3c44d-48fd-4e2c-99c8-88829f052e70", - "start": { - "$date": "2021-08-28T00:24:13.000Z" - }, - "end": { - "$date": "2021-08-28T00:44:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a6b685f-04d5-41b4-ba2d-42b20321f836", - "start": { - "$date": "2021-08-28T00:44:13.000Z" - }, - "end": { - "$date": "2021-08-28T01:24:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "277df82b-7f07-453e-97a9-4dc43a08443e", - "start": { - "$date": "2021-08-28T01:24:13.000Z" - }, - "end": { - "$date": "2021-08-28T01:29:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ad5f73a-4c04-424e-a2eb-f987774ea564", - "start": { - "$date": "2021-08-28T01:29:13.000Z" - }, - "end": { - "$date": "2021-08-28T01:45:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74909e7f-ced6-4b74-874c-f65130e8ee09", - "start": { - "$date": "2021-08-28T01:45:13.000Z" - }, - "end": { - "$date": "2021-08-28T02:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e641598e-3bc2-4d2d-a4e0-5a594e971ee7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T01:38:08.000Z" - }, - "end": { - "$date": "2021-08-28T02:20:46.000Z" - }, - "events": [ - { - "uuid": "36f29ba8-b7b6-4b09-bd69-81ed96d79eff", - "start": { - "$date": "2021-08-28T01:38:08.000Z" - }, - "end": { - "$date": "2021-08-28T02:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c13f1f6-dbc9-43b6-b024-2e29733862e6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T02:04:20.000Z" - }, - "end": { - "$date": "2021-08-28T02:06:21.000Z" - }, - "events": [ - { - "uuid": "6701e940-303a-472c-87f5-bc502c1cbc7e", - "start": { - "$date": "2021-08-28T02:04:20.000Z" - }, - "end": { - "$date": "2021-08-28T02:06:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "009b44b8-6e1b-45d1-9fe7-50f8254628de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T02:06:30.000Z" - }, - "end": { - "$date": "2021-08-28T02:09:14.000Z" - }, - "events": [ - { - "uuid": "f1629756-450e-4179-9c6a-3fa87ed1e617", - "start": { - "$date": "2021-08-28T02:06:30.000Z" - }, - "end": { - "$date": "2021-08-28T02:09:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da4ce722-6306-465c-8f6d-c3b906611381", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T02:19:17.000Z" - }, - "end": { - "$date": "2021-08-28T02:45:34.000Z" - }, - "events": [ - { - "uuid": "48f40dc1-ae48-4b18-ba57-02aee93c8fdc", - "start": { - "$date": "2021-08-28T02:19:17.000Z" - }, - "end": { - "$date": "2021-08-28T02:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "afec22d4-f962-46de-9102-406c0cb54ec4", - "uuid": "0937ed21-7900-4c1a-b63a-51372de3c886", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T03:23:19.000Z" - }, - "end": { - "$date": "2021-08-28T03:41:49.000Z" - }, - "events": [ - { - "uuid": "e337c034-3d36-4239-bee5-991862aec260", - "start": { - "$date": "2021-08-28T03:23:19.000Z" - }, - "end": { - "$date": "2021-08-28T03:41:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "2cf6a5f0-7649-45eb-8503-d1fbfc43b384", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-28T02:10:40.000Z" - }, - "end": { - "$date": "2021-08-28T03:37:57.000Z" - }, - "events": [ - { - "uuid": "8e3f6185-462f-4d56-9383-5af6ad576245", - "start": { - "$date": "2021-08-28T02:10:40.000Z" - }, - "end": { - "$date": "2021-08-28T03:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e70d1359-ae05-4897-806b-50b690a79653", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-28T02:18:46.000Z" - }, - "end": { - "$date": "2021-08-28T02:45:22.000Z" - }, - "events": [ - { - "uuid": "0e063a79-6684-41f4-993f-dd95cdfc398d", - "start": { - "$date": "2021-08-28T02:18:46.000Z" - }, - "end": { - "$date": "2021-08-28T02:45:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4fe18381-a41b-436a-b031-6fe5ddb411e1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T02:20:31.000Z" - }, - "end": { - "$date": "2021-08-28T03:42:00.000Z" - }, - "events": [ - { - "uuid": "87ad70f1-4317-4251-9693-190b42509d92", - "start": { - "$date": "2021-08-28T02:20:31.000Z" - }, - "end": { - "$date": "2021-08-28T03:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a65348f6-8e1b-4830-91de-6552e613d966", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-28T03:19:03.000Z" - }, - "end": { - "$date": "2021-08-28T04:48:07.000Z" - }, - "events": [ - { - "uuid": "5e677bfc-02c5-4436-9807-caf2e6a2b952", - "start": { - "$date": "2021-08-28T03:19:03.000Z" - }, - "end": { - "$date": "2021-08-28T04:48:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "520c902b-fd2f-4151-85a7-723c5392ffed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T02:49:44.000Z" - }, - "end": { - "$date": "2021-08-28T03:12:00.000Z" - }, - "events": [ - { - "uuid": "cf77a26b-f8d2-4569-abf7-c90001ca491d", - "start": { - "$date": "2021-08-28T02:49:44.000Z" - }, - "end": { - "$date": "2021-08-28T03:12:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2610ae90-11e7-4699-baf5-822ad7dd755b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-28T02:49:33.000Z" - }, - "end": { - "$date": "2021-08-28T03:12:11.000Z" - }, - "events": [ - { - "uuid": "e9ffbbf6-24ee-4ac1-8af4-4740ba515e13", - "start": { - "$date": "2021-08-28T02:49:33.000Z" - }, - "end": { - "$date": "2021-08-28T03:12:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bd7a411b-e142-4526-bd4b-3f4e70925512", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-28T02:47:11.000Z" - }, - "end": { - "$date": "2021-08-28T03:12:17.000Z" - }, - "events": [ - { - "uuid": "2348915c-85ca-48dd-8e87-61fbab664861", - "start": { - "$date": "2021-08-28T02:47:11.000Z" - }, - "end": { - "$date": "2021-08-28T03:12:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "81a37675-1a85-4fda-aabb-61614e1709a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T05:00:02.000Z" - }, - "end": { - "$date": "2021-08-28T05:46:21.000Z" - }, - "events": [ - { - "uuid": "9e2fa178-76b1-4b82-b342-cbb339ead2fd", - "start": { - "$date": "2021-08-28T05:00:02.000Z" - }, - "end": { - "$date": "2021-08-28T05:46:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d591fa4-cdf7-4628-9ca4-f447f28a04b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T03:23:52.000Z" - }, - "end": { - "$date": "2021-08-28T03:41:56.000Z" - }, - "events": [ - { - "uuid": "4acd6355-f61b-4b3a-8606-5fda1f6a9b16", - "start": { - "$date": "2021-08-28T03:23:52.000Z" - }, - "end": { - "$date": "2021-08-28T03:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c04b5f3d-0dbe-47af-9dce-6b856166e603", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-28T07:38:16.000Z" - }, - "end": { - "$date": "2021-08-28T07:39:12.000Z" - }, - "events": [ - { - "uuid": "361b6c3a-ba0a-4e44-9b13-2b674fe454b3", - "start": { - "$date": "2021-08-28T07:38:16.000Z" - }, - "end": { - "$date": "2021-08-28T07:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e47a4ca-13ed-420a-9c67-65ce15e41cfc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-28T03:23:43.000Z" - }, - "end": { - "$date": "2021-08-28T03:41:48.000Z" - }, - "events": [ - { - "uuid": "b9fdd8b3-66ff-4f95-9306-07e70413a839", - "start": { - "$date": "2021-08-28T03:23:43.000Z" - }, - "end": { - "$date": "2021-08-28T03:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ec6280f-e0d8-4066-a0a9-05e0f346ed5c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T03:47:49.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:28.000Z" - }, - "events": [ - { - "uuid": "c4dc93be-386f-4acd-a0cb-c6968ac3973e", - "start": { - "$date": "2021-08-28T03:47:49.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "afec22d4-f962-46de-9102-406c0cb54ec4", - "uuid": "11a10b6e-33ac-4f47-961c-840bcefbf685", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T03:48:09.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:34.000Z" - }, - "events": [ - { - "uuid": "5f48be29-dd60-4c71-8124-039565e530cc", - "start": { - "$date": "2021-08-28T03:48:09.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "b07b86a0-714d-4842-adaf-e812fb6901a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T03:44:15.000Z" - }, - "end": { - "$date": "2021-08-28T04:58:43.000Z" - }, - "events": [ - { - "uuid": "ebb04313-129b-415c-8d61-adc77c597c6b", - "start": { - "$date": "2021-08-28T03:44:15.000Z" - }, - "end": { - "$date": "2021-08-28T04:58:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12367946-81e8-4ab3-ac1e-b25e0234c023", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-28T03:48:18.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:19.000Z" - }, - "events": [ - { - "uuid": "4cdbf44e-dea2-4871-88e3-839fc6319524", - "start": { - "$date": "2021-08-28T03:48:18.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ea187d6-7aa4-4bcd-bf8c-749503672ca3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-28T03:47:48.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:19.000Z" - }, - "events": [ - { - "uuid": "a1be5ba1-0284-4471-8581-c7a779e36470", - "start": { - "$date": "2021-08-28T03:47:48.000Z" - }, - "end": { - "$date": "2021-08-28T04:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "99dda718-fbf2-4280-afb5-39cbf3ef2652", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-28T03:56:08.000Z" - }, - "end": { - "$date": "2021-08-28T04:11:20.000Z" - }, - "events": [ - { - "uuid": "879f2e7d-edad-4434-9e45-5d8a047d7776", - "start": { - "$date": "2021-08-28T03:56:08.000Z" - }, - "end": { - "$date": "2021-08-28T04:11:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b574bb29-5a28-4352-8b03-5ac47fb860ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T04:32:24.000Z" - }, - "end": { - "$date": "2021-08-28T04:51:19.000Z" - }, - "events": [ - { - "uuid": "6fd4494f-d0e7-4d43-8513-f2dc47dd6f4e", - "start": { - "$date": "2021-08-28T04:32:24.000Z" - }, - "end": { - "$date": "2021-08-28T04:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "fa75e8e0-8119-4927-8c1a-2b77284bbba3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-28T04:15:28.000Z" - }, - "end": { - "$date": "2021-08-28T04:57:00.000Z" - }, - "events": [ - { - "uuid": "491594f7-4c9d-433c-be3d-05264dc06bd3", - "start": { - "$date": "2021-08-28T04:15:28.000Z" - }, - "end": { - "$date": "2021-08-28T04:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "a9829e41-5e49-4f23-a833-8640b6d4d64c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T04:25:25.000Z" - }, - "end": { - "$date": "2021-08-28T04:29:19.000Z" - }, - "events": [ - { - "uuid": "54e653eb-8d6c-4fd5-94ba-5f45e5314a96", - "start": { - "$date": "2021-08-28T04:25:25.000Z" - }, - "end": { - "$date": "2021-08-28T04:29:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "3ce7a4f7-eca1-4a1b-86ed-27c8cb5084c5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-28T04:26:33.000Z" - }, - "end": { - "$date": "2021-08-28T07:38:15.000Z" - }, - "events": [ - { - "uuid": "b60e996f-b8a8-41f2-acbb-a8633a2fe276", - "start": { - "$date": "2021-08-28T04:26:33.000Z" - }, - "end": { - "$date": "2021-08-28T07:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2307069c-8c08-4025-b3dc-b224024b6e2e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-28T04:34:22.000Z" - }, - "end": { - "$date": "2021-08-28T04:51:07.000Z" - }, - "events": [ - { - "uuid": "b09c89f8-9f23-4e38-bdbd-b9eee9ac3dbc", - "start": { - "$date": "2021-08-28T04:34:22.000Z" - }, - "end": { - "$date": "2021-08-28T04:51:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "3f79edf2-795d-43a7-96e7-82d91bdc4348", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T04:29:35.000Z" - }, - "end": { - "$date": "2021-08-28T04:34:39.000Z" - }, - "events": [ - { - "uuid": "64fa3456-34c4-45ac-816f-8c4e9ecf1731", - "start": { - "$date": "2021-08-28T04:29:35.000Z" - }, - "end": { - "$date": "2021-08-28T04:34:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "059cc846-90e0-4ff9-8045-d49f055eccf3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T04:35:00.000Z" - }, - "end": { - "$date": "2021-08-28T05:05:49.000Z" - }, - "events": [ - { - "uuid": "60874986-c37c-4cff-889d-708151e38297", - "start": { - "$date": "2021-08-28T04:35:00.000Z" - }, - "end": { - "$date": "2021-08-28T05:05:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "5022ebc8-907b-415f-abe8-ac23bb965c9d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-28T04:46:25.000Z" - }, - "end": { - "$date": "2021-08-28T07:38:04.000Z" - }, - "events": [ - { - "uuid": "27363570-3ab8-4431-a64a-d99335c2e3f4", - "start": { - "$date": "2021-08-28T04:46:25.000Z" - }, - "end": { - "$date": "2021-08-28T07:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "9390788e-7bfa-44aa-b46b-bf1bb4588f05", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-28T04:49:46.000Z" - }, - "end": { - "$date": "2021-08-28T05:57:43.000Z" - }, - "events": [ - { - "uuid": "8c069693-7802-48ae-a2e3-c345c46cdc9e", - "start": { - "$date": "2021-08-28T04:49:46.000Z" - }, - "end": { - "$date": "2021-08-28T05:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1910f1ca-9165-4bbe-9148-80171f863084", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T04:51:27.000Z" - }, - "end": { - "$date": "2021-08-28T05:20:54.000Z" - }, - "events": [ - { - "uuid": "b6fb2f41-2479-462b-8e52-d6e56db72af4", - "start": { - "$date": "2021-08-28T04:51:27.000Z" - }, - "end": { - "$date": "2021-08-28T05:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "fd3635d8-52e2-4cb4-b276-35acae163c74", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-28T04:55:37.000Z" - }, - "end": { - "$date": "2021-08-28T07:39:16.000Z" - }, - "events": [ - { - "uuid": "777ac4e1-bb5e-4f73-8e88-549c53da910b", - "start": { - "$date": "2021-08-28T04:55:37.000Z" - }, - "end": { - "$date": "2021-08-28T07:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "b78a2e8e-0d05-4a55-be49-056fd683813e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T05:27:35.000Z" - }, - "end": { - "$date": "2021-08-28T05:46:10.000Z" - }, - "events": [ - { - "uuid": "2eeed713-df79-4b08-acd5-ecbfa5c90f1c", - "start": { - "$date": "2021-08-28T05:27:35.000Z" - }, - "end": { - "$date": "2021-08-28T05:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "05656e36-3460-4055-bfc0-713c145a4e01", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T05:28:35.000Z" - }, - "end": { - "$date": "2021-08-28T07:38:06.000Z" - }, - "events": [ - { - "uuid": "4ffb1eb9-10cf-491c-b2a8-0d4eebf6dce9", - "start": { - "$date": "2021-08-28T05:28:35.000Z" - }, - "end": { - "$date": "2021-08-28T07:38:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e9ef2c2d-5024-4d91-9adc-fc6d386269a0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T05:47:21.000Z" - }, - "end": { - "$date": "2021-08-28T06:33:41.000Z" - }, - "events": [ - { - "uuid": "e871ddda-38dd-4826-ab9f-d831fdb97413", - "start": { - "$date": "2021-08-28T05:47:21.000Z" - }, - "end": { - "$date": "2021-08-28T06:33:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02a2ce77-f49d-4117-bcb1-beaa4b833602", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T06:57:16.000Z" - }, - "end": { - "$date": "2021-08-28T07:27:29.000Z" - }, - "events": [ - { - "uuid": "71ef9630-34ce-43c6-a8fb-625faf6df2b6", - "start": { - "$date": "2021-08-28T06:57:16.000Z" - }, - "end": { - "$date": "2021-08-28T07:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "45d40a13-57ef-42ba-9d84-6b7727a9a402", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T07:07:00.000Z" - }, - "end": { - "$date": "2021-08-28T07:47:01.000Z" - }, - "events": [ - { - "uuid": "7424158a-7a13-4d65-a1fe-e2a31a3a6c79", - "start": { - "$date": "2021-08-28T07:07:00.000Z" - }, - "end": { - "$date": "2021-08-28T07:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a4f172fc-bda6-4229-bac5-905d197009f7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T07:47:11.000Z" - }, - "end": { - "$date": "2021-08-28T08:48:02.000Z" - }, - "events": [ - { - "uuid": "326cc839-a5d5-4ab4-ab4a-c04b3909f5e1", - "start": { - "$date": "2021-08-28T07:47:11.000Z" - }, - "end": { - "$date": "2021-08-28T08:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "ce9d1580-19c7-4efe-af44-49487c3a95bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T14:23:39.000Z" - }, - "end": { - "$date": "2021-08-28T15:32:45.000Z" - }, - "events": [ - { - "uuid": "7417681c-838d-4cde-9d48-d947b7fb8339", - "start": { - "$date": "2021-08-28T14:23:39.000Z" - }, - "end": { - "$date": "2021-08-28T15:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ccf9196c-eee8-493f-bf74-d9c8d6ffc441", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T15:33:05.000Z" - }, - "end": { - "$date": "2021-08-28T16:21:29.000Z" - }, - "events": [ - { - "uuid": "7ed7477e-dbb3-4d61-bd80-9c39aa2659a6", - "start": { - "$date": "2021-08-28T15:33:05.000Z" - }, - "end": { - "$date": "2021-08-28T16:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "b8ab7b84-87ba-4c13-96d0-24a0423f0c95", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T16:21:49.000Z" - }, - "end": { - "$date": "2021-08-28T16:57:09.000Z" - }, - "events": [ - { - "uuid": "58c44212-a3b8-4970-86c7-336bea8a542c", - "start": { - "$date": "2021-08-28T16:21:49.000Z" - }, - "end": { - "$date": "2021-08-28T16:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ff309c6-a3d1-4b7a-92f7-6f388de0d696", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T16:41:36.000Z" - }, - "end": { - "$date": "2021-08-28T17:05:17.000Z" - }, - "events": [ - { - "uuid": "386d6a5d-1aa0-4548-8b2a-78134444eca1", - "start": { - "$date": "2021-08-28T16:41:36.000Z" - }, - "end": { - "$date": "2021-08-28T17:05:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "63177ca1-a0a5-4730-adef-28e3e66a3b98", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T16:58:59.000Z" - }, - "end": { - "$date": "2021-08-28T17:54:17.000Z" - }, - "events": [ - { - "uuid": "f32e801c-6a50-47ba-899e-1159a5196891", - "start": { - "$date": "2021-08-28T16:58:59.000Z" - }, - "end": { - "$date": "2021-08-28T17:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "395510f9-0c56-4147-bd8a-2ab786a82bb3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-28T17:50:55.000Z" - }, - "end": { - "$date": "2021-08-29T05:18:14.000Z" - }, - "events": [ - { - "uuid": "e2fb8ac0-0be4-4dc5-91bd-535524b99bf0", - "start": { - "$date": "2021-08-28T17:50:55.000Z" - }, - "end": { - "$date": "2021-08-28T18:06:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89680d0b-0889-4580-b826-41e5da7fb60e", - "start": { - "$date": "2021-08-28T18:06:55.000Z" - }, - "end": { - "$date": "2021-08-28T18:15:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "222b53e3-ce39-4e34-aa81-3376c5b7df2e", - "start": { - "$date": "2021-08-28T18:15:55.000Z" - }, - "end": { - "$date": "2021-08-28T18:43:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "383e8c41-c55b-4665-b25c-316b8ccc106a", - "start": { - "$date": "2021-08-28T18:43:55.000Z" - }, - "end": { - "$date": "2021-08-28T19:45:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ace660c0-2433-4b7e-b859-1ce40c813c6b", - "start": { - "$date": "2021-08-28T19:45:55.000Z" - }, - "end": { - "$date": "2021-08-28T19:59:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7da8f7d1-3cb0-4d48-94c3-71e8474d9986", - "start": { - "$date": "2021-08-28T19:59:55.000Z" - }, - "end": { - "$date": "2021-08-28T20:01:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6dd8638c-49f7-4597-b995-9d2c45ae0171", - "start": { - "$date": "2021-08-28T20:01:55.000Z" - }, - "end": { - "$date": "2021-08-28T21:12:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ae2bca2-3932-4874-9127-ba76ec396719", - "start": { - "$date": "2021-08-28T21:12:55.000Z" - }, - "end": { - "$date": "2021-08-28T21:17:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b70519df-e7a7-4153-94b6-72e47b7f8e7d", - "start": { - "$date": "2021-08-28T21:17:55.000Z" - }, - "end": { - "$date": "2021-08-28T21:27:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f4ff850-123e-4a59-afa4-ec5b8a416d7a", - "start": { - "$date": "2021-08-28T21:27:55.000Z" - }, - "end": { - "$date": "2021-08-28T21:54:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e6c730e-1895-4753-a04d-b3d39636f3db", - "start": { - "$date": "2021-08-28T21:54:55.000Z" - }, - "end": { - "$date": "2021-08-28T23:36:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "430e258d-7129-4f02-abec-c62eab927add", - "start": { - "$date": "2021-08-28T23:36:55.000Z" - }, - "end": { - "$date": "2021-08-29T00:56:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a6a683b7-f006-4732-86aa-bdbf362c84fa", - "start": { - "$date": "2021-08-29T00:56:55.000Z" - }, - "end": { - "$date": "2021-08-29T01:08:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a0f09848-a7bd-4469-81dc-2f06e302fff6", - "start": { - "$date": "2021-08-29T01:08:55.000Z" - }, - "end": { - "$date": "2021-08-29T01:31:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f9d2222-f97c-4b77-a134-aae4c6adcbe6", - "start": { - "$date": "2021-08-29T01:31:55.000Z" - }, - "end": { - "$date": "2021-08-29T01:41:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c263724-5604-42d6-818d-40f5c4ae3998", - "start": { - "$date": "2021-08-29T01:41:55.000Z" - }, - "end": { - "$date": "2021-08-29T01:54:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "278cfff0-c7d2-466b-b5b0-4105560f22b6", - "start": { - "$date": "2021-08-29T01:54:55.000Z" - }, - "end": { - "$date": "2021-08-29T02:35:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b77fc3f3-7b1f-40b7-8410-af905b4e3a0e", - "start": { - "$date": "2021-08-29T02:35:55.000Z" - }, - "end": { - "$date": "2021-08-29T02:52:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "40e72470-1bfa-45d6-8c3f-d1101c5054e5", - "start": { - "$date": "2021-08-29T02:52:55.000Z" - }, - "end": { - "$date": "2021-08-29T05:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5f6c6a48-565c-4708-b309-b2901da5ab28", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T17:54:22.000Z" - }, - "end": { - "$date": "2021-08-28T19:22:56.000Z" - }, - "events": [ - { - "uuid": "e9896c79-e43c-49d9-a674-f1cd88668247", - "start": { - "$date": "2021-08-28T17:54:22.000Z" - }, - "end": { - "$date": "2021-08-28T19:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "afec22d4-f962-46de-9102-406c0cb54ec4", - "uuid": "176bed8e-6b88-4cd6-87ac-9fef9cef309e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T18:47:08.000Z" - }, - "end": { - "$date": "2021-08-28T19:04:24.000Z" - }, - "events": [ - { - "uuid": "dfc1bac5-e1d3-4fa8-879c-fa84a0b0ba0f", - "start": { - "$date": "2021-08-28T18:47:08.000Z" - }, - "end": { - "$date": "2021-08-28T19:04:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "afec22d4-f962-46de-9102-406c0cb54ec4", - "uuid": "7a2a6521-8b05-4e29-b6f2-cc1f15803355", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T19:04:30.000Z" - }, - "end": { - "$date": "2021-08-28T21:14:05.000Z" - }, - "events": [ - { - "uuid": "ff969fcd-e4ab-406a-a211-da3a6e4dcb58", - "start": { - "$date": "2021-08-28T19:04:30.000Z" - }, - "end": { - "$date": "2021-08-28T21:14:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9556c20a-b11b-4eaf-b8f4-63c17377bf07", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T19:23:06.000Z" - }, - "end": { - "$date": "2021-08-28T19:36:34.000Z" - }, - "events": [ - { - "uuid": "2d08e64b-0c0a-4031-94d7-c964ed5692ae", - "start": { - "$date": "2021-08-28T19:23:06.000Z" - }, - "end": { - "$date": "2021-08-28T19:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0e846e29-c96a-4b0f-83b9-a6390078e03d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-28T19:26:12.000Z" - }, - "end": { - "$date": "2021-08-28T20:35:24.000Z" - }, - "events": [ - { - "uuid": "589e5818-0e7f-462a-9f1e-58779b6f45b3", - "start": { - "$date": "2021-08-28T19:26:12.000Z" - }, - "end": { - "$date": "2021-08-28T20:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "99781fc4-381e-4380-b354-200d87d43ddf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T20:17:46.000Z" - }, - "end": { - "$date": "2021-08-28T20:52:39.000Z" - }, - "events": [ - { - "uuid": "e10c5dc1-d4fc-4c2a-99ff-b6fb26edc77b", - "start": { - "$date": "2021-08-28T20:17:46.000Z" - }, - "end": { - "$date": "2021-08-28T20:52:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "473b47a3-0268-4e1e-85f7-1564b10dac9b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-28T20:39:06.000Z" - }, - "end": { - "$date": "2021-08-28T21:22:59.000Z" - }, - "events": [ - { - "uuid": "e8b79817-6daa-4dd0-b268-6f675c3f32c0", - "start": { - "$date": "2021-08-28T20:39:06.000Z" - }, - "end": { - "$date": "2021-08-28T21:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cb3fad29-c768-4303-b27f-1e892bf2f0e3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-28T20:59:06.000Z" - }, - "end": { - "$date": "2021-08-28T21:37:40.000Z" - }, - "events": [ - { - "uuid": "917e1a45-47ed-4d7d-ad23-089396d60800", - "start": { - "$date": "2021-08-28T20:59:06.000Z" - }, - "end": { - "$date": "2021-08-28T21:37:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3506342c-39bc-49c2-8d19-86e13006b277", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-08-28T21:10:25.000Z" - }, - "end": { - "$date": "2021-08-28T21:16:01.000Z" - }, - "events": [ - { - "uuid": "7323e46d-eb3b-44c2-84fe-24222d991430", - "start": { - "$date": "2021-08-28T21:10:25.000Z" - }, - "end": { - "$date": "2021-08-28T21:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "6b77cf6a-99d2-4fc1-8a7a-810c2d2e9d9a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-28T21:14:21.000Z" - }, - "end": { - "$date": "2021-08-28T22:00:10.000Z" - }, - "events": [ - { - "uuid": "84f53b67-9511-454b-921e-93fda3d70c67", - "start": { - "$date": "2021-08-28T21:14:21.000Z" - }, - "end": { - "$date": "2021-08-28T22:00:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e9c6bb19-2a08-4264-97e1-c48ccae66d87", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-28T22:14:16.000Z" - }, - "end": { - "$date": "2021-08-29T00:54:36.000Z" - }, - "events": [ - { - "uuid": "0c208ffb-f7df-4639-a59d-a59e249addb0", - "start": { - "$date": "2021-08-28T22:14:16.000Z" - }, - "end": { - "$date": "2021-08-29T00:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "ac23b9ee-f5e2-4ac6-a87c-b290b9dbef68", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-28T22:17:16.000Z" - }, - "end": { - "$date": "2021-08-29T00:15:48.000Z" - }, - "events": [ - { - "uuid": "b26d39e8-64df-47d9-91ed-d9287c9dda48", - "start": { - "$date": "2021-08-28T22:17:16.000Z" - }, - "end": { - "$date": "2021-08-29T00:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "0dc78a92-fbe6-4b44-ae63-0eef5afcfc3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-28T23:05:51.000Z" - }, - "end": { - "$date": "2021-08-28T23:49:32.000Z" - }, - "events": [ - { - "uuid": "f858f57b-5fad-4e94-a6a6-998a19a77e1d", - "start": { - "$date": "2021-08-28T23:05:51.000Z" - }, - "end": { - "$date": "2021-08-28T23:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "9e4596f4-c218-457d-be27-34f38c07a0df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-29T00:33:41.000Z" - }, - "end": { - "$date": "2021-08-29T04:50:55.000Z" - }, - "events": [ - { - "uuid": "057ebd6c-b8cc-4843-a5da-06fd961eea90", - "start": { - "$date": "2021-08-29T00:33:41.000Z" - }, - "end": { - "$date": "2021-08-29T04:50:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c71cfbde-b5a1-41c9-94c2-a78fe6d5fc6e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T00:54:41.000Z" - }, - "end": { - "$date": "2021-08-29T02:14:03.000Z" - }, - "events": [ - { - "uuid": "37522cab-10ca-46e3-aa3b-187ab53c5794", - "start": { - "$date": "2021-08-29T00:54:41.000Z" - }, - "end": { - "$date": "2021-08-29T02:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb84a2d8-6a33-4fce-b160-54e5a3c0de98", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T01:08:12.000Z" - }, - "end": { - "$date": "2021-08-29T01:47:35.000Z" - }, - "events": [ - { - "uuid": "124e2414-4201-4ada-ae34-d5b6ca699d55", - "start": { - "$date": "2021-08-29T01:08:12.000Z" - }, - "end": { - "$date": "2021-08-29T01:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "412aff62-95be-4219-908b-ed4560ec63ba", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-29T01:55:43.000Z" - }, - "end": { - "$date": "2021-08-29T02:25:43.000Z" - }, - "events": [ - { - "uuid": "4a30cb0b-7dfe-45f9-b9d3-fad72ada4c07", - "start": { - "$date": "2021-08-29T01:55:43.000Z" - }, - "end": { - "$date": "2021-08-29T02:06:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44157ab7-b9fe-423f-8740-09945688a783", - "start": { - "$date": "2021-08-29T02:06:43.000Z" - }, - "end": { - "$date": "2021-08-29T02:07:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2b4ceaf0-0998-48e0-83ec-3e85bf84c15c", - "start": { - "$date": "2021-08-29T02:07:43.000Z" - }, - "end": { - "$date": "2021-08-29T02:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "412fee2f-3854-4ec3-b7c1-1f0b058c6a62", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-29T02:03:51.000Z" - }, - "end": { - "$date": "2021-08-29T03:06:53.000Z" - }, - "events": [ - { - "uuid": "4f7361be-6730-4557-a6ee-4dfd37c73458", - "start": { - "$date": "2021-08-29T02:03:51.000Z" - }, - "end": { - "$date": "2021-08-29T03:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "67e03f42-a553-4e9a-9b85-bed72ecc7129", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T02:08:57.000Z" - }, - "end": { - "$date": "2021-08-29T02:10:23.000Z" - }, - "events": [ - { - "uuid": "2cf0ba08-ef09-4639-9390-e9cb983c69b2", - "start": { - "$date": "2021-08-29T02:08:57.000Z" - }, - "end": { - "$date": "2021-08-29T02:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "b02f962c-7838-492b-b32c-cb0a96f94fca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T02:11:18.000Z" - }, - "end": { - "$date": "2021-08-29T03:56:31.000Z" - }, - "events": [ - { - "uuid": "3304f741-872d-40cf-9610-0f2ad862045b", - "start": { - "$date": "2021-08-29T02:11:18.000Z" - }, - "end": { - "$date": "2021-08-29T03:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "6d422d45-37fc-4dcb-a62f-85296b6c6880", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T04:01:12.000Z" - }, - "end": { - "$date": "2021-08-29T05:47:01.000Z" - }, - "events": [ - { - "uuid": "3186ddb0-3596-4836-a705-26bb84548960", - "start": { - "$date": "2021-08-29T04:01:12.000Z" - }, - "end": { - "$date": "2021-08-29T04:40:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "10703c15-4f75-432b-ba34-a41a7765ecd4", - "start": { - "$date": "2021-08-29T04:40:12.000Z" - }, - "end": { - "$date": "2021-08-29T05:10:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7698bf5d-eb3e-4f1a-ab73-cb9af79a5db9", - "start": { - "$date": "2021-08-29T05:10:12.000Z" - }, - "end": { - "$date": "2021-08-29T05:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "1d8160ee-a6c6-436c-b7c2-dbff49623aa9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-29T04:08:49.000Z" - }, - "end": { - "$date": "2021-08-29T05:26:59.000Z" - }, - "events": [ - { - "uuid": "2019c1e8-c265-4e83-b7f1-bdf74aae5b94", - "start": { - "$date": "2021-08-29T04:08:49.000Z" - }, - "end": { - "$date": "2021-08-29T05:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "aa91fa1b-5941-447d-83d6-05ffbfc4a134", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-29T04:26:29.000Z" - }, - "end": { - "$date": "2021-08-29T04:52:36.000Z" - }, - "events": [ - { - "uuid": "70ee31c4-dd40-41f1-809c-2dea79f19f5b", - "start": { - "$date": "2021-08-29T04:26:29.000Z" - }, - "end": { - "$date": "2021-08-29T04:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1329605c-4395-4443-8f9e-532107e7b83a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-29T04:33:21.000Z" - }, - "end": { - "$date": "2021-08-29T05:12:37.000Z" - }, - "events": [ - { - "uuid": "948c0165-87df-4066-ade6-91b116e63183", - "start": { - "$date": "2021-08-29T04:33:21.000Z" - }, - "end": { - "$date": "2021-08-29T05:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "62172e61-52ea-40dc-b6ba-38c8e7afed72", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-29T04:47:25.000Z" - }, - "end": { - "$date": "2021-08-29T06:31:51.000Z" - }, - "events": [ - { - "uuid": "b18c9b40-c6e6-4c0c-8717-fd6bea8b1542", - "start": { - "$date": "2021-08-29T04:47:25.000Z" - }, - "end": { - "$date": "2021-08-29T06:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "51d0af43-e18b-4c57-b7df-70c0ea8632c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-29T04:53:41.000Z" - }, - "end": { - "$date": "2021-08-29T06:17:38.000Z" - }, - "events": [ - { - "uuid": "4f95118d-4b89-4c90-a151-e6643ad4ca21", - "start": { - "$date": "2021-08-29T04:53:41.000Z" - }, - "end": { - "$date": "2021-08-29T06:17:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3ff899ad-c2c0-4510-8d88-ce20f653d8f8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-29T05:18:40.000Z" - }, - "end": { - "$date": "2021-08-29T06:24:09.000Z" - }, - "events": [ - { - "uuid": "72084b74-2a66-4723-b2b5-c9ff4c6f64d3", - "start": { - "$date": "2021-08-29T05:18:40.000Z" - }, - "end": { - "$date": "2021-08-29T06:04:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da911c35-ada6-4555-a7eb-ef4df69d5216", - "start": { - "$date": "2021-08-29T06:04:40.000Z" - }, - "end": { - "$date": "2021-08-29T06:24:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66b46b95-c156-4717-af53-955d15b53718", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-29T05:23:28.000Z" - }, - "end": { - "$date": "2021-08-29T05:57:53.000Z" - }, - "events": [ - { - "uuid": "7df6ffd7-4581-4335-8218-80e89294ddc4", - "start": { - "$date": "2021-08-29T05:23:28.000Z" - }, - "end": { - "$date": "2021-08-29T05:57:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "3ed55825-a7c5-4557-838a-f621fb19c88f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-29T06:20:55.000Z" - }, - "end": { - "$date": "2021-08-29T07:06:24.000Z" - }, - "events": [ - { - "uuid": "634dbdce-cb93-41cf-9050-1f5fa5b97adb", - "start": { - "$date": "2021-08-29T06:20:55.000Z" - }, - "end": { - "$date": "2021-08-29T07:06:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e8c8aac8-5428-4576-95c6-a7b8ee55aef8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T14:09:28.000Z" - }, - "end": { - "$date": "2021-08-29T14:18:00.000Z" - }, - "events": [ - { - "uuid": "527d240c-5d86-41ca-a8e9-d73c34102cff", - "start": { - "$date": "2021-08-29T14:09:28.000Z" - }, - "end": { - "$date": "2021-08-29T14:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b88098c3-b419-4de2-bf5f-479de5b2abc6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T14:31:07.000Z" - }, - "end": { - "$date": "2021-08-29T14:37:33.000Z" - }, - "events": [ - { - "uuid": "7bb2c13a-3de0-404b-8fbe-c78218e14410", - "start": { - "$date": "2021-08-29T14:31:07.000Z" - }, - "end": { - "$date": "2021-08-29T14:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "e7595fc0-c5d0-495b-b696-d410b35952c9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T14:38:58.000Z" - }, - "end": { - "$date": "2021-08-29T14:59:44.000Z" - }, - "events": [ - { - "uuid": "30a9362d-919a-4de1-8605-3ec0c65e6dd1", - "start": { - "$date": "2021-08-29T14:38:58.000Z" - }, - "end": { - "$date": "2021-08-29T14:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f4c5e3a1-18ed-4e49-a7a2-a227a01e2d86", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T14:59:58.000Z" - }, - "end": { - "$date": "2021-08-29T17:37:37.000Z" - }, - "events": [ - { - "uuid": "d593eb66-1fd5-461c-b866-2df394f7aada", - "start": { - "$date": "2021-08-29T14:59:58.000Z" - }, - "end": { - "$date": "2021-08-29T17:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e8b7ef7f-812b-435a-b132-3cf7d85bf247", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T16:24:34.000Z" - }, - "end": { - "$date": "2021-08-29T16:53:30.000Z" - }, - "events": [ - { - "uuid": "80b582a1-d879-4cc9-ab58-04cf81b8e4c0", - "start": { - "$date": "2021-08-29T16:24:34.000Z" - }, - "end": { - "$date": "2021-08-29T16:53:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "86192fb8-62e2-462c-bcae-9314bcbdbe2c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T16:54:34.000Z" - }, - "end": { - "$date": "2021-08-29T18:35:22.000Z" - }, - "events": [ - { - "uuid": "80b178b1-e7da-405a-b56c-d0e91c55ecc9", - "start": { - "$date": "2021-08-29T16:54:34.000Z" - }, - "end": { - "$date": "2021-08-29T18:35:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e2189ae6-0c88-46f2-a5fc-4c29908880fa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-29T17:24:02.000Z" - }, - "end": { - "$date": "2021-08-29T22:38:28.000Z" - }, - "events": [ - { - "uuid": "e3a597d7-4985-40e3-a550-a3c8e5c10985", - "start": { - "$date": "2021-08-29T17:24:02.000Z" - }, - "end": { - "$date": "2021-08-29T22:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "19b69b8d-c991-45d1-881f-908d31a2d282", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-29T17:32:19.000Z" - }, - "end": { - "$date": "2021-08-29T17:48:30.000Z" - }, - "events": [ - { - "uuid": "c5cb86d7-30e8-4205-b96e-edb3bf828ed2", - "start": { - "$date": "2021-08-29T17:32:19.000Z" - }, - "end": { - "$date": "2021-08-29T17:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "05041297-4d12-4222-aa1c-ec2734e76cf0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T17:39:01.000Z" - }, - "end": { - "$date": "2021-08-29T18:58:59.000Z" - }, - "events": [ - { - "uuid": "7b59578d-7e1f-45b3-b723-4d7f3a59d667", - "start": { - "$date": "2021-08-29T17:39:01.000Z" - }, - "end": { - "$date": "2021-08-29T18:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "66ee7464-03d6-497e-988c-4dab989a154c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-29T17:56:24.000Z" - }, - "end": { - "$date": "2021-08-29T18:27:06.000Z" - }, - "events": [ - { - "uuid": "1b844782-2280-467e-8f89-aac826666b7e", - "start": { - "$date": "2021-08-29T17:56:24.000Z" - }, - "end": { - "$date": "2021-08-29T18:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b85ebe64-f698-4ced-a767-a48a641209cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-29T18:16:05.000Z" - }, - "end": { - "$date": "2021-08-29T18:22:55.000Z" - }, - "events": [ - { - "uuid": "d75ffc51-d609-438e-80e7-ff6ea23ece8b", - "start": { - "$date": "2021-08-29T18:16:05.000Z" - }, - "end": { - "$date": "2021-08-29T18:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "dd2191a8-8aa1-43c0-a964-52ba08b7753b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T18:23:46.000Z" - }, - "end": { - "$date": "2021-08-29T19:03:26.000Z" - }, - "events": [ - { - "uuid": "655a16b2-2dc0-49a7-b547-6cdffca3453d", - "start": { - "$date": "2021-08-29T18:23:46.000Z" - }, - "end": { - "$date": "2021-08-29T19:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "ce8dc180-2bca-47cc-9f3a-89a7839954c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-29T18:27:36.000Z" - }, - "end": { - "$date": "2021-08-29T18:32:20.000Z" - }, - "events": [ - { - "uuid": "e138b8d5-fd24-46a5-bb16-303affd22f02", - "start": { - "$date": "2021-08-29T18:27:36.000Z" - }, - "end": { - "$date": "2021-08-29T18:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72233048-7fca-4b7a-97e0-d1c295320df2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T18:38:31.000Z" - }, - "end": { - "$date": "2021-08-29T19:13:59.000Z" - }, - "events": [ - { - "uuid": "4a7b10bc-2732-4a88-9202-354e5652cdff", - "start": { - "$date": "2021-08-29T18:38:31.000Z" - }, - "end": { - "$date": "2021-08-29T19:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "0f467c81-f248-4bb9-91b1-83e2563a22a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T18:59:19.000Z" - }, - "end": { - "$date": "2021-08-29T19:41:40.000Z" - }, - "events": [ - { - "uuid": "2d352ef9-aff0-4b0c-8192-7bda3549ff30", - "start": { - "$date": "2021-08-29T18:59:19.000Z" - }, - "end": { - "$date": "2021-08-29T19:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "b9e86708-b4cb-4af6-a8c5-92b384f6e59a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T19:03:34.000Z" - }, - "end": { - "$date": "2021-08-29T20:06:43.000Z" - }, - "events": [ - { - "uuid": "2092e3f2-59a6-4e6f-8bdb-0f3ff2f08b9a", - "start": { - "$date": "2021-08-29T19:03:34.000Z" - }, - "end": { - "$date": "2021-08-29T20:06:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6747375-d1b1-48c2-a194-55137c96e25a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T19:25:48.000Z" - }, - "end": { - "$date": "2021-08-29T19:32:05.000Z" - }, - "events": [ - { - "uuid": "288c8e76-049d-4b3e-8938-d8bc9d6ac9e5", - "start": { - "$date": "2021-08-29T19:25:48.000Z" - }, - "end": { - "$date": "2021-08-29T19:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c2c34d4-ed16-49e8-a365-d05f8e3a45a6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T19:34:16.000Z" - }, - "end": { - "$date": "2021-08-29T20:02:09.000Z" - }, - "events": [ - { - "uuid": "33c6f6ed-b1cd-40f6-900b-608625a6d591", - "start": { - "$date": "2021-08-29T19:34:16.000Z" - }, - "end": { - "$date": "2021-08-29T20:02:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "713d15ad-4247-403a-b3d5-bb0ee01e9ee3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T20:04:08.000Z" - }, - "end": { - "$date": "2021-08-29T20:42:37.000Z" - }, - "events": [ - { - "uuid": "c5ec7031-d0bc-47ef-8f54-c4ef70e2c09b", - "start": { - "$date": "2021-08-29T20:04:08.000Z" - }, - "end": { - "$date": "2021-08-29T20:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2b9877a-0983-4e5f-96b0-9d85a9d548aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-29T21:55:04.000Z" - }, - "end": { - "$date": "2021-08-29T21:56:11.000Z" - }, - "events": [ - { - "uuid": "7b0ddfed-506f-4d18-ad69-394b147f18d9", - "start": { - "$date": "2021-08-29T21:55:04.000Z" - }, - "end": { - "$date": "2021-08-29T21:56:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8fd622bc-3ef7-4a30-9702-9f2cc5388dd7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T21:10:12.000Z" - }, - "end": { - "$date": "2021-08-29T23:11:32.000Z" - }, - "events": [ - { - "uuid": "d923422a-eda5-4c78-9e08-3661330d262b", - "start": { - "$date": "2021-08-29T21:10:12.000Z" - }, - "end": { - "$date": "2021-08-29T23:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69df7cc8-e2ec-4b94-a05a-40b5533d2c38", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-29T21:19:41.000Z" - }, - "end": { - "$date": "2021-08-29T21:54:48.000Z" - }, - "events": [ - { - "uuid": "2625ea27-64a5-4103-bdb4-81ecd7a7252b", - "start": { - "$date": "2021-08-29T21:19:41.000Z" - }, - "end": { - "$date": "2021-08-29T21:54:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a64826d-7f40-4a7a-8409-a74167ae1ee4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-29T21:55:57.000Z" - }, - "end": { - "$date": "2021-08-29T23:09:05.000Z" - }, - "events": [ - { - "uuid": "c2cab936-f17c-453b-b018-2bd8739e82ba", - "start": { - "$date": "2021-08-29T21:55:57.000Z" - }, - "end": { - "$date": "2021-08-29T23:09:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "113fb12b-3c3e-4523-b04d-aeb46cd0bac0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-29T20:32:21.000Z" - }, - "end": { - "$date": "2021-08-30T05:46:28.000Z" - }, - "events": [ - { - "uuid": "6f8a0bc9-80c9-49c7-930b-5ab777cac57e", - "start": { - "$date": "2021-08-29T20:32:21.000Z" - }, - "end": { - "$date": "2021-08-29T21:25:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74c621d0-78a6-4062-92dd-7b8afb2ca76c", - "start": { - "$date": "2021-08-29T21:25:21.000Z" - }, - "end": { - "$date": "2021-08-29T21:27:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef47d227-a25a-45c4-a3c9-53ed27747fca", - "start": { - "$date": "2021-08-29T21:27:21.000Z" - }, - "end": { - "$date": "2021-08-30T00:59:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "333ae837-8fa2-4d3d-974d-765b318ce436", - "start": { - "$date": "2021-08-30T00:59:21.000Z" - }, - "end": { - "$date": "2021-08-30T01:04:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f480531-4c2c-494a-a553-a1fd46d49fb9", - "start": { - "$date": "2021-08-30T01:04:21.000Z" - }, - "end": { - "$date": "2021-08-30T01:15:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5324f9f7-f2ee-44fe-8dee-91e2bfcc24ad", - "start": { - "$date": "2021-08-30T01:15:21.000Z" - }, - "end": { - "$date": "2021-08-30T01:29:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "399c1337-638b-4803-9cd3-3bc0f32a4f2e", - "start": { - "$date": "2021-08-30T01:29:21.000Z" - }, - "end": { - "$date": "2021-08-30T01:39:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0fecce9b-873d-4560-ad50-c3698ece17ae", - "start": { - "$date": "2021-08-30T01:39:21.000Z" - }, - "end": { - "$date": "2021-08-30T01:54:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e2c5fd7-6b82-4dbd-a0de-a308300542ac", - "start": { - "$date": "2021-08-30T01:54:21.000Z" - }, - "end": { - "$date": "2021-08-30T05:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "2aba2500-f965-40ea-8eb3-3d2f70f37bef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-29T22:20:39.000Z" - }, - "end": { - "$date": "2021-08-29T22:22:47.000Z" - }, - "events": [ - { - "uuid": "a08869e8-b9b8-4f28-af4b-9d151daf9dc9", - "start": { - "$date": "2021-08-29T22:20:39.000Z" - }, - "end": { - "$date": "2021-08-29T22:22:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07529c08-3a5d-40ce-9186-e356e3c3dfe8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T22:29:16.000Z" - }, - "end": { - "$date": "2021-08-29T23:06:00.000Z" - }, - "events": [ - { - "uuid": "610ea9f4-6f30-47ef-bb1d-824fa7d3c22d", - "start": { - "$date": "2021-08-29T22:29:16.000Z" - }, - "end": { - "$date": "2021-08-29T23:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e5356f2-8a36-42c6-887e-e748d4b65183", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-29T23:10:09.000Z" - }, - "end": { - "$date": "2021-08-29T23:40:48.000Z" - }, - "events": [ - { - "uuid": "9f7d2692-90af-43fe-baf7-e451f9cad1d1", - "start": { - "$date": "2021-08-29T23:10:09.000Z" - }, - "end": { - "$date": "2021-08-29T23:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "9938876d-0761-4b9b-83ad-675c29ff2520", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T23:11:56.000Z" - }, - "end": { - "$date": "2021-08-29T23:18:02.000Z" - }, - "events": [ - { - "uuid": "48bf2913-a1f3-4e2f-afdd-0990b4ad4bbd", - "start": { - "$date": "2021-08-29T23:11:56.000Z" - }, - "end": { - "$date": "2021-08-29T23:18:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "4c67bf9f-a5b6-4cd4-97e5-196b7c9e317d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-29T23:21:27.000Z" - }, - "end": { - "$date": "2021-08-30T00:10:39.000Z" - }, - "events": [ - { - "uuid": "d410b8ac-751a-45f5-8f24-82f0f937b9af", - "start": { - "$date": "2021-08-29T23:21:27.000Z" - }, - "end": { - "$date": "2021-08-30T00:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "ff8bebd7-a62a-454b-bf83-8f2fa5bf4734", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-30T00:11:54.000Z" - }, - "end": { - "$date": "2021-08-30T00:53:53.000Z" - }, - "events": [ - { - "uuid": "b224e10e-39f7-48f4-a6fb-bdc350b1a057", - "start": { - "$date": "2021-08-30T00:11:54.000Z" - }, - "end": { - "$date": "2021-08-30T00:53:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "985a8799-48de-449c-927e-432287f92d7e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-30T00:54:02.000Z" - }, - "end": { - "$date": "2021-08-30T02:36:54.000Z" - }, - "events": [ - { - "uuid": "103b82c2-862a-4820-b4da-8213d48a7b44", - "start": { - "$date": "2021-08-30T00:54:02.000Z" - }, - "end": { - "$date": "2021-08-30T02:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "d0384bd2-bcee-459b-a055-ca07897aa90f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-30T01:51:42.000Z" - }, - "end": { - "$date": "2021-08-30T08:05:18.000Z" - }, - "events": [ - { - "uuid": "ea85d28b-b167-4e7b-807f-6a7f81611465", - "start": { - "$date": "2021-08-30T01:51:42.000Z" - }, - "end": { - "$date": "2021-08-30T08:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bdb075b4-bc04-4956-9576-9ec1f36fbedd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-30T02:10:24.000Z" - }, - "end": { - "$date": "2021-08-30T02:41:35.000Z" - }, - "events": [ - { - "uuid": "b02f670c-f6fd-4173-9703-2c4164e6d1d2", - "start": { - "$date": "2021-08-30T02:10:24.000Z" - }, - "end": { - "$date": "2021-08-30T02:41:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6005984a-f587-4d2e-9c64-2f57ae33691f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-30T02:51:46.000Z" - }, - "end": { - "$date": "2021-08-30T03:12:36.000Z" - }, - "events": [ - { - "uuid": "29ffb12a-2dbc-4dba-94a4-4f66947c8308", - "start": { - "$date": "2021-08-30T02:51:46.000Z" - }, - "end": { - "$date": "2021-08-30T03:12:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ed7a0ffa-145a-4585-b47a-a3dc50b7cf5e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-30T03:10:15.000Z" - }, - "end": { - "$date": "2021-08-30T06:19:07.000Z" - }, - "events": [ - { - "uuid": "e3ae2a1f-85da-4607-952e-05dcf1332e14", - "start": { - "$date": "2021-08-30T03:10:15.000Z" - }, - "end": { - "$date": "2021-08-30T06:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "79d56cc9-0a5f-46bd-a159-be00fbcb1f64", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-30T03:16:31.000Z" - }, - "end": { - "$date": "2021-08-30T04:18:30.000Z" - }, - "events": [ - { - "uuid": "005f888d-d91c-4ace-9646-3f6ffdb0909e", - "start": { - "$date": "2021-08-30T03:16:31.000Z" - }, - "end": { - "$date": "2021-08-30T04:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "273f8424-03c5-4646-b72e-8a6784fc3635", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-08-30T03:51:17.000Z" - }, - "end": { - "$date": "2021-08-30T05:32:41.000Z" - }, - "events": [ - { - "uuid": "64b364ef-ddab-41e4-9047-92aa0d7d482f", - "start": { - "$date": "2021-08-30T03:51:17.000Z" - }, - "end": { - "$date": "2021-08-30T05:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "94557528-4d1c-4f41-a51f-8a25cb6ba2f2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-08-30T03:54:55.000Z" - }, - "end": { - "$date": "2021-08-30T05:32:37.000Z" - }, - "events": [ - { - "uuid": "a553b6ee-3c60-41ff-82e2-bd7fb5b4e87c", - "start": { - "$date": "2021-08-30T03:54:55.000Z" - }, - "end": { - "$date": "2021-08-30T05:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "04fc1df1-a977-48ac-a381-e65c8d991a01", - "uuid": "53294a09-a5d7-4291-b566-be7061dab44a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-08-30T04:35:07.000Z" - }, - "end": { - "$date": "2021-08-30T06:21:57.000Z" - }, - "events": [ - { - "uuid": "6e26e3fc-8576-4408-95d7-b39b57e71cd9", - "start": { - "$date": "2021-08-30T04:35:07.000Z" - }, - "end": { - "$date": "2021-08-30T06:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed84ef63-4aaf-4c70-9c9a-ab6b7316b956", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-30T05:14:04.000Z" - }, - "end": { - "$date": "2021-08-30T05:42:10.000Z" - }, - "events": [ - { - "uuid": "ac659ec4-bfbf-484e-a4bd-cbb790e02292", - "start": { - "$date": "2021-08-30T05:14:04.000Z" - }, - "end": { - "$date": "2021-08-30T05:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "bda8fb64-14bf-4406-b85a-6ca85308aefd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-30T01:51:42.000Z" - }, - "end": { - "$date": "2021-08-30T08:44:34.000Z" - }, - "events": [ - { - "uuid": "581e801e-a9c3-451b-8f60-1c35f8940823", - "start": { - "$date": "2021-08-30T01:51:42.000Z" - }, - "end": { - "$date": "2021-08-30T08:44:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7c46aa8d-33e3-433e-8072-7433541ad969", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-30T17:46:21.000Z" - }, - "end": { - "$date": "2021-08-30T17:57:37.000Z" - }, - "events": [ - { - "uuid": "a39413d6-dd1e-4205-9479-b99e1f6bc525", - "start": { - "$date": "2021-08-30T17:46:21.000Z" - }, - "end": { - "$date": "2021-08-30T17:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cccc53e-db6a-422b-b4cc-f40e3a56398c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-30T17:49:25.000Z" - }, - "end": { - "$date": "2021-08-30T18:24:36.000Z" - }, - "events": [ - { - "uuid": "49011398-4de0-4793-8b0a-752552328f75", - "start": { - "$date": "2021-08-30T17:49:25.000Z" - }, - "end": { - "$date": "2021-08-30T18:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "1d4df1af-8598-43d9-83cf-0cec28bb3f20", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-30T18:10:02.000Z" - }, - "end": { - "$date": "2021-08-30T19:02:18.000Z" - }, - "events": [ - { - "uuid": "b5fc70a3-6318-46bf-a5ce-ac504e889d1d", - "start": { - "$date": "2021-08-30T18:10:02.000Z" - }, - "end": { - "$date": "2021-08-30T19:02:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "7daf50a0-d7e0-4ad7-b298-6eba6df5d0a9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-30T18:34:01.000Z" - }, - "end": { - "$date": "2021-08-31T00:03:11.000Z" - }, - "events": [ - { - "uuid": "f2218331-05f8-433a-9526-029a2eee2a28", - "start": { - "$date": "2021-08-30T18:34:01.000Z" - }, - "end": { - "$date": "2021-08-31T00:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "489e082b-d75a-4593-a4c0-bced3558bac2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-30T18:50:44.000Z" - }, - "end": { - "$date": "2021-08-30T19:27:36.000Z" - }, - "events": [ - { - "uuid": "7d728646-a987-457d-a376-0f5a5ffeac08", - "start": { - "$date": "2021-08-30T18:50:44.000Z" - }, - "end": { - "$date": "2021-08-30T19:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65d8e2f5-7e0e-45f7-bc70-579a6ae64877", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-30T19:29:36.000Z" - }, - "end": { - "$date": "2021-08-30T20:03:59.000Z" - }, - "events": [ - { - "uuid": "cfaec0ca-1ea9-4859-9798-752aea2af05a", - "start": { - "$date": "2021-08-30T19:29:36.000Z" - }, - "end": { - "$date": "2021-08-30T20:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f1c33a6-680d-43cd-8d44-1f92382ad328", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-30T20:08:35.000Z" - }, - "end": { - "$date": "2021-08-30T20:34:27.000Z" - }, - "events": [ - { - "uuid": "e4ce3f5d-12cf-4cad-8716-9b599cf5836a", - "start": { - "$date": "2021-08-30T20:08:35.000Z" - }, - "end": { - "$date": "2021-08-30T20:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1918bc78-a555-48b0-81a5-6a09cc7c8a86", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-30T20:33:35.000Z" - }, - "end": { - "$date": "2021-08-30T20:51:46.000Z" - }, - "events": [ - { - "uuid": "79d93f37-b6fa-49e4-9f22-c89cef05e897", - "start": { - "$date": "2021-08-30T20:33:35.000Z" - }, - "end": { - "$date": "2021-08-30T20:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "261b5613-9078-4c01-bd87-da7f7ba66cff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-08-30T21:51:11.000Z" - }, - "end": { - "$date": "2021-08-30T22:25:31.000Z" - }, - "events": [ - { - "uuid": "03b4541c-f2de-4451-a8a0-ab53e7368f43", - "start": { - "$date": "2021-08-30T21:51:11.000Z" - }, - "end": { - "$date": "2021-08-30T22:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "fa1de17d-3c5a-478d-8254-f6b6c3265b95", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-08-30T22:27:21.000Z" - }, - "end": { - "$date": "2021-08-31T00:16:23.000Z" - }, - "events": [ - { - "uuid": "13412ea7-0ed6-4cee-8dd9-926caa8f8d21", - "start": { - "$date": "2021-08-30T22:27:21.000Z" - }, - "end": { - "$date": "2021-08-31T00:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c57f40dc-fff6-4057-9e7b-2135d19f5a42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-30T23:41:01.000Z" - }, - "end": { - "$date": "2021-08-31T00:06:42.000Z" - }, - "events": [ - { - "uuid": "fd2aae79-4098-43a9-ad7e-aaaaada9302a", - "start": { - "$date": "2021-08-30T23:41:01.000Z" - }, - "end": { - "$date": "2021-08-31T00:06:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "865a9d09-90f1-4397-89ef-eab0c2989292", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-31T00:19:20.000Z" - }, - "end": { - "$date": "2021-08-31T00:52:18.000Z" - }, - "events": [ - { - "uuid": "6f474fc5-27ed-47ad-8935-6f9205608fb8", - "start": { - "$date": "2021-08-31T00:19:20.000Z" - }, - "end": { - "$date": "2021-08-31T00:52:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "01eef348-b5f4-46a5-9e8f-2ab328d2d480", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-31T00:57:49.000Z" - }, - "end": { - "$date": "2021-08-31T01:12:01.000Z" - }, - "events": [ - { - "uuid": "1a9909fc-b444-4d54-b27a-615b7a24f95e", - "start": { - "$date": "2021-08-31T00:57:49.000Z" - }, - "end": { - "$date": "2021-08-31T01:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "49575b96-c243-49d9-a31d-9c31bc4e5752", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-30T23:49:35.000Z" - }, - "end": { - "$date": "2021-08-31T04:40:41.000Z" - }, - "events": [ - { - "uuid": "c0d5d581-5cbc-4d29-b7e1-73bb43150610", - "start": { - "$date": "2021-08-30T23:49:35.000Z" - }, - "end": { - "$date": "2021-08-31T04:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5fae5910-1145-4a93-a355-105c82d2ffa4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-31T01:21:23.000Z" - }, - "end": { - "$date": "2021-08-31T04:13:03.000Z" - }, - "events": [ - { - "uuid": "30fea466-c3bd-4385-9754-fd4ced974ea6", - "start": { - "$date": "2021-08-31T01:21:23.000Z" - }, - "end": { - "$date": "2021-08-31T04:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d384499-da49-4d57-9cf9-3c3ead0cc374", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-31T02:27:46.000Z" - }, - "end": { - "$date": "2021-08-31T03:03:36.000Z" - }, - "events": [ - { - "uuid": "00d2f2f1-9162-48c2-a6b4-24813640856a", - "start": { - "$date": "2021-08-31T02:27:46.000Z" - }, - "end": { - "$date": "2021-08-31T03:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b612c132-c798-4f02-b1c0-0f9a20c16887", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-31T04:20:06.000Z" - }, - "end": { - "$date": "2021-08-31T04:47:57.000Z" - }, - "events": [ - { - "uuid": "32fcfaad-584c-499b-9a1d-6ef6bd51cb5f", - "start": { - "$date": "2021-08-31T04:20:06.000Z" - }, - "end": { - "$date": "2021-08-31T04:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed5a83cd-1568-4274-9101-6926c85acc61", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-08-31T04:20:04.000Z" - }, - "end": { - "$date": "2021-08-31T04:47:39.000Z" - }, - "events": [ - { - "uuid": "68546917-e629-47c2-a39e-5df7f4dc2ddf", - "start": { - "$date": "2021-08-31T04:20:04.000Z" - }, - "end": { - "$date": "2021-08-31T04:47:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a8f7896e-c3c1-450f-a77a-ebb3afb2d671", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-08-31T04:40:21.000Z" - }, - "end": { - "$date": "2021-08-31T05:05:48.000Z" - }, - "events": [ - { - "uuid": "ca18c2e4-bf53-4428-a09c-255a914e0b04", - "start": { - "$date": "2021-08-31T04:40:21.000Z" - }, - "end": { - "$date": "2021-08-31T05:05:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a11262e0-1084-40c8-9c37-9eb85317c4da", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-31T05:36:32.000Z" - }, - "end": { - "$date": "2021-08-31T06:04:03.000Z" - }, - "events": [ - { - "uuid": "d40806f2-5683-4f13-8bea-6ace9a36a157", - "start": { - "$date": "2021-08-31T05:36:32.000Z" - }, - "end": { - "$date": "2021-08-31T06:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "312f8433-fe66-44b4-858c-30133a1266a6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-08-31T06:13:03.000Z" - }, - "end": { - "$date": "2021-08-31T06:44:19.000Z" - }, - "events": [ - { - "uuid": "f15334ff-d8d8-4a43-871a-454897f5c5fa", - "start": { - "$date": "2021-08-31T06:13:03.000Z" - }, - "end": { - "$date": "2021-08-31T06:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "67003291-8174-44f5-bea7-39e8432685b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-31T21:42:14.000Z" - }, - "end": { - "$date": "2021-08-31T21:43:00.000Z" - }, - "events": [ - { - "uuid": "bf047ecf-fc5c-4987-b812-835747bd2103", - "start": { - "$date": "2021-08-31T21:42:14.000Z" - }, - "end": { - "$date": "2021-09-01T00:10:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "19f98bb0-955f-4dab-aa19-5925d0db1e7b", - "start": { - "$date": "2021-09-01T00:10:14.000Z" - }, - "end": { - "$date": "2021-09-01T00:11:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "480c837c-3a12-469a-a92a-0a00933882ad", - "start": { - "$date": "2021-09-01T00:11:14.000Z" - }, - "end": { - "$date": "2021-09-01T00:51:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d020f0e3-22dd-49f0-9d72-f93d985eb4ef", - "start": { - "$date": "2021-09-01T00:51:14.000Z" - }, - "end": { - "$date": "2021-09-01T01:01:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "318e54c9-4844-419b-8324-64656ab2ea26", - "start": { - "$date": "2021-09-01T01:01:14.000Z" - }, - "end": { - "$date": "2021-09-01T01:26:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da163dc9-22d7-47a8-9df2-fedaf02d39ef", - "start": { - "$date": "2021-09-01T01:26:14.000Z" - }, - "end": { - "$date": "2021-09-01T01:31:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "562ea8c8-54ae-4884-bfc3-b1075b78fbbf", - "start": { - "$date": "2021-09-01T01:31:14.000Z" - }, - "end": { - "$date": "2021-09-01T01:57:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86614a49-5de9-41f7-b210-9a9203a748c3", - "start": { - "$date": "2021-09-01T01:57:14.000Z" - }, - "end": { - "$date": "2021-09-01T02:04:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f4205722-34b1-4007-8518-8f10e6f0f469", - "start": { - "$date": "2021-09-01T02:04:14.000Z" - }, - "end": { - "$date": "2021-09-01T02:23:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa7dbce5-9b5f-4e5f-a21b-acfe3b47e6d4", - "start": { - "$date": "2021-09-01T02:23:14.000Z" - }, - "end": { - "$date": "2021-09-01T02:29:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09ec64be-7e46-49a3-8f21-17fae2615ecf", - "start": { - "$date": "2021-09-01T02:29:14.000Z" - }, - "end": { - "$date": "2021-09-01T02:46:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3638f07-ea7b-476a-804e-ab30987eeaf0", - "start": { - "$date": "2021-09-01T02:46:14.000Z" - }, - "end": { - "$date": "2021-09-01T02:48:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2257f143-d891-4166-b8b4-fb09aa1170b6", - "start": { - "$date": "2021-09-01T02:48:14.000Z" - }, - "end": { - "$date": "2021-09-01T03:40:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "94f955e5-8d21-43b7-92a2-bc2db99d91d8", - "start": { - "$date": "2021-09-01T03:40:14.000Z" - }, - "end": { - "$date": "2021-09-01T03:41:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "acafac00-a6aa-444d-8613-b931ed720dd0", - "start": { - "$date": "2021-09-01T03:41:14.000Z" - }, - "end": { - "$date": "2021-08-31T21:43:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d80687c1-84e7-42c7-97e6-98fcb73a3e6a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-31T14:30:18.000Z" - }, - "end": { - "$date": "2021-08-31T15:21:29.000Z" - }, - "events": [ - { - "uuid": "98b84508-d693-4849-ae4e-5240627bf183", - "start": { - "$date": "2021-08-31T14:30:18.000Z" - }, - "end": { - "$date": "2021-08-31T15:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e31f72f-7a42-4e2a-850d-fe7551105b53", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-31T15:23:51.000Z" - }, - "end": { - "$date": "2021-08-31T15:41:12.000Z" - }, - "events": [ - { - "uuid": "c51d46ac-3525-4785-a927-9172c41b065f", - "start": { - "$date": "2021-08-31T15:23:51.000Z" - }, - "end": { - "$date": "2021-08-31T15:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c2dde84-ce6b-48f3-a94b-4bbe0f3225cc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-31T15:55:16.000Z" - }, - "end": { - "$date": "2021-08-31T16:14:23.000Z" - }, - "events": [ - { - "uuid": "f9bdc00a-fdcd-4e80-9769-47c9a0a1bf6a", - "start": { - "$date": "2021-08-31T15:55:16.000Z" - }, - "end": { - "$date": "2021-08-31T16:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f60d1dd-887f-4b2f-a7ca-e5098f7fe0e3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-31T16:14:25.000Z" - }, - "end": { - "$date": "2021-08-31T16:35:42.000Z" - }, - "events": [ - { - "uuid": "53da6627-0473-4287-94a6-b455d340a88e", - "start": { - "$date": "2021-08-31T16:14:25.000Z" - }, - "end": { - "$date": "2021-08-31T16:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d1865927-04c4-4aee-8f08-20f98240812b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-08-31T16:36:38.000Z" - }, - "end": { - "$date": "2021-08-31T17:22:57.000Z" - }, - "events": [ - { - "uuid": "f4cb64bd-1d9b-493e-8aae-e4f05e074638", - "start": { - "$date": "2021-08-31T16:36:38.000Z" - }, - "end": { - "$date": "2021-08-31T17:22:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec503cec-4204-487b-b0da-fcb4e9bb2e4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-08-31T18:17:00.000Z" - }, - "end": { - "$date": "2021-08-31T18:50:20.000Z" - }, - "events": [ - { - "uuid": "00f9cb49-4f15-422f-ac11-3a739f8c254d", - "start": { - "$date": "2021-08-31T18:17:00.000Z" - }, - "end": { - "$date": "2021-08-31T18:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "472e63a5-0139-40e2-9702-f9e054cd16b8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-08-31T20:26:34.000Z" - }, - "end": { - "$date": "2021-08-31T21:04:25.000Z" - }, - "events": [ - { - "uuid": "ef024733-7cc5-465a-a9df-730f2aa98b75", - "start": { - "$date": "2021-08-31T20:26:34.000Z" - }, - "end": { - "$date": "2021-08-31T21:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f64894c7-8e21-45c8-b226-b246ed2af453", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-31T21:17:34.000Z" - }, - "end": { - "$date": "2021-08-31T21:29:14.000Z" - }, - "events": [ - { - "uuid": "867309d9-4ba7-41c2-b75c-b96e31749efb", - "start": { - "$date": "2021-08-31T21:17:34.000Z" - }, - "end": { - "$date": "2021-08-31T21:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "16ed2ef2-d5f6-4ff8-ae21-e58afb296083", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-31T21:43:55.000Z" - }, - "end": { - "$date": "2021-08-31T23:06:00.000Z" - }, - "events": [ - { - "uuid": "02af1ff0-6d57-48e5-b186-fdd542cd4dde", - "start": { - "$date": "2021-08-31T21:43:55.000Z" - }, - "end": { - "$date": "2021-08-31T23:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "faff85c2-28c8-4190-a0cf-a3865908476f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-08-31T22:15:06.000Z" - }, - "end": { - "$date": "2021-09-01T03:48:52.000Z" - }, - "events": [ - { - "uuid": "d411bc3d-3241-4bba-ad0b-1acbf27366cb", - "start": { - "$date": "2021-08-31T22:15:06.000Z" - }, - "end": { - "$date": "2021-09-01T03:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "683fb627-4815-4279-bba5-cfa2e949d8a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-31T22:39:25.000Z" - }, - "end": { - "$date": "2021-08-31T22:54:30.000Z" - }, - "events": [ - { - "uuid": "7c856cec-ff39-41f3-9d65-b8a430b7f54f", - "start": { - "$date": "2021-08-31T22:39:25.000Z" - }, - "end": { - "$date": "2021-08-31T22:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "6e660ce3-30b4-4066-a98f-432a3e69af86", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-08-31T23:11:05.000Z" - }, - "end": { - "$date": "2021-09-01T00:13:01.000Z" - }, - "events": [ - { - "uuid": "2cf83475-6544-4965-8c3c-89a16e5efea8", - "start": { - "$date": "2021-08-31T23:11:05.000Z" - }, - "end": { - "$date": "2021-09-01T00:13:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2b6f396a-5808-4c92-8577-7fd1f79489ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-08-31T23:12:18.000Z" - }, - "end": { - "$date": "2021-09-01T04:58:58.000Z" - }, - "events": [ - { - "uuid": "61535d60-843d-494f-a949-d76f7ab258f5", - "start": { - "$date": "2021-08-31T23:12:18.000Z" - }, - "end": { - "$date": "2021-08-31T23:45:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ede3188-050c-49a3-bf0e-556ab36e1868", - "start": { - "$date": "2021-08-31T23:45:18.000Z" - }, - "end": { - "$date": "2021-09-01T00:44:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a50d33e6-bbb5-46a1-85fa-7ce9520a4bb7", - "start": { - "$date": "2021-09-01T00:44:18.000Z" - }, - "end": { - "$date": "2021-09-01T04:04:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "87e92778-856b-4c5f-bb55-e20767463f3e", - "start": { - "$date": "2021-09-01T04:04:18.000Z" - }, - "end": { - "$date": "2021-09-01T04:16:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "528752a9-362a-4a25-9b3e-5069353ed1b4", - "start": { - "$date": "2021-09-01T04:16:18.000Z" - }, - "end": { - "$date": "2021-09-01T04:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "cb1d06a7-33f8-4cdb-be19-1b280f7b6cf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T00:13:20.000Z" - }, - "end": { - "$date": "2021-09-01T00:16:16.000Z" - }, - "events": [ - { - "uuid": "6b2aea52-8431-4430-9d32-6049063ffdef", - "start": { - "$date": "2021-09-01T00:13:20.000Z" - }, - "end": { - "$date": "2021-09-01T00:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6361481d-057a-4754-af26-577c89975995", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T00:16:25.000Z" - }, - "end": { - "$date": "2021-09-01T00:50:52.000Z" - }, - "events": [ - { - "uuid": "2cbe8a3d-5ae7-425e-9e8a-fb7e746e9bb9", - "start": { - "$date": "2021-09-01T00:16:25.000Z" - }, - "end": { - "$date": "2021-09-01T00:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "40cbc26e-474a-43c4-9a69-30194cbbeb91", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T00:51:27.000Z" - }, - "end": { - "$date": "2021-09-01T01:49:15.000Z" - }, - "events": [ - { - "uuid": "dd2e3301-f67a-4ddf-be2d-287932c011f4", - "start": { - "$date": "2021-09-01T00:51:27.000Z" - }, - "end": { - "$date": "2021-09-01T01:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "d38f7764-0ef5-4f87-98e2-374f796fb93c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T01:13:47.000Z" - }, - "end": { - "$date": "2021-09-01T01:53:11.000Z" - }, - "events": [ - { - "uuid": "bd993a1b-4cec-45cc-9c3a-fad40c18c8d5", - "start": { - "$date": "2021-09-01T01:13:47.000Z" - }, - "end": { - "$date": "2021-09-01T01:53:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c29a0e30-62be-4471-ad40-959f89f4091f", - "uuid": "1d22d897-a667-4468-9a81-14f11ddc19a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-01T01:19:55.000Z" - }, - "end": { - "$date": "2021-09-01T01:25:11.000Z" - }, - "events": [ - { - "uuid": "a7e7d301-d93b-44a3-bace-ad7982ec6e9c", - "start": { - "$date": "2021-09-01T01:19:55.000Z" - }, - "end": { - "$date": "2021-09-01T01:25:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bc1fd8f4-d29d-4e64-8d96-1d117b783083", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T01:21:55.000Z" - }, - "end": { - "$date": "2021-09-01T01:23:41.000Z" - }, - "events": [ - { - "uuid": "ef1fdb63-e93d-4ac0-b6ac-b3825924ac90", - "start": { - "$date": "2021-09-01T01:21:55.000Z" - }, - "end": { - "$date": "2021-09-01T01:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9350e6a2-6d42-41d3-932a-935c106b33fe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T01:26:12.000Z" - }, - "end": { - "$date": "2021-09-01T02:03:00.000Z" - }, - "events": [ - { - "uuid": "1005af4a-5bac-40ed-8225-65d67bba5602", - "start": { - "$date": "2021-09-01T01:26:12.000Z" - }, - "end": { - "$date": "2021-09-01T02:03:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "4a91a7f7-dd39-4f86-9701-67cbf45a540c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T01:49:34.000Z" - }, - "end": { - "$date": "2021-09-01T01:57:31.000Z" - }, - "events": [ - { - "uuid": "3e06b780-9418-4250-b721-5149059518d2", - "start": { - "$date": "2021-09-01T01:49:34.000Z" - }, - "end": { - "$date": "2021-09-01T01:57:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a49bb4da-9bef-487e-9c31-30a87a271113", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T02:03:10.000Z" - }, - "end": { - "$date": "2021-09-01T04:04:39.000Z" - }, - "events": [ - { - "uuid": "c16e3093-0144-4ed2-ab76-28f5f29dea8a", - "start": { - "$date": "2021-09-01T02:03:10.000Z" - }, - "end": { - "$date": "2021-09-01T04:04:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "effad26b-4801-40ef-8934-fb09847cf2d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-01T02:55:39.000Z" - }, - "end": { - "$date": "2021-09-01T05:14:43.000Z" - }, - "events": [ - { - "uuid": "b6fe63ba-a64f-4df9-b2e9-75265cf31018", - "start": { - "$date": "2021-09-01T02:55:39.000Z" - }, - "end": { - "$date": "2021-09-01T05:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebd023c6-2bcc-4dad-b7ae-fe58a209130c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-01T04:02:36.000Z" - }, - "end": { - "$date": "2021-09-01T04:05:23.000Z" - }, - "events": [ - { - "uuid": "5a196a1e-9ee7-407d-baeb-612fff4d755d", - "start": { - "$date": "2021-09-01T04:02:36.000Z" - }, - "end": { - "$date": "2021-09-01T04:05:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3c5157d-f1c7-4d9e-981a-d7fdb4287268", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-01T04:46:56.000Z" - }, - "end": { - "$date": "2021-09-01T04:47:53.000Z" - }, - "events": [ - { - "uuid": "842ed31c-ef0b-493e-ba79-21575bb3f574", - "start": { - "$date": "2021-09-01T04:46:56.000Z" - }, - "end": { - "$date": "2021-09-01T04:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bc97cb7e-e66b-4f0b-9391-b0b1b1b6dac8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T04:00:09.000Z" - }, - "end": { - "$date": "2021-09-01T04:08:14.000Z" - }, - "events": [ - { - "uuid": "010d6669-c300-4e49-be9d-8473fd2a1ca1", - "start": { - "$date": "2021-09-01T04:00:09.000Z" - }, - "end": { - "$date": "2021-09-01T04:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5a2c5a2-d2cb-4dc6-aa0e-10e36a981ab1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-01T04:08:47.000Z" - }, - "end": { - "$date": "2021-09-01T04:46:47.000Z" - }, - "events": [ - { - "uuid": "de200ac8-e09b-432d-92a6-bd33082076dc", - "start": { - "$date": "2021-09-01T04:08:47.000Z" - }, - "end": { - "$date": "2021-09-01T04:46:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0bfa8f6-15a4-4bda-9aec-049f8e268210", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-01T04:08:30.000Z" - }, - "end": { - "$date": "2021-09-01T04:46:46.000Z" - }, - "events": [ - { - "uuid": "d80d6e88-3aa0-4605-8d26-b143797b598d", - "start": { - "$date": "2021-09-01T04:08:30.000Z" - }, - "end": { - "$date": "2021-09-01T04:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "bf1ddd73-61d9-4983-be3e-50af4664e9b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T04:13:15.000Z" - }, - "end": { - "$date": "2021-09-01T04:24:36.000Z" - }, - "events": [ - { - "uuid": "f4d8b70c-3395-4c0e-b055-bca37c632fb5", - "start": { - "$date": "2021-09-01T04:13:15.000Z" - }, - "end": { - "$date": "2021-09-01T04:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "d8448f80-0b1f-4201-bdea-49e7ec6f137b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T04:13:24.000Z" - }, - "end": { - "$date": "2021-09-01T04:16:30.000Z" - }, - "events": [ - { - "uuid": "bee78d7c-6028-42b9-9926-86e45e69fe0a", - "start": { - "$date": "2021-09-01T04:13:24.000Z" - }, - "end": { - "$date": "2021-09-01T04:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3cbfc243-4864-469c-9073-2090b3191646", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-01T04:16:41.000Z" - }, - "end": { - "$date": "2021-09-01T05:55:25.000Z" - }, - "events": [ - { - "uuid": "97a534e9-4ffb-43e1-b33f-2a9b77f3066a", - "start": { - "$date": "2021-09-01T04:16:41.000Z" - }, - "end": { - "$date": "2021-09-01T05:55:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "0caca011-53d8-4783-9415-9615577891bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T04:17:00.000Z" - }, - "end": { - "$date": "2021-09-01T04:18:52.000Z" - }, - "events": [ - { - "uuid": "a7260b2b-4435-43e4-8208-17fcc870a707", - "start": { - "$date": "2021-09-01T04:17:00.000Z" - }, - "end": { - "$date": "2021-09-01T04:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "d1c21563-3a46-4c4c-8d0c-bac37560082e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T04:21:12.000Z" - }, - "end": { - "$date": "2021-09-01T06:15:37.000Z" - }, - "events": [ - { - "uuid": "31b46874-0b0f-483a-84fe-2e2a56a4a6dc", - "start": { - "$date": "2021-09-01T04:21:12.000Z" - }, - "end": { - "$date": "2021-09-01T06:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cddd3c7f-b661-4e1b-81fc-c5efe8973735", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-01T04:50:01.000Z" - }, - "end": { - "$date": "2021-09-01T05:11:16.000Z" - }, - "events": [ - { - "uuid": "28a7fb06-66bc-4a27-a7e6-e2b84662cd14", - "start": { - "$date": "2021-09-01T04:50:01.000Z" - }, - "end": { - "$date": "2021-09-01T05:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb03ec8d-b880-446b-9a7f-b0a9eadc2b5b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-01T04:49:57.000Z" - }, - "end": { - "$date": "2021-09-01T05:11:18.000Z" - }, - "events": [ - { - "uuid": "d9d2ada5-945f-4cd0-91aa-9641676c318a", - "start": { - "$date": "2021-09-01T04:49:57.000Z" - }, - "end": { - "$date": "2021-09-01T05:11:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "47a5872e-57b6-40f3-bbde-1114175aa3cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-01T05:14:57.000Z" - }, - "end": { - "$date": "2021-09-01T05:56:07.000Z" - }, - "events": [ - { - "uuid": "914d47cb-d1c8-4a94-adca-3d611e72d3a7", - "start": { - "$date": "2021-09-01T05:14:57.000Z" - }, - "end": { - "$date": "2021-09-01T05:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "b2516912-a623-424f-8654-b912e9818f6e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-01T07:00:15.000Z" - }, - "end": { - "$date": "2021-09-01T08:08:52.000Z" - }, - "events": [ - { - "uuid": "117346c2-c22f-430d-88fa-904989afaf3b", - "start": { - "$date": "2021-09-01T07:00:15.000Z" - }, - "end": { - "$date": "2021-09-01T08:08:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0c7db21f-acc5-4d99-8768-16ee8a5b7869", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T14:31:03.000Z" - }, - "end": { - "$date": "2021-09-01T14:40:09.000Z" - }, - "events": [ - { - "uuid": "19159332-81a3-424a-a6ac-6ae9efbe2176", - "start": { - "$date": "2021-09-01T14:31:03.000Z" - }, - "end": { - "$date": "2021-09-01T14:40:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c370329-955a-47b4-89a3-9f1afd710b0d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T19:03:35.000Z" - }, - "end": { - "$date": "2021-09-01T19:04:11.000Z" - }, - "events": [ - { - "uuid": "4e2441c0-001b-4103-bdf9-1f6041da7a56", - "start": { - "$date": "2021-09-01T19:03:35.000Z" - }, - "end": { - "$date": "2021-09-01T21:50:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da8a6517-d407-48d0-8f64-0966dcef326c", - "start": { - "$date": "2021-09-01T21:50:35.000Z" - }, - "end": { - "$date": "2021-09-01T21:52:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e24bf90-9bb0-4420-b081-082c2ea54cd2", - "start": { - "$date": "2021-09-01T21:52:35.000Z" - }, - "end": { - "$date": "2021-09-01T19:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "63c0da7a-6a41-44d0-9ce9-d52f9f4a1f5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-01T17:11:30.000Z" - }, - "end": { - "$date": "2021-09-01T21:28:34.000Z" - }, - "events": [ - { - "uuid": "e8157ef5-5d25-4ed5-a828-06e263bb1e03", - "start": { - "$date": "2021-09-01T17:11:30.000Z" - }, - "end": { - "$date": "2021-09-01T19:50:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f63378d8-6c24-4f1c-bda9-7f19572dc8a8", - "start": { - "$date": "2021-09-01T19:50:30.000Z" - }, - "end": { - "$date": "2021-09-01T19:56:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "22400009-a507-4b6e-8832-a26f1e6e391f", - "start": { - "$date": "2021-09-01T19:56:30.000Z" - }, - "end": { - "$date": "2021-09-01T21:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "d1c2520b-2a23-47b8-9838-b4c2211c6f26", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T18:01:03.000Z" - }, - "end": { - "$date": "2021-09-01T18:20:10.000Z" - }, - "events": [ - { - "uuid": "5a7f88e7-0453-4972-be40-869d930d680c", - "start": { - "$date": "2021-09-01T18:01:03.000Z" - }, - "end": { - "$date": "2021-09-01T18:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "e956fa35-1076-459d-adb0-75274f5af7d8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T18:27:55.000Z" - }, - "end": { - "$date": "2021-09-01T18:51:13.000Z" - }, - "events": [ - { - "uuid": "5b5542e0-b84a-46e7-891a-0e1100dfb5fb", - "start": { - "$date": "2021-09-01T18:27:55.000Z" - }, - "end": { - "$date": "2021-09-01T18:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f64f17ca-9bb5-457f-8492-e7e8d6da5606", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T19:16:32.000Z" - }, - "end": { - "$date": "2021-09-01T19:49:35.000Z" - }, - "events": [ - { - "uuid": "a607ee99-deb3-448d-8e49-df617ade50e0", - "start": { - "$date": "2021-09-01T19:16:32.000Z" - }, - "end": { - "$date": "2021-09-01T19:49:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2ec8c633-156e-4ba4-9978-5bba41513a83", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-01T19:51:39.000Z" - }, - "end": { - "$date": "2021-09-01T22:58:19.000Z" - }, - "events": [ - { - "uuid": "b2e9b076-a58f-41b0-aafd-1d1abcf634f4", - "start": { - "$date": "2021-09-01T19:51:39.000Z" - }, - "end": { - "$date": "2021-09-01T22:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "002fc3f3-5349-4fda-94a0-35bff2d100e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T20:45:45.000Z" - }, - "end": { - "$date": "2021-09-01T21:08:31.000Z" - }, - "events": [ - { - "uuid": "e683f77f-cd52-4983-8e43-4e62e0ba3ee4", - "start": { - "$date": "2021-09-01T20:45:45.000Z" - }, - "end": { - "$date": "2021-09-01T21:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "061938bd-f43e-4dd8-a658-7fb8d578b58e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T21:14:16.000Z" - }, - "end": { - "$date": "2021-09-01T21:31:26.000Z" - }, - "events": [ - { - "uuid": "c4213ae0-0c7d-4e8d-8ddb-d30293b1e477", - "start": { - "$date": "2021-09-01T21:14:16.000Z" - }, - "end": { - "$date": "2021-09-01T21:31:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d502132f-7afc-414c-b1f4-4307e054b211", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-01T21:33:42.000Z" - }, - "end": { - "$date": "2021-09-01T21:56:27.000Z" - }, - "events": [ - { - "uuid": "ae9d0c58-ac38-4f63-afc6-bbc6808d87ee", - "start": { - "$date": "2021-09-01T21:33:42.000Z" - }, - "end": { - "$date": "2021-09-01T21:56:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c888000d-8e66-4d69-b879-ca21a421ad59", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-01T23:29:35.000Z" - }, - "end": { - "$date": "2021-09-02T00:18:38.000Z" - }, - "events": [ - { - "uuid": "0a665d76-0390-41ee-8e06-96e435b35af6", - "start": { - "$date": "2021-09-01T23:29:35.000Z" - }, - "end": { - "$date": "2021-09-02T00:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f69ffbe2-5d5e-4e93-bcc4-97bc3b4f36c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T00:15:23.000Z" - }, - "end": { - "$date": "2021-09-02T00:23:58.000Z" - }, - "events": [ - { - "uuid": "661b9bba-f4c1-4e12-a8a7-29f34ada5b1f", - "start": { - "$date": "2021-09-02T00:15:23.000Z" - }, - "end": { - "$date": "2021-09-02T00:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b365cee4-081f-496a-8c58-755a25f28943", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-02T00:16:38.000Z" - }, - "end": { - "$date": "2021-09-02T00:42:44.000Z" - }, - "events": [ - { - "uuid": "f4524213-c844-42a4-baae-0d53f202169f", - "start": { - "$date": "2021-09-02T00:16:38.000Z" - }, - "end": { - "$date": "2021-09-02T00:42:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "160a4571-1202-487c-ac70-a685a3859429", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-02T00:24:29.000Z" - }, - "end": { - "$date": "2021-09-02T00:36:56.000Z" - }, - "events": [ - { - "uuid": "95b04d44-fc04-4073-aabb-ed473115ced6", - "start": { - "$date": "2021-09-02T00:24:29.000Z" - }, - "end": { - "$date": "2021-09-02T00:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e06dab73-0ab9-4128-8c22-e2e8d801c490", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T00:30:35.000Z" - }, - "end": { - "$date": "2021-09-02T01:05:58.000Z" - }, - "events": [ - { - "uuid": "abbbc1f0-5e2a-413c-8a06-46e92b91f5d4", - "start": { - "$date": "2021-09-02T00:30:35.000Z" - }, - "end": { - "$date": "2021-09-02T01:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5297c4d8-9ba2-4403-8d26-dccbc443aed0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-02T00:39:12.000Z" - }, - "end": { - "$date": "2021-09-02T00:43:21.000Z" - }, - "events": [ - { - "uuid": "adc76ccc-1c27-4edb-92d2-9f01128671f7", - "start": { - "$date": "2021-09-02T00:39:12.000Z" - }, - "end": { - "$date": "2021-09-02T00:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "84f50f21-a3e6-40de-b617-0fd226be78a6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-02T00:42:55.000Z" - }, - "end": { - "$date": "2021-09-02T04:56:39.000Z" - }, - "events": [ - { - "uuid": "e1c6f275-8d20-4826-93ed-5c8d99c00942", - "start": { - "$date": "2021-09-02T00:42:55.000Z" - }, - "end": { - "$date": "2021-09-02T04:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1ed8930e-7db8-43ba-9648-083ae3ad8f14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-02T00:45:31.000Z" - }, - "end": { - "$date": "2021-09-02T01:24:43.000Z" - }, - "events": [ - { - "uuid": "897f853c-e17e-4f22-b248-dec4da4ceb6f", - "start": { - "$date": "2021-09-02T00:45:31.000Z" - }, - "end": { - "$date": "2021-09-02T01:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6615c908-566b-4404-a1ac-b085d845a62a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-02T00:46:28.000Z" - }, - "end": { - "$date": "2021-09-02T02:17:29.000Z" - }, - "events": [ - { - "uuid": "3755472b-68c4-4a08-8a64-a6dbc6318583", - "start": { - "$date": "2021-09-02T00:46:28.000Z" - }, - "end": { - "$date": "2021-09-02T01:46:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26940c6a-7535-49b2-9920-2be2fa423d4c", - "start": { - "$date": "2021-09-02T01:46:28.000Z" - }, - "end": { - "$date": "2021-09-02T01:50:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e6d73d3-ea27-416f-b61c-b0218067904d", - "start": { - "$date": "2021-09-02T01:50:28.000Z" - }, - "end": { - "$date": "2021-09-02T02:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be8ba86f-b66f-4ff4-9faf-70776f9020ca", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-02T00:55:33.000Z" - }, - "end": { - "$date": "2021-09-02T01:24:23.000Z" - }, - "events": [ - { - "uuid": "13d8ea9b-2394-4a04-8bb8-4396ff10e1aa", - "start": { - "$date": "2021-09-02T00:55:33.000Z" - }, - "end": { - "$date": "2021-09-02T01:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "d9dc9646-d518-4d56-939c-13c54c6ec983", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-02T01:26:53.000Z" - }, - "end": { - "$date": "2021-09-02T04:30:51.000Z" - }, - "events": [ - { - "uuid": "21382465-066d-4a26-aa20-af6cd305eea6", - "start": { - "$date": "2021-09-02T01:26:53.000Z" - }, - "end": { - "$date": "2021-09-02T04:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9c4420e8-0cd9-4198-8582-7f87cd3e8bad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T02:01:43.000Z" - }, - "end": { - "$date": "2021-09-02T02:52:38.000Z" - }, - "events": [ - { - "uuid": "07a856c6-f5f6-4ef7-8db5-041881caf2f5", - "start": { - "$date": "2021-09-02T02:01:43.000Z" - }, - "end": { - "$date": "2021-09-02T02:52:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d9ad6690-5789-4b5c-a01c-22834b8eddbf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-02T02:16:56.000Z" - }, - "end": { - "$date": "2021-09-02T06:23:10.000Z" - }, - "events": [ - { - "uuid": "0531475a-9c59-4795-b71b-187e22e1c27d", - "start": { - "$date": "2021-09-02T02:16:56.000Z" - }, - "end": { - "$date": "2021-09-02T06:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "40eebacc-3076-4393-b715-ee8cc87b7cc8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T02:58:04.000Z" - }, - "end": { - "$date": "2021-09-02T04:49:15.000Z" - }, - "events": [ - { - "uuid": "2914835f-0ec9-4884-834a-03430c4bd1d0", - "start": { - "$date": "2021-09-02T02:58:04.000Z" - }, - "end": { - "$date": "2021-09-02T04:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "f9b67a88-0d62-4c82-be67-a4170ac92a17", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-02T04:06:01.000Z" - }, - "end": { - "$date": "2021-09-02T05:28:54.000Z" - }, - "events": [ - { - "uuid": "a519a0eb-54d9-442a-848d-a1631ec1a66e", - "start": { - "$date": "2021-09-02T04:06:01.000Z" - }, - "end": { - "$date": "2021-09-02T05:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "ee434de8-f0e3-4454-a93a-4c7b651c45fd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-02T04:54:03.000Z" - }, - "end": { - "$date": "2021-09-02T05:38:29.000Z" - }, - "events": [ - { - "uuid": "77222e6a-60bf-41bd-bee1-805776d451fe", - "start": { - "$date": "2021-09-02T04:54:03.000Z" - }, - "end": { - "$date": "2021-09-02T05:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1db6eca9-1186-42ce-92e6-ed366c680cc9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T04:59:22.000Z" - }, - "end": { - "$date": "2021-09-02T05:16:48.000Z" - }, - "events": [ - { - "uuid": "325a5c30-9279-4df6-9754-863630b3415e", - "start": { - "$date": "2021-09-02T04:59:22.000Z" - }, - "end": { - "$date": "2021-09-02T05:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "48b8e397-a28c-4a78-98f8-676165ebc95a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-02T05:55:15.000Z" - }, - "end": { - "$date": "2021-09-02T07:21:22.000Z" - }, - "events": [ - { - "uuid": "cf0bc1ae-8f5c-42eb-b5d4-dc354d8c2608", - "start": { - "$date": "2021-09-02T05:55:15.000Z" - }, - "end": { - "$date": "2021-09-02T07:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "db90728e-bbd2-4f5c-b525-9748fb596625", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T05:58:25.000Z" - }, - "end": { - "$date": "2021-09-02T06:10:56.000Z" - }, - "events": [ - { - "uuid": "6a33d30d-e61b-4fbf-bc4d-e8be982c26dc", - "start": { - "$date": "2021-09-02T05:58:25.000Z" - }, - "end": { - "$date": "2021-09-02T06:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7279122d-daa4-4d7d-8a6a-96a9ad9dc702", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-02T06:13:49.000Z" - }, - "end": { - "$date": "2021-09-02T06:43:45.000Z" - }, - "events": [ - { - "uuid": "1332eb12-969d-4d2b-933a-761952b966f3", - "start": { - "$date": "2021-09-02T06:13:49.000Z" - }, - "end": { - "$date": "2021-09-02T06:43:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "e4f64f3e-fd85-430e-a899-8526999be4c7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-02T06:20:46.000Z" - }, - "end": { - "$date": "2021-09-02T07:19:47.000Z" - }, - "events": [ - { - "uuid": "cc982739-e309-4dae-8171-90ed14b0386b", - "start": { - "$date": "2021-09-02T06:20:46.000Z" - }, - "end": { - "$date": "2021-09-02T07:19:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c1f4cb3-53ba-439b-952a-49093b8ed167", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-02T06:45:00.000Z" - }, - "end": { - "$date": "2021-09-02T06:50:31.000Z" - }, - "events": [ - { - "uuid": "272dcae2-4ff6-4706-9a1a-fe266d81da93", - "start": { - "$date": "2021-09-02T06:45:00.000Z" - }, - "end": { - "$date": "2021-09-02T06:50:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f81a680b-5edc-4d6d-b1e1-100246011ab3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-02T06:56:51.000Z" - }, - "end": { - "$date": "2021-09-02T07:23:25.000Z" - }, - "events": [ - { - "uuid": "e2a5d0ac-af34-4df8-a917-e596e9cdb146", - "start": { - "$date": "2021-09-02T06:56:51.000Z" - }, - "end": { - "$date": "2021-09-02T07:23:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "6410ae19-d576-41af-86ec-634f8dc4d186", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-02T08:41:14.000Z" - }, - "end": { - "$date": "2021-09-02T10:22:51.000Z" - }, - "events": [ - { - "uuid": "9409cb4c-4aa9-46a3-853c-3dc7ac4e08a3", - "start": { - "$date": "2021-09-02T08:41:14.000Z" - }, - "end": { - "$date": "2021-09-02T10:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1d46a2b9-1b6a-4297-a553-0eefc678a979", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-02T16:01:17.000Z" - }, - "end": { - "$date": "2021-09-02T17:08:16.000Z" - }, - "events": [ - { - "uuid": "5dbda88f-96c3-46f7-8026-00b361a275ae", - "start": { - "$date": "2021-09-02T16:01:17.000Z" - }, - "end": { - "$date": "2021-09-02T17:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0a8452fa-d071-4b11-a4a1-16357bf29201", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-02T16:02:34.000Z" - }, - "end": { - "$date": "2021-09-02T16:10:58.000Z" - }, - "events": [ - { - "uuid": "09d15d73-258b-4c8a-bfdb-0de2835b9b4d", - "start": { - "$date": "2021-09-02T16:02:34.000Z" - }, - "end": { - "$date": "2021-09-02T16:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d1e362c7-896e-4a83-b41c-f6c5917a5f47", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-02T17:52:50.000Z" - }, - "end": { - "$date": "2021-09-02T20:02:11.000Z" - }, - "events": [ - { - "uuid": "3e1bdc92-f772-42de-8579-b8c23df54457", - "start": { - "$date": "2021-09-02T17:52:50.000Z" - }, - "end": { - "$date": "2021-09-02T18:31:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d45866c9-188a-407d-be3f-00ca0f60b090", - "start": { - "$date": "2021-09-02T18:31:50.000Z" - }, - "end": { - "$date": "2021-09-02T18:44:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14da7472-ddcd-40f3-88ca-9ef65122b89d", - "start": { - "$date": "2021-09-02T18:44:50.000Z" - }, - "end": { - "$date": "2021-09-02T20:02:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e5caba2-26d2-41c8-a919-6d7091608d7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-02T18:55:43.000Z" - }, - "end": { - "$date": "2021-09-02T19:17:48.000Z" - }, - "events": [ - { - "uuid": "d63be13a-2638-4c4b-94ae-9b3212b5c4f8", - "start": { - "$date": "2021-09-02T18:55:43.000Z" - }, - "end": { - "$date": "2021-09-02T19:17:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f4d88a7-2c78-4782-bc54-57717c2b3d11", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-02T19:18:16.000Z" - }, - "end": { - "$date": "2021-09-02T19:38:59.000Z" - }, - "events": [ - { - "uuid": "662024f8-369b-4bcd-8efa-9c12fa70460e", - "start": { - "$date": "2021-09-02T19:18:16.000Z" - }, - "end": { - "$date": "2021-09-02T19:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "c80279b1-12fd-4fa1-a3c2-c398c89b03a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-02T19:39:26.000Z" - }, - "end": { - "$date": "2021-09-02T19:46:48.000Z" - }, - "events": [ - { - "uuid": "3152b0a4-6452-4f2e-a34f-f366c220bff7", - "start": { - "$date": "2021-09-02T19:39:26.000Z" - }, - "end": { - "$date": "2021-09-02T19:46:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "6b7f1535-098f-454b-9a29-9b656a2d5800", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-02T22:48:28.000Z" - }, - "end": { - "$date": "2021-09-02T23:41:27.000Z" - }, - "events": [ - { - "uuid": "6fecd688-0a3f-40a4-a60b-cb4cd5ef9811", - "start": { - "$date": "2021-09-02T22:48:28.000Z" - }, - "end": { - "$date": "2021-09-02T23:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "044dad25-68b3-47ce-921e-9f24436bd366", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-02T23:24:10.000Z" - }, - "end": { - "$date": "2021-09-03T01:53:18.000Z" - }, - "events": [ - { - "uuid": "d1fcd7df-2899-4a41-8964-201409df61a4", - "start": { - "$date": "2021-09-02T23:24:10.000Z" - }, - "end": { - "$date": "2021-09-03T01:53:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "53279849-3921-4149-80a1-62de9cfdabe6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T00:03:09.000Z" - }, - "end": { - "$date": "2021-09-03T00:08:49.000Z" - }, - "events": [ - { - "uuid": "28d5b12f-ed9f-4c7d-a8a2-b23bf433c02b", - "start": { - "$date": "2021-09-03T00:03:09.000Z" - }, - "end": { - "$date": "2021-09-03T00:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e91fbbd-8be4-42eb-85c4-c01fd4e811a4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-03T00:50:34.000Z" - }, - "end": { - "$date": "2021-09-03T01:19:30.000Z" - }, - "events": [ - { - "uuid": "cfaf70aa-87ce-4828-8613-74262ce2d4da", - "start": { - "$date": "2021-09-03T00:50:34.000Z" - }, - "end": { - "$date": "2021-09-03T01:19:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba237504-1472-41a3-8be5-7e52a93371eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T01:31:24.000Z" - }, - "end": { - "$date": "2021-09-03T01:52:18.000Z" - }, - "events": [ - { - "uuid": "ca3198e4-d58e-4088-922c-3a2a0513f5e5", - "start": { - "$date": "2021-09-03T01:31:24.000Z" - }, - "end": { - "$date": "2021-09-03T01:52:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55618c68-179d-4001-8cea-17007d848b87", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T01:54:29.000Z" - }, - "end": { - "$date": "2021-09-03T02:19:14.000Z" - }, - "events": [ - { - "uuid": "a4e940f2-3bf5-4d1c-aac9-2041b08e2ff1", - "start": { - "$date": "2021-09-03T01:54:29.000Z" - }, - "end": { - "$date": "2021-09-03T02:19:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "2b1ad269-1e88-4201-8efd-c5a69575ade4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-03T01:56:58.000Z" - }, - "end": { - "$date": "2021-09-03T03:11:54.000Z" - }, - "events": [ - { - "uuid": "8af834e8-a688-4294-b155-9a42b5b18e48", - "start": { - "$date": "2021-09-03T01:56:58.000Z" - }, - "end": { - "$date": "2021-09-03T03:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "da91984e-c556-4e67-aec0-b0a003549616", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-03T02:03:31.000Z" - }, - "end": { - "$date": "2021-09-03T04:04:34.000Z" - }, - "events": [ - { - "uuid": "b9b44999-c106-4ad0-9578-170617b906c8", - "start": { - "$date": "2021-09-03T02:03:31.000Z" - }, - "end": { - "$date": "2021-09-03T04:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dc9e7ba6-2c6b-4753-b989-2dbac82c1417", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-03T00:59:35.000Z" - }, - "end": { - "$date": "2021-09-03T07:00:34.000Z" - }, - "events": [ - { - "uuid": "696e451c-bc6f-4817-94f3-9941fe1a6e61", - "start": { - "$date": "2021-09-03T00:59:35.000Z" - }, - "end": { - "$date": "2021-09-03T07:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "292802c9-4b01-4bd8-9294-034d0d26fef7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-03T02:21:40.000Z" - }, - "end": { - "$date": "2021-09-03T04:03:32.000Z" - }, - "events": [ - { - "uuid": "0e298239-4349-4dce-8451-2ee7eeba08b8", - "start": { - "$date": "2021-09-03T02:21:40.000Z" - }, - "end": { - "$date": "2021-09-03T04:03:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "54fc073e-c2cc-4b02-bd0d-4acb46af9fe4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-03T03:11:58.000Z" - }, - "end": { - "$date": "2021-09-03T03:15:23.000Z" - }, - "events": [ - { - "uuid": "80b67257-a5d8-492f-98ff-ae3d0ac5c5f9", - "start": { - "$date": "2021-09-03T03:11:58.000Z" - }, - "end": { - "$date": "2021-09-03T03:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7f09a08f-1a7e-489f-8b98-9afb265e5bbb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-03T03:15:52.000Z" - }, - "end": { - "$date": "2021-09-03T04:22:08.000Z" - }, - "events": [ - { - "uuid": "1126b9d7-9ece-44e6-a145-6bf354e019f3", - "start": { - "$date": "2021-09-03T03:15:52.000Z" - }, - "end": { - "$date": "2021-09-03T04:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b48135f3-35e1-4827-8e3c-de9c9fdf11bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-03T04:06:19.000Z" - }, - "end": { - "$date": "2021-09-03T04:32:02.000Z" - }, - "events": [ - { - "uuid": "0140b350-d160-4677-81e8-5e8ab5e928c5", - "start": { - "$date": "2021-09-03T04:06:19.000Z" - }, - "end": { - "$date": "2021-09-03T04:32:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "6c4ab2f5-ccdd-4d5e-b1d9-a91aa43e5aa1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-03T04:07:02.000Z" - }, - "end": { - "$date": "2021-09-03T05:22:55.000Z" - }, - "events": [ - { - "uuid": "457f9421-165b-4d0f-a734-906bb0cc9490", - "start": { - "$date": "2021-09-03T04:07:02.000Z" - }, - "end": { - "$date": "2021-09-03T05:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "b94c4205-f0cb-4b64-9cda-bb0a4ef18cf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-03T04:22:43.000Z" - }, - "end": { - "$date": "2021-09-03T04:51:06.000Z" - }, - "events": [ - { - "uuid": "29a1f68b-2129-4080-ba05-bbfe63c18817", - "start": { - "$date": "2021-09-03T04:22:43.000Z" - }, - "end": { - "$date": "2021-09-03T04:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b90a3bb2-513e-489f-989b-4ac90998e0cc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-03T05:23:50.000Z" - }, - "end": { - "$date": "2021-09-03T07:06:53.000Z" - }, - "events": [ - { - "uuid": "9dc423f5-9750-4779-9543-ac7fcc0f8d04", - "start": { - "$date": "2021-09-03T05:23:50.000Z" - }, - "end": { - "$date": "2021-09-03T07:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "2269d80a-6871-4369-a25e-a8d1fb4d17ba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-03T06:05:56.000Z" - }, - "end": { - "$date": "2021-09-03T07:15:14.000Z" - }, - "events": [ - { - "uuid": "2b8a486b-3429-4c91-a49c-03941d185104", - "start": { - "$date": "2021-09-03T06:05:56.000Z" - }, - "end": { - "$date": "2021-09-03T07:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "b8bf0243-51f4-488c-9128-4a8cced284f2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-03T08:19:24.000Z" - }, - "end": { - "$date": "2021-09-03T09:30:50.000Z" - }, - "events": [ - { - "uuid": "350e592d-edd1-43af-a507-65af96741ef2", - "start": { - "$date": "2021-09-03T08:19:24.000Z" - }, - "end": { - "$date": "2021-09-03T09:30:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "343eaa8b-f1cb-4e4d-b609-ff289438f4b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-03T20:49:22.000Z" - }, - "end": { - "$date": "2021-09-03T21:11:11.000Z" - }, - "events": [ - { - "uuid": "dd816ac8-9939-4a80-bc49-d022a5c76add", - "start": { - "$date": "2021-09-03T20:49:22.000Z" - }, - "end": { - "$date": "2021-09-04T02:53:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73ce477d-aafe-46d5-8780-2765e7af531e", - "start": { - "$date": "2021-09-04T02:53:22.000Z" - }, - "end": { - "$date": "2021-09-04T02:58:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d3af45b-3a27-497c-b13c-7a7c929df901", - "start": { - "$date": "2021-09-04T02:58:22.000Z" - }, - "end": { - "$date": "2021-09-04T03:09:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a79e910b-0b12-4542-8924-7ae0ce6efa4d", - "start": { - "$date": "2021-09-04T03:09:22.000Z" - }, - "end": { - "$date": "2021-09-04T03:16:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0ff48c98-59f0-4979-bb7d-c0cc116032d4", - "start": { - "$date": "2021-09-04T03:16:22.000Z" - }, - "end": { - "$date": "2021-09-04T03:26:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3700dbfb-00db-438c-8d2c-839cabcb529d", - "start": { - "$date": "2021-09-04T03:26:22.000Z" - }, - "end": { - "$date": "2021-09-03T21:11:11.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "38722049-1d16-49d9-bc3e-b91515c35391", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-03T14:58:28.000Z" - }, - "end": { - "$date": "2021-09-03T16:38:03.000Z" - }, - "events": [ - { - "uuid": "5bf15b58-9be4-41ab-a70a-83c8eedde76f", - "start": { - "$date": "2021-09-03T14:58:28.000Z" - }, - "end": { - "$date": "2021-09-03T16:38:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3853bdb3-d4a4-4351-825f-fb0573711e6b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T15:09:00.000Z" - }, - "end": { - "$date": "2021-09-03T15:25:20.000Z" - }, - "events": [ - { - "uuid": "2faa7b51-64ae-4942-b226-939ad697e7e1", - "start": { - "$date": "2021-09-03T15:09:00.000Z" - }, - "end": { - "$date": "2021-09-03T15:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77ffa6f4-d096-4eaf-99e6-521958cc3a7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T15:28:16.000Z" - }, - "end": { - "$date": "2021-09-03T15:53:40.000Z" - }, - "events": [ - { - "uuid": "497460a8-901a-4160-9149-a30bf9cdfa0f", - "start": { - "$date": "2021-09-03T15:28:16.000Z" - }, - "end": { - "$date": "2021-09-03T15:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "35ba279e-be48-4e13-a2f1-224679a8e56f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T16:10:02.000Z" - }, - "end": { - "$date": "2021-09-03T17:00:24.000Z" - }, - "events": [ - { - "uuid": "c58e466e-06a3-4bc7-9b27-e4ed30b2e692", - "start": { - "$date": "2021-09-03T16:10:02.000Z" - }, - "end": { - "$date": "2021-09-03T17:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0d26429f-f718-4d88-9382-89cda622c8e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-03T18:06:30.000Z" - }, - "end": { - "$date": "2021-09-03T20:00:29.000Z" - }, - "events": [ - { - "uuid": "f6f22a42-c35c-46f8-a7c8-c9dade8f0e4d", - "start": { - "$date": "2021-09-03T18:06:30.000Z" - }, - "end": { - "$date": "2021-09-03T20:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f10cda1f-598a-4ad7-8406-da805d91dc94", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-03T18:14:38.000Z" - }, - "end": { - "$date": "2021-09-04T04:52:38.000Z" - }, - "events": [ - { - "uuid": "01a6f5b9-4f99-4a05-a00b-4acdb25901a8", - "start": { - "$date": "2021-09-03T18:14:38.000Z" - }, - "end": { - "$date": "2021-09-03T19:13:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d457133b-fa08-4d1e-afaf-8e2d33a92223", - "start": { - "$date": "2021-09-03T19:13:38.000Z" - }, - "end": { - "$date": "2021-09-03T19:18:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7772cf71-beb6-4619-b2bc-ea0f84f070db", - "start": { - "$date": "2021-09-03T19:18:38.000Z" - }, - "end": { - "$date": "2021-09-03T19:28:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31849c29-f254-4497-b05f-8f2d0fb9ab99", - "start": { - "$date": "2021-09-03T19:28:38.000Z" - }, - "end": { - "$date": "2021-09-03T19:31:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "658eaf03-fe06-4db9-9957-b72531b228e5", - "start": { - "$date": "2021-09-03T19:31:38.000Z" - }, - "end": { - "$date": "2021-09-04T02:28:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b0ae978a-ec84-4d95-8715-f174469780ce", - "start": { - "$date": "2021-09-04T02:28:38.000Z" - }, - "end": { - "$date": "2021-09-04T02:36:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fe0b1d8a-077a-4ca8-921c-a8ed9e2304b2", - "start": { - "$date": "2021-09-04T02:36:38.000Z" - }, - "end": { - "$date": "2021-09-04T04:52:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa758c80-2808-43b8-8a40-22a1d499f932", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T18:55:15.000Z" - }, - "end": { - "$date": "2021-09-03T19:12:35.000Z" - }, - "events": [ - { - "uuid": "76947677-56cb-48c9-9292-27153f03b32f", - "start": { - "$date": "2021-09-03T18:55:15.000Z" - }, - "end": { - "$date": "2021-09-03T19:12:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f497416d-43ce-4da4-be55-baf933ba210d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-03T19:07:43.000Z" - }, - "end": { - "$date": "2021-09-03T19:39:49.000Z" - }, - "events": [ - { - "uuid": "1f9a980d-923f-4801-b7d9-87ef330a2092", - "start": { - "$date": "2021-09-03T19:07:43.000Z" - }, - "end": { - "$date": "2021-09-03T19:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "281bfeef-18b5-4888-94cf-63efb4da702e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T20:07:06.000Z" - }, - "end": { - "$date": "2021-09-03T20:28:01.000Z" - }, - "events": [ - { - "uuid": "8ecbab2d-efae-43e1-9f08-76e258a952a4", - "start": { - "$date": "2021-09-03T20:07:06.000Z" - }, - "end": { - "$date": "2021-09-03T20:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "269c54c1-3140-4898-b9c4-2d44632e0872", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T20:35:27.000Z" - }, - "end": { - "$date": "2021-09-03T20:52:51.000Z" - }, - "events": [ - { - "uuid": "388a87e9-a417-4def-a4bd-0d9fcb95ac2f", - "start": { - "$date": "2021-09-03T20:35:27.000Z" - }, - "end": { - "$date": "2021-09-03T20:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5ca9fa33-102e-463f-aef8-171604ba7236", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-03T21:24:37.000Z" - }, - "end": { - "$date": "2021-09-04T00:54:58.000Z" - }, - "events": [ - { - "uuid": "19ad46ad-fe42-44ee-8fbe-a9117d1b1349", - "start": { - "$date": "2021-09-03T21:24:37.000Z" - }, - "end": { - "$date": "2021-09-04T00:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e67dd97-59e4-4df7-aa7e-ff8550e799f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-03T22:11:12.000Z" - }, - "end": { - "$date": "2021-09-03T22:37:52.000Z" - }, - "events": [ - { - "uuid": "a38af41f-fbea-4709-9cf4-c6b28771f22c", - "start": { - "$date": "2021-09-03T22:11:12.000Z" - }, - "end": { - "$date": "2021-09-03T22:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c24d75d-fa57-41a3-9f58-2f92617581a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T22:37:01.000Z" - }, - "end": { - "$date": "2021-09-03T22:52:36.000Z" - }, - "events": [ - { - "uuid": "3db24454-a7ae-470b-bc08-a88abaf1475d", - "start": { - "$date": "2021-09-03T22:37:01.000Z" - }, - "end": { - "$date": "2021-09-03T22:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b0b4ac1-93c3-46e4-b3ff-9238591828b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T23:11:18.000Z" - }, - "end": { - "$date": "2021-09-03T23:27:18.000Z" - }, - "events": [ - { - "uuid": "cec84fad-22b6-493d-99f9-200509d7f3ed", - "start": { - "$date": "2021-09-03T23:11:18.000Z" - }, - "end": { - "$date": "2021-09-03T23:27:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "423f5fd3-a37b-4f09-ac01-e481e8217353", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-03T23:31:34.000Z" - }, - "end": { - "$date": "2021-09-03T23:53:38.000Z" - }, - "events": [ - { - "uuid": "a8fbb638-bedb-488e-8e53-ea22bc5dcd54", - "start": { - "$date": "2021-09-03T23:31:34.000Z" - }, - "end": { - "$date": "2021-09-03T23:53:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7533069-a127-40a2-84d5-44171ac1d92d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T01:52:04.000Z" - }, - "end": { - "$date": "2021-09-04T02:10:45.000Z" - }, - "events": [ - { - "uuid": "8bcff689-43ca-4a41-82f5-a0d8a92b1b65", - "start": { - "$date": "2021-09-04T01:52:04.000Z" - }, - "end": { - "$date": "2021-09-04T02:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "835d675a-64b3-44e8-9280-b2815ff9cd95", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T02:12:50.000Z" - }, - "end": { - "$date": "2021-09-04T02:29:25.000Z" - }, - "events": [ - { - "uuid": "504a9406-8cd3-48ec-8b23-510186694c58", - "start": { - "$date": "2021-09-04T02:12:50.000Z" - }, - "end": { - "$date": "2021-09-04T02:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "36a8abc6-f5ff-4601-ba31-544384beae35", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T02:29:50.000Z" - }, - "end": { - "$date": "2021-09-04T03:22:38.000Z" - }, - "events": [ - { - "uuid": "f2b824b3-0788-48d0-81d1-650a8ff818ed", - "start": { - "$date": "2021-09-04T02:29:50.000Z" - }, - "end": { - "$date": "2021-09-04T03:22:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7ff1c803-6743-4ff3-bcc0-2ce45db52dd6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T02:42:13.000Z" - }, - "end": { - "$date": "2021-09-04T03:50:25.000Z" - }, - "events": [ - { - "uuid": "291742f7-b3ae-4765-9db4-c83840d45361", - "start": { - "$date": "2021-09-04T02:42:13.000Z" - }, - "end": { - "$date": "2021-09-04T03:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "bb7b8f77-79d7-4cf5-a9aa-4a40a56c1e80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T03:33:49.000Z" - }, - "end": { - "$date": "2021-09-04T04:03:36.000Z" - }, - "events": [ - { - "uuid": "6cf5019d-0d84-4452-a3d2-bcce5744905a", - "start": { - "$date": "2021-09-04T03:33:49.000Z" - }, - "end": { - "$date": "2021-09-04T04:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "8c78c149-9c7b-4805-8217-221403d4532d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T03:50:45.000Z" - }, - "end": { - "$date": "2021-09-04T05:41:55.000Z" - }, - "events": [ - { - "uuid": "7e0f4a8e-2d1e-4921-b9de-06d4048730f3", - "start": { - "$date": "2021-09-04T03:50:45.000Z" - }, - "end": { - "$date": "2021-09-04T05:41:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d038bd90-bb63-4d78-8dea-5c00d5409692", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-04T04:52:58.000Z" - }, - "end": { - "$date": "2021-09-04T07:53:39.000Z" - }, - "events": [ - { - "uuid": "5a7c72b7-e962-42ea-94ba-ad9bcd22f225", - "start": { - "$date": "2021-09-04T04:52:58.000Z" - }, - "end": { - "$date": "2021-09-04T07:43:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a3924e8-7d12-4637-9aef-1a2d257febd3", - "start": { - "$date": "2021-09-04T07:43:58.000Z" - }, - "end": { - "$date": "2021-09-04T07:47:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "89f5d638-9122-4cc2-9f61-1db471a8df0b", - "start": { - "$date": "2021-09-04T07:47:58.000Z" - }, - "end": { - "$date": "2021-09-04T07:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "755cd8b7-c461-4a19-89f0-ac8e78665205", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T04:59:43.000Z" - }, - "end": { - "$date": "2021-09-04T05:28:47.000Z" - }, - "events": [ - { - "uuid": "c2551141-f58b-4e15-9135-e934ffd5d204", - "start": { - "$date": "2021-09-04T04:59:43.000Z" - }, - "end": { - "$date": "2021-09-04T05:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "8296b28b-2881-4d07-8434-68bad922c1f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T05:26:53.000Z" - }, - "end": { - "$date": "2021-09-04T05:39:44.000Z" - }, - "events": [ - { - "uuid": "678b2c64-528f-437d-ab11-ff63430c95c2", - "start": { - "$date": "2021-09-04T05:26:53.000Z" - }, - "end": { - "$date": "2021-09-04T05:39:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bb5d1c7-ce9d-4c80-b350-bdad2b597106", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T06:03:01.000Z" - }, - "end": { - "$date": "2021-09-04T06:29:23.000Z" - }, - "events": [ - { - "uuid": "3142ff4c-4690-4c6f-a623-bfd8cff86d55", - "start": { - "$date": "2021-09-04T06:03:01.000Z" - }, - "end": { - "$date": "2021-09-04T06:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fd83d0d-a0db-42e9-81b7-9b2208f0f014", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T06:31:45.000Z" - }, - "end": { - "$date": "2021-09-04T06:58:17.000Z" - }, - "events": [ - { - "uuid": "77f0526f-72d0-4055-bf39-1761e7696850", - "start": { - "$date": "2021-09-04T06:31:45.000Z" - }, - "end": { - "$date": "2021-09-04T06:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04518d55-ca36-4720-9220-3a95a19165d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T07:01:00.000Z" - }, - "end": { - "$date": "2021-09-04T07:35:10.000Z" - }, - "events": [ - { - "uuid": "0efc0de1-a4a1-4721-b9ed-aad06e9ba038", - "start": { - "$date": "2021-09-04T07:01:00.000Z" - }, - "end": { - "$date": "2021-09-04T07:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "fdb22e4b-f1f5-4680-8816-e16fae0d9fcb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-04T07:00:53.000Z" - }, - "end": { - "$date": "2021-09-04T07:02:08.000Z" - }, - "events": [ - { - "uuid": "67fa71d3-2b6b-4454-ad0c-835826cc507e", - "start": { - "$date": "2021-09-04T07:00:53.000Z" - }, - "end": { - "$date": "2021-09-04T07:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "643d80b5-5158-43a9-abd8-9b235269ddcc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-04T07:02:13.000Z" - }, - "end": { - "$date": "2021-09-04T08:10:41.000Z" - }, - "events": [ - { - "uuid": "ae4d6851-0da3-4c2e-b6c7-bd2a6ff46a4c", - "start": { - "$date": "2021-09-04T07:02:13.000Z" - }, - "end": { - "$date": "2021-09-04T08:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "28006b7d-ffe4-4cd6-a4ac-02759edccf4c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-04T08:04:44.000Z" - }, - "end": { - "$date": "2021-09-04T08:54:14.000Z" - }, - "events": [ - { - "uuid": "6439a8ee-dcdd-42bb-a062-23a4492ea0a5", - "start": { - "$date": "2021-09-04T08:04:44.000Z" - }, - "end": { - "$date": "2021-09-04T08:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d82a080-0e4f-4e5e-91e3-743962e508a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T12:47:24.000Z" - }, - "end": { - "$date": "2021-09-04T13:38:49.000Z" - }, - "events": [ - { - "uuid": "083a975a-52e5-48a4-b3ae-f1bd3c2e76cf", - "start": { - "$date": "2021-09-04T12:47:24.000Z" - }, - "end": { - "$date": "2021-09-04T13:38:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "187f4bb1-c6e2-489e-a53e-d8b7fcee2ed1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T13:42:15.000Z" - }, - "end": { - "$date": "2021-09-04T13:51:46.000Z" - }, - "events": [ - { - "uuid": "556a4adf-5ce5-4c85-ad89-99f7aa12d53c", - "start": { - "$date": "2021-09-04T13:42:15.000Z" - }, - "end": { - "$date": "2021-09-04T13:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "325555b0-8618-4e37-ae18-e74012bdba42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T13:53:11.000Z" - }, - "end": { - "$date": "2021-09-04T15:39:10.000Z" - }, - "events": [ - { - "uuid": "8a2e36e5-b37f-4510-a76b-1e4ed74f73cd", - "start": { - "$date": "2021-09-04T13:53:11.000Z" - }, - "end": { - "$date": "2021-09-04T14:56:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1db9b2b2-5617-4d84-9022-a9d66eca9129", - "start": { - "$date": "2021-09-04T14:56:11.000Z" - }, - "end": { - "$date": "2021-09-04T14:57:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0cc24d5b-f24f-435b-b415-19118540717f", - "start": { - "$date": "2021-09-04T14:57:11.000Z" - }, - "end": { - "$date": "2021-09-04T15:30:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37875b78-ca9b-4a83-863c-f831155f9191", - "start": { - "$date": "2021-09-04T15:30:11.000Z" - }, - "end": { - "$date": "2021-09-04T15:39:10.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "94e42521-f11d-4971-a189-ebf04124fd6a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T15:06:47.000Z" - }, - "end": { - "$date": "2021-09-04T18:09:42.000Z" - }, - "events": [ - { - "uuid": "e8603898-f73f-425f-893c-0845342d39ec", - "start": { - "$date": "2021-09-04T15:06:47.000Z" - }, - "end": { - "$date": "2021-09-04T18:09:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bd7ad626-840f-452e-a0cd-e4a866c5641e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T15:39:26.000Z" - }, - "end": { - "$date": "2021-09-04T16:36:18.000Z" - }, - "events": [ - { - "uuid": "785f35df-49b7-472b-9c3e-d2babfe504df", - "start": { - "$date": "2021-09-04T15:39:26.000Z" - }, - "end": { - "$date": "2021-09-04T16:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd0aa7e5-d5fe-4254-873c-958ef3e28ecd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T17:36:46.000Z" - }, - "end": { - "$date": "2021-09-04T18:10:23.000Z" - }, - "events": [ - { - "uuid": "daf4f03c-b722-4fa3-a344-fd177344e52f", - "start": { - "$date": "2021-09-04T17:36:46.000Z" - }, - "end": { - "$date": "2021-09-04T18:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "7fe0e1c1-ac4a-49c7-a62c-26970f18ac5b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T18:09:52.000Z" - }, - "end": { - "$date": "2021-09-04T18:14:58.000Z" - }, - "events": [ - { - "uuid": "e696f717-7ea1-48ad-a08e-ff6f3a30c682", - "start": { - "$date": "2021-09-04T18:09:52.000Z" - }, - "end": { - "$date": "2021-09-04T18:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb1cc9fc-9b61-4e13-a824-0a547aefabf3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T18:16:26.000Z" - }, - "end": { - "$date": "2021-09-04T18:42:07.000Z" - }, - "events": [ - { - "uuid": "0e5c101b-0107-4c15-9fef-40097a0adffd", - "start": { - "$date": "2021-09-04T18:16:26.000Z" - }, - "end": { - "$date": "2021-09-04T18:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "dac5d3cf-e0ad-4b55-a448-81923562eabe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T18:28:45.000Z" - }, - "end": { - "$date": "2021-09-04T19:38:09.000Z" - }, - "events": [ - { - "uuid": "dd0e0414-4ba9-456e-b47c-69ac576778f4", - "start": { - "$date": "2021-09-04T18:28:45.000Z" - }, - "end": { - "$date": "2021-09-04T19:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1210f6c9-7ae2-4b46-aa94-f425ca54ee3c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-04T18:36:17.000Z" - }, - "end": { - "$date": "2021-09-04T19:11:29.000Z" - }, - "events": [ - { - "uuid": "ced07447-7504-4a81-b10a-a278906eebd4", - "start": { - "$date": "2021-09-04T18:36:17.000Z" - }, - "end": { - "$date": "2021-09-04T19:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2f126928-c076-4eaf-bd83-d25042ec7b44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T19:38:59.000Z" - }, - "end": { - "$date": "2021-09-04T20:10:36.000Z" - }, - "events": [ - { - "uuid": "16d4d505-4904-4870-a669-66fc9b71c04c", - "start": { - "$date": "2021-09-04T19:38:59.000Z" - }, - "end": { - "$date": "2021-09-04T20:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40d242a5-c928-4715-aac1-e9825772ccd1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T20:34:28.000Z" - }, - "end": { - "$date": "2021-09-04T20:53:13.000Z" - }, - "events": [ - { - "uuid": "7c12afa5-10af-4fec-bab5-b2e926ae83b9", - "start": { - "$date": "2021-09-04T20:34:28.000Z" - }, - "end": { - "$date": "2021-09-04T20:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8c2da681-7e2a-44f2-bf1e-6af18de55d3b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-04T20:47:20.000Z" - }, - "end": { - "$date": "2021-09-05T02:57:19.000Z" - }, - "events": [ - { - "uuid": "e2c045ca-3d7a-43af-8993-98afb62b1b99", - "start": { - "$date": "2021-09-04T20:47:20.000Z" - }, - "end": { - "$date": "2021-09-05T02:57:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cd69f86-48b2-4efc-a3fc-8a12d9d88488", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-04T20:55:49.000Z" - }, - "end": { - "$date": "2021-09-04T21:11:14.000Z" - }, - "events": [ - { - "uuid": "363591fc-9645-4a89-b5f6-0e6d13aed70e", - "start": { - "$date": "2021-09-04T20:55:49.000Z" - }, - "end": { - "$date": "2021-09-04T21:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4776561-f991-456f-9766-c97b0f8a4390", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-04T21:43:22.000Z" - }, - "end": { - "$date": "2021-09-04T22:20:21.000Z" - }, - "events": [ - { - "uuid": "e83fb014-6c63-46f2-b7fb-06f779ef0f86", - "start": { - "$date": "2021-09-04T21:43:22.000Z" - }, - "end": { - "$date": "2021-09-04T22:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1a4f6c1c-b127-4640-ae7f-c77ab1bf06ed", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-04T21:43:15.000Z" - }, - "end": { - "$date": "2021-09-04T21:55:06.000Z" - }, - "events": [ - { - "uuid": "bdb86f02-451a-4949-a5b0-3e7abb5b10f6", - "start": { - "$date": "2021-09-04T21:43:15.000Z" - }, - "end": { - "$date": "2021-09-04T21:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "02d0a4fc-0508-457b-a64f-be5e5f4eecd9", - "uuid": "ae213f84-243b-410a-bba6-7cfcecf5eb8c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-04T21:43:57.000Z" - }, - "end": { - "$date": "2021-09-05T02:16:45.000Z" - }, - "events": [ - { - "uuid": "eb003797-815e-4b6d-9518-ef3e01aba7e7", - "start": { - "$date": "2021-09-04T21:43:57.000Z" - }, - "end": { - "$date": "2021-09-05T02:16:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "b8b53a18-7367-472e-8ce4-248ef209ae5a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-04T22:55:45.000Z" - }, - "end": { - "$date": "2021-09-05T00:37:10.000Z" - }, - "events": [ - { - "uuid": "7e1623e9-5734-426f-9f28-62e46c4ac71a", - "start": { - "$date": "2021-09-04T22:55:45.000Z" - }, - "end": { - "$date": "2021-09-05T00:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2ee4241-052c-4b28-aa10-54e71a11dd5d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-05T00:07:29.000Z" - }, - "end": { - "$date": "2021-09-05T00:33:37.000Z" - }, - "events": [ - { - "uuid": "a2219867-eac0-40d6-8dbf-bef8859269a7", - "start": { - "$date": "2021-09-05T00:07:29.000Z" - }, - "end": { - "$date": "2021-09-05T00:33:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "836f9389-b12f-4282-9298-1c3358b1a662", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T03:22:24.000Z" - }, - "end": { - "$date": "2021-09-05T03:42:39.000Z" - }, - "events": [ - { - "uuid": "309e664d-13ee-41a9-937d-8d7f5264ec79", - "start": { - "$date": "2021-09-05T03:22:24.000Z" - }, - "end": { - "$date": "2021-09-05T05:19:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2b5b7b8b-7156-454e-86d8-1428ebffc5fb", - "start": { - "$date": "2021-09-05T05:19:24.000Z" - }, - "end": { - "$date": "2021-09-05T05:25:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ec1b6b0b-d922-45fc-b088-1e35e8842a15", - "start": { - "$date": "2021-09-05T05:25:24.000Z" - }, - "end": { - "$date": "2021-09-05T03:42:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86e36f44-8c62-4c26-b3f9-2fde07d29837", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-05T01:20:50.000Z" - }, - "end": { - "$date": "2021-09-05T03:28:48.000Z" - }, - "events": [ - { - "uuid": "45236d8d-fef5-4d29-95ec-d800be42973a", - "start": { - "$date": "2021-09-05T01:20:50.000Z" - }, - "end": { - "$date": "2021-09-05T03:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "bcb986df-8479-44ba-ba8c-c07cc78c905d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-05T01:24:41.000Z" - }, - "end": { - "$date": "2021-09-05T02:02:42.000Z" - }, - "events": [ - { - "uuid": "9c2cec2f-1194-4041-9115-07704e7abb7a", - "start": { - "$date": "2021-09-05T01:24:41.000Z" - }, - "end": { - "$date": "2021-09-05T02:02:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fdebb9f0-14df-4d7c-b4cc-d0105ee2d44c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-05T02:32:17.000Z" - }, - "end": { - "$date": "2021-09-05T04:07:04.000Z" - }, - "events": [ - { - "uuid": "14c363c7-103a-4411-b577-1f38f02752f7", - "start": { - "$date": "2021-09-05T02:32:17.000Z" - }, - "end": { - "$date": "2021-09-05T04:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "71709df7-114f-4a55-bff3-f8bdf73db422", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-05T02:57:30.000Z" - }, - "end": { - "$date": "2021-09-05T05:10:27.000Z" - }, - "events": [ - { - "uuid": "00725f20-1b3c-4821-b146-1801511b4cfb", - "start": { - "$date": "2021-09-05T02:57:30.000Z" - }, - "end": { - "$date": "2021-09-05T05:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ba63061-729d-4105-8c8b-a6b7fb0539b5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-05T04:18:24.000Z" - }, - "end": { - "$date": "2021-09-05T04:59:23.000Z" - }, - "events": [ - { - "uuid": "823a9fbe-d14a-4204-aac7-76639ded2109", - "start": { - "$date": "2021-09-05T04:18:24.000Z" - }, - "end": { - "$date": "2021-09-05T04:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cfa4db70-7bff-4073-931c-6d016c692c6a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-05T04:59:31.000Z" - }, - "end": { - "$date": "2021-09-05T05:11:38.000Z" - }, - "events": [ - { - "uuid": "ee81d7be-ae60-4bed-842c-67fdcb1a356b", - "start": { - "$date": "2021-09-05T04:59:31.000Z" - }, - "end": { - "$date": "2021-09-05T05:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a83e0058-4ab3-4799-8efb-3716af441513", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-05T05:20:49.000Z" - }, - "end": { - "$date": "2021-09-05T06:34:56.000Z" - }, - "events": [ - { - "uuid": "97ce472b-c8cc-46fa-a852-71cd44356ef9", - "start": { - "$date": "2021-09-05T05:20:49.000Z" - }, - "end": { - "$date": "2021-09-05T06:34:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d443390-249f-4a1b-9444-b9941aa66b91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T15:49:24.000Z" - }, - "end": { - "$date": "2021-09-05T16:16:48.000Z" - }, - "events": [ - { - "uuid": "0466e781-3681-466e-bce3-bfee5aeaf3b9", - "start": { - "$date": "2021-09-05T15:49:24.000Z" - }, - "end": { - "$date": "2021-09-05T16:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc4f65c5-2fee-48e2-a783-75e0341ca62b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T16:20:59.000Z" - }, - "end": { - "$date": "2021-09-05T16:45:19.000Z" - }, - "events": [ - { - "uuid": "7425b27e-70af-4cf8-aeed-2f135cbab66d", - "start": { - "$date": "2021-09-05T16:20:59.000Z" - }, - "end": { - "$date": "2021-09-05T16:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "b5883f41-3e22-41aa-85c0-d2c4fd795642", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T18:39:54.000Z" - }, - "end": { - "$date": "2021-09-05T20:13:25.000Z" - }, - "events": [ - { - "uuid": "45a766d5-4cdc-4a1a-b5e2-871e8d7924fc", - "start": { - "$date": "2021-09-05T18:39:54.000Z" - }, - "end": { - "$date": "2021-09-05T19:45:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9e2bcc46-20a5-49d3-a603-feab22f679aa", - "start": { - "$date": "2021-09-05T19:45:54.000Z" - }, - "end": { - "$date": "2021-09-05T20:07:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0a7f1648-9113-4111-9be2-b84f69336683", - "start": { - "$date": "2021-09-05T20:07:54.000Z" - }, - "end": { - "$date": "2021-09-05T20:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dfaf2f0e-552e-4f7a-bc1f-bc6300f19f51", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-05T19:04:44.000Z" - }, - "end": { - "$date": "2021-09-05T19:06:24.000Z" - }, - "events": [ - { - "uuid": "87bac8a1-4c23-4a22-93cc-928eadf18262", - "start": { - "$date": "2021-09-05T19:04:44.000Z" - }, - "end": { - "$date": "2021-09-05T19:06:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c95decb1-1216-4dce-87bc-d740c01e1e56", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-05T19:06:49.000Z" - }, - "end": { - "$date": "2021-09-05T19:26:52.000Z" - }, - "events": [ - { - "uuid": "878343c6-44fd-469a-9c1e-267cfb5dfb2e", - "start": { - "$date": "2021-09-05T19:06:49.000Z" - }, - "end": { - "$date": "2021-09-05T19:26:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "af6138c3-09da-4fa6-a799-199b7a95bc65", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-05T19:06:49.000Z" - }, - "end": { - "$date": "2021-09-05T19:44:50.000Z" - }, - "events": [ - { - "uuid": "19dd384a-1e3e-4da0-b03c-f5d3a813f57c", - "start": { - "$date": "2021-09-05T19:06:49.000Z" - }, - "end": { - "$date": "2021-09-05T19:09:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f373170-3c11-40fb-8c81-6264a8aa5a23", - "start": { - "$date": "2021-09-05T19:09:49.000Z" - }, - "end": { - "$date": "2021-09-05T19:10:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "63619cf3-779a-438e-945d-e32b5f08ae01", - "start": { - "$date": "2021-09-05T19:10:49.000Z" - }, - "end": { - "$date": "2021-09-05T19:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c89faa33-22c7-43c2-b6d8-012237933fb5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-05T19:55:51.000Z" - }, - "end": { - "$date": "2021-09-05T19:56:57.000Z" - }, - "events": [ - { - "uuid": "4ca44335-552b-409d-80d1-0f6e9faaaefd", - "start": { - "$date": "2021-09-05T19:55:51.000Z" - }, - "end": { - "$date": "2021-09-05T19:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "8ab5a3f0-b94e-4ae1-b46b-bd59134f2580", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T20:14:01.000Z" - }, - "end": { - "$date": "2021-09-05T20:52:46.000Z" - }, - "events": [ - { - "uuid": "1124f6eb-76f6-436c-b211-f31fa401148e", - "start": { - "$date": "2021-09-05T20:14:01.000Z" - }, - "end": { - "$date": "2021-09-05T20:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4b20f07-c3eb-4b01-8e80-f49d5f82c999", - "uuid": "d9828195-288d-4af7-95d4-c92f3a9059b4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-05T20:18:17.000Z" - }, - "end": { - "$date": "2021-09-05T23:53:03.000Z" - }, - "events": [ - { - "uuid": "d84bfecf-768a-4b1e-93f0-e5de6bce35ed", - "start": { - "$date": "2021-09-05T20:18:17.000Z" - }, - "end": { - "$date": "2021-09-05T23:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "032c58e3-2069-431d-aca1-1765b96662e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T21:00:37.000Z" - }, - "end": { - "$date": "2021-09-05T21:21:51.000Z" - }, - "events": [ - { - "uuid": "e8d578ac-4fcb-48e9-bb4b-826e156dd035", - "start": { - "$date": "2021-09-05T21:00:37.000Z" - }, - "end": { - "$date": "2021-09-05T21:21:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3be85cf-d7be-41d4-a64e-60ea2c58d7a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-05T21:24:42.000Z" - }, - "end": { - "$date": "2021-09-05T21:39:12.000Z" - }, - "events": [ - { - "uuid": "2e6c34f5-84cf-4c7d-bdfc-29d13d64d6c5", - "start": { - "$date": "2021-09-05T21:24:42.000Z" - }, - "end": { - "$date": "2021-09-05T21:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fdbb667-1549-4e49-a2f3-8ad2ffde51d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T02:28:01.000Z" - }, - "end": { - "$date": "2021-09-06T02:46:21.000Z" - }, - "events": [ - { - "uuid": "04031b41-8956-486f-97ed-b1a8a5942fa3", - "start": { - "$date": "2021-09-06T02:28:01.000Z" - }, - "end": { - "$date": "2021-09-06T02:46:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "778ee1d2-089b-4354-ae52-526050f1046b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-06T02:28:28.000Z" - }, - "end": { - "$date": "2021-09-06T02:30:43.000Z" - }, - "events": [ - { - "uuid": "d99372ee-9547-4653-8a05-b2b4690bec2d", - "start": { - "$date": "2021-09-06T02:28:28.000Z" - }, - "end": { - "$date": "2021-09-06T02:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "254dacb7-4c2b-4a33-afea-677592279e22", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-06T02:32:28.000Z" - }, - "end": { - "$date": "2021-09-06T02:33:28.000Z" - }, - "events": [ - { - "uuid": "b32b32e8-1497-453e-b058-2e537acf8089", - "start": { - "$date": "2021-09-06T02:32:28.000Z" - }, - "end": { - "$date": "2021-09-06T02:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "3907205e-d204-4c02-be8e-78c7c323e19b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-06T02:33:33.000Z" - }, - "end": { - "$date": "2021-09-06T08:36:41.000Z" - }, - "events": [ - { - "uuid": "235a99dd-8376-4100-9557-bb475f8a643f", - "start": { - "$date": "2021-09-06T02:33:33.000Z" - }, - "end": { - "$date": "2021-09-06T08:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e05445c6-d8f8-4bd0-bff5-394380ce2e1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T02:48:17.000Z" - }, - "end": { - "$date": "2021-09-06T03:08:05.000Z" - }, - "events": [ - { - "uuid": "f621e310-8cc7-4302-a2c0-14015c89a44a", - "start": { - "$date": "2021-09-06T02:48:17.000Z" - }, - "end": { - "$date": "2021-09-06T03:08:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02e1d250-d126-4036-adb3-3683b14fda27", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-06T02:58:05.000Z" - }, - "end": { - "$date": "2021-09-06T02:59:11.000Z" - }, - "events": [ - { - "uuid": "1f01b31d-b1ff-4bfc-bbc1-048094551dfb", - "start": { - "$date": "2021-09-06T02:58:05.000Z" - }, - "end": { - "$date": "2021-09-06T02:59:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "157c04ae-e220-4d37-bb2a-d5b35997695b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-06T02:59:20.000Z" - }, - "end": { - "$date": "2021-09-06T04:21:45.000Z" - }, - "events": [ - { - "uuid": "d2d30788-47a6-4803-9d87-4040b5ea5ad2", - "start": { - "$date": "2021-09-06T02:59:20.000Z" - }, - "end": { - "$date": "2021-09-06T04:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee3f375a-a85f-43ac-a5d5-3bd886ad1e0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T03:09:47.000Z" - }, - "end": { - "$date": "2021-09-06T03:31:42.000Z" - }, - "events": [ - { - "uuid": "919ab18c-c306-4b2e-b9ea-4b4c4d7cf478", - "start": { - "$date": "2021-09-06T03:09:47.000Z" - }, - "end": { - "$date": "2021-09-06T03:31:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c24ed7b2-9516-4a28-baac-e0ee61bbef93", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T03:33:08.000Z" - }, - "end": { - "$date": "2021-09-06T03:54:17.000Z" - }, - "events": [ - { - "uuid": "7bb5d030-caa0-4bab-a3f7-5818111ba799", - "start": { - "$date": "2021-09-06T03:33:08.000Z" - }, - "end": { - "$date": "2021-09-06T03:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "de8f9ea3-376d-4587-953f-eb4df2d22394", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-06T03:50:44.000Z" - }, - "end": { - "$date": "2021-09-06T05:06:39.000Z" - }, - "events": [ - { - "uuid": "140f460a-ae0a-4009-9960-62f75e7247c3", - "start": { - "$date": "2021-09-06T03:50:44.000Z" - }, - "end": { - "$date": "2021-09-06T05:06:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "0b54cc97-56d4-4e5f-8833-9561d1e7fb32", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-06T05:22:22.000Z" - }, - "end": { - "$date": "2021-09-06T05:31:17.000Z" - }, - "events": [ - { - "uuid": "eea1376e-948b-4bab-b6af-a1ac76ef760c", - "start": { - "$date": "2021-09-06T05:22:22.000Z" - }, - "end": { - "$date": "2021-09-06T05:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24c21c03-d986-4687-99d1-c2b107c20560", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-06T05:48:48.000Z" - }, - "end": { - "$date": "2021-09-06T06:28:17.000Z" - }, - "events": [ - { - "uuid": "18f1f819-7652-4774-8034-fdbf72dc0485", - "start": { - "$date": "2021-09-06T05:48:48.000Z" - }, - "end": { - "$date": "2021-09-06T06:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6476b959-2acd-4088-85d8-56efad6af7d6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-06T06:18:33.000Z" - }, - "end": { - "$date": "2021-09-06T07:26:16.000Z" - }, - "events": [ - { - "uuid": "bc5e6c0a-654e-4c53-8376-8572afec1af3", - "start": { - "$date": "2021-09-06T06:18:33.000Z" - }, - "end": { - "$date": "2021-09-06T07:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce71c65c-d500-4a7c-ac8d-75821a1581e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T16:20:20.000Z" - }, - "end": { - "$date": "2021-09-06T16:37:49.000Z" - }, - "events": [ - { - "uuid": "722685d6-1e98-4676-b533-558318cb2fd7", - "start": { - "$date": "2021-09-06T16:20:20.000Z" - }, - "end": { - "$date": "2021-09-06T16:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0203374-4322-418c-881b-6238309a8c30", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T16:52:50.000Z" - }, - "end": { - "$date": "2021-09-06T16:58:04.000Z" - }, - "events": [ - { - "uuid": "a274b886-7513-49b2-9f01-0703ad68acaa", - "start": { - "$date": "2021-09-06T16:52:50.000Z" - }, - "end": { - "$date": "2021-09-06T16:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d46fd88-7cad-4799-9371-de5414b02f0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T17:08:56.000Z" - }, - "end": { - "$date": "2021-09-06T17:35:00.000Z" - }, - "events": [ - { - "uuid": "96007e4d-1478-43e5-ae8e-0c5a933634af", - "start": { - "$date": "2021-09-06T17:08:56.000Z" - }, - "end": { - "$date": "2021-09-06T17:35:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3106a99e-ac56-47a1-aec3-a79a4bbc3dbe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T17:35:30.000Z" - }, - "end": { - "$date": "2021-09-06T17:44:20.000Z" - }, - "events": [ - { - "uuid": "e0807b79-0e39-4f02-987b-8512baf7947e", - "start": { - "$date": "2021-09-06T17:35:30.000Z" - }, - "end": { - "$date": "2021-09-06T17:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "00f0d13b-607f-4c4c-b51a-46ca7c63def6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T17:45:12.000Z" - }, - "end": { - "$date": "2021-09-06T17:52:22.000Z" - }, - "events": [ - { - "uuid": "bab0c6ef-db02-4428-b835-f48a45f67cd0", - "start": { - "$date": "2021-09-06T17:45:12.000Z" - }, - "end": { - "$date": "2021-09-06T17:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "44d95098-4499-493c-86d5-5bca5457691f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T17:52:53.000Z" - }, - "end": { - "$date": "2021-09-06T17:54:52.000Z" - }, - "events": [ - { - "uuid": "a0e694c9-0513-44c1-9a28-1965abe126b6", - "start": { - "$date": "2021-09-06T17:52:53.000Z" - }, - "end": { - "$date": "2021-09-06T17:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "c7f67916-1360-4e18-b16b-3b90906f5d66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T17:55:18.000Z" - }, - "end": { - "$date": "2021-09-06T21:12:24.000Z" - }, - "events": [ - { - "uuid": "92324696-4d80-44bb-9a70-db1053586f6d", - "start": { - "$date": "2021-09-06T17:55:18.000Z" - }, - "end": { - "$date": "2021-09-06T19:49:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b68038f-d53b-4f84-adfc-e063a25385fb", - "start": { - "$date": "2021-09-06T19:49:18.000Z" - }, - "end": { - "$date": "2021-09-06T20:03:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7c67b8aa-4d41-446d-ab3f-0bc2cb24c0eb", - "start": { - "$date": "2021-09-06T20:03:18.000Z" - }, - "end": { - "$date": "2021-09-06T21:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1af28f01-ca5f-4f76-825b-3bff2f282866", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-06T21:08:02.000Z" - }, - "end": { - "$date": "2021-09-06T21:55:01.000Z" - }, - "events": [ - { - "uuid": "bb425b79-48b9-4b13-b2b1-2e137481390f", - "start": { - "$date": "2021-09-06T21:08:02.000Z" - }, - "end": { - "$date": "2021-09-06T21:55:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "2b36a0e5-04a6-4a3a-81dc-43b492daaf94", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-06T21:25:28.000Z" - }, - "end": { - "$date": "2021-09-07T00:31:39.000Z" - }, - "events": [ - { - "uuid": "dbed8698-6d05-4da7-9542-3a5808efdd9f", - "start": { - "$date": "2021-09-06T21:25:28.000Z" - }, - "end": { - "$date": "2021-09-07T00:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b603f1a5-ec12-4d17-b05e-6fe0028dc252", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-06T21:56:36.000Z" - }, - "end": { - "$date": "2021-09-06T22:43:40.000Z" - }, - "events": [ - { - "uuid": "6985e53c-fafa-46ed-8188-2a97abc8b4e1", - "start": { - "$date": "2021-09-06T21:56:36.000Z" - }, - "end": { - "$date": "2021-09-06T22:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "86cdb970-78b7-49b3-864a-d7fc7f44c3e9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-06T22:07:09.000Z" - }, - "end": { - "$date": "2021-09-07T06:45:09.000Z" - }, - "events": [ - { - "uuid": "edbfcaa6-435c-404c-a23c-88eb157d96c5", - "start": { - "$date": "2021-09-06T22:07:09.000Z" - }, - "end": { - "$date": "2021-09-06T23:42:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c3230e9d-811b-493a-a7f9-a4888c87ac2a", - "start": { - "$date": "2021-09-06T23:42:09.000Z" - }, - "end": { - "$date": "2021-09-06T23:49:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "67a8bd49-1031-4ca2-83bf-76af85790724", - "start": { - "$date": "2021-09-06T23:49:09.000Z" - }, - "end": { - "$date": "2021-09-06T23:51:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5ca5960-1d92-408a-abad-dc993cca3422", - "start": { - "$date": "2021-09-06T23:51:09.000Z" - }, - "end": { - "$date": "2021-09-07T00:19:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "75c7f96a-335c-4285-ab96-ca398f9f7b1c", - "start": { - "$date": "2021-09-07T00:19:09.000Z" - }, - "end": { - "$date": "2021-09-07T06:45:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d2b219eb-110e-476e-a780-462231dcdd0b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-06T22:46:43.000Z" - }, - "end": { - "$date": "2021-09-06T23:18:14.000Z" - }, - "events": [ - { - "uuid": "6533d160-1465-4ac0-b266-08513bb51b0e", - "start": { - "$date": "2021-09-06T22:46:43.000Z" - }, - "end": { - "$date": "2021-09-06T23:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68e22ebf-6276-47f5-91dd-d6f134c253de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T00:33:33.000Z" - }, - "end": { - "$date": "2021-09-07T00:51:14.000Z" - }, - "events": [ - { - "uuid": "8d2c2396-e603-4ae7-98eb-aa70aa0717f3", - "start": { - "$date": "2021-09-07T00:33:33.000Z" - }, - "end": { - "$date": "2021-09-07T00:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5a58a35e-e30c-4e61-a752-28cc6bd06f5f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-06T22:57:31.000Z" - }, - "end": { - "$date": "2021-09-07T01:43:58.000Z" - }, - "events": [ - { - "uuid": "389a94e1-241e-4ba8-9c66-5e931b6a88b4", - "start": { - "$date": "2021-09-06T22:57:31.000Z" - }, - "end": { - "$date": "2021-09-06T23:09:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b40b96cc-75b6-4df8-9aa7-0e211383b8c2", - "start": { - "$date": "2021-09-06T23:09:31.000Z" - }, - "end": { - "$date": "2021-09-06T23:14:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e15024c-1383-465b-8934-1106526ca810", - "start": { - "$date": "2021-09-06T23:14:31.000Z" - }, - "end": { - "$date": "2021-09-07T01:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69288fb4-8b23-4368-a15a-0c9b0c2333ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T00:42:00.000Z" - }, - "end": { - "$date": "2021-09-07T01:14:01.000Z" - }, - "events": [ - { - "uuid": "7cd15903-f956-4075-bd20-8afcb8ea54d9", - "start": { - "$date": "2021-09-07T00:42:00.000Z" - }, - "end": { - "$date": "2021-09-07T01:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0f87abc-92f5-4959-bfa3-adfb9fca859e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T01:17:26.000Z" - }, - "end": { - "$date": "2021-09-07T01:31:52.000Z" - }, - "events": [ - { - "uuid": "33253425-dfc6-49c9-bdd9-0067f5a63b96", - "start": { - "$date": "2021-09-07T01:17:26.000Z" - }, - "end": { - "$date": "2021-09-07T01:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb596fca-08e7-4f42-8a22-33bdc8113eef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T01:16:32.000Z" - }, - "end": { - "$date": "2021-09-07T01:32:00.000Z" - }, - "events": [ - { - "uuid": "123ca786-30be-4240-9ab7-e175132080b7", - "start": { - "$date": "2021-09-07T01:16:32.000Z" - }, - "end": { - "$date": "2021-09-07T01:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7b77759-4d3d-4416-bcad-b8cf0994d3aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T01:35:47.000Z" - }, - "end": { - "$date": "2021-09-07T01:48:52.000Z" - }, - "events": [ - { - "uuid": "4f1870c6-381a-4c7a-bf38-8e0bddc0a59a", - "start": { - "$date": "2021-09-07T01:35:47.000Z" - }, - "end": { - "$date": "2021-09-07T01:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af1778fd-406e-459e-b3ec-9985fc06b2d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T01:35:18.000Z" - }, - "end": { - "$date": "2021-09-07T01:49:03.000Z" - }, - "events": [ - { - "uuid": "dce539e4-457c-4223-a3b7-5e2257f5ebaf", - "start": { - "$date": "2021-09-07T01:35:18.000Z" - }, - "end": { - "$date": "2021-09-07T01:49:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e268bee7-3a45-4e22-942e-2c664e1ab501", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-07T01:44:13.000Z" - }, - "end": { - "$date": "2021-09-07T05:37:08.000Z" - }, - "events": [ - { - "uuid": "ed7ae54f-2007-49bf-b32d-3450560c3319", - "start": { - "$date": "2021-09-07T01:44:13.000Z" - }, - "end": { - "$date": "2021-09-07T05:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a0754bdd-6122-42a3-a84a-472996fca44f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-07T01:46:55.000Z" - }, - "end": { - "$date": "2021-09-07T02:11:46.000Z" - }, - "events": [ - { - "uuid": "92e36982-5390-4bce-b506-50d555b36dbb", - "start": { - "$date": "2021-09-07T01:46:55.000Z" - }, - "end": { - "$date": "2021-09-07T02:11:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b659e65e-1106-4638-bc53-b84374fd1a80", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T02:23:57.000Z" - }, - "end": { - "$date": "2021-09-07T03:17:50.000Z" - }, - "events": [ - { - "uuid": "15f675a4-14bb-481d-b4a5-cfe9b8838e16", - "start": { - "$date": "2021-09-07T02:23:57.000Z" - }, - "end": { - "$date": "2021-09-07T03:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "33cfad22-a135-4095-a5bc-f21f47c77835", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-07T02:43:35.000Z" - }, - "end": { - "$date": "2021-09-07T05:44:37.000Z" - }, - "events": [ - { - "uuid": "c6b786d5-59e4-41c2-a332-62927a6539e6", - "start": { - "$date": "2021-09-07T02:43:35.000Z" - }, - "end": { - "$date": "2021-09-07T05:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "9cca402d-fc32-40de-8dba-d9d749066c37", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-07T03:12:12.000Z" - }, - "end": { - "$date": "2021-09-07T03:20:48.000Z" - }, - "events": [ - { - "uuid": "3e9b145f-4858-46c1-be96-f4f212da24a8", - "start": { - "$date": "2021-09-07T03:12:12.000Z" - }, - "end": { - "$date": "2021-09-07T03:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dab8e4ee-5b7c-49aa-8f23-b8c803a5077a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-07T03:21:03.000Z" - }, - "end": { - "$date": "2021-09-07T04:46:23.000Z" - }, - "events": [ - { - "uuid": "fc347e89-cf13-426b-8fde-b045478846f1", - "start": { - "$date": "2021-09-07T03:21:03.000Z" - }, - "end": { - "$date": "2021-09-07T04:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "f05b264d-00e2-4354-8e29-f2b871fe1839", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T03:24:40.000Z" - }, - "end": { - "$date": "2021-09-07T03:27:27.000Z" - }, - "events": [ - { - "uuid": "96206ce6-898f-4322-aa2a-839bacd9f0a4", - "start": { - "$date": "2021-09-07T03:24:40.000Z" - }, - "end": { - "$date": "2021-09-07T03:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "a62d1473-a5bb-4192-879a-aca2a43e1684", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T03:36:56.000Z" - }, - "end": { - "$date": "2021-09-07T04:15:18.000Z" - }, - "events": [ - { - "uuid": "1b4e0752-4903-4724-83a2-b1d106ae53a0", - "start": { - "$date": "2021-09-07T03:36:56.000Z" - }, - "end": { - "$date": "2021-09-07T04:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba909e0c-8a1e-4f4d-af5d-45eb29f2275a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-07T04:11:52.000Z" - }, - "end": { - "$date": "2021-09-07T04:45:56.000Z" - }, - "events": [ - { - "uuid": "dcbcb293-5755-4a78-87cb-c376dd405752", - "start": { - "$date": "2021-09-07T04:11:52.000Z" - }, - "end": { - "$date": "2021-09-07T04:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6addfbf8-c694-432a-9a36-4964fe699b8b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-07T04:55:52.000Z" - }, - "end": { - "$date": "2021-09-07T05:26:25.000Z" - }, - "events": [ - { - "uuid": "b932c9e9-d2db-49c6-a699-677c206a3002", - "start": { - "$date": "2021-09-07T04:55:52.000Z" - }, - "end": { - "$date": "2021-09-07T05:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "28ac5ac3-f272-478b-8cc2-2d628b1c6cc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T04:58:32.000Z" - }, - "end": { - "$date": "2021-09-07T05:33:44.000Z" - }, - "events": [ - { - "uuid": "271dc541-97dd-4378-aaf1-2523c2399699", - "start": { - "$date": "2021-09-07T04:58:32.000Z" - }, - "end": { - "$date": "2021-09-07T05:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57fc7ad4-5054-4660-8a3a-9df0b951b7f6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-07T05:35:01.000Z" - }, - "end": { - "$date": "2021-09-07T06:05:45.000Z" - }, - "events": [ - { - "uuid": "bde7d26c-77b0-4283-a5ec-99aeb829d38d", - "start": { - "$date": "2021-09-07T05:35:01.000Z" - }, - "end": { - "$date": "2021-09-07T06:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "138d2545-553d-475a-b86a-dcb3f71ae18f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T05:44:47.000Z" - }, - "end": { - "$date": "2021-09-07T06:24:29.000Z" - }, - "events": [ - { - "uuid": "c0d95375-9388-4958-a5cf-222809777ea4", - "start": { - "$date": "2021-09-07T05:44:47.000Z" - }, - "end": { - "$date": "2021-09-07T06:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "babc4996-68d4-40b2-846a-d1cdbb536689", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T06:32:41.000Z" - }, - "end": { - "$date": "2021-09-07T06:34:41.000Z" - }, - "events": [ - { - "uuid": "899507d2-3cba-4041-b0dd-1cd1d8a9dda4", - "start": { - "$date": "2021-09-07T06:32:41.000Z" - }, - "end": { - "$date": "2021-09-07T06:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "c91ccf2a-8d98-4d36-a8e9-d5a909858591", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-07T06:54:32.000Z" - }, - "end": { - "$date": "2021-09-07T07:57:34.000Z" - }, - "events": [ - { - "uuid": "405792b7-3f97-4fa4-af9d-c20844e72bab", - "start": { - "$date": "2021-09-07T06:54:32.000Z" - }, - "end": { - "$date": "2021-09-07T07:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5a49c5db-ae50-4e04-ba52-530696f48a73", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-07T07:14:03.000Z" - }, - "end": { - "$date": "2021-09-07T07:51:33.000Z" - }, - "events": [ - { - "uuid": "d475d5ed-9d35-4446-a0f2-cea8d3fe7325", - "start": { - "$date": "2021-09-07T07:14:03.000Z" - }, - "end": { - "$date": "2021-09-07T07:51:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "b124d937-4f3c-4b48-b725-9794448783fe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-07T13:06:52.000Z" - }, - "end": { - "$date": "2021-09-07T13:08:52.000Z" - }, - "events": [ - { - "uuid": "eba68b7e-0360-4a3f-84ac-f9cfc4f200f4", - "start": { - "$date": "2021-09-07T13:06:52.000Z" - }, - "end": { - "$date": "2021-09-07T13:08:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "fa0564c7-0368-436f-bfde-73f7438363f2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-07T13:08:57.000Z" - }, - "end": { - "$date": "2021-09-07T19:39:28.000Z" - }, - "events": [ - { - "uuid": "59ead308-9a4f-49c2-8646-e9931db8eb7d", - "start": { - "$date": "2021-09-07T13:08:57.000Z" - }, - "end": { - "$date": "2021-09-07T19:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3384289c-90d5-491d-b190-84b635980243", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-07T14:47:27.000Z" - }, - "end": { - "$date": "2021-09-07T22:20:01.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-09-07T14:47:27.000Z" - }, - "end": { - "$date": "2021-09-07T22:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "f92d0fdd-3f4a-4c2f-b4ba-8d3cd6219bb7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-07T16:03:17.000Z" - }, - "end": { - "$date": "2021-09-07T18:15:46.000Z" - }, - "events": [ - { - "uuid": "398db8a5-4a72-4876-9b38-242f4e07cea3", - "start": { - "$date": "2021-09-07T16:03:17.000Z" - }, - "end": { - "$date": "2021-09-07T18:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c9836d12-9131-4dc2-882d-44eabee3e9ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T16:33:20.000Z" - }, - "end": { - "$date": "2021-09-07T17:25:47.000Z" - }, - "events": [ - { - "uuid": "d045e522-e72d-4efe-936d-0dc170b5d262", - "start": { - "$date": "2021-09-07T16:33:20.000Z" - }, - "end": { - "$date": "2021-09-07T17:25:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a6c96e7-5cc6-43de-9791-884b08f673f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T17:41:03.000Z" - }, - "end": { - "$date": "2021-09-07T18:00:53.000Z" - }, - "events": [ - { - "uuid": "fd58e798-35ae-453b-b0ae-2d61da916b39", - "start": { - "$date": "2021-09-07T17:41:03.000Z" - }, - "end": { - "$date": "2021-09-07T18:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b81a9fa-5c2a-4a8c-8768-722dbf6262e7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T18:04:08.000Z" - }, - "end": { - "$date": "2021-09-07T18:29:49.000Z" - }, - "events": [ - { - "uuid": "9bcce929-4518-4eea-9998-637e8ab01149", - "start": { - "$date": "2021-09-07T18:04:08.000Z" - }, - "end": { - "$date": "2021-09-07T18:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8be82ebb-26a4-4446-ad99-adb13afdaff4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-07T18:20:12.000Z" - }, - "end": { - "$date": "2021-09-07T18:46:43.000Z" - }, - "events": [ - { - "uuid": "a24b8ef1-17ca-495d-bbc8-91a267e08665", - "start": { - "$date": "2021-09-07T18:20:12.000Z" - }, - "end": { - "$date": "2021-09-07T18:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b47643cb-6316-4462-a534-e1d09f7a6079", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T18:30:07.000Z" - }, - "end": { - "$date": "2021-09-07T18:34:46.000Z" - }, - "events": [ - { - "uuid": "c6c2bf3f-de69-4255-b456-d71f426bfdf1", - "start": { - "$date": "2021-09-07T18:30:07.000Z" - }, - "end": { - "$date": "2021-09-07T18:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44e42a38-b3d1-4b73-a9d9-48ffb3c7e64f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-07T18:47:24.000Z" - }, - "end": { - "$date": "2021-09-07T19:21:21.000Z" - }, - "events": [ - { - "uuid": "7e489876-e5cc-4f74-928b-f3304105fa3b", - "start": { - "$date": "2021-09-07T18:47:24.000Z" - }, - "end": { - "$date": "2021-09-07T19:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbe581f3-41df-4eb4-86f1-56056d1fac18", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-07T19:22:26.000Z" - }, - "end": { - "$date": "2021-09-07T20:00:08.000Z" - }, - "events": [ - { - "uuid": "7ea8882c-df88-4128-a33e-43839697b979", - "start": { - "$date": "2021-09-07T19:22:26.000Z" - }, - "end": { - "$date": "2021-09-07T20:00:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7cce7b09-eea1-4f9a-a000-a03cd0e3bab0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T20:48:22.000Z" - }, - "end": { - "$date": "2021-09-07T21:08:42.000Z" - }, - "events": [ - { - "uuid": "d4e9f230-662a-4c4f-9bea-5758c43eb4ef", - "start": { - "$date": "2021-09-07T20:48:22.000Z" - }, - "end": { - "$date": "2021-09-07T21:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "58486acc-db83-4390-b30c-1cec6bcbd045", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-07T20:43:35.000Z" - }, - "end": { - "$date": "2021-09-07T20:57:25.000Z" - }, - "events": [ - { - "uuid": "9cddcefd-56da-455d-982e-bfc27ee48b6e", - "start": { - "$date": "2021-09-07T20:43:35.000Z" - }, - "end": { - "$date": "2021-09-07T20:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f4536f64-9e99-4e6f-8ddc-0aab7f1f6699", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-07T20:57:31.000Z" - }, - "end": { - "$date": "2021-09-07T22:16:05.000Z" - }, - "events": [ - { - "uuid": "e3453d9e-08e1-4af0-8962-882e95d8e5fc", - "start": { - "$date": "2021-09-07T20:57:31.000Z" - }, - "end": { - "$date": "2021-09-07T22:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fa094c0-0cf2-4915-badc-666ec27c9684", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T21:12:57.000Z" - }, - "end": { - "$date": "2021-09-07T21:34:52.000Z" - }, - "events": [ - { - "uuid": "aa6ce999-b5d2-47bd-bcc4-2d33fc874024", - "start": { - "$date": "2021-09-07T21:12:57.000Z" - }, - "end": { - "$date": "2021-09-07T21:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "25d95689-4017-4d91-8bfc-6ee564ae28e1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-07T21:18:13.000Z" - }, - "end": { - "$date": "2021-09-08T04:53:53.000Z" - }, - "events": [ - { - "uuid": "1005842e-f3d3-4c4d-8a92-1be412d3a274", - "start": { - "$date": "2021-09-07T21:18:13.000Z" - }, - "end": { - "$date": "2021-09-08T04:53:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a883d32d-b96e-47e1-9c79-8856b8909030", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-07T21:37:38.000Z" - }, - "end": { - "$date": "2021-09-07T22:00:18.000Z" - }, - "events": [ - { - "uuid": "4038432c-a77d-4ec4-a09a-3981a9bd829a", - "start": { - "$date": "2021-09-07T21:37:38.000Z" - }, - "end": { - "$date": "2021-09-07T22:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ee934966-3208-4386-988b-c361f191ca56", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-07T22:54:46.000Z" - }, - "end": { - "$date": "2021-09-07T23:03:40.000Z" - }, - "events": [ - { - "uuid": "a064f6c7-83ae-42c3-9a3a-553cbc55d2f8", - "start": { - "$date": "2021-09-07T22:54:46.000Z" - }, - "end": { - "$date": "2021-09-07T23:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f01ffcf2-d204-4fb9-a7e6-2d8ad5bddd4c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-07T23:13:17.000Z" - }, - "end": { - "$date": "2021-09-08T00:52:02.000Z" - }, - "events": [ - { - "uuid": "3637bfe0-fa58-4aa6-989c-aef009ec02c8", - "start": { - "$date": "2021-09-07T23:13:17.000Z" - }, - "end": { - "$date": "2021-09-08T00:52:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "53584fbd-4839-4148-80a1-bb0b59ce71cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-07T23:25:50.000Z" - }, - "end": { - "$date": "2021-09-08T04:43:47.000Z" - }, - "events": [ - { - "uuid": "9bea279b-dbff-4551-a514-aa66d6a1c49a", - "start": { - "$date": "2021-09-07T23:25:50.000Z" - }, - "end": { - "$date": "2021-09-08T04:43:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e33c124d-84fa-4d42-8af7-3578114af19d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T00:15:41.000Z" - }, - "end": { - "$date": "2021-09-08T00:35:31.000Z" - }, - "events": [ - { - "uuid": "e08f53c5-f14e-4a11-8e4b-c988be3d3fc5", - "start": { - "$date": "2021-09-08T00:15:41.000Z" - }, - "end": { - "$date": "2021-09-08T00:35:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3316f352-3256-4c6d-bc35-a259f64e6a8a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-08T00:19:07.000Z" - }, - "end": { - "$date": "2021-09-08T00:58:09.000Z" - }, - "events": [ - { - "uuid": "bbb50c93-6de9-4db2-90e3-81d5beb197f7", - "start": { - "$date": "2021-09-08T00:19:07.000Z" - }, - "end": { - "$date": "2021-09-08T00:58:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0a061d51-b3c8-46ea-ad4d-a77f0fc91941", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T00:38:42.000Z" - }, - "end": { - "$date": "2021-09-08T01:34:23.000Z" - }, - "events": [ - { - "uuid": "232e9476-feb2-4821-b937-fb5e2828a504", - "start": { - "$date": "2021-09-08T00:38:42.000Z" - }, - "end": { - "$date": "2021-09-08T01:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "71ce05fa-bb0a-45b5-9cee-33bfe6ac70b0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-08T00:59:20.000Z" - }, - "end": { - "$date": "2021-09-08T01:53:42.000Z" - }, - "events": [ - { - "uuid": "fd618508-06a8-4b47-944e-41af99bb81e0", - "start": { - "$date": "2021-09-08T00:59:20.000Z" - }, - "end": { - "$date": "2021-09-08T01:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "421cb792-2793-4830-95ca-af1f140b4bda", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-08T01:53:33.000Z" - }, - "end": { - "$date": "2021-09-08T02:42:03.000Z" - }, - "events": [ - { - "uuid": "78905686-f036-4d6e-8109-8d8f5d90f18f", - "start": { - "$date": "2021-09-08T01:53:33.000Z" - }, - "end": { - "$date": "2021-09-08T02:42:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ae4b8974-2d87-43f4-a1bd-034b783df6b2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-08T02:05:24.000Z" - }, - "end": { - "$date": "2021-09-08T03:31:46.000Z" - }, - "events": [ - { - "uuid": "b43819b1-2512-4304-8635-5b4999d2b071", - "start": { - "$date": "2021-09-08T02:05:24.000Z" - }, - "end": { - "$date": "2021-09-08T03:31:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4b03d6a-9e3c-4ca9-a80a-6e1ae33a9f0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T02:32:52.000Z" - }, - "end": { - "$date": "2021-09-08T02:59:03.000Z" - }, - "events": [ - { - "uuid": "38ce2cb1-3cd4-4b56-9f2f-57eb66371bae", - "start": { - "$date": "2021-09-08T02:32:52.000Z" - }, - "end": { - "$date": "2021-09-08T02:59:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5de22e15-2c4f-42b5-bc5d-d40becd1fce9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T03:01:58.000Z" - }, - "end": { - "$date": "2021-09-08T03:28:01.000Z" - }, - "events": [ - { - "uuid": "92a8c7d5-9fdf-4985-b2fb-04947fae58ef", - "start": { - "$date": "2021-09-08T03:01:58.000Z" - }, - "end": { - "$date": "2021-09-08T03:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aab410ea-c514-4d68-a7de-f2a7c2eefd51", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-08T03:50:43.000Z" - }, - "end": { - "$date": "2021-09-08T04:26:09.000Z" - }, - "events": [ - { - "uuid": "5da35e96-2bdc-45a6-b736-e5a1f2ea9f5e", - "start": { - "$date": "2021-09-08T03:50:43.000Z" - }, - "end": { - "$date": "2021-09-08T04:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "550c5ba3-1866-480e-a619-d3dbab795fcd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-08T03:59:08.000Z" - }, - "end": { - "$date": "2021-09-08T04:15:40.000Z" - }, - "events": [ - { - "uuid": "2bf41cbe-4fc0-4352-852e-2809cbd964b8", - "start": { - "$date": "2021-09-08T03:59:08.000Z" - }, - "end": { - "$date": "2021-09-08T04:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b5f0945-d90c-4079-8441-1a4276d4a4d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-08T04:36:06.000Z" - }, - "end": { - "$date": "2021-09-08T05:07:22.000Z" - }, - "events": [ - { - "uuid": "49ce9d9a-11ac-430a-8ff6-dd8ad9bc183d", - "start": { - "$date": "2021-09-08T04:36:06.000Z" - }, - "end": { - "$date": "2021-09-08T05:07:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d65424eb-a696-47ec-a7ad-2414cb61d574", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-08T04:41:57.000Z" - }, - "end": { - "$date": "2021-09-08T05:08:55.000Z" - }, - "events": [ - { - "uuid": "06fb8023-ed3f-441f-a1f6-adac2bd36584", - "start": { - "$date": "2021-09-08T04:41:57.000Z" - }, - "end": { - "$date": "2021-09-08T05:08:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4255e97b-ece3-4969-a522-8045e8b1d07a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-08T05:19:16.000Z" - }, - "end": { - "$date": "2021-09-08T05:44:44.000Z" - }, - "events": [ - { - "uuid": "743b1684-ca30-42c1-8989-376c9294e331", - "start": { - "$date": "2021-09-08T05:19:16.000Z" - }, - "end": { - "$date": "2021-09-08T05:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c961a455-c428-4f4f-8c58-8de93133a194", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T15:38:50.000Z" - }, - "end": { - "$date": "2021-09-08T15:57:51.000Z" - }, - "events": [ - { - "uuid": "c08dda4c-d8ec-469b-a8fb-5c29d0ac1458", - "start": { - "$date": "2021-09-08T15:38:50.000Z" - }, - "end": { - "$date": "2021-09-08T15:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a32c251e-7ef0-45eb-a11d-d4c218fa3144", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T16:02:21.000Z" - }, - "end": { - "$date": "2021-09-08T16:24:53.000Z" - }, - "events": [ - { - "uuid": "a3c84650-3fc0-4f3a-af94-19e1f0a85600", - "start": { - "$date": "2021-09-08T16:02:21.000Z" - }, - "end": { - "$date": "2021-09-08T16:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b0d524d-6587-4a7b-a384-f8341c234e87", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T16:31:08.000Z" - }, - "end": { - "$date": "2021-09-08T16:44:38.000Z" - }, - "events": [ - { - "uuid": "6b16f380-4b94-472f-aac8-0ad3d36eea44", - "start": { - "$date": "2021-09-08T16:31:08.000Z" - }, - "end": { - "$date": "2021-09-08T16:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "5e55a88a-98e5-4126-9b6b-6807a9d1cc35", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-08T16:37:53.000Z" - }, - "end": { - "$date": "2021-09-08T17:07:55.000Z" - }, - "events": [ - { - "uuid": "c31e6a72-6dfc-448d-9db8-bfe62ead61c6", - "start": { - "$date": "2021-09-08T16:37:53.000Z" - }, - "end": { - "$date": "2021-09-08T17:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54cad666-2c74-459e-81e9-b026c15d0881", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T16:44:58.000Z" - }, - "end": { - "$date": "2021-09-08T17:37:17.000Z" - }, - "events": [ - { - "uuid": "9d24d793-1e71-48c1-9e20-f99f9d99e231", - "start": { - "$date": "2021-09-08T16:44:58.000Z" - }, - "end": { - "$date": "2021-09-08T17:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2dcabadb-9e71-4264-aae5-532a012e3d36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T17:37:35.000Z" - }, - "end": { - "$date": "2021-09-08T18:05:16.000Z" - }, - "events": [ - { - "uuid": "87147b0d-b642-471f-9eac-0ff7be343778", - "start": { - "$date": "2021-09-08T17:37:35.000Z" - }, - "end": { - "$date": "2021-09-08T18:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f736ef35-364d-43d6-a19c-224800c3ea90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T19:30:54.000Z" - }, - "end": { - "$date": "2021-09-08T19:47:15.000Z" - }, - "events": [ - { - "uuid": "539f26cd-aa78-4343-9dee-3bd4b178cae0", - "start": { - "$date": "2021-09-08T19:30:54.000Z" - }, - "end": { - "$date": "2021-09-08T19:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fbbadba-503f-4467-a76b-63dd4bec8075", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T20:44:59.000Z" - }, - "end": { - "$date": "2021-09-08T21:14:25.000Z" - }, - "events": [ - { - "uuid": "eefa0610-31a2-4737-9ec3-595e9af4a6a7", - "start": { - "$date": "2021-09-08T20:44:59.000Z" - }, - "end": { - "$date": "2021-09-08T20:55:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7f04033-0e5f-4cbd-93f1-5f4c0732024e", - "start": { - "$date": "2021-09-08T20:55:59.000Z" - }, - "end": { - "$date": "2021-09-08T21:05:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3120d6d0-6131-4988-98bf-f5efbdead566", - "start": { - "$date": "2021-09-08T21:05:59.000Z" - }, - "end": { - "$date": "2021-09-08T21:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6886bdac-e663-4845-b842-711c99150ce5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T21:18:40.000Z" - }, - "end": { - "$date": "2021-09-08T21:34:55.000Z" - }, - "events": [ - { - "uuid": "b64f5cf4-2d08-45d0-86ec-efab69b65035", - "start": { - "$date": "2021-09-08T21:18:40.000Z" - }, - "end": { - "$date": "2021-09-08T21:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7012c1b2-b1c7-4956-a0b3-4d62a46b4844", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-08T21:23:36.000Z" - }, - "end": { - "$date": "2021-09-08T23:19:41.000Z" - }, - "events": [ - { - "uuid": "321c2f76-8ee6-4ef0-8542-f575f0bd8c21", - "start": { - "$date": "2021-09-08T21:23:36.000Z" - }, - "end": { - "$date": "2021-09-08T23:19:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "848e2f9a-5ac8-4ec0-aad0-1f90c54e23af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T21:36:25.000Z" - }, - "end": { - "$date": "2021-09-08T21:51:46.000Z" - }, - "events": [ - { - "uuid": "b172b573-79a7-4ed6-a72f-48672df620b6", - "start": { - "$date": "2021-09-08T21:36:25.000Z" - }, - "end": { - "$date": "2021-09-08T21:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "16c62cce-30ae-482d-b6fe-1c308eefcf3c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-08T21:49:24.000Z" - }, - "end": { - "$date": "2021-09-09T07:37:59.000Z" - }, - "events": [ - { - "uuid": "f6bad7f0-2e67-48f3-af98-a8bcb983970d", - "start": { - "$date": "2021-09-08T21:49:24.000Z" - }, - "end": { - "$date": "2021-09-09T07:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c8cf3fbd-e49b-412f-8074-02ed062bb9aa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-08T22:45:35.000Z" - }, - "end": { - "$date": "2021-09-08T22:49:16.000Z" - }, - "events": [ - { - "uuid": "2d3baadf-1eac-4ad4-afe3-0cf7864371c2", - "start": { - "$date": "2021-09-08T22:45:35.000Z" - }, - "end": { - "$date": "2021-09-08T22:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bffce9e2-aead-4be5-a834-e527446009d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-08T23:57:49.000Z" - }, - "end": { - "$date": "2021-09-09T00:30:09.000Z" - }, - "events": [ - { - "uuid": "762b0b27-7b12-46a1-a61c-06190dcfd6c2", - "start": { - "$date": "2021-09-08T23:57:49.000Z" - }, - "end": { - "$date": "2021-09-09T00:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "aa4f4f3b-186d-4397-85c0-cac8103f5b73", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-09T00:00:18.000Z" - }, - "end": { - "$date": "2021-09-09T01:04:37.000Z" - }, - "events": [ - { - "uuid": "bae939bf-e360-4940-b39d-371e6a0d7411", - "start": { - "$date": "2021-09-09T00:00:18.000Z" - }, - "end": { - "$date": "2021-09-09T01:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c0684b68-09ce-4980-b6ae-fb4c74d87f21", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-09T00:27:48.000Z" - }, - "end": { - "$date": "2021-09-09T01:16:33.000Z" - }, - "events": [ - { - "uuid": "919af933-537f-40b9-84ef-9b75b706d570", - "start": { - "$date": "2021-09-09T00:27:48.000Z" - }, - "end": { - "$date": "2021-09-09T01:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0fd9671f-e448-4204-b192-eafba6586e43", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T00:30:54.000Z" - }, - "end": { - "$date": "2021-09-09T01:48:53.000Z" - }, - "events": [ - { - "uuid": "bb5e649a-c783-4ad6-94b0-e49b2b4f9308", - "start": { - "$date": "2021-09-09T00:30:54.000Z" - }, - "end": { - "$date": "2021-09-09T01:48:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e3cfe0d7-447c-4581-9d7a-1bbd029f0512", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-09T01:10:10.000Z" - }, - "end": { - "$date": "2021-09-09T01:24:20.000Z" - }, - "events": [ - { - "uuid": "08a3a6b5-555e-4b3c-ba01-4070c28f444b", - "start": { - "$date": "2021-09-09T01:10:10.000Z" - }, - "end": { - "$date": "2021-09-09T01:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "973cc20c-d491-4f90-ae57-538418abf4cc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-09T01:27:58.000Z" - }, - "end": { - "$date": "2021-09-09T02:01:55.000Z" - }, - "events": [ - { - "uuid": "b87386fa-4118-4236-a316-874c159860b0", - "start": { - "$date": "2021-09-09T01:27:58.000Z" - }, - "end": { - "$date": "2021-09-09T02:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a61ffe56-cdb0-491e-a1d7-9e9e5a7e5157", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-09T01:34:09.000Z" - }, - "end": { - "$date": "2021-09-09T04:19:10.000Z" - }, - "events": [ - { - "uuid": "bd6a294a-93d7-4f17-a6fd-ed7544f16cca", - "start": { - "$date": "2021-09-09T01:34:09.000Z" - }, - "end": { - "$date": "2021-09-09T04:19:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "407bd3ff-874d-48d0-a1d3-cb362a72bec7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T02:18:30.000Z" - }, - "end": { - "$date": "2021-09-09T02:45:16.000Z" - }, - "events": [ - { - "uuid": "c08116f3-a7e6-4e21-a482-e34c555319a4", - "start": { - "$date": "2021-09-09T02:18:30.000Z" - }, - "end": { - "$date": "2021-09-09T02:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "07bef70f-e85c-4f93-8bf8-4be27801191a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-09T00:27:48.000Z" - }, - "end": { - "$date": "2021-09-09T05:34:52.000Z" - }, - "events": [ - { - "uuid": "553cd21d-73be-4cbf-865e-36556041a478", - "start": { - "$date": "2021-09-09T00:27:48.000Z" - }, - "end": { - "$date": "2021-09-09T05:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa393680-ea6c-4dfb-8f1f-dd1652ce136f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T02:48:26.000Z" - }, - "end": { - "$date": "2021-09-09T03:03:21.000Z" - }, - "events": [ - { - "uuid": "fcfd1619-9b31-4265-a288-f63b2e4b3ab2", - "start": { - "$date": "2021-09-09T02:48:26.000Z" - }, - "end": { - "$date": "2021-09-09T03:03:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b4259a38-290a-4962-a55f-29bc1ad7f164", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-09T03:47:33.000Z" - }, - "end": { - "$date": "2021-09-09T07:06:08.000Z" - }, - "events": [ - { - "uuid": "e4038389-5361-4b4f-b022-8a5eb616ce89", - "start": { - "$date": "2021-09-09T03:47:33.000Z" - }, - "end": { - "$date": "2021-09-09T07:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "83880ae9-f831-48ae-875c-6ccee9bf3fc0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-09T04:41:24.000Z" - }, - "end": { - "$date": "2021-09-09T05:32:40.000Z" - }, - "events": [ - { - "uuid": "b6cfbfe1-c5c5-4e02-b564-4c12c30b7c3a", - "start": { - "$date": "2021-09-09T04:41:24.000Z" - }, - "end": { - "$date": "2021-09-09T05:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3642e730-ad90-43c6-b3d0-b786673b81eb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-09T05:10:32.000Z" - }, - "end": { - "$date": "2021-09-09T05:49:10.000Z" - }, - "events": [ - { - "uuid": "4378dc8e-d960-4356-9c17-f3218c66dd7a", - "start": { - "$date": "2021-09-09T05:10:32.000Z" - }, - "end": { - "$date": "2021-09-09T05:49:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe58b965-572e-46aa-a1f5-7cc28525ef4b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-09T05:54:31.000Z" - }, - "end": { - "$date": "2021-09-09T06:29:19.000Z" - }, - "events": [ - { - "uuid": "7d908f7d-b4db-4b44-a76b-71006cb26d4b", - "start": { - "$date": "2021-09-09T05:54:31.000Z" - }, - "end": { - "$date": "2021-09-09T06:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c0ea1cae-7fb3-4edb-a8f8-7a74fdb4ab04", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-09T05:53:54.000Z" - }, - "end": { - "$date": "2021-09-09T06:20:16.000Z" - }, - "events": [ - { - "uuid": "b3902956-f659-46bf-8a9e-1eecd0f1475e", - "start": { - "$date": "2021-09-09T05:53:54.000Z" - }, - "end": { - "$date": "2021-09-09T06:20:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "361f9dbe-9ae3-430d-a9fd-e96a107071e8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-09T06:36:30.000Z" - }, - "end": { - "$date": "2021-09-09T07:02:53.000Z" - }, - "events": [ - { - "uuid": "16d63f8e-21f7-40a2-a523-a0b4a9743b2d", - "start": { - "$date": "2021-09-09T06:36:30.000Z" - }, - "end": { - "$date": "2021-09-09T07:02:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59c83e7f-cf1b-46f7-b003-36c64177b77e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T15:27:07.000Z" - }, - "end": { - "$date": "2021-09-09T15:27:56.000Z" - }, - "events": [ - { - "uuid": "750744dc-9f5c-4c08-a727-5eb7efc530ef", - "start": { - "$date": "2021-09-09T15:27:07.000Z" - }, - "end": { - "$date": "2021-09-09T15:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "84d60475-5c3f-466c-9032-e7b6eaf3502b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-09T15:13:39.000Z" - }, - "end": { - "$date": "2021-09-09T15:40:52.000Z" - }, - "events": [ - { - "uuid": "3a2a7cb0-e84b-489c-b235-07196ed80dbb", - "start": { - "$date": "2021-09-09T15:13:39.000Z" - }, - "end": { - "$date": "2021-09-09T15:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ec7d3cd1-6b7b-45ef-b9a9-bfb273846ca7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-09T16:28:02.000Z" - }, - "end": { - "$date": "2021-09-09T18:58:21.000Z" - }, - "events": [ - { - "uuid": "3670efd7-32c5-4658-9d31-1353d9c258f0", - "start": { - "$date": "2021-09-09T16:28:02.000Z" - }, - "end": { - "$date": "2021-09-09T18:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3869f5e8-7d3e-4f6b-94f2-fee4b7861042", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T17:16:44.000Z" - }, - "end": { - "$date": "2021-09-09T17:40:44.000Z" - }, - "events": [ - { - "uuid": "e1648772-6efd-4158-9515-6e297130750a", - "start": { - "$date": "2021-09-09T17:16:44.000Z" - }, - "end": { - "$date": "2021-09-09T17:40:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71bcc48d-8538-4130-8561-8d7fecfb4b8b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T17:41:15.000Z" - }, - "end": { - "$date": "2021-09-09T18:13:27.000Z" - }, - "events": [ - { - "uuid": "d4f11749-0e92-4bc2-893a-2db65d3b049e", - "start": { - "$date": "2021-09-09T17:41:15.000Z" - }, - "end": { - "$date": "2021-09-09T17:52:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "71134a7b-2996-4748-802b-c95ff97848ad", - "start": { - "$date": "2021-09-09T17:52:15.000Z" - }, - "end": { - "$date": "2021-09-09T18:01:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a38acbbd-c8aa-4efd-aa39-78ff7a8c9189", - "start": { - "$date": "2021-09-09T18:01:15.000Z" - }, - "end": { - "$date": "2021-09-09T18:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c651cfe8-7482-4022-9846-d3015d0428f1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-09T20:17:53.000Z" - }, - "end": { - "$date": "2021-09-09T20:49:16.000Z" - }, - "events": [ - { - "uuid": "159d7b84-8f92-46a4-8431-0ab7564b411a", - "start": { - "$date": "2021-09-09T20:17:53.000Z" - }, - "end": { - "$date": "2021-09-09T20:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d6b1ea6-c76c-4461-b2a0-51170984e6c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T20:30:06.000Z" - }, - "end": { - "$date": "2021-09-09T20:46:05.000Z" - }, - "events": [ - { - "uuid": "297404e3-4916-43a8-be1a-af0214f93777", - "start": { - "$date": "2021-09-09T20:30:06.000Z" - }, - "end": { - "$date": "2021-09-09T20:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ade5e29f-1e2a-47f5-9862-056a3c15b798", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T20:52:51.000Z" - }, - "end": { - "$date": "2021-09-09T21:13:06.000Z" - }, - "events": [ - { - "uuid": "734f12f8-36df-4c46-94da-4c13ebf9eaff", - "start": { - "$date": "2021-09-09T20:52:51.000Z" - }, - "end": { - "$date": "2021-09-09T21:13:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "312e5177-9d04-444c-9126-f472cac86ffc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T21:40:44.000Z" - }, - "end": { - "$date": "2021-09-09T22:01:29.000Z" - }, - "events": [ - { - "uuid": "ccb750cf-7208-4403-b740-37ba93f7c561", - "start": { - "$date": "2021-09-09T21:40:44.000Z" - }, - "end": { - "$date": "2021-09-09T22:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b46a085a-c24a-468c-99db-6fbad02be61a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-09T21:26:42.000Z" - }, - "end": { - "$date": "2021-09-09T21:46:03.000Z" - }, - "events": [ - { - "uuid": "aa99acc7-48ae-47dc-a5cb-9bd0713c8995", - "start": { - "$date": "2021-09-09T21:26:42.000Z" - }, - "end": { - "$date": "2021-09-09T21:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e09d1d62-14cf-4d96-ba2f-a72b658a609f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-09T21:41:09.000Z" - }, - "end": { - "$date": "2021-09-09T22:17:55.000Z" - }, - "events": [ - { - "uuid": "e65a8841-6989-4de3-b3fe-624f7917e7bd", - "start": { - "$date": "2021-09-09T21:41:09.000Z" - }, - "end": { - "$date": "2021-09-09T22:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "25e15a40-4955-401e-ba06-ec290078ca34", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-09T21:46:24.000Z" - }, - "end": { - "$date": "2021-09-09T22:56:17.000Z" - }, - "events": [ - { - "uuid": "5b1ea4c6-83cf-4518-9242-cf0ef1433000", - "start": { - "$date": "2021-09-09T21:46:24.000Z" - }, - "end": { - "$date": "2021-09-09T22:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "73a48efc-a452-44ef-b0f9-ad626accc135", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-09T22:18:35.000Z" - }, - "end": { - "$date": "2021-09-10T01:22:05.000Z" - }, - "events": [ - { - "uuid": "a5531aa8-7b13-414f-96ed-a311b9286321", - "start": { - "$date": "2021-09-09T22:18:35.000Z" - }, - "end": { - "$date": "2021-09-10T01:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0480d38f-1c19-4625-b4c3-cfc97104a8a3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-09T22:51:23.000Z" - }, - "end": { - "$date": "2021-09-09T23:05:01.000Z" - }, - "events": [ - { - "uuid": "655109af-3974-4fc1-806a-26395395b4e7", - "start": { - "$date": "2021-09-09T22:51:23.000Z" - }, - "end": { - "$date": "2021-09-09T23:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0f7940f7-26c8-4638-9844-6c08824b7bdb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-09T23:00:47.000Z" - }, - "end": { - "$date": "2021-09-09T23:43:23.000Z" - }, - "events": [ - { - "uuid": "c631564b-604a-4262-a044-ae67a4247846", - "start": { - "$date": "2021-09-09T23:00:47.000Z" - }, - "end": { - "$date": "2021-09-09T23:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "92a506f3-4ab9-4bd0-9043-339e5a38dc08", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-09T23:20:50.000Z" - }, - "end": { - "$date": "2021-09-10T05:19:11.000Z" - }, - "events": [ - { - "uuid": "64c2030c-5ec0-44b5-b2c2-84032e3a4c5c", - "start": { - "$date": "2021-09-09T23:20:50.000Z" - }, - "end": { - "$date": "2021-09-09T23:32:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b288513-3a01-47e3-820c-350bf2d74a53", - "start": { - "$date": "2021-09-09T23:32:50.000Z" - }, - "end": { - "$date": "2021-09-09T23:35:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "88aa577e-2f43-4b48-95b4-ce95a19eb96d", - "start": { - "$date": "2021-09-09T23:35:50.000Z" - }, - "end": { - "$date": "2021-09-10T05:19:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46a07f7f-ccfe-48cc-b775-e6c4353a8257", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-09T23:30:49.000Z" - }, - "end": { - "$date": "2021-09-09T23:52:58.000Z" - }, - "events": [ - { - "uuid": "cbc6da54-5446-4eb0-b9b8-4ff28f959ae8", - "start": { - "$date": "2021-09-09T23:30:49.000Z" - }, - "end": { - "$date": "2021-09-09T23:52:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41d09875-d89b-46e0-8d3b-79d5ffdd22ec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-09T23:53:52.000Z" - }, - "end": { - "$date": "2021-09-09T23:56:17.000Z" - }, - "events": [ - { - "uuid": "34de3e78-3328-4393-b8e5-ebefbc97d3b0", - "start": { - "$date": "2021-09-09T23:53:52.000Z" - }, - "end": { - "$date": "2021-09-09T23:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f4e0fc3-301f-4893-9237-1f6f0e7364d3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-09T23:57:13.000Z" - }, - "end": { - "$date": "2021-09-10T14:01:51.000Z" - }, - "events": [ - { - "uuid": "13b4cbd3-7470-4a45-8dea-0a1bcce2f3ef", - "start": { - "$date": "2021-09-09T23:57:13.000Z" - }, - "end": { - "$date": "2021-09-09T23:58:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c44e7d4-c6c2-41fd-84f6-b0a6e1210109", - "start": { - "$date": "2021-09-09T23:58:13.000Z" - }, - "end": { - "$date": "2021-09-10T00:03:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8687f2fc-fe2c-4fb8-b70a-e1eb933ec0d1", - "start": { - "$date": "2021-09-10T00:03:13.000Z" - }, - "end": { - "$date": "2021-09-10T00:10:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "651e111a-66e1-42e3-82fe-f7f54599d080", - "start": { - "$date": "2021-09-10T00:10:13.000Z" - }, - "end": { - "$date": "2021-09-10T00:14:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e6cd93a1-31b0-4103-855d-5929aa0d17c5", - "start": { - "$date": "2021-09-10T00:14:13.000Z" - }, - "end": { - "$date": "2021-09-10T00:16:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4aee9433-cb09-425a-98cb-44b94b15a530", - "start": { - "$date": "2021-09-10T00:16:13.000Z" - }, - "end": { - "$date": "2021-09-10T01:06:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0a6f2c27-9b48-41e1-9829-7418c2f05a4f", - "start": { - "$date": "2021-09-10T01:06:13.000Z" - }, - "end": { - "$date": "2021-09-10T01:10:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c34e4f2b-ea7d-40a6-b7ba-83260b3b0d1e", - "start": { - "$date": "2021-09-10T01:10:13.000Z" - }, - "end": { - "$date": "2021-09-10T01:59:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5096c561-d721-4cdd-9846-4417c74e91a4", - "start": { - "$date": "2021-09-10T01:59:13.000Z" - }, - "end": { - "$date": "2021-09-10T02:02:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c378af2b-e033-4c7e-8f51-bb76588ab272", - "start": { - "$date": "2021-09-10T02:02:13.000Z" - }, - "end": { - "$date": "2021-09-10T02:20:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6ae2006e-eab9-4933-aef8-ef900ccfd836", - "start": { - "$date": "2021-09-10T02:20:13.000Z" - }, - "end": { - "$date": "2021-09-10T02:24:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40398cb2-c1be-4770-b8a4-f21e4b7b4503", - "start": { - "$date": "2021-09-10T02:24:13.000Z" - }, - "end": { - "$date": "2021-09-10T02:26:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e3e7e93-5994-4c33-a50c-489b2b93fad7", - "start": { - "$date": "2021-09-10T02:26:13.000Z" - }, - "end": { - "$date": "2021-09-10T02:28:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b687f7bb-7601-42d1-9501-c9af4762cb0f", - "start": { - "$date": "2021-09-10T02:28:13.000Z" - }, - "end": { - "$date": "2021-09-10T03:58:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d23ff8fc-23e7-4c0a-a509-bf4bb34af3fc", - "start": { - "$date": "2021-09-10T03:58:13.000Z" - }, - "end": { - "$date": "2021-09-10T04:00:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb768d28-c08c-4929-8ea8-dd90241cc439", - "start": { - "$date": "2021-09-10T04:00:13.000Z" - }, - "end": { - "$date": "2021-09-10T14:01:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be5dd046-3e14-4898-8330-f953a9ab0cac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T00:25:38.000Z" - }, - "end": { - "$date": "2021-09-10T00:45:38.000Z" - }, - "events": [ - { - "uuid": "b2d5ab91-7fe3-4aaa-a2a3-4d6b15a251d8", - "start": { - "$date": "2021-09-10T00:25:38.000Z" - }, - "end": { - "$date": "2021-09-10T00:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69de8c85-f02a-406f-a935-72802f896b75", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T00:48:39.000Z" - }, - "end": { - "$date": "2021-09-10T01:04:43.000Z" - }, - "events": [ - { - "uuid": "3a55ce03-cd03-4b9d-ab2c-f26daff99fb7", - "start": { - "$date": "2021-09-10T00:48:39.000Z" - }, - "end": { - "$date": "2021-09-10T01:04:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "965f29b0-0a6f-41dd-adf4-a84f01bac2f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T01:05:54.000Z" - }, - "end": { - "$date": "2021-09-10T01:54:50.000Z" - }, - "events": [ - { - "uuid": "2246f0f0-d311-4df7-8c70-e562be4fac7e", - "start": { - "$date": "2021-09-10T01:05:54.000Z" - }, - "end": { - "$date": "2021-09-10T01:54:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "39aa9e2f-d2e7-4f6b-aca0-5fbafbb56288", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-10T01:22:15.000Z" - }, - "end": { - "$date": "2021-09-10T03:45:28.000Z" - }, - "events": [ - { - "uuid": "6f32d1a5-ad60-480c-9dcd-15e828f82ea9", - "start": { - "$date": "2021-09-10T01:22:15.000Z" - }, - "end": { - "$date": "2021-09-10T03:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "5b1b75e0-140d-48e6-a69c-f8b6dfc90f75", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-10T01:26:21.000Z" - }, - "end": { - "$date": "2021-09-10T06:37:39.000Z" - }, - "events": [ - { - "uuid": "f89f5a2b-891b-464b-a9a1-4dec23d175da", - "start": { - "$date": "2021-09-10T01:26:21.000Z" - }, - "end": { - "$date": "2021-09-10T06:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "d4a803b6-9d28-42e6-b03f-2e63b3b82c29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T02:12:48.000Z" - }, - "end": { - "$date": "2021-09-10T02:14:28.000Z" - }, - "events": [ - { - "uuid": "6d754701-2409-4f78-9b3e-bd689f81c440", - "start": { - "$date": "2021-09-10T02:12:48.000Z" - }, - "end": { - "$date": "2021-09-10T02:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d41eeb02-3d26-44ae-b943-6577476b2f90", - "uuid": "157ae74c-0478-42da-b0f2-bc3173cb4bff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T02:38:26.000Z" - }, - "end": { - "$date": "2021-09-10T02:47:56.000Z" - }, - "events": [ - { - "uuid": "66e6f5bb-bf37-4090-94b4-206e3d059212", - "start": { - "$date": "2021-09-10T02:38:26.000Z" - }, - "end": { - "$date": "2021-09-10T02:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd2fdd66-c618-41de-b8f6-345d3716470b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T02:51:52.000Z" - }, - "end": { - "$date": "2021-09-10T03:12:07.000Z" - }, - "events": [ - { - "uuid": "389a5eb3-b440-4394-8e80-2389126f5c1b", - "start": { - "$date": "2021-09-10T02:51:52.000Z" - }, - "end": { - "$date": "2021-09-10T03:12:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "62c1ecab-946e-42a5-b345-a9c96269849b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-10T02:50:01.000Z" - }, - "end": { - "$date": "2021-09-10T02:52:57.000Z" - }, - "events": [ - { - "uuid": "4f8e7fa1-e9ee-4b6e-b0da-dfb3e905a4bd", - "start": { - "$date": "2021-09-10T02:50:01.000Z" - }, - "end": { - "$date": "2021-09-10T02:52:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09445da7-b2b4-4012-8277-5806e17e83ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T03:16:43.000Z" - }, - "end": { - "$date": "2021-09-10T03:35:02.000Z" - }, - "events": [ - { - "uuid": "8a33e9fd-81bd-4f20-a91b-a10fe735d204", - "start": { - "$date": "2021-09-10T03:16:43.000Z" - }, - "end": { - "$date": "2021-09-10T03:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "81b6b3e8-e7a4-409a-b3c6-c99976d4d28d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-10T03:23:45.000Z" - }, - "end": { - "$date": "2021-09-10T03:34:15.000Z" - }, - "events": [ - { - "uuid": "a6c89219-cb40-4bd8-ba22-5e97950a6350", - "start": { - "$date": "2021-09-10T03:23:45.000Z" - }, - "end": { - "$date": "2021-09-10T03:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "56cc30f7-a20b-45ea-af1c-95cb0caf8a2d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-10T03:33:45.000Z" - }, - "end": { - "$date": "2021-09-10T04:20:33.000Z" - }, - "events": [ - { - "uuid": "52fbd27f-c514-4405-a3ec-b279c26e4bc1", - "start": { - "$date": "2021-09-10T03:33:45.000Z" - }, - "end": { - "$date": "2021-09-10T04:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "174dc3eb-1b1f-4f3e-ba45-28049adc9279", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-10T03:53:10.000Z" - }, - "end": { - "$date": "2021-09-10T04:18:38.000Z" - }, - "events": [ - { - "uuid": "34fc1f62-7213-4e2e-bcd8-90b9899aff17", - "start": { - "$date": "2021-09-10T03:53:10.000Z" - }, - "end": { - "$date": "2021-09-10T04:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9c44fcea-50fb-427e-9602-d1204415e638", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-10T04:03:36.000Z" - }, - "end": { - "$date": "2021-09-10T04:24:38.000Z" - }, - "events": [ - { - "uuid": "fbaa6d36-1aa2-47d2-b6c7-6713954ff831", - "start": { - "$date": "2021-09-10T04:03:36.000Z" - }, - "end": { - "$date": "2021-09-10T04:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd9c895f-8cd2-4c37-b1f8-d6ed83880e43", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-10T04:24:18.000Z" - }, - "end": { - "$date": "2021-09-10T04:42:05.000Z" - }, - "events": [ - { - "uuid": "e3c13f10-155d-493e-9e35-8023ef8abdf8", - "start": { - "$date": "2021-09-10T04:24:18.000Z" - }, - "end": { - "$date": "2021-09-10T04:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15296106-27ed-48fe-a578-ed6a4cc7cc82", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-10T04:47:15.000Z" - }, - "end": { - "$date": "2021-09-10T05:12:08.000Z" - }, - "events": [ - { - "uuid": "cce4683b-8b2a-4a60-b957-77ddc945233a", - "start": { - "$date": "2021-09-10T04:47:15.000Z" - }, - "end": { - "$date": "2021-09-10T05:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78f56b12-26d4-4764-9ea3-ce512b1d26a2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-10T05:16:43.000Z" - }, - "end": { - "$date": "2021-09-10T05:46:47.000Z" - }, - "events": [ - { - "uuid": "17c14e53-a97b-4b88-a5f4-a9761779c285", - "start": { - "$date": "2021-09-10T05:16:43.000Z" - }, - "end": { - "$date": "2021-09-10T05:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40c716c6-e0b5-47e7-8457-c15d9440cffe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-10T05:58:13.000Z" - }, - "end": { - "$date": "2021-09-10T06:27:37.000Z" - }, - "events": [ - { - "uuid": "af14b10c-0415-457e-9449-07d903f8e7a7", - "start": { - "$date": "2021-09-10T05:58:13.000Z" - }, - "end": { - "$date": "2021-09-10T06:27:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "577aa4b5-07fc-4d41-a784-361f98a15b46", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-10T06:12:54.000Z" - }, - "end": { - "$date": "2021-09-10T06:48:57.000Z" - }, - "events": [ - { - "uuid": "06da4443-72be-4d79-a3d8-8b5b3304e061", - "start": { - "$date": "2021-09-10T06:12:54.000Z" - }, - "end": { - "$date": "2021-09-10T06:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e39f86bf-655d-49da-8115-b431b8c31e3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-10T07:03:08.000Z" - }, - "end": { - "$date": "2021-09-10T07:25:25.000Z" - }, - "events": [ - { - "uuid": "292f5526-4bf6-4947-a8be-297134ec8c8f", - "start": { - "$date": "2021-09-10T07:03:08.000Z" - }, - "end": { - "$date": "2021-09-10T07:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "d76f6a4f-3653-4e42-9d83-454d2685e5b0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-10T07:09:07.000Z" - }, - "end": { - "$date": "2021-09-10T08:41:07.000Z" - }, - "events": [ - { - "uuid": "1b05d05b-dd0d-49c8-92bc-d16469412f37", - "start": { - "$date": "2021-09-10T07:09:07.000Z" - }, - "end": { - "$date": "2021-09-10T08:41:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df9d60a1-3495-47da-bea4-73b2dfa335d7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T15:26:05.000Z" - }, - "end": { - "$date": "2021-09-10T15:47:49.000Z" - }, - "events": [ - { - "uuid": "ae468ad6-a0d2-421a-b7ee-42e8e426e3f7", - "start": { - "$date": "2021-09-10T15:26:05.000Z" - }, - "end": { - "$date": "2021-09-10T15:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "68f213ab-caf8-4bf2-a76d-7979fb4cc656", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T15:48:30.000Z" - }, - "end": { - "$date": "2021-09-10T16:37:37.000Z" - }, - "events": [ - { - "uuid": "9724e070-d807-472f-aa34-635d0473a866", - "start": { - "$date": "2021-09-10T15:48:30.000Z" - }, - "end": { - "$date": "2021-09-10T16:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "uuid": "523ba50e-ae96-466d-b17a-8d7c9b7af6e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-10T18:51:30.000Z" - }, - "end": { - "$date": "2021-09-10T18:53:55.000Z" - }, - "events": [ - { - "uuid": "01472849-3104-4591-9e95-c7ba0e2f66cd", - "start": { - "$date": "2021-09-10T18:51:30.000Z" - }, - "end": { - "$date": "2021-09-10T18:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "d3f094d3-548b-4f93-8ceb-16f04e51ea1d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-10T19:44:14.000Z" - }, - "end": { - "$date": "2021-09-11T01:36:43.000Z" - }, - "events": [ - { - "uuid": "c19e9036-1b15-4044-bdf3-cf689b73233a", - "start": { - "$date": "2021-09-10T19:44:14.000Z" - }, - "end": { - "$date": "2021-09-11T01:36:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81f517b5-0b8c-4aa6-af1a-1ff58230ae4f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T20:06:59.000Z" - }, - "end": { - "$date": "2021-09-10T20:14:52.000Z" - }, - "events": [ - { - "uuid": "49abb3e2-41f3-469f-a18e-96a90a00a0a4", - "start": { - "$date": "2021-09-10T20:06:59.000Z" - }, - "end": { - "$date": "2021-09-10T20:14:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "7b09ad8a-a732-4239-9afc-bc395871eef0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-10T21:22:10.000Z" - }, - "end": { - "$date": "2021-09-10T21:53:02.000Z" - }, - "events": [ - { - "uuid": "5b8a6d38-77a6-40e2-9010-ca48c7835266", - "start": { - "$date": "2021-09-10T21:22:10.000Z" - }, - "end": { - "$date": "2021-09-10T21:53:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "275b151d-edd4-46b0-8afd-edd58951cbc4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-10T22:17:38.000Z" - }, - "end": { - "$date": "2021-09-10T22:53:09.000Z" - }, - "events": [ - { - "uuid": "848dfa48-63d8-4d67-a333-d88ccace03fb", - "start": { - "$date": "2021-09-10T22:17:38.000Z" - }, - "end": { - "$date": "2021-09-10T22:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "53c84b55-e816-4c3d-a0fc-066203f3d6f6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-10T22:50:07.000Z" - }, - "end": { - "$date": "2021-09-10T23:12:38.000Z" - }, - "events": [ - { - "uuid": "1f63401a-e8a9-4a64-ab7d-f834fe925c62", - "start": { - "$date": "2021-09-10T22:50:07.000Z" - }, - "end": { - "$date": "2021-09-10T23:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "aca9827d-f5f4-4de2-ab42-144d2e36e11c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-10T23:32:38.000Z" - }, - "end": { - "$date": "2021-09-11T07:55:25.000Z" - }, - "events": [ - { - "uuid": "c5df1906-1c3d-483f-87f1-988bd38c0f81", - "start": { - "$date": "2021-09-10T23:32:38.000Z" - }, - "end": { - "$date": "2021-09-11T00:09:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "776a5171-16a7-42d0-80f0-5420b786cf87", - "start": { - "$date": "2021-09-11T00:09:38.000Z" - }, - "end": { - "$date": "2021-09-11T00:11:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1c100f4-9cf6-42c3-b1bd-9904c4a014cc", - "start": { - "$date": "2021-09-11T00:11:38.000Z" - }, - "end": { - "$date": "2021-09-11T01:06:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a37b28b-a7f6-4cde-96ec-c5d40f0ad565", - "start": { - "$date": "2021-09-11T01:06:38.000Z" - }, - "end": { - "$date": "2021-09-11T01:10:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9c4f9862-fc95-41f1-8926-37e11ecf51f0", - "start": { - "$date": "2021-09-11T01:10:38.000Z" - }, - "end": { - "$date": "2021-09-11T06:33:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff91f299-a8c5-4bdc-a34e-6f50b1178ae7", - "start": { - "$date": "2021-09-11T06:33:38.000Z" - }, - "end": { - "$date": "2021-09-11T07:55:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "79eef4ec-4ef0-45f9-8db5-7f006cdcadfc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T01:19:06.000Z" - }, - "end": { - "$date": "2021-09-11T02:30:33.000Z" - }, - "events": [ - { - "uuid": "f5871134-e158-4a5a-abce-642e0201dec9", - "start": { - "$date": "2021-09-11T01:19:06.000Z" - }, - "end": { - "$date": "2021-09-11T02:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13aa6968-2917-410d-a9bf-50e9b94f217e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T02:07:57.000Z" - }, - "end": { - "$date": "2021-09-11T02:40:54.000Z" - }, - "events": [ - { - "uuid": "85a5c842-0305-43fe-9299-35550233bf4e", - "start": { - "$date": "2021-09-11T02:07:57.000Z" - }, - "end": { - "$date": "2021-09-11T02:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "386e3466-c162-4220-8830-8a324b5f5d43", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-11T02:10:58.000Z" - }, - "end": { - "$date": "2021-09-11T02:13:54.000Z" - }, - "events": [ - { - "uuid": "c17b8fc7-04e7-4880-b882-d509c5b79b62", - "start": { - "$date": "2021-09-11T02:10:58.000Z" - }, - "end": { - "$date": "2021-09-11T02:13:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "30770a1a-ee0f-44f6-b544-42694c77aaed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-11T02:37:07.000Z" - }, - "end": { - "$date": "2021-09-11T03:56:52.000Z" - }, - "events": [ - { - "uuid": "dc19a196-0f66-4a82-b9e2-0a18159c3758", - "start": { - "$date": "2021-09-11T02:37:07.000Z" - }, - "end": { - "$date": "2021-09-11T03:56:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb1d4f64-538d-4a1c-810a-a6ae65054c20", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T02:51:45.000Z" - }, - "end": { - "$date": "2021-09-11T03:18:05.000Z" - }, - "events": [ - { - "uuid": "791dbf0c-ea7b-44ea-80a0-0d1fdc2ee04e", - "start": { - "$date": "2021-09-11T02:51:45.000Z" - }, - "end": { - "$date": "2021-09-11T03:18:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "0b2046e8-7d92-46d7-804c-88a6922b6d82", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T02:51:17.000Z" - }, - "end": { - "$date": "2021-09-11T03:04:53.000Z" - }, - "events": [ - { - "uuid": "47d55fda-f4e3-40e7-b649-855a7282e637", - "start": { - "$date": "2021-09-11T02:51:17.000Z" - }, - "end": { - "$date": "2021-09-11T03:04:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "d1e88435-3831-47ac-b64b-847d09524e7c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-11T02:52:13.000Z" - }, - "end": { - "$date": "2021-09-11T03:57:11.000Z" - }, - "events": [ - { - "uuid": "55089fd6-53c9-47c9-93b3-af75fa8326c8", - "start": { - "$date": "2021-09-11T02:52:13.000Z" - }, - "end": { - "$date": "2021-09-11T03:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "31d2fbab-ca9a-4ee7-9a66-5003749faab4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-11T02:58:47.000Z" - }, - "end": { - "$date": "2021-09-11T06:32:40.000Z" - }, - "events": [ - { - "uuid": "ca82c87e-9c6a-4ded-9a3b-8f0cb3d004fe", - "start": { - "$date": "2021-09-11T02:58:47.000Z" - }, - "end": { - "$date": "2021-09-11T06:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "4cb2388b-0d53-4cfc-8c5b-fb0989703c91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T03:05:18.000Z" - }, - "end": { - "$date": "2021-09-11T03:14:18.000Z" - }, - "events": [ - { - "uuid": "07e41d52-5339-44e4-bc45-3fb8b5b1b547", - "start": { - "$date": "2021-09-11T03:05:18.000Z" - }, - "end": { - "$date": "2021-09-11T03:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa2c3495-f34b-4433-b70c-763359a8aafc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T03:23:30.000Z" - }, - "end": { - "$date": "2021-09-11T03:51:55.000Z" - }, - "events": [ - { - "uuid": "8752a6a4-1bc7-47e5-bb89-ca5a41787582", - "start": { - "$date": "2021-09-11T03:23:30.000Z" - }, - "end": { - "$date": "2021-09-11T03:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a79df01-68d0-46fc-a1ce-fc764d01aef4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T03:23:34.000Z" - }, - "end": { - "$date": "2021-09-11T03:52:00.000Z" - }, - "events": [ - { - "uuid": "dcc595be-eff4-475a-9ab6-25b088681451", - "start": { - "$date": "2021-09-11T03:23:34.000Z" - }, - "end": { - "$date": "2021-09-11T03:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a39fa6ed-2dd2-4324-8566-e427bee7eeb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T03:58:26.000Z" - }, - "end": { - "$date": "2021-09-11T04:24:12.000Z" - }, - "events": [ - { - "uuid": "98a71784-780f-43c4-857c-a721bd761974", - "start": { - "$date": "2021-09-11T03:58:26.000Z" - }, - "end": { - "$date": "2021-09-11T04:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19e9e3e8-79c5-4522-a6f5-1d6e2951cd2f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-11T03:57:22.000Z" - }, - "end": { - "$date": "2021-09-11T04:24:08.000Z" - }, - "events": [ - { - "uuid": "aed99766-ecd0-4ba6-b291-7d0e19ec6d4e", - "start": { - "$date": "2021-09-11T03:57:22.000Z" - }, - "end": { - "$date": "2021-09-11T04:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "036ae1ce-3cc5-4e53-8228-c42ceb082d01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-11T04:00:05.000Z" - }, - "end": { - "$date": "2021-09-11T06:32:43.000Z" - }, - "events": [ - { - "uuid": "ebbf2121-b8b7-41a0-95ba-ac797eaa0db2", - "start": { - "$date": "2021-09-11T04:00:05.000Z" - }, - "end": { - "$date": "2021-09-11T06:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1800ba8b-c196-4cd4-a4ac-2793b99bd656", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T04:34:08.000Z" - }, - "end": { - "$date": "2021-09-11T05:03:14.000Z" - }, - "events": [ - { - "uuid": "52f3fee5-d0c3-48ea-b029-a4e4128865ce", - "start": { - "$date": "2021-09-11T04:34:08.000Z" - }, - "end": { - "$date": "2021-09-11T05:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ea06e1d-a570-45e7-85a3-ec80b61119a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-11T04:33:14.000Z" - }, - "end": { - "$date": "2021-09-11T05:03:14.000Z" - }, - "events": [ - { - "uuid": "ffcb4504-3bbc-42a0-8585-d6558e5fdd25", - "start": { - "$date": "2021-09-11T04:33:14.000Z" - }, - "end": { - "$date": "2021-09-11T05:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d84c3083-00bd-4e6d-a150-632224704f03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T05:10:30.000Z" - }, - "end": { - "$date": "2021-09-11T05:30:33.000Z" - }, - "events": [ - { - "uuid": "f81227b5-4e70-4498-8467-3d1e7b0ef3a6", - "start": { - "$date": "2021-09-11T05:10:30.000Z" - }, - "end": { - "$date": "2021-09-11T05:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "4db9d295-6fdf-4a96-b364-21dc0cb41ba3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T05:46:04.000Z" - }, - "end": { - "$date": "2021-09-11T06:35:10.000Z" - }, - "events": [ - { - "uuid": "cbfb620a-f746-4520-bf49-08e2e53172b6", - "start": { - "$date": "2021-09-11T05:46:04.000Z" - }, - "end": { - "$date": "2021-09-11T06:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "3f102c7f-b5b3-4202-b8ad-e9e1f0ba7f1e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-11T07:24:20.000Z" - }, - "end": { - "$date": "2021-09-11T08:06:48.000Z" - }, - "events": [ - { - "uuid": "1376b744-df17-4db7-a9c4-342f675897ce", - "start": { - "$date": "2021-09-11T07:24:20.000Z" - }, - "end": { - "$date": "2021-09-11T08:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09498162-3bb7-4fd6-8e39-340526aa6da3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T14:52:54.000Z" - }, - "end": { - "$date": "2021-09-11T15:07:48.000Z" - }, - "events": [ - { - "uuid": "70641cba-febd-44da-88a2-8671e10dc137", - "start": { - "$date": "2021-09-11T14:52:54.000Z" - }, - "end": { - "$date": "2021-09-11T15:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc1ac6eb-2693-4095-8c73-5dfb3efe0bad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T15:10:04.000Z" - }, - "end": { - "$date": "2021-09-11T15:38:04.000Z" - }, - "events": [ - { - "uuid": "60185d2e-cb96-4806-93c6-c4a36f774cd6", - "start": { - "$date": "2021-09-11T15:10:04.000Z" - }, - "end": { - "$date": "2021-09-11T15:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7ce81e94-9952-4257-98db-87d5c1a93f5c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T16:45:19.000Z" - }, - "end": { - "$date": "2021-09-11T17:22:56.000Z" - }, - "events": [ - { - "uuid": "d6a51a2c-4b9d-4166-8caf-9755a733ebc9", - "start": { - "$date": "2021-09-11T16:45:19.000Z" - }, - "end": { - "$date": "2021-09-11T17:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1bbe531d-0cfc-48e7-bd64-f1f70734ff46", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-11T16:59:39.000Z" - }, - "end": { - "$date": "2021-09-11T21:30:12.000Z" - }, - "events": [ - { - "uuid": "ff3d9bd4-7cb3-4792-a64d-a9b756054053", - "start": { - "$date": "2021-09-11T16:59:39.000Z" - }, - "end": { - "$date": "2021-09-11T17:22:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b788d95-3874-483e-9555-3364ad5b8f4d", - "start": { - "$date": "2021-09-11T17:22:39.000Z" - }, - "end": { - "$date": "2021-09-11T17:34:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a41ee9d-19f2-49ee-a5ab-8093c3edf5a5", - "start": { - "$date": "2021-09-11T17:34:39.000Z" - }, - "end": { - "$date": "2021-09-11T21:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e95cc834-b1f5-434c-b6e3-c0b3cb27b32e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T19:21:38.000Z" - }, - "end": { - "$date": "2021-09-11T19:33:46.000Z" - }, - "events": [ - { - "uuid": "927d9f8a-e51d-42a1-a83e-1993903f1cf1", - "start": { - "$date": "2021-09-11T19:21:38.000Z" - }, - "end": { - "$date": "2021-09-11T19:33:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a69bb3a-a839-4daa-978b-a2fffa90a5c5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T19:48:28.000Z" - }, - "end": { - "$date": "2021-09-11T20:16:57.000Z" - }, - "events": [ - { - "uuid": "03c22087-9d54-48de-bbb8-d2fab56bdbe9", - "start": { - "$date": "2021-09-11T19:48:28.000Z" - }, - "end": { - "$date": "2021-09-11T20:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c44ef90-4ff2-4233-a797-96b71a6756f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T20:25:09.000Z" - }, - "end": { - "$date": "2021-09-11T20:47:59.000Z" - }, - "events": [ - { - "uuid": "e5fd07a3-dd13-4f94-b1c3-f7ba60fdcc9c", - "start": { - "$date": "2021-09-11T20:25:09.000Z" - }, - "end": { - "$date": "2021-09-11T20:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ac0237de-a950-49c1-9eff-72f59afd5492", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-11T20:25:49.000Z" - }, - "end": { - "$date": "2021-09-11T22:51:16.000Z" - }, - "events": [ - { - "uuid": "4a5d442e-24fd-4ff1-9598-03809e8d15ca", - "start": { - "$date": "2021-09-11T20:25:49.000Z" - }, - "end": { - "$date": "2021-09-11T20:42:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "84ea3d00-71cd-48bb-b7fb-b7d58cfbcdc4", - "start": { - "$date": "2021-09-11T20:42:49.000Z" - }, - "end": { - "$date": "2021-09-11T20:43:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "128dd62d-f5ce-43f6-a4ec-96bf338197f3", - "start": { - "$date": "2021-09-11T20:43:49.000Z" - }, - "end": { - "$date": "2021-09-11T22:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a73aa682-8346-435f-ba04-b7bcbe2a2d08", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-11T20:39:28.000Z" - }, - "end": { - "$date": "2021-09-11T21:26:40.000Z" - }, - "events": [ - { - "uuid": "1755bb23-db62-40b2-a27f-1c24a1dc52fd", - "start": { - "$date": "2021-09-11T20:39:28.000Z" - }, - "end": { - "$date": "2021-09-11T21:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdebf75a-22b5-40f6-bed3-0e106d65e940", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T20:49:34.000Z" - }, - "end": { - "$date": "2021-09-11T21:10:54.000Z" - }, - "events": [ - { - "uuid": "a2dd6c4b-2fce-49bd-9fec-cad943565d72", - "start": { - "$date": "2021-09-11T20:49:34.000Z" - }, - "end": { - "$date": "2021-09-11T21:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8bc2de7c-1511-4080-8ab0-fdc00a61c331", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-11T21:32:57.000Z" - }, - "end": { - "$date": "2021-09-12T00:04:03.000Z" - }, - "events": [ - { - "uuid": "a5bb5bab-e34f-41b4-bc54-bc5857fa5fec", - "start": { - "$date": "2021-09-11T21:32:57.000Z" - }, - "end": { - "$date": "2021-09-11T21:57:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "517b0dbd-c679-498b-964d-0e88fa94c898", - "start": { - "$date": "2021-09-11T21:57:57.000Z" - }, - "end": { - "$date": "2021-09-11T21:59:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c0b67bc-baee-41c4-961f-9b7ec735bc37", - "start": { - "$date": "2021-09-11T21:59:57.000Z" - }, - "end": { - "$date": "2021-09-11T23:01:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af46673f-a323-4ee3-b784-1370856189f6", - "start": { - "$date": "2021-09-11T23:01:57.000Z" - }, - "end": { - "$date": "2021-09-11T23:06:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45c9df1d-9f2c-4c6a-b496-99e5e6076878", - "start": { - "$date": "2021-09-11T23:06:57.000Z" - }, - "end": { - "$date": "2021-09-11T23:16:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7aa5760b-0f32-4f99-bc8e-e1e622fde91d", - "start": { - "$date": "2021-09-11T23:16:57.000Z" - }, - "end": { - "$date": "2021-09-11T23:40:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "71bf0d8e-2f7c-412b-ad2d-f380159958d5", - "start": { - "$date": "2021-09-11T23:40:57.000Z" - }, - "end": { - "$date": "2021-09-12T00:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "75621a7a-1166-4dc7-97fb-aedf3560a1dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T22:01:41.000Z" - }, - "end": { - "$date": "2021-09-11T22:11:01.000Z" - }, - "events": [ - { - "uuid": "85d848f1-2c4d-4749-a5cf-1fdc4405492e", - "start": { - "$date": "2021-09-11T22:01:41.000Z" - }, - "end": { - "$date": "2021-09-11T22:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65c22b4a-d2f2-4c8d-aa23-e44a9951055c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T22:21:12.000Z" - }, - "end": { - "$date": "2021-09-11T22:47:26.000Z" - }, - "events": [ - { - "uuid": "abd582e8-8cdd-4022-98c6-44af9cbd3110", - "start": { - "$date": "2021-09-11T22:21:12.000Z" - }, - "end": { - "$date": "2021-09-11T22:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18233e0d-3be4-456a-aab9-017f51f78367", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-11T22:54:49.000Z" - }, - "end": { - "$date": "2021-09-11T23:15:57.000Z" - }, - "events": [ - { - "uuid": "52bd9411-bf98-4964-b052-354f354d17b7", - "start": { - "$date": "2021-09-11T22:54:49.000Z" - }, - "end": { - "$date": "2021-09-11T23:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f04a5389-d3c7-4c62-adb1-b9741e0e546a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-11T22:51:30.000Z" - }, - "end": { - "$date": "2021-09-11T23:40:36.000Z" - }, - "events": [ - { - "uuid": "2210d61d-b62f-4d28-a4aa-26f81266b048", - "start": { - "$date": "2021-09-11T22:51:30.000Z" - }, - "end": { - "$date": "2021-09-11T23:40:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6b37f054-4789-4dba-95bc-859291fc8c7f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-11T23:48:41.000Z" - }, - "end": { - "$date": "2021-09-12T00:43:42.000Z" - }, - "events": [ - { - "uuid": "707d7f8b-ace7-4d82-867a-0d9354c57a26", - "start": { - "$date": "2021-09-11T23:48:41.000Z" - }, - "end": { - "$date": "2021-09-12T00:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f1657ad1-537b-4ef4-a866-68957d069e78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-12T00:04:23.000Z" - }, - "end": { - "$date": "2021-09-12T07:02:25.000Z" - }, - "events": [ - { - "uuid": "5a0c9ffc-8926-405d-a3b6-31efe311a390", - "start": { - "$date": "2021-09-12T00:04:23.000Z" - }, - "end": { - "$date": "2021-09-12T07:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f125bc08-5936-4053-a711-fdf3c45b278d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T01:42:54.000Z" - }, - "end": { - "$date": "2021-09-12T01:43:24.000Z" - }, - "events": [ - { - "uuid": "4330b80d-36e1-443f-b144-ec3f14d4776f", - "start": { - "$date": "2021-09-12T01:42:54.000Z" - }, - "end": { - "$date": "2021-09-12T01:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "1a883a11-bffa-47be-89d6-27f25dc3218b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T01:29:18.000Z" - }, - "end": { - "$date": "2021-09-12T02:17:24.000Z" - }, - "events": [ - { - "uuid": "a053cad5-4186-47cd-88d6-8564300c9822", - "start": { - "$date": "2021-09-12T01:29:18.000Z" - }, - "end": { - "$date": "2021-09-12T02:17:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "cb7d25cf-0b87-4810-b661-aacd5211aae1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-12T01:53:41.000Z" - }, - "end": { - "$date": "2021-09-12T02:16:17.000Z" - }, - "events": [ - { - "uuid": "b73b0b3a-a090-4c5a-9771-eca28fc7e49f", - "start": { - "$date": "2021-09-12T01:53:41.000Z" - }, - "end": { - "$date": "2021-09-12T02:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e7972949-80b0-4ba6-8375-9964c7003c7a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T02:56:30.000Z" - }, - "end": { - "$date": "2021-09-12T03:02:21.000Z" - }, - "events": [ - { - "uuid": "9ed772c7-1a8d-43f8-bf71-2fd0b72a0acd", - "start": { - "$date": "2021-09-12T02:56:30.000Z" - }, - "end": { - "$date": "2021-09-12T03:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4e0d3c97-05df-4726-9852-320d30e9f1d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T03:50:52.000Z" - }, - "end": { - "$date": "2021-09-12T04:54:13.000Z" - }, - "events": [ - { - "uuid": "d42351e4-742a-4264-900e-0a7ec429728b", - "start": { - "$date": "2021-09-12T03:50:52.000Z" - }, - "end": { - "$date": "2021-09-12T04:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72aebb10-7ff0-4348-a7d0-6123bfcf9aa5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T03:21:24.000Z" - }, - "end": { - "$date": "2021-09-12T03:36:44.000Z" - }, - "events": [ - { - "uuid": "2a0ecddd-c1b6-4dab-8a6a-7a5a54ad09ff", - "start": { - "$date": "2021-09-12T03:21:24.000Z" - }, - "end": { - "$date": "2021-09-12T03:36:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "c7779621-ca40-4264-b2b0-baaca27ac8ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-12T03:35:51.000Z" - }, - "end": { - "$date": "2021-09-12T03:59:56.000Z" - }, - "events": [ - { - "uuid": "8533933a-e23b-4e48-a878-bf5525826d82", - "start": { - "$date": "2021-09-12T03:35:51.000Z" - }, - "end": { - "$date": "2021-09-12T03:59:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cebf687d-7595-4065-924a-c088b1252125", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T04:25:06.000Z" - }, - "end": { - "$date": "2021-09-12T04:29:52.000Z" - }, - "events": [ - { - "uuid": "cff52c27-c51b-43eb-9ae4-549a0117a75d", - "start": { - "$date": "2021-09-12T04:25:06.000Z" - }, - "end": { - "$date": "2021-09-12T04:29:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "02a162e4-0472-4740-8600-cfe8eabe11f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T04:30:06.000Z" - }, - "end": { - "$date": "2021-09-12T05:56:18.000Z" - }, - "events": [ - { - "uuid": "5fbe903b-97cb-442e-bdae-accd7a5edf78", - "start": { - "$date": "2021-09-12T04:30:06.000Z" - }, - "end": { - "$date": "2021-09-12T05:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "685651be-412c-452d-ad46-ea8157b31845", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T04:55:58.000Z" - }, - "end": { - "$date": "2021-09-12T05:56:19.000Z" - }, - "events": [ - { - "uuid": "7c2fa4de-c355-4b03-8d6a-e0ccd16d6a7a", - "start": { - "$date": "2021-09-12T04:55:58.000Z" - }, - "end": { - "$date": "2021-09-12T05:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fe07e8e-a696-4b36-ac7e-1e77c841d890", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-12T05:04:55.000Z" - }, - "end": { - "$date": "2021-09-12T05:26:28.000Z" - }, - "events": [ - { - "uuid": "b8d52315-8485-49c8-9e88-e1ac9cd2553d", - "start": { - "$date": "2021-09-12T05:04:55.000Z" - }, - "end": { - "$date": "2021-09-12T05:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1bfa2cc-2f46-48a2-846c-a5e5edf99003", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-12T06:53:55.000Z" - }, - "end": { - "$date": "2021-09-12T07:00:20.000Z" - }, - "events": [ - { - "uuid": "e2d52464-ab71-4469-bc45-f575435b1a5e", - "start": { - "$date": "2021-09-12T06:53:55.000Z" - }, - "end": { - "$date": "2021-09-12T07:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0d86e9e5-3612-4e14-8e91-892d4e68b6ab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T06:07:29.000Z" - }, - "end": { - "$date": "2021-09-12T06:07:34.000Z" - }, - "events": [ - { - "uuid": "f0d63794-d002-496a-86e0-065019f98fd6", - "start": { - "$date": "2021-09-12T06:07:29.000Z" - }, - "end": { - "$date": "2021-09-12T06:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f1f79cef-146a-48fe-80cb-bf4aa780c48e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T06:19:11.000Z" - }, - "end": { - "$date": "2021-09-12T07:57:11.000Z" - }, - "events": [ - { - "uuid": "497e5377-19db-4436-a029-5018c7c09bc9", - "start": { - "$date": "2021-09-12T06:19:11.000Z" - }, - "end": { - "$date": "2021-09-12T07:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9ebfd34-4b04-481b-842a-c80c80b47405", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-12T07:06:46.000Z" - }, - "end": { - "$date": "2021-09-12T07:19:52.000Z" - }, - "events": [ - { - "uuid": "2b0f99ec-205a-4062-a6ad-8ea16bf1b575", - "start": { - "$date": "2021-09-12T07:06:46.000Z" - }, - "end": { - "$date": "2021-09-12T07:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39966aa6-4ef4-48d7-8c4c-12ae2482f0a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-12T07:33:53.000Z" - }, - "end": { - "$date": "2021-09-12T08:07:04.000Z" - }, - "events": [ - { - "uuid": "2f933126-2fa2-4ad7-8c11-c28116b33893", - "start": { - "$date": "2021-09-12T07:33:53.000Z" - }, - "end": { - "$date": "2021-09-12T08:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b6e1a82-efca-4860-a6f4-d7ddc42f716b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-12T08:12:54.000Z" - }, - "end": { - "$date": "2021-09-12T08:33:15.000Z" - }, - "events": [ - { - "uuid": "f8bfe187-7097-4b79-8249-6e03f355790e", - "start": { - "$date": "2021-09-12T08:12:54.000Z" - }, - "end": { - "$date": "2021-09-12T08:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76e23b41-2e9b-4783-9158-22cd5117e86f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-12T08:34:40.000Z" - }, - "end": { - "$date": "2021-09-12T08:36:51.000Z" - }, - "events": [ - { - "uuid": "3eec854c-6edf-4a84-bd41-efc077093e2c", - "start": { - "$date": "2021-09-12T08:34:40.000Z" - }, - "end": { - "$date": "2021-09-12T08:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed6a411a-cd92-48f7-b51a-cf0804770fae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T15:36:33.000Z" - }, - "end": { - "$date": "2021-09-12T18:33:49.000Z" - }, - "events": [ - { - "uuid": "1800408b-344c-42a7-ad87-324be8724fee", - "start": { - "$date": "2021-09-12T15:36:33.000Z" - }, - "end": { - "$date": "2021-09-12T17:26:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a019417-3fd9-4b96-8c5e-ac9dfd980de2", - "start": { - "$date": "2021-09-12T17:26:33.000Z" - }, - "end": { - "$date": "2021-09-12T17:28:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ab4ca09b-fbf9-47c5-8c23-41cbf7041b24", - "start": { - "$date": "2021-09-12T17:28:33.000Z" - }, - "end": { - "$date": "2021-09-12T18:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faf16f95-8ba4-4310-9ddf-636550333024", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T15:57:45.000Z" - }, - "end": { - "$date": "2021-09-12T16:27:55.000Z" - }, - "events": [ - { - "uuid": "02dbec5e-e65f-4414-9f0c-143422c2e2e0", - "start": { - "$date": "2021-09-12T15:57:45.000Z" - }, - "end": { - "$date": "2021-09-12T16:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "769fde84-eccb-49e6-91a9-e05937456228", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T16:46:21.000Z" - }, - "end": { - "$date": "2021-09-12T17:16:41.000Z" - }, - "events": [ - { - "uuid": "cc360278-39a7-4edc-8b3c-2c45b279bc91", - "start": { - "$date": "2021-09-12T16:46:21.000Z" - }, - "end": { - "$date": "2021-09-12T17:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "a48d0b98-3167-4250-94ae-eee2401c7af5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-12T17:07:46.000Z" - }, - "end": { - "$date": "2021-09-12T18:09:23.000Z" - }, - "events": [ - { - "uuid": "19ab04f8-1a27-4489-8d60-27493329b031", - "start": { - "$date": "2021-09-12T17:07:46.000Z" - }, - "end": { - "$date": "2021-09-12T18:09:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02045d79-7556-45e7-b988-69677ad4b45a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T18:04:40.000Z" - }, - "end": { - "$date": "2021-09-12T18:30:50.000Z" - }, - "events": [ - { - "uuid": "928d4cb3-0805-4de3-92a6-f31f598044e4", - "start": { - "$date": "2021-09-12T18:04:40.000Z" - }, - "end": { - "$date": "2021-09-12T18:30:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e6f411c2-06f5-4df5-8eb1-7e92be035458", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T17:23:46.000Z" - }, - "end": { - "$date": "2021-09-12T18:31:19.000Z" - }, - "events": [ - { - "uuid": "67603961-744f-401d-b4bf-44024cd7945d", - "start": { - "$date": "2021-09-12T17:23:46.000Z" - }, - "end": { - "$date": "2021-09-12T18:13:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5801cab3-1bad-4492-96f5-e07d06523c74", - "start": { - "$date": "2021-09-12T18:13:46.000Z" - }, - "end": { - "$date": "2021-09-12T18:22:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eef689f5-3ca4-4b3e-8f41-a06ddd10aca6", - "start": { - "$date": "2021-09-12T18:22:46.000Z" - }, - "end": { - "$date": "2021-09-12T18:31:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9a374534-e8e8-4fb5-af1c-b46e1744a5f5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-12T17:32:30.000Z" - }, - "end": { - "$date": "2021-09-12T17:38:45.000Z" - }, - "events": [ - { - "uuid": "71f54d4c-9c2a-4e46-a645-5540db5a65c3", - "start": { - "$date": "2021-09-12T17:32:30.000Z" - }, - "end": { - "$date": "2021-09-12T17:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5f5573f-0a5c-44da-8aa6-b33e84937c39", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T18:35:10.000Z" - }, - "end": { - "$date": "2021-09-12T18:38:35.000Z" - }, - "events": [ - { - "uuid": "36227746-e795-4218-9f9c-fcd9f99db7e9", - "start": { - "$date": "2021-09-12T18:35:10.000Z" - }, - "end": { - "$date": "2021-09-12T18:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6284bddd-1f92-4daf-9cf3-200fc1c665f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T18:42:01.000Z" - }, - "end": { - "$date": "2021-09-12T19:14:10.000Z" - }, - "events": [ - { - "uuid": "eccd4e04-c3dc-4aaa-bd01-170beaeb4944", - "start": { - "$date": "2021-09-12T18:42:01.000Z" - }, - "end": { - "$date": "2021-09-12T19:14:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "57f111d6-6060-4a1f-a4a6-879ad505cc95", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T21:00:39.000Z" - }, - "end": { - "$date": "2021-09-12T23:02:30.000Z" - }, - "events": [ - { - "uuid": "9786c884-bed1-48a1-b296-78ad78517709", - "start": { - "$date": "2021-09-12T21:00:39.000Z" - }, - "end": { - "$date": "2021-09-13T00:36:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d96a6166-da6e-493b-8ce5-a9662ba8277a", - "start": { - "$date": "2021-09-13T00:36:39.000Z" - }, - "end": { - "$date": "2021-09-12T23:02:30.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ea5b0d81-5c47-4945-8b92-15ffcafae5f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T19:36:00.000Z" - }, - "end": { - "$date": "2021-09-12T20:33:02.000Z" - }, - "events": [ - { - "uuid": "79a75131-5ba7-4523-b749-099fbb6131d3", - "start": { - "$date": "2021-09-12T19:36:00.000Z" - }, - "end": { - "$date": "2021-09-12T20:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9f337d1e-c4e7-4bfb-9b18-e130a1ed8a24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-12T19:37:12.000Z" - }, - "end": { - "$date": "2021-09-12T19:42:48.000Z" - }, - "events": [ - { - "uuid": "52f5e8f5-2f94-4b49-aaed-4014828a75e2", - "start": { - "$date": "2021-09-12T19:37:12.000Z" - }, - "end": { - "$date": "2021-09-12T19:42:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6da6424-1360-4841-98fe-493b7d179b89", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T20:21:03.000Z" - }, - "end": { - "$date": "2021-09-12T20:49:33.000Z" - }, - "events": [ - { - "uuid": "72fee553-0b27-4356-8bc2-94093c87e09e", - "start": { - "$date": "2021-09-12T20:21:03.000Z" - }, - "end": { - "$date": "2021-09-12T20:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "09a903e1-d71a-4075-b308-b4b5d2efd938", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T20:36:23.000Z" - }, - "end": { - "$date": "2021-09-12T21:00:33.000Z" - }, - "events": [ - { - "uuid": "c3709321-29b2-4475-80c3-bab021598849", - "start": { - "$date": "2021-09-12T20:36:23.000Z" - }, - "end": { - "$date": "2021-09-12T21:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "2104c325-73ce-4f38-bf22-5021ceea61d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-12T20:51:44.000Z" - }, - "end": { - "$date": "2021-09-12T22:19:10.000Z" - }, - "events": [ - { - "uuid": "efde7d26-250c-4e4f-8520-39395ba24626", - "start": { - "$date": "2021-09-12T20:51:44.000Z" - }, - "end": { - "$date": "2021-09-12T22:19:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ceb141f3-74ae-49ff-a055-0bdbb951fb20", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T21:01:14.000Z" - }, - "end": { - "$date": "2021-09-12T21:58:23.000Z" - }, - "events": [ - { - "uuid": "a8b21eab-c618-4d02-be5c-52149e8d9c06", - "start": { - "$date": "2021-09-12T21:01:14.000Z" - }, - "end": { - "$date": "2021-09-12T21:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "86da2683-4e17-49c0-8a80-70aec8e86b1d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-12T21:03:26.000Z" - }, - "end": { - "$date": "2021-09-12T21:16:26.000Z" - }, - "events": [ - { - "uuid": "eacd4527-8e39-4270-b94d-6fff16f833f9", - "start": { - "$date": "2021-09-12T21:03:26.000Z" - }, - "end": { - "$date": "2021-09-12T21:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8c4dd8b0-4e13-4aff-b11a-477665fedac4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-12T21:33:10.000Z" - }, - "end": { - "$date": "2021-09-12T22:19:13.000Z" - }, - "events": [ - { - "uuid": "8b5f7114-51bd-44ad-b182-b449bfcc1fb3", - "start": { - "$date": "2021-09-12T21:33:10.000Z" - }, - "end": { - "$date": "2021-09-12T22:19:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fca3303d-f0be-46ed-83d2-23388edf6d13", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-12T22:03:45.000Z" - }, - "end": { - "$date": "2021-09-12T22:11:41.000Z" - }, - "events": [ - { - "uuid": "f02e9920-ef7c-4786-9f3d-d66bebd057c5", - "start": { - "$date": "2021-09-12T22:03:45.000Z" - }, - "end": { - "$date": "2021-09-12T22:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2a81feea-45de-4153-af4a-d40b87580f0e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-12T23:06:17.000Z" - }, - "end": { - "$date": "2021-09-12T23:27:13.000Z" - }, - "events": [ - { - "uuid": "bb0b28c5-f9ed-43c2-b84b-cec6480a6644", - "start": { - "$date": "2021-09-12T23:06:17.000Z" - }, - "end": { - "$date": "2021-09-12T23:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e8cc2fa9-7a0e-4f37-9b12-5d0239a6ff56", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-12T23:17:21.000Z" - }, - "end": { - "$date": "2021-09-13T00:47:39.000Z" - }, - "events": [ - { - "uuid": "f42c8552-2e38-4947-84f0-32a685f5f19f", - "start": { - "$date": "2021-09-12T23:17:21.000Z" - }, - "end": { - "$date": "2021-09-13T00:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec016105-107d-4ad4-8ed6-ab69a81af8f4", - "uuid": "8f83b226-5d0a-418f-a937-f6251f3520dd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-12T23:23:41.000Z" - }, - "end": { - "$date": "2021-09-13T06:33:35.000Z" - }, - "events": [ - { - "uuid": "f955fac5-9cd5-4360-837d-21c189b80616", - "start": { - "$date": "2021-09-12T23:23:41.000Z" - }, - "end": { - "$date": "2021-09-13T06:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bd3c7fbf-8ac9-4db5-a3aa-24e6b14e7d1e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-12T23:41:02.000Z" - }, - "end": { - "$date": "2021-09-13T00:31:07.000Z" - }, - "events": [ - { - "uuid": "221a989d-794c-4390-8b70-38b184cae88c", - "start": { - "$date": "2021-09-12T23:41:02.000Z" - }, - "end": { - "$date": "2021-09-13T00:10:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1cbe7f6-a555-4922-b9b3-ed625796e722", - "start": { - "$date": "2021-09-13T00:10:02.000Z" - }, - "end": { - "$date": "2021-09-13T00:15:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8742a0d8-1992-45f1-a0be-ae29126d6971", - "start": { - "$date": "2021-09-13T00:15:02.000Z" - }, - "end": { - "$date": "2021-09-13T00:25:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "038f0d80-2fae-4423-8475-93f51c8aa4b1", - "start": { - "$date": "2021-09-13T00:25:02.000Z" - }, - "end": { - "$date": "2021-09-13T00:31:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "db562bce-f06e-4d13-b400-34bf7c8d5ff0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-13T00:04:19.000Z" - }, - "end": { - "$date": "2021-09-13T01:46:06.000Z" - }, - "events": [ - { - "uuid": "1a98f31c-de72-4380-a77e-4961ac233519", - "start": { - "$date": "2021-09-13T00:04:19.000Z" - }, - "end": { - "$date": "2021-09-13T01:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "6d3c6c28-7905-4554-af20-b83b7ecc74a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-13T01:00:24.000Z" - }, - "end": { - "$date": "2021-09-13T01:00:29.000Z" - }, - "events": [ - { - "uuid": "2214b0b8-b9f5-4614-b9a8-98627ad576a7", - "start": { - "$date": "2021-09-13T01:00:24.000Z" - }, - "end": { - "$date": "2021-09-13T01:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cff777fb-b589-4fc2-a8c2-b7a06af633d7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T00:53:22.000Z" - }, - "end": { - "$date": "2021-09-13T01:12:57.000Z" - }, - "events": [ - { - "uuid": "9b401140-e1c0-433b-9754-92ab23fe8d29", - "start": { - "$date": "2021-09-13T00:53:22.000Z" - }, - "end": { - "$date": "2021-09-13T01:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "166b438c-6b68-4c67-9fde-273cd4b5d25e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-13T01:05:01.000Z" - }, - "end": { - "$date": "2021-09-13T02:10:28.000Z" - }, - "events": [ - { - "uuid": "f819549e-c5fa-4d0d-83e6-fd60eee57a44", - "start": { - "$date": "2021-09-13T01:05:01.000Z" - }, - "end": { - "$date": "2021-09-13T02:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7c677d5c-ec78-4920-aa02-b3b03a5708e9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-13T01:12:41.000Z" - }, - "end": { - "$date": "2021-09-13T02:47:04.000Z" - }, - "events": [ - { - "uuid": "4aefa53a-0921-4fa6-808b-6ebde9a91a35", - "start": { - "$date": "2021-09-13T01:12:41.000Z" - }, - "end": { - "$date": "2021-09-13T02:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75fded8c-fe26-4797-97c2-6516903b10d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T01:50:43.000Z" - }, - "end": { - "$date": "2021-09-13T02:21:08.000Z" - }, - "events": [ - { - "uuid": "38407a40-9b52-42ff-93fc-bc61df9d2665", - "start": { - "$date": "2021-09-13T01:50:43.000Z" - }, - "end": { - "$date": "2021-09-13T02:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "26317eb1-b583-435a-a2ab-64d7a9399781", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-13T02:04:55.000Z" - }, - "end": { - "$date": "2021-09-13T03:10:28.000Z" - }, - "events": [ - { - "uuid": "35bd960a-495e-4240-b9f9-46dbea373896", - "start": { - "$date": "2021-09-13T02:04:55.000Z" - }, - "end": { - "$date": "2021-09-13T03:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3bda07d6-7baa-4833-b742-2ed3f84fbdfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-13T02:11:04.000Z" - }, - "end": { - "$date": "2021-09-13T08:48:40.000Z" - }, - "events": [ - { - "uuid": "3caa1e1f-0d6d-4a84-b451-c212113980ca", - "start": { - "$date": "2021-09-13T02:11:04.000Z" - }, - "end": { - "$date": "2021-09-13T07:58:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7353f9ea-5cea-462d-bb09-65220f4103b1", - "start": { - "$date": "2021-09-13T07:58:04.000Z" - }, - "end": { - "$date": "2021-09-13T08:00:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e54f152-103c-4661-820a-d3011d1b6140", - "start": { - "$date": "2021-09-13T08:00:04.000Z" - }, - "end": { - "$date": "2021-09-13T08:48:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "717a8e40-d94a-4f80-ac3b-7f657a99e3ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T02:31:59.000Z" - }, - "end": { - "$date": "2021-09-13T03:12:34.000Z" - }, - "events": [ - { - "uuid": "8a837c74-4612-49b6-ae02-50ac81659c08", - "start": { - "$date": "2021-09-13T02:31:59.000Z" - }, - "end": { - "$date": "2021-09-13T03:12:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "46bb87b7-144d-4a36-9314-38456c1aca0c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-13T02:47:29.000Z" - }, - "end": { - "$date": "2021-09-13T05:28:55.000Z" - }, - "events": [ - { - "uuid": "3e379135-6aea-42c2-a385-ed10360650d2", - "start": { - "$date": "2021-09-13T02:47:29.000Z" - }, - "end": { - "$date": "2021-09-13T05:28:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6da73eb-fff1-423f-8bb7-aca41e7a8669", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T03:18:15.000Z" - }, - "end": { - "$date": "2021-09-13T03:44:49.000Z" - }, - "events": [ - { - "uuid": "989e976f-93f5-41fa-b694-d3d3a77c544a", - "start": { - "$date": "2021-09-13T03:18:15.000Z" - }, - "end": { - "$date": "2021-09-13T03:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8ff5f48a-0b98-4aea-b8fd-88012dc7954f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-13T04:01:44.000Z" - }, - "end": { - "$date": "2021-09-13T04:08:30.000Z" - }, - "events": [ - { - "uuid": "1cd45875-f340-47d0-8173-63807c064929", - "start": { - "$date": "2021-09-13T04:01:44.000Z" - }, - "end": { - "$date": "2021-09-13T04:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b650ff34-ddb2-413f-999f-9a3f6b4fa593", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-13T04:10:35.000Z" - }, - "end": { - "$date": "2021-09-13T05:30:47.000Z" - }, - "events": [ - { - "uuid": "a063d34b-7b56-443d-86e7-e360977d2d38", - "start": { - "$date": "2021-09-13T04:10:35.000Z" - }, - "end": { - "$date": "2021-09-13T05:30:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ce468f5-ec71-4184-8085-56aa17362848", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-13T04:19:55.000Z" - }, - "end": { - "$date": "2021-09-13T04:50:56.000Z" - }, - "events": [ - { - "uuid": "4b4fbe8d-80b1-41cb-a365-ffd196a76f1f", - "start": { - "$date": "2021-09-13T04:19:55.000Z" - }, - "end": { - "$date": "2021-09-13T04:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "286cc158-831a-4167-af88-e38f5aa0ff35", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-13T05:02:06.000Z" - }, - "end": { - "$date": "2021-09-13T05:17:52.000Z" - }, - "events": [ - { - "uuid": "fe329e4a-b4db-4b36-a844-40c50896f57b", - "start": { - "$date": "2021-09-13T05:02:06.000Z" - }, - "end": { - "$date": "2021-09-13T05:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62a828bc-0793-4b3d-a40b-634866142ddf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-13T05:26:28.000Z" - }, - "end": { - "$date": "2021-09-13T05:48:43.000Z" - }, - "events": [ - { - "uuid": "41c407c1-7191-4a7a-8301-5bead567b889", - "start": { - "$date": "2021-09-13T05:26:28.000Z" - }, - "end": { - "$date": "2021-09-13T05:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec016105-107d-4ad4-8ed6-ab69a81af8f4", - "uuid": "7413f12b-47f4-492e-b465-336cdbf9604e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-13T07:11:19.000Z" - }, - "end": { - "$date": "2021-09-13T09:25:43.000Z" - }, - "events": [ - { - "uuid": "d47cb9cb-2998-4119-8f44-bdaee82968db", - "start": { - "$date": "2021-09-13T07:11:19.000Z" - }, - "end": { - "$date": "2021-09-13T09:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d4776c36-2fff-4066-a9c3-0a0146721809", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-13T08:50:56.000Z" - }, - "end": { - "$date": "2021-09-13T09:33:44.000Z" - }, - "events": [ - { - "uuid": "14ed0b21-381b-4a44-bd34-68f31d27a7fa", - "start": { - "$date": "2021-09-13T08:50:56.000Z" - }, - "end": { - "$date": "2021-09-13T09:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "ada69b25-e589-46e5-95c7-47cb8d477c76", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-13T12:46:37.000Z" - }, - "end": { - "$date": "2021-09-13T13:17:08.000Z" - }, - "events": [ - { - "uuid": "0fbb51d9-228e-4179-b4a7-945b93292d08", - "start": { - "$date": "2021-09-13T12:46:37.000Z" - }, - "end": { - "$date": "2021-09-13T13:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8fe755d6-0f6a-44d0-8cb8-ab4d6f348112", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-13T13:49:42.000Z" - }, - "end": { - "$date": "2021-09-13T17:34:04.000Z" - }, - "events": [ - { - "uuid": "24e23b51-ba64-4c6b-8203-8cfa8981a0bf", - "start": { - "$date": "2021-09-13T13:49:42.000Z" - }, - "end": { - "$date": "2021-09-13T17:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e1811e4-9187-426c-980f-fe638cd02624", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T14:45:04.000Z" - }, - "end": { - "$date": "2021-09-13T15:03:33.000Z" - }, - "events": [ - { - "uuid": "a2788b21-47a6-40d8-b93f-7d70cebd5142", - "start": { - "$date": "2021-09-13T14:45:04.000Z" - }, - "end": { - "$date": "2021-09-13T15:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "45191faa-c716-49c8-93aa-79bcc14cc002", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-13T15:55:47.000Z" - }, - "end": { - "$date": "2021-09-13T17:10:03.000Z" - }, - "events": [ - { - "uuid": "81c44b16-fc47-4eba-990b-6d625e80d3a3", - "start": { - "$date": "2021-09-13T15:55:47.000Z" - }, - "end": { - "$date": "2021-09-13T17:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "69124542-748c-445e-81b2-2f5797451e72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-13T16:02:11.000Z" - }, - "end": { - "$date": "2021-09-13T16:07:28.000Z" - }, - "events": [ - { - "uuid": "7f9e4449-9178-46e6-9a21-a93732ce2d01", - "start": { - "$date": "2021-09-13T16:02:11.000Z" - }, - "end": { - "$date": "2021-09-13T16:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1003a6da-cc49-4e3b-8f1d-b42d26120cae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-13T16:15:48.000Z" - }, - "end": { - "$date": "2021-09-13T16:23:19.000Z" - }, - "events": [ - { - "uuid": "ea6e171d-bf56-4e73-ad0e-40f7a24fee3e", - "start": { - "$date": "2021-09-13T16:15:48.000Z" - }, - "end": { - "$date": "2021-09-13T16:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "712641ee-17f3-4a4b-82e5-1e4d696e7a9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T16:40:09.000Z" - }, - "end": { - "$date": "2021-09-13T17:11:08.000Z" - }, - "events": [ - { - "uuid": "abbbd2f1-852f-4c55-8e22-0d144c4b9f13", - "start": { - "$date": "2021-09-13T16:40:09.000Z" - }, - "end": { - "$date": "2021-09-13T17:11:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "904ced18-c783-4f34-8c88-b040b3aa26c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T17:11:36.000Z" - }, - "end": { - "$date": "2021-09-13T17:15:18.000Z" - }, - "events": [ - { - "uuid": "4844ff06-692d-4fef-9021-dbfda4669d44", - "start": { - "$date": "2021-09-13T17:11:36.000Z" - }, - "end": { - "$date": "2021-09-13T17:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "46969448-7478-4691-a1dc-46f336af097b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T18:56:17.000Z" - }, - "end": { - "$date": "2021-09-13T19:12:57.000Z" - }, - "events": [ - { - "uuid": "b4b8eac9-702e-4969-adf3-b24efd2e8e49", - "start": { - "$date": "2021-09-13T18:56:17.000Z" - }, - "end": { - "$date": "2021-09-13T19:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ca75b49-c262-4891-a5e4-a41052e3bd5f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-13T21:04:04.000Z" - }, - "end": { - "$date": "2021-09-13T21:56:19.000Z" - }, - "events": [ - { - "uuid": "d334fdc8-6aaf-4a75-bcc3-d5b3a9eabd7e", - "start": { - "$date": "2021-09-13T21:04:04.000Z" - }, - "end": { - "$date": "2021-09-13T21:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c78a15f-c988-43d3-841c-484e9cbfbe7d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-13T22:41:14.000Z" - }, - "end": { - "$date": "2021-09-14T03:35:09.000Z" - }, - "events": [ - { - "uuid": "894725e6-6b9e-4c3b-9b6c-4ba3b24920cc", - "start": { - "$date": "2021-09-13T22:41:14.000Z" - }, - "end": { - "$date": "2021-09-14T01:20:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d10d850f-19af-4954-a48c-efbce76e8e7e", - "start": { - "$date": "2021-09-14T01:20:14.000Z" - }, - "end": { - "$date": "2021-09-14T01:27:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be44ed5d-a678-4816-af85-de70fa7e5955", - "start": { - "$date": "2021-09-14T01:27:14.000Z" - }, - "end": { - "$date": "2021-09-14T01:38:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd8f9005-bab0-486b-a72b-f50e9d0d78ef", - "start": { - "$date": "2021-09-14T01:38:14.000Z" - }, - "end": { - "$date": "2021-09-14T01:41:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15c2579f-f7f0-4b23-bd77-6a2c359216eb", - "start": { - "$date": "2021-09-14T01:41:14.000Z" - }, - "end": { - "$date": "2021-09-14T03:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "72294be9-e90c-4d12-bbdd-a49b96a9028a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-13T22:58:43.000Z" - }, - "end": { - "$date": "2021-09-13T23:31:48.000Z" - }, - "events": [ - { - "uuid": "8f0c2d8d-2c09-4a0e-8dbf-d6875427095a", - "start": { - "$date": "2021-09-13T22:58:43.000Z" - }, - "end": { - "$date": "2021-09-13T23:31:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4e96ad5f-b314-49a3-9548-5118c9edd49b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-13T23:09:43.000Z" - }, - "end": { - "$date": "2021-09-13T23:11:59.000Z" - }, - "events": [ - { - "uuid": "325b665f-a169-4db6-a6e8-cb5a40a31a5d", - "start": { - "$date": "2021-09-13T23:09:43.000Z" - }, - "end": { - "$date": "2021-09-13T23:11:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "59b74a29-0407-4f67-90dc-da39fb3e6412", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-14T00:17:42.000Z" - }, - "end": { - "$date": "2021-09-14T00:56:13.000Z" - }, - "events": [ - { - "uuid": "6e42a6d9-8fae-4cfe-86eb-b8541780c0dc", - "start": { - "$date": "2021-09-14T00:17:42.000Z" - }, - "end": { - "$date": "2021-09-14T00:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed3bcb02-fb5c-4d48-965a-52bc3c6cc31c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T00:25:43.000Z" - }, - "end": { - "$date": "2021-09-14T00:54:17.000Z" - }, - "events": [ - { - "uuid": "3b2b1464-b8c2-4d75-8769-8e120ed4c7a4", - "start": { - "$date": "2021-09-14T00:25:43.000Z" - }, - "end": { - "$date": "2021-09-14T00:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1366ebae-59d0-4467-91ed-cf6683878303", - "uuid": "fec63ef4-d7a8-4e8f-963b-dfa2a89bc698", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T00:46:47.000Z" - }, - "end": { - "$date": "2021-09-14T00:48:17.000Z" - }, - "events": [ - { - "uuid": "c16f8fad-e3d4-453d-98fd-e9bb4446bf1f", - "start": { - "$date": "2021-09-14T00:46:47.000Z" - }, - "end": { - "$date": "2021-09-14T00:48:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d135e9e-75b9-42c2-a76c-57fbb08dd6d0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T01:03:39.000Z" - }, - "end": { - "$date": "2021-09-14T01:39:18.000Z" - }, - "events": [ - { - "uuid": "cbbe9b39-c836-4771-96ce-60329324e0d1", - "start": { - "$date": "2021-09-14T01:03:39.000Z" - }, - "end": { - "$date": "2021-09-14T01:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "f2ce6cc3-a5a6-4161-ad20-0071534aabfa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T01:00:40.000Z" - }, - "end": { - "$date": "2021-09-14T01:02:05.000Z" - }, - "events": [ - { - "uuid": "0924922f-5a7b-420b-a52d-6234aa9681f1", - "start": { - "$date": "2021-09-14T01:00:40.000Z" - }, - "end": { - "$date": "2021-09-14T01:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "7a7bb2bd-aa9b-4e2c-a248-ed5612249565", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T01:02:30.000Z" - }, - "end": { - "$date": "2021-09-14T01:03:56.000Z" - }, - "events": [ - { - "uuid": "cf719c4d-3fec-44f8-9953-2a2e289659b8", - "start": { - "$date": "2021-09-14T01:02:30.000Z" - }, - "end": { - "$date": "2021-09-14T01:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8e9c930-83ce-4413-a1ee-50163ec45174", - "uuid": "69cee535-78ff-4048-a75a-659abae70d9f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T01:07:11.000Z" - }, - "end": { - "$date": "2021-09-14T01:33:01.000Z" - }, - "events": [ - { - "uuid": "bcc0beb6-17fa-4074-84ec-f9da6b492bad", - "start": { - "$date": "2021-09-14T01:07:11.000Z" - }, - "end": { - "$date": "2021-09-14T01:33:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "014d4575-20d5-44e9-80c2-6665e8dfb73f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-14T01:44:22.000Z" - }, - "end": { - "$date": "2021-09-14T03:51:29.000Z" - }, - "events": [ - { - "uuid": "aacf7fdd-9f04-49d1-8c2f-a12ba7c5a338", - "start": { - "$date": "2021-09-14T01:44:22.000Z" - }, - "end": { - "$date": "2021-09-14T03:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e9a3510-a4f3-4401-8ca2-1d84be416d73", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T02:23:42.000Z" - }, - "end": { - "$date": "2021-09-14T02:45:56.000Z" - }, - "events": [ - { - "uuid": "828b3cb8-68f7-4d01-8a0f-fa53dac4128e", - "start": { - "$date": "2021-09-14T02:23:42.000Z" - }, - "end": { - "$date": "2021-09-14T02:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "467e8196-8b99-4815-a3e1-ffd5a7a7cfb6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T02:23:56.000Z" - }, - "end": { - "$date": "2021-09-14T02:45:58.000Z" - }, - "events": [ - { - "uuid": "a14d8338-4d49-4cfe-ae21-fdacd134b464", - "start": { - "$date": "2021-09-14T02:23:56.000Z" - }, - "end": { - "$date": "2021-09-14T02:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c14e3c8-8cfa-4231-8789-7adb6e062507", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-14T02:22:39.000Z" - }, - "end": { - "$date": "2021-09-14T02:46:03.000Z" - }, - "events": [ - { - "uuid": "dccc336c-6723-43f4-9a95-664c161856df", - "start": { - "$date": "2021-09-14T02:22:39.000Z" - }, - "end": { - "$date": "2021-09-14T02:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abe46840-44ca-466e-b27b-9834fb31a932", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T02:49:47.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:46.000Z" - }, - "events": [ - { - "uuid": "370fb1e7-867d-4940-a1ff-c4cde5bb4937", - "start": { - "$date": "2021-09-14T02:49:47.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a918bff-be6e-4166-afa4-16ffdfaa718c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-14T02:49:45.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:48.000Z" - }, - "events": [ - { - "uuid": "471f4080-5f9f-43c2-a0cb-f7eb11a238cd", - "start": { - "$date": "2021-09-14T02:49:45.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5e3a8d5-8aca-48e4-8bce-7ad80091ff1e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T02:49:53.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:51.000Z" - }, - "events": [ - { - "uuid": "a76f3f68-e370-49be-a5bb-9919f5382a60", - "start": { - "$date": "2021-09-14T02:49:53.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fbf2ed6-6a26-4846-a7cf-91b090475026", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-14T02:49:48.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:43.000Z" - }, - "events": [ - { - "uuid": "eb76e3db-9ffa-4f43-ab87-967e9984643c", - "start": { - "$date": "2021-09-14T02:49:48.000Z" - }, - "end": { - "$date": "2021-09-14T03:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8adf0e67-4526-4c2b-8b16-a90c84502a10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T03:28:32.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:32.000Z" - }, - "events": [ - { - "uuid": "208e3add-d9f6-4979-aeb4-7f8286d5bb44", - "start": { - "$date": "2021-09-14T03:28:32.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e855b814-90ac-4640-82b8-8adfeb0d7444", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-14T03:29:06.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:44.000Z" - }, - "events": [ - { - "uuid": "f6c77058-5cbf-4c90-b284-54e750cf5730", - "start": { - "$date": "2021-09-14T03:29:06.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a407a733-52b2-4449-b558-8247f8913e6f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-14T03:28:34.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:29.000Z" - }, - "events": [ - { - "uuid": "c26e8f7b-3314-4c55-b5c5-9270f23a560b", - "start": { - "$date": "2021-09-14T03:28:34.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "252670d2-584c-493e-876a-dee58cbcebc2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T03:29:04.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:33.000Z" - }, - "events": [ - { - "uuid": "091bb20c-0591-4ff4-82d6-6a28cc903d0c", - "start": { - "$date": "2021-09-14T03:29:04.000Z" - }, - "end": { - "$date": "2021-09-14T04:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "863e30f4-22a4-4579-8b44-d8eaf2bb5b23", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-14T03:29:48.000Z" - }, - "end": { - "$date": "2021-09-14T03:41:17.000Z" - }, - "events": [ - { - "uuid": "0903712e-8f4a-494a-84cc-3308e93bea40", - "start": { - "$date": "2021-09-14T03:29:48.000Z" - }, - "end": { - "$date": "2021-09-14T03:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "8e50b0e8-f025-4cad-810e-6b1261b9a37a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-14T03:41:45.000Z" - }, - "end": { - "$date": "2021-09-14T04:03:24.000Z" - }, - "events": [ - { - "uuid": "1fffc9bb-04e0-42d5-854a-5cec46e5a286", - "start": { - "$date": "2021-09-14T03:41:45.000Z" - }, - "end": { - "$date": "2021-09-14T04:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2f0ea0d-f4bb-429b-9310-8df42be108b2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-14T04:05:27.000Z" - }, - "end": { - "$date": "2021-09-14T04:06:58.000Z" - }, - "events": [ - { - "uuid": "6809530d-e4e1-416a-a8de-696b80c14d50", - "start": { - "$date": "2021-09-14T04:05:27.000Z" - }, - "end": { - "$date": "2021-09-14T04:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "50cb35c5-d50c-43e7-aa70-994ecfb55e71", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-14T04:07:02.000Z" - }, - "end": { - "$date": "2021-09-14T05:31:25.000Z" - }, - "events": [ - { - "uuid": "bedf0392-a639-471b-82f3-00f3f0dc971c", - "start": { - "$date": "2021-09-14T04:07:02.000Z" - }, - "end": { - "$date": "2021-09-14T05:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4937e93-f300-4f45-91ce-e35b34030467", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T04:10:06.000Z" - }, - "end": { - "$date": "2021-09-14T04:18:00.000Z" - }, - "events": [ - { - "uuid": "c60a01b7-73ee-427b-8925-93e6cc33cdd4", - "start": { - "$date": "2021-09-14T04:10:06.000Z" - }, - "end": { - "$date": "2021-09-14T04:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e89630c0-0805-4bea-b58c-5501c43931d7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-14T04:16:01.000Z" - }, - "end": { - "$date": "2021-09-14T05:22:24.000Z" - }, - "events": [ - { - "uuid": "c843456c-ebb1-454c-ac90-e17aab8af0dd", - "start": { - "$date": "2021-09-14T04:16:01.000Z" - }, - "end": { - "$date": "2021-09-14T05:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd7b2a10-42c2-4991-8e3a-1f277c469618", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-14T04:15:33.000Z" - }, - "end": { - "$date": "2021-09-14T04:18:15.000Z" - }, - "events": [ - { - "uuid": "6b5effac-c6e8-4724-849a-4b33d094c788", - "start": { - "$date": "2021-09-14T04:15:33.000Z" - }, - "end": { - "$date": "2021-09-14T04:18:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52cf5b5f-9b8b-4e11-ba3b-d857042e6d79", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-14T04:21:03.000Z" - }, - "end": { - "$date": "2021-09-14T04:45:03.000Z" - }, - "events": [ - { - "uuid": "52561eb8-6258-4553-8fac-ab15ad7ba264", - "start": { - "$date": "2021-09-14T04:21:03.000Z" - }, - "end": { - "$date": "2021-09-14T04:45:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e3b4551-b24d-4f15-ae4f-41915db23f13", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-14T04:21:27.000Z" - }, - "end": { - "$date": "2021-09-14T04:44:55.000Z" - }, - "events": [ - { - "uuid": "94359f76-30a3-4829-8e58-03fb643dafa5", - "start": { - "$date": "2021-09-14T04:21:27.000Z" - }, - "end": { - "$date": "2021-09-14T04:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "309a82ec-bda3-4711-a35f-562d8c537515", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-14T04:20:59.000Z" - }, - "end": { - "$date": "2021-09-14T04:45:00.000Z" - }, - "events": [ - { - "uuid": "ae665b4a-e3c1-4d2f-b41f-2164a3d9145d", - "start": { - "$date": "2021-09-14T04:20:59.000Z" - }, - "end": { - "$date": "2021-09-14T04:45:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ab8a0c0-9c21-443a-aa6e-1d9b4daa5f9b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T04:20:59.000Z" - }, - "end": { - "$date": "2021-09-14T04:44:53.000Z" - }, - "events": [ - { - "uuid": "cf9a1a98-e2f9-4e0b-804d-2f3fb06ebe6c", - "start": { - "$date": "2021-09-14T04:20:59.000Z" - }, - "end": { - "$date": "2021-09-14T04:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d02f620a-8d4c-415c-adba-0f982c99866e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T04:21:18.000Z" - }, - "end": { - "$date": "2021-09-14T04:44:59.000Z" - }, - "events": [ - { - "uuid": "d340d76c-028f-447d-9e23-8492d5ab691c", - "start": { - "$date": "2021-09-14T04:21:18.000Z" - }, - "end": { - "$date": "2021-09-14T04:44:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f87cf6b-0764-46d8-bf2f-954684dc6167", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-14T04:37:04.000Z" - }, - "end": { - "$date": "2021-09-14T04:57:29.000Z" - }, - "events": [ - { - "uuid": "5e83022e-a6fa-45fa-81be-6a9bd5380679", - "start": { - "$date": "2021-09-14T04:37:04.000Z" - }, - "end": { - "$date": "2021-09-14T04:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ad063b6-7478-4bc9-9ff2-edac12c009f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-14T04:48:24.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:24.000Z" - }, - "events": [ - { - "uuid": "b42398c5-938c-4f7e-8305-6469e7e028b9", - "start": { - "$date": "2021-09-14T04:48:24.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6eb057c5-bbfc-42d7-8621-a63971d0860a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-14T04:47:55.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:25.000Z" - }, - "events": [ - { - "uuid": "29f9094a-02df-4cd1-bace-c87730c56e8c", - "start": { - "$date": "2021-09-14T04:47:55.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "576a4aad-8d98-4b9a-a487-68cbb76fdeee", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-14T04:48:09.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:26.000Z" - }, - "events": [ - { - "uuid": "8a1617cb-ce5f-4f76-adf3-700f52beaca1", - "start": { - "$date": "2021-09-14T04:48:09.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7ad38f2-3323-438a-a2b5-f9ce425a6d2e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T04:47:54.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:23.000Z" - }, - "events": [ - { - "uuid": "986f3328-af96-43d7-bc47-9b534ca0aba0", - "start": { - "$date": "2021-09-14T04:47:54.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10f29d91-6b35-47bf-954e-1b8436f43bc9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-14T04:48:07.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:26.000Z" - }, - "events": [ - { - "uuid": "dc47166d-e65f-412d-9753-d8c3923d0154", - "start": { - "$date": "2021-09-14T04:48:07.000Z" - }, - "end": { - "$date": "2021-09-14T05:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b82e5323-1d45-41ae-9de6-0cbfa00ae086", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-14T05:03:34.000Z" - }, - "end": { - "$date": "2021-09-14T05:33:39.000Z" - }, - "events": [ - { - "uuid": "5d31610c-2779-48c4-b749-25af46caef18", - "start": { - "$date": "2021-09-14T05:03:34.000Z" - }, - "end": { - "$date": "2021-09-14T05:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "006d8c77-f2ff-4b8a-807c-0ab69ee629f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-14T05:09:55.000Z" - }, - "end": { - "$date": "2021-09-14T06:02:59.000Z" - }, - "events": [ - { - "uuid": "d079d031-84c6-4fb6-b2e8-4df1353ed708", - "start": { - "$date": "2021-09-14T05:09:55.000Z" - }, - "end": { - "$date": "2021-09-14T06:02:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8adc700-a4c1-4fc8-966e-4eea7b1fecc4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-14T05:55:32.000Z" - }, - "end": { - "$date": "2021-09-14T06:23:42.000Z" - }, - "events": [ - { - "uuid": "951e7f89-5e1f-4d83-a8af-88249e0c062e", - "start": { - "$date": "2021-09-14T05:55:32.000Z" - }, - "end": { - "$date": "2021-09-14T06:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "302b14c0-e226-40ae-8080-0d733533e596", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-14T06:10:06.000Z" - }, - "end": { - "$date": "2021-09-14T06:12:44.000Z" - }, - "events": [ - { - "uuid": "3c090f6a-0691-47fd-9fff-1bd478cd5d83", - "start": { - "$date": "2021-09-14T06:10:06.000Z" - }, - "end": { - "$date": "2021-09-14T06:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9a3e3678-de93-4a18-a315-6ebc5f725de6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-14T06:12:53.000Z" - }, - "end": { - "$date": "2021-09-14T06:32:58.000Z" - }, - "events": [ - { - "uuid": "13545db4-9c09-4ba0-84ce-981f07e8e6ff", - "start": { - "$date": "2021-09-14T06:12:53.000Z" - }, - "end": { - "$date": "2021-09-14T06:32:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f688e1fd-5078-4fc3-a84a-f19c4ab8e071", - "uuid": "89da6ab3-554f-4df7-a894-d6b09f2f8048", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-14T09:34:05.000Z" - }, - "end": { - "$date": "2021-09-14T10:28:00.000Z" - }, - "events": [ - { - "uuid": "3849121a-6c3b-420f-9715-1857e32f55bc", - "start": { - "$date": "2021-09-14T09:34:05.000Z" - }, - "end": { - "$date": "2021-09-14T10:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "52cb7ed8-f898-49fb-8999-4c804951b665", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-14T14:37:06.000Z" - }, - "end": { - "$date": "2021-09-14T14:38:53.000Z" - }, - "events": [ - { - "uuid": "3731bed8-caf5-43db-99c9-141dcf6a6ff8", - "start": { - "$date": "2021-09-14T14:37:06.000Z" - }, - "end": { - "$date": "2021-09-14T14:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8ca10a65-609f-4abe-bc85-307625880508", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-14T14:39:21.000Z" - }, - "end": { - "$date": "2021-09-14T15:26:25.000Z" - }, - "events": [ - { - "uuid": "e3ed10ad-5ae0-4ac1-bbaa-4b5d2481a776", - "start": { - "$date": "2021-09-14T14:39:21.000Z" - }, - "end": { - "$date": "2021-09-14T15:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8867c949-dd28-463b-a2f4-3c30cfe1bd7d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T15:42:06.000Z" - }, - "end": { - "$date": "2021-09-14T16:10:06.000Z" - }, - "events": [ - { - "uuid": "08d0631c-8db0-4e47-b133-f9eec9f25336", - "start": { - "$date": "2021-09-14T15:42:06.000Z" - }, - "end": { - "$date": "2021-09-14T16:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "48642807-d30d-420e-8eeb-ab1ea75d52a3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-14T15:56:17.000Z" - }, - "end": { - "$date": "2021-09-14T15:58:43.000Z" - }, - "events": [ - { - "uuid": "03053361-87ed-49a1-a8dc-40d04b7bac4b", - "start": { - "$date": "2021-09-14T15:56:17.000Z" - }, - "end": { - "$date": "2021-09-14T15:58:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99c3a312-79f5-4e09-bfe3-9af487c3f875", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T16:17:27.000Z" - }, - "end": { - "$date": "2021-09-14T16:54:42.000Z" - }, - "events": [ - { - "uuid": "810996a5-48c6-4169-9d37-1decd0349c83", - "start": { - "$date": "2021-09-14T16:17:27.000Z" - }, - "end": { - "$date": "2021-09-14T16:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a396dc31-6dee-46ff-be75-a01b14930d8f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T16:56:00.000Z" - }, - "end": { - "$date": "2021-09-14T17:07:22.000Z" - }, - "events": [ - { - "uuid": "f7198573-97de-4f0c-881f-c57b629a2371", - "start": { - "$date": "2021-09-14T16:56:00.000Z" - }, - "end": { - "$date": "2021-09-14T17:07:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7e4d0682-9970-4fde-b347-1472a14944c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T17:17:03.000Z" - }, - "end": { - "$date": "2021-09-14T17:54:09.000Z" - }, - "events": [ - { - "uuid": "ab5b7534-8c18-4493-8e20-e690aa884626", - "start": { - "$date": "2021-09-14T17:17:03.000Z" - }, - "end": { - "$date": "2021-09-14T17:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d4818a96-cba3-4f91-b8f8-fe69df642ca3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-14T18:52:50.000Z" - }, - "end": { - "$date": "2021-09-14T18:55:56.000Z" - }, - "events": [ - { - "uuid": "0a0f69c4-6c99-49a1-81ff-fcf20c7cc92e", - "start": { - "$date": "2021-09-14T18:52:50.000Z" - }, - "end": { - "$date": "2021-09-14T18:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7eb76949-2535-4743-b48e-5dadca953a7c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T19:15:29.000Z" - }, - "end": { - "$date": "2021-09-14T19:45:24.000Z" - }, - "events": [ - { - "uuid": "a75811b9-4835-48ce-aa36-d8d543a9d09d", - "start": { - "$date": "2021-09-14T19:15:29.000Z" - }, - "end": { - "$date": "2021-09-14T19:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1be396de-ef0b-4895-85aa-3db7c9e0310d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-14T19:55:42.000Z" - }, - "end": { - "$date": "2021-09-14T20:19:50.000Z" - }, - "events": [ - { - "uuid": "ad76e790-a6f8-4f8c-83ed-709d85b80d6d", - "start": { - "$date": "2021-09-14T19:55:42.000Z" - }, - "end": { - "$date": "2021-09-14T20:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0496c702-2d7f-444d-bae6-783a1b770d90", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-14T21:10:27.000Z" - }, - "end": { - "$date": "2021-09-14T23:10:30.000Z" - }, - "events": [ - { - "uuid": "e0a24a7b-4c37-4453-938f-da7ebda9bc46", - "start": { - "$date": "2021-09-14T21:10:27.000Z" - }, - "end": { - "$date": "2021-09-14T23:10:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "3c510bc6-ac27-473b-ab87-027404e75bc6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T22:36:23.000Z" - }, - "end": { - "$date": "2021-09-14T22:36:31.000Z" - }, - "events": [ - { - "uuid": "e345b087-5104-4110-b5ae-c073fb627d7d", - "start": { - "$date": "2021-09-14T22:36:23.000Z" - }, - "end": { - "$date": "2021-09-14T22:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1ec180c8-bdc1-4742-bbe5-204b721dced5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-14T22:18:19.000Z" - }, - "end": { - "$date": "2021-09-14T22:33:00.000Z" - }, - "events": [ - { - "uuid": "f51b8b6f-5e4c-4000-af54-14c1594978d7", - "start": { - "$date": "2021-09-14T22:18:19.000Z" - }, - "end": { - "$date": "2021-09-14T22:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cc35901d-cfef-4b0a-adbb-d7f6f7369cb9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-14T22:34:33.000Z" - }, - "end": { - "$date": "2021-09-14T22:56:47.000Z" - }, - "events": [ - { - "uuid": "18aaffc9-883e-46fc-859e-66c17fd538c0", - "start": { - "$date": "2021-09-14T22:34:33.000Z" - }, - "end": { - "$date": "2021-09-14T22:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "e4fb97ba-19b7-4c88-87de-684bab9c14a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-14T23:51:44.000Z" - }, - "end": { - "$date": "2021-09-15T00:03:59.000Z" - }, - "events": [ - { - "uuid": "58b147b7-0d0f-45be-8b4b-580888e309ef", - "start": { - "$date": "2021-09-14T23:51:44.000Z" - }, - "end": { - "$date": "2021-09-15T00:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0bce6a65-4c63-480e-ba9c-519e412569fe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-15T00:08:27.000Z" - }, - "end": { - "$date": "2021-09-15T05:12:42.000Z" - }, - "events": [ - { - "uuid": "feff3083-674f-4309-adbd-c14d8e302ba0", - "start": { - "$date": "2021-09-15T00:08:27.000Z" - }, - "end": { - "$date": "2021-09-15T05:12:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cbe58df-09f0-4b6f-a686-60ca6f34d585", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-15T00:19:10.000Z" - }, - "end": { - "$date": "2021-09-15T00:52:47.000Z" - }, - "events": [ - { - "uuid": "718f3d95-dfce-4c87-8409-4301374067c4", - "start": { - "$date": "2021-09-15T00:19:10.000Z" - }, - "end": { - "$date": "2021-09-15T00:52:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c26dda8-981c-4ffd-a931-584828d72614", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-15T00:19:40.000Z" - }, - "end": { - "$date": "2021-09-15T00:52:40.000Z" - }, - "events": [ - { - "uuid": "c5d00b95-520f-4b16-86c9-c6841a198ab3", - "start": { - "$date": "2021-09-15T00:19:40.000Z" - }, - "end": { - "$date": "2021-09-15T00:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b640ce1c-24f2-4938-9602-6fe9da14aecb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-15T00:32:23.000Z" - }, - "end": { - "$date": "2021-09-15T00:52:50.000Z" - }, - "events": [ - { - "uuid": "7987c0f3-0c8b-429f-9798-a110a3f43864", - "start": { - "$date": "2021-09-15T00:32:23.000Z" - }, - "end": { - "$date": "2021-09-15T00:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "d513af84-a434-4591-8fa6-43cef2a40eba", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-15T00:54:23.000Z" - }, - "end": { - "$date": "2021-09-15T03:03:57.000Z" - }, - "events": [ - { - "uuid": "de813891-1c59-450a-97dc-983952d57a2a", - "start": { - "$date": "2021-09-15T00:54:23.000Z" - }, - "end": { - "$date": "2021-09-15T03:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8d7e8c60-d6d4-4196-bc75-c443c7873fef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-15T01:57:43.000Z" - }, - "end": { - "$date": "2021-09-15T02:53:05.000Z" - }, - "events": [ - { - "uuid": "b14ce48f-d8b9-4f13-bcce-1be3a5e19d57", - "start": { - "$date": "2021-09-15T01:57:43.000Z" - }, - "end": { - "$date": "2021-09-15T02:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "86c8257a-c104-4e35-9977-100c7b6ad952", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-15T01:57:43.000Z" - }, - "end": { - "$date": "2021-09-15T03:21:36.000Z" - }, - "events": [ - { - "uuid": "4100f027-6421-41f3-8968-129a7c2459fe", - "start": { - "$date": "2021-09-15T01:57:43.000Z" - }, - "end": { - "$date": "2021-09-15T03:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b3024351-c33b-4e06-bca4-e65109591ec5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-15T03:02:38.000Z" - }, - "end": { - "$date": "2021-09-15T04:10:42.000Z" - }, - "events": [ - { - "uuid": "00b15c13-88aa-4cde-8bfa-eba81e190159", - "start": { - "$date": "2021-09-15T03:02:38.000Z" - }, - "end": { - "$date": "2021-09-15T04:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "dc56968d-d386-40a9-a8e7-6d3ae28d2041", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-15T03:04:12.000Z" - }, - "end": { - "$date": "2021-09-15T10:25:04.000Z" - }, - "events": [ - { - "uuid": "00596c50-15b3-415c-9f71-06588f99ceb0", - "start": { - "$date": "2021-09-15T03:04:12.000Z" - }, - "end": { - "$date": "2021-09-15T10:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cbd6b5f5-3836-4ba8-ac7a-98e6cf013340", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-15T03:27:42.000Z" - }, - "end": { - "$date": "2021-09-15T06:48:44.000Z" - }, - "events": [ - { - "uuid": "73738952-cb89-4332-9e28-a9d97281e289", - "start": { - "$date": "2021-09-15T03:27:42.000Z" - }, - "end": { - "$date": "2021-09-15T06:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20d10cc9-13d1-4c18-90ec-d253f71870f8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-15T04:24:33.000Z" - }, - "end": { - "$date": "2021-09-15T04:57:04.000Z" - }, - "events": [ - { - "uuid": "a6467ed4-3660-4a49-b580-8b00cef22f55", - "start": { - "$date": "2021-09-15T04:24:33.000Z" - }, - "end": { - "$date": "2021-09-15T04:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efa621bc-20fc-410a-af69-60e08099f8d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-15T04:53:12.000Z" - }, - "end": { - "$date": "2021-09-15T05:18:17.000Z" - }, - "events": [ - { - "uuid": "2f0cd4ba-f22c-4090-8206-4ea1748d1cf4", - "start": { - "$date": "2021-09-15T04:53:12.000Z" - }, - "end": { - "$date": "2021-09-15T05:18:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "830e2ee7-28af-4c13-a783-be182f5dd748", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-15T04:53:49.000Z" - }, - "end": { - "$date": "2021-09-15T05:18:13.000Z" - }, - "events": [ - { - "uuid": "668e2292-35ea-48b6-8515-d4619a7f9d31", - "start": { - "$date": "2021-09-15T04:53:49.000Z" - }, - "end": { - "$date": "2021-09-15T05:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce8dd00b-1d2f-43fb-a913-5d7a1153b375", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-15T04:54:24.000Z" - }, - "end": { - "$date": "2021-09-15T05:18:07.000Z" - }, - "events": [ - { - "uuid": "683f7d19-6b34-4a63-b4a0-66b41b6b1561", - "start": { - "$date": "2021-09-15T04:54:24.000Z" - }, - "end": { - "$date": "2021-09-15T05:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa91a3f0-9342-434c-8e9e-fce8ae846c2d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-15T05:04:09.000Z" - }, - "end": { - "$date": "2021-09-15T05:40:05.000Z" - }, - "events": [ - { - "uuid": "59f2a22e-130d-4d4f-8bd9-fa432c8ff002", - "start": { - "$date": "2021-09-15T05:04:09.000Z" - }, - "end": { - "$date": "2021-09-15T05:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9b59cee-7839-41b4-bd12-4a4cb0af9e8b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-15T05:20:29.000Z" - }, - "end": { - "$date": "2021-09-15T05:44:57.000Z" - }, - "events": [ - { - "uuid": "060e2672-3d2e-4f11-bdff-d0ff5f8f507f", - "start": { - "$date": "2021-09-15T05:20:29.000Z" - }, - "end": { - "$date": "2021-09-15T05:44:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e601c09a-a594-402c-92f4-2b700fa4936d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-15T05:23:15.000Z" - }, - "end": { - "$date": "2021-09-15T05:45:11.000Z" - }, - "events": [ - { - "uuid": "c90a6cfd-89a0-47c9-970b-00abe5d2cdab", - "start": { - "$date": "2021-09-15T05:23:15.000Z" - }, - "end": { - "$date": "2021-09-15T05:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28163ff2-9ee4-40c0-a204-d45b8cc2689c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-15T05:22:59.000Z" - }, - "end": { - "$date": "2021-09-15T05:44:53.000Z" - }, - "events": [ - { - "uuid": "930adac9-c513-4e24-93fa-abb435d2cda2", - "start": { - "$date": "2021-09-15T05:22:59.000Z" - }, - "end": { - "$date": "2021-09-15T05:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0c409784-9595-44f5-85d8-9866350b2a09", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-15T06:31:50.000Z" - }, - "end": { - "$date": "2021-09-15T07:08:20.000Z" - }, - "events": [ - { - "uuid": "ae7a9722-e891-4bb3-830e-34c9e866ff24", - "start": { - "$date": "2021-09-15T06:31:50.000Z" - }, - "end": { - "$date": "2021-09-15T07:08:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "e72928fe-5504-46b3-aab6-fa3e1f78e5ae", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-15T10:30:14.000Z" - }, - "end": { - "$date": "2021-09-15T11:05:59.000Z" - }, - "events": [ - { - "uuid": "f763c64c-b484-4178-9cad-940bae3443dd", - "start": { - "$date": "2021-09-15T10:30:14.000Z" - }, - "end": { - "$date": "2021-09-15T11:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e2a44a8-ccf2-4802-bada-93cc6c4ce343", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-15T14:38:39.000Z" - }, - "end": { - "$date": "2021-09-15T14:43:19.000Z" - }, - "events": [ - { - "uuid": "08b0f3a4-aefa-4ccd-9be8-0a61309f3290", - "start": { - "$date": "2021-09-15T14:38:39.000Z" - }, - "end": { - "$date": "2021-09-15T14:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c55756-ae07-4771-86d2-bba19006baa0", - "uuid": "091c19e9-6bf2-42d4-b35f-faa9b7eec130", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-15T14:28:59.000Z" - }, - "end": { - "$date": "2021-09-15T14:39:40.000Z" - }, - "events": [ - { - "uuid": "449514b9-73bb-4551-bb12-0f385896c536", - "start": { - "$date": "2021-09-15T14:28:59.000Z" - }, - "end": { - "$date": "2021-09-15T14:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "446fd365-d540-4487-b134-ee82833f8fa6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-15T14:39:50.000Z" - }, - "end": { - "$date": "2021-09-15T14:53:07.000Z" - }, - "events": [ - { - "uuid": "e85e9d8c-83d6-4b0e-8054-2b4747807590", - "start": { - "$date": "2021-09-15T14:39:50.000Z" - }, - "end": { - "$date": "2021-09-15T14:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "634e1c38-6b95-46a8-bb2a-ea87f9eb3545", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-15T14:46:24.000Z" - }, - "end": { - "$date": "2021-09-15T15:12:19.000Z" - }, - "events": [ - { - "uuid": "279294e8-a112-4e33-b798-8e8e87e98f58", - "start": { - "$date": "2021-09-15T14:46:24.000Z" - }, - "end": { - "$date": "2021-09-15T15:12:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c5da0b9f-75cf-447b-b9fa-f17a8c48367b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-15T14:54:39.000Z" - }, - "end": { - "$date": "2021-09-15T15:02:53.000Z" - }, - "events": [ - { - "uuid": "8ab43dd7-8256-48b3-b91d-fc71f536320d", - "start": { - "$date": "2021-09-15T14:54:39.000Z" - }, - "end": { - "$date": "2021-09-15T15:02:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53395d55-b1b2-4feb-9ba9-3968c90574b7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-15T15:13:03.000Z" - }, - "end": { - "$date": "2021-09-15T15:37:01.000Z" - }, - "events": [ - { - "uuid": "d0b0d668-4127-49d6-b9ae-65624b6ee79f", - "start": { - "$date": "2021-09-15T15:13:03.000Z" - }, - "end": { - "$date": "2021-09-15T15:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f297048-05a6-47cb-82d9-1f8a417b0ba4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-15T15:22:45.000Z" - }, - "end": { - "$date": "2021-09-15T15:51:32.000Z" - }, - "events": [ - { - "uuid": "c75dfc16-d6eb-411d-8539-6168adf4dc07", - "start": { - "$date": "2021-09-15T15:22:45.000Z" - }, - "end": { - "$date": "2021-09-15T15:51:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86676732-9dd7-46cc-bd97-a5b23fbc276c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-15T15:51:35.000Z" - }, - "end": { - "$date": "2021-09-15T15:53:14.000Z" - }, - "events": [ - { - "uuid": "1680c05b-acd2-4d48-8214-ddf93680f077", - "start": { - "$date": "2021-09-15T15:51:35.000Z" - }, - "end": { - "$date": "2021-09-15T15:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "3664fe10-8c25-4d22-923e-94d31862d0c3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-15T15:54:49.000Z" - }, - "end": { - "$date": "2021-09-15T16:02:45.000Z" - }, - "events": [ - { - "uuid": "14565194-dc04-4d8f-9265-1313e5454d21", - "start": { - "$date": "2021-09-15T15:54:49.000Z" - }, - "end": { - "$date": "2021-09-15T16:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "3026736c-cb1d-4ac9-b140-e080c514ac3d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-15T19:57:38.000Z" - }, - "end": { - "$date": "2021-09-15T20:03:59.000Z" - }, - "events": [ - { - "uuid": "9f1e3b42-781a-43cb-9764-6d2f9da79109", - "start": { - "$date": "2021-09-15T19:57:38.000Z" - }, - "end": { - "$date": "2021-09-15T20:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50e5bfab-410d-4da4-9a70-6d8fde0bb4e2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-15T20:38:09.000Z" - }, - "end": { - "$date": "2021-09-15T21:14:59.000Z" - }, - "events": [ - { - "uuid": "2916ef38-c237-4de5-ab02-ceae86e85c94", - "start": { - "$date": "2021-09-15T20:38:09.000Z" - }, - "end": { - "$date": "2021-09-15T21:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c23e27da-fcfc-4df0-acc7-8cea731f30b8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-15T23:43:15.000Z" - }, - "end": { - "$date": "2021-09-15T23:44:36.000Z" - }, - "events": [ - { - "uuid": "a5126b49-45ca-44b4-a4de-aabacd9c42d5", - "start": { - "$date": "2021-09-15T23:43:15.000Z" - }, - "end": { - "$date": "2021-09-15T23:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68a50d74-1731-4897-83dc-6557d2281443", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-15T23:45:00.000Z" - }, - "end": { - "$date": "2021-09-16T00:12:33.000Z" - }, - "events": [ - { - "uuid": "6284e4aa-4b35-47e5-803f-a6aa59161c49", - "start": { - "$date": "2021-09-15T23:45:00.000Z" - }, - "end": { - "$date": "2021-09-16T00:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d3e6b125-1eb2-4bfe-b44f-96993a3df153", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-16T00:01:07.000Z" - }, - "end": { - "$date": "2021-09-16T04:31:36.000Z" - }, - "events": [ - { - "uuid": "9274e6d9-2ad9-40ae-8b83-c3c5625ac028", - "start": { - "$date": "2021-09-16T00:01:07.000Z" - }, - "end": { - "$date": "2021-09-16T04:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be5ad986-f8d5-4db4-abf4-cafabbbd94cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T00:13:01.000Z" - }, - "end": { - "$date": "2021-09-16T01:30:33.000Z" - }, - "events": [ - { - "uuid": "a3c5ed3c-901f-4926-8158-d64ef6b21580", - "start": { - "$date": "2021-09-16T00:13:01.000Z" - }, - "end": { - "$date": "2021-09-16T01:30:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "536ab002-70d3-4f95-b08a-1473875c66a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-16T00:16:23.000Z" - }, - "end": { - "$date": "2021-09-16T00:18:48.000Z" - }, - "events": [ - { - "uuid": "7bf282cc-81cf-428e-bdc8-da3ae5b2032e", - "start": { - "$date": "2021-09-16T00:16:23.000Z" - }, - "end": { - "$date": "2021-09-16T00:18:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "328b7a88-bda4-4f58-80bc-f685ef034f29", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-16T00:20:43.000Z" - }, - "end": { - "$date": "2021-09-16T00:33:59.000Z" - }, - "events": [ - { - "uuid": "a95c9d0d-61af-4272-bf51-96595fe274a8", - "start": { - "$date": "2021-09-16T00:20:43.000Z" - }, - "end": { - "$date": "2021-09-16T00:33:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "9ae2c799-e99b-448b-ab32-a7118b4d259d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-16T01:12:28.000Z" - }, - "end": { - "$date": "2021-09-16T03:18:55.000Z" - }, - "events": [ - { - "uuid": "f39815c2-dc8b-4c34-bac0-c04d9d428516", - "start": { - "$date": "2021-09-16T01:12:28.000Z" - }, - "end": { - "$date": "2021-09-16T03:18:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "38d27a7b-9370-4d8f-b404-806e21dd7597", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-16T01:13:23.000Z" - }, - "end": { - "$date": "2021-09-16T03:42:30.000Z" - }, - "events": [ - { - "uuid": "b7d1572a-39f8-4330-a9c5-7b41ca9b4cdf", - "start": { - "$date": "2021-09-16T01:13:23.000Z" - }, - "end": { - "$date": "2021-09-16T03:42:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "601f0242-7350-49d4-99a8-7f09f0e3a4b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-16T01:25:09.000Z" - }, - "end": { - "$date": "2021-09-16T03:42:54.000Z" - }, - "events": [ - { - "uuid": "0dc370a2-35ef-4c72-ae11-4a5a89edd62f", - "start": { - "$date": "2021-09-16T01:25:09.000Z" - }, - "end": { - "$date": "2021-09-16T03:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "c75c2907-5c5f-40da-a5ce-b17111154297", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T01:28:14.000Z" - }, - "end": { - "$date": "2021-09-16T03:42:39.000Z" - }, - "events": [ - { - "uuid": "644f85da-f836-4f56-8e77-90c55511e4c8", - "start": { - "$date": "2021-09-16T01:28:14.000Z" - }, - "end": { - "$date": "2021-09-16T03:42:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "58e93817-077d-4be5-b56a-51c7087bbe05", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T01:32:24.000Z" - }, - "end": { - "$date": "2021-09-16T02:16:40.000Z" - }, - "events": [ - { - "uuid": "3a70019f-0077-47fc-ae1b-ea2b51331ed5", - "start": { - "$date": "2021-09-16T01:32:24.000Z" - }, - "end": { - "$date": "2021-09-16T02:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "fea77d14-7418-437b-a3a2-374ef33c4f60", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-16T01:44:36.000Z" - }, - "end": { - "$date": "2021-09-16T02:33:17.000Z" - }, - "events": [ - { - "uuid": "559b4bd5-f89b-4917-8190-9ab0729e48c2", - "start": { - "$date": "2021-09-16T01:44:36.000Z" - }, - "end": { - "$date": "2021-09-16T02:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9e1a2303-073e-417e-894f-9406b8067aa4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-16T05:10:49.000Z" - }, - "end": { - "$date": "2021-09-16T05:45:14.000Z" - }, - "events": [ - { - "uuid": "6ec52634-1fd3-4197-8227-c467b184d4a3", - "start": { - "$date": "2021-09-16T05:10:49.000Z" - }, - "end": { - "$date": "2021-09-16T05:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90fd13ad-1267-4b2a-99f3-8ba799bf3350", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T02:02:04.000Z" - }, - "end": { - "$date": "2021-09-16T02:32:28.000Z" - }, - "events": [ - { - "uuid": "fa46f9f0-9977-4721-9c3a-3ffa551051be", - "start": { - "$date": "2021-09-16T02:02:04.000Z" - }, - "end": { - "$date": "2021-09-16T02:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "025e6644-f290-442f-a7d5-10968496289c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T02:54:31.000Z" - }, - "end": { - "$date": "2021-09-16T03:29:41.000Z" - }, - "events": [ - { - "uuid": "e08081ce-e94a-4df3-83de-05ab4be36f36", - "start": { - "$date": "2021-09-16T02:54:31.000Z" - }, - "end": { - "$date": "2021-09-16T03:29:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b78edcd-751a-4a70-9731-9f9ebeb3cd44", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T02:56:09.000Z" - }, - "end": { - "$date": "2021-09-16T03:29:39.000Z" - }, - "events": [ - { - "uuid": "3ed32aeb-4e20-4f55-851d-6f03ea91f28a", - "start": { - "$date": "2021-09-16T02:56:09.000Z" - }, - "end": { - "$date": "2021-09-16T03:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1fd27c0-5e14-4bf6-a73d-aad90e4f2666", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-16T03:56:10.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:45.000Z" - }, - "events": [ - { - "uuid": "1dcdc4df-d359-4f78-ba2f-e6c64a27d756", - "start": { - "$date": "2021-09-16T03:56:10.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1dba448a-7697-40b2-8579-79b731eeb00d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T03:55:22.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:29.000Z" - }, - "events": [ - { - "uuid": "91ae6cf5-2809-4f98-a34f-b761a1231097", - "start": { - "$date": "2021-09-16T03:55:22.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91563b1c-fddc-4f9f-8662-2dff5296c80d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-16T03:55:27.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:27.000Z" - }, - "events": [ - { - "uuid": "db24d23f-7c0e-4a68-afdb-0b92f08efa9f", - "start": { - "$date": "2021-09-16T03:55:27.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "136a1975-a76e-4ae3-a828-9569710e713c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T03:55:26.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:41.000Z" - }, - "events": [ - { - "uuid": "d3f6207e-7958-46f0-bec9-1e73d1ff4ec3", - "start": { - "$date": "2021-09-16T03:55:26.000Z" - }, - "end": { - "$date": "2021-09-16T04:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ba58bc6-7db0-4ef2-b3ed-f428bc8af5ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-16T04:38:16.000Z" - }, - "end": { - "$date": "2021-09-16T05:07:01.000Z" - }, - "events": [ - { - "uuid": "1965714e-ee6f-4787-9402-7218e1c7ec21", - "start": { - "$date": "2021-09-16T04:38:16.000Z" - }, - "end": { - "$date": "2021-09-16T05:07:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5f34988-b36e-4e63-8c98-ab556d876156", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-16T04:38:14.000Z" - }, - "end": { - "$date": "2021-09-16T05:06:53.000Z" - }, - "events": [ - { - "uuid": "7416d78b-04b1-48f9-a721-250f4b5b8375", - "start": { - "$date": "2021-09-16T04:38:14.000Z" - }, - "end": { - "$date": "2021-09-16T05:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "601b389e-ac9c-493c-91ec-f826dbdf249e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T04:38:09.000Z" - }, - "end": { - "$date": "2021-09-16T05:06:59.000Z" - }, - "events": [ - { - "uuid": "00feac39-8c69-4fbc-b808-07ce2227ee72", - "start": { - "$date": "2021-09-16T04:38:09.000Z" - }, - "end": { - "$date": "2021-09-16T05:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a447f7e9-e641-44c9-a369-2d29facc0078", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T04:38:12.000Z" - }, - "end": { - "$date": "2021-09-16T05:06:57.000Z" - }, - "events": [ - { - "uuid": "d6b49147-c702-4b46-b2b7-ab8ae977ce4c", - "start": { - "$date": "2021-09-16T04:38:12.000Z" - }, - "end": { - "$date": "2021-09-16T05:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "1d5e2ea6-9428-4e3e-8171-b63f9ce6daf6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-16T04:36:08.000Z" - }, - "end": { - "$date": "2021-09-16T05:37:06.000Z" - }, - "events": [ - { - "uuid": "f9f26471-cca5-422f-a1ae-7cf55fb2b7ad", - "start": { - "$date": "2021-09-16T04:36:08.000Z" - }, - "end": { - "$date": "2021-09-16T05:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d9e39ee-0bbe-4aef-ae4c-8a4f814a2790", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-16T05:11:04.000Z" - }, - "end": { - "$date": "2021-09-16T05:43:06.000Z" - }, - "events": [ - { - "uuid": "df9eaab3-dd18-4b8a-a76a-3ecded4b58b1", - "start": { - "$date": "2021-09-16T05:11:04.000Z" - }, - "end": { - "$date": "2021-09-16T05:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afd1b8b6-9f24-4580-ba53-3f650cee1ad7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-16T05:11:00.000Z" - }, - "end": { - "$date": "2021-09-16T05:42:59.000Z" - }, - "events": [ - { - "uuid": "d8d08d28-e4eb-4ae8-be81-319f32d9c8e2", - "start": { - "$date": "2021-09-16T05:11:00.000Z" - }, - "end": { - "$date": "2021-09-16T05:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ae22d89-8dcf-4880-b2b8-3463cda249c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T05:10:59.000Z" - }, - "end": { - "$date": "2021-09-16T05:43:01.000Z" - }, - "events": [ - { - "uuid": "a0794bf1-65ea-4d30-8a8c-37377423bccb", - "start": { - "$date": "2021-09-16T05:10:59.000Z" - }, - "end": { - "$date": "2021-09-16T05:43:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15427d1d-f56e-4c50-a330-520834bacdd2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T05:12:37.000Z" - }, - "end": { - "$date": "2021-09-16T05:43:08.000Z" - }, - "events": [ - { - "uuid": "0883440c-93b6-4d72-b8f5-b8b6a59a9bd8", - "start": { - "$date": "2021-09-16T05:12:37.000Z" - }, - "end": { - "$date": "2021-09-16T05:43:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb52e001-f484-4bbc-a9ec-df30f1f13626", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-16T05:38:38.000Z" - }, - "end": { - "$date": "2021-09-16T06:01:39.000Z" - }, - "events": [ - { - "uuid": "175697f3-3b90-439d-8979-f7b20cfc6c04", - "start": { - "$date": "2021-09-16T05:38:38.000Z" - }, - "end": { - "$date": "2021-09-16T06:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e21d5f2b-0027-4a61-934b-ebf97dc682ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-16T05:48:15.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:21.000Z" - }, - "events": [ - { - "uuid": "33963bc3-8d1a-4e43-bece-ec91ee2a5d24", - "start": { - "$date": "2021-09-16T05:48:15.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b92d408d-662d-4c1d-bbd5-e78b27e14a14", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-16T05:49:31.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:30.000Z" - }, - "events": [ - { - "uuid": "1d5ba28d-92dd-472f-b5dc-103957b0e54a", - "start": { - "$date": "2021-09-16T05:49:31.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2aa46dd-4a70-4e10-b005-12fc1a384617", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-16T05:47:51.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:25.000Z" - }, - "events": [ - { - "uuid": "b118793c-6e10-4ed1-bc5a-fb0e6464d377", - "start": { - "$date": "2021-09-16T05:47:51.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc023326-76ee-4485-8992-512a8c3865f7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T05:47:48.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:35.000Z" - }, - "events": [ - { - "uuid": "78c595c5-dd0a-4ccc-9f68-5f48ca4c8731", - "start": { - "$date": "2021-09-16T05:47:48.000Z" - }, - "end": { - "$date": "2021-09-16T06:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84c107cd-bada-48eb-8e28-df008764a440", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-16T06:15:54.000Z" - }, - "end": { - "$date": "2021-09-16T06:46:06.000Z" - }, - "events": [ - { - "uuid": "c8f919d4-b8dc-4c91-a0ca-245af6ce5e3c", - "start": { - "$date": "2021-09-16T06:15:54.000Z" - }, - "end": { - "$date": "2021-09-16T06:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1789c7cb-a3df-4e88-b49f-ab43e51a86e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-16T06:46:32.000Z" - }, - "end": { - "$date": "2021-09-16T06:48:16.000Z" - }, - "events": [ - { - "uuid": "25ed90c1-0d3e-48e3-bb1a-364b25f2ab82", - "start": { - "$date": "2021-09-16T06:46:32.000Z" - }, - "end": { - "$date": "2021-09-16T06:48:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5efd0e27-dd79-49da-ac82-5e71ad59f6b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-16T06:53:37.000Z" - }, - "end": { - "$date": "2021-09-16T08:22:43.000Z" - }, - "events": [ - { - "uuid": "136e7a55-19ae-4d39-8bd4-c9dcc916bc63", - "start": { - "$date": "2021-09-16T06:53:37.000Z" - }, - "end": { - "$date": "2021-09-16T08:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "9df3cda7-e4ff-4400-a713-34ba0a0b2441", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T09:16:57.000Z" - }, - "end": { - "$date": "2021-09-16T11:46:09.000Z" - }, - "events": [ - { - "uuid": "8581e80b-3a07-43ac-a14f-29a8f2921fe5", - "start": { - "$date": "2021-09-16T09:16:57.000Z" - }, - "end": { - "$date": "2021-09-16T11:46:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "92ac196c-6ab3-4f21-8bad-b67ae5e98c49", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T11:46:19.000Z" - }, - "end": { - "$date": "2021-09-16T11:55:46.000Z" - }, - "events": [ - { - "uuid": "f7712df0-d068-432f-800c-2156af507746", - "start": { - "$date": "2021-09-16T11:46:19.000Z" - }, - "end": { - "$date": "2021-09-16T11:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75f2ad91-49e7-4105-aad1-322245ed5015", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T15:13:26.000Z" - }, - "end": { - "$date": "2021-09-16T15:35:19.000Z" - }, - "events": [ - { - "uuid": "8a4ec678-b82b-4076-8257-5d357bafd040", - "start": { - "$date": "2021-09-16T15:13:26.000Z" - }, - "end": { - "$date": "2021-09-16T15:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "579194ce-7773-42b1-9fc9-ff5424766b55", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T16:07:15.000Z" - }, - "end": { - "$date": "2021-09-16T16:24:48.000Z" - }, - "events": [ - { - "uuid": "4fd5a871-71ac-487f-ad63-e62c2ef92f0d", - "start": { - "$date": "2021-09-16T16:07:15.000Z" - }, - "end": { - "$date": "2021-09-16T16:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e2fc0c8-b6b5-46cf-9c21-49cf0b748821", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T16:30:50.000Z" - }, - "end": { - "$date": "2021-09-16T16:59:14.000Z" - }, - "events": [ - { - "uuid": "693441ee-15fe-4d14-a868-1779a66478de", - "start": { - "$date": "2021-09-16T16:30:50.000Z" - }, - "end": { - "$date": "2021-09-16T16:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a24e7ac6-057d-473a-aa83-22ce38f62562", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-16T16:54:55.000Z" - }, - "end": { - "$date": "2021-09-16T17:55:28.000Z" - }, - "events": [ - { - "uuid": "f4a3165a-89b1-436f-ba52-ee6682749eaa", - "start": { - "$date": "2021-09-16T16:54:55.000Z" - }, - "end": { - "$date": "2021-09-16T17:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "813b2eb7-95e3-48b4-8501-ade4b37f036b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T17:50:20.000Z" - }, - "end": { - "$date": "2021-09-16T18:15:44.000Z" - }, - "events": [ - { - "uuid": "eac9f91b-6165-4888-8e3a-ae0744b2a7c0", - "start": { - "$date": "2021-09-16T17:50:20.000Z" - }, - "end": { - "$date": "2021-09-16T18:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "27a175c3-1477-4a21-a695-9b1909602c19", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-16T18:24:53.000Z" - }, - "end": { - "$date": "2021-09-16T19:09:59.000Z" - }, - "events": [ - { - "uuid": "ba8705ed-e881-4e52-864a-a743f6d6f026", - "start": { - "$date": "2021-09-16T18:24:53.000Z" - }, - "end": { - "$date": "2021-09-16T19:09:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "abf83c8b-8abd-48da-8a7a-1e73f8e3ced7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-16T19:10:31.000Z" - }, - "end": { - "$date": "2021-09-16T19:29:11.000Z" - }, - "events": [ - { - "uuid": "4b21594e-6243-4212-a713-0256607bd748", - "start": { - "$date": "2021-09-16T19:10:31.000Z" - }, - "end": { - "$date": "2021-09-16T19:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "cce1e69a-3c1d-4abf-a226-d3c292ab0b71", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-16T21:06:14.000Z" - }, - "end": { - "$date": "2021-09-16T21:56:44.000Z" - }, - "events": [ - { - "uuid": "1f8baad4-987f-40f9-ab3b-9af1621c8103", - "start": { - "$date": "2021-09-16T21:06:14.000Z" - }, - "end": { - "$date": "2021-09-16T21:56:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "6191555e-8643-4419-bc6e-8759d2062b32", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-16T21:09:16.000Z" - }, - "end": { - "$date": "2021-09-17T04:25:26.000Z" - }, - "events": [ - { - "uuid": "f4e85136-db7f-464d-a3ca-d1efe11f3b62", - "start": { - "$date": "2021-09-16T21:09:16.000Z" - }, - "end": { - "$date": "2021-09-17T00:53:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25882ec0-f81b-4636-9cd1-20a191b6f5b7", - "start": { - "$date": "2021-09-17T00:53:16.000Z" - }, - "end": { - "$date": "2021-09-17T01:08:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b9161ee7-76b7-4404-9c83-cb91a7da66cd", - "start": { - "$date": "2021-09-17T01:08:16.000Z" - }, - "end": { - "$date": "2021-09-17T03:31:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49c71503-d910-4eee-b364-686681b517e6", - "start": { - "$date": "2021-09-17T03:31:16.000Z" - }, - "end": { - "$date": "2021-09-17T03:37:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1d753b47-2a14-4186-8a87-b88e0baff98b", - "start": { - "$date": "2021-09-17T03:37:16.000Z" - }, - "end": { - "$date": "2021-09-17T03:39:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebba468f-b136-4bcc-ac44-3ea432082905", - "start": { - "$date": "2021-09-17T03:39:16.000Z" - }, - "end": { - "$date": "2021-09-17T03:41:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45f700e5-e900-4371-b1f1-8878211e956f", - "start": { - "$date": "2021-09-17T03:41:16.000Z" - }, - "end": { - "$date": "2021-09-17T04:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9ea4a96e-73f9-44c4-b7eb-2004bfccb4be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-17T00:40:19.000Z" - }, - "end": { - "$date": "2021-09-17T00:55:48.000Z" - }, - "events": [ - { - "uuid": "84b31fba-d5d6-4a92-a918-b8e430eb2f70", - "start": { - "$date": "2021-09-17T00:40:19.000Z" - }, - "end": { - "$date": "2021-09-17T02:35:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f8c9732-8428-42a7-bb9c-9776bbb9d048", - "start": { - "$date": "2021-09-17T02:35:19.000Z" - }, - "end": { - "$date": "2021-09-17T00:55:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5f52fa5f-0a84-45b3-b306-a359a89f2861", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-17T00:33:08.000Z" - }, - "end": { - "$date": "2021-09-17T01:51:18.000Z" - }, - "events": [ - { - "uuid": "7efd4820-6660-4f61-ad5f-b16d6f4bd33b", - "start": { - "$date": "2021-09-17T00:33:08.000Z" - }, - "end": { - "$date": "2021-09-17T01:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3f88f9f4-eb69-463c-8983-a900ac825dea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T01:30:38.000Z" - }, - "end": { - "$date": "2021-09-17T01:47:37.000Z" - }, - "events": [ - { - "uuid": "d1dc778f-1216-4c36-ae29-08891ed2fbb1", - "start": { - "$date": "2021-09-17T01:30:38.000Z" - }, - "end": { - "$date": "2021-09-17T01:47:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96b79b6f-50af-4990-a3fd-9ac4885b76db", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-17T01:57:55.000Z" - }, - "end": { - "$date": "2021-09-17T04:35:09.000Z" - }, - "events": [ - { - "uuid": "78386702-c46d-4d4b-85ac-a832dffdd00c", - "start": { - "$date": "2021-09-17T01:57:55.000Z" - }, - "end": { - "$date": "2021-09-17T04:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7e2ae2fa-234c-4be8-81dd-73f7240214c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-17T02:02:30.000Z" - }, - "end": { - "$date": "2021-09-17T03:33:17.000Z" - }, - "events": [ - { - "uuid": "c334dbfa-ff8a-4241-8845-5a1edfc0fa98", - "start": { - "$date": "2021-09-17T02:02:30.000Z" - }, - "end": { - "$date": "2021-09-17T02:19:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89982b16-f15e-40c6-a488-ccf930024f56", - "start": { - "$date": "2021-09-17T02:19:30.000Z" - }, - "end": { - "$date": "2021-09-17T02:23:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41970ce4-1490-4a61-b755-e7813ca5d53c", - "start": { - "$date": "2021-09-17T02:23:30.000Z" - }, - "end": { - "$date": "2021-09-17T03:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d84d6f10-60e1-45fa-9766-c143ee82db2c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-17T04:15:24.000Z" - }, - "end": { - "$date": "2021-09-17T04:16:49.000Z" - }, - "events": [ - { - "uuid": "2b855552-4c9a-476e-886a-63e88ef92d7e", - "start": { - "$date": "2021-09-17T04:15:24.000Z" - }, - "end": { - "$date": "2021-09-17T04:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "474ce3fc-4236-4c3d-9327-bd7af5e35735", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-17T02:13:44.000Z" - }, - "end": { - "$date": "2021-09-17T04:35:26.000Z" - }, - "events": [ - { - "uuid": "7414e1e2-210b-4e1d-9bd3-41f36d9a40fc", - "start": { - "$date": "2021-09-17T02:13:44.000Z" - }, - "end": { - "$date": "2021-09-17T04:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecf74385-84f4-4eec-b2b1-b48fc248ae0b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-17T03:11:42.000Z" - }, - "end": { - "$date": "2021-09-17T03:13:02.000Z" - }, - "events": [ - { - "uuid": "c48ee91e-b474-4783-86bd-264b02df307e", - "start": { - "$date": "2021-09-17T03:11:42.000Z" - }, - "end": { - "$date": "2021-09-17T03:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "587646dd-1515-433f-80c5-2e949731c01a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-17T04:20:11.000Z" - }, - "end": { - "$date": "2021-09-17T04:20:29.000Z" - }, - "events": [ - { - "uuid": "b728b897-4844-4f97-885a-494e1429cac6", - "start": { - "$date": "2021-09-17T04:20:11.000Z" - }, - "end": { - "$date": "2021-09-17T04:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b4edb96-bb99-48a3-bc2e-8b34ef6cb83e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-17T03:18:42.000Z" - }, - "end": { - "$date": "2021-09-17T03:49:32.000Z" - }, - "events": [ - { - "uuid": "bc85ca12-9e2b-4bac-b7fa-bd607bb1e791", - "start": { - "$date": "2021-09-17T03:18:42.000Z" - }, - "end": { - "$date": "2021-09-17T03:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94996536-b80e-4539-bd89-6d37a5a77145", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-17T03:28:53.000Z" - }, - "end": { - "$date": "2021-09-17T03:55:03.000Z" - }, - "events": [ - { - "uuid": "efdbf898-e1ec-4a1c-be0b-508bece29d26", - "start": { - "$date": "2021-09-17T03:28:53.000Z" - }, - "end": { - "$date": "2021-09-17T03:55:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e1801f91-0146-42d5-b5a2-ac38ba062cfe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-17T03:32:58.000Z" - }, - "end": { - "$date": "2021-09-17T04:12:39.000Z" - }, - "events": [ - { - "uuid": "2da7c2ef-1f8b-42d1-9d59-899df4a6ae83", - "start": { - "$date": "2021-09-17T03:32:58.000Z" - }, - "end": { - "$date": "2021-09-17T03:45:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4876ceb6-dec7-4700-82ed-ed3fb2c5ca81", - "start": { - "$date": "2021-09-17T03:45:58.000Z" - }, - "end": { - "$date": "2021-09-17T03:50:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8863887f-fb3f-46f7-ba56-cf2b26c84457", - "start": { - "$date": "2021-09-17T03:50:58.000Z" - }, - "end": { - "$date": "2021-09-17T04:09:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d76937e0-4860-4b74-a7dc-7ddf35eb6fe2", - "start": { - "$date": "2021-09-17T04:09:58.000Z" - }, - "end": { - "$date": "2021-09-17T04:12:39.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfdb7894-ea4a-481f-8d96-9480fba59b2e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T03:54:34.000Z" - }, - "end": { - "$date": "2021-09-17T04:20:14.000Z" - }, - "events": [ - { - "uuid": "2c68d92d-2199-47f3-9e99-44e3afeea6c2", - "start": { - "$date": "2021-09-17T03:54:34.000Z" - }, - "end": { - "$date": "2021-09-17T04:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57421fee-0d8c-41f7-9df7-4305daf44f6f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-17T04:02:19.000Z" - }, - "end": { - "$date": "2021-09-17T04:37:24.000Z" - }, - "events": [ - { - "uuid": "c6a3efcb-86c7-4194-b14d-13ff86a65f02", - "start": { - "$date": "2021-09-17T04:02:19.000Z" - }, - "end": { - "$date": "2021-09-17T04:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6569210-4c4d-4724-9860-32659b3406d1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-17T04:21:00.000Z" - }, - "end": { - "$date": "2021-09-17T04:38:52.000Z" - }, - "events": [ - { - "uuid": "71902ecc-7627-47cc-bc42-695ef8d1babc", - "start": { - "$date": "2021-09-17T04:21:00.000Z" - }, - "end": { - "$date": "2021-09-17T04:38:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ed8b312a-f7a5-4e35-b1f4-ce9021a7fc83", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-17T04:33:15.000Z" - }, - "end": { - "$date": "2021-09-17T05:44:01.000Z" - }, - "events": [ - { - "uuid": "36db02c4-938b-4d39-a801-2e08ab929542", - "start": { - "$date": "2021-09-17T04:33:15.000Z" - }, - "end": { - "$date": "2021-09-17T05:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d121118-5a6b-4afb-968d-55d97710c5fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T04:41:37.000Z" - }, - "end": { - "$date": "2021-09-17T05:20:46.000Z" - }, - "events": [ - { - "uuid": "cb2e6018-af02-4b31-b5b5-d8bbb900bb32", - "start": { - "$date": "2021-09-17T04:41:37.000Z" - }, - "end": { - "$date": "2021-09-17T05:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb44c92b-b009-43f6-b363-e094ba00e8d0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-17T04:41:44.000Z" - }, - "end": { - "$date": "2021-09-17T05:20:35.000Z" - }, - "events": [ - { - "uuid": "77de80cb-86d1-43a5-9f2d-d2235d130a68", - "start": { - "$date": "2021-09-17T04:41:44.000Z" - }, - "end": { - "$date": "2021-09-17T05:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4839047-2d76-47d0-8c83-94a75777d121", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-17T04:43:12.000Z" - }, - "end": { - "$date": "2021-09-17T05:20:33.000Z" - }, - "events": [ - { - "uuid": "8916267f-cf35-47a4-bcd2-ff3ff7725b4e", - "start": { - "$date": "2021-09-17T04:43:12.000Z" - }, - "end": { - "$date": "2021-09-17T05:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2c55f63f-f2c4-43da-a675-6a20d41f77f0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-17T05:17:22.000Z" - }, - "end": { - "$date": "2021-09-17T07:19:42.000Z" - }, - "events": [ - { - "uuid": "833aa722-8c7d-4cdb-adc8-e179b9495468", - "start": { - "$date": "2021-09-17T05:17:22.000Z" - }, - "end": { - "$date": "2021-09-17T07:19:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a189b80-3144-4393-bf9f-6126865c838b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T05:23:39.000Z" - }, - "end": { - "$date": "2021-09-17T05:41:35.000Z" - }, - "events": [ - { - "uuid": "c802b381-2c51-4cd1-a716-49e8dfa53ad3", - "start": { - "$date": "2021-09-17T05:23:39.000Z" - }, - "end": { - "$date": "2021-09-17T05:41:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7945e328-4b7d-4704-825e-03238dab2114", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-17T05:24:00.000Z" - }, - "end": { - "$date": "2021-09-17T05:41:25.000Z" - }, - "events": [ - { - "uuid": "8b846b42-ce93-4ca8-b880-54c2ba84f543", - "start": { - "$date": "2021-09-17T05:24:00.000Z" - }, - "end": { - "$date": "2021-09-17T05:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af340a7d-4f25-42d0-b2ed-8d5c286ea191", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-17T05:22:42.000Z" - }, - "end": { - "$date": "2021-09-17T05:41:28.000Z" - }, - "events": [ - { - "uuid": "64f00c16-8a9f-4634-a031-8aeade493d4c", - "start": { - "$date": "2021-09-17T05:22:42.000Z" - }, - "end": { - "$date": "2021-09-17T05:41:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b67cc209-aea8-45d9-84cd-4aad7ec7bff4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T05:44:25.000Z" - }, - "end": { - "$date": "2021-09-17T05:59:28.000Z" - }, - "events": [ - { - "uuid": "86c16a96-2ffb-4136-80bb-d11e21de585e", - "start": { - "$date": "2021-09-17T05:44:25.000Z" - }, - "end": { - "$date": "2021-09-17T05:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a18c9d52-69ca-477f-b801-cccb29ceeac9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-17T05:44:25.000Z" - }, - "end": { - "$date": "2021-09-17T05:59:16.000Z" - }, - "events": [ - { - "uuid": "f85dbfb1-7307-4985-b498-853b9efc77b6", - "start": { - "$date": "2021-09-17T05:44:25.000Z" - }, - "end": { - "$date": "2021-09-17T05:59:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "993b4126-4763-468d-aa7d-dec5b96a462a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-17T05:43:38.000Z" - }, - "end": { - "$date": "2021-09-17T05:59:23.000Z" - }, - "events": [ - { - "uuid": "a4ab48f9-b4d3-4be7-9a4e-97e23c7c4031", - "start": { - "$date": "2021-09-17T05:43:38.000Z" - }, - "end": { - "$date": "2021-09-17T05:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7fc5b109-11d1-4efe-ae62-5d6296f2a4d0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-17T06:37:47.000Z" - }, - "end": { - "$date": "2021-09-17T06:37:52.000Z" - }, - "events": [ - { - "uuid": "60880667-d681-43db-9052-fc0178577f7c", - "start": { - "$date": "2021-09-17T06:37:47.000Z" - }, - "end": { - "$date": "2021-09-17T06:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "0fa84455-dc31-4d21-8089-1269c2b9498a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-17T09:35:32.000Z" - }, - "end": { - "$date": "2021-09-17T11:21:01.000Z" - }, - "events": [ - { - "uuid": "b894933e-149e-4767-8a4c-bcf6e17ae6c5", - "start": { - "$date": "2021-09-17T09:35:32.000Z" - }, - "end": { - "$date": "2021-09-17T11:21:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05fd7762-8dbf-49fd-ae77-21549df2bd77", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-17T17:37:00.000Z" - }, - "end": { - "$date": "2021-09-17T18:21:16.000Z" - }, - "events": [ - { - "uuid": "f5af5d98-cc7c-42a0-827c-78b8484f0d2e", - "start": { - "$date": "2021-09-17T17:37:00.000Z" - }, - "end": { - "$date": "2021-09-17T18:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d4e7d21-3743-43cd-8c2e-459c5e4b022c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-17T18:42:42.000Z" - }, - "end": { - "$date": "2021-09-17T19:09:37.000Z" - }, - "events": [ - { - "uuid": "ad4dcb0a-3f93-4def-a6af-65747e0a6566", - "start": { - "$date": "2021-09-17T18:42:42.000Z" - }, - "end": { - "$date": "2021-09-17T19:09:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "f2b51d3b-fe2c-4659-8041-a8191ddefa7e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-17T20:28:13.000Z" - }, - "end": { - "$date": "2021-09-17T21:54:34.000Z" - }, - "events": [ - { - "uuid": "8b5d1db2-5f90-4301-a387-802dafbe7be8", - "start": { - "$date": "2021-09-17T20:28:13.000Z" - }, - "end": { - "$date": "2021-09-17T21:54:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61a320a8-1423-48d4-9e2f-95808137a37e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-17T20:45:42.000Z" - }, - "end": { - "$date": "2021-09-17T21:10:33.000Z" - }, - "events": [ - { - "uuid": "5bb99680-6b95-4235-a154-0bb91f5f0bec", - "start": { - "$date": "2021-09-17T20:45:42.000Z" - }, - "end": { - "$date": "2021-09-17T21:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "470d99b5-44cd-4ddf-a084-bedbaf776b48", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-17T21:26:20.000Z" - }, - "end": { - "$date": "2021-09-18T05:43:27.000Z" - }, - "events": [ - { - "uuid": "007b2a56-c272-4f07-b201-4eba42f0d84b", - "start": { - "$date": "2021-09-17T21:26:20.000Z" - }, - "end": { - "$date": "2021-09-17T21:46:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "368c8c75-632c-4d2b-9dc8-bf212dbe28f8", - "start": { - "$date": "2021-09-17T21:46:20.000Z" - }, - "end": { - "$date": "2021-09-17T21:51:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1e32cfc-7b6c-479b-bec1-843e2ae86977", - "start": { - "$date": "2021-09-17T21:51:20.000Z" - }, - "end": { - "$date": "2021-09-17T22:01:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "92c1a7fc-9346-417a-bb2e-524f617523a5", - "start": { - "$date": "2021-09-17T22:01:20.000Z" - }, - "end": { - "$date": "2021-09-17T22:24:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ede5f45d-c330-4264-a9b4-916376522122", - "start": { - "$date": "2021-09-17T22:24:20.000Z" - }, - "end": { - "$date": "2021-09-18T02:59:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63b9fe45-2945-4948-b2d9-05df8f900726", - "start": { - "$date": "2021-09-18T02:59:20.000Z" - }, - "end": { - "$date": "2021-09-18T03:01:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5cd65abe-d74e-43a2-9bf4-9c1bdb900ebb", - "start": { - "$date": "2021-09-18T03:01:20.000Z" - }, - "end": { - "$date": "2021-09-18T05:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e649a11d-221c-4ad3-ac3e-629fb8b83746", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T21:51:14.000Z" - }, - "end": { - "$date": "2021-09-17T22:18:02.000Z" - }, - "events": [ - { - "uuid": "338378c8-c13d-449a-b4ce-ce4b6cbc66e1", - "start": { - "$date": "2021-09-17T21:51:14.000Z" - }, - "end": { - "$date": "2021-09-17T22:18:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca428599-7d89-4fd8-817e-410c14904ec3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-17T21:51:20.000Z" - }, - "end": { - "$date": "2021-09-17T22:17:46.000Z" - }, - "events": [ - { - "uuid": "4ed7aa79-5fd1-4d53-9207-a6b0c795db19", - "start": { - "$date": "2021-09-17T21:51:20.000Z" - }, - "end": { - "$date": "2021-09-17T22:17:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "51abbebc-4cd3-4c13-91d0-d691f0fd2adc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T02:26:25.000Z" - }, - "end": { - "$date": "2021-09-18T02:55:41.000Z" - }, - "events": [ - { - "uuid": "26dc452a-749c-492b-b843-d8a1d29be374", - "start": { - "$date": "2021-09-18T02:26:25.000Z" - }, - "end": { - "$date": "2021-09-18T02:39:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c2a2f53-3d40-4307-8548-ab518be6278c", - "start": { - "$date": "2021-09-18T02:39:25.000Z" - }, - "end": { - "$date": "2021-09-18T03:11:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4a2355c0-7c29-40e1-8f45-d7d30fc5d04a", - "start": { - "$date": "2021-09-18T03:11:25.000Z" - }, - "end": { - "$date": "2021-09-18T06:00:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3bd391b1-6504-4d56-9e6a-7add9ac78d0b", - "start": { - "$date": "2021-09-18T06:00:25.000Z" - }, - "end": { - "$date": "2021-09-18T06:20:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "11d96ed5-4c66-4aad-814f-25baab709966", - "start": { - "$date": "2021-09-18T06:20:25.000Z" - }, - "end": { - "$date": "2021-09-18T02:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3da5717-3341-4dc5-bbdc-a058ba4b3d81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T22:19:44.000Z" - }, - "end": { - "$date": "2021-09-17T22:21:43.000Z" - }, - "events": [ - { - "uuid": "039e9fa6-e191-4180-afc6-c0b585838b28", - "start": { - "$date": "2021-09-17T22:19:44.000Z" - }, - "end": { - "$date": "2021-09-17T22:21:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c24e2692-6848-4165-9d04-3aca8f026590", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-17T23:29:14.000Z" - }, - "end": { - "$date": "2021-09-17T23:29:24.000Z" - }, - "events": [ - { - "uuid": "2e4347e7-fd72-49be-83ee-02b20d0b6ce8", - "start": { - "$date": "2021-09-17T23:29:14.000Z" - }, - "end": { - "$date": "2021-09-17T23:29:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f235d301-7fb7-45e8-b628-950d16d82cbb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-17T22:56:42.000Z" - }, - "end": { - "$date": "2021-09-18T00:13:56.000Z" - }, - "events": [ - { - "uuid": "dd61ee4b-cd49-474d-b23e-b697a856ab1b", - "start": { - "$date": "2021-09-17T22:56:42.000Z" - }, - "end": { - "$date": "2021-09-18T00:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "5a9a4e15-92c4-44c5-8a0b-8451bb25e02a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-18T00:35:20.000Z" - }, - "end": { - "$date": "2021-09-18T04:41:29.000Z" - }, - "events": [ - { - "uuid": "f9d384c3-787c-4308-9028-fb432edabcfc", - "start": { - "$date": "2021-09-18T00:35:20.000Z" - }, - "end": { - "$date": "2021-09-18T04:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "455e807d-b81f-48a2-800b-a4a0e9456b49", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-18T00:41:32.000Z" - }, - "end": { - "$date": "2021-09-18T02:22:05.000Z" - }, - "events": [ - { - "uuid": "b6fa37b8-942d-4f32-add4-08b1e9a52874", - "start": { - "$date": "2021-09-18T00:41:32.000Z" - }, - "end": { - "$date": "2021-09-18T02:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "97512bd0-2aab-4e7b-a827-7a44eb40bdd8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-18T01:27:11.000Z" - }, - "end": { - "$date": "2021-09-18T05:53:09.000Z" - }, - "events": [ - { - "uuid": "2f64bf19-8221-4265-a5fe-2efd50d935b9", - "start": { - "$date": "2021-09-18T01:27:11.000Z" - }, - "end": { - "$date": "2021-09-18T05:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "aa8c5a89-5a95-4b57-a68d-32bc6ebe5f45", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-18T02:02:34.000Z" - }, - "end": { - "$date": "2021-09-18T02:16:30.000Z" - }, - "events": [ - { - "uuid": "9698a8b6-0fe1-47a3-b056-0afc39982cf7", - "start": { - "$date": "2021-09-18T02:02:34.000Z" - }, - "end": { - "$date": "2021-09-18T02:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbaa20b8-4111-4f2a-becc-18d18cce1879", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-18T02:25:06.000Z" - }, - "end": { - "$date": "2021-09-18T02:55:41.000Z" - }, - "events": [ - { - "uuid": "35efde1c-f62a-4227-98d8-46b9f398992e", - "start": { - "$date": "2021-09-18T02:25:06.000Z" - }, - "end": { - "$date": "2021-09-18T02:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "730fdb0a-f92f-4353-b509-89abb082a2cf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-18T02:25:14.000Z" - }, - "end": { - "$date": "2021-09-18T05:08:28.000Z" - }, - "events": [ - { - "uuid": "b61ff80e-ada5-4dd3-b111-038d93b53e4c", - "start": { - "$date": "2021-09-18T02:25:14.000Z" - }, - "end": { - "$date": "2021-09-18T05:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0a5cd922-929e-48b2-9ff9-aac5d5dfa898", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-18T02:27:27.000Z" - }, - "end": { - "$date": "2021-09-18T05:08:59.000Z" - }, - "events": [ - { - "uuid": "a4af5d9b-156d-44f6-923c-7601ea7d1877", - "start": { - "$date": "2021-09-18T02:27:27.000Z" - }, - "end": { - "$date": "2021-09-18T05:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46469a00-b866-4f66-afc4-f64795f98934", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T03:10:21.000Z" - }, - "end": { - "$date": "2021-09-18T03:30:27.000Z" - }, - "events": [ - { - "uuid": "6032d29c-bffe-4732-8fc8-5be69a4c26fe", - "start": { - "$date": "2021-09-18T03:10:21.000Z" - }, - "end": { - "$date": "2021-09-18T03:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ed5bfc0-d853-413f-aa2b-b7a506c85c1c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-18T03:09:08.000Z" - }, - "end": { - "$date": "2021-09-18T03:30:28.000Z" - }, - "events": [ - { - "uuid": "8ee5abe6-8bf6-494e-b773-9f8c0520b987", - "start": { - "$date": "2021-09-18T03:09:08.000Z" - }, - "end": { - "$date": "2021-09-18T03:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0654e6ef-7e35-47f5-a89d-e0e0d011c1e7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T03:36:51.000Z" - }, - "end": { - "$date": "2021-09-18T04:01:42.000Z" - }, - "events": [ - { - "uuid": "cf84c549-c7a3-4b2f-9a9d-777e6bbeede4", - "start": { - "$date": "2021-09-18T03:36:51.000Z" - }, - "end": { - "$date": "2021-09-18T04:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0301675d-dee4-4814-9716-ea4e437def2a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-18T03:36:49.000Z" - }, - "end": { - "$date": "2021-09-18T04:01:54.000Z" - }, - "events": [ - { - "uuid": "6481e95a-428a-4339-af67-3fd2a1353c7b", - "start": { - "$date": "2021-09-18T03:36:49.000Z" - }, - "end": { - "$date": "2021-09-18T04:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3c72c6a2-e1c8-4de3-b85d-be682e6987d5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-18T05:09:10.000Z" - }, - "end": { - "$date": "2021-09-18T05:12:21.000Z" - }, - "events": [ - { - "uuid": "f287038f-1d70-48e3-994e-8f6378dc257d", - "start": { - "$date": "2021-09-18T05:09:10.000Z" - }, - "end": { - "$date": "2021-09-18T05:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "36d8141d-e4dd-48d2-8c10-b1f51c702c1c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-18T05:42:10.000Z" - }, - "end": { - "$date": "2021-09-18T10:23:43.000Z" - }, - "events": [ - { - "uuid": "2ca61b8a-c818-439f-96ff-53adcd5e9db0", - "start": { - "$date": "2021-09-18T05:42:10.000Z" - }, - "end": { - "$date": "2021-09-18T05:54:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2a133e4-87dc-4c72-8820-50b639c5e0c9", - "start": { - "$date": "2021-09-18T05:54:10.000Z" - }, - "end": { - "$date": "2021-09-18T06:06:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7b78a023-b406-4b19-a08b-fd25290a1f01", - "start": { - "$date": "2021-09-18T06:06:10.000Z" - }, - "end": { - "$date": "2021-09-18T10:23:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6db8986b-af62-43bc-8287-18cf30b31f45", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-18T07:29:43.000Z" - }, - "end": { - "$date": "2021-09-18T07:33:43.000Z" - }, - "events": [ - { - "uuid": "8ad88c9a-ed71-46d4-a8e2-1d0f95bdf2fa", - "start": { - "$date": "2021-09-18T07:29:43.000Z" - }, - "end": { - "$date": "2021-09-18T07:33:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "08d5d2ca-7a74-4c0f-8096-27f688497fc0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-18T07:51:22.000Z" - }, - "end": { - "$date": "2021-09-18T08:43:14.000Z" - }, - "events": [ - { - "uuid": "e6d8e302-0cc2-4e58-a198-68ce0a2b5b06", - "start": { - "$date": "2021-09-18T07:51:22.000Z" - }, - "end": { - "$date": "2021-09-18T08:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83bad2dc-0a2e-4d99-9c90-7f08aae8a822", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T18:00:05.000Z" - }, - "end": { - "$date": "2021-09-18T18:39:46.000Z" - }, - "events": [ - { - "uuid": "8265fb48-e7df-4124-92a5-ce3cf6c560aa", - "start": { - "$date": "2021-09-18T18:00:05.000Z" - }, - "end": { - "$date": "2021-09-18T18:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ca1a175-0735-48c5-8a92-a2c6dfaec8b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-18T18:17:04.000Z" - }, - "end": { - "$date": "2021-09-18T18:56:13.000Z" - }, - "events": [ - { - "uuid": "f6a545ab-de28-4ef7-804e-7cfdfcfd1a33", - "start": { - "$date": "2021-09-18T18:17:04.000Z" - }, - "end": { - "$date": "2021-09-18T18:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7ec43a0-66fe-41dd-b54f-87aac4cae7e4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T18:43:16.000Z" - }, - "end": { - "$date": "2021-09-18T18:55:16.000Z" - }, - "events": [ - { - "uuid": "66470e96-9070-4b5e-9bdc-bbd870d79e38", - "start": { - "$date": "2021-09-18T18:43:16.000Z" - }, - "end": { - "$date": "2021-09-18T18:55:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "5245c476-5632-4603-8d31-750dee8ad4d4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-18T19:54:55.000Z" - }, - "end": { - "$date": "2021-09-19T04:47:21.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-09-18T19:54:55.000Z" - }, - "end": { - "$date": "2021-09-19T04:47:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5e0edf1c-5f52-40b7-86d6-dfc495b9f5c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-18T20:34:17.000Z" - }, - "end": { - "$date": "2021-09-19T01:07:48.000Z" - }, - "events": [ - { - "uuid": "93fd8562-7104-4c6f-b931-a6e92036fb69", - "start": { - "$date": "2021-09-18T20:34:17.000Z" - }, - "end": { - "$date": "2021-09-18T21:16:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "65e5bb35-8c2b-4f28-a77a-08cad9cb4903", - "start": { - "$date": "2021-09-18T21:16:17.000Z" - }, - "end": { - "$date": "2021-09-18T21:29:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "644a48de-bc9d-4d61-96ea-bdf8a8c35218", - "start": { - "$date": "2021-09-18T21:29:17.000Z" - }, - "end": { - "$date": "2021-09-18T23:49:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c3c7f123-bf43-44cd-a701-a96bfd4cb672", - "start": { - "$date": "2021-09-18T23:49:17.000Z" - }, - "end": { - "$date": "2021-09-19T00:05:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1aa15302-6818-4ace-a629-12ddb3f24995", - "start": { - "$date": "2021-09-19T00:05:17.000Z" - }, - "end": { - "$date": "2021-09-19T01:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "d144a87a-4e76-4a70-be2e-517460c97750", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T20:44:45.000Z" - }, - "end": { - "$date": "2021-09-18T21:22:56.000Z" - }, - "events": [ - { - "uuid": "cd1dd343-f59a-4749-aa0c-f003d3815c9f", - "start": { - "$date": "2021-09-18T20:44:45.000Z" - }, - "end": { - "$date": "2021-09-18T21:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "bb3682df-7cdc-4d08-934b-88cb957246c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-18T21:09:51.000Z" - }, - "end": { - "$date": "2021-09-18T22:23:27.000Z" - }, - "events": [ - { - "uuid": "c68e7bce-eef4-44b1-8e38-9a7659a34a4a", - "start": { - "$date": "2021-09-18T21:09:51.000Z" - }, - "end": { - "$date": "2021-09-18T22:23:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e1c0595b-dcfc-4070-889b-33199e691da6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-18T21:50:29.000Z" - }, - "end": { - "$date": "2021-09-19T04:43:33.000Z" - }, - "events": [ - { - "uuid": "d896849f-c3ef-43a4-9e95-74506075c5a7", - "start": { - "$date": "2021-09-18T21:50:29.000Z" - }, - "end": { - "$date": "2021-09-19T04:43:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3715cf60-0f44-4bf3-962c-3aeb0aa54a7f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-18T21:57:01.000Z" - }, - "end": { - "$date": "2021-09-19T03:28:44.000Z" - }, - "events": [ - { - "uuid": "1478dd39-570d-47f8-8910-1fcaf3acc799", - "start": { - "$date": "2021-09-18T21:57:01.000Z" - }, - "end": { - "$date": "2021-09-19T03:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "92e2a2f2-1a41-4900-9bdb-44c4466cc014", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-18T22:00:02.000Z" - }, - "end": { - "$date": "2021-09-19T03:02:32.000Z" - }, - "events": [ - { - "uuid": "17c911fe-28af-4219-beb2-c5df6667c18a", - "start": { - "$date": "2021-09-18T22:00:02.000Z" - }, - "end": { - "$date": "2021-09-19T03:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0d43b78a-27f6-4bd9-ae4c-f42669986cc8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-18T23:08:27.000Z" - }, - "end": { - "$date": "2021-09-19T00:01:33.000Z" - }, - "events": [ - { - "uuid": "81e5c13a-c2f2-48a9-8eca-5a5c20f29aa5", - "start": { - "$date": "2021-09-18T23:08:27.000Z" - }, - "end": { - "$date": "2021-09-19T00:01:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c21f069b-80de-400f-b97b-e4534e378e95", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-18T23:20:06.000Z" - }, - "end": { - "$date": "2021-09-19T00:34:42.000Z" - }, - "events": [ - { - "uuid": "4a9e9ad4-2a0d-41c5-8de8-73a1be26a23c", - "start": { - "$date": "2021-09-18T23:20:06.000Z" - }, - "end": { - "$date": "2021-09-19T00:34:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4a357b2-9623-453a-9cba-42cc7d4f37c5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-19T00:54:31.000Z" - }, - "end": { - "$date": "2021-09-19T01:36:11.000Z" - }, - "events": [ - { - "uuid": "0cf2a7b9-15b3-4510-8bb8-c5a204cf5802", - "start": { - "$date": "2021-09-19T00:54:31.000Z" - }, - "end": { - "$date": "2021-09-19T01:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c7a67716-8fcf-4c4e-a480-4ac06254d2fc", - "uuid": "944f2f90-e9e7-4c9b-9d36-03219633fcb1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T01:10:38.000Z" - }, - "end": { - "$date": "2021-09-19T01:56:54.000Z" - }, - "events": [ - { - "uuid": "53834b21-d795-4d92-b9f2-0cb228df73d8", - "start": { - "$date": "2021-09-19T01:10:38.000Z" - }, - "end": { - "$date": "2021-09-19T01:56:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f77d06d-aeaf-46f5-a644-6c0403002b20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T01:22:19.000Z" - }, - "end": { - "$date": "2021-09-19T01:24:20.000Z" - }, - "events": [ - { - "uuid": "b1964a46-a530-4a28-aeb3-6b4648b27082", - "start": { - "$date": "2021-09-19T01:22:19.000Z" - }, - "end": { - "$date": "2021-09-19T01:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "230c63d0-e5d9-49e9-bb4f-ab4e53b94d6a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T02:10:52.000Z" - }, - "end": { - "$date": "2021-09-19T02:44:23.000Z" - }, - "events": [ - { - "uuid": "83e7f90b-9b38-4190-9fa3-92848e3d230a", - "start": { - "$date": "2021-09-19T02:10:52.000Z" - }, - "end": { - "$date": "2021-09-19T02:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b589b46c-7020-4bd2-a3c6-9289de5d8c8f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T02:45:55.000Z" - }, - "end": { - "$date": "2021-09-19T02:46:10.000Z" - }, - "events": [ - { - "uuid": "c5c22d29-3564-4642-a643-c327dd9ea58e", - "start": { - "$date": "2021-09-19T02:45:55.000Z" - }, - "end": { - "$date": "2021-09-19T02:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d943e8cc-976c-4344-938c-f1f4bbfba157", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T02:46:25.000Z" - }, - "end": { - "$date": "2021-09-19T03:21:25.000Z" - }, - "events": [ - { - "uuid": "c774b7e4-8eae-4abf-98c7-3c2d0bda554d", - "start": { - "$date": "2021-09-19T02:46:25.000Z" - }, - "end": { - "$date": "2021-09-19T03:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e217fd41-0286-4ecc-bf72-0b3226149814", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T02:53:04.000Z" - }, - "end": { - "$date": "2021-09-19T03:24:45.000Z" - }, - "events": [ - { - "uuid": "1240f1c4-e900-4061-acc5-6e0b43c64ea4", - "start": { - "$date": "2021-09-19T02:53:04.000Z" - }, - "end": { - "$date": "2021-09-19T03:24:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c472a636-5ee8-429d-9021-2556f9c6bc99", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-19T03:02:45.000Z" - }, - "end": { - "$date": "2021-09-19T07:49:31.000Z" - }, - "events": [ - { - "uuid": "61aded35-95ef-48ef-996e-22b101be2a85", - "start": { - "$date": "2021-09-19T03:02:45.000Z" - }, - "end": { - "$date": "2021-09-19T05:04:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2db7ff00-a91b-4dc0-ae43-1e59077fd374", - "start": { - "$date": "2021-09-19T05:04:45.000Z" - }, - "end": { - "$date": "2021-09-19T05:15:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce2b02a4-edbb-4d52-a18d-00ad62a5903f", - "start": { - "$date": "2021-09-19T05:15:45.000Z" - }, - "end": { - "$date": "2021-09-19T07:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "43e6c5a9-5775-4f47-899e-e0fc1d0c48a5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T04:46:27.000Z" - }, - "end": { - "$date": "2021-09-19T04:46:52.000Z" - }, - "events": [ - { - "uuid": "b793c161-a59b-4efa-aa13-72167e71a222", - "start": { - "$date": "2021-09-19T04:46:27.000Z" - }, - "end": { - "$date": "2021-09-19T04:46:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2beda40f-b2d3-4914-a07d-f81b43e893fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T03:30:46.000Z" - }, - "end": { - "$date": "2021-09-19T04:04:14.000Z" - }, - "events": [ - { - "uuid": "edf1ccc1-2ba3-4ce5-8813-fdc5d927cca0", - "start": { - "$date": "2021-09-19T03:30:46.000Z" - }, - "end": { - "$date": "2021-09-19T04:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b554a57c-7f67-4102-bd57-da077895496d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-19T03:29:00.000Z" - }, - "end": { - "$date": "2021-09-19T05:47:01.000Z" - }, - "events": [ - { - "uuid": "7c3f0a9e-21ba-40f2-9312-8d5b922190a8", - "start": { - "$date": "2021-09-19T03:29:00.000Z" - }, - "end": { - "$date": "2021-09-19T05:32:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9fcf9979-ffb1-42c4-80e3-184b802c07ac", - "start": { - "$date": "2021-09-19T05:32:00.000Z" - }, - "end": { - "$date": "2021-09-19T05:37:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97bc998e-f580-49e8-a227-764b18c16fb1", - "start": { - "$date": "2021-09-19T05:37:00.000Z" - }, - "end": { - "$date": "2021-09-19T05:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "41793850-1b10-4f81-b9b8-ff06b03563b4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-19T03:52:51.000Z" - }, - "end": { - "$date": "2021-09-19T04:13:11.000Z" - }, - "events": [ - { - "uuid": "d9182b14-b67e-42ea-8374-7fcd0ddaeee2", - "start": { - "$date": "2021-09-19T03:52:51.000Z" - }, - "end": { - "$date": "2021-09-19T04:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e1bab8e0-b756-4b26-b082-cd6a31576113", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-19T08:09:15.000Z" - }, - "end": { - "$date": "2021-09-19T20:10:47.000Z" - }, - "events": [ - { - "uuid": "78e33575-85c1-4e70-bbb5-17067246e68b", - "start": { - "$date": "2021-09-19T08:09:15.000Z" - }, - "end": { - "$date": "2021-09-19T11:17:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9fbe3a03-bc38-47e5-a3d1-dd4571351556", - "start": { - "$date": "2021-09-19T11:17:15.000Z" - }, - "end": { - "$date": "2021-09-19T22:22:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c17a847b-4b72-409e-9a94-1acb6a0b917b", - "start": { - "$date": "2021-09-19T22:22:15.000Z" - }, - "end": { - "$date": "2021-09-19T22:29:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "208f25ca-0b38-49e1-9408-f6dfe670633e", - "start": { - "$date": "2021-09-19T22:29:15.000Z" - }, - "end": { - "$date": "2021-09-19T23:02:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7288b3cc-1bff-445e-bf21-94e660387ed1", - "start": { - "$date": "2021-09-19T23:02:15.000Z" - }, - "end": { - "$date": "2021-09-19T20:10:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "daf0986b-cf7c-4a77-a57a-bdb83d09300e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T05:29:25.000Z" - }, - "end": { - "$date": "2021-09-19T07:48:37.000Z" - }, - "events": [ - { - "uuid": "ba715230-acad-4caa-bc68-4df383f97d66", - "start": { - "$date": "2021-09-19T05:29:25.000Z" - }, - "end": { - "$date": "2021-09-19T07:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7d115c2c-a713-4e4f-bc36-af784d853c9f", - "uuid": "2ee63059-53e0-486d-b021-3877ee439eb3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-19T05:31:33.000Z" - }, - "end": { - "$date": "2021-09-19T06:21:21.000Z" - }, - "events": [ - { - "uuid": "230dcf41-407b-4f7c-8810-b3835df033f4", - "start": { - "$date": "2021-09-19T05:31:33.000Z" - }, - "end": { - "$date": "2021-09-19T06:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b70110d0-b64e-496b-b051-b51a95083097", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T05:46:31.000Z" - }, - "end": { - "$date": "2021-09-19T07:19:35.000Z" - }, - "events": [ - { - "uuid": "312c6479-f3e8-4c3e-b897-3df66875658d", - "start": { - "$date": "2021-09-19T05:46:31.000Z" - }, - "end": { - "$date": "2021-09-19T07:19:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ac2465d8-1a8d-4304-9743-739c455fa0b1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-19T05:51:02.000Z" - }, - "end": { - "$date": "2021-09-19T07:48:26.000Z" - }, - "events": [ - { - "uuid": "f9ce95ee-c1e5-455c-a8c1-e9f1f82c032a", - "start": { - "$date": "2021-09-19T05:51:02.000Z" - }, - "end": { - "$date": "2021-09-19T07:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a430d937-9b17-4c06-a4b6-a8a8829bc6c6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-19T07:49:56.000Z" - }, - "end": { - "$date": "2021-09-19T07:57:57.000Z" - }, - "events": [ - { - "uuid": "dc1523a8-d6df-432d-9e6e-b20a213d7a47", - "start": { - "$date": "2021-09-19T07:49:56.000Z" - }, - "end": { - "$date": "2021-09-19T07:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e293c9dc-8a1b-41fa-a5d5-ccc239d4c65f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-19T07:58:07.000Z" - }, - "end": { - "$date": "2021-09-19T08:45:29.000Z" - }, - "events": [ - { - "uuid": "969c97d7-c007-4038-a882-405553652f0e", - "start": { - "$date": "2021-09-19T07:58:07.000Z" - }, - "end": { - "$date": "2021-09-19T08:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "9257ef33-9fe8-40d5-bcb4-f53802773f82", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-19T08:50:58.000Z" - }, - "end": { - "$date": "2021-09-19T13:47:31.000Z" - }, - "events": [ - { - "uuid": "a10340fd-ba34-4de3-a6b0-a61cc7852c65", - "start": { - "$date": "2021-09-19T08:50:58.000Z" - }, - "end": { - "$date": "2021-09-19T10:05:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e389af03-ec5b-43eb-b37f-62364c8de3ae", - "start": { - "$date": "2021-09-19T10:05:58.000Z" - }, - "end": { - "$date": "2021-09-19T10:07:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d9ea74e-7e5d-4c80-850d-fba636c5ba01", - "start": { - "$date": "2021-09-19T10:07:58.000Z" - }, - "end": { - "$date": "2021-09-19T10:27:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0bec6549-c2f7-42cd-a4cd-7f4ef0681236", - "start": { - "$date": "2021-09-19T10:27:58.000Z" - }, - "end": { - "$date": "2021-09-19T10:49:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b7e9d3c-f0d0-477d-8169-37d3804afcac", - "start": { - "$date": "2021-09-19T10:49:58.000Z" - }, - "end": { - "$date": "2021-09-19T12:46:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c2148bba-6e9d-4d85-b318-8ba78dbe125d", - "start": { - "$date": "2021-09-19T12:46:58.000Z" - }, - "end": { - "$date": "2021-09-19T13:00:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74dd1eb0-f50a-431a-8dd2-572d04243fa4", - "start": { - "$date": "2021-09-19T13:00:58.000Z" - }, - "end": { - "$date": "2021-09-19T13:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "12567406-62b6-4edc-8b86-ad5674d3bdf7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-19T13:35:51.000Z" - }, - "end": { - "$date": "2021-09-19T13:58:57.000Z" - }, - "events": [ - { - "uuid": "829e372e-92f2-4acd-b0e2-93d578e78137", - "start": { - "$date": "2021-09-19T13:35:51.000Z" - }, - "end": { - "$date": "2021-09-19T13:58:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "b29569ee-2032-46b7-86bb-e5d898384542", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-19T13:38:26.000Z" - }, - "end": { - "$date": "2021-09-19T15:59:32.000Z" - }, - "events": [ - { - "uuid": "b51e3e3c-130b-49bb-9074-723a8549f163", - "start": { - "$date": "2021-09-19T13:38:26.000Z" - }, - "end": { - "$date": "2021-09-19T15:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", - "uuid": "8c41e882-8b13-4aa3-92fc-947ad3a080b0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-19T13:55:38.000Z" - }, - "end": { - "$date": "2021-09-19T14:45:14.000Z" - }, - "events": [ - { - "uuid": "40570510-0434-4ee2-aa98-97a00faeb223", - "start": { - "$date": "2021-09-19T13:55:38.000Z" - }, - "end": { - "$date": "2021-09-19T14:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "86e41b36-d860-479d-9443-f9299d051eba", - "uuid": "afaa0cd6-37e6-4d5e-acbc-effcee08a310", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-19T14:04:35.000Z" - }, - "end": { - "$date": "2021-09-19T14:19:05.000Z" - }, - "events": [ - { - "uuid": "93e7d1eb-f1e6-4be9-9963-7228d117fb1c", - "start": { - "$date": "2021-09-19T14:04:35.000Z" - }, - "end": { - "$date": "2021-09-19T14:19:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50a6d17c-e00c-4e01-8d2e-4e3f61685471", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-19T15:36:37.000Z" - }, - "end": { - "$date": "2021-09-19T16:01:02.000Z" - }, - "events": [ - { - "uuid": "fea1ff1b-cf38-40b0-8c99-9e8b4c08a0f5", - "start": { - "$date": "2021-09-19T15:36:37.000Z" - }, - "end": { - "$date": "2021-09-19T16:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f02b44a7-8151-4f1b-87d4-4bedf88e916e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-19T16:01:48.000Z" - }, - "end": { - "$date": "2021-09-19T16:20:08.000Z" - }, - "events": [ - { - "uuid": "149b5373-af80-4f9b-a8d5-ebc1dc46f2d9", - "start": { - "$date": "2021-09-19T16:01:48.000Z" - }, - "end": { - "$date": "2021-09-19T16:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "136092e8-eb4c-491f-a9e5-ef7d09bf3def", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-19T16:34:18.000Z" - }, - "end": { - "$date": "2021-09-19T17:35:19.000Z" - }, - "events": [ - { - "uuid": "3c7fadfc-4383-416e-910a-55695459be8c", - "start": { - "$date": "2021-09-19T16:34:18.000Z" - }, - "end": { - "$date": "2021-09-19T17:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5089be8-91d4-4b95-863f-d8b9d7b0f942", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T18:05:12.000Z" - }, - "end": { - "$date": "2021-09-19T18:41:20.000Z" - }, - "events": [ - { - "uuid": "00d81343-3256-4f48-b29e-1be17db67b55", - "start": { - "$date": "2021-09-19T18:05:12.000Z" - }, - "end": { - "$date": "2021-09-19T18:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "05c2bc7e-5fdb-49ed-bba8-d03b41f91175", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T18:17:33.000Z" - }, - "end": { - "$date": "2021-09-19T20:35:04.000Z" - }, - "events": [ - { - "uuid": "465403c9-6b6f-4666-877d-eda1059cad77", - "start": { - "$date": "2021-09-19T18:17:33.000Z" - }, - "end": { - "$date": "2021-09-19T20:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b88e5621-794e-4fcb-a017-ca8286b2f1d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-19T18:29:06.000Z" - }, - "end": { - "$date": "2021-09-19T18:48:56.000Z" - }, - "events": [ - { - "uuid": "f2ee4142-f5e1-4b52-ad20-62e5e378a8a6", - "start": { - "$date": "2021-09-19T18:29:06.000Z" - }, - "end": { - "$date": "2021-09-19T18:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bad82743-3900-4a4a-8610-726bce0fc7e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T18:38:54.000Z" - }, - "end": { - "$date": "2021-09-19T18:57:00.000Z" - }, - "events": [ - { - "uuid": "81880c33-384e-40b9-9e18-04c83138487e", - "start": { - "$date": "2021-09-19T18:38:54.000Z" - }, - "end": { - "$date": "2021-09-19T18:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "990bc8f4-dec5-4a26-bf5f-22d766755ec1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T18:46:12.000Z" - }, - "end": { - "$date": "2021-09-19T19:20:06.000Z" - }, - "events": [ - { - "uuid": "42f80de4-d3fa-4ce9-90c8-4588eb769fe5", - "start": { - "$date": "2021-09-19T18:46:12.000Z" - }, - "end": { - "$date": "2021-09-19T19:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4b57a2c6-c0d2-43c9-8a3e-860ff81bad7a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-19T19:00:56.000Z" - }, - "end": { - "$date": "2021-09-19T22:24:01.000Z" - }, - "events": [ - { - "uuid": "912489ce-77b2-44b7-8b16-38fc43ad756b", - "start": { - "$date": "2021-09-19T19:00:56.000Z" - }, - "end": { - "$date": "2021-09-19T22:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e33b38d3-f589-4d71-b467-aaf569c30774", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T19:21:16.000Z" - }, - "end": { - "$date": "2021-09-19T20:20:51.000Z" - }, - "events": [ - { - "uuid": "bde4cb2e-e34e-4c05-aadd-f69dc9650ce8", - "start": { - "$date": "2021-09-19T19:21:16.000Z" - }, - "end": { - "$date": "2021-09-19T20:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "c2f3005e-28c0-4585-a2ba-81305f90cfe2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-19T20:27:41.000Z" - }, - "end": { - "$date": "2021-09-19T21:04:24.000Z" - }, - "events": [ - { - "uuid": "24f52f7a-5c84-49c0-ba6b-b89bdfd86932", - "start": { - "$date": "2021-09-19T20:27:41.000Z" - }, - "end": { - "$date": "2021-09-19T21:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "61f176b5-1ab2-42e5-8d00-eccfd53d329b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-19T22:01:11.000Z" - }, - "end": { - "$date": "2021-09-19T23:29:25.000Z" - }, - "events": [ - { - "uuid": "4a1a5d6c-6a88-4260-b581-b1af3890bdcd", - "start": { - "$date": "2021-09-19T22:01:11.000Z" - }, - "end": { - "$date": "2021-09-19T23:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "b659413b-deda-42e6-af9f-f8be0ad17010", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-19T22:19:18.000Z" - }, - "end": { - "$date": "2021-09-19T22:23:14.000Z" - }, - "events": [ - { - "uuid": "8c7dec0b-5c5c-4b43-b329-bdf225f5df06", - "start": { - "$date": "2021-09-19T22:19:18.000Z" - }, - "end": { - "$date": "2021-09-19T22:23:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8142bed6-ff5a-45be-9bf3-f6de2650160e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-19T22:30:11.000Z" - }, - "end": { - "$date": "2021-09-19T22:46:31.000Z" - }, - "events": [ - { - "uuid": "6ff3804d-cd78-416a-b21b-b15d28e01356", - "start": { - "$date": "2021-09-19T22:30:11.000Z" - }, - "end": { - "$date": "2021-09-19T22:46:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "67d90947-21a9-43ea-adb4-2f99c92d63b8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-19T22:26:14.000Z" - }, - "end": { - "$date": "2021-09-19T23:48:45.000Z" - }, - "events": [ - { - "uuid": "5668a08e-6fcc-4f4a-9972-efb36529a011", - "start": { - "$date": "2021-09-19T22:26:14.000Z" - }, - "end": { - "$date": "2021-09-19T22:57:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14d0be94-8035-4361-bba8-417971d31f43", - "start": { - "$date": "2021-09-19T22:57:14.000Z" - }, - "end": { - "$date": "2021-09-19T23:02:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f979ce0-e2f8-4fd9-8a54-ed6695db599a", - "start": { - "$date": "2021-09-19T23:02:14.000Z" - }, - "end": { - "$date": "2021-09-19T23:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90a2fa23-49af-4fbe-a1a5-21a24a94ba1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T22:34:09.000Z" - }, - "end": { - "$date": "2021-09-19T22:34:59.000Z" - }, - "events": [ - { - "uuid": "2e19f808-9f24-4553-b261-faf706b94cd0", - "start": { - "$date": "2021-09-19T22:34:09.000Z" - }, - "end": { - "$date": "2021-09-19T22:34:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "903d7efb-c41b-4309-8c9e-b09162554381", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T22:38:45.000Z" - }, - "end": { - "$date": "2021-09-19T23:11:19.000Z" - }, - "events": [ - { - "uuid": "c300f6b4-8a22-4258-a04e-e19841aeef48", - "start": { - "$date": "2021-09-19T22:38:45.000Z" - }, - "end": { - "$date": "2021-09-19T23:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8672638-1c27-4120-bf56-5cac0adfc526", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T23:12:14.000Z" - }, - "end": { - "$date": "2021-09-19T23:19:38.000Z" - }, - "events": [ - { - "uuid": "ab027aa1-e4e2-427f-8869-d1367d501334", - "start": { - "$date": "2021-09-19T23:12:14.000Z" - }, - "end": { - "$date": "2021-09-19T23:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "db802d20-e3e2-496d-9121-8dfc25313e22", - "uuid": "6f9768bd-1cd8-44ab-9b87-703b8043c989", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-19T23:26:10.000Z" - }, - "end": { - "$date": "2021-09-20T00:04:27.000Z" - }, - "events": [ - { - "uuid": "bb70e2dc-8432-4ecf-b946-6151198631be", - "start": { - "$date": "2021-09-19T23:26:10.000Z" - }, - "end": { - "$date": "2021-09-20T00:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "43734a43-b51f-49bf-bd23-162c530594ec", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-19T23:30:35.000Z" - }, - "end": { - "$date": "2021-09-19T23:39:20.000Z" - }, - "events": [ - { - "uuid": "9fb7b83d-77d7-4a9e-a781-6cb5271847ec", - "start": { - "$date": "2021-09-19T23:30:35.000Z" - }, - "end": { - "$date": "2021-09-19T23:39:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "60577717-a6f6-4e6d-a39f-85a14d7b4f57", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-19T23:38:07.000Z" - }, - "end": { - "$date": "2021-09-20T01:03:22.000Z" - }, - "events": [ - { - "uuid": "348de0be-2ba9-4002-8224-aa5d8020ffc4", - "start": { - "$date": "2021-09-19T23:38:07.000Z" - }, - "end": { - "$date": "2021-09-20T01:03:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "60d16e3f-e00b-42bb-b65e-70b502ee23c2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-19T23:39:50.000Z" - }, - "end": { - "$date": "2021-09-20T04:18:07.000Z" - }, - "events": [ - { - "uuid": "f22534a4-4aca-4eeb-aeeb-74f270bbc239", - "start": { - "$date": "2021-09-19T23:39:50.000Z" - }, - "end": { - "$date": "2021-09-20T01:24:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8a63f5a-355f-4759-8893-2fca02621274", - "start": { - "$date": "2021-09-20T01:24:50.000Z" - }, - "end": { - "$date": "2021-09-20T01:29:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4773c894-23f5-4efe-8ca7-39e22ca09325", - "start": { - "$date": "2021-09-20T01:29:50.000Z" - }, - "end": { - "$date": "2021-09-20T01:57:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b9b3d13-8e43-458a-9acf-26ef490dfd40", - "start": { - "$date": "2021-09-20T01:57:50.000Z" - }, - "end": { - "$date": "2021-09-20T02:01:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a1ccbb0-b1e7-438d-890d-202147b9ac27", - "start": { - "$date": "2021-09-20T02:01:50.000Z" - }, - "end": { - "$date": "2021-09-20T04:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "a9ea93cb-e8b0-430f-84c9-26ea24cdac9b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-19T23:52:11.000Z" - }, - "end": { - "$date": "2021-09-20T03:41:46.000Z" - }, - "events": [ - { - "uuid": "f1f0d721-1814-494a-9f2d-26d4bc71cbd4", - "start": { - "$date": "2021-09-19T23:52:11.000Z" - }, - "end": { - "$date": "2021-09-20T03:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fd7df7a-db2d-46c5-b56c-8fa5c899dab8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-20T00:28:45.000Z" - }, - "end": { - "$date": "2021-09-20T01:05:34.000Z" - }, - "events": [ - { - "uuid": "c690237a-efd2-4727-bdcb-d443083b173a", - "start": { - "$date": "2021-09-20T00:28:45.000Z" - }, - "end": { - "$date": "2021-09-20T01:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd8141c8-4443-4575-ae3b-7d4ef3ee6708", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T00:42:42.000Z" - }, - "end": { - "$date": "2021-09-20T01:16:23.000Z" - }, - "events": [ - { - "uuid": "3182f7dd-bde0-45af-b4a1-593a4436b300", - "start": { - "$date": "2021-09-20T00:42:42.000Z" - }, - "end": { - "$date": "2021-09-20T01:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "594021af-7f9d-4795-9440-582cb63038d6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-20T02:09:59.000Z" - }, - "end": { - "$date": "2021-09-20T02:31:32.000Z" - }, - "events": [ - { - "uuid": "528931e9-3455-4d07-9301-f8b092701c1c", - "start": { - "$date": "2021-09-20T02:09:59.000Z" - }, - "end": { - "$date": "2021-09-20T02:31:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cd1f585-1de1-4bfd-897f-fafb05314149", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T02:26:09.000Z" - }, - "end": { - "$date": "2021-09-20T02:57:48.000Z" - }, - "events": [ - { - "uuid": "ea95a0eb-b9cb-403f-9aa8-ee0c98ad2c53", - "start": { - "$date": "2021-09-20T02:26:09.000Z" - }, - "end": { - "$date": "2021-09-20T02:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e59fd7a5-57ce-4c13-a966-8f635cb5e295", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-20T02:23:25.000Z" - }, - "end": { - "$date": "2021-09-20T03:12:23.000Z" - }, - "events": [ - { - "uuid": "d6117e8f-f837-4e91-b232-7c2e0b608181", - "start": { - "$date": "2021-09-20T02:23:25.000Z" - }, - "end": { - "$date": "2021-09-20T03:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "73f57c00-8c1e-42ee-871d-55cee9f8b015", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-20T02:26:08.000Z" - }, - "end": { - "$date": "2021-09-20T03:28:14.000Z" - }, - "events": [ - { - "uuid": "eef22923-7a42-41c5-8a8a-185de88d5f77", - "start": { - "$date": "2021-09-20T02:26:08.000Z" - }, - "end": { - "$date": "2021-09-20T03:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "879855b4-5222-44b8-b733-f5aae431f923", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-20T02:36:34.000Z" - }, - "end": { - "$date": "2021-09-20T03:13:08.000Z" - }, - "events": [ - { - "uuid": "6cb58709-5058-46e0-ab24-b736bb718536", - "start": { - "$date": "2021-09-20T02:36:34.000Z" - }, - "end": { - "$date": "2021-09-20T03:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "49c1d9da-13ca-4ea2-8200-1a1d687a6d13", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-20T03:28:49.000Z" - }, - "end": { - "$date": "2021-09-20T04:50:17.000Z" - }, - "events": [ - { - "uuid": "0322bfea-f914-4cd6-8590-cddfdb5cf98f", - "start": { - "$date": "2021-09-20T03:28:49.000Z" - }, - "end": { - "$date": "2021-09-20T04:50:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "536c4ad0-15d7-4e10-aa79-9802fd4caa78", - "uuid": "9d8b7ddf-f9ce-4f7f-95a9-c79a486e9e17", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-20T03:29:29.000Z" - }, - "end": { - "$date": "2021-09-20T05:28:35.000Z" - }, - "events": [ - { - "uuid": "2216c579-149a-4e3a-8bad-8e5ceffc0f31", - "start": { - "$date": "2021-09-20T03:29:29.000Z" - }, - "end": { - "$date": "2021-09-20T05:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d075fb18-296d-4382-9310-c6cad74feb38", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-20T04:58:14.000Z" - }, - "end": { - "$date": "2021-09-20T05:26:25.000Z" - }, - "events": [ - { - "uuid": "b0a1c7a5-fc3b-4fa0-a2c2-56d01862c521", - "start": { - "$date": "2021-09-20T04:58:14.000Z" - }, - "end": { - "$date": "2021-09-20T05:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "8c534a04-dc60-4470-a5c5-49575d16668d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-20T04:57:28.000Z" - }, - "end": { - "$date": "2021-09-20T05:53:45.000Z" - }, - "events": [ - { - "uuid": "28c85e6b-6de7-4a89-ab88-e222b2959598", - "start": { - "$date": "2021-09-20T04:57:28.000Z" - }, - "end": { - "$date": "2021-09-20T05:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c7c9f07c-8e7d-4e4f-bba6-4e3f14c2e467", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-20T05:20:51.000Z" - }, - "end": { - "$date": "2021-09-20T06:16:02.000Z" - }, - "events": [ - { - "uuid": "796ae050-e2fd-4b2e-af5d-639e36227e1c", - "start": { - "$date": "2021-09-20T05:20:51.000Z" - }, - "end": { - "$date": "2021-09-20T06:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba299219-d969-4678-8099-b28b7c68c1ef", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-20T05:29:44.000Z" - }, - "end": { - "$date": "2021-09-20T07:22:39.000Z" - }, - "events": [ - { - "uuid": "27fbe6cb-1da3-42ae-b554-8ef78c18cc66", - "start": { - "$date": "2021-09-20T05:29:44.000Z" - }, - "end": { - "$date": "2021-09-20T07:22:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "357f45e7-67c6-46c2-ae64-814386842b20", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-20T05:42:21.000Z" - }, - "end": { - "$date": "2021-09-20T06:03:37.000Z" - }, - "events": [ - { - "uuid": "3eeb5219-8026-4684-b0bd-752b46182038", - "start": { - "$date": "2021-09-20T05:42:21.000Z" - }, - "end": { - "$date": "2021-09-20T06:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d13e51b-4f77-4f8d-8984-c2b5bbc83ddc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T14:31:04.000Z" - }, - "end": { - "$date": "2021-09-20T15:04:24.000Z" - }, - "events": [ - { - "uuid": "c005956d-1ae9-4b56-8a38-c7860ba8b727", - "start": { - "$date": "2021-09-20T14:31:04.000Z" - }, - "end": { - "$date": "2021-09-20T15:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16525a7d-5919-4521-ab75-f0fc872096d8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T15:14:20.000Z" - }, - "end": { - "$date": "2021-09-20T15:43:10.000Z" - }, - "events": [ - { - "uuid": "09736ae8-43e3-4cf3-b2c1-aa26bdea149f", - "start": { - "$date": "2021-09-20T15:14:20.000Z" - }, - "end": { - "$date": "2021-09-20T15:43:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "374b9741-cfcb-4e46-bc7d-19e6991206ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T15:50:00.000Z" - }, - "end": { - "$date": "2021-09-20T16:15:45.000Z" - }, - "events": [ - { - "uuid": "00c6acc2-8fb8-4365-bc54-4aa03de76bbe", - "start": { - "$date": "2021-09-20T15:50:00.000Z" - }, - "end": { - "$date": "2021-09-20T16:15:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4282a73f-04c4-4126-a852-e8bceb9deb5e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-20T16:10:27.000Z" - }, - "end": { - "$date": "2021-09-20T16:44:38.000Z" - }, - "events": [ - { - "uuid": "6ccb4a85-0ee5-4b06-a17b-8bd9e3ac2a8c", - "start": { - "$date": "2021-09-20T16:10:27.000Z" - }, - "end": { - "$date": "2021-09-20T16:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17ccad45-3c3b-44a9-aa5c-5cbff6004a1b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T16:55:59.000Z" - }, - "end": { - "$date": "2021-09-20T17:29:49.000Z" - }, - "events": [ - { - "uuid": "a6512961-8284-42d1-a0f2-5be6adcb9494", - "start": { - "$date": "2021-09-20T16:55:59.000Z" - }, - "end": { - "$date": "2021-09-20T17:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0a6469a-d786-49dd-a54d-6b315a1cfdb2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T19:10:00.000Z" - }, - "end": { - "$date": "2021-09-20T19:34:45.000Z" - }, - "events": [ - { - "uuid": "4b2dfc54-1d85-4b46-80c3-a1d159aecdf1", - "start": { - "$date": "2021-09-20T19:10:00.000Z" - }, - "end": { - "$date": "2021-09-20T19:34:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f97bd62-051b-4c09-a8bc-a1db731a9654", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T19:46:26.000Z" - }, - "end": { - "$date": "2021-09-20T20:11:21.000Z" - }, - "events": [ - { - "uuid": "d73cd605-61fc-41eb-a7a5-76fdbf8e503a", - "start": { - "$date": "2021-09-20T19:46:26.000Z" - }, - "end": { - "$date": "2021-09-20T20:11:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "833fde41-77de-422f-a28b-782b942cb3da", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-20T20:12:11.000Z" - }, - "end": { - "$date": "2021-09-20T21:17:10.000Z" - }, - "events": [ - { - "uuid": "1928618d-4477-44ae-86ef-3e847bc2da15", - "start": { - "$date": "2021-09-20T20:12:11.000Z" - }, - "end": { - "$date": "2021-09-20T21:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9598c052-6187-45f5-8566-e9422d3481f2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-20T21:47:41.000Z" - }, - "end": { - "$date": "2021-09-20T22:18:52.000Z" - }, - "events": [ - { - "uuid": "a74d1cdb-f14f-4316-b43e-da8331a8b41c", - "start": { - "$date": "2021-09-20T21:47:41.000Z" - }, - "end": { - "$date": "2021-09-20T22:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "7c95b06d-5bcf-4898-b544-3bec5c09ebde", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-20T22:25:47.000Z" - }, - "end": { - "$date": "2021-09-21T01:39:54.000Z" - }, - "events": [ - { - "uuid": "ed805bf8-faa3-439a-92e1-f0d6178bfa3e", - "start": { - "$date": "2021-09-20T22:25:47.000Z" - }, - "end": { - "$date": "2021-09-21T01:39:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6979b8eb-0233-4562-888d-bc2b3a822a8c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-20T22:27:55.000Z" - }, - "end": { - "$date": "2021-09-21T00:24:38.000Z" - }, - "events": [ - { - "uuid": "c46058e2-8927-4f8b-a1f3-7dc4ea8654e8", - "start": { - "$date": "2021-09-20T22:27:55.000Z" - }, - "end": { - "$date": "2021-09-21T00:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b2712575-5742-4903-a7bd-dff7a7adc0b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-20T23:33:14.000Z" - }, - "end": { - "$date": "2021-09-21T00:28:28.000Z" - }, - "events": [ - { - "uuid": "c3750419-3b12-4d39-a629-fe0cea77f3b4", - "start": { - "$date": "2021-09-20T23:33:14.000Z" - }, - "end": { - "$date": "2021-09-21T00:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3033d5c-d4f2-41b7-a522-d5b2959ee4bb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T00:40:34.000Z" - }, - "end": { - "$date": "2021-09-21T01:07:49.000Z" - }, - "events": [ - { - "uuid": "8975d961-aa36-4ed5-afac-8823df4018d6", - "start": { - "$date": "2021-09-21T00:40:34.000Z" - }, - "end": { - "$date": "2021-09-21T01:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "815cf2cc-e26d-425a-a0a5-530a88a2af85", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-21T01:01:11.000Z" - }, - "end": { - "$date": "2021-09-21T04:36:39.000Z" - }, - "events": [ - { - "uuid": "1eab5e6f-b34b-46f8-b994-9eb9eb88405f", - "start": { - "$date": "2021-09-21T01:01:11.000Z" - }, - "end": { - "$date": "2021-09-21T04:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2bd86ce-abba-4ab6-a209-18cb5c22d28f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T01:55:58.000Z" - }, - "end": { - "$date": "2021-09-21T02:23:18.000Z" - }, - "events": [ - { - "uuid": "2340ea65-8e1d-4636-b9c4-d82303c3e20b", - "start": { - "$date": "2021-09-21T01:55:58.000Z" - }, - "end": { - "$date": "2021-09-21T02:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6f9028f-6ffe-491b-9325-799137140702", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-21T02:26:12.000Z" - }, - "end": { - "$date": "2021-09-21T02:27:18.000Z" - }, - "events": [ - { - "uuid": "3e9a5086-34d4-4c5d-90cd-f9d853661f87", - "start": { - "$date": "2021-09-21T02:26:12.000Z" - }, - "end": { - "$date": "2021-09-21T02:27:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16a884e6-3e16-47d1-9d27-83ba422d0694", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T02:28:39.000Z" - }, - "end": { - "$date": "2021-09-21T02:55:54.000Z" - }, - "events": [ - { - "uuid": "eda8aeb1-ce22-4aa0-8f7e-df7639cf09f5", - "start": { - "$date": "2021-09-21T02:28:39.000Z" - }, - "end": { - "$date": "2021-09-21T02:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "42c960a4-66e6-43f5-b7e7-b613e21bb5bf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-21T02:25:36.000Z" - }, - "end": { - "$date": "2021-09-21T09:45:55.000Z" - }, - "events": [ - { - "uuid": "05847845-d5ff-4d50-8eac-4873c5edbb48", - "start": { - "$date": "2021-09-21T02:25:36.000Z" - }, - "end": { - "$date": "2021-09-21T09:12:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4be633b3-ee26-4912-985d-d5f33a6b6df3", - "start": { - "$date": "2021-09-21T09:12:36.000Z" - }, - "end": { - "$date": "2021-09-21T09:13:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c631dbaa-3ab5-4eac-bfd2-321bc38fe259", - "start": { - "$date": "2021-09-21T09:13:36.000Z" - }, - "end": { - "$date": "2021-09-21T09:45:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "9862c293-b278-4b29-9df6-e71cc2e81816", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-21T02:54:16.000Z" - }, - "end": { - "$date": "2021-09-21T03:12:17.000Z" - }, - "events": [ - { - "uuid": "adb233ea-6916-4a86-abc8-727b1e5a4a86", - "start": { - "$date": "2021-09-21T02:54:16.000Z" - }, - "end": { - "$date": "2021-09-21T03:12:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "89e9ad52-3e7c-4a83-b7f4-938ba7cf91f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T02:57:14.000Z" - }, - "end": { - "$date": "2021-09-21T03:41:25.000Z" - }, - "events": [ - { - "uuid": "597b7a2b-ce0a-40d7-8a40-216ecc524836", - "start": { - "$date": "2021-09-21T02:57:14.000Z" - }, - "end": { - "$date": "2021-09-21T03:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbffe2b4-e6f1-46cb-b308-1d4c83bc4e19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-21T03:20:12.000Z" - }, - "end": { - "$date": "2021-09-21T03:46:47.000Z" - }, - "events": [ - { - "uuid": "35fa8417-1c94-45ac-851d-b81fa74a58dd", - "start": { - "$date": "2021-09-21T03:20:12.000Z" - }, - "end": { - "$date": "2021-09-21T03:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "264da44a-af5d-44ce-aef6-01d0508305dc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-21T03:37:41.000Z" - }, - "end": { - "$date": "2021-09-21T05:17:49.000Z" - }, - "events": [ - { - "uuid": "8fddfc46-59a0-4a8c-83eb-2ffd19fddf20", - "start": { - "$date": "2021-09-21T03:37:41.000Z" - }, - "end": { - "$date": "2021-09-21T05:17:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d6746977-65af-4901-b0d5-d44a10e625e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-21T03:38:56.000Z" - }, - "end": { - "$date": "2021-09-21T06:03:47.000Z" - }, - "events": [ - { - "uuid": "e74db2f2-3f69-4a96-8e84-c76f459579f7", - "start": { - "$date": "2021-09-21T03:38:56.000Z" - }, - "end": { - "$date": "2021-09-21T06:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a0f0967-aa8c-4349-9e67-e99bd6a5b25b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-21T03:52:38.000Z" - }, - "end": { - "$date": "2021-09-21T04:14:44.000Z" - }, - "events": [ - { - "uuid": "f02c6a25-69dd-4858-9627-32cd00d833c9", - "start": { - "$date": "2021-09-21T03:52:38.000Z" - }, - "end": { - "$date": "2021-09-21T04:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c7d1aab5-217b-49f8-95bc-ba773e21c069", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-21T03:47:52.000Z" - }, - "end": { - "$date": "2021-09-21T06:39:26.000Z" - }, - "events": [ - { - "uuid": "0bde240b-bda7-4729-8343-04fc26ed5e71", - "start": { - "$date": "2021-09-21T03:47:52.000Z" - }, - "end": { - "$date": "2021-09-21T06:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "13a16615-a911-4bf3-8688-7c0cdfb44551", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-21T03:48:10.000Z" - }, - "end": { - "$date": "2021-09-21T06:36:18.000Z" - }, - "events": [ - { - "uuid": "9d9a9d63-7863-4b19-bd22-df1dbf191035", - "start": { - "$date": "2021-09-21T03:48:10.000Z" - }, - "end": { - "$date": "2021-09-21T06:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "586f3b1d-324f-43ee-8968-8c532888dc8e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-21T04:23:37.000Z" - }, - "end": { - "$date": "2021-09-21T05:30:16.000Z" - }, - "events": [ - { - "uuid": "9b427d7b-8449-4c88-bf3d-5bd8a0e585af", - "start": { - "$date": "2021-09-21T04:23:37.000Z" - }, - "end": { - "$date": "2021-09-21T05:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "83b557f0-0192-42e4-99e5-8dd7983632ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-21T04:47:49.000Z" - }, - "end": { - "$date": "2021-09-21T05:43:08.000Z" - }, - "events": [ - { - "uuid": "0faf819d-2af0-4792-9eb3-4b26dd1802b5", - "start": { - "$date": "2021-09-21T04:47:49.000Z" - }, - "end": { - "$date": "2021-09-21T05:43:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9342244d-6cec-4210-9485-9ed23092c271", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-21T05:36:36.000Z" - }, - "end": { - "$date": "2021-09-21T06:10:12.000Z" - }, - "events": [ - { - "uuid": "8e0123a0-3cf2-447b-b4f5-bbe4f1318c43", - "start": { - "$date": "2021-09-21T05:36:36.000Z" - }, - "end": { - "$date": "2021-09-21T06:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7de6ec17-dccb-4815-9f08-1d975f23e0d3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-21T06:39:36.000Z" - }, - "end": { - "$date": "2021-09-21T07:04:03.000Z" - }, - "events": [ - { - "uuid": "7ef0f1b6-4e8b-4775-925b-bbb3b3a54a18", - "start": { - "$date": "2021-09-21T06:39:36.000Z" - }, - "end": { - "$date": "2021-09-21T07:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3d281eb1-19cb-47a7-a3da-a60cb149432f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-21T06:42:19.000Z" - }, - "end": { - "$date": "2021-09-21T08:12:19.000Z" - }, - "events": [ - { - "uuid": "978b41ce-f1f4-47c0-994a-3bb9131df3c0", - "start": { - "$date": "2021-09-21T06:42:19.000Z" - }, - "end": { - "$date": "2021-09-21T08:12:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8132a900-0e15-484d-9807-1851096a6fab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-21T06:46:23.000Z" - }, - "end": { - "$date": "2021-09-21T07:41:25.000Z" - }, - "events": [ - { - "uuid": "7c33068a-9920-43ee-b24d-e441f3b373dd", - "start": { - "$date": "2021-09-21T06:46:23.000Z" - }, - "end": { - "$date": "2021-09-21T07:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "454f09bd-cd7e-45ec-a56e-73ce6d8bac6b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T14:58:38.000Z" - }, - "end": { - "$date": "2021-09-21T15:21:43.000Z" - }, - "events": [ - { - "uuid": "18c3b900-ee61-42c5-9aa0-e212a490fb00", - "start": { - "$date": "2021-09-21T14:58:38.000Z" - }, - "end": { - "$date": "2021-09-21T15:21:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60dcc672-798c-484a-b157-2d56ca6daaa6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T15:27:14.000Z" - }, - "end": { - "$date": "2021-09-21T15:55:49.000Z" - }, - "events": [ - { - "uuid": "f71de1ce-eea2-4268-a433-1226ea00cbc9", - "start": { - "$date": "2021-09-21T15:27:14.000Z" - }, - "end": { - "$date": "2021-09-21T15:55:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3881f169-704a-4f30-a42e-c7f1057d4185", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T16:22:51.000Z" - }, - "end": { - "$date": "2021-09-21T16:45:46.000Z" - }, - "events": [ - { - "uuid": "6210cfa1-e661-4558-a2a0-d557bfbc30fb", - "start": { - "$date": "2021-09-21T16:22:51.000Z" - }, - "end": { - "$date": "2021-09-21T16:45:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90558193-bf06-4a3b-86ef-25f22c9ce50a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T18:50:25.000Z" - }, - "end": { - "$date": "2021-09-21T18:53:40.000Z" - }, - "events": [ - { - "uuid": "8ed1d7d3-2272-462f-9978-da6d2003e11d", - "start": { - "$date": "2021-09-21T18:50:25.000Z" - }, - "end": { - "$date": "2021-09-21T19:33:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "017a22c2-5bc8-4416-a579-a6c2313f6f78", - "start": { - "$date": "2021-09-21T19:33:25.000Z" - }, - "end": { - "$date": "2021-09-21T20:43:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "85a97415-df4d-47f7-962b-e1518f8ade6c", - "start": { - "$date": "2021-09-21T20:43:25.000Z" - }, - "end": { - "$date": "2021-09-21T18:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "98a232b2-a4b3-4f43-80b3-f50639cca040", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-21T18:29:29.000Z" - }, - "end": { - "$date": "2021-09-21T20:15:47.000Z" - }, - "events": [ - { - "uuid": "dede7a74-f00b-4427-a32e-a575205c9e12", - "start": { - "$date": "2021-09-21T18:29:29.000Z" - }, - "end": { - "$date": "2021-09-21T20:15:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3f1f898-49e8-433a-8aa0-f4e11e0f9dcf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T18:57:11.000Z" - }, - "end": { - "$date": "2021-09-21T19:31:32.000Z" - }, - "events": [ - { - "uuid": "11a8c115-da3e-4eff-b246-115de9198ca3", - "start": { - "$date": "2021-09-21T18:57:11.000Z" - }, - "end": { - "$date": "2021-09-21T19:31:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "1679fe2e-7433-40d9-aada-b5723fb61b5c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-21T23:02:10.000Z" - }, - "end": { - "$date": "2021-09-21T23:33:40.000Z" - }, - "events": [ - { - "uuid": "17b90fd9-58ee-4afa-8408-63e29561b9ce", - "start": { - "$date": "2021-09-21T23:02:10.000Z" - }, - "end": { - "$date": "2021-09-21T23:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b2f863d4-3f32-46ad-8bab-3849272ae74c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-21T23:31:11.000Z" - }, - "end": { - "$date": "2021-09-22T04:31:09.000Z" - }, - "events": [ - { - "uuid": "5156a072-d82f-4acf-a0b2-3b11b5f4a338", - "start": { - "$date": "2021-09-21T23:31:11.000Z" - }, - "end": { - "$date": "2021-09-22T04:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "75d89e78-355a-43ec-a4fe-532db957b43e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-22T00:35:40.000Z" - }, - "end": { - "$date": "2021-09-22T01:27:58.000Z" - }, - "events": [ - { - "uuid": "4c9ea33d-789a-4075-9aab-eac5d75df851", - "start": { - "$date": "2021-09-22T00:35:40.000Z" - }, - "end": { - "$date": "2021-09-22T01:27:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "7d98b979-04ae-4798-9cb7-5bdd21e261e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T01:01:42.000Z" - }, - "end": { - "$date": "2021-09-22T01:28:41.000Z" - }, - "events": [ - { - "uuid": "1583c96b-60f9-4004-9323-1d06e966040a", - "start": { - "$date": "2021-09-22T01:01:42.000Z" - }, - "end": { - "$date": "2021-09-22T01:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8009ebba-2ee0-4d9b-94e5-4de283a7e6f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-22T01:15:34.000Z" - }, - "end": { - "$date": "2021-09-22T01:45:44.000Z" - }, - "events": [ - { - "uuid": "5ee047d6-981f-407b-bcef-963193c29d3e", - "start": { - "$date": "2021-09-22T01:15:34.000Z" - }, - "end": { - "$date": "2021-09-22T01:45:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "a4aa8316-19f4-40e0-8ee5-7efcdac4e87d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T01:41:59.000Z" - }, - "end": { - "$date": "2021-09-22T01:51:28.000Z" - }, - "events": [ - { - "uuid": "ca7ff494-2617-46f3-9699-39abdc17e9bf", - "start": { - "$date": "2021-09-22T01:41:59.000Z" - }, - "end": { - "$date": "2021-09-22T01:51:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1fc037d-2a2a-418c-b609-a928fdc141e2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T02:03:05.000Z" - }, - "end": { - "$date": "2021-09-22T02:21:45.000Z" - }, - "events": [ - { - "uuid": "a7f65623-b7a7-4863-a11d-c6fb072beb7e", - "start": { - "$date": "2021-09-22T02:03:05.000Z" - }, - "end": { - "$date": "2021-09-22T02:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd89a94a-bc90-4cdd-af58-8a4d04e0d180", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T02:25:46.000Z" - }, - "end": { - "$date": "2021-09-22T02:48:20.000Z" - }, - "events": [ - { - "uuid": "cb0fa708-a83b-4a1b-90d1-7f9698ba6e09", - "start": { - "$date": "2021-09-22T02:25:46.000Z" - }, - "end": { - "$date": "2021-09-22T02:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", - "uuid": "af79d5a3-1c04-4dbb-b419-43915680e24e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-22T02:36:11.000Z" - }, - "end": { - "$date": "2021-09-22T05:14:43.000Z" - }, - "events": [ - { - "uuid": "56fadc47-0b4f-4d6b-9982-e29ee7de91a0", - "start": { - "$date": "2021-09-22T02:36:11.000Z" - }, - "end": { - "$date": "2021-09-22T03:54:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99380061-93fc-44ec-b21f-50506be69abf", - "start": { - "$date": "2021-09-22T03:54:11.000Z" - }, - "end": { - "$date": "2021-09-22T04:26:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aae9feca-c950-4860-b48c-c61ccf2b65ba", - "start": { - "$date": "2021-09-22T04:26:11.000Z" - }, - "end": { - "$date": "2021-09-22T04:30:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9774c292-2bf7-4f9a-8341-5f4f5292496b", - "start": { - "$date": "2021-09-22T04:30:11.000Z" - }, - "end": { - "$date": "2021-09-22T05:14:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1b43bcdc-1b00-49f0-aea5-996b148907f6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-22T02:48:36.000Z" - }, - "end": { - "$date": "2021-09-22T03:34:44.000Z" - }, - "events": [ - { - "uuid": "4e1ead62-97e3-4770-8c8e-0102ca4a5031", - "start": { - "$date": "2021-09-22T02:48:36.000Z" - }, - "end": { - "$date": "2021-09-22T03:34:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c8d3e44-413b-4c70-b8db-7b9e56b1e6ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T02:53:57.000Z" - }, - "end": { - "$date": "2021-09-22T03:15:56.000Z" - }, - "events": [ - { - "uuid": "6d6d1534-6efa-48ed-8902-d99c76b6d54e", - "start": { - "$date": "2021-09-22T02:53:57.000Z" - }, - "end": { - "$date": "2021-09-22T03:15:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "69537be1-874f-4859-9c0d-92c06ed07f86", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-22T03:35:10.000Z" - }, - "end": { - "$date": "2021-09-22T04:04:36.000Z" - }, - "events": [ - { - "uuid": "5c505159-3cc4-4d52-b048-78ecefd0988f", - "start": { - "$date": "2021-09-22T03:35:10.000Z" - }, - "end": { - "$date": "2021-09-22T04:04:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b6e365d7-1bb3-49bf-9c09-1f20e5624848", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-22T03:38:13.000Z" - }, - "end": { - "$date": "2021-09-22T04:34:09.000Z" - }, - "events": [ - { - "uuid": "7471ed99-d571-4dd4-95cd-62c8e33be474", - "start": { - "$date": "2021-09-22T03:38:13.000Z" - }, - "end": { - "$date": "2021-09-22T04:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "0e27b08c-a232-4071-9561-80e231a44329", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-22T03:48:59.000Z" - }, - "end": { - "$date": "2021-09-22T05:20:51.000Z" - }, - "events": [ - { - "uuid": "d83e2523-ca4b-43a2-839b-b85c1f6a152f", - "start": { - "$date": "2021-09-22T03:48:59.000Z" - }, - "end": { - "$date": "2021-09-22T05:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3beaf5e9-8e5b-4955-8778-5e850de432d5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-22T04:31:39.000Z" - }, - "end": { - "$date": "2021-09-22T05:15:50.000Z" - }, - "events": [ - { - "uuid": "b56bf390-b041-4239-90a6-a0797730edb9", - "start": { - "$date": "2021-09-22T04:31:39.000Z" - }, - "end": { - "$date": "2021-09-22T05:15:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", - "uuid": "43205554-3e86-465c-b92a-7d5a083074a9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-22T05:14:48.000Z" - }, - "end": { - "$date": "2021-09-22T07:47:05.000Z" - }, - "events": [ - { - "uuid": "cbe70bc7-7eed-4bbf-96b2-8c240debb101", - "start": { - "$date": "2021-09-22T05:14:48.000Z" - }, - "end": { - "$date": "2021-09-22T07:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e88c748-0e1c-4583-9ef9-b4f0bf3f4457", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-22T05:26:32.000Z" - }, - "end": { - "$date": "2021-09-22T06:00:37.000Z" - }, - "events": [ - { - "uuid": "756603e0-99ab-4965-9cdc-52a6611c360a", - "start": { - "$date": "2021-09-22T05:26:32.000Z" - }, - "end": { - "$date": "2021-09-22T06:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ad1d8282-b1d8-427d-bdb9-f361d13506ff", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-22T05:27:17.000Z" - }, - "end": { - "$date": "2021-09-22T06:09:56.000Z" - }, - "events": [ - { - "uuid": "f11cc344-13d1-477d-9d5d-4ca5464ee104", - "start": { - "$date": "2021-09-22T05:27:17.000Z" - }, - "end": { - "$date": "2021-09-22T06:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "0c4d612c-5eae-4568-86c2-55142e6864ae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-22T06:03:47.000Z" - }, - "end": { - "$date": "2021-09-22T06:10:09.000Z" - }, - "events": [ - { - "uuid": "ea242b05-81d8-426b-9991-ec548c7c48de", - "start": { - "$date": "2021-09-22T06:03:47.000Z" - }, - "end": { - "$date": "2021-09-22T06:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "67b02621-a2ca-4fbd-a0aa-07c9df8a8112", - "uuid": "dbb58807-1a07-4aae-8e76-3ef0409b4d55", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-22T11:28:17.000Z" - }, - "end": { - "$date": "2021-09-22T14:51:03.000Z" - }, - "events": [ - { - "uuid": "1f5bce7e-b317-435c-abba-7dfdd261a466", - "start": { - "$date": "2021-09-22T11:28:17.000Z" - }, - "end": { - "$date": "2021-09-22T14:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "583e5383-5456-4ed0-8e4a-9edb2a1892a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T14:55:15.000Z" - }, - "end": { - "$date": "2021-09-22T15:25:20.000Z" - }, - "events": [ - { - "uuid": "974b78bb-ec0b-4920-8db0-ef3d39173fa9", - "start": { - "$date": "2021-09-22T14:55:15.000Z" - }, - "end": { - "$date": "2021-09-22T15:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e23770e9-921e-45d1-94bb-6e741c71b5ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T16:04:08.000Z" - }, - "end": { - "$date": "2021-09-22T16:34:37.000Z" - }, - "events": [ - { - "uuid": "49e45663-4a32-47a0-bf61-6150ade7ac6e", - "start": { - "$date": "2021-09-22T16:04:08.000Z" - }, - "end": { - "$date": "2021-09-22T16:30:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4fa1aa5e-bd5b-448c-962e-351b9b326db4", - "start": { - "$date": "2021-09-22T16:30:08.000Z" - }, - "end": { - "$date": "2021-09-22T16:34:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a248888c-f5c6-4a12-8676-909173640851", - "start": { - "$date": "2021-09-22T16:34:08.000Z" - }, - "end": { - "$date": "2021-09-22T16:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78d40fb6-6420-474e-b119-ebd15edf0d37", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T21:18:57.000Z" - }, - "end": { - "$date": "2021-09-22T21:35:03.000Z" - }, - "events": [ - { - "uuid": "637e7adc-1fe3-4faa-a5f4-2e090392de8e", - "start": { - "$date": "2021-09-22T21:18:57.000Z" - }, - "end": { - "$date": "2021-09-22T21:35:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1057891f-1674-405e-9b2b-3832b233c17f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T21:37:47.000Z" - }, - "end": { - "$date": "2021-09-22T21:55:21.000Z" - }, - "events": [ - { - "uuid": "ca60df4e-01c7-469d-8609-e04ea340a1c1", - "start": { - "$date": "2021-09-22T21:37:47.000Z" - }, - "end": { - "$date": "2021-09-22T21:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "9f045fc1-4366-43c8-a192-aca1b72dafd7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-22T21:45:22.000Z" - }, - "end": { - "$date": "2021-09-22T23:00:47.000Z" - }, - "events": [ - { - "uuid": "5dc4d20c-975f-41d9-b9da-69b5384b2bf6", - "start": { - "$date": "2021-09-22T21:45:22.000Z" - }, - "end": { - "$date": "2021-09-22T23:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a68a3a2-edc8-49ef-b0f1-102d0416dbd2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-22T21:55:56.000Z" - }, - "end": { - "$date": "2021-09-22T22:48:44.000Z" - }, - "events": [ - { - "uuid": "1bd2af9d-b891-4305-ba2c-5cf4977dade6", - "start": { - "$date": "2021-09-22T21:55:56.000Z" - }, - "end": { - "$date": "2021-09-22T22:27:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44e0800e-669e-4487-a454-4392f0166f5d", - "start": { - "$date": "2021-09-22T22:27:56.000Z" - }, - "end": { - "$date": "2021-09-22T22:38:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2bce1696-d583-4722-b709-e38b3d928354", - "start": { - "$date": "2021-09-22T22:38:56.000Z" - }, - "end": { - "$date": "2021-09-22T22:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54c75a2d-3617-4f2c-9f4f-ec0fe72e7b5c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T00:33:19.000Z" - }, - "end": { - "$date": "2021-09-23T00:56:28.000Z" - }, - "events": [ - { - "uuid": "b6467175-1c06-4b23-a66e-251dd174556a", - "start": { - "$date": "2021-09-23T00:33:19.000Z" - }, - "end": { - "$date": "2021-09-23T00:56:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "dcd5a6ab-1c4a-4c6f-be54-5aa521ad3f53", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-23T00:50:13.000Z" - }, - "end": { - "$date": "2021-09-23T00:52:42.000Z" - }, - "events": [ - { - "uuid": "4d0b6566-f5db-4ae3-8b22-b04a1bb70e8c", - "start": { - "$date": "2021-09-23T00:50:13.000Z" - }, - "end": { - "$date": "2021-09-23T00:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "74eda363-9ca2-4b86-8510-1037ab50f18a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-23T00:53:14.000Z" - }, - "end": { - "$date": "2021-09-23T01:26:33.000Z" - }, - "events": [ - { - "uuid": "d2aabe49-8c5a-470e-bba8-6a14c0c266dd", - "start": { - "$date": "2021-09-23T00:53:14.000Z" - }, - "end": { - "$date": "2021-09-23T01:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f131195-e4b8-45ba-9a9e-22cbd82c7c8c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T00:59:39.000Z" - }, - "end": { - "$date": "2021-09-23T01:15:14.000Z" - }, - "events": [ - { - "uuid": "f45671b8-258d-411a-8386-c0709504e829", - "start": { - "$date": "2021-09-23T00:59:39.000Z" - }, - "end": { - "$date": "2021-09-23T01:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48c8ace6-a3b7-491d-9985-d6b2a8518703", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T01:17:15.000Z" - }, - "end": { - "$date": "2021-09-23T01:40:44.000Z" - }, - "events": [ - { - "uuid": "e9bfe910-0769-4f2b-bb09-3c56e499b912", - "start": { - "$date": "2021-09-23T01:17:15.000Z" - }, - "end": { - "$date": "2021-09-23T01:40:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "875880db-31d7-44bb-984a-14090369ed07", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-23T01:19:13.000Z" - }, - "end": { - "$date": "2021-09-23T05:46:30.000Z" - }, - "events": [ - { - "uuid": "b43c446c-2ac4-4d8e-902e-3c30f1446ebd", - "start": { - "$date": "2021-09-23T01:19:13.000Z" - }, - "end": { - "$date": "2021-09-23T05:46:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f284d8ec-5085-4df9-ac6e-813dfbc0569b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-23T01:34:01.000Z" - }, - "end": { - "$date": "2021-09-23T03:54:03.000Z" - }, - "events": [ - { - "uuid": "9b001b0d-14e5-4ece-8e93-b9ce58ebb63c", - "start": { - "$date": "2021-09-23T01:34:01.000Z" - }, - "end": { - "$date": "2021-09-23T02:42:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3070cd8-a479-4f4e-b4e5-1dc4b269c08f", - "start": { - "$date": "2021-09-23T02:42:01.000Z" - }, - "end": { - "$date": "2021-09-23T02:45:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b3dbeb3-e0d6-417e-8d4b-f687440d0f73", - "start": { - "$date": "2021-09-23T02:45:01.000Z" - }, - "end": { - "$date": "2021-09-23T03:54:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2ad4db99-cb60-4609-80b9-489c81b2c023", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-23T02:40:11.000Z" - }, - "end": { - "$date": "2021-09-23T04:19:31.000Z" - }, - "events": [ - { - "uuid": "c226ddf4-ddd4-4b14-9f8e-62ed0bbc70ac", - "start": { - "$date": "2021-09-23T02:40:11.000Z" - }, - "end": { - "$date": "2021-09-23T04:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9ffc420a-4306-4d52-9fe2-701bc864c317", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-23T03:31:21.000Z" - }, - "end": { - "$date": "2021-09-23T05:11:12.000Z" - }, - "events": [ - { - "uuid": "05fdd431-a830-4e04-bfe8-b89022a08ced", - "start": { - "$date": "2021-09-23T03:31:21.000Z" - }, - "end": { - "$date": "2021-09-23T05:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "8340a2ec-40da-4a86-9101-178da5b9829b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-23T03:41:28.000Z" - }, - "end": { - "$date": "2021-09-23T05:11:24.000Z" - }, - "events": [ - { - "uuid": "a7906fd2-727a-46d4-9bfb-6ef5a61d808c", - "start": { - "$date": "2021-09-23T03:41:28.000Z" - }, - "end": { - "$date": "2021-09-23T05:11:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "e2af2306-b793-41a4-aca7-051ea28691cd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-23T04:20:16.000Z" - }, - "end": { - "$date": "2021-09-23T05:06:48.000Z" - }, - "events": [ - { - "uuid": "55afc9ee-06cf-438a-a401-0c1030bcacf3", - "start": { - "$date": "2021-09-23T04:20:16.000Z" - }, - "end": { - "$date": "2021-09-23T05:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e47cda4-fecf-4d1e-91fe-4b171067cee3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-23T05:17:59.000Z" - }, - "end": { - "$date": "2021-09-23T05:42:11.000Z" - }, - "events": [ - { - "uuid": "6fdcab7f-3760-4995-bf85-caa19773de19", - "start": { - "$date": "2021-09-23T05:17:59.000Z" - }, - "end": { - "$date": "2021-09-23T05:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db6bffd1-4c0b-44c8-aa1c-ae8c28d23519", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-23T05:47:09.000Z" - }, - "end": { - "$date": "2021-09-23T06:06:57.000Z" - }, - "events": [ - { - "uuid": "abc94633-782b-4132-9be4-724dc053d570", - "start": { - "$date": "2021-09-23T05:47:09.000Z" - }, - "end": { - "$date": "2021-09-23T06:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cbeb2e05-369f-4b58-ae53-0ac999438b6f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-23T05:49:17.000Z" - }, - "end": { - "$date": "2021-09-23T06:32:56.000Z" - }, - "events": [ - { - "uuid": "bca726c0-82dd-4621-b91a-0be80c447ed8", - "start": { - "$date": "2021-09-23T05:49:17.000Z" - }, - "end": { - "$date": "2021-09-23T06:32:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb88775b-b19b-4480-aed8-cd09375962a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-23T06:09:25.000Z" - }, - "end": { - "$date": "2021-09-23T06:27:01.000Z" - }, - "events": [ - { - "uuid": "0533e8d8-f944-4a73-b553-a57bb365c9f0", - "start": { - "$date": "2021-09-23T06:09:25.000Z" - }, - "end": { - "$date": "2021-09-23T06:27:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4da6dd5c-b442-48d6-90a5-f7cbeb0774a2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-23T06:33:11.000Z" - }, - "end": { - "$date": "2021-09-23T07:17:44.000Z" - }, - "events": [ - { - "uuid": "f07213e0-dfaf-457d-927c-8f41b3746c8b", - "start": { - "$date": "2021-09-23T06:33:11.000Z" - }, - "end": { - "$date": "2021-09-23T07:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "ec1ff638-63d3-4298-a019-87193e08f4b2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-23T12:53:40.000Z" - }, - "end": { - "$date": "2021-09-23T12:57:00.000Z" - }, - "events": [ - { - "uuid": "170eb918-7779-4f48-a13f-9b9b497a2ad0", - "start": { - "$date": "2021-09-23T12:53:40.000Z" - }, - "end": { - "$date": "2021-09-23T12:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "c7beeb83-a12c-4ac7-a424-d4b2e2a3355c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-23T18:00:03.000Z" - }, - "end": { - "$date": "2021-09-23T20:06:06.000Z" - }, - "events": [ - { - "uuid": "77fb6923-80cc-4c97-a19a-715c013b662c", - "start": { - "$date": "2021-09-23T18:00:03.000Z" - }, - "end": { - "$date": "2021-09-23T18:59:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3dc33582-1974-4e5f-93b0-c35ed55064b1", - "start": { - "$date": "2021-09-23T18:59:03.000Z" - }, - "end": { - "$date": "2021-09-23T19:02:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7621aa24-7ee2-49ec-bd93-c389d84b757d", - "start": { - "$date": "2021-09-23T19:02:03.000Z" - }, - "end": { - "$date": "2021-09-23T20:06:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d998d0c-5a26-46fe-89af-a3ec2faf00a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T22:14:16.000Z" - }, - "end": { - "$date": "2021-09-23T22:33:56.000Z" - }, - "events": [ - { - "uuid": "e1c7ef85-f522-4be5-9cc3-740ff7cbd8bf", - "start": { - "$date": "2021-09-23T22:14:16.000Z" - }, - "end": { - "$date": "2021-09-23T22:33:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1968f6dc-3ce3-4677-a853-935225bce4cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T22:59:38.000Z" - }, - "end": { - "$date": "2021-09-23T23:12:04.000Z" - }, - "events": [ - { - "uuid": "ca556b83-c9dc-4314-8be3-00d41bc2c52d", - "start": { - "$date": "2021-09-23T22:59:38.000Z" - }, - "end": { - "$date": "2021-09-23T23:10:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63f9219c-21a2-4b67-a48f-4769fc8437f6", - "start": { - "$date": "2021-09-23T23:10:38.000Z" - }, - "end": { - "$date": "2021-09-23T23:17:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "defa51ec-c93c-4ba6-a2f4-08fa35a926c5", - "start": { - "$date": "2021-09-23T23:17:38.000Z" - }, - "end": { - "$date": "2021-09-23T23:12:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a64308b3-6f94-4e96-9bd5-73f97500ebec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T23:15:39.000Z" - }, - "end": { - "$date": "2021-09-23T23:34:09.000Z" - }, - "events": [ - { - "uuid": "9803ab28-7bbe-4692-9bd0-4920616b7d41", - "start": { - "$date": "2021-09-23T23:15:39.000Z" - }, - "end": { - "$date": "2021-09-23T23:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "558e1686-3353-4873-8c2d-5f17a1e48cec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-23T23:39:39.000Z" - }, - "end": { - "$date": "2021-09-24T00:02:35.000Z" - }, - "events": [ - { - "uuid": "6a4c48d0-63ce-451c-b9ba-96e57fec63ba", - "start": { - "$date": "2021-09-23T23:39:39.000Z" - }, - "end": { - "$date": "2021-09-24T00:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "88dd02c4-7fa4-40f3-8309-a8315010ae7f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-23T23:35:24.000Z" - }, - "end": { - "$date": "2021-09-23T23:37:30.000Z" - }, - "events": [ - { - "uuid": "f6625fe6-cdca-4c9f-9a50-3f72208553d5", - "start": { - "$date": "2021-09-23T23:35:24.000Z" - }, - "end": { - "$date": "2021-09-23T23:37:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c6f0bab0-2ca0-4f72-bc89-b8d3dddb37f1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-23T23:37:50.000Z" - }, - "end": { - "$date": "2021-09-23T23:41:46.000Z" - }, - "events": [ - { - "uuid": "05a8efc0-cf7a-4fc2-94e8-dec302d005b5", - "start": { - "$date": "2021-09-23T23:37:50.000Z" - }, - "end": { - "$date": "2021-09-23T23:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "36daf8ef-0f98-4669-9d50-a2b4ac99f512", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-23T23:39:06.000Z" - }, - "end": { - "$date": "2021-09-24T01:10:31.000Z" - }, - "events": [ - { - "uuid": "eb71fe8d-fdb2-44db-8b02-3f95e2087ef7", - "start": { - "$date": "2021-09-23T23:39:06.000Z" - }, - "end": { - "$date": "2021-09-24T00:29:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2704a13-500f-44f5-86f9-f2d76ca9ae7e", - "start": { - "$date": "2021-09-24T00:29:06.000Z" - }, - "end": { - "$date": "2021-09-24T01:09:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a215b87c-a45a-4daa-8cd8-3e8a7e5e7fc4", - "start": { - "$date": "2021-09-24T01:09:06.000Z" - }, - "end": { - "$date": "2021-09-24T01:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0c5837fe-583f-4a4f-8656-497aca065021", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-23T23:42:01.000Z" - }, - "end": { - "$date": "2021-09-24T00:13:41.000Z" - }, - "events": [ - { - "uuid": "145b8e70-6757-4e78-847d-b3728e4f1949", - "start": { - "$date": "2021-09-23T23:42:01.000Z" - }, - "end": { - "$date": "2021-09-24T00:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "75d058a7-7a46-4ec2-a2fc-2af2bf4c4b5a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-23T22:43:19.000Z" - }, - "end": { - "$date": "2021-09-24T05:08:52.000Z" - }, - "events": [ - { - "uuid": "a91ce619-3a6b-4fd2-9825-ccf47ea86984", - "start": { - "$date": "2021-09-23T22:43:19.000Z" - }, - "end": { - "$date": "2021-09-24T01:46:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc815dd8-93c3-4ed2-8f1b-f04390939cd2", - "start": { - "$date": "2021-09-24T01:46:19.000Z" - }, - "end": { - "$date": "2021-09-24T01:58:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18b8f03f-a96c-4fbd-a4e1-6538b1668b32", - "start": { - "$date": "2021-09-24T01:58:19.000Z" - }, - "end": { - "$date": "2021-09-24T05:08:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b786fe35-dd69-43f8-a21e-96732702db34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T00:07:55.000Z" - }, - "end": { - "$date": "2021-09-24T00:22:51.000Z" - }, - "events": [ - { - "uuid": "a8e5eb69-1c17-43d1-b62b-9d78f16cc91e", - "start": { - "$date": "2021-09-24T00:07:55.000Z" - }, - "end": { - "$date": "2021-09-24T00:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f5e12c6-5074-4020-a31d-b4bf13236178", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T00:29:15.000Z" - }, - "end": { - "$date": "2021-09-24T00:40:41.000Z" - }, - "events": [ - { - "uuid": "6ac73c36-d920-4697-94ed-bdd3ed734c29", - "start": { - "$date": "2021-09-24T00:29:15.000Z" - }, - "end": { - "$date": "2021-09-24T00:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f829849-3637-4519-ae8b-72f98c02f3ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T00:45:20.000Z" - }, - "end": { - "$date": "2021-09-24T00:58:05.000Z" - }, - "events": [ - { - "uuid": "2e590a69-44e6-4584-87ce-976a3f8c012d", - "start": { - "$date": "2021-09-24T00:45:20.000Z" - }, - "end": { - "$date": "2021-09-24T00:58:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31cb5cda-da93-4f29-aad1-6e72d165a0f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T01:01:55.000Z" - }, - "end": { - "$date": "2021-09-24T01:23:21.000Z" - }, - "events": [ - { - "uuid": "14b3f706-a04a-4435-a8a4-8cf0483e5e17", - "start": { - "$date": "2021-09-24T01:01:55.000Z" - }, - "end": { - "$date": "2021-09-24T01:23:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2c55756-ae07-4771-86d2-bba19006baa0", - "uuid": "73162673-700b-4fe5-affa-c5f42550ed09", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-24T01:11:12.000Z" - }, - "end": { - "$date": "2021-09-24T01:12:16.000Z" - }, - "events": [ - { - "uuid": "a94d15bc-389f-4763-90f1-873dad9c4c00", - "start": { - "$date": "2021-09-24T01:11:12.000Z" - }, - "end": { - "$date": "2021-09-24T01:12:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "158ba47f-fbfe-48a0-a7f7-4196891c5f36", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-24T01:12:23.000Z" - }, - "end": { - "$date": "2021-09-24T02:05:47.000Z" - }, - "events": [ - { - "uuid": "7f86f473-61f8-4940-a698-e506c39d0939", - "start": { - "$date": "2021-09-24T01:12:23.000Z" - }, - "end": { - "$date": "2021-09-24T02:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23d908a0-698d-4206-8850-021bfa8b2fbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T01:36:07.000Z" - }, - "end": { - "$date": "2021-09-24T01:53:38.000Z" - }, - "events": [ - { - "uuid": "3fef8d7f-9932-4836-b38f-38ee08ca2234", - "start": { - "$date": "2021-09-24T01:36:07.000Z" - }, - "end": { - "$date": "2021-09-24T01:53:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "74ef54ee-81dd-4865-8732-e89befe9d59e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-24T01:47:01.000Z" - }, - "end": { - "$date": "2021-09-24T01:54:33.000Z" - }, - "events": [ - { - "uuid": "816a4020-bedd-40a3-a507-398e915abb64", - "start": { - "$date": "2021-09-24T01:47:01.000Z" - }, - "end": { - "$date": "2021-09-24T01:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61d56a84-3538-4f81-8aa6-9dead4a4cfff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T01:53:41.000Z" - }, - "end": { - "$date": "2021-09-24T02:59:29.000Z" - }, - "events": [ - { - "uuid": "33bd53b7-1262-4442-a007-eb0359abd16f", - "start": { - "$date": "2021-09-24T01:53:41.000Z" - }, - "end": { - "$date": "2021-09-24T02:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "fd70dca4-d91a-4ef1-bfbf-eb38f8ce0ba0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-24T01:55:28.000Z" - }, - "end": { - "$date": "2021-09-24T02:00:20.000Z" - }, - "events": [ - { - "uuid": "005146a8-bb5d-4c20-aa05-89e1ecb955db", - "start": { - "$date": "2021-09-24T01:55:28.000Z" - }, - "end": { - "$date": "2021-09-24T02:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "9e118fa7-5ef1-4e47-aa04-798c8f294604", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-24T02:00:29.000Z" - }, - "end": { - "$date": "2021-09-24T02:22:42.000Z" - }, - "events": [ - { - "uuid": "5f17c547-36c5-4054-b889-b6b68876576e", - "start": { - "$date": "2021-09-24T02:00:29.000Z" - }, - "end": { - "$date": "2021-09-24T02:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "657a1589-f90f-4248-8ff3-7312c8b6c4fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-24T02:18:50.000Z" - }, - "end": { - "$date": "2021-09-24T02:32:27.000Z" - }, - "events": [ - { - "uuid": "de0d3afe-2057-4b55-9605-55539b02ec06", - "start": { - "$date": "2021-09-24T02:18:50.000Z" - }, - "end": { - "$date": "2021-09-24T02:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3543239a-f79f-44e7-b671-38efd4858bfc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-24T03:02:23.000Z" - }, - "end": { - "$date": "2021-09-24T03:21:40.000Z" - }, - "events": [ - { - "uuid": "749d143e-67fc-4b2a-85f7-2aa9a6f48170", - "start": { - "$date": "2021-09-24T03:02:23.000Z" - }, - "end": { - "$date": "2021-09-24T03:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8885276b-005e-40bb-af38-b00262e8d0a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T03:03:00.000Z" - }, - "end": { - "$date": "2021-09-24T03:21:41.000Z" - }, - "events": [ - { - "uuid": "3f8e98cd-45ac-4e7c-969c-94956f7f4502", - "start": { - "$date": "2021-09-24T03:03:00.000Z" - }, - "end": { - "$date": "2021-09-24T03:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab01f08c-fa16-4ec6-9034-1c510ffdfcdc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-24T03:02:26.000Z" - }, - "end": { - "$date": "2021-09-24T03:21:48.000Z" - }, - "events": [ - { - "uuid": "d3aff8fd-11c1-49e8-826d-368337db0f4e", - "start": { - "$date": "2021-09-24T03:02:26.000Z" - }, - "end": { - "$date": "2021-09-24T03:21:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "500b29f1-59a7-40d3-8ee0-1767a4d99df0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-24T03:18:20.000Z" - }, - "end": { - "$date": "2021-09-24T03:36:35.000Z" - }, - "events": [ - { - "uuid": "71c847a4-c3da-4e20-9526-bfc64411e8b0", - "start": { - "$date": "2021-09-24T03:18:20.000Z" - }, - "end": { - "$date": "2021-09-24T03:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fb1d79f-eca0-435f-bb80-a9336acafe72", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-24T03:25:33.000Z" - }, - "end": { - "$date": "2021-09-24T03:47:06.000Z" - }, - "events": [ - { - "uuid": "d84d9c8f-407c-41e9-b23c-c0f254214ca4", - "start": { - "$date": "2021-09-24T03:25:33.000Z" - }, - "end": { - "$date": "2021-09-24T03:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "682ae76c-ed93-409d-bb2c-4400bc1fe329", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-24T03:25:17.000Z" - }, - "end": { - "$date": "2021-09-24T03:47:08.000Z" - }, - "events": [ - { - "uuid": "aa6c1201-ce48-4261-b131-c6ebad47edba", - "start": { - "$date": "2021-09-24T03:25:17.000Z" - }, - "end": { - "$date": "2021-09-24T03:47:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9931e02b-53a2-4d38-b0f6-57acaad75af4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T03:26:20.000Z" - }, - "end": { - "$date": "2021-09-24T03:46:56.000Z" - }, - "events": [ - { - "uuid": "6e45cf96-d1a5-4418-aae7-0a8476addcfc", - "start": { - "$date": "2021-09-24T03:26:20.000Z" - }, - "end": { - "$date": "2021-09-24T03:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "a374dffb-bc70-46d0-9d68-95a52d91cd4f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-24T03:31:55.000Z" - }, - "end": { - "$date": "2021-09-24T04:41:11.000Z" - }, - "events": [ - { - "uuid": "23024ca3-0f42-470a-98d6-3f4bfe38bfcc", - "start": { - "$date": "2021-09-24T03:31:55.000Z" - }, - "end": { - "$date": "2021-09-24T04:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f35e6e6a-4d23-4ea2-aef8-f35726fc0d26", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-24T03:39:01.000Z" - }, - "end": { - "$date": "2021-09-24T04:19:47.000Z" - }, - "events": [ - { - "uuid": "85f9c313-99ff-4d21-b114-ed623cf4d4fe", - "start": { - "$date": "2021-09-24T03:39:01.000Z" - }, - "end": { - "$date": "2021-09-24T04:19:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8c6e8f68-8136-4618-941b-13374092795b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-24T03:42:12.000Z" - }, - "end": { - "$date": "2021-09-24T04:51:36.000Z" - }, - "events": [ - { - "uuid": "7a0ef097-d2f0-454f-ac4a-40e01e8831b3", - "start": { - "$date": "2021-09-24T03:42:12.000Z" - }, - "end": { - "$date": "2021-09-24T04:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12e69230-1604-4cb1-97e1-a8a2f8c15ecd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T03:55:00.000Z" - }, - "end": { - "$date": "2021-09-24T04:23:26.000Z" - }, - "events": [ - { - "uuid": "55b1e782-1ea3-4697-b053-bc38c200a1ad", - "start": { - "$date": "2021-09-24T03:55:00.000Z" - }, - "end": { - "$date": "2021-09-24T04:23:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea47a234-4644-41a5-9a7b-7efcdf7a7a60", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T04:35:07.000Z" - }, - "end": { - "$date": "2021-09-24T05:03:07.000Z" - }, - "events": [ - { - "uuid": "8ce2acf2-428a-406c-8f73-6797775ed5ec", - "start": { - "$date": "2021-09-24T04:35:07.000Z" - }, - "end": { - "$date": "2021-09-24T05:03:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0c205f75-1622-4e44-992c-4def84a8ad23", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-24T04:25:51.000Z" - }, - "end": { - "$date": "2021-09-24T04:51:16.000Z" - }, - "events": [ - { - "uuid": "0ac00700-2752-4c82-9ea3-20af180093bf", - "start": { - "$date": "2021-09-24T04:25:51.000Z" - }, - "end": { - "$date": "2021-09-24T04:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "095f6670-8653-4931-bdc2-62b711d2f8ca", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-24T04:47:10.000Z" - }, - "end": { - "$date": "2021-09-24T05:15:21.000Z" - }, - "events": [ - { - "uuid": "33047b39-8824-4b18-bc3f-aa382832d8f7", - "start": { - "$date": "2021-09-24T04:47:10.000Z" - }, - "end": { - "$date": "2021-09-24T05:15:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cee768bf-bfd5-43f2-8d4c-6cb5c9a7dcf1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T05:09:52.000Z" - }, - "end": { - "$date": "2021-09-24T05:31:38.000Z" - }, - "events": [ - { - "uuid": "804ac584-1804-466a-9ed1-cf92751e6c59", - "start": { - "$date": "2021-09-24T05:09:52.000Z" - }, - "end": { - "$date": "2021-09-24T05:31:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88e7fab6-4630-4125-a927-d9f9005348e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-24T05:18:41.000Z" - }, - "end": { - "$date": "2021-09-24T05:32:37.000Z" - }, - "events": [ - { - "uuid": "24557479-54a1-4577-a52e-5aefc83a2f95", - "start": { - "$date": "2021-09-24T05:18:41.000Z" - }, - "end": { - "$date": "2021-09-24T05:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f54060d-9367-456d-8e69-6759470ab3b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T05:36:13.000Z" - }, - "end": { - "$date": "2021-09-24T06:00:53.000Z" - }, - "events": [ - { - "uuid": "29634ecc-701a-4c9f-bd54-fe8735257379", - "start": { - "$date": "2021-09-24T05:36:13.000Z" - }, - "end": { - "$date": "2021-09-24T06:00:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07ea5077-8ff5-4362-a6d2-3662480bdaad", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-24T05:36:36.000Z" - }, - "end": { - "$date": "2021-09-24T06:00:56.000Z" - }, - "events": [ - { - "uuid": "c8f4a93a-9143-4a82-8642-5f5195bf4771", - "start": { - "$date": "2021-09-24T05:36:36.000Z" - }, - "end": { - "$date": "2021-09-24T06:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56f042f0-1b31-4c09-9abb-7151467c8bbe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-24T06:05:24.000Z" - }, - "end": { - "$date": "2021-09-24T06:26:17.000Z" - }, - "events": [ - { - "uuid": "587d34d1-1da5-4777-8412-ec456ff405cb", - "start": { - "$date": "2021-09-24T06:05:24.000Z" - }, - "end": { - "$date": "2021-09-24T06:26:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffa03b8f-dc23-4ace-8e8d-25cd3edae608", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T06:05:33.000Z" - }, - "end": { - "$date": "2021-09-24T06:26:14.000Z" - }, - "events": [ - { - "uuid": "96e66c15-34eb-4ad9-a365-a7d66b50d743", - "start": { - "$date": "2021-09-24T06:05:33.000Z" - }, - "end": { - "$date": "2021-09-24T06:26:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dac118f9-3b94-4fba-b0dc-25b810107530", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-24T06:05:52.000Z" - }, - "end": { - "$date": "2021-09-24T06:26:13.000Z" - }, - "events": [ - { - "uuid": "a427fc17-1211-4050-ad55-730667a7355e", - "start": { - "$date": "2021-09-24T06:05:52.000Z" - }, - "end": { - "$date": "2021-09-24T06:26:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "74170c74-8050-47f8-9b70-93f9c150a5c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-24T06:14:11.000Z" - }, - "end": { - "$date": "2021-09-24T06:39:03.000Z" - }, - "events": [ - { - "uuid": "9e2a2249-dfa7-429e-bf0a-88025ba11995", - "start": { - "$date": "2021-09-24T06:14:11.000Z" - }, - "end": { - "$date": "2021-09-24T06:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb05a201-15ad-4a4f-8e14-d772c4d0596e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-24T06:29:21.000Z" - }, - "end": { - "$date": "2021-09-24T06:51:56.000Z" - }, - "events": [ - { - "uuid": "58d288a7-88ef-4536-9181-92402e5f1997", - "start": { - "$date": "2021-09-24T06:29:21.000Z" - }, - "end": { - "$date": "2021-09-24T06:51:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6af050ad-2e14-4b5a-ae5f-348609c280a4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-24T06:29:18.000Z" - }, - "end": { - "$date": "2021-09-24T06:51:53.000Z" - }, - "events": [ - { - "uuid": "65135c05-a7e7-4b6d-bfc3-e913c20cb121", - "start": { - "$date": "2021-09-24T06:29:18.000Z" - }, - "end": { - "$date": "2021-09-24T06:51:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc87714e-038e-4839-9968-5b6d1b517da2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T06:29:04.000Z" - }, - "end": { - "$date": "2021-09-24T06:51:49.000Z" - }, - "events": [ - { - "uuid": "f6d2337d-f02d-4c93-8f14-626222d517f9", - "start": { - "$date": "2021-09-24T06:29:04.000Z" - }, - "end": { - "$date": "2021-09-24T06:51:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b7a384fd-f12e-4c97-a61f-3dd70f369e41", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-24T14:20:30.000Z" - }, - "end": { - "$date": "2021-09-24T14:22:51.000Z" - }, - "events": [ - { - "uuid": "4c6a633a-4acd-43a2-8eea-a6fe24777da8", - "start": { - "$date": "2021-09-24T14:20:30.000Z" - }, - "end": { - "$date": "2021-09-24T14:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2256b8c-dc8e-4e3e-b084-a7408584698a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T15:01:06.000Z" - }, - "end": { - "$date": "2021-09-24T15:23:36.000Z" - }, - "events": [ - { - "uuid": "7b7089b0-8a2c-4e66-b28a-0495bc916220", - "start": { - "$date": "2021-09-24T15:01:06.000Z" - }, - "end": { - "$date": "2021-09-24T15:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29db3ad2-fa26-4fd2-b915-b0080212a70c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T15:29:27.000Z" - }, - "end": { - "$date": "2021-09-24T15:51:12.000Z" - }, - "events": [ - { - "uuid": "d2895eb7-3512-4c34-b44c-e62d26c56ccc", - "start": { - "$date": "2021-09-24T15:29:27.000Z" - }, - "end": { - "$date": "2021-09-24T15:51:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e098f13-0aca-4082-bace-13d98d8f6933", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T17:51:50.000Z" - }, - "end": { - "$date": "2021-09-24T18:05:19.000Z" - }, - "events": [ - { - "uuid": "afa33102-bb53-4868-adb9-ab5e839fa8ad", - "start": { - "$date": "2021-09-24T17:51:50.000Z" - }, - "end": { - "$date": "2021-09-24T18:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48313b96-1d79-4881-aff6-5e08feff7448", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-24T18:28:10.000Z" - }, - "end": { - "$date": "2021-09-24T18:29:26.000Z" - }, - "events": [ - { - "uuid": "2588af0f-46d9-471c-b75e-480e7f19bbba", - "start": { - "$date": "2021-09-24T18:28:10.000Z" - }, - "end": { - "$date": "2021-09-24T18:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2be8672d-0659-4d59-9806-406ddfea38a3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-24T20:09:29.000Z" - }, - "end": { - "$date": "2021-09-24T20:43:36.000Z" - }, - "events": [ - { - "uuid": "f71628be-8e2f-4665-930a-b687c2ae4a4c", - "start": { - "$date": "2021-09-24T20:09:29.000Z" - }, - "end": { - "$date": "2021-09-24T20:43:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7592e000-17b6-46d7-a1a7-bd6ee2c3fc46", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-24T23:37:28.000Z" - }, - "end": { - "$date": "2021-09-24T23:47:22.000Z" - }, - "events": [ - { - "uuid": "f9b49c6e-8ee0-4199-8dfe-640f6283cb66", - "start": { - "$date": "2021-09-24T23:37:28.000Z" - }, - "end": { - "$date": "2021-09-24T23:47:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "da1f27f2-838f-4031-bb89-7ad1a7ad9a51", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-24T23:51:27.000Z" - }, - "end": { - "$date": "2021-09-24T23:59:00.000Z" - }, - "events": [ - { - "uuid": "8f2b1073-b4d2-4650-8cab-f945dbe4de92", - "start": { - "$date": "2021-09-24T23:51:27.000Z" - }, - "end": { - "$date": "2021-09-24T23:59:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "54be9749-e117-4c6b-b717-8238060244f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T00:05:45.000Z" - }, - "end": { - "$date": "2021-09-25T00:17:38.000Z" - }, - "events": [ - { - "uuid": "9ac70d19-5e51-4d81-be8d-77900bfd7d82", - "start": { - "$date": "2021-09-25T00:05:45.000Z" - }, - "end": { - "$date": "2021-09-25T00:17:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1cd3430f-733b-440a-8ba4-1fbcc8e7e41d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-25T00:06:12.000Z" - }, - "end": { - "$date": "2021-09-25T07:03:21.000Z" - }, - "events": [ - { - "uuid": "c3aa4a38-2526-4ff1-9dfd-9a23a759a222", - "start": { - "$date": "2021-09-25T00:06:12.000Z" - }, - "end": { - "$date": "2021-09-25T03:57:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39b96be5-955b-4648-a01e-3a7c188230c3", - "start": { - "$date": "2021-09-25T03:57:12.000Z" - }, - "end": { - "$date": "2021-09-25T04:02:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f05b3f99-3024-4cd3-87e8-2a8ea7f9fd1a", - "start": { - "$date": "2021-09-25T04:02:12.000Z" - }, - "end": { - "$date": "2021-09-25T07:03:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "6d89a3ac-dcf0-4448-88de-7a1a82d4eb05", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T00:54:58.000Z" - }, - "end": { - "$date": "2021-09-25T00:58:29.000Z" - }, - "events": [ - { - "uuid": "eb5101ca-26b4-4449-821d-fa6700d9f11a", - "start": { - "$date": "2021-09-25T00:54:58.000Z" - }, - "end": { - "$date": "2021-09-25T00:58:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "830f5a50-0fc1-4d59-82d0-1258b45f9022", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T00:59:05.000Z" - }, - "end": { - "$date": "2021-09-25T01:10:26.000Z" - }, - "events": [ - { - "uuid": "78aae46d-3901-4d24-8e9b-4c5c349b14ac", - "start": { - "$date": "2021-09-25T00:59:05.000Z" - }, - "end": { - "$date": "2021-09-25T01:10:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f0f9b382-f04c-44d3-ab16-913009c6de1d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T01:10:41.000Z" - }, - "end": { - "$date": "2021-09-25T01:51:22.000Z" - }, - "events": [ - { - "uuid": "d6985b2d-bd4f-46de-9d92-a165b2791ed3", - "start": { - "$date": "2021-09-25T01:10:41.000Z" - }, - "end": { - "$date": "2021-09-25T01:51:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "500d8383-5217-4737-a000-515f7a34dd56", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T02:01:28.000Z" - }, - "end": { - "$date": "2021-09-25T02:01:52.000Z" - }, - "events": [ - { - "uuid": "46ae9c5b-ea3f-476f-9fff-b49743a9b227", - "start": { - "$date": "2021-09-25T02:01:28.000Z" - }, - "end": { - "$date": "2021-09-25T02:01:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bb0afec-1495-4508-ac7d-488bc0a2d27c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T02:01:36.000Z" - }, - "end": { - "$date": "2021-09-25T02:26:32.000Z" - }, - "events": [ - { - "uuid": "dfb8f8d3-e97a-4c40-9670-a42cafc1d3f9", - "start": { - "$date": "2021-09-25T02:01:36.000Z" - }, - "end": { - "$date": "2021-09-25T02:26:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "f600b692-e8ca-48c9-95f1-dedba5246dad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T02:06:16.000Z" - }, - "end": { - "$date": "2021-09-25T02:24:51.000Z" - }, - "events": [ - { - "uuid": "3d041a3c-b307-4194-ae2a-c6928e7167e6", - "start": { - "$date": "2021-09-25T02:06:16.000Z" - }, - "end": { - "$date": "2021-09-25T02:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d697f4b4-f778-4d7e-8ac2-bbf314352684", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T02:10:53.000Z" - }, - "end": { - "$date": "2021-09-25T02:22:19.000Z" - }, - "events": [ - { - "uuid": "798c3577-b3df-4765-8ddf-1ef1d1bdd787", - "start": { - "$date": "2021-09-25T02:10:53.000Z" - }, - "end": { - "$date": "2021-09-25T02:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5612fe97-4bec-41e4-9efb-3170c990fe68", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T02:31:53.000Z" - }, - "end": { - "$date": "2021-09-25T02:42:04.000Z" - }, - "events": [ - { - "uuid": "42573d5a-9d09-4c1f-b222-c0a96cddbd66", - "start": { - "$date": "2021-09-25T02:31:53.000Z" - }, - "end": { - "$date": "2021-09-25T02:42:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbb6fcd5-809a-4a86-863c-c17d6211c740", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T03:18:55.000Z" - }, - "end": { - "$date": "2021-09-25T03:19:35.000Z" - }, - "events": [ - { - "uuid": "f7affa50-d855-4a0a-a524-61da19604093", - "start": { - "$date": "2021-09-25T03:18:55.000Z" - }, - "end": { - "$date": "2021-09-25T03:19:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "704301b4-e3bc-4c88-b3b5-26a3a852549a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T02:44:36.000Z" - }, - "end": { - "$date": "2021-09-25T03:12:31.000Z" - }, - "events": [ - { - "uuid": "fca50b88-41e4-48cb-b4d7-957dc5ca25e7", - "start": { - "$date": "2021-09-25T02:44:36.000Z" - }, - "end": { - "$date": "2021-09-25T03:12:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82d7c0f3-6d3c-4ba1-9231-22a287e39631", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-25T02:54:13.000Z" - }, - "end": { - "$date": "2021-09-25T07:24:10.000Z" - }, - "events": [ - { - "uuid": "bfab0d4c-bc46-41e2-8e13-d0819057dba1", - "start": { - "$date": "2021-09-25T02:54:13.000Z" - }, - "end": { - "$date": "2021-09-25T07:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c25f1dda-7301-4443-87fb-3008c0f2b65c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T02:55:19.000Z" - }, - "end": { - "$date": "2021-09-25T05:38:17.000Z" - }, - "events": [ - { - "uuid": "84c109a6-a618-4d55-be57-97bc4a3f9966", - "start": { - "$date": "2021-09-25T02:55:19.000Z" - }, - "end": { - "$date": "2021-09-25T03:07:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "21b338c5-7f9c-4c41-98e9-9115f15be1d0", - "start": { - "$date": "2021-09-25T03:07:19.000Z" - }, - "end": { - "$date": "2021-09-25T03:12:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "576b2cee-c8b2-40e3-bbe1-be0ecded47ac", - "start": { - "$date": "2021-09-25T03:12:19.000Z" - }, - "end": { - "$date": "2021-09-25T05:38:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "f44d1e5e-5355-415f-bc2e-91014ab24e8e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-25T02:58:50.000Z" - }, - "end": { - "$date": "2021-09-25T05:11:58.000Z" - }, - "events": [ - { - "uuid": "87635d58-af11-4e87-ac19-57e228a5bd3e", - "start": { - "$date": "2021-09-25T02:58:50.000Z" - }, - "end": { - "$date": "2021-09-25T05:11:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "ec07a2a4-d015-49a0-a286-a3bd6bea18f5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-25T03:01:57.000Z" - }, - "end": { - "$date": "2021-09-25T05:11:44.000Z" - }, - "events": [ - { - "uuid": "71a95af4-85d2-4f59-a7a8-930169308314", - "start": { - "$date": "2021-09-25T03:01:57.000Z" - }, - "end": { - "$date": "2021-09-25T05:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "9b90ec6b-f0c1-4cf3-b90c-86ad68e7a88b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-25T03:01:50.000Z" - }, - "end": { - "$date": "2021-09-25T04:13:07.000Z" - }, - "events": [ - { - "uuid": "b923f731-588c-4edc-a305-cbf00fafe1ed", - "start": { - "$date": "2021-09-25T03:01:50.000Z" - }, - "end": { - "$date": "2021-09-25T04:13:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "06278a76-8ba4-4658-8c5e-991853c88b3a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T03:04:26.000Z" - }, - "end": { - "$date": "2021-09-25T05:11:40.000Z" - }, - "events": [ - { - "uuid": "8a65605a-ec88-434e-862a-b61a51089f06", - "start": { - "$date": "2021-09-25T03:04:26.000Z" - }, - "end": { - "$date": "2021-09-25T05:11:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "b8864b79-99b1-4592-af6e-1d6d38e0345d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-25T03:07:07.000Z" - }, - "end": { - "$date": "2021-09-25T04:18:04.000Z" - }, - "events": [ - { - "uuid": "5e47108c-d592-46c9-9c3c-a8110352aad2", - "start": { - "$date": "2021-09-25T03:07:07.000Z" - }, - "end": { - "$date": "2021-09-25T04:18:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79146229-3d5c-4e06-91d7-a85820c25618", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-25T03:24:49.000Z" - }, - "end": { - "$date": "2021-09-25T03:46:13.000Z" - }, - "events": [ - { - "uuid": "b851b87f-b2c6-40b6-8327-c780af8512d1", - "start": { - "$date": "2021-09-25T03:24:49.000Z" - }, - "end": { - "$date": "2021-09-25T03:46:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "18c7e385-f0ca-47b9-803f-5cc8256f585e", - "uuid": "5894c29f-5798-4338-9b15-836698d2eab6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T03:32:16.000Z" - }, - "end": { - "$date": "2021-09-25T03:37:10.000Z" - }, - "events": [ - { - "uuid": "c5651e94-f3f1-496e-a1df-ce5637968b6c", - "start": { - "$date": "2021-09-25T03:32:16.000Z" - }, - "end": { - "$date": "2021-09-25T03:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "ad6d046b-f9af-4f47-b37a-6784ce56922f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T03:51:29.000Z" - }, - "end": { - "$date": "2021-09-25T03:52:53.000Z" - }, - "events": [ - { - "uuid": "3ac31429-5895-48a3-aa17-b4e6a4f7ddf4", - "start": { - "$date": "2021-09-25T03:51:29.000Z" - }, - "end": { - "$date": "2021-09-25T03:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2071ffb-8b7b-42bc-8460-aa59ec7bcaf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T03:58:46.000Z" - }, - "end": { - "$date": "2021-09-25T04:37:06.000Z" - }, - "events": [ - { - "uuid": "b72eafaa-603d-4f4a-9e0a-e7a108afe03d", - "start": { - "$date": "2021-09-25T03:58:46.000Z" - }, - "end": { - "$date": "2021-09-25T04:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "115c7fbc-2264-49ec-b30a-656d6b75ad6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T05:44:46.000Z" - }, - "end": { - "$date": "2021-09-25T06:02:47.000Z" - }, - "events": [ - { - "uuid": "bc449e92-599a-4fae-8ee0-dd1e98fb007f", - "start": { - "$date": "2021-09-25T05:44:46.000Z" - }, - "end": { - "$date": "2021-09-25T06:02:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1d5cafba-e788-4801-8969-c081dc31200d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T05:40:48.000Z" - }, - "end": { - "$date": "2021-09-25T05:52:59.000Z" - }, - "events": [ - { - "uuid": "701d4df5-4f1a-4639-80b2-dd938fb78298", - "start": { - "$date": "2021-09-25T05:40:48.000Z" - }, - "end": { - "$date": "2021-09-25T05:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "88047fee-62e5-4b34-aa4c-daa31d2909d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T05:55:04.000Z" - }, - "end": { - "$date": "2021-09-25T06:16:55.000Z" - }, - "events": [ - { - "uuid": "4366dabe-2614-42bc-9cf8-370cc039d880", - "start": { - "$date": "2021-09-25T05:55:04.000Z" - }, - "end": { - "$date": "2021-09-25T06:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "4ba2c302-dba2-40cc-9331-51a95dd96031", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-25T06:00:52.000Z" - }, - "end": { - "$date": "2021-09-25T08:13:09.000Z" - }, - "events": [ - { - "uuid": "6a466075-3d87-42b2-b7d5-e2e1fa9d57df", - "start": { - "$date": "2021-09-25T06:00:52.000Z" - }, - "end": { - "$date": "2021-09-25T08:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6670b0a9-809e-457a-9600-4c017772a889", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T06:05:18.000Z" - }, - "end": { - "$date": "2021-09-25T06:29:29.000Z" - }, - "events": [ - { - "uuid": "c9ce94c8-765e-447b-93f3-eea9df349b96", - "start": { - "$date": "2021-09-25T06:05:18.000Z" - }, - "end": { - "$date": "2021-09-25T06:29:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "23159f69-dc5d-40e1-b0ee-670a5b03d37f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T06:18:20.000Z" - }, - "end": { - "$date": "2021-09-25T07:38:05.000Z" - }, - "events": [ - { - "uuid": "56060501-a113-473c-9c08-c60e16a9326c", - "start": { - "$date": "2021-09-25T06:18:20.000Z" - }, - "end": { - "$date": "2021-09-25T07:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "1ed3b861-2e8e-4671-8b92-c31e70b38fa1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-25T06:50:41.000Z" - }, - "end": { - "$date": "2021-09-25T09:21:14.000Z" - }, - "events": [ - { - "uuid": "29f34b00-89b5-41fa-958a-d69a28cc28a4", - "start": { - "$date": "2021-09-25T06:50:41.000Z" - }, - "end": { - "$date": "2021-09-25T09:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "265fa8e3-40b5-4619-b23f-2ae51a91a08f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-25T07:05:07.000Z" - }, - "end": { - "$date": "2021-09-25T07:52:05.000Z" - }, - "events": [ - { - "uuid": "85588552-3e7f-403e-b6da-e259bc9e4d44", - "start": { - "$date": "2021-09-25T07:05:07.000Z" - }, - "end": { - "$date": "2021-09-25T07:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96769626-d5c8-400b-a124-408a863785e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T07:16:42.000Z" - }, - "end": { - "$date": "2021-09-25T07:37:24.000Z" - }, - "events": [ - { - "uuid": "a09c9e5b-9511-429b-aa69-2e193217ee2e", - "start": { - "$date": "2021-09-25T07:16:42.000Z" - }, - "end": { - "$date": "2021-09-25T07:37:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49e951e3-4d05-4052-92b7-1ff3b35ba968", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T07:42:18.000Z" - }, - "end": { - "$date": "2021-09-25T08:08:24.000Z" - }, - "events": [ - { - "uuid": "8256e35a-f070-4c60-b69b-d993d14e00da", - "start": { - "$date": "2021-09-25T07:42:18.000Z" - }, - "end": { - "$date": "2021-09-25T08:08:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "4c500f08-ac91-419f-b8e9-06db097b44c8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-25T10:41:37.000Z" - }, - "end": { - "$date": "2021-09-25T12:47:20.000Z" - }, - "events": [ - { - "uuid": "1be3bacb-c340-4354-8390-289aa9649052", - "start": { - "$date": "2021-09-25T10:41:37.000Z" - }, - "end": { - "$date": "2021-09-25T12:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "95789053-c63f-405d-ad27-1b1750e6e83b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T14:41:16.000Z" - }, - "end": { - "$date": "2021-09-25T14:48:02.000Z" - }, - "events": [ - { - "uuid": "557f80bf-683c-45d5-af8a-ae6d77e21640", - "start": { - "$date": "2021-09-25T14:41:16.000Z" - }, - "end": { - "$date": "2021-09-25T14:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a487f062-7d82-48cc-bf9b-74b01b9a235a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-25T15:31:27.000Z" - }, - "end": { - "$date": "2021-09-25T15:52:16.000Z" - }, - "events": [ - { - "uuid": "2eb242fe-3f35-4f23-a370-8f1d4543831f", - "start": { - "$date": "2021-09-25T15:31:27.000Z" - }, - "end": { - "$date": "2021-09-25T15:52:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d4152c4e-9af2-48e4-9e56-b0e63f1a7e38", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T15:32:07.000Z" - }, - "end": { - "$date": "2021-09-25T16:30:09.000Z" - }, - "events": [ - { - "uuid": "ae3c0765-9ed7-424d-9def-9fa59fc919bb", - "start": { - "$date": "2021-09-25T15:32:07.000Z" - }, - "end": { - "$date": "2021-09-25T16:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7894e141-044f-4103-9bd5-df0aa70e879f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T15:43:58.000Z" - }, - "end": { - "$date": "2021-09-25T16:32:43.000Z" - }, - "events": [ - { - "uuid": "10adf4da-fd7c-4d46-a204-5b405928696c", - "start": { - "$date": "2021-09-25T15:43:58.000Z" - }, - "end": { - "$date": "2021-09-25T16:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79499622-afa1-4b19-906c-74822b69ea91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-25T16:03:33.000Z" - }, - "end": { - "$date": "2021-09-25T16:26:42.000Z" - }, - "events": [ - { - "uuid": "840dae0e-7c40-473f-ab5b-7b147799a237", - "start": { - "$date": "2021-09-25T16:03:33.000Z" - }, - "end": { - "$date": "2021-09-25T16:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87ae4fe4-452c-41b9-a3bc-704425748854", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-25T16:29:58.000Z" - }, - "end": { - "$date": "2021-09-25T16:54:18.000Z" - }, - "events": [ - { - "uuid": "5d1c81ad-d39b-426a-8ba6-7e1c1efbca0f", - "start": { - "$date": "2021-09-25T16:29:58.000Z" - }, - "end": { - "$date": "2021-09-25T16:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "c3f8d825-4594-4cef-b3f6-2b51d2f5a028", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-25T16:33:28.000Z" - }, - "end": { - "$date": "2021-09-25T18:11:52.000Z" - }, - "events": [ - { - "uuid": "c423bfb4-b31c-4fa6-9ef1-d8e8fe9691e6", - "start": { - "$date": "2021-09-25T16:33:28.000Z" - }, - "end": { - "$date": "2021-09-25T16:55:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81df9c90-ddfb-4dad-8e2c-ebe33bcbe4d4", - "start": { - "$date": "2021-09-25T16:55:28.000Z" - }, - "end": { - "$date": "2021-09-25T17:00:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ede7518c-5f39-45b2-abb1-2f29a4de475f", - "start": { - "$date": "2021-09-25T17:00:28.000Z" - }, - "end": { - "$date": "2021-09-25T17:10:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e0eb739-a9e5-4eac-8693-7385d29c57dc", - "start": { - "$date": "2021-09-25T17:10:28.000Z" - }, - "end": { - "$date": "2021-09-25T17:15:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2dba7a36-a975-4434-b16d-5633c0ba7191", - "start": { - "$date": "2021-09-25T17:15:28.000Z" - }, - "end": { - "$date": "2021-09-25T17:25:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "675d18ae-c533-4e9c-b740-b639091c15c0", - "start": { - "$date": "2021-09-25T17:25:28.000Z" - }, - "end": { - "$date": "2021-09-25T17:57:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f28ea630-0e5d-4176-a6ea-5eac970e5fbf", - "start": { - "$date": "2021-09-25T17:57:28.000Z" - }, - "end": { - "$date": "2021-09-25T17:59:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72f9619e-4039-42be-85bf-a53bbec35381", - "start": { - "$date": "2021-09-25T17:59:28.000Z" - }, - "end": { - "$date": "2021-09-25T18:10:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "960764bd-3b4d-4a7b-bdbc-e0b858a2412d", - "start": { - "$date": "2021-09-25T18:10:28.000Z" - }, - "end": { - "$date": "2021-09-25T18:11:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "466bd168-d7d3-4fe0-9514-81603e595071", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-25T17:15:41.000Z" - }, - "end": { - "$date": "2021-09-25T17:45:37.000Z" - }, - "events": [ - { - "uuid": "442de819-c22d-4bea-85ed-180e717a2e0d", - "start": { - "$date": "2021-09-25T17:15:41.000Z" - }, - "end": { - "$date": "2021-09-25T17:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b03207da-69d8-405f-b2fe-9864513661c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T18:16:04.000Z" - }, - "end": { - "$date": "2021-09-25T18:57:22.000Z" - }, - "events": [ - { - "uuid": "c339778d-2fab-4b7f-b3c2-d7738f341e74", - "start": { - "$date": "2021-09-25T18:16:04.000Z" - }, - "end": { - "$date": "2021-09-25T18:57:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc7cfae2-df6c-44df-a9d4-067aaff8d6c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T19:06:39.000Z" - }, - "end": { - "$date": "2021-09-25T19:23:58.000Z" - }, - "events": [ - { - "uuid": "e9c6eb49-0daf-45ac-93fe-02a3cbef36cb", - "start": { - "$date": "2021-09-25T19:06:39.000Z" - }, - "end": { - "$date": "2021-09-25T19:23:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "767078d1-1c70-4a9c-8230-c0a389dba3b1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T19:06:26.000Z" - }, - "end": { - "$date": "2021-09-25T19:24:11.000Z" - }, - "events": [ - { - "uuid": "d7dea016-17ec-4a2b-94ef-76732b6b5a33", - "start": { - "$date": "2021-09-25T19:06:26.000Z" - }, - "end": { - "$date": "2021-09-25T19:24:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb7ff82b-c718-4fa0-bb15-8c806e1177e5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-25T19:27:24.000Z" - }, - "end": { - "$date": "2021-09-25T19:53:24.000Z" - }, - "events": [ - { - "uuid": "9951e3de-4e07-44b9-bf7c-e11eb3a19b6a", - "start": { - "$date": "2021-09-25T19:27:24.000Z" - }, - "end": { - "$date": "2021-09-25T19:53:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0b4d56d-95c8-4bad-8aa2-0c9a2c12a5c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T19:27:28.000Z" - }, - "end": { - "$date": "2021-09-25T19:53:34.000Z" - }, - "events": [ - { - "uuid": "c7e753ba-5c4c-4d4c-9dc2-597bc0b295e6", - "start": { - "$date": "2021-09-25T19:27:28.000Z" - }, - "end": { - "$date": "2021-09-25T19:53:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e2499fe-7791-41b3-bce9-8862b519a1b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T20:12:32.000Z" - }, - "end": { - "$date": "2021-09-25T20:31:36.000Z" - }, - "events": [ - { - "uuid": "16ac2646-a24b-4a9c-b982-cc42d36c6e5d", - "start": { - "$date": "2021-09-25T20:12:32.000Z" - }, - "end": { - "$date": "2021-09-25T20:31:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61090a1d-85f5-4ecd-9377-9825f89a205a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T20:34:23.000Z" - }, - "end": { - "$date": "2021-09-25T20:58:32.000Z" - }, - "events": [ - { - "uuid": "f027c9a0-5036-4057-931c-db324558cce8", - "start": { - "$date": "2021-09-25T20:34:23.000Z" - }, - "end": { - "$date": "2021-09-25T20:58:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "79de9395-69cc-474a-8716-08bea6ff3f18", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-25T22:56:20.000Z" - }, - "end": { - "$date": "2021-09-26T01:57:23.000Z" - }, - "events": [ - { - "uuid": "e6c6e9a1-fb48-4565-835b-021b4279aeaf", - "start": { - "$date": "2021-09-25T22:56:20.000Z" - }, - "end": { - "$date": "2021-09-26T01:57:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4874a187-693b-47a3-88e3-dbdb02cb15cd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-25T23:34:39.000Z" - }, - "end": { - "$date": "2021-09-26T00:03:03.000Z" - }, - "events": [ - { - "uuid": "7446b041-989b-4112-bce8-cfa9b92ec6dc", - "start": { - "$date": "2021-09-25T23:34:39.000Z" - }, - "end": { - "$date": "2021-09-26T00:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e5fb0ec0-cc8f-4c00-8c5e-086c77a84eea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-25T23:35:11.000Z" - }, - "end": { - "$date": "2021-09-25T23:43:44.000Z" - }, - "events": [ - { - "uuid": "7c8f1c70-0cce-4352-b781-d2da7f2f86db", - "start": { - "$date": "2021-09-25T23:35:11.000Z" - }, - "end": { - "$date": "2021-09-25T23:42:11.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "87380b3e-1a56-47eb-9bd6-921a13f70096", - "start": { - "$date": "2021-09-25T23:42:11.000Z" - }, - "end": { - "$date": "2021-09-25T23:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55baf018-3721-4566-badd-eaa738be050c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-25T23:58:43.000Z" - }, - "end": { - "$date": "2021-09-26T00:14:18.000Z" - }, - "events": [ - { - "uuid": "a4a443b6-d858-46c2-9f94-3305d4fb3b75", - "start": { - "$date": "2021-09-25T23:58:43.000Z" - }, - "end": { - "$date": "2021-09-26T00:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fac47a77-d67f-4f99-9f40-3b2f93cc9d44", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-26T00:00:22.000Z" - }, - "end": { - "$date": "2021-09-26T00:31:00.000Z" - }, - "events": [ - { - "uuid": "02553303-76e3-487a-b57e-2608d3ec5661", - "start": { - "$date": "2021-09-26T00:00:22.000Z" - }, - "end": { - "$date": "2021-09-26T00:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cced2b6f-9755-42db-852c-dc1725080910", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T00:04:53.000Z" - }, - "end": { - "$date": "2021-09-26T00:32:06.000Z" - }, - "events": [ - { - "uuid": "02d4a721-9c59-47f2-b4d4-707426ff62ac", - "start": { - "$date": "2021-09-26T00:04:53.000Z" - }, - "end": { - "$date": "2021-09-26T00:32:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a439ad66-4ef4-46c5-815f-69b533967ff5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T00:06:07.000Z" - }, - "end": { - "$date": "2021-09-26T00:52:25.000Z" - }, - "events": [ - { - "uuid": "9f4aa99c-b878-4820-9287-08821e036c7b", - "start": { - "$date": "2021-09-26T00:06:07.000Z" - }, - "end": { - "$date": "2021-09-26T00:52:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "087c5e5a-1738-43c5-ae61-e7aa6ff1ba3d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-26T00:32:57.000Z" - }, - "end": { - "$date": "2021-09-26T04:09:23.000Z" - }, - "events": [ - { - "uuid": "da6a5d71-4b98-4472-bc98-002ede7eaae5", - "start": { - "$date": "2021-09-26T00:32:57.000Z" - }, - "end": { - "$date": "2021-09-26T04:09:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68bd125d-47de-448a-bc07-5ce54e1a6f43", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T00:33:00.000Z" - }, - "end": { - "$date": "2021-09-26T00:36:00.000Z" - }, - "events": [ - { - "uuid": "7cf971a4-7470-4533-bbd0-fc724cd578ac", - "start": { - "$date": "2021-09-26T00:33:00.000Z" - }, - "end": { - "$date": "2021-09-26T00:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "11efd107-93e3-4032-8e69-410fc9b40a91", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T00:36:30.000Z" - }, - "end": { - "$date": "2021-09-26T04:11:08.000Z" - }, - "events": [ - { - "uuid": "10cfd0b0-5949-4a0b-a1ba-6274d2bd67a9", - "start": { - "$date": "2021-09-26T00:36:30.000Z" - }, - "end": { - "$date": "2021-09-26T04:11:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14253f90-1b09-498e-a3d6-416c75d683a3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-09-26T00:38:55.000Z" - }, - "end": { - "$date": "2021-09-26T04:08:28.000Z" - }, - "events": [ - { - "uuid": "f8a77374-1418-4826-ad7d-e02e7424c9fd", - "start": { - "$date": "2021-09-26T00:38:55.000Z" - }, - "end": { - "$date": "2021-09-26T04:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1d0654d7-c1a7-4908-88e9-d87f0d77abdd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-25T22:27:35.000Z" - }, - "end": { - "$date": "2021-09-26T06:10:45.000Z" - }, - "events": [ - { - "uuid": "25402a65-1481-4af6-8e8a-3d5cd6b1cc0e", - "start": { - "$date": "2021-09-25T22:27:35.000Z" - }, - "end": { - "$date": "2021-09-25T22:38:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bad6ef0e-82d4-4d9e-8f0a-ff7f95c0aec8", - "start": { - "$date": "2021-09-25T22:38:35.000Z" - }, - "end": { - "$date": "2021-09-25T22:41:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "efb7f9bc-135a-49fd-b844-56d7f1706278", - "start": { - "$date": "2021-09-25T22:41:35.000Z" - }, - "end": { - "$date": "2021-09-26T06:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b5d20002-595f-4720-88f0-ee0d4e2af131", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T01:16:38.000Z" - }, - "end": { - "$date": "2021-09-26T01:25:49.000Z" - }, - "events": [ - { - "uuid": "c3abd593-881b-42ab-aca2-1f50d361e91c", - "start": { - "$date": "2021-09-26T01:16:38.000Z" - }, - "end": { - "$date": "2021-09-26T01:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b1f708a8-49f7-42d2-969f-e013f65f632f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T02:03:16.000Z" - }, - "end": { - "$date": "2021-09-26T02:51:56.000Z" - }, - "events": [ - { - "uuid": "81b015e9-9e98-4315-bde8-5ce171cba4d7", - "start": { - "$date": "2021-09-26T02:03:16.000Z" - }, - "end": { - "$date": "2021-09-26T02:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "55a834cf-ef47-44dc-828d-f8698076309d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T02:16:11.000Z" - }, - "end": { - "$date": "2021-09-26T02:21:57.000Z" - }, - "events": [ - { - "uuid": "5d52c5fe-13e5-421b-8f84-911e0a4a95c3", - "start": { - "$date": "2021-09-26T02:16:11.000Z" - }, - "end": { - "$date": "2021-09-26T02:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "614a1899-f88e-4ee6-8280-1c307ae30a3e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T02:39:28.000Z" - }, - "end": { - "$date": "2021-09-26T04:11:42.000Z" - }, - "events": [ - { - "uuid": "ef29a2fa-1099-4334-bdef-f422fb3b93c8", - "start": { - "$date": "2021-09-26T02:39:28.000Z" - }, - "end": { - "$date": "2021-09-26T04:11:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d3a9c6eb-e5c3-4ad3-809c-eb8b1fc32a01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-26T04:05:34.000Z" - }, - "end": { - "$date": "2021-09-26T04:08:10.000Z" - }, - "events": [ - { - "uuid": "fc194318-d278-4a72-ad22-d39736c2155d", - "start": { - "$date": "2021-09-26T04:05:34.000Z" - }, - "end": { - "$date": "2021-09-26T04:08:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5d876a2-00ad-47d3-ba3e-a97a9e5889b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T04:08:59.000Z" - }, - "end": { - "$date": "2021-09-26T04:11:39.000Z" - }, - "events": [ - { - "uuid": "58981cbd-8a6d-4e79-b8d7-3498c43aa31c", - "start": { - "$date": "2021-09-26T04:08:59.000Z" - }, - "end": { - "$date": "2021-09-26T04:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "0d5db1e3-8057-4bbf-88a0-07ba3027f031", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T04:12:02.000Z" - }, - "end": { - "$date": "2021-09-26T04:14:18.000Z" - }, - "events": [ - { - "uuid": "71f7c714-cffe-479b-bce6-38c1c9358bb0", - "start": { - "$date": "2021-09-26T04:12:02.000Z" - }, - "end": { - "$date": "2021-09-26T04:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "899d059e-7993-4254-a963-807bbaefba5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T04:20:03.000Z" - }, - "end": { - "$date": "2021-09-26T04:39:04.000Z" - }, - "events": [ - { - "uuid": "0894daf9-be93-406b-9e47-180629dfc887", - "start": { - "$date": "2021-09-26T04:20:03.000Z" - }, - "end": { - "$date": "2021-09-26T04:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "955ff505-8af5-4ddc-a9d2-7f1b338876fb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T04:20:33.000Z" - }, - "end": { - "$date": "2021-09-26T04:38:54.000Z" - }, - "events": [ - { - "uuid": "21b96dcb-a782-4fb1-a5fa-3a7d06132063", - "start": { - "$date": "2021-09-26T04:20:33.000Z" - }, - "end": { - "$date": "2021-09-26T04:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "872d9616-db11-4080-a046-51d55e584484", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-09-26T04:20:22.000Z" - }, - "end": { - "$date": "2021-09-26T04:39:04.000Z" - }, - "events": [ - { - "uuid": "94d2825d-ff6b-4665-b83f-ee6143ae5cac", - "start": { - "$date": "2021-09-26T04:20:22.000Z" - }, - "end": { - "$date": "2021-09-26T04:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25bf0115-5a2e-4ed4-af6c-42d087e65328", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T04:19:59.000Z" - }, - "end": { - "$date": "2021-09-26T04:38:59.000Z" - }, - "events": [ - { - "uuid": "b92f158a-d8bd-461e-af84-9f66fa59b533", - "start": { - "$date": "2021-09-26T04:19:59.000Z" - }, - "end": { - "$date": "2021-09-26T04:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbe8e9de-3f18-4503-889e-7c68876695d9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T04:19:57.000Z" - }, - "end": { - "$date": "2021-09-26T04:38:58.000Z" - }, - "events": [ - { - "uuid": "0870980e-86e8-4ddd-844d-3e72509b5c83", - "start": { - "$date": "2021-09-26T04:19:57.000Z" - }, - "end": { - "$date": "2021-09-26T04:38:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34b53c39-ff10-40e4-836d-55445766b4c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T04:41:29.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:31.000Z" - }, - "events": [ - { - "uuid": "020ef766-3117-4163-abeb-db836ae918b0", - "start": { - "$date": "2021-09-26T04:41:29.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16805642-6a60-473f-9f37-ca022a78e633", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T04:41:54.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:30.000Z" - }, - "events": [ - { - "uuid": "5627e033-c1b3-44c4-9b5b-fd461cf8676d", - "start": { - "$date": "2021-09-26T04:41:54.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e0d8df6-5ad5-4477-8051-5895550b4479", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T04:41:29.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:20.000Z" - }, - "events": [ - { - "uuid": "39188fed-5194-4afc-9e81-382f8c9575be", - "start": { - "$date": "2021-09-26T04:41:29.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7782f130-4d73-429a-be61-08d0bb1213d1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T04:41:28.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:24.000Z" - }, - "events": [ - { - "uuid": "66dcdff4-c562-43f3-9908-bba2e92b9854", - "start": { - "$date": "2021-09-26T04:41:28.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d789ca1e-a46c-42ed-b89b-435dca95cb53", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-09-26T04:41:43.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:29.000Z" - }, - "events": [ - { - "uuid": "51af2eec-6265-48b9-8c57-07a3da931264", - "start": { - "$date": "2021-09-26T04:41:43.000Z" - }, - "end": { - "$date": "2021-09-26T04:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0caf4a5-6f8d-4b59-b8e0-e0169258ba47", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T05:02:50.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:40.000Z" - }, - "events": [ - { - "uuid": "0f11974f-4392-4738-aa5a-ddbb6a099cac", - "start": { - "$date": "2021-09-26T05:02:50.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4e577bf-3fe4-4e81-913f-a9452d9a7815", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T05:05:40.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:35.000Z" - }, - "events": [ - { - "uuid": "04e9e8ec-4007-4af2-a0ec-1631cf011032", - "start": { - "$date": "2021-09-26T05:05:40.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ea1d9ca-b6e3-4ef8-83bb-225dc74b69b4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T05:02:48.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:36.000Z" - }, - "events": [ - { - "uuid": "fb31d287-eab9-4d97-aba4-7a73c803fb3d", - "start": { - "$date": "2021-09-26T05:02:48.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d53a10e2-7bf4-4240-a3a4-34bf9298f2f4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T05:02:45.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:37.000Z" - }, - "events": [ - { - "uuid": "3c356ae7-b343-4631-88f7-00f5fb4a943d", - "start": { - "$date": "2021-09-26T05:02:45.000Z" - }, - "end": { - "$date": "2021-09-26T05:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01e8b58b-8b8d-450c-8bea-120e7416f937", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T05:24:06.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:29.000Z" - }, - "events": [ - { - "uuid": "80eff925-0cdd-4eab-87fe-1a73a0b1ff62", - "start": { - "$date": "2021-09-26T05:24:06.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60bc6c66-4e18-4b24-8f20-dc43d2637f32", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T05:23:29.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:26.000Z" - }, - "events": [ - { - "uuid": "5bb75886-7511-4bcb-8b67-302d1f160dd6", - "start": { - "$date": "2021-09-26T05:23:29.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68c1595d-0d18-47bb-a875-d8db023e8841", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T05:24:00.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:21.000Z" - }, - "events": [ - { - "uuid": "db59fd56-fcdb-48cd-8fb0-caa50f250c8c", - "start": { - "$date": "2021-09-26T05:24:00.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be2e6e15-fe05-41e2-a84c-8439428625aa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T05:23:31.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:27.000Z" - }, - "events": [ - { - "uuid": "651addb0-439e-4078-b574-8c6f5aa06fc8", - "start": { - "$date": "2021-09-26T05:23:31.000Z" - }, - "end": { - "$date": "2021-09-26T05:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eeecb2c2-5388-4cd2-a5f3-d7f0a2a397e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T05:48:27.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:30.000Z" - }, - "events": [ - { - "uuid": "0b154dc8-5ff9-4bc7-b7b6-3546d7e983e0", - "start": { - "$date": "2021-09-26T05:48:27.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16465cf0-ce5f-4dd4-bda0-b75d68969442", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T05:48:51.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:22.000Z" - }, - "events": [ - { - "uuid": "c65e29ec-2af4-4dc8-8626-c24e9009e175", - "start": { - "$date": "2021-09-26T05:48:51.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0234639a-59af-4c83-aa03-14c39dd7dd0d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T05:48:50.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:23.000Z" - }, - "events": [ - { - "uuid": "6d033685-1875-4a52-887b-4dfa5e2033dc", - "start": { - "$date": "2021-09-26T05:48:50.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eceb6866-58c4-4338-a6d3-4e04277f6ebe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T05:48:22.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:23.000Z" - }, - "events": [ - { - "uuid": "9a3ba47d-1100-47c4-a85e-11d0bccb4422", - "start": { - "$date": "2021-09-26T05:48:22.000Z" - }, - "end": { - "$date": "2021-09-26T06:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37021b26-464e-4265-bbfd-05843d7d5b71", - "uuid": "96e1c2cf-1373-4501-a787-5b0f9e2269f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T06:00:04.000Z" - }, - "end": { - "$date": "2021-09-26T06:10:23.000Z" - }, - "events": [ - { - "uuid": "eab67eb3-3dba-40ba-9413-6477a37e4b11", - "start": { - "$date": "2021-09-26T06:00:04.000Z" - }, - "end": { - "$date": "2021-09-26T06:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "beec706f-68af-4f3f-b899-9aa39258276e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T06:05:28.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:44.000Z" - }, - "events": [ - { - "uuid": "8c556daf-d253-42f6-858f-0d8fdd5dcb9b", - "start": { - "$date": "2021-09-26T06:05:28.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "605f4a95-b8b4-4a06-ac8a-009022a9cc89", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T06:06:02.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:32.000Z" - }, - "events": [ - { - "uuid": "40a9dc40-0f9a-4fa4-9ae2-1bbd9105d6de", - "start": { - "$date": "2021-09-26T06:06:02.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41d790e7-5658-45ae-b394-7e7cf06cf904", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T06:05:22.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:38.000Z" - }, - "events": [ - { - "uuid": "8d1c1eb3-4e1e-4729-ac62-7f9f1a3bda07", - "start": { - "$date": "2021-09-26T06:05:22.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69ee15be-107e-42ef-8836-88d522344c0e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-26T06:05:21.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:38.000Z" - }, - "events": [ - { - "uuid": "c9904ae2-0ce2-465c-8cf5-02b23da52869", - "start": { - "$date": "2021-09-26T06:05:21.000Z" - }, - "end": { - "$date": "2021-09-26T06:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32b1b308-21e3-410e-b37a-3b3732674179", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T06:32:39.000Z" - }, - "end": { - "$date": "2021-09-26T06:54:49.000Z" - }, - "events": [ - { - "uuid": "42062227-792a-44b2-95e8-38c6994ef93c", - "start": { - "$date": "2021-09-26T06:32:39.000Z" - }, - "end": { - "$date": "2021-09-26T06:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8367df6f-aa32-4058-a852-a76823b2ccf9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T06:32:33.000Z" - }, - "end": { - "$date": "2021-09-26T06:54:34.000Z" - }, - "events": [ - { - "uuid": "1a587939-c709-4dd1-a252-69cffbf8de69", - "start": { - "$date": "2021-09-26T06:32:33.000Z" - }, - "end": { - "$date": "2021-09-26T06:54:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d072908-2842-4e3c-91b8-eeb19c1f6d8f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T06:33:03.000Z" - }, - "end": { - "$date": "2021-09-26T06:54:33.000Z" - }, - "events": [ - { - "uuid": "2c2376ee-bb73-427c-9bd9-6c6f66adac45", - "start": { - "$date": "2021-09-26T06:33:03.000Z" - }, - "end": { - "$date": "2021-09-26T06:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "909eb3bb-b2da-4961-83a4-3f721f3bf25c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T06:35:33.000Z" - }, - "end": { - "$date": "2021-09-26T06:55:14.000Z" - }, - "events": [ - { - "uuid": "1569384d-4a79-4d2e-ab89-46e8cb561883", - "start": { - "$date": "2021-09-26T06:35:33.000Z" - }, - "end": { - "$date": "2021-09-26T06:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94a8713a-5062-4e08-b8b5-ef41a7fc42a2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T06:57:40.000Z" - }, - "end": { - "$date": "2021-09-26T07:22:48.000Z" - }, - "events": [ - { - "uuid": "24042b76-913e-44a0-abfd-c7594bc5a87c", - "start": { - "$date": "2021-09-26T06:57:40.000Z" - }, - "end": { - "$date": "2021-09-26T07:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92a0a50f-c912-4470-a573-330142e3a38a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T06:57:34.000Z" - }, - "end": { - "$date": "2021-09-26T07:22:40.000Z" - }, - "events": [ - { - "uuid": "07fa2e23-f4ea-4ce2-a9b1-871c3f21ea43", - "start": { - "$date": "2021-09-26T06:57:34.000Z" - }, - "end": { - "$date": "2021-09-26T07:22:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8461b5f5-38b7-4c14-a2b7-6d0cf005e493", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T06:57:59.000Z" - }, - "end": { - "$date": "2021-09-26T07:22:47.000Z" - }, - "events": [ - { - "uuid": "f6692b8b-46a0-449d-a8b0-f349ac3ff392", - "start": { - "$date": "2021-09-26T06:57:59.000Z" - }, - "end": { - "$date": "2021-09-26T07:22:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5569c170-4a9e-4bd1-8f48-f0c2e936733b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T07:25:46.000Z" - }, - "end": { - "$date": "2021-09-26T07:44:01.000Z" - }, - "events": [ - { - "uuid": "5b464948-fc11-44b8-bc34-e19dffd0f2c8", - "start": { - "$date": "2021-09-26T07:25:46.000Z" - }, - "end": { - "$date": "2021-09-26T07:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0eb4090-405e-4a75-981b-6a245629517a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T07:25:40.000Z" - }, - "end": { - "$date": "2021-09-26T07:43:51.000Z" - }, - "events": [ - { - "uuid": "be63b2e5-0183-4a8f-be80-8b33312c36f8", - "start": { - "$date": "2021-09-26T07:25:40.000Z" - }, - "end": { - "$date": "2021-09-26T07:43:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b55d5387-d1f9-47f9-9463-7b9a6a96d8c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T07:26:05.000Z" - }, - "end": { - "$date": "2021-09-26T07:43:58.000Z" - }, - "events": [ - { - "uuid": "a7b53afd-c91c-4148-a44b-4ea3e1571127", - "start": { - "$date": "2021-09-26T07:26:05.000Z" - }, - "end": { - "$date": "2021-09-26T07:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8073f14-091e-408b-8f90-3fe705eef771", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-26T07:46:57.000Z" - }, - "end": { - "$date": "2021-09-26T08:04:23.000Z" - }, - "events": [ - { - "uuid": "48a0c7b9-fbb6-499b-b67c-736e710b3505", - "start": { - "$date": "2021-09-26T07:46:57.000Z" - }, - "end": { - "$date": "2021-09-26T08:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89cb2a5a-8dbe-477d-a66f-4d7bdb6b76a1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T07:46:51.000Z" - }, - "end": { - "$date": "2021-09-26T08:04:12.000Z" - }, - "events": [ - { - "uuid": "95979d38-63fb-4ebe-8bd4-ade5310e7c61", - "start": { - "$date": "2021-09-26T07:46:51.000Z" - }, - "end": { - "$date": "2021-09-26T08:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91e817ab-d6ee-43ea-bfaa-c85ecec954fe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T07:47:10.000Z" - }, - "end": { - "$date": "2021-09-26T08:04:19.000Z" - }, - "events": [ - { - "uuid": "28b76d55-bd7d-4a95-9f95-7277764823dd", - "start": { - "$date": "2021-09-26T07:47:10.000Z" - }, - "end": { - "$date": "2021-09-26T08:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "264b8692-a1cc-421c-a1ad-20f39dc6f432", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T13:57:30.000Z" - }, - "end": { - "$date": "2021-09-26T14:49:28.000Z" - }, - "events": [ - { - "uuid": "e1c2cad4-0665-45e3-9d49-a560a19c334f", - "start": { - "$date": "2021-09-26T13:57:30.000Z" - }, - "end": { - "$date": "2021-09-26T14:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "050d44da-116c-422a-a1d7-c84cf516445e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T14:54:48.000Z" - }, - "end": { - "$date": "2021-09-26T15:25:31.000Z" - }, - "events": [ - { - "uuid": "bc056f83-6286-4113-9c22-446f1799b1e2", - "start": { - "$date": "2021-09-26T14:54:48.000Z" - }, - "end": { - "$date": "2021-09-26T15:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "51dd7ba5-51cb-4b40-a48f-6311860d8ba1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T15:25:55.000Z" - }, - "end": { - "$date": "2021-09-26T15:44:07.000Z" - }, - "events": [ - { - "uuid": "34e3e8f1-5c95-4838-86f5-3dc3cf746be7", - "start": { - "$date": "2021-09-26T15:25:55.000Z" - }, - "end": { - "$date": "2021-09-26T15:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "d5d3a1bf-b8e6-47bc-ad15-9851b7a7d620", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T15:50:54.000Z" - }, - "end": { - "$date": "2021-09-26T17:50:41.000Z" - }, - "events": [ - { - "uuid": "cf230af9-accb-4862-8404-b19191dfd433", - "start": { - "$date": "2021-09-26T15:50:54.000Z" - }, - "end": { - "$date": "2021-09-26T17:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "c11881dc-2c31-4fa3-b80e-d3ad1f81a684", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T17:50:11.000Z" - }, - "end": { - "$date": "2021-09-26T17:57:57.000Z" - }, - "events": [ - { - "uuid": "f2859ec7-adb8-47c6-950d-7bce0749909e", - "start": { - "$date": "2021-09-26T17:50:11.000Z" - }, - "end": { - "$date": "2021-09-26T17:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37021b26-464e-4265-bbfd-05843d7d5b71", - "uuid": "ffd5ff6b-d8b9-4e34-b487-4b0924cce0d5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T17:59:12.000Z" - }, - "end": { - "$date": "2021-09-26T18:20:08.000Z" - }, - "events": [ - { - "uuid": "2c568237-d34b-454e-95a6-98afa0e29aef", - "start": { - "$date": "2021-09-26T17:59:12.000Z" - }, - "end": { - "$date": "2021-09-26T18:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37021b26-464e-4265-bbfd-05843d7d5b71", - "uuid": "18d2a626-e635-4ad4-8494-1dab47d93ae5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T18:20:13.000Z" - }, - "end": { - "$date": "2021-09-26T18:45:29.000Z" - }, - "events": [ - { - "uuid": "696d1dce-dadc-40b3-b0e8-e5c5921d0803", - "start": { - "$date": "2021-09-26T18:20:13.000Z" - }, - "end": { - "$date": "2021-09-26T18:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "65713de4-e918-456c-b373-fb1f683a217e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T19:47:44.000Z" - }, - "end": { - "$date": "2021-09-26T20:27:02.000Z" - }, - "events": [ - { - "uuid": "60a10659-547c-4503-8d23-30782d0f5b01", - "start": { - "$date": "2021-09-26T19:47:44.000Z" - }, - "end": { - "$date": "2021-09-26T20:27:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "8de6b8eb-161b-4192-8587-2748a2117a09", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T20:28:03.000Z" - }, - "end": { - "$date": "2021-09-26T21:10:19.000Z" - }, - "events": [ - { - "uuid": "9671944e-68a9-4329-871d-3d61c04f3ea4", - "start": { - "$date": "2021-09-26T20:28:03.000Z" - }, - "end": { - "$date": "2021-09-26T21:10:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "0c2d5c1a-be61-4b1d-8857-715052a592dd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-26T21:03:53.000Z" - }, - "end": { - "$date": "2021-09-26T21:25:54.000Z" - }, - "events": [ - { - "uuid": "b787bccf-908f-4ede-b430-90a9308238d2", - "start": { - "$date": "2021-09-26T21:03:53.000Z" - }, - "end": { - "$date": "2021-09-26T21:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37021b26-464e-4265-bbfd-05843d7d5b71", - "uuid": "e90187b1-d7c6-413e-be95-460db7f97a41", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-26T21:29:26.000Z" - }, - "end": { - "$date": "2021-09-27T00:23:31.000Z" - }, - "events": [ - { - "uuid": "51e221d8-8ce1-4205-815f-0cffe3ffae9c", - "start": { - "$date": "2021-09-26T21:29:26.000Z" - }, - "end": { - "$date": "2021-09-27T00:14:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39a4e6f7-3865-4ce2-9fda-9d1891775de6", - "start": { - "$date": "2021-09-27T00:14:26.000Z" - }, - "end": { - "$date": "2021-09-27T00:16:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09adb44c-09bd-47cb-8f2c-71683079f4d2", - "start": { - "$date": "2021-09-27T00:16:26.000Z" - }, - "end": { - "$date": "2021-09-27T00:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37021b26-464e-4265-bbfd-05843d7d5b71", - "uuid": "eb05733d-f0d9-4223-839d-e0630e7fe7a8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T21:38:05.000Z" - }, - "end": { - "$date": "2021-09-26T21:40:04.000Z" - }, - "events": [ - { - "uuid": "d79d9069-38de-474d-bb4c-78d618890689", - "start": { - "$date": "2021-09-26T21:38:05.000Z" - }, - "end": { - "$date": "2021-09-26T21:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37021b26-464e-4265-bbfd-05843d7d5b71", - "uuid": "53d46d2d-8e97-47f6-bf07-b43e04dd67a9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-26T21:40:35.000Z" - }, - "end": { - "$date": "2021-09-26T23:59:00.000Z" - }, - "events": [ - { - "uuid": "73516b82-466b-4584-a989-f3fc5b2aaf80", - "start": { - "$date": "2021-09-26T21:40:35.000Z" - }, - "end": { - "$date": "2021-09-26T23:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "8b677639-2fb8-4a96-9525-60b48fa7b2c3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T21:53:54.000Z" - }, - "end": { - "$date": "2021-09-26T22:12:23.000Z" - }, - "events": [ - { - "uuid": "73cb6c2b-7a0c-433a-8a4f-04ffd4bfc3f7", - "start": { - "$date": "2021-09-26T21:53:54.000Z" - }, - "end": { - "$date": "2021-09-26T22:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "29351e51-e1cf-4f51-91e4-7e8faf3d23ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-26T23:11:42.000Z" - }, - "end": { - "$date": "2021-09-26T23:50:31.000Z" - }, - "events": [ - { - "uuid": "c9a91229-6dcf-4f32-beab-0a232b4e2658", - "start": { - "$date": "2021-09-26T23:11:42.000Z" - }, - "end": { - "$date": "2021-09-26T23:50:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "96ab35ed-d020-41ff-938a-de034d8f7fbc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-26T22:19:57.000Z" - }, - "end": { - "$date": "2021-09-27T04:02:27.000Z" - }, - "events": [ - { - "uuid": "2a45e2f8-c080-4386-b0bd-c4c5f6e417d3", - "start": { - "$date": "2021-09-26T22:19:57.000Z" - }, - "end": { - "$date": "2021-09-27T04:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "b4322051-3a8c-4d29-bcee-d71ae07f63d7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-26T23:52:58.000Z" - }, - "end": { - "$date": "2021-09-27T02:25:53.000Z" - }, - "events": [ - { - "uuid": "cb21cd94-34ca-4bcc-979f-51413bbff8c4", - "start": { - "$date": "2021-09-26T23:52:58.000Z" - }, - "end": { - "$date": "2021-09-27T02:25:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8308de4c-c160-43fe-9b0d-c3f270080cbe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T01:26:03.000Z" - }, - "end": { - "$date": "2021-09-27T01:45:52.000Z" - }, - "events": [ - { - "uuid": "578d1544-7dce-4b2a-be3c-d0532df7da9d", - "start": { - "$date": "2021-09-27T01:26:03.000Z" - }, - "end": { - "$date": "2021-09-27T01:45:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8191ae42-785d-4468-b3fa-96cc6a7300bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T01:48:34.000Z" - }, - "end": { - "$date": "2021-09-27T02:08:14.000Z" - }, - "events": [ - { - "uuid": "1a4bc9ad-66f0-468a-9c5e-6360d28c2505", - "start": { - "$date": "2021-09-27T01:48:34.000Z" - }, - "end": { - "$date": "2021-09-27T02:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", - "uuid": "023fa893-ec17-4f36-aca8-f1512bf9e54f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-27T01:55:49.000Z" - }, - "end": { - "$date": "2021-09-27T01:55:55.000Z" - }, - "events": [ - { - "uuid": "cfa65096-f3db-4b46-8f57-85c400848e64", - "start": { - "$date": "2021-09-27T01:55:49.000Z" - }, - "end": { - "$date": "2021-09-27T01:55:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9c31cf6-e94d-4deb-b17e-87339b2fbbe7", - "uuid": "8eb89e43-766f-4a80-b44f-275b11b6b5eb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-27T01:56:04.000Z" - }, - "end": { - "$date": "2021-09-27T02:52:52.000Z" - }, - "events": [ - { - "uuid": "2d5fc7c4-0744-4c1a-94b4-813e9afb9a5e", - "start": { - "$date": "2021-09-27T01:56:04.000Z" - }, - "end": { - "$date": "2021-09-27T02:52:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c6d74817-e648-41ac-855e-95ca2fb90369", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-27T02:03:15.000Z" - }, - "end": { - "$date": "2021-09-27T06:24:43.000Z" - }, - "events": [ - { - "uuid": "6f85f8e5-9285-4234-a684-fe78aa67e484", - "start": { - "$date": "2021-09-27T02:03:15.000Z" - }, - "end": { - "$date": "2021-09-27T06:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fb3ba84d-e801-41ba-a89e-5ab56edd7b32", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-27T02:03:46.000Z" - }, - "end": { - "$date": "2021-09-27T03:39:50.000Z" - }, - "events": [ - { - "uuid": "b71878d7-8c4c-4880-9186-87621b54ee4c", - "start": { - "$date": "2021-09-27T02:03:46.000Z" - }, - "end": { - "$date": "2021-09-27T03:39:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e26acff-71a0-4c87-a5ab-e1d09933f9a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T02:16:36.000Z" - }, - "end": { - "$date": "2021-09-27T02:34:11.000Z" - }, - "events": [ - { - "uuid": "8c9ef2e5-6dd6-4769-9494-1dac036d4fef", - "start": { - "$date": "2021-09-27T02:16:36.000Z" - }, - "end": { - "$date": "2021-09-27T02:34:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "441957cf-85a5-4e10-a35f-44921fcc6743", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-09-27T02:19:21.000Z" - }, - "end": { - "$date": "2021-09-27T03:09:58.000Z" - }, - "events": [ - { - "uuid": "37be921e-a700-4243-a5be-f2b8a140ec94", - "start": { - "$date": "2021-09-27T02:19:21.000Z" - }, - "end": { - "$date": "2021-09-27T03:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4bb98bc-3ba8-4089-abc9-f49357cbb840", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T02:38:57.000Z" - }, - "end": { - "$date": "2021-09-27T03:03:09.000Z" - }, - "events": [ - { - "uuid": "533603ad-6790-44b9-b76f-a8da1923abb4", - "start": { - "$date": "2021-09-27T02:38:57.000Z" - }, - "end": { - "$date": "2021-09-27T03:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d65a3cc4-c4a3-48c9-9882-d74094da00e5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-27T02:51:39.000Z" - }, - "end": { - "$date": "2021-09-27T06:35:43.000Z" - }, - "events": [ - { - "uuid": "0eea8ae4-a784-4ea3-bb3e-967796c6999e", - "start": { - "$date": "2021-09-27T02:51:39.000Z" - }, - "end": { - "$date": "2021-09-27T06:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f75c4d56-360d-4619-8092-75df223c5653", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-27T02:53:36.000Z" - }, - "end": { - "$date": "2021-09-27T06:35:39.000Z" - }, - "events": [ - { - "uuid": "c4304ddd-e9b0-4126-955a-2e312e0b17d3", - "start": { - "$date": "2021-09-27T02:53:36.000Z" - }, - "end": { - "$date": "2021-09-27T06:35:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4172669-519b-421d-9654-e3d23732fb4d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T03:10:24.000Z" - }, - "end": { - "$date": "2021-09-27T03:20:06.000Z" - }, - "events": [ - { - "uuid": "1aa04776-e806-4171-aaf3-021508a0c587", - "start": { - "$date": "2021-09-27T03:10:24.000Z" - }, - "end": { - "$date": "2021-09-27T03:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c1f0d25b-bbe1-4174-bd4b-5855e536c16b", - "uuid": "bda43d98-6428-481f-b5a6-c2f0ad31d183", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-09-27T03:10:24.000Z" - }, - "end": { - "$date": "2021-09-27T03:36:32.000Z" - }, - "events": [ - { - "uuid": "e22c301c-3047-40c8-addb-aca445abba4f", - "start": { - "$date": "2021-09-27T03:10:24.000Z" - }, - "end": { - "$date": "2021-09-27T03:36:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7f0828e1-f729-4ff7-b538-2dbd2cc95a95", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-09-27T03:51:55.000Z" - }, - "end": { - "$date": "2021-09-27T04:11:12.000Z" - }, - "events": [ - { - "uuid": "be14b867-59a0-442f-b08a-ee8e62643b03", - "start": { - "$date": "2021-09-27T03:51:55.000Z" - }, - "end": { - "$date": "2021-09-27T04:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "edf3e194-273f-4c76-b390-2cbc3d627ca5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-09-27T04:21:04.000Z" - }, - "end": { - "$date": "2021-09-27T04:48:48.000Z" - }, - "events": [ - { - "uuid": "b103523b-501d-4168-8ca6-21d78b5730b9", - "start": { - "$date": "2021-09-27T04:21:04.000Z" - }, - "end": { - "$date": "2021-09-27T04:48:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1f9c3ba1-33ca-4f00-bb3c-444bee9a7add", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T04:30:54.000Z" - }, - "end": { - "$date": "2021-09-27T05:16:01.000Z" - }, - "events": [ - { - "uuid": "6b38ca92-8cf8-4ed5-bac1-64fd1687175b", - "start": { - "$date": "2021-09-27T04:30:54.000Z" - }, - "end": { - "$date": "2021-09-27T05:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "00a748ac-bedc-4c1c-b2b9-857465e8c636", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-27T04:42:18.000Z" - }, - "end": { - "$date": "2021-09-27T05:15:35.000Z" - }, - "events": [ - { - "uuid": "514f61ae-c305-4bbb-8e16-75910dbd98be", - "start": { - "$date": "2021-09-27T04:42:18.000Z" - }, - "end": { - "$date": "2021-09-27T05:15:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "014f7b7d-7526-4415-9d09-5fd40f5f9553", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-27T05:20:26.000Z" - }, - "end": { - "$date": "2021-09-27T05:49:56.000Z" - }, - "events": [ - { - "uuid": "38c13693-d7bf-41da-82f7-01c1d90ed50d", - "start": { - "$date": "2021-09-27T05:20:26.000Z" - }, - "end": { - "$date": "2021-09-27T05:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17d15b8d-c379-4fdb-89d1-f581fe08cfb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T05:20:49.000Z" - }, - "end": { - "$date": "2021-09-27T05:34:27.000Z" - }, - "events": [ - { - "uuid": "8fd458c1-44b8-4443-94a8-4a121b1dd8eb", - "start": { - "$date": "2021-09-27T05:20:49.000Z" - }, - "end": { - "$date": "2021-09-27T05:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "996ec366-cf28-49a6-9851-9f1b16fa97f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T05:37:56.000Z" - }, - "end": { - "$date": "2021-09-27T05:57:29.000Z" - }, - "events": [ - { - "uuid": "083be90f-048c-49d6-8262-f770cadd35ac", - "start": { - "$date": "2021-09-27T05:37:56.000Z" - }, - "end": { - "$date": "2021-09-27T05:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "298091ef-eff9-4a2a-9b12-b76b79611980", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T06:01:09.000Z" - }, - "end": { - "$date": "2021-09-27T06:18:38.000Z" - }, - "events": [ - { - "uuid": "d027a071-c310-462c-b08f-864639e29ab0", - "start": { - "$date": "2021-09-27T06:01:09.000Z" - }, - "end": { - "$date": "2021-09-27T06:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8e921cc0-51dd-4eba-b721-6ce12f024620", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-27T06:32:29.000Z" - }, - "end": { - "$date": "2021-09-27T06:38:48.000Z" - }, - "events": [ - { - "uuid": "ee947aa3-22f7-45e3-b910-028ae6362956", - "start": { - "$date": "2021-09-27T06:32:29.000Z" - }, - "end": { - "$date": "2021-09-27T06:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6cd6b1f2-f0de-4751-b895-a96002185ca8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-27T06:41:14.000Z" - }, - "end": { - "$date": "2021-09-27T06:52:45.000Z" - }, - "events": [ - { - "uuid": "0d001c70-dde9-41a9-b6ee-9e7fbda815e2", - "start": { - "$date": "2021-09-27T06:41:14.000Z" - }, - "end": { - "$date": "2021-09-27T06:52:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6b9ea4fe-cc90-4ec7-a11b-460aa31af243", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-27T13:40:37.000Z" - }, - "end": { - "$date": "2021-09-27T14:55:29.000Z" - }, - "events": [ - { - "uuid": "cc03562a-56ac-4737-b817-760adfb76f87", - "start": { - "$date": "2021-09-27T13:40:37.000Z" - }, - "end": { - "$date": "2021-09-27T13:52:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "adfb9548-069c-44a3-802e-1ee85c7505ec", - "start": { - "$date": "2021-09-27T13:52:37.000Z" - }, - "end": { - "$date": "2021-09-27T14:06:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "778ddb2a-1495-4942-bdf3-8e9f8fee92ff", - "start": { - "$date": "2021-09-27T14:06:37.000Z" - }, - "end": { - "$date": "2021-09-27T14:40:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae5d9b53-e250-4731-b2ca-014ad6d1959d", - "start": { - "$date": "2021-09-27T14:40:37.000Z" - }, - "end": { - "$date": "2021-09-27T14:47:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3e2e4542-8959-4dcc-bb52-de49bf4010f1", - "start": { - "$date": "2021-09-27T14:47:37.000Z" - }, - "end": { - "$date": "2021-09-27T14:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "778da55f-3349-4f3e-a1cb-dec462e5f2b9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-09-27T16:20:58.000Z" - }, - "end": { - "$date": "2021-09-27T17:31:57.000Z" - }, - "events": [ - { - "uuid": "3ea84f91-41a9-44fa-a898-c094a7474642", - "start": { - "$date": "2021-09-27T16:20:58.000Z" - }, - "end": { - "$date": "2021-09-27T17:31:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "faa8a609-70ea-4cf4-9094-e42d5109bbaf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-09-27T18:12:51.000Z" - }, - "end": { - "$date": "2021-09-27T18:32:57.000Z" - }, - "events": [ - { - "uuid": "49106e83-c6ae-48f7-aedd-cf109684576c", - "start": { - "$date": "2021-09-27T18:12:51.000Z" - }, - "end": { - "$date": "2021-09-27T18:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0262bfbb-1366-4574-a9a5-2b32e646111a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-27T20:37:19.000Z" - }, - "end": { - "$date": "2021-09-27T20:52:26.000Z" - }, - "events": [ - { - "uuid": "9fe70096-b462-4c05-8185-944ac8fe068d", - "start": { - "$date": "2021-09-27T20:37:19.000Z" - }, - "end": { - "$date": "2021-09-27T20:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8e8955ec-6f8c-4adc-a382-a94bcb6ac803", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T22:15:40.000Z" - }, - "end": { - "$date": "2021-09-27T22:18:58.000Z" - }, - "events": [ - { - "uuid": "28dde4ee-0202-4505-8e66-301ece800ef1", - "start": { - "$date": "2021-09-27T22:15:40.000Z" - }, - "end": { - "$date": "2021-09-27T22:18:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f3484e8d-fa88-4cc5-b7af-7158ba2f51f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T22:19:57.000Z" - }, - "end": { - "$date": "2021-09-27T22:43:07.000Z" - }, - "events": [ - { - "uuid": "207a755e-74bf-4cee-8a79-96dab7f162ab", - "start": { - "$date": "2021-09-27T22:19:57.000Z" - }, - "end": { - "$date": "2021-09-27T22:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e293cb4-8e7f-45b5-b66a-55d577f6aaa1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-27T23:05:02.000Z" - }, - "end": { - "$date": "2021-09-27T23:28:17.000Z" - }, - "events": [ - { - "uuid": "23b679d5-1052-4dfd-89a6-836b4d19b497", - "start": { - "$date": "2021-09-27T23:05:02.000Z" - }, - "end": { - "$date": "2021-09-27T23:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17764d15-e33d-4f3c-8213-69181e646f64", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-27T23:19:25.000Z" - }, - "end": { - "$date": "2021-09-27T23:23:29.000Z" - }, - "events": [ - { - "uuid": "e2223f1c-eb4e-4ac8-9701-eaac6541c3ab", - "start": { - "$date": "2021-09-27T23:19:25.000Z" - }, - "end": { - "$date": "2021-09-27T23:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e27efa77-33e9-4a66-83df-26c1891466f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-27T23:35:07.000Z" - }, - "end": { - "$date": "2021-09-27T23:56:52.000Z" - }, - "events": [ - { - "uuid": "0a415481-4c53-4672-8ff6-8f83051fa66e", - "start": { - "$date": "2021-09-27T23:35:07.000Z" - }, - "end": { - "$date": "2021-09-27T23:56:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "88d035d3-5d29-4ee0-a512-b57bc8dc7531", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-28T00:07:16.000Z" - }, - "end": { - "$date": "2021-09-28T04:59:13.000Z" - }, - "events": [ - { - "uuid": "880caa2b-35d6-4d17-b5e4-c913740dd3e6", - "start": { - "$date": "2021-09-28T00:07:16.000Z" - }, - "end": { - "$date": "2021-09-28T04:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "224f602f-146d-4d0b-8a56-885a8579bd54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T01:09:24.000Z" - }, - "end": { - "$date": "2021-09-28T01:26:01.000Z" - }, - "events": [ - { - "uuid": "0b655779-fb16-4a83-9548-8b539a771a36", - "start": { - "$date": "2021-09-28T01:09:24.000Z" - }, - "end": { - "$date": "2021-09-28T01:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b37a8d8a-bc8a-43d4-81f7-978318731bad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T02:31:51.000Z" - }, - "end": { - "$date": "2021-09-28T02:49:39.000Z" - }, - "events": [ - { - "uuid": "496e8019-a2c8-4f8e-9c0f-03d5c8e0aef9", - "start": { - "$date": "2021-09-28T02:31:51.000Z" - }, - "end": { - "$date": "2021-09-28T03:13:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d86b5c5b-ca95-41dd-b407-907f0e165250", - "start": { - "$date": "2021-09-28T03:13:51.000Z" - }, - "end": { - "$date": "2021-09-28T03:19:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dbae2949-6acc-49fd-b3ba-01b6e8f74cf2", - "start": { - "$date": "2021-09-28T03:19:51.000Z" - }, - "end": { - "$date": "2021-09-28T02:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "236f60a5-f02c-4bcc-af55-40ae064eedad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-28T02:38:02.000Z" - }, - "end": { - "$date": "2021-09-28T06:30:36.000Z" - }, - "events": [ - { - "uuid": "91e35bab-3793-4b35-ba68-a345513a2ee1", - "start": { - "$date": "2021-09-28T02:38:02.000Z" - }, - "end": { - "$date": "2021-09-28T06:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85fdcde2-12ac-48cd-badb-07265d09dafb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T02:52:47.000Z" - }, - "end": { - "$date": "2021-09-28T03:04:45.000Z" - }, - "events": [ - { - "uuid": "784a03d7-fd90-4b69-bab5-93922d908274", - "start": { - "$date": "2021-09-28T02:52:47.000Z" - }, - "end": { - "$date": "2021-09-28T03:04:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ed7b0042-9302-43d0-bf4c-0382986a5972", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-28T02:49:53.000Z" - }, - "end": { - "$date": "2021-09-28T05:56:17.000Z" - }, - "events": [ - { - "uuid": "c8c9f508-8f2a-483b-bb7a-c2d2864edea8", - "start": { - "$date": "2021-09-28T02:49:53.000Z" - }, - "end": { - "$date": "2021-09-28T04:57:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9da3a72e-a0b3-4519-b042-31aa828debe8", - "start": { - "$date": "2021-09-28T04:57:53.000Z" - }, - "end": { - "$date": "2021-09-28T05:03:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae4d7ab2-0ab2-4a01-9198-b973df400395", - "start": { - "$date": "2021-09-28T05:03:53.000Z" - }, - "end": { - "$date": "2021-09-28T05:05:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50df4144-c658-4841-8865-a5f8864ad201", - "start": { - "$date": "2021-09-28T05:05:53.000Z" - }, - "end": { - "$date": "2021-09-28T05:14:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bdc145a8-bff8-4b40-8eec-82297ed59718", - "start": { - "$date": "2021-09-28T05:14:53.000Z" - }, - "end": { - "$date": "2021-09-28T05:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ad5139e-38f2-4eb0-8d84-5cc2a56ac1bf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T03:08:07.000Z" - }, - "end": { - "$date": "2021-09-28T03:22:33.000Z" - }, - "events": [ - { - "uuid": "24386213-e8a3-4ef4-9d9a-057d9b7f252f", - "start": { - "$date": "2021-09-28T03:08:07.000Z" - }, - "end": { - "$date": "2021-09-28T03:22:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "a2ba8be7-0784-428f-a485-d04440cb0f89", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-28T03:07:43.000Z" - }, - "end": { - "$date": "2021-09-28T03:17:54.000Z" - }, - "events": [ - { - "uuid": "66ccf32c-1530-4ea6-9b82-440dd491883c", - "start": { - "$date": "2021-09-28T03:07:43.000Z" - }, - "end": { - "$date": "2021-09-28T03:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6486fd16-0f19-4764-9d4e-e51588243d75", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T03:25:02.000Z" - }, - "end": { - "$date": "2021-09-28T03:43:13.000Z" - }, - "events": [ - { - "uuid": "542a1583-9fc1-469e-a80c-e603622eeea6", - "start": { - "$date": "2021-09-28T03:25:02.000Z" - }, - "end": { - "$date": "2021-09-28T03:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5f48530f-4330-4975-901c-2af2df479105", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-28T03:36:20.000Z" - }, - "end": { - "$date": "2021-09-28T03:47:46.000Z" - }, - "events": [ - { - "uuid": "dc5d2b29-b702-4d62-affd-ad0e1d6c36f7", - "start": { - "$date": "2021-09-28T03:36:20.000Z" - }, - "end": { - "$date": "2021-09-28T03:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9505b6d0-ff84-490a-8b2c-0ec509ea2a67", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-28T03:37:06.000Z" - }, - "end": { - "$date": "2021-09-28T04:53:15.000Z" - }, - "events": [ - { - "uuid": "de99b181-b9ef-4591-b245-a293f1ae46b9", - "start": { - "$date": "2021-09-28T03:37:06.000Z" - }, - "end": { - "$date": "2021-09-28T04:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "451218ed-efb1-4603-ad4b-aa5d4feec91b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T03:45:34.000Z" - }, - "end": { - "$date": "2021-09-28T04:01:07.000Z" - }, - "events": [ - { - "uuid": "7cdd13bb-756d-4db8-acd1-cf4679c4ea22", - "start": { - "$date": "2021-09-28T03:45:34.000Z" - }, - "end": { - "$date": "2021-09-28T04:01:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb43ca7e-76e2-4b59-8d68-471370175dab", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-28T04:32:55.000Z" - }, - "end": { - "$date": "2021-09-28T05:06:26.000Z" - }, - "events": [ - { - "uuid": "f2d42be4-f791-402f-a705-2520a644bcc4", - "start": { - "$date": "2021-09-28T04:32:55.000Z" - }, - "end": { - "$date": "2021-09-28T05:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47f22574-9168-4f72-9410-4655a462076e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-28T06:07:57.000Z" - }, - "end": { - "$date": "2021-09-28T06:08:22.000Z" - }, - "events": [ - { - "uuid": "90b8b42d-d9f4-4fa4-a211-2e669208edbb", - "start": { - "$date": "2021-09-28T06:07:57.000Z" - }, - "end": { - "$date": "2021-09-28T06:08:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "ca5ed18d-2d10-4f59-a7aa-c8a072f8ff4e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-28T05:05:46.000Z" - }, - "end": { - "$date": "2021-09-28T05:36:24.000Z" - }, - "events": [ - { - "uuid": "d989deda-db5f-4c26-bf7b-af2d8a18b0c6", - "start": { - "$date": "2021-09-28T05:05:46.000Z" - }, - "end": { - "$date": "2021-09-28T05:36:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "11ab8b7a-3ace-40b3-8791-f84c649d591a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-28T05:38:59.000Z" - }, - "end": { - "$date": "2021-09-28T06:55:27.000Z" - }, - "events": [ - { - "uuid": "9a3c6b08-f073-4b54-b698-beddfe518bb6", - "start": { - "$date": "2021-09-28T05:38:59.000Z" - }, - "end": { - "$date": "2021-09-28T05:49:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0463885c-bd5d-4484-80d5-a93650bb85f7", - "start": { - "$date": "2021-09-28T05:49:59.000Z" - }, - "end": { - "$date": "2021-09-28T06:53:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9e8543e1-71ba-43d5-bb65-df655058ef44", - "start": { - "$date": "2021-09-28T06:53:59.000Z" - }, - "end": { - "$date": "2021-09-28T06:55:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "70eb0778-c6b9-467c-87bf-2ccc48c65423", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-28T05:46:09.000Z" - }, - "end": { - "$date": "2021-09-28T09:12:28.000Z" - }, - "events": [ - { - "uuid": "65a7e3b9-1674-4dba-99e7-7488f6bc74e9", - "start": { - "$date": "2021-09-28T05:46:09.000Z" - }, - "end": { - "$date": "2021-09-28T09:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "6fc4f6c6-b94d-4b11-be91-f5df9a220bb7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-28T06:09:34.000Z" - }, - "end": { - "$date": "2021-09-28T07:33:18.000Z" - }, - "events": [ - { - "uuid": "30401c25-8458-439a-b804-824c3433d725", - "start": { - "$date": "2021-09-28T06:09:34.000Z" - }, - "end": { - "$date": "2021-09-28T07:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3bfdd41e-97e7-44b9-b23a-2bd063fa0957", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-28T06:31:31.000Z" - }, - "end": { - "$date": "2021-09-28T06:34:41.000Z" - }, - "events": [ - { - "uuid": "490953ed-2ff6-4cec-b579-7763fae363c7", - "start": { - "$date": "2021-09-28T06:31:31.000Z" - }, - "end": { - "$date": "2021-09-28T06:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "e1abd8ec-2726-425d-8e4b-36cf52e101da", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-28T12:57:51.000Z" - }, - "end": { - "$date": "2021-09-28T13:37:35.000Z" - }, - "events": [ - { - "uuid": "15102d0c-0e90-4416-aa0e-fc374e16e9c6", - "start": { - "$date": "2021-09-28T12:57:51.000Z" - }, - "end": { - "$date": "2021-09-28T13:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0d26992-f003-4eb3-82ed-5d1f9e315bf3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T16:32:09.000Z" - }, - "end": { - "$date": "2021-09-28T16:50:45.000Z" - }, - "events": [ - { - "uuid": "b3d0b977-449e-438b-a3a1-8d638579032a", - "start": { - "$date": "2021-09-28T16:32:09.000Z" - }, - "end": { - "$date": "2021-09-28T16:50:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42dcf3b3-ff90-427e-87a3-ee1dd438a9d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T16:56:30.000Z" - }, - "end": { - "$date": "2021-09-28T17:15:23.000Z" - }, - "events": [ - { - "uuid": "f5be57fe-7f0d-4d2b-8b54-4f380af40366", - "start": { - "$date": "2021-09-28T16:56:30.000Z" - }, - "end": { - "$date": "2021-09-28T17:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "50d15343-bcc4-42b5-b33d-7ff4edb3bafd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T18:55:34.000Z" - }, - "end": { - "$date": "2021-09-28T19:13:46.000Z" - }, - "events": [ - { - "uuid": "9f11cf90-5685-49ed-9eb5-8a272120e057", - "start": { - "$date": "2021-09-28T18:55:34.000Z" - }, - "end": { - "$date": "2021-09-28T19:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "98f0895d-a9f5-4844-9c88-dd45ad350395", - "uuid": "caedba35-706b-464c-a85e-34637aa7d835", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-28T20:57:02.000Z" - }, - "end": { - "$date": "2021-09-28T21:12:08.000Z" - }, - "events": [ - { - "uuid": "2c2b8706-ba8b-4298-875f-74c0945b5c69", - "start": { - "$date": "2021-09-28T20:57:02.000Z" - }, - "end": { - "$date": "2021-09-28T21:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b1d2681-a614-4043-9199-1d787407a8ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-28T21:47:19.000Z" - }, - "end": { - "$date": "2021-09-28T22:06:20.000Z" - }, - "events": [ - { - "uuid": "2e808888-e1d1-41e9-8ebf-bf5f6457ed3f", - "start": { - "$date": "2021-09-28T21:47:19.000Z" - }, - "end": { - "$date": "2021-09-28T22:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "df7fc2ad-6a41-4ba1-a309-2c0528c1370e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-28T22:24:23.000Z" - }, - "end": { - "$date": "2021-09-28T23:24:39.000Z" - }, - "events": [ - { - "uuid": "6a18fc64-e02a-4caa-96ce-cf8a5674c661", - "start": { - "$date": "2021-09-28T22:24:23.000Z" - }, - "end": { - "$date": "2021-09-28T23:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bb8a3375-fe46-49a7-b689-ef9f5831c6c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-28T23:44:48.000Z" - }, - "end": { - "$date": "2021-09-29T03:14:26.000Z" - }, - "events": [ - { - "uuid": "d5532fd3-381c-4231-b8ea-b605e1982ab3", - "start": { - "$date": "2021-09-28T23:44:48.000Z" - }, - "end": { - "$date": "2021-09-29T03:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "9b872a82-57e3-4d9b-9702-a3ce92b2cd86", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-29T00:44:58.000Z" - }, - "end": { - "$date": "2021-09-29T01:15:53.000Z" - }, - "events": [ - { - "uuid": "2b7801b7-8b45-4b2e-b31c-9f4904d70e41", - "start": { - "$date": "2021-09-29T00:44:58.000Z" - }, - "end": { - "$date": "2021-09-29T01:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "86032f19-3247-4748-af01-4dbb30fca485", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-29T00:50:13.000Z" - }, - "end": { - "$date": "2021-09-29T01:03:10.000Z" - }, - "events": [ - { - "uuid": "de922c4e-6511-4638-abdc-f6629d863048", - "start": { - "$date": "2021-09-29T00:50:13.000Z" - }, - "end": { - "$date": "2021-09-29T01:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "48fc6ed5-b0a4-4615-9442-d21b9d25fd85", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T01:35:58.000Z" - }, - "end": { - "$date": "2021-09-29T01:54:21.000Z" - }, - "events": [ - { - "uuid": "8834a66e-86ae-45b1-95b5-c9e9ca6e5c93", - "start": { - "$date": "2021-09-29T01:35:58.000Z" - }, - "end": { - "$date": "2021-09-29T01:48:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1e634df-eea4-4681-abe9-6dfe5461a32d", - "start": { - "$date": "2021-09-29T01:48:58.000Z" - }, - "end": { - "$date": "2021-09-29T01:54:21.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50df263d-0de9-4e4c-b711-5a7e7e9e28a3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-29T01:56:23.000Z" - }, - "end": { - "$date": "2021-09-29T02:38:47.000Z" - }, - "events": [ - { - "uuid": "246862ec-a979-4a9b-af76-a12331dc71cd", - "start": { - "$date": "2021-09-29T01:56:23.000Z" - }, - "end": { - "$date": "2021-09-29T02:38:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e5a06186-21d8-4bbd-bb0f-1b18d7df1d4d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-09-29T02:03:15.000Z" - }, - "end": { - "$date": "2021-09-29T04:00:53.000Z" - }, - "events": [ - { - "uuid": "74fdef32-3e34-4fec-8a72-3565b45f02b3", - "start": { - "$date": "2021-09-29T02:03:15.000Z" - }, - "end": { - "$date": "2021-09-29T04:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b26093dd-222b-457a-88aa-86b2c2e00c02", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-29T02:18:01.000Z" - }, - "end": { - "$date": "2021-09-29T03:07:04.000Z" - }, - "events": [ - { - "uuid": "6474b2e6-de14-4ae4-858a-e4cc08963bc1", - "start": { - "$date": "2021-09-29T02:18:01.000Z" - }, - "end": { - "$date": "2021-09-29T03:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf87f476-fac6-435e-b566-0a8af1617b6a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-29T02:20:06.000Z" - }, - "end": { - "$date": "2021-09-29T02:27:22.000Z" - }, - "events": [ - { - "uuid": "c9c751d0-65f3-4853-925b-32ca244d2ca4", - "start": { - "$date": "2021-09-29T02:20:06.000Z" - }, - "end": { - "$date": "2021-09-29T02:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bb0f80d1-238f-42c4-962b-7fa935655a18", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-09-29T02:28:44.000Z" - }, - "end": { - "$date": "2021-09-29T03:57:13.000Z" - }, - "events": [ - { - "uuid": "da470d38-6aab-4b6a-a2d3-c74d447cd951", - "start": { - "$date": "2021-09-29T02:28:44.000Z" - }, - "end": { - "$date": "2021-09-29T03:57:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "4f95acee-073b-4dbb-b540-492edd7c8d5c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T02:34:26.000Z" - }, - "end": { - "$date": "2021-09-29T02:36:06.000Z" - }, - "events": [ - { - "uuid": "95b6ee2b-1da5-4e3c-982f-38e82f73cc59", - "start": { - "$date": "2021-09-29T02:34:26.000Z" - }, - "end": { - "$date": "2021-09-29T02:36:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94e14efc-3a25-46c0-b84f-bc981e50cbe8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-29T02:38:59.000Z" - }, - "end": { - "$date": "2021-09-29T02:59:08.000Z" - }, - "events": [ - { - "uuid": "c4ef1207-80d5-4b7d-924c-cd97263fd347", - "start": { - "$date": "2021-09-29T02:38:59.000Z" - }, - "end": { - "$date": "2021-09-29T02:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "33d2284b-05f1-4dc0-b8f2-a1d336285056", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T02:37:36.000Z" - }, - "end": { - "$date": "2021-09-29T02:52:27.000Z" - }, - "events": [ - { - "uuid": "a619fa21-a4ab-4bdd-8e58-58263ea8a84f", - "start": { - "$date": "2021-09-29T02:37:36.000Z" - }, - "end": { - "$date": "2021-09-29T02:52:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e87f0fb3-a1ce-4652-92bf-7128b819382c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-29T02:44:57.000Z" - }, - "end": { - "$date": "2021-09-29T03:55:23.000Z" - }, - "events": [ - { - "uuid": "affebb5e-ca5f-4606-970e-c6de9ea642cf", - "start": { - "$date": "2021-09-29T02:44:57.000Z" - }, - "end": { - "$date": "2021-09-29T03:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "3979bce2-9569-4925-b50a-3c887c97046d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T02:52:32.000Z" - }, - "end": { - "$date": "2021-09-29T03:07:52.000Z" - }, - "events": [ - { - "uuid": "143bfc99-94d9-460f-a0b5-f3accebeb7ec", - "start": { - "$date": "2021-09-29T02:52:32.000Z" - }, - "end": { - "$date": "2021-09-29T03:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "05b665ce-cdb8-4c4c-b2b5-8784d25a652d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T03:29:55.000Z" - }, - "end": { - "$date": "2021-09-29T03:57:20.000Z" - }, - "events": [ - { - "uuid": "62606c4a-b404-4ba5-8630-493aa84ecd0e", - "start": { - "$date": "2021-09-29T03:29:55.000Z" - }, - "end": { - "$date": "2021-09-29T03:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "171e1fb3-f36d-4ecb-80fc-6cef47f694da", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-29T03:16:56.000Z" - }, - "end": { - "$date": "2021-09-29T03:54:23.000Z" - }, - "events": [ - { - "uuid": "5622abf5-f4a4-4840-acfd-7ea1884397e8", - "start": { - "$date": "2021-09-29T03:16:56.000Z" - }, - "end": { - "$date": "2021-09-29T03:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5e0a205c-cad8-43a3-a7fe-d4250f4db2f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-29T03:26:07.000Z" - }, - "end": { - "$date": "2021-09-29T04:33:14.000Z" - }, - "events": [ - { - "uuid": "43951692-a3f0-47c8-b863-6511bbc770e8", - "start": { - "$date": "2021-09-29T03:26:07.000Z" - }, - "end": { - "$date": "2021-09-29T04:33:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "98f0895d-a9f5-4844-9c88-dd45ad350395", - "uuid": "08f82fe7-9c72-45df-833f-f6f3c01c889f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-29T03:26:38.000Z" - }, - "end": { - "$date": "2021-09-29T04:16:50.000Z" - }, - "events": [ - { - "uuid": "26ed89e6-b905-4193-b8dc-177f3dd4e7ed", - "start": { - "$date": "2021-09-29T03:26:38.000Z" - }, - "end": { - "$date": "2021-09-29T03:27:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14eaa829-8fa9-4cfa-9f21-ef37cb395e56", - "start": { - "$date": "2021-09-29T03:27:38.000Z" - }, - "end": { - "$date": "2021-09-29T04:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "3cd154e3-d667-4ccd-8d4f-03c93e277f87", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-29T03:29:14.000Z" - }, - "end": { - "$date": "2021-09-29T03:56:07.000Z" - }, - "events": [ - { - "uuid": "191efe61-f551-46d6-9288-5c4a2cb40748", - "start": { - "$date": "2021-09-29T03:29:14.000Z" - }, - "end": { - "$date": "2021-09-29T03:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21e37da5-c817-4c29-8818-30c9e7416614", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-29T03:50:56.000Z" - }, - "end": { - "$date": "2021-09-29T04:03:37.000Z" - }, - "events": [ - { - "uuid": "12ac9fa9-8cf0-4684-84cf-4567baa9d6b8", - "start": { - "$date": "2021-09-29T03:50:56.000Z" - }, - "end": { - "$date": "2021-09-29T04:03:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "40aa37d5-388c-42ea-919d-22344087bea0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T03:59:36.000Z" - }, - "end": { - "$date": "2021-09-29T04:05:36.000Z" - }, - "events": [ - { - "uuid": "59fd1c2e-4526-4c5d-b024-80b14a44ee8a", - "start": { - "$date": "2021-09-29T03:59:36.000Z" - }, - "end": { - "$date": "2021-09-29T04:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bbbdbaa-3340-4dc7-873a-fa97e1bdd51a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-09-29T04:05:45.000Z" - }, - "end": { - "$date": "2021-09-29T04:34:38.000Z" - }, - "events": [ - { - "uuid": "3f363f33-db8b-46a1-810f-b98bc0a7cbd7", - "start": { - "$date": "2021-09-29T04:05:45.000Z" - }, - "end": { - "$date": "2021-09-29T04:34:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "cf33f67b-3cad-4ca7-8820-b993fedd27c3", - "uuid": "b9d55965-92d9-414e-9e10-a417ecc8debc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-29T04:11:51.000Z" - }, - "end": { - "$date": "2021-09-29T04:13:16.000Z" - }, - "events": [ - { - "uuid": "50f2c237-7821-40a6-925b-b5930303c512", - "start": { - "$date": "2021-09-29T04:11:51.000Z" - }, - "end": { - "$date": "2021-09-29T04:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf33f67b-3cad-4ca7-8820-b993fedd27c3", - "uuid": "6653a7ea-bb96-4af3-9531-92018b48b4a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-09-29T04:13:41.000Z" - }, - "end": { - "$date": "2021-09-29T04:40:22.000Z" - }, - "events": [ - { - "uuid": "08efd470-ff1f-48a7-b0ed-969ebf05ec71", - "start": { - "$date": "2021-09-29T04:13:41.000Z" - }, - "end": { - "$date": "2021-09-29T04:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c4bcd77a-4f45-483f-aca9-f197ec602425", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-29T04:17:45.000Z" - }, - "end": { - "$date": "2021-09-29T05:19:31.000Z" - }, - "events": [ - { - "uuid": "2f4613a1-bc1f-4211-8661-b685a99daf1f", - "start": { - "$date": "2021-09-29T04:17:45.000Z" - }, - "end": { - "$date": "2021-09-29T05:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dab0664e-abf2-41bf-8391-d7ae995e8b38", - "uuid": "b98617ec-0e6f-4f27-9c3c-a66f8385ba6b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-29T04:26:55.000Z" - }, - "end": { - "$date": "2021-09-29T06:08:14.000Z" - }, - "events": [ - { - "uuid": "5575c097-db72-4d9f-9a94-20e92eae6acb", - "start": { - "$date": "2021-09-29T04:26:55.000Z" - }, - "end": { - "$date": "2021-09-29T06:08:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0e2dde0c-467a-4b66-8540-bec6c0055a13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T04:31:49.000Z" - }, - "end": { - "$date": "2021-09-29T04:47:29.000Z" - }, - "events": [ - { - "uuid": "c3dc9cfe-244f-4a6e-9868-d252e3ebf59f", - "start": { - "$date": "2021-09-29T04:31:49.000Z" - }, - "end": { - "$date": "2021-09-29T04:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "38f65e39-8cbb-4b7b-b8df-c07bade17aaf", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-29T04:45:23.000Z" - }, - "end": { - "$date": "2021-09-29T05:54:44.000Z" - }, - "events": [ - { - "uuid": "78a1aa99-3004-4eaa-923d-1c21922a8b44", - "start": { - "$date": "2021-09-29T04:45:23.000Z" - }, - "end": { - "$date": "2021-09-29T05:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "4adf023e-5195-4eba-a619-1f4e9d91eaff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-29T04:48:05.000Z" - }, - "end": { - "$date": "2021-09-29T04:59:55.000Z" - }, - "events": [ - { - "uuid": "b67ccbe1-77db-46d6-8569-25517c465fd3", - "start": { - "$date": "2021-09-29T04:48:05.000Z" - }, - "end": { - "$date": "2021-09-29T04:59:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "2e2e907a-1c23-49c4-850d-60c92430bdb0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-29T06:48:07.000Z" - }, - "end": { - "$date": "2021-09-29T13:12:38.000Z" - }, - "events": [ - { - "uuid": "23064683-faca-408f-89cf-0a1fec6217d5", - "start": { - "$date": "2021-09-29T06:48:07.000Z" - }, - "end": { - "$date": "2021-09-29T13:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaf1c225-7219-4dd1-bb0c-c9419bbfa126", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-29T15:56:09.000Z" - }, - "end": { - "$date": "2021-09-29T16:23:16.000Z" - }, - "events": [ - { - "uuid": "e71d1043-8e8e-4951-aa05-dc9074a1546d", - "start": { - "$date": "2021-09-29T15:56:09.000Z" - }, - "end": { - "$date": "2021-09-29T16:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fc87237-acbc-487d-8a11-1247ebed0217", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-29T18:32:43.000Z" - }, - "end": { - "$date": "2021-09-29T18:47:19.000Z" - }, - "events": [ - { - "uuid": "f30d7298-193e-441f-b061-33e038ae17e4", - "start": { - "$date": "2021-09-29T18:32:43.000Z" - }, - "end": { - "$date": "2021-09-29T18:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c2548fa-0d55-4146-9f74-7fb2e27be8b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-29T18:51:49.000Z" - }, - "end": { - "$date": "2021-09-29T19:13:25.000Z" - }, - "events": [ - { - "uuid": "ec96892d-310a-4dc5-8226-55ef703ae853", - "start": { - "$date": "2021-09-29T18:51:49.000Z" - }, - "end": { - "$date": "2021-09-29T19:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "161d58bb-d886-45fc-a1e6-d1bd063fa2a0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-29T22:59:00.000Z" - }, - "end": { - "$date": "2021-09-29T23:00:13.000Z" - }, - "events": [ - { - "uuid": "dd84db5b-991c-417d-89f8-810e9cf0bb5a", - "start": { - "$date": "2021-09-29T22:59:00.000Z" - }, - "end": { - "$date": "2021-09-29T23:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "56d997f7-894b-4f8c-9bfb-7c1509e890f3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-09-29T22:59:21.000Z" - }, - "end": { - "$date": "2021-09-29T23:18:24.000Z" - }, - "events": [ - { - "uuid": "050ddb85-402d-4ae5-8d10-df2ccbaadd4f", - "start": { - "$date": "2021-09-29T22:59:21.000Z" - }, - "end": { - "$date": "2021-09-29T23:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1b1b6296-6fc5-44a5-9cf6-698037680f20", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-30T00:23:57.000Z" - }, - "end": { - "$date": "2021-09-30T04:46:28.000Z" - }, - "events": [ - { - "uuid": "29657d6a-640d-4d33-bc28-101942153cd6", - "start": { - "$date": "2021-09-30T00:23:57.000Z" - }, - "end": { - "$date": "2021-09-30T01:48:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35ff29cc-b723-4c2b-9e31-3e0b54c02e57", - "start": { - "$date": "2021-09-30T01:48:57.000Z" - }, - "end": { - "$date": "2021-09-30T01:50:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9533f514-e75f-4f31-858c-66bcbd6aab90", - "start": { - "$date": "2021-09-30T01:50:57.000Z" - }, - "end": { - "$date": "2021-09-30T04:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "6e034343-c190-431d-b885-95bb0488c88d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-09-30T00:40:10.000Z" - }, - "end": { - "$date": "2021-09-30T04:16:22.000Z" - }, - "events": [ - { - "uuid": "016b9be8-3ab6-4ad6-b085-8f47bf7f381a", - "start": { - "$date": "2021-09-30T00:40:10.000Z" - }, - "end": { - "$date": "2021-09-30T04:16:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "9a05c460-f02a-49ad-a140-1fd41282e91d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-30T00:46:49.000Z" - }, - "end": { - "$date": "2021-09-30T01:04:15.000Z" - }, - "events": [ - { - "uuid": "f1851cfc-a5cd-4f22-bad2-1e464eadb5bb", - "start": { - "$date": "2021-09-30T00:46:49.000Z" - }, - "end": { - "$date": "2021-09-30T01:04:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dab0664e-abf2-41bf-8391-d7ae995e8b38", - "uuid": "3f67359d-49b0-4d7d-a30e-f8760f71cfe7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-30T02:07:17.000Z" - }, - "end": { - "$date": "2021-09-30T03:02:28.000Z" - }, - "events": [ - { - "uuid": "92779781-7a59-492b-9741-ca2ff90bb789", - "start": { - "$date": "2021-09-30T02:07:17.000Z" - }, - "end": { - "$date": "2021-09-30T03:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbe34b84-9fd6-416f-85ee-0722e4eecccb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-30T02:26:09.000Z" - }, - "end": { - "$date": "2021-09-30T02:53:35.000Z" - }, - "events": [ - { - "uuid": "b590c471-3e5c-4988-9a40-0df29e6c13f1", - "start": { - "$date": "2021-09-30T02:26:09.000Z" - }, - "end": { - "$date": "2021-09-30T02:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "ecb0a207-f2aa-4dbd-b36c-8b7aef9061b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-30T02:20:19.000Z" - }, - "end": { - "$date": "2021-09-30T02:44:37.000Z" - }, - "events": [ - { - "uuid": "1ecc5578-8a8d-4dc9-a072-faf9b3a9324e", - "start": { - "$date": "2021-09-30T02:20:19.000Z" - }, - "end": { - "$date": "2021-09-30T02:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "41794939-0b44-4967-80bc-acf379490cc4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-30T02:45:13.000Z" - }, - "end": { - "$date": "2021-09-30T02:51:13.000Z" - }, - "events": [ - { - "uuid": "283ef240-878d-49c4-b13b-285a4be7444b", - "start": { - "$date": "2021-09-30T02:45:13.000Z" - }, - "end": { - "$date": "2021-09-30T02:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "aae6a1c9-4288-48d7-b496-c80d59371402", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-30T03:02:39.000Z" - }, - "end": { - "$date": "2021-09-30T03:11:20.000Z" - }, - "events": [ - { - "uuid": "4a3cebd9-802e-44bd-848f-6ba9da36515c", - "start": { - "$date": "2021-09-30T03:02:39.000Z" - }, - "end": { - "$date": "2021-09-30T03:11:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9eaa117b-3ec5-41cd-b4db-c457adddb064", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-30T03:02:48.000Z" - }, - "end": { - "$date": "2021-09-30T03:25:35.000Z" - }, - "events": [ - { - "uuid": "9fe9227d-27c5-4dc9-87a5-83e033a79d0d", - "start": { - "$date": "2021-09-30T03:02:48.000Z" - }, - "end": { - "$date": "2021-09-30T03:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2e572725-6516-4244-ac17-70feda41e189", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-30T03:25:45.000Z" - }, - "end": { - "$date": "2021-09-30T03:27:51.000Z" - }, - "events": [ - { - "uuid": "b4163ea3-e288-4c2f-9b13-0d3acf0b5bf7", - "start": { - "$date": "2021-09-30T03:25:45.000Z" - }, - "end": { - "$date": "2021-09-30T03:27:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a9407965-1599-47fe-8aa1-91466afb6a1e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-30T03:28:16.000Z" - }, - "end": { - "$date": "2021-09-30T05:19:32.000Z" - }, - "events": [ - { - "uuid": "9c7daa72-a684-4f16-9f03-99b427472359", - "start": { - "$date": "2021-09-30T03:28:16.000Z" - }, - "end": { - "$date": "2021-09-30T05:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3fbf4f56-5565-4fe7-8c4f-eebe11c1963e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-09-30T03:35:19.000Z" - }, - "end": { - "$date": "2021-09-30T05:11:47.000Z" - }, - "events": [ - { - "uuid": "c068b01e-6ab2-432e-b685-dd5bdc82a4bf", - "start": { - "$date": "2021-09-30T03:35:19.000Z" - }, - "end": { - "$date": "2021-09-30T05:11:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "e6f5da67-a706-4d52-85d0-2a450a9f05a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-30T03:43:25.000Z" - }, - "end": { - "$date": "2021-09-30T04:26:43.000Z" - }, - "events": [ - { - "uuid": "a265b787-400b-4c24-a6ef-25d4b780c6b5", - "start": { - "$date": "2021-09-30T03:43:25.000Z" - }, - "end": { - "$date": "2021-09-30T04:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "721bac74-5296-4a48-b6db-48e1bd787edc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-09-30T04:27:08.000Z" - }, - "end": { - "$date": "2021-09-30T05:19:41.000Z" - }, - "events": [ - { - "uuid": "903f7d63-ca29-408b-8bb5-b822698915ce", - "start": { - "$date": "2021-09-30T04:27:08.000Z" - }, - "end": { - "$date": "2021-09-30T05:19:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9613aa0b-16d8-427a-953f-0d6fbbde603e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-30T04:47:55.000Z" - }, - "end": { - "$date": "2021-09-30T05:19:31.000Z" - }, - "events": [ - { - "uuid": "ebb96789-930f-4e2b-a1df-1522cdd03e2a", - "start": { - "$date": "2021-09-30T04:47:55.000Z" - }, - "end": { - "$date": "2021-09-30T05:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ab9fd55-a22f-4930-9785-bf7502d6f8a4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-30T05:37:04.000Z" - }, - "end": { - "$date": "2021-09-30T06:02:08.000Z" - }, - "events": [ - { - "uuid": "d0ea7329-2a0c-47c2-94bd-14c6e576e17c", - "start": { - "$date": "2021-09-30T05:37:04.000Z" - }, - "end": { - "$date": "2021-09-30T06:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a912e62-1284-4de5-b07a-cad41c628f20", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-09-30T06:17:27.000Z" - }, - "end": { - "$date": "2021-09-30T07:06:26.000Z" - }, - "events": [ - { - "uuid": "b4055e91-05b5-4dfc-8d1c-51bbb4fe5ef5", - "start": { - "$date": "2021-09-30T06:17:27.000Z" - }, - "end": { - "$date": "2021-09-30T07:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "bb0370c8-608e-44f8-b0c1-8303820a98cf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-30T06:20:49.000Z" - }, - "end": { - "$date": "2021-09-30T06:21:59.000Z" - }, - "events": [ - { - "uuid": "4fd4b700-ca7b-43ae-9151-e4d3416e787c", - "start": { - "$date": "2021-09-30T06:20:49.000Z" - }, - "end": { - "$date": "2021-09-30T06:21:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf8a98af-5bfc-4709-9ed8-f441436a60df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-30T06:25:55.000Z" - }, - "end": { - "$date": "2021-09-30T06:40:56.000Z" - }, - "events": [ - { - "uuid": "1c9f2d1a-494c-4f70-bf8e-1081a7afcbb2", - "start": { - "$date": "2021-09-30T06:25:55.000Z" - }, - "end": { - "$date": "2021-09-30T06:40:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95052bc3-6660-49c9-9421-50e439822e95", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-30T06:44:22.000Z" - }, - "end": { - "$date": "2021-09-30T07:07:29.000Z" - }, - "events": [ - { - "uuid": "251d1ae5-a9e7-405f-bf7f-ac6fc75c4d4d", - "start": { - "$date": "2021-09-30T06:44:22.000Z" - }, - "end": { - "$date": "2021-09-30T07:07:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3553ed4a-2037-4471-9155-0385033b21ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-30T07:12:23.000Z" - }, - "end": { - "$date": "2021-09-30T07:26:18.000Z" - }, - "events": [ - { - "uuid": "58f5e1e7-4616-4e36-bef6-e9ac578f6593", - "start": { - "$date": "2021-09-30T07:12:23.000Z" - }, - "end": { - "$date": "2021-09-30T07:26:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "d3c6c63b-fc57-4b09-80d5-88078eb6395d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T08:42:36.000Z" - }, - "end": { - "$date": "2021-09-30T08:46:36.000Z" - }, - "events": [ - { - "uuid": "7cda8045-0e2b-4944-8ca4-ebd302c7e2f7", - "start": { - "$date": "2021-09-30T08:42:36.000Z" - }, - "end": { - "$date": "2021-09-30T08:46:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "4f30783f-62b0-47fb-a91c-16f0588a7285", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T08:47:17.000Z" - }, - "end": { - "$date": "2021-09-30T08:48:31.000Z" - }, - "events": [ - { - "uuid": "a06265f0-4ec0-43de-a8af-bf62e053a257", - "start": { - "$date": "2021-09-30T08:47:17.000Z" - }, - "end": { - "$date": "2021-09-30T08:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "7bd51eda-2458-412b-a383-479e82cd9005", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T08:50:58.000Z" - }, - "end": { - "$date": "2021-09-30T10:11:16.000Z" - }, - "events": [ - { - "uuid": "cf43393e-880e-43e1-866c-5930863a5e30", - "start": { - "$date": "2021-09-30T08:50:58.000Z" - }, - "end": { - "$date": "2021-09-30T10:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "95197005-662c-465a-84c3-ce468ef54655", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-09-30T14:35:25.000Z" - }, - "end": { - "$date": "2021-09-30T15:23:02.000Z" - }, - "events": [ - { - "uuid": "3f301be6-8716-4fd3-9799-c423a14edfc8", - "start": { - "$date": "2021-09-30T14:35:25.000Z" - }, - "end": { - "$date": "2021-09-30T15:23:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c088286b-55d9-4b55-84d6-c62b0d923f2b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-30T16:13:12.000Z" - }, - "end": { - "$date": "2021-09-30T16:39:17.000Z" - }, - "events": [ - { - "uuid": "1e71887d-ab65-4fec-b406-a0d859f23335", - "start": { - "$date": "2021-09-30T16:13:12.000Z" - }, - "end": { - "$date": "2021-09-30T16:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74b3a285-4986-49ad-bc9b-ef91f8d0c45d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-30T16:39:49.000Z" - }, - "end": { - "$date": "2021-09-30T17:29:19.000Z" - }, - "events": [ - { - "uuid": "18d8237a-52fb-4f52-ad85-7e12a32a0947", - "start": { - "$date": "2021-09-30T16:39:49.000Z" - }, - "end": { - "$date": "2021-09-30T17:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "5e406ade-2b0a-485a-9038-07b5f6827429", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T17:14:21.000Z" - }, - "end": { - "$date": "2021-09-30T17:39:45.000Z" - }, - "events": [ - { - "uuid": "54ff6dd1-9b53-46da-8f89-f1fa4661c5d7", - "start": { - "$date": "2021-09-30T17:14:21.000Z" - }, - "end": { - "$date": "2021-09-30T17:39:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42b829e8-1234-4b4c-9698-71d617cde211", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-30T19:37:50.000Z" - }, - "end": { - "$date": "2021-09-30T19:56:45.000Z" - }, - "events": [ - { - "uuid": "419f85bb-9e03-413b-bfef-833ce4af4762", - "start": { - "$date": "2021-09-30T19:37:50.000Z" - }, - "end": { - "$date": "2021-09-30T19:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "adf685dc-1883-4290-8b02-e48ab284b61a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-30T21:25:43.000Z" - }, - "end": { - "$date": "2021-09-30T21:51:59.000Z" - }, - "events": [ - { - "uuid": "e03b20e0-ef32-434b-9e4a-67cc8276dbed", - "start": { - "$date": "2021-09-30T21:25:43.000Z" - }, - "end": { - "$date": "2021-09-30T21:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "de3e8b1a-b1fa-464e-a8f9-6854cff7b84d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-30T21:52:09.000Z" - }, - "end": { - "$date": "2021-09-30T21:53:34.000Z" - }, - "events": [ - { - "uuid": "6c54b5d4-c2f4-4724-8aa3-8a9414eb5db7", - "start": { - "$date": "2021-09-30T21:52:09.000Z" - }, - "end": { - "$date": "2021-09-30T21:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "1460d88f-e5cc-4b3f-955f-6234882390af", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T22:33:17.000Z" - }, - "end": { - "$date": "2021-09-30T22:34:23.000Z" - }, - "events": [ - { - "uuid": "c13cde84-4f53-4b1c-8956-a5d866382bc6", - "start": { - "$date": "2021-09-30T22:33:17.000Z" - }, - "end": { - "$date": "2021-09-30T22:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "6dda1cb7-b3d3-42b6-bb9b-ad3721d6b897", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T22:34:57.000Z" - }, - "end": { - "$date": "2021-09-30T22:38:50.000Z" - }, - "events": [ - { - "uuid": "be6008af-7bc6-42a9-853b-6b114fb614e3", - "start": { - "$date": "2021-09-30T22:34:57.000Z" - }, - "end": { - "$date": "2021-09-30T22:38:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "65a1750e-4c02-4d9e-aa8a-74f95ea20ba5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-09-30T22:39:09.000Z" - }, - "end": { - "$date": "2021-10-01T02:50:22.000Z" - }, - "events": [ - { - "uuid": "f4263b06-ca9e-4008-9569-08702d7baef1", - "start": { - "$date": "2021-09-30T22:39:09.000Z" - }, - "end": { - "$date": "2021-10-01T02:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", - "uuid": "cd87119d-b0d3-427b-ae03-ce0350679607", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-30T23:26:13.000Z" - }, - "end": { - "$date": "2021-09-30T23:29:23.000Z" - }, - "events": [ - { - "uuid": "9babb877-f57c-4d34-90d2-759b519fdd52", - "start": { - "$date": "2021-09-30T23:26:13.000Z" - }, - "end": { - "$date": "2021-09-30T23:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", - "uuid": "d6e7d6f0-87fe-4d68-8696-a9ef97d10e34", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-09-30T23:30:18.000Z" - }, - "end": { - "$date": "2021-10-01T00:00:07.000Z" - }, - "events": [ - { - "uuid": "dd17b498-90cf-486f-9a21-44f487b68e36", - "start": { - "$date": "2021-09-30T23:30:18.000Z" - }, - "end": { - "$date": "2021-10-01T00:00:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b22f1256-aae3-4390-b136-a9fa9a03be89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-09-30T23:40:10.000Z" - }, - "end": { - "$date": "2021-10-01T03:32:48.000Z" - }, - "events": [ - { - "uuid": "4e43bdcd-7616-4787-8792-fd9872871057", - "start": { - "$date": "2021-09-30T23:40:10.000Z" - }, - "end": { - "$date": "2021-09-30T23:55:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95235a4f-7f2f-4c09-a7e0-8ba953a88075", - "start": { - "$date": "2021-09-30T23:55:10.000Z" - }, - "end": { - "$date": "2021-09-30T23:56:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c89e2a6f-85aa-464e-959e-7ad24ecd8df2", - "start": { - "$date": "2021-09-30T23:56:10.000Z" - }, - "end": { - "$date": "2021-10-01T00:09:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2c85fabd-c53f-4da2-86a8-ec88f16e8caa", - "start": { - "$date": "2021-10-01T00:09:10.000Z" - }, - "end": { - "$date": "2021-10-01T00:14:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "13726dc1-1595-4701-a860-2a11842d73da", - "start": { - "$date": "2021-10-01T00:14:10.000Z" - }, - "end": { - "$date": "2021-10-01T00:24:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b57d6259-6938-4681-b057-7f9634422d1e", - "start": { - "$date": "2021-10-01T00:24:10.000Z" - }, - "end": { - "$date": "2021-10-01T00:27:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb456c8b-746a-46cd-b8db-63419bf59b25", - "start": { - "$date": "2021-10-01T00:27:10.000Z" - }, - "end": { - "$date": "2021-10-01T03:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78b4d545-582d-4efe-a62e-4c75f7927bbc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-09-30T23:47:22.000Z" - }, - "end": { - "$date": "2021-10-01T00:11:02.000Z" - }, - "events": [ - { - "uuid": "d29b9621-058c-4bbd-b7e5-3fa4bb668e21", - "start": { - "$date": "2021-09-30T23:47:22.000Z" - }, - "end": { - "$date": "2021-10-01T00:11:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94daf33d-3d33-42fe-a47f-9625cf85185d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-01T00:56:21.000Z" - }, - "end": { - "$date": "2021-10-01T01:06:51.000Z" - }, - "events": [ - { - "uuid": "b5acf1f3-904c-4df2-a3d9-d2568f094727", - "start": { - "$date": "2021-10-01T00:56:21.000Z" - }, - "end": { - "$date": "2021-10-01T01:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1f4c570-2d47-4c38-8769-2a33fcd71686", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-01T01:10:06.000Z" - }, - "end": { - "$date": "2021-10-01T01:26:07.000Z" - }, - "events": [ - { - "uuid": "831110ac-8307-4510-bcfa-450942439552", - "start": { - "$date": "2021-10-01T01:10:06.000Z" - }, - "end": { - "$date": "2021-10-01T01:26:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dab0664e-abf2-41bf-8391-d7ae995e8b38", - "uuid": "b427e62c-6e76-4183-9033-49805e63fb70", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T01:46:20.000Z" - }, - "end": { - "$date": "2021-10-01T03:07:39.000Z" - }, - "events": [ - { - "uuid": "26a9db84-22ea-4a60-bdab-f313a27a1061", - "start": { - "$date": "2021-10-01T01:46:20.000Z" - }, - "end": { - "$date": "2021-10-01T03:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34f79d77-4c5b-4621-8bc4-115c3f1e3e1f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T01:59:36.000Z" - }, - "end": { - "$date": "2021-10-01T02:22:32.000Z" - }, - "events": [ - { - "uuid": "187eb506-8c51-4e00-b568-7fbb870d9a9f", - "start": { - "$date": "2021-10-01T01:59:36.000Z" - }, - "end": { - "$date": "2021-10-01T02:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d7d4ba7-b95b-4a5f-bc25-42f1b02b31c8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T02:26:09.000Z" - }, - "end": { - "$date": "2021-10-01T02:40:50.000Z" - }, - "events": [ - { - "uuid": "c5840baa-e0a7-4282-98c4-efddc5475e94", - "start": { - "$date": "2021-10-01T02:26:09.000Z" - }, - "end": { - "$date": "2021-10-01T02:40:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b5502bf-38ab-43af-ad5b-2dab791ed48a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T02:43:31.000Z" - }, - "end": { - "$date": "2021-10-01T03:04:38.000Z" - }, - "events": [ - { - "uuid": "44df52f0-5e4d-41ef-a9b5-da757feacaf8", - "start": { - "$date": "2021-10-01T02:43:31.000Z" - }, - "end": { - "$date": "2021-10-01T03:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "925314eb-3168-4a59-9f1d-2dc263e8fbd5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-01T02:41:36.000Z" - }, - "end": { - "$date": "2021-10-01T03:20:31.000Z" - }, - "events": [ - { - "uuid": "90a71baf-0bab-43dc-a812-1fcbf539470b", - "start": { - "$date": "2021-10-01T02:41:36.000Z" - }, - "end": { - "$date": "2021-10-01T03:20:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "1bc645c6-9598-484f-be9e-36ff77a77623", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-01T03:03:11.000Z" - }, - "end": { - "$date": "2021-10-01T03:05:56.000Z" - }, - "events": [ - { - "uuid": "7872c665-3226-45e8-ab85-a4312ece9ce1", - "start": { - "$date": "2021-10-01T03:03:11.000Z" - }, - "end": { - "$date": "2021-10-01T03:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e225218d-1416-4059-8cb6-8266e9f1efc8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T03:08:29.000Z" - }, - "end": { - "$date": "2021-10-01T03:30:11.000Z" - }, - "events": [ - { - "uuid": "9ecea430-347d-46e4-897e-313a0d7ab629", - "start": { - "$date": "2021-10-01T03:08:29.000Z" - }, - "end": { - "$date": "2021-10-01T03:30:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f29f069-2ad1-4f32-94cf-0fd3ab0ed6c0", - "uuid": "a519c756-8da8-45dc-b586-fdf1d9bbae2a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T03:11:24.000Z" - }, - "end": { - "$date": "2021-10-01T03:43:35.000Z" - }, - "events": [ - { - "uuid": "d5810fd6-fafe-4c07-b5d7-e8f0fcccac7c", - "start": { - "$date": "2021-10-01T03:11:24.000Z" - }, - "end": { - "$date": "2021-10-01T03:43:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "913441a0-e764-4710-982f-278c32fc58bd", - "uuid": "bd445794-1fd3-4773-ba84-40d7cd46168b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-01T03:12:22.000Z" - }, - "end": { - "$date": "2021-10-01T03:43:39.000Z" - }, - "events": [ - { - "uuid": "19d5fc7f-40a8-4c9d-8f40-3be3820c141c", - "start": { - "$date": "2021-10-01T03:12:22.000Z" - }, - "end": { - "$date": "2021-10-01T03:43:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b4facde-49e4-49c4-92f9-1fb9e966c25b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-01T03:27:28.000Z" - }, - "end": { - "$date": "2021-10-01T04:00:51.000Z" - }, - "events": [ - { - "uuid": "da622245-ee63-42f9-ad10-18bb8504e1c4", - "start": { - "$date": "2021-10-01T03:27:28.000Z" - }, - "end": { - "$date": "2021-10-01T04:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43ea4865-9a2e-42de-b4d2-3d397dd84b90", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T03:32:22.000Z" - }, - "end": { - "$date": "2021-10-01T03:51:02.000Z" - }, - "events": [ - { - "uuid": "ee03989f-cacf-4720-b688-a894e8f46679", - "start": { - "$date": "2021-10-01T03:32:22.000Z" - }, - "end": { - "$date": "2021-10-01T03:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39fd05f0-b9b6-4b2f-a3a6-37f124a70ca9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T03:52:49.000Z" - }, - "end": { - "$date": "2021-10-01T04:15:11.000Z" - }, - "events": [ - { - "uuid": "2e57189d-408f-4548-96d0-484858a4d080", - "start": { - "$date": "2021-10-01T03:52:49.000Z" - }, - "end": { - "$date": "2021-10-01T04:15:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bd4bec68-9007-4142-bb79-997d4982f2e0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T03:55:36.000Z" - }, - "end": { - "$date": "2021-10-01T04:18:16.000Z" - }, - "events": [ - { - "uuid": "99a60804-c768-45a0-8f4f-fa0dd79e96d5", - "start": { - "$date": "2021-10-01T03:55:36.000Z" - }, - "end": { - "$date": "2021-10-01T04:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81d847bc-73c7-4197-94cf-868820ab7565", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T04:44:10.000Z" - }, - "end": { - "$date": "2021-10-01T05:11:03.000Z" - }, - "events": [ - { - "uuid": "387041d3-8a88-4bc1-9ff2-746aac6206dc", - "start": { - "$date": "2021-10-01T04:44:10.000Z" - }, - "end": { - "$date": "2021-10-01T05:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1912f3da-35d5-46dd-8062-57f5f50197f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-01T04:18:37.000Z" - }, - "end": { - "$date": "2021-10-01T04:40:42.000Z" - }, - "events": [ - { - "uuid": "58d6984a-aea1-48df-a6d4-bc0474dbc012", - "start": { - "$date": "2021-10-01T04:18:37.000Z" - }, - "end": { - "$date": "2021-10-01T04:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "14e7a446-98f2-4e36-b5d8-ec162f80ca37", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-01T04:18:19.000Z" - }, - "end": { - "$date": "2021-10-01T05:09:56.000Z" - }, - "events": [ - { - "uuid": "ec7de143-ee4d-4f5c-8328-2954f7dfbdf3", - "start": { - "$date": "2021-10-01T04:18:19.000Z" - }, - "end": { - "$date": "2021-10-01T05:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b4d3bec9-362d-4a1b-9cdd-621b58d0fa68", - "uuid": "a0b038db-5144-46fc-b7a9-4da84bf9fc45", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T04:18:26.000Z" - }, - "end": { - "$date": "2021-10-01T04:45:42.000Z" - }, - "events": [ - { - "uuid": "ac93b490-da17-44ad-9bd3-8bdbd851ea04", - "start": { - "$date": "2021-10-01T04:18:26.000Z" - }, - "end": { - "$date": "2021-10-01T04:45:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "9708370d-9efc-4a98-ba4f-c379c7955c7d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T04:46:07.000Z" - }, - "end": { - "$date": "2021-10-01T05:08:17.000Z" - }, - "events": [ - { - "uuid": "d91ddf0c-6df7-4121-8022-e126daff61c1", - "start": { - "$date": "2021-10-01T04:46:07.000Z" - }, - "end": { - "$date": "2021-10-01T05:08:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "213010f4-b3a4-4e56-b05d-fe0ef225c428", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-01T05:01:36.000Z" - }, - "end": { - "$date": "2021-10-01T05:30:57.000Z" - }, - "events": [ - { - "uuid": "5c904302-7a68-40d1-b63b-ddf595250081", - "start": { - "$date": "2021-10-01T05:01:36.000Z" - }, - "end": { - "$date": "2021-10-01T05:30:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72f7c8ee-e486-4a30-a51a-3b4af2c70e99", - "uuid": "9bf6f2c0-fc5c-44ab-ae74-c8c5adfc5c93", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T05:09:17.000Z" - }, - "end": { - "$date": "2021-10-01T05:55:09.000Z" - }, - "events": [ - { - "uuid": "57f634cc-dda4-4163-9796-1dec95837853", - "start": { - "$date": "2021-10-01T05:09:17.000Z" - }, - "end": { - "$date": "2021-10-01T05:55:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60c75d71-e743-47e0-9e61-1de9ff4705d2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-01T05:14:04.000Z" - }, - "end": { - "$date": "2021-10-01T05:34:21.000Z" - }, - "events": [ - { - "uuid": "92b22e89-42e5-43b9-8a0f-3e0332beae68", - "start": { - "$date": "2021-10-01T05:14:04.000Z" - }, - "end": { - "$date": "2021-10-01T05:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "637c8712-5569-4b6e-8c68-e6ea3b6a9a7a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-01T05:20:19.000Z" - }, - "end": { - "$date": "2021-10-01T05:48:30.000Z" - }, - "events": [ - { - "uuid": "e55f3ae2-1aa3-4cc7-8920-be086ae0456c", - "start": { - "$date": "2021-10-01T05:20:19.000Z" - }, - "end": { - "$date": "2021-10-01T05:48:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e509ae9-de9d-4d09-89e7-ced2388b4261", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-01T05:35:26.000Z" - }, - "end": { - "$date": "2021-10-01T05:41:50.000Z" - }, - "events": [ - { - "uuid": "a238892e-ad00-4026-b0aa-3c30e92be9db", - "start": { - "$date": "2021-10-01T05:35:26.000Z" - }, - "end": { - "$date": "2021-10-01T05:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7ed7fdf2-fb23-4a8f-8946-e3131e2a59a6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-01T19:21:57.000Z" - }, - "end": { - "$date": "2021-10-02T00:22:13.000Z" - }, - "events": [ - { - "uuid": "1b4a1b90-ee35-465f-b262-571b6f38a229", - "start": { - "$date": "2021-10-01T19:21:57.000Z" - }, - "end": { - "$date": "2021-10-01T20:54:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e11d71bf-fc91-4ee7-be9e-1548ee79a088", - "start": { - "$date": "2021-10-01T20:54:57.000Z" - }, - "end": { - "$date": "2021-10-01T20:59:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d95a976-1159-4a2a-ba9b-880ec0de3358", - "start": { - "$date": "2021-10-01T20:59:57.000Z" - }, - "end": { - "$date": "2021-10-01T21:09:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f058fb5-fda7-4efd-b995-ffba5862afaa", - "start": { - "$date": "2021-10-01T21:09:57.000Z" - }, - "end": { - "$date": "2021-10-01T21:17:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "63a69cf3-21e0-48eb-8380-896a43d01e17", - "start": { - "$date": "2021-10-01T21:17:57.000Z" - }, - "end": { - "$date": "2021-10-01T21:20:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3e27f190-03cc-48b1-8596-480bb0261858", - "start": { - "$date": "2021-10-01T21:20:57.000Z" - }, - "end": { - "$date": "2021-10-01T22:09:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6ded7455-107c-4c22-91b3-df37b3c00a62", - "start": { - "$date": "2021-10-01T22:09:57.000Z" - }, - "end": { - "$date": "2021-10-02T00:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "5d896e10-68fd-48e1-9be1-b0efb50130a6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-01T19:34:32.000Z" - }, - "end": { - "$date": "2021-10-01T19:47:17.000Z" - }, - "events": [ - { - "uuid": "5446f50b-7785-4c97-ac77-1a80ce38dde7", - "start": { - "$date": "2021-10-01T19:34:32.000Z" - }, - "end": { - "$date": "2021-10-01T19:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5e3ded53-5ad3-417b-baa7-f26dab9b61c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-01T21:40:52.000Z" - }, - "end": { - "$date": "2021-10-01T22:45:08.000Z" - }, - "events": [ - { - "uuid": "0b25662a-798f-41d9-9eac-e29398885fba", - "start": { - "$date": "2021-10-01T21:40:52.000Z" - }, - "end": { - "$date": "2021-10-01T22:45:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d776f868-3fbd-4bc0-8d9d-e16dfdcf75e0", - "uuid": "43fe1230-229d-4d11-9bc2-2310e8536ba5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-01T23:10:27.000Z" - }, - "end": { - "$date": "2021-10-02T00:07:04.000Z" - }, - "events": [ - { - "uuid": "563c684c-7b02-4cbf-ba7c-c1d204dfc686", - "start": { - "$date": "2021-10-01T23:10:27.000Z" - }, - "end": { - "$date": "2021-10-02T00:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae736de1-231a-41ff-95b7-d7506387b3dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-01T23:58:43.000Z" - }, - "end": { - "$date": "2021-10-02T00:32:51.000Z" - }, - "events": [ - { - "uuid": "84a5cfc4-589e-426e-9b41-c78f911f73ba", - "start": { - "$date": "2021-10-01T23:58:43.000Z" - }, - "end": { - "$date": "2021-10-02T00:32:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c638ff42-0fd3-461e-a35a-91da6063a4ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-02T00:30:19.000Z" - }, - "end": { - "$date": "2021-10-02T04:45:12.000Z" - }, - "events": [ - { - "uuid": "bd9c0407-84a5-4444-92bb-9b3500ca5f94", - "start": { - "$date": "2021-10-02T00:30:19.000Z" - }, - "end": { - "$date": "2021-10-02T04:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e7de279-5cd5-4aac-835c-e3fdc9dc8c3c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-02T01:11:15.000Z" - }, - "end": { - "$date": "2021-10-02T01:37:53.000Z" - }, - "events": [ - { - "uuid": "22208fff-8200-4efe-a97d-7e04a0cad1d4", - "start": { - "$date": "2021-10-02T01:11:15.000Z" - }, - "end": { - "$date": "2021-10-02T01:37:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b884954a-d19f-43e1-ba54-f5f2030f27ff", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-02T01:34:04.000Z" - }, - "end": { - "$date": "2021-10-02T01:37:51.000Z" - }, - "events": [ - { - "uuid": "8fb67fc1-bf0d-47f3-9965-b783376a19bd", - "start": { - "$date": "2021-10-02T01:34:04.000Z" - }, - "end": { - "$date": "2021-10-02T01:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "710cd884-8cfa-4e89-9635-ce61c38607f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-02T01:40:51.000Z" - }, - "end": { - "$date": "2021-10-02T02:01:44.000Z" - }, - "events": [ - { - "uuid": "e49df07d-3b80-40f5-a63a-5a8fe3f53ac7", - "start": { - "$date": "2021-10-02T01:40:51.000Z" - }, - "end": { - "$date": "2021-10-02T02:01:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e55d424a-2fee-4b12-9424-0996da0c3841", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-02T01:40:45.000Z" - }, - "end": { - "$date": "2021-10-02T02:01:41.000Z" - }, - "events": [ - { - "uuid": "d9552ae5-104f-48ca-8930-8d59fc03e032", - "start": { - "$date": "2021-10-02T01:40:45.000Z" - }, - "end": { - "$date": "2021-10-02T02:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42858e9b-e6e8-47b6-83de-82c24194a6e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-02T01:42:43.000Z" - }, - "end": { - "$date": "2021-10-02T02:01:43.000Z" - }, - "events": [ - { - "uuid": "da9551ad-7fc0-4878-88fb-706aaaaad838", - "start": { - "$date": "2021-10-02T01:42:43.000Z" - }, - "end": { - "$date": "2021-10-02T02:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b518fbbe-c0b4-43e5-b383-0421f990f98b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-02T02:31:53.000Z" - }, - "end": { - "$date": "2021-10-02T05:18:21.000Z" - }, - "events": [ - { - "uuid": "f76b655f-7c14-4f9a-8a2a-db6e2563fbdd", - "start": { - "$date": "2021-10-02T02:31:53.000Z" - }, - "end": { - "$date": "2021-10-02T05:18:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a3bf99aa-9ff4-4ced-af51-e945bc2ebf13", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-02T02:32:03.000Z" - }, - "end": { - "$date": "2021-10-02T05:19:42.000Z" - }, - "events": [ - { - "uuid": "73c3f9cc-3387-495c-9e0b-8135d9480384", - "start": { - "$date": "2021-10-02T02:32:03.000Z" - }, - "end": { - "$date": "2021-10-02T05:19:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4b844694-9dc8-4702-9cfd-86d7390f3698", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-02T02:33:39.000Z" - }, - "end": { - "$date": "2021-10-02T05:19:16.000Z" - }, - "events": [ - { - "uuid": "ab79a882-b0a4-4af6-9297-29a9308e4451", - "start": { - "$date": "2021-10-02T02:33:39.000Z" - }, - "end": { - "$date": "2021-10-02T05:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b62bf6c1-bc63-47fc-8810-6f6ce3f7e54c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-02T03:50:40.000Z" - }, - "end": { - "$date": "2021-10-02T04:05:40.000Z" - }, - "events": [ - { - "uuid": "4cc76ce0-e6d6-4392-b241-e38aefd7201b", - "start": { - "$date": "2021-10-02T03:50:40.000Z" - }, - "end": { - "$date": "2021-10-02T04:05:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "8c224ad9-693d-4ccf-a19a-bbb31afbd673", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T03:55:42.000Z" - }, - "end": { - "$date": "2021-10-02T05:07:01.000Z" - }, - "events": [ - { - "uuid": "6658bcfb-08dd-4e35-8bdc-e4f1b603a12c", - "start": { - "$date": "2021-10-02T03:55:42.000Z" - }, - "end": { - "$date": "2021-10-02T05:07:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d3b0491-fb9d-4fd4-b5fc-05139d6fbed1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-02T04:08:16.000Z" - }, - "end": { - "$date": "2021-10-02T04:24:46.000Z" - }, - "events": [ - { - "uuid": "a96a5e89-a421-43a4-ab57-0bb6948eb3d5", - "start": { - "$date": "2021-10-02T04:08:16.000Z" - }, - "end": { - "$date": "2021-10-02T04:24:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce1ddafe-6f39-4d14-bfa1-3a00d8689083", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-02T04:27:37.000Z" - }, - "end": { - "$date": "2021-10-02T04:50:59.000Z" - }, - "events": [ - { - "uuid": "629c1bdc-e497-4d1d-bcf7-f7decfd2c67c", - "start": { - "$date": "2021-10-02T04:27:37.000Z" - }, - "end": { - "$date": "2021-10-02T04:50:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "aeffdee4-d664-4728-ae3f-a03d31f94be7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-02T04:31:31.000Z" - }, - "end": { - "$date": "2021-10-02T06:22:31.000Z" - }, - "events": [ - { - "uuid": "debaf797-cfaa-4bf9-b14c-5b473988a229", - "start": { - "$date": "2021-10-02T04:31:31.000Z" - }, - "end": { - "$date": "2021-10-02T06:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "0dcf2cab-40b1-4b92-a687-16c3938cd2e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T05:08:51.000Z" - }, - "end": { - "$date": "2021-10-02T05:12:57.000Z" - }, - "events": [ - { - "uuid": "28c44cc8-c37b-4874-87fe-8a9376f5d933", - "start": { - "$date": "2021-10-02T05:08:51.000Z" - }, - "end": { - "$date": "2021-10-02T05:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fea2fc8a-d167-4afd-a526-b84bd2def830", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-02T05:18:32.000Z" - }, - "end": { - "$date": "2021-10-02T05:32:46.000Z" - }, - "events": [ - { - "uuid": "2d777459-9d86-4a54-8b30-4bff13b51f1e", - "start": { - "$date": "2021-10-02T05:18:32.000Z" - }, - "end": { - "$date": "2021-10-02T05:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4682de70-7401-47b7-81d3-1421773aa33c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-02T05:51:38.000Z" - }, - "end": { - "$date": "2021-10-02T05:54:38.000Z" - }, - "events": [ - { - "uuid": "2bbaf684-7f6a-49a4-9a8f-02e7cd90a4d9", - "start": { - "$date": "2021-10-02T05:51:38.000Z" - }, - "end": { - "$date": "2021-10-02T05:54:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d87975a8-fdc6-4e16-b23a-c68c77933482", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-02T06:28:17.000Z" - }, - "end": { - "$date": "2021-10-02T06:54:42.000Z" - }, - "events": [ - { - "uuid": "d641681b-9b50-4041-968d-e4122f5e02c7", - "start": { - "$date": "2021-10-02T06:28:17.000Z" - }, - "end": { - "$date": "2021-10-02T06:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c18622a8-3ebc-4b41-b5a2-49ec6c580700", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-02T06:48:08.000Z" - }, - "end": { - "$date": "2021-10-02T06:50:38.000Z" - }, - "events": [ - { - "uuid": "d156c9e6-c721-4340-837d-732d12622b7b", - "start": { - "$date": "2021-10-02T06:48:08.000Z" - }, - "end": { - "$date": "2021-10-02T06:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "050fc285-85e3-4d71-85ea-4dfd7ad2f5e4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-02T07:08:14.000Z" - }, - "end": { - "$date": "2021-10-02T07:40:56.000Z" - }, - "events": [ - { - "uuid": "c7945e00-afbc-4cd9-b7ba-ebe2be71c5e9", - "start": { - "$date": "2021-10-02T07:08:14.000Z" - }, - "end": { - "$date": "2021-10-02T07:40:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e8072228-0549-46e0-bf8d-f51575d02473", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-02T13:48:36.000Z" - }, - "end": { - "$date": "2021-10-02T13:55:31.000Z" - }, - "events": [ - { - "uuid": "33cefd30-cbe4-4290-b393-b24385623bb6", - "start": { - "$date": "2021-10-02T13:48:36.000Z" - }, - "end": { - "$date": "2021-10-02T13:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "be6befaa-f71f-4ef5-9b9c-6c5c01fe8ef8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T15:13:43.000Z" - }, - "end": { - "$date": "2021-10-02T15:55:48.000Z" - }, - "events": [ - { - "uuid": "42302a3a-47f1-4a7c-9378-cf211dae2048", - "start": { - "$date": "2021-10-02T15:13:43.000Z" - }, - "end": { - "$date": "2021-10-02T15:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "aa0393f1-7cab-4270-9ee0-f1b61608cc3c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T16:09:00.000Z" - }, - "end": { - "$date": "2021-10-02T16:10:50.000Z" - }, - "events": [ - { - "uuid": "d0e6f2e2-5c63-454d-8dac-d25cb746e6eb", - "start": { - "$date": "2021-10-02T16:09:00.000Z" - }, - "end": { - "$date": "2021-10-02T16:10:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "a588e072-d24f-42eb-b6f8-cbd9a6736500", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T16:11:10.000Z" - }, - "end": { - "$date": "2021-10-02T17:11:32.000Z" - }, - "events": [ - { - "uuid": "6690b0a4-a73f-41a8-a070-8ebfa44bb81e", - "start": { - "$date": "2021-10-02T16:11:10.000Z" - }, - "end": { - "$date": "2021-10-02T17:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f3d9601e-f3fd-492f-abbf-9f86bda71b82", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T17:42:43.000Z" - }, - "end": { - "$date": "2021-10-02T18:09:21.000Z" - }, - "events": [ - { - "uuid": "759eae18-81f7-4b4e-bde4-62c22538e3e5", - "start": { - "$date": "2021-10-02T17:42:43.000Z" - }, - "end": { - "$date": "2021-10-02T18:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "37b055ae-5812-493a-a306-322555481274", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-02T18:43:28.000Z" - }, - "end": { - "$date": "2021-10-02T18:47:17.000Z" - }, - "events": [ - { - "uuid": "41afb8b8-7428-4f98-8827-f041d88c10ac", - "start": { - "$date": "2021-10-02T18:43:28.000Z" - }, - "end": { - "$date": "2021-10-02T18:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "4f25e916-3025-4720-aca9-892d17501f1a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T18:50:44.000Z" - }, - "end": { - "$date": "2021-10-02T20:06:48.000Z" - }, - "events": [ - { - "uuid": "d9ee482d-2a7f-4e77-98e3-5fcc44d52fe0", - "start": { - "$date": "2021-10-02T18:50:44.000Z" - }, - "end": { - "$date": "2021-10-02T20:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d776f868-3fbd-4bc0-8d9d-e16dfdcf75e0", - "uuid": "a130c6d2-71de-4013-9858-72ed25d558a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-02T19:51:52.000Z" - }, - "end": { - "$date": "2021-10-02T20:08:34.000Z" - }, - "events": [ - { - "uuid": "06d72b69-f3cc-4eae-8782-9caa6d767181", - "start": { - "$date": "2021-10-02T19:51:52.000Z" - }, - "end": { - "$date": "2021-10-02T20:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "cf8bb04f-a1e8-4895-b829-a6fbc22f65a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-02T20:07:19.000Z" - }, - "end": { - "$date": "2021-10-02T20:25:41.000Z" - }, - "events": [ - { - "uuid": "f8aa6096-aed9-4071-b380-4a38e5fff363", - "start": { - "$date": "2021-10-02T20:07:19.000Z" - }, - "end": { - "$date": "2021-10-02T20:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9095f7ba-18eb-4467-a439-095b40717582", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-02T20:17:52.000Z" - }, - "end": { - "$date": "2021-10-02T20:24:12.000Z" - }, - "events": [ - { - "uuid": "92daacfc-3bea-4555-adab-de5fde4b7e5e", - "start": { - "$date": "2021-10-02T20:17:52.000Z" - }, - "end": { - "$date": "2021-10-02T20:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "196c959f-2ebe-4823-8d38-68b17677e571", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-02T20:23:52.000Z" - }, - "end": { - "$date": "2021-10-02T21:04:11.000Z" - }, - "events": [ - { - "uuid": "907097d9-2113-4d15-b4d8-57ffdb512fd0", - "start": { - "$date": "2021-10-02T20:23:52.000Z" - }, - "end": { - "$date": "2021-10-02T21:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3acbd072-baa3-444a-9b0b-b3a4dcd89256", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-02T21:12:41.000Z" - }, - "end": { - "$date": "2021-10-02T22:29:45.000Z" - }, - "events": [ - { - "uuid": "04043d11-63d1-43e5-bf29-746e614d66f2", - "start": { - "$date": "2021-10-02T21:12:41.000Z" - }, - "end": { - "$date": "2021-10-02T22:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fa586689-28ed-48d3-87fe-e9a16b35d4f1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-02T21:13:14.000Z" - }, - "end": { - "$date": "2021-10-02T22:29:52.000Z" - }, - "events": [ - { - "uuid": "431b3da7-e8bf-4cf6-9602-e257f53fa0e4", - "start": { - "$date": "2021-10-02T21:13:14.000Z" - }, - "end": { - "$date": "2021-10-02T22:29:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "df5fd057-b305-43f5-a00d-406ad7e7c212", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-02T21:22:39.000Z" - }, - "end": { - "$date": "2021-10-02T21:23:04.000Z" - }, - "events": [ - { - "uuid": "b83314b7-9aec-4c02-a5ec-0bd8d9d71f9d", - "start": { - "$date": "2021-10-02T21:22:39.000Z" - }, - "end": { - "$date": "2021-10-02T21:23:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e8a3459a-c7cd-4174-8279-624092233ec4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-02T21:29:26.000Z" - }, - "end": { - "$date": "2021-10-02T21:55:56.000Z" - }, - "events": [ - { - "uuid": "fa100ec3-e0ff-4664-9470-d1887ad1f5b6", - "start": { - "$date": "2021-10-02T21:29:26.000Z" - }, - "end": { - "$date": "2021-10-02T21:55:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7f175f28-27ef-4ffd-a087-b1c97797d7b7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-02T23:25:47.000Z" - }, - "end": { - "$date": "2021-10-03T00:37:03.000Z" - }, - "events": [ - { - "uuid": "ca78ae5a-b7d8-4b94-a5ec-ea46cf705463", - "start": { - "$date": "2021-10-02T23:25:47.000Z" - }, - "end": { - "$date": "2021-10-03T00:37:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "031b7551-4403-4586-8434-399521834dad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-02T23:56:10.000Z" - }, - "end": { - "$date": "2021-10-03T06:52:19.000Z" - }, - "events": [ - { - "uuid": "aeb8aa09-5ff7-4810-9777-fefeeaf9a8ea", - "start": { - "$date": "2021-10-02T23:56:10.000Z" - }, - "end": { - "$date": "2021-10-03T06:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "a838afb9-22e7-4d8f-a0fb-5bbe238d9815", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-03T00:11:02.000Z" - }, - "end": { - "$date": "2021-10-03T01:15:12.000Z" - }, - "events": [ - { - "uuid": "3d3341df-ee32-4b45-82ad-3f014e74ba9d", - "start": { - "$date": "2021-10-03T00:11:02.000Z" - }, - "end": { - "$date": "2021-10-03T01:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f3591fa-ddae-4b1d-8de8-32ea2446fe3c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-03T00:26:13.000Z" - }, - "end": { - "$date": "2021-10-03T00:54:35.000Z" - }, - "events": [ - { - "uuid": "072fa369-eed3-4bbb-bd34-ad02fa7384aa", - "start": { - "$date": "2021-10-03T00:26:13.000Z" - }, - "end": { - "$date": "2021-10-03T00:54:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9f8aa20b-da01-4c0b-9d65-9c740145d1cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-03T01:23:59.000Z" - }, - "end": { - "$date": "2021-10-03T02:03:56.000Z" - }, - "events": [ - { - "uuid": "dca75e04-cd94-4907-8c44-6841e1fbd7dd", - "start": { - "$date": "2021-10-03T01:23:59.000Z" - }, - "end": { - "$date": "2021-10-03T02:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1024d975-fac6-4d01-abb1-91708a96a297", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-03T01:24:26.000Z" - }, - "end": { - "$date": "2021-10-03T03:18:42.000Z" - }, - "events": [ - { - "uuid": "24e477bb-21e7-442e-9a76-a53ba836e8fb", - "start": { - "$date": "2021-10-03T01:24:26.000Z" - }, - "end": { - "$date": "2021-10-03T03:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e2d85b84-a477-4bdc-a2d3-3d5d2f5a00ea", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-03T01:36:42.000Z" - }, - "end": { - "$date": "2021-10-03T03:26:54.000Z" - }, - "events": [ - { - "uuid": "2243b15a-add9-44a3-b922-0a24f08b9143", - "start": { - "$date": "2021-10-03T01:36:42.000Z" - }, - "end": { - "$date": "2021-10-03T03:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "b492174a-3eb5-41a6-a132-163b48741f3f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-03T02:32:25.000Z" - }, - "end": { - "$date": "2021-10-03T02:33:35.000Z" - }, - "events": [ - { - "uuid": "0c037c55-e0f4-428d-b5ab-c210790ad50d", - "start": { - "$date": "2021-10-03T02:32:25.000Z" - }, - "end": { - "$date": "2021-10-03T02:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "1563e7df-e85f-4632-8bce-b0c5ef3046d8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-03T03:58:09.000Z" - }, - "end": { - "$date": "2021-10-03T06:41:33.000Z" - }, - "events": [ - { - "uuid": "68cbf161-bd8a-4b4b-881c-986856676fd2", - "start": { - "$date": "2021-10-03T03:58:09.000Z" - }, - "end": { - "$date": "2021-10-03T04:38:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8ab00e1-1be5-4ce1-b673-bbc3c23290ec", - "start": { - "$date": "2021-10-03T04:38:09.000Z" - }, - "end": { - "$date": "2021-10-03T04:39:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dd39b514-e73d-4ee4-8098-16f31f0a9d97", - "start": { - "$date": "2021-10-03T04:39:09.000Z" - }, - "end": { - "$date": "2021-10-03T06:41:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "6e9b2149-2e01-448e-bc07-4fd58815d96b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-03T04:06:43.000Z" - }, - "end": { - "$date": "2021-10-03T05:29:38.000Z" - }, - "events": [ - { - "uuid": "a8fd9698-4b40-4a5a-9c5f-9d69df71377e", - "start": { - "$date": "2021-10-03T04:06:43.000Z" - }, - "end": { - "$date": "2021-10-03T05:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6bd52a4-9b2d-4ccf-806c-77431d724a86", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-03T05:34:53.000Z" - }, - "end": { - "$date": "2021-10-03T05:57:56.000Z" - }, - "events": [ - { - "uuid": "99034b4e-0516-41ac-82a5-fcc866abeb34", - "start": { - "$date": "2021-10-03T05:34:53.000Z" - }, - "end": { - "$date": "2021-10-03T05:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "5a5427b2-86d7-49d6-a746-11de20a1d2b2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-03T05:49:14.000Z" - }, - "end": { - "$date": "2021-10-03T08:38:14.000Z" - }, - "events": [ - { - "uuid": "a7b4841b-9fcf-43e3-b431-87096efc1962", - "start": { - "$date": "2021-10-03T05:49:14.000Z" - }, - "end": { - "$date": "2021-10-03T08:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae670c83-4a93-430e-8fc7-5da63108323e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-03T06:04:14.000Z" - }, - "end": { - "$date": "2021-10-03T06:36:54.000Z" - }, - "events": [ - { - "uuid": "0559958d-22f8-400f-9cbb-6ff506bbfaef", - "start": { - "$date": "2021-10-03T06:04:14.000Z" - }, - "end": { - "$date": "2021-10-03T06:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f5fd529d-c53b-4bca-9cab-a2830ebca3bb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-03T06:13:44.000Z" - }, - "end": { - "$date": "2021-10-03T09:20:11.000Z" - }, - "events": [ - { - "uuid": "6f5b9fa6-7f40-4ae3-81d0-85ec549bcf2c", - "start": { - "$date": "2021-10-03T06:13:44.000Z" - }, - "end": { - "$date": "2021-10-03T09:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6fa29633-e065-4977-a03b-408d405adb97", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-03T06:15:45.000Z" - }, - "end": { - "$date": "2021-10-03T09:22:25.000Z" - }, - "events": [ - { - "uuid": "04960db2-6d05-489a-99cb-fb243098b985", - "start": { - "$date": "2021-10-03T06:15:45.000Z" - }, - "end": { - "$date": "2021-10-03T09:22:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9dbec0fd-938b-4dbe-9280-ea64dd8acbe0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-03T06:45:56.000Z" - }, - "end": { - "$date": "2021-10-03T07:08:29.000Z" - }, - "events": [ - { - "uuid": "8c6f17f1-dbf7-4e95-bb77-4a3aea7cfac9", - "start": { - "$date": "2021-10-03T06:45:56.000Z" - }, - "end": { - "$date": "2021-10-03T07:08:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a5970e73-3f89-44f5-a2a0-87fb4e7b989e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-03T06:53:45.000Z" - }, - "end": { - "$date": "2021-10-03T08:59:01.000Z" - }, - "events": [ - { - "uuid": "3634948f-58a4-4502-b51f-a0d3fca927d9", - "start": { - "$date": "2021-10-03T06:53:45.000Z" - }, - "end": { - "$date": "2021-10-03T08:59:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44fb3245-28d8-4221-99ca-a6bc6fd93ebd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-03T07:17:52.000Z" - }, - "end": { - "$date": "2021-10-03T07:41:43.000Z" - }, - "events": [ - { - "uuid": "99005334-1307-49a7-a609-ab88c9d1f6df", - "start": { - "$date": "2021-10-03T07:17:52.000Z" - }, - "end": { - "$date": "2021-10-03T07:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "961a0606-184f-42a8-9955-09edde91719b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-03T07:15:29.000Z" - }, - "end": { - "$date": "2021-10-03T08:29:59.000Z" - }, - "events": [ - { - "uuid": "93b6e508-3262-407c-a1e6-c96b12bbb9ef", - "start": { - "$date": "2021-10-03T07:15:29.000Z" - }, - "end": { - "$date": "2021-10-03T08:29:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "848454bf-0b10-473e-b846-9310f1ac2c0e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-03T15:30:27.000Z" - }, - "end": { - "$date": "2021-10-03T16:01:19.000Z" - }, - "events": [ - { - "uuid": "5bf2e151-3ad3-49ca-941d-93e1b7cf8c40", - "start": { - "$date": "2021-10-03T15:30:27.000Z" - }, - "end": { - "$date": "2021-10-03T16:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "cb45cd1b-df7d-4293-a768-560db26f8673", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-03T15:36:35.000Z" - }, - "end": { - "$date": "2021-10-03T16:01:51.000Z" - }, - "events": [ - { - "uuid": "b7fd416b-53c3-461f-b59f-875b74ac6c76", - "start": { - "$date": "2021-10-03T15:36:35.000Z" - }, - "end": { - "$date": "2021-10-03T16:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c31310bf-53b2-44c9-b217-721ea287edb3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-03T16:43:43.000Z" - }, - "end": { - "$date": "2021-10-03T16:50:13.000Z" - }, - "events": [ - { - "uuid": "cedb2f5c-041e-41f1-85cd-4e927a8083f0", - "start": { - "$date": "2021-10-03T16:43:43.000Z" - }, - "end": { - "$date": "2021-10-03T16:50:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "f3e0c1a2-6df1-48c8-a757-5c452d55f30a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-03T18:10:47.000Z" - }, - "end": { - "$date": "2021-10-03T18:24:18.000Z" - }, - "events": [ - { - "uuid": "33b555cd-1a61-4824-b659-84072ccd280c", - "start": { - "$date": "2021-10-03T18:10:47.000Z" - }, - "end": { - "$date": "2021-10-03T18:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "a87dd5c1-1ed0-4303-9f35-4d09ea858256", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-03T18:47:59.000Z" - }, - "end": { - "$date": "2021-10-03T19:40:13.000Z" - }, - "events": [ - { - "uuid": "1715d94a-2175-45d0-81f9-5c3c28071f86", - "start": { - "$date": "2021-10-03T18:47:59.000Z" - }, - "end": { - "$date": "2021-10-03T19:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "445e7bf7-5587-47e7-ad74-94f0989b2f0a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-03T20:04:04.000Z" - }, - "end": { - "$date": "2021-10-03T21:29:06.000Z" - }, - "events": [ - { - "uuid": "dd0bd8cc-038c-4861-819b-dd6595961447", - "start": { - "$date": "2021-10-03T20:04:04.000Z" - }, - "end": { - "$date": "2021-10-03T21:29:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c6f54fb-65be-424c-880a-3b6990b0515c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-03T21:29:34.000Z" - }, - "end": { - "$date": "2021-10-03T21:53:09.000Z" - }, - "events": [ - { - "uuid": "814e0117-ae6b-40aa-a1e3-f552068f1993", - "start": { - "$date": "2021-10-03T21:29:34.000Z" - }, - "end": { - "$date": "2021-10-03T21:53:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "435f2ca2-5c1f-4c2b-9219-11b5878016d6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-03T21:31:17.000Z" - }, - "end": { - "$date": "2021-10-03T21:47:14.000Z" - }, - "events": [ - { - "uuid": "9111ee68-4c19-4c16-9176-2f6d01891551", - "start": { - "$date": "2021-10-03T21:31:17.000Z" - }, - "end": { - "$date": "2021-10-03T21:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09ca2a63-13ad-4d46-b730-7896c3d039bb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-03T21:57:39.000Z" - }, - "end": { - "$date": "2021-10-03T22:34:59.000Z" - }, - "events": [ - { - "uuid": "8baaecdc-8188-4c87-8b4c-96689dd5890f", - "start": { - "$date": "2021-10-03T21:57:39.000Z" - }, - "end": { - "$date": "2021-10-03T22:34:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "5d087a07-2b05-4fc1-969d-e078d085ec4e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-03T21:53:58.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:44.000Z" - }, - "events": [ - { - "uuid": "6931df6e-ac6c-4adf-9bc4-a12e8c137647", - "start": { - "$date": "2021-10-03T21:53:58.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "0200f749-73cf-40f7-8911-f87ed279ed63", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-03T22:24:48.000Z" - }, - "end": { - "$date": "2021-10-04T01:09:31.000Z" - }, - "events": [ - { - "uuid": "de0ea5fa-b82b-4068-b3db-41d133479e74", - "start": { - "$date": "2021-10-03T22:24:48.000Z" - }, - "end": { - "$date": "2021-10-04T01:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6051fc5a-689d-450b-9f0a-d4a6c589457b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-03T22:46:36.000Z" - }, - "end": { - "$date": "2021-10-03T23:18:20.000Z" - }, - "events": [ - { - "uuid": "2a1e8de8-1b7a-4d4f-a61a-60c04e0a6c9f", - "start": { - "$date": "2021-10-03T22:46:36.000Z" - }, - "end": { - "$date": "2021-10-03T23:18:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "d2b6ee69-ee7c-48c7-9b60-ecd12748d2d0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-04T00:38:55.000Z" - }, - "end": { - "$date": "2021-10-04T02:14:39.000Z" - }, - "events": [ - { - "uuid": "a4b5c0de-0eb8-4765-b104-895088554355", - "start": { - "$date": "2021-10-04T00:38:55.000Z" - }, - "end": { - "$date": "2021-10-04T02:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26e41ec5-e394-44ab-b2c2-acd1ffbadb14", - "uuid": "11fd7729-b10e-4298-86f7-0ec6ec75d8aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-04T00:38:58.000Z" - }, - "end": { - "$date": "2021-10-04T02:14:47.000Z" - }, - "events": [ - { - "uuid": "0c44afe1-6ebf-4b6b-bf6b-31a9efdba535", - "start": { - "$date": "2021-10-04T00:38:58.000Z" - }, - "end": { - "$date": "2021-10-04T01:51:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "17f66144-bf2a-4214-b13c-45fab6995609", - "start": { - "$date": "2021-10-04T01:51:58.000Z" - }, - "end": { - "$date": "2021-10-04T01:56:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f7ed5d21-f029-4457-abe8-155525e30b32", - "start": { - "$date": "2021-10-04T01:56:58.000Z" - }, - "end": { - "$date": "2021-10-04T02:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "abf058e8-578f-4982-9cc3-e666abc0ffb6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-04T01:09:03.000Z" - }, - "end": { - "$date": "2021-10-04T04:17:14.000Z" - }, - "events": [ - { - "uuid": "6621b9c4-8ff2-4c34-8f1e-8a7c6cc1d6f4", - "start": { - "$date": "2021-10-04T01:09:03.000Z" - }, - "end": { - "$date": "2021-10-04T04:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afe0df6c-cdc9-4494-8bc0-3c31900dbb8d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-04T01:33:33.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:09.000Z" - }, - "events": [ - { - "uuid": "1a9bba3e-bd1e-4e72-a93e-c882ba89ba39", - "start": { - "$date": "2021-10-04T01:33:33.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f73256b4-c727-4020-8f60-9a6092baa79e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-04T01:33:59.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:14.000Z" - }, - "events": [ - { - "uuid": "fd2e93be-ef14-4fc1-8521-7ad142118033", - "start": { - "$date": "2021-10-04T01:33:59.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "659c30e3-9e97-4147-ac31-3af8cc476f52", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-04T01:33:39.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:09.000Z" - }, - "events": [ - { - "uuid": "d217a12d-579e-44a1-8d68-e1ea0de10b2c", - "start": { - "$date": "2021-10-04T01:33:39.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83066c50-bc8d-46d2-b361-385066bcd737", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-04T01:32:36.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:11.000Z" - }, - "events": [ - { - "uuid": "981aa8ff-7901-4155-993d-07bd209d5d55", - "start": { - "$date": "2021-10-04T01:32:36.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85f66e8f-088c-4e17-bba3-dd5715286136", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-04T01:32:38.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:21.000Z" - }, - "events": [ - { - "uuid": "e0b2af50-0042-46f1-ba22-f9dac2d098f5", - "start": { - "$date": "2021-10-04T01:32:38.000Z" - }, - "end": { - "$date": "2021-10-04T02:06:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c292e7b-b79a-482a-90c2-355a13761b70", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-04T02:21:35.000Z" - }, - "end": { - "$date": "2021-10-04T02:41:30.000Z" - }, - "events": [ - { - "uuid": "3d3bb69a-8dbd-44e9-8c2d-7c539edd5c4a", - "start": { - "$date": "2021-10-04T02:21:35.000Z" - }, - "end": { - "$date": "2021-10-04T02:41:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "573be89a-dee8-46fd-b957-2da35066f192", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-04T04:07:25.000Z" - }, - "end": { - "$date": "2021-10-04T04:10:12.000Z" - }, - "events": [ - { - "uuid": "9234870a-4a17-42b7-b10e-c64a87c5fae7", - "start": { - "$date": "2021-10-04T04:07:25.000Z" - }, - "end": { - "$date": "2021-10-04T04:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bc925cf-243e-4e13-858c-23c8c6072727", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-04T02:21:09.000Z" - }, - "end": { - "$date": "2021-10-04T02:41:35.000Z" - }, - "events": [ - { - "uuid": "a0d79f48-a539-4164-b59d-cf60c6957e05", - "start": { - "$date": "2021-10-04T02:21:09.000Z" - }, - "end": { - "$date": "2021-10-04T02:41:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bdbb87f-b4ee-4a17-9533-48f90eb2b579", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-04T04:06:56.000Z" - }, - "end": { - "$date": "2021-10-04T04:11:18.000Z" - }, - "events": [ - { - "uuid": "4ea5a26b-7d84-4a42-9f97-3abd513f9a82", - "start": { - "$date": "2021-10-04T04:06:56.000Z" - }, - "end": { - "$date": "2021-10-04T04:11:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15c32dfb-7a95-4f9d-9ef0-6cf0bd4af24b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-04T02:20:32.000Z" - }, - "end": { - "$date": "2021-10-04T02:41:32.000Z" - }, - "events": [ - { - "uuid": "9d2584ce-70ac-4126-bb81-a3980723d3b7", - "start": { - "$date": "2021-10-04T02:20:32.000Z" - }, - "end": { - "$date": "2021-10-04T02:41:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "79c1bc23-5ed1-4e76-982e-181e6ebbb5bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-04T02:15:03.000Z" - }, - "end": { - "$date": "2021-10-04T02:18:14.000Z" - }, - "events": [ - { - "uuid": "bdaa5d3b-a7e2-4dea-9ec5-a66fb50413fa", - "start": { - "$date": "2021-10-04T02:15:03.000Z" - }, - "end": { - "$date": "2021-10-04T02:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b9ec891a-07e6-4cc6-8075-b3d9d8f42579", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-04T02:19:03.000Z" - }, - "end": { - "$date": "2021-10-04T05:01:15.000Z" - }, - "events": [ - { - "uuid": "9cf12e0a-0d08-4ae5-a093-ce30a0e23b8b", - "start": { - "$date": "2021-10-04T02:19:03.000Z" - }, - "end": { - "$date": "2021-10-04T05:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "179b388d-f93c-445a-9559-8ab5062f988f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-04T02:19:23.000Z" - }, - "end": { - "$date": "2021-10-04T03:10:51.000Z" - }, - "events": [ - { - "uuid": "17b7c5ac-2dcd-4000-843b-fa3e85c347e8", - "start": { - "$date": "2021-10-04T02:19:23.000Z" - }, - "end": { - "$date": "2021-10-04T03:10:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "c969c67c-4c77-4b8f-b9a0-a407c23a6872", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-04T02:31:52.000Z" - }, - "end": { - "$date": "2021-10-04T03:48:33.000Z" - }, - "events": [ - { - "uuid": "ea7e8bcb-f3dd-48f2-9f2c-335a99c1307f", - "start": { - "$date": "2021-10-04T02:31:52.000Z" - }, - "end": { - "$date": "2021-10-04T03:48:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08d24e81-32b4-4d4d-8602-30106015019c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-04T03:06:31.000Z" - }, - "end": { - "$date": "2021-10-04T03:32:43.000Z" - }, - "events": [ - { - "uuid": "cb761ea2-a47b-49bf-bee7-e2166a3dadc9", - "start": { - "$date": "2021-10-04T03:06:31.000Z" - }, - "end": { - "$date": "2021-10-04T03:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ea0161e-3c4c-40d9-b3e1-f5bf2620b80c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-04T03:06:16.000Z" - }, - "end": { - "$date": "2021-10-04T03:32:36.000Z" - }, - "events": [ - { - "uuid": "b1f3c66b-8554-465a-93ab-cab1e04d36dc", - "start": { - "$date": "2021-10-04T03:06:16.000Z" - }, - "end": { - "$date": "2021-10-04T03:32:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5a226ce-0418-4bb8-87f5-c17672d23cb6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-04T03:05:47.000Z" - }, - "end": { - "$date": "2021-10-04T03:32:42.000Z" - }, - "events": [ - { - "uuid": "4250e1aa-f0a5-47ca-bc83-c6d8ee9fae83", - "start": { - "$date": "2021-10-04T03:05:47.000Z" - }, - "end": { - "$date": "2021-10-04T03:32:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8dd97188-a0ab-4687-81c0-6e2ddbcf6424", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-04T03:22:05.000Z" - }, - "end": { - "$date": "2021-10-04T05:01:18.000Z" - }, - "events": [ - { - "uuid": "f7188025-c120-4022-a62e-f4689153aba8", - "start": { - "$date": "2021-10-04T03:22:05.000Z" - }, - "end": { - "$date": "2021-10-04T05:01:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bc5413c-c738-4111-ac0e-5eaca300f123", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-04T04:07:02.000Z" - }, - "end": { - "$date": "2021-10-04T04:10:19.000Z" - }, - "events": [ - { - "uuid": "136b2b59-5c9c-4fbd-88f4-83651398d3b8", - "start": { - "$date": "2021-10-04T04:07:02.000Z" - }, - "end": { - "$date": "2021-10-04T04:10:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aac94cb-d670-44ce-bfff-766277ca26f6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-04T03:45:22.000Z" - }, - "end": { - "$date": "2021-10-04T04:07:00.000Z" - }, - "events": [ - { - "uuid": "59fbd4e2-ccbb-4b5e-9e36-f98743f61f56", - "start": { - "$date": "2021-10-04T03:45:22.000Z" - }, - "end": { - "$date": "2021-10-04T04:07:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d20a993-b0ea-4681-a96f-bf2ce133df94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-04T03:45:02.000Z" - }, - "end": { - "$date": "2021-10-04T04:06:58.000Z" - }, - "events": [ - { - "uuid": "6d7df36e-5e7f-4742-887a-92c360644945", - "start": { - "$date": "2021-10-04T03:45:02.000Z" - }, - "end": { - "$date": "2021-10-04T04:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "7138346a-bc1c-4cec-97dc-f756f1ff6b11", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T04:31:42.000Z" - }, - "end": { - "$date": "2021-10-04T08:32:04.000Z" - }, - "events": [ - { - "uuid": "9a81c3df-700e-45c5-9f94-d9920f1eff83", - "start": { - "$date": "2021-10-04T04:31:42.000Z" - }, - "end": { - "$date": "2021-10-04T08:32:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "5711116d-c542-4182-8324-9e7124fcd6c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-04T04:40:19.000Z" - }, - "end": { - "$date": "2021-10-04T04:53:55.000Z" - }, - "events": [ - { - "uuid": "9dfe03ab-1176-4f94-8578-28811d89bef0", - "start": { - "$date": "2021-10-04T04:40:19.000Z" - }, - "end": { - "$date": "2021-10-04T04:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8784b9b7-7192-4b96-b2ca-dd4683ac13cf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T19:27:39.000Z" - }, - "end": { - "$date": "2021-10-04T19:49:26.000Z" - }, - "events": [ - { - "uuid": "059a1228-10d3-4ab1-91ac-c0e2ef3ba42e", - "start": { - "$date": "2021-10-04T19:27:39.000Z" - }, - "end": { - "$date": "2021-10-04T19:49:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b37c54f4-ecb1-4776-837d-af701a404faf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-04T19:38:31.000Z" - }, - "end": { - "$date": "2021-10-04T20:03:51.000Z" - }, - "events": [ - { - "uuid": "b9923f2d-2b88-4433-b3b6-f08c669cc2b7", - "start": { - "$date": "2021-10-04T19:38:31.000Z" - }, - "end": { - "$date": "2021-10-04T20:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ad6fb33-7dfe-4d97-b2a8-a5d3e8a09fbf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-04T19:40:29.000Z" - }, - "end": { - "$date": "2021-10-04T20:01:04.000Z" - }, - "events": [ - { - "uuid": "df7b2059-48f6-4441-8e86-da9af7583fbb", - "start": { - "$date": "2021-10-04T19:40:29.000Z" - }, - "end": { - "$date": "2021-10-04T20:01:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2be66f88-20fa-4bfd-a989-c6bfa9cdd2fc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T19:49:30.000Z" - }, - "end": { - "$date": "2021-10-04T19:51:06.000Z" - }, - "events": [ - { - "uuid": "f4daceaa-7a91-4947-8153-5443b7a1b4a3", - "start": { - "$date": "2021-10-04T19:49:30.000Z" - }, - "end": { - "$date": "2021-10-04T19:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48840b18-2a1c-428f-8f8d-783f85104294", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-04T20:16:22.000Z" - }, - "end": { - "$date": "2021-10-04T20:27:22.000Z" - }, - "events": [ - { - "uuid": "00f7d580-4104-4e06-8bb3-25129a8edf94", - "start": { - "$date": "2021-10-04T20:16:22.000Z" - }, - "end": { - "$date": "2021-10-04T20:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02773a11-e5ec-463f-8885-f8d05f2a08e4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-04T20:17:30.000Z" - }, - "end": { - "$date": "2021-10-04T20:27:30.000Z" - }, - "events": [ - { - "uuid": "633569ea-695f-4cb2-a5ef-c1ec38830ccb", - "start": { - "$date": "2021-10-04T20:17:30.000Z" - }, - "end": { - "$date": "2021-10-04T20:27:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fa68d03-4ae7-4aac-a873-97b7aba3be07", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T20:14:41.000Z" - }, - "end": { - "$date": "2021-10-04T20:27:26.000Z" - }, - "events": [ - { - "uuid": "9b9e2e99-7ba5-46c5-8197-6527a6c30eb2", - "start": { - "$date": "2021-10-04T20:14:41.000Z" - }, - "end": { - "$date": "2021-10-04T20:27:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5ba3e6c-e4bd-4dc0-8848-e80c6267a9d2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T20:32:37.000Z" - }, - "end": { - "$date": "2021-10-04T20:45:58.000Z" - }, - "events": [ - { - "uuid": "147254a2-3140-4c9d-9b1a-9a59335058b8", - "start": { - "$date": "2021-10-04T20:32:37.000Z" - }, - "end": { - "$date": "2021-10-04T20:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75bb7d23-fdfb-4f0b-97fb-b421f1f7f95f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T20:47:43.000Z" - }, - "end": { - "$date": "2021-10-04T21:03:05.000Z" - }, - "events": [ - { - "uuid": "a77c4313-2709-49df-912a-ef5a261fc005", - "start": { - "$date": "2021-10-04T20:47:43.000Z" - }, - "end": { - "$date": "2021-10-04T21:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3658308d-17b1-47df-9bc0-b108dc601577", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T21:08:01.000Z" - }, - "end": { - "$date": "2021-10-04T21:26:31.000Z" - }, - "events": [ - { - "uuid": "2fb43e20-8827-41e6-9ecd-6b862f869670", - "start": { - "$date": "2021-10-04T21:08:01.000Z" - }, - "end": { - "$date": "2021-10-04T21:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc90db60-93dc-4e42-a1c2-846c8b64aff1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T21:29:41.000Z" - }, - "end": { - "$date": "2021-10-04T21:59:45.000Z" - }, - "events": [ - { - "uuid": "56544191-0752-4a95-ad11-fc6a51fd3afc", - "start": { - "$date": "2021-10-04T21:29:41.000Z" - }, - "end": { - "$date": "2021-10-04T21:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41a4ddb1-a047-4a8b-85ca-1b28bac03caf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T22:02:05.000Z" - }, - "end": { - "$date": "2021-10-04T22:14:26.000Z" - }, - "events": [ - { - "uuid": "2af03628-796e-4ea6-881c-ef068149974f", - "start": { - "$date": "2021-10-04T22:02:05.000Z" - }, - "end": { - "$date": "2021-10-04T22:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd055715-a3d1-48d2-a8a2-25348bd70235", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T22:16:32.000Z" - }, - "end": { - "$date": "2021-10-04T22:44:20.000Z" - }, - "events": [ - { - "uuid": "e34d9971-9de1-4946-bc59-51feb4878176", - "start": { - "$date": "2021-10-04T22:16:32.000Z" - }, - "end": { - "$date": "2021-10-04T22:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eda747f-c664-4293-93f0-53dfc32c95e4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T23:15:29.000Z" - }, - "end": { - "$date": "2021-10-04T23:31:36.000Z" - }, - "events": [ - { - "uuid": "193648d5-3047-4ae9-a062-c145722d9144", - "start": { - "$date": "2021-10-04T23:15:29.000Z" - }, - "end": { - "$date": "2021-10-04T23:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14af6bb9-0cbd-4cf4-944d-276a1bc215c5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T23:34:12.000Z" - }, - "end": { - "$date": "2021-10-04T23:50:22.000Z" - }, - "events": [ - { - "uuid": "91c013d2-319c-4252-8927-43cf5806317f", - "start": { - "$date": "2021-10-04T23:34:12.000Z" - }, - "end": { - "$date": "2021-10-04T23:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "612c6482-2b02-4283-a27b-d58eee875a99", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-04T23:53:34.000Z" - }, - "end": { - "$date": "2021-10-05T00:15:23.000Z" - }, - "events": [ - { - "uuid": "7a7b406b-3262-497f-b0ff-f3b5b3f2fd66", - "start": { - "$date": "2021-10-04T23:53:34.000Z" - }, - "end": { - "$date": "2021-10-05T00:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "784ba24b-ab04-45f1-9db6-646c6a03f64f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-05T00:23:57.000Z" - }, - "end": { - "$date": "2021-10-05T04:06:17.000Z" - }, - "events": [ - { - "uuid": "1d468ae2-129f-42d6-a388-1daad30612c1", - "start": { - "$date": "2021-10-05T00:23:57.000Z" - }, - "end": { - "$date": "2021-10-05T01:22:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "af05d6c2-1bb5-42d7-9963-c84c4c9400da", - "start": { - "$date": "2021-10-05T01:22:57.000Z" - }, - "end": { - "$date": "2021-10-05T01:27:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e03c3343-b291-4b2a-9638-ab39e557291e", - "start": { - "$date": "2021-10-05T01:27:57.000Z" - }, - "end": { - "$date": "2021-10-05T04:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "66d2ec8e-dab2-458b-9c5c-931b3c45998f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-05T00:54:46.000Z" - }, - "end": { - "$date": "2021-10-05T02:14:15.000Z" - }, - "events": [ - { - "uuid": "3f2f4d75-e653-4079-b3df-597aa20f2a6b", - "start": { - "$date": "2021-10-05T00:54:46.000Z" - }, - "end": { - "$date": "2021-10-05T02:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb2c0464-5b35-41f4-948b-b940e832d06b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T02:03:29.000Z" - }, - "end": { - "$date": "2021-10-05T02:16:45.000Z" - }, - "events": [ - { - "uuid": "e9cb01fa-520e-4019-a3f6-f1a5301f8e55", - "start": { - "$date": "2021-10-05T02:03:29.000Z" - }, - "end": { - "$date": "2021-10-05T02:16:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43a9b432-d984-4901-b408-18efde684b30", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T02:20:10.000Z" - }, - "end": { - "$date": "2021-10-05T02:39:30.000Z" - }, - "events": [ - { - "uuid": "1564e857-272e-41aa-90f9-68e43901df35", - "start": { - "$date": "2021-10-05T02:20:10.000Z" - }, - "end": { - "$date": "2021-10-05T02:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eec16102-a772-46c4-a1e9-224c33ee0279", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-05T02:31:43.000Z" - }, - "end": { - "$date": "2021-10-05T04:16:44.000Z" - }, - "events": [ - { - "uuid": "c846491b-f490-45d2-b4aa-4cf7c61dbd0f", - "start": { - "$date": "2021-10-05T02:31:43.000Z" - }, - "end": { - "$date": "2021-10-05T04:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4eccf55-bf23-4b32-b122-a4e753385637", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-05T02:43:08.000Z" - }, - "end": { - "$date": "2021-10-05T03:19:21.000Z" - }, - "events": [ - { - "uuid": "e4825b77-e0ed-4d50-ab61-c038a99f7c6d", - "start": { - "$date": "2021-10-05T02:43:08.000Z" - }, - "end": { - "$date": "2021-10-05T03:19:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea744a9f-7934-4a04-8f52-c540d083bc04", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T03:10:23.000Z" - }, - "end": { - "$date": "2021-10-05T03:30:59.000Z" - }, - "events": [ - { - "uuid": "1d728b57-e877-45b6-a0a4-a1a5db5fde0e", - "start": { - "$date": "2021-10-05T03:10:23.000Z" - }, - "end": { - "$date": "2021-10-05T03:30:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "115c3b2e-3433-4cca-8510-fc141a84452e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-05T03:01:43.000Z" - }, - "end": { - "$date": "2021-10-05T04:15:49.000Z" - }, - "events": [ - { - "uuid": "820302ed-33fa-404c-9bba-cb88be3635eb", - "start": { - "$date": "2021-10-05T03:01:43.000Z" - }, - "end": { - "$date": "2021-10-05T04:15:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b08d7d1-4b40-40e3-b1c3-2b5a5870dc8d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-05T03:10:25.000Z" - }, - "end": { - "$date": "2021-10-05T03:25:47.000Z" - }, - "events": [ - { - "uuid": "adffd0e0-eb6f-4842-8da0-050c917cffba", - "start": { - "$date": "2021-10-05T03:10:25.000Z" - }, - "end": { - "$date": "2021-10-05T03:25:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3d567ea-50cf-4a4c-bd95-9acfcd506d14", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-05T03:27:48.000Z" - }, - "end": { - "$date": "2021-10-05T03:56:25.000Z" - }, - "events": [ - { - "uuid": "1ef26fa2-9614-486c-87b2-0e2d0a56a146", - "start": { - "$date": "2021-10-05T03:27:48.000Z" - }, - "end": { - "$date": "2021-10-05T03:56:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fe2bb774-cba2-4422-8f76-d6dffdce0895", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-05T03:41:23.000Z" - }, - "end": { - "$date": "2021-10-05T04:30:45.000Z" - }, - "events": [ - { - "uuid": "9dc10f18-5928-44ce-8792-a144dbde3177", - "start": { - "$date": "2021-10-05T03:41:23.000Z" - }, - "end": { - "$date": "2021-10-05T04:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c77d207-6c96-43be-b98a-824bc82213f8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-05T03:48:05.000Z" - }, - "end": { - "$date": "2021-10-05T06:32:10.000Z" - }, - "events": [ - { - "uuid": "c33f6b7f-1d5a-4ab1-8db6-7c5213606909", - "start": { - "$date": "2021-10-05T03:48:05.000Z" - }, - "end": { - "$date": "2021-10-05T06:32:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "421c90ab-44c2-4ea8-838c-ca0956088976", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-05T03:51:42.000Z" - }, - "end": { - "$date": "2021-10-05T05:16:00.000Z" - }, - "events": [ - { - "uuid": "7cea0d29-b327-403e-9b01-5906ff54cb8a", - "start": { - "$date": "2021-10-05T03:51:42.000Z" - }, - "end": { - "$date": "2021-10-05T05:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3aadbeb5-58c9-45ca-b38a-219f4a60d776", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-05T03:56:35.000Z" - }, - "end": { - "$date": "2021-10-05T06:26:53.000Z" - }, - "events": [ - { - "uuid": "e3b70fc2-9087-4f39-8c18-468e7d443283", - "start": { - "$date": "2021-10-05T03:56:35.000Z" - }, - "end": { - "$date": "2021-10-05T06:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4204ca52-491a-4860-a0f4-ed5b540c101e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-05T04:01:30.000Z" - }, - "end": { - "$date": "2021-10-05T04:08:50.000Z" - }, - "events": [ - { - "uuid": "c65feedd-1420-42cb-9892-2f5582eb015a", - "start": { - "$date": "2021-10-05T04:01:30.000Z" - }, - "end": { - "$date": "2021-10-05T04:08:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "03a004f4-2782-4004-a1e6-e7bb0e1ae041", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-05T04:16:03.000Z" - }, - "end": { - "$date": "2021-10-05T05:31:51.000Z" - }, - "events": [ - { - "uuid": "19b50a2d-c40c-44a3-8e27-f3ead5485094", - "start": { - "$date": "2021-10-05T04:16:03.000Z" - }, - "end": { - "$date": "2021-10-05T05:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "67bd2f5c-d35a-4bcc-bf1a-e9e5860ea313", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-05T04:37:29.000Z" - }, - "end": { - "$date": "2021-10-05T06:00:43.000Z" - }, - "events": [ - { - "uuid": "0a178650-8d4a-46f0-9e4b-f665015c76fd", - "start": { - "$date": "2021-10-05T04:37:29.000Z" - }, - "end": { - "$date": "2021-10-05T06:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c8e0338e-6a3e-42d1-bb7b-a334af8c35f4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-05T05:39:32.000Z" - }, - "end": { - "$date": "2021-10-05T06:00:33.000Z" - }, - "events": [ - { - "uuid": "f30bc128-b96d-470a-bdee-8e37ebd4d68c", - "start": { - "$date": "2021-10-05T05:39:32.000Z" - }, - "end": { - "$date": "2021-10-05T06:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d09c8fe-8511-4e9c-a554-58055b4839ee", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-05T06:05:04.000Z" - }, - "end": { - "$date": "2021-10-05T06:22:59.000Z" - }, - "events": [ - { - "uuid": "12f41f0e-56ff-40e1-a6e1-af5946e6688f", - "start": { - "$date": "2021-10-05T06:05:04.000Z" - }, - "end": { - "$date": "2021-10-05T06:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "235ac2b6-c9d2-49ac-910d-cc052f100500", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-05T06:31:18.000Z" - }, - "end": { - "$date": "2021-10-05T06:42:53.000Z" - }, - "events": [ - { - "uuid": "d88ab206-fbc4-4144-82c8-17f28da9d5a4", - "start": { - "$date": "2021-10-05T06:31:18.000Z" - }, - "end": { - "$date": "2021-10-05T06:42:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "afa305e8-b28c-4a97-88cf-34dc9fe94818", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-05T06:17:13.000Z" - }, - "end": { - "$date": "2021-10-05T07:11:27.000Z" - }, - "events": [ - { - "uuid": "49299ed5-d2f4-4e91-b74e-5921dfb5b634", - "start": { - "$date": "2021-10-05T06:17:13.000Z" - }, - "end": { - "$date": "2021-10-05T07:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da6b51e4-9f90-4914-801d-c26e0d3f49d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-05T06:31:08.000Z" - }, - "end": { - "$date": "2021-10-05T06:42:49.000Z" - }, - "events": [ - { - "uuid": "fe0ab59b-b3bf-4046-b3d9-9ab47b3b15ba", - "start": { - "$date": "2021-10-05T06:31:08.000Z" - }, - "end": { - "$date": "2021-10-05T06:42:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52da77b4-fc4a-4991-8c46-cbeec68941b1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-05T06:31:04.000Z" - }, - "end": { - "$date": "2021-10-05T06:42:50.000Z" - }, - "events": [ - { - "uuid": "129990d4-fcde-4f1b-8ea0-4aa22b800085", - "start": { - "$date": "2021-10-05T06:31:04.000Z" - }, - "end": { - "$date": "2021-10-05T06:42:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7140fc86-6409-4786-9078-3d0b3ab71c49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-05T06:46:28.000Z" - }, - "end": { - "$date": "2021-10-05T07:04:17.000Z" - }, - "events": [ - { - "uuid": "aed6aa7b-add4-4243-9f70-3d9fed41497b", - "start": { - "$date": "2021-10-05T06:46:28.000Z" - }, - "end": { - "$date": "2021-10-05T07:04:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33b533b9-eeb9-4a79-8e27-4471be40b183", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-05T06:45:24.000Z" - }, - "end": { - "$date": "2021-10-05T07:04:11.000Z" - }, - "events": [ - { - "uuid": "c6f54c52-ad2a-47b3-bd56-8e6b7eb3bf4e", - "start": { - "$date": "2021-10-05T06:45:24.000Z" - }, - "end": { - "$date": "2021-10-05T07:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b79b38e-02f4-4758-8533-4fb1089ec08c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-05T06:45:25.000Z" - }, - "end": { - "$date": "2021-10-05T07:04:10.000Z" - }, - "events": [ - { - "uuid": "d1f1616a-acdb-41f2-bc82-434544462124", - "start": { - "$date": "2021-10-05T06:45:25.000Z" - }, - "end": { - "$date": "2021-10-05T07:04:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5cef4dc2-7fb7-4148-844e-b57ee5dd293d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-05T07:06:49.000Z" - }, - "end": { - "$date": "2021-10-05T07:23:00.000Z" - }, - "events": [ - { - "uuid": "0a5ebc44-b777-4d7d-b8c4-37f790088a3b", - "start": { - "$date": "2021-10-05T07:06:49.000Z" - }, - "end": { - "$date": "2021-10-05T07:23:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb4bd67d-93eb-4170-b643-9e926ed6341f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-05T07:06:50.000Z" - }, - "end": { - "$date": "2021-10-05T07:22:56.000Z" - }, - "events": [ - { - "uuid": "748c44a2-5a22-49fc-87ae-6443fc12fd08", - "start": { - "$date": "2021-10-05T07:06:50.000Z" - }, - "end": { - "$date": "2021-10-05T07:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9ad08aa-6561-41ea-99a1-c45ceba61a18", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-05T07:06:50.000Z" - }, - "end": { - "$date": "2021-10-05T07:22:55.000Z" - }, - "events": [ - { - "uuid": "f797be41-3a53-4ff0-a4b5-a8508a86c829", - "start": { - "$date": "2021-10-05T07:06:50.000Z" - }, - "end": { - "$date": "2021-10-05T07:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1055afda-904f-455e-a383-9865cbecf35d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-05T07:26:40.000Z" - }, - "end": { - "$date": "2021-10-05T07:48:51.000Z" - }, - "events": [ - { - "uuid": "a3251d17-d162-4a65-9b7c-9e820d1e3464", - "start": { - "$date": "2021-10-05T07:26:40.000Z" - }, - "end": { - "$date": "2021-10-05T07:48:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6aae475-2961-4672-bb2c-3cd214d378c2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-05T07:26:35.000Z" - }, - "end": { - "$date": "2021-10-05T07:48:57.000Z" - }, - "events": [ - { - "uuid": "0b42e10b-fc4e-469f-aeaf-62c488e27c90", - "start": { - "$date": "2021-10-05T07:26:35.000Z" - }, - "end": { - "$date": "2021-10-05T07:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4727d57f-7c8f-44b6-9666-3485d622d7b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-05T07:26:36.000Z" - }, - "end": { - "$date": "2021-10-05T07:48:42.000Z" - }, - "events": [ - { - "uuid": "d76d8653-fe99-45ac-964d-dbadbb6436c7", - "start": { - "$date": "2021-10-05T07:26:36.000Z" - }, - "end": { - "$date": "2021-10-05T07:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "68642519-c5af-4096-93ec-d7e3e18a5e66", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-10-05T14:10:05.000Z" - }, - "end": { - "$date": "2021-10-05T14:19:49.000Z" - }, - "events": [ - { - "uuid": "fb4e2815-cf19-4a5d-9952-b8ba025a46e9", - "start": { - "$date": "2021-10-05T14:10:05.000Z" - }, - "end": { - "$date": "2021-10-05T14:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17abbe2b-10b8-4be0-b5ac-623994919973", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T15:08:41.000Z" - }, - "end": { - "$date": "2021-10-05T15:29:15.000Z" - }, - "events": [ - { - "uuid": "0dfe6499-da60-45ef-9c26-e368a092acf3", - "start": { - "$date": "2021-10-05T15:08:41.000Z" - }, - "end": { - "$date": "2021-10-05T15:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbc73b57-72eb-469c-8143-444ebbfa6126", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T15:29:33.000Z" - }, - "end": { - "$date": "2021-10-05T17:53:46.000Z" - }, - "events": [ - { - "uuid": "ef115ee6-384c-42f1-a835-210aa50e738e", - "start": { - "$date": "2021-10-05T15:29:33.000Z" - }, - "end": { - "$date": "2021-10-05T17:20:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3bc434d9-26a0-48cb-a327-6e40693b33c2", - "start": { - "$date": "2021-10-05T17:20:33.000Z" - }, - "end": { - "$date": "2021-10-05T17:34:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a515ff44-60e3-455a-81fc-4980432bce92", - "start": { - "$date": "2021-10-05T17:34:33.000Z" - }, - "end": { - "$date": "2021-10-05T17:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a178c4c5-f378-4dba-a5a6-dcef5dd0ff08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-05T19:21:08.000Z" - }, - "end": { - "$date": "2021-10-05T20:17:46.000Z" - }, - "events": [ - { - "uuid": "c28b391b-647f-47b7-a3c9-ca74c830648a", - "start": { - "$date": "2021-10-05T19:21:08.000Z" - }, - "end": { - "$date": "2021-10-05T20:17:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4632c0eb-3687-42b9-a610-ded908d5f1bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T19:27:09.000Z" - }, - "end": { - "$date": "2021-10-05T19:38:28.000Z" - }, - "events": [ - { - "uuid": "3cf159f0-5800-4d80-ab6e-91b32269035b", - "start": { - "$date": "2021-10-05T19:27:09.000Z" - }, - "end": { - "$date": "2021-10-05T19:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2f4fb42-f1b3-4149-8c2b-008cf0b73266", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-05T19:42:20.000Z" - }, - "end": { - "$date": "2021-10-05T20:00:10.000Z" - }, - "events": [ - { - "uuid": "80a7668a-ec64-4de6-baf4-a3deff180655", - "start": { - "$date": "2021-10-05T19:42:20.000Z" - }, - "end": { - "$date": "2021-10-05T20:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "caa199da-bb3a-497d-bab9-6507a43ead98", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-05T21:48:32.000Z" - }, - "end": { - "$date": "2021-10-05T21:51:03.000Z" - }, - "events": [ - { - "uuid": "7e2adb25-a497-4ca3-a3e3-f5f47a78a5c6", - "start": { - "$date": "2021-10-05T21:48:32.000Z" - }, - "end": { - "$date": "2021-10-05T21:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "6cb81bf6-c378-43a3-b0d4-7c0b51eb3d0a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-05T22:45:10.000Z" - }, - "end": { - "$date": "2021-10-06T00:32:40.000Z" - }, - "events": [ - { - "uuid": "f42eaeeb-1382-4f37-9936-a05398833d37", - "start": { - "$date": "2021-10-05T22:45:10.000Z" - }, - "end": { - "$date": "2021-10-06T00:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "3812e27e-5b91-4192-82fb-b4c3dec6315e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-05T23:12:45.000Z" - }, - "end": { - "$date": "2021-10-06T00:52:43.000Z" - }, - "events": [ - { - "uuid": "7e46e680-e0f4-4fd5-8036-4f11b656d67f", - "start": { - "$date": "2021-10-05T23:12:45.000Z" - }, - "end": { - "$date": "2021-10-06T00:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c6f67f6a-76b4-44ab-8442-45a44509f759", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-06T00:05:05.000Z" - }, - "end": { - "$date": "2021-10-06T05:08:30.000Z" - }, - "events": [ - { - "uuid": "20ceda84-b62b-40a6-84c3-77829853a92f", - "start": { - "$date": "2021-10-06T00:05:05.000Z" - }, - "end": { - "$date": "2021-10-06T05:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "fbb04211-c475-48a9-8d78-bb69d7388aa4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-06T00:51:17.000Z" - }, - "end": { - "$date": "2021-10-06T00:56:18.000Z" - }, - "events": [ - { - "uuid": "2067359c-4556-4dea-b96b-6db6d1037950", - "start": { - "$date": "2021-10-06T00:51:17.000Z" - }, - "end": { - "$date": "2021-10-06T00:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe28db3a-c584-40e7-9964-8e9d93edb516", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-06T01:26:11.000Z" - }, - "end": { - "$date": "2021-10-06T01:45:41.000Z" - }, - "events": [ - { - "uuid": "ec76d655-d220-4d2c-8bd5-9eb119264aae", - "start": { - "$date": "2021-10-06T01:26:11.000Z" - }, - "end": { - "$date": "2021-10-06T01:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "f768c387-5087-4933-85d2-c075de788558", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-06T01:52:24.000Z" - }, - "end": { - "$date": "2021-10-06T02:04:56.000Z" - }, - "events": [ - { - "uuid": "067ec883-2b31-490c-bbf5-8a4b028099f4", - "start": { - "$date": "2021-10-06T01:52:24.000Z" - }, - "end": { - "$date": "2021-10-06T02:04:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "abc4f2da-14c5-4f5e-b9af-1c5ffc63d24b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-06T02:33:52.000Z" - }, - "end": { - "$date": "2021-10-06T04:15:20.000Z" - }, - "events": [ - { - "uuid": "87a0d7d8-ef92-4911-aec6-77236f79837d", - "start": { - "$date": "2021-10-06T02:33:52.000Z" - }, - "end": { - "$date": "2021-10-06T04:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "390bfc14-0f5b-4c2a-90b2-5f62133d0de1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T02:36:54.000Z" - }, - "end": { - "$date": "2021-10-06T03:00:01.000Z" - }, - "events": [ - { - "uuid": "e1418be9-2ba9-4d7c-87d0-cede29f71c82", - "start": { - "$date": "2021-10-06T02:36:54.000Z" - }, - "end": { - "$date": "2021-10-06T03:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "04d287e2-c06a-4559-b1f5-4ceb3d519437", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-06T02:34:47.000Z" - }, - "end": { - "$date": "2021-10-06T04:31:16.000Z" - }, - "events": [ - { - "uuid": "370ab014-6155-4b1b-a2f4-a834ddbd3b72", - "start": { - "$date": "2021-10-06T02:34:47.000Z" - }, - "end": { - "$date": "2021-10-06T04:31:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "e5e0d123-039c-4b92-aaf9-db40cb548c8a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-06T02:35:48.000Z" - }, - "end": { - "$date": "2021-10-06T04:28:21.000Z" - }, - "events": [ - { - "uuid": "3b7f9e60-5369-45b5-af8e-3355083eba00", - "start": { - "$date": "2021-10-06T02:35:48.000Z" - }, - "end": { - "$date": "2021-10-06T04:28:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d355231-4673-4bc6-bebd-4291bde76048", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T03:02:12.000Z" - }, - "end": { - "$date": "2021-10-06T03:20:17.000Z" - }, - "events": [ - { - "uuid": "3524bb79-a11d-417c-8c69-4d2df891cd9a", - "start": { - "$date": "2021-10-06T03:02:12.000Z" - }, - "end": { - "$date": "2021-10-06T03:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2dbb34f-5b67-4716-9764-36f5b8fb4350", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T03:22:07.000Z" - }, - "end": { - "$date": "2021-10-06T03:46:12.000Z" - }, - "events": [ - { - "uuid": "4970f6dc-c49d-4841-b516-c784e695b5ea", - "start": { - "$date": "2021-10-06T03:22:07.000Z" - }, - "end": { - "$date": "2021-10-06T03:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cb8b026-64b7-4ab0-bcfa-c3424a05a495", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T03:55:53.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:53.000Z" - }, - "events": [ - { - "uuid": "1fedae12-d8be-4f6d-ba7a-bae3ad4df3ce", - "start": { - "$date": "2021-10-06T03:55:53.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58f42da3-9e7d-422a-a189-8f1641dfd190", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-06T03:56:12.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:55.000Z" - }, - "events": [ - { - "uuid": "d1205ff0-97c3-40a3-af1a-381290db7b19", - "start": { - "$date": "2021-10-06T03:56:12.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45847b95-e365-4b0f-8a95-d49ef18cf403", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-06T03:56:48.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:48.000Z" - }, - "events": [ - { - "uuid": "75d62c7a-1ee4-4249-b2d2-2caa74cd0170", - "start": { - "$date": "2021-10-06T03:56:48.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f715cbeb-a4d7-4f95-8412-5dd29ff47d32", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-06T03:55:52.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:52.000Z" - }, - "events": [ - { - "uuid": "ddfd0a3f-7158-485e-b6e3-b3f9849a1b95", - "start": { - "$date": "2021-10-06T03:55:52.000Z" - }, - "end": { - "$date": "2021-10-06T04:16:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ada089c1-0acf-4041-9990-eb2635d7fbb4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T04:19:44.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:14.000Z" - }, - "events": [ - { - "uuid": "c3a23d19-d46f-4d91-82dd-1a6ee1bedab8", - "start": { - "$date": "2021-10-06T04:19:44.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31508bcb-a25e-4acd-b8bf-1d86c5c2612e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-06T04:19:09.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:14.000Z" - }, - "events": [ - { - "uuid": "322bf074-3ec5-4eed-9882-ba5baa81b1c5", - "start": { - "$date": "2021-10-06T04:19:09.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5daeabe-ff24-44c0-9faa-0ab93b03ad7d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-06T04:20:17.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:12.000Z" - }, - "events": [ - { - "uuid": "95cdf245-f5fc-4e1d-a5b9-83ee40915863", - "start": { - "$date": "2021-10-06T04:20:17.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b7176db-c0a9-44c7-a7fc-5cf9727f262f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-06T04:19:07.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:13.000Z" - }, - "events": [ - { - "uuid": "25fbaf4b-7289-4b07-b6b5-827986503da3", - "start": { - "$date": "2021-10-06T04:19:07.000Z" - }, - "end": { - "$date": "2021-10-06T04:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "205d7618-60aa-4f9d-8a8d-f7c8e0056a55", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T04:45:04.000Z" - }, - "end": { - "$date": "2021-10-06T05:06:59.000Z" - }, - "events": [ - { - "uuid": "2638eadc-b188-4bf5-8cc3-e97f7ebbd885", - "start": { - "$date": "2021-10-06T04:45:04.000Z" - }, - "end": { - "$date": "2021-10-06T05:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a7d99f4-7084-4a85-881d-30611d7fd545", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-06T04:40:47.000Z" - }, - "end": { - "$date": "2021-10-06T04:42:13.000Z" - }, - "events": [ - { - "uuid": "5a5844fc-464d-4aa8-babf-c5b4e0c7cad7", - "start": { - "$date": "2021-10-06T04:40:47.000Z" - }, - "end": { - "$date": "2021-10-06T04:42:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f855f62-3ba6-4458-8123-c260af0f6f4f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-06T04:40:47.000Z" - }, - "end": { - "$date": "2021-10-06T04:42:12.000Z" - }, - "events": [ - { - "uuid": "e3661186-d590-4faa-9caf-db7cf9a98e15", - "start": { - "$date": "2021-10-06T04:40:47.000Z" - }, - "end": { - "$date": "2021-10-06T04:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c04e7ddf-da78-4e38-a909-3023391b62a7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-06T04:45:39.000Z" - }, - "end": { - "$date": "2021-10-06T05:06:54.000Z" - }, - "events": [ - { - "uuid": "cb1bd785-670c-4134-ae17-37e0b6b41880", - "start": { - "$date": "2021-10-06T04:45:39.000Z" - }, - "end": { - "$date": "2021-10-06T05:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f348eb4f-abaa-497e-992d-abbf63a02be9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-06T04:45:34.000Z" - }, - "end": { - "$date": "2021-10-06T05:07:03.000Z" - }, - "events": [ - { - "uuid": "2ebf304f-6038-4e40-8f0a-7128eb5c5aed", - "start": { - "$date": "2021-10-06T04:45:34.000Z" - }, - "end": { - "$date": "2021-10-06T05:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fb3d70c-c25f-47c1-a5b1-e496f9361285", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-06T04:45:28.000Z" - }, - "end": { - "$date": "2021-10-06T05:06:54.000Z" - }, - "events": [ - { - "uuid": "199c33ef-4ac7-44b7-a343-6ff5a19f0a32", - "start": { - "$date": "2021-10-06T04:45:28.000Z" - }, - "end": { - "$date": "2021-10-06T05:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fc75663-d361-4525-a7ec-8b8f6a9f49f3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T05:10:05.000Z" - }, - "end": { - "$date": "2021-10-06T05:28:26.000Z" - }, - "events": [ - { - "uuid": "2f1a39c8-95d5-4630-a9e0-de308dc77fb6", - "start": { - "$date": "2021-10-06T05:10:05.000Z" - }, - "end": { - "$date": "2021-10-06T05:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c78e0ed7-58a0-46ca-9eef-0cca57f61a68", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-06T05:10:24.000Z" - }, - "end": { - "$date": "2021-10-06T05:28:25.000Z" - }, - "events": [ - { - "uuid": "3f6efa70-e8ec-4b96-944a-97cf69b32e94", - "start": { - "$date": "2021-10-06T05:10:24.000Z" - }, - "end": { - "$date": "2021-10-06T05:28:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31ee90ba-6939-4688-b51a-7036299f8ef2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-06T05:11:26.000Z" - }, - "end": { - "$date": "2021-10-06T05:28:33.000Z" - }, - "events": [ - { - "uuid": "b813b7b3-4342-4747-bdf0-88b71167d532", - "start": { - "$date": "2021-10-06T05:11:26.000Z" - }, - "end": { - "$date": "2021-10-06T05:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f0869be8-d5b9-4aa3-92d0-f6f55a922954", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-06T05:16:51.000Z" - }, - "end": { - "$date": "2021-10-06T06:54:00.000Z" - }, - "events": [ - { - "uuid": "5d1a0790-9397-4f0b-9a21-0583f3a892dd", - "start": { - "$date": "2021-10-06T05:16:51.000Z" - }, - "end": { - "$date": "2021-10-06T05:17:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f96e3526-c0d0-47a9-aed9-70bc05ffa985", - "start": { - "$date": "2021-10-06T05:17:51.000Z" - }, - "end": { - "$date": "2021-10-06T05:36:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f338052-991c-4d4e-969c-c0d0444f8cee", - "start": { - "$date": "2021-10-06T05:36:51.000Z" - }, - "end": { - "$date": "2021-10-06T05:38:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb08e00f-e88c-44da-a4d6-427d50e7519a", - "start": { - "$date": "2021-10-06T05:38:51.000Z" - }, - "end": { - "$date": "2021-10-06T05:53:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20ab886e-3ce0-42c4-b57d-5a4f4c2da58d", - "start": { - "$date": "2021-10-06T05:53:51.000Z" - }, - "end": { - "$date": "2021-10-06T06:54:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a95a3f15-ec05-4ee4-b32c-331b8e84c5df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-06T05:31:13.000Z" - }, - "end": { - "$date": "2021-10-06T05:54:16.000Z" - }, - "events": [ - { - "uuid": "0273ee8e-0068-4b79-933a-0362d6da4c65", - "start": { - "$date": "2021-10-06T05:31:13.000Z" - }, - "end": { - "$date": "2021-10-06T05:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "40a6d42a-94fc-4399-90d0-55adf8d86340", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-06T06:05:32.000Z" - }, - "end": { - "$date": "2021-10-06T06:27:41.000Z" - }, - "events": [ - { - "uuid": "cbf550e4-d500-46a5-8eb1-021fa52c7458", - "start": { - "$date": "2021-10-06T06:05:32.000Z" - }, - "end": { - "$date": "2021-10-06T06:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5dfca912-1a9a-4bd5-8048-9191c1d76e38", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-06T06:51:48.000Z" - }, - "end": { - "$date": "2021-10-06T09:29:34.000Z" - }, - "events": [ - { - "uuid": "b67d0105-4150-45ad-8622-02055bd81c7a", - "start": { - "$date": "2021-10-06T06:51:48.000Z" - }, - "end": { - "$date": "2021-10-06T09:29:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "d10df43e-fa2f-4d44-910b-4a3d863fe059", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-06T06:54:29.000Z" - }, - "end": { - "$date": "2021-10-06T07:51:12.000Z" - }, - "events": [ - { - "uuid": "b036a3d0-3918-4de4-804f-cb33484077d8", - "start": { - "$date": "2021-10-06T06:54:29.000Z" - }, - "end": { - "$date": "2021-10-06T07:51:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81e67c59-f9a5-4525-a987-c3277ad0dcca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-06T15:59:06.000Z" - }, - "end": { - "$date": "2021-10-06T16:09:20.000Z" - }, - "events": [ - { - "uuid": "d0972dda-2ff8-42b8-a5c3-744d689b6d11", - "start": { - "$date": "2021-10-06T15:59:06.000Z" - }, - "end": { - "$date": "2021-10-06T16:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe183e2c-ec50-4149-88d2-e005992aee21", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-06T21:07:14.000Z" - }, - "end": { - "$date": "2021-10-06T21:22:07.000Z" - }, - "events": [ - { - "uuid": "b0cf08a5-2c57-4e3d-9da1-e41eb67b24ea", - "start": { - "$date": "2021-10-06T21:07:14.000Z" - }, - "end": { - "$date": "2021-10-06T21:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9c274fc-253e-4f0c-87a3-18ee0afddde0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-06T21:26:05.000Z" - }, - "end": { - "$date": "2021-10-06T21:46:21.000Z" - }, - "events": [ - { - "uuid": "77c749a4-6df5-4c60-9b4c-c12552c1353c", - "start": { - "$date": "2021-10-06T21:26:05.000Z" - }, - "end": { - "$date": "2021-10-06T21:46:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "33f906ad-a4db-430a-bedb-75969a7592f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-06T22:24:30.000Z" - }, - "end": { - "$date": "2021-10-06T22:30:10.000Z" - }, - "events": [ - { - "uuid": "7c74662a-c373-46e8-9747-158fe5ed9573", - "start": { - "$date": "2021-10-06T22:24:30.000Z" - }, - "end": { - "$date": "2021-10-06T22:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "9e5f49a6-1e6a-497e-aec9-a9451c09bc9a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-06T22:30:40.000Z" - }, - "end": { - "$date": "2021-10-06T23:37:06.000Z" - }, - "events": [ - { - "uuid": "0c5386a4-fdfe-4152-b470-8acd2fbeb256", - "start": { - "$date": "2021-10-06T22:30:40.000Z" - }, - "end": { - "$date": "2021-10-06T23:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d2c3d502-4970-486e-98e5-25bdb13c278e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-07T00:09:40.000Z" - }, - "end": { - "$date": "2021-10-07T01:12:48.000Z" - }, - "events": [ - { - "uuid": "707e9879-a0a7-4a9f-9af9-7fc4bee01992", - "start": { - "$date": "2021-10-07T00:09:40.000Z" - }, - "end": { - "$date": "2021-10-07T01:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "dcdf602d-ba5a-4b83-89b1-9f87b88b1881", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-07T00:14:13.000Z" - }, - "end": { - "$date": "2021-10-07T01:52:13.000Z" - }, - "events": [ - { - "uuid": "b7f5de2b-4c29-4ea3-85f7-f6de216904ec", - "start": { - "$date": "2021-10-07T00:14:13.000Z" - }, - "end": { - "$date": "2021-10-07T01:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e326ad4-d8ea-416b-b225-33311bd466cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T00:21:45.000Z" - }, - "end": { - "$date": "2021-10-07T00:35:52.000Z" - }, - "events": [ - { - "uuid": "a98b0553-4715-4e28-af1a-7956c88558ff", - "start": { - "$date": "2021-10-07T00:21:45.000Z" - }, - "end": { - "$date": "2021-10-07T00:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29e2487f-1650-48bc-b4d4-fbbdeeb77267", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T00:39:05.000Z" - }, - "end": { - "$date": "2021-10-07T00:57:09.000Z" - }, - "events": [ - { - "uuid": "d86cd6d2-b965-4e41-9d14-bd3ee8b099f6", - "start": { - "$date": "2021-10-07T00:39:05.000Z" - }, - "end": { - "$date": "2021-10-07T00:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1a765827-3d98-4bbd-9fb7-46d78181a00e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-07T00:40:17.000Z" - }, - "end": { - "$date": "2021-10-07T04:42:43.000Z" - }, - "events": [ - { - "uuid": "9089ff82-6fae-4032-9b08-40ec99bdfa7e", - "start": { - "$date": "2021-10-07T00:40:17.000Z" - }, - "end": { - "$date": "2021-10-07T04:42:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "355c4a88-688d-4f20-88dd-845b286f46be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T00:44:39.000Z" - }, - "end": { - "$date": "2021-10-07T03:30:57.000Z" - }, - "events": [ - { - "uuid": "6ae3b66c-a154-4608-a716-781669da1479", - "start": { - "$date": "2021-10-07T00:44:39.000Z" - }, - "end": { - "$date": "2021-10-07T03:30:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "1ef0dc0c-8272-47a8-aa01-b55fad437a27", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-07T01:52:49.000Z" - }, - "end": { - "$date": "2021-10-07T02:14:40.000Z" - }, - "events": [ - { - "uuid": "e4bfcea1-7f0c-4125-a034-8496fbb6954c", - "start": { - "$date": "2021-10-07T01:52:49.000Z" - }, - "end": { - "$date": "2021-10-07T02:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "10bd68ea-ede5-4545-9eb0-cd6cce6dd14a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-07T03:12:40.000Z" - }, - "end": { - "$date": "2021-10-07T03:27:56.000Z" - }, - "events": [ - { - "uuid": "4fb3893e-cd5e-47f7-8741-7fa3b1ace0f2", - "start": { - "$date": "2021-10-07T03:12:40.000Z" - }, - "end": { - "$date": "2021-10-07T03:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bec1dfb-1d7d-49e9-8723-034338b3eb29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T03:53:19.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:28.000Z" - }, - "events": [ - { - "uuid": "a7ecbf9e-7ab5-426e-928b-e6d98ee84238", - "start": { - "$date": "2021-10-07T03:53:19.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "ff69e501-3272-4bee-89f2-38cff2c810d2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T03:31:18.000Z" - }, - "end": { - "$date": "2021-10-07T03:44:23.000Z" - }, - "events": [ - { - "uuid": "2c4bfc28-8c27-47fd-acc4-f7d66e825d07", - "start": { - "$date": "2021-10-07T03:31:18.000Z" - }, - "end": { - "$date": "2021-10-07T03:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "624dcde2-dcbc-4f43-8bdf-a807be99b227", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T03:44:48.000Z" - }, - "end": { - "$date": "2021-10-07T03:55:13.000Z" - }, - "events": [ - { - "uuid": "8fdb0e89-85cb-4492-984a-0d60202bbfb4", - "start": { - "$date": "2021-10-07T03:44:48.000Z" - }, - "end": { - "$date": "2021-10-07T03:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c634530-25c0-424b-b598-6076734ece5a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-07T03:53:14.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:23.000Z" - }, - "events": [ - { - "uuid": "fc568918-10cb-434a-992f-66cd243b0179", - "start": { - "$date": "2021-10-07T03:53:14.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e9bb0d2-3cbf-4978-951d-f2fba7bde5d0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-07T03:52:50.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:33.000Z" - }, - "events": [ - { - "uuid": "7df9c57f-72e8-459b-a191-b36b274119d7", - "start": { - "$date": "2021-10-07T03:52:50.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b683edbc-a012-4f35-8466-09d31ccec5ed", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-07T03:53:18.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:31.000Z" - }, - "events": [ - { - "uuid": "98f5398e-2017-4592-b2c9-41bba8eb1356", - "start": { - "$date": "2021-10-07T03:53:18.000Z" - }, - "end": { - "$date": "2021-10-07T04:16:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "685c7223-b56f-49c2-8813-43acf7c69437", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T03:55:59.000Z" - }, - "end": { - "$date": "2021-10-07T03:57:03.000Z" - }, - "events": [ - { - "uuid": "ebabe779-3c46-4b76-adc3-68a0b360b725", - "start": { - "$date": "2021-10-07T03:55:59.000Z" - }, - "end": { - "$date": "2021-10-07T03:57:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "e314b081-1fc6-474e-939d-60ef82dcba4a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T03:58:44.000Z" - }, - "end": { - "$date": "2021-10-07T04:00:14.000Z" - }, - "events": [ - { - "uuid": "ecac211b-a03c-4012-957e-7c4a9774afa0", - "start": { - "$date": "2021-10-07T03:58:44.000Z" - }, - "end": { - "$date": "2021-10-07T04:00:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "d3e61755-0abf-4efa-97da-ab68a24d8d07", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T04:04:34.000Z" - }, - "end": { - "$date": "2021-10-07T04:12:15.000Z" - }, - "events": [ - { - "uuid": "9754dde7-d289-49ab-9383-5861a7bd1313", - "start": { - "$date": "2021-10-07T04:04:34.000Z" - }, - "end": { - "$date": "2021-10-07T04:12:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "8d2a24bf-8d32-4565-9347-f94f9f72296a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T04:12:40.000Z" - }, - "end": { - "$date": "2021-10-07T05:17:21.000Z" - }, - "events": [ - { - "uuid": "1c452cd4-2c5d-4c15-b8d8-1f307ec54405", - "start": { - "$date": "2021-10-07T04:12:40.000Z" - }, - "end": { - "$date": "2021-10-07T05:17:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca6368d4-23fe-4af2-b6cd-81bab297bd54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T04:21:09.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:08.000Z" - }, - "events": [ - { - "uuid": "e233d36f-6926-44e5-a916-b94aebe861de", - "start": { - "$date": "2021-10-07T04:21:09.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "908a8279-7307-4f7e-b33b-41d35a1dbdf6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-07T04:20:49.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:14.000Z" - }, - "events": [ - { - "uuid": "4d0079a0-d744-4111-aefe-126e5298f025", - "start": { - "$date": "2021-10-07T04:20:49.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7a878d5-19f3-4e82-aa7a-8771700dfdf1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-07T04:20:51.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:15.000Z" - }, - "events": [ - { - "uuid": "e7d32938-0e92-4311-9c0b-45aeb8cb11d7", - "start": { - "$date": "2021-10-07T04:20:51.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fde85b6-705b-4c2c-9d84-a0a9b8ed40c4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-07T04:21:04.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:09.000Z" - }, - "events": [ - { - "uuid": "d7d62784-5436-4cc7-9903-898064ef42e7", - "start": { - "$date": "2021-10-07T04:21:04.000Z" - }, - "end": { - "$date": "2021-10-07T04:37:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d02298ec-4d69-470f-84fa-70682f324f09", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T04:42:35.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:19.000Z" - }, - "events": [ - { - "uuid": "8d55a3f9-6193-4e50-bce4-d71079587730", - "start": { - "$date": "2021-10-07T04:42:35.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e90082bb-14e8-462f-9acc-823a6b40e5e6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-07T04:42:16.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:20.000Z" - }, - "events": [ - { - "uuid": "a1936cf7-a813-46e0-a893-6e54c41ef208", - "start": { - "$date": "2021-10-07T04:42:16.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d27e37c-858b-40dd-911e-0a436c4ea283", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-07T04:42:10.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:26.000Z" - }, - "events": [ - { - "uuid": "c746e4b6-e88a-4c53-ac44-394fe88437b1", - "start": { - "$date": "2021-10-07T04:42:10.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a535d14-76d3-438b-abd5-ebb238d763cf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-07T04:42:31.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:25.000Z" - }, - "events": [ - { - "uuid": "8e01c1b7-5164-4f66-a66c-93ac4ddd5829", - "start": { - "$date": "2021-10-07T04:42:31.000Z" - }, - "end": { - "$date": "2021-10-07T05:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "3ad8a1db-99e1-4af4-82b7-24fa646a4aa1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-07T05:17:51.000Z" - }, - "end": { - "$date": "2021-10-07T05:58:57.000Z" - }, - "events": [ - { - "uuid": "02a65996-4c5d-44e7-aae5-60dd04336093", - "start": { - "$date": "2021-10-07T05:17:51.000Z" - }, - "end": { - "$date": "2021-10-07T05:58:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a141ad31-a554-4433-8ff1-07614bec9b83", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-07T07:52:30.000Z" - }, - "end": { - "$date": "2021-10-07T07:53:40.000Z" - }, - "events": [ - { - "uuid": "0e4aef7b-5ade-4f91-86a3-1751c8af2675", - "start": { - "$date": "2021-10-07T07:52:30.000Z" - }, - "end": { - "$date": "2021-10-07T07:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "adfaf6e4-28d4-41d8-9f4b-cfa09d8c484b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-07T08:09:23.000Z" - }, - "end": { - "$date": "2021-10-07T09:49:34.000Z" - }, - "events": [ - { - "uuid": "3a121a3e-26f8-4121-9b2c-76980016ca38", - "start": { - "$date": "2021-10-07T08:09:23.000Z" - }, - "end": { - "$date": "2021-10-07T09:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "e532b9f2-9495-4436-8fee-3fd7408c4f33", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-07T18:55:05.000Z" - }, - "end": { - "$date": "2021-10-07T22:47:56.000Z" - }, - "events": [ - { - "uuid": "eefefa29-f643-4941-be68-b87bb7cac28e", - "start": { - "$date": "2021-10-07T18:55:05.000Z" - }, - "end": { - "$date": "2021-10-07T22:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aa763b0-216f-4dfa-b90d-ca8444fadbaf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T21:20:59.000Z" - }, - "end": { - "$date": "2021-10-07T21:32:14.000Z" - }, - "events": [ - { - "uuid": "72eaa0ef-530c-430e-96f2-84f05fbe2d8e", - "start": { - "$date": "2021-10-07T21:20:59.000Z" - }, - "end": { - "$date": "2021-10-07T21:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0992a251-3234-4da2-ba4b-203d93d4c006", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-07T21:36:40.000Z" - }, - "end": { - "$date": "2021-10-07T21:56:35.000Z" - }, - "events": [ - { - "uuid": "6e8ac608-085f-4614-905f-c89ea2c4dadf", - "start": { - "$date": "2021-10-07T21:36:40.000Z" - }, - "end": { - "$date": "2021-10-07T21:56:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "978c29a7-6a6c-4291-8375-4f869b2f5173", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-07T22:43:58.000Z" - }, - "end": { - "$date": "2021-10-07T23:58:17.000Z" - }, - "events": [ - { - "uuid": "1932338b-fb57-4d3b-8907-b33e9db20637", - "start": { - "$date": "2021-10-07T22:43:58.000Z" - }, - "end": { - "$date": "2021-10-07T23:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "9bde3b51-710c-4a2b-a33c-81dd91783009", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-07T22:47:57.000Z" - }, - "end": { - "$date": "2021-10-07T22:58:41.000Z" - }, - "events": [ - { - "uuid": "ee01fb3a-d40e-435b-b40f-58505aff40cc", - "start": { - "$date": "2021-10-07T22:47:57.000Z" - }, - "end": { - "$date": "2021-10-07T22:58:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c34b3fb8-c5db-4f68-9110-aa1344a797a1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-07T23:58:47.000Z" - }, - "end": { - "$date": "2021-10-08T00:08:07.000Z" - }, - "events": [ - { - "uuid": "ee3399ef-7d02-4af9-9901-0c04b6ec3284", - "start": { - "$date": "2021-10-07T23:58:47.000Z" - }, - "end": { - "$date": "2021-10-08T00:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "63f03977-7b40-434f-b5a3-233368a223dc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-08T00:23:53.000Z" - }, - "end": { - "$date": "2021-10-08T05:52:53.000Z" - }, - "events": [ - { - "uuid": "426d168e-5485-45bf-a8f0-2a636789afc6", - "start": { - "$date": "2021-10-08T00:23:53.000Z" - }, - "end": { - "$date": "2021-10-08T01:06:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4e0d3dc-b28d-4e39-a2f5-abe6e2317bd8", - "start": { - "$date": "2021-10-08T01:06:53.000Z" - }, - "end": { - "$date": "2021-10-08T01:30:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4f2807e-6d57-410e-b412-ac2b2f3d67f3", - "start": { - "$date": "2021-10-08T01:30:53.000Z" - }, - "end": { - "$date": "2021-10-08T05:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a9d5ad4-82fa-4268-9158-0c65a78dc1f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-08T00:34:41.000Z" - }, - "end": { - "$date": "2021-10-08T00:58:01.000Z" - }, - "events": [ - { - "uuid": "6e6c8819-3cf3-495e-b1c0-fb2ce3fe47ef", - "start": { - "$date": "2021-10-08T00:34:41.000Z" - }, - "end": { - "$date": "2021-10-08T00:58:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5ac29e2f-da52-43f1-9520-edfd7e522713", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-08T01:22:54.000Z" - }, - "end": { - "$date": "2021-10-08T05:30:02.000Z" - }, - "events": [ - { - "uuid": "099a688b-fe12-43aa-a974-ac76f1caf8cc", - "start": { - "$date": "2021-10-08T01:22:54.000Z" - }, - "end": { - "$date": "2021-10-08T05:30:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cf7876ae-08c9-47b7-8688-2ed40c0b8932", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-08T01:28:51.000Z" - }, - "end": { - "$date": "2021-10-08T03:53:07.000Z" - }, - "events": [ - { - "uuid": "f2523d8c-9c8b-4648-9ea8-97f5c485c318", - "start": { - "$date": "2021-10-08T01:28:51.000Z" - }, - "end": { - "$date": "2021-10-08T03:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "567a86a9-a956-4842-a806-ffb18c2a7cf1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-08T01:47:18.000Z" - }, - "end": { - "$date": "2021-10-08T02:24:14.000Z" - }, - "events": [ - { - "uuid": "61d28926-9e0d-4a24-9610-a87cb459ed4e", - "start": { - "$date": "2021-10-08T01:47:18.000Z" - }, - "end": { - "$date": "2021-10-08T02:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c1d097e9-c365-41a1-9034-f37ad3230e2e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-08T01:56:46.000Z" - }, - "end": { - "$date": "2021-10-08T02:24:32.000Z" - }, - "events": [ - { - "uuid": "7ed41f60-ae70-483f-8ab6-32c6a319ec71", - "start": { - "$date": "2021-10-08T01:56:46.000Z" - }, - "end": { - "$date": "2021-10-08T02:07:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "43c605f6-380d-4f11-a8ba-60bb330f3484", - "start": { - "$date": "2021-10-08T02:07:46.000Z" - }, - "end": { - "$date": "2021-10-08T02:10:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "642bdad4-85c6-4992-89cb-c72784d55ecd", - "start": { - "$date": "2021-10-08T02:10:46.000Z" - }, - "end": { - "$date": "2021-10-08T02:20:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7c2842e-fe5f-4d88-a0b6-d520a8425ca4", - "start": { - "$date": "2021-10-08T02:20:46.000Z" - }, - "end": { - "$date": "2021-10-08T02:24:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "9076ed4e-c939-4465-9dc8-0a67d878beb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-08T01:58:25.000Z" - }, - "end": { - "$date": "2021-10-08T01:59:25.000Z" - }, - "events": [ - { - "uuid": "1a0145dd-88dd-4153-a2a9-263b79f4ea89", - "start": { - "$date": "2021-10-08T01:58:25.000Z" - }, - "end": { - "$date": "2021-10-08T01:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "96fbb00e-fdd5-40aa-aac3-6be758214d03", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-08T03:03:56.000Z" - }, - "end": { - "$date": "2021-10-08T04:49:06.000Z" - }, - "events": [ - { - "uuid": "a73ea8e7-ff24-4837-9976-75e53dc1aa14", - "start": { - "$date": "2021-10-08T03:03:56.000Z" - }, - "end": { - "$date": "2021-10-08T04:49:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9797c8c-e4c0-44a5-b14e-6aba8c080d29", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-08T03:38:15.000Z" - }, - "end": { - "$date": "2021-10-08T04:05:24.000Z" - }, - "events": [ - { - "uuid": "1f55e5e0-e59f-4cce-856c-69cb97f2f89a", - "start": { - "$date": "2021-10-08T03:38:15.000Z" - }, - "end": { - "$date": "2021-10-08T04:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1b1563a0-efe3-42e5-ac28-77c03014aa74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-08T03:29:55.000Z" - }, - "end": { - "$date": "2021-10-08T05:17:03.000Z" - }, - "events": [ - { - "uuid": "0fd163f0-5862-4a0c-845b-2e3be048a480", - "start": { - "$date": "2021-10-08T03:29:55.000Z" - }, - "end": { - "$date": "2021-10-08T05:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fa47f46-9812-40bc-bc15-564dad723928", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T03:38:14.000Z" - }, - "end": { - "$date": "2021-10-08T04:05:29.000Z" - }, - "events": [ - { - "uuid": "8f6c6d9c-6e9e-478f-bb00-777e2c68bfba", - "start": { - "$date": "2021-10-08T03:38:14.000Z" - }, - "end": { - "$date": "2021-10-08T04:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5f68553-15bf-4370-9180-80cc4e5fc934", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-08T03:38:16.000Z" - }, - "end": { - "$date": "2021-10-08T04:05:34.000Z" - }, - "events": [ - { - "uuid": "527868a7-2ed6-4ad2-a5e7-107538781c1d", - "start": { - "$date": "2021-10-08T03:38:16.000Z" - }, - "end": { - "$date": "2021-10-08T04:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c06cf744-707c-42e3-a329-c4a33b1662ad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-08T03:44:16.000Z" - }, - "end": { - "$date": "2021-10-08T03:48:06.000Z" - }, - "events": [ - { - "uuid": "4cf9a029-a4ea-483e-84bb-6a93bd9f66d0", - "start": { - "$date": "2021-10-08T03:44:16.000Z" - }, - "end": { - "$date": "2021-10-08T03:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "9999d0bc-54a8-4131-9d7a-086eb6182686", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-08T03:48:37.000Z" - }, - "end": { - "$date": "2021-10-08T04:09:52.000Z" - }, - "events": [ - { - "uuid": "9ed48e04-5e85-4dc2-bb8a-8a8575c99b74", - "start": { - "$date": "2021-10-08T03:48:37.000Z" - }, - "end": { - "$date": "2021-10-08T04:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c3b42b41-4019-4f18-90b8-28ae60046682", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-08T03:53:17.000Z" - }, - "end": { - "$date": "2021-10-08T04:39:26.000Z" - }, - "events": [ - { - "uuid": "9ebbe300-9816-4ee1-8bb6-d160e0261007", - "start": { - "$date": "2021-10-08T03:53:17.000Z" - }, - "end": { - "$date": "2021-10-08T04:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "926d9905-a075-44d2-ac9e-55b68b2398dc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-08T04:01:00.000Z" - }, - "end": { - "$date": "2021-10-08T05:25:17.000Z" - }, - "events": [ - { - "uuid": "e341b8b0-0aef-41f6-9bfe-e1b17b3d5f00", - "start": { - "$date": "2021-10-08T04:01:00.000Z" - }, - "end": { - "$date": "2021-10-08T05:25:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "783da926-7340-4bc5-a39b-6942cd3e17df", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-08T04:08:20.000Z" - }, - "end": { - "$date": "2021-10-08T04:34:30.000Z" - }, - "events": [ - { - "uuid": "49ba1fb7-d3d1-47af-a061-82e30fd6e9db", - "start": { - "$date": "2021-10-08T04:08:20.000Z" - }, - "end": { - "$date": "2021-10-08T04:34:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1569d46-ee7e-4c12-9c97-b9c75f1d66db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-08T04:09:21.000Z" - }, - "end": { - "$date": "2021-10-08T04:34:27.000Z" - }, - "events": [ - { - "uuid": "f65e7eed-4802-4c55-96c3-513298a24757", - "start": { - "$date": "2021-10-08T04:09:21.000Z" - }, - "end": { - "$date": "2021-10-08T04:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32c228c7-42b3-42d8-b970-60ec5c9149ab", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T04:08:20.000Z" - }, - "end": { - "$date": "2021-10-08T04:34:30.000Z" - }, - "events": [ - { - "uuid": "7ef99b31-15a5-4095-940f-7406fe929641", - "start": { - "$date": "2021-10-08T04:08:20.000Z" - }, - "end": { - "$date": "2021-10-08T04:34:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6644735b-6b80-4e64-8bf1-6613274243f2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T04:41:01.000Z" - }, - "end": { - "$date": "2021-10-08T05:00:35.000Z" - }, - "events": [ - { - "uuid": "2c5ebaa0-1746-4e0c-af55-d45892391f86", - "start": { - "$date": "2021-10-08T04:41:01.000Z" - }, - "end": { - "$date": "2021-10-08T05:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7de08dab-4bf6-4365-8d2b-7beda0c271da", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-08T04:39:38.000Z" - }, - "end": { - "$date": "2021-10-08T05:45:00.000Z" - }, - "events": [ - { - "uuid": "c6d1f31d-11bd-4edb-a943-b4ea34e5b4de", - "start": { - "$date": "2021-10-08T04:39:38.000Z" - }, - "end": { - "$date": "2021-10-08T05:45:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "a048173e-0aa2-4d1b-b8e9-124eab4a47b0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-08T04:49:30.000Z" - }, - "end": { - "$date": "2021-10-08T05:18:17.000Z" - }, - "events": [ - { - "uuid": "132c5536-460d-4e7b-a8e3-5e9a010fb046", - "start": { - "$date": "2021-10-08T04:49:30.000Z" - }, - "end": { - "$date": "2021-10-08T05:18:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f3994f8-faf0-440b-9df8-0dd83b8ee90e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T05:04:11.000Z" - }, - "end": { - "$date": "2021-10-08T05:23:10.000Z" - }, - "events": [ - { - "uuid": "43184d0f-4beb-40a1-8e90-05e2504dfcd8", - "start": { - "$date": "2021-10-08T05:04:11.000Z" - }, - "end": { - "$date": "2021-10-08T05:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "022a0c0d-e4c6-407d-bc5b-acba092ff856", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-08T05:18:08.000Z" - }, - "end": { - "$date": "2021-10-08T05:49:13.000Z" - }, - "events": [ - { - "uuid": "d18cab8f-1b28-4519-94bd-0afe576e80fe", - "start": { - "$date": "2021-10-08T05:18:08.000Z" - }, - "end": { - "$date": "2021-10-08T05:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf0c3b3f-791e-4d6a-b861-d628fb94efa1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T05:24:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:28:08.000Z" - }, - "events": [ - { - "uuid": "481842f9-4dbd-4927-8152-7aa0d8ae2582", - "start": { - "$date": "2021-10-08T05:24:33.000Z" - }, - "end": { - "$date": "2021-10-08T05:35:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72d0df57-fc5c-4faa-af06-4b157bea1c94", - "start": { - "$date": "2021-10-08T05:35:33.000Z" - }, - "end": { - "$date": "2021-10-08T05:39:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7bac25b7-3346-48a5-884d-624b397b425b", - "start": { - "$date": "2021-10-08T05:39:33.000Z" - }, - "end": { - "$date": "2021-10-08T05:49:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "59fbd1be-3b9f-4b76-987a-77aed1917da9", - "start": { - "$date": "2021-10-08T05:49:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:05:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f7a7b72-f424-4e1e-a75d-4c8bc057a1dc", - "start": { - "$date": "2021-10-08T06:05:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:15:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5fbd2297-8fe6-4cc5-bee4-9971b6d49e6a", - "start": { - "$date": "2021-10-08T06:15:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:19:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "18bc0837-729e-4126-b865-931903a06617", - "start": { - "$date": "2021-10-08T06:19:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:21:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29f2a5e0-f8db-4251-b290-51b14de0bf23", - "start": { - "$date": "2021-10-08T06:21:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:25:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d62a9a1-95eb-4f91-a80d-349a4e228db5", - "start": { - "$date": "2021-10-08T06:25:33.000Z" - }, - "end": { - "$date": "2021-10-08T06:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "786008f1-ab74-471c-9279-0e7fb5b552cd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T06:52:56.000Z" - }, - "end": { - "$date": "2021-10-08T08:12:30.000Z" - }, - "events": [ - { - "uuid": "ce29c3f2-400c-4eb9-8bc3-c3e116d70c45", - "start": { - "$date": "2021-10-08T06:52:56.000Z" - }, - "end": { - "$date": "2021-10-08T08:12:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "062849f4-1643-457b-9e79-ca5eac3ffcb5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T08:16:01.000Z" - }, - "end": { - "$date": "2021-10-08T08:28:05.000Z" - }, - "events": [ - { - "uuid": "2a12de13-33e7-4a0b-ae0b-140f3c9e8711", - "start": { - "$date": "2021-10-08T08:16:01.000Z" - }, - "end": { - "$date": "2021-10-08T08:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85e0b368-4471-4c88-946d-04af8d3640ca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T08:31:56.000Z" - }, - "end": { - "$date": "2021-10-08T08:55:46.000Z" - }, - "events": [ - { - "uuid": "db91f84a-bab2-49f3-a2ee-6709eadf242b", - "start": { - "$date": "2021-10-08T08:31:56.000Z" - }, - "end": { - "$date": "2021-10-08T08:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d94efcf7-b8a3-4c1b-8be6-d7d2263f6d86", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T08:58:37.000Z" - }, - "end": { - "$date": "2021-10-08T09:18:02.000Z" - }, - "events": [ - { - "uuid": "7e05169e-f40e-4b7b-a05b-cd6bb8516386", - "start": { - "$date": "2021-10-08T08:58:37.000Z" - }, - "end": { - "$date": "2021-10-08T09:18:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32a75673-b05b-4c15-95ac-1cca66e27278", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T09:21:17.000Z" - }, - "end": { - "$date": "2021-10-08T09:36:47.000Z" - }, - "events": [ - { - "uuid": "20ef3f93-a3b2-43d8-934e-adcd65eb3005", - "start": { - "$date": "2021-10-08T09:21:17.000Z" - }, - "end": { - "$date": "2021-10-08T09:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18451049-3494-4e66-b724-5391d70cecce", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T09:39:48.000Z" - }, - "end": { - "$date": "2021-10-08T09:59:33.000Z" - }, - "events": [ - { - "uuid": "463cbfdd-1ebe-49b3-b7b4-d66ffbf6f506", - "start": { - "$date": "2021-10-08T09:39:48.000Z" - }, - "end": { - "$date": "2021-10-08T09:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f4ee014-a8b9-416e-9adb-ba621d25cacf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-08T10:02:28.000Z" - }, - "end": { - "$date": "2021-10-08T10:21:44.000Z" - }, - "events": [ - { - "uuid": "a4723db0-4f77-4953-acf2-a957c2a83905", - "start": { - "$date": "2021-10-08T10:02:28.000Z" - }, - "end": { - "$date": "2021-10-08T10:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "97174f66-0627-450e-992e-c82a0abd9199", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-08T15:13:36.000Z" - }, - "end": { - "$date": "2021-10-08T17:10:11.000Z" - }, - "events": [ - { - "uuid": "327eeeca-343b-46e1-ad3d-524e3f2c061a", - "start": { - "$date": "2021-10-08T15:13:36.000Z" - }, - "end": { - "$date": "2021-10-08T17:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "3608a1b6-9621-4596-9659-75080e327c96", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-08T18:46:48.000Z" - }, - "end": { - "$date": "2021-10-08T19:32:24.000Z" - }, - "events": [ - { - "uuid": "53996cd1-7bdf-4aa7-b9b2-cb8b4275e984", - "start": { - "$date": "2021-10-08T18:46:48.000Z" - }, - "end": { - "$date": "2021-10-08T19:32:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "03e166db-0e62-406f-a67a-1bc98961885b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-08T19:03:26.000Z" - }, - "end": { - "$date": "2021-10-08T20:00:04.000Z" - }, - "events": [ - { - "uuid": "93899ca3-44e3-40d8-8b4c-becd48fc9574", - "start": { - "$date": "2021-10-08T19:03:26.000Z" - }, - "end": { - "$date": "2021-10-08T20:00:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b16ad81f-e42b-40a0-ae46-7263a97d9b4e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-08T19:49:34.000Z" - }, - "end": { - "$date": "2021-10-08T19:59:22.000Z" - }, - "events": [ - { - "uuid": "81419096-6baa-4cad-b2de-7e01db23a351", - "start": { - "$date": "2021-10-08T19:49:34.000Z" - }, - "end": { - "$date": "2021-10-08T19:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "1b5d6628-ea1e-492b-9783-46744ce1e4ea", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-08T20:07:35.000Z" - }, - "end": { - "$date": "2021-10-08T22:24:40.000Z" - }, - "events": [ - { - "uuid": "b5b3e7ea-9ec3-4034-9691-bf0d00894caa", - "start": { - "$date": "2021-10-08T20:07:35.000Z" - }, - "end": { - "$date": "2021-10-08T22:24:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "17514636-0098-45c4-aa84-52f565802c7d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-08T20:37:05.000Z" - }, - "end": { - "$date": "2021-10-08T22:17:06.000Z" - }, - "events": [ - { - "uuid": "947f6bbf-df6d-4075-bc57-0732d2c46d29", - "start": { - "$date": "2021-10-08T20:37:05.000Z" - }, - "end": { - "$date": "2021-10-08T22:17:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5568e0c5-234b-40a4-b175-613ae9adf0ec", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-08T21:11:24.000Z" - }, - "end": { - "$date": "2021-10-08T21:32:52.000Z" - }, - "events": [ - { - "uuid": "91d47591-5556-4c67-9a3f-1cb81e5cf32a", - "start": { - "$date": "2021-10-08T21:11:24.000Z" - }, - "end": { - "$date": "2021-10-08T21:21:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "964a8a6e-c890-4701-87ee-e08b70aceaa8", - "start": { - "$date": "2021-10-08T21:21:24.000Z" - }, - "end": { - "$date": "2021-10-08T21:29:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d568e018-5436-4577-9339-a4c5239d4b78", - "start": { - "$date": "2021-10-08T21:29:24.000Z" - }, - "end": { - "$date": "2021-10-08T21:32:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9bd4ab18-b970-4c1c-b6a8-56928c36a59d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-08T22:20:32.000Z" - }, - "end": { - "$date": "2021-10-09T04:04:53.000Z" - }, - "events": [ - { - "uuid": "09eafb89-791a-4235-87b4-a883345465a2", - "start": { - "$date": "2021-10-08T22:20:32.000Z" - }, - "end": { - "$date": "2021-10-08T23:37:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "861d7f09-8ed6-481d-bf91-cc0cbb47863c", - "start": { - "$date": "2021-10-08T23:37:32.000Z" - }, - "end": { - "$date": "2021-10-08T23:46:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2408cac2-456e-4963-a377-1b625e1b97e4", - "start": { - "$date": "2021-10-08T23:46:32.000Z" - }, - "end": { - "$date": "2021-10-09T00:15:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2a3b9ee-efc1-410c-ac09-213f851a414b", - "start": { - "$date": "2021-10-09T00:15:32.000Z" - }, - "end": { - "$date": "2021-10-09T00:31:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "284731e6-fddc-4fa0-b818-51c385edb38f", - "start": { - "$date": "2021-10-09T00:31:32.000Z" - }, - "end": { - "$date": "2021-10-09T00:41:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1eab3ff1-54fb-4377-8245-e35adcaa7a64", - "start": { - "$date": "2021-10-09T00:41:32.000Z" - }, - "end": { - "$date": "2021-10-09T00:49:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7e9778a7-dfcb-456b-b2fb-55e25ccd72bd", - "start": { - "$date": "2021-10-09T00:49:32.000Z" - }, - "end": { - "$date": "2021-10-09T04:04:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "c87bc93d-a644-47a6-abe7-a163edaab5ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-08T23:15:18.000Z" - }, - "end": { - "$date": "2021-10-08T23:26:01.000Z" - }, - "events": [ - { - "uuid": "8e34fc5c-6a5d-48a6-af0f-bfe418f1ab48", - "start": { - "$date": "2021-10-08T23:15:18.000Z" - }, - "end": { - "$date": "2021-10-08T23:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "81b68be0-0de5-450c-8897-fb209184524b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-09T01:33:20.000Z" - }, - "end": { - "$date": "2021-10-09T03:47:54.000Z" - }, - "events": [ - { - "uuid": "b865bb0c-a9a0-4068-8718-68fef7a3175a", - "start": { - "$date": "2021-10-09T01:33:20.000Z" - }, - "end": { - "$date": "2021-10-09T03:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "e067dfcf-34df-4a16-9dd1-57cb7ae26442", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-09T01:48:11.000Z" - }, - "end": { - "$date": "2021-10-09T01:55:57.000Z" - }, - "events": [ - { - "uuid": "3da6073d-0a14-48f8-80b5-e6c625922df8", - "start": { - "$date": "2021-10-09T01:48:11.000Z" - }, - "end": { - "$date": "2021-10-09T01:55:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "428740e4-acee-41c9-9afa-f4f758b7b23a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-09T01:56:02.000Z" - }, - "end": { - "$date": "2021-10-09T03:53:16.000Z" - }, - "events": [ - { - "uuid": "c56e12ca-fb74-48a4-be88-da004458a554", - "start": { - "$date": "2021-10-09T01:56:02.000Z" - }, - "end": { - "$date": "2021-10-09T03:53:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "b9709c51-fa7d-4cc1-b22d-406fa793e986", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-09T02:43:47.000Z" - }, - "end": { - "$date": "2021-10-09T04:32:31.000Z" - }, - "events": [ - { - "uuid": "20737f0b-c26a-42e6-9505-2e8c4e6caac7", - "start": { - "$date": "2021-10-09T02:43:47.000Z" - }, - "end": { - "$date": "2021-10-09T04:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a9b3b652-6394-498a-b6b0-e2abbbfb9de9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-09T03:17:30.000Z" - }, - "end": { - "$date": "2021-10-09T03:32:31.000Z" - }, - "events": [ - { - "uuid": "6076ef63-0320-4e55-a515-d90f572913db", - "start": { - "$date": "2021-10-09T03:17:30.000Z" - }, - "end": { - "$date": "2021-10-09T03:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b40874a7-b600-4bb9-85fa-c01fc118d48b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-09T07:19:05.000Z" - }, - "end": { - "$date": "2021-10-09T07:28:48.000Z" - }, - "events": [ - { - "uuid": "ac0718ee-c286-4f17-b6f5-3abd5f0b5488", - "start": { - "$date": "2021-10-09T07:19:05.000Z" - }, - "end": { - "$date": "2021-10-09T11:24:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c9d1f56-9ca6-45f4-9929-502202c4c2bb", - "start": { - "$date": "2021-10-09T11:24:05.000Z" - }, - "end": { - "$date": "2021-10-09T07:28:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5685a0be-e4ba-4fd3-8309-5b6acbb5932e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-09T05:44:06.000Z" - }, - "end": { - "$date": "2021-10-09T06:01:19.000Z" - }, - "events": [ - { - "uuid": "172919b4-b00c-44b0-a87c-5b03fd81933a", - "start": { - "$date": "2021-10-09T05:44:06.000Z" - }, - "end": { - "$date": "2021-10-09T06:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "a39c05bd-b75e-4b5f-bc8e-8b078a2c064b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-09T05:55:44.000Z" - }, - "end": { - "$date": "2021-10-09T05:58:36.000Z" - }, - "events": [ - { - "uuid": "f2f504ec-2526-4ccc-99d3-959c6f16bf0b", - "start": { - "$date": "2021-10-09T05:55:44.000Z" - }, - "end": { - "$date": "2021-10-09T05:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "e925fc77-8171-428c-9662-1c02e7a2be48", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-09T05:59:09.000Z" - }, - "end": { - "$date": "2021-10-09T08:02:23.000Z" - }, - "events": [ - { - "uuid": "100a1d4c-c714-4275-bd2c-465806cbeb33", - "start": { - "$date": "2021-10-09T05:59:09.000Z" - }, - "end": { - "$date": "2021-10-09T08:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "e914f156-739b-4798-925d-7db142902dbd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-09T06:33:34.000Z" - }, - "end": { - "$date": "2021-10-09T08:02:14.000Z" - }, - "events": [ - { - "uuid": "5e9089a9-b454-4b60-9fbb-c5a8f694857b", - "start": { - "$date": "2021-10-09T06:33:34.000Z" - }, - "end": { - "$date": "2021-10-09T08:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5ba7f934-d44e-4ab0-8282-89ff7d48743a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-08T22:20:32.000Z" - }, - "end": { - "$date": "2021-10-09T08:10:41.000Z" - }, - "events": [ - { - "uuid": "245b7e81-4644-46d2-9905-1850b97fef34", - "start": { - "$date": "2021-10-08T22:20:32.000Z" - }, - "end": { - "$date": "2021-10-09T08:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "068af831-bab0-4767-afdb-114bbe2058be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-09T15:29:47.000Z" - }, - "end": { - "$date": "2021-10-09T15:45:45.000Z" - }, - "events": [ - { - "uuid": "fb4c1189-82ad-4308-bf1f-b5a1340ba191", - "start": { - "$date": "2021-10-09T15:29:47.000Z" - }, - "end": { - "$date": "2021-10-09T15:31:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e8c03ff-a5ae-4210-9451-537263b27572", - "start": { - "$date": "2021-10-09T15:31:47.000Z" - }, - "end": { - "$date": "2021-10-09T15:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc61e0e9-032c-4c60-81ad-588e60c13c36", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-09T16:36:49.000Z" - }, - "end": { - "$date": "2021-10-09T17:01:59.000Z" - }, - "events": [ - { - "uuid": "e4927cfd-0a6a-4b20-92b6-f6d901b9a383", - "start": { - "$date": "2021-10-09T16:36:49.000Z" - }, - "end": { - "$date": "2021-10-09T17:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "323e41e4-63e1-45fd-b8b4-4971a40e61a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-09T17:07:20.000Z" - }, - "end": { - "$date": "2021-10-09T17:27:44.000Z" - }, - "events": [ - { - "uuid": "110896cc-fec1-494f-8312-42571832ddb2", - "start": { - "$date": "2021-10-09T17:07:20.000Z" - }, - "end": { - "$date": "2021-10-09T17:27:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a8b39e06-a16a-4607-bda5-1bd211371a8a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-09T18:22:11.000Z" - }, - "end": { - "$date": "2021-10-09T21:17:18.000Z" - }, - "events": [ - { - "uuid": "24aa3f2e-85ce-4161-b151-b54183e050be", - "start": { - "$date": "2021-10-09T18:22:11.000Z" - }, - "end": { - "$date": "2021-10-09T21:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98376584-74c0-4e34-8997-5f6e300ab5ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-09T19:00:32.000Z" - }, - "end": { - "$date": "2021-10-09T19:34:49.000Z" - }, - "events": [ - { - "uuid": "e61bed12-8494-4250-aa77-c96263da9c72", - "start": { - "$date": "2021-10-09T19:00:32.000Z" - }, - "end": { - "$date": "2021-10-09T19:34:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "ce52888c-45a7-46f1-ad14-413db9e6c173", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-10T02:10:49.000Z" - }, - "end": { - "$date": "2021-10-10T05:28:12.000Z" - }, - "events": [ - { - "uuid": "fa1887b7-879a-45a8-8c70-1acb533deefd", - "start": { - "$date": "2021-10-10T02:10:49.000Z" - }, - "end": { - "$date": "2021-10-10T04:06:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41533459-24ce-44bb-aecb-426d82df368f", - "start": { - "$date": "2021-10-10T04:06:49.000Z" - }, - "end": { - "$date": "2021-10-10T04:11:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9670e463-619a-4118-a5c5-540994f30aec", - "start": { - "$date": "2021-10-10T04:11:49.000Z" - }, - "end": { - "$date": "2021-10-10T08:14:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9db63228-2aec-4682-9164-24e3ee0bc290", - "start": { - "$date": "2021-10-10T08:14:49.000Z" - }, - "end": { - "$date": "2021-10-10T08:19:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2081acf8-ab05-4e5d-9924-1b53069d2160", - "start": { - "$date": "2021-10-10T08:19:49.000Z" - }, - "end": { - "$date": "2021-10-10T09:50:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c483944e-4841-4272-b52a-f51b568bd0da", - "start": { - "$date": "2021-10-10T09:50:49.000Z" - }, - "end": { - "$date": "2021-10-10T09:55:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9ad0d0ef-fd96-4e0c-84e1-a09b9cc6da19", - "start": { - "$date": "2021-10-10T09:55:49.000Z" - }, - "end": { - "$date": "2021-10-10T10:05:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e98acc3b-365b-424b-aafe-73df3632f3b3", - "start": { - "$date": "2021-10-10T10:05:49.000Z" - }, - "end": { - "$date": "2021-10-10T10:59:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b994a99-1e16-4507-ab0f-2bf21ff10dc0", - "start": { - "$date": "2021-10-10T10:59:49.000Z" - }, - "end": { - "$date": "2021-10-10T05:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcc3335b-9e4f-4580-a75b-2dc35cb54442", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-09T21:34:40.000Z" - }, - "end": { - "$date": "2021-10-09T22:09:33.000Z" - }, - "events": [ - { - "uuid": "7f571656-c11c-4649-acf0-01d580527c86", - "start": { - "$date": "2021-10-09T21:34:40.000Z" - }, - "end": { - "$date": "2021-10-09T22:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "a5ad7365-bda6-441d-b151-4803a2cc21a7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-09T21:05:14.000Z" - }, - "end": { - "$date": "2021-10-09T22:29:01.000Z" - }, - "events": [ - { - "uuid": "507d9cf5-9a9f-4b33-a57d-8ad9a8b6853c", - "start": { - "$date": "2021-10-09T21:05:14.000Z" - }, - "end": { - "$date": "2021-10-09T22:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcb1cf93-ad54-45df-909e-77426daad679", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-09T21:33:15.000Z" - }, - "end": { - "$date": "2021-10-09T22:10:25.000Z" - }, - "events": [ - { - "uuid": "e9e3cad8-3a6f-4ce6-9b00-3a8a2a9adfab", - "start": { - "$date": "2021-10-09T21:33:15.000Z" - }, - "end": { - "$date": "2021-10-09T22:10:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddd6437c-4665-49d4-8414-6f1db56a967f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-09T22:22:21.000Z" - }, - "end": { - "$date": "2021-10-09T22:48:46.000Z" - }, - "events": [ - { - "uuid": "fc6d1334-b7c4-442e-96e9-5a6a4a20f3ef", - "start": { - "$date": "2021-10-09T22:22:21.000Z" - }, - "end": { - "$date": "2021-10-09T22:48:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d0b6f21-2871-4508-a80e-bfc6f109df53", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-09T22:20:12.000Z" - }, - "end": { - "$date": "2021-10-09T22:48:54.000Z" - }, - "events": [ - { - "uuid": "2f546cbe-dec5-4527-998d-3e8d4868f805", - "start": { - "$date": "2021-10-09T22:20:12.000Z" - }, - "end": { - "$date": "2021-10-09T22:48:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "52b6afd6-74be-4482-a90e-b2d0b5f26fd8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-09T22:30:12.000Z" - }, - "end": { - "$date": "2021-10-10T00:06:48.000Z" - }, - "events": [ - { - "uuid": "0a1ac7ed-26b3-4790-8bf7-f6f994aadf00", - "start": { - "$date": "2021-10-09T22:30:12.000Z" - }, - "end": { - "$date": "2021-10-10T00:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b9ff5e4-9970-4e67-9c3c-4bea3d207a1f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-09T22:51:32.000Z" - }, - "end": { - "$date": "2021-10-09T23:07:28.000Z" - }, - "events": [ - { - "uuid": "ed7669d5-49ef-440c-8eb1-9a66808a74df", - "start": { - "$date": "2021-10-09T22:51:32.000Z" - }, - "end": { - "$date": "2021-10-09T23:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8761389-1619-470d-a1ff-a8333c6ed24d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-09T22:56:09.000Z" - }, - "end": { - "$date": "2021-10-09T22:57:25.000Z" - }, - "events": [ - { - "uuid": "1a855310-342e-4df2-b1c2-08821ec40051", - "start": { - "$date": "2021-10-09T22:56:09.000Z" - }, - "end": { - "$date": "2021-10-09T22:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e1c3e68-ce2e-41cf-962e-2fd6b804a45e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-09T23:09:13.000Z" - }, - "end": { - "$date": "2021-10-09T23:27:35.000Z" - }, - "events": [ - { - "uuid": "06fcefb4-fc7c-4dff-bde8-10e090ec4a9e", - "start": { - "$date": "2021-10-09T23:09:13.000Z" - }, - "end": { - "$date": "2021-10-09T23:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "431ff67a-31dc-4cd5-9f87-3297e36d5081", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-09T23:29:55.000Z" - }, - "end": { - "$date": "2021-10-09T23:49:42.000Z" - }, - "events": [ - { - "uuid": "4b65a652-44aa-45aa-8997-64e9e3c1dfbf", - "start": { - "$date": "2021-10-09T23:29:55.000Z" - }, - "end": { - "$date": "2021-10-09T23:49:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "71a0fe19-6368-4c6b-93e9-5dc03681eac2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-09T19:00:23.000Z" - }, - "end": { - "$date": "2021-10-09T23:48:41.000Z" - }, - "events": [ - { - "uuid": "46f33a37-5b2f-41fc-8323-1a5bd9811daa", - "start": { - "$date": "2021-10-09T19:00:23.000Z" - }, - "end": { - "$date": "2021-10-09T23:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc648f04-32a4-41be-8774-bd114a3492aa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-09T23:54:40.000Z" - }, - "end": { - "$date": "2021-10-10T00:08:20.000Z" - }, - "events": [ - { - "uuid": "8cc850ae-223a-4a41-99f1-e201e70b5e67", - "start": { - "$date": "2021-10-09T23:54:40.000Z" - }, - "end": { - "$date": "2021-10-10T00:08:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b1061a5-6e27-480a-8171-68c4311fd1de", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T00:12:12.000Z" - }, - "end": { - "$date": "2021-10-10T00:34:15.000Z" - }, - "events": [ - { - "uuid": "20c24747-e350-40a8-890a-ddf391d24f09", - "start": { - "$date": "2021-10-10T00:12:12.000Z" - }, - "end": { - "$date": "2021-10-10T00:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f146ca02-a173-4f26-811e-f7114bfe57ca", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-10T02:00:07.000Z" - }, - "end": { - "$date": "2021-10-10T02:00:17.000Z" - }, - "events": [ - { - "uuid": "59486604-dd02-42ef-9709-0b2ba0197631", - "start": { - "$date": "2021-10-10T02:00:07.000Z" - }, - "end": { - "$date": "2021-10-10T02:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8721a18b-ca6f-4900-a1fa-29db574c1fae", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T00:36:45.000Z" - }, - "end": { - "$date": "2021-10-10T00:59:08.000Z" - }, - "events": [ - { - "uuid": "064e3c32-3c1b-47e9-b05a-7dc08ad968f7", - "start": { - "$date": "2021-10-10T00:36:45.000Z" - }, - "end": { - "$date": "2021-10-10T00:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4cc3e107-352e-4b97-85ef-4758c8698f2c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-10T00:40:11.000Z" - }, - "end": { - "$date": "2021-10-10T01:48:28.000Z" - }, - "events": [ - { - "uuid": "11ee3448-3b45-4bad-b727-7a3154202c3a", - "start": { - "$date": "2021-10-10T00:40:11.000Z" - }, - "end": { - "$date": "2021-10-10T01:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b788795b-992e-4047-81c9-6f0b39d54192", - "uuid": "6556522d-4d64-4009-a2e0-8e525a59efa6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-10T00:55:03.000Z" - }, - "end": { - "$date": "2021-10-10T03:49:10.000Z" - }, - "events": [ - { - "uuid": "82ead0ed-f975-497e-a0e0-a07f04a67f8b", - "start": { - "$date": "2021-10-10T00:55:03.000Z" - }, - "end": { - "$date": "2021-10-10T03:49:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42e19f9b-584a-4232-8819-344e5e7c6ade", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T01:07:59.000Z" - }, - "end": { - "$date": "2021-10-10T01:25:51.000Z" - }, - "events": [ - { - "uuid": "631f9757-d6df-4fdc-b91f-faeb7e9f9401", - "start": { - "$date": "2021-10-10T01:07:59.000Z" - }, - "end": { - "$date": "2021-10-10T01:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29e9fd82-8f89-4986-891c-b1940eefe529", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T01:28:51.000Z" - }, - "end": { - "$date": "2021-10-10T01:44:01.000Z" - }, - "events": [ - { - "uuid": "49358944-d915-4f54-a544-bf3fd5b5a5d1", - "start": { - "$date": "2021-10-10T01:28:51.000Z" - }, - "end": { - "$date": "2021-10-10T01:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "863dc5c6-1448-4f11-8483-3358c8d57cfd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T01:47:13.000Z" - }, - "end": { - "$date": "2021-10-10T02:05:24.000Z" - }, - "events": [ - { - "uuid": "9fde9701-093b-4ea4-ac62-7fbe930a8860", - "start": { - "$date": "2021-10-10T01:47:13.000Z" - }, - "end": { - "$date": "2021-10-10T02:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00c87c64-999e-49fc-96d6-1ec2550a1800", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T02:44:49.000Z" - }, - "end": { - "$date": "2021-10-10T02:58:40.000Z" - }, - "events": [ - { - "uuid": "5f105c4c-1731-4841-82d1-0c46d461b86a", - "start": { - "$date": "2021-10-10T02:44:49.000Z" - }, - "end": { - "$date": "2021-10-10T02:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b3a6c196-c5fe-4936-9859-ddb114f1828a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-10T02:52:56.000Z" - }, - "end": { - "$date": "2021-10-10T09:00:15.000Z" - }, - "events": [ - { - "uuid": "193a5fd7-cac4-443d-8987-59fc013af6f6", - "start": { - "$date": "2021-10-10T02:52:56.000Z" - }, - "end": { - "$date": "2021-10-10T09:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "93e50d80-4da6-49ce-884a-e897fba764ef", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-10T02:55:20.000Z" - }, - "end": { - "$date": "2021-10-10T08:58:11.000Z" - }, - "events": [ - { - "uuid": "37232118-94b3-478d-84f2-c565b06ae482", - "start": { - "$date": "2021-10-10T02:55:20.000Z" - }, - "end": { - "$date": "2021-10-10T08:58:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4384278-28c9-419f-9846-ffa5fb418797", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T03:18:18.000Z" - }, - "end": { - "$date": "2021-10-10T03:27:49.000Z" - }, - "events": [ - { - "uuid": "6f6418e1-3a21-40fc-9051-99819f23cd71", - "start": { - "$date": "2021-10-10T03:18:18.000Z" - }, - "end": { - "$date": "2021-10-10T03:27:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "5b6a1408-486f-45a1-a93e-96ee876ccfe6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T03:13:51.000Z" - }, - "end": { - "$date": "2021-10-10T03:15:28.000Z" - }, - "events": [ - { - "uuid": "421f83a9-ae3f-4bde-8e2a-0729f31e9da6", - "start": { - "$date": "2021-10-10T03:13:51.000Z" - }, - "end": { - "$date": "2021-10-10T03:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f51f3296-301c-4901-b6b8-e1e36df2a201", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T03:25:58.000Z" - }, - "end": { - "$date": "2021-10-10T03:28:14.000Z" - }, - "events": [ - { - "uuid": "47bd5efd-5ab2-49d0-9c20-7faca9d99bf5", - "start": { - "$date": "2021-10-10T03:25:58.000Z" - }, - "end": { - "$date": "2021-10-10T03:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d769c3f-652a-4c42-89e2-7496f09c06d0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-10T03:29:49.000Z" - }, - "end": { - "$date": "2021-10-10T03:34:39.000Z" - }, - "events": [ - { - "uuid": "60a632b9-dfe2-4e4b-8a17-76cb02b668c4", - "start": { - "$date": "2021-10-10T03:29:49.000Z" - }, - "end": { - "$date": "2021-10-10T03:34:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9729b911-32a1-4d2c-abce-31d75e4dbbed", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T03:29:49.000Z" - }, - "end": { - "$date": "2021-10-10T03:34:40.000Z" - }, - "events": [ - { - "uuid": "68bc6685-d088-4837-b82e-8728df91caaa", - "start": { - "$date": "2021-10-10T03:29:49.000Z" - }, - "end": { - "$date": "2021-10-10T03:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65576364-0c55-4adb-8a14-847adf7d81e4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T03:34:10.000Z" - }, - "end": { - "$date": "2021-10-10T03:58:48.000Z" - }, - "events": [ - { - "uuid": "6047c043-94ce-4dc8-9904-665b8f683751", - "start": { - "$date": "2021-10-10T03:34:10.000Z" - }, - "end": { - "$date": "2021-10-10T03:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfb41bc8-9051-4806-a2e4-0dd31813395a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-10T03:38:55.000Z" - }, - "end": { - "$date": "2021-10-10T04:03:11.000Z" - }, - "events": [ - { - "uuid": "9ce6f0d0-247a-4a89-b409-58e784f1b1b3", - "start": { - "$date": "2021-10-10T03:38:55.000Z" - }, - "end": { - "$date": "2021-10-10T04:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d0f8a15-8256-4b85-aa1b-b0e856e2b404", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T03:39:32.000Z" - }, - "end": { - "$date": "2021-10-10T04:03:17.000Z" - }, - "events": [ - { - "uuid": "0412dfb8-7d2f-49d3-8f85-2173beab36ac", - "start": { - "$date": "2021-10-10T03:39:32.000Z" - }, - "end": { - "$date": "2021-10-10T04:03:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dfa1b79a-f3f7-4315-8ada-0b42bf335176", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-10T03:52:26.000Z" - }, - "end": { - "$date": "2021-10-10T03:56:51.000Z" - }, - "events": [ - { - "uuid": "75d0c23e-4d06-4ead-9ad5-b5006b8bd3ca", - "start": { - "$date": "2021-10-10T03:52:26.000Z" - }, - "end": { - "$date": "2021-10-10T03:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9da79126-8210-444a-89ba-00ad140e9711", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T04:01:58.000Z" - }, - "end": { - "$date": "2021-10-10T04:24:41.000Z" - }, - "events": [ - { - "uuid": "b7f24344-80c4-45b4-8c4f-1cb2981b5c0f", - "start": { - "$date": "2021-10-10T04:01:58.000Z" - }, - "end": { - "$date": "2021-10-10T04:24:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "92c2a003-576e-434e-a706-1b1fed865703", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-10T04:06:00.000Z" - }, - "end": { - "$date": "2021-10-10T05:50:26.000Z" - }, - "events": [ - { - "uuid": "ed2751c2-a2f0-4bac-bd21-7b19ffd02c8b", - "start": { - "$date": "2021-10-10T04:06:00.000Z" - }, - "end": { - "$date": "2021-10-10T05:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fe80e80-1868-4d1c-b2e6-d395f2fa6fde", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-10T04:20:02.000Z" - }, - "end": { - "$date": "2021-10-10T04:41:02.000Z" - }, - "events": [ - { - "uuid": "fca5375a-d2e0-4181-aa26-3a498cef184c", - "start": { - "$date": "2021-10-10T04:20:02.000Z" - }, - "end": { - "$date": "2021-10-10T04:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58448532-e0af-4a11-8b06-df2dca310261", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T04:20:30.000Z" - }, - "end": { - "$date": "2021-10-10T04:41:08.000Z" - }, - "events": [ - { - "uuid": "9d1c599e-6408-4670-961e-ba0b5f80fb44", - "start": { - "$date": "2021-10-10T04:20:30.000Z" - }, - "end": { - "$date": "2021-10-10T04:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9b796c1-c7db-4c98-aee0-7f63894e9dd9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T04:27:06.000Z" - }, - "end": { - "$date": "2021-10-10T04:53:54.000Z" - }, - "events": [ - { - "uuid": "1b56f610-d38e-422a-825b-3bae5c5c425b", - "start": { - "$date": "2021-10-10T04:27:06.000Z" - }, - "end": { - "$date": "2021-10-10T04:53:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f342780f-8805-4a9f-8ac0-e60ccc8e9532", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-10T04:38:27.000Z" - }, - "end": { - "$date": "2021-10-10T06:37:51.000Z" - }, - "events": [ - { - "uuid": "3c3831f3-52fe-4f46-aa83-b610df382780", - "start": { - "$date": "2021-10-10T04:38:27.000Z" - }, - "end": { - "$date": "2021-10-10T06:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08990c39-5dd3-4d6e-9da8-31e6de92bafa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-10T04:48:18.000Z" - }, - "end": { - "$date": "2021-10-10T05:02:32.000Z" - }, - "events": [ - { - "uuid": "b7cb4f00-7a70-4ec8-912d-44c61d18fa90", - "start": { - "$date": "2021-10-10T04:48:18.000Z" - }, - "end": { - "$date": "2021-10-10T05:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "946a5129-b4b1-4070-9505-e53f8037c5e2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T04:47:51.000Z" - }, - "end": { - "$date": "2021-10-10T05:02:38.000Z" - }, - "events": [ - { - "uuid": "b1880ed6-be7a-42f0-9261-4f52f6d18c36", - "start": { - "$date": "2021-10-10T04:47:51.000Z" - }, - "end": { - "$date": "2021-10-10T05:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cd43dbb-76a2-46a7-8d82-fe0650c278a9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T04:56:14.000Z" - }, - "end": { - "$date": "2021-10-10T05:11:26.000Z" - }, - "events": [ - { - "uuid": "4f060799-1473-48af-8691-d62ae5d1eb52", - "start": { - "$date": "2021-10-10T04:56:14.000Z" - }, - "end": { - "$date": "2021-10-10T05:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94c362e5-4dd7-4121-baf9-2d8b71a7e098", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-10T05:05:18.000Z" - }, - "end": { - "$date": "2021-10-10T05:28:38.000Z" - }, - "events": [ - { - "uuid": "ec97bfde-fe2b-4272-8a1f-2da7d72ccd4f", - "start": { - "$date": "2021-10-10T05:05:18.000Z" - }, - "end": { - "$date": "2021-10-10T05:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d10316ed-4e09-48cd-9f89-59890766c22c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-10T05:05:42.000Z" - }, - "end": { - "$date": "2021-10-10T05:28:45.000Z" - }, - "events": [ - { - "uuid": "39cccdf4-a2d6-4f71-9cd1-902743637e0f", - "start": { - "$date": "2021-10-10T05:05:42.000Z" - }, - "end": { - "$date": "2021-10-10T05:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9dad1539-49c0-4349-8935-6dfc0a855738", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T05:13:21.000Z" - }, - "end": { - "$date": "2021-10-10T05:29:43.000Z" - }, - "events": [ - { - "uuid": "fe43f895-a533-4f27-8095-9f73e408f509", - "start": { - "$date": "2021-10-10T05:13:21.000Z" - }, - "end": { - "$date": "2021-10-10T05:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a4b6901-2a3a-4281-9a1f-dc74e4f32f38", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T05:35:29.000Z" - }, - "end": { - "$date": "2021-10-10T05:53:21.000Z" - }, - "events": [ - { - "uuid": "5c907c4e-96f8-4c0d-a222-38e67a5aaaf7", - "start": { - "$date": "2021-10-10T05:35:29.000Z" - }, - "end": { - "$date": "2021-10-10T05:53:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbb6134b-7b34-41f9-8528-fa0277a32702", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-10T05:54:26.000Z" - }, - "end": { - "$date": "2021-10-10T06:12:47.000Z" - }, - "events": [ - { - "uuid": "c0ee8053-ba3b-4658-949a-5b166269b262", - "start": { - "$date": "2021-10-10T05:54:26.000Z" - }, - "end": { - "$date": "2021-10-10T06:12:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13de5dd5-ca79-496e-b641-8bb329c017ad", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T05:55:26.000Z" - }, - "end": { - "$date": "2021-10-10T06:11:13.000Z" - }, - "events": [ - { - "uuid": "cc74a06c-841f-48de-841b-2ae0ccfc87b5", - "start": { - "$date": "2021-10-10T05:55:26.000Z" - }, - "end": { - "$date": "2021-10-10T06:11:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a64f4a07-0a84-4e79-976a-6aa028d0f72d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T06:12:53.000Z" - }, - "end": { - "$date": "2021-10-10T06:33:15.000Z" - }, - "events": [ - { - "uuid": "77a63db5-b3d6-4274-ba88-56aa1f0b38b0", - "start": { - "$date": "2021-10-10T06:12:53.000Z" - }, - "end": { - "$date": "2021-10-10T06:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c78c0329-9935-404c-a439-0c1114aa4bf4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-10T06:25:58.000Z" - }, - "end": { - "$date": "2021-10-10T06:45:29.000Z" - }, - "events": [ - { - "uuid": "a0ecaa10-8c61-4fca-99cd-b45c524a8167", - "start": { - "$date": "2021-10-10T06:25:58.000Z" - }, - "end": { - "$date": "2021-10-10T06:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f8c1455-cc05-43e8-9b7e-7e499b39c834", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T06:35:11.000Z" - }, - "end": { - "$date": "2021-10-10T06:52:48.000Z" - }, - "events": [ - { - "uuid": "1e49be67-f4ea-4929-8e18-232c6dc857c4", - "start": { - "$date": "2021-10-10T06:35:11.000Z" - }, - "end": { - "$date": "2021-10-10T06:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a02f668a-e0e4-475f-ac04-6c340c6787a3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-10T06:57:46.000Z" - }, - "end": { - "$date": "2021-10-10T07:41:02.000Z" - }, - "events": [ - { - "uuid": "7c9a838f-1ee8-4b0d-b2fc-f918c7db5673", - "start": { - "$date": "2021-10-10T06:57:46.000Z" - }, - "end": { - "$date": "2021-10-10T07:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2ebc8d0-4835-4fc9-85fa-d4e750cad01f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T06:54:48.000Z" - }, - "end": { - "$date": "2021-10-10T07:08:35.000Z" - }, - "events": [ - { - "uuid": "276fb3d2-b339-4ee9-86d9-136df557b31a", - "start": { - "$date": "2021-10-10T06:54:48.000Z" - }, - "end": { - "$date": "2021-10-10T07:08:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84906f80-f72e-4c6f-9e8e-f0f289fba636", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T07:10:55.000Z" - }, - "end": { - "$date": "2021-10-10T07:25:26.000Z" - }, - "events": [ - { - "uuid": "52650875-b36f-41ee-82a9-7faaf250f1d1", - "start": { - "$date": "2021-10-10T07:10:55.000Z" - }, - "end": { - "$date": "2021-10-10T07:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5af99b5d-f254-40cd-a319-e78e86adacda", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T07:27:17.000Z" - }, - "end": { - "$date": "2021-10-10T07:45:22.000Z" - }, - "events": [ - { - "uuid": "b7104bf5-4e36-4212-956d-451127f243c1", - "start": { - "$date": "2021-10-10T07:27:17.000Z" - }, - "end": { - "$date": "2021-10-10T07:45:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3f8c1149-14df-4d1c-ad43-319b5ea792cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-10T07:25:46.000Z" - }, - "end": { - "$date": "2021-10-10T08:53:43.000Z" - }, - "events": [ - { - "uuid": "10a379d2-4637-4d29-b819-3fb2e4ae2975", - "start": { - "$date": "2021-10-10T07:25:46.000Z" - }, - "end": { - "$date": "2021-10-10T08:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4197dc37-6152-484c-ab4d-34745ff4a307", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-10T08:53:40.000Z" - }, - "end": { - "$date": "2021-10-10T08:53:43.000Z" - }, - "events": [ - { - "uuid": "3e87139d-136c-4395-b275-509d8c655883", - "start": { - "$date": "2021-10-10T08:53:40.000Z" - }, - "end": { - "$date": "2021-10-10T08:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fbd2f04-b34c-4fd7-bf57-bca4f77def73", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T07:46:59.000Z" - }, - "end": { - "$date": "2021-10-10T08:05:26.000Z" - }, - "events": [ - { - "uuid": "74bca859-21b4-468c-b280-c01673b2bd17", - "start": { - "$date": "2021-10-10T07:46:59.000Z" - }, - "end": { - "$date": "2021-10-10T08:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d295863-97b4-4521-8a07-f082584425e3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T08:08:57.000Z" - }, - "end": { - "$date": "2021-10-10T08:18:46.000Z" - }, - "events": [ - { - "uuid": "385752b1-a7e1-4c52-aefb-82f6e2b98e01", - "start": { - "$date": "2021-10-10T08:08:57.000Z" - }, - "end": { - "$date": "2021-10-10T08:18:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12be27cf-e465-4f56-a1e3-0cb39a80e47f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T08:20:43.000Z" - }, - "end": { - "$date": "2021-10-10T08:40:45.000Z" - }, - "events": [ - { - "uuid": "fc2ef6e9-1c9d-4e08-a4b6-227bd0f13a48", - "start": { - "$date": "2021-10-10T08:20:43.000Z" - }, - "end": { - "$date": "2021-10-10T08:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf6c1e8d-a47c-403c-a93b-ac12039f5537", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T08:42:41.000Z" - }, - "end": { - "$date": "2021-10-10T08:59:13.000Z" - }, - "events": [ - { - "uuid": "912cc11b-fdc2-481d-bd3c-fc12fb921335", - "start": { - "$date": "2021-10-10T08:42:41.000Z" - }, - "end": { - "$date": "2021-10-10T08:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7e71a87-a5f9-4071-81a6-d3f5e0d549ff", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-10T09:01:13.000Z" - }, - "end": { - "$date": "2021-10-10T09:16:15.000Z" - }, - "events": [ - { - "uuid": "c264b9b8-b824-4fb1-bd77-29d3a0a47921", - "start": { - "$date": "2021-10-10T09:01:13.000Z" - }, - "end": { - "$date": "2021-10-10T09:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1cb8392f-f9ef-438e-822f-2351b233dda5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-10T15:17:34.000Z" - }, - "end": { - "$date": "2021-10-10T16:07:58.000Z" - }, - "events": [ - { - "uuid": "798f8133-9cce-45b9-996e-6300072f7f32", - "start": { - "$date": "2021-10-10T15:17:34.000Z" - }, - "end": { - "$date": "2021-10-10T16:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "44918ba4-b4c3-4ca2-bf89-19787af33481", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-10T16:23:44.000Z" - }, - "end": { - "$date": "2021-10-10T17:29:53.000Z" - }, - "events": [ - { - "uuid": "1f49ce83-1670-470f-839f-01c74c103e35", - "start": { - "$date": "2021-10-10T16:23:44.000Z" - }, - "end": { - "$date": "2021-10-10T17:29:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c4b1320-9ab2-439f-b785-0c5c8a80a6ab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-10T17:11:47.000Z" - }, - "end": { - "$date": "2021-10-10T18:29:43.000Z" - }, - "events": [ - { - "uuid": "5becf3d3-ff43-46a4-b8f6-ead2bc214616", - "start": { - "$date": "2021-10-10T17:11:47.000Z" - }, - "end": { - "$date": "2021-10-10T17:23:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31ebc527-4728-4b97-b0b9-d9b3a554e80d", - "start": { - "$date": "2021-10-10T17:23:47.000Z" - }, - "end": { - "$date": "2021-10-10T17:45:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "597f7ab3-02e9-4a31-b69f-565bdbd305f3", - "start": { - "$date": "2021-10-10T17:45:47.000Z" - }, - "end": { - "$date": "2021-10-10T18:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93fbf153-3289-4f22-939c-047b33907505", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-10T17:55:25.000Z" - }, - "end": { - "$date": "2021-10-10T18:25:30.000Z" - }, - "events": [ - { - "uuid": "5a564cb8-ce39-4440-9048-e3653fde51e7", - "start": { - "$date": "2021-10-10T17:55:25.000Z" - }, - "end": { - "$date": "2021-10-10T18:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4fd9309c-9041-413b-9831-c76e1a77d649", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-10T19:02:59.000Z" - }, - "end": { - "$date": "2021-10-10T19:34:33.000Z" - }, - "events": [ - { - "uuid": "15c85528-5826-42b0-aebf-abc3431462a7", - "start": { - "$date": "2021-10-10T19:02:59.000Z" - }, - "end": { - "$date": "2021-10-10T19:34:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "8459d9aa-31a8-46c5-a742-f44830582730", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-10T19:48:18.000Z" - }, - "end": { - "$date": "2021-10-10T20:17:25.000Z" - }, - "events": [ - { - "uuid": "43c1f4ad-2729-46d2-b1ff-08f90252d601", - "start": { - "$date": "2021-10-10T19:48:18.000Z" - }, - "end": { - "$date": "2021-10-10T20:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7cfa47d5-ba12-49cb-b7c1-0170d4a01118", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-10T20:09:32.000Z" - }, - "end": { - "$date": "2021-10-10T20:35:29.000Z" - }, - "events": [ - { - "uuid": "268b9fec-45af-4aae-bb90-2c0e5161372c", - "start": { - "$date": "2021-10-10T20:09:32.000Z" - }, - "end": { - "$date": "2021-10-10T20:35:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa175db8-4af4-4c22-8d10-4f458d920e90", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-10T20:43:16.000Z" - }, - "end": { - "$date": "2021-10-10T21:19:33.000Z" - }, - "events": [ - { - "uuid": "b7195595-529e-4def-ba26-d98705e48f99", - "start": { - "$date": "2021-10-10T20:43:16.000Z" - }, - "end": { - "$date": "2021-10-10T20:47:16.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "9626222f-c2ae-4733-a9c9-9ccc2f87bc4f", - "start": { - "$date": "2021-10-10T20:47:16.000Z" - }, - "end": { - "$date": "2021-10-10T21:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6c131d2-5495-4107-9207-b1b22d0972e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-10T21:25:19.000Z" - }, - "end": { - "$date": "2021-10-10T21:56:07.000Z" - }, - "events": [ - { - "uuid": "d0f61d7f-04d0-4db9-a12a-a1335ef30a76", - "start": { - "$date": "2021-10-10T21:25:19.000Z" - }, - "end": { - "$date": "2021-10-10T21:56:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c6c3b58f-9cb7-4016-810d-600cb511003b", - "uuid": "7c62c7e8-f3e5-48a3-89ce-1355389aecc6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-10T21:46:10.000Z" - }, - "end": { - "$date": "2021-10-10T21:48:40.000Z" - }, - "events": [ - { - "uuid": "0b26838d-ec0e-476f-b083-ede81e574e3f", - "start": { - "$date": "2021-10-10T21:46:10.000Z" - }, - "end": { - "$date": "2021-10-10T21:48:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "331946cf-8338-4b0a-ba72-999e2f2b5368", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-10T21:54:47.000Z" - }, - "end": { - "$date": "2021-10-10T23:58:52.000Z" - }, - "events": [ - { - "uuid": "fe671dcd-6d8c-444f-9bcc-98c67e717299", - "start": { - "$date": "2021-10-10T21:54:47.000Z" - }, - "end": { - "$date": "2021-10-10T23:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f17058f7-a54d-4ee8-a355-7c10f3a82b5d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-10T22:44:42.000Z" - }, - "end": { - "$date": "2021-10-10T23:08:00.000Z" - }, - "events": [ - { - "uuid": "40417f92-12ab-44f6-8cf9-b2fb83c3f90f", - "start": { - "$date": "2021-10-10T22:44:42.000Z" - }, - "end": { - "$date": "2021-10-10T23:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "782f30ad-4a81-4084-aa3f-7545e0fb7dc7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-10T23:05:38.000Z" - }, - "end": { - "$date": "2021-10-11T01:11:04.000Z" - }, - "events": [ - { - "uuid": "aecce788-5961-4a35-b078-7b9a4982d8bf", - "start": { - "$date": "2021-10-10T23:05:38.000Z" - }, - "end": { - "$date": "2021-10-11T01:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27251ea9-b59f-40ed-8283-ed825b8e2f84", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-10T23:25:10.000Z" - }, - "end": { - "$date": "2021-10-10T23:43:35.000Z" - }, - "events": [ - { - "uuid": "8bd84a60-70ef-4ad0-9ed0-3be37647fea4", - "start": { - "$date": "2021-10-10T23:25:10.000Z" - }, - "end": { - "$date": "2021-10-10T23:43:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2e8146ff-0921-43b0-8c3b-dc3ec3738084", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-10T23:23:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:11:55.000Z" - }, - "events": [ - { - "uuid": "94611569-7457-4e52-bd7a-5a337c121fb6", - "start": { - "$date": "2021-10-10T23:23:18.000Z" - }, - "end": { - "$date": "2021-10-11T01:21:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bdb51326-c0cb-406a-ac75-757fe1b5ff16", - "start": { - "$date": "2021-10-11T01:21:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:03:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e629259c-3440-444e-aa0a-0a462b41647f", - "start": { - "$date": "2021-10-11T02:03:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:07:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8fe89c2c-ac6e-4db7-b995-67f8a72460b3", - "start": { - "$date": "2021-10-11T02:07:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:11:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7fe6b4c-b4c2-42ae-8d26-6458836e8ed5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-10T23:48:31.000Z" - }, - "end": { - "$date": "2021-10-11T00:29:32.000Z" - }, - "events": [ - { - "uuid": "e2fca638-0592-4a80-bac5-e351764da290", - "start": { - "$date": "2021-10-10T23:48:31.000Z" - }, - "end": { - "$date": "2021-10-11T00:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "12ed4cb1-0821-4ea9-8196-c25e4573520e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-11T00:00:49.000Z" - }, - "end": { - "$date": "2021-10-11T01:01:06.000Z" - }, - "events": [ - { - "uuid": "f633871c-5e55-4701-b679-a386efe8a7ac", - "start": { - "$date": "2021-10-11T00:00:49.000Z" - }, - "end": { - "$date": "2021-10-11T01:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c731a6f3-389d-4441-aeda-3c2c783a5b4b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T00:33:39.000Z" - }, - "end": { - "$date": "2021-10-11T00:44:49.000Z" - }, - "events": [ - { - "uuid": "2f5501fb-93e4-4089-b75c-1cbd174521b8", - "start": { - "$date": "2021-10-11T00:33:39.000Z" - }, - "end": { - "$date": "2021-10-11T00:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c618c540-3fcf-4369-87d1-e8801b71d28c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T00:46:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:07:12.000Z" - }, - "events": [ - { - "uuid": "2e6f9ea2-3df2-4ffe-a51a-b91bd9eba0eb", - "start": { - "$date": "2021-10-11T00:46:18.000Z" - }, - "end": { - "$date": "2021-10-11T01:06:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c894e1c1-ad72-4331-b3bd-1e9bcefb2ddf", - "start": { - "$date": "2021-10-11T01:06:18.000Z" - }, - "end": { - "$date": "2021-10-11T01:39:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28844cd0-7ab1-464e-9550-79873b420816", - "start": { - "$date": "2021-10-11T01:39:18.000Z" - }, - "end": { - "$date": "2021-10-11T01:41:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb1c89ff-f565-43b7-8e9d-d50994000010", - "start": { - "$date": "2021-10-11T01:41:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:03:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7942e5ae-ec6f-4aa2-a7de-a09b9bd758f1", - "start": { - "$date": "2021-10-11T02:03:18.000Z" - }, - "end": { - "$date": "2021-10-11T02:07:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "13632398-eb22-471a-83db-c40e0077ede8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-11T00:53:48.000Z" - }, - "end": { - "$date": "2021-10-11T02:05:24.000Z" - }, - "events": [ - { - "uuid": "ff084bac-855c-4ac9-a97d-56986a5fad39", - "start": { - "$date": "2021-10-11T00:53:48.000Z" - }, - "end": { - "$date": "2021-10-11T02:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "34ecca5d-8ee9-4bea-8d59-50cd20754d1a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-11T01:01:54.000Z" - }, - "end": { - "$date": "2021-10-11T02:06:54.000Z" - }, - "events": [ - { - "uuid": "25a497f3-fbbf-4273-8130-fee40b8db809", - "start": { - "$date": "2021-10-11T01:01:54.000Z" - }, - "end": { - "$date": "2021-10-11T02:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3b045231-9b0a-4aec-8643-d05b32168d8c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-10T21:46:24.000Z" - }, - "end": { - "$date": "2021-10-11T04:58:12.000Z" - }, - "events": [ - { - "uuid": "1b6ffb57-2beb-4c1a-a0b3-fe600dffc759", - "start": { - "$date": "2021-10-10T21:46:24.000Z" - }, - "end": { - "$date": "2021-10-11T04:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5782051d-0796-4d75-9f93-48894c629437", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T02:30:17.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:32.000Z" - }, - "events": [ - { - "uuid": "b73487da-5ce3-402b-8943-66580d8f2f0a", - "start": { - "$date": "2021-10-11T02:30:17.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e500617a-f1d2-4bc7-a337-06d5fc9415ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T02:30:45.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:34.000Z" - }, - "events": [ - { - "uuid": "d33bff01-0833-4f7d-b5f2-0e56d93e208d", - "start": { - "$date": "2021-10-11T02:30:45.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "139618d7-821c-4b86-b934-d61eaae93688", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-11T02:30:22.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:33.000Z" - }, - "events": [ - { - "uuid": "feb4ab9c-ebd6-4947-b0f9-32885be64c42", - "start": { - "$date": "2021-10-11T02:30:22.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b329e19-9f64-4c3d-bbd4-7e9ef92b0024", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-11T02:31:10.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:40.000Z" - }, - "events": [ - { - "uuid": "da366ce2-7f13-4bf2-82fe-09ff31a69bf0", - "start": { - "$date": "2021-10-11T02:31:10.000Z" - }, - "end": { - "$date": "2021-10-11T02:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "c7ad7545-ce0f-4765-974d-5134ec5d896b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-11T02:27:29.000Z" - }, - "end": { - "$date": "2021-10-11T02:46:46.000Z" - }, - "events": [ - { - "uuid": "80807fea-1fd6-4476-83a2-c80d848f004f", - "start": { - "$date": "2021-10-11T02:27:29.000Z" - }, - "end": { - "$date": "2021-10-11T02:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "4979acb6-1b1f-4ac3-9f9b-dceb4ee3d0df", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-11T02:51:47.000Z" - }, - "end": { - "$date": "2021-10-11T04:19:09.000Z" - }, - "events": [ - { - "uuid": "a87c791e-b8e9-4635-b6b0-3a8acdb7ae46", - "start": { - "$date": "2021-10-11T02:51:47.000Z" - }, - "end": { - "$date": "2021-10-11T04:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d5d1772-6893-41f6-a9e5-bc793c4fdae1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T02:58:18.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:08.000Z" - }, - "events": [ - { - "uuid": "9db87dc6-38b0-470a-ab97-a75d4f972cf5", - "start": { - "$date": "2021-10-11T02:58:18.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "742da036-b2ae-4f6c-8bc4-dff62c439554", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-11T02:59:25.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:11.000Z" - }, - "events": [ - { - "uuid": "a9c5906a-0481-4323-9bca-794f0ee9c850", - "start": { - "$date": "2021-10-11T02:59:25.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e19807c-16d8-4557-8527-f15af92ea192", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T02:59:30.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:05.000Z" - }, - "events": [ - { - "uuid": "b2780de4-63cf-479d-b5c7-d5b4874bec0e", - "start": { - "$date": "2021-10-11T02:59:30.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adaedc8b-d923-40c0-8c39-485e9054f1c5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-11T02:59:23.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:10.000Z" - }, - "events": [ - { - "uuid": "80a9c2a8-c655-43b1-9047-47bd9fb58d55", - "start": { - "$date": "2021-10-11T02:59:23.000Z" - }, - "end": { - "$date": "2021-10-11T03:22:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "653760b6-b1b4-4ee0-a9c6-b9807f2234de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T03:31:59.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:32.000Z" - }, - "events": [ - { - "uuid": "e4d4bc9b-df52-4f62-be0e-93ba1528ecae", - "start": { - "$date": "2021-10-11T03:31:59.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09195b8b-ce96-4d60-b4ab-23cc7fd29c3b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-11T03:32:15.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:25.000Z" - }, - "events": [ - { - "uuid": "a52a106d-3027-42a6-b543-73307e102516", - "start": { - "$date": "2021-10-11T03:32:15.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6ab0900-19fb-43dd-90c4-0af2eab51628", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-11T03:32:01.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:26.000Z" - }, - "events": [ - { - "uuid": "56b6e8b9-947e-433e-81c0-04be6ed86a28", - "start": { - "$date": "2021-10-11T03:32:01.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75ea39d8-f552-4bad-b18b-56b3c91dde57", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T03:32:00.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:33.000Z" - }, - "events": [ - { - "uuid": "4be19edf-cad2-413e-9775-6719acb67858", - "start": { - "$date": "2021-10-11T03:32:00.000Z" - }, - "end": { - "$date": "2021-10-11T04:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "52352030-3413-49c6-a415-1ff447d7747e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-11T03:40:21.000Z" - }, - "end": { - "$date": "2021-10-11T05:47:05.000Z" - }, - "events": [ - { - "uuid": "a2d74bef-1969-4ca6-9664-c65df6e63a91", - "start": { - "$date": "2021-10-11T03:40:21.000Z" - }, - "end": { - "$date": "2021-10-11T05:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "019da014-c8ba-422d-87b6-633dd6355349", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-11T03:42:21.000Z" - }, - "end": { - "$date": "2021-10-11T05:10:46.000Z" - }, - "events": [ - { - "uuid": "799bfdbf-d2be-4d31-9cd0-ca833e2714ca", - "start": { - "$date": "2021-10-11T03:42:21.000Z" - }, - "end": { - "$date": "2021-10-11T05:10:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d75709b-88fb-4d79-941e-503130313652", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T04:07:10.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:39.000Z" - }, - "events": [ - { - "uuid": "3a04c9bd-a7cd-4dcd-b327-8a3a1ea954b1", - "start": { - "$date": "2021-10-11T04:07:10.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac5a5e6a-cd77-4932-a6ef-1676b7ce0be4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-11T04:06:26.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:37.000Z" - }, - "events": [ - { - "uuid": "cdd2fbe7-e78b-4ad0-8187-99e8bf6d7405", - "start": { - "$date": "2021-10-11T04:06:26.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "246570ba-d57c-4d74-9d33-a53f8cbba8e8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-11T04:06:31.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:40.000Z" - }, - "events": [ - { - "uuid": "0c0520ba-84dc-44df-840d-30f5b08b47da", - "start": { - "$date": "2021-10-11T04:06:31.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e050c05-2212-4b38-aafa-dd1f036b4049", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T04:06:46.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:36.000Z" - }, - "events": [ - { - "uuid": "adf0d4c1-81db-4543-a593-f72f36454bb5", - "start": { - "$date": "2021-10-11T04:06:46.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b0b8ce5-b1d3-496d-8218-126225c1a0bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-11T04:06:30.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:41.000Z" - }, - "events": [ - { - "uuid": "5f545187-536b-46c6-b671-5e7220460ae8", - "start": { - "$date": "2021-10-11T04:06:30.000Z" - }, - "end": { - "$date": "2021-10-11T04:29:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bb2faf2-1313-4d9d-a8d0-aa0afde29b46", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T04:32:45.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:13.000Z" - }, - "events": [ - { - "uuid": "d507af21-7a82-4a8d-99c6-c080f218f72c", - "start": { - "$date": "2021-10-11T04:32:45.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb9ce487-8473-441a-8980-405842460a2b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-11T04:31:57.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:07.000Z" - }, - "events": [ - { - "uuid": "629b61af-5954-4386-bf1c-1d468837cd57", - "start": { - "$date": "2021-10-11T04:31:57.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a12df43-6694-4b76-8562-96a91073409a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-11T04:32:11.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:12.000Z" - }, - "events": [ - { - "uuid": "4d421bd8-2e0e-4c5c-9d5b-877643267742", - "start": { - "$date": "2021-10-11T04:32:11.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7409a7bf-d3bc-4e33-af44-c540c9a96885", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T04:32:01.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:06.000Z" - }, - "events": [ - { - "uuid": "edb7bdfc-c149-46c5-8947-34958d42b84f", - "start": { - "$date": "2021-10-11T04:32:01.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6393f98-419b-4fc1-8b9d-76138fe691e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-11T04:32:01.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:17.000Z" - }, - "events": [ - { - "uuid": "2a3d0f38-0446-4871-b849-2025513fa584", - "start": { - "$date": "2021-10-11T04:32:01.000Z" - }, - "end": { - "$date": "2021-10-11T04:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "85ae0871-e762-4699-a116-3d268ca25bee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-11T13:30:13.000Z" - }, - "end": { - "$date": "2021-10-11T15:15:11.000Z" - }, - "events": [ - { - "uuid": "aef94a4f-7054-4360-b334-9e1e14852c2d", - "start": { - "$date": "2021-10-11T13:30:13.000Z" - }, - "end": { - "$date": "2021-10-11T15:15:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "89ea2cd0-6f4d-428d-8119-10b00cf78e77", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-11T14:16:04.000Z" - }, - "end": { - "$date": "2021-10-11T14:16:26.000Z" - }, - "events": [ - { - "uuid": "ca728678-20f5-47f4-9cb1-5ecf82e408d2", - "start": { - "$date": "2021-10-11T14:16:04.000Z" - }, - "end": { - "$date": "2021-10-11T14:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "2461d12f-ff73-4498-8410-c324d13618cb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-11T15:08:33.000Z" - }, - "end": { - "$date": "2021-10-11T15:09:13.000Z" - }, - "events": [ - { - "uuid": "1737cb28-e3fc-4674-ae6a-ef12225becab", - "start": { - "$date": "2021-10-11T15:08:33.000Z" - }, - "end": { - "$date": "2021-10-11T15:56:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a658056-1331-425b-bcd0-190329915403", - "start": { - "$date": "2021-10-11T15:56:33.000Z" - }, - "end": { - "$date": "2021-10-11T15:09:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "8e72a73b-df1f-4dea-9739-c2aa1f3752c2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-11T15:47:28.000Z" - }, - "end": { - "$date": "2021-10-11T16:24:09.000Z" - }, - "events": [ - { - "uuid": "0cfb9b2d-0f72-4ebf-bd96-906a7d38f035", - "start": { - "$date": "2021-10-11T15:47:28.000Z" - }, - "end": { - "$date": "2021-10-11T16:24:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e15eb1b1-49af-40c5-b024-94e92b9b72f5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-11T19:29:33.000Z" - }, - "end": { - "$date": "2021-10-11T20:20:09.000Z" - }, - "events": [ - { - "uuid": "553b7ee3-35cf-4358-8948-2dae62b9ef93", - "start": { - "$date": "2021-10-11T19:29:33.000Z" - }, - "end": { - "$date": "2021-10-11T20:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14a2eba0-325a-428e-b5a2-a3cc68bb557e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T22:16:14.000Z" - }, - "end": { - "$date": "2021-10-11T22:51:41.000Z" - }, - "events": [ - { - "uuid": "1b13de5d-5257-4b69-aaba-771ac61a2321", - "start": { - "$date": "2021-10-11T22:16:14.000Z" - }, - "end": { - "$date": "2021-10-11T22:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11406695-7f04-42a4-8392-f1a2c53a2aa3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-11T22:57:08.000Z" - }, - "end": { - "$date": "2021-10-11T23:26:40.000Z" - }, - "events": [ - { - "uuid": "1a3ddd9f-0075-4ab3-886b-b16db5f3c58d", - "start": { - "$date": "2021-10-11T22:57:08.000Z" - }, - "end": { - "$date": "2021-10-11T23:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00e58693-b89e-4a55-8ba4-0b6952f46e7c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T23:34:44.000Z" - }, - "end": { - "$date": "2021-10-11T23:52:24.000Z" - }, - "events": [ - { - "uuid": "1e688c36-6b3e-46cc-8628-ef11467cfa74", - "start": { - "$date": "2021-10-11T23:34:44.000Z" - }, - "end": { - "$date": "2021-10-11T23:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "ab725903-5de7-4059-a3ae-7f403c571f6b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-11T23:40:54.000Z" - }, - "end": { - "$date": "2021-10-11T23:48:00.000Z" - }, - "events": [ - { - "uuid": "18d5abcb-ff87-4c7e-803a-d9fa5d57a3e1", - "start": { - "$date": "2021-10-11T23:40:54.000Z" - }, - "end": { - "$date": "2021-10-11T23:48:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "1ee08d86-5b07-4f99-bdfa-0bf36bd1c9a4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-11T23:50:55.000Z" - }, - "end": { - "$date": "2021-10-12T00:36:29.000Z" - }, - "events": [ - { - "uuid": "b141b238-f095-470e-b645-e464af903640", - "start": { - "$date": "2021-10-11T23:50:55.000Z" - }, - "end": { - "$date": "2021-10-12T00:36:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bb8c0bf-499a-43b9-84c1-829de450dc10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-11T23:55:59.000Z" - }, - "end": { - "$date": "2021-10-12T00:17:25.000Z" - }, - "events": [ - { - "uuid": "90aeb803-a1ba-476f-bcd4-0b70b61f6382", - "start": { - "$date": "2021-10-11T23:55:59.000Z" - }, - "end": { - "$date": "2021-10-12T00:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "8fd44b1c-2d82-46f9-9568-8a01ca950eb5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-12T01:06:22.000Z" - }, - "end": { - "$date": "2021-10-12T02:53:47.000Z" - }, - "events": [ - { - "uuid": "1dde7221-9965-423b-bde5-4fd7b483c384", - "start": { - "$date": "2021-10-12T01:06:22.000Z" - }, - "end": { - "$date": "2021-10-12T02:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e042818-052d-43b7-a75e-a294eaa9dfc4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-12T02:27:09.000Z" - }, - "end": { - "$date": "2021-10-12T02:41:24.000Z" - }, - "events": [ - { - "uuid": "fda7321d-d822-4d34-9a72-d17f019be183", - "start": { - "$date": "2021-10-12T02:27:09.000Z" - }, - "end": { - "$date": "2021-10-12T02:41:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71a30ae5-4edd-4f9c-9bf4-1c4e2b86184a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-12T03:17:52.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:47.000Z" - }, - "events": [ - { - "uuid": "5b723b02-7b27-4190-8cad-7a97baf4f04f", - "start": { - "$date": "2021-10-12T03:17:52.000Z" - }, - "end": { - "$date": "2021-10-12T03:28:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b94f23ab-de28-483b-8e27-28e31887876e", - "start": { - "$date": "2021-10-12T03:28:52.000Z" - }, - "end": { - "$date": "2021-10-12T03:31:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "01c0cb41-95a2-45b1-9c2e-489943c6dbec", - "start": { - "$date": "2021-10-12T03:31:52.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88a68fb4-5954-4993-bee5-9639ed94d8aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-12T03:17:50.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:39.000Z" - }, - "events": [ - { - "uuid": "90dc5073-731b-4063-ad18-dae7ef530945", - "start": { - "$date": "2021-10-12T03:17:50.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e42614d-c3ab-4864-963e-fa7130efba7a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T03:17:51.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:41.000Z" - }, - "events": [ - { - "uuid": "a64ec45d-6f82-4a4b-9123-cf37fd8912cf", - "start": { - "$date": "2021-10-12T03:17:51.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "556cabeb-9fce-4a0a-a539-2c2440ee9a5a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-12T03:17:54.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:44.000Z" - }, - "events": [ - { - "uuid": "72c0e9e5-3f73-4ffa-a181-87866202cd56", - "start": { - "$date": "2021-10-12T03:17:54.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0eb21dde-56a7-43cd-bacd-d801d8b3aa9c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-12T03:17:50.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:49.000Z" - }, - "events": [ - { - "uuid": "ccb1ba93-439d-400f-aed6-125f46a470b2", - "start": { - "$date": "2021-10-12T03:17:50.000Z" - }, - "end": { - "$date": "2021-10-12T03:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a4c461e0-407b-4030-a60f-b9bb31550006", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T03:28:26.000Z" - }, - "end": { - "$date": "2021-10-12T03:38:52.000Z" - }, - "events": [ - { - "uuid": "d461d9ca-ad1f-4248-b14d-f3dac411d0cb", - "start": { - "$date": "2021-10-12T03:28:26.000Z" - }, - "end": { - "$date": "2021-10-12T03:38:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5cf56bb8-a5eb-4014-80c2-8e90d599e801", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-12T03:28:28.000Z" - }, - "end": { - "$date": "2021-10-12T05:10:58.000Z" - }, - "events": [ - { - "uuid": "9641e8e6-f2e2-42e1-bb85-57c7c3291f24", - "start": { - "$date": "2021-10-12T03:28:28.000Z" - }, - "end": { - "$date": "2021-10-12T05:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96147652-bc06-4558-869b-db812019c2b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-12T04:52:49.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:19.000Z" - }, - "events": [ - { - "uuid": "adec447c-7d6c-4d45-b92a-fa47efdfe6f7", - "start": { - "$date": "2021-10-12T04:52:49.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47f4b51b-2bee-4e18-8ebe-f85493fb405d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T03:44:31.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:07.000Z" - }, - "events": [ - { - "uuid": "4d2e57b1-3d54-47b5-8492-b04e714bbf3e", - "start": { - "$date": "2021-10-12T03:44:31.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fb2b38f-5509-41aa-9640-e2a413a83a19", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-12T03:44:36.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:11.000Z" - }, - "events": [ - { - "uuid": "5ad4442b-68b6-4f15-9f10-75b1aad1858d", - "start": { - "$date": "2021-10-12T03:44:36.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65c672d2-c4b1-4bac-babf-03e52c021699", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-12T03:44:30.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:05.000Z" - }, - "events": [ - { - "uuid": "874819cb-8ac0-4817-b660-d0a99b2be25a", - "start": { - "$date": "2021-10-12T03:44:30.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "399cc56d-814c-49ba-95ad-df9fe47fc656", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T03:44:34.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:17.000Z" - }, - "events": [ - { - "uuid": "2fccd95b-0162-4704-8a24-34af6d45e096", - "start": { - "$date": "2021-10-12T03:44:34.000Z" - }, - "end": { - "$date": "2021-10-12T04:17:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80cbefba-a586-49bf-9bea-e6d68976bcf0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T04:22:42.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:12.000Z" - }, - "events": [ - { - "uuid": "442dc085-5a8a-4925-b7d8-5c009179e354", - "start": { - "$date": "2021-10-12T04:22:42.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "634c2745-a586-42c0-b9f6-0b274dfcec27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T04:23:07.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:22.000Z" - }, - "events": [ - { - "uuid": "72dcda5f-ebb8-474b-bdd9-bb3322dbd150", - "start": { - "$date": "2021-10-12T04:23:07.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a0c0044-338b-4efa-b4b1-ae23afe40502", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-12T04:22:12.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:16.000Z" - }, - "events": [ - { - "uuid": "780679b0-d203-4f75-9d37-b2766f46c2dd", - "start": { - "$date": "2021-10-12T04:22:12.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01ce3074-e46f-4acb-8a06-267dbc218c99", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-12T04:23:11.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:21.000Z" - }, - "events": [ - { - "uuid": "12ab0495-0a5b-4065-8111-824530d43aa9", - "start": { - "$date": "2021-10-12T04:23:11.000Z" - }, - "end": { - "$date": "2021-10-12T04:46:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5300c511-85f1-45a7-932a-ab0c80eeafdf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T04:52:53.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:23.000Z" - }, - "events": [ - { - "uuid": "c20e14eb-af37-4384-8ff6-ebc81c27afe5", - "start": { - "$date": "2021-10-12T04:52:53.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c63e7fa-51fd-44c0-8672-65e25d5a86ea", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-12T04:52:47.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:17.000Z" - }, - "events": [ - { - "uuid": "8f3e70db-8a50-4f2f-ad80-452828e04563", - "start": { - "$date": "2021-10-12T04:52:47.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ffc9535-44fe-4f3e-a4bd-813f15ecb6d7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-12T04:52:12.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:17.000Z" - }, - "events": [ - { - "uuid": "7f341930-bac7-4d76-a2e4-6be69c25297d", - "start": { - "$date": "2021-10-12T04:52:12.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b63d96eb-8cd8-45da-ad1f-23e7d8b03906", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T04:52:09.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:26.000Z" - }, - "events": [ - { - "uuid": "f990bb00-def5-47fb-a5bf-66a28ef5a6fd", - "start": { - "$date": "2021-10-12T04:52:09.000Z" - }, - "end": { - "$date": "2021-10-12T05:20:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "09fb674a-4afe-4042-999f-ab2d5ca72609", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T05:22:26.000Z" - }, - "end": { - "$date": "2021-10-12T05:56:29.000Z" - }, - "events": [ - { - "uuid": "852adb41-4274-4ece-a638-065eb54b470e", - "start": { - "$date": "2021-10-12T05:22:26.000Z" - }, - "end": { - "$date": "2021-10-12T05:56:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c32d2a01-f93c-4c9a-805e-9530006e5d09", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T07:19:26.000Z" - }, - "end": { - "$date": "2021-10-12T07:32:17.000Z" - }, - "events": [ - { - "uuid": "9b960b83-9dc0-4a88-8191-916383f8dd38", - "start": { - "$date": "2021-10-12T07:19:26.000Z" - }, - "end": { - "$date": "2021-10-12T07:56:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc841cf9-b2a8-41f6-8356-84270e4b19a5", - "start": { - "$date": "2021-10-12T07:56:26.000Z" - }, - "end": { - "$date": "2021-10-12T07:57:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b14927e5-955a-43e3-8073-453f03f6133e", - "start": { - "$date": "2021-10-12T07:57:26.000Z" - }, - "end": { - "$date": "2021-10-12T07:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27568c77-0e76-4454-a50e-d3cfa8af1418", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T07:34:02.000Z" - }, - "end": { - "$date": "2021-10-12T07:48:11.000Z" - }, - "events": [ - { - "uuid": "44833e7d-237c-4afb-90f5-88d800e96126", - "start": { - "$date": "2021-10-12T07:34:02.000Z" - }, - "end": { - "$date": "2021-10-12T07:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ede7d245-bbba-451e-a372-455d29da5a63", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T07:50:27.000Z" - }, - "end": { - "$date": "2021-10-12T08:03:52.000Z" - }, - "events": [ - { - "uuid": "75cbbcd2-a21b-4820-8bd4-1317092cf437", - "start": { - "$date": "2021-10-12T07:50:27.000Z" - }, - "end": { - "$date": "2021-10-12T08:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e72353c-ce3e-4a8f-a93a-908e7d28f3e9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T08:06:48.000Z" - }, - "end": { - "$date": "2021-10-12T08:20:53.000Z" - }, - "events": [ - { - "uuid": "651d32a2-fbbf-4b17-b156-b970b1be5f24", - "start": { - "$date": "2021-10-12T08:06:48.000Z" - }, - "end": { - "$date": "2021-10-12T08:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c16f909-25f9-4956-9260-f5d8387390cb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T08:25:58.000Z" - }, - "end": { - "$date": "2021-10-12T08:47:48.000Z" - }, - "events": [ - { - "uuid": "cafc9f97-e596-4fd7-90a9-0923db39c28a", - "start": { - "$date": "2021-10-12T08:25:58.000Z" - }, - "end": { - "$date": "2021-10-12T08:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c63145c1-cd6b-45e6-9633-76dd2822c05d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T08:50:44.000Z" - }, - "end": { - "$date": "2021-10-12T09:12:42.000Z" - }, - "events": [ - { - "uuid": "ef09c305-bd4d-4769-90a3-0db17abd7071", - "start": { - "$date": "2021-10-12T08:50:44.000Z" - }, - "end": { - "$date": "2021-10-12T09:12:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfb9a65f-1092-4f3a-ab8b-fc0a13287855", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T09:32:24.000Z" - }, - "end": { - "$date": "2021-10-12T09:55:54.000Z" - }, - "events": [ - { - "uuid": "22ac13c1-b540-4f83-b398-03f0ad368fbe", - "start": { - "$date": "2021-10-12T09:32:24.000Z" - }, - "end": { - "$date": "2021-10-12T09:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b7350fb-3d82-49ec-bef8-597baef78b40", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T09:58:10.000Z" - }, - "end": { - "$date": "2021-10-12T10:18:40.000Z" - }, - "events": [ - { - "uuid": "d38b6cf2-6036-4bbf-9b01-d5c0ea1c8805", - "start": { - "$date": "2021-10-12T09:58:10.000Z" - }, - "end": { - "$date": "2021-10-12T10:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46941d15-b54f-40d3-b5d1-b530c05b2c2b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T10:21:00.000Z" - }, - "end": { - "$date": "2021-10-12T10:36:25.000Z" - }, - "events": [ - { - "uuid": "055d1a63-2006-4328-8ef0-4595994fcd8a", - "start": { - "$date": "2021-10-12T10:21:00.000Z" - }, - "end": { - "$date": "2021-10-12T10:36:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26475bc6-e8e8-4175-8c77-039b333b5250", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T10:39:30.000Z" - }, - "end": { - "$date": "2021-10-12T10:54:01.000Z" - }, - "events": [ - { - "uuid": "86477765-56fb-4040-9101-c511e633e2e5", - "start": { - "$date": "2021-10-12T10:39:30.000Z" - }, - "end": { - "$date": "2021-10-12T10:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9b45fa8-3e1f-4e74-a527-a31a3c9105cd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T11:01:37.000Z" - }, - "end": { - "$date": "2021-10-12T11:24:04.000Z" - }, - "events": [ - { - "uuid": "e535f9e0-0cec-4b40-9d1e-2091398d9c2a", - "start": { - "$date": "2021-10-12T11:01:37.000Z" - }, - "end": { - "$date": "2021-10-12T11:24:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6e21b89-2a7f-4174-b631-500494b854c5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T11:26:10.000Z" - }, - "end": { - "$date": "2021-10-12T11:50:12.000Z" - }, - "events": [ - { - "uuid": "2bf68297-e610-4e28-9a3e-d0e2d4641693", - "start": { - "$date": "2021-10-12T11:26:10.000Z" - }, - "end": { - "$date": "2021-10-12T11:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c61c08b1-c888-47a3-a4f6-afb1e7367a61", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-12T12:15:41.000Z" - }, - "end": { - "$date": "2021-10-12T12:32:28.000Z" - }, - "events": [ - { - "uuid": "fa00c4db-08a8-4feb-b1a4-3bb1c0eaab53", - "start": { - "$date": "2021-10-12T12:15:41.000Z" - }, - "end": { - "$date": "2021-10-12T12:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "351d068a-bc08-46f6-bf84-2f99d85eac28", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-12T12:49:34.000Z" - }, - "end": { - "$date": "2021-10-12T15:18:26.000Z" - }, - "events": [ - { - "uuid": "6187cae8-7ef7-4ccf-97dd-df037e6da906", - "start": { - "$date": "2021-10-12T12:49:34.000Z" - }, - "end": { - "$date": "2021-10-12T15:18:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "ba200690-546b-4324-9ddb-bcaf05fe61d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-12T15:18:34.000Z" - }, - "end": { - "$date": "2021-10-12T15:58:05.000Z" - }, - "events": [ - { - "uuid": "d9409fb7-1944-4af0-a287-e47fee47c657", - "start": { - "$date": "2021-10-12T15:18:34.000Z" - }, - "end": { - "$date": "2021-10-12T15:58:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38a3892a-f8b2-4cf3-a955-8172040c407d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-12T17:49:26.000Z" - }, - "end": { - "$date": "2021-10-12T18:10:01.000Z" - }, - "events": [ - { - "uuid": "ca23ea57-7658-412c-a7f8-afa3306c9194", - "start": { - "$date": "2021-10-12T17:49:26.000Z" - }, - "end": { - "$date": "2021-10-12T18:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "44a0acde-27de-471b-9483-e278c8ae56f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-12T21:32:25.000Z" - }, - "end": { - "$date": "2021-10-12T22:07:36.000Z" - }, - "events": [ - { - "uuid": "21d9f6a9-c676-4be8-8708-004ccc147cb1", - "start": { - "$date": "2021-10-12T21:32:25.000Z" - }, - "end": { - "$date": "2021-10-12T22:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "882a0e27-c6cd-4cc5-a53e-8375c81edd76", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-12T22:23:18.000Z" - }, - "end": { - "$date": "2021-10-12T22:50:43.000Z" - }, - "events": [ - { - "uuid": "181f15f1-c7c9-4906-8819-f0055ea065de", - "start": { - "$date": "2021-10-12T22:23:18.000Z" - }, - "end": { - "$date": "2021-10-12T22:50:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d5fde14d-2917-400b-8aeb-1f9edcf2589b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T22:33:20.000Z" - }, - "end": { - "$date": "2021-10-12T23:11:13.000Z" - }, - "events": [ - { - "uuid": "fd1f0abc-27d0-4d89-949c-5f3e45243bb5", - "start": { - "$date": "2021-10-12T22:33:20.000Z" - }, - "end": { - "$date": "2021-10-12T23:11:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "19265e0d-9ee9-413d-9b31-3f9d63b3547e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-12T22:58:04.000Z" - }, - "end": { - "$date": "2021-10-12T23:35:46.000Z" - }, - "events": [ - { - "uuid": "88e1724a-844e-42cb-8fee-dbaebe323d2c", - "start": { - "$date": "2021-10-12T22:58:04.000Z" - }, - "end": { - "$date": "2021-10-12T23:35:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2477e32a-4a0b-44e1-b40e-daacee0ef556", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-12T23:15:54.000Z" - }, - "end": { - "$date": "2021-10-12T23:37:35.000Z" - }, - "events": [ - { - "uuid": "6feb1729-4661-48c9-a9a0-6666d016dc6a", - "start": { - "$date": "2021-10-12T23:15:54.000Z" - }, - "end": { - "$date": "2021-10-12T23:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "da3883a8-9b4b-4490-8dca-5c4535f7d046", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-12T23:12:28.000Z" - }, - "end": { - "$date": "2021-10-12T23:52:00.000Z" - }, - "events": [ - { - "uuid": "74c84444-da23-4f77-b4e7-2c0ac97b5fc4", - "start": { - "$date": "2021-10-12T23:12:28.000Z" - }, - "end": { - "$date": "2021-10-12T23:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "8e0ba722-2c29-4ca5-9a19-7f4ab9ace302", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-12T23:34:33.000Z" - }, - "end": { - "$date": "2021-10-13T00:42:34.000Z" - }, - "events": [ - { - "uuid": "4ff6edfb-984d-452f-87b9-aaac864e8e16", - "start": { - "$date": "2021-10-12T23:34:33.000Z" - }, - "end": { - "$date": "2021-10-13T00:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7f34c702-8d45-4e34-8633-b9366fa1a87f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-12T23:36:41.000Z" - }, - "end": { - "$date": "2021-10-13T00:16:18.000Z" - }, - "events": [ - { - "uuid": "2735161a-b141-439e-8e11-c23c6af19917", - "start": { - "$date": "2021-10-12T23:36:41.000Z" - }, - "end": { - "$date": "2021-10-13T00:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e8c127c4-5ee5-481e-8531-7935d716de4b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-12T23:41:18.000Z" - }, - "end": { - "$date": "2021-10-13T03:38:36.000Z" - }, - "events": [ - { - "uuid": "0a04b32c-0314-41e8-81d0-1707145b32f4", - "start": { - "$date": "2021-10-12T23:41:18.000Z" - }, - "end": { - "$date": "2021-10-13T03:38:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fd4634b-c4d9-40bc-a43a-d634fc00f70e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-12T23:54:36.000Z" - }, - "end": { - "$date": "2021-10-13T00:12:29.000Z" - }, - "events": [ - { - "uuid": "7b091278-3359-42a7-936d-04e00b203811", - "start": { - "$date": "2021-10-12T23:54:36.000Z" - }, - "end": { - "$date": "2021-10-13T00:12:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c70f6133-21a1-4c68-a196-f1673ef5c48c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T00:15:22.000Z" - }, - "end": { - "$date": "2021-10-13T00:30:27.000Z" - }, - "events": [ - { - "uuid": "63d35b5c-4b4d-4389-8be0-59b69ec7c7b4", - "start": { - "$date": "2021-10-13T00:15:22.000Z" - }, - "end": { - "$date": "2021-10-13T00:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "69aaa896-d6c5-484c-90d5-7ce0b1a294d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T00:44:22.000Z" - }, - "end": { - "$date": "2021-10-13T01:19:22.000Z" - }, - "events": [ - { - "uuid": "0d91b3db-7da0-48f5-98d1-8194e324e313", - "start": { - "$date": "2021-10-13T00:44:22.000Z" - }, - "end": { - "$date": "2021-10-13T01:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "e1cbc1ac-c9e7-42d0-81ac-4802db9c9d5e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-13T00:59:39.000Z" - }, - "end": { - "$date": "2021-10-13T07:56:00.000Z" - }, - "events": [ - { - "uuid": "8b969964-d616-48fb-ae23-44f6912d789c", - "start": { - "$date": "2021-10-13T00:59:39.000Z" - }, - "end": { - "$date": "2021-10-13T07:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2d457f0-612a-41f9-bad4-e5b248469fa3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-13T01:09:20.000Z" - }, - "end": { - "$date": "2021-10-13T01:42:22.000Z" - }, - "events": [ - { - "uuid": "46310178-7237-49fe-ac21-73deeff9d8b8", - "start": { - "$date": "2021-10-13T01:09:20.000Z" - }, - "end": { - "$date": "2021-10-13T01:42:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "d4806560-d99a-445a-88c7-8ce78e765ffb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-13T01:19:13.000Z" - }, - "end": { - "$date": "2021-10-13T03:58:23.000Z" - }, - "events": [ - { - "uuid": "88c8b405-e481-4e7e-9650-05b8ce7621c6", - "start": { - "$date": "2021-10-13T01:19:13.000Z" - }, - "end": { - "$date": "2021-10-13T03:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "a3849cb1-c7c2-4074-a7ae-26076eeb65b5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T01:20:28.000Z" - }, - "end": { - "$date": "2021-10-13T02:47:24.000Z" - }, - "events": [ - { - "uuid": "01f3b1a5-3d75-46ed-8092-dd2847f80603", - "start": { - "$date": "2021-10-13T01:20:28.000Z" - }, - "end": { - "$date": "2021-10-13T02:47:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4700a52-39eb-43e7-b6e3-88597d3d5e6c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-13T01:53:30.000Z" - }, - "end": { - "$date": "2021-10-13T02:22:58.000Z" - }, - "events": [ - { - "uuid": "a1714cca-dfbe-4950-a85f-70ad1b39a7e6", - "start": { - "$date": "2021-10-13T01:53:30.000Z" - }, - "end": { - "$date": "2021-10-13T02:22:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2cf2d934-7377-4add-bde5-0a2131eb182d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-13T03:42:14.000Z" - }, - "end": { - "$date": "2021-10-13T03:53:58.000Z" - }, - "events": [ - { - "uuid": "52c5580d-9bad-4d98-a0e1-4dc411c0e9be", - "start": { - "$date": "2021-10-13T03:42:14.000Z" - }, - "end": { - "$date": "2021-10-13T03:53:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "7677ebc5-08af-4afa-9e78-88c282e3a6f6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-13T02:37:46.000Z" - }, - "end": { - "$date": "2021-10-13T02:53:32.000Z" - }, - "events": [ - { - "uuid": "15b799bf-5305-4ac1-b7c0-c279adbc2c63", - "start": { - "$date": "2021-10-13T02:37:46.000Z" - }, - "end": { - "$date": "2021-10-13T02:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd5d6722-4807-47dc-9daa-d0825e269709", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T02:47:45.000Z" - }, - "end": { - "$date": "2021-10-13T03:00:50.000Z" - }, - "events": [ - { - "uuid": "49a7570d-e93c-4d32-8605-714b7c13ce47", - "start": { - "$date": "2021-10-13T02:47:45.000Z" - }, - "end": { - "$date": "2021-10-13T03:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7830b161-ea68-4ef3-abf4-1117c18b0965", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-13T02:57:23.000Z" - }, - "end": { - "$date": "2021-10-13T03:07:38.000Z" - }, - "events": [ - { - "uuid": "75491f7d-ba46-4007-a6bd-6d0ae45a9209", - "start": { - "$date": "2021-10-13T02:57:23.000Z" - }, - "end": { - "$date": "2021-10-13T03:07:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c36e671-1cb9-4678-9916-f1cf315fb995", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-13T03:12:59.000Z" - }, - "end": { - "$date": "2021-10-13T03:31:48.000Z" - }, - "events": [ - { - "uuid": "445872da-3aa0-4fcf-a994-6533fa145f3d", - "start": { - "$date": "2021-10-13T03:12:59.000Z" - }, - "end": { - "$date": "2021-10-13T03:31:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91270121-b3bf-464e-a9f3-1061d0299294", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T03:13:32.000Z" - }, - "end": { - "$date": "2021-10-13T03:29:17.000Z" - }, - "events": [ - { - "uuid": "4b86acfc-bd70-4280-99a7-42afc6e1a547", - "start": { - "$date": "2021-10-13T03:13:32.000Z" - }, - "end": { - "$date": "2021-10-13T03:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c024049-c190-427a-8770-9ac907102065", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T03:13:32.000Z" - }, - "end": { - "$date": "2021-10-13T03:29:19.000Z" - }, - "events": [ - { - "uuid": "9053ee07-6391-480c-a3d4-d150dece473e", - "start": { - "$date": "2021-10-13T03:13:32.000Z" - }, - "end": { - "$date": "2021-10-13T03:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ea7cf820-5c00-4eee-984d-2adcf73b8e21", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T03:30:02.000Z" - }, - "end": { - "$date": "2021-10-13T03:31:08.000Z" - }, - "events": [ - { - "uuid": "d6ae38d6-b891-4926-9e57-714f291e95a3", - "start": { - "$date": "2021-10-13T03:30:02.000Z" - }, - "end": { - "$date": "2021-10-13T03:31:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c139a8a-21e7-479e-bd1c-11d2f6e7f490", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T03:36:59.000Z" - }, - "end": { - "$date": "2021-10-13T03:54:09.000Z" - }, - "events": [ - { - "uuid": "3ce1e5fc-b302-4516-a1a4-4a1dbcf2cde6", - "start": { - "$date": "2021-10-13T03:36:59.000Z" - }, - "end": { - "$date": "2021-10-13T03:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00a9f5bf-3a65-4468-bd97-823ca3bc88e7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T03:36:23.000Z" - }, - "end": { - "$date": "2021-10-13T03:53:59.000Z" - }, - "events": [ - { - "uuid": "88ef78d8-d291-4b20-93a7-2851f0a3b051", - "start": { - "$date": "2021-10-13T03:36:23.000Z" - }, - "end": { - "$date": "2021-10-13T03:53:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "794b4ac3-3a85-4b23-a21f-6505148520a5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-13T03:36:30.000Z" - }, - "end": { - "$date": "2021-10-13T03:54:04.000Z" - }, - "events": [ - { - "uuid": "377186f8-f1f0-419e-bf28-423321eea491", - "start": { - "$date": "2021-10-13T03:36:30.000Z" - }, - "end": { - "$date": "2021-10-13T03:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57b8ec53-f2f4-492d-8d5a-79db1453150c", - "uuid": "544562f5-714f-4e19-af6a-392babe054a8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-13T03:45:59.000Z" - }, - "end": { - "$date": "2021-10-13T04:13:38.000Z" - }, - "events": [ - { - "uuid": "f43ad662-0364-4ec4-882d-fdae331a9002", - "start": { - "$date": "2021-10-13T03:45:59.000Z" - }, - "end": { - "$date": "2021-10-13T04:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "517a42cf-2847-48b5-b67f-27ea2f8ed5cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T03:59:40.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:09.000Z" - }, - "events": [ - { - "uuid": "51fac70f-f26b-4304-809e-6ed784113c6a", - "start": { - "$date": "2021-10-13T03:59:40.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a74b7a6e-4d84-41a1-89dd-320b01fc7b6d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-13T03:59:48.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:09.000Z" - }, - "events": [ - { - "uuid": "8a20ef93-be30-4d83-a80d-2c0d7a956d90", - "start": { - "$date": "2021-10-13T03:59:48.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73e73d42-6a1d-4996-8071-a5d28f6868fd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T03:59:18.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:05.000Z" - }, - "events": [ - { - "uuid": "e5a481a9-cf26-4413-979d-32e4d83c9cb1", - "start": { - "$date": "2021-10-13T03:59:18.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f51a06c-4418-4d17-8355-741b545c25c5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-13T03:59:31.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:06.000Z" - }, - "events": [ - { - "uuid": "32d4d749-236e-43f3-acc4-cc8c2bf80f5b", - "start": { - "$date": "2021-10-13T03:59:31.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6034c4dc-36c3-4bd1-ba2c-0d77247d4b71", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-13T03:59:18.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:08.000Z" - }, - "events": [ - { - "uuid": "3a176157-2ad5-4908-af12-53c635ee03e9", - "start": { - "$date": "2021-10-13T03:59:18.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "358dbf15-4d6e-4d7e-b4cd-9432482662cb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-13T03:59:54.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:04.000Z" - }, - "events": [ - { - "uuid": "9da4f8e9-2cc1-4c0b-a148-1880172466f6", - "start": { - "$date": "2021-10-13T03:59:54.000Z" - }, - "end": { - "$date": "2021-10-13T04:19:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a737863f-717d-4c99-9ff8-0467f893cdda", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T04:30:11.000Z" - }, - "end": { - "$date": "2021-10-13T04:47:43.000Z" - }, - "events": [ - { - "uuid": "a4d68121-db90-4739-8571-98b9be3d2df1", - "start": { - "$date": "2021-10-13T04:30:11.000Z" - }, - "end": { - "$date": "2021-10-13T04:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5c300f1-7019-4ed6-ab5e-ed1eecb46924", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-13T05:02:33.000Z" - }, - "end": { - "$date": "2021-10-13T05:32:53.000Z" - }, - "events": [ - { - "uuid": "072afd43-6195-4363-836f-76952f332e0d", - "start": { - "$date": "2021-10-13T05:02:33.000Z" - }, - "end": { - "$date": "2021-10-13T05:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30328c3a-8b2b-4257-ad45-1b3ce09d2e29", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T04:50:08.000Z" - }, - "end": { - "$date": "2021-10-13T05:09:56.000Z" - }, - "events": [ - { - "uuid": "7936ea49-52b4-4b79-8e83-25e97015e881", - "start": { - "$date": "2021-10-13T04:50:08.000Z" - }, - "end": { - "$date": "2021-10-13T05:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32828127-f6c2-4e87-947d-4dfe6dabab39", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T05:12:00.000Z" - }, - "end": { - "$date": "2021-10-13T05:31:18.000Z" - }, - "events": [ - { - "uuid": "62a2ca6d-b13e-4048-9037-16a0a3808c6b", - "start": { - "$date": "2021-10-13T05:12:00.000Z" - }, - "end": { - "$date": "2021-10-13T05:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76816b85-a781-4a42-b474-e49b0fd8ec86", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T05:33:48.000Z" - }, - "end": { - "$date": "2021-10-13T05:48:10.000Z" - }, - "events": [ - { - "uuid": "4267d361-46a8-4c64-8783-2e765837349a", - "start": { - "$date": "2021-10-13T05:33:48.000Z" - }, - "end": { - "$date": "2021-10-13T05:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e37dc895-7402-4885-a1f6-5c4737525525", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-13T05:41:04.000Z" - }, - "end": { - "$date": "2021-10-13T06:01:22.000Z" - }, - "events": [ - { - "uuid": "bcd56f8f-b673-46d9-9cc0-cb34e4bda3bc", - "start": { - "$date": "2021-10-13T05:41:04.000Z" - }, - "end": { - "$date": "2021-10-13T06:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c372e20-307a-4eec-af93-24ce426250cd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-13T06:01:45.000Z" - }, - "end": { - "$date": "2021-10-13T06:04:45.000Z" - }, - "events": [ - { - "uuid": "25c94a4c-cd6d-4737-8768-2b63c3dd3cd8", - "start": { - "$date": "2021-10-13T06:01:45.000Z" - }, - "end": { - "$date": "2021-10-13T06:04:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "926cbcf1-3131-4a3e-b3af-cfa6551c0800", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T07:15:13.000Z" - }, - "end": { - "$date": "2021-10-13T07:35:59.000Z" - }, - "events": [ - { - "uuid": "8bd32597-6669-4cd3-baca-00ddf909b6e3", - "start": { - "$date": "2021-10-13T07:15:13.000Z" - }, - "end": { - "$date": "2021-10-13T07:35:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ae9f2554-660b-470e-9d95-ae0a5a7d0096", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T07:37:41.000Z" - }, - "end": { - "$date": "2021-10-13T08:05:17.000Z" - }, - "events": [ - { - "uuid": "c1f24ee4-79d4-43fa-8731-3f5dd0c144dc", - "start": { - "$date": "2021-10-13T07:37:41.000Z" - }, - "end": { - "$date": "2021-10-13T08:05:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "89a22e6d-8881-4e5a-9116-0a75154f6825", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-13T08:11:15.000Z" - }, - "end": { - "$date": "2021-10-13T12:55:39.000Z" - }, - "events": [ - { - "uuid": "ef6a650c-d331-44a5-b7f7-90c40847ead8", - "start": { - "$date": "2021-10-13T08:11:15.000Z" - }, - "end": { - "$date": "2021-10-13T12:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "596de777-5f66-4734-8346-a3378eab695f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-13T17:27:40.000Z" - }, - "end": { - "$date": "2021-10-13T17:59:27.000Z" - }, - "events": [ - { - "uuid": "a8a16368-82e8-43e8-a0ca-1dbb15e972f9", - "start": { - "$date": "2021-10-13T17:27:40.000Z" - }, - "end": { - "$date": "2021-10-13T17:59:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "1d828e88-3b2c-4612-89b4-143a652db7b0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-13T18:17:09.000Z" - }, - "end": { - "$date": "2021-10-13T19:07:56.000Z" - }, - "events": [ - { - "uuid": "3613096b-aad1-45a5-830c-14a29044b84c", - "start": { - "$date": "2021-10-13T18:17:09.000Z" - }, - "end": { - "$date": "2021-10-13T19:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "d56c2298-693c-4feb-961d-f755f75371b1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-13T18:34:02.000Z" - }, - "end": { - "$date": "2021-10-13T18:52:01.000Z" - }, - "events": [ - { - "uuid": "f07fa013-5541-4775-9789-1c7d8549a8ba", - "start": { - "$date": "2021-10-13T18:34:02.000Z" - }, - "end": { - "$date": "2021-10-13T18:52:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c928746a-cb3f-4106-8f04-ec6c6f4a3413", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T18:40:30.000Z" - }, - "end": { - "$date": "2021-10-13T18:59:01.000Z" - }, - "events": [ - { - "uuid": "f218647e-d006-42ab-802c-321acec72ba8", - "start": { - "$date": "2021-10-13T18:40:30.000Z" - }, - "end": { - "$date": "2021-10-13T18:59:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03aec2c3-df39-46ac-a589-5018d2f99b17", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T19:05:11.000Z" - }, - "end": { - "$date": "2021-10-13T19:25:31.000Z" - }, - "events": [ - { - "uuid": "c7e736b9-9052-4804-9953-ab623c831b3c", - "start": { - "$date": "2021-10-13T19:05:11.000Z" - }, - "end": { - "$date": "2021-10-13T19:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e099666c-d922-4c05-929c-79970fd0c9a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T19:32:17.000Z" - }, - "end": { - "$date": "2021-10-13T19:56:17.000Z" - }, - "events": [ - { - "uuid": "c0c5f57e-2221-4616-86c9-d43329934044", - "start": { - "$date": "2021-10-13T19:32:17.000Z" - }, - "end": { - "$date": "2021-10-13T19:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "b730f731-2d2b-49b2-9c2d-7298490faa5a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T20:05:48.000Z" - }, - "end": { - "$date": "2021-10-13T20:13:28.000Z" - }, - "events": [ - { - "uuid": "9e4f29e0-8486-40c5-b42a-5bc9a5c27397", - "start": { - "$date": "2021-10-13T20:05:48.000Z" - }, - "end": { - "$date": "2021-10-13T20:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "619d4a0d-22e5-4cfb-b5b5-43f556e34054", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-13T21:18:11.000Z" - }, - "end": { - "$date": "2021-10-14T00:58:41.000Z" - }, - "events": [ - { - "uuid": "a7f876f2-db0a-4db5-a088-567d6824d810", - "start": { - "$date": "2021-10-13T21:18:11.000Z" - }, - "end": { - "$date": "2021-10-14T00:58:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5f9e16d6-4b4d-4a7d-81f8-5b0650efe88e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-13T21:20:12.000Z" - }, - "end": { - "$date": "2021-10-13T21:31:24.000Z" - }, - "events": [ - { - "uuid": "bde849e2-cfeb-42b1-bf58-eba846bf3e8f", - "start": { - "$date": "2021-10-13T21:20:12.000Z" - }, - "end": { - "$date": "2021-10-13T21:31:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03621938-db77-4c31-b46a-d7df55928428", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T23:21:19.000Z" - }, - "end": { - "$date": "2021-10-13T23:35:04.000Z" - }, - "events": [ - { - "uuid": "af609068-b093-4b4e-bbb3-fd56204cb02d", - "start": { - "$date": "2021-10-13T23:21:19.000Z" - }, - "end": { - "$date": "2021-10-13T23:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "289f61d2-f53f-4e39-89a8-04a33a53e1d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-13T23:39:20.000Z" - }, - "end": { - "$date": "2021-10-14T00:05:25.000Z" - }, - "events": [ - { - "uuid": "03d96fa0-8041-48d7-8e3f-7826da015af2", - "start": { - "$date": "2021-10-13T23:39:20.000Z" - }, - "end": { - "$date": "2021-10-14T00:05:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc1b1d85-5db9-4488-b4d0-fb8b42e3a75b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-13T23:47:16.000Z" - }, - "end": { - "$date": "2021-10-14T00:12:07.000Z" - }, - "events": [ - { - "uuid": "5562d54e-b37a-40d4-b3e4-8550bd293f47", - "start": { - "$date": "2021-10-13T23:47:16.000Z" - }, - "end": { - "$date": "2021-10-14T00:12:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfae7ecb-9398-4117-9eb8-6a53e87d4f33", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-14T00:24:09.000Z" - }, - "end": { - "$date": "2021-10-14T00:53:51.000Z" - }, - "events": [ - { - "uuid": "407797a2-f504-49f2-add7-b7bef230be6f", - "start": { - "$date": "2021-10-14T00:24:09.000Z" - }, - "end": { - "$date": "2021-10-14T00:53:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f2f59289-31a5-4f54-a545-c493467ef1a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-14T00:24:10.000Z" - }, - "end": { - "$date": "2021-10-14T04:14:28.000Z" - }, - "events": [ - { - "uuid": "d7463330-b68e-4e89-a0f4-ebdec7847b59", - "start": { - "$date": "2021-10-14T00:24:10.000Z" - }, - "end": { - "$date": "2021-10-14T04:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "a3d79be4-375c-412e-9890-7ab75c6958cb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-14T00:41:26.000Z" - }, - "end": { - "$date": "2021-10-14T08:42:58.000Z" - }, - "events": [ - { - "uuid": "7083ae05-d735-4e70-b055-add8e4d4ee6a", - "start": { - "$date": "2021-10-14T00:41:26.000Z" - }, - "end": { - "$date": "2021-10-14T05:24:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c8964ee-654f-488b-867f-ff0cb6eab119", - "start": { - "$date": "2021-10-14T05:24:26.000Z" - }, - "end": { - "$date": "2021-10-14T05:46:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a7608dc-b713-483e-b06b-49dc7d7339c9", - "start": { - "$date": "2021-10-14T05:46:26.000Z" - }, - "end": { - "$date": "2021-10-14T08:42:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a55b968-c3ca-4abe-8fc7-bce6428d56df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-14T01:17:25.000Z" - }, - "end": { - "$date": "2021-10-14T01:38:37.000Z" - }, - "events": [ - { - "uuid": "a432435f-c83b-4b25-ba55-6a9a2f99e99f", - "start": { - "$date": "2021-10-14T01:17:25.000Z" - }, - "end": { - "$date": "2021-10-14T01:38:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "10e4309d-49cd-49de-9ea2-fca280a2ca41", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-14T00:59:11.000Z" - }, - "end": { - "$date": "2021-10-14T06:21:21.000Z" - }, - "events": [ - { - "uuid": "daccd854-1856-437c-ba3f-5e02976fc577", - "start": { - "$date": "2021-10-14T00:59:11.000Z" - }, - "end": { - "$date": "2021-10-14T06:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "0b456dfb-e667-4433-9baf-555fda5ecc34", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-14T01:02:26.000Z" - }, - "end": { - "$date": "2021-10-14T02:03:10.000Z" - }, - "events": [ - { - "uuid": "485eed02-4b32-4980-9b49-304ab7f26c80", - "start": { - "$date": "2021-10-14T01:02:26.000Z" - }, - "end": { - "$date": "2021-10-14T02:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f5e5019-31a3-4e2c-8428-138d6bbba284", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-14T01:39:15.000Z" - }, - "end": { - "$date": "2021-10-14T02:13:54.000Z" - }, - "events": [ - { - "uuid": "9c181ba7-c3db-49c3-a4e5-a7d231e557d2", - "start": { - "$date": "2021-10-14T01:39:15.000Z" - }, - "end": { - "$date": "2021-10-14T02:13:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ebbf6f4c-fa02-4840-ac31-79555415ef8b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T02:18:27.000Z" - }, - "end": { - "$date": "2021-10-14T02:31:34.000Z" - }, - "events": [ - { - "uuid": "be139517-8767-4c15-93ee-6b8b0c0e846c", - "start": { - "$date": "2021-10-14T02:18:27.000Z" - }, - "end": { - "$date": "2021-10-14T02:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "63d27f94-bd32-4da3-99f5-abfa4f41c0c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-14T02:32:18.000Z" - }, - "end": { - "$date": "2021-10-14T03:48:55.000Z" - }, - "events": [ - { - "uuid": "9dcf7ca6-c307-449a-a63a-1281b0065937", - "start": { - "$date": "2021-10-14T02:32:18.000Z" - }, - "end": { - "$date": "2021-10-14T03:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "412c085a-a366-4ec2-ba8c-540763deec18", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T03:15:09.000Z" - }, - "end": { - "$date": "2021-10-14T03:50:41.000Z" - }, - "events": [ - { - "uuid": "5ed5cc12-2488-4c67-996e-109726ad8cb3", - "start": { - "$date": "2021-10-14T03:15:09.000Z" - }, - "end": { - "$date": "2021-10-14T03:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37702525-6f50-407e-a7df-4f9a0657050f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-14T03:45:06.000Z" - }, - "end": { - "$date": "2021-10-14T04:48:32.000Z" - }, - "events": [ - { - "uuid": "96a9cfcf-cbd1-4db8-8b37-b7e17d9b949f", - "start": { - "$date": "2021-10-14T03:45:06.000Z" - }, - "end": { - "$date": "2021-10-14T04:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bb945ea1-9efa-4be4-ba00-023cd52ec9f1", - "uuid": "2b0f14ba-2299-4327-915f-9a1d60df80c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-14T05:19:20.000Z" - }, - "end": { - "$date": "2021-10-14T05:48:10.000Z" - }, - "events": [ - { - "uuid": "4d357c3c-96a4-4ba5-bc74-9b3f4bdbc8eb", - "start": { - "$date": "2021-10-14T05:19:20.000Z" - }, - "end": { - "$date": "2021-10-14T05:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "a0874b6d-77ea-4c13-869e-8c1770b151de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-14T15:53:25.000Z" - }, - "end": { - "$date": "2021-10-14T18:03:26.000Z" - }, - "events": [ - { - "uuid": "303d93b6-5d6d-4d89-8eae-252b3c29a6de", - "start": { - "$date": "2021-10-14T15:53:25.000Z" - }, - "end": { - "$date": "2021-10-14T18:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e19cf2b6-0b22-4467-8575-cfbaddc41f77", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T16:36:42.000Z" - }, - "end": { - "$date": "2021-10-14T16:44:18.000Z" - }, - "events": [ - { - "uuid": "008dd1bf-dc8d-4430-b458-cd2f09020002", - "start": { - "$date": "2021-10-14T16:36:42.000Z" - }, - "end": { - "$date": "2021-10-14T16:44:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "942f3d92-04ce-4485-90b1-868e7a118f4d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T16:44:23.000Z" - }, - "end": { - "$date": "2021-10-14T16:45:29.000Z" - }, - "events": [ - { - "uuid": "86beeed8-9944-49e3-b2db-8c383947ec24", - "start": { - "$date": "2021-10-14T16:44:23.000Z" - }, - "end": { - "$date": "2021-10-14T16:45:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "4d4f3c58-0da8-4654-b56e-b055e561c2c9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T16:45:43.000Z" - }, - "end": { - "$date": "2021-10-14T19:58:35.000Z" - }, - "events": [ - { - "uuid": "da5a7b2d-14f1-48b3-8420-dd46343d37cf", - "start": { - "$date": "2021-10-14T16:45:43.000Z" - }, - "end": { - "$date": "2021-10-14T19:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "6c616b3a-7985-4aac-aefa-04c4cf48b997", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-14T19:53:33.000Z" - }, - "end": { - "$date": "2021-10-14T19:55:56.000Z" - }, - "events": [ - { - "uuid": "12bb4a6b-0933-4574-9d83-470464280d1d", - "start": { - "$date": "2021-10-14T19:53:33.000Z" - }, - "end": { - "$date": "2021-10-14T19:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7529db5a-5d72-4f65-a18a-96e260959d7e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T20:42:01.000Z" - }, - "end": { - "$date": "2021-10-14T21:34:06.000Z" - }, - "events": [ - { - "uuid": "e5f658e6-3392-4514-ac0c-a708db445390", - "start": { - "$date": "2021-10-14T20:42:01.000Z" - }, - "end": { - "$date": "2021-10-14T21:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "85c629bc-e23e-4b0b-bacd-819dc0d39aa6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-14T21:23:39.000Z" - }, - "end": { - "$date": "2021-10-15T02:14:55.000Z" - }, - "events": [ - { - "uuid": "e62bba0c-b53a-4b64-b259-af3c5f19f5ea", - "start": { - "$date": "2021-10-14T21:23:39.000Z" - }, - "end": { - "$date": "2021-10-15T02:14:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f1980340-42ed-433f-acaa-5da95ce554fa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-14T21:58:04.000Z" - }, - "end": { - "$date": "2021-10-14T21:58:10.000Z" - }, - "events": [ - { - "uuid": "74738803-e315-4347-847e-8ca1e85e378a", - "start": { - "$date": "2021-10-14T21:58:04.000Z" - }, - "end": { - "$date": "2021-10-14T21:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "39c28858-c2ba-477a-979d-2e4b7136eec6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-14T22:46:11.000Z" - }, - "end": { - "$date": "2021-10-15T00:28:05.000Z" - }, - "events": [ - { - "uuid": "52019674-0580-40b4-91ad-d950cd1953f2", - "start": { - "$date": "2021-10-14T22:46:11.000Z" - }, - "end": { - "$date": "2021-10-15T00:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "8e3ef10e-09dd-4b56-a894-d2400aee5abd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-14T23:16:25.000Z" - }, - "end": { - "$date": "2021-10-14T23:57:54.000Z" - }, - "events": [ - { - "uuid": "bfcafc75-df6f-4c68-a64c-0b6d3f260133", - "start": { - "$date": "2021-10-14T23:16:25.000Z" - }, - "end": { - "$date": "2021-10-14T23:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d65adc2d-e1fc-4706-94f7-406f369dfb55", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-14T23:49:45.000Z" - }, - "end": { - "$date": "2021-10-15T00:06:38.000Z" - }, - "events": [ - { - "uuid": "65dbbec7-373b-4020-9a25-5b68bcc3ef15", - "start": { - "$date": "2021-10-14T23:49:45.000Z" - }, - "end": { - "$date": "2021-10-15T00:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "4997dad3-628f-403e-889a-305f8225c8dc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-15T00:11:59.000Z" - }, - "end": { - "$date": "2021-10-15T01:19:22.000Z" - }, - "events": [ - { - "uuid": "065f1fdb-be14-4f93-84b0-5719e6a2cdc5", - "start": { - "$date": "2021-10-15T00:11:59.000Z" - }, - "end": { - "$date": "2021-10-15T01:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c88f8bf-4759-4a99-aeac-2fa64496d4c1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-15T00:18:19.000Z" - }, - "end": { - "$date": "2021-10-15T00:56:53.000Z" - }, - "events": [ - { - "uuid": "c690c661-ede5-426b-b8f3-5cbf464340ff", - "start": { - "$date": "2021-10-15T00:18:19.000Z" - }, - "end": { - "$date": "2021-10-15T00:56:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "018c3172-20d8-4f97-ad04-e8451c0d0874", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-15T00:57:23.000Z" - }, - "end": { - "$date": "2021-10-15T04:32:16.000Z" - }, - "events": [ - { - "uuid": "4e5c3150-5017-4a0e-9eb8-44ecc71f0469", - "start": { - "$date": "2021-10-15T00:57:23.000Z" - }, - "end": { - "$date": "2021-10-15T04:32:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "6d08ad8c-595a-4cf2-8e64-eb76bf8e4e7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-15T01:06:29.000Z" - }, - "end": { - "$date": "2021-10-15T04:12:44.000Z" - }, - "events": [ - { - "uuid": "0056d8e9-afc1-49f2-9da6-00d703cf3e57", - "start": { - "$date": "2021-10-15T01:06:29.000Z" - }, - "end": { - "$date": "2021-10-15T04:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "2c12b97f-cd64-43b5-829a-840dfd78a655", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-15T01:37:22.000Z" - }, - "end": { - "$date": "2021-10-15T01:39:03.000Z" - }, - "events": [ - { - "uuid": "112548c4-107e-4121-9e78-b3437f99e7d8", - "start": { - "$date": "2021-10-15T01:37:22.000Z" - }, - "end": { - "$date": "2021-10-15T01:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d789d61-eb5e-496b-9d5d-b1b8be55e229", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-15T02:02:32.000Z" - }, - "end": { - "$date": "2021-10-15T02:29:36.000Z" - }, - "events": [ - { - "uuid": "f5aa0ad4-db0d-498b-b986-3456d8f46f77", - "start": { - "$date": "2021-10-15T02:02:32.000Z" - }, - "end": { - "$date": "2021-10-15T02:29:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "1a51b1ce-ad22-4282-8afa-56a3cec07529", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T01:58:32.000Z" - }, - "end": { - "$date": "2021-10-15T03:43:49.000Z" - }, - "events": [ - { - "uuid": "38bf4450-5769-4239-b534-d68824dc2037", - "start": { - "$date": "2021-10-15T01:58:32.000Z" - }, - "end": { - "$date": "2021-10-15T03:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "845e87d1-2abe-4d03-838d-0025e9d8710e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-15T02:33:43.000Z" - }, - "end": { - "$date": "2021-10-15T03:08:41.000Z" - }, - "events": [ - { - "uuid": "6fee4ad7-c2bc-4eff-a140-d3ed276a495e", - "start": { - "$date": "2021-10-15T02:33:43.000Z" - }, - "end": { - "$date": "2021-10-15T03:08:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f717e59c-1a63-4321-b363-dc4aa735d346", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-15T02:54:46.000Z" - }, - "end": { - "$date": "2021-10-15T03:08:06.000Z" - }, - "events": [ - { - "uuid": "e14605af-c21b-4c0a-80cc-7816ac70d980", - "start": { - "$date": "2021-10-15T02:54:46.000Z" - }, - "end": { - "$date": "2021-10-15T03:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "59d2a275-6767-4e35-8e5e-29485ff39e88", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-15T03:09:12.000Z" - }, - "end": { - "$date": "2021-10-15T05:44:30.000Z" - }, - "events": [ - { - "uuid": "0b2a89ec-672d-4633-971a-fb3157cda005", - "start": { - "$date": "2021-10-15T03:09:12.000Z" - }, - "end": { - "$date": "2021-10-15T05:44:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07ea43cd-53ae-44d9-bdb9-05b2d1772b20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-15T03:09:12.000Z" - }, - "end": { - "$date": "2021-10-15T21:55:13.000Z" - }, - "events": [ - { - "uuid": "c0fef6ee-a0d4-4ecf-a3e6-d3c064a5c496", - "start": { - "$date": "2021-10-15T03:09:12.000Z" - }, - "end": { - "$date": "2021-10-15T21:55:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "a594bf27-41e2-4a63-9c09-ccaf1e2935ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-15T03:10:34.000Z" - }, - "end": { - "$date": "2021-10-15T04:11:23.000Z" - }, - "events": [ - { - "uuid": "d0f8d966-422d-430b-84cd-69b98d80b123", - "start": { - "$date": "2021-10-15T03:10:34.000Z" - }, - "end": { - "$date": "2021-10-15T04:11:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "61fe09db-d182-4fb6-9889-1de9f2697cfb", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-15T03:21:58.000Z" - }, - "end": { - "$date": "2021-10-15T04:23:19.000Z" - }, - "events": [ - { - "uuid": "a2284085-4b71-4789-bad6-0ff1a9d0c2eb", - "start": { - "$date": "2021-10-15T03:21:58.000Z" - }, - "end": { - "$date": "2021-10-15T04:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "48fe10e1-c633-4d46-b52b-008fbbb88400", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-15T03:22:25.000Z" - }, - "end": { - "$date": "2021-10-15T04:23:20.000Z" - }, - "events": [ - { - "uuid": "30db49a2-71ad-4c44-bb9a-7e6e71fba96c", - "start": { - "$date": "2021-10-15T03:22:25.000Z" - }, - "end": { - "$date": "2021-10-15T04:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "49c28c10-c9bd-4a8b-b572-6ea467ddc575", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-15T03:31:51.000Z" - }, - "end": { - "$date": "2021-10-15T03:37:03.000Z" - }, - "events": [ - { - "uuid": "5c5afc12-a99e-4459-bb80-63736f32c7d9", - "start": { - "$date": "2021-10-15T03:31:51.000Z" - }, - "end": { - "$date": "2021-10-15T03:37:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "23bab460-d2c1-4ba9-a468-56b0a0c8f781", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T03:46:08.000Z" - }, - "end": { - "$date": "2021-10-15T04:05:15.000Z" - }, - "events": [ - { - "uuid": "7e8144ce-6349-40b2-8cd0-ad62b22eb998", - "start": { - "$date": "2021-10-15T03:46:08.000Z" - }, - "end": { - "$date": "2021-10-15T04:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "820207bd-a925-49bb-b353-4ec0e5faec45", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T04:05:29.000Z" - }, - "end": { - "$date": "2021-10-15T04:38:46.000Z" - }, - "events": [ - { - "uuid": "709122e3-361c-4a06-a387-ad612ef31fdb", - "start": { - "$date": "2021-10-15T04:05:29.000Z" - }, - "end": { - "$date": "2021-10-15T04:38:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "91b4dd64-08d6-4b52-a561-cf58d723ee79", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-15T05:11:46.000Z" - }, - "end": { - "$date": "2021-10-15T05:23:53.000Z" - }, - "events": [ - { - "uuid": "45663a66-a4d3-4989-bb5c-a0bc4fa7e14a", - "start": { - "$date": "2021-10-15T05:11:46.000Z" - }, - "end": { - "$date": "2021-10-15T05:23:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "ed1b31f0-2f36-4a74-9e8e-c10d9d323bcb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T05:12:48.000Z" - }, - "end": { - "$date": "2021-10-15T05:23:20.000Z" - }, - "events": [ - { - "uuid": "419ca287-da56-4fed-ae6e-675ad41056db", - "start": { - "$date": "2021-10-15T05:12:48.000Z" - }, - "end": { - "$date": "2021-10-15T05:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", - "uuid": "8f07929a-7cca-479b-8825-3f9fbd5bc0e5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T05:23:39.000Z" - }, - "end": { - "$date": "2021-10-15T05:25:30.000Z" - }, - "events": [ - { - "uuid": "7e0247a9-3800-4dca-a706-2ea2fc3888ba", - "start": { - "$date": "2021-10-15T05:23:39.000Z" - }, - "end": { - "$date": "2021-10-15T05:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "017e8797-d8ab-448d-985d-a70659b9e417", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-15T05:24:02.000Z" - }, - "end": { - "$date": "2021-10-15T05:47:14.000Z" - }, - "events": [ - { - "uuid": "3fdcb872-1126-4353-857f-46bd1c5eeb8d", - "start": { - "$date": "2021-10-15T05:24:02.000Z" - }, - "end": { - "$date": "2021-10-15T05:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", - "uuid": "234c2ce1-1f26-44db-bcf0-99ec1c649462", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T05:25:34.000Z" - }, - "end": { - "$date": "2021-10-15T05:37:01.000Z" - }, - "events": [ - { - "uuid": "2ac93570-cf9c-49c6-81e1-0cd241e10d7e", - "start": { - "$date": "2021-10-15T05:25:34.000Z" - }, - "end": { - "$date": "2021-10-15T05:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8c8b07f-d5c7-48f5-a073-56aa49516cd9", - "uuid": "e2b932f5-1044-4d35-b2ed-5b3948564425", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-15T05:37:45.000Z" - }, - "end": { - "$date": "2021-10-15T05:42:36.000Z" - }, - "events": [ - { - "uuid": "d0c663ba-a485-4501-b2ac-0a6d8cc7f43e", - "start": { - "$date": "2021-10-15T05:37:45.000Z" - }, - "end": { - "$date": "2021-10-15T05:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "b2ce8237-7304-4bcf-8559-cfc93010d1cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-15T05:45:55.000Z" - }, - "end": { - "$date": "2021-10-15T06:16:47.000Z" - }, - "events": [ - { - "uuid": "686544cb-ef82-41f3-9a10-ba1bc16490ed", - "start": { - "$date": "2021-10-15T05:45:55.000Z" - }, - "end": { - "$date": "2021-10-15T06:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "8d4a48e8-ca09-470e-9a4f-2b300f91c558", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-15T16:08:15.000Z" - }, - "end": { - "$date": "2021-10-15T19:33:28.000Z" - }, - "events": [ - { - "uuid": "5ebfadb4-6e5e-4e8e-bc96-7e202b17af82", - "start": { - "$date": "2021-10-15T16:08:15.000Z" - }, - "end": { - "$date": "2021-10-15T19:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "74c7a856-e658-4214-8fc6-5ddfaecd867b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-15T21:12:30.000Z" - }, - "end": { - "$date": "2021-10-15T21:49:56.000Z" - }, - "events": [ - { - "uuid": "71aa20f0-84be-46c8-8aca-ca28fd6fd0d9", - "start": { - "$date": "2021-10-15T21:12:30.000Z" - }, - "end": { - "$date": "2021-10-15T21:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "a6c31316-8b65-4d59-a9ec-bd23b3e4802d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-15T21:36:46.000Z" - }, - "end": { - "$date": "2021-10-16T02:35:11.000Z" - }, - "events": [ - { - "uuid": "3bdb0b64-78bc-43ae-a2ac-a998beeb5c6b", - "start": { - "$date": "2021-10-15T21:36:46.000Z" - }, - "end": { - "$date": "2021-10-16T02:35:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a8e39b85-ecb8-4f14-b3d7-6ac8a5b8fed3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-15T21:38:17.000Z" - }, - "end": { - "$date": "2021-10-15T23:04:10.000Z" - }, - "events": [ - { - "uuid": "e92f3759-4238-4f01-9116-92bf9e41dfa1", - "start": { - "$date": "2021-10-15T21:38:17.000Z" - }, - "end": { - "$date": "2021-10-15T22:53:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "61aa639e-2a82-41eb-8920-dd06e76c46b1", - "start": { - "$date": "2021-10-15T22:53:17.000Z" - }, - "end": { - "$date": "2021-10-15T23:04:10.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "3fd91739-8903-4747-9ba1-2a09ae3d477c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-15T21:50:21.000Z" - }, - "end": { - "$date": "2021-10-15T22:00:47.000Z" - }, - "events": [ - { - "uuid": "bb6c6f53-9fce-4b77-b040-66ddf2ff4441", - "start": { - "$date": "2021-10-15T21:50:21.000Z" - }, - "end": { - "$date": "2021-10-15T22:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "c8b9c929-ea70-44d8-b2b1-9691464172f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-15T22:01:06.000Z" - }, - "end": { - "$date": "2021-10-15T22:48:23.000Z" - }, - "events": [ - { - "uuid": "affc965a-8418-4141-8840-c4f8890369bc", - "start": { - "$date": "2021-10-15T22:01:06.000Z" - }, - "end": { - "$date": "2021-10-15T22:48:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "45a36760-39bc-4a69-b396-3a04d41adf69", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-15T23:32:01.000Z" - }, - "end": { - "$date": "2021-10-16T03:31:41.000Z" - }, - "events": [ - { - "uuid": "3c6811ae-165f-4706-98e9-90ee6695d265", - "start": { - "$date": "2021-10-15T23:32:01.000Z" - }, - "end": { - "$date": "2021-10-16T03:10:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "236cd26e-d8d2-48b0-aa84-777dfa66142e", - "start": { - "$date": "2021-10-16T03:10:01.000Z" - }, - "end": { - "$date": "2021-10-16T03:15:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d483072d-db5e-4332-acb7-d3213b07e06a", - "start": { - "$date": "2021-10-16T03:15:01.000Z" - }, - "end": { - "$date": "2021-10-16T03:25:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a31e1f5b-6bee-4d82-bf77-c86842051ac2", - "start": { - "$date": "2021-10-16T03:25:01.000Z" - }, - "end": { - "$date": "2021-10-16T03:31:41.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a77de820-adaa-4107-9374-80bcda2e9510", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-15T23:57:04.000Z" - }, - "end": { - "$date": "2021-10-16T00:14:39.000Z" - }, - "events": [ - { - "uuid": "b43e5774-6aa6-436a-9e40-f231a7c14a15", - "start": { - "$date": "2021-10-15T23:57:04.000Z" - }, - "end": { - "$date": "2021-10-16T00:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "c5c74670-ae52-4a29-ad33-c7e5fcbe1b2c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-16T00:24:54.000Z" - }, - "end": { - "$date": "2021-10-16T07:45:12.000Z" - }, - "events": [ - { - "uuid": "3b4ecd41-d3a7-4d80-bf47-0656f36a66fb", - "start": { - "$date": "2021-10-16T00:24:54.000Z" - }, - "end": { - "$date": "2021-10-16T05:01:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "abcde4d6-44c0-4882-b473-c08059a7a536", - "start": { - "$date": "2021-10-16T05:01:54.000Z" - }, - "end": { - "$date": "2021-10-16T05:02:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "38347605-e158-4fdc-8555-58d35d2ecdcf", - "start": { - "$date": "2021-10-16T05:02:54.000Z" - }, - "end": { - "$date": "2021-10-16T05:20:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "657ff613-6028-471a-a5ee-95ef43a0f64d", - "start": { - "$date": "2021-10-16T05:20:54.000Z" - }, - "end": { - "$date": "2021-10-16T05:21:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "16b9602c-e522-4bb9-beb7-773fa7dc440c", - "start": { - "$date": "2021-10-16T05:21:54.000Z" - }, - "end": { - "$date": "2021-10-16T07:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6cf0a158-82e8-44ea-bb00-04746210b216", - "uuid": "9bf81819-31dd-4a01-9c0d-eb043e705503", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-16T00:35:40.000Z" - }, - "end": { - "$date": "2021-10-16T05:04:41.000Z" - }, - "events": [ - { - "uuid": "7968159a-e3d6-4856-a599-f8ea73d90554", - "start": { - "$date": "2021-10-16T00:35:40.000Z" - }, - "end": { - "$date": "2021-10-16T05:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "1fa36199-bb5f-46c9-b731-ef3749d3644c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-16T00:53:12.000Z" - }, - "end": { - "$date": "2021-10-16T05:04:04.000Z" - }, - "events": [ - { - "uuid": "20504c95-968f-4fbb-9d5c-92511dd48451", - "start": { - "$date": "2021-10-16T00:53:12.000Z" - }, - "end": { - "$date": "2021-10-16T05:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01f618d9-822d-46a4-beb5-21a9a73ccc01", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-16T03:19:14.000Z" - }, - "end": { - "$date": "2021-10-16T06:36:39.000Z" - }, - "events": [ - { - "uuid": "b9a1221c-9274-46e3-9e13-8e0e16a39c88", - "start": { - "$date": "2021-10-16T03:19:14.000Z" - }, - "end": { - "$date": "2021-10-16T06:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ee0e0aa7-717e-4d00-b6b6-95d519c44129", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-16T03:22:48.000Z" - }, - "end": { - "$date": "2021-10-16T04:28:08.000Z" - }, - "events": [ - { - "uuid": "d83abf74-7f83-4cd2-b470-de84699375f2", - "start": { - "$date": "2021-10-16T03:22:48.000Z" - }, - "end": { - "$date": "2021-10-16T04:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "32f53e00-0dec-4010-8dc6-86a17d0cfd3b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-16T03:23:06.000Z" - }, - "end": { - "$date": "2021-10-16T06:36:40.000Z" - }, - "events": [ - { - "uuid": "a97a9aea-3b71-46bc-a0af-95caebc0417e", - "start": { - "$date": "2021-10-16T03:23:06.000Z" - }, - "end": { - "$date": "2021-10-16T06:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f63a83c1-dd6c-4bc1-8e29-fd3a7702960c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-16T03:28:49.000Z" - }, - "end": { - "$date": "2021-10-16T03:31:10.000Z" - }, - "events": [ - { - "uuid": "ac3d4ae0-b023-4d5f-abcc-d857502ba1c9", - "start": { - "$date": "2021-10-16T03:28:49.000Z" - }, - "end": { - "$date": "2021-10-16T03:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "75759a97-7427-4f8c-9435-f03055f56817", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-16T03:31:49.000Z" - }, - "end": { - "$date": "2021-10-16T04:15:48.000Z" - }, - "events": [ - { - "uuid": "34a17f60-64f6-4c76-94db-64149051652d", - "start": { - "$date": "2021-10-16T03:31:49.000Z" - }, - "end": { - "$date": "2021-10-16T04:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "8b95518a-25e5-4018-bf39-253049bfc6f0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-16T04:03:52.000Z" - }, - "end": { - "$date": "2021-10-16T05:04:35.000Z" - }, - "events": [ - { - "uuid": "88cca355-d4be-4e7c-97cc-effb603ec272", - "start": { - "$date": "2021-10-16T04:03:52.000Z" - }, - "end": { - "$date": "2021-10-16T05:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "58da7a64-3523-40b8-9426-da675b88381f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-16T04:16:13.000Z" - }, - "end": { - "$date": "2021-10-16T08:38:19.000Z" - }, - "events": [ - { - "uuid": "3d8b3b1f-b23e-401d-bf93-cf4d3e63cd9b", - "start": { - "$date": "2021-10-16T04:16:13.000Z" - }, - "end": { - "$date": "2021-10-16T08:38:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9ea8c639-256e-4ed8-ba72-2a30427e6af7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-16T04:22:43.000Z" - }, - "end": { - "$date": "2021-10-16T06:24:27.000Z" - }, - "events": [ - { - "uuid": "c98df568-c937-48a4-9875-611a75f492c3", - "start": { - "$date": "2021-10-16T04:22:43.000Z" - }, - "end": { - "$date": "2021-10-16T06:24:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "69b5a183-282a-42ea-b5e3-44cdceacf55a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-16T04:36:29.000Z" - }, - "end": { - "$date": "2021-10-16T07:34:01.000Z" - }, - "events": [ - { - "uuid": "8104f04d-263d-4642-871a-bf30b4917713", - "start": { - "$date": "2021-10-16T04:36:29.000Z" - }, - "end": { - "$date": "2021-10-16T07:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37ca5800-f6a1-4dc0-b922-1516e4548ff7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-16T05:05:35.000Z" - }, - "end": { - "$date": "2021-10-16T05:20:25.000Z" - }, - "events": [ - { - "uuid": "e3b2c9c0-42d7-4dcc-8b0c-71ee78a4e6c1", - "start": { - "$date": "2021-10-16T05:05:35.000Z" - }, - "end": { - "$date": "2021-10-16T05:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5167b362-a586-46e7-8558-85898107f47f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-16T05:05:36.000Z" - }, - "end": { - "$date": "2021-10-16T06:37:23.000Z" - }, - "events": [ - { - "uuid": "606a1fba-a4c3-47e6-ac41-2d8a9ea12c25", - "start": { - "$date": "2021-10-16T05:05:36.000Z" - }, - "end": { - "$date": "2021-10-16T06:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", - "uuid": "9d0c8352-b980-448c-98d7-e3b4173fe171", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-16T05:05:59.000Z" - }, - "end": { - "$date": "2021-10-16T05:07:47.000Z" - }, - "events": [ - { - "uuid": "af7d4405-5142-43a3-899f-144bdf823bc7", - "start": { - "$date": "2021-10-16T05:05:59.000Z" - }, - "end": { - "$date": "2021-10-16T05:07:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "8ac6f28d-58e6-4fbf-83da-ea89e7f61229", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-16T05:07:34.000Z" - }, - "end": { - "$date": "2021-10-16T05:10:47.000Z" - }, - "events": [ - { - "uuid": "18fafe22-f5d1-4862-9924-ddcdf98b0eb5", - "start": { - "$date": "2021-10-16T05:07:34.000Z" - }, - "end": { - "$date": "2021-10-16T05:10:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e9274e1d-6f47-4799-bf8f-cbe14c56bed7", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-16T05:10:39.000Z" - }, - "end": { - "$date": "2021-10-16T05:20:08.000Z" - }, - "events": [ - { - "uuid": "9a2ef7a2-0651-4ee8-887b-c29901b69a3f", - "start": { - "$date": "2021-10-16T05:10:39.000Z" - }, - "end": { - "$date": "2021-10-16T05:20:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "640d57eb-b5da-4ab0-9ddf-cc6204669245", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-16T05:24:30.000Z" - }, - "end": { - "$date": "2021-10-16T05:39:56.000Z" - }, - "events": [ - { - "uuid": "e0adc08b-f920-4150-9ba4-80678ae5d850", - "start": { - "$date": "2021-10-16T05:24:30.000Z" - }, - "end": { - "$date": "2021-10-16T05:39:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "2b8f0ec9-159b-4e2f-8d17-f69c7bf90ecb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-16T05:40:06.000Z" - }, - "end": { - "$date": "2021-10-16T05:44:47.000Z" - }, - "events": [ - { - "uuid": "01332e21-6a03-4a0d-946c-e36614509cf5", - "start": { - "$date": "2021-10-16T05:40:06.000Z" - }, - "end": { - "$date": "2021-10-16T05:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b79455ca-864a-4cff-a62f-88df8a9d7027", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-16T06:43:49.000Z" - }, - "end": { - "$date": "2021-10-16T07:52:00.000Z" - }, - "events": [ - { - "uuid": "0b22644a-6202-478a-9f44-2594f3887c9f", - "start": { - "$date": "2021-10-16T06:43:49.000Z" - }, - "end": { - "$date": "2021-10-16T07:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "01638d61-b367-4a10-9bda-15af84d1162b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-16T13:54:15.000Z" - }, - "end": { - "$date": "2021-10-16T15:10:20.000Z" - }, - "events": [ - { - "uuid": "b0df74d6-dce4-4465-9e87-be355548a7b2", - "start": { - "$date": "2021-10-16T13:54:15.000Z" - }, - "end": { - "$date": "2021-10-16T15:10:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "44b9d0b8-4b48-48a8-8d63-011ea0851955", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-16T16:56:01.000Z" - }, - "end": { - "$date": "2021-10-16T19:19:50.000Z" - }, - "events": [ - { - "uuid": "1da1dce3-0f28-4831-94b8-40e72dd9fb84", - "start": { - "$date": "2021-10-16T16:56:01.000Z" - }, - "end": { - "$date": "2021-10-16T19:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1bb6824a-257b-43af-9c4d-772d69ad7f1a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-16T17:13:56.000Z" - }, - "end": { - "$date": "2021-10-16T17:17:25.000Z" - }, - "events": [ - { - "uuid": "833f1278-07ae-48fe-bc54-9b3ee898396e", - "start": { - "$date": "2021-10-16T17:13:56.000Z" - }, - "end": { - "$date": "2021-10-16T17:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "79c845ee-02f8-436b-b7ad-cd63801d86a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-16T17:57:49.000Z" - }, - "end": { - "$date": "2021-10-16T18:00:09.000Z" - }, - "events": [ - { - "uuid": "9c6cbda3-edc0-46db-85f7-a75ef42aaf9e", - "start": { - "$date": "2021-10-16T17:57:49.000Z" - }, - "end": { - "$date": "2021-10-16T18:00:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1fbbe0a-e1ab-4cee-90b9-a6ea39913acc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-16T19:17:24.000Z" - }, - "end": { - "$date": "2021-10-16T19:51:36.000Z" - }, - "events": [ - { - "uuid": "78fc7ffc-41ce-4bb3-bb00-fd7b49272180", - "start": { - "$date": "2021-10-16T19:17:24.000Z" - }, - "end": { - "$date": "2021-10-16T19:28:24.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "03ee00ec-20a1-43bf-b1a0-7616207c111d", - "start": { - "$date": "2021-10-16T19:28:24.000Z" - }, - "end": { - "$date": "2021-10-16T19:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "862d9380-eff8-4e8e-93ec-250515cbe5ef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-16T20:01:34.000Z" - }, - "end": { - "$date": "2021-10-16T20:31:55.000Z" - }, - "events": [ - { - "uuid": "1befd07f-4d59-42e1-a9ac-982f89b50ed1", - "start": { - "$date": "2021-10-16T20:01:34.000Z" - }, - "end": { - "$date": "2021-10-16T20:31:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0ce47ebc-6657-4046-b786-27735d182402", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-16T19:53:40.000Z" - }, - "end": { - "$date": "2021-10-16T20:44:17.000Z" - }, - "events": [ - { - "uuid": "ac633ebf-7ef2-4743-ad3f-d9293965a932", - "start": { - "$date": "2021-10-16T19:53:40.000Z" - }, - "end": { - "$date": "2021-10-16T20:11:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46d6cbc9-f3b7-448c-a5b6-5733a648a07d", - "start": { - "$date": "2021-10-16T20:11:40.000Z" - }, - "end": { - "$date": "2021-10-16T20:44:17.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fe107f88-e079-421a-ba1b-cd5752fc11c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-16T20:22:36.000Z" - }, - "end": { - "$date": "2021-10-16T21:17:44.000Z" - }, - "events": [ - { - "uuid": "ee5a1f27-d0e9-450b-bb2d-d42500f3266b", - "start": { - "$date": "2021-10-16T20:22:36.000Z" - }, - "end": { - "$date": "2021-10-16T21:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "864303bb-7730-412f-a565-f8ff17a26926", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-16T20:41:08.000Z" - }, - "end": { - "$date": "2021-10-16T21:15:44.000Z" - }, - "events": [ - { - "uuid": "8e66fc3c-993f-4407-b554-9b7ef0be8e46", - "start": { - "$date": "2021-10-16T20:41:08.000Z" - }, - "end": { - "$date": "2021-10-16T21:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "00be3c61-d9b3-45d2-8f3b-dbb6f2d673e2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-16T21:06:54.000Z" - }, - "end": { - "$date": "2021-10-17T00:47:15.000Z" - }, - "events": [ - { - "uuid": "2ba94670-32ec-4a52-8005-0392251557fe", - "start": { - "$date": "2021-10-16T21:06:54.000Z" - }, - "end": { - "$date": "2021-10-17T00:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15619f5f-84ae-4a29-a5a6-9916fa08a9e2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-16T21:27:38.000Z" - }, - "end": { - "$date": "2021-10-16T22:08:23.000Z" - }, - "events": [ - { - "uuid": "b8b781af-6818-4ee5-ad32-157c41579a42", - "start": { - "$date": "2021-10-16T21:27:38.000Z" - }, - "end": { - "$date": "2021-10-16T22:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bdef9f1-c722-404a-a500-ccc38ff95c5c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-16T22:08:24.000Z" - }, - "end": { - "$date": "2021-10-16T22:14:41.000Z" - }, - "events": [ - { - "uuid": "d52d976b-e2ef-42ce-85da-887e1f27e36b", - "start": { - "$date": "2021-10-16T22:08:24.000Z" - }, - "end": { - "$date": "2021-10-16T22:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4437c549-90ac-46d8-87bf-005dc12fe379", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-16T22:53:46.000Z" - }, - "end": { - "$date": "2021-10-16T23:53:59.000Z" - }, - "events": [ - { - "uuid": "6ca97cb3-d5a0-4230-a0e7-49799b1e7269", - "start": { - "$date": "2021-10-16T22:53:46.000Z" - }, - "end": { - "$date": "2021-10-16T23:53:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "209265d9-3f75-4439-ae6d-bf5fbee29bf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-16T23:01:38.000Z" - }, - "end": { - "$date": "2021-10-16T23:29:44.000Z" - }, - "events": [ - { - "uuid": "884a97bf-b956-48b2-9b8f-19d44727fc4b", - "start": { - "$date": "2021-10-16T23:01:38.000Z" - }, - "end": { - "$date": "2021-10-16T23:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "c4ca1f10-73a1-4b17-81c2-bf687eb30809", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-16T23:30:04.000Z" - }, - "end": { - "$date": "2021-10-17T00:36:11.000Z" - }, - "events": [ - { - "uuid": "3fc27e41-ca62-4f77-a9c4-9e051524bf79", - "start": { - "$date": "2021-10-16T23:30:04.000Z" - }, - "end": { - "$date": "2021-10-17T00:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "628acc7f-cb3e-4af6-a566-05fc78533c9b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-16T23:38:47.000Z" - }, - "end": { - "$date": "2021-10-17T01:19:01.000Z" - }, - "events": [ - { - "uuid": "3569cdba-38b7-4699-9a6b-c680415da328", - "start": { - "$date": "2021-10-16T23:38:47.000Z" - }, - "end": { - "$date": "2021-10-17T01:19:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "db1f758c-7057-4ff5-8a6f-5ef215fcf7e7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-16T23:59:17.000Z" - }, - "end": { - "$date": "2021-10-17T00:47:11.000Z" - }, - "events": [ - { - "uuid": "381823f5-7971-442a-8919-ae447ee351c0", - "start": { - "$date": "2021-10-16T23:59:17.000Z" - }, - "end": { - "$date": "2021-10-17T00:47:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "70408fd3-0afa-4498-a34e-5b29c64d9d40", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T00:14:12.000Z" - }, - "end": { - "$date": "2021-10-17T00:15:33.000Z" - }, - "events": [ - { - "uuid": "ef53e014-8e40-48eb-b9fe-cfa7a1d504d6", - "start": { - "$date": "2021-10-17T00:14:12.000Z" - }, - "end": { - "$date": "2021-10-17T00:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "9ff67c74-68b8-4758-99b3-368431425e9a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T00:37:40.000Z" - }, - "end": { - "$date": "2021-10-17T00:48:18.000Z" - }, - "events": [ - { - "uuid": "26a2f4d1-d564-48cc-997b-68c5e3d74f5e", - "start": { - "$date": "2021-10-17T00:37:40.000Z" - }, - "end": { - "$date": "2021-10-17T00:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "33e1a1b9-4054-4d83-b568-d21a6c1c5526", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-17T00:40:21.000Z" - }, - "end": { - "$date": "2021-10-17T03:57:12.000Z" - }, - "events": [ - { - "uuid": "6190b26f-3784-4a30-9f88-a4945a6975e6", - "start": { - "$date": "2021-10-17T00:40:21.000Z" - }, - "end": { - "$date": "2021-10-17T03:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae495dbf-715a-4b92-9c3c-b409d89ac24a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-17T00:57:48.000Z" - }, - "end": { - "$date": "2021-10-17T01:01:56.000Z" - }, - "events": [ - { - "uuid": "1ef37373-bb12-4d8a-8f65-0febcd30714d", - "start": { - "$date": "2021-10-17T00:57:48.000Z" - }, - "end": { - "$date": "2021-10-17T01:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f9cba04-1ad2-448f-827b-fc5436616a4f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T00:48:36.000Z" - }, - "end": { - "$date": "2021-10-17T01:02:45.000Z" - }, - "events": [ - { - "uuid": "4191c2f5-c958-47e1-9225-7086e61dc663", - "start": { - "$date": "2021-10-17T00:48:36.000Z" - }, - "end": { - "$date": "2021-10-17T01:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "0fc82c8d-8c27-4304-baa1-a65dae64a4fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T01:58:52.000Z" - }, - "end": { - "$date": "2021-10-17T02:20:47.000Z" - }, - "events": [ - { - "uuid": "72511c50-3ef0-4687-8cbc-49619b3adeb0", - "start": { - "$date": "2021-10-17T01:58:52.000Z" - }, - "end": { - "$date": "2021-10-17T02:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "3f0ef625-302a-4fbc-af2a-775a5d987ebb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T01:03:23.000Z" - }, - "end": { - "$date": "2021-10-17T01:21:21.000Z" - }, - "events": [ - { - "uuid": "c19a0203-72c8-4734-84c8-8e6b7e42e255", - "start": { - "$date": "2021-10-17T01:03:23.000Z" - }, - "end": { - "$date": "2021-10-17T01:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "b9e7587e-f22d-47d0-bfe4-913205029ea6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T01:24:00.000Z" - }, - "end": { - "$date": "2021-10-17T01:29:47.000Z" - }, - "events": [ - { - "uuid": "20525b33-04da-46a0-b6a2-1bd7fa759669", - "start": { - "$date": "2021-10-17T01:24:00.000Z" - }, - "end": { - "$date": "2021-10-17T01:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4508549f-ec6b-48cf-999d-12c0bb54a026", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T01:58:25.000Z" - }, - "end": { - "$date": "2021-10-17T02:21:32.000Z" - }, - "events": [ - { - "uuid": "25ea7b35-c471-49df-b2ce-93c513e23f07", - "start": { - "$date": "2021-10-17T01:58:25.000Z" - }, - "end": { - "$date": "2021-10-17T02:21:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fcd343c6-d1cf-42fa-84bd-813bf0f455d3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-17T00:14:25.000Z" - }, - "end": { - "$date": "2021-10-17T04:23:06.000Z" - }, - "events": [ - { - "uuid": "ee5e9e56-91f6-49c1-aa84-a833f89aae1b", - "start": { - "$date": "2021-10-17T00:14:25.000Z" - }, - "end": { - "$date": "2021-10-17T04:23:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df8a734b-b094-4dde-b9da-82954cc08100", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-17T01:58:22.000Z" - }, - "end": { - "$date": "2021-10-17T02:20:48.000Z" - }, - "events": [ - { - "uuid": "e2ca1770-e3f7-4444-a004-3018d85225b9", - "start": { - "$date": "2021-10-17T01:58:22.000Z" - }, - "end": { - "$date": "2021-10-17T02:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7c3578c-f649-4504-bb96-5a176eb007c7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T01:58:17.000Z" - }, - "end": { - "$date": "2021-10-17T02:20:44.000Z" - }, - "events": [ - { - "uuid": "10b328b9-66f4-4c47-9840-e766bcb996ca", - "start": { - "$date": "2021-10-17T01:58:17.000Z" - }, - "end": { - "$date": "2021-10-17T02:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9161b5a7-e537-4a36-ba04-e0b71b592007", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T02:51:25.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:35.000Z" - }, - "events": [ - { - "uuid": "618a6a83-bb7f-40fe-bfed-f91492f87f0a", - "start": { - "$date": "2021-10-17T02:51:25.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1246ba45-e000-49f9-8994-21746523eed7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-17T02:50:46.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:36.000Z" - }, - "events": [ - { - "uuid": "3a063024-5756-4e00-93ae-5ae957e0cd22", - "start": { - "$date": "2021-10-17T02:50:46.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24dca97d-2c3a-44dc-9514-78ceb4d06711", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T02:50:45.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:46.000Z" - }, - "events": [ - { - "uuid": "2aab7d7d-da6e-4e54-a403-a4ea382691bb", - "start": { - "$date": "2021-10-17T02:50:45.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1596a0b2-70d4-40ff-8c69-2b23c70c604b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T02:51:10.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:46.000Z" - }, - "events": [ - { - "uuid": "e9cc9416-7c45-4c5c-8988-cea4a0e2f91e", - "start": { - "$date": "2021-10-17T02:51:10.000Z" - }, - "end": { - "$date": "2021-10-17T03:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad0ca8b6-9f1c-45a7-89ac-be7ce47967e4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T02:23:55.000Z" - }, - "end": { - "$date": "2021-10-17T03:56:51.000Z" - }, - "events": [ - { - "uuid": "2ca5bc79-9a93-43f9-b5d9-b86c34867dd6", - "start": { - "$date": "2021-10-17T02:23:55.000Z" - }, - "end": { - "$date": "2021-10-17T03:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0b50998-f0ca-4741-b6b9-692b39bc89b7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T03:40:21.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:30.000Z" - }, - "events": [ - { - "uuid": "d2189117-e3ad-4491-bcb7-55e102db05ac", - "start": { - "$date": "2021-10-17T03:40:21.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c8f31e2-2033-454f-b81a-f348bce99356", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T03:39:52.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:32.000Z" - }, - "events": [ - { - "uuid": "92b44856-b723-4d8a-a5f1-6a3cbda546dc", - "start": { - "$date": "2021-10-17T03:39:52.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b6af337-8007-4262-895c-7d6602d30bae", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T03:39:46.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:28.000Z" - }, - "events": [ - { - "uuid": "1bf5f343-e0a2-41f1-ae65-77f4ce33b3c3", - "start": { - "$date": "2021-10-17T03:39:46.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7205c3a5-1817-4ee4-a969-7302b8ea55d5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-17T03:40:18.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:28.000Z" - }, - "events": [ - { - "uuid": "921d4d06-c117-4b13-acb0-8ba6d18b5c01", - "start": { - "$date": "2021-10-17T03:40:18.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "7eb26be5-6b90-44f9-8004-75a1dd9706fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T04:03:21.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:17.000Z" - }, - "events": [ - { - "uuid": "71f89563-8fb4-44f3-a2fd-7795dc9160cc", - "start": { - "$date": "2021-10-17T04:03:21.000Z" - }, - "end": { - "$date": "2021-10-17T04:07:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "1f76fcbb-b186-4f2c-8450-4ec7aba6469a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-17T04:06:44.000Z" - }, - "end": { - "$date": "2021-10-17T05:15:12.000Z" - }, - "events": [ - { - "uuid": "38975eb2-9dff-4bc8-bb26-0ac50e08fab2", - "start": { - "$date": "2021-10-17T04:06:44.000Z" - }, - "end": { - "$date": "2021-10-17T05:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f2cbcff-392c-4459-baa8-9414ff0c8c8d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T04:07:39.000Z" - }, - "end": { - "$date": "2021-10-17T04:13:10.000Z" - }, - "events": [ - { - "uuid": "6e9d89da-23fb-48b3-b372-8cbf3a0f94e2", - "start": { - "$date": "2021-10-17T04:07:39.000Z" - }, - "end": { - "$date": "2021-10-17T04:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "696e298b-e2dd-43ce-a325-d83a83f1c226", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T04:07:41.000Z" - }, - "end": { - "$date": "2021-10-17T10:24:56.000Z" - }, - "events": [ - { - "uuid": "b505f7ca-bea3-40f6-b3b7-82b82a7479c1", - "start": { - "$date": "2021-10-17T04:07:41.000Z" - }, - "end": { - "$date": "2021-10-17T04:20:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98edef65-df85-4ad7-94c6-b7a9f2476b9d", - "start": { - "$date": "2021-10-17T04:20:41.000Z" - }, - "end": { - "$date": "2021-10-17T04:22:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1716a91-a8d3-4fa2-8264-b7e9ac549296", - "start": { - "$date": "2021-10-17T04:22:41.000Z" - }, - "end": { - "$date": "2021-10-17T04:24:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4733afff-324b-40be-b3b9-1d31793403d9", - "start": { - "$date": "2021-10-17T04:24:41.000Z" - }, - "end": { - "$date": "2021-10-17T05:28:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c425de44-f411-4d52-99f0-9821d273643a", - "start": { - "$date": "2021-10-17T05:28:41.000Z" - }, - "end": { - "$date": "2021-10-17T07:05:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a578fad-f024-4dd8-a48c-cb02ff6d6280", - "start": { - "$date": "2021-10-17T07:05:41.000Z" - }, - "end": { - "$date": "2021-10-17T07:07:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c7d4382-3a38-4171-a932-0dda58ac6cbf", - "start": { - "$date": "2021-10-17T07:07:41.000Z" - }, - "end": { - "$date": "2021-10-17T07:25:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a15dfa2-11dd-4d2f-98f4-4f2d1d37a6dc", - "start": { - "$date": "2021-10-17T07:25:41.000Z" - }, - "end": { - "$date": "2021-10-17T09:00:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ee7016b-83b9-4001-8f6e-5b6b34c7c02f", - "start": { - "$date": "2021-10-17T09:00:41.000Z" - }, - "end": { - "$date": "2021-10-17T09:24:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9769bcde-b0a8-4a06-892f-6074554cb406", - "start": { - "$date": "2021-10-17T09:24:41.000Z" - }, - "end": { - "$date": "2021-10-17T09:28:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "975a37c1-aaa3-42d8-88f7-9a4e57abccbe", - "start": { - "$date": "2021-10-17T09:28:41.000Z" - }, - "end": { - "$date": "2021-10-17T10:24:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "b7746205-0c22-4626-9f69-b92befcf6897", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T04:14:08.000Z" - }, - "end": { - "$date": "2021-10-17T05:45:07.000Z" - }, - "events": [ - { - "uuid": "ae286e80-df0e-4560-bbb1-5808e5a349ff", - "start": { - "$date": "2021-10-17T04:14:08.000Z" - }, - "end": { - "$date": "2021-10-17T05:45:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cff3026a-b2a0-42cd-b24c-9eaefebd49c9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-17T04:14:19.000Z" - }, - "end": { - "$date": "2021-10-17T04:29:50.000Z" - }, - "events": [ - { - "uuid": "10c07c21-831d-4cc1-89ad-44d3404caff3", - "start": { - "$date": "2021-10-17T04:14:19.000Z" - }, - "end": { - "$date": "2021-10-17T04:29:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "d539473d-2fba-4097-8ecb-fc4dccbc002f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-17T05:13:31.000Z" - }, - "end": { - "$date": "2021-10-17T05:45:03.000Z" - }, - "events": [ - { - "uuid": "da83503d-e274-49e3-bbd7-36579747b16f", - "start": { - "$date": "2021-10-17T05:13:31.000Z" - }, - "end": { - "$date": "2021-10-17T05:45:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "5d99d8b2-b522-4dd2-94f3-12076a6eb905", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-17T05:13:58.000Z" - }, - "end": { - "$date": "2021-10-17T05:45:06.000Z" - }, - "events": [ - { - "uuid": "faabb07a-b26b-48da-bcda-66b2c6acf5a2", - "start": { - "$date": "2021-10-17T05:13:58.000Z" - }, - "end": { - "$date": "2021-10-17T05:45:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eac06c1e-cad2-4fdc-8b72-4e660b2eaff6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-17T05:40:27.000Z" - }, - "end": { - "$date": "2021-10-17T06:24:57.000Z" - }, - "events": [ - { - "uuid": "cc304f33-2a55-4b8f-b2e0-84ee2c391cb5", - "start": { - "$date": "2021-10-17T05:40:27.000Z" - }, - "end": { - "$date": "2021-10-17T06:24:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "702efb8c-9fbb-4f54-87e7-4a4220d39b87", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T05:46:17.000Z" - }, - "end": { - "$date": "2021-10-17T06:16:18.000Z" - }, - "events": [ - { - "uuid": "c4a6dea0-7eda-4045-bfa7-2c95558dcc97", - "start": { - "$date": "2021-10-17T05:46:17.000Z" - }, - "end": { - "$date": "2021-10-17T06:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "03b71814-5d37-4571-b40d-d47bec7727fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-17T05:46:48.000Z" - }, - "end": { - "$date": "2021-10-17T06:17:45.000Z" - }, - "events": [ - { - "uuid": "e5f132bb-4a51-4283-a482-61578957ef28", - "start": { - "$date": "2021-10-17T05:46:48.000Z" - }, - "end": { - "$date": "2021-10-17T06:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "3115ee01-2271-4094-abfb-0c28001afc4a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-17T05:48:22.000Z" - }, - "end": { - "$date": "2021-10-17T06:16:23.000Z" - }, - "events": [ - { - "uuid": "c7820de1-dabb-414f-bf2f-a4073d9ea2d0", - "start": { - "$date": "2021-10-17T05:48:22.000Z" - }, - "end": { - "$date": "2021-10-17T06:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5093641a-6660-459e-8e58-81b028c71305", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-17T06:19:39.000Z" - }, - "end": { - "$date": "2021-10-17T07:32:13.000Z" - }, - "events": [ - { - "uuid": "b4e82f65-e5d2-4d53-bee3-23fa4b32e4f4", - "start": { - "$date": "2021-10-17T06:19:39.000Z" - }, - "end": { - "$date": "2021-10-17T07:32:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88211d88-b231-48a4-9429-fed82d5e0baa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-17T07:40:40.000Z" - }, - "end": { - "$date": "2021-10-17T07:58:40.000Z" - }, - "events": [ - { - "uuid": "fcd4a059-82e7-4410-8db6-2ec2f856623f", - "start": { - "$date": "2021-10-17T07:40:40.000Z" - }, - "end": { - "$date": "2021-10-17T07:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3268772e-7766-4512-88a8-7eb5fcc887c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-17T08:19:48.000Z" - }, - "end": { - "$date": "2021-10-17T08:20:06.000Z" - }, - "events": [ - { - "uuid": "f6f2f88b-a10d-417c-96ab-dc7bb6229bc3", - "start": { - "$date": "2021-10-17T08:19:48.000Z" - }, - "end": { - "$date": "2021-10-17T08:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34e9b3d4-faba-42b0-a3e0-f9538e2afe28", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-17T08:00:56.000Z" - }, - "end": { - "$date": "2021-10-17T08:19:44.000Z" - }, - "events": [ - { - "uuid": "6aed7932-bcda-4be0-8304-df599174936b", - "start": { - "$date": "2021-10-17T08:00:56.000Z" - }, - "end": { - "$date": "2021-10-17T08:19:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36b6b48a-70af-4df1-bbe2-968f6e30b428", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T10:26:34.000Z" - }, - "end": { - "$date": "2021-10-17T10:47:38.000Z" - }, - "events": [ - { - "uuid": "4c68bf87-5a86-4610-9c53-99db7d82d161", - "start": { - "$date": "2021-10-17T10:26:34.000Z" - }, - "end": { - "$date": "2021-10-17T10:47:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b67dfe2a-57ce-4828-867a-0dc6f1deb2af", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T10:50:07.000Z" - }, - "end": { - "$date": "2021-10-17T11:12:22.000Z" - }, - "events": [ - { - "uuid": "0438ea6c-9536-4ea5-ab52-f1986fb9ebbe", - "start": { - "$date": "2021-10-17T10:50:07.000Z" - }, - "end": { - "$date": "2021-10-17T11:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a8fa9f3-5638-494b-9a62-4544b7ddd499", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T11:14:10.000Z" - }, - "end": { - "$date": "2021-10-17T11:40:20.000Z" - }, - "events": [ - { - "uuid": "ab1cadb5-70c9-42b3-bcdc-d1bb21a9175f", - "start": { - "$date": "2021-10-17T11:14:10.000Z" - }, - "end": { - "$date": "2021-10-17T11:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e144aaa-286d-4057-91af-ce9314827713", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T11:43:38.000Z" - }, - "end": { - "$date": "2021-10-17T12:08:02.000Z" - }, - "events": [ - { - "uuid": "e11beccb-952e-4a0f-8718-54181112aec6", - "start": { - "$date": "2021-10-17T11:43:38.000Z" - }, - "end": { - "$date": "2021-10-17T12:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bcb9835-dfdb-40b4-8e37-8435cb558c9b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T12:10:16.000Z" - }, - "end": { - "$date": "2021-10-17T12:24:38.000Z" - }, - "events": [ - { - "uuid": "d339fcbe-1cdf-4ec7-8c16-9c331607237f", - "start": { - "$date": "2021-10-17T12:10:16.000Z" - }, - "end": { - "$date": "2021-10-17T12:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a424255-8c4f-4c54-8b26-c4fe59cbd7df", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T12:27:18.000Z" - }, - "end": { - "$date": "2021-10-17T12:48:57.000Z" - }, - "events": [ - { - "uuid": "7f605a5a-793e-4fc2-8d4c-701aba176e4a", - "start": { - "$date": "2021-10-17T12:27:18.000Z" - }, - "end": { - "$date": "2021-10-17T12:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "130995e2-e893-4d50-9930-7e1f7dcca04c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T12:51:31.000Z" - }, - "end": { - "$date": "2021-10-17T13:06:39.000Z" - }, - "events": [ - { - "uuid": "8c45a013-f059-4622-adcf-49fbf9538d69", - "start": { - "$date": "2021-10-17T12:51:31.000Z" - }, - "end": { - "$date": "2021-10-17T13:06:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bf746cb-0411-4330-9ab7-bc00720abcff", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T13:10:33.000Z" - }, - "end": { - "$date": "2021-10-17T13:27:57.000Z" - }, - "events": [ - { - "uuid": "ee9ca224-d37f-434e-b580-0540984e968c", - "start": { - "$date": "2021-10-17T13:10:33.000Z" - }, - "end": { - "$date": "2021-10-17T13:27:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2344a7d7-d5b6-4acb-8f55-7a0c0aeaf5fd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T13:29:56.000Z" - }, - "end": { - "$date": "2021-10-17T13:58:25.000Z" - }, - "events": [ - { - "uuid": "dd4df653-0100-4ea0-866d-46caf73cf62f", - "start": { - "$date": "2021-10-17T13:29:56.000Z" - }, - "end": { - "$date": "2021-10-17T13:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3462af4-4810-41a4-bd31-2a684301ff5c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T14:01:14.000Z" - }, - "end": { - "$date": "2021-10-17T14:22:44.000Z" - }, - "events": [ - { - "uuid": "cc841e45-81e7-4bae-a8bd-7b92a0d29114", - "start": { - "$date": "2021-10-17T14:01:14.000Z" - }, - "end": { - "$date": "2021-10-17T14:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "ce6f292b-2fc0-452e-b1c3-85af47953ac4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-17T14:05:55.000Z" - }, - "end": { - "$date": "2021-10-17T14:46:20.000Z" - }, - "events": [ - { - "uuid": "6c4bc248-8b1c-4729-9810-c4764a1f040c", - "start": { - "$date": "2021-10-17T14:05:55.000Z" - }, - "end": { - "$date": "2021-10-17T14:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9275e2a3-3c72-4c9c-9a56-f8ded63a549c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T14:24:52.000Z" - }, - "end": { - "$date": "2021-10-17T14:42:17.000Z" - }, - "events": [ - { - "uuid": "e1c3c75b-de17-49ba-b867-203e54ace256", - "start": { - "$date": "2021-10-17T14:24:52.000Z" - }, - "end": { - "$date": "2021-10-17T14:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31912348-e004-4290-9900-11c2def70df4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T14:44:15.000Z" - }, - "end": { - "$date": "2021-10-17T15:18:40.000Z" - }, - "events": [ - { - "uuid": "c1cd892e-9e11-44cd-8cf3-989e378f6c2f", - "start": { - "$date": "2021-10-17T14:44:15.000Z" - }, - "end": { - "$date": "2021-10-17T15:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "b13b595d-236c-40e4-a01d-11f783529cda", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-17T14:51:16.000Z" - }, - "end": { - "$date": "2021-10-17T18:28:43.000Z" - }, - "events": [ - { - "uuid": "da7c48dd-52f6-4203-9746-a3521dcd044b", - "start": { - "$date": "2021-10-17T14:51:16.000Z" - }, - "end": { - "$date": "2021-10-17T18:28:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "395439e4-2102-492c-b3d2-8b02b281124a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T15:22:39.000Z" - }, - "end": { - "$date": "2021-10-17T15:39:02.000Z" - }, - "events": [ - { - "uuid": "a59be35a-4a11-4c6c-9f35-6e107b9c444a", - "start": { - "$date": "2021-10-17T15:22:39.000Z" - }, - "end": { - "$date": "2021-10-17T15:39:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ce5121f-5ce2-45fa-961a-6eb11e1463df", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-17T15:41:42.000Z" - }, - "end": { - "$date": "2021-10-17T16:06:44.000Z" - }, - "events": [ - { - "uuid": "0766844b-39c0-4cac-a930-adbced97c53b", - "start": { - "$date": "2021-10-17T15:41:42.000Z" - }, - "end": { - "$date": "2021-10-17T16:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "64bf37a3-e397-4afd-be41-19acacad8667", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T15:51:46.000Z" - }, - "end": { - "$date": "2021-10-17T15:54:55.000Z" - }, - "events": [ - { - "uuid": "01c5528c-d721-4bc1-9d2a-c6b71cc8ef40", - "start": { - "$date": "2021-10-17T15:51:46.000Z" - }, - "end": { - "$date": "2021-10-17T15:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52fde2ac-eb2c-474b-acc6-5d519343cbc2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T16:01:46.000Z" - }, - "end": { - "$date": "2021-10-17T16:19:46.000Z" - }, - "events": [ - { - "uuid": "16815615-5b84-4ab3-b8e9-6397eaa6743d", - "start": { - "$date": "2021-10-17T16:01:46.000Z" - }, - "end": { - "$date": "2021-10-17T16:19:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "5558977d-17fd-493f-a7fd-8e9fcd5445ad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T16:38:23.000Z" - }, - "end": { - "$date": "2021-10-17T16:42:58.000Z" - }, - "events": [ - { - "uuid": "1c836909-cea8-4646-9202-a950daab3d06", - "start": { - "$date": "2021-10-17T16:38:23.000Z" - }, - "end": { - "$date": "2021-10-17T16:42:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "c5fea664-7194-4a93-8640-d7fb7ede65af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T16:43:18.000Z" - }, - "end": { - "$date": "2021-10-17T17:54:16.000Z" - }, - "events": [ - { - "uuid": "cc82bd36-d9d6-43d3-8e5c-f53db9fdbcf7", - "start": { - "$date": "2021-10-17T16:43:18.000Z" - }, - "end": { - "$date": "2021-10-17T17:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c1e453a9-1af0-4d05-a964-4adb4f280566", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T16:54:49.000Z" - }, - "end": { - "$date": "2021-10-17T18:57:50.000Z" - }, - "events": [ - { - "uuid": "f76401d2-0904-44fa-9ed3-3ae82a365a39", - "start": { - "$date": "2021-10-17T16:54:49.000Z" - }, - "end": { - "$date": "2021-10-17T17:13:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "818130d3-9d07-4ef4-96f0-34dabd4be2e6", - "start": { - "$date": "2021-10-17T17:13:49.000Z" - }, - "end": { - "$date": "2021-10-17T17:34:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5172f615-72a8-4f3f-bd17-f3ef58afc3cf", - "start": { - "$date": "2021-10-17T17:34:49.000Z" - }, - "end": { - "$date": "2021-10-17T18:57:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "bcd2cbba-9eab-407b-a300-02e5c141a2d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T19:15:24.000Z" - }, - "end": { - "$date": "2021-10-17T20:18:41.000Z" - }, - "events": [ - { - "uuid": "e11ec027-c180-49a3-860a-a8c6edf53b84", - "start": { - "$date": "2021-10-17T19:15:24.000Z" - }, - "end": { - "$date": "2021-10-17T20:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26dfa694-5246-4f4f-adbc-d72b0b419ce2", - "uuid": "d2cd4f0c-3c22-44d5-bde5-52420c513549", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-17T19:53:25.000Z" - }, - "end": { - "$date": "2021-10-17T20:45:20.000Z" - }, - "events": [ - { - "uuid": "aacbe596-fa6f-4cab-ad55-da656ebd4e68", - "start": { - "$date": "2021-10-17T19:53:25.000Z" - }, - "end": { - "$date": "2021-10-17T20:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d73a498-ce6d-4ee2-94b3-c1e1f8aea0cb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-17T20:17:38.000Z" - }, - "end": { - "$date": "2021-10-17T20:47:40.000Z" - }, - "events": [ - { - "uuid": "5c766e8b-48c1-4daa-9a7f-d200035244d0", - "start": { - "$date": "2021-10-17T20:17:38.000Z" - }, - "end": { - "$date": "2021-10-17T20:47:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a61c7fda-78e4-4e3a-8dfb-bbb7698f90e3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-17T20:56:37.000Z" - }, - "end": { - "$date": "2021-10-17T21:28:30.000Z" - }, - "events": [ - { - "uuid": "b6069618-5250-4f32-84a2-105336352d93", - "start": { - "$date": "2021-10-17T20:56:37.000Z" - }, - "end": { - "$date": "2021-10-17T21:28:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2bd6896b-eaaa-40f1-a7a6-5fe9ac414e3d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-17T21:12:36.000Z" - }, - "end": { - "$date": "2021-10-18T01:10:10.000Z" - }, - "events": [ - { - "uuid": "f522b0fe-1e3d-489a-bb2b-b5c7a6c2bca6", - "start": { - "$date": "2021-10-17T21:12:36.000Z" - }, - "end": { - "$date": "2021-10-17T23:58:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9efb50e5-760e-43f4-bd6a-6a30bb1eac22", - "start": { - "$date": "2021-10-17T23:58:36.000Z" - }, - "end": { - "$date": "2021-10-18T00:03:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7f6ddbb8-7b68-4a55-b505-3373379c68cb", - "start": { - "$date": "2021-10-18T00:03:36.000Z" - }, - "end": { - "$date": "2021-10-18T01:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06a09b43-b97b-4050-be0a-37a1a75af891", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-17T21:46:58.000Z" - }, - "end": { - "$date": "2021-10-17T22:29:47.000Z" - }, - "events": [ - { - "uuid": "5cdf39c3-c322-47e6-9580-be27f4edee3a", - "start": { - "$date": "2021-10-17T21:46:58.000Z" - }, - "end": { - "$date": "2021-10-17T22:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "bf456a31-e238-4935-84b1-b09b068c2978", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-17T23:29:12.000Z" - }, - "end": { - "$date": "2021-10-18T05:02:58.000Z" - }, - "events": [ - { - "uuid": "fdeaee07-12c6-40e0-8a10-3ebf68368d99", - "start": { - "$date": "2021-10-17T23:29:12.000Z" - }, - "end": { - "$date": "2021-10-18T05:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c0f6edf-cc37-4546-9cea-d91b2b6724f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-18T00:21:58.000Z" - }, - "end": { - "$date": "2021-10-18T01:00:22.000Z" - }, - "events": [ - { - "uuid": "5c0b0b80-afe1-414c-ac46-4b775d9b79cf", - "start": { - "$date": "2021-10-18T00:21:58.000Z" - }, - "end": { - "$date": "2021-10-18T01:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ea308bbb-cbd0-4d8c-9b92-398a09959c5e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-18T00:43:28.000Z" - }, - "end": { - "$date": "2021-10-18T01:23:14.000Z" - }, - "events": [ - { - "uuid": "3b7627ba-340b-4ef2-80f8-9922a9b0a729", - "start": { - "$date": "2021-10-18T00:43:28.000Z" - }, - "end": { - "$date": "2021-10-18T01:23:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2e4635a-7757-40a1-901f-3d540e60b3b2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-18T01:00:50.000Z" - }, - "end": { - "$date": "2021-10-18T01:05:36.000Z" - }, - "events": [ - { - "uuid": "22898d92-e26f-449c-9ed3-8819fca6595c", - "start": { - "$date": "2021-10-18T01:00:50.000Z" - }, - "end": { - "$date": "2021-10-18T01:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c75460f1-f2d4-4112-b050-80aef74126ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-18T01:26:09.000Z" - }, - "end": { - "$date": "2021-10-18T01:27:25.000Z" - }, - "events": [ - { - "uuid": "e1a5ed82-685d-475e-bcf7-eb7d4fefecc5", - "start": { - "$date": "2021-10-18T01:26:09.000Z" - }, - "end": { - "$date": "2021-10-18T01:27:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "58f5c7ff-e497-44d3-980d-81d7cfc749a8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-18T01:27:04.000Z" - }, - "end": { - "$date": "2021-10-18T01:32:24.000Z" - }, - "events": [ - { - "uuid": "968ddb1f-46c5-452f-8aaa-f0d477297a9d", - "start": { - "$date": "2021-10-18T01:27:04.000Z" - }, - "end": { - "$date": "2021-10-18T01:32:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aab0ea5e-3330-4296-9488-067114010997", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-18T01:27:54.000Z" - }, - "end": { - "$date": "2021-10-18T05:14:34.000Z" - }, - "events": [ - { - "uuid": "33a7eeb3-72c7-4927-95b1-59203dd57244", - "start": { - "$date": "2021-10-18T01:27:54.000Z" - }, - "end": { - "$date": "2021-10-18T05:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "30b4e0cc-95a8-42ae-b91c-1e40e465019a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-18T01:33:40.000Z" - }, - "end": { - "$date": "2021-10-18T05:14:49.000Z" - }, - "events": [ - { - "uuid": "8e6f03f4-9c50-473b-94e6-cfdd1834460d", - "start": { - "$date": "2021-10-18T01:33:40.000Z" - }, - "end": { - "$date": "2021-10-18T05:14:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f897c9e9-21da-4433-8f0f-4229431c46c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-17T19:38:52.000Z" - }, - "end": { - "$date": "2021-10-18T04:21:14.000Z" - }, - "events": [ - { - "uuid": "9f8d153a-17a7-45a8-a776-bc93ee1a98b1", - "start": { - "$date": "2021-10-17T19:38:52.000Z" - }, - "end": { - "$date": "2021-10-18T04:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "ef775497-69b9-4986-988e-49e653091384", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-18T03:02:20.000Z" - }, - "end": { - "$date": "2021-10-18T04:12:53.000Z" - }, - "events": [ - { - "uuid": "669ee5d1-b2d3-4008-a314-b0aa2f94a9c3", - "start": { - "$date": "2021-10-18T03:02:20.000Z" - }, - "end": { - "$date": "2021-10-18T04:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36402d0e-fa88-4c45-97fa-9029386d2cf8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T03:16:16.000Z" - }, - "end": { - "$date": "2021-10-18T03:49:46.000Z" - }, - "events": [ - { - "uuid": "fa003100-f7c9-4a80-89a3-0d1036eaf5bb", - "start": { - "$date": "2021-10-18T03:16:16.000Z" - }, - "end": { - "$date": "2021-10-18T03:49:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "546abc15-8a21-4f61-ba97-b9a8047a873c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-18T03:32:29.000Z" - }, - "end": { - "$date": "2021-10-18T05:14:37.000Z" - }, - "events": [ - { - "uuid": "d2a31968-77fb-4325-83b9-f53054754990", - "start": { - "$date": "2021-10-18T03:32:29.000Z" - }, - "end": { - "$date": "2021-10-18T05:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82e46d6c-066a-4e83-a4f8-4fd6b18e31a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-18T03:37:19.000Z" - }, - "end": { - "$date": "2021-10-18T05:46:26.000Z" - }, - "events": [ - { - "uuid": "bd5aeb66-b1dc-4cb8-99b9-64049d209501", - "start": { - "$date": "2021-10-18T03:37:19.000Z" - }, - "end": { - "$date": "2021-10-18T05:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd0bf414-991a-426c-9787-ffa86625f8e3", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-18T03:44:17.000Z" - }, - "end": { - "$date": "2021-10-18T05:46:10.000Z" - }, - "events": [ - { - "uuid": "1aea35db-a861-4a51-abe9-2a013c983188", - "start": { - "$date": "2021-10-18T03:44:17.000Z" - }, - "end": { - "$date": "2021-10-18T05:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ecdf59f-2334-4e2f-a4d8-44e81660c7c1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T03:51:45.000Z" - }, - "end": { - "$date": "2021-10-18T04:13:33.000Z" - }, - "events": [ - { - "uuid": "35aea4b8-29a6-4de8-aa60-d45d48589ca0", - "start": { - "$date": "2021-10-18T03:51:45.000Z" - }, - "end": { - "$date": "2021-10-18T04:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f21019db-dd1b-4ea5-9918-c2e431e9ec44", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T04:17:43.000Z" - }, - "end": { - "$date": "2021-10-18T04:33:46.000Z" - }, - "events": [ - { - "uuid": "57f35a0a-36eb-4b04-8962-1382ee104948", - "start": { - "$date": "2021-10-18T04:17:43.000Z" - }, - "end": { - "$date": "2021-10-18T04:33:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55f2350d-2fec-4e42-b8c5-e69640e37941", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T05:01:17.000Z" - }, - "end": { - "$date": "2021-10-18T05:18:25.000Z" - }, - "events": [ - { - "uuid": "ef1e6f30-77ae-4d9f-a333-4bf8ab36dec0", - "start": { - "$date": "2021-10-18T05:01:17.000Z" - }, - "end": { - "$date": "2021-10-18T05:21:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "057f588a-cb53-4aaf-b09d-ce07277f6c7e", - "start": { - "$date": "2021-10-18T05:21:17.000Z" - }, - "end": { - "$date": "2021-10-18T05:22:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98724d1c-3490-4837-b5c4-bb02e0a0cb41", - "start": { - "$date": "2021-10-18T05:22:17.000Z" - }, - "end": { - "$date": "2021-10-18T05:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "090dab12-5ff1-4fc7-b0c9-1b3e063dc946", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T05:47:54.000Z" - }, - "end": { - "$date": "2021-10-18T06:02:52.000Z" - }, - "events": [ - { - "uuid": "a73cfae4-fc04-4fa3-bb13-e65611bef981", - "start": { - "$date": "2021-10-18T05:47:54.000Z" - }, - "end": { - "$date": "2021-10-18T06:02:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4f90797d-4400-4ccc-a18b-fa2dff4d05dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-18T05:43:30.000Z" - }, - "end": { - "$date": "2021-10-18T07:18:49.000Z" - }, - "events": [ - { - "uuid": "6528f28c-80f1-4904-b25a-b7171dbf29ab", - "start": { - "$date": "2021-10-18T05:43:30.000Z" - }, - "end": { - "$date": "2021-10-18T07:18:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95756ea2-6988-4119-bad2-86f7b3754b01", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T06:04:56.000Z" - }, - "end": { - "$date": "2021-10-18T06:24:05.000Z" - }, - "events": [ - { - "uuid": "4cacceee-36cc-43aa-a86b-5e57bcf7ba58", - "start": { - "$date": "2021-10-18T06:04:56.000Z" - }, - "end": { - "$date": "2021-10-18T06:24:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87531a87-853b-4bfc-858f-63d5e1b0b4fd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T06:29:14.000Z" - }, - "end": { - "$date": "2021-10-18T06:58:34.000Z" - }, - "events": [ - { - "uuid": "b717a43b-2645-4389-8689-2202b9400703", - "start": { - "$date": "2021-10-18T06:29:14.000Z" - }, - "end": { - "$date": "2021-10-18T06:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", - "uuid": "d54d5717-da8d-4b0a-909e-dfdf8d814ad7", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-18T06:33:11.000Z" - }, - "end": { - "$date": "2021-10-18T06:35:49.000Z" - }, - "events": [ - { - "uuid": "189959cb-1d30-414a-b263-0b327eb42191", - "start": { - "$date": "2021-10-18T06:33:11.000Z" - }, - "end": { - "$date": "2021-10-18T06:35:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "ac5e9248-319d-4ff4-bdad-5559eafacb5a", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-18T06:35:26.000Z" - }, - "end": { - "$date": "2021-10-18T06:38:04.000Z" - }, - "events": [ - { - "uuid": "6d02dad0-f4fb-469d-af62-8b6a5d82bc8d", - "start": { - "$date": "2021-10-18T06:35:26.000Z" - }, - "end": { - "$date": "2021-10-18T06:38:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "5d69b7f1-465a-4d15-aead-1dfddcd7866c", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-18T06:37:41.000Z" - }, - "end": { - "$date": "2021-10-18T07:32:35.000Z" - }, - "events": [ - { - "uuid": "e255965a-8558-47ae-9dec-ea52f34a8ea2", - "start": { - "$date": "2021-10-18T06:37:41.000Z" - }, - "end": { - "$date": "2021-10-18T07:32:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca447545-1045-4e9f-81ca-9da7aba2e566", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T07:01:03.000Z" - }, - "end": { - "$date": "2021-10-18T07:18:27.000Z" - }, - "events": [ - { - "uuid": "121a2743-4ceb-4388-b86b-d8e4f5c4cda9", - "start": { - "$date": "2021-10-18T07:01:03.000Z" - }, - "end": { - "$date": "2021-10-18T07:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "264ab163-90fd-4f66-985b-343745f5dc34", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T07:19:41.000Z" - }, - "end": { - "$date": "2021-10-18T08:42:10.000Z" - }, - "events": [ - { - "uuid": "be870ca2-e14d-46df-8d39-7168c5f096cc", - "start": { - "$date": "2021-10-18T07:19:41.000Z" - }, - "end": { - "$date": "2021-10-18T08:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d9d0f2d-f348-4dde-8096-de47f3737973", - "uuid": "56f6fecd-4257-4eff-9344-f71d9419d2a1", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-18T07:32:17.000Z" - }, - "end": { - "$date": "2021-10-18T07:38:24.000Z" - }, - "events": [ - { - "uuid": "3ca8a88c-f187-4629-9589-e6a690c83a7f", - "start": { - "$date": "2021-10-18T07:32:17.000Z" - }, - "end": { - "$date": "2021-10-18T07:38:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "2d06fa37-af2b-49de-a209-0abb04e58d40", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-18T11:13:52.000Z" - }, - "end": { - "$date": "2021-10-18T13:47:13.000Z" - }, - "events": [ - { - "uuid": "d0979ba7-fdde-4f5c-a922-f2a13b501697", - "start": { - "$date": "2021-10-18T11:13:52.000Z" - }, - "end": { - "$date": "2021-10-18T13:47:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98c11b38-bd61-404e-b1bd-8c6b6fccfb99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-18T15:39:29.000Z" - }, - "end": { - "$date": "2021-10-18T15:52:51.000Z" - }, - "events": [ - { - "uuid": "598909f8-6d1f-4dc7-848a-57b2ca5cad29", - "start": { - "$date": "2021-10-18T15:39:29.000Z" - }, - "end": { - "$date": "2021-10-18T15:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "5e18cc1e-5f5c-4296-8f2a-48fb44cf7955", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-18T17:20:04.000Z" - }, - "end": { - "$date": "2021-10-18T19:51:35.000Z" - }, - "events": [ - { - "uuid": "a93cd4c7-3ace-457e-85b7-d4c0a91392c8", - "start": { - "$date": "2021-10-18T17:20:04.000Z" - }, - "end": { - "$date": "2021-10-18T19:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "6fb8d9c0-b640-41c7-9a09-c5ab6e97f32a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-18T20:14:53.000Z" - }, - "end": { - "$date": "2021-10-18T20:22:44.000Z" - }, - "events": [ - { - "uuid": "d0288103-8a8a-4af2-abd2-c867827786bc", - "start": { - "$date": "2021-10-18T20:14:53.000Z" - }, - "end": { - "$date": "2021-10-18T20:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "54bc7b35-c1df-408d-80b3-ed1177a438ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-18T21:25:09.000Z" - }, - "end": { - "$date": "2021-10-19T00:13:40.000Z" - }, - "events": [ - { - "uuid": "ecdfb1e4-3809-43da-b971-5a6055b5ce49", - "start": { - "$date": "2021-10-18T21:25:09.000Z" - }, - "end": { - "$date": "2021-10-19T00:13:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "061650c1-26b7-4ea5-ac3b-690c4b7f96dc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-18T21:44:53.000Z" - }, - "end": { - "$date": "2021-10-18T21:54:39.000Z" - }, - "events": [ - { - "uuid": "aebf30ae-7bdf-49d0-8459-45b7c426c9a3", - "start": { - "$date": "2021-10-18T21:44:53.000Z" - }, - "end": { - "$date": "2021-10-18T21:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "b5a19038-75e6-4b94-9d2d-1b90468ea778", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-18T22:18:39.000Z" - }, - "end": { - "$date": "2021-10-18T22:40:52.000Z" - }, - "events": [ - { - "uuid": "4c90ad6a-8469-49ec-a052-7cc152b1570b", - "start": { - "$date": "2021-10-18T22:18:39.000Z" - }, - "end": { - "$date": "2021-10-18T22:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e95dd8f5-124b-4791-8ca0-2be188b8291a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-18T22:19:58.000Z" - }, - "end": { - "$date": "2021-10-18T23:08:48.000Z" - }, - "events": [ - { - "uuid": "eb2e9b62-68ce-4706-bc80-08453bfc9c64", - "start": { - "$date": "2021-10-18T22:19:58.000Z" - }, - "end": { - "$date": "2021-10-18T22:38:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f7344b0-a1b7-44ce-a9ae-7d789a08ad9c", - "start": { - "$date": "2021-10-18T22:38:58.000Z" - }, - "end": { - "$date": "2021-10-18T22:59:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef94f5ea-ddcb-4d55-a23d-ee7a0414bd66", - "start": { - "$date": "2021-10-18T22:59:58.000Z" - }, - "end": { - "$date": "2021-10-18T23:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "34eb8692-0b96-4476-846e-35d047625ec9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-18T22:42:48.000Z" - }, - "end": { - "$date": "2021-10-18T23:45:00.000Z" - }, - "events": [ - { - "uuid": "0845d77a-60a3-4f93-93c4-853210b11deb", - "start": { - "$date": "2021-10-18T22:42:48.000Z" - }, - "end": { - "$date": "2021-10-18T23:45:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d0aa90b2-dfef-4f46-856c-453989e9de48", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T00:32:28.000Z" - }, - "end": { - "$date": "2021-10-19T03:18:40.000Z" - }, - "events": [ - { - "uuid": "725cdeb2-6d41-4e80-86b1-ca93def1e6c3", - "start": { - "$date": "2021-10-19T00:32:28.000Z" - }, - "end": { - "$date": "2021-10-19T01:53:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c322608f-68bb-43d5-bbd9-aed58388dbd6", - "start": { - "$date": "2021-10-19T01:53:28.000Z" - }, - "end": { - "$date": "2021-10-19T01:54:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2342671-3db2-48a8-89a7-3c60d7181f41", - "start": { - "$date": "2021-10-19T01:54:28.000Z" - }, - "end": { - "$date": "2021-10-19T02:04:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73b4b556-f60c-45c8-8830-0dc8131f5c8b", - "start": { - "$date": "2021-10-19T02:04:28.000Z" - }, - "end": { - "$date": "2021-10-19T02:08:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f41ebe6a-b7fc-479a-b017-aaf11aff1469", - "start": { - "$date": "2021-10-19T02:08:28.000Z" - }, - "end": { - "$date": "2021-10-19T03:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "b2a68799-4d51-4445-b332-d64d18abfd98", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-19T00:57:11.000Z" - }, - "end": { - "$date": "2021-10-19T03:01:06.000Z" - }, - "events": [ - { - "uuid": "8accf80c-4a09-464d-885d-ae0ac89746d9", - "start": { - "$date": "2021-10-19T00:57:11.000Z" - }, - "end": { - "$date": "2021-10-19T03:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0cd4a766-9ffb-46e1-a9d5-38f188e6a69a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-19T01:14:46.000Z" - }, - "end": { - "$date": "2021-10-19T04:51:20.000Z" - }, - "events": [ - { - "uuid": "06f89e57-d8cd-4960-8109-ac106722a2dd", - "start": { - "$date": "2021-10-19T01:14:46.000Z" - }, - "end": { - "$date": "2021-10-19T04:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff6c4864-6fcf-4905-8f5b-c828d240515f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-19T02:05:50.000Z" - }, - "end": { - "$date": "2021-10-19T02:52:14.000Z" - }, - "events": [ - { - "uuid": "b63e1039-39ee-4de0-a418-cafcebda0d5e", - "start": { - "$date": "2021-10-19T02:05:50.000Z" - }, - "end": { - "$date": "2021-10-19T02:52:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "549306f4-9cb1-4a95-a14b-3dc0863e2641", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-19T02:03:52.000Z" - }, - "end": { - "$date": "2021-10-19T03:54:25.000Z" - }, - "events": [ - { - "uuid": "e6f79840-a2bd-47f9-8673-22aa9ac467cd", - "start": { - "$date": "2021-10-19T02:03:52.000Z" - }, - "end": { - "$date": "2021-10-19T03:54:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "137f2b66-1fe0-49dd-911c-05af33088fd6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-19T04:43:29.000Z" - }, - "end": { - "$date": "2021-10-19T05:13:21.000Z" - }, - "events": [ - { - "uuid": "a4d43a19-39b8-408a-9cfb-e93f1776be8f", - "start": { - "$date": "2021-10-19T04:43:29.000Z" - }, - "end": { - "$date": "2021-10-19T05:16:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff89db00-33a6-43a9-8206-34a0ee17c3e1", - "start": { - "$date": "2021-10-19T05:16:29.000Z" - }, - "end": { - "$date": "2021-10-19T05:21:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9cda94c9-eb8c-4d4c-b355-5dc3ff710d17", - "start": { - "$date": "2021-10-19T05:21:29.000Z" - }, - "end": { - "$date": "2021-10-19T05:23:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "713c6490-af38-4cfb-bfc9-a84c5e07a746", - "start": { - "$date": "2021-10-19T05:23:29.000Z" - }, - "end": { - "$date": "2021-10-19T06:05:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cff79e21-67df-44a1-9ae8-1b66e417c9a3", - "start": { - "$date": "2021-10-19T06:05:29.000Z" - }, - "end": { - "$date": "2021-10-19T06:07:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bf56cd3a-2699-4bff-b112-ee77d65facee", - "start": { - "$date": "2021-10-19T06:07:29.000Z" - }, - "end": { - "$date": "2021-10-19T06:11:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "65e4c782-6d73-498d-81eb-d70250228856", - "start": { - "$date": "2021-10-19T06:11:29.000Z" - }, - "end": { - "$date": "2021-10-19T06:22:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "353ebfac-b823-46b2-a9bc-bd84cb6c2249", - "start": { - "$date": "2021-10-19T06:22:29.000Z" - }, - "end": { - "$date": "2021-10-19T06:24:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b4b7152b-fca9-4524-9e55-03031b0d6a28", - "start": { - "$date": "2021-10-19T06:24:29.000Z" - }, - "end": { - "$date": "2021-10-19T05:13:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "34235ef3-9467-4101-8dab-67bf4c5c4814", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T03:18:50.000Z" - }, - "end": { - "$date": "2021-10-19T03:57:25.000Z" - }, - "events": [ - { - "uuid": "9a6e8f7c-31e6-4d69-a217-d528d0e3a089", - "start": { - "$date": "2021-10-19T03:18:50.000Z" - }, - "end": { - "$date": "2021-10-19T03:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "36be539f-f953-4a31-b75f-bb9f207d4ab7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-19T03:38:35.000Z" - }, - "end": { - "$date": "2021-10-19T03:53:29.000Z" - }, - "events": [ - { - "uuid": "21dfa757-9946-416d-918b-69677f98c383", - "start": { - "$date": "2021-10-19T03:38:35.000Z" - }, - "end": { - "$date": "2021-10-19T03:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "ea99ca71-f609-4d27-9dfb-2b3ef4f4c06b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-19T04:00:45.000Z" - }, - "end": { - "$date": "2021-10-19T11:54:21.000Z" - }, - "events": [ - { - "uuid": "9db1a574-8b1d-404e-8577-af2ca4ffab03", - "start": { - "$date": "2021-10-19T04:00:45.000Z" - }, - "end": { - "$date": "2021-10-19T11:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f56f2d3f-2db1-438a-a1ae-90c1469a3b2f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-19T05:22:02.000Z" - }, - "end": { - "$date": "2021-10-19T05:48:15.000Z" - }, - "events": [ - { - "uuid": "b37093f9-ecda-4554-ae41-78c2fbf5385d", - "start": { - "$date": "2021-10-19T05:22:02.000Z" - }, - "end": { - "$date": "2021-10-19T05:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "dd543e2f-eb38-4032-8905-08ef060dd8bc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-19T05:49:31.000Z" - }, - "end": { - "$date": "2021-10-19T06:34:41.000Z" - }, - "events": [ - { - "uuid": "d8c426f8-5e57-4b9a-b8ba-b538d1cde468", - "start": { - "$date": "2021-10-19T05:49:31.000Z" - }, - "end": { - "$date": "2021-10-19T06:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95ebd9bd-3884-4c84-bfd4-c71de4321f47", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-19T05:50:04.000Z" - }, - "end": { - "$date": "2021-10-19T06:32:09.000Z" - }, - "events": [ - { - "uuid": "9240bf86-c5c4-4fbf-acf5-1dfb44eb5ccc", - "start": { - "$date": "2021-10-19T05:50:04.000Z" - }, - "end": { - "$date": "2021-10-19T06:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "4ba006b6-9257-48a3-97e6-85c9e569ba9d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T21:32:37.000Z" - }, - "end": { - "$date": "2021-10-19T22:05:38.000Z" - }, - "events": [ - { - "uuid": "4c6ee9b5-a8c5-4152-b872-a8d84f83adec", - "start": { - "$date": "2021-10-19T21:32:37.000Z" - }, - "end": { - "$date": "2021-10-19T22:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3d4a0f36-1f23-462a-ab9d-f2fb8d341f4f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T22:07:08.000Z" - }, - "end": { - "$date": "2021-10-19T23:23:21.000Z" - }, - "events": [ - { - "uuid": "179ac38e-3f65-4fd4-9372-bccf8a4d748e", - "start": { - "$date": "2021-10-19T22:07:08.000Z" - }, - "end": { - "$date": "2021-10-19T23:23:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9a23509-484e-46a2-8ff9-4f78204cfaa6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-19T22:28:08.000Z" - }, - "end": { - "$date": "2021-10-19T22:49:58.000Z" - }, - "events": [ - { - "uuid": "157bfbe6-5740-49a5-88f7-50117425db52", - "start": { - "$date": "2021-10-19T22:28:08.000Z" - }, - "end": { - "$date": "2021-10-19T22:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "e66c3fa1-5e19-4815-a7ea-d29db854359a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-19T22:27:40.000Z" - }, - "end": { - "$date": "2021-10-19T22:36:14.000Z" - }, - "events": [ - { - "uuid": "3acacdc3-7863-4ffa-b6ff-d6c178efb522", - "start": { - "$date": "2021-10-19T22:27:40.000Z" - }, - "end": { - "$date": "2021-10-19T22:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "fb3e508b-b3d4-494f-8704-7695e214362a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-19T22:39:12.000Z" - }, - "end": { - "$date": "2021-10-19T23:06:07.000Z" - }, - "events": [ - { - "uuid": "a58f292f-53e5-4ddd-ac02-93aae7af6e7f", - "start": { - "$date": "2021-10-19T22:39:12.000Z" - }, - "end": { - "$date": "2021-10-19T23:06:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b93cf0c5-cf1d-4e53-9c8b-4c6c33c802d5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-19T22:49:07.000Z" - }, - "end": { - "$date": "2021-10-20T01:06:47.000Z" - }, - "events": [ - { - "uuid": "cfa872d9-56d1-4941-826e-8b767f588bd0", - "start": { - "$date": "2021-10-19T22:49:07.000Z" - }, - "end": { - "$date": "2021-10-20T01:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "637b8ff9-9b5e-4e51-b194-a4e3d828de19", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-19T22:50:11.000Z" - }, - "end": { - "$date": "2021-10-20T01:06:14.000Z" - }, - "events": [ - { - "uuid": "0325481f-3520-439b-8dcc-32b9db8dbef9", - "start": { - "$date": "2021-10-19T22:50:11.000Z" - }, - "end": { - "$date": "2021-10-20T01:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "14eb4b9e-95de-4e76-8ba0-f7a075fd6bc9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-19T23:13:56.000Z" - }, - "end": { - "$date": "2021-10-19T23:36:36.000Z" - }, - "events": [ - { - "uuid": "01d916a0-3157-431e-b41f-652ce9891c19", - "start": { - "$date": "2021-10-19T23:13:56.000Z" - }, - "end": { - "$date": "2021-10-19T23:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "05ad5b63-9db4-4b28-9cc5-27dcdc0ae228", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-19T23:22:20.000Z" - }, - "end": { - "$date": "2021-10-20T02:08:09.000Z" - }, - "events": [ - { - "uuid": "dc0a68b6-b107-42e7-9ca2-9c9af730619f", - "start": { - "$date": "2021-10-19T23:22:20.000Z" - }, - "end": { - "$date": "2021-10-20T00:54:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef4ba1a3-a09a-49ed-9038-67d3762256c9", - "start": { - "$date": "2021-10-20T00:54:20.000Z" - }, - "end": { - "$date": "2021-10-20T01:05:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a65d57ae-3a2c-4d6b-8115-44fd49710d81", - "start": { - "$date": "2021-10-20T01:05:20.000Z" - }, - "end": { - "$date": "2021-10-20T02:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b483c372-26de-4a55-9802-6dd514ce2067", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T23:29:52.000Z" - }, - "end": { - "$date": "2021-10-19T23:39:28.000Z" - }, - "events": [ - { - "uuid": "a33d9865-13d8-40bf-b22f-fc319bee0339", - "start": { - "$date": "2021-10-19T23:29:52.000Z" - }, - "end": { - "$date": "2021-10-19T23:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "675fde09-ea62-459d-b834-59813f738b0c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T23:39:33.000Z" - }, - "end": { - "$date": "2021-10-19T23:40:48.000Z" - }, - "events": [ - { - "uuid": "4f8227ce-bb43-4a07-a85b-45d0da7373a7", - "start": { - "$date": "2021-10-19T23:39:33.000Z" - }, - "end": { - "$date": "2021-10-19T23:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0bf9dc5c-3ae8-4677-b837-9608c78ccad2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T23:41:33.000Z" - }, - "end": { - "$date": "2021-10-19T23:42:53.000Z" - }, - "events": [ - { - "uuid": "b92a2b19-4401-4457-82cf-5b173f1da62f", - "start": { - "$date": "2021-10-19T23:41:33.000Z" - }, - "end": { - "$date": "2021-10-19T23:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "7a8dd5af-69df-4fb9-9af2-ba52a8dac40a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-19T23:48:29.000Z" - }, - "end": { - "$date": "2021-10-19T23:55:13.000Z" - }, - "events": [ - { - "uuid": "46f84171-7afc-452d-bd28-1f8aa0e9d44f", - "start": { - "$date": "2021-10-19T23:48:29.000Z" - }, - "end": { - "$date": "2021-10-19T23:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d211edc5-5c5f-4770-971c-8a5aa073d030", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-19T23:49:44.000Z" - }, - "end": { - "$date": "2021-10-20T01:35:59.000Z" - }, - "events": [ - { - "uuid": "8f55c2c5-5ee9-4351-ad59-d3b29becee35", - "start": { - "$date": "2021-10-19T23:49:44.000Z" - }, - "end": { - "$date": "2021-10-20T01:35:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "99504bfa-ee83-4ad5-8b94-4409287eb4af", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T00:17:57.000Z" - }, - "end": { - "$date": "2021-10-20T02:41:18.000Z" - }, - "events": [ - { - "uuid": "d6085f69-8c14-4a9d-9ed3-c6e8dffcb7d0", - "start": { - "$date": "2021-10-20T00:17:57.000Z" - }, - "end": { - "$date": "2021-10-20T02:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9ad63b0-9302-4ed5-af0b-54428c03f3f1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-20T00:30:09.000Z" - }, - "end": { - "$date": "2021-10-20T02:42:01.000Z" - }, - "events": [ - { - "uuid": "9e9a09ae-8a58-4985-9f02-83a386a27398", - "start": { - "$date": "2021-10-20T00:30:09.000Z" - }, - "end": { - "$date": "2021-10-20T02:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "26b95c72-17a0-4c86-838f-b0aa69e1307d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-20T00:33:06.000Z" - }, - "end": { - "$date": "2021-10-20T01:12:20.000Z" - }, - "events": [ - { - "uuid": "1ebac70d-4e38-492c-8034-ba4bcd154792", - "start": { - "$date": "2021-10-20T00:33:06.000Z" - }, - "end": { - "$date": "2021-10-20T01:12:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89881d95-cb2a-46d5-b087-b5a2f171cdf0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T01:02:23.000Z" - }, - "end": { - "$date": "2021-10-20T01:10:15.000Z" - }, - "events": [ - { - "uuid": "960303f2-efaa-4164-a234-56a8d0085f02", - "start": { - "$date": "2021-10-20T01:02:23.000Z" - }, - "end": { - "$date": "2021-10-20T01:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3fa88e28-9938-400b-9605-33bfa5934fe1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-20T01:07:14.000Z" - }, - "end": { - "$date": "2021-10-20T02:39:17.000Z" - }, - "events": [ - { - "uuid": "fac9f1eb-78ac-49bf-8e06-2371e9cf509f", - "start": { - "$date": "2021-10-20T01:07:14.000Z" - }, - "end": { - "$date": "2021-10-20T02:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3eedf87c-48dd-403d-aba8-24ab0a9cc308", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T01:07:38.000Z" - }, - "end": { - "$date": "2021-10-20T01:13:12.000Z" - }, - "events": [ - { - "uuid": "74a0f812-ec1f-4f23-a999-c891a78a6ea7", - "start": { - "$date": "2021-10-20T01:07:38.000Z" - }, - "end": { - "$date": "2021-10-20T01:13:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1bdc626e-827c-4d0b-af0f-9eeb8e61f3fc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-20T01:12:30.000Z" - }, - "end": { - "$date": "2021-10-20T02:40:22.000Z" - }, - "events": [ - { - "uuid": "8ed19f9f-4757-4a92-b9ec-be61eed834b2", - "start": { - "$date": "2021-10-20T01:12:30.000Z" - }, - "end": { - "$date": "2021-10-20T02:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c98e0320-2e32-4bfa-a6ce-90e02644091c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T01:13:54.000Z" - }, - "end": { - "$date": "2021-10-20T01:15:52.000Z" - }, - "events": [ - { - "uuid": "f58bff73-3ac5-4fc8-97eb-f1fdc3bf7b82", - "start": { - "$date": "2021-10-20T01:13:54.000Z" - }, - "end": { - "$date": "2021-10-20T01:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ee43baa7-3bef-4b94-9836-ba61d8974987", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T01:16:19.000Z" - }, - "end": { - "$date": "2021-10-20T02:39:16.000Z" - }, - "events": [ - { - "uuid": "007ffe95-5040-41f7-bb2d-de60206598b7", - "start": { - "$date": "2021-10-20T01:16:19.000Z" - }, - "end": { - "$date": "2021-10-20T02:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "92fc92ef-6251-43a0-8f0a-dca374aaff00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T01:22:59.000Z" - }, - "end": { - "$date": "2021-10-20T01:24:34.000Z" - }, - "events": [ - { - "uuid": "7661a01f-3c8e-4042-b274-0a8595e81056", - "start": { - "$date": "2021-10-20T01:22:59.000Z" - }, - "end": { - "$date": "2021-10-20T01:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "99e7699b-7377-4940-8a3e-c5851536392d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T01:59:01.000Z" - }, - "end": { - "$date": "2021-10-20T02:14:26.000Z" - }, - "events": [ - { - "uuid": "c8534836-a6a5-41d8-ae80-5848eb3a3783", - "start": { - "$date": "2021-10-20T01:59:01.000Z" - }, - "end": { - "$date": "2021-10-20T02:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "021de5b0-30eb-46f7-aecb-3be586db4c4e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T01:42:25.000Z" - }, - "end": { - "$date": "2021-10-20T01:47:16.000Z" - }, - "events": [ - { - "uuid": "42d1437b-5627-4190-9e3f-f5dea75fa5c8", - "start": { - "$date": "2021-10-20T01:42:25.000Z" - }, - "end": { - "$date": "2021-10-20T01:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "428dbee6-4506-4b46-b841-6b66febf2eaf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T01:47:30.000Z" - }, - "end": { - "$date": "2021-10-20T02:10:44.000Z" - }, - "events": [ - { - "uuid": "fe7860ba-6b1b-4056-b82e-12f7af7566da", - "start": { - "$date": "2021-10-20T01:47:30.000Z" - }, - "end": { - "$date": "2021-10-20T02:10:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "29bc0a96-7271-4999-becd-e108c86b4f6d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-20T02:00:06.000Z" - }, - "end": { - "$date": "2021-10-20T02:35:49.000Z" - }, - "events": [ - { - "uuid": "1fe07072-36da-4b0f-b253-ecee5131c530", - "start": { - "$date": "2021-10-20T02:00:06.000Z" - }, - "end": { - "$date": "2021-10-20T02:35:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "f54358f0-d03c-494d-808a-f0b847728619", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T02:13:28.000Z" - }, - "end": { - "$date": "2021-10-20T02:33:27.000Z" - }, - "events": [ - { - "uuid": "5c2ea3df-a968-4f0c-9e3c-44794c47e81f", - "start": { - "$date": "2021-10-20T02:13:28.000Z" - }, - "end": { - "$date": "2021-10-20T02:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9043b1ef-0bbd-4d49-b2d9-6078c9cd4ecf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T02:16:26.000Z" - }, - "end": { - "$date": "2021-10-20T02:17:31.000Z" - }, - "events": [ - { - "uuid": "cb92f728-4d9f-4f02-b8a6-6e139a2bb65e", - "start": { - "$date": "2021-10-20T02:16:26.000Z" - }, - "end": { - "$date": "2021-10-20T02:17:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "31f931de-a324-4ffa-8e36-02c325bcdd89", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T02:19:57.000Z" - }, - "end": { - "$date": "2021-10-20T02:23:31.000Z" - }, - "events": [ - { - "uuid": "c12c2b0a-0f97-45e2-9fc8-74d792f0c01a", - "start": { - "$date": "2021-10-20T02:19:57.000Z" - }, - "end": { - "$date": "2021-10-20T02:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1379f3c0-77a6-45ea-b106-de8c94e6749a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T02:23:37.000Z" - }, - "end": { - "$date": "2021-10-20T02:32:42.000Z" - }, - "events": [ - { - "uuid": "4030c8e6-971e-40db-aacd-15e4d0be6916", - "start": { - "$date": "2021-10-20T02:23:37.000Z" - }, - "end": { - "$date": "2021-10-20T02:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2011c9dc-4a9a-499c-9411-f47fbce24f60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T02:23:37.000Z" - }, - "end": { - "$date": "2021-10-20T02:35:11.000Z" - }, - "events": [ - { - "uuid": "ea770234-db1c-41c8-bcdc-82231306f4be", - "start": { - "$date": "2021-10-20T02:23:37.000Z" - }, - "end": { - "$date": "2021-10-20T02:35:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4a494b29-252e-4900-9ee2-95de89089232", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T02:35:42.000Z" - }, - "end": { - "$date": "2021-10-20T02:37:31.000Z" - }, - "events": [ - { - "uuid": "495c0895-7213-4427-bca6-30dceeb9447f", - "start": { - "$date": "2021-10-20T02:35:42.000Z" - }, - "end": { - "$date": "2021-10-20T02:37:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "15c22553-887c-4bbb-8cd6-9d68408a0520", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T02:37:37.000Z" - }, - "end": { - "$date": "2021-10-20T02:38:51.000Z" - }, - "events": [ - { - "uuid": "1fb8a8d8-e013-4cec-8462-52ec63fdb990", - "start": { - "$date": "2021-10-20T02:37:37.000Z" - }, - "end": { - "$date": "2021-10-20T02:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3db341ed-fa26-4798-9e0f-5be0783497d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-20T02:40:25.000Z" - }, - "end": { - "$date": "2021-10-20T04:32:47.000Z" - }, - "events": [ - { - "uuid": "c8d47af6-a67c-47a3-9c0f-20a5697d3d4e", - "start": { - "$date": "2021-10-20T02:40:25.000Z" - }, - "end": { - "$date": "2021-10-20T04:32:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "670df0b9-34ce-48f9-80e9-45ab02ac2661", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T04:14:30.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:48.000Z" - }, - "events": [ - { - "uuid": "8072a974-5bce-48cf-981c-228b4e15befe", - "start": { - "$date": "2021-10-20T04:14:30.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "61970a17-d49d-462b-9d61-2a2e839f2c56", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T02:47:09.000Z" - }, - "end": { - "$date": "2021-10-20T03:33:05.000Z" - }, - "events": [ - { - "uuid": "7d0a3091-9a34-4930-bd18-302219671219", - "start": { - "$date": "2021-10-20T02:47:09.000Z" - }, - "end": { - "$date": "2021-10-20T03:33:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1f89b62f-46e6-491a-9a81-3a5779f9687c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-20T02:44:22.000Z" - }, - "end": { - "$date": "2021-10-20T03:52:19.000Z" - }, - "events": [ - { - "uuid": "70879f26-6216-40c9-9ca5-8c31cf357274", - "start": { - "$date": "2021-10-20T02:44:22.000Z" - }, - "end": { - "$date": "2021-10-20T03:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec1e9e33-8831-4603-83f6-beb0cb7a4bf2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T02:46:57.000Z" - }, - "end": { - "$date": "2021-10-20T03:33:06.000Z" - }, - "events": [ - { - "uuid": "21081fc7-0928-493d-a137-0a4f3ae543d4", - "start": { - "$date": "2021-10-20T02:46:57.000Z" - }, - "end": { - "$date": "2021-10-20T03:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3ae638f-402b-4af1-b1fd-a83e2171bc83", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T04:14:28.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:42.000Z" - }, - "events": [ - { - "uuid": "5162bcc0-72a6-489b-b9dd-b1b53a26e051", - "start": { - "$date": "2021-10-20T04:14:28.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2be7d4bc-9007-441b-a443-32823ff023e3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-20T03:33:00.000Z" - }, - "end": { - "$date": "2021-10-20T03:34:24.000Z" - }, - "events": [ - { - "uuid": "d3190f2e-3dd8-45de-adce-934f797fd83c", - "start": { - "$date": "2021-10-20T03:33:00.000Z" - }, - "end": { - "$date": "2021-10-20T03:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12306131-4fed-4ced-96f9-ee55f58e345b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-20T02:46:34.000Z" - }, - "end": { - "$date": "2021-10-20T03:33:05.000Z" - }, - "events": [ - { - "uuid": "3d68f439-78d2-422e-9383-ec87bb25b199", - "start": { - "$date": "2021-10-20T02:46:34.000Z" - }, - "end": { - "$date": "2021-10-20T03:33:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "daee9029-36b0-42fd-b039-329f61368e3a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-20T02:46:55.000Z" - }, - "end": { - "$date": "2021-10-20T04:32:58.000Z" - }, - "events": [ - { - "uuid": "3a482dbb-1b8c-4ffc-988a-1fe1862f0b39", - "start": { - "$date": "2021-10-20T02:46:55.000Z" - }, - "end": { - "$date": "2021-10-20T04:32:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e3aad7d-e5ee-40c8-b051-5706965871dc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T03:36:55.000Z" - }, - "end": { - "$date": "2021-10-20T03:53:35.000Z" - }, - "events": [ - { - "uuid": "9828721a-9101-4a4c-89b3-c32c3a34a0c8", - "start": { - "$date": "2021-10-20T03:36:55.000Z" - }, - "end": { - "$date": "2021-10-20T03:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b618943d-9d4d-4a65-b1fa-46723e30eafe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-20T03:37:11.000Z" - }, - "end": { - "$date": "2021-10-20T03:53:37.000Z" - }, - "events": [ - { - "uuid": "7afb8a13-07dd-454c-a326-6aa95289d6b1", - "start": { - "$date": "2021-10-20T03:37:11.000Z" - }, - "end": { - "$date": "2021-10-20T03:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16de1d12-cd17-41eb-a9a3-0b63643eaf2c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-20T03:36:50.000Z" - }, - "end": { - "$date": "2021-10-20T03:53:36.000Z" - }, - "events": [ - { - "uuid": "8ffcafa9-529d-4f7d-b939-ba525d38ee23", - "start": { - "$date": "2021-10-20T03:36:50.000Z" - }, - "end": { - "$date": "2021-10-20T03:53:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e4b7c65-e2e1-4a02-a860-1ab8e6122ece", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-20T03:57:36.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:36.000Z" - }, - "events": [ - { - "uuid": "4a870c6c-433e-458c-852f-26a8c0879fe2", - "start": { - "$date": "2021-10-20T03:57:36.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92254d4f-1405-4bfd-9007-5a2eb93748fe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T03:57:35.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:31.000Z" - }, - "events": [ - { - "uuid": "34162c47-754e-42e3-867d-807c1ec7585b", - "start": { - "$date": "2021-10-20T03:57:35.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a6a41dd-a1b2-4b70-a195-76a2056592e6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-20T03:57:56.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:37.000Z" - }, - "events": [ - { - "uuid": "0e337d8b-aba6-4511-9430-302a724badc7", - "start": { - "$date": "2021-10-20T03:57:56.000Z" - }, - "end": { - "$date": "2021-10-20T04:14:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "06891cf5-f44a-4858-93e5-88405464a162", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T04:14:53.000Z" - }, - "end": { - "$date": "2021-10-20T04:44:07.000Z" - }, - "events": [ - { - "uuid": "cda7554d-659d-4641-9f84-110e84e6e976", - "start": { - "$date": "2021-10-20T04:14:53.000Z" - }, - "end": { - "$date": "2021-10-20T04:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "6d247dd2-11b0-4431-a900-1a5af027da11", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T04:18:35.000Z" - }, - "end": { - "$date": "2021-10-20T04:24:22.000Z" - }, - "events": [ - { - "uuid": "8f62ce45-527a-4580-8392-ce875754f5b7", - "start": { - "$date": "2021-10-20T04:18:35.000Z" - }, - "end": { - "$date": "2021-10-20T04:24:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2331485e-d9d8-476d-8786-3b8f3dd8bee9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-20T04:36:27.000Z" - }, - "end": { - "$date": "2021-10-20T05:29:33.000Z" - }, - "events": [ - { - "uuid": "e6e3efb5-bc66-47ec-ba9a-2a455b0ede79", - "start": { - "$date": "2021-10-20T04:36:27.000Z" - }, - "end": { - "$date": "2021-10-20T05:29:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "49b9e5c0-5f3a-4fbb-ac0e-d971192f1727", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T04:36:36.000Z" - }, - "end": { - "$date": "2021-10-20T05:21:07.000Z" - }, - "events": [ - { - "uuid": "e43d219d-16c5-40b7-a196-c0f6f8c4bd19", - "start": { - "$date": "2021-10-20T04:36:36.000Z" - }, - "end": { - "$date": "2021-10-20T05:21:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a159f9be-4004-4742-bbdf-1fa05f207d37", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T04:47:49.000Z" - }, - "end": { - "$date": "2021-10-20T05:30:17.000Z" - }, - "events": [ - { - "uuid": "a31eea30-885a-43f4-adc5-b5fbfe98571c", - "start": { - "$date": "2021-10-20T04:47:49.000Z" - }, - "end": { - "$date": "2021-10-20T05:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d729da17-5703-45a4-a7bd-d59c314bc881", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T05:03:51.000Z" - }, - "end": { - "$date": "2021-10-20T05:07:06.000Z" - }, - "events": [ - { - "uuid": "39dce8fb-f37f-439e-80bb-e8d05049afa2", - "start": { - "$date": "2021-10-20T05:03:51.000Z" - }, - "end": { - "$date": "2021-10-20T05:07:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "632004ef-a2d0-4145-8b98-f13f132028ee", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-20T05:04:36.000Z" - }, - "end": { - "$date": "2021-10-20T05:11:32.000Z" - }, - "events": [ - { - "uuid": "28164d70-5a17-46ea-8265-acfb0fb10972", - "start": { - "$date": "2021-10-20T05:04:36.000Z" - }, - "end": { - "$date": "2021-10-20T05:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ca311851-041e-497d-994d-c3baa245fc20", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T05:08:51.000Z" - }, - "end": { - "$date": "2021-10-20T05:11:01.000Z" - }, - "events": [ - { - "uuid": "eea23039-20c8-4b13-8826-31f0c6913dcc", - "start": { - "$date": "2021-10-20T05:08:51.000Z" - }, - "end": { - "$date": "2021-10-20T05:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1203578a-a43f-494f-9cda-72940bc50113", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-20T05:11:36.000Z" - }, - "end": { - "$date": "2021-10-20T08:15:55.000Z" - }, - "events": [ - { - "uuid": "da5294e6-60e6-4582-bd77-cbbb94ebaf3d", - "start": { - "$date": "2021-10-20T05:11:36.000Z" - }, - "end": { - "$date": "2021-10-20T08:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a6afea9d-7951-4b5d-bfc8-2469c967dc24", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-20T05:12:16.000Z" - }, - "end": { - "$date": "2021-10-20T08:15:36.000Z" - }, - "events": [ - { - "uuid": "2ffb9225-0d94-4310-9626-2875a3711f4c", - "start": { - "$date": "2021-10-20T05:12:16.000Z" - }, - "end": { - "$date": "2021-10-20T08:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "74605aa6-1aad-4266-9287-baffc1e98418", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-20T05:29:38.000Z" - }, - "end": { - "$date": "2021-10-20T06:34:34.000Z" - }, - "events": [ - { - "uuid": "58f95905-c1bb-41d4-9d0e-0e886ecab12a", - "start": { - "$date": "2021-10-20T05:29:38.000Z" - }, - "end": { - "$date": "2021-10-20T06:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3eb6dace-4a65-4747-ae55-bb2b95d4ab6e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T05:33:21.000Z" - }, - "end": { - "$date": "2021-10-20T05:37:28.000Z" - }, - "events": [ - { - "uuid": "00b5af52-d10a-46ee-acd4-67ccd4c7a185", - "start": { - "$date": "2021-10-20T05:33:21.000Z" - }, - "end": { - "$date": "2021-10-20T05:37:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "88248bdb-6a60-42f1-a749-6564ce826d66", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-20T05:38:27.000Z" - }, - "end": { - "$date": "2021-10-20T06:00:16.000Z" - }, - "events": [ - { - "uuid": "6457644c-c82c-414e-b6e2-c13ccb016353", - "start": { - "$date": "2021-10-20T05:38:27.000Z" - }, - "end": { - "$date": "2021-10-20T06:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0fd7fac-79bf-4ea2-99dd-47057dec3592", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T06:56:45.000Z" - }, - "end": { - "$date": "2021-10-20T07:10:36.000Z" - }, - "events": [ - { - "uuid": "ffe628b9-d036-423d-a6a2-19d0059f21cf", - "start": { - "$date": "2021-10-20T06:56:45.000Z" - }, - "end": { - "$date": "2021-10-20T07:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e98b187-61ab-4bc6-bf9e-3c332a6997cb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T07:13:07.000Z" - }, - "end": { - "$date": "2021-10-20T07:30:59.000Z" - }, - "events": [ - { - "uuid": "91530f3e-46b4-49eb-89ad-3929b18c5d3a", - "start": { - "$date": "2021-10-20T07:13:07.000Z" - }, - "end": { - "$date": "2021-10-20T07:30:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b1285bb-52ad-4422-bc0f-b67906f7cf76", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T07:34:14.000Z" - }, - "end": { - "$date": "2021-10-20T07:54:22.000Z" - }, - "events": [ - { - "uuid": "fadc1d3a-3d17-4b58-844f-e9c7a0111745", - "start": { - "$date": "2021-10-20T07:34:14.000Z" - }, - "end": { - "$date": "2021-10-20T07:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ca116a6-45f9-4d4c-aea3-2a154c1d4f92", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T07:56:52.000Z" - }, - "end": { - "$date": "2021-10-20T08:12:59.000Z" - }, - "events": [ - { - "uuid": "a5361fd8-a029-4869-83cd-b22b5e2d3dca", - "start": { - "$date": "2021-10-20T07:56:52.000Z" - }, - "end": { - "$date": "2021-10-20T08:12:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8c2627d-b37b-410b-8534-de7c03c5a6ba", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T08:16:09.000Z" - }, - "end": { - "$date": "2021-10-20T08:37:17.000Z" - }, - "events": [ - { - "uuid": "75e909de-59af-48a2-b787-65873a7779b0", - "start": { - "$date": "2021-10-20T08:16:09.000Z" - }, - "end": { - "$date": "2021-10-20T08:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c01e9b8-8c0f-4b3d-a998-9d61b15a75af", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T09:07:29.000Z" - }, - "end": { - "$date": "2021-10-20T09:30:01.000Z" - }, - "events": [ - { - "uuid": "3d773446-a918-4428-acdf-a18dd44f5a31", - "start": { - "$date": "2021-10-20T09:07:29.000Z" - }, - "end": { - "$date": "2021-10-20T09:23:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ee57ab5-1bd0-4975-b8b5-e774a727047c", - "start": { - "$date": "2021-10-20T09:23:29.000Z" - }, - "end": { - "$date": "2021-10-20T09:24:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a048ab94-0f53-400c-9326-12e3747da986", - "start": { - "$date": "2021-10-20T09:24:29.000Z" - }, - "end": { - "$date": "2021-10-20T09:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d95b54b-0ead-4670-8123-49329d3404e1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T09:32:04.000Z" - }, - "end": { - "$date": "2021-10-20T09:51:54.000Z" - }, - "events": [ - { - "uuid": "b10995aa-40bb-4192-b403-8a19bdd86763", - "start": { - "$date": "2021-10-20T09:32:04.000Z" - }, - "end": { - "$date": "2021-10-20T09:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c87f6fab-e28d-4602-b454-5d9bdb494a12", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T09:57:47.000Z" - }, - "end": { - "$date": "2021-10-20T10:07:05.000Z" - }, - "events": [ - { - "uuid": "c4c71bee-d147-4774-af1f-5245ad713827", - "start": { - "$date": "2021-10-20T09:57:47.000Z" - }, - "end": { - "$date": "2021-10-20T10:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d563bf02-54cf-49af-ba40-11defad74ecd", - "uuid": "c6de4c33-40e0-423e-bab1-ebbd29702ae5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T10:16:46.000Z" - }, - "end": { - "$date": "2021-10-20T11:02:45.000Z" - }, - "events": [ - { - "uuid": "47847faa-23c8-4b15-af8b-101abe53de05", - "start": { - "$date": "2021-10-20T10:16:46.000Z" - }, - "end": { - "$date": "2021-10-20T11:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a911dac3-1703-40e4-9402-76bd35603d38", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T11:08:01.000Z" - }, - "end": { - "$date": "2021-10-20T11:24:53.000Z" - }, - "events": [ - { - "uuid": "e93a6e0e-6d73-47d7-bcf0-0784ff76ba3d", - "start": { - "$date": "2021-10-20T11:08:01.000Z" - }, - "end": { - "$date": "2021-10-20T11:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff437fb5-4073-4bc0-936b-4865139dd221", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T11:29:59.000Z" - }, - "end": { - "$date": "2021-10-20T12:09:03.000Z" - }, - "events": [ - { - "uuid": "ecf965cb-06e1-4416-af27-f483a7eae1e7", - "start": { - "$date": "2021-10-20T11:29:59.000Z" - }, - "end": { - "$date": "2021-10-20T12:09:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a680dad6-22bf-445b-bc6b-8718eaba6dbc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T12:31:07.000Z" - }, - "end": { - "$date": "2021-10-20T12:47:34.000Z" - }, - "events": [ - { - "uuid": "3f579ff4-6b33-4a3d-83ba-b4b20e18b654", - "start": { - "$date": "2021-10-20T12:31:07.000Z" - }, - "end": { - "$date": "2021-10-20T12:42:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9553abf-40fe-4a06-8339-b5ae90b2370f", - "start": { - "$date": "2021-10-20T12:42:07.000Z" - }, - "end": { - "$date": "2021-10-20T12:43:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97bae0f1-e67a-4194-a709-377e310861bd", - "start": { - "$date": "2021-10-20T12:43:07.000Z" - }, - "end": { - "$date": "2021-10-20T12:47:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84af5383-f456-4e39-9243-cd4e4d2b94b0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T12:53:05.000Z" - }, - "end": { - "$date": "2021-10-20T13:11:16.000Z" - }, - "events": [ - { - "uuid": "908847f4-4133-466c-8a57-a290bcdd6096", - "start": { - "$date": "2021-10-20T12:53:05.000Z" - }, - "end": { - "$date": "2021-10-20T13:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52f948e7-08b7-4a0a-82e8-3cac2e243335", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T13:16:53.000Z" - }, - "end": { - "$date": "2021-10-20T13:55:18.000Z" - }, - "events": [ - { - "uuid": "40f223bd-339f-4ecf-b5e6-866818eed1ae", - "start": { - "$date": "2021-10-20T13:16:53.000Z" - }, - "end": { - "$date": "2021-10-20T13:55:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8ccdb93f-ce00-4963-b67a-c62f36bb559b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-20T13:55:37.000Z" - }, - "end": { - "$date": "2021-10-20T14:11:33.000Z" - }, - "events": [ - { - "uuid": "99741a2f-81f8-46a5-abd2-9df67ea588b7", - "start": { - "$date": "2021-10-20T13:55:37.000Z" - }, - "end": { - "$date": "2021-10-20T14:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0801c6fe-ddb7-4c23-86c9-3e7e99a3307a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-20T14:01:49.000Z" - }, - "end": { - "$date": "2021-10-20T14:23:52.000Z" - }, - "events": [ - { - "uuid": "475ce2d5-571f-4cf5-abea-547c3918d80a", - "start": { - "$date": "2021-10-20T14:01:49.000Z" - }, - "end": { - "$date": "2021-10-20T14:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "8007448e-4602-4ec7-b918-8d831a2ce3aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T14:40:52.000Z" - }, - "end": { - "$date": "2021-10-20T15:48:28.000Z" - }, - "events": [ - { - "uuid": "cd69fbf4-b373-4f35-9b83-6b1c18a78f37", - "start": { - "$date": "2021-10-20T14:40:52.000Z" - }, - "end": { - "$date": "2021-10-20T15:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "ee438041-6044-4b97-bf15-220364e46e05", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T16:12:57.000Z" - }, - "end": { - "$date": "2021-10-20T16:30:36.000Z" - }, - "events": [ - { - "uuid": "bea358e1-faf4-4a93-92f0-d87d51d14ddf", - "start": { - "$date": "2021-10-20T16:12:57.000Z" - }, - "end": { - "$date": "2021-10-20T16:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "e78f468d-bb45-4fd4-980a-3b182f388f11", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-20T17:14:28.000Z" - }, - "end": { - "$date": "2021-10-20T21:10:44.000Z" - }, - "events": [ - { - "uuid": "3d27343f-6512-4dc3-949d-851d0570576e", - "start": { - "$date": "2021-10-20T17:14:28.000Z" - }, - "end": { - "$date": "2021-10-20T21:10:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "181ff1d5-25e1-43b0-94f9-998c10bec906", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T18:22:58.000Z" - }, - "end": { - "$date": "2021-10-20T18:49:38.000Z" - }, - "events": [ - { - "uuid": "b2514567-fc87-488c-ac11-39c13e02239f", - "start": { - "$date": "2021-10-20T18:22:58.000Z" - }, - "end": { - "$date": "2021-10-20T18:49:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "e8ca4606-810a-4e52-8051-ff37497dd4d8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T18:47:56.000Z" - }, - "end": { - "$date": "2021-10-20T20:26:25.000Z" - }, - "events": [ - { - "uuid": "bd42a37e-0390-44e7-bf4c-ee1fb441cbb1", - "start": { - "$date": "2021-10-20T18:47:56.000Z" - }, - "end": { - "$date": "2021-10-20T20:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "eb9918b1-a98f-4771-9eba-7f9bc1923780", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-20T18:49:51.000Z" - }, - "end": { - "$date": "2021-10-20T20:12:53.000Z" - }, - "events": [ - { - "uuid": "82221dda-0d4e-4892-b511-5f1ebcd12f1a", - "start": { - "$date": "2021-10-20T18:49:51.000Z" - }, - "end": { - "$date": "2021-10-20T20:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "468787a7-28c9-4bbd-bf38-be2aabc615b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-20T21:24:10.000Z" - }, - "end": { - "$date": "2021-10-20T22:05:08.000Z" - }, - "events": [ - { - "uuid": "e8934a3d-0deb-4c36-bfc9-545d93cb4ad0", - "start": { - "$date": "2021-10-20T21:24:10.000Z" - }, - "end": { - "$date": "2021-10-20T22:05:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "16d2cbe1-effb-466c-82e7-fc97301e0095", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T21:45:55.000Z" - }, - "end": { - "$date": "2021-10-20T22:20:04.000Z" - }, - "events": [ - { - "uuid": "75f68141-a034-4fac-aebe-e1a7a42710ae", - "start": { - "$date": "2021-10-20T21:45:55.000Z" - }, - "end": { - "$date": "2021-10-20T22:20:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07dd9456-25e4-4ad6-847e-64371bff035f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T23:30:34.000Z" - }, - "end": { - "$date": "2021-10-20T23:31:49.000Z" - }, - "events": [ - { - "uuid": "29ec3f0c-37db-45b6-bf55-d5aac6c8c67d", - "start": { - "$date": "2021-10-20T23:30:34.000Z" - }, - "end": { - "$date": "2021-10-20T23:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ae095759-bd8d-4202-9c83-6c00b5985fbf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-20T23:22:17.000Z" - }, - "end": { - "$date": "2021-10-21T00:31:44.000Z" - }, - "events": [ - { - "uuid": "b70917f1-502d-45c0-9949-f31431d25eb2", - "start": { - "$date": "2021-10-20T23:22:17.000Z" - }, - "end": { - "$date": "2021-10-21T00:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f4a0426-c9d2-4739-bd09-883eb06f77ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-20T23:37:09.000Z" - }, - "end": { - "$date": "2021-10-20T23:58:35.000Z" - }, - "events": [ - { - "uuid": "a386c6ca-baab-40a0-b47e-8b62969ce4f2", - "start": { - "$date": "2021-10-20T23:37:09.000Z" - }, - "end": { - "$date": "2021-10-20T23:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ab7b27bd-4cfb-4009-913d-e55a3a366cf6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-20T23:41:59.000Z" - }, - "end": { - "$date": "2021-10-21T05:15:19.000Z" - }, - "events": [ - { - "uuid": "265d9208-519d-4437-8acf-ece97c669af2", - "start": { - "$date": "2021-10-20T23:41:59.000Z" - }, - "end": { - "$date": "2021-10-21T01:16:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d9b91d0-a320-442f-b3cf-f9348f378e87", - "start": { - "$date": "2021-10-21T01:16:59.000Z" - }, - "end": { - "$date": "2021-10-21T01:21:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28b6439b-e8ed-4569-ae6c-0c145924afdc", - "start": { - "$date": "2021-10-21T01:21:59.000Z" - }, - "end": { - "$date": "2021-10-21T01:31:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3499b5cb-b966-4991-85e7-d819d040b437", - "start": { - "$date": "2021-10-21T01:31:59.000Z" - }, - "end": { - "$date": "2021-10-21T01:35:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7e1d8f25-1037-41a7-9661-45cf97fb4428", - "start": { - "$date": "2021-10-21T01:35:59.000Z" - }, - "end": { - "$date": "2021-10-21T05:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "30f1c1b0-d4a9-4c57-b620-e6783ab027f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T00:01:30.000Z" - }, - "end": { - "$date": "2021-10-21T04:43:56.000Z" - }, - "events": [ - { - "uuid": "835f95cc-f714-447f-bb50-9c1e9b2f8b9b", - "start": { - "$date": "2021-10-21T00:01:30.000Z" - }, - "end": { - "$date": "2021-10-21T04:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "2f65ce3a-0bee-4e42-9b0d-b2548115dcd7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-21T00:34:45.000Z" - }, - "end": { - "$date": "2021-10-21T00:42:10.000Z" - }, - "events": [ - { - "uuid": "210bb22e-0770-4b28-94c8-a22082fb8e0e", - "start": { - "$date": "2021-10-21T00:34:45.000Z" - }, - "end": { - "$date": "2021-10-21T00:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "304ae1da-aa8a-47dd-946c-5739e113e6d5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-21T00:42:16.000Z" - }, - "end": { - "$date": "2021-10-21T00:45:10.000Z" - }, - "events": [ - { - "uuid": "b5137704-48c4-4029-b9a7-4d7cd71f49d0", - "start": { - "$date": "2021-10-21T00:42:16.000Z" - }, - "end": { - "$date": "2021-10-21T00:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "460f4ef1-115e-4cfe-862b-a5897e4bc0be", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-21T00:43:27.000Z" - }, - "end": { - "$date": "2021-10-21T02:34:03.000Z" - }, - "events": [ - { - "uuid": "9de80a94-94a1-479a-81db-65f0d244a076", - "start": { - "$date": "2021-10-21T00:43:27.000Z" - }, - "end": { - "$date": "2021-10-21T02:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "39d6d566-96f0-4962-b19b-f4b5de9f6a89", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-21T02:21:23.000Z" - }, - "end": { - "$date": "2021-10-21T03:54:32.000Z" - }, - "events": [ - { - "uuid": "9207d2df-073d-4d2c-a9c3-b535d8998489", - "start": { - "$date": "2021-10-21T02:21:23.000Z" - }, - "end": { - "$date": "2021-10-21T04:15:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "453fa9c2-73ac-4191-bf91-6fd2297434cc", - "start": { - "$date": "2021-10-21T04:15:23.000Z" - }, - "end": { - "$date": "2021-10-21T04:20:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d7ab018-58e2-4c2c-8168-272864d0faaa", - "start": { - "$date": "2021-10-21T04:20:23.000Z" - }, - "end": { - "$date": "2021-10-21T04:52:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a035ba22-b203-4c51-bfe1-3cc6b2005366", - "start": { - "$date": "2021-10-21T04:52:23.000Z" - }, - "end": { - "$date": "2021-10-21T05:29:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a2fad7a-0056-4a1b-a1aa-65211d32323b", - "start": { - "$date": "2021-10-21T05:29:23.000Z" - }, - "end": { - "$date": "2021-10-21T03:54:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4bfacd13-3105-46e4-b875-69541ec376ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-21T01:45:23.000Z" - }, - "end": { - "$date": "2021-10-21T02:38:33.000Z" - }, - "events": [ - { - "uuid": "c5080607-d738-4ef9-9106-0b9a9324ec56", - "start": { - "$date": "2021-10-21T01:45:23.000Z" - }, - "end": { - "$date": "2021-10-21T02:38:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "494ce8f6-1f60-4c6d-b9ed-c6d08e117a06", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-21T02:01:33.000Z" - }, - "end": { - "$date": "2021-10-21T02:55:33.000Z" - }, - "events": [ - { - "uuid": "4d8aca38-7b2b-4d51-a066-b34b99d5d175", - "start": { - "$date": "2021-10-21T02:01:33.000Z" - }, - "end": { - "$date": "2021-10-21T02:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65477064-ea38-4247-b945-b2e4482d7874", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-21T02:24:01.000Z" - }, - "end": { - "$date": "2021-10-21T03:00:54.000Z" - }, - "events": [ - { - "uuid": "1c19ca01-ad99-4b4b-b2c0-ed200219ff33", - "start": { - "$date": "2021-10-21T02:24:01.000Z" - }, - "end": { - "$date": "2021-10-21T03:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "a59d8df1-6bd2-49ce-9c01-f6459f3fe3c3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-21T02:32:43.000Z" - }, - "end": { - "$date": "2021-10-21T03:44:20.000Z" - }, - "events": [ - { - "uuid": "3bbb5d6e-17bc-4e4d-8ce9-9007e8d73689", - "start": { - "$date": "2021-10-21T02:32:43.000Z" - }, - "end": { - "$date": "2021-10-21T03:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "66a52f0e-8dc2-4667-b2d7-0db153e6f215", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-21T02:56:38.000Z" - }, - "end": { - "$date": "2021-10-21T03:42:04.000Z" - }, - "events": [ - { - "uuid": "ec0b59b6-271d-4603-99f3-fa5c5e1777aa", - "start": { - "$date": "2021-10-21T02:56:38.000Z" - }, - "end": { - "$date": "2021-10-21T03:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "af3f5fbf-b836-493d-84cf-cedb67419ff1", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-21T03:20:21.000Z" - }, - "end": { - "$date": "2021-10-21T07:01:58.000Z" - }, - "events": [ - { - "uuid": "aead33c6-2621-45b2-9960-dff051262130", - "start": { - "$date": "2021-10-21T03:20:21.000Z" - }, - "end": { - "$date": "2021-10-21T07:01:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "11be1c8e-3d35-44db-a8f0-27086828e665", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-21T03:48:24.000Z" - }, - "end": { - "$date": "2021-10-21T06:33:31.000Z" - }, - "events": [ - { - "uuid": "6f1f9575-3d45-482f-99df-5fce4d47824c", - "start": { - "$date": "2021-10-21T03:48:24.000Z" - }, - "end": { - "$date": "2021-10-21T06:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "abfaffcb-a206-46d3-a737-f6c5deb119d2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-21T03:51:33.000Z" - }, - "end": { - "$date": "2021-10-21T04:30:21.000Z" - }, - "events": [ - { - "uuid": "2c162c02-31ce-44d1-a060-ff5ff34c3fff", - "start": { - "$date": "2021-10-21T03:51:33.000Z" - }, - "end": { - "$date": "2021-10-21T04:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34f1598b-e161-4ea1-acec-9ee574fc3f3e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-21T04:01:48.000Z" - }, - "end": { - "$date": "2021-10-21T04:26:35.000Z" - }, - "events": [ - { - "uuid": "d1534cf9-bc14-4fac-b54d-8cc39cf47dce", - "start": { - "$date": "2021-10-21T04:01:48.000Z" - }, - "end": { - "$date": "2021-10-21T04:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ac3370f9-a71c-44d9-b177-c41371637cee", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-21T04:08:03.000Z" - }, - "end": { - "$date": "2021-10-21T06:22:58.000Z" - }, - "events": [ - { - "uuid": "54463e4d-ce82-4d72-b8fb-dc2152adb9c1", - "start": { - "$date": "2021-10-21T04:08:03.000Z" - }, - "end": { - "$date": "2021-10-21T06:22:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "46f3c8ff-0232-42e1-9400-f4efa2a73c72", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-21T04:09:45.000Z" - }, - "end": { - "$date": "2021-10-21T06:28:08.000Z" - }, - "events": [ - { - "uuid": "42e53519-837b-4023-b9c8-a3428197f22b", - "start": { - "$date": "2021-10-21T04:09:45.000Z" - }, - "end": { - "$date": "2021-10-21T06:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4d4bc59b-8fd4-4610-a184-740cbe2b939f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-21T04:10:56.000Z" - }, - "end": { - "$date": "2021-10-21T07:04:48.000Z" - }, - "events": [ - { - "uuid": "8c6cc635-3bfe-4482-8491-422fd5ecbd69", - "start": { - "$date": "2021-10-21T04:10:56.000Z" - }, - "end": { - "$date": "2021-10-21T07:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "7742122d-dc67-4a3f-ab1d-49f545840896", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-21T04:33:44.000Z" - }, - "end": { - "$date": "2021-10-21T04:36:57.000Z" - }, - "events": [ - { - "uuid": "4b8c23b9-b511-4c10-aa04-7e631dd1addf", - "start": { - "$date": "2021-10-21T04:33:44.000Z" - }, - "end": { - "$date": "2021-10-21T04:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "560d93af-8f68-4f12-8868-c966b8074871", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-21T04:48:06.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:09.000Z" - }, - "events": [ - { - "uuid": "b07b38bd-2467-429d-93bf-09f129ba9c10", - "start": { - "$date": "2021-10-21T04:48:06.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "9fd32867-79ef-468a-a71e-4eeb2169db0c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T04:48:51.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:02.000Z" - }, - "events": [ - { - "uuid": "b9966c39-5e4a-4bf2-8482-bcb216457746", - "start": { - "$date": "2021-10-21T04:48:51.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcc4eab9-5389-4826-bd89-51756c1c45b0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-21T04:48:36.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:08.000Z" - }, - "events": [ - { - "uuid": "f9a2f5e9-1a43-44d8-a5f7-4dab0c2ff634", - "start": { - "$date": "2021-10-21T04:48:36.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9063bf6-d19a-4d90-b180-01ea76ca8501", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T04:48:08.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:04.000Z" - }, - "events": [ - { - "uuid": "8d61ed88-e4e0-4ad7-9cd5-f84d00a1237e", - "start": { - "$date": "2021-10-21T04:48:08.000Z" - }, - "end": { - "$date": "2021-10-21T05:08:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a328d798-24cc-42ac-9c4c-38c47430ebc6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-21T05:00:11.000Z" - }, - "end": { - "$date": "2021-10-21T05:40:07.000Z" - }, - "events": [ - { - "uuid": "c36bfc75-de32-494f-be4f-8fa5ebbcd8ee", - "start": { - "$date": "2021-10-21T05:00:11.000Z" - }, - "end": { - "$date": "2021-10-21T05:40:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd26e467-dfab-4c2a-b655-572e65b92064", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-21T05:12:26.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:37.000Z" - }, - "events": [ - { - "uuid": "99378816-541d-4c50-812d-800482237e63", - "start": { - "$date": "2021-10-21T05:12:26.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d383db3-ed24-4dcc-97e0-d386f4be10d8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T05:12:29.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:40.000Z" - }, - "events": [ - { - "uuid": "82851b5b-903e-4f9b-a661-a9003ff2a2d3", - "start": { - "$date": "2021-10-21T05:12:29.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8b1f2ce-dc10-4a6b-968c-17839029b340", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-21T05:13:47.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:38.000Z" - }, - "events": [ - { - "uuid": "b62fdc6a-0f7e-46f2-9572-9863a9e84c41", - "start": { - "$date": "2021-10-21T05:13:47.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "828b7c18-2bb2-482d-8680-901ca770c8ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T05:13:47.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:42.000Z" - }, - "events": [ - { - "uuid": "39d038a5-0058-42bc-bc11-db951a2271bb", - "start": { - "$date": "2021-10-21T05:13:47.000Z" - }, - "end": { - "$date": "2021-10-21T05:46:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "5663161c-0de1-400b-a111-b59920e5a7bd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-21T05:51:55.000Z" - }, - "end": { - "$date": "2021-10-21T06:15:59.000Z" - }, - "events": [ - { - "uuid": "6b6491f9-3933-4c4d-b9ed-f69e848d1606", - "start": { - "$date": "2021-10-21T05:51:55.000Z" - }, - "end": { - "$date": "2021-10-21T06:15:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "094e7467-a455-4eae-9a11-8abf189c45a6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-21T06:28:15.000Z" - }, - "end": { - "$date": "2021-10-21T07:09:22.000Z" - }, - "events": [ - { - "uuid": "0cdf9c2c-c205-4c74-9d04-1084660ca7a4", - "start": { - "$date": "2021-10-21T06:28:15.000Z" - }, - "end": { - "$date": "2021-10-21T07:09:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ae3fe2ef-fe9c-4665-8968-1bb77b451f53", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-21T08:47:28.000Z" - }, - "end": { - "$date": "2021-10-21T09:40:29.000Z" - }, - "events": [ - { - "uuid": "819e7e89-52d1-4353-a281-098d7b4edf48", - "start": { - "$date": "2021-10-21T08:47:28.000Z" - }, - "end": { - "$date": "2021-10-21T09:40:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5adc3b01-98cf-4f25-9ad0-f506482495b2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T09:59:24.000Z" - }, - "end": { - "$date": "2021-10-21T10:14:36.000Z" - }, - "events": [ - { - "uuid": "623dd92a-9728-452e-a922-9deb316f3135", - "start": { - "$date": "2021-10-21T09:59:24.000Z" - }, - "end": { - "$date": "2021-10-21T10:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98849790-d5cd-4c85-8d83-a237179357a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T10:18:51.000Z" - }, - "end": { - "$date": "2021-10-21T10:35:43.000Z" - }, - "events": [ - { - "uuid": "4915864b-1076-48e0-8f2a-90326e219ce6", - "start": { - "$date": "2021-10-21T10:18:51.000Z" - }, - "end": { - "$date": "2021-10-21T10:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b4c7d57-e1e1-43d1-bfa3-7af15cb4d96e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T10:37:54.000Z" - }, - "end": { - "$date": "2021-10-21T10:56:06.000Z" - }, - "events": [ - { - "uuid": "28463bc7-d6a4-4bbe-a72a-c92c770d45a7", - "start": { - "$date": "2021-10-21T10:37:54.000Z" - }, - "end": { - "$date": "2021-10-21T10:56:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd9aefe5-539f-43f8-b94d-ba49f0ae1912", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T10:58:36.000Z" - }, - "end": { - "$date": "2021-10-21T11:17:39.000Z" - }, - "events": [ - { - "uuid": "933b1bab-f683-458e-8165-4d5221c30ec8", - "start": { - "$date": "2021-10-21T10:58:36.000Z" - }, - "end": { - "$date": "2021-10-21T11:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6da98dc0-9f74-4abd-be91-200d009bcd81", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T11:20:54.000Z" - }, - "end": { - "$date": "2021-10-21T11:36:16.000Z" - }, - "events": [ - { - "uuid": "3f21ec75-abdf-496c-9330-6f5162ce8a7f", - "start": { - "$date": "2021-10-21T11:20:54.000Z" - }, - "end": { - "$date": "2021-10-21T11:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb5a9b6f-7e15-4767-aee4-cadeb3f26d00", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T11:38:41.000Z" - }, - "end": { - "$date": "2021-10-21T11:59:24.000Z" - }, - "events": [ - { - "uuid": "ecabecf4-4c49-4a04-a505-dbaf24b132b8", - "start": { - "$date": "2021-10-21T11:38:41.000Z" - }, - "end": { - "$date": "2021-10-21T11:59:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2d1e77a-f0e7-4c6a-891f-d72e213d3b87", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T12:01:54.000Z" - }, - "end": { - "$date": "2021-10-21T12:25:32.000Z" - }, - "events": [ - { - "uuid": "b11bf44e-01a0-44bd-b72b-2e7218160e26", - "start": { - "$date": "2021-10-21T12:01:54.000Z" - }, - "end": { - "$date": "2021-10-21T12:25:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15414a64-3a5d-4bf2-99e2-7e9e6cc149ce", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T12:27:32.000Z" - }, - "end": { - "$date": "2021-10-21T12:44:34.000Z" - }, - "events": [ - { - "uuid": "697f529b-8af9-4a3d-91bd-06d65f2eca1a", - "start": { - "$date": "2021-10-21T12:27:32.000Z" - }, - "end": { - "$date": "2021-10-21T12:44:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f99ed75-f0c3-4971-bd10-a9dc7d08f799", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T12:47:05.000Z" - }, - "end": { - "$date": "2021-10-21T13:14:03.000Z" - }, - "events": [ - { - "uuid": "07117aed-f401-41d9-a613-aafdc99089cb", - "start": { - "$date": "2021-10-21T12:47:05.000Z" - }, - "end": { - "$date": "2021-10-21T13:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cee1d81-2cff-4771-8901-51b7ac4d6d88", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T13:16:13.000Z" - }, - "end": { - "$date": "2021-10-21T13:31:00.000Z" - }, - "events": [ - { - "uuid": "19d92ebb-1ea3-4e97-8d1c-4b5596dcf6f3", - "start": { - "$date": "2021-10-21T13:16:13.000Z" - }, - "end": { - "$date": "2021-10-21T13:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5056b03e-176d-489e-859d-5c0ba9d379bb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T13:33:25.000Z" - }, - "end": { - "$date": "2021-10-21T13:59:08.000Z" - }, - "events": [ - { - "uuid": "69962aff-4188-415e-87cd-ca32d6583dbb", - "start": { - "$date": "2021-10-21T13:33:25.000Z" - }, - "end": { - "$date": "2021-10-21T13:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eea056f9-efca-4b98-b8a3-1aaa8eaed2ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-21T14:01:09.000Z" - }, - "end": { - "$date": "2021-10-21T14:20:20.000Z" - }, - "events": [ - { - "uuid": "d45d3223-3106-4983-b1ae-752225c41b4d", - "start": { - "$date": "2021-10-21T14:01:09.000Z" - }, - "end": { - "$date": "2021-10-21T14:20:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e12da59e-6e88-4f0d-ab69-f800a8cbe518", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-21T15:25:00.000Z" - }, - "end": { - "$date": "2021-10-21T15:43:25.000Z" - }, - "events": [ - { - "uuid": "3675f5c0-982b-4d6c-8554-21bea2c6b74f", - "start": { - "$date": "2021-10-21T15:25:00.000Z" - }, - "end": { - "$date": "2021-10-21T15:43:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "85ad662f-b345-437d-a238-f0c63f97df86", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T15:59:05.000Z" - }, - "end": { - "$date": "2021-10-21T18:59:58.000Z" - }, - "events": [ - { - "uuid": "6de29d4d-c294-4549-8da0-c28fa9d4726a", - "start": { - "$date": "2021-10-21T15:59:05.000Z" - }, - "end": { - "$date": "2021-10-21T18:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98b39c1f-16e5-4aef-b42a-ad5e5c10f00b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T20:02:55.000Z" - }, - "end": { - "$date": "2021-10-21T20:24:15.000Z" - }, - "events": [ - { - "uuid": "64b6538f-3d11-413a-a0d4-093e5e8ab0ec", - "start": { - "$date": "2021-10-21T20:02:55.000Z" - }, - "end": { - "$date": "2021-10-21T20:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c8155176-5982-47b8-8a7a-6aaa7dcf8efd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-21T20:20:20.000Z" - }, - "end": { - "$date": "2021-10-21T20:45:58.000Z" - }, - "events": [ - { - "uuid": "865a629a-0a35-4408-b628-be4a951160c4", - "start": { - "$date": "2021-10-21T20:20:20.000Z" - }, - "end": { - "$date": "2021-10-21T20:45:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2689b64f-ac48-4ef8-86d6-6ed5b84518f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T20:32:11.000Z" - }, - "end": { - "$date": "2021-10-21T21:02:01.000Z" - }, - "events": [ - { - "uuid": "2779e3d2-a260-476a-859e-ae2bdd3f3c71", - "start": { - "$date": "2021-10-21T20:32:11.000Z" - }, - "end": { - "$date": "2021-10-21T21:02:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c14d800-74f4-4f33-a905-615de304d1e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T21:06:02.000Z" - }, - "end": { - "$date": "2021-10-21T21:28:37.000Z" - }, - "events": [ - { - "uuid": "3e0ef264-36ed-40f0-9a0e-13fedb3b6ce2", - "start": { - "$date": "2021-10-21T21:06:02.000Z" - }, - "end": { - "$date": "2021-10-21T21:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "8427f2d6-5d6f-40bd-a123-c3cd1f66689e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-21T21:20:34.000Z" - }, - "end": { - "$date": "2021-10-21T21:58:15.000Z" - }, - "events": [ - { - "uuid": "17b8982d-7c84-44b4-b6bd-7b20359f4b9a", - "start": { - "$date": "2021-10-21T21:20:34.000Z" - }, - "end": { - "$date": "2021-10-21T21:58:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a97c6685-b402-496a-a7d2-5ebe31023472", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-21T22:13:20.000Z" - }, - "end": { - "$date": "2021-10-21T23:35:37.000Z" - }, - "events": [ - { - "uuid": "5fe81cdd-b2b8-46a7-b793-67fa177c18a0", - "start": { - "$date": "2021-10-21T22:13:20.000Z" - }, - "end": { - "$date": "2021-10-21T23:35:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2340f5b6-c9bb-481e-a234-5596fcf0b66d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-21T22:25:08.000Z" - }, - "end": { - "$date": "2021-10-22T00:39:42.000Z" - }, - "events": [ - { - "uuid": "35dbdd50-a24a-4273-bce2-62dc18e6089c", - "start": { - "$date": "2021-10-21T22:25:08.000Z" - }, - "end": { - "$date": "2021-10-22T00:39:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0fdb3466-91b9-45f3-96ef-9d4be95747ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-21T22:36:04.000Z" - }, - "end": { - "$date": "2021-10-21T22:51:30.000Z" - }, - "events": [ - { - "uuid": "cb5ade2d-07ef-4dba-9196-f6f08bbf4d88", - "start": { - "$date": "2021-10-21T22:36:04.000Z" - }, - "end": { - "$date": "2021-10-21T22:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6ccc8c2c-01f8-4b8d-8aa9-638a30ee125d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-21T23:00:35.000Z" - }, - "end": { - "$date": "2021-10-21T23:05:21.000Z" - }, - "events": [ - { - "uuid": "304fd644-3f0f-4ed0-b756-116cec45a4f9", - "start": { - "$date": "2021-10-21T23:00:35.000Z" - }, - "end": { - "$date": "2021-10-21T23:05:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c63d4514-10ee-47b3-86f0-81e3e9fd62fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-22T00:05:14.000Z" - }, - "end": { - "$date": "2021-10-22T05:21:35.000Z" - }, - "events": [ - { - "uuid": "52fab419-db63-45c9-bd51-f2a74be60e62", - "start": { - "$date": "2021-10-22T00:05:14.000Z" - }, - "end": { - "$date": "2021-10-22T05:21:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "bd16fa28-8aa1-4b07-8abf-9ba15e05177a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-22T00:14:11.000Z" - }, - "end": { - "$date": "2021-10-22T00:59:37.000Z" - }, - "events": [ - { - "uuid": "2eed1718-f64c-4cbf-a85c-26f2837202aa", - "start": { - "$date": "2021-10-22T00:14:11.000Z" - }, - "end": { - "$date": "2021-10-22T00:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1b7c47a5-8e9a-4b95-9f7b-26b1a8507392", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-22T00:15:22.000Z" - }, - "end": { - "$date": "2021-10-22T00:46:43.000Z" - }, - "events": [ - { - "uuid": "cf1f9636-fcf7-4ea4-9b68-dbb42bf4fdaa", - "start": { - "$date": "2021-10-22T00:15:22.000Z" - }, - "end": { - "$date": "2021-10-22T00:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "179b4073-97dd-410d-bc5d-c99cf3fbf975", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T00:16:09.000Z" - }, - "end": { - "$date": "2021-10-22T00:59:10.000Z" - }, - "events": [ - { - "uuid": "c236a0e7-3d3a-4e33-9349-a9c3f5d1026a", - "start": { - "$date": "2021-10-22T00:16:09.000Z" - }, - "end": { - "$date": "2021-10-22T00:59:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "bede0874-e975-4b18-bfd0-7c681442a9bf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-22T02:47:30.000Z" - }, - "end": { - "$date": "2021-10-22T02:59:16.000Z" - }, - "events": [ - { - "uuid": "f543f74e-816d-4c07-9cd5-5429a12151fc", - "start": { - "$date": "2021-10-22T02:47:30.000Z" - }, - "end": { - "$date": "2021-10-22T04:21:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7a80916-7d32-4e3b-99f2-78abd9d9be61", - "start": { - "$date": "2021-10-22T04:21:30.000Z" - }, - "end": { - "$date": "2021-10-22T04:50:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd5d9d15-ad3c-4dbe-beac-ec1d67809439", - "start": { - "$date": "2021-10-22T04:50:30.000Z" - }, - "end": { - "$date": "2021-10-22T02:59:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "47571cf6-cc53-4b13-94ef-3a55ff9bc732", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-22T00:48:17.000Z" - }, - "end": { - "$date": "2021-10-22T00:50:58.000Z" - }, - "events": [ - { - "uuid": "186b0e29-a616-4535-b528-77a43fe7808c", - "start": { - "$date": "2021-10-22T00:48:17.000Z" - }, - "end": { - "$date": "2021-10-22T00:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "ea16d063-df7a-4ba4-945e-8f79dbb8e21d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-22T01:05:27.000Z" - }, - "end": { - "$date": "2021-10-22T02:23:40.000Z" - }, - "events": [ - { - "uuid": "f833a2e4-4217-408d-bd48-42b3e1ffb78c", - "start": { - "$date": "2021-10-22T01:05:27.000Z" - }, - "end": { - "$date": "2021-10-22T02:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c49a2783-8db7-477b-afe9-0c76ac6dd9ef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T01:23:40.000Z" - }, - "end": { - "$date": "2021-10-22T02:43:56.000Z" - }, - "events": [ - { - "uuid": "44c3c5a5-1cc4-4deb-9758-f912e56c81bd", - "start": { - "$date": "2021-10-22T01:23:40.000Z" - }, - "end": { - "$date": "2021-10-22T02:43:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "edf930c6-6e96-4598-a375-e774982021b5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-22T01:55:39.000Z" - }, - "end": { - "$date": "2021-10-22T05:15:32.000Z" - }, - "events": [ - { - "uuid": "0e2e9b50-3498-4cad-8887-fdba50f0de1b", - "start": { - "$date": "2021-10-22T01:55:39.000Z" - }, - "end": { - "$date": "2021-10-22T05:15:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eb1edf10-5e3d-4a66-a82b-07aa1d24a3f0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-22T01:56:09.000Z" - }, - "end": { - "$date": "2021-10-22T05:15:30.000Z" - }, - "events": [ - { - "uuid": "e4b48b36-46c8-4345-a045-7f59f541c6cd", - "start": { - "$date": "2021-10-22T01:56:09.000Z" - }, - "end": { - "$date": "2021-10-22T05:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f57295e5-fda1-4a5a-9530-a3637a53e8a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-22T02:27:50.000Z" - }, - "end": { - "$date": "2021-10-22T02:46:02.000Z" - }, - "events": [ - { - "uuid": "239f448b-853e-4ef5-a285-b63d4c1bdfde", - "start": { - "$date": "2021-10-22T02:27:50.000Z" - }, - "end": { - "$date": "2021-10-22T02:46:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "76aa6368-405f-4479-98c2-157bb80af48f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-22T02:27:53.000Z" - }, - "end": { - "$date": "2021-10-22T02:29:33.000Z" - }, - "events": [ - { - "uuid": "f6a6ac96-b90e-4141-87b4-e652ed2acaa2", - "start": { - "$date": "2021-10-22T02:27:53.000Z" - }, - "end": { - "$date": "2021-10-22T02:29:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f80615a3-8bf3-4ee8-b3f7-75001ff6f2ab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-22T02:34:19.000Z" - }, - "end": { - "$date": "2021-10-22T03:53:08.000Z" - }, - "events": [ - { - "uuid": "16a74ed2-60b7-4ec3-8700-d9c28045367c", - "start": { - "$date": "2021-10-22T02:34:19.000Z" - }, - "end": { - "$date": "2021-10-22T03:37:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a7acdf7-ce75-4153-9d28-87df1a225ce1", - "start": { - "$date": "2021-10-22T03:37:19.000Z" - }, - "end": { - "$date": "2021-10-22T03:51:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "55210b44-9a71-412e-ad54-56d479ee4bd4", - "start": { - "$date": "2021-10-22T03:51:19.000Z" - }, - "end": { - "$date": "2021-10-22T03:53:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4e439ab7-816f-4e8a-8b21-4e0e406f91b2", - "uuid": "acac46f6-b14c-4a3b-89b3-d8852eb1e96b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-22T03:10:04.000Z" - }, - "end": { - "$date": "2021-10-22T05:07:43.000Z" - }, - "events": [ - { - "uuid": "e9084010-fbb5-4725-9932-479c03bd7630", - "start": { - "$date": "2021-10-22T03:10:04.000Z" - }, - "end": { - "$date": "2021-10-22T05:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7dee69a6-7d0f-4d9a-b75a-bc487bb33921", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-22T03:59:38.000Z" - }, - "end": { - "$date": "2021-10-22T04:24:13.000Z" - }, - "events": [ - { - "uuid": "0cf27146-b53f-42bb-b351-6a71fcc6a33f", - "start": { - "$date": "2021-10-22T03:59:38.000Z" - }, - "end": { - "$date": "2021-10-22T04:24:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0505c2c3-624c-4385-95ac-14d8f82cd357", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-22T05:41:30.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:25.000Z" - }, - "events": [ - { - "uuid": "991c83b1-928b-4de7-95f8-3653fe03cc63", - "start": { - "$date": "2021-10-22T05:41:30.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5a74a62-aeab-4b20-a56f-e1ff9ec95398", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-22T04:28:58.000Z" - }, - "end": { - "$date": "2021-10-22T05:00:29.000Z" - }, - "events": [ - { - "uuid": "7e86020d-745d-442d-b652-0b260bfdbb3d", - "start": { - "$date": "2021-10-22T04:28:58.000Z" - }, - "end": { - "$date": "2021-10-22T05:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "857c0c57-680f-4813-a91a-386159135031", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-22T04:30:08.000Z" - }, - "end": { - "$date": "2021-10-22T04:50:03.000Z" - }, - "events": [ - { - "uuid": "83f7e2ee-4502-464a-9571-a7272ca5a72e", - "start": { - "$date": "2021-10-22T04:30:08.000Z" - }, - "end": { - "$date": "2021-10-22T04:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7c63690-ff9a-4f64-8906-8711b8ebafb4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T04:54:03.000Z" - }, - "end": { - "$date": "2021-10-22T05:17:40.000Z" - }, - "events": [ - { - "uuid": "441ab34b-f8c5-41a0-b3a0-c30f6fd9b585", - "start": { - "$date": "2021-10-22T04:54:03.000Z" - }, - "end": { - "$date": "2021-10-22T05:17:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f4c84ce-bd3b-4b47-bf53-4109e25b560c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-22T04:53:34.000Z" - }, - "end": { - "$date": "2021-10-22T05:17:39.000Z" - }, - "events": [ - { - "uuid": "e6bf71fb-caca-4264-88e7-ffd30f83e7fc", - "start": { - "$date": "2021-10-22T04:53:34.000Z" - }, - "end": { - "$date": "2021-10-22T05:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfb710f6-1beb-4827-b553-226250be0af1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-22T05:04:14.000Z" - }, - "end": { - "$date": "2021-10-22T05:26:40.000Z" - }, - "events": [ - { - "uuid": "95d9dcea-979d-4403-b844-13afb81e8ee4", - "start": { - "$date": "2021-10-22T05:04:14.000Z" - }, - "end": { - "$date": "2021-10-22T05:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e1e66c29-5e5a-40e2-8747-e7f75fc45a66", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-22T05:15:49.000Z" - }, - "end": { - "$date": "2021-10-22T06:06:38.000Z" - }, - "events": [ - { - "uuid": "877974db-d150-4ed1-a9d9-e042ed48149f", - "start": { - "$date": "2021-10-22T05:15:49.000Z" - }, - "end": { - "$date": "2021-10-22T06:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "500ace44-20f8-4b4c-8183-917161c4be00", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-22T05:16:14.000Z" - }, - "end": { - "$date": "2021-10-22T06:06:39.000Z" - }, - "events": [ - { - "uuid": "bf839c82-6bbf-4bba-84bf-f4d4127c8838", - "start": { - "$date": "2021-10-22T05:16:14.000Z" - }, - "end": { - "$date": "2021-10-22T06:06:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c12ebf7c-30c4-47b7-ba55-92a22f98a1b2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T05:23:10.000Z" - }, - "end": { - "$date": "2021-10-22T05:38:35.000Z" - }, - "events": [ - { - "uuid": "92b36a91-6f9b-4c7f-89e2-8b540ca56b0e", - "start": { - "$date": "2021-10-22T05:23:10.000Z" - }, - "end": { - "$date": "2021-10-22T05:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55eaa889-dc45-4bed-9d8d-7242fdb6d90c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T05:24:55.000Z" - }, - "end": { - "$date": "2021-10-22T05:38:43.000Z" - }, - "events": [ - { - "uuid": "e73b6f8e-4caa-4267-a02c-4434011252ef", - "start": { - "$date": "2021-10-22T05:24:55.000Z" - }, - "end": { - "$date": "2021-10-22T05:38:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35585104-20d3-4154-8a17-0b2717cd1eda", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-22T05:24:20.000Z" - }, - "end": { - "$date": "2021-10-22T05:38:45.000Z" - }, - "events": [ - { - "uuid": "9190f515-1ec7-4d62-85f2-f35c6869803f", - "start": { - "$date": "2021-10-22T05:24:20.000Z" - }, - "end": { - "$date": "2021-10-22T05:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec4a2818-b2c5-4527-a751-245d5a56080f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T05:41:40.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:26.000Z" - }, - "events": [ - { - "uuid": "104a568d-38da-4e77-b8ac-cb4b8f11221d", - "start": { - "$date": "2021-10-22T05:41:40.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d37d509-0e6a-4a52-b323-55dfaac78948", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T05:41:41.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:34.000Z" - }, - "events": [ - { - "uuid": "a8ab3d5e-a045-4f99-a432-122ed430374c", - "start": { - "$date": "2021-10-22T05:41:41.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8466eb56-176d-47b0-a428-7424d54f7e80", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-22T05:41:51.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:30.000Z" - }, - "events": [ - { - "uuid": "45f4585c-b6c8-4bb4-8299-9c41c940572a", - "start": { - "$date": "2021-10-22T05:41:51.000Z" - }, - "end": { - "$date": "2021-10-22T05:57:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "521340c8-3351-4bae-bf2a-9006ff544d4b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-22T06:00:41.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:15.000Z" - }, - "events": [ - { - "uuid": "e3b2cdc5-51a9-45bb-be88-1b5a239b9f05", - "start": { - "$date": "2021-10-22T06:00:41.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4841c2d5-2645-467e-af8c-cbf9ee46ba73", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-22T06:00:41.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:26.000Z" - }, - "events": [ - { - "uuid": "823a752f-55b0-4c22-80ff-5ff579ef863e", - "start": { - "$date": "2021-10-22T06:00:41.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a64a6f1-3b61-4f82-8f91-88d9b2403b68", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T06:00:41.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:16.000Z" - }, - "events": [ - { - "uuid": "15c80cd3-9e0e-48e4-90d9-9176863c900b", - "start": { - "$date": "2021-10-22T06:00:41.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ec12cd8-cffb-48de-9d97-7def22b0d6db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T06:01:22.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:25.000Z" - }, - "events": [ - { - "uuid": "1bf95c95-4047-4b6b-9e77-a668ae5a81cb", - "start": { - "$date": "2021-10-22T06:01:22.000Z" - }, - "end": { - "$date": "2021-10-22T06:20:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40e066e7-92de-4f2f-aaed-c9e5bb567710", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-22T06:07:02.000Z" - }, - "end": { - "$date": "2021-10-22T06:55:40.000Z" - }, - "events": [ - { - "uuid": "d5ac5e47-f7b7-401c-a85a-6c26948bffaa", - "start": { - "$date": "2021-10-22T06:07:02.000Z" - }, - "end": { - "$date": "2021-10-22T06:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b56e78a3-ce75-494d-bbec-92445f126ee3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T06:23:57.000Z" - }, - "end": { - "$date": "2021-10-22T06:47:15.000Z" - }, - "events": [ - { - "uuid": "0c04ee11-d28d-4207-8dfa-1765b9bd42b7", - "start": { - "$date": "2021-10-22T06:23:57.000Z" - }, - "end": { - "$date": "2021-10-22T06:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c78aabf3-bbf1-4f41-aa67-aca5109900aa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T06:49:27.000Z" - }, - "end": { - "$date": "2021-10-22T07:14:03.000Z" - }, - "events": [ - { - "uuid": "a40ead87-b927-4011-ae07-69b20f1bca05", - "start": { - "$date": "2021-10-22T06:49:27.000Z" - }, - "end": { - "$date": "2021-10-22T07:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "43a3deeb-9650-4ef3-a728-bbd411d6bc17", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T07:11:34.000Z" - }, - "end": { - "$date": "2021-10-22T08:21:59.000Z" - }, - "events": [ - { - "uuid": "a08e0277-ce43-49cc-8696-90826fa26de6", - "start": { - "$date": "2021-10-22T07:11:34.000Z" - }, - "end": { - "$date": "2021-10-22T08:21:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4144e86e-9a56-41e8-8fc4-d06cbfcb2912", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T07:16:23.000Z" - }, - "end": { - "$date": "2021-10-22T07:38:56.000Z" - }, - "events": [ - { - "uuid": "29162c02-5640-4c66-a966-f54921550723", - "start": { - "$date": "2021-10-22T07:16:23.000Z" - }, - "end": { - "$date": "2021-10-22T07:38:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61059354-9700-40b8-b162-afd5b8849a52", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T07:43:32.000Z" - }, - "end": { - "$date": "2021-10-22T08:05:00.000Z" - }, - "events": [ - { - "uuid": "620041f3-7d7f-4a1f-bc2a-3a4a9a08ba6e", - "start": { - "$date": "2021-10-22T07:43:32.000Z" - }, - "end": { - "$date": "2021-10-22T08:05:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38774e63-dd8b-49aa-a928-f2409c14f922", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T08:07:25.000Z" - }, - "end": { - "$date": "2021-10-22T08:33:48.000Z" - }, - "events": [ - { - "uuid": "6ee82c7b-74c8-4e3c-8813-9c4c621a0f04", - "start": { - "$date": "2021-10-22T08:07:25.000Z" - }, - "end": { - "$date": "2021-10-22T08:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8290638c-89b1-43c9-af5a-47dc4812af1b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T08:37:18.000Z" - }, - "end": { - "$date": "2021-10-22T09:07:08.000Z" - }, - "events": [ - { - "uuid": "a1c4be71-753e-4bca-b6a9-d1c47fea890d", - "start": { - "$date": "2021-10-22T08:37:18.000Z" - }, - "end": { - "$date": "2021-10-22T09:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afd6500e-8b11-44d3-9610-f38a246b8398", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T09:16:29.000Z" - }, - "end": { - "$date": "2021-10-22T09:34:41.000Z" - }, - "events": [ - { - "uuid": "6238c6f2-2dff-4cca-871f-6c621c718efb", - "start": { - "$date": "2021-10-22T09:16:29.000Z" - }, - "end": { - "$date": "2021-10-22T09:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebc83457-0fdc-4ab9-a933-e78028378b41", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T09:50:09.000Z" - }, - "end": { - "$date": "2021-10-22T10:21:13.000Z" - }, - "events": [ - { - "uuid": "635b7089-2c39-4131-a367-a57c7ee3c2b0", - "start": { - "$date": "2021-10-22T09:50:09.000Z" - }, - "end": { - "$date": "2021-10-22T10:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d6f5ecf-3e73-4e23-af20-4192395cb890", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T11:57:41.000Z" - }, - "end": { - "$date": "2021-10-22T12:20:54.000Z" - }, - "events": [ - { - "uuid": "f0368535-8930-4b35-a945-1a142a649e1d", - "start": { - "$date": "2021-10-22T11:57:41.000Z" - }, - "end": { - "$date": "2021-10-22T12:32:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d2a06dc-c333-41f7-8d0f-6ea6469d13ea", - "start": { - "$date": "2021-10-22T12:32:41.000Z" - }, - "end": { - "$date": "2021-10-22T12:51:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "75ccc090-f187-48eb-b5f1-a2bdd8bb4199", - "start": { - "$date": "2021-10-22T12:51:41.000Z" - }, - "end": { - "$date": "2021-10-22T13:01:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1b49584b-4746-49c6-a9ed-42806c397b96", - "start": { - "$date": "2021-10-22T13:01:41.000Z" - }, - "end": { - "$date": "2021-10-22T13:20:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9927695b-d1bb-489b-9572-751e488cf42b", - "start": { - "$date": "2021-10-22T13:20:41.000Z" - }, - "end": { - "$date": "2021-10-22T12:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b21e214-8b0a-48ec-901e-aef62ecd56ad", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T12:23:04.000Z" - }, - "end": { - "$date": "2021-10-22T12:42:22.000Z" - }, - "events": [ - { - "uuid": "56617ede-d001-457b-8ac5-c826edf7ff6e", - "start": { - "$date": "2021-10-22T12:23:04.000Z" - }, - "end": { - "$date": "2021-10-22T12:42:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a00df42a-708c-445a-ba03-90cf0c45f701", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-22T12:48:13.000Z" - }, - "end": { - "$date": "2021-10-22T13:19:33.000Z" - }, - "events": [ - { - "uuid": "e1dcfe56-8c00-4140-906f-dcd97ed39f3b", - "start": { - "$date": "2021-10-22T12:48:13.000Z" - }, - "end": { - "$date": "2021-10-22T13:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "8a5a649a-546e-446b-af84-1f84627bb77d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-22T14:37:11.000Z" - }, - "end": { - "$date": "2021-10-22T14:51:32.000Z" - }, - "events": [ - { - "uuid": "c86634f1-7ec9-48a9-8e3d-c780de44bd45", - "start": { - "$date": "2021-10-22T14:37:11.000Z" - }, - "end": { - "$date": "2021-10-22T14:51:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "5d72e11c-c3df-47af-b506-fcddc1d6aaba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-22T15:46:47.000Z" - }, - "end": { - "$date": "2021-10-22T17:24:51.000Z" - }, - "events": [ - { - "uuid": "a48509ee-3a80-425c-8cf2-65b38aa67e2e", - "start": { - "$date": "2021-10-22T15:46:47.000Z" - }, - "end": { - "$date": "2021-10-22T17:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b65d1efd-b6ec-4050-8847-14ce33123f39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T18:01:58.000Z" - }, - "end": { - "$date": "2021-10-22T18:25:32.000Z" - }, - "events": [ - { - "uuid": "3d7981af-814c-48b2-93b6-1c7c2e423cc4", - "start": { - "$date": "2021-10-22T18:01:58.000Z" - }, - "end": { - "$date": "2021-10-22T18:25:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "28c5445a-87eb-4f5b-bc21-661fb11a4d93", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T18:30:06.000Z" - }, - "end": { - "$date": "2021-10-22T18:45:05.000Z" - }, - "events": [ - { - "uuid": "ab6181b4-9ac3-4971-860a-7e733b520627", - "start": { - "$date": "2021-10-22T18:30:06.000Z" - }, - "end": { - "$date": "2021-10-22T18:45:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e3b43207-3a44-4fce-b2b7-c719ff85e9e6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-22T20:26:00.000Z" - }, - "end": { - "$date": "2021-10-22T20:35:04.000Z" - }, - "events": [ - { - "uuid": "d6bfc005-3df0-466a-a322-1d6b6904c645", - "start": { - "$date": "2021-10-22T20:26:00.000Z" - }, - "end": { - "$date": "2021-10-22T20:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a096668b-e85f-4f1e-9a25-1e07577b07d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-22T20:35:30.000Z" - }, - "end": { - "$date": "2021-10-22T21:43:48.000Z" - }, - "events": [ - { - "uuid": "76bbc54c-2f98-4d51-bac1-7dc04ae0c18e", - "start": { - "$date": "2021-10-22T20:35:30.000Z" - }, - "end": { - "$date": "2021-10-22T20:46:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6c4365d1-03d3-4b73-b79b-a0ee28c04fe3", - "start": { - "$date": "2021-10-22T20:46:30.000Z" - }, - "end": { - "$date": "2021-10-22T21:17:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edd834dd-ff75-48cf-8ba0-4163bfa045c0", - "start": { - "$date": "2021-10-22T21:17:30.000Z" - }, - "end": { - "$date": "2021-10-22T21:19:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "56cf1456-7ad8-4254-90e6-2c5a67bb3e05", - "start": { - "$date": "2021-10-22T21:19:30.000Z" - }, - "end": { - "$date": "2021-10-22T21:43:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "42b60bb2-83f7-46a4-a1f9-a50b7a3b5bc1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-22T21:37:05.000Z" - }, - "end": { - "$date": "2021-10-22T22:35:22.000Z" - }, - "events": [ - { - "uuid": "ed4f43b0-448a-4e1f-b0ba-7ec5bd46768b", - "start": { - "$date": "2021-10-22T21:37:05.000Z" - }, - "end": { - "$date": "2021-10-22T22:35:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "722db5e0-d274-4c69-a5b7-4e829b586ca2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-22T21:50:36.000Z" - }, - "end": { - "$date": "2021-10-22T23:53:34.000Z" - }, - "events": [ - { - "uuid": "a8b76f91-2f8f-4c41-8785-a3224ee94e1b", - "start": { - "$date": "2021-10-22T21:50:36.000Z" - }, - "end": { - "$date": "2021-10-22T23:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "de3b1731-da23-4eab-ad97-2e1743e6cc4f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-22T23:04:27.000Z" - }, - "end": { - "$date": "2021-10-22T23:08:28.000Z" - }, - "events": [ - { - "uuid": "6dda7a2e-3952-4517-adc7-789589c70db9", - "start": { - "$date": "2021-10-22T23:04:27.000Z" - }, - "end": { - "$date": "2021-10-22T23:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d8225bf5-214f-4188-976a-77f300d64499", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-22T23:08:48.000Z" - }, - "end": { - "$date": "2021-10-23T06:27:08.000Z" - }, - "events": [ - { - "uuid": "b5102cb7-bdf8-4329-b1e2-873d9eb34021", - "start": { - "$date": "2021-10-22T23:08:48.000Z" - }, - "end": { - "$date": "2021-10-23T06:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e434153d-9a42-47bf-a4de-2de48f4c73b2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T00:23:33.000Z" - }, - "end": { - "$date": "2021-10-23T02:01:38.000Z" - }, - "events": [ - { - "uuid": "2b16141b-b732-4286-bb5f-f4a9b36ace2a", - "start": { - "$date": "2021-10-23T00:23:33.000Z" - }, - "end": { - "$date": "2021-10-23T01:29:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0202841e-5586-43d5-96fe-d726e49e1117", - "start": { - "$date": "2021-10-23T01:29:33.000Z" - }, - "end": { - "$date": "2021-10-23T02:01:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3697c8a2-1671-4e04-a6ec-2e1e53b9c842", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-23T00:43:09.000Z" - }, - "end": { - "$date": "2021-10-23T02:09:08.000Z" - }, - "events": [ - { - "uuid": "5157f5b3-26cc-4a5b-a54a-09a84c83215f", - "start": { - "$date": "2021-10-23T00:43:09.000Z" - }, - "end": { - "$date": "2021-10-23T00:44:09.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "e8c3bedc-a012-416d-bbf8-4522bb99321e", - "start": { - "$date": "2021-10-23T00:44:09.000Z" - }, - "end": { - "$date": "2021-10-23T02:09:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "184dda26-a25e-4495-8183-2e436967c99c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T02:04:13.000Z" - }, - "end": { - "$date": "2021-10-23T02:20:14.000Z" - }, - "events": [ - { - "uuid": "a3786322-3b2a-4842-a4de-006c0b3634f3", - "start": { - "$date": "2021-10-23T02:04:13.000Z" - }, - "end": { - "$date": "2021-10-23T02:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "df9804ac-828e-41c8-8ade-40714a86ea02", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T03:11:26.000Z" - }, - "end": { - "$date": "2021-10-23T06:12:05.000Z" - }, - "events": [ - { - "uuid": "52449d49-fab5-4ce5-ba6f-64c061cbefeb", - "start": { - "$date": "2021-10-23T03:11:26.000Z" - }, - "end": { - "$date": "2021-10-23T06:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "6f4ba2e6-2b44-4717-b60a-2218f23cf67c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-23T03:01:08.000Z" - }, - "end": { - "$date": "2021-10-23T03:49:12.000Z" - }, - "events": [ - { - "uuid": "c80511d4-4bc8-411a-a9f9-9f3c666b4b53", - "start": { - "$date": "2021-10-23T03:01:08.000Z" - }, - "end": { - "$date": "2021-10-23T03:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c5379144-5975-4058-90cd-b04c8fae8b8c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-23T03:19:40.000Z" - }, - "end": { - "$date": "2021-10-23T06:12:27.000Z" - }, - "events": [ - { - "uuid": "2d0f85ff-1eb7-49b7-9c46-d1f335a0b71d", - "start": { - "$date": "2021-10-23T03:19:40.000Z" - }, - "end": { - "$date": "2021-10-23T06:12:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfe91ad6-e96f-4a59-bfd3-2d654e683405", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-23T03:26:18.000Z" - }, - "end": { - "$date": "2021-10-23T03:53:43.000Z" - }, - "events": [ - { - "uuid": "2abcb37d-a84a-409a-9fe0-a72eb89734f3", - "start": { - "$date": "2021-10-23T03:26:18.000Z" - }, - "end": { - "$date": "2021-10-23T03:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9754ad0c-7cd9-4910-8cc3-d150ce902c7f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-23T03:26:51.000Z" - }, - "end": { - "$date": "2021-10-23T03:41:38.000Z" - }, - "events": [ - { - "uuid": "467cad96-fc64-4add-b7e8-81827c91e99f", - "start": { - "$date": "2021-10-23T03:26:51.000Z" - }, - "end": { - "$date": "2021-10-23T03:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "3159cc47-55f4-41a9-a6de-52e16471bb19", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T03:43:36.000Z" - }, - "end": { - "$date": "2021-10-23T04:11:14.000Z" - }, - "events": [ - { - "uuid": "37fe94d0-e457-412d-b1fa-d6013b0ea4ce", - "start": { - "$date": "2021-10-23T03:43:36.000Z" - }, - "end": { - "$date": "2021-10-23T04:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b98c82e-5051-477e-825f-62d50b42f39b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-23T03:44:42.000Z" - }, - "end": { - "$date": "2021-10-23T06:12:12.000Z" - }, - "events": [ - { - "uuid": "b76b0529-c004-47f7-95a9-74411cdd7286", - "start": { - "$date": "2021-10-23T03:44:42.000Z" - }, - "end": { - "$date": "2021-10-23T06:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ac3afb7-641c-4ddf-8f97-cf0912ce72f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-23T03:58:09.000Z" - }, - "end": { - "$date": "2021-10-23T04:29:08.000Z" - }, - "events": [ - { - "uuid": "12ac2160-5c29-40fe-97ec-1f0bbb1aca76", - "start": { - "$date": "2021-10-23T03:58:09.000Z" - }, - "end": { - "$date": "2021-10-23T04:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6033130-bfef-47b5-a3a8-371200cb15ed", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-23T04:34:50.000Z" - }, - "end": { - "$date": "2021-10-23T05:12:46.000Z" - }, - "events": [ - { - "uuid": "0e24cc6e-5f3f-4d05-84f8-19552e8ee5e9", - "start": { - "$date": "2021-10-23T04:34:50.000Z" - }, - "end": { - "$date": "2021-10-23T05:12:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1e3fd3e8-9ef4-4ad9-83cd-9ae30f2181cf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T06:17:30.000Z" - }, - "end": { - "$date": "2021-10-23T06:31:02.000Z" - }, - "events": [ - { - "uuid": "838f75ff-0a7b-433f-a76f-eefe2b7d9b31", - "start": { - "$date": "2021-10-23T06:17:30.000Z" - }, - "end": { - "$date": "2021-10-23T06:31:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b36dd273-d23d-444b-b4ca-416f5748d22c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T06:31:06.000Z" - }, - "end": { - "$date": "2021-10-23T07:22:45.000Z" - }, - "events": [ - { - "uuid": "e3b31f71-00c5-4a8a-9083-779196a7d701", - "start": { - "$date": "2021-10-23T06:31:06.000Z" - }, - "end": { - "$date": "2021-10-23T07:22:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f9c4288e-27fb-4b5a-b9ed-320c653fb91e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-23T07:31:35.000Z" - }, - "end": { - "$date": "2021-10-23T09:08:53.000Z" - }, - "events": [ - { - "uuid": "158eff09-68f6-4264-bc69-38d346a58ef0", - "start": { - "$date": "2021-10-23T07:31:35.000Z" - }, - "end": { - "$date": "2021-10-23T09:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae870527-7e3b-4b1c-bf49-dae81e0e2dd6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-23T07:35:04.000Z" - }, - "end": { - "$date": "2021-10-23T09:08:55.000Z" - }, - "events": [ - { - "uuid": "d56cf4df-e19b-4653-b10b-a52e17c4cf16", - "start": { - "$date": "2021-10-23T07:35:04.000Z" - }, - "end": { - "$date": "2021-10-23T09:08:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d86f4261-5eef-4a79-9862-a0f7f0280105", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-23T07:50:21.000Z" - }, - "end": { - "$date": "2021-10-23T08:26:15.000Z" - }, - "events": [ - { - "uuid": "0f9c19bc-a914-4d7a-8ee8-87e26bd3d892", - "start": { - "$date": "2021-10-23T07:50:21.000Z" - }, - "end": { - "$date": "2021-10-23T08:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81a27da4-fa6c-4778-a038-813318d91b70", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T07:52:01.000Z" - }, - "end": { - "$date": "2021-10-23T08:09:42.000Z" - }, - "events": [ - { - "uuid": "f6eeca3a-2093-4393-a6e5-af782cc0038c", - "start": { - "$date": "2021-10-23T07:52:01.000Z" - }, - "end": { - "$date": "2021-10-23T08:09:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0206226a-0d74-498c-b815-6893a8e16e9a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T08:12:32.000Z" - }, - "end": { - "$date": "2021-10-23T08:36:02.000Z" - }, - "events": [ - { - "uuid": "f02b1bd1-3e9e-4500-b635-e76d8d0c7ba6", - "start": { - "$date": "2021-10-23T08:12:32.000Z" - }, - "end": { - "$date": "2021-10-23T08:36:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06d4e234-0795-4da6-94e6-1ff80f57e439", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T08:38:42.000Z" - }, - "end": { - "$date": "2021-10-23T08:54:07.000Z" - }, - "events": [ - { - "uuid": "a2d2082e-d355-46cb-8eed-ad82b09ccd27", - "start": { - "$date": "2021-10-23T08:38:42.000Z" - }, - "end": { - "$date": "2021-10-23T08:54:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d6a5f02-7e3b-4f63-8498-3a8a79985e9b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T08:55:57.000Z" - }, - "end": { - "$date": "2021-10-23T09:13:55.000Z" - }, - "events": [ - { - "uuid": "73c241ef-0954-4cbf-9673-ee856c1def78", - "start": { - "$date": "2021-10-23T08:55:57.000Z" - }, - "end": { - "$date": "2021-10-23T09:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9127c05d-7682-42a1-ac17-8798fb914c8d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T09:18:33.000Z" - }, - "end": { - "$date": "2021-10-23T09:39:53.000Z" - }, - "events": [ - { - "uuid": "374c8a87-d64f-4d0d-b891-4b4ac083e23f", - "start": { - "$date": "2021-10-23T09:18:33.000Z" - }, - "end": { - "$date": "2021-10-23T09:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fde9110-2acb-44bf-b4a9-483416982768", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T09:42:33.000Z" - }, - "end": { - "$date": "2021-10-23T10:09:29.000Z" - }, - "events": [ - { - "uuid": "6e61790a-8511-4504-b476-efc4a61347b2", - "start": { - "$date": "2021-10-23T09:42:33.000Z" - }, - "end": { - "$date": "2021-10-23T10:09:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b43af9a7-2850-40d2-a056-923c1ec05035", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T10:12:55.000Z" - }, - "end": { - "$date": "2021-10-23T10:34:18.000Z" - }, - "events": [ - { - "uuid": "8897df1a-f0a6-42f2-a1b0-0861a5cbe255", - "start": { - "$date": "2021-10-23T10:12:55.000Z" - }, - "end": { - "$date": "2021-10-23T10:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a98e2083-e447-438b-afa8-79ef3910860d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T10:38:53.000Z" - }, - "end": { - "$date": "2021-10-23T10:58:36.000Z" - }, - "events": [ - { - "uuid": "dc331806-985f-45d9-b404-b6e13983d1f8", - "start": { - "$date": "2021-10-23T10:38:53.000Z" - }, - "end": { - "$date": "2021-10-23T10:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cf9263e-0203-410f-830b-05dd36cd090e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T11:03:57.000Z" - }, - "end": { - "$date": "2021-10-23T11:20:44.000Z" - }, - "events": [ - { - "uuid": "4dfa19ba-5e2b-49d8-9957-867c7f18a2ad", - "start": { - "$date": "2021-10-23T11:03:57.000Z" - }, - "end": { - "$date": "2021-10-23T11:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b18d34bf-ee5b-4671-ab6c-a212e633e5a2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-23T11:21:52.000Z" - }, - "end": { - "$date": "2021-10-23T11:24:06.000Z" - }, - "events": [ - { - "uuid": "eaa5e50b-dc9a-4274-b31c-b1d7c668b50b", - "start": { - "$date": "2021-10-23T11:21:52.000Z" - }, - "end": { - "$date": "2021-10-23T11:24:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "40946f34-bbaa-4eba-a43c-34785a29a4df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T14:56:16.000Z" - }, - "end": { - "$date": "2021-10-23T16:10:35.000Z" - }, - "events": [ - { - "uuid": "3330bf0f-c4f2-47dd-aef4-59190b6beb64", - "start": { - "$date": "2021-10-23T14:56:16.000Z" - }, - "end": { - "$date": "2021-10-23T16:10:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b94a8b3-a9e5-465e-901c-0b6e8387cf02", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-23T15:30:48.000Z" - }, - "end": { - "$date": "2021-10-23T15:48:37.000Z" - }, - "events": [ - { - "uuid": "343a157e-f0c3-4ae1-ab9c-b35f0e178628", - "start": { - "$date": "2021-10-23T15:30:48.000Z" - }, - "end": { - "$date": "2021-10-23T15:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53b09deb-1af2-4b4f-bdaa-7b99728f7514", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-23T15:51:21.000Z" - }, - "end": { - "$date": "2021-10-23T16:10:11.000Z" - }, - "events": [ - { - "uuid": "15b0479d-ff76-4943-841a-6bc9ac0f7a41", - "start": { - "$date": "2021-10-23T15:51:21.000Z" - }, - "end": { - "$date": "2021-10-23T16:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "8d316c2f-5d2d-40e5-aa48-573efcd58410", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-23T16:14:34.000Z" - }, - "end": { - "$date": "2021-10-23T18:47:43.000Z" - }, - "events": [ - { - "uuid": "37a61aa8-7482-4e47-a46b-8a0e0734b42f", - "start": { - "$date": "2021-10-23T16:14:34.000Z" - }, - "end": { - "$date": "2021-10-23T18:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "00bef244-27aa-46e9-94c5-6e03b208bfc9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T17:03:59.000Z" - }, - "end": { - "$date": "2021-10-23T17:47:21.000Z" - }, - "events": [ - { - "uuid": "5b7635ff-4a23-4109-97f1-23332cfff0d4", - "start": { - "$date": "2021-10-23T17:03:59.000Z" - }, - "end": { - "$date": "2021-10-23T17:47:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d92e6d7c-6697-4f23-8474-e786d74c018a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T17:47:31.000Z" - }, - "end": { - "$date": "2021-10-23T21:44:03.000Z" - }, - "events": [ - { - "uuid": "4d8ea792-0ae6-4eac-b97f-92dceebe742f", - "start": { - "$date": "2021-10-23T17:47:31.000Z" - }, - "end": { - "$date": "2021-10-23T21:44:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "b652d5cc-5c42-4d66-94eb-b10c77e90f65", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-23T20:06:31.000Z" - }, - "end": { - "$date": "2021-10-23T21:06:17.000Z" - }, - "events": [ - { - "uuid": "78c5f2db-1be4-4f69-b2b2-e77b11fa0a8d", - "start": { - "$date": "2021-10-23T20:06:31.000Z" - }, - "end": { - "$date": "2021-10-23T21:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "097a7ccf-467f-430a-843b-8da95f4c32e0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-23T21:22:49.000Z" - }, - "end": { - "$date": "2021-10-23T21:41:57.000Z" - }, - "events": [ - { - "uuid": "1f7a533e-33c1-4e58-abdd-9c9f1594f940", - "start": { - "$date": "2021-10-23T21:22:49.000Z" - }, - "end": { - "$date": "2021-10-23T21:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6fa34364-8374-4b56-b5aa-7fca1557c542", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-23T22:05:37.000Z" - }, - "end": { - "$date": "2021-10-24T00:08:24.000Z" - }, - "events": [ - { - "uuid": "d7dfce5f-7a15-429a-9e50-a3f4af98d660", - "start": { - "$date": "2021-10-23T22:05:37.000Z" - }, - "end": { - "$date": "2021-10-23T22:15:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef369321-ad66-4afb-940f-c0d15c808c0f", - "start": { - "$date": "2021-10-23T22:15:37.000Z" - }, - "end": { - "$date": "2021-10-23T22:16:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee30c762-5aaf-44a2-9823-54b330866a65", - "start": { - "$date": "2021-10-23T22:16:37.000Z" - }, - "end": { - "$date": "2021-10-24T00:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae8dffff-7df1-4714-b6b5-7c6a2d7e8733", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-23T22:09:06.000Z" - }, - "end": { - "$date": "2021-10-23T23:28:34.000Z" - }, - "events": [ - { - "uuid": "7873169a-e37c-48f5-85d5-065bd55053f4", - "start": { - "$date": "2021-10-23T22:09:06.000Z" - }, - "end": { - "$date": "2021-10-23T23:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "98c9aabf-cc52-4390-880e-90d283622093", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-23T22:10:06.000Z" - }, - "end": { - "$date": "2021-10-24T00:31:33.000Z" - }, - "events": [ - { - "uuid": "e41fb647-096d-4ea0-9288-65f82cfbd22d", - "start": { - "$date": "2021-10-23T22:10:06.000Z" - }, - "end": { - "$date": "2021-10-24T00:31:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4020828-dcde-4fb3-a2f6-e79c46e2553f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-23T22:16:50.000Z" - }, - "end": { - "$date": "2021-10-24T00:07:49.000Z" - }, - "events": [ - { - "uuid": "50e3dc1c-3aaf-4c84-a645-46f2497ca505", - "start": { - "$date": "2021-10-23T22:16:50.000Z" - }, - "end": { - "$date": "2021-10-24T00:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2f9fe853-ad57-4b8f-a24c-4b3a61f13da4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-23T23:35:07.000Z" - }, - "end": { - "$date": "2021-10-24T06:51:50.000Z" - }, - "events": [ - { - "uuid": "20eb7e66-2d6f-4fe0-8a87-394a80c6573c", - "start": { - "$date": "2021-10-23T23:35:07.000Z" - }, - "end": { - "$date": "2021-10-24T06:51:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "993dd4ea-b955-45bb-bfe2-baa1da841b31", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-24T00:10:43.000Z" - }, - "end": { - "$date": "2021-10-24T00:11:54.000Z" - }, - "events": [ - { - "uuid": "96987221-dec0-407b-8825-e8d7d2eda16a", - "start": { - "$date": "2021-10-24T00:10:43.000Z" - }, - "end": { - "$date": "2021-10-24T00:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a07e8d95-d0a7-4247-a870-549eeb89af7c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-24T00:08:52.000Z" - }, - "end": { - "$date": "2021-10-24T01:46:15.000Z" - }, - "events": [ - { - "uuid": "abae0a91-2515-4f6b-9552-98cb00046803", - "start": { - "$date": "2021-10-24T00:08:52.000Z" - }, - "end": { - "$date": "2021-10-24T01:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e798fa2b-1cff-4df8-898d-0353e530343f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-24T00:12:33.000Z" - }, - "end": { - "$date": "2021-10-24T00:54:36.000Z" - }, - "events": [ - { - "uuid": "099d344d-aa61-41b3-bc5c-f3927f7273f6", - "start": { - "$date": "2021-10-24T00:12:33.000Z" - }, - "end": { - "$date": "2021-10-24T00:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "4a810709-0c75-4a68-97a2-36a043a39897", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T00:17:13.000Z" - }, - "end": { - "$date": "2021-10-24T03:14:08.000Z" - }, - "events": [ - { - "uuid": "9ea5e309-68b4-4676-b8a9-c823172570b5", - "start": { - "$date": "2021-10-24T00:17:13.000Z" - }, - "end": { - "$date": "2021-10-24T03:14:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9388c2db-99b2-42fe-ba76-1d34a2ea4ee5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T00:32:02.000Z" - }, - "end": { - "$date": "2021-10-24T00:47:26.000Z" - }, - "events": [ - { - "uuid": "1f924aa9-cc2c-4b90-bed1-68bd438b27a9", - "start": { - "$date": "2021-10-24T00:32:02.000Z" - }, - "end": { - "$date": "2021-10-24T00:46:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6c0d2c29-d6f9-4b3a-a337-7b1f2dc38db0", - "start": { - "$date": "2021-10-24T00:46:02.000Z" - }, - "end": { - "$date": "2021-10-24T00:47:26.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8d55b943-536e-4a43-9e05-b898bea6e33c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-24T01:12:08.000Z" - }, - "end": { - "$date": "2021-10-24T01:40:18.000Z" - }, - "events": [ - { - "uuid": "1e883960-8252-4d57-b3a0-4023cf824164", - "start": { - "$date": "2021-10-24T01:12:08.000Z" - }, - "end": { - "$date": "2021-10-24T01:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "feb49678-e27f-4d9e-b535-79f132bb3778", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-24T01:42:58.000Z" - }, - "end": { - "$date": "2021-10-24T01:46:41.000Z" - }, - "events": [ - { - "uuid": "1734ce51-9ad9-431f-8ef3-399b8bd1f197", - "start": { - "$date": "2021-10-24T01:42:58.000Z" - }, - "end": { - "$date": "2021-10-24T01:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b3b832a1-8869-4e5c-a208-b2ab9efbeebd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-24T01:48:23.000Z" - }, - "end": { - "$date": "2021-10-24T03:29:35.000Z" - }, - "events": [ - { - "uuid": "7d63880a-fdd7-48b4-8042-4bfeb09ba7f9", - "start": { - "$date": "2021-10-24T01:48:23.000Z" - }, - "end": { - "$date": "2021-10-24T03:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff5ea4c0-6343-4384-b746-4c1f7705211b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-24T01:48:25.000Z" - }, - "end": { - "$date": "2021-10-24T03:29:10.000Z" - }, - "events": [ - { - "uuid": "7ffe01ab-f9ba-4979-87a3-ce37a99d65cc", - "start": { - "$date": "2021-10-24T01:48:25.000Z" - }, - "end": { - "$date": "2021-10-24T03:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1fbeae4b-5375-4659-9d05-11cf61b7cdad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T01:59:45.000Z" - }, - "end": { - "$date": "2021-10-24T06:02:37.000Z" - }, - "events": [ - { - "uuid": "3465d88d-e4a4-4e93-a615-288ead177e55", - "start": { - "$date": "2021-10-24T01:59:45.000Z" - }, - "end": { - "$date": "2021-10-24T06:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fc7187cf-d63c-4c33-9443-01f216c1ac52", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-24T02:18:09.000Z" - }, - "end": { - "$date": "2021-10-24T03:29:04.000Z" - }, - "events": [ - { - "uuid": "0c7cee55-2a41-4717-b74f-5b70e5460a61", - "start": { - "$date": "2021-10-24T02:18:09.000Z" - }, - "end": { - "$date": "2021-10-24T03:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "569db3b5-9ce3-43e6-b2fd-4213010e7e3d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T04:22:33.000Z" - }, - "end": { - "$date": "2021-10-24T04:23:06.000Z" - }, - "events": [ - { - "uuid": "45457d1a-d7af-4b37-9edc-b4610309ece9", - "start": { - "$date": "2021-10-24T04:22:33.000Z" - }, - "end": { - "$date": "2021-10-24T04:23:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46b82a33-feee-4105-adcc-f35795b9a56b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T03:31:59.000Z" - }, - "end": { - "$date": "2021-10-24T03:46:14.000Z" - }, - "events": [ - { - "uuid": "95f861ca-3874-4f8d-988c-e85902fcb3c5", - "start": { - "$date": "2021-10-24T03:31:59.000Z" - }, - "end": { - "$date": "2021-10-24T03:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "d2f89058-c93b-4437-a560-9a4f479b40f2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-24T03:30:44.000Z" - }, - "end": { - "$date": "2021-10-24T11:37:05.000Z" - }, - "events": [ - { - "uuid": "3712c8da-8892-4a43-b8e8-4f80a194cf47", - "start": { - "$date": "2021-10-24T03:30:44.000Z" - }, - "end": { - "$date": "2021-10-24T11:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "7a0eef49-8fe6-4b6f-a01d-8a6002b978f0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-24T03:30:44.000Z" - }, - "end": { - "$date": "2021-10-24T09:20:06.000Z" - }, - "events": [ - { - "uuid": "81c132eb-bca9-46ee-a64d-54d295a27404", - "start": { - "$date": "2021-10-24T03:30:44.000Z" - }, - "end": { - "$date": "2021-10-24T09:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "599212bc-50cc-4f73-8bba-c545538023b2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-24T03:34:14.000Z" - }, - "end": { - "$date": "2021-10-24T04:48:06.000Z" - }, - "events": [ - { - "uuid": "2e64872d-91b0-4430-bf88-a0174a462966", - "start": { - "$date": "2021-10-24T03:34:14.000Z" - }, - "end": { - "$date": "2021-10-24T04:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75ebb542-e2b2-41c6-bf93-16aa477b1c1a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T03:49:39.000Z" - }, - "end": { - "$date": "2021-10-24T04:02:10.000Z" - }, - "events": [ - { - "uuid": "dc79c2f3-ca5a-42b1-96cd-08f2cc7c228b", - "start": { - "$date": "2021-10-24T03:49:39.000Z" - }, - "end": { - "$date": "2021-10-24T04:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd602d46-3333-4c5c-908f-7642890afb2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T04:06:25.000Z" - }, - "end": { - "$date": "2021-10-24T04:22:30.000Z" - }, - "events": [ - { - "uuid": "96ffa814-de19-4158-a9ff-ae7336ab716e", - "start": { - "$date": "2021-10-24T04:06:25.000Z" - }, - "end": { - "$date": "2021-10-24T04:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a8aa1240-0606-4ccb-bc61-a0084d4b413c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-24T04:22:05.000Z" - }, - "end": { - "$date": "2021-10-24T04:36:05.000Z" - }, - "events": [ - { - "uuid": "902268f3-f0bd-4cff-afe4-2f9e6becde1c", - "start": { - "$date": "2021-10-24T04:22:05.000Z" - }, - "end": { - "$date": "2021-10-24T04:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4beebf98-bda6-45a5-b1b1-39bf37544c72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-24T04:36:15.000Z" - }, - "end": { - "$date": "2021-10-24T06:53:28.000Z" - }, - "events": [ - { - "uuid": "bb9f67a2-7916-485b-867b-53e2c81f54df", - "start": { - "$date": "2021-10-24T04:36:15.000Z" - }, - "end": { - "$date": "2021-10-24T06:53:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "f8925eff-97cc-4b5e-bb44-c8d64807815d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-24T05:01:01.000Z" - }, - "end": { - "$date": "2021-10-24T06:35:40.000Z" - }, - "events": [ - { - "uuid": "7ef2dccc-c52e-4abc-a5a4-26e3e8c48681", - "start": { - "$date": "2021-10-24T05:01:01.000Z" - }, - "end": { - "$date": "2021-10-24T06:35:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ba6d9b4-3b74-42db-b6ea-1f4880eb2c79", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-24T05:52:54.000Z" - }, - "end": { - "$date": "2021-10-24T06:53:22.000Z" - }, - "events": [ - { - "uuid": "e31b8755-6406-4088-9d35-a3e36e227717", - "start": { - "$date": "2021-10-24T05:52:54.000Z" - }, - "end": { - "$date": "2021-10-24T06:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7a29dc5-1a1e-467e-bab8-2ecc575b1a74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-24T05:57:57.000Z" - }, - "end": { - "$date": "2021-10-24T06:16:57.000Z" - }, - "events": [ - { - "uuid": "e81b7dd0-e983-4a1b-a1a6-f8ce872c92e1", - "start": { - "$date": "2021-10-24T05:57:57.000Z" - }, - "end": { - "$date": "2021-10-24T06:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "dea51fef-e37e-421c-bc98-10b4e19771b6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-24T06:36:13.000Z" - }, - "end": { - "$date": "2021-10-24T06:45:16.000Z" - }, - "events": [ - { - "uuid": "497b3323-0c7f-40f8-975a-262454295c6e", - "start": { - "$date": "2021-10-24T06:36:13.000Z" - }, - "end": { - "$date": "2021-10-24T06:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "200d2c5c-f882-4cdc-9c4a-4f10b2e30e9d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-24T07:38:26.000Z" - }, - "end": { - "$date": "2021-10-24T07:58:39.000Z" - }, - "events": [ - { - "uuid": "7c512f2e-212c-44dc-a2cc-44a8e021a37d", - "start": { - "$date": "2021-10-24T07:38:26.000Z" - }, - "end": { - "$date": "2021-10-24T07:58:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95c45a13-44d9-4753-aed9-30e75bd98fa2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T15:50:02.000Z" - }, - "end": { - "$date": "2021-10-24T15:58:54.000Z" - }, - "events": [ - { - "uuid": "15548e06-0f24-4821-b15e-b73ab0580970", - "start": { - "$date": "2021-10-24T15:50:02.000Z" - }, - "end": { - "$date": "2021-10-24T15:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "7ee41653-a9ab-48d2-97b4-11d4f75efb39", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T15:46:29.000Z" - }, - "end": { - "$date": "2021-10-24T15:49:50.000Z" - }, - "events": [ - { - "uuid": "ac8a87fe-b596-4361-9749-c253e7cd4172", - "start": { - "$date": "2021-10-24T15:46:29.000Z" - }, - "end": { - "$date": "2021-10-24T15:49:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0fed5da6-0eda-4b7e-b730-b90d3de447a6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T15:50:40.000Z" - }, - "end": { - "$date": "2021-10-24T16:22:31.000Z" - }, - "events": [ - { - "uuid": "c16d90fd-ce5f-4ff5-8588-491667699256", - "start": { - "$date": "2021-10-24T15:50:40.000Z" - }, - "end": { - "$date": "2021-10-24T16:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "deb686d2-dba6-4666-b192-65e2f9940d24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T16:04:08.000Z" - }, - "end": { - "$date": "2021-10-24T16:23:25.000Z" - }, - "events": [ - { - "uuid": "3f809370-2b69-4764-a886-4fbf54cda32e", - "start": { - "$date": "2021-10-24T16:04:08.000Z" - }, - "end": { - "$date": "2021-10-24T16:23:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3087519-b159-433c-ac27-38f54f1bdb8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T16:28:13.000Z" - }, - "end": { - "$date": "2021-10-24T16:42:23.000Z" - }, - "events": [ - { - "uuid": "4e2adc4d-a118-4479-bcf7-a73b4fdcb595", - "start": { - "$date": "2021-10-24T16:28:13.000Z" - }, - "end": { - "$date": "2021-10-24T16:42:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ac1aed5c-cb3d-4303-85cc-718bb4678761", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T16:27:31.000Z" - }, - "end": { - "$date": "2021-10-24T16:39:32.000Z" - }, - "events": [ - { - "uuid": "c5020be1-9099-4dd2-84a3-d3d7a458b287", - "start": { - "$date": "2021-10-24T16:27:31.000Z" - }, - "end": { - "$date": "2021-10-24T16:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "a2ddf06c-3de6-4475-a537-ac2373a7df4a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T16:42:47.000Z" - }, - "end": { - "$date": "2021-10-24T17:10:34.000Z" - }, - "events": [ - { - "uuid": "0a4fea64-32ce-4aff-b476-d8881cd32e63", - "start": { - "$date": "2021-10-24T16:42:47.000Z" - }, - "end": { - "$date": "2021-10-24T17:10:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "887750b7-3f21-41a3-b0ef-ac652dcab9e7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T17:07:20.000Z" - }, - "end": { - "$date": "2021-10-24T17:23:58.000Z" - }, - "events": [ - { - "uuid": "239f4c3a-cf84-4d99-8cd8-93e69292d5d1", - "start": { - "$date": "2021-10-24T17:07:20.000Z" - }, - "end": { - "$date": "2021-10-24T17:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7a76c085-7a62-4548-9397-f3c98b85645f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-24T17:07:35.000Z" - }, - "end": { - "$date": "2021-10-24T20:46:06.000Z" - }, - "events": [ - { - "uuid": "dc3383c7-d7b1-423f-836c-54d46a91e30d", - "start": { - "$date": "2021-10-24T17:07:35.000Z" - }, - "end": { - "$date": "2021-10-24T20:46:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "a607bb76-1914-4039-a9c1-00498ebbb1ef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T17:12:14.000Z" - }, - "end": { - "$date": "2021-10-24T17:16:29.000Z" - }, - "events": [ - { - "uuid": "4a353dea-d571-49cc-abb6-41541b15496b", - "start": { - "$date": "2021-10-24T17:12:14.000Z" - }, - "end": { - "$date": "2021-10-24T17:16:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "51b6f66f-e997-43bd-853c-03488cf0be0a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T17:16:35.000Z" - }, - "end": { - "$date": "2021-10-24T18:03:35.000Z" - }, - "events": [ - { - "uuid": "26a80ba2-5e7c-4c41-b549-078cb0a4ff28", - "start": { - "$date": "2021-10-24T17:16:35.000Z" - }, - "end": { - "$date": "2021-10-24T18:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba8acdf2-0acf-436c-9895-ca363ba180c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T17:29:51.000Z" - }, - "end": { - "$date": "2021-10-24T17:58:42.000Z" - }, - "events": [ - { - "uuid": "744d7db7-d6ea-4ed1-8f83-f2c7ef6d87b2", - "start": { - "$date": "2021-10-24T17:29:51.000Z" - }, - "end": { - "$date": "2021-10-24T17:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acc45cd8-cfe7-43b6-8735-2673f40d86f2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T18:02:36.000Z" - }, - "end": { - "$date": "2021-10-24T18:30:16.000Z" - }, - "events": [ - { - "uuid": "0a7c3d69-d77a-460a-9ef0-6bbd230e7d08", - "start": { - "$date": "2021-10-24T18:02:36.000Z" - }, - "end": { - "$date": "2021-10-24T18:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0327db3d-4ec3-4d6a-8cfc-3910c12e48bc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-24T18:03:50.000Z" - }, - "end": { - "$date": "2021-10-24T19:11:39.000Z" - }, - "events": [ - { - "uuid": "84ed70b4-72e5-43e2-8883-fc262e68548a", - "start": { - "$date": "2021-10-24T18:03:50.000Z" - }, - "end": { - "$date": "2021-10-24T19:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e21fbd8-91f3-4551-bf7e-30bceea38e20", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T18:30:43.000Z" - }, - "end": { - "$date": "2021-10-24T19:16:38.000Z" - }, - "events": [ - { - "uuid": "b92208c5-e970-4798-afe6-051c0040e98d", - "start": { - "$date": "2021-10-24T18:30:43.000Z" - }, - "end": { - "$date": "2021-10-24T18:54:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93e42b06-eb1e-43f9-8b8a-a465c9eb3889", - "start": { - "$date": "2021-10-24T18:54:43.000Z" - }, - "end": { - "$date": "2021-10-24T19:16:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "238b001c-932e-44a5-97f6-f95271b6402c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T19:09:25.000Z" - }, - "end": { - "$date": "2021-10-24T19:28:20.000Z" - }, - "events": [ - { - "uuid": "ab1c551d-c3fa-40a2-b1e4-c83dd693e23b", - "start": { - "$date": "2021-10-24T19:09:25.000Z" - }, - "end": { - "$date": "2021-10-24T19:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06d9d3bc-757c-4edf-91d4-44872c971d6e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T19:28:38.000Z" - }, - "end": { - "$date": "2021-10-24T19:30:17.000Z" - }, - "events": [ - { - "uuid": "2fb3899e-ca2b-4136-86e3-b9be2da87e2b", - "start": { - "$date": "2021-10-24T19:28:38.000Z" - }, - "end": { - "$date": "2021-10-24T19:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "6fe7781a-623d-4d5c-b2a2-c95198693809", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T19:36:15.000Z" - }, - "end": { - "$date": "2021-10-24T20:08:32.000Z" - }, - "events": [ - { - "uuid": "c7cb1263-5e8b-4ce3-87f3-a50a39f8006a", - "start": { - "$date": "2021-10-24T19:36:15.000Z" - }, - "end": { - "$date": "2021-10-24T20:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "256c57f7-071f-4140-afa3-b0a727532b55", - "uuid": "66c74ab7-ed2d-43d0-984d-ecce05a5ebe2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-24T21:24:25.000Z" - }, - "end": { - "$date": "2021-10-24T21:31:21.000Z" - }, - "events": [ - { - "uuid": "018b695e-f5e3-43cf-b71c-066f84d4e2bd", - "start": { - "$date": "2021-10-24T21:24:25.000Z" - }, - "end": { - "$date": "2021-10-24T21:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29a50b5d-9e27-4bc5-be0c-a9d91993fe74", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T21:41:15.000Z" - }, - "end": { - "$date": "2021-10-24T22:07:29.000Z" - }, - "events": [ - { - "uuid": "23611785-ce6b-41be-bd5d-ec1899e8d79f", - "start": { - "$date": "2021-10-24T21:41:15.000Z" - }, - "end": { - "$date": "2021-10-24T22:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "33866fc7-6ac1-46f6-bcaf-1cea3f2acd1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-24T21:40:56.000Z" - }, - "end": { - "$date": "2021-10-24T22:21:04.000Z" - }, - "events": [ - { - "uuid": "ac7c2e21-c127-4c69-8a75-8ba74ad7fe0f", - "start": { - "$date": "2021-10-24T21:40:56.000Z" - }, - "end": { - "$date": "2021-10-24T22:21:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ab97e01-54bf-4aa3-bbba-8c22396e1bb4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T22:14:15.000Z" - }, - "end": { - "$date": "2021-10-24T22:41:21.000Z" - }, - "events": [ - { - "uuid": "e6ab5830-f2f4-49e7-acc6-8841915b0aae", - "start": { - "$date": "2021-10-24T22:14:15.000Z" - }, - "end": { - "$date": "2021-10-24T22:41:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85d4ca44-dd20-4f9e-92f3-5406052cb659", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T22:47:06.000Z" - }, - "end": { - "$date": "2021-10-24T23:07:06.000Z" - }, - "events": [ - { - "uuid": "8f2da1d3-7cc6-4a71-81c7-7d61ceb4b3e6", - "start": { - "$date": "2021-10-24T22:47:06.000Z" - }, - "end": { - "$date": "2021-10-24T23:07:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "936573f2-004a-4f7e-8cb5-bce21571c1c1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-25T02:15:14.000Z" - }, - "end": { - "$date": "2021-10-25T02:15:19.000Z" - }, - "events": [ - { - "uuid": "cb36bad6-fdb4-4e28-bb00-9d6b5a4c62e0", - "start": { - "$date": "2021-10-25T02:15:14.000Z" - }, - "end": { - "$date": "2021-10-25T02:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07222369-5554-41e8-ad47-26616259befa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-24T23:07:13.000Z" - }, - "end": { - "$date": "2021-10-24T23:47:28.000Z" - }, - "events": [ - { - "uuid": "18428fdf-b3e4-4e87-9faf-a7d4e43aa2b8", - "start": { - "$date": "2021-10-24T23:07:13.000Z" - }, - "end": { - "$date": "2021-10-24T23:20:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "90b0c3db-476f-4b5b-9109-4ae81b49f5a7", - "start": { - "$date": "2021-10-24T23:20:13.000Z" - }, - "end": { - "$date": "2021-10-24T23:47:28.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "62257f54-3b99-41a3-acdc-3f84d2d58065", - "uuid": "2df7c06e-bb6f-439d-bb69-5bad9f103b85", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T00:26:52.000Z" - }, - "end": { - "$date": "2021-10-25T03:42:33.000Z" - }, - "events": [ - { - "uuid": "62d8c7e6-039b-4eea-84f0-124c246efc47", - "start": { - "$date": "2021-10-25T00:26:52.000Z" - }, - "end": { - "$date": "2021-10-25T03:42:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45724384-1659-412d-b775-00ca1ab2b616", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-25T00:49:01.000Z" - }, - "end": { - "$date": "2021-10-25T01:06:36.000Z" - }, - "events": [ - { - "uuid": "08777d65-57e1-4f82-be39-20a297e624be", - "start": { - "$date": "2021-10-25T00:49:01.000Z" - }, - "end": { - "$date": "2021-10-25T01:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5cc280ad-b194-4ab2-8c17-a5b7d74fedef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-24T20:24:14.000Z" - }, - "end": { - "$date": "2021-10-25T01:33:31.000Z" - }, - "events": [ - { - "uuid": "eb7e77a3-a257-40de-a455-b443f85dabd9", - "start": { - "$date": "2021-10-24T20:24:14.000Z" - }, - "end": { - "$date": "2021-10-25T01:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "54cac4bc-ae4f-452f-854d-86d3930ee496", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-08T02:25:21.000Z" - }, - "end": { - "$date": "2022-06-08T06:04:52.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-06-08T02:25:21.000Z" - }, - "end": { - "$date": "2022-06-08T06:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "02b90013-f8cb-4157-b5f9-ad973266f4d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-25T02:13:32.000Z" - }, - "end": { - "$date": "2021-10-25T03:56:19.000Z" - }, - "events": [ - { - "uuid": "09f4ecb7-c762-4c87-8f3f-1fcc4cf094b0", - "start": { - "$date": "2021-10-25T02:13:32.000Z" - }, - "end": { - "$date": "2021-10-25T03:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bcd5960b-8ea9-4dae-ad7f-e3d6189ff986", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-25T02:15:39.000Z" - }, - "end": { - "$date": "2021-10-25T04:25:23.000Z" - }, - "events": [ - { - "uuid": "3a99d83a-dca0-4a72-8e19-7068c606d4c3", - "start": { - "$date": "2021-10-25T02:15:39.000Z" - }, - "end": { - "$date": "2021-10-25T04:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7b854b99-5cde-469d-8ab6-af3e6004331a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-25T02:58:47.000Z" - }, - "end": { - "$date": "2021-10-25T04:06:57.000Z" - }, - "events": [ - { - "uuid": "8198f909-405f-469b-a801-a2850bd752e9", - "start": { - "$date": "2021-10-25T02:58:47.000Z" - }, - "end": { - "$date": "2021-10-25T04:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "d5096b0b-5601-44f7-879e-2356f415a67c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-25T03:00:09.000Z" - }, - "end": { - "$date": "2021-10-25T03:56:16.000Z" - }, - "events": [ - { - "uuid": "2b36585b-5169-4890-825a-1a47843f7ce5", - "start": { - "$date": "2021-10-25T03:00:09.000Z" - }, - "end": { - "$date": "2021-10-25T03:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bdd718d2-07a9-4a5b-a935-9903f3f3ac8a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-25T04:06:59.000Z" - }, - "end": { - "$date": "2021-10-25T05:03:55.000Z" - }, - "events": [ - { - "uuid": "6e910b0a-c524-4098-bff4-f095bcad5aa4", - "start": { - "$date": "2021-10-25T04:06:59.000Z" - }, - "end": { - "$date": "2021-10-25T05:03:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d5488ba1-bffc-4907-869a-fb1d69ea4382", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-25T04:07:28.000Z" - }, - "end": { - "$date": "2021-10-25T04:08:56.000Z" - }, - "events": [ - { - "uuid": "8909b758-f65d-4e5e-a7bd-5ca5b0a2e105", - "start": { - "$date": "2021-10-25T04:07:28.000Z" - }, - "end": { - "$date": "2021-10-25T04:08:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c6e5762-a4c3-40c5-be51-bd013c1eec0e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-25T05:10:10.000Z" - }, - "end": { - "$date": "2021-10-25T05:22:55.000Z" - }, - "events": [ - { - "uuid": "fbd19246-2ea9-44a4-8f55-de5a7580e107", - "start": { - "$date": "2021-10-25T05:10:10.000Z" - }, - "end": { - "$date": "2021-10-25T05:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e10d20a-dc61-477b-bbf1-f94b7856ec47", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-25T05:22:32.000Z" - }, - "end": { - "$date": "2021-10-25T06:10:43.000Z" - }, - "events": [ - { - "uuid": "fbb9601c-f1a2-4060-9e28-d6dd5bed2462", - "start": { - "$date": "2021-10-25T05:22:32.000Z" - }, - "end": { - "$date": "2021-10-25T06:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ebe6fbcc-dc99-4745-8988-186e7c2833b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-25T06:12:13.000Z" - }, - "end": { - "$date": "2021-10-25T08:33:57.000Z" - }, - "events": [ - { - "uuid": "88299900-3fd4-44a6-bcdd-b0fb5869f29f", - "start": { - "$date": "2021-10-25T06:12:13.000Z" - }, - "end": { - "$date": "2021-10-25T08:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b5157290-3529-4483-93f6-7d0e9c102290", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-25T06:12:39.000Z" - }, - "end": { - "$date": "2021-10-25T06:51:48.000Z" - }, - "events": [ - { - "uuid": "3106082c-efb5-4e8a-acca-631bd028d24c", - "start": { - "$date": "2021-10-25T06:12:39.000Z" - }, - "end": { - "$date": "2021-10-25T06:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "134c115d-7420-4438-aa20-ba08d9cf5b04", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-25T06:14:42.000Z" - }, - "end": { - "$date": "2021-10-25T08:34:10.000Z" - }, - "events": [ - { - "uuid": "94a0bdb6-2855-46b9-87d5-4c755dd79804", - "start": { - "$date": "2021-10-25T06:14:42.000Z" - }, - "end": { - "$date": "2021-10-25T08:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9586f43b-0346-49a1-9936-7f84d7974377", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T10:29:59.000Z" - }, - "end": { - "$date": "2021-10-25T10:51:52.000Z" - }, - "events": [ - { - "uuid": "1aefee61-a047-45d6-9c96-eaeee391dacb", - "start": { - "$date": "2021-10-25T10:29:59.000Z" - }, - "end": { - "$date": "2021-10-25T10:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d51b09c-c95b-4379-be44-5151c18dac98", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T10:54:47.000Z" - }, - "end": { - "$date": "2021-10-25T11:15:24.000Z" - }, - "events": [ - { - "uuid": "bf203a64-72dd-4fb8-9f48-2f1e8d9f3e63", - "start": { - "$date": "2021-10-25T10:54:47.000Z" - }, - "end": { - "$date": "2021-10-25T11:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03f0cb83-6ba9-456c-b18f-9fc28518e954", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T11:18:40.000Z" - }, - "end": { - "$date": "2021-10-25T11:34:57.000Z" - }, - "events": [ - { - "uuid": "f0292066-3c4d-4d6d-b4b3-555206fd53af", - "start": { - "$date": "2021-10-25T11:18:40.000Z" - }, - "end": { - "$date": "2021-10-25T11:34:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90c2221d-cf97-4ecf-a821-b9173c9d30eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T11:38:07.000Z" - }, - "end": { - "$date": "2021-10-25T12:02:20.000Z" - }, - "events": [ - { - "uuid": "5df9d3aa-e6b0-4669-9e65-4d82e9127f4e", - "start": { - "$date": "2021-10-25T11:38:07.000Z" - }, - "end": { - "$date": "2021-10-25T12:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7851058-9fd5-48e3-a771-c27fdba0a4e8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T12:05:16.000Z" - }, - "end": { - "$date": "2021-10-25T12:14:52.000Z" - }, - "events": [ - { - "uuid": "f13e6f7d-b3bd-4818-b66e-a3c5a67ce69d", - "start": { - "$date": "2021-10-25T12:05:16.000Z" - }, - "end": { - "$date": "2021-10-25T12:14:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78318269-840a-4c63-9082-ea112aedf882", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T12:17:22.000Z" - }, - "end": { - "$date": "2021-10-25T12:34:20.000Z" - }, - "events": [ - { - "uuid": "882639cc-bbed-4eee-bcd3-2328b6d90230", - "start": { - "$date": "2021-10-25T12:17:22.000Z" - }, - "end": { - "$date": "2021-10-25T12:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bce8fac1-07b2-4a4c-a5f6-2c0949dbbab9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T12:37:00.000Z" - }, - "end": { - "$date": "2021-10-25T12:57:13.000Z" - }, - "events": [ - { - "uuid": "ca0bb9dc-89ae-48a0-91f8-ac97c93d4c53", - "start": { - "$date": "2021-10-25T12:37:00.000Z" - }, - "end": { - "$date": "2021-10-25T12:57:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "616812af-9a44-47ea-9e83-bf1f38979d3d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T13:01:03.000Z" - }, - "end": { - "$date": "2021-10-25T13:14:30.000Z" - }, - "events": [ - { - "uuid": "467a3880-7e3b-47d7-92e6-3f80010ede91", - "start": { - "$date": "2021-10-25T13:01:03.000Z" - }, - "end": { - "$date": "2021-10-25T13:14:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bdd178d-942c-48f5-b9d0-d675281b0161", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T13:16:45.000Z" - }, - "end": { - "$date": "2021-10-25T13:36:27.000Z" - }, - "events": [ - { - "uuid": "ee13a1d9-ad6f-4df8-b97c-3743755ae6d7", - "start": { - "$date": "2021-10-25T13:16:45.000Z" - }, - "end": { - "$date": "2021-10-25T13:36:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3ce4ea0-2941-4af5-805f-89e9221bcc4c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T13:38:37.000Z" - }, - "end": { - "$date": "2021-10-25T14:00:25.000Z" - }, - "events": [ - { - "uuid": "e8109aea-9cd4-4267-8408-9bec33af0661", - "start": { - "$date": "2021-10-25T13:38:37.000Z" - }, - "end": { - "$date": "2021-10-25T14:00:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36d4c935-8620-4ae8-b8ac-63d12f19ec8e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T14:03:01.000Z" - }, - "end": { - "$date": "2021-10-25T14:18:38.000Z" - }, - "events": [ - { - "uuid": "eb566742-1240-4fbc-acc5-cd614a2f5d39", - "start": { - "$date": "2021-10-25T14:03:01.000Z" - }, - "end": { - "$date": "2021-10-25T14:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d5a82db-2da9-410f-8338-2c687204d3a1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T14:22:28.000Z" - }, - "end": { - "$date": "2021-10-25T14:49:07.000Z" - }, - "events": [ - { - "uuid": "dd0ac33a-99fb-42e6-a46c-f5683db35533", - "start": { - "$date": "2021-10-25T14:22:28.000Z" - }, - "end": { - "$date": "2021-10-25T14:49:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4107dd7-2d7e-4400-a719-8694aa19ffd9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T14:50:57.000Z" - }, - "end": { - "$date": "2021-10-25T15:17:28.000Z" - }, - "events": [ - { - "uuid": "5236b0fe-db10-4fcc-aaa3-6198156109c5", - "start": { - "$date": "2021-10-25T14:50:57.000Z" - }, - "end": { - "$date": "2021-10-25T15:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "536a2543-b115-4caf-86f7-55dfeeb93fca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T15:20:16.000Z" - }, - "end": { - "$date": "2021-10-25T15:33:12.000Z" - }, - "events": [ - { - "uuid": "c59cdddc-2682-4959-b72c-a7d2a514e0be", - "start": { - "$date": "2021-10-25T15:20:16.000Z" - }, - "end": { - "$date": "2021-10-25T15:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7a44a61-3824-4152-a2cc-d72e6360a405", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T15:36:08.000Z" - }, - "end": { - "$date": "2021-10-25T16:01:06.000Z" - }, - "events": [ - { - "uuid": "ce916522-302a-442b-9baf-c4ebce925d67", - "start": { - "$date": "2021-10-25T15:36:08.000Z" - }, - "end": { - "$date": "2021-10-25T16:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6938d318-8271-419a-b722-bb51c2d92f11", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T16:03:26.000Z" - }, - "end": { - "$date": "2021-10-25T16:24:49.000Z" - }, - "events": [ - { - "uuid": "0c09c081-ae8c-4bdd-b8cd-0a9f5504961a", - "start": { - "$date": "2021-10-25T16:03:26.000Z" - }, - "end": { - "$date": "2021-10-25T16:24:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8dcb6f9-19b4-4156-bf98-e47a108d2a6b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T16:28:04.000Z" - }, - "end": { - "$date": "2021-10-25T16:43:59.000Z" - }, - "events": [ - { - "uuid": "671fbc2f-f02a-40e2-af91-4e96e49a92c2", - "start": { - "$date": "2021-10-25T16:28:04.000Z" - }, - "end": { - "$date": "2021-10-25T16:43:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cac7c7c-d535-4d89-bc35-14203645212d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T16:45:37.000Z" - }, - "end": { - "$date": "2021-10-25T17:09:40.000Z" - }, - "events": [ - { - "uuid": "8f8f236a-654d-480e-8827-af8098abdbd9", - "start": { - "$date": "2021-10-25T16:45:37.000Z" - }, - "end": { - "$date": "2021-10-25T17:09:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d328057a-cfcf-40c5-b197-f8a313913799", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-25T17:14:56.000Z" - }, - "end": { - "$date": "2021-10-25T17:33:08.000Z" - }, - "events": [ - { - "uuid": "c2213860-f5b2-4737-b496-ee68d8398f35", - "start": { - "$date": "2021-10-25T17:14:56.000Z" - }, - "end": { - "$date": "2021-10-25T17:33:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8520a52f-6cfd-4c65-9219-01d063baa4ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-25T18:49:48.000Z" - }, - "end": { - "$date": "2021-10-25T19:04:07.000Z" - }, - "events": [ - { - "uuid": "c7b4aa4c-8e12-44ab-88df-59e3c7da7b13", - "start": { - "$date": "2021-10-25T18:49:48.000Z" - }, - "end": { - "$date": "2021-10-25T19:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "f0648db3-1f4a-442d-8bf9-7bc8be980940", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-25T20:40:18.000Z" - }, - "end": { - "$date": "2021-10-25T21:18:59.000Z" - }, - "events": [ - { - "uuid": "490f1c47-5c8b-4cdc-9d97-3fa2322d9713", - "start": { - "$date": "2021-10-25T20:40:18.000Z" - }, - "end": { - "$date": "2021-10-25T21:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "37f1d416-eb98-4de2-8633-2b21c3c2826f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-25T21:16:41.000Z" - }, - "end": { - "$date": "2021-10-25T22:37:27.000Z" - }, - "events": [ - { - "uuid": "3f544fad-0340-4a7e-bc0c-b278c48f2154", - "start": { - "$date": "2021-10-25T21:16:41.000Z" - }, - "end": { - "$date": "2021-10-25T22:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "5286208a-d9e3-4326-aa0f-1e702bbc0dc4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-25T23:52:02.000Z" - }, - "end": { - "$date": "2021-10-26T01:45:01.000Z" - }, - "events": [ - { - "uuid": "57ff4c6e-4574-426e-ac3e-bed4b370ab27", - "start": { - "$date": "2021-10-25T23:52:02.000Z" - }, - "end": { - "$date": "2021-10-26T01:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3ff68561-26a6-47f1-93bf-3e7386aeae9d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-25T23:53:40.000Z" - }, - "end": { - "$date": "2021-10-26T00:51:23.000Z" - }, - "events": [ - { - "uuid": "1bb4c3cc-00ce-479d-84ba-e902be175c70", - "start": { - "$date": "2021-10-25T23:53:40.000Z" - }, - "end": { - "$date": "2021-10-26T00:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba52b880-364b-48f9-9b77-7b1e43ca85e1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-26T00:20:24.000Z" - }, - "end": { - "$date": "2021-10-26T03:29:49.000Z" - }, - "events": [ - { - "uuid": "481559a4-1281-4d0b-99b2-df13fbb7f64b", - "start": { - "$date": "2021-10-26T00:20:24.000Z" - }, - "end": { - "$date": "2021-10-26T03:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c5db14d7-1c05-48cb-b28c-462f80bf3519", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T00:21:06.000Z" - }, - "end": { - "$date": "2021-10-26T00:39:41.000Z" - }, - "events": [ - { - "uuid": "1a59978a-d28e-4fc2-872f-055274d0fd4f", - "start": { - "$date": "2021-10-26T00:21:06.000Z" - }, - "end": { - "$date": "2021-10-26T00:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "626a749b-4f7c-41fe-b1f8-d6652c067d2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T00:39:47.000Z" - }, - "end": { - "$date": "2021-10-26T03:48:04.000Z" - }, - "events": [ - { - "uuid": "7224ec9f-c28a-4cfb-b934-4be4e0281272", - "start": { - "$date": "2021-10-26T00:39:47.000Z" - }, - "end": { - "$date": "2021-10-26T03:48:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "90e1549d-6d52-4041-9fa9-c4a6daaca49a", - "uuid": "c851391f-be59-4a08-8e7f-e37a7b03d9a9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-26T00:53:48.000Z" - }, - "end": { - "$date": "2021-10-26T03:12:36.000Z" - }, - "events": [ - { - "uuid": "647b4644-ce2f-4f96-a632-0898cb6b06f5", - "start": { - "$date": "2021-10-26T00:53:48.000Z" - }, - "end": { - "$date": "2021-10-26T03:12:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9197a7d0-c708-48ea-b6cc-76ed0192b521", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-26T01:48:57.000Z" - }, - "end": { - "$date": "2021-10-26T06:20:00.000Z" - }, - "events": [ - { - "uuid": "409ae9b3-af8b-4023-a236-7ecfc38093a0", - "start": { - "$date": "2021-10-26T01:48:57.000Z" - }, - "end": { - "$date": "2021-10-26T06:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f744a80e-43ef-4766-b280-6a627787da47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-26T02:07:57.000Z" - }, - "end": { - "$date": "2021-10-26T02:19:51.000Z" - }, - "events": [ - { - "uuid": "9763f335-ea30-4ffc-833f-c086fc75f074", - "start": { - "$date": "2021-10-26T02:07:57.000Z" - }, - "end": { - "$date": "2021-10-26T02:19:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33279eb1-9918-4497-8115-cdd7bf8c4fcb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-26T02:26:02.000Z" - }, - "end": { - "$date": "2021-10-26T02:46:12.000Z" - }, - "events": [ - { - "uuid": "c245517a-f260-4df0-ac88-7ec39bfb638d", - "start": { - "$date": "2021-10-26T02:26:02.000Z" - }, - "end": { - "$date": "2021-10-26T02:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "0adda6c6-c297-47a8-8013-be27d8f89e18", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-26T02:37:49.000Z" - }, - "end": { - "$date": "2021-10-26T02:42:41.000Z" - }, - "events": [ - { - "uuid": "c2098056-a6f2-4f0a-9a73-6d5fb5600bca", - "start": { - "$date": "2021-10-26T02:37:49.000Z" - }, - "end": { - "$date": "2021-10-26T02:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "9ba84769-4a0e-479a-8c3f-7574aa96696f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-26T02:44:30.000Z" - }, - "end": { - "$date": "2021-10-26T03:13:05.000Z" - }, - "events": [ - { - "uuid": "b90e4d7c-162a-4786-b9cb-ba986e3121fe", - "start": { - "$date": "2021-10-26T02:44:30.000Z" - }, - "end": { - "$date": "2021-10-26T03:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "529b2298-b7b5-4d82-b9d8-abbf8c6c3460", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T03:02:00.000Z" - }, - "end": { - "$date": "2021-10-26T03:23:58.000Z" - }, - "events": [ - { - "uuid": "b8888bfd-1205-4830-aec6-16ac4a1c394b", - "start": { - "$date": "2021-10-26T03:02:00.000Z" - }, - "end": { - "$date": "2021-10-26T03:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "df1fdf69-e891-47b6-938d-aadc9f95e589", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-26T03:12:26.000Z" - }, - "end": { - "$date": "2021-10-26T04:24:46.000Z" - }, - "events": [ - { - "uuid": "bea26aa5-d17b-48fa-ba07-e4d045662609", - "start": { - "$date": "2021-10-26T03:12:26.000Z" - }, - "end": { - "$date": "2021-10-26T04:20:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "87600056-7ec3-48a4-bdd3-71e5edb5cd7d", - "start": { - "$date": "2021-10-26T04:20:26.000Z" - }, - "end": { - "$date": "2021-10-26T04:23:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5cfdfc82-b423-419e-98ca-d625ff86f637", - "start": { - "$date": "2021-10-26T04:23:26.000Z" - }, - "end": { - "$date": "2021-10-26T04:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "20ae9cdf-694a-4a3e-9d78-e04048ca9434", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-26T03:14:06.000Z" - }, - "end": { - "$date": "2021-10-26T03:32:37.000Z" - }, - "events": [ - { - "uuid": "35dc8a31-dd5e-4ec3-bd88-7ac09fa49aec", - "start": { - "$date": "2021-10-26T03:14:06.000Z" - }, - "end": { - "$date": "2021-10-26T03:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10e23945-e016-48a7-ac03-7a99869776fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-26T03:30:17.000Z" - }, - "end": { - "$date": "2021-10-26T03:56:42.000Z" - }, - "events": [ - { - "uuid": "84496d20-7deb-46f4-bf30-b645a643bccd", - "start": { - "$date": "2021-10-26T03:30:17.000Z" - }, - "end": { - "$date": "2021-10-26T03:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "41b08ffc-42e9-4f12-8c24-a9c5b59c2ac0", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-26T03:28:16.000Z" - }, - "end": { - "$date": "2021-10-26T05:13:15.000Z" - }, - "events": [ - { - "uuid": "5ab19f41-5d86-4202-ab3b-64c00efff459", - "start": { - "$date": "2021-10-26T03:28:16.000Z" - }, - "end": { - "$date": "2021-10-26T05:13:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ac74b69b-c5f9-4311-ad3f-3fabdd36537a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T03:48:09.000Z" - }, - "end": { - "$date": "2021-10-26T04:10:52.000Z" - }, - "events": [ - { - "uuid": "e5b96f7e-bc62-45ff-9719-ac85101b9034", - "start": { - "$date": "2021-10-26T03:48:09.000Z" - }, - "end": { - "$date": "2021-10-26T03:59:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1925d13d-0a72-4a71-8c03-11f1d1b9902b", - "start": { - "$date": "2021-10-26T03:59:09.000Z" - }, - "end": { - "$date": "2021-10-26T04:03:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "17842e92-fd12-464d-8f29-6520f36de9e0", - "start": { - "$date": "2021-10-26T04:03:09.000Z" - }, - "end": { - "$date": "2021-10-26T04:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "581350f4-1ad5-4fff-af2b-46d10796c70b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-26T03:57:12.000Z" - }, - "end": { - "$date": "2021-10-26T04:17:56.000Z" - }, - "events": [ - { - "uuid": "11b2542f-d260-4ee0-875d-9e3aad71dfa2", - "start": { - "$date": "2021-10-26T03:57:12.000Z" - }, - "end": { - "$date": "2021-10-26T04:17:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3d1da759-7162-44ab-bf9a-9748b094044a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T04:11:05.000Z" - }, - "end": { - "$date": "2021-10-26T05:13:48.000Z" - }, - "events": [ - { - "uuid": "5fcadcb3-2839-4cd2-92e9-a4e6a976e13d", - "start": { - "$date": "2021-10-26T04:11:05.000Z" - }, - "end": { - "$date": "2021-10-26T05:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49ab3f56-79b9-4314-a7fe-4ca0044127f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-26T05:26:19.000Z" - }, - "end": { - "$date": "2021-10-26T05:55:26.000Z" - }, - "events": [ - { - "uuid": "c4a40902-aae4-48f2-b3fd-616495c6885c", - "start": { - "$date": "2021-10-26T05:26:19.000Z" - }, - "end": { - "$date": "2021-10-26T05:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be40d2b8-c02f-476a-be4b-5219f8718302", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-26T06:04:43.000Z" - }, - "end": { - "$date": "2021-10-26T06:29:25.000Z" - }, - "events": [ - { - "uuid": "792ef987-1be7-4991-8e06-7d3d5970c951", - "start": { - "$date": "2021-10-26T06:04:43.000Z" - }, - "end": { - "$date": "2021-10-26T06:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "6b42dcf6-9c9f-48fc-b107-57b34b3dc9fe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T08:20:53.000Z" - }, - "end": { - "$date": "2021-10-26T13:21:40.000Z" - }, - "events": [ - { - "uuid": "f745e6b5-e769-417e-9166-bf3b09809455", - "start": { - "$date": "2021-10-26T08:20:53.000Z" - }, - "end": { - "$date": "2021-10-26T13:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81dd603f-979d-4b6b-bce1-a8ee67104acb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T13:59:15.000Z" - }, - "end": { - "$date": "2021-10-26T14:13:55.000Z" - }, - "events": [ - { - "uuid": "2c7ae263-b76c-4979-97f9-ede55bd8ad65", - "start": { - "$date": "2021-10-26T13:59:15.000Z" - }, - "end": { - "$date": "2021-10-26T14:17:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d115a502-83a3-4ef6-bde5-d7b6b4320853", - "start": { - "$date": "2021-10-26T14:17:15.000Z" - }, - "end": { - "$date": "2021-10-26T14:35:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3add149b-00ce-4fe7-b201-e2cc504c6ecb", - "start": { - "$date": "2021-10-26T14:35:15.000Z" - }, - "end": { - "$date": "2021-10-26T14:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14955985-ed46-49ec-a0c3-16dbda4e82da", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T14:18:50.000Z" - }, - "end": { - "$date": "2021-10-26T14:44:24.000Z" - }, - "events": [ - { - "uuid": "cb6b9041-4467-436e-8658-7c5ae8c42c5e", - "start": { - "$date": "2021-10-26T14:18:50.000Z" - }, - "end": { - "$date": "2021-10-26T14:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cba0508-df9f-4b07-bd3b-459c0c8e33a0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T14:48:29.000Z" - }, - "end": { - "$date": "2021-10-26T15:13:48.000Z" - }, - "events": [ - { - "uuid": "3f86e42f-24d6-40bb-a8e3-d5a20a3b8eec", - "start": { - "$date": "2021-10-26T14:48:29.000Z" - }, - "end": { - "$date": "2021-10-26T15:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d60091b-4e0d-4e4a-a82d-6e8aae33d228", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T15:16:03.000Z" - }, - "end": { - "$date": "2021-10-26T15:39:01.000Z" - }, - "events": [ - { - "uuid": "dc41ff8c-6ed4-4279-8471-e4977b2b19fc", - "start": { - "$date": "2021-10-26T15:16:03.000Z" - }, - "end": { - "$date": "2021-10-26T15:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0bbf7a0-0c11-45e8-8682-ea288093df30", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T15:41:06.000Z" - }, - "end": { - "$date": "2021-10-26T16:00:37.000Z" - }, - "events": [ - { - "uuid": "9e1f5218-53d5-43b0-bb03-5125872aaccf", - "start": { - "$date": "2021-10-26T15:41:06.000Z" - }, - "end": { - "$date": "2021-10-26T16:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2cf2947-8c61-428c-8049-4b191860f430", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T16:03:34.000Z" - }, - "end": { - "$date": "2021-10-26T16:31:22.000Z" - }, - "events": [ - { - "uuid": "51c433ec-95c3-45dd-abec-798ec52ca281", - "start": { - "$date": "2021-10-26T16:03:34.000Z" - }, - "end": { - "$date": "2021-10-26T16:31:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6994a7be-d925-4b26-a7da-cf22367e92e7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T16:33:22.000Z" - }, - "end": { - "$date": "2021-10-26T16:50:20.000Z" - }, - "events": [ - { - "uuid": "fa6dfa8a-e7f5-4ce0-b2f0-a45a81fa931f", - "start": { - "$date": "2021-10-26T16:33:22.000Z" - }, - "end": { - "$date": "2021-10-26T16:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89010508-4b4a-4618-a4d2-1e75ccf812bf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T16:53:50.000Z" - }, - "end": { - "$date": "2021-10-26T17:10:27.000Z" - }, - "events": [ - { - "uuid": "ad137d9e-42fe-4bc5-8e9e-8b3cb5d55861", - "start": { - "$date": "2021-10-26T16:53:50.000Z" - }, - "end": { - "$date": "2021-10-26T17:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f931cee8-a6d9-46d4-b899-12d7d5a654e6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T17:13:12.000Z" - }, - "end": { - "$date": "2021-10-26T17:32:15.000Z" - }, - "events": [ - { - "uuid": "2b42dd6c-7c39-49b8-bc29-7114419993da", - "start": { - "$date": "2021-10-26T17:13:12.000Z" - }, - "end": { - "$date": "2021-10-26T17:32:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f05d2691-df27-4a77-b5cf-6eefc9adf06b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T17:34:55.000Z" - }, - "end": { - "$date": "2021-10-26T17:51:03.000Z" - }, - "events": [ - { - "uuid": "672fecda-487b-496b-8e2b-607b9c74c1ae", - "start": { - "$date": "2021-10-26T17:34:55.000Z" - }, - "end": { - "$date": "2021-10-26T17:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e769e9f5-3a01-4ff8-9e7c-c45c73063431", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-26T17:53:12.000Z" - }, - "end": { - "$date": "2021-10-26T18:10:00.000Z" - }, - "events": [ - { - "uuid": "ca64bba3-e111-4723-9016-af800e20f4fb", - "start": { - "$date": "2021-10-26T17:53:12.000Z" - }, - "end": { - "$date": "2021-10-26T18:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1a43d092-7700-4c16-bc46-291d95c63277", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-26T18:02:51.000Z" - }, - "end": { - "$date": "2021-10-26T19:23:47.000Z" - }, - "events": [ - { - "uuid": "3d83ad0b-3bf5-4bfb-92be-fa537f2b4409", - "start": { - "$date": "2021-10-26T18:02:51.000Z" - }, - "end": { - "$date": "2021-10-26T19:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8da8bb88-0759-4b8f-841a-3fa6deb0e204", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T21:55:24.000Z" - }, - "end": { - "$date": "2021-10-26T22:09:04.000Z" - }, - "events": [ - { - "uuid": "8f40cb0d-4714-4c14-a91e-b9e0b632880a", - "start": { - "$date": "2021-10-26T21:55:24.000Z" - }, - "end": { - "$date": "2021-10-26T22:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "ddfc844a-9bae-4e7a-b59d-bbbe1332c66c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-26T22:01:04.000Z" - }, - "end": { - "$date": "2021-10-26T22:31:41.000Z" - }, - "events": [ - { - "uuid": "f06a64f7-0c02-43df-89c9-bc25c55ee66e", - "start": { - "$date": "2021-10-26T22:01:04.000Z" - }, - "end": { - "$date": "2021-10-26T22:31:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "b773f466-b07a-4358-8ee4-fe4f2132fb77", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-26T22:40:03.000Z" - }, - "end": { - "$date": "2021-10-26T22:48:42.000Z" - }, - "events": [ - { - "uuid": "0fa3c50b-abc7-4a2d-8890-27930c5de3a3", - "start": { - "$date": "2021-10-26T22:40:03.000Z" - }, - "end": { - "$date": "2021-10-26T22:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1c94314-120a-46f4-9b4e-0eb3eb023657", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-26T22:50:05.000Z" - }, - "end": { - "$date": "2021-10-26T23:31:20.000Z" - }, - "events": [ - { - "uuid": "c1ef5563-dbe8-4d71-a373-c441244663d8", - "start": { - "$date": "2021-10-26T22:50:05.000Z" - }, - "end": { - "$date": "2021-10-26T23:31:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "909c0843-9ad5-4176-86e4-9a110b695671", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T22:45:00.000Z" - }, - "end": { - "$date": "2021-10-26T23:21:51.000Z" - }, - "events": [ - { - "uuid": "3e3ed424-eda3-4544-9608-70155fad7471", - "start": { - "$date": "2021-10-26T22:45:00.000Z" - }, - "end": { - "$date": "2021-10-26T23:21:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cc2c070-559f-4796-bfaa-16a76bdb81b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-26T23:30:46.000Z" - }, - "end": { - "$date": "2021-10-26T23:52:17.000Z" - }, - "events": [ - { - "uuid": "f6d9a675-ee41-4c58-80f3-34d9b2724888", - "start": { - "$date": "2021-10-26T23:30:46.000Z" - }, - "end": { - "$date": "2021-10-26T23:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "27539657-f5e6-489e-b412-6b4045cc4239", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T23:32:32.000Z" - }, - "end": { - "$date": "2021-10-26T23:46:18.000Z" - }, - "events": [ - { - "uuid": "3147d39f-b94b-409e-87ad-a44d91536c14", - "start": { - "$date": "2021-10-26T23:32:32.000Z" - }, - "end": { - "$date": "2021-10-26T23:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d48d11d4-003f-4f36-b189-5929cda794a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-26T23:46:58.000Z" - }, - "end": { - "$date": "2021-10-27T02:01:04.000Z" - }, - "events": [ - { - "uuid": "102484ad-8adb-435b-b42a-4e2edb8f5ff7", - "start": { - "$date": "2021-10-26T23:46:58.000Z" - }, - "end": { - "$date": "2021-10-27T02:01:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b0bc934-277a-4d80-bcff-ccd203d424ff", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-27T00:11:46.000Z" - }, - "end": { - "$date": "2021-10-27T00:47:06.000Z" - }, - "events": [ - { - "uuid": "60f5dbac-2c32-4b0f-aa02-39f7fe35a5cc", - "start": { - "$date": "2021-10-27T00:11:46.000Z" - }, - "end": { - "$date": "2021-10-27T00:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c10f1a00-df02-4672-825a-2c7c64baca1f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-27T00:12:21.000Z" - }, - "end": { - "$date": "2021-10-27T04:46:59.000Z" - }, - "events": [ - { - "uuid": "8d568c3b-45d8-45a5-bfd1-2a36afbda034", - "start": { - "$date": "2021-10-27T00:12:21.000Z" - }, - "end": { - "$date": "2021-10-27T04:46:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "2d426331-961a-46fe-a45d-bd7c8e6361a1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-27T00:21:10.000Z" - }, - "end": { - "$date": "2021-10-27T01:30:42.000Z" - }, - "events": [ - { - "uuid": "ee771f85-28b9-41ab-a973-bdd79bce0e38", - "start": { - "$date": "2021-10-27T00:21:10.000Z" - }, - "end": { - "$date": "2021-10-27T01:30:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "4054cb77-ca0b-4f65-a8e3-a2702e362c01", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-27T01:14:34.000Z" - }, - "end": { - "$date": "2021-10-27T02:22:07.000Z" - }, - "events": [ - { - "uuid": "1be73e92-0431-4477-802e-e1e3a1457533", - "start": { - "$date": "2021-10-27T01:14:34.000Z" - }, - "end": { - "$date": "2021-10-27T02:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0a3bd64c-6c68-42d7-be87-c46d00c2a845", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-27T01:23:03.000Z" - }, - "end": { - "$date": "2021-10-27T04:08:42.000Z" - }, - "events": [ - { - "uuid": "657c5591-d9c1-49f1-871c-c18154a2c94a", - "start": { - "$date": "2021-10-27T01:23:03.000Z" - }, - "end": { - "$date": "2021-10-27T04:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31926d5e-0d29-4fc4-b0eb-85c12e78abe5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-27T01:39:16.000Z" - }, - "end": { - "$date": "2021-10-27T02:08:41.000Z" - }, - "events": [ - { - "uuid": "54c78c28-4358-43e7-8ef8-3ac7f203cc62", - "start": { - "$date": "2021-10-27T01:39:16.000Z" - }, - "end": { - "$date": "2021-10-27T02:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "edb11a8b-df59-4d72-9c03-e4503611efe0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-27T02:02:14.000Z" - }, - "end": { - "$date": "2021-10-27T05:15:24.000Z" - }, - "events": [ - { - "uuid": "58a8ca2f-5f64-4f7d-abc8-65fb29def132", - "start": { - "$date": "2021-10-27T02:02:14.000Z" - }, - "end": { - "$date": "2021-10-27T04:59:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fcee4d08-90c9-4fea-a7a9-ff24e8558775", - "start": { - "$date": "2021-10-27T04:59:14.000Z" - }, - "end": { - "$date": "2021-10-27T05:12:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "820e00fe-d383-4427-8ad9-45d0b0d1b7ce", - "start": { - "$date": "2021-10-27T05:12:14.000Z" - }, - "end": { - "$date": "2021-10-27T05:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "97a8808f-2b04-4693-aafd-3f6696b88618", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-27T02:05:51.000Z" - }, - "end": { - "$date": "2021-10-27T03:29:37.000Z" - }, - "events": [ - { - "uuid": "9f3ec0e0-a22d-4057-9bc4-40766f94f2d9", - "start": { - "$date": "2021-10-27T02:05:51.000Z" - }, - "end": { - "$date": "2021-10-27T03:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "065cb2c7-ab29-4e32-8d3b-342854009bd4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-27T02:06:12.000Z" - }, - "end": { - "$date": "2021-10-27T05:12:47.000Z" - }, - "events": [ - { - "uuid": "c7f6adfe-5068-4486-921e-ef204f3a15cb", - "start": { - "$date": "2021-10-27T02:06:12.000Z" - }, - "end": { - "$date": "2021-10-27T05:12:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "30e2f512-71d7-4181-a9fd-813f62d8fa98", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-27T02:08:51.000Z" - }, - "end": { - "$date": "2021-10-27T03:29:43.000Z" - }, - "events": [ - { - "uuid": "dec68579-5fac-489d-be55-c3a9447e7f8b", - "start": { - "$date": "2021-10-27T02:08:51.000Z" - }, - "end": { - "$date": "2021-10-27T03:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76102989-170c-49a2-b218-27cad8845bdf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-27T02:16:22.000Z" - }, - "end": { - "$date": "2021-10-27T02:52:11.000Z" - }, - "events": [ - { - "uuid": "4f829776-0a58-4668-b94a-65011bf94d8d", - "start": { - "$date": "2021-10-27T02:16:22.000Z" - }, - "end": { - "$date": "2021-10-27T02:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "d2f41d62-fec4-460f-af86-8d2ab2bc0fbf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-27T02:23:48.000Z" - }, - "end": { - "$date": "2021-10-27T03:24:21.000Z" - }, - "events": [ - { - "uuid": "99bd9deb-7421-4609-b5f7-698b611721c6", - "start": { - "$date": "2021-10-27T02:23:48.000Z" - }, - "end": { - "$date": "2021-10-27T03:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4dd54b9-0a3e-4bc7-ae29-2b3e32de01fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-27T02:55:32.000Z" - }, - "end": { - "$date": "2021-10-27T15:14:22.000Z" - }, - "events": [ - { - "uuid": "6951aa1d-2185-47fb-a60a-cdb805d29117", - "start": { - "$date": "2021-10-27T02:55:32.000Z" - }, - "end": { - "$date": "2021-10-27T03:42:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d5f9686-df57-4982-8cfa-3b80599c7adc", - "start": { - "$date": "2021-10-27T03:42:32.000Z" - }, - "end": { - "$date": "2021-10-27T14:56:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a9ddcfa0-fd3e-4dfa-a527-e7a49b0173e7", - "start": { - "$date": "2021-10-27T14:56:32.000Z" - }, - "end": { - "$date": "2021-10-27T15:00:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc103b27-560b-4ac8-ae6e-64e7c6e90b2f", - "start": { - "$date": "2021-10-27T15:00:32.000Z" - }, - "end": { - "$date": "2021-10-27T15:15:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f447ec1b-6bff-48fd-a8b2-892fa7b70822", - "start": { - "$date": "2021-10-27T15:15:32.000Z" - }, - "end": { - "$date": "2021-10-27T15:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8774862-86d5-440c-98e7-8d908f021e4a", - "uuid": "80355493-5b19-4e01-bb58-0369ce16ff69", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-27T03:33:56.000Z" - }, - "end": { - "$date": "2021-10-27T06:08:37.000Z" - }, - "events": [ - { - "uuid": "0b535b00-ee24-41a0-b927-4d684e25accf", - "start": { - "$date": "2021-10-27T03:33:56.000Z" - }, - "end": { - "$date": "2021-10-27T06:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bce7a7ac-6fff-4c44-9bf7-9babde884e5b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-27T03:51:20.000Z" - }, - "end": { - "$date": "2021-10-27T05:12:39.000Z" - }, - "events": [ - { - "uuid": "2920c046-8fd9-46e4-b97e-574f189f6ca2", - "start": { - "$date": "2021-10-27T03:51:20.000Z" - }, - "end": { - "$date": "2021-10-27T05:12:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "534d97c3-60e1-45fb-93c8-074bccd62026", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2021-10-27T04:04:15.000Z" - }, - "end": { - "$date": "2021-10-27T05:44:50.000Z" - }, - "events": [ - { - "uuid": "d0091cc0-9aa3-4d92-98d6-b1277abfefc3", - "start": { - "$date": "2021-10-27T04:04:15.000Z" - }, - "end": { - "$date": "2021-10-27T05:44:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7afb481c-c795-4bdf-b71b-5219562af4b6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-27T05:01:26.000Z" - }, - "end": { - "$date": "2021-10-27T05:41:19.000Z" - }, - "events": [ - { - "uuid": "7771a53b-072d-4075-8342-11ef0c1640d6", - "start": { - "$date": "2021-10-27T05:01:26.000Z" - }, - "end": { - "$date": "2021-10-27T05:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "df70a956-8a48-4761-ba53-ebebd72eb55d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-27T05:31:32.000Z" - }, - "end": { - "$date": "2021-10-27T06:03:04.000Z" - }, - "events": [ - { - "uuid": "5c013be4-14ac-4e1f-8ffc-532e8dd5a25d", - "start": { - "$date": "2021-10-27T05:31:32.000Z" - }, - "end": { - "$date": "2021-10-27T06:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bb717fa-a48b-4791-8228-e647000b9c23", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-27T05:53:12.000Z" - }, - "end": { - "$date": "2021-10-27T06:16:05.000Z" - }, - "events": [ - { - "uuid": "d7b25d56-aab0-448b-a7ec-2d130883b1cd", - "start": { - "$date": "2021-10-27T05:53:12.000Z" - }, - "end": { - "$date": "2021-10-27T06:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8774862-86d5-440c-98e7-8d908f021e4a", - "uuid": "09ded406-1a3d-49b9-a1c8-29e293ebe554", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-27T06:09:12.000Z" - }, - "end": { - "$date": "2021-10-27T06:20:22.000Z" - }, - "events": [ - { - "uuid": "f2b238c5-65fc-4996-bba9-8c5f70b21c03", - "start": { - "$date": "2021-10-27T06:09:12.000Z" - }, - "end": { - "$date": "2021-10-27T06:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1d45682-d952-4cd7-8613-dda1347df497", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-27T06:27:12.000Z" - }, - "end": { - "$date": "2021-10-27T07:00:30.000Z" - }, - "events": [ - { - "uuid": "dc3b30c6-a35d-4294-8e03-bd49a4eb54a5", - "start": { - "$date": "2021-10-27T06:27:12.000Z" - }, - "end": { - "$date": "2021-10-27T07:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13a10843-a04b-4e45-9c5b-aa0289742730", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T06:27:49.000Z" - }, - "end": { - "$date": "2021-10-27T06:41:56.000Z" - }, - "events": [ - { - "uuid": "20f4f059-4f23-44fd-8464-094db4338efa", - "start": { - "$date": "2021-10-27T06:27:49.000Z" - }, - "end": { - "$date": "2021-10-27T06:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78fdc0d7-b1fa-487b-8fd9-3e9198ee99a3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T06:43:51.000Z" - }, - "end": { - "$date": "2021-10-27T07:02:13.000Z" - }, - "events": [ - { - "uuid": "983167ae-c567-4a00-8721-ddbac55e2a54", - "start": { - "$date": "2021-10-27T06:43:51.000Z" - }, - "end": { - "$date": "2021-10-27T07:02:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f751a702-a1ed-43a8-8c59-35b4c521c582", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T07:06:29.000Z" - }, - "end": { - "$date": "2021-10-27T07:25:07.000Z" - }, - "events": [ - { - "uuid": "4df110a5-257d-48d8-b24e-b64d28d08405", - "start": { - "$date": "2021-10-27T07:06:29.000Z" - }, - "end": { - "$date": "2021-10-27T07:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6b0db2d-57f8-46c5-b937-a30b6e3946ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T07:29:17.000Z" - }, - "end": { - "$date": "2021-10-27T07:56:30.000Z" - }, - "events": [ - { - "uuid": "5ca141f8-272a-466e-b482-b5c397e2a0d9", - "start": { - "$date": "2021-10-27T07:29:17.000Z" - }, - "end": { - "$date": "2021-10-27T07:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2fcbff7b-684e-4f7f-9f83-2da51e63471b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T07:59:25.000Z" - }, - "end": { - "$date": "2021-10-27T08:21:48.000Z" - }, - "events": [ - { - "uuid": "1917d679-7b97-4b97-9012-d49c51fcabc3", - "start": { - "$date": "2021-10-27T07:59:25.000Z" - }, - "end": { - "$date": "2021-10-27T08:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5093c26e-ffc4-4976-9ca8-ce6e5b44f7d0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T08:23:58.000Z" - }, - "end": { - "$date": "2021-10-27T08:42:16.000Z" - }, - "events": [ - { - "uuid": "23a4318c-13b2-4e55-a69a-db210ebd3547", - "start": { - "$date": "2021-10-27T08:23:58.000Z" - }, - "end": { - "$date": "2021-10-27T08:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f5316d3-3b7e-47c2-a367-297eaf4e92c2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T08:44:16.000Z" - }, - "end": { - "$date": "2021-10-27T09:08:07.000Z" - }, - "events": [ - { - "uuid": "43f5d7b4-0735-47cd-9fb4-4b6250dc7e3d", - "start": { - "$date": "2021-10-27T08:44:16.000Z" - }, - "end": { - "$date": "2021-10-27T09:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7593e7a4-2c95-45f7-8b3d-0d0f96305c13", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T09:10:59.000Z" - }, - "end": { - "$date": "2021-10-27T09:35:07.000Z" - }, - "events": [ - { - "uuid": "68f860be-2e96-4b97-a586-9602af10e7e9", - "start": { - "$date": "2021-10-27T09:10:59.000Z" - }, - "end": { - "$date": "2021-10-27T09:35:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ede27d5b-350d-4cf3-97c9-4763ca7cd284", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T09:38:08.000Z" - }, - "end": { - "$date": "2021-10-27T09:58:10.000Z" - }, - "events": [ - { - "uuid": "9baac77b-a201-496a-ac67-4131d9906ac1", - "start": { - "$date": "2021-10-27T09:38:08.000Z" - }, - "end": { - "$date": "2021-10-27T09:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7616f8eb-8b8e-4386-af5a-5ce5d184ce7f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T10:02:01.000Z" - }, - "end": { - "$date": "2021-10-27T10:27:44.000Z" - }, - "events": [ - { - "uuid": "6d801f33-9d37-465f-9deb-c32022dd405e", - "start": { - "$date": "2021-10-27T10:02:01.000Z" - }, - "end": { - "$date": "2021-10-27T10:27:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66387568-49fb-4276-aef4-d80b59e3a6ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T11:43:00.000Z" - }, - "end": { - "$date": "2021-10-27T11:58:35.000Z" - }, - "events": [ - { - "uuid": "3f05f772-a5ab-4501-840e-08dab1e300b8", - "start": { - "$date": "2021-10-27T11:43:00.000Z" - }, - "end": { - "$date": "2021-10-27T11:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c7cc4c8-fc04-4d91-838b-e796a0d3b7eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T12:02:05.000Z" - }, - "end": { - "$date": "2021-10-27T12:17:36.000Z" - }, - "events": [ - { - "uuid": "61e6d060-ea4c-4e28-82ad-57e78cfc8a7e", - "start": { - "$date": "2021-10-27T12:02:05.000Z" - }, - "end": { - "$date": "2021-10-27T12:17:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9ea5b0b-d639-4092-a4ff-abb15e69a257", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T12:20:51.000Z" - }, - "end": { - "$date": "2021-10-27T12:42:45.000Z" - }, - "events": [ - { - "uuid": "d97067ef-ed4f-426d-aa88-3dbbccbbc7de", - "start": { - "$date": "2021-10-27T12:20:51.000Z" - }, - "end": { - "$date": "2021-10-27T12:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08819198-534d-4cac-819b-f818a99d18a1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T12:45:01.000Z" - }, - "end": { - "$date": "2021-10-27T13:07:48.000Z" - }, - "events": [ - { - "uuid": "490dce23-d073-4f72-9db5-82f0f72157b9", - "start": { - "$date": "2021-10-27T12:45:01.000Z" - }, - "end": { - "$date": "2021-10-27T13:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fb25c69-4a79-4cee-8630-9457c209ab0f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T13:10:48.000Z" - }, - "end": { - "$date": "2021-10-27T13:31:40.000Z" - }, - "events": [ - { - "uuid": "41ab8589-d151-45e6-bc2f-41422fa1fb51", - "start": { - "$date": "2021-10-27T13:10:48.000Z" - }, - "end": { - "$date": "2021-10-27T13:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8163fcb1-cc23-43a6-b5c9-0046bf521a37", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T13:35:41.000Z" - }, - "end": { - "$date": "2021-10-27T13:51:43.000Z" - }, - "events": [ - { - "uuid": "1b1e192a-0b8a-44b2-a7b7-0bff8f92e2c6", - "start": { - "$date": "2021-10-27T13:35:41.000Z" - }, - "end": { - "$date": "2021-10-27T13:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75612b61-fd4f-4e30-8f34-819dd1c48ac0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T13:53:58.000Z" - }, - "end": { - "$date": "2021-10-27T14:21:17.000Z" - }, - "events": [ - { - "uuid": "3d5456b1-89b9-4207-840b-d6420b213ebf", - "start": { - "$date": "2021-10-27T13:53:58.000Z" - }, - "end": { - "$date": "2021-10-27T14:21:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc04dfac-364d-4654-bfe8-1b9d24a2ab4c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T14:25:22.000Z" - }, - "end": { - "$date": "2021-10-27T14:45:25.000Z" - }, - "events": [ - { - "uuid": "7f8358c8-3c07-4df5-bdc1-4b4d00b6988a", - "start": { - "$date": "2021-10-27T14:25:22.000Z" - }, - "end": { - "$date": "2021-10-27T14:45:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17ed7106-0398-42f1-a0d7-1a6a544ca241", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T14:47:30.000Z" - }, - "end": { - "$date": "2021-10-27T15:05:17.000Z" - }, - "events": [ - { - "uuid": "0b01abe2-2874-4a5a-89a2-f3058a9fb1bf", - "start": { - "$date": "2021-10-27T14:47:30.000Z" - }, - "end": { - "$date": "2021-10-27T15:05:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6e92eb9-e0a2-44b0-b1ee-bc4736f932dc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T15:08:38.000Z" - }, - "end": { - "$date": "2021-10-27T15:24:04.000Z" - }, - "events": [ - { - "uuid": "30a1e353-8c55-484c-85d8-7c6e56b4af9a", - "start": { - "$date": "2021-10-27T15:08:38.000Z" - }, - "end": { - "$date": "2021-10-27T15:24:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58007af9-35c1-484f-9095-28577c0cfc1a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T15:28:15.000Z" - }, - "end": { - "$date": "2021-10-27T15:38:42.000Z" - }, - "events": [ - { - "uuid": "b14d1ff9-4c6b-4995-891f-ae809d0a2790", - "start": { - "$date": "2021-10-27T15:28:15.000Z" - }, - "end": { - "$date": "2021-10-27T15:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ae499d2-888f-4574-a40e-fda0b528f47f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T15:41:12.000Z" - }, - "end": { - "$date": "2021-10-27T16:05:40.000Z" - }, - "events": [ - { - "uuid": "0b27c254-33e1-4a63-a306-d32cfe24672e", - "start": { - "$date": "2021-10-27T15:41:12.000Z" - }, - "end": { - "$date": "2021-10-27T16:05:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f796d67a-3c62-49be-b600-cf607f62c5db", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T16:08:00.000Z" - }, - "end": { - "$date": "2021-10-27T16:24:43.000Z" - }, - "events": [ - { - "uuid": "1ac7e763-9896-42b8-9152-4b560a524161", - "start": { - "$date": "2021-10-27T16:08:00.000Z" - }, - "end": { - "$date": "2021-10-27T16:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "d8199eab-7218-4c39-9384-a516254904ea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-27T16:20:49.000Z" - }, - "end": { - "$date": "2021-10-27T17:43:32.000Z" - }, - "events": [ - { - "uuid": "20022925-1520-4614-b8ef-ae2433dd3be4", - "start": { - "$date": "2021-10-27T16:20:49.000Z" - }, - "end": { - "$date": "2021-10-27T17:43:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4c46523-2e91-49a7-8ddb-4bddba469d78", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T16:26:48.000Z" - }, - "end": { - "$date": "2021-10-27T16:49:56.000Z" - }, - "events": [ - { - "uuid": "7969c403-6764-464b-bc55-797e93e94e5b", - "start": { - "$date": "2021-10-27T16:26:48.000Z" - }, - "end": { - "$date": "2021-10-27T16:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b574d7a9-6c71-4a6c-bfef-188d9dbe6e49", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T16:55:47.000Z" - }, - "end": { - "$date": "2021-10-27T17:14:39.000Z" - }, - "events": [ - { - "uuid": "6369c171-74d6-4804-bb28-52c96b39ac9b", - "start": { - "$date": "2021-10-27T16:55:47.000Z" - }, - "end": { - "$date": "2021-10-27T17:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8598181-9046-48c7-9600-7239ce711386", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T17:16:59.000Z" - }, - "end": { - "$date": "2021-10-27T17:51:14.000Z" - }, - "events": [ - { - "uuid": "d6507058-5154-4608-88fc-8a4e0dc05da4", - "start": { - "$date": "2021-10-27T17:16:59.000Z" - }, - "end": { - "$date": "2021-10-27T17:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74e466f4-5417-4e45-9c0c-5b46a151b285", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T17:53:24.000Z" - }, - "end": { - "$date": "2021-10-27T18:12:57.000Z" - }, - "events": [ - { - "uuid": "943202c1-9699-485a-bf26-4462e0ad6242", - "start": { - "$date": "2021-10-27T17:53:24.000Z" - }, - "end": { - "$date": "2021-10-27T18:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d40a8d21-3ae4-44af-b84a-def1c17a827b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-27T18:15:12.000Z" - }, - "end": { - "$date": "2021-10-27T18:33:54.000Z" - }, - "events": [ - { - "uuid": "f978a020-497a-4e75-b837-06b77bc4e2f3", - "start": { - "$date": "2021-10-27T18:15:12.000Z" - }, - "end": { - "$date": "2021-10-27T18:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "daa253fd-70b5-4e54-9177-39074aa3926b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-27T18:13:59.000Z" - }, - "end": { - "$date": "2021-10-27T19:26:14.000Z" - }, - "events": [ - { - "uuid": "8adbbd8c-eb0f-4760-8406-fbe387c2776b", - "start": { - "$date": "2021-10-27T18:13:59.000Z" - }, - "end": { - "$date": "2021-10-27T19:26:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a8ae82c-ccf0-43e3-ad48-62e645087c99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-27T18:37:28.000Z" - }, - "end": { - "$date": "2021-10-27T18:58:33.000Z" - }, - "events": [ - { - "uuid": "4d23be97-75e9-46c2-86d0-eccf500fc131", - "start": { - "$date": "2021-10-27T18:37:28.000Z" - }, - "end": { - "$date": "2021-10-27T18:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9dd41f0-6f91-4c6e-9ceb-15dab4eb6547", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-27T19:14:14.000Z" - }, - "end": { - "$date": "2021-10-27T19:34:38.000Z" - }, - "events": [ - { - "uuid": "2ce07c42-0c17-4188-aaef-e7dc2427e3ad", - "start": { - "$date": "2021-10-27T19:14:14.000Z" - }, - "end": { - "$date": "2021-10-27T19:34:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8b65aaaf-03b4-4573-9edf-50564aacbbe4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-27T22:10:18.000Z" - }, - "end": { - "$date": "2021-10-27T23:16:38.000Z" - }, - "events": [ - { - "uuid": "b4ae6a20-03dc-40b7-957a-b83afabe22ca", - "start": { - "$date": "2021-10-27T22:10:18.000Z" - }, - "end": { - "$date": "2021-10-27T23:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "0c5eafe5-52a5-4bbd-a0b7-69ff47cd2593", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-27T23:01:54.000Z" - }, - "end": { - "$date": "2021-10-27T23:42:59.000Z" - }, - "events": [ - { - "uuid": "b9579efd-adc4-4549-9f00-ce80ecdc4eb7", - "start": { - "$date": "2021-10-27T23:01:54.000Z" - }, - "end": { - "$date": "2021-10-27T23:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0aaadba3-f424-4fc4-a307-8356aa1e3c55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-27T23:18:38.000Z" - }, - "end": { - "$date": "2021-10-28T01:06:46.000Z" - }, - "events": [ - { - "uuid": "7d756e48-4ea9-4996-b4d2-8d863fb1481c", - "start": { - "$date": "2021-10-27T23:18:38.000Z" - }, - "end": { - "$date": "2021-10-27T23:35:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40525019-ac8b-4a12-97c9-05877dc16472", - "start": { - "$date": "2021-10-27T23:35:38.000Z" - }, - "end": { - "$date": "2021-10-27T23:40:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a60be251-059a-4c6a-81a2-e0f869069988", - "start": { - "$date": "2021-10-27T23:40:38.000Z" - }, - "end": { - "$date": "2021-10-28T01:06:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "f2a259ce-5c2f-42ec-8c32-e807eb4e1de4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-27T23:44:00.000Z" - }, - "end": { - "$date": "2021-10-28T00:37:15.000Z" - }, - "events": [ - { - "uuid": "2f577cd3-15d3-4e37-921b-20227293ece0", - "start": { - "$date": "2021-10-27T23:44:00.000Z" - }, - "end": { - "$date": "2021-10-28T00:37:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fb02f5f3-87d5-4fda-95b5-458873160db6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-27T23:57:29.000Z" - }, - "end": { - "$date": "2021-10-28T07:03:44.000Z" - }, - "events": [ - { - "uuid": "c19f0ac8-1c0a-4682-bf06-e7b8a1850e7d", - "start": { - "$date": "2021-10-27T23:57:29.000Z" - }, - "end": { - "$date": "2021-10-28T07:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9cbb8e46-6a04-4555-a59c-665ffbca040f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-27T23:54:29.000Z" - }, - "end": { - "$date": "2021-10-28T04:47:58.000Z" - }, - "events": [ - { - "uuid": "99fd880b-5dd1-43d2-bd85-24821fa1dc08", - "start": { - "$date": "2021-10-27T23:54:29.000Z" - }, - "end": { - "$date": "2021-10-28T04:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "55634f2d-fc36-47a0-a64c-03d206689ab1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-28T00:24:34.000Z" - }, - "end": { - "$date": "2021-10-28T00:36:06.000Z" - }, - "events": [ - { - "uuid": "7169c7fb-8191-4fbe-8931-4a7e98fd0ce4", - "start": { - "$date": "2021-10-28T00:24:34.000Z" - }, - "end": { - "$date": "2021-10-28T00:36:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23ad4279-6484-472c-9fcd-2001ebb2f3b3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-28T00:51:01.000Z" - }, - "end": { - "$date": "2021-10-28T01:13:56.000Z" - }, - "events": [ - { - "uuid": "040e896c-e7b1-4a48-aa47-c5f4197e812b", - "start": { - "$date": "2021-10-28T00:51:01.000Z" - }, - "end": { - "$date": "2021-10-28T01:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "c554a08f-89bb-44ca-af59-7d1f5df36183", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-28T00:51:48.000Z" - }, - "end": { - "$date": "2021-10-28T02:00:28.000Z" - }, - "events": [ - { - "uuid": "756dc51f-45fa-42cb-b5c4-e19ffc072044", - "start": { - "$date": "2021-10-28T00:51:48.000Z" - }, - "end": { - "$date": "2021-10-28T02:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea127779-18c5-4bac-a718-57fcc5da1e58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-28T01:19:38.000Z" - }, - "end": { - "$date": "2021-10-28T01:48:20.000Z" - }, - "events": [ - { - "uuid": "38c81a24-bc73-4322-a009-487e86f1af00", - "start": { - "$date": "2021-10-28T01:19:38.000Z" - }, - "end": { - "$date": "2021-10-28T01:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b5d7ffc4-cf37-435e-b701-dc2836558dd5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-28T01:21:56.000Z" - }, - "end": { - "$date": "2021-10-28T02:46:18.000Z" - }, - "events": [ - { - "uuid": "5e0d53cc-36d4-4451-ab21-40cfd31d7596", - "start": { - "$date": "2021-10-28T01:21:56.000Z" - }, - "end": { - "$date": "2021-10-28T02:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3dd395f7-5c4b-4e3c-ad1c-fd2d45a39939", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-28T01:23:34.000Z" - }, - "end": { - "$date": "2021-10-28T05:40:30.000Z" - }, - "events": [ - { - "uuid": "18cc940d-b353-4d77-9321-3d57219f5a5e", - "start": { - "$date": "2021-10-28T01:23:34.000Z" - }, - "end": { - "$date": "2021-10-28T03:33:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff0f6bd8-cc33-41e7-a6db-55e375f036f8", - "start": { - "$date": "2021-10-28T03:33:34.000Z" - }, - "end": { - "$date": "2021-10-28T03:43:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "57261e1f-1e99-4d4b-a0e6-a374ae24ab62", - "start": { - "$date": "2021-10-28T03:43:34.000Z" - }, - "end": { - "$date": "2021-10-28T05:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0268f9ed-00a0-482c-918f-d776e5d352cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-28T01:24:19.000Z" - }, - "end": { - "$date": "2021-10-28T03:20:01.000Z" - }, - "events": [ - { - "uuid": "2729b954-785b-467d-b8db-706f7e233665", - "start": { - "$date": "2021-10-28T01:24:19.000Z" - }, - "end": { - "$date": "2021-10-28T03:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7a654dfd-d3df-4d3f-b406-ee16fa293f8d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-28T02:17:11.000Z" - }, - "end": { - "$date": "2021-10-28T04:09:04.000Z" - }, - "events": [ - { - "uuid": "cceab5e3-a1c8-4dc9-9d5d-ee0c6e7ee647", - "start": { - "$date": "2021-10-28T02:17:11.000Z" - }, - "end": { - "$date": "2021-10-28T02:28:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ec6b4ed-6339-4250-8ee9-b4e34bbd8e56", - "start": { - "$date": "2021-10-28T02:28:11.000Z" - }, - "end": { - "$date": "2021-10-28T02:29:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c239aea4-cb94-41a0-9566-587cf5bf9b1c", - "start": { - "$date": "2021-10-28T02:29:11.000Z" - }, - "end": { - "$date": "2021-10-28T04:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "4c48b0b7-e91d-472a-ac22-e40bc5e717e3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-28T02:55:37.000Z" - }, - "end": { - "$date": "2021-10-28T04:09:27.000Z" - }, - "events": [ - { - "uuid": "fe6de56b-292a-460e-a2d1-28110593b1a7", - "start": { - "$date": "2021-10-28T02:55:37.000Z" - }, - "end": { - "$date": "2021-10-28T04:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aba3cd81-00ff-40d6-a9cc-6b8434fb0e30", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-28T03:36:57.000Z" - }, - "end": { - "$date": "2021-10-28T04:09:03.000Z" - }, - "events": [ - { - "uuid": "8d84d1db-0edd-4bdd-a583-c02c93f59807", - "start": { - "$date": "2021-10-28T03:36:57.000Z" - }, - "end": { - "$date": "2021-10-28T04:09:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "a8547294-ab0d-4c16-8cd7-81cbd1dfb302", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-28T03:43:11.000Z" - }, - "end": { - "$date": "2021-10-28T04:32:48.000Z" - }, - "events": [ - { - "uuid": "95c36884-09ac-40a7-a375-54b13fb4ee52", - "start": { - "$date": "2021-10-28T03:43:11.000Z" - }, - "end": { - "$date": "2021-10-28T04:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2281ef98-ad62-4fa6-86a4-dc3b94f2820e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-28T03:52:15.000Z" - }, - "end": { - "$date": "2021-10-28T04:17:38.000Z" - }, - "events": [ - { - "uuid": "1b0f5d51-ae2c-4805-a62b-acc177bd4688", - "start": { - "$date": "2021-10-28T03:52:15.000Z" - }, - "end": { - "$date": "2021-10-28T04:17:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcc40f38-0464-4aa6-959f-536aedfb2a50", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-28T04:23:48.000Z" - }, - "end": { - "$date": "2021-10-28T04:52:51.000Z" - }, - "events": [ - { - "uuid": "543a3eb9-2058-4584-bcda-8ec1527dc33c", - "start": { - "$date": "2021-10-28T04:23:48.000Z" - }, - "end": { - "$date": "2021-10-28T04:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "90ae2e89-1b35-4854-bdab-741d8bc50c18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-28T04:23:30.000Z" - }, - "end": { - "$date": "2021-10-28T04:56:21.000Z" - }, - "events": [ - { - "uuid": "9a43b9b1-31a6-4312-b1c3-e7d09ccf2832", - "start": { - "$date": "2021-10-28T04:23:30.000Z" - }, - "end": { - "$date": "2021-10-28T04:56:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1f215511-b475-4fa4-9832-2000b4d2fd56", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-28T04:38:09.000Z" - }, - "end": { - "$date": "2021-10-28T05:39:35.000Z" - }, - "events": [ - { - "uuid": "50b985e0-0863-4a0c-878d-2319c10d2efb", - "start": { - "$date": "2021-10-28T04:38:09.000Z" - }, - "end": { - "$date": "2021-10-28T05:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a3574e3-0b0a-4338-ae18-6f17b639cd07", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-28T04:58:52.000Z" - }, - "end": { - "$date": "2021-10-28T05:30:36.000Z" - }, - "events": [ - { - "uuid": "c336ff9e-a212-4545-afb0-02379f0ee3da", - "start": { - "$date": "2021-10-28T04:58:52.000Z" - }, - "end": { - "$date": "2021-10-28T05:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a57a8a4-8cc1-42e7-b972-7b845840f5bf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-28T05:06:42.000Z" - }, - "end": { - "$date": "2021-10-28T06:02:22.000Z" - }, - "events": [ - { - "uuid": "8540ba2f-a067-4bd9-a9d2-63d8e7443d9d", - "start": { - "$date": "2021-10-28T05:06:42.000Z" - }, - "end": { - "$date": "2021-10-28T06:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", - "uuid": "dece30f8-0665-4301-9cc8-ec9dec0ac296", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-28T05:13:04.000Z" - }, - "end": { - "$date": "2021-10-28T06:08:21.000Z" - }, - "events": [ - { - "uuid": "f636138b-1470-4a7b-b82b-54cb1fa8dc8e", - "start": { - "$date": "2021-10-28T05:13:04.000Z" - }, - "end": { - "$date": "2021-10-28T06:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "26dfa694-5246-4f4f-adbc-d72b0b419ce2", - "uuid": "d7cb5269-03a2-439a-8369-1ba8f0b55951", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-28T05:26:23.000Z" - }, - "end": { - "$date": "2021-10-28T06:58:34.000Z" - }, - "events": [ - { - "uuid": "e0ef7fe0-2e6d-4ef3-ae34-fae99f54c59f", - "start": { - "$date": "2021-10-28T05:26:23.000Z" - }, - "end": { - "$date": "2021-10-28T06:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab5e4df7-baf0-491c-8095-75a589f83221", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-28T05:38:57.000Z" - }, - "end": { - "$date": "2021-10-28T06:13:59.000Z" - }, - "events": [ - { - "uuid": "5138de55-750d-4728-8126-fccda1f314ac", - "start": { - "$date": "2021-10-28T05:38:57.000Z" - }, - "end": { - "$date": "2021-10-28T06:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdd2decf-7f73-4d4a-a3bb-5aa70f44b14b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-28T06:16:16.000Z" - }, - "end": { - "$date": "2021-10-28T06:32:53.000Z" - }, - "events": [ - { - "uuid": "e2ff2d36-dfcf-4ce0-9395-1dc549edc15a", - "start": { - "$date": "2021-10-28T06:16:16.000Z" - }, - "end": { - "$date": "2021-10-28T06:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99e76b5c-44a2-4235-9491-f9220ba39819", - "uuid": "aa8f96ef-1e84-4bb1-9a8f-2c38bad069cf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-28T06:27:21.000Z" - }, - "end": { - "$date": "2021-10-28T06:35:47.000Z" - }, - "events": [ - { - "uuid": "3422dffc-92a6-48f5-84a0-3ed4b88f29f8", - "start": { - "$date": "2021-10-28T06:27:21.000Z" - }, - "end": { - "$date": "2021-10-28T06:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "da652f0c-8139-463d-94fe-e12ae1b97743", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-10-28T06:30:43.000Z" - }, - "end": { - "$date": "2021-10-28T07:50:56.000Z" - }, - "events": [ - { - "uuid": "c5aa2597-3c02-4f9f-acdb-2753b21d132f", - "start": { - "$date": "2021-10-28T06:30:43.000Z" - }, - "end": { - "$date": "2021-10-28T07:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99e76b5c-44a2-4235-9491-f9220ba39819", - "uuid": "236e251e-58a3-4547-b642-58cfeb172d8e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-28T06:39:57.000Z" - }, - "end": { - "$date": "2021-10-28T06:53:22.000Z" - }, - "events": [ - { - "uuid": "d56f0094-7398-45c9-a548-30f6dd86243e", - "start": { - "$date": "2021-10-28T06:39:57.000Z" - }, - "end": { - "$date": "2021-10-28T06:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "10713c9e-7b3f-4177-93ba-bc2b23c83a29", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-28T07:03:16.000Z" - }, - "end": { - "$date": "2021-10-28T08:28:00.000Z" - }, - "events": [ - { - "uuid": "367a56f2-03eb-4f10-8db9-31eafa757154", - "start": { - "$date": "2021-10-28T07:03:16.000Z" - }, - "end": { - "$date": "2021-10-28T08:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2adfed3-6495-4831-8253-06261cb47aa4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T09:01:46.000Z" - }, - "end": { - "$date": "2021-10-28T09:26:49.000Z" - }, - "events": [ - { - "uuid": "fe3ab822-9e8d-4ae5-8895-4ee208e79706", - "start": { - "$date": "2021-10-28T09:01:46.000Z" - }, - "end": { - "$date": "2021-10-28T09:26:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8452a741-5492-4bf5-903d-f0aa57840dfd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T09:32:15.000Z" - }, - "end": { - "$date": "2021-10-28T10:00:18.000Z" - }, - "events": [ - { - "uuid": "a8fce362-aa4c-4d12-8844-88e7c7f079d5", - "start": { - "$date": "2021-10-28T09:32:15.000Z" - }, - "end": { - "$date": "2021-10-28T10:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdca5f97-c82e-4a8b-a3c6-e8f81a0e9039", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T10:05:29.000Z" - }, - "end": { - "$date": "2021-10-28T10:39:50.000Z" - }, - "events": [ - { - "uuid": "d0229c33-d73f-4fc8-995e-91635abefcf4", - "start": { - "$date": "2021-10-28T10:05:29.000Z" - }, - "end": { - "$date": "2021-10-28T10:39:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07c92ab4-8ba2-4aa0-a28d-efe8a72d21b9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T10:44:08.000Z" - }, - "end": { - "$date": "2021-10-28T11:01:56.000Z" - }, - "events": [ - { - "uuid": "dd4e610f-c424-4f30-9e81-1343f20393b5", - "start": { - "$date": "2021-10-28T10:44:08.000Z" - }, - "end": { - "$date": "2021-10-28T11:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d2df970-ffd4-4dc3-8f27-5b259c96e2e2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T11:06:32.000Z" - }, - "end": { - "$date": "2021-10-28T11:23:24.000Z" - }, - "events": [ - { - "uuid": "de180f9f-82f8-45c5-aab2-209786f07fc0", - "start": { - "$date": "2021-10-28T11:06:32.000Z" - }, - "end": { - "$date": "2021-10-28T11:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a153cb9e-110b-4704-8cf2-5bb6e68876fb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T14:00:02.000Z" - }, - "end": { - "$date": "2021-10-28T14:15:49.000Z" - }, - "events": [ - { - "uuid": "1aa409d6-e7b2-42bd-87cd-f7857d54ac10", - "start": { - "$date": "2021-10-28T14:00:02.000Z" - }, - "end": { - "$date": "2021-10-28T14:15:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8411ae25-057c-43d2-95d7-460f6dca4d48", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T14:17:39.000Z" - }, - "end": { - "$date": "2021-10-28T14:32:47.000Z" - }, - "events": [ - { - "uuid": "937fb297-0bc0-4fc7-a899-db40db3f72fe", - "start": { - "$date": "2021-10-28T14:17:39.000Z" - }, - "end": { - "$date": "2021-10-28T14:32:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "333d95b5-d97c-49e5-ab9a-c59933fbb660", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T14:34:21.000Z" - }, - "end": { - "$date": "2021-10-28T14:51:18.000Z" - }, - "events": [ - { - "uuid": "b9c7e2ac-fa0f-49f2-b06f-0dcca964485b", - "start": { - "$date": "2021-10-28T14:34:21.000Z" - }, - "end": { - "$date": "2021-10-28T14:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b3378a8-2d22-4be2-b130-a2baf2e901b5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T14:54:39.000Z" - }, - "end": { - "$date": "2021-10-28T15:17:16.000Z" - }, - "events": [ - { - "uuid": "596c8580-193b-4b62-be31-8b4e3e844b48", - "start": { - "$date": "2021-10-28T14:54:39.000Z" - }, - "end": { - "$date": "2021-10-28T15:17:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "e31e2d1a-bd26-4c72-972f-6f2730c447d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-28T15:07:38.000Z" - }, - "end": { - "$date": "2021-10-28T16:14:40.000Z" - }, - "events": [ - { - "uuid": "edc77966-a0cd-4088-9e6c-6681b1ad9829", - "start": { - "$date": "2021-10-28T15:07:38.000Z" - }, - "end": { - "$date": "2021-10-28T16:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b04c349c-bf73-458b-9d68-02395ecd60d4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T15:19:02.000Z" - }, - "end": { - "$date": "2021-10-28T15:41:45.000Z" - }, - "events": [ - { - "uuid": "2de4dc2a-7b24-476d-9c44-651f06e0011d", - "start": { - "$date": "2021-10-28T15:19:02.000Z" - }, - "end": { - "$date": "2021-10-28T15:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a61cd130-da4a-42d5-b0c1-9c884e3d5d7d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T15:45:10.000Z" - }, - "end": { - "$date": "2021-10-28T16:01:32.000Z" - }, - "events": [ - { - "uuid": "1bdc5c6e-f934-49cc-bbd0-f47fc9d1c407", - "start": { - "$date": "2021-10-28T15:45:10.000Z" - }, - "end": { - "$date": "2021-10-28T16:01:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db3019ab-c4ab-4beb-90e8-a85b73287b31", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T16:04:27.000Z" - }, - "end": { - "$date": "2021-10-28T16:25:30.000Z" - }, - "events": [ - { - "uuid": "bb055b69-a3e3-417c-ad8a-2d3702c5edba", - "start": { - "$date": "2021-10-28T16:04:27.000Z" - }, - "end": { - "$date": "2021-10-28T16:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9ba5a65-8c7a-4366-bd99-0fd25ab629e3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T16:29:21.000Z" - }, - "end": { - "$date": "2021-10-28T16:50:53.000Z" - }, - "events": [ - { - "uuid": "afdabbc5-e74e-4102-a9fe-1fde997a6389", - "start": { - "$date": "2021-10-28T16:29:21.000Z" - }, - "end": { - "$date": "2021-10-28T16:50:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8857f8f7-c453-4663-bc3a-b7868221cd10", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T16:53:28.000Z" - }, - "end": { - "$date": "2021-10-28T17:11:56.000Z" - }, - "events": [ - { - "uuid": "cc60a97d-f09f-4282-9f5b-d403061d757e", - "start": { - "$date": "2021-10-28T16:53:28.000Z" - }, - "end": { - "$date": "2021-10-28T17:11:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d60e1ffd-6da2-4f88-a2fe-261d8003743f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T17:19:12.000Z" - }, - "end": { - "$date": "2021-10-28T17:42:20.000Z" - }, - "events": [ - { - "uuid": "9be03e73-3c4c-4973-aeb8-171f02f4ec05", - "start": { - "$date": "2021-10-28T17:19:12.000Z" - }, - "end": { - "$date": "2021-10-28T17:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a338570-2c94-4bcd-9999-138d47470319", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T17:46:45.000Z" - }, - "end": { - "$date": "2021-10-28T18:21:14.000Z" - }, - "events": [ - { - "uuid": "aa245128-a035-4828-b016-b9203c547e4b", - "start": { - "$date": "2021-10-28T17:46:45.000Z" - }, - "end": { - "$date": "2021-10-28T18:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "8500a55a-f69a-4a6b-872b-de443bf1198c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-28T17:59:27.000Z" - }, - "end": { - "$date": "2021-10-28T18:33:27.000Z" - }, - "events": [ - { - "uuid": "6f808a6b-bb6d-4080-beba-fe91f261ac6c", - "start": { - "$date": "2021-10-28T17:59:27.000Z" - }, - "end": { - "$date": "2021-10-28T18:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ae95e27-5bc1-4c0a-872c-5ab6a97d0c56", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-28T18:26:45.000Z" - }, - "end": { - "$date": "2021-10-28T19:03:19.000Z" - }, - "events": [ - { - "uuid": "b208f97f-1d60-4057-b1b7-bc5f9c8200e2", - "start": { - "$date": "2021-10-28T18:26:45.000Z" - }, - "end": { - "$date": "2021-10-28T19:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "783f5fc8-acf1-440a-97f5-fe980016e443", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-28T20:46:23.000Z" - }, - "end": { - "$date": "2021-10-28T21:35:17.000Z" - }, - "events": [ - { - "uuid": "1d3774d8-7fbd-485f-92d3-9500f70f91a3", - "start": { - "$date": "2021-10-28T20:46:23.000Z" - }, - "end": { - "$date": "2021-10-28T21:35:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6f2fcd2f-15f1-493d-8a60-a24d8bb524aa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-28T21:06:21.000Z" - }, - "end": { - "$date": "2021-10-28T21:58:50.000Z" - }, - "events": [ - { - "uuid": "f4602465-d13c-44ee-a63d-1a966a2baf16", - "start": { - "$date": "2021-10-28T21:06:21.000Z" - }, - "end": { - "$date": "2021-10-28T21:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "74aa25f1-e541-4936-83d3-bf5c275a91b9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-10-28T21:41:38.000Z" - }, - "end": { - "$date": "2021-10-29T00:27:48.000Z" - }, - "events": [ - { - "uuid": "48954d6e-617d-4253-9521-d75b9087d6bc", - "start": { - "$date": "2021-10-28T21:41:38.000Z" - }, - "end": { - "$date": "2021-10-29T00:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9fb05f7d-a617-4bb8-8ed5-bdbc7b7d2795", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-10-28T21:42:19.000Z" - }, - "end": { - "$date": "2021-10-28T23:29:48.000Z" - }, - "events": [ - { - "uuid": "d70636b1-363a-46a0-bc5c-8ec21f94b0f7", - "start": { - "$date": "2021-10-28T21:42:19.000Z" - }, - "end": { - "$date": "2021-10-28T23:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "1fd67926-0096-4f6a-8b0d-13ee0dac1613", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-28T21:45:49.000Z" - }, - "end": { - "$date": "2021-10-28T22:24:46.000Z" - }, - "events": [ - { - "uuid": "114378ff-c85d-4ff6-94fa-394041dede96", - "start": { - "$date": "2021-10-28T21:45:49.000Z" - }, - "end": { - "$date": "2021-10-28T22:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "35de44e5-7692-428a-979b-3efcb7925747", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-28T21:48:00.000Z" - }, - "end": { - "$date": "2021-10-28T22:27:36.000Z" - }, - "events": [ - { - "uuid": "3777c59e-808a-4563-beb9-86370fbfa902", - "start": { - "$date": "2021-10-28T21:48:00.000Z" - }, - "end": { - "$date": "2021-10-28T22:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0fb0da7c-9cff-416a-934a-b56474afe03e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-28T22:27:20.000Z" - }, - "end": { - "$date": "2021-10-28T22:31:06.000Z" - }, - "events": [ - { - "uuid": "4f6d532b-6e3f-4fde-8522-ccef47b2358c", - "start": { - "$date": "2021-10-28T22:27:20.000Z" - }, - "end": { - "$date": "2021-10-28T22:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "785649d4-385a-4628-a582-800d570ba63f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-28T22:42:47.000Z" - }, - "end": { - "$date": "2021-10-29T01:08:02.000Z" - }, - "events": [ - { - "uuid": "89b1810e-ef1c-40a1-a14e-4d005f1fd72f", - "start": { - "$date": "2021-10-28T22:42:47.000Z" - }, - "end": { - "$date": "2021-10-29T01:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7e957632-e368-43f2-afba-c5bfe4bca814", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-28T22:51:04.000Z" - }, - "end": { - "$date": "2021-10-28T23:29:50.000Z" - }, - "events": [ - { - "uuid": "f72e4931-e4fa-449f-a84b-48170bdbc777", - "start": { - "$date": "2021-10-28T22:51:04.000Z" - }, - "end": { - "$date": "2021-10-28T23:29:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "119c09ce-d6eb-4c73-a4d3-0d0a8ddd3897", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-28T23:44:59.000Z" - }, - "end": { - "$date": "2021-10-29T03:30:49.000Z" - }, - "events": [ - { - "uuid": "4c3c0d6e-3468-4283-a1b3-a6926ea15f27", - "start": { - "$date": "2021-10-28T23:44:59.000Z" - }, - "end": { - "$date": "2021-10-29T03:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff0ad0a0-4e01-4d09-bee8-8e94d744b91c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T00:01:43.000Z" - }, - "end": { - "$date": "2021-10-29T00:20:09.000Z" - }, - "events": [ - { - "uuid": "354be333-2529-4088-8025-2fc81c8fc67b", - "start": { - "$date": "2021-10-29T00:01:43.000Z" - }, - "end": { - "$date": "2021-10-29T00:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdf6c8ec-743e-4aa0-8be7-06b887cc511c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T01:02:40.000Z" - }, - "end": { - "$date": "2021-10-29T01:41:17.000Z" - }, - "events": [ - { - "uuid": "4501a89b-c41e-4de0-93a7-1f6c7c685648", - "start": { - "$date": "2021-10-29T01:02:40.000Z" - }, - "end": { - "$date": "2021-10-29T01:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "43e91e7e-6ddd-44e0-acfe-471cca75fad2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T01:25:10.000Z" - }, - "end": { - "$date": "2021-10-29T02:09:12.000Z" - }, - "events": [ - { - "uuid": "d107d58d-d95d-4162-ac41-6bbd7cb14a91", - "start": { - "$date": "2021-10-29T01:25:10.000Z" - }, - "end": { - "$date": "2021-10-29T02:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ea8ce12-18ad-444f-8273-cd0630d854f1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T02:52:15.000Z" - }, - "end": { - "$date": "2021-10-29T03:14:44.000Z" - }, - "events": [ - { - "uuid": "3f14c2af-b140-4e31-8a81-a01a1958cfe0", - "start": { - "$date": "2021-10-29T02:52:15.000Z" - }, - "end": { - "$date": "2021-10-29T03:04:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "726b9775-46d1-4e4c-a69b-ea4b759c2c43", - "start": { - "$date": "2021-10-29T03:04:15.000Z" - }, - "end": { - "$date": "2021-10-29T03:27:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6f9cd978-c3a2-416d-82be-a18cba7fcf58", - "start": { - "$date": "2021-10-29T03:27:15.000Z" - }, - "end": { - "$date": "2021-10-29T03:29:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab6bedc3-b62a-4867-b6c7-3b263b9e0a33", - "start": { - "$date": "2021-10-29T03:29:15.000Z" - }, - "end": { - "$date": "2021-10-29T03:54:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b383f715-255d-4a6c-b547-417ee6510cb5", - "start": { - "$date": "2021-10-29T03:54:15.000Z" - }, - "end": { - "$date": "2021-10-29T03:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "642b5800-04da-43cf-abdb-cb1c808e930a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T01:46:02.000Z" - }, - "end": { - "$date": "2021-10-29T02:57:34.000Z" - }, - "events": [ - { - "uuid": "c149cd55-a139-4b5b-aaa2-a53354c73de5", - "start": { - "$date": "2021-10-29T01:46:02.000Z" - }, - "end": { - "$date": "2021-10-29T02:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "45bc189e-d784-428d-b7b0-69fbce8a400f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-29T02:16:32.000Z" - }, - "end": { - "$date": "2021-10-29T03:05:26.000Z" - }, - "events": [ - { - "uuid": "55ea3f1c-b689-4bcc-866c-718e53c73edc", - "start": { - "$date": "2021-10-29T02:16:32.000Z" - }, - "end": { - "$date": "2021-10-29T03:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ef8ad874-4a14-458f-b0b4-4a5d240ac520", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-29T02:26:36.000Z" - }, - "end": { - "$date": "2021-10-29T03:25:54.000Z" - }, - "events": [ - { - "uuid": "4f6ef59e-e30c-415c-b339-60578e0e580a", - "start": { - "$date": "2021-10-29T02:26:36.000Z" - }, - "end": { - "$date": "2021-10-29T03:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f3124f1a-f82b-42c1-91ec-3d0d194f0d38", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-29T02:26:53.000Z" - }, - "end": { - "$date": "2021-10-29T03:29:21.000Z" - }, - "events": [ - { - "uuid": "53390c72-8bb6-41d0-bc01-227c8afbe40e", - "start": { - "$date": "2021-10-29T02:26:53.000Z" - }, - "end": { - "$date": "2021-10-29T03:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcd77177-eb51-4e4d-8e4c-e7a3663c8a8d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T02:36:43.000Z" - }, - "end": { - "$date": "2021-10-29T02:50:08.000Z" - }, - "events": [ - { - "uuid": "20182d53-767f-434a-a513-a1d822c952f5", - "start": { - "$date": "2021-10-29T02:36:43.000Z" - }, - "end": { - "$date": "2021-10-29T02:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ec4c642-efca-4b91-90be-e42fd9792447", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T03:16:46.000Z" - }, - "end": { - "$date": "2021-10-29T03:33:11.000Z" - }, - "events": [ - { - "uuid": "6a98d502-8dd3-47a2-832b-533f8444c3c7", - "start": { - "$date": "2021-10-29T03:16:46.000Z" - }, - "end": { - "$date": "2021-10-29T03:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f93f1bf-8ff7-47d2-a14d-570fabb127f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T03:17:28.000Z" - }, - "end": { - "$date": "2021-10-29T03:33:24.000Z" - }, - "events": [ - { - "uuid": "67eecc04-d14b-45ff-9222-50cbdd33b99a", - "start": { - "$date": "2021-10-29T03:17:28.000Z" - }, - "end": { - "$date": "2021-10-29T03:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "978e5d88-434f-453a-b427-51df93baabec", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-29T03:16:46.000Z" - }, - "end": { - "$date": "2021-10-29T03:33:20.000Z" - }, - "events": [ - { - "uuid": "f460db90-ab91-4cc1-9dbc-c432b2fad4d1", - "start": { - "$date": "2021-10-29T03:16:46.000Z" - }, - "end": { - "$date": "2021-10-29T03:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec86f46e-935e-448f-87ed-03802dea81d1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T03:20:11.000Z" - }, - "end": { - "$date": "2021-10-29T03:34:50.000Z" - }, - "events": [ - { - "uuid": "09eb4014-cf7e-407e-bb64-2028dcbb2165", - "start": { - "$date": "2021-10-29T03:20:11.000Z" - }, - "end": { - "$date": "2021-10-29T03:34:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "283ffd2b-6a85-4fd1-9563-1db70988e2c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-29T03:31:05.000Z" - }, - "end": { - "$date": "2021-10-29T05:58:57.000Z" - }, - "events": [ - { - "uuid": "8a73b09d-b0c8-401b-bf94-9e2d310840ba", - "start": { - "$date": "2021-10-29T03:31:05.000Z" - }, - "end": { - "$date": "2021-10-29T04:06:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b3b5f2bb-b451-4fa0-9dd3-8665db787a13", - "start": { - "$date": "2021-10-29T04:06:05.000Z" - }, - "end": { - "$date": "2021-10-29T04:11:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b1a13296-b67b-4d17-8f88-bda1550f508b", - "start": { - "$date": "2021-10-29T04:11:05.000Z" - }, - "end": { - "$date": "2021-10-29T05:58:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8602fcaf-955a-4cec-b6fb-ccc3de0fd3ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T03:42:32.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:43.000Z" - }, - "events": [ - { - "uuid": "79ee0205-fe40-4bca-a9dc-1f6e5198688b", - "start": { - "$date": "2021-10-29T03:42:32.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17411dda-74b1-4190-8bba-4badc8d050dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T03:43:19.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:47.000Z" - }, - "events": [ - { - "uuid": "fde91c50-8e43-44da-9f41-af639a023b77", - "start": { - "$date": "2021-10-29T03:43:19.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6f1bbf0-83cb-4d8e-9f51-51b9370465a9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-29T03:42:32.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:44.000Z" - }, - "events": [ - { - "uuid": "edc29fe2-c1fa-432b-9075-632cc2a9d574", - "start": { - "$date": "2021-10-29T03:42:32.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fb23f61-9dae-4f21-a412-fe27ff6a4f4b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T03:42:37.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:35.000Z" - }, - "events": [ - { - "uuid": "bd886725-66f2-4c83-9113-deac844ddc08", - "start": { - "$date": "2021-10-29T03:42:37.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "965e86f9-1182-4463-b2cf-24e598ad6045", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-29T03:43:12.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:37.000Z" - }, - "events": [ - { - "uuid": "f8bc96bf-ca8b-4b5b-b155-a0fb128ebbfd", - "start": { - "$date": "2021-10-29T03:43:12.000Z" - }, - "end": { - "$date": "2021-10-29T04:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "58da3ef8-50d3-4b97-9822-eb2cdee8c310", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-29T04:00:18.000Z" - }, - "end": { - "$date": "2021-10-29T04:57:21.000Z" - }, - "events": [ - { - "uuid": "fba6ebe1-ce27-4937-a481-e176dfa56402", - "start": { - "$date": "2021-10-29T04:00:18.000Z" - }, - "end": { - "$date": "2021-10-29T04:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0b55593-4e59-4548-af9e-c99a046813f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T04:03:43.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:35.000Z" - }, - "events": [ - { - "uuid": "324068c4-7cc6-4a48-952c-8011434cda4d", - "start": { - "$date": "2021-10-29T04:03:43.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af64eaf3-7092-4a02-8cd9-f4d66223cdde", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-29T04:04:08.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:39.000Z" - }, - "events": [ - { - "uuid": "cd6cac41-f8c2-475d-9d3c-a2f10195e324", - "start": { - "$date": "2021-10-29T04:04:08.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a58878fd-1f1e-4835-adc2-7fe360280c83", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-29T04:03:48.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:40.000Z" - }, - "events": [ - { - "uuid": "6e470631-cdbb-4e39-89f6-aa5344d3b375", - "start": { - "$date": "2021-10-29T04:03:48.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "868f4ec2-9970-4dae-b3b7-8a71a6e994d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T04:03:47.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:31.000Z" - }, - "events": [ - { - "uuid": "88f26424-3eff-4742-b43f-61c34f34e9b3", - "start": { - "$date": "2021-10-29T04:03:47.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d73f9b63-a1c4-43c0-9e32-e64539753535", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T04:03:51.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:41.000Z" - }, - "events": [ - { - "uuid": "edbd6637-35af-46e6-9be7-67e31361839e", - "start": { - "$date": "2021-10-29T04:03:51.000Z" - }, - "end": { - "$date": "2021-10-29T04:24:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "31ec8e55-eb65-4ffd-bbf0-1dc90b1893ce", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-10-29T04:08:55.000Z" - }, - "end": { - "$date": "2021-10-29T06:00:17.000Z" - }, - "events": [ - { - "uuid": "abfd6326-4417-4f8a-82c2-c157dce97947", - "start": { - "$date": "2021-10-29T04:08:55.000Z" - }, - "end": { - "$date": "2021-10-29T06:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97c9399d-00f8-4849-b7ae-436af46aed3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T04:28:28.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:23.000Z" - }, - "events": [ - { - "uuid": "64cbf27f-bd3f-4f1b-a4f5-d237ff83c9f5", - "start": { - "$date": "2021-10-29T04:28:28.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7d6bd50-fc39-47c3-93e4-c9af14f63b67", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-10-29T04:27:19.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:20.000Z" - }, - "events": [ - { - "uuid": "3d9b90f5-22e9-40fa-a3d0-8ee80347f834", - "start": { - "$date": "2021-10-29T04:27:19.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a44ab793-a7cc-4ce9-9911-ea93bb6dad44", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T04:27:17.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:27.000Z" - }, - "events": [ - { - "uuid": "6be7e66a-4b03-425d-8dd6-3d388e5e78d0", - "start": { - "$date": "2021-10-29T04:27:17.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d06193a9-7afe-4d1a-8949-a5746ac9bea3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T04:27:43.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:28.000Z" - }, - "events": [ - { - "uuid": "79c3301f-b3ba-4d0f-8469-e424e0b295a4", - "start": { - "$date": "2021-10-29T04:27:43.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5672ef12-0fc8-4c72-b920-20b6959b8c90", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-10-29T04:27:23.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:29.000Z" - }, - "events": [ - { - "uuid": "606b3f4a-1372-42b2-9b23-68784714c5cc", - "start": { - "$date": "2021-10-29T04:27:23.000Z" - }, - "end": { - "$date": "2021-10-29T04:52:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "15860c2f-102d-4be5-8131-11b831dbfb06", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T04:55:59.000Z" - }, - "end": { - "$date": "2021-10-29T06:59:05.000Z" - }, - "events": [ - { - "uuid": "32668cc6-84d0-4d6a-b29b-a555d1a95312", - "start": { - "$date": "2021-10-29T04:55:59.000Z" - }, - "end": { - "$date": "2021-10-29T06:16:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78dfb629-00cc-4f53-a391-dacd45f76057", - "start": { - "$date": "2021-10-29T06:16:59.000Z" - }, - "end": { - "$date": "2021-10-29T06:29:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "25b56c38-eaa6-4c31-91fc-299e7404cce2", - "start": { - "$date": "2021-10-29T06:29:59.000Z" - }, - "end": { - "$date": "2021-10-29T06:40:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3fffedf9-a605-46c0-bde1-0f4566683b78", - "start": { - "$date": "2021-10-29T06:40:59.000Z" - }, - "end": { - "$date": "2021-10-29T06:50:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "738eb556-cb48-483a-b729-d75ea8b9028d", - "start": { - "$date": "2021-10-29T06:50:59.000Z" - }, - "end": { - "$date": "2021-10-29T06:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7ee335b6-5d5b-4928-ae9c-c3c1068241c7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-29T05:34:33.000Z" - }, - "end": { - "$date": "2021-10-29T06:03:48.000Z" - }, - "events": [ - { - "uuid": "b8a6c8fd-2403-400d-ab1e-c8a51d4e19a6", - "start": { - "$date": "2021-10-29T05:34:33.000Z" - }, - "end": { - "$date": "2021-10-29T06:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "284c8d4b-9e06-4f7b-bcc7-b86adebcd7a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T06:09:55.000Z" - }, - "end": { - "$date": "2021-10-29T06:34:29.000Z" - }, - "events": [ - { - "uuid": "6bb10cff-d7db-4de5-9a50-24afd62137ef", - "start": { - "$date": "2021-10-29T06:09:55.000Z" - }, - "end": { - "$date": "2021-10-29T06:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a69bb1b-245d-405f-a6fb-41973f84567c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-29T06:20:21.000Z" - }, - "end": { - "$date": "2021-10-29T06:47:26.000Z" - }, - "events": [ - { - "uuid": "f9480918-228a-4d99-8ff7-6fcec323c985", - "start": { - "$date": "2021-10-29T06:20:21.000Z" - }, - "end": { - "$date": "2021-10-29T06:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3523b39b-5154-4e96-b5ba-aa1f27523c28", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T06:38:44.000Z" - }, - "end": { - "$date": "2021-10-29T06:51:22.000Z" - }, - "events": [ - { - "uuid": "00c019b1-b0b5-4378-b469-a6c94f50262c", - "start": { - "$date": "2021-10-29T06:38:44.000Z" - }, - "end": { - "$date": "2021-10-29T06:51:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3ca1f66-9e66-45d3-b931-5e444cd0c76d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T06:55:26.000Z" - }, - "end": { - "$date": "2021-10-29T07:11:49.000Z" - }, - "events": [ - { - "uuid": "6dd24c10-89cb-421a-aa58-84d04a3968da", - "start": { - "$date": "2021-10-29T06:55:26.000Z" - }, - "end": { - "$date": "2021-10-29T07:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee438bcf-fc44-4397-a569-9a6dec3ced80", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T07:14:59.000Z" - }, - "end": { - "$date": "2021-10-29T07:50:29.000Z" - }, - "events": [ - { - "uuid": "934d9016-1556-4b63-8e49-5024145b285f", - "start": { - "$date": "2021-10-29T07:14:59.000Z" - }, - "end": { - "$date": "2021-10-29T07:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1fc8fb4f-08c7-4c76-a75f-2d91c95fc46b", - "uuid": "8c08c228-1303-4cd4-8422-e24949e733dc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T08:23:32.000Z" - }, - "end": { - "$date": "2021-10-29T09:40:45.000Z" - }, - "events": [ - { - "uuid": "73db8294-9cdd-4297-8b09-2135a5bf62c2", - "start": { - "$date": "2021-10-29T08:23:32.000Z" - }, - "end": { - "$date": "2021-10-29T09:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "140fc708-db3e-4d7f-a3b0-6f29f4c14791", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T10:06:02.000Z" - }, - "end": { - "$date": "2021-10-29T10:25:28.000Z" - }, - "events": [ - { - "uuid": "7470447e-33a5-488c-9bc7-8fa0d751e706", - "start": { - "$date": "2021-10-29T10:06:02.000Z" - }, - "end": { - "$date": "2021-10-29T10:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40e8cb2b-64cb-4d10-9c01-2ecdebb0cf1d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T10:29:03.000Z" - }, - "end": { - "$date": "2021-10-29T10:52:23.000Z" - }, - "events": [ - { - "uuid": "18697ed2-9067-4e69-bef7-4eb96d201d98", - "start": { - "$date": "2021-10-29T10:29:03.000Z" - }, - "end": { - "$date": "2021-10-29T10:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e1f56a3-256e-4f48-b96a-4ebc171f31a9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-29T10:56:39.000Z" - }, - "end": { - "$date": "2021-10-29T11:18:24.000Z" - }, - "events": [ - { - "uuid": "78ccb8fc-7472-43f0-b5e5-8966cf218f50", - "start": { - "$date": "2021-10-29T10:56:39.000Z" - }, - "end": { - "$date": "2021-10-29T11:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "ed078d0a-d654-4722-aaa0-c9afbddaf95c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-29T16:11:24.000Z" - }, - "end": { - "$date": "2021-10-29T16:56:05.000Z" - }, - "events": [ - { - "uuid": "9ede3972-d699-41da-8e88-995821ff8c7a", - "start": { - "$date": "2021-10-29T16:11:24.000Z" - }, - "end": { - "$date": "2021-10-29T16:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "c702500a-98f0-4669-a9fe-64c45d0805b1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T16:44:09.000Z" - }, - "end": { - "$date": "2021-10-29T17:12:29.000Z" - }, - "events": [ - { - "uuid": "ad95068e-c01c-4a53-a6cc-683815ef7812", - "start": { - "$date": "2021-10-29T16:44:09.000Z" - }, - "end": { - "$date": "2021-10-29T17:12:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3da0641d-c4b1-44e3-bda8-12b85960ec7c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T18:37:12.000Z" - }, - "end": { - "$date": "2021-10-29T18:39:15.000Z" - }, - "events": [ - { - "uuid": "fc4e68a4-3f33-4eab-8e1a-c5021813f175", - "start": { - "$date": "2021-10-29T18:37:12.000Z" - }, - "end": { - "$date": "2021-10-29T18:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "ebdea5ff-02e5-4944-8c4b-6f1bfe874589", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-29T19:17:56.000Z" - }, - "end": { - "$date": "2021-10-29T20:35:22.000Z" - }, - "events": [ - { - "uuid": "e9437c57-1453-4322-860e-e2b9d6bdf55c", - "start": { - "$date": "2021-10-29T19:17:56.000Z" - }, - "end": { - "$date": "2021-10-29T20:35:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a97b9cdf-3b59-4fbf-8532-ffea6d4590cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T20:14:26.000Z" - }, - "end": { - "$date": "2021-10-29T20:32:25.000Z" - }, - "events": [ - { - "uuid": "e0caaea8-da1d-4a56-b87e-a2526ce22fc8", - "start": { - "$date": "2021-10-29T20:14:26.000Z" - }, - "end": { - "$date": "2021-10-29T20:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b41693b-c2a0-403d-96bf-f5d6c2c8b725", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-29T20:42:32.000Z" - }, - "end": { - "$date": "2021-10-29T21:14:58.000Z" - }, - "events": [ - { - "uuid": "0d951a9e-04b1-4c2a-b777-42f578c054d9", - "start": { - "$date": "2021-10-29T20:42:32.000Z" - }, - "end": { - "$date": "2021-10-29T21:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "888bb640-7946-41dd-bb3a-941088e0ec66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-29T20:55:52.000Z" - }, - "end": { - "$date": "2021-10-29T21:25:28.000Z" - }, - "events": [ - { - "uuid": "e31e7548-6cc4-4bc8-b015-00ca03f72f9c", - "start": { - "$date": "2021-10-29T20:55:52.000Z" - }, - "end": { - "$date": "2021-10-29T21:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61c66458-2804-4ebd-a82e-5c6ae6dd9a2f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T22:04:40.000Z" - }, - "end": { - "$date": "2021-10-29T22:36:45.000Z" - }, - "events": [ - { - "uuid": "e25c2a41-aaae-47bd-8eb9-efd5136d408a", - "start": { - "$date": "2021-10-29T22:04:40.000Z" - }, - "end": { - "$date": "2021-10-29T22:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4f5ede4a-223c-4a78-8467-9186f4e518a1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-29T22:10:48.000Z" - }, - "end": { - "$date": "2021-10-29T23:28:22.000Z" - }, - "events": [ - { - "uuid": "d973754d-943d-4ce5-b932-53079427b846", - "start": { - "$date": "2021-10-29T22:10:48.000Z" - }, - "end": { - "$date": "2021-10-29T23:16:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0c055107-7780-4985-9282-c8a764495238", - "start": { - "$date": "2021-10-29T23:16:48.000Z" - }, - "end": { - "$date": "2021-10-29T23:28:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "70249ab0-2f13-4b38-8885-7991f6f1cae1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-29T22:11:13.000Z" - }, - "end": { - "$date": "2021-10-29T22:47:14.000Z" - }, - "events": [ - { - "uuid": "bf5f5f18-ebe4-498a-9c5e-baadb018c772", - "start": { - "$date": "2021-10-29T22:11:13.000Z" - }, - "end": { - "$date": "2021-10-29T22:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3256aaab-b546-4fcd-8d76-14fcb881e28f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T22:46:53.000Z" - }, - "end": { - "$date": "2021-10-29T23:11:19.000Z" - }, - "events": [ - { - "uuid": "fed2178c-ba73-456e-9dc9-90bc815f501d", - "start": { - "$date": "2021-10-29T22:46:53.000Z" - }, - "end": { - "$date": "2021-10-29T23:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1ac68a1-f38b-4dc5-9b57-04c5b7a4162b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-29T23:17:21.000Z" - }, - "end": { - "$date": "2021-10-29T23:43:12.000Z" - }, - "events": [ - { - "uuid": "2f6dd961-57f5-4db9-8a18-6e35dd063604", - "start": { - "$date": "2021-10-29T23:17:21.000Z" - }, - "end": { - "$date": "2021-10-29T23:43:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6f0022a7-266e-4948-98ac-05fd45fb04fd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-29T21:11:28.000Z" - }, - "end": { - "$date": "2021-10-30T03:43:07.000Z" - }, - "events": [ - { - "uuid": "8881f2e0-d897-444d-baee-ca234b50e691", - "start": { - "$date": "2021-10-29T21:11:28.000Z" - }, - "end": { - "$date": "2021-10-29T21:57:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c4219c67-ad3c-4881-9eb5-0f88655c6b27", - "start": { - "$date": "2021-10-29T21:57:28.000Z" - }, - "end": { - "$date": "2021-10-29T22:02:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8481d193-01f9-45f5-a157-7c971cb983a7", - "start": { - "$date": "2021-10-29T22:02:28.000Z" - }, - "end": { - "$date": "2021-10-29T22:12:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bf48664a-0e56-4202-96a7-0c5bad5184d4", - "start": { - "$date": "2021-10-29T22:12:28.000Z" - }, - "end": { - "$date": "2021-10-29T22:22:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f339152c-5def-4308-a835-ff92724c2794", - "start": { - "$date": "2021-10-29T22:22:28.000Z" - }, - "end": { - "$date": "2021-10-29T22:25:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "092608f0-5656-4733-b725-2d165ebca250", - "start": { - "$date": "2021-10-29T22:25:28.000Z" - }, - "end": { - "$date": "2021-10-29T22:40:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61d6c53c-2287-4a28-84a8-7c6932c25b2e", - "start": { - "$date": "2021-10-29T22:40:28.000Z" - }, - "end": { - "$date": "2021-10-30T03:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "54bc296e-b2f7-4c03-aa25-b6b2cbd9c815", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T00:38:50.000Z" - }, - "end": { - "$date": "2021-10-30T02:12:34.000Z" - }, - "events": [ - { - "uuid": "d23d318c-e98d-497a-a19b-dc35523756c2", - "start": { - "$date": "2021-10-30T00:38:50.000Z" - }, - "end": { - "$date": "2021-10-30T01:43:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "96b0f4db-e424-4e30-8859-c592c46236e5", - "start": { - "$date": "2021-10-30T01:43:50.000Z" - }, - "end": { - "$date": "2021-10-30T01:48:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "67711d40-53e6-4745-97dc-491758b8afa0", - "start": { - "$date": "2021-10-30T01:48:50.000Z" - }, - "end": { - "$date": "2021-10-30T02:09:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0ab1ea8-5cf5-438e-ada4-271abf6a5865", - "start": { - "$date": "2021-10-30T02:09:50.000Z" - }, - "end": { - "$date": "2021-10-30T02:12:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6e12578a-bcd8-424c-ba1c-d4d8bcd4c038", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-30T01:07:33.000Z" - }, - "end": { - "$date": "2021-10-30T01:34:40.000Z" - }, - "events": [ - { - "uuid": "d1492ce7-ce39-4b65-b8dc-204bf070da30", - "start": { - "$date": "2021-10-30T01:07:33.000Z" - }, - "end": { - "$date": "2021-10-30T01:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6583504c-879b-4f9e-891e-1a9ca16d0ed6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-30T01:32:41.000Z" - }, - "end": { - "$date": "2021-10-30T01:54:49.000Z" - }, - "events": [ - { - "uuid": "5b8293f1-c03b-4728-b22a-838ccdebc69e", - "start": { - "$date": "2021-10-30T01:32:41.000Z" - }, - "end": { - "$date": "2021-10-30T01:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7663badf-bdbd-4377-b4b1-37c88103290a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-30T01:48:45.000Z" - }, - "end": { - "$date": "2021-10-30T03:03:56.000Z" - }, - "events": [ - { - "uuid": "8c911529-a29a-44c2-8022-56ae22e1e33c", - "start": { - "$date": "2021-10-30T01:48:45.000Z" - }, - "end": { - "$date": "2021-10-30T03:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1fd2ad5-66d9-4451-ad59-3be3b6b0b80b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-30T01:58:26.000Z" - }, - "end": { - "$date": "2021-10-30T02:12:45.000Z" - }, - "events": [ - { - "uuid": "11478e4b-fe07-4308-9715-233dd7cdd683", - "start": { - "$date": "2021-10-30T01:58:26.000Z" - }, - "end": { - "$date": "2021-10-30T02:12:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "758803de-c323-4feb-8042-a0c436890d0e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-30T02:19:52.000Z" - }, - "end": { - "$date": "2021-10-30T02:37:26.000Z" - }, - "events": [ - { - "uuid": "fb3f05ca-b70c-4582-949a-b275836082fc", - "start": { - "$date": "2021-10-30T02:19:52.000Z" - }, - "end": { - "$date": "2021-10-30T02:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a08b3baa-f80c-49c4-b4d2-f2621a327132", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T02:29:16.000Z" - }, - "end": { - "$date": "2021-10-30T03:03:00.000Z" - }, - "events": [ - { - "uuid": "ca04413b-45f3-40ca-bdc6-63b8ec721464", - "start": { - "$date": "2021-10-30T02:29:16.000Z" - }, - "end": { - "$date": "2021-10-30T02:53:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "84a40df2-9bed-49ba-aaf8-d00c9b995f56", - "start": { - "$date": "2021-10-30T02:53:16.000Z" - }, - "end": { - "$date": "2021-10-30T03:03:00.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "03129ba2-9fc4-4ea8-89d5-703babc4f46a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T03:09:15.000Z" - }, - "end": { - "$date": "2021-10-30T03:15:36.000Z" - }, - "events": [ - { - "uuid": "bd0bd668-d7ac-457b-a729-b4366489b489", - "start": { - "$date": "2021-10-30T03:09:15.000Z" - }, - "end": { - "$date": "2021-10-30T03:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "945e03ef-ca95-456a-9021-33c3f9a2f01c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-30T03:19:30.000Z" - }, - "end": { - "$date": "2021-10-30T03:53:15.000Z" - }, - "events": [ - { - "uuid": "538d652b-cf8a-4788-81a4-8235dc9f67e2", - "start": { - "$date": "2021-10-30T03:19:30.000Z" - }, - "end": { - "$date": "2021-10-30T03:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "99c93f8c-f07e-4ab3-a25b-8d5106b7c161", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-30T03:43:17.000Z" - }, - "end": { - "$date": "2021-10-30T06:45:36.000Z" - }, - "events": [ - { - "uuid": "a30ee917-7a24-4ffe-8fc2-9e3e7e13bdd7", - "start": { - "$date": "2021-10-30T03:43:17.000Z" - }, - "end": { - "$date": "2021-10-30T06:45:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "99f943d4-f9c2-4c14-a470-5618516b988d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-30T03:53:47.000Z" - }, - "end": { - "$date": "2021-10-30T04:15:01.000Z" - }, - "events": [ - { - "uuid": "85e2c360-f3f4-4f03-9b26-2ef2ff91eb4d", - "start": { - "$date": "2021-10-30T03:53:47.000Z" - }, - "end": { - "$date": "2021-10-30T04:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c6a77289-382e-471b-9fc0-5c0d83a59fb4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-30T04:04:00.000Z" - }, - "end": { - "$date": "2021-10-30T06:37:27.000Z" - }, - "events": [ - { - "uuid": "0b0cab12-5b6c-43b8-bf9f-d40d0f714f70", - "start": { - "$date": "2021-10-30T04:04:00.000Z" - }, - "end": { - "$date": "2021-10-30T06:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "74114dd2-c99e-4e9f-a502-8189b3ce459a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T05:28:01.000Z" - }, - "end": { - "$date": "2021-10-30T06:37:29.000Z" - }, - "events": [ - { - "uuid": "097bf2ec-72a7-4d67-88c5-762fd7e4d831", - "start": { - "$date": "2021-10-30T05:28:01.000Z" - }, - "end": { - "$date": "2021-10-30T06:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "424fe04c-119f-4617-a4cf-d0ffce18081a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-10-30T04:21:28.000Z" - }, - "end": { - "$date": "2021-10-30T05:42:03.000Z" - }, - "events": [ - { - "uuid": "42511b17-97c8-4c6b-a886-c08891e10726", - "start": { - "$date": "2021-10-30T04:21:28.000Z" - }, - "end": { - "$date": "2021-10-30T05:42:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7614e8e0-d2a6-4fe2-b7d9-889876e3d227", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-30T04:42:48.000Z" - }, - "end": { - "$date": "2021-10-30T07:43:29.000Z" - }, - "events": [ - { - "uuid": "dadcfe67-2739-4efb-be46-0ddb3a63382f", - "start": { - "$date": "2021-10-30T04:42:48.000Z" - }, - "end": { - "$date": "2021-10-30T07:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "9629113a-be5a-4583-b2c5-8379e1658d93", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-30T05:10:11.000Z" - }, - "end": { - "$date": "2021-10-30T05:15:24.000Z" - }, - "events": [ - { - "uuid": "98ac4f53-1b31-4178-aec1-8237e467c869", - "start": { - "$date": "2021-10-30T05:10:11.000Z" - }, - "end": { - "$date": "2021-10-30T05:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "29601e08-3fba-4ef6-9e2f-66f203109373", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-30T05:16:33.000Z" - }, - "end": { - "$date": "2021-10-30T06:13:02.000Z" - }, - "events": [ - { - "uuid": "c4ea99c3-ade6-45d3-bc4c-4630175443b4", - "start": { - "$date": "2021-10-30T05:16:33.000Z" - }, - "end": { - "$date": "2021-10-30T06:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de008960-3770-467b-b544-49f4d8cdcac4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T06:05:00.000Z" - }, - "end": { - "$date": "2021-10-30T06:05:23.000Z" - }, - "events": [ - { - "uuid": "c8b9b8d7-08fd-45dd-a532-8f289c999e94", - "start": { - "$date": "2021-10-30T06:05:00.000Z" - }, - "end": { - "$date": "2021-10-30T06:05:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3546b7c0-27a4-4997-babd-0657f9e0e743", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T06:05:40.000Z" - }, - "end": { - "$date": "2021-10-30T06:34:19.000Z" - }, - "events": [ - { - "uuid": "fb7ba742-0c7f-47b0-b71a-91c3534d4dde", - "start": { - "$date": "2021-10-30T06:05:40.000Z" - }, - "end": { - "$date": "2021-10-30T06:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3df4c772-e6c2-44f1-ba2c-ee08cead1a74", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T06:37:33.000Z" - }, - "end": { - "$date": "2021-10-30T06:42:04.000Z" - }, - "events": [ - { - "uuid": "bb92e4aa-6509-4458-b73f-f560711296fd", - "start": { - "$date": "2021-10-30T06:37:33.000Z" - }, - "end": { - "$date": "2021-10-30T06:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b4da11b3-3b22-432a-b66c-4ad568c7594f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-30T08:04:27.000Z" - }, - "end": { - "$date": "2021-10-30T10:26:26.000Z" - }, - "events": [ - { - "uuid": "08e7a593-2df8-453d-a99c-0c19080fac90", - "start": { - "$date": "2021-10-30T08:04:27.000Z" - }, - "end": { - "$date": "2021-10-30T10:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "3cad370b-8b37-4aea-ae9b-610517b0b82b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T14:49:02.000Z" - }, - "end": { - "$date": "2021-10-30T15:23:26.000Z" - }, - "events": [ - { - "uuid": "a0f080b3-8092-4bd8-bcda-daaff619e2c2", - "start": { - "$date": "2021-10-30T14:49:02.000Z" - }, - "end": { - "$date": "2021-10-30T15:14:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "673fdc93-d132-4c49-b635-ec9512d7ccbf", - "start": { - "$date": "2021-10-30T15:14:02.000Z" - }, - "end": { - "$date": "2021-10-30T15:18:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f01f6500-a04f-4529-a3fa-4135dbcc1cf8", - "start": { - "$date": "2021-10-30T15:18:02.000Z" - }, - "end": { - "$date": "2021-10-30T15:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f93f7a4-6844-4483-b5a4-a1ca0612536e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T15:32:29.000Z" - }, - "end": { - "$date": "2021-10-30T15:35:47.000Z" - }, - "events": [ - { - "uuid": "683095d3-3da4-483e-b610-1f69eac6b697", - "start": { - "$date": "2021-10-30T15:32:29.000Z" - }, - "end": { - "$date": "2021-10-30T15:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "6e6abfd6-6c2e-4328-ab9f-76204f0a53a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-30T15:33:11.000Z" - }, - "end": { - "$date": "2021-10-30T17:10:33.000Z" - }, - "events": [ - { - "uuid": "6d79fd1f-00ad-4625-8738-b8cc12db50a5", - "start": { - "$date": "2021-10-30T15:33:11.000Z" - }, - "end": { - "$date": "2021-10-30T17:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e639d120-c63a-4ba5-9987-d20f1a442a30", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T15:43:55.000Z" - }, - "end": { - "$date": "2021-10-30T16:19:33.000Z" - }, - "events": [ - { - "uuid": "4a9d5437-f9bd-4fe3-8d78-ac2b154e75f0", - "start": { - "$date": "2021-10-30T15:43:55.000Z" - }, - "end": { - "$date": "2021-10-30T16:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "832de66f-f6f8-425a-9b14-ffe889cab47e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T16:27:40.000Z" - }, - "end": { - "$date": "2021-10-30T17:00:18.000Z" - }, - "events": [ - { - "uuid": "811a5c7c-59cd-4547-9bfb-50af0f3edee6", - "start": { - "$date": "2021-10-30T16:27:40.000Z" - }, - "end": { - "$date": "2021-10-30T17:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8475a4ae-9b64-4db4-ba69-805d887559da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T16:56:36.000Z" - }, - "end": { - "$date": "2021-10-30T17:13:57.000Z" - }, - "events": [ - { - "uuid": "d903bc8a-fe4b-4f43-bdff-4219812ddde1", - "start": { - "$date": "2021-10-30T16:56:36.000Z" - }, - "end": { - "$date": "2021-10-30T17:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42b08f6f-56a4-4a05-9ce8-ea64bc1c76f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T17:06:31.000Z" - }, - "end": { - "$date": "2021-10-30T17:33:01.000Z" - }, - "events": [ - { - "uuid": "2b125fbf-cb6c-4293-a1cb-ea1d5510f762", - "start": { - "$date": "2021-10-30T17:06:31.000Z" - }, - "end": { - "$date": "2021-10-30T17:33:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4f69e96a-b489-4aa9-9cf3-d71969be401b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T17:14:27.000Z" - }, - "end": { - "$date": "2021-10-30T17:19:13.000Z" - }, - "events": [ - { - "uuid": "976f3888-8119-49bc-a263-4ef414a47226", - "start": { - "$date": "2021-10-30T17:14:27.000Z" - }, - "end": { - "$date": "2021-10-30T17:19:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7bc2f05-a1c0-46a6-ad59-b13b81a29589", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T17:37:24.000Z" - }, - "end": { - "$date": "2021-10-30T18:13:50.000Z" - }, - "events": [ - { - "uuid": "62714da8-9097-4cfc-9f7f-ccb935a65996", - "start": { - "$date": "2021-10-30T17:37:24.000Z" - }, - "end": { - "$date": "2021-10-30T18:13:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c490ffc1-128b-4316-9c63-8c1167b87494", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T18:21:08.000Z" - }, - "end": { - "$date": "2021-10-30T18:56:08.000Z" - }, - "events": [ - { - "uuid": "443a8e2d-9602-4a48-a4ac-13ba1093cba4", - "start": { - "$date": "2021-10-30T18:21:08.000Z" - }, - "end": { - "$date": "2021-10-30T18:56:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "aed78aef-5bb7-476a-a00a-8f6fc62657c3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T18:29:33.000Z" - }, - "end": { - "$date": "2021-10-30T19:32:09.000Z" - }, - "events": [ - { - "uuid": "d7e6c7a1-592d-4837-bc78-4f4920aec46c", - "start": { - "$date": "2021-10-30T18:29:33.000Z" - }, - "end": { - "$date": "2021-10-30T19:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d3c5b33-1ebe-40a6-bcc1-1ce0ff5f99f2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T19:00:06.000Z" - }, - "end": { - "$date": "2021-10-30T19:32:12.000Z" - }, - "events": [ - { - "uuid": "89f5cabf-9db3-46e7-a559-3f8029dcabb3", - "start": { - "$date": "2021-10-30T19:00:06.000Z" - }, - "end": { - "$date": "2021-10-30T19:32:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99ab3574-4042-4eec-a415-d3a32a1573ff", - "uuid": "95b291f6-a084-41c3-854a-69195379459b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-30T19:05:55.000Z" - }, - "end": { - "$date": "2021-10-30T22:05:44.000Z" - }, - "events": [ - { - "uuid": "2bf8b11c-f19a-470d-a8cb-eabc8c1047b0", - "start": { - "$date": "2021-10-30T19:05:55.000Z" - }, - "end": { - "$date": "2021-10-30T22:05:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "584fba5e-48d3-4897-81b9-03a1d69f34b9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T19:32:24.000Z" - }, - "end": { - "$date": "2021-10-30T19:54:10.000Z" - }, - "events": [ - { - "uuid": "2d8f7943-0948-493e-83a2-03e7e378f6f1", - "start": { - "$date": "2021-10-30T19:32:24.000Z" - }, - "end": { - "$date": "2021-10-30T19:54:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f760b64c-8a2b-4472-b32f-f80326b6976f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T19:35:55.000Z" - }, - "end": { - "$date": "2021-10-30T20:06:36.000Z" - }, - "events": [ - { - "uuid": "29af232a-caa8-4106-b1bf-90cab03b9634", - "start": { - "$date": "2021-10-30T19:35:55.000Z" - }, - "end": { - "$date": "2021-10-30T20:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6dc89b49-d52d-4167-8386-71f7ed644e85", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T19:54:35.000Z" - }, - "end": { - "$date": "2021-10-30T19:59:10.000Z" - }, - "events": [ - { - "uuid": "27c06ab9-5dcd-46fb-8f67-bce18cbfcabf", - "start": { - "$date": "2021-10-30T19:54:35.000Z" - }, - "end": { - "$date": "2021-10-30T19:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f005a63a-24d4-4b64-99fa-31f265a3e58d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T20:10:43.000Z" - }, - "end": { - "$date": "2021-10-30T20:38:04.000Z" - }, - "events": [ - { - "uuid": "d1719cfd-75f1-40b3-94b9-9a15241e3ef1", - "start": { - "$date": "2021-10-30T20:10:43.000Z" - }, - "end": { - "$date": "2021-10-30T20:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "baec60f1-2704-458c-ab8a-b3c16e2218c6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T20:43:51.000Z" - }, - "end": { - "$date": "2021-10-30T21:16:22.000Z" - }, - "events": [ - { - "uuid": "dc53f48d-93e9-44d7-b78e-cddf7b89b487", - "start": { - "$date": "2021-10-30T20:43:51.000Z" - }, - "end": { - "$date": "2021-10-30T21:16:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ce9f2594-2482-4222-a0fd-e0bbd3efea98", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-30T18:21:28.000Z" - }, - "end": { - "$date": "2021-10-31T00:45:01.000Z" - }, - "events": [ - { - "uuid": "6c6cefff-e4b1-4d56-87d5-18cd350e5813", - "start": { - "$date": "2021-10-30T18:21:28.000Z" - }, - "end": { - "$date": "2021-10-31T00:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0e59e5f0-e99b-46bb-a14d-2de0314df0aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-30T21:10:24.000Z" - }, - "end": { - "$date": "2021-10-30T22:16:47.000Z" - }, - "events": [ - { - "uuid": "0862f44f-6204-472d-a204-415adfac3aaa", - "start": { - "$date": "2021-10-30T21:10:24.000Z" - }, - "end": { - "$date": "2021-10-30T22:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f99daa0d-897d-431a-97e4-eb49410c88f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T21:21:50.000Z" - }, - "end": { - "$date": "2021-10-30T21:50:46.000Z" - }, - "events": [ - { - "uuid": "31a49e6f-3e2f-4367-8e47-6e22492db1c8", - "start": { - "$date": "2021-10-30T21:21:50.000Z" - }, - "end": { - "$date": "2021-10-30T21:50:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d2a172d9-66e2-458d-91fa-dd1f002b5908", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-30T21:20:59.000Z" - }, - "end": { - "$date": "2021-10-30T22:09:40.000Z" - }, - "events": [ - { - "uuid": "7d912775-f3f4-4b14-badb-5c820e454548", - "start": { - "$date": "2021-10-30T21:20:59.000Z" - }, - "end": { - "$date": "2021-10-30T22:09:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c5292c24-4bc9-4b2f-b918-6ef6fa0ff22d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T21:30:08.000Z" - }, - "end": { - "$date": "2021-10-30T22:15:06.000Z" - }, - "events": [ - { - "uuid": "8bda735f-4996-4050-876c-b5a420b2febc", - "start": { - "$date": "2021-10-30T21:30:08.000Z" - }, - "end": { - "$date": "2021-10-30T22:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac83017f-bd17-4fe4-b28e-c5c04be6b893", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T21:59:29.000Z" - }, - "end": { - "$date": "2021-10-30T22:20:09.000Z" - }, - "events": [ - { - "uuid": "ee0f0b20-1d56-47b3-ad54-ba07cb2e3f3f", - "start": { - "$date": "2021-10-30T21:59:29.000Z" - }, - "end": { - "$date": "2021-10-30T22:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d76feac5-0df5-48c1-a5b4-de0ce174799f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-30T22:15:26.000Z" - }, - "end": { - "$date": "2021-10-30T23:38:09.000Z" - }, - "events": [ - { - "uuid": "f8cd4bf6-17b7-431b-a6ef-cd477e31f52a", - "start": { - "$date": "2021-10-30T22:15:26.000Z" - }, - "end": { - "$date": "2021-10-30T23:38:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46b7f29e-e187-4660-80b5-681af1f5755d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T22:29:32.000Z" - }, - "end": { - "$date": "2021-10-30T22:59:03.000Z" - }, - "events": [ - { - "uuid": "4cc220a9-f0f3-4470-8db6-ab490e48e357", - "start": { - "$date": "2021-10-30T22:29:32.000Z" - }, - "end": { - "$date": "2021-10-30T22:59:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ed9c4e1-a5bf-41bd-906a-f505bfb617af", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-30T22:59:25.000Z" - }, - "end": { - "$date": "2021-10-30T23:04:53.000Z" - }, - "events": [ - { - "uuid": "3e0da657-b11b-46b2-926c-72227d26e4cc", - "start": { - "$date": "2021-10-30T22:59:25.000Z" - }, - "end": { - "$date": "2021-10-30T23:04:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2c2c1fa5-d040-45d2-abac-051163c7d38b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-30T23:21:59.000Z" - }, - "end": { - "$date": "2021-10-31T00:00:03.000Z" - }, - "events": [ - { - "uuid": "aac768f1-f6f5-4de1-b86b-caf1c958a4ae", - "start": { - "$date": "2021-10-30T23:21:59.000Z" - }, - "end": { - "$date": "2021-10-31T00:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "4fe53ee5-6247-4aec-9acf-1e464a4f6e79", - "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", - "start": { - "$date": "2021-10-31T00:06:28.000Z" - }, - "end": { - "$date": "2021-10-31T00:23:22.000Z" - }, - "events": [ - { - "uuid": "7c39d97d-adc3-4342-b59b-27423e66bf14", - "start": { - "$date": "2021-10-31T00:06:28.000Z" - }, - "end": { - "$date": "2021-10-31T00:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "109cdc12-17d8-4a9d-a803-73a75ef9b1d4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-31T00:07:23.000Z" - }, - "end": { - "$date": "2021-10-31T01:00:18.000Z" - }, - "events": [ - { - "uuid": "0474a77d-ccb8-43c9-a37c-bec8501f0e5d", - "start": { - "$date": "2021-10-31T00:07:23.000Z" - }, - "end": { - "$date": "2021-10-31T01:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "356ab5d4-4a46-4394-a1c4-e8b8024e3165", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-31T01:24:15.000Z" - }, - "end": { - "$date": "2021-10-31T04:06:37.000Z" - }, - "events": [ - { - "uuid": "84f00df5-552f-418d-93ee-8d6657300969", - "start": { - "$date": "2021-10-31T01:24:15.000Z" - }, - "end": { - "$date": "2021-10-31T04:06:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "8f5ca1f4-90a3-4c52-a736-2c1ea6734bf1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-31T02:31:09.000Z" - }, - "end": { - "$date": "2021-10-31T02:44:23.000Z" - }, - "events": [ - { - "uuid": "df4616a6-ac45-4c58-9f0b-2427191aad4b", - "start": { - "$date": "2021-10-31T02:31:09.000Z" - }, - "end": { - "$date": "2021-10-31T02:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "99156277-c18b-4015-9fe9-4c0b9e2d38fd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T03:11:43.000Z" - }, - "end": { - "$date": "2021-10-31T03:51:28.000Z" - }, - "events": [ - { - "uuid": "40d8bac3-470f-4306-8969-f9290225e769", - "start": { - "$date": "2021-10-31T03:11:43.000Z" - }, - "end": { - "$date": "2021-10-31T03:23:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbf77cab-1662-4b78-a9d4-f656264d810d", - "start": { - "$date": "2021-10-31T03:23:43.000Z" - }, - "end": { - "$date": "2021-10-31T03:26:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e3b47a90-eb4c-453e-93b8-ba3a84e997d2", - "start": { - "$date": "2021-10-31T03:26:43.000Z" - }, - "end": { - "$date": "2021-10-31T03:51:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e8f40c19-9221-4159-afb1-d7eaf5fc04da", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-31T03:45:15.000Z" - }, - "end": { - "$date": "2021-10-31T05:27:34.000Z" - }, - "events": [ - { - "uuid": "36cea28d-f134-4f64-b21d-be1fda7146d0", - "start": { - "$date": "2021-10-31T03:45:15.000Z" - }, - "end": { - "$date": "2021-10-31T05:27:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "24b44d08-4890-4dab-8090-c18baf1de423", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-31T03:49:09.000Z" - }, - "end": { - "$date": "2021-10-31T03:50:19.000Z" - }, - "events": [ - { - "uuid": "5ccc4889-67db-4e6d-bcdb-3ae328c16dfd", - "start": { - "$date": "2021-10-31T03:49:09.000Z" - }, - "end": { - "$date": "2021-10-31T03:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "426d4459-4b1a-49cd-a665-c9c06e414b74", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-31T03:50:54.000Z" - }, - "end": { - "$date": "2021-10-31T04:17:46.000Z" - }, - "events": [ - { - "uuid": "4d70144c-68b0-4bde-b8d1-19b624dd735e", - "start": { - "$date": "2021-10-31T03:50:54.000Z" - }, - "end": { - "$date": "2021-10-31T04:17:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "91f77508-c8aa-4330-898e-73c7eb4998e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T03:51:47.000Z" - }, - "end": { - "$date": "2021-10-31T06:58:31.000Z" - }, - "events": [ - { - "uuid": "2985abe8-926f-4464-905f-a0398139dd03", - "start": { - "$date": "2021-10-31T03:51:47.000Z" - }, - "end": { - "$date": "2021-10-31T06:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "bf622781-9bce-4a2d-8e36-68bdd936872d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-31T04:09:44.000Z" - }, - "end": { - "$date": "2021-10-31T08:06:52.000Z" - }, - "events": [ - { - "uuid": "7e8d89be-118f-492d-be08-dfe95c66a41f", - "start": { - "$date": "2021-10-31T04:09:44.000Z" - }, - "end": { - "$date": "2021-10-31T08:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3114650a-530f-45fa-b3e6-49d22e1a5186", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-31T04:14:23.000Z" - }, - "end": { - "$date": "2021-10-31T05:08:44.000Z" - }, - "events": [ - { - "uuid": "eafa6693-240c-4a56-8909-a8f7b8d8f8b8", - "start": { - "$date": "2021-10-31T04:14:23.000Z" - }, - "end": { - "$date": "2021-10-31T05:08:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b208986d-41a8-41bb-b7a1-765e2f42963b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-31T09:09:21.000Z" - }, - "end": { - "$date": "2021-10-31T09:11:29.000Z" - }, - "events": [ - { - "uuid": "5ebcb9fb-d538-458d-9f72-cacbf8c0e43d", - "start": { - "$date": "2021-10-31T09:09:21.000Z" - }, - "end": { - "$date": "2021-10-31T09:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1d12104-8ec2-4732-95ab-83d085d786f5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T11:24:03.000Z" - }, - "end": { - "$date": "2021-10-31T11:38:33.000Z" - }, - "events": [ - { - "uuid": "2a0b3d68-ac4f-407a-a3c1-8081dd0327b8", - "start": { - "$date": "2021-10-31T11:24:03.000Z" - }, - "end": { - "$date": "2021-10-31T11:38:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89ba4eca-4559-4b47-8906-d9cf56b5dc6f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T11:43:13.000Z" - }, - "end": { - "$date": "2021-10-31T12:04:59.000Z" - }, - "events": [ - { - "uuid": "9a67f8f1-f25e-45b4-970b-46ba2ca98feb", - "start": { - "$date": "2021-10-31T11:43:13.000Z" - }, - "end": { - "$date": "2021-10-31T12:04:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abe7ec23-ba18-45e5-840b-359a4a9f85d6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T12:07:19.000Z" - }, - "end": { - "$date": "2021-10-31T12:20:00.000Z" - }, - "events": [ - { - "uuid": "39f8d8cd-9501-474a-b7ec-9b12a8739f2b", - "start": { - "$date": "2021-10-31T12:07:19.000Z" - }, - "end": { - "$date": "2021-10-31T12:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f861528-b719-4477-9468-6f980c97c9e8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T12:22:10.000Z" - }, - "end": { - "$date": "2021-10-31T12:37:32.000Z" - }, - "events": [ - { - "uuid": "72fe1057-17fd-4555-9773-0185e8252f4e", - "start": { - "$date": "2021-10-31T12:22:10.000Z" - }, - "end": { - "$date": "2021-10-31T12:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27cbdf16-9cb8-43e7-a9c1-424236823343", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T12:40:27.000Z" - }, - "end": { - "$date": "2021-10-31T12:55:04.000Z" - }, - "events": [ - { - "uuid": "d7d6b0bb-b62e-4a83-9f1d-c6728a87c7c7", - "start": { - "$date": "2021-10-31T12:40:27.000Z" - }, - "end": { - "$date": "2021-10-31T12:55:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59657d76-7d48-40b6-898f-08b6098b7d3d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T12:58:39.000Z" - }, - "end": { - "$date": "2021-10-31T13:23:23.000Z" - }, - "events": [ - { - "uuid": "0233f307-348b-4f86-9d04-608c56f7c596", - "start": { - "$date": "2021-10-31T12:58:39.000Z" - }, - "end": { - "$date": "2021-10-31T13:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bc26e4f-f90b-4a24-ae70-7aeece26ab49", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T13:26:08.000Z" - }, - "end": { - "$date": "2021-10-31T13:43:43.000Z" - }, - "events": [ - { - "uuid": "02436b77-ba55-465e-bd0e-f36a29207d48", - "start": { - "$date": "2021-10-31T13:26:08.000Z" - }, - "end": { - "$date": "2021-10-31T13:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4eae9761-b6de-4fb4-a85d-ef32c4f75027", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T13:46:15.000Z" - }, - "end": { - "$date": "2021-10-31T14:06:53.000Z" - }, - "events": [ - { - "uuid": "cb576ad3-3f1f-4739-aecf-d66d3d63eae3", - "start": { - "$date": "2021-10-31T13:46:15.000Z" - }, - "end": { - "$date": "2021-10-31T14:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74ae2875-fc1e-441d-98a3-55d2127f6c48", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T14:09:43.000Z" - }, - "end": { - "$date": "2021-10-31T14:25:31.000Z" - }, - "events": [ - { - "uuid": "0ab672ca-a2c4-41ad-a9db-5a12ed8be230", - "start": { - "$date": "2021-10-31T14:09:43.000Z" - }, - "end": { - "$date": "2021-10-31T14:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f78b23e-9c0c-4ffd-a974-01758ec1626e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T14:28:26.000Z" - }, - "end": { - "$date": "2021-10-31T14:56:24.000Z" - }, - "events": [ - { - "uuid": "8fb38c18-f848-4244-9aaa-ae802847b776", - "start": { - "$date": "2021-10-31T14:28:26.000Z" - }, - "end": { - "$date": "2021-10-31T14:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "3168f3ff-7ac0-49fa-83e9-9a4917665ad8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T14:30:08.000Z" - }, - "end": { - "$date": "2021-10-31T15:12:09.000Z" - }, - "events": [ - { - "uuid": "88bbc2bd-77b7-4c4f-a29e-c8da1fc31e36", - "start": { - "$date": "2021-10-31T14:30:08.000Z" - }, - "end": { - "$date": "2021-10-31T15:12:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "1281dda7-0ddd-4ca3-9316-98fa7c98778e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-31T14:51:18.000Z" - }, - "end": { - "$date": "2021-10-31T15:18:14.000Z" - }, - "events": [ - { - "uuid": "3e249517-b0d4-47ec-a85a-d4422ada8603", - "start": { - "$date": "2021-10-31T14:51:18.000Z" - }, - "end": { - "$date": "2021-10-31T15:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2deae208-cdf7-4f03-8770-bd1031c2f1d9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T14:58:49.000Z" - }, - "end": { - "$date": "2021-10-31T15:14:23.000Z" - }, - "events": [ - { - "uuid": "4aa0b37e-4cbf-418b-a89e-88f231db91f8", - "start": { - "$date": "2021-10-31T14:58:49.000Z" - }, - "end": { - "$date": "2021-10-31T15:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee5388af-865b-47ff-9596-99777299ed38", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T15:12:23.000Z" - }, - "end": { - "$date": "2021-10-31T15:49:24.000Z" - }, - "events": [ - { - "uuid": "b2ba573f-b49c-4b3d-bc9e-01f151620793", - "start": { - "$date": "2021-10-31T15:12:23.000Z" - }, - "end": { - "$date": "2021-10-31T15:49:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f71f11bd-a5b3-47a2-b46e-b9ba77024529", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T15:16:31.000Z" - }, - "end": { - "$date": "2021-10-31T15:52:11.000Z" - }, - "events": [ - { - "uuid": "301c8932-cd70-4eee-bd38-55a67358594c", - "start": { - "$date": "2021-10-31T15:16:31.000Z" - }, - "end": { - "$date": "2021-10-31T15:52:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "3640e451-5990-419a-9671-43ff4d881bbf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T15:50:23.000Z" - }, - "end": { - "$date": "2021-10-31T16:52:22.000Z" - }, - "events": [ - { - "uuid": "35750a1f-a733-4c75-af60-5188c3c6c17f", - "start": { - "$date": "2021-10-31T15:50:23.000Z" - }, - "end": { - "$date": "2021-10-31T16:19:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2fdf6c10-1c35-4e12-b828-89d5b70f6e2a", - "start": { - "$date": "2021-10-31T16:19:23.000Z" - }, - "end": { - "$date": "2021-10-31T16:23:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1717c58-9cae-43dc-8419-9942c3f42ad2", - "start": { - "$date": "2021-10-31T16:23:23.000Z" - }, - "end": { - "$date": "2021-10-31T16:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5deea380-4e70-4955-ad4f-dd5babc6a0c8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T15:54:51.000Z" - }, - "end": { - "$date": "2021-10-31T16:12:14.000Z" - }, - "events": [ - { - "uuid": "c774eade-ecb6-496a-b2f5-2ebdacb11e59", - "start": { - "$date": "2021-10-31T15:54:51.000Z" - }, - "end": { - "$date": "2021-10-31T16:12:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "dca59e44-2d19-42d6-900c-87c49660f8d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-31T15:53:51.000Z" - }, - "end": { - "$date": "2021-10-31T16:49:34.000Z" - }, - "events": [ - { - "uuid": "77f6ba91-416b-42a7-93b9-12d18933cb37", - "start": { - "$date": "2021-10-31T15:53:51.000Z" - }, - "end": { - "$date": "2021-10-31T16:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c6df8b4-5169-4ef5-b3e8-4381cae769f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-31T16:11:09.000Z" - }, - "end": { - "$date": "2021-10-31T17:43:27.000Z" - }, - "events": [ - { - "uuid": "8c43c0ce-7aa6-4b04-9899-3a97d57ee54a", - "start": { - "$date": "2021-10-31T16:11:09.000Z" - }, - "end": { - "$date": "2021-10-31T17:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25b698c3-f57d-42b7-94d0-70621431fa7f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T16:14:24.000Z" - }, - "end": { - "$date": "2021-10-31T16:34:46.000Z" - }, - "events": [ - { - "uuid": "f3ff6fb0-ff58-4f38-9794-e81bb681ae77", - "start": { - "$date": "2021-10-31T16:14:24.000Z" - }, - "end": { - "$date": "2021-10-31T16:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e466e613-63c3-45c9-b5de-c794b863d559", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T16:37:01.000Z" - }, - "end": { - "$date": "2021-10-31T17:05:35.000Z" - }, - "events": [ - { - "uuid": "a6329d4c-b671-428e-a894-b2741d63a31b", - "start": { - "$date": "2021-10-31T16:37:01.000Z" - }, - "end": { - "$date": "2021-10-31T17:05:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cdd2ce62-1253-4a9e-8be9-5c1ca6f7bda2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T16:52:36.000Z" - }, - "end": { - "$date": "2021-10-31T19:37:53.000Z" - }, - "events": [ - { - "uuid": "6fa1f8f6-13d2-40a7-b5e2-bc512721f40d", - "start": { - "$date": "2021-10-31T16:52:36.000Z" - }, - "end": { - "$date": "2021-10-31T19:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a11c784-4016-422e-8abe-4fe205311095", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-10-31T17:05:51.000Z" - }, - "end": { - "$date": "2021-11-01T10:13:19.000Z" - }, - "events": [ - { - "uuid": "3d180bc0-04ef-44fb-b8f5-458d9e08a80a", - "start": { - "$date": "2021-10-31T17:05:51.000Z" - }, - "end": { - "$date": "2021-10-31T17:16:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "db91440c-f647-4143-baa3-e2f3b907ddec", - "start": { - "$date": "2021-10-31T17:16:51.000Z" - }, - "end": { - "$date": "2021-10-31T17:20:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d31e8ff6-8cdb-4154-a9d4-4b4ed334f3e1", - "start": { - "$date": "2021-10-31T17:20:51.000Z" - }, - "end": { - "$date": "2021-10-31T17:53:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4356fcdc-39f8-42c7-b995-fecd1f67a97c", - "start": { - "$date": "2021-10-31T17:53:51.000Z" - }, - "end": { - "$date": "2021-10-31T17:55:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "114d98ec-803c-4766-b0ee-2d662d99ba7f", - "start": { - "$date": "2021-10-31T17:55:51.000Z" - }, - "end": { - "$date": "2021-10-31T18:58:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "18159517-e094-4fd3-bad4-6e11df0b06e6", - "start": { - "$date": "2021-10-31T18:58:51.000Z" - }, - "end": { - "$date": "2021-10-31T19:07:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c819c8b0-8841-4e6f-bc4d-be31e7cef67d", - "start": { - "$date": "2021-10-31T19:07:51.000Z" - }, - "end": { - "$date": "2021-10-31T19:54:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a568bbd-9bc4-4c2e-9d8c-4f3244791a91", - "start": { - "$date": "2021-10-31T19:54:51.000Z" - }, - "end": { - "$date": "2021-10-31T19:58:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a0ed428-7168-4f43-b6cf-c0e0a488d589", - "start": { - "$date": "2021-10-31T19:58:51.000Z" - }, - "end": { - "$date": "2021-10-31T20:15:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c393e66-072a-4d8d-860c-e5bc853a4f73", - "start": { - "$date": "2021-10-31T20:15:51.000Z" - }, - "end": { - "$date": "2021-10-31T20:26:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "89e821bd-af91-45b3-bb38-1d0810ec4260", - "start": { - "$date": "2021-10-31T20:26:51.000Z" - }, - "end": { - "$date": "2021-10-31T20:49:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b3b4fd83-d6b0-4207-8d09-19b21d15556a", - "start": { - "$date": "2021-10-31T20:49:51.000Z" - }, - "end": { - "$date": "2021-11-01T00:18:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "463f0405-804d-46cf-b308-696a20944690", - "start": { - "$date": "2021-11-01T00:18:51.000Z" - }, - "end": { - "$date": "2021-11-01T00:28:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ac22d7af-40e6-43d7-bff7-504c32a8caf8", - "start": { - "$date": "2021-11-01T00:28:51.000Z" - }, - "end": { - "$date": "2021-11-01T03:21:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d448c970-fa78-41b9-ad69-b9f5857f1f7e", - "start": { - "$date": "2021-11-01T03:21:51.000Z" - }, - "end": { - "$date": "2021-11-01T03:25:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46a943db-291f-411f-a851-443a51087fb2", - "start": { - "$date": "2021-11-01T03:25:51.000Z" - }, - "end": { - "$date": "2021-11-01T03:26:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53b7ddac-fddb-456f-b1c3-27002a2fb289", - "start": { - "$date": "2021-11-01T03:26:51.000Z" - }, - "end": { - "$date": "2021-11-01T03:28:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f6048f36-2ecf-4ad0-ad92-97f1a4628227", - "start": { - "$date": "2021-11-01T03:28:51.000Z" - }, - "end": { - "$date": "2021-11-01T04:08:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c287551-bc27-4381-b794-0c2120418da2", - "start": { - "$date": "2021-11-01T04:08:51.000Z" - }, - "end": { - "$date": "2021-11-01T06:05:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef3f8f33-c48c-4e91-813d-6cb81f5b1b25", - "start": { - "$date": "2021-11-01T06:05:51.000Z" - }, - "end": { - "$date": "2021-11-01T07:18:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4b90649-2813-41cf-9d83-4952ab1f617f", - "start": { - "$date": "2021-11-01T07:18:51.000Z" - }, - "end": { - "$date": "2021-11-01T08:09:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0329a368-1e52-457e-a5c3-689ab895c3f1", - "start": { - "$date": "2021-11-01T08:09:51.000Z" - }, - "end": { - "$date": "2021-11-01T08:14:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c167d78-cb57-4330-baed-3628d85f6de0", - "start": { - "$date": "2021-11-01T08:14:51.000Z" - }, - "end": { - "$date": "2021-11-01T08:37:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7db0041-a3c9-4d72-8b0c-65f9d94a4954", - "start": { - "$date": "2021-11-01T08:37:51.000Z" - }, - "end": { - "$date": "2021-11-01T08:41:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7b3336b2-71ae-4150-a788-5ed283289f07", - "start": { - "$date": "2021-11-01T08:41:51.000Z" - }, - "end": { - "$date": "2021-11-01T09:11:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a1dd174-f9d4-4fcf-9afb-17236848d45d", - "start": { - "$date": "2021-11-01T09:11:51.000Z" - }, - "end": { - "$date": "2021-11-01T09:13:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "62b16cab-641f-472d-8289-d99c548e4913", - "start": { - "$date": "2021-11-01T09:13:51.000Z" - }, - "end": { - "$date": "2021-11-01T10:13:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54973677-6d98-45be-b23c-1d30462c4361", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-31T18:40:18.000Z" - }, - "end": { - "$date": "2021-10-31T19:08:34.000Z" - }, - "events": [ - { - "uuid": "d052fcf2-e6a4-49b1-8b96-cec4c2a93383", - "start": { - "$date": "2021-10-31T18:40:18.000Z" - }, - "end": { - "$date": "2021-10-31T19:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34bd7c6a-94d5-49ea-b839-7403594b1ecb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-31T19:17:29.000Z" - }, - "end": { - "$date": "2021-10-31T19:39:57.000Z" - }, - "events": [ - { - "uuid": "b106d6dc-cc10-4772-a2c8-547156521598", - "start": { - "$date": "2021-10-31T19:17:29.000Z" - }, - "end": { - "$date": "2021-10-31T19:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "f2fada2f-56a6-4cfe-8621-520bf0caa18a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-10-31T19:26:40.000Z" - }, - "end": { - "$date": "2021-10-31T20:03:47.000Z" - }, - "events": [ - { - "uuid": "235d0ce7-bf72-4dc4-a616-72160b79daeb", - "start": { - "$date": "2021-10-31T19:26:40.000Z" - }, - "end": { - "$date": "2021-10-31T20:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc797d0c-9688-47df-be1f-dc8e334d467e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-10-31T23:29:31.000Z" - }, - "end": { - "$date": "2021-11-01T00:01:20.000Z" - }, - "events": [ - { - "uuid": "3c262e41-bdc6-4394-b457-e2522a8d8501", - "start": { - "$date": "2021-10-31T23:29:31.000Z" - }, - "end": { - "$date": "2021-11-01T00:56:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0b62267f-6092-4598-93b3-ab9b58b04b50", - "start": { - "$date": "2021-11-01T00:56:31.000Z" - }, - "end": { - "$date": "2021-11-01T01:00:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b95a58b4-ac89-4739-98ca-08abfa60426a", - "start": { - "$date": "2021-11-01T01:00:31.000Z" - }, - "end": { - "$date": "2021-11-01T01:10:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4506d3b-27f9-4435-87db-7c864eec9be8", - "start": { - "$date": "2021-11-01T01:10:31.000Z" - }, - "end": { - "$date": "2021-11-01T01:18:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "34f0639f-490f-4325-baf8-c5ad560b9650", - "start": { - "$date": "2021-11-01T01:18:31.000Z" - }, - "end": { - "$date": "2021-11-01T01:22:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "10fe1d6d-6618-49fd-af7a-0d47b0026222", - "start": { - "$date": "2021-11-01T01:22:31.000Z" - }, - "end": { - "$date": "2021-11-01T01:56:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "66a94de5-51b4-46fd-97e5-dd39d18bc9a7", - "start": { - "$date": "2021-11-01T01:56:31.000Z" - }, - "end": { - "$date": "2021-11-01T02:21:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "27e59d67-5d14-49f7-9c96-e3a172d19104", - "start": { - "$date": "2021-11-01T02:21:31.000Z" - }, - "end": { - "$date": "2021-11-01T03:04:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9ba0d8a-7e60-4b48-8fb1-4ae081b72d1a", - "start": { - "$date": "2021-11-01T03:04:31.000Z" - }, - "end": { - "$date": "2021-11-01T00:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "017f37d8-ef83-4b69-b675-f2108b8d0fb1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-31T20:10:12.000Z" - }, - "end": { - "$date": "2021-10-31T20:10:18.000Z" - }, - "events": [ - { - "uuid": "7a295cd1-b573-44f9-b0ed-25b8efa0e30f", - "start": { - "$date": "2021-10-31T20:10:12.000Z" - }, - "end": { - "$date": "2021-10-31T20:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", - "uuid": "012eea9e-e62c-43b7-b4f8-82893cbee9b7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-31T20:32:50.000Z" - }, - "end": { - "$date": "2021-10-31T22:47:18.000Z" - }, - "events": [ - { - "uuid": "5df973bc-b077-40cf-b4e2-62d8e160e63b", - "start": { - "$date": "2021-10-31T20:32:50.000Z" - }, - "end": { - "$date": "2021-10-31T20:52:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dea610de-6172-45fc-9b08-cec8be0de0fd", - "start": { - "$date": "2021-10-31T20:52:50.000Z" - }, - "end": { - "$date": "2021-10-31T20:55:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3cefe24a-f5d2-4b37-8c98-6693f5f6ef9b", - "start": { - "$date": "2021-10-31T20:55:50.000Z" - }, - "end": { - "$date": "2021-10-31T21:26:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed7bf4ba-ad96-4cb5-bb03-d1f00ced92f8", - "start": { - "$date": "2021-10-31T21:26:50.000Z" - }, - "end": { - "$date": "2021-10-31T21:27:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e85973a1-750f-4802-a9ad-ca1bedce8bed", - "start": { - "$date": "2021-10-31T21:27:50.000Z" - }, - "end": { - "$date": "2021-10-31T21:38:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80981239-3ad7-40fa-a2e5-615fbcaa53f3", - "start": { - "$date": "2021-10-31T21:38:50.000Z" - }, - "end": { - "$date": "2021-10-31T21:49:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9399b67e-a294-4c19-b8b4-a699fe044d76", - "start": { - "$date": "2021-10-31T21:49:50.000Z" - }, - "end": { - "$date": "2021-10-31T22:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1db0f3f9-d7c5-45d9-95a5-ea2b009f14e8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-31T20:47:27.000Z" - }, - "end": { - "$date": "2021-10-31T21:13:41.000Z" - }, - "events": [ - { - "uuid": "b7104cc6-2203-4067-9cd1-3a47c0ef2080", - "start": { - "$date": "2021-10-31T20:47:27.000Z" - }, - "end": { - "$date": "2021-10-31T21:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eeee31f4-65af-470c-aae3-69a19623afbf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-10-31T21:20:13.000Z" - }, - "end": { - "$date": "2021-10-31T22:50:29.000Z" - }, - "events": [ - { - "uuid": "fc05fb98-1891-49c3-85ec-65b7abd0940e", - "start": { - "$date": "2021-10-31T21:20:13.000Z" - }, - "end": { - "$date": "2021-10-31T22:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e3ecd188-514b-48e9-8a26-dd0e671c77dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-10-31T22:02:24.000Z" - }, - "end": { - "$date": "2021-10-31T23:07:17.000Z" - }, - "events": [ - { - "uuid": "b842b95a-7f24-4a92-ac6b-f4a30a0f6e61", - "start": { - "$date": "2021-10-31T22:02:24.000Z" - }, - "end": { - "$date": "2021-10-31T23:07:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2699aa1-41f4-4e21-9d40-960390b5b07b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T22:12:56.000Z" - }, - "end": { - "$date": "2021-10-31T23:11:17.000Z" - }, - "events": [ - { - "uuid": "6fa18517-209d-43e3-a007-58b4a70da3b8", - "start": { - "$date": "2021-10-31T22:12:56.000Z" - }, - "end": { - "$date": "2021-10-31T23:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", - "uuid": "edc268cc-cb65-4b5b-aa1d-f249cf604049", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-10-31T23:21:46.000Z" - }, - "end": { - "$date": "2021-10-31T23:37:53.000Z" - }, - "events": [ - { - "uuid": "ccfbc4c8-6652-4178-be4f-9bf7b23f8525", - "start": { - "$date": "2021-10-31T23:21:46.000Z" - }, - "end": { - "$date": "2021-10-31T23:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "92b247a1-5e86-4e2c-bd63-2f8a2e3a9e68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-10-31T23:22:07.000Z" - }, - "end": { - "$date": "2021-10-31T23:36:14.000Z" - }, - "events": [ - { - "uuid": "5a565827-30e3-4ff1-b6f1-863252fb0fa6", - "start": { - "$date": "2021-10-31T23:22:07.000Z" - }, - "end": { - "$date": "2021-10-31T23:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "189a3f2f-6d29-44c0-81cb-c9c0e03485ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-10-31T23:43:01.000Z" - }, - "end": { - "$date": "2021-11-01T04:48:55.000Z" - }, - "events": [ - { - "uuid": "5a7bd273-a5cb-4ec8-8dcd-d7853218bcda", - "start": { - "$date": "2021-10-31T23:43:01.000Z" - }, - "end": { - "$date": "2021-11-01T04:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45633683-d601-4f32-b74f-aa73522cedee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T00:08:46.000Z" - }, - "end": { - "$date": "2021-11-01T00:21:44.000Z" - }, - "events": [ - { - "uuid": "245f1f61-ee9f-41f9-b26b-adfd5d706fdf", - "start": { - "$date": "2021-11-01T00:08:46.000Z" - }, - "end": { - "$date": "2021-11-01T00:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71f5a3fe-6169-4429-a9b0-440724134739", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-01T00:07:20.000Z" - }, - "end": { - "$date": "2021-11-01T00:47:45.000Z" - }, - "events": [ - { - "uuid": "bcf739d3-b763-43d0-aa4b-314cfec58abf", - "start": { - "$date": "2021-11-01T00:07:20.000Z" - }, - "end": { - "$date": "2021-11-01T00:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "1bfa0bff-f8a4-4eb2-9c52-133f14d475a0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T00:38:52.000Z" - }, - "end": { - "$date": "2021-11-01T01:59:56.000Z" - }, - "events": [ - { - "uuid": "72a20028-fdfd-4fb3-aa3e-ff8d41e904ae", - "start": { - "$date": "2021-11-01T00:38:52.000Z" - }, - "end": { - "$date": "2021-11-01T01:59:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2d7e1ed-91e9-4054-9fc9-7500dcf55f4d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-01T01:05:48.000Z" - }, - "end": { - "$date": "2021-11-01T02:40:43.000Z" - }, - "events": [ - { - "uuid": "5fc5f048-9571-447d-83a6-5796d1dc99ca", - "start": { - "$date": "2021-11-01T01:05:48.000Z" - }, - "end": { - "$date": "2021-11-01T02:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8bfe3ad6-4ef3-4b23-a05e-f6fd7d2a72ef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-01T01:35:51.000Z" - }, - "end": { - "$date": "2021-11-01T03:21:54.000Z" - }, - "events": [ - { - "uuid": "cac86f54-9a19-463d-bf42-d6dc57f1d652", - "start": { - "$date": "2021-11-01T01:35:51.000Z" - }, - "end": { - "$date": "2021-11-01T03:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b584e841-7399-47be-8cb7-b542e425c336", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T02:57:48.000Z" - }, - "end": { - "$date": "2021-11-01T03:13:57.000Z" - }, - "events": [ - { - "uuid": "d9546663-6a7b-4419-9aff-5ec2f2b3ed3b", - "start": { - "$date": "2021-11-01T02:57:48.000Z" - }, - "end": { - "$date": "2021-11-01T03:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22a9ee92-b8dc-4de7-9937-3e4a77f9a6e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T03:22:28.000Z" - }, - "end": { - "$date": "2021-11-01T03:45:30.000Z" - }, - "events": [ - { - "uuid": "5b76d6fd-4f63-4c73-a2ed-5f25b917c43f", - "start": { - "$date": "2021-11-01T03:22:28.000Z" - }, - "end": { - "$date": "2021-11-01T03:45:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "adcca20f-cb7b-4d8e-977a-ce3104c28823", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-01T03:22:15.000Z" - }, - "end": { - "$date": "2021-11-01T04:50:08.000Z" - }, - "events": [ - { - "uuid": "613c41bc-e3c5-484c-88cb-fb67ac3ba508", - "start": { - "$date": "2021-11-01T03:22:15.000Z" - }, - "end": { - "$date": "2021-11-01T04:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "47be30ba-6f3a-4a86-bc1f-e941ca037914", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-01T03:44:36.000Z" - }, - "end": { - "$date": "2021-11-01T06:22:32.000Z" - }, - "events": [ - { - "uuid": "c82d4cb7-8b5d-47cc-87bf-4afa65230c7f", - "start": { - "$date": "2021-11-01T03:44:36.000Z" - }, - "end": { - "$date": "2021-11-01T06:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b3e374a0-5e83-4405-b0a7-f0ffa58c9862", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-01T03:44:59.000Z" - }, - "end": { - "$date": "2021-11-01T07:27:13.000Z" - }, - "events": [ - { - "uuid": "4512f968-7f47-459b-b374-5b525d611c18", - "start": { - "$date": "2021-11-01T03:44:59.000Z" - }, - "end": { - "$date": "2021-11-01T07:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "8c1d1743-2cec-4064-aa33-c0a3e11bc83a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-01T03:58:01.000Z" - }, - "end": { - "$date": "2021-11-01T04:05:37.000Z" - }, - "events": [ - { - "uuid": "1ef04eb1-9ade-4064-b6b7-9b8aeeaccc3d", - "start": { - "$date": "2021-11-01T03:58:01.000Z" - }, - "end": { - "$date": "2021-11-01T04:05:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0c6dbed8-4e41-4fe5-b63b-88fd6671b924", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-01T04:07:12.000Z" - }, - "end": { - "$date": "2021-11-01T04:50:29.000Z" - }, - "events": [ - { - "uuid": "c52db2bb-f974-48de-9b1a-3d87278e3511", - "start": { - "$date": "2021-11-01T04:07:12.000Z" - }, - "end": { - "$date": "2021-11-01T04:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a692a65a-59e2-4116-a30e-2331fe88c744", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-01T04:58:14.000Z" - }, - "end": { - "$date": "2021-11-01T05:40:47.000Z" - }, - "events": [ - { - "uuid": "e12a6e20-c05e-4cf6-b56b-3b1bd3817379", - "start": { - "$date": "2021-11-01T04:58:14.000Z" - }, - "end": { - "$date": "2021-11-01T05:40:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12b6b681-adf8-4973-9ce3-0d6232c569f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T17:58:33.000Z" - }, - "end": { - "$date": "2021-11-01T18:20:56.000Z" - }, - "events": [ - { - "uuid": "63f57337-9cd5-4045-b1de-3774d084d9f9", - "start": { - "$date": "2021-11-01T17:58:33.000Z" - }, - "end": { - "$date": "2021-11-01T18:20:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "89ab0450-98eb-4470-a46d-057bc25da9e2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-01T19:26:11.000Z" - }, - "end": { - "$date": "2021-11-01T20:14:59.000Z" - }, - "events": [ - { - "uuid": "821878fa-7bef-4f84-8e15-e67bcd33240f", - "start": { - "$date": "2021-11-01T19:26:11.000Z" - }, - "end": { - "$date": "2021-11-01T20:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a55d2084-e478-4635-905b-80a1dab6df85", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T20:59:02.000Z" - }, - "end": { - "$date": "2021-11-01T21:10:49.000Z" - }, - "events": [ - { - "uuid": "b8346dc3-88e2-47cf-987e-4fa871b7b8ee", - "start": { - "$date": "2021-11-01T20:59:02.000Z" - }, - "end": { - "$date": "2021-11-01T21:10:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b16ecdd4-401b-4eb6-b0bb-cd4421374434", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-01T21:14:53.000Z" - }, - "end": { - "$date": "2021-11-01T21:31:20.000Z" - }, - "events": [ - { - "uuid": "74921b55-384d-4efc-9f28-5051bc4aa5e5", - "start": { - "$date": "2021-11-01T21:14:53.000Z" - }, - "end": { - "$date": "2021-11-01T21:31:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ec2e1325-002b-477c-a80b-f0d80ddfb94e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-01T22:40:45.000Z" - }, - "end": { - "$date": "2021-11-01T23:40:46.000Z" - }, - "events": [ - { - "uuid": "47e0ba4c-d2ac-4f90-b648-da5881719474", - "start": { - "$date": "2021-11-01T22:40:45.000Z" - }, - "end": { - "$date": "2021-11-01T23:40:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "718da138-f583-4280-b228-2e7722027d9f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-01T23:32:44.000Z" - }, - "end": { - "$date": "2021-11-02T00:42:32.000Z" - }, - "events": [ - { - "uuid": "a2421a86-e42e-464b-a82a-a2f2553113b7", - "start": { - "$date": "2021-11-01T23:32:44.000Z" - }, - "end": { - "$date": "2021-11-02T00:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "56805647-0c6b-466b-a3ad-0ae214828c7e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-01T23:28:21.000Z" - }, - "end": { - "$date": "2021-11-02T04:56:49.000Z" - }, - "events": [ - { - "uuid": "56258096-a2a7-43e6-a232-8f4e098eca95", - "start": { - "$date": "2021-11-01T23:28:21.000Z" - }, - "end": { - "$date": "2021-11-02T04:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "681cc2de-dda3-47fd-b8b7-73cae8bc5121", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-02T00:49:35.000Z" - }, - "end": { - "$date": "2021-11-02T01:36:51.000Z" - }, - "events": [ - { - "uuid": "20941e42-423a-4c6c-ac9b-1173e254fd3c", - "start": { - "$date": "2021-11-02T00:49:35.000Z" - }, - "end": { - "$date": "2021-11-02T01:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b222866e-03b1-4ffd-912b-16dd8180399c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-02T00:53:10.000Z" - }, - "end": { - "$date": "2021-11-02T01:52:19.000Z" - }, - "events": [ - { - "uuid": "b80da704-e0ea-4d00-bb58-7da6bed1ccda", - "start": { - "$date": "2021-11-02T00:53:10.000Z" - }, - "end": { - "$date": "2021-11-02T01:26:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a9fd76e-e13b-4438-8bb9-ac6dbe6f5174", - "start": { - "$date": "2021-11-02T01:26:10.000Z" - }, - "end": { - "$date": "2021-11-02T01:52:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e94050e1-9161-4adb-b317-ea9893602d52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T01:09:10.000Z" - }, - "end": { - "$date": "2021-11-02T01:23:41.000Z" - }, - "events": [ - { - "uuid": "24019c71-574a-4404-a235-570648439929", - "start": { - "$date": "2021-11-02T01:09:10.000Z" - }, - "end": { - "$date": "2021-11-02T01:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09bbea4e-5cca-4697-95e3-48c5db6df2ee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-02T01:52:24.000Z" - }, - "end": { - "$date": "2021-11-02T01:58:40.000Z" - }, - "events": [ - { - "uuid": "03dbb938-618f-4c48-9da0-468961d826d0", - "start": { - "$date": "2021-11-02T01:52:24.000Z" - }, - "end": { - "$date": "2021-11-02T01:53:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84dabde4-f1e0-4143-bf36-19b78758a712", - "start": { - "$date": "2021-11-02T01:53:24.000Z" - }, - "end": { - "$date": "2021-11-02T01:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "018cee52-dd3e-45b4-84ce-fc3e103d39ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-02T02:24:55.000Z" - }, - "end": { - "$date": "2021-11-02T02:34:48.000Z" - }, - "events": [ - { - "uuid": "c7257074-da17-4f49-9e6c-71998d1a5b31", - "start": { - "$date": "2021-11-02T02:24:55.000Z" - }, - "end": { - "$date": "2021-11-02T02:34:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bec41586-3b8c-473a-b55b-1201aaa19d81", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-02T02:38:35.000Z" - }, - "end": { - "$date": "2021-11-02T03:08:13.000Z" - }, - "events": [ - { - "uuid": "0e2001b7-dd8b-4edc-82fe-a50dcbb0aa70", - "start": { - "$date": "2021-11-02T02:38:35.000Z" - }, - "end": { - "$date": "2021-11-02T03:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "1a8bf905-867f-4474-99a4-3ce86e4d31c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T02:40:19.000Z" - }, - "end": { - "$date": "2021-11-02T02:44:25.000Z" - }, - "events": [ - { - "uuid": "e1aaa1c5-bc8f-442d-8df0-89b3338b15cb", - "start": { - "$date": "2021-11-02T02:40:19.000Z" - }, - "end": { - "$date": "2021-11-02T02:44:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "ec0a6756-9ea4-4085-b581-7905e38c7b8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T02:44:49.000Z" - }, - "end": { - "$date": "2021-11-02T04:14:55.000Z" - }, - "events": [ - { - "uuid": "ddd765a1-14a5-4666-8ee8-c9815bd5db23", - "start": { - "$date": "2021-11-02T02:44:49.000Z" - }, - "end": { - "$date": "2021-11-02T04:14:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "33335d41-606b-4bed-ab4b-0d6468729ddb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-02T03:23:39.000Z" - }, - "end": { - "$date": "2021-11-02T04:09:55.000Z" - }, - "events": [ - { - "uuid": "2340d955-ad5a-4806-973d-8287a56c4c87", - "start": { - "$date": "2021-11-02T03:23:39.000Z" - }, - "end": { - "$date": "2021-11-02T04:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd3d542c-23fa-4915-b3ac-82957b1db721", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-02T03:54:19.000Z" - }, - "end": { - "$date": "2021-11-02T04:24:38.000Z" - }, - "events": [ - { - "uuid": "66e4f078-3e2b-4dd7-a068-c01071926dbc", - "start": { - "$date": "2021-11-02T03:54:19.000Z" - }, - "end": { - "$date": "2021-11-02T04:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d28da42f-a429-4199-bed2-d21f2e5c00d7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-02T04:12:40.000Z" - }, - "end": { - "$date": "2021-11-02T05:32:37.000Z" - }, - "events": [ - { - "uuid": "d26e6033-f135-47f6-b108-bb742450efe2", - "start": { - "$date": "2021-11-02T04:12:40.000Z" - }, - "end": { - "$date": "2021-11-02T05:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c662d47-a375-44a3-b229-dfce6c90fb23", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-02T04:33:44.000Z" - }, - "end": { - "$date": "2021-11-02T05:11:01.000Z" - }, - "events": [ - { - "uuid": "a540620a-99c0-4051-b646-b032b25bcb27", - "start": { - "$date": "2021-11-02T04:33:44.000Z" - }, - "end": { - "$date": "2021-11-02T05:11:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0938bce5-b00a-4aa1-be89-14e2dd17ee37", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-02T05:20:49.000Z" - }, - "end": { - "$date": "2021-11-02T05:50:52.000Z" - }, - "events": [ - { - "uuid": "28640928-c3f9-4cc0-8813-217909f25461", - "start": { - "$date": "2021-11-02T05:20:49.000Z" - }, - "end": { - "$date": "2021-11-02T05:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "258f4d57-5099-4a56-8771-3ed78490f5ca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-02T05:32:52.000Z" - }, - "end": { - "$date": "2021-11-02T06:21:48.000Z" - }, - "events": [ - { - "uuid": "865ac9bb-aeac-4be8-bc6a-96c60962dc38", - "start": { - "$date": "2021-11-02T05:32:52.000Z" - }, - "end": { - "$date": "2021-11-02T06:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3d8e0dd5-999a-4101-9b9a-825d19f99ff7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-02T06:59:52.000Z" - }, - "end": { - "$date": "2021-11-02T07:47:47.000Z" - }, - "events": [ - { - "uuid": "7c6a7eca-048c-4734-b6c1-8f0727d6b4a4", - "start": { - "$date": "2021-11-02T06:59:52.000Z" - }, - "end": { - "$date": "2021-11-02T07:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f077160c-cfe0-4afa-ae8b-00db07e23fa0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-02T12:58:28.000Z" - }, - "end": { - "$date": "2021-11-02T13:19:33.000Z" - }, - "events": [ - { - "uuid": "16bdd689-6843-4c8f-b3cf-2aab4d1ada0e", - "start": { - "$date": "2021-11-02T12:58:28.000Z" - }, - "end": { - "$date": "2021-11-02T13:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8ac631d-e6f5-408e-ab88-731381ddab64", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-02T13:23:06.000Z" - }, - "end": { - "$date": "2021-11-02T13:54:41.000Z" - }, - "events": [ - { - "uuid": "71dce515-3a41-4e36-982f-676dc872870e", - "start": { - "$date": "2021-11-02T13:23:06.000Z" - }, - "end": { - "$date": "2021-11-02T13:54:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3760c10a-f9c5-49af-99b1-da21c567541d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-02T13:59:21.000Z" - }, - "end": { - "$date": "2021-11-02T14:27:30.000Z" - }, - "events": [ - { - "uuid": "9467a3dd-40bf-4626-a01e-4db5b33784b9", - "start": { - "$date": "2021-11-02T13:59:21.000Z" - }, - "end": { - "$date": "2021-11-02T14:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "4c1c124a-3289-4de1-b278-f039b927511e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T14:27:09.000Z" - }, - "end": { - "$date": "2021-11-02T16:07:53.000Z" - }, - "events": [ - { - "uuid": "1718bc96-2a6c-481a-ab96-8224ecea2121", - "start": { - "$date": "2021-11-02T14:27:09.000Z" - }, - "end": { - "$date": "2021-11-02T15:03:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5d4b8bf-b53d-4e2f-8895-076095106ef9", - "start": { - "$date": "2021-11-02T15:03:09.000Z" - }, - "end": { - "$date": "2021-11-02T15:05:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "832329ce-02ba-4d47-8a38-ff6fc91b08f2", - "start": { - "$date": "2021-11-02T15:05:09.000Z" - }, - "end": { - "$date": "2021-11-02T16:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24ea5641-53ec-4a1f-8a33-0ab67b2ba458", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-02T14:30:35.000Z" - }, - "end": { - "$date": "2021-11-02T14:52:07.000Z" - }, - "events": [ - { - "uuid": "cfd4d442-48ca-4852-8d87-b26ea355fc81", - "start": { - "$date": "2021-11-02T14:30:35.000Z" - }, - "end": { - "$date": "2021-11-02T14:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5522ae27-6577-4302-9e12-8cc276f559fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T14:41:19.000Z" - }, - "end": { - "$date": "2021-11-02T15:01:20.000Z" - }, - "events": [ - { - "uuid": "d9b3fc34-75f1-4617-a84c-15547363ba44", - "start": { - "$date": "2021-11-02T14:41:19.000Z" - }, - "end": { - "$date": "2021-11-02T15:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f2a9f5f-1ac3-4eaf-a742-d3d1a995815b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-02T14:56:58.000Z" - }, - "end": { - "$date": "2021-11-02T15:16:06.000Z" - }, - "events": [ - { - "uuid": "803a64c2-781e-4491-a9a5-22ccb98c8dff", - "start": { - "$date": "2021-11-02T14:56:58.000Z" - }, - "end": { - "$date": "2021-11-02T15:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "845a29d2-2fb7-426b-8cde-684c2caac0a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T15:11:00.000Z" - }, - "end": { - "$date": "2021-11-02T15:35:32.000Z" - }, - "events": [ - { - "uuid": "86b65ef3-775e-4dd7-839d-d04849af1628", - "start": { - "$date": "2021-11-02T15:11:00.000Z" - }, - "end": { - "$date": "2021-11-02T15:35:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a08bf6e-6c73-4448-9eab-8408e8204e48", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-02T15:18:56.000Z" - }, - "end": { - "$date": "2021-11-02T15:37:34.000Z" - }, - "events": [ - { - "uuid": "44578ba2-b1a1-47b7-bc86-6fdfb744863b", - "start": { - "$date": "2021-11-02T15:18:56.000Z" - }, - "end": { - "$date": "2021-11-02T15:37:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "16437906-3e1d-40f3-b919-23bd2f7155ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T15:58:49.000Z" - }, - "end": { - "$date": "2021-11-02T17:31:49.000Z" - }, - "events": [ - { - "uuid": "58e0e15a-2738-4ac9-952f-e57afcf27cfc", - "start": { - "$date": "2021-11-02T15:58:49.000Z" - }, - "end": { - "$date": "2021-11-02T17:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a6536fad-5989-4a5e-b26c-4d60846f5c4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T16:09:49.000Z" - }, - "end": { - "$date": "2021-11-02T17:12:21.000Z" - }, - "events": [ - { - "uuid": "40982b9b-7347-4933-b6c5-105d9d266d52", - "start": { - "$date": "2021-11-02T16:09:49.000Z" - }, - "end": { - "$date": "2021-11-02T17:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "015ada67-6da4-4867-a30b-724ca7c98c82", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T17:12:41.000Z" - }, - "end": { - "$date": "2021-11-02T17:37:05.000Z" - }, - "events": [ - { - "uuid": "897075fd-b9a3-4c0f-bd41-8f5eb82c24b1", - "start": { - "$date": "2021-11-02T17:12:41.000Z" - }, - "end": { - "$date": "2021-11-02T17:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "baa8b5aa-b2bc-43d0-b97a-8bca3fd6e6fb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-02T18:00:16.000Z" - }, - "end": { - "$date": "2021-11-02T18:38:10.000Z" - }, - "events": [ - { - "uuid": "23e81daf-953b-4080-aec5-1ac7171be746", - "start": { - "$date": "2021-11-02T18:00:16.000Z" - }, - "end": { - "$date": "2021-11-02T18:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5ad92b20-34c9-4aa6-9729-e26a204d8574", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-02T18:10:54.000Z" - }, - "end": { - "$date": "2021-11-02T18:54:55.000Z" - }, - "events": [ - { - "uuid": "053e3451-c7a4-43f2-9d16-a827744472a2", - "start": { - "$date": "2021-11-02T18:10:54.000Z" - }, - "end": { - "$date": "2021-11-02T18:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "00f2937b-1254-472a-9dac-502168656c12", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-02T19:07:31.000Z" - }, - "end": { - "$date": "2021-11-02T19:38:43.000Z" - }, - "events": [ - { - "uuid": "8e2baa42-fe71-4745-9e6e-f6121dbe781b", - "start": { - "$date": "2021-11-02T19:07:31.000Z" - }, - "end": { - "$date": "2021-11-02T19:38:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f7493eb0-d014-43d2-aede-013d99b3dcaa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T19:31:50.000Z" - }, - "end": { - "$date": "2021-11-02T20:52:29.000Z" - }, - "events": [ - { - "uuid": "16206709-5c85-44f2-a92c-df28309a5a5d", - "start": { - "$date": "2021-11-02T19:31:50.000Z" - }, - "end": { - "$date": "2021-11-02T20:52:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "c6608550-0889-4a7b-a90e-23f3de7dfd64", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T20:56:49.000Z" - }, - "end": { - "$date": "2021-11-02T20:59:35.000Z" - }, - "events": [ - { - "uuid": "c2f9e41f-2288-4887-a4a2-a89a3bcad12a", - "start": { - "$date": "2021-11-02T20:56:49.000Z" - }, - "end": { - "$date": "2021-11-02T20:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ced55151-b3d1-4b26-bca5-fd4508690b74", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T21:00:10.000Z" - }, - "end": { - "$date": "2021-11-02T21:22:23.000Z" - }, - "events": [ - { - "uuid": "9ec77900-a6ba-4ae5-a727-ec2525a69bf0", - "start": { - "$date": "2021-11-02T21:00:10.000Z" - }, - "end": { - "$date": "2021-11-02T21:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d7b9eef2-276c-4125-826f-5853b72d9570", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T21:24:33.000Z" - }, - "end": { - "$date": "2021-11-02T21:50:16.000Z" - }, - "events": [ - { - "uuid": "3ed0d75d-c6b7-48b7-80d2-7113d393eaa5", - "start": { - "$date": "2021-11-02T21:24:33.000Z" - }, - "end": { - "$date": "2021-11-02T21:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2e7bb4e2-7ac0-4fd1-a9f7-b667659a6663", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T21:50:32.000Z" - }, - "end": { - "$date": "2021-11-02T23:41:44.000Z" - }, - "events": [ - { - "uuid": "8ea1d1cd-b266-4930-8eb0-bf29de9c6d0a", - "start": { - "$date": "2021-11-02T21:50:32.000Z" - }, - "end": { - "$date": "2021-11-02T22:01:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77a8d808-9167-43f7-9d4a-b0c591802215", - "start": { - "$date": "2021-11-02T22:01:32.000Z" - }, - "end": { - "$date": "2021-11-02T22:06:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0084f869-c8b8-486b-bede-9be5cfb39c6d", - "start": { - "$date": "2021-11-02T22:06:32.000Z" - }, - "end": { - "$date": "2021-11-02T23:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3cf18046-1435-44fc-acb0-ddd9bfb83928", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-02T22:07:44.000Z" - }, - "end": { - "$date": "2021-11-02T22:35:08.000Z" - }, - "events": [ - { - "uuid": "d215c6eb-a044-4b38-a358-ccbd4224949c", - "start": { - "$date": "2021-11-02T22:07:44.000Z" - }, - "end": { - "$date": "2021-11-02T22:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "855d22f1-d58c-4fb5-8e9a-5571fb81ec3f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-02T23:10:56.000Z" - }, - "end": { - "$date": "2021-11-03T03:01:52.000Z" - }, - "events": [ - { - "uuid": "fd458fe3-6c17-46e8-abd8-238625b17106", - "start": { - "$date": "2021-11-02T23:10:56.000Z" - }, - "end": { - "$date": "2021-11-02T23:35:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cee690bf-6e21-477c-95f1-b1c188e9daa9", - "start": { - "$date": "2021-11-02T23:35:56.000Z" - }, - "end": { - "$date": "2021-11-02T23:46:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "86973d37-7486-414f-bf8e-00125ba3630b", - "start": { - "$date": "2021-11-02T23:46:56.000Z" - }, - "end": { - "$date": "2021-11-03T00:01:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d1cd06d-9c45-4ede-b73e-0827da1a16c4", - "start": { - "$date": "2021-11-03T00:01:56.000Z" - }, - "end": { - "$date": "2021-11-03T00:23:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a018275c-690d-463d-9390-9e1ace34cae1", - "start": { - "$date": "2021-11-03T00:23:56.000Z" - }, - "end": { - "$date": "2021-11-03T03:01:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "dc4e49b6-ff65-464c-8932-bd5b154a3af4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-02T23:46:34.000Z" - }, - "end": { - "$date": "2021-11-03T00:15:08.000Z" - }, - "events": [ - { - "uuid": "1a2be637-13c5-423d-9605-8d9d4da7d461", - "start": { - "$date": "2021-11-02T23:46:34.000Z" - }, - "end": { - "$date": "2021-11-03T00:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "b871ea70-2a5e-484f-983c-1c4b16ab6021", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T00:39:44.000Z" - }, - "end": { - "$date": "2021-11-03T01:19:11.000Z" - }, - "events": [ - { - "uuid": "d53ea5f7-7410-400d-b825-fe17e38ec15d", - "start": { - "$date": "2021-11-03T00:39:44.000Z" - }, - "end": { - "$date": "2021-11-03T01:19:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b10c623-a7ab-481c-af45-770b905117c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T01:39:18.000Z" - }, - "end": { - "$date": "2021-11-03T02:00:40.000Z" - }, - "events": [ - { - "uuid": "8ca673b9-4a12-42c5-b2ab-fa1f991f34a6", - "start": { - "$date": "2021-11-03T01:39:18.000Z" - }, - "end": { - "$date": "2021-11-03T02:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49f6ebb0-c5ef-4a9a-9eab-328acd7a8de2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T02:05:38.000Z" - }, - "end": { - "$date": "2021-11-03T02:20:44.000Z" - }, - "events": [ - { - "uuid": "838afe34-abe5-476d-83d1-5cbec89991ba", - "start": { - "$date": "2021-11-03T02:05:38.000Z" - }, - "end": { - "$date": "2021-11-03T02:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5291d11e-3e6e-4466-9d23-8c8c9fc1e539", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-03T02:05:17.000Z" - }, - "end": { - "$date": "2021-11-03T05:04:58.000Z" - }, - "events": [ - { - "uuid": "96a0144d-c6c4-43a2-af7c-113dbd6922c3", - "start": { - "$date": "2021-11-03T02:05:17.000Z" - }, - "end": { - "$date": "2021-11-03T05:04:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0b733515-1b12-45a8-9539-f5edea1eea12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-03T02:07:36.000Z" - }, - "end": { - "$date": "2021-11-03T04:41:48.000Z" - }, - "events": [ - { - "uuid": "70e22645-2b6a-4c2c-8c2b-eae3c839e7a4", - "start": { - "$date": "2021-11-03T02:07:36.000Z" - }, - "end": { - "$date": "2021-11-03T04:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "76e25bb9-ead3-4e18-9477-0dc1f79c6995", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-03T02:34:32.000Z" - }, - "end": { - "$date": "2021-11-03T04:02:34.000Z" - }, - "events": [ - { - "uuid": "23d768c9-fbd8-4051-80c7-c3b2819a49dc", - "start": { - "$date": "2021-11-03T02:34:32.000Z" - }, - "end": { - "$date": "2021-11-03T04:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a44f28b0-3713-4bed-ab15-c884fcd873cb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-03T02:57:02.000Z" - }, - "end": { - "$date": "2021-11-03T06:10:02.000Z" - }, - "events": [ - { - "uuid": "7904ce41-b243-4254-82ea-c005139134b2", - "start": { - "$date": "2021-11-03T02:57:02.000Z" - }, - "end": { - "$date": "2021-11-03T06:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ee3d5850-4896-4b54-9a00-4501df09ad09", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-03T03:06:29.000Z" - }, - "end": { - "$date": "2021-11-03T04:40:38.000Z" - }, - "events": [ - { - "uuid": "0154b0e4-0ce2-4ab4-89a6-1eedcf68db8a", - "start": { - "$date": "2021-11-03T03:06:29.000Z" - }, - "end": { - "$date": "2021-11-03T04:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "69724a8a-fe84-4fbb-8715-05d02060656a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T03:13:04.000Z" - }, - "end": { - "$date": "2021-11-03T04:02:45.000Z" - }, - "events": [ - { - "uuid": "9bb0c57f-5b8e-48bc-9212-184c70ddb476", - "start": { - "$date": "2021-11-03T03:13:04.000Z" - }, - "end": { - "$date": "2021-11-03T04:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8852baa0-ffd5-46b0-993f-2e1e56cff1d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T04:04:25.000Z" - }, - "end": { - "$date": "2021-11-03T04:40:37.000Z" - }, - "events": [ - { - "uuid": "fc62c189-2ec1-45fd-8e0f-439f4c18f21a", - "start": { - "$date": "2021-11-03T04:04:25.000Z" - }, - "end": { - "$date": "2021-11-03T04:40:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67b0c9db-e3d3-4291-a5ea-604f41de70b2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-03T04:55:10.000Z" - }, - "end": { - "$date": "2021-11-03T05:31:45.000Z" - }, - "events": [ - { - "uuid": "2b4b73b3-5101-4c46-a115-5a712af6ddc2", - "start": { - "$date": "2021-11-03T04:55:10.000Z" - }, - "end": { - "$date": "2021-11-03T05:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49bba2af-2799-4e31-bdaf-2a52f4100a35", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-03T05:37:39.000Z" - }, - "end": { - "$date": "2021-11-03T06:14:15.000Z" - }, - "events": [ - { - "uuid": "7094ae09-35ac-4bb3-b751-d6c3eb50f795", - "start": { - "$date": "2021-11-03T05:37:39.000Z" - }, - "end": { - "$date": "2021-11-03T06:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e04b664a-452c-4ebd-956a-9ae4ee7dfbae", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-03T05:35:21.000Z" - }, - "end": { - "$date": "2021-11-03T06:25:18.000Z" - }, - "events": [ - { - "uuid": "da0c6c80-d6c1-45ab-beb3-ebf691075b79", - "start": { - "$date": "2021-11-03T05:35:21.000Z" - }, - "end": { - "$date": "2021-11-03T06:25:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ad49f2cf-5e63-49de-b0e4-c129944b896e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-03T05:47:42.000Z" - }, - "end": { - "$date": "2021-11-03T08:09:58.000Z" - }, - "events": [ - { - "uuid": "ba0713a9-c3d5-47f5-8eaa-ff634c495c19", - "start": { - "$date": "2021-11-03T05:47:42.000Z" - }, - "end": { - "$date": "2021-11-03T08:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4be7b85-cd3c-4772-b96a-8dd264ef2dab", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T06:54:35.000Z" - }, - "end": { - "$date": "2021-11-03T07:08:48.000Z" - }, - "events": [ - { - "uuid": "2c2a97f4-f4df-45c1-980f-291734364db3", - "start": { - "$date": "2021-11-03T06:54:35.000Z" - }, - "end": { - "$date": "2021-11-03T07:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5471551-4e1e-4cbf-a0ae-ec61a7ffd2e7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T07:11:03.000Z" - }, - "end": { - "$date": "2021-11-03T07:30:56.000Z" - }, - "events": [ - { - "uuid": "ac8775be-2a21-40ec-85b2-f3e1788ea05a", - "start": { - "$date": "2021-11-03T07:11:03.000Z" - }, - "end": { - "$date": "2021-11-03T07:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2b7ef13-cf69-4a28-8082-8f2bb0dfc6fe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T07:34:11.000Z" - }, - "end": { - "$date": "2021-11-03T07:55:24.000Z" - }, - "events": [ - { - "uuid": "ddde02f7-2605-4e65-bd8c-9850a2b74a96", - "start": { - "$date": "2021-11-03T07:34:11.000Z" - }, - "end": { - "$date": "2021-11-03T07:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7fc1f64-b723-4da6-8584-7f51033e82a8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T07:59:04.000Z" - }, - "end": { - "$date": "2021-11-03T08:19:22.000Z" - }, - "events": [ - { - "uuid": "32f342c9-2271-4c9e-8ca1-c4113d266d9e", - "start": { - "$date": "2021-11-03T07:59:04.000Z" - }, - "end": { - "$date": "2021-11-03T08:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5607980d-bbf7-4120-b2f1-0b5e046692fc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T08:21:22.000Z" - }, - "end": { - "$date": "2021-11-03T08:42:15.000Z" - }, - "events": [ - { - "uuid": "1ca989f6-6362-456d-8933-f2d167c45458", - "start": { - "$date": "2021-11-03T08:21:22.000Z" - }, - "end": { - "$date": "2021-11-03T08:42:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ab59cd2-9188-4261-88b1-a13baf915297", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T08:44:45.000Z" - }, - "end": { - "$date": "2021-11-03T09:11:05.000Z" - }, - "events": [ - { - "uuid": "573edd59-2eb5-4e2f-96e8-2b3b5ffede5e", - "start": { - "$date": "2021-11-03T08:44:45.000Z" - }, - "end": { - "$date": "2021-11-03T09:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1e10596-a37a-4a1f-bf92-73837151a61b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T09:14:18.000Z" - }, - "end": { - "$date": "2021-11-03T09:41:07.000Z" - }, - "events": [ - { - "uuid": "96607b58-2720-4881-83d7-38b5104b6787", - "start": { - "$date": "2021-11-03T09:14:18.000Z" - }, - "end": { - "$date": "2021-11-03T09:41:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9076b85f-a2c5-41a5-9ca2-867e343f3409", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T09:43:32.000Z" - }, - "end": { - "$date": "2021-11-03T09:56:14.000Z" - }, - "events": [ - { - "uuid": "f6a4c2ca-774d-49a0-889c-f76061111c48", - "start": { - "$date": "2021-11-03T09:43:32.000Z" - }, - "end": { - "$date": "2021-11-03T09:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98334383-753f-4b41-9603-5b36f2168e87", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T09:58:00.000Z" - }, - "end": { - "$date": "2021-11-03T10:06:25.000Z" - }, - "events": [ - { - "uuid": "533506ea-c026-4611-93bc-3603f062e0cc", - "start": { - "$date": "2021-11-03T09:58:00.000Z" - }, - "end": { - "$date": "2021-11-03T10:06:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e932957-cd22-4381-b937-cbc11167b294", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T14:36:59.000Z" - }, - "end": { - "$date": "2021-11-03T15:09:20.000Z" - }, - "events": [ - { - "uuid": "ffb4d069-b7d2-4cfd-a6e2-ea4c9113c9af", - "start": { - "$date": "2021-11-03T14:36:59.000Z" - }, - "end": { - "$date": "2021-11-03T15:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c00e0a34-ab4f-4d2d-9dd8-8e9af5e679e6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T15:12:43.000Z" - }, - "end": { - "$date": "2021-11-03T15:33:16.000Z" - }, - "events": [ - { - "uuid": "0bdf5411-66f3-46df-9048-9f9b570ec06b", - "start": { - "$date": "2021-11-03T15:12:43.000Z" - }, - "end": { - "$date": "2021-11-03T15:33:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d083983-c26a-44a4-b7e6-fc7d9f6b81c2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T15:35:41.000Z" - }, - "end": { - "$date": "2021-11-03T15:54:49.000Z" - }, - "events": [ - { - "uuid": "86df2daf-3dac-4fd0-8770-9a9d4bb79c59", - "start": { - "$date": "2021-11-03T15:35:41.000Z" - }, - "end": { - "$date": "2021-11-03T15:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "371ac115-1085-48f2-952d-593d778f9541", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T15:57:24.000Z" - }, - "end": { - "$date": "2021-11-03T16:19:57.000Z" - }, - "events": [ - { - "uuid": "f924e76d-2e3f-4baf-8e5e-2b819dc59209", - "start": { - "$date": "2021-11-03T15:57:24.000Z" - }, - "end": { - "$date": "2021-11-03T16:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89c22993-2306-4ca3-9856-40289f179ea3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T16:22:27.000Z" - }, - "end": { - "$date": "2021-11-03T16:42:40.000Z" - }, - "events": [ - { - "uuid": "d0697e7e-cbc6-4cf2-97f9-406e85447b46", - "start": { - "$date": "2021-11-03T16:22:27.000Z" - }, - "end": { - "$date": "2021-11-03T16:42:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", - "uuid": "7d05414d-1f9a-452a-8d22-91b00614b376", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T16:31:21.000Z" - }, - "end": { - "$date": "2021-11-03T16:38:32.000Z" - }, - "events": [ - { - "uuid": "00143ad3-89f9-4a5f-acd2-ab0826728554", - "start": { - "$date": "2021-11-03T16:31:21.000Z" - }, - "end": { - "$date": "2021-11-03T16:38:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0b348d3a-a7f0-4ec1-9bcf-22d6be18c1ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T16:39:17.000Z" - }, - "end": { - "$date": "2021-11-03T16:40:57.000Z" - }, - "events": [ - { - "uuid": "f66d3d96-0ccf-4733-a376-ba02dab189e2", - "start": { - "$date": "2021-11-03T16:39:17.000Z" - }, - "end": { - "$date": "2021-11-03T16:40:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9ad8b47b-76f1-4c34-8ca6-5383a0b27234", - "uuid": "b34c3362-68e5-4bf4-b2c0-9d9b7c50bf32", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T16:41:08.000Z" - }, - "end": { - "$date": "2021-11-03T16:45:08.000Z" - }, - "events": [ - { - "uuid": "061b8c75-b481-4bb9-9576-fc48022c257f", - "start": { - "$date": "2021-11-03T16:41:08.000Z" - }, - "end": { - "$date": "2021-11-03T16:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "34acfad4-d371-4282-9cef-39f770e0c6f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T16:55:49.000Z" - }, - "end": { - "$date": "2021-11-03T17:15:26.000Z" - }, - "events": [ - { - "uuid": "a9f7de88-4a9e-4acb-b4b2-aaafe52ac172", - "start": { - "$date": "2021-11-03T16:55:49.000Z" - }, - "end": { - "$date": "2021-11-03T17:15:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", - "uuid": "a30b691b-10e8-4984-9959-8055810df5e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T17:19:02.000Z" - }, - "end": { - "$date": "2021-11-03T17:30:02.000Z" - }, - "events": [ - { - "uuid": "ecd836fe-bfea-4e3a-b5d8-fd80729117e3", - "start": { - "$date": "2021-11-03T17:19:02.000Z" - }, - "end": { - "$date": "2021-11-03T17:30:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef832f35-faa8-4c17-8c35-d8fd9be4c272", - "uuid": "050c6082-a7f5-4573-8db3-c309c652274d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T17:30:22.000Z" - }, - "end": { - "$date": "2021-11-03T17:42:33.000Z" - }, - "events": [ - { - "uuid": "a02ea7a1-24e6-4539-9df3-e469a6b5d650", - "start": { - "$date": "2021-11-03T17:30:22.000Z" - }, - "end": { - "$date": "2021-11-03T17:42:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b42ba1e-ec58-44a7-980f-83d7aeb14b45", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T17:52:44.000Z" - }, - "end": { - "$date": "2021-11-03T18:17:20.000Z" - }, - "events": [ - { - "uuid": "8509b141-ce3f-4ae8-a35b-f7bc3d7075f0", - "start": { - "$date": "2021-11-03T17:52:44.000Z" - }, - "end": { - "$date": "2021-11-03T18:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9b4b864f-f7ec-46be-9390-440c79f08fab", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-03T18:52:08.000Z" - }, - "end": { - "$date": "2021-11-03T22:41:26.000Z" - }, - "events": [ - { - "uuid": "04e04cbc-f0ae-458b-9cad-fba7144417bf", - "start": { - "$date": "2021-11-03T18:52:08.000Z" - }, - "end": { - "$date": "2021-11-03T22:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "b91586a9-517f-4474-9ff4-e88370bb99f2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-03T20:12:12.000Z" - }, - "end": { - "$date": "2021-11-03T21:44:22.000Z" - }, - "events": [ - { - "uuid": "33a7f6ae-40c1-4996-9372-5b43f14e012e", - "start": { - "$date": "2021-11-03T20:12:12.000Z" - }, - "end": { - "$date": "2021-11-03T20:59:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4713f7b0-8876-4206-9490-bb7fb0d4a51b", - "start": { - "$date": "2021-11-03T20:59:12.000Z" - }, - "end": { - "$date": "2021-11-03T21:07:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e97785d6-d0dc-4374-9c72-a7da7bd051f8", - "start": { - "$date": "2021-11-03T21:07:12.000Z" - }, - "end": { - "$date": "2021-11-03T21:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "baa6f026-d128-47d0-9855-b93d68c0d9e8", - "uuid": "d06e3535-f504-4f37-9f52-0aed8f12f51e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-03T21:03:27.000Z" - }, - "end": { - "$date": "2021-11-03T21:37:55.000Z" - }, - "events": [ - { - "uuid": "04a83e20-2516-4584-92d8-7790bb0cfea3", - "start": { - "$date": "2021-11-03T21:03:27.000Z" - }, - "end": { - "$date": "2021-11-03T21:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f5457e74-fe4a-4726-b4f4-a8de55eb9d08", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-03T21:45:53.000Z" - }, - "end": { - "$date": "2021-11-04T00:04:31.000Z" - }, - "events": [ - { - "uuid": "046e92a5-be42-4bbe-a9fc-5794b414840e", - "start": { - "$date": "2021-11-03T21:45:53.000Z" - }, - "end": { - "$date": "2021-11-03T23:25:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "390326fb-6b51-465e-9a87-6f276069a688", - "start": { - "$date": "2021-11-03T23:25:53.000Z" - }, - "end": { - "$date": "2021-11-03T23:32:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8db04af3-95d0-4288-b54d-5e6f7e68082d", - "start": { - "$date": "2021-11-03T23:32:53.000Z" - }, - "end": { - "$date": "2021-11-04T00:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "3bf96fab-ae0a-4e31-a577-337e64557da6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-03T21:46:59.000Z" - }, - "end": { - "$date": "2021-11-03T22:46:16.000Z" - }, - "events": [ - { - "uuid": "e1706c30-804c-49a8-a6dc-0150c0bdd990", - "start": { - "$date": "2021-11-03T21:46:59.000Z" - }, - "end": { - "$date": "2021-11-03T22:46:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a0b9aa20-f611-4b1a-a4aa-21497b288eba", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-04T00:28:30.000Z" - }, - "end": { - "$date": "2021-11-04T03:57:43.000Z" - }, - "events": [ - { - "uuid": "28954a74-590a-4eaa-aac2-89a06fd0f420", - "start": { - "$date": "2021-11-04T00:28:30.000Z" - }, - "end": { - "$date": "2021-11-04T03:57:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e89391e-8f97-4e2a-87ac-5c3c489a8718", - "uuid": "9b7c320e-c49b-4cc8-a16c-c4d06ef9edbe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-04T02:11:02.000Z" - }, - "end": { - "$date": "2021-11-04T03:46:29.000Z" - }, - "events": [ - { - "uuid": "5624a1c3-94d9-43d0-9eb7-bc33f70f17e5", - "start": { - "$date": "2021-11-04T02:11:02.000Z" - }, - "end": { - "$date": "2021-11-04T03:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36c025e2-623c-4200-9878-65b3f395961e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-04T02:25:49.000Z" - }, - "end": { - "$date": "2021-11-04T02:49:32.000Z" - }, - "events": [ - { - "uuid": "f41d2251-0a1f-44f2-83fa-7d53ade038a0", - "start": { - "$date": "2021-11-04T02:25:49.000Z" - }, - "end": { - "$date": "2021-11-04T02:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "72f556bc-20af-4d0f-9f22-a6229dba0acf", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-04T02:50:13.000Z" - }, - "end": { - "$date": "2021-11-04T05:02:16.000Z" - }, - "events": [ - { - "uuid": "7c07336b-25dc-4573-a577-7398ed1b0a24", - "start": { - "$date": "2021-11-04T02:50:13.000Z" - }, - "end": { - "$date": "2021-11-04T05:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "275ee24c-36cd-4c4c-887b-906ec1813301", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-04T02:50:26.000Z" - }, - "end": { - "$date": "2021-11-04T05:02:18.000Z" - }, - "events": [ - { - "uuid": "76b19c97-638a-4fca-8b0d-4a243025b6d9", - "start": { - "$date": "2021-11-04T02:50:26.000Z" - }, - "end": { - "$date": "2021-11-04T05:02:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7c7f384c-2ac9-4019-b59a-1788679c71e3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-04T03:06:43.000Z" - }, - "end": { - "$date": "2021-11-04T04:50:37.000Z" - }, - "events": [ - { - "uuid": "05894d5c-ae34-4d44-b010-53a9ac797616", - "start": { - "$date": "2021-11-04T03:06:43.000Z" - }, - "end": { - "$date": "2021-11-04T04:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99f43ee0-51ce-46a7-8e0a-346a62725fa8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-04T03:55:03.000Z" - }, - "end": { - "$date": "2021-11-04T04:29:16.000Z" - }, - "events": [ - { - "uuid": "8813f283-7a4f-470a-af01-cae181d8a97f", - "start": { - "$date": "2021-11-04T03:55:03.000Z" - }, - "end": { - "$date": "2021-11-04T04:29:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9149e65-9047-4959-9962-0ea70e65c86a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-04T04:46:44.000Z" - }, - "end": { - "$date": "2021-11-04T05:21:06.000Z" - }, - "events": [ - { - "uuid": "0dbacd16-c2fe-420e-a08a-508b2fd76822", - "start": { - "$date": "2021-11-04T04:46:44.000Z" - }, - "end": { - "$date": "2021-11-04T05:21:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65124238-2a92-420a-8568-a05fcad1d688", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T11:05:42.000Z" - }, - "end": { - "$date": "2021-11-04T11:28:00.000Z" - }, - "events": [ - { - "uuid": "3a014b46-348a-4959-a204-e99586ad0bd8", - "start": { - "$date": "2021-11-04T11:05:42.000Z" - }, - "end": { - "$date": "2021-11-04T11:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "897a5771-30af-48c5-8557-80331c2bee3d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T11:30:45.000Z" - }, - "end": { - "$date": "2021-11-04T11:49:43.000Z" - }, - "events": [ - { - "uuid": "75976b16-4956-496e-b581-3887d171f155", - "start": { - "$date": "2021-11-04T11:30:45.000Z" - }, - "end": { - "$date": "2021-11-04T11:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec16e40f-8f5b-46fc-9f41-3d3deb49d928", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T11:52:37.000Z" - }, - "end": { - "$date": "2021-11-04T12:11:20.000Z" - }, - "events": [ - { - "uuid": "bf64622a-ac06-4d58-bad8-61e44cd28ee3", - "start": { - "$date": "2021-11-04T11:52:37.000Z" - }, - "end": { - "$date": "2021-11-04T12:11:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6248a101-8d43-427c-b143-cd2f709e7fca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T12:15:04.000Z" - }, - "end": { - "$date": "2021-11-04T12:33:07.000Z" - }, - "events": [ - { - "uuid": "6811ac2d-164d-4f63-867e-1853afd89383", - "start": { - "$date": "2021-11-04T12:15:04.000Z" - }, - "end": { - "$date": "2021-11-04T12:33:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "15ecd917-7f24-4b30-9333-23b6a1147caf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-04T12:30:43.000Z" - }, - "end": { - "$date": "2021-11-04T13:38:40.000Z" - }, - "events": [ - { - "uuid": "4f19ff7c-d67f-4387-8270-c82af7ad3638", - "start": { - "$date": "2021-11-04T12:30:43.000Z" - }, - "end": { - "$date": "2021-11-04T13:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8e106ed-6125-41bf-9f17-b283d780cba0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T12:36:26.000Z" - }, - "end": { - "$date": "2021-11-04T13:02:20.000Z" - }, - "events": [ - { - "uuid": "8fab2d83-577d-4913-a076-536531281169", - "start": { - "$date": "2021-11-04T12:36:26.000Z" - }, - "end": { - "$date": "2021-11-04T13:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a97df97-148b-4399-9a32-efa6be041e76", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T13:05:49.000Z" - }, - "end": { - "$date": "2021-11-04T13:29:13.000Z" - }, - "events": [ - { - "uuid": "10d32aed-268b-4a07-91f8-f9311e6e8716", - "start": { - "$date": "2021-11-04T13:05:49.000Z" - }, - "end": { - "$date": "2021-11-04T13:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d891e3bd-0628-4137-b8b7-9a2eb5fa4861", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T13:31:37.000Z" - }, - "end": { - "$date": "2021-11-04T13:50:26.000Z" - }, - "events": [ - { - "uuid": "8ca89b51-6cc1-45f6-bbcd-1b0b8c2f3f4b", - "start": { - "$date": "2021-11-04T13:31:37.000Z" - }, - "end": { - "$date": "2021-11-04T13:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60d91d2b-fc4e-4c2a-9605-5b56d6e11c14", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T13:52:55.000Z" - }, - "end": { - "$date": "2021-11-04T14:17:45.000Z" - }, - "events": [ - { - "uuid": "525e137e-be87-48aa-8e58-3ebbecbc41a0", - "start": { - "$date": "2021-11-04T13:52:55.000Z" - }, - "end": { - "$date": "2021-11-04T14:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14802a3a-2a4f-4ad8-9bb8-c403c257853c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T14:19:43.000Z" - }, - "end": { - "$date": "2021-11-04T14:36:41.000Z" - }, - "events": [ - { - "uuid": "a971a5cb-a9ac-45ca-8ede-885d2bf6a1a1", - "start": { - "$date": "2021-11-04T14:19:43.000Z" - }, - "end": { - "$date": "2021-11-04T14:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "8b800966-3025-4873-95b4-83d3fe87910b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-04T14:19:17.000Z" - }, - "end": { - "$date": "2021-11-04T15:10:24.000Z" - }, - "events": [ - { - "uuid": "323b5393-7996-417f-8706-ac2339d9214c", - "start": { - "$date": "2021-11-04T14:19:17.000Z" - }, - "end": { - "$date": "2021-11-04T15:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba23065b-68fa-47de-89f9-51baf9137aa9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T14:39:05.000Z" - }, - "end": { - "$date": "2021-11-04T14:58:58.000Z" - }, - "events": [ - { - "uuid": "122f900a-d792-40ae-b7fa-b1a252ef31f8", - "start": { - "$date": "2021-11-04T14:39:05.000Z" - }, - "end": { - "$date": "2021-11-04T14:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03e64241-4439-4839-ad5b-e04724ef3588", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-04T15:01:33.000Z" - }, - "end": { - "$date": "2021-11-04T15:22:16.000Z" - }, - "events": [ - { - "uuid": "48d7032e-e21d-4ff2-b97d-82fe901c8add", - "start": { - "$date": "2021-11-04T15:01:33.000Z" - }, - "end": { - "$date": "2021-11-04T15:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3d39592d-d12e-4858-acd8-22b59f75884e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-04T15:32:52.000Z" - }, - "end": { - "$date": "2021-11-04T15:36:52.000Z" - }, - "events": [ - { - "uuid": "f6b6a82a-b892-43c4-bcd2-503ee00e950f", - "start": { - "$date": "2021-11-04T15:32:52.000Z" - }, - "end": { - "$date": "2021-11-04T15:36:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0e737839-35b9-49c3-b350-7349fda96117", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-04T17:55:16.000Z" - }, - "end": { - "$date": "2021-11-04T18:47:43.000Z" - }, - "events": [ - { - "uuid": "faaf2e76-e2f5-49a5-9d8e-ab7ba1aa75b7", - "start": { - "$date": "2021-11-04T17:55:16.000Z" - }, - "end": { - "$date": "2021-11-04T18:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "42733d61-da3e-40ce-b930-e58039632763", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-04T18:26:31.000Z" - }, - "end": { - "$date": "2021-11-04T19:10:41.000Z" - }, - "events": [ - { - "uuid": "ef1d98a3-1155-42bd-bb09-a682e2616b35", - "start": { - "$date": "2021-11-04T18:26:31.000Z" - }, - "end": { - "$date": "2021-11-04T19:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "ef929b82-20bd-43a2-a556-dd11b68ec821", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-04T19:16:29.000Z" - }, - "end": { - "$date": "2021-11-04T19:19:38.000Z" - }, - "events": [ - { - "uuid": "a192db22-8bd7-40f3-882b-c0c39d72bfa7", - "start": { - "$date": "2021-11-04T19:16:29.000Z" - }, - "end": { - "$date": "2021-11-04T19:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "7852d047-1a3f-4bb9-a6f8-ae4094fb5bda", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-04T19:41:14.000Z" - }, - "end": { - "$date": "2021-11-04T20:12:46.000Z" - }, - "events": [ - { - "uuid": "3fd43c5f-9d1f-4b1e-8b0a-d654261db07e", - "start": { - "$date": "2021-11-04T19:41:14.000Z" - }, - "end": { - "$date": "2021-11-04T20:12:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "349b8af3-f7ed-4611-b770-2462d6d7b85c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-04T23:01:09.000Z" - }, - "end": { - "$date": "2021-11-05T00:01:59.000Z" - }, - "events": [ - { - "uuid": "1dfb8faa-834e-45e5-aa25-301f9a03ef0c", - "start": { - "$date": "2021-11-04T23:01:09.000Z" - }, - "end": { - "$date": "2021-11-05T00:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d890cc58-b706-4304-be79-67b4b4defdf3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-04T23:02:35.000Z" - }, - "end": { - "$date": "2021-11-05T00:52:41.000Z" - }, - "events": [ - { - "uuid": "3b92114a-9be3-4bbb-a9c5-ca05d4b9f2d3", - "start": { - "$date": "2021-11-04T23:02:35.000Z" - }, - "end": { - "$date": "2021-11-05T00:52:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "20660c27-1e1d-4990-ae7d-a35c7930f8d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-04T23:38:27.000Z" - }, - "end": { - "$date": "2021-11-05T03:43:27.000Z" - }, - "events": [ - { - "uuid": "eccaf4a2-2d52-4e09-9517-6425f72a6d4f", - "start": { - "$date": "2021-11-04T23:38:27.000Z" - }, - "end": { - "$date": "2021-11-05T01:15:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ededa113-634d-4c0a-b4c0-ddb3d3a2d7c7", - "start": { - "$date": "2021-11-05T01:15:27.000Z" - }, - "end": { - "$date": "2021-11-05T01:30:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c022c00c-8d99-44d1-a0fd-fe7e53dbf5b4", - "start": { - "$date": "2021-11-05T01:30:27.000Z" - }, - "end": { - "$date": "2021-11-05T03:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "685a91ad-ee3c-4b7f-ad71-89e97a44cc6d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-05T00:54:05.000Z" - }, - "end": { - "$date": "2021-11-05T03:44:11.000Z" - }, - "events": [ - { - "uuid": "db5c8c58-9091-4194-8d8c-208c6dff42d5", - "start": { - "$date": "2021-11-05T00:54:05.000Z" - }, - "end": { - "$date": "2021-11-05T03:44:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "09e310a5-e999-40bb-86bf-ed8491abe7a0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-05T01:49:13.000Z" - }, - "end": { - "$date": "2021-11-05T01:57:14.000Z" - }, - "events": [ - { - "uuid": "c95a1ce9-381e-4204-851f-d106c6754ec8", - "start": { - "$date": "2021-11-05T01:49:13.000Z" - }, - "end": { - "$date": "2021-11-05T01:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "823658c9-8c12-4f46-b437-56f761d91440", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-05T01:57:25.000Z" - }, - "end": { - "$date": "2021-11-05T06:17:47.000Z" - }, - "events": [ - { - "uuid": "38919ca0-8196-4094-8b05-6c35a2564928", - "start": { - "$date": "2021-11-05T01:57:25.000Z" - }, - "end": { - "$date": "2021-11-05T06:17:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0ad96894-4f0b-4c44-93b6-7c9d10705873", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-05T06:21:17.000Z" - }, - "end": { - "$date": "2021-11-05T06:28:22.000Z" - }, - "events": [ - { - "uuid": "e8b90645-0a0e-40d7-bb27-e0c64d8ca290", - "start": { - "$date": "2021-11-05T06:21:17.000Z" - }, - "end": { - "$date": "2021-11-05T06:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "76dd35e7-4cd8-4a93-8a07-511f0e015e90", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-05T02:46:33.000Z" - }, - "end": { - "$date": "2021-11-05T03:39:10.000Z" - }, - "events": [ - { - "uuid": "1e360d58-94f2-4b84-9b03-11680c82f81d", - "start": { - "$date": "2021-11-05T02:46:33.000Z" - }, - "end": { - "$date": "2021-11-05T03:39:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e110ee1d-1087-45a4-a964-6f4c7f274849", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-05T03:30:45.000Z" - }, - "end": { - "$date": "2021-11-05T06:25:46.000Z" - }, - "events": [ - { - "uuid": "408a3833-187d-494b-8e39-7e6a7cf93edf", - "start": { - "$date": "2021-11-05T03:30:45.000Z" - }, - "end": { - "$date": "2021-11-05T06:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "0bb9a3e0-7221-445a-a807-3e88e2d4bcc5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-05T03:40:41.000Z" - }, - "end": { - "$date": "2021-11-05T06:06:47.000Z" - }, - "events": [ - { - "uuid": "d9ac0857-a821-4f7d-be8d-a40e90938cd5", - "start": { - "$date": "2021-11-05T03:40:41.000Z" - }, - "end": { - "$date": "2021-11-05T06:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8944b881-ae39-4a3c-ae1c-4d35d79be67c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-05T03:42:17.000Z" - }, - "end": { - "$date": "2021-11-05T04:37:48.000Z" - }, - "events": [ - { - "uuid": "22280301-db91-48da-8136-5a6a84f4d086", - "start": { - "$date": "2021-11-05T03:42:17.000Z" - }, - "end": { - "$date": "2021-11-05T04:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5fdacf2a-6cd6-410f-866e-8f1ff43af6d8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-05T03:42:45.000Z" - }, - "end": { - "$date": "2021-11-05T05:20:14.000Z" - }, - "events": [ - { - "uuid": "b68b27d5-4fd3-4d61-bed1-23e850b530c0", - "start": { - "$date": "2021-11-05T03:42:45.000Z" - }, - "end": { - "$date": "2021-11-05T05:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "244bc802-468e-44b8-ad45-09e3e3e27243", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-05T04:06:41.000Z" - }, - "end": { - "$date": "2021-11-05T04:38:13.000Z" - }, - "events": [ - { - "uuid": "5cb4edb0-c555-4d5c-8496-35790c0250c1", - "start": { - "$date": "2021-11-05T04:06:41.000Z" - }, - "end": { - "$date": "2021-11-05T04:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9734276d-0452-438b-b863-b0f54a1e898e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-05T04:44:59.000Z" - }, - "end": { - "$date": "2021-11-05T05:15:15.000Z" - }, - "events": [ - { - "uuid": "7d565bfb-c094-49b1-9a41-a3b5ba12e1cc", - "start": { - "$date": "2021-11-05T04:44:59.000Z" - }, - "end": { - "$date": "2021-11-05T05:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "939c08c4-a3f7-4d96-b619-3e5bafe7e928", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-05T05:02:14.000Z" - }, - "end": { - "$date": "2021-11-05T06:17:40.000Z" - }, - "events": [ - { - "uuid": "781a0d98-620d-42e3-a00e-783dd3f9ae7a", - "start": { - "$date": "2021-11-05T05:02:14.000Z" - }, - "end": { - "$date": "2021-11-05T06:17:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8746eefc-fa41-4379-a120-7c7d8a503c40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-05T05:30:33.000Z" - }, - "end": { - "$date": "2021-11-05T06:03:04.000Z" - }, - "events": [ - { - "uuid": "16d70a5d-508b-4929-930a-02b2e6d68725", - "start": { - "$date": "2021-11-05T05:30:33.000Z" - }, - "end": { - "$date": "2021-11-05T06:03:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c970c1a-d97e-4a1a-b058-50457d7a441b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-05T05:31:20.000Z" - }, - "end": { - "$date": "2021-11-05T06:03:02.000Z" - }, - "events": [ - { - "uuid": "3e666b4d-3bf2-4718-ad85-bf5b3a82cd52", - "start": { - "$date": "2021-11-05T05:31:20.000Z" - }, - "end": { - "$date": "2021-11-05T06:03:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "072fe84f-4e87-4ce2-906f-fe0bd57b86de", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-05T06:05:11.000Z" - }, - "end": { - "$date": "2021-11-05T06:23:57.000Z" - }, - "events": [ - { - "uuid": "7f83736f-cbf7-441c-a436-b83000b1e110", - "start": { - "$date": "2021-11-05T06:05:11.000Z" - }, - "end": { - "$date": "2021-11-05T06:23:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50ea5ef3-858d-4c59-994d-d557cfc74ded", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-05T06:05:20.000Z" - }, - "end": { - "$date": "2021-11-05T06:24:06.000Z" - }, - "events": [ - { - "uuid": "20b03aac-fafa-4d97-b016-723246d43d4c", - "start": { - "$date": "2021-11-05T06:05:20.000Z" - }, - "end": { - "$date": "2021-11-05T06:24:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "007b2360-7661-459d-95c3-0ad511a82ba1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-05T08:23:33.000Z" - }, - "end": { - "$date": "2021-11-05T09:51:40.000Z" - }, - "events": [ - { - "uuid": "0cee8c0f-494d-41ea-8245-10d6f13cb599", - "start": { - "$date": "2021-11-05T08:23:33.000Z" - }, - "end": { - "$date": "2021-11-05T09:51:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "449f0d7e-4aba-4d81-8c45-2afed3948594", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-05T08:53:53.000Z" - }, - "end": { - "$date": "2021-11-05T20:57:19.000Z" - }, - "events": [ - { - "uuid": "dd65d021-0fa9-4f21-a678-b82d678c5bdc", - "start": { - "$date": "2021-11-05T08:53:53.000Z" - }, - "end": { - "$date": "2021-11-05T20:57:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eefbaafa-89da-45ed-a7cd-286a66ad9b4b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-05T15:52:50.000Z" - }, - "end": { - "$date": "2021-11-05T18:18:09.000Z" - }, - "events": [ - { - "uuid": "767163bd-0d75-4824-a03a-6bb67ee788b5", - "start": { - "$date": "2021-11-05T15:52:50.000Z" - }, - "end": { - "$date": "2021-11-05T18:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "8657ddab-02b4-4514-a7ac-d536bb8ee00f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-05T18:11:10.000Z" - }, - "end": { - "$date": "2021-11-05T18:59:53.000Z" - }, - "events": [ - { - "uuid": "8e89aaa9-b132-4f37-a1f4-fd01260ae9fd", - "start": { - "$date": "2021-11-05T18:11:10.000Z" - }, - "end": { - "$date": "2021-11-05T18:59:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "76d34a84-df81-4755-a917-16e715219fb5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-05T20:46:34.000Z" - }, - "end": { - "$date": "2021-11-06T01:44:26.000Z" - }, - "events": [ - { - "uuid": "7294f65f-59bb-459c-b568-06438e90bfc8", - "start": { - "$date": "2021-11-05T20:46:34.000Z" - }, - "end": { - "$date": "2021-11-06T01:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7d164d43-ae09-4e09-b4b3-b129ec648752", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-05T21:48:12.000Z" - }, - "end": { - "$date": "2021-11-05T23:57:50.000Z" - }, - "events": [ - { - "uuid": "69e6efb0-a9ae-4cd4-99cf-0d0e3baae3af", - "start": { - "$date": "2021-11-05T21:48:12.000Z" - }, - "end": { - "$date": "2021-11-05T23:57:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e9dcd953-10c3-4822-bea3-86df7162c86e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-05T22:47:19.000Z" - }, - "end": { - "$date": "2021-11-06T01:51:50.000Z" - }, - "events": [ - { - "uuid": "7eb34c0a-5b5c-4bbb-a3e2-f5364bfdc56f", - "start": { - "$date": "2021-11-05T22:47:19.000Z" - }, - "end": { - "$date": "2021-11-06T01:51:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9cce9fc1-99af-4195-8ddf-456f9d8758c2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-06T00:45:44.000Z" - }, - "end": { - "$date": "2021-11-06T01:37:07.000Z" - }, - "events": [ - { - "uuid": "c23668d0-0c7e-468e-b6b7-138f5a437182", - "start": { - "$date": "2021-11-06T00:45:44.000Z" - }, - "end": { - "$date": "2021-11-06T01:37:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "49eb2637-47d9-40e9-b6b7-e2d29bd0a018", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T01:21:53.000Z" - }, - "end": { - "$date": "2021-11-06T02:45:48.000Z" - }, - "events": [ - { - "uuid": "b90278c3-2f24-4f0a-b3ee-b87c1c19154b", - "start": { - "$date": "2021-11-06T01:21:53.000Z" - }, - "end": { - "$date": "2021-11-06T02:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8b3bed74-3172-4716-98c1-fb39fa0bf368", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T01:22:35.000Z" - }, - "end": { - "$date": "2021-11-06T02:43:44.000Z" - }, - "events": [ - { - "uuid": "5ec9cf48-d871-494c-af70-7c34626f4670", - "start": { - "$date": "2021-11-06T01:22:35.000Z" - }, - "end": { - "$date": "2021-11-06T02:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "52b46525-a9de-4707-b78f-188e4fa1c13f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-06T01:41:58.000Z" - }, - "end": { - "$date": "2021-11-06T03:01:56.000Z" - }, - "events": [ - { - "uuid": "ad08e5bc-dd74-4246-b0f5-73bc4715ed7b", - "start": { - "$date": "2021-11-06T01:41:58.000Z" - }, - "end": { - "$date": "2021-11-06T03:01:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "565daac9-1bac-4fc7-9556-3fab08395871", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T02:01:12.000Z" - }, - "end": { - "$date": "2021-11-06T02:23:45.000Z" - }, - "events": [ - { - "uuid": "39dc5945-b586-452f-b6da-7abc8780f076", - "start": { - "$date": "2021-11-06T02:01:12.000Z" - }, - "end": { - "$date": "2021-11-06T02:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "430e0bc6-ae9d-4dde-9f73-7b06489a3bcd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T02:54:44.000Z" - }, - "end": { - "$date": "2021-11-06T03:31:10.000Z" - }, - "events": [ - { - "uuid": "024d5ccc-9dcb-4dd9-87d1-9611a1240307", - "start": { - "$date": "2021-11-06T02:54:44.000Z" - }, - "end": { - "$date": "2021-11-06T03:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a29ead1a-5c9d-4ae2-83a2-ccac1828f9ea", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T04:06:40.000Z" - }, - "end": { - "$date": "2021-11-06T05:15:15.000Z" - }, - "events": [ - { - "uuid": "36ca442b-fdc7-4c7b-b608-6b38295fe655", - "start": { - "$date": "2021-11-06T04:06:40.000Z" - }, - "end": { - "$date": "2021-11-06T05:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ed28ea3f-5861-40ad-9771-2fde24ef30f4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-06T04:09:57.000Z" - }, - "end": { - "$date": "2021-11-06T06:01:01.000Z" - }, - "events": [ - { - "uuid": "c1a8dd1e-db24-447a-97ce-bf6dda59c17e", - "start": { - "$date": "2021-11-06T04:09:57.000Z" - }, - "end": { - "$date": "2021-11-06T06:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2794aa61-924d-494f-9306-1e0578c3b12a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-06T05:15:26.000Z" - }, - "end": { - "$date": "2021-11-06T06:00:50.000Z" - }, - "events": [ - { - "uuid": "63bbcff6-2e7d-41b0-b3d5-cb5a301da8f7", - "start": { - "$date": "2021-11-06T05:15:26.000Z" - }, - "end": { - "$date": "2021-11-06T06:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2cb07770-9d92-4bf8-b782-eb645229f2ff", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T05:15:35.000Z" - }, - "end": { - "$date": "2021-11-06T06:02:28.000Z" - }, - "events": [ - { - "uuid": "f9590dc1-4259-4de0-bb3e-8562e9939620", - "start": { - "$date": "2021-11-06T05:15:35.000Z" - }, - "end": { - "$date": "2021-11-06T06:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b2cc9814-8d6a-4d00-bf43-188fd7f7e662", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-06T05:17:56.000Z" - }, - "end": { - "$date": "2021-11-06T06:00:47.000Z" - }, - "events": [ - { - "uuid": "3603168f-80a3-4840-888f-afd0ab6dd854", - "start": { - "$date": "2021-11-06T05:17:56.000Z" - }, - "end": { - "$date": "2021-11-06T06:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47bbb0dd-06f3-4a53-b3e1-7eb44a61e187", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-06T06:18:14.000Z" - }, - "end": { - "$date": "2021-11-06T06:51:42.000Z" - }, - "events": [ - { - "uuid": "faceeda9-335c-49ff-874a-4a2113b951bf", - "start": { - "$date": "2021-11-06T06:18:14.000Z" - }, - "end": { - "$date": "2021-11-06T06:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "83da4152-7e41-4556-8e7f-7f273b14e304", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-06T06:16:35.000Z" - }, - "end": { - "$date": "2021-11-06T09:11:11.000Z" - }, - "events": [ - { - "uuid": "c16f1bb3-031b-4012-8170-f4a71f29df82", - "start": { - "$date": "2021-11-06T06:16:35.000Z" - }, - "end": { - "$date": "2021-11-06T09:11:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "708f9a4e-f5e2-4a95-8632-14af3d31372a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T06:18:10.000Z" - }, - "end": { - "$date": "2021-11-06T09:10:43.000Z" - }, - "events": [ - { - "uuid": "f689353c-af2c-4b7d-a775-3b06de3c5182", - "start": { - "$date": "2021-11-06T06:18:10.000Z" - }, - "end": { - "$date": "2021-11-06T09:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f8d220f6-ae76-4c3d-996e-5ac9a71eb4b0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T14:11:18.000Z" - }, - "end": { - "$date": "2021-11-06T15:09:20.000Z" - }, - "events": [ - { - "uuid": "86fa1609-1b64-41a4-a308-9af6bc44ee57", - "start": { - "$date": "2021-11-06T14:11:18.000Z" - }, - "end": { - "$date": "2021-11-06T15:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "476743c2-cd69-4c41-b53f-90eb5a172ffa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T15:52:38.000Z" - }, - "end": { - "$date": "2021-11-06T17:48:35.000Z" - }, - "events": [ - { - "uuid": "df10cce0-b4ae-4986-8235-07ed21e1064e", - "start": { - "$date": "2021-11-06T15:52:38.000Z" - }, - "end": { - "$date": "2021-11-06T17:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb1334f4-7d8b-4d71-a203-1ee6829fb0a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-06T17:17:29.000Z" - }, - "end": { - "$date": "2021-11-07T00:05:01.000Z" - }, - "events": [ - { - "uuid": "4eba5d97-dc03-4bd6-9529-919a578b70cf", - "start": { - "$date": "2021-11-06T17:17:29.000Z" - }, - "end": { - "$date": "2021-11-06T20:28:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33cdbd63-07c8-49bc-a0d3-43c33103c12a", - "start": { - "$date": "2021-11-06T20:28:29.000Z" - }, - "end": { - "$date": "2021-11-06T20:31:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "250a7f54-78c3-4ff5-8026-6eeb0f24f19b", - "start": { - "$date": "2021-11-06T20:31:29.000Z" - }, - "end": { - "$date": "2021-11-06T22:26:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab73f20b-0c32-4465-945e-55c82d29cc6e", - "start": { - "$date": "2021-11-06T22:26:29.000Z" - }, - "end": { - "$date": "2021-11-06T22:55:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "98e17b82-a466-4a69-a953-d70aafb340f7", - "start": { - "$date": "2021-11-06T22:55:29.000Z" - }, - "end": { - "$date": "2021-11-06T22:58:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c138d922-5ffb-47d2-a92a-b487a30ad54d", - "start": { - "$date": "2021-11-06T22:58:29.000Z" - }, - "end": { - "$date": "2021-11-07T00:03:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ce42c21-846e-4935-b791-e932be416e51", - "start": { - "$date": "2021-11-07T00:03:29.000Z" - }, - "end": { - "$date": "2021-11-07T00:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "51cd3a61-f109-4f33-b1a2-cbef0769a835", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T17:48:46.000Z" - }, - "end": { - "$date": "2021-11-06T17:54:05.000Z" - }, - "events": [ - { - "uuid": "a4222814-f135-4ef9-8006-ce305690df70", - "start": { - "$date": "2021-11-06T17:48:46.000Z" - }, - "end": { - "$date": "2021-11-06T17:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2703d5c6-7fe2-4bc5-87e8-a1c5b1f6e75b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T17:54:11.000Z" - }, - "end": { - "$date": "2021-11-06T17:55:15.000Z" - }, - "events": [ - { - "uuid": "7900edb3-9d0b-487d-a548-2ba7cb118f98", - "start": { - "$date": "2021-11-06T17:54:11.000Z" - }, - "end": { - "$date": "2021-11-06T17:55:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df9470f5-16f2-4a1c-87a0-ff85fcfe1e4c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T17:57:43.000Z" - }, - "end": { - "$date": "2021-11-06T17:57:59.000Z" - }, - "events": [ - { - "uuid": "812d84bd-c61a-4db0-8cf7-617243f3444f", - "start": { - "$date": "2021-11-06T17:57:43.000Z" - }, - "end": { - "$date": "2021-11-06T17:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bbeb949-4412-4968-a28c-8740f1cd6528", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T17:57:42.000Z" - }, - "end": { - "$date": "2021-11-06T17:58:00.000Z" - }, - "events": [ - { - "uuid": "d9b805e6-e0d3-46d1-8079-6fa6e47c955d", - "start": { - "$date": "2021-11-06T17:57:42.000Z" - }, - "end": { - "$date": "2021-11-06T17:58:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02c7be2e-09ba-4754-9f76-1287316d51ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-06T17:57:44.000Z" - }, - "end": { - "$date": "2021-11-06T17:58:00.000Z" - }, - "events": [ - { - "uuid": "9bafb9a5-b741-4118-a1c1-5e46ac3a0cd7", - "start": { - "$date": "2021-11-06T17:57:44.000Z" - }, - "end": { - "$date": "2021-11-06T17:58:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "d21c96d1-a769-4ec9-b841-a231c892e6f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-06T17:14:14.000Z" - }, - "end": { - "$date": "2021-11-06T20:46:43.000Z" - }, - "events": [ - { - "uuid": "6b79cee2-84f2-41e9-9964-1c75d237ae6f", - "start": { - "$date": "2021-11-06T17:14:14.000Z" - }, - "end": { - "$date": "2021-11-06T20:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8594fbdc-d807-4454-ade5-79cabe33daf3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-06T18:02:36.000Z" - }, - "end": { - "$date": "2021-11-06T18:25:54.000Z" - }, - "events": [ - { - "uuid": "1e0680e4-12ef-465b-9541-ee910721106f", - "start": { - "$date": "2021-11-06T18:02:36.000Z" - }, - "end": { - "$date": "2021-11-06T18:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50f3dd05-a9d3-498b-8610-b835e76225b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T18:03:17.000Z" - }, - "end": { - "$date": "2021-11-06T18:25:42.000Z" - }, - "events": [ - { - "uuid": "70d99f38-ac9a-4327-aa18-af3ed4a25198", - "start": { - "$date": "2021-11-06T18:03:17.000Z" - }, - "end": { - "$date": "2021-11-06T18:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfe9e6e3-003c-410a-9c36-5f74d0b0f192", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T18:02:50.000Z" - }, - "end": { - "$date": "2021-11-06T18:25:41.000Z" - }, - "events": [ - { - "uuid": "2ebf5dad-338a-46ab-a170-a4d39ec9d99e", - "start": { - "$date": "2021-11-06T18:02:50.000Z" - }, - "end": { - "$date": "2021-11-06T18:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5394f04-f949-49c2-afbe-11dd03276748", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T18:30:41.000Z" - }, - "end": { - "$date": "2021-11-06T18:51:06.000Z" - }, - "events": [ - { - "uuid": "5cac8320-3365-44d6-8501-dd98fdf195f2", - "start": { - "$date": "2021-11-06T18:30:41.000Z" - }, - "end": { - "$date": "2021-11-06T18:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9d80eab-1d3e-487d-a014-4c2feac55924", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T18:53:03.000Z" - }, - "end": { - "$date": "2021-11-06T18:55:52.000Z" - }, - "events": [ - { - "uuid": "48901c26-79b0-4795-8c25-52e08f143c86", - "start": { - "$date": "2021-11-06T18:53:03.000Z" - }, - "end": { - "$date": "2021-11-06T18:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a39a0c08-5712-4b64-a232-3f3e29ce2fbb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T19:02:17.000Z" - }, - "end": { - "$date": "2021-11-06T19:15:07.000Z" - }, - "events": [ - { - "uuid": "b3812934-ecb2-4910-83b7-d7e536fd65b4", - "start": { - "$date": "2021-11-06T19:02:17.000Z" - }, - "end": { - "$date": "2021-11-06T19:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d588c52a-02ff-4c7c-8303-f8b2115beda5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T19:08:45.000Z" - }, - "end": { - "$date": "2021-11-06T19:48:37.000Z" - }, - "events": [ - { - "uuid": "e79c5b83-4022-45c9-8bef-2ab18e5dbbe9", - "start": { - "$date": "2021-11-06T19:08:45.000Z" - }, - "end": { - "$date": "2021-11-06T19:48:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62487718-ca7e-4a3b-bcfd-76de983cadd8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T19:19:17.000Z" - }, - "end": { - "$date": "2021-11-06T19:45:28.000Z" - }, - "events": [ - { - "uuid": "8d22220f-6096-4b39-84e8-73d188eb69f1", - "start": { - "$date": "2021-11-06T19:19:17.000Z" - }, - "end": { - "$date": "2021-11-06T19:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54013c8f-b9cb-483c-8f95-0f45cf888812", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T19:53:08.000Z" - }, - "end": { - "$date": "2021-11-06T20:13:24.000Z" - }, - "events": [ - { - "uuid": "d75a6dc3-a1ca-4f30-82d4-f7dfa11dedfe", - "start": { - "$date": "2021-11-06T19:53:08.000Z" - }, - "end": { - "$date": "2021-11-06T20:13:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9daa5c7c-cc94-451d-90a7-338827643091", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-06T19:53:33.000Z" - }, - "end": { - "$date": "2021-11-06T20:13:27.000Z" - }, - "events": [ - { - "uuid": "dc792b51-3512-4dc9-871b-6f05c30c18f7", - "start": { - "$date": "2021-11-06T19:53:33.000Z" - }, - "end": { - "$date": "2021-11-06T20:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9477f4d1-9373-4052-85cf-a3ad97885456", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T19:53:07.000Z" - }, - "end": { - "$date": "2021-11-06T20:13:23.000Z" - }, - "events": [ - { - "uuid": "2f7d65d6-7e59-4f37-a2de-a01e0b1e2f16", - "start": { - "$date": "2021-11-06T19:53:07.000Z" - }, - "end": { - "$date": "2021-11-06T20:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7cd267dd-1b72-46a6-a567-05f09f7f0377", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T20:35:36.000Z" - }, - "end": { - "$date": "2021-11-06T21:09:23.000Z" - }, - "events": [ - { - "uuid": "1ce11673-d9b6-4bf3-baac-20fe4359edaa", - "start": { - "$date": "2021-11-06T20:35:36.000Z" - }, - "end": { - "$date": "2021-11-06T21:09:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd7bd75b-4b5c-42c6-b7bb-b80eb7682eb1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-06T20:35:44.000Z" - }, - "end": { - "$date": "2021-11-06T21:09:26.000Z" - }, - "events": [ - { - "uuid": "a7faede4-0727-4d18-97b3-c6ee1894887f", - "start": { - "$date": "2021-11-06T20:35:44.000Z" - }, - "end": { - "$date": "2021-11-06T21:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb8cd149-924c-4496-a143-1fbe2a4e0a74", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T20:37:04.000Z" - }, - "end": { - "$date": "2021-11-06T21:09:20.000Z" - }, - "events": [ - { - "uuid": "852ee0f5-b1e4-4bcf-af74-f7e027f3308b", - "start": { - "$date": "2021-11-06T20:37:04.000Z" - }, - "end": { - "$date": "2021-11-06T21:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d06fe8ff-8ddf-45dc-b7b6-ae0a76144c41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-06T21:14:33.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:39.000Z" - }, - "events": [ - { - "uuid": "1bd8ee67-7c5e-4e77-95ee-6eefb47ac2d7", - "start": { - "$date": "2021-11-06T21:14:33.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "527c9e47-1dc5-489d-b6a6-ddbf69ed6ab0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T21:15:12.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:38.000Z" - }, - "events": [ - { - "uuid": "fbac9ab2-ffd9-4d51-a49b-d321dcf780a6", - "start": { - "$date": "2021-11-06T21:15:12.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a00c8cc3-73e9-4b41-a886-fc7e24e0c3bd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T21:14:35.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:41.000Z" - }, - "events": [ - { - "uuid": "98f62458-a90d-49d0-9d15-87fb81e58dba", - "start": { - "$date": "2021-11-06T21:14:35.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c84310f-0819-4aa4-abb4-131a7580e914", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-06T21:14:41.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:52.000Z" - }, - "events": [ - { - "uuid": "6d93cf1e-37ac-4db7-a414-307c37cad037", - "start": { - "$date": "2021-11-06T21:14:41.000Z" - }, - "end": { - "$date": "2021-11-06T21:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9ac3eacc-55ca-4d9c-b178-f46d8b542da7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-06T21:51:47.000Z" - }, - "end": { - "$date": "2021-11-06T21:55:22.000Z" - }, - "events": [ - { - "uuid": "eb41cfbf-094d-4de3-9d14-b59a2ab34e3d", - "start": { - "$date": "2021-11-06T21:51:47.000Z" - }, - "end": { - "$date": "2021-11-06T21:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22f488c2-b8cc-4e10-86eb-d10c32410b61", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-06T21:55:01.000Z" - }, - "end": { - "$date": "2021-11-06T22:14:26.000Z" - }, - "events": [ - { - "uuid": "264170d3-80f6-4c9c-9586-b1a51c1f753a", - "start": { - "$date": "2021-11-06T21:55:01.000Z" - }, - "end": { - "$date": "2021-11-06T22:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67fa4d1a-9e33-4a18-8ff1-dda0681e91c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-06T21:54:58.000Z" - }, - "end": { - "$date": "2021-11-06T22:14:31.000Z" - }, - "events": [ - { - "uuid": "1bcb3ccb-4a5b-43b6-96a3-9cba943af8ba", - "start": { - "$date": "2021-11-06T21:54:58.000Z" - }, - "end": { - "$date": "2021-11-06T22:14:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "acb3a775-444f-43ac-9dfd-0ef596f9711d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-06T22:40:16.000Z" - }, - "end": { - "$date": "2021-11-06T22:59:23.000Z" - }, - "events": [ - { - "uuid": "7393c0e2-82ab-411e-80dc-d4578063fc7b", - "start": { - "$date": "2021-11-06T22:40:16.000Z" - }, - "end": { - "$date": "2021-11-06T22:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1356cd2b-bd2d-4aac-a0ce-0ca4479d71d0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-07T00:12:32.000Z" - }, - "end": { - "$date": "2021-11-07T01:27:59.000Z" - }, - "events": [ - { - "uuid": "83f0e7a1-c63f-4ec4-940e-4dd8a39eeff4", - "start": { - "$date": "2021-11-07T00:12:32.000Z" - }, - "end": { - "$date": "2021-11-07T01:27:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a2bfe4ef-b47e-42c3-8e7c-0d96b0e0b865", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-07T00:54:05.000Z" - }, - "end": { - "$date": "2021-11-07T02:51:37.000Z" - }, - "events": [ - { - "uuid": "7e112c6b-d413-46e7-8f13-114b2327dd33", - "start": { - "$date": "2021-11-07T00:54:05.000Z" - }, - "end": { - "$date": "2021-11-07T02:51:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "33dacf16-bf45-4e7e-97db-e7627e6c07c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-07T01:22:08.000Z" - }, - "end": { - "$date": "2021-11-07T05:55:34.000Z" - }, - "events": [ - { - "uuid": "3fbd0d92-5dd7-4da3-95ce-14c1092e45b0", - "start": { - "$date": "2021-11-07T01:22:08.000Z" - }, - "end": { - "$date": "2021-11-07T02:04:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "deac8b68-8df1-4417-8fb3-9477a3d707df", - "start": { - "$date": "2021-11-07T02:04:08.000Z" - }, - "end": { - "$date": "2021-11-07T02:07:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d912f90-2283-4270-8efa-f2634a5eb74c", - "start": { - "$date": "2021-11-07T02:07:08.000Z" - }, - "end": { - "$date": "2021-11-07T05:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8835431b-78a5-4c41-b391-a86f99bdd913", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-07T01:28:10.000Z" - }, - "end": { - "$date": "2021-11-07T05:38:38.000Z" - }, - "events": [ - { - "uuid": "d3990cc3-9a42-4980-973b-e38c35db6475", - "start": { - "$date": "2021-11-07T01:28:10.000Z" - }, - "end": { - "$date": "2021-11-07T05:38:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ccafbd56-374c-4a4a-98e7-eb3e0014c65b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-07T04:32:02.000Z" - }, - "end": { - "$date": "2021-11-07T05:46:01.000Z" - }, - "events": [ - { - "uuid": "2ab9140e-3935-431a-830f-1ac319023c0c", - "start": { - "$date": "2021-11-07T04:32:02.000Z" - }, - "end": { - "$date": "2021-11-07T05:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03085f3f-0f50-419d-94f4-c861e7a170d0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-07T05:20:44.000Z" - }, - "end": { - "$date": "2021-11-07T05:37:05.000Z" - }, - "events": [ - { - "uuid": "6a6f0153-473b-467e-90b5-00e70423c083", - "start": { - "$date": "2021-11-07T05:20:44.000Z" - }, - "end": { - "$date": "2021-11-07T05:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20517ab3-946a-4ebe-a1a4-4ff95cd46f5b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-07T05:46:57.000Z" - }, - "end": { - "$date": "2021-11-07T06:22:02.000Z" - }, - "events": [ - { - "uuid": "6a4b072d-443c-4907-91cc-7cb82006065c", - "start": { - "$date": "2021-11-07T05:46:57.000Z" - }, - "end": { - "$date": "2021-11-07T06:22:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4f208c3e-f5b5-434a-b9e6-5d1015195354", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-07T05:58:13.000Z" - }, - "end": { - "$date": "2021-11-07T06:05:42.000Z" - }, - "events": [ - { - "uuid": "7d1ecdfd-31e7-4b06-9f6f-a7dd3cb0107a", - "start": { - "$date": "2021-11-07T05:58:13.000Z" - }, - "end": { - "$date": "2021-11-07T06:05:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d0ef639-02a2-4021-bb29-39ef9a7491e5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-07T06:28:36.000Z" - }, - "end": { - "$date": "2021-11-07T06:58:21.000Z" - }, - "events": [ - { - "uuid": "9838cb44-9202-4898-8662-8a2e8b888a8e", - "start": { - "$date": "2021-11-07T06:28:36.000Z" - }, - "end": { - "$date": "2021-11-07T06:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b07d50f0-5066-411a-afa0-e77ba093d008", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-07T06:03:00.000Z" - }, - "end": { - "$date": "2021-11-07T06:35:25.000Z" - }, - "events": [ - { - "uuid": "2e16beb6-08d0-423d-a9c1-889990a7d62c", - "start": { - "$date": "2021-11-07T06:03:00.000Z" - }, - "end": { - "$date": "2021-11-07T06:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63b61262-5dd8-4ef6-b733-d8831cc18513", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-07T06:38:54.000Z" - }, - "end": { - "$date": "2021-11-07T08:01:43.000Z" - }, - "events": [ - { - "uuid": "42bb555e-b0b4-4687-835a-0058ff4c781b", - "start": { - "$date": "2021-11-07T06:38:54.000Z" - }, - "end": { - "$date": "2021-11-07T08:01:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd6179d6-fe70-469e-a8fa-f7e13b9c8dcf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T09:56:10.000Z" - }, - "end": { - "$date": "2021-11-07T10:15:33.000Z" - }, - "events": [ - { - "uuid": "02d7ff85-01b8-4a0d-b281-a5268cd8c60e", - "start": { - "$date": "2021-11-07T09:56:10.000Z" - }, - "end": { - "$date": "2021-11-07T10:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1912b69-a232-4291-ae31-6744fa69e3d6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T10:21:03.000Z" - }, - "end": { - "$date": "2021-11-07T10:39:26.000Z" - }, - "events": [ - { - "uuid": "14049c04-4c7a-43f2-884d-4616268b1df2", - "start": { - "$date": "2021-11-07T10:21:03.000Z" - }, - "end": { - "$date": "2021-11-07T10:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ef8664b-3b62-4689-a321-862bc676e05c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T10:41:16.000Z" - }, - "end": { - "$date": "2021-11-07T11:08:49.000Z" - }, - "events": [ - { - "uuid": "dffd6846-e240-4fdf-bce6-7be9a8bc05b2", - "start": { - "$date": "2021-11-07T10:41:16.000Z" - }, - "end": { - "$date": "2021-11-07T11:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c82c9425-3404-4299-8572-688f68a8ab09", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T11:12:29.000Z" - }, - "end": { - "$date": "2021-11-07T11:31:07.000Z" - }, - "events": [ - { - "uuid": "fa3a4d06-fb6b-4eb9-888b-dcd31aea7274", - "start": { - "$date": "2021-11-07T11:12:29.000Z" - }, - "end": { - "$date": "2021-11-07T11:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30f530e7-7a0e-4b05-840f-facfdd9793d3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T11:34:22.000Z" - }, - "end": { - "$date": "2021-11-07T11:57:05.000Z" - }, - "events": [ - { - "uuid": "f81a7462-b03b-4137-acdc-c6bc67f213fa", - "start": { - "$date": "2021-11-07T11:34:22.000Z" - }, - "end": { - "$date": "2021-11-07T11:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21d5792d-5ee6-4927-a11c-1b705c3a521f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T11:59:25.000Z" - }, - "end": { - "$date": "2021-11-07T12:27:35.000Z" - }, - "events": [ - { - "uuid": "babe474b-e09c-474d-a8e6-4491cc478819", - "start": { - "$date": "2021-11-07T11:59:25.000Z" - }, - "end": { - "$date": "2021-11-07T12:27:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1d465132-edc3-45e5-a250-d512de93dc24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-07T15:54:57.000Z" - }, - "end": { - "$date": "2021-11-07T17:29:32.000Z" - }, - "events": [ - { - "uuid": "2045d446-1611-4a97-839a-a9d19375e137", - "start": { - "$date": "2021-11-07T15:54:57.000Z" - }, - "end": { - "$date": "2021-11-07T17:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfc548fd-0fbd-4edf-9e6e-26f8cda53676", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-07T17:06:29.000Z" - }, - "end": { - "$date": "2021-11-07T17:37:21.000Z" - }, - "events": [ - { - "uuid": "d8ff64c6-8f16-40eb-8a72-bf38e02358e6", - "start": { - "$date": "2021-11-07T17:06:29.000Z" - }, - "end": { - "$date": "2021-11-07T17:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c923f6d2-3ed8-4207-bbb9-9b293dd45971", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-07T17:43:03.000Z" - }, - "end": { - "$date": "2021-11-07T18:05:24.000Z" - }, - "events": [ - { - "uuid": "f44a4a1b-67c0-4068-94f8-9ab776c795d0", - "start": { - "$date": "2021-11-07T17:43:03.000Z" - }, - "end": { - "$date": "2021-11-07T18:05:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d551439c-0d40-428c-98e8-c054dc2e8976", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-07T18:09:41.000Z" - }, - "end": { - "$date": "2021-11-07T18:30:41.000Z" - }, - "events": [ - { - "uuid": "6d700e20-d032-44b0-8f6e-310ce6c948f3", - "start": { - "$date": "2021-11-07T18:09:41.000Z" - }, - "end": { - "$date": "2021-11-07T18:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "679821e2-7735-4ac5-b6d7-bb57ff42dedf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-07T18:15:32.000Z" - }, - "end": { - "$date": "2021-11-07T18:58:51.000Z" - }, - "events": [ - { - "uuid": "db84de28-509e-4246-97f1-7f853bd3d1dc", - "start": { - "$date": "2021-11-07T18:15:32.000Z" - }, - "end": { - "$date": "2021-11-07T18:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0edc596f-be24-4ef5-b947-d0ad4817d7fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-07T18:31:12.000Z" - }, - "end": { - "$date": "2021-11-07T20:11:22.000Z" - }, - "events": [ - { - "uuid": "13ba7059-d91b-4c22-b94e-870a06501de7", - "start": { - "$date": "2021-11-07T18:31:12.000Z" - }, - "end": { - "$date": "2021-11-07T18:56:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "694bcb7c-e8a2-4ade-89a5-6ec0b2e49f82", - "start": { - "$date": "2021-11-07T18:56:12.000Z" - }, - "end": { - "$date": "2021-11-07T19:45:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d971999e-db55-46e2-8e87-81d00248a76e", - "start": { - "$date": "2021-11-07T19:45:12.000Z" - }, - "end": { - "$date": "2021-11-07T20:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "61f0e2b8-3884-4d31-8ff7-4a1dbb4d2e37", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-07T19:13:38.000Z" - }, - "end": { - "$date": "2021-11-07T20:07:55.000Z" - }, - "events": [ - { - "uuid": "432cd04c-7223-4f74-89ba-73cfa0c210b3", - "start": { - "$date": "2021-11-07T19:13:38.000Z" - }, - "end": { - "$date": "2021-11-07T20:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43cdbe0b-9aef-43f7-abd4-02212c3bfbd2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-07T19:37:47.000Z" - }, - "end": { - "$date": "2021-11-07T19:44:37.000Z" - }, - "events": [ - { - "uuid": "93632dcc-2a96-4af5-96af-99f8dce24abf", - "start": { - "$date": "2021-11-07T19:37:47.000Z" - }, - "end": { - "$date": "2021-11-07T19:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2cddf1f6-091c-415e-820d-848d92f63d4c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-07T20:11:24.000Z" - }, - "end": { - "$date": "2021-11-07T21:18:13.000Z" - }, - "events": [ - { - "uuid": "77c2c0bc-df04-4636-acef-89093c3a8c81", - "start": { - "$date": "2021-11-07T20:11:24.000Z" - }, - "end": { - "$date": "2021-11-07T21:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "58a13333-0aaa-4f6b-aada-f81c11ce6231", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-07T21:32:02.000Z" - }, - "end": { - "$date": "2021-11-07T22:43:21.000Z" - }, - "events": [ - { - "uuid": "3c1270ad-4bf9-4b78-9915-adebb172ae4a", - "start": { - "$date": "2021-11-07T21:32:02.000Z" - }, - "end": { - "$date": "2021-11-07T22:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acb90ee0-7742-460a-956d-bbe66fd19da2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T21:39:53.000Z" - }, - "end": { - "$date": "2021-11-07T22:02:56.000Z" - }, - "events": [ - { - "uuid": "e9e4e088-635e-448f-a833-05ba41532da5", - "start": { - "$date": "2021-11-07T21:39:53.000Z" - }, - "end": { - "$date": "2021-11-07T22:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2309068b-eadf-428f-a75e-1dc786399991", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T22:05:01.000Z" - }, - "end": { - "$date": "2021-11-07T22:25:24.000Z" - }, - "events": [ - { - "uuid": "02a82443-1529-422e-b7e3-21280a5fc4b3", - "start": { - "$date": "2021-11-07T22:05:01.000Z" - }, - "end": { - "$date": "2021-11-07T22:25:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be4a9d72-50cc-4af1-a3fc-ca3300df3a4f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T22:27:24.000Z" - }, - "end": { - "$date": "2021-11-07T22:47:36.000Z" - }, - "events": [ - { - "uuid": "c6a571da-9064-44fd-a752-158e8f967c56", - "start": { - "$date": "2021-11-07T22:27:24.000Z" - }, - "end": { - "$date": "2021-11-07T22:47:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5ac1661c-4d18-4e90-9e03-12b11c800013", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-07T22:33:41.000Z" - }, - "end": { - "$date": "2021-11-07T23:27:11.000Z" - }, - "events": [ - { - "uuid": "549fd468-6dd5-4c78-b57f-e28f4f116799", - "start": { - "$date": "2021-11-07T22:33:41.000Z" - }, - "end": { - "$date": "2021-11-07T23:27:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3000fdbe-53f0-4759-a3bb-053b3845f477", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T22:49:41.000Z" - }, - "end": { - "$date": "2021-11-07T23:12:04.000Z" - }, - "events": [ - { - "uuid": "ee4141f8-0de7-4819-8262-ca4c223a4b35", - "start": { - "$date": "2021-11-07T22:49:41.000Z" - }, - "end": { - "$date": "2021-11-07T23:12:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "422fe0cb-2b85-437c-a802-72dd7390bff4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T02:44:45.000Z" - }, - "end": { - "$date": "2021-11-08T03:05:38.000Z" - }, - "events": [ - { - "uuid": "16d4a44b-c9c7-4f68-b7ee-778a9c8fdcd6", - "start": { - "$date": "2021-11-08T02:44:45.000Z" - }, - "end": { - "$date": "2021-11-08T03:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3232e55b-c45f-47d5-ae3c-46df64776497", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-07T23:38:10.000Z" - }, - "end": { - "$date": "2021-11-07T23:57:40.000Z" - }, - "events": [ - { - "uuid": "5ae5036d-1399-4b5a-95a6-3a34a86deb2d", - "start": { - "$date": "2021-11-07T23:38:10.000Z" - }, - "end": { - "$date": "2021-11-07T23:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ae82931-3f1d-48eb-8334-167ecb417db9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T00:02:57.000Z" - }, - "end": { - "$date": "2021-11-08T00:21:40.000Z" - }, - "events": [ - { - "uuid": "5dc92223-2e87-4458-9886-741ea03ef69b", - "start": { - "$date": "2021-11-08T00:02:57.000Z" - }, - "end": { - "$date": "2021-11-08T00:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a9d41b8-5793-4a68-9c50-6ba21677e93f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T00:28:02.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:43.000Z" - }, - "events": [ - { - "uuid": "9eb829e7-54bd-477f-9e8f-6b0a3f04019a", - "start": { - "$date": "2021-11-08T00:28:02.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2414ecf4-0809-430b-ab93-561cf6ca09cb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T00:28:03.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:42.000Z" - }, - "events": [ - { - "uuid": "f1292a93-1de2-42f9-bf71-4753ad59b8cc", - "start": { - "$date": "2021-11-08T00:28:03.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06bcca12-77fb-4271-a3bb-726c8b110b34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T00:28:06.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:44.000Z" - }, - "events": [ - { - "uuid": "d6287d31-6fad-463c-9315-e2a008ea95df", - "start": { - "$date": "2021-11-08T00:28:06.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56d99bd0-b6c6-4390-8017-8246a60db618", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T00:28:04.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:44.000Z" - }, - "events": [ - { - "uuid": "5ad7c134-08ca-4fc3-8abb-53ab48254151", - "start": { - "$date": "2021-11-08T00:28:04.000Z" - }, - "end": { - "$date": "2021-11-08T00:30:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ffdbece-ef5e-4fcb-9907-f7682b1cce33", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T00:43:04.000Z" - }, - "end": { - "$date": "2021-11-08T01:09:55.000Z" - }, - "events": [ - { - "uuid": "230cfe4c-9d87-4d13-ad80-5ea5c86050d5", - "start": { - "$date": "2021-11-08T00:43:04.000Z" - }, - "end": { - "$date": "2021-11-08T01:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fd83f31-f8f7-4291-bb9b-079ad2209ee4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T00:43:03.000Z" - }, - "end": { - "$date": "2021-11-08T01:10:04.000Z" - }, - "events": [ - { - "uuid": "cc3d36e8-67eb-4dc6-a86a-696532dbe995", - "start": { - "$date": "2021-11-08T00:43:03.000Z" - }, - "end": { - "$date": "2021-11-08T01:10:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45dc7d3d-69f6-4653-9998-862e57be632b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T00:43:28.000Z" - }, - "end": { - "$date": "2021-11-08T01:10:17.000Z" - }, - "events": [ - { - "uuid": "5bfdf10d-e209-4ad6-91bd-1ccbd87b5ec7", - "start": { - "$date": "2021-11-08T00:43:28.000Z" - }, - "end": { - "$date": "2021-11-08T01:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "867f56ce-b617-425f-8e15-9bab04305f10", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T00:43:09.000Z" - }, - "end": { - "$date": "2021-11-08T01:09:59.000Z" - }, - "events": [ - { - "uuid": "9b672f23-d3f4-4e1c-81b1-2948c4a34302", - "start": { - "$date": "2021-11-08T00:43:09.000Z" - }, - "end": { - "$date": "2021-11-08T01:09:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5ca17dd-0bc9-468f-a7bc-b30f43dadd3a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T01:14:43.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:20.000Z" - }, - "events": [ - { - "uuid": "06de1ab0-234c-45fe-87ad-68533e7ea5da", - "start": { - "$date": "2021-11-08T01:14:43.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5dc327df-cceb-464f-9abc-a0cd43fbaeee", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T01:14:25.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:27.000Z" - }, - "events": [ - { - "uuid": "9df25dc1-30d0-4288-ad51-204022041138", - "start": { - "$date": "2021-11-08T01:14:25.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e37f705e-2f37-443d-ba60-1f916f0dc917", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T01:14:30.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:30.000Z" - }, - "events": [ - { - "uuid": "b806f829-8c52-417e-b5b2-f1782c5bb96a", - "start": { - "$date": "2021-11-08T01:14:30.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63ec58f2-c225-4523-98aa-b8ef6f729ccf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T01:14:25.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:21.000Z" - }, - "events": [ - { - "uuid": "8295a142-4b59-4001-9569-ff1bd0eb7a18", - "start": { - "$date": "2021-11-08T01:14:25.000Z" - }, - "end": { - "$date": "2021-11-08T01:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72ba321b-fd1c-474a-b626-0c5913e32035", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T01:51:16.000Z" - }, - "end": { - "$date": "2021-11-08T01:52:35.000Z" - }, - "events": [ - { - "uuid": "cc3cca24-dfdc-4a0e-847e-378b6eb21ae8", - "start": { - "$date": "2021-11-08T01:51:16.000Z" - }, - "end": { - "$date": "2021-11-08T01:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f1644ad-75d6-4b76-8f1c-124015e7df5f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T02:02:56.000Z" - }, - "end": { - "$date": "2021-11-08T02:37:57.000Z" - }, - "events": [ - { - "uuid": "5a956162-7320-433c-9a9f-12e8721a3da6", - "start": { - "$date": "2021-11-08T02:02:56.000Z" - }, - "end": { - "$date": "2021-11-08T02:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "939e0bbc-0bc0-4985-a9bd-6ae9d1eef3a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T02:24:23.000Z" - }, - "end": { - "$date": "2021-11-08T02:41:08.000Z" - }, - "events": [ - { - "uuid": "4c3b8d38-5481-4427-999c-925fa5e3234a", - "start": { - "$date": "2021-11-08T02:24:23.000Z" - }, - "end": { - "$date": "2021-11-08T02:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dedd0618-421b-45de-a36a-896c0ebcb9cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-08T02:28:29.000Z" - }, - "end": { - "$date": "2021-11-08T05:37:13.000Z" - }, - "events": [ - { - "uuid": "7507eea4-dd0b-476c-ba85-9255d19ee129", - "start": { - "$date": "2021-11-08T02:28:29.000Z" - }, - "end": { - "$date": "2021-11-08T05:37:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fca1dbc6-282e-4116-8521-b3c610de43b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T02:41:13.000Z" - }, - "end": { - "$date": "2021-11-08T02:42:53.000Z" - }, - "events": [ - { - "uuid": "5b6eb3f4-2a87-43b4-8e61-1e637bea0357", - "start": { - "$date": "2021-11-08T02:41:13.000Z" - }, - "end": { - "$date": "2021-11-08T02:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff840d1b-f19b-40d6-acaf-66ee089317ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T02:44:32.000Z" - }, - "end": { - "$date": "2021-11-08T03:05:33.000Z" - }, - "events": [ - { - "uuid": "b0467a36-532b-4365-9f1d-0e6f91d60fc5", - "start": { - "$date": "2021-11-08T02:44:32.000Z" - }, - "end": { - "$date": "2021-11-08T03:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3a6db15-6df2-4ca2-9ee8-7a709cf96956", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T02:45:38.000Z" - }, - "end": { - "$date": "2021-11-08T03:05:27.000Z" - }, - "events": [ - { - "uuid": "45f0c7fa-7ac3-4732-9757-a50bd1dbf3ba", - "start": { - "$date": "2021-11-08T02:45:38.000Z" - }, - "end": { - "$date": "2021-11-08T03:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f5b28798-f722-4631-bc50-02ac4f7618da", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T02:42:58.000Z" - }, - "end": { - "$date": "2021-11-08T02:57:04.000Z" - }, - "events": [ - { - "uuid": "705ec89c-784f-4625-b30b-60dcbb99016d", - "start": { - "$date": "2021-11-08T02:42:58.000Z" - }, - "end": { - "$date": "2021-11-08T02:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b3d197cb-143f-4c9f-8d77-a7a845acde3c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T02:57:14.000Z" - }, - "end": { - "$date": "2021-11-08T03:02:24.000Z" - }, - "events": [ - { - "uuid": "c48ee0d7-76a0-493a-8498-e590e805b49a", - "start": { - "$date": "2021-11-08T02:57:14.000Z" - }, - "end": { - "$date": "2021-11-08T03:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8b3cf3ee-b629-4ede-ac3f-e93f3c5d5c94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T03:02:34.000Z" - }, - "end": { - "$date": "2021-11-08T03:03:49.000Z" - }, - "events": [ - { - "uuid": "04421f7d-c3f5-4a29-bc9d-56b59f81cec8", - "start": { - "$date": "2021-11-08T03:02:34.000Z" - }, - "end": { - "$date": "2021-11-08T03:03:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3596b4d7-3940-422e-acc7-f106b90fd922", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T03:04:54.000Z" - }, - "end": { - "$date": "2021-11-08T03:06:19.000Z" - }, - "events": [ - { - "uuid": "11632aad-6bb1-433e-9265-f10b5329d6b4", - "start": { - "$date": "2021-11-08T03:04:54.000Z" - }, - "end": { - "$date": "2021-11-08T03:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06bf9b97-d939-43b6-a3e6-dd031c1a6d41", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T03:05:47.000Z" - }, - "end": { - "$date": "2021-11-08T03:08:13.000Z" - }, - "events": [ - { - "uuid": "386e65c5-669d-4d08-ab49-5d2135d73276", - "start": { - "$date": "2021-11-08T03:05:47.000Z" - }, - "end": { - "$date": "2021-11-08T03:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e65f655e-2b68-4677-b691-8e7de08bbfff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T03:06:24.000Z" - }, - "end": { - "$date": "2021-11-08T03:08:19.000Z" - }, - "events": [ - { - "uuid": "66648463-57c5-455c-ae6c-a3018f7216cc", - "start": { - "$date": "2021-11-08T03:06:24.000Z" - }, - "end": { - "$date": "2021-11-08T03:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37a1e840-5237-4351-9d8d-b27ccf215d04", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T03:12:48.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:29.000Z" - }, - "events": [ - { - "uuid": "e89a5bd3-f4fc-49e0-b353-ad9459ae589f", - "start": { - "$date": "2021-11-08T03:12:48.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55a2f059-ac53-47ac-ab43-ba49ba7f94f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T03:13:09.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:33.000Z" - }, - "events": [ - { - "uuid": "b7e7b836-f792-4301-ac2c-daa7eae55912", - "start": { - "$date": "2021-11-08T03:13:09.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72c3ecf6-1382-4181-86cb-0b8f68fcb7b4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T03:12:54.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:34.000Z" - }, - "events": [ - { - "uuid": "de93e045-1b1f-4059-b6da-6ecb3838da42", - "start": { - "$date": "2021-11-08T03:12:54.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40da1eb2-577c-454e-aec5-db245f0028e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T03:13:14.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:38.000Z" - }, - "events": [ - { - "uuid": "43492d54-88f5-4cd3-9fd6-72241f3acd7c", - "start": { - "$date": "2021-11-08T03:13:14.000Z" - }, - "end": { - "$date": "2021-11-08T03:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fef176ba-2a70-4372-965d-26bcee3e2d01", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T03:32:26.000Z" - }, - "end": { - "$date": "2021-11-08T03:33:47.000Z" - }, - "events": [ - { - "uuid": "979cb30a-5abb-475c-b3f5-11038428b046", - "start": { - "$date": "2021-11-08T03:32:26.000Z" - }, - "end": { - "$date": "2021-11-08T03:33:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fca37b95-7195-4ce3-ae8f-b7a295685b20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-08T07:05:05.000Z" - }, - "end": { - "$date": "2021-11-08T07:05:16.000Z" - }, - "events": [ - { - "uuid": "bf3539d3-4eaa-4f2a-b354-ad10ba5e051b", - "start": { - "$date": "2021-11-08T07:05:05.000Z" - }, - "end": { - "$date": "2021-11-08T07:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6c06ab0a-4179-4233-a3b0-af1673b6f60d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-08T03:30:34.000Z" - }, - "end": { - "$date": "2021-11-08T05:04:22.000Z" - }, - "events": [ - { - "uuid": "7790ba16-83f1-4308-8013-f8786b3bf38e", - "start": { - "$date": "2021-11-08T03:30:34.000Z" - }, - "end": { - "$date": "2021-11-08T05:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "4a476684-fa6e-4d19-8dba-1ed19ecf49d3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-08T03:32:03.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:10.000Z" - }, - "events": [ - { - "uuid": "06e33588-4736-43b2-8ce2-e66d58b23c8b", - "start": { - "$date": "2021-11-08T03:32:03.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0975f22f-fc41-4944-9a74-ed5e321829be", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T03:32:54.000Z" - }, - "end": { - "$date": "2021-11-08T03:34:21.000Z" - }, - "events": [ - { - "uuid": "b0830404-eabc-4fb1-85c5-11ad26083bd0", - "start": { - "$date": "2021-11-08T03:32:54.000Z" - }, - "end": { - "$date": "2021-11-08T03:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3f978e7-2cd3-4619-9c06-c93ae8fac942", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T03:36:55.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:20.000Z" - }, - "events": [ - { - "uuid": "abc04a66-ef0c-4d1c-b442-219d6578d6de", - "start": { - "$date": "2021-11-08T03:36:55.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96ec52c0-d0c1-4b8a-9bd7-0840bfad5942", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T04:13:07.000Z" - }, - "end": { - "$date": "2021-11-08T04:14:06.000Z" - }, - "events": [ - { - "uuid": "5723e5b4-cb74-4821-b106-cd23b0fbfd05", - "start": { - "$date": "2021-11-08T04:13:07.000Z" - }, - "end": { - "$date": "2021-11-08T04:14:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37c433e2-5e48-4842-8e8c-583efbcc0437", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T03:36:39.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:14.000Z" - }, - "events": [ - { - "uuid": "40def4ef-7dc1-4483-8a35-920cf7efdb28", - "start": { - "$date": "2021-11-08T03:36:39.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a49b8dfe-93c0-4de4-9454-32b422acaf83", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T03:36:40.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:15.000Z" - }, - "events": [ - { - "uuid": "bac30733-15ab-44b3-bac0-3de4391049ac", - "start": { - "$date": "2021-11-08T03:36:40.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "355d77cd-529e-400e-b7c7-18d5622f9b67", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T04:17:36.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:52.000Z" - }, - "events": [ - { - "uuid": "42e740dd-98c1-4249-a420-052eba429fc7", - "start": { - "$date": "2021-11-08T04:17:36.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68a4977b-1220-4c49-85ec-bcd1a431f0c8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T03:36:50.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:12.000Z" - }, - "events": [ - { - "uuid": "b5c25186-47bc-4bdb-a53a-8b3a15dd2f9b", - "start": { - "$date": "2021-11-08T03:36:50.000Z" - }, - "end": { - "$date": "2021-11-08T03:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6833880e-377c-4b18-a8e5-1377aac00178", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T03:57:31.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:11.000Z" - }, - "events": [ - { - "uuid": "b9d56eae-0113-4cb0-b3dc-b4d0c7d24f19", - "start": { - "$date": "2021-11-08T03:57:31.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e36ece4-9c75-48bc-8db0-81d9eb496a58", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T03:57:30.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:06.000Z" - }, - "events": [ - { - "uuid": "644960cf-5f3c-48f4-9f17-7aa5412cd7df", - "start": { - "$date": "2021-11-08T03:57:30.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f814d8e7-45fa-4586-8a4f-cb6d0c447295", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T03:57:29.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:05.000Z" - }, - "events": [ - { - "uuid": "1c1003f5-21ce-408c-94c5-6542858989c5", - "start": { - "$date": "2021-11-08T03:57:29.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b884f11e-fb01-470f-bbe3-b548a5822d83", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T03:57:46.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:02.000Z" - }, - "events": [ - { - "uuid": "41914c3e-f45f-430e-97eb-d3956ad8e8ae", - "start": { - "$date": "2021-11-08T03:57:46.000Z" - }, - "end": { - "$date": "2021-11-08T04:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cded57bd-bd47-4c4e-a8f8-ce0807a857d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T05:31:05.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:45.000Z" - }, - "events": [ - { - "uuid": "e14bdc5b-812a-404c-88b9-ab527a6a148f", - "start": { - "$date": "2021-11-08T05:31:05.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c148bd6-0f67-48f5-837c-026b6dc3f9b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T04:15:54.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:48.000Z" - }, - "events": [ - { - "uuid": "c7266911-e7cb-42c2-9990-bb325cf27221", - "start": { - "$date": "2021-11-08T04:15:54.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63ff67db-8adb-4f4e-8d0e-4423516d248f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T04:15:53.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:49.000Z" - }, - "events": [ - { - "uuid": "725cb3a6-80f3-4767-9bb4-c69761869a20", - "start": { - "$date": "2021-11-08T04:15:53.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d91323ff-2bdc-4db4-a438-bb9d29ef657c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T04:15:54.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:49.000Z" - }, - "events": [ - { - "uuid": "1c719e7c-48f4-4fc8-b7b2-fae2581ae8a6", - "start": { - "$date": "2021-11-08T04:15:54.000Z" - }, - "end": { - "$date": "2021-11-08T04:17:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fb36ad5-7d3c-4017-96ba-3f0850201b4f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T04:17:58.000Z" - }, - "end": { - "$date": "2021-11-08T04:19:10.000Z" - }, - "events": [ - { - "uuid": "f61406f1-a092-46e0-86f0-981d4f1a868c", - "start": { - "$date": "2021-11-08T04:17:58.000Z" - }, - "end": { - "$date": "2021-11-08T04:19:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "179d199f-c2b7-461c-a9e6-d85e1abe6145", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T04:24:09.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:43.000Z" - }, - "events": [ - { - "uuid": "06efcb7d-e6af-4f92-b82a-f124b28071b2", - "start": { - "$date": "2021-11-08T04:24:09.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0528842a-cb6e-4f8c-a999-2e3ce461a4f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T04:24:00.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:31.000Z" - }, - "events": [ - { - "uuid": "22b46157-fa7f-44da-bc82-90ca8170b35a", - "start": { - "$date": "2021-11-08T04:24:00.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad4ee131-5d83-4c9b-803b-cf5cacf6939b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-08T04:23:36.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:45.000Z" - }, - "events": [ - { - "uuid": "4bb8bd79-617e-46e7-bf86-34d059b60314", - "start": { - "$date": "2021-11-08T04:23:36.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71ea5d97-b962-4881-82f9-f16cdfff73b9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T04:23:32.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:33.000Z" - }, - "events": [ - { - "uuid": "31792a60-d663-4d25-973d-543a83828e62", - "start": { - "$date": "2021-11-08T04:23:32.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3af00cd-17ac-4bc7-a563-790a8fa864a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T04:24:07.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:32.000Z" - }, - "events": [ - { - "uuid": "c192f4bc-16cc-4f44-9c15-69360987ed4b", - "start": { - "$date": "2021-11-08T04:24:07.000Z" - }, - "end": { - "$date": "2021-11-08T04:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c317619-a43a-45ec-a42b-822a69eebfc6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T04:43:40.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:56.000Z" - }, - "events": [ - { - "uuid": "07ca5a23-9ef3-4983-a79a-aabf0ce2b988", - "start": { - "$date": "2021-11-08T04:43:40.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaff69cd-4584-4338-ab3c-2204a3deb77b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T04:43:36.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:46.000Z" - }, - "events": [ - { - "uuid": "77af7ba3-40ac-4a6f-828b-a63c797103c8", - "start": { - "$date": "2021-11-08T04:43:36.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d890265c-3f8f-44bc-b69b-6ef5bb47243e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-08T04:43:56.000Z" - }, - "end": { - "$date": "2021-11-08T05:09:02.000Z" - }, - "events": [ - { - "uuid": "2e93b60d-15ca-4073-b7c5-77873df3e922", - "start": { - "$date": "2021-11-08T04:43:56.000Z" - }, - "end": { - "$date": "2021-11-08T05:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "061ac7c6-5099-46ad-8e63-eff17ed29d86", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T04:43:37.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:48.000Z" - }, - "events": [ - { - "uuid": "7b7fc9ae-76a6-434c-af7a-504d86db4d9a", - "start": { - "$date": "2021-11-08T04:43:37.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3a91940-bfb5-4d18-9396-708c20b55609", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T04:43:38.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:49.000Z" - }, - "events": [ - { - "uuid": "0d5eb069-5804-44b3-9458-5e4c953962a6", - "start": { - "$date": "2021-11-08T04:43:38.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ef70c19-bb6f-41dc-91af-77c670597562", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-08T04:43:39.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:53.000Z" - }, - "events": [ - { - "uuid": "3f288a01-0380-42d9-b21e-50addc7fbfcd", - "start": { - "$date": "2021-11-08T04:43:39.000Z" - }, - "end": { - "$date": "2021-11-08T05:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c12b563-d5dc-427d-92f8-862ece53c812", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-08T04:58:42.000Z" - }, - "end": { - "$date": "2021-11-08T07:01:37.000Z" - }, - "events": [ - { - "uuid": "e813c044-f9d0-4b0f-acc1-10eda72ffc95", - "start": { - "$date": "2021-11-08T04:58:42.000Z" - }, - "end": { - "$date": "2021-11-08T07:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17ff16e9-b25e-487e-bb66-40a2adea9f4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T05:12:37.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:17.000Z" - }, - "events": [ - { - "uuid": "5558582b-81c4-43f9-8ad1-04b3dc2883aa", - "start": { - "$date": "2021-11-08T05:12:37.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfa0870d-4aa0-4d7c-9035-a28283db72e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T05:12:01.000Z" - }, - "end": { - "$date": "2021-11-08T05:12:28.000Z" - }, - "events": [ - { - "uuid": "349b9b7e-864e-4e9e-bc8a-2e97a870b84e", - "start": { - "$date": "2021-11-08T05:12:01.000Z" - }, - "end": { - "$date": "2021-11-08T05:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a6b7fbd-b632-48ee-9826-f99607ac5a42", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-08T05:12:23.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:19.000Z" - }, - "events": [ - { - "uuid": "f8cbf871-6005-447e-9595-24a5536ad5be", - "start": { - "$date": "2021-11-08T05:12:23.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "663193af-9bfe-4974-8d80-83e5069b9394", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T05:12:33.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:20.000Z" - }, - "events": [ - { - "uuid": "909b75dc-693d-407c-ab79-fdcc3565eb88", - "start": { - "$date": "2021-11-08T05:12:33.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "172268a6-2085-4a9c-927b-02cf35270606", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T05:12:23.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:15.000Z" - }, - "events": [ - { - "uuid": "e94c96a1-3835-4335-9d15-acae20b4ece2", - "start": { - "$date": "2021-11-08T05:12:23.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "760cd7b6-f49d-4ff8-a2e6-a9e636f5971f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-08T05:12:25.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:14.000Z" - }, - "events": [ - { - "uuid": "bea9d4f7-aee6-4272-b786-c8ef8881bd2d", - "start": { - "$date": "2021-11-08T05:12:25.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34595a65-a48b-441a-8371-940ea1a2fa20", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T05:12:09.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:15.000Z" - }, - "events": [ - { - "uuid": "8a5241fb-95f6-4cf5-83b8-989bc3fb8d22", - "start": { - "$date": "2021-11-08T05:12:09.000Z" - }, - "end": { - "$date": "2021-11-08T05:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b272ea78-e31d-461c-a623-98c26129ceea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T05:31:08.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:47.000Z" - }, - "events": [ - { - "uuid": "dfe626a2-5a98-4353-99e2-078508bb7197", - "start": { - "$date": "2021-11-08T05:31:08.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4681677e-5b39-4b22-9702-8b508c04cb36", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T05:31:19.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:47.000Z" - }, - "events": [ - { - "uuid": "e7289bf9-1207-4fa4-8715-ffd2d1cb5f5d", - "start": { - "$date": "2021-11-08T05:31:19.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a50f4f8d-d356-4739-ae2e-6eb6c816c19b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T05:31:05.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:41.000Z" - }, - "events": [ - { - "uuid": "82f5d067-f22d-468b-8f24-0e496ee9951e", - "start": { - "$date": "2021-11-08T05:31:05.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aeedbb8-6f1d-446a-8c99-1b26a9df79f6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-08T05:31:30.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:44.000Z" - }, - "events": [ - { - "uuid": "1cff5920-6a03-45c7-8159-5dadfc854676", - "start": { - "$date": "2021-11-08T05:31:30.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55908c63-b194-4f60-829a-daae20471841", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-08T05:31:19.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:40.000Z" - }, - "events": [ - { - "uuid": "61bc5137-8cf1-40f9-8f67-56484812e4b7", - "start": { - "$date": "2021-11-08T05:31:19.000Z" - }, - "end": { - "$date": "2021-11-08T05:48:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "282126bc-2161-4130-a338-91c31230346b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-08T05:43:46.000Z" - }, - "end": { - "$date": "2021-11-08T05:55:39.000Z" - }, - "events": [ - { - "uuid": "fe070edc-f71c-4550-bb0d-5bb6a8215781", - "start": { - "$date": "2021-11-08T05:43:46.000Z" - }, - "end": { - "$date": "2021-11-08T05:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3cfc3f55-6bac-4a34-b9a0-aaf5245a8028", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T05:51:49.000Z" - }, - "end": { - "$date": "2021-11-08T06:11:04.000Z" - }, - "events": [ - { - "uuid": "ad860493-a8d5-4316-b6cb-65c3007f6824", - "start": { - "$date": "2021-11-08T05:51:49.000Z" - }, - "end": { - "$date": "2021-11-08T06:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6ce7960d-19f7-4de0-9ccb-d0a2250fadcc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-08T05:52:05.000Z" - }, - "end": { - "$date": "2021-11-08T06:03:05.000Z" - }, - "events": [ - { - "uuid": "7f9e26cb-6ac9-474e-a67c-8cb503f58d17", - "start": { - "$date": "2021-11-08T05:52:05.000Z" - }, - "end": { - "$date": "2021-11-08T06:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c28a8f07-f87b-4637-95bf-0587b4195e7e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T06:07:57.000Z" - }, - "end": { - "$date": "2021-11-08T06:31:52.000Z" - }, - "events": [ - { - "uuid": "f25f7c7f-9df0-4ed9-9912-aa06bbfd3f85", - "start": { - "$date": "2021-11-08T06:07:57.000Z" - }, - "end": { - "$date": "2021-11-08T06:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7a0cf068-0387-41fe-b3db-f7358f151ba6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T06:10:10.000Z" - }, - "end": { - "$date": "2021-11-08T07:05:40.000Z" - }, - "events": [ - { - "uuid": "5e0d1427-7f75-411e-bd8b-ee563373ed9d", - "start": { - "$date": "2021-11-08T06:10:10.000Z" - }, - "end": { - "$date": "2021-11-08T07:05:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "808a57fc-8ea4-4c5a-bb08-67c90b7e77ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-08T06:33:18.000Z" - }, - "end": { - "$date": "2021-11-08T07:06:54.000Z" - }, - "events": [ - { - "uuid": "d1881384-15d3-4ea8-bdf1-ab337b6e0299", - "start": { - "$date": "2021-11-08T06:33:18.000Z" - }, - "end": { - "$date": "2021-11-08T07:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "4552ae6a-5701-431d-ad99-054eae3e8150", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-08T06:47:15.000Z" - }, - "end": { - "$date": "2021-11-08T06:56:11.000Z" - }, - "events": [ - { - "uuid": "4832948d-1541-4f3a-ab58-5777b25b1dfd", - "start": { - "$date": "2021-11-08T06:47:15.000Z" - }, - "end": { - "$date": "2021-11-08T06:56:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "108e3d63-58e5-4b24-b1a8-bde5c7919362", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-08T07:25:10.000Z" - }, - "end": { - "$date": "2021-11-08T07:33:20.000Z" - }, - "events": [ - { - "uuid": "0191358b-2757-4a34-afb7-66c03a339348", - "start": { - "$date": "2021-11-08T07:25:10.000Z" - }, - "end": { - "$date": "2021-11-08T07:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e65bb6f-060b-4521-99c3-ce5a89f0e87d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T07:44:55.000Z" - }, - "end": { - "$date": "2021-11-08T08:18:30.000Z" - }, - "events": [ - { - "uuid": "ca3a7827-e4c7-460d-b647-3b951c817229", - "start": { - "$date": "2021-11-08T07:44:55.000Z" - }, - "end": { - "$date": "2021-11-08T08:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35594bf9-7193-45e7-b2c9-3c62c6502e8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T08:24:07.000Z" - }, - "end": { - "$date": "2021-11-08T08:55:30.000Z" - }, - "events": [ - { - "uuid": "ac4248b8-dc9f-47a8-b84d-1ffe1c436661", - "start": { - "$date": "2021-11-08T08:24:07.000Z" - }, - "end": { - "$date": "2021-11-08T08:55:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ee54f42-1009-4e80-8c2f-165d79726fb5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-08T09:00:28.000Z" - }, - "end": { - "$date": "2021-11-08T09:32:53.000Z" - }, - "events": [ - { - "uuid": "805f72e7-54ee-40c7-983c-6685514b678d", - "start": { - "$date": "2021-11-08T09:00:28.000Z" - }, - "end": { - "$date": "2021-11-08T09:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2c9698f2-b379-4d99-b5cc-28445d35a036", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-08T16:55:51.000Z" - }, - "end": { - "$date": "2021-11-08T17:31:38.000Z" - }, - "events": [ - { - "uuid": "5ba413fb-935b-436e-aaa5-f9cb614859e0", - "start": { - "$date": "2021-11-08T16:55:51.000Z" - }, - "end": { - "$date": "2021-11-08T17:31:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "56362560-3167-4b33-9be8-e7ab6b30905f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-08T17:00:50.000Z" - }, - "end": { - "$date": "2021-11-08T18:49:39.000Z" - }, - "events": [ - { - "uuid": "9b9b416d-e73e-4b56-b4cf-b5cd83fd7298", - "start": { - "$date": "2021-11-08T17:00:50.000Z" - }, - "end": { - "$date": "2021-11-08T18:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cc7b7a74-2ce4-417f-90ed-db74c22c3df2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-08T19:13:22.000Z" - }, - "end": { - "$date": "2021-11-08T19:14:23.000Z" - }, - "events": [ - { - "uuid": "70ce1849-8f8f-49de-96ee-853dae744cb5", - "start": { - "$date": "2021-11-08T19:13:22.000Z" - }, - "end": { - "$date": "2021-11-08T19:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "81661b7b-0f9f-42b7-990e-e2be5863924e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-08T19:18:43.000Z" - }, - "end": { - "$date": "2021-11-08T21:20:56.000Z" - }, - "events": [ - { - "uuid": "35dae29d-147a-4607-bee4-e56fd0dcfad9", - "start": { - "$date": "2021-11-08T19:18:43.000Z" - }, - "end": { - "$date": "2021-11-08T21:20:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6fcb36d-d22f-45d3-beb4-57d805b107c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T20:22:04.000Z" - }, - "end": { - "$date": "2021-11-08T20:50:42.000Z" - }, - "events": [ - { - "uuid": "650ae916-0834-42f6-ab33-b1994eea2843", - "start": { - "$date": "2021-11-08T20:22:04.000Z" - }, - "end": { - "$date": "2021-11-08T20:50:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e23a77fa-a2cf-4ad7-ae5b-90c915a4a6fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T20:58:19.000Z" - }, - "end": { - "$date": "2021-11-08T21:43:42.000Z" - }, - "events": [ - { - "uuid": "9eb7085b-a0a5-4bcc-944e-d5e32f89e2b4", - "start": { - "$date": "2021-11-08T20:58:19.000Z" - }, - "end": { - "$date": "2021-11-08T21:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e239632c-46f9-4af0-96bf-d046c7e1aaa8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T22:29:06.000Z" - }, - "end": { - "$date": "2021-11-08T23:03:14.000Z" - }, - "events": [ - { - "uuid": "c57029a8-3098-41ed-9d20-a9b85b81be29", - "start": { - "$date": "2021-11-08T22:29:06.000Z" - }, - "end": { - "$date": "2021-11-08T22:40:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5272ae80-8bf0-452f-9612-a0056e4e42b3", - "start": { - "$date": "2021-11-08T22:40:06.000Z" - }, - "end": { - "$date": "2021-11-08T22:55:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "542ec0f0-a87d-4862-9d32-61e42ac170aa", - "start": { - "$date": "2021-11-08T22:55:06.000Z" - }, - "end": { - "$date": "2021-11-08T23:00:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7163b983-534b-4c27-aff3-0d7672a305f2", - "start": { - "$date": "2021-11-08T23:00:06.000Z" - }, - "end": { - "$date": "2021-11-08T23:01:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "755eba0a-8961-4885-8b1d-0bcb5de2c039", - "start": { - "$date": "2021-11-08T23:01:06.000Z" - }, - "end": { - "$date": "2021-11-08T23:04:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83ef3c07-2b79-42b7-bd66-14d8993716ce", - "start": { - "$date": "2021-11-08T23:04:06.000Z" - }, - "end": { - "$date": "2021-11-08T23:10:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9f2f1a65-b2d8-4a93-9835-105fcbf500b3", - "start": { - "$date": "2021-11-08T23:10:06.000Z" - }, - "end": { - "$date": "2021-11-08T23:03:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f3d3f0a9-6ca9-4dd8-92fb-244c06cada86", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-08T22:26:52.000Z" - }, - "end": { - "$date": "2021-11-08T22:37:53.000Z" - }, - "events": [ - { - "uuid": "2e5d022e-6c29-47a2-9744-89232b46d463", - "start": { - "$date": "2021-11-08T22:26:52.000Z" - }, - "end": { - "$date": "2021-11-08T22:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "0734111b-1168-4830-82ce-9636cb48e0ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-08T22:39:29.000Z" - }, - "end": { - "$date": "2021-11-08T23:52:46.000Z" - }, - "events": [ - { - "uuid": "ca353eea-1b00-4bb0-b876-c5dbe73bf95c", - "start": { - "$date": "2021-11-08T22:39:29.000Z" - }, - "end": { - "$date": "2021-11-08T23:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "635f0329-c364-45a0-abb4-44cd59bc9490", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-08T23:05:20.000Z" - }, - "end": { - "$date": "2021-11-08T23:37:04.000Z" - }, - "events": [ - { - "uuid": "82e20262-0597-42cc-96b6-becee2523d18", - "start": { - "$date": "2021-11-08T23:05:20.000Z" - }, - "end": { - "$date": "2021-11-08T23:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a031883-0350-403b-b0bb-6ff92b68453e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-08T23:53:38.000Z" - }, - "end": { - "$date": "2021-11-09T01:09:29.000Z" - }, - "events": [ - { - "uuid": "80729db3-390e-4f3e-ac97-ed3a9debec50", - "start": { - "$date": "2021-11-08T23:53:38.000Z" - }, - "end": { - "$date": "2021-11-09T01:09:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "18537f93-368e-4815-978d-0fd0e3ccb361", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-08T23:54:51.000Z" - }, - "end": { - "$date": "2021-11-09T04:21:55.000Z" - }, - "events": [ - { - "uuid": "81970a42-f1ea-4a1b-a92f-b18646f64a9d", - "start": { - "$date": "2021-11-08T23:54:51.000Z" - }, - "end": { - "$date": "2021-11-09T01:36:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ab7cc96f-7dad-4a1d-99b4-5d0f98ddaa27", - "start": { - "$date": "2021-11-09T01:36:51.000Z" - }, - "end": { - "$date": "2021-11-09T02:03:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d597445e-e663-4c6d-86f6-8a93fb2fc23b", - "start": { - "$date": "2021-11-09T02:03:51.000Z" - }, - "end": { - "$date": "2021-11-09T02:05:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "271b6d38-543f-4050-b877-43e45837795d", - "start": { - "$date": "2021-11-09T02:05:51.000Z" - }, - "end": { - "$date": "2021-11-09T02:06:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d05aa0f8-7e13-4430-958e-e997611a19dd", - "start": { - "$date": "2021-11-09T02:06:51.000Z" - }, - "end": { - "$date": "2021-11-09T04:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c3606685-6d4d-4e4c-bf02-6e878c44fd26", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-09T00:48:55.000Z" - }, - "end": { - "$date": "2021-11-09T02:13:28.000Z" - }, - "events": [ - { - "uuid": "dff7f19a-981e-48dc-9695-5260d758cb52", - "start": { - "$date": "2021-11-09T00:48:55.000Z" - }, - "end": { - "$date": "2021-11-09T02:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "067b81f0-2970-4926-bab4-cd668db42788", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-09T01:00:15.000Z" - }, - "end": { - "$date": "2021-11-09T01:29:00.000Z" - }, - "events": [ - { - "uuid": "c1672723-9cdb-45a8-b476-631d73d6354d", - "start": { - "$date": "2021-11-09T01:00:15.000Z" - }, - "end": { - "$date": "2021-11-09T01:29:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b46e0e5b-7a0e-4843-be31-c12c804445c1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-09T01:05:12.000Z" - }, - "end": { - "$date": "2021-11-09T06:15:01.000Z" - }, - "events": [ - { - "uuid": "5fdf79f4-8fcb-4470-91c9-e4a4417553b3", - "start": { - "$date": "2021-11-09T01:05:12.000Z" - }, - "end": { - "$date": "2021-11-09T01:48:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c3d3065-50f9-42b0-b1f9-372371c7f3be", - "start": { - "$date": "2021-11-09T01:48:12.000Z" - }, - "end": { - "$date": "2021-11-09T01:51:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2eaf7c37-2a8b-4a1a-bfa5-9c7a27605b0c", - "start": { - "$date": "2021-11-09T01:51:12.000Z" - }, - "end": { - "$date": "2021-11-09T03:34:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff07d411-eb63-4a6c-a9e2-d35f8cb83715", - "start": { - "$date": "2021-11-09T03:34:12.000Z" - }, - "end": { - "$date": "2021-11-09T03:36:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c865ebb3-ea21-4499-8012-a35f3b10c87f", - "start": { - "$date": "2021-11-09T03:36:12.000Z" - }, - "end": { - "$date": "2021-11-09T06:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17ca2152-0bae-4e10-ab8f-310711d57240", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-09T01:42:55.000Z" - }, - "end": { - "$date": "2021-11-09T02:11:35.000Z" - }, - "events": [ - { - "uuid": "c403fa67-3e4c-4a21-be88-e29551712a69", - "start": { - "$date": "2021-11-09T01:42:55.000Z" - }, - "end": { - "$date": "2021-11-09T02:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b33ff4a-5c0c-46e7-bc31-7b751696e4d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-09T01:44:09.000Z" - }, - "end": { - "$date": "2021-11-09T02:11:43.000Z" - }, - "events": [ - { - "uuid": "9655a39a-100b-4b50-a221-c71ae35c2f4e", - "start": { - "$date": "2021-11-09T01:44:09.000Z" - }, - "end": { - "$date": "2021-11-09T02:11:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2d2e3c0-98b9-4cf0-b3e2-ad88851755aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T02:08:02.000Z" - }, - "end": { - "$date": "2021-11-09T02:28:27.000Z" - }, - "events": [ - { - "uuid": "38f8efb5-dff5-44a1-909e-20af2a0e1a1c", - "start": { - "$date": "2021-11-09T02:08:02.000Z" - }, - "end": { - "$date": "2021-11-09T02:28:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "65bc1771-a771-4129-b7b8-145809f186d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-09T03:24:27.000Z" - }, - "end": { - "$date": "2021-11-09T03:25:42.000Z" - }, - "events": [ - { - "uuid": "836bb908-3604-4514-99d3-0fbc5dd1e8b9", - "start": { - "$date": "2021-11-09T03:24:27.000Z" - }, - "end": { - "$date": "2021-11-09T03:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "56c14a07-bad6-40f3-bbbd-f37a221c2d06", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T02:31:17.000Z" - }, - "end": { - "$date": "2021-11-09T03:22:38.000Z" - }, - "events": [ - { - "uuid": "c4d051e5-7c18-4a1e-a68a-129029cc55aa", - "start": { - "$date": "2021-11-09T02:31:17.000Z" - }, - "end": { - "$date": "2021-11-09T03:22:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e089bb81-ea4e-44a0-85a3-ec7188669b7d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-09T02:36:22.000Z" - }, - "end": { - "$date": "2021-11-09T03:14:22.000Z" - }, - "events": [ - { - "uuid": "90ded5c1-1ab8-49ba-b148-f4d0a58a0c43", - "start": { - "$date": "2021-11-09T02:36:22.000Z" - }, - "end": { - "$date": "2021-11-09T03:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2069dec7-b5db-4022-a610-c291cf3a0ade", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-09T05:28:43.000Z" - }, - "end": { - "$date": "2021-11-09T07:31:44.000Z" - }, - "events": [ - { - "uuid": "f4bfedcc-3181-428e-a45c-ebfe9dddb01f", - "start": { - "$date": "2021-11-09T05:28:43.000Z" - }, - "end": { - "$date": "2021-11-09T06:56:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44dd4a29-8eed-4704-9019-8e81d681639a", - "start": { - "$date": "2021-11-09T06:56:43.000Z" - }, - "end": { - "$date": "2021-11-09T07:01:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9f3fc03e-3aac-486a-9d1f-7cf708ca539d", - "start": { - "$date": "2021-11-09T07:01:43.000Z" - }, - "end": { - "$date": "2021-11-09T07:13:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b77275c0-bce2-4460-8bef-06a216f276cf", - "start": { - "$date": "2021-11-09T07:13:43.000Z" - }, - "end": { - "$date": "2021-11-09T08:02:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b526920-0829-4657-b697-a412285d58a6", - "start": { - "$date": "2021-11-09T08:02:43.000Z" - }, - "end": { - "$date": "2021-11-09T07:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6de48e7b-b6ab-49b9-b6ff-4dd906396714", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-09T06:08:34.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:24.000Z" - }, - "events": [ - { - "uuid": "0b44bde3-1dda-426d-b0ac-0946df0ace56", - "start": { - "$date": "2021-11-09T06:08:34.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03dbfb00-20f8-478e-acbd-6215cb4b58a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T04:11:59.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:57.000Z" - }, - "events": [ - { - "uuid": "9a560724-8f34-4cd9-bf30-3fa27e7def88", - "start": { - "$date": "2021-11-09T04:11:59.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1996bef-fcc3-424a-b705-c864733168bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-09T04:12:02.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:51.000Z" - }, - "events": [ - { - "uuid": "9928ffc9-509a-484d-9f7f-deea95b5cb1f", - "start": { - "$date": "2021-11-09T04:12:02.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd460161-d2ec-49dd-b680-4b4d8b857fc1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-09T04:11:07.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:58.000Z" - }, - "events": [ - { - "uuid": "3ec84624-d24d-47d6-ad4d-470cd28a0c3c", - "start": { - "$date": "2021-11-09T04:11:07.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "408f105e-b5c3-4908-9b67-6f8a1dff5401", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-09T04:12:07.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:58.000Z" - }, - "events": [ - { - "uuid": "a602c628-b297-4ff0-b1c2-4fa532830d90", - "start": { - "$date": "2021-11-09T04:12:07.000Z" - }, - "end": { - "$date": "2021-11-09T04:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95b30d65-a2bc-4574-a9fc-febecbf6fe49", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-09T04:29:39.000Z" - }, - "end": { - "$date": "2021-11-09T04:49:49.000Z" - }, - "events": [ - { - "uuid": "99685c5f-0c16-423c-a3e7-b90827b78730", - "start": { - "$date": "2021-11-09T04:29:39.000Z" - }, - "end": { - "$date": "2021-11-09T04:49:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a87c5a01-99d9-4431-9556-ffa5c4e195e1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-09T04:43:00.000Z" - }, - "end": { - "$date": "2021-11-09T05:19:06.000Z" - }, - "events": [ - { - "uuid": "92d7616b-6814-4ff3-a995-40346d4c2859", - "start": { - "$date": "2021-11-09T04:43:00.000Z" - }, - "end": { - "$date": "2021-11-09T05:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c2aa4f5-2865-4578-869d-3f4ffdce9c89", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-09T06:26:16.000Z" - }, - "end": { - "$date": "2021-11-09T06:27:15.000Z" - }, - "events": [ - { - "uuid": "4c241b56-461e-40b8-8e5c-859114638306", - "start": { - "$date": "2021-11-09T06:26:16.000Z" - }, - "end": { - "$date": "2021-11-09T06:27:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ef7eda2-e5e0-489b-b88d-0571705d9e8b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-09T04:54:23.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:04.000Z" - }, - "events": [ - { - "uuid": "1cd79fe2-9903-4637-8cfb-42506be613c3", - "start": { - "$date": "2021-11-09T04:54:23.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "152c5534-a797-4951-b35a-f259da5c84ca", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T04:54:45.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:05.000Z" - }, - "events": [ - { - "uuid": "43032731-7182-456c-b57a-b2244dfe4568", - "start": { - "$date": "2021-11-09T04:54:45.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2da172e5-e488-4590-a1a1-ccc21e8679b0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-09T04:54:24.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:09.000Z" - }, - "events": [ - { - "uuid": "bd7ce58a-de81-4b52-8177-f0eb0b5c96b4", - "start": { - "$date": "2021-11-09T04:54:24.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f9b1ad0-1729-45c4-ac75-51020697d97c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-09T04:54:35.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:13.000Z" - }, - "events": [ - { - "uuid": "637c5c44-0ec8-4bc3-8707-574d26c23bcb", - "start": { - "$date": "2021-11-09T04:54:35.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e9ace7c-709a-4582-9bd6-1bd1ab03f737", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-09T04:54:28.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:08.000Z" - }, - "events": [ - { - "uuid": "2f11c6ad-ef60-4cb5-bdd7-37c234f8a1a1", - "start": { - "$date": "2021-11-09T04:54:28.000Z" - }, - "end": { - "$date": "2021-11-09T05:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "929e7ea8-3fd5-457e-b564-054a99fddddc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-09T05:17:24.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:30.000Z" - }, - "events": [ - { - "uuid": "1013d5f0-e4e7-41f6-baa3-c5f33dfe1e59", - "start": { - "$date": "2021-11-09T05:17:24.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ca75ce3-5ba9-4176-84b1-d1d083c2248a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T05:17:40.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:35.000Z" - }, - "events": [ - { - "uuid": "2268ab2a-e8be-4e25-985f-fe1a862b30c6", - "start": { - "$date": "2021-11-09T05:17:40.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "547d4774-6262-4918-b0b8-3125461414e4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-09T05:17:36.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:33.000Z" - }, - "events": [ - { - "uuid": "df91cce3-374f-4ac3-965c-bd7b886882d0", - "start": { - "$date": "2021-11-09T05:17:36.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2e1db63-2a02-49d7-ab89-62b9f0ee48ad", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-09T05:17:30.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:39.000Z" - }, - "events": [ - { - "uuid": "fb387300-911f-44bf-948c-3d003d5f4aab", - "start": { - "$date": "2021-11-09T05:17:30.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7610843f-e526-431e-93de-ef852aab7ecb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-09T05:17:28.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:29.000Z" - }, - "events": [ - { - "uuid": "6fbe70b3-2669-4034-b1fd-dfc016af0729", - "start": { - "$date": "2021-11-09T05:17:28.000Z" - }, - "end": { - "$date": "2021-11-09T05:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f4ecd51-fc0a-4308-b161-0f4e2ae4556c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-09T05:42:27.000Z" - }, - "end": { - "$date": "2021-11-09T05:46:41.000Z" - }, - "events": [ - { - "uuid": "04f2b418-4383-4b70-9b0e-d8f2c2f48982", - "start": { - "$date": "2021-11-09T05:42:27.000Z" - }, - "end": { - "$date": "2021-11-09T05:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d436d400-44b2-4e86-a9df-d2b20102f565", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-09T05:42:35.000Z" - }, - "end": { - "$date": "2021-11-09T06:05:15.000Z" - }, - "events": [ - { - "uuid": "ffa5f184-d870-42c5-98a7-cd11c332432c", - "start": { - "$date": "2021-11-09T05:42:35.000Z" - }, - "end": { - "$date": "2021-11-09T06:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "097b602e-d03c-4bc5-9f5d-9fc334caa614", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-09T05:42:35.000Z" - }, - "end": { - "$date": "2021-11-09T06:05:10.000Z" - }, - "events": [ - { - "uuid": "46709c29-2d66-4b91-90b9-49d7cb9f0811", - "start": { - "$date": "2021-11-09T05:42:35.000Z" - }, - "end": { - "$date": "2021-11-09T06:05:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29784c52-868d-4e51-b579-ce4e1a86e667", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-09T05:47:25.000Z" - }, - "end": { - "$date": "2021-11-09T05:51:55.000Z" - }, - "events": [ - { - "uuid": "67b88407-e6ee-47e4-a2ae-ff203b25678b", - "start": { - "$date": "2021-11-09T05:47:25.000Z" - }, - "end": { - "$date": "2021-11-09T05:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02ea3239-5f3b-4424-9728-ac56eae233df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-09T06:09:06.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:29.000Z" - }, - "events": [ - { - "uuid": "df4ceec2-a852-415c-8422-efffa71cfd88", - "start": { - "$date": "2021-11-09T06:09:06.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ebdf0e5-fb3d-4771-88d1-bc9601f998aa", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-09T06:08:16.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:21.000Z" - }, - "events": [ - { - "uuid": "d1411849-6d7e-4267-81b6-0713506b42cd", - "start": { - "$date": "2021-11-09T06:08:16.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3649ff0d-3464-4d39-b2ee-9b2ee0a0d8bd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-09T06:08:15.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:15.000Z" - }, - "events": [ - { - "uuid": "41aeb90d-6e84-4aa6-aeed-28119a6d3dcb", - "start": { - "$date": "2021-11-09T06:08:15.000Z" - }, - "end": { - "$date": "2021-11-09T06:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c679dbe5-ab83-42e7-a9a4-bf51777c7acf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-09T06:28:06.000Z" - }, - "end": { - "$date": "2021-11-09T06:32:15.000Z" - }, - "events": [ - { - "uuid": "881076da-7d11-4812-ac21-60fdfdb80c98", - "start": { - "$date": "2021-11-09T06:28:06.000Z" - }, - "end": { - "$date": "2021-11-09T06:32:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7acde8f2-41d0-449f-ad3c-9b1790829af0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-09T06:32:41.000Z" - }, - "end": { - "$date": "2021-11-09T07:46:39.000Z" - }, - "events": [ - { - "uuid": "494f4eed-ddca-4268-85d8-137b624a8fe6", - "start": { - "$date": "2021-11-09T06:32:41.000Z" - }, - "end": { - "$date": "2021-11-09T07:46:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9907d985-163f-44e7-b3eb-d49def910156", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-09T08:11:45.000Z" - }, - "end": { - "$date": "2021-11-09T08:17:49.000Z" - }, - "events": [ - { - "uuid": "69b04ef8-ee41-459d-af4d-1b746df85291", - "start": { - "$date": "2021-11-09T08:11:45.000Z" - }, - "end": { - "$date": "2021-11-09T08:17:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "a66c345e-92e2-449b-9f87-6dd85705b506", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-09T13:41:24.000Z" - }, - "end": { - "$date": "2021-11-09T13:52:17.000Z" - }, - "events": [ - { - "uuid": "26c5fecc-3af2-4464-8b8e-54da78bf39c2", - "start": { - "$date": "2021-11-09T13:41:24.000Z" - }, - "end": { - "$date": "2021-11-09T13:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "34339ed9-5b6b-4d75-ac2d-193e0288d91d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T16:14:22.000Z" - }, - "end": { - "$date": "2021-11-09T16:16:37.000Z" - }, - "events": [ - { - "uuid": "92e348b5-643e-4480-8eb3-a5382718771f", - "start": { - "$date": "2021-11-09T16:14:22.000Z" - }, - "end": { - "$date": "2021-11-09T16:16:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "c3ffd0e1-920e-410f-b112-b394ddbd7f81", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T18:06:47.000Z" - }, - "end": { - "$date": "2021-11-09T18:31:04.000Z" - }, - "events": [ - { - "uuid": "3ff78541-e700-48ac-b391-0b2307d74c28", - "start": { - "$date": "2021-11-09T18:06:47.000Z" - }, - "end": { - "$date": "2021-11-09T18:31:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "0b3e47bb-2c1d-4254-968f-5d287ecca33e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-09T18:47:31.000Z" - }, - "end": { - "$date": "2021-11-09T21:38:16.000Z" - }, - "events": [ - { - "uuid": "f9d21d43-174e-49fe-b197-ba3626539866", - "start": { - "$date": "2021-11-09T18:47:31.000Z" - }, - "end": { - "$date": "2021-11-09T21:38:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "33610408-4a40-47fe-a987-e98b41ef8aff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-09T18:58:39.000Z" - }, - "end": { - "$date": "2021-11-09T19:05:04.000Z" - }, - "events": [ - { - "uuid": "8497c2f0-2b5d-429b-86aa-fba426267814", - "start": { - "$date": "2021-11-09T18:58:39.000Z" - }, - "end": { - "$date": "2021-11-09T19:05:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ccd80c69-61e9-4717-9f98-6f01ae783a3b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-09T23:06:53.000Z" - }, - "end": { - "$date": "2021-11-09T23:38:23.000Z" - }, - "events": [ - { - "uuid": "3c0d0682-fa2c-4d97-8546-e9a572ad7861", - "start": { - "$date": "2021-11-09T23:06:53.000Z" - }, - "end": { - "$date": "2021-11-09T23:38:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5da34e8-b141-40b9-a65b-062a16fa39cc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T00:30:54.000Z" - }, - "end": { - "$date": "2021-11-10T01:08:24.000Z" - }, - "events": [ - { - "uuid": "40718ebb-8f6f-4ce7-b32e-b7f6cde231fc", - "start": { - "$date": "2021-11-10T00:30:54.000Z" - }, - "end": { - "$date": "2021-11-10T01:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "564016a9-2f45-46b3-96a3-b53df18cd468", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-09T23:44:36.000Z" - }, - "end": { - "$date": "2021-11-10T00:38:42.000Z" - }, - "events": [ - { - "uuid": "1388c022-d8bf-4634-b3b9-be8e81d35acb", - "start": { - "$date": "2021-11-09T23:44:36.000Z" - }, - "end": { - "$date": "2021-11-10T00:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddfd236e-ea74-4ac5-886a-f7745f4ef5ce", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T00:30:26.000Z" - }, - "end": { - "$date": "2021-11-10T01:08:27.000Z" - }, - "events": [ - { - "uuid": "c1bb3057-4ecb-4805-80c3-64072d66e01b", - "start": { - "$date": "2021-11-10T00:30:26.000Z" - }, - "end": { - "$date": "2021-11-10T01:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "518daf46-a964-42f3-a8f2-1cda4f528179", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T00:30:38.000Z" - }, - "end": { - "$date": "2021-11-10T01:08:33.000Z" - }, - "events": [ - { - "uuid": "7e64af63-c4bd-4106-96dd-71ae5b1a0546", - "start": { - "$date": "2021-11-10T00:30:38.000Z" - }, - "end": { - "$date": "2021-11-10T01:08:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90e5823a-0afb-4457-82ab-c9c1815a2ee2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T01:18:30.000Z" - }, - "end": { - "$date": "2021-11-10T01:41:40.000Z" - }, - "events": [ - { - "uuid": "dc9ccf2c-8071-4098-b6cb-d8d27a666f5f", - "start": { - "$date": "2021-11-10T01:18:30.000Z" - }, - "end": { - "$date": "2021-11-10T01:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99ec6176-bc59-4e28-9c16-65ff7018748b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T01:15:57.000Z" - }, - "end": { - "$date": "2021-11-10T01:41:47.000Z" - }, - "events": [ - { - "uuid": "7b47d45a-ce27-40ab-aadf-c05746714b24", - "start": { - "$date": "2021-11-10T01:15:57.000Z" - }, - "end": { - "$date": "2021-11-10T01:41:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c1f0d0a-78e8-45ac-b174-5c7b977fcb0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T01:16:00.000Z" - }, - "end": { - "$date": "2021-11-10T01:41:50.000Z" - }, - "events": [ - { - "uuid": "38d5a80d-0c9f-4e65-983f-868a31af952e", - "start": { - "$date": "2021-11-10T01:16:00.000Z" - }, - "end": { - "$date": "2021-11-10T01:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "befe8019-2367-44fa-b265-b6f7a9afb592", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-10T01:12:45.000Z" - }, - "end": { - "$date": "2021-11-10T01:42:28.000Z" - }, - "events": [ - { - "uuid": "ff03ab88-ee33-4911-aef2-c04ac7a9e7e0", - "start": { - "$date": "2021-11-10T01:12:45.000Z" - }, - "end": { - "$date": "2021-11-10T01:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "dc5f1637-bc27-40b5-93a4-5d9ed895fd56", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-10T01:19:17.000Z" - }, - "end": { - "$date": "2021-11-10T01:52:53.000Z" - }, - "events": [ - { - "uuid": "6771e531-c816-4bde-a232-48b5a648b6d0", - "start": { - "$date": "2021-11-10T01:19:17.000Z" - }, - "end": { - "$date": "2021-11-10T01:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c3d93ad-f76a-4238-a176-29f999c46ba4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T02:03:07.000Z" - }, - "end": { - "$date": "2021-11-10T02:37:26.000Z" - }, - "events": [ - { - "uuid": "bfaed31f-2240-47ff-a25f-a925245158d3", - "start": { - "$date": "2021-11-10T02:03:07.000Z" - }, - "end": { - "$date": "2021-11-10T02:37:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4b3f5c7-5cac-48ee-a423-e0605dfde2fa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T01:43:19.000Z" - }, - "end": { - "$date": "2021-11-10T01:47:28.000Z" - }, - "events": [ - { - "uuid": "07894e6a-6788-464c-8695-5c3b162e3532", - "start": { - "$date": "2021-11-10T01:43:19.000Z" - }, - "end": { - "$date": "2021-11-10T01:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f33da93a-fc14-4364-a696-ee984bef2c9c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T01:43:24.000Z" - }, - "end": { - "$date": "2021-11-10T01:47:29.000Z" - }, - "events": [ - { - "uuid": "20d8f93b-f302-4449-b57b-47aa915e41f2", - "start": { - "$date": "2021-11-10T01:43:24.000Z" - }, - "end": { - "$date": "2021-11-10T01:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73bcfda9-882d-489e-b32c-0ac18929b530", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T02:01:39.000Z" - }, - "end": { - "$date": "2021-11-10T02:37:25.000Z" - }, - "events": [ - { - "uuid": "8dd52f67-a04e-4b50-b74d-3839bac019ab", - "start": { - "$date": "2021-11-10T02:01:39.000Z" - }, - "end": { - "$date": "2021-11-10T02:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28487aca-eef7-4af6-97ff-94b7643c0405", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T02:01:53.000Z" - }, - "end": { - "$date": "2021-11-10T02:37:24.000Z" - }, - "events": [ - { - "uuid": "70bec72c-28c8-496b-96e4-6def2fdd398f", - "start": { - "$date": "2021-11-10T02:01:53.000Z" - }, - "end": { - "$date": "2021-11-10T02:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3edb0333-a04a-4292-9fd4-36d2353a1c05", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-10T02:04:00.000Z" - }, - "end": { - "$date": "2021-11-10T02:36:04.000Z" - }, - "events": [ - { - "uuid": "35f1977e-6d18-47cb-b805-281745b7a2d7", - "start": { - "$date": "2021-11-10T02:04:00.000Z" - }, - "end": { - "$date": "2021-11-10T02:18:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "71c7af35-1237-44a3-9ec0-0b854c22023a", - "start": { - "$date": "2021-11-10T02:18:00.000Z" - }, - "end": { - "$date": "2021-11-10T02:22:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2986c9e1-9b5e-452f-a561-1b7a2d33260d", - "start": { - "$date": "2021-11-10T02:22:00.000Z" - }, - "end": { - "$date": "2021-11-10T02:35:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1da0f918-7ab0-45c3-a626-37dd74e9ead5", - "start": { - "$date": "2021-11-10T02:35:00.000Z" - }, - "end": { - "$date": "2021-11-10T02:36:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "70b9eca0-ba9a-4d5a-843e-9906d191a6a8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-10T02:23:24.000Z" - }, - "end": { - "$date": "2021-11-10T03:02:01.000Z" - }, - "events": [ - { - "uuid": "a8757384-667f-473d-9f1d-7ea049b5c616", - "start": { - "$date": "2021-11-10T02:23:24.000Z" - }, - "end": { - "$date": "2021-11-10T03:02:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "076d7de8-eac7-4756-bb81-859a7d6474a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-10T02:36:34.000Z" - }, - "end": { - "$date": "2021-11-10T06:59:03.000Z" - }, - "events": [ - { - "uuid": "3b58c0cd-7a0a-440a-9fbc-78a55134d734", - "start": { - "$date": "2021-11-10T02:36:34.000Z" - }, - "end": { - "$date": "2021-11-10T02:50:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f86989f-c71b-4996-b8da-6509cb45425c", - "start": { - "$date": "2021-11-10T02:50:34.000Z" - }, - "end": { - "$date": "2021-11-10T02:54:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c8c5659b-76cd-4398-826a-ed7c6c38be9c", - "start": { - "$date": "2021-11-10T02:54:34.000Z" - }, - "end": { - "$date": "2021-11-10T05:04:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d03512c-46f9-4578-997c-13060a653a9c", - "start": { - "$date": "2021-11-10T05:04:34.000Z" - }, - "end": { - "$date": "2021-11-10T05:09:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6dd6150a-bffc-4174-bc07-dff068a13529", - "start": { - "$date": "2021-11-10T05:09:34.000Z" - }, - "end": { - "$date": "2021-11-10T05:24:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4f9f0868-9c59-40e0-ad86-bdc0aba145a3", - "start": { - "$date": "2021-11-10T05:24:34.000Z" - }, - "end": { - "$date": "2021-11-10T05:39:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "023a6b99-7d12-4fa4-95af-2ee1812947d2", - "start": { - "$date": "2021-11-10T05:39:34.000Z" - }, - "end": { - "$date": "2021-11-10T06:59:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b04edef8-6aaa-4031-87df-7d4a479c89cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T02:39:27.000Z" - }, - "end": { - "$date": "2021-11-10T03:00:47.000Z" - }, - "events": [ - { - "uuid": "eda4fa7c-b431-46a2-b3d5-c7f3adb323f4", - "start": { - "$date": "2021-11-10T02:39:27.000Z" - }, - "end": { - "$date": "2021-11-10T03:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "415657cf-baaa-4182-b939-0fff606ef975", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T02:41:09.000Z" - }, - "end": { - "$date": "2021-11-10T03:00:45.000Z" - }, - "events": [ - { - "uuid": "dce46936-763b-4d38-98bd-d100f02c6e73", - "start": { - "$date": "2021-11-10T02:41:09.000Z" - }, - "end": { - "$date": "2021-11-10T03:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b634e17-7e8e-4703-9978-fd5cc4013866", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T02:39:44.000Z" - }, - "end": { - "$date": "2021-11-10T03:00:50.000Z" - }, - "events": [ - { - "uuid": "c2746551-2e04-47b0-9320-a43fb2739ef8", - "start": { - "$date": "2021-11-10T02:39:44.000Z" - }, - "end": { - "$date": "2021-11-10T03:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d6d222bd-8e8e-43e7-b757-0868dcae8cfb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-10T02:42:46.000Z" - }, - "end": { - "$date": "2021-11-10T02:53:37.000Z" - }, - "events": [ - { - "uuid": "99e511ec-42cf-4a99-ab6b-44e46db8d612", - "start": { - "$date": "2021-11-10T02:42:46.000Z" - }, - "end": { - "$date": "2021-11-10T02:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cd9ac09-27cb-4321-b542-9c9211fb6860", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T03:01:20.000Z" - }, - "end": { - "$date": "2021-11-10T03:04:07.000Z" - }, - "events": [ - { - "uuid": "656a3bda-c242-4e79-8a55-56ddcfd55ae7", - "start": { - "$date": "2021-11-10T03:01:20.000Z" - }, - "end": { - "$date": "2021-11-10T03:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "732dcdda-2a50-4d54-9cd4-8c57e0c51fd2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T03:04:07.000Z" - }, - "end": { - "$date": "2021-11-10T03:22:32.000Z" - }, - "events": [ - { - "uuid": "a59e4e49-e0b2-4bc4-9c93-2af95de94467", - "start": { - "$date": "2021-11-10T03:04:07.000Z" - }, - "end": { - "$date": "2021-11-10T03:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "434fcc95-bfe8-401e-a0bb-12e4f6a2ec48", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-10T03:05:28.000Z" - }, - "end": { - "$date": "2021-11-10T03:35:02.000Z" - }, - "events": [ - { - "uuid": "5aeab0b5-4b8a-40a4-bfa5-41978945e8b5", - "start": { - "$date": "2021-11-10T03:05:28.000Z" - }, - "end": { - "$date": "2021-11-10T03:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b6b440e6-d899-4be5-9a27-e86b497dfb2c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T03:06:48.000Z" - }, - "end": { - "$date": "2021-11-10T03:32:41.000Z" - }, - "events": [ - { - "uuid": "e29c0045-e288-4973-9a31-9c2032117625", - "start": { - "$date": "2021-11-10T03:06:48.000Z" - }, - "end": { - "$date": "2021-11-10T03:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ad8262a0-be93-45f3-bc03-91c3603a9bb6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-10T06:38:54.000Z" - }, - "end": { - "$date": "2021-11-10T06:54:30.000Z" - }, - "events": [ - { - "uuid": "1f21d839-b8a7-46fe-b516-1502dffedd19", - "start": { - "$date": "2021-11-10T06:38:54.000Z" - }, - "end": { - "$date": "2021-11-10T06:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6f06d41a-ccc6-4dd3-930e-21e9ad579623", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-10T04:53:43.000Z" - }, - "end": { - "$date": "2021-11-10T06:39:09.000Z" - }, - "events": [ - { - "uuid": "969ef17e-f9fa-4cf0-858a-e5b19f515145", - "start": { - "$date": "2021-11-10T04:53:43.000Z" - }, - "end": { - "$date": "2021-11-10T06:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b73fc13f-61ae-4bb9-81a5-1073c257beb9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T05:27:08.000Z" - }, - "end": { - "$date": "2021-11-10T05:48:32.000Z" - }, - "events": [ - { - "uuid": "b7d1fa6d-3ec7-4518-858c-98230ff35d87", - "start": { - "$date": "2021-11-10T05:27:08.000Z" - }, - "end": { - "$date": "2021-11-10T05:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "836831f7-8901-4934-ad3d-53f2081068db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-10T05:27:30.000Z" - }, - "end": { - "$date": "2021-11-10T05:48:32.000Z" - }, - "events": [ - { - "uuid": "a1c2c817-c1d0-40c6-ac19-e3ebd0c00aa2", - "start": { - "$date": "2021-11-10T05:27:30.000Z" - }, - "end": { - "$date": "2021-11-10T05:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bbbfc52-76ba-4027-b31c-433619d0aa41", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T05:28:06.000Z" - }, - "end": { - "$date": "2021-11-10T05:48:35.000Z" - }, - "events": [ - { - "uuid": "f1dc85fc-cc06-4579-a129-a17992eda456", - "start": { - "$date": "2021-11-10T05:28:06.000Z" - }, - "end": { - "$date": "2021-11-10T05:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68f83a86-c3f4-4782-9438-e8c43b2bd755", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-10T05:32:29.000Z" - }, - "end": { - "$date": "2021-11-10T07:03:04.000Z" - }, - "events": [ - { - "uuid": "c7606a02-4f22-4518-a423-d16a73ddb4e9", - "start": { - "$date": "2021-11-10T05:32:29.000Z" - }, - "end": { - "$date": "2021-11-10T06:31:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "be13ce2d-4a13-49c6-b8cb-7e461f20d156", - "start": { - "$date": "2021-11-10T06:31:29.000Z" - }, - "end": { - "$date": "2021-11-10T06:35:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79a7f5b3-721d-45ca-8189-078b5d63aaa1", - "start": { - "$date": "2021-11-10T06:35:29.000Z" - }, - "end": { - "$date": "2021-11-10T06:37:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1daacec0-c598-4262-a859-eacead6c164e", - "start": { - "$date": "2021-11-10T06:37:29.000Z" - }, - "end": { - "$date": "2021-11-10T07:03:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff6905aa-1292-4eab-af71-e1af3e3488d5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T05:50:58.000Z" - }, - "end": { - "$date": "2021-11-10T06:05:58.000Z" - }, - "events": [ - { - "uuid": "91a14ff1-303d-46ae-a565-e5fdd857f6ef", - "start": { - "$date": "2021-11-10T05:50:58.000Z" - }, - "end": { - "$date": "2021-11-10T06:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a977e4dc-eecd-440f-8946-ccd476fc992a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-10T05:51:21.000Z" - }, - "end": { - "$date": "2021-11-10T06:05:57.000Z" - }, - "events": [ - { - "uuid": "03f164d7-1f3a-4b99-bf5d-b7f872fe91b2", - "start": { - "$date": "2021-11-10T05:51:21.000Z" - }, - "end": { - "$date": "2021-11-10T06:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba874381-d030-451f-80e0-788a8b62a71b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T05:52:17.000Z" - }, - "end": { - "$date": "2021-11-10T06:06:03.000Z" - }, - "events": [ - { - "uuid": "5af4919f-a5ca-4e67-8b1a-206c3a06a09c", - "start": { - "$date": "2021-11-10T05:52:17.000Z" - }, - "end": { - "$date": "2021-11-10T06:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d5cd8d1-e5ee-4ca0-ae94-1dd0f98d1b6c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T06:08:44.000Z" - }, - "end": { - "$date": "2021-11-10T06:28:12.000Z" - }, - "events": [ - { - "uuid": "54f7486e-74d3-404e-8908-11ee465d979f", - "start": { - "$date": "2021-11-10T06:08:44.000Z" - }, - "end": { - "$date": "2021-11-10T06:28:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c7862bd-2794-44bb-b67d-5deeaeb4e088", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-10T06:28:06.000Z" - }, - "end": { - "$date": "2021-11-10T06:29:27.000Z" - }, - "events": [ - { - "uuid": "f0c8eabe-d411-49d1-bd6b-2119a26d4d40", - "start": { - "$date": "2021-11-10T06:28:06.000Z" - }, - "end": { - "$date": "2021-11-10T06:29:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49e1913a-c7af-4f89-b94a-e085df2180a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T06:08:07.000Z" - }, - "end": { - "$date": "2021-11-10T06:28:16.000Z" - }, - "events": [ - { - "uuid": "935638f3-b174-4b28-ba8b-f6f6d421ca0e", - "start": { - "$date": "2021-11-10T06:08:07.000Z" - }, - "end": { - "$date": "2021-11-10T06:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ddc25bc9-0b91-4622-a6e6-d57611457712", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-10T07:03:14.000Z" - }, - "end": { - "$date": "2021-11-10T09:29:48.000Z" - }, - "events": [ - { - "uuid": "14dc3697-e9af-4f96-956a-c9ab944cc838", - "start": { - "$date": "2021-11-10T07:03:14.000Z" - }, - "end": { - "$date": "2021-11-10T09:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ea3b610-693b-4280-8d62-19c8e1e85ace", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T08:13:01.000Z" - }, - "end": { - "$date": "2021-11-10T08:26:56.000Z" - }, - "events": [ - { - "uuid": "c6bed296-ef5f-42e6-ac2f-68ecd4ed61d0", - "start": { - "$date": "2021-11-10T08:13:01.000Z" - }, - "end": { - "$date": "2021-11-10T08:26:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "256aa095-12d9-4081-a5f4-bda2000f0a5c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T08:33:13.000Z" - }, - "end": { - "$date": "2021-11-10T09:06:47.000Z" - }, - "events": [ - { - "uuid": "dd5b4be9-9eaf-44ee-9e3d-91d5dffd19b4", - "start": { - "$date": "2021-11-10T08:33:13.000Z" - }, - "end": { - "$date": "2021-11-10T09:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9176e97-96a1-4706-99fc-af52ef42db87", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-10T09:14:51.000Z" - }, - "end": { - "$date": "2021-11-10T09:53:00.000Z" - }, - "events": [ - { - "uuid": "774f6ccc-6d57-4229-a289-61bd562f6cbe", - "start": { - "$date": "2021-11-10T09:14:51.000Z" - }, - "end": { - "$date": "2021-11-10T09:53:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "778ca6d6-748f-46f6-ba13-0e3d4ca5bc43", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T12:00:47.000Z" - }, - "end": { - "$date": "2021-11-10T22:14:16.000Z" - }, - "events": [ - { - "uuid": "ea64b16d-e2dd-4811-ad34-af812b60c961", - "start": { - "$date": "2021-11-10T12:00:47.000Z" - }, - "end": { - "$date": "2021-11-10T22:14:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "5247c96a-3256-4891-9ed9-30f7d0daea97", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-10T17:23:07.000Z" - }, - "end": { - "$date": "2021-11-10T17:40:52.000Z" - }, - "events": [ - { - "uuid": "3ea03c25-28db-467c-80b2-9094b1797450", - "start": { - "$date": "2021-11-10T17:23:07.000Z" - }, - "end": { - "$date": "2021-11-10T17:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a6dd46e1-7188-4e32-852f-23479466311d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-10T19:32:39.000Z" - }, - "end": { - "$date": "2021-11-10T19:32:49.000Z" - }, - "events": [ - { - "uuid": "ba5189eb-7b65-4a39-8934-7ac3e115a93c", - "start": { - "$date": "2021-11-10T19:32:39.000Z" - }, - "end": { - "$date": "2021-11-10T19:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "8651b825-7793-4d8b-b65a-8d8fcb3521b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-10T18:52:42.000Z" - }, - "end": { - "$date": "2021-11-10T19:28:00.000Z" - }, - "events": [ - { - "uuid": "73700c39-8d8b-4831-afd7-772799f95d1e", - "start": { - "$date": "2021-11-10T18:52:42.000Z" - }, - "end": { - "$date": "2021-11-10T19:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "719baeef-c3e0-45d7-a396-d7e3bb491e95", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-10T23:58:30.000Z" - }, - "end": { - "$date": "2021-11-10T23:58:30.000Z" - }, - "events": [ - { - "uuid": "6b663d8f-fb8e-40f4-b3fc-653ff3591a11", - "start": { - "$date": "2021-11-10T23:58:30.000Z" - }, - "end": { - "$date": "2021-11-10T23:58:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "29c56175-3eff-4a6f-be95-59c84eab50a6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-10T23:29:13.000Z" - }, - "end": { - "$date": "2021-11-11T01:11:32.000Z" - }, - "events": [ - { - "uuid": "53be1bcc-b6bb-4272-a160-79798e4cf0d6", - "start": { - "$date": "2021-11-10T23:29:13.000Z" - }, - "end": { - "$date": "2021-11-11T01:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32ce0c8c-e7dd-4c62-8143-c8c3e3e0a5ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T00:44:55.000Z" - }, - "end": { - "$date": "2021-11-11T01:13:45.000Z" - }, - "events": [ - { - "uuid": "f82ce0f3-afd7-448d-83ac-5ec9d69096ce", - "start": { - "$date": "2021-11-11T00:44:55.000Z" - }, - "end": { - "$date": "2021-11-11T01:07:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1912ef62-cc0e-4ab6-91c1-386d021ad572", - "start": { - "$date": "2021-11-11T01:07:55.000Z" - }, - "end": { - "$date": "2021-11-11T01:16:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "72c0a1fd-603d-4789-8698-596014ef109b", - "start": { - "$date": "2021-11-11T01:16:55.000Z" - }, - "end": { - "$date": "2021-11-11T01:19:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "859741a6-2cd1-4e12-a784-fdb358880e62", - "start": { - "$date": "2021-11-11T01:19:55.000Z" - }, - "end": { - "$date": "2021-11-11T01:23:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7bfe0bf5-5a8d-4bbb-a639-6f560dfdee7c", - "start": { - "$date": "2021-11-11T01:23:55.000Z" - }, - "end": { - "$date": "2021-11-11T01:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "cb12d9be-0079-4f3b-86cf-a8b2541b9465", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-11T00:15:56.000Z" - }, - "end": { - "$date": "2021-11-11T01:34:16.000Z" - }, - "events": [ - { - "uuid": "18615123-a154-4e8b-8d27-3ac991e2572c", - "start": { - "$date": "2021-11-11T00:15:56.000Z" - }, - "end": { - "$date": "2021-11-11T01:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6dba8432-9942-4de1-9ed4-744fff052882", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T00:44:59.000Z" - }, - "end": { - "$date": "2021-11-11T01:13:57.000Z" - }, - "events": [ - { - "uuid": "5aa6d754-c092-4434-9c2d-8fd822dfb970", - "start": { - "$date": "2021-11-11T00:44:59.000Z" - }, - "end": { - "$date": "2021-11-11T01:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56c52585-9202-4c95-ad5b-ba8c9d026948", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T01:33:46.000Z" - }, - "end": { - "$date": "2021-11-11T01:49:37.000Z" - }, - "events": [ - { - "uuid": "a6159a1e-59f3-492f-b278-bf558e76566a", - "start": { - "$date": "2021-11-11T01:33:46.000Z" - }, - "end": { - "$date": "2021-11-11T01:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "24cd2e18-0cf8-4c19-90d5-3cea7c6a1317", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-11T01:19:09.000Z" - }, - "end": { - "$date": "2021-11-11T01:53:58.000Z" - }, - "events": [ - { - "uuid": "da4d8c9f-c093-4096-ad9d-e1b9c0ed12ca", - "start": { - "$date": "2021-11-11T01:19:09.000Z" - }, - "end": { - "$date": "2021-11-11T01:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4b60d05-d3db-4078-9602-3335a9ab6185", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T01:33:49.000Z" - }, - "end": { - "$date": "2021-11-11T01:49:46.000Z" - }, - "events": [ - { - "uuid": "83b74bd8-0910-435f-bb0d-638e1f949784", - "start": { - "$date": "2021-11-11T01:33:49.000Z" - }, - "end": { - "$date": "2021-11-11T01:49:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49366418-5948-40eb-9b03-5bbdb5bb6e26", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T01:33:43.000Z" - }, - "end": { - "$date": "2021-11-11T01:49:45.000Z" - }, - "events": [ - { - "uuid": "74180987-6c60-4fac-9151-559ca1f65e20", - "start": { - "$date": "2021-11-11T01:33:43.000Z" - }, - "end": { - "$date": "2021-11-11T01:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a85994d-0ca4-437f-adec-7aff6f9d79a8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T01:52:02.000Z" - }, - "end": { - "$date": "2021-11-11T02:05:37.000Z" - }, - "events": [ - { - "uuid": "6d040df5-13f2-4078-90cf-038ceacf2ee2", - "start": { - "$date": "2021-11-11T01:52:02.000Z" - }, - "end": { - "$date": "2021-11-11T02:05:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2185850-3bc1-4125-8f93-073c6e207ae8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T01:52:00.000Z" - }, - "end": { - "$date": "2021-11-11T02:05:36.000Z" - }, - "events": [ - { - "uuid": "28d28a53-96c1-4544-8ace-bc36e7cd97dd", - "start": { - "$date": "2021-11-11T01:52:00.000Z" - }, - "end": { - "$date": "2021-11-11T02:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "207fa4d3-0f1c-4970-8816-c03c47cbc836", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T01:52:05.000Z" - }, - "end": { - "$date": "2021-11-11T02:05:41.000Z" - }, - "events": [ - { - "uuid": "d971e583-e3ac-407f-8778-863aea232e8d", - "start": { - "$date": "2021-11-11T01:52:05.000Z" - }, - "end": { - "$date": "2021-11-11T02:05:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71e3ec9c-88a4-4b9e-9a1c-443fb1166ddd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T02:08:45.000Z" - }, - "end": { - "$date": "2021-11-11T02:31:58.000Z" - }, - "events": [ - { - "uuid": "3a04ac71-5d0d-4900-ad77-536071a21b4d", - "start": { - "$date": "2021-11-11T02:08:45.000Z" - }, - "end": { - "$date": "2021-11-11T02:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42138ead-4d77-45e6-b6f0-73d5bef28f14", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T02:08:37.000Z" - }, - "end": { - "$date": "2021-11-11T02:31:53.000Z" - }, - "events": [ - { - "uuid": "f8baf600-2e7a-4d91-8b60-2b9f9c3d7d5b", - "start": { - "$date": "2021-11-11T02:08:37.000Z" - }, - "end": { - "$date": "2021-11-11T02:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30211b6d-4d53-42f4-9ca9-15c0efc569e3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T02:08:46.000Z" - }, - "end": { - "$date": "2021-11-11T02:31:57.000Z" - }, - "events": [ - { - "uuid": "5f9aeb81-01b5-4657-831a-a8330be362e8", - "start": { - "$date": "2021-11-11T02:08:46.000Z" - }, - "end": { - "$date": "2021-11-11T02:31:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cf8601a2-e476-40d1-be27-bfa368e6745a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T02:21:29.000Z" - }, - "end": { - "$date": "2021-11-11T02:34:10.000Z" - }, - "events": [ - { - "uuid": "04d75782-9db0-4627-a203-48e6833db8e8", - "start": { - "$date": "2021-11-11T02:21:29.000Z" - }, - "end": { - "$date": "2021-11-11T02:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8ba2544c-c1d6-478c-a82f-b32549d45089", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-11T02:21:51.000Z" - }, - "end": { - "$date": "2021-11-11T02:38:48.000Z" - }, - "events": [ - { - "uuid": "c96cd788-fc55-4e5b-be30-3bfaefc5e58f", - "start": { - "$date": "2021-11-11T02:21:51.000Z" - }, - "end": { - "$date": "2021-11-11T02:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e234becb-eeac-493e-a305-2f171976ebd9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T02:34:18.000Z" - }, - "end": { - "$date": "2021-11-11T02:49:58.000Z" - }, - "events": [ - { - "uuid": "162ced56-04d5-41e0-95b3-8160ebc699b4", - "start": { - "$date": "2021-11-11T02:34:18.000Z" - }, - "end": { - "$date": "2021-11-11T02:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74f60bc6-1169-4409-b89e-e6fa82966ae6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T02:34:18.000Z" - }, - "end": { - "$date": "2021-11-11T02:49:55.000Z" - }, - "events": [ - { - "uuid": "5f6aa981-aeb8-41f3-aa79-0df703747e70", - "start": { - "$date": "2021-11-11T02:34:18.000Z" - }, - "end": { - "$date": "2021-11-11T02:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4e3f550-f2cc-46e4-90de-df819f6356d1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T02:34:16.000Z" - }, - "end": { - "$date": "2021-11-11T02:50:05.000Z" - }, - "events": [ - { - "uuid": "e2963f05-85d6-41e4-bbef-ab7a76ede89d", - "start": { - "$date": "2021-11-11T02:34:16.000Z" - }, - "end": { - "$date": "2021-11-11T02:50:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "a0de645f-2edc-45b8-a9d4-866f0b8f9d19", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-11T02:37:32.000Z" - }, - "end": { - "$date": "2021-11-11T05:34:19.000Z" - }, - "events": [ - { - "uuid": "80f9fee1-310e-4cf8-9fa8-915eb91d4781", - "start": { - "$date": "2021-11-11T02:37:32.000Z" - }, - "end": { - "$date": "2021-11-11T05:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a9b6df36-c829-4484-ad02-29b9e8af2823", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-11T02:38:58.000Z" - }, - "end": { - "$date": "2021-11-11T06:46:05.000Z" - }, - "events": [ - { - "uuid": "e4ea983e-b543-4431-9f6b-bcb26efa5473", - "start": { - "$date": "2021-11-11T02:38:58.000Z" - }, - "end": { - "$date": "2021-11-11T06:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f6955619-fbdc-4718-a744-69905326b93a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T02:40:50.000Z" - }, - "end": { - "$date": "2021-11-11T02:45:05.000Z" - }, - "events": [ - { - "uuid": "580d2127-fceb-4db2-8c96-628114c9da00", - "start": { - "$date": "2021-11-11T02:40:50.000Z" - }, - "end": { - "$date": "2021-11-11T02:45:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c3ed3eb-39df-44cc-89f2-16f9b00ccf49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T02:52:58.000Z" - }, - "end": { - "$date": "2021-11-11T02:58:44.000Z" - }, - "events": [ - { - "uuid": "56947685-5923-4b95-9c45-5b1ddb8c4373", - "start": { - "$date": "2021-11-11T02:52:58.000Z" - }, - "end": { - "$date": "2021-11-11T02:58:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6a7dada4-6912-46c2-9775-9c5c64a16b6a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T02:55:11.000Z" - }, - "end": { - "$date": "2021-11-11T02:57:42.000Z" - }, - "events": [ - { - "uuid": "197b6962-b3bd-4af9-ac01-8a3e0555c22c", - "start": { - "$date": "2021-11-11T02:55:11.000Z" - }, - "end": { - "$date": "2021-11-11T02:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ee03cde-559f-4072-9493-fc9db44295bd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T03:56:51.000Z" - }, - "end": { - "$date": "2021-11-11T03:56:52.000Z" - }, - "events": [ - { - "uuid": "04faac76-8896-4de8-bef6-db10d9649698", - "start": { - "$date": "2021-11-11T03:56:51.000Z" - }, - "end": { - "$date": "2021-11-11T03:56:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e9aa3dd7-79cb-434a-b0c2-9c158b699711", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T03:04:17.000Z" - }, - "end": { - "$date": "2021-11-11T03:08:42.000Z" - }, - "events": [ - { - "uuid": "e3176d4f-624f-4654-b7f2-fe4c436400b2", - "start": { - "$date": "2021-11-11T03:04:17.000Z" - }, - "end": { - "$date": "2021-11-11T03:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bd16baf3-50a6-4309-a759-332abc9e6e9a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-11T03:04:42.000Z" - }, - "end": { - "$date": "2021-11-11T06:04:52.000Z" - }, - "events": [ - { - "uuid": "b1c10165-908a-4a6b-b84c-eb7589d037d3", - "start": { - "$date": "2021-11-11T03:04:42.000Z" - }, - "end": { - "$date": "2021-11-11T06:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2ad6b277-c537-4fb8-91e2-e020cc485533", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-11T03:16:17.000Z" - }, - "end": { - "$date": "2021-11-11T07:17:15.000Z" - }, - "events": [ - { - "uuid": "42ec9ea0-9bd4-4547-92c7-f76cf0856feb", - "start": { - "$date": "2021-11-11T03:16:17.000Z" - }, - "end": { - "$date": "2021-11-11T07:17:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5ca134b8-613d-4f88-9579-cd09bba5170f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T03:19:28.000Z" - }, - "end": { - "$date": "2021-11-11T03:22:19.000Z" - }, - "events": [ - { - "uuid": "85e6fcfb-44da-428a-aa51-6046c2bfcbba", - "start": { - "$date": "2021-11-11T03:19:28.000Z" - }, - "end": { - "$date": "2021-11-11T03:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "692cd07b-f5ea-4212-bb3e-3256f5c5c67a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-11T03:22:04.000Z" - }, - "end": { - "$date": "2021-11-11T03:39:24.000Z" - }, - "events": [ - { - "uuid": "b138794b-f756-4e2b-a09f-ce2201185d42", - "start": { - "$date": "2021-11-11T03:22:04.000Z" - }, - "end": { - "$date": "2021-11-11T03:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f2ebb020-3318-43d2-8a19-d4bdea5a8477", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T03:28:49.000Z" - }, - "end": { - "$date": "2021-11-11T03:32:55.000Z" - }, - "events": [ - { - "uuid": "c9dd4299-913d-420d-8bb0-67346447181f", - "start": { - "$date": "2021-11-11T03:28:49.000Z" - }, - "end": { - "$date": "2021-11-11T03:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d654730d-cffe-4fd5-bc6c-a9512a97b69c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T03:40:40.000Z" - }, - "end": { - "$date": "2021-11-11T03:43:16.000Z" - }, - "events": [ - { - "uuid": "ea8bf394-6f96-4126-8947-6077bf6caf71", - "start": { - "$date": "2021-11-11T03:40:40.000Z" - }, - "end": { - "$date": "2021-11-11T03:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c9d7992d-60ed-429c-a2b0-0555bfd69051", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T03:49:56.000Z" - }, - "end": { - "$date": "2021-11-11T03:52:56.000Z" - }, - "events": [ - { - "uuid": "b8849d50-261a-4814-b229-5d12a401235f", - "start": { - "$date": "2021-11-11T03:49:56.000Z" - }, - "end": { - "$date": "2021-11-11T03:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20199d3f-fc3a-4603-934b-6d5d46fc197a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T04:03:37.000Z" - }, - "end": { - "$date": "2021-11-11T04:32:17.000Z" - }, - "events": [ - { - "uuid": "30234d63-5d68-4c45-b1ea-166c8d86b751", - "start": { - "$date": "2021-11-11T04:03:37.000Z" - }, - "end": { - "$date": "2021-11-11T04:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e2f6737-4376-4ec3-a5fc-ae3fb68e177d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T04:03:33.000Z" - }, - "end": { - "$date": "2021-11-11T04:32:18.000Z" - }, - "events": [ - { - "uuid": "a10095ab-5526-4880-82c9-8e1416220b69", - "start": { - "$date": "2021-11-11T04:03:33.000Z" - }, - "end": { - "$date": "2021-11-11T04:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5bff0b13-18a7-4279-8c6e-f8c860292be8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T04:02:22.000Z" - }, - "end": { - "$date": "2021-11-11T04:05:47.000Z" - }, - "events": [ - { - "uuid": "d7136ec1-3f3f-4d53-b1fe-51550266e2e8", - "start": { - "$date": "2021-11-11T04:02:22.000Z" - }, - "end": { - "$date": "2021-11-11T04:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ef78f238-f4f5-4fc7-bcc1-52d0ca2f6760", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T04:16:39.000Z" - }, - "end": { - "$date": "2021-11-11T04:21:39.000Z" - }, - "events": [ - { - "uuid": "d3e0debb-44fb-41b6-9387-61f4923a46cd", - "start": { - "$date": "2021-11-11T04:16:39.000Z" - }, - "end": { - "$date": "2021-11-11T04:21:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5507c951-f816-4a42-9723-545396df39c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T04:38:12.000Z" - }, - "end": { - "$date": "2021-11-11T05:00:03.000Z" - }, - "events": [ - { - "uuid": "6a826ff1-637f-441d-9611-dfa132870609", - "start": { - "$date": "2021-11-11T04:38:12.000Z" - }, - "end": { - "$date": "2021-11-11T05:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "063c2d4f-3903-4cf7-b294-0850032caa73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T04:38:10.000Z" - }, - "end": { - "$date": "2021-11-11T05:00:10.000Z" - }, - "events": [ - { - "uuid": "5118ae19-40b8-49bf-ad92-ee883740cb3b", - "start": { - "$date": "2021-11-11T04:38:10.000Z" - }, - "end": { - "$date": "2021-11-11T05:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8fe66315-cbeb-4f38-9e22-7d38591dad5e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-11T04:40:05.000Z" - }, - "end": { - "$date": "2021-11-11T04:40:11.000Z" - }, - "events": [ - { - "uuid": "3318ff3f-9391-4f5c-a1d3-2a2e4f9628f6", - "start": { - "$date": "2021-11-11T04:40:05.000Z" - }, - "end": { - "$date": "2021-11-11T04:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18c92fde-6ff1-4e89-b9b9-373706cb8ec2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-11T05:05:43.000Z" - }, - "end": { - "$date": "2021-11-11T05:46:49.000Z" - }, - "events": [ - { - "uuid": "2476b0e9-ce21-4410-a532-3c1d43199481", - "start": { - "$date": "2021-11-11T05:05:43.000Z" - }, - "end": { - "$date": "2021-11-11T05:46:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2374da5f-77af-405e-89b9-5264ea7ed57e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T05:05:47.000Z" - }, - "end": { - "$date": "2021-11-11T05:46:58.000Z" - }, - "events": [ - { - "uuid": "cc58ca1a-a0ae-47e5-bdb8-b042dbdf4dcc", - "start": { - "$date": "2021-11-11T05:05:47.000Z" - }, - "end": { - "$date": "2021-11-11T05:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54ff1c41-00a8-4534-859b-b6f0ed04a532", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-11T05:35:45.000Z" - }, - "end": { - "$date": "2021-11-11T05:57:36.000Z" - }, - "events": [ - { - "uuid": "97541467-f8d6-4fa8-b6f6-0372f5b1ab52", - "start": { - "$date": "2021-11-11T05:35:45.000Z" - }, - "end": { - "$date": "2021-11-11T05:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a62c73b-7220-4a7d-80bd-09d8e59e9600", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-11T05:33:18.000Z" - }, - "end": { - "$date": "2021-11-11T05:36:36.000Z" - }, - "events": [ - { - "uuid": "e76bdd99-ea5b-4974-8ded-015002666170", - "start": { - "$date": "2021-11-11T05:33:18.000Z" - }, - "end": { - "$date": "2021-11-11T05:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "191ea811-42f0-45c5-a266-8d1d60047504", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-11T05:52:53.000Z" - }, - "end": { - "$date": "2021-11-11T10:06:43.000Z" - }, - "events": [ - { - "uuid": "f24905e4-7c0f-4590-ac4c-59a1f1f70df8", - "start": { - "$date": "2021-11-11T05:52:53.000Z" - }, - "end": { - "$date": "2021-11-11T10:06:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7cfa9c9d-6113-41ab-82c5-918a8d000c7e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-11T06:05:12.000Z" - }, - "end": { - "$date": "2021-11-11T06:24:32.000Z" - }, - "events": [ - { - "uuid": "e143e559-192e-4e62-b0e7-86853f798a02", - "start": { - "$date": "2021-11-11T06:05:12.000Z" - }, - "end": { - "$date": "2021-11-11T06:24:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "bea073d1-0332-48d3-9655-76dacb6f386a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-11T06:01:02.000Z" - }, - "end": { - "$date": "2021-11-11T08:34:00.000Z" - }, - "events": [ - { - "uuid": "07cc7412-48dc-4b82-8f4e-8d00169141d9", - "start": { - "$date": "2021-11-11T06:01:02.000Z" - }, - "end": { - "$date": "2021-11-11T08:01:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "985718b0-64b3-4f7f-9ed7-2865855badc8", - "start": { - "$date": "2021-11-11T08:01:02.000Z" - }, - "end": { - "$date": "2021-11-11T08:34:00.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3a789f54-fc8a-4b7d-8803-24e5e773f3a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-11T06:16:38.000Z" - }, - "end": { - "$date": "2021-11-11T06:35:06.000Z" - }, - "events": [ - { - "uuid": "415513ca-de75-4e65-bb4e-8c659538d179", - "start": { - "$date": "2021-11-11T06:16:38.000Z" - }, - "end": { - "$date": "2021-11-11T06:35:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a888ead-fc78-4028-ba2b-320a0ab95a4a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-11T06:28:27.000Z" - }, - "end": { - "$date": "2021-11-11T06:46:23.000Z" - }, - "events": [ - { - "uuid": "ed8eea8e-3911-4887-9863-71977380a415", - "start": { - "$date": "2021-11-11T06:28:27.000Z" - }, - "end": { - "$date": "2021-11-11T06:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5b69134-d2e4-46f0-897b-dc88b6d5fb46", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T08:59:25.000Z" - }, - "end": { - "$date": "2021-11-11T09:22:17.000Z" - }, - "events": [ - { - "uuid": "64907d3a-18d9-42ec-9fce-603850af3ddf", - "start": { - "$date": "2021-11-11T08:59:25.000Z" - }, - "end": { - "$date": "2021-11-11T09:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc4c0ca4-0aad-47b0-b382-bb487c791e35", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T09:26:26.000Z" - }, - "end": { - "$date": "2021-11-11T10:05:16.000Z" - }, - "events": [ - { - "uuid": "6c89438e-2764-4822-bce2-cd062eba91d0", - "start": { - "$date": "2021-11-11T09:26:26.000Z" - }, - "end": { - "$date": "2021-11-11T10:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc2bb9a6-01c1-46e1-93e4-c3b2171156fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-11T10:09:58.000Z" - }, - "end": { - "$date": "2021-11-11T10:43:36.000Z" - }, - "events": [ - { - "uuid": "fa70e681-6426-4d4f-bc99-dd5db92d6285", - "start": { - "$date": "2021-11-11T10:09:58.000Z" - }, - "end": { - "$date": "2021-11-11T10:43:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc304003-314d-42af-a270-51d6efccba5c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-11T13:24:32.000Z" - }, - "end": { - "$date": "2021-11-11T13:53:03.000Z" - }, - "events": [ - { - "uuid": "012ff05b-a6e9-4d55-ac1d-29f958e59f69", - "start": { - "$date": "2021-11-11T13:24:32.000Z" - }, - "end": { - "$date": "2021-11-11T13:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "0efc120c-a441-4958-bc3e-5753b27ccd0f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-11T17:27:54.000Z" - }, - "end": { - "$date": "2021-11-11T17:30:39.000Z" - }, - "events": [ - { - "uuid": "27c9603d-17f4-4a45-9051-57fa528c7bcd", - "start": { - "$date": "2021-11-11T17:27:54.000Z" - }, - "end": { - "$date": "2021-11-11T17:30:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "8068dc80-a7e9-46c2-aa36-7473a0444e99", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-11T17:33:59.000Z" - }, - "end": { - "$date": "2021-11-11T18:42:36.000Z" - }, - "events": [ - { - "uuid": "a898b10a-f23b-43c0-84f1-17f4e1403e27", - "start": { - "$date": "2021-11-11T17:33:59.000Z" - }, - "end": { - "$date": "2021-11-11T18:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "caeb71af-775e-43b3-acdf-006cf985fa20", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-11T18:15:48.000Z" - }, - "end": { - "$date": "2021-11-11T18:55:50.000Z" - }, - "events": [ - { - "uuid": "1bfee257-f935-45ce-9d6e-9b980d90b62a", - "start": { - "$date": "2021-11-11T18:15:48.000Z" - }, - "end": { - "$date": "2021-11-11T18:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "79865617-819d-495a-86b8-b5f0a5bb36e6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T18:38:22.000Z" - }, - "end": { - "$date": "2021-11-11T18:42:59.000Z" - }, - "events": [ - { - "uuid": "317dd4fc-cbe3-471b-9991-c7b97c7cd568", - "start": { - "$date": "2021-11-11T18:38:22.000Z" - }, - "end": { - "$date": "2021-11-11T18:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bafcf736-41b2-423a-a791-fd18142e7217", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-11T18:44:23.000Z" - }, - "end": { - "$date": "2021-11-11T19:44:55.000Z" - }, - "events": [ - { - "uuid": "11fb31f9-7d95-4767-b480-622bed52af49", - "start": { - "$date": "2021-11-11T18:44:23.000Z" - }, - "end": { - "$date": "2021-11-11T19:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "93a785be-9881-4b09-98bb-5c70abfe8f32", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T19:49:41.000Z" - }, - "end": { - "$date": "2021-11-11T19:51:46.000Z" - }, - "events": [ - { - "uuid": "b36558fe-81e3-47e7-954f-d65d891e14e6", - "start": { - "$date": "2021-11-11T19:49:41.000Z" - }, - "end": { - "$date": "2021-11-11T19:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "6d4a1ef7-6089-46cb-a7bd-981849c54824", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-11T19:52:16.000Z" - }, - "end": { - "$date": "2021-11-11T20:34:19.000Z" - }, - "events": [ - { - "uuid": "09534673-86ce-4880-92a2-00c855de5985", - "start": { - "$date": "2021-11-11T19:52:16.000Z" - }, - "end": { - "$date": "2021-11-11T20:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "7d994ffa-4964-4022-b74b-e47a12646100", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-11T20:39:58.000Z" - }, - "end": { - "$date": "2021-11-11T21:14:09.000Z" - }, - "events": [ - { - "uuid": "1eaf7089-ac12-4ec6-8b8e-195c6885c8ca", - "start": { - "$date": "2021-11-11T20:39:58.000Z" - }, - "end": { - "$date": "2021-11-11T21:14:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1d58b34e-61c7-4556-8bc3-78180c87d7d6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-11T20:59:43.000Z" - }, - "end": { - "$date": "2021-11-12T01:23:37.000Z" - }, - "events": [ - { - "uuid": "1ce279fb-cf90-4129-9cf1-cf6c8b2e282c", - "start": { - "$date": "2021-11-11T20:59:43.000Z" - }, - "end": { - "$date": "2021-11-12T01:23:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "fb0438a2-75ff-4afb-9b08-de0a370dd8a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-11T21:15:50.000Z" - }, - "end": { - "$date": "2021-11-11T21:34:12.000Z" - }, - "events": [ - { - "uuid": "bf46e2b7-e024-4653-9b64-bacb01d1540a", - "start": { - "$date": "2021-11-11T21:15:50.000Z" - }, - "end": { - "$date": "2021-11-11T21:34:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "f615c307-75af-4d79-aec0-6639bdc8c093", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T21:18:01.000Z" - }, - "end": { - "$date": "2021-11-11T21:19:06.000Z" - }, - "events": [ - { - "uuid": "3c3a6737-4354-4aa7-a649-f82d0e1650ea", - "start": { - "$date": "2021-11-11T21:18:01.000Z" - }, - "end": { - "$date": "2021-11-11T21:19:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "1545b139-d975-45a9-b39e-1c7d4963c62a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T21:24:47.000Z" - }, - "end": { - "$date": "2021-11-11T21:25:27.000Z" - }, - "events": [ - { - "uuid": "ce7e6d88-b1f1-489c-9bc7-4613a86a678e", - "start": { - "$date": "2021-11-11T21:24:47.000Z" - }, - "end": { - "$date": "2021-11-11T21:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "634e801a-5947-4086-a278-04a3dab87db6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T21:36:15.000Z" - }, - "end": { - "$date": "2021-11-11T21:36:20.000Z" - }, - "events": [ - { - "uuid": "67c82d6b-c162-466d-80d3-d7495eb26fba", - "start": { - "$date": "2021-11-11T21:36:15.000Z" - }, - "end": { - "$date": "2021-11-11T21:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "e3e83908-7ddd-4b16-8104-36e563e884b8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-11T23:21:10.000Z" - }, - "end": { - "$date": "2021-11-12T00:08:07.000Z" - }, - "events": [ - { - "uuid": "26845636-fe18-4c7a-8c92-3ff622381c29", - "start": { - "$date": "2021-11-11T23:21:10.000Z" - }, - "end": { - "$date": "2021-11-12T00:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad6d4954-2ed5-4783-b41d-707b359c1609", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T00:03:21.000Z" - }, - "end": { - "$date": "2021-11-12T00:10:41.000Z" - }, - "events": [ - { - "uuid": "797dc65c-8994-43ac-8ee8-00c99af80aca", - "start": { - "$date": "2021-11-12T00:03:21.000Z" - }, - "end": { - "$date": "2021-11-12T00:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a18fef32-47f5-4828-a6d3-26535aeb9c80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T00:44:52.000Z" - }, - "end": { - "$date": "2021-11-12T00:44:49.000Z" - }, - "events": [ - { - "uuid": "44793fbb-e47c-4bd7-a120-7a4a54bf7a9a", - "start": { - "$date": "2021-11-12T00:44:52.000Z" - }, - "end": { - "$date": "2021-11-12T00:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "9a15e773-60ad-4326-b66a-2683ed37964d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T00:24:30.000Z" - }, - "end": { - "$date": "2021-11-12T00:27:46.000Z" - }, - "events": [ - { - "uuid": "4923df07-18eb-44ee-8097-9a39b9f6b10f", - "start": { - "$date": "2021-11-12T00:24:30.000Z" - }, - "end": { - "$date": "2021-11-12T00:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "8b8fa9fd-d875-48a1-a155-40a15cffece0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-11-12T00:40:48.000Z" - }, - "end": { - "$date": "2021-11-12T02:09:02.000Z" - }, - "events": [ - { - "uuid": "6ae44122-ceeb-47ca-9112-c429d0bf2d0a", - "start": { - "$date": "2021-11-12T00:40:48.000Z" - }, - "end": { - "$date": "2021-11-12T02:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "020a99bf-e179-42af-9d0b-8f8a131586b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T00:55:06.000Z" - }, - "end": { - "$date": "2021-11-12T01:23:19.000Z" - }, - "events": [ - { - "uuid": "0bd4172b-f2da-4bcf-ad59-6a7fe696031f", - "start": { - "$date": "2021-11-12T00:55:06.000Z" - }, - "end": { - "$date": "2021-11-12T01:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b5962b8-ec37-49ef-b2f2-1d515104690a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T00:55:05.000Z" - }, - "end": { - "$date": "2021-11-12T01:23:16.000Z" - }, - "events": [ - { - "uuid": "4a931654-9825-4157-a19a-f39f7ec34ea7", - "start": { - "$date": "2021-11-12T00:55:05.000Z" - }, - "end": { - "$date": "2021-11-12T01:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4ea6adc-8403-40d7-8a35-2f1085045562", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T01:27:58.000Z" - }, - "end": { - "$date": "2021-11-12T01:54:46.000Z" - }, - "events": [ - { - "uuid": "850b31e5-a2c9-4a7f-baf3-3d5e94859b1c", - "start": { - "$date": "2021-11-12T01:27:58.000Z" - }, - "end": { - "$date": "2021-11-12T01:54:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "afe6dac0-9637-426a-b0ad-375e9e032ee1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T01:44:43.000Z" - }, - "end": { - "$date": "2021-11-12T02:38:40.000Z" - }, - "events": [ - { - "uuid": "5c6236ef-bd52-4e80-bae8-74f06ae25b64", - "start": { - "$date": "2021-11-12T01:44:43.000Z" - }, - "end": { - "$date": "2021-11-12T02:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6689436f-fa42-4883-a75c-67dd606961d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T02:37:05.000Z" - }, - "end": { - "$date": "2021-11-12T03:05:46.000Z" - }, - "events": [ - { - "uuid": "4438020b-4888-4b0a-85bf-e415dd91bad2", - "start": { - "$date": "2021-11-12T02:37:05.000Z" - }, - "end": { - "$date": "2021-11-12T03:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "32fad27a-3c27-489b-b044-cf1a16c062b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T02:41:16.000Z" - }, - "end": { - "$date": "2021-11-12T02:43:56.000Z" - }, - "events": [ - { - "uuid": "64f4bcce-77a1-49b2-88db-d8a9780d2dae", - "start": { - "$date": "2021-11-12T02:41:16.000Z" - }, - "end": { - "$date": "2021-11-12T02:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e174f80c-a667-4463-bd5a-2947e5a4f526", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T05:03:00.000Z" - }, - "end": { - "$date": "2021-11-12T05:04:00.000Z" - }, - "events": [ - { - "uuid": "75f19ec1-78c5-4ef1-97ee-2433942c086d", - "start": { - "$date": "2021-11-12T05:03:00.000Z" - }, - "end": { - "$date": "2021-11-12T05:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "676fe2a3-2f54-46ad-bd6c-5374b4a90b13", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-12T02:50:31.000Z" - }, - "end": { - "$date": "2021-11-12T02:53:46.000Z" - }, - "events": [ - { - "uuid": "8ff4e31c-f73c-4a09-b29d-bbaee4b54e7f", - "start": { - "$date": "2021-11-12T02:50:31.000Z" - }, - "end": { - "$date": "2021-11-12T02:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "1f6ac779-96de-4c51-a403-207141e572a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T03:00:31.000Z" - }, - "end": { - "$date": "2021-11-12T03:03:02.000Z" - }, - "events": [ - { - "uuid": "05485972-6d45-46b9-ac78-8ed91cbb049e", - "start": { - "$date": "2021-11-12T03:00:31.000Z" - }, - "end": { - "$date": "2021-11-12T03:03:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "04e0bf7f-cb39-44dc-b377-31be38d2a0ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-12T04:04:42.000Z" - }, - "end": { - "$date": "2021-11-12T04:04:52.000Z" - }, - "events": [ - { - "uuid": "914d64e3-8899-4182-a077-b9d92e24f049", - "start": { - "$date": "2021-11-12T04:04:42.000Z" - }, - "end": { - "$date": "2021-11-12T04:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "585792e3-02cf-4a5b-90f0-b823a891dde7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T03:09:57.000Z" - }, - "end": { - "$date": "2021-11-12T03:36:08.000Z" - }, - "events": [ - { - "uuid": "e44d9fe7-1941-4ca1-8e02-295e7eac63e4", - "start": { - "$date": "2021-11-12T03:09:57.000Z" - }, - "end": { - "$date": "2021-11-12T03:36:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "c8155948-a221-446c-be90-ad2f98f57778", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-12T03:31:40.000Z" - }, - "end": { - "$date": "2021-11-12T04:41:11.000Z" - }, - "events": [ - { - "uuid": "7607849c-c8f4-48ac-a9d7-adb47e0de029", - "start": { - "$date": "2021-11-12T03:31:40.000Z" - }, - "end": { - "$date": "2021-11-12T04:23:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b56692e1-a301-4665-9465-b7e7c1a668e2", - "start": { - "$date": "2021-11-12T04:23:40.000Z" - }, - "end": { - "$date": "2021-11-12T04:35:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ae049a3-8b1b-483e-bafa-499744558fbd", - "start": { - "$date": "2021-11-12T04:35:40.000Z" - }, - "end": { - "$date": "2021-11-12T04:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "386c6325-cc61-4c92-b673-f103c1b0e267", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T03:41:52.000Z" - }, - "end": { - "$date": "2021-11-12T03:42:54.000Z" - }, - "events": [ - { - "uuid": "bf3cf472-e18a-4c9f-ab67-7d1bc70b83d9", - "start": { - "$date": "2021-11-12T03:41:52.000Z" - }, - "end": { - "$date": "2021-11-12T03:42:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "392298d9-ba2e-41b0-bdc2-c4fb72481dc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T03:43:34.000Z" - }, - "end": { - "$date": "2021-11-12T04:33:56.000Z" - }, - "events": [ - { - "uuid": "0167b6f5-1775-4078-a138-b138f8e09242", - "start": { - "$date": "2021-11-12T03:43:34.000Z" - }, - "end": { - "$date": "2021-11-12T04:33:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ad01a8c6-441c-4965-9c8b-4af5226e6281", - "uuid": "e7e11ec5-eab1-4152-bd22-d4e86a71e7f4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T03:52:43.000Z" - }, - "end": { - "$date": "2021-11-12T03:58:39.000Z" - }, - "events": [ - { - "uuid": "6c2466c7-165e-4b11-a0c6-bd6958e0cfa6", - "start": { - "$date": "2021-11-12T03:52:43.000Z" - }, - "end": { - "$date": "2021-11-12T03:58:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "500c2106-9457-46fc-b298-c84517c746b6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T04:04:00.000Z" - }, - "end": { - "$date": "2021-11-12T04:23:04.000Z" - }, - "events": [ - { - "uuid": "0a3365cb-d7d1-4113-9bf5-485e27fb3d1f", - "start": { - "$date": "2021-11-12T04:04:00.000Z" - }, - "end": { - "$date": "2021-11-12T04:23:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bad7f1e-1756-4d6e-bd8d-0f4527c15f0d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-12T04:23:12.000Z" - }, - "end": { - "$date": "2021-11-12T04:43:29.000Z" - }, - "events": [ - { - "uuid": "93966249-f7b6-49e0-9c26-4ea87479b9a2", - "start": { - "$date": "2021-11-12T04:23:12.000Z" - }, - "end": { - "$date": "2021-11-12T04:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "587685c9-8b75-4101-9f9a-24378f507688", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-12T04:41:31.000Z" - }, - "end": { - "$date": "2021-11-12T04:46:32.000Z" - }, - "events": [ - { - "uuid": "9ace24fa-b1be-43a4-bb1b-cd63368adc0a", - "start": { - "$date": "2021-11-12T04:41:31.000Z" - }, - "end": { - "$date": "2021-11-12T04:46:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "973f2e1d-d151-4d6e-a5f9-da9cdc576a58", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-12T04:43:06.000Z" - }, - "end": { - "$date": "2021-11-12T05:06:48.000Z" - }, - "events": [ - { - "uuid": "41ceebe5-cc85-4376-a0b7-68b49a5efb00", - "start": { - "$date": "2021-11-12T04:43:06.000Z" - }, - "end": { - "$date": "2021-11-12T05:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "101c75cc-2ca8-4682-bf47-38bc01a2dc63", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-12T04:43:58.000Z" - }, - "end": { - "$date": "2021-11-12T07:58:34.000Z" - }, - "events": [ - { - "uuid": "2a288d3d-27b6-4b6d-8391-177af7848397", - "start": { - "$date": "2021-11-12T04:43:58.000Z" - }, - "end": { - "$date": "2021-11-12T05:00:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f627c539-5767-4b90-8d53-7527ba9b2e77", - "start": { - "$date": "2021-11-12T05:00:58.000Z" - }, - "end": { - "$date": "2021-11-12T05:09:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bae1938c-4c48-4ad0-bde1-3d37e1071e23", - "start": { - "$date": "2021-11-12T05:09:58.000Z" - }, - "end": { - "$date": "2021-11-12T05:19:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88c29764-3a4d-4121-88fe-2ee3c94701c0", - "start": { - "$date": "2021-11-12T05:19:58.000Z" - }, - "end": { - "$date": "2021-11-12T05:40:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "67b27439-cdd0-4a41-89e2-dbe9d2f61b27", - "start": { - "$date": "2021-11-12T05:40:58.000Z" - }, - "end": { - "$date": "2021-11-12T05:50:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a732231-f81b-4f93-bcda-b8148ab4bb71", - "start": { - "$date": "2021-11-12T05:50:58.000Z" - }, - "end": { - "$date": "2021-11-12T05:55:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a0a779e2-b7b0-4588-877b-11ee7459486a", - "start": { - "$date": "2021-11-12T05:55:58.000Z" - }, - "end": { - "$date": "2021-11-12T06:05:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7e7d153-b274-4d5d-9515-dc23b2a582eb", - "start": { - "$date": "2021-11-12T06:05:58.000Z" - }, - "end": { - "$date": "2021-11-12T06:29:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a16aa5c0-4fb3-471a-bf5d-db117a23894a", - "start": { - "$date": "2021-11-12T06:29:58.000Z" - }, - "end": { - "$date": "2021-11-12T06:39:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbbcca65-8247-4bb5-a531-9856412b1e11", - "start": { - "$date": "2021-11-12T06:39:58.000Z" - }, - "end": { - "$date": "2021-11-12T07:58:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "563e8076-6f9d-4a82-a8a3-982962acaac6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-12T04:47:54.000Z" - }, - "end": { - "$date": "2021-11-12T05:32:01.000Z" - }, - "events": [ - { - "uuid": "e0a7ad0d-36d6-4920-bc5a-2a62545fe324", - "start": { - "$date": "2021-11-12T04:47:54.000Z" - }, - "end": { - "$date": "2021-11-12T05:32:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b97489b6-d96a-425d-bdb5-225df232fb79", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-12T05:07:21.000Z" - }, - "end": { - "$date": "2021-11-12T05:38:00.000Z" - }, - "events": [ - { - "uuid": "59d7556e-9d1d-4476-80a7-4d51acc69f17", - "start": { - "$date": "2021-11-12T05:07:21.000Z" - }, - "end": { - "$date": "2021-11-12T05:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c04f3679-5700-443d-a2fe-85f1e55f93d9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-12T05:07:26.000Z" - }, - "end": { - "$date": "2021-11-12T05:38:08.000Z" - }, - "events": [ - { - "uuid": "511dd89d-d57e-4302-bddd-010be75c537c", - "start": { - "$date": "2021-11-12T05:07:26.000Z" - }, - "end": { - "$date": "2021-11-12T05:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ecc7579e-d138-4976-a5c5-d05b23bbccf2", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-12T05:32:39.000Z" - }, - "end": { - "$date": "2021-11-12T06:21:55.000Z" - }, - "events": [ - { - "uuid": "6e76a0bf-7375-4c4e-888d-3a9fe24be252", - "start": { - "$date": "2021-11-12T05:32:39.000Z" - }, - "end": { - "$date": "2021-11-12T06:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bf6b99b-2aa4-4dc5-bee4-73a2525630dc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-12T05:44:16.000Z" - }, - "end": { - "$date": "2021-11-12T06:22:21.000Z" - }, - "events": [ - { - "uuid": "8aedd580-eea1-497b-a263-56a564a4dff3", - "start": { - "$date": "2021-11-12T05:44:16.000Z" - }, - "end": { - "$date": "2021-11-12T06:22:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "094060db-530d-41a7-b206-b73f0fb73ebe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-12T05:44:22.000Z" - }, - "end": { - "$date": "2021-11-12T06:22:29.000Z" - }, - "events": [ - { - "uuid": "7e56203e-69d3-4a58-a4bd-3d151d4190b8", - "start": { - "$date": "2021-11-12T05:44:22.000Z" - }, - "end": { - "$date": "2021-11-12T06:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "cd2a0e80-0331-4f42-a9fe-b634fc8617f3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-12T05:44:50.000Z" - }, - "end": { - "$date": "2021-11-12T06:42:14.000Z" - }, - "events": [ - { - "uuid": "be6be051-e598-4ee9-9d63-a45c005ae9bc", - "start": { - "$date": "2021-11-12T05:44:50.000Z" - }, - "end": { - "$date": "2021-11-12T06:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "e8e38ca9-f0a0-47f5-8d3c-4cbc16959bc9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T05:50:11.000Z" - }, - "end": { - "$date": "2021-11-12T06:09:21.000Z" - }, - "events": [ - { - "uuid": "ae46b846-f863-4127-a41b-f141d5512c6a", - "start": { - "$date": "2021-11-12T05:50:11.000Z" - }, - "end": { - "$date": "2021-11-12T06:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "065209af-8491-4ab4-90ea-2294dddabe69", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-12T06:25:47.000Z" - }, - "end": { - "$date": "2021-11-12T06:47:31.000Z" - }, - "events": [ - { - "uuid": "1b0bc504-9dd9-4677-926e-98040a84738d", - "start": { - "$date": "2021-11-12T06:25:47.000Z" - }, - "end": { - "$date": "2021-11-12T06:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e628bc60-2eb4-4844-bd37-519c92e233a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-12T06:25:48.000Z" - }, - "end": { - "$date": "2021-11-12T06:47:32.000Z" - }, - "events": [ - { - "uuid": "efde0a75-93bc-4fdf-b743-e9ef30f5ec03", - "start": { - "$date": "2021-11-12T06:25:48.000Z" - }, - "end": { - "$date": "2021-11-12T06:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9178097f-fb75-4ffb-9847-08bee4d5c880", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T06:34:15.000Z" - }, - "end": { - "$date": "2021-11-12T07:59:00.000Z" - }, - "events": [ - { - "uuid": "d87508f6-fd88-47ed-b42b-547fee6bcdea", - "start": { - "$date": "2021-11-12T06:34:15.000Z" - }, - "end": { - "$date": "2021-11-12T07:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d2e6a0b4-8409-4922-989f-3ecc4ed2c255", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-12T06:35:49.000Z" - }, - "end": { - "$date": "2021-11-12T07:19:48.000Z" - }, - "events": [ - { - "uuid": "062888ef-5f97-4f2e-8bd6-f41bf9f8ef02", - "start": { - "$date": "2021-11-12T06:35:49.000Z" - }, - "end": { - "$date": "2021-11-12T07:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "45f7132e-7375-497f-af2b-3482e013fef3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-12T07:23:31.000Z" - }, - "end": { - "$date": "2021-11-12T08:38:54.000Z" - }, - "events": [ - { - "uuid": "5b2e63b1-7a6d-4de5-9ef8-ed4fe569183c", - "start": { - "$date": "2021-11-12T07:23:31.000Z" - }, - "end": { - "$date": "2021-11-12T08:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c8f4223f-ec0e-4650-b0ea-d868874efaa5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T14:49:18.000Z" - }, - "end": { - "$date": "2021-11-12T14:53:44.000Z" - }, - "events": [ - { - "uuid": "229f3734-a821-40b7-8a28-82c3019e8c65", - "start": { - "$date": "2021-11-12T14:49:18.000Z" - }, - "end": { - "$date": "2021-11-12T14:53:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "52b8efa3-14b3-4d8b-a92e-1fbacbe8c758", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T15:01:35.000Z" - }, - "end": { - "$date": "2021-11-12T15:03:55.000Z" - }, - "events": [ - { - "uuid": "cb150b39-2d3b-4745-ad59-909129bb2b73", - "start": { - "$date": "2021-11-12T15:01:35.000Z" - }, - "end": { - "$date": "2021-11-12T15:03:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fbe15867-a18c-4e26-bc6e-366b7497811a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-12T16:22:00.000Z" - }, - "end": { - "$date": "2021-11-12T18:51:32.000Z" - }, - "events": [ - { - "uuid": "a18a0c91-3020-4dca-a37e-769697937e61", - "start": { - "$date": "2021-11-12T16:22:00.000Z" - }, - "end": { - "$date": "2021-11-12T18:51:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "eb21aa92-5f1f-415f-b767-5511d8c0be08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T18:06:14.000Z" - }, - "end": { - "$date": "2021-11-12T19:51:57.000Z" - }, - "events": [ - { - "uuid": "676d06c7-ae62-4ce4-8759-fd8efa11bda1", - "start": { - "$date": "2021-11-12T18:06:14.000Z" - }, - "end": { - "$date": "2021-11-12T19:51:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "61dce3b6-4364-4b4a-8ca4-6d4824a2b96d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-12T19:10:51.000Z" - }, - "end": { - "$date": "2021-11-12T19:28:28.000Z" - }, - "events": [ - { - "uuid": "65ccfc9f-a968-43b0-9c72-407be32a18e9", - "start": { - "$date": "2021-11-12T19:10:51.000Z" - }, - "end": { - "$date": "2021-11-12T19:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "2825e830-2468-484b-95e7-964b4dc881ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-12T19:26:41.000Z" - }, - "end": { - "$date": "2021-11-12T19:57:02.000Z" - }, - "events": [ - { - "uuid": "51131547-82b5-473c-ad54-e80892f8dc41", - "start": { - "$date": "2021-11-12T19:26:41.000Z" - }, - "end": { - "$date": "2021-11-12T19:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "78410210-94df-43fe-a6db-5c61cc6ee7ef", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T20:52:54.000Z" - }, - "end": { - "$date": "2021-11-12T21:03:37.000Z" - }, - "events": [ - { - "uuid": "c9296876-9838-48e8-96cf-bbc4f0c6dbbb", - "start": { - "$date": "2021-11-12T20:52:54.000Z" - }, - "end": { - "$date": "2021-11-12T21:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "b0db6ca9-af67-4188-9126-5ce4295455b0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-12T21:04:01.000Z" - }, - "end": { - "$date": "2021-11-12T21:49:28.000Z" - }, - "events": [ - { - "uuid": "d38bfd07-5a73-4676-a6b3-10e90d289b2f", - "start": { - "$date": "2021-11-12T21:04:01.000Z" - }, - "end": { - "$date": "2021-11-12T21:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8863aa9a-75be-4340-a605-c0c10f0b4a95", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-12T21:49:02.000Z" - }, - "end": { - "$date": "2021-11-12T22:42:51.000Z" - }, - "events": [ - { - "uuid": "653b45e9-dbc9-4272-91b1-8e9018e53abf", - "start": { - "$date": "2021-11-12T21:49:02.000Z" - }, - "end": { - "$date": "2021-11-12T22:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "bf161cc6-8fa8-4cf1-b74e-6468bb8e9519", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-12T23:46:51.000Z" - }, - "end": { - "$date": "2021-11-13T00:39:29.000Z" - }, - "events": [ - { - "uuid": "b77c95c2-ed86-428a-a492-42c729d90a0e", - "start": { - "$date": "2021-11-12T23:46:51.000Z" - }, - "end": { - "$date": "2021-11-13T00:39:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "e4180de3-97d2-4a83-869f-89e80f39767b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-12T23:58:40.000Z" - }, - "end": { - "$date": "2021-11-13T00:11:39.000Z" - }, - "events": [ - { - "uuid": "6b3a9be2-d13e-48fe-94fb-66b83f1d0ea6", - "start": { - "$date": "2021-11-12T23:58:40.000Z" - }, - "end": { - "$date": "2021-11-13T00:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "50206c45-8bba-4516-a10d-6311f24c8657", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-13T01:20:26.000Z" - }, - "end": { - "$date": "2021-11-13T02:17:58.000Z" - }, - "events": [ - { - "uuid": "d0b1f5e8-acf7-40de-b74c-52830ba320e6", - "start": { - "$date": "2021-11-13T01:20:26.000Z" - }, - "end": { - "$date": "2021-11-13T02:17:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "d230765c-1028-4874-8ab8-86362e5a0e89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-13T01:59:47.000Z" - }, - "end": { - "$date": "2021-11-13T03:34:37.000Z" - }, - "events": [ - { - "uuid": "c38c7520-dfb2-411c-8fc0-12fa8315c138", - "start": { - "$date": "2021-11-13T01:59:47.000Z" - }, - "end": { - "$date": "2021-11-13T03:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "8adb68a7-323d-4852-85c0-29ed20360be7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-13T03:00:07.000Z" - }, - "end": { - "$date": "2021-11-13T03:53:11.000Z" - }, - "events": [ - { - "uuid": "39b4d695-abd2-4e86-8afc-5794e63847eb", - "start": { - "$date": "2021-11-13T03:00:07.000Z" - }, - "end": { - "$date": "2021-11-13T03:53:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "949eab24-df67-4e20-9727-ffe0702e2303", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-13T03:37:59.000Z" - }, - "end": { - "$date": "2021-11-13T04:43:54.000Z" - }, - "events": [ - { - "uuid": "47c08e3a-97c2-4d2b-a940-64fcb06569da", - "start": { - "$date": "2021-11-13T03:37:59.000Z" - }, - "end": { - "$date": "2021-11-13T04:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "3ee008f6-ae3c-4fbc-bc40-647f41fb3f64", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-13T04:03:03.000Z" - }, - "end": { - "$date": "2021-11-13T04:15:53.000Z" - }, - "events": [ - { - "uuid": "b9a59f57-ef77-49f2-8c53-5a1cd7caa658", - "start": { - "$date": "2021-11-13T04:03:03.000Z" - }, - "end": { - "$date": "2021-11-13T04:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b2f667b3-eb38-4516-b299-8e1be6a29998", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-13T04:27:19.000Z" - }, - "end": { - "$date": "2021-11-13T07:10:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T04:27:19.000Z" - }, - "end": { - "$date": "2021-11-13T07:10:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "f39d8cfb-0c16-4681-b924-928f27a54ba1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-13T04:29:50.000Z" - }, - "end": { - "$date": "2021-11-13T04:54:22.000Z" - }, - "events": [ - { - "uuid": "d8c6d762-5758-40ec-994d-6c7fa12cc220", - "start": { - "$date": "2021-11-13T04:29:50.000Z" - }, - "end": { - "$date": "2021-11-13T04:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1664cefd-f4be-449c-8d7a-3c363e052604", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-13T04:33:48.000Z" - }, - "end": { - "$date": "2021-11-13T09:58:38.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T04:33:48.000Z" - }, - "end": { - "$date": "2021-11-13T09:58:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "ef8116bd-a335-418e-8b2c-6cd1c3a114e2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-13T04:37:14.000Z" - }, - "end": { - "$date": "2021-11-13T04:47:51.000Z" - }, - "events": [ - { - "uuid": "d18ca741-03ac-4c2a-980c-d4499f616b82", - "start": { - "$date": "2021-11-13T04:37:14.000Z" - }, - "end": { - "$date": "2021-11-13T04:47:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e60b6cd1-0a76-4c7b-89e3-1e6ba8f748c0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-13T04:46:55.000Z" - }, - "end": { - "$date": "2021-11-13T05:54:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T04:46:55.000Z" - }, - "end": { - "$date": "2021-11-13T05:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "e7e21136-0973-4345-aec9-afa24669a4f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-13T04:48:05.000Z" - }, - "end": { - "$date": "2021-11-13T05:49:32.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T04:48:05.000Z" - }, - "end": { - "$date": "2021-11-13T05:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d9922bc3-a0ac-4a18-9585-e07fd1c9d8a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-13T04:52:41.000Z" - }, - "end": { - "$date": "2021-11-13T07:23:30.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T04:52:41.000Z" - }, - "end": { - "$date": "2021-11-13T07:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "019e5dd6-dc72-4263-a14a-7be25a8e8def", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-13T04:54:43.000Z" - }, - "end": { - "$date": "2021-11-13T07:29:34.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T04:54:43.000Z" - }, - "end": { - "$date": "2021-11-13T07:29:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfca1b02-4b03-49e1-a658-0014df9825af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-13T05:15:52.000Z" - }, - "end": { - "$date": "2021-11-13T05:41:03.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-11-13T05:15:52.000Z" - }, - "end": { - "$date": "2021-11-13T05:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63a13030-aba4-41bb-a87b-f11a3fd48a77", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-13T05:45:28.000Z" - }, - "end": { - "$date": "2021-11-13T06:19:09.000Z" - }, - "events": [ - { - "uuid": "a7db326a-30c5-4352-b145-9806fb7cf2f0", - "start": { - "$date": "2021-11-13T05:45:28.000Z" - }, - "end": { - "$date": "2021-11-13T06:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0274fdf-3e71-4428-9b9f-f8382e3e7bd1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-13T06:34:00.000Z" - }, - "end": { - "$date": "2021-11-13T06:55:26.000Z" - }, - "events": [ - { - "uuid": "d975aba6-6d69-470a-8f8f-8e6f9cb0d29b", - "start": { - "$date": "2021-11-13T06:34:00.000Z" - }, - "end": { - "$date": "2021-11-13T06:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0e86d05-dab7-4d74-b3c4-880c81be57da", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-13T06:58:20.000Z" - }, - "end": { - "$date": "2021-11-13T07:19:46.000Z" - }, - "events": [ - { - "uuid": "ee1e2844-64d8-41ec-a408-cdb0203e9efa", - "start": { - "$date": "2021-11-13T06:58:20.000Z" - }, - "end": { - "$date": "2021-11-13T07:19:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24e13465-aaa2-4752-a9d2-1af14fab4e3d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-13T07:19:56.000Z" - }, - "end": { - "$date": "2021-11-13T07:27:26.000Z" - }, - "events": [ - { - "uuid": "82557ef4-2013-4678-86b2-cec3d4401a49", - "start": { - "$date": "2021-11-13T07:19:56.000Z" - }, - "end": { - "$date": "2021-11-13T07:27:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "efac3d07-4811-45bb-aad2-94a85db14706", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-13T09:23:21.000Z" - }, - "end": { - "$date": "2021-11-13T10:04:58.000Z" - }, - "events": [ - { - "uuid": "1415e562-037f-4514-8ff2-42bfb0867d42", - "start": { - "$date": "2021-11-13T09:23:21.000Z" - }, - "end": { - "$date": "2021-11-13T10:04:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "437ca069-911a-4da3-ae82-81da3b3f9976", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-13T15:21:36.000Z" - }, - "end": { - "$date": "2021-11-13T15:59:36.000Z" - }, - "events": [ - { - "uuid": "47534480-bbef-420f-9d2e-489ace347cc7", - "start": { - "$date": "2021-11-13T15:21:36.000Z" - }, - "end": { - "$date": "2021-11-13T15:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fa34ae86-3733-4fa5-8300-ad4a60d81dca", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-13T16:02:16.000Z" - }, - "end": { - "$date": "2021-11-13T17:51:41.000Z" - }, - "events": [ - { - "uuid": "f909c644-bd7e-428d-b275-25012723edd5", - "start": { - "$date": "2021-11-13T16:02:16.000Z" - }, - "end": { - "$date": "2021-11-13T17:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "a7473dd0-f85a-4635-9d27-554d2df7c0ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-13T16:32:25.000Z" - }, - "end": { - "$date": "2021-11-13T17:00:42.000Z" - }, - "events": [ - { - "uuid": "e13b3429-5c6d-4a53-9ec8-188c786f51da", - "start": { - "$date": "2021-11-13T16:32:25.000Z" - }, - "end": { - "$date": "2021-11-13T17:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "79b2acc2-fe2b-42cd-8ae5-7ff2c69a244d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-13T16:49:28.000Z" - }, - "end": { - "$date": "2021-11-13T19:56:33.000Z" - }, - "events": [ - { - "uuid": "4532ad1e-1eed-48a8-b252-bb36a9db914c", - "start": { - "$date": "2021-11-13T16:49:28.000Z" - }, - "end": { - "$date": "2021-11-13T19:56:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "24be54ed-4814-4953-8515-b671174dbee3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-13T16:59:38.000Z" - }, - "end": { - "$date": "2021-11-13T17:45:49.000Z" - }, - "events": [ - { - "uuid": "76b3b1f6-6f0b-4576-bbdd-50b39f77ccb9", - "start": { - "$date": "2021-11-13T16:59:38.000Z" - }, - "end": { - "$date": "2021-11-13T17:45:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "8a2f5f96-e3f7-490d-bd75-bd69cb821fa0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-13T17:01:02.000Z" - }, - "end": { - "$date": "2021-11-13T18:21:05.000Z" - }, - "events": [ - { - "uuid": "4843cfeb-6eb9-4bc9-865b-54c979a6aab2", - "start": { - "$date": "2021-11-13T17:01:02.000Z" - }, - "end": { - "$date": "2021-11-13T18:21:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e0a61e7b-0cba-4023-9ad6-8144c93ba7a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-13T17:46:40.000Z" - }, - "end": { - "$date": "2021-11-13T18:08:30.000Z" - }, - "events": [ - { - "uuid": "4cec678e-c084-45ca-ac23-c675de4526b5", - "start": { - "$date": "2021-11-13T17:46:40.000Z" - }, - "end": { - "$date": "2021-11-13T18:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c6e400c-ddb7-4851-86c3-d371d3c3b4f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-13T18:10:32.000Z" - }, - "end": { - "$date": "2021-11-13T19:50:09.000Z" - }, - "events": [ - { - "uuid": "60e3d819-92cc-4ad4-a13f-ec04cdc39ae1", - "start": { - "$date": "2021-11-13T18:10:32.000Z" - }, - "end": { - "$date": "2021-11-13T19:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e36afb9f-2450-45d1-ad14-a355ad135f30", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-13T18:14:03.000Z" - }, - "end": { - "$date": "2021-11-13T20:41:05.000Z" - }, - "events": [ - { - "uuid": "67d502dd-6b44-48d2-ab35-04ef583e4718", - "start": { - "$date": "2021-11-13T18:14:03.000Z" - }, - "end": { - "$date": "2021-11-13T20:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "a56e7af6-090f-4eb3-9dba-6225c26fe0a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-13T19:51:49.000Z" - }, - "end": { - "$date": "2021-11-13T23:28:57.000Z" - }, - "events": [ - { - "uuid": "e1c42806-371b-4da0-b25c-e80607e9102b", - "start": { - "$date": "2021-11-13T19:51:49.000Z" - }, - "end": { - "$date": "2021-11-13T23:28:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a0a56f0c-0ef9-4882-b206-bb98a1e78c4f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-13T20:41:10.000Z" - }, - "end": { - "$date": "2021-11-13T20:43:11.000Z" - }, - "events": [ - { - "uuid": "bb8f3fa5-0a62-436e-b0a1-d3889fc6c2f5", - "start": { - "$date": "2021-11-13T20:41:10.000Z" - }, - "end": { - "$date": "2021-11-13T20:43:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "04fd1400-0377-4899-9cc0-0095d29fd74e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-13T23:12:10.000Z" - }, - "end": { - "$date": "2021-11-14T00:36:29.000Z" - }, - "events": [ - { - "uuid": "901c4b84-8ae2-4bed-911e-abb19006446c", - "start": { - "$date": "2021-11-13T23:12:10.000Z" - }, - "end": { - "$date": "2021-11-14T00:36:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c406eba5-5f1b-469a-8269-b3513171807b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-13T23:49:51.000Z" - }, - "end": { - "$date": "2021-11-14T00:43:57.000Z" - }, - "events": [ - { - "uuid": "0de20b32-70c1-47a3-955c-e173f6aef57c", - "start": { - "$date": "2021-11-13T23:49:51.000Z" - }, - "end": { - "$date": "2021-11-14T00:43:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0fc9d750-ad70-4f65-a128-6783bb3fc4a2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-13T18:15:49.000Z" - }, - "end": { - "$date": "2021-11-14T05:21:07.000Z" - }, - "events": [ - { - "uuid": "91e81551-8d56-44ec-8e73-403471e0fdeb", - "start": { - "$date": "2021-11-13T18:15:49.000Z" - }, - "end": { - "$date": "2021-11-13T18:48:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d326e113-dd81-4da2-aed1-8c1a6e6165fc", - "start": { - "$date": "2021-11-13T18:48:49.000Z" - }, - "end": { - "$date": "2021-11-13T18:53:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e0bccea3-85cf-4e7f-a604-d4b5c19641e7", - "start": { - "$date": "2021-11-13T18:53:49.000Z" - }, - "end": { - "$date": "2021-11-13T19:03:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "638111c1-1843-4ea2-ba10-3f604215d942", - "start": { - "$date": "2021-11-13T19:03:49.000Z" - }, - "end": { - "$date": "2021-11-13T19:15:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "581ec650-8ab8-4a02-b85f-16b9b2b7a7c4", - "start": { - "$date": "2021-11-13T19:15:49.000Z" - }, - "end": { - "$date": "2021-11-14T05:21:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e3df9b3a-e47f-47d4-9e0f-1f2338361f39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-13T23:54:38.000Z" - }, - "end": { - "$date": "2021-11-14T00:27:07.000Z" - }, - "events": [ - { - "uuid": "6e9aa641-31c6-4c63-a7fd-19da109ace66", - "start": { - "$date": "2021-11-13T23:54:38.000Z" - }, - "end": { - "$date": "2021-11-14T00:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fce75df-0084-454c-bd51-7602a4228315", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T02:06:01.000Z" - }, - "end": { - "$date": "2021-11-14T02:16:48.000Z" - }, - "events": [ - { - "uuid": "01204372-8094-4641-bfc2-31ee43c20d9d", - "start": { - "$date": "2021-11-14T02:06:01.000Z" - }, - "end": { - "$date": "2021-11-14T02:26:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eefc92ac-d21e-4bc7-8264-ad927174477d", - "start": { - "$date": "2021-11-14T02:26:01.000Z" - }, - "end": { - "$date": "2021-11-14T02:35:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edf7bb38-e73c-407a-9395-6d4a6d5895dc", - "start": { - "$date": "2021-11-14T02:35:01.000Z" - }, - "end": { - "$date": "2021-11-14T02:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "673301ba-5fd3-4f38-a9a9-fe3de1ba572f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-14T01:35:21.000Z" - }, - "end": { - "$date": "2021-11-14T03:20:19.000Z" - }, - "events": [ - { - "uuid": "c9a17d13-5bb9-4ef1-ac11-a3bd54eaea65", - "start": { - "$date": "2021-11-14T01:35:21.000Z" - }, - "end": { - "$date": "2021-11-14T03:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1335dab4-8b3e-463e-80ce-6b7e6c788c77", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-14T01:39:00.000Z" - }, - "end": { - "$date": "2021-11-14T02:59:49.000Z" - }, - "events": [ - { - "uuid": "3c4221b6-1378-4639-abb9-d00585d3a9f4", - "start": { - "$date": "2021-11-14T01:39:00.000Z" - }, - "end": { - "$date": "2021-11-14T02:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c91ea6cc-2336-419f-b98b-b7c04e80049c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-14T01:39:54.000Z" - }, - "end": { - "$date": "2021-11-14T02:19:27.000Z" - }, - "events": [ - { - "uuid": "17e0e23c-b54c-4df3-aa70-a9a4f7979786", - "start": { - "$date": "2021-11-14T01:39:54.000Z" - }, - "end": { - "$date": "2021-11-14T02:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60bfa426-d49c-48ff-83dd-5c3118ef677c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T02:29:58.000Z" - }, - "end": { - "$date": "2021-11-14T02:51:11.000Z" - }, - "events": [ - { - "uuid": "b1837392-b807-4762-8285-94e29a8f5a7d", - "start": { - "$date": "2021-11-14T02:29:58.000Z" - }, - "end": { - "$date": "2021-11-14T02:51:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6962061a-b667-4f7a-a715-ce50284d2b22", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T03:06:31.000Z" - }, - "end": { - "$date": "2021-11-14T03:07:53.000Z" - }, - "events": [ - { - "uuid": "c826b8e1-4413-45af-b77c-14cb953b03e7", - "start": { - "$date": "2021-11-14T03:06:31.000Z" - }, - "end": { - "$date": "2021-11-14T03:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0a4caec9-7327-4bd0-8ba0-dcb7fb26d1cc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-14T03:08:58.000Z" - }, - "end": { - "$date": "2021-11-14T04:32:59.000Z" - }, - "events": [ - { - "uuid": "7955f7cd-6dd1-40d5-b632-92f4fbf45e32", - "start": { - "$date": "2021-11-14T03:08:58.000Z" - }, - "end": { - "$date": "2021-11-14T04:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5a0a2c74-581b-4942-ba1d-0c3feba2748c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T03:08:56.000Z" - }, - "end": { - "$date": "2021-11-14T03:47:25.000Z" - }, - "events": [ - { - "uuid": "5f2153f6-229a-4426-bb88-9b6b8d8b6de0", - "start": { - "$date": "2021-11-14T03:08:56.000Z" - }, - "end": { - "$date": "2021-11-14T03:47:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "39c6d033-3ceb-4494-965a-63ebf776d7a3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-14T03:11:22.000Z" - }, - "end": { - "$date": "2021-11-14T03:12:53.000Z" - }, - "events": [ - { - "uuid": "9a6a57c9-4641-47b0-bd31-c26b08c85b31", - "start": { - "$date": "2021-11-14T03:11:22.000Z" - }, - "end": { - "$date": "2021-11-14T03:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "be1d2eab-36e6-4d23-bc54-2d18166ad213", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-14T03:21:33.000Z" - }, - "end": { - "$date": "2021-11-14T04:12:43.000Z" - }, - "events": [ - { - "uuid": "d927232c-9b0f-42a3-817b-ce44b3a7f706", - "start": { - "$date": "2021-11-14T03:21:33.000Z" - }, - "end": { - "$date": "2021-11-14T04:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9958a13f-ab30-440a-8dcf-105451a4aacf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T03:55:31.000Z" - }, - "end": { - "$date": "2021-11-14T04:19:52.000Z" - }, - "events": [ - { - "uuid": "25177f49-2a8a-4716-99ee-20ebe67205cd", - "start": { - "$date": "2021-11-14T03:55:31.000Z" - }, - "end": { - "$date": "2021-11-14T04:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec46fac8-7742-42a6-935d-cb9c4a14bce8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-14T03:58:06.000Z" - }, - "end": { - "$date": "2021-11-14T04:31:52.000Z" - }, - "events": [ - { - "uuid": "f89ef7e9-6244-4dd4-92a3-4db234559249", - "start": { - "$date": "2021-11-14T03:58:06.000Z" - }, - "end": { - "$date": "2021-11-14T04:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94db5b3f-a0ed-42db-a753-25d281b708dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T04:24:20.000Z" - }, - "end": { - "$date": "2021-11-14T04:26:45.000Z" - }, - "events": [ - { - "uuid": "46440316-a8e8-4a8b-883d-3fbf623dc173", - "start": { - "$date": "2021-11-14T04:24:20.000Z" - }, - "end": { - "$date": "2021-11-14T04:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2ecfbf75-99f7-43b5-a64d-8783b7986ed4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T04:27:28.000Z" - }, - "end": { - "$date": "2021-11-14T04:39:10.000Z" - }, - "events": [ - { - "uuid": "f2e30ea6-1d93-4824-add3-f6a2b0c30891", - "start": { - "$date": "2021-11-14T04:27:28.000Z" - }, - "end": { - "$date": "2021-11-14T04:39:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4c6a212-3176-4c65-946e-ae861ad656b8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-14T04:36:27.000Z" - }, - "end": { - "$date": "2021-11-14T05:10:39.000Z" - }, - "events": [ - { - "uuid": "a86c54f7-2d9d-4205-a236-08d21752984b", - "start": { - "$date": "2021-11-14T04:36:27.000Z" - }, - "end": { - "$date": "2021-11-14T05:10:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1263b28-6ce6-4e8f-941c-470b959dfe8a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T05:22:24.000Z" - }, - "end": { - "$date": "2021-11-14T05:22:23.000Z" - }, - "events": [ - { - "uuid": "c9d78083-5146-47cb-9913-8f96b36b5772", - "start": { - "$date": "2021-11-14T05:22:24.000Z" - }, - "end": { - "$date": "2021-11-14T05:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1acd31e-ae82-4ba5-852a-27a6adbb8e33", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-14T05:01:10.000Z" - }, - "end": { - "$date": "2021-11-14T05:22:16.000Z" - }, - "events": [ - { - "uuid": "0fcc9eac-285a-4c6d-915f-d1860b989756", - "start": { - "$date": "2021-11-14T05:01:10.000Z" - }, - "end": { - "$date": "2021-11-14T05:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "325c2a7a-df23-48c2-a71f-85487fc2ed75", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-14T05:17:28.000Z" - }, - "end": { - "$date": "2021-11-14T05:39:04.000Z" - }, - "events": [ - { - "uuid": "bc44414e-b04e-427e-b71a-163b68d33bc5", - "start": { - "$date": "2021-11-14T05:17:28.000Z" - }, - "end": { - "$date": "2021-11-14T05:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5aa53b84-1db3-4e45-9393-1347394e5a4d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-14T05:21:14.000Z" - }, - "end": { - "$date": "2021-11-14T05:23:53.000Z" - }, - "events": [ - { - "uuid": "001351d2-d1ec-41f2-8d03-354f9896bedb", - "start": { - "$date": "2021-11-14T05:21:14.000Z" - }, - "end": { - "$date": "2021-11-14T05:23:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "15b329a2-e928-4f39-9d6c-ee73023cab90", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-14T05:26:02.000Z" - }, - "end": { - "$date": "2021-11-14T07:48:08.000Z" - }, - "events": [ - { - "uuid": "15151e55-265b-4c89-9417-33bd53d673b0", - "start": { - "$date": "2021-11-14T05:26:02.000Z" - }, - "end": { - "$date": "2021-11-14T06:17:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bdc7c27f-4afa-4b55-819b-17cfa9c27bb4", - "start": { - "$date": "2021-11-14T06:17:02.000Z" - }, - "end": { - "$date": "2021-11-14T06:21:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74d09333-f49d-44e5-871d-34ae79a4cdbe", - "start": { - "$date": "2021-11-14T06:21:02.000Z" - }, - "end": { - "$date": "2021-11-14T06:32:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d701bae0-f6a7-4187-9c0f-ec3b26c80b43", - "start": { - "$date": "2021-11-14T06:32:02.000Z" - }, - "end": { - "$date": "2021-11-14T06:42:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9701c40-df48-4100-a04b-df676d8650db", - "start": { - "$date": "2021-11-14T06:42:02.000Z" - }, - "end": { - "$date": "2021-11-14T07:16:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da656aae-6933-47ad-8815-1a4ac1b67db7", - "start": { - "$date": "2021-11-14T07:16:02.000Z" - }, - "end": { - "$date": "2021-11-14T07:18:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2fb26e18-5765-4b78-8a25-1c76c14115f4", - "start": { - "$date": "2021-11-14T07:18:02.000Z" - }, - "end": { - "$date": "2021-11-14T07:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "463bf08f-4bb6-4074-91ef-0004d75535b0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-14T05:42:59.000Z" - }, - "end": { - "$date": "2021-11-14T06:17:40.000Z" - }, - "events": [ - { - "uuid": "6cfbb829-118b-42e7-b798-2319ff8499de", - "start": { - "$date": "2021-11-14T05:42:59.000Z" - }, - "end": { - "$date": "2021-11-14T06:17:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b095a63-7bb5-4bd0-979a-ad10c089068f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-14T08:11:03.000Z" - }, - "end": { - "$date": "2021-11-14T08:56:08.000Z" - }, - "events": [ - { - "uuid": "8bfe2d84-e308-43d5-8cc9-f71f3ffa291a", - "start": { - "$date": "2021-11-14T08:11:03.000Z" - }, - "end": { - "$date": "2021-11-14T08:56:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1449718-c557-4c2a-8143-4132360430fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T08:58:29.000Z" - }, - "end": { - "$date": "2021-11-14T09:35:21.000Z" - }, - "events": [ - { - "uuid": "e7cabcd3-073b-42f7-affe-7c990f52cbaa", - "start": { - "$date": "2021-11-14T08:58:29.000Z" - }, - "end": { - "$date": "2021-11-14T09:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "c80081f6-1419-4602-b6cb-176388e9d592", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-14T16:14:21.000Z" - }, - "end": { - "$date": "2021-11-14T17:20:24.000Z" - }, - "events": [ - { - "uuid": "3c946b64-0f6e-4ed0-ab92-ea08ac4f275e", - "start": { - "$date": "2021-11-14T16:14:21.000Z" - }, - "end": { - "$date": "2021-11-14T17:20:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aa9cccb7-0729-4556-851d-c77275326e6b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-14T16:18:00.000Z" - }, - "end": { - "$date": "2021-11-14T16:21:15.000Z" - }, - "events": [ - { - "uuid": "44b4f046-5ea0-45e8-8108-1f625ae16e67", - "start": { - "$date": "2021-11-14T16:18:00.000Z" - }, - "end": { - "$date": "2021-11-14T16:21:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "04be45df-f9ce-47a4-bb86-b1812d54fd2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T17:05:15.000Z" - }, - "end": { - "$date": "2021-11-14T18:02:19.000Z" - }, - "events": [ - { - "uuid": "f3f7fcdb-56bd-49e5-a55e-8fbf94003b93", - "start": { - "$date": "2021-11-14T17:05:15.000Z" - }, - "end": { - "$date": "2021-11-14T18:02:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1b7db22f-2aed-4f42-8ab6-2060b579da94", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-14T17:19:25.000Z" - }, - "end": { - "$date": "2021-11-14T19:03:06.000Z" - }, - "events": [ - { - "uuid": "dfe07a4b-4a45-457a-8421-ea5fb0992473", - "start": { - "$date": "2021-11-14T17:19:25.000Z" - }, - "end": { - "$date": "2021-11-14T19:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "b35c15dc-8d25-47f2-9e6c-14932a1b11f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-14T17:30:33.000Z" - }, - "end": { - "$date": "2021-11-14T17:57:09.000Z" - }, - "events": [ - { - "uuid": "737580d0-eeba-416d-ae34-d355739065b3", - "start": { - "$date": "2021-11-14T17:30:33.000Z" - }, - "end": { - "$date": "2021-11-14T17:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "dbd202d6-a9f5-4c80-bb6e-63b4ad40e08a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T18:33:07.000Z" - }, - "end": { - "$date": "2021-11-14T18:41:39.000Z" - }, - "events": [ - { - "uuid": "9d5890dd-743f-4b52-921d-61a0105febbd", - "start": { - "$date": "2021-11-14T18:33:07.000Z" - }, - "end": { - "$date": "2021-11-14T18:41:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "7618f014-41b4-4d02-b0af-b365a1d03fc2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-14T18:34:58.000Z" - }, - "end": { - "$date": "2021-11-14T20:35:12.000Z" - }, - "events": [ - { - "uuid": "080cd446-fcf9-4239-a0fa-55677a197b8a", - "start": { - "$date": "2021-11-14T18:34:58.000Z" - }, - "end": { - "$date": "2021-11-14T20:35:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "f92b95c3-da2a-45ba-b32f-befed8e08789", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-14T18:35:28.000Z" - }, - "end": { - "$date": "2021-11-14T19:20:54.000Z" - }, - "events": [ - { - "uuid": "ba2f9ab8-30ee-4431-b950-77b0ecc88f7d", - "start": { - "$date": "2021-11-14T18:35:28.000Z" - }, - "end": { - "$date": "2021-11-14T19:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "8a1062f4-2e6b-4757-a70d-698f23e73dfb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T18:42:13.000Z" - }, - "end": { - "$date": "2021-11-14T20:37:05.000Z" - }, - "events": [ - { - "uuid": "6b3f3afc-47e7-4a77-9b19-05d1648d2823", - "start": { - "$date": "2021-11-14T18:42:13.000Z" - }, - "end": { - "$date": "2021-11-14T19:28:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49aeb72e-383d-4aa8-8cb4-49304a845da2", - "start": { - "$date": "2021-11-14T19:28:13.000Z" - }, - "end": { - "$date": "2021-11-14T19:30:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "34088c2a-a850-4451-9f8c-9efd44acc7a1", - "start": { - "$date": "2021-11-14T19:30:13.000Z" - }, - "end": { - "$date": "2021-11-14T20:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "630502c9-ba4f-4d6a-8da4-019a4ae6834a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T20:33:41.000Z" - }, - "end": { - "$date": "2021-11-14T21:04:03.000Z" - }, - "events": [ - { - "uuid": "94c9f3da-20dc-46bb-9937-9143ed1eed85", - "start": { - "$date": "2021-11-14T20:33:41.000Z" - }, - "end": { - "$date": "2021-11-14T21:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "63ea5c85-795b-4d89-827a-e5e242548cb6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T20:38:34.000Z" - }, - "end": { - "$date": "2021-11-14T22:37:18.000Z" - }, - "events": [ - { - "uuid": "bff641c2-9fba-4df2-b373-6b3668d634b5", - "start": { - "$date": "2021-11-14T20:38:34.000Z" - }, - "end": { - "$date": "2021-11-14T21:06:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5077ae8f-623f-431c-99f6-991f24b4627f", - "start": { - "$date": "2021-11-14T21:06:34.000Z" - }, - "end": { - "$date": "2021-11-14T21:11:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8b7b80e7-edf8-499d-beba-314b0b93e8dc", - "start": { - "$date": "2021-11-14T21:11:34.000Z" - }, - "end": { - "$date": "2021-11-14T22:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f2a7fb78-e51f-45d9-ab05-fbb0a08cd2e4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T21:05:41.000Z" - }, - "end": { - "$date": "2021-11-14T23:11:40.000Z" - }, - "events": [ - { - "uuid": "f7a9834d-53c3-4912-bf04-509ba14daf67", - "start": { - "$date": "2021-11-14T21:05:41.000Z" - }, - "end": { - "$date": "2021-11-14T23:11:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1f5454de-2eb4-4983-ac79-d3ba982cd566", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-14T21:14:52.000Z" - }, - "end": { - "$date": "2021-11-14T22:45:07.000Z" - }, - "events": [ - { - "uuid": "88fd382c-67e8-42d5-9fbd-3c5466fe88f7", - "start": { - "$date": "2021-11-14T21:14:52.000Z" - }, - "end": { - "$date": "2021-11-14T22:45:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "49ee98ac-0d66-402e-922e-e03f5767b4c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-14T21:46:22.000Z" - }, - "end": { - "$date": "2021-11-14T22:59:17.000Z" - }, - "events": [ - { - "uuid": "2b2b935f-380e-45af-bd2f-0c112d293916", - "start": { - "$date": "2021-11-14T21:46:22.000Z" - }, - "end": { - "$date": "2021-11-14T22:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "5552dc7d-6da9-4742-8d3a-296b46d4d63f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T23:02:05.000Z" - }, - "end": { - "$date": "2021-11-14T23:08:12.000Z" - }, - "events": [ - { - "uuid": "45ec4534-e0b3-44fc-8b54-ed8c9d0fc15e", - "start": { - "$date": "2021-11-14T23:02:05.000Z" - }, - "end": { - "$date": "2021-11-14T23:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "716e3306-bac5-4aeb-a882-a3ea3206c4fa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T23:08:21.000Z" - }, - "end": { - "$date": "2021-11-14T23:58:45.000Z" - }, - "events": [ - { - "uuid": "b3d14e39-6bcb-4111-b07e-7fa61254556e", - "start": { - "$date": "2021-11-14T23:08:21.000Z" - }, - "end": { - "$date": "2021-11-14T23:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69b169db-c789-4a9b-b4f5-0405c5e9dc07", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-14T23:17:55.000Z" - }, - "end": { - "$date": "2021-11-14T23:50:17.000Z" - }, - "events": [ - { - "uuid": "38daa75d-284c-4a8b-b6d1-546fb5c0b6d6", - "start": { - "$date": "2021-11-14T23:17:55.000Z" - }, - "end": { - "$date": "2021-11-14T23:50:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bff841d-1aea-419b-b722-10238d74a719", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-14T23:59:49.000Z" - }, - "end": { - "$date": "2021-11-15T00:54:38.000Z" - }, - "events": [ - { - "uuid": "f1b45fbc-1332-4b73-b257-359f51268765", - "start": { - "$date": "2021-11-14T23:59:49.000Z" - }, - "end": { - "$date": "2021-11-15T00:54:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8d40412d-0ee2-4f8c-b41c-292bea8f4b74", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-15T00:07:16.000Z" - }, - "end": { - "$date": "2021-11-15T01:46:44.000Z" - }, - "events": [ - { - "uuid": "32a41fc2-e16f-44cb-bd2d-6b9299f235d4", - "start": { - "$date": "2021-11-15T00:07:16.000Z" - }, - "end": { - "$date": "2021-11-15T01:46:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "2709234a-9c4d-4e03-88b9-cedbac25de84", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T00:55:17.000Z" - }, - "end": { - "$date": "2021-11-15T01:09:49.000Z" - }, - "events": [ - { - "uuid": "12a740d6-7eb3-4392-a311-186ed4539bb2", - "start": { - "$date": "2021-11-15T00:55:17.000Z" - }, - "end": { - "$date": "2021-11-15T01:09:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "9d507fd4-c958-4763-8261-464b5e2a09a3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-15T01:04:16.000Z" - }, - "end": { - "$date": "2021-11-15T01:06:19.000Z" - }, - "events": [ - { - "uuid": "bcf97cf2-2623-40c4-af2f-bf4c43a713e9", - "start": { - "$date": "2021-11-15T01:04:16.000Z" - }, - "end": { - "$date": "2021-11-15T01:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f279eb77-9b1a-48dd-b991-fd95fc8380a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T01:06:01.000Z" - }, - "end": { - "$date": "2021-11-15T02:14:10.000Z" - }, - "events": [ - { - "uuid": "8ee54924-5d45-481d-85c9-02b5fdfdfe31", - "start": { - "$date": "2021-11-15T01:06:01.000Z" - }, - "end": { - "$date": "2021-11-15T02:14:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "af895693-d434-4690-94d4-e818d2a8efb7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-15T01:06:43.000Z" - }, - "end": { - "$date": "2021-11-15T01:32:55.000Z" - }, - "events": [ - { - "uuid": "94214394-a78c-41c2-a84d-97d4a8bb1f7c", - "start": { - "$date": "2021-11-15T01:06:43.000Z" - }, - "end": { - "$date": "2021-11-15T01:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "902d47db-6208-4fd9-9c25-e8422d67cd0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T01:10:33.000Z" - }, - "end": { - "$date": "2021-11-15T02:03:15.000Z" - }, - "events": [ - { - "uuid": "853459c2-b981-4d12-b8b8-39350f567014", - "start": { - "$date": "2021-11-15T01:10:33.000Z" - }, - "end": { - "$date": "2021-11-15T01:48:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f0c5ff03-bd75-42c3-a39e-bda418123e81", - "start": { - "$date": "2021-11-15T01:48:33.000Z" - }, - "end": { - "$date": "2021-11-15T02:03:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "62c2887e-9953-42ba-b716-3e978c7c9cfc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T01:31:22.000Z" - }, - "end": { - "$date": "2021-11-15T02:39:32.000Z" - }, - "events": [ - { - "uuid": "46c398a0-7387-4f3e-a7a5-d4c5c046e48a", - "start": { - "$date": "2021-11-15T01:31:22.000Z" - }, - "end": { - "$date": "2021-11-15T02:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "32f49c64-45e1-4667-a51c-d13fe9762e6e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-15T01:33:13.000Z" - }, - "end": { - "$date": "2021-11-15T02:55:42.000Z" - }, - "events": [ - { - "uuid": "8cde7101-2ce9-4e7a-85fa-f890fd49b710", - "start": { - "$date": "2021-11-15T01:33:13.000Z" - }, - "end": { - "$date": "2021-11-15T02:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "18f53d62-9444-48ea-b588-b69075dc638d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-15T01:43:33.000Z" - }, - "end": { - "$date": "2021-11-15T02:25:21.000Z" - }, - "events": [ - { - "uuid": "196f3e0f-229d-459b-9341-4e7f0763be98", - "start": { - "$date": "2021-11-15T01:43:33.000Z" - }, - "end": { - "$date": "2021-11-15T02:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "07d2f58c-d1a6-45af-9a4d-3792edbda597", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-15T01:46:53.000Z" - }, - "end": { - "$date": "2021-11-15T01:51:04.000Z" - }, - "events": [ - { - "uuid": "4d2e03ee-ad1c-4a00-8e46-b7c66a5f9740", - "start": { - "$date": "2021-11-15T01:46:53.000Z" - }, - "end": { - "$date": "2021-11-15T01:51:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b382ef9b-d3d1-42a3-8280-6278e91c8cde", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-15T01:58:00.000Z" - }, - "end": { - "$date": "2021-11-15T02:22:30.000Z" - }, - "events": [ - { - "uuid": "20b26026-93c5-47ed-95c6-1635b9ff6d17", - "start": { - "$date": "2021-11-15T01:58:00.000Z" - }, - "end": { - "$date": "2021-11-15T02:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd7d2419-5077-44ad-b76b-ba067efb1cca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T02:41:23.000Z" - }, - "end": { - "$date": "2021-11-15T02:47:43.000Z" - }, - "events": [ - { - "uuid": "822f9ea6-fe23-42ca-893b-3346c57c3d7c", - "start": { - "$date": "2021-11-15T02:41:23.000Z" - }, - "end": { - "$date": "2021-11-15T02:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7fe4e2d1-63ee-4f9c-8c05-972a5c528896", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T02:44:25.000Z" - }, - "end": { - "$date": "2021-11-15T02:46:45.000Z" - }, - "events": [ - { - "uuid": "9d526bcd-ea32-459f-80c7-a219c1c736a7", - "start": { - "$date": "2021-11-15T02:44:25.000Z" - }, - "end": { - "$date": "2021-11-15T02:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b094345e-d93d-49fa-82d7-7be084d12514", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T02:54:46.000Z" - }, - "end": { - "$date": "2021-11-15T03:33:38.000Z" - }, - "events": [ - { - "uuid": "05d920dd-7bf9-4202-8b2d-9b372c520252", - "start": { - "$date": "2021-11-15T02:54:46.000Z" - }, - "end": { - "$date": "2021-11-15T03:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f6ab6e3d-af5a-4a40-a29a-716865b2efa8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-15T03:06:21.000Z" - }, - "end": { - "$date": "2021-11-15T03:22:14.000Z" - }, - "events": [ - { - "uuid": "a8d3c160-9fa0-400c-976e-3a33e9c1679f", - "start": { - "$date": "2021-11-15T03:06:21.000Z" - }, - "end": { - "$date": "2021-11-15T03:22:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fb517c16-f217-4e15-a66a-10ea171e1a93", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-15T03:31:17.000Z" - }, - "end": { - "$date": "2021-11-15T05:26:47.000Z" - }, - "events": [ - { - "uuid": "a411b513-b29a-4301-8fdc-a1a467c0e900", - "start": { - "$date": "2021-11-15T03:31:17.000Z" - }, - "end": { - "$date": "2021-11-15T05:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a8132a1-630e-4674-a0c0-12edd65bbc94", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T03:44:28.000Z" - }, - "end": { - "$date": "2021-11-15T04:28:27.000Z" - }, - "events": [ - { - "uuid": "dfff5b8f-f7aa-46b6-93ce-06fbfecc2fb7", - "start": { - "$date": "2021-11-15T03:44:28.000Z" - }, - "end": { - "$date": "2021-11-15T04:28:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d2a96543-a700-4fb7-a4b1-c669eeaa5997", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-15T04:01:02.000Z" - }, - "end": { - "$date": "2021-11-15T04:33:48.000Z" - }, - "events": [ - { - "uuid": "0159325b-1cc6-4d96-9736-6c52cc20dd95", - "start": { - "$date": "2021-11-15T04:01:02.000Z" - }, - "end": { - "$date": "2021-11-15T04:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2cf4d4a4-31f8-4a8f-83bc-4e85cf13622f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-15T04:20:45.000Z" - }, - "end": { - "$date": "2021-11-15T07:20:07.000Z" - }, - "events": [ - { - "uuid": "bc3cd788-1850-41e6-850d-e34748f52e74", - "start": { - "$date": "2021-11-15T04:20:45.000Z" - }, - "end": { - "$date": "2021-11-15T07:20:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f4485ec6-68b4-47d7-87e8-83b6bd72722c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-15T04:25:04.000Z" - }, - "end": { - "$date": "2021-11-15T07:19:45.000Z" - }, - "events": [ - { - "uuid": "2d5c5457-fecd-4ff7-896d-7f57eac47070", - "start": { - "$date": "2021-11-15T04:25:04.000Z" - }, - "end": { - "$date": "2021-11-15T07:19:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4513393-cde3-4691-8a15-32729bd85dda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T04:37:40.000Z" - }, - "end": { - "$date": "2021-11-15T05:14:01.000Z" - }, - "events": [ - { - "uuid": "cdb02852-1a3b-460b-b6e8-2d66887594dd", - "start": { - "$date": "2021-11-15T04:37:40.000Z" - }, - "end": { - "$date": "2021-11-15T05:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e86b0b7c-b3c3-4148-84e4-672c441056fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-15T09:22:48.000Z" - }, - "end": { - "$date": "2021-11-15T09:23:18.000Z" - }, - "events": [ - { - "uuid": "b4dbf2f6-78e4-41c3-8a19-e667d8313927", - "start": { - "$date": "2021-11-15T09:22:48.000Z" - }, - "end": { - "$date": "2021-11-15T13:05:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb610e5e-a721-4717-bd74-559e53f9afb3", - "start": { - "$date": "2021-11-15T13:05:48.000Z" - }, - "end": { - "$date": "2021-11-15T13:26:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61c1523e-ea9b-401b-9fbc-3573bec1d04d", - "start": { - "$date": "2021-11-15T13:26:48.000Z" - }, - "end": { - "$date": "2021-11-15T09:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b403723a-7363-4c11-96d9-0ac316e85f82", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-15T04:42:42.000Z" - }, - "end": { - "$date": "2021-11-15T04:43:22.000Z" - }, - "events": [ - { - "uuid": "5cf40806-8e9d-48e4-b08d-c3bac62d1af3", - "start": { - "$date": "2021-11-15T04:42:42.000Z" - }, - "end": { - "$date": "2021-11-15T04:43:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bb91ca72-701f-4314-b4f7-2021f1f15ced", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T04:45:29.000Z" - }, - "end": { - "$date": "2021-11-15T04:48:10.000Z" - }, - "events": [ - { - "uuid": "36357efa-e22d-4cd4-914d-f90d3bcb1eb8", - "start": { - "$date": "2021-11-15T04:45:29.000Z" - }, - "end": { - "$date": "2021-11-15T04:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d672056-3094-464f-bce6-8e24c4e7f2e2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T04:56:41.000Z" - }, - "end": { - "$date": "2021-11-15T05:48:32.000Z" - }, - "events": [ - { - "uuid": "4d633a16-8075-4ff9-8547-f4c1b8999c58", - "start": { - "$date": "2021-11-15T04:56:41.000Z" - }, - "end": { - "$date": "2021-11-15T05:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "244c1d17-6975-4622-95bd-f0882970b726", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-15T05:04:04.000Z" - }, - "end": { - "$date": "2021-11-15T05:37:14.000Z" - }, - "events": [ - { - "uuid": "9d70593c-665d-4c45-bfb8-0edecd5cfc52", - "start": { - "$date": "2021-11-15T05:04:04.000Z" - }, - "end": { - "$date": "2021-11-15T05:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f3ae808-f66b-4fde-bd8e-0771360721b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T05:27:03.000Z" - }, - "end": { - "$date": "2021-11-15T05:34:30.000Z" - }, - "events": [ - { - "uuid": "1307794f-12e7-4c39-9da9-3c4a03927c36", - "start": { - "$date": "2021-11-15T05:27:03.000Z" - }, - "end": { - "$date": "2021-11-15T05:34:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4dc60a79-a30f-43a6-a3f9-4887487da655", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T05:42:06.000Z" - }, - "end": { - "$date": "2021-11-15T06:20:36.000Z" - }, - "events": [ - { - "uuid": "38ad4182-0193-46e4-954e-34744a9b8b72", - "start": { - "$date": "2021-11-15T05:42:06.000Z" - }, - "end": { - "$date": "2021-11-15T06:20:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85c314b5-8c0a-4033-a531-23cda952ccd2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-15T05:43:45.000Z" - }, - "end": { - "$date": "2021-11-15T05:58:45.000Z" - }, - "events": [ - { - "uuid": "0eb5dd94-3b93-4e00-a493-0a495ef96112", - "start": { - "$date": "2021-11-15T05:43:45.000Z" - }, - "end": { - "$date": "2021-11-15T05:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37a249c3-7ca7-4ec5-ab91-c9a2d3a2c7ca", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-15T06:01:41.000Z" - }, - "end": { - "$date": "2021-11-15T06:32:21.000Z" - }, - "events": [ - { - "uuid": "edece69a-1c59-4b98-8b8f-f01c78e69df7", - "start": { - "$date": "2021-11-15T06:01:41.000Z" - }, - "end": { - "$date": "2021-11-15T06:32:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "79158d53-4834-448a-9113-38515e5f1bc6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T06:34:05.000Z" - }, - "end": { - "$date": "2021-11-15T07:20:38.000Z" - }, - "events": [ - { - "uuid": "6864a310-8217-4276-a7f6-ef6f910297b1", - "start": { - "$date": "2021-11-15T06:34:05.000Z" - }, - "end": { - "$date": "2021-11-15T07:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cce7c630-9386-4488-b826-4ff2aae12fe2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-15T06:34:52.000Z" - }, - "end": { - "$date": "2021-11-15T06:37:17.000Z" - }, - "events": [ - { - "uuid": "c1197809-a55c-4564-9713-f2502e4ba720", - "start": { - "$date": "2021-11-15T06:34:52.000Z" - }, - "end": { - "$date": "2021-11-15T06:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cf974f65-f16c-47d8-bfd2-bf039fedefcb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-15T06:37:32.000Z" - }, - "end": { - "$date": "2021-11-15T07:19:59.000Z" - }, - "events": [ - { - "uuid": "4003c99c-5525-4f84-9a06-a2f74e164eb3", - "start": { - "$date": "2021-11-15T06:37:32.000Z" - }, - "end": { - "$date": "2021-11-15T07:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0ec4aecf-17bf-4915-9305-156c6f9c43aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T07:36:13.000Z" - }, - "end": { - "$date": "2021-11-15T07:44:39.000Z" - }, - "events": [ - { - "uuid": "254167c5-128d-44b6-940a-120a49571d3c", - "start": { - "$date": "2021-11-15T07:36:13.000Z" - }, - "end": { - "$date": "2021-11-15T07:44:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31c89687-8d69-405e-b7ac-df4df0ce1780", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T07:49:56.000Z" - }, - "end": { - "$date": "2021-11-15T08:22:31.000Z" - }, - "events": [ - { - "uuid": "f477a70e-db39-40fd-91b5-c196521bef3d", - "start": { - "$date": "2021-11-15T07:49:56.000Z" - }, - "end": { - "$date": "2021-11-15T08:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e6f8408d-097c-469f-8d0e-fbea28d68270", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T08:28:11.000Z" - }, - "end": { - "$date": "2021-11-15T08:35:33.000Z" - }, - "events": [ - { - "uuid": "5b27fb06-d0b8-44e5-b155-1d8451b90b54", - "start": { - "$date": "2021-11-15T08:28:11.000Z" - }, - "end": { - "$date": "2021-11-15T08:35:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bf36cbdd-fd8b-4806-baa6-090c2c6b1222", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T08:42:37.000Z" - }, - "end": { - "$date": "2021-11-15T09:09:27.000Z" - }, - "events": [ - { - "uuid": "ff59e217-1bde-43ad-99de-0cb702d3c863", - "start": { - "$date": "2021-11-15T08:42:37.000Z" - }, - "end": { - "$date": "2021-11-15T09:01:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c66a9588-8b6c-469d-9646-083cd0fdbafd", - "start": { - "$date": "2021-11-15T09:01:37.000Z" - }, - "end": { - "$date": "2021-11-15T09:03:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "62383949-9e04-4076-86f8-f1950e9f9831", - "start": { - "$date": "2021-11-15T09:03:37.000Z" - }, - "end": { - "$date": "2021-11-15T09:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c8ca0d3b-a9e3-45a7-9005-9cb770682f13", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T16:21:42.000Z" - }, - "end": { - "$date": "2021-11-15T18:56:25.000Z" - }, - "events": [ - { - "uuid": "6f5bb60f-5401-4267-8806-845d3fcd55fb", - "start": { - "$date": "2021-11-15T16:21:42.000Z" - }, - "end": { - "$date": "2021-11-15T18:56:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "eb898ae9-fc9a-4317-8980-787e13eb0a78", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-15T16:23:42.000Z" - }, - "end": { - "$date": "2021-11-15T16:48:15.000Z" - }, - "events": [ - { - "uuid": "05a7cc17-0955-4c8a-9bd8-12f1ed97fdfa", - "start": { - "$date": "2021-11-15T16:23:42.000Z" - }, - "end": { - "$date": "2021-11-15T16:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "6a43d74a-27d1-402a-b584-f5e459247b24", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-15T16:52:42.000Z" - }, - "end": { - "$date": "2021-11-15T17:11:29.000Z" - }, - "events": [ - { - "uuid": "5c677967-fe24-49c3-8ec1-edcb50feead6", - "start": { - "$date": "2021-11-15T16:52:42.000Z" - }, - "end": { - "$date": "2021-11-15T17:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "896b70b4-05f4-4168-a0e3-c4c7aec9dede", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-15T17:20:17.000Z" - }, - "end": { - "$date": "2021-11-15T17:29:05.000Z" - }, - "events": [ - { - "uuid": "e31ef872-5240-47d4-908e-c4ee480a507b", - "start": { - "$date": "2021-11-15T17:20:17.000Z" - }, - "end": { - "$date": "2021-11-15T17:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "844ad871-5805-441b-9db3-097df763c76f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-15T18:29:56.000Z" - }, - "end": { - "$date": "2021-11-15T19:57:07.000Z" - }, - "events": [ - { - "uuid": "f6fce739-e5c5-4803-b002-2049976322bf", - "start": { - "$date": "2021-11-15T18:29:56.000Z" - }, - "end": { - "$date": "2021-11-15T19:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e8c11af1-bc9f-4f18-a3b6-cc000df3e756", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T19:01:27.000Z" - }, - "end": { - "$date": "2021-11-15T19:14:27.000Z" - }, - "events": [ - { - "uuid": "482e3f5d-9972-4fd5-92e2-b1b880fb4b99", - "start": { - "$date": "2021-11-15T19:01:27.000Z" - }, - "end": { - "$date": "2021-11-15T19:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "86c65c54-17ad-473f-a650-b003384cfe46", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T19:14:33.000Z" - }, - "end": { - "$date": "2021-11-15T20:06:36.000Z" - }, - "events": [ - { - "uuid": "a25e8ef5-e05b-40de-8306-9827da585e0b", - "start": { - "$date": "2021-11-15T19:14:33.000Z" - }, - "end": { - "$date": "2021-11-15T20:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "108fd57a-a7b5-448b-a077-42453937de29", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-15T19:23:00.000Z" - }, - "end": { - "$date": "2021-11-15T21:30:04.000Z" - }, - "events": [ - { - "uuid": "4dd460ff-b2f6-4ea8-aba5-6fe127c96782", - "start": { - "$date": "2021-11-15T19:23:00.000Z" - }, - "end": { - "$date": "2021-11-15T21:30:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cc7e326a-bcaa-432b-b3b0-07e18356eb54", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-15T19:24:41.000Z" - }, - "end": { - "$date": "2021-11-15T21:29:44.000Z" - }, - "events": [ - { - "uuid": "fbc0c9ce-00e8-43ac-8e3c-bbc14cb9f39b", - "start": { - "$date": "2021-11-15T19:24:41.000Z" - }, - "end": { - "$date": "2021-11-15T21:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b35e2044-0b69-499b-b7f7-aa218e253994", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T19:57:20.000Z" - }, - "end": { - "$date": "2021-11-15T20:11:35.000Z" - }, - "events": [ - { - "uuid": "63375414-9957-4cb0-8bb4-90b9650bf4f3", - "start": { - "$date": "2021-11-15T19:57:20.000Z" - }, - "end": { - "$date": "2021-11-15T20:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0fe2b3a9-0760-429c-babe-4cbcfa63962a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T20:12:08.000Z" - }, - "end": { - "$date": "2021-11-15T20:56:45.000Z" - }, - "events": [ - { - "uuid": "0feaa13d-0e08-407c-bcc0-9ed7b8f5f4aa", - "start": { - "$date": "2021-11-15T20:12:08.000Z" - }, - "end": { - "$date": "2021-11-15T20:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5a8d80b0-cce7-4af4-a721-2cfa3577e0fa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-15T20:17:14.000Z" - }, - "end": { - "$date": "2021-11-15T23:47:15.000Z" - }, - "events": [ - { - "uuid": "c539a215-2212-4b9b-835d-8fd47367a584", - "start": { - "$date": "2021-11-15T20:17:14.000Z" - }, - "end": { - "$date": "2021-11-15T23:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8e267456-e25a-40f6-8fd7-0699ed8704ef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T21:11:35.000Z" - }, - "end": { - "$date": "2021-11-15T21:13:00.000Z" - }, - "events": [ - { - "uuid": "fa1af31c-b797-4e14-a023-9b4c89380aba", - "start": { - "$date": "2021-11-15T21:11:35.000Z" - }, - "end": { - "$date": "2021-11-15T21:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "05ca2689-fdf6-490d-90c1-eea5341874e6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T21:18:46.000Z" - }, - "end": { - "$date": "2021-11-15T22:18:20.000Z" - }, - "events": [ - { - "uuid": "8c5d4a8a-3818-4905-9c8a-c6ab1781b112", - "start": { - "$date": "2021-11-15T21:18:46.000Z" - }, - "end": { - "$date": "2021-11-15T22:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c353536b-4b43-4a1c-a3fd-bf0ff466350b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-15T21:55:24.000Z" - }, - "end": { - "$date": "2021-11-15T22:09:35.000Z" - }, - "events": [ - { - "uuid": "d5ef86e0-cf36-4910-92fe-450a1175f537", - "start": { - "$date": "2021-11-15T21:55:24.000Z" - }, - "end": { - "$date": "2021-11-15T22:04:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6921f64e-e11b-46fe-a464-3cc9c3bd50e0", - "start": { - "$date": "2021-11-15T22:04:24.000Z" - }, - "end": { - "$date": "2021-11-15T22:09:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dc1854bd-f943-40ac-a789-90900cd40b5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T22:15:25.000Z" - }, - "end": { - "$date": "2021-11-15T22:18:26.000Z" - }, - "events": [ - { - "uuid": "ab28ed9b-0fa9-4e30-a023-b88e7481ddb1", - "start": { - "$date": "2021-11-15T22:15:25.000Z" - }, - "end": { - "$date": "2021-11-15T22:18:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f22b8ca4-9d1c-459f-98d9-a6aa634e4003", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T22:20:41.000Z" - }, - "end": { - "$date": "2021-11-15T23:09:24.000Z" - }, - "events": [ - { - "uuid": "9184cccb-f5fb-443b-a562-fe5bcf7c4c44", - "start": { - "$date": "2021-11-15T22:20:41.000Z" - }, - "end": { - "$date": "2021-11-15T23:09:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "9212c9b4-62f0-44a9-a720-5f2d439a6a52", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T22:23:16.000Z" - }, - "end": { - "$date": "2021-11-15T22:26:21.000Z" - }, - "events": [ - { - "uuid": "03061561-f637-4eee-aff6-defdf0df7070", - "start": { - "$date": "2021-11-15T22:23:16.000Z" - }, - "end": { - "$date": "2021-11-15T22:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "682a0cb3-1a92-4db6-a152-7f756cc30228", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T22:26:26.000Z" - }, - "end": { - "$date": "2021-11-15T22:27:46.000Z" - }, - "events": [ - { - "uuid": "8ceb80f6-8d35-4281-a4d3-164ea24a38fa", - "start": { - "$date": "2021-11-15T22:26:26.000Z" - }, - "end": { - "$date": "2021-11-15T22:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "3e334f58-098b-46db-8013-cbcc5c638b8b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-15T22:38:48.000Z" - }, - "end": { - "$date": "2021-11-16T01:17:10.000Z" - }, - "events": [ - { - "uuid": "6da31b0f-a280-4038-83e2-ad1b6777fee2", - "start": { - "$date": "2021-11-15T22:38:48.000Z" - }, - "end": { - "$date": "2021-11-16T01:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "4de9bbe5-0de1-4384-9005-1f85c8a52f99", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T23:09:38.000Z" - }, - "end": { - "$date": "2021-11-15T23:36:36.000Z" - }, - "events": [ - { - "uuid": "2fd34c41-e1ba-4ba3-a9f7-522f3170bc7a", - "start": { - "$date": "2021-11-15T23:09:38.000Z" - }, - "end": { - "$date": "2021-11-15T23:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "fb3aac15-4bf3-472b-92d0-968653c16f54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-15T23:20:09.000Z" - }, - "end": { - "$date": "2021-11-15T23:21:11.000Z" - }, - "events": [ - { - "uuid": "0e9c5bf3-2734-48e5-8fa2-42bb680df2d3", - "start": { - "$date": "2021-11-15T23:20:09.000Z" - }, - "end": { - "$date": "2021-11-15T23:21:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d7630caa-d517-42d0-a60e-bb97f96c4bcf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-15T23:48:36.000Z" - }, - "end": { - "$date": "2021-11-16T01:18:16.000Z" - }, - "events": [ - { - "uuid": "725e8ea7-0fee-4528-a032-e9fab2b7aebe", - "start": { - "$date": "2021-11-15T23:48:36.000Z" - }, - "end": { - "$date": "2021-11-15T23:58:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3e149bf6-88b0-40cb-a16a-87e2710d56fa", - "start": { - "$date": "2021-11-15T23:58:36.000Z" - }, - "end": { - "$date": "2021-11-16T00:02:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "996d6637-0127-4d3a-b772-ea05be9cc118", - "start": { - "$date": "2021-11-16T00:02:36.000Z" - }, - "end": { - "$date": "2021-11-16T01:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f7253f96-9355-46ad-a4e4-d211982b32c5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-16T00:50:02.000Z" - }, - "end": { - "$date": "2021-11-16T01:16:16.000Z" - }, - "events": [ - { - "uuid": "c67cbf65-e2f0-4ecf-930d-c9645f281ba7", - "start": { - "$date": "2021-11-16T00:50:02.000Z" - }, - "end": { - "$date": "2021-11-16T01:16:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0d137984-3209-4e3b-aeb7-6c9a0d6d144f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-16T01:01:01.000Z" - }, - "end": { - "$date": "2021-11-16T05:02:06.000Z" - }, - "events": [ - { - "uuid": "1f231028-d1fb-4184-a9fb-44b0faa106e1", - "start": { - "$date": "2021-11-16T01:01:01.000Z" - }, - "end": { - "$date": "2021-11-16T01:38:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55d5170e-97ab-422e-b51c-92de35ec5b46", - "start": { - "$date": "2021-11-16T01:38:01.000Z" - }, - "end": { - "$date": "2021-11-16T01:42:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42a66c6c-b100-4d48-bc65-52eeb63be0a9", - "start": { - "$date": "2021-11-16T01:42:01.000Z" - }, - "end": { - "$date": "2021-11-16T05:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e9e44a12-f2d5-41dc-8011-cd7e030c111f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-16T01:04:51.000Z" - }, - "end": { - "$date": "2021-11-16T03:09:49.000Z" - }, - "events": [ - { - "uuid": "77112356-b507-4da6-855d-dd67ec7a0081", - "start": { - "$date": "2021-11-16T01:04:51.000Z" - }, - "end": { - "$date": "2021-11-16T03:09:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3ffad871-f239-4837-b9c5-0cd51ae8f0aa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-16T02:37:25.000Z" - }, - "end": { - "$date": "2021-11-16T02:40:40.000Z" - }, - "events": [ - { - "uuid": "4c57dbfa-8572-40c1-bfed-8ab0ffa10d7d", - "start": { - "$date": "2021-11-16T02:37:25.000Z" - }, - "end": { - "$date": "2021-11-16T02:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4c461e85-6524-4da3-8ade-dd2caee7f7ce", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-16T02:41:20.000Z" - }, - "end": { - "$date": "2021-11-16T04:08:05.000Z" - }, - "events": [ - { - "uuid": "42cb8188-98c7-44fc-8b96-4de2672f4e0b", - "start": { - "$date": "2021-11-16T02:41:20.000Z" - }, - "end": { - "$date": "2021-11-16T04:08:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "66f4aaf1-6a91-449e-baaf-053a1c489ff7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-16T02:49:21.000Z" - }, - "end": { - "$date": "2021-11-16T04:16:29.000Z" - }, - "events": [ - { - "uuid": "deae3c0e-d403-462a-85b3-395a16418863", - "start": { - "$date": "2021-11-16T02:49:21.000Z" - }, - "end": { - "$date": "2021-11-16T04:16:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bff0a11d-0d16-4d16-90a2-06892addea78", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-16T03:45:19.000Z" - }, - "end": { - "$date": "2021-11-16T06:24:12.000Z" - }, - "events": [ - { - "uuid": "d25697ef-f99d-4cad-b6cc-b9b6ac69c932", - "start": { - "$date": "2021-11-16T03:45:19.000Z" - }, - "end": { - "$date": "2021-11-16T06:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "118eb4d0-91de-484a-8196-e2e2e881526f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-16T03:55:07.000Z" - }, - "end": { - "$date": "2021-11-16T06:23:05.000Z" - }, - "events": [ - { - "uuid": "0f7e294c-3edb-4ce7-8466-d94ede707797", - "start": { - "$date": "2021-11-16T03:55:07.000Z" - }, - "end": { - "$date": "2021-11-16T06:23:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "75bfcd1e-8d87-4d85-8d1f-b829a2420127", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-16T03:57:44.000Z" - }, - "end": { - "$date": "2021-11-16T05:58:55.000Z" - }, - "events": [ - { - "uuid": "0b1cd5c9-d9b4-4948-ad2b-86c783bd3d85", - "start": { - "$date": "2021-11-16T03:57:44.000Z" - }, - "end": { - "$date": "2021-11-16T05:58:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8e2be2ad-e99e-4b86-8ecb-7462cc3c5ad4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-16T04:03:52.000Z" - }, - "end": { - "$date": "2021-11-16T06:22:56.000Z" - }, - "events": [ - { - "uuid": "71fd3115-bdbd-4fb0-b578-dd1a5ed4a6aa", - "start": { - "$date": "2021-11-16T04:03:52.000Z" - }, - "end": { - "$date": "2021-11-16T06:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "41188ad9-7834-4b53-81a9-7cbee31604a0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-16T04:08:43.000Z" - }, - "end": { - "$date": "2021-11-16T05:01:59.000Z" - }, - "events": [ - { - "uuid": "5f3e642c-bdcc-483e-9f10-775cbc1e78cb", - "start": { - "$date": "2021-11-16T04:08:43.000Z" - }, - "end": { - "$date": "2021-11-16T05:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a446214e-7de2-47d2-b9ab-511f0eaf9c8c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-16T04:16:43.000Z" - }, - "end": { - "$date": "2021-11-16T06:23:18.000Z" - }, - "events": [ - { - "uuid": "cad343bb-2a59-495f-9c9f-d9f50825fc5d", - "start": { - "$date": "2021-11-16T04:16:43.000Z" - }, - "end": { - "$date": "2021-11-16T06:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "eb9dc5fd-d268-4133-b9ad-c27d64fda904", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-16T05:02:04.000Z" - }, - "end": { - "$date": "2021-11-16T06:22:59.000Z" - }, - "events": [ - { - "uuid": "65d9015f-cd21-4685-8bc4-893d9471567b", - "start": { - "$date": "2021-11-16T05:02:04.000Z" - }, - "end": { - "$date": "2021-11-16T06:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c011ebcf-39a6-4712-ab18-b2eda04b03b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-16T05:20:22.000Z" - }, - "end": { - "$date": "2021-11-16T05:27:07.000Z" - }, - "events": [ - { - "uuid": "1615803b-53c5-4956-bce5-07c2bca85f97", - "start": { - "$date": "2021-11-16T05:20:22.000Z" - }, - "end": { - "$date": "2021-11-16T05:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bfce932e-ec25-4cab-a390-8be95daa2682", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-16T05:29:04.000Z" - }, - "end": { - "$date": "2021-11-16T06:24:48.000Z" - }, - "events": [ - { - "uuid": "e3a32bef-8f54-4ce4-a43e-073ea9856d85", - "start": { - "$date": "2021-11-16T05:29:04.000Z" - }, - "end": { - "$date": "2021-11-16T06:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a2f66708-41c0-4526-999a-d67f72cd5592", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-16T06:08:09.000Z" - }, - "end": { - "$date": "2021-11-16T07:21:52.000Z" - }, - "events": [ - { - "uuid": "8afc236d-fb2e-461c-b6d5-4afd633fc9db", - "start": { - "$date": "2021-11-16T06:08:09.000Z" - }, - "end": { - "$date": "2021-11-16T06:26:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb13f973-d95a-4e6b-8ae0-2bab12f00e5e", - "start": { - "$date": "2021-11-16T06:26:09.000Z" - }, - "end": { - "$date": "2021-11-16T06:31:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9e8fe347-ca5c-44b7-ad68-9e15949ce4db", - "start": { - "$date": "2021-11-16T06:31:09.000Z" - }, - "end": { - "$date": "2021-11-16T06:41:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81cddbd7-4a75-4af1-9d6a-4dbfa47df2ba", - "start": { - "$date": "2021-11-16T06:41:09.000Z" - }, - "end": { - "$date": "2021-11-16T07:00:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "59415814-194d-4f6f-a8e8-f71a496e2396", - "start": { - "$date": "2021-11-16T07:00:09.000Z" - }, - "end": { - "$date": "2021-11-16T07:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d6178f3b-c77d-47c5-bd46-fccbadef3f48", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-16T06:24:47.000Z" - }, - "end": { - "$date": "2021-11-16T08:47:17.000Z" - }, - "events": [ - { - "uuid": "90a94b03-05f0-448f-b04f-4edaa04e50c3", - "start": { - "$date": "2021-11-16T06:24:47.000Z" - }, - "end": { - "$date": "2021-11-16T08:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b605333f-c75f-433e-978c-b5f36d60a5cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-16T07:18:09.000Z" - }, - "end": { - "$date": "2021-11-16T08:47:06.000Z" - }, - "events": [ - { - "uuid": "9b2c7f72-1f8d-459f-af1e-27709e809750", - "start": { - "$date": "2021-11-16T07:18:09.000Z" - }, - "end": { - "$date": "2021-11-16T08:47:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c7e20d2-af78-4757-909f-7119528f0e87", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-16T16:12:29.000Z" - }, - "end": { - "$date": "2021-11-16T19:34:19.000Z" - }, - "events": [ - { - "uuid": "1cbd9ffd-3636-4228-8dbe-9f6e31f50732", - "start": { - "$date": "2021-11-16T16:12:29.000Z" - }, - "end": { - "$date": "2021-11-16T19:20:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1aa9be7-3952-43a9-b17a-0323883cd931", - "start": { - "$date": "2021-11-16T19:20:29.000Z" - }, - "end": { - "$date": "2021-11-16T19:32:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90a445cf-bf69-46c3-afa6-5c4e54972fbe", - "start": { - "$date": "2021-11-16T19:32:29.000Z" - }, - "end": { - "$date": "2021-11-16T19:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4ac680c8-1ba6-4f4c-8cd0-5867efb802e3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-16T17:10:28.000Z" - }, - "end": { - "$date": "2021-11-16T19:42:36.000Z" - }, - "events": [ - { - "uuid": "c5b0166c-f696-42ee-903e-03eefde09e09", - "start": { - "$date": "2021-11-16T17:10:28.000Z" - }, - "end": { - "$date": "2021-11-16T19:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "7af1c682-bc0d-4e78-816f-0f91d7a81a32", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-16T19:21:24.000Z" - }, - "end": { - "$date": "2021-11-16T19:44:02.000Z" - }, - "events": [ - { - "uuid": "5278d8df-e2e9-4db4-870a-bed7e95e063a", - "start": { - "$date": "2021-11-16T19:21:24.000Z" - }, - "end": { - "$date": "2021-11-16T19:44:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "231daf52-17ce-42ac-8c1d-0875a013dc38", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-16T22:17:14.000Z" - }, - "end": { - "$date": "2021-11-17T00:55:52.000Z" - }, - "events": [ - { - "uuid": "d98d79e0-9d41-4bf6-9049-d607259091a1", - "start": { - "$date": "2021-11-16T22:17:14.000Z" - }, - "end": { - "$date": "2021-11-17T00:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed0d2149-f648-4df7-8b48-7c43a5b43b68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-16T22:49:56.000Z" - }, - "end": { - "$date": "2021-11-16T23:59:54.000Z" - }, - "events": [ - { - "uuid": "d58c5cdd-de8c-4187-bbdb-ef14c6569195", - "start": { - "$date": "2021-11-16T22:49:56.000Z" - }, - "end": { - "$date": "2021-11-16T23:59:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "499f41d2-2aed-4d7f-9b25-0564fbc47f11", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-16T22:54:56.000Z" - }, - "end": { - "$date": "2021-11-17T00:40:38.000Z" - }, - "events": [ - { - "uuid": "0aeaed99-e970-4a92-a83b-d7cb82a4f63d", - "start": { - "$date": "2021-11-16T22:54:56.000Z" - }, - "end": { - "$date": "2021-11-17T00:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "88e34939-348b-46a5-b923-c250436c753d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-17T00:49:16.000Z" - }, - "end": { - "$date": "2021-11-17T01:15:17.000Z" - }, - "events": [ - { - "uuid": "aef274fb-6121-4234-afcf-9d3669731813", - "start": { - "$date": "2021-11-17T00:49:16.000Z" - }, - "end": { - "$date": "2021-11-17T01:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3364eba2-a58a-4fcf-a2b2-db49bab4eadb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-17T01:01:32.000Z" - }, - "end": { - "$date": "2021-11-17T01:17:44.000Z" - }, - "events": [ - { - "uuid": "6f11f088-cdaa-46ee-aa92-13e61d1b27e2", - "start": { - "$date": "2021-11-17T01:01:32.000Z" - }, - "end": { - "$date": "2021-11-17T01:17:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7d5fb676-f995-4b03-81fa-1eb3fa604eaa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-17T01:29:45.000Z" - }, - "end": { - "$date": "2021-11-17T02:36:58.000Z" - }, - "events": [ - { - "uuid": "4290d373-5e7f-4bca-9914-ceb27e7761db", - "start": { - "$date": "2021-11-17T01:29:45.000Z" - }, - "end": { - "$date": "2021-11-17T02:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "17e780e1-91b5-44a5-8521-7ef0286aa651", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-17T01:39:25.000Z" - }, - "end": { - "$date": "2021-11-17T02:22:05.000Z" - }, - "events": [ - { - "uuid": "9554fb8c-28b1-4646-b42c-ba82d267e569", - "start": { - "$date": "2021-11-17T01:39:25.000Z" - }, - "end": { - "$date": "2021-11-17T02:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3fa6e43a-0c89-4fb3-9937-ba35267867df", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-17T01:52:45.000Z" - }, - "end": { - "$date": "2021-11-17T02:33:17.000Z" - }, - "events": [ - { - "uuid": "3cfdfad1-860d-4326-9c12-6c6059c7fc4c", - "start": { - "$date": "2021-11-17T01:52:45.000Z" - }, - "end": { - "$date": "2021-11-17T02:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4a77d5d3-7b58-4e61-97ed-88f5707da5a6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-17T02:25:32.000Z" - }, - "end": { - "$date": "2021-11-17T07:34:01.000Z" - }, - "events": [ - { - "uuid": "36aac827-b773-41b8-8fe7-1a81ffb6880b", - "start": { - "$date": "2021-11-17T02:25:32.000Z" - }, - "end": { - "$date": "2021-11-17T07:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4e0e34e-1af6-4fb9-bda8-57196e4fcdc0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-17T02:27:22.000Z" - }, - "end": { - "$date": "2021-11-17T03:53:17.000Z" - }, - "events": [ - { - "uuid": "acefc356-1662-42e3-b642-a8453743756f", - "start": { - "$date": "2021-11-17T02:27:22.000Z" - }, - "end": { - "$date": "2021-11-17T03:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01f3482a-a62a-4f01-9efa-e74ab6bc1922", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-17T02:41:18.000Z" - }, - "end": { - "$date": "2021-11-17T03:30:26.000Z" - }, - "events": [ - { - "uuid": "8ed6eab5-1cd9-490b-9d0e-56c8d8cacaf1", - "start": { - "$date": "2021-11-17T02:41:18.000Z" - }, - "end": { - "$date": "2021-11-17T03:30:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f4d4f2cd-29f4-4292-baca-2704345bf6bf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T02:50:50.000Z" - }, - "end": { - "$date": "2021-11-17T03:50:09.000Z" - }, - "events": [ - { - "uuid": "96412efe-528f-4b3f-8a67-5794b24aa93c", - "start": { - "$date": "2021-11-17T02:50:50.000Z" - }, - "end": { - "$date": "2021-11-17T03:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df5f3183-cd62-46c2-a0b3-2b16111e5dbb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-17T03:31:31.000Z" - }, - "end": { - "$date": "2021-11-17T03:32:36.000Z" - }, - "events": [ - { - "uuid": "3cfd4215-52e0-4a1b-b4e6-96ad361e065c", - "start": { - "$date": "2021-11-17T03:31:31.000Z" - }, - "end": { - "$date": "2021-11-17T03:32:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b8bfd489-f1f9-4734-9f64-f52b080991e9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-17T03:33:16.000Z" - }, - "end": { - "$date": "2021-11-17T07:34:08.000Z" - }, - "events": [ - { - "uuid": "0ce6c4c1-f447-4c3d-99d3-1e50923abe55", - "start": { - "$date": "2021-11-17T03:33:16.000Z" - }, - "end": { - "$date": "2021-11-17T07:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "26ce71e3-3e2c-417a-97a5-120a9de3bb65", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-17T03:54:05.000Z" - }, - "end": { - "$date": "2021-11-17T07:01:33.000Z" - }, - "events": [ - { - "uuid": "fc205fee-8ee5-4c5a-b9cf-9e1a05c33d5c", - "start": { - "$date": "2021-11-17T03:54:05.000Z" - }, - "end": { - "$date": "2021-11-17T07:01:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9942aa78-62f7-4712-a02b-8bb6a7000ab9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T04:26:09.000Z" - }, - "end": { - "$date": "2021-11-17T05:50:09.000Z" - }, - "events": [ - { - "uuid": "358c1ae2-80db-4d65-b0af-f60ec3154ff0", - "start": { - "$date": "2021-11-17T04:26:09.000Z" - }, - "end": { - "$date": "2021-11-17T05:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a44c04e3-9d7d-42ff-b403-7bb05cd14344", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-17T05:10:16.000Z" - }, - "end": { - "$date": "2021-11-17T05:33:06.000Z" - }, - "events": [ - { - "uuid": "071e7d35-1e5d-4d5a-8ad3-66e56fd25f79", - "start": { - "$date": "2021-11-17T05:10:16.000Z" - }, - "end": { - "$date": "2021-11-17T05:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1beb878f-c2a1-4982-a65c-e444ce7201a7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-17T05:41:56.000Z" - }, - "end": { - "$date": "2021-11-17T06:12:37.000Z" - }, - "events": [ - { - "uuid": "a92f34de-0d40-4fff-a81f-641641f1b8f7", - "start": { - "$date": "2021-11-17T05:41:56.000Z" - }, - "end": { - "$date": "2021-11-17T06:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "35b1bd47-3ab0-4346-a59b-12bf1202a082", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-17T05:34:23.000Z" - }, - "end": { - "$date": "2021-11-17T05:48:15.000Z" - }, - "events": [ - { - "uuid": "56c23736-7a81-4f0c-8b96-0c95d8ec6fa6", - "start": { - "$date": "2021-11-17T05:34:23.000Z" - }, - "end": { - "$date": "2021-11-17T05:48:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2b28b885-6f7d-4740-8516-6935ce8a31ea", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-17T05:49:40.000Z" - }, - "end": { - "$date": "2021-11-17T07:01:38.000Z" - }, - "events": [ - { - "uuid": "ca31923c-a02e-4282-a296-4f2365e44e1e", - "start": { - "$date": "2021-11-17T05:49:40.000Z" - }, - "end": { - "$date": "2021-11-17T07:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cee13062-3e06-4cb8-a99a-f8c691ec51ac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-17T06:07:23.000Z" - }, - "end": { - "$date": "2021-11-17T07:01:23.000Z" - }, - "events": [ - { - "uuid": "16219c77-2dc6-4a17-9fe4-48bbe0421a5f", - "start": { - "$date": "2021-11-17T06:07:23.000Z" - }, - "end": { - "$date": "2021-11-17T07:01:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25c0559a-2cbe-41bd-a77c-60e94b2b4275", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-17T06:20:38.000Z" - }, - "end": { - "$date": "2021-11-17T06:47:49.000Z" - }, - "events": [ - { - "uuid": "772d099d-4e71-4947-97a3-c694cf0bea6c", - "start": { - "$date": "2021-11-17T06:20:38.000Z" - }, - "end": { - "$date": "2021-11-17T06:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "1889b853-c73a-4a62-95ab-8024203406be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-17T07:01:33.000Z" - }, - "end": { - "$date": "2021-11-17T07:26:53.000Z" - }, - "events": [ - { - "uuid": "24e55f03-ac3e-4ccc-8a61-b5a55ccfb842", - "start": { - "$date": "2021-11-17T07:01:33.000Z" - }, - "end": { - "$date": "2021-11-17T07:26:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f3a946cf-9fc6-450c-b4dc-872dac6d2d96", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-17T07:02:03.000Z" - }, - "end": { - "$date": "2021-11-17T07:27:05.000Z" - }, - "events": [ - { - "uuid": "b0c206e3-01ea-4a9d-a36d-f5bba9b656dc", - "start": { - "$date": "2021-11-17T07:02:03.000Z" - }, - "end": { - "$date": "2021-11-17T07:27:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bdb247b3-6c77-48c6-8dbd-2469d78aa3cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-17T07:30:03.000Z" - }, - "end": { - "$date": "2021-11-17T07:39:44.000Z" - }, - "events": [ - { - "uuid": "a82c63d8-8afd-4cd4-bb9d-71f112377e2d", - "start": { - "$date": "2021-11-17T07:30:03.000Z" - }, - "end": { - "$date": "2021-11-17T07:39:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4b8b3e14-745b-4d92-b9e2-bdf7993b71a1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-17T07:34:48.000Z" - }, - "end": { - "$date": "2021-11-17T08:14:28.000Z" - }, - "events": [ - { - "uuid": "ff67359a-2ebd-4645-b07f-480f57bb782d", - "start": { - "$date": "2021-11-17T07:34:48.000Z" - }, - "end": { - "$date": "2021-11-17T08:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "71e040e7-4a1d-4e52-9dbb-dbdbd588adba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-17T07:35:31.000Z" - }, - "end": { - "$date": "2021-11-17T08:13:44.000Z" - }, - "events": [ - { - "uuid": "3b22ec98-1469-43e4-8a9a-05bb612d4ad3", - "start": { - "$date": "2021-11-17T07:35:31.000Z" - }, - "end": { - "$date": "2021-11-17T08:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0452fc41-6591-4018-a901-dacd5d0644f9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T15:35:34.000Z" - }, - "end": { - "$date": "2021-11-17T15:36:39.000Z" - }, - "events": [ - { - "uuid": "065faf3e-ebda-43b4-8f0d-c98b7436d173", - "start": { - "$date": "2021-11-17T15:35:34.000Z" - }, - "end": { - "$date": "2021-11-17T15:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "13f3e4c3-1046-4db8-a8f8-18d05eae7e5a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T16:22:32.000Z" - }, - "end": { - "$date": "2021-11-17T16:28:28.000Z" - }, - "events": [ - { - "uuid": "1462a33f-d6cd-4db0-9053-a9d51b954f7d", - "start": { - "$date": "2021-11-17T16:22:32.000Z" - }, - "end": { - "$date": "2021-11-17T16:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "beaed625-a184-4d87-adf8-844aab6a1dc3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T16:28:39.000Z" - }, - "end": { - "$date": "2021-11-17T16:32:14.000Z" - }, - "events": [ - { - "uuid": "3b1c4f89-1107-43de-b6c9-2afcb40e32ec", - "start": { - "$date": "2021-11-17T16:28:39.000Z" - }, - "end": { - "$date": "2021-11-17T16:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2b0fb4eb-146d-4097-84ab-7d3eb2e4afae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T16:35:20.000Z" - }, - "end": { - "$date": "2021-11-17T16:37:14.000Z" - }, - "events": [ - { - "uuid": "6354f5b9-9588-4455-ad21-e6452059ec9d", - "start": { - "$date": "2021-11-17T16:35:20.000Z" - }, - "end": { - "$date": "2021-11-17T16:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a13427b5-2277-46c2-889e-4365005ef185", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T16:37:25.000Z" - }, - "end": { - "$date": "2021-11-17T16:39:40.000Z" - }, - "events": [ - { - "uuid": "d3c653bb-1236-41c1-a43a-1ff3da28579d", - "start": { - "$date": "2021-11-17T16:37:25.000Z" - }, - "end": { - "$date": "2021-11-17T16:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1c427508-606b-4024-b8f5-3148b234cd68", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-17T22:24:01.000Z" - }, - "end": { - "$date": "2021-11-17T22:55:50.000Z" - }, - "events": [ - { - "uuid": "5068c310-4f11-498b-953d-3702b6a7371c", - "start": { - "$date": "2021-11-17T22:24:01.000Z" - }, - "end": { - "$date": "2021-11-17T22:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "eb69ec3d-f3c9-426a-b334-53bf30ff54d4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T22:35:02.000Z" - }, - "end": { - "$date": "2021-11-17T22:36:52.000Z" - }, - "events": [ - { - "uuid": "381ec537-2281-4bdc-956d-004474675c28", - "start": { - "$date": "2021-11-17T22:35:02.000Z" - }, - "end": { - "$date": "2021-11-17T22:36:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8754cb19-8a09-424a-a76e-f45c70d61062", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-17T22:39:19.000Z" - }, - "end": { - "$date": "2021-11-18T02:54:54.000Z" - }, - "events": [ - { - "uuid": "0b039dae-3998-4844-8353-c7ce94c558f5", - "start": { - "$date": "2021-11-17T22:39:19.000Z" - }, - "end": { - "$date": "2021-11-18T02:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "b056f43d-ab5c-4092-8578-572f59af4eed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-17T22:42:47.000Z" - }, - "end": { - "$date": "2021-11-17T23:05:58.000Z" - }, - "events": [ - { - "uuid": "1a03375c-a686-411d-86a2-36c0c8a6dc26", - "start": { - "$date": "2021-11-17T22:42:47.000Z" - }, - "end": { - "$date": "2021-11-17T23:05:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d61af5b1-7381-45ac-926c-43c3c47fd2cb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T22:50:30.000Z" - }, - "end": { - "$date": "2021-11-17T23:05:43.000Z" - }, - "events": [ - { - "uuid": "654d905b-e051-40e6-8b96-91ac5a5f03b7", - "start": { - "$date": "2021-11-17T22:50:30.000Z" - }, - "end": { - "$date": "2021-11-17T23:05:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5c945b42-fd74-4f5d-89d7-1ddd73129183", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-17T23:05:49.000Z" - }, - "end": { - "$date": "2021-11-17T23:45:38.000Z" - }, - "events": [ - { - "uuid": "a22dbafe-5733-455a-8af7-ea5fe2371554", - "start": { - "$date": "2021-11-17T23:05:49.000Z" - }, - "end": { - "$date": "2021-11-17T23:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9df242f2-5fc4-431a-95c3-eb355c8b3835", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-17T23:33:54.000Z" - }, - "end": { - "$date": "2021-11-18T02:02:11.000Z" - }, - "events": [ - { - "uuid": "31d49e0e-ecdf-45a1-90c2-b2710301bdd4", - "start": { - "$date": "2021-11-17T23:33:54.000Z" - }, - "end": { - "$date": "2021-11-18T00:02:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6af030f3-0a67-4f8e-87f0-af859639dfb5", - "start": { - "$date": "2021-11-18T00:02:54.000Z" - }, - "end": { - "$date": "2021-11-18T01:58:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4326f21f-d1e0-44e0-8b40-474935cb6e8a", - "start": { - "$date": "2021-11-18T01:58:54.000Z" - }, - "end": { - "$date": "2021-11-18T02:02:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5bbd0c9d-a56e-4dd0-98db-4e4dca552dc4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-17T23:47:19.000Z" - }, - "end": { - "$date": "2021-11-18T00:40:28.000Z" - }, - "events": [ - { - "uuid": "e9089d7f-5cc0-4120-8603-a1b62a6eeda6", - "start": { - "$date": "2021-11-17T23:47:19.000Z" - }, - "end": { - "$date": "2021-11-18T00:40:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f7b179aa-ee3e-44dd-9355-e59fd8ef8f13", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-18T00:48:45.000Z" - }, - "end": { - "$date": "2021-11-18T05:21:11.000Z" - }, - "events": [ - { - "uuid": "54d30476-5e80-471c-a66b-ae81c67758c3", - "start": { - "$date": "2021-11-18T00:48:45.000Z" - }, - "end": { - "$date": "2021-11-18T05:21:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f63bf31f-8990-4a3a-8d46-7f178f181c5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-18T01:15:53.000Z" - }, - "end": { - "$date": "2021-11-18T01:33:37.000Z" - }, - "events": [ - { - "uuid": "58d831bf-0356-4c23-b992-fee131091419", - "start": { - "$date": "2021-11-18T01:15:53.000Z" - }, - "end": { - "$date": "2021-11-18T01:33:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "bc220b2e-a470-4ae0-9e76-074d66bcc905", - "uuid": "4ad5af87-2b79-4f0d-b5bf-631636a2bd1a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-18T01:25:21.000Z" - }, - "end": { - "$date": "2021-11-18T02:30:22.000Z" - }, - "events": [ - { - "uuid": "b7f9e945-892f-4e79-abc2-d8c1abb3aee0", - "start": { - "$date": "2021-11-18T01:25:21.000Z" - }, - "end": { - "$date": "2021-11-18T02:30:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "d94fec06-ee5e-41d5-bcdd-03007d663440", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-18T02:32:42.000Z" - }, - "end": { - "$date": "2021-11-18T08:38:32.000Z" - }, - "events": [ - { - "uuid": "215d64ac-319b-4b21-b8ab-408afca61cd7", - "start": { - "$date": "2021-11-18T02:32:42.000Z" - }, - "end": { - "$date": "2021-11-18T08:38:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fde2e5ab-95ee-43e7-9cd4-978dc2f87b66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-18T02:35:18.000Z" - }, - "end": { - "$date": "2021-11-18T04:22:22.000Z" - }, - "events": [ - { - "uuid": "b582ced7-b419-48eb-b82f-07338190c00d", - "start": { - "$date": "2021-11-18T02:35:18.000Z" - }, - "end": { - "$date": "2021-11-18T04:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7cce826f-2ab0-4763-9ea0-59817598d0ee", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-18T02:57:38.000Z" - }, - "end": { - "$date": "2021-11-18T04:31:07.000Z" - }, - "events": [ - { - "uuid": "c087c38a-93a3-41ea-a7b4-283f724def06", - "start": { - "$date": "2021-11-18T02:57:38.000Z" - }, - "end": { - "$date": "2021-11-18T04:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2f6b35c1-37c8-4b9e-8071-31bcb0a1986d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-18T03:05:14.000Z" - }, - "end": { - "$date": "2021-11-18T04:10:43.000Z" - }, - "events": [ - { - "uuid": "20148cf4-1c40-49ed-938e-ee64362227b5", - "start": { - "$date": "2021-11-18T03:05:14.000Z" - }, - "end": { - "$date": "2021-11-18T04:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "85e22724-30bd-429d-9be2-0ff167b7c31a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-18T03:46:27.000Z" - }, - "end": { - "$date": "2021-11-18T06:15:08.000Z" - }, - "events": [ - { - "uuid": "fcd42cd9-8c1f-4dc7-98fb-fabc576c5fc2", - "start": { - "$date": "2021-11-18T03:46:27.000Z" - }, - "end": { - "$date": "2021-11-18T06:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "46272fc1-eadd-4b94-a9d1-19e96cbf5e7b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-18T03:47:59.000Z" - }, - "end": { - "$date": "2021-11-18T04:32:43.000Z" - }, - "events": [ - { - "uuid": "0e51b3ec-6d94-498b-a2fa-151801516fba", - "start": { - "$date": "2021-11-18T03:47:59.000Z" - }, - "end": { - "$date": "2021-11-18T04:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "3be5d79c-9ce8-480e-a0ef-4f9267e81f91", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-18T08:38:48.000Z" - }, - "end": { - "$date": "2021-11-18T09:01:13.000Z" - }, - "events": [ - { - "uuid": "dd10efcc-c273-479b-8683-101a47db769b", - "start": { - "$date": "2021-11-18T08:38:48.000Z" - }, - "end": { - "$date": "2021-11-18T09:01:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "de3dae18-ee22-4ab0-bf3f-1e02c2d32349", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-18T03:51:45.000Z" - }, - "end": { - "$date": "2021-11-18T04:21:52.000Z" - }, - "events": [ - { - "uuid": "af76fd19-7b77-478a-b217-1b59d8a65438", - "start": { - "$date": "2021-11-18T03:51:45.000Z" - }, - "end": { - "$date": "2021-11-18T04:21:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "97d7b9e0-81e6-4328-8c90-df63f6eeec5e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-18T04:25:22.000Z" - }, - "end": { - "$date": "2021-11-18T05:50:00.000Z" - }, - "events": [ - { - "uuid": "93639b46-6b80-4271-8093-e80d63a4d6e6", - "start": { - "$date": "2021-11-18T04:25:22.000Z" - }, - "end": { - "$date": "2021-11-18T05:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ee50138f-5d9f-43bb-bb40-516ac5e3effe", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-18T04:42:34.000Z" - }, - "end": { - "$date": "2021-11-18T04:54:16.000Z" - }, - "events": [ - { - "uuid": "437ec6ab-d413-4706-94af-e3293cb47104", - "start": { - "$date": "2021-11-18T04:42:34.000Z" - }, - "end": { - "$date": "2021-11-18T04:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8f4bf11-6796-44d2-849e-27e3d06e37bd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-18T05:02:07.000Z" - }, - "end": { - "$date": "2021-11-18T05:22:01.000Z" - }, - "events": [ - { - "uuid": "5e8314d5-8004-4220-93d5-8db543625da0", - "start": { - "$date": "2021-11-18T05:02:07.000Z" - }, - "end": { - "$date": "2021-11-18T05:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4dd0811d-bdb7-4d3a-a43a-0f923dfbb2bc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-18T05:21:32.000Z" - }, - "end": { - "$date": "2021-11-18T05:50:43.000Z" - }, - "events": [ - { - "uuid": "aa067c8c-172f-4f99-8b8f-bad4e727cb5b", - "start": { - "$date": "2021-11-18T05:21:32.000Z" - }, - "end": { - "$date": "2021-11-18T05:50:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23328a5e-a0a1-4fc9-af0c-750abeb3359d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-18T05:25:28.000Z" - }, - "end": { - "$date": "2021-11-18T05:41:58.000Z" - }, - "events": [ - { - "uuid": "0efa7348-7e78-4ad2-b785-1630d542bc66", - "start": { - "$date": "2021-11-18T05:25:28.000Z" - }, - "end": { - "$date": "2021-11-18T05:41:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7343a330-a6cb-44d5-bef4-b308cf16928e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-18T05:44:08.000Z" - }, - "end": { - "$date": "2021-11-18T06:00:40.000Z" - }, - "events": [ - { - "uuid": "86e97933-0094-4182-a7b0-4b0284bdad50", - "start": { - "$date": "2021-11-18T05:44:08.000Z" - }, - "end": { - "$date": "2021-11-18T06:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8c39dc8-0ffd-4edd-86e5-219edd3d006a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-18T06:03:34.000Z" - }, - "end": { - "$date": "2021-11-18T06:22:30.000Z" - }, - "events": [ - { - "uuid": "38e5193e-1c10-4ad2-9831-ee2cf11f788b", - "start": { - "$date": "2021-11-18T06:03:34.000Z" - }, - "end": { - "$date": "2021-11-18T06:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "7e2d9b5b-507d-48bf-b0f1-fbe5c7def4c6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-18T06:25:28.000Z" - }, - "end": { - "$date": "2021-11-18T08:38:54.000Z" - }, - "events": [ - { - "uuid": "5ba9cd59-bef5-4ea4-9c8b-0f044d0485d5", - "start": { - "$date": "2021-11-18T06:25:28.000Z" - }, - "end": { - "$date": "2021-11-18T08:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "d03fcc2d-2c82-417a-931a-a0f01e5d65c3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-18T08:39:26.000Z" - }, - "end": { - "$date": "2021-11-18T08:41:51.000Z" - }, - "events": [ - { - "uuid": "cbee4138-060c-4bab-af8f-a0e325f7fddd", - "start": { - "$date": "2021-11-18T08:39:26.000Z" - }, - "end": { - "$date": "2021-11-18T08:41:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0693216f-7898-4ff7-ba1c-20b3b462dd36", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-18T14:40:38.000Z" - }, - "end": { - "$date": "2021-11-18T14:41:43.000Z" - }, - "events": [ - { - "uuid": "2699bd5a-3fc9-4714-bd52-9ffcc9f4f6e5", - "start": { - "$date": "2021-11-18T14:40:38.000Z" - }, - "end": { - "$date": "2021-11-18T14:41:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a0d0efa0-5199-4fd0-9925-3d6949da5219", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-18T18:03:13.000Z" - }, - "end": { - "$date": "2021-11-18T19:20:02.000Z" - }, - "events": [ - { - "uuid": "ea2befab-a5e0-489b-81b7-f721020893ef", - "start": { - "$date": "2021-11-18T18:03:13.000Z" - }, - "end": { - "$date": "2021-11-18T19:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b6386dc0-9ce4-43b0-8a27-c5b28863bd90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-18T18:14:49.000Z" - }, - "end": { - "$date": "2021-11-18T18:33:20.000Z" - }, - "events": [ - { - "uuid": "8697a53b-f0b4-414c-9e71-31b25a803561", - "start": { - "$date": "2021-11-18T18:14:49.000Z" - }, - "end": { - "$date": "2021-11-18T18:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d267b38-5fc0-46cb-a6ac-8d1821f913a7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-18T21:26:32.000Z" - }, - "end": { - "$date": "2021-11-18T21:54:17.000Z" - }, - "events": [ - { - "uuid": "fecd6700-28d4-489a-91e8-cfa081dfc3e3", - "start": { - "$date": "2021-11-18T21:26:32.000Z" - }, - "end": { - "$date": "2021-11-18T21:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "13268c4d-f679-46ca-9205-51d948a216b0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-18T22:03:25.000Z" - }, - "end": { - "$date": "2021-11-18T22:22:17.000Z" - }, - "events": [ - { - "uuid": "1072c283-d5d5-4a87-96b3-3fc0242c7750", - "start": { - "$date": "2021-11-18T22:03:25.000Z" - }, - "end": { - "$date": "2021-11-18T22:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "a50f8865-b20e-4e17-935d-74dd3afd4912", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-18T22:16:56.000Z" - }, - "end": { - "$date": "2021-11-18T23:46:18.000Z" - }, - "events": [ - { - "uuid": "1e10e509-ff3c-4c70-997a-ab67f0ccd1cd", - "start": { - "$date": "2021-11-18T22:16:56.000Z" - }, - "end": { - "$date": "2021-11-18T23:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7d9e6dcb-73c0-46fc-b7fd-9b3849c6241c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-18T22:37:09.000Z" - }, - "end": { - "$date": "2021-11-18T22:57:26.000Z" - }, - "events": [ - { - "uuid": "62813138-b960-4cc7-a580-85506f5fb719", - "start": { - "$date": "2021-11-18T22:37:09.000Z" - }, - "end": { - "$date": "2021-11-18T22:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "315a44e0-8e35-4c55-be49-a87330fe2d31", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-18T22:47:13.000Z" - }, - "end": { - "$date": "2021-11-19T00:13:14.000Z" - }, - "events": [ - { - "uuid": "9ed4f429-0331-4270-a5af-fa23e0083752", - "start": { - "$date": "2021-11-18T22:47:13.000Z" - }, - "end": { - "$date": "2021-11-19T00:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "687fd1e5-1c40-4edb-bf64-fe0ad8694fa3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-18T22:57:51.000Z" - }, - "end": { - "$date": "2021-11-19T00:13:09.000Z" - }, - "events": [ - { - "uuid": "818da090-9fa2-483b-99b3-30f59cebb9b7", - "start": { - "$date": "2021-11-18T22:57:51.000Z" - }, - "end": { - "$date": "2021-11-19T00:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a08e6dc6-b2c3-42d4-ac1a-4b87b05fdbb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-19T00:04:06.000Z" - }, - "end": { - "$date": "2021-11-19T00:47:20.000Z" - }, - "events": [ - { - "uuid": "41114d41-fb58-40eb-89a5-bc87ee07ef13", - "start": { - "$date": "2021-11-19T00:04:06.000Z" - }, - "end": { - "$date": "2021-11-19T00:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a3217afe-2bff-4721-bfbe-f618b7d07ce9", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-19T00:43:42.000Z" - }, - "end": { - "$date": "2021-11-19T00:56:30.000Z" - }, - "events": [ - { - "uuid": "48e79597-5a89-4944-bf29-511118c6d04b", - "start": { - "$date": "2021-11-19T00:43:42.000Z" - }, - "end": { - "$date": "2021-11-19T00:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "670f6a19-0736-43b9-af96-2042e4092685", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-19T01:31:31.000Z" - }, - "end": { - "$date": "2021-11-19T01:43:03.000Z" - }, - "events": [ - { - "uuid": "87c36ff0-1188-4b31-a32e-0a152312d0ad", - "start": { - "$date": "2021-11-19T01:31:31.000Z" - }, - "end": { - "$date": "2021-11-19T01:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d665c431-56ff-4c40-a403-dec851882b3e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-19T01:32:38.000Z" - }, - "end": { - "$date": "2021-11-19T01:54:50.000Z" - }, - "events": [ - { - "uuid": "3283bd4d-1ada-43a3-8a6f-13f816d5ea74", - "start": { - "$date": "2021-11-19T01:32:38.000Z" - }, - "end": { - "$date": "2021-11-19T01:54:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d5e12565-1c7a-4197-b7b2-059678d1180e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-19T01:34:04.000Z" - }, - "end": { - "$date": "2021-11-19T02:18:37.000Z" - }, - "events": [ - { - "uuid": "28545060-3e37-4833-8210-57f561875030", - "start": { - "$date": "2021-11-19T01:34:04.000Z" - }, - "end": { - "$date": "2021-11-19T02:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "be4e4ed9-fde3-4a32-9daf-c276d1f82449", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-19T04:02:26.000Z" - }, - "end": { - "$date": "2021-11-19T04:56:59.000Z" - }, - "events": [ - { - "uuid": "af53fbed-3bff-41c4-8c99-9bbe492385ac", - "start": { - "$date": "2021-11-19T04:02:26.000Z" - }, - "end": { - "$date": "2021-11-19T04:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "9c8b653f-1b62-4fd3-870d-8f24f177336c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-19T04:05:01.000Z" - }, - "end": { - "$date": "2021-11-19T05:45:38.000Z" - }, - "events": [ - { - "uuid": "344275b8-62c1-48ec-bcd0-70d6a3721562", - "start": { - "$date": "2021-11-19T04:05:01.000Z" - }, - "end": { - "$date": "2021-11-19T05:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9824bbd0-6149-4761-8ae0-f87417b143f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-19T04:50:17.000Z" - }, - "end": { - "$date": "2021-11-19T05:10:49.000Z" - }, - "events": [ - { - "uuid": "096c12e4-f562-4a58-9078-6b7a4d12ab37", - "start": { - "$date": "2021-11-19T04:50:17.000Z" - }, - "end": { - "$date": "2021-11-19T05:10:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bee39a15-11bf-4677-9889-255b4634c30a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-19T04:50:54.000Z" - }, - "end": { - "$date": "2021-11-19T05:10:40.000Z" - }, - "events": [ - { - "uuid": "f7749caa-dd54-43f0-9a1c-041698c4a860", - "start": { - "$date": "2021-11-19T04:50:54.000Z" - }, - "end": { - "$date": "2021-11-19T05:10:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0d6c9b92-9f7c-4e62-99d0-7329155feca0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-19T01:27:33.000Z" - }, - "end": { - "$date": "2021-11-19T05:48:39.000Z" - }, - "events": [ - { - "uuid": "4acb562b-eb71-4764-8069-fb495a0bb632", - "start": { - "$date": "2021-11-19T01:27:33.000Z" - }, - "end": { - "$date": "2021-11-19T05:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a958b3e3-0574-4260-814d-855813aca55f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-19T05:49:04.000Z" - }, - "end": { - "$date": "2021-11-19T07:16:32.000Z" - }, - "events": [ - { - "uuid": "b7524a4e-e97a-4fd6-a853-144c79e31130", - "start": { - "$date": "2021-11-19T05:49:04.000Z" - }, - "end": { - "$date": "2021-11-19T07:16:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "510900e3-c5a4-4d54-bb97-ab509eb91c48", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-19T06:10:32.000Z" - }, - "end": { - "$date": "2021-11-19T06:37:17.000Z" - }, - "events": [ - { - "uuid": "8295372c-4152-4b29-8902-f89feaaa5adf", - "start": { - "$date": "2021-11-19T06:10:32.000Z" - }, - "end": { - "$date": "2021-11-19T06:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "22425cbe-aa25-4c77-9006-723022d990ef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-19T06:18:18.000Z" - }, - "end": { - "$date": "2021-11-19T06:54:42.000Z" - }, - "events": [ - { - "uuid": "9c767d79-514d-4be8-a956-ec79c2b0131c", - "start": { - "$date": "2021-11-19T06:18:18.000Z" - }, - "end": { - "$date": "2021-11-19T06:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7b84d6b-a65c-478b-a910-30f0e8f14114", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-19T06:39:27.000Z" - }, - "end": { - "$date": "2021-11-19T07:01:41.000Z" - }, - "events": [ - { - "uuid": "3b7a6241-0da2-44d5-b4d9-811a20f55760", - "start": { - "$date": "2021-11-19T06:39:27.000Z" - }, - "end": { - "$date": "2021-11-19T07:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "209e7e90-cbd3-4a72-b165-b719e7ec54b1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-19T07:03:33.000Z" - }, - "end": { - "$date": "2021-11-19T07:26:54.000Z" - }, - "events": [ - { - "uuid": "43cbaafd-a744-4f67-8349-3dfefb44c158", - "start": { - "$date": "2021-11-19T07:03:33.000Z" - }, - "end": { - "$date": "2021-11-19T07:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cfa0e28a-7eb2-4a2e-988c-ea7b808b4fae", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-19T07:09:06.000Z" - }, - "end": { - "$date": "2021-11-19T07:42:43.000Z" - }, - "events": [ - { - "uuid": "f10bbf2f-9962-43bc-b760-5e235e560cc4", - "start": { - "$date": "2021-11-19T07:09:06.000Z" - }, - "end": { - "$date": "2021-11-19T07:42:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c92b770b-dc1a-46a2-9cf2-28a1c725aa8c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-19T07:29:14.000Z" - }, - "end": { - "$date": "2021-11-19T08:00:30.000Z" - }, - "events": [ - { - "uuid": "3a856e7a-8bc9-4e24-94eb-b98487c2c1b4", - "start": { - "$date": "2021-11-19T07:29:14.000Z" - }, - "end": { - "$date": "2021-11-19T08:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "61756e12-d9d7-4620-be40-91bf1bbb31a2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-19T15:25:31.000Z" - }, - "end": { - "$date": "2021-11-19T20:47:58.000Z" - }, - "events": [ - { - "uuid": "a435cd80-edd8-4b5d-b7e1-b4d4b3343c89", - "start": { - "$date": "2021-11-19T15:25:31.000Z" - }, - "end": { - "$date": "2021-11-19T20:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "940c962a-cc59-489b-aceb-e7f9c2d24fcd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-19T16:28:32.000Z" - }, - "end": { - "$date": "2021-11-19T16:50:16.000Z" - }, - "events": [ - { - "uuid": "5cc8b598-4f55-4a00-b17d-ea15474e0e73", - "start": { - "$date": "2021-11-19T16:28:32.000Z" - }, - "end": { - "$date": "2021-11-19T16:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "4976d193-4eb9-454e-82a3-8a8310014082", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-19T20:00:35.000Z" - }, - "end": { - "$date": "2021-11-19T20:09:01.000Z" - }, - "events": [ - { - "uuid": "4d23c6b8-dfe9-4e23-b665-0270d44f16e7", - "start": { - "$date": "2021-11-19T20:00:35.000Z" - }, - "end": { - "$date": "2021-11-19T20:01:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5d96348-deb6-42bd-9da5-fadd4cc50016", - "start": { - "$date": "2021-11-19T20:01:35.000Z" - }, - "end": { - "$date": "2021-11-19T20:09:01.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7f6fd807-25ce-462f-a849-cea507f5b0fc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-19T20:33:06.000Z" - }, - "end": { - "$date": "2021-11-19T20:39:05.000Z" - }, - "events": [ - { - "uuid": "16800020-22c4-413f-947b-e38c80bfe4bf", - "start": { - "$date": "2021-11-19T20:33:06.000Z" - }, - "end": { - "$date": "2021-11-19T20:39:05.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "bbe65dec-3c6b-4ffb-af53-168a6e46a36b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-19T20:42:12.000Z" - }, - "end": { - "$date": "2021-11-19T20:52:47.000Z" - }, - "events": [ - { - "uuid": "0843392a-1ce7-4c51-9258-6a48c82fe338", - "start": { - "$date": "2021-11-19T20:42:12.000Z" - }, - "end": { - "$date": "2021-11-19T20:52:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "7bedf53f-b233-4b52-8bad-6f5f5249de6b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-19T20:59:19.000Z" - }, - "end": { - "$date": "2021-11-19T21:09:30.000Z" - }, - "events": [ - { - "uuid": "1315aa79-1207-4369-8876-6ac96f237a63", - "start": { - "$date": "2021-11-19T20:59:19.000Z" - }, - "end": { - "$date": "2021-11-19T21:09:30.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "94e15764-3f0b-4746-9df0-e58d4f84f3f6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-19T22:52:38.000Z" - }, - "end": { - "$date": "2021-11-19T22:52:42.000Z" - }, - "events": [ - { - "uuid": "63943d3a-19d7-4edb-897f-4ace810d8d30", - "start": { - "$date": "2021-11-19T22:52:38.000Z" - }, - "end": { - "$date": "2021-11-19T22:52:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "010515b6-4b8b-4cd2-8275-3a13d55aed11", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-19T23:36:55.000Z" - }, - "end": { - "$date": "2021-11-20T02:07:58.000Z" - }, - "events": [ - { - "uuid": "c43d2832-a631-4111-b096-47708007409b", - "start": { - "$date": "2021-11-19T23:36:55.000Z" - }, - "end": { - "$date": "2021-11-20T02:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "f9bdbc94-be0c-4d0a-9a4b-2e84968cd5d6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-19T23:37:52.000Z" - }, - "end": { - "$date": "2021-11-19T23:39:31.000Z" - }, - "events": [ - { - "uuid": "c208c2c1-ea08-4383-8a7a-4e9ef30864d9", - "start": { - "$date": "2021-11-19T23:37:52.000Z" - }, - "end": { - "$date": "2021-11-19T23:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3b396291-5785-4b2a-9d6c-1fe4de109bac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T00:04:24.000Z" - }, - "end": { - "$date": "2021-11-20T01:24:57.000Z" - }, - "events": [ - { - "uuid": "45ea69ea-9644-48c3-ab97-e9f383a821fc", - "start": { - "$date": "2021-11-20T00:04:24.000Z" - }, - "end": { - "$date": "2021-11-20T01:24:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "81bad80f-54d8-42b3-90a5-c8cd46532b5f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-20T00:07:51.000Z" - }, - "end": { - "$date": "2021-11-20T00:50:02.000Z" - }, - "events": [ - { - "uuid": "99a58aa6-5069-4cd7-b143-9d58638f49e6", - "start": { - "$date": "2021-11-20T00:07:51.000Z" - }, - "end": { - "$date": "2021-11-20T00:50:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "4da68b73-7620-4bf2-94e2-8ad1695b693b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-20T01:24:50.000Z" - }, - "end": { - "$date": "2021-11-20T07:54:57.000Z" - }, - "events": [ - { - "uuid": "97ed4826-5f3a-44db-a3ea-c0ad05f946a1", - "start": { - "$date": "2021-11-20T01:24:50.000Z" - }, - "end": { - "$date": "2021-11-20T07:54:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b848d0c1-f57b-4dc3-8312-710a921eec9c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-20T02:08:14.000Z" - }, - "end": { - "$date": "2021-11-20T04:23:20.000Z" - }, - "events": [ - { - "uuid": "d3f05efc-3071-42a3-871f-ead6746b7e77", - "start": { - "$date": "2021-11-20T02:08:14.000Z" - }, - "end": { - "$date": "2021-11-20T04:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eaabf2c7-e4ae-4117-a288-08b55e220a45", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-20T02:15:43.000Z" - }, - "end": { - "$date": "2021-11-20T02:42:29.000Z" - }, - "events": [ - { - "uuid": "a97b47fe-95b6-438f-95bb-c6e75ee142dc", - "start": { - "$date": "2021-11-20T02:15:43.000Z" - }, - "end": { - "$date": "2021-11-20T02:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "699f4878-13ae-4355-98b7-beacb2bcf4fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T02:55:32.000Z" - }, - "end": { - "$date": "2021-11-20T03:44:08.000Z" - }, - "events": [ - { - "uuid": "41be3aea-e986-4071-8402-7ffa64b39b7f", - "start": { - "$date": "2021-11-20T02:55:32.000Z" - }, - "end": { - "$date": "2021-11-20T03:44:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f194e879-5e36-4295-904b-39f8b00a9746", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-20T03:17:47.000Z" - }, - "end": { - "$date": "2021-11-20T03:46:36.000Z" - }, - "events": [ - { - "uuid": "557ed36b-def0-4b1c-a52a-061e54e0b491", - "start": { - "$date": "2021-11-20T03:17:47.000Z" - }, - "end": { - "$date": "2021-11-20T03:46:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a1bbe945-e255-4213-8b38-d9bfe7010113", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T03:45:25.000Z" - }, - "end": { - "$date": "2021-11-20T03:48:26.000Z" - }, - "events": [ - { - "uuid": "19207984-976f-4e41-bd05-03b2fad4c0ed", - "start": { - "$date": "2021-11-20T03:45:25.000Z" - }, - "end": { - "$date": "2021-11-20T03:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a77afe69-b8a3-49f0-9bdb-abebe26f1523", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T04:13:24.000Z" - }, - "end": { - "$date": "2021-11-20T04:15:36.000Z" - }, - "events": [ - { - "uuid": "374b5da9-d589-48e3-99f4-438f39ac967e", - "start": { - "$date": "2021-11-20T04:13:24.000Z" - }, - "end": { - "$date": "2021-11-20T04:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2ba2f4d7-c197-4e16-9fee-64f189c3741b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T04:21:21.000Z" - }, - "end": { - "$date": "2021-11-20T06:52:21.000Z" - }, - "events": [ - { - "uuid": "9eac927e-0b63-4743-9bf5-202eab95d995", - "start": { - "$date": "2021-11-20T04:21:21.000Z" - }, - "end": { - "$date": "2021-11-20T06:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "79c408c2-ab4e-4ebb-8eec-ad708ac72959", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-20T04:26:31.000Z" - }, - "end": { - "$date": "2021-11-20T04:49:21.000Z" - }, - "events": [ - { - "uuid": "7de9fef7-2521-4607-8c29-ea8329e48c04", - "start": { - "$date": "2021-11-20T04:26:31.000Z" - }, - "end": { - "$date": "2021-11-20T04:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7579bce-d0f2-46f2-8c53-77226593031a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-20T04:46:49.000Z" - }, - "end": { - "$date": "2021-11-20T05:09:02.000Z" - }, - "events": [ - { - "uuid": "4bc4bb65-539d-401f-bfae-95d90fea3bc6", - "start": { - "$date": "2021-11-20T04:46:49.000Z" - }, - "end": { - "$date": "2021-11-20T05:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b8cd7204-bce2-4bfe-8d64-992b765be1c4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-20T04:57:57.000Z" - }, - "end": { - "$date": "2021-11-20T05:45:43.000Z" - }, - "events": [ - { - "uuid": "81ba7f22-a6bd-4dda-84d7-c2690051424a", - "start": { - "$date": "2021-11-20T04:57:57.000Z" - }, - "end": { - "$date": "2021-11-20T05:45:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4ff582e8-dc31-466e-a6cd-576d72aa05ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-20T05:11:41.000Z" - }, - "end": { - "$date": "2021-11-20T07:15:18.000Z" - }, - "events": [ - { - "uuid": "8a32c24c-63cb-4e9d-a7fc-2edf3c18a9cf", - "start": { - "$date": "2021-11-20T05:11:41.000Z" - }, - "end": { - "$date": "2021-11-20T07:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "8773cb3c-9f82-48d3-9f71-92114a1e232f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-20T05:24:52.000Z" - }, - "end": { - "$date": "2021-11-20T05:30:17.000Z" - }, - "events": [ - { - "uuid": "c844f971-fb99-428e-aa6b-c7a681be6333", - "start": { - "$date": "2021-11-20T05:24:52.000Z" - }, - "end": { - "$date": "2021-11-20T05:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "540a50dd-059e-4c4e-9d0e-5ebdf371bd0e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-20T05:30:47.000Z" - }, - "end": { - "$date": "2021-11-20T05:44:58.000Z" - }, - "events": [ - { - "uuid": "d4b9ac42-492f-4618-b527-d43c87c2ae8c", - "start": { - "$date": "2021-11-20T05:30:47.000Z" - }, - "end": { - "$date": "2021-11-20T05:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "b2f7265a-0c30-4d5a-8c32-880b6d30c395", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-20T05:45:23.000Z" - }, - "end": { - "$date": "2021-11-20T05:53:53.000Z" - }, - "events": [ - { - "uuid": "a4068d9c-9c9a-4d6c-880b-a7c5f6f71546", - "start": { - "$date": "2021-11-20T05:45:23.000Z" - }, - "end": { - "$date": "2021-11-20T05:53:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "5ccb4383-9732-4c23-b43a-10893795ca3b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-20T06:01:19.000Z" - }, - "end": { - "$date": "2021-11-20T06:26:35.000Z" - }, - "events": [ - { - "uuid": "3f268f7d-9b62-463d-9afe-9aaff43b72bc", - "start": { - "$date": "2021-11-20T06:01:19.000Z" - }, - "end": { - "$date": "2021-11-20T06:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "2fdbb629-949e-4fc7-8545-18a7ad649953", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-20T06:32:45.000Z" - }, - "end": { - "$date": "2021-11-20T07:07:41.000Z" - }, - "events": [ - { - "uuid": "e2e9b3d1-2a2c-4838-86da-ea825c22e0aa", - "start": { - "$date": "2021-11-20T06:32:45.000Z" - }, - "end": { - "$date": "2021-11-20T07:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8b731693-a0f9-4b0e-9212-604e68498087", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-20T06:51:28.000Z" - }, - "end": { - "$date": "2021-11-20T07:49:29.000Z" - }, - "events": [ - { - "uuid": "23fa86c8-5d35-42e2-b4c9-f43a7a1172a7", - "start": { - "$date": "2021-11-20T06:51:28.000Z" - }, - "end": { - "$date": "2021-11-20T07:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bcd32637-7393-4aeb-9f4c-45016e3bd400", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-20T17:43:57.000Z" - }, - "end": { - "$date": "2021-11-20T21:55:06.000Z" - }, - "events": [ - { - "uuid": "14380874-dfe5-4122-a24c-0552b4e71709", - "start": { - "$date": "2021-11-20T17:43:57.000Z" - }, - "end": { - "$date": "2021-11-20T21:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7e9d1408-6b2c-43c2-b1d4-4dd3681a9cb6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-20T18:15:32.000Z" - }, - "end": { - "$date": "2021-11-20T18:58:47.000Z" - }, - "events": [ - { - "uuid": "ce2fc174-b12e-46d1-bbcd-ddd52d3c5bf2", - "start": { - "$date": "2021-11-20T18:15:32.000Z" - }, - "end": { - "$date": "2021-11-20T18:58:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "026fce87-94a1-4338-937d-21e3d0452828", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T19:58:16.000Z" - }, - "end": { - "$date": "2021-11-20T20:10:52.000Z" - }, - "events": [ - { - "uuid": "06a03869-db43-4cc2-b513-4af4af2c502e", - "start": { - "$date": "2021-11-20T19:58:16.000Z" - }, - "end": { - "$date": "2021-11-20T20:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "59352102-d96c-4280-bc43-5902d84e269f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-20T20:36:07.000Z" - }, - "end": { - "$date": "2021-11-21T01:15:30.000Z" - }, - "events": [ - { - "uuid": "77732757-82fe-4246-b296-6164e69ec91b", - "start": { - "$date": "2021-11-20T20:36:07.000Z" - }, - "end": { - "$date": "2021-11-21T01:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "848cf881-60d2-4d17-b9bc-556d2d921bdc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-20T20:42:39.000Z" - }, - "end": { - "$date": "2021-11-20T21:00:01.000Z" - }, - "events": [ - { - "uuid": "5d0ca76a-fb77-4b99-9569-aba515884bb7", - "start": { - "$date": "2021-11-20T20:42:39.000Z" - }, - "end": { - "$date": "2021-11-20T21:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "077b42fb-60c6-47b3-baed-f7b5aae88346", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-20T21:55:08.000Z" - }, - "end": { - "$date": "2021-11-20T22:35:06.000Z" - }, - "events": [ - { - "uuid": "0946693f-5eff-4975-9360-751d6dda9711", - "start": { - "$date": "2021-11-20T21:55:08.000Z" - }, - "end": { - "$date": "2021-11-20T22:35:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d73fea5a-dedd-41f2-a3a8-75da7da14e12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-20T21:55:04.000Z" - }, - "end": { - "$date": "2021-11-20T22:35:05.000Z" - }, - "events": [ - { - "uuid": "30749ee1-fef6-49ce-97b1-52bb2007f715", - "start": { - "$date": "2021-11-20T21:55:04.000Z" - }, - "end": { - "$date": "2021-11-20T22:35:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "57f05e1d-6059-47b6-93af-2d341e3a63e3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-20T21:55:21.000Z" - }, - "end": { - "$date": "2021-11-21T02:37:58.000Z" - }, - "events": [ - { - "uuid": "b70282c2-def5-44d9-ab59-6ba4cf88829d", - "start": { - "$date": "2021-11-20T21:55:21.000Z" - }, - "end": { - "$date": "2021-11-21T02:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bd2a7487-6d5f-46ec-8c21-1fdcc0d66313", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-20T22:45:05.000Z" - }, - "end": { - "$date": "2021-11-20T23:23:24.000Z" - }, - "events": [ - { - "uuid": "62140f30-de3b-4ef2-aae3-9349b8abab68", - "start": { - "$date": "2021-11-20T22:45:05.000Z" - }, - "end": { - "$date": "2021-11-20T23:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "723a0eba-dff2-4be0-878f-939309fbb812", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-20T22:55:14.000Z" - }, - "end": { - "$date": "2021-11-20T23:55:56.000Z" - }, - "events": [ - { - "uuid": "ab375386-2ce5-4e4e-a584-4db7f8769399", - "start": { - "$date": "2021-11-20T22:55:14.000Z" - }, - "end": { - "$date": "2021-11-20T23:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cb539bb4-f99c-4eea-86b7-7855d702930d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-20T23:59:17.000Z" - }, - "end": { - "$date": "2021-11-21T04:32:49.000Z" - }, - "events": [ - { - "uuid": "2ef62ef3-5fd1-4081-a013-af676e998d93", - "start": { - "$date": "2021-11-20T23:59:17.000Z" - }, - "end": { - "$date": "2021-11-21T04:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7c8874ff-eb5b-4727-9d0f-fbb060a07059", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-21T00:24:37.000Z" - }, - "end": { - "$date": "2021-11-21T01:13:54.000Z" - }, - "events": [ - { - "uuid": "84f55955-9af6-46a7-9662-58b9153ee3bf", - "start": { - "$date": "2021-11-21T00:24:37.000Z" - }, - "end": { - "$date": "2021-11-21T01:13:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f3c3eb32-e6d9-4e4d-b76a-2616d617478e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T01:01:38.000Z" - }, - "end": { - "$date": "2021-11-21T03:24:23.000Z" - }, - "events": [ - { - "uuid": "40cb62b2-6a85-473d-887b-25afef0d5f82", - "start": { - "$date": "2021-11-21T01:01:38.000Z" - }, - "end": { - "$date": "2021-11-21T03:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f4cf0977-379b-43ac-88d4-b76691e494a0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-21T01:14:11.000Z" - }, - "end": { - "$date": "2021-11-21T01:15:24.000Z" - }, - "events": [ - { - "uuid": "33aa0508-78f0-43a2-b1cf-63299b657c8c", - "start": { - "$date": "2021-11-21T01:14:11.000Z" - }, - "end": { - "$date": "2021-11-21T01:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f5ba8a36-029a-4953-815f-96bc28f86063", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-21T01:15:51.000Z" - }, - "end": { - "$date": "2021-11-21T01:18:04.000Z" - }, - "events": [ - { - "uuid": "7570d209-1dd2-42ca-a47f-e268eac2800d", - "start": { - "$date": "2021-11-21T01:15:51.000Z" - }, - "end": { - "$date": "2021-11-21T01:18:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6dae74e0-066f-4a3d-8b24-b65475f28c9a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-21T01:19:16.000Z" - }, - "end": { - "$date": "2021-11-21T03:34:47.000Z" - }, - "events": [ - { - "uuid": "c7af9bfc-5ef4-4e2f-98da-170b216d224f", - "start": { - "$date": "2021-11-21T01:19:16.000Z" - }, - "end": { - "$date": "2021-11-21T03:34:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "22763582-150a-453b-9970-ddd77ca0cd74", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-21T01:32:34.000Z" - }, - "end": { - "$date": "2021-11-21T01:51:56.000Z" - }, - "events": [ - { - "uuid": "cc0a254b-60af-49c4-bfba-a9ba93518fe1", - "start": { - "$date": "2021-11-21T01:32:34.000Z" - }, - "end": { - "$date": "2021-11-21T01:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "90e4ced1-9159-4e9e-9ad8-92e9856901fe", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-21T01:36:40.000Z" - }, - "end": { - "$date": "2021-11-21T02:01:12.000Z" - }, - "events": [ - { - "uuid": "80654913-fe71-4777-963e-2300a0051e21", - "start": { - "$date": "2021-11-21T01:36:40.000Z" - }, - "end": { - "$date": "2021-11-21T02:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "a47897a2-2365-4d4a-92e1-4c8477bd203e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-21T01:57:31.000Z" - }, - "end": { - "$date": "2021-11-21T03:06:29.000Z" - }, - "events": [ - { - "uuid": "c4617486-9768-4631-a388-d9bb2646bdf5", - "start": { - "$date": "2021-11-21T01:57:31.000Z" - }, - "end": { - "$date": "2021-11-21T03:06:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "01fe4f4c-1ed6-4d69-a743-16c23dd35adb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-21T02:40:28.000Z" - }, - "end": { - "$date": "2021-11-21T07:38:28.000Z" - }, - "events": [ - { - "uuid": "44f38fb0-0221-4601-87e3-776a0483bc83", - "start": { - "$date": "2021-11-21T02:40:28.000Z" - }, - "end": { - "$date": "2021-11-21T04:53:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7cc6aaa-8fb5-45d2-8c49-829961a08d91", - "start": { - "$date": "2021-11-21T04:53:28.000Z" - }, - "end": { - "$date": "2021-11-21T04:58:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d67eafec-0a30-405b-a1a0-72b174c24dd3", - "start": { - "$date": "2021-11-21T04:58:28.000Z" - }, - "end": { - "$date": "2021-11-21T05:08:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67ba291d-503d-48a9-9427-9f28fed118ce", - "start": { - "$date": "2021-11-21T05:08:28.000Z" - }, - "end": { - "$date": "2021-11-21T05:42:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1db12eb6-b639-4ebd-b0f9-2ec810bd316c", - "start": { - "$date": "2021-11-21T05:42:28.000Z" - }, - "end": { - "$date": "2021-11-21T06:02:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eea164f5-6abd-4a1f-9fb9-4b1b37f7b22d", - "start": { - "$date": "2021-11-21T06:02:28.000Z" - }, - "end": { - "$date": "2021-11-21T06:07:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "adbfcb9f-456f-47f3-bbdf-df78395482e4", - "start": { - "$date": "2021-11-21T06:07:28.000Z" - }, - "end": { - "$date": "2021-11-21T06:39:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d866d5c2-8f76-423d-87c7-9e0c2ae955dd", - "start": { - "$date": "2021-11-21T06:39:28.000Z" - }, - "end": { - "$date": "2021-11-21T06:40:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc3b5ad6-322d-48d5-b6ad-6cea111725f0", - "start": { - "$date": "2021-11-21T06:40:28.000Z" - }, - "end": { - "$date": "2021-11-21T07:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "da5be23b-777f-4a5e-95ef-adc2cea2e1d9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-21T03:28:41.000Z" - }, - "end": { - "$date": "2021-11-21T03:41:45.000Z" - }, - "events": [ - { - "uuid": "2462f3ba-c511-480e-91a8-082b6119a6a4", - "start": { - "$date": "2021-11-21T03:28:41.000Z" - }, - "end": { - "$date": "2021-11-21T03:34:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c59fff8-39a3-4ff1-b6af-88b82bc12a28", - "start": { - "$date": "2021-11-21T03:34:41.000Z" - }, - "end": { - "$date": "2021-11-21T03:38:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d9775846-cbdc-4435-9bea-51e811be8210", - "start": { - "$date": "2021-11-21T03:38:41.000Z" - }, - "end": { - "$date": "2021-11-21T03:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "5823231d-c993-4ce0-96fc-e27d09aeb7fd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T03:43:56.000Z" - }, - "end": { - "$date": "2021-11-21T04:51:53.000Z" - }, - "events": [ - { - "uuid": "36a0bb32-81be-4645-ab29-0cb231a09e7e", - "start": { - "$date": "2021-11-21T03:43:56.000Z" - }, - "end": { - "$date": "2021-11-21T04:51:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e1480f42-0d18-489d-93b0-0ef5f199ad6e", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-21T03:50:38.000Z" - }, - "end": { - "$date": "2021-11-21T07:17:29.000Z" - }, - "events": [ - { - "uuid": "12b38aa6-b3e0-4642-ae02-70bb7da94e8e", - "start": { - "$date": "2021-11-21T03:50:38.000Z" - }, - "end": { - "$date": "2021-11-21T07:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "060ae38d-09f9-486c-a0fb-99b45b94e339", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-21T03:56:07.000Z" - }, - "end": { - "$date": "2021-11-21T05:03:44.000Z" - }, - "events": [ - { - "uuid": "ddce7cd0-b566-4409-921a-098c31c9db9f", - "start": { - "$date": "2021-11-21T03:56:07.000Z" - }, - "end": { - "$date": "2021-11-21T05:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c33755ef-55a7-4a62-85c9-1b794b0c4edd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-21T03:58:35.000Z" - }, - "end": { - "$date": "2021-11-21T07:17:33.000Z" - }, - "events": [ - { - "uuid": "c33cb0ea-97be-4c77-afd7-4b1872362327", - "start": { - "$date": "2021-11-21T03:58:35.000Z" - }, - "end": { - "$date": "2021-11-21T07:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "84b8fb70-77f7-4825-b6b4-d141c72934ea", - "uuid": "e2d0259a-3551-4f4a-b9d5-75d76427379e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-21T04:05:26.000Z" - }, - "end": { - "$date": "2021-11-21T06:38:22.000Z" - }, - "events": [ - { - "uuid": "0d1e31e5-c32c-4dff-b7e4-00370df53077", - "start": { - "$date": "2021-11-21T04:05:26.000Z" - }, - "end": { - "$date": "2021-11-21T06:38:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b0c6dbe-19ee-440b-8fe1-0c65b4e509ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-21T04:21:59.000Z" - }, - "end": { - "$date": "2021-11-21T04:53:18.000Z" - }, - "events": [ - { - "uuid": "b69c762d-a5a2-4bec-8aa2-f4e090166eff", - "start": { - "$date": "2021-11-21T04:21:59.000Z" - }, - "end": { - "$date": "2021-11-21T04:53:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "760a78d0-b628-4a50-96e8-f41c56888ecb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T04:53:24.000Z" - }, - "end": { - "$date": "2021-11-21T05:57:52.000Z" - }, - "events": [ - { - "uuid": "225ba004-1fd1-4ef4-856d-72818736112e", - "start": { - "$date": "2021-11-21T04:53:24.000Z" - }, - "end": { - "$date": "2021-11-21T05:57:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "394104ed-6144-4069-8120-937cac145b0c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-21T05:29:05.000Z" - }, - "end": { - "$date": "2021-11-21T09:09:18.000Z" - }, - "events": [ - { - "uuid": "fa19c6f5-c5c0-4ce5-955a-0114aa487378", - "start": { - "$date": "2021-11-21T05:29:05.000Z" - }, - "end": { - "$date": "2021-11-21T09:09:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c358a31-8d21-43cd-9ed9-4af62ff51e5c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-21T05:31:20.000Z" - }, - "end": { - "$date": "2021-11-21T09:08:49.000Z" - }, - "events": [ - { - "uuid": "29601c7e-cd4b-4970-9e0f-b082c2de22d0", - "start": { - "$date": "2021-11-21T05:31:20.000Z" - }, - "end": { - "$date": "2021-11-21T09:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "b6ada71f-c8bd-4e74-9dc3-e8bba8b0f962", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-21T06:38:30.000Z" - }, - "end": { - "$date": "2021-11-21T08:56:57.000Z" - }, - "events": [ - { - "uuid": "5042605d-7c12-4f32-ba3e-5bd67c2ace7f", - "start": { - "$date": "2021-11-21T06:38:30.000Z" - }, - "end": { - "$date": "2021-11-21T08:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d3980620-448a-4354-a1ea-b261cd10b1a2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-21T07:01:51.000Z" - }, - "end": { - "$date": "2021-11-21T07:49:43.000Z" - }, - "events": [ - { - "uuid": "7394da61-050f-4aa1-abaf-6b13eeb7103d", - "start": { - "$date": "2021-11-21T07:01:51.000Z" - }, - "end": { - "$date": "2021-11-21T07:49:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77d8d520-de3c-4992-bf23-985962c41c80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-21T07:59:01.000Z" - }, - "end": { - "$date": "2021-11-21T08:36:40.000Z" - }, - "events": [ - { - "uuid": "194c880e-b32d-4f38-8c66-a2ed615d2042", - "start": { - "$date": "2021-11-21T07:59:01.000Z" - }, - "end": { - "$date": "2021-11-21T08:36:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b1696eb6-eacd-4853-8ef4-8ca425f28aae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T17:35:09.000Z" - }, - "end": { - "$date": "2021-11-21T17:44:40.000Z" - }, - "events": [ - { - "uuid": "dfff4f11-530d-4597-9cc9-052e8fe529bb", - "start": { - "$date": "2021-11-21T17:35:09.000Z" - }, - "end": { - "$date": "2021-11-21T17:44:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3add7245-da84-4f7c-9fe6-bfe5965cf1a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T17:44:46.000Z" - }, - "end": { - "$date": "2021-11-21T19:19:47.000Z" - }, - "events": [ - { - "uuid": "c7e121bb-df81-43e7-909d-d7675b25a53d", - "start": { - "$date": "2021-11-21T17:44:46.000Z" - }, - "end": { - "$date": "2021-11-21T19:19:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "4d200e58-5408-4d2c-a62c-479f50f23234", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-21T18:05:01.000Z" - }, - "end": { - "$date": "2021-11-21T19:23:50.000Z" - }, - "events": [ - { - "uuid": "26c14c43-3edc-4c2c-a40b-069bbb737894", - "start": { - "$date": "2021-11-21T18:05:01.000Z" - }, - "end": { - "$date": "2021-11-21T19:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "96f212bd-2627-43ee-892f-112051f5b360", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-21T18:32:43.000Z" - }, - "end": { - "$date": "2021-11-22T02:51:44.000Z" - }, - "events": [ - { - "uuid": "45c0c850-c488-4d16-a997-3d339209a00f", - "start": { - "$date": "2021-11-21T18:32:43.000Z" - }, - "end": { - "$date": "2021-11-21T18:53:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3c261efe-2556-4253-b18e-6dd0f2f7c397", - "start": { - "$date": "2021-11-21T18:53:43.000Z" - }, - "end": { - "$date": "2021-11-21T19:02:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba097271-05d0-4201-9af7-178c00e3da7d", - "start": { - "$date": "2021-11-21T19:02:43.000Z" - }, - "end": { - "$date": "2021-11-21T23:38:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4987014-a8d1-4e56-877a-b6f492540129", - "start": { - "$date": "2021-11-21T23:38:43.000Z" - }, - "end": { - "$date": "2021-11-21T23:41:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64ca56ae-99a9-4282-8563-0685cc6390df", - "start": { - "$date": "2021-11-21T23:41:43.000Z" - }, - "end": { - "$date": "2021-11-22T02:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "5219f7ae-b628-4dbb-81ad-621c9e352212", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-21T18:48:21.000Z" - }, - "end": { - "$date": "2021-11-21T19:18:40.000Z" - }, - "events": [ - { - "uuid": "9fb31092-9d77-450c-9a32-984913c475ea", - "start": { - "$date": "2021-11-21T18:48:21.000Z" - }, - "end": { - "$date": "2021-11-21T19:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1a7841a6-b923-4bb1-9865-816f22decbec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-21T19:28:53.000Z" - }, - "end": { - "$date": "2021-11-21T19:42:15.000Z" - }, - "events": [ - { - "uuid": "a4998c0f-9a62-4f89-8293-11d305a58d6b", - "start": { - "$date": "2021-11-21T19:28:53.000Z" - }, - "end": { - "$date": "2021-11-21T19:39:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "daabe1c1-6beb-4d95-8031-46a6ac7f79ca", - "start": { - "$date": "2021-11-21T19:39:53.000Z" - }, - "end": { - "$date": "2021-11-21T19:42:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "cdff69e3-cef5-473a-8c89-70d0284a532e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T19:37:44.000Z" - }, - "end": { - "$date": "2021-11-21T20:09:25.000Z" - }, - "events": [ - { - "uuid": "2701825a-fc49-4baa-9481-2c0b68e6f6ff", - "start": { - "$date": "2021-11-21T19:37:44.000Z" - }, - "end": { - "$date": "2021-11-21T20:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b788f23a-c4cb-4a17-99f3-1e79b61f60cd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-21T20:16:45.000Z" - }, - "end": { - "$date": "2021-11-21T20:41:13.000Z" - }, - "events": [ - { - "uuid": "7a63f250-5793-43d9-afdc-e29b836d5ee8", - "start": { - "$date": "2021-11-21T20:16:45.000Z" - }, - "end": { - "$date": "2021-11-21T20:41:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "495745a0-dcf8-441d-b351-3d356db172af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T20:12:41.000Z" - }, - "end": { - "$date": "2021-11-21T20:37:35.000Z" - }, - "events": [ - { - "uuid": "360dc7a3-3799-4473-bfa2-6622f7377ce5", - "start": { - "$date": "2021-11-21T20:12:41.000Z" - }, - "end": { - "$date": "2021-11-21T20:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ce6e84e7-a8e5-476a-bca1-7a4c73b62af8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-21T20:57:27.000Z" - }, - "end": { - "$date": "2021-11-21T21:05:14.000Z" - }, - "events": [ - { - "uuid": "2b4f69e5-72db-4d03-916b-8a7a6d204977", - "start": { - "$date": "2021-11-21T20:57:27.000Z" - }, - "end": { - "$date": "2021-11-21T21:05:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bdcf7680-5fc8-4ca0-a110-0c36b9083bef", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-21T21:03:10.000Z" - }, - "end": { - "$date": "2021-11-21T21:25:34.000Z" - }, - "events": [ - { - "uuid": "1ddd65e4-050d-4502-894a-9a9e1724e384", - "start": { - "$date": "2021-11-21T21:03:10.000Z" - }, - "end": { - "$date": "2021-11-21T21:25:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a1aa2042-7a9b-4b36-8919-433ff0fb0c2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-21T21:05:18.000Z" - }, - "end": { - "$date": "2021-11-21T21:22:35.000Z" - }, - "events": [ - { - "uuid": "db8b4be2-79f4-4f22-a302-69e34d0ccc7c", - "start": { - "$date": "2021-11-21T21:05:18.000Z" - }, - "end": { - "$date": "2021-11-21T21:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "bd742798-6952-4cb7-b87c-568458f850c3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-21T21:28:47.000Z" - }, - "end": { - "$date": "2021-11-21T22:29:56.000Z" - }, - "events": [ - { - "uuid": "69fb7d6f-f95e-44b7-8067-82d973179b1c", - "start": { - "$date": "2021-11-21T21:28:47.000Z" - }, - "end": { - "$date": "2021-11-21T22:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0877812b-3a2b-444e-8b53-d53b704cf9e5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-21T22:04:25.000Z" - }, - "end": { - "$date": "2021-11-22T00:52:28.000Z" - }, - "events": [ - { - "uuid": "07a25d88-6b73-4335-861a-41c6784174c5", - "start": { - "$date": "2021-11-21T22:04:25.000Z" - }, - "end": { - "$date": "2021-11-22T00:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "bfb77851-6d31-448e-8266-1c44a9a37114", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-21T22:24:37.000Z" - }, - "end": { - "$date": "2021-11-21T22:27:29.000Z" - }, - "events": [ - { - "uuid": "2e4101f7-cba0-4206-a819-8c23e07b4636", - "start": { - "$date": "2021-11-21T22:24:37.000Z" - }, - "end": { - "$date": "2021-11-21T22:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ec8f2b79-e4ab-4d70-a974-776bf6a409a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-21T22:34:34.000Z" - }, - "end": { - "$date": "2021-11-21T22:37:12.000Z" - }, - "events": [ - { - "uuid": "2ceda826-4d45-4745-b995-9dfa2047fec4", - "start": { - "$date": "2021-11-21T22:34:34.000Z" - }, - "end": { - "$date": "2021-11-21T22:37:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb878162-660e-440d-a3a6-66bdb6f98308", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-21T23:26:22.000Z" - }, - "end": { - "$date": "2021-11-21T23:26:19.000Z" - }, - "events": [ - { - "uuid": "15567eac-0dc4-4ed0-b1d3-0de8861e7e62", - "start": { - "$date": "2021-11-21T23:26:22.000Z" - }, - "end": { - "$date": "2021-11-21T23:26:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8b019fb0-9a5e-4013-a5ef-fba16d8aac2f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-21T22:50:14.000Z" - }, - "end": { - "$date": "2021-11-21T23:07:07.000Z" - }, - "events": [ - { - "uuid": "76bb0088-ea08-48a6-a2cc-e9d85efc96c7", - "start": { - "$date": "2021-11-21T22:50:14.000Z" - }, - "end": { - "$date": "2021-11-21T23:07:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7bef9359-9cac-4b97-bb5e-9e5eb5bf1699", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-21T23:07:57.000Z" - }, - "end": { - "$date": "2021-11-21T23:21:29.000Z" - }, - "events": [ - { - "uuid": "4b198c66-688b-4e5c-92e3-339b2f56e263", - "start": { - "$date": "2021-11-21T23:07:57.000Z" - }, - "end": { - "$date": "2021-11-21T23:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7460ff73-5db1-4c55-9b66-4e1c25e88e07", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-21T23:29:00.000Z" - }, - "end": { - "$date": "2021-11-22T00:00:00.000Z" - }, - "events": [ - { - "uuid": "cbfde210-6f2f-4ecb-9dc6-36d8c557164b", - "start": { - "$date": "2021-11-21T23:29:00.000Z" - }, - "end": { - "$date": "2021-11-22T00:00:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d5302375-20db-4d67-a0f2-5768bacee4ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-21T23:50:41.000Z" - }, - "end": { - "$date": "2021-11-22T00:32:28.000Z" - }, - "events": [ - { - "uuid": "e4efcd6e-5129-4edf-bb55-1ca15b1470f4", - "start": { - "$date": "2021-11-21T23:50:41.000Z" - }, - "end": { - "$date": "2021-11-22T00:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a82a8a9-38e1-4aec-bc87-8d714317935b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T00:31:22.000Z" - }, - "end": { - "$date": "2021-11-22T00:57:24.000Z" - }, - "events": [ - { - "uuid": "fe9bfb0f-0f67-48d1-9f96-de783ef52d90", - "start": { - "$date": "2021-11-22T00:31:22.000Z" - }, - "end": { - "$date": "2021-11-22T00:57:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "350381fe-b919-41cd-b9b8-44417fed615b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T01:00:39.000Z" - }, - "end": { - "$date": "2021-11-22T01:19:15.000Z" - }, - "events": [ - { - "uuid": "f77fa8f7-d2a4-4135-979d-714c44906658", - "start": { - "$date": "2021-11-22T01:00:39.000Z" - }, - "end": { - "$date": "2021-11-22T01:19:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0a69b5f4-6fac-47a6-a2d8-2b1b7cf99d63", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-22T00:59:19.000Z" - }, - "end": { - "$date": "2021-11-22T08:53:04.000Z" - }, - "events": [ - { - "uuid": "857c3a0e-ab46-4ede-a027-6e0029edb8b0", - "start": { - "$date": "2021-11-22T00:59:19.000Z" - }, - "end": { - "$date": "2021-11-22T08:53:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bd061e7a-5f51-46c8-824d-0f329f3991cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-22T02:51:59.000Z" - }, - "end": { - "$date": "2021-11-22T04:39:13.000Z" - }, - "events": [ - { - "uuid": "32329d5c-7c63-4a9a-a366-b4e50db31b04", - "start": { - "$date": "2021-11-22T02:51:59.000Z" - }, - "end": { - "$date": "2021-11-22T04:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cfcc54ab-c2c0-4f44-a331-b45f057cb7b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-22T03:24:45.000Z" - }, - "end": { - "$date": "2021-11-22T05:10:54.000Z" - }, - "events": [ - { - "uuid": "e5d5195a-7bd7-4f34-8eaf-93e984e7bd38", - "start": { - "$date": "2021-11-22T03:24:45.000Z" - }, - "end": { - "$date": "2021-11-22T04:14:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "476b67df-a961-45b4-8850-75ae8b6f24a7", - "start": { - "$date": "2021-11-22T04:14:45.000Z" - }, - "end": { - "$date": "2021-11-22T04:19:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8bd82d2e-ce23-423b-b17a-56e3864f621e", - "start": { - "$date": "2021-11-22T04:19:45.000Z" - }, - "end": { - "$date": "2021-11-22T04:22:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ce6e2e2-3b62-44d4-9b43-4d08642b5cf6", - "start": { - "$date": "2021-11-22T04:22:45.000Z" - }, - "end": { - "$date": "2021-11-22T04:53:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b7aa143-5fbf-49c3-871e-6b2e3190518e", - "start": { - "$date": "2021-11-22T04:53:45.000Z" - }, - "end": { - "$date": "2021-11-22T05:10:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "0924ef54-de2a-49a2-8770-a4669cd8fbb8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-22T03:33:23.000Z" - }, - "end": { - "$date": "2021-11-22T05:50:30.000Z" - }, - "events": [ - { - "uuid": "efff9def-5496-4313-8298-024965abb9cd", - "start": { - "$date": "2021-11-22T03:33:23.000Z" - }, - "end": { - "$date": "2021-11-22T05:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45509d6d-8ef4-4807-ad5d-3e3b0a8956ac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-22T04:03:48.000Z" - }, - "end": { - "$date": "2021-11-22T04:37:54.000Z" - }, - "events": [ - { - "uuid": "6d514b7c-08eb-40c2-a29e-f32e10a02cb8", - "start": { - "$date": "2021-11-22T04:03:48.000Z" - }, - "end": { - "$date": "2021-11-22T04:37:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8707a561-13cf-497f-982f-5f30fdbbd188", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-22T04:38:34.000Z" - }, - "end": { - "$date": "2021-11-22T05:17:01.000Z" - }, - "events": [ - { - "uuid": "55aa7700-acf8-4625-b51f-6635d009c57b", - "start": { - "$date": "2021-11-22T04:38:34.000Z" - }, - "end": { - "$date": "2021-11-22T05:17:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "1ea4aae5-c2f6-4000-a35c-a469ca1a2ec6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-22T04:40:27.000Z" - }, - "end": { - "$date": "2021-11-22T06:32:09.000Z" - }, - "events": [ - { - "uuid": "08f17b49-451e-41d1-ad82-f39e2e486ad0", - "start": { - "$date": "2021-11-22T04:40:27.000Z" - }, - "end": { - "$date": "2021-11-22T06:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ec3f038-b903-49d6-aae7-091059eddd02", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T05:04:16.000Z" - }, - "end": { - "$date": "2021-11-22T05:25:55.000Z" - }, - "events": [ - { - "uuid": "c30aa137-6926-4d70-851c-0c5c80b92960", - "start": { - "$date": "2021-11-22T05:04:16.000Z" - }, - "end": { - "$date": "2021-11-22T05:25:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a26225d8-b6ce-43d1-996f-808f44181c6b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-22T05:18:12.000Z" - }, - "end": { - "$date": "2021-11-22T05:47:32.000Z" - }, - "events": [ - { - "uuid": "202dc4b3-138c-4073-b7c6-a56078148656", - "start": { - "$date": "2021-11-22T05:18:12.000Z" - }, - "end": { - "$date": "2021-11-22T05:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d988e14-b097-49c5-a2b1-b95e59bb5093", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T05:29:43.000Z" - }, - "end": { - "$date": "2021-11-22T05:52:32.000Z" - }, - "events": [ - { - "uuid": "7ae03839-d146-45cb-a73b-4876f02e1ead", - "start": { - "$date": "2021-11-22T05:29:43.000Z" - }, - "end": { - "$date": "2021-11-22T05:52:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1219192c-da29-4c48-8efe-c59af456f977", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T05:54:19.000Z" - }, - "end": { - "$date": "2021-11-22T05:58:55.000Z" - }, - "events": [ - { - "uuid": "08568fc4-1143-439f-8542-37a2bf0dc70f", - "start": { - "$date": "2021-11-22T05:54:19.000Z" - }, - "end": { - "$date": "2021-11-22T05:58:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11bd43d5-cb54-4b8b-86b2-a3c6787c0eb4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T06:00:20.000Z" - }, - "end": { - "$date": "2021-11-22T06:31:19.000Z" - }, - "events": [ - { - "uuid": "43370512-d286-4669-a82d-42bd50db5e1a", - "start": { - "$date": "2021-11-22T06:00:20.000Z" - }, - "end": { - "$date": "2021-11-22T06:31:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4f75800-ec81-4451-8927-be23127787f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T06:32:33.000Z" - }, - "end": { - "$date": "2021-11-22T07:00:49.000Z" - }, - "events": [ - { - "uuid": "3ea25148-3dd3-4afc-bdc7-a463467b56a9", - "start": { - "$date": "2021-11-22T06:32:33.000Z" - }, - "end": { - "$date": "2021-11-22T07:00:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ae24a923-9bf6-4911-89c0-9a425463e725", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-22T06:32:42.000Z" - }, - "end": { - "$date": "2021-11-22T06:52:07.000Z" - }, - "events": [ - { - "uuid": "edb1ee2d-bf4a-4bd5-ae27-47bd2b97d149", - "start": { - "$date": "2021-11-22T06:32:42.000Z" - }, - "end": { - "$date": "2021-11-22T06:52:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "66742864-6306-4a05-95a4-602f84b0456f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-22T06:52:17.000Z" - }, - "end": { - "$date": "2021-11-22T06:58:37.000Z" - }, - "events": [ - { - "uuid": "fd210c29-d9d7-4e0e-887b-321a7a59dbf6", - "start": { - "$date": "2021-11-22T06:52:17.000Z" - }, - "end": { - "$date": "2021-11-22T06:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae135c6a-9835-469f-b2c7-117322bef3c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T07:02:46.000Z" - }, - "end": { - "$date": "2021-11-22T07:39:43.000Z" - }, - "events": [ - { - "uuid": "cf90a46b-b1b0-4c98-9ad0-4933f5f5f9d8", - "start": { - "$date": "2021-11-22T07:02:46.000Z" - }, - "end": { - "$date": "2021-11-22T07:39:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d421887-3c8a-4e6c-8948-2685b7ba74c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T07:43:00.000Z" - }, - "end": { - "$date": "2021-11-22T08:25:11.000Z" - }, - "events": [ - { - "uuid": "ef72959f-f0f8-4c4c-b877-6e4cdac6a5af", - "start": { - "$date": "2021-11-22T07:43:00.000Z" - }, - "end": { - "$date": "2021-11-22T08:25:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ec373e0-6698-424d-9e6d-5a43fb78384e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T09:33:00.000Z" - }, - "end": { - "$date": "2021-11-22T10:05:15.000Z" - }, - "events": [ - { - "uuid": "101bac58-089a-4cd5-bc82-818f012cd508", - "start": { - "$date": "2021-11-22T09:33:00.000Z" - }, - "end": { - "$date": "2021-11-22T10:05:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "112e9653-bf9e-4bcd-8ae2-f4680fc76fd7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-22T17:35:18.000Z" - }, - "end": { - "$date": "2021-11-22T17:39:04.000Z" - }, - "events": [ - { - "uuid": "05599aad-cd9e-4c47-a62c-1896e1982db0", - "start": { - "$date": "2021-11-22T17:35:18.000Z" - }, - "end": { - "$date": "2021-11-22T17:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "708cbf82-34d2-40df-88bb-842c0cca33f0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-22T18:02:08.000Z" - }, - "end": { - "$date": "2021-11-22T23:09:44.000Z" - }, - "events": [ - { - "uuid": "47cd3cb2-5ac4-41db-b387-87c0b6a148df", - "start": { - "$date": "2021-11-22T18:02:08.000Z" - }, - "end": { - "$date": "2021-11-22T23:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2885fc74-684a-4ad9-8b7e-fefd5c717f2d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-22T18:06:35.000Z" - }, - "end": { - "$date": "2021-11-22T18:16:40.000Z" - }, - "events": [ - { - "uuid": "7fbe7a81-f333-41c7-82b1-5d65f30fbda4", - "start": { - "$date": "2021-11-22T18:06:35.000Z" - }, - "end": { - "$date": "2021-11-22T18:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a26f630f-caae-4245-894c-d5a04af1c5db", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-22T19:04:20.000Z" - }, - "end": { - "$date": "2021-11-22T19:28:47.000Z" - }, - "events": [ - { - "uuid": "77824bb7-a6dd-46f4-a823-9076d27e81e8", - "start": { - "$date": "2021-11-22T19:04:20.000Z" - }, - "end": { - "$date": "2021-11-22T19:05:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "189bf388-71a5-4298-94aa-672dfc54b7bc", - "start": { - "$date": "2021-11-22T19:05:20.000Z" - }, - "end": { - "$date": "2021-11-22T19:10:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09f36e89-ff6f-43b4-9779-62466193d91d", - "start": { - "$date": "2021-11-22T19:10:20.000Z" - }, - "end": { - "$date": "2021-11-22T19:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a435ec2b-9fb7-4656-94d1-6b3649fb456e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-22T19:26:44.000Z" - }, - "end": { - "$date": "2021-11-22T19:53:01.000Z" - }, - "events": [ - { - "uuid": "2329cada-6b31-4f61-ba9c-c6d407524209", - "start": { - "$date": "2021-11-22T19:26:44.000Z" - }, - "end": { - "$date": "2021-11-22T19:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "23c9e684-391e-4a43-8095-29b907f70a91", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-22T20:35:52.000Z" - }, - "end": { - "$date": "2021-11-23T00:48:56.000Z" - }, - "events": [ - { - "uuid": "a37d97cc-9ab7-41d2-949b-d5e3099e4106", - "start": { - "$date": "2021-11-22T20:35:52.000Z" - }, - "end": { - "$date": "2021-11-23T00:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "39546339-7aa4-4dae-ae8d-320019ea525f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-22T21:07:12.000Z" - }, - "end": { - "$date": "2021-11-22T21:36:25.000Z" - }, - "events": [ - { - "uuid": "becbe60f-90b4-4c8f-8b85-e6efd6a602ff", - "start": { - "$date": "2021-11-22T21:07:12.000Z" - }, - "end": { - "$date": "2021-11-22T21:36:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62b34fde-9b82-493b-ab57-7e922b59d846", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T22:02:06.000Z" - }, - "end": { - "$date": "2021-11-22T22:02:03.000Z" - }, - "events": [ - { - "uuid": "4b9fcc08-a502-497b-b8ed-bcacc4bd017a", - "start": { - "$date": "2021-11-22T22:02:06.000Z" - }, - "end": { - "$date": "2021-11-22T22:04:06.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "de5f2f26-2cc1-43a6-abd4-bdf8fb16fc36", - "start": { - "$date": "2021-11-22T22:04:06.000Z" - }, - "end": { - "$date": "2021-11-22T22:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "704a12ac-aaca-4990-b747-dcb9906cf737", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T22:05:56.000Z" - }, - "end": { - "$date": "2021-11-22T22:26:10.000Z" - }, - "events": [ - { - "uuid": "6e5c9fb4-6e22-4cb6-b2a1-295aa424fa0f", - "start": { - "$date": "2021-11-22T22:05:56.000Z" - }, - "end": { - "$date": "2021-11-22T22:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1c77428-d4dd-4443-a49c-dbd792f31f1a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-22T22:26:04.000Z" - }, - "end": { - "$date": "2021-11-22T22:26:05.000Z" - }, - "events": [ - { - "uuid": "a15ed5ed-ac88-4578-bb10-47e2811c2a2b", - "start": { - "$date": "2021-11-22T22:26:04.000Z" - }, - "end": { - "$date": "2021-11-22T22:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2f2643b-2a20-443e-b38b-22c8b300dddf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T22:29:52.000Z" - }, - "end": { - "$date": "2021-11-22T22:43:30.000Z" - }, - "events": [ - { - "uuid": "9b95988d-8c6c-4261-84f6-9465e28dddb5", - "start": { - "$date": "2021-11-22T22:29:52.000Z" - }, - "end": { - "$date": "2021-11-22T22:43:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d970e4b2-bb09-4c8f-ae31-98a79103bf07", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-22T22:29:59.000Z" - }, - "end": { - "$date": "2021-11-22T22:51:51.000Z" - }, - "events": [ - { - "uuid": "425c6e63-00a4-4770-ad4f-25e64a98564e", - "start": { - "$date": "2021-11-22T22:29:59.000Z" - }, - "end": { - "$date": "2021-11-22T22:51:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd7ba9f2-d5d5-4e69-9bd6-f5f535cc0d43", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T22:51:59.000Z" - }, - "end": { - "$date": "2021-11-22T22:51:55.000Z" - }, - "events": [ - { - "uuid": "b4781a45-2cb6-4a7f-b9b9-380b43ce9b7e", - "start": { - "$date": "2021-11-22T22:51:59.000Z" - }, - "end": { - "$date": "2021-11-22T22:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ef5887d5-7dbb-40d4-981c-1847b03cdedc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T23:21:32.000Z" - }, - "end": { - "$date": "2021-11-22T23:21:28.000Z" - }, - "events": [ - { - "uuid": "144de74b-6499-406f-b7bb-858f9ad02bc2", - "start": { - "$date": "2021-11-22T23:21:32.000Z" - }, - "end": { - "$date": "2021-11-22T23:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72b6a3c7-014c-406e-800a-95b138736fa3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T23:23:34.000Z" - }, - "end": { - "$date": "2021-11-22T23:54:31.000Z" - }, - "events": [ - { - "uuid": "57d20975-f9d6-426b-b081-c8aa23e5c04b", - "start": { - "$date": "2021-11-22T23:23:34.000Z" - }, - "end": { - "$date": "2021-11-22T23:54:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56e745f9-2bcd-4573-852d-cde12145f0b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-22T23:57:24.000Z" - }, - "end": { - "$date": "2021-11-23T00:39:30.000Z" - }, - "events": [ - { - "uuid": "7f3883f4-d466-4429-bd93-22b0e799c65e", - "start": { - "$date": "2021-11-22T23:57:24.000Z" - }, - "end": { - "$date": "2021-11-23T00:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "fc56ac03-071d-4ed4-ad3f-baa4ef6adcc0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-23T00:24:08.000Z" - }, - "end": { - "$date": "2021-11-23T05:57:31.000Z" - }, - "events": [ - { - "uuid": "c886db9d-79e3-4360-9134-89dfb9000600", - "start": { - "$date": "2021-11-23T00:24:08.000Z" - }, - "end": { - "$date": "2021-11-23T05:57:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "ad559ca0-32a0-4e5a-b635-2368cd215922", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-23T00:49:11.000Z" - }, - "end": { - "$date": "2021-11-23T00:58:32.000Z" - }, - "events": [ - { - "uuid": "51844d44-798c-4a1a-90c1-69dd108c2992", - "start": { - "$date": "2021-11-23T00:49:11.000Z" - }, - "end": { - "$date": "2021-11-23T00:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "69c03f52-504a-4864-891e-5b115ec7b0b8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-23T00:59:02.000Z" - }, - "end": { - "$date": "2021-11-23T01:03:38.000Z" - }, - "events": [ - { - "uuid": "34a6bb55-8b8e-4e7a-831d-dc8b411d5c62", - "start": { - "$date": "2021-11-23T00:59:02.000Z" - }, - "end": { - "$date": "2021-11-23T01:03:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "59d5411f-702d-4949-a0ec-ae41da492dda", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-22T17:35:18.000Z" - }, - "end": { - "$date": "2021-11-23T03:24:24.000Z" - }, - "events": [ - { - "uuid": "b95150ea-ab5d-4e64-b69a-de41ba4dae5c", - "start": { - "$date": "2021-11-22T17:35:18.000Z" - }, - "end": { - "$date": "2021-11-23T03:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "55f42460-2212-46fc-b30c-3c8a41ae44cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-23T01:04:08.000Z" - }, - "end": { - "$date": "2021-11-23T02:25:22.000Z" - }, - "events": [ - { - "uuid": "48af495d-4f25-4256-9a79-c44ea64ad0f4", - "start": { - "$date": "2021-11-23T01:04:08.000Z" - }, - "end": { - "$date": "2021-11-23T02:25:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e60a93f0-372b-40fc-a970-5d82e824bb23", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-23T01:21:35.000Z" - }, - "end": { - "$date": "2021-11-23T02:17:28.000Z" - }, - "events": [ - { - "uuid": "06193c15-ca2b-4426-9d82-9fa7455a74d3", - "start": { - "$date": "2021-11-23T01:21:35.000Z" - }, - "end": { - "$date": "2021-11-23T02:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fc7b237e-6339-4a5c-abd3-fea948320d83", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-23T01:50:55.000Z" - }, - "end": { - "$date": "2021-11-23T10:43:20.000Z" - }, - "events": [ - { - "uuid": "40a7d5c1-443b-475b-ad3e-9128830bc505", - "start": { - "$date": "2021-11-23T01:50:55.000Z" - }, - "end": { - "$date": "2021-11-23T10:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42dba3ff-dbb3-4fdb-88ec-54eb8755041e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T02:23:51.000Z" - }, - "end": { - "$date": "2021-11-23T03:02:27.000Z" - }, - "events": [ - { - "uuid": "051881c5-9975-4c3a-be4d-b5fdfec0ad23", - "start": { - "$date": "2021-11-23T02:23:51.000Z" - }, - "end": { - "$date": "2021-11-23T03:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "48d92b4a-53f2-4d3a-8614-affb98b086f0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-23T02:25:52.000Z" - }, - "end": { - "$date": "2021-11-23T03:37:36.000Z" - }, - "events": [ - { - "uuid": "e07da828-c191-4479-940e-1c47eda18ca8", - "start": { - "$date": "2021-11-23T02:25:52.000Z" - }, - "end": { - "$date": "2021-11-23T03:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3289b6c3-2ddf-49a0-8d0a-f47bb05cd3c4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T03:02:54.000Z" - }, - "end": { - "$date": "2021-11-23T03:22:07.000Z" - }, - "events": [ - { - "uuid": "0ce1c9e0-9ffb-4e0a-9209-07b593808417", - "start": { - "$date": "2021-11-23T03:02:54.000Z" - }, - "end": { - "$date": "2021-11-23T03:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db938890-4270-4882-9794-7a45df23bdaa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T03:23:09.000Z" - }, - "end": { - "$date": "2021-11-23T03:48:56.000Z" - }, - "events": [ - { - "uuid": "bf6ff7db-34d7-43ea-9fd6-35c10058f688", - "start": { - "$date": "2021-11-23T03:23:09.000Z" - }, - "end": { - "$date": "2021-11-23T03:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b5ab35e0-7107-415d-9c81-6695d9fce583", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-23T03:25:20.000Z" - }, - "end": { - "$date": "2021-11-23T05:29:01.000Z" - }, - "events": [ - { - "uuid": "47b37fde-e917-4af7-ad10-f499ee8a443b", - "start": { - "$date": "2021-11-23T03:25:20.000Z" - }, - "end": { - "$date": "2021-11-23T05:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "820b9af0-5051-48dc-8342-f0ae4032751c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T03:51:06.000Z" - }, - "end": { - "$date": "2021-11-23T04:24:45.000Z" - }, - "events": [ - { - "uuid": "7827768e-0b8c-4ab1-a56c-d2d3e477f2ea", - "start": { - "$date": "2021-11-23T03:51:06.000Z" - }, - "end": { - "$date": "2021-11-23T04:24:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5999123d-ebcd-4019-b424-0388be569734", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-23T04:38:54.000Z" - }, - "end": { - "$date": "2021-11-23T05:28:11.000Z" - }, - "events": [ - { - "uuid": "681c160c-ce71-4d52-b1a3-146f1b0525f1", - "start": { - "$date": "2021-11-23T04:38:54.000Z" - }, - "end": { - "$date": "2021-11-23T05:28:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f97440ef-e8cb-4d3a-8cbe-c1e73255c363", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-23T05:29:17.000Z" - }, - "end": { - "$date": "2021-11-23T05:42:07.000Z" - }, - "events": [ - { - "uuid": "8c30ca72-0c8d-4efd-b5ff-79078c57f428", - "start": { - "$date": "2021-11-23T05:29:17.000Z" - }, - "end": { - "$date": "2021-11-23T05:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f767256-5966-42eb-ba0d-9fffabbc0970", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T05:36:29.000Z" - }, - "end": { - "$date": "2021-11-23T06:15:34.000Z" - }, - "events": [ - { - "uuid": "633b5bb2-a056-49d8-b718-5388554dda78", - "start": { - "$date": "2021-11-23T05:36:29.000Z" - }, - "end": { - "$date": "2021-11-23T06:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "4c1885da-e9ee-40d4-b71e-66396a9236e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-23T05:44:11.000Z" - }, - "end": { - "$date": "2021-11-23T05:58:14.000Z" - }, - "events": [ - { - "uuid": "487c99d5-66a1-443f-8b66-8bb0a0bfb487", - "start": { - "$date": "2021-11-23T05:44:11.000Z" - }, - "end": { - "$date": "2021-11-23T05:58:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe732309-8c52-4d2a-8191-2718facbc56b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-23T06:31:04.000Z" - }, - "end": { - "$date": "2021-11-23T06:51:09.000Z" - }, - "events": [ - { - "uuid": "f4c6468d-35ff-47d6-ba05-7550c3f61816", - "start": { - "$date": "2021-11-23T06:31:04.000Z" - }, - "end": { - "$date": "2021-11-23T06:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73eb1e4f-6737-4905-96bc-0adbe87039b1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-23T06:56:01.000Z" - }, - "end": { - "$date": "2021-11-23T06:57:54.000Z" - }, - "events": [ - { - "uuid": "1eece836-0297-4b95-b06c-106ad810b120", - "start": { - "$date": "2021-11-23T06:56:01.000Z" - }, - "end": { - "$date": "2021-11-23T06:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0506570d-f75c-450c-a0e8-dfcd3709f090", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-23T06:58:15.000Z" - }, - "end": { - "$date": "2021-11-23T08:25:03.000Z" - }, - "events": [ - { - "uuid": "484cf1d8-eacb-479e-9d87-e5325c24e908", - "start": { - "$date": "2021-11-23T06:58:15.000Z" - }, - "end": { - "$date": "2021-11-23T08:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f5a2b6db-a890-41b3-a218-553150ae39b4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-23T06:59:18.000Z" - }, - "end": { - "$date": "2021-11-23T08:24:43.000Z" - }, - "events": [ - { - "uuid": "6bb904e0-9d9b-47f9-9a9f-ddb69e71c2fb", - "start": { - "$date": "2021-11-23T06:59:18.000Z" - }, - "end": { - "$date": "2021-11-23T08:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5c5ce9c-e703-4c7b-aaab-72416c8a59d9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T08:12:36.000Z" - }, - "end": { - "$date": "2021-11-23T08:42:52.000Z" - }, - "events": [ - { - "uuid": "91aa143a-bd68-4cbc-afca-977646af8d03", - "start": { - "$date": "2021-11-23T08:12:36.000Z" - }, - "end": { - "$date": "2021-11-23T08:42:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4f60d24-530a-4a64-8b02-696c50464e2e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T08:51:34.000Z" - }, - "end": { - "$date": "2021-11-23T09:20:35.000Z" - }, - "events": [ - { - "uuid": "7fe3f188-c231-453a-94c0-a515dbbd8581", - "start": { - "$date": "2021-11-23T08:51:34.000Z" - }, - "end": { - "$date": "2021-11-23T09:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44e44ce5-b80a-4587-b162-1906002e11ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T09:22:42.000Z" - }, - "end": { - "$date": "2021-11-23T09:48:36.000Z" - }, - "events": [ - { - "uuid": "a7a43636-0538-463a-8d3a-b94a4057029c", - "start": { - "$date": "2021-11-23T09:22:42.000Z" - }, - "end": { - "$date": "2021-11-23T09:48:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1ca32609-4544-4498-b7ce-33d8fa993681", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-23T10:46:33.000Z" - }, - "end": { - "$date": "2021-11-23T10:55:57.000Z" - }, - "events": [ - { - "uuid": "9b1cb4f2-49be-4b01-824f-7f99f8b93eaf", - "start": { - "$date": "2021-11-23T10:46:33.000Z" - }, - "end": { - "$date": "2021-11-23T10:55:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e509c958-f2b1-4b95-9cd6-4bb97e355380", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-23T14:30:38.000Z" - }, - "end": { - "$date": "2021-11-23T14:32:39.000Z" - }, - "events": [ - { - "uuid": "7b5b49b3-a115-4ca1-add4-88e1f41a9735", - "start": { - "$date": "2021-11-23T14:30:38.000Z" - }, - "end": { - "$date": "2021-11-23T14:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e79875e6-04e1-4cfe-8752-567674e0aaa5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-23T14:33:19.000Z" - }, - "end": { - "$date": "2021-11-24T01:20:23.000Z" - }, - "events": [ - { - "uuid": "6a660a4f-09dc-42c5-b3fa-0ab994cd2574", - "start": { - "$date": "2021-11-23T14:33:19.000Z" - }, - "end": { - "$date": "2021-11-23T21:08:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dbab2296-7d09-49a2-bd50-bcad6f4e997c", - "start": { - "$date": "2021-11-23T21:08:19.000Z" - }, - "end": { - "$date": "2021-11-23T21:12:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef9bead5-d2bb-40e6-b032-f302083df7be", - "start": { - "$date": "2021-11-23T21:12:19.000Z" - }, - "end": { - "$date": "2021-11-23T21:22:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78659c9c-334f-4749-8c02-7c1eab27ce01", - "start": { - "$date": "2021-11-23T21:22:19.000Z" - }, - "end": { - "$date": "2021-11-23T21:37:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0804ac89-b7cc-46a1-8ba1-bf630aa78cc1", - "start": { - "$date": "2021-11-23T21:37:19.000Z" - }, - "end": { - "$date": "2021-11-23T21:47:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "376ddacc-40ef-40f9-8299-bfebb422fe79", - "start": { - "$date": "2021-11-23T21:47:19.000Z" - }, - "end": { - "$date": "2021-11-23T22:34:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6a781dd-7bb2-4bd6-af58-a5ed8bf67a3d", - "start": { - "$date": "2021-11-23T22:34:19.000Z" - }, - "end": { - "$date": "2021-11-23T22:44:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7258bc2d-95fd-4653-9745-452c8950700b", - "start": { - "$date": "2021-11-23T22:44:19.000Z" - }, - "end": { - "$date": "2021-11-23T22:53:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "02236510-de0c-45cd-bde1-d370cb8ca876", - "start": { - "$date": "2021-11-23T22:53:19.000Z" - }, - "end": { - "$date": "2021-11-23T23:03:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "92de3bef-65a0-433b-9b64-0dd080181fc9", - "start": { - "$date": "2021-11-23T23:03:19.000Z" - }, - "end": { - "$date": "2021-11-23T23:04:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2a48badf-4f39-4ab5-a305-4af3c4b511c1", - "start": { - "$date": "2021-11-23T23:04:19.000Z" - }, - "end": { - "$date": "2021-11-23T23:24:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f51343fa-85f7-41d9-ae13-a334faf98dce", - "start": { - "$date": "2021-11-23T23:24:19.000Z" - }, - "end": { - "$date": "2021-11-23T23:56:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "29954239-2180-4e75-b380-ddf333ddc713", - "start": { - "$date": "2021-11-23T23:56:19.000Z" - }, - "end": { - "$date": "2021-11-24T00:07:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88bafda6-9064-400c-b88a-a8a162cb3a25", - "start": { - "$date": "2021-11-24T00:07:19.000Z" - }, - "end": { - "$date": "2021-11-24T00:57:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2380579e-d9b4-486f-bcbe-db3eb8b2a353", - "start": { - "$date": "2021-11-24T00:57:19.000Z" - }, - "end": { - "$date": "2021-11-24T01:07:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7de72d2-bda0-4c61-aa28-ccd0fca2c430", - "start": { - "$date": "2021-11-24T01:07:19.000Z" - }, - "end": { - "$date": "2021-11-24T01:20:23.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7abf1718-ce0e-4ea0-9096-d904d43b64c8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-23T17:40:45.000Z" - }, - "end": { - "$date": "2021-11-23T18:22:32.000Z" - }, - "events": [ - { - "uuid": "c1678a84-b547-48e7-b412-461c02740d76", - "start": { - "$date": "2021-11-23T17:40:45.000Z" - }, - "end": { - "$date": "2021-11-23T18:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ac30816-1c0c-4552-baac-cb10e92447be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T18:53:30.000Z" - }, - "end": { - "$date": "2021-11-23T19:24:31.000Z" - }, - "events": [ - { - "uuid": "fd20a242-ddd2-47d6-b40c-d983725248c8", - "start": { - "$date": "2021-11-23T18:53:30.000Z" - }, - "end": { - "$date": "2021-11-23T19:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "371dd31a-26f6-4bd8-8a3c-a02ed0f88457", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T19:25:39.000Z" - }, - "end": { - "$date": "2021-11-23T19:52:33.000Z" - }, - "events": [ - { - "uuid": "65fde153-4eda-4787-b93a-c8983f32f7ff", - "start": { - "$date": "2021-11-23T19:25:39.000Z" - }, - "end": { - "$date": "2021-11-23T19:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f2424d2-33b1-408a-9397-f46fb23160b0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T19:54:02.000Z" - }, - "end": { - "$date": "2021-11-23T20:24:24.000Z" - }, - "events": [ - { - "uuid": "20e29064-b07f-4d4f-8609-f867cbb3c264", - "start": { - "$date": "2021-11-23T19:54:02.000Z" - }, - "end": { - "$date": "2021-11-23T20:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd50a736-49b3-41b9-a91b-ed7f353fe84f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-23T20:49:57.000Z" - }, - "end": { - "$date": "2021-11-23T21:09:38.000Z" - }, - "events": [ - { - "uuid": "ae365b77-a270-4509-97ca-b4f442feb8ff", - "start": { - "$date": "2021-11-23T20:49:57.000Z" - }, - "end": { - "$date": "2021-11-23T21:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6065e964-63dd-470e-a95c-1fc027095411", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T22:03:45.000Z" - }, - "end": { - "$date": "2021-11-23T22:20:54.000Z" - }, - "events": [ - { - "uuid": "a84f7bd6-bea6-4dd3-825a-b6173fd088cd", - "start": { - "$date": "2021-11-23T22:03:45.000Z" - }, - "end": { - "$date": "2021-11-23T22:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f0ea718-8508-4348-9d0c-9698a8962975", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-23T22:03:49.000Z" - }, - "end": { - "$date": "2021-11-23T22:22:29.000Z" - }, - "events": [ - { - "uuid": "0a5b9d83-26a5-4163-9767-74f45cc978bf", - "start": { - "$date": "2021-11-23T22:03:49.000Z" - }, - "end": { - "$date": "2021-11-23T22:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "9a1d0ed5-7433-4ae0-913e-f85744bcd6e7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-23T22:19:38.000Z" - }, - "end": { - "$date": "2021-11-23T22:34:26.000Z" - }, - "events": [ - { - "uuid": "b50db94a-9481-460e-91a6-ef944db45410", - "start": { - "$date": "2021-11-23T22:19:38.000Z" - }, - "end": { - "$date": "2021-11-23T22:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d5e2190-2e66-4561-9ef8-02b49cdf5a6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-23T22:21:46.000Z" - }, - "end": { - "$date": "2021-11-23T22:59:21.000Z" - }, - "events": [ - { - "uuid": "07b5b7aa-85fa-4bb3-a29c-d9dc393818f1", - "start": { - "$date": "2021-11-23T22:21:46.000Z" - }, - "end": { - "$date": "2021-11-23T22:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45e42ded-cf2c-4a3e-b63d-1c969450d1ff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T00:09:10.000Z" - }, - "end": { - "$date": "2021-11-24T00:24:14.000Z" - }, - "events": [ - { - "uuid": "f76e9451-d126-43fe-8924-4fab6e7c189d", - "start": { - "$date": "2021-11-24T00:09:10.000Z" - }, - "end": { - "$date": "2021-11-24T00:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bc9fb011-649c-4421-8948-d4636cc7af83", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-24T00:39:25.000Z" - }, - "end": { - "$date": "2021-11-24T01:16:02.000Z" - }, - "events": [ - { - "uuid": "42fd8ade-bdbf-4559-91f8-aec26e990775", - "start": { - "$date": "2021-11-24T00:39:25.000Z" - }, - "end": { - "$date": "2021-11-24T01:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "cae287b5-8ed3-4c57-8caf-36eede68a500", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T01:32:56.000Z" - }, - "end": { - "$date": "2021-11-24T01:46:52.000Z" - }, - "events": [ - { - "uuid": "d24e7caf-b2d5-4594-a286-a6a8a3cea536", - "start": { - "$date": "2021-11-24T01:32:56.000Z" - }, - "end": { - "$date": "2021-11-24T01:46:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "3e56963d-442f-41bb-aeb6-9dd7be2d2cb5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T01:48:12.000Z" - }, - "end": { - "$date": "2021-11-24T01:50:13.000Z" - }, - "events": [ - { - "uuid": "691f8812-3996-4878-9726-a7bae159b80a", - "start": { - "$date": "2021-11-24T01:48:12.000Z" - }, - "end": { - "$date": "2021-11-24T01:50:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "cb758db5-f691-4d8e-8d05-959ba7470c07", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-24T01:49:11.000Z" - }, - "end": { - "$date": "2021-11-24T02:42:55.000Z" - }, - "events": [ - { - "uuid": "1c4f35f8-b7bb-4dcd-b182-99ba52064efc", - "start": { - "$date": "2021-11-24T01:49:11.000Z" - }, - "end": { - "$date": "2021-11-24T02:42:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "999af19a-22b3-48e6-9328-bf8b8a706580", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-24T01:55:09.000Z" - }, - "end": { - "$date": "2021-11-24T02:32:05.000Z" - }, - "events": [ - { - "uuid": "33d274ed-a110-4091-b90b-891f9d5d2d59", - "start": { - "$date": "2021-11-24T01:55:09.000Z" - }, - "end": { - "$date": "2021-11-24T02:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "14984114-79bc-4ad9-b04e-22485e1c4e1d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T01:57:22.000Z" - }, - "end": { - "$date": "2021-11-24T03:40:39.000Z" - }, - "events": [ - { - "uuid": "b3f0d8bf-f9cb-4990-902a-eba15362620b", - "start": { - "$date": "2021-11-24T01:57:22.000Z" - }, - "end": { - "$date": "2021-11-24T03:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "9f872af1-0d50-4f9b-a16b-80a12b0fbe7a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-24T02:52:32.000Z" - }, - "end": { - "$date": "2021-11-24T03:56:34.000Z" - }, - "events": [ - { - "uuid": "e998d890-c0e8-4b1f-9c60-3662fc2a1bd2", - "start": { - "$date": "2021-11-24T02:52:32.000Z" - }, - "end": { - "$date": "2021-11-24T03:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e2e43c8c-053d-41ca-af57-a11b6d8a652f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T03:54:09.000Z" - }, - "end": { - "$date": "2021-11-24T06:24:49.000Z" - }, - "events": [ - { - "uuid": "7e5a56e7-bc2c-4d48-8cbb-ba7ddc7dae08", - "start": { - "$date": "2021-11-24T03:54:09.000Z" - }, - "end": { - "$date": "2021-11-24T06:24:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c02bdb8-a755-4900-873f-3d3a1afa37bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T04:45:20.000Z" - }, - "end": { - "$date": "2021-11-24T05:21:16.000Z" - }, - "events": [ - { - "uuid": "8371b761-67b7-491b-b83b-efb211cb9f72", - "start": { - "$date": "2021-11-24T04:45:20.000Z" - }, - "end": { - "$date": "2021-11-24T05:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "7bc0bf69-9ea2-4732-b96a-5b9482bd4d2e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T04:54:12.000Z" - }, - "end": { - "$date": "2021-11-24T04:55:28.000Z" - }, - "events": [ - { - "uuid": "fcfc738b-bd7f-4210-a305-3d149c09af23", - "start": { - "$date": "2021-11-24T04:54:12.000Z" - }, - "end": { - "$date": "2021-11-24T04:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a0080752-fdff-40ca-b55a-9b19c084724d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T04:56:04.000Z" - }, - "end": { - "$date": "2021-11-24T05:01:44.000Z" - }, - "events": [ - { - "uuid": "7f7de100-957a-45a9-bbed-88898871b214", - "start": { - "$date": "2021-11-24T04:56:04.000Z" - }, - "end": { - "$date": "2021-11-24T05:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7a9dd0c7-787e-4b5c-b1cf-749b42a58c8b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T05:02:02.000Z" - }, - "end": { - "$date": "2021-11-24T05:04:07.000Z" - }, - "events": [ - { - "uuid": "75f4ea3b-4cf0-449d-824d-266a035ef781", - "start": { - "$date": "2021-11-24T05:02:02.000Z" - }, - "end": { - "$date": "2021-11-24T05:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f13c20f4-0d3a-4ca0-857f-d96d730e1a45", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-24T05:03:02.000Z" - }, - "end": { - "$date": "2021-11-24T08:37:29.000Z" - }, - "events": [ - { - "uuid": "313d9214-6b62-4e44-818b-40b09f92e904", - "start": { - "$date": "2021-11-24T05:03:02.000Z" - }, - "end": { - "$date": "2021-11-24T08:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fcbbb09c-7b96-4105-ba10-4cd3ec87f94e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T05:04:10.000Z" - }, - "end": { - "$date": "2021-11-24T05:14:31.000Z" - }, - "events": [ - { - "uuid": "f67bd7d0-f420-40d9-84c8-2987ce2e0a2b", - "start": { - "$date": "2021-11-24T05:04:10.000Z" - }, - "end": { - "$date": "2021-11-24T05:14:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4481abe5-7a74-40fa-947e-9ad8e0243d9e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T05:16:49.000Z" - }, - "end": { - "$date": "2021-11-24T06:05:13.000Z" - }, - "events": [ - { - "uuid": "4c0a2b32-b665-4f3b-a885-317587b8cce9", - "start": { - "$date": "2021-11-24T05:16:49.000Z" - }, - "end": { - "$date": "2021-11-24T06:05:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7b38091-b6fb-4a93-97f6-95efc4929e0c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T05:22:10.000Z" - }, - "end": { - "$date": "2021-11-24T05:54:26.000Z" - }, - "events": [ - { - "uuid": "60adf841-86b9-4528-8e36-1f309d1d5a1f", - "start": { - "$date": "2021-11-24T05:22:10.000Z" - }, - "end": { - "$date": "2021-11-24T05:54:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97bf8476-e8e2-479b-9251-194b47f560bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T05:55:39.000Z" - }, - "end": { - "$date": "2021-11-24T06:22:37.000Z" - }, - "events": [ - { - "uuid": "c8e529f1-fd87-4b86-9b58-01984e598587", - "start": { - "$date": "2021-11-24T05:55:39.000Z" - }, - "end": { - "$date": "2021-11-24T06:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d3bff4d0-ddb4-4578-935d-ab4e3bfe0388", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T06:17:04.000Z" - }, - "end": { - "$date": "2021-11-24T06:27:19.000Z" - }, - "events": [ - { - "uuid": "dd2bfc00-3dc4-4196-bb1c-5af0ac3cb9b8", - "start": { - "$date": "2021-11-24T06:17:04.000Z" - }, - "end": { - "$date": "2021-11-24T06:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6076ce3-4591-4b69-be98-0b088df28f1a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T06:24:03.000Z" - }, - "end": { - "$date": "2021-11-24T06:51:09.000Z" - }, - "events": [ - { - "uuid": "7def0638-8bfc-4ac4-a67d-f67d75e163f0", - "start": { - "$date": "2021-11-24T06:24:03.000Z" - }, - "end": { - "$date": "2021-11-24T06:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "192e89a5-7414-49c2-b3e3-fd6eb34193fa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T06:25:14.000Z" - }, - "end": { - "$date": "2021-11-24T06:52:10.000Z" - }, - "events": [ - { - "uuid": "eb42b672-6bcd-45e0-93a3-498b0d420de8", - "start": { - "$date": "2021-11-24T06:25:14.000Z" - }, - "end": { - "$date": "2021-11-24T06:52:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43ac6d1b-247b-4864-ac1f-c4e58b4ac236", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T06:53:04.000Z" - }, - "end": { - "$date": "2021-11-24T07:22:01.000Z" - }, - "events": [ - { - "uuid": "50dec217-18b8-4bc8-b1c6-0a0c553aa1d5", - "start": { - "$date": "2021-11-24T06:53:04.000Z" - }, - "end": { - "$date": "2021-11-24T07:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67911c91-2577-4e10-af96-ea7f42f218ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T07:23:29.000Z" - }, - "end": { - "$date": "2021-11-24T08:00:48.000Z" - }, - "events": [ - { - "uuid": "e4320ac9-3e37-4125-b758-5490fd9122a0", - "start": { - "$date": "2021-11-24T07:23:29.000Z" - }, - "end": { - "$date": "2021-11-24T08:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5c033732-e8af-4b8f-834f-4bcdc198c168", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T07:48:18.000Z" - }, - "end": { - "$date": "2021-11-24T08:43:15.000Z" - }, - "events": [ - { - "uuid": "84092d6c-6583-4376-809b-6befd4a0d18f", - "start": { - "$date": "2021-11-24T07:48:18.000Z" - }, - "end": { - "$date": "2021-11-24T08:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91de3059-56d4-40cc-95b0-b0347936adcc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T08:05:38.000Z" - }, - "end": { - "$date": "2021-11-24T08:07:32.000Z" - }, - "events": [ - { - "uuid": "bd872536-5cad-4850-8490-2afd6fb85eb7", - "start": { - "$date": "2021-11-24T08:05:38.000Z" - }, - "end": { - "$date": "2021-11-24T08:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b94ca86-af1d-4162-99c1-800219ea7d02", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T08:17:04.000Z" - }, - "end": { - "$date": "2021-11-24T08:39:52.000Z" - }, - "events": [ - { - "uuid": "d7c27192-40fd-467a-8025-d9ecce77203e", - "start": { - "$date": "2021-11-24T08:17:04.000Z" - }, - "end": { - "$date": "2021-11-24T08:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ee17603-ab1b-4509-bec9-dff5ce317931", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T08:44:33.000Z" - }, - "end": { - "$date": "2021-11-24T09:17:00.000Z" - }, - "events": [ - { - "uuid": "724b3b7e-bb32-46ec-bc1c-7b630867fb21", - "start": { - "$date": "2021-11-24T08:44:33.000Z" - }, - "end": { - "$date": "2021-11-24T09:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "641ae5c4-cd6b-4655-baeb-692ea52ce25a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-24T17:19:09.000Z" - }, - "end": { - "$date": "2021-11-24T18:33:32.000Z" - }, - "events": [ - { - "uuid": "e9dfa344-1776-4b7c-973d-294d138f0001", - "start": { - "$date": "2021-11-24T17:19:09.000Z" - }, - "end": { - "$date": "2021-11-24T18:33:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f31a1825-02fa-416f-a5a9-ab072f4a1f29", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T17:32:25.000Z" - }, - "end": { - "$date": "2021-11-24T17:41:00.000Z" - }, - "events": [ - { - "uuid": "14397cad-2d6a-484b-9900-0b30ea5196e8", - "start": { - "$date": "2021-11-24T17:32:25.000Z" - }, - "end": { - "$date": "2021-11-24T17:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "46f2a51a-8ade-4982-a756-2d7a172275d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-24T17:53:02.000Z" - }, - "end": { - "$date": "2021-11-24T18:03:52.000Z" - }, - "events": [ - { - "uuid": "64ffb51d-e74c-4e97-aa49-14ffed7db253", - "start": { - "$date": "2021-11-24T17:53:02.000Z" - }, - "end": { - "$date": "2021-11-24T18:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e451a279-c8f0-45e0-86ef-1bc57e0b4c97", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-24T19:37:51.000Z" - }, - "end": { - "$date": "2021-11-24T22:14:24.000Z" - }, - "events": [ - { - "uuid": "05965b3c-41d9-4f72-bb72-1e552d3d8b32", - "start": { - "$date": "2021-11-24T19:37:51.000Z" - }, - "end": { - "$date": "2021-11-24T21:19:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da37ff8d-3c76-46b8-a9f7-548dd6e9e212", - "start": { - "$date": "2021-11-24T21:19:51.000Z" - }, - "end": { - "$date": "2021-11-24T21:24:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "31bda4a9-d3e1-4bfe-b311-92dfbee07dcf", - "start": { - "$date": "2021-11-24T21:24:51.000Z" - }, - "end": { - "$date": "2021-11-24T21:44:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b096320e-fc7d-459f-93ad-a1af1ea24649", - "start": { - "$date": "2021-11-24T21:44:51.000Z" - }, - "end": { - "$date": "2021-11-24T21:49:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9de9f27b-f4af-4c4e-9333-05775d74d660", - "start": { - "$date": "2021-11-24T21:49:51.000Z" - }, - "end": { - "$date": "2021-11-24T22:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2b989c5f-448a-4db4-ba39-cc98b2bc76fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-24T19:52:28.000Z" - }, - "end": { - "$date": "2021-11-24T20:48:32.000Z" - }, - "events": [ - { - "uuid": "396a27fe-cd1f-45d6-9b92-d02c74592f3b", - "start": { - "$date": "2021-11-24T19:52:28.000Z" - }, - "end": { - "$date": "2021-11-24T20:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "13e78f0d-8c38-4d1f-9a22-9b333e3bc603", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-24T20:57:34.000Z" - }, - "end": { - "$date": "2021-11-24T21:04:23.000Z" - }, - "events": [ - { - "uuid": "ac549c92-3e71-4818-8a51-f5e124d2679c", - "start": { - "$date": "2021-11-24T20:57:34.000Z" - }, - "end": { - "$date": "2021-11-24T21:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "e7710b1f-3ab3-437b-8e89-a9b2e2146511", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-24T21:04:39.000Z" - }, - "end": { - "$date": "2021-11-24T21:44:14.000Z" - }, - "events": [ - { - "uuid": "9df0175b-5564-4557-8127-7b6613332132", - "start": { - "$date": "2021-11-24T21:04:39.000Z" - }, - "end": { - "$date": "2021-11-24T21:44:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "c859317f-4118-4af5-8f63-1c97e89ab1ac", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-24T21:39:06.000Z" - }, - "end": { - "$date": "2021-11-24T22:41:23.000Z" - }, - "events": [ - { - "uuid": "f5a3a76e-7a44-42a0-8478-b39adb5c593c", - "start": { - "$date": "2021-11-24T21:39:06.000Z" - }, - "end": { - "$date": "2021-11-24T22:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "aa335436-0fca-40c8-b439-9c2b68600752", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-24T22:14:53.000Z" - }, - "end": { - "$date": "2021-11-24T23:32:08.000Z" - }, - "events": [ - { - "uuid": "4b76b8f8-d9f1-473f-9b0e-600d14ed2d2a", - "start": { - "$date": "2021-11-24T22:14:53.000Z" - }, - "end": { - "$date": "2021-11-24T23:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "70a51ad4-c7b0-4950-afe1-b429e03ae21b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-24T22:18:02.000Z" - }, - "end": { - "$date": "2021-11-25T00:03:55.000Z" - }, - "events": [ - { - "uuid": "eaf8a814-1f2b-4111-9ca1-bed122e115ea", - "start": { - "$date": "2021-11-24T22:18:02.000Z" - }, - "end": { - "$date": "2021-11-25T00:03:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fbb13f3d-69bc-4eaa-b5dc-45781b848530", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-24T22:50:06.000Z" - }, - "end": { - "$date": "2021-11-24T23:21:26.000Z" - }, - "events": [ - { - "uuid": "9fe3cafa-a226-4e14-8c8c-88901e11e83b", - "start": { - "$date": "2021-11-24T22:50:06.000Z" - }, - "end": { - "$date": "2021-11-24T23:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af9e02e2-d216-4132-9b5a-d48e947199b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-25T00:07:06.000Z" - }, - "end": { - "$date": "2021-11-25T00:46:15.000Z" - }, - "events": [ - { - "uuid": "8cd4435e-9f0c-45d5-9cc0-c4198cc93fd6", - "start": { - "$date": "2021-11-25T00:07:06.000Z" - }, - "end": { - "$date": "2021-11-25T00:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "53bc5632-e169-4025-8c85-182d30398908", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-25T00:21:20.000Z" - }, - "end": { - "$date": "2021-11-25T00:55:02.000Z" - }, - "events": [ - { - "uuid": "d530f837-228b-4aa6-9abe-f6d1de6433fa", - "start": { - "$date": "2021-11-25T00:21:20.000Z" - }, - "end": { - "$date": "2021-11-25T00:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9ae9d40a-c7fb-48c2-8b45-f57e8b1b160b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-25T00:29:09.000Z" - }, - "end": { - "$date": "2021-11-25T01:08:30.000Z" - }, - "events": [ - { - "uuid": "eb5cbdd2-e1b5-4c32-b5c7-fc4357fc9d4a", - "start": { - "$date": "2021-11-25T00:29:09.000Z" - }, - "end": { - "$date": "2021-11-25T01:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "516abb3e-f401-445f-8f74-02d84ba4b0c4", - "uuid": "1c0ff0f7-fc34-4f60-987d-36ee559e29ba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T00:36:04.000Z" - }, - "end": { - "$date": "2021-11-25T00:39:18.000Z" - }, - "events": [ - { - "uuid": "7de58e8e-e002-4bbe-b754-af7419bf41aa", - "start": { - "$date": "2021-11-25T00:36:04.000Z" - }, - "end": { - "$date": "2021-11-25T00:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c5c55a84-cbbf-476b-9a01-36f1fb97344b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T00:39:20.000Z" - }, - "end": { - "$date": "2021-11-25T01:34:35.000Z" - }, - "events": [ - { - "uuid": "8f44c94e-7f17-4549-b925-9a2868ccec04", - "start": { - "$date": "2021-11-25T00:39:20.000Z" - }, - "end": { - "$date": "2021-11-25T01:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5f837c18-976b-4d13-9791-13e1372df0f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T01:23:52.000Z" - }, - "end": { - "$date": "2021-11-25T01:33:13.000Z" - }, - "events": [ - { - "uuid": "5a079a77-b34f-41bc-a53d-0a60a880cbaf", - "start": { - "$date": "2021-11-25T01:23:52.000Z" - }, - "end": { - "$date": "2021-11-25T01:33:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aeaf8500-3457-4423-a6f5-7f062fb790df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-25T00:47:28.000Z" - }, - "end": { - "$date": "2021-11-25T01:25:01.000Z" - }, - "events": [ - { - "uuid": "a1e52d02-61da-4c58-9767-422d78e47a71", - "start": { - "$date": "2021-11-25T00:47:28.000Z" - }, - "end": { - "$date": "2021-11-25T01:25:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a1696472-ea71-4769-b893-385449c02549", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T02:02:19.000Z" - }, - "end": { - "$date": "2021-11-25T02:49:20.000Z" - }, - "events": [ - { - "uuid": "d6247bfa-41ad-4038-b211-2973eb44008d", - "start": { - "$date": "2021-11-25T02:02:19.000Z" - }, - "end": { - "$date": "2021-11-25T02:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1b041436-34e9-4211-8cab-1730afdaf53e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T02:49:57.000Z" - }, - "end": { - "$date": "2021-11-25T02:52:01.000Z" - }, - "events": [ - { - "uuid": "9a62566b-fc41-4bda-a648-1e511cf8529d", - "start": { - "$date": "2021-11-25T02:49:57.000Z" - }, - "end": { - "$date": "2021-11-25T02:52:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "62dcadfb-470f-4be6-be69-3e3b5ca4a57d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T02:55:53.000Z" - }, - "end": { - "$date": "2021-11-25T03:53:46.000Z" - }, - "events": [ - { - "uuid": "9aadd766-7277-4e55-9215-004b3f944605", - "start": { - "$date": "2021-11-25T02:55:53.000Z" - }, - "end": { - "$date": "2021-11-25T03:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99d1900f-fb47-40fe-b1a5-49ca006289fc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T03:30:00.000Z" - }, - "end": { - "$date": "2021-11-25T03:43:15.000Z" - }, - "events": [ - { - "uuid": "067c0959-26e3-43c3-8a85-2e938fe24335", - "start": { - "$date": "2021-11-25T03:30:00.000Z" - }, - "end": { - "$date": "2021-11-25T03:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d0c1392-9316-4b6b-a71a-b123d570886c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T03:47:20.000Z" - }, - "end": { - "$date": "2021-11-25T04:04:45.000Z" - }, - "events": [ - { - "uuid": "a8682b1f-a18e-4bc2-a8b1-e18bb58c0264", - "start": { - "$date": "2021-11-25T03:47:20.000Z" - }, - "end": { - "$date": "2021-11-25T04:04:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ad137d23-bf56-47df-b056-cb85a80b792f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T03:58:08.000Z" - }, - "end": { - "$date": "2021-11-25T04:16:09.000Z" - }, - "events": [ - { - "uuid": "d4654686-f9e3-46ce-a2b2-9d5d401e3042", - "start": { - "$date": "2021-11-25T03:58:08.000Z" - }, - "end": { - "$date": "2021-11-25T04:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e9d103e9-c1bd-4899-ac75-2ceb88738d7f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T04:10:16.000Z" - }, - "end": { - "$date": "2021-11-25T04:32:48.000Z" - }, - "events": [ - { - "uuid": "e1ef25f4-9864-43db-b005-bcc846a6a733", - "start": { - "$date": "2021-11-25T04:10:16.000Z" - }, - "end": { - "$date": "2021-11-25T04:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "65fb2cae-5c3f-43a1-ab96-516e9536be0a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-25T04:14:51.000Z" - }, - "end": { - "$date": "2021-11-25T06:03:53.000Z" - }, - "events": [ - { - "uuid": "db99c13c-0a5a-4607-a385-531906e8f301", - "start": { - "$date": "2021-11-25T04:14:51.000Z" - }, - "end": { - "$date": "2021-11-25T06:03:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7e62b720-3fdd-4674-b9cf-6ce9d54c0278", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T04:16:26.000Z" - }, - "end": { - "$date": "2021-11-25T04:42:53.000Z" - }, - "events": [ - { - "uuid": "0ecbefc0-4fce-4ce4-aca1-79d38bfe19df", - "start": { - "$date": "2021-11-25T04:16:26.000Z" - }, - "end": { - "$date": "2021-11-25T04:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "73f14265-4627-45c0-af47-b09350814234", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T04:35:02.000Z" - }, - "end": { - "$date": "2021-11-25T04:48:42.000Z" - }, - "events": [ - { - "uuid": "8304f584-e8f3-403e-b89f-23517637d663", - "start": { - "$date": "2021-11-25T04:35:02.000Z" - }, - "end": { - "$date": "2021-11-25T04:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "df9de0f2-3339-4fbf-bb2a-27e900ff66da", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-25T04:42:54.000Z" - }, - "end": { - "$date": "2021-11-25T06:03:17.000Z" - }, - "events": [ - { - "uuid": "3c053729-505e-4179-9547-2a02835c2b0a", - "start": { - "$date": "2021-11-25T04:42:54.000Z" - }, - "end": { - "$date": "2021-11-25T06:03:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "14c6330e-341e-4df1-b0db-a0152fa4181f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T04:55:32.000Z" - }, - "end": { - "$date": "2021-11-25T04:56:32.000Z" - }, - "events": [ - { - "uuid": "5f5c2d3e-3f2a-4239-8d42-57666b2ae7ad", - "start": { - "$date": "2021-11-25T04:55:32.000Z" - }, - "end": { - "$date": "2021-11-25T04:56:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bcd91be5-28a4-438c-b4c7-bda7bf56189c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T04:56:37.000Z" - }, - "end": { - "$date": "2021-11-25T05:58:08.000Z" - }, - "events": [ - { - "uuid": "3b0a68fc-bcf5-42cd-b2b7-140a450f3c44", - "start": { - "$date": "2021-11-25T04:56:37.000Z" - }, - "end": { - "$date": "2021-11-25T05:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1e3a0e33-2d87-49b7-9959-f4795671b33b", - "uuid": "b676fc4e-1c18-4ac7-a552-5fc2c93e7c66", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-25T05:03:39.000Z" - }, - "end": { - "$date": "2021-11-25T05:09:09.000Z" - }, - "events": [ - { - "uuid": "ac301f0d-c155-42d6-8e3d-029112426d8a", - "start": { - "$date": "2021-11-25T05:03:39.000Z" - }, - "end": { - "$date": "2021-11-25T05:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1e3a0e33-2d87-49b7-9959-f4795671b33b", - "uuid": "3617b87d-112c-4c8b-a510-7cd01fa8c269", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-25T05:09:30.000Z" - }, - "end": { - "$date": "2021-11-25T05:21:06.000Z" - }, - "events": [ - { - "uuid": "d99b5a1d-e746-42e5-badb-4b5c87a7bc9b", - "start": { - "$date": "2021-11-25T05:09:30.000Z" - }, - "end": { - "$date": "2021-11-25T05:21:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "eacb8daa-e7f7-4fd6-8cd0-00c62900d686", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-25T05:24:01.000Z" - }, - "end": { - "$date": "2021-11-25T05:53:37.000Z" - }, - "events": [ - { - "uuid": "f0664cf9-6342-4fe6-bbbe-c9eba1e724ce", - "start": { - "$date": "2021-11-25T05:24:01.000Z" - }, - "end": { - "$date": "2021-11-25T05:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "34c8a45d-d2e4-44b6-8ad2-93e1781ca2ea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-25T05:53:38.000Z" - }, - "end": { - "$date": "2021-11-25T05:55:00.000Z" - }, - "events": [ - { - "uuid": "425e3262-f8c1-4dbf-9fd5-a58f06599d86", - "start": { - "$date": "2021-11-25T05:53:38.000Z" - }, - "end": { - "$date": "2021-11-25T05:55:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "155a5bfd-45de-4469-b02d-b785d2d98d21", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-25T05:57:21.000Z" - }, - "end": { - "$date": "2021-11-25T06:37:38.000Z" - }, - "events": [ - { - "uuid": "10eac73e-9804-439f-8ad9-805134a4f18c", - "start": { - "$date": "2021-11-25T05:57:21.000Z" - }, - "end": { - "$date": "2021-11-25T06:37:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "86e1cca5-6ad6-47a1-a326-4c17a46b72c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T05:59:03.000Z" - }, - "end": { - "$date": "2021-11-25T06:03:39.000Z" - }, - "events": [ - { - "uuid": "45f311f6-c543-48f9-bd97-87a52969e9c0", - "start": { - "$date": "2021-11-25T05:59:03.000Z" - }, - "end": { - "$date": "2021-11-25T06:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0783c70c-65a4-49fd-8988-7fc43d9e7ea8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-25T06:38:29.000Z" - }, - "end": { - "$date": "2021-11-25T07:34:19.000Z" - }, - "events": [ - { - "uuid": "c542ed0e-5d41-47d6-b75c-37ed040b6746", - "start": { - "$date": "2021-11-25T06:38:29.000Z" - }, - "end": { - "$date": "2021-11-25T07:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "42f7ff7b-bdf2-4717-afc6-1c3218c3b0c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-25T06:45:55.000Z" - }, - "end": { - "$date": "2021-11-25T07:47:22.000Z" - }, - "events": [ - { - "uuid": "dd0f7f66-dc84-4ba1-91fa-957c1169ebdb", - "start": { - "$date": "2021-11-25T06:45:55.000Z" - }, - "end": { - "$date": "2021-11-25T07:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "236212d3-7c27-4716-b349-5e2ee02cc0c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-25T07:13:54.000Z" - }, - "end": { - "$date": "2021-11-25T07:42:14.000Z" - }, - "events": [ - { - "uuid": "139600b3-bb75-4115-b77e-a7ae818b9d84", - "start": { - "$date": "2021-11-25T07:13:54.000Z" - }, - "end": { - "$date": "2021-11-25T07:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26008983-5ad1-4ab2-b3ed-c002eec7fd93", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-25T07:47:59.000Z" - }, - "end": { - "$date": "2021-11-25T08:25:02.000Z" - }, - "events": [ - { - "uuid": "665bf46d-b9ae-4605-954d-5d0210302cb0", - "start": { - "$date": "2021-11-25T07:47:59.000Z" - }, - "end": { - "$date": "2021-11-25T08:25:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be15308a-b864-40a9-9fe7-67d4d82984d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-25T08:27:08.000Z" - }, - "end": { - "$date": "2021-11-25T09:00:59.000Z" - }, - "events": [ - { - "uuid": "f29b3c4f-eff9-45fb-b04f-3339048365e1", - "start": { - "$date": "2021-11-25T08:27:08.000Z" - }, - "end": { - "$date": "2021-11-25T09:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6d88743a-ab15-4b69-aca0-60d852f6e83d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T17:08:06.000Z" - }, - "end": { - "$date": "2021-11-25T17:19:28.000Z" - }, - "events": [ - { - "uuid": "be025516-4aa4-4250-afc3-4ce90f780fbc", - "start": { - "$date": "2021-11-25T17:08:06.000Z" - }, - "end": { - "$date": "2021-11-25T17:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "cc89f867-ce12-48cf-8ef2-5027dcb20ac4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-25T17:34:23.000Z" - }, - "end": { - "$date": "2021-11-25T19:40:27.000Z" - }, - "events": [ - { - "uuid": "fb814bc8-f587-4ea9-a090-1bfaa866c74a", - "start": { - "$date": "2021-11-25T17:34:23.000Z" - }, - "end": { - "$date": "2021-11-25T19:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "caffbccd-ee08-4fe6-8387-12c505afe2f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-25T19:45:12.000Z" - }, - "end": { - "$date": "2021-11-25T19:48:14.000Z" - }, - "events": [ - { - "uuid": "c73135d8-4ed6-41fb-9ba5-6dd9efc5ff0e", - "start": { - "$date": "2021-11-25T19:45:12.000Z" - }, - "end": { - "$date": "2021-11-25T19:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f87ebff2-c87c-4116-b386-a1e37ce4a744", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-25T19:48:49.000Z" - }, - "end": { - "$date": "2021-11-25T20:01:47.000Z" - }, - "events": [ - { - "uuid": "bf876b80-5f63-4aae-a2de-8164108d6d96", - "start": { - "$date": "2021-11-25T19:48:49.000Z" - }, - "end": { - "$date": "2021-11-25T20:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "85b30e61-517e-40c6-9133-1f54040a83e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T21:23:08.000Z" - }, - "end": { - "$date": "2021-11-25T21:48:50.000Z" - }, - "events": [ - { - "uuid": "8e00acc9-a530-473f-aa05-22f7809e88a8", - "start": { - "$date": "2021-11-25T21:23:08.000Z" - }, - "end": { - "$date": "2021-11-25T21:48:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efced52d-af1e-4939-ae88-c5e89b502afe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T21:52:44.000Z" - }, - "end": { - "$date": "2021-11-25T22:06:00.000Z" - }, - "events": [ - { - "uuid": "ea021483-b38d-4b69-8457-d908f42ad300", - "start": { - "$date": "2021-11-25T21:52:44.000Z" - }, - "end": { - "$date": "2021-11-25T22:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbedf4d9-4dc2-4b44-b7cb-68ace1f14103", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T22:07:15.000Z" - }, - "end": { - "$date": "2021-11-25T22:27:41.000Z" - }, - "events": [ - { - "uuid": "2e7754f4-941c-4513-83b2-e064ca1d5c02", - "start": { - "$date": "2021-11-25T22:07:15.000Z" - }, - "end": { - "$date": "2021-11-25T22:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8d298572-ca15-468e-b13f-2f9cc3487372", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-25T22:52:29.000Z" - }, - "end": { - "$date": "2021-11-25T23:53:17.000Z" - }, - "events": [ - { - "uuid": "234e05a4-8e45-42c2-bf28-5c1ed3cfd901", - "start": { - "$date": "2021-11-25T22:52:29.000Z" - }, - "end": { - "$date": "2021-11-25T23:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fc13c29f-d763-49d5-b834-ef495aef3d3e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-26T01:02:24.000Z" - }, - "end": { - "$date": "2021-11-26T05:20:30.000Z" - }, - "events": [ - { - "uuid": "f36b02c4-07cb-415d-8afd-c8e62f8a3c0c", - "start": { - "$date": "2021-11-26T01:02:24.000Z" - }, - "end": { - "$date": "2021-11-26T05:20:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f801601a-f0ad-49c2-a9b2-03a5b3895439", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-26T01:02:23.000Z" - }, - "end": { - "$date": "2021-11-26T02:58:16.000Z" - }, - "events": [ - { - "uuid": "12763d3b-feb9-4c8c-bee8-bf0e3837e6dd", - "start": { - "$date": "2021-11-26T01:02:23.000Z" - }, - "end": { - "$date": "2021-11-26T02:58:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "79514ee1-ace2-450d-8110-5be767fbd295", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-26T01:51:23.000Z" - }, - "end": { - "$date": "2021-11-26T03:40:37.000Z" - }, - "events": [ - { - "uuid": "42c59de4-db29-4d2c-8225-c941cd0ff609", - "start": { - "$date": "2021-11-26T01:51:23.000Z" - }, - "end": { - "$date": "2021-11-26T02:23:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1fc9952-4cc6-4308-b355-f19a78a333b7", - "start": { - "$date": "2021-11-26T02:23:23.000Z" - }, - "end": { - "$date": "2021-11-26T02:28:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03ffecbc-1c24-4302-b738-8f759866d46c", - "start": { - "$date": "2021-11-26T02:28:23.000Z" - }, - "end": { - "$date": "2021-11-26T03:40:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c09134d1-b4a8-4cad-8f5a-0823f45c3277", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-26T01:55:56.000Z" - }, - "end": { - "$date": "2021-11-26T02:54:18.000Z" - }, - "events": [ - { - "uuid": "6a1151fe-6d87-4afb-a076-cc47732b396b", - "start": { - "$date": "2021-11-26T01:55:56.000Z" - }, - "end": { - "$date": "2021-11-26T02:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54b873b0-6722-41ff-b2bb-e57169b33007", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T02:33:03.000Z" - }, - "end": { - "$date": "2021-11-26T03:07:45.000Z" - }, - "events": [ - { - "uuid": "0b3ae423-f017-46e3-81de-bc67c867d43a", - "start": { - "$date": "2021-11-26T02:33:03.000Z" - }, - "end": { - "$date": "2021-11-26T03:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "918a4574-964b-4ca0-94b5-b1c1749b57fb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-26T02:56:47.000Z" - }, - "end": { - "$date": "2021-11-26T03:40:15.000Z" - }, - "events": [ - { - "uuid": "1c834676-b946-48d2-823c-aaa5d751e3dc", - "start": { - "$date": "2021-11-26T02:56:47.000Z" - }, - "end": { - "$date": "2021-11-26T03:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6bec6b6d-a83a-4679-802a-f0e3f54ff170", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-26T02:58:41.000Z" - }, - "end": { - "$date": "2021-11-26T06:54:48.000Z" - }, - "events": [ - { - "uuid": "5d06a6fe-a5a2-494b-be13-dbab28bf429a", - "start": { - "$date": "2021-11-26T02:58:41.000Z" - }, - "end": { - "$date": "2021-11-26T06:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9480363b-6e82-4bcd-9c53-a414b45a47df", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T03:26:17.000Z" - }, - "end": { - "$date": "2021-11-26T03:59:54.000Z" - }, - "events": [ - { - "uuid": "8e95f4b9-05cb-4ef4-ab52-1b7480a9ec82", - "start": { - "$date": "2021-11-26T03:26:17.000Z" - }, - "end": { - "$date": "2021-11-26T03:37:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3011838-6872-4b6d-bb2a-9a19dbff9e39", - "start": { - "$date": "2021-11-26T03:37:17.000Z" - }, - "end": { - "$date": "2021-11-26T03:44:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c3b1180-5900-4ab8-b9a5-332b1ae825ae", - "start": { - "$date": "2021-11-26T03:44:17.000Z" - }, - "end": { - "$date": "2021-11-26T03:59:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8e9c0fc0-24ba-4bf1-ac7e-d58aa11d19c3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-26T03:40:25.000Z" - }, - "end": { - "$date": "2021-11-26T06:55:19.000Z" - }, - "events": [ - { - "uuid": "7d7b96ca-8b31-49f7-bda2-d1e80d7dfd5e", - "start": { - "$date": "2021-11-26T03:40:25.000Z" - }, - "end": { - "$date": "2021-11-26T06:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6ea9fad0-b4b4-4b41-ad86-b0fcc39ea161", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-26T03:40:47.000Z" - }, - "end": { - "$date": "2021-11-26T03:58:28.000Z" - }, - "events": [ - { - "uuid": "6f77b9a6-a4d5-430a-8a84-ce7c6f1134a5", - "start": { - "$date": "2021-11-26T03:40:47.000Z" - }, - "end": { - "$date": "2021-11-26T03:58:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "127f5447-7732-47d5-8910-7d92cddb48da", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-26T03:59:39.000Z" - }, - "end": { - "$date": "2021-11-26T05:30:43.000Z" - }, - "events": [ - { - "uuid": "f291095a-bb50-446b-9a71-ed13096a9f0a", - "start": { - "$date": "2021-11-26T03:59:39.000Z" - }, - "end": { - "$date": "2021-11-26T05:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "669028bf-7e9b-45d9-abab-96f15e03d942", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T04:00:48.000Z" - }, - "end": { - "$date": "2021-11-26T04:36:51.000Z" - }, - "events": [ - { - "uuid": "869e13e9-4a54-4c6e-9417-a8cedc5f449d", - "start": { - "$date": "2021-11-26T04:00:48.000Z" - }, - "end": { - "$date": "2021-11-26T04:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62d638d7-a126-44be-87ef-80565ceedc42", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T04:37:36.000Z" - }, - "end": { - "$date": "2021-11-26T05:16:38.000Z" - }, - "events": [ - { - "uuid": "63d671db-9a81-4b7d-81aa-070c0e4368a6", - "start": { - "$date": "2021-11-26T04:37:36.000Z" - }, - "end": { - "$date": "2021-11-26T05:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bbda22d-f7f0-4b9c-84d1-c0e743373cf1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-26T04:37:36.000Z" - }, - "end": { - "$date": "2021-11-26T05:16:50.000Z" - }, - "events": [ - { - "uuid": "0513d9b1-e81d-4066-a1fb-b07bb291765b", - "start": { - "$date": "2021-11-26T04:37:36.000Z" - }, - "end": { - "$date": "2021-11-26T05:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "dd6bd59b-7135-4542-933b-ca43b9b36965", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-26T04:38:27.000Z" - }, - "end": { - "$date": "2021-11-26T06:00:45.000Z" - }, - "events": [ - { - "uuid": "6fff5406-be01-4a37-a402-40731824ad77", - "start": { - "$date": "2021-11-26T04:38:27.000Z" - }, - "end": { - "$date": "2021-11-26T06:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ccc69e4d-f8f3-4504-8fc3-eda802bd2783", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-26T04:41:46.000Z" - }, - "end": { - "$date": "2021-11-26T06:54:49.000Z" - }, - "events": [ - { - "uuid": "d2111535-a033-4de2-9c70-7bfcb5c95d6c", - "start": { - "$date": "2021-11-26T04:41:46.000Z" - }, - "end": { - "$date": "2021-11-26T06:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fa57dd92-c19b-4e5d-b8cd-3b80b2f4e67b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-26T05:18:50.000Z" - }, - "end": { - "$date": "2021-11-26T05:23:35.000Z" - }, - "events": [ - { - "uuid": "8c01c26d-0093-4fa7-9429-c2dfb6cc6d32", - "start": { - "$date": "2021-11-26T05:18:50.000Z" - }, - "end": { - "$date": "2021-11-26T05:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dd9c8577-7882-427a-b773-dd7cb204b7bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-26T05:22:23.000Z" - }, - "end": { - "$date": "2021-11-26T06:55:11.000Z" - }, - "events": [ - { - "uuid": "47eabf2e-60bc-482e-b5ce-3155f547981e", - "start": { - "$date": "2021-11-26T05:22:23.000Z" - }, - "end": { - "$date": "2021-11-26T06:55:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d0e9235e-bdd7-4d0f-a5f5-b338711c4bb7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-26T05:23:45.000Z" - }, - "end": { - "$date": "2021-11-26T05:32:09.000Z" - }, - "events": [ - { - "uuid": "941ead9b-d5c1-496d-b443-6882321d5b16", - "start": { - "$date": "2021-11-26T05:23:45.000Z" - }, - "end": { - "$date": "2021-11-26T05:32:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4e0f1b4-116a-46fb-ac34-ca35f2c24791", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T05:29:49.000Z" - }, - "end": { - "$date": "2021-11-26T06:14:42.000Z" - }, - "events": [ - { - "uuid": "1105250f-dad0-4640-ac04-7fc6da9864ef", - "start": { - "$date": "2021-11-26T05:29:49.000Z" - }, - "end": { - "$date": "2021-11-26T06:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "711418cb-7480-41ce-87ea-09eb6a8772fa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-26T05:36:46.000Z" - }, - "end": { - "$date": "2021-11-26T06:15:20.000Z" - }, - "events": [ - { - "uuid": "7dfc0c7c-fdab-4159-a31b-1cabf8de6e77", - "start": { - "$date": "2021-11-26T05:36:46.000Z" - }, - "end": { - "$date": "2021-11-26T06:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "9231bf66-947a-44fe-b509-1c756403f38a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-26T05:37:46.000Z" - }, - "end": { - "$date": "2021-11-26T06:03:35.000Z" - }, - "events": [ - { - "uuid": "7579844e-783b-4700-9f59-1bbaf7d98ed4", - "start": { - "$date": "2021-11-26T05:37:46.000Z" - }, - "end": { - "$date": "2021-11-26T06:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "086ea8bf-7512-4728-b892-f06568eefafd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-26T06:00:03.000Z" - }, - "end": { - "$date": "2021-11-26T06:39:35.000Z" - }, - "events": [ - { - "uuid": "5ed2aa66-467e-459b-bb09-fff127d5bde5", - "start": { - "$date": "2021-11-26T06:00:03.000Z" - }, - "end": { - "$date": "2021-11-26T06:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cb421f80-03f2-4001-991c-82e54e61e260", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-26T06:40:15.000Z" - }, - "end": { - "$date": "2021-11-26T08:31:52.000Z" - }, - "events": [ - { - "uuid": "6a5c5786-4a06-4a06-a024-cef2cc57e8b1", - "start": { - "$date": "2021-11-26T06:40:15.000Z" - }, - "end": { - "$date": "2021-11-26T08:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fb53b2d2-bb9a-4558-ade5-340914e21335", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-26T07:03:51.000Z" - }, - "end": { - "$date": "2021-11-26T07:15:25.000Z" - }, - "events": [ - { - "uuid": "47e606f1-5221-40ab-8317-5cc962effca6", - "start": { - "$date": "2021-11-26T07:03:51.000Z" - }, - "end": { - "$date": "2021-11-26T07:15:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab52849b-8e74-4d37-b33a-372991a3a389", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T17:05:06.000Z" - }, - "end": { - "$date": "2021-11-26T17:28:24.000Z" - }, - "events": [ - { - "uuid": "442ce4e6-f0ee-4ad5-b544-91931d175779", - "start": { - "$date": "2021-11-26T17:05:06.000Z" - }, - "end": { - "$date": "2021-11-26T17:28:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1de10c19-e0d7-4896-b548-b628e67f4016", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-26T17:35:47.000Z" - }, - "end": { - "$date": "2021-11-26T18:56:14.000Z" - }, - "events": [ - { - "uuid": "3ff80a67-cb0a-4aa8-8d59-c8d0b48f931d", - "start": { - "$date": "2021-11-26T17:35:47.000Z" - }, - "end": { - "$date": "2021-11-26T18:35:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7cc9416-88f4-4591-9ce3-5dfc5b7de480", - "start": { - "$date": "2021-11-26T18:35:47.000Z" - }, - "end": { - "$date": "2021-11-26T18:39:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "983f5495-fa1b-4426-8c98-eb3eed96ea97", - "start": { - "$date": "2021-11-26T18:39:47.000Z" - }, - "end": { - "$date": "2021-11-26T18:50:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b78745eb-e8e8-4966-b09a-496988c93780", - "start": { - "$date": "2021-11-26T18:50:47.000Z" - }, - "end": { - "$date": "2021-11-26T18:56:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb1f3f99-61e7-4078-bd54-68f5190e0d41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T17:48:29.000Z" - }, - "end": { - "$date": "2021-11-26T18:09:15.000Z" - }, - "events": [ - { - "uuid": "2a1d9628-65c5-4c29-b5ca-50cb7f87b325", - "start": { - "$date": "2021-11-26T17:48:29.000Z" - }, - "end": { - "$date": "2021-11-26T18:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "01c3f5b9-8ce5-452d-9388-40853a536688", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T18:09:50.000Z" - }, - "end": { - "$date": "2021-11-26T19:17:03.000Z" - }, - "events": [ - { - "uuid": "25a5f0d7-9cbc-416f-8086-4c345bcef872", - "start": { - "$date": "2021-11-26T18:09:50.000Z" - }, - "end": { - "$date": "2021-11-26T19:17:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4af40f6b-8fed-461f-b6b4-ad20784a205e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T19:18:03.000Z" - }, - "end": { - "$date": "2021-11-26T19:35:04.000Z" - }, - "events": [ - { - "uuid": "3fdb3b57-082b-4019-ab6d-c7202210ed6a", - "start": { - "$date": "2021-11-26T19:18:03.000Z" - }, - "end": { - "$date": "2021-11-26T19:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9727f1a5-7cf0-43ba-9f20-af0cd9fce586", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T19:37:04.000Z" - }, - "end": { - "$date": "2021-11-26T19:49:45.000Z" - }, - "events": [ - { - "uuid": "f6531f92-9832-4f3d-af89-f6da2d451eb2", - "start": { - "$date": "2021-11-26T19:37:04.000Z" - }, - "end": { - "$date": "2021-11-26T19:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "e6ad561f-a264-4a20-a63e-ea8c22da6fa7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-26T20:08:16.000Z" - }, - "end": { - "$date": "2021-11-26T20:12:38.000Z" - }, - "events": [ - { - "uuid": "84855393-e3e2-4301-a1d1-4578cbe3c8e6", - "start": { - "$date": "2021-11-26T20:08:16.000Z" - }, - "end": { - "$date": "2021-11-26T20:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2bf44cb1-7156-4698-aef9-6f94ea92afbe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-11-26T20:13:56.000Z" - }, - "end": { - "$date": "2021-11-26T21:14:50.000Z" - }, - "events": [ - { - "uuid": "5a65d482-9cde-49bd-a646-f9ccc71a8f9c", - "start": { - "$date": "2021-11-26T20:13:56.000Z" - }, - "end": { - "$date": "2021-11-26T21:14:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b881334-3cb7-48f9-8cfc-c5681e548d12", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T21:24:23.000Z" - }, - "end": { - "$date": "2021-11-26T21:41:50.000Z" - }, - "events": [ - { - "uuid": "1528eff6-9b24-4c5b-8ac5-edab9a22648d", - "start": { - "$date": "2021-11-26T21:24:23.000Z" - }, - "end": { - "$date": "2021-11-26T21:41:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e4ac0c3-fb08-47b6-a4dc-a4a8b0ab9917", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T21:43:04.000Z" - }, - "end": { - "$date": "2021-11-26T22:02:26.000Z" - }, - "events": [ - { - "uuid": "50e9892f-be31-4fc8-b1a5-ad2af87228f6", - "start": { - "$date": "2021-11-26T21:43:04.000Z" - }, - "end": { - "$date": "2021-11-26T22:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb36dca8-b7cd-44cf-a859-2b9a6bc3962a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T22:22:26.000Z" - }, - "end": { - "$date": "2021-11-26T22:43:37.000Z" - }, - "events": [ - { - "uuid": "797cb178-e260-4545-aae5-116226a99db4", - "start": { - "$date": "2021-11-26T22:22:26.000Z" - }, - "end": { - "$date": "2021-11-26T22:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5bb34d9-9790-4ffc-a5cf-6df2319cffa1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-26T22:35:53.000Z" - }, - "end": { - "$date": "2021-11-26T22:58:51.000Z" - }, - "events": [ - { - "uuid": "e7c56a4f-c777-41b6-a5cc-685fdde811bb", - "start": { - "$date": "2021-11-26T22:35:53.000Z" - }, - "end": { - "$date": "2021-11-26T22:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf935a91-269c-4d5c-a878-83da403e52c5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T22:48:42.000Z" - }, - "end": { - "$date": "2021-11-26T23:01:58.000Z" - }, - "events": [ - { - "uuid": "0676580a-7518-4662-bf44-bfeffa9f952f", - "start": { - "$date": "2021-11-26T22:48:42.000Z" - }, - "end": { - "$date": "2021-11-26T23:01:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f31337a-7ee4-4e4c-85a3-a1fe52301668", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-26T23:10:43.000Z" - }, - "end": { - "$date": "2021-11-26T23:24:49.000Z" - }, - "events": [ - { - "uuid": "520a98ad-5093-4319-8598-a77f09afc32e", - "start": { - "$date": "2021-11-26T23:10:43.000Z" - }, - "end": { - "$date": "2021-11-26T23:24:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "34add2bc-66ef-4d4c-be28-ad97ce95e09c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T00:01:23.000Z" - }, - "end": { - "$date": "2021-11-27T00:39:07.000Z" - }, - "events": [ - { - "uuid": "991f04c5-ae2f-42fa-9272-ca11f22f29ea", - "start": { - "$date": "2021-11-27T00:01:23.000Z" - }, - "end": { - "$date": "2021-11-27T00:39:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34bfbe74-3317-474c-9bc3-b450a71e54e3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-27T01:48:09.000Z" - }, - "end": { - "$date": "2021-11-27T02:12:52.000Z" - }, - "events": [ - { - "uuid": "7b20ff1e-2078-4ad7-97dc-2602cd3f978a", - "start": { - "$date": "2021-11-27T01:48:09.000Z" - }, - "end": { - "$date": "2021-11-27T02:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76e744ce-f5e4-48e0-9f1b-707d055883c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-27T01:48:20.000Z" - }, - "end": { - "$date": "2021-11-27T02:12:55.000Z" - }, - "events": [ - { - "uuid": "2dcf22b2-a944-499f-9565-29830410c0d4", - "start": { - "$date": "2021-11-27T01:48:20.000Z" - }, - "end": { - "$date": "2021-11-27T02:12:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0e63b53-ca78-4c64-9289-75e52f9e9b6b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-27T02:14:11.000Z" - }, - "end": { - "$date": "2021-11-27T02:54:09.000Z" - }, - "events": [ - { - "uuid": "f30eade9-c970-441f-b211-8c80d253f76f", - "start": { - "$date": "2021-11-27T02:14:11.000Z" - }, - "end": { - "$date": "2021-11-27T02:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f8ef117-8057-460f-8383-58b969ed2ba5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-27T02:14:21.000Z" - }, - "end": { - "$date": "2021-11-27T02:54:14.000Z" - }, - "events": [ - { - "uuid": "61f1b67b-2d90-4974-923c-d0bf7dc4e180", - "start": { - "$date": "2021-11-27T02:14:21.000Z" - }, - "end": { - "$date": "2021-11-27T02:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dfbe8b2-a23f-4ae1-ac3a-91ab56acbecb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T02:22:39.000Z" - }, - "end": { - "$date": "2021-11-27T02:47:17.000Z" - }, - "events": [ - { - "uuid": "5a66789c-f418-47b4-831c-bd031c122eeb", - "start": { - "$date": "2021-11-27T02:22:39.000Z" - }, - "end": { - "$date": "2021-11-27T02:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3614ebf0-bc22-45c3-ba5d-8bdc1c8e576e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-27T02:23:47.000Z" - }, - "end": { - "$date": "2021-11-27T04:59:51.000Z" - }, - "events": [ - { - "uuid": "f01666eb-f9e3-44ba-9895-c12fd935eebd", - "start": { - "$date": "2021-11-27T02:23:47.000Z" - }, - "end": { - "$date": "2021-11-27T04:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41821e81-7357-4ff6-8e0a-35a985ba0c33", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T02:49:52.000Z" - }, - "end": { - "$date": "2021-11-27T03:12:16.000Z" - }, - "events": [ - { - "uuid": "a37078e2-957c-4c75-9532-f69f7b4aa476", - "start": { - "$date": "2021-11-27T02:49:52.000Z" - }, - "end": { - "$date": "2021-11-27T03:12:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4368db43-6170-4377-8f97-ac4ef8856a83", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-27T02:57:23.000Z" - }, - "end": { - "$date": "2021-11-27T03:36:26.000Z" - }, - "events": [ - { - "uuid": "b3d552ff-8de9-4dbf-abdb-4bc6bc429fad", - "start": { - "$date": "2021-11-27T02:57:23.000Z" - }, - "end": { - "$date": "2021-11-27T03:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eff003cc-dc2c-4f86-a06a-be23d6b2b74b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-27T02:57:25.000Z" - }, - "end": { - "$date": "2021-11-27T03:36:23.000Z" - }, - "events": [ - { - "uuid": "a5f8a5f2-b10f-4202-9246-ddc69dcd5aa2", - "start": { - "$date": "2021-11-27T02:57:25.000Z" - }, - "end": { - "$date": "2021-11-27T03:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69529ce6-e8d6-4e19-a14e-81f03e32a8b9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T03:14:30.000Z" - }, - "end": { - "$date": "2021-11-27T03:33:06.000Z" - }, - "events": [ - { - "uuid": "bd8bff05-91dc-4bc3-83ff-fa92f71fb791", - "start": { - "$date": "2021-11-27T03:14:30.000Z" - }, - "end": { - "$date": "2021-11-27T03:33:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5b93721-e58d-4331-af2a-745561517be3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T03:35:22.000Z" - }, - "end": { - "$date": "2021-11-27T03:48:11.000Z" - }, - "events": [ - { - "uuid": "e2ce07d6-0b90-4a71-a538-ae9d97201204", - "start": { - "$date": "2021-11-27T03:35:22.000Z" - }, - "end": { - "$date": "2021-11-27T03:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18a16415-e8b6-4716-ab6f-a97bae02716a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-27T03:47:22.000Z" - }, - "end": { - "$date": "2021-11-27T04:53:19.000Z" - }, - "events": [ - { - "uuid": "cfd3cd65-3c34-451b-a6e1-fbbf0c64536b", - "start": { - "$date": "2021-11-27T03:47:22.000Z" - }, - "end": { - "$date": "2021-11-27T04:53:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a92196c-47ea-42fc-a745-aebb819a55b4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T03:51:54.000Z" - }, - "end": { - "$date": "2021-11-27T04:12:51.000Z" - }, - "events": [ - { - "uuid": "a7577851-757a-49a1-961b-291b32acb819", - "start": { - "$date": "2021-11-27T03:51:54.000Z" - }, - "end": { - "$date": "2021-11-27T04:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21efc564-a8df-4e57-8a25-1e477faae9f4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-11-27T04:15:00.000Z" - }, - "end": { - "$date": "2021-11-27T04:15:03.000Z" - }, - "events": [ - { - "uuid": "b433fb6f-00d5-4bc6-9493-739d43a4a2cd", - "start": { - "$date": "2021-11-27T04:15:00.000Z" - }, - "end": { - "$date": "2021-11-27T04:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c9761e7e-0ccd-478d-b4f4-c28aeca9c5f5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-27T04:10:15.000Z" - }, - "end": { - "$date": "2021-11-27T07:39:07.000Z" - }, - "events": [ - { - "uuid": "4967d7a7-6a1b-4dda-ac8d-a739482e0f08", - "start": { - "$date": "2021-11-27T04:10:15.000Z" - }, - "end": { - "$date": "2021-11-27T07:39:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "a9cdade5-da20-4d19-8bf6-9699fc2ab9af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-27T05:49:26.000Z" - }, - "end": { - "$date": "2021-11-27T07:22:23.000Z" - }, - "events": [ - { - "uuid": "e2dcd570-c7a3-461e-ae0b-0e243bc1f3b7", - "start": { - "$date": "2021-11-27T05:49:26.000Z" - }, - "end": { - "$date": "2021-11-27T07:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6aebc149-f77b-4028-a0d7-9208aaeaeb96", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-27T07:40:28.000Z" - }, - "end": { - "$date": "2021-11-27T08:05:19.000Z" - }, - "events": [ - { - "uuid": "7c82819c-2079-4bba-a7da-c22972c8c412", - "start": { - "$date": "2021-11-27T07:40:28.000Z" - }, - "end": { - "$date": "2021-11-27T08:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acf4da2e-835b-4ce2-a292-f2649a7abae2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-27T16:45:41.000Z" - }, - "end": { - "$date": "2021-11-27T17:13:34.000Z" - }, - "events": [ - { - "uuid": "cbb22ede-0e5c-4332-843a-8adbc8ca2198", - "start": { - "$date": "2021-11-27T16:45:41.000Z" - }, - "end": { - "$date": "2021-11-27T17:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e971bdb6-35f0-4d1f-92da-5ae10ad21f66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-27T17:59:18.000Z" - }, - "end": { - "$date": "2021-11-27T18:29:44.000Z" - }, - "events": [ - { - "uuid": "736be589-bac0-46ab-9dfd-0ee2966c979c", - "start": { - "$date": "2021-11-27T17:59:18.000Z" - }, - "end": { - "$date": "2021-11-27T18:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c6ba31f-2c8f-4b2f-bb51-709f7e8b84d6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-27T18:31:34.000Z" - }, - "end": { - "$date": "2021-11-27T18:53:30.000Z" - }, - "events": [ - { - "uuid": "ab30a489-5578-46aa-8d38-6411a261ac1e", - "start": { - "$date": "2021-11-27T18:31:34.000Z" - }, - "end": { - "$date": "2021-11-27T18:53:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7d975921-61d9-47a3-b4f5-a50457b260f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-27T18:49:41.000Z" - }, - "end": { - "$date": "2021-11-27T19:26:41.000Z" - }, - "events": [ - { - "uuid": "b633c423-3f34-4e53-9f65-a2d60f256825", - "start": { - "$date": "2021-11-27T18:49:41.000Z" - }, - "end": { - "$date": "2021-11-27T19:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4908bd28-fff9-4547-ac4b-6e20663c7df8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-27T23:40:41.000Z" - }, - "end": { - "$date": "2021-11-28T02:20:19.000Z" - }, - "events": [ - { - "uuid": "6591a025-9507-42e8-a659-28ec7ddd66ef", - "start": { - "$date": "2021-11-27T23:40:41.000Z" - }, - "end": { - "$date": "2021-11-28T02:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4cb15fd-a43a-4bea-9106-7910b53fd6ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T00:37:33.000Z" - }, - "end": { - "$date": "2021-11-28T01:00:37.000Z" - }, - "events": [ - { - "uuid": "20cad767-a2d8-4f67-b81e-81ac73741ca7", - "start": { - "$date": "2021-11-28T00:37:33.000Z" - }, - "end": { - "$date": "2021-11-28T01:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d8eea35-d239-4f16-8add-bb38d17ac7a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T00:38:40.000Z" - }, - "end": { - "$date": "2021-11-28T01:00:42.000Z" - }, - "events": [ - { - "uuid": "829cadb0-b927-4853-8e1b-b4ecef2733a6", - "start": { - "$date": "2021-11-28T00:38:40.000Z" - }, - "end": { - "$date": "2021-11-28T01:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b8a316df-5fbd-4068-967a-e1acb50df0f8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-28T00:43:21.000Z" - }, - "end": { - "$date": "2021-11-28T01:35:36.000Z" - }, - "events": [ - { - "uuid": "90e2fdc8-1955-4e7c-909e-813d41c683d3", - "start": { - "$date": "2021-11-28T00:43:21.000Z" - }, - "end": { - "$date": "2021-11-28T01:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "fe83b573-df3a-4d7b-9f5b-fe179574a0ad", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-28T01:35:58.000Z" - }, - "end": { - "$date": "2021-11-28T01:45:42.000Z" - }, - "events": [ - { - "uuid": "1167fa3e-8657-454c-afeb-f50d0c66a791", - "start": { - "$date": "2021-11-28T01:35:58.000Z" - }, - "end": { - "$date": "2021-11-28T01:45:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3f853956-1005-4ff1-81dd-926956830250", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-28T01:48:25.000Z" - }, - "end": { - "$date": "2021-11-28T01:57:05.000Z" - }, - "events": [ - { - "uuid": "2f230b68-4ef1-4870-b89e-39fa2350e948", - "start": { - "$date": "2021-11-28T01:48:25.000Z" - }, - "end": { - "$date": "2021-11-28T01:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fbf73334-7f0b-466d-b9bc-b0c7ed277308", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-28T02:06:53.000Z" - }, - "end": { - "$date": "2021-11-28T02:37:32.000Z" - }, - "events": [ - { - "uuid": "25585f33-9080-4526-8425-0157b9003b40", - "start": { - "$date": "2021-11-28T02:06:53.000Z" - }, - "end": { - "$date": "2021-11-28T02:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d8d25771-2d73-44c6-9b34-3f69c8d7a7b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T02:17:01.000Z" - }, - "end": { - "$date": "2021-11-28T02:37:29.000Z" - }, - "events": [ - { - "uuid": "798e7b62-d1c9-41ea-be32-736e067e8755", - "start": { - "$date": "2021-11-28T02:17:01.000Z" - }, - "end": { - "$date": "2021-11-28T02:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56293768-71a1-4d31-9b00-b0c6525e9d2a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T03:09:06.000Z" - }, - "end": { - "$date": "2021-11-28T03:45:54.000Z" - }, - "events": [ - { - "uuid": "8994bc20-c5c2-4afa-86f5-add5bd9c7a87", - "start": { - "$date": "2021-11-28T03:09:06.000Z" - }, - "end": { - "$date": "2021-11-28T03:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "324bf192-bafc-4c90-9801-1a5f81e6944b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-28T03:18:52.000Z" - }, - "end": { - "$date": "2021-11-28T04:20:58.000Z" - }, - "events": [ - { - "uuid": "134a1699-d2bc-485c-a995-504d3bba9d92", - "start": { - "$date": "2021-11-28T03:18:52.000Z" - }, - "end": { - "$date": "2021-11-28T04:20:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f45538ef-ff11-4a99-a6cc-dc3ac591fab9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T03:30:12.000Z" - }, - "end": { - "$date": "2021-11-28T04:14:34.000Z" - }, - "events": [ - { - "uuid": "754fde95-6c4b-4c3d-812b-99d44f02907e", - "start": { - "$date": "2021-11-28T03:30:12.000Z" - }, - "end": { - "$date": "2021-11-28T04:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ce1f11d5-7007-467d-8b04-9bc6e3d93a2e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T04:05:58.000Z" - }, - "end": { - "$date": "2021-11-28T04:21:32.000Z" - }, - "events": [ - { - "uuid": "6162e5c8-b0c7-49fb-acd7-87b55d723f52", - "start": { - "$date": "2021-11-28T04:05:58.000Z" - }, - "end": { - "$date": "2021-11-28T04:21:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bf0684d6-9e8e-4376-a24b-5bc83b33f361", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T04:22:03.000Z" - }, - "end": { - "$date": "2021-11-28T04:32:25.000Z" - }, - "events": [ - { - "uuid": "99a62d6d-78c5-4437-8482-e4034f4d7521", - "start": { - "$date": "2021-11-28T04:22:03.000Z" - }, - "end": { - "$date": "2021-11-28T04:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "65845660-b873-4ce5-98ad-b9ba5c8f75c5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T05:29:45.000Z" - }, - "end": { - "$date": "2021-11-28T05:35:55.000Z" - }, - "events": [ - { - "uuid": "4516b366-2dee-4e6a-9388-0972e4022f2d", - "start": { - "$date": "2021-11-28T05:29:45.000Z" - }, - "end": { - "$date": "2021-11-28T05:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "69dd79b1-497c-47ad-9119-8f936a37fe30", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-28T05:30:14.000Z" - }, - "end": { - "$date": "2021-11-28T07:37:53.000Z" - }, - "events": [ - { - "uuid": "bbd47a01-db17-436b-8bce-958447fe06a9", - "start": { - "$date": "2021-11-28T05:30:14.000Z" - }, - "end": { - "$date": "2021-11-28T07:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7105f44b-a773-4a55-805e-baafddab605d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T05:36:20.000Z" - }, - "end": { - "$date": "2021-11-28T06:10:43.000Z" - }, - "events": [ - { - "uuid": "e4953658-7c28-4329-9779-218d7ad775e9", - "start": { - "$date": "2021-11-28T05:36:20.000Z" - }, - "end": { - "$date": "2021-11-28T06:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "53631e38-24bb-466a-9582-e546ca3df5ab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T05:36:47.000Z" - }, - "end": { - "$date": "2021-11-28T06:51:02.000Z" - }, - "events": [ - { - "uuid": "3fbfbe2c-21df-41c3-821a-f5ed696c2ea2", - "start": { - "$date": "2021-11-28T05:36:47.000Z" - }, - "end": { - "$date": "2021-11-28T06:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c0fd11f9-da08-4de5-8a1a-7e6c5169466b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T02:46:44.000Z" - }, - "end": { - "$date": "2021-11-28T05:51:40.000Z" - }, - "events": [ - { - "uuid": "050b5ed4-b804-4a01-8ced-f86ce9189acb", - "start": { - "$date": "2021-11-28T02:46:44.000Z" - }, - "end": { - "$date": "2021-11-28T05:51:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3d23df10-2a86-48e0-b155-259ba2e2f70f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-28T05:55:11.000Z" - }, - "end": { - "$date": "2021-11-28T07:38:06.000Z" - }, - "events": [ - { - "uuid": "bc91c938-686c-4a4e-acbc-a7979864ba7e", - "start": { - "$date": "2021-11-28T05:55:11.000Z" - }, - "end": { - "$date": "2021-11-28T06:27:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9f15d9b0-ca86-4c46-907c-382c6f91bab8", - "start": { - "$date": "2021-11-28T06:27:11.000Z" - }, - "end": { - "$date": "2021-11-28T06:28:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0aff0af9-339e-4215-9ff2-e998385c625c", - "start": { - "$date": "2021-11-28T06:28:11.000Z" - }, - "end": { - "$date": "2021-11-28T07:38:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "017c6a50-3b58-4c3b-ae10-4a32a5d1f36c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T05:58:43.000Z" - }, - "end": { - "$date": "2021-11-28T06:17:20.000Z" - }, - "events": [ - { - "uuid": "3b7fdeb4-c2e0-4007-b668-9cc8a938adc6", - "start": { - "$date": "2021-11-28T05:58:43.000Z" - }, - "end": { - "$date": "2021-11-28T06:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "76530d90-cdb6-4930-96c1-89e9a887a2a7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-28T06:08:27.000Z" - }, - "end": { - "$date": "2021-11-28T07:31:10.000Z" - }, - "events": [ - { - "uuid": "12aebe29-bcd8-4636-94b7-e59716134bf9", - "start": { - "$date": "2021-11-28T06:08:27.000Z" - }, - "end": { - "$date": "2021-11-28T07:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "ae959278-dd80-4c0f-8a7e-c274fbcd9262", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T06:19:41.000Z" - }, - "end": { - "$date": "2021-11-28T06:53:37.000Z" - }, - "events": [ - { - "uuid": "b7fa9fb9-0efc-4f45-a83e-64b75943a979", - "start": { - "$date": "2021-11-28T06:19:41.000Z" - }, - "end": { - "$date": "2021-11-28T06:53:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7668b5a0-84da-4a3f-8590-63011661a953", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T06:54:18.000Z" - }, - "end": { - "$date": "2021-11-28T07:36:40.000Z" - }, - "events": [ - { - "uuid": "3cf716a4-6161-4866-9b75-a5a5b03b743b", - "start": { - "$date": "2021-11-28T06:54:18.000Z" - }, - "end": { - "$date": "2021-11-28T07:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a0905dd8-c9e5-42e6-a785-b8a779711e47", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T07:03:36.000Z" - }, - "end": { - "$date": "2021-11-28T07:18:34.000Z" - }, - "events": [ - { - "uuid": "2ed09656-4e6d-47ea-a4c6-4a07bd34be77", - "start": { - "$date": "2021-11-28T07:03:36.000Z" - }, - "end": { - "$date": "2021-11-28T07:18:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4413d6cd-1a96-4472-8770-d6dc6f133ddd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T07:26:27.000Z" - }, - "end": { - "$date": "2021-11-28T07:37:55.000Z" - }, - "events": [ - { - "uuid": "e18b8135-4c63-47f0-85fd-82f32d0c1bc1", - "start": { - "$date": "2021-11-28T07:26:27.000Z" - }, - "end": { - "$date": "2021-11-28T07:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9fb61456-ba83-445c-93d6-af0f63af3f27", - "uuid": "73bcd331-0799-4bd4-a131-96fc9a30bcdb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T07:43:06.000Z" - }, - "end": { - "$date": "2021-11-28T07:45:31.000Z" - }, - "events": [ - { - "uuid": "5c95a161-60df-45fb-8621-ebb5c6ee0103", - "start": { - "$date": "2021-11-28T07:43:06.000Z" - }, - "end": { - "$date": "2021-11-28T07:45:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "71739c4d-63ae-424b-9b4f-219cff6d94a3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T07:46:01.000Z" - }, - "end": { - "$date": "2021-11-28T08:35:30.000Z" - }, - "events": [ - { - "uuid": "84efa63c-562f-440e-ac72-7701ad648ff4", - "start": { - "$date": "2021-11-28T07:46:01.000Z" - }, - "end": { - "$date": "2021-11-28T08:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebfc28c1-373b-4eb7-a9a6-0e04f5ccc542", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T08:31:51.000Z" - }, - "end": { - "$date": "2021-11-28T09:02:33.000Z" - }, - "events": [ - { - "uuid": "bef8f6ce-1378-4672-a30a-bbc243feb7b8", - "start": { - "$date": "2021-11-28T08:31:51.000Z" - }, - "end": { - "$date": "2021-11-28T09:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61c4b7e8-a324-4292-a1e5-2f2e05a461d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T09:05:03.000Z" - }, - "end": { - "$date": "2021-11-28T09:38:42.000Z" - }, - "events": [ - { - "uuid": "c00174ea-2f01-4e05-b321-e12a6933770a", - "start": { - "$date": "2021-11-28T09:05:03.000Z" - }, - "end": { - "$date": "2021-11-28T09:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "790c2b8f-edb4-4974-9ee3-e36b1f7be607", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-28T09:14:01.000Z" - }, - "end": { - "$date": "2021-11-28T11:25:33.000Z" - }, - "events": [ - { - "uuid": "4580fe79-14e3-4869-a125-c537a14d8746", - "start": { - "$date": "2021-11-28T09:14:01.000Z" - }, - "end": { - "$date": "2021-11-28T11:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1000a2dd-d0bc-4d3e-b3f9-10fff6bde5cc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T16:17:37.000Z" - }, - "end": { - "$date": "2021-11-28T16:57:38.000Z" - }, - "events": [ - { - "uuid": "377cd1cc-8b30-494d-b433-ae2e83b0c188", - "start": { - "$date": "2021-11-28T16:17:37.000Z" - }, - "end": { - "$date": "2021-11-28T16:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76ce353a-85c4-4411-8600-975c2eb09708", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T16:59:44.000Z" - }, - "end": { - "$date": "2021-11-28T17:20:09.000Z" - }, - "events": [ - { - "uuid": "d5467152-67ab-45de-8f00-8b7d07f7c221", - "start": { - "$date": "2021-11-28T16:59:44.000Z" - }, - "end": { - "$date": "2021-11-28T17:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e42049c-7f9f-4908-baaf-7645d15820d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T17:22:10.000Z" - }, - "end": { - "$date": "2021-11-28T17:54:30.000Z" - }, - "events": [ - { - "uuid": "6c1afb24-4c9a-44b7-972e-64ea8c8694c2", - "start": { - "$date": "2021-11-28T17:22:10.000Z" - }, - "end": { - "$date": "2021-11-28T17:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4048ef45-81ab-41f0-919c-cd5bd20353ac", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T18:48:24.000Z" - }, - "end": { - "$date": "2021-11-28T19:26:34.000Z" - }, - "events": [ - { - "uuid": "95c71295-20ea-43e2-ac7f-e8b8eebb9751", - "start": { - "$date": "2021-11-28T18:48:24.000Z" - }, - "end": { - "$date": "2021-11-28T18:59:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a432040a-524e-498c-a0b4-2240e0bb4245", - "start": { - "$date": "2021-11-28T18:59:24.000Z" - }, - "end": { - "$date": "2021-11-28T19:03:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "21d131ab-2a43-4fe5-8ca3-af07f2c0d60e", - "start": { - "$date": "2021-11-28T19:03:24.000Z" - }, - "end": { - "$date": "2021-11-28T19:26:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5ee527a-d428-4052-8902-cd9db7c151e7", - "start": { - "$date": "2021-11-28T19:26:24.000Z" - }, - "end": { - "$date": "2021-11-28T19:36:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0fba8106-b70c-4fe8-9f51-38748f28dfb1", - "start": { - "$date": "2021-11-28T19:36:24.000Z" - }, - "end": { - "$date": "2021-11-28T19:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "85da76c3-c222-41bc-b5c6-2ff630dfdeb3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T18:35:49.000Z" - }, - "end": { - "$date": "2021-11-28T18:38:29.000Z" - }, - "events": [ - { - "uuid": "8ba75611-85e3-4b63-ac25-6b974a91d945", - "start": { - "$date": "2021-11-28T18:35:49.000Z" - }, - "end": { - "$date": "2021-11-28T18:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "38ead9c7-5d0d-44f0-8d02-5df002d6c2ae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T19:26:04.000Z" - }, - "end": { - "$date": "2021-11-28T19:27:09.000Z" - }, - "events": [ - { - "uuid": "ef78721f-fbd2-4f17-88e2-2e0eaedf862d", - "start": { - "$date": "2021-11-28T19:26:04.000Z" - }, - "end": { - "$date": "2021-11-28T19:27:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb21f737-67a4-4b60-9fad-dca87b4037f1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-28T19:49:38.000Z" - }, - "end": { - "$date": "2021-11-28T20:30:19.000Z" - }, - "events": [ - { - "uuid": "453330cb-6a72-4e5d-b3cc-eb9cb5b0bec5", - "start": { - "$date": "2021-11-28T19:49:38.000Z" - }, - "end": { - "$date": "2021-11-28T20:30:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c995dde9-ddb1-420f-82c8-b9032e9d4880", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-28T20:36:47.000Z" - }, - "end": { - "$date": "2021-11-28T21:05:26.000Z" - }, - "events": [ - { - "uuid": "737877fc-a2b4-499f-a2a4-f40138ac07d2", - "start": { - "$date": "2021-11-28T20:36:47.000Z" - }, - "end": { - "$date": "2021-11-28T21:05:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dbe3dcb3-8895-40c2-93f8-fc62dc567644", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-28T21:03:46.000Z" - }, - "end": { - "$date": "2021-11-28T21:05:01.000Z" - }, - "events": [ - { - "uuid": "9a0fed1a-035a-4f48-882e-3256706479d4", - "start": { - "$date": "2021-11-28T21:03:46.000Z" - }, - "end": { - "$date": "2021-11-28T21:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dab02709-9222-4914-b477-a917718af6e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-28T23:07:20.000Z" - }, - "end": { - "$date": "2021-11-28T23:39:13.000Z" - }, - "events": [ - { - "uuid": "6768ba84-4eff-46f2-8203-7d897a6eead1", - "start": { - "$date": "2021-11-28T23:07:20.000Z" - }, - "end": { - "$date": "2021-11-28T23:08:20.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "7a77d048-6055-4929-9237-8c709c75ae92", - "start": { - "$date": "2021-11-28T23:08:20.000Z" - }, - "end": { - "$date": "2021-11-28T23:49:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "230354b0-387a-4fec-b0d5-e321f6b26da7", - "start": { - "$date": "2021-11-28T23:49:20.000Z" - }, - "end": { - "$date": "2021-11-29T00:12:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "585cf858-ffb9-421d-9ce6-d55510147142", - "start": { - "$date": "2021-11-29T00:12:20.000Z" - }, - "end": { - "$date": "2021-11-28T23:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "be20f486-f46e-446d-a359-53a3da8ee545", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T21:51:09.000Z" - }, - "end": { - "$date": "2021-11-28T22:11:11.000Z" - }, - "events": [ - { - "uuid": "e5d9c525-dbde-403d-8ce5-92f1249d246c", - "start": { - "$date": "2021-11-28T21:51:09.000Z" - }, - "end": { - "$date": "2021-11-28T22:11:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7161a6b2-6ff0-40e1-a029-69869ec3d29b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T22:17:00.000Z" - }, - "end": { - "$date": "2021-11-28T22:45:28.000Z" - }, - "events": [ - { - "uuid": "12773ed2-60e7-411e-8a82-cdf50289c8d1", - "start": { - "$date": "2021-11-28T22:17:00.000Z" - }, - "end": { - "$date": "2021-11-28T22:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a998e76d-0e79-4cd6-947b-39ec82b12fbf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T22:46:28.000Z" - }, - "end": { - "$date": "2021-11-28T23:13:08.000Z" - }, - "events": [ - { - "uuid": "18e01f79-be33-4de5-ab80-1c09428b21b4", - "start": { - "$date": "2021-11-28T22:46:28.000Z" - }, - "end": { - "$date": "2021-11-28T23:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6a1a83b-2bd6-4f79-8773-eeb701235b88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T23:07:16.000Z" - }, - "end": { - "$date": "2021-11-28T23:39:09.000Z" - }, - "events": [ - { - "uuid": "1bd9ed45-140b-4d27-9e70-f31119dcdf45", - "start": { - "$date": "2021-11-28T23:07:16.000Z" - }, - "end": { - "$date": "2021-11-28T23:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d30b3b40-fd68-4500-b68f-c542d536e158", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-28T23:39:39.000Z" - }, - "end": { - "$date": "2021-11-28T23:41:31.000Z" - }, - "events": [ - { - "uuid": "a21f020b-2cd0-4c50-8712-cbb7257cd201", - "start": { - "$date": "2021-11-28T23:39:39.000Z" - }, - "end": { - "$date": "2021-11-28T23:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b1e9d53-da08-4122-af23-65a3f7c2a775", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T23:40:10.000Z" - }, - "end": { - "$date": "2021-11-28T23:41:10.000Z" - }, - "events": [ - { - "uuid": "7eea8a69-43f2-4f65-bafe-8f598187fd98", - "start": { - "$date": "2021-11-28T23:40:10.000Z" - }, - "end": { - "$date": "2021-11-28T23:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05f20566-1aa4-499f-b453-79a1cf3f77f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-28T23:47:59.000Z" - }, - "end": { - "$date": "2021-11-29T00:08:07.000Z" - }, - "events": [ - { - "uuid": "385b986c-6efd-4d9d-b992-56f8d7d8cd4c", - "start": { - "$date": "2021-11-28T23:47:59.000Z" - }, - "end": { - "$date": "2021-11-29T00:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f3d2c15-65ec-4411-9cb5-2b5f229e6373", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-28T23:47:56.000Z" - }, - "end": { - "$date": "2021-11-29T00:08:05.000Z" - }, - "events": [ - { - "uuid": "50ead5d3-2a68-4428-82cd-33065daf7ac7", - "start": { - "$date": "2021-11-28T23:47:56.000Z" - }, - "end": { - "$date": "2021-11-29T00:08:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "dd70a203-c0f3-484f-ad09-25359bbf55a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-28T23:52:43.000Z" - }, - "end": { - "$date": "2021-11-29T00:33:40.000Z" - }, - "events": [ - { - "uuid": "6cd57c8b-8fe6-4493-b75b-f3e64a687290", - "start": { - "$date": "2021-11-28T23:52:43.000Z" - }, - "end": { - "$date": "2021-11-29T00:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f7d8c78-ade7-4486-8e0b-39204f796f84", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-29T00:11:11.000Z" - }, - "end": { - "$date": "2021-11-29T00:34:22.000Z" - }, - "events": [ - { - "uuid": "f59ac691-376a-41be-a49a-683f82194b12", - "start": { - "$date": "2021-11-29T00:11:11.000Z" - }, - "end": { - "$date": "2021-11-29T00:34:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0fbc756-f643-47fa-91a6-b7d06d78322e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T00:11:12.000Z" - }, - "end": { - "$date": "2021-11-29T00:34:26.000Z" - }, - "events": [ - { - "uuid": "ae1e56f6-5b02-4d22-ad01-2847304b2676", - "start": { - "$date": "2021-11-29T00:11:12.000Z" - }, - "end": { - "$date": "2021-11-29T00:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37b595fc-9a1b-40d7-a8bd-850cd3a96eb8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T00:40:43.000Z" - }, - "end": { - "$date": "2021-11-29T01:14:25.000Z" - }, - "events": [ - { - "uuid": "102c80d7-7142-45a1-a6e7-66acff959736", - "start": { - "$date": "2021-11-29T00:40:43.000Z" - }, - "end": { - "$date": "2021-11-29T01:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8f0c1b5b-edcb-4152-91de-b0566dfbbd0e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-29T00:57:19.000Z" - }, - "end": { - "$date": "2021-11-29T02:05:07.000Z" - }, - "events": [ - { - "uuid": "2b06d733-1f56-449f-92e7-a73f081d06b4", - "start": { - "$date": "2021-11-29T00:57:19.000Z" - }, - "end": { - "$date": "2021-11-29T02:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c0e3ec38-cf1e-4467-8b9c-caec9f00c21c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-29T01:06:44.000Z" - }, - "end": { - "$date": "2021-11-29T02:02:21.000Z" - }, - "events": [ - { - "uuid": "d896bb67-6e10-43f5-aafb-72bbf4845035", - "start": { - "$date": "2021-11-29T01:06:44.000Z" - }, - "end": { - "$date": "2021-11-29T02:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f8f7eb03-23aa-446a-b579-b352f441150c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-29T01:27:45.000Z" - }, - "end": { - "$date": "2021-11-29T02:58:25.000Z" - }, - "events": [ - { - "uuid": "d5a23477-ce62-44ef-84b2-bc33e4e3acb1", - "start": { - "$date": "2021-11-29T01:27:45.000Z" - }, - "end": { - "$date": "2021-11-29T02:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "89df5020-2ae8-462f-8b9b-dfcaa6f5a767", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-29T02:04:54.000Z" - }, - "end": { - "$date": "2021-11-29T02:07:04.000Z" - }, - "events": [ - { - "uuid": "665f9590-ce59-4c60-aaed-b3ef835131a7", - "start": { - "$date": "2021-11-29T02:04:54.000Z" - }, - "end": { - "$date": "2021-11-29T02:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "7d360ecc-e6b4-4dd1-a880-5daa1594fe1c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-29T02:24:39.000Z" - }, - "end": { - "$date": "2021-11-29T03:57:47.000Z" - }, - "events": [ - { - "uuid": "211a9ea8-e6ee-4a9f-a3c2-1936ba413e25", - "start": { - "$date": "2021-11-29T02:24:39.000Z" - }, - "end": { - "$date": "2021-11-29T03:57:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fa537594-cebe-43e9-8014-10e92c2c0bfe", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-29T02:59:58.000Z" - }, - "end": { - "$date": "2021-11-29T03:01:14.000Z" - }, - "events": [ - { - "uuid": "ce5c7d3f-a1d1-4baf-ac49-23d094b24dfb", - "start": { - "$date": "2021-11-29T02:59:58.000Z" - }, - "end": { - "$date": "2021-11-29T03:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "65635d09-5d09-4697-b430-8401b4f43c4f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-29T03:02:11.000Z" - }, - "end": { - "$date": "2021-11-29T04:59:44.000Z" - }, - "events": [ - { - "uuid": "e6844dfd-c9e7-45c2-a9c1-cdc69c124155", - "start": { - "$date": "2021-11-29T03:02:11.000Z" - }, - "end": { - "$date": "2021-11-29T04:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bf274d44-232d-457b-b77a-257c5e4aed2d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-29T03:56:36.000Z" - }, - "end": { - "$date": "2021-11-29T04:01:33.000Z" - }, - "events": [ - { - "uuid": "1bddff58-f794-4430-8d0f-8d6f7f484ba6", - "start": { - "$date": "2021-11-29T03:56:36.000Z" - }, - "end": { - "$date": "2021-11-29T04:01:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3a5391bc-098b-4ae1-bfd1-7760c60f5d8f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-29T04:03:32.000Z" - }, - "end": { - "$date": "2021-11-29T05:14:23.000Z" - }, - "events": [ - { - "uuid": "cca53671-f860-4880-b84b-1dab30a3c912", - "start": { - "$date": "2021-11-29T04:03:32.000Z" - }, - "end": { - "$date": "2021-11-29T05:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bf6863c-bf0d-4e72-a10f-38c38d201d8a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T04:28:04.000Z" - }, - "end": { - "$date": "2021-11-29T04:35:11.000Z" - }, - "events": [ - { - "uuid": "d8ed8aa6-cd5d-4f09-89be-d529539fc9ab", - "start": { - "$date": "2021-11-29T04:28:04.000Z" - }, - "end": { - "$date": "2021-11-29T04:35:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc36679a-649f-40c9-8f3d-1d02368eede5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T04:43:14.000Z" - }, - "end": { - "$date": "2021-11-29T05:27:41.000Z" - }, - "events": [ - { - "uuid": "a01ffb7a-5ff8-4199-86eb-747d2c8662a8", - "start": { - "$date": "2021-11-29T04:43:14.000Z" - }, - "end": { - "$date": "2021-11-29T05:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b056fa1d-27f8-47d2-8ba4-ca87c0a44392", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-11-29T04:46:59.000Z" - }, - "end": { - "$date": "2021-11-29T05:14:35.000Z" - }, - "events": [ - { - "uuid": "af9265c9-21f7-4420-b0a0-05fd0393da12", - "start": { - "$date": "2021-11-29T04:46:59.000Z" - }, - "end": { - "$date": "2021-11-29T05:14:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4df87b84-b1a5-4521-84c8-89d00a5ad74f", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-29T04:48:38.000Z" - }, - "end": { - "$date": "2021-11-29T05:37:16.000Z" - }, - "events": [ - { - "uuid": "40768128-82cc-4bf5-a7d0-5aabcc709343", - "start": { - "$date": "2021-11-29T04:48:38.000Z" - }, - "end": { - "$date": "2021-11-29T05:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b414f3ff-804b-4b60-875b-85fcfef1d7c0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-29T05:08:04.000Z" - }, - "end": { - "$date": "2021-11-29T08:33:53.000Z" - }, - "events": [ - { - "uuid": "aed69774-6893-4521-a585-3bcddc1a3410", - "start": { - "$date": "2021-11-29T05:08:04.000Z" - }, - "end": { - "$date": "2021-11-29T08:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3663f85b-6810-43fe-8ed1-381c5c3792ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-29T01:43:10.000Z" - }, - "end": { - "$date": "2021-11-29T05:44:24.000Z" - }, - "events": [ - { - "uuid": "4efb9b17-c03f-4f9d-9f7b-363315808268", - "start": { - "$date": "2021-11-29T01:43:10.000Z" - }, - "end": { - "$date": "2021-11-29T05:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "43ba25e9-d1ea-40f2-b2bc-41dcdbbf79ab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-29T05:23:14.000Z" - }, - "end": { - "$date": "2021-11-29T06:38:40.000Z" - }, - "events": [ - { - "uuid": "23d5d351-0d85-45a1-95b9-81a56626b6d7", - "start": { - "$date": "2021-11-29T05:23:14.000Z" - }, - "end": { - "$date": "2021-11-29T06:38:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac3799db-44ea-4125-b380-a0b7abc141ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T05:34:15.000Z" - }, - "end": { - "$date": "2021-11-29T05:57:02.000Z" - }, - "events": [ - { - "uuid": "6b010a1f-859e-434e-9767-ad2bade007ec", - "start": { - "$date": "2021-11-29T05:34:15.000Z" - }, - "end": { - "$date": "2021-11-29T05:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1e3a0e33-2d87-49b7-9959-f4795671b33b", - "uuid": "681bd6a4-51bb-47f6-90fe-d72d725665bd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-29T05:45:44.000Z" - }, - "end": { - "$date": "2021-11-29T06:15:28.000Z" - }, - "events": [ - { - "uuid": "753fbc15-f97e-4275-b303-1fe5b25fac44", - "start": { - "$date": "2021-11-29T05:45:44.000Z" - }, - "end": { - "$date": "2021-11-29T06:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "76d12d4b-033d-4182-84b8-b603e44ed424", - "uuid": "3f765458-ae2c-422b-bdee-d41b9a7f0798", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T06:03:53.000Z" - }, - "end": { - "$date": "2021-11-29T06:07:04.000Z" - }, - "events": [ - { - "uuid": "0457350f-6002-467d-98a5-2088db89a3f1", - "start": { - "$date": "2021-11-29T06:03:53.000Z" - }, - "end": { - "$date": "2021-11-29T06:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "80320cf9-6d34-490b-986f-94c3fb3ceb74", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-29T06:16:03.000Z" - }, - "end": { - "$date": "2021-11-29T06:28:33.000Z" - }, - "events": [ - { - "uuid": "1fd87959-7e5b-4d9c-a0b9-1f039b287f24", - "start": { - "$date": "2021-11-29T06:16:03.000Z" - }, - "end": { - "$date": "2021-11-29T06:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c2cf2ac0-36e3-468f-845d-810624518dce", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-29T07:05:17.000Z" - }, - "end": { - "$date": "2021-11-29T08:25:12.000Z" - }, - "events": [ - { - "uuid": "657a821b-9ac6-465b-8563-3223ccdf5a40", - "start": { - "$date": "2021-11-29T07:05:17.000Z" - }, - "end": { - "$date": "2021-11-29T08:25:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f3c8fc1-1c3b-4621-bbe2-a1fddc066861", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-29T07:15:29.000Z" - }, - "end": { - "$date": "2021-11-29T07:48:45.000Z" - }, - "events": [ - { - "uuid": "0d31ca74-6da1-4c1b-be23-37492712709b", - "start": { - "$date": "2021-11-29T07:15:29.000Z" - }, - "end": { - "$date": "2021-11-29T07:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f1e53e4-2c78-479a-951d-aac595ac3a00", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-29T08:40:34.000Z" - }, - "end": { - "$date": "2021-11-29T08:54:11.000Z" - }, - "events": [ - { - "uuid": "f685625e-7833-48de-8091-813963bafac0", - "start": { - "$date": "2021-11-29T08:40:34.000Z" - }, - "end": { - "$date": "2021-11-29T08:54:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b93df656-5e60-4475-87ad-a8cc2943a606", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-29T08:54:20.000Z" - }, - "end": { - "$date": "2021-11-29T08:57:48.000Z" - }, - "events": [ - { - "uuid": "d78651e9-287b-44d9-b742-f374344d9c05", - "start": { - "$date": "2021-11-29T08:54:20.000Z" - }, - "end": { - "$date": "2021-11-29T08:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a870f556-2b53-45e0-bfaa-c7118b894973", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-29T09:03:11.000Z" - }, - "end": { - "$date": "2021-11-29T09:28:52.000Z" - }, - "events": [ - { - "uuid": "6ba211f2-0ec8-4c75-a51a-6fd42017b014", - "start": { - "$date": "2021-11-29T09:03:11.000Z" - }, - "end": { - "$date": "2021-11-29T09:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f68d6420-dcd6-4d5f-8533-58f204b35d12", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-29T20:18:20.000Z" - }, - "end": { - "$date": "2021-11-29T20:41:39.000Z" - }, - "events": [ - { - "uuid": "a1b222ff-0f96-46a6-9f6d-5f9e8a460fb9", - "start": { - "$date": "2021-11-29T20:18:20.000Z" - }, - "end": { - "$date": "2021-11-29T20:41:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ac980196-93cd-4f4d-9c59-8edec011eb28", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-11-29T22:36:02.000Z" - }, - "end": { - "$date": "2021-11-29T23:05:19.000Z" - }, - "events": [ - { - "uuid": "acb8344b-ff9e-4a72-b63d-1f60fb2fa7c1", - "start": { - "$date": "2021-11-29T22:36:02.000Z" - }, - "end": { - "$date": "2021-11-29T23:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a8f8f891-1509-425d-9748-b1fd13475b0e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-29T22:37:19.000Z" - }, - "end": { - "$date": "2021-11-30T00:07:24.000Z" - }, - "events": [ - { - "uuid": "56656fb4-4255-4203-8bcf-88a105478843", - "start": { - "$date": "2021-11-29T22:37:19.000Z" - }, - "end": { - "$date": "2021-11-30T00:07:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0e34c83f-fabd-458a-a7bb-e1b459e7abae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-29T23:08:15.000Z" - }, - "end": { - "$date": "2021-11-29T23:11:35.000Z" - }, - "events": [ - { - "uuid": "291e5018-e328-45f5-914c-d9f19a7c2635", - "start": { - "$date": "2021-11-29T23:08:15.000Z" - }, - "end": { - "$date": "2021-11-29T23:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "90a95668-d142-4d60-b4bc-b66f4e3f2901", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-29T23:14:31.000Z" - }, - "end": { - "$date": "2021-11-30T00:07:08.000Z" - }, - "events": [ - { - "uuid": "dc8fac44-c85b-4101-a82b-7e3e9b0352ce", - "start": { - "$date": "2021-11-29T23:14:31.000Z" - }, - "end": { - "$date": "2021-11-30T00:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a944b993-ca20-47a0-a0de-ee7c8c7287d3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-29T23:30:14.000Z" - }, - "end": { - "$date": "2021-11-30T01:39:33.000Z" - }, - "events": [ - { - "uuid": "50e3771a-03c9-4ccc-ad05-91359c82cbc4", - "start": { - "$date": "2021-11-29T23:30:14.000Z" - }, - "end": { - "$date": "2021-11-30T01:39:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7a13735-f3e8-4757-aeab-cc1f3eb3bcf1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-30T01:00:57.000Z" - }, - "end": { - "$date": "2021-11-30T01:08:32.000Z" - }, - "events": [ - { - "uuid": "0a826f62-5d12-47d2-8650-eda8295f0c55", - "start": { - "$date": "2021-11-30T01:00:57.000Z" - }, - "end": { - "$date": "2021-11-30T01:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaa0e3a3-531d-4ab6-ace1-c5a294e6b608", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-30T01:10:57.000Z" - }, - "end": { - "$date": "2021-11-30T01:37:08.000Z" - }, - "events": [ - { - "uuid": "a997e4d5-980b-42a1-ba8d-f851de87a881", - "start": { - "$date": "2021-11-30T01:10:57.000Z" - }, - "end": { - "$date": "2021-11-30T01:37:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6001f02d-003b-47bf-9e5e-845d026e47b6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-11-30T01:10:44.000Z" - }, - "end": { - "$date": "2021-11-30T05:39:21.000Z" - }, - "events": [ - { - "uuid": "f5900742-0d4d-4bb9-b99b-789345f1388c", - "start": { - "$date": "2021-11-30T01:10:44.000Z" - }, - "end": { - "$date": "2021-11-30T05:39:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0201a7e8-eed6-48a5-8568-99b5a0bbd8da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-30T01:37:21.000Z" - }, - "end": { - "$date": "2021-11-30T02:56:15.000Z" - }, - "events": [ - { - "uuid": "a7e6c15b-3449-4b17-a36f-039374e0a240", - "start": { - "$date": "2021-11-30T01:37:21.000Z" - }, - "end": { - "$date": "2021-11-30T02:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "109a4972-bf0f-4750-9cfb-0ad21403a771", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-30T02:48:46.000Z" - }, - "end": { - "$date": "2021-11-30T03:28:33.000Z" - }, - "events": [ - { - "uuid": "115490a8-8ce5-4c13-a1b5-89484f78d2a6", - "start": { - "$date": "2021-11-30T02:48:46.000Z" - }, - "end": { - "$date": "2021-11-30T03:28:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e90367c5-290d-40eb-85da-25ef8f5a3ab3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-30T01:40:31.000Z" - }, - "end": { - "$date": "2021-11-30T02:56:18.000Z" - }, - "events": [ - { - "uuid": "74f9326f-8117-404b-974c-1dd8d9528364", - "start": { - "$date": "2021-11-30T01:40:31.000Z" - }, - "end": { - "$date": "2021-11-30T02:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c24bf284-8472-4b4a-a4f3-cecb26a93dd7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-30T01:46:33.000Z" - }, - "end": { - "$date": "2021-11-30T02:08:23.000Z" - }, - "events": [ - { - "uuid": "4f509f6d-f550-4c7f-869b-d2012cb430e8", - "start": { - "$date": "2021-11-30T01:46:33.000Z" - }, - "end": { - "$date": "2021-11-30T02:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b897161-3f94-48dc-9075-9f887c2e5258", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-30T02:48:45.000Z" - }, - "end": { - "$date": "2021-11-30T03:28:35.000Z" - }, - "events": [ - { - "uuid": "02d91e11-25e6-4e13-a97d-837fe021d337", - "start": { - "$date": "2021-11-30T02:48:45.000Z" - }, - "end": { - "$date": "2021-11-30T03:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "04dcfeb9-9336-4df0-906b-b6af30d9aa20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-11-30T02:57:09.000Z" - }, - "end": { - "$date": "2021-11-30T04:51:14.000Z" - }, - "events": [ - { - "uuid": "d9c23fca-14e3-4c54-af17-2c888e264fb5", - "start": { - "$date": "2021-11-30T02:57:09.000Z" - }, - "end": { - "$date": "2021-11-30T04:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "b3a86e4d-633f-4c39-87fa-6169030a241a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-11-30T02:57:25.000Z" - }, - "end": { - "$date": "2021-11-30T04:51:23.000Z" - }, - "events": [ - { - "uuid": "b5d630b5-cea1-4d4d-8b71-c2bf20f0a5b9", - "start": { - "$date": "2021-11-30T02:57:25.000Z" - }, - "end": { - "$date": "2021-11-30T04:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d284e191-2807-4e97-aea9-d743bea480af", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-11-30T03:28:44.000Z" - }, - "end": { - "$date": "2021-11-30T03:32:09.000Z" - }, - "events": [ - { - "uuid": "aed3258a-3485-4711-8c2d-ed6ccec54537", - "start": { - "$date": "2021-11-30T03:28:44.000Z" - }, - "end": { - "$date": "2021-11-30T03:32:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f3d5993b-5b14-40c2-9703-03961ba7b20c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-30T03:29:27.000Z" - }, - "end": { - "$date": "2021-11-30T03:53:57.000Z" - }, - "events": [ - { - "uuid": "ad53e653-a3d8-47c3-8638-677327f801e2", - "start": { - "$date": "2021-11-30T03:29:27.000Z" - }, - "end": { - "$date": "2021-11-30T03:53:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "eeaee8a2-9adf-4bc9-ac2c-4e124936ba94", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-30T03:56:03.000Z" - }, - "end": { - "$date": "2021-11-30T05:38:36.000Z" - }, - "events": [ - { - "uuid": "5b8886ef-ce78-45b0-b6a4-48d748d37034", - "start": { - "$date": "2021-11-30T03:56:03.000Z" - }, - "end": { - "$date": "2021-11-30T05:38:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5e6e8d29-341f-48ec-aa06-0318e2362c65", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-30T04:33:20.000Z" - }, - "end": { - "$date": "2021-11-30T05:07:47.000Z" - }, - "events": [ - { - "uuid": "f626ceaf-bbdd-43eb-804c-137f5fd78f9a", - "start": { - "$date": "2021-11-30T04:33:20.000Z" - }, - "end": { - "$date": "2021-11-30T05:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e457bf05-e5a4-4031-a74e-444f54ec4449", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-11-30T04:45:54.000Z" - }, - "end": { - "$date": "2021-11-30T07:40:15.000Z" - }, - "events": [ - { - "uuid": "6167b175-3f36-4d9b-a1f1-41c280cdcb6f", - "start": { - "$date": "2021-11-30T04:45:54.000Z" - }, - "end": { - "$date": "2021-11-30T07:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "57525ca5-875a-4264-8bfd-d702807232ed", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-30T04:49:45.000Z" - }, - "end": { - "$date": "2021-11-30T04:59:51.000Z" - }, - "events": [ - { - "uuid": "6cc3eed7-ea57-4dfb-8f1a-d35694570815", - "start": { - "$date": "2021-11-30T04:49:45.000Z" - }, - "end": { - "$date": "2021-11-30T04:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a435621-ca4a-4937-a412-4aef95f78d0d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-11-30T05:00:31.000Z" - }, - "end": { - "$date": "2021-11-30T07:40:01.000Z" - }, - "events": [ - { - "uuid": "94ba634e-83e5-46fd-b729-0ec62288421c", - "start": { - "$date": "2021-11-30T05:00:31.000Z" - }, - "end": { - "$date": "2021-11-30T07:40:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f7bf70cb-7ec3-4a83-91a9-997107618353", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-11-30T05:05:19.000Z" - }, - "end": { - "$date": "2021-11-30T06:04:49.000Z" - }, - "events": [ - { - "uuid": "7b69f678-4f2b-4926-88e6-1a3135531b39", - "start": { - "$date": "2021-11-30T05:05:19.000Z" - }, - "end": { - "$date": "2021-11-30T06:04:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b64b33ad-3fc1-4f2c-b080-889fe0e34a96", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-11-30T05:08:47.000Z" - }, - "end": { - "$date": "2021-11-30T07:41:41.000Z" - }, - "events": [ - { - "uuid": "f47d3c5b-5488-41f8-9758-4b849dfdb800", - "start": { - "$date": "2021-11-30T05:08:47.000Z" - }, - "end": { - "$date": "2021-11-30T07:41:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85dfc624-0b46-4c6f-8448-65931cffe9ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-11-30T07:01:00.000Z" - }, - "end": { - "$date": "2021-11-30T07:31:35.000Z" - }, - "events": [ - { - "uuid": "4720a411-5db2-4109-990b-928e8713218d", - "start": { - "$date": "2021-11-30T07:01:00.000Z" - }, - "end": { - "$date": "2021-11-30T07:31:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37234546-9c77-42fc-af15-4c1ff884ef6c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-30T22:19:07.000Z" - }, - "end": { - "$date": "2021-11-30T22:36:54.000Z" - }, - "events": [ - { - "uuid": "84d1fc43-68f0-4f72-8ae1-7201d9ecd1b4", - "start": { - "$date": "2021-11-30T22:19:07.000Z" - }, - "end": { - "$date": "2021-11-30T22:36:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9a3c197b-176e-415e-81c2-1131d55acc87", - "uuid": "d6c27b72-d84c-4101-9f28-6985c2b2ad2f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-01T00:04:46.000Z" - }, - "end": { - "$date": "2021-12-01T00:15:54.000Z" - }, - "events": [ - { - "uuid": "6ae2d662-90d5-4ea8-a524-42f4f2f200e8", - "start": { - "$date": "2021-12-01T00:04:46.000Z" - }, - "end": { - "$date": "2021-12-01T00:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "839c6ac2-715e-41b3-ad4e-e057d10bf809", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-11-30T22:38:34.000Z" - }, - "end": { - "$date": "2021-11-30T23:01:37.000Z" - }, - "events": [ - { - "uuid": "71fdb208-7c8e-414f-a690-19f659b84a56", - "start": { - "$date": "2021-11-30T22:38:34.000Z" - }, - "end": { - "$date": "2021-11-30T23:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a082c41b-9ae7-41fc-a5c3-69df27bec066", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-11-30T23:26:27.000Z" - }, - "end": { - "$date": "2021-12-01T00:04:03.000Z" - }, - "events": [ - { - "uuid": "bfd40b61-cded-43af-af52-292691a2be62", - "start": { - "$date": "2021-11-30T23:26:27.000Z" - }, - "end": { - "$date": "2021-12-01T00:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f29f2a4b-0d77-4544-a305-ebb2a5dc1045", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-01T00:46:12.000Z" - }, - "end": { - "$date": "2021-12-01T05:39:07.000Z" - }, - "events": [ - { - "uuid": "17cee728-2cc5-4065-84e3-0a4140f0a530", - "start": { - "$date": "2021-12-01T00:46:12.000Z" - }, - "end": { - "$date": "2021-12-01T05:39:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0a6af74a-9371-4f93-b84a-dc2d56a76bf4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-01T01:19:47.000Z" - }, - "end": { - "$date": "2021-12-01T01:27:12.000Z" - }, - "events": [ - { - "uuid": "2682b38e-a647-4302-8ff7-d11cb182049a", - "start": { - "$date": "2021-12-01T01:19:47.000Z" - }, - "end": { - "$date": "2021-12-01T01:27:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0fd72093-bf44-4ffe-b520-841f3e9af359", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-01T01:31:43.000Z" - }, - "end": { - "$date": "2021-12-01T01:53:40.000Z" - }, - "events": [ - { - "uuid": "fd600b38-4e2d-4b59-ad7a-5916a60e3834", - "start": { - "$date": "2021-12-01T01:31:43.000Z" - }, - "end": { - "$date": "2021-12-01T01:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7778dba7-c0a0-42ec-80d6-744696e54039", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-01T02:11:43.000Z" - }, - "end": { - "$date": "2021-12-01T03:05:33.000Z" - }, - "events": [ - { - "uuid": "48ce342c-09bb-4f6b-86c4-3e9c3d4f82ce", - "start": { - "$date": "2021-12-01T02:11:43.000Z" - }, - "end": { - "$date": "2021-12-01T03:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7598a4a0-b879-4370-8a53-6b7d2753704f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-01T02:21:25.000Z" - }, - "end": { - "$date": "2021-12-01T02:41:55.000Z" - }, - "events": [ - { - "uuid": "07520aa3-2a2b-4882-8655-1c6e41f1b5c4", - "start": { - "$date": "2021-12-01T02:21:25.000Z" - }, - "end": { - "$date": "2021-12-01T02:41:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6af00b2-e421-4070-b7d6-d09a1fafcdb6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T02:43:17.000Z" - }, - "end": { - "$date": "2021-12-01T03:19:06.000Z" - }, - "events": [ - { - "uuid": "f4d56618-8e3a-41aa-8288-5a3009fe4087", - "start": { - "$date": "2021-12-01T02:43:17.000Z" - }, - "end": { - "$date": "2021-12-01T03:19:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "0c4fa838-20e0-422e-8456-d535429be8cb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-01T02:42:30.000Z" - }, - "end": { - "$date": "2021-12-01T03:42:36.000Z" - }, - "events": [ - { - "uuid": "8147c4ae-1e0e-42be-bfa1-e6b4c0998135", - "start": { - "$date": "2021-12-01T02:42:30.000Z" - }, - "end": { - "$date": "2021-12-01T03:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0ac72bb0-48f6-4d44-bee7-e82a23face21", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-01T02:51:11.000Z" - }, - "end": { - "$date": "2021-12-01T03:01:09.000Z" - }, - "events": [ - { - "uuid": "c33429ac-9a6f-446e-85ae-c324ed62222f", - "start": { - "$date": "2021-12-01T02:51:11.000Z" - }, - "end": { - "$date": "2021-12-01T03:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "847d874d-ec20-4b2c-a435-2c9fd123657b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T03:40:33.000Z" - }, - "end": { - "$date": "2021-12-01T04:11:54.000Z" - }, - "events": [ - { - "uuid": "8927905c-53d8-4799-9386-349fbedf59c2", - "start": { - "$date": "2021-12-01T03:40:33.000Z" - }, - "end": { - "$date": "2021-12-01T04:11:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c38aa9df-9ad8-4665-b6c6-73405568b48e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-01T03:43:06.000Z" - }, - "end": { - "$date": "2021-12-01T04:57:37.000Z" - }, - "events": [ - { - "uuid": "73fd753e-32e4-45a8-9d97-3af9c1af2d66", - "start": { - "$date": "2021-12-01T03:43:06.000Z" - }, - "end": { - "$date": "2021-12-01T04:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c2d2db8b-6cb0-44ef-9f52-c8d28e026b36", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-01T03:44:06.000Z" - }, - "end": { - "$date": "2021-12-01T04:57:44.000Z" - }, - "events": [ - { - "uuid": "db137f7c-8f22-4ff0-bd64-cc3683c18717", - "start": { - "$date": "2021-12-01T03:44:06.000Z" - }, - "end": { - "$date": "2021-12-01T04:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af74f2ec-a775-41a4-bdda-7ce9df3da013", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T04:16:39.000Z" - }, - "end": { - "$date": "2021-12-01T04:47:25.000Z" - }, - "events": [ - { - "uuid": "dc90a898-b49d-47b0-aa71-85b973a8e5c6", - "start": { - "$date": "2021-12-01T04:16:39.000Z" - }, - "end": { - "$date": "2021-12-01T04:47:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7289724b-7114-4f22-a217-f209ad2d4a05", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-01T04:22:35.000Z" - }, - "end": { - "$date": "2021-12-01T05:22:55.000Z" - }, - "events": [ - { - "uuid": "0475b644-04d3-49ab-a217-a5e4d97f92c4", - "start": { - "$date": "2021-12-01T04:22:35.000Z" - }, - "end": { - "$date": "2021-12-01T05:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "782139d4-caa8-464d-8010-75180d150176", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-01T04:25:26.000Z" - }, - "end": { - "$date": "2021-12-01T06:01:01.000Z" - }, - "events": [ - { - "uuid": "329b2480-5063-4f72-96ab-034ec8e4f345", - "start": { - "$date": "2021-12-01T04:25:26.000Z" - }, - "end": { - "$date": "2021-12-01T06:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "05313c43-96f9-478f-a342-6f117fc77927", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T04:31:33.000Z" - }, - "end": { - "$date": "2021-12-01T04:33:34.000Z" - }, - "events": [ - { - "uuid": "14ee4875-9fd2-43e0-b4cd-94a995192f7f", - "start": { - "$date": "2021-12-01T04:31:33.000Z" - }, - "end": { - "$date": "2021-12-01T04:33:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "feac62be-2f45-48f5-8e80-dea1db754227", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T04:34:45.000Z" - }, - "end": { - "$date": "2021-12-01T05:17:54.000Z" - }, - "events": [ - { - "uuid": "4bce858a-6533-47c0-b951-068d6898945f", - "start": { - "$date": "2021-12-01T04:34:45.000Z" - }, - "end": { - "$date": "2021-12-01T05:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2473ba7-ad8c-4253-83af-fbcb5c20b5fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T04:52:34.000Z" - }, - "end": { - "$date": "2021-12-01T05:23:00.000Z" - }, - "events": [ - { - "uuid": "aaacfc8c-3156-430b-a76b-7e3b8c0a3889", - "start": { - "$date": "2021-12-01T04:52:34.000Z" - }, - "end": { - "$date": "2021-12-01T05:23:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90b30da6-c711-42d9-b135-d8a208db6ba9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T05:23:43.000Z" - }, - "end": { - "$date": "2021-12-01T05:52:00.000Z" - }, - "events": [ - { - "uuid": "024a351a-b5b3-400f-b071-d184f047e405", - "start": { - "$date": "2021-12-01T05:23:43.000Z" - }, - "end": { - "$date": "2021-12-01T05:52:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e4bd319-6362-44a8-8cc1-6007cbd7c208", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-01T05:30:08.000Z" - }, - "end": { - "$date": "2021-12-01T05:49:28.000Z" - }, - "events": [ - { - "uuid": "b4d183a1-3a1d-453f-bd8f-710faba07472", - "start": { - "$date": "2021-12-01T05:30:08.000Z" - }, - "end": { - "$date": "2021-12-01T05:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba410c28-8cf7-476b-92ac-f1d2c351d20e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T05:53:55.000Z" - }, - "end": { - "$date": "2021-12-01T06:09:03.000Z" - }, - "events": [ - { - "uuid": "26aa40f1-8c09-4fc1-ac6d-9e0c77e9a384", - "start": { - "$date": "2021-12-01T05:53:55.000Z" - }, - "end": { - "$date": "2021-12-01T06:09:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1bb8f56-652f-442b-bf06-7e066aa98f57", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-01T05:53:50.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:46.000Z" - }, - "events": [ - { - "uuid": "0b599a42-ac20-44aa-8906-a9fa5c05cdd6", - "start": { - "$date": "2021-12-01T05:53:50.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d7de415-5320-4c97-a2b2-b6b8e67de355", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-01T05:53:53.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:53.000Z" - }, - "events": [ - { - "uuid": "85be4d52-4a43-4e92-bda2-8f62e9ad0a85", - "start": { - "$date": "2021-12-01T05:53:53.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03b3c91d-8341-485b-88d0-825230fe2afd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T05:54:06.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:52.000Z" - }, - "events": [ - { - "uuid": "3fb9d620-04ee-40f4-a529-fd6d7360d338", - "start": { - "$date": "2021-12-01T05:54:06.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "906cba96-9dba-4fbe-8e15-5a44f9e36573", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-01T06:02:49.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:44.000Z" - }, - "events": [ - { - "uuid": "faf3307f-64e7-4ff0-a567-46b86e1f8ee1", - "start": { - "$date": "2021-12-01T06:02:49.000Z" - }, - "end": { - "$date": "2021-12-01T06:08:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8b1f55b2-36bc-4891-8456-5fa71618f204", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-01T06:04:22.000Z" - }, - "end": { - "$date": "2021-12-01T06:09:27.000Z" - }, - "events": [ - { - "uuid": "1f8426ab-2652-4cde-83e5-12707233c1e2", - "start": { - "$date": "2021-12-01T06:04:22.000Z" - }, - "end": { - "$date": "2021-12-01T06:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1070b01-e5fa-498a-888a-eef7098b4782", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T06:13:11.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:26.000Z" - }, - "events": [ - { - "uuid": "061e1047-2648-483a-934a-350653940f25", - "start": { - "$date": "2021-12-01T06:13:11.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "70a4a474-39ef-45fe-b933-52cdcbb22b2e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-01T06:09:19.000Z" - }, - "end": { - "$date": "2021-12-01T06:45:51.000Z" - }, - "events": [ - { - "uuid": "8c30124c-1677-4e86-a93c-61892114ab4f", - "start": { - "$date": "2021-12-01T06:09:19.000Z" - }, - "end": { - "$date": "2021-12-01T06:45:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd14025e-d7e4-408e-a0d1-0d30a7256e10", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T06:13:00.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:28.000Z" - }, - "events": [ - { - "uuid": "bd945223-5516-4658-80e0-eccb3a411521", - "start": { - "$date": "2021-12-01T06:13:00.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bfac944-7734-4db4-b014-55d3e5b64997", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-01T06:13:00.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:18.000Z" - }, - "events": [ - { - "uuid": "5bb81ca3-1d00-4f22-94fa-0e2ac21a58ef", - "start": { - "$date": "2021-12-01T06:13:00.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efaa958c-43ab-46d4-a483-63d94d66fb8f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-01T06:12:54.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:24.000Z" - }, - "events": [ - { - "uuid": "26edf277-12a4-4a89-a115-fe0e020710a8", - "start": { - "$date": "2021-12-01T06:12:54.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63e56086-e2cd-4534-b1f3-f3b8748c6e7b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-01T06:13:01.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:22.000Z" - }, - "events": [ - { - "uuid": "a57fec4e-34ac-46e4-b180-9971e82092d9", - "start": { - "$date": "2021-12-01T06:13:01.000Z" - }, - "end": { - "$date": "2021-12-01T06:38:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d3fed1c-1711-439e-b2aa-0ffc325a0dcb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T06:41:27.000Z" - }, - "end": { - "$date": "2021-12-01T07:08:00.000Z" - }, - "events": [ - { - "uuid": "9b3ff73f-f283-40b8-9bea-0e3cdc3df53f", - "start": { - "$date": "2021-12-01T06:41:27.000Z" - }, - "end": { - "$date": "2021-12-01T07:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0994457-f616-45d8-8aec-3e9f8b471c79", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-01T06:41:26.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:54.000Z" - }, - "events": [ - { - "uuid": "440eee7b-1a26-4f06-8ed1-705d1241b1b0", - "start": { - "$date": "2021-12-01T06:41:26.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "396da30c-fb2d-4fca-a495-f067128c3f26", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-01T06:41:29.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:55.000Z" - }, - "events": [ - { - "uuid": "9a3b5143-06ed-4fea-8c14-167ada27f1ca", - "start": { - "$date": "2021-12-01T06:41:29.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7b9f3a3-a2f2-4c18-8616-19253e139d91", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-01T06:41:37.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:53.000Z" - }, - "events": [ - { - "uuid": "eceab13c-823f-4e97-a4a7-bc3688c306cb", - "start": { - "$date": "2021-12-01T06:41:37.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1c351ac-d449-4910-b2ca-c17ca6483d85", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-01T06:41:31.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:48.000Z" - }, - "events": [ - { - "uuid": "af7be3e8-f7a0-4541-ac71-04d89a4fb7bf", - "start": { - "$date": "2021-12-01T06:41:31.000Z" - }, - "end": { - "$date": "2021-12-01T07:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c386eac-78e6-442b-b759-6fc79ec59188", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T07:08:26.000Z" - }, - "end": { - "$date": "2021-12-01T07:11:53.000Z" - }, - "events": [ - { - "uuid": "38248e05-fe6b-4726-be29-055a66ce3476", - "start": { - "$date": "2021-12-01T07:08:26.000Z" - }, - "end": { - "$date": "2021-12-01T07:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "18ce206a-b684-4b1f-a2b6-78619279e368", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-01T07:08:46.000Z" - }, - "end": { - "$date": "2021-12-01T08:31:20.000Z" - }, - "events": [ - { - "uuid": "8f140a1a-64bb-4240-a2bb-f2a6296d9b3d", - "start": { - "$date": "2021-12-01T07:08:46.000Z" - }, - "end": { - "$date": "2021-12-01T08:31:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33b2c52a-1d7d-4724-8eb1-759b7639bc7e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T07:30:43.000Z" - }, - "end": { - "$date": "2021-12-01T08:08:32.000Z" - }, - "events": [ - { - "uuid": "232cccb6-a2a2-43d5-86a1-8fe7d722dd4e", - "start": { - "$date": "2021-12-01T07:30:43.000Z" - }, - "end": { - "$date": "2021-12-01T08:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f5915cf-6533-40dd-a83a-85a08bfcec67", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T08:10:23.000Z" - }, - "end": { - "$date": "2021-12-01T08:40:47.000Z" - }, - "events": [ - { - "uuid": "afe92e96-2340-495f-af77-bc0617d55498", - "start": { - "$date": "2021-12-01T08:10:23.000Z" - }, - "end": { - "$date": "2021-12-01T08:40:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e8cc303c-5241-496f-a7ea-68d7fe38566e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T08:43:12.000Z" - }, - "end": { - "$date": "2021-12-01T09:26:39.000Z" - }, - "events": [ - { - "uuid": "2a1c752a-e840-46a2-a58c-d2b17d63286c", - "start": { - "$date": "2021-12-01T08:43:12.000Z" - }, - "end": { - "$date": "2021-12-01T09:26:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0142156d-0456-48d4-9257-266742029501", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-01T10:23:55.000Z" - }, - "end": { - "$date": "2021-12-01T10:44:27.000Z" - }, - "events": [ - { - "uuid": "a22ec154-0608-4670-9b1b-795628d7df85", - "start": { - "$date": "2021-12-01T10:23:55.000Z" - }, - "end": { - "$date": "2021-12-01T10:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "798acdc1-7742-4fdc-ab2a-6b6e91b30b87", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-01T10:46:47.000Z" - }, - "end": { - "$date": "2021-12-01T11:03:39.000Z" - }, - "events": [ - { - "uuid": "eb5038ac-5718-4d44-ad75-d09945542f58", - "start": { - "$date": "2021-12-01T10:46:47.000Z" - }, - "end": { - "$date": "2021-12-01T11:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "611a5345-a093-42cf-82f3-c9021bc4ace0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-01T11:05:39.000Z" - }, - "end": { - "$date": "2021-12-01T11:22:50.000Z" - }, - "events": [ - { - "uuid": "bd84a581-bde7-4e61-804d-e7fb09f4998c", - "start": { - "$date": "2021-12-01T11:05:39.000Z" - }, - "end": { - "$date": "2021-12-01T11:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "98b63cad-054f-478d-811a-e67ca509800b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-01T11:27:52.000Z" - }, - "end": { - "$date": "2021-12-01T12:01:06.000Z" - }, - "events": [ - { - "uuid": "2380c571-021c-491c-be4c-0203e534cdc6", - "start": { - "$date": "2021-12-01T11:27:52.000Z" - }, - "end": { - "$date": "2021-12-01T12:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e2a1a028-2fdb-48c6-8749-0f25c0dbbefa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T21:04:47.000Z" - }, - "end": { - "$date": "2021-12-01T22:07:37.000Z" - }, - "events": [ - { - "uuid": "189b7f86-78cf-4f5b-9ab0-5e988009f4b3", - "start": { - "$date": "2021-12-01T21:04:47.000Z" - }, - "end": { - "$date": "2021-12-01T21:35:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddadc863-6d29-4afb-b3f9-d3079be82bdc", - "start": { - "$date": "2021-12-01T21:35:47.000Z" - }, - "end": { - "$date": "2021-12-01T21:50:47.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f379721b-8cd4-4480-ab8b-1f461ddfc3bd", - "start": { - "$date": "2021-12-01T21:50:47.000Z" - }, - "end": { - "$date": "2021-12-01T22:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4dbc4983-7f0c-43f8-ae9a-3b16e915b8fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T22:49:06.000Z" - }, - "end": { - "$date": "2021-12-01T22:54:04.000Z" - }, - "events": [ - { - "uuid": "41d9ef02-1a32-49c6-a5eb-ee8c25985b27", - "start": { - "$date": "2021-12-01T22:49:06.000Z" - }, - "end": { - "$date": "2021-12-01T22:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "794a7fa1-6a6b-4d59-9864-4bfd166787df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T22:59:23.000Z" - }, - "end": { - "$date": "2021-12-01T23:33:45.000Z" - }, - "events": [ - { - "uuid": "6f90cb18-57cb-49a2-93c8-408feff58917", - "start": { - "$date": "2021-12-01T22:59:23.000Z" - }, - "end": { - "$date": "2021-12-01T23:33:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17c52268-85ec-49e1-b6e8-a2829a53cecf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-01T23:43:09.000Z" - }, - "end": { - "$date": "2021-12-02T00:08:29.000Z" - }, - "events": [ - { - "uuid": "bd18e96f-c865-4220-b51c-6d8fb90e2c02", - "start": { - "$date": "2021-12-01T23:43:09.000Z" - }, - "end": { - "$date": "2021-12-02T00:08:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e397c7b-10f1-4030-851f-1d948f082c24", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-01T23:46:32.000Z" - }, - "end": { - "$date": "2021-12-02T00:05:30.000Z" - }, - "events": [ - { - "uuid": "f65cf885-dae8-4bdf-b6dc-36f91ca0e32a", - "start": { - "$date": "2021-12-01T23:46:32.000Z" - }, - "end": { - "$date": "2021-12-02T00:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0aae9abc-30c8-43ca-b9d5-582d3ba0c916", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-01T23:54:05.000Z" - }, - "end": { - "$date": "2021-12-02T01:55:04.000Z" - }, - "events": [ - { - "uuid": "f0c415da-c024-4316-83f3-b0df7feae6cd", - "start": { - "$date": "2021-12-01T23:54:05.000Z" - }, - "end": { - "$date": "2021-12-02T01:55:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9df096f7-eb06-4ca1-8566-e0564e901bd1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T00:07:49.000Z" - }, - "end": { - "$date": "2021-12-02T00:26:47.000Z" - }, - "events": [ - { - "uuid": "cbf41e10-3a98-4f18-9427-953e98c07021", - "start": { - "$date": "2021-12-02T00:07:49.000Z" - }, - "end": { - "$date": "2021-12-02T00:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63d121b8-f866-4e01-b7b2-6847194fcc08", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T00:30:16.000Z" - }, - "end": { - "$date": "2021-12-02T00:32:27.000Z" - }, - "events": [ - { - "uuid": "f047bfc8-b875-4aee-8654-be4931f0be69", - "start": { - "$date": "2021-12-02T00:30:16.000Z" - }, - "end": { - "$date": "2021-12-02T00:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "39ece672-aa15-439d-9277-0b3b37243e7b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-02T00:29:10.000Z" - }, - "end": { - "$date": "2021-12-02T00:45:01.000Z" - }, - "events": [ - { - "uuid": "cecf7527-a793-4f5b-a4e3-000c621f23ed", - "start": { - "$date": "2021-12-02T00:29:10.000Z" - }, - "end": { - "$date": "2021-12-02T00:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2f3a504a-4afd-4ac7-b18b-50de03aedbf1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T00:32:42.000Z" - }, - "end": { - "$date": "2021-12-02T02:01:54.000Z" - }, - "events": [ - { - "uuid": "8efc0c59-7a62-4caa-b8ee-1c71d40fdc76", - "start": { - "$date": "2021-12-02T00:32:42.000Z" - }, - "end": { - "$date": "2021-12-02T02:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37d124f5-a886-4295-99b7-c1f4de4611c9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-02T00:51:16.000Z" - }, - "end": { - "$date": "2021-12-02T01:27:48.000Z" - }, - "events": [ - { - "uuid": "b13141c5-e731-4490-8b70-7e4e2f1938f2", - "start": { - "$date": "2021-12-02T00:51:16.000Z" - }, - "end": { - "$date": "2021-12-02T01:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c43bd92-6900-4626-b2f6-8f8e127fe26d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-02T01:28:18.000Z" - }, - "end": { - "$date": "2021-12-02T01:33:05.000Z" - }, - "events": [ - { - "uuid": "442a314c-4262-4efa-9b72-f8c4902d3ae6", - "start": { - "$date": "2021-12-02T01:28:18.000Z" - }, - "end": { - "$date": "2021-12-02T01:33:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a14c217f-d6f8-4286-b53e-78febe6edbc8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-02T01:33:18.000Z" - }, - "end": { - "$date": "2021-12-02T02:09:01.000Z" - }, - "events": [ - { - "uuid": "770165de-165c-428a-aba4-5656d095a460", - "start": { - "$date": "2021-12-02T01:33:18.000Z" - }, - "end": { - "$date": "2021-12-02T02:09:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f62be20d-6ffa-4bb5-b29e-ed7d849c4718", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T02:23:02.000Z" - }, - "end": { - "$date": "2021-12-02T02:24:03.000Z" - }, - "events": [ - { - "uuid": "93e4cda1-a5da-418d-9c9b-93687bd70653", - "start": { - "$date": "2021-12-02T02:23:02.000Z" - }, - "end": { - "$date": "2021-12-02T02:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d186ca42-fe32-429c-9e7a-87273890eabf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T02:26:12.000Z" - }, - "end": { - "$date": "2021-12-02T02:47:41.000Z" - }, - "events": [ - { - "uuid": "8c32e736-68a3-41c1-90f3-1797e93a8d33", - "start": { - "$date": "2021-12-02T02:26:12.000Z" - }, - "end": { - "$date": "2021-12-02T02:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c1f6942-17fa-42a3-9880-b5fe38ee94e5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-02T02:25:26.000Z" - }, - "end": { - "$date": "2021-12-02T04:38:02.000Z" - }, - "events": [ - { - "uuid": "130bf0d9-1fe7-4693-8900-1c6936b99a3f", - "start": { - "$date": "2021-12-02T02:25:26.000Z" - }, - "end": { - "$date": "2021-12-02T04:38:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c488e72c-e70b-4877-9cd6-e9188f6aadc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-02T02:28:06.000Z" - }, - "end": { - "$date": "2021-12-02T04:55:25.000Z" - }, - "events": [ - { - "uuid": "321e31ca-bab9-49c6-800b-68d2fe1c0ca5", - "start": { - "$date": "2021-12-02T02:28:06.000Z" - }, - "end": { - "$date": "2021-12-02T04:55:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cba2a3cb-197b-45b1-86ea-4bd62d3b8f1e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T02:52:56.000Z" - }, - "end": { - "$date": "2021-12-02T03:12:35.000Z" - }, - "events": [ - { - "uuid": "58ef81e4-d433-4140-8baf-429a2c7d66e1", - "start": { - "$date": "2021-12-02T02:52:56.000Z" - }, - "end": { - "$date": "2021-12-02T03:12:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b6591eca-c8a9-43f4-b4dc-8248306ae84b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-02T03:07:07.000Z" - }, - "end": { - "$date": "2021-12-02T05:10:33.000Z" - }, - "events": [ - { - "uuid": "3e7936f6-b64f-4f6a-b12e-3764e54ade47", - "start": { - "$date": "2021-12-02T03:07:07.000Z" - }, - "end": { - "$date": "2021-12-02T05:10:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "857d9166-35ab-4ecd-8eef-f2126230843c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-02T03:07:41.000Z" - }, - "end": { - "$date": "2021-12-02T04:58:07.000Z" - }, - "events": [ - { - "uuid": "15351243-c807-4654-bec2-6adf992fdfe1", - "start": { - "$date": "2021-12-02T03:07:41.000Z" - }, - "end": { - "$date": "2021-12-02T04:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "ab0d7be5-0769-4dc2-b182-09eec4c0c978", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T03:16:24.000Z" - }, - "end": { - "$date": "2021-12-02T03:39:13.000Z" - }, - "events": [ - { - "uuid": "f8b8460d-1e8e-4fbf-b0c8-882df1cbde72", - "start": { - "$date": "2021-12-02T03:16:24.000Z" - }, - "end": { - "$date": "2021-12-02T03:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d7af530b-ab38-4e10-8994-5964329e62a0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-02T03:26:36.000Z" - }, - "end": { - "$date": "2021-12-02T03:49:17.000Z" - }, - "events": [ - { - "uuid": "9008546a-a552-4b08-ac74-9cd753dca7f6", - "start": { - "$date": "2021-12-02T03:26:36.000Z" - }, - "end": { - "$date": "2021-12-02T03:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9f22f5b8-7c5b-481e-b6c8-cfcb28efd72b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-02T03:50:17.000Z" - }, - "end": { - "$date": "2021-12-02T07:36:25.000Z" - }, - "events": [ - { - "uuid": "3390bb60-89c1-4533-a85e-cc7ded161db3", - "start": { - "$date": "2021-12-02T03:50:17.000Z" - }, - "end": { - "$date": "2021-12-02T07:36:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3292c2fe-3dc1-4f74-a28c-275fea1392ff", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-02T04:17:59.000Z" - }, - "end": { - "$date": "2021-12-02T04:50:38.000Z" - }, - "events": [ - { - "uuid": "2ec8b127-6680-426a-9470-7df40ce80cd9", - "start": { - "$date": "2021-12-02T04:17:59.000Z" - }, - "end": { - "$date": "2021-12-02T04:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ab2a1fc-0076-404c-81e1-3ebba1102943", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T04:34:13.000Z" - }, - "end": { - "$date": "2021-12-02T04:48:13.000Z" - }, - "events": [ - { - "uuid": "0cd0e769-43ff-454d-9a29-6974b8ad4941", - "start": { - "$date": "2021-12-02T04:34:13.000Z" - }, - "end": { - "$date": "2021-12-02T04:48:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "af563f81-b8a4-45cc-b09f-e1de9ed7c7d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-02T04:39:08.000Z" - }, - "end": { - "$date": "2021-12-02T05:26:54.000Z" - }, - "events": [ - { - "uuid": "bd521ad4-e740-4491-9b31-c551d4e4d2a3", - "start": { - "$date": "2021-12-02T04:39:08.000Z" - }, - "end": { - "$date": "2021-12-02T05:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "263a7a9d-0c46-47d4-8c53-112e25eb877a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T04:50:00.000Z" - }, - "end": { - "$date": "2021-12-02T05:09:48.000Z" - }, - "events": [ - { - "uuid": "f5bfad94-d600-4c04-8b01-a9bbbab4389d", - "start": { - "$date": "2021-12-02T04:50:00.000Z" - }, - "end": { - "$date": "2021-12-02T05:09:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdb85745-9981-423a-95fc-541bce141fe3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-02T04:52:37.000Z" - }, - "end": { - "$date": "2021-12-02T05:14:45.000Z" - }, - "events": [ - { - "uuid": "c28cfab7-12d2-4c1b-b00d-30e91972b0e1", - "start": { - "$date": "2021-12-02T04:52:37.000Z" - }, - "end": { - "$date": "2021-12-02T05:14:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "75f0ba91-c831-4a3d-864b-c590bc978f73", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-02T05:09:35.000Z" - }, - "end": { - "$date": "2021-12-02T06:41:59.000Z" - }, - "events": [ - { - "uuid": "4e944c41-6d87-4245-ab54-d9420794e212", - "start": { - "$date": "2021-12-02T05:09:35.000Z" - }, - "end": { - "$date": "2021-12-02T06:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "394302cd-d628-4610-af70-3de675232fa8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T05:11:48.000Z" - }, - "end": { - "$date": "2021-12-02T05:40:12.000Z" - }, - "events": [ - { - "uuid": "7f39a2ab-b348-4e22-bed2-04e6b91e8f1a", - "start": { - "$date": "2021-12-02T05:11:48.000Z" - }, - "end": { - "$date": "2021-12-02T05:40:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aac7684a-5b80-4507-b3f0-0202600f70e8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-02T05:18:40.000Z" - }, - "end": { - "$date": "2021-12-02T05:33:58.000Z" - }, - "events": [ - { - "uuid": "e548c1c1-8138-42dd-b2bd-5bd6b5d8fb17", - "start": { - "$date": "2021-12-02T05:18:40.000Z" - }, - "end": { - "$date": "2021-12-02T05:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "20e38a40-b69b-45f1-9c34-31fc76bbde35", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-02T05:27:25.000Z" - }, - "end": { - "$date": "2021-12-02T05:45:02.000Z" - }, - "events": [ - { - "uuid": "755efe7c-3437-429b-8a2a-158a28e4f685", - "start": { - "$date": "2021-12-02T05:27:25.000Z" - }, - "end": { - "$date": "2021-12-02T05:45:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c5f365b-a58f-4f48-a6bd-24636c435249", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-02T05:35:57.000Z" - }, - "end": { - "$date": "2021-12-02T05:58:04.000Z" - }, - "events": [ - { - "uuid": "c4d2dcc3-bd0b-4bf5-a206-6379efdc3662", - "start": { - "$date": "2021-12-02T05:35:57.000Z" - }, - "end": { - "$date": "2021-12-02T05:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7245b305-a2de-48b8-b504-2083ce7eaf8f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-02T05:34:49.000Z" - }, - "end": { - "$date": "2021-12-02T06:21:44.000Z" - }, - "events": [ - { - "uuid": "9e0c483b-ac4d-47c7-98de-211466ef8594", - "start": { - "$date": "2021-12-02T05:34:49.000Z" - }, - "end": { - "$date": "2021-12-02T06:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7de779b-151a-4b54-a0d6-4e7a671350c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T05:41:41.000Z" - }, - "end": { - "$date": "2021-12-02T06:04:02.000Z" - }, - "events": [ - { - "uuid": "34ec0d63-b00f-4fdd-ba4d-f3b9ca6183ad", - "start": { - "$date": "2021-12-02T05:41:41.000Z" - }, - "end": { - "$date": "2021-12-02T06:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d936b5db-1de7-42db-8d5f-3e167d07170c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-02T05:45:47.000Z" - }, - "end": { - "$date": "2021-12-02T05:54:02.000Z" - }, - "events": [ - { - "uuid": "3daa2b1c-a272-451b-86e1-c26b6e27ee85", - "start": { - "$date": "2021-12-02T05:45:47.000Z" - }, - "end": { - "$date": "2021-12-02T05:54:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdcadb73-5cc6-4d35-a317-946603bf132e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-02T06:05:26.000Z" - }, - "end": { - "$date": "2021-12-02T06:28:07.000Z" - }, - "events": [ - { - "uuid": "521048e4-0bd9-4937-926b-73e31aeb62f8", - "start": { - "$date": "2021-12-02T06:05:26.000Z" - }, - "end": { - "$date": "2021-12-02T06:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fe9d6104-ecb4-40f5-979f-7e3825aa9230", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-02T07:02:20.000Z" - }, - "end": { - "$date": "2021-12-02T07:06:12.000Z" - }, - "events": [ - { - "uuid": "146d0693-8b08-478e-bce9-6b7f151da7f3", - "start": { - "$date": "2021-12-02T07:02:20.000Z" - }, - "end": { - "$date": "2021-12-02T07:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "56c43307-c7e3-4800-9ef1-e86f4f897112", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-02T08:30:19.000Z" - }, - "end": { - "$date": "2021-12-02T10:30:51.000Z" - }, - "events": [ - { - "uuid": "5298a233-fdae-4bc9-8a96-15cc5e2da56e", - "start": { - "$date": "2021-12-02T08:30:19.000Z" - }, - "end": { - "$date": "2021-12-02T10:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "350d234a-cbd2-4db8-b1c5-df59aab3419a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-02T18:06:14.000Z" - }, - "end": { - "$date": "2021-12-02T18:17:20.000Z" - }, - "events": [ - { - "uuid": "0f2384ca-894a-4ae0-96bb-c11ae0228a51", - "start": { - "$date": "2021-12-02T18:06:14.000Z" - }, - "end": { - "$date": "2021-12-02T18:17:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7d44eb31-9577-4d3a-9985-df9c75b3bc52", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-02T21:54:18.000Z" - }, - "end": { - "$date": "2021-12-02T23:58:50.000Z" - }, - "events": [ - { - "uuid": "a6c41dba-0a10-4cba-afcf-9b83f99ccba5", - "start": { - "$date": "2021-12-02T21:54:18.000Z" - }, - "end": { - "$date": "2021-12-02T23:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "6e6d6181-f302-4918-90e5-6178d576f0ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-02T23:05:21.000Z" - }, - "end": { - "$date": "2021-12-03T00:11:12.000Z" - }, - "events": [ - { - "uuid": "788fc0ec-3b6f-43e5-a3a7-5eb8126f8e1f", - "start": { - "$date": "2021-12-02T23:05:21.000Z" - }, - "end": { - "$date": "2021-12-03T00:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69f56f84-3bd2-47c6-b3c6-2615c338d096", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-02T23:51:19.000Z" - }, - "end": { - "$date": "2021-12-03T00:09:55.000Z" - }, - "events": [ - { - "uuid": "79956c0f-7883-44b2-9308-fc66198b6be0", - "start": { - "$date": "2021-12-02T23:51:19.000Z" - }, - "end": { - "$date": "2021-12-03T00:09:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a49481b-3ba8-4a0f-aef9-d8e55b74fcd7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T00:20:03.000Z" - }, - "end": { - "$date": "2021-12-03T00:55:40.000Z" - }, - "events": [ - { - "uuid": "e9f15509-bc7e-4caa-aa83-9ff6b63b125b", - "start": { - "$date": "2021-12-03T00:20:03.000Z" - }, - "end": { - "$date": "2021-12-03T00:55:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2092d8e-e492-4943-922a-36b08bcfdaf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-03T00:21:08.000Z" - }, - "end": { - "$date": "2021-12-03T00:39:08.000Z" - }, - "events": [ - { - "uuid": "f8c61c17-ee9f-4f71-97e1-3f23c6481070", - "start": { - "$date": "2021-12-03T00:21:08.000Z" - }, - "end": { - "$date": "2021-12-03T00:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4c22a13-e843-43ac-bcd7-7cb123de2bd8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-03T00:40:14.000Z" - }, - "end": { - "$date": "2021-12-03T01:01:44.000Z" - }, - "events": [ - { - "uuid": "3a9ff580-ad9f-4978-bde0-7a07574543ec", - "start": { - "$date": "2021-12-03T00:40:14.000Z" - }, - "end": { - "$date": "2021-12-03T01:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "211bd5e8-0bfd-4b25-9a2a-d86d3d4be3b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T01:09:47.000Z" - }, - "end": { - "$date": "2021-12-03T01:33:01.000Z" - }, - "events": [ - { - "uuid": "41ddab01-0bdd-4db1-af18-2d900ca5c7a6", - "start": { - "$date": "2021-12-03T01:09:47.000Z" - }, - "end": { - "$date": "2021-12-03T01:33:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e615f7c-13b4-45b5-ad7a-0fd6c1a4c2e3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T01:46:44.000Z" - }, - "end": { - "$date": "2021-12-03T02:20:02.000Z" - }, - "events": [ - { - "uuid": "652cf313-c9e5-4451-9559-835d7a07a2ca", - "start": { - "$date": "2021-12-03T01:46:44.000Z" - }, - "end": { - "$date": "2021-12-03T02:20:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2ce68fe3-b1fe-40c5-8cf6-f48a40296898", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-03T01:47:00.000Z" - }, - "end": { - "$date": "2021-12-03T02:54:27.000Z" - }, - "events": [ - { - "uuid": "ef103368-bdfe-4b8e-9c44-355b88fd7efc", - "start": { - "$date": "2021-12-03T01:47:00.000Z" - }, - "end": { - "$date": "2021-12-03T02:54:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "430c919a-385d-415c-8e31-8ff8e43557b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T02:23:50.000Z" - }, - "end": { - "$date": "2021-12-03T02:46:39.000Z" - }, - "events": [ - { - "uuid": "87bef3b7-f15b-423f-a8ec-25605ce31ce4", - "start": { - "$date": "2021-12-03T02:23:50.000Z" - }, - "end": { - "$date": "2021-12-03T02:46:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "444bb05b-11c4-4928-890a-c6e04ec13c7d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-03T02:41:33.000Z" - }, - "end": { - "$date": "2021-12-03T06:55:53.000Z" - }, - "events": [ - { - "uuid": "fc033185-78cd-4ad6-993a-d5b69a104082", - "start": { - "$date": "2021-12-03T02:41:33.000Z" - }, - "end": { - "$date": "2021-12-03T03:51:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbcdde05-24c3-40b4-a1dc-72b170bc7e91", - "start": { - "$date": "2021-12-03T03:51:33.000Z" - }, - "end": { - "$date": "2021-12-03T03:52:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2f64e1a-ed76-4c58-ab3a-0dd6062d5e58", - "start": { - "$date": "2021-12-03T03:52:33.000Z" - }, - "end": { - "$date": "2021-12-03T06:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "366f5b4a-2ac8-4127-9a47-bb1eadb25306", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T02:56:36.000Z" - }, - "end": { - "$date": "2021-12-03T03:29:23.000Z" - }, - "events": [ - { - "uuid": "73610160-413b-4dc8-b370-5415c7bdf3c6", - "start": { - "$date": "2021-12-03T02:56:36.000Z" - }, - "end": { - "$date": "2021-12-03T03:29:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "a4d07a52-29b7-4edc-a875-0535bf70b854", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-03T02:52:00.000Z" - }, - "end": { - "$date": "2021-12-03T02:54:24.000Z" - }, - "events": [ - { - "uuid": "ba51a365-c27f-441a-8c86-abfcb755a3ef", - "start": { - "$date": "2021-12-03T02:52:00.000Z" - }, - "end": { - "$date": "2021-12-03T02:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "baefd94c-5c3f-4281-a561-28f3888e7f61", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-03T02:54:36.000Z" - }, - "end": { - "$date": "2021-12-03T06:15:03.000Z" - }, - "events": [ - { - "uuid": "281ad7b8-35a9-4723-aa01-6ed7a0dcc1f2", - "start": { - "$date": "2021-12-03T02:54:36.000Z" - }, - "end": { - "$date": "2021-12-03T05:35:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed860c82-382f-4777-81e4-7fa31660e53d", - "start": { - "$date": "2021-12-03T05:35:36.000Z" - }, - "end": { - "$date": "2021-12-03T05:52:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "107234d0-d826-4aa9-91c8-b045205362f6", - "start": { - "$date": "2021-12-03T05:52:36.000Z" - }, - "end": { - "$date": "2021-12-03T06:15:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "b48e1096-637d-4016-b6d3-03cf74a458d2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-03T02:56:21.000Z" - }, - "end": { - "$date": "2021-12-03T03:30:58.000Z" - }, - "events": [ - { - "uuid": "7f228826-9e9d-40d3-898b-9e4dc6b5254a", - "start": { - "$date": "2021-12-03T02:56:21.000Z" - }, - "end": { - "$date": "2021-12-03T03:30:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fff83390-96fc-4fc3-a19a-259f6302d428", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-03T03:06:17.000Z" - }, - "end": { - "$date": "2021-12-03T03:11:52.000Z" - }, - "events": [ - { - "uuid": "e9b91100-4115-4542-b675-fd74b4e322f8", - "start": { - "$date": "2021-12-03T03:06:17.000Z" - }, - "end": { - "$date": "2021-12-03T03:11:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c0cf8029-f9ed-45ce-844a-4ed3535c5bdb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-03T03:18:10.000Z" - }, - "end": { - "$date": "2021-12-03T03:31:39.000Z" - }, - "events": [ - { - "uuid": "38a63afb-64ba-4a99-bafc-81e8e1bf5847", - "start": { - "$date": "2021-12-03T03:18:10.000Z" - }, - "end": { - "$date": "2021-12-03T03:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a20274f4-ac7d-45b0-bdda-3d853df17005", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T03:46:52.000Z" - }, - "end": { - "$date": "2021-12-03T04:17:37.000Z" - }, - "events": [ - { - "uuid": "ed157cd4-8fc0-4157-a75a-8d9e25e746e3", - "start": { - "$date": "2021-12-03T03:46:52.000Z" - }, - "end": { - "$date": "2021-12-03T04:17:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7e76f2ca-55c4-4dd0-bd09-ddbb44f5fe48", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-03T03:38:27.000Z" - }, - "end": { - "$date": "2021-12-03T10:58:23.000Z" - }, - "events": [ - { - "uuid": "9f0aa67b-bc5a-4f55-9755-51eb565bd802", - "start": { - "$date": "2021-12-03T03:38:27.000Z" - }, - "end": { - "$date": "2021-12-03T10:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7e229858-adf3-4c3f-8c4f-58c406646d6c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-03T07:28:32.000Z" - }, - "end": { - "$date": "2021-12-03T08:34:15.000Z" - }, - "events": [ - { - "uuid": "c52fd61f-4d8e-48fc-9f65-6a15ea5ca958", - "start": { - "$date": "2021-12-03T07:28:32.000Z" - }, - "end": { - "$date": "2021-12-03T08:34:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e713e337-7fe9-4420-a40b-cfd984c50e31", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-03T04:13:58.000Z" - }, - "end": { - "$date": "2021-12-03T04:51:30.000Z" - }, - "events": [ - { - "uuid": "35187430-014d-4b3d-9ed7-5187156e75a3", - "start": { - "$date": "2021-12-03T04:13:58.000Z" - }, - "end": { - "$date": "2021-12-03T04:51:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c5ea7ec-3c80-4ec0-bbef-e7bf4d40322b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T04:24:48.000Z" - }, - "end": { - "$date": "2021-12-03T04:50:53.000Z" - }, - "events": [ - { - "uuid": "b1ea4565-b738-465c-9722-4c714ed1b635", - "start": { - "$date": "2021-12-03T04:24:48.000Z" - }, - "end": { - "$date": "2021-12-03T04:50:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f0d1b94-9a97-4dea-b366-8fb13068956a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-03T04:49:39.000Z" - }, - "end": { - "$date": "2021-12-03T04:54:08.000Z" - }, - "events": [ - { - "uuid": "4c5f3dda-f543-4c00-b194-a2fedea10ce7", - "start": { - "$date": "2021-12-03T04:49:39.000Z" - }, - "end": { - "$date": "2021-12-03T04:54:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "949d33ac-8efe-47e2-924e-54c830ec2376", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-03T04:54:04.000Z" - }, - "end": { - "$date": "2021-12-03T05:06:18.000Z" - }, - "events": [ - { - "uuid": "7a584381-2344-4ca4-8763-7f0efcdeaa82", - "start": { - "$date": "2021-12-03T04:54:04.000Z" - }, - "end": { - "$date": "2021-12-03T05:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60939fca-7a7b-474b-b2ec-521c275dbf04", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T04:54:09.000Z" - }, - "end": { - "$date": "2021-12-03T04:56:40.000Z" - }, - "events": [ - { - "uuid": "4e952446-8497-4927-914d-804216764ea2", - "start": { - "$date": "2021-12-03T04:54:09.000Z" - }, - "end": { - "$date": "2021-12-03T04:56:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0c3b376-9438-44d1-9c3a-9c1c69fa7aaf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-03T04:58:51.000Z" - }, - "end": { - "$date": "2021-12-03T05:34:20.000Z" - }, - "events": [ - { - "uuid": "57449632-7646-49cb-96a2-1fe5088e6362", - "start": { - "$date": "2021-12-03T04:58:51.000Z" - }, - "end": { - "$date": "2021-12-03T05:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9f8118b-9587-4433-b238-dac34ca5e0ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T04:58:59.000Z" - }, - "end": { - "$date": "2021-12-03T05:34:18.000Z" - }, - "events": [ - { - "uuid": "93b5cbde-d6b6-4652-af6f-3f1e9f5d09a1", - "start": { - "$date": "2021-12-03T04:58:59.000Z" - }, - "end": { - "$date": "2021-12-03T05:34:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fea4655d-250b-4029-aea5-7456b7f1826d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-03T05:06:25.000Z" - }, - "end": { - "$date": "2021-12-03T06:16:36.000Z" - }, - "events": [ - { - "uuid": "8a4575f1-38ca-4143-ad78-f6cb1c1aa8e8", - "start": { - "$date": "2021-12-03T05:06:25.000Z" - }, - "end": { - "$date": "2021-12-03T06:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32ebf3b9-8053-43d3-a694-8bbdf3aa8531", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T05:39:05.000Z" - }, - "end": { - "$date": "2021-12-03T06:03:44.000Z" - }, - "events": [ - { - "uuid": "2ea9f9a2-91f3-45ad-8043-1fdf758613ca", - "start": { - "$date": "2021-12-03T05:39:05.000Z" - }, - "end": { - "$date": "2021-12-03T06:03:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "892d0460-3f91-428a-a1f4-52763d1ea5dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-03T05:39:03.000Z" - }, - "end": { - "$date": "2021-12-03T06:03:49.000Z" - }, - "events": [ - { - "uuid": "349b7d1a-03b8-415c-bbf5-98d02e5eb51f", - "start": { - "$date": "2021-12-03T05:39:03.000Z" - }, - "end": { - "$date": "2021-12-03T06:03:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9ce7c35-4a87-4aee-8f82-376ad79c328b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-03T05:37:38.000Z" - }, - "end": { - "$date": "2021-12-03T07:22:37.000Z" - }, - "events": [ - { - "uuid": "3334494c-fe39-401a-81e8-f4ebd2a88b2e", - "start": { - "$date": "2021-12-03T05:37:38.000Z" - }, - "end": { - "$date": "2021-12-03T07:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0eabb18e-36af-4f85-959d-6816ed8e8131", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-03T06:08:15.000Z" - }, - "end": { - "$date": "2021-12-03T06:47:00.000Z" - }, - "events": [ - { - "uuid": "7d5b799c-19d2-4c93-b459-a1022585f8a2", - "start": { - "$date": "2021-12-03T06:08:15.000Z" - }, - "end": { - "$date": "2021-12-03T06:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afde525b-d058-4aac-a0ad-b0497d8b7549", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T06:34:30.000Z" - }, - "end": { - "$date": "2021-12-03T07:06:39.000Z" - }, - "events": [ - { - "uuid": "7dc86140-dd61-4eb3-b20f-ee1acdf390c1", - "start": { - "$date": "2021-12-03T06:34:30.000Z" - }, - "end": { - "$date": "2021-12-03T07:06:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ff467d29-0c32-4b74-b5f5-de865581840e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-03T06:40:15.000Z" - }, - "end": { - "$date": "2021-12-03T06:42:16.000Z" - }, - "events": [ - { - "uuid": "d32219c6-be34-4a8e-a3ec-3ed58f3ee884", - "start": { - "$date": "2021-12-03T06:40:15.000Z" - }, - "end": { - "$date": "2021-12-03T06:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdc784b2-2c2e-45ae-ac1b-cc030c49b007", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-03T06:51:58.000Z" - }, - "end": { - "$date": "2021-12-03T07:13:40.000Z" - }, - "events": [ - { - "uuid": "d8d8d9f0-0123-4336-b185-fa37a29a254f", - "start": { - "$date": "2021-12-03T06:51:58.000Z" - }, - "end": { - "$date": "2021-12-03T07:13:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0813e835-9642-4484-ad9d-ff17d6c817d3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-03T06:57:23.000Z" - }, - "end": { - "$date": "2021-12-03T10:57:42.000Z" - }, - "events": [ - { - "uuid": "43f12976-4fb5-4b60-ad37-78c919637817", - "start": { - "$date": "2021-12-03T06:57:23.000Z" - }, - "end": { - "$date": "2021-12-03T10:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14d66d2a-787c-4570-b025-f8e9be36c907", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-03T07:14:56.000Z" - }, - "end": { - "$date": "2021-12-03T07:43:05.000Z" - }, - "events": [ - { - "uuid": "e5529634-d536-428d-bbdf-14dad4a08e0d", - "start": { - "$date": "2021-12-03T07:14:56.000Z" - }, - "end": { - "$date": "2021-12-03T07:43:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "855e7ffd-9e5a-4c8c-a688-f7da53ad4f5c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-03T07:17:21.000Z" - }, - "end": { - "$date": "2021-12-03T07:37:02.000Z" - }, - "events": [ - { - "uuid": "cd9f0bd5-73e2-4385-99dd-b73bd902dc41", - "start": { - "$date": "2021-12-03T07:17:21.000Z" - }, - "end": { - "$date": "2021-12-03T07:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2ac4a7b-4e73-4350-9a79-bd7692dd6d62", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-03T07:39:23.000Z" - }, - "end": { - "$date": "2021-12-03T08:10:01.000Z" - }, - "events": [ - { - "uuid": "a65efd24-7e62-4c8f-b741-c4f03cfaf38c", - "start": { - "$date": "2021-12-03T07:39:23.000Z" - }, - "end": { - "$date": "2021-12-03T08:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d45b3cca-f232-4fa5-94a4-e6704a80c4fd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-03T12:23:25.000Z" - }, - "end": { - "$date": "2021-12-03T13:49:31.000Z" - }, - "events": [ - { - "uuid": "89632166-32a9-41d9-9bf2-2a0be8b38e44", - "start": { - "$date": "2021-12-03T12:23:25.000Z" - }, - "end": { - "$date": "2021-12-03T13:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d65b6eb5-4b3b-4dce-a91f-ab201ffdf398", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-03T17:59:16.000Z" - }, - "end": { - "$date": "2021-12-03T18:19:28.000Z" - }, - "events": [ - { - "uuid": "efdd1768-610f-49be-9fab-330e0a075013", - "start": { - "$date": "2021-12-03T17:59:16.000Z" - }, - "end": { - "$date": "2021-12-03T18:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "9924eba3-5300-4d40-b777-7489464243d4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-03T18:20:24.000Z" - }, - "end": { - "$date": "2021-12-03T18:30:15.000Z" - }, - "events": [ - { - "uuid": "675d5886-5139-49ed-a63e-3a61696b8a77", - "start": { - "$date": "2021-12-03T18:20:24.000Z" - }, - "end": { - "$date": "2021-12-03T18:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "2eee3000-089a-40b9-a3e1-0f8a8f8a6c28", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-03T18:51:59.000Z" - }, - "end": { - "$date": "2021-12-03T18:59:00.000Z" - }, - "events": [ - { - "uuid": "1b96a100-4ba9-4c11-851c-1cbcc0e306de", - "start": { - "$date": "2021-12-03T18:51:59.000Z" - }, - "end": { - "$date": "2021-12-03T18:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd164741-2a36-4269-96b3-948ac0d26aa9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-03T19:03:56.000Z" - }, - "end": { - "$date": "2021-12-03T19:19:08.000Z" - }, - "events": [ - { - "uuid": "d6b1ecf0-b57e-4814-8d72-eb852ee09f71", - "start": { - "$date": "2021-12-03T19:03:56.000Z" - }, - "end": { - "$date": "2021-12-03T19:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "896726da-d713-4307-95d2-8481787bb578", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-03T21:18:41.000Z" - }, - "end": { - "$date": "2021-12-03T23:59:10.000Z" - }, - "events": [ - { - "uuid": "a168b09b-5286-4fe8-a99b-985c22b74695", - "start": { - "$date": "2021-12-03T21:18:41.000Z" - }, - "end": { - "$date": "2021-12-03T23:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8490641f-a8cf-42fb-b077-989ab7921304", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-03T22:12:17.000Z" - }, - "end": { - "$date": "2021-12-03T22:43:20.000Z" - }, - "events": [ - { - "uuid": "2e00fd57-6285-4953-8597-1e2714db8793", - "start": { - "$date": "2021-12-03T22:12:17.000Z" - }, - "end": { - "$date": "2021-12-03T22:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "1bd5dacc-8d0a-44f1-9f06-7615eb5172cb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-03T22:34:16.000Z" - }, - "end": { - "$date": "2021-12-03T23:27:05.000Z" - }, - "events": [ - { - "uuid": "4437cd59-7c59-4eff-834c-c44cc21dfee6", - "start": { - "$date": "2021-12-03T22:34:16.000Z" - }, - "end": { - "$date": "2021-12-03T22:57:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3d480f17-cd89-4a34-81c7-18d8a705d48f", - "start": { - "$date": "2021-12-03T22:57:16.000Z" - }, - "end": { - "$date": "2021-12-03T23:21:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9bbf5b1f-0818-4d07-a8fc-7f639073bb1f", - "start": { - "$date": "2021-12-03T23:21:16.000Z" - }, - "end": { - "$date": "2021-12-03T23:27:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64007dd1-a421-4c57-9c7f-417d1d8cd896", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-03T22:50:44.000Z" - }, - "end": { - "$date": "2021-12-03T23:14:47.000Z" - }, - "events": [ - { - "uuid": "ef9cbf8b-6026-4d11-8349-cdff1e6947a8", - "start": { - "$date": "2021-12-03T22:50:44.000Z" - }, - "end": { - "$date": "2021-12-03T23:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "64530c4e-ea78-45a9-9c52-ae2923099529", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-04T00:25:05.000Z" - }, - "end": { - "$date": "2021-12-04T00:36:56.000Z" - }, - "events": [ - { - "uuid": "1ce06ce7-18d5-45d3-af6c-05040707691c", - "start": { - "$date": "2021-12-04T00:25:05.000Z" - }, - "end": { - "$date": "2021-12-04T00:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "68b8575c-e044-4b82-a0cb-bd49ec40db78", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-04T00:37:01.000Z" - }, - "end": { - "$date": "2021-12-04T01:27:23.000Z" - }, - "events": [ - { - "uuid": "385cdf48-1f52-4e6d-b8db-2a1893e16c5e", - "start": { - "$date": "2021-12-04T00:37:01.000Z" - }, - "end": { - "$date": "2021-12-04T01:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "418a515a-7faf-4c45-a3b4-4d11bb037b4e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T00:38:01.000Z" - }, - "end": { - "$date": "2021-12-04T01:55:08.000Z" - }, - "events": [ - { - "uuid": "426242ec-1ba7-458a-b71e-43498d9d5fca", - "start": { - "$date": "2021-12-04T00:38:01.000Z" - }, - "end": { - "$date": "2021-12-04T01:55:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "630b3af0-a933-4f05-8a87-33509be1b36b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-04T01:25:41.000Z" - }, - "end": { - "$date": "2021-12-04T03:12:03.000Z" - }, - "events": [ - { - "uuid": "6ac2d9ff-ce5c-4b14-b86e-b3ab05f3d1cb", - "start": { - "$date": "2021-12-04T01:25:41.000Z" - }, - "end": { - "$date": "2021-12-04T03:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3e4c9f9d-fca6-4d6c-8fb5-a68a9fcce967", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-04T03:01:11.000Z" - }, - "end": { - "$date": "2021-12-04T03:26:42.000Z" - }, - "events": [ - { - "uuid": "7c457b17-6fc2-43da-8aa7-154fdab6b78c", - "start": { - "$date": "2021-12-04T03:01:11.000Z" - }, - "end": { - "$date": "2021-12-04T03:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "79ed4b94-4e81-41bd-970a-9bb024738003", - "uuid": "cd1dd15b-fa32-428d-a86a-7ee131517662", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-04T03:07:22.000Z" - }, - "end": { - "$date": "2021-12-04T05:02:32.000Z" - }, - "events": [ - { - "uuid": "9aca78d4-e0c4-42f5-baa5-ce01e2880d52", - "start": { - "$date": "2021-12-04T03:07:22.000Z" - }, - "end": { - "$date": "2021-12-04T05:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e8aafbbb-fd3e-483e-9763-759b1240e729", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-04T03:12:13.000Z" - }, - "end": { - "$date": "2021-12-04T07:47:59.000Z" - }, - "events": [ - { - "uuid": "bd10420b-1fca-4f88-9964-9a59ca98155d", - "start": { - "$date": "2021-12-04T03:12:13.000Z" - }, - "end": { - "$date": "2021-12-04T04:42:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d734bfd2-3f7e-4ec5-aa04-0e4c12fc8fc0", - "start": { - "$date": "2021-12-04T04:42:13.000Z" - }, - "end": { - "$date": "2021-12-04T05:15:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44d14751-0094-42f6-949e-0f750475c89e", - "start": { - "$date": "2021-12-04T05:15:13.000Z" - }, - "end": { - "$date": "2021-12-04T05:26:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f5fd41f-eb55-4e3f-b820-312fde7cb3a7", - "start": { - "$date": "2021-12-04T05:26:13.000Z" - }, - "end": { - "$date": "2021-12-04T05:32:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "42a0821f-f79b-4bf8-a05b-7f4e35d6aa3f", - "start": { - "$date": "2021-12-04T05:32:13.000Z" - }, - "end": { - "$date": "2021-12-04T07:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "10102f31-22e9-42c4-84b5-8585240f987b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-04T03:34:33.000Z" - }, - "end": { - "$date": "2021-12-04T03:59:57.000Z" - }, - "events": [ - { - "uuid": "84a2ef26-0eb1-47f7-a1ba-0d92bde030ce", - "start": { - "$date": "2021-12-04T03:34:33.000Z" - }, - "end": { - "$date": "2021-12-04T03:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "80a92a63-2f6c-4fb8-961b-d515470af1cd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-04T04:00:37.000Z" - }, - "end": { - "$date": "2021-12-04T04:28:35.000Z" - }, - "events": [ - { - "uuid": "a4b9e81b-0c3b-4076-af5f-fc281e64f8ae", - "start": { - "$date": "2021-12-04T04:00:37.000Z" - }, - "end": { - "$date": "2021-12-04T04:28:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "142ef938-01a1-4479-99a6-45080127db21", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-04T04:56:23.000Z" - }, - "end": { - "$date": "2021-12-04T11:05:15.000Z" - }, - "events": [ - { - "uuid": "b2d65acc-0ad4-46e1-befe-10e09416916e", - "start": { - "$date": "2021-12-04T04:56:23.000Z" - }, - "end": { - "$date": "2021-12-04T11:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "aab5500c-e95d-4376-aa8d-129ed5ff8c8b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-04T05:01:47.000Z" - }, - "end": { - "$date": "2021-12-04T06:11:45.000Z" - }, - "events": [ - { - "uuid": "ece65827-18e2-4b1f-8cdf-ca03088cf5ba", - "start": { - "$date": "2021-12-04T05:01:47.000Z" - }, - "end": { - "$date": "2021-12-04T06:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0457e7cf-65c3-4bc5-bbea-34d59ef3192b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-04T05:03:40.000Z" - }, - "end": { - "$date": "2021-12-04T06:53:15.000Z" - }, - "events": [ - { - "uuid": "3a459323-11f6-422b-aa33-b07a8f32918a", - "start": { - "$date": "2021-12-04T05:03:40.000Z" - }, - "end": { - "$date": "2021-12-04T06:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "793320f4-a9ec-4331-b145-7dbee4bad5d6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T05:39:45.000Z" - }, - "end": { - "$date": "2021-12-04T05:55:56.000Z" - }, - "events": [ - { - "uuid": "7af1db3b-f4a9-4174-88ca-9cda838b81c1", - "start": { - "$date": "2021-12-04T05:39:45.000Z" - }, - "end": { - "$date": "2021-12-04T05:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "26aa5397-0167-4951-90be-ca0f38ab80de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T05:45:50.000Z" - }, - "end": { - "$date": "2021-12-04T06:25:42.000Z" - }, - "events": [ - { - "uuid": "2a95a64a-8969-4878-87ad-15ff37ee1c22", - "start": { - "$date": "2021-12-04T05:45:50.000Z" - }, - "end": { - "$date": "2021-12-04T06:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e480f273-2dba-4e77-b000-660556cc1610", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T05:59:02.000Z" - }, - "end": { - "$date": "2021-12-04T06:13:13.000Z" - }, - "events": [ - { - "uuid": "889c9fb5-33b2-4b2f-bcd7-8a1e6b974f9d", - "start": { - "$date": "2021-12-04T05:59:02.000Z" - }, - "end": { - "$date": "2021-12-04T06:13:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a86585b-2427-4187-a7a1-11aa8c56c267", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T06:15:29.000Z" - }, - "end": { - "$date": "2021-12-04T06:37:10.000Z" - }, - "events": [ - { - "uuid": "a043dc33-9cd0-4b17-9b32-bcbb0a9063c7", - "start": { - "$date": "2021-12-04T06:15:29.000Z" - }, - "end": { - "$date": "2021-12-04T06:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fe79cf5e-5414-4d29-94de-c6ddad408ef7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-04T06:28:46.000Z" - }, - "end": { - "$date": "2021-12-04T08:24:37.000Z" - }, - "events": [ - { - "uuid": "9a1ef2fa-2e71-464d-bddd-070da13545e9", - "start": { - "$date": "2021-12-04T06:28:46.000Z" - }, - "end": { - "$date": "2021-12-04T08:24:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a834b4ec-76b8-4b75-bb78-0951ed67c172", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T06:41:27.000Z" - }, - "end": { - "$date": "2021-12-04T06:58:04.000Z" - }, - "events": [ - { - "uuid": "0902f5c4-d823-4c5e-ad62-6143d595ca94", - "start": { - "$date": "2021-12-04T06:41:27.000Z" - }, - "end": { - "$date": "2021-12-04T06:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8c55fe3e-31ae-4f45-8d9e-15bbaa752728", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T06:53:33.000Z" - }, - "end": { - "$date": "2021-12-04T11:05:09.000Z" - }, - "events": [ - { - "uuid": "f0c673ae-2c9e-450b-b5ba-082ae5bede48", - "start": { - "$date": "2021-12-04T06:53:33.000Z" - }, - "end": { - "$date": "2021-12-04T11:05:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "292d60f9-6c0f-4612-9cec-9b8088847f27", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-04T06:53:58.000Z" - }, - "end": { - "$date": "2021-12-04T07:47:14.000Z" - }, - "events": [ - { - "uuid": "4a227aa8-579f-45eb-80ee-812601c87209", - "start": { - "$date": "2021-12-04T06:53:58.000Z" - }, - "end": { - "$date": "2021-12-04T07:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3e9bf797-e73a-4009-8e12-5c3ef8ddc5e0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-04T06:54:02.000Z" - }, - "end": { - "$date": "2021-12-04T09:30:15.000Z" - }, - "events": [ - { - "uuid": "aee23712-9abf-48b9-859c-d0f0635f6a2a", - "start": { - "$date": "2021-12-04T06:54:02.000Z" - }, - "end": { - "$date": "2021-12-04T09:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa52401f-274c-419a-9590-6cee6981ceb9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T07:02:34.000Z" - }, - "end": { - "$date": "2021-12-04T07:19:46.000Z" - }, - "events": [ - { - "uuid": "cb95cbc5-1628-4804-8406-4300dbbcd3d7", - "start": { - "$date": "2021-12-04T07:02:34.000Z" - }, - "end": { - "$date": "2021-12-04T07:19:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2fb0690-5ea6-4f57-912f-4e86cf6dd5db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T07:21:46.000Z" - }, - "end": { - "$date": "2021-12-04T07:49:39.000Z" - }, - "events": [ - { - "uuid": "8966a932-33aa-4efa-94a4-b626e51f92e9", - "start": { - "$date": "2021-12-04T07:21:46.000Z" - }, - "end": { - "$date": "2021-12-04T07:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ffa85ef-8a88-454a-be1f-2dac7a769d45", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T07:51:54.000Z" - }, - "end": { - "$date": "2021-12-04T08:09:36.000Z" - }, - "events": [ - { - "uuid": "7729dbb0-a78f-464b-afec-0dda428c88c4", - "start": { - "$date": "2021-12-04T07:51:54.000Z" - }, - "end": { - "$date": "2021-12-04T08:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "005bc280-5de8-4f04-b222-4e36ce8a53d3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T08:18:22.000Z" - }, - "end": { - "$date": "2021-12-04T08:41:08.000Z" - }, - "events": [ - { - "uuid": "e4f2d752-b847-4082-bcff-6f305af50709", - "start": { - "$date": "2021-12-04T08:18:22.000Z" - }, - "end": { - "$date": "2021-12-04T08:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55846534-df49-43b4-a329-7ed6bec96fdb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T08:18:24.000Z" - }, - "end": { - "$date": "2021-12-04T08:41:19.000Z" - }, - "events": [ - { - "uuid": "20040779-e301-4a02-8dbc-e4d3f41ce646", - "start": { - "$date": "2021-12-04T08:18:24.000Z" - }, - "end": { - "$date": "2021-12-04T08:41:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08e51087-f09d-4b0b-b845-dc554d24edde", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T08:43:38.000Z" - }, - "end": { - "$date": "2021-12-04T09:06:35.000Z" - }, - "events": [ - { - "uuid": "1f57b60d-7a21-44a4-b9e9-ae1997c0e70c", - "start": { - "$date": "2021-12-04T08:43:38.000Z" - }, - "end": { - "$date": "2021-12-04T09:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28176720-af89-47a4-951c-5cf9c9893f83", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T08:43:40.000Z" - }, - "end": { - "$date": "2021-12-04T09:06:34.000Z" - }, - "events": [ - { - "uuid": "ca2d196f-f1cd-49c7-bfab-4368fd6bcf89", - "start": { - "$date": "2021-12-04T08:43:40.000Z" - }, - "end": { - "$date": "2021-12-04T09:06:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5376fa2f-2083-426a-a4d9-09a770cc1558", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-04T09:08:39.000Z" - }, - "end": { - "$date": "2021-12-04T09:33:30.000Z" - }, - "events": [ - { - "uuid": "47d4cb09-1a73-40fe-b29a-7312ecb3cb1c", - "start": { - "$date": "2021-12-04T09:08:39.000Z" - }, - "end": { - "$date": "2021-12-04T09:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68f5be68-4edd-42fe-b788-7592079394c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T09:08:40.000Z" - }, - "end": { - "$date": "2021-12-04T09:33:39.000Z" - }, - "events": [ - { - "uuid": "d1de984e-ed22-4263-b804-70f76ddd3634", - "start": { - "$date": "2021-12-04T09:08:40.000Z" - }, - "end": { - "$date": "2021-12-04T09:33:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d7ed7ff-a5d1-40ed-819e-87a43c4c43f0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T09:57:41.000Z" - }, - "end": { - "$date": "2021-12-04T10:02:43.000Z" - }, - "events": [ - { - "uuid": "343b3d47-ef8f-4bba-bbc0-5a2c22dfc8e9", - "start": { - "$date": "2021-12-04T09:57:41.000Z" - }, - "end": { - "$date": "2021-12-04T10:02:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52aeb8cb-77ab-4f67-85ac-9f9aeb97307e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T10:11:01.000Z" - }, - "end": { - "$date": "2021-12-04T10:41:19.000Z" - }, - "events": [ - { - "uuid": "2551ce10-b331-4389-b6d6-c32c41527589", - "start": { - "$date": "2021-12-04T10:11:01.000Z" - }, - "end": { - "$date": "2021-12-04T10:41:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "322b731f-de5b-4dd7-a119-2294690dbc78", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T10:47:37.000Z" - }, - "end": { - "$date": "2021-12-04T11:20:22.000Z" - }, - "events": [ - { - "uuid": "795bf7c6-0fc1-49c7-89df-b5cd1f63b20a", - "start": { - "$date": "2021-12-04T10:47:37.000Z" - }, - "end": { - "$date": "2021-12-04T11:20:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09b9d367-ab0e-4ccf-b2fc-15e8e1f2d7b7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T11:24:27.000Z" - }, - "end": { - "$date": "2021-12-04T11:40:02.000Z" - }, - "events": [ - { - "uuid": "d8fb2d43-2a2b-4898-9a92-c0b236d3a324", - "start": { - "$date": "2021-12-04T11:24:27.000Z" - }, - "end": { - "$date": "2021-12-04T11:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5a5b2af-80eb-4db4-9d5c-b9bfedb5f040", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T11:24:28.000Z" - }, - "end": { - "$date": "2021-12-04T11:39:52.000Z" - }, - "events": [ - { - "uuid": "15a218c8-89da-4339-bc10-8d66a7efa86b", - "start": { - "$date": "2021-12-04T11:24:28.000Z" - }, - "end": { - "$date": "2021-12-04T11:39:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0253b781-fceb-4b33-9671-c6ebf87b87f9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T11:41:57.000Z" - }, - "end": { - "$date": "2021-12-04T11:54:27.000Z" - }, - "events": [ - { - "uuid": "0d587792-0321-41c6-9b85-a50f5c00e0d2", - "start": { - "$date": "2021-12-04T11:41:57.000Z" - }, - "end": { - "$date": "2021-12-04T11:54:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34c44bc7-cb30-4743-a54a-3bb1fdf62bc5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T11:42:08.000Z" - }, - "end": { - "$date": "2021-12-04T11:54:22.000Z" - }, - "events": [ - { - "uuid": "673f29b3-d0b9-4958-8013-2a59bb15daf0", - "start": { - "$date": "2021-12-04T11:42:08.000Z" - }, - "end": { - "$date": "2021-12-04T11:54:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "730aa916-cb8a-4d6b-a843-83587c065b90", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T11:59:08.000Z" - }, - "end": { - "$date": "2021-12-04T12:23:40.000Z" - }, - "events": [ - { - "uuid": "a44b150d-8a47-4c1e-8332-6c815b6ed1d0", - "start": { - "$date": "2021-12-04T11:59:08.000Z" - }, - "end": { - "$date": "2021-12-04T12:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4982f26b-05e8-4e1d-b595-48f1bfd82564", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T11:59:03.000Z" - }, - "end": { - "$date": "2021-12-04T12:23:38.000Z" - }, - "events": [ - { - "uuid": "3253d4de-6d9b-466f-a36f-1e6370982aa8", - "start": { - "$date": "2021-12-04T11:59:03.000Z" - }, - "end": { - "$date": "2021-12-04T12:23:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1579a24c-7e20-4b9e-9c16-3f3e366c5898", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T12:25:38.000Z" - }, - "end": { - "$date": "2021-12-04T12:48:48.000Z" - }, - "events": [ - { - "uuid": "0d049e16-8182-4694-9d83-87301ba76bd0", - "start": { - "$date": "2021-12-04T12:25:38.000Z" - }, - "end": { - "$date": "2021-12-04T12:48:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6861f52-281f-4d48-9d1d-fcab6bf7addc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T12:25:39.000Z" - }, - "end": { - "$date": "2021-12-04T12:48:53.000Z" - }, - "events": [ - { - "uuid": "0e155e2b-5166-46b6-8b60-bae2b9e2de72", - "start": { - "$date": "2021-12-04T12:25:39.000Z" - }, - "end": { - "$date": "2021-12-04T12:48:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8208fe84-a1dd-4d20-8217-ae9d27f84c37", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T12:54:19.000Z" - }, - "end": { - "$date": "2021-12-04T13:17:00.000Z" - }, - "events": [ - { - "uuid": "34cfc11f-f850-4c4d-9d51-db28677ef6ec", - "start": { - "$date": "2021-12-04T12:54:19.000Z" - }, - "end": { - "$date": "2021-12-04T13:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3aac4cf7-8e7c-4317-8542-8fe4844bc501", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T12:54:20.000Z" - }, - "end": { - "$date": "2021-12-04T13:16:59.000Z" - }, - "events": [ - { - "uuid": "46709a96-2de7-49e6-8c7e-87d1d28f1b69", - "start": { - "$date": "2021-12-04T12:54:20.000Z" - }, - "end": { - "$date": "2021-12-04T13:16:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "589877c7-8cb4-4447-a1eb-8ebd0ac91b72", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T13:22:20.000Z" - }, - "end": { - "$date": "2021-12-04T13:36:50.000Z" - }, - "events": [ - { - "uuid": "5bbaf892-f6fd-4a8c-bd98-ce79a7559cfb", - "start": { - "$date": "2021-12-04T13:22:20.000Z" - }, - "end": { - "$date": "2021-12-04T13:36:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3358755-5160-4f0d-a25e-d370cd1cecb6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T13:22:30.000Z" - }, - "end": { - "$date": "2021-12-04T13:36:57.000Z" - }, - "events": [ - { - "uuid": "9257704e-2472-49c3-bfa8-59aa2a5d3446", - "start": { - "$date": "2021-12-04T13:22:30.000Z" - }, - "end": { - "$date": "2021-12-04T13:36:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1504a863-f4d9-4707-9620-97881efa0d74", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T13:40:01.000Z" - }, - "end": { - "$date": "2021-12-04T14:02:23.000Z" - }, - "events": [ - { - "uuid": "3f793bd4-4bf3-463a-99af-43fb3adacad1", - "start": { - "$date": "2021-12-04T13:40:01.000Z" - }, - "end": { - "$date": "2021-12-04T14:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bdb6312-762c-4bf2-8826-53374c3b2204", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T13:40:01.000Z" - }, - "end": { - "$date": "2021-12-04T14:02:20.000Z" - }, - "events": [ - { - "uuid": "14034b96-70ef-4d66-8db6-9943f83a4669", - "start": { - "$date": "2021-12-04T13:40:01.000Z" - }, - "end": { - "$date": "2021-12-04T14:02:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa845ab8-5c57-4a4d-ba2c-db2f0261d999", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T14:04:36.000Z" - }, - "end": { - "$date": "2021-12-04T14:38:52.000Z" - }, - "events": [ - { - "uuid": "adbc21ed-21b7-49c1-b7df-9e4e0b96c31d", - "start": { - "$date": "2021-12-04T14:04:36.000Z" - }, - "end": { - "$date": "2021-12-04T14:38:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e574f45-a92e-43e7-9481-60ff1f895424", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T14:04:31.000Z" - }, - "end": { - "$date": "2021-12-04T14:38:51.000Z" - }, - "events": [ - { - "uuid": "79b8e3f2-1f99-4f7e-ac11-56e5cea132a4", - "start": { - "$date": "2021-12-04T14:04:31.000Z" - }, - "end": { - "$date": "2021-12-04T14:38:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d71cd9cf-6069-4345-b439-4e41e9c0b5c9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-04T14:40:52.000Z" - }, - "end": { - "$date": "2021-12-04T15:00:37.000Z" - }, - "events": [ - { - "uuid": "6fe087fe-4f34-432b-b253-f560b2c7b5b0", - "start": { - "$date": "2021-12-04T14:40:52.000Z" - }, - "end": { - "$date": "2021-12-04T15:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb1099cd-a8d5-4c40-bd53-60ac2ef4d36c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T14:41:03.000Z" - }, - "end": { - "$date": "2021-12-04T15:00:42.000Z" - }, - "events": [ - { - "uuid": "20a2126f-db8e-41bd-bce5-99dd4bc4341a", - "start": { - "$date": "2021-12-04T14:41:03.000Z" - }, - "end": { - "$date": "2021-12-04T15:00:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16fa541b-6e05-42f6-a675-d5d250579e1e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T16:11:23.000Z" - }, - "end": { - "$date": "2021-12-04T16:38:32.000Z" - }, - "events": [ - { - "uuid": "bf97c901-6933-4906-8ce3-58a96a371a18", - "start": { - "$date": "2021-12-04T16:11:23.000Z" - }, - "end": { - "$date": "2021-12-04T16:38:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37006f76-b821-460f-b439-89816544ccd2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T16:38:44.000Z" - }, - "end": { - "$date": "2021-12-04T16:40:34.000Z" - }, - "events": [ - { - "uuid": "1ba04cef-0b8e-4253-a14b-fc7384ab868c", - "start": { - "$date": "2021-12-04T16:38:44.000Z" - }, - "end": { - "$date": "2021-12-04T16:40:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "fbf0cd62-218a-4ebf-bda7-aab9ec05c48e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T16:40:49.000Z" - }, - "end": { - "$date": "2021-12-04T18:28:43.000Z" - }, - "events": [ - { - "uuid": "cfeecbe6-4272-4029-99d5-286ef32a703f", - "start": { - "$date": "2021-12-04T16:40:49.000Z" - }, - "end": { - "$date": "2021-12-04T18:28:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f83e2621-db5e-4d3a-ac22-e0519e4a1943", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-04T17:07:26.000Z" - }, - "end": { - "$date": "2021-12-04T17:40:33.000Z" - }, - "events": [ - { - "uuid": "59a894f0-a32f-4995-92da-3c95788f35dc", - "start": { - "$date": "2021-12-04T17:07:26.000Z" - }, - "end": { - "$date": "2021-12-04T17:40:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12c247ad-f87d-4b3a-9bac-41a6a97aeed9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-04T19:13:22.000Z" - }, - "end": { - "$date": "2021-12-04T19:34:39.000Z" - }, - "events": [ - { - "uuid": "84615d71-90af-45ed-9467-b0e8cb981a5b", - "start": { - "$date": "2021-12-04T19:13:22.000Z" - }, - "end": { - "$date": "2021-12-04T19:34:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8f8f1ab-4438-4f3b-9d33-b7e802e4f774", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T19:31:33.000Z" - }, - "end": { - "$date": "2021-12-04T19:56:23.000Z" - }, - "events": [ - { - "uuid": "a018f58b-6040-4ab2-b950-69b98c562957", - "start": { - "$date": "2021-12-04T19:31:33.000Z" - }, - "end": { - "$date": "2021-12-04T19:56:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e99c6399-cbcc-473a-b4ff-55fe9cd95c49", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T19:36:54.000Z" - }, - "end": { - "$date": "2021-12-04T20:05:51.000Z" - }, - "events": [ - { - "uuid": "f1e6211e-348f-488f-8e93-9894f08af250", - "start": { - "$date": "2021-12-04T19:36:54.000Z" - }, - "end": { - "$date": "2021-12-04T20:05:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7666af4a-12bf-40d5-b416-0591558eab4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-04T19:37:25.000Z" - }, - "end": { - "$date": "2021-12-04T19:53:53.000Z" - }, - "events": [ - { - "uuid": "d3ef3869-2fe4-4e85-9dbf-810a0fa6441d", - "start": { - "$date": "2021-12-04T19:37:25.000Z" - }, - "end": { - "$date": "2021-12-04T19:53:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab4218e4-8853-4b4b-a87c-cd0a2010213b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-04T19:56:07.000Z" - }, - "end": { - "$date": "2021-12-04T20:20:24.000Z" - }, - "events": [ - { - "uuid": "3debc0bd-7d34-48c4-8a8b-275f5c99213b", - "start": { - "$date": "2021-12-04T19:56:07.000Z" - }, - "end": { - "$date": "2021-12-04T20:20:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2ca40e9-0aa0-4ff0-a96f-c895f021a043", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T19:57:44.000Z" - }, - "end": { - "$date": "2021-12-04T20:36:35.000Z" - }, - "events": [ - { - "uuid": "5ddc8ff1-c4c6-434e-8324-8d4ac8cf5ad3", - "start": { - "$date": "2021-12-04T19:57:44.000Z" - }, - "end": { - "$date": "2021-12-04T20:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "8b550ce2-96b1-473f-9aa1-437cf87ebae1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-04T20:01:47.000Z" - }, - "end": { - "$date": "2021-12-04T21:04:23.000Z" - }, - "events": [ - { - "uuid": "430c7f52-5d41-449a-ab42-50d8367730ef", - "start": { - "$date": "2021-12-04T20:01:47.000Z" - }, - "end": { - "$date": "2021-12-04T21:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5558a5af-b263-4394-b6a3-d35eb835af69", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T20:15:08.000Z" - }, - "end": { - "$date": "2021-12-04T20:31:28.000Z" - }, - "events": [ - { - "uuid": "424573d6-9b04-4111-9728-49374f5f14ab", - "start": { - "$date": "2021-12-04T20:15:08.000Z" - }, - "end": { - "$date": "2021-12-04T20:31:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "79ed4b94-4e81-41bd-970a-9bb024738003", - "uuid": "b40057fa-dbbd-4d79-aadf-02ae67691641", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-04T20:29:17.000Z" - }, - "end": { - "$date": "2021-12-04T23:16:53.000Z" - }, - "events": [ - { - "uuid": "aee66f23-dafd-40e0-9060-e65b87622bb7", - "start": { - "$date": "2021-12-04T20:29:17.000Z" - }, - "end": { - "$date": "2021-12-04T23:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a904673-f013-4cd3-a50d-e04f4c9923bd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T20:39:19.000Z" - }, - "end": { - "$date": "2021-12-04T21:24:21.000Z" - }, - "events": [ - { - "uuid": "489a18a4-bdb8-49fd-ba56-215095a84e0e", - "start": { - "$date": "2021-12-04T20:39:19.000Z" - }, - "end": { - "$date": "2021-12-04T21:24:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "da64e9a1-e1d8-4eb5-8e8c-469de23abcf2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-04T20:36:16.000Z" - }, - "end": { - "$date": "2021-12-04T23:01:21.000Z" - }, - "events": [ - { - "uuid": "935c5ef5-2fa2-48be-96f0-13d5cb685d62", - "start": { - "$date": "2021-12-04T20:36:16.000Z" - }, - "end": { - "$date": "2021-12-04T23:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f9939e6-edef-4758-8fd9-c1c93d2e31cc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T20:39:27.000Z" - }, - "end": { - "$date": "2021-12-04T20:53:01.000Z" - }, - "events": [ - { - "uuid": "d38a6093-cf46-420c-b423-515a20090980", - "start": { - "$date": "2021-12-04T20:39:27.000Z" - }, - "end": { - "$date": "2021-12-04T20:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1708014e-7448-4fa6-b878-f090107eb23e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T20:56:12.000Z" - }, - "end": { - "$date": "2021-12-04T21:16:02.000Z" - }, - "events": [ - { - "uuid": "607442b5-85e5-44d4-b350-40fc6a40d32d", - "start": { - "$date": "2021-12-04T20:56:12.000Z" - }, - "end": { - "$date": "2021-12-04T21:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46a402f5-e5ce-4fda-884c-858955fde7ad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T21:16:58.000Z" - }, - "end": { - "$date": "2021-12-04T21:36:48.000Z" - }, - "events": [ - { - "uuid": "a59c01b6-6436-4b5b-908e-1448e752592e", - "start": { - "$date": "2021-12-04T21:16:58.000Z" - }, - "end": { - "$date": "2021-12-04T21:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b63f0d67-8d0a-4ef1-8edd-9286de41b77d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-04T21:30:59.000Z" - }, - "end": { - "$date": "2021-12-04T21:54:10.000Z" - }, - "events": [ - { - "uuid": "768394ea-958a-4400-8c71-04c082c0cef0", - "start": { - "$date": "2021-12-04T21:30:59.000Z" - }, - "end": { - "$date": "2021-12-04T21:54:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a008d171-0193-4e19-85a9-8cc259e13ea5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-04T19:58:24.000Z" - }, - "end": { - "$date": "2021-12-05T00:57:11.000Z" - }, - "events": [ - { - "uuid": "4bdfba0b-0a0d-40be-9985-402f032fe2ba", - "start": { - "$date": "2021-12-04T19:58:24.000Z" - }, - "end": { - "$date": "2021-12-04T23:06:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "302589dd-2d92-4866-9d3d-9a3fb6989c0e", - "start": { - "$date": "2021-12-04T23:06:24.000Z" - }, - "end": { - "$date": "2021-12-04T23:11:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "254c28a4-e3f2-41d4-a15f-6b6b5c5ebf1e", - "start": { - "$date": "2021-12-04T23:11:24.000Z" - }, - "end": { - "$date": "2021-12-05T00:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a923b319-99d7-4967-9ad2-68b59fa674a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-04T21:52:50.000Z" - }, - "end": { - "$date": "2021-12-04T23:04:42.000Z" - }, - "events": [ - { - "uuid": "3bf4cdc4-b233-41f2-b464-2eaec2051882", - "start": { - "$date": "2021-12-04T21:52:50.000Z" - }, - "end": { - "$date": "2021-12-04T23:04:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "319b5c7f-c883-450a-a355-087f820aa829", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T21:53:50.000Z" - }, - "end": { - "$date": "2021-12-04T22:06:19.000Z" - }, - "events": [ - { - "uuid": "954af6ff-24f0-4b15-a2e6-7f53f8461911", - "start": { - "$date": "2021-12-04T21:53:50.000Z" - }, - "end": { - "$date": "2021-12-04T22:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "533169b6-5531-4e86-ae94-fd2afff152b3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T23:17:28.000Z" - }, - "end": { - "$date": "2021-12-04T23:36:31.000Z" - }, - "events": [ - { - "uuid": "ded7fce1-cf91-4742-bb12-2d1fa6e4a0ac", - "start": { - "$date": "2021-12-04T23:17:28.000Z" - }, - "end": { - "$date": "2021-12-04T23:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "54ab2818-738a-4921-964f-d12bad176afc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-04T23:36:51.000Z" - }, - "end": { - "$date": "2021-12-04T23:53:22.000Z" - }, - "events": [ - { - "uuid": "551d58c8-8fc4-4eea-8ce7-d72b021635d2", - "start": { - "$date": "2021-12-04T23:36:51.000Z" - }, - "end": { - "$date": "2021-12-04T23:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e992a803-b508-4f9d-ace5-f76d130c6cc0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-05T01:03:43.000Z" - }, - "end": { - "$date": "2021-12-05T01:06:32.000Z" - }, - "events": [ - { - "uuid": "c01b0eea-0102-4e67-9763-b4ea9e0b6527", - "start": { - "$date": "2021-12-05T01:03:43.000Z" - }, - "end": { - "$date": "2021-12-05T01:06:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f12a478b-64fe-47d0-bc97-4da4adff624a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-05T01:07:30.000Z" - }, - "end": { - "$date": "2021-12-05T01:37:42.000Z" - }, - "events": [ - { - "uuid": "b7b8be61-9720-47f4-8420-bc70b4795dad", - "start": { - "$date": "2021-12-05T01:07:30.000Z" - }, - "end": { - "$date": "2021-12-05T01:37:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d29561c-f6db-473a-a1b8-3b5178dfc0dc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-05T01:07:28.000Z" - }, - "end": { - "$date": "2021-12-05T01:37:24.000Z" - }, - "events": [ - { - "uuid": "34614fba-80d0-43d2-9532-e28a45366831", - "start": { - "$date": "2021-12-05T01:07:28.000Z" - }, - "end": { - "$date": "2021-12-05T01:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29a991dd-ffe3-4885-820d-58a12ad22b67", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-05T01:41:57.000Z" - }, - "end": { - "$date": "2021-12-05T02:18:34.000Z" - }, - "events": [ - { - "uuid": "56abcbc7-9d89-4664-87bd-13eef850a336", - "start": { - "$date": "2021-12-05T01:41:57.000Z" - }, - "end": { - "$date": "2021-12-05T02:18:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4db3a39-a58b-4686-ae76-7a7bac1fdc22", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-05T01:41:49.000Z" - }, - "end": { - "$date": "2021-12-05T02:18:59.000Z" - }, - "events": [ - { - "uuid": "15b2e956-717c-484d-ac7e-c198def87ecd", - "start": { - "$date": "2021-12-05T01:41:49.000Z" - }, - "end": { - "$date": "2021-12-05T02:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "113d25e3-af07-47d6-acb8-82316d618a81", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-05T01:41:52.000Z" - }, - "end": { - "$date": "2021-12-05T02:18:36.000Z" - }, - "events": [ - { - "uuid": "613edc2a-5229-4c92-b792-b50a7e2480d3", - "start": { - "$date": "2021-12-05T01:41:52.000Z" - }, - "end": { - "$date": "2021-12-05T02:18:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02063ace-4684-4448-af85-e27f4a2be72f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-05T01:41:49.000Z" - }, - "end": { - "$date": "2021-12-05T02:10:48.000Z" - }, - "events": [ - { - "uuid": "3b6bc415-50b3-49a7-95f3-a8b79ba23094", - "start": { - "$date": "2021-12-05T01:41:49.000Z" - }, - "end": { - "$date": "2021-12-05T02:10:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7ad37b63-a805-464b-92ae-8358e1d06217", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-05T01:57:47.000Z" - }, - "end": { - "$date": "2021-12-05T03:12:53.000Z" - }, - "events": [ - { - "uuid": "ca6f64b5-06e3-42d3-b055-6c8bdd56b83b", - "start": { - "$date": "2021-12-05T01:57:47.000Z" - }, - "end": { - "$date": "2021-12-05T03:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d853e9cd-8384-4886-9414-fb3538c11013", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-05T02:19:14.000Z" - }, - "end": { - "$date": "2021-12-05T02:20:21.000Z" - }, - "events": [ - { - "uuid": "84461b8e-7a1c-4f27-b1c9-1e4863d19d20", - "start": { - "$date": "2021-12-05T02:19:14.000Z" - }, - "end": { - "$date": "2021-12-05T02:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0569b20f-4940-4b1f-bc51-f8394f647cfa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-05T02:24:13.000Z" - }, - "end": { - "$date": "2021-12-05T03:11:22.000Z" - }, - "events": [ - { - "uuid": "6afee913-4e80-46a7-b903-3309a7ad132f", - "start": { - "$date": "2021-12-05T02:24:13.000Z" - }, - "end": { - "$date": "2021-12-05T03:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf99b0bd-32a9-44c3-9ddd-7622a331e9ba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-05T02:59:57.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:09.000Z" - }, - "events": [ - { - "uuid": "a41e5118-e8fc-422d-9ed7-0c9ce872d8a1", - "start": { - "$date": "2021-12-05T02:59:57.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73615e32-10b8-41a3-8a38-c5bef58015b9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-05T03:15:59.000Z" - }, - "end": { - "$date": "2021-12-05T03:49:15.000Z" - }, - "events": [ - { - "uuid": "f106fecf-9032-4a11-961c-aeea2c3f5a39", - "start": { - "$date": "2021-12-05T03:15:59.000Z" - }, - "end": { - "$date": "2021-12-05T03:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "9fefe4c6-edbb-4eeb-a47e-7889b238c708", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-05T03:59:06.000Z" - }, - "end": { - "$date": "2021-12-05T04:55:23.000Z" - }, - "events": [ - { - "uuid": "2a0f6a2f-415f-4cd3-b739-ad88b27cc5a4", - "start": { - "$date": "2021-12-05T03:59:06.000Z" - }, - "end": { - "$date": "2021-12-05T04:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "7f389133-8692-481c-84dc-102f3ffe4007", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-05T04:07:47.000Z" - }, - "end": { - "$date": "2021-12-05T07:36:09.000Z" - }, - "events": [ - { - "uuid": "fa9ec573-d754-46f9-a69f-88a740c0ca3a", - "start": { - "$date": "2021-12-05T04:07:47.000Z" - }, - "end": { - "$date": "2021-12-05T07:36:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5283ae4e-5746-40af-a62c-a83bafe284a9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-05T05:16:17.000Z" - }, - "end": { - "$date": "2021-12-05T05:58:04.000Z" - }, - "events": [ - { - "uuid": "635d9aba-abb8-44f8-8ec7-dfac6cb382bc", - "start": { - "$date": "2021-12-05T05:16:17.000Z" - }, - "end": { - "$date": "2021-12-05T05:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fe615d7e-1856-4731-a4ee-afdb99f00f91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-05T05:03:04.000Z" - }, - "end": { - "$date": "2021-12-05T05:59:05.000Z" - }, - "events": [ - { - "uuid": "18392691-acc3-4c46-8058-c98699954fa0", - "start": { - "$date": "2021-12-05T05:03:04.000Z" - }, - "end": { - "$date": "2021-12-05T05:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "017ce732-5584-4d5a-ba03-3a8f527e4757", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-05T05:03:40.000Z" - }, - "end": { - "$date": "2021-12-05T05:08:01.000Z" - }, - "events": [ - { - "uuid": "76dc815b-d4f3-46f7-92d0-a19a9cd2e605", - "start": { - "$date": "2021-12-05T05:03:40.000Z" - }, - "end": { - "$date": "2021-12-05T05:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e858f588-f467-4503-a826-2619e7823a78", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-05T05:08:16.000Z" - }, - "end": { - "$date": "2021-12-05T05:10:06.000Z" - }, - "events": [ - { - "uuid": "ae65de9e-a786-453c-8029-a7af99dd5ee0", - "start": { - "$date": "2021-12-05T05:08:16.000Z" - }, - "end": { - "$date": "2021-12-05T05:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "97330f92-e78a-4515-a4f8-4adff7afba70", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-05T05:11:11.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:30.000Z" - }, - "events": [ - { - "uuid": "ecee33ec-0e36-4ecc-99d3-477a774dfcfa", - "start": { - "$date": "2021-12-05T05:11:11.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de1e80fa-b5c6-442f-9f8a-5f2c34c88b44", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-05T05:38:48.000Z" - }, - "end": { - "$date": "2021-12-05T06:01:39.000Z" - }, - "events": [ - { - "uuid": "46b3a30e-b36c-4e04-9e55-047f90e179a4", - "start": { - "$date": "2021-12-05T05:38:48.000Z" - }, - "end": { - "$date": "2021-12-05T06:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b75da663-b6ef-4bb7-8fca-74e822bd99d8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-05T05:57:40.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:55.000Z" - }, - "events": [ - { - "uuid": "2b189d83-5f72-45ea-9375-2c36c9aef33b", - "start": { - "$date": "2021-12-05T05:57:40.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "340469d8-6aca-431b-8cff-ded4d38088e2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-05T05:58:33.000Z" - }, - "end": { - "$date": "2021-12-05T06:03:18.000Z" - }, - "events": [ - { - "uuid": "71b987e8-78db-4671-ad27-dec5dd73931f", - "start": { - "$date": "2021-12-05T05:58:33.000Z" - }, - "end": { - "$date": "2021-12-05T06:03:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aa7b746e-72eb-4ce3-adc0-0c055f5a0863", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-05T05:59:05.000Z" - }, - "end": { - "$date": "2021-12-05T06:04:02.000Z" - }, - "events": [ - { - "uuid": "2158e1ca-a033-4655-b184-a18af668410c", - "start": { - "$date": "2021-12-05T05:59:05.000Z" - }, - "end": { - "$date": "2021-12-05T06:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8ce570b5-bc81-4a4a-b896-b93f88485dcd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-05T06:00:25.000Z" - }, - "end": { - "$date": "2021-12-05T06:53:34.000Z" - }, - "events": [ - { - "uuid": "64d56901-b367-4beb-a114-2186532d1c59", - "start": { - "$date": "2021-12-05T06:00:25.000Z" - }, - "end": { - "$date": "2021-12-05T06:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "db8c4b70-171b-4abd-b45d-2eda8b37e967", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-05T06:03:38.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:56.000Z" - }, - "events": [ - { - "uuid": "f8240554-ec9d-4b2c-a7c2-1df49c5dbb57", - "start": { - "$date": "2021-12-05T06:03:38.000Z" - }, - "end": { - "$date": "2021-12-05T07:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "140f7b41-3b1a-4fd7-87a4-a632927883c7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-05T06:04:10.000Z" - }, - "end": { - "$date": "2021-12-05T06:09:07.000Z" - }, - "events": [ - { - "uuid": "5b71ee92-1b30-4eed-bdcb-fcbdb50cfd64", - "start": { - "$date": "2021-12-05T06:04:10.000Z" - }, - "end": { - "$date": "2021-12-05T06:09:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c9271eb-d7d8-4353-b8ac-734c15959a32", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-05T06:10:50.000Z" - }, - "end": { - "$date": "2021-12-05T06:15:48.000Z" - }, - "events": [ - { - "uuid": "b6adc0e0-dd3e-4820-8a92-67405b8163af", - "start": { - "$date": "2021-12-05T06:10:50.000Z" - }, - "end": { - "$date": "2021-12-05T06:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "db4addd7-9a46-4ccb-ba72-3384c8cc0e97", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-05T06:16:00.000Z" - }, - "end": { - "$date": "2021-12-05T06:55:19.000Z" - }, - "events": [ - { - "uuid": "abb58fba-6949-45b4-b917-44bd45c4054c", - "start": { - "$date": "2021-12-05T06:16:00.000Z" - }, - "end": { - "$date": "2021-12-05T06:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fcf887f9-bcef-4377-a623-aee98833606b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-05T06:56:22.000Z" - }, - "end": { - "$date": "2021-12-05T07:01:25.000Z" - }, - "events": [ - { - "uuid": "ac60ee0f-19af-4b99-a4b9-17e8a2ed2b7e", - "start": { - "$date": "2021-12-05T06:56:22.000Z" - }, - "end": { - "$date": "2021-12-05T07:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2fa01abb-326d-4753-9fce-0598e3b8b13b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-05T07:02:51.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:59.000Z" - }, - "events": [ - { - "uuid": "46a4e96b-9cf8-4167-84d1-4e51df2cb6b5", - "start": { - "$date": "2021-12-05T07:02:51.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "299e8343-7c76-4480-b8dc-295f5578bc58", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-05T07:02:58.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:26.000Z" - }, - "events": [ - { - "uuid": "cf913be8-d2ea-4b10-a67e-aaa1518a767f", - "start": { - "$date": "2021-12-05T07:02:58.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "97040274-7b42-4f56-91ba-bf1fa90ed823", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-05T07:03:01.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:34.000Z" - }, - "events": [ - { - "uuid": "fa1b8dd2-b057-4d52-a534-b5b16eb5837a", - "start": { - "$date": "2021-12-05T07:03:01.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9ce3ca93-96f1-4b6a-a156-7489019541c6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-05T07:03:11.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:43.000Z" - }, - "events": [ - { - "uuid": "841f04e5-ae75-441c-b4df-dc6d4f3d7c0a", - "start": { - "$date": "2021-12-05T07:03:11.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b121d47e-61f1-4589-b92f-1599b82c152a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-05T07:03:20.000Z" - }, - "end": { - "$date": "2021-12-05T07:42:00.000Z" - }, - "events": [ - { - "uuid": "df3bb2bf-3c75-4746-8f60-5944854c0d73", - "start": { - "$date": "2021-12-05T07:03:20.000Z" - }, - "end": { - "$date": "2021-12-05T07:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "935ec0ab-ae43-4120-8aa9-69becf35fcec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-05T07:04:52.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:51.000Z" - }, - "events": [ - { - "uuid": "27e3b7af-cb20-4a7c-8133-af8468c3017c", - "start": { - "$date": "2021-12-05T07:04:52.000Z" - }, - "end": { - "$date": "2021-12-05T07:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5b8eea46-c605-44e8-98d3-def0b20746ad", - "uuid": "22cd3697-2ec0-4ca2-b90b-5a468152655e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-05T07:47:40.000Z" - }, - "end": { - "$date": "2021-12-05T08:13:14.000Z" - }, - "events": [ - { - "uuid": "b4e30707-dc57-42b5-8fb1-3702dd5d440d", - "start": { - "$date": "2021-12-05T07:47:40.000Z" - }, - "end": { - "$date": "2021-12-05T08:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5b8eea46-c605-44e8-98d3-def0b20746ad", - "uuid": "4cbd841c-bc5f-496f-871c-9c4ce207d936", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-05T07:48:54.000Z" - }, - "end": { - "$date": "2021-12-05T08:01:54.000Z" - }, - "events": [ - { - "uuid": "778ee3f3-75a2-49e4-abfb-b39769411e43", - "start": { - "$date": "2021-12-05T07:48:54.000Z" - }, - "end": { - "$date": "2021-12-05T08:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "803a2edf-25a9-43f4-8e4c-1ce9db21f144", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-05T07:55:48.000Z" - }, - "end": { - "$date": "2021-12-05T08:18:13.000Z" - }, - "events": [ - { - "uuid": "e44336df-eb96-4831-b815-2b4ec9903dd6", - "start": { - "$date": "2021-12-05T07:55:48.000Z" - }, - "end": { - "$date": "2021-12-05T08:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67892c97-b883-4c7e-adea-2ae7518baa9e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-05T08:20:35.000Z" - }, - "end": { - "$date": "2021-12-05T08:37:48.000Z" - }, - "events": [ - { - "uuid": "8da3d15d-d743-490f-9208-a03d78c8b746", - "start": { - "$date": "2021-12-05T08:20:35.000Z" - }, - "end": { - "$date": "2021-12-05T08:37:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c4fd5ae-0aa9-40da-97aa-85acb92b5d78", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-05T08:39:33.000Z" - }, - "end": { - "$date": "2021-12-05T09:01:21.000Z" - }, - "events": [ - { - "uuid": "c9571a77-1e8e-41b6-ae95-31511780031e", - "start": { - "$date": "2021-12-05T08:39:33.000Z" - }, - "end": { - "$date": "2021-12-05T09:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "904150ac-108c-44fc-82e0-ecec9c054e1b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-05T12:18:08.000Z" - }, - "end": { - "$date": "2021-12-05T15:50:21.000Z" - }, - "events": [ - { - "uuid": "632b35b0-0f5a-4fa6-96b8-8384f3601c5f", - "start": { - "$date": "2021-12-05T12:18:08.000Z" - }, - "end": { - "$date": "2021-12-05T15:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "577f9e86-6ca9-410f-9c42-3a8a8aed6c20", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-05T17:50:51.000Z" - }, - "end": { - "$date": "2021-12-05T18:05:02.000Z" - }, - "events": [ - { - "uuid": "04e44e4a-88e2-490d-bac6-3d3abe5e02c1", - "start": { - "$date": "2021-12-05T17:50:51.000Z" - }, - "end": { - "$date": "2021-12-05T18:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fea4c59-d59b-4df3-b841-c0fe988ac37c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-05T20:09:27.000Z" - }, - "end": { - "$date": "2021-12-05T20:44:21.000Z" - }, - "events": [ - { - "uuid": "e618cf98-cce4-4622-92ba-3cc539eea875", - "start": { - "$date": "2021-12-05T20:09:27.000Z" - }, - "end": { - "$date": "2021-12-05T20:44:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5c5b6f43-2da3-49eb-9825-92eff322356a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-05T20:13:09.000Z" - }, - "end": { - "$date": "2021-12-05T21:01:44.000Z" - }, - "events": [ - { - "uuid": "c4793aa5-d08c-450e-9843-a68855412db6", - "start": { - "$date": "2021-12-05T20:13:09.000Z" - }, - "end": { - "$date": "2021-12-05T21:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd971e85-645d-410e-ad74-6aa0c465825e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-05T20:45:24.000Z" - }, - "end": { - "$date": "2021-12-05T21:15:36.000Z" - }, - "events": [ - { - "uuid": "0bac92f5-0f54-4e0a-9a9b-152220be490f", - "start": { - "$date": "2021-12-05T20:45:24.000Z" - }, - "end": { - "$date": "2021-12-05T21:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "fead961b-3212-48a0-a4da-e04e5f0dbcda", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-05T21:16:25.000Z" - }, - "end": { - "$date": "2021-12-05T21:26:07.000Z" - }, - "events": [ - { - "uuid": "9d5c9129-5ff8-4ed7-95cc-2261d3b1c925", - "start": { - "$date": "2021-12-05T21:16:25.000Z" - }, - "end": { - "$date": "2021-12-05T21:26:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c9de24f8-ef4e-4a94-a301-febfd2085e43", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-05T21:26:12.000Z" - }, - "end": { - "$date": "2021-12-05T21:51:20.000Z" - }, - "events": [ - { - "uuid": "bf77ec4c-2a5e-4ada-a3b1-0621cdb78fb1", - "start": { - "$date": "2021-12-05T21:26:12.000Z" - }, - "end": { - "$date": "2021-12-05T21:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "082c6034-4096-4a67-920c-224da2563653", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-05T21:35:06.000Z" - }, - "end": { - "$date": "2021-12-05T22:40:45.000Z" - }, - "events": [ - { - "uuid": "97594aa7-ce7f-4c4b-8c70-df3ce5ce723c", - "start": { - "$date": "2021-12-05T21:35:06.000Z" - }, - "end": { - "$date": "2021-12-05T22:07:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1401ba85-b3bc-4747-a0a8-a8410504ccb9", - "start": { - "$date": "2021-12-05T22:07:06.000Z" - }, - "end": { - "$date": "2021-12-05T22:08:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e0c7bc4f-ca7f-4f34-8f35-e6fc307a400d", - "start": { - "$date": "2021-12-05T22:08:06.000Z" - }, - "end": { - "$date": "2021-12-05T22:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d469f3e-ffe8-401d-8d5c-1a004900110d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-06T00:05:37.000Z" - }, - "end": { - "$date": "2021-12-06T00:42:18.000Z" - }, - "events": [ - { - "uuid": "172a9efe-0254-4d4e-a86b-e0da067eacfc", - "start": { - "$date": "2021-12-06T00:05:37.000Z" - }, - "end": { - "$date": "2021-12-06T00:42:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cbdcb25-6fbb-4e6a-a9a8-f19110279231", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T00:53:24.000Z" - }, - "end": { - "$date": "2021-12-06T01:15:48.000Z" - }, - "events": [ - { - "uuid": "8cc9526d-cb14-480e-9b3e-a066d37f16a6", - "start": { - "$date": "2021-12-06T00:53:24.000Z" - }, - "end": { - "$date": "2021-12-06T01:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b804e7e4-cd97-4494-b59b-f2eff8f6f149", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-06T01:14:07.000Z" - }, - "end": { - "$date": "2021-12-06T02:00:00.000Z" - }, - "events": [ - { - "uuid": "fe2bf56d-de7c-4616-b219-59d83581a8ce", - "start": { - "$date": "2021-12-06T01:14:07.000Z" - }, - "end": { - "$date": "2021-12-06T02:00:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3da4c78-7c6f-4414-a9e1-ec78c76d38f4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-06T01:15:00.000Z" - }, - "end": { - "$date": "2021-12-06T01:32:10.000Z" - }, - "events": [ - { - "uuid": "b5cf6f64-420d-44ff-97ee-fd205d42e8aa", - "start": { - "$date": "2021-12-06T01:15:00.000Z" - }, - "end": { - "$date": "2021-12-06T01:32:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44e728d8-3537-4d8a-82ff-508ae590ca84", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T01:20:28.000Z" - }, - "end": { - "$date": "2021-12-06T01:41:45.000Z" - }, - "events": [ - { - "uuid": "60937a53-5a8f-4d24-bf52-261361b30a54", - "start": { - "$date": "2021-12-06T01:20:28.000Z" - }, - "end": { - "$date": "2021-12-06T01:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aed6bb7a-33cc-404c-907a-d702c420a44b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-06T03:02:11.000Z" - }, - "end": { - "$date": "2021-12-06T03:02:11.000Z" - }, - "events": [ - { - "uuid": "29f35fc1-e191-48ab-af63-6c5aee6dd6e2", - "start": { - "$date": "2021-12-06T03:02:11.000Z" - }, - "end": { - "$date": "2021-12-06T03:02:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6814f69d-f1f3-4e6b-9273-080ca54ab65b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T01:44:11.000Z" - }, - "end": { - "$date": "2021-12-06T02:17:57.000Z" - }, - "events": [ - { - "uuid": "1a448c8f-d4dc-476a-8525-d9c4a754f0fc", - "start": { - "$date": "2021-12-06T01:44:11.000Z" - }, - "end": { - "$date": "2021-12-06T02:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79462304-0328-43d2-a3e3-6adf6f188b60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-06T01:53:06.000Z" - }, - "end": { - "$date": "2021-12-06T02:13:32.000Z" - }, - "events": [ - { - "uuid": "a1cfbf54-c005-4304-a2be-3d7a69aa1ed5", - "start": { - "$date": "2021-12-06T01:53:06.000Z" - }, - "end": { - "$date": "2021-12-06T02:13:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2f22a4c1-e404-451a-bce7-1430cf1acbc7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-06T02:20:47.000Z" - }, - "end": { - "$date": "2021-12-06T02:59:26.000Z" - }, - "events": [ - { - "uuid": "e6fef3b6-8d82-4ade-8647-2f8d9a404d2e", - "start": { - "$date": "2021-12-06T02:20:47.000Z" - }, - "end": { - "$date": "2021-12-06T02:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "46d4e102-c0c9-4e8c-b826-872175d63c89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-05T23:31:06.000Z" - }, - "end": { - "$date": "2021-12-06T05:51:31.000Z" - }, - "events": [ - { - "uuid": "2e85bdfb-42ad-4efc-8261-baab530ef00b", - "start": { - "$date": "2021-12-05T23:31:06.000Z" - }, - "end": { - "$date": "2021-12-06T05:51:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7224c832-4cf0-485d-906b-08bce14d0f7d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-06T02:38:27.000Z" - }, - "end": { - "$date": "2021-12-06T03:13:16.000Z" - }, - "events": [ - { - "uuid": "a95640ab-e516-4b70-8c58-2125b7659ed5", - "start": { - "$date": "2021-12-06T02:38:27.000Z" - }, - "end": { - "$date": "2021-12-06T03:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "02199f9c-6e21-4ff4-8089-975c11330f4f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-06T03:00:41.000Z" - }, - "end": { - "$date": "2021-12-06T03:11:18.000Z" - }, - "events": [ - { - "uuid": "73721273-c193-43de-beed-3ba0b677f11e", - "start": { - "$date": "2021-12-06T03:00:41.000Z" - }, - "end": { - "$date": "2021-12-06T03:11:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b0618135-4657-4298-ad79-10f69dce993b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-06T03:12:27.000Z" - }, - "end": { - "$date": "2021-12-06T03:16:48.000Z" - }, - "events": [ - { - "uuid": "32cac061-69eb-4044-b821-1b380671508e", - "start": { - "$date": "2021-12-06T03:12:27.000Z" - }, - "end": { - "$date": "2021-12-06T03:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "75b5e62b-bdca-4ffe-93b4-26b823bd38cc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-06T03:13:24.000Z" - }, - "end": { - "$date": "2021-12-06T03:20:47.000Z" - }, - "events": [ - { - "uuid": "5a35bd4e-718c-4cc8-92c8-11069bcfaf1a", - "start": { - "$date": "2021-12-06T03:13:24.000Z" - }, - "end": { - "$date": "2021-12-06T03:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8ebbc536-7d2a-4a2d-83d6-eb2bd4c76651", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-06T03:16:53.000Z" - }, - "end": { - "$date": "2021-12-06T04:23:28.000Z" - }, - "events": [ - { - "uuid": "97b601a4-7d1b-4c5f-8502-d8fffb926f71", - "start": { - "$date": "2021-12-06T03:16:53.000Z" - }, - "end": { - "$date": "2021-12-06T04:23:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "72de86cd-4895-4ba9-a6d0-767ee66f16ba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-06T03:21:29.000Z" - }, - "end": { - "$date": "2021-12-06T04:22:49.000Z" - }, - "events": [ - { - "uuid": "e99a77ba-960f-434a-bdb3-0440e0a0a177", - "start": { - "$date": "2021-12-06T03:21:29.000Z" - }, - "end": { - "$date": "2021-12-06T04:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "13132ccd-ae6c-4173-961b-773c005db469", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-06T03:28:54.000Z" - }, - "end": { - "$date": "2021-12-06T04:51:00.000Z" - }, - "events": [ - { - "uuid": "028a64b4-48b3-4421-ac3e-e48cc491742d", - "start": { - "$date": "2021-12-06T03:28:54.000Z" - }, - "end": { - "$date": "2021-12-06T04:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b186de36-7e59-44e4-8c19-ffbe2a11197e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-06T03:40:11.000Z" - }, - "end": { - "$date": "2021-12-06T04:23:19.000Z" - }, - "events": [ - { - "uuid": "b8760c98-2c1e-4e75-8da5-6c6a2f1a4803", - "start": { - "$date": "2021-12-06T03:40:11.000Z" - }, - "end": { - "$date": "2021-12-06T04:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6ff00342-8998-4f14-a860-c4b3efd877cc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-06T03:42:06.000Z" - }, - "end": { - "$date": "2021-12-06T04:17:50.000Z" - }, - "events": [ - { - "uuid": "85f4566f-b68f-4d87-9819-634652f45bcf", - "start": { - "$date": "2021-12-06T03:42:06.000Z" - }, - "end": { - "$date": "2021-12-06T04:15:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41f79f81-63f8-4b29-bc86-e12041b6f79c", - "start": { - "$date": "2021-12-06T04:15:06.000Z" - }, - "end": { - "$date": "2021-12-06T04:17:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1955fb21-d5d3-45ef-b632-7ec19ae347bf", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-06T04:04:50.000Z" - }, - "end": { - "$date": "2021-12-06T04:36:15.000Z" - }, - "events": [ - { - "uuid": "d41e572e-8f67-45b5-9bd1-29691fb7ff3e", - "start": { - "$date": "2021-12-06T04:04:50.000Z" - }, - "end": { - "$date": "2021-12-06T04:36:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e288f104-3429-4fd4-8f2a-45442b94e033", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-06T05:04:36.000Z" - }, - "end": { - "$date": "2021-12-06T05:32:29.000Z" - }, - "events": [ - { - "uuid": "a32028c0-5246-4f86-9276-a70a95ce99d5", - "start": { - "$date": "2021-12-06T05:04:36.000Z" - }, - "end": { - "$date": "2021-12-06T05:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e771a06a-dacc-4373-8837-85897f325f75", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T05:32:40.000Z" - }, - "end": { - "$date": "2021-12-06T05:45:11.000Z" - }, - "events": [ - { - "uuid": "28629596-178b-4fd7-badd-883041b7171a", - "start": { - "$date": "2021-12-06T05:32:40.000Z" - }, - "end": { - "$date": "2021-12-06T05:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf866c46-7b08-4f13-8e27-4b40713668c3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-06T05:36:44.000Z" - }, - "end": { - "$date": "2021-12-06T06:02:17.000Z" - }, - "events": [ - { - "uuid": "c086708b-6160-422f-970f-31b5664203a3", - "start": { - "$date": "2021-12-06T05:36:44.000Z" - }, - "end": { - "$date": "2021-12-06T06:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "a7007423-c747-4d64-bdca-100b325b75e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-06T05:53:07.000Z" - }, - "end": { - "$date": "2021-12-06T06:54:55.000Z" - }, - "events": [ - { - "uuid": "f7cb0e78-dfff-4119-8ae1-0996e56a095a", - "start": { - "$date": "2021-12-06T05:53:07.000Z" - }, - "end": { - "$date": "2021-12-06T06:16:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55c2b885-5d77-4bfb-87e2-94bc38fb85e7", - "start": { - "$date": "2021-12-06T06:16:07.000Z" - }, - "end": { - "$date": "2021-12-06T06:21:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "976ae236-a497-4382-acfe-1b2b3d01af20", - "start": { - "$date": "2021-12-06T06:21:07.000Z" - }, - "end": { - "$date": "2021-12-06T06:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e57cfe6-2bb2-40af-8311-95a8a46b1360", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-06T06:05:47.000Z" - }, - "end": { - "$date": "2021-12-06T06:32:00.000Z" - }, - "events": [ - { - "uuid": "d2bf50b2-fa38-46ce-9671-a40718c9c51c", - "start": { - "$date": "2021-12-06T06:05:47.000Z" - }, - "end": { - "$date": "2021-12-06T06:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "383d1efc-bf8a-46e2-9482-fe480255b36f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-06T06:22:04.000Z" - }, - "end": { - "$date": "2021-12-06T06:52:26.000Z" - }, - "events": [ - { - "uuid": "9e3cc962-7967-4adb-86aa-62ea54836fe1", - "start": { - "$date": "2021-12-06T06:22:04.000Z" - }, - "end": { - "$date": "2021-12-06T06:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fed1a556-44ec-4cf2-bcc7-77902c647167", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-06T07:37:08.000Z" - }, - "end": { - "$date": "2021-12-06T08:01:16.000Z" - }, - "events": [ - { - "uuid": "161ce029-e83a-4307-8e66-e4066547f446", - "start": { - "$date": "2021-12-06T07:37:08.000Z" - }, - "end": { - "$date": "2021-12-06T08:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd5a81d8-e4a8-4b74-8a39-d183cf82a209", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-06T08:55:13.000Z" - }, - "end": { - "$date": "2021-12-06T09:37:23.000Z" - }, - "events": [ - { - "uuid": "f820d26b-d819-4d2c-8323-6834d7aab511", - "start": { - "$date": "2021-12-06T08:55:13.000Z" - }, - "end": { - "$date": "2021-12-06T09:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e58605a9-f14a-4ce2-8c85-e00b6a8425ad", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-06T08:12:11.000Z" - }, - "end": { - "$date": "2021-12-06T08:47:24.000Z" - }, - "events": [ - { - "uuid": "1194a552-5296-47ae-b59f-367244eae133", - "start": { - "$date": "2021-12-06T08:12:11.000Z" - }, - "end": { - "$date": "2021-12-06T08:47:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a83e8556-3d96-4347-8e4b-d70d4e524290", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-06T08:10:29.000Z" - }, - "end": { - "$date": "2021-12-06T09:04:27.000Z" - }, - "events": [ - { - "uuid": "4551c4ac-d478-477b-9c3a-2dd2bf80b59a", - "start": { - "$date": "2021-12-06T08:10:29.000Z" - }, - "end": { - "$date": "2021-12-06T09:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2a74b77-7bfe-471b-847b-b0a53385929b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-06T08:55:19.000Z" - }, - "end": { - "$date": "2021-12-06T09:37:30.000Z" - }, - "events": [ - { - "uuid": "e8c2915f-1d79-4749-872b-1949fc061195", - "start": { - "$date": "2021-12-06T08:55:19.000Z" - }, - "end": { - "$date": "2021-12-06T09:37:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c5d74e79-abc5-422a-a91c-f1256ed946e3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-06T13:22:23.000Z" - }, - "end": { - "$date": "2021-12-06T14:57:25.000Z" - }, - "events": [ - { - "uuid": "3d69cbec-23ba-4d13-9739-1b830bd0f85d", - "start": { - "$date": "2021-12-06T13:22:23.000Z" - }, - "end": { - "$date": "2021-12-06T14:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e9343166-07fd-4e0a-9670-fa67e2a3d756", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-06T18:43:18.000Z" - }, - "end": { - "$date": "2021-12-06T18:46:51.000Z" - }, - "events": [ - { - "uuid": "651b01d8-e80b-403b-a07e-8111b5dca96f", - "start": { - "$date": "2021-12-06T18:43:18.000Z" - }, - "end": { - "$date": "2021-12-06T18:46:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2b6d7e28-8fdd-41fa-9abe-ba7e6192e923", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-06T18:49:44.000Z" - }, - "end": { - "$date": "2021-12-06T18:51:02.000Z" - }, - "events": [ - { - "uuid": "abe7fca7-179e-49a8-8613-832117eef59b", - "start": { - "$date": "2021-12-06T18:49:44.000Z" - }, - "end": { - "$date": "2021-12-06T18:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e6c10ec6-b255-450c-93df-251ae6ab1721", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-06T18:54:35.000Z" - }, - "end": { - "$date": "2021-12-06T18:58:48.000Z" - }, - "events": [ - { - "uuid": "ca093fa6-f8f6-4357-8c50-a1677a5e440c", - "start": { - "$date": "2021-12-06T18:54:35.000Z" - }, - "end": { - "$date": "2021-12-06T18:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d3af3ac5-4b1b-47ff-b8ae-a718bde15523", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T21:18:41.000Z" - }, - "end": { - "$date": "2021-12-06T21:28:28.000Z" - }, - "events": [ - { - "uuid": "492d251d-ba70-4080-8a43-cbebea06831e", - "start": { - "$date": "2021-12-06T21:18:41.000Z" - }, - "end": { - "$date": "2021-12-06T21:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "468afef7-b782-4926-bab6-194849a9d41f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-06T23:08:32.000Z" - }, - "end": { - "$date": "2021-12-06T23:45:11.000Z" - }, - "events": [ - { - "uuid": "f5c8b760-8237-4334-89f9-089ab145325e", - "start": { - "$date": "2021-12-06T23:08:32.000Z" - }, - "end": { - "$date": "2021-12-06T23:45:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eeace42b-d799-436d-be30-a8492fae7ec2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T23:12:51.000Z" - }, - "end": { - "$date": "2021-12-06T23:23:18.000Z" - }, - "events": [ - { - "uuid": "d44fdd6e-a4e0-418c-b9c2-9a5b98e4c5ec", - "start": { - "$date": "2021-12-06T23:12:51.000Z" - }, - "end": { - "$date": "2021-12-06T23:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d8a1f3a-38f6-4a48-ba9a-0732105314ba", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T23:25:13.000Z" - }, - "end": { - "$date": "2021-12-06T23:42:10.000Z" - }, - "events": [ - { - "uuid": "b03eb31f-8171-428e-a985-2e683e7009a4", - "start": { - "$date": "2021-12-06T23:25:13.000Z" - }, - "end": { - "$date": "2021-12-06T23:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8d53049-6387-4051-bffe-90e05fff896c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-06T23:45:30.000Z" - }, - "end": { - "$date": "2021-12-07T00:07:48.000Z" - }, - "events": [ - { - "uuid": "b2679722-8db8-4717-ac74-c264f860511c", - "start": { - "$date": "2021-12-06T23:45:30.000Z" - }, - "end": { - "$date": "2021-12-07T00:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdf7e3c1-3787-4adb-b816-11a8a6a10872", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-06T23:49:16.000Z" - }, - "end": { - "$date": "2021-12-07T00:30:09.000Z" - }, - "events": [ - { - "uuid": "4a31ea2b-c42a-4a4f-9fae-6e615376fd8b", - "start": { - "$date": "2021-12-06T23:49:16.000Z" - }, - "end": { - "$date": "2021-12-07T00:30:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90407e3c-3472-4bf0-aa18-6d69d111790e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-07T00:19:18.000Z" - }, - "end": { - "$date": "2021-12-07T00:34:18.000Z" - }, - "events": [ - { - "uuid": "29bebfbe-52e7-4ff3-bd31-2aeef8675cc5", - "start": { - "$date": "2021-12-07T00:19:18.000Z" - }, - "end": { - "$date": "2021-12-07T00:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d936907b-33f9-43b1-af67-1da0de9069ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-07T00:35:34.000Z" - }, - "end": { - "$date": "2021-12-07T00:50:19.000Z" - }, - "events": [ - { - "uuid": "7e273e32-5060-4905-8fd6-99bb846e4297", - "start": { - "$date": "2021-12-07T00:35:34.000Z" - }, - "end": { - "$date": "2021-12-07T00:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5a9ac41b-d3f6-4b05-be15-8d1aea955974", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-07T00:51:08.000Z" - }, - "end": { - "$date": "2021-12-07T00:52:31.000Z" - }, - "events": [ - { - "uuid": "7c9c75a9-ae46-4e5c-a150-085030c271ce", - "start": { - "$date": "2021-12-07T00:51:08.000Z" - }, - "end": { - "$date": "2021-12-07T00:52:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "079f4b3e-5746-4b90-9867-ffee2fc4e8e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-07T00:52:43.000Z" - }, - "end": { - "$date": "2021-12-07T03:19:52.000Z" - }, - "events": [ - { - "uuid": "32fe13ca-7457-49d1-ba37-97d36ba7a476", - "start": { - "$date": "2021-12-07T00:52:43.000Z" - }, - "end": { - "$date": "2021-12-07T02:30:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c0f1205b-b0e7-434d-a48a-3cc655f82984", - "start": { - "$date": "2021-12-07T02:30:43.000Z" - }, - "end": { - "$date": "2021-12-07T02:35:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2cd98897-0bf7-4f29-8000-14dc5d956507", - "start": { - "$date": "2021-12-07T02:35:43.000Z" - }, - "end": { - "$date": "2021-12-07T03:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "839dbf7a-2cd3-4487-afe2-0d95c4ef51c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T02:01:27.000Z" - }, - "end": { - "$date": "2021-12-07T02:20:55.000Z" - }, - "events": [ - { - "uuid": "96403861-00df-4ad6-917b-000e756ccbc6", - "start": { - "$date": "2021-12-07T02:01:27.000Z" - }, - "end": { - "$date": "2021-12-07T02:20:55.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6b9287d4-0737-4001-9921-ba3f4384705b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-07T01:58:04.000Z" - }, - "end": { - "$date": "2021-12-07T03:08:22.000Z" - }, - "events": [ - { - "uuid": "015a2bcf-b902-4367-8fe6-4fb205751100", - "start": { - "$date": "2021-12-07T01:58:04.000Z" - }, - "end": { - "$date": "2021-12-07T03:08:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d15bd8e-ec88-4508-91c7-15dc9e0d9795", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T02:17:32.000Z" - }, - "end": { - "$date": "2021-12-07T02:41:08.000Z" - }, - "events": [ - { - "uuid": "4f2bd9f2-df9f-4113-89b1-5016f4091f19", - "start": { - "$date": "2021-12-07T02:17:32.000Z" - }, - "end": { - "$date": "2021-12-07T02:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3edd3b4e-4e73-430d-bed1-e1c1373ec5fd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T02:26:25.000Z" - }, - "end": { - "$date": "2021-12-07T03:03:35.000Z" - }, - "events": [ - { - "uuid": "208e5f5a-cee3-4c75-828c-725814ea869f", - "start": { - "$date": "2021-12-07T02:26:25.000Z" - }, - "end": { - "$date": "2021-12-07T03:03:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "53472d39-cf74-4127-a640-b7370d624e0c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-07T02:32:19.000Z" - }, - "end": { - "$date": "2021-12-07T03:13:00.000Z" - }, - "events": [ - { - "uuid": "384b0f1b-aaf3-4472-b9bc-20fbd86d75a3", - "start": { - "$date": "2021-12-07T02:32:19.000Z" - }, - "end": { - "$date": "2021-12-07T03:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe766f13-2644-4947-a298-50fc97ee29dd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T02:43:09.000Z" - }, - "end": { - "$date": "2021-12-07T02:59:16.000Z" - }, - "events": [ - { - "uuid": "bdfe2c17-ca8e-4853-94a5-675446598867", - "start": { - "$date": "2021-12-07T02:43:09.000Z" - }, - "end": { - "$date": "2021-12-07T02:59:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f5c95db-b6ef-4a13-8c34-4abcd049c328", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T03:00:05.000Z" - }, - "end": { - "$date": "2021-12-07T03:42:02.000Z" - }, - "events": [ - { - "uuid": "a7bd54ab-6b05-440d-ad20-b9cfe3a33377", - "start": { - "$date": "2021-12-07T03:00:05.000Z" - }, - "end": { - "$date": "2021-12-07T03:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "181778d5-f3e5-4a9c-8cc6-383f520fcf55", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T02:59:46.000Z" - }, - "end": { - "$date": "2021-12-07T03:23:45.000Z" - }, - "events": [ - { - "uuid": "7cfe3324-ef03-4d77-9408-a51cf6cd96f4", - "start": { - "$date": "2021-12-07T02:59:46.000Z" - }, - "end": { - "$date": "2021-12-07T03:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e15440c-5e08-4aa7-886d-0b8623d3a295", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T03:06:15.000Z" - }, - "end": { - "$date": "2021-12-07T03:25:36.000Z" - }, - "events": [ - { - "uuid": "bfeea2fa-2fb1-4713-977f-609d5f93cc10", - "start": { - "$date": "2021-12-07T03:06:15.000Z" - }, - "end": { - "$date": "2021-12-07T03:25:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a41dd97-6122-4cb3-9576-0465f7d46fd0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-07T03:06:20.000Z" - }, - "end": { - "$date": "2021-12-07T03:25:37.000Z" - }, - "events": [ - { - "uuid": "a993cfd6-d169-4996-8d51-6e428cb28e26", - "start": { - "$date": "2021-12-07T03:06:20.000Z" - }, - "end": { - "$date": "2021-12-07T03:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cf08797-79df-4e57-8249-4d8409a727f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-07T03:12:48.000Z" - }, - "end": { - "$date": "2021-12-07T03:35:38.000Z" - }, - "events": [ - { - "uuid": "23ed28da-36dd-4e40-8644-a8aed6f493a5", - "start": { - "$date": "2021-12-07T03:12:48.000Z" - }, - "end": { - "$date": "2021-12-07T03:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e2970956-cc64-4cbf-8e07-576bcd187ca2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-07T03:20:18.000Z" - }, - "end": { - "$date": "2021-12-07T05:15:53.000Z" - }, - "events": [ - { - "uuid": "bb17ea26-f43f-411c-9c03-3e8b483e68d8", - "start": { - "$date": "2021-12-07T03:20:18.000Z" - }, - "end": { - "$date": "2021-12-07T05:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b9151f7-016d-4f9c-83a8-51b63c24447c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T03:47:13.000Z" - }, - "end": { - "$date": "2021-12-07T04:16:49.000Z" - }, - "events": [ - { - "uuid": "f767e11d-08d1-4e8a-b42d-ea81ad5011c4", - "start": { - "$date": "2021-12-07T03:47:13.000Z" - }, - "end": { - "$date": "2021-12-07T04:16:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9258a5f5-36a1-45d8-bdc0-6c62c505a9bd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T03:33:01.000Z" - }, - "end": { - "$date": "2021-12-07T03:52:06.000Z" - }, - "events": [ - { - "uuid": "b7d0ecb4-be88-4925-9d7d-d052b33f29a7", - "start": { - "$date": "2021-12-07T03:33:01.000Z" - }, - "end": { - "$date": "2021-12-07T03:52:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0fc7aa80-95aa-419e-86fa-a50e7967c4f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-07T03:34:05.000Z" - }, - "end": { - "$date": "2021-12-07T03:35:55.000Z" - }, - "events": [ - { - "uuid": "517d8942-4622-4f95-8311-e9fa0c3ba34b", - "start": { - "$date": "2021-12-07T03:34:05.000Z" - }, - "end": { - "$date": "2021-12-07T03:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9a3c197b-176e-415e-81c2-1131d55acc87", - "uuid": "6d95c92c-c82f-4096-9f11-55bf932fa908", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-07T03:36:40.000Z" - }, - "end": { - "$date": "2021-12-07T04:06:17.000Z" - }, - "events": [ - { - "uuid": "b08efa79-de7f-4aa3-8f29-79ab6e2a519c", - "start": { - "$date": "2021-12-07T03:36:40.000Z" - }, - "end": { - "$date": "2021-12-07T04:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c2868d8-ba19-4f7b-bb12-174290d89c59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T03:47:19.000Z" - }, - "end": { - "$date": "2021-12-07T04:16:54.000Z" - }, - "events": [ - { - "uuid": "d6fe6cd5-25f0-41b8-98ce-5641524c2a09", - "start": { - "$date": "2021-12-07T03:47:19.000Z" - }, - "end": { - "$date": "2021-12-07T04:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ce13f4b-ec90-4cac-8724-8cb35dfaa13f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-07T03:47:19.000Z" - }, - "end": { - "$date": "2021-12-07T04:16:57.000Z" - }, - "events": [ - { - "uuid": "37de0bee-c569-41b9-80f7-9c633d168dbb", - "start": { - "$date": "2021-12-07T03:47:19.000Z" - }, - "end": { - "$date": "2021-12-07T04:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68547778-54c1-4842-ace2-9d538b8974ae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T03:53:56.000Z" - }, - "end": { - "$date": "2021-12-07T04:34:24.000Z" - }, - "events": [ - { - "uuid": "509e5856-27fb-4c98-8759-1fe8561373bc", - "start": { - "$date": "2021-12-07T03:53:56.000Z" - }, - "end": { - "$date": "2021-12-07T04:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9a3c197b-176e-415e-81c2-1131d55acc87", - "uuid": "7ecd23bd-1f5a-4f0c-9eed-4b0bc65b4c3c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-07T04:06:27.000Z" - }, - "end": { - "$date": "2021-12-07T04:31:34.000Z" - }, - "events": [ - { - "uuid": "e8291e7b-cdca-48c4-815c-dbd2ee61ca72", - "start": { - "$date": "2021-12-07T04:06:27.000Z" - }, - "end": { - "$date": "2021-12-07T04:31:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "678c1038-2822-4a10-8269-6246c25638e9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T04:33:34.000Z" - }, - "end": { - "$date": "2021-12-07T04:57:25.000Z" - }, - "events": [ - { - "uuid": "4b3fb84a-dec3-4694-98d1-68b0904fbcc4", - "start": { - "$date": "2021-12-07T04:33:34.000Z" - }, - "end": { - "$date": "2021-12-07T04:57:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6df1b6b2-07a1-4ec8-8616-0f7129c07aa7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-07T04:17:50.000Z" - }, - "end": { - "$date": "2021-12-07T04:21:45.000Z" - }, - "events": [ - { - "uuid": "85d4634a-72e0-4e36-b8a8-b4b56bca9ac5", - "start": { - "$date": "2021-12-07T04:17:50.000Z" - }, - "end": { - "$date": "2021-12-07T04:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa0fd0e7-36ab-40fb-9e81-d69e0227cc0d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T04:17:52.000Z" - }, - "end": { - "$date": "2021-12-07T04:21:44.000Z" - }, - "events": [ - { - "uuid": "2b576f46-9168-4764-8316-7b5bb4efa225", - "start": { - "$date": "2021-12-07T04:17:52.000Z" - }, - "end": { - "$date": "2021-12-07T04:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46ac006c-0c07-43cb-b252-958ef0a2eb70", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-07T04:33:41.000Z" - }, - "end": { - "$date": "2021-12-07T04:57:29.000Z" - }, - "events": [ - { - "uuid": "422bc239-17d1-484e-ad64-180f32d7ee64", - "start": { - "$date": "2021-12-07T04:33:41.000Z" - }, - "end": { - "$date": "2021-12-07T04:57:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23c5210e-fda3-4b65-8318-8d71e36abe41", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T04:33:39.000Z" - }, - "end": { - "$date": "2021-12-07T04:57:36.000Z" - }, - "events": [ - { - "uuid": "97a4357a-441a-4cd1-a911-5359384cb454", - "start": { - "$date": "2021-12-07T04:33:39.000Z" - }, - "end": { - "$date": "2021-12-07T04:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be54a0f4-971e-4891-a0b2-8c7dd01adbb2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T04:35:09.000Z" - }, - "end": { - "$date": "2021-12-07T05:13:20.000Z" - }, - "events": [ - { - "uuid": "db478d42-9235-45dd-a93a-aecc1b7b6f8a", - "start": { - "$date": "2021-12-07T04:35:09.000Z" - }, - "end": { - "$date": "2021-12-07T05:13:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a88851ca-8f5f-4ee2-b041-3b2dfb90b00d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T04:59:55.000Z" - }, - "end": { - "$date": "2021-12-07T05:22:06.000Z" - }, - "events": [ - { - "uuid": "182835f3-e543-421b-a77e-5ab85c2d217b", - "start": { - "$date": "2021-12-07T04:59:55.000Z" - }, - "end": { - "$date": "2021-12-07T05:22:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2b2dc34-ec1c-4c20-8013-5c583705d534", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-07T04:59:56.000Z" - }, - "end": { - "$date": "2021-12-07T05:22:13.000Z" - }, - "events": [ - { - "uuid": "e479fd27-81f6-40e5-8a03-a48b7f4596fe", - "start": { - "$date": "2021-12-07T04:59:56.000Z" - }, - "end": { - "$date": "2021-12-07T05:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43efd917-d123-4ece-bde4-9e7b307593e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T04:59:55.000Z" - }, - "end": { - "$date": "2021-12-07T05:22:21.000Z" - }, - "events": [ - { - "uuid": "110802b1-732c-448a-9833-661f0dbf6657", - "start": { - "$date": "2021-12-07T04:59:55.000Z" - }, - "end": { - "$date": "2021-12-07T05:22:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a4610a6-d490-4c57-b793-fff354f9334d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T05:14:33.000Z" - }, - "end": { - "$date": "2021-12-07T05:18:20.000Z" - }, - "events": [ - { - "uuid": "840da843-b896-4b40-b1c2-3b9c10579496", - "start": { - "$date": "2021-12-07T05:14:33.000Z" - }, - "end": { - "$date": "2021-12-07T05:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8ba1fa1-c1c0-40ad-9364-25c823c35f49", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-07T05:30:43.000Z" - }, - "end": { - "$date": "2021-12-07T05:51:07.000Z" - }, - "events": [ - { - "uuid": "285e7aba-5858-4ca0-9b45-35d3be0ba5b9", - "start": { - "$date": "2021-12-07T05:30:43.000Z" - }, - "end": { - "$date": "2021-12-07T05:51:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4954a43-bce0-4506-bdc3-c482d3e9fec9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-07T05:22:47.000Z" - }, - "end": { - "$date": "2021-12-07T05:28:29.000Z" - }, - "events": [ - { - "uuid": "db05a5ba-2e04-491c-801b-0e89bdfece2d", - "start": { - "$date": "2021-12-07T05:22:47.000Z" - }, - "end": { - "$date": "2021-12-07T05:28:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "207e4b23-9960-4889-bb03-7b54b8924141", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-07T05:46:11.000Z" - }, - "end": { - "$date": "2021-12-07T06:48:41.000Z" - }, - "events": [ - { - "uuid": "f3a152e0-f43b-49e8-b34a-97c9b02d8f7b", - "start": { - "$date": "2021-12-07T05:46:11.000Z" - }, - "end": { - "$date": "2021-12-07T06:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "89dea618-d5bc-4013-9aec-a60b5c0796c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-07T05:54:32.000Z" - }, - "end": { - "$date": "2021-12-07T06:49:21.000Z" - }, - "events": [ - { - "uuid": "d9769b0e-03af-4393-8dc6-2953c5bf4df0", - "start": { - "$date": "2021-12-07T05:54:32.000Z" - }, - "end": { - "$date": "2021-12-07T06:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9ef6bfa0-d792-43b6-b886-1a76d7892c20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T05:56:18.000Z" - }, - "end": { - "$date": "2021-12-07T06:48:17.000Z" - }, - "events": [ - { - "uuid": "ef2696b3-4c5e-49a9-af71-be50edf41158", - "start": { - "$date": "2021-12-07T05:56:18.000Z" - }, - "end": { - "$date": "2021-12-07T06:48:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ca1c71e0-9dbb-4aa3-a28e-dfd49050ccf3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-07T06:55:32.000Z" - }, - "end": { - "$date": "2021-12-07T11:33:49.000Z" - }, - "events": [ - { - "uuid": "71868d95-58a1-4cdb-b9ab-b1161fe28183", - "start": { - "$date": "2021-12-07T06:55:32.000Z" - }, - "end": { - "$date": "2021-12-07T11:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a48c42d3-9119-4861-94ec-f63f7c0df131", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T10:56:10.000Z" - }, - "end": { - "$date": "2021-12-07T11:46:10.000Z" - }, - "events": [ - { - "uuid": "ec9287f8-f1fb-4e8c-85bf-b3befb49518e", - "start": { - "$date": "2021-12-07T10:56:10.000Z" - }, - "end": { - "$date": "2021-12-07T11:46:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "5df83230-3c58-4ed4-a75d-8b7ddba8bd2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-07T23:10:24.000Z" - }, - "end": { - "$date": "2021-12-08T02:47:18.000Z" - }, - "events": [ - { - "uuid": "7b699f50-c893-4b3d-9943-b50b7669b356", - "start": { - "$date": "2021-12-07T23:10:24.000Z" - }, - "end": { - "$date": "2021-12-08T02:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c4bb9378-cc83-4ca1-92fc-f7f06b4dcfc9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-07T23:16:01.000Z" - }, - "end": { - "$date": "2021-12-08T02:26:27.000Z" - }, - "events": [ - { - "uuid": "deabfad7-9679-4313-8177-9efc5b9865f5", - "start": { - "$date": "2021-12-07T23:16:01.000Z" - }, - "end": { - "$date": "2021-12-08T02:26:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc84a3bd-199e-4b33-895c-4de500781cc5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-07T23:28:59.000Z" - }, - "end": { - "$date": "2021-12-08T00:07:57.000Z" - }, - "events": [ - { - "uuid": "3d4462d9-7469-4205-b922-15b7a2fe824c", - "start": { - "$date": "2021-12-07T23:28:59.000Z" - }, - "end": { - "$date": "2021-12-08T00:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "9e3b9cb3-e6e5-4d58-947d-0082fb26ad40", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-08T00:40:31.000Z" - }, - "end": { - "$date": "2021-12-08T01:38:05.000Z" - }, - "events": [ - { - "uuid": "0e1d3585-0df6-4bda-a43f-b2141ad91714", - "start": { - "$date": "2021-12-08T00:40:31.000Z" - }, - "end": { - "$date": "2021-12-08T01:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d8d450c9-f1f1-4efb-b4d1-7bcb8edb3dbe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-08T00:43:40.000Z" - }, - "end": { - "$date": "2021-12-08T01:07:46.000Z" - }, - "events": [ - { - "uuid": "21ee5bef-efbb-46c0-9125-d80890c85a70", - "start": { - "$date": "2021-12-08T00:43:40.000Z" - }, - "end": { - "$date": "2021-12-08T01:07:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8c434cfc-94c7-4d70-a344-03ba45ef51c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T00:59:28.000Z" - }, - "end": { - "$date": "2021-12-08T02:03:53.000Z" - }, - "events": [ - { - "uuid": "f7f984a4-af90-4ebc-8034-5340af9839e2", - "start": { - "$date": "2021-12-08T00:59:28.000Z" - }, - "end": { - "$date": "2021-12-08T01:59:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "707a089a-e0df-4c84-9415-5af6b93903ae", - "start": { - "$date": "2021-12-08T01:59:28.000Z" - }, - "end": { - "$date": "2021-12-08T02:03:53.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b3c09c84-5ec2-4c71-bd94-09f2f3d70aa7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-08T00:24:49.000Z" - }, - "end": { - "$date": "2021-12-08T01:01:40.000Z" - }, - "events": [ - { - "uuid": "c2da7f2e-05b5-4ed2-9e90-a497e719e409", - "start": { - "$date": "2021-12-08T00:24:49.000Z" - }, - "end": { - "$date": "2021-12-08T01:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dcc7aa3f-0b41-4caa-9018-01e9a3a34c06", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-08T01:01:48.000Z" - }, - "end": { - "$date": "2021-12-08T04:13:05.000Z" - }, - "events": [ - { - "uuid": "bd198c3a-459b-4abb-a3de-4fc5368215f9", - "start": { - "$date": "2021-12-08T01:01:48.000Z" - }, - "end": { - "$date": "2021-12-08T03:37:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4864f43b-a487-4c96-821c-be1574fb7ec3", - "start": { - "$date": "2021-12-08T03:37:48.000Z" - }, - "end": { - "$date": "2021-12-08T03:42:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5139d062-15b7-428a-a09c-09cfba242ec2", - "start": { - "$date": "2021-12-08T03:42:48.000Z" - }, - "end": { - "$date": "2021-12-08T03:52:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d2c29c66-a68a-4d30-828b-8d5cd9420172", - "start": { - "$date": "2021-12-08T03:52:48.000Z" - }, - "end": { - "$date": "2021-12-08T04:09:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90b95644-193b-4452-9336-08fc9f7b32c8", - "start": { - "$date": "2021-12-08T04:09:48.000Z" - }, - "end": { - "$date": "2021-12-08T04:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8237f78a-7098-49cc-ad62-8872c1d0fa6a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-08T01:38:51.000Z" - }, - "end": { - "$date": "2021-12-08T02:12:32.000Z" - }, - "events": [ - { - "uuid": "880d52be-cd86-4f99-bf21-1611515c20e6", - "start": { - "$date": "2021-12-08T01:38:51.000Z" - }, - "end": { - "$date": "2021-12-08T02:12:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a200f6cf-8df1-475a-9330-03e38075aada", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T02:12:56.000Z" - }, - "end": { - "$date": "2021-12-08T02:34:13.000Z" - }, - "events": [ - { - "uuid": "8121f005-1ea0-495c-9073-502c8adfc95a", - "start": { - "$date": "2021-12-08T02:12:56.000Z" - }, - "end": { - "$date": "2021-12-08T02:34:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ad7f0c8-c486-4bcb-a8ce-02f07ecd0df4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T02:36:14.000Z" - }, - "end": { - "$date": "2021-12-08T03:05:29.000Z" - }, - "events": [ - { - "uuid": "3e4956be-a715-437a-b9aa-92e936c32ceb", - "start": { - "$date": "2021-12-08T02:36:14.000Z" - }, - "end": { - "$date": "2021-12-08T03:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8c93b365-4bd2-40b7-8262-3dea25aecf86", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-08T02:55:04.000Z" - }, - "end": { - "$date": "2021-12-08T03:06:11.000Z" - }, - "events": [ - { - "uuid": "b5c1d191-94ce-4454-9f21-eaccc9a848b5", - "start": { - "$date": "2021-12-08T02:55:04.000Z" - }, - "end": { - "$date": "2021-12-08T03:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f4e5e19-220e-46c6-8a79-0d383cea8164", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T03:03:16.000Z" - }, - "end": { - "$date": "2021-12-08T03:37:56.000Z" - }, - "events": [ - { - "uuid": "677463ca-24b0-49bf-ab55-ac21e2cc962e", - "start": { - "$date": "2021-12-08T03:03:16.000Z" - }, - "end": { - "$date": "2021-12-08T03:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "ecb46788-a3e4-4ece-9915-7718472776bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T03:45:46.000Z" - }, - "end": { - "$date": "2021-12-08T03:47:51.000Z" - }, - "events": [ - { - "uuid": "ba403176-fc2c-4e53-a478-e0a9650e5707", - "start": { - "$date": "2021-12-08T03:45:46.000Z" - }, - "end": { - "$date": "2021-12-08T03:47:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "0da8fe05-1469-4ad4-9f99-114fef61ee07", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-08T03:00:36.000Z" - }, - "end": { - "$date": "2021-12-08T03:47:01.000Z" - }, - "events": [ - { - "uuid": "92cdc5ac-30ac-426a-82cf-3d86cc1c5e84", - "start": { - "$date": "2021-12-08T03:00:36.000Z" - }, - "end": { - "$date": "2021-12-08T03:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d177495-056b-4a9c-bcc9-a1e3761980ec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T03:06:28.000Z" - }, - "end": { - "$date": "2021-12-08T03:40:41.000Z" - }, - "events": [ - { - "uuid": "55629d31-f35c-4741-9897-84607b1da856", - "start": { - "$date": "2021-12-08T03:06:28.000Z" - }, - "end": { - "$date": "2021-12-08T03:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "92d75a18-693b-4176-92d7-3ee906541c52", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-08T04:10:47.000Z" - }, - "end": { - "$date": "2021-12-08T04:12:47.000Z" - }, - "events": [ - { - "uuid": "0da457c1-5755-4a2c-a9f2-0101442ab28f", - "start": { - "$date": "2021-12-08T04:10:47.000Z" - }, - "end": { - "$date": "2021-12-08T04:12:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96f5ce4a-ce4c-4d2d-bce0-945997f8e76e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T03:59:31.000Z" - }, - "end": { - "$date": "2021-12-08T04:30:32.000Z" - }, - "events": [ - { - "uuid": "f40bcc41-b203-4821-9b23-ae1810b013eb", - "start": { - "$date": "2021-12-08T03:59:31.000Z" - }, - "end": { - "$date": "2021-12-08T04:00:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0665097a-72a0-4da3-ac66-312e4f45c8d2", - "start": { - "$date": "2021-12-08T04:00:31.000Z" - }, - "end": { - "$date": "2021-12-08T04:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "0e0a1f25-d592-47a3-8066-55845a55c1d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T04:01:27.000Z" - }, - "end": { - "$date": "2021-12-08T04:23:53.000Z" - }, - "events": [ - { - "uuid": "7ba7e225-729b-4c6a-be9f-9eee841a8b43", - "start": { - "$date": "2021-12-08T04:01:27.000Z" - }, - "end": { - "$date": "2021-12-08T04:23:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4e6f0e1e-7810-445f-b7aa-307fc8912f94", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-08T04:14:10.000Z" - }, - "end": { - "$date": "2021-12-08T05:40:59.000Z" - }, - "events": [ - { - "uuid": "108d3135-f9d3-481d-888d-981ed6bb5e81", - "start": { - "$date": "2021-12-08T04:14:10.000Z" - }, - "end": { - "$date": "2021-12-08T05:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a54d31ed-8adc-44fa-881e-07b2713022a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-08T04:21:14.000Z" - }, - "end": { - "$date": "2021-12-08T04:23:49.000Z" - }, - "events": [ - { - "uuid": "f18c0d5c-980f-49b3-97ab-cf6c6611ff13", - "start": { - "$date": "2021-12-08T04:21:14.000Z" - }, - "end": { - "$date": "2021-12-08T04:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ec1892bc-9d55-411d-b9e2-9703b5672656", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T04:24:13.000Z" - }, - "end": { - "$date": "2021-12-08T04:37:53.000Z" - }, - "events": [ - { - "uuid": "b9c10aef-edf2-4894-ba22-4283684a9eef", - "start": { - "$date": "2021-12-08T04:24:13.000Z" - }, - "end": { - "$date": "2021-12-08T04:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "8c6d7b4b-0fe7-4d2c-adc6-b1f567890b6b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-08T04:24:19.000Z" - }, - "end": { - "$date": "2021-12-08T04:37:55.000Z" - }, - "events": [ - { - "uuid": "708f800d-b90a-4552-a8c7-74242f56f311", - "start": { - "$date": "2021-12-08T04:24:19.000Z" - }, - "end": { - "$date": "2021-12-08T04:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d81c8ffb-41c8-4945-81b4-3221963bdf3f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-08T04:43:34.000Z" - }, - "end": { - "$date": "2021-12-08T05:19:54.000Z" - }, - "events": [ - { - "uuid": "afbd3032-417c-4568-99a0-0702c0ebfe6b", - "start": { - "$date": "2021-12-08T04:43:34.000Z" - }, - "end": { - "$date": "2021-12-08T05:19:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4cade26-8d04-4bf3-a7f5-0cd976f80935", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T04:43:35.000Z" - }, - "end": { - "$date": "2021-12-08T05:19:47.000Z" - }, - "events": [ - { - "uuid": "7c4e9cb7-566c-48ee-9fef-47f0a7c36f57", - "start": { - "$date": "2021-12-08T04:43:35.000Z" - }, - "end": { - "$date": "2021-12-08T05:19:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "2b14a724-d4e6-42f9-8c18-b162cc151027", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-08T04:48:36.000Z" - }, - "end": { - "$date": "2021-12-08T05:12:17.000Z" - }, - "events": [ - { - "uuid": "78e107f7-ce94-4e09-85d1-92206a7da02c", - "start": { - "$date": "2021-12-08T04:48:36.000Z" - }, - "end": { - "$date": "2021-12-08T05:12:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "148c6f38-bb40-46b4-8ab2-48abffa329dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-08T05:32:31.000Z" - }, - "end": { - "$date": "2021-12-08T05:54:23.000Z" - }, - "events": [ - { - "uuid": "eaa0caa7-0d67-4d80-8ffa-d9eeaa82efe2", - "start": { - "$date": "2021-12-08T05:32:31.000Z" - }, - "end": { - "$date": "2021-12-08T05:54:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08208122-a3cb-4373-ad18-96cf5bf556e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T05:26:07.000Z" - }, - "end": { - "$date": "2021-12-08T05:28:22.000Z" - }, - "events": [ - { - "uuid": "7966d16b-672a-4135-bec4-6bf0314544f3", - "start": { - "$date": "2021-12-08T05:26:07.000Z" - }, - "end": { - "$date": "2021-12-08T05:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af247071-72d6-48d7-863c-59b72d002103", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-08T05:32:31.000Z" - }, - "end": { - "$date": "2021-12-08T05:54:21.000Z" - }, - "events": [ - { - "uuid": "0877e15c-a566-4f08-aecf-e2d383e1c4af", - "start": { - "$date": "2021-12-08T05:32:31.000Z" - }, - "end": { - "$date": "2021-12-08T05:54:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbe1b493-c1cd-4508-b3f2-aea6c198a284", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T05:32:30.000Z" - }, - "end": { - "$date": "2021-12-08T05:54:22.000Z" - }, - "events": [ - { - "uuid": "ffceb17b-7d54-4fd2-9a7a-e9e66640db22", - "start": { - "$date": "2021-12-08T05:32:30.000Z" - }, - "end": { - "$date": "2021-12-08T05:54:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6aea93aa-2f7a-442b-94dc-d8db4e4a609d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-08T05:32:18.000Z" - }, - "end": { - "$date": "2021-12-08T06:19:57.000Z" - }, - "events": [ - { - "uuid": "d92da873-c78a-418a-9c5b-7340f212264e", - "start": { - "$date": "2021-12-08T05:32:18.000Z" - }, - "end": { - "$date": "2021-12-08T06:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "db934a9f-1f1f-40e3-93f8-b397b6a0be3c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-08T05:53:07.000Z" - }, - "end": { - "$date": "2021-12-08T07:08:08.000Z" - }, - "events": [ - { - "uuid": "c030e0de-0378-4d7f-a562-9a4a53e5408a", - "start": { - "$date": "2021-12-08T05:53:07.000Z" - }, - "end": { - "$date": "2021-12-08T07:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f76051bb-a466-4b56-9d64-4d70adec2336", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-08T05:56:41.000Z" - }, - "end": { - "$date": "2021-12-08T06:07:17.000Z" - }, - "events": [ - { - "uuid": "ef4012c2-17aa-4550-b23f-9688a1120b41", - "start": { - "$date": "2021-12-08T05:56:41.000Z" - }, - "end": { - "$date": "2021-12-08T06:07:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e691015-76f9-4007-b7c6-4ca48c4bd121", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-08T05:56:37.000Z" - }, - "end": { - "$date": "2021-12-08T06:06:50.000Z" - }, - "events": [ - { - "uuid": "f2bc4b4d-a393-4b6a-b55a-577a4deaa84e", - "start": { - "$date": "2021-12-08T05:56:37.000Z" - }, - "end": { - "$date": "2021-12-08T06:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab733b71-65c5-487f-8e7e-9a93dd98e71e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T06:31:20.000Z" - }, - "end": { - "$date": "2021-12-08T06:52:40.000Z" - }, - "events": [ - { - "uuid": "174de0bc-f6f7-4ac7-91a1-65bf1c8c6e93", - "start": { - "$date": "2021-12-08T06:31:20.000Z" - }, - "end": { - "$date": "2021-12-08T06:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6fc6955-996a-406f-9ce3-ddbc34198aa8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T07:00:37.000Z" - }, - "end": { - "$date": "2021-12-08T07:29:35.000Z" - }, - "events": [ - { - "uuid": "cfe88f10-0ef9-4a6b-9e22-e8fd3d19251f", - "start": { - "$date": "2021-12-08T07:00:37.000Z" - }, - "end": { - "$date": "2021-12-08T07:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "440d2896-8b33-43c2-afbd-3fb7b11381fc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-08T11:01:50.000Z" - }, - "end": { - "$date": "2021-12-08T13:46:50.000Z" - }, - "events": [ - { - "uuid": "4784ddde-f52b-470e-8b61-cb65ce42d1fa", - "start": { - "$date": "2021-12-08T11:01:50.000Z" - }, - "end": { - "$date": "2021-12-08T13:46:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a7a92281-bbb5-4575-a72b-97294d00213b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-08T14:01:47.000Z" - }, - "end": { - "$date": "2021-12-08T14:03:01.000Z" - }, - "events": [ - { - "uuid": "bc14ef2c-85e1-42d5-aada-0a7f121569ee", - "start": { - "$date": "2021-12-08T14:01:47.000Z" - }, - "end": { - "$date": "2021-12-08T14:03:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "435e62ff-d2ec-4623-aa55-388fd4506909", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-08T14:03:17.000Z" - }, - "end": { - "$date": "2021-12-08T14:06:07.000Z" - }, - "events": [ - { - "uuid": "2c28437f-ab65-4224-b564-4deaf95a0061", - "start": { - "$date": "2021-12-08T14:03:17.000Z" - }, - "end": { - "$date": "2021-12-08T14:06:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2695f5fe-0481-4734-8a8e-31534bad0c13", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-08T14:06:33.000Z" - }, - "end": { - "$date": "2021-12-08T14:42:19.000Z" - }, - "events": [ - { - "uuid": "48b9ccb7-8883-47a7-b2eb-a45e2fa1c533", - "start": { - "$date": "2021-12-08T14:06:33.000Z" - }, - "end": { - "$date": "2021-12-08T14:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "6e2f943e-8af4-4bd3-afd7-380919432876", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T14:51:09.000Z" - }, - "end": { - "$date": "2021-12-08T15:26:53.000Z" - }, - "events": [ - { - "uuid": "72879285-75ae-4f16-8faa-29fea4dc4764", - "start": { - "$date": "2021-12-08T14:51:09.000Z" - }, - "end": { - "$date": "2021-12-08T15:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "4aa027c0-3fa4-40ae-a1c3-114db6b913e4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T16:03:29.000Z" - }, - "end": { - "$date": "2021-12-08T16:29:07.000Z" - }, - "events": [ - { - "uuid": "928124e0-fb65-4408-9ae7-5a489bf656db", - "start": { - "$date": "2021-12-08T16:03:29.000Z" - }, - "end": { - "$date": "2021-12-08T16:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f457449a-786c-4374-a608-c28147fea137", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T16:50:28.000Z" - }, - "end": { - "$date": "2021-12-08T17:01:35.000Z" - }, - "events": [ - { - "uuid": "94458c5d-41eb-45ae-ad92-d7362af55acd", - "start": { - "$date": "2021-12-08T16:50:28.000Z" - }, - "end": { - "$date": "2021-12-08T17:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b8057ae-7835-4298-b529-c095a8a3ce61", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T16:53:41.000Z" - }, - "end": { - "$date": "2021-12-08T17:10:57.000Z" - }, - "events": [ - { - "uuid": "276ef331-0e3f-4a38-ae03-ff11dd9352d5", - "start": { - "$date": "2021-12-08T16:53:41.000Z" - }, - "end": { - "$date": "2021-12-08T17:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "16607623-bd6a-4b29-821f-68eb17ae936f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T17:03:49.000Z" - }, - "end": { - "$date": "2021-12-08T17:08:16.000Z" - }, - "events": [ - { - "uuid": "7748ea45-1c5b-4820-b323-dd98928a9270", - "start": { - "$date": "2021-12-08T17:03:49.000Z" - }, - "end": { - "$date": "2021-12-08T17:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eafb4043-e3f3-4809-b4ad-46ade60409f7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T17:18:04.000Z" - }, - "end": { - "$date": "2021-12-08T17:46:11.000Z" - }, - "events": [ - { - "uuid": "f66098ef-b311-44b1-813a-534de4a9ebf9", - "start": { - "$date": "2021-12-08T17:18:04.000Z" - }, - "end": { - "$date": "2021-12-08T17:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6596c277-1638-453d-a7e4-111f3dd01040", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T17:47:28.000Z" - }, - "end": { - "$date": "2021-12-08T18:24:38.000Z" - }, - "events": [ - { - "uuid": "14130e17-1457-48e9-bd58-fb4be1d35ba5", - "start": { - "$date": "2021-12-08T17:47:28.000Z" - }, - "end": { - "$date": "2021-12-08T18:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "e8f1461d-f376-4b49-926f-690d50364141", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T17:48:06.000Z" - }, - "end": { - "$date": "2021-12-08T18:45:54.000Z" - }, - "events": [ - { - "uuid": "88f79467-5a59-4ffc-b18b-0974e3ffd822", - "start": { - "$date": "2021-12-08T17:48:06.000Z" - }, - "end": { - "$date": "2021-12-08T18:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4decf580-f59a-4fb5-a639-97b31fce9eb1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T18:27:20.000Z" - }, - "end": { - "$date": "2021-12-08T18:55:40.000Z" - }, - "events": [ - { - "uuid": "932ff76f-aabd-45ee-ba95-28244e69ee2b", - "start": { - "$date": "2021-12-08T18:27:20.000Z" - }, - "end": { - "$date": "2021-12-08T18:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8befd68e-0658-43a1-8189-c505a70b4583", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T18:58:09.000Z" - }, - "end": { - "$date": "2021-12-08T19:16:17.000Z" - }, - "events": [ - { - "uuid": "41a07463-52aa-479e-bbe8-0c7094f40104", - "start": { - "$date": "2021-12-08T18:58:09.000Z" - }, - "end": { - "$date": "2021-12-08T19:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c2ba1a2c-1fba-4440-aaed-6044fec9e80b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-08T19:16:49.000Z" - }, - "end": { - "$date": "2021-12-08T21:21:13.000Z" - }, - "events": [ - { - "uuid": "665ff86a-658e-4bbe-84f0-1062e48e6445", - "start": { - "$date": "2021-12-08T19:16:49.000Z" - }, - "end": { - "$date": "2021-12-08T21:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "97e8956c-27a8-4686-b295-21559f7a9117", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-08T20:07:41.000Z" - }, - "end": { - "$date": "2021-12-08T20:14:36.000Z" - }, - "events": [ - { - "uuid": "4f1f93f4-7633-404f-9bdd-d51eeb53557e", - "start": { - "$date": "2021-12-08T20:07:41.000Z" - }, - "end": { - "$date": "2021-12-08T20:14:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2015829-9cdb-4400-9437-b05d983a2d17", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T21:01:21.000Z" - }, - "end": { - "$date": "2021-12-08T21:21:08.000Z" - }, - "events": [ - { - "uuid": "2d99db82-9759-49bf-8d9b-55fcd76dfaf6", - "start": { - "$date": "2021-12-08T21:01:21.000Z" - }, - "end": { - "$date": "2021-12-08T21:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52deb321-b6e5-4227-9783-2b6b68807cf1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T21:32:17.000Z" - }, - "end": { - "$date": "2021-12-08T22:05:56.000Z" - }, - "events": [ - { - "uuid": "93d057f1-5a69-49d7-af08-831caef6d7e5", - "start": { - "$date": "2021-12-08T21:32:17.000Z" - }, - "end": { - "$date": "2021-12-08T22:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7635bdc3-201a-4899-9e25-5c8d72e39025", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-08T23:12:30.000Z" - }, - "end": { - "$date": "2021-12-08T23:12:56.000Z" - }, - "events": [ - { - "uuid": "cc707ca8-4345-4614-bed6-02667f9ee2ae", - "start": { - "$date": "2021-12-08T23:12:30.000Z" - }, - "end": { - "$date": "2021-12-08T23:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "78cd97bb-97d5-41ab-9b7f-7c7c812a44a7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T22:27:07.000Z" - }, - "end": { - "$date": "2021-12-08T22:52:14.000Z" - }, - "events": [ - { - "uuid": "a65bdb7a-5f9a-4a74-93b2-ac08b7d3df51", - "start": { - "$date": "2021-12-08T22:27:07.000Z" - }, - "end": { - "$date": "2021-12-08T22:52:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "8912759b-9501-4106-a97d-0d655c995dc6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-08T23:15:00.000Z" - }, - "end": { - "$date": "2021-12-09T01:22:52.000Z" - }, - "events": [ - { - "uuid": "0ca5bda0-a8b2-428a-8523-f1553e5a2de3", - "start": { - "$date": "2021-12-08T23:15:00.000Z" - }, - "end": { - "$date": "2021-12-09T01:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "3f0246fe-1073-475d-8d7c-5ad81deb2d26", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-08T23:15:06.000Z" - }, - "end": { - "$date": "2021-12-09T01:12:16.000Z" - }, - "events": [ - { - "uuid": "751b66d1-f8e2-4ff8-bd94-b7e8f6117f14", - "start": { - "$date": "2021-12-08T23:15:06.000Z" - }, - "end": { - "$date": "2021-12-09T01:12:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "154c76f7-7c43-489b-8acc-d4b2983e3311", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-08T23:59:16.000Z" - }, - "end": { - "$date": "2021-12-09T00:26:02.000Z" - }, - "events": [ - { - "uuid": "bb7634c0-52d2-4aea-84c7-e0e7a9ba955a", - "start": { - "$date": "2021-12-08T23:59:16.000Z" - }, - "end": { - "$date": "2021-12-09T00:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0ccf0372-5418-4a8f-ad3c-69c3f38a1e9f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T00:15:44.000Z" - }, - "end": { - "$date": "2021-12-09T05:28:13.000Z" - }, - "events": [ - { - "uuid": "90551550-c2e5-4063-8cae-274e834505dc", - "start": { - "$date": "2021-12-09T00:15:44.000Z" - }, - "end": { - "$date": "2021-12-09T05:28:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "2b57df85-bdff-4479-bcab-c1aabbd19fd8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-09T00:16:19.000Z" - }, - "end": { - "$date": "2021-12-09T00:47:35.000Z" - }, - "events": [ - { - "uuid": "d7ff5e17-5ad8-471e-9862-2cfedc377ef6", - "start": { - "$date": "2021-12-09T00:16:19.000Z" - }, - "end": { - "$date": "2021-12-09T00:47:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ea153ea-691c-44dd-ae02-2a1564ea9d5e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T00:26:54.000Z" - }, - "end": { - "$date": "2021-12-09T00:28:01.000Z" - }, - "events": [ - { - "uuid": "1f0c0958-123c-4426-96b1-ea796b795b7a", - "start": { - "$date": "2021-12-09T00:26:54.000Z" - }, - "end": { - "$date": "2021-12-09T00:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e636c55a-7cd4-42ee-9ffd-55f4c724f438", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T00:28:09.000Z" - }, - "end": { - "$date": "2021-12-09T00:37:14.000Z" - }, - "events": [ - { - "uuid": "13250a54-8294-451f-8702-c5635f59666f", - "start": { - "$date": "2021-12-09T00:28:09.000Z" - }, - "end": { - "$date": "2021-12-09T00:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "f4810e3d-51dc-48d4-9028-889d6290a2b0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T01:03:01.000Z" - }, - "end": { - "$date": "2021-12-09T02:33:47.000Z" - }, - "events": [ - { - "uuid": "8c5594fb-cac8-430e-9d40-822bbb964a45", - "start": { - "$date": "2021-12-09T01:03:01.000Z" - }, - "end": { - "$date": "2021-12-09T02:33:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "78a3d367-e485-4201-9ff9-996c0e373f09", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-09T01:28:25.000Z" - }, - "end": { - "$date": "2021-12-09T02:00:21.000Z" - }, - "events": [ - { - "uuid": "a4504c82-4b81-4e25-bb6c-905c6d716324", - "start": { - "$date": "2021-12-09T01:28:25.000Z" - }, - "end": { - "$date": "2021-12-09T02:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "04a9f60e-8086-4553-8cae-4d039279e946", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-09T01:43:26.000Z" - }, - "end": { - "$date": "2021-12-09T01:44:57.000Z" - }, - "events": [ - { - "uuid": "1d80b0db-5aae-4047-b757-2433315f43b2", - "start": { - "$date": "2021-12-09T01:43:26.000Z" - }, - "end": { - "$date": "2021-12-09T01:44:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "4e17bf6a-1613-4785-bacc-ca46b0ee86c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T01:54:25.000Z" - }, - "end": { - "$date": "2021-12-09T02:10:36.000Z" - }, - "events": [ - { - "uuid": "dcd8711c-e6e8-4443-bba8-94b0ddf251e8", - "start": { - "$date": "2021-12-09T01:54:25.000Z" - }, - "end": { - "$date": "2021-12-09T02:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0d4849db-57c9-41bd-afdf-5483ce9db31d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-09T04:31:58.000Z" - }, - "end": { - "$date": "2021-12-09T06:46:14.000Z" - }, - "events": [ - { - "uuid": "e908a69e-941c-459c-b27e-fa1e470d4104", - "start": { - "$date": "2021-12-09T04:31:58.000Z" - }, - "end": { - "$date": "2021-12-09T05:18:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81d3aba6-811e-44e3-b8b5-eb489336650c", - "start": { - "$date": "2021-12-09T05:18:58.000Z" - }, - "end": { - "$date": "2021-12-09T05:23:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c724f8fa-c60a-4144-b3b8-b48191fad316", - "start": { - "$date": "2021-12-09T05:23:58.000Z" - }, - "end": { - "$date": "2021-12-09T06:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d9615b8-978d-400d-a847-45d2c2c7f503", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-09T02:17:28.000Z" - }, - "end": { - "$date": "2021-12-09T02:41:18.000Z" - }, - "events": [ - { - "uuid": "ba722604-a220-4619-83c1-0ca8bd54dd45", - "start": { - "$date": "2021-12-09T02:17:28.000Z" - }, - "end": { - "$date": "2021-12-09T02:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "408c7434-bf90-4da5-9d3e-8de33c51b6ad", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-09T02:21:04.000Z" - }, - "end": { - "$date": "2021-12-09T04:33:03.000Z" - }, - "events": [ - { - "uuid": "a1edc707-264a-405f-80ec-c02158bf5fe6", - "start": { - "$date": "2021-12-09T02:21:04.000Z" - }, - "end": { - "$date": "2021-12-09T04:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "363d6361-9bde-41a4-b1e2-b0d1d68db397", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T02:32:41.000Z" - }, - "end": { - "$date": "2021-12-09T03:05:25.000Z" - }, - "events": [ - { - "uuid": "cb3ea03a-63f0-49a1-98cd-a42e6e85cd4c", - "start": { - "$date": "2021-12-09T02:32:41.000Z" - }, - "end": { - "$date": "2021-12-09T03:05:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "392a0a2d-6c94-47ea-adc1-c111a0eb0bab", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T02:38:34.000Z" - }, - "end": { - "$date": "2021-12-09T04:37:51.000Z" - }, - "events": [ - { - "uuid": "a57b8171-a4fd-4340-a87a-518f4d58f45c", - "start": { - "$date": "2021-12-09T02:38:34.000Z" - }, - "end": { - "$date": "2021-12-09T04:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d0f5e20-33ee-4b85-82ad-99f902aaa7cb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T02:40:59.000Z" - }, - "end": { - "$date": "2021-12-09T03:07:29.000Z" - }, - "events": [ - { - "uuid": "360bc1c6-8e0c-4eac-83ae-f3e029a4249e", - "start": { - "$date": "2021-12-09T02:40:59.000Z" - }, - "end": { - "$date": "2021-12-09T03:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a0824021-45f1-42b3-8dad-eead976fb57f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T02:41:15.000Z" - }, - "end": { - "$date": "2021-12-09T03:24:19.000Z" - }, - "events": [ - { - "uuid": "620d04bb-99c6-49c8-ba58-f3cdefff2370", - "start": { - "$date": "2021-12-09T02:41:15.000Z" - }, - "end": { - "$date": "2021-12-09T03:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "1c248cac-e8c8-42c7-87c1-27dbbff57a2f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-09T02:41:59.000Z" - }, - "end": { - "$date": "2021-12-09T03:21:16.000Z" - }, - "events": [ - { - "uuid": "efb75b87-e081-40df-b8e2-73e3a5ec311a", - "start": { - "$date": "2021-12-09T02:41:59.000Z" - }, - "end": { - "$date": "2021-12-09T03:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7793ea7-80ac-44c5-9140-3804c149b3dc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T03:17:06.000Z" - }, - "end": { - "$date": "2021-12-09T03:33:12.000Z" - }, - "events": [ - { - "uuid": "f1eecca2-b924-4318-88a0-c96e6bf4a466", - "start": { - "$date": "2021-12-09T03:17:06.000Z" - }, - "end": { - "$date": "2021-12-09T03:33:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f0697b7-0e8a-4d71-a7ca-2efa786301de", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T03:09:23.000Z" - }, - "end": { - "$date": "2021-12-09T03:34:55.000Z" - }, - "events": [ - { - "uuid": "947a39df-4233-41e8-bc47-912417657936", - "start": { - "$date": "2021-12-09T03:09:23.000Z" - }, - "end": { - "$date": "2021-12-09T03:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ce11769c-c7a0-4e4b-86bf-0c07f2befcbf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T03:11:28.000Z" - }, - "end": { - "$date": "2021-12-09T04:33:21.000Z" - }, - "events": [ - { - "uuid": "12e9936a-5793-4fd0-a95a-07f9bb38184c", - "start": { - "$date": "2021-12-09T03:11:28.000Z" - }, - "end": { - "$date": "2021-12-09T04:33:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "97108bbd-c8ed-429f-a52e-8a1e64949175", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-09T03:22:32.000Z" - }, - "end": { - "$date": "2021-12-09T04:32:49.000Z" - }, - "events": [ - { - "uuid": "81d27c65-a487-4b92-9dc3-f978a063cc4d", - "start": { - "$date": "2021-12-09T03:22:32.000Z" - }, - "end": { - "$date": "2021-12-09T04:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c7c9647-5183-4504-9105-446a1bec77ad", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T03:35:26.000Z" - }, - "end": { - "$date": "2021-12-09T05:34:26.000Z" - }, - "events": [ - { - "uuid": "3af0d424-15c7-482a-b282-ed5725c81ad9", - "start": { - "$date": "2021-12-09T03:35:26.000Z" - }, - "end": { - "$date": "2021-12-09T05:34:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7f2af17-ecd5-4bea-84d5-4484db7823f8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T03:37:22.000Z" - }, - "end": { - "$date": "2021-12-09T04:06:09.000Z" - }, - "events": [ - { - "uuid": "202875c2-dcb1-434f-a6f4-38e5ab5c56ca", - "start": { - "$date": "2021-12-09T03:37:22.000Z" - }, - "end": { - "$date": "2021-12-09T04:06:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2dda011d-0566-43a1-aa65-2cc460e18ac0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-09T03:58:23.000Z" - }, - "end": { - "$date": "2021-12-09T04:33:25.000Z" - }, - "events": [ - { - "uuid": "fc06e924-f03f-403e-bf0d-e2709dcab93c", - "start": { - "$date": "2021-12-09T03:58:23.000Z" - }, - "end": { - "$date": "2021-12-09T04:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b9e75d9-7ce0-4136-bf98-f255e8998688", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T04:13:18.000Z" - }, - "end": { - "$date": "2021-12-09T04:34:24.000Z" - }, - "events": [ - { - "uuid": "7030db6a-765d-4f18-872d-a4d1c683d7e3", - "start": { - "$date": "2021-12-09T04:13:18.000Z" - }, - "end": { - "$date": "2021-12-09T04:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "830589fb-a3df-4a15-bcb6-e5effdf3fd36", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T04:36:46.000Z" - }, - "end": { - "$date": "2021-12-09T05:10:03.000Z" - }, - "events": [ - { - "uuid": "9ed97244-f010-4092-9551-42a978edfa5f", - "start": { - "$date": "2021-12-09T04:36:46.000Z" - }, - "end": { - "$date": "2021-12-09T05:10:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "07254e80-f084-4b7a-9913-e905a52eadd4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T05:15:47.000Z" - }, - "end": { - "$date": "2021-12-09T05:37:15.000Z" - }, - "events": [ - { - "uuid": "b4d1740f-2d6b-4898-838c-aee1b49474fb", - "start": { - "$date": "2021-12-09T05:15:47.000Z" - }, - "end": { - "$date": "2021-12-09T05:37:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "32a9a84e-afaa-4ddd-ae95-b8af1669f249", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T05:31:24.000Z" - }, - "end": { - "$date": "2021-12-09T05:38:11.000Z" - }, - "events": [ - { - "uuid": "752837c9-86ed-45c5-aa2f-46233df26300", - "start": { - "$date": "2021-12-09T05:31:24.000Z" - }, - "end": { - "$date": "2021-12-09T05:38:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36487e80-ec29-487f-8e08-b12b3e5036cb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T05:42:33.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:39.000Z" - }, - "events": [ - { - "uuid": "7dc8b9cd-dc7b-4424-b7e2-20a118e304fc", - "start": { - "$date": "2021-12-09T05:42:33.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42c5b644-6411-4add-8454-f8e0adc39ad4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T05:59:37.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:37.000Z" - }, - "events": [ - { - "uuid": "1d6b68b8-932f-41b9-b22f-2d1462382749", - "start": { - "$date": "2021-12-09T05:59:37.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7908120d-351b-41ce-8186-dc67dd8abfe0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T05:42:39.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:48.000Z" - }, - "events": [ - { - "uuid": "0266a507-fbbd-404e-a57c-18995340dc3d", - "start": { - "$date": "2021-12-09T05:42:39.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e437d739-2bc0-42b6-8ba5-e2009c483cd4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T05:42:36.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:46.000Z" - }, - "events": [ - { - "uuid": "762eed03-a27a-42e5-9a9f-5d5be6a78256", - "start": { - "$date": "2021-12-09T05:42:36.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3bed6d1-0427-4ed8-98b1-2507bf151ec7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-09T05:42:34.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:35.000Z" - }, - "events": [ - { - "uuid": "d1e272b7-6684-4b43-bb6c-3420ba9b090a", - "start": { - "$date": "2021-12-09T05:42:34.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc1d1a09-865d-44c3-a181-b9d3d7fd3080", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-09T05:42:38.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:42.000Z" - }, - "events": [ - { - "uuid": "a445eb18-b482-4ec1-bc65-86a59f6af5d1", - "start": { - "$date": "2021-12-09T05:42:38.000Z" - }, - "end": { - "$date": "2021-12-09T05:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7ff6c45-460b-4ba1-8420-88fa228a5359", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T06:02:54.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:40.000Z" - }, - "events": [ - { - "uuid": "41b609db-1dbf-4e42-8087-dc18d945ab6b", - "start": { - "$date": "2021-12-09T06:02:54.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10bfa045-3c2c-43c6-aad0-b08459897bb1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T06:17:37.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:38.000Z" - }, - "events": [ - { - "uuid": "412a353f-f00d-4c04-bcf9-281dc8bf55a8", - "start": { - "$date": "2021-12-09T06:17:37.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aae20eed-52b4-41e0-82f2-e814104b4413", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T06:01:15.000Z" - }, - "end": { - "$date": "2021-12-09T06:04:08.000Z" - }, - "events": [ - { - "uuid": "c8e6c6e3-e236-477e-a142-377c49e8b3cc", - "start": { - "$date": "2021-12-09T06:01:15.000Z" - }, - "end": { - "$date": "2021-12-09T06:04:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19455345-3161-4187-b81a-f9a43df83517", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T06:02:47.000Z" - }, - "end": { - "$date": "2021-12-09T06:14:10.000Z" - }, - "events": [ - { - "uuid": "1f9104f8-9312-4fb4-9251-543b86a61941", - "start": { - "$date": "2021-12-09T06:02:47.000Z" - }, - "end": { - "$date": "2021-12-09T06:14:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ab2b449-5604-441f-8cf3-61e2d9790b0a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-09T06:02:55.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:36.000Z" - }, - "events": [ - { - "uuid": "b4bea88d-9609-40cb-ac8b-b31323717a4c", - "start": { - "$date": "2021-12-09T06:02:55.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fafef1b-3fa0-412e-a693-402bd54aef31", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-09T06:02:53.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:37.000Z" - }, - "events": [ - { - "uuid": "6f792646-2fe0-439f-a7ef-80be1013ae2a", - "start": { - "$date": "2021-12-09T06:02:53.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6878646-8274-4b17-927d-0bce13ab8199", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T06:02:55.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:46.000Z" - }, - "events": [ - { - "uuid": "20048ace-21bb-41d0-80b3-1c1dd6da0648", - "start": { - "$date": "2021-12-09T06:02:55.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76fac7c5-1a13-4386-b275-f2555191b0d3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-09T06:14:19.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:39.000Z" - }, - "events": [ - { - "uuid": "e14c4db3-bda0-4ed5-8dd5-5fe46fe0930c", - "start": { - "$date": "2021-12-09T06:14:19.000Z" - }, - "end": { - "$date": "2021-12-09T06:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e90a9a05-9136-41a9-8c21-c2d1dab82a6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T06:21:42.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:29.000Z" - }, - "events": [ - { - "uuid": "53644860-2790-4378-af9b-389eaf422335", - "start": { - "$date": "2021-12-09T06:21:42.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "336d52db-ce5d-49b7-aaf1-3e50829d7d68", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T06:35:18.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:19.000Z" - }, - "events": [ - { - "uuid": "d3263829-5661-481d-98fa-635bd1c1cc16", - "start": { - "$date": "2021-12-09T06:35:18.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d23f8ed2-e2db-468c-b601-784b3aab1084", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T06:21:39.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:24.000Z" - }, - "events": [ - { - "uuid": "7bcd248e-d2c6-44b4-a63b-fb5a6fa0d475", - "start": { - "$date": "2021-12-09T06:21:39.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d328108-6e81-473f-a1b8-0a82eb24f029", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-09T06:21:49.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:29.000Z" - }, - "events": [ - { - "uuid": "45b6ebbf-7b05-41cf-a519-5c2ad17b940e", - "start": { - "$date": "2021-12-09T06:21:49.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b03b4c77-52b2-48da-ad44-dd04fa42bcfd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-09T06:21:45.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:28.000Z" - }, - "events": [ - { - "uuid": "923312fd-7a4b-4c78-bb8b-eb761fe8173e", - "start": { - "$date": "2021-12-09T06:21:45.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d9b238a-7ba2-49f1-a957-74bd0286bed8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T06:21:44.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:20.000Z" - }, - "events": [ - { - "uuid": "93ccba09-3da8-4aff-b858-caa56fd9b071", - "start": { - "$date": "2021-12-09T06:21:44.000Z" - }, - "end": { - "$date": "2021-12-09T06:35:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0d9aa13-fb56-4acd-a56a-894a04cea015", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T06:37:58.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:29.000Z" - }, - "events": [ - { - "uuid": "147a0518-9279-48b4-97bd-216abb723640", - "start": { - "$date": "2021-12-09T06:37:58.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c73527d-09e9-45fe-bdf2-b4ca9148a447", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T06:37:58.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:19.000Z" - }, - "events": [ - { - "uuid": "5b9c6985-889c-40aa-bc72-c8c7bcf2a558", - "start": { - "$date": "2021-12-09T06:37:58.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05712f03-1fab-4a01-8cbe-cdcff7febee3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T06:37:59.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:30.000Z" - }, - "events": [ - { - "uuid": "a39e0710-f84d-40ab-ac68-80ae4681a1f9", - "start": { - "$date": "2021-12-09T06:37:59.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfac8faa-fa36-4662-b488-61f5b427cf3f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-09T06:38:04.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:29.000Z" - }, - "events": [ - { - "uuid": "3af25e72-6d81-4203-adf3-7a2218cb9b35", - "start": { - "$date": "2021-12-09T06:38:04.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cafdb8ed-bf46-41b0-8a2c-97fd2d4b8031", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-09T06:37:56.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:27.000Z" - }, - "events": [ - { - "uuid": "c676df65-43b1-4467-a111-4bc2958f66d3", - "start": { - "$date": "2021-12-09T06:37:56.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63f25122-7926-4dc2-8f6f-297fca09114a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T06:37:54.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:35.000Z" - }, - "events": [ - { - "uuid": "3ebd8b89-6b00-40fa-8b10-15878ef98c20", - "start": { - "$date": "2021-12-09T06:37:54.000Z" - }, - "end": { - "$date": "2021-12-09T06:56:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ae9041b-1744-4a34-aef3-dfe19c605abe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T06:59:55.000Z" - }, - "end": { - "$date": "2021-12-09T07:20:56.000Z" - }, - "events": [ - { - "uuid": "3e8107ed-9bf2-4c5d-8f7c-42f3aab261f9", - "start": { - "$date": "2021-12-09T06:59:55.000Z" - }, - "end": { - "$date": "2021-12-09T07:20:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "03e2db15-0d33-46f6-b01c-aa0564d2323b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T06:58:14.000Z" - }, - "end": { - "$date": "2021-12-09T07:11:29.000Z" - }, - "events": [ - { - "uuid": "d4ff55ec-cf75-4136-b630-eec1ebb2896e", - "start": { - "$date": "2021-12-09T06:58:14.000Z" - }, - "end": { - "$date": "2021-12-09T07:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33c4960c-bbb9-45e7-8979-8e9ff4bd5011", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T07:00:05.000Z" - }, - "end": { - "$date": "2021-12-09T07:20:55.000Z" - }, - "events": [ - { - "uuid": "cef328a0-48d0-4fb2-84cf-ac849fce49d4", - "start": { - "$date": "2021-12-09T07:00:05.000Z" - }, - "end": { - "$date": "2021-12-09T07:20:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4523fe97-5496-4d4a-843d-d8d6970cda2d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-09T06:58:34.000Z" - }, - "end": { - "$date": "2021-12-09T08:34:06.000Z" - }, - "events": [ - { - "uuid": "09cfbfae-b2bc-4b00-806f-ce339f78df0b", - "start": { - "$date": "2021-12-09T06:58:34.000Z" - }, - "end": { - "$date": "2021-12-09T08:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "30ca2dc6-e8be-4f2a-bfc4-cbeba3f8cf25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T07:12:10.000Z" - }, - "end": { - "$date": "2021-12-09T08:26:18.000Z" - }, - "events": [ - { - "uuid": "c6f0c4d6-f28f-4324-bed0-57091e112d5b", - "start": { - "$date": "2021-12-09T07:12:10.000Z" - }, - "end": { - "$date": "2021-12-09T08:26:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a057503-01d9-48d5-9bd5-dac554cd5ba2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T07:23:05.000Z" - }, - "end": { - "$date": "2021-12-09T07:37:05.000Z" - }, - "events": [ - { - "uuid": "e5180cad-fa2a-4fe5-bf1e-5dfaec28598c", - "start": { - "$date": "2021-12-09T07:23:05.000Z" - }, - "end": { - "$date": "2021-12-09T07:37:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "801585d5-c57a-40c5-8963-94f5abdbb0ce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T07:23:15.000Z" - }, - "end": { - "$date": "2021-12-09T07:37:06.000Z" - }, - "events": [ - { - "uuid": "06a7e8cd-b844-4b60-a2df-e850aaf696d3", - "start": { - "$date": "2021-12-09T07:23:15.000Z" - }, - "end": { - "$date": "2021-12-09T07:37:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89f565de-f366-4113-a682-347fd1b3ea9d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T07:39:21.000Z" - }, - "end": { - "$date": "2021-12-09T08:05:56.000Z" - }, - "events": [ - { - "uuid": "3e6d407a-c3a8-4c0d-90cd-a69f7d30217d", - "start": { - "$date": "2021-12-09T07:39:21.000Z" - }, - "end": { - "$date": "2021-12-09T08:05:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d434c7a1-8ae2-4750-b3ce-32add8ee4dd3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T07:39:15.000Z" - }, - "end": { - "$date": "2021-12-09T08:05:51.000Z" - }, - "events": [ - { - "uuid": "186e8428-e8a5-4e14-92b5-18fc9661da6c", - "start": { - "$date": "2021-12-09T07:39:15.000Z" - }, - "end": { - "$date": "2021-12-09T08:05:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05509fed-370d-442e-8f47-eefa5c1bd59d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T08:08:56.000Z" - }, - "end": { - "$date": "2021-12-09T08:26:51.000Z" - }, - "events": [ - { - "uuid": "76464175-5399-40f3-b690-449c5bbf7b64", - "start": { - "$date": "2021-12-09T08:08:56.000Z" - }, - "end": { - "$date": "2021-12-09T08:26:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2cf4afe9-6ac7-451e-a6ac-b6f24ff8f2de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T08:08:56.000Z" - }, - "end": { - "$date": "2021-12-09T08:26:47.000Z" - }, - "events": [ - { - "uuid": "4a262dea-6618-400b-a108-570a4cd9ae04", - "start": { - "$date": "2021-12-09T08:08:56.000Z" - }, - "end": { - "$date": "2021-12-09T08:26:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "324f5662-f649-45b7-976a-eb3a6425c405", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T08:26:29.000Z" - }, - "end": { - "$date": "2021-12-09T11:15:20.000Z" - }, - "events": [ - { - "uuid": "fc96d927-c448-4291-a2d0-050d3e8b0ea9", - "start": { - "$date": "2021-12-09T08:26:29.000Z" - }, - "end": { - "$date": "2021-12-09T11:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bb34d2f-fd26-4611-b59c-d6838e64e26f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T08:36:18.000Z" - }, - "end": { - "$date": "2021-12-09T09:05:03.000Z" - }, - "events": [ - { - "uuid": "e34ef8ca-e43c-4d77-9f55-387f0987a5ab", - "start": { - "$date": "2021-12-09T08:36:18.000Z" - }, - "end": { - "$date": "2021-12-09T09:05:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98a7b1c9-2f97-406d-8193-1b14b6356ab1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T08:36:22.000Z" - }, - "end": { - "$date": "2021-12-09T09:05:24.000Z" - }, - "events": [ - { - "uuid": "3758c7b5-b35e-49ac-ac04-eae0bed67155", - "start": { - "$date": "2021-12-09T08:36:22.000Z" - }, - "end": { - "$date": "2021-12-09T09:05:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2d1d7e0-184c-4ff7-af7a-0bed43a39b83", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T09:10:44.000Z" - }, - "end": { - "$date": "2021-12-09T09:30:34.000Z" - }, - "events": [ - { - "uuid": "9e0c78f5-7e8f-419e-9770-7b3a1dd1d603", - "start": { - "$date": "2021-12-09T09:10:44.000Z" - }, - "end": { - "$date": "2021-12-09T09:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f139b31-724a-4d75-b043-8d4aabc4ebd9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T09:41:00.000Z" - }, - "end": { - "$date": "2021-12-09T10:01:20.000Z" - }, - "events": [ - { - "uuid": "b1fca993-ef69-4bc8-82f3-4543a66ce837", - "start": { - "$date": "2021-12-09T09:41:00.000Z" - }, - "end": { - "$date": "2021-12-09T10:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d80a5c6f-0024-406d-bebb-8487bffe3774", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T10:03:55.000Z" - }, - "end": { - "$date": "2021-12-09T10:19:15.000Z" - }, - "events": [ - { - "uuid": "13ecf488-6be4-4c5a-80e0-49fb4f3ee6a0", - "start": { - "$date": "2021-12-09T10:03:55.000Z" - }, - "end": { - "$date": "2021-12-09T10:19:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f58b909-1679-4edb-9e6d-4c5aa51773da", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T10:23:31.000Z" - }, - "end": { - "$date": "2021-12-09T10:44:01.000Z" - }, - "events": [ - { - "uuid": "5dfa22c7-be99-44f9-87e1-d6c2ec4bfe71", - "start": { - "$date": "2021-12-09T10:23:31.000Z" - }, - "end": { - "$date": "2021-12-09T10:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16beae8a-bd16-4588-af32-4bc011b4914e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T10:49:17.000Z" - }, - "end": { - "$date": "2021-12-09T11:12:37.000Z" - }, - "events": [ - { - "uuid": "a7ca4b9b-74b8-4b8c-9a6e-9afadb42e5e0", - "start": { - "$date": "2021-12-09T10:49:17.000Z" - }, - "end": { - "$date": "2021-12-09T11:12:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4147aeab-d198-4d5a-ab00-21a9ddc84650", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T11:15:12.000Z" - }, - "end": { - "$date": "2021-12-09T11:35:27.000Z" - }, - "events": [ - { - "uuid": "b303928f-f2b6-40e5-85d3-9dbbd9e9fead", - "start": { - "$date": "2021-12-09T11:15:12.000Z" - }, - "end": { - "$date": "2021-12-09T11:35:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d3b2d923-fd97-4cc3-80a8-b21ccce5910f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T11:15:35.000Z" - }, - "end": { - "$date": "2021-12-09T11:21:52.000Z" - }, - "events": [ - { - "uuid": "75355ab7-632b-4834-8c7a-7d155d7ac88f", - "start": { - "$date": "2021-12-09T11:15:35.000Z" - }, - "end": { - "$date": "2021-12-09T11:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "605ff3f6-67ce-446e-a678-777cd9a68105", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-09T11:22:58.000Z" - }, - "end": { - "$date": "2021-12-09T13:59:02.000Z" - }, - "events": [ - { - "uuid": "7f0aa4f9-806c-4a82-b3b3-7b0f72f647e2", - "start": { - "$date": "2021-12-09T11:22:58.000Z" - }, - "end": { - "$date": "2021-12-09T13:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3607be29-63f8-4305-827e-185ba618a7b1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T11:37:32.000Z" - }, - "end": { - "$date": "2021-12-09T11:57:28.000Z" - }, - "events": [ - { - "uuid": "c7180a72-caa5-43ae-907f-e03cb8a07d5c", - "start": { - "$date": "2021-12-09T11:37:32.000Z" - }, - "end": { - "$date": "2021-12-09T11:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "847593df-29e6-442d-be72-462b7f8a2f43", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T12:00:08.000Z" - }, - "end": { - "$date": "2021-12-09T12:20:18.000Z" - }, - "events": [ - { - "uuid": "219fd161-6637-4d35-ac83-2f50afdf6872", - "start": { - "$date": "2021-12-09T12:00:08.000Z" - }, - "end": { - "$date": "2021-12-09T12:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39578bcd-1f77-41db-87f4-244095b9fe8f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T12:23:59.000Z" - }, - "end": { - "$date": "2021-12-09T12:38:33.000Z" - }, - "events": [ - { - "uuid": "f5b128b1-58b1-4ecc-b0bc-ea574249ef60", - "start": { - "$date": "2021-12-09T12:23:59.000Z" - }, - "end": { - "$date": "2021-12-09T12:38:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89e05a02-b26b-49a4-bc09-738b0c7b36a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T12:40:39.000Z" - }, - "end": { - "$date": "2021-12-09T12:58:59.000Z" - }, - "events": [ - { - "uuid": "de53383d-ca52-444b-90d6-77a73fb93274", - "start": { - "$date": "2021-12-09T12:40:39.000Z" - }, - "end": { - "$date": "2021-12-09T12:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d854840a-97a5-4515-ae9d-bdbe525f136a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T13:01:05.000Z" - }, - "end": { - "$date": "2021-12-09T13:17:35.000Z" - }, - "events": [ - { - "uuid": "6e161359-4fe6-47ab-8ff2-7041a6c1dd9a", - "start": { - "$date": "2021-12-09T13:01:05.000Z" - }, - "end": { - "$date": "2021-12-09T13:17:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f2ca26f-2d03-4a55-8b98-d181be303b43", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T13:19:35.000Z" - }, - "end": { - "$date": "2021-12-09T13:41:05.000Z" - }, - "events": [ - { - "uuid": "949fea4c-44c8-45a3-8394-22afaf2c98c3", - "start": { - "$date": "2021-12-09T13:19:35.000Z" - }, - "end": { - "$date": "2021-12-09T13:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "99793e41-b37a-47b6-a563-e7c27a561241", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-09T13:37:24.000Z" - }, - "end": { - "$date": "2021-12-09T14:05:12.000Z" - }, - "events": [ - { - "uuid": "11bdc0ef-ec91-40bf-a6f0-a5ce40bb8647", - "start": { - "$date": "2021-12-09T13:37:24.000Z" - }, - "end": { - "$date": "2021-12-09T14:05:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de101615-92d4-488b-a579-17b49e0c70fd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T13:43:55.000Z" - }, - "end": { - "$date": "2021-12-09T14:01:55.000Z" - }, - "events": [ - { - "uuid": "f9c30ff4-16a5-4480-b06f-7f459d93fdfe", - "start": { - "$date": "2021-12-09T13:43:55.000Z" - }, - "end": { - "$date": "2021-12-09T14:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89e7d59e-9fbd-46e9-a636-afa061d7fa75", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-09T14:04:21.000Z" - }, - "end": { - "$date": "2021-12-09T14:30:56.000Z" - }, - "events": [ - { - "uuid": "cdac0848-719e-4631-a230-eef4b4b88752", - "start": { - "$date": "2021-12-09T14:04:21.000Z" - }, - "end": { - "$date": "2021-12-09T14:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "5e618ebf-78da-42cb-ac7b-2c3b1fd82951", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T15:45:37.000Z" - }, - "end": { - "$date": "2021-12-09T15:51:19.000Z" - }, - "events": [ - { - "uuid": "cf1fcd58-7e11-42e1-a624-47c116a4ba7a", - "start": { - "$date": "2021-12-09T15:45:37.000Z" - }, - "end": { - "$date": "2021-12-09T15:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "cff7a3a8-690d-45e3-b763-0e56404f8a62", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T15:57:24.000Z" - }, - "end": { - "$date": "2021-12-09T16:04:17.000Z" - }, - "events": [ - { - "uuid": "15fe7a68-548f-468d-957d-146edb46bd00", - "start": { - "$date": "2021-12-09T15:57:24.000Z" - }, - "end": { - "$date": "2021-12-09T16:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "cead6725-f5f6-4b75-8a3d-deffddf08f2e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T17:31:08.000Z" - }, - "end": { - "$date": "2021-12-09T17:34:44.000Z" - }, - "events": [ - { - "uuid": "4f73e366-60cd-465d-9156-aad5e7d9a5f8", - "start": { - "$date": "2021-12-09T17:31:08.000Z" - }, - "end": { - "$date": "2021-12-09T17:34:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "db668a67-5933-4ecc-94a9-f7aaef3b14f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T22:05:26.000Z" - }, - "end": { - "$date": "2021-12-09T22:12:23.000Z" - }, - "events": [ - { - "uuid": "d0da1eb2-0623-47f1-9843-14c1b65c6574", - "start": { - "$date": "2021-12-09T22:05:26.000Z" - }, - "end": { - "$date": "2021-12-09T22:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "2e4d7c1e-5fc2-44ff-9092-3caa78d8069d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-09T23:00:42.000Z" - }, - "end": { - "$date": "2021-12-10T00:20:44.000Z" - }, - "events": [ - { - "uuid": "13022da9-ca69-4fb0-ad96-7f2bd676174d", - "start": { - "$date": "2021-12-09T23:00:42.000Z" - }, - "end": { - "$date": "2021-12-10T00:20:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f09ee92b-b9ce-4441-80c3-1776485620bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-09T23:08:11.000Z" - }, - "end": { - "$date": "2021-12-10T00:56:13.000Z" - }, - "events": [ - { - "uuid": "0af6aaf7-e46f-42cf-9e5e-d35e36bb1969", - "start": { - "$date": "2021-12-09T23:08:11.000Z" - }, - "end": { - "$date": "2021-12-10T00:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8d249f71-b597-4654-a70c-637b17bf3e93", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-09T23:01:41.000Z" - }, - "end": { - "$date": "2021-12-10T04:11:44.000Z" - }, - "events": [ - { - "uuid": "0ff28fce-906e-4de4-8e26-bab98c780fab", - "start": { - "$date": "2021-12-09T23:01:41.000Z" - }, - "end": { - "$date": "2021-12-09T23:16:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7df394b9-4ed0-4784-9045-cde835b143a1", - "start": { - "$date": "2021-12-09T23:16:41.000Z" - }, - "end": { - "$date": "2021-12-09T23:21:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2e2f529-5822-4779-8b9d-f65f8cfaed42", - "start": { - "$date": "2021-12-09T23:21:41.000Z" - }, - "end": { - "$date": "2021-12-09T23:31:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "782b96f2-6522-41f1-93d5-5828103f71e7", - "start": { - "$date": "2021-12-09T23:31:41.000Z" - }, - "end": { - "$date": "2021-12-10T00:38:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15799605-a623-4387-a61e-a625351b1232", - "start": { - "$date": "2021-12-10T00:38:41.000Z" - }, - "end": { - "$date": "2021-12-10T01:06:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec6c941a-6548-4e96-b7b9-c765b199a7a9", - "start": { - "$date": "2021-12-10T01:06:41.000Z" - }, - "end": { - "$date": "2021-12-10T01:11:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c3df35d-6785-4652-926c-17b63c027f4d", - "start": { - "$date": "2021-12-10T01:11:41.000Z" - }, - "end": { - "$date": "2021-12-10T01:28:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49188cdf-577d-4bec-a614-6a91b1ca9205", - "start": { - "$date": "2021-12-10T01:28:41.000Z" - }, - "end": { - "$date": "2021-12-10T01:33:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9fde6c39-4706-472f-880d-9d1f94422c12", - "start": { - "$date": "2021-12-10T01:33:41.000Z" - }, - "end": { - "$date": "2021-12-10T04:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56021c6d-2fe1-44b2-8dbd-1b751141f652", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-09T23:54:57.000Z" - }, - "end": { - "$date": "2021-12-10T00:30:48.000Z" - }, - "events": [ - { - "uuid": "8d00895d-8522-405d-9cc3-ab9d697fdcb6", - "start": { - "$date": "2021-12-09T23:54:57.000Z" - }, - "end": { - "$date": "2021-12-10T00:30:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7dfaf534-2ef0-4fab-a674-fd551e52be6f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T00:09:53.000Z" - }, - "end": { - "$date": "2021-12-10T00:14:28.000Z" - }, - "events": [ - { - "uuid": "1bca03c9-3861-433c-9918-c85b062a853d", - "start": { - "$date": "2021-12-10T00:09:53.000Z" - }, - "end": { - "$date": "2021-12-10T00:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a4c95d4c-a667-49a9-9800-91fc24417a95", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T00:18:34.000Z" - }, - "end": { - "$date": "2021-12-10T00:36:10.000Z" - }, - "events": [ - { - "uuid": "0cf01daf-3617-41e9-988a-b4c6d2446a61", - "start": { - "$date": "2021-12-10T00:18:34.000Z" - }, - "end": { - "$date": "2021-12-10T00:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ccbdcf20-9346-47b8-906b-8cf517771f59", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T00:57:48.000Z" - }, - "end": { - "$date": "2021-12-10T00:57:48.000Z" - }, - "events": [ - { - "uuid": "1f5107ed-8dcd-478b-bc9f-5e617479445f", - "start": { - "$date": "2021-12-10T00:57:48.000Z" - }, - "end": { - "$date": "2021-12-10T00:57:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "249ad945-b02a-4a7e-aba2-e73955d62024", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-10T00:31:55.000Z" - }, - "end": { - "$date": "2021-12-10T01:12:57.000Z" - }, - "events": [ - { - "uuid": "71987923-b45a-471f-9512-6cc9469d74fc", - "start": { - "$date": "2021-12-10T00:31:55.000Z" - }, - "end": { - "$date": "2021-12-10T01:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d7c489af-89e5-40cc-a4b9-4555eff30e01", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-10T00:36:36.000Z" - }, - "end": { - "$date": "2021-12-10T01:15:50.000Z" - }, - "events": [ - { - "uuid": "62adf1b1-823d-40ab-a922-429501738274", - "start": { - "$date": "2021-12-10T00:36:36.000Z" - }, - "end": { - "$date": "2021-12-10T01:15:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e31172f3-c355-41f3-906f-9646b7b07256", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T00:37:45.000Z" - }, - "end": { - "$date": "2021-12-10T02:38:30.000Z" - }, - "events": [ - { - "uuid": "2ea460e3-c5b2-458f-9a0c-4522257e5e3a", - "start": { - "$date": "2021-12-10T00:37:45.000Z" - }, - "end": { - "$date": "2021-12-10T02:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11ce51cd-3748-4432-b8ff-f16b5961b61b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T00:49:25.000Z" - }, - "end": { - "$date": "2021-12-10T01:11:04.000Z" - }, - "events": [ - { - "uuid": "beaea935-698a-40b6-8704-d3c2f8424dd9", - "start": { - "$date": "2021-12-10T00:49:25.000Z" - }, - "end": { - "$date": "2021-12-10T01:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10e7027b-bbce-4a06-aff6-d5cb01fd43c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T01:08:18.000Z" - }, - "end": { - "$date": "2021-12-10T01:35:39.000Z" - }, - "events": [ - { - "uuid": "f761b2f8-914a-4526-beb6-4e6614cf35d2", - "start": { - "$date": "2021-12-10T01:08:18.000Z" - }, - "end": { - "$date": "2021-12-10T01:35:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a0e1aaa-3167-4ba3-a8c8-573d2acbf04b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T01:12:18.000Z" - }, - "end": { - "$date": "2021-12-10T01:52:00.000Z" - }, - "events": [ - { - "uuid": "f51d6a07-b71a-4f02-b948-19206aa66b9f", - "start": { - "$date": "2021-12-10T01:12:18.000Z" - }, - "end": { - "$date": "2021-12-10T01:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7927513-4688-4aa5-a14a-bca39130eee2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T01:41:39.000Z" - }, - "end": { - "$date": "2021-12-10T02:11:27.000Z" - }, - "events": [ - { - "uuid": "82e2ebb7-656f-4ff9-bd42-d95e6c2bb876", - "start": { - "$date": "2021-12-10T01:41:39.000Z" - }, - "end": { - "$date": "2021-12-10T02:11:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a4a72e67-e656-4174-a766-9bd367d9e378", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T01:45:20.000Z" - }, - "end": { - "$date": "2021-12-10T02:36:10.000Z" - }, - "events": [ - { - "uuid": "27b4508e-dbb6-4872-b3a2-138eede290db", - "start": { - "$date": "2021-12-10T01:45:20.000Z" - }, - "end": { - "$date": "2021-12-10T02:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b3f8ee42-0e9b-48db-a25b-5ee02956a686", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T01:54:06.000Z" - }, - "end": { - "$date": "2021-12-10T02:28:56.000Z" - }, - "events": [ - { - "uuid": "5b02c501-cb98-4787-84f7-95b11a237331", - "start": { - "$date": "2021-12-10T01:54:06.000Z" - }, - "end": { - "$date": "2021-12-10T02:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f243e06-efe2-4dfd-94ef-8f76dfe51998", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-10T01:56:56.000Z" - }, - "end": { - "$date": "2021-12-10T02:20:02.000Z" - }, - "events": [ - { - "uuid": "64bbe8b5-e61e-4b03-816e-c00e0bcaa477", - "start": { - "$date": "2021-12-10T01:56:56.000Z" - }, - "end": { - "$date": "2021-12-10T02:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85cc41c1-df21-45e6-af84-47f4f0fcfe97", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-10T02:20:53.000Z" - }, - "end": { - "$date": "2021-12-10T02:55:34.000Z" - }, - "events": [ - { - "uuid": "7a86f44f-9e24-422f-95af-7bfbbe72efc6", - "start": { - "$date": "2021-12-10T02:20:53.000Z" - }, - "end": { - "$date": "2021-12-10T02:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e8e110a-cff0-4608-9fa2-b1fd3140fae7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T02:33:53.000Z" - }, - "end": { - "$date": "2021-12-10T02:59:00.000Z" - }, - "events": [ - { - "uuid": "9da79dae-25ca-4226-86e1-0ff45c3d63b4", - "start": { - "$date": "2021-12-10T02:33:53.000Z" - }, - "end": { - "$date": "2021-12-10T02:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a070d05-c5de-48b4-ba7c-a792d69bd801", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-10T02:33:09.000Z" - }, - "end": { - "$date": "2021-12-10T06:26:05.000Z" - }, - "events": [ - { - "uuid": "b098a769-3f6d-41db-98ba-0c22085a6b30", - "start": { - "$date": "2021-12-10T02:33:09.000Z" - }, - "end": { - "$date": "2021-12-10T06:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f1f1ff1-4b5a-4947-9470-0b57cf5f454d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T02:41:21.000Z" - }, - "end": { - "$date": "2021-12-10T03:14:34.000Z" - }, - "events": [ - { - "uuid": "22841cc6-f396-423f-8e0c-320850a2732d", - "start": { - "$date": "2021-12-10T02:41:21.000Z" - }, - "end": { - "$date": "2021-12-10T03:14:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "cbc635e8-d77d-4bf2-a1e8-9f8c8b3df946", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T02:38:45.000Z" - }, - "end": { - "$date": "2021-12-10T02:46:44.000Z" - }, - "events": [ - { - "uuid": "d9d5ca51-4d70-48cb-b8e8-4e06a67bee02", - "start": { - "$date": "2021-12-10T02:38:45.000Z" - }, - "end": { - "$date": "2021-12-10T02:46:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "de5e9ed9-d54c-4551-a159-eae433021a1e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-10T02:57:11.000Z" - }, - "end": { - "$date": "2021-12-10T02:57:46.000Z" - }, - "events": [ - { - "uuid": "29c41f54-0a4b-4f2e-be29-410539dbb94a", - "start": { - "$date": "2021-12-10T02:57:11.000Z" - }, - "end": { - "$date": "2021-12-10T02:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a256705d-8e66-406e-b0c1-7fdaef1e2072", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-10T02:48:18.000Z" - }, - "end": { - "$date": "2021-12-10T06:22:17.000Z" - }, - "events": [ - { - "uuid": "a13a98a7-c0d3-433b-b615-dea6d163dce6", - "start": { - "$date": "2021-12-10T02:48:18.000Z" - }, - "end": { - "$date": "2021-12-10T06:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc0f1cfd-9f94-484f-aeb7-d7009c13f383", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-10T02:58:30.000Z" - }, - "end": { - "$date": "2021-12-10T03:31:21.000Z" - }, - "events": [ - { - "uuid": "698b5038-4003-49e6-b28b-aa1170b3c91c", - "start": { - "$date": "2021-12-10T02:58:30.000Z" - }, - "end": { - "$date": "2021-12-10T03:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3e590bd2-a94b-4d25-be87-6aeeca60d1fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T02:58:00.000Z" - }, - "end": { - "$date": "2021-12-10T02:59:32.000Z" - }, - "events": [ - { - "uuid": "ac810588-ded3-4645-b8b5-933ad5b2b2f7", - "start": { - "$date": "2021-12-10T02:58:00.000Z" - }, - "end": { - "$date": "2021-12-10T02:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7ab9a495-6834-404d-ad73-b766478d19ff", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-10T02:58:26.000Z" - }, - "end": { - "$date": "2021-12-10T05:05:01.000Z" - }, - "events": [ - { - "uuid": "0c1088f9-227d-4675-a060-50ed47c7d6b2", - "start": { - "$date": "2021-12-10T02:58:26.000Z" - }, - "end": { - "$date": "2021-12-10T05:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "989b2fdf-9bfa-4948-91b9-a567e097ee97", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T02:59:26.000Z" - }, - "end": { - "$date": "2021-12-10T03:03:37.000Z" - }, - "events": [ - { - "uuid": "999110b9-1527-4136-802f-c246d30d2b71", - "start": { - "$date": "2021-12-10T02:59:26.000Z" - }, - "end": { - "$date": "2021-12-10T03:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7d3879e4-c9c5-42b8-81d7-99bbdd25ddbd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T03:03:43.000Z" - }, - "end": { - "$date": "2021-12-10T03:07:48.000Z" - }, - "events": [ - { - "uuid": "4ebfdc17-fec8-4a00-970f-5c35078c143d", - "start": { - "$date": "2021-12-10T03:03:43.000Z" - }, - "end": { - "$date": "2021-12-10T03:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6d38dd6f-82fa-4c91-a608-a1ae6b0e1109", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T03:08:43.000Z" - }, - "end": { - "$date": "2021-12-10T03:43:32.000Z" - }, - "events": [ - { - "uuid": "96ff6f99-7909-47ea-918b-bce77094aa8f", - "start": { - "$date": "2021-12-10T03:08:43.000Z" - }, - "end": { - "$date": "2021-12-10T03:43:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9cc1437c-7843-4998-aad6-faa1a81d2275", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T03:09:08.000Z" - }, - "end": { - "$date": "2021-12-10T04:00:14.000Z" - }, - "events": [ - { - "uuid": "fcab3ed7-c42b-4be4-a2b1-e7437f14dd3d", - "start": { - "$date": "2021-12-10T03:09:08.000Z" - }, - "end": { - "$date": "2021-12-10T04:00:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0abb811a-9686-4405-abea-b9b4f9aac650", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T03:15:27.000Z" - }, - "end": { - "$date": "2021-12-10T03:25:12.000Z" - }, - "events": [ - { - "uuid": "e79926ec-4174-4b83-aa2d-413853c673ee", - "start": { - "$date": "2021-12-10T03:15:27.000Z" - }, - "end": { - "$date": "2021-12-10T03:25:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30b79e10-163a-4076-99a2-468914e2b244", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T03:39:56.000Z" - }, - "end": { - "$date": "2021-12-10T04:12:08.000Z" - }, - "events": [ - { - "uuid": "e16bac54-c5b8-48a2-a243-e02d64c34b79", - "start": { - "$date": "2021-12-10T03:39:56.000Z" - }, - "end": { - "$date": "2021-12-10T04:12:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97b662ff-91e7-4bdb-b042-73e19d218256", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T04:01:55.000Z" - }, - "end": { - "$date": "2021-12-10T04:35:23.000Z" - }, - "events": [ - { - "uuid": "27765a4a-430f-47f7-9ee2-be3b82243d02", - "start": { - "$date": "2021-12-10T04:01:55.000Z" - }, - "end": { - "$date": "2021-12-10T04:35:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c13176dc-e9bd-45fb-b2c1-38d2ba9b4d5f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T04:18:32.000Z" - }, - "end": { - "$date": "2021-12-10T04:44:23.000Z" - }, - "events": [ - { - "uuid": "58312cda-ba0e-4911-8d81-43fa72e7ae69", - "start": { - "$date": "2021-12-10T04:18:32.000Z" - }, - "end": { - "$date": "2021-12-10T04:44:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05574748-e2b4-434b-aa95-1dd14a00bfa3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T04:18:30.000Z" - }, - "end": { - "$date": "2021-12-10T04:45:28.000Z" - }, - "events": [ - { - "uuid": "282679b5-e713-4e62-88b6-df1c3de93a43", - "start": { - "$date": "2021-12-10T04:18:30.000Z" - }, - "end": { - "$date": "2021-12-10T04:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a80fe9cd-9bf5-4819-ac71-9cb349ff60ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-10T04:33:18.000Z" - }, - "end": { - "$date": "2021-12-10T06:23:17.000Z" - }, - "events": [ - { - "uuid": "975a8db5-89ed-49fe-b636-ba5a923e7784", - "start": { - "$date": "2021-12-10T04:33:18.000Z" - }, - "end": { - "$date": "2021-12-10T06:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2a604a4-eff5-45a4-b93c-f27cd608ba5a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T04:36:08.000Z" - }, - "end": { - "$date": "2021-12-10T05:04:44.000Z" - }, - "events": [ - { - "uuid": "a7121b42-39a6-4613-9d69-38c07990ca30", - "start": { - "$date": "2021-12-10T04:36:08.000Z" - }, - "end": { - "$date": "2021-12-10T05:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a0cf538c-7b0c-42ce-bee9-e4e2ab995b16", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T04:36:05.000Z" - }, - "end": { - "$date": "2021-12-10T05:07:15.000Z" - }, - "events": [ - { - "uuid": "8db78c43-95b0-4192-8f29-41612061ba88", - "start": { - "$date": "2021-12-10T04:36:05.000Z" - }, - "end": { - "$date": "2021-12-10T05:07:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35d40171-630c-4fab-a495-4530db347918", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T04:52:22.000Z" - }, - "end": { - "$date": "2021-12-10T05:35:54.000Z" - }, - "events": [ - { - "uuid": "db285166-63c6-4477-b21d-8fcce4e4e100", - "start": { - "$date": "2021-12-10T04:52:22.000Z" - }, - "end": { - "$date": "2021-12-10T05:35:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2094972a-ceca-468f-bba7-effdf9b07e51", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T04:52:18.000Z" - }, - "end": { - "$date": "2021-12-10T05:36:07.000Z" - }, - "events": [ - { - "uuid": "dc5b513b-6e6b-4706-9276-7eced6a4b647", - "start": { - "$date": "2021-12-10T04:52:18.000Z" - }, - "end": { - "$date": "2021-12-10T05:36:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d2fdc2e3-7837-44c2-8511-998a6ecf2364", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-10T05:05:24.000Z" - }, - "end": { - "$date": "2021-12-10T06:28:37.000Z" - }, - "events": [ - { - "uuid": "739a5afc-f169-4600-875e-7b16c9b5d52d", - "start": { - "$date": "2021-12-10T05:05:24.000Z" - }, - "end": { - "$date": "2021-12-10T06:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f8d670ec-4adb-4ab0-9a08-a4315c794363", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-10T05:06:24.000Z" - }, - "end": { - "$date": "2021-12-10T06:21:46.000Z" - }, - "events": [ - { - "uuid": "10d1c5a6-dff5-4e6c-83bd-0ce273c72460", - "start": { - "$date": "2021-12-10T05:06:24.000Z" - }, - "end": { - "$date": "2021-12-10T06:21:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75c46a3c-dd15-418e-a8ba-c2909d97cd20", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-10T05:12:23.000Z" - }, - "end": { - "$date": "2021-12-10T05:52:28.000Z" - }, - "events": [ - { - "uuid": "9aa02760-b6db-4757-b562-1fd09af4f19f", - "start": { - "$date": "2021-12-10T05:12:23.000Z" - }, - "end": { - "$date": "2021-12-10T05:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "29b53c84-b564-4fa2-9561-607cd003de90", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T05:45:33.000Z" - }, - "end": { - "$date": "2021-12-10T05:47:39.000Z" - }, - "events": [ - { - "uuid": "b5a143e2-9a22-45b5-8889-b1a833d6a57e", - "start": { - "$date": "2021-12-10T05:45:33.000Z" - }, - "end": { - "$date": "2021-12-10T05:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ffaa3f03-0bf3-4743-b028-b74d5d0a325e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T05:47:59.000Z" - }, - "end": { - "$date": "2021-12-10T07:07:21.000Z" - }, - "events": [ - { - "uuid": "88e6092d-fa33-48d1-9a9a-3dab55e79919", - "start": { - "$date": "2021-12-10T05:47:59.000Z" - }, - "end": { - "$date": "2021-12-10T07:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b4ee75e-6029-4fbf-ac57-65ec5e572cbc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T06:02:30.000Z" - }, - "end": { - "$date": "2021-12-10T06:26:57.000Z" - }, - "events": [ - { - "uuid": "73c8ce82-aa08-4ba5-9081-48ea3f402ff7", - "start": { - "$date": "2021-12-10T06:02:30.000Z" - }, - "end": { - "$date": "2021-12-10T06:26:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaa939c3-d750-485a-a4b4-b0da13f35f7b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-10T06:02:39.000Z" - }, - "end": { - "$date": "2021-12-10T06:27:07.000Z" - }, - "events": [ - { - "uuid": "bcea2298-79c9-4a52-84c5-a22836798a1b", - "start": { - "$date": "2021-12-10T06:02:39.000Z" - }, - "end": { - "$date": "2021-12-10T06:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2db8573-926e-4814-8540-0366e1f2bb9b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-10T06:36:57.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:16.000Z" - }, - "events": [ - { - "uuid": "24a19d11-0a9f-4def-987e-eb82d1a5dff7", - "start": { - "$date": "2021-12-10T06:36:57.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa2a6f66-29f0-4051-9312-fb97ee58a645", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-10T06:36:51.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:07.000Z" - }, - "events": [ - { - "uuid": "3673ed85-d574-43e8-83ff-fe83217c863f", - "start": { - "$date": "2021-12-10T06:36:51.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3e22549-fb03-4fcd-9edc-eeab1b17dfc4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T06:36:57.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:13.000Z" - }, - "events": [ - { - "uuid": "e69606b8-3184-4869-a9a9-a35ff1d53736", - "start": { - "$date": "2021-12-10T06:36:57.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f6075b9-7c89-4291-97db-87e798a30b02", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-10T06:36:57.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:12.000Z" - }, - "events": [ - { - "uuid": "b33f4d95-b8ac-4f01-a739-9bc66d57399e", - "start": { - "$date": "2021-12-10T06:36:57.000Z" - }, - "end": { - "$date": "2021-12-10T07:05:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62ee9d23-65ef-4844-ad42-c089bea53ad1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-10T07:10:33.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:27.000Z" - }, - "events": [ - { - "uuid": "06217ab7-69e2-4c2e-a1b4-bb131028a113", - "start": { - "$date": "2021-12-10T07:10:33.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea470b65-059f-463e-9b0a-ae7744c55cf2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T07:10:37.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:24.000Z" - }, - "events": [ - { - "uuid": "3d139db0-e7ec-458d-9ab3-fd1302c3fc0d", - "start": { - "$date": "2021-12-10T07:10:37.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c67905b8-f101-4559-ab06-700a1e5987e5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-10T07:10:33.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:28.000Z" - }, - "events": [ - { - "uuid": "7ca1f05b-9c9a-431d-8c80-416e2d3b3bbe", - "start": { - "$date": "2021-12-10T07:10:33.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc758264-2908-40cb-a941-2c4743eb3bf9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T07:10:38.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:35.000Z" - }, - "events": [ - { - "uuid": "80d5631e-6c2d-4100-bd9a-2a038a61e906", - "start": { - "$date": "2021-12-10T07:10:38.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f2eec55-b4e4-409d-928c-af91c31d0118", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-10T07:10:33.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:29.000Z" - }, - "events": [ - { - "uuid": "6bea1ae6-1003-4249-a0db-48bb8149dd73", - "start": { - "$date": "2021-12-10T07:10:33.000Z" - }, - "end": { - "$date": "2021-12-10T07:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fabc7bd-6172-4f23-b590-67eba80e5d2b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-10T07:41:14.000Z" - }, - "end": { - "$date": "2021-12-10T07:43:47.000Z" - }, - "events": [ - { - "uuid": "cdd076d4-8e6c-4b15-8834-539f84d38aad", - "start": { - "$date": "2021-12-10T07:41:14.000Z" - }, - "end": { - "$date": "2021-12-10T07:43:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d08412b1-00fc-4691-a0f0-aa7f57eb440e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T07:41:35.000Z" - }, - "end": { - "$date": "2021-12-10T08:19:56.000Z" - }, - "events": [ - { - "uuid": "fba7fa04-14e2-426b-8bd0-3b8a7f35a900", - "start": { - "$date": "2021-12-10T07:41:35.000Z" - }, - "end": { - "$date": "2021-12-10T08:19:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b7680e63-ca87-406e-9e63-d8fafe24af8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T09:58:35.000Z" - }, - "end": { - "$date": "2021-12-10T10:08:31.000Z" - }, - "events": [ - { - "uuid": "7712588d-1513-46b5-a8ee-f003a9639798", - "start": { - "$date": "2021-12-10T09:58:35.000Z" - }, - "end": { - "$date": "2021-12-10T10:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "964cfe93-1cf4-48f2-b378-79198bf1be6b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T10:08:47.000Z" - }, - "end": { - "$date": "2021-12-10T10:11:32.000Z" - }, - "events": [ - { - "uuid": "89ff09d9-91e5-459a-833f-bed75ba5e5f3", - "start": { - "$date": "2021-12-10T10:08:47.000Z" - }, - "end": { - "$date": "2021-12-10T10:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "708a111a-366c-4a52-9494-01dbd05b2cba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-10T10:12:08.000Z" - }, - "end": { - "$date": "2021-12-10T10:35:30.000Z" - }, - "events": [ - { - "uuid": "03dfd153-ee63-4c76-9712-0c7ac8bb7453", - "start": { - "$date": "2021-12-10T10:12:08.000Z" - }, - "end": { - "$date": "2021-12-10T10:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9583536e-323b-49da-93cb-fad0368d488b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-10T10:36:13.000Z" - }, - "end": { - "$date": "2021-12-10T15:42:50.000Z" - }, - "events": [ - { - "uuid": "540fee10-3262-4d7c-9d76-1ab6a5ce84fb", - "start": { - "$date": "2021-12-10T10:36:13.000Z" - }, - "end": { - "$date": "2021-12-10T15:42:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "6466f133-861c-45f5-9e8b-30857b4a4498", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T15:48:33.000Z" - }, - "end": { - "$date": "2021-12-10T15:58:19.000Z" - }, - "events": [ - { - "uuid": "3ae7a38a-b480-424a-be3d-80bbac14a820", - "start": { - "$date": "2021-12-10T15:48:33.000Z" - }, - "end": { - "$date": "2021-12-10T15:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "4f1362eb-59f1-460c-94c8-e33f9b784e78", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T17:03:54.000Z" - }, - "end": { - "$date": "2021-12-10T17:14:15.000Z" - }, - "events": [ - { - "uuid": "cd3a0d9f-8431-404a-8140-cc9d02a0fdb6", - "start": { - "$date": "2021-12-10T17:03:54.000Z" - }, - "end": { - "$date": "2021-12-10T17:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "1a0b0264-796a-4a4b-b58f-debd43bbf372", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T18:06:50.000Z" - }, - "end": { - "$date": "2021-12-10T18:27:42.000Z" - }, - "events": [ - { - "uuid": "0c7bc9f3-f5ee-423b-98ec-98d8813540e0", - "start": { - "$date": "2021-12-10T18:06:50.000Z" - }, - "end": { - "$date": "2021-12-10T18:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "45a1d3d8-6b23-46f2-a545-4154c7bf1c00", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T18:28:02.000Z" - }, - "end": { - "$date": "2021-12-10T18:29:07.000Z" - }, - "events": [ - { - "uuid": "33ddcc95-2d68-4f40-8780-00c04e17a49e", - "start": { - "$date": "2021-12-10T18:28:02.000Z" - }, - "end": { - "$date": "2021-12-10T18:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "38ca6d96-04a4-4726-a03a-cdb25ba7423d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T18:32:37.000Z" - }, - "end": { - "$date": "2021-12-10T18:52:44.000Z" - }, - "events": [ - { - "uuid": "56b04fd9-a85b-4cc6-a9e6-0b7e82ed9b4a", - "start": { - "$date": "2021-12-10T18:32:37.000Z" - }, - "end": { - "$date": "2021-12-10T18:52:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3da7664d-012a-490c-bcd3-79ac1b257d5e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T18:56:11.000Z" - }, - "end": { - "$date": "2021-12-10T19:25:08.000Z" - }, - "events": [ - { - "uuid": "dac44f02-f24a-4e8a-b975-067d318d0e16", - "start": { - "$date": "2021-12-10T18:56:11.000Z" - }, - "end": { - "$date": "2021-12-10T19:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "76eb7195-cdf7-41fa-ac31-2f06b254d279", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-10T20:25:24.000Z" - }, - "end": { - "$date": "2021-12-11T00:47:55.000Z" - }, - "events": [ - { - "uuid": "821e22f4-cf05-416a-82ba-01961cfa52fd", - "start": { - "$date": "2021-12-10T20:25:24.000Z" - }, - "end": { - "$date": "2021-12-11T00:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "7d28222a-a36a-423b-9001-9aa3ffd60542", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T21:24:41.000Z" - }, - "end": { - "$date": "2021-12-10T21:45:18.000Z" - }, - "events": [ - { - "uuid": "cc6af5b3-0936-4f5d-8ddc-f0c962dc18a4", - "start": { - "$date": "2021-12-10T21:24:41.000Z" - }, - "end": { - "$date": "2021-12-10T21:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "db83a247-a379-4c7c-88d3-272fb0969827", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T22:21:27.000Z" - }, - "end": { - "$date": "2021-12-10T22:27:53.000Z" - }, - "events": [ - { - "uuid": "9458f9f5-d006-4f3d-b232-d93697db6020", - "start": { - "$date": "2021-12-10T22:21:27.000Z" - }, - "end": { - "$date": "2021-12-10T22:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "54d3a918-c001-4b67-8ff8-7542d8ea3769", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-10T22:28:58.000Z" - }, - "end": { - "$date": "2021-12-10T22:33:24.000Z" - }, - "events": [ - { - "uuid": "4cba3f94-2b57-45af-a477-92d9b799de2b", - "start": { - "$date": "2021-12-10T22:28:58.000Z" - }, - "end": { - "$date": "2021-12-10T22:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "ac82a334-2405-49c6-94d4-0e3391528ad1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-10T22:34:19.000Z" - }, - "end": { - "$date": "2021-12-10T23:35:01.000Z" - }, - "events": [ - { - "uuid": "8066470e-0b07-4993-8032-45309f72c350", - "start": { - "$date": "2021-12-10T22:34:19.000Z" - }, - "end": { - "$date": "2021-12-10T23:35:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "6777ab58-49c5-433a-98fd-867268122152", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T22:49:23.000Z" - }, - "end": { - "$date": "2021-12-10T22:53:13.000Z" - }, - "events": [ - { - "uuid": "d183ddb1-1a16-4748-b60d-58e2c054d494", - "start": { - "$date": "2021-12-10T22:49:23.000Z" - }, - "end": { - "$date": "2021-12-10T22:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "3d09f666-d717-4793-9efa-a803f9e3fc06", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T22:58:34.000Z" - }, - "end": { - "$date": "2021-12-10T23:01:14.000Z" - }, - "events": [ - { - "uuid": "9358b9f4-8df2-4f6a-9aed-e912cd10fcc6", - "start": { - "$date": "2021-12-10T22:58:34.000Z" - }, - "end": { - "$date": "2021-12-10T23:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "2c2f976c-0b07-407d-a1cb-29673f9c5e27", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-10T23:18:39.000Z" - }, - "end": { - "$date": "2021-12-11T00:18:30.000Z" - }, - "events": [ - { - "uuid": "f430bba0-d460-443b-a12d-e7b008a26e38", - "start": { - "$date": "2021-12-10T23:18:39.000Z" - }, - "end": { - "$date": "2021-12-11T00:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7268116a-65d6-4d5f-be67-f9231da65c1f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-10T23:34:30.000Z" - }, - "end": { - "$date": "2021-12-10T23:38:34.000Z" - }, - "events": [ - { - "uuid": "596c2af8-8b16-432d-add6-629b91c0ccd9", - "start": { - "$date": "2021-12-10T23:34:30.000Z" - }, - "end": { - "$date": "2021-12-10T23:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "5e8c6348-fe8a-4a4d-9e3e-0bc71d5cc7b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-10T23:35:27.000Z" - }, - "end": { - "$date": "2021-12-11T00:15:05.000Z" - }, - "events": [ - { - "uuid": "8c62b36b-7360-43da-88dc-703fdf382641", - "start": { - "$date": "2021-12-10T23:35:27.000Z" - }, - "end": { - "$date": "2021-12-11T00:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3eeea14a-4511-45b0-9dd1-3e38e8d29ab4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-10T23:40:16.000Z" - }, - "end": { - "$date": "2021-12-10T23:56:03.000Z" - }, - "events": [ - { - "uuid": "721b533b-9954-435d-b052-b2b4c7382900", - "start": { - "$date": "2021-12-10T23:40:16.000Z" - }, - "end": { - "$date": "2021-12-10T23:56:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b6f771fc-ccb4-45fd-90bc-812fde7ef089", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-10T23:56:08.000Z" - }, - "end": { - "$date": "2021-12-11T00:51:26.000Z" - }, - "events": [ - { - "uuid": "28a830d1-7d41-48d4-bdeb-3bc530a2225f", - "start": { - "$date": "2021-12-10T23:56:08.000Z" - }, - "end": { - "$date": "2021-12-11T00:51:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f4fbc16-fc9d-4a27-a0bf-a1303faf0d55", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-11T00:00:31.000Z" - }, - "end": { - "$date": "2021-12-11T00:14:25.000Z" - }, - "events": [ - { - "uuid": "1af0aa2d-a664-43b2-8b44-d64bc0c9c910", - "start": { - "$date": "2021-12-11T00:00:31.000Z" - }, - "end": { - "$date": "2021-12-11T00:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c27efb22-68d0-4380-bc32-4c66d9d7dc8c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T00:09:43.000Z" - }, - "end": { - "$date": "2021-12-11T00:45:59.000Z" - }, - "events": [ - { - "uuid": "979ec3d2-fe5d-494a-ac84-fbfa6fee8b39", - "start": { - "$date": "2021-12-11T00:09:43.000Z" - }, - "end": { - "$date": "2021-12-11T00:45:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fbe3fb50-ca6a-4cf0-999d-226b1f09150f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-11T00:16:07.000Z" - }, - "end": { - "$date": "2021-12-11T00:19:41.000Z" - }, - "events": [ - { - "uuid": "4df33502-3ea1-435f-a308-a69e7c5ca901", - "start": { - "$date": "2021-12-11T00:16:07.000Z" - }, - "end": { - "$date": "2021-12-11T00:19:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "5e4b05d6-cfb8-4135-877c-120a2beb1852", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T00:21:31.000Z" - }, - "end": { - "$date": "2021-12-11T00:25:41.000Z" - }, - "events": [ - { - "uuid": "731f2973-1858-4944-92bb-e4b138f286a7", - "start": { - "$date": "2021-12-11T00:21:31.000Z" - }, - "end": { - "$date": "2021-12-11T00:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6e1e9b4f-00ab-4336-a098-7ddb7cafe1c3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-11T00:24:43.000Z" - }, - "end": { - "$date": "2021-12-11T04:01:18.000Z" - }, - "events": [ - { - "uuid": "9a6af0f4-3992-4535-8e16-86fb1338746e", - "start": { - "$date": "2021-12-11T00:24:43.000Z" - }, - "end": { - "$date": "2021-12-11T00:52:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35bf85a7-da49-4a77-8c46-2f550ccf17c7", - "start": { - "$date": "2021-12-11T00:52:43.000Z" - }, - "end": { - "$date": "2021-12-11T00:56:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e52d5b9c-3764-4d5a-89a1-07ba8dc25e41", - "start": { - "$date": "2021-12-11T00:56:43.000Z" - }, - "end": { - "$date": "2021-12-11T01:07:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3cfd12d-6844-42bf-8357-9bf9645500ab", - "start": { - "$date": "2021-12-11T01:07:43.000Z" - }, - "end": { - "$date": "2021-12-11T01:12:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc72be67-62f0-4442-98cb-229915a33cef", - "start": { - "$date": "2021-12-11T01:12:43.000Z" - }, - "end": { - "$date": "2021-12-11T01:22:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2060ba53-7460-4416-8d44-638a17d04650", - "start": { - "$date": "2021-12-11T01:22:43.000Z" - }, - "end": { - "$date": "2021-12-11T01:35:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "78888a2c-1d57-4a90-bc8b-b8feefd90192", - "start": { - "$date": "2021-12-11T01:35:43.000Z" - }, - "end": { - "$date": "2021-12-11T01:55:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8cac163e-9500-4c3e-8b9d-20a57c9dabfa", - "start": { - "$date": "2021-12-11T01:55:43.000Z" - }, - "end": { - "$date": "2021-12-11T01:56:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2b604924-5f45-4df5-8443-875b93c0c5dd", - "start": { - "$date": "2021-12-11T01:56:43.000Z" - }, - "end": { - "$date": "2021-12-11T02:22:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5d88c5f5-a7e4-4029-ae25-3e4c268703c5", - "start": { - "$date": "2021-12-11T02:22:43.000Z" - }, - "end": { - "$date": "2021-12-11T02:23:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cf67e2cd-cb17-4c62-a3c0-b553a93111f7", - "start": { - "$date": "2021-12-11T02:23:43.000Z" - }, - "end": { - "$date": "2021-12-11T02:37:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a8627f6-966b-49d4-9787-e428a28e96c8", - "start": { - "$date": "2021-12-11T02:37:43.000Z" - }, - "end": { - "$date": "2021-12-11T02:38:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "12bf845b-7832-493d-b8ff-03b1da509761", - "start": { - "$date": "2021-12-11T02:38:43.000Z" - }, - "end": { - "$date": "2021-12-11T04:01:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c2f3bdc2-50cd-4487-b540-1aee3932620b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T00:48:51.000Z" - }, - "end": { - "$date": "2021-12-11T02:03:15.000Z" - }, - "events": [ - { - "uuid": "01a912bc-9023-40f5-94c2-f6e0434d2c25", - "start": { - "$date": "2021-12-11T00:48:51.000Z" - }, - "end": { - "$date": "2021-12-11T01:10:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8671ac84-3f05-4f55-b079-9ba9a3d544ff", - "start": { - "$date": "2021-12-11T01:10:51.000Z" - }, - "end": { - "$date": "2021-12-11T01:36:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c478ff7a-75fc-4a71-8ad4-9b25934ef507", - "start": { - "$date": "2021-12-11T01:36:51.000Z" - }, - "end": { - "$date": "2021-12-11T02:03:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "06538633-e806-4af8-a38d-cb34ca2940fe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T01:05:22.000Z" - }, - "end": { - "$date": "2021-12-11T02:00:29.000Z" - }, - "events": [ - { - "uuid": "5a5c37e9-0979-4dd5-b0d4-7cf7f7b657c7", - "start": { - "$date": "2021-12-11T01:05:22.000Z" - }, - "end": { - "$date": "2021-12-11T02:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "8a2d0780-e043-435d-ab88-61b69d98ce3e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T01:08:16.000Z" - }, - "end": { - "$date": "2021-12-11T01:10:21.000Z" - }, - "events": [ - { - "uuid": "824b86e6-c4d0-493f-aa1a-794abe5c0d00", - "start": { - "$date": "2021-12-11T01:08:16.000Z" - }, - "end": { - "$date": "2021-12-11T01:10:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "012a7272-8a5c-4c14-8629-e1a3ab67a14d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T01:29:24.000Z" - }, - "end": { - "$date": "2021-12-11T01:37:39.000Z" - }, - "events": [ - { - "uuid": "efc89dc9-c1a7-45ba-b01c-7b0c616cece8", - "start": { - "$date": "2021-12-11T01:29:24.000Z" - }, - "end": { - "$date": "2021-12-11T01:37:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7dc9601-e77b-413e-a678-8a7dbb71c919", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T02:06:15.000Z" - }, - "end": { - "$date": "2021-12-11T02:37:36.000Z" - }, - "events": [ - { - "uuid": "70f1c2a1-37ee-4743-911a-674205acd0dc", - "start": { - "$date": "2021-12-11T02:06:15.000Z" - }, - "end": { - "$date": "2021-12-11T02:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "23ae0b06-979e-4f58-aeb7-c3f9d7f0940a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-11T02:03:39.000Z" - }, - "end": { - "$date": "2021-12-11T07:45:38.000Z" - }, - "events": [ - { - "uuid": "ebda5ea9-f826-4418-8ce7-6f97b4bcb9fc", - "start": { - "$date": "2021-12-11T02:03:39.000Z" - }, - "end": { - "$date": "2021-12-11T07:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "69d35e6d-b4aa-42d3-8719-f64c4aa7ce56", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-11T02:06:25.000Z" - }, - "end": { - "$date": "2021-12-11T03:15:20.000Z" - }, - "events": [ - { - "uuid": "b9c0f791-df40-49cd-8a36-bbbe0c82a1f3", - "start": { - "$date": "2021-12-11T02:06:25.000Z" - }, - "end": { - "$date": "2021-12-11T03:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "dfeb1a81-a0f2-48fe-86e2-c7d9883d4709", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T02:18:01.000Z" - }, - "end": { - "$date": "2021-12-11T03:52:20.000Z" - }, - "events": [ - { - "uuid": "e0ae987e-12e5-402a-bbb1-9d74ab7081f7", - "start": { - "$date": "2021-12-11T02:18:01.000Z" - }, - "end": { - "$date": "2021-12-11T03:52:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6ac423d-4185-42ce-943c-cb0857a6388d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T02:39:07.000Z" - }, - "end": { - "$date": "2021-12-11T03:00:22.000Z" - }, - "events": [ - { - "uuid": "15e404cf-3f72-4b59-9d02-a8c64f4a0994", - "start": { - "$date": "2021-12-11T02:39:07.000Z" - }, - "end": { - "$date": "2021-12-11T03:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "089efba4-5ad3-4cd6-8c02-3bcb54d58b0e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T03:04:38.000Z" - }, - "end": { - "$date": "2021-12-11T03:19:34.000Z" - }, - "events": [ - { - "uuid": "2d861672-1da9-4675-85c1-47f5329ff8d6", - "start": { - "$date": "2021-12-11T03:04:38.000Z" - }, - "end": { - "$date": "2021-12-11T03:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81f50894-037c-4474-a7c8-4dbddce73247", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T03:03:33.000Z" - }, - "end": { - "$date": "2021-12-11T03:18:18.000Z" - }, - "events": [ - { - "uuid": "db636a6f-f480-440c-bd88-4863208a5b2a", - "start": { - "$date": "2021-12-11T03:03:33.000Z" - }, - "end": { - "$date": "2021-12-11T03:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "4315290d-fe5f-4900-8b57-6ec46f56b20a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T03:14:47.000Z" - }, - "end": { - "$date": "2021-12-11T03:24:42.000Z" - }, - "events": [ - { - "uuid": "06ab9a41-32fa-499a-8387-2c8214e93ff0", - "start": { - "$date": "2021-12-11T03:14:47.000Z" - }, - "end": { - "$date": "2021-12-11T03:24:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "900f2862-4bc6-4208-a7dd-6b5057fd8253", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T03:19:39.000Z" - }, - "end": { - "$date": "2021-12-11T03:32:38.000Z" - }, - "events": [ - { - "uuid": "f768c05b-6a71-4d63-a884-a55260fa3302", - "start": { - "$date": "2021-12-11T03:19:39.000Z" - }, - "end": { - "$date": "2021-12-11T03:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2202014-70ae-44a0-8456-4867ee4ea6e0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T03:21:36.000Z" - }, - "end": { - "$date": "2021-12-11T03:43:02.000Z" - }, - "events": [ - { - "uuid": "1bfe1e5e-f1ab-4e19-adb4-265a3f9f00d0", - "start": { - "$date": "2021-12-11T03:21:36.000Z" - }, - "end": { - "$date": "2021-12-11T03:43:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "a803869c-42e3-4eef-8183-4053208e745d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-11T03:25:33.000Z" - }, - "end": { - "$date": "2021-12-11T03:52:01.000Z" - }, - "events": [ - { - "uuid": "536181f8-9c46-40d6-86e0-869f0225aa66", - "start": { - "$date": "2021-12-11T03:25:33.000Z" - }, - "end": { - "$date": "2021-12-11T03:52:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb734142-8df3-4836-9357-8dafc321bcd3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T03:45:28.000Z" - }, - "end": { - "$date": "2021-12-11T04:13:11.000Z" - }, - "events": [ - { - "uuid": "6f947ca1-c557-4630-aba9-6d60cf9465cb", - "start": { - "$date": "2021-12-11T03:45:28.000Z" - }, - "end": { - "$date": "2021-12-11T04:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4efe53d1-f8b3-4f5f-9563-5689d0ea8132", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-11T04:01:59.000Z" - }, - "end": { - "$date": "2021-12-11T06:38:07.000Z" - }, - "events": [ - { - "uuid": "8cbbc7a8-460a-43a3-be5e-69a124a2872e", - "start": { - "$date": "2021-12-11T04:01:59.000Z" - }, - "end": { - "$date": "2021-12-11T06:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9370ff5-f13a-4a82-886a-7989aa654063", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T04:15:02.000Z" - }, - "end": { - "$date": "2021-12-11T04:26:18.000Z" - }, - "events": [ - { - "uuid": "cee18d9a-20c7-4f3e-9768-bdc812a1d545", - "start": { - "$date": "2021-12-11T04:15:02.000Z" - }, - "end": { - "$date": "2021-12-11T04:26:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3a61f323-4e31-45b3-b4a4-5108d86ba6b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T04:20:26.000Z" - }, - "end": { - "$date": "2021-12-11T05:44:03.000Z" - }, - "events": [ - { - "uuid": "dc9a5ef4-8112-46df-8fe6-7450a25a56c0", - "start": { - "$date": "2021-12-11T04:20:26.000Z" - }, - "end": { - "$date": "2021-12-11T05:44:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e7944c01-a82f-4b4b-bd61-aef88f105044", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T04:26:04.000Z" - }, - "end": { - "$date": "2021-12-11T06:36:22.000Z" - }, - "events": [ - { - "uuid": "d4472d30-4554-4adb-b59e-4a8795113dc4", - "start": { - "$date": "2021-12-11T04:26:04.000Z" - }, - "end": { - "$date": "2021-12-11T06:36:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae6247d1-4c38-4330-820d-4b9243ea3867", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T04:32:01.000Z" - }, - "end": { - "$date": "2021-12-11T04:58:54.000Z" - }, - "events": [ - { - "uuid": "8fbecb36-daac-4539-bce7-d213591302f8", - "start": { - "$date": "2021-12-11T04:32:01.000Z" - }, - "end": { - "$date": "2021-12-11T04:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "270f9663-aa6c-4ed1-8737-fd0653872046", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T05:03:25.000Z" - }, - "end": { - "$date": "2021-12-11T05:20:14.000Z" - }, - "events": [ - { - "uuid": "799d5788-d17c-40d7-83af-1cbe4fbe41b3", - "start": { - "$date": "2021-12-11T05:03:25.000Z" - }, - "end": { - "$date": "2021-12-11T05:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a2e98cfd-948f-4f1a-aa83-c829491d37c8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T05:20:25.000Z" - }, - "end": { - "$date": "2021-12-11T06:23:01.000Z" - }, - "events": [ - { - "uuid": "f19517e1-67c4-4ff1-9ce0-44306d7fe797", - "start": { - "$date": "2021-12-11T05:20:25.000Z" - }, - "end": { - "$date": "2021-12-11T06:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "ba9f0ea6-4828-4f13-bcad-00e0a915a678", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T05:20:27.000Z" - }, - "end": { - "$date": "2021-12-11T05:33:19.000Z" - }, - "events": [ - { - "uuid": "be644861-f299-4bae-96a8-ca572de27cba", - "start": { - "$date": "2021-12-11T05:20:27.000Z" - }, - "end": { - "$date": "2021-12-11T05:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d627af99-8389-4b67-82b7-3b7c2acf0929", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T05:23:25.000Z" - }, - "end": { - "$date": "2021-12-11T05:40:00.000Z" - }, - "events": [ - { - "uuid": "f8adc706-ed48-4102-88a5-b9858db41851", - "start": { - "$date": "2021-12-11T05:23:25.000Z" - }, - "end": { - "$date": "2021-12-11T05:40:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5fdd4fa5-074c-4fa8-a144-2b232c767aba", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T05:42:56.000Z" - }, - "end": { - "$date": "2021-12-11T06:04:16.000Z" - }, - "events": [ - { - "uuid": "06461318-1739-4ac9-9ebc-a712e32c1edd", - "start": { - "$date": "2021-12-11T05:42:56.000Z" - }, - "end": { - "$date": "2021-12-11T06:04:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "993c92bb-1c96-429f-af7f-85861cf1a5d9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T05:50:46.000Z" - }, - "end": { - "$date": "2021-12-11T05:54:06.000Z" - }, - "events": [ - { - "uuid": "b3b4d3b6-67ce-45c9-a15c-0d99c796c8eb", - "start": { - "$date": "2021-12-11T05:50:46.000Z" - }, - "end": { - "$date": "2021-12-11T05:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "28b79f15-0656-48ec-883a-358851bf07d8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T05:54:36.000Z" - }, - "end": { - "$date": "2021-12-11T06:33:37.000Z" - }, - "events": [ - { - "uuid": "88717017-5aab-4011-963a-96a86a3d3f0b", - "start": { - "$date": "2021-12-11T05:54:36.000Z" - }, - "end": { - "$date": "2021-12-11T06:33:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea657fb8-4f70-4d0a-a0bb-2675e58ac671", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T06:06:31.000Z" - }, - "end": { - "$date": "2021-12-11T06:20:23.000Z" - }, - "events": [ - { - "uuid": "1c72f1d4-88f1-4b6b-b0bb-97c7f68aaa77", - "start": { - "$date": "2021-12-11T06:06:31.000Z" - }, - "end": { - "$date": "2021-12-11T06:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "468d9e5c-6f1d-47ab-aa27-180f79dcff00", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T06:26:32.000Z" - }, - "end": { - "$date": "2021-12-11T06:33:28.000Z" - }, - "events": [ - { - "uuid": "8c92cdd4-2964-4cd2-8444-eae13d579e34", - "start": { - "$date": "2021-12-11T06:26:32.000Z" - }, - "end": { - "$date": "2021-12-11T06:33:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "610bfa09-8719-4c89-81da-8f8c8b6bdf98", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T06:43:39.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:44.000Z" - }, - "events": [ - { - "uuid": "571afbd5-7761-4f49-860f-f4bdf49c441c", - "start": { - "$date": "2021-12-11T06:43:39.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79d8481c-d02a-425a-bcbd-622c57542dae", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T06:43:46.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:42.000Z" - }, - "events": [ - { - "uuid": "ef3bf7a2-0587-469e-aab7-c57f84407653", - "start": { - "$date": "2021-12-11T06:43:46.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "381cb1a8-e8e1-4d05-8141-1e66cceb3ee4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T06:43:39.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:49.000Z" - }, - "events": [ - { - "uuid": "03eb3f75-7428-4889-b1d0-4361eb77bab9", - "start": { - "$date": "2021-12-11T06:43:39.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5674b73c-7fe9-49e1-80ef-7001f669d9e0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T06:43:41.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:45.000Z" - }, - "events": [ - { - "uuid": "3f753484-a0f4-4e4f-be1a-6321c34ec312", - "start": { - "$date": "2021-12-11T06:43:41.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5199fab-ef98-4476-ae95-fade42d61116", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T06:43:36.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:46.000Z" - }, - "events": [ - { - "uuid": "d0d5f700-dfca-4997-b064-f396a213074b", - "start": { - "$date": "2021-12-11T06:43:36.000Z" - }, - "end": { - "$date": "2021-12-11T06:59:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "8785d537-15bd-4974-943f-fb036899598e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-11T06:45:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:16:30.000Z" - }, - "events": [ - { - "uuid": "f4ff8afe-62ef-4ef8-b2f0-bf642379dd6f", - "start": { - "$date": "2021-12-11T06:45:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ede99578-3a24-4f3f-872a-6b2d22741fb3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T07:00:20.000Z" - }, - "end": { - "$date": "2021-12-11T07:01:24.000Z" - }, - "events": [ - { - "uuid": "8920328e-6fc0-457a-b2d4-4dedf324b8fc", - "start": { - "$date": "2021-12-11T07:00:20.000Z" - }, - "end": { - "$date": "2021-12-11T07:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be4f581c-9c8d-4e99-b891-34680fee1d88", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T07:03:05.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:57.000Z" - }, - "events": [ - { - "uuid": "c8f6ea8c-23d5-4dfc-b7a2-55d23572346c", - "start": { - "$date": "2021-12-11T07:03:05.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81262959-6762-4f86-8ff6-ddd542eff127", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T07:03:07.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:48.000Z" - }, - "events": [ - { - "uuid": "ef5577ed-ad9e-4438-a1f6-28b145ac047b", - "start": { - "$date": "2021-12-11T07:03:07.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88a88696-e6f5-4881-901b-b3dd40f6ff04", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T07:03:05.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:55.000Z" - }, - "events": [ - { - "uuid": "30e5080a-6e12-476e-ad52-b1bfac2e5f09", - "start": { - "$date": "2021-12-11T07:03:05.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ffc8486-cb3a-47c3-b75d-59026652ce6e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T07:03:01.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:52.000Z" - }, - "events": [ - { - "uuid": "fdc100ee-ced3-4ec5-abe8-02e7f901f14e", - "start": { - "$date": "2021-12-11T07:03:01.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a8899d5-a6cd-4084-a981-34833555c6de", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T07:03:11.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:56.000Z" - }, - "events": [ - { - "uuid": "5fdc54d0-779b-473f-a663-a64127267c13", - "start": { - "$date": "2021-12-11T07:03:11.000Z" - }, - "end": { - "$date": "2021-12-11T07:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4dbf542-5e1f-4317-b38f-9db926e0e1b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T07:19:26.000Z" - }, - "end": { - "$date": "2021-12-11T07:34:05.000Z" - }, - "events": [ - { - "uuid": "3823ddc4-d40d-468b-9bbf-92156dc00056", - "start": { - "$date": "2021-12-11T07:19:26.000Z" - }, - "end": { - "$date": "2021-12-11T07:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00d4e4a5-85d1-41b1-9f16-bd0f5102ea12", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T07:19:32.000Z" - }, - "end": { - "$date": "2021-12-11T07:33:58.000Z" - }, - "events": [ - { - "uuid": "441852a6-e2dc-436b-8650-bc8e5f86766d", - "start": { - "$date": "2021-12-11T07:19:32.000Z" - }, - "end": { - "$date": "2021-12-11T07:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c6cba03-822d-4866-b4ac-bdf1d23f3663", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T07:19:35.000Z" - }, - "end": { - "$date": "2021-12-11T07:34:00.000Z" - }, - "events": [ - { - "uuid": "47bcea8e-bd8a-4abf-8848-217368337fc8", - "start": { - "$date": "2021-12-11T07:19:35.000Z" - }, - "end": { - "$date": "2021-12-11T07:34:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8544cdc6-04fb-4837-99e7-241fc9a11756", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T07:19:32.000Z" - }, - "end": { - "$date": "2021-12-11T07:33:57.000Z" - }, - "events": [ - { - "uuid": "6903cff9-ea51-49fb-9106-cfcc24a80a45", - "start": { - "$date": "2021-12-11T07:19:32.000Z" - }, - "end": { - "$date": "2021-12-11T07:33:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e3d1c26-07d4-4fdb-815f-686b449908d2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T07:19:32.000Z" - }, - "end": { - "$date": "2021-12-11T07:34:01.000Z" - }, - "events": [ - { - "uuid": "45fe7804-0e7c-4e7a-b843-aab5edb5110b", - "start": { - "$date": "2021-12-11T07:19:32.000Z" - }, - "end": { - "$date": "2021-12-11T07:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "299e8294-5325-4195-b136-3d00d09dce56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T07:36:37.000Z" - }, - "end": { - "$date": "2021-12-11T08:04:01.000Z" - }, - "events": [ - { - "uuid": "7e98ff45-8733-4cf6-8f0e-d8aeb25fb145", - "start": { - "$date": "2021-12-11T07:36:37.000Z" - }, - "end": { - "$date": "2021-12-11T08:04:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb273180-c8f7-429e-a1ea-63217f8df8ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T07:36:37.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:53.000Z" - }, - "events": [ - { - "uuid": "6534187b-3fc2-4c60-bda6-bdf111ce9e8f", - "start": { - "$date": "2021-12-11T07:36:37.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e03583cd-c333-4999-824e-4443ffd9c7b0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T07:36:35.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:56.000Z" - }, - "events": [ - { - "uuid": "baff14db-8c33-404b-81dc-c163960b748c", - "start": { - "$date": "2021-12-11T07:36:35.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3c6e540-3f95-4382-af20-e888f56f2910", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T07:36:42.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:57.000Z" - }, - "events": [ - { - "uuid": "4caa881e-fb28-4438-9f4b-6b0e87193c9f", - "start": { - "$date": "2021-12-11T07:36:42.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3386f85a-1902-4c40-ab0e-e13888d1169c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T07:36:42.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:56.000Z" - }, - "events": [ - { - "uuid": "5d1c4d43-3040-4cf5-88af-da771e9738fb", - "start": { - "$date": "2021-12-11T07:36:42.000Z" - }, - "end": { - "$date": "2021-12-11T08:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e43176e2-e1a9-47f8-8599-112b5c96ca73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T08:06:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:42.000Z" - }, - "events": [ - { - "uuid": "1ec765ee-9ccb-47f5-bb24-a797ddc3f4e6", - "start": { - "$date": "2021-12-11T08:06:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2cb36f98-87ee-49ac-8300-4192cce08e90", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T08:06:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:29.000Z" - }, - "events": [ - { - "uuid": "b3c3b8ac-effe-4421-82d7-41caaf94a322", - "start": { - "$date": "2021-12-11T08:06:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9842f9d7-c6d0-4da8-9160-2cc37b2ba55e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T08:06:17.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:28.000Z" - }, - "events": [ - { - "uuid": "db965049-a2cd-44d5-b1ea-34bbfa34c824", - "start": { - "$date": "2021-12-11T08:06:17.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15c3fd50-09ba-4255-a01d-036bddde5700", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T08:06:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:32.000Z" - }, - "events": [ - { - "uuid": "b637d3de-71b9-40da-b0fa-0572d5cfc171", - "start": { - "$date": "2021-12-11T08:06:18.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adb38a05-30eb-4bfa-95de-a1b9bc42a354", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T08:06:16.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:36.000Z" - }, - "events": [ - { - "uuid": "1180ece6-2f2c-416b-922e-c9977e8cac34", - "start": { - "$date": "2021-12-11T08:06:16.000Z" - }, - "end": { - "$date": "2021-12-11T08:18:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f09f491-d846-4aad-89b1-87ace9192551", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T08:21:58.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:18.000Z" - }, - "events": [ - { - "uuid": "a830a59d-b78a-49de-ba9c-f8e64f650d54", - "start": { - "$date": "2021-12-11T08:21:58.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e9623cb-9ec9-44fa-8a03-114a040d7556", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T08:22:03.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:09.000Z" - }, - "events": [ - { - "uuid": "e4838c00-d069-4281-8514-c2c653e380a8", - "start": { - "$date": "2021-12-11T08:22:03.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "132a6990-3bab-4d37-9315-2b75db304895", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T08:21:57.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:17.000Z" - }, - "events": [ - { - "uuid": "40cb77e5-f458-434b-9b93-474e998113ac", - "start": { - "$date": "2021-12-11T08:21:57.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fb07219-2d65-41c8-a9d1-93f62dbf6608", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T08:21:53.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:20.000Z" - }, - "events": [ - { - "uuid": "d860852d-419f-4dcf-8025-feb136565f6c", - "start": { - "$date": "2021-12-11T08:21:53.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63a89dad-8505-4d1e-8322-4f475a313488", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T08:21:59.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:19.000Z" - }, - "events": [ - { - "uuid": "b9b8dbf3-b4e3-4407-9fce-dd051bc69005", - "start": { - "$date": "2021-12-11T08:21:59.000Z" - }, - "end": { - "$date": "2021-12-11T08:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "6417d60a-4e9e-4b22-bf52-09a90bef5265", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T08:29:06.000Z" - }, - "end": { - "$date": "2021-12-11T08:38:21.000Z" - }, - "events": [ - { - "uuid": "b1f3e875-d301-46cd-a30a-275b4ab709c1", - "start": { - "$date": "2021-12-11T08:29:06.000Z" - }, - "end": { - "$date": "2021-12-11T08:38:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cc25b2d-9ba5-47dd-82c6-ce4d809bc50d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T08:45:50.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:32.000Z" - }, - "events": [ - { - "uuid": "2e874a25-8696-46aa-ac11-0ffb69b50374", - "start": { - "$date": "2021-12-11T08:45:50.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f85de9ff-6977-4551-8788-7622683250c7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-11T08:45:43.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:24.000Z" - }, - "events": [ - { - "uuid": "35888148-c8b9-4a5c-a99d-6627a6dac208", - "start": { - "$date": "2021-12-11T08:45:43.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f95a3fbb-45a2-40b4-b9a7-5ada92167cfc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T08:45:47.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:22.000Z" - }, - "events": [ - { - "uuid": "dc7d3e35-20ad-4f1b-87f0-b4f0c4e3d763", - "start": { - "$date": "2021-12-11T08:45:47.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89bc4ec2-8652-498a-9709-a206a38be73a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T08:45:43.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:24.000Z" - }, - "events": [ - { - "uuid": "c84191fe-b14a-4ea8-bbb0-4051dba0e20a", - "start": { - "$date": "2021-12-11T08:45:43.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17ca0ce4-f900-41c3-8206-67e2736a51f4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-11T08:45:54.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:23.000Z" - }, - "events": [ - { - "uuid": "bd4e7201-0c28-46df-94ef-8b5d74944618", - "start": { - "$date": "2021-12-11T08:45:54.000Z" - }, - "end": { - "$date": "2021-12-11T09:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "de756fb1-6b43-4dd3-86a6-7d9659607de7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T09:16:48.000Z" - }, - "end": { - "$date": "2021-12-11T09:20:21.000Z" - }, - "events": [ - { - "uuid": "f657ab06-831e-45c5-8d8f-87b89f8d8d21", - "start": { - "$date": "2021-12-11T09:16:48.000Z" - }, - "end": { - "$date": "2021-12-11T09:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83592552-4067-4119-ae94-18a02596ec9b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T09:19:28.000Z" - }, - "end": { - "$date": "2021-12-11T09:33:03.000Z" - }, - "events": [ - { - "uuid": "5b627657-602d-4689-ba6a-047b89b144fc", - "start": { - "$date": "2021-12-11T09:19:28.000Z" - }, - "end": { - "$date": "2021-12-11T09:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "deec2016-a880-4809-8fb5-1beaa749bb53", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T09:19:18.000Z" - }, - "end": { - "$date": "2021-12-11T09:33:08.000Z" - }, - "events": [ - { - "uuid": "43aa900e-2c07-485b-ae86-35dd9f7ba721", - "start": { - "$date": "2021-12-11T09:19:18.000Z" - }, - "end": { - "$date": "2021-12-11T09:33:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "db8cdc11-26a6-412a-9480-75eb65fc48c5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T09:20:38.000Z" - }, - "end": { - "$date": "2021-12-11T10:05:10.000Z" - }, - "events": [ - { - "uuid": "01c05a9e-a17e-404c-b95c-fbd622099af8", - "start": { - "$date": "2021-12-11T09:20:38.000Z" - }, - "end": { - "$date": "2021-12-11T10:05:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89fe958f-d8c4-4bd4-81fb-785dedaee2f5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T09:35:03.000Z" - }, - "end": { - "$date": "2021-12-11T09:57:49.000Z" - }, - "events": [ - { - "uuid": "2a2d97f3-a7b8-49ba-9a46-4fb982579c9e", - "start": { - "$date": "2021-12-11T09:35:03.000Z" - }, - "end": { - "$date": "2021-12-11T09:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b93a98cf-8af9-4cec-985f-b621d54ab937", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T09:35:09.000Z" - }, - "end": { - "$date": "2021-12-11T09:57:54.000Z" - }, - "events": [ - { - "uuid": "5ac65101-ce0c-4304-a503-c2ef521957f4", - "start": { - "$date": "2021-12-11T09:35:09.000Z" - }, - "end": { - "$date": "2021-12-11T09:57:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46c54b4b-f53b-40c3-8ca6-6c7463a0f347", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T10:00:09.000Z" - }, - "end": { - "$date": "2021-12-11T10:16:09.000Z" - }, - "events": [ - { - "uuid": "36632158-d300-4f30-a625-a4921e726b2c", - "start": { - "$date": "2021-12-11T10:00:09.000Z" - }, - "end": { - "$date": "2021-12-11T10:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7a75c58-d15f-44b2-94cd-dae6e491d56d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T10:00:09.000Z" - }, - "end": { - "$date": "2021-12-11T10:16:00.000Z" - }, - "events": [ - { - "uuid": "50490c13-9035-4b38-9d4a-f76d72270ca9", - "start": { - "$date": "2021-12-11T10:00:09.000Z" - }, - "end": { - "$date": "2021-12-11T10:16:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b68c5e9e-b7e0-487d-9c5e-9b860ca443cf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T10:18:15.000Z" - }, - "end": { - "$date": "2021-12-11T10:41:30.000Z" - }, - "events": [ - { - "uuid": "4421cd32-2761-4902-a32d-c999c8617107", - "start": { - "$date": "2021-12-11T10:18:15.000Z" - }, - "end": { - "$date": "2021-12-11T10:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb8a65fb-f942-4845-964d-919b40fda193", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T10:18:20.000Z" - }, - "end": { - "$date": "2021-12-11T10:41:20.000Z" - }, - "events": [ - { - "uuid": "52f09abb-8f45-4e22-9622-7e91ea76818c", - "start": { - "$date": "2021-12-11T10:18:20.000Z" - }, - "end": { - "$date": "2021-12-11T10:41:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6364e22f-d81e-40e9-8138-2d194ecb4e73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-11T10:18:24.000Z" - }, - "end": { - "$date": "2021-12-11T11:05:55.000Z" - }, - "events": [ - { - "uuid": "a75eb69e-70fa-455e-9795-abd87e8936f2", - "start": { - "$date": "2021-12-11T10:18:24.000Z" - }, - "end": { - "$date": "2021-12-11T11:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee09e0cb-3e32-4189-b560-a2d508779dd1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T10:43:55.000Z" - }, - "end": { - "$date": "2021-12-11T11:01:15.000Z" - }, - "events": [ - { - "uuid": "5b07664b-6ee6-4d46-a139-8c11a573f9a0", - "start": { - "$date": "2021-12-11T10:43:55.000Z" - }, - "end": { - "$date": "2021-12-11T11:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "382e8940-1c96-476e-9aac-db5d872a0c4b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T10:43:55.000Z" - }, - "end": { - "$date": "2021-12-11T11:01:16.000Z" - }, - "events": [ - { - "uuid": "00a7a454-9ab8-4aab-9219-c351032b010e", - "start": { - "$date": "2021-12-11T10:43:55.000Z" - }, - "end": { - "$date": "2021-12-11T11:01:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72aa4e37-d4da-483e-b9dc-ba1ad903b4b8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T11:04:21.000Z" - }, - "end": { - "$date": "2021-12-11T11:21:21.000Z" - }, - "events": [ - { - "uuid": "85c9cda9-2c4a-459b-b6f1-0f44eac78450", - "start": { - "$date": "2021-12-11T11:04:21.000Z" - }, - "end": { - "$date": "2021-12-11T11:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce4d8547-cdc7-43cb-a2f3-4efa4084e4fc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T11:23:46.000Z" - }, - "end": { - "$date": "2021-12-11T11:42:47.000Z" - }, - "events": [ - { - "uuid": "83c2e708-6a1f-49e6-8083-69b1ee26d06c", - "start": { - "$date": "2021-12-11T11:23:46.000Z" - }, - "end": { - "$date": "2021-12-11T11:42:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa7feef0-ee27-43ce-add7-978a42fc8fcb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T11:44:47.000Z" - }, - "end": { - "$date": "2021-12-11T12:11:52.000Z" - }, - "events": [ - { - "uuid": "e8653639-418e-4095-bd4c-39697ee1eec7", - "start": { - "$date": "2021-12-11T11:44:47.000Z" - }, - "end": { - "$date": "2021-12-11T12:11:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e998a1f-1dd8-49be-83de-25ebcbe0cfd0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T12:14:38.000Z" - }, - "end": { - "$date": "2021-12-11T12:44:38.000Z" - }, - "events": [ - { - "uuid": "90683875-9853-4114-9e13-c4c58229e3e1", - "start": { - "$date": "2021-12-11T12:14:38.000Z" - }, - "end": { - "$date": "2021-12-11T12:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b2636f52-e617-4d72-b0ef-6f9b1e1476f3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-11T12:46:48.000Z" - }, - "end": { - "$date": "2021-12-11T12:59:13.000Z" - }, - "events": [ - { - "uuid": "41bd0c7e-a793-4f18-9d41-0220c9705e50", - "start": { - "$date": "2021-12-11T12:46:48.000Z" - }, - "end": { - "$date": "2021-12-11T12:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "17555f02-5816-462e-a9c1-522807ec4538", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T16:53:45.000Z" - }, - "end": { - "$date": "2021-12-11T17:17:23.000Z" - }, - "events": [ - { - "uuid": "17c6b5ae-43be-49f1-ad3f-fafc465a937b", - "start": { - "$date": "2021-12-11T16:53:45.000Z" - }, - "end": { - "$date": "2021-12-11T17:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "7f091c8d-ef16-4e31-bb0e-0c478a3333c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T18:32:45.000Z" - }, - "end": { - "$date": "2021-12-11T18:52:42.000Z" - }, - "events": [ - { - "uuid": "54525ced-5b16-4bd5-afac-0466b77cc973", - "start": { - "$date": "2021-12-11T18:32:45.000Z" - }, - "end": { - "$date": "2021-12-11T18:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5e4457c7-e08e-4687-acfc-b5a0f42ecd06", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T19:02:27.000Z" - }, - "end": { - "$date": "2021-12-11T20:17:27.000Z" - }, - "events": [ - { - "uuid": "634c57f9-12f7-4ffb-b1aa-f4ccee291734", - "start": { - "$date": "2021-12-11T19:02:27.000Z" - }, - "end": { - "$date": "2021-12-11T20:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fdec7f20-49a7-402a-a662-1c3c5787d3be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T19:17:52.000Z" - }, - "end": { - "$date": "2021-12-11T19:48:09.000Z" - }, - "events": [ - { - "uuid": "117174ba-f37c-426b-8fcb-6224186213e2", - "start": { - "$date": "2021-12-11T19:17:52.000Z" - }, - "end": { - "$date": "2021-12-11T19:48:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "35864783-7818-4008-addc-0c23fb440097", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T19:36:09.000Z" - }, - "end": { - "$date": "2021-12-11T19:40:00.000Z" - }, - "events": [ - { - "uuid": "a972c8ae-689e-40c4-a78e-5756568fff1b", - "start": { - "$date": "2021-12-11T19:36:09.000Z" - }, - "end": { - "$date": "2021-12-11T19:40:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "4666feaf-164c-4fcc-afa1-f025b02cfc9c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T19:49:01.000Z" - }, - "end": { - "$date": "2021-12-11T19:59:57.000Z" - }, - "events": [ - { - "uuid": "d6bf8f41-d890-4eec-a8f5-63cb797e8b13", - "start": { - "$date": "2021-12-11T19:49:01.000Z" - }, - "end": { - "$date": "2021-12-11T19:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "b742933e-407b-4ff0-9455-c0d4d39302cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T20:02:01.000Z" - }, - "end": { - "$date": "2021-12-11T21:49:44.000Z" - }, - "events": [ - { - "uuid": "0a572b0c-aa45-42b9-b549-cd403d8e4021", - "start": { - "$date": "2021-12-11T20:02:01.000Z" - }, - "end": { - "$date": "2021-12-11T21:49:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f0e6e3e4-c266-434a-80e4-4f98b3c7e488", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T20:02:12.000Z" - }, - "end": { - "$date": "2021-12-11T20:27:55.000Z" - }, - "events": [ - { - "uuid": "e7470886-93d4-42b3-bac4-449652b79cf2", - "start": { - "$date": "2021-12-11T20:02:12.000Z" - }, - "end": { - "$date": "2021-12-11T20:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f32330d-281d-4433-85a9-6ce729917d70", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T20:09:35.000Z" - }, - "end": { - "$date": "2021-12-11T20:48:14.000Z" - }, - "events": [ - { - "uuid": "53259a96-df5f-4da0-a367-2ae5572e05ea", - "start": { - "$date": "2021-12-11T20:09:35.000Z" - }, - "end": { - "$date": "2021-12-11T20:48:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f2187c5a-2117-4851-a24a-4cf277442664", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T20:28:16.000Z" - }, - "end": { - "$date": "2021-12-11T21:30:34.000Z" - }, - "events": [ - { - "uuid": "799cf48a-db7d-402b-8867-a5bcc9947a08", - "start": { - "$date": "2021-12-11T20:28:16.000Z" - }, - "end": { - "$date": "2021-12-11T21:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e06c8487-2a58-43bf-88ad-92bc38d4f219", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T21:03:19.000Z" - }, - "end": { - "$date": "2021-12-11T21:45:29.000Z" - }, - "events": [ - { - "uuid": "29347087-ccaa-4756-96e4-69b75b87f407", - "start": { - "$date": "2021-12-11T21:03:19.000Z" - }, - "end": { - "$date": "2021-12-11T21:45:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d97f1ec-1f5c-49d4-8fae-4d02ea13e40d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T21:16:23.000Z" - }, - "end": { - "$date": "2021-12-11T21:42:52.000Z" - }, - "events": [ - { - "uuid": "1ef46bc7-9ae6-4d95-ac0f-406ba480064e", - "start": { - "$date": "2021-12-11T21:16:23.000Z" - }, - "end": { - "$date": "2021-12-11T21:42:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29cd5dcc-e1b8-4ebd-86ad-27b7f397c831", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T21:46:28.000Z" - }, - "end": { - "$date": "2021-12-11T22:06:03.000Z" - }, - "events": [ - { - "uuid": "5c7b6681-5c61-4795-8e3c-d42eb4565a7d", - "start": { - "$date": "2021-12-11T21:46:28.000Z" - }, - "end": { - "$date": "2021-12-11T22:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ac275c0-b071-4487-b871-092ca43333aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T21:52:05.000Z" - }, - "end": { - "$date": "2021-12-11T22:25:31.000Z" - }, - "events": [ - { - "uuid": "1a6fa0a6-f9b0-4c98-85af-3910cf4c05bb", - "start": { - "$date": "2021-12-11T21:52:05.000Z" - }, - "end": { - "$date": "2021-12-11T22:25:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d63d8ee-2f9b-47ae-8339-4bc1e03b8e63", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-11T21:49:49.000Z" - }, - "end": { - "$date": "2021-12-11T22:48:20.000Z" - }, - "events": [ - { - "uuid": "d99e6556-f657-4501-be2e-25d3648ddaf0", - "start": { - "$date": "2021-12-11T21:49:49.000Z" - }, - "end": { - "$date": "2021-12-11T22:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "abf77f97-6d59-48b7-a811-0b12d134a871", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T21:50:01.000Z" - }, - "end": { - "$date": "2021-12-11T22:20:32.000Z" - }, - "events": [ - { - "uuid": "2a071cc2-cd1b-4b10-b9e2-2bdaf09d6554", - "start": { - "$date": "2021-12-11T21:50:01.000Z" - }, - "end": { - "$date": "2021-12-11T22:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "afa4d0c4-9d60-42b8-bc90-8b14113fa852", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-11T22:09:04.000Z" - }, - "end": { - "$date": "2021-12-12T04:52:52.000Z" - }, - "events": [ - { - "uuid": "84547d98-a54e-48a6-9496-0cac327022ef", - "start": { - "$date": "2021-12-11T22:09:04.000Z" - }, - "end": { - "$date": "2021-12-12T03:28:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a119adec-8b97-4e26-b9f0-ec1ba6a2f1b0", - "start": { - "$date": "2021-12-12T03:28:04.000Z" - }, - "end": { - "$date": "2021-12-12T03:30:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "86f8402c-24ee-4452-8e7c-fc33d180f1f7", - "start": { - "$date": "2021-12-12T03:30:04.000Z" - }, - "end": { - "$date": "2021-12-12T04:52:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3763c920-a9b6-4b35-af0d-70fea5efdf1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T22:51:03.000Z" - }, - "end": { - "$date": "2021-12-11T23:22:28.000Z" - }, - "events": [ - { - "uuid": "7d8c1713-0b22-4b68-a26b-fdc404e05821", - "start": { - "$date": "2021-12-11T22:51:03.000Z" - }, - "end": { - "$date": "2021-12-11T23:22:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab00d432-0f96-4328-b2db-918ed5d9a9a9", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-11T23:20:02.000Z" - }, - "end": { - "$date": "2021-12-11T23:20:54.000Z" - }, - "events": [ - { - "uuid": "e3f7ea63-cdc0-4b3a-adbd-591682e0d313", - "start": { - "$date": "2021-12-11T23:20:02.000Z" - }, - "end": { - "$date": "2021-12-11T23:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6e4ba56d-55c0-4892-b2fe-af7c9ffea5f5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T04:23:57.000Z" - }, - "end": { - "$date": "2021-12-12T05:19:15.000Z" - }, - "events": [ - { - "uuid": "7af2d73f-dd65-4a41-97d1-1bef8e9f21cb", - "start": { - "$date": "2021-12-12T04:23:57.000Z" - }, - "end": { - "$date": "2021-12-12T07:46:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb14c3b7-e134-43b9-b6b2-e4e8636eeccf", - "start": { - "$date": "2021-12-12T07:46:57.000Z" - }, - "end": { - "$date": "2021-12-12T08:22:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c92f667-37d3-433a-8e74-b890eff642c8", - "start": { - "$date": "2021-12-12T08:22:57.000Z" - }, - "end": { - "$date": "2021-12-12T08:24:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6d8f070-1cb1-437b-a485-ac6648340bd6", - "start": { - "$date": "2021-12-12T08:24:57.000Z" - }, - "end": { - "$date": "2021-12-12T09:08:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4ceb574-91a3-4234-ac1d-9b93d689adf2", - "start": { - "$date": "2021-12-12T09:08:57.000Z" - }, - "end": { - "$date": "2021-12-12T09:10:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "65c1c12d-801a-4b1a-a7d3-5946fc00bcec", - "start": { - "$date": "2021-12-12T09:10:57.000Z" - }, - "end": { - "$date": "2021-12-12T09:13:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5e50c64f-5a3f-42a9-b551-f761b03da9b5", - "start": { - "$date": "2021-12-12T09:13:57.000Z" - }, - "end": { - "$date": "2021-12-12T09:15:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "90854778-09dc-4d8b-a4d6-f0521e05e558", - "start": { - "$date": "2021-12-12T09:15:57.000Z" - }, - "end": { - "$date": "2021-12-12T09:35:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7a6b842-9089-4be3-9b05-dd25cb99bacd", - "start": { - "$date": "2021-12-12T09:35:57.000Z" - }, - "end": { - "$date": "2021-12-12T05:19:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "60d003eb-5eae-411e-83df-81f79ca7435d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T23:21:00.000Z" - }, - "end": { - "$date": "2021-12-11T23:33:21.000Z" - }, - "events": [ - { - "uuid": "ac05fc89-71f9-4a2d-87d0-6e650b7f60be", - "start": { - "$date": "2021-12-11T23:21:00.000Z" - }, - "end": { - "$date": "2021-12-11T23:33:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2ff53d6b-0908-480f-befa-e209c7105f4d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-11T23:37:40.000Z" - }, - "end": { - "$date": "2021-12-12T00:21:18.000Z" - }, - "events": [ - { - "uuid": "b2bfbd8d-05d6-4b4d-8f7f-0188814980c2", - "start": { - "$date": "2021-12-11T23:37:40.000Z" - }, - "end": { - "$date": "2021-12-12T00:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6db3665e-c4ea-490c-bdf2-6708d27cc0be", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T23:27:08.000Z" - }, - "end": { - "$date": "2021-12-11T23:53:59.000Z" - }, - "events": [ - { - "uuid": "e90ebc50-1938-420a-aad5-138f0f3fbe86", - "start": { - "$date": "2021-12-11T23:27:08.000Z" - }, - "end": { - "$date": "2021-12-11T23:53:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebd13a91-2709-4f3e-9f1f-c4a87e082908", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-11T23:24:27.000Z" - }, - "end": { - "$date": "2021-12-11T23:39:02.000Z" - }, - "events": [ - { - "uuid": "8e77fdd7-af1a-4d1d-ad2e-6c56a746dd42", - "start": { - "$date": "2021-12-11T23:24:27.000Z" - }, - "end": { - "$date": "2021-12-11T23:39:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3cab8b74-a81c-4626-9c30-40921846957a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-11T23:33:37.000Z" - }, - "end": { - "$date": "2021-12-11T23:51:17.000Z" - }, - "events": [ - { - "uuid": "cb03cc3f-db46-4647-b5e5-7d87c4d1a8aa", - "start": { - "$date": "2021-12-11T23:33:37.000Z" - }, - "end": { - "$date": "2021-12-11T23:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67e42774-9a28-4b34-911a-c300840c45bc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-11T23:58:39.000Z" - }, - "end": { - "$date": "2021-12-12T00:28:57.000Z" - }, - "events": [ - { - "uuid": "2f0ceab0-7bc5-4c36-bf79-fa83861a8cde", - "start": { - "$date": "2021-12-11T23:58:39.000Z" - }, - "end": { - "$date": "2021-12-12T00:28:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3ab7fdc8-94a5-4248-9466-663572c544e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T00:12:02.000Z" - }, - "end": { - "$date": "2021-12-12T00:43:46.000Z" - }, - "events": [ - { - "uuid": "3fea5d93-bbc4-4628-9487-2f1cecdebc79", - "start": { - "$date": "2021-12-12T00:12:02.000Z" - }, - "end": { - "$date": "2021-12-12T00:43:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7036a143-7cc9-4373-9546-f97ea8c2e5d9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T00:19:16.000Z" - }, - "end": { - "$date": "2021-12-12T00:24:21.000Z" - }, - "events": [ - { - "uuid": "d6075413-94a4-43ea-a796-48a8e83abde5", - "start": { - "$date": "2021-12-12T00:19:16.000Z" - }, - "end": { - "$date": "2021-12-12T00:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7cb95441-8bc9-4685-96b0-4f1059187c6e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-12T00:23:16.000Z" - }, - "end": { - "$date": "2021-12-12T02:10:22.000Z" - }, - "events": [ - { - "uuid": "ffe5c97e-d105-471c-a734-19a2c969ddfe", - "start": { - "$date": "2021-12-12T00:23:16.000Z" - }, - "end": { - "$date": "2021-12-12T02:10:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "28544f29-a38d-482c-a080-14c6e31381a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T00:24:31.000Z" - }, - "end": { - "$date": "2021-12-12T01:37:36.000Z" - }, - "events": [ - { - "uuid": "378b4573-9d5d-4537-820f-d2c25eb61237", - "start": { - "$date": "2021-12-12T00:24:31.000Z" - }, - "end": { - "$date": "2021-12-12T01:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c29d6d8-1bad-4393-9102-848a53cc3d3a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-12T00:28:29.000Z" - }, - "end": { - "$date": "2021-12-12T03:31:15.000Z" - }, - "events": [ - { - "uuid": "f3762922-f92a-449f-959a-c93bcd97794a", - "start": { - "$date": "2021-12-12T00:28:29.000Z" - }, - "end": { - "$date": "2021-12-12T01:32:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29dab73f-ab6d-4076-9cdc-5af536999df0", - "start": { - "$date": "2021-12-12T01:32:29.000Z" - }, - "end": { - "$date": "2021-12-12T01:35:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd3ac7d5-64a5-4991-b6c0-bbe6137619f4", - "start": { - "$date": "2021-12-12T01:35:29.000Z" - }, - "end": { - "$date": "2021-12-12T01:38:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "966eef72-ecc0-4c07-bdfb-bfbaddaec08d", - "start": { - "$date": "2021-12-12T01:38:29.000Z" - }, - "end": { - "$date": "2021-12-12T02:07:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5755e750-cbb0-45f5-8209-c87b5d2e3558", - "start": { - "$date": "2021-12-12T02:07:29.000Z" - }, - "end": { - "$date": "2021-12-12T03:31:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36e08698-ecbc-46cf-86e1-623aae6083d3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T00:33:37.000Z" - }, - "end": { - "$date": "2021-12-12T00:55:33.000Z" - }, - "events": [ - { - "uuid": "c7397a6a-4640-4e3e-9f85-c7be8ab1bb92", - "start": { - "$date": "2021-12-12T00:33:37.000Z" - }, - "end": { - "$date": "2021-12-12T00:55:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "df46bbe5-25e3-4058-87b8-8df669afcd3b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-12T00:38:32.000Z" - }, - "end": { - "$date": "2021-12-12T04:54:56.000Z" - }, - "events": [ - { - "uuid": "9e088793-00ae-4750-9264-e6a60106927d", - "start": { - "$date": "2021-12-12T00:38:32.000Z" - }, - "end": { - "$date": "2021-12-12T04:54:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9576213f-edea-4b76-9ef8-31592034d4d8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T01:02:35.000Z" - }, - "end": { - "$date": "2021-12-12T01:33:50.000Z" - }, - "events": [ - { - "uuid": "e9581358-4471-4403-9a8a-7b30f193bb67", - "start": { - "$date": "2021-12-12T01:02:35.000Z" - }, - "end": { - "$date": "2021-12-12T01:33:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "bc6781c0-5415-45e4-ab01-a33e48f1bdee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T01:05:32.000Z" - }, - "end": { - "$date": "2021-12-12T01:11:33.000Z" - }, - "events": [ - { - "uuid": "9411c8d6-9c94-4a13-99e9-a34b98e9b5d2", - "start": { - "$date": "2021-12-12T01:05:32.000Z" - }, - "end": { - "$date": "2021-12-12T01:11:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "0a82d675-3d02-4c83-8940-726798c323e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T01:11:58.000Z" - }, - "end": { - "$date": "2021-12-12T01:13:48.000Z" - }, - "events": [ - { - "uuid": "b084ef75-ec30-4916-b815-518635c95df3", - "start": { - "$date": "2021-12-12T01:11:58.000Z" - }, - "end": { - "$date": "2021-12-12T01:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1f6772b4-a28a-4b55-b7ed-02ab98fafb5c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2021-12-12T01:15:11.000Z" - }, - "end": { - "$date": "2021-12-12T01:54:23.000Z" - }, - "events": [ - { - "uuid": "1c78bb8a-db28-4f9f-9708-5a610e5ccf93", - "start": { - "$date": "2021-12-12T01:15:11.000Z" - }, - "end": { - "$date": "2021-12-12T01:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7521642f-81f8-49b3-a527-4b81afd957a7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T01:38:08.000Z" - }, - "end": { - "$date": "2021-12-12T02:08:54.000Z" - }, - "events": [ - { - "uuid": "6dfd77f2-514f-4230-bf5f-27f1cdf16735", - "start": { - "$date": "2021-12-12T01:38:08.000Z" - }, - "end": { - "$date": "2021-12-12T02:08:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "221985dd-237c-4b39-806f-ce662a478239", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T02:10:12.000Z" - }, - "end": { - "$date": "2021-12-12T02:17:17.000Z" - }, - "events": [ - { - "uuid": "6ad043ca-c156-412d-8c0a-6ab9d49e5491", - "start": { - "$date": "2021-12-12T02:10:12.000Z" - }, - "end": { - "$date": "2021-12-12T02:17:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "762b0032-50c2-418a-b5d2-0b53d4cbbd25", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-12T02:52:32.000Z" - }, - "end": { - "$date": "2021-12-12T03:01:08.000Z" - }, - "events": [ - { - "uuid": "20a1be74-94d9-4188-b4f2-92b9133f343d", - "start": { - "$date": "2021-12-12T02:52:32.000Z" - }, - "end": { - "$date": "2021-12-12T03:01:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "abf7099c-146a-4add-93bf-78ca0fb3c25a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T02:56:00.000Z" - }, - "end": { - "$date": "2021-12-12T03:55:12.000Z" - }, - "events": [ - { - "uuid": "83de6683-816a-446f-9547-abe13d1ae330", - "start": { - "$date": "2021-12-12T02:56:00.000Z" - }, - "end": { - "$date": "2021-12-12T03:55:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "81cfb93d-7fbe-4b58-b40f-0e2f3df3c04d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-12T03:03:08.000Z" - }, - "end": { - "$date": "2021-12-12T05:45:08.000Z" - }, - "events": [ - { - "uuid": "e59dd0bd-189c-4e75-ab02-367c74508f91", - "start": { - "$date": "2021-12-12T03:03:08.000Z" - }, - "end": { - "$date": "2021-12-12T05:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfe3d07a-baac-4d6a-bb5c-2f503eb4f015", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T03:23:26.000Z" - }, - "end": { - "$date": "2021-12-12T03:44:37.000Z" - }, - "events": [ - { - "uuid": "383da42f-0c81-449d-8a0f-b80ece39839e", - "start": { - "$date": "2021-12-12T03:23:26.000Z" - }, - "end": { - "$date": "2021-12-12T03:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5b8a1ae0-6592-4539-a30d-63b984368fad", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-12T05:27:29.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:35.000Z" - }, - "events": [ - { - "uuid": "109b7cad-8970-400c-b8f7-9d30810411f8", - "start": { - "$date": "2021-12-12T05:27:29.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2307f10-68ba-4858-951a-a0c87da7e33c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-12T03:33:56.000Z" - }, - "end": { - "$date": "2021-12-12T05:45:36.000Z" - }, - "events": [ - { - "uuid": "7451f8b0-a2f7-414a-8347-10723cb0b156", - "start": { - "$date": "2021-12-12T03:33:56.000Z" - }, - "end": { - "$date": "2021-12-12T05:45:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e978b9a0-dcf9-47e9-b99d-63fac5868d2a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-12T03:58:58.000Z" - }, - "end": { - "$date": "2021-12-12T04:31:57.000Z" - }, - "events": [ - { - "uuid": "6e5bc408-a456-4648-b1f1-58bb798fc1ea", - "start": { - "$date": "2021-12-12T03:58:58.000Z" - }, - "end": { - "$date": "2021-12-12T04:31:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "322046e8-273a-4e08-86ac-5ef106dc1252", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T04:22:24.000Z" - }, - "end": { - "$date": "2021-12-12T04:28:14.000Z" - }, - "events": [ - { - "uuid": "7079b544-304e-4380-8c67-7f0d25ea37e3", - "start": { - "$date": "2021-12-12T04:22:24.000Z" - }, - "end": { - "$date": "2021-12-12T04:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bc523156-aa57-4e7e-bbe5-0da78f232d13", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T04:28:30.000Z" - }, - "end": { - "$date": "2021-12-12T04:57:14.000Z" - }, - "events": [ - { - "uuid": "30e4e642-05f2-4e2b-896e-f4ee860c762b", - "start": { - "$date": "2021-12-12T04:28:30.000Z" - }, - "end": { - "$date": "2021-12-12T04:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77f09362-9eb9-446d-b8c5-1e730fe24489", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-12T04:37:23.000Z" - }, - "end": { - "$date": "2021-12-12T05:11:36.000Z" - }, - "events": [ - { - "uuid": "e7f91e3d-13ab-490a-b36e-c2fc7cb2967b", - "start": { - "$date": "2021-12-12T04:37:23.000Z" - }, - "end": { - "$date": "2021-12-12T05:11:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a349a27-e7bf-4fd7-aa7f-a47a12784bb8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T04:58:35.000Z" - }, - "end": { - "$date": "2021-12-12T05:56:08.000Z" - }, - "events": [ - { - "uuid": "4654ef4b-e564-4e07-9204-af53d5d6de99", - "start": { - "$date": "2021-12-12T04:58:35.000Z" - }, - "end": { - "$date": "2021-12-12T05:56:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2c933360-8470-4ad8-88c8-a8727cd88917", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T04:59:25.000Z" - }, - "end": { - "$date": "2021-12-12T05:22:26.000Z" - }, - "events": [ - { - "uuid": "5b3e2686-55fc-4edf-8f00-3a9a2cf550ab", - "start": { - "$date": "2021-12-12T04:59:25.000Z" - }, - "end": { - "$date": "2021-12-12T05:22:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea6cd183-267d-4f30-b684-27346e9650ae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T05:01:23.000Z" - }, - "end": { - "$date": "2021-12-12T05:17:42.000Z" - }, - "events": [ - { - "uuid": "25be53d4-dd87-4a46-a8a1-f43b4abfa3b0", - "start": { - "$date": "2021-12-12T05:01:23.000Z" - }, - "end": { - "$date": "2021-12-12T05:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea4c6873-09eb-4c99-b038-9b147bf1eb43", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T05:18:20.000Z" - }, - "end": { - "$date": "2021-12-12T05:19:51.000Z" - }, - "events": [ - { - "uuid": "05ec40da-cc6e-414e-9932-417ee9c4a702", - "start": { - "$date": "2021-12-12T05:18:20.000Z" - }, - "end": { - "$date": "2021-12-12T05:19:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f9969fa5-5afc-4d6e-837d-0658ada9bb94", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T05:20:09.000Z" - }, - "end": { - "$date": "2021-12-12T05:21:36.000Z" - }, - "events": [ - { - "uuid": "14349017-f21a-45ef-b926-f3ae0a6a31ef", - "start": { - "$date": "2021-12-12T05:20:09.000Z" - }, - "end": { - "$date": "2021-12-12T05:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15a8cb0d-5e74-4c22-8b30-893b9243d5c8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T05:27:31.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:36.000Z" - }, - "events": [ - { - "uuid": "de3a4990-1a83-4193-bddf-b95badffdd7b", - "start": { - "$date": "2021-12-12T05:27:31.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4046a1fa-6115-4c11-9524-11431166a75b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T05:55:26.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:38.000Z" - }, - "events": [ - { - "uuid": "734808f0-0d23-49fe-a728-7d29eac1040f", - "start": { - "$date": "2021-12-12T05:55:26.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5149e360-eeaa-48f9-8db7-cdbd43526d95", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-12T05:27:29.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:29.000Z" - }, - "events": [ - { - "uuid": "fb99b450-757d-4666-941d-974420b64e7d", - "start": { - "$date": "2021-12-12T05:27:29.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fe8f87b-764a-4ab6-8937-e940e8f8a0e1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-12T05:27:33.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:33.000Z" - }, - "events": [ - { - "uuid": "ac8836ef-1e02-4928-a4f9-868f5a6c7695", - "start": { - "$date": "2021-12-12T05:27:33.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d476072-9e42-4361-a8e8-d83b0a263063", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T05:27:38.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:37.000Z" - }, - "events": [ - { - "uuid": "6cd7ba81-d8d1-48fd-8c2d-aa1ee6226a76", - "start": { - "$date": "2021-12-12T05:27:38.000Z" - }, - "end": { - "$date": "2021-12-12T05:55:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "79ed4b94-4e81-41bd-970a-9bb024738003", - "uuid": "7d83f774-b9af-4169-a0ac-8d8944f229c1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-12T05:27:06.000Z" - }, - "end": { - "$date": "2021-12-12T05:41:54.000Z" - }, - "events": [ - { - "uuid": "660cda9b-12c6-4054-ad7c-d7dac43d5999", - "start": { - "$date": "2021-12-12T05:27:06.000Z" - }, - "end": { - "$date": "2021-12-12T05:41:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a42f7834-2df3-4d1e-abf1-5d564d75f04f", - "uuid": "d90528d1-1687-468b-8e4c-a587b700f4ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-12T05:44:41.000Z" - }, - "end": { - "$date": "2021-12-12T07:41:56.000Z" - }, - "events": [ - { - "uuid": "e87342b9-cb1d-40fa-88be-ece3f089ffd1", - "start": { - "$date": "2021-12-12T05:44:41.000Z" - }, - "end": { - "$date": "2021-12-12T07:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "36909aeb-f196-4611-8724-3d727f761247", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-12T07:32:00.000Z" - }, - "end": { - "$date": "2021-12-12T07:42:37.000Z" - }, - "events": [ - { - "uuid": "6e9b6d28-2cb1-4318-9f6d-51ce61fa9e88", - "start": { - "$date": "2021-12-12T07:32:00.000Z" - }, - "end": { - "$date": "2021-12-12T07:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f61c816a-f89b-4867-8dff-aada58813f8c", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-12T05:46:05.000Z" - }, - "end": { - "$date": "2021-12-12T07:23:35.000Z" - }, - "events": [ - { - "uuid": "d6098ac5-990f-45a8-bdc7-2cc3d0be8c56", - "start": { - "$date": "2021-12-12T05:46:05.000Z" - }, - "end": { - "$date": "2021-12-12T07:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b23bc55a-e2e3-4c73-8800-e6c30d73b393", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-12T05:53:04.000Z" - }, - "end": { - "$date": "2021-12-12T06:47:39.000Z" - }, - "events": [ - { - "uuid": "89b8d6c4-8d79-45ad-8be1-58cbc2614e00", - "start": { - "$date": "2021-12-12T05:53:04.000Z" - }, - "end": { - "$date": "2021-12-12T06:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f69fe434-6bce-4c2f-8203-5c4dd9b77642", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:50.000Z" - }, - "events": [ - { - "uuid": "351df509-8982-46ed-9435-b3f732446c25", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc10e2ec-32c7-4e7d-a459-000b1abfaf8d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T06:01:00.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:47.000Z" - }, - "events": [ - { - "uuid": "5947f8ca-6b40-4d79-a6b8-3439606c54e1", - "start": { - "$date": "2021-12-12T06:01:00.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d2beb3e-bfc4-44b5-9bb2-a4c2ebec0651", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:48.000Z" - }, - "events": [ - { - "uuid": "452e985e-1859-4f3c-b8cb-32a9e6b85f2f", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a39d01d-760a-453b-88ba-75a50ea828e2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T06:01:13.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:51.000Z" - }, - "events": [ - { - "uuid": "1c901c15-b6eb-49ac-a073-c968503a9270", - "start": { - "$date": "2021-12-12T06:01:13.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8175e39d-c147-467d-91d7-d0aebc685dee", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:49.000Z" - }, - "events": [ - { - "uuid": "1f17ffac-e462-421a-a25b-85ed01a0d2da", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aea95097-205a-4ed9-8fd3-2651e5ee394b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:50.000Z" - }, - "events": [ - { - "uuid": "8274f044-dc31-4eac-956d-893751347035", - "start": { - "$date": "2021-12-12T06:01:01.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87153338-78f1-41ee-bb4c-b8579404e361", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T06:01:00.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:52.000Z" - }, - "events": [ - { - "uuid": "d68a4689-9cc4-48b5-a651-c83a5bedeece", - "start": { - "$date": "2021-12-12T06:01:00.000Z" - }, - "end": { - "$date": "2021-12-12T06:01:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23140d98-b445-449c-b7db-09654dded1e3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T06:06:00.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:14.000Z" - }, - "events": [ - { - "uuid": "e60f325f-a86b-4ed3-ac20-fe9afbe8f398", - "start": { - "$date": "2021-12-12T06:06:00.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8641c54f-ea66-4e68-829d-3cf5b286e03a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T06:29:02.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:08.000Z" - }, - "events": [ - { - "uuid": "7d2e8340-f983-458c-96f2-60bb033120e3", - "start": { - "$date": "2021-12-12T06:29:02.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c67a1b83-8184-49cc-bd5f-0a9ec694f9df", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-12T06:06:02.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:02.000Z" - }, - "events": [ - { - "uuid": "bf9a96b4-93fc-49ea-b324-df36b29db164", - "start": { - "$date": "2021-12-12T06:06:02.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44baf914-7e7f-409b-9b6a-94ee5fc88381", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T06:05:58.000Z" - }, - "end": { - "$date": "2021-12-12T06:28:59.000Z" - }, - "events": [ - { - "uuid": "87e619b1-45a6-4f8a-aee9-20670ed6f128", - "start": { - "$date": "2021-12-12T06:05:58.000Z" - }, - "end": { - "$date": "2021-12-12T06:28:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "753fd968-9410-4a4e-a560-b0dff0d5d29e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-12T06:05:59.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:05.000Z" - }, - "events": [ - { - "uuid": "d8c85df4-4253-4e37-9c2a-1a67792015d6", - "start": { - "$date": "2021-12-12T06:05:59.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71107596-08c7-46d4-86ad-27a63a9d1f89", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T06:29:06.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:06.000Z" - }, - "events": [ - { - "uuid": "cd70d246-9ae3-44fd-82a7-eddff13fc105", - "start": { - "$date": "2021-12-12T06:29:06.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30f2886d-1661-43a6-9b5f-ea3bf01ea9bd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T06:06:03.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:00.000Z" - }, - "events": [ - { - "uuid": "dafa53b1-9c05-4881-9bc0-a4d40d94f1ec", - "start": { - "$date": "2021-12-12T06:06:03.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd27ea66-6986-4346-ac06-54e35c67e9f7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-12T06:06:05.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:07.000Z" - }, - "events": [ - { - "uuid": "44381353-04a0-4ac2-a0aa-f053b796898f", - "start": { - "$date": "2021-12-12T06:06:05.000Z" - }, - "end": { - "$date": "2021-12-12T06:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5f5e1640-3fee-477d-9a42-2f6966e14d4b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T06:08:57.000Z" - }, - "end": { - "$date": "2021-12-12T06:30:45.000Z" - }, - "events": [ - { - "uuid": "ad681fc7-0668-4a6f-9725-360e2cae7a12", - "start": { - "$date": "2021-12-12T06:08:57.000Z" - }, - "end": { - "$date": "2021-12-12T06:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ed68a8c-b73b-4f81-9e5d-1287d79514d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T06:32:07.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:13.000Z" - }, - "events": [ - { - "uuid": "e341f454-e9bc-432e-aedd-27b16f778eb5", - "start": { - "$date": "2021-12-12T06:32:07.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4d8a2b6-9505-408e-92f9-d576408cf9f4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T06:56:03.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:14.000Z" - }, - "events": [ - { - "uuid": "802929f4-4b70-415e-8aae-c25d389530f3", - "start": { - "$date": "2021-12-12T06:56:03.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4a3345b-950a-4d78-8fb7-ad5da5548cfb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T06:32:09.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:12.000Z" - }, - "events": [ - { - "uuid": "746b21ab-4bbf-469e-9825-8af7c0cfa298", - "start": { - "$date": "2021-12-12T06:32:09.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ff9f880-c3db-4ef9-a5c0-bee395a79697", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-12T06:32:02.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:13.000Z" - }, - "events": [ - { - "uuid": "c99c71ef-3b6f-473b-a9f4-bc72200c44ef", - "start": { - "$date": "2021-12-12T06:32:02.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1d5545b-3ed5-4119-b9f9-83dcec61b41a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T06:32:09.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:05.000Z" - }, - "events": [ - { - "uuid": "02f7e5a4-0abf-428d-af63-8f428ec1d170", - "start": { - "$date": "2021-12-12T06:32:09.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf90e262-8a78-4fc2-8926-ee6e86691d6f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T06:31:58.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:04.000Z" - }, - "events": [ - { - "uuid": "703cf985-da30-4839-bad3-329a99b2a8fb", - "start": { - "$date": "2021-12-12T06:31:58.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c2304d8-d8fa-4525-80d3-eea47d89d56e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-12T06:32:06.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:01.000Z" - }, - "events": [ - { - "uuid": "1b9854f4-ae27-4c2b-9f0d-159c08d085eb", - "start": { - "$date": "2021-12-12T06:32:06.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed89824f-1fbc-4ce2-b838-b738d761d2e8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-12T06:32:05.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:10.000Z" - }, - "events": [ - { - "uuid": "7d01e423-5be0-4a31-ba09-ddc355aa9090", - "start": { - "$date": "2021-12-12T06:32:05.000Z" - }, - "end": { - "$date": "2021-12-12T06:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b4905fe-cf7f-4160-a518-b790374dc6ca", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T06:37:55.000Z" - }, - "end": { - "$date": "2021-12-12T06:40:51.000Z" - }, - "events": [ - { - "uuid": "96501769-37a4-468b-992d-1263d737475d", - "start": { - "$date": "2021-12-12T06:37:55.000Z" - }, - "end": { - "$date": "2021-12-12T06:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f79db0ba-dfc3-4423-8629-dd5fb373b282", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T06:56:43.000Z" - }, - "end": { - "$date": "2021-12-12T06:59:44.000Z" - }, - "events": [ - { - "uuid": "a3bbff84-f3fb-4b20-a8cd-11b411ff7029", - "start": { - "$date": "2021-12-12T06:56:43.000Z" - }, - "end": { - "$date": "2021-12-12T06:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2463cb17-3f87-4db7-a265-780206edb9a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T06:56:48.000Z" - }, - "end": { - "$date": "2021-12-12T07:03:21.000Z" - }, - "events": [ - { - "uuid": "97487182-2a2f-48c9-9579-e965f9a32f2a", - "start": { - "$date": "2021-12-12T06:56:48.000Z" - }, - "end": { - "$date": "2021-12-12T07:03:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "329718a3-711d-4ea6-83f6-d2c4dcf41628", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T07:03:03.000Z" - }, - "end": { - "$date": "2021-12-12T09:28:15.000Z" - }, - "events": [ - { - "uuid": "c7563a4f-50f5-43f7-89fd-e3ac7b67983c", - "start": { - "$date": "2021-12-12T07:03:03.000Z" - }, - "end": { - "$date": "2021-12-12T09:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7db2a2ec-5edf-4a82-8109-458329a48231", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T07:04:52.000Z" - }, - "end": { - "$date": "2021-12-12T08:19:50.000Z" - }, - "events": [ - { - "uuid": "5b0346a7-3615-45c2-aec4-e16af8ae84ca", - "start": { - "$date": "2021-12-12T07:04:52.000Z" - }, - "end": { - "$date": "2021-12-12T07:43:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bb44f3e4-67ce-461b-88e2-fc0fba7c2b90", - "start": { - "$date": "2021-12-12T07:43:52.000Z" - }, - "end": { - "$date": "2021-12-12T08:02:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ac0e3117-8c88-4868-840c-6e8a206c2ad2", - "start": { - "$date": "2021-12-12T08:02:52.000Z" - }, - "end": { - "$date": "2021-12-12T08:19:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c48f4f6-7764-4003-8484-e2c5d1e7cd37", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T07:14:30.000Z" - }, - "end": { - "$date": "2021-12-12T07:42:51.000Z" - }, - "events": [ - { - "uuid": "70d4a128-5b3d-4ae1-977e-cab386e35d9e", - "start": { - "$date": "2021-12-12T07:14:30.000Z" - }, - "end": { - "$date": "2021-12-12T07:42:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6344328c-efa2-4e79-ac4f-7ac5c0adf2c3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-12T07:06:54.000Z" - }, - "end": { - "$date": "2021-12-12T09:28:05.000Z" - }, - "events": [ - { - "uuid": "d7c5e7bd-2daf-43bb-9b3e-ccb4a570b26a", - "start": { - "$date": "2021-12-12T07:06:54.000Z" - }, - "end": { - "$date": "2021-12-12T09:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c55f46a2-ff0f-4fed-9d00-69ce4147aaf5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-12T07:44:51.000Z" - }, - "end": { - "$date": "2021-12-12T09:50:22.000Z" - }, - "events": [ - { - "uuid": "e37c9106-9cae-4a6d-a826-92dce1265237", - "start": { - "$date": "2021-12-12T07:44:51.000Z" - }, - "end": { - "$date": "2021-12-12T09:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "e41bee41-8635-47db-9975-04250d87a303", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-12T07:54:28.000Z" - }, - "end": { - "$date": "2021-12-12T08:09:50.000Z" - }, - "events": [ - { - "uuid": "724405c6-682d-4e05-9ec7-750c92f484a2", - "start": { - "$date": "2021-12-12T07:54:28.000Z" - }, - "end": { - "$date": "2021-12-12T08:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4606b35d-8b2b-4473-bb5f-f4dc2fc20e46", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T08:20:31.000Z" - }, - "end": { - "$date": "2021-12-12T08:39:17.000Z" - }, - "events": [ - { - "uuid": "9efd2b0a-7fb7-4d85-a36e-6d7075a868d3", - "start": { - "$date": "2021-12-12T08:20:31.000Z" - }, - "end": { - "$date": "2021-12-12T08:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2f8d55d8-b128-4bb3-94a5-305514eb1a23", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T08:40:03.000Z" - }, - "end": { - "$date": "2021-12-12T08:48:57.000Z" - }, - "events": [ - { - "uuid": "76a3bd05-7fd0-40ad-bd71-fbaa09234798", - "start": { - "$date": "2021-12-12T08:40:03.000Z" - }, - "end": { - "$date": "2021-12-12T08:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8242b688-5d5b-47f9-bbae-60854f8a6993", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T08:49:19.000Z" - }, - "end": { - "$date": "2021-12-12T09:58:36.000Z" - }, - "events": [ - { - "uuid": "6b3daf9a-86cc-4a4a-86b3-229187bb9cf2", - "start": { - "$date": "2021-12-12T08:49:19.000Z" - }, - "end": { - "$date": "2021-12-12T09:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c7ddc79-e54d-4d21-8fad-3cd0d4ae450a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T09:09:21.000Z" - }, - "end": { - "$date": "2021-12-12T09:49:22.000Z" - }, - "events": [ - { - "uuid": "8e32defe-c806-413a-8429-8db3c6625826", - "start": { - "$date": "2021-12-12T09:09:21.000Z" - }, - "end": { - "$date": "2021-12-12T09:49:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3afea53a-034e-4b92-84d7-e2118d676c84", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T09:54:22.000Z" - }, - "end": { - "$date": "2021-12-12T10:30:42.000Z" - }, - "events": [ - { - "uuid": "3420b3f9-57ca-4e17-9fc1-201f48258cfa", - "start": { - "$date": "2021-12-12T09:54:22.000Z" - }, - "end": { - "$date": "2021-12-12T10:30:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7534941c-fc0f-4da8-856b-a78432eb4b08", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T10:43:23.000Z" - }, - "end": { - "$date": "2021-12-12T11:21:20.000Z" - }, - "events": [ - { - "uuid": "41a36954-c881-4ed1-afe2-bce2b91d0bde", - "start": { - "$date": "2021-12-12T10:43:23.000Z" - }, - "end": { - "$date": "2021-12-12T11:21:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3ad519da-0237-4917-84b4-49eebc43eafe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-12T11:16:25.000Z" - }, - "end": { - "$date": "2021-12-12T14:54:36.000Z" - }, - "events": [ - { - "uuid": "6b426649-f713-41f4-a7c2-339d19afd23c", - "start": { - "$date": "2021-12-12T11:16:25.000Z" - }, - "end": { - "$date": "2021-12-12T14:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43a66366-8572-4341-8767-70b3b770017c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-12T11:26:33.000Z" - }, - "end": { - "$date": "2021-12-12T11:56:40.000Z" - }, - "events": [ - { - "uuid": "a4aae72d-3dde-48fd-9dbb-f64753640f79", - "start": { - "$date": "2021-12-12T11:26:33.000Z" - }, - "end": { - "$date": "2021-12-12T11:56:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9e9bc001-1976-4c03-a877-74d99ba2378d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T15:03:25.000Z" - }, - "end": { - "$date": "2021-12-12T15:23:18.000Z" - }, - "events": [ - { - "uuid": "d07940b7-cd1f-4c95-bdde-c9e7566f9be7", - "start": { - "$date": "2021-12-12T15:03:25.000Z" - }, - "end": { - "$date": "2021-12-12T15:18:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7afcd373-fa0a-418e-bc83-da11a79cc891", - "start": { - "$date": "2021-12-12T15:18:25.000Z" - }, - "end": { - "$date": "2021-12-12T15:23:18.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e8b6cb4e-498a-4fab-a8f9-ca11110eefc0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T15:23:33.000Z" - }, - "end": { - "$date": "2021-12-12T18:46:00.000Z" - }, - "events": [ - { - "uuid": "2caad0ce-cc82-44db-bdf1-d49400946500", - "start": { - "$date": "2021-12-12T15:23:33.000Z" - }, - "end": { - "$date": "2021-12-12T17:18:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88a5ba99-dce6-41e9-ac1a-0fa06a8757da", - "start": { - "$date": "2021-12-12T17:18:33.000Z" - }, - "end": { - "$date": "2021-12-12T18:46:00.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "24cb8d8b-e650-49eb-9db1-73ded2fd94d8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T17:47:20.000Z" - }, - "end": { - "$date": "2021-12-12T17:54:06.000Z" - }, - "events": [ - { - "uuid": "67f47073-7ff0-49db-a13d-cba6f75511b4", - "start": { - "$date": "2021-12-12T17:47:20.000Z" - }, - "end": { - "$date": "2021-12-12T17:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e3aee9-da49-44d8-8373-fac21cb8cb6e", - "uuid": "fe47cb80-3b23-49f3-a678-e0fc8c677d3d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T18:09:59.000Z" - }, - "end": { - "$date": "2021-12-12T19:23:19.000Z" - }, - "events": [ - { - "uuid": "64eb98fc-86d7-4513-b40b-74927150c2ab", - "start": { - "$date": "2021-12-12T18:09:59.000Z" - }, - "end": { - "$date": "2021-12-12T19:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ce7a24de-d8b3-4049-8d37-3ec7fc2521c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T18:17:16.000Z" - }, - "end": { - "$date": "2021-12-12T20:08:40.000Z" - }, - "events": [ - { - "uuid": "d5181441-c5b4-4302-942c-0fd37e6b7eaf", - "start": { - "$date": "2021-12-12T18:17:16.000Z" - }, - "end": { - "$date": "2021-12-12T20:08:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "06934c1b-a3f1-44b4-a851-d2ffcfbe5fa6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-12T18:37:19.000Z" - }, - "end": { - "$date": "2021-12-12T18:57:11.000Z" - }, - "events": [ - { - "uuid": "655e77cb-6c53-44ac-bfec-56435e933439", - "start": { - "$date": "2021-12-12T18:37:19.000Z" - }, - "end": { - "$date": "2021-12-12T18:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd037752-d53b-4e81-adf2-d3fa68105354", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T19:08:01.000Z" - }, - "end": { - "$date": "2021-12-12T19:24:12.000Z" - }, - "events": [ - { - "uuid": "2f0a9fc7-c97a-4fed-b950-237f7cfd1733", - "start": { - "$date": "2021-12-12T19:08:01.000Z" - }, - "end": { - "$date": "2021-12-12T19:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "07328a29-0ea4-46ec-bc85-1db8c368e348", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T19:23:29.000Z" - }, - "end": { - "$date": "2021-12-12T19:26:25.000Z" - }, - "events": [ - { - "uuid": "1a4af603-a156-4d6a-af5b-1cc8e69eb727", - "start": { - "$date": "2021-12-12T19:23:29.000Z" - }, - "end": { - "$date": "2021-12-12T19:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23ff4142-ca6e-4758-89a3-7af5cc443dba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T19:25:07.000Z" - }, - "end": { - "$date": "2021-12-12T19:46:23.000Z" - }, - "events": [ - { - "uuid": "d6e2f421-fcbf-4b6d-a7c0-c2d228663aa6", - "start": { - "$date": "2021-12-12T19:25:07.000Z" - }, - "end": { - "$date": "2021-12-12T19:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "85943be0-df0a-4c13-862f-d161b9f2da00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T19:48:23.000Z" - }, - "end": { - "$date": "2021-12-12T21:14:42.000Z" - }, - "events": [ - { - "uuid": "23fc264d-08e2-4bb8-b5ad-eb95d284ded9", - "start": { - "$date": "2021-12-12T19:48:23.000Z" - }, - "end": { - "$date": "2021-12-12T20:34:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6821cb16-adac-4a71-accd-6d059376219d", - "start": { - "$date": "2021-12-12T20:34:23.000Z" - }, - "end": { - "$date": "2021-12-12T20:40:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23f29cc7-6470-4c13-901d-adf3188ac3f5", - "start": { - "$date": "2021-12-12T20:40:23.000Z" - }, - "end": { - "$date": "2021-12-12T21:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e5b83eb8-03cb-4118-bc08-eeb254f47a36", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-12T20:04:52.000Z" - }, - "end": { - "$date": "2021-12-12T23:17:51.000Z" - }, - "events": [ - { - "uuid": "0e9fcec1-560b-4352-82f7-300de45adde8", - "start": { - "$date": "2021-12-12T20:04:52.000Z" - }, - "end": { - "$date": "2021-12-12T20:19:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd6fa15c-a03f-4978-9514-eb323e90f9a1", - "start": { - "$date": "2021-12-12T20:19:52.000Z" - }, - "end": { - "$date": "2021-12-12T20:24:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dfe2f7d3-de86-4b77-b5a0-3e5e255ed4f2", - "start": { - "$date": "2021-12-12T20:24:52.000Z" - }, - "end": { - "$date": "2021-12-12T23:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e67bd84a-f56c-4908-8ed2-b395f1123ac6", - "uuid": "e59d5dcf-aee0-4ed3-bbf4-133c4a4d9d9a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T20:09:01.000Z" - }, - "end": { - "$date": "2021-12-12T20:29:06.000Z" - }, - "events": [ - { - "uuid": "50e64b3e-dee5-495f-808e-f079c7c528de", - "start": { - "$date": "2021-12-12T20:09:01.000Z" - }, - "end": { - "$date": "2021-12-12T20:29:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "634f282c-b393-402a-be5a-9bc4f567de5d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T20:23:14.000Z" - }, - "end": { - "$date": "2021-12-12T21:55:07.000Z" - }, - "events": [ - { - "uuid": "5b27b9b8-98de-4218-bf52-703db27e73e3", - "start": { - "$date": "2021-12-12T20:23:14.000Z" - }, - "end": { - "$date": "2021-12-12T20:51:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e582f504-0ccf-40f3-b93c-26208b57a933", - "start": { - "$date": "2021-12-12T20:51:14.000Z" - }, - "end": { - "$date": "2021-12-12T21:36:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c31f785a-806e-4ce7-a175-5dae03a6d63d", - "start": { - "$date": "2021-12-12T21:36:14.000Z" - }, - "end": { - "$date": "2021-12-12T21:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "292f27bf-b74e-4826-8e20-726be453d5aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T20:48:13.000Z" - }, - "end": { - "$date": "2021-12-12T21:08:40.000Z" - }, - "events": [ - { - "uuid": "c646149c-89b6-4653-b97d-ca1d98eb72fe", - "start": { - "$date": "2021-12-12T20:48:13.000Z" - }, - "end": { - "$date": "2021-12-12T21:08:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "60e657f7-43e6-4f78-a864-cffbdb2c4a4e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T21:25:31.000Z" - }, - "end": { - "$date": "2021-12-12T22:24:25.000Z" - }, - "events": [ - { - "uuid": "65da01ea-8aaa-4d82-906c-94bc8bfb9271", - "start": { - "$date": "2021-12-12T21:25:31.000Z" - }, - "end": { - "$date": "2021-12-12T22:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1cd8f4b-bd4e-4d54-be76-b98feae7d7c1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T21:29:45.000Z" - }, - "end": { - "$date": "2021-12-12T21:50:14.000Z" - }, - "events": [ - { - "uuid": "cef7f0d7-ab56-40b6-ad8d-f0e806b3d326", - "start": { - "$date": "2021-12-12T21:29:45.000Z" - }, - "end": { - "$date": "2021-12-12T21:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66c4fd91-4398-4b34-8e8d-07dbe3d29ea2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T21:52:43.000Z" - }, - "end": { - "$date": "2021-12-12T22:11:45.000Z" - }, - "events": [ - { - "uuid": "e37abdd8-0a7a-4d30-a5d4-3d1cc31c4275", - "start": { - "$date": "2021-12-12T21:52:43.000Z" - }, - "end": { - "$date": "2021-12-12T22:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7fed2189-ca37-476e-a287-57914c4f98fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T21:55:22.000Z" - }, - "end": { - "$date": "2021-12-12T22:12:20.000Z" - }, - "events": [ - { - "uuid": "853af51e-15e5-4fab-b0a5-cc0ac4b4acdb", - "start": { - "$date": "2021-12-12T21:55:22.000Z" - }, - "end": { - "$date": "2021-12-12T22:12:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "dc0a348c-a0f0-4e94-9823-59201f69894c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T22:05:53.000Z" - }, - "end": { - "$date": "2021-12-12T22:17:15.000Z" - }, - "events": [ - { - "uuid": "ff931730-547e-4e8c-8dbb-37d508af3494", - "start": { - "$date": "2021-12-12T22:05:53.000Z" - }, - "end": { - "$date": "2021-12-12T22:17:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bc0191d-23b4-4451-a275-e33ebfbd8c8a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-12T22:14:10.000Z" - }, - "end": { - "$date": "2021-12-12T22:36:55.000Z" - }, - "events": [ - { - "uuid": "5949c076-57b6-4dc8-8c5d-1124583e948f", - "start": { - "$date": "2021-12-12T22:14:10.000Z" - }, - "end": { - "$date": "2021-12-12T22:36:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "11e86e71-ad4d-4682-ad9c-4e630aaa261e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T22:17:33.000Z" - }, - "end": { - "$date": "2021-12-12T22:47:43.000Z" - }, - "events": [ - { - "uuid": "4c3ddd7e-404f-4dc6-bfd3-e9b54745e30f", - "start": { - "$date": "2021-12-12T22:17:33.000Z" - }, - "end": { - "$date": "2021-12-12T22:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a63ca010-4636-432b-ba07-f1bc8163beea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T22:22:51.000Z" - }, - "end": { - "$date": "2021-12-12T23:32:30.000Z" - }, - "events": [ - { - "uuid": "bb600af4-0cd5-4fde-a1f0-ec4d0ccd09f9", - "start": { - "$date": "2021-12-12T22:22:51.000Z" - }, - "end": { - "$date": "2021-12-12T23:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "23d40349-77d0-4e09-ad83-79bee426888d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-12T22:24:55.000Z" - }, - "end": { - "$date": "2021-12-12T23:32:13.000Z" - }, - "events": [ - { - "uuid": "88a91c09-78e6-4ee2-87a3-be3cd15ff342", - "start": { - "$date": "2021-12-12T22:24:55.000Z" - }, - "end": { - "$date": "2021-12-12T23:32:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54f705f7-38cd-4fe9-9f8f-895e67f1cf00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T22:43:04.000Z" - }, - "end": { - "$date": "2021-12-12T23:02:22.000Z" - }, - "events": [ - { - "uuid": "e39a0214-d569-407a-bf26-83748a4579a5", - "start": { - "$date": "2021-12-12T22:43:04.000Z" - }, - "end": { - "$date": "2021-12-12T23:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "092212fc-0c3e-4f68-9285-53a8d9994d4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-12T22:50:37.000Z" - }, - "end": { - "$date": "2021-12-12T23:16:05.000Z" - }, - "events": [ - { - "uuid": "99b2245f-6dd7-488b-9429-5b0b641ca64f", - "start": { - "$date": "2021-12-12T22:50:37.000Z" - }, - "end": { - "$date": "2021-12-12T23:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "daabb77a-1221-4894-8a66-4cc4ec1c434a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-12T23:18:02.000Z" - }, - "end": { - "$date": "2021-12-13T06:28:33.000Z" - }, - "events": [ - { - "uuid": "a51f530c-3be9-416a-b715-93c0522eb77e", - "start": { - "$date": "2021-12-12T23:18:02.000Z" - }, - "end": { - "$date": "2021-12-13T00:35:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c56b28ae-0765-40b9-b8b8-d4b94add6883", - "start": { - "$date": "2021-12-13T00:35:02.000Z" - }, - "end": { - "$date": "2021-12-13T00:40:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d706ba9b-c94f-4bf4-a509-9333f244f182", - "start": { - "$date": "2021-12-13T00:40:02.000Z" - }, - "end": { - "$date": "2021-12-13T00:50:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "10192a45-1511-48e1-8a74-01161f330faa", - "start": { - "$date": "2021-12-13T00:50:02.000Z" - }, - "end": { - "$date": "2021-12-13T01:21:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b0915e7-3ba9-495e-a710-662455ee59d0", - "start": { - "$date": "2021-12-13T01:21:02.000Z" - }, - "end": { - "$date": "2021-12-13T01:40:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dafcb4c7-a54c-40c9-ac7d-745d5d586545", - "start": { - "$date": "2021-12-13T01:40:02.000Z" - }, - "end": { - "$date": "2021-12-13T01:41:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "995f79ef-4dae-40ce-9e3a-9aaded5b5afe", - "start": { - "$date": "2021-12-13T01:41:02.000Z" - }, - "end": { - "$date": "2021-12-13T06:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f1c2d3cc-d500-4334-9ee0-72bf53b82397", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T00:10:50.000Z" - }, - "end": { - "$date": "2021-12-13T01:33:27.000Z" - }, - "events": [ - { - "uuid": "ec20c3ff-eb23-4a89-a300-2c52e776a069", - "start": { - "$date": "2021-12-13T00:10:50.000Z" - }, - "end": { - "$date": "2021-12-13T01:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "321e6991-a8ba-4342-a6fb-9d574ea7cb9d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T01:54:10.000Z" - }, - "end": { - "$date": "2021-12-13T01:54:25.000Z" - }, - "events": [ - { - "uuid": "4eb46803-f36a-437d-b6ed-61e09a3031fe", - "start": { - "$date": "2021-12-13T01:54:10.000Z" - }, - "end": { - "$date": "2021-12-13T03:58:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2309f47e-63fc-4f9b-97b9-dc00ba3e29d3", - "start": { - "$date": "2021-12-13T03:58:10.000Z" - }, - "end": { - "$date": "2021-12-13T04:00:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ba162050-1798-4e4b-98fe-492529b24073", - "start": { - "$date": "2021-12-13T04:00:10.000Z" - }, - "end": { - "$date": "2021-12-13T01:54:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "789d95a4-1a86-4f5e-aee9-c3b706445d14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-12T23:39:45.000Z" - }, - "end": { - "$date": "2021-12-12T23:57:13.000Z" - }, - "events": [ - { - "uuid": "345739eb-0dc2-4275-9890-45c076ebcbb0", - "start": { - "$date": "2021-12-12T23:39:45.000Z" - }, - "end": { - "$date": "2021-12-12T23:57:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e4949dc-932d-4585-8baf-891be9781c37", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-12T23:49:34.000Z" - }, - "end": { - "$date": "2021-12-13T00:03:40.000Z" - }, - "events": [ - { - "uuid": "dd5de43c-27f6-4650-8ced-e9958297cf51", - "start": { - "$date": "2021-12-12T23:49:34.000Z" - }, - "end": { - "$date": "2021-12-13T00:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a7c4b70-4d8d-4f11-a4bc-435b95eeeeff", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-12T23:55:22.000Z" - }, - "end": { - "$date": "2021-12-13T01:05:51.000Z" - }, - "events": [ - { - "uuid": "26039184-77e9-4f05-a341-a29e3f34205f", - "start": { - "$date": "2021-12-12T23:55:22.000Z" - }, - "end": { - "$date": "2021-12-13T01:05:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e70bdcb1-7d73-4a38-9fa2-edd2e59aae03", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-12T23:56:17.000Z" - }, - "end": { - "$date": "2021-12-13T01:24:11.000Z" - }, - "events": [ - { - "uuid": "6b4422fa-74ff-4812-8587-ad485dc2dc98", - "start": { - "$date": "2021-12-12T23:56:17.000Z" - }, - "end": { - "$date": "2021-12-13T01:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e0c98bbd-f5be-4748-b98c-ff711801e73f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-13T00:04:49.000Z" - }, - "end": { - "$date": "2021-12-13T05:47:15.000Z" - }, - "events": [ - { - "uuid": "07b3d59e-6ff8-415b-be09-f2495d157a1d", - "start": { - "$date": "2021-12-13T00:04:49.000Z" - }, - "end": { - "$date": "2021-12-13T05:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ca6ad690-4f06-422b-9f13-9e5527f78198", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-13T00:28:38.000Z" - }, - "end": { - "$date": "2021-12-13T01:09:27.000Z" - }, - "events": [ - { - "uuid": "24fd1a8c-662c-469c-b8e8-2e9cffee5b57", - "start": { - "$date": "2021-12-13T00:28:38.000Z" - }, - "end": { - "$date": "2021-12-13T01:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b39186e5-b91a-4e6f-b22a-75a26f15228e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-13T01:15:03.000Z" - }, - "end": { - "$date": "2021-12-13T01:37:49.000Z" - }, - "events": [ - { - "uuid": "31cde1ea-d1c9-4af2-8aff-88be46e05fc2", - "start": { - "$date": "2021-12-13T01:15:03.000Z" - }, - "end": { - "$date": "2021-12-13T01:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b1052ebe-b787-4311-bfec-076c913902f5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T01:54:10.000Z" - }, - "end": { - "$date": "2021-12-13T02:43:19.000Z" - }, - "events": [ - { - "uuid": "6da2df6e-328c-4a41-8811-1cc6ad0a8e5c", - "start": { - "$date": "2021-12-13T01:54:10.000Z" - }, - "end": { - "$date": "2021-12-13T02:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d7736479-837b-4bea-bd8c-f8a869f543e2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-13T03:27:24.000Z" - }, - "end": { - "$date": "2021-12-13T04:37:52.000Z" - }, - "events": [ - { - "uuid": "9080120d-c06f-4b3f-85dd-b46f8eadaed4", - "start": { - "$date": "2021-12-13T03:27:24.000Z" - }, - "end": { - "$date": "2021-12-13T04:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e9cbfc6-ebf9-4d6c-8892-4769a32638dd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-13T04:31:03.000Z" - }, - "end": { - "$date": "2021-12-13T04:52:30.000Z" - }, - "events": [ - { - "uuid": "59d4b4b6-05d6-4a2d-89aa-b138fbaeb07c", - "start": { - "$date": "2021-12-13T04:31:03.000Z" - }, - "end": { - "$date": "2021-12-13T04:52:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "74c4409e-b66c-4870-a78b-5ae01762d0df", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T04:21:51.000Z" - }, - "end": { - "$date": "2021-12-13T04:27:11.000Z" - }, - "events": [ - { - "uuid": "e3483ddc-f55c-4c6f-9da3-fcd055b297e6", - "start": { - "$date": "2021-12-13T04:21:51.000Z" - }, - "end": { - "$date": "2021-12-13T04:27:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4c8f92b0-4cf0-450b-81ff-fad82672b4fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T04:42:21.000Z" - }, - "end": { - "$date": "2021-12-13T05:21:52.000Z" - }, - "events": [ - { - "uuid": "e38c7822-1288-4a83-9187-082fbe25d82b", - "start": { - "$date": "2021-12-13T04:42:21.000Z" - }, - "end": { - "$date": "2021-12-13T05:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da400446-c160-4979-bf43-e671538fa75d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-13T04:54:43.000Z" - }, - "end": { - "$date": "2021-12-13T05:20:54.000Z" - }, - "events": [ - { - "uuid": "14b7b5af-e566-4e6e-a537-859b0139a1d6", - "start": { - "$date": "2021-12-13T04:54:43.000Z" - }, - "end": { - "$date": "2021-12-13T05:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b1a8e3eb-a34b-4a5e-b0ec-32df57312cfb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T05:02:57.000Z" - }, - "end": { - "$date": "2021-12-13T05:05:13.000Z" - }, - "events": [ - { - "uuid": "7be5b8a1-cc8f-43a9-86a0-2b1a26213d9c", - "start": { - "$date": "2021-12-13T05:02:57.000Z" - }, - "end": { - "$date": "2021-12-13T05:05:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a7ce40ad-4202-478c-a542-f22b5fe94e37", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T05:06:07.000Z" - }, - "end": { - "$date": "2021-12-13T05:24:14.000Z" - }, - "events": [ - { - "uuid": "2a3bde8f-0d12-4417-91ed-b330b4db42ba", - "start": { - "$date": "2021-12-13T05:06:07.000Z" - }, - "end": { - "$date": "2021-12-13T05:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b33e039-91b3-4e24-9c7c-57f9b35ef148", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-13T05:22:54.000Z" - }, - "end": { - "$date": "2021-12-13T05:37:06.000Z" - }, - "events": [ - { - "uuid": "755c8633-3519-45c9-9373-391c6474bdb6", - "start": { - "$date": "2021-12-13T05:22:54.000Z" - }, - "end": { - "$date": "2021-12-13T05:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c0168c15-de03-4070-99d7-c55b778d99e4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T05:22:02.000Z" - }, - "end": { - "$date": "2021-12-13T05:24:07.000Z" - }, - "events": [ - { - "uuid": "9880fb96-733f-4496-8742-14d14bff0a64", - "start": { - "$date": "2021-12-13T05:22:02.000Z" - }, - "end": { - "$date": "2021-12-13T05:24:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c1d9414a-c1f1-4864-9622-a521549cba8c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T05:24:33.000Z" - }, - "end": { - "$date": "2021-12-13T05:41:08.000Z" - }, - "events": [ - { - "uuid": "493feb40-09f3-4f35-a27f-4bacfe57652b", - "start": { - "$date": "2021-12-13T05:24:33.000Z" - }, - "end": { - "$date": "2021-12-13T05:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a08287d8-3146-4fe3-bf57-aba9f2211fd3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T05:25:14.000Z" - }, - "end": { - "$date": "2021-12-13T05:32:40.000Z" - }, - "events": [ - { - "uuid": "13446a9c-b43e-4b57-918d-baf5b41ab860", - "start": { - "$date": "2021-12-13T05:25:14.000Z" - }, - "end": { - "$date": "2021-12-13T05:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ee3d322-fa52-4150-ba65-4112498116a8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-13T05:39:20.000Z" - }, - "end": { - "$date": "2021-12-13T05:58:53.000Z" - }, - "events": [ - { - "uuid": "ff07d8d0-002a-430d-8481-3ebb5a119260", - "start": { - "$date": "2021-12-13T05:39:20.000Z" - }, - "end": { - "$date": "2021-12-13T05:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6c635dc4-7a64-44c7-ab75-ebbb00030039", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T05:42:23.000Z" - }, - "end": { - "$date": "2021-12-13T06:07:13.000Z" - }, - "events": [ - { - "uuid": "fd7d7c7e-7213-45b6-9f86-ba4a11edf903", - "start": { - "$date": "2021-12-13T05:42:23.000Z" - }, - "end": { - "$date": "2021-12-13T06:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a283c04d-0ae8-48ff-9d9a-422a311de1ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-13T05:47:33.000Z" - }, - "end": { - "$date": "2021-12-13T07:23:18.000Z" - }, - "events": [ - { - "uuid": "b7a7c131-db2f-4894-8c28-09fc7b762dff", - "start": { - "$date": "2021-12-13T05:47:33.000Z" - }, - "end": { - "$date": "2021-12-13T07:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "aac3b392-70b9-43a5-a803-d73b289b72ff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-13T05:48:03.000Z" - }, - "end": { - "$date": "2021-12-13T06:13:02.000Z" - }, - "events": [ - { - "uuid": "9493c4af-a366-4667-9905-4157fd5d93a9", - "start": { - "$date": "2021-12-13T05:48:03.000Z" - }, - "end": { - "$date": "2021-12-13T06:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f792caf9-f47b-4dec-9e20-039ced231441", - "uuid": "1c516df2-3b17-4d1e-bf40-fb24caf00b41", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-13T05:49:13.000Z" - }, - "end": { - "$date": "2021-12-13T05:52:16.000Z" - }, - "events": [ - { - "uuid": "33fd5a7d-bf7e-4c71-8844-06212cc7261c", - "start": { - "$date": "2021-12-13T05:49:13.000Z" - }, - "end": { - "$date": "2021-12-13T05:52:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "71171f03-eae4-462d-bcfb-b210386dd8e8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-13T06:10:44.000Z" - }, - "end": { - "$date": "2021-12-13T07:25:14.000Z" - }, - "events": [ - { - "uuid": "16e8ca4c-e924-428b-b118-72da2373506e", - "start": { - "$date": "2021-12-13T06:10:44.000Z" - }, - "end": { - "$date": "2021-12-13T07:25:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f5673fb9-6725-482e-bb23-ab70540b60cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T06:16:23.000Z" - }, - "end": { - "$date": "2021-12-13T06:51:59.000Z" - }, - "events": [ - { - "uuid": "30e870e0-cc62-43ae-94e2-e3135342bfb5", - "start": { - "$date": "2021-12-13T06:16:23.000Z" - }, - "end": { - "$date": "2021-12-13T06:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dba5449a-22a4-4b26-9d78-9362fbfa09e5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-13T06:20:37.000Z" - }, - "end": { - "$date": "2021-12-13T06:47:01.000Z" - }, - "events": [ - { - "uuid": "0a57132b-cdf1-415d-be06-4faf6accfa25", - "start": { - "$date": "2021-12-13T06:20:37.000Z" - }, - "end": { - "$date": "2021-12-13T06:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "12411488-a54b-4ac5-b4d6-bd82d9a42039", - "uuid": "0c68db37-9e36-4cd6-bb73-d9c24dceb8c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T06:32:10.000Z" - }, - "end": { - "$date": "2021-12-13T06:39:40.000Z" - }, - "events": [ - { - "uuid": "e77a3749-d667-46f9-95d0-edd5dff38151", - "start": { - "$date": "2021-12-13T06:32:10.000Z" - }, - "end": { - "$date": "2021-12-13T06:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5614d6ec-c70d-4ca5-90fa-cc7c5437f7bc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-13T06:49:26.000Z" - }, - "end": { - "$date": "2021-12-13T07:12:43.000Z" - }, - "events": [ - { - "uuid": "2b9b6d00-f118-4466-9700-6a70f860fee6", - "start": { - "$date": "2021-12-13T06:49:26.000Z" - }, - "end": { - "$date": "2021-12-13T07:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "92cc9cba-90e4-4650-bb93-4fc5e6f0dc3a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-13T07:18:46.000Z" - }, - "end": { - "$date": "2021-12-13T11:02:05.000Z" - }, - "events": [ - { - "uuid": "74fbfdbd-4cae-4fd8-a2ca-90b877d523ab", - "start": { - "$date": "2021-12-13T07:18:46.000Z" - }, - "end": { - "$date": "2021-12-13T11:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "24bdf8e6-f366-4c20-beba-4f928ab313f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T22:19:33.000Z" - }, - "end": { - "$date": "2021-12-13T22:29:24.000Z" - }, - "events": [ - { - "uuid": "bb2ee5c4-5502-48c7-89ab-6a9e5d94924a", - "start": { - "$date": "2021-12-13T22:19:33.000Z" - }, - "end": { - "$date": "2021-12-13T22:29:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "01a4f1ff-b1a1-44bb-a210-5380cdb3238c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-13T22:33:04.000Z" - }, - "end": { - "$date": "2021-12-13T22:39:15.000Z" - }, - "events": [ - { - "uuid": "4bc9ecf1-94fc-4318-a884-a4b313aa2769", - "start": { - "$date": "2021-12-13T22:33:04.000Z" - }, - "end": { - "$date": "2021-12-13T22:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "6bbc5a50-881e-43b1-9768-ed2092f97e09", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-14T07:34:12.000Z" - }, - "end": { - "$date": "2021-12-14T07:36:18.000Z" - }, - "events": [ - { - "uuid": "e54ed63e-570d-4226-a669-a28989c9cfb6", - "start": { - "$date": "2021-12-14T07:34:12.000Z" - }, - "end": { - "$date": "2021-12-14T07:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "39b95ded-2792-4468-a321-648c0e085957", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-13T22:42:24.000Z" - }, - "end": { - "$date": "2021-12-14T01:57:40.000Z" - }, - "events": [ - { - "uuid": "92c2d466-d1e1-4d4c-8e10-86cbf6b6fe9e", - "start": { - "$date": "2021-12-13T22:42:24.000Z" - }, - "end": { - "$date": "2021-12-14T01:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "3b369fd8-b3ff-47cc-9ab9-ce83fadca47f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-13T23:38:33.000Z" - }, - "end": { - "$date": "2021-12-14T00:58:13.000Z" - }, - "events": [ - { - "uuid": "ea4159be-1d41-44c9-bbe7-91cfc4b72713", - "start": { - "$date": "2021-12-13T23:38:33.000Z" - }, - "end": { - "$date": "2021-12-14T00:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d9f0e75b-ce5a-4449-a3e0-9fb8f8ce04aa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-14T00:42:36.000Z" - }, - "end": { - "$date": "2021-12-14T02:46:47.000Z" - }, - "events": [ - { - "uuid": "986743d7-87eb-4209-a024-90766d129613", - "start": { - "$date": "2021-12-14T00:42:36.000Z" - }, - "end": { - "$date": "2021-12-14T02:18:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "43ea23ad-769e-4d05-96fe-6927b9b62aa3", - "start": { - "$date": "2021-12-14T02:18:36.000Z" - }, - "end": { - "$date": "2021-12-14T02:21:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09dfb672-b617-4e8e-a40a-0a8c79dce590", - "start": { - "$date": "2021-12-14T02:21:36.000Z" - }, - "end": { - "$date": "2021-12-14T02:46:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52f72881-2ee0-4688-8876-2c3d3606ad0f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T01:01:26.000Z" - }, - "end": { - "$date": "2021-12-14T01:03:42.000Z" - }, - "events": [ - { - "uuid": "fcfffdac-9ca6-40e6-82a5-897bd22fd7f8", - "start": { - "$date": "2021-12-14T01:01:26.000Z" - }, - "end": { - "$date": "2021-12-14T01:03:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f7b7610-7073-4f94-b47a-a6ccb961c1e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T01:07:35.000Z" - }, - "end": { - "$date": "2021-12-14T01:28:16.000Z" - }, - "events": [ - { - "uuid": "c35f644f-6aec-4efd-b965-ad4b3c8cee67", - "start": { - "$date": "2021-12-14T01:07:35.000Z" - }, - "end": { - "$date": "2021-12-14T01:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09da0f60-98f1-4917-9683-ec291ef7a378", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T02:08:29.000Z" - }, - "end": { - "$date": "2021-12-14T02:21:44.000Z" - }, - "events": [ - { - "uuid": "1cb8b4cd-553e-40d0-b650-d65bc284c7e0", - "start": { - "$date": "2021-12-14T02:08:29.000Z" - }, - "end": { - "$date": "2021-12-14T02:19:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4aa3e7a2-393d-437a-81ae-5d128d829f93", - "start": { - "$date": "2021-12-14T02:19:29.000Z" - }, - "end": { - "$date": "2021-12-14T02:44:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f518da1f-7d11-442c-af7a-fa5a7ece872f", - "start": { - "$date": "2021-12-14T02:44:29.000Z" - }, - "end": { - "$date": "2021-12-14T02:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b811d611-2615-4ddf-904c-861e4002a5d7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-14T02:00:16.000Z" - }, - "end": { - "$date": "2021-12-14T04:16:32.000Z" - }, - "events": [ - { - "uuid": "0ff7efac-505f-4ea7-9f39-a18456a5cbb5", - "start": { - "$date": "2021-12-14T02:00:16.000Z" - }, - "end": { - "$date": "2021-12-14T04:16:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cd594699-f07a-4007-a5f9-6ae2697adbd7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-14T01:54:39.000Z" - }, - "end": { - "$date": "2021-12-14T03:10:56.000Z" - }, - "events": [ - { - "uuid": "bb6a1f60-6685-431e-b7d1-b17bee564a8d", - "start": { - "$date": "2021-12-14T01:54:39.000Z" - }, - "end": { - "$date": "2021-12-14T03:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d417f8f-44fb-4037-b39e-e5b1e8a3f575", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-14T02:14:59.000Z" - }, - "end": { - "$date": "2021-12-14T02:42:15.000Z" - }, - "events": [ - { - "uuid": "6e2ba81a-a597-439f-aaf2-08967dc1d3da", - "start": { - "$date": "2021-12-14T02:14:59.000Z" - }, - "end": { - "$date": "2021-12-14T02:42:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9b3900d-8512-4ef5-b2ac-da7bff5f5a47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T02:22:54.000Z" - }, - "end": { - "$date": "2021-12-14T02:37:10.000Z" - }, - "events": [ - { - "uuid": "fc162a7c-84b2-413f-8329-6eecb4c26050", - "start": { - "$date": "2021-12-14T02:22:54.000Z" - }, - "end": { - "$date": "2021-12-14T02:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "0dfb9404-8ba6-4924-82af-e1c1f62ce6e9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-14T02:29:32.000Z" - }, - "end": { - "$date": "2021-12-14T04:12:44.000Z" - }, - "events": [ - { - "uuid": "ec732ee9-073c-4ecb-9bd1-fea269e1c889", - "start": { - "$date": "2021-12-14T02:29:32.000Z" - }, - "end": { - "$date": "2021-12-14T04:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4603bb48-13f6-458d-bd76-7b778f19b9ec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T02:41:11.000Z" - }, - "end": { - "$date": "2021-12-14T03:01:16.000Z" - }, - "events": [ - { - "uuid": "404c4240-cee2-4fc8-babe-24ed4b88f5c2", - "start": { - "$date": "2021-12-14T02:41:11.000Z" - }, - "end": { - "$date": "2021-12-14T03:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7a0bfc7b-c74f-4c94-8133-5aa8b3095e6f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-14T02:50:53.000Z" - }, - "end": { - "$date": "2021-12-14T04:06:57.000Z" - }, - "events": [ - { - "uuid": "9c43390d-5757-4594-bee4-a2e70a460d9a", - "start": { - "$date": "2021-12-14T02:50:53.000Z" - }, - "end": { - "$date": "2021-12-14T04:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50982c0c-a656-45b4-a164-ea3a89ace958", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-14T03:07:49.000Z" - }, - "end": { - "$date": "2021-12-14T03:39:58.000Z" - }, - "events": [ - { - "uuid": "abe0947f-0ce1-4db0-aac5-904424702fee", - "start": { - "$date": "2021-12-14T03:07:49.000Z" - }, - "end": { - "$date": "2021-12-14T03:39:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e7f8bf59-e73e-4471-8149-a752047a93db", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T03:01:47.000Z" - }, - "end": { - "$date": "2021-12-14T03:11:34.000Z" - }, - "events": [ - { - "uuid": "9084b84d-ede9-47aa-9cee-a6536cecdf31", - "start": { - "$date": "2021-12-14T03:01:47.000Z" - }, - "end": { - "$date": "2021-12-14T03:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c7f93d90-9d62-40e7-97e1-e176ceff8bb8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-14T00:31:15.000Z" - }, - "end": { - "$date": "2021-12-14T06:10:47.000Z" - }, - "events": [ - { - "uuid": "06b411f5-29bf-4b32-be65-91e7f48829a9", - "start": { - "$date": "2021-12-14T00:31:15.000Z" - }, - "end": { - "$date": "2021-12-14T06:10:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "16e34114-c12f-4ba6-8c66-57a2c616ca21", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-14T03:12:14.000Z" - }, - "end": { - "$date": "2021-12-14T03:17:11.000Z" - }, - "events": [ - { - "uuid": "04ee87df-d54e-41a7-95b1-5eede350f13e", - "start": { - "$date": "2021-12-14T03:12:14.000Z" - }, - "end": { - "$date": "2021-12-14T03:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "9712fb59-dd7e-4d7a-8145-cc09f61721c8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-14T03:44:38.000Z" - }, - "end": { - "$date": "2021-12-14T04:43:10.000Z" - }, - "events": [ - { - "uuid": "c63bedfa-3b6d-4e5a-8307-6cfbbbb5e2e5", - "start": { - "$date": "2021-12-14T03:44:38.000Z" - }, - "end": { - "$date": "2021-12-14T04:43:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acfff92a-ce31-443f-b40a-57bd9846ea49", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-14T03:49:46.000Z" - }, - "end": { - "$date": "2021-12-14T04:11:49.000Z" - }, - "events": [ - { - "uuid": "7fd1ae8e-c6e9-4249-bae5-9dc7fc7b8add", - "start": { - "$date": "2021-12-14T03:49:46.000Z" - }, - "end": { - "$date": "2021-12-14T04:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "918491dd-fa7a-4dd4-9f6f-9c460156d3e1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-14T04:13:49.000Z" - }, - "end": { - "$date": "2021-12-14T04:36:51.000Z" - }, - "events": [ - { - "uuid": "4740cf09-ddb8-46a3-930d-7394cbd4d9c2", - "start": { - "$date": "2021-12-14T04:13:49.000Z" - }, - "end": { - "$date": "2021-12-14T04:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "af8417cc-475e-4ef0-af27-dab9878dfdb9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-14T04:20:01.000Z" - }, - "end": { - "$date": "2021-12-14T05:19:16.000Z" - }, - "events": [ - { - "uuid": "1cc6b55d-256e-43ff-b1ca-1b11bc928e5f", - "start": { - "$date": "2021-12-14T04:20:01.000Z" - }, - "end": { - "$date": "2021-12-14T05:19:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "28bbe3e4-778e-4b01-8459-00f9f60d7e91", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-14T04:22:11.000Z" - }, - "end": { - "$date": "2021-12-14T05:19:19.000Z" - }, - "events": [ - { - "uuid": "b8f547fb-edb5-46c0-9438-df5c461c2dcd", - "start": { - "$date": "2021-12-14T04:22:11.000Z" - }, - "end": { - "$date": "2021-12-14T05:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c80d82e2-3dfe-4c60-b669-51c13163b0a1", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-14T04:23:28.000Z" - }, - "end": { - "$date": "2021-12-14T05:14:11.000Z" - }, - "events": [ - { - "uuid": "71ad3b9f-8df8-4a13-8aa0-5cc06944b329", - "start": { - "$date": "2021-12-14T04:23:28.000Z" - }, - "end": { - "$date": "2021-12-14T05:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cd450dd-7b83-44d8-a911-24e5875d19e0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-14T05:05:49.000Z" - }, - "end": { - "$date": "2021-12-14T05:40:52.000Z" - }, - "events": [ - { - "uuid": "41124eab-63ab-4ffa-8c71-78fa18b0eae1", - "start": { - "$date": "2021-12-14T05:05:49.000Z" - }, - "end": { - "$date": "2021-12-14T05:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "04078f37-17d7-4cda-a2a6-5bc32bb16329", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-14T04:56:15.000Z" - }, - "end": { - "$date": "2021-12-14T05:21:55.000Z" - }, - "events": [ - { - "uuid": "8621e664-a1b0-4763-abd0-ebf1c620b00a", - "start": { - "$date": "2021-12-14T04:56:15.000Z" - }, - "end": { - "$date": "2021-12-14T05:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5343ca75-1e2f-4f13-a442-1e74cb4ead75", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-14T05:02:26.000Z" - }, - "end": { - "$date": "2021-12-14T05:10:18.000Z" - }, - "events": [ - { - "uuid": "bd856782-3cd6-4b86-a090-251d937bd08e", - "start": { - "$date": "2021-12-14T05:02:26.000Z" - }, - "end": { - "$date": "2021-12-14T05:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "b2f01cbe-7109-466f-9f7a-7df1e53b4a67", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-14T05:07:29.000Z" - }, - "end": { - "$date": "2021-12-14T05:12:40.000Z" - }, - "events": [ - { - "uuid": "11a1407b-a170-4187-8678-2fce691319c6", - "start": { - "$date": "2021-12-14T05:07:29.000Z" - }, - "end": { - "$date": "2021-12-14T05:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e70568f7-17c7-4104-97bd-038045ad745c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-14T05:14:34.000Z" - }, - "end": { - "$date": "2021-12-14T07:21:24.000Z" - }, - "events": [ - { - "uuid": "754872dd-ec94-4656-b092-eead2a5f466e", - "start": { - "$date": "2021-12-14T05:14:34.000Z" - }, - "end": { - "$date": "2021-12-14T07:21:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3a421591-a119-4b51-ad29-a440cdf9de9d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-14T05:20:52.000Z" - }, - "end": { - "$date": "2021-12-14T07:27:37.000Z" - }, - "events": [ - { - "uuid": "3c220e05-6bca-4633-869d-0a46a52e7443", - "start": { - "$date": "2021-12-14T05:20:52.000Z" - }, - "end": { - "$date": "2021-12-14T07:27:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1dded4fb-227d-45b7-9821-7153f25c7833", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-14T05:21:10.000Z" - }, - "end": { - "$date": "2021-12-14T07:59:32.000Z" - }, - "events": [ - { - "uuid": "14a3ea0b-bef9-49db-9c80-0bd64052ce6c", - "start": { - "$date": "2021-12-14T05:21:10.000Z" - }, - "end": { - "$date": "2021-12-14T07:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bb89c6b3-afd8-40f6-bcf9-8da2e59fd67a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-14T05:22:05.000Z" - }, - "end": { - "$date": "2021-12-14T07:28:21.000Z" - }, - "events": [ - { - "uuid": "033aa540-7710-4693-b3e0-166b5b4c982d", - "start": { - "$date": "2021-12-14T05:22:05.000Z" - }, - "end": { - "$date": "2021-12-14T07:28:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79b7c368-c0f4-49aa-ac3e-329f587dddd4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-14T06:17:54.000Z" - }, - "end": { - "$date": "2021-12-14T06:17:54.000Z" - }, - "events": [ - { - "uuid": "9dcfca5c-7359-47b7-9913-b3380e9f185e", - "start": { - "$date": "2021-12-14T06:17:54.000Z" - }, - "end": { - "$date": "2021-12-14T06:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "7faee154-2184-49ab-8d72-2983a28c2622", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-14T05:53:24.000Z" - }, - "end": { - "$date": "2021-12-14T07:16:51.000Z" - }, - "events": [ - { - "uuid": "21cfc9e1-1deb-4069-80c3-6f754168aab4", - "start": { - "$date": "2021-12-14T05:53:24.000Z" - }, - "end": { - "$date": "2021-12-14T07:16:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51a7c681-3c9c-4fee-8cd8-54d24167adc4", - "uuid": "23ad83dc-fd7a-4113-99c2-e896c694ab2f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-14T07:28:01.000Z" - }, - "end": { - "$date": "2021-12-14T07:59:17.000Z" - }, - "events": [ - { - "uuid": "253ad3cd-74bd-4180-954b-bb08fe466bb9", - "start": { - "$date": "2021-12-14T07:28:01.000Z" - }, - "end": { - "$date": "2021-12-14T07:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9b41d295-c456-43af-a1bb-86e1f2f5a54f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-14T07:59:38.000Z" - }, - "end": { - "$date": "2021-12-14T08:53:45.000Z" - }, - "events": [ - { - "uuid": "ad06c9c8-ebb1-4f67-9e81-b94e619cacd7", - "start": { - "$date": "2021-12-14T07:59:38.000Z" - }, - "end": { - "$date": "2021-12-14T08:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ac000f01-6275-4fe0-b0e2-ca5563385f4d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-14T11:19:43.000Z" - }, - "end": { - "$date": "2021-12-14T12:39:02.000Z" - }, - "events": [ - { - "uuid": "a25f9c01-481a-4167-acb5-20f606353a88", - "start": { - "$date": "2021-12-14T11:19:43.000Z" - }, - "end": { - "$date": "2021-12-14T12:39:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "47679381-729d-471f-9fc7-e040b855f381", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-14T16:14:33.000Z" - }, - "end": { - "$date": "2021-12-14T16:49:24.000Z" - }, - "events": [ - { - "uuid": "d8f03ef0-85fa-4a85-a366-0b88cf60fea0", - "start": { - "$date": "2021-12-14T16:14:33.000Z" - }, - "end": { - "$date": "2021-12-14T16:49:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "4aacac29-db04-4d98-bddf-ab59c5434b45", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-14T18:45:28.000Z" - }, - "end": { - "$date": "2021-12-14T19:03:59.000Z" - }, - "events": [ - { - "uuid": "20e2ec15-6786-437d-9eef-b6d84bf3ca54", - "start": { - "$date": "2021-12-14T18:45:28.000Z" - }, - "end": { - "$date": "2021-12-14T19:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5c856ecc-a1e2-4f18-b31c-7fb30d188bab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-14T18:46:58.000Z" - }, - "end": { - "$date": "2021-12-14T20:47:07.000Z" - }, - "events": [ - { - "uuid": "e4b5a5f1-8b9b-40a1-81cb-61db199de3af", - "start": { - "$date": "2021-12-14T18:46:58.000Z" - }, - "end": { - "$date": "2021-12-14T20:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a0a80deb-2689-40c8-a182-52ced9e9bc9c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-14T21:02:10.000Z" - }, - "end": { - "$date": "2021-12-14T23:28:16.000Z" - }, - "events": [ - { - "uuid": "08783c63-eb36-4848-8831-ff2378ec38a1", - "start": { - "$date": "2021-12-14T21:02:10.000Z" - }, - "end": { - "$date": "2021-12-14T21:46:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7c02a59-28e4-4ebf-8755-6e3f119d9529", - "start": { - "$date": "2021-12-14T21:46:10.000Z" - }, - "end": { - "$date": "2021-12-14T21:52:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "35d46d27-59e4-4b90-bde1-7dcacedd1347", - "start": { - "$date": "2021-12-14T21:52:10.000Z" - }, - "end": { - "$date": "2021-12-14T22:19:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "238b1183-6b6b-427f-8ebd-b966a82bf29c", - "start": { - "$date": "2021-12-14T22:19:10.000Z" - }, - "end": { - "$date": "2021-12-14T22:21:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b3d0fd18-5fb5-40a0-9848-b947b6fcd7e4", - "start": { - "$date": "2021-12-14T22:21:10.000Z" - }, - "end": { - "$date": "2021-12-14T23:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4aa1e342-266f-48cc-961e-9c2b355ae42b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-14T23:14:26.000Z" - }, - "end": { - "$date": "2021-12-14T23:16:56.000Z" - }, - "events": [ - { - "uuid": "43ad07f3-97e2-46cb-9ff5-e6d2ee431ead", - "start": { - "$date": "2021-12-14T23:14:26.000Z" - }, - "end": { - "$date": "2021-12-14T23:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13905b0b-3ae6-468b-982d-d65eb76413ce", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-14T23:23:10.000Z" - }, - "end": { - "$date": "2021-12-14T23:55:33.000Z" - }, - "events": [ - { - "uuid": "02f2197b-9370-49ec-a292-307d65bde491", - "start": { - "$date": "2021-12-14T23:23:10.000Z" - }, - "end": { - "$date": "2021-12-14T23:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cab3eeab-36fe-4823-8798-1a0c7952c793", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-14T23:28:30.000Z" - }, - "end": { - "$date": "2021-12-14T23:30:36.000Z" - }, - "events": [ - { - "uuid": "5a3353e6-82c5-4574-9107-db84c0c07e55", - "start": { - "$date": "2021-12-14T23:28:30.000Z" - }, - "end": { - "$date": "2021-12-14T23:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b49c9096-a56b-44a5-be1e-8cb038a6a832", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-14T23:30:46.000Z" - }, - "end": { - "$date": "2021-12-15T01:10:36.000Z" - }, - "events": [ - { - "uuid": "9ae1e090-3c86-4611-8014-7f0767e4bd46", - "start": { - "$date": "2021-12-14T23:30:46.000Z" - }, - "end": { - "$date": "2021-12-15T01:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "15ac238a-2e15-46f7-a2c5-358dfdc65ef2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-14T23:37:56.000Z" - }, - "end": { - "$date": "2021-12-15T00:45:48.000Z" - }, - "events": [ - { - "uuid": "67bd82b4-ed72-4e1f-ad10-9d33acc350da", - "start": { - "$date": "2021-12-14T23:37:56.000Z" - }, - "end": { - "$date": "2021-12-15T00:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98acbb3d-0fcc-43e1-9c4f-f0e9969ac9cb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-14T23:56:36.000Z" - }, - "end": { - "$date": "2021-12-15T00:03:36.000Z" - }, - "events": [ - { - "uuid": "64ceaff6-6ce4-42f5-b43d-118b14223b82", - "start": { - "$date": "2021-12-14T23:56:36.000Z" - }, - "end": { - "$date": "2021-12-15T00:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "307026f7-e498-4c44-b4cf-6d4e765c9b52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-15T00:16:55.000Z" - }, - "end": { - "$date": "2021-12-15T00:52:27.000Z" - }, - "events": [ - { - "uuid": "ffae40e2-0a66-4812-ac26-d61cef6c1aca", - "start": { - "$date": "2021-12-15T00:16:55.000Z" - }, - "end": { - "$date": "2021-12-15T00:52:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6561caa5-18b6-431d-834d-3528579cc4cd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-15T00:20:25.000Z" - }, - "end": { - "$date": "2021-12-15T04:39:27.000Z" - }, - "events": [ - { - "uuid": "a2db5094-952f-4e0d-85cc-3073209eedc3", - "start": { - "$date": "2021-12-15T00:20:25.000Z" - }, - "end": { - "$date": "2021-12-15T04:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f058932f-6219-4a8c-909c-13b93925c60a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-15T00:47:06.000Z" - }, - "end": { - "$date": "2021-12-15T01:06:38.000Z" - }, - "events": [ - { - "uuid": "f2d6613d-d807-4cd8-8df8-49d1a038ce08", - "start": { - "$date": "2021-12-15T00:47:06.000Z" - }, - "end": { - "$date": "2021-12-15T01:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fcbddad7-295e-47a9-9877-6af4f15ba939", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-15T01:10:46.000Z" - }, - "end": { - "$date": "2021-12-15T02:18:20.000Z" - }, - "events": [ - { - "uuid": "dbf6aa4e-80c9-4bad-9e7b-12e70ee0c4c0", - "start": { - "$date": "2021-12-15T01:10:46.000Z" - }, - "end": { - "$date": "2021-12-15T02:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c939143c-cfc2-4428-848d-64b814ae7374", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-15T02:17:43.000Z" - }, - "end": { - "$date": "2021-12-15T03:28:30.000Z" - }, - "events": [ - { - "uuid": "050c425b-ec6d-4a3a-9c62-786279125f95", - "start": { - "$date": "2021-12-15T02:17:43.000Z" - }, - "end": { - "$date": "2021-12-15T03:28:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a979d59-3c0b-4156-afa5-31ba9ebee597", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-15T02:22:20.000Z" - }, - "end": { - "$date": "2021-12-15T02:39:30.000Z" - }, - "events": [ - { - "uuid": "59809d47-229c-4f55-833a-70e78b148192", - "start": { - "$date": "2021-12-15T02:22:20.000Z" - }, - "end": { - "$date": "2021-12-15T02:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da65ac06-03a2-4478-a2f5-755565288812", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-15T02:40:11.000Z" - }, - "end": { - "$date": "2021-12-15T02:54:16.000Z" - }, - "events": [ - { - "uuid": "2adb9964-c152-453c-8bb6-a82c053fc631", - "start": { - "$date": "2021-12-15T02:40:11.000Z" - }, - "end": { - "$date": "2021-12-15T02:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "19addbc4-d9e7-41f4-8771-081c222b8c8b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-15T02:53:55.000Z" - }, - "end": { - "$date": "2021-12-15T03:16:36.000Z" - }, - "events": [ - { - "uuid": "21f8a352-ced6-4d87-a1ea-a51481a6ea58", - "start": { - "$date": "2021-12-15T02:53:55.000Z" - }, - "end": { - "$date": "2021-12-15T03:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6d974825-7ce2-4e1f-930a-57fa0965838d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-15T03:24:32.000Z" - }, - "end": { - "$date": "2021-12-15T04:23:46.000Z" - }, - "events": [ - { - "uuid": "a9736d31-490f-4e90-b4ce-ce2f13a55863", - "start": { - "$date": "2021-12-15T03:24:32.000Z" - }, - "end": { - "$date": "2021-12-15T04:23:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "31df7da6-53d4-4146-8939-e26543ef0b42", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-15T03:29:42.000Z" - }, - "end": { - "$date": "2021-12-15T04:37:08.000Z" - }, - "events": [ - { - "uuid": "9f37a0da-ff3e-462a-8846-b582e89a77f7", - "start": { - "$date": "2021-12-15T03:29:42.000Z" - }, - "end": { - "$date": "2021-12-15T04:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "2a2cf98f-83d8-4931-ab9b-07066d6eb18b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-15T03:46:11.000Z" - }, - "end": { - "$date": "2021-12-15T04:37:04.000Z" - }, - "events": [ - { - "uuid": "a30d1e5a-fbcb-4f0e-9229-10bde98d8485", - "start": { - "$date": "2021-12-15T03:46:11.000Z" - }, - "end": { - "$date": "2021-12-15T04:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "9758b40e-c19b-4757-94d6-b7bff03a9f47", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-15T04:20:12.000Z" - }, - "end": { - "$date": "2021-12-15T06:06:30.000Z" - }, - "events": [ - { - "uuid": "3bef9b12-9246-4370-b873-ad286831b953", - "start": { - "$date": "2021-12-15T04:20:12.000Z" - }, - "end": { - "$date": "2021-12-15T06:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2023b76e-14ee-4693-93bf-489ba0549779", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-15T04:20:51.000Z" - }, - "end": { - "$date": "2021-12-15T04:35:28.000Z" - }, - "events": [ - { - "uuid": "c2333a9b-591e-4d44-af04-7240d19f7c53", - "start": { - "$date": "2021-12-15T04:20:51.000Z" - }, - "end": { - "$date": "2021-12-15T04:35:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0fa05a96-bd64-4cfa-98af-b4932f0af01a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-15T01:10:46.000Z" - }, - "end": { - "$date": "2021-12-15T07:25:16.000Z" - }, - "events": [ - { - "uuid": "1c8a01e7-eecc-4874-b6d1-2a2633aa0c8f", - "start": { - "$date": "2021-12-15T01:10:46.000Z" - }, - "end": { - "$date": "2021-12-15T07:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d3013310-1470-4827-a94c-704cf36fe243", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-15T04:23:47.000Z" - }, - "end": { - "$date": "2021-12-15T04:56:42.000Z" - }, - "events": [ - { - "uuid": "874fa84d-081f-4dd8-9821-f117cb553595", - "start": { - "$date": "2021-12-15T04:23:47.000Z" - }, - "end": { - "$date": "2021-12-15T04:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ec71985e-cec6-44c8-ab39-184477bc133b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-15T04:37:39.000Z" - }, - "end": { - "$date": "2021-12-15T07:58:25.000Z" - }, - "events": [ - { - "uuid": "c66b4ce5-28a7-4d29-b2a1-ace8711d46fa", - "start": { - "$date": "2021-12-15T04:37:39.000Z" - }, - "end": { - "$date": "2021-12-15T07:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c802620c-45ff-4040-b21a-99d45fbd2def", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-15T04:38:29.000Z" - }, - "end": { - "$date": "2021-12-15T07:54:54.000Z" - }, - "events": [ - { - "uuid": "ece20a2a-fdf8-4871-998d-4ffdf0c02536", - "start": { - "$date": "2021-12-15T04:38:29.000Z" - }, - "end": { - "$date": "2021-12-15T07:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9eb4a1d7-094c-4dd9-a79f-5a5e38a88b5c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-15T04:45:35.000Z" - }, - "end": { - "$date": "2021-12-15T05:06:03.000Z" - }, - "events": [ - { - "uuid": "58f26443-ebc6-4964-9fa2-40520c57f412", - "start": { - "$date": "2021-12-15T04:45:35.000Z" - }, - "end": { - "$date": "2021-12-15T05:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc564d5f-1ee4-45b8-8deb-7d7581a3b11e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-15T05:09:13.000Z" - }, - "end": { - "$date": "2021-12-15T05:29:41.000Z" - }, - "events": [ - { - "uuid": "47805d04-e4e3-4fa0-9cee-797e0bf55678", - "start": { - "$date": "2021-12-15T05:09:13.000Z" - }, - "end": { - "$date": "2021-12-15T05:29:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6579108-1bdb-46f2-b00b-eccbafee9de1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-15T05:16:10.000Z" - }, - "end": { - "$date": "2021-12-15T05:50:47.000Z" - }, - "events": [ - { - "uuid": "c386a7dc-ea2c-4bc1-8427-841fdee1e822", - "start": { - "$date": "2021-12-15T05:16:10.000Z" - }, - "end": { - "$date": "2021-12-15T05:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f68a9e2-963b-4332-a692-2dd2dbd149a7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-15T05:41:16.000Z" - }, - "end": { - "$date": "2021-12-15T06:08:41.000Z" - }, - "events": [ - { - "uuid": "bcced63a-49d9-48a2-bac8-00093e37c9b1", - "start": { - "$date": "2021-12-15T05:41:16.000Z" - }, - "end": { - "$date": "2021-12-15T06:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1679b6fb-92d1-4044-bffb-3b08b6254be4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-15T05:41:16.000Z" - }, - "end": { - "$date": "2021-12-15T06:08:45.000Z" - }, - "events": [ - { - "uuid": "2c12e8a8-af73-470c-85d1-aa082bdfe4c1", - "start": { - "$date": "2021-12-15T05:41:16.000Z" - }, - "end": { - "$date": "2021-12-15T06:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0c00786b-a2f5-4ef9-afb1-51a4b005d92e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-15T05:46:09.000Z" - }, - "end": { - "$date": "2021-12-15T07:55:22.000Z" - }, - "events": [ - { - "uuid": "f24f9701-f01d-4a6b-ab65-f933f2538196", - "start": { - "$date": "2021-12-15T05:46:09.000Z" - }, - "end": { - "$date": "2021-12-15T07:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5be5b4fa-2f89-4688-b7cd-0c9f3c601709", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-15T05:55:42.000Z" - }, - "end": { - "$date": "2021-12-15T06:25:29.000Z" - }, - "events": [ - { - "uuid": "ac871f86-ddc2-45dc-801d-59f767679cee", - "start": { - "$date": "2021-12-15T05:55:42.000Z" - }, - "end": { - "$date": "2021-12-15T06:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9cfff2b-46a0-4ecf-8549-cff26eb6b27f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-15T06:14:36.000Z" - }, - "end": { - "$date": "2021-12-15T06:50:22.000Z" - }, - "events": [ - { - "uuid": "c8860ab5-73ac-4827-a528-7573479338df", - "start": { - "$date": "2021-12-15T06:14:36.000Z" - }, - "end": { - "$date": "2021-12-15T06:50:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c93305ce-186e-4d9a-9013-a307ca602c0e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-15T06:14:38.000Z" - }, - "end": { - "$date": "2021-12-15T06:50:29.000Z" - }, - "events": [ - { - "uuid": "2d62c2d9-4a68-4e62-94ff-e9cb13c5f09a", - "start": { - "$date": "2021-12-15T06:14:38.000Z" - }, - "end": { - "$date": "2021-12-15T06:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "790a2b39-130a-49a2-9d88-50064a1d5f89", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-15T06:14:28.000Z" - }, - "end": { - "$date": "2021-12-15T06:50:18.000Z" - }, - "events": [ - { - "uuid": "8a76f8c2-fabf-4d52-ad9d-07da4a722362", - "start": { - "$date": "2021-12-15T06:14:28.000Z" - }, - "end": { - "$date": "2021-12-15T06:50:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d20b0f3a-5872-47f1-a703-f6fda130666f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-15T06:56:03.000Z" - }, - "end": { - "$date": "2021-12-15T07:17:43.000Z" - }, - "events": [ - { - "uuid": "d53655bd-0145-4009-ad76-b7a5251aa936", - "start": { - "$date": "2021-12-15T06:56:03.000Z" - }, - "end": { - "$date": "2021-12-15T07:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb238c0a-55ab-4f3e-8b9d-e353a4856735", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-15T06:56:00.000Z" - }, - "end": { - "$date": "2021-12-15T07:17:45.000Z" - }, - "events": [ - { - "uuid": "0b39e55a-8e9a-4acd-a936-2b41ef27134d", - "start": { - "$date": "2021-12-15T06:56:00.000Z" - }, - "end": { - "$date": "2021-12-15T07:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "160a96d1-0e42-49ec-9de0-4ed8d42ca3ef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-15T06:55:59.000Z" - }, - "end": { - "$date": "2021-12-15T07:17:39.000Z" - }, - "events": [ - { - "uuid": "f0853ced-5014-43cc-9193-3d30c4b8ed47", - "start": { - "$date": "2021-12-15T06:55:59.000Z" - }, - "end": { - "$date": "2021-12-15T07:17:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fc13afb7-864e-4c4d-a4bf-9ddac3d82516", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-15T08:16:21.000Z" - }, - "end": { - "$date": "2021-12-15T12:59:43.000Z" - }, - "events": [ - { - "uuid": "e44128a1-419f-4329-a7b8-acab5c010fdd", - "start": { - "$date": "2021-12-15T08:16:21.000Z" - }, - "end": { - "$date": "2021-12-15T12:59:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "810ac126-c134-4d29-aede-45eadecfd644", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-15T14:15:17.000Z" - }, - "end": { - "$date": "2021-12-15T14:51:23.000Z" - }, - "events": [ - { - "uuid": "81f77e3f-8a3c-4e1f-855f-0a9cb208313f", - "start": { - "$date": "2021-12-15T14:15:17.000Z" - }, - "end": { - "$date": "2021-12-15T14:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a5dfbaf4-9ea1-4dde-ab3d-b1aa2c834553", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-15T19:59:01.000Z" - }, - "end": { - "$date": "2021-12-15T20:12:18.000Z" - }, - "events": [ - { - "uuid": "5a47158e-6291-4eaf-9297-13d1c7c27578", - "start": { - "$date": "2021-12-15T19:59:01.000Z" - }, - "end": { - "$date": "2021-12-15T20:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "6fb4f2ec-8d53-443b-81e8-d46ed6af780f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-15T22:15:47.000Z" - }, - "end": { - "$date": "2021-12-15T22:30:49.000Z" - }, - "events": [ - { - "uuid": "e827b2b7-2a41-4755-a89e-1dda3e251634", - "start": { - "$date": "2021-12-15T22:15:47.000Z" - }, - "end": { - "$date": "2021-12-15T22:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "461ca4d4-abf0-4ec7-974a-e046a4e15da1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-15T22:31:30.000Z" - }, - "end": { - "$date": "2021-12-15T23:37:53.000Z" - }, - "events": [ - { - "uuid": "eb3285fb-27cb-4601-9ef5-210013ca8757", - "start": { - "$date": "2021-12-15T22:31:30.000Z" - }, - "end": { - "$date": "2021-12-15T23:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "7b59a8b6-3245-4eb0-aa21-18d518c6c9ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-15T22:31:37.000Z" - }, - "end": { - "$date": "2021-12-15T23:42:40.000Z" - }, - "events": [ - { - "uuid": "322a8a40-8b55-4ba6-a81f-0db4a80d35f9", - "start": { - "$date": "2021-12-15T22:31:37.000Z" - }, - "end": { - "$date": "2021-12-15T23:42:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4ad2c97b-1a43-43e0-988d-6ce1092e956a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-15T23:31:22.000Z" - }, - "end": { - "$date": "2021-12-16T01:33:47.000Z" - }, - "events": [ - { - "uuid": "ff1ad907-eecc-47ab-8bcb-9a8664f0065f", - "start": { - "$date": "2021-12-15T23:31:22.000Z" - }, - "end": { - "$date": "2021-12-16T01:33:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eddcf3f-b0af-460a-a09b-734abe408dae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T00:12:40.000Z" - }, - "end": { - "$date": "2021-12-16T00:26:25.000Z" - }, - "events": [ - { - "uuid": "3a19e220-856a-4dd8-995a-0c7e76729523", - "start": { - "$date": "2021-12-16T00:12:40.000Z" - }, - "end": { - "$date": "2021-12-16T00:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a46c51ba-0ce6-4e3b-ba6d-d4094ca47f29", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-16T00:21:16.000Z" - }, - "end": { - "$date": "2021-12-16T00:32:33.000Z" - }, - "events": [ - { - "uuid": "fe8f58cb-d376-4a44-b159-4c41a4534f07", - "start": { - "$date": "2021-12-16T00:21:16.000Z" - }, - "end": { - "$date": "2021-12-16T00:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cf2b9e2-1b8d-401e-b3a1-4b91a01a80cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T00:28:01.000Z" - }, - "end": { - "$date": "2021-12-16T00:44:00.000Z" - }, - "events": [ - { - "uuid": "37fc768a-aecf-4370-aa18-d7fc94c6bb28", - "start": { - "$date": "2021-12-16T00:28:01.000Z" - }, - "end": { - "$date": "2021-12-16T00:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a209eb7-2b32-4a34-9c28-fb77e229c3c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T00:49:37.000Z" - }, - "end": { - "$date": "2021-12-16T01:05:02.000Z" - }, - "events": [ - { - "uuid": "cdf62bc9-72a7-458b-9a70-0411fed738ef", - "start": { - "$date": "2021-12-16T00:49:37.000Z" - }, - "end": { - "$date": "2021-12-16T01:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0ac50734-7e73-4d21-ac70-6d0134c5aa90", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-16T01:01:10.000Z" - }, - "end": { - "$date": "2021-12-16T01:42:32.000Z" - }, - "events": [ - { - "uuid": "f46211c5-1d0f-44df-b47f-cac364a8b81b", - "start": { - "$date": "2021-12-16T01:01:10.000Z" - }, - "end": { - "$date": "2021-12-16T01:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "882a0400-2912-4d4e-9c6d-7800179865cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T01:13:39.000Z" - }, - "end": { - "$date": "2021-12-16T01:30:29.000Z" - }, - "events": [ - { - "uuid": "e76084b1-1fc5-488e-82ef-a20df343ea5f", - "start": { - "$date": "2021-12-16T01:13:39.000Z" - }, - "end": { - "$date": "2021-12-16T01:30:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0cf4cef-7228-48e8-ab81-56829358aa69", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-16T01:19:34.000Z" - }, - "end": { - "$date": "2021-12-16T01:54:38.000Z" - }, - "events": [ - { - "uuid": "9fdc7a2d-75c3-44c7-a2bf-59ead96ec8c8", - "start": { - "$date": "2021-12-16T01:19:34.000Z" - }, - "end": { - "$date": "2021-12-16T01:54:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecba64e5-6b47-4096-b1e0-d5a4ee446623", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T01:34:14.000Z" - }, - "end": { - "$date": "2021-12-16T01:45:04.000Z" - }, - "events": [ - { - "uuid": "61de732f-8ffe-40d1-8ad9-811652a9589d", - "start": { - "$date": "2021-12-16T01:34:14.000Z" - }, - "end": { - "$date": "2021-12-16T01:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "89522f89-738b-459a-a5a0-110c071893fb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T01:33:57.000Z" - }, - "end": { - "$date": "2021-12-16T02:48:15.000Z" - }, - "events": [ - { - "uuid": "2c091388-6375-4e19-95bd-a25c581b480f", - "start": { - "$date": "2021-12-16T01:33:57.000Z" - }, - "end": { - "$date": "2021-12-16T02:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c69d768c-ff90-4e34-884e-8c7fdc39b991", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-16T01:55:46.000Z" - }, - "end": { - "$date": "2021-12-16T02:15:06.000Z" - }, - "events": [ - { - "uuid": "44d05bd9-0560-4419-ae72-3b8811221bb4", - "start": { - "$date": "2021-12-16T01:55:46.000Z" - }, - "end": { - "$date": "2021-12-16T02:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4691d694-6496-431a-9010-ea565074312c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T01:50:30.000Z" - }, - "end": { - "$date": "2021-12-16T02:07:35.000Z" - }, - "events": [ - { - "uuid": "c4a76de5-8435-48e0-a560-7deaf4eaba71", - "start": { - "$date": "2021-12-16T01:50:30.000Z" - }, - "end": { - "$date": "2021-12-16T02:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "f6a2c84b-3bb9-487b-a78e-b15fc9358451", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-16T01:56:43.000Z" - }, - "end": { - "$date": "2021-12-16T02:07:50.000Z" - }, - "events": [ - { - "uuid": "9517be2d-9a79-464a-9727-846cdd81f3e9", - "start": { - "$date": "2021-12-16T01:56:43.000Z" - }, - "end": { - "$date": "2021-12-16T02:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "ea5bd757-16e6-419d-92ef-998f49a0eb01", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-16T02:01:24.000Z" - }, - "end": { - "$date": "2021-12-16T06:20:08.000Z" - }, - "events": [ - { - "uuid": "be48c0eb-045d-4397-86a5-72c49321ef73", - "start": { - "$date": "2021-12-16T02:01:24.000Z" - }, - "end": { - "$date": "2021-12-16T06:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cdc6ae9-08db-412d-bdbf-37a9f4db4dcc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-16T02:05:39.000Z" - }, - "end": { - "$date": "2021-12-16T02:32:06.000Z" - }, - "events": [ - { - "uuid": "49888fa1-4311-4833-a77f-4bbe6631f489", - "start": { - "$date": "2021-12-16T02:05:39.000Z" - }, - "end": { - "$date": "2021-12-16T02:32:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01be7bfd-bfd6-41a0-986e-9cac5f9e62f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-16T02:15:11.000Z" - }, - "end": { - "$date": "2021-12-16T02:33:30.000Z" - }, - "events": [ - { - "uuid": "f6716c1e-f0a0-4257-839b-75a692a3e56e", - "start": { - "$date": "2021-12-16T02:15:11.000Z" - }, - "end": { - "$date": "2021-12-16T02:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdea037b-4772-4db6-8809-ea70988e8d4c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-16T02:17:21.000Z" - }, - "end": { - "$date": "2021-12-16T02:35:42.000Z" - }, - "events": [ - { - "uuid": "b1f7fe89-eba6-448d-be03-e6a98bc0c74b", - "start": { - "$date": "2021-12-16T02:17:21.000Z" - }, - "end": { - "$date": "2021-12-16T02:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b67ed1b1-8e01-4c3d-87d1-29a71617e86b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-16T02:39:03.000Z" - }, - "end": { - "$date": "2021-12-16T03:07:25.000Z" - }, - "events": [ - { - "uuid": "cac890a5-4dff-4e97-9bcb-2b53b23eef50", - "start": { - "$date": "2021-12-16T02:39:03.000Z" - }, - "end": { - "$date": "2021-12-16T03:07:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed633976-e4df-480c-9b19-9982e104d572", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-16T02:38:47.000Z" - }, - "end": { - "$date": "2021-12-16T02:58:53.000Z" - }, - "events": [ - { - "uuid": "4e09f8d5-18c1-4d7d-832a-b469b711874b", - "start": { - "$date": "2021-12-16T02:38:47.000Z" - }, - "end": { - "$date": "2021-12-16T02:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "099516a2-ff5f-4374-b1be-6a999c432be6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-16T03:01:03.000Z" - }, - "end": { - "$date": "2021-12-16T03:16:23.000Z" - }, - "events": [ - { - "uuid": "e97ba944-f8e8-4bcb-a824-c01705e54dae", - "start": { - "$date": "2021-12-16T03:01:03.000Z" - }, - "end": { - "$date": "2021-12-16T03:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "00db9196-c0d3-482c-a23d-63072f39cd9b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T03:02:22.000Z" - }, - "end": { - "$date": "2021-12-16T03:04:10.000Z" - }, - "events": [ - { - "uuid": "e186ff65-b1fd-4796-afdd-1dd32cf5c259", - "start": { - "$date": "2021-12-16T03:02:22.000Z" - }, - "end": { - "$date": "2021-12-16T03:04:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b8cec077-7982-4035-bedf-af273a710cc6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T03:04:41.000Z" - }, - "end": { - "$date": "2021-12-16T04:02:45.000Z" - }, - "events": [ - { - "uuid": "6e91b228-ddd4-44e0-bd06-12f2a06eb857", - "start": { - "$date": "2021-12-16T03:04:41.000Z" - }, - "end": { - "$date": "2021-12-16T03:26:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "351d5b8f-2bd8-4db9-afb3-f24791f1a714", - "start": { - "$date": "2021-12-16T03:26:41.000Z" - }, - "end": { - "$date": "2021-12-16T03:31:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0937047f-0542-4aee-bc94-13bc27829d99", - "start": { - "$date": "2021-12-16T03:31:41.000Z" - }, - "end": { - "$date": "2021-12-16T03:41:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2d9ea09-2ab6-4ead-8b06-e3f4acd7a904", - "start": { - "$date": "2021-12-16T03:41:41.000Z" - }, - "end": { - "$date": "2021-12-16T04:02:45.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8916e7e-fe0c-4ee6-9806-564b19fcfb46", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-16T03:13:16.000Z" - }, - "end": { - "$date": "2021-12-16T03:45:54.000Z" - }, - "events": [ - { - "uuid": "dd269118-f607-4b90-b0af-74a8a31c2c91", - "start": { - "$date": "2021-12-16T03:13:16.000Z" - }, - "end": { - "$date": "2021-12-16T03:45:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32899b30-64aa-4f23-8b0c-b3d32b5b010e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-16T03:18:48.000Z" - }, - "end": { - "$date": "2021-12-16T03:32:39.000Z" - }, - "events": [ - { - "uuid": "83b88b2d-ee76-41d6-bbb4-337bb9187acb", - "start": { - "$date": "2021-12-16T03:18:48.000Z" - }, - "end": { - "$date": "2021-12-16T03:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "9bb95215-ff2d-4501-b131-c16812f81a48", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-16T03:51:34.000Z" - }, - "end": { - "$date": "2021-12-16T04:27:08.000Z" - }, - "events": [ - { - "uuid": "22f0e76e-f42b-4def-a4b5-e5d116515939", - "start": { - "$date": "2021-12-16T03:51:34.000Z" - }, - "end": { - "$date": "2021-12-16T04:27:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c3d664ea-eb30-4407-b5af-9c721c6ac696", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T04:08:25.000Z" - }, - "end": { - "$date": "2021-12-16T07:18:58.000Z" - }, - "events": [ - { - "uuid": "45ec73c0-8df0-406c-a4d5-291b48ec73a9", - "start": { - "$date": "2021-12-16T04:08:25.000Z" - }, - "end": { - "$date": "2021-12-16T07:18:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "59f75a98-a15e-4efd-926b-03e18e086065", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-16T04:12:25.000Z" - }, - "end": { - "$date": "2021-12-16T05:39:21.000Z" - }, - "events": [ - { - "uuid": "6b02680e-a863-4fb6-a3fc-423207a6bbd3", - "start": { - "$date": "2021-12-16T04:12:25.000Z" - }, - "end": { - "$date": "2021-12-16T05:39:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ab9f3c90-b582-479b-8734-db1536fc064b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-16T04:12:45.000Z" - }, - "end": { - "$date": "2021-12-16T05:38:41.000Z" - }, - "events": [ - { - "uuid": "43f5f6bb-2090-4c96-8829-e20e41cbd6ea", - "start": { - "$date": "2021-12-16T04:12:45.000Z" - }, - "end": { - "$date": "2021-12-16T05:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "75c1bcaf-249d-44fd-a28a-247996fd84b1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-16T04:29:49.000Z" - }, - "end": { - "$date": "2021-12-16T04:31:28.000Z" - }, - "events": [ - { - "uuid": "68e31611-f4ad-4c9a-9efc-5a8465e86149", - "start": { - "$date": "2021-12-16T04:29:49.000Z" - }, - "end": { - "$date": "2021-12-16T04:31:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a314258d-48c9-43b8-bde2-81cfaf626a2e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-16T04:31:38.000Z" - }, - "end": { - "$date": "2021-12-16T05:50:21.000Z" - }, - "events": [ - { - "uuid": "fcbf20ee-681a-4090-8f4c-6a8bcd818f14", - "start": { - "$date": "2021-12-16T04:31:38.000Z" - }, - "end": { - "$date": "2021-12-16T05:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f2ee1660-5d09-4d0e-8ac5-95c84f8cf738", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-16T04:32:40.000Z" - }, - "end": { - "$date": "2021-12-16T05:07:24.000Z" - }, - "events": [ - { - "uuid": "dd2fd9f5-16e2-431c-885e-2ba8658aa180", - "start": { - "$date": "2021-12-16T04:32:40.000Z" - }, - "end": { - "$date": "2021-12-16T05:07:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2693c068-cbc0-4024-ac21-c5cb2066d587", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-16T05:07:26.000Z" - }, - "end": { - "$date": "2021-12-16T05:26:46.000Z" - }, - "events": [ - { - "uuid": "380e082e-9e86-43a3-9030-c2e741e54137", - "start": { - "$date": "2021-12-16T05:07:26.000Z" - }, - "end": { - "$date": "2021-12-16T05:26:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "b69270ee-078b-486d-92fa-16ad2aeababf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-16T05:56:46.000Z" - }, - "end": { - "$date": "2021-12-16T06:17:29.000Z" - }, - "events": [ - { - "uuid": "bd2e87d9-0e78-4327-9373-b1806f66148c", - "start": { - "$date": "2021-12-16T05:56:46.000Z" - }, - "end": { - "$date": "2021-12-16T06:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1da9d435-187d-4908-bb77-6ec6abb4ebd2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-16T06:19:05.000Z" - }, - "end": { - "$date": "2021-12-16T06:42:51.000Z" - }, - "events": [ - { - "uuid": "e98d3f05-19a8-438e-8967-d81e667bcd79", - "start": { - "$date": "2021-12-16T06:19:05.000Z" - }, - "end": { - "$date": "2021-12-16T06:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "89f27ee2-4122-46ac-80b1-a02f78e5f727", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-16T06:31:49.000Z" - }, - "end": { - "$date": "2021-12-16T07:33:08.000Z" - }, - "events": [ - { - "uuid": "42fc2795-7ee2-4f11-af0c-17e2980e8540", - "start": { - "$date": "2021-12-16T06:31:49.000Z" - }, - "end": { - "$date": "2021-12-16T07:33:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "216fb7b5-12be-4bf3-8f3e-27efa9e653a4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-16T06:45:36.000Z" - }, - "end": { - "$date": "2021-12-16T07:02:47.000Z" - }, - "events": [ - { - "uuid": "d0ece2eb-025f-4ebb-945b-c354b82d7752", - "start": { - "$date": "2021-12-16T06:45:36.000Z" - }, - "end": { - "$date": "2021-12-16T07:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "efefadb9-159d-4b90-abd4-574b53c544c5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-16T08:32:37.000Z" - }, - "end": { - "$date": "2021-12-16T11:54:31.000Z" - }, - "events": [ - { - "uuid": "c4f26ee9-cbb2-43c1-9a11-a75da793fa78", - "start": { - "$date": "2021-12-16T08:32:37.000Z" - }, - "end": { - "$date": "2021-12-16T11:54:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "340144d9-fd06-4f2a-88d3-7dd87fffdcdf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-16T09:03:37.000Z" - }, - "end": { - "$date": "2021-12-16T09:28:37.000Z" - }, - "events": [ - { - "uuid": "be41695b-017e-4682-a77c-9d2b300761d0", - "start": { - "$date": "2021-12-16T09:03:37.000Z" - }, - "end": { - "$date": "2021-12-16T09:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26cd33ac-e855-449a-971b-27adfdd0bd1e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-16T09:30:08.000Z" - }, - "end": { - "$date": "2021-12-16T09:59:53.000Z" - }, - "events": [ - { - "uuid": "17436259-b0b3-4005-9711-a4a105caf2b2", - "start": { - "$date": "2021-12-16T09:30:08.000Z" - }, - "end": { - "$date": "2021-12-16T09:59:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "d9644275-43a5-44f9-86bf-f63ca21086ab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2021-12-16T16:58:08.000Z" - }, - "end": { - "$date": "2021-12-16T17:55:24.000Z" - }, - "events": [ - { - "uuid": "d893f656-c574-4697-9b0a-8f6d1a8f8f2b", - "start": { - "$date": "2021-12-16T16:58:08.000Z" - }, - "end": { - "$date": "2021-12-16T17:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "853f9c51-922c-4add-bc90-0b3b41d5ae03", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T17:46:35.000Z" - }, - "end": { - "$date": "2021-12-16T17:52:25.000Z" - }, - "events": [ - { - "uuid": "eb597ffa-1c0d-488c-aae0-89399703b0c5", - "start": { - "$date": "2021-12-16T17:46:35.000Z" - }, - "end": { - "$date": "2021-12-16T17:52:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "78b25707-b179-4f64-b5c4-2d5def2812a4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T18:54:26.000Z" - }, - "end": { - "$date": "2021-12-16T19:23:07.000Z" - }, - "events": [ - { - "uuid": "d8fcf02f-b302-4729-9188-682ad6bd2fcf", - "start": { - "$date": "2021-12-16T18:54:26.000Z" - }, - "end": { - "$date": "2021-12-16T19:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e9e46d43-d397-420c-9237-0101211d7a0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-16T21:23:13.000Z" - }, - "end": { - "$date": "2021-12-17T03:38:10.000Z" - }, - "events": [ - { - "uuid": "b857ff6f-290e-4567-a2c9-9bcf4fdfabd5", - "start": { - "$date": "2021-12-16T21:23:13.000Z" - }, - "end": { - "$date": "2021-12-16T23:15:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2db99611-c64d-4613-872f-9ea32168ba52", - "start": { - "$date": "2021-12-16T23:15:13.000Z" - }, - "end": { - "$date": "2021-12-16T23:22:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "68eb30a4-e329-4872-bd6c-69c43b839cea", - "start": { - "$date": "2021-12-16T23:22:13.000Z" - }, - "end": { - "$date": "2021-12-17T00:56:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6abb598a-f614-442b-9be4-efc9be42ea24", - "start": { - "$date": "2021-12-17T00:56:13.000Z" - }, - "end": { - "$date": "2021-12-17T01:01:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c7cf6bf-0e2d-4315-9211-98a738b5099f", - "start": { - "$date": "2021-12-17T01:01:13.000Z" - }, - "end": { - "$date": "2021-12-17T01:11:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c88178d4-4fa6-4a42-8ec7-44d9ebb93f1a", - "start": { - "$date": "2021-12-17T01:11:13.000Z" - }, - "end": { - "$date": "2021-12-17T01:18:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b325c533-bb79-407c-84b6-37babbd88682", - "start": { - "$date": "2021-12-17T01:18:13.000Z" - }, - "end": { - "$date": "2021-12-17T01:49:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7930f0d7-22dc-47d7-972e-2c51c3817ebd", - "start": { - "$date": "2021-12-17T01:49:13.000Z" - }, - "end": { - "$date": "2021-12-17T02:31:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2187234-3d25-48f8-af32-deb7453f3328", - "start": { - "$date": "2021-12-17T02:31:13.000Z" - }, - "end": { - "$date": "2021-12-17T03:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aa9b4be5-9136-4d12-9731-eb1c8a5e7b14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-16T23:00:29.000Z" - }, - "end": { - "$date": "2021-12-17T00:11:08.000Z" - }, - "events": [ - { - "uuid": "fa6fd6f6-9b9d-44ba-a488-59f2c884946a", - "start": { - "$date": "2021-12-16T23:00:29.000Z" - }, - "end": { - "$date": "2021-12-17T00:11:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ed5a24d0-49af-4c3c-8417-77a70ac0255c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-16T23:14:17.000Z" - }, - "end": { - "$date": "2021-12-16T23:40:26.000Z" - }, - "events": [ - { - "uuid": "ea74e940-57d7-4715-879d-7433cd016d82", - "start": { - "$date": "2021-12-16T23:14:17.000Z" - }, - "end": { - "$date": "2021-12-16T23:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b78aaa14-4490-4ca4-8780-ec6708dee437", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-16T23:38:16.000Z" - }, - "end": { - "$date": "2021-12-17T00:11:21.000Z" - }, - "events": [ - { - "uuid": "82376e43-ec25-4236-8dec-557fe8ec6457", - "start": { - "$date": "2021-12-16T23:38:16.000Z" - }, - "end": { - "$date": "2021-12-17T00:11:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5074582b-1d16-4cbf-b6fe-14778da82ad7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T00:20:00.000Z" - }, - "end": { - "$date": "2021-12-17T00:45:12.000Z" - }, - "events": [ - { - "uuid": "f62dcbfd-0640-4aa3-bac2-d501794720cd", - "start": { - "$date": "2021-12-17T00:20:00.000Z" - }, - "end": { - "$date": "2021-12-17T00:45:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6dd3f87-6930-4ec9-b7a9-cfe00fa832e7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T00:49:18.000Z" - }, - "end": { - "$date": "2021-12-17T01:23:41.000Z" - }, - "events": [ - { - "uuid": "cd4d67fd-a24c-4577-9b9d-d391352fcbce", - "start": { - "$date": "2021-12-17T00:49:18.000Z" - }, - "end": { - "$date": "2021-12-17T01:23:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "162cbfc6-93bb-4cae-9115-e4ab7cd35628", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-17T00:49:28.000Z" - }, - "end": { - "$date": "2021-12-17T01:28:29.000Z" - }, - "events": [ - { - "uuid": "2153bfd5-a8f2-4f88-aeb7-70df7b67d72f", - "start": { - "$date": "2021-12-17T00:49:28.000Z" - }, - "end": { - "$date": "2021-12-17T01:28:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6a73e6b-b1c0-43ad-b3b3-964c34304b98", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T01:31:13.000Z" - }, - "end": { - "$date": "2021-12-17T02:04:00.000Z" - }, - "events": [ - { - "uuid": "f38d17e2-52aa-4eef-af03-eb2b63867075", - "start": { - "$date": "2021-12-17T01:31:13.000Z" - }, - "end": { - "$date": "2021-12-17T02:04:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da172bcf-b55c-4df4-849f-2dc9affb7692", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-17T01:43:44.000Z" - }, - "end": { - "$date": "2021-12-17T02:04:35.000Z" - }, - "events": [ - { - "uuid": "404186f8-32bc-4280-b92b-471d99b9435c", - "start": { - "$date": "2021-12-17T01:43:44.000Z" - }, - "end": { - "$date": "2021-12-17T02:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6e186f8-d3c1-4281-a096-6a87b0924a10", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T02:08:37.000Z" - }, - "end": { - "$date": "2021-12-17T02:34:38.000Z" - }, - "events": [ - { - "uuid": "58c0ae91-a85a-445c-b8f7-7231035ff4f5", - "start": { - "$date": "2021-12-17T02:08:37.000Z" - }, - "end": { - "$date": "2021-12-17T02:34:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d987b6e-7fb1-4f72-abbf-a38da97920b0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T02:42:00.000Z" - }, - "end": { - "$date": "2021-12-17T03:22:14.000Z" - }, - "events": [ - { - "uuid": "67819781-4b2f-4d3f-a820-3f28b98a8454", - "start": { - "$date": "2021-12-17T02:42:00.000Z" - }, - "end": { - "$date": "2021-12-17T03:22:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91a3b33f-8af2-4f04-8a2e-6c009f8ea2b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T03:32:56.000Z" - }, - "end": { - "$date": "2021-12-17T04:09:09.000Z" - }, - "events": [ - { - "uuid": "80954192-ae06-42b2-a598-9bc02746f023", - "start": { - "$date": "2021-12-17T03:32:56.000Z" - }, - "end": { - "$date": "2021-12-17T04:09:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "862a2927-708f-4375-855b-5e0b840d2329", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-17T03:38:30.000Z" - }, - "end": { - "$date": "2021-12-17T06:47:52.000Z" - }, - "events": [ - { - "uuid": "a0e8360e-ecda-4c32-8404-a5291e978093", - "start": { - "$date": "2021-12-17T03:38:30.000Z" - }, - "end": { - "$date": "2021-12-17T06:47:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "03377455-7c74-434e-9bf0-2d4abd88a4f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-17T03:44:28.000Z" - }, - "end": { - "$date": "2021-12-17T03:46:29.000Z" - }, - "events": [ - { - "uuid": "ca872f2b-ae6a-4cc8-8fcd-21d0cb892d7c", - "start": { - "$date": "2021-12-17T03:44:28.000Z" - }, - "end": { - "$date": "2021-12-17T03:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "138b6914-cb60-42e3-8791-b9109739748e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-17T03:44:50.000Z" - }, - "end": { - "$date": "2021-12-17T04:10:31.000Z" - }, - "events": [ - { - "uuid": "73491ed7-eb2e-4cd6-a4fa-561555efd071", - "start": { - "$date": "2021-12-17T03:44:50.000Z" - }, - "end": { - "$date": "2021-12-17T04:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "6e909e44-351e-45d1-aa78-256f1076f795", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-17T03:47:53.000Z" - }, - "end": { - "$date": "2021-12-17T04:09:50.000Z" - }, - "events": [ - { - "uuid": "01f6a03f-aacf-4468-bd2d-f6999ba530e8", - "start": { - "$date": "2021-12-17T03:47:53.000Z" - }, - "end": { - "$date": "2021-12-17T04:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30baf4ad-14d8-473f-9593-e895bc628e2d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T04:14:35.000Z" - }, - "end": { - "$date": "2021-12-17T04:42:51.000Z" - }, - "events": [ - { - "uuid": "111afe43-c851-48a5-ab06-0c6ffd7d00b7", - "start": { - "$date": "2021-12-17T04:14:35.000Z" - }, - "end": { - "$date": "2021-12-17T04:42:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "66b3310c-7530-4767-aabf-e339ea743d08", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-17T04:10:35.000Z" - }, - "end": { - "$date": "2021-12-17T08:51:48.000Z" - }, - "events": [ - { - "uuid": "6de21cc8-1ca1-45a9-adec-474b05692457", - "start": { - "$date": "2021-12-17T04:10:35.000Z" - }, - "end": { - "$date": "2021-12-17T08:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6347eb2e-800a-4333-b92e-0c3e8f055130", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-17T04:10:41.000Z" - }, - "end": { - "$date": "2021-12-17T04:28:54.000Z" - }, - "events": [ - { - "uuid": "fc7bc51c-f3dd-4f0b-9787-999e56e2d926", - "start": { - "$date": "2021-12-17T04:10:41.000Z" - }, - "end": { - "$date": "2021-12-17T04:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a892c594-1016-42ca-ab3a-1044b1425bf8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-17T04:13:00.000Z" - }, - "end": { - "$date": "2021-12-17T06:05:04.000Z" - }, - "events": [ - { - "uuid": "2f47e7b5-65fa-4073-8f76-e44be14c6097", - "start": { - "$date": "2021-12-17T04:13:00.000Z" - }, - "end": { - "$date": "2021-12-17T06:05:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c09fbb9a-e6c7-4a4c-8d4c-cf068fb4ecb4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-17T14:24:02.000Z" - }, - "end": { - "$date": "2021-12-17T16:13:44.000Z" - }, - "events": [ - { - "uuid": "cddfe891-51e3-4041-a30c-cadf5ffecfa9", - "start": { - "$date": "2021-12-17T14:24:02.000Z" - }, - "end": { - "$date": "2021-12-17T22:34:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3fa52259-c2a3-4f29-bf6f-99f43c26516a", - "start": { - "$date": "2021-12-17T22:34:02.000Z" - }, - "end": { - "$date": "2021-12-17T22:40:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d0d9398c-6781-420e-8386-b838d33ec90a", - "start": { - "$date": "2021-12-17T22:40:02.000Z" - }, - "end": { - "$date": "2021-12-18T00:59:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20134e1f-d651-4b9d-8ee1-f9086b194a4f", - "start": { - "$date": "2021-12-18T00:59:02.000Z" - }, - "end": { - "$date": "2021-12-17T16:13:44.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "72155707-d897-44d1-bc0d-8b0831792deb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-17T04:29:22.000Z" - }, - "end": { - "$date": "2021-12-17T07:52:19.000Z" - }, - "events": [ - { - "uuid": "36322e6f-998c-4832-bcd6-3ef14ee88f23", - "start": { - "$date": "2021-12-17T04:29:22.000Z" - }, - "end": { - "$date": "2021-12-17T07:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bf34cf1-23b4-4f28-aab7-a643854a19c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T04:47:36.000Z" - }, - "end": { - "$date": "2021-12-17T05:28:53.000Z" - }, - "events": [ - { - "uuid": "90cfa1d8-332f-4783-b828-ddff819658d9", - "start": { - "$date": "2021-12-17T04:47:36.000Z" - }, - "end": { - "$date": "2021-12-17T05:28:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d355c57-99ab-4c46-843c-85fdaa1db321", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T05:33:02.000Z" - }, - "end": { - "$date": "2021-12-17T05:57:07.000Z" - }, - "events": [ - { - "uuid": "0e02149d-3804-4ea8-8f71-d754aabc0427", - "start": { - "$date": "2021-12-17T05:33:02.000Z" - }, - "end": { - "$date": "2021-12-17T05:57:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "291636be-9c23-42ea-b2f2-e5dda8160fd4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T06:02:18.000Z" - }, - "end": { - "$date": "2021-12-17T06:44:53.000Z" - }, - "events": [ - { - "uuid": "a0ef7e29-8a79-4284-8d74-a1c51500dd86", - "start": { - "$date": "2021-12-17T06:02:18.000Z" - }, - "end": { - "$date": "2021-12-17T06:44:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc07295e-1cc5-4eb4-98e3-9c46bc8d193c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T06:45:07.000Z" - }, - "end": { - "$date": "2021-12-17T06:49:25.000Z" - }, - "events": [ - { - "uuid": "c9f1c6ad-b29c-4f93-be68-c8e54091fe98", - "start": { - "$date": "2021-12-17T06:45:07.000Z" - }, - "end": { - "$date": "2021-12-17T06:49:25.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aae7c349-5bed-4870-bd91-4f6f5619a99a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2021-12-17T07:52:59.000Z" - }, - "end": { - "$date": "2021-12-17T08:51:06.000Z" - }, - "events": [ - { - "uuid": "8263a57f-7438-4a8a-a08e-0fdabb54b6a7", - "start": { - "$date": "2021-12-17T07:52:59.000Z" - }, - "end": { - "$date": "2021-12-17T08:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85e1ddb3-bb79-4f15-b2bb-53ecfab8034a", - "uuid": "0a794199-e6da-4c1c-9270-8b4686527dc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-17T09:34:12.000Z" - }, - "end": { - "$date": "2021-12-17T09:50:14.000Z" - }, - "events": [ - { - "uuid": "4b3d527e-58af-4a0d-80d7-491e9b24d9d3", - "start": { - "$date": "2021-12-17T09:34:12.000Z" - }, - "end": { - "$date": "2021-12-17T09:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85e1ddb3-bb79-4f15-b2bb-53ecfab8034a", - "uuid": "9d10616e-14c7-4a5f-9767-7e9047fff060", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-17T09:51:26.000Z" - }, - "end": { - "$date": "2021-12-17T12:39:27.000Z" - }, - "events": [ - { - "uuid": "096a77a2-f251-4ade-abab-844211326e2f", - "start": { - "$date": "2021-12-17T09:51:26.000Z" - }, - "end": { - "$date": "2021-12-17T12:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72226fd9-6890-49d9-857f-a1c5f575a47b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-17T13:34:35.000Z" - }, - "end": { - "$date": "2021-12-17T13:57:00.000Z" - }, - "events": [ - { - "uuid": "c6d9f9af-c9f8-4a1c-bd3a-53b56508a3fe", - "start": { - "$date": "2021-12-17T13:34:35.000Z" - }, - "end": { - "$date": "2021-12-17T13:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df62727b-8977-4b36-805d-6c5e3f319875", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-17T15:47:06.000Z" - }, - "end": { - "$date": "2021-12-17T16:01:36.000Z" - }, - "events": [ - { - "uuid": "56fbe418-be60-41c3-b94b-9c3a67e27557", - "start": { - "$date": "2021-12-17T15:47:06.000Z" - }, - "end": { - "$date": "2021-12-17T16:01:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0d4b6f30-8b29-497d-bab6-ebcd52594f9d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-17T15:48:36.000Z" - }, - "end": { - "$date": "2021-12-17T16:48:21.000Z" - }, - "events": [ - { - "uuid": "567fc0f5-a47a-493f-96f2-c99e15152883", - "start": { - "$date": "2021-12-17T15:48:36.000Z" - }, - "end": { - "$date": "2021-12-17T16:48:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c7af6e0-47c9-48a6-8d25-5b2f8c4b58b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-17T16:34:16.000Z" - }, - "end": { - "$date": "2021-12-17T16:50:51.000Z" - }, - "events": [ - { - "uuid": "d82521b0-20d3-4072-ae2f-9feb191d8384", - "start": { - "$date": "2021-12-17T16:34:16.000Z" - }, - "end": { - "$date": "2021-12-17T16:50:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "9702b413-988d-42fb-9932-8378e0a7d54c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-17T16:53:07.000Z" - }, - "end": { - "$date": "2021-12-17T17:48:42.000Z" - }, - "events": [ - { - "uuid": "1d567645-c7d5-49de-b258-aaa700c2c3cc", - "start": { - "$date": "2021-12-17T16:53:07.000Z" - }, - "end": { - "$date": "2021-12-17T17:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "298e7382-e79f-4fa5-9b9e-b08c0dfbd678", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-17T18:33:45.000Z" - }, - "end": { - "$date": "2021-12-17T19:01:39.000Z" - }, - "events": [ - { - "uuid": "758fe7ce-149b-4b2b-aee6-0e29199507b6", - "start": { - "$date": "2021-12-17T18:33:45.000Z" - }, - "end": { - "$date": "2021-12-17T19:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f28973fc-2710-44fa-a6f6-0122607e5b6a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-17T19:04:03.000Z" - }, - "end": { - "$date": "2021-12-17T19:18:01.000Z" - }, - "events": [ - { - "uuid": "b33e7210-0418-400a-9cc8-360d4583796e", - "start": { - "$date": "2021-12-17T19:04:03.000Z" - }, - "end": { - "$date": "2021-12-17T19:18:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd8e378f-19e3-46fd-827e-1d19cfd9f666", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-17T20:32:08.000Z" - }, - "end": { - "$date": "2021-12-17T20:53:31.000Z" - }, - "events": [ - { - "uuid": "6ed31cdc-e7d6-4956-bdc1-0ed76199a33b", - "start": { - "$date": "2021-12-17T20:32:08.000Z" - }, - "end": { - "$date": "2021-12-17T20:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d885ab2d-0d36-41a7-b243-32dbc79347fe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-17T20:49:29.000Z" - }, - "end": { - "$date": "2021-12-17T22:01:22.000Z" - }, - "events": [ - { - "uuid": "f1121133-0a02-4a1e-9197-4f4d4c7b33b8", - "start": { - "$date": "2021-12-17T20:49:29.000Z" - }, - "end": { - "$date": "2021-12-17T21:17:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b39a0954-d8b1-471b-b4dc-863ccdf02a50", - "start": { - "$date": "2021-12-17T21:17:29.000Z" - }, - "end": { - "$date": "2021-12-17T21:22:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7490da66-92e0-4896-8a8a-539f5fc34931", - "start": { - "$date": "2021-12-17T21:22:29.000Z" - }, - "end": { - "$date": "2021-12-17T21:51:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35394663-a47f-427a-bc92-74fe8114348f", - "start": { - "$date": "2021-12-17T21:51:29.000Z" - }, - "end": { - "$date": "2021-12-17T21:55:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2142ca89-f418-40d1-a541-bda5224bca42", - "start": { - "$date": "2021-12-17T21:55:29.000Z" - }, - "end": { - "$date": "2021-12-17T22:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c21b6cdf-d6ef-486b-8f50-4b68723dc1e9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-17T20:56:26.000Z" - }, - "end": { - "$date": "2021-12-17T21:17:14.000Z" - }, - "events": [ - { - "uuid": "2514cdcb-2f79-425a-bc21-a36aadd389be", - "start": { - "$date": "2021-12-17T20:56:26.000Z" - }, - "end": { - "$date": "2021-12-17T21:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a45028b8-96d8-4e23-995b-2d22f1a27e4b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-17T21:19:33.000Z" - }, - "end": { - "$date": "2021-12-17T21:39:05.000Z" - }, - "events": [ - { - "uuid": "36c85b93-5248-435d-a5f7-f38b91c95ca7", - "start": { - "$date": "2021-12-17T21:19:33.000Z" - }, - "end": { - "$date": "2021-12-17T21:39:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b3487631-f4f2-4246-94a4-2efc05367901", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-17T22:27:04.000Z" - }, - "end": { - "$date": "2021-12-17T22:53:35.000Z" - }, - "events": [ - { - "uuid": "cbec36b9-b259-4609-b6df-75f635df77d6", - "start": { - "$date": "2021-12-17T22:27:04.000Z" - }, - "end": { - "$date": "2021-12-17T22:53:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f70fbae1-0d39-4018-b0a0-52231db58393", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-17T22:33:46.000Z" - }, - "end": { - "$date": "2021-12-18T00:52:53.000Z" - }, - "events": [ - { - "uuid": "e59fc962-1371-4473-b7e3-d55f55d10ef9", - "start": { - "$date": "2021-12-17T22:33:46.000Z" - }, - "end": { - "$date": "2021-12-18T00:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2598472a-8e20-4d1d-9be2-36bea5021b1f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T22:45:26.000Z" - }, - "end": { - "$date": "2021-12-17T23:25:40.000Z" - }, - "events": [ - { - "uuid": "00ab0fd9-ea4e-414e-a57d-71fed6df5217", - "start": { - "$date": "2021-12-17T22:45:26.000Z" - }, - "end": { - "$date": "2021-12-17T23:25:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "730bec36-06ab-4a16-9698-55deffac88a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-17T23:01:37.000Z" - }, - "end": { - "$date": "2021-12-17T23:35:33.000Z" - }, - "events": [ - { - "uuid": "f7794a87-a914-4d9e-a979-de5d141998d3", - "start": { - "$date": "2021-12-17T23:01:37.000Z" - }, - "end": { - "$date": "2021-12-17T23:35:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5369d3e2-50a0-4a67-b806-708cecb2a0e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-17T23:30:15.000Z" - }, - "end": { - "$date": "2021-12-18T00:12:03.000Z" - }, - "events": [ - { - "uuid": "46e6d991-2c8b-4394-92c6-9929a023532e", - "start": { - "$date": "2021-12-17T23:30:15.000Z" - }, - "end": { - "$date": "2021-12-18T00:12:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2b45fc53-e027-4f6f-bc8c-3409f95b1a3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-17T23:35:39.000Z" - }, - "end": { - "$date": "2021-12-18T00:42:46.000Z" - }, - "events": [ - { - "uuid": "8e6de2bf-a34a-4114-8938-552920f3eb7c", - "start": { - "$date": "2021-12-17T23:35:39.000Z" - }, - "end": { - "$date": "2021-12-18T00:42:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a74b9857-3e28-4ff2-927a-e8d3967db414", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T00:06:02.000Z" - }, - "end": { - "$date": "2021-12-18T00:38:16.000Z" - }, - "events": [ - { - "uuid": "647c7273-5b37-4be6-a56f-10feb0344bcf", - "start": { - "$date": "2021-12-18T00:06:02.000Z" - }, - "end": { - "$date": "2021-12-18T00:17:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f2706c0-1c15-4c91-9994-1ccfed9c2253", - "start": { - "$date": "2021-12-18T00:17:02.000Z" - }, - "end": { - "$date": "2021-12-18T00:38:16.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecfa5a94-cc42-4dee-8ec7-862f605a7079", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T00:20:25.000Z" - }, - "end": { - "$date": "2021-12-18T00:40:41.000Z" - }, - "events": [ - { - "uuid": "a018d625-4adb-4319-87d1-ecb92dbe93d8", - "start": { - "$date": "2021-12-18T00:20:25.000Z" - }, - "end": { - "$date": "2021-12-18T00:40:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4ba95ef-934b-4ba9-882e-584c52dca95d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T00:41:34.000Z" - }, - "end": { - "$date": "2021-12-18T00:57:51.000Z" - }, - "events": [ - { - "uuid": "2563404d-8319-4764-9e67-6d0e0383c075", - "start": { - "$date": "2021-12-18T00:41:34.000Z" - }, - "end": { - "$date": "2021-12-18T00:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e38196e4-6a2b-4cc1-bb93-533ac3af5ecb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T00:44:47.000Z" - }, - "end": { - "$date": "2021-12-18T01:16:49.000Z" - }, - "events": [ - { - "uuid": "2fb9588e-9df8-444f-b1de-9610e05b57a0", - "start": { - "$date": "2021-12-18T00:44:47.000Z" - }, - "end": { - "$date": "2021-12-18T01:16:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8af2eec2-1e33-42b1-a5c2-4b5319acba62", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-18T00:54:03.000Z" - }, - "end": { - "$date": "2021-12-18T05:46:43.000Z" - }, - "events": [ - { - "uuid": "178ad408-b9c8-4145-b137-ef230c064957", - "start": { - "$date": "2021-12-18T00:54:03.000Z" - }, - "end": { - "$date": "2021-12-18T01:08:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6230b850-b9b1-4985-92f8-48d396ee266a", - "start": { - "$date": "2021-12-18T01:08:03.000Z" - }, - "end": { - "$date": "2021-12-18T01:13:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "282ca1f2-afb0-4add-9989-dce9940baf5e", - "start": { - "$date": "2021-12-18T01:13:03.000Z" - }, - "end": { - "$date": "2021-12-18T03:54:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe73135e-a688-45b1-b14d-e04576f5cda8", - "start": { - "$date": "2021-12-18T03:54:03.000Z" - }, - "end": { - "$date": "2021-12-18T03:59:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "20f93006-a340-467a-8dee-d819e877e196", - "start": { - "$date": "2021-12-18T03:59:03.000Z" - }, - "end": { - "$date": "2021-12-18T04:12:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1da46c8-ade8-4c81-80b5-83675f06c12b", - "start": { - "$date": "2021-12-18T04:12:03.000Z" - }, - "end": { - "$date": "2021-12-18T04:15:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "433875be-bc33-40f2-baaa-84a2b5b1d850", - "start": { - "$date": "2021-12-18T04:15:03.000Z" - }, - "end": { - "$date": "2021-12-18T05:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d9a6c41f-5e6e-44bc-90bc-1d6feb6efac0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-18T00:56:02.000Z" - }, - "end": { - "$date": "2021-12-18T04:00:24.000Z" - }, - "events": [ - { - "uuid": "118f922c-4696-4441-8e49-0d77815bb85c", - "start": { - "$date": "2021-12-18T00:56:02.000Z" - }, - "end": { - "$date": "2021-12-18T01:20:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b43481a-5438-4bd0-bec7-1d8fa0ac0eef", - "start": { - "$date": "2021-12-18T01:20:02.000Z" - }, - "end": { - "$date": "2021-12-18T01:27:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d33ff2d7-ce6d-43fb-9ee2-4022ebc450f8", - "start": { - "$date": "2021-12-18T01:27:02.000Z" - }, - "end": { - "$date": "2021-12-18T03:39:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3b0ec9f-a813-4000-a7b8-fc6abe290474", - "start": { - "$date": "2021-12-18T03:39:02.000Z" - }, - "end": { - "$date": "2021-12-18T03:44:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a269f93e-7261-43e9-bba3-c60832d76a3f", - "start": { - "$date": "2021-12-18T03:44:02.000Z" - }, - "end": { - "$date": "2021-12-18T04:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6561cd3-4d6d-40f8-beb8-c56ceb4e9a53", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T01:01:11.000Z" - }, - "end": { - "$date": "2021-12-18T01:21:34.000Z" - }, - "events": [ - { - "uuid": "6b5e45bd-9220-4416-8fe1-b73eccbe5a8c", - "start": { - "$date": "2021-12-18T01:01:11.000Z" - }, - "end": { - "$date": "2021-12-18T01:21:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5237a5b5-c234-47ee-9c50-5e1a1c328f35", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-18T01:06:00.000Z" - }, - "end": { - "$date": "2021-12-18T03:55:44.000Z" - }, - "events": [ - { - "uuid": "10c8b7c2-db5e-446d-83e9-8dc275ce27e5", - "start": { - "$date": "2021-12-18T01:06:00.000Z" - }, - "end": { - "$date": "2021-12-18T03:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e7cab75-ad4d-4fe1-a314-74bfe46c4352", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T02:10:50.000Z" - }, - "end": { - "$date": "2021-12-18T02:29:47.000Z" - }, - "events": [ - { - "uuid": "6b9be951-e92b-46d6-846e-bdd75ed51705", - "start": { - "$date": "2021-12-18T02:10:50.000Z" - }, - "end": { - "$date": "2021-12-18T02:29:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b0c1015-a101-45b8-82a2-723298f86802", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T01:23:44.000Z" - }, - "end": { - "$date": "2021-12-18T01:49:28.000Z" - }, - "events": [ - { - "uuid": "b3795863-d864-4cc7-aa95-4ea88df6df9f", - "start": { - "$date": "2021-12-18T01:23:44.000Z" - }, - "end": { - "$date": "2021-12-18T01:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f2534b5-7117-422e-ad38-35057956be41", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T01:22:43.000Z" - }, - "end": { - "$date": "2021-12-18T01:43:43.000Z" - }, - "events": [ - { - "uuid": "92f2f261-8a59-4ef7-b6d3-ea954d33fef0", - "start": { - "$date": "2021-12-18T01:22:43.000Z" - }, - "end": { - "$date": "2021-12-18T01:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60dd260d-5d9d-49bd-b811-bdf762ba4796", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T01:48:09.000Z" - }, - "end": { - "$date": "2021-12-18T02:09:14.000Z" - }, - "events": [ - { - "uuid": "52ea8765-bfde-42be-9088-1c49530b3ab3", - "start": { - "$date": "2021-12-18T01:48:09.000Z" - }, - "end": { - "$date": "2021-12-18T02:09:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcb13480-44b3-4004-a2a5-fe5dad5ca70c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T01:52:02.000Z" - }, - "end": { - "$date": "2021-12-18T02:15:58.000Z" - }, - "events": [ - { - "uuid": "927e6181-ce7d-4241-9754-9dd915ad3f1e", - "start": { - "$date": "2021-12-18T01:52:02.000Z" - }, - "end": { - "$date": "2021-12-18T02:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "78a883a6-0c49-4dbe-a862-839ec40c2492", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T02:10:05.000Z" - }, - "end": { - "$date": "2021-12-18T02:38:21.000Z" - }, - "events": [ - { - "uuid": "110420d9-9120-4951-b6e9-9c6308e68904", - "start": { - "$date": "2021-12-18T02:10:05.000Z" - }, - "end": { - "$date": "2021-12-18T02:38:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "e3d90660-3d3d-4227-94bc-ca0a769bd74f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-18T02:10:20.000Z" - }, - "end": { - "$date": "2021-12-18T02:46:23.000Z" - }, - "events": [ - { - "uuid": "a62772e7-7001-488b-86e1-4877cf01cfbf", - "start": { - "$date": "2021-12-18T02:10:20.000Z" - }, - "end": { - "$date": "2021-12-18T02:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8afd9298-b2dc-4075-b63b-eb852d7f3dc5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T02:18:21.000Z" - }, - "end": { - "$date": "2021-12-18T02:18:41.000Z" - }, - "events": [ - { - "uuid": "342ce3d3-16b1-4868-a629-9bc0e6ad550a", - "start": { - "$date": "2021-12-18T02:18:21.000Z" - }, - "end": { - "$date": "2021-12-18T02:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89e27613-4c80-4519-beb8-30d5cfb87daa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T02:34:08.000Z" - }, - "end": { - "$date": "2021-12-18T03:01:05.000Z" - }, - "events": [ - { - "uuid": "c3a2737c-c45d-40cf-94e2-5a98cd37fbdc", - "start": { - "$date": "2021-12-18T02:34:08.000Z" - }, - "end": { - "$date": "2021-12-18T03:01:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7197c254-9d66-4791-8432-92aad9b8400d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T02:39:32.000Z" - }, - "end": { - "$date": "2021-12-18T03:09:28.000Z" - }, - "events": [ - { - "uuid": "1509cf68-d74f-4929-a85a-57e96c1cc3d3", - "start": { - "$date": "2021-12-18T02:39:32.000Z" - }, - "end": { - "$date": "2021-12-18T03:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fd06baf8-079a-4aec-969a-352eccde37b4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-18T02:49:41.000Z" - }, - "end": { - "$date": "2021-12-18T03:24:23.000Z" - }, - "events": [ - { - "uuid": "8ae9cc48-203a-4400-9c31-c987a1fdde20", - "start": { - "$date": "2021-12-18T02:49:41.000Z" - }, - "end": { - "$date": "2021-12-18T03:24:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "042ec45b-b68e-4b94-8c16-9e0c8430f438", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T03:31:47.000Z" - }, - "end": { - "$date": "2021-12-18T03:57:37.000Z" - }, - "events": [ - { - "uuid": "6fad3baa-89df-4278-972a-025752aef309", - "start": { - "$date": "2021-12-18T03:31:47.000Z" - }, - "end": { - "$date": "2021-12-18T03:57:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d90ff581-c9c9-4cf8-b222-eb208f0ff83a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T03:10:39.000Z" - }, - "end": { - "$date": "2021-12-18T03:44:05.000Z" - }, - "events": [ - { - "uuid": "e30923f3-c745-434d-b7a3-231dfe2e153b", - "start": { - "$date": "2021-12-18T03:10:39.000Z" - }, - "end": { - "$date": "2021-12-18T03:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "86164d36-0a96-4196-9c9f-49bea9261bec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T03:47:31.000Z" - }, - "end": { - "$date": "2021-12-18T04:38:27.000Z" - }, - "events": [ - { - "uuid": "c7b5da80-9c2e-4657-8e16-5d5596282494", - "start": { - "$date": "2021-12-18T03:47:31.000Z" - }, - "end": { - "$date": "2021-12-18T04:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1eb601f-e920-4894-bc12-aeaae4e1b602", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T04:44:51.000Z" - }, - "end": { - "$date": "2021-12-18T04:44:50.000Z" - }, - "events": [ - { - "uuid": "ad4f32c6-9879-4a19-a26e-5987ddf4e20c", - "start": { - "$date": "2021-12-18T04:44:51.000Z" - }, - "end": { - "$date": "2021-12-18T04:44:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c9661a5-5bb0-4172-90e0-d645102d47ef", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T04:13:57.000Z" - }, - "end": { - "$date": "2021-12-18T04:28:33.000Z" - }, - "events": [ - { - "uuid": "47ab309e-440d-4e9f-b41e-0203cee29e8a", - "start": { - "$date": "2021-12-18T04:13:57.000Z" - }, - "end": { - "$date": "2021-12-18T04:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f98c2b1e-4068-4086-8946-5ced2f1c6f11", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T04:19:26.000Z" - }, - "end": { - "$date": "2021-12-18T04:50:33.000Z" - }, - "events": [ - { - "uuid": "b2aa0650-9a84-4718-be8b-837a8a7f1733", - "start": { - "$date": "2021-12-18T04:19:26.000Z" - }, - "end": { - "$date": "2021-12-18T04:50:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "415464cb-5c6b-4bf1-a0b4-a8cf099dddcc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T04:31:04.000Z" - }, - "end": { - "$date": "2021-12-18T04:51:38.000Z" - }, - "events": [ - { - "uuid": "36cef2cc-653e-460a-b7b7-d5494bcf7285", - "start": { - "$date": "2021-12-18T04:31:04.000Z" - }, - "end": { - "$date": "2021-12-18T04:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "7c16b65c-1400-4086-86eb-38b4f0825b09", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-18T04:34:40.000Z" - }, - "end": { - "$date": "2021-12-18T04:38:35.000Z" - }, - "events": [ - { - "uuid": "6732b499-9d99-4858-ac2e-c12abc3e6f67", - "start": { - "$date": "2021-12-18T04:34:40.000Z" - }, - "end": { - "$date": "2021-12-18T04:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4f96522a-7114-492d-8dc7-8d6c8f8e6d4a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-18T04:44:15.000Z" - }, - "end": { - "$date": "2021-12-18T05:44:13.000Z" - }, - "events": [ - { - "uuid": "8b8ad073-8819-436a-b078-6f7e67f9c3b1", - "start": { - "$date": "2021-12-18T04:44:15.000Z" - }, - "end": { - "$date": "2021-12-18T05:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5d709cae-2b0d-4b29-bc35-cf95f9db5a8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T04:44:23.000Z" - }, - "end": { - "$date": "2021-12-18T04:53:13.000Z" - }, - "events": [ - { - "uuid": "24abf699-b5e4-4354-a472-2fd9c1ec55b6", - "start": { - "$date": "2021-12-18T04:44:23.000Z" - }, - "end": { - "$date": "2021-12-18T04:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c3f5f4d3-b345-4e2f-a4fa-17f0f3afff2b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-18T04:44:37.000Z" - }, - "end": { - "$date": "2021-12-18T05:44:33.000Z" - }, - "events": [ - { - "uuid": "d7fb319a-caf5-4718-92c3-6f4cff8cae89", - "start": { - "$date": "2021-12-18T04:44:37.000Z" - }, - "end": { - "$date": "2021-12-18T05:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8acef2c7-112c-4160-a611-72a4fd8121cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T04:50:23.000Z" - }, - "end": { - "$date": "2021-12-18T04:50:23.000Z" - }, - "events": [ - { - "uuid": "0d6129ed-4b0d-4fae-910e-c332d948846e", - "start": { - "$date": "2021-12-18T04:50:23.000Z" - }, - "end": { - "$date": "2021-12-18T04:50:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b9a247e-8504-4ff1-a94f-6b0e41fffac4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T04:55:05.000Z" - }, - "end": { - "$date": "2021-12-18T05:28:54.000Z" - }, - "events": [ - { - "uuid": "275d308e-e739-4e29-bd29-3a9b0fc32942", - "start": { - "$date": "2021-12-18T04:55:05.000Z" - }, - "end": { - "$date": "2021-12-18T05:28:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec59a9bb-ac05-40b1-a065-fb30cf28e36c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T04:55:22.000Z" - }, - "end": { - "$date": "2021-12-18T05:16:08.000Z" - }, - "events": [ - { - "uuid": "4057cca9-963b-4011-88da-9a821571bd0c", - "start": { - "$date": "2021-12-18T04:55:22.000Z" - }, - "end": { - "$date": "2021-12-18T05:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "555ab3c7-4ac9-426d-b669-d79fc78260e2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T06:00:29.000Z" - }, - "end": { - "$date": "2021-12-18T06:31:28.000Z" - }, - "events": [ - { - "uuid": "d06a7842-0a25-4417-ae70-65356c604ea2", - "start": { - "$date": "2021-12-18T06:00:29.000Z" - }, - "end": { - "$date": "2021-12-18T06:12:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c18b5c4c-eb2d-41e2-b20d-d9f4f495fceb", - "start": { - "$date": "2021-12-18T06:12:29.000Z" - }, - "end": { - "$date": "2021-12-18T06:42:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dde4cd18-8e83-4cbb-89b4-a823a35e71a3", - "start": { - "$date": "2021-12-18T06:42:29.000Z" - }, - "end": { - "$date": "2021-12-18T06:31:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "55d68cb3-e10b-41c6-a275-a0ad1d8bc12b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T05:30:00.000Z" - }, - "end": { - "$date": "2021-12-18T06:43:09.000Z" - }, - "events": [ - { - "uuid": "e8b413c5-4cc1-4a1e-a219-ad3d2d11b406", - "start": { - "$date": "2021-12-18T05:30:00.000Z" - }, - "end": { - "$date": "2021-12-18T06:43:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0c79b63b-6901-4895-b013-c59a09b42576", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-18T05:33:06.000Z" - }, - "end": { - "$date": "2021-12-18T13:00:26.000Z" - }, - "events": [ - { - "uuid": "bc23847a-adf9-4f90-a47a-b3a211d17e3d", - "start": { - "$date": "2021-12-18T05:33:06.000Z" - }, - "end": { - "$date": "2021-12-18T13:00:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3ea04093-8775-4ea2-bdb4-8f41a899c41f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-18T05:46:18.000Z" - }, - "end": { - "$date": "2021-12-18T08:26:49.000Z" - }, - "events": [ - { - "uuid": "c92fb4b9-0295-40d2-9995-2abaeeb9862e", - "start": { - "$date": "2021-12-18T05:46:18.000Z" - }, - "end": { - "$date": "2021-12-18T08:26:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f54e21b1-a00d-47f3-8ac7-5d7ca8762594", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-18T05:46:58.000Z" - }, - "end": { - "$date": "2021-12-18T06:38:45.000Z" - }, - "events": [ - { - "uuid": "173a31ac-d3a9-4060-a4e1-8b448ac05c79", - "start": { - "$date": "2021-12-18T05:46:58.000Z" - }, - "end": { - "$date": "2021-12-18T06:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2576491c-611a-4460-be7e-6bb6172b7a07", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T06:34:43.000Z" - }, - "end": { - "$date": "2021-12-18T06:47:45.000Z" - }, - "events": [ - { - "uuid": "6d2ce712-0a44-4aff-902f-cbd3f5bc349e", - "start": { - "$date": "2021-12-18T06:34:43.000Z" - }, - "end": { - "$date": "2021-12-18T06:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "abb6ecda-973e-4bf4-9a6c-889f2b36cd75", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T06:50:21.000Z" - }, - "end": { - "$date": "2021-12-18T07:22:05.000Z" - }, - "events": [ - { - "uuid": "e77fdb8c-4b48-4d16-b834-d38be4079ecd", - "start": { - "$date": "2021-12-18T06:50:21.000Z" - }, - "end": { - "$date": "2021-12-18T07:22:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18400d37-fd89-4773-8b69-dafaebe6b350", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T06:49:40.000Z" - }, - "end": { - "$date": "2021-12-18T07:12:15.000Z" - }, - "events": [ - { - "uuid": "ef475346-54b5-4441-a704-3447edf1d17b", - "start": { - "$date": "2021-12-18T06:49:40.000Z" - }, - "end": { - "$date": "2021-12-18T07:12:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58d001c6-a2c2-403e-af1e-0f7a640a0a8e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-18T07:15:49.000Z" - }, - "end": { - "$date": "2021-12-18T07:49:29.000Z" - }, - "events": [ - { - "uuid": "eeddd6f4-cad8-4902-9355-98f2d903030d", - "start": { - "$date": "2021-12-18T07:15:49.000Z" - }, - "end": { - "$date": "2021-12-18T07:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4426b61c-5758-43d7-b6a0-03d538cc9a4d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T07:33:12.000Z" - }, - "end": { - "$date": "2021-12-18T08:02:06.000Z" - }, - "events": [ - { - "uuid": "46911b9f-47f8-4ffb-a5c8-f43f6eeebe46", - "start": { - "$date": "2021-12-18T07:33:12.000Z" - }, - "end": { - "$date": "2021-12-18T08:02:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b13aa588-383a-4242-a678-5773219d458b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T08:12:03.000Z" - }, - "end": { - "$date": "2021-12-18T08:40:33.000Z" - }, - "events": [ - { - "uuid": "cba15cb7-2ccb-48aa-8105-982088fced6f", - "start": { - "$date": "2021-12-18T08:12:03.000Z" - }, - "end": { - "$date": "2021-12-18T08:40:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3786dff1-38bc-4cec-958b-362872df6ab0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T08:47:24.000Z" - }, - "end": { - "$date": "2021-12-18T09:09:39.000Z" - }, - "events": [ - { - "uuid": "80e07200-6b03-46eb-a449-3f2b2fd069c0", - "start": { - "$date": "2021-12-18T08:47:24.000Z" - }, - "end": { - "$date": "2021-12-18T09:09:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14d1bd23-6765-4e96-8cc0-3c34bf1c4073", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-18T16:32:55.000Z" - }, - "end": { - "$date": "2021-12-19T02:39:38.000Z" - }, - "events": [ - { - "uuid": "f84ce85b-f8d2-4a55-b698-5b113e90cc9e", - "start": { - "$date": "2021-12-18T16:32:55.000Z" - }, - "end": { - "$date": "2021-12-18T18:26:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45f4942f-781b-4c67-afb7-e32e0eab5c97", - "start": { - "$date": "2021-12-18T18:26:55.000Z" - }, - "end": { - "$date": "2021-12-18T18:45:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb6ef7c4-134c-4468-8bcf-c1827bb40f0d", - "start": { - "$date": "2021-12-18T18:45:55.000Z" - }, - "end": { - "$date": "2021-12-18T21:37:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebda0421-8fd9-44b2-bfcb-ba9205a01d34", - "start": { - "$date": "2021-12-18T21:37:55.000Z" - }, - "end": { - "$date": "2021-12-18T21:45:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "62f08b92-ac79-4dfc-84df-667004b2301d", - "start": { - "$date": "2021-12-18T21:45:55.000Z" - }, - "end": { - "$date": "2021-12-18T22:05:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14cb8ed9-3faa-4a8e-bd7f-b82990060f35", - "start": { - "$date": "2021-12-18T22:05:55.000Z" - }, - "end": { - "$date": "2021-12-18T22:08:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a90b3a50-3537-4f42-8e25-cf1de042c492", - "start": { - "$date": "2021-12-18T22:08:55.000Z" - }, - "end": { - "$date": "2021-12-18T22:19:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e159ec77-9813-4b8a-a413-613587a70703", - "start": { - "$date": "2021-12-18T22:19:55.000Z" - }, - "end": { - "$date": "2021-12-18T22:24:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "89f94e06-4002-48e3-bf87-379808065c6c", - "start": { - "$date": "2021-12-18T22:24:55.000Z" - }, - "end": { - "$date": "2021-12-18T23:03:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da7b059f-9a6e-4441-a109-a4f5f86062aa", - "start": { - "$date": "2021-12-18T23:03:55.000Z" - }, - "end": { - "$date": "2021-12-18T23:14:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b76a0d47-984f-4029-a213-9d87c35fbd5f", - "start": { - "$date": "2021-12-18T23:14:55.000Z" - }, - "end": { - "$date": "2021-12-19T00:29:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69436b2c-69ef-4a09-8c70-edd9eb2bf997", - "start": { - "$date": "2021-12-19T00:29:55.000Z" - }, - "end": { - "$date": "2021-12-19T09:24:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0b5fed75-20a6-4204-9012-540b6ba507c7", - "start": { - "$date": "2021-12-19T09:24:55.000Z" - }, - "end": { - "$date": "2021-12-19T09:28:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80bd117b-e309-47be-9bac-906f4ce8dfd2", - "start": { - "$date": "2021-12-19T09:28:55.000Z" - }, - "end": { - "$date": "2021-12-19T09:57:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a91dddfe-5305-4ce5-bb17-ad56d7f3a6f9", - "start": { - "$date": "2021-12-19T09:57:55.000Z" - }, - "end": { - "$date": "2021-12-19T09:59:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb23c54b-b1c6-4545-ab42-f822b3dbf451", - "start": { - "$date": "2021-12-19T09:59:55.000Z" - }, - "end": { - "$date": "2021-12-19T10:10:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa386d9b-c3e6-4fda-a03e-c778e3e65772", - "start": { - "$date": "2021-12-19T10:10:55.000Z" - }, - "end": { - "$date": "2021-12-19T10:13:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35da61ad-146e-48a2-96b1-51560f5b8cf8", - "start": { - "$date": "2021-12-19T10:13:55.000Z" - }, - "end": { - "$date": "2021-12-19T02:39:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3fc24040-9617-4fbc-82a4-a4a75ad3949c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-18T12:08:56.000Z" - }, - "end": { - "$date": "2021-12-18T13:00:21.000Z" - }, - "events": [ - { - "uuid": "a4bf0aed-0cd3-4372-b524-0c2de4aa2b27", - "start": { - "$date": "2021-12-18T12:08:56.000Z" - }, - "end": { - "$date": "2021-12-18T13:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3ef967f-9dc9-41a3-9081-dcc247db683b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T16:56:49.000Z" - }, - "end": { - "$date": "2021-12-18T17:14:33.000Z" - }, - "events": [ - { - "uuid": "283f1866-b70d-43a2-ac76-889485ae2232", - "start": { - "$date": "2021-12-18T16:56:49.000Z" - }, - "end": { - "$date": "2021-12-18T17:14:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81d0cb90-1b84-4ddf-bfa2-8fbb7700ecab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-18T17:08:44.000Z" - }, - "end": { - "$date": "2021-12-18T17:46:01.000Z" - }, - "events": [ - { - "uuid": "1028d071-a48d-4925-9d1d-48b32a065f36", - "start": { - "$date": "2021-12-18T17:08:44.000Z" - }, - "end": { - "$date": "2021-12-18T17:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fab23281-319c-4366-b977-9f24fa9b90fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T17:15:27.000Z" - }, - "end": { - "$date": "2021-12-18T17:23:39.000Z" - }, - "events": [ - { - "uuid": "f3cf1d66-c358-4c2d-baab-221ff7f7b918", - "start": { - "$date": "2021-12-18T17:15:27.000Z" - }, - "end": { - "$date": "2021-12-18T17:23:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d846a80a-8942-4535-aa50-dd6fcc5a19f3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T17:35:55.000Z" - }, - "end": { - "$date": "2021-12-18T17:50:20.000Z" - }, - "events": [ - { - "uuid": "e8ee589a-4180-49d2-9a49-76e4498b9e71", - "start": { - "$date": "2021-12-18T17:35:55.000Z" - }, - "end": { - "$date": "2021-12-18T17:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6d75457e-40b7-4562-94a1-51424a22daaf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T17:35:40.000Z" - }, - "end": { - "$date": "2021-12-18T20:23:55.000Z" - }, - "events": [ - { - "uuid": "02a1638f-0a5b-4656-bdee-5abeef804329", - "start": { - "$date": "2021-12-18T17:35:40.000Z" - }, - "end": { - "$date": "2021-12-18T20:02:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c90d1bbb-d05e-4909-b604-12276fa00897", - "start": { - "$date": "2021-12-18T20:02:40.000Z" - }, - "end": { - "$date": "2021-12-18T20:06:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "303b4590-41b6-4723-a167-38643603eea4", - "start": { - "$date": "2021-12-18T20:06:40.000Z" - }, - "end": { - "$date": "2021-12-18T20:17:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45cfd1cf-c495-49bc-9018-72ad2fdf7972", - "start": { - "$date": "2021-12-18T20:17:40.000Z" - }, - "end": { - "$date": "2021-12-18T20:21:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f953d65-070a-485a-a2c6-78870011b16a", - "start": { - "$date": "2021-12-18T20:21:40.000Z" - }, - "end": { - "$date": "2021-12-18T20:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2406a4fd-632d-4560-b95c-3f10532cb2d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-18T17:46:06.000Z" - }, - "end": { - "$date": "2021-12-18T17:51:07.000Z" - }, - "events": [ - { - "uuid": "77df2f3b-9418-4ae2-840d-416c5d7708e6", - "start": { - "$date": "2021-12-18T17:46:06.000Z" - }, - "end": { - "$date": "2021-12-18T17:51:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "a30b2d9c-d7b2-4758-ac29-abce3c9d48e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T17:55:56.000Z" - }, - "end": { - "$date": "2021-12-18T18:21:46.000Z" - }, - "events": [ - { - "uuid": "e0b913f8-1a97-4b9f-8abc-17fbd4e60cd2", - "start": { - "$date": "2021-12-18T17:55:56.000Z" - }, - "end": { - "$date": "2021-12-18T18:21:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "e165cfeb-6113-49c2-ada4-abfa785a92b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T18:22:03.000Z" - }, - "end": { - "$date": "2021-12-18T18:25:52.000Z" - }, - "events": [ - { - "uuid": "51fe5bdc-c02d-49c3-8145-2384fe5b192f", - "start": { - "$date": "2021-12-18T18:22:03.000Z" - }, - "end": { - "$date": "2021-12-18T18:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "726175da-3e68-4d41-972f-2dfbf9e4f114", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T18:26:18.000Z" - }, - "end": { - "$date": "2021-12-18T18:34:34.000Z" - }, - "events": [ - { - "uuid": "d82424dc-3c28-49c2-9685-91ed8df0ec34", - "start": { - "$date": "2021-12-18T18:26:18.000Z" - }, - "end": { - "$date": "2021-12-18T18:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0fffbd2d-9399-426e-903f-69cce54d328d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T18:34:45.000Z" - }, - "end": { - "$date": "2021-12-18T18:49:20.000Z" - }, - "events": [ - { - "uuid": "96c93337-eb78-4580-bb9e-77bb4a20472b", - "start": { - "$date": "2021-12-18T18:34:45.000Z" - }, - "end": { - "$date": "2021-12-18T18:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f78cf19-6632-49bd-871f-d2bc5abf3fbe", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T19:01:02.000Z" - }, - "end": { - "$date": "2021-12-18T19:32:02.000Z" - }, - "events": [ - { - "uuid": "16763b19-a733-4800-af50-c3b637e176af", - "start": { - "$date": "2021-12-18T19:01:02.000Z" - }, - "end": { - "$date": "2021-12-18T19:32:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05d8472a-2ce0-4483-a991-d599dbd97727", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T19:32:43.000Z" - }, - "end": { - "$date": "2021-12-18T20:07:13.000Z" - }, - "events": [ - { - "uuid": "6412ea89-d74a-40e9-92fb-3dc863712f87", - "start": { - "$date": "2021-12-18T19:32:43.000Z" - }, - "end": { - "$date": "2021-12-18T20:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3025f8ad-766f-42c7-9108-ba73c07668d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T20:07:27.000Z" - }, - "end": { - "$date": "2021-12-18T20:11:50.000Z" - }, - "events": [ - { - "uuid": "180e9e33-1573-4800-a93a-daa014fef302", - "start": { - "$date": "2021-12-18T20:07:27.000Z" - }, - "end": { - "$date": "2021-12-18T20:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d3b5597c-37d8-4ddf-a633-f681754673b2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T20:37:46.000Z" - }, - "end": { - "$date": "2021-12-18T21:01:02.000Z" - }, - "events": [ - { - "uuid": "bcdcaeb1-0f83-432f-a9c4-90004c6cbedc", - "start": { - "$date": "2021-12-18T20:37:46.000Z" - }, - "end": { - "$date": "2021-12-18T21:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17d16286-53f6-4d20-9bbf-c51b80c6de2c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T20:47:47.000Z" - }, - "end": { - "$date": "2021-12-18T21:17:34.000Z" - }, - "events": [ - { - "uuid": "9ac9f32c-e583-483b-8ea6-7bb0813d824c", - "start": { - "$date": "2021-12-18T20:47:47.000Z" - }, - "end": { - "$date": "2021-12-18T21:17:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6d8290ec-6537-48a9-ae26-e503651908b7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T21:05:48.000Z" - }, - "end": { - "$date": "2021-12-18T21:12:03.000Z" - }, - "events": [ - { - "uuid": "297d95cf-b3a9-45e9-8bf5-53dd39dd055b", - "start": { - "$date": "2021-12-18T21:05:48.000Z" - }, - "end": { - "$date": "2021-12-18T21:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0773176c-fa59-4363-bc88-df692692d5c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T21:12:09.000Z" - }, - "end": { - "$date": "2021-12-18T21:16:23.000Z" - }, - "events": [ - { - "uuid": "9f944d75-ce62-4db5-b5d3-1296ce9e56dd", - "start": { - "$date": "2021-12-18T21:12:09.000Z" - }, - "end": { - "$date": "2021-12-18T21:16:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bf393e3e-0821-4f88-83b2-31ee657b36b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T21:13:01.000Z" - }, - "end": { - "$date": "2021-12-18T21:16:15.000Z" - }, - "events": [ - { - "uuid": "a9d306bd-c9f5-4425-860d-2a36ebcf2bd3", - "start": { - "$date": "2021-12-18T21:13:01.000Z" - }, - "end": { - "$date": "2021-12-18T21:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d8b2569-e934-4968-bc29-e0496b6d7622", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T21:27:51.000Z" - }, - "end": { - "$date": "2021-12-18T21:55:58.000Z" - }, - "events": [ - { - "uuid": "5074e14a-01e9-4891-8f1c-79bffc9851f1", - "start": { - "$date": "2021-12-18T21:27:51.000Z" - }, - "end": { - "$date": "2021-12-18T21:55:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "66ce0644-3659-4a75-9d77-5519e2b2e3e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T21:34:47.000Z" - }, - "end": { - "$date": "2021-12-18T22:12:38.000Z" - }, - "events": [ - { - "uuid": "48a88e3a-c173-422a-af14-730716f6e40c", - "start": { - "$date": "2021-12-18T21:34:47.000Z" - }, - "end": { - "$date": "2021-12-18T22:12:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bcff50d1-8e73-40e2-b841-b87fc1cdc367", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T21:13:01.000Z" - }, - "end": { - "$date": "2021-12-18T21:57:06.000Z" - }, - "events": [ - { - "uuid": "78af3cb5-b086-4d87-a398-04c857841ed0", - "start": { - "$date": "2021-12-18T21:13:01.000Z" - }, - "end": { - "$date": "2021-12-18T21:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b8605291-feeb-4339-9247-49b2de8aab35", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-18T18:13:31.000Z" - }, - "end": { - "$date": "2021-12-18T22:35:15.000Z" - }, - "events": [ - { - "uuid": "aa4f0220-1552-4a3a-966a-24bf1988687f", - "start": { - "$date": "2021-12-18T18:13:31.000Z" - }, - "end": { - "$date": "2021-12-18T22:35:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52d2dc4e-f937-4019-af1a-7c583f14a6a8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T22:00:09.000Z" - }, - "end": { - "$date": "2021-12-18T22:21:26.000Z" - }, - "events": [ - { - "uuid": "ce985ddb-eb40-4416-b581-938899aec930", - "start": { - "$date": "2021-12-18T22:00:09.000Z" - }, - "end": { - "$date": "2021-12-18T22:21:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fcbefd4e-8564-4cc7-8183-c6b2dcc53ce1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T21:57:21.000Z" - }, - "end": { - "$date": "2021-12-18T22:14:19.000Z" - }, - "events": [ - { - "uuid": "3dec5614-82d8-4c31-ac33-26514d25403f", - "start": { - "$date": "2021-12-18T21:57:21.000Z" - }, - "end": { - "$date": "2021-12-18T22:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5d0e2db8-cc9f-465e-9f8e-2fba81f8de7b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T22:13:14.000Z" - }, - "end": { - "$date": "2021-12-18T22:17:24.000Z" - }, - "events": [ - { - "uuid": "3b036db1-d51c-494c-9a73-019e388df824", - "start": { - "$date": "2021-12-18T22:13:14.000Z" - }, - "end": { - "$date": "2021-12-18T22:17:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "cf2994a6-7f9a-4075-815d-927222c32dc2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-18T22:17:54.000Z" - }, - "end": { - "$date": "2021-12-18T23:20:02.000Z" - }, - "events": [ - { - "uuid": "db54117d-751c-45b1-bff8-2b9cd892a8b9", - "start": { - "$date": "2021-12-18T22:17:54.000Z" - }, - "end": { - "$date": "2021-12-18T23:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "76f85af4-e728-4d18-b434-d7e92f66eb4e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-18T22:22:51.000Z" - }, - "end": { - "$date": "2021-12-18T22:37:45.000Z" - }, - "events": [ - { - "uuid": "af4a2d9e-e2b4-4841-bfc2-96c3d7636498", - "start": { - "$date": "2021-12-18T22:22:51.000Z" - }, - "end": { - "$date": "2021-12-18T22:37:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d8c09e51-ec0e-49eb-bd80-9e4947e5c34c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-18T22:35:39.000Z" - }, - "end": { - "$date": "2021-12-18T23:12:31.000Z" - }, - "events": [ - { - "uuid": "2b033bd8-8e77-4d53-9599-be77e30a74b9", - "start": { - "$date": "2021-12-18T22:35:39.000Z" - }, - "end": { - "$date": "2021-12-18T23:12:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9272074e-326a-4de4-96bd-217fb581aea1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T22:52:46.000Z" - }, - "end": { - "$date": "2021-12-18T23:15:28.000Z" - }, - "events": [ - { - "uuid": "d2dcd063-9f7d-4ef5-af49-3e48cb6fd4c5", - "start": { - "$date": "2021-12-18T22:52:46.000Z" - }, - "end": { - "$date": "2021-12-18T23:15:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "78a894cb-f7ab-497f-a88f-9a3d38562895", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-18T23:14:16.000Z" - }, - "end": { - "$date": "2021-12-19T00:25:52.000Z" - }, - "events": [ - { - "uuid": "96c7e970-d597-45c9-9201-c44b84b6ee85", - "start": { - "$date": "2021-12-18T23:14:16.000Z" - }, - "end": { - "$date": "2021-12-19T00:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4801e34-e123-4a2a-b6ea-3b862feb1772", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-18T23:28:59.000Z" - }, - "end": { - "$date": "2021-12-18T23:59:16.000Z" - }, - "events": [ - { - "uuid": "7d234df3-85d2-40b9-8237-5a1946d4599d", - "start": { - "$date": "2021-12-18T23:28:59.000Z" - }, - "end": { - "$date": "2021-12-18T23:59:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79b1ca6d-8eba-4052-86d3-e244577c379d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T00:24:30.000Z" - }, - "end": { - "$date": "2021-12-19T00:47:38.000Z" - }, - "events": [ - { - "uuid": "564afe62-fc1c-40c6-a49e-6a644b52a190", - "start": { - "$date": "2021-12-19T00:24:30.000Z" - }, - "end": { - "$date": "2021-12-19T00:47:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e75a8380-4558-49ed-a2a9-14148ea1e53d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T00:26:01.000Z" - }, - "end": { - "$date": "2021-12-19T00:33:52.000Z" - }, - "events": [ - { - "uuid": "af2ec494-3f86-43bb-a59f-991af30a4b1a", - "start": { - "$date": "2021-12-19T00:26:01.000Z" - }, - "end": { - "$date": "2021-12-19T00:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "76707b23-433b-47e9-a7ee-77e1c9e6221b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T00:36:47.000Z" - }, - "end": { - "$date": "2021-12-19T01:34:53.000Z" - }, - "events": [ - { - "uuid": "8da2d3dc-de21-4de1-a8cf-452e88336487", - "start": { - "$date": "2021-12-19T00:36:47.000Z" - }, - "end": { - "$date": "2021-12-19T01:34:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a10b14a-16e2-42a9-a764-aa09643aeb63", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T00:53:23.000Z" - }, - "end": { - "$date": "2021-12-19T01:26:16.000Z" - }, - "events": [ - { - "uuid": "38c07bc1-570f-49e6-bb24-840322886545", - "start": { - "$date": "2021-12-19T00:53:23.000Z" - }, - "end": { - "$date": "2021-12-19T01:26:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "651df4f3-caa9-4f66-95a6-3f41b970eb87", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T00:58:20.000Z" - }, - "end": { - "$date": "2021-12-19T01:12:26.000Z" - }, - "events": [ - { - "uuid": "cfdefe62-2ef3-4991-899e-55e40d4183c0", - "start": { - "$date": "2021-12-19T00:58:20.000Z" - }, - "end": { - "$date": "2021-12-19T01:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58b5e727-b616-4a96-8302-cd50b1de9156", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T01:13:11.000Z" - }, - "end": { - "$date": "2021-12-19T01:26:31.000Z" - }, - "events": [ - { - "uuid": "b7a3f843-711c-421d-8005-d698b3cfd851", - "start": { - "$date": "2021-12-19T01:13:11.000Z" - }, - "end": { - "$date": "2021-12-19T01:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d27d85b-8187-4f33-80cb-1b98a0a9504d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T01:33:57.000Z" - }, - "end": { - "$date": "2021-12-19T02:05:15.000Z" - }, - "events": [ - { - "uuid": "0e5c91dc-370a-4d1c-ad9b-3e6229e71994", - "start": { - "$date": "2021-12-19T01:33:57.000Z" - }, - "end": { - "$date": "2021-12-19T02:05:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99d3658e-be83-4493-adb0-d6d5f6487259", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T01:27:26.000Z" - }, - "end": { - "$date": "2021-12-19T01:44:07.000Z" - }, - "events": [ - { - "uuid": "f1a98014-50f0-474c-9a7e-ce0e96e21e1c", - "start": { - "$date": "2021-12-19T01:27:26.000Z" - }, - "end": { - "$date": "2021-12-19T01:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9c39024d-d071-40b6-a067-a1f8d109ff7c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T01:35:27.000Z" - }, - "end": { - "$date": "2021-12-19T04:00:35.000Z" - }, - "events": [ - { - "uuid": "9dbd61f8-9607-4d15-9959-65895b2c2877", - "start": { - "$date": "2021-12-19T01:35:27.000Z" - }, - "end": { - "$date": "2021-12-19T04:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b53cd85-0ad9-40e5-a53c-5daf14a336e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T01:47:18.000Z" - }, - "end": { - "$date": "2021-12-19T02:03:23.000Z" - }, - "events": [ - { - "uuid": "845c1910-d7bf-423a-b24d-fc43fc94e8ac", - "start": { - "$date": "2021-12-19T01:47:18.000Z" - }, - "end": { - "$date": "2021-12-19T02:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "635925e8-1e0f-49a6-81f9-eed8407e779e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-19T02:00:59.000Z" - }, - "end": { - "$date": "2021-12-19T04:21:29.000Z" - }, - "events": [ - { - "uuid": "29bf17db-741b-4990-b7f1-eca593369556", - "start": { - "$date": "2021-12-19T02:00:59.000Z" - }, - "end": { - "$date": "2021-12-19T04:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "004d66eb-72ea-43c0-8c41-31422e8820e4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T02:09:59.000Z" - }, - "end": { - "$date": "2021-12-19T02:31:14.000Z" - }, - "events": [ - { - "uuid": "8486a15f-bb77-451f-b754-32561ec3a506", - "start": { - "$date": "2021-12-19T02:09:59.000Z" - }, - "end": { - "$date": "2021-12-19T02:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "710db7a1-e98a-413e-9655-cdeace76c2c6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T02:05:45.000Z" - }, - "end": { - "$date": "2021-12-19T03:03:54.000Z" - }, - "events": [ - { - "uuid": "0fa8c790-36bb-481f-af66-e7247d7061f8", - "start": { - "$date": "2021-12-19T02:05:45.000Z" - }, - "end": { - "$date": "2021-12-19T03:03:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3733294a-3566-4564-bddd-32ea034fd6de", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T03:41:59.000Z" - }, - "end": { - "$date": "2021-12-19T03:42:19.000Z" - }, - "events": [ - { - "uuid": "173ae46d-e150-4e42-b42d-91cbd4aae8e0", - "start": { - "$date": "2021-12-19T03:41:59.000Z" - }, - "end": { - "$date": "2021-12-19T04:03:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69f17c1d-71cc-4e33-b6b5-2cf53d223be5", - "start": { - "$date": "2021-12-19T04:03:59.000Z" - }, - "end": { - "$date": "2021-12-19T04:04:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b5334e12-871b-49e4-a78b-3a77e18dfa72", - "start": { - "$date": "2021-12-19T04:04:59.000Z" - }, - "end": { - "$date": "2021-12-19T03:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da537e89-9cb0-4c70-a6f9-145c21f8ae19", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T03:23:32.000Z" - }, - "end": { - "$date": "2021-12-19T03:42:02.000Z" - }, - "events": [ - { - "uuid": "9364f72e-b61f-4bf6-9f05-78e2839f3b9d", - "start": { - "$date": "2021-12-19T03:23:32.000Z" - }, - "end": { - "$date": "2021-12-19T03:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ac5ff46-807b-4a22-b6cb-a1e3816fb1bc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T03:42:08.000Z" - }, - "end": { - "$date": "2021-12-19T03:42:09.000Z" - }, - "events": [ - { - "uuid": "36bfc505-4f27-42c9-866f-ade8feabb21c", - "start": { - "$date": "2021-12-19T03:42:08.000Z" - }, - "end": { - "$date": "2021-12-19T03:42:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0be892f3-1499-4326-9298-137d9fa29b6e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T04:14:19.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:25.000Z" - }, - "events": [ - { - "uuid": "a68e975f-58c4-48ad-b61e-79708379248c", - "start": { - "$date": "2021-12-19T04:14:19.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c33d882b-6db1-44aa-90be-7ff6e76f5604", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-19T03:46:42.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:22.000Z" - }, - "events": [ - { - "uuid": "1725e7ea-0995-4a44-b4f1-dc1ea190dbd4", - "start": { - "$date": "2021-12-19T03:46:42.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f8245ac-b329-455a-9dfb-aeeaf7f92f16", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T03:46:43.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:17.000Z" - }, - "events": [ - { - "uuid": "6c9fe43e-c341-43c5-9a4f-b03b1c8e36db", - "start": { - "$date": "2021-12-19T03:46:43.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53dd47dd-73a2-453e-a54d-8746e0d527db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T03:46:40.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:32.000Z" - }, - "events": [ - { - "uuid": "20fea664-87b3-4908-80de-203030d2acc8", - "start": { - "$date": "2021-12-19T03:46:40.000Z" - }, - "end": { - "$date": "2021-12-19T04:14:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0cbdb3c-ee3b-4553-89aa-3eb75ff2689e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T04:41:15.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:21.000Z" - }, - "events": [ - { - "uuid": "7959b462-d13b-4e93-856d-35ccd08f8b64", - "start": { - "$date": "2021-12-19T04:41:15.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ecddbc7-8cf3-4421-a655-3db113ed87f3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T04:19:16.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:24.000Z" - }, - "events": [ - { - "uuid": "38628a26-604f-42fb-9cf2-31cac930331f", - "start": { - "$date": "2021-12-19T04:19:16.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8a1b6d0-2326-4a67-854b-0c3cd64de819", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T04:19:18.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:09.000Z" - }, - "events": [ - { - "uuid": "8edad85e-8a65-47c2-83da-d7d8ecc1db89", - "start": { - "$date": "2021-12-19T04:19:18.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "626e3667-deaf-403c-b537-62359c297028", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-19T04:19:17.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:18.000Z" - }, - "events": [ - { - "uuid": "0a79d06f-28ea-4e8c-91a8-b240195eb145", - "start": { - "$date": "2021-12-19T04:19:17.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b6edf303-ba52-4893-9b76-02b565871dec", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-19T04:24:19.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:08.000Z" - }, - "events": [ - { - "uuid": "68b2132a-d845-4885-bb9d-7cfa1d63b849", - "start": { - "$date": "2021-12-19T04:24:19.000Z" - }, - "end": { - "$date": "2021-12-19T04:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8d53be02-4e4a-4dd9-b96b-44cce09dd623", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T04:28:04.000Z" - }, - "end": { - "$date": "2021-12-19T07:30:08.000Z" - }, - "events": [ - { - "uuid": "3a9f710e-bb40-4506-9753-6b12ba9e70f0", - "start": { - "$date": "2021-12-19T04:28:04.000Z" - }, - "end": { - "$date": "2021-12-19T07:30:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18902a80-f921-4ed8-8858-b11a385f33a1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T04:44:00.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:21.000Z" - }, - "events": [ - { - "uuid": "8a1088dd-fe88-43bd-a32a-9e31759896d4", - "start": { - "$date": "2021-12-19T04:44:00.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5fb6bb86-79f0-417f-8c48-87b80c38c179", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T04:44:04.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:23.000Z" - }, - "events": [ - { - "uuid": "e368c356-0691-4f6c-9522-ea70d9475992", - "start": { - "$date": "2021-12-19T04:44:04.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8da19592-3103-4334-9048-529725b37879", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T04:44:02.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:28.000Z" - }, - "events": [ - { - "uuid": "74f128f2-7367-428c-9acb-8299ae620510", - "start": { - "$date": "2021-12-19T04:44:02.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "358d62a6-cce5-4f57-8562-13eb841d62d5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-19T04:44:08.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:29.000Z" - }, - "events": [ - { - "uuid": "2d76628d-9e4f-4915-9447-4c6c69802b3a", - "start": { - "$date": "2021-12-19T04:44:08.000Z" - }, - "end": { - "$date": "2021-12-19T05:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8f67585-08db-4fb4-9854-d71ee0322052", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T05:05:15.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:17.000Z" - }, - "events": [ - { - "uuid": "d7e0717b-69ac-454b-969e-d7bb724a3b88", - "start": { - "$date": "2021-12-19T05:05:15.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "235c0cc4-2c4d-46f5-8beb-fa1eae12611f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T05:05:18.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:19.000Z" - }, - "events": [ - { - "uuid": "d16db0b2-9af3-46c1-94a5-8aebbda2a711", - "start": { - "$date": "2021-12-19T05:05:18.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20f32cc6-dec2-4e74-8b21-19695f15577c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T05:19:19.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:19.000Z" - }, - "events": [ - { - "uuid": "e57091e8-f1aa-475e-b437-bbb49e965a07", - "start": { - "$date": "2021-12-19T05:19:19.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e1c57a6-f258-49ea-b5d8-38d2acf8a926", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-19T05:05:18.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:24.000Z" - }, - "events": [ - { - "uuid": "2fe9db81-f4c7-43ac-ae39-4188cfc0d9c8", - "start": { - "$date": "2021-12-19T05:05:18.000Z" - }, - "end": { - "$date": "2021-12-19T05:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "213f148a-e6c6-477a-905b-dce310e7b83d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-19T05:14:18.000Z" - }, - "end": { - "$date": "2021-12-19T05:42:39.000Z" - }, - "events": [ - { - "uuid": "1b9ef7d0-024c-4865-9611-9ff2dc72f088", - "start": { - "$date": "2021-12-19T05:14:18.000Z" - }, - "end": { - "$date": "2021-12-19T05:42:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6987d3ce-fafd-4a7b-a522-bec13708027b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T05:48:01.000Z" - }, - "end": { - "$date": "2021-12-19T05:48:07.000Z" - }, - "events": [ - { - "uuid": "4d08939f-17cc-45fc-ae6f-3e716d401464", - "start": { - "$date": "2021-12-19T05:48:01.000Z" - }, - "end": { - "$date": "2021-12-19T05:48:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "939c9657-73bd-4dbc-b21a-cbb8a69f8b0e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T05:22:14.000Z" - }, - "end": { - "$date": "2021-12-19T05:48:05.000Z" - }, - "events": [ - { - "uuid": "821347a3-2599-40b4-b162-eee4224b8771", - "start": { - "$date": "2021-12-19T05:22:14.000Z" - }, - "end": { - "$date": "2021-12-19T05:48:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49c296aa-aeea-4020-94c9-ebf904886805", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T05:22:09.000Z" - }, - "end": { - "$date": "2021-12-19T05:47:59.000Z" - }, - "events": [ - { - "uuid": "c9e498c9-8cc2-4791-9b4e-f9a65f106217", - "start": { - "$date": "2021-12-19T05:22:09.000Z" - }, - "end": { - "$date": "2021-12-19T05:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1badbc4b-e18f-4cae-b3ef-75e5f6f2a7fc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-19T05:22:14.000Z" - }, - "end": { - "$date": "2021-12-19T05:48:04.000Z" - }, - "events": [ - { - "uuid": "e642155e-7897-4d8b-8c0b-19f5134edd00", - "start": { - "$date": "2021-12-19T05:22:14.000Z" - }, - "end": { - "$date": "2021-12-19T05:48:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3deca484-8c01-467c-a06e-aa36957eb732", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T05:53:35.000Z" - }, - "end": { - "$date": "2021-12-19T06:18:51.000Z" - }, - "events": [ - { - "uuid": "8777e45a-b65b-4920-93f0-80cd78231e24", - "start": { - "$date": "2021-12-19T05:53:35.000Z" - }, - "end": { - "$date": "2021-12-19T06:18:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "67ecbac0-9d7c-4aeb-8b5e-65a6b1bc7d7a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T05:49:21.000Z" - }, - "end": { - "$date": "2021-12-19T05:51:37.000Z" - }, - "events": [ - { - "uuid": "96f294c1-f088-428e-b584-e5195802dc16", - "start": { - "$date": "2021-12-19T05:49:21.000Z" - }, - "end": { - "$date": "2021-12-19T05:51:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "91faa2d0-0ce6-4964-a704-4044c805111c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-19T06:34:27.000Z" - }, - "end": { - "$date": "2021-12-19T07:22:58.000Z" - }, - "events": [ - { - "uuid": "6ed139b0-defd-47ed-9aff-b46f48700cf7", - "start": { - "$date": "2021-12-19T06:34:27.000Z" - }, - "end": { - "$date": "2021-12-19T07:22:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "51165c6e-8eca-4d81-b667-f9d604bbf302", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T06:48:10.000Z" - }, - "end": { - "$date": "2021-12-19T08:17:24.000Z" - }, - "events": [ - { - "uuid": "bd150202-300e-41d9-b98b-52da9846cd9e", - "start": { - "$date": "2021-12-19T06:48:10.000Z" - }, - "end": { - "$date": "2021-12-19T08:17:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "55bdfddb-894a-4924-a944-fea4ca62eed9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T07:30:23.000Z" - }, - "end": { - "$date": "2021-12-19T08:06:39.000Z" - }, - "events": [ - { - "uuid": "12b3e93f-c496-4300-b9a0-3419adbeb344", - "start": { - "$date": "2021-12-19T07:30:23.000Z" - }, - "end": { - "$date": "2021-12-19T08:06:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6ebef706-f4c1-4ee4-88a5-76c9df2ae9ad", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T10:09:45.000Z" - }, - "end": { - "$date": "2021-12-19T16:58:10.000Z" - }, - "events": [ - { - "uuid": "3f0257ad-24a5-47fc-8890-589641bb99f3", - "start": { - "$date": "2021-12-19T10:09:45.000Z" - }, - "end": { - "$date": "2021-12-19T16:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "490382b0-0ea3-4e25-ad6d-c585f85f7fe8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-19T16:22:36.000Z" - }, - "end": { - "$date": "2021-12-19T18:09:05.000Z" - }, - "events": [ - { - "uuid": "c5cf9640-e930-4569-b66e-1423845735f2", - "start": { - "$date": "2021-12-19T16:22:36.000Z" - }, - "end": { - "$date": "2021-12-19T17:31:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70ab7b9f-df7c-4457-9134-0be92bfea088", - "start": { - "$date": "2021-12-19T17:31:36.000Z" - }, - "end": { - "$date": "2021-12-19T17:45:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d554b618-38b7-4a14-82c2-90dbab534f55", - "start": { - "$date": "2021-12-19T17:45:36.000Z" - }, - "end": { - "$date": "2021-12-19T18:01:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2cfa14ae-cc7d-4989-abaa-8b89a6b69f86", - "start": { - "$date": "2021-12-19T18:01:36.000Z" - }, - "end": { - "$date": "2021-12-19T18:09:05.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ab2caef1-f4b6-48c4-a4cc-e7889dcb5df6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-19T16:48:55.000Z" - }, - "end": { - "$date": "2021-12-19T17:06:14.000Z" - }, - "events": [ - { - "uuid": "5c421642-78cc-4ffa-a71d-7c0fbb4e4269", - "start": { - "$date": "2021-12-19T16:48:55.000Z" - }, - "end": { - "$date": "2021-12-19T17:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "22e2f02a-f151-4e32-b308-7c95a9d923df", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-19T17:06:10.000Z" - }, - "end": { - "$date": "2021-12-19T18:01:22.000Z" - }, - "events": [ - { - "uuid": "0e280f12-8e29-4f03-b5e5-85c71ef33498", - "start": { - "$date": "2021-12-19T17:06:10.000Z" - }, - "end": { - "$date": "2021-12-19T18:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "77e0f6e6-649f-47b6-870a-7b35b0003f09", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-19T17:06:26.000Z" - }, - "end": { - "$date": "2021-12-19T18:30:54.000Z" - }, - "events": [ - { - "uuid": "874c99cb-d42e-4fc8-8e48-52ec98ee3859", - "start": { - "$date": "2021-12-19T17:06:26.000Z" - }, - "end": { - "$date": "2021-12-19T18:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f979f23b-9358-4e42-98c9-b56e09a8c7fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T17:48:01.000Z" - }, - "end": { - "$date": "2021-12-19T17:59:59.000Z" - }, - "events": [ - { - "uuid": "914c4412-c1d7-4efb-bb26-c0b9b5d3895e", - "start": { - "$date": "2021-12-19T17:48:01.000Z" - }, - "end": { - "$date": "2021-12-19T17:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ca9262bc-7b6f-4285-9dde-b56703e2a646", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T18:07:43.000Z" - }, - "end": { - "$date": "2021-12-19T18:57:28.000Z" - }, - "events": [ - { - "uuid": "5c862018-05b9-461c-816c-2f2ece948f5d", - "start": { - "$date": "2021-12-19T18:07:43.000Z" - }, - "end": { - "$date": "2021-12-19T18:27:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "85bc8c1d-9480-482c-845c-6797de28296b", - "start": { - "$date": "2021-12-19T18:27:43.000Z" - }, - "end": { - "$date": "2021-12-19T18:30:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "87ffe2e6-5a53-40cc-b7de-7c9570bbda16", - "start": { - "$date": "2021-12-19T18:30:43.000Z" - }, - "end": { - "$date": "2021-12-19T18:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b5d2fb0c-e686-4914-80d3-654cace556ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T18:58:14.000Z" - }, - "end": { - "$date": "2021-12-19T19:21:56.000Z" - }, - "events": [ - { - "uuid": "c8e12e99-4d07-40df-9b30-75024a79020e", - "start": { - "$date": "2021-12-19T18:58:14.000Z" - }, - "end": { - "$date": "2021-12-19T19:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "acddb886-d462-4cc7-b97d-aec1d9cebfc4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-19T19:13:50.000Z" - }, - "end": { - "$date": "2021-12-19T19:55:22.000Z" - }, - "events": [ - { - "uuid": "21ee0008-fd7c-4433-9869-6dae20f38f12", - "start": { - "$date": "2021-12-19T19:13:50.000Z" - }, - "end": { - "$date": "2021-12-19T19:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "302cdaa3-7d1e-4069-b4fd-1d919b5351d2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T19:23:07.000Z" - }, - "end": { - "$date": "2021-12-19T21:59:33.000Z" - }, - "events": [ - { - "uuid": "b7caa1cf-8fd7-4427-a918-b0fd41e14bc4", - "start": { - "$date": "2021-12-19T19:23:07.000Z" - }, - "end": { - "$date": "2021-12-19T19:38:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8223f448-e795-4703-8539-e4b78675bae1", - "start": { - "$date": "2021-12-19T19:38:07.000Z" - }, - "end": { - "$date": "2021-12-19T20:10:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "232a6897-d2f9-48d6-8a5b-5ece4ed1be50", - "start": { - "$date": "2021-12-19T20:10:07.000Z" - }, - "end": { - "$date": "2021-12-19T21:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05ff2932-0c66-4d7d-9b14-51ac28090a13", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T19:47:24.000Z" - }, - "end": { - "$date": "2021-12-19T20:26:35.000Z" - }, - "events": [ - { - "uuid": "234cc524-46dc-46ca-ba72-ab8deb1bc22c", - "start": { - "$date": "2021-12-19T19:47:24.000Z" - }, - "end": { - "$date": "2021-12-19T20:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4ddb5f4-b1d0-41d6-b974-9b1beae5c8f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T20:26:40.000Z" - }, - "end": { - "$date": "2021-12-19T20:52:43.000Z" - }, - "events": [ - { - "uuid": "ac45f220-2cd8-468c-8c3c-5f2ad257d592", - "start": { - "$date": "2021-12-19T20:26:40.000Z" - }, - "end": { - "$date": "2021-12-19T20:37:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ef1e499-0f35-48ac-8474-f856a4f8ef91", - "start": { - "$date": "2021-12-19T20:37:40.000Z" - }, - "end": { - "$date": "2021-12-19T20:52:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c29758e0-a349-493d-b113-3ad4fd071028", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T20:57:15.000Z" - }, - "end": { - "$date": "2021-12-19T22:29:23.000Z" - }, - "events": [ - { - "uuid": "777ef13a-afc1-4111-91e4-e47d7bae881f", - "start": { - "$date": "2021-12-19T20:57:15.000Z" - }, - "end": { - "$date": "2021-12-19T22:29:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "194090af-2b1e-4820-b7e9-d7fc6ea3a41e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T22:19:21.000Z" - }, - "end": { - "$date": "2021-12-19T23:00:46.000Z" - }, - "events": [ - { - "uuid": "48793a07-2382-47de-ba59-ded1b0d5711f", - "start": { - "$date": "2021-12-19T22:19:21.000Z" - }, - "end": { - "$date": "2021-12-19T23:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbae6e56-d85a-4626-bddb-0ab39035dd58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T22:36:42.000Z" - }, - "end": { - "$date": "2021-12-19T23:10:13.000Z" - }, - "events": [ - { - "uuid": "c3f13de5-78bc-4bf7-8388-ffecf949fd77", - "start": { - "$date": "2021-12-19T22:36:42.000Z" - }, - "end": { - "$date": "2021-12-19T23:10:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd95945d-cab5-444e-8eb2-6cd3cb5f099c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-19T23:23:20.000Z" - }, - "end": { - "$date": "2021-12-19T23:23:16.000Z" - }, - "events": [ - { - "uuid": "449e411d-c87e-4757-86fe-e898dd7abccd", - "start": { - "$date": "2021-12-19T23:23:20.000Z" - }, - "end": { - "$date": "2021-12-19T23:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e0d4e60-b75c-49e5-a8db-12a4cf6958e3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-19T23:13:02.000Z" - }, - "end": { - "$date": "2021-12-19T23:35:11.000Z" - }, - "events": [ - { - "uuid": "47b3372f-0e16-4138-9293-2f9eb381c427", - "start": { - "$date": "2021-12-19T23:13:02.000Z" - }, - "end": { - "$date": "2021-12-19T23:35:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2b5f36c-77b0-47ba-9737-36191daf70be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-19T23:47:07.000Z" - }, - "end": { - "$date": "2021-12-20T00:01:07.000Z" - }, - "events": [ - { - "uuid": "ae379b7c-62f7-449a-a114-e7bd3bc5ce76", - "start": { - "$date": "2021-12-19T23:47:07.000Z" - }, - "end": { - "$date": "2021-12-20T00:01:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fec52a71-ab06-4bd5-9c0e-64702b4c6676", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-20T00:01:53.000Z" - }, - "end": { - "$date": "2021-12-20T00:22:08.000Z" - }, - "events": [ - { - "uuid": "4cf22527-98a3-45f2-918b-8fa2dde8d345", - "start": { - "$date": "2021-12-20T00:01:53.000Z" - }, - "end": { - "$date": "2021-12-20T00:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33d05775-b734-4e7a-9474-0954dd3ae65e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-20T00:24:39.000Z" - }, - "end": { - "$date": "2021-12-20T00:43:44.000Z" - }, - "events": [ - { - "uuid": "2560b6f7-b18d-49cd-b601-4fdaf1ab8da8", - "start": { - "$date": "2021-12-20T00:24:39.000Z" - }, - "end": { - "$date": "2021-12-20T00:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "feb35a76-475d-41e7-8a92-35d207e8297e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-20T00:44:55.000Z" - }, - "end": { - "$date": "2021-12-20T01:17:25.000Z" - }, - "events": [ - { - "uuid": "cf0fe991-2486-4605-b760-177f6b339e67", - "start": { - "$date": "2021-12-20T00:44:55.000Z" - }, - "end": { - "$date": "2021-12-20T01:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50c77d32-bf1e-4fe3-824d-86fba8b4bf89", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T00:44:58.000Z" - }, - "end": { - "$date": "2021-12-20T01:17:48.000Z" - }, - "events": [ - { - "uuid": "acecbdc6-545e-49db-bef5-7fa2be679bd5", - "start": { - "$date": "2021-12-20T00:44:58.000Z" - }, - "end": { - "$date": "2021-12-20T01:17:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24e77b76-a9f3-4acb-ad1a-898be2c8206f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-20T01:18:56.000Z" - }, - "end": { - "$date": "2021-12-20T01:57:32.000Z" - }, - "events": [ - { - "uuid": "520eb808-a58c-42e1-9ca8-f4ac2bb5343d", - "start": { - "$date": "2021-12-20T01:18:56.000Z" - }, - "end": { - "$date": "2021-12-20T01:57:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "847e9f73-0e94-462a-b842-fd2724185688", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T01:18:52.000Z" - }, - "end": { - "$date": "2021-12-20T01:57:42.000Z" - }, - "events": [ - { - "uuid": "646676e5-ab4e-43c4-beaf-71cf9a343f6a", - "start": { - "$date": "2021-12-20T01:18:52.000Z" - }, - "end": { - "$date": "2021-12-20T01:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdb254f3-2ea5-4176-bd20-48196e9d1ce8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-20T02:18:11.000Z" - }, - "end": { - "$date": "2021-12-20T03:01:22.000Z" - }, - "events": [ - { - "uuid": "fd0a52ac-533f-416f-9aaf-3ba23ee3b6ff", - "start": { - "$date": "2021-12-20T02:18:11.000Z" - }, - "end": { - "$date": "2021-12-20T03:01:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d98d5bac-305c-401c-bb98-f0e0f252d4c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T02:15:45.000Z" - }, - "end": { - "$date": "2021-12-20T02:16:48.000Z" - }, - "events": [ - { - "uuid": "ced09133-46ee-489f-b8cc-3729294ef759", - "start": { - "$date": "2021-12-20T02:15:45.000Z" - }, - "end": { - "$date": "2021-12-20T02:16:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "014c3c59-f774-4fa3-ba80-3fc3601a79d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T02:18:11.000Z" - }, - "end": { - "$date": "2021-12-20T03:01:21.000Z" - }, - "events": [ - { - "uuid": "e86d35ee-72a7-4bd7-ad2c-079b9802118c", - "start": { - "$date": "2021-12-20T02:18:11.000Z" - }, - "end": { - "$date": "2021-12-20T03:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cefda905-1671-4e73-a1e2-3791036172a6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-19T22:19:21.000Z" - }, - "end": { - "$date": "2021-12-20T06:45:56.000Z" - }, - "events": [ - { - "uuid": "1bb5cc13-fb2c-4b2f-9297-d50369d96b03", - "start": { - "$date": "2021-12-19T22:19:21.000Z" - }, - "end": { - "$date": "2021-12-20T00:42:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f444c70b-f651-4f95-bc9b-2ab508b5b2d2", - "start": { - "$date": "2021-12-20T00:42:21.000Z" - }, - "end": { - "$date": "2021-12-20T00:47:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e3ed55b-7e18-46f5-b53c-ae56ff404fd1", - "start": { - "$date": "2021-12-20T00:47:21.000Z" - }, - "end": { - "$date": "2021-12-20T00:57:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a768b269-41ec-404a-bd98-38428e53e538", - "start": { - "$date": "2021-12-20T00:57:21.000Z" - }, - "end": { - "$date": "2021-12-20T01:08:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52ebbe93-2338-425f-a037-5b763abfcf1d", - "start": { - "$date": "2021-12-20T01:08:21.000Z" - }, - "end": { - "$date": "2021-12-20T06:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "132475fd-24a7-4b9a-b448-b133d8fb0762", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-20T03:07:03.000Z" - }, - "end": { - "$date": "2021-12-20T03:44:24.000Z" - }, - "events": [ - { - "uuid": "c17b08f4-de60-4930-8e13-8e408e2a5fe5", - "start": { - "$date": "2021-12-20T03:07:03.000Z" - }, - "end": { - "$date": "2021-12-20T03:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2292125d-8bac-42ae-89b4-86b64bd0d23c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T03:06:58.000Z" - }, - "end": { - "$date": "2021-12-20T03:44:28.000Z" - }, - "events": [ - { - "uuid": "a79159b3-a035-4196-98bc-8638724e05cd", - "start": { - "$date": "2021-12-20T03:06:58.000Z" - }, - "end": { - "$date": "2021-12-20T03:44:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6ee5ebc-b93e-48cd-b809-187ebaacbe83", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-20T03:46:48.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:43.000Z" - }, - "events": [ - { - "uuid": "566b671b-c8bd-4a5f-a77e-1e398c050f08", - "start": { - "$date": "2021-12-20T03:46:48.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faef9b5f-40bc-4f28-b406-309f917369da", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T03:46:53.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:32.000Z" - }, - "events": [ - { - "uuid": "6b341d88-e754-45b5-bf6e-f9a594303b1d", - "start": { - "$date": "2021-12-20T03:46:53.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "495948af-75ea-4429-bbc5-3ad7ef3d9c76", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-20T03:46:41.000Z" - }, - "end": { - "$date": "2021-12-20T03:51:34.000Z" - }, - "events": [ - { - "uuid": "5cd08171-7c87-42b2-804e-8334cd3cdc0b", - "start": { - "$date": "2021-12-20T03:46:41.000Z" - }, - "end": { - "$date": "2021-12-20T03:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "150b2163-a6bd-4459-bed3-5e79a3f74f11", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-20T03:46:50.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:42.000Z" - }, - "events": [ - { - "uuid": "cbb37633-0b1a-4feb-ac07-fee1c086fea0", - "start": { - "$date": "2021-12-20T03:46:50.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d698a3a-69ed-4948-b430-cea92026ae18", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-20T03:52:30.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:46.000Z" - }, - "events": [ - { - "uuid": "83a0b065-1ae3-4e28-af0c-ef72fd0d8b31", - "start": { - "$date": "2021-12-20T03:52:30.000Z" - }, - "end": { - "$date": "2021-12-20T04:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14a4b58f-5f8d-43a1-8847-82f9b9f1089f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-20T04:30:54.000Z" - }, - "end": { - "$date": "2021-12-20T04:50:36.000Z" - }, - "events": [ - { - "uuid": "0e29f4ef-478a-437a-a3b7-77af8eff66c0", - "start": { - "$date": "2021-12-20T04:30:54.000Z" - }, - "end": { - "$date": "2021-12-20T04:50:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "69704f8b-3d7d-411a-b3b0-ea050a90722f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-20T05:51:31.000Z" - }, - "end": { - "$date": "2021-12-20T06:00:20.000Z" - }, - "events": [ - { - "uuid": "6e340aab-6645-49b2-8919-e8a1fd8771b8", - "start": { - "$date": "2021-12-20T05:51:31.000Z" - }, - "end": { - "$date": "2021-12-20T06:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "78d44fdf-a9e0-4de0-ac81-049b01f9d041", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-20T12:20:50.000Z" - }, - "end": { - "$date": "2021-12-20T14:37:18.000Z" - }, - "events": [ - { - "uuid": "cb7c36c7-1fab-4067-b206-8e48d49943d2", - "start": { - "$date": "2021-12-20T12:20:50.000Z" - }, - "end": { - "$date": "2021-12-20T14:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "96d8d144-5cf8-468b-9bcd-00003584f825", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-20T16:43:29.000Z" - }, - "end": { - "$date": "2021-12-20T17:14:39.000Z" - }, - "events": [ - { - "uuid": "1b3ca115-55eb-4600-b483-6cf12c29bc03", - "start": { - "$date": "2021-12-20T16:43:29.000Z" - }, - "end": { - "$date": "2021-12-20T17:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ab03df04-6580-4a3b-b8dc-4939e7a56345", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-20T16:44:24.000Z" - }, - "end": { - "$date": "2021-12-20T17:25:51.000Z" - }, - "events": [ - { - "uuid": "ec201ffa-0708-4b21-a173-17b3783e18a9", - "start": { - "$date": "2021-12-20T16:44:24.000Z" - }, - "end": { - "$date": "2021-12-20T17:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a8f2897e-5858-4933-837c-2d6d0f824b5e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-20T17:40:23.000Z" - }, - "end": { - "$date": "2021-12-20T17:41:34.000Z" - }, - "events": [ - { - "uuid": "93c48925-86e1-46d1-add7-12cd9af7a179", - "start": { - "$date": "2021-12-20T17:40:23.000Z" - }, - "end": { - "$date": "2021-12-20T17:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "861ee5c0-674f-4022-9119-05d2d68dc579", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-20T17:49:55.000Z" - }, - "end": { - "$date": "2021-12-20T20:10:30.000Z" - }, - "events": [ - { - "uuid": "69352a6d-cb56-491a-83a8-93c824dc23cc", - "start": { - "$date": "2021-12-20T17:49:55.000Z" - }, - "end": { - "$date": "2021-12-20T18:00:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "81efc659-edcb-4201-8d39-e6b4cef7f024", - "start": { - "$date": "2021-12-20T18:00:55.000Z" - }, - "end": { - "$date": "2021-12-20T18:07:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a397bc24-5f50-42be-8dd1-832ae04d427a", - "start": { - "$date": "2021-12-20T18:07:55.000Z" - }, - "end": { - "$date": "2021-12-20T19:35:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2333f21a-c7e4-4f66-b4fc-fc84a4ae310b", - "start": { - "$date": "2021-12-20T19:35:55.000Z" - }, - "end": { - "$date": "2021-12-20T19:37:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e54abbef-93e9-4ff0-9815-4461aad6667d", - "start": { - "$date": "2021-12-20T19:37:55.000Z" - }, - "end": { - "$date": "2021-12-20T20:10:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fc7b71fe-488a-431a-b029-255c83f3ea7b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-20T22:57:44.000Z" - }, - "end": { - "$date": "2021-12-21T02:05:29.000Z" - }, - "events": [ - { - "uuid": "e8d47358-ffb6-456b-9ccf-bcfeec79244d", - "start": { - "$date": "2021-12-20T22:57:44.000Z" - }, - "end": { - "$date": "2021-12-21T00:07:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7effe623-7030-4e53-b087-23665e8e2d74", - "start": { - "$date": "2021-12-21T00:07:44.000Z" - }, - "end": { - "$date": "2021-12-21T00:49:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "40ac7b0c-0113-45d5-8903-4ddabe2d4839", - "start": { - "$date": "2021-12-21T00:49:44.000Z" - }, - "end": { - "$date": "2021-12-21T00:59:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "963d757a-7f19-4547-a4b0-1344463db69f", - "start": { - "$date": "2021-12-21T00:59:44.000Z" - }, - "end": { - "$date": "2021-12-21T02:17:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58f8e732-94b3-405f-ba0a-9ba439cc08d4", - "start": { - "$date": "2021-12-21T02:17:44.000Z" - }, - "end": { - "$date": "2021-12-21T02:27:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3d86b109-898e-4047-be60-08d6018c8706", - "start": { - "$date": "2021-12-21T02:27:44.000Z" - }, - "end": { - "$date": "2021-12-21T02:05:29.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad67910e-24cb-49e8-87b1-71ce011c43e7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-21T00:47:13.000Z" - }, - "end": { - "$date": "2021-12-21T01:16:35.000Z" - }, - "events": [ - { - "uuid": "28ebd9c0-3498-4fa8-bde6-9263e9f06e5f", - "start": { - "$date": "2021-12-21T00:47:13.000Z" - }, - "end": { - "$date": "2021-12-21T01:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9c1bead-66e0-4eb0-a7b4-2e18e69f92c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-21T00:47:30.000Z" - }, - "end": { - "$date": "2021-12-21T01:27:05.000Z" - }, - "events": [ - { - "uuid": "9cc6634b-8b18-4e58-990a-d61a1c75e231", - "start": { - "$date": "2021-12-21T00:47:30.000Z" - }, - "end": { - "$date": "2021-12-21T01:27:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e5d988ec-102f-48d7-930e-805ae891cd68", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-21T01:18:36.000Z" - }, - "end": { - "$date": "2021-12-21T02:09:52.000Z" - }, - "events": [ - { - "uuid": "0de4dccd-1f26-4540-8679-1962e9aeb7fe", - "start": { - "$date": "2021-12-21T01:18:36.000Z" - }, - "end": { - "$date": "2021-12-21T01:47:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4de1f17-e6e9-4d43-af80-af1c35477148", - "start": { - "$date": "2021-12-21T01:47:36.000Z" - }, - "end": { - "$date": "2021-12-21T01:56:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c3b79db-fd82-4503-a914-5d51d3249d42", - "start": { - "$date": "2021-12-21T01:56:36.000Z" - }, - "end": { - "$date": "2021-12-21T02:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5db4acc2-f845-4a4d-9417-93f8df987c79", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-21T01:31:10.000Z" - }, - "end": { - "$date": "2021-12-21T02:10:13.000Z" - }, - "events": [ - { - "uuid": "a6cf25e8-7619-4015-8ba6-acf39a9dbace", - "start": { - "$date": "2021-12-21T01:31:10.000Z" - }, - "end": { - "$date": "2021-12-21T02:10:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b36e4c62-f511-4793-9cf8-bfe7532f97f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-21T02:05:37.000Z" - }, - "end": { - "$date": "2021-12-21T03:22:09.000Z" - }, - "events": [ - { - "uuid": "fd26dda3-9969-4c02-9e06-6b8a0a2e8563", - "start": { - "$date": "2021-12-21T02:05:37.000Z" - }, - "end": { - "$date": "2021-12-21T03:06:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "677b1ac3-1335-46aa-b5b6-2412fa24e013", - "start": { - "$date": "2021-12-21T03:06:37.000Z" - }, - "end": { - "$date": "2021-12-21T03:16:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3f6e04d7-9290-4879-83c3-bede166bb668", - "start": { - "$date": "2021-12-21T03:16:37.000Z" - }, - "end": { - "$date": "2021-12-21T03:22:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21ff271a-9d7c-49fa-8b52-52e592483d6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-21T02:10:19.000Z" - }, - "end": { - "$date": "2021-12-21T02:11:54.000Z" - }, - "events": [ - { - "uuid": "728acb51-aa4c-4d4e-9466-6365859b3593", - "start": { - "$date": "2021-12-21T02:10:19.000Z" - }, - "end": { - "$date": "2021-12-21T02:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1384ca26-3554-4230-b448-a277f47ce39a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-21T02:14:08.000Z" - }, - "end": { - "$date": "2021-12-21T02:31:35.000Z" - }, - "events": [ - { - "uuid": "b9b80b9b-d26a-477e-83d9-94cbc241581f", - "start": { - "$date": "2021-12-21T02:14:08.000Z" - }, - "end": { - "$date": "2021-12-21T02:31:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0b381ed4-d4d2-4a58-baba-8f732d91f077", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-21T00:35:54.000Z" - }, - "end": { - "$date": "2021-12-21T03:33:39.000Z" - }, - "events": [ - { - "uuid": "eced49e2-7bef-45fa-885e-7dd8080eb18d", - "start": { - "$date": "2021-12-21T00:35:54.000Z" - }, - "end": { - "$date": "2021-12-21T03:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b45f7b30-c26d-4a30-a832-270d97326bea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-21T02:21:39.000Z" - }, - "end": { - "$date": "2021-12-21T02:51:45.000Z" - }, - "events": [ - { - "uuid": "d4bf82f9-54f2-4ceb-9250-6c700baf6fd0", - "start": { - "$date": "2021-12-21T02:21:39.000Z" - }, - "end": { - "$date": "2021-12-21T02:51:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60c817a8-d802-42d4-8438-103ed4d8801c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-21T02:21:35.000Z" - }, - "end": { - "$date": "2021-12-21T02:51:59.000Z" - }, - "events": [ - { - "uuid": "ed9923e4-a78f-4757-a15c-5a2bb4600688", - "start": { - "$date": "2021-12-21T02:21:35.000Z" - }, - "end": { - "$date": "2021-12-21T02:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fe65006-9e17-4470-a26a-6df1fb1190af", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-21T02:34:26.000Z" - }, - "end": { - "$date": "2021-12-21T02:52:13.000Z" - }, - "events": [ - { - "uuid": "2a5701b8-7862-46f3-9168-488348d1d61b", - "start": { - "$date": "2021-12-21T02:34:26.000Z" - }, - "end": { - "$date": "2021-12-21T02:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "61b3e589-5e6b-4580-824f-bce9699aa3e1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-21T02:36:39.000Z" - }, - "end": { - "$date": "2021-12-21T03:32:04.000Z" - }, - "events": [ - { - "uuid": "30632087-0a98-4f04-84af-490fe26c8d39", - "start": { - "$date": "2021-12-21T02:36:39.000Z" - }, - "end": { - "$date": "2021-12-21T03:32:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5e11566d-b7ce-4aca-88fa-d780acab1b9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-21T02:52:16.000Z" - }, - "end": { - "$date": "2021-12-21T03:09:25.000Z" - }, - "events": [ - { - "uuid": "9b044af8-1fd8-4288-9983-418d31e199c4", - "start": { - "$date": "2021-12-21T02:52:16.000Z" - }, - "end": { - "$date": "2021-12-21T03:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa7a03d6-57b1-4a37-ab1d-7fd157482337", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-21T02:54:03.000Z" - }, - "end": { - "$date": "2021-12-21T03:15:31.000Z" - }, - "events": [ - { - "uuid": "dcc87ffc-a2f9-4751-b532-5508c76f1e79", - "start": { - "$date": "2021-12-21T02:54:03.000Z" - }, - "end": { - "$date": "2021-12-21T03:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "8ab5d95c-876d-4e0b-844e-c69c206327aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-21T03:11:31.000Z" - }, - "end": { - "$date": "2021-12-21T03:43:22.000Z" - }, - "events": [ - { - "uuid": "b19b938b-f020-4af5-86b4-0502354198a7", - "start": { - "$date": "2021-12-21T03:11:31.000Z" - }, - "end": { - "$date": "2021-12-21T03:43:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "883e116e-83aa-4a73-832d-a60aaf22de38", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2021-12-21T03:17:31.000Z" - }, - "end": { - "$date": "2021-12-21T03:31:12.000Z" - }, - "events": [ - { - "uuid": "ff1cbde6-daea-4355-8acd-4911299fb65a", - "start": { - "$date": "2021-12-21T03:17:31.000Z" - }, - "end": { - "$date": "2021-12-21T03:31:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dac19380-887d-4dd2-9eff-9a9b1cf3626f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-21T03:33:54.000Z" - }, - "end": { - "$date": "2021-12-21T03:41:10.000Z" - }, - "events": [ - { - "uuid": "da6d2cb0-f3dd-4250-b66d-3ee20667216e", - "start": { - "$date": "2021-12-21T03:33:54.000Z" - }, - "end": { - "$date": "2021-12-21T03:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2254d051-5b3f-4b32-a064-81eed48ea844", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-21T03:41:25.000Z" - }, - "end": { - "$date": "2021-12-21T07:09:33.000Z" - }, - "events": [ - { - "uuid": "a87714b0-60f5-41d9-872a-16b8b729a4ca", - "start": { - "$date": "2021-12-21T03:41:25.000Z" - }, - "end": { - "$date": "2021-12-21T05:02:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7b6bbaa-f065-403c-87f0-4b8f022c141d", - "start": { - "$date": "2021-12-21T05:02:25.000Z" - }, - "end": { - "$date": "2021-12-21T05:07:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d5442e3-1eeb-4bd2-9f57-23d9d5950efa", - "start": { - "$date": "2021-12-21T05:07:25.000Z" - }, - "end": { - "$date": "2021-12-21T07:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4841164d-8b95-4d82-8a88-18bd7be25046", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-21T06:07:13.000Z" - }, - "end": { - "$date": "2021-12-21T06:42:51.000Z" - }, - "events": [ - { - "uuid": "dbacca13-2e13-499f-a544-08651c8bb221", - "start": { - "$date": "2021-12-21T06:07:13.000Z" - }, - "end": { - "$date": "2021-12-21T06:42:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf6639a2-6590-4889-9011-ae17d40c7176", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T06:16:26.000Z" - }, - "end": { - "$date": "2021-12-21T06:39:25.000Z" - }, - "events": [ - { - "uuid": "9908ec36-fbfa-41f2-8d5e-b22a7350a321", - "start": { - "$date": "2021-12-21T06:16:26.000Z" - }, - "end": { - "$date": "2021-12-21T06:39:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47933bca-2f01-416f-845f-2cd2c758a597", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T06:42:32.000Z" - }, - "end": { - "$date": "2021-12-21T07:09:17.000Z" - }, - "events": [ - { - "uuid": "f6be3086-5ed5-4096-8f27-99228eff1095", - "start": { - "$date": "2021-12-21T06:42:32.000Z" - }, - "end": { - "$date": "2021-12-21T07:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afa49a62-b343-4125-929f-4a86a77b43e4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T07:28:10.000Z" - }, - "end": { - "$date": "2021-12-21T07:56:56.000Z" - }, - "events": [ - { - "uuid": "a568f1d7-6067-4a97-95ea-6b7f40a0a3d0", - "start": { - "$date": "2021-12-21T07:28:10.000Z" - }, - "end": { - "$date": "2021-12-21T07:56:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1471e2dc-3c51-4ec8-85b2-59023549cc3a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T07:58:51.000Z" - }, - "end": { - "$date": "2021-12-21T08:16:41.000Z" - }, - "events": [ - { - "uuid": "961c7300-2918-48ed-b004-9c0c0f16ad83", - "start": { - "$date": "2021-12-21T07:58:51.000Z" - }, - "end": { - "$date": "2021-12-21T08:16:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "648c282c-0621-471e-88c3-af49dade6325", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-21T12:58:50.000Z" - }, - "end": { - "$date": "2021-12-21T14:59:34.000Z" - }, - "events": [ - { - "uuid": "3befc30c-5ca4-4bd0-9f12-449017968cef", - "start": { - "$date": "2021-12-21T12:58:50.000Z" - }, - "end": { - "$date": "2021-12-21T14:59:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "c85ae978-8962-4deb-bbce-9da6012f8ca8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-21T16:31:40.000Z" - }, - "end": { - "$date": "2021-12-21T16:35:03.000Z" - }, - "events": [ - { - "uuid": "c0fa5921-582d-4581-8c81-392477319d3b", - "start": { - "$date": "2021-12-21T16:31:40.000Z" - }, - "end": { - "$date": "2021-12-21T16:35:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "609d789a-18dc-4eaf-89b5-a18f52e4bfbd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T16:43:05.000Z" - }, - "end": { - "$date": "2021-12-21T16:45:30.000Z" - }, - "events": [ - { - "uuid": "ef2eed7c-14d5-4423-8351-8a87c589190e", - "start": { - "$date": "2021-12-21T16:43:05.000Z" - }, - "end": { - "$date": "2021-12-21T16:45:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "81eed0f3-0974-48c7-bedd-4a25d9bedf4e", - "uuid": "48b18677-1838-415b-9ac7-7d4f81466b00", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T16:47:05.000Z" - }, - "end": { - "$date": "2021-12-21T17:00:06.000Z" - }, - "events": [ - { - "uuid": "e928d08a-dfd6-4d8f-aaf5-76ae2d72cfd8", - "start": { - "$date": "2021-12-21T16:47:05.000Z" - }, - "end": { - "$date": "2021-12-21T17:00:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "a787a05e-4947-4bd6-ab95-a0adf82d384e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T17:01:31.000Z" - }, - "end": { - "$date": "2021-12-21T17:06:26.000Z" - }, - "events": [ - { - "uuid": "e674ae21-2afd-4ba9-aa43-83e82e5b0bdf", - "start": { - "$date": "2021-12-21T17:01:31.000Z" - }, - "end": { - "$date": "2021-12-21T17:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "fba59a3f-898e-4f31-a57a-98951e4f402c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T17:22:23.000Z" - }, - "end": { - "$date": "2021-12-21T17:28:24.000Z" - }, - "events": [ - { - "uuid": "f97e28e1-7e53-4b1f-a0c5-217dffda0049", - "start": { - "$date": "2021-12-21T17:22:23.000Z" - }, - "end": { - "$date": "2021-12-21T17:28:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e09a61a2-e7e3-4a49-bbe5-913325f5c91c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T17:28:59.000Z" - }, - "end": { - "$date": "2021-12-21T18:20:22.000Z" - }, - "events": [ - { - "uuid": "6341d873-73e2-492f-bc2b-2503be656f9b", - "start": { - "$date": "2021-12-21T17:28:59.000Z" - }, - "end": { - "$date": "2021-12-21T18:20:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f8269cc-f5e7-455b-a31b-6b140002d3f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-21T17:35:03.000Z" - }, - "end": { - "$date": "2021-12-21T17:54:59.000Z" - }, - "events": [ - { - "uuid": "7ada45c0-ef8d-49a0-af6c-11efeafd69d9", - "start": { - "$date": "2021-12-21T17:35:03.000Z" - }, - "end": { - "$date": "2021-12-21T17:54:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b27e0b1f-ac36-41cf-852f-6f72c5f0207f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T18:35:24.000Z" - }, - "end": { - "$date": "2021-12-21T18:56:00.000Z" - }, - "events": [ - { - "uuid": "852a4410-0062-452e-b99c-3d981a62240b", - "start": { - "$date": "2021-12-21T18:35:24.000Z" - }, - "end": { - "$date": "2021-12-21T18:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0875883c-fe52-41d0-8196-b5855c2a8126", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T18:56:05.000Z" - }, - "end": { - "$date": "2021-12-21T20:21:54.000Z" - }, - "events": [ - { - "uuid": "aee585fe-68ec-44dc-a47f-1b9fe8c98b3a", - "start": { - "$date": "2021-12-21T18:56:05.000Z" - }, - "end": { - "$date": "2021-12-21T20:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fe2d5998-ffd3-4bc8-85ee-589de75691f3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T20:21:29.000Z" - }, - "end": { - "$date": "2021-12-21T20:23:45.000Z" - }, - "events": [ - { - "uuid": "83c85889-4a97-429c-9696-7f3827850f7b", - "start": { - "$date": "2021-12-21T20:21:29.000Z" - }, - "end": { - "$date": "2021-12-21T20:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "843b504f-c036-4bfd-bdcb-fc783e9e2570", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T20:23:55.000Z" - }, - "end": { - "$date": "2021-12-21T20:28:16.000Z" - }, - "events": [ - { - "uuid": "2c40e5b0-a7cd-4cd1-bb9e-42d4cada807a", - "start": { - "$date": "2021-12-21T20:23:55.000Z" - }, - "end": { - "$date": "2021-12-21T20:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "35b9bd97-3079-4c74-bf96-dc53507c9b96", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-21T20:28:21.000Z" - }, - "end": { - "$date": "2021-12-21T23:39:06.000Z" - }, - "events": [ - { - "uuid": "01751ac1-8026-475b-91a2-b904a6175f3d", - "start": { - "$date": "2021-12-21T20:28:21.000Z" - }, - "end": { - "$date": "2021-12-21T23:39:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "12c4485e-3697-4a51-982b-75af6bd7e566", - "uuid": "7318af1e-b896-4165-8124-42d831882563", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T20:47:22.000Z" - }, - "end": { - "$date": "2021-12-21T22:04:32.000Z" - }, - "events": [ - { - "uuid": "4cb3d66b-88f9-4be4-ba8a-1b38fb337b01", - "start": { - "$date": "2021-12-21T20:47:22.000Z" - }, - "end": { - "$date": "2021-12-21T21:29:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "096d452a-92c3-459c-a2f5-39e01d31b232", - "start": { - "$date": "2021-12-21T21:29:22.000Z" - }, - "end": { - "$date": "2021-12-21T22:04:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac253b8b-367c-4d3a-bd88-406c666ffef6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-21T21:14:11.000Z" - }, - "end": { - "$date": "2021-12-21T21:36:45.000Z" - }, - "events": [ - { - "uuid": "90750790-fd50-4c3e-b142-0b787da48263", - "start": { - "$date": "2021-12-21T21:14:11.000Z" - }, - "end": { - "$date": "2021-12-21T21:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6895b88d-670d-4b23-9f8c-944bbd9de680", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-21T22:18:49.000Z" - }, - "end": { - "$date": "2021-12-21T22:43:11.000Z" - }, - "events": [ - { - "uuid": "13b842df-745e-4a1b-8b73-dcf16c6998ff", - "start": { - "$date": "2021-12-21T22:18:49.000Z" - }, - "end": { - "$date": "2021-12-21T22:43:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "477599d4-9fc9-406f-9f9e-901d11e12b74", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T22:17:09.000Z" - }, - "end": { - "$date": "2021-12-21T22:35:31.000Z" - }, - "events": [ - { - "uuid": "02e8394b-d972-4536-a0a5-42a43b11cec6", - "start": { - "$date": "2021-12-21T22:17:09.000Z" - }, - "end": { - "$date": "2021-12-21T22:35:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2dac0c3e-e7be-4919-b897-8dcf68a186d6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-21T22:32:22.000Z" - }, - "end": { - "$date": "2021-12-21T22:51:16.000Z" - }, - "events": [ - { - "uuid": "34694db9-111c-4dd1-806b-d4db27ed3e8a", - "start": { - "$date": "2021-12-21T22:32:22.000Z" - }, - "end": { - "$date": "2021-12-21T22:51:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "cda761a1-f6a5-45b9-8f2e-c5db77ece0af", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-21T22:52:59.000Z" - }, - "end": { - "$date": "2021-12-21T22:53:03.000Z" - }, - "events": [ - { - "uuid": "7a06ec2a-c124-4eb2-87f0-d35d1a600b23", - "start": { - "$date": "2021-12-21T22:52:59.000Z" - }, - "end": { - "$date": "2021-12-21T22:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fff41b2-e75f-491c-8b47-23613b2247aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-21T22:49:52.000Z" - }, - "end": { - "$date": "2021-12-21T23:29:02.000Z" - }, - "events": [ - { - "uuid": "c49bd029-3bfc-4ea0-bb1b-79d80d18c3ce", - "start": { - "$date": "2021-12-21T22:49:52.000Z" - }, - "end": { - "$date": "2021-12-21T23:29:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9adb316e-622e-4b31-9de5-aea3497513a0", - "uuid": "ad6a70c1-6d5b-4a67-9b8d-293e531b1cc4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-21T22:52:31.000Z" - }, - "end": { - "$date": "2021-12-22T00:11:55.000Z" - }, - "events": [ - { - "uuid": "09c4b2ef-3c75-4e4f-8fd6-ffddca408d60", - "start": { - "$date": "2021-12-21T22:52:31.000Z" - }, - "end": { - "$date": "2021-12-21T23:11:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f02d0f0b-42af-4339-b0b3-38ad0fc172b8", - "start": { - "$date": "2021-12-21T23:11:31.000Z" - }, - "end": { - "$date": "2021-12-21T23:35:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f8444d09-f952-4fc2-be5b-b32a6e46dda5", - "start": { - "$date": "2021-12-21T23:35:31.000Z" - }, - "end": { - "$date": "2021-12-21T23:37:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7913a6b-232b-4fd0-aaac-80389b77735d", - "start": { - "$date": "2021-12-21T23:37:31.000Z" - }, - "end": { - "$date": "2021-12-22T00:11:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bfc368df-7316-4090-9e65-42c8edb5126f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-21T23:20:21.000Z" - }, - "end": { - "$date": "2021-12-21T23:34:52.000Z" - }, - "events": [ - { - "uuid": "6a7cabb4-e5a4-4485-ba05-5c510bd99d61", - "start": { - "$date": "2021-12-21T23:20:21.000Z" - }, - "end": { - "$date": "2021-12-21T23:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9aa87c0-3a63-4440-9955-a3dcae621208", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-21T23:32:36.000Z" - }, - "end": { - "$date": "2021-12-22T00:02:39.000Z" - }, - "events": [ - { - "uuid": "dc8ae62b-1370-4569-b43e-5272c0d7bb65", - "start": { - "$date": "2021-12-21T23:32:36.000Z" - }, - "end": { - "$date": "2021-12-22T00:02:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9079ae0c-0517-48ab-b227-878dcdf91889", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T00:08:41.000Z" - }, - "end": { - "$date": "2021-12-22T00:13:29.000Z" - }, - "events": [ - { - "uuid": "e5ea285d-3cee-4d09-bcc5-0f4173fc3f96", - "start": { - "$date": "2021-12-22T00:08:41.000Z" - }, - "end": { - "$date": "2021-12-22T00:13:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc09f3c7-d96e-4ad2-b520-00f74360da94", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T00:15:15.000Z" - }, - "end": { - "$date": "2021-12-22T00:50:05.000Z" - }, - "events": [ - { - "uuid": "0e73918f-8fff-4b11-876b-eb4189eb48ce", - "start": { - "$date": "2021-12-22T00:15:15.000Z" - }, - "end": { - "$date": "2021-12-22T00:50:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "e711360d-492a-49c2-9e77-48d47342f916", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-22T00:13:14.000Z" - }, - "end": { - "$date": "2021-12-22T00:28:36.000Z" - }, - "events": [ - { - "uuid": "14b7301c-b668-4e8b-8f35-831860201082", - "start": { - "$date": "2021-12-22T00:13:14.000Z" - }, - "end": { - "$date": "2021-12-22T00:28:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5615c7c-7c8a-4581-8527-3501a0052536", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T00:15:16.000Z" - }, - "end": { - "$date": "2021-12-22T00:50:32.000Z" - }, - "events": [ - { - "uuid": "1b39575e-0a1d-4858-9175-325bb3e775bc", - "start": { - "$date": "2021-12-22T00:15:16.000Z" - }, - "end": { - "$date": "2021-12-22T00:50:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6449ac0-4a3a-4d2a-8948-0a7b3ea3c1b7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T00:15:11.000Z" - }, - "end": { - "$date": "2021-12-22T00:51:05.000Z" - }, - "events": [ - { - "uuid": "7c27ffb5-a02f-4973-92d1-605e14139609", - "start": { - "$date": "2021-12-22T00:15:11.000Z" - }, - "end": { - "$date": "2021-12-22T00:51:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edc7fa8c-5a44-4f1a-8e90-dce132e50ebc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T00:15:10.000Z" - }, - "end": { - "$date": "2021-12-22T00:50:18.000Z" - }, - "events": [ - { - "uuid": "ee399e72-112a-4fd6-856e-e9dda42c8a49", - "start": { - "$date": "2021-12-22T00:15:10.000Z" - }, - "end": { - "$date": "2021-12-22T00:50:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "17da6bb2-6cc5-4080-83c1-c524686bd25a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-22T00:20:37.000Z" - }, - "end": { - "$date": "2021-12-22T01:07:49.000Z" - }, - "events": [ - { - "uuid": "c60f7f86-9c00-4a11-9f60-7ba26035a562", - "start": { - "$date": "2021-12-22T00:20:37.000Z" - }, - "end": { - "$date": "2021-12-22T01:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "d36abf2f-f1b6-4fd9-971b-603b1d1a05c0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-22T00:31:43.000Z" - }, - "end": { - "$date": "2021-12-22T01:33:33.000Z" - }, - "events": [ - { - "uuid": "d8f5aa46-5eed-4dfc-a807-22b1579d6082", - "start": { - "$date": "2021-12-22T00:31:43.000Z" - }, - "end": { - "$date": "2021-12-22T01:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89caadbd-4183-4879-87af-c1dde07dc4f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T00:51:41.000Z" - }, - "end": { - "$date": "2021-12-22T01:30:56.000Z" - }, - "events": [ - { - "uuid": "6ec182c8-d489-416a-acc3-2133a6c227b8", - "start": { - "$date": "2021-12-22T00:51:41.000Z" - }, - "end": { - "$date": "2021-12-22T01:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab2b9d81-fb1c-4c42-b310-5b4f56377f87", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T00:51:44.000Z" - }, - "end": { - "$date": "2021-12-22T01:31:00.000Z" - }, - "events": [ - { - "uuid": "31d01422-5a36-4cbd-9bb4-b36b8c69b605", - "start": { - "$date": "2021-12-22T00:51:44.000Z" - }, - "end": { - "$date": "2021-12-22T01:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2538d023-def9-4bee-9757-13d2fe3333b3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T00:51:33.000Z" - }, - "end": { - "$date": "2021-12-22T01:31:00.000Z" - }, - "events": [ - { - "uuid": "b9acc46f-dae0-4d55-98bb-d6731f0badfa", - "start": { - "$date": "2021-12-22T00:51:33.000Z" - }, - "end": { - "$date": "2021-12-22T01:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09cd6d4d-ffc8-4b54-9e15-4c95e75d5536", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T00:51:33.000Z" - }, - "end": { - "$date": "2021-12-22T01:31:02.000Z" - }, - "events": [ - { - "uuid": "a4327ce9-e7d2-4541-af0d-cd19af11fc77", - "start": { - "$date": "2021-12-22T00:51:33.000Z" - }, - "end": { - "$date": "2021-12-22T01:31:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1a187f9b-e4ec-4a8a-a14a-02b1c0dc0200", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-22T01:22:46.000Z" - }, - "end": { - "$date": "2021-12-22T02:53:01.000Z" - }, - "events": [ - { - "uuid": "8e660843-ffd7-48a1-b3c6-ab827ed9aa0b", - "start": { - "$date": "2021-12-22T01:22:46.000Z" - }, - "end": { - "$date": "2021-12-22T02:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4232f95c-ab66-423e-b69d-d5883c7df3c0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T01:36:10.000Z" - }, - "end": { - "$date": "2021-12-22T02:10:12.000Z" - }, - "events": [ - { - "uuid": "58229569-eeae-40e1-9db7-18b0b743695a", - "start": { - "$date": "2021-12-22T01:36:10.000Z" - }, - "end": { - "$date": "2021-12-22T02:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1939de73-ffb1-4403-9f4c-cafa5c7058ec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-22T01:35:09.000Z" - }, - "end": { - "$date": "2021-12-22T01:41:54.000Z" - }, - "events": [ - { - "uuid": "4414414b-438a-4c1e-9f83-29c261fde3b5", - "start": { - "$date": "2021-12-22T01:35:09.000Z" - }, - "end": { - "$date": "2021-12-22T01:41:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea754468-2607-42b8-b3db-8341d9b79518", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T01:36:17.000Z" - }, - "end": { - "$date": "2021-12-22T02:10:23.000Z" - }, - "events": [ - { - "uuid": "82d746df-c97f-46b1-9e95-130c52d1123b", - "start": { - "$date": "2021-12-22T01:36:17.000Z" - }, - "end": { - "$date": "2021-12-22T02:10:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ce690a8-f3a4-485d-bc0c-70df2bec3572", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T01:36:15.000Z" - }, - "end": { - "$date": "2021-12-22T02:10:15.000Z" - }, - "events": [ - { - "uuid": "0608a1c2-b701-4f61-bcde-85af53f8bae6", - "start": { - "$date": "2021-12-22T01:36:15.000Z" - }, - "end": { - "$date": "2021-12-22T02:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed604654-a186-4d07-b0fe-f2f83e3ab8ff", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T02:25:44.000Z" - }, - "end": { - "$date": "2021-12-22T02:51:20.000Z" - }, - "events": [ - { - "uuid": "b5f0d8ac-9d76-423b-99fa-61fe12c433b9", - "start": { - "$date": "2021-12-22T02:25:44.000Z" - }, - "end": { - "$date": "2021-12-22T02:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bc931fc-996b-45db-854e-1b35c28d8fb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T02:25:47.000Z" - }, - "end": { - "$date": "2021-12-22T02:51:34.000Z" - }, - "events": [ - { - "uuid": "5f583f9c-8dac-4db5-9454-fdbc529f31aa", - "start": { - "$date": "2021-12-22T02:25:47.000Z" - }, - "end": { - "$date": "2021-12-22T02:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9cb6d59-dd1e-4817-86fc-070ed1cc50cc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T02:25:46.000Z" - }, - "end": { - "$date": "2021-12-22T02:51:26.000Z" - }, - "events": [ - { - "uuid": "f7ae13bc-2d83-480c-829d-08d42fcb6860", - "start": { - "$date": "2021-12-22T02:25:46.000Z" - }, - "end": { - "$date": "2021-12-22T02:51:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d4867c4-8710-43dd-b65b-a1f63f5cea2d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T02:57:45.000Z" - }, - "end": { - "$date": "2021-12-22T03:25:26.000Z" - }, - "events": [ - { - "uuid": "4f973ab0-8e1e-4fd6-ac4a-a889a3f37388", - "start": { - "$date": "2021-12-22T02:57:45.000Z" - }, - "end": { - "$date": "2021-12-22T03:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb76bd91-abfe-425b-8c3d-b3b6fff7efcb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T02:57:47.000Z" - }, - "end": { - "$date": "2021-12-22T03:25:27.000Z" - }, - "events": [ - { - "uuid": "93e96a72-a2bf-4512-b87b-78344746a5fd", - "start": { - "$date": "2021-12-22T02:57:47.000Z" - }, - "end": { - "$date": "2021-12-22T03:25:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a7e69f0-68e1-4475-9f27-9ce1fa5074c2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T02:57:44.000Z" - }, - "end": { - "$date": "2021-12-22T03:25:34.000Z" - }, - "events": [ - { - "uuid": "d0489ea6-73e5-4307-a3f8-909c266b4014", - "start": { - "$date": "2021-12-22T02:57:44.000Z" - }, - "end": { - "$date": "2021-12-22T03:25:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "81c802a5-e3ba-4412-9493-dd11ca38d965", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-21T23:22:52.000Z" - }, - "end": { - "$date": "2021-12-22T05:15:26.000Z" - }, - "events": [ - { - "uuid": "1eeff59a-2ef2-4b60-aff6-7662a4f468a9", - "start": { - "$date": "2021-12-21T23:22:52.000Z" - }, - "end": { - "$date": "2021-12-22T05:15:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e64a2bbe-261e-443d-b94c-af2f57047fd4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T03:37:50.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:41.000Z" - }, - "events": [ - { - "uuid": "068f40d7-0c8f-47d2-83fc-acad518c2ce0", - "start": { - "$date": "2021-12-22T03:37:50.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb927c8f-d36a-4302-8bf1-319e3544a012", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T03:26:14.000Z" - }, - "end": { - "$date": "2021-12-22T03:28:00.000Z" - }, - "events": [ - { - "uuid": "8f88b00c-dde6-4499-a748-a8fda171298d", - "start": { - "$date": "2021-12-22T03:26:14.000Z" - }, - "end": { - "$date": "2021-12-22T03:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "967cf956-3eb8-4276-bcd3-1f1717d17f9d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T03:26:10.000Z" - }, - "end": { - "$date": "2021-12-22T03:28:01.000Z" - }, - "events": [ - { - "uuid": "403f6005-1d20-4f15-ab92-ad6d74829c33", - "start": { - "$date": "2021-12-22T03:26:10.000Z" - }, - "end": { - "$date": "2021-12-22T03:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "383145a7-6d81-4a5f-95eb-19d9e2c384c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T03:26:10.000Z" - }, - "end": { - "$date": "2021-12-22T03:27:59.000Z" - }, - "events": [ - { - "uuid": "20e0d8ab-3cf5-4281-84e2-e82ae3bb1f15", - "start": { - "$date": "2021-12-22T03:26:10.000Z" - }, - "end": { - "$date": "2021-12-22T03:27:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b09819b1-3612-4d1f-8163-75982f2394c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T03:37:44.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:49.000Z" - }, - "events": [ - { - "uuid": "7007dbd5-4edb-4426-8db5-0f26cfc90880", - "start": { - "$date": "2021-12-22T03:37:44.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea0927c1-7bcf-4bb7-9439-dc34f6debb42", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T03:37:42.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:42.000Z" - }, - "events": [ - { - "uuid": "269e0d24-fc80-4087-83aa-58388f18d47d", - "start": { - "$date": "2021-12-22T03:37:42.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "807dece4-b490-4d58-8787-fa83821e6437", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T03:37:51.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:50.000Z" - }, - "events": [ - { - "uuid": "6692523f-0333-492c-8720-79bf9511e013", - "start": { - "$date": "2021-12-22T03:37:51.000Z" - }, - "end": { - "$date": "2021-12-22T04:08:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "dd92d9c7-0dc1-4f04-be0b-043dd9c767ca", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-22T03:44:02.000Z" - }, - "end": { - "$date": "2021-12-22T03:55:19.000Z" - }, - "events": [ - { - "uuid": "b1d76fdf-3d45-471d-84df-7781d425e43c", - "start": { - "$date": "2021-12-22T03:44:02.000Z" - }, - "end": { - "$date": "2021-12-22T03:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3f03339b-58c4-4d04-8a05-a18e8e630873", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-22T04:03:45.000Z" - }, - "end": { - "$date": "2021-12-22T04:18:32.000Z" - }, - "events": [ - { - "uuid": "c463abf9-15b7-495c-b1e3-31fa0b37f37f", - "start": { - "$date": "2021-12-22T04:03:45.000Z" - }, - "end": { - "$date": "2021-12-22T04:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74ca8ecb-557d-467b-8e38-d156dec9da8e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T04:15:01.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:26.000Z" - }, - "events": [ - { - "uuid": "5160279d-4e0e-4706-a7af-653dae12d6d8", - "start": { - "$date": "2021-12-22T04:15:01.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73f6c566-a6da-4dc6-bf36-61041b6621a5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T04:14:58.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:34.000Z" - }, - "events": [ - { - "uuid": "ed82f1f6-a7f0-4d06-ad7e-25cd50678b28", - "start": { - "$date": "2021-12-22T04:14:58.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae449c8b-aff2-425e-9a3b-cf859fa996a7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T04:14:53.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:24.000Z" - }, - "events": [ - { - "uuid": "8893bf8f-64fc-4a64-a3f7-1f07de0e040f", - "start": { - "$date": "2021-12-22T04:14:53.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23032553-6a81-4eee-aeb0-1fe8958c7790", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T04:14:59.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:29.000Z" - }, - "events": [ - { - "uuid": "9982f5ee-feb6-4867-ac17-b6074eeddc07", - "start": { - "$date": "2021-12-22T04:14:59.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f9b3c3a-5446-477f-9bf8-580ada5a8316", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T04:15:00.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:30.000Z" - }, - "events": [ - { - "uuid": "81692b49-f75b-4f5d-9b7e-1ae552d62224", - "start": { - "$date": "2021-12-22T04:15:00.000Z" - }, - "end": { - "$date": "2021-12-22T04:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7542f543-5d19-4179-b734-1a0b4d934ed2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T04:36:01.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:42.000Z" - }, - "events": [ - { - "uuid": "04e3eca7-d8a1-46be-a84d-76a9b8fee785", - "start": { - "$date": "2021-12-22T04:36:01.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37307a6d-2e8f-40a4-82f9-0af0e871f99c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T04:36:01.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:41.000Z" - }, - "events": [ - { - "uuid": "f81ee7d3-6ae3-485a-bb0c-7325336fbf6b", - "start": { - "$date": "2021-12-22T04:36:01.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8763eb37-d894-46f7-b66e-d95c1c3b7955", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T04:36:09.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:51.000Z" - }, - "events": [ - { - "uuid": "74ff5a26-267a-4006-88ec-ebc8baa56753", - "start": { - "$date": "2021-12-22T04:36:09.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14a67b00-b8cd-43cd-b5b9-e236a88d7436", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T04:35:59.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:50.000Z" - }, - "events": [ - { - "uuid": "36c8df16-02aa-4bf1-8a6d-bdf2abd96c3c", - "start": { - "$date": "2021-12-22T04:35:59.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1288d6eb-666a-4948-b329-3845fd87f56b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T04:36:05.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:48.000Z" - }, - "events": [ - { - "uuid": "577f1c06-17a3-40f2-b87e-8cea0a2c7042", - "start": { - "$date": "2021-12-22T04:36:05.000Z" - }, - "end": { - "$date": "2021-12-22T04:57:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c8e968e-4958-4105-a49b-89e9138ec405", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T05:00:52.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:28.000Z" - }, - "events": [ - { - "uuid": "b4eab1a0-babb-4447-a669-647abf5425b8", - "start": { - "$date": "2021-12-22T05:00:52.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "863e4c83-fd8a-45c8-8687-e05811bdf431", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T05:00:56.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:20.000Z" - }, - "events": [ - { - "uuid": "dbcedac7-d977-4990-be14-124874126c37", - "start": { - "$date": "2021-12-22T05:00:56.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b707374-946e-4144-9650-ff8138d267f8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T05:00:56.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:27.000Z" - }, - "events": [ - { - "uuid": "2684c32c-f13d-4544-98d2-72a10ada4700", - "start": { - "$date": "2021-12-22T05:00:56.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b45f69c2-5279-4290-9c9b-b9854f920f10", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T05:00:55.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:26.000Z" - }, - "events": [ - { - "uuid": "82ac2623-f71e-41ed-8175-51e0d9089685", - "start": { - "$date": "2021-12-22T05:00:55.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f203b2dc-4fe7-412a-ada0-fa31ba7f8652", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T05:01:00.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:22.000Z" - }, - "events": [ - { - "uuid": "a184622a-4692-4798-a6f9-85f75d50c2e4", - "start": { - "$date": "2021-12-22T05:01:00.000Z" - }, - "end": { - "$date": "2021-12-22T05:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "20449e3f-dfb0-4ed1-8c01-2fe6559ebe61", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-22T05:15:50.000Z" - }, - "end": { - "$date": "2021-12-22T05:36:22.000Z" - }, - "events": [ - { - "uuid": "f9322600-62c0-4801-87d3-55936e8de300", - "start": { - "$date": "2021-12-22T05:15:50.000Z" - }, - "end": { - "$date": "2021-12-22T05:36:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6971df50-7ba8-4ca4-bf5e-4efe09a52ecf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T05:22:57.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:02.000Z" - }, - "events": [ - { - "uuid": "1e186c86-7b73-4712-ab15-0396e792b1f4", - "start": { - "$date": "2021-12-22T05:22:57.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33eafb99-aadb-4093-b2f2-11a9d489f32c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T05:22:57.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:12.000Z" - }, - "events": [ - { - "uuid": "8b00544f-875c-42dd-b794-dae6cc267581", - "start": { - "$date": "2021-12-22T05:22:57.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f53be28b-1ec0-4014-9a29-53669dd3b98f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T05:22:56.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:13.000Z" - }, - "events": [ - { - "uuid": "26af93f7-372f-43f2-b24a-f74b82e48252", - "start": { - "$date": "2021-12-22T05:22:56.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d25fc880-b9e1-4996-b827-8b92ae59aa57", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T05:22:57.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:19.000Z" - }, - "events": [ - { - "uuid": "d3d25ff9-9f64-4700-a1bb-8b85708a0c1e", - "start": { - "$date": "2021-12-22T05:22:57.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f521c55b-99f7-44f5-ae50-36a549f15ffc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T05:22:51.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:07.000Z" - }, - "events": [ - { - "uuid": "b44d608f-d545-4e91-8556-38b2690a14cb", - "start": { - "$date": "2021-12-22T05:22:51.000Z" - }, - "end": { - "$date": "2021-12-22T05:41:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7058b481-5ae5-45d6-8db6-36b2dd54d1bb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-22T05:36:36.000Z" - }, - "end": { - "$date": "2021-12-22T06:54:51.000Z" - }, - "events": [ - { - "uuid": "7570c147-734e-442b-aefa-3f6a70f0935e", - "start": { - "$date": "2021-12-22T05:36:36.000Z" - }, - "end": { - "$date": "2021-12-22T06:54:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a27d506-a566-4c80-95a4-ff9c8f30bd31", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T05:44:18.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:33.000Z" - }, - "events": [ - { - "uuid": "c889875e-b4f7-4ddb-ab89-89a5f7aa44e2", - "start": { - "$date": "2021-12-22T05:44:18.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60854159-7992-47d7-bb1a-544507e1147a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T05:44:13.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:41.000Z" - }, - "events": [ - { - "uuid": "1a058254-0a22-4a15-90ce-22f9f63f2134", - "start": { - "$date": "2021-12-22T05:44:13.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d77f711-ec80-48ab-b94c-68417ce8b321", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T05:44:07.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:36.000Z" - }, - "events": [ - { - "uuid": "68f75721-08b7-4900-8096-eee74eb9dd2c", - "start": { - "$date": "2021-12-22T05:44:07.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69d85508-af81-43e7-9304-879661c8bad8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T05:44:12.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:38.000Z" - }, - "events": [ - { - "uuid": "d3ffdb71-223b-4b80-8f9b-17ba0b67cb60", - "start": { - "$date": "2021-12-22T05:44:12.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3eb8e529-d5c7-4eb0-9bdb-1a5958f7e3b8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T05:44:17.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:38.000Z" - }, - "events": [ - { - "uuid": "1b10f76c-62c9-4a98-a1dd-7199643ba343", - "start": { - "$date": "2021-12-22T05:44:17.000Z" - }, - "end": { - "$date": "2021-12-22T06:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55ebd1ae-60dd-4f4a-b822-4775a78985ce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T06:14:22.000Z" - }, - "end": { - "$date": "2021-12-22T06:18:42.000Z" - }, - "events": [ - { - "uuid": "3e2e3d5b-a504-4137-92a6-f06970f147c2", - "start": { - "$date": "2021-12-22T06:14:22.000Z" - }, - "end": { - "$date": "2021-12-22T06:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "957e4699-ae5b-483c-9c5e-a70ae787eb63", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-22T06:15:00.000Z" - }, - "end": { - "$date": "2021-12-22T07:35:38.000Z" - }, - "events": [ - { - "uuid": "1a4558c6-4c03-475e-84b3-61dccf7c48a1", - "start": { - "$date": "2021-12-22T06:15:00.000Z" - }, - "end": { - "$date": "2021-12-22T07:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d029314-463a-46ed-a1b4-e9b986c6b50a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T06:29:29.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:55.000Z" - }, - "events": [ - { - "uuid": "e044623e-8098-41c5-bea2-edd868b0fd76", - "start": { - "$date": "2021-12-22T06:29:29.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3cb1ca30-28df-47ca-9b47-cbc1aea77f86", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T06:19:23.000Z" - }, - "end": { - "$date": "2021-12-22T06:34:59.000Z" - }, - "events": [ - { - "uuid": "91b6e8dd-57d5-4003-ac69-ac8caebe8b97", - "start": { - "$date": "2021-12-22T06:19:23.000Z" - }, - "end": { - "$date": "2021-12-22T06:34:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6997f98d-2703-4ab6-9cc8-3850e518192a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T06:22:56.000Z" - }, - "end": { - "$date": "2021-12-22T06:23:24.000Z" - }, - "events": [ - { - "uuid": "a7f0963a-323d-4e57-91ea-f2a5ece35344", - "start": { - "$date": "2021-12-22T06:22:56.000Z" - }, - "end": { - "$date": "2021-12-22T06:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb4f807d-54fc-41db-b2a3-e6dbf30b238e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T06:22:52.000Z" - }, - "end": { - "$date": "2021-12-22T06:23:26.000Z" - }, - "events": [ - { - "uuid": "1abbaa4b-8a2d-423f-9e60-bb0f431de684", - "start": { - "$date": "2021-12-22T06:22:52.000Z" - }, - "end": { - "$date": "2021-12-22T06:23:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c177d45-ebc8-4d5a-9a3f-b169ae4b6d43", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T06:22:52.000Z" - }, - "end": { - "$date": "2021-12-22T06:23:25.000Z" - }, - "events": [ - { - "uuid": "9e723d4b-25df-4b9f-add5-80a4eaa69eb2", - "start": { - "$date": "2021-12-22T06:22:52.000Z" - }, - "end": { - "$date": "2021-12-22T06:23:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "adb5e3fa-3530-4924-bd2c-2a57350b6754", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T06:29:36.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:52.000Z" - }, - "events": [ - { - "uuid": "cc89e119-f602-4b4d-974e-6c74ee4ffe3d", - "start": { - "$date": "2021-12-22T06:29:36.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0a5bf25-094c-46b0-b66a-46b338c5cca5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-22T06:29:38.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:54.000Z" - }, - "events": [ - { - "uuid": "c6dffb51-75ee-497d-bc0b-e4aaa63b907d", - "start": { - "$date": "2021-12-22T06:29:38.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f7a90ca-7b2c-463d-97fe-7835131f8918", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-22T06:29:29.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:59.000Z" - }, - "events": [ - { - "uuid": "3170f738-0dae-4512-9dc1-d238022beeec", - "start": { - "$date": "2021-12-22T06:29:29.000Z" - }, - "end": { - "$date": "2021-12-22T06:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32ea3a95-7627-46ed-a650-f99ff337db15", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T06:58:35.000Z" - }, - "end": { - "$date": "2021-12-22T07:19:51.000Z" - }, - "events": [ - { - "uuid": "b5d58ad1-6b23-4678-8fa1-830499a5fdbe", - "start": { - "$date": "2021-12-22T06:58:35.000Z" - }, - "end": { - "$date": "2021-12-22T07:19:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "426281fe-804d-44bc-8578-12dde080aa56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T06:58:43.000Z" - }, - "end": { - "$date": "2021-12-22T07:20:00.000Z" - }, - "events": [ - { - "uuid": "9adfc3e8-e69e-4aa3-bada-98735847b300", - "start": { - "$date": "2021-12-22T06:58:43.000Z" - }, - "end": { - "$date": "2021-12-22T07:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88bb17c2-1640-463a-af18-c92bcc40a28f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T07:24:06.000Z" - }, - "end": { - "$date": "2021-12-22T07:46:27.000Z" - }, - "events": [ - { - "uuid": "b6dfaeeb-254f-41ac-bd1a-7feeb37054d6", - "start": { - "$date": "2021-12-22T07:24:06.000Z" - }, - "end": { - "$date": "2021-12-22T07:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d2d83af-532b-4b44-874e-565390b56567", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T07:24:04.000Z" - }, - "end": { - "$date": "2021-12-22T07:46:25.000Z" - }, - "events": [ - { - "uuid": "a5c93ea8-356c-4ac3-b520-a4b5de1cfa39", - "start": { - "$date": "2021-12-22T07:24:04.000Z" - }, - "end": { - "$date": "2021-12-22T07:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f577dc41-1919-48f1-97c4-ed6651b7de01", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-22T07:50:47.000Z" - }, - "end": { - "$date": "2021-12-22T08:22:53.000Z" - }, - "events": [ - { - "uuid": "98c40f4e-62a5-4e5c-aa5c-3b0aeecd5543", - "start": { - "$date": "2021-12-22T07:50:47.000Z" - }, - "end": { - "$date": "2021-12-22T08:22:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3973c65-ca4a-4890-988d-7798afd83e8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T07:51:00.000Z" - }, - "end": { - "$date": "2021-12-22T08:22:58.000Z" - }, - "events": [ - { - "uuid": "609b2622-89b6-4874-ac99-6914a24d12c0", - "start": { - "$date": "2021-12-22T07:51:00.000Z" - }, - "end": { - "$date": "2021-12-22T08:22:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0dbafa9d-b871-4144-8bda-ce9da2f443d3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-22T09:52:52.000Z" - }, - "end": { - "$date": "2021-12-22T11:40:37.000Z" - }, - "events": [ - { - "uuid": "e0447ba7-2b73-443c-8f3d-05f46a2e5920", - "start": { - "$date": "2021-12-22T09:52:52.000Z" - }, - "end": { - "$date": "2021-12-22T11:40:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9f8616be-f876-4f5a-ab6a-0f894f9db401", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T16:10:22.000Z" - }, - "end": { - "$date": "2021-12-22T16:38:14.000Z" - }, - "events": [ - { - "uuid": "825ae601-b09c-4f9a-8025-abfea8c7e508", - "start": { - "$date": "2021-12-22T16:10:22.000Z" - }, - "end": { - "$date": "2021-12-22T16:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "35ec4e00-6719-4066-ada3-a62d45314af2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T16:38:24.000Z" - }, - "end": { - "$date": "2021-12-22T16:44:00.000Z" - }, - "events": [ - { - "uuid": "9f506197-95d7-46a3-b3aa-25d367280ec4", - "start": { - "$date": "2021-12-22T16:38:24.000Z" - }, - "end": { - "$date": "2021-12-22T16:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a3cceb01-9184-4305-8f0c-2b9059072e2b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T16:44:10.000Z" - }, - "end": { - "$date": "2021-12-22T17:05:21.000Z" - }, - "events": [ - { - "uuid": "bd31a9bf-576a-43a9-8f1f-7baaf73f9b2d", - "start": { - "$date": "2021-12-22T16:44:10.000Z" - }, - "end": { - "$date": "2021-12-22T17:05:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64e90ea6-dbdf-452e-840a-b01d57103570", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T17:41:07.000Z" - }, - "end": { - "$date": "2021-12-22T17:54:40.000Z" - }, - "events": [ - { - "uuid": "616154cb-7065-4909-b8e4-77ac8abeabb4", - "start": { - "$date": "2021-12-22T17:41:07.000Z" - }, - "end": { - "$date": "2021-12-22T17:53:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "75a59178-f69d-4069-9ca6-4a0a9ae07129", - "start": { - "$date": "2021-12-22T17:53:07.000Z" - }, - "end": { - "$date": "2021-12-22T17:54:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ab7a71ef-91bf-4769-9e4a-1a262264aa44", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T18:12:29.000Z" - }, - "end": { - "$date": "2021-12-22T18:31:45.000Z" - }, - "events": [ - { - "uuid": "e568bf63-3e47-4c00-b49c-473540e6c139", - "start": { - "$date": "2021-12-22T18:12:29.000Z" - }, - "end": { - "$date": "2021-12-22T18:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5565cc68-2968-430e-81e4-fdd53592d7e0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-22T19:24:11.000Z" - }, - "end": { - "$date": "2021-12-22T22:13:20.000Z" - }, - "events": [ - { - "uuid": "a6eb59f3-f77d-4322-9be9-7dbfbd649fe5", - "start": { - "$date": "2021-12-22T19:24:11.000Z" - }, - "end": { - "$date": "2021-12-22T22:13:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "18500dbb-2c9a-4b11-8db5-600acf502b92", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T19:32:53.000Z" - }, - "end": { - "$date": "2021-12-22T19:34:53.000Z" - }, - "events": [ - { - "uuid": "6f5cdf7b-8595-432f-9aca-73f125a2f26b", - "start": { - "$date": "2021-12-22T19:32:53.000Z" - }, - "end": { - "$date": "2021-12-22T19:34:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "fadea9ce-bf43-4008-a640-3407227837ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T19:37:34.000Z" - }, - "end": { - "$date": "2021-12-22T20:02:36.000Z" - }, - "events": [ - { - "uuid": "a1bde7a4-b712-4ecb-9fc6-f99efe53fefe", - "start": { - "$date": "2021-12-22T19:37:34.000Z" - }, - "end": { - "$date": "2021-12-22T20:02:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "318c16aa-b73b-4a46-934c-e76443a72521", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T20:05:47.000Z" - }, - "end": { - "$date": "2021-12-22T20:31:07.000Z" - }, - "events": [ - { - "uuid": "176822fb-88b7-46db-b807-ae94cdd0b7d0", - "start": { - "$date": "2021-12-22T20:05:47.000Z" - }, - "end": { - "$date": "2021-12-22T20:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "21ba8fac-3caa-462c-bf07-6c85f7b8dcfa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T20:33:20.000Z" - }, - "end": { - "$date": "2021-12-22T21:28:08.000Z" - }, - "events": [ - { - "uuid": "c4074863-12c8-4744-83f0-5bf4860edfb6", - "start": { - "$date": "2021-12-22T20:33:20.000Z" - }, - "end": { - "$date": "2021-12-22T21:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2556a1ea-cebc-442b-8c38-2d5dfd7b5fd7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T21:18:23.000Z" - }, - "end": { - "$date": "2021-12-22T21:46:15.000Z" - }, - "events": [ - { - "uuid": "55e8675d-cfa0-4c0c-8aff-e70b0c700024", - "start": { - "$date": "2021-12-22T21:18:23.000Z" - }, - "end": { - "$date": "2021-12-22T21:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64427d8c-be11-4293-a73d-ef2ce3384524", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T21:30:34.000Z" - }, - "end": { - "$date": "2021-12-22T21:59:19.000Z" - }, - "events": [ - { - "uuid": "aef179ea-e49d-47c9-b59b-c01c62a55704", - "start": { - "$date": "2021-12-22T21:30:34.000Z" - }, - "end": { - "$date": "2021-12-22T21:59:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4050814b-9f04-4f4a-833f-52f70aa58339", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T21:30:39.000Z" - }, - "end": { - "$date": "2021-12-22T21:59:23.000Z" - }, - "events": [ - { - "uuid": "0bd8e5f9-e2bd-488a-972c-1edce6edf885", - "start": { - "$date": "2021-12-22T21:30:39.000Z" - }, - "end": { - "$date": "2021-12-22T21:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93c45e79-564d-4ef4-91f0-bc1efd0bfe1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T22:00:05.000Z" - }, - "end": { - "$date": "2021-12-22T22:36:11.000Z" - }, - "events": [ - { - "uuid": "bff9b01a-5a6b-4987-baf1-290357fd6b0b", - "start": { - "$date": "2021-12-22T22:00:05.000Z" - }, - "end": { - "$date": "2021-12-22T22:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ca9c4ca-a122-4067-a74c-a64494badf1f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T22:00:07.000Z" - }, - "end": { - "$date": "2021-12-22T22:35:51.000Z" - }, - "events": [ - { - "uuid": "a46ec6b7-de0b-49e6-b1c6-baf2827bcd45", - "start": { - "$date": "2021-12-22T22:00:07.000Z" - }, - "end": { - "$date": "2021-12-22T22:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b4871e52-35c2-4261-b810-67987858206f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T22:05:13.000Z" - }, - "end": { - "$date": "2021-12-22T22:10:34.000Z" - }, - "events": [ - { - "uuid": "574d6513-c20b-4cbc-9a20-6bb23e4a4377", - "start": { - "$date": "2021-12-22T22:05:13.000Z" - }, - "end": { - "$date": "2021-12-22T22:10:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "40712386-08d7-486a-a10b-1e7bfe5cb130", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T22:12:54.000Z" - }, - "end": { - "$date": "2021-12-22T22:32:57.000Z" - }, - "events": [ - { - "uuid": "5097eb2b-2e5f-4c57-97e2-48e62cc1ce29", - "start": { - "$date": "2021-12-22T22:12:54.000Z" - }, - "end": { - "$date": "2021-12-22T22:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b55da91-2952-43a3-8ee6-5f8ef44bcb2a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T22:37:07.000Z" - }, - "end": { - "$date": "2021-12-22T23:04:23.000Z" - }, - "events": [ - { - "uuid": "c61c1698-1897-4141-9bdc-792182e06db2", - "start": { - "$date": "2021-12-22T22:37:07.000Z" - }, - "end": { - "$date": "2021-12-22T23:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "795c50d4-3708-44e9-a4a4-0f7be96fa35c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T22:37:15.000Z" - }, - "end": { - "$date": "2021-12-22T23:04:28.000Z" - }, - "events": [ - { - "uuid": "78fd3d01-0119-4a15-a0c9-a7ca23b7f8b8", - "start": { - "$date": "2021-12-22T22:37:15.000Z" - }, - "end": { - "$date": "2021-12-22T23:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "0a5fa2ed-140d-4531-a2d0-c78d658e4925", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-22T22:39:44.000Z" - }, - "end": { - "$date": "2021-12-23T00:32:17.000Z" - }, - "events": [ - { - "uuid": "d3ceb95d-1f31-4aa7-8efe-96a98123d249", - "start": { - "$date": "2021-12-22T22:39:44.000Z" - }, - "end": { - "$date": "2021-12-23T00:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "064c981a-8d40-4a71-be0e-0db181f23aa8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T23:08:54.000Z" - }, - "end": { - "$date": "2021-12-22T23:38:54.000Z" - }, - "events": [ - { - "uuid": "d2aa97d6-9752-4267-b703-2bda39a5ba77", - "start": { - "$date": "2021-12-22T23:08:54.000Z" - }, - "end": { - "$date": "2021-12-22T23:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc68ae24-dd50-4fa6-b8bd-a85e8b2dd921", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T23:08:58.000Z" - }, - "end": { - "$date": "2021-12-22T23:39:21.000Z" - }, - "events": [ - { - "uuid": "5b6a9c37-db36-4f0a-a591-7dfe83e3795c", - "start": { - "$date": "2021-12-22T23:08:58.000Z" - }, - "end": { - "$date": "2021-12-22T23:39:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41e1141a-d2a4-4f07-bcbf-41048b429a33", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-22T23:46:16.000Z" - }, - "end": { - "$date": "2021-12-23T00:17:47.000Z" - }, - "events": [ - { - "uuid": "a9d5943c-e4d3-40e7-8480-a98e6530b342", - "start": { - "$date": "2021-12-22T23:46:16.000Z" - }, - "end": { - "$date": "2021-12-23T00:17:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9ea60c0-8718-43f9-afc7-196f3448caa9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-22T23:46:17.000Z" - }, - "end": { - "$date": "2021-12-23T00:18:00.000Z" - }, - "events": [ - { - "uuid": "80175d2f-f9dc-4588-9119-2832c97720f7", - "start": { - "$date": "2021-12-22T23:46:17.000Z" - }, - "end": { - "$date": "2021-12-23T00:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a9d3a257-5942-4193-9210-74a2be199980", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-22T22:44:15.000Z" - }, - "end": { - "$date": "2021-12-23T04:35:34.000Z" - }, - "events": [ - { - "uuid": "e6b9cdae-7fe4-4de8-a05b-a6cba1544c00", - "start": { - "$date": "2021-12-22T22:44:15.000Z" - }, - "end": { - "$date": "2021-12-23T04:35:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eb8f8c2-a3e9-4294-8745-08d3d8a62d50", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T00:06:39.000Z" - }, - "end": { - "$date": "2021-12-23T00:43:53.000Z" - }, - "events": [ - { - "uuid": "7ef1644a-4c01-40e6-83f1-d6d61eabaa7d", - "start": { - "$date": "2021-12-23T00:06:39.000Z" - }, - "end": { - "$date": "2021-12-23T00:43:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66c5dbe3-d306-45d2-ae0d-2fb1d245049d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T00:20:38.000Z" - }, - "end": { - "$date": "2021-12-23T00:50:04.000Z" - }, - "events": [ - { - "uuid": "7c8277de-61c3-4a00-99e0-0d977ccf4f00", - "start": { - "$date": "2021-12-23T00:20:38.000Z" - }, - "end": { - "$date": "2021-12-23T00:50:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aa69011-50fd-4931-8c88-9fec0ecbf7f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T00:20:40.000Z" - }, - "end": { - "$date": "2021-12-23T00:57:58.000Z" - }, - "events": [ - { - "uuid": "8f93fe83-6dae-463a-8acb-7abb0c9b58cf", - "start": { - "$date": "2021-12-23T00:20:40.000Z" - }, - "end": { - "$date": "2021-12-23T00:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7fb0216-a025-488d-a71e-867d023a02ba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T01:16:33.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:21.000Z" - }, - "events": [ - { - "uuid": "37664000-d6d4-494a-acb1-394c28d36723", - "start": { - "$date": "2021-12-23T01:16:33.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47ed314d-ee36-488e-a835-f6199b61b5fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T01:13:52.000Z" - }, - "end": { - "$date": "2021-12-23T01:13:54.000Z" - }, - "events": [ - { - "uuid": "3d22af46-9708-4733-a0a1-60484eef56b7", - "start": { - "$date": "2021-12-23T01:13:52.000Z" - }, - "end": { - "$date": "2021-12-23T01:13:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f7c93f6-b089-4d3b-b5df-7fe561e091b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T01:16:38.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:18.000Z" - }, - "events": [ - { - "uuid": "de4b1470-7376-4ae3-8a42-3bdb64b8c874", - "start": { - "$date": "2021-12-23T01:16:38.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffb350fd-e078-42c1-b3b3-ed5dfe4f81df", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T01:16:31.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:19.000Z" - }, - "events": [ - { - "uuid": "b983081a-2caf-48bc-89ae-ef7bf69d07d1", - "start": { - "$date": "2021-12-23T01:16:31.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5d13a82-d7cb-46b3-99b5-982fefcfa19c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T01:16:42.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:20.000Z" - }, - "events": [ - { - "uuid": "52a2ae90-5586-4fd1-a8b1-e524e32d5118", - "start": { - "$date": "2021-12-23T01:16:42.000Z" - }, - "end": { - "$date": "2021-12-23T01:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "cc60792d-c482-49e1-8e7c-b4c570505866", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-23T01:27:34.000Z" - }, - "end": { - "$date": "2021-12-23T03:40:10.000Z" - }, - "events": [ - { - "uuid": "c769cda2-4dd9-4d12-a7a1-4f0351f4424b", - "start": { - "$date": "2021-12-23T01:27:34.000Z" - }, - "end": { - "$date": "2021-12-23T03:40:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17498105-1e60-4387-8d3c-6a25de1a1714", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T01:44:53.000Z" - }, - "end": { - "$date": "2021-12-23T02:11:02.000Z" - }, - "events": [ - { - "uuid": "2a0ee2b1-6b16-4b4d-8847-cf649999bba5", - "start": { - "$date": "2021-12-23T01:44:53.000Z" - }, - "end": { - "$date": "2021-12-23T02:11:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66df46b0-0e2d-4ef7-b6d7-f24dc2c5f5fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T01:44:58.000Z" - }, - "end": { - "$date": "2021-12-23T02:11:04.000Z" - }, - "events": [ - { - "uuid": "132899c3-6aa9-483e-bcff-a0741e80c2ca", - "start": { - "$date": "2021-12-23T01:44:58.000Z" - }, - "end": { - "$date": "2021-12-23T02:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "763c2631-41f1-4a94-8aa5-423e38523024", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T01:44:50.000Z" - }, - "end": { - "$date": "2021-12-23T02:10:58.000Z" - }, - "events": [ - { - "uuid": "447c9dc7-ea9d-4e0f-88af-2a7b0281eb24", - "start": { - "$date": "2021-12-23T01:44:50.000Z" - }, - "end": { - "$date": "2021-12-23T02:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba47044c-4def-422c-9c91-74c0f338ac09", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T01:44:49.000Z" - }, - "end": { - "$date": "2021-12-23T02:10:58.000Z" - }, - "events": [ - { - "uuid": "916bdbef-9c49-4288-a585-0035aaa8a5c6", - "start": { - "$date": "2021-12-23T01:44:49.000Z" - }, - "end": { - "$date": "2021-12-23T02:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed7d4b2c-4ed9-41b7-86c3-b2c6abfe29a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T02:11:24.000Z" - }, - "end": { - "$date": "2021-12-23T02:12:41.000Z" - }, - "events": [ - { - "uuid": "e75dee62-bfcb-4493-85d7-32ef8dac8200", - "start": { - "$date": "2021-12-23T02:11:24.000Z" - }, - "end": { - "$date": "2021-12-23T02:12:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28183657-478f-4639-956a-6a10dc4e6fdb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T02:17:51.000Z" - }, - "end": { - "$date": "2021-12-23T02:40:16.000Z" - }, - "events": [ - { - "uuid": "6a144c59-d29e-4a80-b693-128b09e2ba79", - "start": { - "$date": "2021-12-23T02:17:51.000Z" - }, - "end": { - "$date": "2021-12-23T02:40:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3b22924-b03c-4df1-90e2-a522199c2e80", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T02:17:49.000Z" - }, - "end": { - "$date": "2021-12-23T02:40:08.000Z" - }, - "events": [ - { - "uuid": "d022af26-7441-4439-ab5d-16c9b74001ce", - "start": { - "$date": "2021-12-23T02:17:49.000Z" - }, - "end": { - "$date": "2021-12-23T02:40:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c682e96d-2f0f-448f-b1ec-716f464d4b5c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T02:17:49.000Z" - }, - "end": { - "$date": "2021-12-23T02:40:11.000Z" - }, - "events": [ - { - "uuid": "0ccebb66-d424-4690-afd6-8f209febab95", - "start": { - "$date": "2021-12-23T02:17:49.000Z" - }, - "end": { - "$date": "2021-12-23T02:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b507d28a-782a-4df7-b80f-bc5c875b620a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T03:06:57.000Z" - }, - "end": { - "$date": "2021-12-23T03:31:51.000Z" - }, - "events": [ - { - "uuid": "56ac3d86-2ea0-40a4-b228-422442382471", - "start": { - "$date": "2021-12-23T03:06:57.000Z" - }, - "end": { - "$date": "2021-12-23T03:31:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e90733d-4048-47d5-97d0-c015abed3845", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T03:36:18.000Z" - }, - "end": { - "$date": "2021-12-23T04:06:02.000Z" - }, - "events": [ - { - "uuid": "9e05dc36-2410-47bc-9122-b18e91a59d7e", - "start": { - "$date": "2021-12-23T03:36:18.000Z" - }, - "end": { - "$date": "2021-12-23T04:06:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc064aa0-158e-4f9a-ba74-f8a064698e34", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-23T03:37:48.000Z" - }, - "end": { - "$date": "2021-12-23T05:37:14.000Z" - }, - "events": [ - { - "uuid": "1ac686ef-883c-4da8-a623-b73e638b9bfd", - "start": { - "$date": "2021-12-23T03:37:48.000Z" - }, - "end": { - "$date": "2021-12-23T04:00:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7bc0875-a8f5-4447-94a0-22bc5bbc3729", - "start": { - "$date": "2021-12-23T04:00:48.000Z" - }, - "end": { - "$date": "2021-12-23T04:10:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "77e56698-9785-4655-bf30-22fbf1607cc9", - "start": { - "$date": "2021-12-23T04:10:48.000Z" - }, - "end": { - "$date": "2021-12-23T04:38:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "851488d9-c0b6-4f65-886d-b5e2c9c1c306", - "start": { - "$date": "2021-12-23T04:38:48.000Z" - }, - "end": { - "$date": "2021-12-23T04:43:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0db6493d-ac50-4c3c-9131-aac4ebea8ef4", - "start": { - "$date": "2021-12-23T04:43:48.000Z" - }, - "end": { - "$date": "2021-12-23T04:53:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f122ee6-dcf5-4db4-813b-a8b66a7a9dae", - "start": { - "$date": "2021-12-23T04:53:48.000Z" - }, - "end": { - "$date": "2021-12-23T05:06:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7938974d-2ae8-4e72-9232-03db16b243cd", - "start": { - "$date": "2021-12-23T05:06:48.000Z" - }, - "end": { - "$date": "2021-12-23T05:17:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86d57def-f5bc-4d31-99e2-dd3f0389864d", - "start": { - "$date": "2021-12-23T05:17:48.000Z" - }, - "end": { - "$date": "2021-12-23T05:23:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fb080b61-855a-430e-864b-7ff242a54c2d", - "start": { - "$date": "2021-12-23T05:23:48.000Z" - }, - "end": { - "$date": "2021-12-23T05:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "60a20171-96c7-4c9c-b065-3471f56fe540", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-23T04:05:21.000Z" - }, - "end": { - "$date": "2021-12-23T04:52:56.000Z" - }, - "events": [ - { - "uuid": "bfb1fec2-5199-4a8b-b33e-ba0b4d81b5a1", - "start": { - "$date": "2021-12-23T04:05:21.000Z" - }, - "end": { - "$date": "2021-12-23T04:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd31c621-0cb5-455a-9b21-a6182f806b5b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T04:27:36.000Z" - }, - "end": { - "$date": "2021-12-23T06:55:36.000Z" - }, - "events": [ - { - "uuid": "ace2d7a2-dbef-41cd-889c-b93a61cd0cc4", - "start": { - "$date": "2021-12-23T04:27:36.000Z" - }, - "end": { - "$date": "2021-12-23T06:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e90e9816-969f-4353-bfb1-0405173a5891", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-23T04:35:54.000Z" - }, - "end": { - "$date": "2021-12-23T06:07:26.000Z" - }, - "events": [ - { - "uuid": "2ade986e-9c01-40a8-aa4a-744f7ebc2b91", - "start": { - "$date": "2021-12-23T04:35:54.000Z" - }, - "end": { - "$date": "2021-12-23T05:34:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41d25baf-254d-40f9-970e-9a377b522800", - "start": { - "$date": "2021-12-23T05:34:54.000Z" - }, - "end": { - "$date": "2021-12-23T05:39:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e52476db-4a28-4d92-bf60-26038c1dd7c2", - "start": { - "$date": "2021-12-23T05:39:54.000Z" - }, - "end": { - "$date": "2021-12-23T06:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6b9a78c1-7045-453b-9bd2-bdd61223dbe4", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-23T04:53:02.000Z" - }, - "end": { - "$date": "2021-12-23T05:51:07.000Z" - }, - "events": [ - { - "uuid": "1eb48c8e-67fa-4d75-8853-54f0283ba976", - "start": { - "$date": "2021-12-23T04:53:02.000Z" - }, - "end": { - "$date": "2021-12-23T05:51:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e10eb33-6bfb-4247-8b51-78163d4d9904", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T05:10:29.000Z" - }, - "end": { - "$date": "2021-12-23T05:37:55.000Z" - }, - "events": [ - { - "uuid": "904df617-5d3a-45d2-ab01-af7bb26a9b34", - "start": { - "$date": "2021-12-23T05:10:29.000Z" - }, - "end": { - "$date": "2021-12-23T05:19:29.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "88b3c8ab-501b-4df6-819c-ea5f832e9c21", - "start": { - "$date": "2021-12-23T05:19:29.000Z" - }, - "end": { - "$date": "2021-12-23T05:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "64b7e7ac-129f-4df2-a6c4-3f75d529722d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-23T05:26:41.000Z" - }, - "end": { - "$date": "2021-12-23T06:10:12.000Z" - }, - "events": [ - { - "uuid": "d7e86fa5-c622-4f22-96bc-fc894e8a8edc", - "start": { - "$date": "2021-12-23T05:26:41.000Z" - }, - "end": { - "$date": "2021-12-23T06:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8e337f1e-a30c-4e28-86eb-650c1119eb77", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T05:45:05.000Z" - }, - "end": { - "$date": "2021-12-23T05:52:55.000Z" - }, - "events": [ - { - "uuid": "a5ef1df9-0ad2-4e47-ab2a-fafc6fa86799", - "start": { - "$date": "2021-12-23T05:45:05.000Z" - }, - "end": { - "$date": "2021-12-23T05:52:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60cb3574-47fb-4161-a006-a957226a0030", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T05:55:41.000Z" - }, - "end": { - "$date": "2021-12-23T06:28:51.000Z" - }, - "events": [ - { - "uuid": "b2af069b-c405-4b8c-941b-9686d7f88595", - "start": { - "$date": "2021-12-23T05:55:41.000Z" - }, - "end": { - "$date": "2021-12-23T06:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "11040d09-99fd-4701-b12e-e8b6475a23de", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2021-12-23T05:52:17.000Z" - }, - "end": { - "$date": "2021-12-23T07:15:16.000Z" - }, - "events": [ - { - "uuid": "9c2e38a8-2fe4-44b6-a61b-defb360932a7", - "start": { - "$date": "2021-12-23T05:52:17.000Z" - }, - "end": { - "$date": "2021-12-23T07:15:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "cc32e499-b9db-4fef-a3be-7c8347e95afc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T05:53:07.000Z" - }, - "end": { - "$date": "2021-12-23T06:22:52.000Z" - }, - "events": [ - { - "uuid": "849ff24b-cc85-45ea-a9e6-064789a42dd1", - "start": { - "$date": "2021-12-23T05:53:07.000Z" - }, - "end": { - "$date": "2021-12-23T06:22:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d1b0639-9d3c-47c6-aa51-ed78cbe02d56", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-23T06:12:47.000Z" - }, - "end": { - "$date": "2021-12-23T06:29:57.000Z" - }, - "events": [ - { - "uuid": "c7ebe6fc-f0d1-4706-b804-5275f2d2e262", - "start": { - "$date": "2021-12-23T06:12:47.000Z" - }, - "end": { - "$date": "2021-12-23T06:29:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dd59116a-855e-448e-b738-b88408307966", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-23T06:16:07.000Z" - }, - "end": { - "$date": "2021-12-23T07:08:19.000Z" - }, - "events": [ - { - "uuid": "6c5db69e-f510-4a6d-9a99-e72749f4c925", - "start": { - "$date": "2021-12-23T06:16:07.000Z" - }, - "end": { - "$date": "2021-12-23T07:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a2972c2e-2e1c-419b-95d2-331871b05f74", - "uuid": "ec32d019-3395-4fba-9024-b75f9a2068ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-23T09:00:10.000Z" - }, - "end": { - "$date": "2021-12-23T09:00:55.000Z" - }, - "events": [ - { - "uuid": "1ff1075f-af59-44c6-a446-996e97115419", - "start": { - "$date": "2021-12-23T09:00:10.000Z" - }, - "end": { - "$date": "2021-12-23T09:57:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0bc1f29c-c4c0-4769-a9ef-146c600d99db", - "start": { - "$date": "2021-12-23T09:57:10.000Z" - }, - "end": { - "$date": "2021-12-23T10:02:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3289b8fa-5739-4246-9f42-471d9077be63", - "start": { - "$date": "2021-12-23T10:02:10.000Z" - }, - "end": { - "$date": "2021-12-23T10:12:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3330181a-0d11-422d-a102-35ddc582e43e", - "start": { - "$date": "2021-12-23T10:12:10.000Z" - }, - "end": { - "$date": "2021-12-23T10:31:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f0ab579d-52b2-4ebb-9b94-f3e62a4c310b", - "start": { - "$date": "2021-12-23T10:31:10.000Z" - }, - "end": { - "$date": "2021-12-23T09:00:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10e49876-9dae-4cbf-a083-3a2107f3ca4d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-23T06:33:58.000Z" - }, - "end": { - "$date": "2021-12-23T07:00:27.000Z" - }, - "events": [ - { - "uuid": "9a22a966-3d97-408b-8359-ae1f082e4f84", - "start": { - "$date": "2021-12-23T06:33:58.000Z" - }, - "end": { - "$date": "2021-12-23T07:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a7224b80-c0b2-4ecd-a03b-fbc4f8e67a56", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T08:07:05.000Z" - }, - "end": { - "$date": "2021-12-23T08:47:22.000Z" - }, - "events": [ - { - "uuid": "719bd35e-e7fe-4535-b2d9-0452c0b01ea6", - "start": { - "$date": "2021-12-23T08:07:05.000Z" - }, - "end": { - "$date": "2021-12-23T08:47:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d05af293-708f-4e63-b4e7-5b97ac091d9d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T10:18:54.000Z" - }, - "end": { - "$date": "2021-12-23T11:07:11.000Z" - }, - "events": [ - { - "uuid": "3b978d99-c770-4715-8d94-a78527e99146", - "start": { - "$date": "2021-12-23T10:18:54.000Z" - }, - "end": { - "$date": "2021-12-23T11:07:11.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0d6f37d-f7da-4969-a59b-65a1a0ac1e71", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T12:39:49.000Z" - }, - "end": { - "$date": "2021-12-23T13:01:12.000Z" - }, - "events": [ - { - "uuid": "841942df-3f3c-4883-b8ca-5fae80d3188f", - "start": { - "$date": "2021-12-23T12:39:49.000Z" - }, - "end": { - "$date": "2021-12-23T13:01:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aadad6be-5a1c-4433-b20f-778523bacfca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T13:04:07.000Z" - }, - "end": { - "$date": "2021-12-23T13:23:14.000Z" - }, - "events": [ - { - "uuid": "0c30f7b6-99ed-414a-ada3-fc809ce527e0", - "start": { - "$date": "2021-12-23T13:04:07.000Z" - }, - "end": { - "$date": "2021-12-23T13:23:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "279b0291-f666-4bb6-8f00-27ba150dfbb8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T13:25:04.000Z" - }, - "end": { - "$date": "2021-12-23T13:45:26.000Z" - }, - "events": [ - { - "uuid": "b2b00304-f645-4396-927c-f6e030416e6e", - "start": { - "$date": "2021-12-23T13:25:04.000Z" - }, - "end": { - "$date": "2021-12-23T13:45:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb1697fb-bc45-4079-86f3-04798f9208b3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T13:47:36.000Z" - }, - "end": { - "$date": "2021-12-23T14:10:44.000Z" - }, - "events": [ - { - "uuid": "713d6250-0d60-4818-9f9b-1426c4b227a1", - "start": { - "$date": "2021-12-23T13:47:36.000Z" - }, - "end": { - "$date": "2021-12-23T14:10:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b50ef254-cc16-4538-adcc-9213ba04210c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T14:13:48.000Z" - }, - "end": { - "$date": "2021-12-23T14:23:05.000Z" - }, - "events": [ - { - "uuid": "30d667bd-67fd-4ecf-bf1e-2ef0a03d06a9", - "start": { - "$date": "2021-12-23T14:13:48.000Z" - }, - "end": { - "$date": "2021-12-23T14:23:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "908b5aa5-65d5-4ff1-befc-f0fcdc332d12", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T14:24:54.000Z" - }, - "end": { - "$date": "2021-12-23T14:40:52.000Z" - }, - "events": [ - { - "uuid": "66167581-1397-402b-9272-c05c7452b624", - "start": { - "$date": "2021-12-23T14:24:54.000Z" - }, - "end": { - "$date": "2021-12-23T14:40:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7facd6c9-f691-4862-9432-ff07bec4de54", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T14:43:47.000Z" - }, - "end": { - "$date": "2021-12-23T15:05:29.000Z" - }, - "events": [ - { - "uuid": "30f67e43-926f-4c07-8173-aceea493eca3", - "start": { - "$date": "2021-12-23T14:43:47.000Z" - }, - "end": { - "$date": "2021-12-23T15:05:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "321b9e79-b15e-402d-9003-341922662752", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-23T16:38:41.000Z" - }, - "end": { - "$date": "2021-12-23T17:15:14.000Z" - }, - "events": [ - { - "uuid": "5a6f2389-ba6d-4b3e-9f79-2de76f1d5cb1", - "start": { - "$date": "2021-12-23T16:38:41.000Z" - }, - "end": { - "$date": "2021-12-23T17:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "45c28974-6099-43af-800e-948913f6dd76", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T17:14:05.000Z" - }, - "end": { - "$date": "2021-12-23T17:24:15.000Z" - }, - "events": [ - { - "uuid": "503743ef-b681-40e4-859f-d7e9cf805e61", - "start": { - "$date": "2021-12-23T17:14:05.000Z" - }, - "end": { - "$date": "2021-12-23T17:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4e3808d5-0f41-4e4d-a003-884d2ba71fd3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-23T17:18:04.000Z" - }, - "end": { - "$date": "2021-12-23T17:22:44.000Z" - }, - "events": [ - { - "uuid": "f9af2a81-1673-4be7-baec-979d928f50e6", - "start": { - "$date": "2021-12-23T17:18:04.000Z" - }, - "end": { - "$date": "2021-12-23T17:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "72a2ca15-bc3e-4baa-8ef5-de8472313b03", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-23T17:22:50.000Z" - }, - "end": { - "$date": "2021-12-23T17:41:11.000Z" - }, - "events": [ - { - "uuid": "872f64c5-18fe-4909-a4e8-b397fe066cdf", - "start": { - "$date": "2021-12-23T17:22:50.000Z" - }, - "end": { - "$date": "2021-12-23T17:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec910411-21f1-4478-a1dd-e33c3361963a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T17:26:49.000Z" - }, - "end": { - "$date": "2021-12-23T17:30:41.000Z" - }, - "events": [ - { - "uuid": "3361e00a-1f06-4ba2-b817-49fb32ce0a21", - "start": { - "$date": "2021-12-23T17:26:49.000Z" - }, - "end": { - "$date": "2021-12-23T17:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "739c6220-4403-4737-a5eb-be99335b178e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T17:27:01.000Z" - }, - "end": { - "$date": "2021-12-23T17:30:45.000Z" - }, - "events": [ - { - "uuid": "ba661890-b5a7-468c-b002-75b8cca5f5f6", - "start": { - "$date": "2021-12-23T17:27:01.000Z" - }, - "end": { - "$date": "2021-12-23T17:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "181232c1-05ab-4f44-9872-dd1200a348f1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T17:32:46.000Z" - }, - "end": { - "$date": "2021-12-23T17:36:27.000Z" - }, - "events": [ - { - "uuid": "5f094645-8256-4326-adc3-6e959ecc952c", - "start": { - "$date": "2021-12-23T17:32:46.000Z" - }, - "end": { - "$date": "2021-12-23T17:36:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bba4e066-016a-4bd2-abea-7f07f961db8a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T17:32:41.000Z" - }, - "end": { - "$date": "2021-12-23T17:36:30.000Z" - }, - "events": [ - { - "uuid": "c8d09a21-4cb3-4f4a-96ea-db672e411283", - "start": { - "$date": "2021-12-23T17:32:41.000Z" - }, - "end": { - "$date": "2021-12-23T17:36:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d283f0ce-da89-4f1c-8c12-ce84124a6263", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T17:38:27.000Z" - }, - "end": { - "$date": "2021-12-23T17:42:02.000Z" - }, - "events": [ - { - "uuid": "fd00acec-fe91-4f69-99bc-7f0489e0ba9c", - "start": { - "$date": "2021-12-23T17:38:27.000Z" - }, - "end": { - "$date": "2021-12-23T17:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d88abce7-bf12-4b62-b3fb-d026be01d2d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T17:38:26.000Z" - }, - "end": { - "$date": "2021-12-23T17:42:00.000Z" - }, - "events": [ - { - "uuid": "5a140a32-54ed-4b90-9204-2d96e66cd613", - "start": { - "$date": "2021-12-23T17:38:26.000Z" - }, - "end": { - "$date": "2021-12-23T17:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1cf2e61-1eb8-4d4e-9e19-ff40ac3a17d6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T17:46:25.000Z" - }, - "end": { - "$date": "2021-12-23T18:27:38.000Z" - }, - "events": [ - { - "uuid": "8a0255fa-a9cb-455c-8838-53d54f8c065d", - "start": { - "$date": "2021-12-23T17:46:25.000Z" - }, - "end": { - "$date": "2021-12-23T18:27:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bac83e45-37d9-4a9d-931f-f1836def5397", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T17:46:29.000Z" - }, - "end": { - "$date": "2021-12-23T18:27:28.000Z" - }, - "events": [ - { - "uuid": "b08198be-4eb7-4808-9bc4-40973ab9b5a8", - "start": { - "$date": "2021-12-23T17:46:29.000Z" - }, - "end": { - "$date": "2021-12-23T18:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcbf622f-7e30-4fac-bd6f-6126024527f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T17:46:37.000Z" - }, - "end": { - "$date": "2021-12-23T18:27:31.000Z" - }, - "events": [ - { - "uuid": "fb5b7023-4ce5-4790-8d63-ec516270284c", - "start": { - "$date": "2021-12-23T17:46:37.000Z" - }, - "end": { - "$date": "2021-12-23T18:27:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "405f0c01-c679-483b-85df-96b62452521b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-23T18:04:33.000Z" - }, - "end": { - "$date": "2021-12-23T19:07:10.000Z" - }, - "events": [ - { - "uuid": "9d44a488-4c7f-4055-8118-e0b5821ee932", - "start": { - "$date": "2021-12-23T18:04:33.000Z" - }, - "end": { - "$date": "2021-12-23T18:31:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ee784c3-24d3-4177-986b-e36670b0aa06", - "start": { - "$date": "2021-12-23T18:31:33.000Z" - }, - "end": { - "$date": "2021-12-23T18:33:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53d05d3a-ecc2-4f27-9a7a-9fd0a7a9526d", - "start": { - "$date": "2021-12-23T18:33:33.000Z" - }, - "end": { - "$date": "2021-12-23T18:43:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b22f9f32-9b06-4ab9-a1ac-ba7fd177bc71", - "start": { - "$date": "2021-12-23T18:43:33.000Z" - }, - "end": { - "$date": "2021-12-23T18:49:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb428367-e0fd-41a6-8263-8445bbd92c57", - "start": { - "$date": "2021-12-23T18:49:33.000Z" - }, - "end": { - "$date": "2021-12-23T19:07:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "82d8caa8-be2e-4211-b750-70e0ca6c7e2e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-23T18:05:35.000Z" - }, - "end": { - "$date": "2021-12-23T18:26:54.000Z" - }, - "events": [ - { - "uuid": "5daf8e64-4fa5-4fc6-a3b0-79181906a124", - "start": { - "$date": "2021-12-23T18:05:35.000Z" - }, - "end": { - "$date": "2021-12-23T18:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41aa9cd5-b495-4a28-8920-78750f19ee36", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-23T18:28:24.000Z" - }, - "end": { - "$date": "2021-12-23T18:32:55.000Z" - }, - "events": [ - { - "uuid": "70e17f4e-318f-483b-96ec-bdb93490e328", - "start": { - "$date": "2021-12-23T18:28:24.000Z" - }, - "end": { - "$date": "2021-12-23T18:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "05ef0954-53d3-41a6-a2f8-628ea72be18d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T18:34:38.000Z" - }, - "end": { - "$date": "2021-12-23T18:48:18.000Z" - }, - "events": [ - { - "uuid": "2b5ed8f1-9308-4fc5-91ef-9a6ad4ef10e1", - "start": { - "$date": "2021-12-23T18:34:38.000Z" - }, - "end": { - "$date": "2021-12-23T18:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4e944f47-b006-43ff-a116-1ad09be38b6d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T18:48:44.000Z" - }, - "end": { - "$date": "2021-12-23T18:59:10.000Z" - }, - "events": [ - { - "uuid": "1b7a7589-2f88-409b-b23c-f84af9b96792", - "start": { - "$date": "2021-12-23T18:48:44.000Z" - }, - "end": { - "$date": "2021-12-23T18:59:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "48944b44-5111-4227-8165-84b54f3ff081", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-23T18:54:04.000Z" - }, - "end": { - "$date": "2021-12-23T20:08:16.000Z" - }, - "events": [ - { - "uuid": "f345d62f-06f5-46c4-834a-4640336f907d", - "start": { - "$date": "2021-12-23T18:54:04.000Z" - }, - "end": { - "$date": "2021-12-23T20:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76d88f4d-cc76-4a62-9bd4-b37ee4cdb876", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-23T20:54:57.000Z" - }, - "end": { - "$date": "2021-12-23T22:46:50.000Z" - }, - "events": [ - { - "uuid": "fabf61e4-591b-4c30-9a6d-42ced8b4e9cf", - "start": { - "$date": "2021-12-23T20:54:57.000Z" - }, - "end": { - "$date": "2021-12-23T22:46:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "82370aa0-86ef-44d1-8897-e8ad081a0347", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T21:02:35.000Z" - }, - "end": { - "$date": "2021-12-23T21:15:08.000Z" - }, - "events": [ - { - "uuid": "0fb99e8c-76f3-4bc4-b1f4-876cd49c828f", - "start": { - "$date": "2021-12-23T21:02:35.000Z" - }, - "end": { - "$date": "2021-12-23T21:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f935548c-2791-46db-a58e-fcb442201735", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-23T21:04:27.000Z" - }, - "end": { - "$date": "2021-12-23T22:46:13.000Z" - }, - "events": [ - { - "uuid": "24ddf57b-3ac7-487b-8ea5-8ab89cd05b37", - "start": { - "$date": "2021-12-23T21:04:27.000Z" - }, - "end": { - "$date": "2021-12-23T22:46:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e261217d-8895-48c9-8a11-c3e77439b708", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-23T22:40:36.000Z" - }, - "end": { - "$date": "2021-12-23T22:40:46.000Z" - }, - "events": [ - { - "uuid": "d25b4db0-474e-447e-a9cd-dba55bb9125f", - "start": { - "$date": "2021-12-23T22:40:36.000Z" - }, - "end": { - "$date": "2021-12-23T22:40:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "63aa4909-1bf8-45b9-a399-0f2135798260", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T21:16:04.000Z" - }, - "end": { - "$date": "2021-12-23T21:58:14.000Z" - }, - "events": [ - { - "uuid": "3495578e-ce8c-4773-9a99-1c82bf16c743", - "start": { - "$date": "2021-12-23T21:16:04.000Z" - }, - "end": { - "$date": "2021-12-23T21:58:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b3454de4-b2d7-4629-ac06-5ceb2eb218ca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-23T21:53:57.000Z" - }, - "end": { - "$date": "2021-12-23T22:28:29.000Z" - }, - "events": [ - { - "uuid": "2e49c57d-dc0f-44d4-b761-7b860aef4c05", - "start": { - "$date": "2021-12-23T21:53:57.000Z" - }, - "end": { - "$date": "2021-12-23T22:28:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0b5f5a18-0167-47f1-979e-64c58b12f972", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-23T22:32:39.000Z" - }, - "end": { - "$date": "2021-12-24T01:50:58.000Z" - }, - "events": [ - { - "uuid": "964150c3-6dc1-4e29-a4c7-7232a6b7f414", - "start": { - "$date": "2021-12-23T22:32:39.000Z" - }, - "end": { - "$date": "2021-12-24T00:19:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a8c2e6b-12d3-4b49-bf6e-4748de1f4dab", - "start": { - "$date": "2021-12-24T00:19:39.000Z" - }, - "end": { - "$date": "2021-12-24T00:31:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a484ca5c-3125-47d9-88b5-00798db657c2", - "start": { - "$date": "2021-12-24T00:31:39.000Z" - }, - "end": { - "$date": "2021-12-24T00:44:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14aaeb5e-35b1-4291-853e-de2c56fbb42e", - "start": { - "$date": "2021-12-24T00:44:39.000Z" - }, - "end": { - "$date": "2021-12-24T01:22:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0db8c898-cad8-49a4-a793-12f4e2adea88", - "start": { - "$date": "2021-12-24T01:22:39.000Z" - }, - "end": { - "$date": "2021-12-24T01:41:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d142b2cf-8e77-46d6-a815-6145b27a9ee4", - "start": { - "$date": "2021-12-24T01:41:39.000Z" - }, - "end": { - "$date": "2021-12-24T01:50:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "dce705c2-b745-4806-b758-dca6a22d059c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-23T22:42:59.000Z" - }, - "end": { - "$date": "2021-12-23T23:27:07.000Z" - }, - "events": [ - { - "uuid": "5f07dc75-7954-436e-ad0f-9885561cfda2", - "start": { - "$date": "2021-12-23T22:42:59.000Z" - }, - "end": { - "$date": "2021-12-23T23:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b6553f0b-a7d1-43df-94f1-dc4cbc7358c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-23T23:03:16.000Z" - }, - "end": { - "$date": "2021-12-24T03:56:09.000Z" - }, - "events": [ - { - "uuid": "017d05ae-29a8-4f7b-ad00-91141b1b832c", - "start": { - "$date": "2021-12-23T23:03:16.000Z" - }, - "end": { - "$date": "2021-12-24T01:51:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a080627-a921-48ba-876c-3afe98b72119", - "start": { - "$date": "2021-12-24T01:51:16.000Z" - }, - "end": { - "$date": "2021-12-24T01:57:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9eeec875-8a0d-4603-981d-937d5f695359", - "start": { - "$date": "2021-12-24T01:57:16.000Z" - }, - "end": { - "$date": "2021-12-24T03:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3d11dcab-9c5e-45f5-9aca-597dc7c2cfaf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T01:19:07.000Z" - }, - "end": { - "$date": "2021-12-24T03:06:25.000Z" - }, - "events": [ - { - "uuid": "6bb41132-cd72-4b4e-abcb-7268b93b14f7", - "start": { - "$date": "2021-12-24T01:19:07.000Z" - }, - "end": { - "$date": "2021-12-24T01:39:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6abfefd0-b2f4-443c-b325-cf1744acb795", - "start": { - "$date": "2021-12-24T01:39:07.000Z" - }, - "end": { - "$date": "2021-12-24T01:41:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f3c9aec9-3fdb-44f1-bfd3-f4900ab99edc", - "start": { - "$date": "2021-12-24T01:41:07.000Z" - }, - "end": { - "$date": "2021-12-24T03:06:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "28842ff5-eb94-4408-8dae-adeb63c97421", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-24T01:51:07.000Z" - }, - "end": { - "$date": "2021-12-24T04:46:05.000Z" - }, - "events": [ - { - "uuid": "fa1f3d64-df3a-49d0-9e51-638b9ef43caa", - "start": { - "$date": "2021-12-24T01:51:07.000Z" - }, - "end": { - "$date": "2021-12-24T04:46:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d703b490-f841-4db4-ae01-ab20ac16eeb7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T02:47:40.000Z" - }, - "end": { - "$date": "2021-12-24T03:08:41.000Z" - }, - "events": [ - { - "uuid": "b9d61249-5645-4786-b6c5-2a60b15c69ab", - "start": { - "$date": "2021-12-24T02:47:40.000Z" - }, - "end": { - "$date": "2021-12-24T03:08:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a78e0d6a-a465-4db4-8db6-baa7f7810ca8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T03:28:45.000Z" - }, - "end": { - "$date": "2021-12-24T03:52:41.000Z" - }, - "events": [ - { - "uuid": "bf473c1e-89c8-4040-ba85-9497adf04fc1", - "start": { - "$date": "2021-12-24T03:28:45.000Z" - }, - "end": { - "$date": "2021-12-24T03:52:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "30eeb7b0-551b-4cde-831a-93ddc2f2ad2e", - "uuid": "00d910c3-cb8d-4564-8834-6a67fe921e9e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T03:43:49.000Z" - }, - "end": { - "$date": "2021-12-24T04:03:29.000Z" - }, - "events": [ - { - "uuid": "1bfa7b10-3f8a-47fd-ad2f-789c543d676c", - "start": { - "$date": "2021-12-24T03:43:49.000Z" - }, - "end": { - "$date": "2021-12-24T04:03:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3445c5ab-eaff-40f0-8b7d-289a5f1174e9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T03:53:30.000Z" - }, - "end": { - "$date": "2021-12-24T04:03:08.000Z" - }, - "events": [ - { - "uuid": "a78a4e6d-afbf-474f-9882-22bdf073db99", - "start": { - "$date": "2021-12-24T03:53:30.000Z" - }, - "end": { - "$date": "2021-12-24T04:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3324d039-0906-43df-a374-fea72633b49d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-24T04:46:14.000Z" - }, - "end": { - "$date": "2021-12-24T06:46:52.000Z" - }, - "events": [ - { - "uuid": "3a9ece0a-c1b8-4b1e-8755-5e35f92862c1", - "start": { - "$date": "2021-12-24T04:46:14.000Z" - }, - "end": { - "$date": "2021-12-24T06:46:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d69a3bd-414a-45a0-bd38-39f8b3438887", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T05:19:31.000Z" - }, - "end": { - "$date": "2021-12-24T05:42:20.000Z" - }, - "events": [ - { - "uuid": "501d1bfa-1855-465b-83f8-3fd09fbb9c99", - "start": { - "$date": "2021-12-24T05:19:31.000Z" - }, - "end": { - "$date": "2021-12-24T05:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "27e25158-252a-4b44-a821-3f4f9d619f52", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T05:20:37.000Z" - }, - "end": { - "$date": "2021-12-24T08:01:35.000Z" - }, - "events": [ - { - "uuid": "b7d16d66-2dbf-42f5-9047-7061206a0aa3", - "start": { - "$date": "2021-12-24T05:20:37.000Z" - }, - "end": { - "$date": "2021-12-24T08:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", - "uuid": "df2c17ee-d034-4939-9e26-91c383a362d0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-24T05:42:51.000Z" - }, - "end": { - "$date": "2021-12-24T07:05:29.000Z" - }, - "events": [ - { - "uuid": "c9fece2e-94b2-42a0-9d59-6ada12aa7eae", - "start": { - "$date": "2021-12-24T05:42:51.000Z" - }, - "end": { - "$date": "2021-12-24T07:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69a6fbdf-391b-440a-b982-df35a83ec843", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T05:59:37.000Z" - }, - "end": { - "$date": "2021-12-24T06:20:21.000Z" - }, - "events": [ - { - "uuid": "4aebbec1-1430-47d2-b021-acd13542e20b", - "start": { - "$date": "2021-12-24T05:59:37.000Z" - }, - "end": { - "$date": "2021-12-24T06:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b30c3f7-1b73-41ba-9ff8-ee28b5d951b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T06:28:08.000Z" - }, - "end": { - "$date": "2021-12-24T06:54:27.000Z" - }, - "events": [ - { - "uuid": "0d0bb168-3154-44b4-a200-27ed73e96c79", - "start": { - "$date": "2021-12-24T06:28:08.000Z" - }, - "end": { - "$date": "2021-12-24T06:54:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae8e8113-d127-4410-9990-ca376b760eb1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-24T06:54:51.000Z" - }, - "end": { - "$date": "2021-12-24T07:10:06.000Z" - }, - "events": [ - { - "uuid": "3d27f9ed-737e-4956-910d-70bf01730b0b", - "start": { - "$date": "2021-12-24T06:54:51.000Z" - }, - "end": { - "$date": "2021-12-24T07:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f4ea97d-c30c-44a6-b6ec-d3700852f5dd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T08:09:21.000Z" - }, - "end": { - "$date": "2021-12-24T08:38:55.000Z" - }, - "events": [ - { - "uuid": "3c463350-4f59-48d2-9250-a535da15dee2", - "start": { - "$date": "2021-12-24T08:09:21.000Z" - }, - "end": { - "$date": "2021-12-24T08:38:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "09f7f24d-aebe-4431-a54a-8d9912939edf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-24T08:37:20.000Z" - }, - "end": { - "$date": "2021-12-24T08:59:00.000Z" - }, - "events": [ - { - "uuid": "25dc7d13-395a-4452-a69a-7132c73c5379", - "start": { - "$date": "2021-12-24T08:37:20.000Z" - }, - "end": { - "$date": "2021-12-24T08:59:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e40fea4a-6386-408d-b143-6f211869deac", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T08:40:47.000Z" - }, - "end": { - "$date": "2021-12-24T08:57:50.000Z" - }, - "events": [ - { - "uuid": "d1967139-e19e-4074-8dd7-3e9e930090f8", - "start": { - "$date": "2021-12-24T08:40:47.000Z" - }, - "end": { - "$date": "2021-12-24T08:57:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54b9dee7-836c-4051-b09e-4db7e26c6fb4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T09:00:25.000Z" - }, - "end": { - "$date": "2021-12-24T09:04:14.000Z" - }, - "events": [ - { - "uuid": "f8bd5286-35fa-491f-ad2f-0f620e2e6628", - "start": { - "$date": "2021-12-24T09:00:25.000Z" - }, - "end": { - "$date": "2021-12-24T09:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "466fe781-cc8d-4ccd-b889-f9e44cd234e1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-24T09:02:35.000Z" - }, - "end": { - "$date": "2021-12-24T09:06:58.000Z" - }, - "events": [ - { - "uuid": "9b7d1bb4-8649-41a4-b7bb-4ac58370a0b9", - "start": { - "$date": "2021-12-24T09:02:35.000Z" - }, - "end": { - "$date": "2021-12-24T09:06:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb605ad0-cae9-4f5d-9b2d-88b43869cc9d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T09:10:39.000Z" - }, - "end": { - "$date": "2021-12-24T09:30:54.000Z" - }, - "events": [ - { - "uuid": "56c73c6b-1bdf-445c-b8af-a1579fb73974", - "start": { - "$date": "2021-12-24T09:10:39.000Z" - }, - "end": { - "$date": "2021-12-24T09:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb7c5b5b-684a-46dd-8df9-0db6776f75f7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T09:33:34.000Z" - }, - "end": { - "$date": "2021-12-24T10:01:25.000Z" - }, - "events": [ - { - "uuid": "f1e2e4d1-2d95-4868-8c84-b27fa5631b1b", - "start": { - "$date": "2021-12-24T09:33:34.000Z" - }, - "end": { - "$date": "2021-12-24T10:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c3c6e6b-478f-4e96-8c53-0053c0fb9094", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-24T10:07:26.000Z" - }, - "end": { - "$date": "2021-12-24T10:31:47.000Z" - }, - "events": [ - { - "uuid": "bfa03350-9d69-4bd3-b1cb-dc217eed5c1f", - "start": { - "$date": "2021-12-24T10:07:26.000Z" - }, - "end": { - "$date": "2021-12-24T10:31:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "1e8b455a-7285-4b8b-9a61-d13cdf6a19da", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-24T10:09:08.000Z" - }, - "end": { - "$date": "2021-12-25T00:16:26.000Z" - }, - "events": [ - { - "uuid": "04416d8b-3522-467a-8ead-6b3dc61eccc2", - "start": { - "$date": "2021-12-24T10:09:08.000Z" - }, - "end": { - "$date": "2021-12-24T19:43:08.000Z" - }, - "state": "DO_NOT_DISTURB" - }, - { - "uuid": "59cfdbbb-1e4a-4a69-872b-4b61275f6aa3", - "start": { - "$date": "2021-12-24T19:43:08.000Z" - }, - "end": { - "$date": "2021-12-25T00:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4036038b-9232-4482-8209-451081d94c07", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-24T15:23:12.000Z" - }, - "end": { - "$date": "2021-12-24T16:41:59.000Z" - }, - "events": [ - { - "uuid": "660afe8c-8106-460e-8444-dea71d037bd8", - "start": { - "$date": "2021-12-24T15:23:12.000Z" - }, - "end": { - "$date": "2021-12-24T16:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "05edc67e-ca21-4360-adb6-741914224d51", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T15:34:51.000Z" - }, - "end": { - "$date": "2021-12-24T15:42:20.000Z" - }, - "events": [ - { - "uuid": "ea164e27-d4bf-45a1-a94d-2cee0ce3316f", - "start": { - "$date": "2021-12-24T15:34:51.000Z" - }, - "end": { - "$date": "2021-12-24T15:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b01e8cf9-0a48-48eb-8598-6f7241b43ea7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T15:42:46.000Z" - }, - "end": { - "$date": "2021-12-24T16:41:25.000Z" - }, - "events": [ - { - "uuid": "c00f8efc-b110-4f03-b526-37b23021c6c3", - "start": { - "$date": "2021-12-24T15:42:46.000Z" - }, - "end": { - "$date": "2021-12-24T16:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "70a3cf17-4239-41c5-9b9d-01357ef8a2bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T15:56:53.000Z" - }, - "end": { - "$date": "2021-12-24T16:17:28.000Z" - }, - "events": [ - { - "uuid": "a0b990fd-a535-46f6-8a18-0368bfa41c91", - "start": { - "$date": "2021-12-24T15:56:53.000Z" - }, - "end": { - "$date": "2021-12-24T16:17:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2a82da63-3603-4d5a-bc31-93a4446d5004", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T16:17:59.000Z" - }, - "end": { - "$date": "2021-12-24T16:29:09.000Z" - }, - "events": [ - { - "uuid": "e09821b8-d94c-494f-b8c0-1b3ccfffb96a", - "start": { - "$date": "2021-12-24T16:17:59.000Z" - }, - "end": { - "$date": "2021-12-24T16:29:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "2da0030c-74ca-4e88-bcc3-c02e86d5736d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T16:45:52.000Z" - }, - "end": { - "$date": "2021-12-24T17:19:32.000Z" - }, - "events": [ - { - "uuid": "dd59a858-e427-4488-86f9-0d50aa7d3833", - "start": { - "$date": "2021-12-24T16:45:52.000Z" - }, - "end": { - "$date": "2021-12-24T17:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3827746d-5a19-420e-9dc0-571142878dde", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T16:58:52.000Z" - }, - "end": { - "$date": "2021-12-24T17:15:58.000Z" - }, - "events": [ - { - "uuid": "0975f255-d8b5-4fba-8874-470098b5c085", - "start": { - "$date": "2021-12-24T16:58:52.000Z" - }, - "end": { - "$date": "2021-12-24T17:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "04975304-b463-498b-b44f-5f8ba39a133d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-24T16:59:13.000Z" - }, - "end": { - "$date": "2021-12-24T19:09:02.000Z" - }, - "events": [ - { - "uuid": "6c154703-f453-4277-abe5-581ae520bf59", - "start": { - "$date": "2021-12-24T16:59:13.000Z" - }, - "end": { - "$date": "2021-12-24T19:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2fca10f7-f1b0-4244-bf32-55c5d9b0b712", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-25T05:50:45.000Z" - }, - "end": { - "$date": "2021-12-25T05:50:57.000Z" - }, - "events": [ - { - "uuid": "3edb0087-ce26-4a47-8704-3b82f5c7b548", - "start": { - "$date": "2021-12-25T05:50:45.000Z" - }, - "end": { - "$date": "2021-12-25T13:39:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8fa31168-c319-493d-b0c3-0264fdc62624", - "start": { - "$date": "2021-12-25T13:39:45.000Z" - }, - "end": { - "$date": "2021-12-25T13:57:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7a2c93c9-f556-489f-932e-8c5b9cc8b03f", - "start": { - "$date": "2021-12-25T13:57:45.000Z" - }, - "end": { - "$date": "2021-12-25T05:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3ec28c6-ec9b-4652-982b-115cd686c647", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T17:18:08.000Z" - }, - "end": { - "$date": "2021-12-24T17:32:13.000Z" - }, - "events": [ - { - "uuid": "75cded58-7c42-4c85-9add-70e45fb62908", - "start": { - "$date": "2021-12-24T17:18:08.000Z" - }, - "end": { - "$date": "2021-12-24T17:32:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c690de80-a8f3-4b20-8540-f21259bc35a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T17:19:52.000Z" - }, - "end": { - "$date": "2021-12-24T20:04:03.000Z" - }, - "events": [ - { - "uuid": "505425f7-5932-4c9d-8248-32c68e79a033", - "start": { - "$date": "2021-12-24T17:19:52.000Z" - }, - "end": { - "$date": "2021-12-24T20:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "ef553498-8880-4e7b-aebe-0689d8baf131", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T17:33:09.000Z" - }, - "end": { - "$date": "2021-12-24T17:59:35.000Z" - }, - "events": [ - { - "uuid": "2a953ed4-bd44-44dc-8a2d-6c9dc75423b2", - "start": { - "$date": "2021-12-24T17:33:09.000Z" - }, - "end": { - "$date": "2021-12-24T17:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "9411d47d-7acd-40b5-967c-d5b39eeaa7b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T18:01:50.000Z" - }, - "end": { - "$date": "2021-12-24T21:53:29.000Z" - }, - "events": [ - { - "uuid": "db1b8fcd-1a3e-4f8e-82ce-9525c391116f", - "start": { - "$date": "2021-12-24T18:01:50.000Z" - }, - "end": { - "$date": "2021-12-24T19:29:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "148028f6-75f1-44a2-a192-613a2904106b", - "start": { - "$date": "2021-12-24T19:29:50.000Z" - }, - "end": { - "$date": "2021-12-24T19:40:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53c511c8-01cb-4327-bc01-ddfbdb3f77aa", - "start": { - "$date": "2021-12-24T19:40:50.000Z" - }, - "end": { - "$date": "2021-12-24T21:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "f00450c8-b272-45e2-9e5f-4e38d7bf8199", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-24T19:42:16.000Z" - }, - "end": { - "$date": "2021-12-24T19:45:37.000Z" - }, - "events": [ - { - "uuid": "b9ac4424-0a9a-4650-95c8-94d91fb22ae2", - "start": { - "$date": "2021-12-24T19:42:16.000Z" - }, - "end": { - "$date": "2021-12-24T19:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "98a65b2a-20a5-48a8-a9d3-9e475bd7b34c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-24T19:45:52.000Z" - }, - "end": { - "$date": "2021-12-25T00:53:41.000Z" - }, - "events": [ - { - "uuid": "8fa4cf7a-d970-45df-bd84-842d346cf35b", - "start": { - "$date": "2021-12-24T19:45:52.000Z" - }, - "end": { - "$date": "2021-12-25T00:53:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c5183fc3-0b02-42f9-b218-200f4392d133", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-24T20:18:41.000Z" - }, - "end": { - "$date": "2021-12-24T20:31:52.000Z" - }, - "events": [ - { - "uuid": "b7c01f37-0f63-4b23-a117-adc0fa2bc027", - "start": { - "$date": "2021-12-24T20:18:41.000Z" - }, - "end": { - "$date": "2021-12-24T20:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "204eb726-39c6-4d64-b6cf-8b8420a36f5b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T20:19:46.000Z" - }, - "end": { - "$date": "2021-12-24T20:21:50.000Z" - }, - "events": [ - { - "uuid": "41cc2c1c-4e8f-4f80-91cd-a202922acda5", - "start": { - "$date": "2021-12-24T20:19:46.000Z" - }, - "end": { - "$date": "2021-12-24T20:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "cdc31c73-7e3c-4ac7-89c0-b094e340dbc7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T21:56:30.000Z" - }, - "end": { - "$date": "2021-12-24T22:03:24.000Z" - }, - "events": [ - { - "uuid": "820fcb5c-feca-4b24-8588-e783c73496b4", - "start": { - "$date": "2021-12-24T21:56:30.000Z" - }, - "end": { - "$date": "2021-12-24T22:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "81bda91b-8874-4180-8d35-463eaa95fb93", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-24T21:57:43.000Z" - }, - "end": { - "$date": "2021-12-24T22:30:22.000Z" - }, - "events": [ - { - "uuid": "e8d70c97-be64-4875-8a3d-abe050c0c094", - "start": { - "$date": "2021-12-24T21:57:43.000Z" - }, - "end": { - "$date": "2021-12-24T22:30:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "5eb13bb5-3b57-43d6-9eff-b2042ebfdd2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-24T22:04:06.000Z" - }, - "end": { - "$date": "2021-12-25T01:16:30.000Z" - }, - "events": [ - { - "uuid": "54eafc51-897e-44dd-91fc-e2aeffedc7be", - "start": { - "$date": "2021-12-24T22:04:06.000Z" - }, - "end": { - "$date": "2021-12-24T23:57:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0ad52212-db8f-4d09-a890-c8b089b3efc0", - "start": { - "$date": "2021-12-24T23:57:06.000Z" - }, - "end": { - "$date": "2021-12-25T00:01:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c3c50b83-59e5-4db1-8c99-af421f3901ca", - "start": { - "$date": "2021-12-25T00:01:06.000Z" - }, - "end": { - "$date": "2021-12-25T00:12:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e0d361cd-a4fb-4427-9ec1-eda905bf2227", - "start": { - "$date": "2021-12-25T00:12:06.000Z" - }, - "end": { - "$date": "2021-12-25T00:27:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf9b14b4-afd6-41d1-9440-ab41f0f4b07b", - "start": { - "$date": "2021-12-25T00:27:06.000Z" - }, - "end": { - "$date": "2021-12-25T00:37:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d839d50e-b4b1-4b76-89df-9f7e42f1c3f2", - "start": { - "$date": "2021-12-25T00:37:06.000Z" - }, - "end": { - "$date": "2021-12-25T00:41:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "56cbeb4a-b555-4e2d-a85c-89cceae8afd9", - "start": { - "$date": "2021-12-25T00:41:06.000Z" - }, - "end": { - "$date": "2021-12-25T01:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "020182d1-9d48-492f-839d-7295b542104b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-24T22:36:04.000Z" - }, - "end": { - "$date": "2021-12-25T05:50:18.000Z" - }, - "events": [ - { - "uuid": "b2c092d3-4510-4cd5-bab1-4abef6c7a1d8", - "start": { - "$date": "2021-12-24T22:36:04.000Z" - }, - "end": { - "$date": "2021-12-25T01:05:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06e31f45-ffc0-40b3-bfd6-b44c79a81b75", - "start": { - "$date": "2021-12-25T01:05:04.000Z" - }, - "end": { - "$date": "2021-12-25T01:25:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d688f24b-6b3b-485b-8182-51df74b63574", - "start": { - "$date": "2021-12-25T01:25:04.000Z" - }, - "end": { - "$date": "2021-12-25T05:50:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02faaa84-65ff-489a-b4dc-47f080d9f9ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-25T01:16:04.000Z" - }, - "end": { - "$date": "2021-12-25T03:06:40.000Z" - }, - "events": [ - { - "uuid": "21b7c00d-bb7b-432e-99c5-8535b56ff45a", - "start": { - "$date": "2021-12-25T01:16:04.000Z" - }, - "end": { - "$date": "2021-12-25T03:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb8f2eae-0296-46a1-885c-b82a0e082bc1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-25T01:16:41.000Z" - }, - "end": { - "$date": "2021-12-25T02:22:51.000Z" - }, - "events": [ - { - "uuid": "d9160f41-cfb7-4c2a-a823-f5977e408e3a", - "start": { - "$date": "2021-12-25T01:16:41.000Z" - }, - "end": { - "$date": "2021-12-25T02:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2ab3c64c-e721-405b-9978-9ed8340e2cf8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-25T01:40:09.000Z" - }, - "end": { - "$date": "2021-12-25T05:51:31.000Z" - }, - "events": [ - { - "uuid": "f1e36817-9e6f-4c64-8c19-54806db2d7c4", - "start": { - "$date": "2021-12-25T01:40:09.000Z" - }, - "end": { - "$date": "2021-12-25T05:51:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb3d54fc-8a5e-4a32-998e-3e3ce8103f86", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T02:07:20.000Z" - }, - "end": { - "$date": "2021-12-25T02:35:53.000Z" - }, - "events": [ - { - "uuid": "75087fab-ef3f-4851-9bd6-abda8157725f", - "start": { - "$date": "2021-12-25T02:07:20.000Z" - }, - "end": { - "$date": "2021-12-25T02:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff16b7c0-bf0d-4edd-b786-6f8fa6f54431", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T02:44:29.000Z" - }, - "end": { - "$date": "2021-12-25T03:19:57.000Z" - }, - "events": [ - { - "uuid": "1ee5023a-2451-4af5-909a-cf9713387988", - "start": { - "$date": "2021-12-25T02:44:29.000Z" - }, - "end": { - "$date": "2021-12-25T03:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", - "uuid": "76ff5d2a-1d59-4fdd-b4f2-b66a3da429e8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-25T05:49:27.000Z" - }, - "end": { - "$date": "2021-12-25T06:01:13.000Z" - }, - "events": [ - { - "uuid": "26666227-8c50-462c-8c8f-3d497a6c03f1", - "start": { - "$date": "2021-12-25T05:49:27.000Z" - }, - "end": { - "$date": "2021-12-25T06:01:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5a3ee4d-64ff-4225-a911-befa1e9acc34", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-25T05:53:16.000Z" - }, - "end": { - "$date": "2021-12-25T06:54:35.000Z" - }, - "events": [ - { - "uuid": "682c7172-0e74-4067-a1d7-0d2d75f7c07c", - "start": { - "$date": "2021-12-25T05:53:16.000Z" - }, - "end": { - "$date": "2021-12-25T06:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", - "uuid": "9ba0517d-90bb-49f6-9f77-55ce391c6bba", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-25T06:01:27.000Z" - }, - "end": { - "$date": "2021-12-25T06:49:54.000Z" - }, - "events": [ - { - "uuid": "9b279378-6348-411c-a503-9a287c67280f", - "start": { - "$date": "2021-12-25T06:01:27.000Z" - }, - "end": { - "$date": "2021-12-25T06:49:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5ccbcd9f-d3cd-46b1-af73-2e619e20b327", - "uuid": "012a40ef-b7c4-4808-af39-444ddc9aa50f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-25T06:49:58.000Z" - }, - "end": { - "$date": "2021-12-25T07:44:55.000Z" - }, - "events": [ - { - "uuid": "9b560943-51c4-49a3-8136-60b14ef6609f", - "start": { - "$date": "2021-12-25T06:49:58.000Z" - }, - "end": { - "$date": "2021-12-25T07:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d3dd7aab-b372-4be7-824c-4b970c00b285", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-25T06:50:54.000Z" - }, - "end": { - "$date": "2021-12-25T08:27:07.000Z" - }, - "events": [ - { - "uuid": "a9629868-e7eb-481d-8198-9298f714f360", - "start": { - "$date": "2021-12-25T06:50:54.000Z" - }, - "end": { - "$date": "2021-12-25T08:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2805afd-554d-467a-857f-95b12c304810", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-25T08:30:51.000Z" - }, - "end": { - "$date": "2021-12-25T08:52:22.000Z" - }, - "events": [ - { - "uuid": "36facb69-87a2-4c23-8b6c-ece8eca07701", - "start": { - "$date": "2021-12-25T08:30:51.000Z" - }, - "end": { - "$date": "2021-12-25T08:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5024687-6106-42c7-9f16-045eb69698d4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2021-12-25T08:56:12.000Z" - }, - "end": { - "$date": "2021-12-25T09:14:23.000Z" - }, - "events": [ - { - "uuid": "018d8f95-dbf5-40a5-91fa-7454e7fd788d", - "start": { - "$date": "2021-12-25T08:56:12.000Z" - }, - "end": { - "$date": "2021-12-25T09:14:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f6267808-1fb2-4794-aecb-d3f09a34d651", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-25T10:53:53.000Z" - }, - "end": { - "$date": "2021-12-25T11:59:42.000Z" - }, - "events": [ - { - "uuid": "94e8a735-0223-462d-a0d9-4e84b5fdffa2", - "start": { - "$date": "2021-12-25T10:53:53.000Z" - }, - "end": { - "$date": "2021-12-25T11:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "960c31d1-8913-4a85-ad06-e1291fdd056c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-25T13:39:59.000Z" - }, - "end": { - "$date": "2021-12-25T23:30:17.000Z" - }, - "events": [ - { - "uuid": "801e0839-4700-443f-87f0-fff2c5e15120", - "start": { - "$date": "2021-12-25T13:39:59.000Z" - }, - "end": { - "$date": "2021-12-25T20:55:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "28d14c4a-847a-46ab-b56e-1935fa0e72c3", - "start": { - "$date": "2021-12-25T20:55:59.000Z" - }, - "end": { - "$date": "2021-12-25T21:08:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb6506b5-5980-402d-8eec-0540d4732e05", - "start": { - "$date": "2021-12-25T21:08:59.000Z" - }, - "end": { - "$date": "2021-12-25T23:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "98a2f989-3aa8-4623-8de8-72cb815fca42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-25T16:12:42.000Z" - }, - "end": { - "$date": "2021-12-26T17:57:42.000Z" - }, - "events": [ - { - "uuid": "ea1a3a5d-169f-4319-b5c1-7588a0788186", - "start": { - "$date": "2021-12-25T16:12:42.000Z" - }, - "end": { - "$date": "2021-12-25T20:36:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e16fa782-10ad-4ba0-87dd-d096c7e20916", - "start": { - "$date": "2021-12-25T20:36:42.000Z" - }, - "end": { - "$date": "2021-12-25T20:38:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "276268b3-2548-4176-aada-ee6a30d15f21", - "start": { - "$date": "2021-12-25T20:38:42.000Z" - }, - "end": { - "$date": "2021-12-25T22:22:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a68998c-de84-4d21-9c8f-dc4d05f0e301", - "start": { - "$date": "2021-12-25T22:22:42.000Z" - }, - "end": { - "$date": "2021-12-25T22:27:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "abe83b0f-7976-4363-9bcd-aa180d140df1", - "start": { - "$date": "2021-12-25T22:27:42.000Z" - }, - "end": { - "$date": "2021-12-26T03:28:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e2871fe-067b-4209-9170-8a1b1d9ebedf", - "start": { - "$date": "2021-12-26T03:28:42.000Z" - }, - "end": { - "$date": "2021-12-26T03:55:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4ea7ad0-7f2c-4c90-bda0-6debfad2a871", - "start": { - "$date": "2021-12-26T03:55:42.000Z" - }, - "end": { - "$date": "2021-12-26T03:58:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c873319b-3aca-4231-bc64-15766e9c068f", - "start": { - "$date": "2021-12-26T03:58:42.000Z" - }, - "end": { - "$date": "2021-12-26T04:55:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "610788f4-10f6-478e-a9b4-f2149626e810", - "start": { - "$date": "2021-12-26T04:55:42.000Z" - }, - "end": { - "$date": "2021-12-26T04:58:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30149979-98db-4f6d-ab03-899dd49baca0", - "start": { - "$date": "2021-12-26T04:58:42.000Z" - }, - "end": { - "$date": "2021-12-26T04:59:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "76301520-3fd3-42f8-9c7d-519a430b25dc", - "start": { - "$date": "2021-12-26T04:59:42.000Z" - }, - "end": { - "$date": "2021-12-26T05:02:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c72074c5-7376-4632-a5af-2e426836bd58", - "start": { - "$date": "2021-12-26T05:02:42.000Z" - }, - "end": { - "$date": "2021-12-26T05:19:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09b0b554-27e9-4b4b-bdc0-105b869102e4", - "start": { - "$date": "2021-12-26T05:19:42.000Z" - }, - "end": { - "$date": "2021-12-26T05:21:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3fe471f-1677-4853-ba3f-e7a570be9da6", - "start": { - "$date": "2021-12-26T05:21:42.000Z" - }, - "end": { - "$date": "2021-12-26T15:32:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2f43d57-63de-418f-afd4-e8e53fe5bd4f", - "start": { - "$date": "2021-12-26T15:32:42.000Z" - }, - "end": { - "$date": "2021-12-26T17:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "04c1bbfe-3c30-45c4-a800-93968aefebae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-25T22:34:55.000Z" - }, - "end": { - "$date": "2021-12-25T22:35:04.000Z" - }, - "events": [ - { - "uuid": "31881bf2-3b34-4bf0-b656-76936eaa5024", - "start": { - "$date": "2021-12-25T22:34:55.000Z" - }, - "end": { - "$date": "2021-12-26T02:12:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8396562c-d2b7-4fdd-ba68-bf24191e68e4", - "start": { - "$date": "2021-12-26T02:12:55.000Z" - }, - "end": { - "$date": "2021-12-26T02:43:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36776aca-7aae-4f7a-af77-dce22639b484", - "start": { - "$date": "2021-12-26T02:43:55.000Z" - }, - "end": { - "$date": "2021-12-26T03:44:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ba989dc-0d48-4d6a-938d-4b3668ff1ed6", - "start": { - "$date": "2021-12-26T03:44:55.000Z" - }, - "end": { - "$date": "2021-12-26T03:47:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "558566d3-c74c-4e7e-9bad-73d19af10b97", - "start": { - "$date": "2021-12-26T03:47:55.000Z" - }, - "end": { - "$date": "2021-12-25T22:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5e843455-c119-4640-bd00-9313d403b6c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-25T19:44:10.000Z" - }, - "end": { - "$date": "2021-12-25T19:44:30.000Z" - }, - "events": [ - { - "uuid": "11997c98-0a5a-49c5-8c64-b4f446ad7a44", - "start": { - "$date": "2021-12-25T19:44:10.000Z" - }, - "end": { - "$date": "2021-12-25T20:42:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7272c417-8e22-49a4-84f8-2ef8b3863023", - "start": { - "$date": "2021-12-25T20:42:10.000Z" - }, - "end": { - "$date": "2021-12-25T22:24:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6e462db-4a46-41ec-b741-acd65e8dc797", - "start": { - "$date": "2021-12-25T22:24:10.000Z" - }, - "end": { - "$date": "2021-12-25T19:44:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "8047dec8-4c62-4083-9b46-2e0f7ef143d3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-25T17:40:47.000Z" - }, - "end": { - "$date": "2021-12-25T20:21:56.000Z" - }, - "events": [ - { - "uuid": "d23b3612-4b8e-48c4-8a23-28af74d51536", - "start": { - "$date": "2021-12-25T17:40:47.000Z" - }, - "end": { - "$date": "2021-12-25T20:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "dee6a0ce-ab8d-49c7-84b5-b323f6a7e35e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-25T18:58:53.000Z" - }, - "end": { - "$date": "2021-12-25T19:10:49.000Z" - }, - "events": [ - { - "uuid": "309e7d07-078d-456c-bbc2-24fa556f57a1", - "start": { - "$date": "2021-12-25T18:58:53.000Z" - }, - "end": { - "$date": "2021-12-25T19:10:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4216031f-a4b9-4087-a25f-f901e1dee68b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-25T19:11:00.000Z" - }, - "end": { - "$date": "2021-12-25T19:14:44.000Z" - }, - "events": [ - { - "uuid": "ddc89380-63a1-4821-9d4c-8c73f580be93", - "start": { - "$date": "2021-12-25T19:11:00.000Z" - }, - "end": { - "$date": "2021-12-25T19:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9d7d940f-3c45-4481-98aa-35681ea8e088", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-25T19:15:11.000Z" - }, - "end": { - "$date": "2021-12-25T19:38:20.000Z" - }, - "events": [ - { - "uuid": "4ab106c5-9426-48fd-baa1-9d4587c05e05", - "start": { - "$date": "2021-12-25T19:15:11.000Z" - }, - "end": { - "$date": "2021-12-25T19:38:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a4572f2d-1bb3-4195-9104-2dd6a17b9cf3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-25T19:58:05.000Z" - }, - "end": { - "$date": "2021-12-25T20:07:33.000Z" - }, - "events": [ - { - "uuid": "116acf50-731c-4eb2-8ef7-dce91ccd2ba2", - "start": { - "$date": "2021-12-25T19:58:05.000Z" - }, - "end": { - "$date": "2021-12-25T20:07:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "88b343f4-3be6-4c9d-aed4-ff180b0dd29b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T20:34:18.000Z" - }, - "end": { - "$date": "2021-12-25T20:52:53.000Z" - }, - "events": [ - { - "uuid": "3f55f1e0-0d8f-4287-88df-aa1a8d1e451a", - "start": { - "$date": "2021-12-25T20:34:18.000Z" - }, - "end": { - "$date": "2021-12-25T20:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "4a3918be-f86d-4751-9778-396d41fe5cb4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-25T20:39:10.000Z" - }, - "end": { - "$date": "2021-12-25T23:22:45.000Z" - }, - "events": [ - { - "uuid": "1fd6b59f-bb1f-4959-be0e-c3b435c05dd1", - "start": { - "$date": "2021-12-25T20:39:10.000Z" - }, - "end": { - "$date": "2021-12-25T23:22:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "faa97f91-f87e-4299-ad5e-70f61a5087a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T20:59:59.000Z" - }, - "end": { - "$date": "2021-12-25T21:22:16.000Z" - }, - "events": [ - { - "uuid": "523a115e-24aa-45da-8230-2148394ed249", - "start": { - "$date": "2021-12-25T20:59:59.000Z" - }, - "end": { - "$date": "2021-12-25T21:22:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "077c1024-e2dc-4304-9353-df718702f442", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T21:23:12.000Z" - }, - "end": { - "$date": "2021-12-25T21:43:18.000Z" - }, - "events": [ - { - "uuid": "7cba35ed-ff81-44df-b37d-363763adc8ff", - "start": { - "$date": "2021-12-25T21:23:12.000Z" - }, - "end": { - "$date": "2021-12-25T21:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33692cf0-3006-4131-98ae-b7a0d8e785db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T21:48:39.000Z" - }, - "end": { - "$date": "2021-12-25T22:11:39.000Z" - }, - "events": [ - { - "uuid": "3c027a9b-07e2-4793-ac2a-ec483a4ab17a", - "start": { - "$date": "2021-12-25T21:48:39.000Z" - }, - "end": { - "$date": "2021-12-25T22:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "01805a32-7ec5-454b-91da-cc14ab7640c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-25T22:12:15.000Z" - }, - "end": { - "$date": "2021-12-25T23:28:56.000Z" - }, - "events": [ - { - "uuid": "640c4682-f4ff-483e-a01a-87451bc6af63", - "start": { - "$date": "2021-12-25T22:12:15.000Z" - }, - "end": { - "$date": "2021-12-25T22:33:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b3dedac9-c723-47fb-88d6-0a06db414ea1", - "start": { - "$date": "2021-12-25T22:33:15.000Z" - }, - "end": { - "$date": "2021-12-25T23:14:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "614fe6c2-28f1-4a2e-941a-5bd007fea931", - "start": { - "$date": "2021-12-25T23:14:15.000Z" - }, - "end": { - "$date": "2021-12-25T23:24:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b73d0c96-de7c-48bc-92f2-a75c1c9cc0eb", - "start": { - "$date": "2021-12-25T23:24:15.000Z" - }, - "end": { - "$date": "2021-12-25T23:28:56.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "3c22b1e7-b473-48c8-8da1-0fc29c09a19f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-25T23:22:54.000Z" - }, - "end": { - "$date": "2021-12-26T03:14:08.000Z" - }, - "events": [ - { - "uuid": "d7c132ec-5257-46c0-b6a5-4ef9ce7ae6e3", - "start": { - "$date": "2021-12-25T23:22:54.000Z" - }, - "end": { - "$date": "2021-12-26T03:14:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8f2abfe8-7868-4cef-a7d2-81a0db5d0496", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-25T23:29:56.000Z" - }, - "end": { - "$date": "2021-12-25T23:44:53.000Z" - }, - "events": [ - { - "uuid": "066b3e89-2d61-4a24-9aeb-b4d8199b1d5a", - "start": { - "$date": "2021-12-25T23:29:56.000Z" - }, - "end": { - "$date": "2021-12-25T23:44:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94f74c8d-2f9d-4419-8768-6aa5165bbdcf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-26T00:07:01.000Z" - }, - "end": { - "$date": "2021-12-26T00:51:13.000Z" - }, - "events": [ - { - "uuid": "a5b739a0-1243-4754-a8a8-24ad319d37a1", - "start": { - "$date": "2021-12-26T00:07:01.000Z" - }, - "end": { - "$date": "2021-12-26T00:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "018be1ab-f429-4ef1-8cf1-d1ea491ed565", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-25T23:32:48.000Z" - }, - "end": { - "$date": "2021-12-26T03:12:44.000Z" - }, - "events": [ - { - "uuid": "1c56625a-e232-46d3-908e-f3a054b6ccf2", - "start": { - "$date": "2021-12-25T23:32:48.000Z" - }, - "end": { - "$date": "2021-12-26T03:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8240d2bd-260b-4acb-bacb-6969b8fdcdae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-26T00:23:52.000Z" - }, - "end": { - "$date": "2021-12-26T01:37:23.000Z" - }, - "events": [ - { - "uuid": "c11f76cd-ec13-450e-bdca-eada754ac5fb", - "start": { - "$date": "2021-12-26T00:23:52.000Z" - }, - "end": { - "$date": "2021-12-26T01:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "466ef1d1-a1f1-4703-ba83-ec230a5540f3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-26T01:00:34.000Z" - }, - "end": { - "$date": "2021-12-26T01:36:29.000Z" - }, - "events": [ - { - "uuid": "5a62b488-907f-46ea-82de-dea6c2095cd6", - "start": { - "$date": "2021-12-26T01:00:34.000Z" - }, - "end": { - "$date": "2021-12-26T01:36:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0b1fa3c-e089-4d17-adc5-9650b1720aa7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-26T01:37:12.000Z" - }, - "end": { - "$date": "2021-12-26T01:41:25.000Z" - }, - "events": [ - { - "uuid": "f6243554-b65b-4c91-9dd2-acb6bef994b1", - "start": { - "$date": "2021-12-26T01:37:12.000Z" - }, - "end": { - "$date": "2021-12-26T01:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "34038ff3-a170-4e58-bad7-d8cdc96a8123", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-26T01:38:33.000Z" - }, - "end": { - "$date": "2021-12-26T02:22:07.000Z" - }, - "events": [ - { - "uuid": "20b5a8e6-fb7e-410b-9de8-201bb9a1996f", - "start": { - "$date": "2021-12-26T01:38:33.000Z" - }, - "end": { - "$date": "2021-12-26T02:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "292a8cad-6fd4-4b2a-b91b-9cd522eec571", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-26T02:48:05.000Z" - }, - "end": { - "$date": "2021-12-26T03:07:39.000Z" - }, - "events": [ - { - "uuid": "48d72623-fe79-486a-8158-b776094f941e", - "start": { - "$date": "2021-12-26T02:48:05.000Z" - }, - "end": { - "$date": "2021-12-26T03:07:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "582c6d45-279f-4808-9192-4e629f6b83e8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-26T10:29:10.000Z" - }, - "end": { - "$date": "2021-12-26T10:52:05.000Z" - }, - "events": [ - { - "uuid": "94b707e6-4e99-43be-b219-345e4d9abb08", - "start": { - "$date": "2021-12-26T10:29:10.000Z" - }, - "end": { - "$date": "2021-12-26T10:52:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "66c2188e-72b1-4501-8513-731d9eafef8b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-26T10:52:14.000Z" - }, - "end": { - "$date": "2021-12-26T13:16:51.000Z" - }, - "events": [ - { - "uuid": "1e924ff4-5b19-4f13-9889-b0db11c0deec", - "start": { - "$date": "2021-12-26T10:52:14.000Z" - }, - "end": { - "$date": "2021-12-26T13:16:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "710af6e2-4481-474c-8c53-f886ab50e29f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-26T14:50:42.000Z" - }, - "end": { - "$date": "2021-12-26T16:27:48.000Z" - }, - "events": [ - { - "uuid": "b0aab693-83e8-43ee-8135-34786ae9cba7", - "start": { - "$date": "2021-12-26T14:50:42.000Z" - }, - "end": { - "$date": "2021-12-26T16:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "3d65bf57-f1f9-4c27-a831-26c32a72ce43", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-26T15:19:09.000Z" - }, - "end": { - "$date": "2021-12-26T22:45:40.000Z" - }, - "events": [ - { - "uuid": "19b131a0-8af6-4cf9-84c5-1d1a990ec375", - "start": { - "$date": "2021-12-26T15:19:09.000Z" - }, - "end": { - "$date": "2021-12-26T17:34:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d52aa2f4-12d2-474c-b19e-cdc648649444", - "start": { - "$date": "2021-12-26T17:34:09.000Z" - }, - "end": { - "$date": "2021-12-26T17:35:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "76790e89-8fc8-4f55-8560-bc00da071454", - "start": { - "$date": "2021-12-26T17:35:09.000Z" - }, - "end": { - "$date": "2021-12-26T17:53:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "91a93f0e-da88-437a-af27-af3fa55e486b", - "start": { - "$date": "2021-12-26T17:53:09.000Z" - }, - "end": { - "$date": "2021-12-26T17:54:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5c0ac8b2-1843-45a7-bdbf-1becf90f673b", - "start": { - "$date": "2021-12-26T17:54:09.000Z" - }, - "end": { - "$date": "2021-12-26T18:12:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a2c62a0-c204-44e5-9f24-02130d8a511d", - "start": { - "$date": "2021-12-26T18:12:09.000Z" - }, - "end": { - "$date": "2021-12-26T18:13:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8308a10a-68fe-499d-b45c-ff9270eea295", - "start": { - "$date": "2021-12-26T18:13:09.000Z" - }, - "end": { - "$date": "2021-12-26T19:55:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7bf8e4b-e41b-4790-80a7-909dcf291618", - "start": { - "$date": "2021-12-26T19:55:09.000Z" - }, - "end": { - "$date": "2021-12-26T19:59:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "34f4f04a-5045-4b07-8668-66d2fad558ba", - "start": { - "$date": "2021-12-26T19:59:09.000Z" - }, - "end": { - "$date": "2021-12-26T22:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "65b958e8-cb1e-4e9a-9444-33f2184d96f7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-26T17:03:35.000Z" - }, - "end": { - "$date": "2021-12-26T18:51:42.000Z" - }, - "events": [ - { - "uuid": "4e613380-deaf-4b56-9471-c693d36554ee", - "start": { - "$date": "2021-12-26T17:03:35.000Z" - }, - "end": { - "$date": "2021-12-26T17:17:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d4fde13f-c102-4666-9c6c-089ed9c6ad22", - "start": { - "$date": "2021-12-26T17:17:35.000Z" - }, - "end": { - "$date": "2021-12-26T17:21:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c03daa46-ad2e-46cf-991b-2dd10e2ce281", - "start": { - "$date": "2021-12-26T17:21:35.000Z" - }, - "end": { - "$date": "2021-12-26T18:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "8531773d-4663-4942-9037-0ea1758e9290", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-26T17:54:54.000Z" - }, - "end": { - "$date": "2021-12-26T19:28:40.000Z" - }, - "events": [ - { - "uuid": "6afdedba-1c0b-4d6e-8889-9329afedf541", - "start": { - "$date": "2021-12-26T17:54:54.000Z" - }, - "end": { - "$date": "2021-12-26T19:28:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6a31807a-33db-4f0a-9530-8a8ea4d482eb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-26T18:58:12.000Z" - }, - "end": { - "$date": "2021-12-27T02:43:18.000Z" - }, - "events": [ - { - "uuid": "832004c7-1330-4609-b863-bf21a3d17bcd", - "start": { - "$date": "2021-12-26T18:58:12.000Z" - }, - "end": { - "$date": "2021-12-26T19:58:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ad3aa22-b296-4aa7-a718-267bcdc92df4", - "start": { - "$date": "2021-12-26T19:58:12.000Z" - }, - "end": { - "$date": "2021-12-26T23:43:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b53dbc3d-ed2e-4145-9b72-7e44812e65f9", - "start": { - "$date": "2021-12-26T23:43:12.000Z" - }, - "end": { - "$date": "2021-12-27T02:43:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "e49441a0-e916-4ef5-8ea8-72663be50bd4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-26T20:37:00.000Z" - }, - "end": { - "$date": "2021-12-26T21:20:15.000Z" - }, - "events": [ - { - "uuid": "e0fca14b-a8f1-40de-8775-4ae6ae110b32", - "start": { - "$date": "2021-12-26T20:37:00.000Z" - }, - "end": { - "$date": "2021-12-26T21:20:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2830b6d4-5dd7-4a6d-bb01-3c11c4ffea37", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-26T21:21:23.000Z" - }, - "end": { - "$date": "2021-12-26T21:33:44.000Z" - }, - "events": [ - { - "uuid": "aebefdce-a528-4c5c-bb83-03485e6004d2", - "start": { - "$date": "2021-12-26T21:21:23.000Z" - }, - "end": { - "$date": "2021-12-26T21:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee803622-eb81-4562-bd75-1ccae065129e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-26T21:46:32.000Z" - }, - "end": { - "$date": "2021-12-27T00:27:04.000Z" - }, - "events": [ - { - "uuid": "d90e94e1-d7d3-428c-902a-37b7aae17fed", - "start": { - "$date": "2021-12-26T21:46:32.000Z" - }, - "end": { - "$date": "2021-12-27T00:27:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "352d64d2-2dff-4f9f-b10a-790c1b6459cd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-26T21:50:55.000Z" - }, - "end": { - "$date": "2021-12-26T23:03:08.000Z" - }, - "events": [ - { - "uuid": "40e0ab56-f9a5-4f2b-9ad5-6d58d8785400", - "start": { - "$date": "2021-12-26T21:50:55.000Z" - }, - "end": { - "$date": "2021-12-26T23:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e9f3a955-8564-42a8-bf7b-bc84b1ed8a3a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-26T23:05:13.000Z" - }, - "end": { - "$date": "2021-12-26T23:35:30.000Z" - }, - "events": [ - { - "uuid": "948ca704-e956-4940-8e50-948d1e30118d", - "start": { - "$date": "2021-12-26T23:05:13.000Z" - }, - "end": { - "$date": "2021-12-26T23:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e08bdbae-87a4-4525-8fdf-395d72a4b44b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-26T23:47:48.000Z" - }, - "end": { - "$date": "2021-12-26T23:58:04.000Z" - }, - "events": [ - { - "uuid": "b0d02d42-6369-4a75-8868-0e31cf094730", - "start": { - "$date": "2021-12-26T23:47:48.000Z" - }, - "end": { - "$date": "2021-12-26T23:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "dabbab74-2d91-4724-8d52-bbec7442f2ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-26T23:58:09.000Z" - }, - "end": { - "$date": "2021-12-27T01:06:52.000Z" - }, - "events": [ - { - "uuid": "dae3fb27-06f6-497b-8120-4b145900a8b6", - "start": { - "$date": "2021-12-26T23:58:09.000Z" - }, - "end": { - "$date": "2021-12-27T01:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c1abe110-894b-49d4-ae86-b50a3b086b0a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T00:14:43.000Z" - }, - "end": { - "$date": "2021-12-27T02:43:26.000Z" - }, - "events": [ - { - "uuid": "852f8ce4-02c6-4062-8ee9-687fca0f26c1", - "start": { - "$date": "2021-12-27T00:14:43.000Z" - }, - "end": { - "$date": "2021-12-27T02:43:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "d5d13d62-a2c4-49d7-8365-9b7159f75818", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T00:29:09.000Z" - }, - "end": { - "$date": "2021-12-27T01:06:11.000Z" - }, - "events": [ - { - "uuid": "47037018-680d-423f-b7a4-b6061777f029", - "start": { - "$date": "2021-12-27T00:29:09.000Z" - }, - "end": { - "$date": "2021-12-27T01:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c2d6afad-0392-40f7-b5b3-ce862533f542", - "uuid": "ec1cd0c2-568b-45a5-a4a2-35d0bbf4e563", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T01:08:20.000Z" - }, - "end": { - "$date": "2021-12-27T01:22:13.000Z" - }, - "events": [ - { - "uuid": "aedb9020-abb9-49ae-8c67-4683fe1bff31", - "start": { - "$date": "2021-12-27T01:08:20.000Z" - }, - "end": { - "$date": "2021-12-27T01:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "563fcc04-f574-433a-b767-d12a3fa82869", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T01:08:57.000Z" - }, - "end": { - "$date": "2021-12-27T01:25:33.000Z" - }, - "events": [ - { - "uuid": "11a7c5b3-8cb9-4264-8bf5-2bcffe3234f8", - "start": { - "$date": "2021-12-27T01:08:57.000Z" - }, - "end": { - "$date": "2021-12-27T01:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d802f2f3-715c-4081-b16c-9a49b5d2b104", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-27T01:27:26.000Z" - }, - "end": { - "$date": "2021-12-27T01:49:22.000Z" - }, - "events": [ - { - "uuid": "9b8df26c-8b9b-415d-81cb-86591b27eb2e", - "start": { - "$date": "2021-12-27T01:27:26.000Z" - }, - "end": { - "$date": "2021-12-27T01:49:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "b450bcd7-031b-406b-b829-61129b9cff42", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T01:33:39.000Z" - }, - "end": { - "$date": "2021-12-27T02:31:12.000Z" - }, - "events": [ - { - "uuid": "ef1a7c66-577f-4544-a396-2aa7ac137fff", - "start": { - "$date": "2021-12-27T01:33:39.000Z" - }, - "end": { - "$date": "2021-12-27T02:31:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "1d2e026f-5de0-4772-9ef7-44da02e3755c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T01:50:00.000Z" - }, - "end": { - "$date": "2021-12-27T02:59:02.000Z" - }, - "events": [ - { - "uuid": "ae75ffbb-6c7b-4d76-a678-4f88419966ad", - "start": { - "$date": "2021-12-27T01:50:00.000Z" - }, - "end": { - "$date": "2021-12-27T02:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7059ec98-8c78-4ef9-8c2f-937cdb9e9e52", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-27T02:15:13.000Z" - }, - "end": { - "$date": "2021-12-27T03:25:07.000Z" - }, - "events": [ - { - "uuid": "cdcd8d89-6e8a-4227-bd91-78024014059a", - "start": { - "$date": "2021-12-27T02:15:13.000Z" - }, - "end": { - "$date": "2021-12-27T03:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "79c1bab1-5937-41a1-ad5c-5b35f0d6b095", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T02:52:29.000Z" - }, - "end": { - "$date": "2021-12-27T02:54:15.000Z" - }, - "events": [ - { - "uuid": "ae2205bc-d176-44c9-8f6b-22cb00740198", - "start": { - "$date": "2021-12-27T02:52:29.000Z" - }, - "end": { - "$date": "2021-12-27T02:54:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "5c766623-4faa-4e8f-8946-a60b55645f4a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T02:58:00.000Z" - }, - "end": { - "$date": "2021-12-27T03:35:21.000Z" - }, - "events": [ - { - "uuid": "29ae8547-a7dc-4fb8-aa09-d21deb119caf", - "start": { - "$date": "2021-12-27T02:58:00.000Z" - }, - "end": { - "$date": "2021-12-27T03:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "959e94e5-002d-4b7c-be82-3a0303b5a616", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T02:58:53.000Z" - }, - "end": { - "$date": "2021-12-27T02:59:28.000Z" - }, - "events": [ - { - "uuid": "3b8d6387-47a9-48d0-9930-cc6fd0d47ed1", - "start": { - "$date": "2021-12-27T02:58:53.000Z" - }, - "end": { - "$date": "2021-12-27T02:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2516e101-a556-486e-8f9a-2e5f116a919e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T03:25:22.000Z" - }, - "end": { - "$date": "2021-12-27T03:42:31.000Z" - }, - "events": [ - { - "uuid": "ecfe6400-fa94-4900-8a3c-b66e7c0f66a0", - "start": { - "$date": "2021-12-27T03:25:22.000Z" - }, - "end": { - "$date": "2021-12-27T03:42:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb3c9bf6-a2b3-428b-96e8-15ae4d6dbaa3", - "uuid": "50a039b8-861c-4e2b-9255-d0f6701e6cee", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-27T03:25:37.000Z" - }, - "end": { - "$date": "2021-12-27T03:39:18.000Z" - }, - "events": [ - { - "uuid": "594c4576-b064-42fb-a160-dd85f0926dff", - "start": { - "$date": "2021-12-27T03:25:37.000Z" - }, - "end": { - "$date": "2021-12-27T03:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9dcd5150-6422-4eaa-8ed7-17e2a42d3050", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T03:33:29.000Z" - }, - "end": { - "$date": "2021-12-27T03:58:45.000Z" - }, - "events": [ - { - "uuid": "6de7f3e3-1571-4e0f-be5c-399446c18fba", - "start": { - "$date": "2021-12-27T03:33:29.000Z" - }, - "end": { - "$date": "2021-12-27T03:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "242520d1-f5fd-4142-b325-daa2428e324a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T03:36:57.000Z" - }, - "end": { - "$date": "2021-12-27T03:57:58.000Z" - }, - "events": [ - { - "uuid": "8f0c0617-a909-415c-858a-52183563d2d8", - "start": { - "$date": "2021-12-27T03:36:57.000Z" - }, - "end": { - "$date": "2021-12-27T03:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "8ebcd87d-5cb4-4914-9043-bae0eecd5e12", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T03:41:52.000Z" - }, - "end": { - "$date": "2021-12-27T03:57:41.000Z" - }, - "events": [ - { - "uuid": "e31f2b2e-f97d-4180-b674-a6d42abdc7da", - "start": { - "$date": "2021-12-27T03:41:52.000Z" - }, - "end": { - "$date": "2021-12-27T03:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c9f3dd6c-b223-4171-b288-305d1d28431f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T03:43:01.000Z" - }, - "end": { - "$date": "2021-12-27T03:57:56.000Z" - }, - "events": [ - { - "uuid": "67d66e2f-eb30-4389-80f8-e37547535aab", - "start": { - "$date": "2021-12-27T03:43:01.000Z" - }, - "end": { - "$date": "2021-12-27T03:57:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "328693b9-3c68-4ac3-9a60-2a3e6f36b391", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T04:03:27.000Z" - }, - "end": { - "$date": "2021-12-27T04:30:43.000Z" - }, - "events": [ - { - "uuid": "b22b48e5-b8e8-4fac-ac75-0219f90b5083", - "start": { - "$date": "2021-12-27T04:03:27.000Z" - }, - "end": { - "$date": "2021-12-27T04:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6776d61c-9a74-4861-9c9b-2937e448e6b2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T04:00:36.000Z" - }, - "end": { - "$date": "2021-12-27T04:56:55.000Z" - }, - "events": [ - { - "uuid": "53f18645-f1cf-41c7-91b5-ccc83c7e2118", - "start": { - "$date": "2021-12-27T04:00:36.000Z" - }, - "end": { - "$date": "2021-12-27T04:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4bda644e-de3e-4644-813c-ec0f73d04822", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T04:30:43.000Z" - }, - "end": { - "$date": "2021-12-27T04:30:44.000Z" - }, - "events": [ - { - "uuid": "645b64cf-2333-4df4-a231-0f711eace1d9", - "start": { - "$date": "2021-12-27T04:30:43.000Z" - }, - "end": { - "$date": "2021-12-27T04:30:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "11802ecb-60a7-4a7c-82f5-d9b9766b71d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T04:03:30.000Z" - }, - "end": { - "$date": "2021-12-27T04:30:40.000Z" - }, - "events": [ - { - "uuid": "6a127a6b-318b-4556-b008-369fd926ea5e", - "start": { - "$date": "2021-12-27T04:03:30.000Z" - }, - "end": { - "$date": "2021-12-27T04:30:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5771104-8e42-4143-ba6b-a8dd43f39c4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T04:34:03.000Z" - }, - "end": { - "$date": "2021-12-27T04:52:28.000Z" - }, - "events": [ - { - "uuid": "9476f2e2-1bb6-4fda-983a-bfec7cae216d", - "start": { - "$date": "2021-12-27T04:34:03.000Z" - }, - "end": { - "$date": "2021-12-27T04:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa200280-0f92-4c68-90bf-939b1f1c5b44", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T04:34:04.000Z" - }, - "end": { - "$date": "2021-12-27T04:52:29.000Z" - }, - "events": [ - { - "uuid": "20f4b3ce-cbd7-4eee-b18a-6ab8289b49ab", - "start": { - "$date": "2021-12-27T04:34:04.000Z" - }, - "end": { - "$date": "2021-12-27T04:52:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46ad1e3c-4580-4dee-b47e-2849ff8fc525", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T04:52:37.000Z" - }, - "end": { - "$date": "2021-12-27T04:52:36.000Z" - }, - "events": [ - { - "uuid": "c62f1dd8-b5e0-4f04-b9ba-b83324c7dde2", - "start": { - "$date": "2021-12-27T04:52:37.000Z" - }, - "end": { - "$date": "2021-12-27T04:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16ab421d-8d5a-4420-8407-ec14144da87f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T05:00:50.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:10.000Z" - }, - "events": [ - { - "uuid": "dbe13956-e3aa-4afa-a5ad-3959402d7155", - "start": { - "$date": "2021-12-27T05:00:50.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "0b732291-ba64-4bba-9469-d8bc4b929663", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T04:57:15.000Z" - }, - "end": { - "$date": "2021-12-27T05:05:11.000Z" - }, - "events": [ - { - "uuid": "e7f2f43e-841d-40a6-8212-06cca2f4c75e", - "start": { - "$date": "2021-12-27T04:57:15.000Z" - }, - "end": { - "$date": "2021-12-27T05:05:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a36a0f94-7e23-4213-a416-56d452495a3b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T05:00:43.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:03.000Z" - }, - "events": [ - { - "uuid": "442c4e96-3e6a-45f7-9088-14f4492f59ff", - "start": { - "$date": "2021-12-27T05:00:43.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d79e2c74-8e05-4cfa-813e-13e29a93d6e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T05:00:50.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:05.000Z" - }, - "events": [ - { - "uuid": "6b47df96-cff5-4148-83c4-60811f62dfd0", - "start": { - "$date": "2021-12-27T05:00:50.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f643710-6784-46e4-bd42-2f0177e68f56", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-27T05:00:45.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:11.000Z" - }, - "events": [ - { - "uuid": "3ece3d6f-7f9f-418c-8e65-a71c3e7554f5", - "start": { - "$date": "2021-12-27T05:00:45.000Z" - }, - "end": { - "$date": "2021-12-27T05:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cf818af1-5f4f-46ae-a4d9-324e5e0a0e8f", - "uuid": "928ade1e-143c-4a9d-9e46-8e245f8c6372", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T05:05:25.000Z" - }, - "end": { - "$date": "2021-12-27T06:10:10.000Z" - }, - "events": [ - { - "uuid": "cabc1708-ffd5-49e3-86db-ba730512ba56", - "start": { - "$date": "2021-12-27T05:05:25.000Z" - }, - "end": { - "$date": "2021-12-27T06:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e1cbc9b-2b47-4230-964f-095c93090290", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T05:28:51.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:56.000Z" - }, - "events": [ - { - "uuid": "9f2e3b7a-d3ff-45f8-ab15-e1c4354b7a6d", - "start": { - "$date": "2021-12-27T05:28:51.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "650863dd-7ebd-408b-aaa7-cdfb735871e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T05:28:50.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:51.000Z" - }, - "events": [ - { - "uuid": "d70f03a8-488b-438f-90f5-307302b93629", - "start": { - "$date": "2021-12-27T05:28:50.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74042a3b-d64b-4869-8114-334f3e5b4a32", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T05:28:49.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:54.000Z" - }, - "events": [ - { - "uuid": "20f67896-5a7f-4730-86cb-5240e7e83be8", - "start": { - "$date": "2021-12-27T05:28:49.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a4089ce-139c-4f57-9154-b97caf76c9d9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-27T05:30:56.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:57.000Z" - }, - "events": [ - { - "uuid": "eb8dbd41-3fa0-44f4-9f71-b7989dbabf34", - "start": { - "$date": "2021-12-27T05:30:56.000Z" - }, - "end": { - "$date": "2021-12-27T06:02:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "41dde12b-8bb4-4052-a8a6-68eaa0083006", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T07:47:57.000Z" - }, - "end": { - "$date": "2021-12-27T08:24:24.000Z" - }, - "events": [ - { - "uuid": "906c83c0-8f69-4c94-b144-c2be1b9d52a3", - "start": { - "$date": "2021-12-27T07:47:57.000Z" - }, - "end": { - "$date": "2021-12-27T08:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7e8c19f6-ad42-4752-b1e5-86ecc3f1d087", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-27T08:40:16.000Z" - }, - "end": { - "$date": "2021-12-27T09:34:03.000Z" - }, - "events": [ - { - "uuid": "244243e7-9ea4-42d6-b943-b4d487d7c067", - "start": { - "$date": "2021-12-27T08:40:16.000Z" - }, - "end": { - "$date": "2021-12-27T09:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "08baa9a9-5638-4f12-b884-fe4f2f7e67c0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-27T10:22:48.000Z" - }, - "end": { - "$date": "2021-12-27T10:30:43.000Z" - }, - "events": [ - { - "uuid": "0d1fb2cb-965c-459c-90a2-578cf2531141", - "start": { - "$date": "2021-12-27T10:22:48.000Z" - }, - "end": { - "$date": "2021-12-27T10:30:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6fca25ba-2900-4752-a994-977a586cacd9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-27T10:30:52.000Z" - }, - "end": { - "$date": "2021-12-27T13:29:05.000Z" - }, - "events": [ - { - "uuid": "81976e7e-ebf9-4f11-aa36-387d33c0c480", - "start": { - "$date": "2021-12-27T10:30:52.000Z" - }, - "end": { - "$date": "2021-12-27T10:38:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6691b711-26ee-4b13-89f7-4acc24380ff1", - "start": { - "$date": "2021-12-27T10:38:52.000Z" - }, - "end": { - "$date": "2021-12-27T10:42:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41a85c0b-42c7-4040-8f1f-31bea959d833", - "start": { - "$date": "2021-12-27T10:42:52.000Z" - }, - "end": { - "$date": "2021-12-27T13:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "e0e81058-5f06-4c84-9df6-1802ee8e354f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-27T13:29:39.000Z" - }, - "end": { - "$date": "2021-12-27T14:07:40.000Z" - }, - "events": [ - { - "uuid": "12a0ca97-dc2a-4acc-9b0f-efea25beca73", - "start": { - "$date": "2021-12-27T13:29:39.000Z" - }, - "end": { - "$date": "2021-12-27T14:07:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "59da9d6a-3f70-4133-abd4-07f3cfebcc74", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-27T14:17:29.000Z" - }, - "end": { - "$date": "2021-12-27T16:38:23.000Z" - }, - "events": [ - { - "uuid": "c4d5aba2-8e58-4efe-9f44-9ec0195c894a", - "start": { - "$date": "2021-12-27T14:17:29.000Z" - }, - "end": { - "$date": "2021-12-27T16:38:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "98af06c5-fe63-4ecd-9f9b-b3887c63a751", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-27T14:30:55.000Z" - }, - "end": { - "$date": "2021-12-27T15:08:36.000Z" - }, - "events": [ - { - "uuid": "1225900d-3c0c-496f-9674-aec284c8d05c", - "start": { - "$date": "2021-12-27T14:30:55.000Z" - }, - "end": { - "$date": "2021-12-27T15:08:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "fbf9d65f-3806-4588-9d10-e636155430b2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T17:35:30.000Z" - }, - "end": { - "$date": "2021-12-27T17:37:32.000Z" - }, - "events": [ - { - "uuid": "53b377af-6c2a-46e2-a152-c812df5524d4", - "start": { - "$date": "2021-12-27T17:35:30.000Z" - }, - "end": { - "$date": "2021-12-27T17:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "dab5080e-e503-43da-ae79-201a71cad20c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-27T18:28:24.000Z" - }, - "end": { - "$date": "2021-12-27T20:26:47.000Z" - }, - "events": [ - { - "uuid": "b0c1cd29-7795-47c2-8075-df4f04419406", - "start": { - "$date": "2021-12-27T18:28:24.000Z" - }, - "end": { - "$date": "2021-12-27T18:41:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0cd06e1f-1d5f-48f8-9135-0a350be6aa6b", - "start": { - "$date": "2021-12-27T18:41:24.000Z" - }, - "end": { - "$date": "2021-12-27T19:11:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d8f30ea-76f9-448e-b15e-7a63388e88c4", - "start": { - "$date": "2021-12-27T19:11:24.000Z" - }, - "end": { - "$date": "2021-12-27T19:24:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98f3ab5c-f694-4885-995d-0cd74aa5d5c9", - "start": { - "$date": "2021-12-27T19:24:24.000Z" - }, - "end": { - "$date": "2021-12-27T20:26:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0c592855-68cd-4ae5-a7ac-8fa469cd0aad", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-27T19:38:23.000Z" - }, - "end": { - "$date": "2021-12-27T20:35:06.000Z" - }, - "events": [ - { - "uuid": "69920f91-5a5d-4471-8eee-10b2dc892a6f", - "start": { - "$date": "2021-12-27T19:38:23.000Z" - }, - "end": { - "$date": "2021-12-27T20:35:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3baf629-0c51-4ac3-90ea-e3a21fb51a76", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T19:45:16.000Z" - }, - "end": { - "$date": "2021-12-27T20:06:57.000Z" - }, - "events": [ - { - "uuid": "bd006a6c-0cc3-463c-a8d1-60929a57dc52", - "start": { - "$date": "2021-12-27T19:45:16.000Z" - }, - "end": { - "$date": "2021-12-27T20:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "93b591df-32ae-4974-8837-5a8702eafcdd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-27T19:47:24.000Z" - }, - "end": { - "$date": "2021-12-27T21:06:45.000Z" - }, - "events": [ - { - "uuid": "3e82e61a-1ded-45db-9c82-8dbadfe509bb", - "start": { - "$date": "2021-12-27T19:47:24.000Z" - }, - "end": { - "$date": "2021-12-27T21:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2ea3bd76-203e-4e4e-a518-1662b1b12c37", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-27T20:04:47.000Z" - }, - "end": { - "$date": "2021-12-27T20:40:30.000Z" - }, - "events": [ - { - "uuid": "b7797a52-fb08-4d3f-8859-dbb2e29d201e", - "start": { - "$date": "2021-12-27T20:04:47.000Z" - }, - "end": { - "$date": "2021-12-27T20:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c8498ae-8e02-48c0-9972-cda5a6479e94", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-27T20:34:13.000Z" - }, - "end": { - "$date": "2021-12-27T20:45:18.000Z" - }, - "events": [ - { - "uuid": "377a7466-b717-4086-92a0-f05341eeab7b", - "start": { - "$date": "2021-12-27T20:34:13.000Z" - }, - "end": { - "$date": "2021-12-27T20:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f039477-c1b2-4ded-be47-973ae633cb48", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T21:19:56.000Z" - }, - "end": { - "$date": "2021-12-27T21:42:50.000Z" - }, - "events": [ - { - "uuid": "df91aee3-d4e4-46ef-9d9d-5cfd6b6d6a4b", - "start": { - "$date": "2021-12-27T21:19:56.000Z" - }, - "end": { - "$date": "2021-12-27T21:42:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "500e1be9-9783-424f-b8d9-7893cf2957e8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-27T21:18:52.000Z" - }, - "end": { - "$date": "2021-12-27T21:21:31.000Z" - }, - "events": [ - { - "uuid": "26ae97d4-7370-44ab-9641-c7af5c801832", - "start": { - "$date": "2021-12-27T21:18:52.000Z" - }, - "end": { - "$date": "2021-12-27T21:21:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3d08b9ee-aa9e-48f0-b448-a5a9f67079cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-27T21:22:57.000Z" - }, - "end": { - "$date": "2021-12-27T21:38:27.000Z" - }, - "events": [ - { - "uuid": "b6a051b1-3bb2-451c-b79e-25e4da65d946", - "start": { - "$date": "2021-12-27T21:22:57.000Z" - }, - "end": { - "$date": "2021-12-27T21:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "034104d5-ff5c-4bdc-8cfe-a406c30f0857", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-27T21:44:11.000Z" - }, - "end": { - "$date": "2021-12-27T22:14:27.000Z" - }, - "events": [ - { - "uuid": "d1a2fdbf-4e90-44de-8207-981eab200a4c", - "start": { - "$date": "2021-12-27T21:44:11.000Z" - }, - "end": { - "$date": "2021-12-27T22:14:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b23889d6-2b76-4079-8111-e703cbfb6da3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-27T21:49:26.000Z" - }, - "end": { - "$date": "2021-12-28T01:01:45.000Z" - }, - "events": [ - { - "uuid": "c27f6844-40c5-4598-80fd-43d4a84b1c5b", - "start": { - "$date": "2021-12-27T21:49:26.000Z" - }, - "end": { - "$date": "2021-12-28T01:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "18eb0d87-ad94-4ace-949f-cb25fc366d11", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-28T00:46:36.000Z" - }, - "end": { - "$date": "2021-12-28T00:46:46.000Z" - }, - "events": [ - { - "uuid": "6cf5ffb2-8888-4049-b1e9-e3ce626a6a8c", - "start": { - "$date": "2021-12-28T00:46:36.000Z" - }, - "end": { - "$date": "2021-12-28T00:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "eeaaa120-ff78-4c55-aa1b-78a85bde32b0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-28T01:03:05.000Z" - }, - "end": { - "$date": "2021-12-28T05:59:05.000Z" - }, - "events": [ - { - "uuid": "dfdc8f90-01a8-4d25-b597-5bad2b5ae18e", - "start": { - "$date": "2021-12-28T01:03:05.000Z" - }, - "end": { - "$date": "2021-12-28T02:09:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "15fbc7d0-9930-45c8-b41c-541f04d4aedd", - "start": { - "$date": "2021-12-28T02:09:05.000Z" - }, - "end": { - "$date": "2021-12-28T02:14:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a09fabf2-368e-4889-97bd-d92fb241693d", - "start": { - "$date": "2021-12-28T02:14:05.000Z" - }, - "end": { - "$date": "2021-12-28T02:24:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "356f9a89-98e9-4705-b5c7-5244f46252f2", - "start": { - "$date": "2021-12-28T02:24:05.000Z" - }, - "end": { - "$date": "2021-12-28T02:30:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f14a1ddf-7520-4aa2-8369-81201e928482", - "start": { - "$date": "2021-12-28T02:30:05.000Z" - }, - "end": { - "$date": "2021-12-28T05:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b06826e3-b0fc-49d3-95fc-d3feedaa2152", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-28T02:19:15.000Z" - }, - "end": { - "$date": "2021-12-28T04:05:13.000Z" - }, - "events": [ - { - "uuid": "bbc73535-e40a-4f03-bf40-5dc74e8bed9f", - "start": { - "$date": "2021-12-28T02:19:15.000Z" - }, - "end": { - "$date": "2021-12-28T03:30:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c31c8833-4ec1-452a-9f08-d274993e8d31", - "start": { - "$date": "2021-12-28T03:30:15.000Z" - }, - "end": { - "$date": "2021-12-28T04:05:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dcbb34c7-c68c-424b-89d5-d58e09ee884a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-28T02:20:27.000Z" - }, - "end": { - "$date": "2021-12-28T02:30:49.000Z" - }, - "events": [ - { - "uuid": "d829c481-51b9-416b-b481-2943f7dfc7fd", - "start": { - "$date": "2021-12-28T02:20:27.000Z" - }, - "end": { - "$date": "2021-12-28T02:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7773ef7-509a-4115-afdc-31a37a2b7b55", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-28T02:51:29.000Z" - }, - "end": { - "$date": "2021-12-28T03:33:20.000Z" - }, - "events": [ - { - "uuid": "38863da9-ca58-4c08-9f4b-6e9402971968", - "start": { - "$date": "2021-12-28T02:51:29.000Z" - }, - "end": { - "$date": "2021-12-28T03:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c340cb2d-ef4e-4ccf-a407-dba078217018", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-28T02:52:36.000Z" - }, - "end": { - "$date": "2021-12-28T04:23:15.000Z" - }, - "events": [ - { - "uuid": "26ec5abf-5194-4907-ba44-d25bdd8c2a97", - "start": { - "$date": "2021-12-28T02:52:36.000Z" - }, - "end": { - "$date": "2021-12-28T04:23:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "812d6e51-afef-4ddc-8075-88a4c21bdb19", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-28T03:37:00.000Z" - }, - "end": { - "$date": "2021-12-28T03:54:12.000Z" - }, - "events": [ - { - "uuid": "3b78fbb6-c187-4a80-a8ba-6518aeb6a197", - "start": { - "$date": "2021-12-28T03:37:00.000Z" - }, - "end": { - "$date": "2021-12-28T03:54:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7a5524c-45b9-4d25-ac29-fde2016a3f8f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-28T04:00:23.000Z" - }, - "end": { - "$date": "2021-12-28T04:23:23.000Z" - }, - "events": [ - { - "uuid": "78253cb5-052b-4d1c-a577-f75fc3598626", - "start": { - "$date": "2021-12-28T04:00:23.000Z" - }, - "end": { - "$date": "2021-12-28T04:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0aaed4ab-a4dc-4429-adb9-7e883136fa0d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T04:16:02.000Z" - }, - "end": { - "$date": "2021-12-28T04:43:53.000Z" - }, - "events": [ - { - "uuid": "89ab5084-5549-4d01-b2b7-350c085fa5e8", - "start": { - "$date": "2021-12-28T04:16:02.000Z" - }, - "end": { - "$date": "2021-12-28T04:43:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "44c14171-411a-48d4-b028-e6b9080b3f3f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-28T04:06:14.000Z" - }, - "end": { - "$date": "2021-12-28T05:26:17.000Z" - }, - "events": [ - { - "uuid": "2326f819-eb20-47b8-a4c7-392307a82794", - "start": { - "$date": "2021-12-28T04:06:14.000Z" - }, - "end": { - "$date": "2021-12-28T05:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "71f2091b-3795-4198-bd66-80e380f3dd8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-28T04:07:19.000Z" - }, - "end": { - "$date": "2021-12-28T04:43:37.000Z" - }, - "events": [ - { - "uuid": "3f6c7d54-e432-440b-8a12-168d30c10889", - "start": { - "$date": "2021-12-28T04:07:19.000Z" - }, - "end": { - "$date": "2021-12-28T04:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfbf6460-3088-4496-9c01-14489e2720b0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-28T05:10:49.000Z" - }, - "end": { - "$date": "2021-12-28T05:39:32.000Z" - }, - "events": [ - { - "uuid": "474123e0-bb97-446f-a6d2-c825b1f3d94d", - "start": { - "$date": "2021-12-28T05:10:49.000Z" - }, - "end": { - "$date": "2021-12-28T05:35:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49537904-22a5-4577-b2e8-86c89259e361", - "start": { - "$date": "2021-12-28T05:35:49.000Z" - }, - "end": { - "$date": "2021-12-28T05:50:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c95f9b31-e8a9-4ae0-b4af-88c3c9446c6d", - "start": { - "$date": "2021-12-28T05:50:49.000Z" - }, - "end": { - "$date": "2021-12-28T05:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d415a6b-1b57-4171-8abd-de26ac8e1fb7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T04:47:48.000Z" - }, - "end": { - "$date": "2021-12-28T05:10:23.000Z" - }, - "events": [ - { - "uuid": "62a2b80a-3ace-4516-8707-33f77ddca1d4", - "start": { - "$date": "2021-12-28T04:47:48.000Z" - }, - "end": { - "$date": "2021-12-28T05:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "50c9f47b-6ee3-40ff-a30c-923dabcb528a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-28T05:09:41.000Z" - }, - "end": { - "$date": "2021-12-28T06:29:35.000Z" - }, - "events": [ - { - "uuid": "2145c45b-de39-4908-a090-68e8c38fc0be", - "start": { - "$date": "2021-12-28T05:09:41.000Z" - }, - "end": { - "$date": "2021-12-28T06:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00aeeeec-a72d-4da5-90a1-7920663bff52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T05:13:28.000Z" - }, - "end": { - "$date": "2021-12-28T05:41:04.000Z" - }, - "events": [ - { - "uuid": "d7dcf195-5323-4def-ab94-23bcfb625d2a", - "start": { - "$date": "2021-12-28T05:13:28.000Z" - }, - "end": { - "$date": "2021-12-28T05:41:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "b61b4794-d49e-46ff-92df-9a76a03f6839", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-28T05:35:04.000Z" - }, - "end": { - "$date": "2021-12-28T07:39:57.000Z" - }, - "events": [ - { - "uuid": "30a01462-99c7-4977-a4dd-09283ff6e21b", - "start": { - "$date": "2021-12-28T05:35:04.000Z" - }, - "end": { - "$date": "2021-12-28T07:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "9e60a1d3-e6e4-4c75-b636-39db7db38250", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T05:41:59.000Z" - }, - "end": { - "$date": "2021-12-28T06:24:11.000Z" - }, - "events": [ - { - "uuid": "a485bf90-61eb-4a7b-b52e-9a7434ad2392", - "start": { - "$date": "2021-12-28T05:41:59.000Z" - }, - "end": { - "$date": "2021-12-28T06:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "98518ccd-f1d7-4a2e-962d-0bf9f898739d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-28T05:42:45.000Z" - }, - "end": { - "$date": "2021-12-28T06:54:14.000Z" - }, - "events": [ - { - "uuid": "03e98503-bfd6-4691-8019-3d2aa8a51460", - "start": { - "$date": "2021-12-28T05:42:45.000Z" - }, - "end": { - "$date": "2021-12-28T06:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a4134bfe-e2dc-4100-91c7-63749de1dbc3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-28T05:44:02.000Z" - }, - "end": { - "$date": "2021-12-28T06:40:39.000Z" - }, - "events": [ - { - "uuid": "dd7a3207-6f1c-4e1b-89b3-666bba6e7984", - "start": { - "$date": "2021-12-28T05:44:02.000Z" - }, - "end": { - "$date": "2021-12-28T06:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4fa431cd-cb14-40cb-ae87-2373119ea6b9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-28T05:59:16.000Z" - }, - "end": { - "$date": "2021-12-28T07:47:42.000Z" - }, - "events": [ - { - "uuid": "c5372e0e-8627-42f7-b1da-0ec4452a6c87", - "start": { - "$date": "2021-12-28T05:59:16.000Z" - }, - "end": { - "$date": "2021-12-28T07:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "470a5192-9679-4e48-8009-706091ba064a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-28T13:25:28.000Z" - }, - "end": { - "$date": "2021-12-28T15:11:22.000Z" - }, - "events": [ - { - "uuid": "422dbbf8-bafb-48bd-adc9-b8025c198ed8", - "start": { - "$date": "2021-12-28T13:25:28.000Z" - }, - "end": { - "$date": "2021-12-28T15:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "48b6c02e-76bd-40ca-819d-2d8c7d7e137d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-28T15:44:24.000Z" - }, - "end": { - "$date": "2021-12-29T01:21:58.000Z" - }, - "events": [ - { - "uuid": "192857d0-d741-4ed6-b17e-ef9ae1f28f29", - "start": { - "$date": "2021-12-28T15:44:24.000Z" - }, - "end": { - "$date": "2021-12-28T17:57:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4b9001c-928c-4d32-824a-9b9af4d33238", - "start": { - "$date": "2021-12-28T17:57:24.000Z" - }, - "end": { - "$date": "2021-12-28T19:02:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8250b349-abd0-456b-bf1a-bab828bac6e3", - "start": { - "$date": "2021-12-28T19:02:24.000Z" - }, - "end": { - "$date": "2021-12-28T20:21:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e811aef-177c-4dc1-a80f-f190b12178e4", - "start": { - "$date": "2021-12-28T20:21:24.000Z" - }, - "end": { - "$date": "2021-12-28T20:24:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c0aadfa2-7403-4426-a3ba-b95badf99cde", - "start": { - "$date": "2021-12-28T20:24:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:15:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30cb04bc-d71c-42a8-95b6-dd98f9ccfdb6", - "start": { - "$date": "2021-12-28T21:15:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:16:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3049768c-d9fa-4b48-9ece-fce0b26ff2e6", - "start": { - "$date": "2021-12-28T21:16:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:34:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62c09d21-6fdc-414c-8d21-9d5b2d34020c", - "start": { - "$date": "2021-12-28T21:34:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:24:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "151806f4-c1d0-4b32-b0d0-94d85889da74", - "start": { - "$date": "2021-12-28T22:24:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:59:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "98ce0ec2-f66f-47f1-86e6-52cf537bdbef", - "start": { - "$date": "2021-12-28T22:59:24.000Z" - }, - "end": { - "$date": "2021-12-28T23:14:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1787d273-5635-42da-85d6-d3a26359ca2d", - "start": { - "$date": "2021-12-28T23:14:24.000Z" - }, - "end": { - "$date": "2021-12-29T01:21:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8a4547e4-babc-49d3-9c5b-3b6f3c9c02ba", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-28T15:46:04.000Z" - }, - "end": { - "$date": "2021-12-28T19:54:39.000Z" - }, - "events": [ - { - "uuid": "29be2367-1f1b-4ca3-9384-27f6549785f8", - "start": { - "$date": "2021-12-28T15:46:04.000Z" - }, - "end": { - "$date": "2021-12-28T19:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "240af01f-13f4-4c57-b9a9-f131fe5752da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-28T16:47:47.000Z" - }, - "end": { - "$date": "2021-12-28T16:56:12.000Z" - }, - "events": [ - { - "uuid": "d8c8e0de-affd-4e07-8c24-714c8f5a637d", - "start": { - "$date": "2021-12-28T16:47:47.000Z" - }, - "end": { - "$date": "2021-12-28T16:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "5340f870-f53b-42c6-9e0e-34804c6b644d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T16:56:16.000Z" - }, - "end": { - "$date": "2021-12-28T17:07:38.000Z" - }, - "events": [ - { - "uuid": "b8a17de6-fd6d-4695-8892-a8b37aa538f5", - "start": { - "$date": "2021-12-28T16:56:16.000Z" - }, - "end": { - "$date": "2021-12-28T17:07:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "3bcb898b-4b1e-42e8-ba36-4d55f2d91796", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-28T16:56:32.000Z" - }, - "end": { - "$date": "2021-12-28T17:13:02.000Z" - }, - "events": [ - { - "uuid": "e697bf05-64ea-4e23-8d35-a8b12a7d51b8", - "start": { - "$date": "2021-12-28T16:56:32.000Z" - }, - "end": { - "$date": "2021-12-28T17:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6d0fb4f2-785c-481d-aa23-06fcabd1331d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T17:07:58.000Z" - }, - "end": { - "$date": "2021-12-28T17:48:39.000Z" - }, - "events": [ - { - "uuid": "ede3ec9a-275a-4f63-b0bf-28babb9c4b76", - "start": { - "$date": "2021-12-28T17:07:58.000Z" - }, - "end": { - "$date": "2021-12-28T17:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "cec83bcb-03c2-43e9-8092-60590d890bf7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-28T17:13:53.000Z" - }, - "end": { - "$date": "2021-12-28T17:17:13.000Z" - }, - "events": [ - { - "uuid": "e6e8d98f-c495-46bc-a070-cea33d371e87", - "start": { - "$date": "2021-12-28T17:13:53.000Z" - }, - "end": { - "$date": "2021-12-28T17:17:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "debbfa91-a55b-44c7-b6de-41a5a1e12b7e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-28T18:57:29.000Z" - }, - "end": { - "$date": "2021-12-28T19:55:17.000Z" - }, - "events": [ - { - "uuid": "06e3cc57-b896-4fc2-b090-271e290c3a68", - "start": { - "$date": "2021-12-28T18:57:29.000Z" - }, - "end": { - "$date": "2021-12-28T19:55:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "55bf857f-0fdb-4ca7-b365-12a7f9a0feb2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T18:49:15.000Z" - }, - "end": { - "$date": "2021-12-28T19:28:42.000Z" - }, - "events": [ - { - "uuid": "0904b2e8-6c33-4b71-9a31-6ce3f45a74a9", - "start": { - "$date": "2021-12-28T18:49:15.000Z" - }, - "end": { - "$date": "2021-12-28T19:28:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "227467cd-d271-4efd-bcfe-1a67374e32de", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-28T18:37:00.000Z" - }, - "end": { - "$date": "2021-12-28T18:40:55.000Z" - }, - "events": [ - { - "uuid": "462a148b-c547-4b6b-99bf-33ea34976b74", - "start": { - "$date": "2021-12-28T18:37:00.000Z" - }, - "end": { - "$date": "2021-12-28T18:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "de487e8d-75a2-43d3-aaf9-7caf3eab04c6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-28T22:02:01.000Z" - }, - "end": { - "$date": "2021-12-28T22:19:56.000Z" - }, - "events": [ - { - "uuid": "df740884-f2d8-48be-9c36-e14c69440f68", - "start": { - "$date": "2021-12-28T22:02:01.000Z" - }, - "end": { - "$date": "2021-12-28T23:09:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b27383a2-4e3c-4a65-9d20-9da85fd6d264", - "start": { - "$date": "2021-12-28T23:09:01.000Z" - }, - "end": { - "$date": "2021-12-28T23:19:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "94a3f5fb-a2f3-4cf2-a56a-61b0ca540cbc", - "start": { - "$date": "2021-12-28T23:19:01.000Z" - }, - "end": { - "$date": "2021-12-28T22:19:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "03403ca1-478c-4c1b-8f2d-13f3aca67277", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-28T18:44:16.000Z" - }, - "end": { - "$date": "2021-12-28T19:28:16.000Z" - }, - "events": [ - { - "uuid": "5c0f0020-84e5-4032-b4bf-8a30d0850f3c", - "start": { - "$date": "2021-12-28T18:44:16.000Z" - }, - "end": { - "$date": "2021-12-28T19:28:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a1eb5941-dd14-4422-8ae5-7b2d63b6a9ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T19:30:22.000Z" - }, - "end": { - "$date": "2021-12-28T19:49:52.000Z" - }, - "events": [ - { - "uuid": "45374caf-bb1e-47a7-94c2-faec2edbf8c9", - "start": { - "$date": "2021-12-28T19:30:22.000Z" - }, - "end": { - "$date": "2021-12-28T19:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5345c0b2-1115-4b33-9631-fabd1274aee0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-28T21:10:13.000Z" - }, - "end": { - "$date": "2021-12-28T21:28:00.000Z" - }, - "events": [ - { - "uuid": "5cb25283-3399-4a9a-898a-dbfe929e93a4", - "start": { - "$date": "2021-12-28T21:10:13.000Z" - }, - "end": { - "$date": "2021-12-28T21:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "03ddb2fc-6644-43bd-a935-5b11403a0bfc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-28T19:57:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:49:41.000Z" - }, - "events": [ - { - "uuid": "b1e161f2-9abd-4035-9175-68e9c9c44394", - "start": { - "$date": "2021-12-28T19:57:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:27:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03cf6003-1332-4655-87ae-cd97aae89387", - "start": { - "$date": "2021-12-28T21:27:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:32:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "26dea738-331b-40d0-8e45-cd150316e971", - "start": { - "$date": "2021-12-28T21:32:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:42:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dff1f2d6-b9ce-424a-a545-806190cc3376", - "start": { - "$date": "2021-12-28T21:42:24.000Z" - }, - "end": { - "$date": "2021-12-28T21:58:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d98e4486-3e8c-4692-bb5a-7be4882b79ea", - "start": { - "$date": "2021-12-28T21:58:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:08:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5686e8cb-5644-4550-8b8e-48120ce9415a", - "start": { - "$date": "2021-12-28T22:08:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:13:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bf42405d-9305-482d-a349-cd1ec6e8327a", - "start": { - "$date": "2021-12-28T22:13:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:23:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d953db9-8c0b-4379-82f1-03b45511a2f2", - "start": { - "$date": "2021-12-28T22:23:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:28:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "93d17f38-2fe1-4517-85c3-43d1e3ac6de3", - "start": { - "$date": "2021-12-28T22:28:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:39:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "13f8656c-9de0-4843-b496-edb9f710a99e", - "start": { - "$date": "2021-12-28T22:39:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:44:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a5ce48b-1da1-4433-80e1-003d95d94b60", - "start": { - "$date": "2021-12-28T22:44:24.000Z" - }, - "end": { - "$date": "2021-12-28T22:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "99c6e3e4-2847-42f0-b183-bd26a7d0fcdd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T20:50:20.000Z" - }, - "end": { - "$date": "2021-12-28T22:26:15.000Z" - }, - "events": [ - { - "uuid": "f783677b-5c8a-4396-9b9b-1539287340d0", - "start": { - "$date": "2021-12-28T20:50:20.000Z" - }, - "end": { - "$date": "2021-12-28T22:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f75c2683-67ce-45db-81ba-3461ba67fe3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-28T20:07:10.000Z" - }, - "end": { - "$date": "2021-12-28T20:50:34.000Z" - }, - "events": [ - { - "uuid": "46e035ca-3ce0-459b-874b-66d1d90d3d4a", - "start": { - "$date": "2021-12-28T20:07:10.000Z" - }, - "end": { - "$date": "2021-12-28T20:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "976c67ba-437a-44bc-8a25-67593eca1e2d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-28T20:50:43.000Z" - }, - "end": { - "$date": "2021-12-28T22:26:26.000Z" - }, - "events": [ - { - "uuid": "627657cd-ec69-4a68-9f4b-34fa2584ce79", - "start": { - "$date": "2021-12-28T20:50:43.000Z" - }, - "end": { - "$date": "2021-12-28T22:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5632063a-55c2-4155-a3d9-3296bcfc8239", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-28T21:35:23.000Z" - }, - "end": { - "$date": "2021-12-28T22:25:04.000Z" - }, - "events": [ - { - "uuid": "1e74c45e-cbdf-4d7d-9a7d-0c1c21206626", - "start": { - "$date": "2021-12-28T21:35:23.000Z" - }, - "end": { - "$date": "2021-12-28T22:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5059b6d5-e208-4e61-9028-865b1b223c9f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-28T22:25:14.000Z" - }, - "end": { - "$date": "2021-12-28T22:31:49.000Z" - }, - "events": [ - { - "uuid": "c45b6e5d-1eae-4be9-b5a0-7bffd7ae2474", - "start": { - "$date": "2021-12-28T22:25:14.000Z" - }, - "end": { - "$date": "2021-12-28T22:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "41dd0a38-4cc5-4073-abc1-448458c21670", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-28T22:31:59.000Z" - }, - "end": { - "$date": "2021-12-29T01:50:38.000Z" - }, - "events": [ - { - "uuid": "da917ffe-b70a-47c1-b57f-443ba2b75cb3", - "start": { - "$date": "2021-12-28T22:31:59.000Z" - }, - "end": { - "$date": "2021-12-28T23:33:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "23ca926f-bddb-4256-b28e-d4eefe59b066", - "start": { - "$date": "2021-12-28T23:33:59.000Z" - }, - "end": { - "$date": "2021-12-28T23:36:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2f4c1f8c-5ace-4776-b275-46b0d472b170", - "start": { - "$date": "2021-12-28T23:36:59.000Z" - }, - "end": { - "$date": "2021-12-29T01:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbb491d9-fa06-49e3-b606-bb7e0b8bb6e9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-28T23:25:48.000Z" - }, - "end": { - "$date": "2021-12-29T00:04:50.000Z" - }, - "events": [ - { - "uuid": "528f422b-c0f1-4656-ac8a-d27d81eb032a", - "start": { - "$date": "2021-12-28T23:25:48.000Z" - }, - "end": { - "$date": "2021-12-29T00:04:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e638c3bb-8376-4e5a-8dc4-42549caa70e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T00:06:54.000Z" - }, - "end": { - "$date": "2021-12-29T00:47:47.000Z" - }, - "events": [ - { - "uuid": "5080b12c-3d68-4a2d-bc0a-963e4f5b1286", - "start": { - "$date": "2021-12-29T00:06:54.000Z" - }, - "end": { - "$date": "2021-12-29T00:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba8882ff-8fb6-40b1-93dd-45ed8f7918a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T00:23:21.000Z" - }, - "end": { - "$date": "2021-12-29T01:00:13.000Z" - }, - "events": [ - { - "uuid": "37c4710a-9e8a-4165-aa82-4d319f88256d", - "start": { - "$date": "2021-12-29T00:23:21.000Z" - }, - "end": { - "$date": "2021-12-29T00:41:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26acda9c-6920-40c7-b4a7-c26fd20cc130", - "start": { - "$date": "2021-12-29T00:41:21.000Z" - }, - "end": { - "$date": "2021-12-29T00:46:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c56483ab-7b61-49c0-b59a-c9ec2c306790", - "start": { - "$date": "2021-12-29T00:46:21.000Z" - }, - "end": { - "$date": "2021-12-29T00:56:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "61415f77-55b8-4b61-b1c4-251ed1ce49c2", - "start": { - "$date": "2021-12-29T00:56:21.000Z" - }, - "end": { - "$date": "2021-12-29T01:00:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fae22bb1-330e-4ad2-8726-df11f5ed1d9a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-28T22:02:01.000Z" - }, - "end": { - "$date": "2021-12-29T01:00:31.000Z" - }, - "events": [ - { - "uuid": "d784fd2a-c7f7-43f3-9007-4fdfa90d47cc", - "start": { - "$date": "2021-12-28T22:02:01.000Z" - }, - "end": { - "$date": "2021-12-28T22:05:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e7ac16e-ca22-47f1-a56e-ccf752433938", - "start": { - "$date": "2021-12-28T22:05:01.000Z" - }, - "end": { - "$date": "2021-12-29T01:00:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ed503c0-7784-42b1-b766-8cf25dcf6911", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T01:00:16.000Z" - }, - "end": { - "$date": "2021-12-29T01:09:45.000Z" - }, - "events": [ - { - "uuid": "23f27a98-db87-43c0-9ab7-6c29e6e33629", - "start": { - "$date": "2021-12-29T01:00:16.000Z" - }, - "end": { - "$date": "2021-12-29T01:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7be08ef-56ac-484e-9626-e23719fd05ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T01:09:16.000Z" - }, - "end": { - "$date": "2021-12-29T02:18:46.000Z" - }, - "events": [ - { - "uuid": "480900ac-090d-4647-8e84-bdff1df906fd", - "start": { - "$date": "2021-12-29T01:09:16.000Z" - }, - "end": { - "$date": "2021-12-29T02:18:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "01c48262-f253-4f7f-8b29-052ea58c8f79", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T01:09:54.000Z" - }, - "end": { - "$date": "2021-12-29T02:18:32.000Z" - }, - "events": [ - { - "uuid": "cddd28cb-dc42-4497-ab5b-62f33f33e01a", - "start": { - "$date": "2021-12-29T01:09:54.000Z" - }, - "end": { - "$date": "2021-12-29T02:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c6bdf1f2-6fd1-4669-a99a-3d0dbad1f3be", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T01:10:28.000Z" - }, - "end": { - "$date": "2021-12-29T02:18:54.000Z" - }, - "events": [ - { - "uuid": "fee77951-3b96-44c8-839d-9bca9f4499fb", - "start": { - "$date": "2021-12-29T01:10:28.000Z" - }, - "end": { - "$date": "2021-12-29T02:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "08b5ccb5-45ab-4949-bacc-43014e0493c0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T01:47:57.000Z" - }, - "end": { - "$date": "2021-12-29T01:51:39.000Z" - }, - "events": [ - { - "uuid": "20cab0c6-74c4-41d9-b4a0-6b51670094b8", - "start": { - "$date": "2021-12-29T01:47:57.000Z" - }, - "end": { - "$date": "2021-12-29T01:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "aed5bdfa-0f4f-4626-993c-918afcfc50ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T01:50:48.000Z" - }, - "end": { - "$date": "2021-12-29T01:56:19.000Z" - }, - "events": [ - { - "uuid": "275e5ba0-5aee-4ec0-8810-1bb3dfa61ecc", - "start": { - "$date": "2021-12-29T01:50:48.000Z" - }, - "end": { - "$date": "2021-12-29T01:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "149aeeb1-5629-4b12-99b6-32cee2f80bcc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T01:56:29.000Z" - }, - "end": { - "$date": "2021-12-29T02:03:05.000Z" - }, - "events": [ - { - "uuid": "ac9803e2-8710-4d11-b94c-45847ae1a674", - "start": { - "$date": "2021-12-29T01:56:29.000Z" - }, - "end": { - "$date": "2021-12-29T02:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a7db496e-43e4-45ec-8993-337d769a7c8a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T02:03:15.000Z" - }, - "end": { - "$date": "2021-12-29T07:55:12.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T02:03:15.000Z" - }, - "end": { - "$date": "2021-12-29T07:55:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5749233-9b77-45d4-8175-c2c9cad703a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T02:46:56.000Z" - }, - "end": { - "$date": "2021-12-29T03:13:37.000Z" - }, - "events": [ - { - "uuid": "9d7c79d7-1148-4a12-9e9c-3449518404c7", - "start": { - "$date": "2021-12-29T02:46:56.000Z" - }, - "end": { - "$date": "2021-12-29T03:13:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "23b06e93-ab7a-4614-bf49-903616a5eb1e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T02:42:39.000Z" - }, - "end": { - "$date": "2021-12-29T04:25:43.000Z" - }, - "events": [ - { - "uuid": "a175c154-22f2-4511-9fa9-3188e0d83d6d", - "start": { - "$date": "2021-12-29T02:42:39.000Z" - }, - "end": { - "$date": "2021-12-29T04:25:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "187ac904-04c3-46ab-aae4-3b7d9a17b836", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T02:59:17.000Z" - }, - "end": { - "$date": "2021-12-29T03:29:38.000Z" - }, - "events": [ - { - "uuid": "847de137-13d5-42da-933c-5fa988b43c77", - "start": { - "$date": "2021-12-29T02:59:17.000Z" - }, - "end": { - "$date": "2021-12-29T03:29:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34adc52e-5df4-42de-baed-24aa5d60ca3c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T02:59:25.000Z" - }, - "end": { - "$date": "2021-12-29T03:29:51.000Z" - }, - "events": [ - { - "uuid": "1ff53388-21b3-4bc3-bc8c-b63c11dedc64", - "start": { - "$date": "2021-12-29T02:59:25.000Z" - }, - "end": { - "$date": "2021-12-29T03:29:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f6b5673-a25a-4c48-9f96-ccadf8325cab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T03:29:45.000Z" - }, - "end": { - "$date": "2021-12-29T03:29:45.000Z" - }, - "events": [ - { - "uuid": "bb479175-7039-4592-9dbd-2fa6a9a37900", - "start": { - "$date": "2021-12-29T03:29:45.000Z" - }, - "end": { - "$date": "2021-12-29T03:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e296213-449c-42cb-beaa-81268e4f09cf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T03:20:31.000Z" - }, - "end": { - "$date": "2021-12-29T03:30:36.000Z" - }, - "events": [ - { - "uuid": "07cc0e78-adf4-4fb3-8ccb-2d10ffbafffc", - "start": { - "$date": "2021-12-29T03:20:31.000Z" - }, - "end": { - "$date": "2021-12-29T03:30:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a5a2e57-6345-4a1a-bda0-8db34c6a929b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T03:34:01.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:13.000Z" - }, - "events": [ - { - "uuid": "1579968d-ae07-4d34-96ff-956c50175d5b", - "start": { - "$date": "2021-12-29T03:34:01.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5175c55e-79a4-4194-89a0-46dd8550928d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T03:33:53.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:16.000Z" - }, - "events": [ - { - "uuid": "91ef5dd4-5513-4bd9-b259-032fc4b5d6a6", - "start": { - "$date": "2021-12-29T03:33:53.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ad6a6fb-b25c-414a-9a7f-3d1de9f581e0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T03:33:59.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:16.000Z" - }, - "events": [ - { - "uuid": "8fad48f8-f35a-44d1-ac11-a478fb5a6410", - "start": { - "$date": "2021-12-29T03:33:59.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b94ca0e-416c-4089-9e11-6e72c8ab1dc2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T03:33:53.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:03.000Z" - }, - "events": [ - { - "uuid": "a7fbc247-b0d1-42fa-844d-77329ab5d9ad", - "start": { - "$date": "2021-12-29T03:33:53.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae6bf643-adf1-492f-9e85-279e4c5c51d7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T03:33:53.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:08.000Z" - }, - "events": [ - { - "uuid": "fa9089dd-3c42-4160-bb77-871a3530858c", - "start": { - "$date": "2021-12-29T03:33:53.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db461fe0-9bd5-4ecd-9126-ac284f536d8f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T03:33:56.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:12.000Z" - }, - "events": [ - { - "uuid": "f65e13df-ec99-4333-ab3e-d461e9b0be59", - "start": { - "$date": "2021-12-29T03:33:56.000Z" - }, - "end": { - "$date": "2021-12-29T03:47:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfd651f6-ed73-4093-a951-b262c001b612", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T03:49:32.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:33.000Z" - }, - "events": [ - { - "uuid": "0083173c-caf8-4150-9066-5e4cd94279f5", - "start": { - "$date": "2021-12-29T03:49:32.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6f5a283-1c35-4196-9b3f-89abf71e4a5c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T03:49:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:34.000Z" - }, - "events": [ - { - "uuid": "e7228897-27a1-41c3-8e97-71c939542dba", - "start": { - "$date": "2021-12-29T03:49:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04c96642-66bc-42aa-acc8-4b64f5a5769e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T03:49:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:28.000Z" - }, - "events": [ - { - "uuid": "0a006bb0-41f8-45d1-9283-3116ee1dbfc1", - "start": { - "$date": "2021-12-29T03:49:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d38dce2-2624-4684-a430-b9389dc7600e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T03:49:42.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:38.000Z" - }, - "events": [ - { - "uuid": "f9d1be8b-7cbe-41fc-a608-d13fdce209d3", - "start": { - "$date": "2021-12-29T03:49:42.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "890a8dbc-1c55-40e0-96d2-743fb83602aa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T03:49:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:34.000Z" - }, - "events": [ - { - "uuid": "0cb8d3d2-12bf-4ae5-af33-32ee92d12174", - "start": { - "$date": "2021-12-29T03:49:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "422ffca4-4890-43c5-b677-cf1c4e67ba0d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T03:49:39.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:30.000Z" - }, - "events": [ - { - "uuid": "bd7baccb-6f68-4b67-a84d-fe8d2baf5550", - "start": { - "$date": "2021-12-29T03:49:39.000Z" - }, - "end": { - "$date": "2021-12-29T04:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f584fb75-05f3-48a5-9668-a69516da36cb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T04:16:38.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:24.000Z" - }, - "events": [ - { - "uuid": "e01802a4-465d-459d-a5f7-3ffa34788315", - "start": { - "$date": "2021-12-29T04:16:38.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04eef36c-c6c3-4dab-a09e-79609c96bedf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T04:16:34.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:36.000Z" - }, - "events": [ - { - "uuid": "ca0c02d4-d2af-4bba-99d2-3c7ffc7dca6b", - "start": { - "$date": "2021-12-29T04:16:34.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7042c96-9f99-4749-9005-a5290e192d11", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T04:16:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:25.000Z" - }, - "events": [ - { - "uuid": "fd65fdfb-c222-45e9-a5d9-2529bb7349c4", - "start": { - "$date": "2021-12-29T04:16:33.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a21e6e0c-96a8-4701-81bc-1e35cf82d2e1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T04:16:40.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:36.000Z" - }, - "events": [ - { - "uuid": "eda7816a-3103-40af-bd75-b39035850cb5", - "start": { - "$date": "2021-12-29T04:16:40.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "107d6dd7-f7fb-4319-8cf5-fb1a5164f8e2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T04:16:44.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:25.000Z" - }, - "events": [ - { - "uuid": "c2b3836e-1de8-4c4f-b9ed-c2357807ef31", - "start": { - "$date": "2021-12-29T04:16:44.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea047bb2-f94b-424b-8617-3aba624e93e8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T04:16:42.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:29.000Z" - }, - "events": [ - { - "uuid": "297137be-e12d-4505-b8d2-0ba30ab957d8", - "start": { - "$date": "2021-12-29T04:16:42.000Z" - }, - "end": { - "$date": "2021-12-29T04:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "c849e11d-5c14-459e-995c-a5cfb5c53d28", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T04:27:56.000Z" - }, - "end": { - "$date": "2021-12-29T05:12:59.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:27:56.000Z" - }, - "end": { - "$date": "2021-12-29T05:12:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3323d92-0c50-4b42-b021-4dd65caaf47e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T04:43:51.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:32.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:43:51.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17547636-2faf-4912-9b35-cab841f2bdca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T04:43:45.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:36.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:43:45.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92ab2f14-9753-4f9d-a38d-e30329dd8d14", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T04:43:49.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:35.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:43:49.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd5e7dfc-14d9-4655-bd3a-aa2f473c2e43", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T04:43:55.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:35.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:43:55.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c7497ce-4b12-4234-b37c-1d2321d3e457", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T04:43:46.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:37.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:43:46.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70097515-a184-4e43-907c-aa44802351f2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T04:43:53.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:39.000Z" - }, - "events": [ - { - "start": { - "$date": "2021-12-29T04:43:53.000Z" - }, - "end": { - "$date": "2021-12-29T05:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1eded9c4-9ecc-4ee0-adce-4c6391ca9267", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T05:05:57.000Z" - }, - "end": { - "$date": "2021-12-29T05:41:36.000Z" - }, - "events": [ - { - "uuid": "37605f70-7ff9-4302-a3fe-ebc9892c7bcb", - "start": { - "$date": "2021-12-29T05:05:57.000Z" - }, - "end": { - "$date": "2021-12-29T05:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46994451-2254-420f-a080-1cebd925ae0d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T05:06:05.000Z" - }, - "end": { - "$date": "2021-12-29T05:41:28.000Z" - }, - "events": [ - { - "uuid": "207605f2-e662-40e4-bd38-1af657d111ae", - "start": { - "$date": "2021-12-29T05:06:05.000Z" - }, - "end": { - "$date": "2021-12-29T05:41:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19300ab1-e842-4eab-8501-e9fbb9e9023a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T05:05:59.000Z" - }, - "end": { - "$date": "2021-12-29T05:34:11.000Z" - }, - "events": [ - { - "uuid": "22571219-60f2-4622-a411-f03498c3d67f", - "start": { - "$date": "2021-12-29T05:05:59.000Z" - }, - "end": { - "$date": "2021-12-29T05:34:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ed80e4c-6fcb-488d-b316-71edb2f0950f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T05:06:00.000Z" - }, - "end": { - "$date": "2021-12-29T05:41:27.000Z" - }, - "events": [ - { - "uuid": "751ba1e4-1a5b-4005-bd8b-391a4a263d69", - "start": { - "$date": "2021-12-29T05:06:00.000Z" - }, - "end": { - "$date": "2021-12-29T05:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8a0eaf7-2ebd-4e8f-9cb7-53b445399621", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T05:05:56.000Z" - }, - "end": { - "$date": "2021-12-29T05:26:48.000Z" - }, - "events": [ - { - "uuid": "554357e7-d31a-4978-84e1-9ca7f9fa4f4e", - "start": { - "$date": "2021-12-29T05:05:56.000Z" - }, - "end": { - "$date": "2021-12-29T05:26:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89c34ddc-f32b-4b51-ab21-289b35ddb11a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T05:06:07.000Z" - }, - "end": { - "$date": "2021-12-29T05:36:45.000Z" - }, - "events": [ - { - "uuid": "15a8abc3-1a47-4cb1-8e68-ecd3f2ccd1ee", - "start": { - "$date": "2021-12-29T05:06:07.000Z" - }, - "end": { - "$date": "2021-12-29T05:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "77267ec9-64b7-49b3-89bf-7661904bc06c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T05:31:32.000Z" - }, - "end": { - "$date": "2021-12-29T05:52:34.000Z" - }, - "events": [ - { - "uuid": "c68b59b3-fa98-44f8-b7e3-8756b635d27b", - "start": { - "$date": "2021-12-29T05:31:32.000Z" - }, - "end": { - "$date": "2021-12-29T05:52:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98eb098b-7b7a-42f3-b30f-be8e8805dbed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T05:48:15.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:31.000Z" - }, - "events": [ - { - "uuid": "cf487129-1e8e-4371-8b5e-a7694b65cefc", - "start": { - "$date": "2021-12-29T05:48:15.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b45bf4f-baca-4c8b-b996-8a81060d5d99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T05:44:30.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:46.000Z" - }, - "events": [ - { - "uuid": "63d9401b-dfd8-49c0-adc7-bc48b1371e8f", - "start": { - "$date": "2021-12-29T05:44:30.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fef6cbd-b2c8-4c0b-9369-88e7f87c37e4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T05:44:30.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:47.000Z" - }, - "events": [ - { - "uuid": "d1721737-49d5-4eb1-8d96-cbdaecc101e9", - "start": { - "$date": "2021-12-29T05:44:30.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5320d4ca-3ace-4ba7-967d-1be09830d354", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T05:44:32.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:46.000Z" - }, - "events": [ - { - "uuid": "3591110b-e976-4735-9b2c-fb283e78de31", - "start": { - "$date": "2021-12-29T05:44:32.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60156159-5e0f-4633-b6eb-1dc3b41ba014", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T05:44:31.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:45.000Z" - }, - "events": [ - { - "uuid": "115c0c1e-2e90-4d75-a3a8-d963999129ae", - "start": { - "$date": "2021-12-29T05:44:31.000Z" - }, - "end": { - "$date": "2021-12-29T05:44:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5e0ffe9-3db7-4104-9d08-a6d80eb4b776", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T05:48:27.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:23.000Z" - }, - "events": [ - { - "uuid": "4cd3b144-b91f-415a-baa9-60fc3db5a77a", - "start": { - "$date": "2021-12-29T05:48:27.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16d7bc96-590e-4396-be8e-7f03aea1d8dd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T05:48:19.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:29.000Z" - }, - "events": [ - { - "uuid": "1eaab5a6-a7d0-4743-8cfc-41ad36caf84c", - "start": { - "$date": "2021-12-29T05:48:19.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdfdb973-f3e4-4bb4-9c05-1afc02496f5d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2021-12-29T05:48:17.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:32.000Z" - }, - "events": [ - { - "uuid": "5221b757-5141-4353-b052-1de8c1fcda10", - "start": { - "$date": "2021-12-29T05:48:17.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89a961e5-a7cb-4b0f-8bf9-ca6c46c298f1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-29T05:48:28.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:34.000Z" - }, - "events": [ - { - "uuid": "ec924414-e083-4f55-bd2f-d3ff8cae922d", - "start": { - "$date": "2021-12-29T05:48:28.000Z" - }, - "end": { - "$date": "2021-12-29T06:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "5e79b282-1b3b-44a2-89cc-4aaf414999f9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T06:17:46.000Z" - }, - "end": { - "$date": "2021-12-29T06:48:38.000Z" - }, - "events": [ - { - "uuid": "27fef6cb-c476-4513-932b-4f734f47b4d6", - "start": { - "$date": "2021-12-29T06:17:46.000Z" - }, - "end": { - "$date": "2021-12-29T06:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "2aa670f2-9941-4e70-82d2-95dec707558e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T07:15:51.000Z" - }, - "end": { - "$date": "2021-12-29T09:01:24.000Z" - }, - "events": [ - { - "uuid": "40b3d363-1e0d-4e40-98d2-d2d681a0eb78", - "start": { - "$date": "2021-12-29T07:15:51.000Z" - }, - "end": { - "$date": "2021-12-29T09:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c728dcee-924a-4b1b-a8f4-dd94d074c30c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T14:53:21.000Z" - }, - "end": { - "$date": "2021-12-29T15:37:08.000Z" - }, - "events": [ - { - "uuid": "17f89007-f457-4b66-b39c-b300f028cb8b", - "start": { - "$date": "2021-12-29T14:53:21.000Z" - }, - "end": { - "$date": "2021-12-29T15:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c23edff-1228-4391-a6cc-ac779a3a1586", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T15:27:11.000Z" - }, - "end": { - "$date": "2021-12-29T15:35:22.000Z" - }, - "events": [ - { - "uuid": "6b395701-856e-49e1-8849-56afe9e7520d", - "start": { - "$date": "2021-12-29T15:27:11.000Z" - }, - "end": { - "$date": "2021-12-29T15:35:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "088ec95b-3d04-4a8d-8d48-6734ebaf89a6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-29T15:39:02.000Z" - }, - "end": { - "$date": "2021-12-29T19:01:18.000Z" - }, - "events": [ - { - "uuid": "5e9dab7f-9ef6-43d1-8b13-c6a2631d3b44", - "start": { - "$date": "2021-12-29T15:39:02.000Z" - }, - "end": { - "$date": "2021-12-29T19:01:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "55ef58b6-975e-4beb-b3e9-338aca25303e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T16:56:02.000Z" - }, - "end": { - "$date": "2021-12-29T18:02:41.000Z" - }, - "events": [ - { - "uuid": "cdc52536-2252-4015-b0d3-cf0589e21a98", - "start": { - "$date": "2021-12-29T16:56:02.000Z" - }, - "end": { - "$date": "2021-12-29T18:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6e99635-f5c2-47d5-b703-c588358dbc18", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T17:33:17.000Z" - }, - "end": { - "$date": "2021-12-29T18:03:57.000Z" - }, - "events": [ - { - "uuid": "8826156b-59c2-4ca5-bc66-782e472ea268", - "start": { - "$date": "2021-12-29T17:33:17.000Z" - }, - "end": { - "$date": "2021-12-29T18:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "38298128-2680-4fbf-9e02-08930c076fb9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T18:12:22.000Z" - }, - "end": { - "$date": "2021-12-29T18:13:58.000Z" - }, - "events": [ - { - "uuid": "4b6026e3-180a-4ecd-a8a8-68da924dc104", - "start": { - "$date": "2021-12-29T18:12:22.000Z" - }, - "end": { - "$date": "2021-12-29T18:13:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f34ff1d3-e808-4e8d-93df-1ac8d5884f53", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T19:30:04.000Z" - }, - "end": { - "$date": "2021-12-29T19:53:05.000Z" - }, - "events": [ - { - "uuid": "0a7f1a05-22a6-4445-8433-0ae1ec6a9c13", - "start": { - "$date": "2021-12-29T19:30:04.000Z" - }, - "end": { - "$date": "2021-12-29T19:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdae0024-7991-4ad5-9092-8deb9eb909af", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T19:30:04.000Z" - }, - "end": { - "$date": "2021-12-29T19:53:06.000Z" - }, - "events": [ - { - "uuid": "8a13c862-f82d-45cf-b24b-81b180f32f03", - "start": { - "$date": "2021-12-29T19:30:04.000Z" - }, - "end": { - "$date": "2021-12-29T19:53:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4697bacf-d21d-4a42-9262-68c4b734c4d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T19:54:00.000Z" - }, - "end": { - "$date": "2021-12-29T20:17:16.000Z" - }, - "events": [ - { - "uuid": "625e7df8-3bea-40e2-ba0a-58b27bc209aa", - "start": { - "$date": "2021-12-29T19:54:00.000Z" - }, - "end": { - "$date": "2021-12-29T20:17:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4333681a-2933-48a6-abe1-9f6467b0b130", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-29T19:54:01.000Z" - }, - "end": { - "$date": "2021-12-29T20:17:08.000Z" - }, - "events": [ - { - "uuid": "af081f29-be1c-4623-8c90-cf98855cb0eb", - "start": { - "$date": "2021-12-29T19:54:01.000Z" - }, - "end": { - "$date": "2021-12-29T20:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c80faa27-e8bc-455c-8382-f92e6f626008", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T20:56:40.000Z" - }, - "end": { - "$date": "2021-12-29T21:18:36.000Z" - }, - "events": [ - { - "uuid": "a311a2c5-c37a-42b9-87e1-45f6b40d1928", - "start": { - "$date": "2021-12-29T20:56:40.000Z" - }, - "end": { - "$date": "2021-12-29T21:18:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f379430c-5066-4526-b618-5c06acbdb785", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-29T21:07:19.000Z" - }, - "end": { - "$date": "2021-12-29T21:59:13.000Z" - }, - "events": [ - { - "uuid": "bab4810c-2d99-4aa1-9692-9645647904eb", - "start": { - "$date": "2021-12-29T21:07:19.000Z" - }, - "end": { - "$date": "2021-12-29T21:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "14193075-645f-476c-954d-7029078f617d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T21:23:17.000Z" - }, - "end": { - "$date": "2021-12-29T21:33:12.000Z" - }, - "events": [ - { - "uuid": "6508ab40-0294-4e6d-b2ff-10c78bc40758", - "start": { - "$date": "2021-12-29T21:23:17.000Z" - }, - "end": { - "$date": "2021-12-29T21:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "4ca9e9ec-af39-4e78-a2a9-134100c6a3e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T21:47:06.000Z" - }, - "end": { - "$date": "2021-12-29T21:48:46.000Z" - }, - "events": [ - { - "uuid": "b691614b-1b74-4094-98e5-05a9122f9200", - "start": { - "$date": "2021-12-29T21:47:06.000Z" - }, - "end": { - "$date": "2021-12-29T21:48:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d6e646db-2757-4c49-b929-a8f942c99a11", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T21:50:07.000Z" - }, - "end": { - "$date": "2021-12-29T22:13:03.000Z" - }, - "events": [ - { - "uuid": "82147974-a509-4980-b4db-a72b01c39698", - "start": { - "$date": "2021-12-29T21:50:07.000Z" - }, - "end": { - "$date": "2021-12-29T22:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "004fd162-844a-4cdf-a7a5-7d10f0a04d92", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-29T22:00:28.000Z" - }, - "end": { - "$date": "2021-12-29T22:22:19.000Z" - }, - "events": [ - { - "uuid": "c4aac5a8-767b-456d-b629-8088da24738c", - "start": { - "$date": "2021-12-29T22:00:28.000Z" - }, - "end": { - "$date": "2021-12-29T22:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1890e99d-8eb2-40d0-9b6d-75985dbeeae9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T22:08:49.000Z" - }, - "end": { - "$date": "2021-12-29T23:37:31.000Z" - }, - "events": [ - { - "uuid": "ab8f8a13-88af-49ad-83c4-85cb86abcde2", - "start": { - "$date": "2021-12-29T22:08:49.000Z" - }, - "end": { - "$date": "2021-12-29T23:37:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a862fbc9-6ed9-4512-b724-a1dace62347c", - "uuid": "4203d39b-a74c-48c1-b39e-b252b6da8541", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-29T22:17:24.000Z" - }, - "end": { - "$date": "2021-12-29T22:43:00.000Z" - }, - "events": [ - { - "uuid": "8e2980c3-cc57-4eda-bcec-1243646a7741", - "start": { - "$date": "2021-12-29T22:17:24.000Z" - }, - "end": { - "$date": "2021-12-29T22:43:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b9ae108e-ae42-419a-94a4-e3f88c9119a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-29T22:35:01.000Z" - }, - "end": { - "$date": "2021-12-29T22:46:22.000Z" - }, - "events": [ - { - "uuid": "4fb4a33d-9ec6-42f5-96cc-f1cdaa594156", - "start": { - "$date": "2021-12-29T22:35:01.000Z" - }, - "end": { - "$date": "2021-12-29T22:46:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ed4bf7e0-fc19-4ac7-a51a-ae6bdf67d224", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-29T22:46:27.000Z" - }, - "end": { - "$date": "2021-12-29T23:03:48.000Z" - }, - "events": [ - { - "uuid": "785fbc1a-b843-48b0-9a04-a13293d8b59c", - "start": { - "$date": "2021-12-29T22:46:27.000Z" - }, - "end": { - "$date": "2021-12-29T23:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6e6c5440-cb52-4acd-b286-790c4fdd451a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-29T22:52:45.000Z" - }, - "end": { - "$date": "2021-12-30T01:14:03.000Z" - }, - "events": [ - { - "uuid": "4103664f-6e61-455e-bc7a-8f0e0f31c377", - "start": { - "$date": "2021-12-29T22:52:45.000Z" - }, - "end": { - "$date": "2021-12-30T01:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b351a15-8a61-4e97-b542-23b9f6d19d66", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-29T23:04:33.000Z" - }, - "end": { - "$date": "2021-12-30T00:36:35.000Z" - }, - "events": [ - { - "uuid": "c9c13635-39fc-4831-b151-80fd6a869f67", - "start": { - "$date": "2021-12-29T23:04:33.000Z" - }, - "end": { - "$date": "2021-12-30T00:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c98fd05-8304-48fc-bed0-7f5a05107571", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T23:25:20.000Z" - }, - "end": { - "$date": "2021-12-29T23:47:20.000Z" - }, - "events": [ - { - "uuid": "a1c41a4b-e813-4529-88b8-ec4181886e10", - "start": { - "$date": "2021-12-29T23:25:20.000Z" - }, - "end": { - "$date": "2021-12-29T23:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5156085b-fabc-4c25-931a-17d161586fe8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T23:40:28.000Z" - }, - "end": { - "$date": "2021-12-29T23:43:07.000Z" - }, - "events": [ - { - "uuid": "115d8d8c-6600-41e8-bc88-14f00288713a", - "start": { - "$date": "2021-12-29T23:40:28.000Z" - }, - "end": { - "$date": "2021-12-29T23:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d9ec5ea4-2d67-4f4f-9f8e-fb85f82bc699", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T23:43:23.000Z" - }, - "end": { - "$date": "2021-12-29T23:47:12.000Z" - }, - "events": [ - { - "uuid": "2a3c3b2d-5cf3-4c87-b279-1a663f8f6270", - "start": { - "$date": "2021-12-29T23:43:23.000Z" - }, - "end": { - "$date": "2021-12-29T23:47:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9cde11d5-51a0-4269-95c7-9c1b3d5464ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T23:47:23.000Z" - }, - "end": { - "$date": "2021-12-29T23:51:08.000Z" - }, - "events": [ - { - "uuid": "8f19eb72-f8be-4510-87f1-06e89f6ec31d", - "start": { - "$date": "2021-12-29T23:47:23.000Z" - }, - "end": { - "$date": "2021-12-29T23:51:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "005ad44f-5ec7-45d9-a626-c03f14ae94ce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-29T23:56:13.000Z" - }, - "end": { - "$date": "2021-12-30T00:15:24.000Z" - }, - "events": [ - { - "uuid": "1c0aa245-66d0-49c0-be56-39ce8467d4b9", - "start": { - "$date": "2021-12-29T23:56:13.000Z" - }, - "end": { - "$date": "2021-12-30T00:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "eaffdb30-e5b6-416d-9233-3f0a516d3169", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T23:51:24.000Z" - }, - "end": { - "$date": "2021-12-29T23:53:03.000Z" - }, - "events": [ - { - "uuid": "d971a62d-173c-4c63-babb-d1ef7c05a80d", - "start": { - "$date": "2021-12-29T23:51:24.000Z" - }, - "end": { - "$date": "2021-12-29T23:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ff7f2252-6de4-4019-b1dd-aa8359f4beaf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-29T23:54:39.000Z" - }, - "end": { - "$date": "2021-12-30T00:41:19.000Z" - }, - "events": [ - { - "uuid": "9451d4a3-bd90-4e07-bb09-27257ea64d8e", - "start": { - "$date": "2021-12-29T23:54:39.000Z" - }, - "end": { - "$date": "2021-12-30T00:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a52123f3-1925-4ab1-8faf-177a2be1871b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T00:26:45.000Z" - }, - "end": { - "$date": "2021-12-30T01:00:02.000Z" - }, - "events": [ - { - "uuid": "1686ffb6-147f-4a89-8a09-42dfdf0adaa1", - "start": { - "$date": "2021-12-30T00:26:45.000Z" - }, - "end": { - "$date": "2021-12-30T01:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1a9375e1-ec5e-4c85-9bd0-fd72c9c9643b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-30T00:41:30.000Z" - }, - "end": { - "$date": "2021-12-30T00:56:10.000Z" - }, - "events": [ - { - "uuid": "a2a0322b-a5e8-4d74-a3e0-f7b8a39fa160", - "start": { - "$date": "2021-12-30T00:41:30.000Z" - }, - "end": { - "$date": "2021-12-30T00:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b273767c-a050-4df5-90dc-b95fa7845734", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-30T00:56:21.000Z" - }, - "end": { - "$date": "2021-12-30T07:23:29.000Z" - }, - "events": [ - { - "uuid": "63d93706-d5c3-4cb9-9023-8350b5e2c316", - "start": { - "$date": "2021-12-30T00:56:21.000Z" - }, - "end": { - "$date": "2021-12-30T07:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "be35723c-6d5d-4d4c-8f78-e60ccb625a84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T01:01:27.000Z" - }, - "end": { - "$date": "2021-12-30T01:56:46.000Z" - }, - "events": [ - { - "uuid": "dd2d4818-ecca-4517-94c9-aa2891fd0830", - "start": { - "$date": "2021-12-30T01:01:27.000Z" - }, - "end": { - "$date": "2021-12-30T01:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "a0dd0169-a273-4867-aa65-e06d436847ff", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T01:05:43.000Z" - }, - "end": { - "$date": "2021-12-30T02:29:44.000Z" - }, - "events": [ - { - "uuid": "f2366e0d-2876-4904-9d3b-86f52a70e925", - "start": { - "$date": "2021-12-30T01:05:43.000Z" - }, - "end": { - "$date": "2021-12-30T02:29:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ed80c39-a343-4c17-8032-461281c92081", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-30T01:10:59.000Z" - }, - "end": { - "$date": "2021-12-30T02:35:53.000Z" - }, - "events": [ - { - "uuid": "2b62a711-4b7e-474d-8431-1c0810cc68c9", - "start": { - "$date": "2021-12-30T01:10:59.000Z" - }, - "end": { - "$date": "2021-12-30T02:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "845ffb09-6302-4a53-badd-a603ee7d9933", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-30T01:14:23.000Z" - }, - "end": { - "$date": "2021-12-30T02:35:11.000Z" - }, - "events": [ - { - "uuid": "ad55bf28-25bf-4fbc-ae8e-8656fe8081c9", - "start": { - "$date": "2021-12-30T01:14:23.000Z" - }, - "end": { - "$date": "2021-12-30T02:35:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "2c2e0085-dc36-433d-9fbd-3bb225db1038", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-30T01:17:22.000Z" - }, - "end": { - "$date": "2021-12-30T01:57:19.000Z" - }, - "events": [ - { - "uuid": "c164527e-a9dd-459a-903a-c3ec250dc35c", - "start": { - "$date": "2021-12-30T01:17:22.000Z" - }, - "end": { - "$date": "2021-12-30T01:57:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2ac082f1-abaf-45cd-afe9-968ef2e68426", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-30T01:18:06.000Z" - }, - "end": { - "$date": "2021-12-30T01:57:08.000Z" - }, - "events": [ - { - "uuid": "4d4fbaa3-4a45-4c95-bd4b-7fb9f7f16cd6", - "start": { - "$date": "2021-12-30T01:18:06.000Z" - }, - "end": { - "$date": "2021-12-30T01:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "06c87738-5daf-418f-8713-d1dfa6a30e9e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-30T01:57:42.000Z" - }, - "end": { - "$date": "2021-12-30T02:53:12.000Z" - }, - "events": [ - { - "uuid": "b6478bea-8cd0-4430-b0ac-14e899639a75", - "start": { - "$date": "2021-12-30T01:57:42.000Z" - }, - "end": { - "$date": "2021-12-30T02:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57ba5913-c4da-4acf-b973-893cacb6af02", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T02:05:43.000Z" - }, - "end": { - "$date": "2021-12-30T02:25:29.000Z" - }, - "events": [ - { - "uuid": "756d36be-2e94-4aef-83dd-de2b375ccb70", - "start": { - "$date": "2021-12-30T02:05:43.000Z" - }, - "end": { - "$date": "2021-12-30T02:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f141de72-91db-4bf4-8edc-f11105ba9dd7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T02:07:05.000Z" - }, - "end": { - "$date": "2021-12-30T05:19:28.000Z" - }, - "events": [ - { - "uuid": "7017d0dc-66d3-4d7c-b46c-528d3cda0eab", - "start": { - "$date": "2021-12-30T02:07:05.000Z" - }, - "end": { - "$date": "2021-12-30T03:57:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c39750ba-96e0-45b8-b902-ca496e57b99a", - "start": { - "$date": "2021-12-30T03:57:05.000Z" - }, - "end": { - "$date": "2021-12-30T04:02:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43d97ab8-1f1c-420b-b756-96f6b7f9e7ca", - "start": { - "$date": "2021-12-30T04:02:05.000Z" - }, - "end": { - "$date": "2021-12-30T04:12:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a838f018-2daa-47fc-b95c-fcbaeaebd77a", - "start": { - "$date": "2021-12-30T04:12:05.000Z" - }, - "end": { - "$date": "2021-12-30T04:18:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "415cae6b-0b73-494d-827e-aa26d36072d5", - "start": { - "$date": "2021-12-30T04:18:05.000Z" - }, - "end": { - "$date": "2021-12-30T04:33:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1aab925-ae77-4b96-8b82-0d671223d4fd", - "start": { - "$date": "2021-12-30T04:33:05.000Z" - }, - "end": { - "$date": "2021-12-30T04:40:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e1247b2-0f2a-479e-ac85-81c020154a31", - "start": { - "$date": "2021-12-30T04:40:05.000Z" - }, - "end": { - "$date": "2021-12-30T04:57:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "00c9cb09-5341-49a4-a9b5-d71ee2e4c234", - "start": { - "$date": "2021-12-30T04:57:05.000Z" - }, - "end": { - "$date": "2021-12-30T05:03:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ba50b31-9c63-403d-b27d-27ab07025838", - "start": { - "$date": "2021-12-30T05:03:05.000Z" - }, - "end": { - "$date": "2021-12-30T05:13:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4baa42ab-0717-4b6e-955a-f8ee3f423415", - "start": { - "$date": "2021-12-30T05:13:05.000Z" - }, - "end": { - "$date": "2021-12-30T05:19:28.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d0bb647-8846-4db1-a9b7-614ae888810b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T02:26:34.000Z" - }, - "end": { - "$date": "2021-12-30T02:40:39.000Z" - }, - "events": [ - { - "uuid": "99fb5c27-f28b-4068-922b-dc8c90d375a8", - "start": { - "$date": "2021-12-30T02:26:34.000Z" - }, - "end": { - "$date": "2021-12-30T02:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6620b68-8c01-4ce4-9bfc-2783e3753428", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T02:45:15.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:16.000Z" - }, - "events": [ - { - "uuid": "9bbc1b2a-6e97-46ee-986d-fb8b0a5b7f0c", - "start": { - "$date": "2021-12-30T02:45:15.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78601247-41e7-4027-9308-cb0baede888e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T02:45:25.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:10.000Z" - }, - "events": [ - { - "uuid": "4ebe5568-6dbe-461c-869a-6fc247252a41", - "start": { - "$date": "2021-12-30T02:45:25.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0b3337d-9954-4035-9944-bf0efa60162d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-30T02:45:23.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:09.000Z" - }, - "events": [ - { - "uuid": "746cbfef-9535-4897-bb48-0b6011faf5bf", - "start": { - "$date": "2021-12-30T02:45:23.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b738c061-ded0-4b6f-bd23-14db4153be50", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-30T02:45:20.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:15.000Z" - }, - "events": [ - { - "uuid": "cc3a9476-1fa4-43e6-ae02-a5b7a8ea43c4", - "start": { - "$date": "2021-12-30T02:45:20.000Z" - }, - "end": { - "$date": "2021-12-30T03:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2c16b3d1-a92f-4738-b9cf-9b44787e9cab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-30T02:53:20.000Z" - }, - "end": { - "$date": "2021-12-30T03:41:49.000Z" - }, - "events": [ - { - "uuid": "c2914ad5-be01-45c8-9c1e-2558a94ec610", - "start": { - "$date": "2021-12-30T02:53:20.000Z" - }, - "end": { - "$date": "2021-12-30T03:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "998ef887-757d-4629-93bf-7490f88955b1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T03:14:47.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:33.000Z" - }, - "events": [ - { - "uuid": "6b6b5756-0915-4c34-b885-77c9ab2af582", - "start": { - "$date": "2021-12-30T03:14:47.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c01c6100-bb2b-4b9c-b9b6-482f378c01a2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-30T03:14:55.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:36.000Z" - }, - "events": [ - { - "uuid": "95621137-d992-4892-a720-23c90a8b886b", - "start": { - "$date": "2021-12-30T03:14:55.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2117d2bb-1eb3-485c-a533-2d1f30281a62", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T03:14:56.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:31.000Z" - }, - "events": [ - { - "uuid": "3bbf985b-b94c-4cb4-8ec9-75ba33c1d955", - "start": { - "$date": "2021-12-30T03:14:56.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "218bbd52-5c56-47ec-8d29-a5a957f9abfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-30T03:14:49.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:42.000Z" - }, - "events": [ - { - "uuid": "4ac47c7d-5085-4903-a9f7-a7e8a7aebabb", - "start": { - "$date": "2021-12-30T03:14:49.000Z" - }, - "end": { - "$date": "2021-12-30T03:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "70d460b8-72f5-49e1-a3c3-f19077489116", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-30T03:42:52.000Z" - }, - "end": { - "$date": "2021-12-30T04:02:00.000Z" - }, - "events": [ - { - "uuid": "9c0002f1-a1e1-4df6-8da5-3783134c2375", - "start": { - "$date": "2021-12-30T03:42:52.000Z" - }, - "end": { - "$date": "2021-12-30T04:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "9d6b070a-934a-4ef1-8fff-f7ec2310d21d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T05:25:40.000Z" - }, - "end": { - "$date": "2021-12-30T05:25:40.000Z" - }, - "events": [ - { - "uuid": "3b704258-81b6-4b1c-80f1-ca59555dddb3", - "start": { - "$date": "2021-12-30T05:25:40.000Z" - }, - "end": { - "$date": "2021-12-30T05:25:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e806c37c-4d07-4abf-ae34-037e5ab65d90", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-30T04:16:00.000Z" - }, - "end": { - "$date": "2021-12-30T04:52:37.000Z" - }, - "events": [ - { - "uuid": "9c0f3d25-f32c-41d8-aae1-f8d48026aa38", - "start": { - "$date": "2021-12-30T04:16:00.000Z" - }, - "end": { - "$date": "2021-12-30T04:52:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "16931083-97a7-4d57-bd18-cf9795cc21b5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-30T04:44:36.000Z" - }, - "end": { - "$date": "2021-12-30T05:08:39.000Z" - }, - "events": [ - { - "uuid": "00c38896-4243-4868-8b6e-e0eb8ebe2c11", - "start": { - "$date": "2021-12-30T04:44:36.000Z" - }, - "end": { - "$date": "2021-12-30T05:08:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "6aff0614-ffc7-468d-b86f-389d821b4b3a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-30T05:52:55.000Z" - }, - "end": { - "$date": "2021-12-30T05:53:15.000Z" - }, - "events": [ - { - "uuid": "5decd021-e232-4097-a071-24bab9058c3e", - "start": { - "$date": "2021-12-30T05:52:55.000Z" - }, - "end": { - "$date": "2021-12-30T05:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "a0dfde7e-8590-4105-95ef-bc21d569297c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T05:19:33.000Z" - }, - "end": { - "$date": "2021-12-30T05:50:14.000Z" - }, - "events": [ - { - "uuid": "b452843a-c73e-449e-9af4-95694c31f6cc", - "start": { - "$date": "2021-12-30T05:19:33.000Z" - }, - "end": { - "$date": "2021-12-30T05:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "f21730c3-cc61-4379-bdbd-2ac334c46b45", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T07:56:57.000Z" - }, - "end": { - "$date": "2021-12-30T07:56:57.000Z" - }, - "events": [ - { - "uuid": "6d8c803d-ca1a-4bc1-9aba-03a54b79fbc7", - "start": { - "$date": "2021-12-30T07:56:57.000Z" - }, - "end": { - "$date": "2021-12-30T07:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb277cb8-1ec2-4d15-9240-dbfa9c104f60", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T05:50:40.000Z" - }, - "end": { - "$date": "2021-12-30T07:25:49.000Z" - }, - "events": [ - { - "uuid": "29d77f1d-8cd5-45a1-835b-ef9b52d035b0", - "start": { - "$date": "2021-12-30T05:50:40.000Z" - }, - "end": { - "$date": "2021-12-30T07:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a05a9174-4c2f-46a3-a603-bd20ca562f50", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-30T12:29:06.000Z" - }, - "end": { - "$date": "2021-12-30T15:24:12.000Z" - }, - "events": [ - { - "uuid": "8fcd7a4c-5d2b-4e00-ab6b-443c5769ea41", - "start": { - "$date": "2021-12-30T12:29:06.000Z" - }, - "end": { - "$date": "2021-12-30T15:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2cde3c3-c2aa-4951-a475-699d15899683", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T16:02:46.000Z" - }, - "end": { - "$date": "2021-12-30T16:15:56.000Z" - }, - "events": [ - { - "uuid": "8bc78ced-1850-4712-a3a6-9baa8b8aec93", - "start": { - "$date": "2021-12-30T16:02:46.000Z" - }, - "end": { - "$date": "2021-12-30T16:15:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a96fab65-b713-4859-a99f-d1c472f21f00", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T16:17:47.000Z" - }, - "end": { - "$date": "2021-12-30T16:39:27.000Z" - }, - "events": [ - { - "uuid": "613c2616-350b-49bb-9d43-dc16a723e9d4", - "start": { - "$date": "2021-12-30T16:17:47.000Z" - }, - "end": { - "$date": "2021-12-30T16:39:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0712f1b-b50d-4b74-a375-d5b6a74d1f1e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T16:42:28.000Z" - }, - "end": { - "$date": "2021-12-30T16:59:43.000Z" - }, - "events": [ - { - "uuid": "08a1e918-d421-4fb2-af8e-6848214ac38c", - "start": { - "$date": "2021-12-30T16:42:28.000Z" - }, - "end": { - "$date": "2021-12-30T16:59:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "80849dc5-af2d-4453-89bd-85c315085bfa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T16:49:04.000Z" - }, - "end": { - "$date": "2021-12-30T17:21:08.000Z" - }, - "events": [ - { - "uuid": "01174d84-94ad-47a0-acc2-aec96b922695", - "start": { - "$date": "2021-12-30T16:49:04.000Z" - }, - "end": { - "$date": "2021-12-30T17:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e67cfc78-7d79-45eb-918d-2ab92880a6e8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T17:21:25.000Z" - }, - "end": { - "$date": "2021-12-30T18:00:30.000Z" - }, - "events": [ - { - "uuid": "6cc83294-54d7-4eb6-b0e2-7b1a58d5502d", - "start": { - "$date": "2021-12-30T17:21:25.000Z" - }, - "end": { - "$date": "2021-12-30T18:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "779370a1-d59c-48a6-bed4-7a5c9abe2ff7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-30T17:28:09.000Z" - }, - "end": { - "$date": "2021-12-30T23:28:05.000Z" - }, - "events": [ - { - "uuid": "c7046ea9-3b55-4d28-8368-72226c5f69ed", - "start": { - "$date": "2021-12-30T17:28:09.000Z" - }, - "end": { - "$date": "2021-12-30T23:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fde3aa62-e8d6-47b6-bea7-5d1d244b19c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-30T17:40:33.000Z" - }, - "end": { - "$date": "2021-12-30T18:20:29.000Z" - }, - "events": [ - { - "uuid": "26291daa-5524-481f-95a6-d55bbad81a32", - "start": { - "$date": "2021-12-30T17:40:33.000Z" - }, - "end": { - "$date": "2021-12-30T18:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2f7f52ef-f438-405e-9349-193fd088ac88", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T17:41:48.000Z" - }, - "end": { - "$date": "2021-12-30T18:20:19.000Z" - }, - "events": [ - { - "uuid": "2903f929-a271-4c4e-9126-9a75c6ec278d", - "start": { - "$date": "2021-12-30T17:41:48.000Z" - }, - "end": { - "$date": "2021-12-30T18:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "9a83df58-9d7e-4452-a8a6-d79479787aad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T18:00:36.000Z" - }, - "end": { - "$date": "2021-12-30T18:08:05.000Z" - }, - "events": [ - { - "uuid": "1ae9a22f-8141-4366-a724-252358c964a0", - "start": { - "$date": "2021-12-30T18:00:36.000Z" - }, - "end": { - "$date": "2021-12-30T18:08:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7ee3e473-dc1c-4611-91dd-3cee9e8aa470", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T18:09:12.000Z" - }, - "end": { - "$date": "2021-12-30T18:55:32.000Z" - }, - "events": [ - { - "uuid": "5e6ccabf-c04f-4ccc-9351-1f3591889a32", - "start": { - "$date": "2021-12-30T18:09:12.000Z" - }, - "end": { - "$date": "2021-12-30T18:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6cfd6a25-63f4-4948-8f8b-f5b9ecf78c4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T18:55:47.000Z" - }, - "end": { - "$date": "2021-12-30T19:02:28.000Z" - }, - "events": [ - { - "uuid": "7e032ff9-0f52-468a-959f-43aafb3aabab", - "start": { - "$date": "2021-12-30T18:55:47.000Z" - }, - "end": { - "$date": "2021-12-30T19:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8a117334-f3f7-4e76-b484-5aa628c31df4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T19:02:38.000Z" - }, - "end": { - "$date": "2021-12-30T19:14:53.000Z" - }, - "events": [ - { - "uuid": "cce1daae-35e0-4c79-a238-3f422174dd24", - "start": { - "$date": "2021-12-30T19:02:38.000Z" - }, - "end": { - "$date": "2021-12-30T19:14:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3bcd66d9-089c-43a2-9f20-e2099951ce0d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-30T19:08:56.000Z" - }, - "end": { - "$date": "2021-12-30T19:24:14.000Z" - }, - "events": [ - { - "uuid": "bcca149c-fed0-4ecb-821a-67067180fdfd", - "start": { - "$date": "2021-12-30T19:08:56.000Z" - }, - "end": { - "$date": "2021-12-30T19:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b4fbfbb4-af60-4c8d-893b-25c904744694", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-30T19:53:16.000Z" - }, - "end": { - "$date": "2021-12-30T21:18:05.000Z" - }, - "events": [ - { - "uuid": "16ab0019-5fcd-4170-bd1b-c04e17995d9c", - "start": { - "$date": "2021-12-30T19:53:16.000Z" - }, - "end": { - "$date": "2021-12-30T21:18:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "aa54e412-9a88-404a-8be0-626d1c37ed77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-30T20:09:26.000Z" - }, - "end": { - "$date": "2021-12-30T23:14:19.000Z" - }, - "events": [ - { - "uuid": "c8973d02-2278-41a5-b2fe-e6008d2130f0", - "start": { - "$date": "2021-12-30T20:09:26.000Z" - }, - "end": { - "$date": "2021-12-30T23:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "9ddf2985-3f07-4ba3-8dc3-95cb8fe03c0e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-30T20:22:23.000Z" - }, - "end": { - "$date": "2021-12-31T00:42:55.000Z" - }, - "events": [ - { - "uuid": "f11e746a-bf16-448b-9f98-482c75652587", - "start": { - "$date": "2021-12-30T20:22:23.000Z" - }, - "end": { - "$date": "2021-12-31T00:42:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "a15dce14-9334-4077-b90a-0aa9db247c94", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-30T20:27:48.000Z" - }, - "end": { - "$date": "2021-12-30T23:25:55.000Z" - }, - "events": [ - { - "uuid": "576bc596-e304-426a-906b-c8cb59d6e193", - "start": { - "$date": "2021-12-30T20:27:48.000Z" - }, - "end": { - "$date": "2021-12-30T23:25:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "a3c94140-f090-41eb-8379-8ed7957d58c3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-30T23:12:52.000Z" - }, - "end": { - "$date": "2021-12-30T23:35:37.000Z" - }, - "events": [ - { - "uuid": "8764faa9-6295-4d6e-acea-6ee152f1a1ea", - "start": { - "$date": "2021-12-30T23:12:52.000Z" - }, - "end": { - "$date": "2021-12-30T23:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a4014907-be1d-4282-9245-a41a5bcda0a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-31T00:36:25.000Z" - }, - "end": { - "$date": "2021-12-31T00:56:55.000Z" - }, - "events": [ - { - "uuid": "1dcfc726-e768-4460-b1e9-446d61bffc7c", - "start": { - "$date": "2021-12-31T00:36:25.000Z" - }, - "end": { - "$date": "2021-12-31T00:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "038442bb-6059-4417-ae24-aec7dea78572", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-31T00:45:07.000Z" - }, - "end": { - "$date": "2021-12-31T02:28:51.000Z" - }, - "events": [ - { - "uuid": "3a238615-b72a-4f2f-98c0-7b5f846d3ed4", - "start": { - "$date": "2021-12-31T00:45:07.000Z" - }, - "end": { - "$date": "2021-12-31T01:27:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "716a2aeb-b1a2-4861-90be-7a0430cbaacc", - "start": { - "$date": "2021-12-31T01:27:07.000Z" - }, - "end": { - "$date": "2021-12-31T01:49:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df7b3483-4fca-44ab-a9ad-97c0d9e51916", - "start": { - "$date": "2021-12-31T01:49:07.000Z" - }, - "end": { - "$date": "2021-12-31T02:28:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "4cf315d6-d53d-48d6-80bf-0c4ea79646b0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-31T02:11:12.000Z" - }, - "end": { - "$date": "2021-12-31T05:53:08.000Z" - }, - "events": [ - { - "uuid": "ff916ef7-496c-4734-b4f0-ff647359444b", - "start": { - "$date": "2021-12-31T02:11:12.000Z" - }, - "end": { - "$date": "2021-12-31T03:51:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7da04a88-54a1-409e-a4ca-0b9404d920e8", - "start": { - "$date": "2021-12-31T03:51:12.000Z" - }, - "end": { - "$date": "2021-12-31T03:56:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b842345b-9351-4425-8e66-d2fccb6d755e", - "start": { - "$date": "2021-12-31T03:56:12.000Z" - }, - "end": { - "$date": "2021-12-31T04:06:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1379f9f-2fee-4c86-bca8-c9c8345d4641", - "start": { - "$date": "2021-12-31T04:06:12.000Z" - }, - "end": { - "$date": "2021-12-31T06:40:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d448f21-5163-4506-bc58-91ca0f2b767a", - "start": { - "$date": "2021-12-31T06:40:12.000Z" - }, - "end": { - "$date": "2021-12-31T06:43:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99842339-697a-455d-8915-397aea9ecc0f", - "start": { - "$date": "2021-12-31T06:43:12.000Z" - }, - "end": { - "$date": "2021-12-31T07:12:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a38d6d0-21b5-4e78-b67c-422b33160663", - "start": { - "$date": "2021-12-31T07:12:12.000Z" - }, - "end": { - "$date": "2021-12-31T05:53:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "c0d663c9-3e42-4f2f-9265-680242c4234c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-31T00:48:11.000Z" - }, - "end": { - "$date": "2021-12-31T01:07:50.000Z" - }, - "events": [ - { - "uuid": "57925a08-0ce4-442e-8138-c9c485a18274", - "start": { - "$date": "2021-12-31T00:48:11.000Z" - }, - "end": { - "$date": "2021-12-31T01:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "195e210c-48fd-406f-b9a8-ddd8027e8682", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-31T00:57:00.000Z" - }, - "end": { - "$date": "2021-12-31T01:39:11.000Z" - }, - "events": [ - { - "uuid": "04add844-ebf4-4d0a-b00a-0b0f52b52573", - "start": { - "$date": "2021-12-31T00:57:00.000Z" - }, - "end": { - "$date": "2021-12-31T01:39:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "69f9050d-0758-488e-ac3b-e8582bc0a042", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-30T22:54:51.000Z" - }, - "end": { - "$date": "2021-12-31T01:57:11.000Z" - }, - "events": [ - { - "uuid": "be8243f8-984b-4178-8860-08d2fa67753c", - "start": { - "$date": "2021-12-30T22:54:51.000Z" - }, - "end": { - "$date": "2021-12-31T01:57:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c594ba2c-4f6a-47a1-8b58-89fae6f488ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-31T01:44:42.000Z" - }, - "end": { - "$date": "2021-12-31T03:49:42.000Z" - }, - "events": [ - { - "uuid": "1ef1a292-d0b9-4cbe-a939-3914b597687c", - "start": { - "$date": "2021-12-31T01:44:42.000Z" - }, - "end": { - "$date": "2021-12-31T02:33:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc6922b6-6c72-4fb1-aa57-5ea72a6e7227", - "start": { - "$date": "2021-12-31T02:33:42.000Z" - }, - "end": { - "$date": "2021-12-31T02:34:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a85e1dab-18d4-4589-9998-677a483bde32", - "start": { - "$date": "2021-12-31T02:34:42.000Z" - }, - "end": { - "$date": "2021-12-31T02:44:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64d22fa2-2d1b-473d-8650-fd6b7f1b9e0a", - "start": { - "$date": "2021-12-31T02:44:42.000Z" - }, - "end": { - "$date": "2021-12-31T02:49:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e48f9f7f-34d1-484c-ad38-4acf82e7248d", - "start": { - "$date": "2021-12-31T02:49:42.000Z" - }, - "end": { - "$date": "2021-12-31T03:08:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06df2fbe-a8e2-4a51-bac8-62098de0a5b9", - "start": { - "$date": "2021-12-31T03:08:42.000Z" - }, - "end": { - "$date": "2021-12-31T03:49:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "004f0421-fb42-4980-8d68-0063a88e9815", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-31T01:50:54.000Z" - }, - "end": { - "$date": "2021-12-31T02:29:10.000Z" - }, - "events": [ - { - "uuid": "081c492c-93f3-4623-ab8e-9e784912de6e", - "start": { - "$date": "2021-12-31T01:50:54.000Z" - }, - "end": { - "$date": "2021-12-31T02:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c3507ce-76db-4cbf-9f7a-d4ee06af05cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-31T02:02:06.000Z" - }, - "end": { - "$date": "2021-12-31T02:05:27.000Z" - }, - "events": [ - { - "uuid": "c51e5539-bcee-400b-975b-39ecb61af703", - "start": { - "$date": "2021-12-31T02:02:06.000Z" - }, - "end": { - "$date": "2021-12-31T02:05:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9830f60c-4f7d-4b52-883a-105784fc6e0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-31T02:05:47.000Z" - }, - "end": { - "$date": "2021-12-31T02:08:37.000Z" - }, - "events": [ - { - "uuid": "3bc6fd09-7273-41c8-ace5-a3a95845f02a", - "start": { - "$date": "2021-12-31T02:05:47.000Z" - }, - "end": { - "$date": "2021-12-31T02:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "324a0a96-c4cf-4722-b4a1-1bd14ef03977", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-31T02:10:32.000Z" - }, - "end": { - "$date": "2021-12-31T02:48:29.000Z" - }, - "events": [ - { - "uuid": "804ace10-a638-4e9f-a1ef-e78b56318fb7", - "start": { - "$date": "2021-12-31T02:10:32.000Z" - }, - "end": { - "$date": "2021-12-31T02:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "505501a4-537e-45c7-b460-0abc3640b00b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2021-12-31T02:18:14.000Z" - }, - "end": { - "$date": "2021-12-31T03:21:33.000Z" - }, - "events": [ - { - "uuid": "25e09cd6-fca1-41ab-8a14-c3406c3e602e", - "start": { - "$date": "2021-12-31T02:18:14.000Z" - }, - "end": { - "$date": "2021-12-31T03:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d04ce649-f061-4e80-a62d-42e047f49dd8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-31T02:20:30.000Z" - }, - "end": { - "$date": "2021-12-31T03:44:07.000Z" - }, - "events": [ - { - "uuid": "549e585c-536b-4dce-941e-2a73aa80af11", - "start": { - "$date": "2021-12-31T02:20:30.000Z" - }, - "end": { - "$date": "2021-12-31T03:44:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "39a54a38-a66c-4aac-b8cd-cd61b041134f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-31T02:29:30.000Z" - }, - "end": { - "$date": "2021-12-31T03:33:22.000Z" - }, - "events": [ - { - "uuid": "5aad21bd-42ec-4055-82c1-d53cdd3aec7c", - "start": { - "$date": "2021-12-31T02:29:30.000Z" - }, - "end": { - "$date": "2021-12-31T03:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7240c500-cb5a-476c-801b-8f3959c5c494", - "uuid": "bda9d43a-5a82-4a06-8e91-39f05dfdf019", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-31T02:37:22.000Z" - }, - "end": { - "$date": "2021-12-31T02:41:38.000Z" - }, - "events": [ - { - "uuid": "cb261407-c221-4915-b061-4b2180bd998b", - "start": { - "$date": "2021-12-31T02:37:22.000Z" - }, - "end": { - "$date": "2021-12-31T02:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0796bca3-a608-42aa-896f-aa1ffb7a2bb9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-31T02:48:44.000Z" - }, - "end": { - "$date": "2021-12-31T07:59:26.000Z" - }, - "events": [ - { - "uuid": "20a557fa-7048-4902-882c-363675a9312a", - "start": { - "$date": "2021-12-31T02:48:44.000Z" - }, - "end": { - "$date": "2021-12-31T03:18:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fd4c099d-e0fd-4819-ac0d-fda6930bf830", - "start": { - "$date": "2021-12-31T03:18:44.000Z" - }, - "end": { - "$date": "2021-12-31T03:23:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be8f8aea-ecc2-49c8-876b-c49e76a44f26", - "start": { - "$date": "2021-12-31T03:23:44.000Z" - }, - "end": { - "$date": "2021-12-31T03:33:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8dbf2523-f97b-4d7e-9732-42070e21d45c", - "start": { - "$date": "2021-12-31T03:33:44.000Z" - }, - "end": { - "$date": "2021-12-31T03:38:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9e4c0741-d3b7-41f5-8768-e141002b839b", - "start": { - "$date": "2021-12-31T03:38:44.000Z" - }, - "end": { - "$date": "2021-12-31T07:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "211f7c03-2e6e-44a2-b48f-832d7bb03c26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-31T03:15:29.000Z" - }, - "end": { - "$date": "2021-12-31T03:32:59.000Z" - }, - "events": [ - { - "uuid": "9707bd92-024b-4f75-a092-c34e75cd0a1a", - "start": { - "$date": "2021-12-31T03:15:29.000Z" - }, - "end": { - "$date": "2021-12-31T03:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b4504100-d25c-4ab1-b6c8-9e8cea954a1f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-31T03:21:36.000Z" - }, - "end": { - "$date": "2021-12-31T03:55:44.000Z" - }, - "events": [ - { - "uuid": "4b0b9eb1-b212-48bd-8f9c-b3fe4184241a", - "start": { - "$date": "2021-12-31T03:21:36.000Z" - }, - "end": { - "$date": "2021-12-31T03:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "513e3f0c-4e84-49b2-a22b-0d2440c9bc19", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-31T06:04:34.000Z" - }, - "end": { - "$date": "2021-12-31T06:23:48.000Z" - }, - "events": [ - { - "uuid": "5d54fdd4-857e-40c9-be32-4a1963a47b90", - "start": { - "$date": "2021-12-31T06:04:34.000Z" - }, - "end": { - "$date": "2021-12-31T06:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "db97480b-3395-467c-b949-7d2c32b6edaf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-31T04:00:35.000Z" - }, - "end": { - "$date": "2021-12-31T06:04:51.000Z" - }, - "events": [ - { - "uuid": "aaf57f50-bdec-4ad9-bf0a-73259fe5f2c9", - "start": { - "$date": "2021-12-31T04:00:35.000Z" - }, - "end": { - "$date": "2021-12-31T06:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1488f91c-d199-46fb-845c-81e0d49e2c40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-31T04:01:32.000Z" - }, - "end": { - "$date": "2021-12-31T06:04:38.000Z" - }, - "events": [ - { - "uuid": "4e04719f-7d7c-48dd-8d3c-ffb138194558", - "start": { - "$date": "2021-12-31T04:01:32.000Z" - }, - "end": { - "$date": "2021-12-31T06:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "244083e2-7efc-4adf-bbee-9e17c9dd4fe2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2021-12-31T01:44:42.000Z" - }, - "end": { - "$date": "2021-12-31T05:06:08.000Z" - }, - "events": [ - { - "uuid": "7f0953f8-d804-48f4-9100-20ab91ce3e21", - "start": { - "$date": "2021-12-31T01:44:42.000Z" - }, - "end": { - "$date": "2021-12-31T05:06:08.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "4e04234a-ac57-4fba-a490-5dcd61dcfe25", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2021-12-31T06:05:36.000Z" - }, - "end": { - "$date": "2021-12-31T06:39:13.000Z" - }, - "events": [ - { - "uuid": "888f5e11-caac-46b8-acbe-0b23d659bfcb", - "start": { - "$date": "2021-12-31T06:05:36.000Z" - }, - "end": { - "$date": "2021-12-31T06:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c29a0e30-62be-4471-ad40-959f89f4091f", - "uuid": "9713a501-26f4-471f-be35-84043208bccc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-31T06:43:02.000Z" - }, - "end": { - "$date": "2021-12-31T06:44:17.000Z" - }, - "events": [ - { - "uuid": "a688f707-6374-4f61-8bd9-a753b4e25ff3", - "start": { - "$date": "2021-12-31T06:43:02.000Z" - }, - "end": { - "$date": "2021-12-31T06:44:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "09c742fb-d409-4c49-a291-6634ef15ca14", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2021-12-31T06:44:22.000Z" - }, - "end": { - "$date": "2021-12-31T07:27:48.000Z" - }, - "events": [ - { - "uuid": "319d3a76-bb58-4bb4-b45c-724288c8a23e", - "start": { - "$date": "2021-12-31T06:44:22.000Z" - }, - "end": { - "$date": "2021-12-31T07:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "5dc96788-98d6-4580-855c-81a7a7a32720", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-31T07:54:55.000Z" - }, - "end": { - "$date": "2021-12-31T09:12:53.000Z" - }, - "events": [ - { - "uuid": "cc3c4262-a416-4ac3-a23f-58bbfa8cf9bd", - "start": { - "$date": "2021-12-31T07:54:55.000Z" - }, - "end": { - "$date": "2021-12-31T09:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a0e9caab-243b-4c61-808e-2174d269405d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-31T12:54:38.000Z" - }, - "end": { - "$date": "2021-12-31T14:27:54.000Z" - }, - "events": [ - { - "uuid": "63b1ed37-aeed-479a-a3f2-1ace1ebb924a", - "start": { - "$date": "2021-12-31T12:54:38.000Z" - }, - "end": { - "$date": "2021-12-31T14:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b758e8c1-ec9a-4942-8ab0-e7a7cffbc1e0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-31T14:55:35.000Z" - }, - "end": { - "$date": "2021-12-31T17:39:43.000Z" - }, - "events": [ - { - "uuid": "ff4ecc58-8eeb-486d-b325-9a4e9e1b6e4a", - "start": { - "$date": "2021-12-31T14:55:35.000Z" - }, - "end": { - "$date": "2021-12-31T16:43:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f29e3729-cb5f-433b-834d-5654ded26ae0", - "start": { - "$date": "2021-12-31T16:43:35.000Z" - }, - "end": { - "$date": "2021-12-31T17:15:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a3938fc0-01da-4b64-8bdc-81e9ac4a35c6", - "start": { - "$date": "2021-12-31T17:15:35.000Z" - }, - "end": { - "$date": "2021-12-31T17:39:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9107043f-a3a1-42c0-83de-03b5a71f8d44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-31T20:11:19.000Z" - }, - "end": { - "$date": "2021-12-31T20:36:38.000Z" - }, - "events": [ - { - "uuid": "fce592b4-ce26-439d-8001-14e68eb2e70a", - "start": { - "$date": "2021-12-31T20:11:19.000Z" - }, - "end": { - "$date": "2021-12-31T20:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "88c2acfd-0897-4155-8d85-ccc26f9dad36", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-01T08:36:12.000Z" - }, - "end": { - "$date": "2022-01-01T08:55:43.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-01T08:36:12.000Z" - }, - "end": { - "$date": "2022-01-01T08:55:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40ae1638-666a-437a-bd71-9ed9312b2d91", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2021-12-31T16:52:56.000Z" - }, - "end": { - "$date": "2021-12-31T17:23:29.000Z" - }, - "events": [ - { - "uuid": "e6985ed5-2b7c-485b-bd1a-fd6b0b228048", - "start": { - "$date": "2021-12-31T16:52:56.000Z" - }, - "end": { - "$date": "2021-12-31T17:23:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b3cd35b0-35fe-4a2b-bb0b-1f0ec27e14c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-31T20:36:43.000Z" - }, - "end": { - "$date": "2021-12-31T21:43:25.000Z" - }, - "events": [ - { - "uuid": "a45a2e61-e1d4-45bc-a7d3-04b10461fd37", - "start": { - "$date": "2021-12-31T20:36:43.000Z" - }, - "end": { - "$date": "2021-12-31T21:43:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "7ad46f92-fdb2-407c-888c-1accfd66a296", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2021-12-31T21:19:21.000Z" - }, - "end": { - "$date": "2022-01-01T00:59:12.000Z" - }, - "events": [ - { - "uuid": "fbb6fd71-b15b-466d-9465-fb2d113756ff", - "start": { - "$date": "2021-12-31T21:19:21.000Z" - }, - "end": { - "$date": "2022-01-01T00:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "47745692-0536-42fe-a016-5393b8ccacb6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2021-12-31T21:27:42.000Z" - }, - "end": { - "$date": "2021-12-31T21:32:16.000Z" - }, - "events": [ - { - "uuid": "fbbdf581-7bbd-493a-bee6-67f9d5348544", - "start": { - "$date": "2021-12-31T21:27:42.000Z" - }, - "end": { - "$date": "2021-12-31T21:32:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "581d00b5-f6f7-4735-a557-2be60a6cf412", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2021-12-31T23:34:16.000Z" - }, - "end": { - "$date": "2022-01-01T00:39:04.000Z" - }, - "events": [ - { - "uuid": "b2d62479-e840-4c66-9319-9797819b70e9", - "start": { - "$date": "2021-12-31T23:34:16.000Z" - }, - "end": { - "$date": "2022-01-01T00:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5058c880-c603-41aa-836c-8300b2a0b2c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-01T00:03:26.000Z" - }, - "end": { - "$date": "2022-01-01T00:42:22.000Z" - }, - "events": [ - { - "uuid": "2d7fcc43-b0b2-440d-b235-31d6f49c10ce", - "start": { - "$date": "2022-01-01T00:03:26.000Z" - }, - "end": { - "$date": "2022-01-01T00:42:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a284654a-de16-4620-855a-fc81f91da42e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-01T00:04:18.000Z" - }, - "end": { - "$date": "2022-01-01T00:42:20.000Z" - }, - "events": [ - { - "uuid": "933305a1-c503-4e3e-9e22-b1d4aea6f794", - "start": { - "$date": "2022-01-01T00:04:18.000Z" - }, - "end": { - "$date": "2022-01-01T00:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c8adbde7-2e53-498b-9e8a-ddbe00c790f8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-01T00:07:49.000Z" - }, - "end": { - "$date": "2022-01-01T00:42:04.000Z" - }, - "events": [ - { - "uuid": "0181c061-3649-4785-a6bb-f4baf0007e6b", - "start": { - "$date": "2022-01-01T00:07:49.000Z" - }, - "end": { - "$date": "2022-01-01T00:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "ed569e14-6351-4568-9882-c8114ed2fbe2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T00:52:54.000Z" - }, - "end": { - "$date": "2022-01-01T01:09:45.000Z" - }, - "events": [ - { - "uuid": "27c0fa43-cc48-4b16-827f-2f6d914c797e", - "start": { - "$date": "2022-01-01T00:52:54.000Z" - }, - "end": { - "$date": "2022-01-01T01:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "72d92bab-525b-4db5-807a-3706d3c1e52c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-01T00:55:21.000Z" - }, - "end": { - "$date": "2022-01-01T01:06:08.000Z" - }, - "events": [ - { - "uuid": "825415d0-78b4-48e1-8ef2-b22ad6e2b3b0", - "start": { - "$date": "2022-01-01T00:55:21.000Z" - }, - "end": { - "$date": "2022-01-01T01:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "22cd26c9-7f51-4043-ba0b-420cf933599b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-01T01:06:13.000Z" - }, - "end": { - "$date": "2022-01-01T01:51:35.000Z" - }, - "events": [ - { - "uuid": "2286509a-6506-41e6-8a1a-adea7afc3acc", - "start": { - "$date": "2022-01-01T01:06:13.000Z" - }, - "end": { - "$date": "2022-01-01T01:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "80de868a-7047-4635-9b09-165311360ca3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2021-12-31T22:19:22.000Z" - }, - "end": { - "$date": "2022-01-01T04:07:59.000Z" - }, - "events": [ - { - "uuid": "675b6240-6f12-481e-8679-dde61b36a1d7", - "start": { - "$date": "2021-12-31T22:19:22.000Z" - }, - "end": { - "$date": "2022-01-01T04:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "486cb62b-7b23-47f2-b54f-ab1a36eb391d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-01T01:55:17.000Z" - }, - "end": { - "$date": "2022-01-01T07:37:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-01T01:55:17.000Z" - }, - "end": { - "$date": "2022-01-01T07:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c4c429a9-e4d0-486e-a5b6-a97d1725df73", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-01T03:02:01.000Z" - }, - "end": { - "$date": "2022-01-01T03:28:37.000Z" - }, - "events": [ - { - "uuid": "a6d5d64d-eab7-471c-a28d-1e4bae971eb3", - "start": { - "$date": "2022-01-01T03:02:01.000Z" - }, - "end": { - "$date": "2022-01-01T03:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "b3e20d39-709d-4bad-b27f-4719ebaeb382", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T03:47:45.000Z" - }, - "end": { - "$date": "2022-01-01T05:01:33.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-01T03:47:45.000Z" - }, - "end": { - "$date": "2022-01-01T05:01:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7ceb4518-1942-4130-8292-101200d76332", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-01T04:08:19.000Z" - }, - "end": { - "$date": "2022-01-01T04:13:15.000Z" - }, - "events": [ - { - "uuid": "86e12648-e9df-4637-a484-c99aa304cd95", - "start": { - "$date": "2022-01-01T04:08:19.000Z" - }, - "end": { - "$date": "2022-01-01T04:13:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9ff4a933-d791-4be6-a5e0-7e150c47cf60", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-01T04:13:25.000Z" - }, - "end": { - "$date": "2022-01-01T10:05:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-01T04:13:25.000Z" - }, - "end": { - "$date": "2022-01-01T10:05:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "90d2f766-b091-47c7-b169-3deecd8f6961", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-01T04:47:29.000Z" - }, - "end": { - "$date": "2022-01-01T06:05:39.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-01T04:47:29.000Z" - }, - "end": { - "$date": "2022-01-01T06:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "2a87cb89-c599-4b2a-9db8-ac3d86de81f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-01T08:03:05.000Z" - }, - "end": { - "$date": "2022-01-01T08:53:55.000Z" - }, - "events": [ - { - "uuid": "cc0884a0-9cc2-48d6-8cb5-4b666afd0fac", - "start": { - "$date": "2022-01-01T08:03:05.000Z" - }, - "end": { - "$date": "2022-01-01T08:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e9c0f255-9e6f-4e84-ae31-0c0fc39364e2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-01T08:21:16.000Z" - }, - "end": { - "$date": "2022-01-01T08:26:19.000Z" - }, - "events": [ - { - "uuid": "a7c7e5a5-a99d-400e-b71a-09285a75365e", - "start": { - "$date": "2022-01-01T08:21:16.000Z" - }, - "end": { - "$date": "2022-01-01T08:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "631cbf0e-4c71-4c3d-9c4c-4866fbd76774", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T15:47:44.000Z" - }, - "end": { - "$date": "2022-01-01T15:51:49.000Z" - }, - "events": [ - { - "uuid": "b3160d15-eb86-42b9-9690-422aaaab7c4a", - "start": { - "$date": "2022-01-01T15:47:44.000Z" - }, - "end": { - "$date": "2022-01-01T15:51:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "169e26dd-06a6-40f0-a287-731afb281873", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T15:53:50.000Z" - }, - "end": { - "$date": "2022-01-01T15:56:55.000Z" - }, - "events": [ - { - "uuid": "c771384b-6915-4911-9999-b6663e9d88c9", - "start": { - "$date": "2022-01-01T15:53:50.000Z" - }, - "end": { - "$date": "2022-01-01T15:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "8e8f331a-2670-41f5-af20-628ad1fa4567", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T15:58:41.000Z" - }, - "end": { - "$date": "2022-01-01T16:01:05.000Z" - }, - "events": [ - { - "uuid": "9f3bdc0a-58b7-4807-9e62-424ec0739e60", - "start": { - "$date": "2022-01-01T15:58:41.000Z" - }, - "end": { - "$date": "2022-01-01T16:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "1659fd50-7057-4df0-981e-5a2bec34c6fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-01T16:25:38.000Z" - }, - "end": { - "$date": "2022-01-01T17:56:29.000Z" - }, - "events": [ - { - "uuid": "0de1c1a0-26d4-4853-b333-b032b90a9f10", - "start": { - "$date": "2022-01-01T16:25:38.000Z" - }, - "end": { - "$date": "2022-01-01T17:56:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "edae09ba-8784-4c1a-a452-081bac74adb0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-01T16:46:26.000Z" - }, - "end": { - "$date": "2022-01-01T18:50:37.000Z" - }, - "events": [ - { - "uuid": "d916f8f1-135a-4262-96eb-b8ed7088df26", - "start": { - "$date": "2022-01-01T16:46:26.000Z" - }, - "end": { - "$date": "2022-01-01T18:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e049444a-1b07-498c-a59e-0e47dd6c92ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-01T17:16:36.000Z" - }, - "end": { - "$date": "2022-01-01T18:34:46.000Z" - }, - "events": [ - { - "uuid": "48dfb8fe-00ec-4f8a-ae85-bc0e1fe5cae7", - "start": { - "$date": "2022-01-01T17:16:36.000Z" - }, - "end": { - "$date": "2022-01-01T18:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "126a8ff4-617a-4c90-87eb-a5108023358a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-01T17:18:11.000Z" - }, - "end": { - "$date": "2022-01-01T18:31:05.000Z" - }, - "events": [ - { - "uuid": "ebb0e4fc-ffab-45ce-906f-b4336374afe0", - "start": { - "$date": "2022-01-01T17:18:11.000Z" - }, - "end": { - "$date": "2022-01-01T18:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "66132d92-6823-415b-8351-430a848e178d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-01T17:19:52.000Z" - }, - "end": { - "$date": "2022-01-01T18:36:34.000Z" - }, - "events": [ - { - "uuid": "3ffcb075-56d7-492f-a3ed-0eefbacb22a6", - "start": { - "$date": "2022-01-01T17:19:52.000Z" - }, - "end": { - "$date": "2022-01-01T18:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e3278114-ac99-4a6c-bfa1-29b76ae06e7d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-01T17:32:49.000Z" - }, - "end": { - "$date": "2022-01-01T18:32:28.000Z" - }, - "events": [ - { - "uuid": "da24dc81-16a7-4398-8808-75cd4ceaabda", - "start": { - "$date": "2022-01-01T17:32:49.000Z" - }, - "end": { - "$date": "2022-01-01T18:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ace7cfd-2ac7-467b-ab15-a55ef5767f85", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-01T17:56:43.000Z" - }, - "end": { - "$date": "2022-01-01T18:53:30.000Z" - }, - "events": [ - { - "uuid": "6b71f5fa-b86e-49a0-b376-7ef4ed2ee743", - "start": { - "$date": "2022-01-01T17:56:43.000Z" - }, - "end": { - "$date": "2022-01-01T18:53:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "30ad197a-44d6-425a-bd0d-5a21864f63a0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-01T18:52:11.000Z" - }, - "end": { - "$date": "2022-01-02T04:10:31.000Z" - }, - "events": [ - { - "uuid": "fa7eb1af-b4bc-4c06-8144-6b2aa8f824d2", - "start": { - "$date": "2022-01-01T18:52:11.000Z" - }, - "end": { - "$date": "2022-01-02T00:51:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5b8ea64-7ff5-451b-b632-8eb7f0fdbd7a", - "start": { - "$date": "2022-01-02T00:51:11.000Z" - }, - "end": { - "$date": "2022-01-02T00:55:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6894b788-a1d3-4eb6-a5fe-3f4915827529", - "start": { - "$date": "2022-01-02T00:55:11.000Z" - }, - "end": { - "$date": "2022-01-02T01:41:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "209076ab-18ee-4068-80b0-c5c2245e5669", - "start": { - "$date": "2022-01-02T01:41:11.000Z" - }, - "end": { - "$date": "2022-01-02T01:42:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36fb5550-9121-4e39-937c-b2a801296aa4", - "start": { - "$date": "2022-01-02T01:42:11.000Z" - }, - "end": { - "$date": "2022-01-02T01:52:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b3450273-6a79-42ae-8867-02abebdc4ab6", - "start": { - "$date": "2022-01-02T01:52:11.000Z" - }, - "end": { - "$date": "2022-01-02T01:54:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "38367245-f349-4418-9dcd-b99bfb6604ab", - "start": { - "$date": "2022-01-02T01:54:11.000Z" - }, - "end": { - "$date": "2022-01-02T04:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "73562f28-2fa8-4462-a2c6-6a1489944013", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-01T18:58:15.000Z" - }, - "end": { - "$date": "2022-01-01T19:15:11.000Z" - }, - "events": [ - { - "uuid": "d18b4528-9ada-4d97-bb8b-c94ac6e8a5c2", - "start": { - "$date": "2022-01-01T18:58:15.000Z" - }, - "end": { - "$date": "2022-01-01T19:15:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "fcc39dd4-d6f8-4b5c-ade0-4944c2570651", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-01T19:20:31.000Z" - }, - "end": { - "$date": "2022-01-01T21:58:13.000Z" - }, - "events": [ - { - "uuid": "1136072b-68f7-4a0a-bd73-cbdab02e98e8", - "start": { - "$date": "2022-01-01T19:20:31.000Z" - }, - "end": { - "$date": "2022-01-01T21:10:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7bd8df3-e1bb-4a3e-ab75-36e051628953", - "start": { - "$date": "2022-01-01T21:10:31.000Z" - }, - "end": { - "$date": "2022-01-01T21:21:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "021e788a-800b-4fdb-b9b7-8b9d81a71560", - "start": { - "$date": "2022-01-01T21:21:31.000Z" - }, - "end": { - "$date": "2022-01-01T21:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "bcdfd757-c541-4d7c-89a5-ea558000213b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-01T19:22:33.000Z" - }, - "end": { - "$date": "2022-01-01T21:58:36.000Z" - }, - "events": [ - { - "uuid": "b12b140d-7283-4196-8fc9-2a8cd236c6aa", - "start": { - "$date": "2022-01-01T19:22:33.000Z" - }, - "end": { - "$date": "2022-01-01T21:12:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50bd4ebe-a4e7-4d0d-83e4-de193b4086e7", - "start": { - "$date": "2022-01-01T21:12:33.000Z" - }, - "end": { - "$date": "2022-01-01T21:18:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e988171-4159-43fb-a12f-23c4881ae2a1", - "start": { - "$date": "2022-01-01T21:18:33.000Z" - }, - "end": { - "$date": "2022-01-01T21:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "973f23fd-3de3-4a07-8c24-51bb3337c0a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-01T23:27:34.000Z" - }, - "end": { - "$date": "2022-01-01T23:27:34.000Z" - }, - "events": [ - { - "uuid": "58b14aff-2c08-4a0b-bf85-9b1755f2683a", - "start": { - "$date": "2022-01-01T23:27:34.000Z" - }, - "end": { - "$date": "2022-01-01T23:27:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "09c61626-d5d2-45bf-a5eb-ae76a4fa73a2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T22:10:57.000Z" - }, - "end": { - "$date": "2022-01-01T22:30:45.000Z" - }, - "events": [ - { - "uuid": "398db518-44f5-402b-ae6e-787dee38a306", - "start": { - "$date": "2022-01-01T22:10:57.000Z" - }, - "end": { - "$date": "2022-01-01T22:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "cfebd6f8-50c6-4a02-a93b-cbc689de70f6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-01T22:55:38.000Z" - }, - "end": { - "$date": "2022-01-01T23:05:05.000Z" - }, - "events": [ - { - "uuid": "ff606250-68a8-4f6c-9eb5-e79a0be176f1", - "start": { - "$date": "2022-01-01T22:55:38.000Z" - }, - "end": { - "$date": "2022-01-01T23:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c2ec8b2-5467-4a96-9db8-c3bba9944ee8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T01:05:16.000Z" - }, - "end": { - "$date": "2022-01-02T05:06:03.000Z" - }, - "events": [ - { - "uuid": "dd6c44d9-a05c-46e6-9c6f-934e9db0b64e", - "start": { - "$date": "2022-01-02T01:05:16.000Z" - }, - "end": { - "$date": "2022-01-02T02:22:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d532dddf-ebfd-4b4f-95ff-6adc4fe942bb", - "start": { - "$date": "2022-01-02T02:22:16.000Z" - }, - "end": { - "$date": "2022-01-02T02:24:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "441d8bfa-3597-4289-85a4-92d5a82f7578", - "start": { - "$date": "2022-01-02T02:24:16.000Z" - }, - "end": { - "$date": "2022-01-02T02:43:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4992507b-cb94-4250-96a2-03744f3cdf2d", - "start": { - "$date": "2022-01-02T02:43:16.000Z" - }, - "end": { - "$date": "2022-01-02T02:51:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8c70048-5ee2-4c6b-a5fb-b5a1e79d406a", - "start": { - "$date": "2022-01-02T02:51:16.000Z" - }, - "end": { - "$date": "2022-01-02T03:27:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c12e0be-7caf-46c5-b351-22b060bc1e99", - "start": { - "$date": "2022-01-02T03:27:16.000Z" - }, - "end": { - "$date": "2022-01-02T03:29:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fcb3fc91-1fcf-4d1a-b9e3-5e1262c815d1", - "start": { - "$date": "2022-01-02T03:29:16.000Z" - }, - "end": { - "$date": "2022-01-02T03:39:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5753b371-54b1-43eb-98a9-5d01b3b949fa", - "start": { - "$date": "2022-01-02T03:39:16.000Z" - }, - "end": { - "$date": "2022-01-02T04:30:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "53345993-9ab8-4ab7-8191-0a27b5b0689c", - "start": { - "$date": "2022-01-02T04:30:16.000Z" - }, - "end": { - "$date": "2022-01-02T05:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "91e6351e-9423-45c1-918b-7a68636fcfa7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-01T19:12:58.000Z" - }, - "end": { - "$date": "2022-01-02T01:46:18.000Z" - }, - "events": [ - { - "uuid": "c3cf0fbd-8850-40b1-b4db-00f640a05adc", - "start": { - "$date": "2022-01-01T19:12:58.000Z" - }, - "end": { - "$date": "2022-01-02T01:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "236fdcf9-ef9b-4f37-a360-31d8fa5ec1c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T01:18:19.000Z" - }, - "end": { - "$date": "2022-01-02T01:20:20.000Z" - }, - "events": [ - { - "uuid": "abd53b66-5db1-4725-b4e3-5d1ec602062d", - "start": { - "$date": "2022-01-02T01:18:19.000Z" - }, - "end": { - "$date": "2022-01-02T01:20:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d99a4ed-9a3f-439e-8103-4e4084968ecf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T01:31:26.000Z" - }, - "end": { - "$date": "2022-01-02T02:00:45.000Z" - }, - "events": [ - { - "uuid": "391a603b-e289-4c42-9b8f-1aa8f9d752b1", - "start": { - "$date": "2022-01-02T01:31:26.000Z" - }, - "end": { - "$date": "2022-01-02T02:00:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ca2c6be-7bec-434a-8970-a02b9a79cb07", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-02T01:50:39.000Z" - }, - "end": { - "$date": "2022-01-02T02:07:01.000Z" - }, - "events": [ - { - "uuid": "60e67aff-30a5-4a9c-b2d9-d8c5d4bd6ed9", - "start": { - "$date": "2022-01-02T01:50:39.000Z" - }, - "end": { - "$date": "2022-01-02T02:07:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0f71fd1-6736-421b-aa44-5f0367772054", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T02:01:22.000Z" - }, - "end": { - "$date": "2022-01-02T03:59:33.000Z" - }, - "events": [ - { - "uuid": "97afd86d-e22e-4373-be02-f166dcde9780", - "start": { - "$date": "2022-01-02T02:01:22.000Z" - }, - "end": { - "$date": "2022-01-02T03:59:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "861fffed-ce2d-436e-ab43-c9685ccb5b3f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-02T02:09:10.000Z" - }, - "end": { - "$date": "2022-01-02T07:48:21.000Z" - }, - "events": [ - { - "uuid": "20109893-b8e0-46d3-8a7f-8721ec557141", - "start": { - "$date": "2022-01-02T02:09:10.000Z" - }, - "end": { - "$date": "2022-01-02T07:48:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "12db9d10-6c2c-420f-8d71-ff7a5721e8c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T02:20:35.000Z" - }, - "end": { - "$date": "2022-01-02T03:26:41.000Z" - }, - "events": [ - { - "uuid": "2bf2f7fb-8f21-40e9-8e7d-c3703cdb8b5b", - "start": { - "$date": "2022-01-02T02:20:35.000Z" - }, - "end": { - "$date": "2022-01-02T03:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c04e4323-f84f-4267-9c59-e33132ef3455", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-02T02:33:23.000Z" - }, - "end": { - "$date": "2022-01-02T02:49:55.000Z" - }, - "events": [ - { - "uuid": "a95ac9f7-b4f9-4ab6-be7b-ef8c481115aa", - "start": { - "$date": "2022-01-02T02:33:23.000Z" - }, - "end": { - "$date": "2022-01-02T02:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "c0995288-9c28-408e-bb92-40d2e8bbbd2a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-02T02:43:46.000Z" - }, - "end": { - "$date": "2022-01-02T05:27:22.000Z" - }, - "events": [ - { - "uuid": "73640d84-f25f-44a6-92dc-e7fd70d6d064", - "start": { - "$date": "2022-01-02T02:43:46.000Z" - }, - "end": { - "$date": "2022-01-02T04:36:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6fc59a68-6774-4551-af71-6d37722b6913", - "start": { - "$date": "2022-01-02T04:36:46.000Z" - }, - "end": { - "$date": "2022-01-02T04:43:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee36627b-984c-4d2f-b898-2233cd350f95", - "start": { - "$date": "2022-01-02T04:43:46.000Z" - }, - "end": { - "$date": "2022-01-02T05:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cdb85538-5bfd-41ae-8d71-2f5b672972d0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T03:26:56.000Z" - }, - "end": { - "$date": "2022-01-02T04:28:30.000Z" - }, - "events": [ - { - "uuid": "672388d6-e086-4d15-803b-fc5fcacdea4b", - "start": { - "$date": "2022-01-02T03:26:56.000Z" - }, - "end": { - "$date": "2022-01-02T03:37:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d6eccbc8-0934-4d1c-a5d2-038245ff77c1", - "start": { - "$date": "2022-01-02T03:37:56.000Z" - }, - "end": { - "$date": "2022-01-02T03:41:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0ebb6445-19a7-4d5f-a961-281411a5bf14", - "start": { - "$date": "2022-01-02T03:41:56.000Z" - }, - "end": { - "$date": "2022-01-02T04:28:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "f271deb8-72ce-40a5-8128-44f1425a3e68", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T04:44:04.000Z" - }, - "end": { - "$date": "2022-01-02T05:14:07.000Z" - }, - "events": [ - { - "uuid": "d1604e64-eede-4113-bf32-a2efac0d3a68", - "start": { - "$date": "2022-01-02T04:44:04.000Z" - }, - "end": { - "$date": "2022-01-02T05:14:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "e2120b9f-dbab-45d6-9e89-d14fb7ea4894", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-02T04:33:34.000Z" - }, - "end": { - "$date": "2022-01-02T04:33:39.000Z" - }, - "events": [ - { - "uuid": "b2cbc842-35f8-452b-89b2-71af0ca88e7b", - "start": { - "$date": "2022-01-02T04:33:34.000Z" - }, - "end": { - "$date": "2022-01-02T04:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "69ea1f22-5ebb-4b65-9dc5-4791f0f877c7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-02T04:29:14.000Z" - }, - "end": { - "$date": "2022-01-02T04:37:50.000Z" - }, - "events": [ - { - "uuid": "89759010-f519-4ae2-88ab-d49bfc996198", - "start": { - "$date": "2022-01-02T04:29:14.000Z" - }, - "end": { - "$date": "2022-01-02T04:37:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b34b8c81-1be7-424d-b369-66bbe027849c", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T04:30:46.000Z" - }, - "end": { - "$date": "2022-01-02T05:15:46.000Z" - }, - "events": [ - { - "uuid": "24e1e5a0-4dc0-48d8-bf37-a82c3f7be3c1", - "start": { - "$date": "2022-01-02T04:30:46.000Z" - }, - "end": { - "$date": "2022-01-02T05:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "d268494a-745b-4e73-a88b-98bdef5821ea", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-02T04:32:15.000Z" - }, - "end": { - "$date": "2022-01-02T06:22:10.000Z" - }, - "events": [ - { - "uuid": "21daba11-3e30-4f82-9fbc-6607c0f17170", - "start": { - "$date": "2022-01-02T04:32:15.000Z" - }, - "end": { - "$date": "2022-01-02T06:22:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "75762517-7327-4384-93dc-c18c9941659b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T04:33:05.000Z" - }, - "end": { - "$date": "2022-01-02T05:05:53.000Z" - }, - "events": [ - { - "uuid": "a509e61b-ca14-4251-8324-acba124d1135", - "start": { - "$date": "2022-01-02T04:33:05.000Z" - }, - "end": { - "$date": "2022-01-02T05:05:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "86dbf832-b4d6-41b5-a333-54a35a55fe52", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-02T04:33:53.000Z" - }, - "end": { - "$date": "2022-01-02T06:24:25.000Z" - }, - "events": [ - { - "uuid": "df9842be-5adb-4c28-b5e3-0b5a878bcf49", - "start": { - "$date": "2022-01-02T04:33:53.000Z" - }, - "end": { - "$date": "2022-01-02T06:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "42adc0c5-221f-4804-9e9c-ef5ebd25f16c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-02T04:37:51.000Z" - }, - "end": { - "$date": "2022-01-02T06:23:59.000Z" - }, - "events": [ - { - "uuid": "4680929b-aba8-41ac-b34e-fede79ad94eb", - "start": { - "$date": "2022-01-02T04:37:51.000Z" - }, - "end": { - "$date": "2022-01-02T06:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "718c1ce9-294a-4646-b702-0b9377983ba3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-02T04:40:59.000Z" - }, - "end": { - "$date": "2022-01-02T06:18:01.000Z" - }, - "events": [ - { - "uuid": "30fe2596-573a-4485-b92e-c1aeb8df3618", - "start": { - "$date": "2022-01-02T04:40:59.000Z" - }, - "end": { - "$date": "2022-01-02T06:18:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f81d5d14-0cf2-423e-859b-6b833d292257", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-02T04:47:18.000Z" - }, - "end": { - "$date": "2022-01-02T05:03:34.000Z" - }, - "events": [ - { - "uuid": "cdd69328-57b4-4f53-875b-dd8916794591", - "start": { - "$date": "2022-01-02T04:47:18.000Z" - }, - "end": { - "$date": "2022-01-02T05:03:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "373fc648-2928-47da-8ba6-ca77ac7c9dc3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-02T05:03:44.000Z" - }, - "end": { - "$date": "2022-01-02T06:21:13.000Z" - }, - "events": [ - { - "uuid": "4579f717-06f5-4b50-be28-7e358873f2d3", - "start": { - "$date": "2022-01-02T05:03:44.000Z" - }, - "end": { - "$date": "2022-01-02T06:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "12fc05b7-e840-4ad9-8548-8b7cc23cd794", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-02T05:06:01.000Z" - }, - "end": { - "$date": "2022-01-02T06:23:19.000Z" - }, - "events": [ - { - "uuid": "51963e9b-d2d5-42b8-86b9-a1a308a1683a", - "start": { - "$date": "2022-01-02T05:06:01.000Z" - }, - "end": { - "$date": "2022-01-02T06:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "d1b820f5-c1bb-4483-9562-be412dc0cfe0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T05:06:12.000Z" - }, - "end": { - "$date": "2022-01-02T06:25:00.000Z" - }, - "events": [ - { - "uuid": "c2d0605a-4f50-49b3-918c-4341d9fd0fcf", - "start": { - "$date": "2022-01-02T05:06:12.000Z" - }, - "end": { - "$date": "2022-01-02T06:25:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "e3a91e1c-3899-445f-b470-ac51d13f4993", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T05:06:18.000Z" - }, - "end": { - "$date": "2022-01-02T06:29:21.000Z" - }, - "events": [ - { - "uuid": "0a11fe61-535f-4492-bbd4-40f187e13433", - "start": { - "$date": "2022-01-02T05:06:18.000Z" - }, - "end": { - "$date": "2022-01-02T06:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "461f5438-4435-48c4-af04-91a3dad11abb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-02T05:08:35.000Z" - }, - "end": { - "$date": "2022-01-02T05:11:25.000Z" - }, - "events": [ - { - "uuid": "f2edea60-2292-4002-a1bf-940d1869e564", - "start": { - "$date": "2022-01-02T05:08:35.000Z" - }, - "end": { - "$date": "2022-01-02T05:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "ac8c6f6b-a8f7-4833-9cf4-9b0dca2860c2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T06:21:16.000Z" - }, - "end": { - "$date": "2022-01-02T06:21:57.000Z" - }, - "events": [ - { - "uuid": "fb0f3c97-3137-4c43-afd0-602978648b42", - "start": { - "$date": "2022-01-02T06:21:16.000Z" - }, - "end": { - "$date": "2022-01-02T06:21:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "29a7e7fa-2b70-45de-a5b1-2be581273df5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-02T05:15:39.000Z" - }, - "end": { - "$date": "2022-01-02T06:23:18.000Z" - }, - "events": [ - { - "uuid": "8e7b26b9-ce1e-458b-a396-6c6ff1adeb7e", - "start": { - "$date": "2022-01-02T05:15:39.000Z" - }, - "end": { - "$date": "2022-01-02T06:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fee0f53-4ae6-46d0-a407-c3dff4bc4251", - "uuid": "2aa7cf7e-a945-4fae-b9f4-382b188a14f1", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T05:20:03.000Z" - }, - "end": { - "$date": "2022-01-02T07:09:25.000Z" - }, - "events": [ - { - "uuid": "89b76bab-1ab7-4725-abce-aded12b2b81d", - "start": { - "$date": "2022-01-02T05:20:03.000Z" - }, - "end": { - "$date": "2022-01-02T07:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "3fb74b8e-004f-42ad-8c39-7c28416ca0b8", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-02T05:34:23.000Z" - }, - "end": { - "$date": "2022-01-02T05:38:44.000Z" - }, - "events": [ - { - "uuid": "d8033a0c-3419-4542-83ba-8cd481bcca4c", - "start": { - "$date": "2022-01-02T05:34:23.000Z" - }, - "end": { - "$date": "2022-01-02T05:38:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "384784f3-77e5-4cce-838d-74b3605784d4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-02T06:18:15.000Z" - }, - "end": { - "$date": "2022-01-02T06:22:26.000Z" - }, - "events": [ - { - "uuid": "c56b8293-cbeb-430f-8816-b39c5a6fbdd7", - "start": { - "$date": "2022-01-02T06:18:15.000Z" - }, - "end": { - "$date": "2022-01-02T06:22:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "a81b941c-d817-4a8c-959a-b550d88c986e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T06:26:56.000Z" - }, - "end": { - "$date": "2022-01-02T08:18:12.000Z" - }, - "events": [ - { - "uuid": "b9bb7db3-b706-4aa8-8d74-a00c7f8909cb", - "start": { - "$date": "2022-01-02T06:26:56.000Z" - }, - "end": { - "$date": "2022-01-02T08:18:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "eb3e8365-e5be-4bed-9104-15f507a6c9a7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T06:37:31.000Z" - }, - "end": { - "$date": "2022-01-02T07:56:57.000Z" - }, - "events": [ - { - "uuid": "e30d966e-75ff-4e83-ab83-2c8f53b98c7d", - "start": { - "$date": "2022-01-02T06:37:31.000Z" - }, - "end": { - "$date": "2022-01-02T07:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "fa4aae2b-e697-4ea3-98d8-8d89476ac8c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T06:41:26.000Z" - }, - "end": { - "$date": "2022-01-02T06:50:27.000Z" - }, - "events": [ - { - "uuid": "17eeb9f9-83fe-47df-bc21-458f73f93c6f", - "start": { - "$date": "2022-01-02T06:41:26.000Z" - }, - "end": { - "$date": "2022-01-02T06:50:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "eb7328e9-6272-4bb0-a313-5f07e8b9721d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-02T06:47:50.000Z" - }, - "end": { - "$date": "2022-01-02T06:50:16.000Z" - }, - "events": [ - { - "uuid": "21d08f26-cc74-4704-b04b-807002ecf78b", - "start": { - "$date": "2022-01-02T06:47:50.000Z" - }, - "end": { - "$date": "2022-01-02T06:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "9b686bae-57ee-449e-b047-8ba1851a24d9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T08:18:26.000Z" - }, - "end": { - "$date": "2022-01-02T08:19:42.000Z" - }, - "events": [ - { - "uuid": "5f8ad935-1899-42b2-9dba-3b0413551a91", - "start": { - "$date": "2022-01-02T08:18:26.000Z" - }, - "end": { - "$date": "2022-01-02T08:19:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "78609077-d0b6-47f6-9d5d-18b77b0d64d2", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T08:19:27.000Z" - }, - "end": { - "$date": "2022-01-02T08:29:08.000Z" - }, - "events": [ - { - "uuid": "96de2977-2b1e-4df4-98b0-e51da11c1cc9", - "start": { - "$date": "2022-01-02T08:19:27.000Z" - }, - "end": { - "$date": "2022-01-02T08:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "c5be43e5-3e57-41a7-9949-b29e1f8e21a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T08:19:51.000Z" - }, - "end": { - "$date": "2022-01-02T08:21:37.000Z" - }, - "events": [ - { - "uuid": "d0f23142-424e-421b-a673-15c9298a1c90", - "start": { - "$date": "2022-01-02T08:19:51.000Z" - }, - "end": { - "$date": "2022-01-02T08:21:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "ff07e5e2-8a36-493b-9454-bda9888d2495", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T08:31:17.000Z" - }, - "end": { - "$date": "2022-01-02T08:41:23.000Z" - }, - "events": [ - { - "uuid": "8c0bb69c-cb8e-4aef-97a3-0741218f736b", - "start": { - "$date": "2022-01-02T08:31:17.000Z" - }, - "end": { - "$date": "2022-01-02T08:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "66767592-59e2-4bc3-9f20-4c8765a498e4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-02T15:15:41.000Z" - }, - "end": { - "$date": "2022-01-02T16:22:14.000Z" - }, - "events": [ - { - "uuid": "0aa188f7-bea1-4dda-b26d-6b7c158c4ccf", - "start": { - "$date": "2022-01-02T15:15:41.000Z" - }, - "end": { - "$date": "2022-01-02T16:22:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "649817e7-6f8b-4460-a96e-acd26c22dc99", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T15:46:15.000Z" - }, - "end": { - "$date": "2022-01-02T16:12:04.000Z" - }, - "events": [ - { - "uuid": "aa357b60-5caf-46ed-9ecc-fb3365bffb7d", - "start": { - "$date": "2022-01-02T15:46:15.000Z" - }, - "end": { - "$date": "2022-01-02T16:12:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "128d126c-11a9-4daa-b618-d68d8dae80be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-02T16:15:24.000Z" - }, - "end": { - "$date": "2022-01-02T18:50:21.000Z" - }, - "events": [ - { - "uuid": "150936f8-dc74-4b06-9066-7a8da4406783", - "start": { - "$date": "2022-01-02T16:15:24.000Z" - }, - "end": { - "$date": "2022-01-02T18:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6d500ddb-eac4-4e61-81b2-be23028cdec3", - "uuid": "6424abf2-c2af-4aae-bd0c-8b1d0687658e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-02T16:27:44.000Z" - }, - "end": { - "$date": "2022-01-02T16:28:55.000Z" - }, - "events": [ - { - "uuid": "79fb103d-35d5-4b01-aa97-bbbc3fbca189", - "start": { - "$date": "2022-01-02T16:27:44.000Z" - }, - "end": { - "$date": "2022-01-02T16:28:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dcc0b0b1-d68e-4dbd-bbc9-01c433aadae4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T16:39:53.000Z" - }, - "end": { - "$date": "2022-01-02T18:21:53.000Z" - }, - "events": [ - { - "uuid": "1c8353cb-f113-4623-8fee-e432fd458463", - "start": { - "$date": "2022-01-02T16:39:53.000Z" - }, - "end": { - "$date": "2022-01-02T18:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "54f38fc4-57e3-4d46-b298-9eda3678f7ea", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-02T17:35:01.000Z" - }, - "end": { - "$date": "2022-01-02T18:20:18.000Z" - }, - "events": [ - { - "uuid": "d9198f44-2353-4b77-a1d3-8e3e465acedd", - "start": { - "$date": "2022-01-02T17:35:01.000Z" - }, - "end": { - "$date": "2022-01-02T18:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9d6d1eaa-c4c5-468d-bee7-61a5eff01541", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-02T17:37:14.000Z" - }, - "end": { - "$date": "2022-01-02T18:20:26.000Z" - }, - "events": [ - { - "uuid": "54ff9296-34fe-4731-83f4-f7ce31dea2c1", - "start": { - "$date": "2022-01-02T17:37:14.000Z" - }, - "end": { - "$date": "2022-01-02T18:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "15ec6493-62e4-46d5-ab3c-aba6db176c3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-02T17:42:03.000Z" - }, - "end": { - "$date": "2022-01-02T18:20:14.000Z" - }, - "events": [ - { - "uuid": "4e8bc057-d4f0-402c-8127-c815447db85d", - "start": { - "$date": "2022-01-02T17:42:03.000Z" - }, - "end": { - "$date": "2022-01-02T18:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "93620547-f11e-41fd-9095-97353420c71d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T18:22:03.000Z" - }, - "end": { - "$date": "2022-01-02T18:51:45.000Z" - }, - "events": [ - { - "uuid": "5c18a503-1a8c-4707-b589-5f39fc4bb5e1", - "start": { - "$date": "2022-01-02T18:22:03.000Z" - }, - "end": { - "$date": "2022-01-02T18:51:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "a0eee384-5bcd-4a71-a34b-0429758bc560", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T19:57:08.000Z" - }, - "end": { - "$date": "2022-01-02T20:46:16.000Z" - }, - "events": [ - { - "uuid": "e4ca668f-5822-4422-bfdd-bb824cab6287", - "start": { - "$date": "2022-01-02T19:57:08.000Z" - }, - "end": { - "$date": "2022-01-02T20:46:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "e517bc1b-55d9-407b-9ba4-ff4210ebf418", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T19:59:16.000Z" - }, - "end": { - "$date": "2022-01-02T20:04:12.000Z" - }, - "events": [ - { - "uuid": "ac7dea4a-c275-42f4-9197-a2312cfc237f", - "start": { - "$date": "2022-01-02T19:59:16.000Z" - }, - "end": { - "$date": "2022-01-02T20:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3ef5c649-2564-4afc-a990-ee7d227fa720", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T20:04:22.000Z" - }, - "end": { - "$date": "2022-01-02T20:19:42.000Z" - }, - "events": [ - { - "uuid": "b33650c1-d0d8-4607-9a42-083558214f5a", - "start": { - "$date": "2022-01-02T20:04:22.000Z" - }, - "end": { - "$date": "2022-01-02T20:19:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "42551d46-4d1a-4571-a354-482658b604b8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-02T20:15:56.000Z" - }, - "end": { - "$date": "2022-01-03T02:24:30.000Z" - }, - "events": [ - { - "uuid": "67391645-3ceb-40bf-b124-73cde010a750", - "start": { - "$date": "2022-01-02T20:15:56.000Z" - }, - "end": { - "$date": "2022-01-02T23:29:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc8d356b-c6d4-43b7-82ce-c797ca81c781", - "start": { - "$date": "2022-01-02T23:29:56.000Z" - }, - "end": { - "$date": "2022-01-02T23:32:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "da4c4bc4-6e54-49a9-9600-16600a1520c4", - "start": { - "$date": "2022-01-02T23:32:56.000Z" - }, - "end": { - "$date": "2022-01-03T02:24:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "3ea580f8-512a-472f-a145-5072162378b9", - "user": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "start": { - "$date": "2022-01-02T20:22:37.000Z" - }, - "end": { - "$date": "2022-01-03T00:38:44.000Z" - }, - "events": [ - { - "uuid": "ac84e847-8137-4db0-a419-e4e70d9f5c12", - "start": { - "$date": "2022-01-02T20:22:37.000Z" - }, - "end": { - "$date": "2022-01-02T23:38:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "272ab68f-cc77-40bf-900a-d9901bb7b633", - "start": { - "$date": "2022-01-02T23:38:37.000Z" - }, - "end": { - "$date": "2022-01-02T23:42:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99296f1d-53fb-4dfb-ae14-85511488cf54", - "start": { - "$date": "2022-01-02T23:42:37.000Z" - }, - "end": { - "$date": "2022-01-03T00:38:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "3e05ccfa-6e29-43a8-8026-ba4dba5feaad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-02T21:03:53.000Z" - }, - "end": { - "$date": "2022-01-02T21:22:05.000Z" - }, - "events": [ - { - "uuid": "c4ce2461-ddfc-499d-97b3-8f08a8fa0920", - "start": { - "$date": "2022-01-02T21:03:53.000Z" - }, - "end": { - "$date": "2022-01-02T21:22:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4966b11-bd3c-4928-84ab-9743e26c2b97", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T21:34:50.000Z" - }, - "end": { - "$date": "2022-01-02T22:08:52.000Z" - }, - "events": [ - { - "uuid": "7f1f168a-7263-425f-9d2a-911036aa306a", - "start": { - "$date": "2022-01-02T21:34:50.000Z" - }, - "end": { - "$date": "2022-01-02T22:08:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "db5e8118-63b9-415e-9ac5-0cd2cba7818d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-02T22:08:57.000Z" - }, - "end": { - "$date": "2022-01-02T22:12:02.000Z" - }, - "events": [ - { - "uuid": "4fc18984-899c-4166-bf36-2a78f6974a46", - "start": { - "$date": "2022-01-02T22:08:57.000Z" - }, - "end": { - "$date": "2022-01-02T22:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a88430e9-6ffe-48e3-86f1-7bb4b2af5916", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-02T22:18:54.000Z" - }, - "end": { - "$date": "2022-01-02T23:00:08.000Z" - }, - "events": [ - { - "uuid": "944062ca-bfa2-4263-bb0a-03e96e3beb32", - "start": { - "$date": "2022-01-02T22:18:54.000Z" - }, - "end": { - "$date": "2022-01-02T23:00:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1e6599e4-c8bb-4ed1-969d-484a7cc45f9e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-02T22:22:41.000Z" - }, - "end": { - "$date": "2022-01-02T23:43:20.000Z" - }, - "events": [ - { - "uuid": "25a1db5c-cd77-49fd-bc74-53b3cb97e385", - "start": { - "$date": "2022-01-02T22:22:41.000Z" - }, - "end": { - "$date": "2022-01-02T23:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "0f69d08c-15e1-4246-b2c7-5df39f4dbe00", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-02T23:32:15.000Z" - }, - "end": { - "$date": "2022-01-03T01:10:35.000Z" - }, - "events": [ - { - "uuid": "0b3405de-260e-4e6b-9188-f4bc0c68df5c", - "start": { - "$date": "2022-01-02T23:32:15.000Z" - }, - "end": { - "$date": "2022-01-03T01:10:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d29b1ddf-a298-477c-8976-fd5eb326cb53", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-03T00:50:41.000Z" - }, - "end": { - "$date": "2022-01-03T01:02:08.000Z" - }, - "events": [ - { - "uuid": "b9aa59fb-dcce-45d3-a21b-fd66632fb3db", - "start": { - "$date": "2022-01-03T00:50:41.000Z" - }, - "end": { - "$date": "2022-01-03T01:02:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "31bd3978-27b6-4309-bc2a-5ef62da98d17", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T01:55:00.000Z" - }, - "end": { - "$date": "2022-01-03T03:57:16.000Z" - }, - "events": [ - { - "uuid": "6efdb409-bee7-47a9-9792-e5cd4ca17a64", - "start": { - "$date": "2022-01-03T01:55:00.000Z" - }, - "end": { - "$date": "2022-01-03T03:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2e40b4cb-3a79-4d7f-af12-ca784b95824c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-03T02:21:03.000Z" - }, - "end": { - "$date": "2022-01-03T04:40:33.000Z" - }, - "events": [ - { - "uuid": "ee6fb00d-6802-46f0-9fef-9f6db7cd45e9", - "start": { - "$date": "2022-01-03T02:21:03.000Z" - }, - "end": { - "$date": "2022-01-03T04:40:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3fe70687-ce8f-4023-b1d6-839de8b793a9", - "uuid": "064aca81-aa20-42b4-8d93-e6c7b67f6c9e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-03T03:06:05.000Z" - }, - "end": { - "$date": "2022-01-03T03:13:03.000Z" - }, - "events": [ - { - "uuid": "ff96198d-5624-4d93-8ac4-4a4100417d5b", - "start": { - "$date": "2022-01-03T03:06:05.000Z" - }, - "end": { - "$date": "2022-01-03T03:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "6809db04-96c6-4c33-853c-823b1d0aa9e6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-03T03:11:35.000Z" - }, - "end": { - "$date": "2022-01-03T03:26:17.000Z" - }, - "events": [ - { - "uuid": "be61b0c8-71ba-4354-9c92-dd638e642fe1", - "start": { - "$date": "2022-01-03T03:11:35.000Z" - }, - "end": { - "$date": "2022-01-03T03:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "a01c9370-33ec-4ed6-8156-b1ec5196ad52", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-03T03:11:35.000Z" - }, - "end": { - "$date": "2022-01-03T04:16:35.000Z" - }, - "events": [ - { - "uuid": "b6c48813-a399-4a97-8ba9-712ca1e4f04f", - "start": { - "$date": "2022-01-03T03:11:35.000Z" - }, - "end": { - "$date": "2022-01-03T04:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3fe70687-ce8f-4023-b1d6-839de8b793a9", - "uuid": "4f9929fb-3ba6-4c12-8f7b-33a3512d1d96", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-03T03:32:03.000Z" - }, - "end": { - "$date": "2022-01-03T03:37:23.000Z" - }, - "events": [ - { - "uuid": "72a4d402-1970-484d-9953-9c017f077ae7", - "start": { - "$date": "2022-01-03T03:32:03.000Z" - }, - "end": { - "$date": "2022-01-03T03:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "c6489ff4-b1bc-46a3-8c4b-68660ac4a96f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-03T03:45:32.000Z" - }, - "end": { - "$date": "2022-01-03T05:22:49.000Z" - }, - "events": [ - { - "uuid": "2878af36-93fa-4644-922f-a8b5e38eca05", - "start": { - "$date": "2022-01-03T03:45:32.000Z" - }, - "end": { - "$date": "2022-01-03T04:42:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8eca1473-9aed-476f-98f1-30a3454d100c", - "start": { - "$date": "2022-01-03T04:42:32.000Z" - }, - "end": { - "$date": "2022-01-03T05:22:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e37f9700-bd73-413d-8109-c3a4198a2abc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T04:12:58.000Z" - }, - "end": { - "$date": "2022-01-03T05:34:54.000Z" - }, - "events": [ - { - "uuid": "5bd42990-fde7-4185-ab58-ab46d4994fff", - "start": { - "$date": "2022-01-03T04:12:58.000Z" - }, - "end": { - "$date": "2022-01-03T05:34:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4a4ee8d9-48d4-4b8b-948c-86996dc27a44", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-03T04:15:41.000Z" - }, - "end": { - "$date": "2022-01-03T05:06:42.000Z" - }, - "events": [ - { - "uuid": "5d0cfd16-ff6e-4ae9-8ed0-770b795315e2", - "start": { - "$date": "2022-01-03T04:15:41.000Z" - }, - "end": { - "$date": "2022-01-03T05:06:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "ff4f1469-06dc-4256-8a26-3e4ceba6d002", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-03T04:41:43.000Z" - }, - "end": { - "$date": "2022-01-03T06:52:59.000Z" - }, - "events": [ - { - "uuid": "c0852506-c9b5-4a0f-8153-19f4f585527f", - "start": { - "$date": "2022-01-03T04:41:43.000Z" - }, - "end": { - "$date": "2022-01-03T06:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "e5e52903-c042-47e6-bdc6-2d35f2f7950a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-03T05:07:02.000Z" - }, - "end": { - "$date": "2022-01-03T06:52:58.000Z" - }, - "events": [ - { - "uuid": "07af70e2-f1fe-40cf-aba2-86e0d005ccb2", - "start": { - "$date": "2022-01-03T05:07:02.000Z" - }, - "end": { - "$date": "2022-01-03T06:52:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e4f8d430-0e93-4631-83ea-eba9183fbaaa", - "uuid": "395bd982-6864-455b-91a3-277bef2c1124", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-03T05:15:00.000Z" - }, - "end": { - "$date": "2022-01-03T06:43:17.000Z" - }, - "events": [ - { - "uuid": "5ff52397-ea04-462f-9f76-265fc0d6061c", - "start": { - "$date": "2022-01-03T05:15:00.000Z" - }, - "end": { - "$date": "2022-01-03T06:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "99087ee7-8e27-46ce-b28a-c9686c908ba5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T05:39:55.000Z" - }, - "end": { - "$date": "2022-01-03T06:07:56.000Z" - }, - "events": [ - { - "uuid": "1887f482-ced5-453b-9719-45ca792b5781", - "start": { - "$date": "2022-01-03T05:39:55.000Z" - }, - "end": { - "$date": "2022-01-03T06:07:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "513fd69b-707c-40da-bc29-d1f9deb41fe4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T06:46:04.000Z" - }, - "end": { - "$date": "2022-01-03T08:37:51.000Z" - }, - "events": [ - { - "uuid": "7d91eaaa-46cc-44fb-9fcb-75026ae67293", - "start": { - "$date": "2022-01-03T06:46:04.000Z" - }, - "end": { - "$date": "2022-01-03T08:37:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6fcb2549-21ff-47ca-8d22-bf7d8a8a6c6f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-03T08:20:13.000Z" - }, - "end": { - "$date": "2022-01-03T08:25:34.000Z" - }, - "events": [ - { - "uuid": "02fee0e0-8c82-4203-ae15-e3495165ebfd", - "start": { - "$date": "2022-01-03T08:20:13.000Z" - }, - "end": { - "$date": "2022-01-03T08:25:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b4b7eef5-b1ae-44f4-bac6-246007e3e649", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-03T16:23:01.000Z" - }, - "end": { - "$date": "2022-01-03T16:31:01.000Z" - }, - "events": [ - { - "uuid": "17a96363-7f7e-4aae-8bd6-84c9da2cfade", - "start": { - "$date": "2022-01-03T16:23:01.000Z" - }, - "end": { - "$date": "2022-01-03T16:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "337116db-b81b-4b4e-a4bb-042c6ec34d1f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-03T16:59:24.000Z" - }, - "end": { - "$date": "2022-01-03T21:09:52.000Z" - }, - "events": [ - { - "uuid": "d7f98e1a-83e5-481e-9239-60a89d6b9b10", - "start": { - "$date": "2022-01-03T16:59:24.000Z" - }, - "end": { - "$date": "2022-01-03T17:24:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ccf5a219-0b3c-4a9c-9369-e5cf623357e7", - "start": { - "$date": "2022-01-03T17:24:24.000Z" - }, - "end": { - "$date": "2022-01-03T17:25:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e419bd4-a8f8-47bd-9f5b-7b877a86b2c7", - "start": { - "$date": "2022-01-03T17:25:24.000Z" - }, - "end": { - "$date": "2022-01-03T19:08:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef785f05-97fd-48da-ae52-bc231163d33c", - "start": { - "$date": "2022-01-03T19:08:24.000Z" - }, - "end": { - "$date": "2022-01-03T20:18:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1e8a4ca-34ee-4d94-9676-e3164e47bd35", - "start": { - "$date": "2022-01-03T20:18:24.000Z" - }, - "end": { - "$date": "2022-01-03T20:28:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a9e1ff4c-f214-4eba-b5f5-b941da5d9e11", - "start": { - "$date": "2022-01-03T20:28:24.000Z" - }, - "end": { - "$date": "2022-01-03T21:09:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "e937a34c-0598-408d-af73-25edcc1644f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T18:00:22.000Z" - }, - "end": { - "$date": "2022-01-03T18:26:12.000Z" - }, - "events": [ - { - "uuid": "f196bc56-a895-46ab-b57c-f81b6c921045", - "start": { - "$date": "2022-01-03T18:00:22.000Z" - }, - "end": { - "$date": "2022-01-03T18:26:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2760f4e-5773-4c2e-a8f4-6d6478f6d232", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T18:40:06.000Z" - }, - "end": { - "$date": "2022-01-03T19:33:46.000Z" - }, - "events": [ - { - "uuid": "ac770785-e135-4a5e-8866-bf2571265e06", - "start": { - "$date": "2022-01-03T18:40:06.000Z" - }, - "end": { - "$date": "2022-01-03T19:33:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "88332c39-7b6e-424f-9da2-b82f5498d22e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-03T18:54:10.000Z" - }, - "end": { - "$date": "2022-01-03T19:26:19.000Z" - }, - "events": [ - { - "uuid": "4a15b444-4b15-43e4-a4a9-d50b763eae38", - "start": { - "$date": "2022-01-03T18:54:10.000Z" - }, - "end": { - "$date": "2022-01-03T19:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a174bd90-5fde-47f5-be29-5ef93db45be8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-03T19:09:51.000Z" - }, - "end": { - "$date": "2022-01-03T20:11:12.000Z" - }, - "events": [ - { - "uuid": "ef7d29e2-8598-47f4-8bb3-a50e8c62457f", - "start": { - "$date": "2022-01-03T19:09:51.000Z" - }, - "end": { - "$date": "2022-01-03T20:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "9ba17896-6f59-4ce5-91ca-35dda7477468", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-03T19:27:48.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:12.000Z" - }, - "events": [ - { - "uuid": "6a97c532-f772-4b17-8516-da7ee2ce715a", - "start": { - "$date": "2022-01-03T19:27:48.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "409bb88a-256f-4c14-98c9-ea4bf7c47b6b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-03T19:29:35.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:45.000Z" - }, - "events": [ - { - "uuid": "a9c4b4c8-0e8c-44eb-92f7-b2e2861d2e7f", - "start": { - "$date": "2022-01-03T19:29:35.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "2a415681-f0f2-4f26-a1f9-29051cdccae3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T19:33:30.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:37.000Z" - }, - "events": [ - { - "uuid": "ad968ba7-3294-4d57-a1d6-3bf882bfda2c", - "start": { - "$date": "2022-01-03T19:33:30.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "5e5b2168-af7a-46fd-8789-bebbb7341b36", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-03T19:34:57.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:35.000Z" - }, - "events": [ - { - "uuid": "0b96a5b8-cadd-4a2d-a2b2-275df0b62856", - "start": { - "$date": "2022-01-03T19:34:57.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "7cd3b37b-d560-42f9-a0d4-c443fbbca60d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T19:36:45.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:37.000Z" - }, - "events": [ - { - "uuid": "37564d56-5163-460e-857a-5657d8950e7f", - "start": { - "$date": "2022-01-03T19:36:45.000Z" - }, - "end": { - "$date": "2022-01-03T19:46:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "8b6a98ac-8253-4238-8d80-18d60473f5ab", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-03T19:46:37.000Z" - }, - "end": { - "$date": "2022-01-03T20:40:50.000Z" - }, - "events": [ - { - "uuid": "1c023d86-a279-4e4c-b9e2-75b2be9e9013", - "start": { - "$date": "2022-01-03T19:46:37.000Z" - }, - "end": { - "$date": "2022-01-03T20:40:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "c9b1a3d1-a179-499e-80e0-ff1d31282d52", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-03T19:47:08.000Z" - }, - "end": { - "$date": "2022-01-03T20:00:43.000Z" - }, - "events": [ - { - "uuid": "e9683db4-b1d4-4523-8a98-c6fdc9e60edf", - "start": { - "$date": "2022-01-03T19:47:08.000Z" - }, - "end": { - "$date": "2022-01-03T20:00:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "c40f19a9-5500-497b-90ef-5f20dc5fc2fa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-03T19:47:11.000Z" - }, - "end": { - "$date": "2022-01-03T20:45:14.000Z" - }, - "events": [ - { - "uuid": "3609012c-f2ce-40fd-95d4-c2ad33866433", - "start": { - "$date": "2022-01-03T19:47:11.000Z" - }, - "end": { - "$date": "2022-01-03T20:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "26ef871f-cde9-4a41-841f-9b4ee97ef34b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T19:47:11.000Z" - }, - "end": { - "$date": "2022-01-03T20:49:55.000Z" - }, - "events": [ - { - "uuid": "d8706278-ac0c-4230-bc7f-843ccb62c00a", - "start": { - "$date": "2022-01-03T19:47:11.000Z" - }, - "end": { - "$date": "2022-01-03T20:49:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "0d269e0e-7c3e-4232-9303-f4906b66a841", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T20:21:03.000Z" - }, - "end": { - "$date": "2022-01-03T20:24:40.000Z" - }, - "events": [ - { - "uuid": "a5790a1a-f298-433f-a03b-97c2a65badf1", - "start": { - "$date": "2022-01-03T20:21:03.000Z" - }, - "end": { - "$date": "2022-01-03T20:24:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "93bda323-42ca-447d-8f2c-8a6bd1e6be39", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T20:47:18.000Z" - }, - "end": { - "$date": "2022-01-03T20:50:35.000Z" - }, - "events": [ - { - "uuid": "83e1df4b-0b27-483a-8798-6d1e0c997b66", - "start": { - "$date": "2022-01-03T20:47:18.000Z" - }, - "end": { - "$date": "2022-01-03T20:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3cee9521-e8c9-486d-9e67-5a648525085f", - "uuid": "b67ef305-c4c5-480e-8c61-09b0d0768ce3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T20:59:57.000Z" - }, - "end": { - "$date": "2022-01-03T21:02:24.000Z" - }, - "events": [ - { - "uuid": "35c2a70b-6a0b-4078-bbfe-4dd73c08b4d0", - "start": { - "$date": "2022-01-03T20:59:57.000Z" - }, - "end": { - "$date": "2022-01-03T21:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4cfc58de-383a-4eee-a0ec-704db6d2fd49", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-03T23:09:05.000Z" - }, - "end": { - "$date": "2022-01-04T00:57:24.000Z" - }, - "events": [ - { - "uuid": "581201dd-4504-47b9-bdfe-3b603ab79e20", - "start": { - "$date": "2022-01-03T23:09:05.000Z" - }, - "end": { - "$date": "2022-01-04T00:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c33d470c-1dc0-499a-b930-fe40f941be36", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T22:01:47.000Z" - }, - "end": { - "$date": "2022-01-03T22:03:23.000Z" - }, - "events": [ - { - "uuid": "1371806c-d469-4a4c-9e71-80fb487c6c5e", - "start": { - "$date": "2022-01-03T22:01:47.000Z" - }, - "end": { - "$date": "2022-01-03T22:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1a13ab70-ad9a-4e90-b0de-92d3a5dfa5f8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T22:23:19.000Z" - }, - "end": { - "$date": "2022-01-03T22:43:24.000Z" - }, - "events": [ - { - "uuid": "0b73d768-3405-441b-be95-a9677bca395f", - "start": { - "$date": "2022-01-03T22:23:19.000Z" - }, - "end": { - "$date": "2022-01-03T22:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "568ecc42-5469-4f9c-9ef6-a3936c0867ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-03T22:43:38.000Z" - }, - "end": { - "$date": "2022-01-04T00:08:03.000Z" - }, - "events": [ - { - "uuid": "61ae4d76-fb5b-46bd-b0e4-9a5352a8d71a", - "start": { - "$date": "2022-01-03T22:43:38.000Z" - }, - "end": { - "$date": "2022-01-04T00:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2ceeea76-bfc4-4c35-ac6c-5f9895c166dc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-03T23:25:45.000Z" - }, - "end": { - "$date": "2022-01-04T00:53:05.000Z" - }, - "events": [ - { - "uuid": "7579f305-6ae3-42d4-a99e-67df72c8eea2", - "start": { - "$date": "2022-01-03T23:25:45.000Z" - }, - "end": { - "$date": "2022-01-04T00:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "025ddb5c-cb57-420a-888f-38ef171e8e7b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-03T23:50:30.000Z" - }, - "end": { - "$date": "2022-01-04T00:31:13.000Z" - }, - "events": [ - { - "uuid": "506bd422-ba71-4452-8469-63a0fc5a2c29", - "start": { - "$date": "2022-01-03T23:50:30.000Z" - }, - "end": { - "$date": "2022-01-04T00:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "1410adf5-bf17-4b1b-812a-82334644f316", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-04T00:02:08.000Z" - }, - "end": { - "$date": "2022-01-04T02:52:53.000Z" - }, - "events": [ - { - "uuid": "ba01bbb4-28e6-4894-9bac-2ce9a69c4b14", - "start": { - "$date": "2022-01-04T00:02:08.000Z" - }, - "end": { - "$date": "2022-01-04T02:52:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b812f439-29ea-44b6-b5f5-71f233008cdc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-04T00:08:42.000Z" - }, - "end": { - "$date": "2022-01-04T00:50:33.000Z" - }, - "events": [ - { - "uuid": "473ff2c9-bef2-48d7-b382-9160ab70e1aa", - "start": { - "$date": "2022-01-04T00:08:42.000Z" - }, - "end": { - "$date": "2022-01-04T00:50:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "52307734-da0a-4b92-8e77-015fd788cb70", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T00:31:17.000Z" - }, - "end": { - "$date": "2022-01-04T00:34:07.000Z" - }, - "events": [ - { - "uuid": "189bec5b-43fe-44cc-8c30-35e7f4a36677", - "start": { - "$date": "2022-01-04T00:31:17.000Z" - }, - "end": { - "$date": "2022-01-04T00:34:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e1013bec-6fbb-4c54-ae6d-d449a3658d33", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-04T01:06:32.000Z" - }, - "end": { - "$date": "2022-01-04T01:09:43.000Z" - }, - "events": [ - { - "uuid": "72b63d97-4028-4c08-96d2-48a471669596", - "start": { - "$date": "2022-01-04T01:06:32.000Z" - }, - "end": { - "$date": "2022-01-04T01:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "15c6ae94-2f59-460e-b70a-793e311bb90c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-04T01:07:14.000Z" - }, - "end": { - "$date": "2022-01-04T02:22:07.000Z" - }, - "events": [ - { - "uuid": "78c76d47-8a3a-4843-92d0-bb6d6f00ff8d", - "start": { - "$date": "2022-01-04T01:07:14.000Z" - }, - "end": { - "$date": "2022-01-04T02:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "bf9a82ff-665a-4547-a395-0789df505223", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-04T01:10:03.000Z" - }, - "end": { - "$date": "2022-01-04T02:22:26.000Z" - }, - "events": [ - { - "uuid": "7d69f3da-2444-4e2e-984b-02cc9fcb8ce7", - "start": { - "$date": "2022-01-04T01:10:03.000Z" - }, - "end": { - "$date": "2022-01-04T02:22:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "628b1c29-8697-4198-8014-59b86d454cbd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T01:12:50.000Z" - }, - "end": { - "$date": "2022-01-04T02:22:06.000Z" - }, - "events": [ - { - "uuid": "dfe219d6-d13e-42eb-8922-2fddc164c2de", - "start": { - "$date": "2022-01-04T01:12:50.000Z" - }, - "end": { - "$date": "2022-01-04T02:22:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a4f1bfe5-a56f-403b-b1aa-5a3320ef29fb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-04T01:57:28.000Z" - }, - "end": { - "$date": "2022-01-04T02:54:30.000Z" - }, - "events": [ - { - "uuid": "db47fad3-5d72-46ae-a62d-ff3fded26ff5", - "start": { - "$date": "2022-01-04T01:57:28.000Z" - }, - "end": { - "$date": "2022-01-04T02:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76d57d1f-ad2e-44a0-86f9-1bbd4ac711b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-04T02:09:05.000Z" - }, - "end": { - "$date": "2022-01-04T02:54:09.000Z" - }, - "events": [ - { - "uuid": "35980532-cea3-46f5-89ce-b36fc60f8d17", - "start": { - "$date": "2022-01-04T02:09:05.000Z" - }, - "end": { - "$date": "2022-01-04T02:54:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ca635cdc-fe38-406c-b782-689df7ef7110", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-04T04:35:43.000Z" - }, - "end": { - "$date": "2022-01-04T04:38:59.000Z" - }, - "events": [ - { - "uuid": "faf364c8-f5a3-41c4-91a9-c9cc89d07d8f", - "start": { - "$date": "2022-01-04T04:35:43.000Z" - }, - "end": { - "$date": "2022-01-04T04:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", - "uuid": "67079d40-3aa7-4823-aec2-c7e38cebefd9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-04T02:23:40.000Z" - }, - "end": { - "$date": "2022-01-04T02:25:01.000Z" - }, - "events": [ - { - "uuid": "fb8b4477-7a44-4a50-9f10-30afbe87dde7", - "start": { - "$date": "2022-01-04T02:23:40.000Z" - }, - "end": { - "$date": "2022-01-04T02:25:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2b12de30-5e7f-4ae9-a457-848d3ea0d2f2", - "uuid": "4dfe49c1-8d23-46eb-8bb9-fb296d1ca230", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-04T02:25:15.000Z" - }, - "end": { - "$date": "2022-01-04T02:39:32.000Z" - }, - "events": [ - { - "uuid": "a347cff3-3ae0-4490-a5ee-cbc697872d0a", - "start": { - "$date": "2022-01-04T02:25:15.000Z" - }, - "end": { - "$date": "2022-01-04T02:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "c65358fe-0adc-4320-87d8-d0c90d2b1d0c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-04T02:58:32.000Z" - }, - "end": { - "$date": "2022-01-04T03:36:45.000Z" - }, - "events": [ - { - "uuid": "17f55a3c-2a9a-4cbb-9795-34db3f86556b", - "start": { - "$date": "2022-01-04T02:58:32.000Z" - }, - "end": { - "$date": "2022-01-04T03:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "78bdb69e-d07b-41dc-83ad-0667b66f473d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-04T03:02:40.000Z" - }, - "end": { - "$date": "2022-01-04T03:07:10.000Z" - }, - "events": [ - { - "uuid": "d7df4f4b-a252-4029-ad46-61300117e958", - "start": { - "$date": "2022-01-04T03:02:40.000Z" - }, - "end": { - "$date": "2022-01-04T03:07:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5e225279-bdc2-4ab9-8b4c-94651932be61", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-04T01:47:05.000Z" - }, - "end": { - "$date": "2022-01-04T06:34:05.000Z" - }, - "events": [ - { - "uuid": "c6f4d862-bc09-4a33-8976-115ff1c5d0a1", - "start": { - "$date": "2022-01-04T01:47:05.000Z" - }, - "end": { - "$date": "2022-01-04T06:34:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "0d87026c-1b76-4ea6-9b0e-f07d0ca68910", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T03:17:28.000Z" - }, - "end": { - "$date": "2022-01-04T03:24:01.000Z" - }, - "events": [ - { - "uuid": "9ad58b04-df4a-46c3-902c-fcca2ea22906", - "start": { - "$date": "2022-01-04T03:17:28.000Z" - }, - "end": { - "$date": "2022-01-04T03:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6106fdff-cfcf-43b2-903f-4e280e814239", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-04T03:23:25.000Z" - }, - "end": { - "$date": "2022-01-04T05:39:03.000Z" - }, - "events": [ - { - "uuid": "89acdfcd-8611-4dd1-8b01-634f7535c593", - "start": { - "$date": "2022-01-04T03:23:25.000Z" - }, - "end": { - "$date": "2022-01-04T05:39:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "43d90edc-b6a9-4151-9554-08f61776c09b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T03:24:23.000Z" - }, - "end": { - "$date": "2022-01-04T03:26:31.000Z" - }, - "events": [ - { - "uuid": "68b64f58-ae40-40f0-9758-8c04a81e7c3c", - "start": { - "$date": "2022-01-04T03:24:23.000Z" - }, - "end": { - "$date": "2022-01-04T03:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "dd48c795-0c21-4976-bd23-4e8a9cd0f09b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T03:26:58.000Z" - }, - "end": { - "$date": "2022-01-04T03:38:42.000Z" - }, - "events": [ - { - "uuid": "9025da27-efef-49ef-9ee0-aa49150db4b7", - "start": { - "$date": "2022-01-04T03:26:58.000Z" - }, - "end": { - "$date": "2022-01-04T03:38:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "722dfbca-b511-4c7d-9e92-7f75a94d742f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-04T03:28:21.000Z" - }, - "end": { - "$date": "2022-01-04T04:16:28.000Z" - }, - "events": [ - { - "uuid": "9fe74add-52cf-4a8e-a08b-e05e4b7fca29", - "start": { - "$date": "2022-01-04T03:28:21.000Z" - }, - "end": { - "$date": "2022-01-04T04:16:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "53d1cbf5-2c3a-4c7a-956f-4f28d9aa7f50", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-04T03:37:01.000Z" - }, - "end": { - "$date": "2022-01-04T03:41:05.000Z" - }, - "events": [ - { - "uuid": "e25b6c80-8a70-49b4-bd83-18cc252ae56d", - "start": { - "$date": "2022-01-04T03:37:01.000Z" - }, - "end": { - "$date": "2022-01-04T03:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "314286eb-a964-4b1b-8659-0a6b9c257638", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T03:38:54.000Z" - }, - "end": { - "$date": "2022-01-04T04:09:17.000Z" - }, - "events": [ - { - "uuid": "1a27fd25-1f58-4362-ba65-d297ed05462f", - "start": { - "$date": "2022-01-04T03:38:54.000Z" - }, - "end": { - "$date": "2022-01-04T04:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "6152b445-229b-4a92-845b-6fa87694038b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-04T03:41:22.000Z" - }, - "end": { - "$date": "2022-01-04T03:44:36.000Z" - }, - "events": [ - { - "uuid": "f6332407-b1c8-4ef5-b369-668d785e8acd", - "start": { - "$date": "2022-01-04T03:41:22.000Z" - }, - "end": { - "$date": "2022-01-04T03:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "81d2a69e-974b-423e-8892-fcbc3e29624f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-04T03:45:07.000Z" - }, - "end": { - "$date": "2022-01-04T04:15:23.000Z" - }, - "events": [ - { - "uuid": "062a6634-8aeb-4df3-905a-242c5350bd3a", - "start": { - "$date": "2022-01-04T03:45:07.000Z" - }, - "end": { - "$date": "2022-01-04T04:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "8a56ef72-2b74-4b8b-9b78-32a9208a3bd3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T03:51:18.000Z" - }, - "end": { - "$date": "2022-01-04T03:54:14.000Z" - }, - "events": [ - { - "uuid": "91f4af96-ee25-484e-9d62-3610027e7d29", - "start": { - "$date": "2022-01-04T03:51:18.000Z" - }, - "end": { - "$date": "2022-01-04T03:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "0e4c2cee-57db-47e8-8096-cd437c7dfbef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T03:54:43.000Z" - }, - "end": { - "$date": "2022-01-04T04:12:49.000Z" - }, - "events": [ - { - "uuid": "4046e12f-7c9c-434c-ad8c-df1a78e144cf", - "start": { - "$date": "2022-01-04T03:54:43.000Z" - }, - "end": { - "$date": "2022-01-04T04:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "9f52be3d-96fc-4ea9-84c8-4d5c5c2df352", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-04T04:10:34.000Z" - }, - "end": { - "$date": "2022-01-04T06:40:43.000Z" - }, - "events": [ - { - "uuid": "fceeba2a-7d47-4525-a9c8-1067cf8093b6", - "start": { - "$date": "2022-01-04T04:10:34.000Z" - }, - "end": { - "$date": "2022-01-04T06:40:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "59f15ff1-2c25-40c5-bb77-e36cfdbb271a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T04:11:04.000Z" - }, - "end": { - "$date": "2022-01-04T04:22:33.000Z" - }, - "events": [ - { - "uuid": "ea963b2f-18fc-4c9c-9de0-403fce8f0f2f", - "start": { - "$date": "2022-01-04T04:11:04.000Z" - }, - "end": { - "$date": "2022-01-04T04:22:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "e3d38053-fd22-4389-bf56-c74a79551480", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-04T04:30:50.000Z" - }, - "end": { - "$date": "2022-01-04T04:52:31.000Z" - }, - "events": [ - { - "uuid": "173a5884-e4d2-47ec-b489-04a068bf33d3", - "start": { - "$date": "2022-01-04T04:30:50.000Z" - }, - "end": { - "$date": "2022-01-04T04:52:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83c0a705-b583-4f99-b19d-a9676f16c538", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-04T05:28:15.000Z" - }, - "end": { - "$date": "2022-01-04T05:48:53.000Z" - }, - "events": [ - { - "uuid": "673f042e-6670-4a0d-8392-ecdd1251b1ae", - "start": { - "$date": "2022-01-04T05:28:15.000Z" - }, - "end": { - "$date": "2022-01-04T05:48:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "42cf4e10-ee0c-4d7e-93a1-326ed3f2c1a1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T05:45:08.000Z" - }, - "end": { - "$date": "2022-01-04T05:48:55.000Z" - }, - "events": [ - { - "uuid": "7d03b46e-9cc9-47bb-93b1-a83927bcb93c", - "start": { - "$date": "2022-01-04T05:45:08.000Z" - }, - "end": { - "$date": "2022-01-04T05:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "768996af-7263-45f6-bf40-6cc6629d6d89", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-04T05:40:45.000Z" - }, - "end": { - "$date": "2022-01-04T05:48:03.000Z" - }, - "events": [ - { - "uuid": "95d92d51-8942-4d5f-b191-c31442d12b4a", - "start": { - "$date": "2022-01-04T05:40:45.000Z" - }, - "end": { - "$date": "2022-01-04T05:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "c56608a3-6fc6-4dfa-9dfa-200f5fc2ebe8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T06:10:11.000Z" - }, - "end": { - "$date": "2022-01-04T06:12:52.000Z" - }, - "events": [ - { - "uuid": "648fc8fd-8f01-46d6-a090-6d51bf4d45f0", - "start": { - "$date": "2022-01-04T06:10:11.000Z" - }, - "end": { - "$date": "2022-01-04T06:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "674f1d28-e1f9-4974-846c-96024566c8b2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T06:14:46.000Z" - }, - "end": { - "$date": "2022-01-04T07:25:03.000Z" - }, - "events": [ - { - "uuid": "5f0b1fc5-8951-4dca-98e9-d85cbb252be6", - "start": { - "$date": "2022-01-04T06:14:46.000Z" - }, - "end": { - "$date": "2022-01-04T07:25:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8c78c4b2-5879-4757-968f-29fc6473e944", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-04T06:47:06.000Z" - }, - "end": { - "$date": "2022-01-04T07:12:50.000Z" - }, - "events": [ - { - "uuid": "93b84ec1-da03-430e-87b2-2e49d46c49b6", - "start": { - "$date": "2022-01-04T06:47:06.000Z" - }, - "end": { - "$date": "2022-01-04T07:12:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "770f640e-83e8-4ce7-8d91-a51d0c06438d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T07:25:37.000Z" - }, - "end": { - "$date": "2022-01-04T07:47:18.000Z" - }, - "events": [ - { - "uuid": "6f0b32ea-faaa-4d0a-888a-8ef5ff3e682c", - "start": { - "$date": "2022-01-04T07:25:37.000Z" - }, - "end": { - "$date": "2022-01-04T07:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b021a6f6-9aa4-4fa8-b019-24ee171688e4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T17:36:38.000Z" - }, - "end": { - "$date": "2022-01-04T17:58:04.000Z" - }, - "events": [ - { - "uuid": "c878df64-eb22-4015-8dbf-6e44a9d42ab9", - "start": { - "$date": "2022-01-04T17:36:38.000Z" - }, - "end": { - "$date": "2022-01-04T17:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1bb2c1ce-cb1d-45df-a765-7ea2bfd52250", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-04T18:51:01.000Z" - }, - "end": { - "$date": "2022-01-04T19:35:02.000Z" - }, - "events": [ - { - "uuid": "5ea96402-8a69-4769-9786-6889702c1e63", - "start": { - "$date": "2022-01-04T18:51:01.000Z" - }, - "end": { - "$date": "2022-01-04T19:35:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "91d58b70-b1bd-4b7b-a69f-51d050f63342", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-04T19:24:15.000Z" - }, - "end": { - "$date": "2022-01-04T19:27:36.000Z" - }, - "events": [ - { - "uuid": "13854b35-72e4-404a-ad87-1da33d713fe5", - "start": { - "$date": "2022-01-04T19:24:15.000Z" - }, - "end": { - "$date": "2022-01-04T19:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1952e191-8a94-450d-a0a1-ca727b5bf6a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T20:45:13.000Z" - }, - "end": { - "$date": "2022-01-04T21:29:15.000Z" - }, - "events": [ - { - "uuid": "ac4a35e5-31c6-4875-8390-eaafc5d634d5", - "start": { - "$date": "2022-01-04T20:45:13.000Z" - }, - "end": { - "$date": "2022-01-04T21:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "44c386f9-d073-42b7-9835-21874a31fb92", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-04T21:23:30.000Z" - }, - "end": { - "$date": "2022-01-04T22:00:25.000Z" - }, - "events": [ - { - "uuid": "b2beed5c-91a2-4e73-b31e-0f41d6758d6d", - "start": { - "$date": "2022-01-04T21:23:30.000Z" - }, - "end": { - "$date": "2022-01-04T21:24:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cde5e564-3a7e-4abc-a527-589add380ed0", - "start": { - "$date": "2022-01-04T21:24:30.000Z" - }, - "end": { - "$date": "2022-01-04T21:41:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "695be0c8-ede2-4652-9ad9-931a38911963", - "start": { - "$date": "2022-01-04T21:41:30.000Z" - }, - "end": { - "$date": "2022-01-04T22:00:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3d69eb6e-b353-44fc-b858-04ce856581d3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T21:39:00.000Z" - }, - "end": { - "$date": "2022-01-04T21:53:52.000Z" - }, - "events": [ - { - "uuid": "37c33c0e-56d2-43df-8670-090ed014a30a", - "start": { - "$date": "2022-01-04T21:39:00.000Z" - }, - "end": { - "$date": "2022-01-04T21:53:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3b564c39-77b1-4e11-930f-e3b56740abab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T22:06:15.000Z" - }, - "end": { - "$date": "2022-01-04T22:15:37.000Z" - }, - "events": [ - { - "uuid": "c2acc176-7018-4ae9-b930-b8f654ab7ba9", - "start": { - "$date": "2022-01-04T22:06:15.000Z" - }, - "end": { - "$date": "2022-01-04T22:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c815a309-9f20-460e-8030-38684e627665", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-04T22:15:47.000Z" - }, - "end": { - "$date": "2022-01-04T22:17:07.000Z" - }, - "events": [ - { - "uuid": "97f716b0-10c0-4cfd-8cda-a8dccdebb0b0", - "start": { - "$date": "2022-01-04T22:15:47.000Z" - }, - "end": { - "$date": "2022-01-04T22:17:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0376e20f-d782-4bf9-a433-360ad5332121", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-04T22:28:09.000Z" - }, - "end": { - "$date": "2022-01-04T23:01:38.000Z" - }, - "events": [ - { - "uuid": "36a9dccf-9fbb-4ffe-8bbe-5172f466bbe6", - "start": { - "$date": "2022-01-04T22:28:09.000Z" - }, - "end": { - "$date": "2022-01-04T23:01:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "040fdb2e-8349-4a9a-96eb-3de5b730b968", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T22:58:50.000Z" - }, - "end": { - "$date": "2022-01-04T23:39:24.000Z" - }, - "events": [ - { - "uuid": "85eea16d-2ece-4fa3-8342-dbb662e6c291", - "start": { - "$date": "2022-01-04T22:58:50.000Z" - }, - "end": { - "$date": "2022-01-04T23:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "86f9e6c0-ce30-48b8-8c60-65331cf0da3f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-04T23:23:23.000Z" - }, - "end": { - "$date": "2022-01-04T23:51:34.000Z" - }, - "events": [ - { - "uuid": "58258a08-0791-4065-8936-a156a9445ed6", - "start": { - "$date": "2022-01-04T23:23:23.000Z" - }, - "end": { - "$date": "2022-01-04T23:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf4591fc-7400-4506-9d87-b789e1f2af3a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-04T23:40:24.000Z" - }, - "end": { - "$date": "2022-01-04T23:58:01.000Z" - }, - "events": [ - { - "uuid": "49e6f20b-4ca2-4382-a5e0-9c590e0a1f63", - "start": { - "$date": "2022-01-04T23:40:24.000Z" - }, - "end": { - "$date": "2022-01-04T23:58:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4da1e3d9-7618-4390-a30a-e59969ea54c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-04T23:39:58.000Z" - }, - "end": { - "$date": "2022-01-05T00:49:51.000Z" - }, - "events": [ - { - "uuid": "1d107c5a-e227-43ef-9995-cc6d37e5b3e6", - "start": { - "$date": "2022-01-04T23:39:58.000Z" - }, - "end": { - "$date": "2022-01-05T00:49:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6a2f74f9-0308-4902-8421-5945ac649cb4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-04T23:43:12.000Z" - }, - "end": { - "$date": "2022-01-05T00:09:39.000Z" - }, - "events": [ - { - "uuid": "6c5fc87d-24a1-473c-ab1a-91f4ead62ff3", - "start": { - "$date": "2022-01-04T23:43:12.000Z" - }, - "end": { - "$date": "2022-01-05T00:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "52adab09-6815-48d5-918f-febae08ea888", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-04T23:52:55.000Z" - }, - "end": { - "$date": "2022-01-05T00:00:40.000Z" - }, - "events": [ - { - "uuid": "954c168c-ac09-411d-af07-1da40b7590a1", - "start": { - "$date": "2022-01-04T23:52:55.000Z" - }, - "end": { - "$date": "2022-01-05T00:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "71c98b0f-35b9-43bb-ab81-589e2403bb30", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-04T23:55:48.000Z" - }, - "end": { - "$date": "2022-01-05T06:55:34.000Z" - }, - "events": [ - { - "uuid": "7c2cbca6-43ac-4279-80b5-59a11521f40d", - "start": { - "$date": "2022-01-04T23:55:48.000Z" - }, - "end": { - "$date": "2022-01-05T00:33:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "491d07a2-45c0-4c8c-ba8a-6783158aa683", - "start": { - "$date": "2022-01-05T00:33:48.000Z" - }, - "end": { - "$date": "2022-01-05T00:51:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ca985b3-56d9-43b5-963a-7000fff12802", - "start": { - "$date": "2022-01-05T00:51:48.000Z" - }, - "end": { - "$date": "2022-01-05T02:08:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74b8ee97-2261-4234-b047-e28c346b372d", - "start": { - "$date": "2022-01-05T02:08:48.000Z" - }, - "end": { - "$date": "2022-01-05T02:13:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d8e9e525-79cf-4627-987e-37803f7b6cba", - "start": { - "$date": "2022-01-05T02:13:48.000Z" - }, - "end": { - "$date": "2022-01-05T06:55:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "70e6c161-0e36-4c95-8016-96043f3da524", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T00:05:06.000Z" - }, - "end": { - "$date": "2022-01-05T00:49:34.000Z" - }, - "events": [ - { - "uuid": "8c5f0d94-9393-4586-a595-f264ed4081a8", - "start": { - "$date": "2022-01-05T00:05:06.000Z" - }, - "end": { - "$date": "2022-01-05T00:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "09b03827-b3e0-4adb-b298-afd572e45abd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-05T00:22:11.000Z" - }, - "end": { - "$date": "2022-01-05T01:45:54.000Z" - }, - "events": [ - { - "uuid": "9ca98139-4c29-4a00-9618-4557a68e78a4", - "start": { - "$date": "2022-01-05T00:22:11.000Z" - }, - "end": { - "$date": "2022-01-05T01:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "3d8ebea2-c180-4b5f-bc07-2db28da2461e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T00:51:35.000Z" - }, - "end": { - "$date": "2022-01-05T01:08:11.000Z" - }, - "events": [ - { - "uuid": "d7544fd1-546f-44d6-bde1-feb1b024973e", - "start": { - "$date": "2022-01-05T00:51:35.000Z" - }, - "end": { - "$date": "2022-01-05T01:08:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8265ca54-3013-44c8-96f6-e253c682743d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T01:08:22.000Z" - }, - "end": { - "$date": "2022-01-05T05:52:16.000Z" - }, - "events": [ - { - "uuid": "3b1d88cd-1e9c-4f4b-85d5-0040281510dd", - "start": { - "$date": "2022-01-05T01:08:22.000Z" - }, - "end": { - "$date": "2022-01-05T05:52:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "698f8705-c995-4af3-99e6-850870fe34e9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-05T01:46:34.000Z" - }, - "end": { - "$date": "2022-01-05T01:51:37.000Z" - }, - "events": [ - { - "uuid": "7dad6757-69e3-4286-8f68-b7bfff7fab1f", - "start": { - "$date": "2022-01-05T01:46:34.000Z" - }, - "end": { - "$date": "2022-01-05T01:51:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ddd1cdb5-9c9b-4bff-b97c-f34a0e3ab417", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-05T02:19:49.000Z" - }, - "end": { - "$date": "2022-01-05T02:33:55.000Z" - }, - "events": [ - { - "uuid": "260aa69e-981a-42cc-9963-fd19b8292461", - "start": { - "$date": "2022-01-05T02:19:49.000Z" - }, - "end": { - "$date": "2022-01-05T02:33:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "1f8aecf8-00c9-489d-8302-b10582fcde69", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-05T02:42:11.000Z" - }, - "end": { - "$date": "2022-01-05T03:46:11.000Z" - }, - "events": [ - { - "uuid": "193aad10-da3c-4186-8273-64d92d782b9d", - "start": { - "$date": "2022-01-05T02:42:11.000Z" - }, - "end": { - "$date": "2022-01-05T03:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5e341fab-02e5-405e-968f-8a129fef7ce3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-05T02:46:05.000Z" - }, - "end": { - "$date": "2022-01-05T04:21:22.000Z" - }, - "events": [ - { - "uuid": "d6b1e67b-f6b8-4555-8b3a-3ecf3841134f", - "start": { - "$date": "2022-01-05T02:46:05.000Z" - }, - "end": { - "$date": "2022-01-05T04:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "92fbb35b-3641-458d-9d6c-8efd0652b7a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-05T04:33:08.000Z" - }, - "end": { - "$date": "2022-01-05T05:15:00.000Z" - }, - "events": [ - { - "uuid": "9a52dc96-3cc7-44bc-8855-7ef4a7bf4a82", - "start": { - "$date": "2022-01-05T04:33:08.000Z" - }, - "end": { - "$date": "2022-01-05T05:15:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6fd5de8a-c61d-4708-92bb-9362c5443a93", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-05T03:06:13.000Z" - }, - "end": { - "$date": "2022-01-05T03:09:14.000Z" - }, - "events": [ - { - "uuid": "8c622b21-16b0-49b5-8099-d43e8eac0066", - "start": { - "$date": "2022-01-05T03:06:13.000Z" - }, - "end": { - "$date": "2022-01-05T03:09:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "90628a65-6262-4c29-a03f-471fc33cb146", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-05T03:38:20.000Z" - }, - "end": { - "$date": "2022-01-05T03:43:06.000Z" - }, - "events": [ - { - "uuid": "4680af8b-a284-4c21-bf8f-ef652607762b", - "start": { - "$date": "2022-01-05T03:38:20.000Z" - }, - "end": { - "$date": "2022-01-05T03:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "33d73c85-63ad-4b48-a048-55cfe59eb7bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-05T03:43:56.000Z" - }, - "end": { - "$date": "2022-01-05T04:33:18.000Z" - }, - "events": [ - { - "uuid": "80b1fac0-f48a-42c9-ba9e-2098e1e7626a", - "start": { - "$date": "2022-01-05T03:43:56.000Z" - }, - "end": { - "$date": "2022-01-05T04:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2cd06dd2-5f32-4b56-871e-56873303c803", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-05T03:47:06.000Z" - }, - "end": { - "$date": "2022-01-05T05:32:39.000Z" - }, - "events": [ - { - "uuid": "b8d1047b-5c79-4723-ac22-e1333b7c4522", - "start": { - "$date": "2022-01-05T03:47:06.000Z" - }, - "end": { - "$date": "2022-01-05T05:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6b8b3ab6-e62a-46a2-b622-f1a3ed22eb7f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-05T04:02:54.000Z" - }, - "end": { - "$date": "2022-01-05T04:04:25.000Z" - }, - "events": [ - { - "uuid": "677807a9-dc69-4a30-9684-3c3b2a140ca8", - "start": { - "$date": "2022-01-05T04:02:54.000Z" - }, - "end": { - "$date": "2022-01-05T04:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "bc0c7980-a30d-4555-a316-2931725d4b5c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-05T04:04:34.000Z" - }, - "end": { - "$date": "2022-01-05T04:08:00.000Z" - }, - "events": [ - { - "uuid": "c808767b-b805-4636-82e2-d7744eb03375", - "start": { - "$date": "2022-01-05T04:04:34.000Z" - }, - "end": { - "$date": "2022-01-05T04:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "0e5669e5-79d3-4703-a05b-47358fb1e282", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-05T04:11:14.000Z" - }, - "end": { - "$date": "2022-01-05T05:58:05.000Z" - }, - "events": [ - { - "uuid": "e4ef46e7-dd42-491e-b73b-f83f5efa7da4", - "start": { - "$date": "2022-01-05T04:11:14.000Z" - }, - "end": { - "$date": "2022-01-05T05:58:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ee277aa4-464f-4b5d-9046-b57f2e484ccb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-05T04:21:30.000Z" - }, - "end": { - "$date": "2022-01-05T05:15:10.000Z" - }, - "events": [ - { - "uuid": "71e08261-062f-4fcd-be3e-64cdfe53df92", - "start": { - "$date": "2022-01-05T04:21:30.000Z" - }, - "end": { - "$date": "2022-01-05T05:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "570d8903-1382-4c3b-a504-cc6850894bc2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-05T04:33:48.000Z" - }, - "end": { - "$date": "2022-01-05T05:15:12.000Z" - }, - "events": [ - { - "uuid": "b8246361-3f0a-4ce1-94e7-698911999b11", - "start": { - "$date": "2022-01-05T04:33:48.000Z" - }, - "end": { - "$date": "2022-01-05T05:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8fdf7ddb-ad82-4b7b-9af4-e7c512ceefc6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-05T05:24:38.000Z" - }, - "end": { - "$date": "2022-01-05T05:43:56.000Z" - }, - "events": [ - { - "uuid": "5e7015b1-6840-4977-87b4-9f5dbc3580a8", - "start": { - "$date": "2022-01-05T05:24:38.000Z" - }, - "end": { - "$date": "2022-01-05T05:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "23fac006-9c56-435a-ac4e-2735b2fc3bc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T05:53:37.000Z" - }, - "end": { - "$date": "2022-01-05T06:07:37.000Z" - }, - "events": [ - { - "uuid": "bf7a1d35-52ce-488f-8adb-531c12f319d8", - "start": { - "$date": "2022-01-05T05:53:37.000Z" - }, - "end": { - "$date": "2022-01-05T06:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a04bb6b0-f839-4ca2-b102-b50e10578637", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-05T06:00:26.000Z" - }, - "end": { - "$date": "2022-01-05T06:09:56.000Z" - }, - "events": [ - { - "uuid": "1d0d4d18-c4d1-4e6c-ab91-60b27e5bb99d", - "start": { - "$date": "2022-01-05T06:00:26.000Z" - }, - "end": { - "$date": "2022-01-05T06:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "ca631de8-358a-4573-be74-1144fec9602a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-05T06:10:26.000Z" - }, - "end": { - "$date": "2022-01-05T06:48:17.000Z" - }, - "events": [ - { - "uuid": "fac0959c-7022-4f84-bed9-3ee84fe7f824", - "start": { - "$date": "2022-01-05T06:10:26.000Z" - }, - "end": { - "$date": "2022-01-05T06:48:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "015c545a-b5be-4530-a18d-63e34930d3c3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T06:37:41.000Z" - }, - "end": { - "$date": "2022-01-05T07:03:16.000Z" - }, - "events": [ - { - "uuid": "666c4151-252f-4379-a699-2f467eb7de2c", - "start": { - "$date": "2022-01-05T06:37:41.000Z" - }, - "end": { - "$date": "2022-01-05T07:03:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ca84b98a-6d2d-4fdf-ac27-949c5e29a6ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T07:03:37.000Z" - }, - "end": { - "$date": "2022-01-05T07:30:32.000Z" - }, - "events": [ - { - "uuid": "a4770c29-0a55-46f7-8961-5eace58209cd", - "start": { - "$date": "2022-01-05T07:03:37.000Z" - }, - "end": { - "$date": "2022-01-05T07:30:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ba8cd350-bb81-490d-88ac-c21f301322be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-05T07:58:02.000Z" - }, - "end": { - "$date": "2022-01-05T08:11:46.000Z" - }, - "events": [ - { - "uuid": "4bab1e0b-83fa-499b-aa72-57b23dda60e4", - "start": { - "$date": "2022-01-05T07:58:02.000Z" - }, - "end": { - "$date": "2022-01-05T08:11:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "285a126b-fc23-4ed5-b9e9-b5b9600461fd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-05T17:15:32.000Z" - }, - "end": { - "$date": "2022-01-05T22:21:13.000Z" - }, - "events": [ - { - "uuid": "4e65962e-bf6c-4374-a610-036133dca1bd", - "start": { - "$date": "2022-01-05T17:15:32.000Z" - }, - "end": { - "$date": "2022-01-05T20:39:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ee324eff-f9b5-490a-a208-4138b764de62", - "start": { - "$date": "2022-01-05T20:39:32.000Z" - }, - "end": { - "$date": "2022-01-05T20:49:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd289435-6715-4234-a4af-0086b3ec1d0d", - "start": { - "$date": "2022-01-05T20:49:32.000Z" - }, - "end": { - "$date": "2022-01-05T20:51:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f4cabc9-2108-43e3-9270-591e2c5039fd", - "start": { - "$date": "2022-01-05T20:51:32.000Z" - }, - "end": { - "$date": "2022-01-05T20:56:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ed9c7974-21ef-4edf-a764-4630b51b3caf", - "start": { - "$date": "2022-01-05T20:56:32.000Z" - }, - "end": { - "$date": "2022-01-05T20:58:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f3b06f9d-ddd5-441f-99e3-f8676f37a91c", - "start": { - "$date": "2022-01-05T20:58:32.000Z" - }, - "end": { - "$date": "2022-01-05T21:17:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c11471a-00be-41f1-8cfb-2e319484561f", - "start": { - "$date": "2022-01-05T21:17:32.000Z" - }, - "end": { - "$date": "2022-01-05T22:06:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63570eb2-26ae-40da-8545-c2b287a59644", - "start": { - "$date": "2022-01-05T22:06:32.000Z" - }, - "end": { - "$date": "2022-01-05T22:18:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4f14ba2c-80d7-4404-a105-bbfd2f668c0b", - "start": { - "$date": "2022-01-05T22:18:32.000Z" - }, - "end": { - "$date": "2022-01-05T22:21:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "6c910763-179f-4776-92cc-915506e08273", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-05T17:15:56.000Z" - }, - "end": { - "$date": "2022-01-05T17:57:26.000Z" - }, - "events": [ - { - "uuid": "d1b57b69-ede9-4e71-b5f8-6da0b3237812", - "start": { - "$date": "2022-01-05T17:15:56.000Z" - }, - "end": { - "$date": "2022-01-05T17:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8ff6d8d4-2b9f-402a-a269-c7a91a085a41", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-05T19:23:26.000Z" - }, - "end": { - "$date": "2022-01-05T20:12:43.000Z" - }, - "events": [ - { - "uuid": "4fb9332c-e1ea-4f67-a3e9-6455eb121eb6", - "start": { - "$date": "2022-01-05T19:23:26.000Z" - }, - "end": { - "$date": "2022-01-05T20:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "937d0765-d985-45a1-8415-f7872c647ed9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-05T19:32:25.000Z" - }, - "end": { - "$date": "2022-01-05T22:24:21.000Z" - }, - "events": [ - { - "uuid": "a66f1ef2-484c-445a-8921-f3a56588b06e", - "start": { - "$date": "2022-01-05T19:32:25.000Z" - }, - "end": { - "$date": "2022-01-05T22:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e844611-240f-49b9-8ed7-8695a6f199cf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T00:13:42.000Z" - }, - "end": { - "$date": "2022-01-06T00:49:36.000Z" - }, - "events": [ - { - "uuid": "b432bfac-9924-4330-b365-a24bfaa22504", - "start": { - "$date": "2022-01-06T00:13:42.000Z" - }, - "end": { - "$date": "2022-01-06T00:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "04239c76-c786-4e62-9bd6-994e11acd456", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-06T01:16:43.000Z" - }, - "end": { - "$date": "2022-01-06T03:18:48.000Z" - }, - "events": [ - { - "uuid": "9afdc66e-aa44-45b0-9807-5b785cac8426", - "start": { - "$date": "2022-01-06T01:16:43.000Z" - }, - "end": { - "$date": "2022-01-06T03:18:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7db0e1cf-39eb-4241-bafa-3f7c8c000d51", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-06T01:17:40.000Z" - }, - "end": { - "$date": "2022-01-06T03:18:42.000Z" - }, - "events": [ - { - "uuid": "48585cb4-d83b-45a1-ba90-882b6b6ced67", - "start": { - "$date": "2022-01-06T01:17:40.000Z" - }, - "end": { - "$date": "2022-01-06T03:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5f619d74-9dfb-4794-adfc-2936fdb4143a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T01:41:40.000Z" - }, - "end": { - "$date": "2022-01-06T02:20:37.000Z" - }, - "events": [ - { - "uuid": "218f91e7-2668-4720-9e8b-cc25f2eaead5", - "start": { - "$date": "2022-01-06T01:41:40.000Z" - }, - "end": { - "$date": "2022-01-06T02:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc53dcdf-9ba4-4a45-a0ee-bd143c2557e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T02:20:57.000Z" - }, - "end": { - "$date": "2022-01-06T03:12:31.000Z" - }, - "events": [ - { - "uuid": "e17209ff-0f96-4b7e-a5f2-045445f585c9", - "start": { - "$date": "2022-01-06T02:20:57.000Z" - }, - "end": { - "$date": "2022-01-06T03:12:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "67d902a9-935e-461e-891b-8cc9aef8a524", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-06T02:22:41.000Z" - }, - "end": { - "$date": "2022-01-06T05:57:57.000Z" - }, - "events": [ - { - "uuid": "440656c6-6129-408c-ad95-999b75962278", - "start": { - "$date": "2022-01-06T02:22:41.000Z" - }, - "end": { - "$date": "2022-01-06T05:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d6ac33cf-434b-4ba2-bee6-67849d29c3a6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-06T02:30:53.000Z" - }, - "end": { - "$date": "2022-01-06T03:19:01.000Z" - }, - "events": [ - { - "uuid": "381d44f0-ccb5-4cfd-afe6-d483e27adf14", - "start": { - "$date": "2022-01-06T02:30:53.000Z" - }, - "end": { - "$date": "2022-01-06T03:19:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "889e976c-7432-49d7-ac7f-3f546c24fb55", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-06T03:07:45.000Z" - }, - "end": { - "$date": "2022-01-06T03:07:52.000Z" - }, - "events": [ - { - "uuid": "4fd83918-8558-47fb-909f-e99f8885379d", - "start": { - "$date": "2022-01-06T03:07:45.000Z" - }, - "end": { - "$date": "2022-01-06T03:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6ce7a2c1-fa84-4d68-b92a-c86301144a69", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-06T02:56:05.000Z" - }, - "end": { - "$date": "2022-01-06T04:07:23.000Z" - }, - "events": [ - { - "uuid": "8ecbe57e-efcb-4b4a-99eb-35d6a5d221c7", - "start": { - "$date": "2022-01-06T02:56:05.000Z" - }, - "end": { - "$date": "2022-01-06T04:07:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "38b0c308-8391-4a72-adde-56763678f035", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-06T03:08:00.000Z" - }, - "end": { - "$date": "2022-01-06T03:38:23.000Z" - }, - "events": [ - { - "uuid": "40717560-3d97-49da-a040-36b429a7c6c1", - "start": { - "$date": "2022-01-06T03:08:00.000Z" - }, - "end": { - "$date": "2022-01-06T03:38:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8caaa01f-2635-4ff7-b80e-b28a0b67a9cc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-06T03:11:45.000Z" - }, - "end": { - "$date": "2022-01-06T03:31:31.000Z" - }, - "events": [ - { - "uuid": "2cbbc0e6-5f1e-4908-9e93-9918c8960191", - "start": { - "$date": "2022-01-06T03:11:45.000Z" - }, - "end": { - "$date": "2022-01-06T03:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "2802db2d-5d03-454a-a650-7d3b497b123b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T03:13:02.000Z" - }, - "end": { - "$date": "2022-01-06T03:34:44.000Z" - }, - "events": [ - { - "uuid": "9a5d7263-a42d-4151-9712-f326765dc1c5", - "start": { - "$date": "2022-01-06T03:13:02.000Z" - }, - "end": { - "$date": "2022-01-06T03:34:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "001e793e-c29f-450b-8765-90e1dfee1bfc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-06T03:19:36.000Z" - }, - "end": { - "$date": "2022-01-06T06:28:58.000Z" - }, - "events": [ - { - "uuid": "9a7c4eff-4483-414f-bebb-fbcfbbdc4d6e", - "start": { - "$date": "2022-01-06T03:19:36.000Z" - }, - "end": { - "$date": "2022-01-06T04:33:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "857b850c-08b6-4a89-8956-ecaadf16c95b", - "start": { - "$date": "2022-01-06T04:33:36.000Z" - }, - "end": { - "$date": "2022-01-06T04:44:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edc6062d-fb9a-4db7-89a3-19236b18173f", - "start": { - "$date": "2022-01-06T04:44:36.000Z" - }, - "end": { - "$date": "2022-01-06T06:00:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "99c351c7-5514-40e7-afae-e38f9fa7488c", - "start": { - "$date": "2022-01-06T06:00:36.000Z" - }, - "end": { - "$date": "2022-01-06T06:25:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d5755a44-321b-4206-9be8-246a4333a9f5", - "start": { - "$date": "2022-01-06T06:25:36.000Z" - }, - "end": { - "$date": "2022-01-06T06:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bd9d6fc-10da-4986-9205-eb15e9690115", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T03:32:27.000Z" - }, - "end": { - "$date": "2022-01-06T03:45:24.000Z" - }, - "events": [ - { - "uuid": "0c73b822-52a8-4552-b852-d5fc67553239", - "start": { - "$date": "2022-01-06T03:32:27.000Z" - }, - "end": { - "$date": "2022-01-06T03:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "1f3319c5-3c57-4d81-a156-0366979f0980", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-06T03:33:26.000Z" - }, - "end": { - "$date": "2022-01-06T04:10:02.000Z" - }, - "events": [ - { - "uuid": "a1ed02fd-73a8-4244-9f46-4b4631e04696", - "start": { - "$date": "2022-01-06T03:33:26.000Z" - }, - "end": { - "$date": "2022-01-06T04:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8d115f1e-e253-403e-978f-84c12eb9779a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T03:34:54.000Z" - }, - "end": { - "$date": "2022-01-06T05:24:11.000Z" - }, - "events": [ - { - "uuid": "446958d6-c02d-40a1-9977-99b8afcf3204", - "start": { - "$date": "2022-01-06T03:34:54.000Z" - }, - "end": { - "$date": "2022-01-06T04:58:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "42d57dc3-6946-4e90-9769-1fcf331bd89b", - "start": { - "$date": "2022-01-06T04:58:54.000Z" - }, - "end": { - "$date": "2022-01-06T05:22:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1cb7602e-d45d-4351-990e-828014958173", - "start": { - "$date": "2022-01-06T05:22:54.000Z" - }, - "end": { - "$date": "2022-01-06T05:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "868cec5d-1fd0-474e-9652-8fb894b03bc7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-06T03:39:31.000Z" - }, - "end": { - "$date": "2022-01-06T03:44:33.000Z" - }, - "events": [ - { - "uuid": "ba95c34d-4a82-4aa4-91e6-d97ea5d360a2", - "start": { - "$date": "2022-01-06T03:39:31.000Z" - }, - "end": { - "$date": "2022-01-06T03:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c66ab6dc-fce7-4a47-9686-88f5e37045a3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T03:46:38.000Z" - }, - "end": { - "$date": "2022-01-06T04:21:55.000Z" - }, - "events": [ - { - "uuid": "51f90674-eb5b-4676-85ce-78f6d3bdd964", - "start": { - "$date": "2022-01-06T03:46:38.000Z" - }, - "end": { - "$date": "2022-01-06T04:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "89b4ace2-7a79-469a-8d5d-95b4399ad75e", - "uuid": "f1bc518c-5aad-4929-8bb2-8cd512c1d8bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-06T04:11:22.000Z" - }, - "end": { - "$date": "2022-01-06T04:48:22.000Z" - }, - "events": [ - { - "uuid": "75909d48-aa25-4ed6-9c4c-4d3fbd0cd0b9", - "start": { - "$date": "2022-01-06T04:11:22.000Z" - }, - "end": { - "$date": "2022-01-06T04:48:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96430f60-ab3b-4b7f-b849-794daa52e4f0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T04:23:41.000Z" - }, - "end": { - "$date": "2022-01-06T04:59:30.000Z" - }, - "events": [ - { - "uuid": "f1511959-4ceb-4780-b8f8-0f01b280cf41", - "start": { - "$date": "2022-01-06T04:23:41.000Z" - }, - "end": { - "$date": "2022-01-06T04:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d40e8f7a-32d5-4060-8493-fd7e18b6c67a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-06T04:35:12.000Z" - }, - "end": { - "$date": "2022-01-06T05:01:10.000Z" - }, - "events": [ - { - "uuid": "565e7185-eb7b-4ee9-9ec9-ab95a2e45624", - "start": { - "$date": "2022-01-06T04:35:12.000Z" - }, - "end": { - "$date": "2022-01-06T05:01:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14efbd39-e83b-42a0-8983-2a12957087fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-06T05:06:42.000Z" - }, - "end": { - "$date": "2022-01-06T09:47:10.000Z" - }, - "events": [ - { - "uuid": "607834c3-dfd2-4708-ac2f-20060c57975a", - "start": { - "$date": "2022-01-06T05:06:42.000Z" - }, - "end": { - "$date": "2022-01-06T09:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a76c4e2f-ae3e-41f5-a99e-f2f14e0c9840", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-06T05:22:13.000Z" - }, - "end": { - "$date": "2022-01-06T06:50:50.000Z" - }, - "events": [ - { - "uuid": "d9c33285-ffb9-4238-8e50-3121307d30fc", - "start": { - "$date": "2022-01-06T05:22:13.000Z" - }, - "end": { - "$date": "2022-01-06T06:50:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c354cb0-ad0f-4572-9bc0-8d41992e8869", - "uuid": "fb3e1ce1-0faf-4fba-8baa-990d22556edf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T06:09:16.000Z" - }, - "end": { - "$date": "2022-01-06T06:29:12.000Z" - }, - "events": [ - { - "uuid": "008224ad-c091-48da-9017-6fd6aa406b41", - "start": { - "$date": "2022-01-06T06:09:16.000Z" - }, - "end": { - "$date": "2022-01-06T06:29:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d367d26-4d29-4397-b71a-d7c5f211a442", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T05:38:16.000Z" - }, - "end": { - "$date": "2022-01-06T06:17:35.000Z" - }, - "events": [ - { - "uuid": "40fcbd7a-1477-4509-b71d-73f783f538b1", - "start": { - "$date": "2022-01-06T05:38:16.000Z" - }, - "end": { - "$date": "2022-01-06T06:17:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2dc39bb-7b8f-43cc-a1a9-9869252af789", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T06:18:50.000Z" - }, - "end": { - "$date": "2022-01-06T06:59:06.000Z" - }, - "events": [ - { - "uuid": "d88cf2ea-3be2-4078-a2b2-5e2433274392", - "start": { - "$date": "2022-01-06T06:18:50.000Z" - }, - "end": { - "$date": "2022-01-06T06:59:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "10b684da-64fa-4207-99e1-3decef2da8f0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-06T06:40:51.000Z" - }, - "end": { - "$date": "2022-01-06T09:24:01.000Z" - }, - "events": [ - { - "uuid": "db0e8d48-d246-431b-9f46-d0298b420ac5", - "start": { - "$date": "2022-01-06T06:40:51.000Z" - }, - "end": { - "$date": "2022-01-06T09:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32c9e812-c280-4cc8-ad91-e35cc5020b0e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T06:59:55.000Z" - }, - "end": { - "$date": "2022-01-06T07:37:02.000Z" - }, - "events": [ - { - "uuid": "e36f5176-c250-4f2c-8ba7-87a4c52af07b", - "start": { - "$date": "2022-01-06T06:59:55.000Z" - }, - "end": { - "$date": "2022-01-06T07:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ce734bd9-edc2-4ee0-94ef-cfe96f3cf473", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-06T16:36:56.000Z" - }, - "end": { - "$date": "2022-01-06T17:15:37.000Z" - }, - "events": [ - { - "uuid": "65b8f5fd-967e-407b-9080-86cfd7d7f840", - "start": { - "$date": "2022-01-06T16:36:56.000Z" - }, - "end": { - "$date": "2022-01-06T17:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "1eba7fb2-7fc7-44df-ae4b-99052d1902fe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-06T22:52:15.000Z" - }, - "end": { - "$date": "2022-01-06T23:47:42.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-06T22:52:15.000Z" - }, - "end": { - "$date": "2022-01-06T23:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "901cc764-5949-4d35-96da-200a0d92bef5", - "uuid": "f8d7d871-96b1-4c60-bd3f-31262727ff89", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T22:56:48.000Z" - }, - "end": { - "$date": "2022-01-06T23:36:31.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-06T22:56:48.000Z" - }, - "end": { - "$date": "2022-01-06T23:36:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "901cc764-5949-4d35-96da-200a0d92bef5", - "uuid": "5574dea4-2fd1-4f06-81ec-7e212cd7a0a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-06T23:36:37.000Z" - }, - "end": { - "$date": "2022-01-07T00:09:22.000Z" - }, - "events": [ - { - "uuid": "b46cbe85-9640-43c0-a487-44067b28c10e", - "start": { - "$date": "2022-01-06T23:36:37.000Z" - }, - "end": { - "$date": "2022-01-07T00:09:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2e308032-d760-47bb-be5d-50ccf4688643", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-06T23:49:57.000Z" - }, - "end": { - "$date": "2022-01-07T02:02:37.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-06T23:49:57.000Z" - }, - "end": { - "$date": "2022-01-07T02:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "901cc764-5949-4d35-96da-200a0d92bef5", - "uuid": "42119f86-4ef2-4bcc-9529-636373d39a1f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T00:09:33.000Z" - }, - "end": { - "$date": "2022-01-07T01:41:24.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-01-07T00:09:33.000Z" - }, - "end": { - "$date": "2022-01-07T01:41:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "c4920bcf-9d9a-4714-8b96-90ecaf648ffe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-07T01:01:57.000Z" - }, - "end": { - "$date": "2022-01-07T01:04:12.000Z" - }, - "events": [ - { - "uuid": "6f2ee2e8-4ce0-4a5f-ad80-bb22f548ce00", - "start": { - "$date": "2022-01-07T01:01:57.000Z" - }, - "end": { - "$date": "2022-01-07T01:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "a1d80ee0-aed4-45a8-a774-2d2d66e42efc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-07T01:04:22.000Z" - }, - "end": { - "$date": "2022-01-07T02:15:28.000Z" - }, - "events": [ - { - "uuid": "0952224f-3700-4fa0-ad47-02548b4f987c", - "start": { - "$date": "2022-01-07T01:04:22.000Z" - }, - "end": { - "$date": "2022-01-07T02:15:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "901cc764-5949-4d35-96da-200a0d92bef5", - "uuid": "9b7c1398-c7a9-48bd-872a-57822d68cac1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T01:46:40.000Z" - }, - "end": { - "$date": "2022-01-07T02:06:20.000Z" - }, - "events": [ - { - "uuid": "bc20ea92-65c6-4bc1-8c93-d8452fbe063d", - "start": { - "$date": "2022-01-07T01:46:40.000Z" - }, - "end": { - "$date": "2022-01-07T02:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "ad660e25-ec2e-4f00-9580-52129f185c39", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-07T01:59:37.000Z" - }, - "end": { - "$date": "2022-01-07T02:35:09.000Z" - }, - "events": [ - { - "uuid": "9bb37b44-e42c-47ab-8063-10f8213a2ea3", - "start": { - "$date": "2022-01-07T01:59:37.000Z" - }, - "end": { - "$date": "2022-01-07T02:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c36e5370-3b2e-4f6d-a84e-aaebd7a90f10", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-07T02:17:03.000Z" - }, - "end": { - "$date": "2022-01-07T02:21:08.000Z" - }, - "events": [ - { - "uuid": "768c2875-9faf-4516-ba91-1ec5df71d701", - "start": { - "$date": "2022-01-07T02:17:03.000Z" - }, - "end": { - "$date": "2022-01-07T02:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "93e19257-9442-4ff3-bfa1-5808bfcc9bd3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-07T02:17:17.000Z" - }, - "end": { - "$date": "2022-01-07T02:21:16.000Z" - }, - "events": [ - { - "uuid": "8ad5950c-c7c8-4bc8-bca7-4ef45a6c2206", - "start": { - "$date": "2022-01-07T02:17:17.000Z" - }, - "end": { - "$date": "2022-01-07T02:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "82599c3d-d00a-43c8-baeb-1db6e798799e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-07T02:23:38.000Z" - }, - "end": { - "$date": "2022-01-07T06:14:32.000Z" - }, - "events": [ - { - "uuid": "ffa0196b-4578-4fab-80c8-32a5222a13ad", - "start": { - "$date": "2022-01-07T02:23:38.000Z" - }, - "end": { - "$date": "2022-01-07T06:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "9f4fe669-a66d-49de-b49c-cd3ba64a94da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T02:45:42.000Z" - }, - "end": { - "$date": "2022-01-07T03:41:33.000Z" - }, - "events": [ - { - "uuid": "6e5a56b1-c3be-4f30-9455-4607b0c5af40", - "start": { - "$date": "2022-01-07T02:45:42.000Z" - }, - "end": { - "$date": "2022-01-07T03:41:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "41478460-c0bc-4382-a4e5-2dae713ce7ae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-07T02:47:45.000Z" - }, - "end": { - "$date": "2022-01-07T03:41:52.000Z" - }, - "events": [ - { - "uuid": "81861615-46ec-43bb-a9ac-3f9f08404a5f", - "start": { - "$date": "2022-01-07T02:47:45.000Z" - }, - "end": { - "$date": "2022-01-07T03:41:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "6ca098f0-d722-4d7c-adf4-502457064c8a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-07T03:47:03.000Z" - }, - "end": { - "$date": "2022-01-07T05:33:07.000Z" - }, - "events": [ - { - "uuid": "92dc077e-084a-4acf-bf08-b561198540cb", - "start": { - "$date": "2022-01-07T03:47:03.000Z" - }, - "end": { - "$date": "2022-01-07T05:29:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4dae199-120e-4395-aa60-39faca7c0e39", - "start": { - "$date": "2022-01-07T05:29:03.000Z" - }, - "end": { - "$date": "2022-01-07T05:33:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "5d9e56cb-7656-4c73-a26d-3c6f4af9ad91", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T05:02:07.000Z" - }, - "end": { - "$date": "2022-01-07T05:37:24.000Z" - }, - "events": [ - { - "uuid": "b4350fa3-6c37-4f28-b42a-57c7254f3351", - "start": { - "$date": "2022-01-07T05:02:07.000Z" - }, - "end": { - "$date": "2022-01-07T05:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "3e7c3a6c-67c4-4755-b15d-bd3f7ded0501", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-07T05:02:41.000Z" - }, - "end": { - "$date": "2022-01-07T05:11:57.000Z" - }, - "events": [ - { - "uuid": "b717d909-fe24-4efa-9d68-0633936b1b50", - "start": { - "$date": "2022-01-07T05:02:41.000Z" - }, - "end": { - "$date": "2022-01-07T05:11:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "697cc878-a0e5-4f91-a5f1-bcbe7eb3fcf7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-07T05:12:38.000Z" - }, - "end": { - "$date": "2022-01-07T05:41:44.000Z" - }, - "events": [ - { - "uuid": "8a1bdfb2-e9d5-411b-9ecb-f4450b16db5a", - "start": { - "$date": "2022-01-07T05:12:38.000Z" - }, - "end": { - "$date": "2022-01-07T05:41:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "81ed9bd0-fc20-47d1-bba3-16b2204b7f1a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-07T05:33:47.000Z" - }, - "end": { - "$date": "2022-01-07T07:25:46.000Z" - }, - "events": [ - { - "uuid": "eba0ebcf-57c9-46be-a4d6-6cdef42b9cbd", - "start": { - "$date": "2022-01-07T05:33:47.000Z" - }, - "end": { - "$date": "2022-01-07T07:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "1c97d658-96ff-4abd-a097-8a4d9516a4a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T05:38:34.000Z" - }, - "end": { - "$date": "2022-01-07T06:44:36.000Z" - }, - "events": [ - { - "uuid": "f145f2de-ef17-471c-9c0a-0d63aa171928", - "start": { - "$date": "2022-01-07T05:38:34.000Z" - }, - "end": { - "$date": "2022-01-07T06:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "02bc7961-7b89-462c-ab36-3ddd63baedb8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-07T05:47:09.000Z" - }, - "end": { - "$date": "2022-01-07T07:25:38.000Z" - }, - "events": [ - { - "uuid": "da927313-da20-4ba6-b29e-107a3c300cec", - "start": { - "$date": "2022-01-07T05:47:09.000Z" - }, - "end": { - "$date": "2022-01-07T07:25:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0abc4c03-31f8-4718-bdb5-9492b3a937b8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T06:44:52.000Z" - }, - "end": { - "$date": "2022-01-07T07:14:06.000Z" - }, - "events": [ - { - "uuid": "ed34d46f-9071-4308-ac8a-bbb04fb9ab31", - "start": { - "$date": "2022-01-07T06:44:52.000Z" - }, - "end": { - "$date": "2022-01-07T07:14:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9d3b5212-2b6c-4052-98f9-d0c556f2a2d7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-07T07:31:39.000Z" - }, - "end": { - "$date": "2022-01-07T08:37:43.000Z" - }, - "events": [ - { - "uuid": "46f4742e-d840-4be0-916c-3eab2671e6af", - "start": { - "$date": "2022-01-07T07:31:39.000Z" - }, - "end": { - "$date": "2022-01-07T08:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e1beaf7b-21c6-49ef-a877-e0ed0b9afab3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-07T16:09:48.000Z" - }, - "end": { - "$date": "2022-01-07T17:22:37.000Z" - }, - "events": [ - { - "uuid": "38dace1c-af05-48a4-aa01-c00fd369c172", - "start": { - "$date": "2022-01-07T16:09:48.000Z" - }, - "end": { - "$date": "2022-01-07T16:23:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "acd5aeeb-22f6-4a2a-a02d-bdcaf6d66171", - "start": { - "$date": "2022-01-07T16:23:48.000Z" - }, - "end": { - "$date": "2022-01-07T16:45:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "81ce415a-31a7-4b2e-9eba-c8a57e4242c0", - "start": { - "$date": "2022-01-07T16:45:48.000Z" - }, - "end": { - "$date": "2022-01-07T17:22:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a4ff0401-bdc6-4a0f-b84b-f952607f7209", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-07T17:26:44.000Z" - }, - "end": { - "$date": "2022-01-07T19:47:16.000Z" - }, - "events": [ - { - "uuid": "e6a5d6c7-a0cd-45fc-aff0-8e3ad52362f9", - "start": { - "$date": "2022-01-07T17:26:44.000Z" - }, - "end": { - "$date": "2022-01-07T19:47:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b79444c7-b018-4d00-9e5d-0307c5a18c62", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-07T17:40:40.000Z" - }, - "end": { - "$date": "2022-01-07T18:03:35.000Z" - }, - "events": [ - { - "uuid": "0a911e92-456c-4082-becc-f49fc10fbc2d", - "start": { - "$date": "2022-01-07T17:40:40.000Z" - }, - "end": { - "$date": "2022-01-07T18:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "600b378e-fae7-45f2-8131-e5921ddf10ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-07T18:03:57.000Z" - }, - "end": { - "$date": "2022-01-07T18:05:07.000Z" - }, - "events": [ - { - "uuid": "5821ebd1-68b5-4024-a905-88097c8efc40", - "start": { - "$date": "2022-01-07T18:03:57.000Z" - }, - "end": { - "$date": "2022-01-07T18:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7090f2cf-a477-47ba-b4d1-7b19687fbd09", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-07T18:07:23.000Z" - }, - "end": { - "$date": "2022-01-07T18:39:53.000Z" - }, - "events": [ - { - "uuid": "89244f05-3c9a-4dbc-b50b-debeaaddeb2c", - "start": { - "$date": "2022-01-07T18:07:23.000Z" - }, - "end": { - "$date": "2022-01-07T18:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fd84108-1ae4-4a1b-8394-60f312a2e16e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-07T18:42:17.000Z" - }, - "end": { - "$date": "2022-01-07T18:57:46.000Z" - }, - "events": [ - { - "uuid": "d9acbaef-4f83-46c1-871e-952174fc0260", - "start": { - "$date": "2022-01-07T18:42:17.000Z" - }, - "end": { - "$date": "2022-01-07T18:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "167082da-afde-4f9c-91e1-8a32ce32243d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-07T19:09:39.000Z" - }, - "end": { - "$date": "2022-01-07T19:42:05.000Z" - }, - "events": [ - { - "uuid": "e3896184-3fb6-4ee6-be6f-93f5b9ceeeac", - "start": { - "$date": "2022-01-07T19:09:39.000Z" - }, - "end": { - "$date": "2022-01-07T19:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72b8ec8d-ba6c-4785-ab23-8a642b4e5f1c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-07T21:19:56.000Z" - }, - "end": { - "$date": "2022-01-07T21:56:49.000Z" - }, - "events": [ - { - "uuid": "4aa6fe22-680c-4537-a3e8-1e1718fa938c", - "start": { - "$date": "2022-01-07T21:19:56.000Z" - }, - "end": { - "$date": "2022-01-07T21:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "e0b03c66-da6d-4061-a475-d470ce24beee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-07T20:39:13.000Z" - }, - "end": { - "$date": "2022-01-07T20:50:40.000Z" - }, - "events": [ - { - "uuid": "6036b938-4cb7-435c-886a-1394ed858f21", - "start": { - "$date": "2022-01-07T20:39:13.000Z" - }, - "end": { - "$date": "2022-01-07T20:50:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7083c9bf-ba75-479a-84db-48658fc90e60", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-07T22:01:47.000Z" - }, - "end": { - "$date": "2022-01-07T22:35:25.000Z" - }, - "events": [ - { - "uuid": "85aefe3a-9912-4ef4-b2f0-0403dbe1f3fe", - "start": { - "$date": "2022-01-07T22:01:47.000Z" - }, - "end": { - "$date": "2022-01-07T22:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "901cc764-5949-4d35-96da-200a0d92bef5", - "uuid": "3882175d-18e5-4c9a-93ce-ff7487f4dd87", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T22:15:42.000Z" - }, - "end": { - "$date": "2022-01-07T23:23:00.000Z" - }, - "events": [ - { - "uuid": "e4fcf948-b098-499e-9ab7-ebda533eb713", - "start": { - "$date": "2022-01-07T22:15:42.000Z" - }, - "end": { - "$date": "2022-01-07T23:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "10726a4a-e077-4f35-8315-4d84e6e03a1c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-07T22:58:30.000Z" - }, - "end": { - "$date": "2022-01-08T05:34:20.000Z" - }, - "events": [ - { - "uuid": "a3fa2efb-a0ac-417e-9ceb-24d98203757c", - "start": { - "$date": "2022-01-07T22:58:30.000Z" - }, - "end": { - "$date": "2022-01-08T00:41:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "68e2b3e4-c02f-467c-ba6d-714801ef4359", - "start": { - "$date": "2022-01-08T00:41:30.000Z" - }, - "end": { - "$date": "2022-01-08T00:45:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa663ffa-dfaa-4dc6-891e-22b0236e4c4f", - "start": { - "$date": "2022-01-08T00:45:30.000Z" - }, - "end": { - "$date": "2022-01-08T05:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "361c7be9-784a-4575-8895-a0b7cbc78ae6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-07T23:23:16.000Z" - }, - "end": { - "$date": "2022-01-08T00:19:30.000Z" - }, - "events": [ - { - "uuid": "9f204108-7f0f-469c-976e-26cfc27a5c6d", - "start": { - "$date": "2022-01-07T23:23:16.000Z" - }, - "end": { - "$date": "2022-01-08T00:19:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "8fe3a8fe-b848-4baf-9e1d-9cd10a01fede", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T00:22:41.000Z" - }, - "end": { - "$date": "2022-01-08T01:10:11.000Z" - }, - "events": [ - { - "uuid": "ef99b6b9-32e7-477a-8c2b-e91d926dda91", - "start": { - "$date": "2022-01-08T00:22:41.000Z" - }, - "end": { - "$date": "2022-01-08T01:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "60ee41ee-c8f9-4d6b-9ddb-6eb8cb785b19", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T01:28:21.000Z" - }, - "end": { - "$date": "2022-01-08T02:16:47.000Z" - }, - "events": [ - { - "uuid": "a1e37a1b-52f6-44b6-a5f9-a5937bc527f1", - "start": { - "$date": "2022-01-08T01:28:21.000Z" - }, - "end": { - "$date": "2022-01-08T02:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "5796e5f6-8be2-47c1-a98a-f9d766836ab9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T01:46:36.000Z" - }, - "end": { - "$date": "2022-01-08T02:40:22.000Z" - }, - "events": [ - { - "uuid": "6bb112ee-3406-46aa-87c0-2220511593e8", - "start": { - "$date": "2022-01-08T01:46:36.000Z" - }, - "end": { - "$date": "2022-01-08T02:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cf5c614b-9352-425e-8df3-edeb486b81d9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T03:07:16.000Z" - }, - "end": { - "$date": "2022-01-08T04:25:00.000Z" - }, - "events": [ - { - "uuid": "4664c90f-a1f5-458c-b3b7-4dd94149c6c5", - "start": { - "$date": "2022-01-08T03:07:16.000Z" - }, - "end": { - "$date": "2022-01-08T04:25:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4a4faf94-ab10-4461-83ed-cf0043b22d7c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T03:08:42.000Z" - }, - "end": { - "$date": "2022-01-08T03:22:49.000Z" - }, - "events": [ - { - "uuid": "83aee239-b4d5-458a-b17c-d82adce73c35", - "start": { - "$date": "2022-01-08T03:08:42.000Z" - }, - "end": { - "$date": "2022-01-08T03:22:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "325ac6e8-b804-4416-b213-1e462d846639", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T03:29:29.000Z" - }, - "end": { - "$date": "2022-01-08T04:09:58.000Z" - }, - "events": [ - { - "uuid": "4fe5051f-1ebf-444e-a1c4-6248220c2467", - "start": { - "$date": "2022-01-08T03:29:29.000Z" - }, - "end": { - "$date": "2022-01-08T04:09:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79e50b9f-ece8-403f-9ff8-ebb1d88d4ac5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T04:13:39.000Z" - }, - "end": { - "$date": "2022-01-08T04:35:06.000Z" - }, - "events": [ - { - "uuid": "3b4dce5b-0206-4557-b599-f811d19178f2", - "start": { - "$date": "2022-01-08T04:13:39.000Z" - }, - "end": { - "$date": "2022-01-08T04:24:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb0d8ceb-575e-4867-b926-71983df89d8a", - "start": { - "$date": "2022-01-08T04:24:39.000Z" - }, - "end": { - "$date": "2022-01-08T04:35:06.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "af04402e-fede-4215-bb15-53a3ab4e214a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T04:25:40.000Z" - }, - "end": { - "$date": "2022-01-08T05:05:07.000Z" - }, - "events": [ - { - "uuid": "f2ab776e-f7d3-4ee5-93d5-6bb194bb9e25", - "start": { - "$date": "2022-01-08T04:25:40.000Z" - }, - "end": { - "$date": "2022-01-08T05:05:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a27e04ec-6f59-4be7-a89b-26c0cb041de6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T04:32:56.000Z" - }, - "end": { - "$date": "2022-01-08T04:38:51.000Z" - }, - "events": [ - { - "uuid": "84b871a2-914d-49a9-8df1-24ed23d97947", - "start": { - "$date": "2022-01-08T04:32:56.000Z" - }, - "end": { - "$date": "2022-01-08T04:38:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3ec87b23-a679-4a7d-bcd3-eb7071256790", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T04:35:16.000Z" - }, - "end": { - "$date": "2022-01-08T04:38:00.000Z" - }, - "events": [ - { - "uuid": "177a1908-b99d-40b3-93ed-a0d2bf0dffa0", - "start": { - "$date": "2022-01-08T04:35:16.000Z" - }, - "end": { - "$date": "2022-01-08T04:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b98db137-d307-4589-b40d-8133f3d452e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T04:35:29.000Z" - }, - "end": { - "$date": "2022-01-08T04:44:40.000Z" - }, - "events": [ - { - "uuid": "e3d3319e-555f-46c2-b97c-5916280e6ca2", - "start": { - "$date": "2022-01-08T04:35:29.000Z" - }, - "end": { - "$date": "2022-01-08T04:44:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b43c360d-cc94-4e2e-81d2-071515dc28ce", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T04:36:54.000Z" - }, - "end": { - "$date": "2022-01-08T04:38:04.000Z" - }, - "events": [ - { - "uuid": "b65acc7f-fa32-406e-a00a-2a8bf31520a9", - "start": { - "$date": "2022-01-08T04:36:54.000Z" - }, - "end": { - "$date": "2022-01-08T04:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55f355e7-cbf1-4491-803d-244759194a85", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T04:44:43.000Z" - }, - "end": { - "$date": "2022-01-08T04:49:28.000Z" - }, - "events": [ - { - "uuid": "db37e8ef-54c7-4f8a-97d7-3ed3a672dc82", - "start": { - "$date": "2022-01-08T04:44:43.000Z" - }, - "end": { - "$date": "2022-01-08T04:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "64894ef5-f245-4a6f-9797-4d60e62a90a2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T04:48:27.000Z" - }, - "end": { - "$date": "2022-01-08T05:07:47.000Z" - }, - "events": [ - { - "uuid": "980d218c-410b-4cff-91d6-7dc87c346f44", - "start": { - "$date": "2022-01-08T04:48:27.000Z" - }, - "end": { - "$date": "2022-01-08T05:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "db278ce4-8db6-4030-b2b4-3bea5582527d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T04:49:06.000Z" - }, - "end": { - "$date": "2022-01-08T05:05:21.000Z" - }, - "events": [ - { - "uuid": "d8e12491-cfe6-442a-960f-d989c5400716", - "start": { - "$date": "2022-01-08T04:49:06.000Z" - }, - "end": { - "$date": "2022-01-08T05:05:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "863ecd53-9f82-4dbc-b687-e39a5afaa1db", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T04:49:20.000Z" - }, - "end": { - "$date": "2022-01-08T04:59:35.000Z" - }, - "events": [ - { - "uuid": "7d4f1c82-a0ca-411f-8bbd-513b8a4f2243", - "start": { - "$date": "2022-01-08T04:49:20.000Z" - }, - "end": { - "$date": "2022-01-08T04:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ec11a2b-6a46-4603-8f27-b83f7470282f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T04:49:29.000Z" - }, - "end": { - "$date": "2022-01-08T05:01:05.000Z" - }, - "events": [ - { - "uuid": "cb0d4663-0e1a-4b4c-98c8-2da28e76adae", - "start": { - "$date": "2022-01-08T04:49:29.000Z" - }, - "end": { - "$date": "2022-01-08T05:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "0d45d034-f26e-443f-9a5e-93798c8e66de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T04:49:48.000Z" - }, - "end": { - "$date": "2022-01-08T05:02:33.000Z" - }, - "events": [ - { - "uuid": "5e55f9f8-c51b-4450-bcb5-ec066f35cf08", - "start": { - "$date": "2022-01-08T04:49:48.000Z" - }, - "end": { - "$date": "2022-01-08T05:02:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "6eefe118-4c58-4e8c-88ec-2892e9ebaf18", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T04:59:41.000Z" - }, - "end": { - "$date": "2022-01-08T05:02:26.000Z" - }, - "events": [ - { - "uuid": "b01a72bb-f860-46d3-9403-7c4793aa7708", - "start": { - "$date": "2022-01-08T04:59:41.000Z" - }, - "end": { - "$date": "2022-01-08T05:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "fe048599-08f0-46eb-ac64-1091e075c376", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T05:02:51.000Z" - }, - "end": { - "$date": "2022-01-08T05:06:36.000Z" - }, - "events": [ - { - "uuid": "b6eaed73-7de8-453f-8ff2-58301b94dcdb", - "start": { - "$date": "2022-01-08T05:02:51.000Z" - }, - "end": { - "$date": "2022-01-08T05:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1aa33c8f-cecd-450e-b5ca-c4eb6ad5f467", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T05:32:46.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:45.000Z" - }, - "events": [ - { - "uuid": "bea8fa6b-1ed2-435f-8377-24b589afc242", - "start": { - "$date": "2022-01-08T05:32:46.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9884e1c1-d6a4-40c9-be37-ad74141722f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T05:32:42.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:42.000Z" - }, - "events": [ - { - "uuid": "194a008c-555e-4a2a-8e92-6cebbb08aecd", - "start": { - "$date": "2022-01-08T05:32:42.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dedc7fb1-9dda-4c89-9278-b1a61f72a8ef", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T05:10:46.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:52.000Z" - }, - "events": [ - { - "uuid": "20929172-444f-4a83-8c45-5c1756f3b8c9", - "start": { - "$date": "2022-01-08T05:10:46.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83f40226-8f0c-4cb7-966a-f96c76c23755", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T05:10:48.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:43.000Z" - }, - "events": [ - { - "uuid": "deffdf8e-2969-4df0-be20-cc06c5c0071f", - "start": { - "$date": "2022-01-08T05:10:48.000Z" - }, - "end": { - "$date": "2022-01-08T05:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7035315-1e4c-4cb9-bb8c-aef8e3e5375e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T05:09:48.000Z" - }, - "end": { - "$date": "2022-01-08T05:33:48.000Z" - }, - "events": [ - { - "uuid": "c871650e-944a-4075-870d-53ae56d07f22", - "start": { - "$date": "2022-01-08T05:09:48.000Z" - }, - "end": { - "$date": "2022-01-08T05:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "98e7a2ee-1875-4a1d-a9ba-f26e13b17dc5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T05:10:22.000Z" - }, - "end": { - "$date": "2022-01-08T05:31:58.000Z" - }, - "events": [ - { - "uuid": "72014033-b6e4-425d-aa64-608ba2d44d42", - "start": { - "$date": "2022-01-08T05:10:22.000Z" - }, - "end": { - "$date": "2022-01-08T05:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64e47ff4-2576-402e-8ad4-e770985ac805", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T05:40:16.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:29.000Z" - }, - "events": [ - { - "uuid": "4a3c5786-642c-4f05-abec-599102b529a3", - "start": { - "$date": "2022-01-08T05:40:16.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58623e5f-ac56-4cd2-96d7-4c11fd48cbb7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T05:40:16.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:32.000Z" - }, - "events": [ - { - "uuid": "bf44d739-8cc0-414d-86d6-3a7a9b7b8b7d", - "start": { - "$date": "2022-01-08T05:40:16.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f4d2943f-c09b-401f-8d3f-35d4a6f4141a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T05:40:18.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:29.000Z" - }, - "events": [ - { - "uuid": "7de05f1f-5cc4-49f9-8e5f-5b4d2a66dc49", - "start": { - "$date": "2022-01-08T05:40:18.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88269da2-26e9-43b5-bd97-e58a820faeb9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T05:40:14.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:24.000Z" - }, - "events": [ - { - "uuid": "561b05f3-a32e-4633-ace3-6961f5ed3d6e", - "start": { - "$date": "2022-01-08T05:40:14.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5089f405-0317-4505-889b-b6eecd3574fc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T05:40:22.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:28.000Z" - }, - "events": [ - { - "uuid": "533af049-f857-4ad9-b2d7-27935de80c20", - "start": { - "$date": "2022-01-08T05:40:22.000Z" - }, - "end": { - "$date": "2022-01-08T06:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cef6327c-dd8f-4f4e-9783-3a2c08575fca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-08T05:41:11.000Z" - }, - "end": { - "$date": "2022-01-08T08:15:04.000Z" - }, - "events": [ - { - "uuid": "60ad9810-9964-4550-bc1d-a8e5344f3b3c", - "start": { - "$date": "2022-01-08T05:41:11.000Z" - }, - "end": { - "$date": "2022-01-08T08:15:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc579cf6-0592-4b58-a973-ff2b0740f740", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T06:28:24.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:30.000Z" - }, - "events": [ - { - "uuid": "1b78adcd-c338-45cf-97b0-81acf0d460c6", - "start": { - "$date": "2022-01-08T06:28:24.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eb545e1-6460-46a3-906f-7b9ee0c883b7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T06:28:23.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:29.000Z" - }, - "events": [ - { - "uuid": "089df197-aaa9-44a7-ad3f-8714d0c99829", - "start": { - "$date": "2022-01-08T06:28:23.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5e56853-db3f-43d5-ba3c-1acccf20a671", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T06:28:35.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:39.000Z" - }, - "events": [ - { - "uuid": "6d1c0261-2c07-451f-bdc9-faffbeb37bd7", - "start": { - "$date": "2022-01-08T06:28:35.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a1e3980-5d95-40e9-a398-f2a53f1d00b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T06:28:27.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:34.000Z" - }, - "events": [ - { - "uuid": "88e83aed-c313-46ab-975e-feaab15fb549", - "start": { - "$date": "2022-01-08T06:28:27.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1391769-b734-4209-8b45-d52307788399", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-08T06:28:23.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:34.000Z" - }, - "events": [ - { - "uuid": "9d74cb5d-ff95-45e2-aa35-0e5d6b5cc124", - "start": { - "$date": "2022-01-08T06:28:23.000Z" - }, - "end": { - "$date": "2022-01-08T07:01:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a172dcc-37e2-460c-b850-8465817aad32", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T07:05:51.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:43.000Z" - }, - "events": [ - { - "uuid": "825ba72a-f02b-472f-a8b2-eea8e7787eb2", - "start": { - "$date": "2022-01-08T07:05:51.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1904f3ba-ce87-4ffc-9442-d88380581a8c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T07:05:56.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:46.000Z" - }, - "events": [ - { - "uuid": "eaf4b778-b011-4b63-8ca9-9bf43fa9cbc5", - "start": { - "$date": "2022-01-08T07:05:56.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7d82ab4-013d-4a48-9cd9-131828655ee5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T07:05:49.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:44.000Z" - }, - "events": [ - { - "uuid": "4ca98365-fd6a-43ee-88c5-a2cdd0764f50", - "start": { - "$date": "2022-01-08T07:05:49.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e75c966-4892-4125-9ca8-f37c957884bd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T07:05:53.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:49.000Z" - }, - "events": [ - { - "uuid": "be8d9dd0-08a5-4095-b78a-0a2ab3f53dfc", - "start": { - "$date": "2022-01-08T07:05:53.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d250b55-de8f-415c-afa1-f6ba728ee3de", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-08T07:05:49.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:51.000Z" - }, - "events": [ - { - "uuid": "dc240688-0ebf-465a-a232-1b1dacab1b65", - "start": { - "$date": "2022-01-08T07:05:49.000Z" - }, - "end": { - "$date": "2022-01-08T07:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b9b9025-3ca2-4254-84f7-101765f14cdf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T07:46:00.000Z" - }, - "end": { - "$date": "2022-01-08T07:51:55.000Z" - }, - "events": [ - { - "uuid": "18db5e02-5f1a-4879-8f32-a22ec72b8546", - "start": { - "$date": "2022-01-08T07:46:00.000Z" - }, - "end": { - "$date": "2022-01-08T07:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "6f3a0a54-eb97-4115-bc2c-09c66a296617", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T07:53:23.000Z" - }, - "end": { - "$date": "2022-01-08T07:53:42.000Z" - }, - "events": [ - { - "uuid": "1640204c-c079-4f45-912a-f9142e078f82", - "start": { - "$date": "2022-01-08T07:53:23.000Z" - }, - "end": { - "$date": "2022-01-08T07:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c29a0e30-62be-4471-ad40-959f89f4091f", - "uuid": "7e48fcff-005e-4fd2-bbd2-c55a2c64cba9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-08T07:56:33.000Z" - }, - "end": { - "$date": "2022-01-08T08:01:27.000Z" - }, - "events": [ - { - "uuid": "e54f4b26-03fd-4200-a0c9-0930c84a618b", - "start": { - "$date": "2022-01-08T07:56:33.000Z" - }, - "end": { - "$date": "2022-01-08T08:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3f02e69-c2f9-4294-a6ce-bc6816b8d2bd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-08T08:06:02.000Z" - }, - "end": { - "$date": "2022-01-08T08:10:37.000Z" - }, - "events": [ - { - "uuid": "147f40bf-2d0f-4385-b16b-4d89cb43d7b1", - "start": { - "$date": "2022-01-08T08:06:02.000Z" - }, - "end": { - "$date": "2022-01-08T08:10:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "cfb26455-aba6-4dd1-8667-c5ce41204e07", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-08T08:07:58.000Z" - }, - "end": { - "$date": "2022-01-08T08:36:11.000Z" - }, - "events": [ - { - "uuid": "962f7799-025a-4a9a-a024-a861fb7fb973", - "start": { - "$date": "2022-01-08T08:07:58.000Z" - }, - "end": { - "$date": "2022-01-08T08:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e285382b-0366-43b7-9cde-143dea7ba1b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T15:35:41.000Z" - }, - "end": { - "$date": "2022-01-08T15:57:16.000Z" - }, - "events": [ - { - "uuid": "3bccaa83-d7fb-4257-9767-c705700d6460", - "start": { - "$date": "2022-01-08T15:35:41.000Z" - }, - "end": { - "$date": "2022-01-08T15:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "025fbceb-b726-4559-9b59-5805bd19a4a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T15:39:26.000Z" - }, - "end": { - "$date": "2022-01-08T16:11:03.000Z" - }, - "events": [ - { - "uuid": "e00e0258-62ac-4ae9-b0aa-925356628f8f", - "start": { - "$date": "2022-01-08T15:39:26.000Z" - }, - "end": { - "$date": "2022-01-08T16:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "866f25d0-8f85-40d9-814f-170a5565b2bb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T16:03:32.000Z" - }, - "end": { - "$date": "2022-01-08T16:38:47.000Z" - }, - "events": [ - { - "uuid": "3c035fe7-cb8f-4b4e-a881-ffcc0946afea", - "start": { - "$date": "2022-01-08T16:03:32.000Z" - }, - "end": { - "$date": "2022-01-08T16:38:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "5784dc29-92c1-48c1-b603-b9526bdf250e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T16:12:03.000Z" - }, - "end": { - "$date": "2022-01-08T16:51:24.000Z" - }, - "events": [ - { - "uuid": "bcad744d-6fb1-40a2-89d2-a9e7594fa3e2", - "start": { - "$date": "2022-01-08T16:12:03.000Z" - }, - "end": { - "$date": "2022-01-08T16:51:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2dd58004-1b69-4eb6-b60c-0046bb64e220", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T16:46:02.000Z" - }, - "end": { - "$date": "2022-01-08T17:11:42.000Z" - }, - "events": [ - { - "uuid": "6aa732d3-0638-4610-9688-5d841b579616", - "start": { - "$date": "2022-01-08T16:46:02.000Z" - }, - "end": { - "$date": "2022-01-08T17:11:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "21e6876c-c282-40ff-aec2-4b93cb379b30", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T16:57:41.000Z" - }, - "end": { - "$date": "2022-01-08T18:25:00.000Z" - }, - "events": [ - { - "uuid": "b16a62e1-02de-4f28-9c66-b59c7f1ea801", - "start": { - "$date": "2022-01-08T16:57:41.000Z" - }, - "end": { - "$date": "2022-01-08T18:25:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "48506b9d-6d30-4bfe-8d85-15fa4cf57d75", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T16:57:55.000Z" - }, - "end": { - "$date": "2022-01-08T18:23:07.000Z" - }, - "events": [ - { - "uuid": "843e7891-464f-457a-9491-b26ddb4ed612", - "start": { - "$date": "2022-01-08T16:57:55.000Z" - }, - "end": { - "$date": "2022-01-08T18:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "8d0c9bcd-2518-4964-b5a7-238b1d770707", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-08T17:11:51.000Z" - }, - "end": { - "$date": "2022-01-08T21:19:40.000Z" - }, - "events": [ - { - "uuid": "692de78c-e257-42a7-b33c-559f17328db2", - "start": { - "$date": "2022-01-08T17:11:51.000Z" - }, - "end": { - "$date": "2022-01-08T21:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88d4e0bb-b689-4a5c-bd14-d39a0933d2ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T17:30:19.000Z" - }, - "end": { - "$date": "2022-01-08T18:03:12.000Z" - }, - "events": [ - { - "uuid": "44f499ea-e451-4d4b-b038-5d164452a9ca", - "start": { - "$date": "2022-01-08T17:30:19.000Z" - }, - "end": { - "$date": "2022-01-08T18:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d12039d0-09e5-40c2-92be-90173244d515", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T17:30:14.000Z" - }, - "end": { - "$date": "2022-01-08T18:03:09.000Z" - }, - "events": [ - { - "uuid": "6c207c98-b7aa-445e-affe-e07a10a98019", - "start": { - "$date": "2022-01-08T17:30:14.000Z" - }, - "end": { - "$date": "2022-01-08T18:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a83eb49a-6e23-4345-afa3-4f3cc7b820bd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T18:23:18.000Z" - }, - "end": { - "$date": "2022-01-08T23:06:27.000Z" - }, - "events": [ - { - "uuid": "938c70e3-fe50-4d1e-bb4f-684f1cb9dd19", - "start": { - "$date": "2022-01-08T18:23:18.000Z" - }, - "end": { - "$date": "2022-01-08T20:28:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eee30497-e594-4e96-bc11-7a8b113c6f98", - "start": { - "$date": "2022-01-08T20:28:18.000Z" - }, - "end": { - "$date": "2022-01-08T21:03:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5eda79d9-fdae-4996-b4bf-47e9bd9a7bcb", - "start": { - "$date": "2022-01-08T21:03:18.000Z" - }, - "end": { - "$date": "2022-01-08T23:06:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba7912fb-876e-43b5-8d42-9cb7a474c229", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T22:57:16.000Z" - }, - "end": { - "$date": "2022-01-08T22:57:20.000Z" - }, - "events": [ - { - "uuid": "c06e9116-416e-4c19-b020-ae7ecbc234de", - "start": { - "$date": "2022-01-08T22:57:16.000Z" - }, - "end": { - "$date": "2022-01-08T22:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "18768eed-c01b-471e-a7fb-32b73caa2aee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-08T18:49:59.000Z" - }, - "end": { - "$date": "2022-01-08T19:20:43.000Z" - }, - "events": [ - { - "uuid": "0e4719d3-357a-46a6-857c-0c142da07627", - "start": { - "$date": "2022-01-08T18:49:59.000Z" - }, - "end": { - "$date": "2022-01-08T18:50:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7fd3f4ff-a027-406f-99a4-1f0af8a823e0", - "start": { - "$date": "2022-01-08T18:50:59.000Z" - }, - "end": { - "$date": "2022-01-08T19:00:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20b24863-e568-46d6-a7b5-2e08bb8effbc", - "start": { - "$date": "2022-01-08T19:00:59.000Z" - }, - "end": { - "$date": "2022-01-08T19:20:43.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "107e5df1-7293-4468-abfa-06418c189ab7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T18:52:14.000Z" - }, - "end": { - "$date": "2022-01-08T19:19:28.000Z" - }, - "events": [ - { - "uuid": "b8a5f6e0-1fe2-4f3c-9d06-ca67836dc864", - "start": { - "$date": "2022-01-08T18:52:14.000Z" - }, - "end": { - "$date": "2022-01-08T19:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0cb61314-17d5-4927-94c7-1d7ead290a59", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-08T20:03:28.000Z" - }, - "end": { - "$date": "2022-01-08T20:04:52.000Z" - }, - "events": [ - { - "uuid": "a3bd9640-5372-4b36-aa68-f04c5cd3a61f", - "start": { - "$date": "2022-01-08T20:03:28.000Z" - }, - "end": { - "$date": "2022-01-08T20:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a675bb7c-a868-45c2-bd46-4b6e9a354a67", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T20:27:47.000Z" - }, - "end": { - "$date": "2022-01-08T20:40:59.000Z" - }, - "events": [ - { - "uuid": "3b64a0f2-5f4c-4df8-8f7b-856fbb68c626", - "start": { - "$date": "2022-01-08T20:27:47.000Z" - }, - "end": { - "$date": "2022-01-08T20:40:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "282bcca0-39c6-4fee-af83-563dea7d0db8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T21:11:15.000Z" - }, - "end": { - "$date": "2022-01-08T21:12:51.000Z" - }, - "events": [ - { - "uuid": "03fbd581-145c-4dcc-927d-46bbe056a148", - "start": { - "$date": "2022-01-08T21:11:15.000Z" - }, - "end": { - "$date": "2022-01-08T21:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "72f3b450-f7e7-4aa1-8409-302b553b7386", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T21:12:49.000Z" - }, - "end": { - "$date": "2022-01-08T22:29:27.000Z" - }, - "events": [ - { - "uuid": "e5330dc5-30bc-4748-8335-29294f81c40a", - "start": { - "$date": "2022-01-08T21:12:49.000Z" - }, - "end": { - "$date": "2022-01-08T22:29:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "64acf8ed-3185-4884-bc05-09d87eab3f6b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-08T21:13:26.000Z" - }, - "end": { - "$date": "2022-01-08T22:35:14.000Z" - }, - "events": [ - { - "uuid": "f0a360d1-eca0-41b0-b537-c518fd99ec6d", - "start": { - "$date": "2022-01-08T21:13:26.000Z" - }, - "end": { - "$date": "2022-01-08T22:35:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a42ceec7-0591-4721-a5bf-c7694af28783", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T21:15:12.000Z" - }, - "end": { - "$date": "2022-01-08T21:24:50.000Z" - }, - "events": [ - { - "uuid": "3332f87f-440d-4062-a0dd-147f7c22bc2d", - "start": { - "$date": "2022-01-08T21:15:12.000Z" - }, - "end": { - "$date": "2022-01-08T21:24:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "8dfa9d15-8bb8-4f60-8744-93b4d3851b7b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-08T21:40:45.000Z" - }, - "end": { - "$date": "2022-01-08T22:02:29.000Z" - }, - "events": [ - { - "uuid": "cffff7fa-02c4-4da7-8f44-ec61ffd7ff36", - "start": { - "$date": "2022-01-08T21:40:45.000Z" - }, - "end": { - "$date": "2022-01-08T22:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4dc7ca95-613c-4b8a-a9d6-e0a3e9629e98", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-08T21:44:45.000Z" - }, - "end": { - "$date": "2022-01-08T22:01:32.000Z" - }, - "events": [ - { - "uuid": "420d41b0-81bb-4adb-aee3-20c3d95e8844", - "start": { - "$date": "2022-01-08T21:44:45.000Z" - }, - "end": { - "$date": "2022-01-08T22:01:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaf55a97-cb46-4d20-b68a-c8e98a644da9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-08T22:03:42.000Z" - }, - "end": { - "$date": "2022-01-08T22:24:10.000Z" - }, - "events": [ - { - "uuid": "22d65b82-422b-4994-9552-013d23a147ba", - "start": { - "$date": "2022-01-08T22:03:42.000Z" - }, - "end": { - "$date": "2022-01-08T22:24:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f4167c5-b583-4837-9b14-a1af69d96244", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-08T22:26:25.000Z" - }, - "end": { - "$date": "2022-01-08T22:51:35.000Z" - }, - "events": [ - { - "uuid": "94eae75c-93af-4e9d-bbf9-97dc7fcedbd2", - "start": { - "$date": "2022-01-08T22:26:25.000Z" - }, - "end": { - "$date": "2022-01-08T22:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1148d818-62c5-47fc-8b83-00052385d639", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-08T22:54:58.000Z" - }, - "end": { - "$date": "2022-01-08T23:12:51.000Z" - }, - "events": [ - { - "uuid": "9d54c80b-3650-4a22-a77d-ae70c0821d7e", - "start": { - "$date": "2022-01-08T22:54:58.000Z" - }, - "end": { - "$date": "2022-01-08T23:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed0468e9-dbb6-4bd9-a55a-23c05f009a2b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T22:57:31.000Z" - }, - "end": { - "$date": "2022-01-08T23:05:46.000Z" - }, - "events": [ - { - "uuid": "7d7ae7cb-89e7-4df9-a8da-b17d6c6eb7b8", - "start": { - "$date": "2022-01-08T22:57:31.000Z" - }, - "end": { - "$date": "2022-01-08T23:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "713a1557-a4b4-48a0-81cb-36507781a96c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-08T23:05:57.000Z" - }, - "end": { - "$date": "2022-01-08T23:36:57.000Z" - }, - "events": [ - { - "uuid": "f7cee53a-e80c-4895-80be-d3d09af8a6d4", - "start": { - "$date": "2022-01-08T23:05:57.000Z" - }, - "end": { - "$date": "2022-01-08T23:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "37921005-fe8d-462e-a7cc-c63d193a6461", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-08T23:06:32.000Z" - }, - "end": { - "$date": "2022-01-09T00:53:28.000Z" - }, - "events": [ - { - "uuid": "3ecd7f4d-ddcd-47b2-abc6-a6d8c21c5d1e", - "start": { - "$date": "2022-01-08T23:06:32.000Z" - }, - "end": { - "$date": "2022-01-09T00:45:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a3c58d0-4c97-4d6f-bc37-f01727f21f95", - "start": { - "$date": "2022-01-09T00:45:32.000Z" - }, - "end": { - "$date": "2022-01-09T00:50:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3396eb50-a907-4a08-bd8c-de329bdbfa11", - "start": { - "$date": "2022-01-09T00:50:32.000Z" - }, - "end": { - "$date": "2022-01-09T00:53:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "203a7327-126d-4c7a-9137-c6f99920cd25", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-08T23:24:33.000Z" - }, - "end": { - "$date": "2022-01-09T00:03:28.000Z" - }, - "events": [ - { - "uuid": "88a200c8-a126-496f-8fbb-8709c27955cd", - "start": { - "$date": "2022-01-08T23:24:33.000Z" - }, - "end": { - "$date": "2022-01-09T00:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7704e711-4ffc-4ad0-90f5-5c014fc0fd95", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-08T23:14:55.000Z" - }, - "end": { - "$date": "2022-01-08T23:43:36.000Z" - }, - "events": [ - { - "uuid": "cd3b0e6d-2dbd-4da1-a348-1aef3fec9ca5", - "start": { - "$date": "2022-01-08T23:14:55.000Z" - }, - "end": { - "$date": "2022-01-08T23:43:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b955687f-7a7a-421e-9303-cfa5cd2a78e5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-08T23:44:51.000Z" - }, - "end": { - "$date": "2022-01-09T00:21:12.000Z" - }, - "events": [ - { - "uuid": "ac1a89c7-14ef-4d90-af89-6bee68ca1aac", - "start": { - "$date": "2022-01-08T23:44:51.000Z" - }, - "end": { - "$date": "2022-01-09T00:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a45529d-68e3-40a0-8f9a-d1ea842f4de5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-09T00:09:48.000Z" - }, - "end": { - "$date": "2022-01-09T00:46:28.000Z" - }, - "events": [ - { - "uuid": "d8e2079c-0934-4eab-bf4f-f20d84310e22", - "start": { - "$date": "2022-01-09T00:09:48.000Z" - }, - "end": { - "$date": "2022-01-09T00:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94a8f826-1f28-410f-aa08-9d12a3caff49", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-09T00:09:44.000Z" - }, - "end": { - "$date": "2022-01-09T00:46:14.000Z" - }, - "events": [ - { - "uuid": "e4c3490c-d14c-479a-8f67-6958c975f0a2", - "start": { - "$date": "2022-01-09T00:09:44.000Z" - }, - "end": { - "$date": "2022-01-09T00:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "4056fccc-e588-4241-aa53-f7237f9e541e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-09T00:33:47.000Z" - }, - "end": { - "$date": "2022-01-09T02:24:04.000Z" - }, - "events": [ - { - "uuid": "7d223cb3-c8ee-47e1-9a65-33fb6e788d12", - "start": { - "$date": "2022-01-09T00:33:47.000Z" - }, - "end": { - "$date": "2022-01-09T00:34:47.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8251bbe4-8d10-4a3c-bc4e-2eb66f4d15c0", - "start": { - "$date": "2022-01-09T00:34:47.000Z" - }, - "end": { - "$date": "2022-01-09T02:24:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c56e300a-0166-41aa-8507-7bd3a24d6726", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-09T00:52:09.000Z" - }, - "end": { - "$date": "2022-01-09T01:23:22.000Z" - }, - "events": [ - { - "uuid": "e21764b0-a6e6-4147-83f0-f092449f8287", - "start": { - "$date": "2022-01-09T00:52:09.000Z" - }, - "end": { - "$date": "2022-01-09T01:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3973576-cfec-4f84-a1a2-e7e245f9a144", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-09T00:52:10.000Z" - }, - "end": { - "$date": "2022-01-09T01:23:15.000Z" - }, - "events": [ - { - "uuid": "2cec8962-0bca-4ac2-9601-ce0fb20b05ca", - "start": { - "$date": "2022-01-09T00:52:10.000Z" - }, - "end": { - "$date": "2022-01-09T01:23:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "101aef4b-d0d8-4822-b6d9-f0928174a63b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T00:55:49.000Z" - }, - "end": { - "$date": "2022-01-09T01:41:40.000Z" - }, - "events": [ - { - "uuid": "cca2b98e-7a32-48b9-be3d-5f64ca978e3d", - "start": { - "$date": "2022-01-09T00:55:49.000Z" - }, - "end": { - "$date": "2022-01-09T01:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b448dacd-e862-4594-9153-b98ce5124fae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T01:04:45.000Z" - }, - "end": { - "$date": "2022-01-09T01:10:44.000Z" - }, - "events": [ - { - "uuid": "f08a87fa-d295-4095-bedb-7789bbdb527e", - "start": { - "$date": "2022-01-09T01:04:45.000Z" - }, - "end": { - "$date": "2022-01-09T01:10:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b17716f5-8fb1-405a-ad88-a49888a75f6f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T01:44:01.000Z" - }, - "end": { - "$date": "2022-01-09T01:57:28.000Z" - }, - "events": [ - { - "uuid": "3a65d008-61b6-4d1f-9e6a-9d43a73f3273", - "start": { - "$date": "2022-01-09T01:44:01.000Z" - }, - "end": { - "$date": "2022-01-09T01:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "d889848e-f4b4-471b-b5e0-dd2b54ec0931", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T01:50:30.000Z" - }, - "end": { - "$date": "2022-01-09T02:56:43.000Z" - }, - "events": [ - { - "uuid": "47d75873-990e-42fa-bd05-9bbdc71cf4ee", - "start": { - "$date": "2022-01-09T01:50:30.000Z" - }, - "end": { - "$date": "2022-01-09T02:56:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "f145286a-3b95-48dd-b8bc-0c179f25aec0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T01:50:58.000Z" - }, - "end": { - "$date": "2022-01-09T02:49:32.000Z" - }, - "events": [ - { - "uuid": "b3f5983c-6d31-442a-96b9-b84a4a42805a", - "start": { - "$date": "2022-01-09T01:50:58.000Z" - }, - "end": { - "$date": "2022-01-09T02:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0c1cc2b-d8aa-4968-83a9-40ee58994414", - "uuid": "d6f46aa2-e89a-421f-ba6f-2e0bd2eeb965", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T02:10:18.000Z" - }, - "end": { - "$date": "2022-01-09T02:50:09.000Z" - }, - "events": [ - { - "uuid": "ae542dfb-db54-4804-93ae-bdcc56eda010", - "start": { - "$date": "2022-01-09T02:10:18.000Z" - }, - "end": { - "$date": "2022-01-09T02:41:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b9a653a0-f26f-4da5-bbd5-0484250ed893", - "start": { - "$date": "2022-01-09T02:41:18.000Z" - }, - "end": { - "$date": "2022-01-09T02:50:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "69774d57-1c59-4105-ab4a-ccc979129619", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-09T02:38:40.000Z" - }, - "end": { - "$date": "2022-01-09T12:18:43.000Z" - }, - "events": [ - { - "uuid": "2efe831e-f76a-4b46-a467-59541b1298fb", - "start": { - "$date": "2022-01-09T02:38:40.000Z" - }, - "end": { - "$date": "2022-01-09T12:18:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06e0d8a4-8194-4e9b-95fc-246ed504c9a5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T02:41:58.000Z" - }, - "end": { - "$date": "2022-01-09T03:20:05.000Z" - }, - "events": [ - { - "uuid": "0027315b-ee70-4c6c-9fbc-7a55b3e669e6", - "start": { - "$date": "2022-01-09T02:41:58.000Z" - }, - "end": { - "$date": "2022-01-09T03:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "4e5e574e-8788-433f-b64e-f3537e120c37", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T02:49:47.000Z" - }, - "end": { - "$date": "2022-01-09T02:56:53.000Z" - }, - "events": [ - { - "uuid": "6205e98b-5e20-41a8-9215-f15368258429", - "start": { - "$date": "2022-01-09T02:49:47.000Z" - }, - "end": { - "$date": "2022-01-09T02:56:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1120e53-727a-4b95-9817-72f67e7ef3ba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T03:02:46.000Z" - }, - "end": { - "$date": "2022-01-09T03:45:19.000Z" - }, - "events": [ - { - "uuid": "6f210b1f-934a-4736-920a-1dd6b95a89d2", - "start": { - "$date": "2022-01-09T03:02:46.000Z" - }, - "end": { - "$date": "2022-01-09T03:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "dfcc6bd4-65f0-43ac-ba79-b0e5f61db448", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-09T02:50:12.000Z" - }, - "end": { - "$date": "2022-01-09T03:52:48.000Z" - }, - "events": [ - { - "uuid": "f64ddb39-2a13-462b-b53e-56a9e684749f", - "start": { - "$date": "2022-01-09T02:50:12.000Z" - }, - "end": { - "$date": "2022-01-09T03:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "1737b105-baa8-476d-addf-abc2f0928908", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-09T03:07:11.000Z" - }, - "end": { - "$date": "2022-01-09T03:30:26.000Z" - }, - "events": [ - { - "uuid": "ed73938c-d6b3-4cea-afb5-2a15d040cfd6", - "start": { - "$date": "2022-01-09T03:07:11.000Z" - }, - "end": { - "$date": "2022-01-09T03:30:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "4cbde8b9-896a-4918-9c55-ffbde39d2f54", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T03:17:11.000Z" - }, - "end": { - "$date": "2022-01-09T03:25:38.000Z" - }, - "events": [ - { - "uuid": "50d8748e-64af-4093-92ff-715089f51691", - "start": { - "$date": "2022-01-09T03:17:11.000Z" - }, - "end": { - "$date": "2022-01-09T03:25:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3d5744d0-5be2-471b-ab50-e3f8d5b865f2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T03:25:52.000Z" - }, - "end": { - "$date": "2022-01-09T03:48:24.000Z" - }, - "events": [ - { - "uuid": "1620c364-852e-46d7-b714-7006d233815a", - "start": { - "$date": "2022-01-09T03:25:52.000Z" - }, - "end": { - "$date": "2022-01-09T03:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02733b95-24f0-45f6-9ab7-591f07c9d899", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T03:25:58.000Z" - }, - "end": { - "$date": "2022-01-09T05:19:07.000Z" - }, - "events": [ - { - "uuid": "c50588b2-2cc8-4075-bfe1-fc5bbc1d773b", - "start": { - "$date": "2022-01-09T03:25:58.000Z" - }, - "end": { - "$date": "2022-01-09T05:19:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cd51f23d-0ffd-4844-b727-5a98ef0d2103", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-09T04:09:51.000Z" - }, - "end": { - "$date": "2022-01-09T06:46:48.000Z" - }, - "events": [ - { - "uuid": "3476f104-689b-4262-94a7-d4a99b9e5579", - "start": { - "$date": "2022-01-09T04:09:51.000Z" - }, - "end": { - "$date": "2022-01-09T06:46:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "341edb07-da97-46cf-bb5b-c7cd68bc4804", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T04:36:37.000Z" - }, - "end": { - "$date": "2022-01-09T05:20:31.000Z" - }, - "events": [ - { - "uuid": "86bf2e15-b365-42eb-a6e8-9965b78039f8", - "start": { - "$date": "2022-01-09T04:36:37.000Z" - }, - "end": { - "$date": "2022-01-09T05:20:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "888b0608-a309-4df5-afaf-4382361554d0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-09T04:59:21.000Z" - }, - "end": { - "$date": "2022-01-09T05:02:07.000Z" - }, - "events": [ - { - "uuid": "6020c691-29f4-45be-8339-aa3a81b33db8", - "start": { - "$date": "2022-01-09T04:59:21.000Z" - }, - "end": { - "$date": "2022-01-09T05:02:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "0480fa60-a022-43c5-8c78-3d766eadb0de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T05:03:44.000Z" - }, - "end": { - "$date": "2022-01-09T05:07:24.000Z" - }, - "events": [ - { - "uuid": "011f4a17-f794-4b5e-be5b-d6e8b4342a1f", - "start": { - "$date": "2022-01-09T05:03:44.000Z" - }, - "end": { - "$date": "2022-01-09T05:07:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a03cd01e-5d47-470c-93ef-f690d03d3ec2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-09T05:19:13.000Z" - }, - "end": { - "$date": "2022-01-09T05:20:48.000Z" - }, - "events": [ - { - "uuid": "923959cf-4690-41d3-92ef-950b36d7356f", - "start": { - "$date": "2022-01-09T05:19:13.000Z" - }, - "end": { - "$date": "2022-01-09T05:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "8d90242c-f504-462e-96ce-6fb2f8a5ed41", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T05:07:30.000Z" - }, - "end": { - "$date": "2022-01-09T05:11:10.000Z" - }, - "events": [ - { - "uuid": "9ecac9ba-bfc3-436a-8b98-676d3527c494", - "start": { - "$date": "2022-01-09T05:07:30.000Z" - }, - "end": { - "$date": "2022-01-09T05:11:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9815ac82-8a31-4c03-9ac1-886a36501b88", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-09T05:16:11.000Z" - }, - "end": { - "$date": "2022-01-09T05:23:42.000Z" - }, - "events": [ - { - "uuid": "f0a98deb-3e78-41e6-81c3-80fc67fd68d6", - "start": { - "$date": "2022-01-09T05:16:11.000Z" - }, - "end": { - "$date": "2022-01-09T05:23:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "d3e37c5e-ff4d-459c-8e0f-83f884b2ba10", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T05:21:21.000Z" - }, - "end": { - "$date": "2022-01-09T07:20:09.000Z" - }, - "events": [ - { - "uuid": "63ca7133-2c41-4c76-9428-f4b2307e6e17", - "start": { - "$date": "2022-01-09T05:21:21.000Z" - }, - "end": { - "$date": "2022-01-09T07:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "134effba-ee0a-4201-9fc9-d8ae9217bb2f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-09T06:43:31.000Z" - }, - "end": { - "$date": "2022-01-09T12:16:17.000Z" - }, - "events": [ - { - "uuid": "ee478905-ca53-4034-8b63-1ce3c914c1b7", - "start": { - "$date": "2022-01-09T06:43:31.000Z" - }, - "end": { - "$date": "2022-01-09T12:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "4db00f5e-2333-4b71-a5e0-cf43f62655d3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-09T05:23:56.000Z" - }, - "end": { - "$date": "2022-01-09T05:29:32.000Z" - }, - "events": [ - { - "uuid": "b78f28c8-4847-4c78-9baa-fd349faeed63", - "start": { - "$date": "2022-01-09T05:23:56.000Z" - }, - "end": { - "$date": "2022-01-09T05:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "2a666587-12c9-48bb-99e1-70ee71ec67a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T05:25:43.000Z" - }, - "end": { - "$date": "2022-01-09T08:00:24.000Z" - }, - "events": [ - { - "uuid": "59a78808-0231-4540-a308-76810ba81c0d", - "start": { - "$date": "2022-01-09T05:25:43.000Z" - }, - "end": { - "$date": "2022-01-09T08:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "864ff3d3-5d09-45fe-9af8-204e3778f5d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-09T05:41:44.000Z" - }, - "end": { - "$date": "2022-01-09T06:33:31.000Z" - }, - "events": [ - { - "uuid": "f469a90e-9477-411a-817b-093a7ebd8a23", - "start": { - "$date": "2022-01-09T05:41:44.000Z" - }, - "end": { - "$date": "2022-01-09T06:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ccecd0f-2602-4505-99f0-52675a7990a1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T05:32:43.000Z" - }, - "end": { - "$date": "2022-01-09T05:38:13.000Z" - }, - "events": [ - { - "uuid": "ef2b53f6-a785-4690-8344-f46369c25d55", - "start": { - "$date": "2022-01-09T05:32:43.000Z" - }, - "end": { - "$date": "2022-01-09T05:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ef2df91-3b28-4f2d-a301-b7c86ae9413a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-09T05:32:42.000Z" - }, - "end": { - "$date": "2022-01-09T05:38:14.000Z" - }, - "events": [ - { - "uuid": "d1143d47-70b0-40f3-b708-daef633e23f2", - "start": { - "$date": "2022-01-09T05:32:42.000Z" - }, - "end": { - "$date": "2022-01-09T05:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35689fcd-5e29-4808-8f36-8f3d4dc6ed0c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-09T05:41:43.000Z" - }, - "end": { - "$date": "2022-01-09T06:33:29.000Z" - }, - "events": [ - { - "uuid": "9e727bd8-9e5d-4cb6-9453-73b3b6964925", - "start": { - "$date": "2022-01-09T05:41:43.000Z" - }, - "end": { - "$date": "2022-01-09T06:33:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e14f3526-df7a-4dfa-a5c3-3601c20c2dd4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T05:41:43.000Z" - }, - "end": { - "$date": "2022-01-09T06:33:30.000Z" - }, - "events": [ - { - "uuid": "7e54ab69-1030-4ddf-9bea-b1f215a31b50", - "start": { - "$date": "2022-01-09T05:41:43.000Z" - }, - "end": { - "$date": "2022-01-09T06:33:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "4602169b-52c3-4096-a521-d9a94ab7b7b2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-09T05:44:09.000Z" - }, - "end": { - "$date": "2022-01-09T08:13:38.000Z" - }, - "events": [ - { - "uuid": "a572fe25-2679-4dba-8240-2e2e27a6dda2", - "start": { - "$date": "2022-01-09T05:44:09.000Z" - }, - "end": { - "$date": "2022-01-09T08:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7c67586b-750c-46f6-aef4-4b87b07b45c1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-09T06:02:34.000Z" - }, - "end": { - "$date": "2022-01-09T10:26:43.000Z" - }, - "events": [ - { - "uuid": "fdcf37bb-283a-4761-a376-d287ce687b57", - "start": { - "$date": "2022-01-09T06:02:34.000Z" - }, - "end": { - "$date": "2022-01-09T10:26:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "36934e4f-ac3d-42dd-8bed-7729945bfca0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-09T06:55:00.000Z" - }, - "end": { - "$date": "2022-01-09T07:43:46.000Z" - }, - "events": [ - { - "uuid": "6f09947b-4188-46fc-bb8f-e3bde83943d7", - "start": { - "$date": "2022-01-09T06:55:00.000Z" - }, - "end": { - "$date": "2022-01-09T07:43:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "527fba36-2864-4df4-ba89-f06ecefb2f66", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T16:33:35.000Z" - }, - "end": { - "$date": "2022-01-09T16:38:45.000Z" - }, - "events": [ - { - "uuid": "ad9a1fff-9794-40ec-805e-9ede4acec57b", - "start": { - "$date": "2022-01-09T16:33:35.000Z" - }, - "end": { - "$date": "2022-01-09T16:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "c22d5e01-19fd-41f6-8ff8-d13c18dfa8a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T16:39:00.000Z" - }, - "end": { - "$date": "2022-01-09T18:13:48.000Z" - }, - "events": [ - { - "uuid": "afe1f78f-72f8-47fd-bcc6-80176f2cdfc0", - "start": { - "$date": "2022-01-09T16:39:00.000Z" - }, - "end": { - "$date": "2022-01-09T18:13:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31db3857-3681-40ee-ab70-fad4ad5269ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-09T16:45:52.000Z" - }, - "end": { - "$date": "2022-01-09T17:12:17.000Z" - }, - "events": [ - { - "uuid": "3246d71f-3708-4990-aae5-576901a39319", - "start": { - "$date": "2022-01-09T16:45:52.000Z" - }, - "end": { - "$date": "2022-01-09T17:12:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5194e2b-e0a6-464f-b02d-557f04147acb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T17:11:18.000Z" - }, - "end": { - "$date": "2022-01-09T17:40:41.000Z" - }, - "events": [ - { - "uuid": "27b142ae-93fe-4774-80e8-97e0e95e5747", - "start": { - "$date": "2022-01-09T17:11:18.000Z" - }, - "end": { - "$date": "2022-01-09T17:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "0db89f48-2920-4ee4-bfa6-327d8a1ec176", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-09T17:21:29.000Z" - }, - "end": { - "$date": "2022-01-09T17:33:38.000Z" - }, - "events": [ - { - "uuid": "74d3e7a8-8193-4838-bac6-bfb8255d4b3d", - "start": { - "$date": "2022-01-09T17:21:29.000Z" - }, - "end": { - "$date": "2022-01-09T17:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "3806e212-555f-4b89-bc09-a544f0f74ed1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-09T17:36:44.000Z" - }, - "end": { - "$date": "2022-01-09T21:20:37.000Z" - }, - "events": [ - { - "uuid": "d582055b-daf8-4a02-880e-e047ed975754", - "start": { - "$date": "2022-01-09T17:36:44.000Z" - }, - "end": { - "$date": "2022-01-09T18:32:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "455e9903-6975-466f-aabd-13bca3f24b97", - "start": { - "$date": "2022-01-09T18:32:44.000Z" - }, - "end": { - "$date": "2022-01-09T19:07:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d123392-c063-4655-b425-45aee2f82561", - "start": { - "$date": "2022-01-09T19:07:44.000Z" - }, - "end": { - "$date": "2022-01-09T21:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6693bd39-960b-4317-882f-8ae7cffb9470", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T17:42:25.000Z" - }, - "end": { - "$date": "2022-01-09T18:11:42.000Z" - }, - "events": [ - { - "uuid": "07bfe7eb-dbd0-4a43-b300-fa6e5474f2e4", - "start": { - "$date": "2022-01-09T17:42:25.000Z" - }, - "end": { - "$date": "2022-01-09T18:11:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "406411ad-ad45-4217-a422-71f7c65f9e04", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T18:13:57.000Z" - }, - "end": { - "$date": "2022-01-09T18:18:08.000Z" - }, - "events": [ - { - "uuid": "6f77a769-b50b-41c4-b3fe-8b06e9c22515", - "start": { - "$date": "2022-01-09T18:13:57.000Z" - }, - "end": { - "$date": "2022-01-09T18:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "edda4a20-0599-4237-90c2-a38cc4f95185", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T18:15:44.000Z" - }, - "end": { - "$date": "2022-01-09T21:03:48.000Z" - }, - "events": [ - { - "uuid": "ef8f3802-0a94-437a-a853-eaeb8582c8de", - "start": { - "$date": "2022-01-09T18:15:44.000Z" - }, - "end": { - "$date": "2022-01-09T21:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "9fbdef41-f586-496c-abfe-60b4d6989222", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T18:19:28.000Z" - }, - "end": { - "$date": "2022-01-09T18:59:39.000Z" - }, - "events": [ - { - "uuid": "7bc0c41b-a7cc-41d1-8d2c-845c8553baa6", - "start": { - "$date": "2022-01-09T18:19:28.000Z" - }, - "end": { - "$date": "2022-01-09T18:59:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad9ba13f-eda8-4001-a9b6-0e6522a35f3b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T18:45:23.000Z" - }, - "end": { - "$date": "2022-01-09T19:16:51.000Z" - }, - "events": [ - { - "uuid": "d60dc197-6dfd-41c1-8a4c-778fb405df7b", - "start": { - "$date": "2022-01-09T18:45:23.000Z" - }, - "end": { - "$date": "2022-01-09T19:16:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40af2569-0fba-4ff9-a764-5fb8ade2bcf9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T19:21:31.000Z" - }, - "end": { - "$date": "2022-01-09T19:54:01.000Z" - }, - "events": [ - { - "uuid": "b760e564-64cf-4cbc-a3df-88ce51a9a25c", - "start": { - "$date": "2022-01-09T19:21:31.000Z" - }, - "end": { - "$date": "2022-01-09T19:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "c2112248-baec-4adb-befc-6d040e94a617", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-09T19:21:35.000Z" - }, - "end": { - "$date": "2022-01-09T20:19:21.000Z" - }, - "events": [ - { - "uuid": "b62c20d1-d85c-4982-b64f-ca826329616a", - "start": { - "$date": "2022-01-09T19:21:35.000Z" - }, - "end": { - "$date": "2022-01-09T20:19:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "58579083-746a-4f3d-96a7-d78cba0e6ead", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T19:26:22.000Z" - }, - "end": { - "$date": "2022-01-09T21:17:27.000Z" - }, - "events": [ - { - "uuid": "5dea53f0-be24-49ad-aad3-4b709c2f1ff0", - "start": { - "$date": "2022-01-09T19:26:22.000Z" - }, - "end": { - "$date": "2022-01-09T21:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a798dc5f-591c-45a8-b24e-59d43f2b06f3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T19:58:25.000Z" - }, - "end": { - "$date": "2022-01-09T20:21:17.000Z" - }, - "events": [ - { - "uuid": "5d128c58-5628-4add-bd41-0fc0ec3d5f79", - "start": { - "$date": "2022-01-09T19:58:25.000Z" - }, - "end": { - "$date": "2022-01-09T20:21:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "297f373f-034f-4677-9346-a7944282455b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T20:25:23.000Z" - }, - "end": { - "$date": "2022-01-09T20:51:00.000Z" - }, - "events": [ - { - "uuid": "1388e31a-d066-4cf0-92cb-d7eba014658a", - "start": { - "$date": "2022-01-09T20:25:23.000Z" - }, - "end": { - "$date": "2022-01-09T20:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d6744f6-493b-4411-841a-362075029af2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-09T20:51:52.000Z" - }, - "end": { - "$date": "2022-01-10T02:02:46.000Z" - }, - "events": [ - { - "uuid": "ae51488f-3892-48dd-9e6a-39ff48b64807", - "start": { - "$date": "2022-01-09T20:51:52.000Z" - }, - "end": { - "$date": "2022-01-09T21:02:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9bcf82e-27e7-4848-a62c-3e28e091a718", - "start": { - "$date": "2022-01-09T21:02:52.000Z" - }, - "end": { - "$date": "2022-01-09T21:03:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "81f28ecd-0a7e-4f78-99e9-0618a345bca0", - "start": { - "$date": "2022-01-09T21:03:52.000Z" - }, - "end": { - "$date": "2022-01-09T21:13:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "51ed94b8-5fb1-4012-b9c1-3886ce1cc1f2", - "start": { - "$date": "2022-01-09T21:13:52.000Z" - }, - "end": { - "$date": "2022-01-09T21:16:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b2903bd-261d-4e84-955c-62ae7339aff3", - "start": { - "$date": "2022-01-09T21:16:52.000Z" - }, - "end": { - "$date": "2022-01-10T02:02:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "1a31a051-cafb-416e-af73-8deec76a5b27", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-09T21:06:49.000Z" - }, - "end": { - "$date": "2022-01-10T00:51:36.000Z" - }, - "events": [ - { - "uuid": "ac8727d6-30eb-459e-8c40-5f1a887d6974", - "start": { - "$date": "2022-01-09T21:06:49.000Z" - }, - "end": { - "$date": "2022-01-09T21:24:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39082cc0-f49f-44df-9009-9e17ae5cf98f", - "start": { - "$date": "2022-01-09T21:24:49.000Z" - }, - "end": { - "$date": "2022-01-09T21:26:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "93def838-91fe-4228-86c1-b2b1d2c5ca96", - "start": { - "$date": "2022-01-09T21:26:49.000Z" - }, - "end": { - "$date": "2022-01-10T00:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "f455e134-697e-4d2b-aa5f-4462c6d3f466", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-09T21:11:00.000Z" - }, - "end": { - "$date": "2022-01-10T00:06:04.000Z" - }, - "events": [ - { - "uuid": "28e09a45-4313-4108-adc1-8fda9f610b68", - "start": { - "$date": "2022-01-09T21:11:00.000Z" - }, - "end": { - "$date": "2022-01-10T00:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9b3d964b-4e42-4fbc-ad62-85434d01b021", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T21:23:39.000Z" - }, - "end": { - "$date": "2022-01-09T22:11:45.000Z" - }, - "events": [ - { - "uuid": "863a19b6-838c-41d9-84ce-d00a6b88edd6", - "start": { - "$date": "2022-01-09T21:23:39.000Z" - }, - "end": { - "$date": "2022-01-09T22:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "126aba4f-a1dd-412f-8863-91155ca66824", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-09T21:45:14.000Z" - }, - "end": { - "$date": "2022-01-09T22:24:53.000Z" - }, - "events": [ - { - "uuid": "d78267d9-68c7-41c7-bd10-21818600f0b2", - "start": { - "$date": "2022-01-09T21:45:14.000Z" - }, - "end": { - "$date": "2022-01-09T22:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9b9efa26-8907-4854-83f1-d635860b6278", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T22:12:10.000Z" - }, - "end": { - "$date": "2022-01-09T22:39:13.000Z" - }, - "events": [ - { - "uuid": "30111256-b642-4d17-9310-ef38a5e5c73f", - "start": { - "$date": "2022-01-09T22:12:10.000Z" - }, - "end": { - "$date": "2022-01-09T22:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "62e47b5b-2c45-46ab-bb15-b0871f14ebca", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-09T23:24:15.000Z" - }, - "end": { - "$date": "2022-01-10T02:57:08.000Z" - }, - "events": [ - { - "uuid": "3202f303-6252-47ee-ba36-b2ade7ad0f07", - "start": { - "$date": "2022-01-09T23:24:15.000Z" - }, - "end": { - "$date": "2022-01-10T02:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "fc3824c1-f810-4fa3-84a6-30bb6f12a2ca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-10T00:50:25.000Z" - }, - "end": { - "$date": "2022-01-10T02:34:02.000Z" - }, - "events": [ - { - "uuid": "df35be8d-8594-4f6f-bf14-54ef45b9fdc3", - "start": { - "$date": "2022-01-10T00:50:25.000Z" - }, - "end": { - "$date": "2022-01-10T02:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "a0d43e84-839e-4540-b319-99368b1cfc60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-10T01:43:30.000Z" - }, - "end": { - "$date": "2022-01-10T01:59:55.000Z" - }, - "events": [ - { - "uuid": "f702a3ae-d7f8-4206-be97-b5e134bf4596", - "start": { - "$date": "2022-01-10T01:43:30.000Z" - }, - "end": { - "$date": "2022-01-10T01:59:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "12de78a8-b82d-4057-a604-614ce216d5a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-10T02:29:04.000Z" - }, - "end": { - "$date": "2022-01-10T03:12:30.000Z" - }, - "events": [ - { - "uuid": "34b216a3-d7c0-43cc-bcd9-07b6a455b4d2", - "start": { - "$date": "2022-01-10T02:29:04.000Z" - }, - "end": { - "$date": "2022-01-10T03:12:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "be7ce787-f142-4dc8-a974-2431918debe2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-10T02:57:29.000Z" - }, - "end": { - "$date": "2022-01-10T03:13:35.000Z" - }, - "events": [ - { - "uuid": "9a93c45b-0b52-4481-ad6d-0efe0dbb7e61", - "start": { - "$date": "2022-01-10T02:57:29.000Z" - }, - "end": { - "$date": "2022-01-10T03:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "57ebf9bd-9c0a-4f79-9082-c8705a4e0f68", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-10T03:02:25.000Z" - }, - "end": { - "$date": "2022-01-10T05:28:19.000Z" - }, - "events": [ - { - "uuid": "1727bbdc-70b7-4f10-ae43-c127df36f360", - "start": { - "$date": "2022-01-10T03:02:25.000Z" - }, - "end": { - "$date": "2022-01-10T05:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f407e816-bb6b-442e-8e9e-a4bb7d793d0b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-10T03:10:46.000Z" - }, - "end": { - "$date": "2022-01-10T07:51:19.000Z" - }, - "events": [ - { - "uuid": "d200fef9-4bbb-417e-9fb3-11b65d344efc", - "start": { - "$date": "2022-01-10T03:10:46.000Z" - }, - "end": { - "$date": "2022-01-10T07:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5c40f130-4c3a-41cd-be73-01fddada036a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-10T03:16:57.000Z" - }, - "end": { - "$date": "2022-01-10T08:06:33.000Z" - }, - "events": [ - { - "uuid": "43e65439-2451-49eb-b826-7cec73222688", - "start": { - "$date": "2022-01-10T03:16:57.000Z" - }, - "end": { - "$date": "2022-01-10T08:06:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b2cf58ef-5363-4fd7-9ef8-e60d8bd8dca0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-10T03:12:45.000Z" - }, - "end": { - "$date": "2022-01-10T04:18:37.000Z" - }, - "events": [ - { - "uuid": "6c0325c7-b6c1-455e-abab-a9bdb36f0c30", - "start": { - "$date": "2022-01-10T03:12:45.000Z" - }, - "end": { - "$date": "2022-01-10T04:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "ddd70549-99d9-4a75-a8c9-6b0f6ce04ad1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-10T03:22:21.000Z" - }, - "end": { - "$date": "2022-01-10T03:30:01.000Z" - }, - "events": [ - { - "uuid": "398ddab8-c493-4861-b8eb-e554258d520f", - "start": { - "$date": "2022-01-10T03:22:21.000Z" - }, - "end": { - "$date": "2022-01-10T03:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2532043b-a1a1-426a-8ee5-89b267f6f7c2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-10T03:25:57.000Z" - }, - "end": { - "$date": "2022-01-10T03:45:28.000Z" - }, - "events": [ - { - "uuid": "ef608b90-dae3-4d6e-bbbd-3a4fb85bfe88", - "start": { - "$date": "2022-01-10T03:25:57.000Z" - }, - "end": { - "$date": "2022-01-10T03:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "667dcd8d-4ef7-4858-ae75-5f759c3edd44", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-10T03:34:56.000Z" - }, - "end": { - "$date": "2022-01-10T03:36:43.000Z" - }, - "events": [ - { - "uuid": "4c702768-412b-4a28-a01a-1d2bb4d733ea", - "start": { - "$date": "2022-01-10T03:34:56.000Z" - }, - "end": { - "$date": "2022-01-10T03:36:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9034dda8-472b-4956-bffc-07ef127b8dcd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-10T03:37:11.000Z" - }, - "end": { - "$date": "2022-01-10T04:07:41.000Z" - }, - "events": [ - { - "uuid": "af196584-3eb3-4be7-9ef3-54686e2bc294", - "start": { - "$date": "2022-01-10T03:37:11.000Z" - }, - "end": { - "$date": "2022-01-10T04:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20ecab26-02c4-45d6-8d72-c016b1f3550c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-10T03:49:53.000Z" - }, - "end": { - "$date": "2022-01-10T04:19:01.000Z" - }, - "events": [ - { - "uuid": "af1c8214-0285-4853-9fe1-e093954402a1", - "start": { - "$date": "2022-01-10T03:49:53.000Z" - }, - "end": { - "$date": "2022-01-10T04:19:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db4ead34-3826-47e6-afbd-60aae596121e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-10T04:09:22.000Z" - }, - "end": { - "$date": "2022-01-10T04:49:25.000Z" - }, - "events": [ - { - "uuid": "84e22f5c-1814-424a-9f22-3e8240e1440b", - "start": { - "$date": "2022-01-10T04:09:22.000Z" - }, - "end": { - "$date": "2022-01-10T04:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2535b59-090c-4ddf-b8d4-5ac5f0691841", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-10T04:20:02.000Z" - }, - "end": { - "$date": "2022-01-10T05:01:35.000Z" - }, - "events": [ - { - "uuid": "111e9301-c272-4640-8767-a58459e77d4c", - "start": { - "$date": "2022-01-10T04:20:02.000Z" - }, - "end": { - "$date": "2022-01-10T05:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a95d616f-c7c9-4ce0-877e-06646fb76bff", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-10T04:25:38.000Z" - }, - "end": { - "$date": "2022-01-10T05:11:16.000Z" - }, - "events": [ - { - "uuid": "7099f5b4-f37d-4df0-8b67-ec5878c31809", - "start": { - "$date": "2022-01-10T04:25:38.000Z" - }, - "end": { - "$date": "2022-01-10T05:11:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf4250b0-a33a-4bba-a499-95fc36f7c6cf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-10T05:17:32.000Z" - }, - "end": { - "$date": "2022-01-10T07:51:27.000Z" - }, - "events": [ - { - "uuid": "9dc846a5-3b0f-4107-b6d9-f2e9658e25d9", - "start": { - "$date": "2022-01-10T05:17:32.000Z" - }, - "end": { - "$date": "2022-01-10T07:51:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "08b10137-81e4-4076-a0f4-e65e677cfc3b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-10T05:27:04.000Z" - }, - "end": { - "$date": "2022-01-10T05:45:04.000Z" - }, - "events": [ - { - "uuid": "53581d0f-c8cd-49e7-baaf-2900fac5c442", - "start": { - "$date": "2022-01-10T05:27:04.000Z" - }, - "end": { - "$date": "2022-01-10T05:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "e3cae6d7-b5cf-4500-804f-5674b5a128d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-10T05:45:30.000Z" - }, - "end": { - "$date": "2022-01-10T06:03:51.000Z" - }, - "events": [ - { - "uuid": "8985b532-f8b2-4f91-95e8-6e61d333eaa7", - "start": { - "$date": "2022-01-10T05:45:30.000Z" - }, - "end": { - "$date": "2022-01-10T06:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "d579b780-48de-4bff-8635-e3d5fa1e3231", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-10T06:04:12.000Z" - }, - "end": { - "$date": "2022-01-10T06:05:13.000Z" - }, - "events": [ - { - "uuid": "9b387000-dfa7-4186-9d20-ba17315e6c39", - "start": { - "$date": "2022-01-10T06:04:12.000Z" - }, - "end": { - "$date": "2022-01-10T06:05:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "15e403bc-0a71-497c-8778-3dae0f1a4dd0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-10T07:52:52.000Z" - }, - "end": { - "$date": "2022-01-10T08:03:59.000Z" - }, - "events": [ - { - "uuid": "01eb16d6-730b-4636-9550-b2401d6835f2", - "start": { - "$date": "2022-01-10T07:52:52.000Z" - }, - "end": { - "$date": "2022-01-10T08:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "6418ead3-6820-4505-a39c-ae3f0c4ca7f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T16:12:48.000Z" - }, - "end": { - "$date": "2022-01-10T17:17:52.000Z" - }, - "events": [ - { - "uuid": "347d5ecb-f72d-4e00-9a9d-2bc687008a46", - "start": { - "$date": "2022-01-10T16:12:48.000Z" - }, - "end": { - "$date": "2022-01-10T17:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "84764c6a-e8a1-406a-811b-c794cd77063e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-10T16:13:39.000Z" - }, - "end": { - "$date": "2022-01-10T16:36:14.000Z" - }, - "events": [ - { - "uuid": "64375cd2-750e-4e91-979a-c130e543f9da", - "start": { - "$date": "2022-01-10T16:13:39.000Z" - }, - "end": { - "$date": "2022-01-10T16:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "6e490f21-0cd8-4786-ba7a-e6bc11f97c08", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-10T16:40:03.000Z" - }, - "end": { - "$date": "2022-01-10T17:09:20.000Z" - }, - "events": [ - { - "uuid": "44155ecc-86c6-49cc-8a01-18d77568c036", - "start": { - "$date": "2022-01-10T16:40:03.000Z" - }, - "end": { - "$date": "2022-01-10T17:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "726e9927-25bc-4421-9433-bf383ff84af8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T17:19:03.000Z" - }, - "end": { - "$date": "2022-01-10T19:04:50.000Z" - }, - "events": [ - { - "uuid": "c22517cd-990f-424f-b9d5-9234ffcb34de", - "start": { - "$date": "2022-01-10T17:19:03.000Z" - }, - "end": { - "$date": "2022-01-10T19:04:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "2d673789-8ce0-429d-80c7-a22158ff3504", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-10T18:35:32.000Z" - }, - "end": { - "$date": "2022-01-10T18:46:57.000Z" - }, - "events": [ - { - "uuid": "9174ce8f-bb03-4ad2-b4b2-1c4dfe692360", - "start": { - "$date": "2022-01-10T18:35:32.000Z" - }, - "end": { - "$date": "2022-01-10T18:46:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "c29061aa-a283-446e-b25d-1f67f82037d1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T19:20:09.000Z" - }, - "end": { - "$date": "2022-01-10T19:25:02.000Z" - }, - "events": [ - { - "uuid": "22c705c2-ab7e-4a10-a03c-177fc44dabfd", - "start": { - "$date": "2022-01-10T19:20:09.000Z" - }, - "end": { - "$date": "2022-01-10T19:25:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bbc42a5c-8fec-413b-9de1-c9e1aeabd848", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T19:25:25.000Z" - }, - "end": { - "$date": "2022-01-10T20:54:18.000Z" - }, - "events": [ - { - "uuid": "ea812f0d-a172-488b-ba44-bb9a19833351", - "start": { - "$date": "2022-01-10T19:25:25.000Z" - }, - "end": { - "$date": "2022-01-10T20:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "21b32325-d77e-4351-99cb-0b9b187a29b3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-10T20:40:12.000Z" - }, - "end": { - "$date": "2022-01-11T00:53:45.000Z" - }, - "events": [ - { - "uuid": "7693075d-1a6d-4cfe-b7db-dd8cc12c8bfe", - "start": { - "$date": "2022-01-10T20:40:12.000Z" - }, - "end": { - "$date": "2022-01-10T21:52:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40144d1a-1827-469e-b75d-dc98e81c62f3", - "start": { - "$date": "2022-01-10T21:52:12.000Z" - }, - "end": { - "$date": "2022-01-10T22:34:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1220db2b-12f0-46b8-bb54-272861d64ca2", - "start": { - "$date": "2022-01-10T22:34:12.000Z" - }, - "end": { - "$date": "2022-01-11T00:39:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f0ac0946-2546-4d52-a88a-d8add6379269", - "start": { - "$date": "2022-01-11T00:39:12.000Z" - }, - "end": { - "$date": "2022-01-11T00:51:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "166ae308-174d-4aa9-80b2-ab31767cdc9f", - "start": { - "$date": "2022-01-11T00:51:12.000Z" - }, - "end": { - "$date": "2022-01-11T00:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "0fddfe41-21d5-4f99-91c2-d125002e0967", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T21:05:10.000Z" - }, - "end": { - "$date": "2022-01-10T22:16:49.000Z" - }, - "events": [ - { - "uuid": "244cebbf-82ca-48a8-8cd2-6a2ed0b1b5b9", - "start": { - "$date": "2022-01-10T21:05:10.000Z" - }, - "end": { - "$date": "2022-01-10T22:16:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "1e50f405-3c09-4ef2-b8d8-82d038691437", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-10T21:05:21.000Z" - }, - "end": { - "$date": "2022-01-10T21:35:36.000Z" - }, - "events": [ - { - "uuid": "260be580-928c-4849-9321-46ff0bd0db91", - "start": { - "$date": "2022-01-10T21:05:21.000Z" - }, - "end": { - "$date": "2022-01-10T21:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9f81b1d5-d2dc-4d31-934d-b65fd86197ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-10T21:12:39.000Z" - }, - "end": { - "$date": "2022-01-10T22:11:17.000Z" - }, - "events": [ - { - "uuid": "3b02dded-5bd0-4ed3-9afb-073cbef22ffc", - "start": { - "$date": "2022-01-10T21:12:39.000Z" - }, - "end": { - "$date": "2022-01-10T22:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "c0f8435a-2972-49e2-b11a-8d3d1ba99a45", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T22:30:37.000Z" - }, - "end": { - "$date": "2022-01-10T23:19:42.000Z" - }, - "events": [ - { - "uuid": "9d30442d-4246-49e5-85be-3c24672c1883", - "start": { - "$date": "2022-01-10T22:30:37.000Z" - }, - "end": { - "$date": "2022-01-10T23:19:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "95aa5fec-e9b9-4857-91c2-409a2941c87e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-10T23:20:18.000Z" - }, - "end": { - "$date": "2022-01-11T02:41:51.000Z" - }, - "events": [ - { - "uuid": "0b80f930-110d-4e59-a9c3-2b36f21070c8", - "start": { - "$date": "2022-01-10T23:20:18.000Z" - }, - "end": { - "$date": "2022-01-11T02:41:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ae66ce1-60b7-4211-ba7d-d97ff940dec8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-10T23:25:51.000Z" - }, - "end": { - "$date": "2022-01-10T23:38:24.000Z" - }, - "events": [ - { - "uuid": "b91b7ad5-89f4-4613-9eb8-20268b8e8cb0", - "start": { - "$date": "2022-01-10T23:25:51.000Z" - }, - "end": { - "$date": "2022-01-10T23:38:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0d4885bf-c551-4ee7-b4ac-ecb0bbb45bff", - "uuid": "d21bf7a5-25b9-4b38-9d45-335114179f5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-10T23:34:16.000Z" - }, - "end": { - "$date": "2022-01-11T00:21:51.000Z" - }, - "events": [ - { - "uuid": "0e4a1cb6-9d78-4fd8-8617-29da6ac070fb", - "start": { - "$date": "2022-01-10T23:34:16.000Z" - }, - "end": { - "$date": "2022-01-11T00:21:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9b042c1-5f81-4f1f-858b-7de900af4793", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-10T23:40:23.000Z" - }, - "end": { - "$date": "2022-01-11T00:04:52.000Z" - }, - "events": [ - { - "uuid": "05f3f6a3-d0d9-4aaf-ab82-b7e855140605", - "start": { - "$date": "2022-01-10T23:40:23.000Z" - }, - "end": { - "$date": "2022-01-11T00:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a799c54d-4273-4b53-950b-38e25d8b2843", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T00:11:42.000Z" - }, - "end": { - "$date": "2022-01-11T00:38:13.000Z" - }, - "events": [ - { - "uuid": "309236eb-b511-47ef-bee4-0a05a290b3de", - "start": { - "$date": "2022-01-11T00:11:42.000Z" - }, - "end": { - "$date": "2022-01-11T00:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a5ea510-c424-446b-9460-962371e9e476", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-11T00:24:40.000Z" - }, - "end": { - "$date": "2022-01-11T00:27:03.000Z" - }, - "events": [ - { - "uuid": "ce93a1c6-0d04-451b-a2d9-67371eba5176", - "start": { - "$date": "2022-01-11T00:24:40.000Z" - }, - "end": { - "$date": "2022-01-11T00:27:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6fa8ded5-f8a4-46fa-9e4d-c8430ef57ce7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-11T00:32:40.000Z" - }, - "end": { - "$date": "2022-01-11T00:49:38.000Z" - }, - "events": [ - { - "uuid": "334a8a3f-b1c3-4053-ad61-fdeab6463ed1", - "start": { - "$date": "2022-01-11T00:32:40.000Z" - }, - "end": { - "$date": "2022-01-11T00:49:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "ecfaf24c-a5f5-40e8-81fe-d9f72b2359ab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-11T00:41:32.000Z" - }, - "end": { - "$date": "2022-01-11T00:54:13.000Z" - }, - "events": [ - { - "uuid": "80687af0-0cf6-495b-989c-f639547e0ed4", - "start": { - "$date": "2022-01-11T00:41:32.000Z" - }, - "end": { - "$date": "2022-01-11T00:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "da35825d-d626-4f91-af38-02d3347356e6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-11T00:41:44.000Z" - }, - "end": { - "$date": "2022-01-11T02:59:45.000Z" - }, - "events": [ - { - "uuid": "dc1bd6c5-ffbe-4d14-8cb1-a83c17dfebb8", - "start": { - "$date": "2022-01-11T00:41:44.000Z" - }, - "end": { - "$date": "2022-01-11T02:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e25b48b0-4c1b-4ef0-8dc9-16e5762be32d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T00:47:35.000Z" - }, - "end": { - "$date": "2022-01-11T01:25:09.000Z" - }, - "events": [ - { - "uuid": "e72ab42c-c949-420d-afff-e6c6e313286a", - "start": { - "$date": "2022-01-11T00:47:35.000Z" - }, - "end": { - "$date": "2022-01-11T01:25:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "53a1a698-47ad-4183-8169-16929763aa9f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-11T00:54:23.000Z" - }, - "end": { - "$date": "2022-01-11T02:09:07.000Z" - }, - "events": [ - { - "uuid": "f3fc7790-2410-43b9-9bd2-183469987b42", - "start": { - "$date": "2022-01-11T00:54:23.000Z" - }, - "end": { - "$date": "2022-01-11T02:09:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f6e3f3cf-2499-4c13-95da-05166f71f346", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-11T01:06:07.000Z" - }, - "end": { - "$date": "2022-01-11T06:39:58.000Z" - }, - "events": [ - { - "uuid": "e1e1bdbf-237b-4cc2-8002-b691bfdad848", - "start": { - "$date": "2022-01-11T01:06:07.000Z" - }, - "end": { - "$date": "2022-01-11T06:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "28f50a41-7b8a-4818-9569-e138e5e8c907", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-11T01:11:11.000Z" - }, - "end": { - "$date": "2022-01-11T01:13:07.000Z" - }, - "events": [ - { - "uuid": "a3036758-f8fa-4130-9ab8-de040c52633b", - "start": { - "$date": "2022-01-11T01:11:11.000Z" - }, - "end": { - "$date": "2022-01-11T01:13:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "7b9d0c1a-5738-407b-8b54-453e0c106717", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-11T01:13:16.000Z" - }, - "end": { - "$date": "2022-01-11T01:51:38.000Z" - }, - "events": [ - { - "uuid": "1f0619de-91db-49ed-977b-bb565f07af59", - "start": { - "$date": "2022-01-11T01:13:16.000Z" - }, - "end": { - "$date": "2022-01-11T01:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "287ec8fd-ac15-4c30-a64a-877dba5fb5d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-11T01:20:52.000Z" - }, - "end": { - "$date": "2022-01-11T01:25:28.000Z" - }, - "events": [ - { - "uuid": "d22ae713-efa2-47f4-9ca9-78a8e21aba5f", - "start": { - "$date": "2022-01-11T01:20:52.000Z" - }, - "end": { - "$date": "2022-01-11T01:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a79a3e5a-a93d-4046-a0a1-0cff0c8e40cb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T01:26:19.000Z" - }, - "end": { - "$date": "2022-01-11T01:54:20.000Z" - }, - "events": [ - { - "uuid": "ab47e5fa-87d1-4f0c-ae92-bd6a7cdcc3b4", - "start": { - "$date": "2022-01-11T01:26:19.000Z" - }, - "end": { - "$date": "2022-01-11T01:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a48c3c5c-9f12-4322-9312-59ae61e67809", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-11T01:36:04.000Z" - }, - "end": { - "$date": "2022-01-11T02:13:34.000Z" - }, - "events": [ - { - "uuid": "aa1122a5-73e8-4287-acd2-5f8bb6e1505f", - "start": { - "$date": "2022-01-11T01:36:04.000Z" - }, - "end": { - "$date": "2022-01-11T02:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83fd176f-a37f-4838-ac83-0460a9ed36fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-11T01:36:01.000Z" - }, - "end": { - "$date": "2022-01-11T02:13:27.000Z" - }, - "events": [ - { - "uuid": "0038664d-324d-47a7-92f4-565e21cc07ad", - "start": { - "$date": "2022-01-11T01:36:01.000Z" - }, - "end": { - "$date": "2022-01-11T02:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "bd2d700f-947f-46c4-86af-3fe585ee7a79", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-11T01:51:48.000Z" - }, - "end": { - "$date": "2022-01-11T02:04:04.000Z" - }, - "events": [ - { - "uuid": "c0ad7da1-0881-4e9b-b585-2e3d84d558fe", - "start": { - "$date": "2022-01-11T01:51:48.000Z" - }, - "end": { - "$date": "2022-01-11T02:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ce33729-d63f-4155-b6cd-90fc77939c25", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T01:55:15.000Z" - }, - "end": { - "$date": "2022-01-11T02:28:26.000Z" - }, - "events": [ - { - "uuid": "7ddaae9d-a2c4-4fb1-bb2a-7d6276a0a3f1", - "start": { - "$date": "2022-01-11T01:55:15.000Z" - }, - "end": { - "$date": "2022-01-11T02:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1635aacd-59da-4765-bbfa-ce6e1c560c32", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-11T02:15:14.000Z" - }, - "end": { - "$date": "2022-01-11T02:44:00.000Z" - }, - "events": [ - { - "uuid": "c7bc36f9-75c7-4a6d-b53f-a64e92c7461d", - "start": { - "$date": "2022-01-11T02:15:14.000Z" - }, - "end": { - "$date": "2022-01-11T02:44:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "269e52b1-e9d4-4dcf-a211-f02b2ad40a51", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-11T02:17:44.000Z" - }, - "end": { - "$date": "2022-01-11T04:31:51.000Z" - }, - "events": [ - { - "uuid": "45f8dda9-bf02-4606-b50d-f9daf90a8550", - "start": { - "$date": "2022-01-11T02:17:44.000Z" - }, - "end": { - "$date": "2022-01-11T03:13:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c0d60c2a-c308-4cc0-8888-73539e7a9f12", - "start": { - "$date": "2022-01-11T03:13:44.000Z" - }, - "end": { - "$date": "2022-01-11T03:25:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "68da50a9-3c14-4ea9-82e0-32dc8778ada0", - "start": { - "$date": "2022-01-11T03:25:44.000Z" - }, - "end": { - "$date": "2022-01-11T04:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "611382c6-f906-47a6-bcf5-53b9765e25a2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-11T02:19:01.000Z" - }, - "end": { - "$date": "2022-01-11T03:01:24.000Z" - }, - "events": [ - { - "uuid": "771f4759-a722-4e41-8aa4-34703710b6d9", - "start": { - "$date": "2022-01-11T02:19:01.000Z" - }, - "end": { - "$date": "2022-01-11T03:01:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "e51d841c-0d16-481d-8715-1a187ed2ceca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-11T02:27:59.000Z" - }, - "end": { - "$date": "2022-01-11T03:23:07.000Z" - }, - "events": [ - { - "uuid": "3b463e09-00f1-40c5-afb1-fd7b999aa7fd", - "start": { - "$date": "2022-01-11T02:27:59.000Z" - }, - "end": { - "$date": "2022-01-11T03:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8832206-17e6-478c-85de-5251e204d1a8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T02:31:00.000Z" - }, - "end": { - "$date": "2022-01-11T02:56:51.000Z" - }, - "events": [ - { - "uuid": "da8857fe-b0be-45cc-911e-2a2f81aa2caa", - "start": { - "$date": "2022-01-11T02:31:00.000Z" - }, - "end": { - "$date": "2022-01-11T02:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "60799446-34aa-4575-a3a9-b2e69642b9d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-11T02:44:03.000Z" - }, - "end": { - "$date": "2022-01-11T03:38:03.000Z" - }, - "events": [ - { - "uuid": "b8fa9976-05f2-4ed0-ab5e-53bac0799b60", - "start": { - "$date": "2022-01-11T02:44:03.000Z" - }, - "end": { - "$date": "2022-01-11T02:54:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2485dbc2-3819-4abc-8496-746e09246507", - "start": { - "$date": "2022-01-11T02:54:03.000Z" - }, - "end": { - "$date": "2022-01-11T03:27:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8b77ac27-46f3-4b8c-993f-a1124fd00dc8", - "start": { - "$date": "2022-01-11T03:27:03.000Z" - }, - "end": { - "$date": "2022-01-11T03:38:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "122d5fb0-96fa-4481-8c18-87467d5b82d3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T02:58:47.000Z" - }, - "end": { - "$date": "2022-01-11T03:22:03.000Z" - }, - "events": [ - { - "uuid": "b1f85f3e-95a3-4781-84b8-dd12ece507f1", - "start": { - "$date": "2022-01-11T02:58:47.000Z" - }, - "end": { - "$date": "2022-01-11T03:22:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce31f642-8818-462c-803b-9eee7ff0964f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T03:24:23.000Z" - }, - "end": { - "$date": "2022-01-11T03:44:44.000Z" - }, - "events": [ - { - "uuid": "80b0710b-83ed-4843-80fb-f5a8351bb3d9", - "start": { - "$date": "2022-01-11T03:24:23.000Z" - }, - "end": { - "$date": "2022-01-11T03:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b838360f-b050-4158-9dfc-81395440a719", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T03:46:59.000Z" - }, - "end": { - "$date": "2022-01-11T04:12:44.000Z" - }, - "events": [ - { - "uuid": "a0cf934d-b963-4c53-b8f8-d1aff3887708", - "start": { - "$date": "2022-01-11T03:46:59.000Z" - }, - "end": { - "$date": "2022-01-11T04:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb998572-5ff2-418c-85ed-a5c60565d822", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T04:15:00.000Z" - }, - "end": { - "$date": "2022-01-11T04:34:26.000Z" - }, - "events": [ - { - "uuid": "8d954717-a7d3-40fc-b7d2-7353d50ad009", - "start": { - "$date": "2022-01-11T04:15:00.000Z" - }, - "end": { - "$date": "2022-01-11T04:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "da02e4bc-8873-40a4-b522-fbab2233e725", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-11T05:08:50.000Z" - }, - "end": { - "$date": "2022-01-11T07:35:39.000Z" - }, - "events": [ - { - "uuid": "65b7b450-884d-45f2-a157-2e98cb533995", - "start": { - "$date": "2022-01-11T05:08:50.000Z" - }, - "end": { - "$date": "2022-01-11T07:35:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7d9bd2f6-bc9d-4cb2-af88-1d5c87fc2115", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-11T05:19:48.000Z" - }, - "end": { - "$date": "2022-01-11T06:07:31.000Z" - }, - "events": [ - { - "uuid": "8dd26f97-6558-413d-a370-61bea66cc96c", - "start": { - "$date": "2022-01-11T05:19:48.000Z" - }, - "end": { - "$date": "2022-01-11T06:07:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "79a80af9-49ed-40a2-b9e3-a63536c858ed", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-11T05:20:13.000Z" - }, - "end": { - "$date": "2022-01-11T06:07:28.000Z" - }, - "events": [ - { - "uuid": "af1b5bc3-aa07-4c11-8efe-9c6786ba12c1", - "start": { - "$date": "2022-01-11T05:20:13.000Z" - }, - "end": { - "$date": "2022-01-11T06:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ad187db4-31db-41a4-9357-15e0d12ff46e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-11T08:03:41.000Z" - }, - "end": { - "$date": "2022-01-11T10:12:33.000Z" - }, - "events": [ - { - "uuid": "7e6a0468-6c7c-467c-a6fb-f782a7f65202", - "start": { - "$date": "2022-01-11T08:03:41.000Z" - }, - "end": { - "$date": "2022-01-11T10:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "e5ac5322-b1ad-4946-b73d-2a3d27393005", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-11T17:01:11.000Z" - }, - "end": { - "$date": "2022-01-11T17:13:04.000Z" - }, - "events": [ - { - "uuid": "83029ac3-4533-46a6-9641-29a004285015", - "start": { - "$date": "2022-01-11T17:01:11.000Z" - }, - "end": { - "$date": "2022-01-11T17:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4bf55767-0df1-4ea5-a292-11bef957bfe6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-11T17:09:02.000Z" - }, - "end": { - "$date": "2022-01-11T20:42:17.000Z" - }, - "events": [ - { - "uuid": "a6f48b04-4b92-466b-baa6-47a866e558a5", - "start": { - "$date": "2022-01-11T17:09:02.000Z" - }, - "end": { - "$date": "2022-01-11T20:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "13b5bf69-f752-4892-8d27-e77269bb31a6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-11T20:18:33.000Z" - }, - "end": { - "$date": "2022-01-11T21:32:25.000Z" - }, - "events": [ - { - "uuid": "0469adca-fdce-41e7-9c84-cfdbc791146c", - "start": { - "$date": "2022-01-11T20:18:33.000Z" - }, - "end": { - "$date": "2022-01-11T21:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "50cedf8f-1918-47f9-8642-bfc77b65bbe9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-11T20:51:42.000Z" - }, - "end": { - "$date": "2022-01-11T20:57:02.000Z" - }, - "events": [ - { - "uuid": "e51f56fb-731e-4c2d-a1f5-4100a0827c49", - "start": { - "$date": "2022-01-11T20:51:42.000Z" - }, - "end": { - "$date": "2022-01-11T20:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "2c38c222-553c-4938-a7fe-e293248ad84d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-11T20:55:45.000Z" - }, - "end": { - "$date": "2022-01-11T21:50:50.000Z" - }, - "events": [ - { - "uuid": "25109542-6c2f-4e16-bdcd-c4fb210777e8", - "start": { - "$date": "2022-01-11T20:55:45.000Z" - }, - "end": { - "$date": "2022-01-11T21:50:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "519faedc-48a0-45a0-98fc-bfec766a5bf6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-11T20:57:17.000Z" - }, - "end": { - "$date": "2022-01-11T21:01:37.000Z" - }, - "events": [ - { - "uuid": "ae066b11-907f-4a5d-9471-962a1ce62744", - "start": { - "$date": "2022-01-11T20:57:17.000Z" - }, - "end": { - "$date": "2022-01-11T21:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ca75d9d-0bfa-418a-97d3-1f6b704a2bb2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-11T21:43:53.000Z" - }, - "end": { - "$date": "2022-01-11T21:51:43.000Z" - }, - "events": [ - { - "uuid": "343c2264-78d5-4691-b330-213b9e4ca27f", - "start": { - "$date": "2022-01-11T21:43:53.000Z" - }, - "end": { - "$date": "2022-01-11T21:51:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "d4345497-f94f-44ba-b2ba-847766596b3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-11T21:51:35.000Z" - }, - "end": { - "$date": "2022-01-11T22:23:41.000Z" - }, - "events": [ - { - "uuid": "81947b9b-ff35-46e4-89d0-0231f2ee64b5", - "start": { - "$date": "2022-01-11T21:51:35.000Z" - }, - "end": { - "$date": "2022-01-11T22:14:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4478376d-c586-41cc-95ca-a805e9c0a0a7", - "start": { - "$date": "2022-01-11T22:14:35.000Z" - }, - "end": { - "$date": "2022-01-11T22:19:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9da21ede-d311-4151-bf37-dadc240f53a3", - "start": { - "$date": "2022-01-11T22:19:35.000Z" - }, - "end": { - "$date": "2022-01-11T22:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "87b5f161-1310-47be-952c-161177b34522", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-11T22:02:05.000Z" - }, - "end": { - "$date": "2022-01-11T22:31:46.000Z" - }, - "events": [ - { - "uuid": "dba47bc8-946b-437b-95cb-40531f80ed71", - "start": { - "$date": "2022-01-11T22:02:05.000Z" - }, - "end": { - "$date": "2022-01-11T22:31:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87a83cb2-f04c-40ac-a98d-5e03a16b3b06", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-11T22:16:03.000Z" - }, - "end": { - "$date": "2022-01-11T23:00:59.000Z" - }, - "events": [ - { - "uuid": "a34847db-f162-4e45-bc11-7b179919a928", - "start": { - "$date": "2022-01-11T22:16:03.000Z" - }, - "end": { - "$date": "2022-01-11T23:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "2d18cccb-dac7-4891-a75e-104aee811232", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-11T22:24:21.000Z" - }, - "end": { - "$date": "2022-01-11T23:02:14.000Z" - }, - "events": [ - { - "uuid": "588d11f7-0a7e-410c-bf89-4e378767ade5", - "start": { - "$date": "2022-01-11T22:24:21.000Z" - }, - "end": { - "$date": "2022-01-11T23:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "0e7b03c3-1e3a-4670-aeeb-a0ae8e7e90c6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-11T22:33:33.000Z" - }, - "end": { - "$date": "2022-01-11T22:48:14.000Z" - }, - "events": [ - { - "uuid": "c03c327f-5d8c-442d-9178-754fbcce4e5e", - "start": { - "$date": "2022-01-11T22:33:33.000Z" - }, - "end": { - "$date": "2022-01-11T22:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "ec7aef22-2c6a-4ee6-8872-aa2a47916f14", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-11T22:47:05.000Z" - }, - "end": { - "$date": "2022-01-11T23:15:23.000Z" - }, - "events": [ - { - "uuid": "52eb8fc8-9468-4c35-9260-e63c40cd33c1", - "start": { - "$date": "2022-01-11T22:47:05.000Z" - }, - "end": { - "$date": "2022-01-11T23:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c7099a78-0ce6-4c01-9662-52979850b716", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-11T22:55:59.000Z" - }, - "end": { - "$date": "2022-01-11T23:02:35.000Z" - }, - "events": [ - { - "uuid": "0b2265e2-72f5-40b6-9d36-36d10bba5273", - "start": { - "$date": "2022-01-11T22:55:59.000Z" - }, - "end": { - "$date": "2022-01-11T23:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bd2f286-6de3-497d-9f91-f7edaf1ed520", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T23:00:35.000Z" - }, - "end": { - "$date": "2022-01-11T23:24:32.000Z" - }, - "events": [ - { - "uuid": "36370098-b1de-489e-8830-b14fbe36dd72", - "start": { - "$date": "2022-01-11T23:00:35.000Z" - }, - "end": { - "$date": "2022-01-11T23:24:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae88743e-dc89-49a2-9407-885314ec4e8d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-12T09:48:22.000Z" - }, - "end": { - "$date": "2022-01-12T11:49:52.000Z" - }, - "events": [ - { - "uuid": "487ea62a-49db-4e7f-bf67-8a62e2ed088b", - "start": { - "$date": "2022-01-12T09:48:22.000Z" - }, - "end": { - "$date": "2022-01-12T11:48:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1d79be37-4cb3-43de-b3e6-f22b4790c3b1", - "start": { - "$date": "2022-01-12T11:48:22.000Z" - }, - "end": { - "$date": "2022-01-12T11:49:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47be148a-9d0d-4802-9590-8152c5f7dc1e", - "start": { - "$date": "2022-01-12T11:49:22.000Z" - }, - "end": { - "$date": "2022-01-12T13:29:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6204a7cd-9850-46dd-9b9b-2c449d937756", - "start": { - "$date": "2022-01-12T13:29:22.000Z" - }, - "end": { - "$date": "2022-01-12T13:30:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14867913-b84e-4dd1-bd85-95004f29ea28", - "start": { - "$date": "2022-01-12T13:30:22.000Z" - }, - "end": { - "$date": "2022-01-12T13:32:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eab5131e-8516-4bfd-8ec6-67a0a9d6daa6", - "start": { - "$date": "2022-01-12T13:32:22.000Z" - }, - "end": { - "$date": "2022-01-12T13:35:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5d03717d-f349-4ae0-b62c-370c3f1d46df", - "start": { - "$date": "2022-01-12T13:35:22.000Z" - }, - "end": { - "$date": "2022-01-12T20:42:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d592d0a5-0050-462e-be4b-1071a1942f36", - "start": { - "$date": "2022-01-12T20:42:22.000Z" - }, - "end": { - "$date": "2022-01-12T21:21:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9d0e0c1a-fb26-4ab2-9312-294179662e79", - "start": { - "$date": "2022-01-12T21:21:22.000Z" - }, - "end": { - "$date": "2022-01-12T21:23:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5a044eb-d494-4a57-a6c3-e67e08df2de8", - "start": { - "$date": "2022-01-12T21:23:22.000Z" - }, - "end": { - "$date": "2022-01-12T21:24:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b987676c-ab7d-48e2-8f68-d70e9557d62a", - "start": { - "$date": "2022-01-12T21:24:22.000Z" - }, - "end": { - "$date": "2022-01-12T21:26:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7442606-4abb-44b7-858e-e882e499d355", - "start": { - "$date": "2022-01-12T21:26:22.000Z" - }, - "end": { - "$date": "2022-01-12T11:49:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7dbbc517-c763-46e0-be20-65051550f2f6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-11T23:02:16.000Z" - }, - "end": { - "$date": "2022-01-12T01:42:25.000Z" - }, - "events": [ - { - "uuid": "452b201e-6e06-4dc0-8e49-0a5a550708c3", - "start": { - "$date": "2022-01-11T23:02:16.000Z" - }, - "end": { - "$date": "2022-01-12T01:42:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "7b3c58be-9e54-47aa-a57f-f3bedfead0f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-11T23:02:55.000Z" - }, - "end": { - "$date": "2022-01-12T00:22:57.000Z" - }, - "events": [ - { - "uuid": "c0efc705-ca34-46b0-a0a8-4a35fa74fd4b", - "start": { - "$date": "2022-01-11T23:02:55.000Z" - }, - "end": { - "$date": "2022-01-12T00:22:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "8d86fa84-54a0-4ade-9612-5c8409feb36e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-11T23:03:59.000Z" - }, - "end": { - "$date": "2022-01-11T23:40:17.000Z" - }, - "events": [ - { - "uuid": "562308ad-b238-4004-8723-34207160afbe", - "start": { - "$date": "2022-01-11T23:03:59.000Z" - }, - "end": { - "$date": "2022-01-11T23:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3c11b6c6-219d-4f82-b590-065153bbe1ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-11T23:04:13.000Z" - }, - "end": { - "$date": "2022-01-12T01:42:41.000Z" - }, - "events": [ - { - "uuid": "8e198e54-6ee3-4c5b-b644-e32e9b775bc9", - "start": { - "$date": "2022-01-11T23:04:13.000Z" - }, - "end": { - "$date": "2022-01-12T01:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "8e63fd07-8105-4ac3-9707-6d419047d8c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-11T23:15:32.000Z" - }, - "end": { - "$date": "2022-01-12T00:24:09.000Z" - }, - "events": [ - { - "uuid": "cf524ddd-35fd-44cf-8cac-0a3c38fae8d1", - "start": { - "$date": "2022-01-11T23:15:32.000Z" - }, - "end": { - "$date": "2022-01-12T00:24:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "adad2ae2-9e17-4d25-b9ad-ecb932207307", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-11T23:40:26.000Z" - }, - "end": { - "$date": "2022-01-11T23:52:37.000Z" - }, - "events": [ - { - "uuid": "2e7c73d8-e058-4638-8610-cbc671903230", - "start": { - "$date": "2022-01-11T23:40:26.000Z" - }, - "end": { - "$date": "2022-01-11T23:52:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3094be51-3747-47bc-870f-23f727363c54", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-11T23:42:23.000Z" - }, - "end": { - "$date": "2022-01-12T00:17:09.000Z" - }, - "events": [ - { - "uuid": "9f87f10d-55ea-46c0-98a4-8d9857d278cb", - "start": { - "$date": "2022-01-11T23:42:23.000Z" - }, - "end": { - "$date": "2022-01-12T00:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "215f14d8-58d9-40fd-a421-ced61bfa9102", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-12T00:18:27.000Z" - }, - "end": { - "$date": "2022-01-12T00:40:35.000Z" - }, - "events": [ - { - "uuid": "da7f4b55-b735-49d0-960f-6cbcbb5d74e8", - "start": { - "$date": "2022-01-12T00:18:27.000Z" - }, - "end": { - "$date": "2022-01-12T00:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "d63bb8eb-82c0-4ed7-bdac-13a5218713d0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T00:25:49.000Z" - }, - "end": { - "$date": "2022-01-12T00:33:54.000Z" - }, - "events": [ - { - "uuid": "1295f155-7977-41c0-a20e-125110b90a96", - "start": { - "$date": "2022-01-12T00:25:49.000Z" - }, - "end": { - "$date": "2022-01-12T00:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "199c14e9-3059-4287-b50a-b67a23d6a1dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T00:29:59.000Z" - }, - "end": { - "$date": "2022-01-12T01:05:57.000Z" - }, - "events": [ - { - "uuid": "1c78c180-a45b-44e3-8d51-873b3af37d6d", - "start": { - "$date": "2022-01-12T00:29:59.000Z" - }, - "end": { - "$date": "2022-01-12T01:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "7edf95a3-6a48-4556-ad66-559d9bad7535", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T00:42:51.000Z" - }, - "end": { - "$date": "2022-01-12T01:05:52.000Z" - }, - "events": [ - { - "uuid": "21aab9b4-8ba3-4199-91f4-3db9d5e0dd90", - "start": { - "$date": "2022-01-12T00:42:51.000Z" - }, - "end": { - "$date": "2022-01-12T01:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "6408ee96-0d02-4d1f-af17-3c6a86974794", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T01:06:07.000Z" - }, - "end": { - "$date": "2022-01-12T02:30:53.000Z" - }, - "events": [ - { - "uuid": "2c7fe2e2-2ae1-46a9-955e-01c1aa2897a0", - "start": { - "$date": "2022-01-12T01:06:07.000Z" - }, - "end": { - "$date": "2022-01-12T02:30:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "f1e34495-1d73-4e11-a3ff-789a83d11082", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T01:06:18.000Z" - }, - "end": { - "$date": "2022-01-12T04:50:30.000Z" - }, - "events": [ - { - "uuid": "a05b508c-f6af-4b48-95d0-2697d13c3f84", - "start": { - "$date": "2022-01-12T01:06:18.000Z" - }, - "end": { - "$date": "2022-01-12T04:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cb42d7ed-f751-4499-9406-b2c8bc1a1e1b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-12T01:49:01.000Z" - }, - "end": { - "$date": "2022-01-12T06:00:10.000Z" - }, - "events": [ - { - "uuid": "43cedf46-395d-4764-acf3-ea0ac9b482b9", - "start": { - "$date": "2022-01-12T01:49:01.000Z" - }, - "end": { - "$date": "2022-01-12T06:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "19c9e2fc-dd6b-44bb-90a0-a4b96d3f6bc2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-12T02:27:46.000Z" - }, - "end": { - "$date": "2022-01-12T04:58:24.000Z" - }, - "events": [ - { - "uuid": "5bf175a0-d92b-4e80-a40e-b2a9b21dada4", - "start": { - "$date": "2022-01-12T02:27:46.000Z" - }, - "end": { - "$date": "2022-01-12T04:58:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0f152d5-3f80-4834-b6cc-c7ca0af91d76", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-12T02:28:29.000Z" - }, - "end": { - "$date": "2022-01-12T07:38:31.000Z" - }, - "events": [ - { - "uuid": "4420f1ca-82a9-4df8-b358-670721ac73b2", - "start": { - "$date": "2022-01-12T02:28:29.000Z" - }, - "end": { - "$date": "2022-01-12T07:38:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fd036e2b-064b-4579-92a4-539d277c7a73", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-12T02:44:13.000Z" - }, - "end": { - "$date": "2022-01-12T02:48:20.000Z" - }, - "events": [ - { - "uuid": "5fcc6cac-5997-479d-971b-c9ba7cd12da3", - "start": { - "$date": "2022-01-12T02:44:13.000Z" - }, - "end": { - "$date": "2022-01-12T02:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "6304cf15-c530-4611-b899-b6b5d9f728cf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-12T02:48:03.000Z" - }, - "end": { - "$date": "2022-01-12T02:49:10.000Z" - }, - "events": [ - { - "uuid": "59f284ab-0749-4224-87c5-4d5cdb4c497d", - "start": { - "$date": "2022-01-12T02:48:03.000Z" - }, - "end": { - "$date": "2022-01-12T02:49:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d1531313-b7a6-4ba9-8aa9-3ba465cd44f7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-12T02:49:33.000Z" - }, - "end": { - "$date": "2022-01-12T03:16:55.000Z" - }, - "events": [ - { - "uuid": "c8564117-1bfd-46f4-926e-fc6266e2e2af", - "start": { - "$date": "2022-01-12T02:49:33.000Z" - }, - "end": { - "$date": "2022-01-12T03:16:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "7afd0d0b-ca6a-4b3a-856d-480ee8b0e5f9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T02:58:37.000Z" - }, - "end": { - "$date": "2022-01-12T06:48:56.000Z" - }, - "events": [ - { - "uuid": "a69b3a55-86e2-4c4a-a007-0b306c6310f7", - "start": { - "$date": "2022-01-12T02:58:37.000Z" - }, - "end": { - "$date": "2022-01-12T06:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "12537f13-3aba-4d39-b8dd-e6fe8390a4f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-12T03:08:41.000Z" - }, - "end": { - "$date": "2022-01-12T03:14:21.000Z" - }, - "events": [ - { - "uuid": "d9979ada-1b3f-4fd1-8937-d3553255c009", - "start": { - "$date": "2022-01-12T03:08:41.000Z" - }, - "end": { - "$date": "2022-01-12T03:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3790bf03-a7d9-460d-aff8-abdf92787a5b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-12T03:20:07.000Z" - }, - "end": { - "$date": "2022-01-12T03:30:37.000Z" - }, - "events": [ - { - "uuid": "daaa8b49-d0e3-463b-9dc5-a64d56eae743", - "start": { - "$date": "2022-01-12T03:20:07.000Z" - }, - "end": { - "$date": "2022-01-12T03:30:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "042659bb-4b42-4d33-8579-24f00df4cc39", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-12T03:29:15.000Z" - }, - "end": { - "$date": "2022-01-12T03:56:18.000Z" - }, - "events": [ - { - "uuid": "e76dc4de-1315-4d8d-9a43-bab02102192f", - "start": { - "$date": "2022-01-12T03:29:15.000Z" - }, - "end": { - "$date": "2022-01-12T03:56:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2acdc8f3-9608-40cd-87b1-04e87dd6f8bb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-12T03:52:17.000Z" - }, - "end": { - "$date": "2022-01-12T04:19:45.000Z" - }, - "events": [ - { - "uuid": "de7477e5-bb63-43d7-8a4f-f7bd55909a8a", - "start": { - "$date": "2022-01-12T03:52:17.000Z" - }, - "end": { - "$date": "2022-01-12T04:19:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "985e7cc8-7a87-44f8-b94d-2e6221da914f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-12T04:35:41.000Z" - }, - "end": { - "$date": "2022-01-12T04:48:01.000Z" - }, - "events": [ - { - "uuid": "fe9573db-25cc-4bb9-9565-7f39b1ba6340", - "start": { - "$date": "2022-01-12T04:35:41.000Z" - }, - "end": { - "$date": "2022-01-12T04:48:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c498f529-5863-40b3-9fe1-e84563f95ef3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-12T04:58:32.000Z" - }, - "end": { - "$date": "2022-01-12T07:38:28.000Z" - }, - "events": [ - { - "uuid": "96405057-b68a-4aed-8f13-22f059b79b28", - "start": { - "$date": "2022-01-12T04:58:32.000Z" - }, - "end": { - "$date": "2022-01-12T07:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "ba87d748-b749-4cbb-b1c8-19fe33ef9cd9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T05:03:28.000Z" - }, - "end": { - "$date": "2022-01-12T05:51:00.000Z" - }, - "events": [ - { - "uuid": "7b43c2c9-bb2d-40a4-9a8e-d7c378790bda", - "start": { - "$date": "2022-01-12T05:03:28.000Z" - }, - "end": { - "$date": "2022-01-12T05:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "1cdb4cc8-a5d5-4238-9a25-73a7ae9e9aa3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-12T05:03:36.000Z" - }, - "end": { - "$date": "2022-01-12T05:35:13.000Z" - }, - "events": [ - { - "uuid": "0b23193b-0291-4503-80a7-2dd45896a80e", - "start": { - "$date": "2022-01-12T05:03:36.000Z" - }, - "end": { - "$date": "2022-01-12T05:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67fb335e-5448-47bb-8bb5-1d9b887c309b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-12T05:39:57.000Z" - }, - "end": { - "$date": "2022-01-12T06:06:19.000Z" - }, - "events": [ - { - "uuid": "842b5867-8f19-47a0-9194-af1e0454f971", - "start": { - "$date": "2022-01-12T05:39:57.000Z" - }, - "end": { - "$date": "2022-01-12T06:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "0d8cea93-2879-42b9-b133-28e413f4c523", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T06:05:13.000Z" - }, - "end": { - "$date": "2022-01-12T06:12:48.000Z" - }, - "events": [ - { - "uuid": "06ff6051-4bf8-4ae7-97b3-9b32412b6402", - "start": { - "$date": "2022-01-12T06:05:13.000Z" - }, - "end": { - "$date": "2022-01-12T06:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d47c7d22-db72-4807-89c3-3d0d6af893fb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-12T06:07:14.000Z" - }, - "end": { - "$date": "2022-01-12T06:40:58.000Z" - }, - "events": [ - { - "uuid": "6f36dd39-655f-4990-aa77-e26762f420dc", - "start": { - "$date": "2022-01-12T06:07:14.000Z" - }, - "end": { - "$date": "2022-01-12T06:40:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0452f5db-a8ab-4ea6-aa28-4072fd57ea10", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T06:14:59.000Z" - }, - "end": { - "$date": "2022-01-12T07:37:18.000Z" - }, - "events": [ - { - "uuid": "2eb84a57-b33b-4a86-93eb-95af58e45462", - "start": { - "$date": "2022-01-12T06:14:59.000Z" - }, - "end": { - "$date": "2022-01-12T07:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9b7c264c-31cd-4294-969b-4e9f92778cbd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-12T09:45:40.000Z" - }, - "end": { - "$date": "2022-01-12T10:33:11.000Z" - }, - "events": [ - { - "uuid": "22031d57-822f-4c1a-b620-9716c5e51d11", - "start": { - "$date": "2022-01-12T09:45:40.000Z" - }, - "end": { - "$date": "2022-01-12T10:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "56c1f7b8-b540-436b-a561-d826fd1b5309", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-12T16:04:26.000Z" - }, - "end": { - "$date": "2022-01-12T16:31:29.000Z" - }, - "events": [ - { - "uuid": "b00b0896-9305-423b-ae71-4ad5f0a2ebe2", - "start": { - "$date": "2022-01-12T16:04:26.000Z" - }, - "end": { - "$date": "2022-01-12T16:31:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0dcf62a7-f104-4df2-aa73-452470c781e8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T16:23:48.000Z" - }, - "end": { - "$date": "2022-01-12T18:27:22.000Z" - }, - "events": [ - { - "uuid": "201a038e-9b37-49e3-850b-465c1661d6d8", - "start": { - "$date": "2022-01-12T16:23:48.000Z" - }, - "end": { - "$date": "2022-01-12T18:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a0c35984-1ebb-4552-a854-bb44f137e829", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-12T19:13:05.000Z" - }, - "end": { - "$date": "2022-01-12T23:30:57.000Z" - }, - "events": [ - { - "uuid": "312f536f-c3ea-48ed-b615-6d8694d9653f", - "start": { - "$date": "2022-01-12T19:13:05.000Z" - }, - "end": { - "$date": "2022-01-12T23:30:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47f1ff71-41cf-4a00-805b-f747908ef5ac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-12T16:34:40.000Z" - }, - "end": { - "$date": "2022-01-12T17:12:12.000Z" - }, - "events": [ - { - "uuid": "2bf73762-cc3e-4def-9eaa-9192f89729c9", - "start": { - "$date": "2022-01-12T16:34:40.000Z" - }, - "end": { - "$date": "2022-01-12T17:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "94de2483-6537-4c15-bda0-d207338e5ce5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T18:02:26.000Z" - }, - "end": { - "$date": "2022-01-12T18:08:12.000Z" - }, - "events": [ - { - "uuid": "62002ea3-b121-4eaa-8a16-87b9da80103d", - "start": { - "$date": "2022-01-12T18:02:26.000Z" - }, - "end": { - "$date": "2022-01-12T18:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "c8a31fde-b950-4794-af99-fd1d793f4187", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-12T19:13:27.000Z" - }, - "end": { - "$date": "2022-01-13T01:47:19.000Z" - }, - "events": [ - { - "uuid": "00dd284e-2e76-41d8-8bcd-e4a454549de3", - "start": { - "$date": "2022-01-12T19:13:27.000Z" - }, - "end": { - "$date": "2022-01-13T01:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "504fa7ab-35c4-4bc7-abb9-fc6323746dfa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T19:25:50.000Z" - }, - "end": { - "$date": "2022-01-12T21:06:28.000Z" - }, - "events": [ - { - "uuid": "f4c5cb7c-5824-4357-b3dd-d93239f961fb", - "start": { - "$date": "2022-01-12T19:25:50.000Z" - }, - "end": { - "$date": "2022-01-12T21:06:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "2cd4c337-0fe4-4161-b229-1217b38b2627", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-12T22:09:43.000Z" - }, - "end": { - "$date": "2022-01-13T00:55:57.000Z" - }, - "events": [ - { - "uuid": "85f22378-876b-421a-ab69-7af08d274b0b", - "start": { - "$date": "2022-01-12T22:09:43.000Z" - }, - "end": { - "$date": "2022-01-13T00:55:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f560ce89-1ed1-457d-9f69-61b9e34dfedd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-12T22:39:26.000Z" - }, - "end": { - "$date": "2022-01-12T23:01:17.000Z" - }, - "events": [ - { - "uuid": "f9fac7da-73e2-4fb2-982d-defb023af8f3", - "start": { - "$date": "2022-01-12T22:39:26.000Z" - }, - "end": { - "$date": "2022-01-12T23:01:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "1a3e5344-3759-4e27-b1eb-c0da746f0982", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-12T23:32:27.000Z" - }, - "end": { - "$date": "2022-01-13T02:46:45.000Z" - }, - "events": [ - { - "uuid": "28bef16f-8d75-4484-9dfa-1a584e2305cf", - "start": { - "$date": "2022-01-12T23:32:27.000Z" - }, - "end": { - "$date": "2022-01-13T00:56:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "941b901f-2db0-4152-bf99-71a533bc81f2", - "start": { - "$date": "2022-01-13T00:56:27.000Z" - }, - "end": { - "$date": "2022-01-13T01:29:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d239bc79-32a5-42bc-aaa6-3b492ca9756d", - "start": { - "$date": "2022-01-13T01:29:27.000Z" - }, - "end": { - "$date": "2022-01-13T01:57:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c21ed143-245d-491f-9900-23e1e757c265", - "start": { - "$date": "2022-01-13T01:57:27.000Z" - }, - "end": { - "$date": "2022-01-13T02:30:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "818215b3-83c3-442a-85a8-88af796b1f93", - "start": { - "$date": "2022-01-13T02:30:27.000Z" - }, - "end": { - "$date": "2022-01-13T02:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "338a316f-4a6f-4393-be16-6265df1373f7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T00:11:18.000Z" - }, - "end": { - "$date": "2022-01-13T00:30:58.000Z" - }, - "events": [ - { - "uuid": "ca54da71-df18-4b08-97a1-48e3a61c6b1f", - "start": { - "$date": "2022-01-13T00:11:18.000Z" - }, - "end": { - "$date": "2022-01-13T00:30:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c7008b4-e100-47aa-a6fe-24c6c9b3890f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T00:36:59.000Z" - }, - "end": { - "$date": "2022-01-13T01:06:54.000Z" - }, - "events": [ - { - "uuid": "f8b2e1b2-f3ff-4b37-8466-1073f81fb7ca", - "start": { - "$date": "2022-01-13T00:36:59.000Z" - }, - "end": { - "$date": "2022-01-13T01:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "c5a6dc76-dfa9-4a75-832a-855ded96a686", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-13T00:52:39.000Z" - }, - "end": { - "$date": "2022-01-13T01:13:08.000Z" - }, - "events": [ - { - "uuid": "916c6a57-5204-4ac0-a92f-708cbc0aa00b", - "start": { - "$date": "2022-01-13T00:52:39.000Z" - }, - "end": { - "$date": "2022-01-13T01:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23f8eabc-6135-41e4-8541-bc5e1559d90c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T01:10:38.000Z" - }, - "end": { - "$date": "2022-01-13T01:43:15.000Z" - }, - "events": [ - { - "uuid": "3ffe41ed-3006-45de-b3cd-6a22facb01c1", - "start": { - "$date": "2022-01-13T01:10:38.000Z" - }, - "end": { - "$date": "2022-01-13T01:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "eb6fcade-e2b3-4d70-acad-b8000c9dc0ee", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-13T01:11:08.000Z" - }, - "end": { - "$date": "2022-01-13T01:12:58.000Z" - }, - "events": [ - { - "uuid": "c9c42a6e-6030-4803-b18e-5d8b5d447be6", - "start": { - "$date": "2022-01-13T01:11:08.000Z" - }, - "end": { - "$date": "2022-01-13T01:12:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "d0418341-ec23-4786-8735-2ae24bfa2c87", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-13T02:03:14.000Z" - }, - "end": { - "$date": "2022-01-13T02:04:40.000Z" - }, - "events": [ - { - "uuid": "a9df0767-24c9-4ba1-afdb-ef254726c15d", - "start": { - "$date": "2022-01-13T02:03:14.000Z" - }, - "end": { - "$date": "2022-01-13T02:04:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f913e00-6496-431a-8c2a-7a238e463f54", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-13T01:17:00.000Z" - }, - "end": { - "$date": "2022-01-13T02:02:56.000Z" - }, - "events": [ - { - "uuid": "3b5218ac-4fbf-4fd2-b214-ebb7311d9b44", - "start": { - "$date": "2022-01-13T01:17:00.000Z" - }, - "end": { - "$date": "2022-01-13T02:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50b10d39-8a71-4a3d-ae8d-0776a1ef30a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-13T01:16:59.000Z" - }, - "end": { - "$date": "2022-01-13T02:03:03.000Z" - }, - "events": [ - { - "uuid": "22f3e7ea-7419-42ff-bc22-54bd00d94571", - "start": { - "$date": "2022-01-13T01:16:59.000Z" - }, - "end": { - "$date": "2022-01-13T02:03:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "0527f1f5-e2bc-4968-9b81-65acdb91d2de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T01:55:31.000Z" - }, - "end": { - "$date": "2022-01-13T02:06:02.000Z" - }, - "events": [ - { - "uuid": "9d432771-d48d-493a-b58a-91dcb4f7d536", - "start": { - "$date": "2022-01-13T01:55:31.000Z" - }, - "end": { - "$date": "2022-01-13T02:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4832820-cb27-4606-b4b3-6127f657f381", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-13T02:23:51.000Z" - }, - "end": { - "$date": "2022-01-13T02:45:49.000Z" - }, - "events": [ - { - "uuid": "82d9ab70-8112-4f85-b4fd-68e92258bd47", - "start": { - "$date": "2022-01-13T02:23:51.000Z" - }, - "end": { - "$date": "2022-01-13T02:45:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "de7297dd-1546-4446-8921-26f8cee6d89c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-13T02:31:40.000Z" - }, - "end": { - "$date": "2022-01-13T02:57:01.000Z" - }, - "events": [ - { - "uuid": "e929e6b4-3dbe-455f-b6e5-02a8416da922", - "start": { - "$date": "2022-01-13T02:31:40.000Z" - }, - "end": { - "$date": "2022-01-13T02:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d642f146-5b36-4c36-a0b6-b4eef0ad73d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-13T02:04:51.000Z" - }, - "end": { - "$date": "2022-01-13T02:56:45.000Z" - }, - "events": [ - { - "uuid": "ff8c5a7f-58b9-4f2a-aafe-36e411d53572", - "start": { - "$date": "2022-01-13T02:04:51.000Z" - }, - "end": { - "$date": "2022-01-13T02:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f67b315e-34d2-458e-a8e0-973ec24780f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T02:07:53.000Z" - }, - "end": { - "$date": "2022-01-13T02:20:19.000Z" - }, - "events": [ - { - "uuid": "39a706b6-b780-409c-a516-3358c48bea30", - "start": { - "$date": "2022-01-13T02:07:53.000Z" - }, - "end": { - "$date": "2022-01-13T02:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1c78df5c-6f15-45d1-9edc-b388393c756b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-13T02:08:27.000Z" - }, - "end": { - "$date": "2022-01-13T02:17:39.000Z" - }, - "events": [ - { - "uuid": "fc7cdf02-45a6-4b92-af9a-4463bcbfa3e9", - "start": { - "$date": "2022-01-13T02:08:27.000Z" - }, - "end": { - "$date": "2022-01-13T02:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6d43ace5-aa35-4f0f-884a-d84728e9d66c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-13T02:18:09.000Z" - }, - "end": { - "$date": "2022-01-13T02:57:06.000Z" - }, - "events": [ - { - "uuid": "8438b700-b922-4d96-84f9-193bb7fb4d22", - "start": { - "$date": "2022-01-13T02:18:09.000Z" - }, - "end": { - "$date": "2022-01-13T02:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "0909eb0c-9f9b-42d4-90b4-cd889d971379", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-13T02:39:36.000Z" - }, - "end": { - "$date": "2022-01-13T03:13:42.000Z" - }, - "events": [ - { - "uuid": "d081cd9a-05cb-47be-a158-e33deeb69cfb", - "start": { - "$date": "2022-01-13T02:39:36.000Z" - }, - "end": { - "$date": "2022-01-13T03:13:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a525017-2a66-4bd3-a1f4-2afaf119d818", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-13T04:06:54.000Z" - }, - "end": { - "$date": "2022-01-13T04:06:52.000Z" - }, - "events": [ - { - "uuid": "22a2e519-b409-4406-a397-92bec7397251", - "start": { - "$date": "2022-01-13T04:06:54.000Z" - }, - "end": { - "$date": "2022-01-13T04:06:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "307e8fec-4810-4def-8f32-08cb4e08d56a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-13T02:51:10.000Z" - }, - "end": { - "$date": "2022-01-13T03:43:20.000Z" - }, - "events": [ - { - "uuid": "8c1611aa-74b1-4ea2-ae31-fc44b97a7682", - "start": { - "$date": "2022-01-13T02:51:10.000Z" - }, - "end": { - "$date": "2022-01-13T03:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "90aa8d67-29b9-413e-9451-4f0bfef21e17", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-13T02:57:17.000Z" - }, - "end": { - "$date": "2022-01-13T03:08:32.000Z" - }, - "events": [ - { - "uuid": "79ce7948-03a7-4138-afb8-05ad87ba7100", - "start": { - "$date": "2022-01-13T02:57:17.000Z" - }, - "end": { - "$date": "2022-01-13T03:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "99bb25d3-27ca-447f-9248-0def8714c567", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-13T02:58:15.000Z" - }, - "end": { - "$date": "2022-01-13T04:23:58.000Z" - }, - "events": [ - { - "uuid": "c0b84083-e5b6-4365-b055-7e3bf7160f09", - "start": { - "$date": "2022-01-13T02:58:15.000Z" - }, - "end": { - "$date": "2022-01-13T04:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "0639d7fb-a057-4656-a932-bea8aaacf894", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-13T03:09:12.000Z" - }, - "end": { - "$date": "2022-01-13T03:21:17.000Z" - }, - "events": [ - { - "uuid": "f05956e9-332d-4db2-a013-4d2de13bfc7d", - "start": { - "$date": "2022-01-13T03:09:12.000Z" - }, - "end": { - "$date": "2022-01-13T03:21:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "06be80a4-d3f8-40d2-99ba-c3b9ccc655a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-13T02:09:33.000Z" - }, - "end": { - "$date": "2022-01-13T03:11:39.000Z" - }, - "events": [ - { - "uuid": "4c25d736-cdf9-433f-bc92-51e0fea327bd", - "start": { - "$date": "2022-01-13T02:09:33.000Z" - }, - "end": { - "$date": "2022-01-13T03:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c2cb85ad-f491-48e3-8484-5262b55a0dfe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-13T03:12:36.000Z" - }, - "end": { - "$date": "2022-01-13T03:55:31.000Z" - }, - "events": [ - { - "uuid": "d13dfd05-503d-40fa-80c3-8d7a929e6937", - "start": { - "$date": "2022-01-13T03:12:36.000Z" - }, - "end": { - "$date": "2022-01-13T03:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "24891e1e-1b63-4f4b-b3ab-fe589d9cc863", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-13T03:49:09.000Z" - }, - "end": { - "$date": "2022-01-13T03:50:34.000Z" - }, - "events": [ - { - "uuid": "6876dc6c-a94f-4d29-b37a-14b0f54c927b", - "start": { - "$date": "2022-01-13T03:49:09.000Z" - }, - "end": { - "$date": "2022-01-13T03:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "acdbbed7-4470-49be-aebf-a8f0cfa7acd7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T04:07:11.000Z" - }, - "end": { - "$date": "2022-01-13T04:47:39.000Z" - }, - "events": [ - { - "uuid": "941fb1da-5dcb-46e0-bedf-d7279f589544", - "start": { - "$date": "2022-01-13T04:07:11.000Z" - }, - "end": { - "$date": "2022-01-13T04:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f7e9f6f-ad54-4f39-b241-3689b54fed54", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-13T04:16:47.000Z" - }, - "end": { - "$date": "2022-01-13T04:50:23.000Z" - }, - "events": [ - { - "uuid": "afc8aaf8-e113-4fdb-a3f1-d5f75e705611", - "start": { - "$date": "2022-01-13T04:16:47.000Z" - }, - "end": { - "$date": "2022-01-13T04:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "7227baea-8203-4457-885c-788d2f0d3f96", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-13T04:10:27.000Z" - }, - "end": { - "$date": "2022-01-13T06:13:21.000Z" - }, - "events": [ - { - "uuid": "b6d60b06-d3ec-40f5-ad1b-f6b948312c48", - "start": { - "$date": "2022-01-13T04:10:27.000Z" - }, - "end": { - "$date": "2022-01-13T06:13:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c795bee5-ac12-47bf-9733-001e9cc786a6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-13T04:16:59.000Z" - }, - "end": { - "$date": "2022-01-13T04:50:07.000Z" - }, - "events": [ - { - "uuid": "5e1b1e3f-5aaa-47c4-ba64-1f662d5c4424", - "start": { - "$date": "2022-01-13T04:16:59.000Z" - }, - "end": { - "$date": "2022-01-13T04:50:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "759e636e-f76e-4d1e-b320-31c4760f9ef3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-13T04:31:30.000Z" - }, - "end": { - "$date": "2022-01-13T05:27:18.000Z" - }, - "events": [ - { - "uuid": "a7d438b2-4a7d-43cd-9721-e7c6e431ae0b", - "start": { - "$date": "2022-01-13T04:31:30.000Z" - }, - "end": { - "$date": "2022-01-13T05:27:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c88cd6f-1ff3-48a7-948d-01152744c4cd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T04:49:44.000Z" - }, - "end": { - "$date": "2022-01-13T05:11:14.000Z" - }, - "events": [ - { - "uuid": "16210e0a-8963-4c71-b03a-28512e658655", - "start": { - "$date": "2022-01-13T04:49:44.000Z" - }, - "end": { - "$date": "2022-01-13T05:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a3f5dd7-ac42-4574-a5e9-4854fe4d07ae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-13T04:59:19.000Z" - }, - "end": { - "$date": "2022-01-13T05:32:33.000Z" - }, - "events": [ - { - "uuid": "d24070b0-6b07-4c04-99fa-bcfbc9b8bd73", - "start": { - "$date": "2022-01-13T04:59:19.000Z" - }, - "end": { - "$date": "2022-01-13T05:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90bf344e-377c-4b3c-a33f-2be62b50b194", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-13T04:59:20.000Z" - }, - "end": { - "$date": "2022-01-13T05:32:18.000Z" - }, - "events": [ - { - "uuid": "1d20a33e-6801-4618-9be7-234164d9a079", - "start": { - "$date": "2022-01-13T04:59:20.000Z" - }, - "end": { - "$date": "2022-01-13T05:32:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9767f19-ee5b-4bee-a042-26d60d93b69a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T05:15:05.000Z" - }, - "end": { - "$date": "2022-01-13T05:40:46.000Z" - }, - "events": [ - { - "uuid": "0fcee915-ea3d-4021-bd80-e7e20a86f546", - "start": { - "$date": "2022-01-13T05:15:05.000Z" - }, - "end": { - "$date": "2022-01-13T05:40:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d741d896-5e82-4db5-a254-7342835b5542", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-13T05:41:15.000Z" - }, - "end": { - "$date": "2022-01-13T06:16:17.000Z" - }, - "events": [ - { - "uuid": "c2ec0993-0bdd-47e4-9c8d-74f81d3c3aeb", - "start": { - "$date": "2022-01-13T05:41:15.000Z" - }, - "end": { - "$date": "2022-01-13T06:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a896ef2b-1db5-4c20-aad1-45b9f9d0c477", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-13T05:41:11.000Z" - }, - "end": { - "$date": "2022-01-13T06:16:05.000Z" - }, - "events": [ - { - "uuid": "ffacdd9b-4b3f-478f-989e-bf20cfcb00db", - "start": { - "$date": "2022-01-13T05:41:11.000Z" - }, - "end": { - "$date": "2022-01-13T06:16:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3972b663-ed7b-4483-88b6-fee83011d1bf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T05:43:21.000Z" - }, - "end": { - "$date": "2022-01-13T06:00:07.000Z" - }, - "events": [ - { - "uuid": "a9b7cd02-ff99-4d57-81d9-c6b32d01e3b4", - "start": { - "$date": "2022-01-13T05:43:21.000Z" - }, - "end": { - "$date": "2022-01-13T06:00:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "8dac2ba2-1e90-42dc-90ed-029868a862b4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T06:17:19.000Z" - }, - "end": { - "$date": "2022-01-13T07:40:00.000Z" - }, - "events": [ - { - "uuid": "f9ce6269-beb3-4c4e-853e-4c54197109b0", - "start": { - "$date": "2022-01-13T06:17:19.000Z" - }, - "end": { - "$date": "2022-01-13T07:40:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9dc4c306-6bc3-45d6-bcc8-dc6ef5f55a28", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-13T06:47:32.000Z" - }, - "end": { - "$date": "2022-01-13T07:11:20.000Z" - }, - "events": [ - { - "uuid": "2064622a-07f3-495a-a95c-758796b2f243", - "start": { - "$date": "2022-01-13T06:47:32.000Z" - }, - "end": { - "$date": "2022-01-13T07:11:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9f89a265-ff41-44bb-8f86-dc9d90436019", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-13T07:14:33.000Z" - }, - "end": { - "$date": "2022-01-13T07:40:05.000Z" - }, - "events": [ - { - "uuid": "0a86397e-5ea0-496f-b9f2-f0058fb182eb", - "start": { - "$date": "2022-01-13T07:14:33.000Z" - }, - "end": { - "$date": "2022-01-13T07:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2adbf750-b309-42f5-834e-f1717c4d2739", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-13T08:14:50.000Z" - }, - "end": { - "$date": "2022-01-13T08:35:43.000Z" - }, - "events": [ - { - "uuid": "5e77aad6-a253-45d7-835f-066c45d026e2", - "start": { - "$date": "2022-01-13T08:14:50.000Z" - }, - "end": { - "$date": "2022-01-13T08:35:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "019ed376-fd1d-48e2-bd70-1ae67d38521c", - "uuid": "bac63b66-c7b1-426e-a9eb-63fb44d2bfeb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-13T08:44:14.000Z" - }, - "end": { - "$date": "2022-01-13T09:20:42.000Z" - }, - "events": [ - { - "uuid": "e2851e4c-fcc1-402e-be5e-f13c253fd11f", - "start": { - "$date": "2022-01-13T08:44:14.000Z" - }, - "end": { - "$date": "2022-01-13T09:20:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "fbc2c465-b91b-4808-8fab-d9464237ce2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T16:08:46.000Z" - }, - "end": { - "$date": "2022-01-13T16:46:34.000Z" - }, - "events": [ - { - "uuid": "3e22eb85-5b89-47e2-8cd4-3366d3b04679", - "start": { - "$date": "2022-01-13T16:08:46.000Z" - }, - "end": { - "$date": "2022-01-13T16:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", - "uuid": "58237509-9b6d-4e1e-8c0c-1b4e2fdc1f3f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-13T16:09:24.000Z" - }, - "end": { - "$date": "2022-01-13T16:27:20.000Z" - }, - "events": [ - { - "uuid": "3f366b2f-9021-48ff-8e04-ca25e0e6a4eb", - "start": { - "$date": "2022-01-13T16:09:24.000Z" - }, - "end": { - "$date": "2022-01-13T16:27:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "10c3ef32-4407-4429-8e40-36c4767a80b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T17:12:44.000Z" - }, - "end": { - "$date": "2022-01-13T19:43:16.000Z" - }, - "events": [ - { - "uuid": "c695a137-2e0b-46f9-bd03-d41012028d3a", - "start": { - "$date": "2022-01-13T17:12:44.000Z" - }, - "end": { - "$date": "2022-01-13T17:51:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1999a193-a2c0-49b2-9da7-19ce441a1dd9", - "start": { - "$date": "2022-01-13T17:51:44.000Z" - }, - "end": { - "$date": "2022-01-13T17:54:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "761719a6-9575-4a6f-8057-03d7e08ccb00", - "start": { - "$date": "2022-01-13T17:54:44.000Z" - }, - "end": { - "$date": "2022-01-13T19:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "742dbc77-1a38-4afa-a85d-f08f6635f84a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-13T18:30:51.000Z" - }, - "end": { - "$date": "2022-01-13T18:57:16.000Z" - }, - "events": [ - { - "uuid": "1db49fc3-e9a4-452d-abb8-3a9bdd6766c6", - "start": { - "$date": "2022-01-13T18:30:51.000Z" - }, - "end": { - "$date": "2022-01-13T18:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "dfcdb199-6275-4657-8c8d-abd174e98136", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T19:51:37.000Z" - }, - "end": { - "$date": "2022-01-13T21:43:20.000Z" - }, - "events": [ - { - "uuid": "2e4d27ba-731e-4b84-b413-9738e8694c4b", - "start": { - "$date": "2022-01-13T19:51:37.000Z" - }, - "end": { - "$date": "2022-01-13T21:43:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "5a93cc46-2dd3-4678-a299-5c0724328c54", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-13T20:09:41.000Z" - }, - "end": { - "$date": "2022-01-13T21:06:33.000Z" - }, - "events": [ - { - "uuid": "032a104e-f027-4a41-9643-2a2f0a73fb8c", - "start": { - "$date": "2022-01-13T20:09:41.000Z" - }, - "end": { - "$date": "2022-01-13T21:06:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "a1f63257-2761-4995-acda-0f0e5c000c91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-13T21:05:00.000Z" - }, - "end": { - "$date": "2022-01-13T22:50:51.000Z" - }, - "events": [ - { - "uuid": "7abe8c44-c3e2-4737-bc3b-03226ca20564", - "start": { - "$date": "2022-01-13T21:05:00.000Z" - }, - "end": { - "$date": "2022-01-13T21:59:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5733f22-d7df-49b8-a0d7-bff4d82252ac", - "start": { - "$date": "2022-01-13T21:59:00.000Z" - }, - "end": { - "$date": "2022-01-13T22:50:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9fa3f1c1-8552-4780-8b72-d6a887036d18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-13T21:44:00.000Z" - }, - "end": { - "$date": "2022-01-14T00:43:03.000Z" - }, - "events": [ - { - "uuid": "582c7143-64b1-4ca3-a621-5da70cff4187", - "start": { - "$date": "2022-01-13T21:44:00.000Z" - }, - "end": { - "$date": "2022-01-14T00:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5189f97e-fb34-4071-a0c5-423744517592", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-13T22:01:26.000Z" - }, - "end": { - "$date": "2022-01-13T23:13:57.000Z" - }, - "events": [ - { - "uuid": "85b6b479-e055-4df5-bedc-16ef15122e31", - "start": { - "$date": "2022-01-13T22:01:26.000Z" - }, - "end": { - "$date": "2022-01-13T23:13:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e457d40-116b-405f-8573-0ed8583624a0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T23:05:35.000Z" - }, - "end": { - "$date": "2022-01-13T23:43:29.000Z" - }, - "events": [ - { - "uuid": "154f4d3b-f5cb-4171-a9bd-aff892422662", - "start": { - "$date": "2022-01-13T23:05:35.000Z" - }, - "end": { - "$date": "2022-01-13T23:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7ee95521-bcaa-4fde-be39-18d5f2065f96", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-13T23:42:50.000Z" - }, - "end": { - "$date": "2022-01-14T04:17:50.000Z" - }, - "events": [ - { - "uuid": "3c0189e3-9420-4a6d-9f5a-f7a4698b91dd", - "start": { - "$date": "2022-01-13T23:42:50.000Z" - }, - "end": { - "$date": "2022-01-14T01:00:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5da2b27f-f25c-479e-b5c5-8c13c2178385", - "start": { - "$date": "2022-01-14T01:00:50.000Z" - }, - "end": { - "$date": "2022-01-14T01:05:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc33b7cc-c009-44ec-b634-146d02efc627", - "start": { - "$date": "2022-01-14T01:05:50.000Z" - }, - "end": { - "$date": "2022-01-14T01:15:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c00aa95b-cce6-4198-96f3-05bbc4f2ed53", - "start": { - "$date": "2022-01-14T01:15:50.000Z" - }, - "end": { - "$date": "2022-01-14T01:16:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "10d0be25-3624-4c18-aeac-a6d8d70ea67b", - "start": { - "$date": "2022-01-14T01:16:50.000Z" - }, - "end": { - "$date": "2022-01-14T04:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5ad7f422-6bde-4762-906d-c8470873317e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-13T23:45:15.000Z" - }, - "end": { - "$date": "2022-01-14T00:21:48.000Z" - }, - "events": [ - { - "uuid": "f63950af-a4a5-41d0-bc12-59f5e64b5625", - "start": { - "$date": "2022-01-13T23:45:15.000Z" - }, - "end": { - "$date": "2022-01-14T00:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3520cfb-c0c2-4b34-87eb-570c2e9c4e6c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-14T01:31:21.000Z" - }, - "end": { - "$date": "2022-01-14T01:53:20.000Z" - }, - "events": [ - { - "uuid": "639e2735-46c9-442d-a338-cfee3a9c0e16", - "start": { - "$date": "2022-01-14T01:31:21.000Z" - }, - "end": { - "$date": "2022-01-14T01:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64723316-ae83-4d83-b913-9aa2e027e16b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-14T01:25:02.000Z" - }, - "end": { - "$date": "2022-01-14T01:26:20.000Z" - }, - "events": [ - { - "uuid": "d7128317-3607-4f81-96fb-cee1bd0eaf12", - "start": { - "$date": "2022-01-14T01:25:02.000Z" - }, - "end": { - "$date": "2022-01-14T01:26:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "611268a5-c413-40d2-847f-3185dc8333fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-14T01:31:23.000Z" - }, - "end": { - "$date": "2022-01-14T01:53:23.000Z" - }, - "events": [ - { - "uuid": "19d54d28-9b78-4f51-8f98-bb04029e6c83", - "start": { - "$date": "2022-01-14T01:31:23.000Z" - }, - "end": { - "$date": "2022-01-14T01:53:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "61bc7921-e222-48df-a84f-8542b1da098a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-14T01:16:55.000Z" - }, - "end": { - "$date": "2022-01-14T02:06:02.000Z" - }, - "events": [ - { - "uuid": "944eaa56-a717-4274-85ca-1a8b0bbbb3cf", - "start": { - "$date": "2022-01-14T01:16:55.000Z" - }, - "end": { - "$date": "2022-01-14T01:41:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e08edf83-7885-4f4d-9ab3-72e2141f64ba", - "start": { - "$date": "2022-01-14T01:41:55.000Z" - }, - "end": { - "$date": "2022-01-14T01:46:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c3c9a033-fd05-497a-be3d-995559afd3d0", - "start": { - "$date": "2022-01-14T01:46:55.000Z" - }, - "end": { - "$date": "2022-01-14T02:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0294a327-a02b-470b-812f-652f1bb9f20a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-14T02:00:02.000Z" - }, - "end": { - "$date": "2022-01-14T02:21:35.000Z" - }, - "events": [ - { - "uuid": "da9eebf4-cf7d-45a6-867f-60ab1eab05bf", - "start": { - "$date": "2022-01-14T02:00:02.000Z" - }, - "end": { - "$date": "2022-01-14T02:21:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9bb9827-a8ac-4b10-83ba-1f3a8bb5056b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-14T01:59:54.000Z" - }, - "end": { - "$date": "2022-01-14T02:21:44.000Z" - }, - "events": [ - { - "uuid": "b2765743-f225-4512-8455-2fb94b169732", - "start": { - "$date": "2022-01-14T01:59:54.000Z" - }, - "end": { - "$date": "2022-01-14T02:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed705cbd-ceb1-4f87-bb56-feefa70d7c38", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T02:08:33.000Z" - }, - "end": { - "$date": "2022-01-14T02:27:32.000Z" - }, - "events": [ - { - "uuid": "c89e454e-2326-43d6-872f-befd024f7d0e", - "start": { - "$date": "2022-01-14T02:08:33.000Z" - }, - "end": { - "$date": "2022-01-14T02:27:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a72a245-795d-4089-bfe9-6f81e22812b9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T02:12:18.000Z" - }, - "end": { - "$date": "2022-01-14T02:42:07.000Z" - }, - "events": [ - { - "uuid": "7a81f312-314d-4e2e-98f9-9c0a31cf25fe", - "start": { - "$date": "2022-01-14T02:12:18.000Z" - }, - "end": { - "$date": "2022-01-14T02:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f611cf44-9b3f-42f0-b138-89ae37f68cdc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-14T02:11:18.000Z" - }, - "end": { - "$date": "2022-01-14T02:36:51.000Z" - }, - "events": [ - { - "uuid": "827c3566-d2d1-4bec-a257-2dda0f5abb3b", - "start": { - "$date": "2022-01-14T02:11:18.000Z" - }, - "end": { - "$date": "2022-01-14T02:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fca30399-7729-4d85-a29c-e2e3da456199", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-14T02:37:01.000Z" - }, - "end": { - "$date": "2022-01-14T03:42:38.000Z" - }, - "events": [ - { - "uuid": "0b7688c4-8215-4ea3-9707-37a0fda72549", - "start": { - "$date": "2022-01-14T02:37:01.000Z" - }, - "end": { - "$date": "2022-01-14T03:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4e197512-c65c-49df-9bab-ddb6d756d061", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-14T02:37:30.000Z" - }, - "end": { - "$date": "2022-01-14T03:42:41.000Z" - }, - "events": [ - { - "uuid": "3004d366-6747-4a00-ab23-d03017069a6f", - "start": { - "$date": "2022-01-14T02:37:30.000Z" - }, - "end": { - "$date": "2022-01-14T03:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "785f6879-fe0b-46b5-9fd4-d957d4f360fd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T02:45:47.000Z" - }, - "end": { - "$date": "2022-01-14T03:10:58.000Z" - }, - "events": [ - { - "uuid": "ade83c11-5de1-44b2-a677-6cc1b05fd476", - "start": { - "$date": "2022-01-14T02:45:47.000Z" - }, - "end": { - "$date": "2022-01-14T03:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3a84a755-cd90-4f2b-a765-596bbd197b39", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-14T03:02:15.000Z" - }, - "end": { - "$date": "2022-01-14T06:38:04.000Z" - }, - "events": [ - { - "uuid": "11ea99cb-c094-4214-b098-22183c3cd7a3", - "start": { - "$date": "2022-01-14T03:02:15.000Z" - }, - "end": { - "$date": "2022-01-14T06:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95d205ff-3cd0-4d26-8ef1-02c176768aa5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T03:14:08.000Z" - }, - "end": { - "$date": "2022-01-14T03:35:24.000Z" - }, - "events": [ - { - "uuid": "cf7c1481-8313-4e90-b6b5-830dfd6f91ac", - "start": { - "$date": "2022-01-14T03:14:08.000Z" - }, - "end": { - "$date": "2022-01-14T03:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a16e41bd-5aa0-4a1e-891b-63198ea4d06c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T03:19:38.000Z" - }, - "end": { - "$date": "2022-01-14T05:41:41.000Z" - }, - "events": [ - { - "uuid": "d817f2c6-a1b2-4fda-99b0-9a9cf083fbda", - "start": { - "$date": "2022-01-14T03:19:38.000Z" - }, - "end": { - "$date": "2022-01-14T05:41:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5448e766-9136-4726-8393-b4377dd11b56", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T03:38:54.000Z" - }, - "end": { - "$date": "2022-01-14T04:04:29.000Z" - }, - "events": [ - { - "uuid": "eb9ef113-9cd3-4b9e-9f6c-201fbd831c9a", - "start": { - "$date": "2022-01-14T03:38:54.000Z" - }, - "end": { - "$date": "2022-01-14T04:04:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dcf324a5-53b8-4db7-8d89-bbb603961c88", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T04:07:40.000Z" - }, - "end": { - "$date": "2022-01-14T04:09:00.000Z" - }, - "events": [ - { - "uuid": "b1f11c14-2ecc-402c-b8e6-faf148db6563", - "start": { - "$date": "2022-01-14T04:07:40.000Z" - }, - "end": { - "$date": "2022-01-14T04:09:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79c56fb5-c6bc-4a36-a2ea-e3aba9f38788", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T04:10:35.000Z" - }, - "end": { - "$date": "2022-01-14T04:39:53.000Z" - }, - "events": [ - { - "uuid": "a0144503-2b9f-4f6f-9b0b-cd036ed78820", - "start": { - "$date": "2022-01-14T04:10:35.000Z" - }, - "end": { - "$date": "2022-01-14T04:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "32d5b2ea-f17a-4823-a83c-3c4ed31ac995", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T04:19:19.000Z" - }, - "end": { - "$date": "2022-01-14T05:41:32.000Z" - }, - "events": [ - { - "uuid": "0c8eb053-63f6-4282-b821-9c4386903cbe", - "start": { - "$date": "2022-01-14T04:19:19.000Z" - }, - "end": { - "$date": "2022-01-14T05:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ad87547-2807-4035-930b-40aaa15ec52a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-14T05:27:52.000Z" - }, - "end": { - "$date": "2022-01-14T05:49:17.000Z" - }, - "events": [ - { - "uuid": "76a1caca-1941-4fdd-8d8b-377f72b4b83f", - "start": { - "$date": "2022-01-14T05:27:52.000Z" - }, - "end": { - "$date": "2022-01-14T05:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "70ff00cc-9145-484c-af7d-d4bc602459cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T05:43:11.000Z" - }, - "end": { - "$date": "2022-01-14T06:02:23.000Z" - }, - "events": [ - { - "uuid": "cf0361e6-b164-44b4-8114-1e6ffc0e8fd3", - "start": { - "$date": "2022-01-14T05:43:11.000Z" - }, - "end": { - "$date": "2022-01-14T06:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "1d181510-0d1d-442d-819c-ae9e6300b77f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T05:43:46.000Z" - }, - "end": { - "$date": "2022-01-14T07:28:46.000Z" - }, - "events": [ - { - "uuid": "07c1f65f-b71f-49ee-9574-390eb586f552", - "start": { - "$date": "2022-01-14T05:43:46.000Z" - }, - "end": { - "$date": "2022-01-14T07:28:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "019ed376-fd1d-48e2-bd70-1ae67d38521c", - "uuid": "3cfdf133-4720-4473-9133-815248d91768", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-14T06:03:19.000Z" - }, - "end": { - "$date": "2022-01-14T06:52:09.000Z" - }, - "events": [ - { - "uuid": "406515ea-3282-4190-bac9-1cc7f82a8e00", - "start": { - "$date": "2022-01-14T06:03:19.000Z" - }, - "end": { - "$date": "2022-01-14T06:52:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0bd2d2fd-7ad4-4078-a033-05b63cd94b9f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-14T06:37:12.000Z" - }, - "end": { - "$date": "2022-01-14T06:43:16.000Z" - }, - "events": [ - { - "uuid": "7f50415d-535f-47c1-9126-f0e82d65db8c", - "start": { - "$date": "2022-01-14T06:37:12.000Z" - }, - "end": { - "$date": "2022-01-14T06:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cddff332-fe3f-4770-a47d-a6b25b633919", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-14T06:53:28.000Z" - }, - "end": { - "$date": "2022-01-14T07:34:13.000Z" - }, - "events": [ - { - "uuid": "9ca4ec5c-5118-447b-9d72-c1ae6ecb8aa6", - "start": { - "$date": "2022-01-14T06:53:28.000Z" - }, - "end": { - "$date": "2022-01-14T07:34:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80ab84a2-8910-43af-a717-3e1531106122", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-14T06:53:28.000Z" - }, - "end": { - "$date": "2022-01-14T07:34:06.000Z" - }, - "events": [ - { - "uuid": "953d1add-8c2a-4ddd-931c-6b69b77f6511", - "start": { - "$date": "2022-01-14T06:53:28.000Z" - }, - "end": { - "$date": "2022-01-14T07:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "ea249fcf-ae58-4e80-8c6b-bc273e60a705", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-14T06:56:49.000Z" - }, - "end": { - "$date": "2022-01-14T07:28:39.000Z" - }, - "events": [ - { - "uuid": "69e2edc4-92e0-40e5-8b8d-96da64c811f7", - "start": { - "$date": "2022-01-14T06:56:49.000Z" - }, - "end": { - "$date": "2022-01-14T07:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "019ed376-fd1d-48e2-bd70-1ae67d38521c", - "uuid": "7aa50f34-4727-415d-b1ee-10c9ea869c0b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-14T07:21:52.000Z" - }, - "end": { - "$date": "2022-01-14T08:01:20.000Z" - }, - "events": [ - { - "uuid": "34963da7-9e91-47c1-8dd2-2432e9b2cc30", - "start": { - "$date": "2022-01-14T07:21:52.000Z" - }, - "end": { - "$date": "2022-01-14T08:01:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b55c4b9-6981-4c95-b2ec-a5b09e5c9f74", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-14T07:34:56.000Z" - }, - "end": { - "$date": "2022-01-14T07:36:23.000Z" - }, - "events": [ - { - "uuid": "586c5c56-14e5-4a74-ac4c-7033af999f64", - "start": { - "$date": "2022-01-14T07:34:56.000Z" - }, - "end": { - "$date": "2022-01-14T07:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", - "uuid": "a83db008-036a-4b22-ac47-076fd27247a1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-14T08:11:52.000Z" - }, - "end": { - "$date": "2022-01-14T08:36:46.000Z" - }, - "events": [ - { - "uuid": "4ec1c10f-86c1-475b-a2ed-542ebb731c9c", - "start": { - "$date": "2022-01-14T08:11:52.000Z" - }, - "end": { - "$date": "2022-01-14T08:36:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "fcbc410e-0beb-4082-8703-cc2e97ff31b4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T15:26:00.000Z" - }, - "end": { - "$date": "2022-01-14T16:16:28.000Z" - }, - "events": [ - { - "uuid": "e45ddae6-d230-4798-a303-c9cf48c2979b", - "start": { - "$date": "2022-01-14T15:26:00.000Z" - }, - "end": { - "$date": "2022-01-14T16:16:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e5291a58-3fa6-4522-89a6-5d374f89f4ba", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T16:11:11.000Z" - }, - "end": { - "$date": "2022-01-14T17:26:59.000Z" - }, - "events": [ - { - "uuid": "fb532cf2-7d78-4026-a904-513d37f373a3", - "start": { - "$date": "2022-01-14T16:11:11.000Z" - }, - "end": { - "$date": "2022-01-14T17:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "26474d71-f697-46b9-83e0-ff6ae57e4ac0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T16:20:17.000Z" - }, - "end": { - "$date": "2022-01-14T17:26:57.000Z" - }, - "events": [ - { - "uuid": "5447f65a-6362-45b4-844e-bca0e8d22900", - "start": { - "$date": "2022-01-14T16:20:17.000Z" - }, - "end": { - "$date": "2022-01-14T17:26:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "d148f4d5-8e44-4f83-b3ac-fd2ba13082a9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-14T16:49:33.000Z" - }, - "end": { - "$date": "2022-01-14T16:59:22.000Z" - }, - "events": [ - { - "uuid": "0f076651-fef5-4a82-9e0b-ac7075a74693", - "start": { - "$date": "2022-01-14T16:49:33.000Z" - }, - "end": { - "$date": "2022-01-14T16:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "749e0c1f-001f-4b60-acfd-f680712b4981", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-14T17:07:46.000Z" - }, - "end": { - "$date": "2022-01-14T18:19:57.000Z" - }, - "events": [ - { - "uuid": "35d37fe8-f807-47e4-9933-d47caf75b982", - "start": { - "$date": "2022-01-14T17:07:46.000Z" - }, - "end": { - "$date": "2022-01-14T18:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "72e27f0b-d7da-4197-9441-7dab8ab96dc6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T17:27:17.000Z" - }, - "end": { - "$date": "2022-01-14T18:55:09.000Z" - }, - "events": [ - { - "uuid": "8108ec51-2212-4566-b4de-212347eca3c9", - "start": { - "$date": "2022-01-14T17:27:17.000Z" - }, - "end": { - "$date": "2022-01-14T18:55:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "a3830ea5-b793-48e8-b48d-2420478a11d5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T17:27:39.000Z" - }, - "end": { - "$date": "2022-01-14T18:51:02.000Z" - }, - "events": [ - { - "uuid": "b7740f49-a1d5-45ed-8529-b1088ac8ed87", - "start": { - "$date": "2022-01-14T17:27:39.000Z" - }, - "end": { - "$date": "2022-01-14T18:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "8b70833b-900e-4255-b2c4-9395da86a53a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-14T17:30:22.000Z" - }, - "end": { - "$date": "2022-01-14T17:56:45.000Z" - }, - "events": [ - { - "uuid": "98476509-1477-46d2-9177-aa3f88ef1a80", - "start": { - "$date": "2022-01-14T17:30:22.000Z" - }, - "end": { - "$date": "2022-01-14T17:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b1003abc-f503-49aa-a11b-fc143683271a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T17:46:08.000Z" - }, - "end": { - "$date": "2022-01-14T18:01:49.000Z" - }, - "events": [ - { - "uuid": "ba2abe3c-3da7-477e-9694-26cf1213fd25", - "start": { - "$date": "2022-01-14T17:46:08.000Z" - }, - "end": { - "$date": "2022-01-14T18:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d102fae3-f4ae-49d9-b5da-578e8734cf5d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T18:44:59.000Z" - }, - "end": { - "$date": "2022-01-14T19:20:42.000Z" - }, - "events": [ - { - "uuid": "16197bc0-c643-4cdb-ba04-5701e8465540", - "start": { - "$date": "2022-01-14T18:44:59.000Z" - }, - "end": { - "$date": "2022-01-14T19:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "63738280-bacc-4553-8227-6e85684fe07c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T19:21:10.000Z" - }, - "end": { - "$date": "2022-01-14T20:05:32.000Z" - }, - "events": [ - { - "uuid": "916a3384-6165-4e06-ae0a-78cad0de1e50", - "start": { - "$date": "2022-01-14T19:21:10.000Z" - }, - "end": { - "$date": "2022-01-14T20:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "2f11ecb2-e2db-4cde-846f-ceb58848e3de", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T19:21:13.000Z" - }, - "end": { - "$date": "2022-01-14T20:34:49.000Z" - }, - "events": [ - { - "uuid": "db33b422-6504-4ca3-97eb-7fac7ea80748", - "start": { - "$date": "2022-01-14T19:21:13.000Z" - }, - "end": { - "$date": "2022-01-14T20:34:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eafd723a-3648-4578-b208-8064c10a765f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T19:24:29.000Z" - }, - "end": { - "$date": "2022-01-14T19:37:55.000Z" - }, - "events": [ - { - "uuid": "095f5ec5-10ac-486a-a822-ad2c6a59ad45", - "start": { - "$date": "2022-01-14T19:24:29.000Z" - }, - "end": { - "$date": "2022-01-14T19:37:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "cf05aff4-9dc4-46ef-82ed-52880e3382c8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-14T19:58:14.000Z" - }, - "end": { - "$date": "2022-01-14T20:32:20.000Z" - }, - "events": [ - { - "uuid": "bacbfb26-a177-4d5b-ae21-cc732fb3eb1a", - "start": { - "$date": "2022-01-14T19:58:14.000Z" - }, - "end": { - "$date": "2022-01-14T20:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "74668c5f-bcd8-4a5d-aa52-e90e6c27c36d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T19:58:36.000Z" - }, - "end": { - "$date": "2022-01-14T20:01:26.000Z" - }, - "events": [ - { - "uuid": "c489130b-900d-4fc0-b95c-6df6f9bedba0", - "start": { - "$date": "2022-01-14T19:58:36.000Z" - }, - "end": { - "$date": "2022-01-14T20:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "27cf82bb-ee82-47a5-bc22-2219de3b8479", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T20:08:07.000Z" - }, - "end": { - "$date": "2022-01-14T20:11:17.000Z" - }, - "events": [ - { - "uuid": "e9a57247-dc24-4ff6-9d9f-0c4b3f8de49d", - "start": { - "$date": "2022-01-14T20:08:07.000Z" - }, - "end": { - "$date": "2022-01-14T20:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c2340292-d8e6-4d6e-8db9-71184f654761", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-14T20:26:03.000Z" - }, - "end": { - "$date": "2022-01-14T20:46:34.000Z" - }, - "events": [ - { - "uuid": "c734bbdb-d19f-407b-ad16-897b4ca95199", - "start": { - "$date": "2022-01-14T20:26:03.000Z" - }, - "end": { - "$date": "2022-01-14T20:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91efdb4b-d40e-4957-bdbf-d81488be9ae7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-14T20:43:18.000Z" - }, - "end": { - "$date": "2022-01-14T21:14:11.000Z" - }, - "events": [ - { - "uuid": "e4bb341d-8655-4e62-b576-b4560f60ec2c", - "start": { - "$date": "2022-01-14T20:43:18.000Z" - }, - "end": { - "$date": "2022-01-14T21:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4ffe4842-71f3-4532-8dd4-7d023af28db2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T20:34:10.000Z" - }, - "end": { - "$date": "2022-01-14T21:04:34.000Z" - }, - "events": [ - { - "uuid": "ef6020c5-bfc6-40b5-8756-f4c68d1da244", - "start": { - "$date": "2022-01-14T20:34:10.000Z" - }, - "end": { - "$date": "2022-01-14T21:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "95da7c4b-5933-47a7-9b24-7e9ec2186309", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T21:08:36.000Z" - }, - "end": { - "$date": "2022-01-14T21:18:24.000Z" - }, - "events": [ - { - "uuid": "ea1c9aa3-f80c-4675-a904-d518dc51891a", - "start": { - "$date": "2022-01-14T21:08:36.000Z" - }, - "end": { - "$date": "2022-01-14T21:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "374426e0-77d7-4f18-bf0c-d1efcd339a68", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-14T21:14:36.000Z" - }, - "end": { - "$date": "2022-01-14T23:31:49.000Z" - }, - "events": [ - { - "uuid": "cb28f5cd-2cec-4ed2-bcb9-d41c4dcf1aea", - "start": { - "$date": "2022-01-14T21:14:36.000Z" - }, - "end": { - "$date": "2022-01-14T23:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "88efb3fc-f8d0-420c-ae13-50cb99eeb3c3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-14T22:05:44.000Z" - }, - "end": { - "$date": "2022-01-14T23:29:15.000Z" - }, - "events": [ - { - "uuid": "de8652dd-837d-409a-a7fb-7af68a0d987c", - "start": { - "$date": "2022-01-14T22:05:44.000Z" - }, - "end": { - "$date": "2022-01-14T22:39:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b059471a-e5d1-450b-9046-d65eb2888529", - "start": { - "$date": "2022-01-14T22:39:44.000Z" - }, - "end": { - "$date": "2022-01-14T22:44:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "57724916-3c9e-445a-aeeb-5ac1a30b380c", - "start": { - "$date": "2022-01-14T22:44:44.000Z" - }, - "end": { - "$date": "2022-01-14T22:54:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f01c4c00-8bd7-4499-88c9-9e822d02ce61", - "start": { - "$date": "2022-01-14T22:54:44.000Z" - }, - "end": { - "$date": "2022-01-14T23:04:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "da8ecda3-bc7a-45b8-8ad2-1e17fea4d68d", - "start": { - "$date": "2022-01-14T23:04:44.000Z" - }, - "end": { - "$date": "2022-01-14T23:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "123aea18-b2f5-4a9a-b676-b2e70cace6bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T22:05:47.000Z" - }, - "end": { - "$date": "2022-01-14T22:54:24.000Z" - }, - "events": [ - { - "uuid": "e5e4f984-78c7-4b55-9a66-0b8596b70eab", - "start": { - "$date": "2022-01-14T22:05:47.000Z" - }, - "end": { - "$date": "2022-01-14T22:54:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e10cb842-8833-46b8-ac7c-f7424cf6fce3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-14T23:04:45.000Z" - }, - "end": { - "$date": "2022-01-15T02:38:29.000Z" - }, - "events": [ - { - "uuid": "11669ed5-6eda-415f-b878-6382a4bb290d", - "start": { - "$date": "2022-01-14T23:04:45.000Z" - }, - "end": { - "$date": "2022-01-15T02:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "85a7c1b4-f5ed-4e41-af04-4165180728da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T00:11:43.000Z" - }, - "end": { - "$date": "2022-01-15T00:34:59.000Z" - }, - "events": [ - { - "uuid": "b7ef96d7-fc97-4488-ab08-f13f7cc172d1", - "start": { - "$date": "2022-01-15T00:11:43.000Z" - }, - "end": { - "$date": "2022-01-15T00:34:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "ab9092dd-fb5d-40ab-ac96-894a46f81146", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-15T00:14:16.000Z" - }, - "end": { - "$date": "2022-01-15T02:05:30.000Z" - }, - "events": [ - { - "uuid": "0a08a822-b190-4e63-9559-800fbc28d106", - "start": { - "$date": "2022-01-15T00:14:16.000Z" - }, - "end": { - "$date": "2022-01-15T02:05:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b574a53-aca9-459a-9875-6762c0a3e5dd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-15T00:31:07.000Z" - }, - "end": { - "$date": "2022-01-15T00:46:27.000Z" - }, - "events": [ - { - "uuid": "54d62c88-c66f-4787-bef8-9a1d45ebfbce", - "start": { - "$date": "2022-01-15T00:31:07.000Z" - }, - "end": { - "$date": "2022-01-15T00:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "41af381c-bdc2-4674-a9e3-b59a792d1d58", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T00:35:38.000Z" - }, - "end": { - "$date": "2022-01-15T02:33:17.000Z" - }, - "events": [ - { - "uuid": "4ea3e051-1cb6-4917-bd38-e5acfedf7308", - "start": { - "$date": "2022-01-15T00:35:38.000Z" - }, - "end": { - "$date": "2022-01-15T02:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "37bf372b-cdf8-4a23-945a-4329dd75b96f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T00:49:32.000Z" - }, - "end": { - "$date": "2022-01-15T01:47:30.000Z" - }, - "events": [ - { - "uuid": "519238ae-f403-46bb-bfee-7fdf586d4884", - "start": { - "$date": "2022-01-15T00:49:32.000Z" - }, - "end": { - "$date": "2022-01-15T01:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", - "uuid": "33c294f5-bb95-429e-9c00-463ce6ac4d7d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-15T00:57:28.000Z" - }, - "end": { - "$date": "2022-01-15T01:09:57.000Z" - }, - "events": [ - { - "uuid": "fc1333f7-0b88-4f16-945a-eebf2bc5a8c4", - "start": { - "$date": "2022-01-15T00:57:28.000Z" - }, - "end": { - "$date": "2022-01-15T01:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e4ac4f01-3abf-4753-a779-b1a13204d8ba", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T01:15:53.000Z" - }, - "end": { - "$date": "2022-01-15T03:05:22.000Z" - }, - "events": [ - { - "uuid": "fd7b6b55-6ac7-4349-baf1-5d9b9c530f8c", - "start": { - "$date": "2022-01-15T01:15:53.000Z" - }, - "end": { - "$date": "2022-01-15T03:05:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "b9a855dc-e90c-4b8b-8370-da8b6f82556e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T02:23:54.000Z" - }, - "end": { - "$date": "2022-01-15T02:45:20.000Z" - }, - "events": [ - { - "uuid": "7faf620b-3347-4804-b731-4c953c0c5e20", - "start": { - "$date": "2022-01-15T02:23:54.000Z" - }, - "end": { - "$date": "2022-01-15T02:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36053066-6025-4540-a7e8-64db74c1c075", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-15T02:50:50.000Z" - }, - "end": { - "$date": "2022-01-15T03:36:05.000Z" - }, - "events": [ - { - "uuid": "07ecf714-aad3-4a44-9b86-2ee0c8b5ce61", - "start": { - "$date": "2022-01-15T02:50:50.000Z" - }, - "end": { - "$date": "2022-01-15T03:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d1da33b-a4db-4dfe-86bb-005c2d4b2a90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T02:50:50.000Z" - }, - "end": { - "$date": "2022-01-15T03:35:56.000Z" - }, - "events": [ - { - "uuid": "d7e45acd-37a1-4f1d-9762-f503e18b323c", - "start": { - "$date": "2022-01-15T02:50:50.000Z" - }, - "end": { - "$date": "2022-01-15T03:35:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a57bf93e-443e-45a5-9846-9d34cd6b4e91", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T02:52:25.000Z" - }, - "end": { - "$date": "2022-01-15T03:27:46.000Z" - }, - "events": [ - { - "uuid": "627293ed-3385-4118-aec3-c7aaeb2fa560", - "start": { - "$date": "2022-01-15T02:52:25.000Z" - }, - "end": { - "$date": "2022-01-15T03:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a974798a-c439-4c70-af44-adb8ae29a2fb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T03:22:05.000Z" - }, - "end": { - "$date": "2022-01-15T04:06:32.000Z" - }, - "events": [ - { - "uuid": "acece62b-3c1e-4bd1-9478-279cdf6a8de3", - "start": { - "$date": "2022-01-15T03:22:05.000Z" - }, - "end": { - "$date": "2022-01-15T04:06:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9a9041e5-f7f1-4e60-91f6-590107fcdf85", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T03:27:56.000Z" - }, - "end": { - "$date": "2022-01-15T03:46:09.000Z" - }, - "events": [ - { - "uuid": "d70bd0fe-6873-412e-ac26-722af28a8962", - "start": { - "$date": "2022-01-15T03:27:56.000Z" - }, - "end": { - "$date": "2022-01-15T03:46:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "474bc8ee-6ab6-49a8-ab14-bc37728107bb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-15T03:09:19.000Z" - }, - "end": { - "$date": "2022-01-15T05:18:15.000Z" - }, - "events": [ - { - "uuid": "433f30b4-eada-4d00-b306-bac805138be2", - "start": { - "$date": "2022-01-15T03:09:19.000Z" - }, - "end": { - "$date": "2022-01-15T04:34:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd9e2d4f-bd9b-4762-bbf1-84ae2a569f4d", - "start": { - "$date": "2022-01-15T04:34:19.000Z" - }, - "end": { - "$date": "2022-01-15T05:18:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "0974f1fa-db5d-4eb3-9592-8a5445282743", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T03:48:29.000Z" - }, - "end": { - "$date": "2022-01-15T06:28:28.000Z" - }, - "events": [ - { - "uuid": "9693dd78-be75-4078-96bf-b78a9e77919e", - "start": { - "$date": "2022-01-15T03:48:29.000Z" - }, - "end": { - "$date": "2022-01-15T06:28:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "b1a95b06-c90f-4377-87b9-8c110bf0b00b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-15T03:50:21.000Z" - }, - "end": { - "$date": "2022-01-15T06:28:31.000Z" - }, - "events": [ - { - "uuid": "7edcb8e4-4c44-4d09-8493-039d5f31f21a", - "start": { - "$date": "2022-01-15T03:50:21.000Z" - }, - "end": { - "$date": "2022-01-15T06:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "551659dc-8049-42c3-8df3-520ff75feaa4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-15T04:33:32.000Z" - }, - "end": { - "$date": "2022-01-15T04:41:30.000Z" - }, - "events": [ - { - "uuid": "2db7dde9-6495-4b48-a07a-f3d413ea8163", - "start": { - "$date": "2022-01-15T04:33:32.000Z" - }, - "end": { - "$date": "2022-01-15T04:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "acb46965-94c8-406c-802b-dbb76280ff56", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-15T04:41:51.000Z" - }, - "end": { - "$date": "2022-01-15T06:14:17.000Z" - }, - "events": [ - { - "uuid": "30730897-0cd0-4b2a-baa8-b610033e29ad", - "start": { - "$date": "2022-01-15T04:41:51.000Z" - }, - "end": { - "$date": "2022-01-15T06:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "3794f231-cca9-4ce4-8fbd-5bd43fa8ace8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T05:29:40.000Z" - }, - "end": { - "$date": "2022-01-15T06:04:07.000Z" - }, - "events": [ - { - "uuid": "840770c9-c7fa-4a1d-b1b4-fc6fbb75f75e", - "start": { - "$date": "2022-01-15T05:29:40.000Z" - }, - "end": { - "$date": "2022-01-15T06:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "597a369c-070b-4861-9e30-ef600fb694b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-15T05:37:28.000Z" - }, - "end": { - "$date": "2022-01-15T06:46:04.000Z" - }, - "events": [ - { - "uuid": "01815f36-17f3-4819-9982-bfeee2f67764", - "start": { - "$date": "2022-01-15T05:37:28.000Z" - }, - "end": { - "$date": "2022-01-15T06:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "541e8dd5-2a14-482c-985a-c6b9d4a7c1ae", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T06:34:11.000Z" - }, - "end": { - "$date": "2022-01-15T06:36:10.000Z" - }, - "events": [ - { - "uuid": "3f6043b3-2261-430a-be3d-de98cb0b3a5d", - "start": { - "$date": "2022-01-15T06:34:11.000Z" - }, - "end": { - "$date": "2022-01-15T06:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e6329fe-87db-41ce-8c4f-e8e587f516bd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-15T06:13:27.000Z" - }, - "end": { - "$date": "2022-01-15T06:38:35.000Z" - }, - "events": [ - { - "uuid": "d0c6f3c6-535f-4b49-b186-03369beb47ef", - "start": { - "$date": "2022-01-15T06:13:27.000Z" - }, - "end": { - "$date": "2022-01-15T06:38:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7386732-ad1a-4d10-b622-6edece361625", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T08:47:33.000Z" - }, - "end": { - "$date": "2022-01-15T09:03:23.000Z" - }, - "events": [ - { - "uuid": "98793029-74b9-4291-ada1-497178a4d245", - "start": { - "$date": "2022-01-15T08:47:33.000Z" - }, - "end": { - "$date": "2022-01-15T09:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28925c64-1592-4ace-8c4a-4fd5dff2a30e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-15T06:46:52.000Z" - }, - "end": { - "$date": "2022-01-15T07:24:53.000Z" - }, - "events": [ - { - "uuid": "48b618af-59b1-40e3-a6e4-6c3210c582f2", - "start": { - "$date": "2022-01-15T06:46:52.000Z" - }, - "end": { - "$date": "2022-01-15T07:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", - "uuid": "13275c3e-9720-4a53-b2fe-5683ee0e8214", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T07:07:14.000Z" - }, - "end": { - "$date": "2022-01-15T08:02:55.000Z" - }, - "events": [ - { - "uuid": "4046206b-1405-42a5-a9f6-7f9be1caf8d9", - "start": { - "$date": "2022-01-15T07:07:14.000Z" - }, - "end": { - "$date": "2022-01-15T08:02:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e598cbe-af77-4eb3-9d61-a241582aa5b3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-15T08:47:30.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:31.000Z" - }, - "events": [ - { - "uuid": "eb87b693-b04a-4920-8d75-9f94fbbc8abb", - "start": { - "$date": "2022-01-15T08:47:30.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0768124e-7f4f-4b1b-85b9-101076dafb06", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T07:51:24.000Z" - }, - "end": { - "$date": "2022-01-15T07:53:43.000Z" - }, - "events": [ - { - "uuid": "15e56582-825e-4159-95a9-0a1fc89fb8ad", - "start": { - "$date": "2022-01-15T07:51:24.000Z" - }, - "end": { - "$date": "2022-01-15T07:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17dd8d19-8235-467b-8b1e-ebee9d9735ab", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T08:06:55.000Z" - }, - "end": { - "$date": "2022-01-15T08:23:31.000Z" - }, - "events": [ - { - "uuid": "f6a1dc49-ff8e-449f-8c34-192d6500bf99", - "start": { - "$date": "2022-01-15T08:06:55.000Z" - }, - "end": { - "$date": "2022-01-15T08:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "203fd4e3-cc1c-45b2-bfa1-24e7b6577133", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T08:07:01.000Z" - }, - "end": { - "$date": "2022-01-15T08:23:30.000Z" - }, - "events": [ - { - "uuid": "6d4c4cce-810e-4035-af6a-43972e40996c", - "start": { - "$date": "2022-01-15T08:07:01.000Z" - }, - "end": { - "$date": "2022-01-15T08:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdd402b8-69b4-4d71-9982-dc5c0a7681c1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-15T08:07:03.000Z" - }, - "end": { - "$date": "2022-01-15T08:23:28.000Z" - }, - "events": [ - { - "uuid": "1e2f5d46-92aa-4b4d-95d4-1002a81ecdec", - "start": { - "$date": "2022-01-15T08:07:03.000Z" - }, - "end": { - "$date": "2022-01-15T08:23:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22d7fa5f-1b1d-4852-b952-20c1cf8d8e06", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T08:26:17.000Z" - }, - "end": { - "$date": "2022-01-15T08:44:56.000Z" - }, - "events": [ - { - "uuid": "95f6bcdc-29b2-498a-8ac4-460ad7b723be", - "start": { - "$date": "2022-01-15T08:26:17.000Z" - }, - "end": { - "$date": "2022-01-15T08:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6614e3ea-34cc-48df-8742-090d83d89f00", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T08:26:16.000Z" - }, - "end": { - "$date": "2022-01-15T08:45:01.000Z" - }, - "events": [ - { - "uuid": "c3c866a6-8ed0-41bc-a588-689f38c49a4f", - "start": { - "$date": "2022-01-15T08:26:16.000Z" - }, - "end": { - "$date": "2022-01-15T08:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45c939be-ae6d-4a86-8ee6-2de689b7939d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-15T08:26:14.000Z" - }, - "end": { - "$date": "2022-01-15T08:45:04.000Z" - }, - "events": [ - { - "uuid": "c851f705-fa01-4d19-9dd4-579a36aea01e", - "start": { - "$date": "2022-01-15T08:26:14.000Z" - }, - "end": { - "$date": "2022-01-15T08:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "820c53f6-c62e-4b85-8640-fbae43bbe8cd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T08:47:26.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:22.000Z" - }, - "events": [ - { - "uuid": "b8d8e407-3a7b-4fde-8d9a-cf9edaead3f5", - "start": { - "$date": "2022-01-15T08:47:26.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd19300c-0ec6-453c-a2e2-8170b64de344", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-15T08:47:24.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:25.000Z" - }, - "events": [ - { - "uuid": "c771cdb3-7934-4d49-89a1-003fdf1455df", - "start": { - "$date": "2022-01-15T08:47:24.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61fc8e98-5eac-4c4f-b340-52b45605e556", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T08:47:28.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:18.000Z" - }, - "events": [ - { - "uuid": "f89177d7-ada2-4f68-a184-a871a364eba6", - "start": { - "$date": "2022-01-15T08:47:28.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b290025f-0129-4537-862f-7aaf20a8062b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T09:03:38.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:19.000Z" - }, - "events": [ - { - "uuid": "eaf08cbd-9a61-4dc5-b03a-adabf67b05dc", - "start": { - "$date": "2022-01-15T09:03:38.000Z" - }, - "end": { - "$date": "2022-01-15T09:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30459c32-9e4d-4999-ae57-2a9d54377d8f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T09:19:15.000Z" - }, - "end": { - "$date": "2022-01-15T09:33:38.000Z" - }, - "events": [ - { - "uuid": "74ddfd6d-69be-4005-b1b9-1c770d19e561", - "start": { - "$date": "2022-01-15T09:19:15.000Z" - }, - "end": { - "$date": "2022-01-15T09:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a27c975a-9a9d-4929-b253-c8b28b1549b9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T09:19:17.000Z" - }, - "end": { - "$date": "2022-01-15T09:33:37.000Z" - }, - "events": [ - { - "uuid": "1bd42252-fb90-4b5b-ab4b-a2a8e5bb843f", - "start": { - "$date": "2022-01-15T09:19:17.000Z" - }, - "end": { - "$date": "2022-01-15T09:33:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "857a5e27-d5fd-4013-80c2-0f98d321e298", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T09:19:19.000Z" - }, - "end": { - "$date": "2022-01-15T09:33:25.000Z" - }, - "events": [ - { - "uuid": "fd3a1aac-3ae6-4cd3-b864-58abb0e763d4", - "start": { - "$date": "2022-01-15T09:19:19.000Z" - }, - "end": { - "$date": "2022-01-15T09:33:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b42216c1-e060-42d9-b25e-f60f9de0e0de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T09:33:29.000Z" - }, - "end": { - "$date": "2022-01-15T09:34:30.000Z" - }, - "events": [ - { - "uuid": "25e144a6-989a-41d0-8aa6-0923620037fc", - "start": { - "$date": "2022-01-15T09:33:29.000Z" - }, - "end": { - "$date": "2022-01-15T09:34:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27eca52b-eaff-4d24-b469-af3a2f5ef0a5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T09:36:30.000Z" - }, - "end": { - "$date": "2022-01-15T10:00:27.000Z" - }, - "events": [ - { - "uuid": "fa1f947e-a625-46c7-8535-3e35091f237a", - "start": { - "$date": "2022-01-15T09:36:30.000Z" - }, - "end": { - "$date": "2022-01-15T10:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fe81c4d-fcb0-4d72-b47c-6c01d978faa7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T09:36:31.000Z" - }, - "end": { - "$date": "2022-01-15T10:00:15.000Z" - }, - "events": [ - { - "uuid": "dbb2d560-5f4d-465a-a9ab-17506878be74", - "start": { - "$date": "2022-01-15T09:36:31.000Z" - }, - "end": { - "$date": "2022-01-15T10:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "168bf682-3771-4d82-8f9f-f582800f344a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T09:36:27.000Z" - }, - "end": { - "$date": "2022-01-15T10:00:18.000Z" - }, - "events": [ - { - "uuid": "7ddc71ef-eda1-4497-9bd2-12b00d06a8df", - "start": { - "$date": "2022-01-15T09:36:27.000Z" - }, - "end": { - "$date": "2022-01-15T10:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "914c50e7-eabd-49f8-823a-dd4acb7a537d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T10:18:04.000Z" - }, - "end": { - "$date": "2022-01-15T10:25:13.000Z" - }, - "events": [ - { - "uuid": "93de11f4-056b-4ce9-bc50-e2d0953bebce", - "start": { - "$date": "2022-01-15T10:18:04.000Z" - }, - "end": { - "$date": "2022-01-15T10:25:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44ce218e-5f5d-490c-9508-28e42b647931", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T10:02:37.000Z" - }, - "end": { - "$date": "2022-01-15T10:25:06.000Z" - }, - "events": [ - { - "uuid": "12f6b4ae-1139-4340-8b8e-674fada5a355", - "start": { - "$date": "2022-01-15T10:02:37.000Z" - }, - "end": { - "$date": "2022-01-15T10:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1913cb48-8afd-4013-b26c-7962170618b5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T10:02:33.000Z" - }, - "end": { - "$date": "2022-01-15T10:25:20.000Z" - }, - "events": [ - { - "uuid": "54b2ed38-9108-4825-a742-bd55d2222c7b", - "start": { - "$date": "2022-01-15T10:02:33.000Z" - }, - "end": { - "$date": "2022-01-15T10:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06be5afb-2ccb-4654-9450-5a2fdb6b1ebe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T10:32:49.000Z" - }, - "end": { - "$date": "2022-01-15T10:34:51.000Z" - }, - "events": [ - { - "uuid": "8368e015-d4c4-4dcb-8dfb-8316a28be915", - "start": { - "$date": "2022-01-15T10:32:49.000Z" - }, - "end": { - "$date": "2022-01-15T10:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", - "uuid": "faeff824-32af-40f8-b07c-79aaaf722709", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-15T10:45:41.000Z" - }, - "end": { - "$date": "2022-01-15T11:08:59.000Z" - }, - "events": [ - { - "uuid": "c074a86d-be2d-4480-9546-f5f984df03e2", - "start": { - "$date": "2022-01-15T10:45:41.000Z" - }, - "end": { - "$date": "2022-01-15T11:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "9c53ba78-3873-4349-9094-75b9e2a56fdb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T15:38:33.000Z" - }, - "end": { - "$date": "2022-01-15T17:42:20.000Z" - }, - "events": [ - { - "uuid": "c2aa96b6-511a-40ec-8364-132a705c5142", - "start": { - "$date": "2022-01-15T15:38:33.000Z" - }, - "end": { - "$date": "2022-01-15T16:07:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "842c8c6e-206a-4795-8a1f-c1317518c537", - "start": { - "$date": "2022-01-15T16:07:33.000Z" - }, - "end": { - "$date": "2022-01-15T16:10:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "91136149-b857-4a85-a001-faaa88a426cd", - "start": { - "$date": "2022-01-15T16:10:33.000Z" - }, - "end": { - "$date": "2022-01-15T16:20:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffc8c291-7670-4f7a-8f1c-2a8ba1d77d92", - "start": { - "$date": "2022-01-15T16:20:33.000Z" - }, - "end": { - "$date": "2022-01-15T16:50:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b8f97729-1f72-41c1-8739-357a0da7fc2b", - "start": { - "$date": "2022-01-15T16:50:33.000Z" - }, - "end": { - "$date": "2022-01-15T17:36:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5329fe07-1103-459e-8691-b15c9f42bcc6", - "start": { - "$date": "2022-01-15T17:36:33.000Z" - }, - "end": { - "$date": "2022-01-15T17:37:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "372b60c3-d0ff-4034-9f4e-5b9a780f55a2", - "start": { - "$date": "2022-01-15T17:37:33.000Z" - }, - "end": { - "$date": "2022-01-15T17:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "4d064c4f-9583-4c8e-b64c-947e9f9df3cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T15:43:17.000Z" - }, - "end": { - "$date": "2022-01-15T16:51:25.000Z" - }, - "events": [ - { - "uuid": "b7a468d4-32a9-41c8-a5f7-67c62dae2404", - "start": { - "$date": "2022-01-15T15:43:17.000Z" - }, - "end": { - "$date": "2022-01-15T16:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ce928589-0145-48a6-9a4a-187a00096778", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T16:52:10.000Z" - }, - "end": { - "$date": "2022-01-15T17:53:00.000Z" - }, - "events": [ - { - "uuid": "a7b7d919-4422-4c81-83ca-3fcf898b3d83", - "start": { - "$date": "2022-01-15T16:52:10.000Z" - }, - "end": { - "$date": "2022-01-15T17:13:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1d2254e-18f6-43b0-9230-5580d920d8b0", - "start": { - "$date": "2022-01-15T17:13:10.000Z" - }, - "end": { - "$date": "2022-01-15T17:18:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7b6f179a-4053-467f-a8fd-89a0faaed124", - "start": { - "$date": "2022-01-15T17:18:10.000Z" - }, - "end": { - "$date": "2022-01-15T17:53:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4f203064-46a6-427c-aecd-4222ddf07438", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-15T17:24:14.000Z" - }, - "end": { - "$date": "2022-01-15T22:42:06.000Z" - }, - "events": [ - { - "uuid": "1e1af82e-9850-4e5f-a284-175d6fd72057", - "start": { - "$date": "2022-01-15T17:24:14.000Z" - }, - "end": { - "$date": "2022-01-15T19:49:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fecf4a1f-b5df-4556-ae8a-cffe34917d6d", - "start": { - "$date": "2022-01-15T19:49:14.000Z" - }, - "end": { - "$date": "2022-01-15T19:54:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b35285f1-538e-4c2a-99bc-a356af0f231c", - "start": { - "$date": "2022-01-15T19:54:14.000Z" - }, - "end": { - "$date": "2022-01-15T20:04:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f8016d0-3522-4bab-ae26-bfb520e2f85f", - "start": { - "$date": "2022-01-15T20:04:14.000Z" - }, - "end": { - "$date": "2022-01-15T20:42:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db6200f8-658f-40c3-a37d-1ff60d0e5e1c", - "start": { - "$date": "2022-01-15T20:42:14.000Z" - }, - "end": { - "$date": "2022-01-15T21:03:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3eb754a8-6993-4a61-b45c-bb22b77849c2", - "start": { - "$date": "2022-01-15T21:03:14.000Z" - }, - "end": { - "$date": "2022-01-15T21:08:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cfc7fa75-0d11-468b-b463-e0861550efbb", - "start": { - "$date": "2022-01-15T21:08:14.000Z" - }, - "end": { - "$date": "2022-01-15T21:21:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69e7092e-0640-4a36-b6bc-d75206a414e5", - "start": { - "$date": "2022-01-15T21:21:14.000Z" - }, - "end": { - "$date": "2022-01-15T21:26:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c8a8be2-ac54-4de4-9213-869978fb0bb6", - "start": { - "$date": "2022-01-15T21:26:14.000Z" - }, - "end": { - "$date": "2022-01-15T22:22:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e3db852-6e1c-40ed-84a0-35a508b0a5c2", - "start": { - "$date": "2022-01-15T22:22:14.000Z" - }, - "end": { - "$date": "2022-01-15T22:25:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "72c671b1-0cc2-4670-873b-832cb8abf669", - "start": { - "$date": "2022-01-15T22:25:14.000Z" - }, - "end": { - "$date": "2022-01-15T22:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05674bc0-a634-4947-ada6-745ba1f7db19", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T17:54:45.000Z" - }, - "end": { - "$date": "2022-01-15T18:32:23.000Z" - }, - "events": [ - { - "uuid": "d31363b2-af9a-4b59-bbc3-c14792d54635", - "start": { - "$date": "2022-01-15T17:54:45.000Z" - }, - "end": { - "$date": "2022-01-15T18:32:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "6380c016-68a3-4f15-907a-f90089ce24c3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T17:53:29.000Z" - }, - "end": { - "$date": "2022-01-15T19:25:25.000Z" - }, - "events": [ - { - "uuid": "00a93841-f02a-4850-a901-8debb0797908", - "start": { - "$date": "2022-01-15T17:53:29.000Z" - }, - "end": { - "$date": "2022-01-15T19:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "709a9be1-85b6-49ca-83f0-af4222a2ecbf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T18:34:51.000Z" - }, - "end": { - "$date": "2022-01-15T19:09:22.000Z" - }, - "events": [ - { - "uuid": "b95019aa-6533-4804-a8ff-08e813748fbd", - "start": { - "$date": "2022-01-15T18:34:51.000Z" - }, - "end": { - "$date": "2022-01-15T19:09:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5c4a2ca-1af1-4ea1-840a-74d6cfde21df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T18:39:14.000Z" - }, - "end": { - "$date": "2022-01-15T19:11:39.000Z" - }, - "events": [ - { - "uuid": "b4aa10e3-7790-458b-a568-41cc6ea23275", - "start": { - "$date": "2022-01-15T18:39:14.000Z" - }, - "end": { - "$date": "2022-01-15T19:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "043451a6-a49b-4996-a6cd-dcce9e1cecaa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T19:30:43.000Z" - }, - "end": { - "$date": "2022-01-15T19:40:04.000Z" - }, - "events": [ - { - "uuid": "028f0560-e2b6-4b60-be5c-777351862384", - "start": { - "$date": "2022-01-15T19:30:43.000Z" - }, - "end": { - "$date": "2022-01-15T19:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b998973-4403-4791-a889-5716808409b7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T20:43:57.000Z" - }, - "end": { - "$date": "2022-01-15T20:47:19.000Z" - }, - "events": [ - { - "uuid": "aab8206c-654e-4e55-aa28-40bc4e6f245d", - "start": { - "$date": "2022-01-15T20:43:57.000Z" - }, - "end": { - "$date": "2022-01-15T20:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "f1cff000-5373-45b1-9f8d-ad1f3bcf5774", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-15T19:23:30.000Z" - }, - "end": { - "$date": "2022-01-15T19:51:32.000Z" - }, - "events": [ - { - "uuid": "e4b403aa-468d-4c82-ace6-aaecca41e91a", - "start": { - "$date": "2022-01-15T19:23:30.000Z" - }, - "end": { - "$date": "2022-01-15T19:51:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "16fee66a-9f7c-4d2e-8bb6-aedaa0419f3b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T19:25:35.000Z" - }, - "end": { - "$date": "2022-01-15T19:36:37.000Z" - }, - "events": [ - { - "uuid": "9c31a33e-20e1-4cda-b3c4-47046a180c94", - "start": { - "$date": "2022-01-15T19:25:35.000Z" - }, - "end": { - "$date": "2022-01-15T19:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "bfb22c1a-60a3-4ac1-94ad-7956f7e32e9a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T19:36:47.000Z" - }, - "end": { - "$date": "2022-01-15T20:42:11.000Z" - }, - "events": [ - { - "uuid": "bfac332d-a652-4be4-a448-d4037c37c88d", - "start": { - "$date": "2022-01-15T19:36:47.000Z" - }, - "end": { - "$date": "2022-01-15T20:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "bc64c4ea-6f1a-432b-b5fc-3ffc1e7e7329", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T19:37:30.000Z" - }, - "end": { - "$date": "2022-01-15T19:40:10.000Z" - }, - "events": [ - { - "uuid": "08a05736-c4ea-409a-a147-313b5860ce0e", - "start": { - "$date": "2022-01-15T19:37:30.000Z" - }, - "end": { - "$date": "2022-01-15T19:40:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2ae52c0-db2d-4329-9021-d0ccc4fa45e9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T20:02:29.000Z" - }, - "end": { - "$date": "2022-01-15T20:02:44.000Z" - }, - "events": [ - { - "uuid": "ee808f01-ac32-4c5d-9267-05e6a48f6e30", - "start": { - "$date": "2022-01-15T20:02:29.000Z" - }, - "end": { - "$date": "2022-01-15T20:02:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26250a7d-7ef1-4d72-8fe8-5a4ee3844aa8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T19:43:40.000Z" - }, - "end": { - "$date": "2022-01-15T20:02:25.000Z" - }, - "events": [ - { - "uuid": "3cfbfab5-17ef-43b2-b84d-ed36fb1cb3db", - "start": { - "$date": "2022-01-15T19:43:40.000Z" - }, - "end": { - "$date": "2022-01-15T20:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "7122cdfc-8b4b-438f-b987-7b64558e3d6f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T20:43:55.000Z" - }, - "end": { - "$date": "2022-01-15T20:44:30.000Z" - }, - "events": [ - { - "uuid": "c48dbdb8-3f14-4ca8-bef3-6468a003fcac", - "start": { - "$date": "2022-01-15T20:43:55.000Z" - }, - "end": { - "$date": "2022-01-15T20:44:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "063ce162-684c-4e07-8f30-a96e3a0e8ee1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T20:08:20.000Z" - }, - "end": { - "$date": "2022-01-15T20:43:51.000Z" - }, - "events": [ - { - "uuid": "6634f8e5-d96a-4b60-999d-a6a7ded7b64c", - "start": { - "$date": "2022-01-15T20:08:20.000Z" - }, - "end": { - "$date": "2022-01-15T20:43:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "210ae647-d730-41e8-a06d-bf52ef646626", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T20:44:16.000Z" - }, - "end": { - "$date": "2022-01-15T21:12:24.000Z" - }, - "events": [ - { - "uuid": "fe913f3f-c4ce-43d2-8ec5-90807b70297a", - "start": { - "$date": "2022-01-15T20:44:16.000Z" - }, - "end": { - "$date": "2022-01-15T20:55:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55744d76-b41e-4a9c-b260-19e9e0bbd9a3", - "start": { - "$date": "2022-01-15T20:55:16.000Z" - }, - "end": { - "$date": "2022-01-15T20:59:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f60ce3b4-7346-4508-b8c9-4ff3168e0933", - "start": { - "$date": "2022-01-15T20:59:16.000Z" - }, - "end": { - "$date": "2022-01-15T21:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a33c68ce-2b88-429d-8560-2c5a770ff3f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T20:45:21.000Z" - }, - "end": { - "$date": "2022-01-15T20:58:22.000Z" - }, - "events": [ - { - "uuid": "dc01622d-4cda-464e-8c3f-1bf51b30c333", - "start": { - "$date": "2022-01-15T20:45:21.000Z" - }, - "end": { - "$date": "2022-01-15T20:58:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "d30a71dd-fa14-40cc-9ea5-6627aa69dd22", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T20:45:35.000Z" - }, - "end": { - "$date": "2022-01-15T21:06:28.000Z" - }, - "events": [ - { - "uuid": "b4e7eadb-5366-44e6-bc01-2ca92fccc7a4", - "start": { - "$date": "2022-01-15T20:45:35.000Z" - }, - "end": { - "$date": "2022-01-15T21:06:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "2383839b-b048-425f-acfb-c41c1da72605", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T21:12:58.000Z" - }, - "end": { - "$date": "2022-01-15T22:18:14.000Z" - }, - "events": [ - { - "uuid": "23746d67-3604-4207-8bc4-eca28c6d1463", - "start": { - "$date": "2022-01-15T21:12:58.000Z" - }, - "end": { - "$date": "2022-01-15T22:18:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "4fe2dbbb-909f-404e-aacb-20389e64177d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-15T21:13:21.000Z" - }, - "end": { - "$date": "2022-01-15T22:17:59.000Z" - }, - "events": [ - { - "uuid": "e0af92e2-05ed-45ef-b782-83e4d18a9db7", - "start": { - "$date": "2022-01-15T21:13:21.000Z" - }, - "end": { - "$date": "2022-01-15T22:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ca644e32-2d3d-49cc-945a-df2b6fd8cbd5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-15T22:03:58.000Z" - }, - "end": { - "$date": "2022-01-16T01:55:31.000Z" - }, - "events": [ - { - "uuid": "079ba17d-b195-420b-b0da-4e8e20263d23", - "start": { - "$date": "2022-01-15T22:03:58.000Z" - }, - "end": { - "$date": "2022-01-16T01:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "dcd813ea-82be-4bd1-a4fa-b124fbcb0139", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T22:22:59.000Z" - }, - "end": { - "$date": "2022-01-15T23:06:01.000Z" - }, - "events": [ - { - "uuid": "80e3a11a-dcb2-4a4f-8311-782c0872c6bf", - "start": { - "$date": "2022-01-15T22:22:59.000Z" - }, - "end": { - "$date": "2022-01-15T23:06:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dd4ce496-611d-4360-9285-35eeb2c52d08", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-16T03:29:04.000Z" - }, - "end": { - "$date": "2022-01-16T06:42:00.000Z" - }, - "events": [ - { - "uuid": "e814aecd-480a-475d-83de-89eb2971b22b", - "start": { - "$date": "2022-01-16T03:29:04.000Z" - }, - "end": { - "$date": "2022-01-16T06:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0224d13e-be94-49ff-a71a-3385dcb150fc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T22:35:56.000Z" - }, - "end": { - "$date": "2022-01-15T23:09:57.000Z" - }, - "events": [ - { - "uuid": "a111bd4c-672f-4cf5-91d1-a843b726f8e5", - "start": { - "$date": "2022-01-15T22:35:56.000Z" - }, - "end": { - "$date": "2022-01-15T23:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "39aff350-fc43-4cba-a7ad-3625130a8f71", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-15T22:59:48.000Z" - }, - "end": { - "$date": "2022-01-15T23:17:19.000Z" - }, - "events": [ - { - "uuid": "102b0d4e-a40a-434f-a7e9-dd420582b514", - "start": { - "$date": "2022-01-15T22:59:48.000Z" - }, - "end": { - "$date": "2022-01-15T23:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1dfae7d7-cc0e-4176-8d41-2aabcd87de14", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-15T23:06:26.000Z" - }, - "end": { - "$date": "2022-01-16T00:30:21.000Z" - }, - "events": [ - { - "uuid": "1d8a06b1-f79d-4c80-86d8-bebbc8ecb4e8", - "start": { - "$date": "2022-01-15T23:06:26.000Z" - }, - "end": { - "$date": "2022-01-16T00:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ec4365af-40d0-4217-aff5-e09e89380a9f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-15T23:09:57.000Z" - }, - "end": { - "$date": "2022-01-16T00:30:49.000Z" - }, - "events": [ - { - "uuid": "9655777a-ca62-4825-8f03-ade95b85724f", - "start": { - "$date": "2022-01-15T23:09:57.000Z" - }, - "end": { - "$date": "2022-01-16T00:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9615fab2-cdc2-43bc-9151-874b5ea0705f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T23:14:47.000Z" - }, - "end": { - "$date": "2022-01-15T23:40:02.000Z" - }, - "events": [ - { - "uuid": "290778b2-f7bd-4435-9dcc-a1e2ebb35c8b", - "start": { - "$date": "2022-01-15T23:14:47.000Z" - }, - "end": { - "$date": "2022-01-15T23:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "627f2c5e-8590-4b03-9bf7-ef1b0df5fe06", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-15T23:45:58.000Z" - }, - "end": { - "$date": "2022-01-16T00:16:08.000Z" - }, - "events": [ - { - "uuid": "421d34b7-0f11-4b77-b5cd-4fd7eafc6a9c", - "start": { - "$date": "2022-01-15T23:45:58.000Z" - }, - "end": { - "$date": "2022-01-16T00:16:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4a09bdc3-b00d-4125-b158-3826e04cdeaf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-15T23:59:55.000Z" - }, - "end": { - "$date": "2022-01-16T00:04:00.000Z" - }, - "events": [ - { - "uuid": "4b654be1-abbe-4f1a-a68a-4b4752c89230", - "start": { - "$date": "2022-01-15T23:59:55.000Z" - }, - "end": { - "$date": "2022-01-16T00:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b0ebd3a4-253b-4df2-bd22-4f51ee3c6c9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-16T01:43:32.000Z" - }, - "end": { - "$date": "2022-01-16T01:49:33.000Z" - }, - "events": [ - { - "uuid": "ed2f5ec0-1b29-4b27-878e-88a8fa8094b9", - "start": { - "$date": "2022-01-16T01:43:32.000Z" - }, - "end": { - "$date": "2022-01-16T01:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4afd204e-0bce-4274-8e07-e77030706aa3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-16T00:20:20.000Z" - }, - "end": { - "$date": "2022-01-16T01:40:05.000Z" - }, - "events": [ - { - "uuid": "9ef85d2d-bb53-4206-ba9e-3e449cbe24d0", - "start": { - "$date": "2022-01-16T00:20:20.000Z" - }, - "end": { - "$date": "2022-01-16T01:40:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77a7a1c6-352d-4342-81fd-c4ad7485f1ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T00:25:27.000Z" - }, - "end": { - "$date": "2022-01-16T00:27:15.000Z" - }, - "events": [ - { - "uuid": "b95479ab-47ff-49b5-8ba5-e16e2a73f6b0", - "start": { - "$date": "2022-01-16T00:25:27.000Z" - }, - "end": { - "$date": "2022-01-16T00:27:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "f8fb9bc1-194d-4f76-9de4-4788bfc0975e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T00:45:24.000Z" - }, - "end": { - "$date": "2022-01-16T01:36:18.000Z" - }, - "events": [ - { - "uuid": "379744c4-8aad-4b0a-b3e4-f4ae6fb8e9ee", - "start": { - "$date": "2022-01-16T00:45:24.000Z" - }, - "end": { - "$date": "2022-01-16T01:36:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a431de70-56b4-4b16-aa6c-6b1a5fb9b01e", - "uuid": "b6971879-1a1e-4493-8ce0-8d618b1cfae5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T00:56:02.000Z" - }, - "end": { - "$date": "2022-01-16T02:37:27.000Z" - }, - "events": [ - { - "uuid": "0534acc2-163c-4f00-88a6-b34489095368", - "start": { - "$date": "2022-01-16T00:56:02.000Z" - }, - "end": { - "$date": "2022-01-16T02:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d5bd0857-a9e1-45a8-b580-211cfe761978", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-16T01:04:12.000Z" - }, - "end": { - "$date": "2022-01-16T03:09:54.000Z" - }, - "events": [ - { - "uuid": "ea334680-1581-4826-8926-80fab1b59a97", - "start": { - "$date": "2022-01-16T01:04:12.000Z" - }, - "end": { - "$date": "2022-01-16T03:09:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "4c59858d-1353-4620-b735-bff713627884", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-16T01:56:06.000Z" - }, - "end": { - "$date": "2022-01-16T02:21:02.000Z" - }, - "events": [ - { - "uuid": "5a4dfc1f-20f2-4bc1-b908-ea92b31e3aab", - "start": { - "$date": "2022-01-16T01:56:06.000Z" - }, - "end": { - "$date": "2022-01-16T02:21:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", - "uuid": "36de0ee6-6955-4359-9017-7dc66872db3e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-16T02:09:34.000Z" - }, - "end": { - "$date": "2022-01-16T02:30:21.000Z" - }, - "events": [ - { - "uuid": "a176979d-70f7-4165-906a-d27995bc5f45", - "start": { - "$date": "2022-01-16T02:09:34.000Z" - }, - "end": { - "$date": "2022-01-16T02:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a431de70-56b4-4b16-aa6c-6b1a5fb9b01e", - "uuid": "c9686fa2-3b8e-4210-a13c-0fdaae86db4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T02:44:42.000Z" - }, - "end": { - "$date": "2022-01-16T02:59:47.000Z" - }, - "events": [ - { - "uuid": "656a3d76-dd11-4610-9134-02264bd5d623", - "start": { - "$date": "2022-01-16T02:44:42.000Z" - }, - "end": { - "$date": "2022-01-16T02:59:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d499e438-71f2-456f-9673-b051edcee6af", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T02:59:28.000Z" - }, - "end": { - "$date": "2022-01-16T03:15:58.000Z" - }, - "events": [ - { - "uuid": "2c798d41-5bd1-4fa8-93c0-14ded06be471", - "start": { - "$date": "2022-01-16T02:59:28.000Z" - }, - "end": { - "$date": "2022-01-16T03:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", - "uuid": "668ca79c-a8aa-46f3-afa0-b0b0f8546b7f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-16T02:58:51.000Z" - }, - "end": { - "$date": "2022-01-16T03:23:47.000Z" - }, - "events": [ - { - "uuid": "bac70185-757e-435a-bc5a-382469834fc6", - "start": { - "$date": "2022-01-16T02:58:51.000Z" - }, - "end": { - "$date": "2022-01-16T03:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "682cd6de-2edb-455f-b35e-2a43276005c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-16T03:03:48.000Z" - }, - "end": { - "$date": "2022-01-16T04:06:03.000Z" - }, - "events": [ - { - "uuid": "0695a978-df19-4ac1-b9f7-ff1ddb12e1e1", - "start": { - "$date": "2022-01-16T03:03:48.000Z" - }, - "end": { - "$date": "2022-01-16T04:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "294914f6-4a0c-4534-a05d-9b395544eb81", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-16T03:10:15.000Z" - }, - "end": { - "$date": "2022-01-16T08:33:39.000Z" - }, - "events": [ - { - "uuid": "3a318738-be35-461f-b9a1-2293317b2144", - "start": { - "$date": "2022-01-16T03:10:15.000Z" - }, - "end": { - "$date": "2022-01-16T08:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3dec2a47-db6c-49d6-abc3-c12e52c44c13", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-16T03:16:24.000Z" - }, - "end": { - "$date": "2022-01-16T06:41:57.000Z" - }, - "events": [ - { - "uuid": "ca69a48f-f774-4503-ab50-0522092bfd5b", - "start": { - "$date": "2022-01-16T03:16:24.000Z" - }, - "end": { - "$date": "2022-01-16T06:41:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f543f20-67ec-4bcb-b088-aa8e9f3b7e37", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T03:19:20.000Z" - }, - "end": { - "$date": "2022-01-16T03:25:37.000Z" - }, - "events": [ - { - "uuid": "90a568f2-594e-456f-a4f9-0561cae2f2bb", - "start": { - "$date": "2022-01-16T03:19:20.000Z" - }, - "end": { - "$date": "2022-01-16T03:25:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "57929696-3021-451a-b5ff-9c8d89dc2298", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T03:26:10.000Z" - }, - "end": { - "$date": "2022-01-16T04:06:54.000Z" - }, - "events": [ - { - "uuid": "c04f3bab-afbe-4a34-86c9-68c2e05fc038", - "start": { - "$date": "2022-01-16T03:26:10.000Z" - }, - "end": { - "$date": "2022-01-16T04:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "3fd97a59-6d48-4dd7-991e-e5f9064f3088", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T03:31:29.000Z" - }, - "end": { - "$date": "2022-01-16T06:13:38.000Z" - }, - "events": [ - { - "uuid": "b393e934-0aa6-44a5-88a0-228897d0b97f", - "start": { - "$date": "2022-01-16T03:31:29.000Z" - }, - "end": { - "$date": "2022-01-16T06:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a998b799-0715-4256-b68e-2506441d635b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T03:49:13.000Z" - }, - "end": { - "$date": "2022-01-16T04:12:14.000Z" - }, - "events": [ - { - "uuid": "f1b187d1-6817-4a8e-b157-a2ef73419091", - "start": { - "$date": "2022-01-16T03:49:13.000Z" - }, - "end": { - "$date": "2022-01-16T04:12:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b1c40c54-a136-42b2-9128-db197db36da0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T03:55:55.000Z" - }, - "end": { - "$date": "2022-01-16T04:53:17.000Z" - }, - "events": [ - { - "uuid": "c26142ac-f45b-417a-a411-a6c7155412eb", - "start": { - "$date": "2022-01-16T03:55:55.000Z" - }, - "end": { - "$date": "2022-01-16T04:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a25d819e-d0a3-4503-b55c-5a3173f66d24", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T04:09:10.000Z" - }, - "end": { - "$date": "2022-01-16T04:45:14.000Z" - }, - "events": [ - { - "uuid": "f90c0d90-8395-4bc2-b2a4-4caeae1af5fc", - "start": { - "$date": "2022-01-16T04:09:10.000Z" - }, - "end": { - "$date": "2022-01-16T04:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1973e39-9ab7-4ad5-8e46-11211f34a177", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T04:22:36.000Z" - }, - "end": { - "$date": "2022-01-16T04:40:24.000Z" - }, - "events": [ - { - "uuid": "a86f7a45-7145-4adb-99e1-abfddd97cb26", - "start": { - "$date": "2022-01-16T04:22:36.000Z" - }, - "end": { - "$date": "2022-01-16T04:40:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "422350d9-4c9d-4323-a897-502412b0e3d6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T04:22:42.000Z" - }, - "end": { - "$date": "2022-01-16T04:40:23.000Z" - }, - "events": [ - { - "uuid": "e6a9838a-610b-4642-96c5-fd2c2237536f", - "start": { - "$date": "2022-01-16T04:22:42.000Z" - }, - "end": { - "$date": "2022-01-16T04:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03812625-e759-4c5e-92f3-af3fd787b1e0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T04:22:50.000Z" - }, - "end": { - "$date": "2022-01-16T04:40:31.000Z" - }, - "events": [ - { - "uuid": "7922e699-2664-49f1-8372-537247b29188", - "start": { - "$date": "2022-01-16T04:22:50.000Z" - }, - "end": { - "$date": "2022-01-16T04:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b3bfc0ab-cada-4380-8543-8cfe9438f971", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-16T04:34:01.000Z" - }, - "end": { - "$date": "2022-01-16T06:16:17.000Z" - }, - "events": [ - { - "uuid": "1da5f135-f9d8-4f42-a0d9-d4f0d1a7a606", - "start": { - "$date": "2022-01-16T04:34:01.000Z" - }, - "end": { - "$date": "2022-01-16T06:16:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae71fbb9-4e28-4869-a488-44df18ecf640", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T04:43:22.000Z" - }, - "end": { - "$date": "2022-01-16T04:59:17.000Z" - }, - "events": [ - { - "uuid": "17954f3a-6148-4219-ab08-9113f70a850f", - "start": { - "$date": "2022-01-16T04:43:22.000Z" - }, - "end": { - "$date": "2022-01-16T04:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93a82e6b-6e15-4e03-9978-08625f6c006c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T04:43:26.000Z" - }, - "end": { - "$date": "2022-01-16T04:59:27.000Z" - }, - "events": [ - { - "uuid": "b098332c-a9fe-49a5-9e1a-26b76d1eb7fe", - "start": { - "$date": "2022-01-16T04:43:26.000Z" - }, - "end": { - "$date": "2022-01-16T04:59:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9da77070-0674-47e8-b4ce-13f68522d498", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T04:43:13.000Z" - }, - "end": { - "$date": "2022-01-16T04:59:28.000Z" - }, - "events": [ - { - "uuid": "82334742-694d-412e-9217-9d0581152a9e", - "start": { - "$date": "2022-01-16T04:43:13.000Z" - }, - "end": { - "$date": "2022-01-16T04:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86877e17-156c-4a23-ae61-48ffb69da8b0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T04:47:49.000Z" - }, - "end": { - "$date": "2022-01-16T05:26:10.000Z" - }, - "events": [ - { - "uuid": "3ed893c2-dd6d-4be6-b508-bc6fa7858dd6", - "start": { - "$date": "2022-01-16T04:47:49.000Z" - }, - "end": { - "$date": "2022-01-16T05:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "543a7738-111b-4af9-a3ef-37b3f0f50f95", - "uuid": "836f3bed-8ee3-44e4-8bcd-da44cf15bafc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-16T04:55:32.000Z" - }, - "end": { - "$date": "2022-01-16T08:35:38.000Z" - }, - "events": [ - { - "uuid": "777bf010-9575-41b5-aacc-2c3ceb4c86ac", - "start": { - "$date": "2022-01-16T04:55:32.000Z" - }, - "end": { - "$date": "2022-01-16T08:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", - "uuid": "149f8843-6f26-4125-ad0d-f21923460b2a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-16T04:57:31.000Z" - }, - "end": { - "$date": "2022-01-16T05:20:33.000Z" - }, - "events": [ - { - "uuid": "e1bb0469-9cc3-481b-939b-8f69bc7a045a", - "start": { - "$date": "2022-01-16T04:57:31.000Z" - }, - "end": { - "$date": "2022-01-16T05:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f9dafc2-5e87-4074-a66a-5263dd4a0cb9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T04:59:46.000Z" - }, - "end": { - "$date": "2022-01-16T05:02:45.000Z" - }, - "events": [ - { - "uuid": "26e7d133-f641-48e0-9add-7eb30c79d770", - "start": { - "$date": "2022-01-16T04:59:46.000Z" - }, - "end": { - "$date": "2022-01-16T05:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34088319-57ac-4d83-b348-1811a62aa43b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T05:07:07.000Z" - }, - "end": { - "$date": "2022-01-16T05:45:08.000Z" - }, - "events": [ - { - "uuid": "351e8be5-12dd-4216-94bd-4fdce2cf8108", - "start": { - "$date": "2022-01-16T05:07:07.000Z" - }, - "end": { - "$date": "2022-01-16T05:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05c6a632-9e04-4d72-ae69-ac5cd2776c96", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T05:51:39.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:35.000Z" - }, - "events": [ - { - "uuid": "a9f0470a-062f-439c-937c-112297e1603a", - "start": { - "$date": "2022-01-16T05:51:39.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58075a67-fd4b-4426-b868-bc283cf87f41", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T05:07:08.000Z" - }, - "end": { - "$date": "2022-01-16T05:45:10.000Z" - }, - "events": [ - { - "uuid": "0d9460f3-6ad3-4b6c-a187-4dda910391a9", - "start": { - "$date": "2022-01-16T05:07:08.000Z" - }, - "end": { - "$date": "2022-01-16T05:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5dc7e353-ff0a-4130-90e1-d664e4e9747f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T05:06:59.000Z" - }, - "end": { - "$date": "2022-01-16T05:45:14.000Z" - }, - "events": [ - { - "uuid": "5ad3c738-bdcf-47ba-b66f-37760360e7e0", - "start": { - "$date": "2022-01-16T05:06:59.000Z" - }, - "end": { - "$date": "2022-01-16T05:45:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51438fa2-f8bb-40b7-af94-1a05c0c31e9b", - "uuid": "8eb06ed5-db57-45eb-899f-87cbff70fe72", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-16T05:21:29.000Z" - }, - "end": { - "$date": "2022-01-16T06:02:38.000Z" - }, - "events": [ - { - "uuid": "2bbbf6d4-f310-4bc4-bb52-c2603e19e15d", - "start": { - "$date": "2022-01-16T05:21:29.000Z" - }, - "end": { - "$date": "2022-01-16T06:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18f5b9aa-f6b8-4ba0-8a88-5519d42db610", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T05:51:44.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:44.000Z" - }, - "events": [ - { - "uuid": "14aef67f-0ed8-445e-adcb-ae6d6b0690d8", - "start": { - "$date": "2022-01-16T05:51:44.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c12d54d-f217-4f6c-905a-3c6c38cbcd1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T05:51:31.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:46.000Z" - }, - "events": [ - { - "uuid": "2a3c0c4f-9e96-40cb-b5b8-cfbda98e5b58", - "start": { - "$date": "2022-01-16T05:51:31.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f5812ad-199d-4269-b196-dcd936066dfc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T05:51:35.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:45.000Z" - }, - "events": [ - { - "uuid": "97d123a7-60c1-47fb-bee8-625ba621cff1", - "start": { - "$date": "2022-01-16T05:51:35.000Z" - }, - "end": { - "$date": "2022-01-16T06:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d14eed8-3cc3-4294-8c08-e279669b2378", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T06:13:09.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:40.000Z" - }, - "events": [ - { - "uuid": "c6501dc4-548c-4a13-b64b-e886a99bbfe5", - "start": { - "$date": "2022-01-16T06:13:09.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7597789c-f36e-42ba-9bae-cc7898f47071", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T06:12:55.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:36.000Z" - }, - "events": [ - { - "uuid": "5e2d4fa0-7876-4137-99ad-1aeb3ee51260", - "start": { - "$date": "2022-01-16T06:12:55.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf478f0a-94ba-4211-ae0e-c76829845846", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T06:12:56.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:32.000Z" - }, - "events": [ - { - "uuid": "7be40036-32d6-45c3-a01b-ca9cfa9684cc", - "start": { - "$date": "2022-01-16T06:12:56.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e88f8e0-af54-4cb7-a145-85f5796cf196", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T06:12:55.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:38.000Z" - }, - "events": [ - { - "uuid": "5a55183a-762a-4ca7-807a-6c594e673133", - "start": { - "$date": "2022-01-16T06:12:55.000Z" - }, - "end": { - "$date": "2022-01-16T06:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "633ef702-f3fa-4e1a-9fb4-af2a01a38ee4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T06:27:09.000Z" - }, - "end": { - "$date": "2022-01-16T07:54:42.000Z" - }, - "events": [ - { - "uuid": "ac6b8d35-d0af-4bf3-aa8e-f240627c8b0e", - "start": { - "$date": "2022-01-16T06:27:09.000Z" - }, - "end": { - "$date": "2022-01-16T07:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f20ca58f-b29f-4b96-84c2-9cf0c21b7c65", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T06:55:56.000Z" - }, - "end": { - "$date": "2022-01-16T07:29:02.000Z" - }, - "events": [ - { - "uuid": "98cfedf0-865b-4e7e-b6cf-f1aabbaee03c", - "start": { - "$date": "2022-01-16T06:55:56.000Z" - }, - "end": { - "$date": "2022-01-16T07:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "9f01ec74-92bc-4e60-a141-2694e0e17e18", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-16T06:47:02.000Z" - }, - "end": { - "$date": "2022-01-16T07:02:28.000Z" - }, - "events": [ - { - "uuid": "c4b501fc-8da7-4cb3-a86e-a3b397ac8698", - "start": { - "$date": "2022-01-16T06:47:02.000Z" - }, - "end": { - "$date": "2022-01-16T07:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "4520561f-1e00-4ccf-925d-573ef44d3eac", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-16T06:47:44.000Z" - }, - "end": { - "$date": "2022-01-16T07:10:01.000Z" - }, - "events": [ - { - "uuid": "37e2e6e8-f159-421a-8d58-a26bd041a9f9", - "start": { - "$date": "2022-01-16T06:47:44.000Z" - }, - "end": { - "$date": "2022-01-16T07:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7ae100c7-b9b6-4c10-a2ec-f868d4d905fc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-16T06:48:01.000Z" - }, - "end": { - "$date": "2022-01-16T07:24:11.000Z" - }, - "events": [ - { - "uuid": "e804d8f3-b58c-405d-9e0b-d206948e978f", - "start": { - "$date": "2022-01-16T06:48:01.000Z" - }, - "end": { - "$date": "2022-01-16T07:24:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd3683e5-f715-44cb-9a49-4caa8098a576", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T06:55:52.000Z" - }, - "end": { - "$date": "2022-01-16T07:28:52.000Z" - }, - "events": [ - { - "uuid": "3511d702-6203-4266-883e-a19d9c6cc15c", - "start": { - "$date": "2022-01-16T06:55:52.000Z" - }, - "end": { - "$date": "2022-01-16T07:28:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fe9d087-2542-49e4-a1ec-43d3e8e9d929", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T06:55:58.000Z" - }, - "end": { - "$date": "2022-01-16T07:28:53.000Z" - }, - "events": [ - { - "uuid": "876d4185-fabf-4cb4-9b41-11358d68453e", - "start": { - "$date": "2022-01-16T06:55:58.000Z" - }, - "end": { - "$date": "2022-01-16T07:28:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c361bbff-8919-4dee-a497-026726dae2db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T06:55:56.000Z" - }, - "end": { - "$date": "2022-01-16T07:28:56.000Z" - }, - "events": [ - { - "uuid": "fd0bba22-f537-4120-ad66-d941f182644d", - "start": { - "$date": "2022-01-16T06:55:56.000Z" - }, - "end": { - "$date": "2022-01-16T07:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "5a2e7113-02f1-4291-a9a0-1539a2071336", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T07:15:18.000Z" - }, - "end": { - "$date": "2022-01-16T08:40:35.000Z" - }, - "events": [ - { - "uuid": "0a98ab45-a858-46b4-b96f-a5de642c23a7", - "start": { - "$date": "2022-01-16T07:15:18.000Z" - }, - "end": { - "$date": "2022-01-16T08:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "ad08094f-74ca-44f3-a88d-5ce05fcf4f04", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-16T07:24:26.000Z" - }, - "end": { - "$date": "2022-01-16T08:51:18.000Z" - }, - "events": [ - { - "uuid": "63127c8c-80bc-4cc0-abda-787507820551", - "start": { - "$date": "2022-01-16T07:24:26.000Z" - }, - "end": { - "$date": "2022-01-16T08:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf400bb2-8f75-4e16-a163-0261830d358a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-16T07:33:58.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:19.000Z" - }, - "events": [ - { - "uuid": "28465d7e-b014-4422-b22d-32c2f4826640", - "start": { - "$date": "2022-01-16T07:33:58.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "94603ac8-79a2-42ce-927c-53824761117e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-16T07:33:57.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:22.000Z" - }, - "events": [ - { - "uuid": "1afc9187-72ba-45a6-a34a-b4ca74f6b025", - "start": { - "$date": "2022-01-16T07:33:57.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aec57033-be44-45b7-aecd-6f501958b3b0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-16T07:33:58.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:18.000Z" - }, - "events": [ - { - "uuid": "65079cb0-d018-4336-b6c1-923ff764f4dc", - "start": { - "$date": "2022-01-16T07:33:58.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ef6e3b2-52f7-4ec7-afb7-bae5c0f0a0c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T07:33:54.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:20.000Z" - }, - "events": [ - { - "uuid": "5999d5f2-e0bc-46ce-9a9e-c6b5c193ae2a", - "start": { - "$date": "2022-01-16T07:33:54.000Z" - }, - "end": { - "$date": "2022-01-16T08:11:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "e313e3a2-8efb-4705-a8c3-7559344454df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T07:54:47.000Z" - }, - "end": { - "$date": "2022-01-16T08:32:50.000Z" - }, - "events": [ - { - "uuid": "ca12f039-c916-4d2a-b466-fb170b10e4f3", - "start": { - "$date": "2022-01-16T07:54:47.000Z" - }, - "end": { - "$date": "2022-01-16T08:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "696db9b6-3077-44f3-8577-8bdb1cffc4fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T08:12:18.000Z" - }, - "end": { - "$date": "2022-01-16T08:13:57.000Z" - }, - "events": [ - { - "uuid": "74136c27-cf06-42d4-a1a7-9822c846fd9f", - "start": { - "$date": "2022-01-16T08:12:18.000Z" - }, - "end": { - "$date": "2022-01-16T08:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b7da4350-c8bd-4f79-a2f6-c4106819c90a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T16:36:38.000Z" - }, - "end": { - "$date": "2022-01-16T17:21:36.000Z" - }, - "events": [ - { - "uuid": "2ae72b0c-9461-47e9-8cfa-541690dfab81", - "start": { - "$date": "2022-01-16T16:36:38.000Z" - }, - "end": { - "$date": "2022-01-16T17:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "70e9134b-5124-4ba9-9ca9-089ed4296094", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-16T17:07:30.000Z" - }, - "end": { - "$date": "2022-01-16T19:52:26.000Z" - }, - "events": [ - { - "uuid": "be92b46d-5533-457a-96c8-4fd74a0ae0ea", - "start": { - "$date": "2022-01-16T17:07:30.000Z" - }, - "end": { - "$date": "2022-01-16T18:01:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e859df0-4024-48cc-9bc4-9d799b2abc8c", - "start": { - "$date": "2022-01-16T18:01:30.000Z" - }, - "end": { - "$date": "2022-01-16T18:02:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6ae78730-3268-4e66-829e-cd1a8ee60483", - "start": { - "$date": "2022-01-16T18:02:30.000Z" - }, - "end": { - "$date": "2022-01-16T19:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "54316e89-cba6-4ee8-9d2d-d765500d548e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T17:11:02.000Z" - }, - "end": { - "$date": "2022-01-16T18:41:31.000Z" - }, - "events": [ - { - "uuid": "51fe10e5-894c-4af6-8116-b983a09b38db", - "start": { - "$date": "2022-01-16T17:11:02.000Z" - }, - "end": { - "$date": "2022-01-16T18:41:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1c3769e5-6f1c-4615-9edd-caf8f11f6610", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T17:18:43.000Z" - }, - "end": { - "$date": "2022-01-16T19:34:24.000Z" - }, - "events": [ - { - "uuid": "82cd52af-4351-46b2-93e0-65bbb0a371a2", - "start": { - "$date": "2022-01-16T17:18:43.000Z" - }, - "end": { - "$date": "2022-01-16T19:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bceab9e6-1339-4e03-864b-4635b5b0da5d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T18:38:17.000Z" - }, - "end": { - "$date": "2022-01-16T19:15:14.000Z" - }, - "events": [ - { - "uuid": "3197f50e-1012-4941-8a69-f5d1f2c2a571", - "start": { - "$date": "2022-01-16T18:38:17.000Z" - }, - "end": { - "$date": "2022-01-16T19:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "258f72f4-bcd0-404d-a5f0-fc544d5cddee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T20:47:59.000Z" - }, - "end": { - "$date": "2022-01-16T21:18:08.000Z" - }, - "events": [ - { - "uuid": "ef0bef29-6e8c-45ea-8e9b-8ee57a802ed1", - "start": { - "$date": "2022-01-16T20:47:59.000Z" - }, - "end": { - "$date": "2022-01-16T21:35:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c32a8f7e-0cef-454d-9fa8-f855082b5d89", - "start": { - "$date": "2022-01-16T21:35:59.000Z" - }, - "end": { - "$date": "2022-01-16T21:40:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9991b23-fa91-4463-9645-ecfff9d4b391", - "start": { - "$date": "2022-01-16T21:40:59.000Z" - }, - "end": { - "$date": "2022-01-16T21:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "307d40a9-b71a-453a-bb6f-635ac4d372c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-16T19:19:44.000Z" - }, - "end": { - "$date": "2022-01-16T19:22:41.000Z" - }, - "events": [ - { - "uuid": "b8413731-cc21-4f17-95fd-8124737bdf0e", - "start": { - "$date": "2022-01-16T19:19:44.000Z" - }, - "end": { - "$date": "2022-01-16T19:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8da93b5f-79e8-4e16-975d-b9b3506d67e6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T20:12:05.000Z" - }, - "end": { - "$date": "2022-01-16T20:39:39.000Z" - }, - "events": [ - { - "uuid": "f31c7ecf-8ca4-4dfb-9298-2398e603c751", - "start": { - "$date": "2022-01-16T20:12:05.000Z" - }, - "end": { - "$date": "2022-01-16T20:39:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "92b79ad6-a46a-4cdb-9f80-9c716948faa9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T20:12:13.000Z" - }, - "end": { - "$date": "2022-01-16T20:51:34.000Z" - }, - "events": [ - { - "uuid": "42f0a461-028d-4041-ad7c-55188e8125d3", - "start": { - "$date": "2022-01-16T20:12:13.000Z" - }, - "end": { - "$date": "2022-01-16T20:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "3004e763-595f-485e-8c04-bf0df629b002", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-16T20:19:17.000Z" - }, - "end": { - "$date": "2022-01-16T21:52:51.000Z" - }, - "events": [ - { - "uuid": "5587e617-ed82-42bb-b134-979e7e5d7ab4", - "start": { - "$date": "2022-01-16T20:19:17.000Z" - }, - "end": { - "$date": "2022-01-16T21:52:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ffbb052b-0a0c-4001-8981-ea900cd0602e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-16T20:29:40.000Z" - }, - "end": { - "$date": "2022-01-16T21:19:39.000Z" - }, - "events": [ - { - "uuid": "5e88ed94-3612-4e46-b895-37a45524f547", - "start": { - "$date": "2022-01-16T20:29:40.000Z" - }, - "end": { - "$date": "2022-01-16T20:59:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fcc3382a-ef73-489b-a8a9-2ee94511a041", - "start": { - "$date": "2022-01-16T20:59:40.000Z" - }, - "end": { - "$date": "2022-01-16T21:19:39.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "79a969dc-b4ef-4aa1-8c4b-926057c374d0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T20:57:49.000Z" - }, - "end": { - "$date": "2022-01-16T22:11:39.000Z" - }, - "events": [ - { - "uuid": "24b579bb-8cc4-4b9e-96b1-0e4e327f92eb", - "start": { - "$date": "2022-01-16T20:57:49.000Z" - }, - "end": { - "$date": "2022-01-16T22:11:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0142c027-3c4b-4148-9db8-ace7418b787d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-16T21:13:29.000Z" - }, - "end": { - "$date": "2022-01-16T21:46:28.000Z" - }, - "events": [ - { - "uuid": "9848ebdd-5f8c-4161-9137-a9eb1d2002f2", - "start": { - "$date": "2022-01-16T21:13:29.000Z" - }, - "end": { - "$date": "2022-01-16T21:46:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdcb40de-a30d-40e0-9e0f-0f3870abc7cd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T21:25:59.000Z" - }, - "end": { - "$date": "2022-01-16T21:54:02.000Z" - }, - "events": [ - { - "uuid": "c6f2c735-3733-4206-b5ba-9abff3073d1b", - "start": { - "$date": "2022-01-16T21:25:59.000Z" - }, - "end": { - "$date": "2022-01-16T21:54:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a3301936-27ae-4c50-bd04-7e078df58869", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T21:54:12.000Z" - }, - "end": { - "$date": "2022-01-16T22:40:32.000Z" - }, - "events": [ - { - "uuid": "21bc590a-f1cf-4fbf-a71d-e6a9c31429e7", - "start": { - "$date": "2022-01-16T21:54:12.000Z" - }, - "end": { - "$date": "2022-01-16T22:40:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0a1177c-4f4d-4d56-b112-340a92fbd7ae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T22:03:42.000Z" - }, - "end": { - "$date": "2022-01-16T22:23:33.000Z" - }, - "events": [ - { - "uuid": "e823d46d-e8f9-4441-b897-21e88a931798", - "start": { - "$date": "2022-01-16T22:03:42.000Z" - }, - "end": { - "$date": "2022-01-16T22:23:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "8387d17c-0d46-4225-a3a2-47c4ea9750f5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T22:12:09.000Z" - }, - "end": { - "$date": "2022-01-16T22:35:12.000Z" - }, - "events": [ - { - "uuid": "54e7a38a-6146-41de-9595-6a7b34cfd100", - "start": { - "$date": "2022-01-16T22:12:09.000Z" - }, - "end": { - "$date": "2022-01-16T22:35:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "e549aff2-eebb-467b-a141-425efbf08aa2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-16T22:21:11.000Z" - }, - "end": { - "$date": "2022-01-16T22:51:20.000Z" - }, - "events": [ - { - "uuid": "36f867de-29d3-4d23-946c-b605b97079f1", - "start": { - "$date": "2022-01-16T22:21:11.000Z" - }, - "end": { - "$date": "2022-01-16T22:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4348e494-752a-4ad5-9866-65c3566e0c62", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-16T22:25:38.000Z" - }, - "end": { - "$date": "2022-01-16T22:46:55.000Z" - }, - "events": [ - { - "uuid": "16aef148-f5da-4ae8-b01a-8a13ef4b6be7", - "start": { - "$date": "2022-01-16T22:25:38.000Z" - }, - "end": { - "$date": "2022-01-16T22:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d4482e5-3c58-434c-b1ed-8ae9f8b6cfb6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-16T22:41:58.000Z" - }, - "end": { - "$date": "2022-01-16T22:44:55.000Z" - }, - "events": [ - { - "uuid": "4abe7896-4c8c-4cdb-984e-8da5266d3fd5", - "start": { - "$date": "2022-01-16T22:41:58.000Z" - }, - "end": { - "$date": "2022-01-16T22:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "851ca8cd-4b9f-47d4-938b-0f5590beeeb7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T22:42:42.000Z" - }, - "end": { - "$date": "2022-01-16T23:33:09.000Z" - }, - "events": [ - { - "uuid": "37837224-01b1-4961-943a-f8c942437b8c", - "start": { - "$date": "2022-01-16T22:42:42.000Z" - }, - "end": { - "$date": "2022-01-16T23:33:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9fb8e6b8-a73e-46fd-aae7-14f6a831ed9d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-16T23:07:38.000Z" - }, - "end": { - "$date": "2022-01-16T23:12:24.000Z" - }, - "events": [ - { - "uuid": "a72a6518-a7a0-44c5-8922-fb9a3262ed9f", - "start": { - "$date": "2022-01-16T23:07:38.000Z" - }, - "end": { - "$date": "2022-01-16T23:12:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "dff553cd-5c2f-4845-85e6-196a03d1da13", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-16T23:09:48.000Z" - }, - "end": { - "$date": "2022-01-16T23:18:28.000Z" - }, - "events": [ - { - "uuid": "4b7c5a0b-e9c1-4cd5-bf8a-48a71268ccf6", - "start": { - "$date": "2022-01-16T23:09:48.000Z" - }, - "end": { - "$date": "2022-01-16T23:18:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "757ebd4d-7d6c-4bbd-b9ae-c25f20d83dcb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-16T23:12:49.000Z" - }, - "end": { - "$date": "2022-01-16T23:24:18.000Z" - }, - "events": [ - { - "uuid": "005ca153-6467-41a2-abce-41f72bb9ac0a", - "start": { - "$date": "2022-01-16T23:12:49.000Z" - }, - "end": { - "$date": "2022-01-16T23:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d38ae346-9e81-4d4d-a033-e4b4b5bd1ac3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-16T23:50:01.000Z" - }, - "end": { - "$date": "2022-01-17T02:48:21.000Z" - }, - "events": [ - { - "uuid": "f63647df-f931-4389-813e-41bcf7e811d1", - "start": { - "$date": "2022-01-16T23:50:01.000Z" - }, - "end": { - "$date": "2022-01-17T02:48:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1b4041b4-e44e-4620-9b9e-b3a74a32c296", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T00:31:38.000Z" - }, - "end": { - "$date": "2022-01-17T00:44:14.000Z" - }, - "events": [ - { - "uuid": "6207aec2-6ace-452f-bf6f-cc9a6dc934aa", - "start": { - "$date": "2022-01-17T00:31:38.000Z" - }, - "end": { - "$date": "2022-01-17T00:44:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "970618c9-1754-4d49-bac5-ac44dac12000", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T00:38:40.000Z" - }, - "end": { - "$date": "2022-01-17T01:55:03.000Z" - }, - "events": [ - { - "uuid": "87d41577-b5c3-4aac-8403-f1a95298eb41", - "start": { - "$date": "2022-01-17T00:38:40.000Z" - }, - "end": { - "$date": "2022-01-17T01:55:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "60126a10-fa2d-4ed7-8bee-6d98dff04368", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-17T00:43:03.000Z" - }, - "end": { - "$date": "2022-01-17T01:19:22.000Z" - }, - "events": [ - { - "uuid": "8620d168-97c3-4cbb-ac11-3e9139ef4377", - "start": { - "$date": "2022-01-17T00:43:03.000Z" - }, - "end": { - "$date": "2022-01-17T01:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "035b6066-edcd-4f9a-8da3-87e361a58ff6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T00:55:25.000Z" - }, - "end": { - "$date": "2022-01-17T02:47:29.000Z" - }, - "events": [ - { - "uuid": "d392e69f-5e73-4593-9ea7-99eaed80dff8", - "start": { - "$date": "2022-01-17T00:55:25.000Z" - }, - "end": { - "$date": "2022-01-17T02:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "50fd3c7f-532d-41c6-9563-3d749d07cb45", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-17T00:57:32.000Z" - }, - "end": { - "$date": "2022-01-17T01:39:30.000Z" - }, - "events": [ - { - "uuid": "40b98daf-f674-459e-bbc7-f5c4b5b97923", - "start": { - "$date": "2022-01-17T00:57:32.000Z" - }, - "end": { - "$date": "2022-01-17T01:39:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "8720d1c8-cbf8-4bbd-9cd8-9997077ba261", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T01:17:43.000Z" - }, - "end": { - "$date": "2022-01-17T03:32:53.000Z" - }, - "events": [ - { - "uuid": "0fe28a08-dafe-462c-87af-afb0eb12c4d8", - "start": { - "$date": "2022-01-17T01:17:43.000Z" - }, - "end": { - "$date": "2022-01-17T03:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "167101e3-03af-48f5-846c-77de2ed53a46", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T02:25:58.000Z" - }, - "end": { - "$date": "2022-01-17T03:22:25.000Z" - }, - "events": [ - { - "uuid": "adfc6848-42fe-469d-8547-5c89e70bd0df", - "start": { - "$date": "2022-01-17T02:25:58.000Z" - }, - "end": { - "$date": "2022-01-17T03:22:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60205a48-97da-4ced-b7a3-bc6a721928be", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-17T02:53:28.000Z" - }, - "end": { - "$date": "2022-01-17T02:56:39.000Z" - }, - "events": [ - { - "uuid": "273e69ea-66a0-46f7-9998-edff56adfa93", - "start": { - "$date": "2022-01-17T02:53:28.000Z" - }, - "end": { - "$date": "2022-01-17T02:56:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "680c7ca7-6769-49a6-adb2-bfbc8f216cc6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-17T02:58:20.000Z" - }, - "end": { - "$date": "2022-01-17T03:50:54.000Z" - }, - "events": [ - { - "uuid": "4dd65d92-6267-4be4-a9d3-be2dd1ee9afc", - "start": { - "$date": "2022-01-17T02:58:20.000Z" - }, - "end": { - "$date": "2022-01-17T03:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "09195b1d-c2e2-4b62-ad11-c452aea6ce55", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T03:09:58.000Z" - }, - "end": { - "$date": "2022-01-17T03:12:54.000Z" - }, - "events": [ - { - "uuid": "3484397f-ea2b-485a-9f0f-5392933373e8", - "start": { - "$date": "2022-01-17T03:09:58.000Z" - }, - "end": { - "$date": "2022-01-17T03:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1cd40124-976b-4a2f-8cda-345f9c00f47e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-17T02:50:13.000Z" - }, - "end": { - "$date": "2022-01-17T06:29:18.000Z" - }, - "events": [ - { - "uuid": "57e80960-1d14-4440-b19c-8127f6736eac", - "start": { - "$date": "2022-01-17T02:50:13.000Z" - }, - "end": { - "$date": "2022-01-17T06:29:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "8cd61593-fd62-43c9-abd3-3a92def6c153", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T03:23:00.000Z" - }, - "end": { - "$date": "2022-01-17T03:25:26.000Z" - }, - "events": [ - { - "uuid": "5c67a0ed-5fcf-47a2-8b36-59e7a68808d3", - "start": { - "$date": "2022-01-17T03:23:00.000Z" - }, - "end": { - "$date": "2022-01-17T03:25:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e6a82359-08fb-46e5-9910-76798090af64", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T03:25:36.000Z" - }, - "end": { - "$date": "2022-01-17T03:45:51.000Z" - }, - "events": [ - { - "uuid": "dcad5a0f-7ab0-458e-b466-f8a6eb2baf3f", - "start": { - "$date": "2022-01-17T03:25:36.000Z" - }, - "end": { - "$date": "2022-01-17T03:45:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "4467ba09-f6a1-4c47-b74b-63ee326b4e10", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T03:33:51.000Z" - }, - "end": { - "$date": "2022-01-17T03:34:07.000Z" - }, - "events": [ - { - "uuid": "bd0fb880-e871-47dc-87cb-bea9a4a70aff", - "start": { - "$date": "2022-01-17T03:33:51.000Z" - }, - "end": { - "$date": "2022-01-17T03:34:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "601dded5-88ef-4879-abc6-15684ad45193", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T03:34:51.000Z" - }, - "end": { - "$date": "2022-01-17T04:18:11.000Z" - }, - "events": [ - { - "uuid": "57100bbd-cf1a-4272-b009-8033d030b480", - "start": { - "$date": "2022-01-17T03:34:51.000Z" - }, - "end": { - "$date": "2022-01-17T04:18:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7c7d879-eba1-4948-b31c-25dfeba06f2d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-17T03:52:53.000Z" - }, - "end": { - "$date": "2022-01-17T03:55:13.000Z" - }, - "events": [ - { - "uuid": "797aa7cd-fa3a-4cbc-bf98-7eb68e7b7018", - "start": { - "$date": "2022-01-17T03:52:53.000Z" - }, - "end": { - "$date": "2022-01-17T03:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "29bece92-eb91-45d8-a4bc-dd6843b8b13c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-17T03:55:50.000Z" - }, - "end": { - "$date": "2022-01-17T04:12:14.000Z" - }, - "events": [ - { - "uuid": "2c34bf97-e6e3-4890-b313-6d9e53843adf", - "start": { - "$date": "2022-01-17T03:55:50.000Z" - }, - "end": { - "$date": "2022-01-17T04:12:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "42d70559-13e5-4506-b876-a44d3ae9c591", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-17T03:59:06.000Z" - }, - "end": { - "$date": "2022-01-17T04:13:33.000Z" - }, - "events": [ - { - "uuid": "135a2fcc-7d9b-4d55-8ce7-f68e4a9268b6", - "start": { - "$date": "2022-01-17T03:59:06.000Z" - }, - "end": { - "$date": "2022-01-17T04:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48fad4b3-70c2-42df-84df-d80e970aae8b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-17T06:36:40.000Z" - }, - "end": { - "$date": "2022-01-17T06:37:23.000Z" - }, - "events": [ - { - "uuid": "3711ad0c-d300-4b72-a040-9d9c0cf236da", - "start": { - "$date": "2022-01-17T06:36:40.000Z" - }, - "end": { - "$date": "2022-01-17T06:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "910e04a6-ac3a-4d41-8b90-73b7adc842f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T04:01:27.000Z" - }, - "end": { - "$date": "2022-01-17T04:34:19.000Z" - }, - "events": [ - { - "uuid": "ca67038c-4b56-4ae3-b784-25dbaab5807a", - "start": { - "$date": "2022-01-17T04:01:27.000Z" - }, - "end": { - "$date": "2022-01-17T04:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa8872b8-e1ee-4b77-b1c2-504625f8b8c8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T04:07:57.000Z" - }, - "end": { - "$date": "2022-01-17T04:34:38.000Z" - }, - "events": [ - { - "uuid": "99e2426f-bb6a-4980-98cd-26eb6b96ca10", - "start": { - "$date": "2022-01-17T04:07:57.000Z" - }, - "end": { - "$date": "2022-01-17T04:34:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67679e38-437b-4b8d-9aba-702d277e7051", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T04:08:02.000Z" - }, - "end": { - "$date": "2022-01-17T04:34:32.000Z" - }, - "events": [ - { - "uuid": "b509aec4-a06b-43b6-8e5e-71f5b5c8a7cf", - "start": { - "$date": "2022-01-17T04:08:02.000Z" - }, - "end": { - "$date": "2022-01-17T04:34:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "f1a8d83c-df63-4212-a3f0-6b41e0a22d46", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T04:32:41.000Z" - }, - "end": { - "$date": "2022-01-17T05:40:15.000Z" - }, - "events": [ - { - "uuid": "71b51054-d1e7-4f5b-9816-5e5b46f02bb8", - "start": { - "$date": "2022-01-17T04:32:41.000Z" - }, - "end": { - "$date": "2022-01-17T05:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "33670452-8cc3-44a5-93a8-e3e3216ca5ab", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T04:37:48.000Z" - }, - "end": { - "$date": "2022-01-17T05:16:04.000Z" - }, - "events": [ - { - "uuid": "34d3a41e-6dab-4421-8834-39c0e56f8a72", - "start": { - "$date": "2022-01-17T04:37:48.000Z" - }, - "end": { - "$date": "2022-01-17T05:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b10f04e9-952a-46cd-8c2e-482099016be5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T04:37:52.000Z" - }, - "end": { - "$date": "2022-01-17T05:15:57.000Z" - }, - "events": [ - { - "uuid": "09545c56-69b2-41f0-9707-1242e7926f02", - "start": { - "$date": "2022-01-17T04:37:52.000Z" - }, - "end": { - "$date": "2022-01-17T05:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8bee13f6-0ba3-4e69-a67a-a0a54dc109dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T05:20:48.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:14.000Z" - }, - "events": [ - { - "uuid": "5cc7892a-850b-4dae-82ed-5981826b8990", - "start": { - "$date": "2022-01-17T05:20:48.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a601fb29-2d85-45f3-867b-190a98e8d0f1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T05:20:49.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:21.000Z" - }, - "events": [ - { - "uuid": "8b3307d6-c05b-4db8-a7c3-b15ac8a47405", - "start": { - "$date": "2022-01-17T05:20:49.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83e052cc-acc1-4fd9-bc1e-e1c988b5a151", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-17T05:20:50.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:22.000Z" - }, - "events": [ - { - "uuid": "c7d24c26-22fd-4b82-80e0-3b64f313cb23", - "start": { - "$date": "2022-01-17T05:20:50.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "48efb82c-c73c-41e9-98d9-46d1558d06de", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-17T05:26:47.000Z" - }, - "end": { - "$date": "2022-01-17T06:37:53.000Z" - }, - "events": [ - { - "uuid": "dce0f2f8-8a63-4a5d-bb9a-75847f174a58", - "start": { - "$date": "2022-01-17T05:26:47.000Z" - }, - "end": { - "$date": "2022-01-17T06:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "87032105-d41c-43b7-9a94-4188887ffa7d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T05:31:41.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:03.000Z" - }, - "events": [ - { - "uuid": "5cc39f79-a46f-4bea-a17a-f62b1f77b807", - "start": { - "$date": "2022-01-17T05:31:41.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e97be2fe-88a8-4007-8f2c-537f8a5a263a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T05:40:20.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:45.000Z" - }, - "events": [ - { - "uuid": "7aae586c-5a88-4aba-8cac-bf962034f5f6", - "start": { - "$date": "2022-01-17T05:40:20.000Z" - }, - "end": { - "$date": "2022-01-17T06:04:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "1f1d37f2-afcd-495d-812f-7eddede00849", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T06:05:15.000Z" - }, - "end": { - "$date": "2022-01-17T07:16:53.000Z" - }, - "events": [ - { - "uuid": "d376ccfd-ed95-4f6e-9652-f13febde2b1e", - "start": { - "$date": "2022-01-17T06:05:15.000Z" - }, - "end": { - "$date": "2022-01-17T07:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc66a43d-4dc3-42c5-b5e3-b91087e8ab36", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T06:12:31.000Z" - }, - "end": { - "$date": "2022-01-17T06:36:42.000Z" - }, - "events": [ - { - "uuid": "7fe6031f-0579-4a88-97bb-d1b6baee9dc7", - "start": { - "$date": "2022-01-17T06:12:31.000Z" - }, - "end": { - "$date": "2022-01-17T06:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98d77092-d77a-42f7-9ca6-c4318f793229", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-17T06:12:33.000Z" - }, - "end": { - "$date": "2022-01-17T06:36:45.000Z" - }, - "events": [ - { - "uuid": "40da5137-771f-4625-90eb-8552a70bf849", - "start": { - "$date": "2022-01-17T06:12:33.000Z" - }, - "end": { - "$date": "2022-01-17T06:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "2deaae7d-f233-405b-a25a-bf8b37b94a8f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-17T06:53:17.000Z" - }, - "end": { - "$date": "2022-01-17T07:53:59.000Z" - }, - "events": [ - { - "uuid": "1d9f46c1-4c90-4c03-bffe-0c0fcb646ec6", - "start": { - "$date": "2022-01-17T06:53:17.000Z" - }, - "end": { - "$date": "2022-01-17T07:53:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "d85a0274-390b-4ce7-896b-5af92276d1b9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T07:17:10.000Z" - }, - "end": { - "$date": "2022-01-17T09:29:56.000Z" - }, - "events": [ - { - "uuid": "0fcdb08e-4455-4fb5-b36a-4e5894648456", - "start": { - "$date": "2022-01-17T07:17:10.000Z" - }, - "end": { - "$date": "2022-01-17T09:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5362e59b-5904-4628-aae5-91ea71843ff4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-17T07:59:54.000Z" - }, - "end": { - "$date": "2022-01-17T08:36:38.000Z" - }, - "events": [ - { - "uuid": "1295eec1-378c-489a-bc14-12f79c99bad4", - "start": { - "$date": "2022-01-17T07:59:54.000Z" - }, - "end": { - "$date": "2022-01-17T08:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "bab7c64a-2d48-4fed-b79c-4a4a43d3d595", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-17T08:15:21.000Z" - }, - "end": { - "$date": "2022-01-17T10:40:07.000Z" - }, - "events": [ - { - "uuid": "dfc0bea7-9f31-4a1d-9e98-bd8eebe86d33", - "start": { - "$date": "2022-01-17T08:15:21.000Z" - }, - "end": { - "$date": "2022-01-17T10:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7151b7d9-0157-4e67-a0b9-7e078f8d84af", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-17T08:43:15.000Z" - }, - "end": { - "$date": "2022-01-17T09:18:40.000Z" - }, - "events": [ - { - "uuid": "4ae68747-e585-4ad6-9423-36d9a59f5a32", - "start": { - "$date": "2022-01-17T08:43:15.000Z" - }, - "end": { - "$date": "2022-01-17T09:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e4fe437-68c7-4029-a68c-c99c52d06b4a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-17T09:28:06.000Z" - }, - "end": { - "$date": "2022-01-17T09:53:07.000Z" - }, - "events": [ - { - "uuid": "863c5810-27e3-4adb-82a8-1cb215e96848", - "start": { - "$date": "2022-01-17T09:28:06.000Z" - }, - "end": { - "$date": "2022-01-17T09:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "656b8be1-cf6e-45c2-99e4-f6593cd41831", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T15:12:14.000Z" - }, - "end": { - "$date": "2022-01-17T15:29:28.000Z" - }, - "events": [ - { - "uuid": "75562cf1-8c01-4030-8a20-88d46a25484d", - "start": { - "$date": "2022-01-17T15:12:14.000Z" - }, - "end": { - "$date": "2022-01-17T15:29:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "3e1d12d2-edce-4e0d-a7b0-7e344a02c259", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T15:29:37.000Z" - }, - "end": { - "$date": "2022-01-17T15:48:19.000Z" - }, - "events": [ - { - "uuid": "5018be06-0559-4749-935a-2c53165998aa", - "start": { - "$date": "2022-01-17T15:29:37.000Z" - }, - "end": { - "$date": "2022-01-17T15:48:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "939f7626-9e82-4434-830a-4e0e91e0baf3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T15:48:38.000Z" - }, - "end": { - "$date": "2022-01-17T16:21:36.000Z" - }, - "events": [ - { - "uuid": "d1e30915-1197-43ed-9eb8-884fe519a473", - "start": { - "$date": "2022-01-17T15:48:38.000Z" - }, - "end": { - "$date": "2022-01-17T16:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a67708a-3300-4938-a498-95dc02fb751f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T17:16:49.000Z" - }, - "end": { - "$date": "2022-01-17T17:52:23.000Z" - }, - "events": [ - { - "uuid": "119d6493-8959-4422-bf58-8730e6ed7f5a", - "start": { - "$date": "2022-01-17T17:16:49.000Z" - }, - "end": { - "$date": "2022-01-17T17:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ea3382b2-9a8f-4da6-a2fd-81c3acb24ed4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T17:38:29.000Z" - }, - "end": { - "$date": "2022-01-17T17:55:01.000Z" - }, - "events": [ - { - "uuid": "131d46bd-c79e-4c4f-947a-de9dc05e11c2", - "start": { - "$date": "2022-01-17T17:38:29.000Z" - }, - "end": { - "$date": "2022-01-17T17:55:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "931c4dfa-c29e-4944-8147-e756e8d5f60b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T18:02:24.000Z" - }, - "end": { - "$date": "2022-01-17T18:37:43.000Z" - }, - "events": [ - { - "uuid": "54352891-5751-4096-a9f7-7dccf46fb27f", - "start": { - "$date": "2022-01-17T18:02:24.000Z" - }, - "end": { - "$date": "2022-01-17T18:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b76ae6b6-14ed-4262-9d89-0dd7b500cbe9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T17:56:06.000Z" - }, - "end": { - "$date": "2022-01-17T18:27:39.000Z" - }, - "events": [ - { - "uuid": "605f6e87-0bf5-42bd-89a9-fff8e8ef00b3", - "start": { - "$date": "2022-01-17T17:56:06.000Z" - }, - "end": { - "$date": "2022-01-17T18:14:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36743377-757f-4145-a385-66eae8625472", - "start": { - "$date": "2022-01-17T18:14:06.000Z" - }, - "end": { - "$date": "2022-01-17T18:27:39.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f14f093-8115-43fc-b9e7-55f18aabadc9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T22:19:58.000Z" - }, - "end": { - "$date": "2022-01-17T22:51:34.000Z" - }, - "events": [ - { - "uuid": "cb28ad5b-a514-4c62-ab0f-f9da777a7b44", - "start": { - "$date": "2022-01-17T22:19:58.000Z" - }, - "end": { - "$date": "2022-01-17T22:45:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef55bedf-5ab7-46d7-92f0-2c06ae183372", - "start": { - "$date": "2022-01-17T22:45:58.000Z" - }, - "end": { - "$date": "2022-01-17T23:32:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4ee7601-fcb6-48db-b956-6fabfe026bb4", - "start": { - "$date": "2022-01-17T23:32:58.000Z" - }, - "end": { - "$date": "2022-01-18T00:56:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f038088-6f4e-4343-9f49-a13eb69aefe1", - "start": { - "$date": "2022-01-18T00:56:58.000Z" - }, - "end": { - "$date": "2022-01-18T01:44:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "383934ce-ecbd-4102-9584-b9013f89558d", - "start": { - "$date": "2022-01-18T01:44:58.000Z" - }, - "end": { - "$date": "2022-01-18T01:46:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "df94c737-2c72-41e0-86e3-0b196a8665e7", - "start": { - "$date": "2022-01-18T01:46:58.000Z" - }, - "end": { - "$date": "2022-01-18T01:56:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "88c7102b-d8d2-4a01-befe-bef1ba41cb51", - "start": { - "$date": "2022-01-18T01:56:58.000Z" - }, - "end": { - "$date": "2022-01-17T22:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "15e9a30f-ef93-4e55-a900-7f399305cf6f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T18:43:41.000Z" - }, - "end": { - "$date": "2022-01-17T21:42:53.000Z" - }, - "events": [ - { - "uuid": "527414b0-4fa4-4de1-870f-ac4762566110", - "start": { - "$date": "2022-01-17T18:43:41.000Z" - }, - "end": { - "$date": "2022-01-17T21:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5979747-46a3-464b-90d0-ab1800d14dc2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-17T09:10:36.000Z" - }, - "end": { - "$date": "2022-01-17T20:22:23.000Z" - }, - "events": [ - { - "uuid": "c56e9946-cf4b-4d65-b9c0-dddb3b9090c1", - "start": { - "$date": "2022-01-17T09:10:36.000Z" - }, - "end": { - "$date": "2022-01-17T09:40:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86031062-04c3-4130-8508-1225dac0c4a7", - "start": { - "$date": "2022-01-17T09:40:36.000Z" - }, - "end": { - "$date": "2022-01-17T09:44:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43b304af-b667-4502-9a79-54d2b0d68995", - "start": { - "$date": "2022-01-17T09:44:36.000Z" - }, - "end": { - "$date": "2022-01-17T20:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b6c9358-33bf-4434-b212-38b15d173703", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T19:59:03.000Z" - }, - "end": { - "$date": "2022-01-17T20:27:13.000Z" - }, - "events": [ - { - "uuid": "10349bcd-ce48-4970-b6df-a0dd11006d8e", - "start": { - "$date": "2022-01-17T19:59:03.000Z" - }, - "end": { - "$date": "2022-01-17T20:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b64d049-df10-4baf-93ba-8277b0fa9c4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-17T21:03:35.000Z" - }, - "end": { - "$date": "2022-01-17T21:04:28.000Z" - }, - "events": [ - { - "uuid": "38df7a22-471d-444d-ad44-170bdb3ad9ff", - "start": { - "$date": "2022-01-17T21:03:35.000Z" - }, - "end": { - "$date": "2022-01-17T21:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "fbb9e0de-2edc-4607-975e-f9198251c2ce", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-17T20:27:58.000Z" - }, - "end": { - "$date": "2022-01-17T21:06:03.000Z" - }, - "events": [ - { - "uuid": "a4ef49bd-d2d2-4181-9541-643bfd00facd", - "start": { - "$date": "2022-01-17T20:27:58.000Z" - }, - "end": { - "$date": "2022-01-17T21:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "4d100392-1b86-49f6-8910-2441c8eeede6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-17T20:32:06.000Z" - }, - "end": { - "$date": "2022-01-18T01:34:08.000Z" - }, - "events": [ - { - "uuid": "cbc881fb-1b25-43ac-8c21-5452609b75a0", - "start": { - "$date": "2022-01-17T20:32:06.000Z" - }, - "end": { - "$date": "2022-01-17T21:05:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4b08651-01ae-492a-8096-e5841dd39e6a", - "start": { - "$date": "2022-01-17T21:05:06.000Z" - }, - "end": { - "$date": "2022-01-17T22:08:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8b8b24b4-8158-48f2-96d8-4e8153063e0a", - "start": { - "$date": "2022-01-17T22:08:06.000Z" - }, - "end": { - "$date": "2022-01-17T22:10:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1cb02afc-ee01-4309-b73e-6d08f852a751", - "start": { - "$date": "2022-01-17T22:10:06.000Z" - }, - "end": { - "$date": "2022-01-17T23:57:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99edb1b5-e669-4079-a21d-14eabc14ac1d", - "start": { - "$date": "2022-01-17T23:57:06.000Z" - }, - "end": { - "$date": "2022-01-17T23:59:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c32cc051-473d-4e90-b5dc-6a7499ea7498", - "start": { - "$date": "2022-01-17T23:59:06.000Z" - }, - "end": { - "$date": "2022-01-18T01:34:08.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c38de9b8-5dce-41c1-9f04-b80bd5be357c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-17T20:43:36.000Z" - }, - "end": { - "$date": "2022-01-17T21:41:13.000Z" - }, - "events": [ - { - "uuid": "bb33eb5c-1f98-4e68-bc82-86662100b391", - "start": { - "$date": "2022-01-17T20:43:36.000Z" - }, - "end": { - "$date": "2022-01-17T21:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "9c27fc84-633b-49bc-9a12-c1b1be88a5c1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-17T21:07:14.000Z" - }, - "end": { - "$date": "2022-01-17T21:08:34.000Z" - }, - "events": [ - { - "uuid": "d7fed72f-22ee-4f46-a4a8-3be0d336eee2", - "start": { - "$date": "2022-01-17T21:07:14.000Z" - }, - "end": { - "$date": "2022-01-17T21:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "9746ab62-50fc-41ca-b05c-da94d795f022", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T21:25:56.000Z" - }, - "end": { - "$date": "2022-01-17T22:04:21.000Z" - }, - "events": [ - { - "uuid": "d534d42e-871f-4ed9-908b-d925699a46fb", - "start": { - "$date": "2022-01-17T21:25:56.000Z" - }, - "end": { - "$date": "2022-01-17T22:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "13fe402d-20ee-473d-a547-a790d34f781b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-17T21:42:25.000Z" - }, - "end": { - "$date": "2022-01-17T22:54:58.000Z" - }, - "events": [ - { - "uuid": "a828713f-de5e-410c-804c-1882c4793a3b", - "start": { - "$date": "2022-01-17T21:42:25.000Z" - }, - "end": { - "$date": "2022-01-17T22:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46b4533a-adf2-410e-89a1-a999c2ec2fcb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-17T22:03:12.000Z" - }, - "end": { - "$date": "2022-01-17T22:22:55.000Z" - }, - "events": [ - { - "uuid": "7e5882a1-aea1-4821-8666-25b128f880f2", - "start": { - "$date": "2022-01-17T22:03:12.000Z" - }, - "end": { - "$date": "2022-01-17T22:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "5586dc3c-b774-496d-a49b-a12db477f81a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T22:20:17.000Z" - }, - "end": { - "$date": "2022-01-17T22:51:27.000Z" - }, - "events": [ - { - "uuid": "961a01b2-27f0-4f6e-9d4b-66e8c023dedf", - "start": { - "$date": "2022-01-17T22:20:17.000Z" - }, - "end": { - "$date": "2022-01-17T22:51:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00e4da8e-9401-43af-a259-768ac704be17", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-17T22:25:13.000Z" - }, - "end": { - "$date": "2022-01-17T22:51:20.000Z" - }, - "events": [ - { - "uuid": "70a89391-7bcb-45a8-ab9a-7bd642a43159", - "start": { - "$date": "2022-01-17T22:25:13.000Z" - }, - "end": { - "$date": "2022-01-17T22:51:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eac597f5-775b-4259-95e3-b134d5f148f5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-17T22:57:14.000Z" - }, - "end": { - "$date": "2022-01-17T23:26:10.000Z" - }, - "events": [ - { - "uuid": "851db20f-b733-4ab6-815f-1536edeada6c", - "start": { - "$date": "2022-01-17T22:57:14.000Z" - }, - "end": { - "$date": "2022-01-17T23:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c59eeab1-6947-48fb-8ba4-92d22c24198a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-17T22:57:13.000Z" - }, - "end": { - "$date": "2022-01-17T23:26:08.000Z" - }, - "events": [ - { - "uuid": "18a71cc3-b55b-46d8-86fd-528a32be144f", - "start": { - "$date": "2022-01-17T22:57:13.000Z" - }, - "end": { - "$date": "2022-01-17T23:26:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "32dedc65-8d9d-4ca9-8286-ec1595d533e1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-17T23:35:33.000Z" - }, - "end": { - "$date": "2022-01-17T23:58:46.000Z" - }, - "events": [ - { - "uuid": "fa561419-da7f-4366-8724-e2689994e543", - "start": { - "$date": "2022-01-17T23:35:33.000Z" - }, - "end": { - "$date": "2022-01-17T23:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "b49fef64-813e-4ab5-ab73-dd0b99f5090b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-17T23:51:13.000Z" - }, - "end": { - "$date": "2022-01-18T01:09:03.000Z" - }, - "events": [ - { - "uuid": "3b2f8dd2-7277-4bf2-83b4-ca404c2608be", - "start": { - "$date": "2022-01-17T23:51:13.000Z" - }, - "end": { - "$date": "2022-01-18T01:09:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "de06d7f0-f645-4611-94f6-2fd3cec35ace", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-18T00:28:36.000Z" - }, - "end": { - "$date": "2022-01-18T00:46:18.000Z" - }, - "events": [ - { - "uuid": "01001266-3ce4-4f5c-82e9-b5768dc30bb9", - "start": { - "$date": "2022-01-18T00:28:36.000Z" - }, - "end": { - "$date": "2022-01-18T00:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4607b952-b94c-4bf1-b746-7bf79af15940", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-18T00:42:39.000Z" - }, - "end": { - "$date": "2022-01-18T01:14:34.000Z" - }, - "events": [ - { - "uuid": "b60bae97-2ca1-44d6-b844-d60ace6e5257", - "start": { - "$date": "2022-01-18T00:42:39.000Z" - }, - "end": { - "$date": "2022-01-18T01:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "90389bd4-7ab4-4551-bd58-3a701d1f6767", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T00:58:15.000Z" - }, - "end": { - "$date": "2022-01-18T02:58:20.000Z" - }, - "events": [ - { - "uuid": "be87b6b4-8b49-446e-a8bd-4e87cc5b61c2", - "start": { - "$date": "2022-01-18T00:58:15.000Z" - }, - "end": { - "$date": "2022-01-18T02:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "ca5dc5eb-e0f4-4c0a-bf47-07d22227391c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-18T01:13:18.000Z" - }, - "end": { - "$date": "2022-01-18T02:45:10.000Z" - }, - "events": [ - { - "uuid": "61833590-fe5f-4e3e-ab4e-6301ef7762ea", - "start": { - "$date": "2022-01-18T01:13:18.000Z" - }, - "end": { - "$date": "2022-01-18T01:41:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37d1e84a-251a-4198-be05-8a7c6d81a7ce", - "start": { - "$date": "2022-01-18T01:41:18.000Z" - }, - "end": { - "$date": "2022-01-18T01:44:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8aed831a-7ecb-420a-a781-6d6d4dafb52d", - "start": { - "$date": "2022-01-18T01:44:18.000Z" - }, - "end": { - "$date": "2022-01-18T01:54:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5f66bc7-24c5-4e6f-bb41-8486e9ae453b", - "start": { - "$date": "2022-01-18T01:54:18.000Z" - }, - "end": { - "$date": "2022-01-18T02:00:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "29a100ac-867e-43ae-9d39-f2896aa2a32c", - "start": { - "$date": "2022-01-18T02:00:18.000Z" - }, - "end": { - "$date": "2022-01-18T02:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "763edd79-caa1-46ca-bdd1-7b32dcb9a9e0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-18T01:13:41.000Z" - }, - "end": { - "$date": "2022-01-18T04:28:47.000Z" - }, - "events": [ - { - "uuid": "09090963-5381-4ae4-860a-02a5a9b752a9", - "start": { - "$date": "2022-01-18T01:13:41.000Z" - }, - "end": { - "$date": "2022-01-18T04:28:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dac10402-51d8-4045-a894-2e818eb59e7b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-18T01:20:41.000Z" - }, - "end": { - "$date": "2022-01-18T01:58:58.000Z" - }, - "events": [ - { - "uuid": "98ca0989-6157-42db-8905-c153d274ce9c", - "start": { - "$date": "2022-01-18T01:20:41.000Z" - }, - "end": { - "$date": "2022-01-18T01:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "08db1ff7-2516-4278-9942-3a522ce0631c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-18T01:31:45.000Z" - }, - "end": { - "$date": "2022-01-18T02:10:58.000Z" - }, - "events": [ - { - "uuid": "0efa0ca1-89f9-4e5d-9fb7-8483bfaf163f", - "start": { - "$date": "2022-01-18T01:31:45.000Z" - }, - "end": { - "$date": "2022-01-18T02:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "ec2bf0be-d46a-48c6-bcb0-9470a347f848", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-18T02:02:02.000Z" - }, - "end": { - "$date": "2022-01-18T02:55:14.000Z" - }, - "events": [ - { - "uuid": "723e1a0f-e4e1-4880-aeab-91458b6f94ba", - "start": { - "$date": "2022-01-18T02:02:02.000Z" - }, - "end": { - "$date": "2022-01-18T02:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b1a9005e-73a2-49a3-bdd7-2533ba8ddd20", - "uuid": "ac2b1c56-d13e-42c1-b60c-9b1cd7c35643", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T02:17:48.000Z" - }, - "end": { - "$date": "2022-01-18T02:34:06.000Z" - }, - "events": [ - { - "uuid": "fd6338db-4fbb-4efc-a473-065480ed9e49", - "start": { - "$date": "2022-01-18T02:17:48.000Z" - }, - "end": { - "$date": "2022-01-18T02:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "fcac4f20-a051-4445-900d-64b8088d5002", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T02:38:24.000Z" - }, - "end": { - "$date": "2022-01-18T02:41:22.000Z" - }, - "events": [ - { - "uuid": "c4bf2676-e5e1-4ecb-a885-d32c2b0e6186", - "start": { - "$date": "2022-01-18T02:38:24.000Z" - }, - "end": { - "$date": "2022-01-18T02:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "873e79b7-71ad-493f-8eca-d30a830bcecf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T02:39:09.000Z" - }, - "end": { - "$date": "2022-01-18T02:45:15.000Z" - }, - "events": [ - { - "uuid": "f4460d20-ea25-43f8-8fba-a7c54a94ffd5", - "start": { - "$date": "2022-01-18T02:39:09.000Z" - }, - "end": { - "$date": "2022-01-18T02:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ec129369-490c-488e-91c7-d729da25a632", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-18T02:39:44.000Z" - }, - "end": { - "$date": "2022-01-18T03:13:51.000Z" - }, - "events": [ - { - "uuid": "1fb0397b-ef8a-4a9a-a273-087897131933", - "start": { - "$date": "2022-01-18T02:39:44.000Z" - }, - "end": { - "$date": "2022-01-18T03:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "2235338b-5ec7-4644-88c0-1a855edfe681", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T02:42:29.000Z" - }, - "end": { - "$date": "2022-01-18T02:45:27.000Z" - }, - "events": [ - { - "uuid": "fed8b524-b8aa-4780-a5cd-b97a9421851c", - "start": { - "$date": "2022-01-18T02:42:29.000Z" - }, - "end": { - "$date": "2022-01-18T02:45:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "072f8e85-b1e8-403f-b6ed-3f8eb5e17ed7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T02:45:20.000Z" - }, - "end": { - "$date": "2022-01-18T03:13:36.000Z" - }, - "events": [ - { - "uuid": "0c352e13-e21c-4157-a082-c85c3660c6cc", - "start": { - "$date": "2022-01-18T02:45:20.000Z" - }, - "end": { - "$date": "2022-01-18T03:13:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "cb7c58ee-d5ba-4269-b78e-d1d4b324067a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T02:46:45.000Z" - }, - "end": { - "$date": "2022-01-18T03:31:01.000Z" - }, - "events": [ - { - "uuid": "82f9fae5-2050-4aec-b18d-a6ee285aa4d6", - "start": { - "$date": "2022-01-18T02:46:45.000Z" - }, - "end": { - "$date": "2022-01-18T03:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "cb8d9516-1432-4172-a749-c54f912238a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-18T02:55:19.000Z" - }, - "end": { - "$date": "2022-01-18T03:08:31.000Z" - }, - "events": [ - { - "uuid": "a149a3e9-8914-43db-8a31-ea6e0c2182f7", - "start": { - "$date": "2022-01-18T02:55:19.000Z" - }, - "end": { - "$date": "2022-01-18T03:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "29f5bdc9-910d-4826-be85-b94cc0cb1474", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T03:04:45.000Z" - }, - "end": { - "$date": "2022-01-18T04:25:33.000Z" - }, - "events": [ - { - "uuid": "4cb6a224-e15c-45d7-9908-53ac492ad65c", - "start": { - "$date": "2022-01-18T03:04:45.000Z" - }, - "end": { - "$date": "2022-01-18T04:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "f14c30a6-44bc-4872-a590-d631fb500827", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-18T03:14:25.000Z" - }, - "end": { - "$date": "2022-01-18T04:52:59.000Z" - }, - "events": [ - { - "uuid": "220d0ebd-ef83-4332-abd9-50b8d92beba9", - "start": { - "$date": "2022-01-18T03:14:25.000Z" - }, - "end": { - "$date": "2022-01-18T04:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "2fc53d39-770d-4cd7-bf94-fb4225b66de8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T03:34:19.000Z" - }, - "end": { - "$date": "2022-01-18T03:38:12.000Z" - }, - "events": [ - { - "uuid": "4e600e26-24c6-46d7-9aed-85a6b0f1c6d9", - "start": { - "$date": "2022-01-18T03:34:19.000Z" - }, - "end": { - "$date": "2022-01-18T03:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "edfa1e98-83e5-4d0d-95ea-3d357fd920c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-18T03:43:17.000Z" - }, - "end": { - "$date": "2022-01-18T03:58:21.000Z" - }, - "events": [ - { - "uuid": "451898a6-a726-4adc-86bb-93739d240803", - "start": { - "$date": "2022-01-18T03:43:17.000Z" - }, - "end": { - "$date": "2022-01-18T03:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2040f11a-eb52-49d6-837b-7a6816e1837c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T03:46:45.000Z" - }, - "end": { - "$date": "2022-01-18T04:43:10.000Z" - }, - "events": [ - { - "uuid": "210cc0b8-7e4e-49ca-b98a-f2a48679164b", - "start": { - "$date": "2022-01-18T03:46:45.000Z" - }, - "end": { - "$date": "2022-01-18T04:43:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "861dab4c-6d7e-47c2-9be5-8f4ae5ba43b6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-18T04:16:52.000Z" - }, - "end": { - "$date": "2022-01-18T04:32:48.000Z" - }, - "events": [ - { - "uuid": "f6e8dc89-370f-48f0-b0a0-ec1123e37d9b", - "start": { - "$date": "2022-01-18T04:16:52.000Z" - }, - "end": { - "$date": "2022-01-18T04:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0e84ec3b-afed-425c-85aa-cf6b123b8214", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-18T04:24:39.000Z" - }, - "end": { - "$date": "2022-01-18T07:46:26.000Z" - }, - "events": [ - { - "uuid": "86e4f455-388f-4963-84e1-0d8be8419d6b", - "start": { - "$date": "2022-01-18T04:24:39.000Z" - }, - "end": { - "$date": "2022-01-18T07:46:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "fb3f8a53-b87a-4ae0-918a-fd62e13ba99c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-18T04:26:19.000Z" - }, - "end": { - "$date": "2022-01-18T05:33:57.000Z" - }, - "events": [ - { - "uuid": "cc4707ec-51bd-4311-93ff-0bea35bfe26b", - "start": { - "$date": "2022-01-18T04:26:19.000Z" - }, - "end": { - "$date": "2022-01-18T05:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4e80d9f-befe-4a00-8c77-3bfec0cf439b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T04:33:05.000Z" - }, - "end": { - "$date": "2022-01-18T04:58:16.000Z" - }, - "events": [ - { - "uuid": "6462b74c-6d66-438a-9e98-070a12ff1ff3", - "start": { - "$date": "2022-01-18T04:33:05.000Z" - }, - "end": { - "$date": "2022-01-18T04:58:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6421a237-9475-465c-9bc8-34d2362e1253", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-18T08:15:38.000Z" - }, - "end": { - "$date": "2022-01-18T08:17:52.000Z" - }, - "events": [ - { - "uuid": "6edfd203-0288-48af-a760-ad3a5fb0bd68", - "start": { - "$date": "2022-01-18T08:15:38.000Z" - }, - "end": { - "$date": "2022-01-18T08:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db44f166-d13c-4612-8769-7ed0bc2be974", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-18T04:49:33.000Z" - }, - "end": { - "$date": "2022-01-18T05:23:45.000Z" - }, - "events": [ - { - "uuid": "88d79692-09fe-4231-954e-536e25ae96bd", - "start": { - "$date": "2022-01-18T04:49:33.000Z" - }, - "end": { - "$date": "2022-01-18T05:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8435f324-ec6b-4c05-a557-ea86d19ac3b8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T05:01:11.000Z" - }, - "end": { - "$date": "2022-01-18T05:19:24.000Z" - }, - "events": [ - { - "uuid": "aa5fc4a7-6821-433d-a082-d555ae38961e", - "start": { - "$date": "2022-01-18T05:01:11.000Z" - }, - "end": { - "$date": "2022-01-18T05:19:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7847f553-3e85-4753-a7a9-82a7e20d901a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T05:21:53.000Z" - }, - "end": { - "$date": "2022-01-18T05:44:31.000Z" - }, - "events": [ - { - "uuid": "0e73bd0a-41c2-4830-9b65-eda1417f6ee8", - "start": { - "$date": "2022-01-18T05:21:53.000Z" - }, - "end": { - "$date": "2022-01-18T05:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e1a6aa1-9ef0-4dcd-adc1-cf4aeb5e68e5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-18T05:31:25.000Z" - }, - "end": { - "$date": "2022-01-18T05:59:12.000Z" - }, - "events": [ - { - "uuid": "5930e963-68f2-4952-99b9-549e1127f553", - "start": { - "$date": "2022-01-18T05:31:25.000Z" - }, - "end": { - "$date": "2022-01-18T05:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70f0a19e-6c47-44fd-b3c1-bea9368db23c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T05:46:34.000Z" - }, - "end": { - "$date": "2022-01-18T05:58:11.000Z" - }, - "events": [ - { - "uuid": "5e6571bb-77c8-4114-bf51-532eddeb3a33", - "start": { - "$date": "2022-01-18T05:46:34.000Z" - }, - "end": { - "$date": "2022-01-18T05:58:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c4a83991-1d52-4f6a-becc-c1635bfda6e7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T06:25:15.000Z" - }, - "end": { - "$date": "2022-01-18T06:41:12.000Z" - }, - "events": [ - { - "uuid": "96b90735-6e21-49ba-8ab0-0ab0cdc6c779", - "start": { - "$date": "2022-01-18T06:25:15.000Z" - }, - "end": { - "$date": "2022-01-18T06:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dee9872c-923c-4214-af70-a478ca406899", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T06:00:56.000Z" - }, - "end": { - "$date": "2022-01-18T06:20:34.000Z" - }, - "events": [ - { - "uuid": "8e0607d3-d5d4-4a0c-9ac0-a11210f27992", - "start": { - "$date": "2022-01-18T06:00:56.000Z" - }, - "end": { - "$date": "2022-01-18T06:20:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7c6700c-1466-4611-b466-2a2d4f187ede", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-18T06:19:33.000Z" - }, - "end": { - "$date": "2022-01-18T06:41:48.000Z" - }, - "events": [ - { - "uuid": "9307b937-4047-436c-9888-edab1fabf4dd", - "start": { - "$date": "2022-01-18T06:19:33.000Z" - }, - "end": { - "$date": "2022-01-18T06:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2a58b8d6-56c8-4861-8b6d-a14aedd5376b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-18T06:12:59.000Z" - }, - "end": { - "$date": "2022-01-18T06:41:26.000Z" - }, - "events": [ - { - "uuid": "92c96f5f-c062-4629-95a9-dbf4dbb7f1fe", - "start": { - "$date": "2022-01-18T06:12:59.000Z" - }, - "end": { - "$date": "2022-01-18T06:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbe7f9e6-bc09-4558-a1f4-a779bbeba738", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T06:22:34.000Z" - }, - "end": { - "$date": "2022-01-18T06:45:12.000Z" - }, - "events": [ - { - "uuid": "5e21d097-8b87-47e4-a0b5-c04c4d18cc0d", - "start": { - "$date": "2022-01-18T06:22:34.000Z" - }, - "end": { - "$date": "2022-01-18T06:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e59904e-c70e-4212-b31d-d74c0b7ebfe2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-18T06:44:33.000Z" - }, - "end": { - "$date": "2022-01-18T07:03:45.000Z" - }, - "events": [ - { - "uuid": "503b3a9b-5d44-4462-8cae-0deda7f5e299", - "start": { - "$date": "2022-01-18T06:44:33.000Z" - }, - "end": { - "$date": "2022-01-18T07:03:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a94719a1-984d-4ad5-afc4-dd3d0bc7e9cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T06:47:17.000Z" - }, - "end": { - "$date": "2022-01-18T07:12:05.000Z" - }, - "events": [ - { - "uuid": "43c9887f-02ae-4e37-a205-3e812f5d8b60", - "start": { - "$date": "2022-01-18T06:47:17.000Z" - }, - "end": { - "$date": "2022-01-18T07:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "69fd4184-c48d-42d4-9511-d0ae84b90057", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T07:18:53.000Z" - }, - "end": { - "$date": "2022-01-18T07:42:47.000Z" - }, - "events": [ - { - "uuid": "c2493537-29a8-4889-818b-3121ebcf857e", - "start": { - "$date": "2022-01-18T07:18:53.000Z" - }, - "end": { - "$date": "2022-01-18T07:42:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", - "uuid": "fad3ace1-d4e7-44a3-b52d-ab8d9d3a9922", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-18T07:25:23.000Z" - }, - "end": { - "$date": "2022-01-18T07:26:23.000Z" - }, - "events": [ - { - "uuid": "40f67ddd-8cb4-4603-a5fb-e9f952864964", - "start": { - "$date": "2022-01-18T07:25:23.000Z" - }, - "end": { - "$date": "2022-01-18T07:26:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", - "uuid": "3a4f7c73-cf4c-402e-9516-aecd4e52dad6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-18T07:35:24.000Z" - }, - "end": { - "$date": "2022-01-18T07:36:54.000Z" - }, - "events": [ - { - "uuid": "5c61dcde-52e3-40aa-ac33-3c364b9ecd51", - "start": { - "$date": "2022-01-18T07:35:24.000Z" - }, - "end": { - "$date": "2022-01-18T07:36:54.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "53ee9c57-3fdd-443e-b388-07e8e01d82f8", - "uuid": "84db034f-666d-4470-bba3-2557fb097058", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-18T07:38:34.000Z" - }, - "end": { - "$date": "2022-01-18T11:09:52.000Z" - }, - "events": [ - { - "uuid": "791c9290-d66c-4d39-8f17-7cb2462297c0", - "start": { - "$date": "2022-01-18T07:38:34.000Z" - }, - "end": { - "$date": "2022-01-18T11:09:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d9e0c68-5012-4e27-b760-1a42ff581c0d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T07:46:31.000Z" - }, - "end": { - "$date": "2022-01-18T08:20:34.000Z" - }, - "events": [ - { - "uuid": "32eeda4c-aa97-4dfa-9248-a4cf8e60ebc8", - "start": { - "$date": "2022-01-18T07:46:31.000Z" - }, - "end": { - "$date": "2022-01-18T08:20:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "05d39589-a607-45d1-98f2-109459db9fd7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-18T07:46:32.000Z" - }, - "end": { - "$date": "2022-01-18T08:28:17.000Z" - }, - "events": [ - { - "uuid": "2c1c0bf4-7a4d-450f-a2b3-5f8216f0b094", - "start": { - "$date": "2022-01-18T07:46:32.000Z" - }, - "end": { - "$date": "2022-01-18T08:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "621a4cdc-ecb1-46ce-ba74-b5df28afe6da", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T17:48:27.000Z" - }, - "end": { - "$date": "2022-01-18T17:48:49.000Z" - }, - "events": [ - { - "uuid": "c3111d61-14fa-4347-86eb-c27a33fd391f", - "start": { - "$date": "2022-01-18T17:48:27.000Z" - }, - "end": { - "$date": "2022-01-18T17:48:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "100717b4-edbc-47bf-8676-f20cd3ccdfc7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T18:03:29.000Z" - }, - "end": { - "$date": "2022-01-18T18:43:37.000Z" - }, - "events": [ - { - "uuid": "75953439-0fb1-4f07-b586-0f2de53e430e", - "start": { - "$date": "2022-01-18T18:03:29.000Z" - }, - "end": { - "$date": "2022-01-18T18:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "f093044f-c66e-4eef-99fe-b731fa82ce0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T19:35:57.000Z" - }, - "end": { - "$date": "2022-01-18T19:50:12.000Z" - }, - "events": [ - { - "uuid": "528abf09-beb8-4dd1-90a7-018dea5cf6fb", - "start": { - "$date": "2022-01-18T19:35:57.000Z" - }, - "end": { - "$date": "2022-01-18T19:50:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "93a58f1d-92f2-4113-8aee-f3038ee5d771", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T20:06:29.000Z" - }, - "end": { - "$date": "2022-01-18T20:18:06.000Z" - }, - "events": [ - { - "uuid": "bb4d14ff-667a-4db1-a596-756af8b1d020", - "start": { - "$date": "2022-01-18T20:06:29.000Z" - }, - "end": { - "$date": "2022-01-18T20:18:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "72a15239-c18d-4ef3-a0e2-0f9795a1f276", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T20:22:55.000Z" - }, - "end": { - "$date": "2022-01-18T20:28:41.000Z" - }, - "events": [ - { - "uuid": "382b8ed0-32da-4b8a-a778-91e6a38b1a69", - "start": { - "$date": "2022-01-18T20:22:55.000Z" - }, - "end": { - "$date": "2022-01-18T20:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "66c852c4-3f0d-4510-9bbe-c113dfcd0f5f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T21:05:25.000Z" - }, - "end": { - "$date": "2022-01-18T21:10:07.000Z" - }, - "events": [ - { - "uuid": "4143ce59-4c85-423b-8c4f-83552dac89ce", - "start": { - "$date": "2022-01-18T21:05:25.000Z" - }, - "end": { - "$date": "2022-01-18T21:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "6929493e-01b8-4291-a9cd-5def7e00c5db", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T21:10:22.000Z" - }, - "end": { - "$date": "2022-01-18T21:30:51.000Z" - }, - "events": [ - { - "uuid": "ae39398a-2137-451f-b8b4-1ced75e78e08", - "start": { - "$date": "2022-01-18T21:10:22.000Z" - }, - "end": { - "$date": "2022-01-18T21:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "122aed64-c36a-4dc9-9f46-d3e703289141", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T21:37:44.000Z" - }, - "end": { - "$date": "2022-01-18T21:39:14.000Z" - }, - "events": [ - { - "uuid": "25834992-373c-4c15-ad11-918fdd04734e", - "start": { - "$date": "2022-01-18T21:37:44.000Z" - }, - "end": { - "$date": "2022-01-18T21:39:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "44d0f07e-8d44-4fb0-bf54-19883595aff1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T21:43:25.000Z" - }, - "end": { - "$date": "2022-01-18T21:48:01.000Z" - }, - "events": [ - { - "uuid": "f617dfa7-40ff-4129-bb4c-8865d632054d", - "start": { - "$date": "2022-01-18T21:43:25.000Z" - }, - "end": { - "$date": "2022-01-18T21:48:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "91eab2f0-a7e5-4833-9b5d-591e8a8051df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T21:48:45.000Z" - }, - "end": { - "$date": "2022-01-18T21:59:26.000Z" - }, - "events": [ - { - "uuid": "a12f1fc4-335e-435a-9cef-47b08a276f96", - "start": { - "$date": "2022-01-18T21:48:45.000Z" - }, - "end": { - "$date": "2022-01-18T21:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9107221-c7a3-4990-baef-2713b4640786", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T21:59:18.000Z" - }, - "end": { - "$date": "2022-01-18T22:31:11.000Z" - }, - "events": [ - { - "uuid": "76f78fb8-97de-4fdf-ada1-ea23f22295b1", - "start": { - "$date": "2022-01-18T21:59:18.000Z" - }, - "end": { - "$date": "2022-01-18T22:31:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "41e9a259-4a43-43d5-8e12-b1c255fdf4eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-18T22:16:45.000Z" - }, - "end": { - "$date": "2022-01-18T23:23:06.000Z" - }, - "events": [ - { - "uuid": "76ddb442-2462-4d11-af82-00823b925406", - "start": { - "$date": "2022-01-18T22:16:45.000Z" - }, - "end": { - "$date": "2022-01-18T23:23:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60ea8b48-e4fb-4b50-b873-99f6e9d70789", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T22:43:27.000Z" - }, - "end": { - "$date": "2022-01-18T23:06:42.000Z" - }, - "events": [ - { - "uuid": "636d5a98-65b5-4f47-a119-7afec663cdf5", - "start": { - "$date": "2022-01-18T22:43:27.000Z" - }, - "end": { - "$date": "2022-01-18T23:06:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "61696b1f-27c1-4d3b-bb78-e9e91d972b33", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T23:08:13.000Z" - }, - "end": { - "$date": "2022-01-18T23:37:17.000Z" - }, - "events": [ - { - "uuid": "814f69c0-d67c-4f21-bc02-cbc673f6e42b", - "start": { - "$date": "2022-01-18T23:08:13.000Z" - }, - "end": { - "$date": "2022-01-18T23:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "10c0fec9-ebe7-4c4e-88df-369304a8d3bd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-18T23:18:07.000Z" - }, - "end": { - "$date": "2022-01-19T00:48:10.000Z" - }, - "events": [ - { - "uuid": "7f1a540b-5bd1-4f27-b017-09f14b230272", - "start": { - "$date": "2022-01-18T23:18:07.000Z" - }, - "end": { - "$date": "2022-01-19T00:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f35fa40e-0612-4543-8751-b873cbce7847", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-18T23:36:36.000Z" - }, - "end": { - "$date": "2022-01-19T00:14:58.000Z" - }, - "events": [ - { - "uuid": "21410be1-f38e-49fe-8611-2d6a90ba7e78", - "start": { - "$date": "2022-01-18T23:36:36.000Z" - }, - "end": { - "$date": "2022-01-19T00:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e6430e5-7b7b-4e7a-b232-af68032f0e93", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-18T23:38:47.000Z" - }, - "end": { - "$date": "2022-01-19T00:14:15.000Z" - }, - "events": [ - { - "uuid": "9103bec9-4f6d-4262-85dc-14cbcbb89e23", - "start": { - "$date": "2022-01-18T23:38:47.000Z" - }, - "end": { - "$date": "2022-01-19T00:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "6b9a6abb-6c1c-4238-b2fe-7198ea429a70", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T00:07:12.000Z" - }, - "end": { - "$date": "2022-01-19T00:42:34.000Z" - }, - "events": [ - { - "uuid": "1b02e603-ff7f-43ef-b303-37ae9eff1960", - "start": { - "$date": "2022-01-19T00:07:12.000Z" - }, - "end": { - "$date": "2022-01-19T00:42:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "058c4b42-b711-42c1-8fd7-0e1d40cf7930", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-19T00:18:41.000Z" - }, - "end": { - "$date": "2022-01-19T00:40:02.000Z" - }, - "events": [ - { - "uuid": "e7b58116-5aea-4daa-baae-68303ce6cb7d", - "start": { - "$date": "2022-01-19T00:18:41.000Z" - }, - "end": { - "$date": "2022-01-19T00:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "4a2cb6e9-bc49-46db-b435-1bc428f0c18a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-19T00:25:22.000Z" - }, - "end": { - "$date": "2022-01-19T00:44:38.000Z" - }, - "events": [ - { - "uuid": "6f272ca9-d328-4483-b975-0db31bb7825b", - "start": { - "$date": "2022-01-19T00:25:22.000Z" - }, - "end": { - "$date": "2022-01-19T00:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e11a1213-5d56-4c5b-ad28-cf3028c1a236", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-19T00:49:58.000Z" - }, - "end": { - "$date": "2022-01-19T01:24:14.000Z" - }, - "events": [ - { - "uuid": "2989e727-03fb-4b6d-87ea-7a1560e56350", - "start": { - "$date": "2022-01-19T00:49:58.000Z" - }, - "end": { - "$date": "2022-01-19T01:24:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "918865b7-3221-45cd-a1d2-7ec6918fd8e4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T00:50:00.000Z" - }, - "end": { - "$date": "2022-01-19T01:24:21.000Z" - }, - "events": [ - { - "uuid": "d18ee02d-6239-46ce-a547-b581872ec1fb", - "start": { - "$date": "2022-01-19T00:50:00.000Z" - }, - "end": { - "$date": "2022-01-19T01:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "fed045b3-16bf-4045-a11e-5f07fd16b9df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T00:48:30.000Z" - }, - "end": { - "$date": "2022-01-19T00:54:16.000Z" - }, - "events": [ - { - "uuid": "e3f5a393-5bbc-497f-9159-b7443fa729e8", - "start": { - "$date": "2022-01-19T00:48:30.000Z" - }, - "end": { - "$date": "2022-01-19T00:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "158555bf-ee0f-4d9b-829b-99b98da76df4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-19T00:50:46.000Z" - }, - "end": { - "$date": "2022-01-19T01:13:21.000Z" - }, - "events": [ - { - "uuid": "77a1e64c-cc67-495c-b16d-d4b47b859a1a", - "start": { - "$date": "2022-01-19T00:50:46.000Z" - }, - "end": { - "$date": "2022-01-19T01:13:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4c7bde5e-57f8-4398-9472-34144e0468be", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-19T01:20:26.000Z" - }, - "end": { - "$date": "2022-01-19T05:30:13.000Z" - }, - "events": [ - { - "uuid": "2fb549be-1c28-46ed-bdad-46f377e33b2a", - "start": { - "$date": "2022-01-19T01:20:26.000Z" - }, - "end": { - "$date": "2022-01-19T05:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "15bcb230-f1c2-47c7-9a89-329bb57fa9ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-19T01:29:24.000Z" - }, - "end": { - "$date": "2022-01-19T01:44:06.000Z" - }, - "events": [ - { - "uuid": "61cd276b-77c0-450c-ac97-78eef971a245", - "start": { - "$date": "2022-01-19T01:29:24.000Z" - }, - "end": { - "$date": "2022-01-19T01:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "05a91701-f1e6-4609-95dc-00d50df82e11", - "uuid": "5ccf82c6-c399-4e9c-a950-9a4adacfc3f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T01:29:50.000Z" - }, - "end": { - "$date": "2022-01-19T01:44:23.000Z" - }, - "events": [ - { - "uuid": "49937a28-4a5b-4bf8-835e-f0372da78c33", - "start": { - "$date": "2022-01-19T01:29:50.000Z" - }, - "end": { - "$date": "2022-01-19T01:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "dca45816-157a-4074-b66b-8c9274ac5610", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T02:17:06.000Z" - }, - "end": { - "$date": "2022-01-19T02:17:12.000Z" - }, - "events": [ - { - "uuid": "85a4aac0-3be0-4687-ad88-8c6ea291c6d9", - "start": { - "$date": "2022-01-19T02:17:06.000Z" - }, - "end": { - "$date": "2022-01-19T02:17:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6d5e9de3-fbeb-4b6c-ba3b-0fa5247dae0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T02:17:56.000Z" - }, - "end": { - "$date": "2022-01-19T02:54:39.000Z" - }, - "events": [ - { - "uuid": "4b2372c2-fca7-4cb5-9529-01d49403a32b", - "start": { - "$date": "2022-01-19T02:17:56.000Z" - }, - "end": { - "$date": "2022-01-19T02:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f6a0e1a-ae12-4d33-98de-a499b001a6fb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T02:27:13.000Z" - }, - "end": { - "$date": "2022-01-19T03:10:55.000Z" - }, - "events": [ - { - "uuid": "a0d74386-636f-4297-95c7-2be588369ec1", - "start": { - "$date": "2022-01-19T02:27:13.000Z" - }, - "end": { - "$date": "2022-01-19T03:10:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "67521d78-f6cb-4415-8b2e-e4974ab345be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T02:54:44.000Z" - }, - "end": { - "$date": "2022-01-19T03:17:27.000Z" - }, - "events": [ - { - "uuid": "68b98440-356a-4d87-92d2-4e4091d6966e", - "start": { - "$date": "2022-01-19T02:54:44.000Z" - }, - "end": { - "$date": "2022-01-19T03:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8bec33d1-0b47-408e-853f-26f25c38cabd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-19T02:58:40.000Z" - }, - "end": { - "$date": "2022-01-19T03:00:13.000Z" - }, - "events": [ - { - "uuid": "60f42110-6423-4c25-9c9f-b0b88eda7968", - "start": { - "$date": "2022-01-19T02:58:40.000Z" - }, - "end": { - "$date": "2022-01-19T03:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "fc5aa65d-1e98-4844-88fe-19b26272730a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-19T03:05:51.000Z" - }, - "end": { - "$date": "2022-01-19T05:14:18.000Z" - }, - "events": [ - { - "uuid": "456fdf6a-a03f-4590-960b-6b31d9957b55", - "start": { - "$date": "2022-01-19T03:05:51.000Z" - }, - "end": { - "$date": "2022-01-19T05:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "8c134ae5-42ba-43f4-856e-f7723a82eb71", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T03:34:06.000Z" - }, - "end": { - "$date": "2022-01-19T03:48:19.000Z" - }, - "events": [ - { - "uuid": "e3bb4de4-caa0-4c1b-8d84-3638daffaa10", - "start": { - "$date": "2022-01-19T03:34:06.000Z" - }, - "end": { - "$date": "2022-01-19T03:48:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ec51e29c-f7b0-4cdb-a06b-602d47891a28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T04:02:56.000Z" - }, - "end": { - "$date": "2022-01-19T04:43:31.000Z" - }, - "events": [ - { - "uuid": "de63430b-260a-4939-a967-50f7a5bdeafe", - "start": { - "$date": "2022-01-19T04:02:56.000Z" - }, - "end": { - "$date": "2022-01-19T04:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7e117f4a-9b36-4b58-8150-de64203a7165", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-19T03:36:29.000Z" - }, - "end": { - "$date": "2022-01-19T03:59:57.000Z" - }, - "events": [ - { - "uuid": "bb3f89c4-8889-4556-bf35-b5e78a683433", - "start": { - "$date": "2022-01-19T03:36:29.000Z" - }, - "end": { - "$date": "2022-01-19T03:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d877a1e8-7fc3-4312-be02-3529b839de8d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-19T04:11:47.000Z" - }, - "end": { - "$date": "2022-01-19T04:44:22.000Z" - }, - "events": [ - { - "uuid": "a591b19e-cb15-4ea1-bc3f-316b91945244", - "start": { - "$date": "2022-01-19T04:11:47.000Z" - }, - "end": { - "$date": "2022-01-19T04:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8e9b4d2c-b017-4cdb-a75f-f3606b9c7ff6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-19T04:08:11.000Z" - }, - "end": { - "$date": "2022-01-19T04:51:34.000Z" - }, - "events": [ - { - "uuid": "c9dbda50-e16a-46be-874e-940426c9731f", - "start": { - "$date": "2022-01-19T04:08:11.000Z" - }, - "end": { - "$date": "2022-01-19T04:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9211ae8-24f1-4d9a-b552-41d06b776331", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-19T04:29:46.000Z" - }, - "end": { - "$date": "2022-01-19T04:53:42.000Z" - }, - "events": [ - { - "uuid": "e1a3125b-251d-4cbf-93a6-7ad631a534de", - "start": { - "$date": "2022-01-19T04:29:46.000Z" - }, - "end": { - "$date": "2022-01-19T04:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63f86d86-031d-48d2-97d9-2ac902e3f234", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-19T04:50:03.000Z" - }, - "end": { - "$date": "2022-01-19T05:29:13.000Z" - }, - "events": [ - { - "uuid": "19692e52-d209-4682-bafe-88a16f1239fd", - "start": { - "$date": "2022-01-19T04:50:03.000Z" - }, - "end": { - "$date": "2022-01-19T05:29:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "e01f4ca6-e1e1-4d71-88e9-cf93dc43360d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T04:51:31.000Z" - }, - "end": { - "$date": "2022-01-19T04:58:12.000Z" - }, - "events": [ - { - "uuid": "fab7aadc-9070-42c8-a999-ee46c807b470", - "start": { - "$date": "2022-01-19T04:51:31.000Z" - }, - "end": { - "$date": "2022-01-19T04:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "909b86d2-1cba-49c2-b078-7198035306a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T04:59:17.000Z" - }, - "end": { - "$date": "2022-01-19T05:14:19.000Z" - }, - "events": [ - { - "uuid": "32f8cdfa-7174-4355-b472-f536353f2a7f", - "start": { - "$date": "2022-01-19T04:59:17.000Z" - }, - "end": { - "$date": "2022-01-19T05:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "f666b502-4f73-4b23-96a0-fe9f37da1430", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T05:14:42.000Z" - }, - "end": { - "$date": "2022-01-19T05:24:18.000Z" - }, - "events": [ - { - "uuid": "83675913-9a8e-4278-8796-783560290764", - "start": { - "$date": "2022-01-19T05:14:42.000Z" - }, - "end": { - "$date": "2022-01-19T05:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6996d06-075a-4dc4-8342-11eb347619a1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-19T05:36:09.000Z" - }, - "end": { - "$date": "2022-01-19T05:56:04.000Z" - }, - "events": [ - { - "uuid": "cb134f24-27df-41bd-a7ca-01a58da7049a", - "start": { - "$date": "2022-01-19T05:36:09.000Z" - }, - "end": { - "$date": "2022-01-19T05:56:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "510501ba-10a3-4209-aab0-0946881fdafc", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-19T05:36:03.000Z" - }, - "end": { - "$date": "2022-01-19T05:56:05.000Z" - }, - "events": [ - { - "uuid": "d14ff6ae-aa39-452c-a516-026554e847c2", - "start": { - "$date": "2022-01-19T05:36:03.000Z" - }, - "end": { - "$date": "2022-01-19T05:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1043b553-ffe9-45c1-aea9-6721be53af7d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-19T05:40:54.000Z" - }, - "end": { - "$date": "2022-01-19T06:10:45.000Z" - }, - "events": [ - { - "uuid": "367f4b6e-4181-4dc6-ae8c-e7695dc971bb", - "start": { - "$date": "2022-01-19T05:40:54.000Z" - }, - "end": { - "$date": "2022-01-19T06:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cadf3865-583e-47fb-8c0c-89cb199bf675", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-19T05:59:20.000Z" - }, - "end": { - "$date": "2022-01-19T06:28:07.000Z" - }, - "events": [ - { - "uuid": "96d53c72-6de9-4cad-9a73-f400cca3c79c", - "start": { - "$date": "2022-01-19T05:59:20.000Z" - }, - "end": { - "$date": "2022-01-19T06:28:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9ddc805-fdd0-4217-874e-4dd8244c0d67", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T05:59:18.000Z" - }, - "end": { - "$date": "2022-01-19T06:28:01.000Z" - }, - "events": [ - { - "uuid": "5643cc92-3718-4230-9c6d-0553cea7b38e", - "start": { - "$date": "2022-01-19T05:59:18.000Z" - }, - "end": { - "$date": "2022-01-19T06:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a05f5b91-2b2a-40cf-a435-552882576b35", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-19T05:59:19.000Z" - }, - "end": { - "$date": "2022-01-19T06:28:03.000Z" - }, - "events": [ - { - "uuid": "622f9453-51b8-4698-9f83-943020348718", - "start": { - "$date": "2022-01-19T05:59:19.000Z" - }, - "end": { - "$date": "2022-01-19T06:28:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e2b5330-090f-4393-8553-ff2618eeca72", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-19T05:59:15.000Z" - }, - "end": { - "$date": "2022-01-19T06:27:57.000Z" - }, - "events": [ - { - "uuid": "d2ad4f66-e546-4761-9ca9-769a616066ea", - "start": { - "$date": "2022-01-19T05:59:15.000Z" - }, - "end": { - "$date": "2022-01-19T06:27:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ed8207a-1aa8-4d80-96be-93a13e7919c4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-19T06:30:30.000Z" - }, - "end": { - "$date": "2022-01-19T06:54:12.000Z" - }, - "events": [ - { - "uuid": "c7c94c3f-da34-4d7b-a2a7-8bcf662420fc", - "start": { - "$date": "2022-01-19T06:30:30.000Z" - }, - "end": { - "$date": "2022-01-19T06:54:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c30dd381-baba-43f3-a3cf-2a18b35cc8a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T06:30:23.000Z" - }, - "end": { - "$date": "2022-01-19T06:54:14.000Z" - }, - "events": [ - { - "uuid": "cab7f60a-71b3-4309-b7dd-f939aa2a1233", - "start": { - "$date": "2022-01-19T06:30:23.000Z" - }, - "end": { - "$date": "2022-01-19T06:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "00969c04-3639-4b91-b113-e5eaf2efb145", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-19T06:30:24.000Z" - }, - "end": { - "$date": "2022-01-19T06:54:10.000Z" - }, - "events": [ - { - "uuid": "9ced79b0-d6a6-484e-9b63-fdfbe91daf37", - "start": { - "$date": "2022-01-19T06:30:24.000Z" - }, - "end": { - "$date": "2022-01-19T06:54:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44de686c-d1b0-4281-8ae7-80d6048d7284", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-19T06:56:21.000Z" - }, - "end": { - "$date": "2022-01-19T07:13:33.000Z" - }, - "events": [ - { - "uuid": "3231c3f6-9c4a-48bd-9bd7-c855b7df5ed9", - "start": { - "$date": "2022-01-19T06:56:21.000Z" - }, - "end": { - "$date": "2022-01-19T07:13:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a89ec1e-c6bb-49f5-bc23-0cb0c4f7cdf0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-19T06:56:20.000Z" - }, - "end": { - "$date": "2022-01-19T07:13:30.000Z" - }, - "events": [ - { - "uuid": "30ed07e3-9207-4c26-b9ef-daab5afd83e5", - "start": { - "$date": "2022-01-19T06:56:20.000Z" - }, - "end": { - "$date": "2022-01-19T07:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f28f97b9-db08-4a9b-a3b1-4bd5b63874a2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T06:56:19.000Z" - }, - "end": { - "$date": "2022-01-19T07:13:39.000Z" - }, - "events": [ - { - "uuid": "6fd51b75-e316-408f-b870-c20753daeb65", - "start": { - "$date": "2022-01-19T06:56:19.000Z" - }, - "end": { - "$date": "2022-01-19T07:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a5308de-a5d6-4ddf-afd6-e2789269ca89", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-19T07:20:35.000Z" - }, - "end": { - "$date": "2022-01-19T07:55:31.000Z" - }, - "events": [ - { - "uuid": "a34289b3-0923-43fd-8fc2-86c113828ab7", - "start": { - "$date": "2022-01-19T07:20:35.000Z" - }, - "end": { - "$date": "2022-01-19T07:55:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "179e4240-6896-415a-abd1-fd0d6027b4ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-19T07:51:39.000Z" - }, - "end": { - "$date": "2022-01-19T07:55:38.000Z" - }, - "events": [ - { - "uuid": "97e2ee8b-1ab4-446e-87e2-c20dca49fd1e", - "start": { - "$date": "2022-01-19T07:51:39.000Z" - }, - "end": { - "$date": "2022-01-19T07:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "12ca5a71-5893-462a-b733-380d47733dd2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-19T09:08:33.000Z" - }, - "end": { - "$date": "2022-01-19T09:10:52.000Z" - }, - "events": [ - { - "uuid": "a6b7345b-531c-4d75-97e8-c0faac994689", - "start": { - "$date": "2022-01-19T09:08:33.000Z" - }, - "end": { - "$date": "2022-01-19T09:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "7afeb3a5-2bb9-4a43-bed1-841e03d6101c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-19T10:14:55.000Z" - }, - "end": { - "$date": "2022-01-19T12:20:10.000Z" - }, - "events": [ - { - "uuid": "87479c91-da52-42b5-a1ed-8e5e9514df84", - "start": { - "$date": "2022-01-19T10:14:55.000Z" - }, - "end": { - "$date": "2022-01-19T12:20:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "bd3df373-676c-447e-8c1d-a2f6655eb391", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-19T15:38:08.000Z" - }, - "end": { - "$date": "2022-01-19T16:03:24.000Z" - }, - "events": [ - { - "uuid": "8386c9f6-3022-4076-9123-b70b84a1027a", - "start": { - "$date": "2022-01-19T15:38:08.000Z" - }, - "end": { - "$date": "2022-01-19T16:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7c4bfae9-d617-428b-aa13-93e52e5f0252", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T16:49:36.000Z" - }, - "end": { - "$date": "2022-01-19T19:10:24.000Z" - }, - "events": [ - { - "uuid": "190a8945-a1ec-499d-b304-811a46f1068b", - "start": { - "$date": "2022-01-19T16:49:36.000Z" - }, - "end": { - "$date": "2022-01-19T19:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "e1b07829-0194-47ba-af49-f51dbd112c11", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T19:11:09.000Z" - }, - "end": { - "$date": "2022-01-19T19:57:06.000Z" - }, - "events": [ - { - "uuid": "245c8fce-33c9-4b52-8c86-5b10b54673f9", - "start": { - "$date": "2022-01-19T19:11:09.000Z" - }, - "end": { - "$date": "2022-01-19T19:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e2659ac7-7d25-498f-9652-249926d54502", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-19T19:42:13.000Z" - }, - "end": { - "$date": "2022-01-19T20:14:56.000Z" - }, - "events": [ - { - "uuid": "4eb78684-7021-4fa5-915e-4b851d711b56", - "start": { - "$date": "2022-01-19T19:42:13.000Z" - }, - "end": { - "$date": "2022-01-19T20:14:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "5ffd050d-645d-4775-b6a9-3f33c5e357aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-19T23:49:15.000Z" - }, - "end": { - "$date": "2022-01-20T02:55:37.000Z" - }, - "events": [ - { - "uuid": "33c5bace-7465-44f4-a0f2-5aea32671c1c", - "start": { - "$date": "2022-01-19T23:49:15.000Z" - }, - "end": { - "$date": "2022-01-20T02:55:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a646bd42-2ab4-4542-a56a-5518213b12c0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-20T00:49:41.000Z" - }, - "end": { - "$date": "2022-01-20T03:52:26.000Z" - }, - "events": [ - { - "uuid": "4e5e35ad-d853-4b8e-8504-0c7e9003076d", - "start": { - "$date": "2022-01-20T00:49:41.000Z" - }, - "end": { - "$date": "2022-01-20T03:52:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "08e2dbb7-ec01-4cf5-bc12-30f5c518d1e1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-20T01:15:41.000Z" - }, - "end": { - "$date": "2022-01-20T01:17:01.000Z" - }, - "events": [ - { - "uuid": "f96fb669-21ef-45ca-b220-2d33ee26cdd0", - "start": { - "$date": "2022-01-20T01:15:41.000Z" - }, - "end": { - "$date": "2022-01-20T01:17:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e28bd96c-b2c0-4375-b26e-af0a89ed404f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-20T01:22:26.000Z" - }, - "end": { - "$date": "2022-01-20T01:49:01.000Z" - }, - "events": [ - { - "uuid": "3ea0718e-f369-4e21-a73d-95770e5884e5", - "start": { - "$date": "2022-01-20T01:22:26.000Z" - }, - "end": { - "$date": "2022-01-20T01:49:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90f566be-d2b8-4e75-8947-cef5cdaac36f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-20T01:54:47.000Z" - }, - "end": { - "$date": "2022-01-20T02:20:17.000Z" - }, - "events": [ - { - "uuid": "24877a59-a51c-4766-a927-dee1fb9869da", - "start": { - "$date": "2022-01-20T01:54:47.000Z" - }, - "end": { - "$date": "2022-01-20T02:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8e9cb08d-5cc1-4bde-9e95-9a943dd0856e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-20T02:17:50.000Z" - }, - "end": { - "$date": "2022-01-20T02:34:46.000Z" - }, - "events": [ - { - "uuid": "ae976812-7fd5-4e26-ab23-cb419707e416", - "start": { - "$date": "2022-01-20T02:17:50.000Z" - }, - "end": { - "$date": "2022-01-20T02:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eaf1cbd1-0ab1-49a0-af42-6ebb9abfcde0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-20T02:33:43.000Z" - }, - "end": { - "$date": "2022-01-20T03:06:09.000Z" - }, - "events": [ - { - "uuid": "44e91365-f133-47de-8200-8f04b42406f6", - "start": { - "$date": "2022-01-20T02:33:43.000Z" - }, - "end": { - "$date": "2022-01-20T03:06:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf266352-9b80-4458-bac4-d6b3952680ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-20T02:29:23.000Z" - }, - "end": { - "$date": "2022-01-20T02:52:31.000Z" - }, - "events": [ - { - "uuid": "6fcb9647-1754-4220-b5bd-a1e0a513db25", - "start": { - "$date": "2022-01-20T02:29:23.000Z" - }, - "end": { - "$date": "2022-01-20T02:52:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0922f670-f3a0-4ece-9cc0-7c34263f3fe3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-20T02:33:35.000Z" - }, - "end": { - "$date": "2022-01-20T03:06:11.000Z" - }, - "events": [ - { - "uuid": "abb1f811-e26f-4d4c-9812-68eeba3018c6", - "start": { - "$date": "2022-01-20T02:33:35.000Z" - }, - "end": { - "$date": "2022-01-20T03:06:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ff88f0c0-1fec-4987-ae9f-58791c45da84", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-20T02:38:51.000Z" - }, - "end": { - "$date": "2022-01-20T03:39:08.000Z" - }, - "events": [ - { - "uuid": "01ed741c-a9b8-447c-9a2a-68e07aadf203", - "start": { - "$date": "2022-01-20T02:38:51.000Z" - }, - "end": { - "$date": "2022-01-20T03:10:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "181341d3-b308-4b06-a575-a2f526ec58c9", - "start": { - "$date": "2022-01-20T03:10:51.000Z" - }, - "end": { - "$date": "2022-01-20T03:16:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e262fea3-66b4-4e33-b280-9c53892402c0", - "start": { - "$date": "2022-01-20T03:16:51.000Z" - }, - "end": { - "$date": "2022-01-20T03:26:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c329cb75-0e30-448a-a5fc-43864a9330c1", - "start": { - "$date": "2022-01-20T03:26:51.000Z" - }, - "end": { - "$date": "2022-01-20T03:30:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "181b66eb-04ea-43f8-a4ad-c542cd5813c1", - "start": { - "$date": "2022-01-20T03:30:51.000Z" - }, - "end": { - "$date": "2022-01-20T03:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb10defa-b37e-4fb5-b7c6-6f3e0fb94b2a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-20T02:55:09.000Z" - }, - "end": { - "$date": "2022-01-20T03:25:40.000Z" - }, - "events": [ - { - "uuid": "cbec2e19-202b-47a8-a07a-016e80e006ee", - "start": { - "$date": "2022-01-20T02:55:09.000Z" - }, - "end": { - "$date": "2022-01-20T03:25:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "08dd7d26-12e6-412b-8020-ab98cb4919f1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-20T03:06:27.000Z" - }, - "end": { - "$date": "2022-01-20T06:00:21.000Z" - }, - "events": [ - { - "uuid": "da16a504-198b-4459-8426-20cbf0e85f56", - "start": { - "$date": "2022-01-20T03:06:27.000Z" - }, - "end": { - "$date": "2022-01-20T06:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "30fa5056-5514-4285-9b0c-8b58de929f42", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-20T03:09:57.000Z" - }, - "end": { - "$date": "2022-01-20T03:12:02.000Z" - }, - "events": [ - { - "uuid": "721b7431-67ae-4339-ac7b-f766d2bd7ca5", - "start": { - "$date": "2022-01-20T03:09:57.000Z" - }, - "end": { - "$date": "2022-01-20T03:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "8ff34811-cec8-4e6d-af3f-021244858a12", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-20T03:12:07.000Z" - }, - "end": { - "$date": "2022-01-20T03:22:43.000Z" - }, - "events": [ - { - "uuid": "d4d433fc-5bf8-437f-9a15-8381ebc1eee5", - "start": { - "$date": "2022-01-20T03:12:07.000Z" - }, - "end": { - "$date": "2022-01-20T03:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7c277159-d9e5-4895-92f1-b9ea76eb5341", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-20T03:12:56.000Z" - }, - "end": { - "$date": "2022-01-20T03:49:52.000Z" - }, - "events": [ - { - "uuid": "da7076c8-21d3-4e7e-9aef-fb8fdb828a84", - "start": { - "$date": "2022-01-20T03:12:56.000Z" - }, - "end": { - "$date": "2022-01-20T03:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "704594c7-3452-4f12-bfdf-15e4bfc75a3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T03:23:50.000Z" - }, - "end": { - "$date": "2022-01-20T03:40:11.000Z" - }, - "events": [ - { - "uuid": "14a642f5-63e4-431a-b115-4ce02918aad9", - "start": { - "$date": "2022-01-20T03:23:50.000Z" - }, - "end": { - "$date": "2022-01-20T03:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3567342d-1691-49a0-b694-030be58c0c2e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-20T03:27:00.000Z" - }, - "end": { - "$date": "2022-01-20T04:09:35.000Z" - }, - "events": [ - { - "uuid": "263710ec-c7ab-4fdf-a59e-18ee672bdf12", - "start": { - "$date": "2022-01-20T03:27:00.000Z" - }, - "end": { - "$date": "2022-01-20T04:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "872b2bfd-c93a-476d-88f9-52582469d4fd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-20T03:38:28.000Z" - }, - "end": { - "$date": "2022-01-20T04:14:44.000Z" - }, - "events": [ - { - "uuid": "ae2be9d9-2f53-4693-8c8e-b7cbae14fe26", - "start": { - "$date": "2022-01-20T03:38:28.000Z" - }, - "end": { - "$date": "2022-01-20T04:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "860622ce-7e4c-497e-b384-8da18a66bdfd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-20T03:39:22.000Z" - }, - "end": { - "$date": "2022-01-20T06:35:43.000Z" - }, - "events": [ - { - "uuid": "f2f99b12-b6fd-4f25-9139-9f7b7f33729a", - "start": { - "$date": "2022-01-20T03:39:22.000Z" - }, - "end": { - "$date": "2022-01-20T06:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d5bfa453-23bd-42c9-93bd-8b08ed3eb91a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T03:40:20.000Z" - }, - "end": { - "$date": "2022-01-20T04:50:21.000Z" - }, - "events": [ - { - "uuid": "e257837f-5463-4f35-9149-ed4b6380ac79", - "start": { - "$date": "2022-01-20T03:40:20.000Z" - }, - "end": { - "$date": "2022-01-20T04:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3446aedb-e194-49fb-81d0-86e6eb3c9c0a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-20T04:10:00.000Z" - }, - "end": { - "$date": "2022-01-20T04:47:56.000Z" - }, - "events": [ - { - "uuid": "9c136702-766c-479d-ae01-9bcd45fa1ee1", - "start": { - "$date": "2022-01-20T04:10:00.000Z" - }, - "end": { - "$date": "2022-01-20T04:47:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c6d8d85-70c2-499d-ba6f-0784bb161849", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-20T04:19:13.000Z" - }, - "end": { - "$date": "2022-01-20T04:49:00.000Z" - }, - "events": [ - { - "uuid": "7751a358-54f0-42c7-bbe8-bc0cfc709a58", - "start": { - "$date": "2022-01-20T04:19:13.000Z" - }, - "end": { - "$date": "2022-01-20T04:49:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06669762-cade-4077-825f-f62bb41e5aa2", - "uuid": "9eb8c5ab-e01c-43ab-9d7d-8e3fa1a1f630", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-20T04:16:25.000Z" - }, - "end": { - "$date": "2022-01-20T04:23:15.000Z" - }, - "events": [ - { - "uuid": "b717753f-1c1e-4078-aab4-58add888ef49", - "start": { - "$date": "2022-01-20T04:16:25.000Z" - }, - "end": { - "$date": "2022-01-20T04:23:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f8c9ec5f-bded-41a4-9737-611075e7eda1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-20T04:32:04.000Z" - }, - "end": { - "$date": "2022-01-20T04:44:29.000Z" - }, - "events": [ - { - "uuid": "ac2e5366-2dfa-44b1-b955-c74b0c0e49c7", - "start": { - "$date": "2022-01-20T04:32:04.000Z" - }, - "end": { - "$date": "2022-01-20T04:44:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b2ed02a5-c070-4c3a-bf2f-6bb44abf1e12", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T04:50:38.000Z" - }, - "end": { - "$date": "2022-01-20T06:00:30.000Z" - }, - "events": [ - { - "uuid": "4633517c-edb3-47da-a749-fcc5998ee6b0", - "start": { - "$date": "2022-01-20T04:50:38.000Z" - }, - "end": { - "$date": "2022-01-20T06:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2053046b-30fd-4f77-9ebb-e20813c81e34", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-20T04:55:14.000Z" - }, - "end": { - "$date": "2022-01-20T05:30:05.000Z" - }, - "events": [ - { - "uuid": "9e37b7e0-240a-48ca-b6b0-1eccca766c2c", - "start": { - "$date": "2022-01-20T04:55:14.000Z" - }, - "end": { - "$date": "2022-01-20T05:30:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5babade-9ff7-4f67-a737-314ffa1e25d5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-20T05:35:20.000Z" - }, - "end": { - "$date": "2022-01-20T06:04:21.000Z" - }, - "events": [ - { - "uuid": "91040754-36a0-4b7a-bff6-5555f80f24cc", - "start": { - "$date": "2022-01-20T05:35:20.000Z" - }, - "end": { - "$date": "2022-01-20T06:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7777f0b3-fca8-4368-8225-2f153adc5fb1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-20T06:07:05.000Z" - }, - "end": { - "$date": "2022-01-20T06:31:17.000Z" - }, - "events": [ - { - "uuid": "f0ca282a-9c77-49b6-9f40-473e65163a99", - "start": { - "$date": "2022-01-20T06:07:05.000Z" - }, - "end": { - "$date": "2022-01-20T06:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "7b4f42cf-e3de-4a7e-b034-4c8713482cdb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T06:41:39.000Z" - }, - "end": { - "$date": "2022-01-20T07:13:27.000Z" - }, - "events": [ - { - "uuid": "c8580adf-5c5c-4f83-9818-a4c68aeef7a7", - "start": { - "$date": "2022-01-20T06:41:39.000Z" - }, - "end": { - "$date": "2022-01-20T07:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d11bf54f-ae9d-4436-96bf-6b41beda4e81", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T18:10:31.000Z" - }, - "end": { - "$date": "2022-01-20T19:45:11.000Z" - }, - "events": [ - { - "uuid": "afb8f074-a6e2-4364-bb6b-82378f96c2f3", - "start": { - "$date": "2022-01-20T18:10:31.000Z" - }, - "end": { - "$date": "2022-01-20T19:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b140fedc-3473-4d0e-8ad9-1da583effb9a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T19:47:16.000Z" - }, - "end": { - "$date": "2022-01-20T19:52:56.000Z" - }, - "events": [ - { - "uuid": "359a9d11-864b-4536-8a5b-a7ea3768d3b7", - "start": { - "$date": "2022-01-20T19:47:16.000Z" - }, - "end": { - "$date": "2022-01-20T19:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fe6e5b5f-9145-4d34-adb6-74f1dd61771a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T20:56:44.000Z" - }, - "end": { - "$date": "2022-01-20T21:06:44.000Z" - }, - "events": [ - { - "uuid": "1266299d-1ee1-4763-982d-82b9e9fd4375", - "start": { - "$date": "2022-01-20T20:56:44.000Z" - }, - "end": { - "$date": "2022-01-20T21:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4aed104a-d97b-4f2f-8572-65a4f6854cd4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-20T21:08:05.000Z" - }, - "end": { - "$date": "2022-01-20T21:35:02.000Z" - }, - "events": [ - { - "uuid": "38d95f19-e64a-447a-903b-c2828ba42468", - "start": { - "$date": "2022-01-20T21:08:05.000Z" - }, - "end": { - "$date": "2022-01-20T21:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "9edfb9d7-0ec2-438f-945b-896a476707c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T22:19:44.000Z" - }, - "end": { - "$date": "2022-01-20T22:29:35.000Z" - }, - "events": [ - { - "uuid": "5e96fb7f-c2d4-49f8-81d3-f996953a1d82", - "start": { - "$date": "2022-01-20T22:19:44.000Z" - }, - "end": { - "$date": "2022-01-20T22:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "53958c4d-63d0-4518-903b-7b1ad52e7f9a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T22:30:15.000Z" - }, - "end": { - "$date": "2022-01-20T22:44:16.000Z" - }, - "events": [ - { - "uuid": "335a4850-5cff-45ff-a6fe-2e58f28bc687", - "start": { - "$date": "2022-01-20T22:30:15.000Z" - }, - "end": { - "$date": "2022-01-20T22:44:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9eb8c30b-58b3-4d29-b3d7-1ed1afd79985", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-20T23:44:22.000Z" - }, - "end": { - "$date": "2022-01-20T23:44:23.000Z" - }, - "events": [ - { - "uuid": "de92001e-8004-45e7-bbc5-f78aeea853da", - "start": { - "$date": "2022-01-20T23:44:22.000Z" - }, - "end": { - "$date": "2022-01-20T23:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "87e4f42e-63d0-4bb7-bd02-623b78526c8d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-20T23:04:00.000Z" - }, - "end": { - "$date": "2022-01-20T23:18:06.000Z" - }, - "events": [ - { - "uuid": "09271e19-d1c3-4e54-a4e1-6ca352dd4943", - "start": { - "$date": "2022-01-20T23:04:00.000Z" - }, - "end": { - "$date": "2022-01-20T23:18:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "a234372e-7851-4cba-b0c1-cf3acb484ef7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T23:09:20.000Z" - }, - "end": { - "$date": "2022-01-20T23:35:31.000Z" - }, - "events": [ - { - "uuid": "3fe8aa7e-0697-4602-9e9f-d76eb21ff7ca", - "start": { - "$date": "2022-01-20T23:09:20.000Z" - }, - "end": { - "$date": "2022-01-20T23:35:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5bf172b-2b9f-48d8-a586-a91f62bf22a1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-20T23:48:12.000Z" - }, - "end": { - "$date": "2022-01-21T00:05:28.000Z" - }, - "events": [ - { - "uuid": "7dcc0ab6-5d88-47f7-9c51-8dbc296e4530", - "start": { - "$date": "2022-01-20T23:48:12.000Z" - }, - "end": { - "$date": "2022-01-21T00:05:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "ad296fd8-5fb3-46ef-9bdb-65c3484a85d9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-20T23:45:22.000Z" - }, - "end": { - "$date": "2022-01-21T00:08:03.000Z" - }, - "events": [ - { - "uuid": "08c374f5-e4dc-4eaa-bab3-19b612c137e9", - "start": { - "$date": "2022-01-20T23:45:22.000Z" - }, - "end": { - "$date": "2022-01-21T00:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "5c3d48b9-9c05-4096-8ad7-b1f449512ed2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T00:08:38.000Z" - }, - "end": { - "$date": "2022-01-21T00:42:05.000Z" - }, - "events": [ - { - "uuid": "5bd410cb-ed00-4a3c-90ab-5745c17019ad", - "start": { - "$date": "2022-01-21T00:08:38.000Z" - }, - "end": { - "$date": "2022-01-21T00:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "20bd1fbb-e6ba-47fc-bfea-0d07f8eb8c3a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-21T00:33:09.000Z" - }, - "end": { - "$date": "2022-01-21T00:36:05.000Z" - }, - "events": [ - { - "uuid": "f29bfb71-44a2-4380-8c5e-3d45c7e20a0a", - "start": { - "$date": "2022-01-21T00:33:09.000Z" - }, - "end": { - "$date": "2022-01-21T00:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a95ddd5f-c72d-4d8b-ac33-976fb3f8ee41", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-21T01:00:02.000Z" - }, - "end": { - "$date": "2022-01-21T01:00:43.000Z" - }, - "events": [ - { - "uuid": "4d1a03a2-2d58-4bfc-a5e7-10bfff3e9cd6", - "start": { - "$date": "2022-01-21T01:00:02.000Z" - }, - "end": { - "$date": "2022-01-21T01:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "8f9086d2-8a72-4815-bd2b-889628600352", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T00:48:05.000Z" - }, - "end": { - "$date": "2022-01-21T01:24:31.000Z" - }, - "events": [ - { - "uuid": "ae22b0f2-0e9d-452e-8b2e-7495561be69e", - "start": { - "$date": "2022-01-21T00:48:05.000Z" - }, - "end": { - "$date": "2022-01-21T01:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84b13620-93ed-44cf-84ba-c80641d864aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-21T01:18:58.000Z" - }, - "end": { - "$date": "2022-01-21T02:00:10.000Z" - }, - "events": [ - { - "uuid": "eb90db94-0067-4777-82f2-720464b5a9e6", - "start": { - "$date": "2022-01-21T01:18:58.000Z" - }, - "end": { - "$date": "2022-01-21T02:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "58051762-a3fe-4694-b8f2-c422d545a5d3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T01:27:41.000Z" - }, - "end": { - "$date": "2022-01-21T01:47:12.000Z" - }, - "events": [ - { - "uuid": "3a2a4e7b-8556-4f32-8fd9-00ceb3da917a", - "start": { - "$date": "2022-01-21T01:27:41.000Z" - }, - "end": { - "$date": "2022-01-21T01:47:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "5459d37d-444a-44e3-a3cd-8dbf497447da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T01:53:27.000Z" - }, - "end": { - "$date": "2022-01-21T03:04:19.000Z" - }, - "events": [ - { - "uuid": "f7992e81-5499-470f-9ab4-53ba0871a66c", - "start": { - "$date": "2022-01-21T01:53:27.000Z" - }, - "end": { - "$date": "2022-01-21T03:04:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cac63003-1320-447f-b00e-af80b686c0c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-21T02:00:50.000Z" - }, - "end": { - "$date": "2022-01-21T02:02:21.000Z" - }, - "events": [ - { - "uuid": "c1d51c4d-9e7e-4f32-aa0f-3aed92fe0458", - "start": { - "$date": "2022-01-21T02:00:50.000Z" - }, - "end": { - "$date": "2022-01-21T02:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b24ccfa7-40c5-4792-a9b6-31432cfc6ecc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-21T02:02:36.000Z" - }, - "end": { - "$date": "2022-01-21T02:18:37.000Z" - }, - "events": [ - { - "uuid": "5b55355c-0e27-42f8-8144-caf3e801ebf4", - "start": { - "$date": "2022-01-21T02:02:36.000Z" - }, - "end": { - "$date": "2022-01-21T02:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "53917633-2b68-4354-a165-2f6c73d16886", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-21T02:24:11.000Z" - }, - "end": { - "$date": "2022-01-21T07:03:24.000Z" - }, - "events": [ - { - "uuid": "68a3cb86-71f9-41be-b7e2-639ac2b231bc", - "start": { - "$date": "2022-01-21T02:24:11.000Z" - }, - "end": { - "$date": "2022-01-21T05:02:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e3c823f-e011-48e0-9b30-255a323948c5", - "start": { - "$date": "2022-01-21T05:02:11.000Z" - }, - "end": { - "$date": "2022-01-21T05:07:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fe1c2ab2-ac09-41c9-8c9b-e02bc70018f7", - "start": { - "$date": "2022-01-21T05:07:11.000Z" - }, - "end": { - "$date": "2022-01-21T07:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "85cee4f7-4a49-42af-8cc8-65d96675174a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-21T02:25:08.000Z" - }, - "end": { - "$date": "2022-01-21T07:21:34.000Z" - }, - "events": [ - { - "uuid": "0cb370c1-de21-4c88-93ae-b2b0d3bacc2f", - "start": { - "$date": "2022-01-21T02:25:08.000Z" - }, - "end": { - "$date": "2022-01-21T07:21:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4f053c31-97a2-412d-8784-b74868f8844e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-21T02:25:54.000Z" - }, - "end": { - "$date": "2022-01-21T03:47:46.000Z" - }, - "events": [ - { - "uuid": "75d0e737-a07a-4383-ad93-de167f71d0f2", - "start": { - "$date": "2022-01-21T02:25:54.000Z" - }, - "end": { - "$date": "2022-01-21T03:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "7a227274-7b69-4d41-aef5-f3d2b8236668", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-21T03:11:30.000Z" - }, - "end": { - "$date": "2022-01-21T06:33:52.000Z" - }, - "events": [ - { - "uuid": "accfbdb4-feb7-47e6-abef-03b0782b63e1", - "start": { - "$date": "2022-01-21T03:11:30.000Z" - }, - "end": { - "$date": "2022-01-21T06:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "531a91ca-d3c3-472e-876a-528e7c09ca61", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-21T02:51:39.000Z" - }, - "end": { - "$date": "2022-01-21T04:00:46.000Z" - }, - "events": [ - { - "uuid": "4290683f-799d-4583-86d4-158072046a11", - "start": { - "$date": "2022-01-21T02:51:39.000Z" - }, - "end": { - "$date": "2022-01-21T04:00:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b310207-4090-4383-8cd9-ba3e7b1ccac6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-21T03:45:25.000Z" - }, - "end": { - "$date": "2022-01-21T03:45:35.000Z" - }, - "events": [ - { - "uuid": "6b304750-10d1-4b82-8310-18ca3b2c7f6f", - "start": { - "$date": "2022-01-21T03:45:25.000Z" - }, - "end": { - "$date": "2022-01-21T03:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5cbfc6f0-f3ef-43ac-a93c-2895545a33e2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-21T03:28:17.000Z" - }, - "end": { - "$date": "2022-01-21T06:21:52.000Z" - }, - "events": [ - { - "uuid": "f1f5c89e-d19b-4586-8251-94eae6188658", - "start": { - "$date": "2022-01-21T03:28:17.000Z" - }, - "end": { - "$date": "2022-01-21T06:21:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaef1425-7bc3-4deb-8d28-dac7443c442a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-21T03:53:34.000Z" - }, - "end": { - "$date": "2022-01-21T04:22:19.000Z" - }, - "events": [ - { - "uuid": "0f5db391-abe3-462f-983d-6f3e3438f3ba", - "start": { - "$date": "2022-01-21T03:53:34.000Z" - }, - "end": { - "$date": "2022-01-21T04:22:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3afcf4d-008d-4123-910b-3aaec78c370f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T03:53:35.000Z" - }, - "end": { - "$date": "2022-01-21T04:22:20.000Z" - }, - "events": [ - { - "uuid": "ae195c84-a16b-4a95-bdbf-431582f8fd0e", - "start": { - "$date": "2022-01-21T03:53:35.000Z" - }, - "end": { - "$date": "2022-01-21T04:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2e86c9f-4cb8-49ed-89ae-f339cbc6ccab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-21T04:22:21.000Z" - }, - "end": { - "$date": "2022-01-21T04:22:28.000Z" - }, - "events": [ - { - "uuid": "93ff7565-fcec-4ebc-975d-e84475effaac", - "start": { - "$date": "2022-01-21T04:22:21.000Z" - }, - "end": { - "$date": "2022-01-21T04:22:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "13831fe1-04f2-4675-b060-8185a94f4a2e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T03:56:16.000Z" - }, - "end": { - "$date": "2022-01-21T04:11:44.000Z" - }, - "events": [ - { - "uuid": "c291c230-5ea3-4790-bae1-12b81a44abb1", - "start": { - "$date": "2022-01-21T03:56:16.000Z" - }, - "end": { - "$date": "2022-01-21T04:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ad5b990-eae6-4a0b-85c0-5137989a580f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-21T04:26:20.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:19.000Z" - }, - "events": [ - { - "uuid": "cf9114b9-e8e7-4ba5-800d-8e614e90a47f", - "start": { - "$date": "2022-01-21T04:26:20.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "37a14f2f-0bd9-47ee-b4f9-e92c6b179f7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-21T04:26:17.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:07.000Z" - }, - "events": [ - { - "uuid": "ee6266f3-9c0d-4a50-a1d9-9e29ffc7d976", - "start": { - "$date": "2022-01-21T04:26:17.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e629cac3-2c9e-4402-9e4b-47bd815471c3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T04:26:14.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:14.000Z" - }, - "events": [ - { - "uuid": "29d7de00-1e9f-4161-879a-de58f52d803c", - "start": { - "$date": "2022-01-21T04:26:14.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcf11b84-e98d-48fd-9405-76c4e493f88c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T04:26:10.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:11.000Z" - }, - "events": [ - { - "uuid": "7a7821dc-ec98-4f32-a9e3-4ae4570e19ea", - "start": { - "$date": "2022-01-21T04:26:10.000Z" - }, - "end": { - "$date": "2022-01-21T04:54:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06957acf-7a13-45a1-beb1-fd704c53ea4b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T04:59:01.000Z" - }, - "end": { - "$date": "2022-01-21T05:21:37.000Z" - }, - "events": [ - { - "uuid": "8d403fce-f493-4581-a963-4fd326afaf5c", - "start": { - "$date": "2022-01-21T04:59:01.000Z" - }, - "end": { - "$date": "2022-01-21T05:21:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0886220f-c59f-47ee-8679-d9be1e3a0fda", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T04:59:04.000Z" - }, - "end": { - "$date": "2022-01-21T05:21:36.000Z" - }, - "events": [ - { - "uuid": "139b559c-0841-4978-95d8-39b90efdaeef", - "start": { - "$date": "2022-01-21T04:59:04.000Z" - }, - "end": { - "$date": "2022-01-21T05:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "f2eeaa8c-ee0d-4e6b-a606-73e2efb75836", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T05:06:00.000Z" - }, - "end": { - "$date": "2022-01-21T05:45:12.000Z" - }, - "events": [ - { - "uuid": "36842bb2-f547-4f62-97c8-d7f0e0f06f6a", - "start": { - "$date": "2022-01-21T05:06:00.000Z" - }, - "end": { - "$date": "2022-01-21T05:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e83da9e-bfbc-4495-b5c1-1e464af535f7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T05:23:47.000Z" - }, - "end": { - "$date": "2022-01-21T05:40:12.000Z" - }, - "events": [ - { - "uuid": "b3872a8c-bd69-44cc-8aa0-2c95fde398c8", - "start": { - "$date": "2022-01-21T05:23:47.000Z" - }, - "end": { - "$date": "2022-01-21T05:40:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fecb2419-e59b-4826-86aa-ca2210dfa3cd", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T05:23:45.000Z" - }, - "end": { - "$date": "2022-01-21T05:40:06.000Z" - }, - "events": [ - { - "uuid": "b8e9b80e-f257-4af7-ab60-6c59d06918e2", - "start": { - "$date": "2022-01-21T05:23:45.000Z" - }, - "end": { - "$date": "2022-01-21T05:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "feb21a5c-f708-436d-aec1-372ef11a4f35", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T05:41:57.000Z" - }, - "end": { - "$date": "2022-01-21T05:54:28.000Z" - }, - "events": [ - { - "uuid": "9a86f9a9-e790-4ebb-a3f7-9c1d3e18cf79", - "start": { - "$date": "2022-01-21T05:41:57.000Z" - }, - "end": { - "$date": "2022-01-21T05:54:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4242be67-7cd7-4bd0-aa56-1062f8a04d85", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T05:41:50.000Z" - }, - "end": { - "$date": "2022-01-21T05:54:29.000Z" - }, - "events": [ - { - "uuid": "5c47edb5-579c-4c80-8c54-8cbf273df828", - "start": { - "$date": "2022-01-21T05:41:50.000Z" - }, - "end": { - "$date": "2022-01-21T05:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b542e0fe-9b05-4b28-8dbc-bf06849fcc21", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T05:45:17.000Z" - }, - "end": { - "$date": "2022-01-21T06:48:26.000Z" - }, - "events": [ - { - "uuid": "ff17dae6-8f14-4853-9c01-b60b55a08cc0", - "start": { - "$date": "2022-01-21T05:45:17.000Z" - }, - "end": { - "$date": "2022-01-21T06:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "830f78d2-09fe-418c-a4f7-0a35a00ec416", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-21T05:46:25.000Z" - }, - "end": { - "$date": "2022-01-21T06:48:47.000Z" - }, - "events": [ - { - "uuid": "9fe7ac8f-464f-4155-89a1-d2b77d5c0e8a", - "start": { - "$date": "2022-01-21T05:46:25.000Z" - }, - "end": { - "$date": "2022-01-21T06:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fbc5d49-a638-4b54-9f22-5eb80e62da03", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T05:56:32.000Z" - }, - "end": { - "$date": "2022-01-21T06:15:13.000Z" - }, - "events": [ - { - "uuid": "1df8141f-e5a4-4e19-a0e1-ef0289b0a89a", - "start": { - "$date": "2022-01-21T05:56:32.000Z" - }, - "end": { - "$date": "2022-01-21T06:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c401e25-f4ad-4cf0-b73e-1eb58888f2d5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T05:56:36.000Z" - }, - "end": { - "$date": "2022-01-21T06:15:14.000Z" - }, - "events": [ - { - "uuid": "01bf7665-c2ce-4ada-b8ed-874ab6f1949b", - "start": { - "$date": "2022-01-21T05:56:36.000Z" - }, - "end": { - "$date": "2022-01-21T06:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "118477cd-b975-4390-900c-88ac07274e08", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-21T06:17:33.000Z" - }, - "end": { - "$date": "2022-01-21T06:42:03.000Z" - }, - "events": [ - { - "uuid": "211d2d32-53bf-4c81-a07a-d6f9279f39a6", - "start": { - "$date": "2022-01-21T06:17:33.000Z" - }, - "end": { - "$date": "2022-01-21T06:42:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65fb46e8-7a33-4635-ae72-a63326353647", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-21T06:17:31.000Z" - }, - "end": { - "$date": "2022-01-21T06:42:07.000Z" - }, - "events": [ - { - "uuid": "50c8f26b-db98-46af-99c5-2f24ed9fed89", - "start": { - "$date": "2022-01-21T06:17:31.000Z" - }, - "end": { - "$date": "2022-01-21T06:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1293994d-3b1d-4a9d-959a-f10fb0ba0e3c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-21T18:05:19.000Z" - }, - "end": { - "$date": "2022-01-21T18:35:18.000Z" - }, - "events": [ - { - "uuid": "278abd22-a64d-44b5-a1ee-50ab854ff23c", - "start": { - "$date": "2022-01-21T18:05:19.000Z" - }, - "end": { - "$date": "2022-01-21T18:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38fe3ab1-1b13-4be6-b931-dc145d05b189", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-21T22:02:27.000Z" - }, - "end": { - "$date": "2022-01-21T22:18:00.000Z" - }, - "events": [ - { - "uuid": "7c32f20d-3e47-48ad-b158-1bf89cd10a47", - "start": { - "$date": "2022-01-21T22:02:27.000Z" - }, - "end": { - "$date": "2022-01-21T22:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d084c69f-41b9-4c36-aa30-44cbe10992c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-21T22:20:08.000Z" - }, - "end": { - "$date": "2022-01-21T22:41:16.000Z" - }, - "events": [ - { - "uuid": "688057d1-622c-45f6-a9a0-47db2b4b7aab", - "start": { - "$date": "2022-01-21T22:20:08.000Z" - }, - "end": { - "$date": "2022-01-21T22:41:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "9caa5eb2-0d4c-492f-9418-79ccbf98d3e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T22:21:17.000Z" - }, - "end": { - "$date": "2022-01-21T23:47:54.000Z" - }, - "events": [ - { - "uuid": "5c94740f-863b-4629-8c07-416ae9b077c5", - "start": { - "$date": "2022-01-21T22:21:17.000Z" - }, - "end": { - "$date": "2022-01-21T23:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "892962a9-a10a-415d-a185-d95a84b35445", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-21T22:28:50.000Z" - }, - "end": { - "$date": "2022-01-21T23:04:28.000Z" - }, - "events": [ - { - "uuid": "0894149d-dfaa-4234-90fa-6df1f2b50ee3", - "start": { - "$date": "2022-01-21T22:28:50.000Z" - }, - "end": { - "$date": "2022-01-21T23:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03b52a10-1756-4b51-b90c-05a2a3df2f83", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-21T22:59:12.000Z" - }, - "end": { - "$date": "2022-01-21T23:38:28.000Z" - }, - "events": [ - { - "uuid": "0d557273-7eb4-4864-8ceb-367bf2ebc5ce", - "start": { - "$date": "2022-01-21T22:59:12.000Z" - }, - "end": { - "$date": "2022-01-21T23:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22d642ee-321b-4cd4-9f67-aacd4d3da21d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-21T23:06:14.000Z" - }, - "end": { - "$date": "2022-01-21T23:38:37.000Z" - }, - "events": [ - { - "uuid": "63f784fa-bb6e-4b26-9f15-9415eeee0b29", - "start": { - "$date": "2022-01-21T23:06:14.000Z" - }, - "end": { - "$date": "2022-01-21T23:38:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fbb87bd-76a9-4a4e-86f4-072c8984dfde", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-21T23:44:19.000Z" - }, - "end": { - "$date": "2022-01-22T00:00:41.000Z" - }, - "events": [ - { - "uuid": "4e836375-465f-496b-af54-4218bfc16437", - "start": { - "$date": "2022-01-21T23:44:19.000Z" - }, - "end": { - "$date": "2022-01-22T00:00:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "16e20536-5748-4076-8e37-260264dbc8e5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-21T23:48:08.000Z" - }, - "end": { - "$date": "2022-01-22T00:10:24.000Z" - }, - "events": [ - { - "uuid": "8f81a489-ae74-493d-8341-0c6418d7c7cb", - "start": { - "$date": "2022-01-21T23:48:08.000Z" - }, - "end": { - "$date": "2022-01-22T00:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c298682-b857-4652-b80f-acf77d02ee9b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-22T00:03:31.000Z" - }, - "end": { - "$date": "2022-01-22T00:23:23.000Z" - }, - "events": [ - { - "uuid": "59d82ef1-007c-4ed6-be80-0e75fdafc465", - "start": { - "$date": "2022-01-22T00:03:31.000Z" - }, - "end": { - "$date": "2022-01-22T00:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4614b0a9-cd7e-47e4-9198-48f673563058", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T01:16:37.000Z" - }, - "end": { - "$date": "2022-01-22T01:35:08.000Z" - }, - "events": [ - { - "uuid": "1bb3925f-a688-4b0e-b233-6858514f5d22", - "start": { - "$date": "2022-01-22T01:16:37.000Z" - }, - "end": { - "$date": "2022-01-22T01:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b534478-20d7-4fc5-adc7-adc51a7b178e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-22T00:30:08.000Z" - }, - "end": { - "$date": "2022-01-22T00:54:05.000Z" - }, - "events": [ - { - "uuid": "63c6f0c4-2cef-437e-916b-f2c3258e175b", - "start": { - "$date": "2022-01-22T00:30:08.000Z" - }, - "end": { - "$date": "2022-01-22T00:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0bf906a8-d1ec-49f3-8fbb-fe813b421ee1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T02:05:00.000Z" - }, - "end": { - "$date": "2022-01-22T03:08:38.000Z" - }, - "events": [ - { - "uuid": "f9262b85-d306-4106-8a50-65145a4cea70", - "start": { - "$date": "2022-01-22T02:05:00.000Z" - }, - "end": { - "$date": "2022-01-22T03:08:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "eefdf167-f397-4d7f-adf6-251a2bfcc6f9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-22T02:02:34.000Z" - }, - "end": { - "$date": "2022-01-22T03:15:28.000Z" - }, - "events": [ - { - "uuid": "19491dbe-3a7c-426b-bdea-c9f40aa0d946", - "start": { - "$date": "2022-01-22T02:02:34.000Z" - }, - "end": { - "$date": "2022-01-22T03:15:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e3de34d8-0f4d-47b9-9971-0b6b99b5718f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T02:42:57.000Z" - }, - "end": { - "$date": "2022-01-22T03:30:38.000Z" - }, - "events": [ - { - "uuid": "fe3e0664-6481-4118-b9c9-8d1fc2e5e277", - "start": { - "$date": "2022-01-22T02:42:57.000Z" - }, - "end": { - "$date": "2022-01-22T03:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5741eed6-690e-4ac4-ad71-0fbe42a0929a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-22T02:47:18.000Z" - }, - "end": { - "$date": "2022-01-22T03:28:31.000Z" - }, - "events": [ - { - "uuid": "36aab120-7cdf-400e-849c-f79340cd11af", - "start": { - "$date": "2022-01-22T02:47:18.000Z" - }, - "end": { - "$date": "2022-01-22T03:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e4dcb776-51ca-43f6-9bf7-236cf79db324", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-22T02:48:34.000Z" - }, - "end": { - "$date": "2022-01-22T03:39:57.000Z" - }, - "events": [ - { - "uuid": "b8629770-badd-45fa-a4d5-3efecbd37b2c", - "start": { - "$date": "2022-01-22T02:48:34.000Z" - }, - "end": { - "$date": "2022-01-22T03:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "01fd0baf-db39-49f0-b081-ebe57b334368", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T03:09:38.000Z" - }, - "end": { - "$date": "2022-01-22T06:03:48.000Z" - }, - "events": [ - { - "uuid": "c5ecaf10-cac5-4422-9ed6-cd388643e63c", - "start": { - "$date": "2022-01-22T03:09:38.000Z" - }, - "end": { - "$date": "2022-01-22T03:57:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2552c986-91b6-4653-ba0e-c9edac215443", - "start": { - "$date": "2022-01-22T03:57:38.000Z" - }, - "end": { - "$date": "2022-01-22T04:26:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "44d6f8c1-54dc-4822-ae41-9ed5fe1ec638", - "start": { - "$date": "2022-01-22T04:26:38.000Z" - }, - "end": { - "$date": "2022-01-22T04:52:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "404725c0-9509-4153-b8ef-d085523e9545", - "start": { - "$date": "2022-01-22T04:52:38.000Z" - }, - "end": { - "$date": "2022-01-22T05:03:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6bffc812-8ebe-4d5d-9b44-233c84e77544", - "start": { - "$date": "2022-01-22T05:03:38.000Z" - }, - "end": { - "$date": "2022-01-22T06:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "214add42-39dd-48c6-ba26-656f08fccd19", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T03:10:15.000Z" - }, - "end": { - "$date": "2022-01-22T05:04:09.000Z" - }, - "events": [ - { - "uuid": "3db07abd-6cf1-4206-9efa-7c1d5ea4e24c", - "start": { - "$date": "2022-01-22T03:10:15.000Z" - }, - "end": { - "$date": "2022-01-22T05:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "0f0792ae-f184-44b7-b16f-135a491b8d93", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T03:31:31.000Z" - }, - "end": { - "$date": "2022-01-22T03:40:35.000Z" - }, - "events": [ - { - "uuid": "91b90412-3071-4667-a764-3dd6facfb049", - "start": { - "$date": "2022-01-22T03:31:31.000Z" - }, - "end": { - "$date": "2022-01-22T03:40:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1b91c6ff-6ea2-4efa-a41c-0743c54221c7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-22T03:40:27.000Z" - }, - "end": { - "$date": "2022-01-22T07:43:04.000Z" - }, - "events": [ - { - "uuid": "3648496b-360b-41e4-9335-e5c95aa3a05e", - "start": { - "$date": "2022-01-22T03:40:27.000Z" - }, - "end": { - "$date": "2022-01-22T07:43:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1392b717-03aa-4553-b684-d7604e4ae5c3", - "uuid": "f2a27c46-51cf-4987-977f-b7e44a846711", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T03:51:03.000Z" - }, - "end": { - "$date": "2022-01-22T03:56:57.000Z" - }, - "events": [ - { - "uuid": "102b1b02-edd8-400d-a650-c05e95311387", - "start": { - "$date": "2022-01-22T03:51:03.000Z" - }, - "end": { - "$date": "2022-01-22T03:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f1b33bbe-44ee-4bcd-b0cf-119019bb9733", - "uuid": "d6e0f12b-3879-4167-b451-c30036f88dcd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T03:57:54.000Z" - }, - "end": { - "$date": "2022-01-22T04:34:14.000Z" - }, - "events": [ - { - "uuid": "121e9f20-b7a0-47a7-8a7e-7543798a1b8a", - "start": { - "$date": "2022-01-22T03:57:54.000Z" - }, - "end": { - "$date": "2022-01-22T04:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4fdccbaa-d5e6-47e6-bff1-58594659e7ef", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-22T04:13:24.000Z" - }, - "end": { - "$date": "2022-01-22T04:26:25.000Z" - }, - "events": [ - { - "uuid": "efb2fde7-1c7a-4b7f-a93b-9328cfbfde98", - "start": { - "$date": "2022-01-22T04:13:24.000Z" - }, - "end": { - "$date": "2022-01-22T04:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "163e337f-b2aa-4b06-8457-e5b041f9d7dc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-22T04:36:18.000Z" - }, - "end": { - "$date": "2022-01-22T06:51:06.000Z" - }, - "events": [ - { - "uuid": "9dd5510e-0833-42ac-bde0-4e646f274835", - "start": { - "$date": "2022-01-22T04:36:18.000Z" - }, - "end": { - "$date": "2022-01-22T06:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5fa0fef1-3d8f-4c52-80e7-de70038a7246", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T04:37:22.000Z" - }, - "end": { - "$date": "2022-01-22T05:15:04.000Z" - }, - "events": [ - { - "uuid": "8a24408a-e9c4-44cb-ab2a-8acbd1e6b8b1", - "start": { - "$date": "2022-01-22T04:37:22.000Z" - }, - "end": { - "$date": "2022-01-22T05:15:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "89b5e987-2778-4d6b-ba70-0ae733af0b35", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T05:12:00.000Z" - }, - "end": { - "$date": "2022-01-22T05:12:15.000Z" - }, - "events": [ - { - "uuid": "b6e308ee-ba42-4b4b-bdc8-210da9a3e5e8", - "start": { - "$date": "2022-01-22T05:12:00.000Z" - }, - "end": { - "$date": "2022-01-22T05:12:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "32ff4d08-bccc-4032-81a3-54bebd8a2459", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T05:12:58.000Z" - }, - "end": { - "$date": "2022-01-22T06:18:25.000Z" - }, - "events": [ - { - "uuid": "83d731ef-0104-4f87-ab66-6d179d7202be", - "start": { - "$date": "2022-01-22T05:12:58.000Z" - }, - "end": { - "$date": "2022-01-22T06:18:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ac8afa93-8eb4-4e85-aaeb-ac15c449d4cd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T05:16:21.000Z" - }, - "end": { - "$date": "2022-01-22T05:53:05.000Z" - }, - "events": [ - { - "uuid": "248fbe5f-cedb-4997-97c0-d969b2c6bd79", - "start": { - "$date": "2022-01-22T05:16:21.000Z" - }, - "end": { - "$date": "2022-01-22T05:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "399f6e6c-782d-46d1-9657-07130c63f526", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-22T05:40:29.000Z" - }, - "end": { - "$date": "2022-01-22T06:45:21.000Z" - }, - "events": [ - { - "uuid": "5f1beafd-7221-428d-8fb8-801999cdf518", - "start": { - "$date": "2022-01-22T05:40:29.000Z" - }, - "end": { - "$date": "2022-01-22T06:45:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "7ebeab21-a7c0-4f01-9220-508199b202f2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-22T05:47:37.000Z" - }, - "end": { - "$date": "2022-01-22T05:58:00.000Z" - }, - "events": [ - { - "uuid": "4b77d111-5687-4d6a-9ad6-d77f0ae1a774", - "start": { - "$date": "2022-01-22T05:47:37.000Z" - }, - "end": { - "$date": "2022-01-22T05:58:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "63dfee21-fa47-4acf-8a79-c642bfcc658b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-22T05:48:52.000Z" - }, - "end": { - "$date": "2022-01-22T06:17:54.000Z" - }, - "events": [ - { - "uuid": "5183bcf0-6343-4642-8aa0-84dc8ad0e0b7", - "start": { - "$date": "2022-01-22T05:48:52.000Z" - }, - "end": { - "$date": "2022-01-22T06:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "df8d63fe-fb3e-4725-8d7d-1d7fb8583ad4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T06:16:58.000Z" - }, - "end": { - "$date": "2022-01-22T06:33:04.000Z" - }, - "events": [ - { - "uuid": "873729ce-433e-49d9-ab23-38ca5aa8652e", - "start": { - "$date": "2022-01-22T06:16:58.000Z" - }, - "end": { - "$date": "2022-01-22T06:33:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "f9181552-595f-4bf4-9fdb-70f9ccafe1fb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-22T06:51:39.000Z" - }, - "end": { - "$date": "2022-01-22T09:26:40.000Z" - }, - "events": [ - { - "uuid": "8b5ea7f0-1337-47d1-8f05-ccbdfa8ae548", - "start": { - "$date": "2022-01-22T06:51:39.000Z" - }, - "end": { - "$date": "2022-01-22T09:26:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "8180a4d9-f558-42f4-a43a-dccd25a54d91", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T06:28:07.000Z" - }, - "end": { - "$date": "2022-01-22T09:03:34.000Z" - }, - "events": [ - { - "uuid": "91bb0646-6994-4824-afa7-20cdbd844aa2", - "start": { - "$date": "2022-01-22T06:28:07.000Z" - }, - "end": { - "$date": "2022-01-22T09:03:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "2a500cc7-b31d-4ff8-93d0-f6a0e6706b62", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T06:33:08.000Z" - }, - "end": { - "$date": "2022-01-22T07:20:41.000Z" - }, - "events": [ - { - "uuid": "9ef6052a-57ed-4c58-a4df-dd0ee0bc57f9", - "start": { - "$date": "2022-01-22T06:33:08.000Z" - }, - "end": { - "$date": "2022-01-22T07:20:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cae3933f-8834-4c33-aff1-cb668f7cc26f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-22T06:47:56.000Z" - }, - "end": { - "$date": "2022-01-22T09:27:19.000Z" - }, - "events": [ - { - "uuid": "6f086d3f-c016-4e9b-9f04-4829988a4b3f", - "start": { - "$date": "2022-01-22T06:47:56.000Z" - }, - "end": { - "$date": "2022-01-22T09:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "723b6389-75d1-4b4a-b73f-207ba7d88b6e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-22T07:27:56.000Z" - }, - "end": { - "$date": "2022-01-22T07:46:32.000Z" - }, - "events": [ - { - "uuid": "9d4f10b8-3747-456d-be71-c6f2444bd880", - "start": { - "$date": "2022-01-22T07:27:56.000Z" - }, - "end": { - "$date": "2022-01-22T07:46:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "a60ced46-c989-401d-94cb-8506961f380f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T07:43:23.000Z" - }, - "end": { - "$date": "2022-01-22T07:50:13.000Z" - }, - "events": [ - { - "uuid": "5a0c7ca8-f848-4119-88bf-5b64fe988dfa", - "start": { - "$date": "2022-01-22T07:43:23.000Z" - }, - "end": { - "$date": "2022-01-22T07:50:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2d5f8f3-9e9d-41f8-bbeb-b2ec9c9742b2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-22T07:48:56.000Z" - }, - "end": { - "$date": "2022-01-22T08:11:03.000Z" - }, - "events": [ - { - "uuid": "861e382d-0ec7-4637-8391-aa8ad46e5368", - "start": { - "$date": "2022-01-22T07:48:56.000Z" - }, - "end": { - "$date": "2022-01-22T08:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "bca6ac41-b4d5-4ecc-a8c4-346c34354859", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T07:50:28.000Z" - }, - "end": { - "$date": "2022-01-22T08:21:44.000Z" - }, - "events": [ - { - "uuid": "03fc6626-fb3e-432e-af00-0dea2af87fdb", - "start": { - "$date": "2022-01-22T07:50:28.000Z" - }, - "end": { - "$date": "2022-01-22T08:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b77cdc7-b7eb-4383-8bef-b39a8471e106", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-22T08:04:30.000Z" - }, - "end": { - "$date": "2022-01-22T08:36:01.000Z" - }, - "events": [ - { - "uuid": "2335f757-09a0-4c11-8ebf-4cebc8b08582", - "start": { - "$date": "2022-01-22T08:04:30.000Z" - }, - "end": { - "$date": "2022-01-22T08:36:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "186e0ceb-302e-4c43-b1cb-04687e8db901", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T08:33:40.000Z" - }, - "end": { - "$date": "2022-01-22T09:02:47.000Z" - }, - "events": [ - { - "uuid": "bb3de424-e233-4356-906d-1e378cc939d4", - "start": { - "$date": "2022-01-22T08:33:40.000Z" - }, - "end": { - "$date": "2022-01-22T09:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e790c486-6cc1-4227-817a-ab1be79454b4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-22T09:11:20.000Z" - }, - "end": { - "$date": "2022-01-22T09:39:35.000Z" - }, - "events": [ - { - "uuid": "3970ae60-e8d0-4c7a-9f04-20ab16b30754", - "start": { - "$date": "2022-01-22T09:11:20.000Z" - }, - "end": { - "$date": "2022-01-22T09:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aac8ee29-804f-45b2-9113-bbf679cbd44b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-22T09:43:56.000Z" - }, - "end": { - "$date": "2022-01-22T10:13:56.000Z" - }, - "events": [ - { - "uuid": "d3de2710-6921-45e4-ac2f-2da7ce4ee0a1", - "start": { - "$date": "2022-01-22T09:43:56.000Z" - }, - "end": { - "$date": "2022-01-22T10:13:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "07df17a8-4d12-4674-b7cb-be0bfc6ce6cc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-22T11:48:25.000Z" - }, - "end": { - "$date": "2022-01-22T13:12:08.000Z" - }, - "events": [ - { - "uuid": "7124bc0d-423c-4645-bf81-a919dd413c58", - "start": { - "$date": "2022-01-22T11:48:25.000Z" - }, - "end": { - "$date": "2022-01-22T13:12:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "4cf32757-a01b-4fcd-8ef1-a90a24b6973c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T15:33:14.000Z" - }, - "end": { - "$date": "2022-01-22T16:35:37.000Z" - }, - "events": [ - { - "uuid": "bdbf7e76-2ad7-499a-bf5d-7bd551d26577", - "start": { - "$date": "2022-01-22T15:33:14.000Z" - }, - "end": { - "$date": "2022-01-22T16:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "c2fce7bd-4d78-43e8-a049-34fb812e9306", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T16:34:21.000Z" - }, - "end": { - "$date": "2022-01-22T16:35:41.000Z" - }, - "events": [ - { - "uuid": "f60afa65-635a-4568-8e5c-bf27562fde71", - "start": { - "$date": "2022-01-22T16:34:21.000Z" - }, - "end": { - "$date": "2022-01-22T16:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "e63d9ed8-703c-4655-8d60-458a9dfce9a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T16:35:47.000Z" - }, - "end": { - "$date": "2022-01-22T16:59:08.000Z" - }, - "events": [ - { - "uuid": "10843669-9a4a-4f5e-8844-4efb63a51dc9", - "start": { - "$date": "2022-01-22T16:35:47.000Z" - }, - "end": { - "$date": "2022-01-22T16:59:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "9eab0290-077c-4b2b-8396-e8a574a99bf1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T16:37:05.000Z" - }, - "end": { - "$date": "2022-01-22T16:42:05.000Z" - }, - "events": [ - { - "uuid": "ff103d08-0c27-4ac9-a4c9-9c3d855dd960", - "start": { - "$date": "2022-01-22T16:37:05.000Z" - }, - "end": { - "$date": "2022-01-22T16:42:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "5b0e1a25-273c-4614-a666-e71f88f92c15", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T16:44:58.000Z" - }, - "end": { - "$date": "2022-01-22T19:44:42.000Z" - }, - "events": [ - { - "uuid": "bea2b36e-3751-4193-b23e-67f294bc7ca6", - "start": { - "$date": "2022-01-22T16:44:58.000Z" - }, - "end": { - "$date": "2022-01-22T19:44:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "160fed23-b86a-4413-9344-789b0c6cccc8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T17:03:44.000Z" - }, - "end": { - "$date": "2022-01-22T17:45:45.000Z" - }, - "events": [ - { - "uuid": "27893621-32ea-4f03-a368-2bb838daed4e", - "start": { - "$date": "2022-01-22T17:03:44.000Z" - }, - "end": { - "$date": "2022-01-22T17:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "f420310f-de30-4dda-ab33-8af42344a347", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-22T17:19:27.000Z" - }, - "end": { - "$date": "2022-01-22T17:30:28.000Z" - }, - "events": [ - { - "uuid": "8d42a1f7-a7b4-447f-82f7-382b36ec785c", - "start": { - "$date": "2022-01-22T17:19:27.000Z" - }, - "end": { - "$date": "2022-01-22T17:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18b9dfc3-449b-41ed-9614-507ab6e0b06a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-22T17:35:28.000Z" - }, - "end": { - "$date": "2022-01-22T17:58:14.000Z" - }, - "events": [ - { - "uuid": "9686e2d6-7041-4429-88dc-04a267b0444e", - "start": { - "$date": "2022-01-22T17:35:28.000Z" - }, - "end": { - "$date": "2022-01-22T17:58:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "c5d3f4cc-4c41-4071-bfe3-b678112a2dfe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T17:47:45.000Z" - }, - "end": { - "$date": "2022-01-22T19:44:51.000Z" - }, - "events": [ - { - "uuid": "c85c725c-c9bb-4cfa-851f-ae9a25d86f12", - "start": { - "$date": "2022-01-22T17:47:45.000Z" - }, - "end": { - "$date": "2022-01-22T19:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81cfe61a-4b7c-4c14-b4ed-ba333f157245", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-22T18:10:35.000Z" - }, - "end": { - "$date": "2022-01-22T18:37:06.000Z" - }, - "events": [ - { - "uuid": "a312b45f-56a5-43fb-9e31-0afd4eeb8410", - "start": { - "$date": "2022-01-22T18:10:35.000Z" - }, - "end": { - "$date": "2022-01-22T18:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb3f070d-5755-4a1b-9226-c71046c192ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-22T18:10:30.000Z" - }, - "end": { - "$date": "2022-01-22T18:37:11.000Z" - }, - "events": [ - { - "uuid": "7fccfcc7-ee37-4001-a84a-f367bed85729", - "start": { - "$date": "2022-01-22T18:10:30.000Z" - }, - "end": { - "$date": "2022-01-22T18:37:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4d30ab6-2dd5-49c8-b2a9-06da0ff9624d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-22T18:38:08.000Z" - }, - "end": { - "$date": "2022-01-22T18:49:53.000Z" - }, - "events": [ - { - "uuid": "9cec2489-32dc-4b11-bf6c-d5beb4d1954e", - "start": { - "$date": "2022-01-22T18:38:08.000Z" - }, - "end": { - "$date": "2022-01-22T18:49:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2eebb3ea-3440-4883-961a-c7d6350e6449", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-22T18:48:37.000Z" - }, - "end": { - "$date": "2022-01-22T19:11:24.000Z" - }, - "events": [ - { - "uuid": "d19e33ed-801f-4ab1-a53a-e7d9b81725c5", - "start": { - "$date": "2022-01-22T18:48:37.000Z" - }, - "end": { - "$date": "2022-01-22T19:11:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba2ba010-3cf7-4d3c-ac59-aa424947e58e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-22T19:02:52.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:13.000Z" - }, - "events": [ - { - "uuid": "9394b46e-c949-4887-8100-18731ba0c411", - "start": { - "$date": "2022-01-22T19:02:52.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fca0606-21b3-4df7-9389-3b98c88d28ed", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-22T19:02:52.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:14.000Z" - }, - "events": [ - { - "uuid": "35383b62-5c05-4718-9158-b7344557edb5", - "start": { - "$date": "2022-01-22T19:02:52.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed3d83e9-2124-4362-b8d9-b25bd75b7436", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-22T19:03:02.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:19.000Z" - }, - "events": [ - { - "uuid": "e42ffdb1-e683-4a68-a928-c2dbff07b8ee", - "start": { - "$date": "2022-01-22T19:03:02.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d1f60ee-7117-4644-9065-3cadaa7c509a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-22T19:14:26.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:51.000Z" - }, - "events": [ - { - "uuid": "8557a845-edab-4768-b4ec-5a4217390452", - "start": { - "$date": "2022-01-22T19:14:26.000Z" - }, - "end": { - "$date": "2022-01-22T19:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81b23219-a837-4082-a327-ada5da69ec99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-22T19:39:48.000Z" - }, - "end": { - "$date": "2022-01-22T20:07:04.000Z" - }, - "events": [ - { - "uuid": "a68b5bd2-d985-46ba-abd4-36a96c3256c4", - "start": { - "$date": "2022-01-22T19:39:48.000Z" - }, - "end": { - "$date": "2022-01-22T20:07:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfe3edfb-f6b6-43fe-83e1-4b441b68117a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-22T19:39:58.000Z" - }, - "end": { - "$date": "2022-01-22T20:07:09.000Z" - }, - "events": [ - { - "uuid": "e37b3e19-a86e-4e47-a992-5c4c75d5a4df", - "start": { - "$date": "2022-01-22T19:39:58.000Z" - }, - "end": { - "$date": "2022-01-22T20:07:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a46df83-07eb-4f4f-bcbe-ef66b7ab5d2f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-22T19:39:58.000Z" - }, - "end": { - "$date": "2022-01-22T20:07:14.000Z" - }, - "events": [ - { - "uuid": "05a4bf15-eb85-4c4c-a237-cca465481568", - "start": { - "$date": "2022-01-22T19:39:58.000Z" - }, - "end": { - "$date": "2022-01-22T20:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "07d42e08-16f9-42a7-b8ae-1ebc72ace116", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T19:45:02.000Z" - }, - "end": { - "$date": "2022-01-22T19:48:18.000Z" - }, - "events": [ - { - "uuid": "e025e4f5-ba59-4de8-a0c1-480e98869d03", - "start": { - "$date": "2022-01-22T19:45:02.000Z" - }, - "end": { - "$date": "2022-01-22T19:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "018ae26b-5f0a-4781-893f-082bd8908425", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T19:45:26.000Z" - }, - "end": { - "$date": "2022-01-22T19:49:01.000Z" - }, - "events": [ - { - "uuid": "8139536c-942c-4726-b6c5-39f4e6a30bdb", - "start": { - "$date": "2022-01-22T19:45:26.000Z" - }, - "end": { - "$date": "2022-01-22T19:49:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "ae2ee4c9-34ca-40d3-8cae-de201775e063", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T19:50:47.000Z" - }, - "end": { - "$date": "2022-01-22T19:53:18.000Z" - }, - "events": [ - { - "uuid": "107543e9-a27b-46d8-a720-2233339032da", - "start": { - "$date": "2022-01-22T19:50:47.000Z" - }, - "end": { - "$date": "2022-01-22T19:53:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "914da5e3-df8e-4841-bb9b-810c5beddb89", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-22T20:26:33.000Z" - }, - "end": { - "$date": "2022-01-22T20:54:37.000Z" - }, - "events": [ - { - "uuid": "9cbced27-6547-4bed-9717-39c362788a5e", - "start": { - "$date": "2022-01-22T20:26:33.000Z" - }, - "end": { - "$date": "2022-01-22T20:38:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d2202fb-324f-4a52-ae2a-c44703d43d7b", - "start": { - "$date": "2022-01-22T20:38:33.000Z" - }, - "end": { - "$date": "2022-01-22T20:41:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3912fc20-50ca-4c77-a24b-260755ce06e6", - "start": { - "$date": "2022-01-22T20:41:33.000Z" - }, - "end": { - "$date": "2022-01-22T20:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "45fda9c8-45cf-46eb-b690-f4ba0bca966e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T20:16:40.000Z" - }, - "end": { - "$date": "2022-01-22T20:52:13.000Z" - }, - "events": [ - { - "uuid": "f43823fb-c492-49d1-aea0-df2dd6d23b18", - "start": { - "$date": "2022-01-22T20:16:40.000Z" - }, - "end": { - "$date": "2022-01-22T20:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "cf08c31a-a7b7-4278-83f0-213467a76fb6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T20:21:19.000Z" - }, - "end": { - "$date": "2022-01-22T20:25:04.000Z" - }, - "events": [ - { - "uuid": "142d83e9-ff9e-4255-8f18-899d0ad355dc", - "start": { - "$date": "2022-01-22T20:21:19.000Z" - }, - "end": { - "$date": "2022-01-22T20:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "dc2aad29-2975-40d5-be1b-9569032bbd77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T20:39:35.000Z" - }, - "end": { - "$date": "2022-01-22T20:50:21.000Z" - }, - "events": [ - { - "uuid": "f4116aa1-7e68-46bd-abe9-3ff73736ab82", - "start": { - "$date": "2022-01-22T20:39:35.000Z" - }, - "end": { - "$date": "2022-01-22T20:50:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", - "uuid": "00e9eacc-7ba2-438b-b4e3-766facf07d5c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T20:56:44.000Z" - }, - "end": { - "$date": "2022-01-22T20:59:07.000Z" - }, - "events": [ - { - "uuid": "1c7dcd2b-3782-4bc3-8253-239833a10ef4", - "start": { - "$date": "2022-01-22T20:56:44.000Z" - }, - "end": { - "$date": "2022-01-22T20:59:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", - "uuid": "80a88050-bfbb-4f71-93b7-f5a7b73a3f10", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T21:05:50.000Z" - }, - "end": { - "$date": "2022-01-22T21:08:03.000Z" - }, - "events": [ - { - "uuid": "dc4e797d-3ad6-43b5-88b7-f5d58dba8897", - "start": { - "$date": "2022-01-22T21:05:50.000Z" - }, - "end": { - "$date": "2022-01-22T21:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", - "uuid": "738f1b2d-2f23-4bb6-9918-53b8149a110a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T21:15:53.000Z" - }, - "end": { - "$date": "2022-01-22T21:19:05.000Z" - }, - "events": [ - { - "uuid": "9fdbdb68-5ffc-441b-b946-9f88cff6e3fe", - "start": { - "$date": "2022-01-22T21:15:53.000Z" - }, - "end": { - "$date": "2022-01-22T21:19:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e6f31d9-b8ba-4a83-a81a-a8b1342a9d38", - "uuid": "1623bdd9-416e-44d2-8a5f-f46ce084baa4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T21:15:53.000Z" - }, - "end": { - "$date": "2022-01-22T21:22:30.000Z" - }, - "events": [ - { - "uuid": "4fe00c7c-cd0b-4d6a-a9b3-26a5f5b49f09", - "start": { - "$date": "2022-01-22T21:15:53.000Z" - }, - "end": { - "$date": "2022-01-22T21:22:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "074dae53-3fe4-47fc-86a7-d53a4cddae24", - "uuid": "de8f4ba3-811f-4c96-b5ca-cb2b27ce8856", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T21:25:27.000Z" - }, - "end": { - "$date": "2022-01-22T21:26:45.000Z" - }, - "events": [ - { - "uuid": "44752309-0fb2-4af3-8191-bc3ab504c6be", - "start": { - "$date": "2022-01-22T21:25:27.000Z" - }, - "end": { - "$date": "2022-01-22T21:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e6f31d9-b8ba-4a83-a81a-a8b1342a9d38", - "uuid": "7f611059-aeb9-4988-80b1-100c3948a309", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-22T21:25:27.000Z" - }, - "end": { - "$date": "2022-01-22T23:24:29.000Z" - }, - "events": [ - { - "uuid": "cb67fd5b-b033-4396-b13e-d833bd79c319", - "start": { - "$date": "2022-01-22T21:25:27.000Z" - }, - "end": { - "$date": "2022-01-22T23:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "a6305643-12e4-4363-9592-d6a40a6700ad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-22T21:59:58.000Z" - }, - "end": { - "$date": "2022-01-22T22:06:54.000Z" - }, - "events": [ - { - "uuid": "31b432b1-759d-4409-b3c6-1638421297d6", - "start": { - "$date": "2022-01-22T21:59:58.000Z" - }, - "end": { - "$date": "2022-01-22T22:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "48509baf-1b53-422a-9e1d-9f47d377997c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-22T23:44:18.000Z" - }, - "end": { - "$date": "2022-01-23T00:25:28.000Z" - }, - "events": [ - { - "uuid": "1b5e76c9-3499-4788-9fa0-714de481f3f2", - "start": { - "$date": "2022-01-22T23:44:18.000Z" - }, - "end": { - "$date": "2022-01-23T00:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6cfd3f18-c523-402e-ac94-dca0146f5154", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T01:00:04.000Z" - }, - "end": { - "$date": "2022-01-23T01:40:25.000Z" - }, - "events": [ - { - "uuid": "0fd5dfe2-dd1f-4fd8-a29b-d5b4e113f007", - "start": { - "$date": "2022-01-23T01:00:04.000Z" - }, - "end": { - "$date": "2022-01-23T01:12:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ea488f9-fa9a-41e6-a491-f8ed979ba357", - "start": { - "$date": "2022-01-23T01:12:04.000Z" - }, - "end": { - "$date": "2022-01-23T01:40:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "08e4d70c-fe5b-4706-b89f-3f70c0f76cdd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T01:41:21.000Z" - }, - "end": { - "$date": "2022-01-23T01:42:32.000Z" - }, - "events": [ - { - "uuid": "96dfb9f6-9c7f-4967-9200-259c8aa74ce7", - "start": { - "$date": "2022-01-23T01:41:21.000Z" - }, - "end": { - "$date": "2022-01-23T01:42:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "d1574bd7-7769-4c00-95a0-207b61fc44b9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-23T01:49:44.000Z" - }, - "end": { - "$date": "2022-01-23T03:04:00.000Z" - }, - "events": [ - { - "uuid": "7a72a41e-4eba-482a-9b6a-752d56d9cb66", - "start": { - "$date": "2022-01-23T01:49:44.000Z" - }, - "end": { - "$date": "2022-01-23T02:18:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bbf261f-0d17-4e70-938d-f3907e457cbe", - "start": { - "$date": "2022-01-23T02:18:44.000Z" - }, - "end": { - "$date": "2022-01-23T02:23:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "440df8a6-ae44-4409-82a5-2d4491501966", - "start": { - "$date": "2022-01-23T02:23:44.000Z" - }, - "end": { - "$date": "2022-01-23T03:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "d23a2314-6ff9-47e4-937b-3a7466a00b7f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T02:37:22.000Z" - }, - "end": { - "$date": "2022-01-23T03:10:45.000Z" - }, - "events": [ - { - "uuid": "0435aae8-9a67-4368-95df-a5f86e6d23f3", - "start": { - "$date": "2022-01-23T02:37:22.000Z" - }, - "end": { - "$date": "2022-01-23T03:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "736a989b-a0bc-459d-ba67-4c5cafa88bb0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-23T02:46:42.000Z" - }, - "end": { - "$date": "2022-01-23T02:58:01.000Z" - }, - "events": [ - { - "uuid": "1357aba5-6393-439d-9c6c-698cf4e226fb", - "start": { - "$date": "2022-01-23T02:46:42.000Z" - }, - "end": { - "$date": "2022-01-23T02:58:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "0df17eb7-89bc-4db8-bc7a-c46bd0f95d4a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-23T02:59:11.000Z" - }, - "end": { - "$date": "2022-01-23T04:31:05.000Z" - }, - "events": [ - { - "uuid": "a34c6106-4461-4184-974e-6d2ff3aaedc5", - "start": { - "$date": "2022-01-23T02:59:11.000Z" - }, - "end": { - "$date": "2022-01-23T04:31:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "6a8f4939-df44-4fd3-b777-b83a8143b060", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T03:11:30.000Z" - }, - "end": { - "$date": "2022-01-23T03:59:55.000Z" - }, - "events": [ - { - "uuid": "7559c093-f0f7-48a1-892b-9e82c33726e0", - "start": { - "$date": "2022-01-23T03:11:30.000Z" - }, - "end": { - "$date": "2022-01-23T03:59:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "c6e3bad5-47b0-4e40-b499-f7b4ef18d957", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-23T03:13:50.000Z" - }, - "end": { - "$date": "2022-01-23T05:59:17.000Z" - }, - "events": [ - { - "uuid": "c85014e4-4e2a-4419-a47e-abb8aa875db5", - "start": { - "$date": "2022-01-23T03:13:50.000Z" - }, - "end": { - "$date": "2022-01-23T05:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "c715b01d-1043-41e9-ae8b-df8c08f03c89", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-23T03:32:00.000Z" - }, - "end": { - "$date": "2022-01-23T07:19:59.000Z" - }, - "events": [ - { - "uuid": "07f00dd5-a2be-474a-950f-2ceb0cf707f5", - "start": { - "$date": "2022-01-23T03:32:00.000Z" - }, - "end": { - "$date": "2022-01-23T07:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "a28b9d76-7c7b-4e6d-9530-33e501f2fc9a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T04:00:34.000Z" - }, - "end": { - "$date": "2022-01-23T04:01:45.000Z" - }, - "events": [ - { - "uuid": "ada1858d-b8fe-4c3c-aedb-b9021ee7a6a7", - "start": { - "$date": "2022-01-23T04:00:34.000Z" - }, - "end": { - "$date": "2022-01-23T04:01:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "a54ba46f-656f-4c48-aaf5-d3255a7c1f60", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T04:02:49.000Z" - }, - "end": { - "$date": "2022-01-23T05:59:17.000Z" - }, - "events": [ - { - "uuid": "c269a181-c6e8-4e77-b98d-0e22f9c14069", - "start": { - "$date": "2022-01-23T04:02:49.000Z" - }, - "end": { - "$date": "2022-01-23T05:59:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "04990c40-9725-46d4-a396-1c7cb56064de", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T04:46:45.000Z" - }, - "end": { - "$date": "2022-01-23T07:06:59.000Z" - }, - "events": [ - { - "uuid": "cb96ffb9-3777-49b2-902f-558fa7930aee", - "start": { - "$date": "2022-01-23T04:46:45.000Z" - }, - "end": { - "$date": "2022-01-23T07:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "089a050c-2658-4942-b5ec-ca505ce0c6ee", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T05:14:49.000Z" - }, - "end": { - "$date": "2022-01-23T05:39:40.000Z" - }, - "events": [ - { - "uuid": "18fd4358-959a-4da5-ac42-873b0748c169", - "start": { - "$date": "2022-01-23T05:14:49.000Z" - }, - "end": { - "$date": "2022-01-23T05:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ccc561af-b8be-4c20-868e-a4de3b614a42", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-23T05:12:16.000Z" - }, - "end": { - "$date": "2022-01-23T05:25:58.000Z" - }, - "events": [ - { - "uuid": "917761af-6b03-4f9a-99f9-181ff03952f0", - "start": { - "$date": "2022-01-23T05:12:16.000Z" - }, - "end": { - "$date": "2022-01-23T05:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04f230af-0623-405a-8c8d-e00e9704f708", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T05:41:34.000Z" - }, - "end": { - "$date": "2022-01-23T05:59:15.000Z" - }, - "events": [ - { - "uuid": "bd3a4760-1a78-49f8-b265-2afa812bba1c", - "start": { - "$date": "2022-01-23T05:41:34.000Z" - }, - "end": { - "$date": "2022-01-23T05:59:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ead1f8b-f492-4cfc-af9c-e6651c2e4937", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T06:01:15.000Z" - }, - "end": { - "$date": "2022-01-23T06:25:56.000Z" - }, - "events": [ - { - "uuid": "e237455d-5ad3-422f-a8d3-9463b9b83a10", - "start": { - "$date": "2022-01-23T06:01:15.000Z" - }, - "end": { - "$date": "2022-01-23T06:25:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cc9188e9-3042-4785-9288-c24d3ce0b7e6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-23T05:59:56.000Z" - }, - "end": { - "$date": "2022-01-23T08:48:45.000Z" - }, - "events": [ - { - "uuid": "0950c62e-dd69-42e9-be19-2ba7d2fb630c", - "start": { - "$date": "2022-01-23T05:59:56.000Z" - }, - "end": { - "$date": "2022-01-23T08:48:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3ad7559e-334c-4a01-b3f3-dfb8a0f3521f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-23T06:08:59.000Z" - }, - "end": { - "$date": "2022-01-23T07:31:37.000Z" - }, - "events": [ - { - "uuid": "1ff31608-de8d-4487-9d70-511a35a0068a", - "start": { - "$date": "2022-01-23T06:08:59.000Z" - }, - "end": { - "$date": "2022-01-23T07:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4528a3c7-d4ac-42c4-bc3d-d608a97abef8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T06:28:31.000Z" - }, - "end": { - "$date": "2022-01-23T06:46:17.000Z" - }, - "events": [ - { - "uuid": "65fc8462-c606-4cb5-89bf-3f6936e9334f", - "start": { - "$date": "2022-01-23T06:28:31.000Z" - }, - "end": { - "$date": "2022-01-23T06:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da1c60bd-696a-42e6-b745-1761355169aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T06:03:31.000Z" - }, - "end": { - "$date": "2022-01-23T07:50:52.000Z" - }, - "events": [ - { - "uuid": "993f8996-155f-4002-b444-400c5d83ad18", - "start": { - "$date": "2022-01-23T06:03:31.000Z" - }, - "end": { - "$date": "2022-01-23T07:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "46579200-c999-4242-ad06-81f6dc63503c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-23T07:20:06.000Z" - }, - "end": { - "$date": "2022-01-23T10:02:07.000Z" - }, - "events": [ - { - "uuid": "04d331da-e92a-476b-8201-55ba81b19777", - "start": { - "$date": "2022-01-23T07:20:06.000Z" - }, - "end": { - "$date": "2022-01-23T10:02:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a283bdb-5966-4a65-986e-94d618549451", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T08:36:56.000Z" - }, - "end": { - "$date": "2022-01-23T09:02:10.000Z" - }, - "events": [ - { - "uuid": "cd8e810b-e257-406a-946a-05c10caac286", - "start": { - "$date": "2022-01-23T08:36:56.000Z" - }, - "end": { - "$date": "2022-01-23T09:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2688b62d-e0f2-418a-b671-11112bedd998", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-23T09:01:42.000Z" - }, - "end": { - "$date": "2022-01-23T10:44:21.000Z" - }, - "events": [ - { - "uuid": "9e415973-7def-4634-b8d5-85da2d3068b1", - "start": { - "$date": "2022-01-23T09:01:42.000Z" - }, - "end": { - "$date": "2022-01-23T10:44:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ecb2c38-3761-438a-b8c1-3b33bb00db81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T09:09:32.000Z" - }, - "end": { - "$date": "2022-01-23T09:53:27.000Z" - }, - "events": [ - { - "uuid": "c07da0dd-3c01-4e0d-a7e9-74f1c60c51a2", - "start": { - "$date": "2022-01-23T09:09:32.000Z" - }, - "end": { - "$date": "2022-01-23T09:53:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "67de8d66-59e9-476e-a4e1-738b037843a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-23T13:07:03.000Z" - }, - "end": { - "$date": "2022-01-23T14:03:22.000Z" - }, - "events": [ - { - "uuid": "22383865-2fb5-41f8-a903-4bbd2ddd4b4d", - "start": { - "$date": "2022-01-23T13:07:03.000Z" - }, - "end": { - "$date": "2022-01-23T14:03:22.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3f3a2721-fc93-489b-b576-deca01389dfe", - "uuid": "8723902e-5f60-4fe6-ae65-5158750e71e4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-23T15:32:38.000Z" - }, - "end": { - "$date": "2022-01-23T15:53:09.000Z" - }, - "events": [ - { - "uuid": "39b39699-26a2-4051-a594-a368880d9cd3", - "start": { - "$date": "2022-01-23T15:32:38.000Z" - }, - "end": { - "$date": "2022-01-23T15:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "96cd224f-8585-4747-9b3e-5b3ea4fb014b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-23T16:35:39.000Z" - }, - "end": { - "$date": "2022-01-23T18:56:56.000Z" - }, - "events": [ - { - "uuid": "1a6b7a3d-ef54-4ae5-8ec4-45825c051750", - "start": { - "$date": "2022-01-23T16:35:39.000Z" - }, - "end": { - "$date": "2022-01-23T18:56:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "151c0abd-e1e9-40c1-aa65-37db6f7afe48", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T17:24:20.000Z" - }, - "end": { - "$date": "2022-01-23T18:07:35.000Z" - }, - "events": [ - { - "uuid": "e432d539-7e41-4daf-b205-0741c3793827", - "start": { - "$date": "2022-01-23T17:24:20.000Z" - }, - "end": { - "$date": "2022-01-23T18:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1acc7d8c-8690-44e9-b62e-0283700114ac", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T18:21:34.000Z" - }, - "end": { - "$date": "2022-01-23T18:24:06.000Z" - }, - "events": [ - { - "uuid": "c9821a05-de9d-442f-883d-80248b67aa30", - "start": { - "$date": "2022-01-23T18:21:34.000Z" - }, - "end": { - "$date": "2022-01-23T18:24:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a48f1e10-31e6-4ee1-9494-f44c7426f0ef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T18:28:06.000Z" - }, - "end": { - "$date": "2022-01-23T19:04:17.000Z" - }, - "events": [ - { - "uuid": "e98e2fa2-3dd4-4ec2-9c51-39b884e5a515", - "start": { - "$date": "2022-01-23T18:28:06.000Z" - }, - "end": { - "$date": "2022-01-23T19:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "207f935d-9fb3-4294-8d9d-cfd76e7c5081", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T18:47:43.000Z" - }, - "end": { - "$date": "2022-01-23T18:49:28.000Z" - }, - "events": [ - { - "uuid": "60d297df-e605-4739-92a1-45d63bde5350", - "start": { - "$date": "2022-01-23T18:47:43.000Z" - }, - "end": { - "$date": "2022-01-23T18:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "dad9beee-b400-41a2-a579-c6254819fc6c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T18:53:13.000Z" - }, - "end": { - "$date": "2022-01-23T18:54:33.000Z" - }, - "events": [ - { - "uuid": "9efc1885-977b-4949-be16-8f60146c00fd", - "start": { - "$date": "2022-01-23T18:53:13.000Z" - }, - "end": { - "$date": "2022-01-23T18:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3fbb3bac-b8b4-426a-9c8b-b47c44277782", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T19:09:05.000Z" - }, - "end": { - "$date": "2022-01-23T20:09:47.000Z" - }, - "events": [ - { - "uuid": "da5ad552-68fe-4d9e-a334-f8344861441b", - "start": { - "$date": "2022-01-23T19:09:05.000Z" - }, - "end": { - "$date": "2022-01-23T20:09:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "357757ff-e3a2-4fe1-8564-1ee10d53f17a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-23T19:09:38.000Z" - }, - "end": { - "$date": "2022-01-23T19:14:13.000Z" - }, - "events": [ - { - "uuid": "f0312b77-b62a-4d47-9333-1debe6fc47b2", - "start": { - "$date": "2022-01-23T19:09:38.000Z" - }, - "end": { - "$date": "2022-01-23T19:14:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "3eaa8d95-de9f-496c-a3b6-01c85783a8a8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T19:13:05.000Z" - }, - "end": { - "$date": "2022-01-23T19:14:25.000Z" - }, - "events": [ - { - "uuid": "8db4f2c5-4ea2-4a39-b1f1-323421b0ca1b", - "start": { - "$date": "2022-01-23T19:13:05.000Z" - }, - "end": { - "$date": "2022-01-23T19:14:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "8aca969b-cef1-4788-bbeb-d134e074d0ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-23T19:14:28.000Z" - }, - "end": { - "$date": "2022-01-23T20:17:33.000Z" - }, - "events": [ - { - "uuid": "d6d72242-0aa4-4e98-8900-13b76fc90cc9", - "start": { - "$date": "2022-01-23T19:14:28.000Z" - }, - "end": { - "$date": "2022-01-23T19:57:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "53e88620-3e37-4a94-91dd-5e30f378ba49", - "start": { - "$date": "2022-01-23T19:57:28.000Z" - }, - "end": { - "$date": "2022-01-23T19:58:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "12910210-5445-48fe-9b64-d795c2c685e1", - "start": { - "$date": "2022-01-23T19:58:28.000Z" - }, - "end": { - "$date": "2022-01-23T20:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12de0d89-6659-4b12-8d86-e207ea5e0444", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T19:27:35.000Z" - }, - "end": { - "$date": "2022-01-23T19:57:49.000Z" - }, - "events": [ - { - "uuid": "3987978c-94ea-49a8-a5c2-f9d9c97d532a", - "start": { - "$date": "2022-01-23T19:27:35.000Z" - }, - "end": { - "$date": "2022-01-23T19:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "0fe056bf-d1d5-4a27-96ee-4180735eca76", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T19:37:52.000Z" - }, - "end": { - "$date": "2022-01-23T19:41:17.000Z" - }, - "events": [ - { - "uuid": "50316414-8839-4dec-92bd-a98dca33db93", - "start": { - "$date": "2022-01-23T19:37:52.000Z" - }, - "end": { - "$date": "2022-01-23T19:41:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "a3c22908-18b1-45f8-8405-2eec7ebb6b46", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T19:42:22.000Z" - }, - "end": { - "$date": "2022-01-23T19:43:47.000Z" - }, - "events": [ - { - "uuid": "6c33a2f5-accb-4aa5-af20-0dfbe636f662", - "start": { - "$date": "2022-01-23T19:42:22.000Z" - }, - "end": { - "$date": "2022-01-23T19:43:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "6dd79ded-b7c7-4ed0-9700-3304496334df", - "uuid": "0520e8a8-cb89-4c5e-9c95-99a15da5d758", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T19:44:07.000Z" - }, - "end": { - "$date": "2022-01-23T20:17:45.000Z" - }, - "events": [ - { - "uuid": "3fb52c4b-42d8-40bb-93f4-ea9500105029", - "start": { - "$date": "2022-01-23T19:44:07.000Z" - }, - "end": { - "$date": "2022-01-23T20:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a1db1dc-7003-4fb3-b96c-24a1e5586ea2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-23T20:21:50.000Z" - }, - "end": { - "$date": "2022-01-23T20:58:40.000Z" - }, - "events": [ - { - "uuid": "f6e7320b-f8f9-4c5b-9fc5-d0023df8ff67", - "start": { - "$date": "2022-01-23T20:21:50.000Z" - }, - "end": { - "$date": "2022-01-23T20:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb497d9d-5c77-449d-83c2-cbafc2a5efa9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T20:21:53.000Z" - }, - "end": { - "$date": "2022-01-23T20:58:49.000Z" - }, - "events": [ - { - "uuid": "5214fc9b-4a02-4d31-9558-cda9c6c9c672", - "start": { - "$date": "2022-01-23T20:21:53.000Z" - }, - "end": { - "$date": "2022-01-23T20:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e919544-fc82-4f03-8b36-033d147d7594", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T20:21:41.000Z" - }, - "end": { - "$date": "2022-01-23T20:58:48.000Z" - }, - "events": [ - { - "uuid": "e6c63795-9ef3-4cd5-b344-0e090af7e02f", - "start": { - "$date": "2022-01-23T20:21:41.000Z" - }, - "end": { - "$date": "2022-01-23T20:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81bb303b-f571-425e-b8bf-379b9c149879", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-23T20:17:46.000Z" - }, - "end": { - "$date": "2022-01-23T20:33:45.000Z" - }, - "events": [ - { - "uuid": "d66f8da5-168f-4381-a1bb-7a20c24652a4", - "start": { - "$date": "2022-01-23T20:17:46.000Z" - }, - "end": { - "$date": "2022-01-23T20:33:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2e9c69bb-6552-49a8-88db-f14621169767", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T20:17:54.000Z" - }, - "end": { - "$date": "2022-01-23T20:20:50.000Z" - }, - "events": [ - { - "uuid": "f16f32ae-853d-4f8d-b87b-02c68c317fc1", - "start": { - "$date": "2022-01-23T20:17:54.000Z" - }, - "end": { - "$date": "2022-01-23T20:20:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d9777cbf-3b23-47c2-8174-68623be4406d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T20:39:41.000Z" - }, - "end": { - "$date": "2022-01-23T22:07:44.000Z" - }, - "events": [ - { - "uuid": "7b526f64-3696-49a2-bf17-5d1488624fae", - "start": { - "$date": "2022-01-23T20:39:41.000Z" - }, - "end": { - "$date": "2022-01-23T22:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83d441b7-9204-4638-9077-2b524defa51d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-23T20:50:50.000Z" - }, - "end": { - "$date": "2022-01-23T21:12:07.000Z" - }, - "events": [ - { - "uuid": "eb71ee39-edbe-48db-9997-f0cd88adcb4f", - "start": { - "$date": "2022-01-23T20:50:50.000Z" - }, - "end": { - "$date": "2022-01-23T21:12:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f69e0086-3edd-4176-9980-7c215db131eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-23T21:00:27.000Z" - }, - "end": { - "$date": "2022-01-23T21:02:34.000Z" - }, - "events": [ - { - "uuid": "30e9a361-8884-416b-adda-0f8292dd2b1f", - "start": { - "$date": "2022-01-23T21:00:27.000Z" - }, - "end": { - "$date": "2022-01-23T21:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca884220-f2d8-444c-8b12-c82b4b7104bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T21:00:46.000Z" - }, - "end": { - "$date": "2022-01-23T21:02:32.000Z" - }, - "events": [ - { - "uuid": "9fc18bd4-894a-459c-b1ab-235b219cf7cb", - "start": { - "$date": "2022-01-23T21:00:46.000Z" - }, - "end": { - "$date": "2022-01-23T21:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9097ce3e-b436-4250-a888-500799ccd7ec", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T21:00:44.000Z" - }, - "end": { - "$date": "2022-01-23T21:02:31.000Z" - }, - "events": [ - { - "uuid": "148e127f-df59-42cb-9b2a-2a5d9e4a4855", - "start": { - "$date": "2022-01-23T21:00:44.000Z" - }, - "end": { - "$date": "2022-01-23T21:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a6a8e45-6e7a-4f53-b30e-e1c8b0d05e6e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T21:20:27.000Z" - }, - "end": { - "$date": "2022-01-23T21:43:54.000Z" - }, - "events": [ - { - "uuid": "0c357f90-a13f-4c0c-966f-fd193a05ff41", - "start": { - "$date": "2022-01-23T21:20:27.000Z" - }, - "end": { - "$date": "2022-01-23T21:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "75f2f5fa-929d-47ef-8f4b-b030d0bd84f6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-23T21:05:31.000Z" - }, - "end": { - "$date": "2022-01-23T21:49:12.000Z" - }, - "events": [ - { - "uuid": "cfc7df06-a667-466b-ab74-e9092aef5434", - "start": { - "$date": "2022-01-23T21:05:31.000Z" - }, - "end": { - "$date": "2022-01-23T21:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a26034d4-cc6d-4581-b133-fcb0b3d81d8d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T21:20:18.000Z" - }, - "end": { - "$date": "2022-01-23T21:43:59.000Z" - }, - "events": [ - { - "uuid": "2e18ac20-f123-40c5-abf4-e931a12290ae", - "start": { - "$date": "2022-01-23T21:20:18.000Z" - }, - "end": { - "$date": "2022-01-23T21:43:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b22ff3d2-811b-4868-b1e4-41e607f078ab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-23T21:53:04.000Z" - }, - "end": { - "$date": "2022-01-23T22:27:42.000Z" - }, - "events": [ - { - "uuid": "f231ecec-3a65-4f5b-b4f6-b49901672ecd", - "start": { - "$date": "2022-01-23T21:53:04.000Z" - }, - "end": { - "$date": "2022-01-23T22:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25155cca-5ff3-41ad-bbe4-8dbd3b1cd703", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T21:52:54.000Z" - }, - "end": { - "$date": "2022-01-23T22:27:40.000Z" - }, - "events": [ - { - "uuid": "ca383f8b-f31c-4353-98d0-6d6a6ff44392", - "start": { - "$date": "2022-01-23T21:52:54.000Z" - }, - "end": { - "$date": "2022-01-23T22:27:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd580597-dd67-4d8b-bfab-4d0c5fed03f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-23T21:52:57.000Z" - }, - "end": { - "$date": "2022-01-23T22:27:33.000Z" - }, - "events": [ - { - "uuid": "fa91bbfe-df88-4367-8b58-4d7227607521", - "start": { - "$date": "2022-01-23T21:52:57.000Z" - }, - "end": { - "$date": "2022-01-23T22:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8d3c3dd-661f-43a3-92cf-5d5b260494ac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T21:52:40.000Z" - }, - "end": { - "$date": "2022-01-23T22:07:29.000Z" - }, - "events": [ - { - "uuid": "4d55b6e1-a7d1-4015-8b6a-d753c586dd79", - "start": { - "$date": "2022-01-23T21:52:40.000Z" - }, - "end": { - "$date": "2022-01-23T22:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa5910f6-be57-49e6-9a67-2dcc68eaf54f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T22:09:41.000Z" - }, - "end": { - "$date": "2022-01-23T22:34:40.000Z" - }, - "events": [ - { - "uuid": "8428fa4b-fca6-43e1-b6a1-dc5800c1da9c", - "start": { - "$date": "2022-01-23T22:09:41.000Z" - }, - "end": { - "$date": "2022-01-23T22:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a3f9558-9e42-4ba0-a599-183df1fd0929", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T22:36:36.000Z" - }, - "end": { - "$date": "2022-01-23T23:18:12.000Z" - }, - "events": [ - { - "uuid": "015b1eed-2098-404a-9062-8433ffdd443f", - "start": { - "$date": "2022-01-23T22:36:36.000Z" - }, - "end": { - "$date": "2022-01-23T23:18:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c672ce5-d644-4134-a5d1-39ab349473e6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T22:37:22.000Z" - }, - "end": { - "$date": "2022-01-23T22:55:24.000Z" - }, - "events": [ - { - "uuid": "b62081d2-6601-4b67-87ab-eebf1563727c", - "start": { - "$date": "2022-01-23T22:37:22.000Z" - }, - "end": { - "$date": "2022-01-23T22:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9919982e-5c30-4401-9a91-75c957fefdd3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-23T22:38:27.000Z" - }, - "end": { - "$date": "2022-01-23T23:13:59.000Z" - }, - "events": [ - { - "uuid": "43072f35-a0ae-43dc-8818-db724aac280d", - "start": { - "$date": "2022-01-23T22:38:27.000Z" - }, - "end": { - "$date": "2022-01-23T23:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e18845-c2ed-40dd-9158-46f8366c2199", - "uuid": "8b1828d1-b9f5-4505-996c-29ccc26f05a1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-23T22:39:08.000Z" - }, - "end": { - "$date": "2022-01-23T22:45:55.000Z" - }, - "events": [ - { - "uuid": "b2c999d0-8419-4476-87ed-0b24711847b8", - "start": { - "$date": "2022-01-23T22:39:08.000Z" - }, - "end": { - "$date": "2022-01-23T22:45:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "149b5f7f-956e-4db9-85e9-e29aac7862be", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T22:57:38.000Z" - }, - "end": { - "$date": "2022-01-23T23:21:29.000Z" - }, - "events": [ - { - "uuid": "d68450b5-ae9d-480d-8d22-2bd145026665", - "start": { - "$date": "2022-01-23T22:57:38.000Z" - }, - "end": { - "$date": "2022-01-23T23:21:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "38bd0af5-3cbb-4d7b-b619-e22a93a5374b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-23T23:08:45.000Z" - }, - "end": { - "$date": "2022-01-23T23:08:02.000Z" - }, - "events": [ - { - "uuid": "fa8efcb8-b781-49d3-97d0-be862c257e48", - "start": { - "$date": "2022-01-23T23:08:45.000Z" - }, - "end": { - "$date": "2022-01-23T23:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e18845-c2ed-40dd-9158-46f8366c2199", - "uuid": "b44c0080-d48d-49f2-a7b1-9eb38906e2c0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-23T23:09:16.000Z" - }, - "end": { - "$date": "2022-01-23T23:19:09.000Z" - }, - "events": [ - { - "uuid": "70e69565-a608-417d-800a-a068d01d2613", - "start": { - "$date": "2022-01-23T23:09:16.000Z" - }, - "end": { - "$date": "2022-01-23T23:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d509bc8-c18a-4c3e-86cc-4edbbcdeb0e4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-23T23:14:45.000Z" - }, - "end": { - "$date": "2022-01-23T23:35:42.000Z" - }, - "events": [ - { - "uuid": "2b8300c0-b4e0-4f74-8419-29d22e5e432f", - "start": { - "$date": "2022-01-23T23:14:45.000Z" - }, - "end": { - "$date": "2022-01-23T23:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "91e18845-c2ed-40dd-9158-46f8366c2199", - "uuid": "72400aee-a06f-4ed7-acf8-c764a91b4568", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-23T23:20:22.000Z" - }, - "end": { - "$date": "2022-01-23T23:24:25.000Z" - }, - "events": [ - { - "uuid": "15b47467-7516-42a1-bf1e-97b430f1ea1d", - "start": { - "$date": "2022-01-23T23:20:22.000Z" - }, - "end": { - "$date": "2022-01-23T23:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ec902cf-f6f6-4910-a213-36625df9c6e9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T23:24:14.000Z" - }, - "end": { - "$date": "2022-01-23T23:56:58.000Z" - }, - "events": [ - { - "uuid": "8e9bef7b-4787-4d2d-81fd-f09c4f665e41", - "start": { - "$date": "2022-01-23T23:24:14.000Z" - }, - "end": { - "$date": "2022-01-23T23:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "fa6bd6ef-9ca3-4511-b84e-7ade8684beef", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-23T23:37:23.000Z" - }, - "end": { - "$date": "2022-01-24T00:37:11.000Z" - }, - "events": [ - { - "uuid": "63c67c6f-b651-4b77-9225-d73f75080944", - "start": { - "$date": "2022-01-23T23:37:23.000Z" - }, - "end": { - "$date": "2022-01-24T00:37:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "93aa9d75-623b-4695-ab42-74eea9c74ec8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-23T23:46:41.000Z" - }, - "end": { - "$date": "2022-01-24T01:01:11.000Z" - }, - "events": [ - { - "uuid": "51472736-c79b-4706-9807-343cbc39e777", - "start": { - "$date": "2022-01-23T23:46:41.000Z" - }, - "end": { - "$date": "2022-01-24T01:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f04d386-f94a-4c96-adf4-a703b9783e1e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-23T23:58:53.000Z" - }, - "end": { - "$date": "2022-01-24T00:28:56.000Z" - }, - "events": [ - { - "uuid": "89b14ffd-2e79-4162-a577-2f777c7eda89", - "start": { - "$date": "2022-01-23T23:58:53.000Z" - }, - "end": { - "$date": "2022-01-24T00:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "aabbb23b-1a42-4d9f-8040-e50125c96525", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-24T00:19:47.000Z" - }, - "end": { - "$date": "2022-01-24T00:49:31.000Z" - }, - "events": [ - { - "uuid": "330faf71-7326-4ebb-b421-5728e218f5aa", - "start": { - "$date": "2022-01-24T00:19:47.000Z" - }, - "end": { - "$date": "2022-01-24T00:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "859d58e0-9633-4459-8c00-996d25d2cf7a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T00:29:46.000Z" - }, - "end": { - "$date": "2022-01-24T01:10:11.000Z" - }, - "events": [ - { - "uuid": "45eb398e-1217-459f-a638-ba9467973f7b", - "start": { - "$date": "2022-01-24T00:29:46.000Z" - }, - "end": { - "$date": "2022-01-24T01:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "72ea8fe5-9a2a-49e6-84ea-a76241f1d046", - "uuid": "fb23ea8d-6b3c-422f-921c-4157dc5989a9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-24T00:37:21.000Z" - }, - "end": { - "$date": "2022-01-24T06:30:09.000Z" - }, - "events": [ - { - "uuid": "b60cd051-5089-4ef3-8cc5-d2276bca2a47", - "start": { - "$date": "2022-01-24T00:37:21.000Z" - }, - "end": { - "$date": "2022-01-24T06:30:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3b547963-6bcb-402d-8ff5-18e436e96576", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T01:14:06.000Z" - }, - "end": { - "$date": "2022-01-24T01:32:49.000Z" - }, - "events": [ - { - "uuid": "5ee27aa0-4d29-4092-8777-254ce9b6c71d", - "start": { - "$date": "2022-01-24T01:14:06.000Z" - }, - "end": { - "$date": "2022-01-24T01:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd086b64-0de0-4be9-9391-685a0487d2b1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T01:35:02.000Z" - }, - "end": { - "$date": "2022-01-24T01:50:25.000Z" - }, - "events": [ - { - "uuid": "6d3e1429-a012-4c49-a2a4-d347a779f700", - "start": { - "$date": "2022-01-24T01:35:02.000Z" - }, - "end": { - "$date": "2022-01-24T01:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3f06a904-9272-46ff-95da-ab198cec067c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-24T01:35:52.000Z" - }, - "end": { - "$date": "2022-01-24T02:07:28.000Z" - }, - "events": [ - { - "uuid": "edfc1045-61fc-45ca-b23b-0af584b0c481", - "start": { - "$date": "2022-01-24T01:35:52.000Z" - }, - "end": { - "$date": "2022-01-24T02:07:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b6eeb31d-0e41-4188-8c39-d4e364843f65", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T01:51:17.000Z" - }, - "end": { - "$date": "2022-01-24T01:59:04.000Z" - }, - "events": [ - { - "uuid": "3e127ef8-c4b3-4bae-a388-1dc5490a0c76", - "start": { - "$date": "2022-01-24T01:51:17.000Z" - }, - "end": { - "$date": "2022-01-24T01:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d94d60f3-d2f3-45b1-a57c-4a42294b8c6d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T02:04:23.000Z" - }, - "end": { - "$date": "2022-01-24T02:18:39.000Z" - }, - "events": [ - { - "uuid": "1ecd35ef-3615-40de-b35e-42dd21b07ce1", - "start": { - "$date": "2022-01-24T02:04:23.000Z" - }, - "end": { - "$date": "2022-01-24T02:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7458ba0e-0735-4e1a-9103-19b76bb6701f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-24T02:07:43.000Z" - }, - "end": { - "$date": "2022-01-24T02:40:28.000Z" - }, - "events": [ - { - "uuid": "d2b57cf2-298e-4209-9f52-608dd785f42d", - "start": { - "$date": "2022-01-24T02:07:43.000Z" - }, - "end": { - "$date": "2022-01-24T02:30:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d671ea8-11d3-493a-a450-bce8a7cade4f", - "start": { - "$date": "2022-01-24T02:30:43.000Z" - }, - "end": { - "$date": "2022-01-24T02:35:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7018b4e6-7ca7-4a82-a6ac-3dc96a629e72", - "start": { - "$date": "2022-01-24T02:35:43.000Z" - }, - "end": { - "$date": "2022-01-24T02:40:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a56e0789-ec5c-44a1-bfb1-56f979123c4f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T02:21:19.000Z" - }, - "end": { - "$date": "2022-01-24T02:46:29.000Z" - }, - "events": [ - { - "uuid": "472d0a2b-18fb-4217-8ad6-1834c5c36b3c", - "start": { - "$date": "2022-01-24T02:21:19.000Z" - }, - "end": { - "$date": "2022-01-24T02:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "dd185e06-8821-4985-8514-4b75b938a339", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-24T02:23:22.000Z" - }, - "end": { - "$date": "2022-01-24T04:21:21.000Z" - }, - "events": [ - { - "uuid": "0426c00f-cad2-445d-ae22-3880168d6427", - "start": { - "$date": "2022-01-24T02:23:22.000Z" - }, - "end": { - "$date": "2022-01-24T04:21:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "225a0597-eb0e-41d1-b23a-580aab89a084", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-24T02:36:57.000Z" - }, - "end": { - "$date": "2022-01-24T03:16:35.000Z" - }, - "events": [ - { - "uuid": "ec3afb3a-28b4-411d-98ca-c3f2e1ec71e5", - "start": { - "$date": "2022-01-24T02:36:57.000Z" - }, - "end": { - "$date": "2022-01-24T03:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5fd2dcbb-7821-4f06-a8b0-96801b7311ba", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T02:48:36.000Z" - }, - "end": { - "$date": "2022-01-24T03:15:54.000Z" - }, - "events": [ - { - "uuid": "cd697f97-5bf2-45c9-9dec-1d2060f31e88", - "start": { - "$date": "2022-01-24T02:48:36.000Z" - }, - "end": { - "$date": "2022-01-24T03:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "16260ed6-d6c0-4d39-8ca1-db1a464df1a5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-24T02:54:30.000Z" - }, - "end": { - "$date": "2022-01-24T03:45:38.000Z" - }, - "events": [ - { - "uuid": "a35cf5f2-5760-424e-ba83-05ff96169afe", - "start": { - "$date": "2022-01-24T02:54:30.000Z" - }, - "end": { - "$date": "2022-01-24T03:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "83a20ca3-9d0f-483a-8e14-61176ad42091", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-24T03:16:55.000Z" - }, - "end": { - "$date": "2022-01-24T04:35:30.000Z" - }, - "events": [ - { - "uuid": "b29cf10b-a3eb-42c6-a374-2d181d4a20eb", - "start": { - "$date": "2022-01-24T03:16:55.000Z" - }, - "end": { - "$date": "2022-01-24T04:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "223c6ec0-a671-4c7d-b112-12a25e863fff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T03:19:07.000Z" - }, - "end": { - "$date": "2022-01-24T03:34:23.000Z" - }, - "events": [ - { - "uuid": "35e39ce7-7d79-4de2-bbfb-780e81078282", - "start": { - "$date": "2022-01-24T03:19:07.000Z" - }, - "end": { - "$date": "2022-01-24T03:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a654dfa9-8eb2-4f99-b999-eb800de0405f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-24T03:25:27.000Z" - }, - "end": { - "$date": "2022-01-24T04:18:54.000Z" - }, - "events": [ - { - "uuid": "cf55f03d-c76b-47b8-b4a1-876fd5067d11", - "start": { - "$date": "2022-01-24T03:25:27.000Z" - }, - "end": { - "$date": "2022-01-24T04:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4e9e462f-fbc5-4f01-aeaa-69cf438edb6a", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-01-24T03:26:11.000Z" - }, - "end": { - "$date": "2022-01-24T04:39:48.000Z" - }, - "events": [ - { - "uuid": "d6ea5e04-4a0f-4d21-900a-4e75352d6700", - "start": { - "$date": "2022-01-24T03:26:11.000Z" - }, - "end": { - "$date": "2022-01-24T04:12:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b5dce97-8a61-4167-a4c9-0bf49374be96", - "start": { - "$date": "2022-01-24T04:12:11.000Z" - }, - "end": { - "$date": "2022-01-24T04:22:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "24e28cc3-0887-4def-b835-9b3b8dd7d096", - "start": { - "$date": "2022-01-24T04:22:11.000Z" - }, - "end": { - "$date": "2022-01-24T04:37:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d6da83c8-e1a1-4666-8a14-26595254fdeb", - "start": { - "$date": "2022-01-24T04:37:11.000Z" - }, - "end": { - "$date": "2022-01-24T04:39:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c29495b-3441-4417-83f2-da5b27f115f6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T04:09:55.000Z" - }, - "end": { - "$date": "2022-01-24T04:48:00.000Z" - }, - "events": [ - { - "uuid": "91785819-0ccb-445e-a89c-651d861a8c25", - "start": { - "$date": "2022-01-24T04:09:55.000Z" - }, - "end": { - "$date": "2022-01-24T04:48:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "f50233ea-eb1a-42ec-ae5a-e912e79860c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-24T03:39:52.000Z" - }, - "end": { - "$date": "2022-01-24T04:35:33.000Z" - }, - "events": [ - { - "uuid": "4a0dc2fc-fa2f-4259-b731-930cff0d5e6c", - "start": { - "$date": "2022-01-24T03:39:52.000Z" - }, - "end": { - "$date": "2022-01-24T04:35:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "3ee0e7c3-d5b4-4fa1-91ad-290a2eff6290", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-24T03:46:02.000Z" - }, - "end": { - "$date": "2022-01-24T03:52:03.000Z" - }, - "events": [ - { - "uuid": "10d24bd9-fda7-4f06-b75f-bd825248d22d", - "start": { - "$date": "2022-01-24T03:46:02.000Z" - }, - "end": { - "$date": "2022-01-24T03:52:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "35b45522-86e1-418b-ba85-fef9707636eb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-24T03:52:27.000Z" - }, - "end": { - "$date": "2022-01-24T05:43:06.000Z" - }, - "events": [ - { - "uuid": "be57b23e-a073-4057-bf4f-ac5bb2a339a0", - "start": { - "$date": "2022-01-24T03:52:27.000Z" - }, - "end": { - "$date": "2022-01-24T05:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8121a0d0-7ea9-47e6-9b97-0fcbc1a47503", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-24T04:30:34.000Z" - }, - "end": { - "$date": "2022-01-24T05:01:26.000Z" - }, - "events": [ - { - "uuid": "5d050a6b-8576-4d51-a7a3-fea9cd7746a4", - "start": { - "$date": "2022-01-24T04:30:34.000Z" - }, - "end": { - "$date": "2022-01-24T05:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "77524fd7-5762-4c9d-97d8-8ae5b4e210e5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-24T04:36:28.000Z" - }, - "end": { - "$date": "2022-01-24T04:58:41.000Z" - }, - "events": [ - { - "uuid": "35e8e31a-450b-44c5-b2f8-c57f2cfb52e9", - "start": { - "$date": "2022-01-24T04:36:28.000Z" - }, - "end": { - "$date": "2022-01-24T04:58:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "2983cef8-ecc2-4168-9e61-522cdce6f73b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-24T04:47:06.000Z" - }, - "end": { - "$date": "2022-01-24T05:07:57.000Z" - }, - "events": [ - { - "uuid": "15d16e81-3295-4a05-b2d4-917b2217df09", - "start": { - "$date": "2022-01-24T04:47:06.000Z" - }, - "end": { - "$date": "2022-01-24T05:07:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b543a676-dfd0-4a63-9b84-dfa42399835c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T04:50:20.000Z" - }, - "end": { - "$date": "2022-01-24T05:30:22.000Z" - }, - "events": [ - { - "uuid": "d31541c7-8f21-4313-97c0-b4a05fb560fc", - "start": { - "$date": "2022-01-24T04:50:20.000Z" - }, - "end": { - "$date": "2022-01-24T05:30:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a49fc451-6ad0-46f5-b85f-a210e316141b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-24T05:01:51.000Z" - }, - "end": { - "$date": "2022-01-24T06:22:45.000Z" - }, - "events": [ - { - "uuid": "f7ec0c7a-8cf4-41c5-bd08-1489bafd5496", - "start": { - "$date": "2022-01-24T05:01:51.000Z" - }, - "end": { - "$date": "2022-01-24T06:22:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6c3e829-d853-4c40-be89-3f0d074147ea", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T05:31:17.000Z" - }, - "end": { - "$date": "2022-01-24T06:07:30.000Z" - }, - "events": [ - { - "uuid": "c2d2ee36-9f10-4d64-bb74-9a3c19531555", - "start": { - "$date": "2022-01-24T05:31:17.000Z" - }, - "end": { - "$date": "2022-01-24T06:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a8a568cb-2344-4fd2-8a24-c3386789e143", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-24T05:41:46.000Z" - }, - "end": { - "$date": "2022-01-24T06:43:27.000Z" - }, - "events": [ - { - "uuid": "570267b8-bc55-4d40-97a7-578cf7894929", - "start": { - "$date": "2022-01-24T05:41:46.000Z" - }, - "end": { - "$date": "2022-01-24T06:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "0a889dbb-6bfb-4296-83d5-64c972d1cb3b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-24T05:46:24.000Z" - }, - "end": { - "$date": "2022-01-24T07:20:19.000Z" - }, - "events": [ - { - "uuid": "77e17a30-2773-45ed-924a-9c8de25abda1", - "start": { - "$date": "2022-01-24T05:46:24.000Z" - }, - "end": { - "$date": "2022-01-24T07:20:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbe9237a-9316-4b2a-a9e8-4ff309f81cb0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-24T06:03:37.000Z" - }, - "end": { - "$date": "2022-01-24T06:39:51.000Z" - }, - "events": [ - { - "uuid": "769c8d3b-f962-4b4b-89c6-b10d1d9f2a28", - "start": { - "$date": "2022-01-24T06:03:37.000Z" - }, - "end": { - "$date": "2022-01-24T06:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3de19c83-806e-4623-b551-8ce34dc189a3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T06:08:50.000Z" - }, - "end": { - "$date": "2022-01-24T06:46:24.000Z" - }, - "events": [ - { - "uuid": "87dac808-ab34-4a13-95f0-60fd6e9e8681", - "start": { - "$date": "2022-01-24T06:08:50.000Z" - }, - "end": { - "$date": "2022-01-24T06:46:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6625ba88-26fe-47fb-af32-fbd6013e71f7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T06:50:38.000Z" - }, - "end": { - "$date": "2022-01-24T07:30:31.000Z" - }, - "events": [ - { - "uuid": "2273a0ec-2670-4b2b-a065-6fe3cabf530e", - "start": { - "$date": "2022-01-24T06:50:38.000Z" - }, - "end": { - "$date": "2022-01-24T07:30:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ec06e2c8-da9b-48e7-83f1-c533820f2742", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-24T08:41:17.000Z" - }, - "end": { - "$date": "2022-01-24T10:59:14.000Z" - }, - "events": [ - { - "uuid": "42c97f51-8e4d-4e2e-b62c-661a3e9076ab", - "start": { - "$date": "2022-01-24T08:41:17.000Z" - }, - "end": { - "$date": "2022-01-24T10:59:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c0d615d1-f44d-460d-b8b7-8e7b63dea188", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-24T11:32:40.000Z" - }, - "end": { - "$date": "2022-01-24T17:22:19.000Z" - }, - "events": [ - { - "uuid": "4f0f345e-635e-4cde-98ae-bf8a445bd18d", - "start": { - "$date": "2022-01-24T11:32:40.000Z" - }, - "end": { - "$date": "2022-01-24T17:22:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ee3810d-95f7-4884-bea2-4ae248c3efba", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T17:14:19.000Z" - }, - "end": { - "$date": "2022-01-24T17:35:29.000Z" - }, - "events": [ - { - "uuid": "3871f14b-1770-47d9-8319-5b907360d9dd", - "start": { - "$date": "2022-01-24T17:14:19.000Z" - }, - "end": { - "$date": "2022-01-24T17:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50341a8b-0394-4add-b6a7-96cb1abe0c35", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T17:36:30.000Z" - }, - "end": { - "$date": "2022-01-24T17:58:46.000Z" - }, - "events": [ - { - "uuid": "23a62938-e05b-45a3-b348-37ba3f607627", - "start": { - "$date": "2022-01-24T17:36:30.000Z" - }, - "end": { - "$date": "2022-01-24T17:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23bb112d-75c1-4a66-a87e-ecb44c2da5a3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T18:00:01.000Z" - }, - "end": { - "$date": "2022-01-24T18:19:22.000Z" - }, - "events": [ - { - "uuid": "ab171c6d-8616-4ac0-8a5a-f6c728535ea9", - "start": { - "$date": "2022-01-24T18:00:01.000Z" - }, - "end": { - "$date": "2022-01-24T18:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bc26de3-cf0f-484b-b018-d8cc2563fe91", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T18:19:28.000Z" - }, - "end": { - "$date": "2022-01-24T18:31:01.000Z" - }, - "events": [ - { - "uuid": "d6440cf4-f7c2-44dd-8b2a-136e4717b0ef", - "start": { - "$date": "2022-01-24T18:19:28.000Z" - }, - "end": { - "$date": "2022-01-24T18:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c3903368-30da-4f3b-b0a7-c949719c9d03", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T21:28:02.000Z" - }, - "end": { - "$date": "2022-01-24T21:33:38.000Z" - }, - "events": [ - { - "uuid": "922469b9-c14e-4def-ba39-36db9a6f9bf9", - "start": { - "$date": "2022-01-24T21:28:02.000Z" - }, - "end": { - "$date": "2022-01-24T21:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "1259e25c-a73d-42e7-9d3b-86e8e3f7c018", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-24T21:33:42.000Z" - }, - "end": { - "$date": "2022-01-24T21:50:54.000Z" - }, - "events": [ - { - "uuid": "7da32306-0121-4965-86ae-b28b4f8129e9", - "start": { - "$date": "2022-01-24T21:33:42.000Z" - }, - "end": { - "$date": "2022-01-24T21:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c1a7cd6-b328-42de-a1d8-fe693d2573fc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T23:12:07.000Z" - }, - "end": { - "$date": "2022-01-24T23:28:58.000Z" - }, - "events": [ - { - "uuid": "160c93cb-d5ea-4b43-8759-25240d6737bb", - "start": { - "$date": "2022-01-24T23:12:07.000Z" - }, - "end": { - "$date": "2022-01-24T23:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04dcb66e-c5f1-4594-a635-0b9584c45763", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T23:30:08.000Z" - }, - "end": { - "$date": "2022-01-24T23:51:44.000Z" - }, - "events": [ - { - "uuid": "d5ccdddd-0ae5-4ba4-abc7-c891f2ee8719", - "start": { - "$date": "2022-01-24T23:30:08.000Z" - }, - "end": { - "$date": "2022-01-24T23:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "98d81bf6-dea3-48a9-bea5-9145fe862dda", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-25T02:14:34.000Z" - }, - "end": { - "$date": "2022-01-25T02:14:40.000Z" - }, - "events": [ - { - "uuid": "feaa0e68-ef59-44d0-96b3-bc7df35978de", - "start": { - "$date": "2022-01-25T02:14:34.000Z" - }, - "end": { - "$date": "2022-01-25T02:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16917fb3-f046-4af8-b23a-d53f3482d5b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-24T23:44:27.000Z" - }, - "end": { - "$date": "2022-01-25T00:08:24.000Z" - }, - "events": [ - { - "uuid": "18c9f3a3-4e12-4a4a-8b8f-20ee6388cd1c", - "start": { - "$date": "2022-01-24T23:44:27.000Z" - }, - "end": { - "$date": "2022-01-25T00:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12df91ef-0dd3-41e6-bced-04dcb70b20d9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-24T23:52:39.000Z" - }, - "end": { - "$date": "2022-01-25T00:09:04.000Z" - }, - "events": [ - { - "uuid": "67d830d5-a53a-4d87-906f-97a82550874d", - "start": { - "$date": "2022-01-24T23:52:39.000Z" - }, - "end": { - "$date": "2022-01-25T00:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ed86c73c-10fb-4fe2-af2c-cb1b99227c60", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-25T00:12:05.000Z" - }, - "end": { - "$date": "2022-01-25T00:34:41.000Z" - }, - "events": [ - { - "uuid": "e3b87f0d-f6bf-4b11-aac8-fcaa7172da41", - "start": { - "$date": "2022-01-25T00:12:05.000Z" - }, - "end": { - "$date": "2022-01-25T00:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07429453-d255-45ce-8586-cbce0b27ae9c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-25T00:21:08.000Z" - }, - "end": { - "$date": "2022-01-25T00:39:31.000Z" - }, - "events": [ - { - "uuid": "075f62e3-a6f8-4743-ad76-e21380331fd7", - "start": { - "$date": "2022-01-25T00:21:08.000Z" - }, - "end": { - "$date": "2022-01-25T00:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec821d1a-5453-43c3-86ec-a5556de01b6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-25T00:21:14.000Z" - }, - "end": { - "$date": "2022-01-25T00:39:42.000Z" - }, - "events": [ - { - "uuid": "34120edf-561e-45a5-9c84-da4d5c419177", - "start": { - "$date": "2022-01-25T00:21:14.000Z" - }, - "end": { - "$date": "2022-01-25T00:39:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f33ae2d5-5fbe-4254-98a5-e473a208f91b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-25T00:48:31.000Z" - }, - "end": { - "$date": "2022-01-25T01:09:46.000Z" - }, - "events": [ - { - "uuid": "9c90216b-d3fc-4c08-9743-aac7eff02200", - "start": { - "$date": "2022-01-25T00:48:31.000Z" - }, - "end": { - "$date": "2022-01-25T01:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1958297d-b3a0-440d-8807-481b837e40d9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-25T00:45:01.000Z" - }, - "end": { - "$date": "2022-01-25T01:09:00.000Z" - }, - "events": [ - { - "uuid": "3f0cb507-831e-405d-a5d3-cb42baf83e4e", - "start": { - "$date": "2022-01-25T00:45:01.000Z" - }, - "end": { - "$date": "2022-01-25T01:09:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce71dc7b-556d-47d6-b5bd-9bfb3b4466d8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-25T01:03:30.000Z" - }, - "end": { - "$date": "2022-01-25T01:48:57.000Z" - }, - "events": [ - { - "uuid": "2475788c-c348-4b2e-a2e9-dcb3fcb9a0f4", - "start": { - "$date": "2022-01-25T01:03:30.000Z" - }, - "end": { - "$date": "2022-01-25T01:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7842ea6-b53d-40d2-9ea9-f3f91a6e25d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-25T01:15:07.000Z" - }, - "end": { - "$date": "2022-01-25T01:55:56.000Z" - }, - "events": [ - { - "uuid": "48227d7f-e7e0-4362-9a4c-708a6c382aab", - "start": { - "$date": "2022-01-25T01:15:07.000Z" - }, - "end": { - "$date": "2022-01-25T01:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "339b7c34-53e6-432d-bd4c-da3aaedd5d11", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-25T01:37:21.000Z" - }, - "end": { - "$date": "2022-01-25T02:00:21.000Z" - }, - "events": [ - { - "uuid": "fe19802b-4aa5-4abf-a0b7-93ded79d746e", - "start": { - "$date": "2022-01-25T01:37:21.000Z" - }, - "end": { - "$date": "2022-01-25T02:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "880313c9-559a-49d3-a7a8-73ef387da787", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-25T02:03:13.000Z" - }, - "end": { - "$date": "2022-01-25T04:26:05.000Z" - }, - "events": [ - { - "uuid": "d4ae7de1-e769-4df6-8818-c0255b4def65", - "start": { - "$date": "2022-01-25T02:03:13.000Z" - }, - "end": { - "$date": "2022-01-25T04:26:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa2e5166-9681-4b05-9e7a-50ea0e6a0879", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-25T03:09:24.000Z" - }, - "end": { - "$date": "2022-01-25T03:31:45.000Z" - }, - "events": [ - { - "uuid": "fb4a7088-c046-45d1-a73f-5112cd0f94c9", - "start": { - "$date": "2022-01-25T03:09:24.000Z" - }, - "end": { - "$date": "2022-01-25T03:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "2e80d156-6f8d-4af0-b955-382ca1598922", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-25T03:25:19.000Z" - }, - "end": { - "$date": "2022-01-25T04:14:42.000Z" - }, - "events": [ - { - "uuid": "4efcff1d-e088-4f1a-b061-576a2269054e", - "start": { - "$date": "2022-01-25T03:25:19.000Z" - }, - "end": { - "$date": "2022-01-25T04:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "a400b2c1-21d5-42e9-b6c1-fe309cb16357", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-25T03:25:28.000Z" - }, - "end": { - "$date": "2022-01-25T05:31:52.000Z" - }, - "events": [ - { - "uuid": "5cf925a6-8b83-4f31-aec1-86a977f6f14c", - "start": { - "$date": "2022-01-25T03:25:28.000Z" - }, - "end": { - "$date": "2022-01-25T05:31:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4212f46-5c36-4855-9356-6764fa6daca8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-25T03:34:45.000Z" - }, - "end": { - "$date": "2022-01-25T03:49:36.000Z" - }, - "events": [ - { - "uuid": "cfd88165-d53b-4014-94af-d09f08b3482e", - "start": { - "$date": "2022-01-25T03:34:45.000Z" - }, - "end": { - "$date": "2022-01-25T03:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d8065d5a-6a08-4495-9314-181accc4d387", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T03:42:13.000Z" - }, - "end": { - "$date": "2022-01-25T04:40:32.000Z" - }, - "events": [ - { - "uuid": "ac880252-cbeb-4a1a-bd59-483eae09bd12", - "start": { - "$date": "2022-01-25T03:42:13.000Z" - }, - "end": { - "$date": "2022-01-25T04:40:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1a34bd88-20ed-40fe-91f2-09003c8e8df0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-25T03:49:52.000Z" - }, - "end": { - "$date": "2022-01-25T06:22:57.000Z" - }, - "events": [ - { - "uuid": "4a3344de-7782-43a1-bb47-501b92e27a69", - "start": { - "$date": "2022-01-25T03:49:52.000Z" - }, - "end": { - "$date": "2022-01-25T06:22:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e908c875-90f0-42a9-9913-7abf2e602b83", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-25T03:52:21.000Z" - }, - "end": { - "$date": "2022-01-25T04:19:33.000Z" - }, - "events": [ - { - "uuid": "7cf97bfc-c100-4bc9-b5e8-db7cc33953da", - "start": { - "$date": "2022-01-25T03:52:21.000Z" - }, - "end": { - "$date": "2022-01-25T04:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ad3f3254-44c5-40e7-bb21-8e67c7896570", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-25T04:19:55.000Z" - }, - "end": { - "$date": "2022-01-25T04:46:12.000Z" - }, - "events": [ - { - "uuid": "d1790d2e-4007-417f-a34e-efa9ec48d93f", - "start": { - "$date": "2022-01-25T04:19:55.000Z" - }, - "end": { - "$date": "2022-01-25T04:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ea5e1b5-59f7-4749-87a7-2f7d8ebed1ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-25T04:23:18.000Z" - }, - "end": { - "$date": "2022-01-25T04:47:54.000Z" - }, - "events": [ - { - "uuid": "cd5bca8e-c649-40ae-8689-e3328904c7df", - "start": { - "$date": "2022-01-25T04:23:18.000Z" - }, - "end": { - "$date": "2022-01-25T04:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49323829-601a-4059-939d-d843d3fc12f8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-25T04:50:54.000Z" - }, - "end": { - "$date": "2022-01-25T05:10:05.000Z" - }, - "events": [ - { - "uuid": "4ebcfdf6-9873-4029-b64c-bd836fe7737f", - "start": { - "$date": "2022-01-25T04:50:54.000Z" - }, - "end": { - "$date": "2022-01-25T05:10:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb4bc946-3475-4142-8d1e-0a1c58ff098c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-25T05:14:55.000Z" - }, - "end": { - "$date": "2022-01-25T05:37:16.000Z" - }, - "events": [ - { - "uuid": "47efe2f9-0a89-47bd-b154-c81866bfdb66", - "start": { - "$date": "2022-01-25T05:14:55.000Z" - }, - "end": { - "$date": "2022-01-25T05:37:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0c64cbc5-227c-484e-b54a-14e3c46aed00", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-25T05:55:10.000Z" - }, - "end": { - "$date": "2022-01-25T05:58:20.000Z" - }, - "events": [ - { - "uuid": "06cc74fc-0a9a-406a-8e90-9039d242460b", - "start": { - "$date": "2022-01-25T05:55:10.000Z" - }, - "end": { - "$date": "2022-01-25T05:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98822329-d0b0-47b8-895a-7adc9acc344a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-25T06:05:06.000Z" - }, - "end": { - "$date": "2022-01-25T06:30:27.000Z" - }, - "events": [ - { - "uuid": "acb73c12-cc8d-4876-874e-75c3673810a8", - "start": { - "$date": "2022-01-25T06:05:06.000Z" - }, - "end": { - "$date": "2022-01-25T06:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "19e4754f-7a1f-4bd9-b1b7-8c9d4ecf427b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-25T06:23:15.000Z" - }, - "end": { - "$date": "2022-01-25T06:53:42.000Z" - }, - "events": [ - { - "uuid": "24f887ed-09ea-4d61-a850-7e622f92e695", - "start": { - "$date": "2022-01-25T06:23:15.000Z" - }, - "end": { - "$date": "2022-01-25T06:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b07f1a21-35f3-4c49-9632-86e0cfbf269b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T06:43:09.000Z" - }, - "end": { - "$date": "2022-01-25T09:12:35.000Z" - }, - "events": [ - { - "uuid": "b06b3694-7612-4e93-94bd-9a0a27f367f6", - "start": { - "$date": "2022-01-25T06:43:09.000Z" - }, - "end": { - "$date": "2022-01-25T09:12:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3777d1e8-3aee-4cca-95cf-c96a8a9c0332", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T09:35:44.000Z" - }, - "end": { - "$date": "2022-01-25T09:53:19.000Z" - }, - "events": [ - { - "uuid": "3c77f40d-67b9-4f65-9b66-517f45f7c835", - "start": { - "$date": "2022-01-25T09:35:44.000Z" - }, - "end": { - "$date": "2022-01-25T09:53:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "482c4a19-d692-4bb6-997c-e500a1e3c978", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T09:55:29.000Z" - }, - "end": { - "$date": "2022-01-25T10:17:10.000Z" - }, - "events": [ - { - "uuid": "ae58024a-b6af-40a3-9ae7-6653a76c2f41", - "start": { - "$date": "2022-01-25T09:55:29.000Z" - }, - "end": { - "$date": "2022-01-25T10:17:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "249b5e29-c39d-439b-b4ed-cf82ec02bc3f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T10:19:45.000Z" - }, - "end": { - "$date": "2022-01-25T10:36:50.000Z" - }, - "events": [ - { - "uuid": "eceff0ee-161a-440b-b5bc-2533f1ed2e0c", - "start": { - "$date": "2022-01-25T10:19:45.000Z" - }, - "end": { - "$date": "2022-01-25T10:36:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04cfe7b6-fd37-4f7f-980c-eff613b9c8b7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T10:38:25.000Z" - }, - "end": { - "$date": "2022-01-25T10:42:06.000Z" - }, - "events": [ - { - "uuid": "3e82d7ca-a4b8-4cff-9812-fe70ab6c49c9", - "start": { - "$date": "2022-01-25T10:38:25.000Z" - }, - "end": { - "$date": "2022-01-25T10:42:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99b0bedc-a7b1-43e4-b98f-c43f4bf5f10f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T10:44:31.000Z" - }, - "end": { - "$date": "2022-01-25T10:56:56.000Z" - }, - "events": [ - { - "uuid": "f95d8a61-f8ee-4be9-a358-8b75d52186bc", - "start": { - "$date": "2022-01-25T10:44:31.000Z" - }, - "end": { - "$date": "2022-01-25T10:56:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a1fe6b1-7a33-495a-bef8-a6c193c391f4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T10:59:01.000Z" - }, - "end": { - "$date": "2022-01-25T11:19:16.000Z" - }, - "events": [ - { - "uuid": "2b5a8404-7e5c-43a6-94f6-ce2ba14bdb83", - "start": { - "$date": "2022-01-25T10:59:01.000Z" - }, - "end": { - "$date": "2022-01-25T11:19:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec42fd36-6870-4460-80ca-1e7e33d2cba6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T11:21:21.000Z" - }, - "end": { - "$date": "2022-01-25T11:42:27.000Z" - }, - "events": [ - { - "uuid": "ceb4da5e-3341-4f38-b62f-a9560f8109da", - "start": { - "$date": "2022-01-25T11:21:21.000Z" - }, - "end": { - "$date": "2022-01-25T11:42:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f9852a08-edd5-4ac3-b84c-bc338e9bd121", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T13:13:52.000Z" - }, - "end": { - "$date": "2022-01-25T14:01:43.000Z" - }, - "events": [ - { - "uuid": "b0c3f603-7313-4238-902f-3b574a8fcdbb", - "start": { - "$date": "2022-01-25T13:13:52.000Z" - }, - "end": { - "$date": "2022-01-25T14:01:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdf85c4e-7e68-4892-a953-baa4fcfe2d41", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T14:06:28.000Z" - }, - "end": { - "$date": "2022-01-25T14:26:48.000Z" - }, - "events": [ - { - "uuid": "2885ff6c-faa9-4f5f-8ea5-2f1c04672f36", - "start": { - "$date": "2022-01-25T14:06:28.000Z" - }, - "end": { - "$date": "2022-01-25T14:26:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34b71704-e464-40a6-a7ab-7011fe7539e5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T14:29:09.000Z" - }, - "end": { - "$date": "2022-01-25T14:51:59.000Z" - }, - "events": [ - { - "uuid": "c0aa06a7-c1db-4724-988a-5ab9039888d4", - "start": { - "$date": "2022-01-25T14:29:09.000Z" - }, - "end": { - "$date": "2022-01-25T14:51:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ae671b5-4e60-42c4-b90f-0ea7d195a81a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T14:54:09.000Z" - }, - "end": { - "$date": "2022-01-25T15:09:47.000Z" - }, - "events": [ - { - "uuid": "35a22dcc-51e7-47cb-b28e-8c63b7e4de62", - "start": { - "$date": "2022-01-25T14:54:09.000Z" - }, - "end": { - "$date": "2022-01-25T15:09:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2bb73c26-404b-4dbf-86a4-ae7cfe62d125", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-25T14:58:02.000Z" - }, - "end": { - "$date": "2022-01-25T15:54:26.000Z" - }, - "events": [ - { - "uuid": "ef6405b9-949f-4aa8-8b5f-b8000200594d", - "start": { - "$date": "2022-01-25T14:58:02.000Z" - }, - "end": { - "$date": "2022-01-25T15:54:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c086b8cc-bbfa-4911-8eb8-8f824c8c13fb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T15:13:05.000Z" - }, - "end": { - "$date": "2022-01-25T15:34:30.000Z" - }, - "events": [ - { - "uuid": "f423688d-560b-42c4-a382-63506357a56e", - "start": { - "$date": "2022-01-25T15:13:05.000Z" - }, - "end": { - "$date": "2022-01-25T15:34:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6dc2fb2-913e-48b2-9c72-1fa6820c6cc0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T15:36:35.000Z" - }, - "end": { - "$date": "2022-01-25T16:00:41.000Z" - }, - "events": [ - { - "uuid": "7dd797da-4b45-4ec2-89c9-074bd861a87d", - "start": { - "$date": "2022-01-25T15:36:35.000Z" - }, - "end": { - "$date": "2022-01-25T16:00:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02342d96-2350-4479-adad-7a0f690de2a8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T16:02:26.000Z" - }, - "end": { - "$date": "2022-01-25T16:25:36.000Z" - }, - "events": [ - { - "uuid": "4def82f4-fe76-4edc-b673-e6e60fcec09b", - "start": { - "$date": "2022-01-25T16:02:26.000Z" - }, - "end": { - "$date": "2022-01-25T16:25:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89580882-a688-4cf0-ae9b-f0d0f2425ee5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T16:27:57.000Z" - }, - "end": { - "$date": "2022-01-25T16:47:27.000Z" - }, - "events": [ - { - "uuid": "14508bda-78f9-425b-ba08-909d653d469d", - "start": { - "$date": "2022-01-25T16:27:57.000Z" - }, - "end": { - "$date": "2022-01-25T16:47:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9663e563-9f50-45d0-b270-a664e6e145ed", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T16:49:47.000Z" - }, - "end": { - "$date": "2022-01-25T17:13:30.000Z" - }, - "events": [ - { - "uuid": "e5587072-4460-48b6-b999-bd8ec1477e12", - "start": { - "$date": "2022-01-25T16:49:47.000Z" - }, - "end": { - "$date": "2022-01-25T17:13:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2e91114-9be8-4195-84bc-959e2ccbab86", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-25T17:09:23.000Z" - }, - "end": { - "$date": "2022-01-25T17:20:02.000Z" - }, - "events": [ - { - "uuid": "184d0db5-1387-461a-9420-26eb958b5986", - "start": { - "$date": "2022-01-25T17:09:23.000Z" - }, - "end": { - "$date": "2022-01-25T17:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f1bdbf2-5869-46c5-9a06-7afa0dd316d2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-25T17:15:48.000Z" - }, - "end": { - "$date": "2022-01-25T17:29:48.000Z" - }, - "events": [ - { - "uuid": "eb1fae0a-3392-4bb4-8841-d1766bd0c070", - "start": { - "$date": "2022-01-25T17:15:48.000Z" - }, - "end": { - "$date": "2022-01-25T17:29:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4c8fcb8-dc9f-4df3-b54d-036c8af2c1d3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-25T17:21:48.000Z" - }, - "end": { - "$date": "2022-01-25T17:36:23.000Z" - }, - "events": [ - { - "uuid": "39f78615-bec9-4aee-a80f-79a6facb91ef", - "start": { - "$date": "2022-01-25T17:21:48.000Z" - }, - "end": { - "$date": "2022-01-25T17:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1bcc2f4a-02e0-4b09-82f6-cd6422ccdfd8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-25T17:39:24.000Z" - }, - "end": { - "$date": "2022-01-25T17:54:19.000Z" - }, - "events": [ - { - "uuid": "8d1bc364-2570-4c94-a7fb-983e992765fa", - "start": { - "$date": "2022-01-25T17:39:24.000Z" - }, - "end": { - "$date": "2022-01-25T17:54:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7421956-6505-4bf1-9549-d4b430f44b53", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-25T17:55:25.000Z" - }, - "end": { - "$date": "2022-01-25T18:13:55.000Z" - }, - "events": [ - { - "uuid": "7d768802-2703-4685-80ca-5287c0168b81", - "start": { - "$date": "2022-01-25T17:55:25.000Z" - }, - "end": { - "$date": "2022-01-25T18:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "053b4402-8359-469b-b8b4-a7866e69b8f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-25T18:09:39.000Z" - }, - "end": { - "$date": "2022-01-25T20:18:10.000Z" - }, - "events": [ - { - "uuid": "8b4907cc-281d-4652-bfb1-764f1ad9416f", - "start": { - "$date": "2022-01-25T18:09:39.000Z" - }, - "end": { - "$date": "2022-01-25T20:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8b74ac2-9c23-483e-bbcc-3368d3d95262", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-25T18:14:03.000Z" - }, - "end": { - "$date": "2022-01-25T18:15:31.000Z" - }, - "events": [ - { - "uuid": "d581e567-5067-4028-91ad-cb64f000859f", - "start": { - "$date": "2022-01-25T18:14:03.000Z" - }, - "end": { - "$date": "2022-01-25T18:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "babc7a3d-78eb-441b-80bc-3d4bbfd3bcb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-25T21:52:00.000Z" - }, - "end": { - "$date": "2022-01-25T21:53:18.000Z" - }, - "events": [ - { - "uuid": "711d99ed-67db-4b7a-adba-e10ee2d0d32d", - "start": { - "$date": "2022-01-25T21:52:00.000Z" - }, - "end": { - "$date": "2022-01-25T21:53:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1aae67c-34e7-4ffb-8341-eff4fdc8bea0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-25T22:05:06.000Z" - }, - "end": { - "$date": "2022-01-25T22:47:14.000Z" - }, - "events": [ - { - "uuid": "e94e9c0d-25d9-4984-a0a0-12cce6f0c55d", - "start": { - "$date": "2022-01-25T22:05:06.000Z" - }, - "end": { - "$date": "2022-01-25T22:47:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "27a121b3-5e33-4487-add6-ec8483958718", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-25T23:22:54.000Z" - }, - "end": { - "$date": "2022-01-25T23:25:10.000Z" - }, - "events": [ - { - "uuid": "f5412694-78d7-45b6-9ef7-760732a20df4", - "start": { - "$date": "2022-01-25T23:22:54.000Z" - }, - "end": { - "$date": "2022-01-25T23:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d142eb7-bbf4-411d-974d-b93188785fa3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-26T00:19:45.000Z" - }, - "end": { - "$date": "2022-01-26T00:40:22.000Z" - }, - "events": [ - { - "uuid": "44ed0939-2db2-4273-9da0-11086590ba37", - "start": { - "$date": "2022-01-26T00:19:45.000Z" - }, - "end": { - "$date": "2022-01-26T00:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0a4c389f-80c2-4bb3-afad-bec7ba13e0f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-26T00:34:23.000Z" - }, - "end": { - "$date": "2022-01-26T01:17:44.000Z" - }, - "events": [ - { - "uuid": "68d515f2-7a2f-4785-8a88-cb078cffb5c1", - "start": { - "$date": "2022-01-26T00:34:23.000Z" - }, - "end": { - "$date": "2022-01-26T01:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "c59929b3-d5be-4e0e-8312-79acbdaade00", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-26T01:00:03.000Z" - }, - "end": { - "$date": "2022-01-26T01:54:39.000Z" - }, - "events": [ - { - "uuid": "af9fac92-da22-41d7-8eac-5bafb08e56ae", - "start": { - "$date": "2022-01-26T01:00:03.000Z" - }, - "end": { - "$date": "2022-01-26T01:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7a46be93-d803-463c-81e1-86f0ae8e95f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-26T01:44:39.000Z" - }, - "end": { - "$date": "2022-01-26T06:03:07.000Z" - }, - "events": [ - { - "uuid": "c25c4a29-36e6-4185-81c0-081db2bf2e72", - "start": { - "$date": "2022-01-26T01:44:39.000Z" - }, - "end": { - "$date": "2022-01-26T06:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9a2800de-9ac4-4b3c-8126-4e77d27f159b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-26T02:03:05.000Z" - }, - "end": { - "$date": "2022-01-26T04:46:15.000Z" - }, - "events": [ - { - "uuid": "0b889613-c369-409d-adbc-ad6c1badfdbe", - "start": { - "$date": "2022-01-26T02:03:05.000Z" - }, - "end": { - "$date": "2022-01-26T04:46:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "76aa7552-c1f1-4700-92ef-4f8e127a0e6d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-26T02:57:30.000Z" - }, - "end": { - "$date": "2022-01-26T03:52:13.000Z" - }, - "events": [ - { - "uuid": "ea813540-bc10-44ca-88ad-9deb507fd438", - "start": { - "$date": "2022-01-26T02:57:30.000Z" - }, - "end": { - "$date": "2022-01-26T03:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82715ca0-d568-4a6f-ae84-3c248821b57d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-26T03:26:31.000Z" - }, - "end": { - "$date": "2022-01-26T04:46:25.000Z" - }, - "events": [ - { - "uuid": "35617824-7dde-4243-a873-94402ef8c4fb", - "start": { - "$date": "2022-01-26T03:26:31.000Z" - }, - "end": { - "$date": "2022-01-26T04:46:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "90dd2e14-52c9-4f97-90cc-6213737837cc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-26T03:38:09.000Z" - }, - "end": { - "$date": "2022-01-26T04:43:57.000Z" - }, - "events": [ - { - "uuid": "268666e4-c658-4ec4-8297-ba128f5673c2", - "start": { - "$date": "2022-01-26T03:38:09.000Z" - }, - "end": { - "$date": "2022-01-26T04:43:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3e8eb0d-f59d-4c20-873c-7b0cabb7c244", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T04:02:16.000Z" - }, - "end": { - "$date": "2022-01-26T04:38:39.000Z" - }, - "events": [ - { - "uuid": "c6c68f23-73fa-4648-b144-600c7eea6820", - "start": { - "$date": "2022-01-26T04:02:16.000Z" - }, - "end": { - "$date": "2022-01-26T04:38:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d8134b0-3070-4023-87f5-1e529cf2c232", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-26T04:03:05.000Z" - }, - "end": { - "$date": "2022-01-26T04:11:36.000Z" - }, - "events": [ - { - "uuid": "535da816-0013-4dd4-b2d5-a84b6314f8f3", - "start": { - "$date": "2022-01-26T04:03:05.000Z" - }, - "end": { - "$date": "2022-01-26T04:11:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "946a4389-1b80-40a2-806b-ed2deb4dc61c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-26T04:07:19.000Z" - }, - "end": { - "$date": "2022-01-26T04:51:04.000Z" - }, - "events": [ - { - "uuid": "ff13bd27-0161-4afd-870a-938354f5f57c", - "start": { - "$date": "2022-01-26T04:07:19.000Z" - }, - "end": { - "$date": "2022-01-26T04:51:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "858983af-be15-40c9-8966-5c2d499940d0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-26T04:12:39.000Z" - }, - "end": { - "$date": "2022-01-26T04:47:53.000Z" - }, - "events": [ - { - "uuid": "07b1f58a-1c4e-432d-b8f0-5b5d541ff993", - "start": { - "$date": "2022-01-26T04:12:39.000Z" - }, - "end": { - "$date": "2022-01-26T04:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "065d3491-210b-4a57-b1de-14f929a3f3f9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T04:25:28.000Z" - }, - "end": { - "$date": "2022-01-26T04:55:23.000Z" - }, - "events": [ - { - "uuid": "0f70e24c-0467-42c9-b6d5-87f7d437fa31", - "start": { - "$date": "2022-01-26T04:25:28.000Z" - }, - "end": { - "$date": "2022-01-26T04:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcf5bcf9-a2cd-4e7f-91b1-75587c50f889", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T05:00:31.000Z" - }, - "end": { - "$date": "2022-01-26T05:19:32.000Z" - }, - "events": [ - { - "uuid": "e5778da2-0a30-4487-b95e-51e9e34a2064", - "start": { - "$date": "2022-01-26T05:00:31.000Z" - }, - "end": { - "$date": "2022-01-26T05:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b35f0ea-064a-4f46-bb9e-fd3412bc0ba3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-26T04:48:39.000Z" - }, - "end": { - "$date": "2022-01-26T05:26:33.000Z" - }, - "events": [ - { - "uuid": "98abf95e-b078-44cd-9072-7811dbdeed4e", - "start": { - "$date": "2022-01-26T04:48:39.000Z" - }, - "end": { - "$date": "2022-01-26T05:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3359e001-fa34-4c6d-ad36-9cb1bad7d7a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-26T04:51:14.000Z" - }, - "end": { - "$date": "2022-01-26T06:03:49.000Z" - }, - "events": [ - { - "uuid": "800dea59-213c-4f25-ba54-ab8804728f5b", - "start": { - "$date": "2022-01-26T04:51:14.000Z" - }, - "end": { - "$date": "2022-01-26T05:52:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fc97ab47-48b9-4718-aa1b-69ed799148ff", - "start": { - "$date": "2022-01-26T05:52:14.000Z" - }, - "end": { - "$date": "2022-01-26T06:03:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12a80343-a886-4ec7-b883-6dbbc247a5f2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T05:00:28.000Z" - }, - "end": { - "$date": "2022-01-26T05:19:37.000Z" - }, - "events": [ - { - "uuid": "f332543c-b713-4b16-b51f-afc4e9fce6dd", - "start": { - "$date": "2022-01-26T05:00:28.000Z" - }, - "end": { - "$date": "2022-01-26T05:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b32af785-51dd-4201-9777-18cb93da92b6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-26T05:00:28.000Z" - }, - "end": { - "$date": "2022-01-26T05:19:38.000Z" - }, - "events": [ - { - "uuid": "d598370f-2d3c-455b-8e0b-7077be233d59", - "start": { - "$date": "2022-01-26T05:00:28.000Z" - }, - "end": { - "$date": "2022-01-26T05:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "2b587983-e49e-4c90-860d-045a25d20888", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-26T05:02:57.000Z" - }, - "end": { - "$date": "2022-01-26T05:08:48.000Z" - }, - "events": [ - { - "uuid": "c7f6ae33-bf36-4820-97c4-31533e82739e", - "start": { - "$date": "2022-01-26T05:02:57.000Z" - }, - "end": { - "$date": "2022-01-26T05:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74745227-0288-4659-b7e1-b80fdf6f450f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T05:24:02.000Z" - }, - "end": { - "$date": "2022-01-26T05:41:33.000Z" - }, - "events": [ - { - "uuid": "8ede72b7-1461-4e79-9198-ac61c72ca24a", - "start": { - "$date": "2022-01-26T05:24:02.000Z" - }, - "end": { - "$date": "2022-01-26T05:41:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf29e216-03f9-4943-969f-313cb9ef944d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-26T05:24:09.000Z" - }, - "end": { - "$date": "2022-01-26T05:41:23.000Z" - }, - "events": [ - { - "uuid": "685f7680-7181-44eb-bc4c-bd03d99116f8", - "start": { - "$date": "2022-01-26T05:24:09.000Z" - }, - "end": { - "$date": "2022-01-26T05:41:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "024790e6-40b7-49ef-a1ff-e3139ffbf246", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T05:24:09.000Z" - }, - "end": { - "$date": "2022-01-26T05:41:27.000Z" - }, - "events": [ - { - "uuid": "eaa2d85c-e80f-43bf-b67f-ae1943f52b32", - "start": { - "$date": "2022-01-26T05:24:09.000Z" - }, - "end": { - "$date": "2022-01-26T05:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9178e82b-c9b9-4625-8b44-8954d2927eba", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-26T05:30:28.000Z" - }, - "end": { - "$date": "2022-01-26T05:52:09.000Z" - }, - "events": [ - { - "uuid": "c31bfe1d-212f-40af-b80b-9e88922f5fcf", - "start": { - "$date": "2022-01-26T05:30:28.000Z" - }, - "end": { - "$date": "2022-01-26T05:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74c07da2-d237-43dc-adea-cc6d57d7953d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T05:45:23.000Z" - }, - "end": { - "$date": "2022-01-26T06:22:48.000Z" - }, - "events": [ - { - "uuid": "4d4339a8-612a-4a7c-bfa8-acfa4782fdeb", - "start": { - "$date": "2022-01-26T05:45:23.000Z" - }, - "end": { - "$date": "2022-01-26T06:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "276824db-6bd4-4181-a518-273f8b2e317b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-26T05:45:24.000Z" - }, - "end": { - "$date": "2022-01-26T06:22:50.000Z" - }, - "events": [ - { - "uuid": "03694f01-f905-44bd-8393-6f9772f4c29f", - "start": { - "$date": "2022-01-26T05:45:24.000Z" - }, - "end": { - "$date": "2022-01-26T06:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "089f92d6-4422-4e90-a9c6-f85689a02faa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-26T05:45:26.000Z" - }, - "end": { - "$date": "2022-01-26T06:23:03.000Z" - }, - "events": [ - { - "uuid": "55306fb1-f76d-4af6-9c65-eab6d24b0459", - "start": { - "$date": "2022-01-26T05:45:26.000Z" - }, - "end": { - "$date": "2022-01-26T06:23:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fc61854c-00cb-45a1-9db0-2b3475efb0b2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T05:45:24.000Z" - }, - "end": { - "$date": "2022-01-26T06:22:51.000Z" - }, - "events": [ - { - "uuid": "c2ea7081-3f17-4591-b2a5-eccdf63b38b7", - "start": { - "$date": "2022-01-26T05:45:24.000Z" - }, - "end": { - "$date": "2022-01-26T06:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd791905-ee87-4800-8628-79464f8c784b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-26T05:54:59.000Z" - }, - "end": { - "$date": "2022-01-26T06:20:20.000Z" - }, - "events": [ - { - "uuid": "b11aea96-5c78-4a51-b9b3-61dea52e3ec8", - "start": { - "$date": "2022-01-26T05:54:59.000Z" - }, - "end": { - "$date": "2022-01-26T06:20:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "b3374cec-2315-43d1-a8e6-b020f1398e85", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-26T06:47:20.000Z" - }, - "end": { - "$date": "2022-01-26T06:47:29.000Z" - }, - "events": [ - { - "uuid": "f53139ce-d8be-4cc1-83d3-f11a1511ee85", - "start": { - "$date": "2022-01-26T06:47:20.000Z" - }, - "end": { - "$date": "2022-01-26T06:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "216a7cd9-8da9-4646-9bdd-ecacdffe56df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T06:25:48.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:34.000Z" - }, - "events": [ - { - "uuid": "f14e019d-a5fd-46da-afa2-e04459605949", - "start": { - "$date": "2022-01-26T06:25:48.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c38bfc8b-0140-482f-b8b2-0765a3a6c255", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-26T06:25:57.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:41.000Z" - }, - "events": [ - { - "uuid": "f1b1fc55-5b10-4691-ae26-772772054ae9", - "start": { - "$date": "2022-01-26T06:25:57.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8fdcd9c-c157-4c90-878f-c122ea24d0eb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T06:25:50.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:31.000Z" - }, - "events": [ - { - "uuid": "026316d0-9eb6-4f26-9bf5-343c25f7c947", - "start": { - "$date": "2022-01-26T06:25:50.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d87ba51c-9b6b-43c5-b632-813325a06239", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-26T06:25:50.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:39.000Z" - }, - "events": [ - { - "uuid": "a3308685-c6c5-4423-af2b-911773dc39e3", - "start": { - "$date": "2022-01-26T06:25:50.000Z" - }, - "end": { - "$date": "2022-01-26T06:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "07f45ce3-afe9-4f30-82f9-8f1de445ce4b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-26T06:47:50.000Z" - }, - "end": { - "$date": "2022-01-26T08:01:47.000Z" - }, - "events": [ - { - "uuid": "7efce8f1-a2b2-4b56-a6d8-4fbc2afc3f72", - "start": { - "$date": "2022-01-26T06:47:50.000Z" - }, - "end": { - "$date": "2022-01-26T08:01:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "08fe784f-9f71-4481-a1d1-9927e3334d00", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-26T06:48:01.000Z" - }, - "end": { - "$date": "2022-01-26T08:02:27.000Z" - }, - "events": [ - { - "uuid": "0eb2bc55-304e-4fce-9952-dcf5c3782e43", - "start": { - "$date": "2022-01-26T06:48:01.000Z" - }, - "end": { - "$date": "2022-01-26T08:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e68ee1cf-9dc1-4b28-be9d-379b41fd6455", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T06:53:39.000Z" - }, - "end": { - "$date": "2022-01-26T07:23:49.000Z" - }, - "events": [ - { - "uuid": "83216447-2b8d-42c1-b260-0ca03f58ac15", - "start": { - "$date": "2022-01-26T06:53:39.000Z" - }, - "end": { - "$date": "2022-01-26T07:23:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6e1e9ebd-ab2f-49d6-b116-d8f96feee091", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T06:53:41.000Z" - }, - "end": { - "$date": "2022-01-26T07:23:59.000Z" - }, - "events": [ - { - "uuid": "52aa2b22-ff14-494a-ae83-c58bfc793df2", - "start": { - "$date": "2022-01-26T06:53:41.000Z" - }, - "end": { - "$date": "2022-01-26T07:23:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01793603-021f-4c05-8082-d50a8a5bea50", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-26T06:53:43.000Z" - }, - "end": { - "$date": "2022-01-26T07:24:01.000Z" - }, - "events": [ - { - "uuid": "314b32a7-dfb5-499d-95bd-51f1f2c735dc", - "start": { - "$date": "2022-01-26T06:53:43.000Z" - }, - "end": { - "$date": "2022-01-26T07:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f08b8d4-be43-4185-81f1-f7e0df2de02d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-26T06:53:35.000Z" - }, - "end": { - "$date": "2022-01-26T07:23:55.000Z" - }, - "events": [ - { - "uuid": "617d3efe-b128-4302-a0da-1e71ada701af", - "start": { - "$date": "2022-01-26T06:53:35.000Z" - }, - "end": { - "$date": "2022-01-26T07:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "500f1eac-eebf-4073-bd70-effb0264830d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-26T07:27:04.000Z" - }, - "end": { - "$date": "2022-01-26T07:43:16.000Z" - }, - "events": [ - { - "uuid": "9c633f97-054c-4298-b63b-602826024bfa", - "start": { - "$date": "2022-01-26T07:27:04.000Z" - }, - "end": { - "$date": "2022-01-26T07:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9764d53b-c3ba-4fb6-90e8-b7ab2939f582", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-26T07:27:06.000Z" - }, - "end": { - "$date": "2022-01-26T07:43:07.000Z" - }, - "events": [ - { - "uuid": "a63715b0-5079-4335-b757-0526d73d83eb", - "start": { - "$date": "2022-01-26T07:27:06.000Z" - }, - "end": { - "$date": "2022-01-26T07:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af2be112-2080-4eac-92be-dd754d4430fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-26T07:27:04.000Z" - }, - "end": { - "$date": "2022-01-26T07:42:59.000Z" - }, - "events": [ - { - "uuid": "d9e5253b-a19f-46d7-92d9-9bd5d7b8748f", - "start": { - "$date": "2022-01-26T07:27:04.000Z" - }, - "end": { - "$date": "2022-01-26T07:42:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ff44fc2-f99b-4266-9064-71829c5ff705", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-26T07:27:01.000Z" - }, - "end": { - "$date": "2022-01-26T07:43:05.000Z" - }, - "events": [ - { - "uuid": "1f8d9da7-c283-4a84-81cc-b7c2fc58eb30", - "start": { - "$date": "2022-01-26T07:27:01.000Z" - }, - "end": { - "$date": "2022-01-26T07:43:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c8302bce-096b-4976-9f6e-52ecf8970fd2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-26T09:49:25.000Z" - }, - "end": { - "$date": "2022-01-26T11:59:02.000Z" - }, - "events": [ - { - "uuid": "27c5123d-8e49-484a-8803-817962a34d7b", - "start": { - "$date": "2022-01-26T09:49:25.000Z" - }, - "end": { - "$date": "2022-01-26T11:59:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2f9d3dd7-b32c-4e35-8218-7b3244672723", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-26T14:50:40.000Z" - }, - "end": { - "$date": "2022-01-26T15:15:51.000Z" - }, - "events": [ - { - "uuid": "4616baf4-4643-470f-a983-ec973c161563", - "start": { - "$date": "2022-01-26T14:50:40.000Z" - }, - "end": { - "$date": "2022-01-26T15:15:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c0bb8b07-d13d-47bc-ad87-97c6ca789ec2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-26T15:16:06.000Z" - }, - "end": { - "$date": "2022-01-26T16:42:01.000Z" - }, - "events": [ - { - "uuid": "50750fb7-d061-4ef5-87a2-2d235dc9142a", - "start": { - "$date": "2022-01-26T15:16:06.000Z" - }, - "end": { - "$date": "2022-01-26T16:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "9c9f020d-96d6-4d1f-8dac-eab2fb73ab75", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-26T17:48:54.000Z" - }, - "end": { - "$date": "2022-01-26T17:49:34.000Z" - }, - "events": [ - { - "uuid": "0e3cea73-512d-4ac6-8439-533d9976dc83", - "start": { - "$date": "2022-01-26T17:48:54.000Z" - }, - "end": { - "$date": "2022-01-26T17:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb7e3168-e277-4a19-9f27-f174224fc1a2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-26T23:31:16.000Z" - }, - "end": { - "$date": "2022-01-26T23:51:24.000Z" - }, - "events": [ - { - "uuid": "21f6ab54-1484-49aa-9b13-8d2b98a41933", - "start": { - "$date": "2022-01-26T23:31:16.000Z" - }, - "end": { - "$date": "2022-01-26T23:51:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "29399e36-c2b6-4cb3-8bd6-d19f08f0777e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T00:33:33.000Z" - }, - "end": { - "$date": "2022-01-27T00:49:59.000Z" - }, - "events": [ - { - "uuid": "fd71a83e-bc5c-4dbe-98ce-0d797314d691", - "start": { - "$date": "2022-01-27T00:33:33.000Z" - }, - "end": { - "$date": "2022-01-27T00:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "bd6eb6bf-53a1-4e04-a56c-8441ee3408d2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-27T00:41:22.000Z" - }, - "end": { - "$date": "2022-01-27T01:16:03.000Z" - }, - "events": [ - { - "uuid": "4e615ea2-522f-4da5-897e-76a4550b1c50", - "start": { - "$date": "2022-01-27T00:41:22.000Z" - }, - "end": { - "$date": "2022-01-27T01:16:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9dc4b08-a657-454e-a3eb-fcf37fd2380f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T00:51:49.000Z" - }, - "end": { - "$date": "2022-01-27T01:08:04.000Z" - }, - "events": [ - { - "uuid": "088eaa43-7081-491b-b103-47e6ed75a582", - "start": { - "$date": "2022-01-27T00:51:49.000Z" - }, - "end": { - "$date": "2022-01-27T01:08:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "46db3e7f-3060-43e6-b887-07e3340bef23", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-27T01:01:04.000Z" - }, - "end": { - "$date": "2022-01-27T02:30:39.000Z" - }, - "events": [ - { - "uuid": "03a109af-c7f7-491c-a6cc-3335e17a4ba5", - "start": { - "$date": "2022-01-27T01:01:04.000Z" - }, - "end": { - "$date": "2022-01-27T02:30:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e4999ac-b7f8-4cab-a5da-72adef096181", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T01:11:40.000Z" - }, - "end": { - "$date": "2022-01-27T01:30:50.000Z" - }, - "events": [ - { - "uuid": "abc2fa9c-d545-4ef8-9e7f-191f63784070", - "start": { - "$date": "2022-01-27T01:11:40.000Z" - }, - "end": { - "$date": "2022-01-27T01:30:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "418b469c-d293-44ea-b6e4-ce506fab5d85", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-27T01:14:17.000Z" - }, - "end": { - "$date": "2022-01-27T03:03:27.000Z" - }, - "events": [ - { - "uuid": "7bbd27c6-1307-4972-8213-84df9e7de5f4", - "start": { - "$date": "2022-01-27T01:14:17.000Z" - }, - "end": { - "$date": "2022-01-27T02:26:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a32d2d3-6453-48a7-8ab0-566091298370", - "start": { - "$date": "2022-01-27T02:26:17.000Z" - }, - "end": { - "$date": "2022-01-27T02:35:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b114d717-9db9-4663-89ca-e2056a7ee53d", - "start": { - "$date": "2022-01-27T02:35:17.000Z" - }, - "end": { - "$date": "2022-01-27T02:37:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3248f1f-f8eb-4240-a030-ea5e0b53e145", - "start": { - "$date": "2022-01-27T02:37:17.000Z" - }, - "end": { - "$date": "2022-01-27T03:03:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e9f19e14-caa7-465a-9519-3c35ead2bebe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-27T01:16:18.000Z" - }, - "end": { - "$date": "2022-01-27T03:23:23.000Z" - }, - "events": [ - { - "uuid": "c6212a3e-7b4b-4a9c-b1d0-ad9e37ec1a60", - "start": { - "$date": "2022-01-27T01:16:18.000Z" - }, - "end": { - "$date": "2022-01-27T03:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "cbc39968-15d0-4cc1-aa97-59e4b92ab4c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-27T02:32:19.000Z" - }, - "end": { - "$date": "2022-01-27T05:19:58.000Z" - }, - "events": [ - { - "uuid": "685d6b0d-d09f-43b7-8166-68e0fe81efd6", - "start": { - "$date": "2022-01-27T02:32:19.000Z" - }, - "end": { - "$date": "2022-01-27T05:19:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fccbc41e-b0f7-498a-9274-224a5e98cce0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-27T02:40:30.000Z" - }, - "end": { - "$date": "2022-01-27T03:57:57.000Z" - }, - "events": [ - { - "uuid": "729e6d7a-f2bf-40fd-97b6-227fe1255a96", - "start": { - "$date": "2022-01-27T02:40:30.000Z" - }, - "end": { - "$date": "2022-01-27T03:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bcea981-1821-4d04-8dec-b7c08012f3ef", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T03:06:10.000Z" - }, - "end": { - "$date": "2022-01-27T03:22:20.000Z" - }, - "events": [ - { - "uuid": "ba8416ca-5fa0-4b99-9b98-34e24053825e", - "start": { - "$date": "2022-01-27T03:06:10.000Z" - }, - "end": { - "$date": "2022-01-27T03:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "89139fed-f69b-4867-a19d-d503ee365142", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T03:25:31.000Z" - }, - "end": { - "$date": "2022-01-27T03:48:32.000Z" - }, - "events": [ - { - "uuid": "0b0b197c-381a-42f8-a94f-4ea262d14aba", - "start": { - "$date": "2022-01-27T03:25:31.000Z" - }, - "end": { - "$date": "2022-01-27T03:48:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "f7213c2f-30f4-4425-95be-5cc126c63146", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-27T03:35:34.000Z" - }, - "end": { - "$date": "2022-01-27T04:55:12.000Z" - }, - "events": [ - { - "uuid": "68d6c6c6-5c18-4ba4-b1a5-fc8a83b0c14a", - "start": { - "$date": "2022-01-27T03:35:34.000Z" - }, - "end": { - "$date": "2022-01-27T04:55:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "849d36d9-d566-4117-a4de-aee38e55ff2d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T03:52:28.000Z" - }, - "end": { - "$date": "2022-01-27T04:22:20.000Z" - }, - "events": [ - { - "uuid": "1d7b93da-e4e4-48d6-bed2-0b9d476d591b", - "start": { - "$date": "2022-01-27T03:52:28.000Z" - }, - "end": { - "$date": "2022-01-27T04:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "d2764291-703a-4b8b-b314-422111f9699a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-27T03:55:58.000Z" - }, - "end": { - "$date": "2022-01-27T04:20:49.000Z" - }, - "events": [ - { - "uuid": "70bf0bcb-061c-4c02-a7b5-00821f504f47", - "start": { - "$date": "2022-01-27T03:55:58.000Z" - }, - "end": { - "$date": "2022-01-27T04:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "33539619-579f-443a-af1f-61e44b768662", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-27T04:14:25.000Z" - }, - "end": { - "$date": "2022-01-27T05:21:03.000Z" - }, - "events": [ - { - "uuid": "a1bde1fb-4e2b-44a3-b035-1575cce9fa4b", - "start": { - "$date": "2022-01-27T04:14:25.000Z" - }, - "end": { - "$date": "2022-01-27T05:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25aa2f22-ec2b-4515-bc93-81ae8ad22734", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-27T04:21:02.000Z" - }, - "end": { - "$date": "2022-01-27T04:51:25.000Z" - }, - "events": [ - { - "uuid": "5288ae39-428c-4295-a0ee-61c3515acb6f", - "start": { - "$date": "2022-01-27T04:21:02.000Z" - }, - "end": { - "$date": "2022-01-27T04:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdc41195-c540-4ca2-bd61-dc1fdfe3939b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T04:23:09.000Z" - }, - "end": { - "$date": "2022-01-27T04:59:33.000Z" - }, - "events": [ - { - "uuid": "f5953c17-7e5d-4689-b98d-75d68420cc2c", - "start": { - "$date": "2022-01-27T04:23:09.000Z" - }, - "end": { - "$date": "2022-01-27T04:59:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3326b571-c384-4685-8cf3-9b32458cf707", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-27T04:52:43.000Z" - }, - "end": { - "$date": "2022-01-27T05:39:59.000Z" - }, - "events": [ - { - "uuid": "32140238-e0e4-46fc-9b83-9eb32803838a", - "start": { - "$date": "2022-01-27T04:52:43.000Z" - }, - "end": { - "$date": "2022-01-27T05:39:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2382d7fd-7632-4ae1-86df-0533b3f5d774", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-27T04:55:47.000Z" - }, - "end": { - "$date": "2022-01-27T05:20:23.000Z" - }, - "events": [ - { - "uuid": "2a77108b-43d3-47e0-96b1-a6b8df1a2d21", - "start": { - "$date": "2022-01-27T04:55:47.000Z" - }, - "end": { - "$date": "2022-01-27T05:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c8e3e8a-4e7d-4ecb-b0e9-843cd7381a42", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T05:00:30.000Z" - }, - "end": { - "$date": "2022-01-27T05:10:11.000Z" - }, - "events": [ - { - "uuid": "f1cac8f8-f51d-4348-b4e4-b2995115be1c", - "start": { - "$date": "2022-01-27T05:00:30.000Z" - }, - "end": { - "$date": "2022-01-27T05:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f66a037-6914-488e-be30-167c8a6d6a0a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-27T05:10:23.000Z" - }, - "end": { - "$date": "2022-01-27T05:35:55.000Z" - }, - "events": [ - { - "uuid": "0b48f949-52ac-44d3-919c-a04ae7f9a566", - "start": { - "$date": "2022-01-27T05:10:23.000Z" - }, - "end": { - "$date": "2022-01-27T05:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "565cdd75-2512-49df-92f4-cfe368489d03", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-27T05:26:23.000Z" - }, - "end": { - "$date": "2022-01-27T06:36:44.000Z" - }, - "events": [ - { - "uuid": "635e31be-8eef-4b1a-9315-e9cc8eada473", - "start": { - "$date": "2022-01-27T05:26:23.000Z" - }, - "end": { - "$date": "2022-01-27T05:41:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5a566350-515b-4507-b61c-1d22ef8a6278", - "start": { - "$date": "2022-01-27T05:41:23.000Z" - }, - "end": { - "$date": "2022-01-27T05:52:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e00ff4e-10d5-45f6-b364-467833d71215", - "start": { - "$date": "2022-01-27T05:52:23.000Z" - }, - "end": { - "$date": "2022-01-27T06:02:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b14775b0-3486-4510-a994-b9b9481f6840", - "start": { - "$date": "2022-01-27T06:02:23.000Z" - }, - "end": { - "$date": "2022-01-27T06:36:44.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b71fb383-025f-4af1-a8a5-c4a7e2e1ae53", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-27T05:27:02.000Z" - }, - "end": { - "$date": "2022-01-27T07:18:08.000Z" - }, - "events": [ - { - "uuid": "5e9df7f4-7b0f-4d56-bdff-5d28182c9e7a", - "start": { - "$date": "2022-01-27T05:27:02.000Z" - }, - "end": { - "$date": "2022-01-27T07:18:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66970a01-101c-4f51-bf15-1a1de5a422d2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-27T05:58:16.000Z" - }, - "end": { - "$date": "2022-01-27T06:26:02.000Z" - }, - "events": [ - { - "uuid": "e8db8d22-6a15-4e70-9078-5075195a9b37", - "start": { - "$date": "2022-01-27T05:58:16.000Z" - }, - "end": { - "$date": "2022-01-27T06:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e914cfe8-9c1a-4d47-aeca-50b5e3757a5d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-27T05:58:19.000Z" - }, - "end": { - "$date": "2022-01-27T06:25:54.000Z" - }, - "events": [ - { - "uuid": "c618fe6a-95d7-4bf6-9cd1-7ee8427356b1", - "start": { - "$date": "2022-01-27T05:58:19.000Z" - }, - "end": { - "$date": "2022-01-27T06:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a44f4920-93ee-44f8-a645-194b471cd6f8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-27T06:28:07.000Z" - }, - "end": { - "$date": "2022-01-27T06:41:27.000Z" - }, - "events": [ - { - "uuid": "b0d2ae04-5450-415c-be78-1ae6b96e6d21", - "start": { - "$date": "2022-01-27T06:28:07.000Z" - }, - "end": { - "$date": "2022-01-27T06:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "624582c2-2646-4344-ab87-53f3ed60f6fe", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-27T06:28:14.000Z" - }, - "end": { - "$date": "2022-01-27T06:41:25.000Z" - }, - "events": [ - { - "uuid": "62ac0cd2-b869-4ced-8bec-711255b8bcb5", - "start": { - "$date": "2022-01-27T06:28:14.000Z" - }, - "end": { - "$date": "2022-01-27T06:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a16ae4b-4e99-4ea7-9e1b-50b76ef3f814", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-27T06:34:22.000Z" - }, - "end": { - "$date": "2022-01-27T07:09:33.000Z" - }, - "events": [ - { - "uuid": "d644b94b-631f-421d-bfa8-d88f83656e4b", - "start": { - "$date": "2022-01-27T06:34:22.000Z" - }, - "end": { - "$date": "2022-01-27T07:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f01b484-9d3c-4a3d-a8eb-544cf0cb2b81", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-27T06:45:32.000Z" - }, - "end": { - "$date": "2022-01-27T07:10:48.000Z" - }, - "events": [ - { - "uuid": "23b19c30-f0ee-447d-a97e-8fc180b0e05e", - "start": { - "$date": "2022-01-27T06:45:32.000Z" - }, - "end": { - "$date": "2022-01-27T07:10:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2eb4afa4-c080-4a61-8046-803ac8559264", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-27T06:45:30.000Z" - }, - "end": { - "$date": "2022-01-27T07:10:46.000Z" - }, - "events": [ - { - "uuid": "ffcc9659-d9f3-45ef-8909-6d55a5ab2f70", - "start": { - "$date": "2022-01-27T06:45:30.000Z" - }, - "end": { - "$date": "2022-01-27T07:10:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6024497-93ca-4315-b61f-d6aca54c6915", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-27T07:16:13.000Z" - }, - "end": { - "$date": "2022-01-27T07:53:58.000Z" - }, - "events": [ - { - "uuid": "793c36b4-7164-49b1-98db-6d286505ba61", - "start": { - "$date": "2022-01-27T07:16:13.000Z" - }, - "end": { - "$date": "2022-01-27T07:53:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7402b5fc-1ad1-4a22-9345-4c05f0e247db", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-27T07:16:48.000Z" - }, - "end": { - "$date": "2022-01-27T07:29:23.000Z" - }, - "events": [ - { - "uuid": "1a468e0e-fe3d-4f4b-b5b7-92b1865e7ca0", - "start": { - "$date": "2022-01-27T07:16:48.000Z" - }, - "end": { - "$date": "2022-01-27T07:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f480f888-36b8-49e1-a68e-e43fd9a023ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-27T07:16:46.000Z" - }, - "end": { - "$date": "2022-01-27T07:29:21.000Z" - }, - "events": [ - { - "uuid": "cb6e79ea-1c8a-436a-bbb7-b4d4c3fe1e55", - "start": { - "$date": "2022-01-27T07:16:46.000Z" - }, - "end": { - "$date": "2022-01-27T07:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ac3d8c8-3b84-4587-9e72-0e736d51f3b4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-27T07:33:33.000Z" - }, - "end": { - "$date": "2022-01-27T07:55:39.000Z" - }, - "events": [ - { - "uuid": "b17286e8-acd1-43e5-a798-27fe1e7a8bf5", - "start": { - "$date": "2022-01-27T07:33:33.000Z" - }, - "end": { - "$date": "2022-01-27T07:55:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fbdc045-7a2d-4fca-8fd4-ec9fd4be4a3c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-27T07:33:42.000Z" - }, - "end": { - "$date": "2022-01-27T07:55:32.000Z" - }, - "events": [ - { - "uuid": "f44b355c-a767-4ec0-99e2-7fa79fb8800d", - "start": { - "$date": "2022-01-27T07:33:42.000Z" - }, - "end": { - "$date": "2022-01-27T07:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a647ac3e-3e1f-455a-8aaa-0fd670d45e3a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-27T10:24:23.000Z" - }, - "end": { - "$date": "2022-01-27T12:37:09.000Z" - }, - "events": [ - { - "uuid": "cf8712d7-cea7-4744-8bfa-95b236542b95", - "start": { - "$date": "2022-01-27T10:24:23.000Z" - }, - "end": { - "$date": "2022-01-27T12:37:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "8acd1218-303c-4250-b298-63d728001938", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-27T15:33:27.000Z" - }, - "end": { - "$date": "2022-01-27T16:45:05.000Z" - }, - "events": [ - { - "uuid": "a8b6afd0-7b74-43b8-a33c-63508fae7fb6", - "start": { - "$date": "2022-01-27T15:33:27.000Z" - }, - "end": { - "$date": "2022-01-27T16:45:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c363335e-bcbe-4654-8386-3dd4bf031cf3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-27T16:53:12.000Z" - }, - "end": { - "$date": "2022-01-27T18:43:14.000Z" - }, - "events": [ - { - "uuid": "0bc31937-3529-4d4e-b60a-535f759a29b8", - "start": { - "$date": "2022-01-27T16:53:12.000Z" - }, - "end": { - "$date": "2022-01-27T18:43:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "625dad78-2c9f-4681-ab38-bbda5a3be471", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-27T22:40:13.000Z" - }, - "end": { - "$date": "2022-01-28T00:30:17.000Z" - }, - "events": [ - { - "uuid": "9af9f2fe-ff46-45e5-a883-785a78b18eba", - "start": { - "$date": "2022-01-27T22:40:13.000Z" - }, - "end": { - "$date": "2022-01-28T00:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371ae7e0-4624-46f4-b794-42c2e417f1b6", - "uuid": "9ed78930-9e6c-4b7f-906b-c1ce25dc1de0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-27T23:05:15.000Z" - }, - "end": { - "$date": "2022-01-28T00:18:16.000Z" - }, - "events": [ - { - "uuid": "2e6e82e1-6f45-4d85-a3bd-6da277ec8ee6", - "start": { - "$date": "2022-01-27T23:05:15.000Z" - }, - "end": { - "$date": "2022-01-28T00:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "1409646f-cc07-4a89-ad14-c614eb6227c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-28T00:30:35.000Z" - }, - "end": { - "$date": "2022-01-28T01:59:58.000Z" - }, - "events": [ - { - "uuid": "fa53090e-1f71-4853-a169-7b70481829c8", - "start": { - "$date": "2022-01-28T00:30:35.000Z" - }, - "end": { - "$date": "2022-01-28T01:59:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09dc03f8-0e3a-4e90-883a-20579638ebf9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T00:30:57.000Z" - }, - "end": { - "$date": "2022-01-28T02:35:30.000Z" - }, - "events": [ - { - "uuid": "79a87c63-e95c-44d7-8c3f-8528ef16c06d", - "start": { - "$date": "2022-01-28T00:30:57.000Z" - }, - "end": { - "$date": "2022-01-28T02:35:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16104f8a-a7bf-4584-9dd0-972e856ac426", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T01:40:28.000Z" - }, - "end": { - "$date": "2022-01-28T01:44:37.000Z" - }, - "events": [ - { - "uuid": "95f7a6b4-52d4-44e0-bf28-16fc01b0d1d6", - "start": { - "$date": "2022-01-28T01:40:28.000Z" - }, - "end": { - "$date": "2022-01-28T01:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d39d543f-a635-4902-8239-ae43f98faff5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T02:03:46.000Z" - }, - "end": { - "$date": "2022-01-28T02:31:49.000Z" - }, - "events": [ - { - "uuid": "dfe0bfe7-f029-4e81-a6c7-099d9010ebe1", - "start": { - "$date": "2022-01-28T02:03:46.000Z" - }, - "end": { - "$date": "2022-01-28T02:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0f85eba-4f0f-455e-9abb-8ad255347ec5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T02:43:10.000Z" - }, - "end": { - "$date": "2022-01-28T03:20:33.000Z" - }, - "events": [ - { - "uuid": "d0f3e7ad-e608-4e7a-9157-edc3dc5b8df5", - "start": { - "$date": "2022-01-28T02:43:10.000Z" - }, - "end": { - "$date": "2022-01-28T03:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "b40ea3a8-514b-4753-affa-41b82adaf00a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T02:40:41.000Z" - }, - "end": { - "$date": "2022-01-28T03:00:11.000Z" - }, - "events": [ - { - "uuid": "51b6d533-a6f7-4e6c-97db-3935324123a2", - "start": { - "$date": "2022-01-28T02:40:41.000Z" - }, - "end": { - "$date": "2022-01-28T03:00:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9abbb323-8e3b-41d3-a2e5-eb2d5399d41d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T03:09:52.000Z" - }, - "end": { - "$date": "2022-01-28T04:19:04.000Z" - }, - "events": [ - { - "uuid": "d6afbb4a-b342-4a19-bdc7-317ad345253e", - "start": { - "$date": "2022-01-28T03:09:52.000Z" - }, - "end": { - "$date": "2022-01-28T04:19:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdfd9404-c972-4df3-9a55-cc38dd2e497d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T03:24:59.000Z" - }, - "end": { - "$date": "2022-01-28T03:49:15.000Z" - }, - "events": [ - { - "uuid": "22c78f86-350f-4178-b060-3b02125ec5cd", - "start": { - "$date": "2022-01-28T03:24:59.000Z" - }, - "end": { - "$date": "2022-01-28T03:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66044ba6-c8ba-451e-8cf0-3f9f0923b9f1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T03:25:00.000Z" - }, - "end": { - "$date": "2022-01-28T03:49:20.000Z" - }, - "events": [ - { - "uuid": "0a52e009-25f5-494a-bedb-940558af1075", - "start": { - "$date": "2022-01-28T03:25:00.000Z" - }, - "end": { - "$date": "2022-01-28T03:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8b20d57c-51dd-4d7b-8186-709573a9cdb4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T03:51:46.000Z" - }, - "end": { - "$date": "2022-01-28T04:11:57.000Z" - }, - "events": [ - { - "uuid": "bc6f1c50-3cbf-4c31-82d8-1612f55c25d1", - "start": { - "$date": "2022-01-28T03:51:46.000Z" - }, - "end": { - "$date": "2022-01-28T04:11:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56c3be6b-95aa-4da8-a099-cecb009f10e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T03:51:56.000Z" - }, - "end": { - "$date": "2022-01-28T04:11:58.000Z" - }, - "events": [ - { - "uuid": "d7da5f3e-28df-46b4-a1d2-a6f580f80482", - "start": { - "$date": "2022-01-28T03:51:56.000Z" - }, - "end": { - "$date": "2022-01-28T04:11:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "72d4b1a7-9f78-455d-a98d-0852bd02d3b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-28T02:37:38.000Z" - }, - "end": { - "$date": "2022-01-28T04:30:02.000Z" - }, - "events": [ - { - "uuid": "5a7f6e50-2c80-45d2-a69c-21b880023f50", - "start": { - "$date": "2022-01-28T02:37:38.000Z" - }, - "end": { - "$date": "2022-01-28T04:30:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "932eac64-3a43-4b10-b62f-c547433ae16f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T04:17:02.000Z" - }, - "end": { - "$date": "2022-01-28T04:29:58.000Z" - }, - "events": [ - { - "uuid": "3b48858a-1e77-42c7-92c1-e1e1312b0060", - "start": { - "$date": "2022-01-28T04:17:02.000Z" - }, - "end": { - "$date": "2022-01-28T04:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15fb6f30-c5ca-4299-80b3-0783a5bf022c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T04:17:07.000Z" - }, - "end": { - "$date": "2022-01-28T04:29:59.000Z" - }, - "events": [ - { - "uuid": "61d8be19-4eae-4381-8692-474598f90a1d", - "start": { - "$date": "2022-01-28T04:17:07.000Z" - }, - "end": { - "$date": "2022-01-28T04:29:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "984434d2-b1d4-453e-bf81-29d1bfdf6c28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T04:19:28.000Z" - }, - "end": { - "$date": "2022-01-28T04:32:06.000Z" - }, - "events": [ - { - "uuid": "06d4296b-6c5b-4026-9acf-20e2d0806644", - "start": { - "$date": "2022-01-28T04:19:28.000Z" - }, - "end": { - "$date": "2022-01-28T04:32:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a8bc028-b02c-4ddd-b3ae-bb505564bb58", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T04:32:03.000Z" - }, - "end": { - "$date": "2022-01-28T04:50:47.000Z" - }, - "events": [ - { - "uuid": "36faf5fb-b14d-4709-ba30-42ad573a2dca", - "start": { - "$date": "2022-01-28T04:32:03.000Z" - }, - "end": { - "$date": "2022-01-28T04:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3118c9c6-fbbb-42da-907c-521491dce511", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T04:32:08.000Z" - }, - "end": { - "$date": "2022-01-28T04:50:52.000Z" - }, - "events": [ - { - "uuid": "a3a2bcbe-fc55-4a68-9412-703e86d43530", - "start": { - "$date": "2022-01-28T04:32:08.000Z" - }, - "end": { - "$date": "2022-01-28T04:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "bb7ae4e5-2292-4044-806a-71fb7323c1d1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-28T04:33:44.000Z" - }, - "end": { - "$date": "2022-01-28T07:50:40.000Z" - }, - "events": [ - { - "uuid": "316f40d2-8d87-438c-b2e6-d32ed5c42383", - "start": { - "$date": "2022-01-28T04:33:44.000Z" - }, - "end": { - "$date": "2022-01-28T07:50:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c2ede3b-d244-44ae-9cc2-a2c3d12c72da", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T04:53:34.000Z" - }, - "end": { - "$date": "2022-01-28T05:12:02.000Z" - }, - "events": [ - { - "uuid": "61c8e538-0c84-40fa-bdb4-41cff5a8bf31", - "start": { - "$date": "2022-01-28T04:53:34.000Z" - }, - "end": { - "$date": "2022-01-28T05:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58fdef9f-a77d-49cf-aaa6-3a7fabc0db1b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T04:53:39.000Z" - }, - "end": { - "$date": "2022-01-28T05:11:32.000Z" - }, - "events": [ - { - "uuid": "a60fb454-da02-4e3f-9a99-fc6d2c26901e", - "start": { - "$date": "2022-01-28T04:53:39.000Z" - }, - "end": { - "$date": "2022-01-28T05:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a011ca65-2afe-4776-b8b1-770cb7571d90", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T05:19:24.000Z" - }, - "end": { - "$date": "2022-01-28T05:34:59.000Z" - }, - "events": [ - { - "uuid": "bdc8283e-c7d6-4e1f-ad92-e0fe9962a7bb", - "start": { - "$date": "2022-01-28T05:19:24.000Z" - }, - "end": { - "$date": "2022-01-28T05:34:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bdc2ff0-e25a-47df-943c-a2c4599e7082", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T05:38:15.000Z" - }, - "end": { - "$date": "2022-01-28T06:00:24.000Z" - }, - "events": [ - { - "uuid": "26f19e8c-10b5-48fb-8890-3f9e9dc103a3", - "start": { - "$date": "2022-01-28T05:38:15.000Z" - }, - "end": { - "$date": "2022-01-28T06:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04846364-32c9-4154-b5d5-d06213893d00", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T06:04:31.000Z" - }, - "end": { - "$date": "2022-01-28T06:23:26.000Z" - }, - "events": [ - { - "uuid": "32ff5357-159c-4f76-8a7a-36ddd053dd12", - "start": { - "$date": "2022-01-28T06:04:31.000Z" - }, - "end": { - "$date": "2022-01-28T06:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9140d37-0f48-4248-aba8-b4487ecb6c66", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-28T06:04:30.000Z" - }, - "end": { - "$date": "2022-01-28T06:23:30.000Z" - }, - "events": [ - { - "uuid": "6bfd5848-9234-48a9-875c-8838c30d7c7c", - "start": { - "$date": "2022-01-28T06:04:30.000Z" - }, - "end": { - "$date": "2022-01-28T06:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ce26bb0-78cc-4c87-9a08-fe478c5cc925", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-28T06:04:35.000Z" - }, - "end": { - "$date": "2022-01-28T06:23:32.000Z" - }, - "events": [ - { - "uuid": "e1e51ccd-62af-43a0-9a9f-df1a7d59f21d", - "start": { - "$date": "2022-01-28T06:04:35.000Z" - }, - "end": { - "$date": "2022-01-28T06:23:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28284338-ea5b-4fcb-9a40-4c7af224a208", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T06:25:57.000Z" - }, - "end": { - "$date": "2022-01-28T06:58:02.000Z" - }, - "events": [ - { - "uuid": "9a7eceac-dc73-4a6c-a3a2-56ea435d559a", - "start": { - "$date": "2022-01-28T06:25:57.000Z" - }, - "end": { - "$date": "2022-01-28T06:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e77a61a-5d74-4b9d-a2f6-dc4965b4fd3d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-28T06:26:00.000Z" - }, - "end": { - "$date": "2022-01-28T06:58:08.000Z" - }, - "events": [ - { - "uuid": "85247457-54dc-4ff7-b0b7-e9ee5d67c234", - "start": { - "$date": "2022-01-28T06:26:00.000Z" - }, - "end": { - "$date": "2022-01-28T06:58:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8a1320bd-9af3-430c-9efc-2cfe6159ca56", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-28T06:25:51.000Z" - }, - "end": { - "$date": "2022-01-28T06:58:07.000Z" - }, - "events": [ - { - "uuid": "b6c4188a-f609-451c-80e6-61dedd9b5384", - "start": { - "$date": "2022-01-28T06:25:51.000Z" - }, - "end": { - "$date": "2022-01-28T06:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3b1b6da-fbf5-4546-963f-86f0f4fae650", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T07:10:35.000Z" - }, - "end": { - "$date": "2022-01-28T07:10:51.000Z" - }, - "events": [ - { - "uuid": "d186f794-8b6b-46e4-9046-70da63131ea6", - "start": { - "$date": "2022-01-28T07:10:35.000Z" - }, - "end": { - "$date": "2022-01-28T07:10:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c9c8e3c-00ce-4ea6-bd5b-6e5d10d49c63", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T07:00:03.000Z" - }, - "end": { - "$date": "2022-01-28T07:16:18.000Z" - }, - "events": [ - { - "uuid": "beb62c45-8461-48f4-af6a-1d02158757a2", - "start": { - "$date": "2022-01-28T07:00:03.000Z" - }, - "end": { - "$date": "2022-01-28T07:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71dc391d-ec9c-45d9-998d-17e03bac34c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-28T07:00:11.000Z" - }, - "end": { - "$date": "2022-01-28T07:16:24.000Z" - }, - "events": [ - { - "uuid": "e6b88bc3-ae3b-4740-8635-bf3c966be264", - "start": { - "$date": "2022-01-28T07:00:11.000Z" - }, - "end": { - "$date": "2022-01-28T07:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c160c39d-77b5-4967-8bdf-cea8d65ae973", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-28T07:00:06.000Z" - }, - "end": { - "$date": "2022-01-28T07:16:22.000Z" - }, - "events": [ - { - "uuid": "e17e99f9-822a-4c53-a7da-845f036028f6", - "start": { - "$date": "2022-01-28T07:00:06.000Z" - }, - "end": { - "$date": "2022-01-28T07:16:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "595e2f1d-13ea-423b-bd07-4be36ea7eca2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T07:14:36.000Z" - }, - "end": { - "$date": "2022-01-28T07:26:42.000Z" - }, - "events": [ - { - "uuid": "4e4d1911-d8d0-431f-a296-f1d92183d065", - "start": { - "$date": "2022-01-28T07:14:36.000Z" - }, - "end": { - "$date": "2022-01-28T07:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91eccaf0-cae5-40ea-a413-c3ec8be09ccd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T07:22:04.000Z" - }, - "end": { - "$date": "2022-01-28T07:40:55.000Z" - }, - "events": [ - { - "uuid": "cf7402d4-2e31-4b6b-b7c0-26c2bdcfb1d9", - "start": { - "$date": "2022-01-28T07:22:04.000Z" - }, - "end": { - "$date": "2022-01-28T07:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7e52118-49fc-4f0e-8b78-12edfb3200c6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-28T07:21:57.000Z" - }, - "end": { - "$date": "2022-01-28T07:40:53.000Z" - }, - "events": [ - { - "uuid": "b6a0e088-a374-4cd5-8e84-e13523a4b3bd", - "start": { - "$date": "2022-01-28T07:21:57.000Z" - }, - "end": { - "$date": "2022-01-28T07:40:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc032f8a-8b0a-4e85-b7dc-f34685b39738", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-28T07:21:57.000Z" - }, - "end": { - "$date": "2022-01-28T07:40:54.000Z" - }, - "events": [ - { - "uuid": "13a344ee-bb87-46af-971b-ccfccb7f70a0", - "start": { - "$date": "2022-01-28T07:21:57.000Z" - }, - "end": { - "$date": "2022-01-28T07:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "0e59dd0d-8f2c-44cb-ab44-08d756cef46c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-28T11:08:59.000Z" - }, - "end": { - "$date": "2022-01-28T14:51:35.000Z" - }, - "events": [ - { - "uuid": "06863859-1f5a-495e-80b1-a0c3a225f040", - "start": { - "$date": "2022-01-28T11:08:59.000Z" - }, - "end": { - "$date": "2022-01-28T14:51:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3f80c5d4-f964-426f-87b4-d73c96b1d78a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-28T13:24:43.000Z" - }, - "end": { - "$date": "2022-01-28T13:39:50.000Z" - }, - "events": [ - { - "uuid": "89b3238a-d071-451b-bae4-e55a1bc32ed3", - "start": { - "$date": "2022-01-28T13:24:43.000Z" - }, - "end": { - "$date": "2022-01-28T13:39:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "6a003878-f494-48b0-b347-0f68a00a8b6f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-28T15:35:55.000Z" - }, - "end": { - "$date": "2022-01-28T16:32:01.000Z" - }, - "events": [ - { - "uuid": "d53fc679-ae61-4559-b285-58694785252e", - "start": { - "$date": "2022-01-28T15:35:55.000Z" - }, - "end": { - "$date": "2022-01-28T16:32:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "494e0f56-947f-4979-bc7b-5b972a673726", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T16:44:59.000Z" - }, - "end": { - "$date": "2022-01-28T17:02:24.000Z" - }, - "events": [ - { - "uuid": "1b998710-b0b0-42b0-acb3-61092295dd5a", - "start": { - "$date": "2022-01-28T16:44:59.000Z" - }, - "end": { - "$date": "2022-01-28T17:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "06491e74-4a84-4969-ad5f-e40e9c40b42f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-28T16:49:41.000Z" - }, - "end": { - "$date": "2022-01-28T17:24:17.000Z" - }, - "events": [ - { - "uuid": "f3118d95-4728-460e-b305-a3ecf63ba57a", - "start": { - "$date": "2022-01-28T16:49:41.000Z" - }, - "end": { - "$date": "2022-01-28T17:24:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "353e6409-dbf6-45ce-8a51-e4396c7eaf6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T17:04:47.000Z" - }, - "end": { - "$date": "2022-01-28T17:21:22.000Z" - }, - "events": [ - { - "uuid": "9d8ca832-0594-42e0-a2e9-5dec368ea13a", - "start": { - "$date": "2022-01-28T17:04:47.000Z" - }, - "end": { - "$date": "2022-01-28T17:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c29c272b-5a4e-4c65-8a6c-42a3624e2b69", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T17:24:30.000Z" - }, - "end": { - "$date": "2022-01-28T17:43:24.000Z" - }, - "events": [ - { - "uuid": "04da46b5-a39e-4a56-8d48-e0d79457e40f", - "start": { - "$date": "2022-01-28T17:24:30.000Z" - }, - "end": { - "$date": "2022-01-28T17:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fcebc3b-16de-471f-9d23-f62e901d81cd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-28T17:25:52.000Z" - }, - "end": { - "$date": "2022-01-28T17:47:22.000Z" - }, - "events": [ - { - "uuid": "67190f0a-ef2e-476a-a6c0-12d07cc9b343", - "start": { - "$date": "2022-01-28T17:25:52.000Z" - }, - "end": { - "$date": "2022-01-28T17:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b098ba4-3a5d-4526-8987-da6c815d8e3e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T17:45:39.000Z" - }, - "end": { - "$date": "2022-01-28T18:00:44.000Z" - }, - "events": [ - { - "uuid": "a586ebec-b797-4ece-a86a-f7ff3b71726a", - "start": { - "$date": "2022-01-28T17:45:39.000Z" - }, - "end": { - "$date": "2022-01-28T18:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e5e36e1-03eb-4b0e-9922-f51cccdc9210", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-28T17:48:20.000Z" - }, - "end": { - "$date": "2022-01-28T18:07:50.000Z" - }, - "events": [ - { - "uuid": "71297729-177e-4b96-b228-794b787f91a8", - "start": { - "$date": "2022-01-28T17:48:20.000Z" - }, - "end": { - "$date": "2022-01-28T18:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "045fb061-1fe6-4edd-855b-39459ed9d8e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-28T18:01:35.000Z" - }, - "end": { - "$date": "2022-01-28T18:05:32.000Z" - }, - "events": [ - { - "uuid": "7a3a3617-38ae-47d4-8c42-15b44fb672d5", - "start": { - "$date": "2022-01-28T18:01:35.000Z" - }, - "end": { - "$date": "2022-01-28T18:05:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de4898e4-0575-4f77-bc45-29e0d028472f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-28T18:07:52.000Z" - }, - "end": { - "$date": "2022-01-28T18:22:08.000Z" - }, - "events": [ - { - "uuid": "9a23ff73-e2b2-4e0f-ac0a-c743d05d9053", - "start": { - "$date": "2022-01-28T18:07:52.000Z" - }, - "end": { - "$date": "2022-01-28T18:22:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "37a1bbb1-e115-4a8a-84b4-0db1c279fe78", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T18:23:35.000Z" - }, - "end": { - "$date": "2022-01-28T19:04:24.000Z" - }, - "events": [ - { - "uuid": "8e6531da-ceaa-4535-9532-2c7300490904", - "start": { - "$date": "2022-01-28T18:23:35.000Z" - }, - "end": { - "$date": "2022-01-28T19:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "bd99aacf-34c8-4143-bc2e-49539ca88b69", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-28T18:29:49.000Z" - }, - "end": { - "$date": "2022-01-28T18:39:39.000Z" - }, - "events": [ - { - "uuid": "a34f9fc9-6c06-47a8-b03b-bb5ff2b3af40", - "start": { - "$date": "2022-01-28T18:29:49.000Z" - }, - "end": { - "$date": "2022-01-28T18:39:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6c6aca9a-adbe-4153-9219-70dc447d0b70", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-28T18:39:50.000Z" - }, - "end": { - "$date": "2022-01-28T18:55:05.000Z" - }, - "events": [ - { - "uuid": "82a8158a-79ff-44a5-a5a6-a677d6fa5faa", - "start": { - "$date": "2022-01-28T18:39:50.000Z" - }, - "end": { - "$date": "2022-01-28T18:55:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "94f0b819-f513-4355-958a-8debe06fa2d0", - "uuid": "e6997d5d-07ca-44dc-bc7d-e1ab63cf31f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T19:34:22.000Z" - }, - "end": { - "$date": "2022-01-28T20:54:51.000Z" - }, - "events": [ - { - "uuid": "7d284052-cc09-4cb7-ad99-4110c292cb33", - "start": { - "$date": "2022-01-28T19:34:22.000Z" - }, - "end": { - "$date": "2022-01-28T20:54:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e424631f-5abc-4ce6-845c-5baab636852f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T20:39:38.000Z" - }, - "end": { - "$date": "2022-01-28T21:17:23.000Z" - }, - "events": [ - { - "uuid": "93c84efb-90e0-49da-a87d-ef0708040f37", - "start": { - "$date": "2022-01-28T20:39:38.000Z" - }, - "end": { - "$date": "2022-01-28T21:17:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7673a9b5-e9c9-43c6-9535-dd8c593984dc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T21:22:54.000Z" - }, - "end": { - "$date": "2022-01-28T21:48:36.000Z" - }, - "events": [ - { - "uuid": "b313b0cb-6c21-4856-ab92-060899ea4f98", - "start": { - "$date": "2022-01-28T21:22:54.000Z" - }, - "end": { - "$date": "2022-01-28T21:48:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "67128fd9-ce23-4d91-9d46-9f2ae6d6a4f6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T21:28:50.000Z" - }, - "end": { - "$date": "2022-01-28T22:06:01.000Z" - }, - "events": [ - { - "uuid": "05ca21f7-54d7-45a9-93f6-d2e7aaac292a", - "start": { - "$date": "2022-01-28T21:28:50.000Z" - }, - "end": { - "$date": "2022-01-28T22:06:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "902adf9c-5beb-48c3-8d14-0ce509522566", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T21:51:36.000Z" - }, - "end": { - "$date": "2022-01-28T22:14:32.000Z" - }, - "events": [ - { - "uuid": "242500b2-1d97-47b5-8fa2-2bb1ee07c1ec", - "start": { - "$date": "2022-01-28T21:51:36.000Z" - }, - "end": { - "$date": "2022-01-28T22:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "0ea6e96c-d70e-4114-b3d8-33310e5a86c8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-28T22:06:11.000Z" - }, - "end": { - "$date": "2022-01-28T23:52:10.000Z" - }, - "events": [ - { - "uuid": "46721a32-9973-4d46-b7ff-28ac85fa7d70", - "start": { - "$date": "2022-01-28T22:06:11.000Z" - }, - "end": { - "$date": "2022-01-28T23:52:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "853921d1-16b5-4ea7-9b2c-0b68d1ad9f7b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T22:20:48.000Z" - }, - "end": { - "$date": "2022-01-28T22:24:29.000Z" - }, - "events": [ - { - "uuid": "25441a41-8245-4de0-882b-e7b53485e1c3", - "start": { - "$date": "2022-01-28T22:20:48.000Z" - }, - "end": { - "$date": "2022-01-28T22:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "63cd2c0e-b52e-411b-ba27-0e91c761a135", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T22:24:58.000Z" - }, - "end": { - "$date": "2022-01-28T22:37:10.000Z" - }, - "events": [ - { - "uuid": "4b4f6a19-852c-4760-b481-6c6f32ea3719", - "start": { - "$date": "2022-01-28T22:24:58.000Z" - }, - "end": { - "$date": "2022-01-28T22:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "7ffe9681-f739-49ac-84d9-1e25986ddd54", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-28T22:52:07.000Z" - }, - "end": { - "$date": "2022-01-28T23:47:29.000Z" - }, - "events": [ - { - "uuid": "dc41e4e4-b9bf-4be8-9dec-90846e8a8056", - "start": { - "$date": "2022-01-28T22:52:07.000Z" - }, - "end": { - "$date": "2022-01-28T23:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d5660238-087f-43ca-b30d-682d46b4a767", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T23:08:59.000Z" - }, - "end": { - "$date": "2022-01-28T23:33:37.000Z" - }, - "events": [ - { - "uuid": "564ebca1-6599-4925-baec-e02675dcd1b8", - "start": { - "$date": "2022-01-28T23:08:59.000Z" - }, - "end": { - "$date": "2022-01-28T23:33:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6ef2059-eeae-42d4-84b0-c216780cdef0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-28T23:11:08.000Z" - }, - "end": { - "$date": "2022-01-28T23:41:45.000Z" - }, - "events": [ - { - "uuid": "bb38de72-49c1-44e7-998e-bc7e525fc1ff", - "start": { - "$date": "2022-01-28T23:11:08.000Z" - }, - "end": { - "$date": "2022-01-28T23:41:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c079b33-f374-4c91-b710-0a47195ecef8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-28T23:42:42.000Z" - }, - "end": { - "$date": "2022-01-28T23:59:48.000Z" - }, - "events": [ - { - "uuid": "a5afd91f-c72e-4c88-8ec9-856a0c05acb7", - "start": { - "$date": "2022-01-28T23:42:42.000Z" - }, - "end": { - "$date": "2022-01-28T23:59:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a04a8932-ead4-493e-85a6-c7fffd978632", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-28T23:55:50.000Z" - }, - "end": { - "$date": "2022-01-29T00:27:23.000Z" - }, - "events": [ - { - "uuid": "4a601f10-44e6-45f2-b173-9b95cce75d91", - "start": { - "$date": "2022-01-28T23:55:50.000Z" - }, - "end": { - "$date": "2022-01-29T00:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57a1df72-615f-43fb-b2b4-72c17938a101", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-28T23:59:55.000Z" - }, - "end": { - "$date": "2022-01-29T00:19:35.000Z" - }, - "events": [ - { - "uuid": "2b1975f2-1827-4042-a3cd-5cf7ad034e66", - "start": { - "$date": "2022-01-28T23:59:55.000Z" - }, - "end": { - "$date": "2022-01-29T00:19:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "9a28cf36-6c72-4404-884d-5fffaa94d229", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-28T23:58:03.000Z" - }, - "end": { - "$date": "2022-01-29T00:13:44.000Z" - }, - "events": [ - { - "uuid": "433ebe6e-7638-417d-a54c-28b922a23351", - "start": { - "$date": "2022-01-28T23:58:03.000Z" - }, - "end": { - "$date": "2022-01-29T00:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81c5d803-adca-42ae-879d-9da1dc62882e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T00:03:40.000Z" - }, - "end": { - "$date": "2022-01-29T00:16:40.000Z" - }, - "events": [ - { - "uuid": "39f17c61-cab0-4b2c-8308-4116c6ad22bc", - "start": { - "$date": "2022-01-29T00:03:40.000Z" - }, - "end": { - "$date": "2022-01-29T00:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "06be6d99-ba17-4453-843f-b363cafbd11b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T00:02:31.000Z" - }, - "end": { - "$date": "2022-01-29T00:34:23.000Z" - }, - "events": [ - { - "uuid": "7e047e78-9043-4f4d-a686-81420101a7b4", - "start": { - "$date": "2022-01-29T00:02:31.000Z" - }, - "end": { - "$date": "2022-01-29T00:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c4c8b4e-8e96-41d1-9060-65f311b86908", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T00:37:01.000Z" - }, - "end": { - "$date": "2022-01-29T00:59:21.000Z" - }, - "events": [ - { - "uuid": "ab0a97dd-054c-4c61-a288-d3d9a58246f2", - "start": { - "$date": "2022-01-29T00:37:01.000Z" - }, - "end": { - "$date": "2022-01-29T00:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c2496c6-97b4-4f3d-a8dc-011d0803d9a9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T00:23:06.000Z" - }, - "end": { - "$date": "2022-01-29T00:40:37.000Z" - }, - "events": [ - { - "uuid": "1be6d686-c4c2-4259-86c4-47084bec8f53", - "start": { - "$date": "2022-01-29T00:23:06.000Z" - }, - "end": { - "$date": "2022-01-29T00:40:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2f323978-9cfa-4561-a058-53f2d8b8c1f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T00:36:13.000Z" - }, - "end": { - "$date": "2022-01-29T01:29:15.000Z" - }, - "events": [ - { - "uuid": "ba1f1320-581f-4320-b9a6-48bfe495ea78", - "start": { - "$date": "2022-01-29T00:36:13.000Z" - }, - "end": { - "$date": "2022-01-29T01:29:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7e48c54-9e43-4d99-a3cb-6bd3528aace2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T00:43:17.000Z" - }, - "end": { - "$date": "2022-01-29T01:03:19.000Z" - }, - "events": [ - { - "uuid": "975956a1-0c31-4f11-9d5e-5d38351469d9", - "start": { - "$date": "2022-01-29T00:43:17.000Z" - }, - "end": { - "$date": "2022-01-29T01:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf27551a-68e9-4dd4-a8a3-17dc4ea74116", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T01:03:15.000Z" - }, - "end": { - "$date": "2022-01-29T01:22:55.000Z" - }, - "events": [ - { - "uuid": "15bff8fc-c310-4980-8e75-e20b00cdea32", - "start": { - "$date": "2022-01-29T01:03:15.000Z" - }, - "end": { - "$date": "2022-01-29T01:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0699d453-e4a2-4c31-a17e-e295497c5956", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-29T00:59:49.000Z" - }, - "end": { - "$date": "2022-01-29T01:29:17.000Z" - }, - "events": [ - { - "uuid": "39edd6fe-1a4d-4022-81a5-28799611d402", - "start": { - "$date": "2022-01-29T00:59:49.000Z" - }, - "end": { - "$date": "2022-01-29T01:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "42598551-0597-42ec-b019-aee9a85535a1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T01:07:14.000Z" - }, - "end": { - "$date": "2022-01-29T01:18:55.000Z" - }, - "events": [ - { - "uuid": "a9f234d8-baa2-48f6-9984-ccba02b0b8db", - "start": { - "$date": "2022-01-29T01:07:14.000Z" - }, - "end": { - "$date": "2022-01-29T01:18:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e95e1d5d-97ac-49f5-8429-4e1459a9174e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T01:22:05.000Z" - }, - "end": { - "$date": "2022-01-29T01:34:41.000Z" - }, - "events": [ - { - "uuid": "42734a8c-022a-42c8-8bab-db812a6a28d4", - "start": { - "$date": "2022-01-29T01:22:05.000Z" - }, - "end": { - "$date": "2022-01-29T01:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "f6f2eaa9-5ad3-41d0-a6a4-92f0118f585c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-29T01:30:01.000Z" - }, - "end": { - "$date": "2022-01-29T02:08:37.000Z" - }, - "events": [ - { - "uuid": "49274898-753f-4ad3-93c2-abd46515e4e7", - "start": { - "$date": "2022-01-29T01:30:01.000Z" - }, - "end": { - "$date": "2022-01-29T02:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ece663c5-ad1d-468d-89b9-386fbbed712a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-29T01:31:11.000Z" - }, - "end": { - "$date": "2022-01-29T01:37:49.000Z" - }, - "events": [ - { - "uuid": "a6b6601f-2c23-46aa-8d86-6ad4475e1e92", - "start": { - "$date": "2022-01-29T01:31:11.000Z" - }, - "end": { - "$date": "2022-01-29T01:37:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97c50ea3-bde2-4738-b12d-79ca98fe6dd4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T01:36:53.000Z" - }, - "end": { - "$date": "2022-01-29T01:51:56.000Z" - }, - "events": [ - { - "uuid": "b3842be8-3828-4447-841e-97583e615a59", - "start": { - "$date": "2022-01-29T01:36:53.000Z" - }, - "end": { - "$date": "2022-01-29T01:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "281f40d1-8b99-44e1-9625-dfb847b349a2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T02:09:26.000Z" - }, - "end": { - "$date": "2022-01-29T03:56:37.000Z" - }, - "events": [ - { - "uuid": "9e42de21-9881-41e6-89c5-1900ea073d93", - "start": { - "$date": "2022-01-29T02:09:26.000Z" - }, - "end": { - "$date": "2022-01-29T03:56:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ddf8543b-45c7-46b1-bc51-0763e36dc4cd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-29T02:29:34.000Z" - }, - "end": { - "$date": "2022-01-29T03:37:59.000Z" - }, - "events": [ - { - "uuid": "996c4866-c57a-4a4b-9fe8-fadedf68e071", - "start": { - "$date": "2022-01-29T02:29:34.000Z" - }, - "end": { - "$date": "2022-01-29T03:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9bda09cb-0757-47e5-b799-a8b096e32c76", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-29T02:58:37.000Z" - }, - "end": { - "$date": "2022-01-29T03:30:03.000Z" - }, - "events": [ - { - "uuid": "f6e8a08d-1098-42ce-bfb0-8900a807ba47", - "start": { - "$date": "2022-01-29T02:58:37.000Z" - }, - "end": { - "$date": "2022-01-29T03:30:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bfcbc9e0-1039-4cab-a053-6ad7b649b7c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T03:19:01.000Z" - }, - "end": { - "$date": "2022-01-29T03:45:24.000Z" - }, - "events": [ - { - "uuid": "6a26af5d-1b4e-4b0f-8fa8-cb09965e7b3a", - "start": { - "$date": "2022-01-29T03:19:01.000Z" - }, - "end": { - "$date": "2022-01-29T03:45:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9f88b74c-9ef6-4a1a-b4d3-292d2e59f804", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T03:24:17.000Z" - }, - "end": { - "$date": "2022-01-29T04:10:29.000Z" - }, - "events": [ - { - "uuid": "d6efab5a-dbea-4c1b-9663-fd0f6841a719", - "start": { - "$date": "2022-01-29T03:24:17.000Z" - }, - "end": { - "$date": "2022-01-29T04:10:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "461cd5b3-167a-436f-bb10-892e38af0a79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-29T03:30:20.000Z" - }, - "end": { - "$date": "2022-01-29T04:36:46.000Z" - }, - "events": [ - { - "uuid": "9913c284-ca8d-4d38-b278-fc500032805c", - "start": { - "$date": "2022-01-29T03:30:20.000Z" - }, - "end": { - "$date": "2022-01-29T04:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371ae7e0-4624-46f4-b794-42c2e417f1b6", - "uuid": "43b9678d-7c82-42e4-b88c-7407c0feb75b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-29T03:31:10.000Z" - }, - "end": { - "$date": "2022-01-29T04:10:50.000Z" - }, - "events": [ - { - "uuid": "4f72fea7-067f-442f-848b-36b3fcd6bf54", - "start": { - "$date": "2022-01-29T03:31:10.000Z" - }, - "end": { - "$date": "2022-01-29T04:10:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a5d603f-5251-47b8-89ad-31d90534a138", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T06:15:45.000Z" - }, - "end": { - "$date": "2022-01-29T07:00:28.000Z" - }, - "events": [ - { - "uuid": "f63d18d5-f8e0-489c-b83f-2f56d22cce3c", - "start": { - "$date": "2022-01-29T06:15:45.000Z" - }, - "end": { - "$date": "2022-01-29T07:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "f4db57b2-6c3e-4d3c-aa06-299aa52ac347", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T04:10:50.000Z" - }, - "end": { - "$date": "2022-01-29T04:12:44.000Z" - }, - "events": [ - { - "uuid": "6248195a-a72e-4b3a-afbe-015561b877b8", - "start": { - "$date": "2022-01-29T04:10:50.000Z" - }, - "end": { - "$date": "2022-01-29T04:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "947fb07b-cb5f-4a84-9e41-3e7f2c8cd257", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-29T04:12:31.000Z" - }, - "end": { - "$date": "2022-01-29T06:28:58.000Z" - }, - "events": [ - { - "uuid": "e4603579-1b7d-4f39-b356-6fbc30c666d9", - "start": { - "$date": "2022-01-29T04:12:31.000Z" - }, - "end": { - "$date": "2022-01-29T06:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e781c7fa-cb7e-4fdf-ab5e-5f0e2413cd69", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-29T04:15:23.000Z" - }, - "end": { - "$date": "2022-01-29T04:46:50.000Z" - }, - "events": [ - { - "uuid": "20f2a159-f5c7-4ab2-940e-a01a8d7f6530", - "start": { - "$date": "2022-01-29T04:15:23.000Z" - }, - "end": { - "$date": "2022-01-29T04:46:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c04cb5d4-5cd3-498f-a629-5170ce772aaf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T04:22:45.000Z" - }, - "end": { - "$date": "2022-01-29T04:24:19.000Z" - }, - "events": [ - { - "uuid": "56394ddb-7b18-4fd6-8b11-b57c9da82b53", - "start": { - "$date": "2022-01-29T04:22:45.000Z" - }, - "end": { - "$date": "2022-01-29T04:24:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "d7a321c1-cd87-4274-88ad-3d025b8689fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T04:24:34.000Z" - }, - "end": { - "$date": "2022-01-29T04:51:18.000Z" - }, - "events": [ - { - "uuid": "0716bbbb-1447-4765-b67b-2fde7f0ff3e3", - "start": { - "$date": "2022-01-29T04:24:34.000Z" - }, - "end": { - "$date": "2022-01-29T04:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "222a5cf9-c72e-4f1f-96dc-6f961c20432f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T04:39:01.000Z" - }, - "end": { - "$date": "2022-01-29T05:00:07.000Z" - }, - "events": [ - { - "uuid": "6f6dc980-e7a9-4f26-9b22-3a3c455d5389", - "start": { - "$date": "2022-01-29T04:39:01.000Z" - }, - "end": { - "$date": "2022-01-29T05:00:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18c32633-95cf-4b3b-9786-02010dd2ce4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T05:02:32.000Z" - }, - "end": { - "$date": "2022-01-29T05:23:24.000Z" - }, - "events": [ - { - "uuid": "4437bc25-0974-42d5-93b8-4e5051e11e69", - "start": { - "$date": "2022-01-29T05:02:32.000Z" - }, - "end": { - "$date": "2022-01-29T05:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ad071827-119c-42d4-acee-e68b84a3d8bc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-29T05:03:06.000Z" - }, - "end": { - "$date": "2022-01-29T13:17:14.000Z" - }, - "events": [ - { - "uuid": "a6554062-b28b-4e42-9c4f-f92f08653e00", - "start": { - "$date": "2022-01-29T05:03:06.000Z" - }, - "end": { - "$date": "2022-01-29T13:17:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "37c906b4-33a5-4433-a912-119544dff720", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-01-29T05:10:20.000Z" - }, - "end": { - "$date": "2022-01-29T09:57:46.000Z" - }, - "events": [ - { - "uuid": "566add4b-2dc4-40a4-9e4f-1cef9a4b3389", - "start": { - "$date": "2022-01-29T05:10:20.000Z" - }, - "end": { - "$date": "2022-01-29T09:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a5e1c2a-da5b-497b-b1b5-d00f18caa1ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T05:27:19.000Z" - }, - "end": { - "$date": "2022-01-29T05:41:25.000Z" - }, - "events": [ - { - "uuid": "6d7958a3-6cec-45a5-9ceb-746f68051f42", - "start": { - "$date": "2022-01-29T05:27:19.000Z" - }, - "end": { - "$date": "2022-01-29T05:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "f143fccb-4d02-4416-abbf-94d7730e0196", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-29T05:34:38.000Z" - }, - "end": { - "$date": "2022-01-29T07:11:07.000Z" - }, - "events": [ - { - "uuid": "bcf54abf-50f6-4413-a2c4-acdc17d61f6e", - "start": { - "$date": "2022-01-29T05:34:38.000Z" - }, - "end": { - "$date": "2022-01-29T07:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8db5e8f4-cb8a-425f-8009-fcd3175728a2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T05:42:05.000Z" - }, - "end": { - "$date": "2022-01-29T05:47:03.000Z" - }, - "events": [ - { - "uuid": "e84870dd-9419-4a42-b9b9-354c9d4fa933", - "start": { - "$date": "2022-01-29T05:42:05.000Z" - }, - "end": { - "$date": "2022-01-29T05:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcdb859b-36bd-4dfc-b415-00005fd60b48", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T05:48:36.000Z" - }, - "end": { - "$date": "2022-01-29T06:21:14.000Z" - }, - "events": [ - { - "uuid": "79d56407-8b44-48f1-b8c6-6cfe70639708", - "start": { - "$date": "2022-01-29T05:48:36.000Z" - }, - "end": { - "$date": "2022-01-29T06:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c89a7b8-6788-4b0a-9d99-81e134543c86", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-29T06:15:54.000Z" - }, - "end": { - "$date": "2022-01-29T07:00:30.000Z" - }, - "events": [ - { - "uuid": "2c68f819-692f-475f-83be-ac929b886833", - "start": { - "$date": "2022-01-29T06:15:54.000Z" - }, - "end": { - "$date": "2022-01-29T07:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0c856849-1b40-4225-9b58-4be6cc800a73", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T06:10:03.000Z" - }, - "end": { - "$date": "2022-01-29T06:28:09.000Z" - }, - "events": [ - { - "uuid": "752677ca-8ad0-4507-b312-2e9fdf83b0e3", - "start": { - "$date": "2022-01-29T06:10:03.000Z" - }, - "end": { - "$date": "2022-01-29T06:28:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4685030-5c5a-4d65-a0bf-f5a7d9304d07", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T06:22:46.000Z" - }, - "end": { - "$date": "2022-01-29T06:53:51.000Z" - }, - "events": [ - { - "uuid": "d7d67b43-a7a8-46a5-b50f-665d72557aba", - "start": { - "$date": "2022-01-29T06:22:46.000Z" - }, - "end": { - "$date": "2022-01-29T06:53:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "46ecf0c2-da62-4421-a69c-f249ff2623e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T06:35:00.000Z" - }, - "end": { - "$date": "2022-01-29T08:01:13.000Z" - }, - "events": [ - { - "uuid": "c3a763b3-db01-4f84-aab5-27d2f104bff6", - "start": { - "$date": "2022-01-29T06:35:00.000Z" - }, - "end": { - "$date": "2022-01-29T06:46:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d96ae5f-283e-46a1-87a0-72cf56cf796f", - "start": { - "$date": "2022-01-29T06:46:00.000Z" - }, - "end": { - "$date": "2022-01-29T06:47:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "45a62e5a-0ebc-418d-9552-12c3d2121168", - "start": { - "$date": "2022-01-29T06:47:00.000Z" - }, - "end": { - "$date": "2022-01-29T08:01:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0aa6531e-5949-4956-b054-e09a1d3c46bc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T06:56:06.000Z" - }, - "end": { - "$date": "2022-01-29T07:17:43.000Z" - }, - "events": [ - { - "uuid": "aecde32a-6138-4fb3-aee8-d1c2f51f9f79", - "start": { - "$date": "2022-01-29T06:56:06.000Z" - }, - "end": { - "$date": "2022-01-29T07:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2fe26f19-585c-4f0f-83fa-37021eaab9e9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T07:14:07.000Z" - }, - "end": { - "$date": "2022-01-29T07:50:49.000Z" - }, - "events": [ - { - "uuid": "b1e0ea0e-5bb9-4bcc-b326-5fb19e3030d4", - "start": { - "$date": "2022-01-29T07:14:07.000Z" - }, - "end": { - "$date": "2022-01-29T07:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b48b166a-9935-41ea-9a30-535ad2d31d7f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-29T07:14:07.000Z" - }, - "end": { - "$date": "2022-01-29T07:50:58.000Z" - }, - "events": [ - { - "uuid": "f5583266-4dcf-48a5-98fd-53a5c850c8da", - "start": { - "$date": "2022-01-29T07:14:07.000Z" - }, - "end": { - "$date": "2022-01-29T07:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cf9a7084-4e9d-4c64-9a36-45f8f7961863", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T07:20:12.000Z" - }, - "end": { - "$date": "2022-01-29T07:50:55.000Z" - }, - "events": [ - { - "uuid": "363f375a-43c5-41f6-8358-6431b54a70d9", - "start": { - "$date": "2022-01-29T07:20:12.000Z" - }, - "end": { - "$date": "2022-01-29T07:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fada1fee-2848-4c5a-9171-52f7f41ea225", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-29T07:26:50.000Z" - }, - "end": { - "$date": "2022-01-29T08:06:45.000Z" - }, - "events": [ - { - "uuid": "0732a66d-4959-400a-800d-97da66c28a19", - "start": { - "$date": "2022-01-29T07:26:50.000Z" - }, - "end": { - "$date": "2022-01-29T08:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1073f7e3-391b-4bc2-a5d6-51d0613c98bf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T07:55:13.000Z" - }, - "end": { - "$date": "2022-01-29T08:26:39.000Z" - }, - "events": [ - { - "uuid": "66cad834-2403-470b-b080-c91d1b2bf25b", - "start": { - "$date": "2022-01-29T07:55:13.000Z" - }, - "end": { - "$date": "2022-01-29T08:26:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b73b7dbb-5d38-4e81-8b85-0ac2c724e816", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-29T07:53:13.000Z" - }, - "end": { - "$date": "2022-01-29T08:24:30.000Z" - }, - "events": [ - { - "uuid": "4f265efb-ea97-4c54-97f2-99521356e1e9", - "start": { - "$date": "2022-01-29T07:53:13.000Z" - }, - "end": { - "$date": "2022-01-29T08:24:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e664637e-921f-42c5-9719-7ab5461c1f09", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-29T07:55:13.000Z" - }, - "end": { - "$date": "2022-01-29T08:26:45.000Z" - }, - "events": [ - { - "uuid": "22435fbf-a975-4ad7-9bc5-5f8fa300700a", - "start": { - "$date": "2022-01-29T07:55:13.000Z" - }, - "end": { - "$date": "2022-01-29T08:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59a75deb-4ac6-4961-855b-d3731a142c1e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T08:31:49.000Z" - }, - "end": { - "$date": "2022-01-29T09:06:10.000Z" - }, - "events": [ - { - "uuid": "b4472a44-62be-4f8e-b01b-158a7e7a9aa0", - "start": { - "$date": "2022-01-29T08:31:49.000Z" - }, - "end": { - "$date": "2022-01-29T09:06:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a9c80d5-051c-4d35-9bcd-e63029fe7776", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-29T08:31:50.000Z" - }, - "end": { - "$date": "2022-01-29T09:06:16.000Z" - }, - "events": [ - { - "uuid": "58af4b6f-0eee-411c-87fb-cddde0098f80", - "start": { - "$date": "2022-01-29T08:31:50.000Z" - }, - "end": { - "$date": "2022-01-29T09:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3a18a362-0813-4589-8f61-9ce45b23599a", - "uuid": "8521b1a7-cfb9-47c6-a1f0-82c9d5245681", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T08:42:48.000Z" - }, - "end": { - "$date": "2022-01-29T09:15:08.000Z" - }, - "events": [ - { - "uuid": "57a14113-a222-4db6-a3a7-5f94f9b1396e", - "start": { - "$date": "2022-01-29T08:42:48.000Z" - }, - "end": { - "$date": "2022-01-29T09:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7a2ec3f-ec93-48cc-8579-56e4d069a654", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T09:13:40.000Z" - }, - "end": { - "$date": "2022-01-29T09:43:05.000Z" - }, - "events": [ - { - "uuid": "c8bc152c-0ed6-469a-8440-0d661977a2a5", - "start": { - "$date": "2022-01-29T09:13:40.000Z" - }, - "end": { - "$date": "2022-01-29T09:43:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d9c26e0-41e4-44aa-86d7-41bbb6e750f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-29T09:13:43.000Z" - }, - "end": { - "$date": "2022-01-29T09:43:07.000Z" - }, - "events": [ - { - "uuid": "0173bebe-c488-4755-a3bf-0ec52e784ad6", - "start": { - "$date": "2022-01-29T09:13:43.000Z" - }, - "end": { - "$date": "2022-01-29T09:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96be00a4-9162-4308-a1ed-c712d708634e", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T09:43:20.000Z" - }, - "end": { - "$date": "2022-01-29T10:27:01.000Z" - }, - "events": [ - { - "uuid": "f18dfc18-be49-427c-b1a9-3ae0334281de", - "start": { - "$date": "2022-01-29T09:43:20.000Z" - }, - "end": { - "$date": "2022-01-29T10:27:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2d26ab20-ba43-429b-a99f-82c5fdc154f3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-29T13:50:30.000Z" - }, - "end": { - "$date": "2022-01-29T14:34:35.000Z" - }, - "events": [ - { - "uuid": "9027944b-5ba2-415d-9a2a-014f7168ed57", - "start": { - "$date": "2022-01-29T13:50:30.000Z" - }, - "end": { - "$date": "2022-01-29T14:34:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "ea61b78f-8448-43fa-8949-dc69e18ea705", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T15:17:49.000Z" - }, - "end": { - "$date": "2022-01-29T15:25:04.000Z" - }, - "events": [ - { - "uuid": "6a44b7ab-dfb3-422f-8764-961f384587c6", - "start": { - "$date": "2022-01-29T15:17:49.000Z" - }, - "end": { - "$date": "2022-01-29T15:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "9aee023c-e363-4656-91b1-13ca42a7d9cf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T15:25:24.000Z" - }, - "end": { - "$date": "2022-01-29T16:39:44.000Z" - }, - "events": [ - { - "uuid": "32e47eee-facf-4920-bae9-dc1a2b8b33c1", - "start": { - "$date": "2022-01-29T15:25:24.000Z" - }, - "end": { - "$date": "2022-01-29T16:39:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f99c779b-3cc5-47f9-98a5-71f2115a99ba", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T16:33:21.000Z" - }, - "end": { - "$date": "2022-01-29T16:49:37.000Z" - }, - "events": [ - { - "uuid": "8352f9cf-a6ae-40ef-ab88-6ba20176f0dd", - "start": { - "$date": "2022-01-29T16:33:21.000Z" - }, - "end": { - "$date": "2022-01-29T16:49:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a01d6308-f608-42b9-b73f-f42f1962e003", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T16:50:27.000Z" - }, - "end": { - "$date": "2022-01-29T17:07:18.000Z" - }, - "events": [ - { - "uuid": "e7583bcb-8bc7-4d0a-8579-98ea79d153bb", - "start": { - "$date": "2022-01-29T16:50:27.000Z" - }, - "end": { - "$date": "2022-01-29T17:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdf489e1-4160-409d-bee1-4e7debea17b9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T16:57:56.000Z" - }, - "end": { - "$date": "2022-01-29T17:15:24.000Z" - }, - "events": [ - { - "uuid": "ac60311b-f8e0-40f9-8990-bcf01aa181ac", - "start": { - "$date": "2022-01-29T16:57:56.000Z" - }, - "end": { - "$date": "2022-01-29T17:15:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe0605dd-6243-4bef-bf5c-c4557514a3fe", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T17:08:18.000Z" - }, - "end": { - "$date": "2022-01-29T17:25:20.000Z" - }, - "events": [ - { - "uuid": "9ad1c1e3-9861-436c-89e4-f6b1b97b39e8", - "start": { - "$date": "2022-01-29T17:08:18.000Z" - }, - "end": { - "$date": "2022-01-29T17:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3a6d27c-41ac-4246-b65c-49e2ed7d18ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T17:17:21.000Z" - }, - "end": { - "$date": "2022-01-29T17:34:25.000Z" - }, - "events": [ - { - "uuid": "5f202b9c-4f41-42ff-9e58-bd49ba485c9d", - "start": { - "$date": "2022-01-29T17:17:21.000Z" - }, - "end": { - "$date": "2022-01-29T17:34:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e4dcaad-29c2-4330-a175-017041030fea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T17:26:20.000Z" - }, - "end": { - "$date": "2022-01-29T17:44:01.000Z" - }, - "events": [ - { - "uuid": "a183b35c-5449-419d-8239-6ec10a349a6a", - "start": { - "$date": "2022-01-29T17:26:20.000Z" - }, - "end": { - "$date": "2022-01-29T17:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1f765a6b-9e6e-42b4-9c8e-02b5b8f90527", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T17:36:16.000Z" - }, - "end": { - "$date": "2022-01-29T17:53:20.000Z" - }, - "events": [ - { - "uuid": "36f0d090-40e9-4320-9fe5-68dfd8f6e1f4", - "start": { - "$date": "2022-01-29T17:36:16.000Z" - }, - "end": { - "$date": "2022-01-29T17:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ca8f174-293b-4fee-8e87-0603ee9e4710", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T18:00:03.000Z" - }, - "end": { - "$date": "2022-01-29T18:23:02.000Z" - }, - "events": [ - { - "uuid": "128b95f6-b22e-4183-95bb-df3399d87dd2", - "start": { - "$date": "2022-01-29T18:00:03.000Z" - }, - "end": { - "$date": "2022-01-29T18:23:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "818660f6-c8bb-4c41-9885-a12e24e19e23", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T18:29:34.000Z" - }, - "end": { - "$date": "2022-01-29T18:51:48.000Z" - }, - "events": [ - { - "uuid": "7eb7438b-13ac-4ee8-b3ca-5bfd1e1e7103", - "start": { - "$date": "2022-01-29T18:29:34.000Z" - }, - "end": { - "$date": "2022-01-29T18:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b53f220c-1182-4907-b532-57aa6dbca999", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T18:34:06.000Z" - }, - "end": { - "$date": "2022-01-29T18:47:37.000Z" - }, - "events": [ - { - "uuid": "7dc69acf-c1aa-4880-96c0-67f54734bd66", - "start": { - "$date": "2022-01-29T18:34:06.000Z" - }, - "end": { - "$date": "2022-01-29T18:47:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0af62358-2b4c-449a-87b2-0ed8a17d2dce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T18:53:50.000Z" - }, - "end": { - "$date": "2022-01-29T19:08:13.000Z" - }, - "events": [ - { - "uuid": "d5aab918-e42f-405b-b4b9-c31bb51ec89c", - "start": { - "$date": "2022-01-29T18:53:50.000Z" - }, - "end": { - "$date": "2022-01-29T19:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d44711a5-e30a-40ed-a34b-83a9a0f733f6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T18:54:03.000Z" - }, - "end": { - "$date": "2022-01-29T19:13:01.000Z" - }, - "events": [ - { - "uuid": "66bff4d1-e800-446d-88f1-a0369dfc17dd", - "start": { - "$date": "2022-01-29T18:54:03.000Z" - }, - "end": { - "$date": "2022-01-29T19:13:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "380b20a6-8ed9-43e5-a4d2-9d50d233bf4e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T19:10:30.000Z" - }, - "end": { - "$date": "2022-01-29T19:31:29.000Z" - }, - "events": [ - { - "uuid": "73fdc494-0ac1-40e9-b0a8-56ead1524552", - "start": { - "$date": "2022-01-29T19:10:30.000Z" - }, - "end": { - "$date": "2022-01-29T19:31:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0dc3e784-4b3f-4ca3-8a27-42dd7666ea59", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T19:31:46.000Z" - }, - "end": { - "$date": "2022-01-29T19:34:46.000Z" - }, - "events": [ - { - "uuid": "343ba0b3-84de-4cf3-8881-118c2d1d7e6a", - "start": { - "$date": "2022-01-29T19:31:46.000Z" - }, - "end": { - "$date": "2022-01-29T19:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6db3e040-c544-44de-b9f4-812deb953c29", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-29T21:31:49.000Z" - }, - "end": { - "$date": "2022-01-29T21:31:58.000Z" - }, - "events": [ - { - "uuid": "9253b803-b382-43e8-b9d8-1306a887ad7f", - "start": { - "$date": "2022-01-29T21:31:49.000Z" - }, - "end": { - "$date": "2022-01-29T21:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f6a8df2-5d07-4163-8630-a5f2da8228ea", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-29T20:28:24.000Z" - }, - "end": { - "$date": "2022-01-29T20:47:03.000Z" - }, - "events": [ - { - "uuid": "6f486b90-33e6-42be-be88-e5117edded66", - "start": { - "$date": "2022-01-29T20:28:24.000Z" - }, - "end": { - "$date": "2022-01-29T20:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c455932-c20f-4ac5-a022-9c3a744e5f47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-29T20:28:22.000Z" - }, - "end": { - "$date": "2022-01-29T20:46:56.000Z" - }, - "events": [ - { - "uuid": "2fb7ed5e-1b3c-400d-9191-bdf4dd90e5d0", - "start": { - "$date": "2022-01-29T20:28:22.000Z" - }, - "end": { - "$date": "2022-01-29T20:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a7708fd-e50f-46c2-8a5d-59102ebb8327", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-29T20:47:34.000Z" - }, - "end": { - "$date": "2022-01-29T21:08:21.000Z" - }, - "events": [ - { - "uuid": "1993d88d-4678-4771-b3a0-c8e5fc28ba0f", - "start": { - "$date": "2022-01-29T20:47:34.000Z" - }, - "end": { - "$date": "2022-01-29T21:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9e4d5602-0353-4582-9c80-d1c8f3a7cf30", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-29T22:25:12.000Z" - }, - "end": { - "$date": "2022-01-29T22:54:58.000Z" - }, - "events": [ - { - "uuid": "0c652c77-a5d5-40f9-9526-28ce4842c2d7", - "start": { - "$date": "2022-01-29T22:25:12.000Z" - }, - "end": { - "$date": "2022-01-29T22:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "de26470c-a0e4-44a2-bcfe-e26831df27a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T22:55:09.000Z" - }, - "end": { - "$date": "2022-01-29T23:40:26.000Z" - }, - "events": [ - { - "uuid": "e793c113-4b86-40e2-8552-c0f7567d845c", - "start": { - "$date": "2022-01-29T22:55:09.000Z" - }, - "end": { - "$date": "2022-01-29T23:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9ec88540-a856-465c-a1c0-65820023351f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-29T23:31:34.000Z" - }, - "end": { - "$date": "2022-01-29T23:32:14.000Z" - }, - "events": [ - { - "uuid": "5adbdc89-aae9-41fd-9462-08c6ea4b2d8d", - "start": { - "$date": "2022-01-29T23:31:34.000Z" - }, - "end": { - "$date": "2022-01-29T23:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fa302622-6583-4cf7-98e9-e0f67b1896d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-29T23:33:52.000Z" - }, - "end": { - "$date": "2022-01-29T23:35:03.000Z" - }, - "events": [ - { - "uuid": "876e672c-1893-4292-a9af-ad25a62678f9", - "start": { - "$date": "2022-01-29T23:33:52.000Z" - }, - "end": { - "$date": "2022-01-29T23:35:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "88faccb6-60ff-4a91-bafe-44f9a033e712", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-29T23:42:46.000Z" - }, - "end": { - "$date": "2022-01-30T00:19:23.000Z" - }, - "events": [ - { - "uuid": "11ce360b-a3d3-43e2-9b9a-9cc13fcfa070", - "start": { - "$date": "2022-01-29T23:42:46.000Z" - }, - "end": { - "$date": "2022-01-30T00:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "8cc2a708-1a2a-43b5-8f7f-3f0d296abcd4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T00:16:53.000Z" - }, - "end": { - "$date": "2022-01-30T03:17:30.000Z" - }, - "events": [ - { - "uuid": "6594474b-e5b1-44ac-ad1c-e895ee642939", - "start": { - "$date": "2022-01-30T00:16:53.000Z" - }, - "end": { - "$date": "2022-01-30T03:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f23ada10-70b7-427f-8d3d-dec2eb04065c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T00:20:18.000Z" - }, - "end": { - "$date": "2022-01-30T01:01:09.000Z" - }, - "events": [ - { - "uuid": "fd9fa4d7-c523-4591-9ce9-1af24d639c7f", - "start": { - "$date": "2022-01-30T00:20:18.000Z" - }, - "end": { - "$date": "2022-01-30T01:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cb6c152d-50b6-485b-9b59-302138fea713", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-30T00:41:53.000Z" - }, - "end": { - "$date": "2022-01-30T02:13:06.000Z" - }, - "events": [ - { - "uuid": "1050d7c3-f935-4401-88ba-6635614b0906", - "start": { - "$date": "2022-01-30T00:41:53.000Z" - }, - "end": { - "$date": "2022-01-30T02:13:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "3cfeb9c5-41cc-41d4-a054-7f3786c86e2c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T01:01:29.000Z" - }, - "end": { - "$date": "2022-01-30T02:12:44.000Z" - }, - "events": [ - { - "uuid": "a6396c6f-4d5d-4e65-af7e-e078ecd75287", - "start": { - "$date": "2022-01-30T01:01:29.000Z" - }, - "end": { - "$date": "2022-01-30T02:12:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae7b8e68-6c20-4cf1-b499-8736261bc295", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T01:31:01.000Z" - }, - "end": { - "$date": "2022-01-30T01:50:08.000Z" - }, - "events": [ - { - "uuid": "c61ca34b-3b42-42b6-a5fd-46d538252efe", - "start": { - "$date": "2022-01-30T01:31:01.000Z" - }, - "end": { - "$date": "2022-01-30T01:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c1f1d47-16cc-4222-9910-05096d638470", - "uuid": "78148d06-e3bf-4d7d-945e-d09fdfecd1e7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-01-30T01:41:47.000Z" - }, - "end": { - "$date": "2022-01-30T01:54:39.000Z" - }, - "events": [ - { - "uuid": "1d7113fe-c7b5-4b26-8513-5379e42b7aee", - "start": { - "$date": "2022-01-30T01:41:47.000Z" - }, - "end": { - "$date": "2022-01-30T01:54:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "570c68cb-8778-4b5f-9c80-a6ed586e25a5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T01:52:02.000Z" - }, - "end": { - "$date": "2022-01-30T02:11:44.000Z" - }, - "events": [ - { - "uuid": "2ca5a0b6-6975-4dd5-8ece-66e67eb92885", - "start": { - "$date": "2022-01-30T01:52:02.000Z" - }, - "end": { - "$date": "2022-01-30T02:11:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a844b1a8-8842-480c-ad90-17b6304194a9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T02:25:15.000Z" - }, - "end": { - "$date": "2022-01-30T02:43:56.000Z" - }, - "events": [ - { - "uuid": "7ec8d0df-86d0-4d22-9c5d-cd2def9ea819", - "start": { - "$date": "2022-01-30T02:25:15.000Z" - }, - "end": { - "$date": "2022-01-30T02:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "54105190-dc87-489a-8a47-9aea17e2bc5e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T02:45:57.000Z" - }, - "end": { - "$date": "2022-01-30T02:46:16.000Z" - }, - "events": [ - { - "uuid": "d0359d55-6f52-4c7b-9c80-f44b05ffba1d", - "start": { - "$date": "2022-01-30T02:45:57.000Z" - }, - "end": { - "$date": "2022-01-30T02:46:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6bbd96b4-fd9c-418b-aa2b-4982deac7506", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T02:48:47.000Z" - }, - "end": { - "$date": "2022-01-30T03:09:17.000Z" - }, - "events": [ - { - "uuid": "ed1cae88-d176-4e28-bb4b-8b4bdc7ef34c", - "start": { - "$date": "2022-01-30T02:48:47.000Z" - }, - "end": { - "$date": "2022-01-30T03:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "727b8cf9-7bcf-4b50-a31e-506ee05b05be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-30T02:51:36.000Z" - }, - "end": { - "$date": "2022-01-30T04:01:39.000Z" - }, - "events": [ - { - "uuid": "8706db29-44f1-4257-b012-3e3e053fdc61", - "start": { - "$date": "2022-01-30T02:51:36.000Z" - }, - "end": { - "$date": "2022-01-30T04:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "8e9937c6-4a35-4aa7-9186-b2c1e8e97384", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-30T03:04:06.000Z" - }, - "end": { - "$date": "2022-01-30T03:08:21.000Z" - }, - "events": [ - { - "uuid": "fc926d56-0994-4be9-a035-1b1801a3b399", - "start": { - "$date": "2022-01-30T03:04:06.000Z" - }, - "end": { - "$date": "2022-01-30T03:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "e15d4dd9-ed69-483c-8b50-0f886f3007f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-30T03:08:51.000Z" - }, - "end": { - "$date": "2022-01-30T03:31:49.000Z" - }, - "events": [ - { - "uuid": "e430c958-d4fb-4e81-b975-4fe096d2b83c", - "start": { - "$date": "2022-01-30T03:08:51.000Z" - }, - "end": { - "$date": "2022-01-30T03:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83817b73-4bdf-4a1c-bdfd-ca066cce4a7e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T03:13:44.000Z" - }, - "end": { - "$date": "2022-01-30T03:43:41.000Z" - }, - "events": [ - { - "uuid": "02cbe606-ca9c-4041-b6ce-c72a5be3b9f9", - "start": { - "$date": "2022-01-30T03:13:44.000Z" - }, - "end": { - "$date": "2022-01-30T03:43:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db18f39d-193e-4a98-8bd2-af047a17da43", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T03:20:35.000Z" - }, - "end": { - "$date": "2022-01-30T04:01:02.000Z" - }, - "events": [ - { - "uuid": "000c7891-cc45-4746-b5a1-cb1a6a6ecf9a", - "start": { - "$date": "2022-01-30T03:20:35.000Z" - }, - "end": { - "$date": "2022-01-30T04:01:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "afee3974-f12f-4cbc-b4a7-fbcae65b8c67", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-30T03:29:37.000Z" - }, - "end": { - "$date": "2022-01-30T04:02:46.000Z" - }, - "events": [ - { - "uuid": "74fef37b-4846-4e66-a84e-b1f8c0b4ef2d", - "start": { - "$date": "2022-01-30T03:29:37.000Z" - }, - "end": { - "$date": "2022-01-30T04:02:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1208d04-5d8b-4f96-bba9-931c3e3fe26a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T04:14:10.000Z" - }, - "end": { - "$date": "2022-01-30T04:42:49.000Z" - }, - "events": [ - { - "uuid": "4eebca2a-ca48-49ab-a38c-65a4c881e8fc", - "start": { - "$date": "2022-01-30T04:14:10.000Z" - }, - "end": { - "$date": "2022-01-30T04:42:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "758731a3-b6cb-45e9-a042-e9d06ba0c82c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T03:48:01.000Z" - }, - "end": { - "$date": "2022-01-30T04:15:07.000Z" - }, - "events": [ - { - "uuid": "d64bc813-9b54-4a33-b7e7-ecada5e0eeed", - "start": { - "$date": "2022-01-30T03:48:01.000Z" - }, - "end": { - "$date": "2022-01-30T04:15:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f199a4dd-2db8-494a-b0d7-ffbe71448897", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T04:19:08.000Z" - }, - "end": { - "$date": "2022-01-30T04:33:33.000Z" - }, - "events": [ - { - "uuid": "e4579753-accb-493c-8a66-eaf767692340", - "start": { - "$date": "2022-01-30T04:19:08.000Z" - }, - "end": { - "$date": "2022-01-30T04:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e5db51db-6f76-4b80-b5c4-a91d6f3eddc6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-30T04:33:45.000Z" - }, - "end": { - "$date": "2022-01-30T07:35:15.000Z" - }, - "events": [ - { - "uuid": "f2910ce1-bf1d-4cf1-a7f1-4c7b19875e57", - "start": { - "$date": "2022-01-30T04:33:45.000Z" - }, - "end": { - "$date": "2022-01-30T07:35:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "797944ab-ddf1-4d26-a757-8fb3785fc8d5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T04:43:34.000Z" - }, - "end": { - "$date": "2022-01-30T05:08:22.000Z" - }, - "events": [ - { - "uuid": "5612be1c-e784-437b-98a9-0b79292212e1", - "start": { - "$date": "2022-01-30T04:43:34.000Z" - }, - "end": { - "$date": "2022-01-30T05:08:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "84360595-203c-4ae6-882e-dd2345ee111b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-30T04:43:51.000Z" - }, - "end": { - "$date": "2022-01-30T05:25:16.000Z" - }, - "events": [ - { - "uuid": "66e9ed59-85f5-4c07-a07e-75cbbf780af8", - "start": { - "$date": "2022-01-30T04:43:51.000Z" - }, - "end": { - "$date": "2022-01-30T05:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c1bc61ad-cfc5-405a-848f-6e59a4f51be8", - "uuid": "d920fe03-d30d-46cd-88a7-4e93f3b8b1ce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T04:45:03.000Z" - }, - "end": { - "$date": "2022-01-30T05:16:10.000Z" - }, - "events": [ - { - "uuid": "5cfc4e29-1c43-467b-9053-4d8c88c0148f", - "start": { - "$date": "2022-01-30T04:45:03.000Z" - }, - "end": { - "$date": "2022-01-30T05:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e15fee42-466a-4182-9edb-fbbf4b3eb8b7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T05:12:18.000Z" - }, - "end": { - "$date": "2022-01-30T05:32:34.000Z" - }, - "events": [ - { - "uuid": "274ed9de-41a4-43e4-bb2f-a332bcaa47ad", - "start": { - "$date": "2022-01-30T05:12:18.000Z" - }, - "end": { - "$date": "2022-01-30T05:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c577ab27-2d0e-4a0a-94aa-8dc970d3ac46", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T05:16:31.000Z" - }, - "end": { - "$date": "2022-01-30T06:00:50.000Z" - }, - "events": [ - { - "uuid": "05153fc2-df24-4c79-bce9-72868280105b", - "start": { - "$date": "2022-01-30T05:16:31.000Z" - }, - "end": { - "$date": "2022-01-30T05:29:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c230bc69-e7b0-4ab0-9788-2860b534857a", - "start": { - "$date": "2022-01-30T05:29:31.000Z" - }, - "end": { - "$date": "2022-01-30T05:45:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9023d62-bb67-4a1b-b569-6f0f550c2802", - "start": { - "$date": "2022-01-30T05:45:31.000Z" - }, - "end": { - "$date": "2022-01-30T06:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "44191590-59b8-497e-ad78-da7e030c3cd9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-30T05:26:49.000Z" - }, - "end": { - "$date": "2022-01-30T07:43:46.000Z" - }, - "events": [ - { - "uuid": "9d5a95ed-0f31-488e-9b9f-52a5c5308e52", - "start": { - "$date": "2022-01-30T05:26:49.000Z" - }, - "end": { - "$date": "2022-01-30T07:43:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e59aac05-850d-4bb7-8596-ec477966f763", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T05:34:48.000Z" - }, - "end": { - "$date": "2022-01-30T05:57:41.000Z" - }, - "events": [ - { - "uuid": "24e69e98-cf38-4daf-8762-6076320e2136", - "start": { - "$date": "2022-01-30T05:34:48.000Z" - }, - "end": { - "$date": "2022-01-30T05:57:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ca16f88-c37f-4794-9144-4fece5f7ddaa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-30T05:41:07.000Z" - }, - "end": { - "$date": "2022-01-30T07:37:28.000Z" - }, - "events": [ - { - "uuid": "375ce0b3-b47d-48d7-b4e6-da6f43a0f311", - "start": { - "$date": "2022-01-30T05:41:07.000Z" - }, - "end": { - "$date": "2022-01-30T07:37:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "ca989b35-b3f3-4319-9927-578598f29234", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T05:52:37.000Z" - }, - "end": { - "$date": "2022-01-30T07:14:43.000Z" - }, - "events": [ - { - "uuid": "5c8a2e1f-862c-47f1-8422-257962b5d99f", - "start": { - "$date": "2022-01-30T05:52:37.000Z" - }, - "end": { - "$date": "2022-01-30T07:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "06d140d6-35b9-4f2b-84d6-b7ed3a618c4c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T05:59:39.000Z" - }, - "end": { - "$date": "2022-01-30T06:20:51.000Z" - }, - "events": [ - { - "uuid": "008527e3-ccb6-4889-ac19-38ffc0e6a0e7", - "start": { - "$date": "2022-01-30T05:59:39.000Z" - }, - "end": { - "$date": "2022-01-30T06:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63ddd641-411c-475a-9208-698946275625", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T06:02:33.000Z" - }, - "end": { - "$date": "2022-01-30T06:19:38.000Z" - }, - "events": [ - { - "uuid": "faa0de21-0a73-4d1a-becd-95c224f1d4e6", - "start": { - "$date": "2022-01-30T06:02:33.000Z" - }, - "end": { - "$date": "2022-01-30T06:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c1cd04b-0061-4bfd-a836-8481689e9500", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T06:02:25.000Z" - }, - "end": { - "$date": "2022-01-30T06:19:37.000Z" - }, - "events": [ - { - "uuid": "d2826ad5-af72-4bad-b055-16c67872ee96", - "start": { - "$date": "2022-01-30T06:02:25.000Z" - }, - "end": { - "$date": "2022-01-30T06:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "908fd39f-c76e-4b1e-a83f-b38aedde0d77", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-30T06:17:41.000Z" - }, - "end": { - "$date": "2022-01-30T06:32:05.000Z" - }, - "events": [ - { - "uuid": "47af568c-e2b8-42f7-b353-ae6541812a39", - "start": { - "$date": "2022-01-30T06:17:41.000Z" - }, - "end": { - "$date": "2022-01-30T06:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9da77763-814d-46ee-a762-0d2f7845b9ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T06:24:35.000Z" - }, - "end": { - "$date": "2022-01-30T06:43:22.000Z" - }, - "events": [ - { - "uuid": "82fd7ea1-87a0-496e-8246-9895ef7ba4e1", - "start": { - "$date": "2022-01-30T06:24:35.000Z" - }, - "end": { - "$date": "2022-01-30T06:43:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62074267-a1cb-4f1d-aed8-e0deda9c4caf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T06:24:05.000Z" - }, - "end": { - "$date": "2022-01-30T06:45:47.000Z" - }, - "events": [ - { - "uuid": "90187bd9-6436-4503-857f-ea6e28a032b3", - "start": { - "$date": "2022-01-30T06:24:05.000Z" - }, - "end": { - "$date": "2022-01-30T06:45:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0957910-e6a9-4b05-9b7c-bc927c64d879", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T06:24:36.000Z" - }, - "end": { - "$date": "2022-01-30T06:43:23.000Z" - }, - "events": [ - { - "uuid": "7a454c36-3fb4-4f57-8dbf-3f85d682ced5", - "start": { - "$date": "2022-01-30T06:24:36.000Z" - }, - "end": { - "$date": "2022-01-30T06:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "567dffe6-edb1-4d19-97d4-035c440d3cfc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-30T06:26:27.000Z" - }, - "end": { - "$date": "2022-01-30T07:25:02.000Z" - }, - "events": [ - { - "uuid": "406e871d-d3c9-4ebd-a6f8-bebf01154665", - "start": { - "$date": "2022-01-30T06:26:27.000Z" - }, - "end": { - "$date": "2022-01-30T07:25:02.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5e55527f-b38a-4a97-be41-40728c23439b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-30T06:32:20.000Z" - }, - "end": { - "$date": "2022-01-30T11:14:02.000Z" - }, - "events": [ - { - "uuid": "3934ace7-5c07-47b5-98ca-429dab6fa6f3", - "start": { - "$date": "2022-01-30T06:32:20.000Z" - }, - "end": { - "$date": "2022-01-30T11:14:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f06cb364-354b-4c20-a4ec-2554d10bf1b3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-30T06:37:22.000Z" - }, - "end": { - "$date": "2022-01-30T11:12:56.000Z" - }, - "events": [ - { - "uuid": "a0672f4e-7e67-4fe4-9c4d-e98eb4badbfd", - "start": { - "$date": "2022-01-30T06:37:22.000Z" - }, - "end": { - "$date": "2022-01-30T11:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "606ffeb9-eb4a-48bf-a9ee-d7f218cc5711", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T06:46:41.000Z" - }, - "end": { - "$date": "2022-01-30T07:12:26.000Z" - }, - "events": [ - { - "uuid": "2a6692f8-cb87-43fc-ae4a-fdff1242f648", - "start": { - "$date": "2022-01-30T06:46:41.000Z" - }, - "end": { - "$date": "2022-01-30T07:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4863c5e8-836a-4c16-99c0-c8234fe425a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T06:46:37.000Z" - }, - "end": { - "$date": "2022-01-30T07:12:23.000Z" - }, - "events": [ - { - "uuid": "f449c3d9-14a4-4235-909b-46970d9cd496", - "start": { - "$date": "2022-01-30T06:46:37.000Z" - }, - "end": { - "$date": "2022-01-30T07:12:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "895d2b2b-215e-47ed-a952-2f969faba686", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T06:48:31.000Z" - }, - "end": { - "$date": "2022-01-30T07:13:38.000Z" - }, - "events": [ - { - "uuid": "16797e97-95df-4b55-8347-bddb0df7ae55", - "start": { - "$date": "2022-01-30T06:48:31.000Z" - }, - "end": { - "$date": "2022-01-30T07:13:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8546df85-2570-446f-aa91-ade24c3b60dc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T07:16:07.000Z" - }, - "end": { - "$date": "2022-01-30T07:36:05.000Z" - }, - "events": [ - { - "uuid": "47b0c199-4dc1-4d86-a090-d46bb7f33dd3", - "start": { - "$date": "2022-01-30T07:16:07.000Z" - }, - "end": { - "$date": "2022-01-30T07:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ad6b4ca-d4c2-44fe-aef6-8799e1e8d2d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T07:28:06.000Z" - }, - "end": { - "$date": "2022-01-30T07:58:58.000Z" - }, - "events": [ - { - "uuid": "bfc7f465-2d89-42a5-ba84-b9d5e2411ad9", - "start": { - "$date": "2022-01-30T07:28:06.000Z" - }, - "end": { - "$date": "2022-01-30T07:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "eb0aed7d-d63c-4d34-8554-b0cdfcf3af3c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T07:24:22.000Z" - }, - "end": { - "$date": "2022-01-30T07:33:53.000Z" - }, - "events": [ - { - "uuid": "afc96ab6-09a4-4d90-a39e-370301124655", - "start": { - "$date": "2022-01-30T07:24:22.000Z" - }, - "end": { - "$date": "2022-01-30T07:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2278c8f9-8b9f-402a-955d-8d9d83a5bc35", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-30T07:32:48.000Z" - }, - "end": { - "$date": "2022-01-30T11:14:27.000Z" - }, - "events": [ - { - "uuid": "7af1094f-c7a5-4aff-b1fe-3cc027de828e", - "start": { - "$date": "2022-01-30T07:32:48.000Z" - }, - "end": { - "$date": "2022-01-30T11:14:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "351b57aa-68a5-463b-bf13-ee954ac37d55", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-30T07:56:16.000Z" - }, - "end": { - "$date": "2022-01-30T08:49:56.000Z" - }, - "events": [ - { - "uuid": "fc20edc1-abcc-421b-8cba-a7da4c46716e", - "start": { - "$date": "2022-01-30T07:56:16.000Z" - }, - "end": { - "$date": "2022-01-30T08:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d30ba208-8429-4dbf-8eb3-c304b64bd3ee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T08:09:13.000Z" - }, - "end": { - "$date": "2022-01-30T08:42:48.000Z" - }, - "events": [ - { - "uuid": "ed020428-8f5a-40e1-bf35-f25429b518b8", - "start": { - "$date": "2022-01-30T08:09:13.000Z" - }, - "end": { - "$date": "2022-01-30T08:42:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61db19ee-01a2-4e04-8c6b-6db280ee2574", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T08:57:56.000Z" - }, - "end": { - "$date": "2022-01-30T09:23:31.000Z" - }, - "events": [ - { - "uuid": "bd0b04f0-7561-45c0-871d-c1c45695c00b", - "start": { - "$date": "2022-01-30T08:57:56.000Z" - }, - "end": { - "$date": "2022-01-30T09:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f42de880-069f-4a12-b571-35aa83f15642", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T09:26:22.000Z" - }, - "end": { - "$date": "2022-01-30T09:48:08.000Z" - }, - "events": [ - { - "uuid": "cfdbe256-32b8-4d56-b153-37be8510438b", - "start": { - "$date": "2022-01-30T09:26:22.000Z" - }, - "end": { - "$date": "2022-01-30T09:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae8dd933-3389-400f-ad3f-5c925a0bcf81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T09:50:09.000Z" - }, - "end": { - "$date": "2022-01-30T10:17:39.000Z" - }, - "events": [ - { - "uuid": "3ede932c-bcea-4fb5-86a5-ecc8681b7fe1", - "start": { - "$date": "2022-01-30T09:50:09.000Z" - }, - "end": { - "$date": "2022-01-30T10:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dda2126f-f2ee-4a79-abbf-5389b9d636f1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T10:19:46.000Z" - }, - "end": { - "$date": "2022-01-30T10:33:03.000Z" - }, - "events": [ - { - "uuid": "fb40b7d2-0c3e-4261-8015-25fb716a2502", - "start": { - "$date": "2022-01-30T10:19:46.000Z" - }, - "end": { - "$date": "2022-01-30T10:33:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9aacb86-d38f-4945-b1f7-9a6f0c313665", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T10:35:08.000Z" - }, - "end": { - "$date": "2022-01-30T10:54:36.000Z" - }, - "events": [ - { - "uuid": "bb605c00-0aa3-4ff5-97bc-29e069da5ace", - "start": { - "$date": "2022-01-30T10:35:08.000Z" - }, - "end": { - "$date": "2022-01-30T10:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfd7c10b-d79b-4f88-a369-b4e7b573a850", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-30T10:56:24.000Z" - }, - "end": { - "$date": "2022-01-30T11:08:08.000Z" - }, - "events": [ - { - "uuid": "c230f4c4-0256-4eb9-a9ab-124d5e2c5f49", - "start": { - "$date": "2022-01-30T10:56:24.000Z" - }, - "end": { - "$date": "2022-01-30T11:08:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b0772a7c-beea-4bcd-88b8-6e9cf46d8337", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-30T12:40:21.000Z" - }, - "end": { - "$date": "2022-01-30T13:18:08.000Z" - }, - "events": [ - { - "uuid": "62429b95-ebed-4c6d-8c12-0fc3bee5a29d", - "start": { - "$date": "2022-01-30T12:40:21.000Z" - }, - "end": { - "$date": "2022-01-30T13:18:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c8c8474-fa79-4b03-b11b-10ccfa2c2047", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T15:09:43.000Z" - }, - "end": { - "$date": "2022-01-30T15:32:26.000Z" - }, - "events": [ - { - "uuid": "e4a61fba-32d4-4d30-88c2-903fb52ddacc", - "start": { - "$date": "2022-01-30T15:09:43.000Z" - }, - "end": { - "$date": "2022-01-30T15:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9428fbf-ed63-4119-8034-2d4572bb3ccd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T15:36:12.000Z" - }, - "end": { - "$date": "2022-01-30T16:14:58.000Z" - }, - "events": [ - { - "uuid": "2385c7c3-5b83-4a14-a29f-07b5ad04d459", - "start": { - "$date": "2022-01-30T15:36:12.000Z" - }, - "end": { - "$date": "2022-01-30T16:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "259f31d5-2b97-4c83-8c22-deca4dad8753", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T15:42:52.000Z" - }, - "end": { - "$date": "2022-01-30T15:46:17.000Z" - }, - "events": [ - { - "uuid": "4dd15f57-bad8-4ae9-88ec-625fc60625dc", - "start": { - "$date": "2022-01-30T15:42:52.000Z" - }, - "end": { - "$date": "2022-01-30T15:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9e0d4c8-d7be-4c5d-b807-33049ed36854", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T15:46:27.000Z" - }, - "end": { - "$date": "2022-01-30T17:19:40.000Z" - }, - "events": [ - { - "uuid": "fa32e1b6-2cd7-46c1-b055-e84cbf9a2a2f", - "start": { - "$date": "2022-01-30T15:46:27.000Z" - }, - "end": { - "$date": "2022-01-30T17:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "9cd17203-20ed-4452-bcbe-82659e16c7e5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-30T18:55:21.000Z" - }, - "end": { - "$date": "2022-01-30T18:55:26.000Z" - }, - "events": [ - { - "uuid": "059933de-9a4a-4bab-8abd-8a925e8136b8", - "start": { - "$date": "2022-01-30T18:55:21.000Z" - }, - "end": { - "$date": "2022-01-30T19:06:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37f12eb8-de3e-4ce5-8351-13215dfc8adf", - "start": { - "$date": "2022-01-30T19:06:21.000Z" - }, - "end": { - "$date": "2022-01-30T19:21:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6d8eb47-4142-466e-9192-516b40fc3d4d", - "start": { - "$date": "2022-01-30T19:21:21.000Z" - }, - "end": { - "$date": "2022-01-30T19:31:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc35da9a-effd-4de9-8c40-57e228c82954", - "start": { - "$date": "2022-01-30T19:31:21.000Z" - }, - "end": { - "$date": "2022-01-30T19:35:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e034e2ee-f292-4dec-b7ab-71c8695d572a", - "start": { - "$date": "2022-01-30T19:35:21.000Z" - }, - "end": { - "$date": "2022-01-30T19:37:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c968c8a4-02b2-41c1-9267-793c751d29b8", - "start": { - "$date": "2022-01-30T19:37:21.000Z" - }, - "end": { - "$date": "2022-01-30T20:04:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c65217ba-e3cd-482d-a5e4-480780152a60", - "start": { - "$date": "2022-01-30T20:04:21.000Z" - }, - "end": { - "$date": "2022-01-30T18:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b92671f3-507f-479e-832f-f4f6b58567d3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T16:15:11.000Z" - }, - "end": { - "$date": "2022-01-30T16:16:43.000Z" - }, - "events": [ - { - "uuid": "a74c65c2-cbd7-460f-9eaf-afec197a258b", - "start": { - "$date": "2022-01-30T16:15:11.000Z" - }, - "end": { - "$date": "2022-01-30T16:16:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2cbf84f0-19d1-41e1-9261-d89f65b3ec8b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-30T16:24:05.000Z" - }, - "end": { - "$date": "2022-01-30T16:36:40.000Z" - }, - "events": [ - { - "uuid": "6e4bba63-2336-4018-b17f-9776aa502535", - "start": { - "$date": "2022-01-30T16:24:05.000Z" - }, - "end": { - "$date": "2022-01-30T16:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d058c5f-0068-4961-8bc5-63bf5fcd654e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-30T16:39:05.000Z" - }, - "end": { - "$date": "2022-01-30T16:53:00.000Z" - }, - "events": [ - { - "uuid": "cc32bb1b-e8b1-41ac-a2b3-78f384522ffb", - "start": { - "$date": "2022-01-30T16:39:05.000Z" - }, - "end": { - "$date": "2022-01-30T16:53:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "f1bcd068-06d6-40e8-98c9-0578dd328efc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T17:22:30.000Z" - }, - "end": { - "$date": "2022-01-30T18:09:51.000Z" - }, - "events": [ - { - "uuid": "23d4ee21-40cc-45a4-9758-9520f3703ecf", - "start": { - "$date": "2022-01-30T17:22:30.000Z" - }, - "end": { - "$date": "2022-01-30T18:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6747ee03-e3e1-46cd-a1a9-ef62d8643f60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-30T17:53:45.000Z" - }, - "end": { - "$date": "2022-01-30T18:16:01.000Z" - }, - "events": [ - { - "uuid": "da2b0b40-f19c-463b-b1c4-9bbda712626e", - "start": { - "$date": "2022-01-30T17:53:45.000Z" - }, - "end": { - "$date": "2022-01-30T18:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "5ff97903-07fc-454c-b889-cb9fea1eea1c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T18:33:39.000Z" - }, - "end": { - "$date": "2022-01-30T19:25:20.000Z" - }, - "events": [ - { - "uuid": "3883fceb-717c-4e55-aeb7-a3233056e1d3", - "start": { - "$date": "2022-01-30T18:33:39.000Z" - }, - "end": { - "$date": "2022-01-30T19:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb015c4f-0846-4295-9d1f-7a394198a7d9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T18:45:31.000Z" - }, - "end": { - "$date": "2022-01-30T19:04:22.000Z" - }, - "events": [ - { - "uuid": "36079323-b340-48e3-abd6-0d6781e9daab", - "start": { - "$date": "2022-01-30T18:45:31.000Z" - }, - "end": { - "$date": "2022-01-30T19:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae0c4a51-55d4-47e0-bb75-2412ede71604", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T19:04:26.000Z" - }, - "end": { - "$date": "2022-01-30T19:05:28.000Z" - }, - "events": [ - { - "uuid": "ac4a6c86-e518-4949-938d-efd93fd0f731", - "start": { - "$date": "2022-01-30T19:04:26.000Z" - }, - "end": { - "$date": "2022-01-30T19:05:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5ab4bd27-5c7e-4dea-ac64-8f23bfe3f233", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T19:25:36.000Z" - }, - "end": { - "$date": "2022-01-30T20:17:52.000Z" - }, - "events": [ - { - "uuid": "7447a79c-79bc-49df-8079-97fdd424189d", - "start": { - "$date": "2022-01-30T19:25:36.000Z" - }, - "end": { - "$date": "2022-01-30T20:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c1bc61ad-cfc5-405a-848f-6e59a4f51be8", - "uuid": "3300d1da-10f8-4143-85e5-9fc119397ea7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-30T19:43:05.000Z" - }, - "end": { - "$date": "2022-01-30T20:44:50.000Z" - }, - "events": [ - { - "uuid": "d1d6d029-31b0-437d-be5a-58b32eec78d9", - "start": { - "$date": "2022-01-30T19:43:05.000Z" - }, - "end": { - "$date": "2022-01-30T20:44:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19927eff-b63d-48cc-b2ac-28f424134280", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T19:47:58.000Z" - }, - "end": { - "$date": "2022-01-30T20:29:04.000Z" - }, - "events": [ - { - "uuid": "db731a7b-04fc-4a74-be6d-3d3c88d68ee4", - "start": { - "$date": "2022-01-30T19:47:58.000Z" - }, - "end": { - "$date": "2022-01-30T20:29:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "79742a58-1c87-4a4b-a47b-4d4f0b94b13e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-30T20:18:22.000Z" - }, - "end": { - "$date": "2022-01-30T20:20:58.000Z" - }, - "events": [ - { - "uuid": "e34e8f7c-146e-4f5a-8cad-a6fc22079f4d", - "start": { - "$date": "2022-01-30T20:18:22.000Z" - }, - "end": { - "$date": "2022-01-30T20:20:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ebfc9360-b046-4a09-9de9-a22b2b4f16b7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T20:34:59.000Z" - }, - "end": { - "$date": "2022-01-30T21:54:37.000Z" - }, - "events": [ - { - "uuid": "ed97394f-7fbe-41e2-bbd8-90364f5ccc74", - "start": { - "$date": "2022-01-30T20:34:59.000Z" - }, - "end": { - "$date": "2022-01-30T20:50:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc272764-c414-4ec8-839e-26d5832f437a", - "start": { - "$date": "2022-01-30T20:50:59.000Z" - }, - "end": { - "$date": "2022-01-30T21:22:59.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a5ae2cc-e4da-4077-ae91-a526827d6933", - "start": { - "$date": "2022-01-30T21:22:59.000Z" - }, - "end": { - "$date": "2022-01-30T21:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20e699a8-13e1-4b8b-8fa1-e7654282ad8f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-30T20:40:05.000Z" - }, - "end": { - "$date": "2022-01-30T20:58:31.000Z" - }, - "events": [ - { - "uuid": "5b19f92d-866b-4f63-a7db-f6b9a4074c53", - "start": { - "$date": "2022-01-30T20:40:05.000Z" - }, - "end": { - "$date": "2022-01-30T20:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "ad1758b8-7111-44f6-b473-863272a55b4d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-30T20:42:25.000Z" - }, - "end": { - "$date": "2022-01-30T21:31:00.000Z" - }, - "events": [ - { - "uuid": "71b749a9-8051-4718-9e08-26efe5640bf2", - "start": { - "$date": "2022-01-30T20:42:25.000Z" - }, - "end": { - "$date": "2022-01-30T21:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "23057b14-6a01-483f-8e9a-b414c2ead3f5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-30T21:14:33.000Z" - }, - "end": { - "$date": "2022-01-30T21:39:53.000Z" - }, - "events": [ - { - "uuid": "1e62e4c2-6daa-448a-892e-2c5771cd995e", - "start": { - "$date": "2022-01-30T21:14:33.000Z" - }, - "end": { - "$date": "2022-01-30T21:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c011576c-0dee-4dd3-b764-81898a5515be", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T21:24:44.000Z" - }, - "end": { - "$date": "2022-01-30T21:46:29.000Z" - }, - "events": [ - { - "uuid": "81897da0-229f-4efb-b72f-d8283ca0a3f0", - "start": { - "$date": "2022-01-30T21:24:44.000Z" - }, - "end": { - "$date": "2022-01-30T21:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "07c16124-48c5-4ad2-be2f-fdf6e2d5a201", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-30T22:19:13.000Z" - }, - "end": { - "$date": "2022-01-30T22:21:55.000Z" - }, - "events": [ - { - "uuid": "fad00194-bd9c-477a-a39b-29e27354d469", - "start": { - "$date": "2022-01-30T22:19:13.000Z" - }, - "end": { - "$date": "2022-01-30T22:21:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0c5e394-d878-4dca-a7f8-82abf6c7d621", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-30T21:49:45.000Z" - }, - "end": { - "$date": "2022-01-30T22:12:43.000Z" - }, - "events": [ - { - "uuid": "00bbc4b5-1ea0-4f4f-94b4-be0adb17ecab", - "start": { - "$date": "2022-01-30T21:49:45.000Z" - }, - "end": { - "$date": "2022-01-30T22:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4a026c7f-e7ef-4084-989c-0babde5f7e0f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-30T22:13:28.000Z" - }, - "end": { - "$date": "2022-01-31T00:57:51.000Z" - }, - "events": [ - { - "uuid": "bce34a32-12a0-45d0-bd82-2778bb9a13c0", - "start": { - "$date": "2022-01-30T22:13:28.000Z" - }, - "end": { - "$date": "2022-01-31T00:57:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cbf00bca-f680-430b-8c1d-a40676ade4d3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-30T23:30:27.000Z" - }, - "end": { - "$date": "2022-01-31T00:57:57.000Z" - }, - "events": [ - { - "uuid": "cafde953-fe19-474f-af2d-5c8771a87378", - "start": { - "$date": "2022-01-30T23:30:27.000Z" - }, - "end": { - "$date": "2022-01-31T00:57:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2bcbb9a-88c9-4831-b9b5-14983c6b90c3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T22:35:02.000Z" - }, - "end": { - "$date": "2022-01-30T23:11:06.000Z" - }, - "events": [ - { - "uuid": "42909e25-f0cd-4ad6-b242-0d779f487311", - "start": { - "$date": "2022-01-30T22:35:02.000Z" - }, - "end": { - "$date": "2022-01-30T23:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f4c77db-d66c-4a34-b2e7-00988a2ac22b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T23:13:39.000Z" - }, - "end": { - "$date": "2022-01-30T23:38:53.000Z" - }, - "events": [ - { - "uuid": "eb466012-e7e3-4bcb-8beb-6019349488ce", - "start": { - "$date": "2022-01-30T23:13:39.000Z" - }, - "end": { - "$date": "2022-01-30T23:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "617d8b9e-c449-4eb1-8b39-56d825ad565b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-30T23:41:25.000Z" - }, - "end": { - "$date": "2022-01-31T00:07:21.000Z" - }, - "events": [ - { - "uuid": "b2e0cbc1-c387-4b72-b98b-b0137d1857e5", - "start": { - "$date": "2022-01-30T23:41:25.000Z" - }, - "end": { - "$date": "2022-01-31T00:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a28d6289-f009-4f96-9ea9-ec40e2549fb9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T00:09:32.000Z" - }, - "end": { - "$date": "2022-01-31T00:25:48.000Z" - }, - "events": [ - { - "uuid": "a1f13ef5-b591-45c9-80bc-5cb3829660c6", - "start": { - "$date": "2022-01-31T00:09:32.000Z" - }, - "end": { - "$date": "2022-01-31T00:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5dbcec81-5387-413e-90d9-e4f3e41c88af", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T00:28:03.000Z" - }, - "end": { - "$date": "2022-01-31T00:45:08.000Z" - }, - "events": [ - { - "uuid": "f8ce817c-da25-44aa-9433-a9d520b6eb3f", - "start": { - "$date": "2022-01-31T00:28:03.000Z" - }, - "end": { - "$date": "2022-01-31T00:45:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c579722a-00a7-44ba-9713-2550abc470f1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T01:10:41.000Z" - }, - "end": { - "$date": "2022-01-31T01:31:53.000Z" - }, - "events": [ - { - "uuid": "9ac4bef5-209a-4edf-9274-77266bf5028a", - "start": { - "$date": "2022-01-31T01:10:41.000Z" - }, - "end": { - "$date": "2022-01-31T01:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f39157ca-f736-430b-90d9-3c5e2c1da497", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-31T01:14:04.000Z" - }, - "end": { - "$date": "2022-01-31T03:14:32.000Z" - }, - "events": [ - { - "uuid": "1f5cbd6e-9d99-4e98-9c75-4c85f8f4d241", - "start": { - "$date": "2022-01-31T01:14:04.000Z" - }, - "end": { - "$date": "2022-01-31T03:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "273d03e0-b5db-483a-af5b-eaedbec79b65", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T01:43:04.000Z" - }, - "end": { - "$date": "2022-01-31T02:06:23.000Z" - }, - "events": [ - { - "uuid": "7a40c164-07e8-4b08-bfe4-593f38f9f736", - "start": { - "$date": "2022-01-31T01:43:04.000Z" - }, - "end": { - "$date": "2022-01-31T02:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ff4c417-5630-43ee-bbda-b2a370964eb4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T02:08:45.000Z" - }, - "end": { - "$date": "2022-01-31T02:29:11.000Z" - }, - "events": [ - { - "uuid": "99719b0c-a9ee-40ba-9829-da7b798acda2", - "start": { - "$date": "2022-01-31T02:08:45.000Z" - }, - "end": { - "$date": "2022-01-31T02:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bff5a99d-a6dd-493f-9eed-7e64206c5ec0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T02:31:26.000Z" - }, - "end": { - "$date": "2022-01-31T02:55:01.000Z" - }, - "events": [ - { - "uuid": "d791d0fc-7a48-46c2-92f7-8f3b8ea1e0f5", - "start": { - "$date": "2022-01-31T02:31:26.000Z" - }, - "end": { - "$date": "2022-01-31T02:55:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2857975b-9828-4b6b-9412-71f1d4250dfa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-31T02:34:09.000Z" - }, - "end": { - "$date": "2022-01-31T02:48:55.000Z" - }, - "events": [ - { - "uuid": "53885843-a932-4569-bbac-c39d254fed30", - "start": { - "$date": "2022-01-31T02:34:09.000Z" - }, - "end": { - "$date": "2022-01-31T02:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8a4faf6-f1ae-4e48-bac2-1fe771246e80", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-31T02:49:14.000Z" - }, - "end": { - "$date": "2022-01-31T03:28:26.000Z" - }, - "events": [ - { - "uuid": "0ba3e8e1-93b4-4eb7-b95e-4e7e3389d171", - "start": { - "$date": "2022-01-31T02:49:14.000Z" - }, - "end": { - "$date": "2022-01-31T03:28:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "46f3e637-133b-4790-93a0-617e8a135c02", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-01-31T02:54:17.000Z" - }, - "end": { - "$date": "2022-01-31T08:06:19.000Z" - }, - "events": [ - { - "uuid": "2fdcb722-0273-49e0-88ff-39cc5d9919cd", - "start": { - "$date": "2022-01-31T02:54:17.000Z" - }, - "end": { - "$date": "2022-01-31T08:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e4b0dc2d-6907-4482-9db9-814bb92c3906", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-01-31T02:54:45.000Z" - }, - "end": { - "$date": "2022-01-31T06:52:37.000Z" - }, - "events": [ - { - "uuid": "48858ce5-b9e4-40b9-9631-a606f93a401e", - "start": { - "$date": "2022-01-31T02:54:45.000Z" - }, - "end": { - "$date": "2022-01-31T06:52:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd99d8ba-bbde-45f5-97ec-c1ce7311ff91", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T02:57:18.000Z" - }, - "end": { - "$date": "2022-01-31T03:15:06.000Z" - }, - "events": [ - { - "uuid": "b671e6eb-dc21-4d44-b14a-efaf8d3fa487", - "start": { - "$date": "2022-01-31T02:57:18.000Z" - }, - "end": { - "$date": "2022-01-31T03:15:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1ba10562-ce55-4e6b-a694-3f4480730ba7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-31T03:15:02.000Z" - }, - "end": { - "$date": "2022-01-31T06:28:22.000Z" - }, - "events": [ - { - "uuid": "1d23c9eb-2065-4142-b376-535400955587", - "start": { - "$date": "2022-01-31T03:15:02.000Z" - }, - "end": { - "$date": "2022-01-31T06:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eb02273c-6253-446c-9eb9-a9022aaf9baf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-31T03:29:21.000Z" - }, - "end": { - "$date": "2022-01-31T03:57:02.000Z" - }, - "events": [ - { - "uuid": "e2714512-2def-40db-8754-84bfb0c81585", - "start": { - "$date": "2022-01-31T03:29:21.000Z" - }, - "end": { - "$date": "2022-01-31T03:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d02ad50-99bb-4996-b350-a91753720366", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-31T03:44:03.000Z" - }, - "end": { - "$date": "2022-01-31T04:08:09.000Z" - }, - "events": [ - { - "uuid": "bf53e2d8-0df1-4ec6-a302-655ff8e24644", - "start": { - "$date": "2022-01-31T03:44:03.000Z" - }, - "end": { - "$date": "2022-01-31T04:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "2caaed5f-0bf0-4d17-a721-59c265a45d0b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T03:44:32.000Z" - }, - "end": { - "$date": "2022-01-31T03:47:27.000Z" - }, - "events": [ - { - "uuid": "ea5e4bd9-1938-42df-acf3-a4898527740b", - "start": { - "$date": "2022-01-31T03:44:32.000Z" - }, - "end": { - "$date": "2022-01-31T03:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7bb01c0-38b6-4879-be4b-499f7ce43c70", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-31T04:12:50.000Z" - }, - "end": { - "$date": "2022-01-31T04:42:02.000Z" - }, - "events": [ - { - "uuid": "392ed063-f38e-4a3d-b505-a2c5774a5b67", - "start": { - "$date": "2022-01-31T04:12:50.000Z" - }, - "end": { - "$date": "2022-01-31T04:42:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e66a39e-37eb-4657-95b4-a353866f92ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-31T04:41:53.000Z" - }, - "end": { - "$date": "2022-01-31T04:41:59.000Z" - }, - "events": [ - { - "uuid": "c3ca170b-389d-4238-9d07-224c54ceaf50", - "start": { - "$date": "2022-01-31T04:41:53.000Z" - }, - "end": { - "$date": "2022-01-31T04:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6e08ccab-33c1-475a-a379-b00e94b4e4c0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-31T04:26:43.000Z" - }, - "end": { - "$date": "2022-01-31T08:05:46.000Z" - }, - "events": [ - { - "uuid": "3a26586b-151e-4ab9-8d97-7decf209e539", - "start": { - "$date": "2022-01-31T04:26:43.000Z" - }, - "end": { - "$date": "2022-01-31T08:05:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7153e398-0538-4b3c-bfdd-b229a0964448", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T04:35:58.000Z" - }, - "end": { - "$date": "2022-01-31T04:50:59.000Z" - }, - "events": [ - { - "uuid": "18f8af0d-b2ca-4c6e-aa47-19638ce08e0e", - "start": { - "$date": "2022-01-31T04:35:58.000Z" - }, - "end": { - "$date": "2022-01-31T04:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "f64b51ec-b7ee-4b2f-9156-6cc2cc01952e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-31T04:41:38.000Z" - }, - "end": { - "$date": "2022-01-31T04:50:49.000Z" - }, - "events": [ - { - "uuid": "4395dfa6-0e18-41c3-b043-a03f5e727d15", - "start": { - "$date": "2022-01-31T04:41:38.000Z" - }, - "end": { - "$date": "2022-01-31T04:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "885d57a9-28db-4fe6-be64-7de80f486a91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-01-31T04:42:53.000Z" - }, - "end": { - "$date": "2022-01-31T04:45:39.000Z" - }, - "events": [ - { - "uuid": "961fe886-03de-40a8-9325-61f4cd801875", - "start": { - "$date": "2022-01-31T04:42:53.000Z" - }, - "end": { - "$date": "2022-01-31T04:45:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b2217ae5-e678-4789-9f13-04d11115177c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T04:54:38.000Z" - }, - "end": { - "$date": "2022-01-31T05:08:39.000Z" - }, - "events": [ - { - "uuid": "3ace3372-4aef-4bc5-a989-d07ff675058c", - "start": { - "$date": "2022-01-31T04:54:38.000Z" - }, - "end": { - "$date": "2022-01-31T05:08:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cf7a957e-5eb2-4ced-a03d-5eafd5eb9f7f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-01-31T04:10:10.000Z" - }, - "end": { - "$date": "2022-01-31T06:03:22.000Z" - }, - "events": [ - { - "uuid": "78bf2186-f3c0-4470-ba5d-2b18c1f417ed", - "start": { - "$date": "2022-01-31T04:10:10.000Z" - }, - "end": { - "$date": "2022-01-31T06:03:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcb39006-f6e5-43ea-87cb-56871abc20c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T05:11:14.000Z" - }, - "end": { - "$date": "2022-01-31T05:31:42.000Z" - }, - "events": [ - { - "uuid": "598fbb3a-0320-4ecf-a654-537d7a55adce", - "start": { - "$date": "2022-01-31T05:11:14.000Z" - }, - "end": { - "$date": "2022-01-31T05:31:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "031e4c08-c35f-486b-b74b-822b8af1cb82", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T05:34:26.000Z" - }, - "end": { - "$date": "2022-01-31T06:01:49.000Z" - }, - "events": [ - { - "uuid": "2a22fb89-4b49-4b51-847f-71db3a96b7fc", - "start": { - "$date": "2022-01-31T05:34:26.000Z" - }, - "end": { - "$date": "2022-01-31T06:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04ea4313-3d3a-4566-b534-508c9d30ef65", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T06:03:47.000Z" - }, - "end": { - "$date": "2022-01-31T06:21:41.000Z" - }, - "events": [ - { - "uuid": "b31eee43-9cb4-458a-92c0-2109af03f2f8", - "start": { - "$date": "2022-01-31T06:03:47.000Z" - }, - "end": { - "$date": "2022-01-31T06:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23c98fd3-91a4-4945-82dc-af42e129ff25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-31T06:12:15.000Z" - }, - "end": { - "$date": "2022-01-31T06:25:41.000Z" - }, - "events": [ - { - "uuid": "50ee31f1-9050-4303-b396-d31d8cf95d9e", - "start": { - "$date": "2022-01-31T06:12:15.000Z" - }, - "end": { - "$date": "2022-01-31T06:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49d5419c-160c-43fa-8fde-9c10bca5e97f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-31T06:12:14.000Z" - }, - "end": { - "$date": "2022-01-31T06:25:35.000Z" - }, - "events": [ - { - "uuid": "d9701059-8456-457e-a23d-cbb70c1e45bb", - "start": { - "$date": "2022-01-31T06:12:14.000Z" - }, - "end": { - "$date": "2022-01-31T06:25:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9061018a-205b-4f1b-8395-80040a9d4645", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T06:23:48.000Z" - }, - "end": { - "$date": "2022-01-31T06:36:46.000Z" - }, - "events": [ - { - "uuid": "9b947b49-5376-4203-9ce4-71595641ba87", - "start": { - "$date": "2022-01-31T06:23:48.000Z" - }, - "end": { - "$date": "2022-01-31T06:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb19c78c-4e54-477d-9c52-84efe1eb08b6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-31T06:30:12.000Z" - }, - "end": { - "$date": "2022-01-31T06:51:00.000Z" - }, - "events": [ - { - "uuid": "726c19a3-4924-40cd-bdeb-9bde00f13098", - "start": { - "$date": "2022-01-31T06:30:12.000Z" - }, - "end": { - "$date": "2022-01-31T06:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e39a66e-70a2-46be-ac8f-8d7420760ab2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-31T06:30:02.000Z" - }, - "end": { - "$date": "2022-01-31T06:50:59.000Z" - }, - "events": [ - { - "uuid": "c42aefda-30c3-46a1-b7d2-70b54c13e7b7", - "start": { - "$date": "2022-01-31T06:30:02.000Z" - }, - "end": { - "$date": "2022-01-31T06:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a58a2f2-d19b-4010-be44-f56d4ebc77ae", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-31T06:30:04.000Z" - }, - "end": { - "$date": "2022-01-31T06:50:56.000Z" - }, - "events": [ - { - "uuid": "f6466006-83fa-4748-89d6-cdea3e455071", - "start": { - "$date": "2022-01-31T06:30:04.000Z" - }, - "end": { - "$date": "2022-01-31T06:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "045b263d-df44-46b2-8121-dfa655dbff36", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T06:38:44.000Z" - }, - "end": { - "$date": "2022-01-31T07:11:34.000Z" - }, - "events": [ - { - "uuid": "c499f424-8358-4270-85c3-4b731855b099", - "start": { - "$date": "2022-01-31T06:38:44.000Z" - }, - "end": { - "$date": "2022-01-31T07:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7db4e849-a13f-4a40-9abb-2e5090467228", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-31T06:57:35.000Z" - }, - "end": { - "$date": "2022-01-31T07:16:46.000Z" - }, - "events": [ - { - "uuid": "3396bb0a-9ae5-49e3-b702-eda4f367c01c", - "start": { - "$date": "2022-01-31T06:57:35.000Z" - }, - "end": { - "$date": "2022-01-31T07:16:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e37395c-3e19-4456-a7d6-0348e8ae4770", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-31T06:57:43.000Z" - }, - "end": { - "$date": "2022-01-31T07:16:50.000Z" - }, - "events": [ - { - "uuid": "63509103-5710-49a0-b3b1-03982a238ad9", - "start": { - "$date": "2022-01-31T06:57:43.000Z" - }, - "end": { - "$date": "2022-01-31T07:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ecee20a5-10e9-4997-bf30-3926885e4647", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T07:12:24.000Z" - }, - "end": { - "$date": "2022-01-31T07:38:54.000Z" - }, - "events": [ - { - "uuid": "6e4ebae7-63c3-4f85-93ff-a541060fcbd6", - "start": { - "$date": "2022-01-31T07:12:24.000Z" - }, - "end": { - "$date": "2022-01-31T07:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "682d14bc-604d-4541-a7ce-c19ce314f044", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-01-31T07:21:36.000Z" - }, - "end": { - "$date": "2022-01-31T07:44:37.000Z" - }, - "events": [ - { - "uuid": "7106d9f6-8b51-48ea-bbb4-f34667fdafb5", - "start": { - "$date": "2022-01-31T07:21:36.000Z" - }, - "end": { - "$date": "2022-01-31T07:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c933a417-03fe-406d-9065-fc7d6ac1ac67", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-31T07:21:43.000Z" - }, - "end": { - "$date": "2022-01-31T07:44:34.000Z" - }, - "events": [ - { - "uuid": "7016d369-8df6-4496-a75a-143ef4b4e780", - "start": { - "$date": "2022-01-31T07:21:43.000Z" - }, - "end": { - "$date": "2022-01-31T07:44:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4734559e-abca-4553-98ca-865ce9f1cb7b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T07:39:49.000Z" - }, - "end": { - "$date": "2022-01-31T08:16:39.000Z" - }, - "events": [ - { - "uuid": "1da61b50-2fbb-4b1c-b11f-6df65223b115", - "start": { - "$date": "2022-01-31T07:39:49.000Z" - }, - "end": { - "$date": "2022-01-31T08:16:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a487a14-ff1d-492d-854d-900b5f40aba9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-31T07:45:23.000Z" - }, - "end": { - "$date": "2022-01-31T07:48:23.000Z" - }, - "events": [ - { - "uuid": "6ef26c0d-1a5a-4a8b-a4db-33403f38301d", - "start": { - "$date": "2022-01-31T07:45:23.000Z" - }, - "end": { - "$date": "2022-01-31T07:48:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "9d2fe90e-7c55-4a70-a46d-f075ce123455", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-01-31T07:48:29.000Z" - }, - "end": { - "$date": "2022-01-31T07:50:24.000Z" - }, - "events": [ - { - "uuid": "3f7028a7-505b-44ae-b020-8569456146e6", - "start": { - "$date": "2022-01-31T07:48:29.000Z" - }, - "end": { - "$date": "2022-01-31T07:50:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a79ac8ff-155b-42cc-8798-9f1ac653a068", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T08:17:50.000Z" - }, - "end": { - "$date": "2022-01-31T08:54:20.000Z" - }, - "events": [ - { - "uuid": "98ca5883-f844-43d7-97dc-158979dada11", - "start": { - "$date": "2022-01-31T08:17:50.000Z" - }, - "end": { - "$date": "2022-01-31T08:54:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f38ebc01-6c31-4dfb-94ee-b848804a49c0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T08:56:13.000Z" - }, - "end": { - "$date": "2022-01-31T09:31:49.000Z" - }, - "events": [ - { - "uuid": "845f3701-0a65-4179-8624-c960427b8fb9", - "start": { - "$date": "2022-01-31T08:56:13.000Z" - }, - "end": { - "$date": "2022-01-31T09:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "65411cb6-889d-419a-9811-7a8b605373b8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-31T09:00:46.000Z" - }, - "end": { - "$date": "2022-01-31T10:37:41.000Z" - }, - "events": [ - { - "uuid": "1bf1367a-cbcf-4a73-a43f-8bfde61954a7", - "start": { - "$date": "2022-01-31T09:00:46.000Z" - }, - "end": { - "$date": "2022-01-31T10:37:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "873a2153-5631-4ec3-b5d4-aed9c5039304", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-01-31T09:33:04.000Z" - }, - "end": { - "$date": "2022-01-31T10:06:27.000Z" - }, - "events": [ - { - "uuid": "1a70f9e1-00f2-46f4-a357-8151db86819d", - "start": { - "$date": "2022-01-31T09:33:04.000Z" - }, - "end": { - "$date": "2022-01-31T10:06:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "54cc0c4d-1aee-4dba-ba02-96f6b26162af", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-31T12:11:46.000Z" - }, - "end": { - "$date": "2022-01-31T15:30:59.000Z" - }, - "events": [ - { - "uuid": "b9dd884b-8c68-4970-818d-d071b4de81d2", - "start": { - "$date": "2022-01-31T12:11:46.000Z" - }, - "end": { - "$date": "2022-01-31T15:30:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "454592b8-6083-46e7-9815-aa966314c5dc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-31T17:00:12.000Z" - }, - "end": { - "$date": "2022-01-31T19:44:17.000Z" - }, - "events": [ - { - "uuid": "4b461c29-f247-4dbd-9192-45081dd59dac", - "start": { - "$date": "2022-01-31T17:00:12.000Z" - }, - "end": { - "$date": "2022-01-31T18:49:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd1283a8-167b-48c4-8e01-b0c9fc2bf839", - "start": { - "$date": "2022-01-31T18:49:12.000Z" - }, - "end": { - "$date": "2022-01-31T18:50:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e530b531-5b29-4b26-980e-5c553f53879d", - "start": { - "$date": "2022-01-31T18:50:12.000Z" - }, - "end": { - "$date": "2022-01-31T19:00:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e0e9091-271f-4c90-801f-9f1a19218cab", - "start": { - "$date": "2022-01-31T19:00:12.000Z" - }, - "end": { - "$date": "2022-01-31T19:10:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8ad0b9b1-9fc5-4f41-8fce-be0cafb41ea4", - "start": { - "$date": "2022-01-31T19:10:12.000Z" - }, - "end": { - "$date": "2022-01-31T19:44:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "22a1087b-5f87-408e-ba4b-5928f30a4639", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-01-31T19:09:54.000Z" - }, - "end": { - "$date": "2022-01-31T20:25:20.000Z" - }, - "events": [ - { - "uuid": "14b62b98-f93a-41a1-9a22-5895a10a7e1e", - "start": { - "$date": "2022-01-31T19:09:54.000Z" - }, - "end": { - "$date": "2022-01-31T20:25:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "adfc56e5-5c4f-4991-9240-ffc1c734a075", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-31T22:13:07.000Z" - }, - "end": { - "$date": "2022-01-31T22:19:53.000Z" - }, - "events": [ - { - "uuid": "b8eca806-08e4-4cb2-b487-a4ecf94e89bc", - "start": { - "$date": "2022-01-31T22:13:07.000Z" - }, - "end": { - "$date": "2022-01-31T22:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "13a0af6e-dd39-4350-ae09-46e0b45c9726", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-01-31T22:15:12.000Z" - }, - "end": { - "$date": "2022-01-31T22:43:53.000Z" - }, - "events": [ - { - "uuid": "5cff4c93-b1da-4248-9f40-993669a8655b", - "start": { - "$date": "2022-01-31T22:15:12.000Z" - }, - "end": { - "$date": "2022-01-31T22:43:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "6041186e-ee42-4476-8ef4-f7bf3255bd6c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-31T22:30:55.000Z" - }, - "end": { - "$date": "2022-01-31T22:50:35.000Z" - }, - "events": [ - { - "uuid": "3581f664-cc8d-416f-ba1e-c3a2b84431eb", - "start": { - "$date": "2022-01-31T22:30:55.000Z" - }, - "end": { - "$date": "2022-01-31T22:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "d4e2d29d-8761-4fd3-aa53-1b1a43b6b961", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-31T22:32:54.000Z" - }, - "end": { - "$date": "2022-01-31T22:58:45.000Z" - }, - "events": [ - { - "uuid": "1411d19e-b883-44dc-bd89-a914cf127f4a", - "start": { - "$date": "2022-01-31T22:32:54.000Z" - }, - "end": { - "$date": "2022-01-31T22:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81117964-2b53-4da6-ae31-fb9b1a5e3211", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-01-31T22:58:46.000Z" - }, - "end": { - "$date": "2022-02-01T00:56:49.000Z" - }, - "events": [ - { - "uuid": "c4c1723d-b7da-4def-9f41-2aff7d0d54ed", - "start": { - "$date": "2022-01-31T22:58:46.000Z" - }, - "end": { - "$date": "2022-02-01T00:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a9da1a5e-377d-41ef-9fd5-a44a855cbfd6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-01-31T22:59:00.000Z" - }, - "end": { - "$date": "2022-02-01T00:57:04.000Z" - }, - "events": [ - { - "uuid": "b98acaca-af57-485d-bce0-2094409c9aad", - "start": { - "$date": "2022-01-31T22:59:00.000Z" - }, - "end": { - "$date": "2022-02-01T00:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2005dc12-0024-4200-b7b1-2614e226755e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-31T23:10:59.000Z" - }, - "end": { - "$date": "2022-01-31T23:29:11.000Z" - }, - "events": [ - { - "uuid": "86f2e7ca-44f1-469b-854e-a09707e4862c", - "start": { - "$date": "2022-01-31T23:10:59.000Z" - }, - "end": { - "$date": "2022-01-31T23:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21704578-c38a-4deb-9fad-b1dce9c6fd79", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-01-31T23:29:20.000Z" - }, - "end": { - "$date": "2022-01-31T23:32:56.000Z" - }, - "events": [ - { - "uuid": "36665a2d-ce44-4ecc-af66-c9ebf56514f3", - "start": { - "$date": "2022-01-31T23:29:20.000Z" - }, - "end": { - "$date": "2022-01-31T23:32:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01b0511d-f098-4f68-9c6f-6c91274f3bf8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-01-31T23:51:10.000Z" - }, - "end": { - "$date": "2022-02-01T00:23:00.000Z" - }, - "events": [ - { - "uuid": "4c3a32ff-8144-481c-9b99-de56ae3c8e1c", - "start": { - "$date": "2022-01-31T23:51:10.000Z" - }, - "end": { - "$date": "2022-02-01T00:23:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85e8efaa-21eb-4cc3-b401-5aeb233064bf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T00:31:21.000Z" - }, - "end": { - "$date": "2022-02-01T00:46:11.000Z" - }, - "events": [ - { - "uuid": "aa884c6b-b052-4b4e-b661-36e9949edea1", - "start": { - "$date": "2022-02-01T00:31:21.000Z" - }, - "end": { - "$date": "2022-02-01T00:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88a47ab7-3fae-4742-9e5e-4a14e35da747", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T00:49:36.000Z" - }, - "end": { - "$date": "2022-02-01T01:03:47.000Z" - }, - "events": [ - { - "uuid": "506c040a-6faa-4f5e-8d19-eb40b15beaf4", - "start": { - "$date": "2022-02-01T00:49:36.000Z" - }, - "end": { - "$date": "2022-02-01T01:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "acab4005-bd46-430c-b884-4402f49d872b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-01T00:57:24.000Z" - }, - "end": { - "$date": "2022-02-01T01:00:24.000Z" - }, - "events": [ - { - "uuid": "ed185789-5d2a-4f34-bfb9-8e24adab4984", - "start": { - "$date": "2022-02-01T00:57:24.000Z" - }, - "end": { - "$date": "2022-02-01T01:00:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "c3fc24ac-375c-4387-9fc6-b7a9c47bdc62", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-01T01:00:45.000Z" - }, - "end": { - "$date": "2022-02-01T02:00:03.000Z" - }, - "events": [ - { - "uuid": "3de54250-e666-4de0-95b8-33f750b361ea", - "start": { - "$date": "2022-02-01T01:00:45.000Z" - }, - "end": { - "$date": "2022-02-01T02:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "6d014e84-201b-44b3-a384-0546b5fbb22d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-01T01:01:29.000Z" - }, - "end": { - "$date": "2022-02-01T02:44:26.000Z" - }, - "events": [ - { - "uuid": "b63f76fd-925a-41f2-a64f-ca4b23c4ba83", - "start": { - "$date": "2022-02-01T01:01:29.000Z" - }, - "end": { - "$date": "2022-02-01T02:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "fbec9edd-2a97-4d86-b4eb-b6c399d65438", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T01:07:32.000Z" - }, - "end": { - "$date": "2022-02-01T01:31:54.000Z" - }, - "events": [ - { - "uuid": "62d67e1a-f687-4bfa-8992-daf2b278e4eb", - "start": { - "$date": "2022-02-01T01:07:32.000Z" - }, - "end": { - "$date": "2022-02-01T01:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "47a389eb-4ac2-452e-a63b-8cc2c3c16db7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-01T01:43:38.000Z" - }, - "end": { - "$date": "2022-02-01T02:27:06.000Z" - }, - "events": [ - { - "uuid": "38d14a7b-1442-426b-97a5-2860b9b6ab68", - "start": { - "$date": "2022-02-01T01:43:38.000Z" - }, - "end": { - "$date": "2022-02-01T02:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0d998d92-c907-4c48-9c4c-b7ac7caffdfa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-01T01:59:27.000Z" - }, - "end": { - "$date": "2022-02-01T05:22:18.000Z" - }, - "events": [ - { - "uuid": "b43863f2-3de3-4313-8572-5b2cc3535090", - "start": { - "$date": "2022-02-01T01:59:27.000Z" - }, - "end": { - "$date": "2022-02-01T05:22:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a6d535eb-d06a-4f56-937f-a7b9e1c684f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-01T02:03:18.000Z" - }, - "end": { - "$date": "2022-02-01T02:55:19.000Z" - }, - "events": [ - { - "uuid": "a74a0a42-79bc-4caa-861a-6513922e9428", - "start": { - "$date": "2022-02-01T02:03:18.000Z" - }, - "end": { - "$date": "2022-02-01T02:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "3d4c6caf-aa5a-4e68-a016-c27f780c07cf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-01T02:26:19.000Z" - }, - "end": { - "$date": "2022-02-01T02:28:54.000Z" - }, - "events": [ - { - "uuid": "549cd25e-d4cc-478d-9ce7-3078cfa75463", - "start": { - "$date": "2022-02-01T02:26:19.000Z" - }, - "end": { - "$date": "2022-02-01T02:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c987428-3000-498a-beca-ae0cdf126d8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-01T02:33:19.000Z" - }, - "end": { - "$date": "2022-02-01T03:00:13.000Z" - }, - "events": [ - { - "uuid": "9eb38caf-1ed4-4c3a-accd-b376e6408b28", - "start": { - "$date": "2022-02-01T02:33:19.000Z" - }, - "end": { - "$date": "2022-02-01T03:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fec0f92a-cb72-468d-b709-33aa7d83b7ee", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T02:33:13.000Z" - }, - "end": { - "$date": "2022-02-01T03:00:02.000Z" - }, - "events": [ - { - "uuid": "fbc3e461-9a0f-43bd-95b7-4b9bc3b4612c", - "start": { - "$date": "2022-02-01T02:33:13.000Z" - }, - "end": { - "$date": "2022-02-01T03:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "92b0881a-5ec8-4585-8397-1b21a5b3a538", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-01T02:44:03.000Z" - }, - "end": { - "$date": "2022-02-01T04:14:15.000Z" - }, - "events": [ - { - "uuid": "7b2df3f0-39aa-48e9-ac14-e05a9bd7e2f9", - "start": { - "$date": "2022-02-01T02:44:03.000Z" - }, - "end": { - "$date": "2022-02-01T04:14:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee9ef1e7-9786-4591-8eb0-ebae34d266cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T03:17:54.000Z" - }, - "end": { - "$date": "2022-02-01T03:18:03.000Z" - }, - "events": [ - { - "uuid": "fa1a892d-5ab5-4dc8-84aa-1a51002462b0", - "start": { - "$date": "2022-02-01T03:17:54.000Z" - }, - "end": { - "$date": "2022-02-01T03:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b80f32c-4891-4ba9-b0e4-69ac2199dd27", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-01T03:03:37.000Z" - }, - "end": { - "$date": "2022-02-01T03:22:32.000Z" - }, - "events": [ - { - "uuid": "4109f4be-d424-43d5-852b-a95b73fb9f5c", - "start": { - "$date": "2022-02-01T03:03:37.000Z" - }, - "end": { - "$date": "2022-02-01T03:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72f38421-9da3-468f-aeb0-cb45ca45cc95", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T03:03:33.000Z" - }, - "end": { - "$date": "2022-02-01T03:22:13.000Z" - }, - "events": [ - { - "uuid": "c5b40ec2-9eb1-4b88-9ce8-9ddba71cb04b", - "start": { - "$date": "2022-02-01T03:03:33.000Z" - }, - "end": { - "$date": "2022-02-01T03:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ad01a8c6-441c-4965-9c8b-4af5226e6281", - "uuid": "067b02ed-9c83-4fe0-b68c-849316d87eaa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-01T03:03:25.000Z" - }, - "end": { - "$date": "2022-02-01T03:14:00.000Z" - }, - "events": [ - { - "uuid": "f474bea1-7b2f-4282-b695-c6833c55db2f", - "start": { - "$date": "2022-02-01T03:03:25.000Z" - }, - "end": { - "$date": "2022-02-01T03:14:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10648006-538e-45c9-8665-a50bd0fc5491", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T03:20:18.000Z" - }, - "end": { - "$date": "2022-02-01T03:36:14.000Z" - }, - "events": [ - { - "uuid": "004446bb-f93a-4133-8f56-780a350c8c4e", - "start": { - "$date": "2022-02-01T03:20:18.000Z" - }, - "end": { - "$date": "2022-02-01T03:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a638906-a447-498f-a424-78636a667b78", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T03:39:14.000Z" - }, - "end": { - "$date": "2022-02-01T03:56:26.000Z" - }, - "events": [ - { - "uuid": "d189a95e-d43e-4bfe-bb04-c555abfed999", - "start": { - "$date": "2022-02-01T03:39:14.000Z" - }, - "end": { - "$date": "2022-02-01T03:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ba9da804-4e24-4e83-b55f-82d56d62092b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-01T03:41:21.000Z" - }, - "end": { - "$date": "2022-02-01T06:22:32.000Z" - }, - "events": [ - { - "uuid": "5502f23b-fcbe-4629-9b5b-fae9e7f116cd", - "start": { - "$date": "2022-02-01T03:41:21.000Z" - }, - "end": { - "$date": "2022-02-01T06:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7d849da-9b0e-4cbd-b044-88f8adbfa1ed", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T03:58:54.000Z" - }, - "end": { - "$date": "2022-02-01T04:15:57.000Z" - }, - "events": [ - { - "uuid": "80934376-2d16-4af5-b7db-7b8a6ee1aee6", - "start": { - "$date": "2022-02-01T03:58:54.000Z" - }, - "end": { - "$date": "2022-02-01T04:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6d77f68-9a95-4fe8-8049-744b429c38ee", - "uuid": "add35ddf-8969-4120-9e9d-56ab777c8d7d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-01T04:07:10.000Z" - }, - "end": { - "$date": "2022-02-01T04:30:51.000Z" - }, - "events": [ - { - "uuid": "ad5f0a2c-7913-4d17-badd-ab45a0cc0989", - "start": { - "$date": "2022-02-01T04:07:10.000Z" - }, - "end": { - "$date": "2022-02-01T04:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de9b9772-243b-42bf-a734-29e327a6538d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T04:18:00.000Z" - }, - "end": { - "$date": "2022-02-01T04:37:46.000Z" - }, - "events": [ - { - "uuid": "24ea1da6-fc46-4628-a7a7-6d4dd624f15c", - "start": { - "$date": "2022-02-01T04:18:00.000Z" - }, - "end": { - "$date": "2022-02-01T04:37:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7b0e269-28ed-4d3f-8bba-24ea4ec997db", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-01T04:40:51.000Z" - }, - "end": { - "$date": "2022-02-01T05:01:53.000Z" - }, - "events": [ - { - "uuid": "3ac12580-e02c-45f7-a0eb-3d11572cad00", - "start": { - "$date": "2022-02-01T04:40:51.000Z" - }, - "end": { - "$date": "2022-02-01T05:01:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d09b76a8-faa2-4156-be6e-4c38085a2637", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-01T05:24:42.000Z" - }, - "end": { - "$date": "2022-02-01T06:06:40.000Z" - }, - "events": [ - { - "uuid": "9ef8fab3-0a70-4895-9136-1706e15b79d2", - "start": { - "$date": "2022-02-01T05:24:42.000Z" - }, - "end": { - "$date": "2022-02-01T06:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1057e40b-be9e-4890-9e27-4bac6aaff5bb", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-01T05:02:19.000Z" - }, - "end": { - "$date": "2022-02-01T06:47:02.000Z" - }, - "events": [ - { - "uuid": "9d3944ed-2f14-40e6-8ed5-82d1b2a3a731", - "start": { - "$date": "2022-02-01T05:02:19.000Z" - }, - "end": { - "$date": "2022-02-01T06:47:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a839c1a6-7594-46c8-b515-0d66427f165a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-01T05:22:47.000Z" - }, - "end": { - "$date": "2022-02-01T06:23:26.000Z" - }, - "events": [ - { - "uuid": "d807240c-c381-4178-bf2b-8babb6c9ff5c", - "start": { - "$date": "2022-02-01T05:22:47.000Z" - }, - "end": { - "$date": "2022-02-01T06:23:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0a97978-d8be-483b-9060-f758f54fed08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-01T05:26:37.000Z" - }, - "end": { - "$date": "2022-02-01T05:56:20.000Z" - }, - "events": [ - { - "uuid": "9d1f4e7f-e756-4adf-a1bf-142ea6dc694a", - "start": { - "$date": "2022-02-01T05:26:37.000Z" - }, - "end": { - "$date": "2022-02-01T05:56:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7aa3b59-5cf4-48cf-bc78-5b156b180c71", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T05:33:24.000Z" - }, - "end": { - "$date": "2022-02-01T06:06:34.000Z" - }, - "events": [ - { - "uuid": "1b18e918-b688-4b3e-970a-6b9a1fba5770", - "start": { - "$date": "2022-02-01T05:33:24.000Z" - }, - "end": { - "$date": "2022-02-01T06:06:34.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "ba340ed8-b6db-4869-9c74-2814b6d1285a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-01T05:39:07.000Z" - }, - "end": { - "$date": "2022-02-01T09:15:57.000Z" - }, - "events": [ - { - "uuid": "a4204c7d-6911-4397-bd5f-bb3fd00d333a", - "start": { - "$date": "2022-02-01T05:39:07.000Z" - }, - "end": { - "$date": "2022-02-01T09:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c619de50-61fc-4bd2-93cd-1ad4fdd2e5bf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-01T05:54:42.000Z" - }, - "end": { - "$date": "2022-02-01T06:04:39.000Z" - }, - "events": [ - { - "uuid": "f89bff23-498f-4c88-820b-ccabec3add2f", - "start": { - "$date": "2022-02-01T05:54:42.000Z" - }, - "end": { - "$date": "2022-02-01T06:04:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb520d92-03ee-4176-822b-af76014643f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-01T06:00:09.000Z" - }, - "end": { - "$date": "2022-02-01T06:22:11.000Z" - }, - "events": [ - { - "uuid": "6ba9bb72-bf86-43ef-b588-326171876f4d", - "start": { - "$date": "2022-02-01T06:00:09.000Z" - }, - "end": { - "$date": "2022-02-01T06:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0974dbb4-2789-47bb-ab72-eccc750d4038", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-01T06:06:49.000Z" - }, - "end": { - "$date": "2022-02-01T06:47:01.000Z" - }, - "events": [ - { - "uuid": "1e74e0a0-99fa-4391-87aa-1f5f650f1907", - "start": { - "$date": "2022-02-01T06:06:49.000Z" - }, - "end": { - "$date": "2022-02-01T06:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "852b06f9-862f-483f-927d-46b3c6c79b6e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-01T06:17:19.000Z" - }, - "end": { - "$date": "2022-02-01T06:54:55.000Z" - }, - "events": [ - { - "uuid": "6ce30402-8c77-4ec6-8ea8-02cdd260712c", - "start": { - "$date": "2022-02-01T06:17:19.000Z" - }, - "end": { - "$date": "2022-02-01T06:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "d18276fc-a6a0-4784-981f-5d03b381f337", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-01T06:47:15.000Z" - }, - "end": { - "$date": "2022-02-01T07:34:41.000Z" - }, - "events": [ - { - "uuid": "45ed2d43-256c-4f2c-bc92-d630e53c8cb4", - "start": { - "$date": "2022-02-01T06:47:15.000Z" - }, - "end": { - "$date": "2022-02-01T07:34:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8aea2021-0c72-47b3-b7c2-71656ef2155d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-01T07:46:05.000Z" - }, - "end": { - "$date": "2022-02-01T08:04:55.000Z" - }, - "events": [ - { - "uuid": "7ae423b8-465b-4bc5-a23b-317a846b79e5", - "start": { - "$date": "2022-02-01T07:46:05.000Z" - }, - "end": { - "$date": "2022-02-01T08:04:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "d383df43-2d16-44fb-9a16-fa79c19e5d41", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-01T07:52:19.000Z" - }, - "end": { - "$date": "2022-02-01T09:06:57.000Z" - }, - "events": [ - { - "uuid": "426c67af-4c35-49bc-a408-6aff3e91c1c5", - "start": { - "$date": "2022-02-01T07:52:19.000Z" - }, - "end": { - "$date": "2022-02-01T09:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90763b89-e0ce-44a7-9998-3c6566d65c39", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-01T08:07:40.000Z" - }, - "end": { - "$date": "2022-02-01T08:29:11.000Z" - }, - "events": [ - { - "uuid": "43641b95-1387-47a6-85e9-a171b814a3a0", - "start": { - "$date": "2022-02-01T08:07:40.000Z" - }, - "end": { - "$date": "2022-02-01T08:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a727e2ea-0d89-431c-b41e-a0922eb1dd71", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T08:25:41.000Z" - }, - "end": { - "$date": "2022-02-01T10:25:48.000Z" - }, - "events": [ - { - "uuid": "2c4b3029-7bfc-4aae-bad6-376d2201ec70", - "start": { - "$date": "2022-02-01T08:25:41.000Z" - }, - "end": { - "$date": "2022-02-01T10:25:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ec4be66e-81e3-4dd9-ac16-3a89019ac671", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T10:27:17.000Z" - }, - "end": { - "$date": "2022-02-01T11:17:08.000Z" - }, - "events": [ - { - "uuid": "f37e8dc5-a73f-46bb-9daa-a43670f3519b", - "start": { - "$date": "2022-02-01T10:27:17.000Z" - }, - "end": { - "$date": "2022-02-01T11:17:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8cb5b418-7177-4050-a908-1d4ab6532440", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T13:09:10.000Z" - }, - "end": { - "$date": "2022-02-01T13:14:31.000Z" - }, - "events": [ - { - "uuid": "55b34f89-d072-4dad-9c2e-e1e8a74f6c17", - "start": { - "$date": "2022-02-01T13:09:10.000Z" - }, - "end": { - "$date": "2022-02-01T13:14:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48f12cde-db2a-4999-ad4c-e491561d2209", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T13:47:15.000Z" - }, - "end": { - "$date": "2022-02-01T14:03:44.000Z" - }, - "events": [ - { - "uuid": "b0f8fbc2-cc09-4c3b-a0b0-140266392552", - "start": { - "$date": "2022-02-01T13:47:15.000Z" - }, - "end": { - "$date": "2022-02-01T14:03:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27b71257-a110-461d-b23c-4b603610a58c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T14:07:25.000Z" - }, - "end": { - "$date": "2022-02-01T14:26:06.000Z" - }, - "events": [ - { - "uuid": "6d7cef71-005b-4409-aaae-5fd2c982aa6b", - "start": { - "$date": "2022-02-01T14:07:25.000Z" - }, - "end": { - "$date": "2022-02-01T14:26:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3da110c9-1753-4f60-ba84-1efdd10c086b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T14:29:36.000Z" - }, - "end": { - "$date": "2022-02-01T14:48:52.000Z" - }, - "events": [ - { - "uuid": "7eb51e9e-0877-4343-8cd7-39fca8a4ca0c", - "start": { - "$date": "2022-02-01T14:29:36.000Z" - }, - "end": { - "$date": "2022-02-01T14:48:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5d87077-0e84-4bf2-8ed4-45811d7d0c28", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T14:54:16.000Z" - }, - "end": { - "$date": "2022-02-01T15:12:57.000Z" - }, - "events": [ - { - "uuid": "262ad410-4f1e-4246-a9ad-44837aef95e7", - "start": { - "$date": "2022-02-01T14:54:16.000Z" - }, - "end": { - "$date": "2022-02-01T15:12:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "847c82f3-82ff-4980-b786-c5943e454373", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T15:15:27.000Z" - }, - "end": { - "$date": "2022-02-01T15:40:08.000Z" - }, - "events": [ - { - "uuid": "4056b375-4b4d-4b2c-b35a-f642aca8f702", - "start": { - "$date": "2022-02-01T15:15:27.000Z" - }, - "end": { - "$date": "2022-02-01T15:40:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1371a5aa-b9c0-4de7-bf25-553b9e5856d4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T15:40:36.000Z" - }, - "end": { - "$date": "2022-02-01T15:41:56.000Z" - }, - "events": [ - { - "uuid": "b4c3935c-01ad-428c-b5a7-5dc814a082b1", - "start": { - "$date": "2022-02-01T15:40:36.000Z" - }, - "end": { - "$date": "2022-02-01T15:41:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac695935-155c-4033-a28e-f8515153914a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T15:45:38.000Z" - }, - "end": { - "$date": "2022-02-01T16:06:24.000Z" - }, - "events": [ - { - "uuid": "f863ed8e-b713-4d11-bcbf-d53bdf5d6d9f", - "start": { - "$date": "2022-02-01T15:45:38.000Z" - }, - "end": { - "$date": "2022-02-01T16:06:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97943f39-8c92-407f-b220-5537f560a902", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T15:45:16.000Z" - }, - "end": { - "$date": "2022-02-01T16:02:35.000Z" - }, - "events": [ - { - "uuid": "ff5060be-e705-4e4e-a930-33d478106c06", - "start": { - "$date": "2022-02-01T15:45:16.000Z" - }, - "end": { - "$date": "2022-02-01T16:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68d295dd-7204-4d88-993e-082b3da22165", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T16:05:11.000Z" - }, - "end": { - "$date": "2022-02-01T16:20:00.000Z" - }, - "events": [ - { - "uuid": "a3c44799-f630-4ac4-8aec-61208a00ff9e", - "start": { - "$date": "2022-02-01T16:05:11.000Z" - }, - "end": { - "$date": "2022-02-01T16:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bcd4b46-7d3d-4eaf-8bf7-c4c776461dff", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-01T16:09:03.000Z" - }, - "end": { - "$date": "2022-02-01T16:31:31.000Z" - }, - "events": [ - { - "uuid": "3b071331-39f1-4ebb-9cdb-05d879e60278", - "start": { - "$date": "2022-02-01T16:09:03.000Z" - }, - "end": { - "$date": "2022-02-01T16:31:31.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d785b97e-c346-4e1b-8efd-3c7520bbcbf4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T16:24:37.000Z" - }, - "end": { - "$date": "2022-02-01T16:40:51.000Z" - }, - "events": [ - { - "uuid": "bbb0cce8-325a-4ac8-b60d-a3b56059722d", - "start": { - "$date": "2022-02-01T16:24:37.000Z" - }, - "end": { - "$date": "2022-02-01T16:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbdcfe73-f727-47ca-af2d-49abb0fc4560", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T16:49:13.000Z" - }, - "end": { - "$date": "2022-02-01T16:59:12.000Z" - }, - "events": [ - { - "uuid": "621fbb22-ce8d-41f8-988b-64e9c63e12b7", - "start": { - "$date": "2022-02-01T16:49:13.000Z" - }, - "end": { - "$date": "2022-02-01T16:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cabfd712-2917-4169-9c68-97bd8be4a3c7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-01T17:20:45.000Z" - }, - "end": { - "$date": "2022-02-01T17:40:30.000Z" - }, - "events": [ - { - "uuid": "0195a0f1-73bb-49be-b531-acf53d10440a", - "start": { - "$date": "2022-02-01T17:20:45.000Z" - }, - "end": { - "$date": "2022-02-01T17:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36f87eb7-8b9f-4210-ba1d-6d0caade7b99", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-01T17:40:32.000Z" - }, - "end": { - "$date": "2022-02-01T17:42:28.000Z" - }, - "events": [ - { - "uuid": "cfa23ae8-c0fe-47dc-9246-29cfac6abf99", - "start": { - "$date": "2022-02-01T17:40:32.000Z" - }, - "end": { - "$date": "2022-02-01T17:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7cbab6a-d6ca-4430-af24-b5eec83db549", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-01T17:52:57.000Z" - }, - "end": { - "$date": "2022-02-01T18:21:18.000Z" - }, - "events": [ - { - "uuid": "503a8f1c-1774-45a7-979c-499c580f42f6", - "start": { - "$date": "2022-02-01T17:52:57.000Z" - }, - "end": { - "$date": "2022-02-01T18:21:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f075129c-25cb-4847-830a-9f73034629c4", - "uuid": "c3ddc30a-cdac-47de-b7d0-acf225fcc7a5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-01T18:37:39.000Z" - }, - "end": { - "$date": "2022-02-01T18:54:33.000Z" - }, - "events": [ - { - "uuid": "755c13b2-8c40-4764-a438-6c6445a17219", - "start": { - "$date": "2022-02-01T18:37:39.000Z" - }, - "end": { - "$date": "2022-02-01T18:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "d1dee49c-e200-4750-9975-43c02eb0406d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T00:37:02.000Z" - }, - "end": { - "$date": "2022-02-02T00:38:29.000Z" - }, - "events": [ - { - "uuid": "8f398c42-cba9-4601-ac16-19350ba11f02", - "start": { - "$date": "2022-02-02T00:37:02.000Z" - }, - "end": { - "$date": "2022-02-02T00:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1779df84-f766-46fe-8864-65c58404b5a6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-01T23:58:58.000Z" - }, - "end": { - "$date": "2022-02-02T00:11:03.000Z" - }, - "events": [ - { - "uuid": "0ea0a793-6c43-402e-adca-2ffac4aa128d", - "start": { - "$date": "2022-02-01T23:58:58.000Z" - }, - "end": { - "$date": "2022-02-02T00:11:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "836a35c9-0a50-4370-b1af-7492ca56e764", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T01:23:08.000Z" - }, - "end": { - "$date": "2022-02-02T01:25:19.000Z" - }, - "events": [ - { - "uuid": "f5c15bdc-0752-4c76-9026-568b2ae416f0", - "start": { - "$date": "2022-02-02T01:23:08.000Z" - }, - "end": { - "$date": "2022-02-02T01:25:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "8f56b6bb-5184-4e5b-8db4-39d04004d165", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T01:35:25.000Z" - }, - "end": { - "$date": "2022-02-02T01:37:10.000Z" - }, - "events": [ - { - "uuid": "53ddb2c1-baaa-4dc0-b500-7f9a11d58557", - "start": { - "$date": "2022-02-02T01:35:25.000Z" - }, - "end": { - "$date": "2022-02-02T01:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "697037d6-9ae3-47e2-a8e6-cae61ce4aacd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T02:04:59.000Z" - }, - "end": { - "$date": "2022-02-02T02:19:50.000Z" - }, - "events": [ - { - "uuid": "5918beb5-4297-4baa-912d-dddce72b33ad", - "start": { - "$date": "2022-02-02T02:04:59.000Z" - }, - "end": { - "$date": "2022-02-02T02:44:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9241d74-b53b-43f9-b261-32abf28e5baf", - "start": { - "$date": "2022-02-02T02:44:59.000Z" - }, - "end": { - "$date": "2022-02-02T02:19:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "c0b8a57d-3e85-475c-a756-687d28174cf0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T02:21:05.000Z" - }, - "end": { - "$date": "2022-02-02T02:59:12.000Z" - }, - "events": [ - { - "uuid": "5c14524c-2e09-4a9c-968f-3f4359bc9f28", - "start": { - "$date": "2022-02-02T02:21:05.000Z" - }, - "end": { - "$date": "2022-02-02T02:34:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "00d3223b-8cdf-4136-95b2-3a1b8fa48772", - "start": { - "$date": "2022-02-02T02:34:05.000Z" - }, - "end": { - "$date": "2022-02-02T02:36:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b94d8cc5-5de9-4016-bb70-623765986fd7", - "start": { - "$date": "2022-02-02T02:36:05.000Z" - }, - "end": { - "$date": "2022-02-02T02:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d394da79-3648-46c0-8fd0-7b40d5bc0d35", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-02T01:25:36.000Z" - }, - "end": { - "$date": "2022-02-02T03:34:37.000Z" - }, - "events": [ - { - "uuid": "c4c82519-fab4-4290-ab9e-d65b7ad52c28", - "start": { - "$date": "2022-02-02T01:25:36.000Z" - }, - "end": { - "$date": "2022-02-02T03:34:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "f4b01cd3-c19d-4af2-acdd-ef264086508f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T03:00:56.000Z" - }, - "end": { - "$date": "2022-02-02T03:14:07.000Z" - }, - "events": [ - { - "uuid": "83d2df6b-b4d8-44d0-bd56-d167b94e74ac", - "start": { - "$date": "2022-02-02T03:00:56.000Z" - }, - "end": { - "$date": "2022-02-02T03:14:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "e5587277-fa5d-4db6-bc04-443100170af0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T05:47:23.000Z" - }, - "end": { - "$date": "2022-02-02T05:47:29.000Z" - }, - "events": [ - { - "uuid": "d3a8a044-2e0e-41bf-ae5f-6a8b6f367cf0", - "start": { - "$date": "2022-02-02T05:47:23.000Z" - }, - "end": { - "$date": "2022-02-02T05:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0427da87-b861-4029-9ff5-d2b67e3918a7", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-02-02T03:19:00.000Z" - }, - "end": { - "$date": "2022-02-02T03:48:08.000Z" - }, - "events": [ - { - "uuid": "d5d40d11-fe2d-4810-9d23-ae5aba00feb9", - "start": { - "$date": "2022-02-02T03:19:00.000Z" - }, - "end": { - "$date": "2022-02-02T03:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "09455d49-a258-4690-a706-cb31d88d80a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-02T03:34:47.000Z" - }, - "end": { - "$date": "2022-02-02T04:09:16.000Z" - }, - "events": [ - { - "uuid": "5285d00f-8034-40bf-95ef-faa3366caa32", - "start": { - "$date": "2022-02-02T03:34:47.000Z" - }, - "end": { - "$date": "2022-02-02T04:09:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "71832be3-8128-4a52-b114-5af93fc196da", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-02T04:08:46.000Z" - }, - "end": { - "$date": "2022-02-02T05:56:03.000Z" - }, - "events": [ - { - "uuid": "fc1b21a8-bfb7-402e-b95f-e8e250392c5c", - "start": { - "$date": "2022-02-02T04:08:46.000Z" - }, - "end": { - "$date": "2022-02-02T05:56:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2dc9d475-b611-45e7-99b7-d73d000ad834", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-02T05:36:35.000Z" - }, - "end": { - "$date": "2022-02-02T08:18:13.000Z" - }, - "events": [ - { - "uuid": "4ae69deb-39cd-44db-96ef-bd9e8d6d54e2", - "start": { - "$date": "2022-02-02T05:36:35.000Z" - }, - "end": { - "$date": "2022-02-02T08:18:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae4bb123-6a55-40c6-9ecb-3f02dbaff900", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-02T04:17:57.000Z" - }, - "end": { - "$date": "2022-02-02T04:41:30.000Z" - }, - "events": [ - { - "uuid": "87c48a14-990d-4357-923b-74f69f17290d", - "start": { - "$date": "2022-02-02T04:17:57.000Z" - }, - "end": { - "$date": "2022-02-02T04:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7240fc98-abd2-4be2-8735-383399869b20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-02T05:25:13.000Z" - }, - "end": { - "$date": "2022-02-02T05:25:31.000Z" - }, - "events": [ - { - "uuid": "4d24dd0d-8fff-4187-86cc-963b61f35795", - "start": { - "$date": "2022-02-02T05:25:13.000Z" - }, - "end": { - "$date": "2022-02-02T05:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d2139647-19d9-49e7-b148-ba4b6a825b27", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T04:53:37.000Z" - }, - "end": { - "$date": "2022-02-02T05:20:13.000Z" - }, - "events": [ - { - "uuid": "b6aac406-3dad-4ded-b74a-07c8e1801064", - "start": { - "$date": "2022-02-02T04:53:37.000Z" - }, - "end": { - "$date": "2022-02-02T05:20:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b789f42c-1951-426c-b864-76f46c263a1b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-02T03:34:47.000Z" - }, - "end": { - "$date": "2022-02-02T07:07:03.000Z" - }, - "events": [ - { - "uuid": "4e88b018-b196-438d-ba50-7e4c0df317cc", - "start": { - "$date": "2022-02-02T03:34:47.000Z" - }, - "end": { - "$date": "2022-02-02T07:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ed05b56-f557-4bc7-aa5f-dc85801ff86f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T05:22:38.000Z" - }, - "end": { - "$date": "2022-02-02T05:39:55.000Z" - }, - "events": [ - { - "uuid": "e599e799-e82b-4b7c-9e55-73e5f0642332", - "start": { - "$date": "2022-02-02T05:22:38.000Z" - }, - "end": { - "$date": "2022-02-02T05:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "380a0796-b295-451b-a7a7-aff3050a1a00", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-02T05:27:47.000Z" - }, - "end": { - "$date": "2022-02-02T06:16:53.000Z" - }, - "events": [ - { - "uuid": "88c89c94-dfb2-4e35-888e-af42da64f745", - "start": { - "$date": "2022-02-02T05:27:47.000Z" - }, - "end": { - "$date": "2022-02-02T06:16:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "95f2516a-c17a-4813-9f7d-1659ecae3bca", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T05:37:16.000Z" - }, - "end": { - "$date": "2022-02-02T08:19:00.000Z" - }, - "events": [ - { - "uuid": "cf220966-cde3-473f-936d-5f03e8e3342a", - "start": { - "$date": "2022-02-02T05:37:16.000Z" - }, - "end": { - "$date": "2022-02-02T08:19:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b17df346-5589-428c-8c3f-f304b3e3fe0a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T05:43:44.000Z" - }, - "end": { - "$date": "2022-02-02T06:02:26.000Z" - }, - "events": [ - { - "uuid": "1acad243-06d5-4033-bed1-43735238f493", - "start": { - "$date": "2022-02-02T05:43:44.000Z" - }, - "end": { - "$date": "2022-02-02T06:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "3e13b6a9-145b-43e1-acdb-8e5a46736662", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T05:47:38.000Z" - }, - "end": { - "$date": "2022-02-02T06:21:03.000Z" - }, - "events": [ - { - "uuid": "5e33c811-335b-46b4-bb6f-306362d3b02a", - "start": { - "$date": "2022-02-02T05:47:38.000Z" - }, - "end": { - "$date": "2022-02-02T06:21:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3631edd0-9897-43ab-8486-f7c18094e129", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T06:07:14.000Z" - }, - "end": { - "$date": "2022-02-02T06:47:29.000Z" - }, - "events": [ - { - "uuid": "773f2bba-6e63-4ece-a8b5-229f0976b02f", - "start": { - "$date": "2022-02-02T06:07:14.000Z" - }, - "end": { - "$date": "2022-02-02T06:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40967f98-c48c-4c10-b4e6-7a18817a67f0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-02T06:17:29.000Z" - }, - "end": { - "$date": "2022-02-02T08:17:39.000Z" - }, - "events": [ - { - "uuid": "583322a6-d6ab-4687-aee7-79b024f12c45", - "start": { - "$date": "2022-02-02T06:17:29.000Z" - }, - "end": { - "$date": "2022-02-02T08:17:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bbac4ed-8b9b-4e8f-aece-bd6285dc8238", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-02T06:19:56.000Z" - }, - "end": { - "$date": "2022-02-02T06:47:01.000Z" - }, - "events": [ - { - "uuid": "3fcaccb6-4b28-4a5c-9f35-e8ab5ee354a8", - "start": { - "$date": "2022-02-02T06:19:56.000Z" - }, - "end": { - "$date": "2022-02-02T06:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c22b42d-43f4-4f3a-ace0-39f5de8e1188", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-02T06:50:52.000Z" - }, - "end": { - "$date": "2022-02-02T07:26:22.000Z" - }, - "events": [ - { - "uuid": "06809f23-9f2f-4f49-a854-6c795cc09c56", - "start": { - "$date": "2022-02-02T06:50:52.000Z" - }, - "end": { - "$date": "2022-02-02T07:26:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7621d881-d76e-421b-9134-9fb9923651bf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T06:52:04.000Z" - }, - "end": { - "$date": "2022-02-02T07:16:29.000Z" - }, - "events": [ - { - "uuid": "011dac30-cb5e-4464-9962-a99f25a27015", - "start": { - "$date": "2022-02-02T06:52:04.000Z" - }, - "end": { - "$date": "2022-02-02T07:16:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77ae5bfa-75dc-4cd8-bc52-3da3ce6c6018", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T07:17:29.000Z" - }, - "end": { - "$date": "2022-02-02T07:18:32.000Z" - }, - "events": [ - { - "uuid": "d4e20177-3211-4d6c-baf9-032fd6210dba", - "start": { - "$date": "2022-02-02T07:17:29.000Z" - }, - "end": { - "$date": "2022-02-02T07:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc9ed776-5e08-4866-945d-8e416cf44ffa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T07:22:10.000Z" - }, - "end": { - "$date": "2022-02-02T07:42:08.000Z" - }, - "events": [ - { - "uuid": "0cfd630c-214f-4a1c-8b96-a5b8515c3dbd", - "start": { - "$date": "2022-02-02T07:22:10.000Z" - }, - "end": { - "$date": "2022-02-02T07:42:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76b6ab1b-8b44-4002-b7c6-27557090e2cd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-02T07:27:20.000Z" - }, - "end": { - "$date": "2022-02-02T07:31:33.000Z" - }, - "events": [ - { - "uuid": "f46d01ca-03a9-4150-9f9d-2255b67df903", - "start": { - "$date": "2022-02-02T07:27:20.000Z" - }, - "end": { - "$date": "2022-02-02T07:31:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "989b88dd-226f-4897-9dd5-1e41faf0cfbb", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-02T07:32:58.000Z" - }, - "end": { - "$date": "2022-02-02T08:17:44.000Z" - }, - "events": [ - { - "uuid": "45155d12-70a8-49b9-8e22-85945d174639", - "start": { - "$date": "2022-02-02T07:32:58.000Z" - }, - "end": { - "$date": "2022-02-02T08:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f5696b9-b835-4a97-b192-51623e6dedd6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-02T07:44:36.000Z" - }, - "end": { - "$date": "2022-02-02T08:03:44.000Z" - }, - "events": [ - { - "uuid": "001d70df-2341-41bb-8fd5-c6e45c7f172a", - "start": { - "$date": "2022-02-02T07:44:36.000Z" - }, - "end": { - "$date": "2022-02-02T08:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "0b19a57f-e8ac-464a-9ee3-9e463ee00370", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-02T08:18:33.000Z" - }, - "end": { - "$date": "2022-02-02T08:50:57.000Z" - }, - "events": [ - { - "uuid": "6771d3fc-6194-46cc-b7a3-c991d7added3", - "start": { - "$date": "2022-02-02T08:18:33.000Z" - }, - "end": { - "$date": "2022-02-02T08:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3a641e59-510e-4a59-a095-547fdeed535c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T09:19:47.000Z" - }, - "end": { - "$date": "2022-02-02T12:45:14.000Z" - }, - "events": [ - { - "uuid": "0177a664-60d1-4b98-987b-d102298810d6", - "start": { - "$date": "2022-02-02T09:19:47.000Z" - }, - "end": { - "$date": "2022-02-02T12:45:14.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "eb34f879-00dd-410b-92c3-9dfd88b61a86", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T14:57:34.000Z" - }, - "end": { - "$date": "2022-02-02T17:14:36.000Z" - }, - "events": [ - { - "uuid": "76a4561e-6026-4e0c-87eb-af9766680859", - "start": { - "$date": "2022-02-02T14:57:34.000Z" - }, - "end": { - "$date": "2022-02-02T17:14:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c94b700-ccad-422d-b1e4-6d64e8a40270", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T15:32:12.000Z" - }, - "end": { - "$date": "2022-02-02T15:45:51.000Z" - }, - "events": [ - { - "uuid": "23e0ca8c-a096-4a70-b75e-32f4561cc582", - "start": { - "$date": "2022-02-02T15:32:12.000Z" - }, - "end": { - "$date": "2022-02-02T15:44:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4265a449-0fbf-4d9c-8a1b-c85bd8ab8637", - "start": { - "$date": "2022-02-02T15:44:12.000Z" - }, - "end": { - "$date": "2022-02-02T15:47:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4cbc8111-8646-4d51-b847-2bc59cb42dd3", - "start": { - "$date": "2022-02-02T15:47:12.000Z" - }, - "end": { - "$date": "2022-02-02T15:45:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18c590b5-d68c-45e4-95ac-8462f8b56700", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T15:49:17.000Z" - }, - "end": { - "$date": "2022-02-02T16:10:17.000Z" - }, - "events": [ - { - "uuid": "198c06b9-9719-4990-9301-50ffab75b8bd", - "start": { - "$date": "2022-02-02T15:49:17.000Z" - }, - "end": { - "$date": "2022-02-02T16:10:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08671a37-e429-42af-a550-c12651ccb2c4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T16:10:32.000Z" - }, - "end": { - "$date": "2022-02-02T16:11:43.000Z" - }, - "events": [ - { - "uuid": "2aab00a3-bfe2-408e-a888-a7ce036d0f73", - "start": { - "$date": "2022-02-02T16:10:32.000Z" - }, - "end": { - "$date": "2022-02-02T16:11:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "03785ee1-8aa4-46fd-ad0c-36b8317f379c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T17:17:00.000Z" - }, - "end": { - "$date": "2022-02-02T18:03:00.000Z" - }, - "events": [ - { - "uuid": "b7f61a22-124a-47e8-ad8e-f8674ed84527", - "start": { - "$date": "2022-02-02T17:17:00.000Z" - }, - "end": { - "$date": "2022-02-02T18:03:00.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f63b137d-281d-45a1-9ec5-c79459ec08b4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T19:46:25.000Z" - }, - "end": { - "$date": "2022-02-02T19:50:50.000Z" - }, - "events": [ - { - "uuid": "c79a2377-7fa5-4620-a06f-654cc4ea6ec0", - "start": { - "$date": "2022-02-02T19:46:25.000Z" - }, - "end": { - "$date": "2022-02-02T19:50:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44e0f7ac-6047-4d71-9fb4-4d70df309cfe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T20:15:46.000Z" - }, - "end": { - "$date": "2022-02-02T20:31:42.000Z" - }, - "events": [ - { - "uuid": "0e316889-f967-49a9-ac2b-e0074379f799", - "start": { - "$date": "2022-02-02T20:15:46.000Z" - }, - "end": { - "$date": "2022-02-02T20:31:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "93649cc2-227d-4335-8820-1c38ebed875f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T20:36:26.000Z" - }, - "end": { - "$date": "2022-02-02T20:58:43.000Z" - }, - "events": [ - { - "uuid": "fe68c832-18f8-4a26-8c08-49f4bd3aa978", - "start": { - "$date": "2022-02-02T20:36:26.000Z" - }, - "end": { - "$date": "2022-02-02T20:58:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d687589-112a-4d10-8bc6-9261bf851e5e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T21:01:07.000Z" - }, - "end": { - "$date": "2022-02-02T21:22:23.000Z" - }, - "events": [ - { - "uuid": "79e93d8c-b34b-4723-b953-608df936bf2b", - "start": { - "$date": "2022-02-02T21:01:07.000Z" - }, - "end": { - "$date": "2022-02-02T21:22:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c10f330d-f901-4f0f-861a-fa22585e7ecb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T21:24:27.000Z" - }, - "end": { - "$date": "2022-02-02T21:45:36.000Z" - }, - "events": [ - { - "uuid": "408ed564-8654-4510-861c-acd26e8a5734", - "start": { - "$date": "2022-02-02T21:24:27.000Z" - }, - "end": { - "$date": "2022-02-02T21:45:36.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a8a43dc-7fd2-43d6-87cf-afed69829343", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-02T21:48:33.000Z" - }, - "end": { - "$date": "2022-02-02T22:17:20.000Z" - }, - "events": [ - { - "uuid": "be84bfb6-b0bb-4bc6-b78a-21d058c6c98e", - "start": { - "$date": "2022-02-02T21:48:33.000Z" - }, - "end": { - "$date": "2022-02-02T22:17:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae1e8ae5-5bf8-4b3e-9cb8-6c12ef0aa3b0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T22:02:34.000Z" - }, - "end": { - "$date": "2022-02-02T22:21:24.000Z" - }, - "events": [ - { - "uuid": "24a3a532-cef2-4427-afde-d72383c2883f", - "start": { - "$date": "2022-02-02T22:02:34.000Z" - }, - "end": { - "$date": "2022-02-02T22:21:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aadc9016-9421-4a4f-8d23-af7c2174d772", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T22:24:55.000Z" - }, - "end": { - "$date": "2022-02-02T22:49:35.000Z" - }, - "events": [ - { - "uuid": "0d5c9d36-b5f2-4e84-a87a-956e78cf3b72", - "start": { - "$date": "2022-02-02T22:24:55.000Z" - }, - "end": { - "$date": "2022-02-02T22:49:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "24ce9a47-b75b-4c11-9847-77e4d01793ed", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T22:43:55.000Z" - }, - "end": { - "$date": "2022-02-02T23:40:42.000Z" - }, - "events": [ - { - "uuid": "ba841efd-9263-4087-8efd-897eb7b08377", - "start": { - "$date": "2022-02-02T22:43:55.000Z" - }, - "end": { - "$date": "2022-02-02T23:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "836b1f78-46eb-44d6-8b17-188c772b05b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T22:52:16.000Z" - }, - "end": { - "$date": "2022-02-02T23:09:15.000Z" - }, - "events": [ - { - "uuid": "d15cea72-2f8f-4266-b367-d69469534637", - "start": { - "$date": "2022-02-02T22:52:16.000Z" - }, - "end": { - "$date": "2022-02-02T23:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5171dd14-711c-42e4-a59d-117995d77578", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T23:31:39.000Z" - }, - "end": { - "$date": "2022-02-02T23:52:09.000Z" - }, - "events": [ - { - "uuid": "3bd9735b-db4b-46f8-bb90-0fae614cca18", - "start": { - "$date": "2022-02-02T23:31:39.000Z" - }, - "end": { - "$date": "2022-02-02T23:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97ecaa19-3bfa-4dd2-84c9-83545ca81db9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-02T23:31:37.000Z" - }, - "end": { - "$date": "2022-02-02T23:52:10.000Z" - }, - "events": [ - { - "uuid": "c025b28e-9ca9-4745-890f-5f9fe73aa4dd", - "start": { - "$date": "2022-02-02T23:31:37.000Z" - }, - "end": { - "$date": "2022-02-02T23:52:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "af10bdeb-54f2-4d6c-ae32-6facbb4349f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-02T23:40:57.000Z" - }, - "end": { - "$date": "2022-02-03T00:59:55.000Z" - }, - "events": [ - { - "uuid": "c094d9a7-34d3-4a85-93ee-d233caa53a17", - "start": { - "$date": "2022-02-02T23:40:57.000Z" - }, - "end": { - "$date": "2022-02-03T00:59:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "38424b13-d7e9-4bf1-a02f-6f81ee4469e5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-02T23:57:55.000Z" - }, - "end": { - "$date": "2022-02-03T00:20:55.000Z" - }, - "events": [ - { - "uuid": "6c26f703-6c03-48ad-b6d1-437dc8af7e6b", - "start": { - "$date": "2022-02-02T23:57:55.000Z" - }, - "end": { - "$date": "2022-02-03T00:20:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3731f630-5e37-4ba0-a48a-1b96535c3be0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-02T23:57:53.000Z" - }, - "end": { - "$date": "2022-02-03T00:21:02.000Z" - }, - "events": [ - { - "uuid": "1a10f374-464e-47aa-b917-2e4a057b98bf", - "start": { - "$date": "2022-02-02T23:57:53.000Z" - }, - "end": { - "$date": "2022-02-03T00:21:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bcf44c20-c6a8-4c6a-b3d1-d9a54935b640", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-03T00:21:16.000Z" - }, - "end": { - "$date": "2022-02-03T01:28:36.000Z" - }, - "events": [ - { - "uuid": "b6aac7d4-2006-404a-b359-838261a5ca28", - "start": { - "$date": "2022-02-03T00:21:16.000Z" - }, - "end": { - "$date": "2022-02-03T01:28:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "f9172a01-3916-466b-a0d6-2d6e0656dd82", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-03T01:00:25.000Z" - }, - "end": { - "$date": "2022-02-03T02:39:58.000Z" - }, - "events": [ - { - "uuid": "6910076f-9c2d-4c43-8f33-fb1b95c9018c", - "start": { - "$date": "2022-02-03T01:00:25.000Z" - }, - "end": { - "$date": "2022-02-03T02:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5f0464d-f507-457a-9233-9dd4b59aa48d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-03T01:14:12.000Z" - }, - "end": { - "$date": "2022-02-03T01:44:55.000Z" - }, - "events": [ - { - "uuid": "98bdac4c-0339-4d4a-b53e-9a6e060bbe4e", - "start": { - "$date": "2022-02-03T01:14:12.000Z" - }, - "end": { - "$date": "2022-02-03T01:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "a82358d0-8a93-41bd-bb33-c9a48fbde337", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-03T02:02:45.000Z" - }, - "end": { - "$date": "2022-02-03T02:20:28.000Z" - }, - "events": [ - { - "uuid": "11cf181c-28a0-401b-bcfd-b95ff8ef71b8", - "start": { - "$date": "2022-02-03T02:02:45.000Z" - }, - "end": { - "$date": "2022-02-03T02:20:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "17633b09-58c3-463d-a9ed-389d62f3fdb9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-03T01:51:10.000Z" - }, - "end": { - "$date": "2022-02-03T02:00:10.000Z" - }, - "events": [ - { - "uuid": "6270ca25-745e-49b1-854a-000984a0ad8e", - "start": { - "$date": "2022-02-03T01:51:10.000Z" - }, - "end": { - "$date": "2022-02-03T02:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a3e9820d-58d7-411d-a5f8-e3e9c6099021", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-03T02:00:25.000Z" - }, - "end": { - "$date": "2022-02-03T07:13:45.000Z" - }, - "events": [ - { - "uuid": "31ce14de-933f-4b4c-9842-e49b3d682131", - "start": { - "$date": "2022-02-03T02:00:25.000Z" - }, - "end": { - "$date": "2022-02-03T07:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "becd96d0-86d0-4515-8da7-d7e3841b3089", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T02:06:35.000Z" - }, - "end": { - "$date": "2022-02-03T02:19:48.000Z" - }, - "events": [ - { - "uuid": "7958d7c0-0240-454b-94d0-daf4a96d34f1", - "start": { - "$date": "2022-02-03T02:06:35.000Z" - }, - "end": { - "$date": "2022-02-03T02:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4bdc7b8d-9c05-4f7c-b5ef-d7049c440f84", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-03T02:19:49.000Z" - }, - "end": { - "$date": "2022-02-03T02:26:04.000Z" - }, - "events": [ - { - "uuid": "f8043acb-8111-4f3e-ac35-34885afd9f61", - "start": { - "$date": "2022-02-03T02:19:49.000Z" - }, - "end": { - "$date": "2022-02-03T02:26:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "59c7fa9f-9532-4059-bb48-0ebeac26054e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T02:22:21.000Z" - }, - "end": { - "$date": "2022-02-03T02:42:21.000Z" - }, - "events": [ - { - "uuid": "a2b327fb-e4a4-489a-93f5-5522c0de1d11", - "start": { - "$date": "2022-02-03T02:22:21.000Z" - }, - "end": { - "$date": "2022-02-03T02:42:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63044479-5969-4d02-9451-90ebf368ef09", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-03T02:20:43.000Z" - }, - "end": { - "$date": "2022-02-03T02:29:58.000Z" - }, - "events": [ - { - "uuid": "1ca02819-5c6c-443e-9202-95520cbaed14", - "start": { - "$date": "2022-02-03T02:20:43.000Z" - }, - "end": { - "$date": "2022-02-03T02:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0e970ae-6dd3-49e1-973d-15cb389eda95", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-03T02:37:39.000Z" - }, - "end": { - "$date": "2022-02-03T02:51:36.000Z" - }, - "events": [ - { - "uuid": "4bd195ee-82af-42e3-8dd2-2399df371e01", - "start": { - "$date": "2022-02-03T02:37:39.000Z" - }, - "end": { - "$date": "2022-02-03T02:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "21fed5de-0278-4e78-9f88-4666424547ac", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-03T02:39:50.000Z" - }, - "end": { - "$date": "2022-02-03T03:17:25.000Z" - }, - "events": [ - { - "uuid": "cef211d4-f407-4fb7-8ce9-7d5eabb16360", - "start": { - "$date": "2022-02-03T02:39:50.000Z" - }, - "end": { - "$date": "2022-02-03T03:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "53a58377-63cd-4feb-84bb-f794588fd490", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-03T02:40:12.000Z" - }, - "end": { - "$date": "2022-02-03T03:55:33.000Z" - }, - "events": [ - { - "uuid": "9dd1a202-eb15-4195-984e-52c9ec67e125", - "start": { - "$date": "2022-02-03T02:40:12.000Z" - }, - "end": { - "$date": "2022-02-03T03:05:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "455955c3-42e6-4b46-8f93-1e9e88c56ef9", - "start": { - "$date": "2022-02-03T03:05:12.000Z" - }, - "end": { - "$date": "2022-02-03T03:10:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "71b23566-d35e-4c9d-a856-323a6a98c0bc", - "start": { - "$date": "2022-02-03T03:10:12.000Z" - }, - "end": { - "$date": "2022-02-03T03:20:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "27595e6e-76fc-4258-8ed4-742dde6ae1af", - "start": { - "$date": "2022-02-03T03:20:12.000Z" - }, - "end": { - "$date": "2022-02-03T03:29:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c99f3842-f1c3-4f7a-b9d9-bcf325706772", - "start": { - "$date": "2022-02-03T03:29:12.000Z" - }, - "end": { - "$date": "2022-02-03T03:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "15731806-23ae-4987-8bdd-5ead644b679b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T02:46:58.000Z" - }, - "end": { - "$date": "2022-02-03T03:18:45.000Z" - }, - "events": [ - { - "uuid": "37d57bf7-2ce4-41f8-bedb-1ad51e8b5361", - "start": { - "$date": "2022-02-03T02:46:58.000Z" - }, - "end": { - "$date": "2022-02-03T03:18:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9abde2a-21fb-441b-a27f-78dc0111a735", - "uuid": "29a3a6dc-d11f-4ca9-8c73-8aebafd4b872", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-03T03:43:38.000Z" - }, - "end": { - "$date": "2022-02-03T03:47:42.000Z" - }, - "events": [ - { - "uuid": "e9372566-c193-43c9-8473-d4ffbfc12a4d", - "start": { - "$date": "2022-02-03T03:43:38.000Z" - }, - "end": { - "$date": "2022-02-03T03:47:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "63b344c8-5f6a-46a8-9811-1a006c9c9969", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-03T06:00:38.000Z" - }, - "end": { - "$date": "2022-02-03T07:52:22.000Z" - }, - "events": [ - { - "uuid": "b9133463-9e1e-4de3-b310-4946940a927f", - "start": { - "$date": "2022-02-03T06:00:38.000Z" - }, - "end": { - "$date": "2022-02-03T08:39:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ba3e4c9-a201-4d9d-a316-d2f56245fb2b", - "start": { - "$date": "2022-02-03T08:39:38.000Z" - }, - "end": { - "$date": "2022-02-03T08:58:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ecb8ec03-f3e9-4189-b8cf-eaac71f5a31a", - "start": { - "$date": "2022-02-03T08:58:38.000Z" - }, - "end": { - "$date": "2022-02-03T09:00:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b8854702-bbb7-46e3-a453-8de54cf6865b", - "start": { - "$date": "2022-02-03T09:00:38.000Z" - }, - "end": { - "$date": "2022-02-03T10:01:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d630dbcf-8f6b-4b74-8ad5-1e9f908e486c", - "start": { - "$date": "2022-02-03T10:01:38.000Z" - }, - "end": { - "$date": "2022-02-03T10:03:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f082bf85-11dd-4c14-a8f5-c824a2b84fde", - "start": { - "$date": "2022-02-03T10:03:38.000Z" - }, - "end": { - "$date": "2022-02-03T07:52:22.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f4341ae5-f8d3-4bbe-bbc4-2784102ba3aa", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-03T03:48:49.000Z" - }, - "end": { - "$date": "2022-02-03T05:35:55.000Z" - }, - "events": [ - { - "uuid": "ee2ae410-af2c-4f53-a916-ccab434966bb", - "start": { - "$date": "2022-02-03T03:48:49.000Z" - }, - "end": { - "$date": "2022-02-03T05:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "715b2c3e-8b08-44e4-a340-399ef6077416", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T03:59:30.000Z" - }, - "end": { - "$date": "2022-02-03T04:35:12.000Z" - }, - "events": [ - { - "uuid": "d6daf91f-4025-479c-91b4-9c390c7ee969", - "start": { - "$date": "2022-02-03T03:59:30.000Z" - }, - "end": { - "$date": "2022-02-03T04:35:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4a8343fe-b846-4ec0-8fc2-8eca3c3a9043", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-03T04:00:39.000Z" - }, - "end": { - "$date": "2022-02-03T07:06:12.000Z" - }, - "events": [ - { - "uuid": "3ed94976-1cdf-4ff1-b53c-36a10fb3d61f", - "start": { - "$date": "2022-02-03T04:00:39.000Z" - }, - "end": { - "$date": "2022-02-03T07:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e57a599-604a-4c54-8bab-934ea75f2978", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T05:09:58.000Z" - }, - "end": { - "$date": "2022-02-03T05:10:06.000Z" - }, - "events": [ - { - "uuid": "07e02a3f-4010-4c7b-91f3-a56a4d2ca81c", - "start": { - "$date": "2022-02-03T05:09:58.000Z" - }, - "end": { - "$date": "2022-02-03T05:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "1dde8999-b1f1-443e-b01f-6f5d69361c59", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-03T04:41:26.000Z" - }, - "end": { - "$date": "2022-02-03T05:23:01.000Z" - }, - "events": [ - { - "uuid": "0e2b3d63-13d7-4ec2-848f-1c7cab9058eb", - "start": { - "$date": "2022-02-03T04:41:26.000Z" - }, - "end": { - "$date": "2022-02-03T05:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d920aa80-d320-4af0-a6ca-5ec0d6b87879", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T05:10:46.000Z" - }, - "end": { - "$date": "2022-02-03T05:42:20.000Z" - }, - "events": [ - { - "uuid": "b08bfb04-4961-4186-adba-300bb3dbb757", - "start": { - "$date": "2022-02-03T05:10:46.000Z" - }, - "end": { - "$date": "2022-02-03T05:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "2172dc73-dd6e-44e2-9dd5-2ef7944b4ec1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-03T05:41:48.000Z" - }, - "end": { - "$date": "2022-02-03T05:45:04.000Z" - }, - "events": [ - { - "uuid": "4821a997-453f-4a67-8fa2-6771fa0efdc6", - "start": { - "$date": "2022-02-03T05:41:48.000Z" - }, - "end": { - "$date": "2022-02-03T05:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44f893b6-c2b7-4418-afc7-afbb7cc0f389", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T05:43:20.000Z" - }, - "end": { - "$date": "2022-02-03T06:17:50.000Z" - }, - "events": [ - { - "uuid": "c7a1d386-6fe4-4310-831e-b1afddf1ebf2", - "start": { - "$date": "2022-02-03T05:43:20.000Z" - }, - "end": { - "$date": "2022-02-03T06:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cde16c7-12a7-49aa-9802-53760b6d1826", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-03T05:45:20.000Z" - }, - "end": { - "$date": "2022-02-03T06:06:57.000Z" - }, - "events": [ - { - "uuid": "c49dad3d-4ac3-4131-8264-d4d0448119d6", - "start": { - "$date": "2022-02-03T05:45:20.000Z" - }, - "end": { - "$date": "2022-02-03T06:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "839bff9d-6491-41f3-9980-4df19fd46ef7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-03T06:13:14.000Z" - }, - "end": { - "$date": "2022-02-03T06:48:14.000Z" - }, - "events": [ - { - "uuid": "45595b0f-71f1-4b3f-9059-405993e6c574", - "start": { - "$date": "2022-02-03T06:13:14.000Z" - }, - "end": { - "$date": "2022-02-03T06:48:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b28d96c-e5ea-4ee5-a1e1-a752eebb0d09", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-03T06:15:02.000Z" - }, - "end": { - "$date": "2022-02-03T06:24:44.000Z" - }, - "events": [ - { - "uuid": "db3d786c-4a88-4783-9d6c-36792b2e880d", - "start": { - "$date": "2022-02-03T06:15:02.000Z" - }, - "end": { - "$date": "2022-02-03T06:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "031614cc-bdbb-4509-8e4a-1991804aa6b5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T06:22:22.000Z" - }, - "end": { - "$date": "2022-02-03T06:40:13.000Z" - }, - "events": [ - { - "uuid": "b7e37949-07eb-44d9-8c15-305c73882765", - "start": { - "$date": "2022-02-03T06:22:22.000Z" - }, - "end": { - "$date": "2022-02-03T06:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6442e05-96da-4d87-9c6f-b184f5e7c431", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T06:41:33.000Z" - }, - "end": { - "$date": "2022-02-03T07:10:52.000Z" - }, - "events": [ - { - "uuid": "18621ecd-5a8c-428a-8f5f-fa6c55d7d7fc", - "start": { - "$date": "2022-02-03T06:41:33.000Z" - }, - "end": { - "$date": "2022-02-03T07:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff412aca-75d1-48a7-8477-6f20481ef641", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-03T07:11:57.000Z" - }, - "end": { - "$date": "2022-02-03T07:39:28.000Z" - }, - "events": [ - { - "uuid": "26623889-d93f-49e1-976c-77dd157c503a", - "start": { - "$date": "2022-02-03T07:11:57.000Z" - }, - "end": { - "$date": "2022-02-03T07:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "018973b8-d3b0-4faa-9132-ce7cb17faa08", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-03T10:05:57.000Z" - }, - "end": { - "$date": "2022-02-03T10:48:16.000Z" - }, - "events": [ - { - "uuid": "847a04f2-9180-4562-9cb6-ba837eb2137b", - "start": { - "$date": "2022-02-03T10:05:57.000Z" - }, - "end": { - "$date": "2022-02-03T10:48:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c0e38a0d-82ee-47e8-8f0d-c1962dc061f4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-03T11:24:22.000Z" - }, - "end": { - "$date": "2022-02-03T12:37:40.000Z" - }, - "events": [ - { - "uuid": "fc3b8661-c136-4eb3-91e7-a1e171fac406", - "start": { - "$date": "2022-02-03T11:24:22.000Z" - }, - "end": { - "$date": "2022-02-03T12:37:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58f6b179-dcfa-4d02-9c0d-d45f84ab1928", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-03T13:00:17.000Z" - }, - "end": { - "$date": "2022-02-03T13:03:40.000Z" - }, - "events": [ - { - "uuid": "0dddc5ce-66d3-4287-b123-9a2b99673b3c", - "start": { - "$date": "2022-02-03T13:00:17.000Z" - }, - "end": { - "$date": "2022-02-03T13:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2bf1adc9-78e9-4b28-88de-7b91b05d623b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-03T13:24:31.000Z" - }, - "end": { - "$date": "2022-02-03T13:56:58.000Z" - }, - "events": [ - { - "uuid": "16e2a2b3-c038-4faa-b1bf-add471e85736", - "start": { - "$date": "2022-02-03T13:24:31.000Z" - }, - "end": { - "$date": "2022-02-03T13:56:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "7cba8b3c-6fa0-4e04-a5f7-e4360668ceb1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-03T17:02:01.000Z" - }, - "end": { - "$date": "2022-02-03T18:22:19.000Z" - }, - "events": [ - { - "uuid": "b880133f-d1b0-46aa-b298-8b9f48e4f83c", - "start": { - "$date": "2022-02-03T17:02:01.000Z" - }, - "end": { - "$date": "2022-02-03T18:22:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "64b85e02-c02b-4c88-ac17-30f32ada18cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-03T18:16:19.000Z" - }, - "end": { - "$date": "2022-02-03T22:06:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-02-03T18:16:19.000Z" - }, - "end": { - "$date": "2022-02-03T22:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6e4e077-ef29-456a-9d70-3da644d9020c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-03T18:18:22.000Z" - }, - "end": { - "$date": "2022-02-03T18:32:23.000Z" - }, - "events": [ - { - "uuid": "1a5e821d-52c1-40f1-ad8f-b41ca30c0bd0", - "start": { - "$date": "2022-02-03T18:18:22.000Z" - }, - "end": { - "$date": "2022-02-03T18:32:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "9bdfd8d5-ed33-4cb6-a635-5c0a95c19f24", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-03T20:48:18.000Z" - }, - "end": { - "$date": "2022-02-03T21:23:35.000Z" - }, - "events": [ - { - "uuid": "b286f05c-fde3-483b-8973-e574c26c9a55", - "start": { - "$date": "2022-02-03T20:48:18.000Z" - }, - "end": { - "$date": "2022-02-03T21:23:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "490a7717-f3b5-4415-b43b-7f3dabb93832", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-03T22:32:04.000Z" - }, - "end": { - "$date": "2022-02-03T22:46:11.000Z" - }, - "events": [ - { - "uuid": "24f9c749-9b2e-43f4-9cd9-121d2e07a0e5", - "start": { - "$date": "2022-02-03T22:32:04.000Z" - }, - "end": { - "$date": "2022-02-03T22:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04b325f2-2522-462d-9f9f-06c2abb87684", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-03T22:47:36.000Z" - }, - "end": { - "$date": "2022-02-03T23:08:12.000Z" - }, - "events": [ - { - "uuid": "015462a2-7a80-4698-8f2b-f0a5f56efe70", - "start": { - "$date": "2022-02-03T22:47:36.000Z" - }, - "end": { - "$date": "2022-02-03T23:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a60cd692-5af6-462e-97f2-a380491f0b72", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-03T23:11:24.000Z" - }, - "end": { - "$date": "2022-02-03T23:11:29.000Z" - }, - "events": [ - { - "uuid": "a9d3d24f-e341-4833-897d-6893e3fb198e", - "start": { - "$date": "2022-02-03T23:11:24.000Z" - }, - "end": { - "$date": "2022-02-03T23:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f965c777-2515-4b3b-acc3-17a825449965", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-03T23:24:44.000Z" - }, - "end": { - "$date": "2022-02-03T23:26:15.000Z" - }, - "events": [ - { - "uuid": "abc9c685-4e69-4ef2-aba3-b1f2bf05b8c9", - "start": { - "$date": "2022-02-03T23:24:44.000Z" - }, - "end": { - "$date": "2022-02-03T23:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "0063b3f7-bac1-4b96-91ef-a26c3590b2f5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-10T17:40:57.000Z" - }, - "end": { - "$date": "2022-02-10T17:42:57.000Z" - }, - "events": [ - { - "uuid": "1ff266ee-2aaf-49a4-9aed-78d17c232f00", - "start": { - "$date": "2022-02-10T17:40:57.000Z" - }, - "end": { - "$date": "2022-02-10T17:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1d5dae94-0c49-46d8-ae79-6a3fb147c835", - "uuid": "86bab97b-f2d1-4880-953f-a99c0e65c207", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-10T17:54:44.000Z" - }, - "end": { - "$date": "2022-02-10T18:01:39.000Z" - }, - "events": [ - { - "uuid": "da6ba0c2-b66f-45b7-86ed-73179d139a28", - "start": { - "$date": "2022-02-10T17:54:44.000Z" - }, - "end": { - "$date": "2022-02-10T18:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "eac667e5-19c3-4392-89e5-ed3ff341e05a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T17:59:00.000Z" - }, - "end": { - "$date": "2022-02-10T19:48:31.000Z" - }, - "events": [ - { - "uuid": "e71ed560-b45c-4f83-befa-99aff14599a8", - "start": { - "$date": "2022-02-10T17:59:00.000Z" - }, - "end": { - "$date": "2022-02-10T18:43:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a717dcc-07ad-4048-9737-33af1933e97d", - "start": { - "$date": "2022-02-10T18:43:00.000Z" - }, - "end": { - "$date": "2022-02-10T18:44:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "84679418-27ff-4d64-b1a7-184f8c601b63", - "start": { - "$date": "2022-02-10T18:44:00.000Z" - }, - "end": { - "$date": "2022-02-10T19:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f1b9ef63-ec8f-49b2-afc0-6a70ae3273ff", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-10T18:03:24.000Z" - }, - "end": { - "$date": "2022-02-10T18:44:15.000Z" - }, - "events": [ - { - "uuid": "27a2f574-0e2b-47bb-8eb3-6f668a1500d5", - "start": { - "$date": "2022-02-10T18:03:24.000Z" - }, - "end": { - "$date": "2022-02-10T18:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f29fbc4e-20ce-49c6-8159-8c68e07156f1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T19:52:35.000Z" - }, - "end": { - "$date": "2022-02-10T20:18:27.000Z" - }, - "events": [ - { - "uuid": "19381be9-a163-4c5a-aafc-f98426d58a37", - "start": { - "$date": "2022-02-10T19:52:35.000Z" - }, - "end": { - "$date": "2022-02-10T20:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46151110-a98e-4c17-a1d2-67c49b335318", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T20:19:06.000Z" - }, - "end": { - "$date": "2022-02-10T20:20:18.000Z" - }, - "events": [ - { - "uuid": "1f321ac4-ab00-429b-a0e7-6ae8ca23d336", - "start": { - "$date": "2022-02-10T20:19:06.000Z" - }, - "end": { - "$date": "2022-02-10T20:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ebe35df-230e-43ef-826b-1680db103b81", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T20:32:12.000Z" - }, - "end": { - "$date": "2022-02-10T21:01:28.000Z" - }, - "events": [ - { - "uuid": "a2b0bf4e-83e3-4164-90e7-f7654260123c", - "start": { - "$date": "2022-02-10T20:32:12.000Z" - }, - "end": { - "$date": "2022-02-10T21:01:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "148ff8ed-a981-45c8-9d3f-72db2a8c076e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T21:27:36.000Z" - }, - "end": { - "$date": "2022-02-10T22:01:12.000Z" - }, - "events": [ - { - "uuid": "a099a6c6-c6de-46d0-bd37-02e244180c7b", - "start": { - "$date": "2022-02-10T21:27:36.000Z" - }, - "end": { - "$date": "2022-02-10T22:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e1a4322f-97c6-4a4d-b450-2ef78692d8c2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-10T21:47:48.000Z" - }, - "end": { - "$date": "2022-02-10T22:56:53.000Z" - }, - "events": [ - { - "uuid": "8e346876-6403-453c-9485-79f35ea204f4", - "start": { - "$date": "2022-02-10T21:47:48.000Z" - }, - "end": { - "$date": "2022-02-10T22:56:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "546f6258-ef21-46e5-8f32-da833411b2b0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T22:03:14.000Z" - }, - "end": { - "$date": "2022-02-10T22:20:02.000Z" - }, - "events": [ - { - "uuid": "e1018518-c5ec-4e9a-b5ab-8884ab9b8987", - "start": { - "$date": "2022-02-10T22:03:14.000Z" - }, - "end": { - "$date": "2022-02-10T22:20:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "31f3dcdd-f20b-44cc-b935-0964a19e46e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-10T22:09:26.000Z" - }, - "end": { - "$date": "2022-02-10T22:17:42.000Z" - }, - "events": [ - { - "uuid": "f13ab972-4572-448f-ade5-584632199254", - "start": { - "$date": "2022-02-10T22:09:26.000Z" - }, - "end": { - "$date": "2022-02-10T22:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8f5371f2-ba8d-440d-af11-42c9556e823a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-10T22:22:11.000Z" - }, - "end": { - "$date": "2022-02-10T22:44:48.000Z" - }, - "events": [ - { - "uuid": "59f15fd6-3985-4ca7-8859-d7aaf65709d9", - "start": { - "$date": "2022-02-10T22:22:11.000Z" - }, - "end": { - "$date": "2022-02-10T22:44:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e3a6c657-a005-433a-ad9a-b0b3a745ac1d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-10T22:24:54.000Z" - }, - "end": { - "$date": "2022-02-10T23:00:20.000Z" - }, - "events": [ - { - "uuid": "01a8fe7e-85ae-439a-a0be-0b34da57d6cb", - "start": { - "$date": "2022-02-10T22:24:54.000Z" - }, - "end": { - "$date": "2022-02-10T23:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e92bfc82-1791-4e3a-acfb-2992910ac966", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-10T22:46:11.000Z" - }, - "end": { - "$date": "2022-02-10T22:51:09.000Z" - }, - "events": [ - { - "uuid": "bb4b8d22-3234-4e8d-9a71-9d083476c244", - "start": { - "$date": "2022-02-10T22:46:11.000Z" - }, - "end": { - "$date": "2022-02-10T22:51:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dfd16748-2314-42ab-8ad8-cb8dce9f29f5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-10T23:29:43.000Z" - }, - "end": { - "$date": "2022-02-10T23:59:13.000Z" - }, - "events": [ - { - "uuid": "98c44a93-b418-4ac7-98ba-165d1862df34", - "start": { - "$date": "2022-02-10T23:29:43.000Z" - }, - "end": { - "$date": "2022-02-10T23:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "68a423f1-e4dd-4eb5-9f5a-2d17bf6ce36b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-11T01:04:12.000Z" - }, - "end": { - "$date": "2022-02-11T02:14:45.000Z" - }, - "events": [ - { - "uuid": "60d8ed17-f44b-479f-9562-5fa8e84627c9", - "start": { - "$date": "2022-02-11T01:04:12.000Z" - }, - "end": { - "$date": "2022-02-11T02:14:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ceb7b468-af73-48cb-8cb9-6cfae44f2f51", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T00:01:44.000Z" - }, - "end": { - "$date": "2022-02-11T00:34:52.000Z" - }, - "events": [ - { - "uuid": "48c967c2-e8f3-471e-a047-334e71e20cbd", - "start": { - "$date": "2022-02-11T00:01:44.000Z" - }, - "end": { - "$date": "2022-02-11T00:34:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8e81e780-c9d7-42db-8385-9af0f67fbc06", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-11T00:16:43.000Z" - }, - "end": { - "$date": "2022-02-11T05:35:02.000Z" - }, - "events": [ - { - "uuid": "b0a9aee4-f5af-4c05-a515-4f8a93a0e240", - "start": { - "$date": "2022-02-11T00:16:43.000Z" - }, - "end": { - "$date": "2022-02-11T01:26:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ea273ea-1724-4265-872e-0627d3ee0f00", - "start": { - "$date": "2022-02-11T01:26:43.000Z" - }, - "end": { - "$date": "2022-02-11T01:31:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b6b89ce-15db-47fa-8188-fe1a9f8f1299", - "start": { - "$date": "2022-02-11T01:31:43.000Z" - }, - "end": { - "$date": "2022-02-11T01:41:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cbd89e6d-fc4b-4e9c-9ce0-457a4603f53f", - "start": { - "$date": "2022-02-11T01:41:43.000Z" - }, - "end": { - "$date": "2022-02-11T01:52:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8b1ca8db-dcba-4f70-afc3-cb90822ce222", - "start": { - "$date": "2022-02-11T01:52:43.000Z" - }, - "end": { - "$date": "2022-02-11T02:08:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46acb6d0-2335-42d1-91c8-245198f8b712", - "start": { - "$date": "2022-02-11T02:08:43.000Z" - }, - "end": { - "$date": "2022-02-11T05:02:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "30cc1212-929a-481f-8fab-81ae6a9278a4", - "start": { - "$date": "2022-02-11T05:02:43.000Z" - }, - "end": { - "$date": "2022-02-11T05:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52f00172-23be-462e-aa79-5e5fd570f970", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T00:38:47.000Z" - }, - "end": { - "$date": "2022-02-11T01:20:08.000Z" - }, - "events": [ - { - "uuid": "e91c8fce-dd47-4e93-b356-10f5f95dd273", - "start": { - "$date": "2022-02-11T00:38:47.000Z" - }, - "end": { - "$date": "2022-02-11T01:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df71bece-7a8a-4d64-970a-5512d479c35b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T01:22:58.000Z" - }, - "end": { - "$date": "2022-02-11T02:04:30.000Z" - }, - "events": [ - { - "uuid": "70d73bb8-3450-4bff-8b81-1d7e166681a5", - "start": { - "$date": "2022-02-11T01:22:58.000Z" - }, - "end": { - "$date": "2022-02-11T02:04:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2477f0a3-907d-476f-ae7f-8696bae6ad2c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-11T01:40:05.000Z" - }, - "end": { - "$date": "2022-02-11T01:42:00.000Z" - }, - "events": [ - { - "uuid": "dcb717f4-4ef8-4b46-8f9f-a3fc986344a4", - "start": { - "$date": "2022-02-11T01:40:05.000Z" - }, - "end": { - "$date": "2022-02-11T01:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d107c102-6212-4ef4-b6c2-6dccbd89e9b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T02:11:07.000Z" - }, - "end": { - "$date": "2022-02-11T02:50:24.000Z" - }, - "events": [ - { - "uuid": "eb42c5f1-07fa-4424-a844-bfa630fd8feb", - "start": { - "$date": "2022-02-11T02:11:07.000Z" - }, - "end": { - "$date": "2022-02-11T02:50:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c878add1-be7c-4711-a40a-6c2586ef6bfb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-11T02:15:12.000Z" - }, - "end": { - "$date": "2022-02-11T03:14:33.000Z" - }, - "events": [ - { - "uuid": "2d9262a8-8e3b-4938-b75d-2c6db3212825", - "start": { - "$date": "2022-02-11T02:15:12.000Z" - }, - "end": { - "$date": "2022-02-11T03:14:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "f2dc96a2-49b2-4213-a660-594215fd7bff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-11T02:15:15.000Z" - }, - "end": { - "$date": "2022-02-11T04:34:51.000Z" - }, - "events": [ - { - "uuid": "edc596e4-7bb6-4e27-9710-59f0dcb2b931", - "start": { - "$date": "2022-02-11T02:15:15.000Z" - }, - "end": { - "$date": "2022-02-11T04:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53019422-402e-4962-9348-a9abb3c47305", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T02:18:06.000Z" - }, - "end": { - "$date": "2022-02-11T02:57:37.000Z" - }, - "events": [ - { - "uuid": "0d292a56-8cde-4c06-a7ef-69b9fc607c81", - "start": { - "$date": "2022-02-11T02:18:06.000Z" - }, - "end": { - "$date": "2022-02-11T02:57:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "03b43ec3-74bb-4f8d-b64e-ae2c8e62a85d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-11T02:06:05.000Z" - }, - "end": { - "$date": "2022-02-11T04:55:27.000Z" - }, - "events": [ - { - "uuid": "0bb5cbfd-4bde-424b-83f7-06e3911eedc0", - "start": { - "$date": "2022-02-11T02:06:05.000Z" - }, - "end": { - "$date": "2022-02-11T04:55:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbd96340-c237-4c61-ab5b-12a14254835d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T03:01:52.000Z" - }, - "end": { - "$date": "2022-02-11T03:21:59.000Z" - }, - "events": [ - { - "uuid": "5b55378c-b7e3-4d5e-bf5e-120703173746", - "start": { - "$date": "2022-02-11T03:01:52.000Z" - }, - "end": { - "$date": "2022-02-11T03:21:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0e2d68bc-fda5-41aa-84d2-9579d1d6729c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-11T03:14:43.000Z" - }, - "end": { - "$date": "2022-02-11T03:21:08.000Z" - }, - "events": [ - { - "uuid": "e9afcedb-6856-4fe8-845d-058bdf063c98", - "start": { - "$date": "2022-02-11T03:14:43.000Z" - }, - "end": { - "$date": "2022-02-11T03:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f5ebc24-d0ad-4d68-8a18-5cd68fe0cde8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T03:24:39.000Z" - }, - "end": { - "$date": "2022-02-11T03:43:40.000Z" - }, - "events": [ - { - "uuid": "b6b5b355-e0ea-4ffb-9357-a2424edf40ee", - "start": { - "$date": "2022-02-11T03:24:39.000Z" - }, - "end": { - "$date": "2022-02-11T03:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "725fc78a-953e-4fd9-b3c5-b2cda86bf15e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T03:46:10.000Z" - }, - "end": { - "$date": "2022-02-11T04:02:22.000Z" - }, - "events": [ - { - "uuid": "ce87111b-768d-40e9-9323-0db2ac257e84", - "start": { - "$date": "2022-02-11T03:46:10.000Z" - }, - "end": { - "$date": "2022-02-11T04:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f57b4a65-7d56-4127-80cc-764138d6f756", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T03:45:37.000Z" - }, - "end": { - "$date": "2022-02-11T03:49:33.000Z" - }, - "events": [ - { - "uuid": "70a03f34-ed6a-4226-9555-145ded085be9", - "start": { - "$date": "2022-02-11T03:45:37.000Z" - }, - "end": { - "$date": "2022-02-11T03:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "146ee54f-9d8a-4a48-8f1c-e27c87fe1dd2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T03:51:28.000Z" - }, - "end": { - "$date": "2022-02-11T04:13:30.000Z" - }, - "events": [ - { - "uuid": "6963f1f2-2c9d-45b2-a1ba-0f9dcc31a882", - "start": { - "$date": "2022-02-11T03:51:28.000Z" - }, - "end": { - "$date": "2022-02-11T04:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dae32fee-f9c4-464f-9668-a12380a13676", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-11T04:01:26.000Z" - }, - "end": { - "$date": "2022-02-11T05:06:03.000Z" - }, - "events": [ - { - "uuid": "3e040454-2b97-4be1-a49b-c5d4f075ec0a", - "start": { - "$date": "2022-02-11T04:01:26.000Z" - }, - "end": { - "$date": "2022-02-11T05:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c49bc02d-b02a-47ff-8705-ca2683bf71af", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T04:16:35.000Z" - }, - "end": { - "$date": "2022-02-11T04:29:35.000Z" - }, - "events": [ - { - "uuid": "8ad3ed58-8593-4a01-a7ff-7465879f6809", - "start": { - "$date": "2022-02-11T04:16:35.000Z" - }, - "end": { - "$date": "2022-02-11T04:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "59436253-c0da-473a-834b-0258cc51d8ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-11T04:19:59.000Z" - }, - "end": { - "$date": "2022-02-11T08:38:12.000Z" - }, - "events": [ - { - "uuid": "376d7d8a-462f-4167-b642-01c45ada6656", - "start": { - "$date": "2022-02-11T04:19:59.000Z" - }, - "end": { - "$date": "2022-02-11T08:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b00e0f5-2d59-44b3-8804-46e83305982d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T04:32:26.000Z" - }, - "end": { - "$date": "2022-02-11T04:55:51.000Z" - }, - "events": [ - { - "uuid": "b2e8c0ff-09ab-483b-91db-e0839c34c2cc", - "start": { - "$date": "2022-02-11T04:32:26.000Z" - }, - "end": { - "$date": "2022-02-11T04:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e7002762-a6ba-4496-9277-73a6d6fde81d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-11T04:44:50.000Z" - }, - "end": { - "$date": "2022-02-11T05:22:15.000Z" - }, - "events": [ - { - "uuid": "f442311b-1a38-4b3f-99d0-13d91ab24fd5", - "start": { - "$date": "2022-02-11T04:44:50.000Z" - }, - "end": { - "$date": "2022-02-11T05:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c8d63563-290b-4ae6-8319-20df46a64148", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-11T04:55:43.000Z" - }, - "end": { - "$date": "2022-02-11T07:30:47.000Z" - }, - "events": [ - { - "uuid": "0805149a-8152-458e-b1ee-8aba5c83b977", - "start": { - "$date": "2022-02-11T04:55:43.000Z" - }, - "end": { - "$date": "2022-02-11T07:30:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e38ab3a-34ac-4398-8b6c-c4d513db432e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-11T05:29:46.000Z" - }, - "end": { - "$date": "2022-02-11T05:46:56.000Z" - }, - "events": [ - { - "uuid": "d8a0e139-3d6b-4324-abe1-de24b1a0b51d", - "start": { - "$date": "2022-02-11T05:29:46.000Z" - }, - "end": { - "$date": "2022-02-11T05:46:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "11821f98-bb0f-4ee7-a5c0-ce3c5a703c5e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-11T05:39:29.000Z" - }, - "end": { - "$date": "2022-02-11T07:05:57.000Z" - }, - "events": [ - { - "uuid": "70ad7293-238b-4315-826c-df7b93987922", - "start": { - "$date": "2022-02-11T05:39:29.000Z" - }, - "end": { - "$date": "2022-02-11T07:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "341cd617-ed48-49f3-bc8e-49524c4ad661", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T05:59:49.000Z" - }, - "end": { - "$date": "2022-02-11T06:36:25.000Z" - }, - "events": [ - { - "uuid": "ba9dcd32-44a2-449a-af91-b45eb05c7012", - "start": { - "$date": "2022-02-11T05:59:49.000Z" - }, - "end": { - "$date": "2022-02-11T06:36:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "843632b2-c0f5-4d75-974a-98fec091d8c9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-11T06:01:07.000Z" - }, - "end": { - "$date": "2022-02-11T06:38:38.000Z" - }, - "events": [ - { - "uuid": "930cbf59-9cc8-4e8c-a622-281a812d2594", - "start": { - "$date": "2022-02-11T06:01:07.000Z" - }, - "end": { - "$date": "2022-02-11T06:38:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d722a959-d1a9-43cc-a54d-785b9620cae4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T06:46:41.000Z" - }, - "end": { - "$date": "2022-02-11T07:19:21.000Z" - }, - "events": [ - { - "uuid": "b54617a9-9254-43e2-9271-f421c94725b5", - "start": { - "$date": "2022-02-11T06:46:41.000Z" - }, - "end": { - "$date": "2022-02-11T07:19:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f83b91a2-6bf5-4a47-8554-0d0d42324c9d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-11T06:40:38.000Z" - }, - "end": { - "$date": "2022-02-11T06:58:33.000Z" - }, - "events": [ - { - "uuid": "cfe9593b-8ce9-4898-bf85-e15c4c8db68a", - "start": { - "$date": "2022-02-11T06:40:38.000Z" - }, - "end": { - "$date": "2022-02-11T06:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9f7783e4-adca-4750-8577-2be681caac14", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-11T07:04:59.000Z" - }, - "end": { - "$date": "2022-02-11T07:20:11.000Z" - }, - "events": [ - { - "uuid": "671c64d7-01b6-4414-bf03-d774ba092b90", - "start": { - "$date": "2022-02-11T07:04:59.000Z" - }, - "end": { - "$date": "2022-02-11T07:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3779b71f-55c5-45df-8d5c-257aaefc7a74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T07:38:04.000Z" - }, - "end": { - "$date": "2022-02-11T08:02:38.000Z" - }, - "events": [ - { - "uuid": "41da0413-b2e5-4309-8c91-1380324eaab2", - "start": { - "$date": "2022-02-11T07:38:04.000Z" - }, - "end": { - "$date": "2022-02-11T08:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "21f5ff5e-87f9-4d29-9e69-355cf816b97d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-11T07:23:14.000Z" - }, - "end": { - "$date": "2022-02-11T07:46:50.000Z" - }, - "events": [ - { - "uuid": "d953902d-1081-415d-850f-223dd62f80a9", - "start": { - "$date": "2022-02-11T07:23:14.000Z" - }, - "end": { - "$date": "2022-02-11T07:46:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "099b8c69-f455-45b8-8510-069e217a332c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-11T15:48:08.000Z" - }, - "end": { - "$date": "2022-02-11T16:56:18.000Z" - }, - "events": [ - { - "uuid": "048e7f45-44f6-4a15-8c2e-c9ebaf37978a", - "start": { - "$date": "2022-02-11T15:48:08.000Z" - }, - "end": { - "$date": "2022-02-11T16:56:18.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "84a64e57-0a83-486d-ac3b-95051ecde9f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-11T17:26:54.000Z" - }, - "end": { - "$date": "2022-02-11T17:40:55.000Z" - }, - "events": [ - { - "uuid": "d23896ea-1324-44b4-b77c-b44a8c0b6e36", - "start": { - "$date": "2022-02-11T17:26:54.000Z" - }, - "end": { - "$date": "2022-02-11T17:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c253ff2-42c8-45f2-8d58-358d05ecf4fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-11T17:43:35.000Z" - }, - "end": { - "$date": "2022-02-11T18:09:41.000Z" - }, - "events": [ - { - "uuid": "dd0cc3ad-b645-41a7-9da1-b6feac43dd6d", - "start": { - "$date": "2022-02-11T17:43:35.000Z" - }, - "end": { - "$date": "2022-02-11T18:09:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eea3bfdb-d3c2-406a-9a6d-258433515a01", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-11T17:43:30.000Z" - }, - "end": { - "$date": "2022-02-11T18:09:35.000Z" - }, - "events": [ - { - "uuid": "ed9d2c87-22db-496a-b626-ce061979997f", - "start": { - "$date": "2022-02-11T17:43:30.000Z" - }, - "end": { - "$date": "2022-02-11T18:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "beb57d8a-2ca8-4993-95f0-52d26aca7e32", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-11T18:02:17.000Z" - }, - "end": { - "$date": "2022-02-11T18:04:08.000Z" - }, - "events": [ - { - "uuid": "3eee9efd-edfd-4dae-ac9c-e95765aa252a", - "start": { - "$date": "2022-02-11T18:02:17.000Z" - }, - "end": { - "$date": "2022-02-11T18:04:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5488b8ea-b6c8-47c6-9dea-8ade82f8857e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-11T18:11:25.000Z" - }, - "end": { - "$date": "2022-02-12T01:09:13.000Z" - }, - "events": [ - { - "uuid": "6884c613-b950-44c2-a917-1d7dd0444940", - "start": { - "$date": "2022-02-11T18:11:25.000Z" - }, - "end": { - "$date": "2022-02-11T20:35:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "96459131-05f2-47ab-9da7-c4c9af367962", - "start": { - "$date": "2022-02-11T20:35:25.000Z" - }, - "end": { - "$date": "2022-02-11T20:37:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f730ed0-0c35-4381-968f-4f32f110011f", - "start": { - "$date": "2022-02-11T20:37:25.000Z" - }, - "end": { - "$date": "2022-02-12T01:09:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2d0dff15-59c7-4d9c-964c-af10527aa5eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-11T19:03:10.000Z" - }, - "end": { - "$date": "2022-02-11T19:55:44.000Z" - }, - "events": [ - { - "uuid": "7292ff92-8852-4f32-82ba-6f8cfdd47c3b", - "start": { - "$date": "2022-02-11T19:03:10.000Z" - }, - "end": { - "$date": "2022-02-11T19:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "510be789-8599-4251-8999-c6f2ee40640a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-11T20:36:55.000Z" - }, - "end": { - "$date": "2022-02-11T22:01:29.000Z" - }, - "events": [ - { - "uuid": "3e2766a7-b023-4fbc-bae9-91131bfe305a", - "start": { - "$date": "2022-02-11T20:36:55.000Z" - }, - "end": { - "$date": "2022-02-11T22:01:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dfbf880c-4403-4468-8270-17e0304cd4f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-11T21:39:55.000Z" - }, - "end": { - "$date": "2022-02-11T22:10:26.000Z" - }, - "events": [ - { - "uuid": "34e90312-b99b-4492-9e47-889ba0f5d4b3", - "start": { - "$date": "2022-02-11T21:39:55.000Z" - }, - "end": { - "$date": "2022-02-11T22:10:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "c9c44d08-e409-44df-a68d-b1b4a840b01e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-11T21:57:42.000Z" - }, - "end": { - "$date": "2022-02-12T01:22:25.000Z" - }, - "events": [ - { - "uuid": "a3f41a3a-27f5-4645-a0af-63baa994fa0e", - "start": { - "$date": "2022-02-11T21:57:42.000Z" - }, - "end": { - "$date": "2022-02-12T01:22:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8c64809d-d3af-4521-ab21-d152193a9c2b", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-02-11T22:15:45.000Z" - }, - "end": { - "$date": "2022-02-11T22:32:40.000Z" - }, - "events": [ - { - "uuid": "e2d290eb-b166-416b-98cd-9822bc64caf9", - "start": { - "$date": "2022-02-11T22:15:45.000Z" - }, - "end": { - "$date": "2022-02-11T22:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fef03fb0-a91a-4071-8690-7d79c660553a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-11T23:33:23.000Z" - }, - "end": { - "$date": "2022-02-11T23:54:29.000Z" - }, - "events": [ - { - "uuid": "95862928-641a-4e5f-9e47-7bd8cc12ac26", - "start": { - "$date": "2022-02-11T23:33:23.000Z" - }, - "end": { - "$date": "2022-02-11T23:54:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b3c9d8fb-4737-4940-b6ea-cc8af2108ad8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-12T00:09:44.000Z" - }, - "end": { - "$date": "2022-02-12T01:09:31.000Z" - }, - "events": [ - { - "uuid": "697ab021-f899-422b-8924-39491cb217bb", - "start": { - "$date": "2022-02-12T00:09:44.000Z" - }, - "end": { - "$date": "2022-02-12T01:09:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "6031126d-debb-4ec2-ab53-0f85c913bca0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-12T00:16:48.000Z" - }, - "end": { - "$date": "2022-02-12T01:08:43.000Z" - }, - "events": [ - { - "uuid": "f61bfe82-f0cf-4d87-b134-432df235ccf0", - "start": { - "$date": "2022-02-12T00:16:48.000Z" - }, - "end": { - "$date": "2022-02-12T01:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ebb6122a-03cc-40f6-96a0-376bcbba6ef5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T01:10:25.000Z" - }, - "end": { - "$date": "2022-02-12T04:00:16.000Z" - }, - "events": [ - { - "uuid": "1bd7da6e-db82-4046-889e-2b5f497e20ee", - "start": { - "$date": "2022-02-12T01:10:25.000Z" - }, - "end": { - "$date": "2022-02-12T03:23:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f25a8f30-f874-4188-93de-d6767377bd57", - "start": { - "$date": "2022-02-12T03:23:25.000Z" - }, - "end": { - "$date": "2022-02-12T03:25:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03bc9f68-1631-4333-afd0-97d4aa309d61", - "start": { - "$date": "2022-02-12T03:25:25.000Z" - }, - "end": { - "$date": "2022-02-12T04:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "15a5409d-b249-4ea8-ac64-734bb759adde", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-12T01:19:34.000Z" - }, - "end": { - "$date": "2022-02-12T01:58:51.000Z" - }, - "events": [ - { - "uuid": "bb5a0e60-2972-4d86-939d-afbee45e4b0a", - "start": { - "$date": "2022-02-12T01:19:34.000Z" - }, - "end": { - "$date": "2022-02-12T01:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "874c2864-0f6e-4400-b21e-120f082072ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-12T01:22:45.000Z" - }, - "end": { - "$date": "2022-02-12T02:26:37.000Z" - }, - "events": [ - { - "uuid": "52fc5bdc-37d9-47cd-92ee-9ee061560a27", - "start": { - "$date": "2022-02-12T01:22:45.000Z" - }, - "end": { - "$date": "2022-02-12T02:26:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68e3e56c-9858-4c7a-a6a9-c668f4090822", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-12T01:53:52.000Z" - }, - "end": { - "$date": "2022-02-12T02:25:58.000Z" - }, - "events": [ - { - "uuid": "c08829ac-905c-46bd-ba80-f53fb3239123", - "start": { - "$date": "2022-02-12T01:53:52.000Z" - }, - "end": { - "$date": "2022-02-12T02:25:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3244ef19-87ce-4b00-9770-23dd6593daca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-12T02:08:27.000Z" - }, - "end": { - "$date": "2022-02-12T03:34:26.000Z" - }, - "events": [ - { - "uuid": "9435d2e0-25ca-4476-a5a1-b7312960c295", - "start": { - "$date": "2022-02-12T02:08:27.000Z" - }, - "end": { - "$date": "2022-02-12T03:34:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68b64153-369b-4021-9780-7523b6456eda", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-12T02:26:51.000Z" - }, - "end": { - "$date": "2022-02-12T02:59:29.000Z" - }, - "events": [ - { - "uuid": "ae2faaea-033b-4f4c-ac23-7d8cbf4804b8", - "start": { - "$date": "2022-02-12T02:26:51.000Z" - }, - "end": { - "$date": "2022-02-12T02:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "174e16e1-3f01-44e0-90d4-1c2eaf915942", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-12T03:00:10.000Z" - }, - "end": { - "$date": "2022-02-12T03:36:45.000Z" - }, - "events": [ - { - "uuid": "9ac04af8-cb6a-4337-bb96-49913f0994a6", - "start": { - "$date": "2022-02-12T03:00:10.000Z" - }, - "end": { - "$date": "2022-02-12T03:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6ca763ca-26ed-4d6a-a01d-e00bc1a2aa1c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-12T03:17:41.000Z" - }, - "end": { - "$date": "2022-02-12T05:32:23.000Z" - }, - "events": [ - { - "uuid": "bb34754e-a153-411a-995b-159f52ca1a37", - "start": { - "$date": "2022-02-12T03:17:41.000Z" - }, - "end": { - "$date": "2022-02-12T05:32:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "f10e4381-57b5-434a-bc04-92035c8c9296", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-12T03:34:57.000Z" - }, - "end": { - "$date": "2022-02-12T04:21:17.000Z" - }, - "events": [ - { - "uuid": "05429508-abd8-497a-8456-764c3155d4df", - "start": { - "$date": "2022-02-12T03:34:57.000Z" - }, - "end": { - "$date": "2022-02-12T04:21:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edf07080-bd01-4be4-bfa1-7127ff88d52d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-12T03:37:33.000Z" - }, - "end": { - "$date": "2022-02-12T04:14:39.000Z" - }, - "events": [ - { - "uuid": "e0b976cf-baa0-4265-b9e7-a497112af928", - "start": { - "$date": "2022-02-12T03:37:33.000Z" - }, - "end": { - "$date": "2022-02-12T04:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "f475cbef-2cca-4788-a779-8bee928c0ff5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-12T03:57:32.000Z" - }, - "end": { - "$date": "2022-02-12T04:46:03.000Z" - }, - "events": [ - { - "uuid": "634af995-d0f7-4ec9-9061-efd49d64281f", - "start": { - "$date": "2022-02-12T03:57:32.000Z" - }, - "end": { - "$date": "2022-02-12T04:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c259d70c-aa4b-4102-bade-97cd9fba94cd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T04:01:31.000Z" - }, - "end": { - "$date": "2022-02-12T04:19:48.000Z" - }, - "events": [ - { - "uuid": "e5ea8dba-83cc-4e57-a9ef-a81d40e9eb5c", - "start": { - "$date": "2022-02-12T04:01:31.000Z" - }, - "end": { - "$date": "2022-02-12T04:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2aa43a4-3db5-40fc-b7a3-11448ccd2766", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-12T04:18:16.000Z" - }, - "end": { - "$date": "2022-02-12T06:17:06.000Z" - }, - "events": [ - { - "uuid": "6c1bdfdb-6246-49ad-9493-b0337c0a23b4", - "start": { - "$date": "2022-02-12T04:18:16.000Z" - }, - "end": { - "$date": "2022-02-12T06:17:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "69514c68-de47-470d-b0a3-db6f7b8e000e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-12T04:19:19.000Z" - }, - "end": { - "$date": "2022-02-12T04:51:51.000Z" - }, - "events": [ - { - "uuid": "3d5bfaab-6d73-4111-a62e-5e2370ea9413", - "start": { - "$date": "2022-02-12T04:19:19.000Z" - }, - "end": { - "$date": "2022-02-12T04:51:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "1f8df343-0b8c-4dec-ae4a-aa92dfcd0ffc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T04:21:07.000Z" - }, - "end": { - "$date": "2022-02-12T04:23:08.000Z" - }, - "events": [ - { - "uuid": "41ce1d7b-3758-4c1b-9b58-9c6b9c2c7700", - "start": { - "$date": "2022-02-12T04:21:07.000Z" - }, - "end": { - "$date": "2022-02-12T04:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b8d15934-41a9-4594-8496-b961255c0e25", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-12T04:21:27.000Z" - }, - "end": { - "$date": "2022-02-12T06:27:33.000Z" - }, - "events": [ - { - "uuid": "b3f71660-77ef-4a6d-b51f-be94bcb7656a", - "start": { - "$date": "2022-02-12T04:21:27.000Z" - }, - "end": { - "$date": "2022-02-12T06:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "46180675-f951-4835-a66b-eba8a1bd255d", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-02-12T04:23:23.000Z" - }, - "end": { - "$date": "2022-02-12T06:27:06.000Z" - }, - "events": [ - { - "uuid": "ab78c621-9a57-472d-bcc0-eaa636f5c517", - "start": { - "$date": "2022-02-12T04:23:23.000Z" - }, - "end": { - "$date": "2022-02-12T06:27:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1bf7bc4c-69cc-4a1d-afde-be564e221012", - "uuid": "129025b9-d263-45ab-b268-dd5ebbe53fb4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T04:24:42.000Z" - }, - "end": { - "$date": "2022-02-12T05:28:49.000Z" - }, - "events": [ - { - "uuid": "fbfd4191-a321-4019-b2ca-b2631f351f3c", - "start": { - "$date": "2022-02-12T04:24:42.000Z" - }, - "end": { - "$date": "2022-02-12T05:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "47e6638a-986d-4056-9649-6222c116059c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-12T06:12:59.000Z" - }, - "end": { - "$date": "2022-02-12T08:03:47.000Z" - }, - "events": [ - { - "uuid": "06661ce6-f606-453d-bc6d-74dbc984c473", - "start": { - "$date": "2022-02-12T06:12:59.000Z" - }, - "end": { - "$date": "2022-02-12T08:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6848f4e6-7aec-47fd-88fd-5f6b5a7bf947", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-12T03:23:08.000Z" - }, - "end": { - "$date": "2022-02-12T08:08:02.000Z" - }, - "events": [ - { - "uuid": "9cd36cae-ae65-43c0-b604-398772bf7abb", - "start": { - "$date": "2022-02-12T03:23:08.000Z" - }, - "end": { - "$date": "2022-02-12T08:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "cd036a9b-5720-40ff-9d67-bce108d737fd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-12T04:58:37.000Z" - }, - "end": { - "$date": "2022-02-12T05:02:47.000Z" - }, - "events": [ - { - "uuid": "a121b1dc-1a97-4052-87c6-508f409c3418", - "start": { - "$date": "2022-02-12T04:58:37.000Z" - }, - "end": { - "$date": "2022-02-12T05:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "735dc2de-5718-4852-8508-bb9aff2f8dec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-12T05:03:35.000Z" - }, - "end": { - "$date": "2022-02-12T09:46:12.000Z" - }, - "events": [ - { - "uuid": "903de673-17fe-4ac7-8e62-51fa98d7b0b8", - "start": { - "$date": "2022-02-12T05:03:35.000Z" - }, - "end": { - "$date": "2022-02-12T09:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "b82b85f4-a479-45ac-bcbf-2217fc71a32d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-12T05:06:18.000Z" - }, - "end": { - "$date": "2022-02-12T07:57:26.000Z" - }, - "events": [ - { - "uuid": "7f815668-0430-4cc7-9cba-10d82b887e42", - "start": { - "$date": "2022-02-12T05:06:18.000Z" - }, - "end": { - "$date": "2022-02-12T07:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "1473fda3-c22c-4dc7-b57b-0fb5c340d161", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-12T05:19:31.000Z" - }, - "end": { - "$date": "2022-02-12T05:20:45.000Z" - }, - "events": [ - { - "uuid": "668c7e02-748c-408b-954f-e59f63a13aa8", - "start": { - "$date": "2022-02-12T05:19:31.000Z" - }, - "end": { - "$date": "2022-02-12T05:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "8df5d2ea-df29-49bd-913f-637559cae751", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-12T05:23:11.000Z" - }, - "end": { - "$date": "2022-02-12T05:26:56.000Z" - }, - "events": [ - { - "uuid": "de6d5996-0046-4e24-b0e2-a9c3435f8d98", - "start": { - "$date": "2022-02-12T05:23:11.000Z" - }, - "end": { - "$date": "2022-02-12T05:26:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "550700cf-d36e-47d6-a41c-2bf38a7bf435", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-12T05:28:17.000Z" - }, - "end": { - "$date": "2022-02-12T05:29:26.000Z" - }, - "events": [ - { - "uuid": "47766b9c-f923-401f-9a31-5bd7449eb1da", - "start": { - "$date": "2022-02-12T05:28:17.000Z" - }, - "end": { - "$date": "2022-02-12T05:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "700aa807-7942-4b0f-9d6a-b182ec7584f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-12T05:30:52.000Z" - }, - "end": { - "$date": "2022-02-12T09:43:29.000Z" - }, - "events": [ - { - "uuid": "e5de0c29-209f-4e5a-8d11-9f75cfc907e5", - "start": { - "$date": "2022-02-12T05:30:52.000Z" - }, - "end": { - "$date": "2022-02-12T09:43:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b2c87692-0428-470a-b688-b4983b1ca91e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-12T05:35:47.000Z" - }, - "end": { - "$date": "2022-02-12T07:28:19.000Z" - }, - "events": [ - { - "uuid": "d94d3f46-1d80-42fe-a006-0826162c4804", - "start": { - "$date": "2022-02-12T05:35:47.000Z" - }, - "end": { - "$date": "2022-02-12T07:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "7702ce08-f6a7-4fb6-b167-1009d8cb0889", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T05:58:56.000Z" - }, - "end": { - "$date": "2022-02-12T06:00:52.000Z" - }, - "events": [ - { - "uuid": "eec36534-e50f-4f0c-8c15-875210d1b4d2", - "start": { - "$date": "2022-02-12T05:58:56.000Z" - }, - "end": { - "$date": "2022-02-12T06:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "dce34cf3-1ec2-4ce7-a464-568492ceb637", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T06:02:02.000Z" - }, - "end": { - "$date": "2022-02-12T06:12:08.000Z" - }, - "events": [ - { - "uuid": "4d16ba3e-5967-4877-ad69-84637b5a2849", - "start": { - "$date": "2022-02-12T06:02:02.000Z" - }, - "end": { - "$date": "2022-02-12T06:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "14b4a004-d64d-48e6-a751-71bf055ff07b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T07:09:42.000Z" - }, - "end": { - "$date": "2022-02-12T08:03:06.000Z" - }, - "events": [ - { - "uuid": "815f1e22-bc85-4d01-b0f3-2d7fb912a3da", - "start": { - "$date": "2022-02-12T07:09:42.000Z" - }, - "end": { - "$date": "2022-02-12T08:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "237dbe2c-155f-4145-87e3-7a2836a93c2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-12T15:02:49.000Z" - }, - "end": { - "$date": "2022-02-12T16:33:15.000Z" - }, - "events": [ - { - "uuid": "64e916ef-ea05-4cf2-b6a8-758e9a369b60", - "start": { - "$date": "2022-02-12T15:02:49.000Z" - }, - "end": { - "$date": "2022-02-12T16:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "a692a8cc-8c4c-4822-aa0b-3cd51d8a546c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-12T16:34:40.000Z" - }, - "end": { - "$date": "2022-02-12T19:34:21.000Z" - }, - "events": [ - { - "uuid": "4f7246a2-d4a6-4985-aac6-9d06860085ac", - "start": { - "$date": "2022-02-12T16:34:40.000Z" - }, - "end": { - "$date": "2022-02-12T19:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "26dd9cdd-3585-4d11-b2a9-2bed636197b4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-12T17:21:05.000Z" - }, - "end": { - "$date": "2022-02-12T17:49:04.000Z" - }, - "events": [ - { - "uuid": "771ae46e-a747-46c5-9e29-5d8d3bf05fd2", - "start": { - "$date": "2022-02-12T17:21:05.000Z" - }, - "end": { - "$date": "2022-02-12T17:49:04.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "801e0f65-3a4f-46ef-a717-4ed49ce85650", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T17:37:49.000Z" - }, - "end": { - "$date": "2022-02-12T19:02:28.000Z" - }, - "events": [ - { - "uuid": "d30599d1-d96e-4c3b-aa6c-372c55e3122a", - "start": { - "$date": "2022-02-12T17:37:49.000Z" - }, - "end": { - "$date": "2022-02-12T19:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "6885dbb1-4032-43af-a174-d9342c027791", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-12T18:37:44.000Z" - }, - "end": { - "$date": "2022-02-12T20:21:19.000Z" - }, - "events": [ - { - "uuid": "1ad5d501-306a-4aa6-afdb-5b721f739d57", - "start": { - "$date": "2022-02-12T18:37:44.000Z" - }, - "end": { - "$date": "2022-02-12T20:21:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "810c67b0-062e-4c8d-9107-13cafab205e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-12T20:40:44.000Z" - }, - "end": { - "$date": "2022-02-12T20:46:14.000Z" - }, - "events": [ - { - "uuid": "40d8c119-8b20-4100-8a49-08ddb360063d", - "start": { - "$date": "2022-02-12T20:40:44.000Z" - }, - "end": { - "$date": "2022-02-12T20:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ab0dacc-3ad8-4089-9f02-534d66d1d3d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-12T21:16:30.000Z" - }, - "end": { - "$date": "2022-02-12T21:30:45.000Z" - }, - "events": [ - { - "uuid": "2659de88-509f-4db4-a097-a48e86296d5c", - "start": { - "$date": "2022-02-12T21:16:30.000Z" - }, - "end": { - "$date": "2022-02-12T21:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "84bd739c-e609-4277-a48f-1cef0a3ab849", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-12T21:36:13.000Z" - }, - "end": { - "$date": "2022-02-13T07:47:07.000Z" - }, - "events": [ - { - "uuid": "f0c6398e-ad98-4401-8673-3c066399b2cd", - "start": { - "$date": "2022-02-12T21:36:13.000Z" - }, - "end": { - "$date": "2022-02-13T07:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "258cce9b-bd37-4267-832f-5c4281fd2ad2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-13T02:26:54.000Z" - }, - "end": { - "$date": "2022-02-13T02:27:00.000Z" - }, - "events": [ - { - "uuid": "c8352770-f5f9-4180-8435-d521a7cea6d4", - "start": { - "$date": "2022-02-13T02:26:54.000Z" - }, - "end": { - "$date": "2022-02-13T02:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f6990684-3694-4240-8bd4-3332033c15d1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-13T03:05:35.000Z" - }, - "end": { - "$date": "2022-02-13T08:20:32.000Z" - }, - "events": [ - { - "uuid": "9174de11-e457-4fd8-8c6b-e509cfdbed37", - "start": { - "$date": "2022-02-13T03:05:35.000Z" - }, - "end": { - "$date": "2022-02-13T08:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "bfcd694d-87b9-4290-8af5-811f3b3ced69", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-13T03:12:33.000Z" - }, - "end": { - "$date": "2022-02-13T05:07:54.000Z" - }, - "events": [ - { - "uuid": "df3fb8da-3331-4e58-babd-a8946142ecf8", - "start": { - "$date": "2022-02-13T03:12:33.000Z" - }, - "end": { - "$date": "2022-02-13T05:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "04869043-5055-42e7-9906-4f4fb3466256", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-13T04:35:23.000Z" - }, - "end": { - "$date": "2022-02-13T07:30:59.000Z" - }, - "events": [ - { - "uuid": "62e91c72-4c63-4d6e-8ad3-0c68db3e2ce3", - "start": { - "$date": "2022-02-13T04:35:23.000Z" - }, - "end": { - "$date": "2022-02-13T05:15:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86c12de1-1062-4f20-bd99-219393305d43", - "start": { - "$date": "2022-02-13T05:15:23.000Z" - }, - "end": { - "$date": "2022-02-13T05:17:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c80b950-59a8-4349-97e4-77a3c3f8cad8", - "start": { - "$date": "2022-02-13T05:17:23.000Z" - }, - "end": { - "$date": "2022-02-13T07:30:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "dda7b3c0-b5aa-4e4f-ae30-71f5ae5a6356", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-13T05:15:56.000Z" - }, - "end": { - "$date": "2022-02-13T06:26:03.000Z" - }, - "events": [ - { - "uuid": "58b01e09-4b8d-417b-af6c-46b43f64b2f8", - "start": { - "$date": "2022-02-13T05:15:56.000Z" - }, - "end": { - "$date": "2022-02-13T06:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "d310536e-d36e-4ddd-83c1-20c9003b1819", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-13T05:39:41.000Z" - }, - "end": { - "$date": "2022-02-13T08:55:54.000Z" - }, - "events": [ - { - "uuid": "271e51f1-509d-4f88-b8ee-dbd9635d0773", - "start": { - "$date": "2022-02-13T05:39:41.000Z" - }, - "end": { - "$date": "2022-02-13T08:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fd4c820-bcd2-4ef7-a4f7-10aa11520306", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-13T05:56:59.000Z" - }, - "end": { - "$date": "2022-02-13T06:19:09.000Z" - }, - "events": [ - { - "uuid": "081189ba-0efc-4e9e-be93-333c715d579d", - "start": { - "$date": "2022-02-13T05:56:59.000Z" - }, - "end": { - "$date": "2022-02-13T06:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b30f1e97-6858-4747-91e9-8dedd4933974", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-13T05:57:31.000Z" - }, - "end": { - "$date": "2022-02-13T07:35:47.000Z" - }, - "events": [ - { - "uuid": "b7512931-0f73-4838-8d73-5fa410318190", - "start": { - "$date": "2022-02-13T05:57:31.000Z" - }, - "end": { - "$date": "2022-02-13T07:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "181d4109-ce12-46bf-8698-372220cd0dc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-13T09:15:27.000Z" - }, - "end": { - "$date": "2022-02-13T10:01:55.000Z" - }, - "events": [ - { - "uuid": "1ee18265-cbfa-40ae-abeb-2f7275405125", - "start": { - "$date": "2022-02-13T09:15:27.000Z" - }, - "end": { - "$date": "2022-02-13T10:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "0ab57b64-6fe2-4daa-8e1c-474737206f40", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-13T15:01:04.000Z" - }, - "end": { - "$date": "2022-02-13T17:43:49.000Z" - }, - "events": [ - { - "uuid": "eda914dc-6faa-4dd7-883f-0f56fae3722a", - "start": { - "$date": "2022-02-13T15:01:04.000Z" - }, - "end": { - "$date": "2022-02-13T17:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "def30b20-7e9d-416d-a1a7-e5a3b525ce5f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-13T15:07:36.000Z" - }, - "end": { - "$date": "2022-02-13T15:59:26.000Z" - }, - "events": [ - { - "uuid": "3f434285-0342-4fc5-b2de-83240a70611b", - "start": { - "$date": "2022-02-13T15:07:36.000Z" - }, - "end": { - "$date": "2022-02-13T15:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a6454e24-fccc-44d2-b25e-a8c80d927973", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-13T15:41:42.000Z" - }, - "end": { - "$date": "2022-02-14T00:18:38.000Z" - }, - "events": [ - { - "uuid": "cc20248e-cacf-4450-aba2-ffcd0a616dfc", - "start": { - "$date": "2022-02-13T15:41:42.000Z" - }, - "end": { - "$date": "2022-02-13T17:54:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "05a981f5-825b-4ccc-8bc6-5df9dac53532", - "start": { - "$date": "2022-02-13T17:54:42.000Z" - }, - "end": { - "$date": "2022-02-13T18:03:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd1272e7-5712-4ca9-a0f9-3b4e552ecbcf", - "start": { - "$date": "2022-02-13T18:03:42.000Z" - }, - "end": { - "$date": "2022-02-13T20:42:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9c3cc35-f26f-4f45-8083-5c583535a52c", - "start": { - "$date": "2022-02-13T20:42:42.000Z" - }, - "end": { - "$date": "2022-02-13T20:51:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2c744d0-59cd-4e20-a1bc-55bf591afaf8", - "start": { - "$date": "2022-02-13T20:51:42.000Z" - }, - "end": { - "$date": "2022-02-14T00:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "95fb14d9-171a-414e-bcf0-658de7888f2c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-13T15:48:18.000Z" - }, - "end": { - "$date": "2022-02-13T16:34:59.000Z" - }, - "events": [ - { - "uuid": "0948f6fc-373b-4ef3-bbe1-9664ac7d2bef", - "start": { - "$date": "2022-02-13T15:48:18.000Z" - }, - "end": { - "$date": "2022-02-13T16:34:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5888a2ab-5f20-485e-90e8-d3af57f9809c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-13T17:47:50.000Z" - }, - "end": { - "$date": "2022-02-13T18:24:02.000Z" - }, - "events": [ - { - "uuid": "50a524a3-45c7-40b8-9621-6e4251d6a8ca", - "start": { - "$date": "2022-02-13T17:47:50.000Z" - }, - "end": { - "$date": "2022-02-13T18:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e1468f13-3ccf-4480-8446-f23705f20b4f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-13T17:57:09.000Z" - }, - "end": { - "$date": "2022-02-13T18:01:20.000Z" - }, - "events": [ - { - "uuid": "693a2817-18c3-424b-a79c-8fa23e4ecef2", - "start": { - "$date": "2022-02-13T17:57:09.000Z" - }, - "end": { - "$date": "2022-02-13T18:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5d74f975-5883-4569-a09e-1441025f03f5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-13T18:02:45.000Z" - }, - "end": { - "$date": "2022-02-13T19:07:32.000Z" - }, - "events": [ - { - "uuid": "9d0a05ee-e35e-4d35-923e-e382d3ceeb7a", - "start": { - "$date": "2022-02-13T18:02:45.000Z" - }, - "end": { - "$date": "2022-02-13T18:25:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d19bdd12-7f87-41aa-b750-94c80736f279", - "start": { - "$date": "2022-02-13T18:25:45.000Z" - }, - "end": { - "$date": "2022-02-13T19:07:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "b382e5e7-6b66-4d21-b0f4-1dbb51865a5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-13T19:09:22.000Z" - }, - "end": { - "$date": "2022-02-13T19:57:35.000Z" - }, - "events": [ - { - "uuid": "3191064d-8872-4624-a825-6a97ad414f73", - "start": { - "$date": "2022-02-13T19:09:22.000Z" - }, - "end": { - "$date": "2022-02-13T19:57:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "b39e46e4-0c13-43d2-bb5e-c511865d5c1d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-13T20:48:32.000Z" - }, - "end": { - "$date": "2022-02-13T21:23:53.000Z" - }, - "events": [ - { - "uuid": "a1b4efbb-146f-496c-9e5d-29843b6414d3", - "start": { - "$date": "2022-02-13T20:48:32.000Z" - }, - "end": { - "$date": "2022-02-13T21:23:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c3741240-32d8-4310-9076-6e949af190b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-13T22:37:28.000Z" - }, - "end": { - "$date": "2022-02-14T01:30:17.000Z" - }, - "events": [ - { - "uuid": "c26bf86b-60f2-491c-b951-84ae84b6aa4c", - "start": { - "$date": "2022-02-13T22:37:28.000Z" - }, - "end": { - "$date": "2022-02-14T01:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3e269db3-c071-4e90-b5c8-eed2e5642266", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-13T23:40:57.000Z" - }, - "end": { - "$date": "2022-02-13T23:48:49.000Z" - }, - "events": [ - { - "uuid": "d7d4bc25-c266-4d08-8ed4-388a8b228a21", - "start": { - "$date": "2022-02-13T23:40:57.000Z" - }, - "end": { - "$date": "2022-02-13T23:48:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "64b7b060-7823-42c4-bcbc-45c0b76664aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-13T23:40:57.000Z" - }, - "end": { - "$date": "2022-02-14T00:21:48.000Z" - }, - "events": [ - { - "uuid": "c6493ff9-0928-47c7-ade8-9f98cad7e3d1", - "start": { - "$date": "2022-02-13T23:40:57.000Z" - }, - "end": { - "$date": "2022-02-14T00:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "20a9563b-f46f-4424-ae61-f1590deabeb4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-14T02:06:02.000Z" - }, - "end": { - "$date": "2022-02-14T03:06:14.000Z" - }, - "events": [ - { - "uuid": "e2bd0149-645b-49b1-be5a-7c1eb2dd4ef7", - "start": { - "$date": "2022-02-14T02:06:02.000Z" - }, - "end": { - "$date": "2022-02-14T03:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0bfa480f-1057-4b1a-9f07-16c870cb5408", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-14T03:06:24.000Z" - }, - "end": { - "$date": "2022-02-14T04:15:46.000Z" - }, - "events": [ - { - "uuid": "783cea82-0d42-43e1-b6de-a80fea661e3c", - "start": { - "$date": "2022-02-14T03:06:24.000Z" - }, - "end": { - "$date": "2022-02-14T03:55:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e805e18f-2fe1-49da-abd5-2b0092e58dbe", - "start": { - "$date": "2022-02-14T03:55:24.000Z" - }, - "end": { - "$date": "2022-02-14T04:00:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dfb47f03-b97b-4c4e-9806-6c3e3819ec68", - "start": { - "$date": "2022-02-14T04:00:24.000Z" - }, - "end": { - "$date": "2022-02-14T04:10:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "896a644d-3841-493f-b301-b06fae218d78", - "start": { - "$date": "2022-02-14T04:10:24.000Z" - }, - "end": { - "$date": "2022-02-14T04:15:46.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "13999bf5-9e01-4d7b-81be-3481083de22f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-14T03:08:11.000Z" - }, - "end": { - "$date": "2022-02-14T03:35:32.000Z" - }, - "events": [ - { - "uuid": "55b6d5cb-f6e0-49e1-a446-dd4a39dd6244", - "start": { - "$date": "2022-02-14T03:08:11.000Z" - }, - "end": { - "$date": "2022-02-14T03:35:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ce5a6a4b-46fc-4ee7-8651-abcd358f38dd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-14T03:56:16.000Z" - }, - "end": { - "$date": "2022-02-14T06:03:40.000Z" - }, - "events": [ - { - "uuid": "82032524-d492-4cca-b828-b2e1df976bf7", - "start": { - "$date": "2022-02-14T03:56:16.000Z" - }, - "end": { - "$date": "2022-02-14T06:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9f99eda3-29a6-48ce-8c63-254401282a73", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-14T04:06:08.000Z" - }, - "end": { - "$date": "2022-02-14T06:16:47.000Z" - }, - "events": [ - { - "uuid": "e0dd92ec-6106-4a7e-81e7-ba8354793a10", - "start": { - "$date": "2022-02-14T04:06:08.000Z" - }, - "end": { - "$date": "2022-02-14T06:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7f78cdc0-9f84-4d47-be2e-93442505e42c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-14T04:22:32.000Z" - }, - "end": { - "$date": "2022-02-14T06:34:40.000Z" - }, - "events": [ - { - "uuid": "6b44c0c9-3b73-48fe-a2da-43a1bc185107", - "start": { - "$date": "2022-02-14T04:22:32.000Z" - }, - "end": { - "$date": "2022-02-14T06:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1e1d95e4-b12e-46b5-9f0c-60e34bed160a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-14T04:43:43.000Z" - }, - "end": { - "$date": "2022-02-14T04:53:04.000Z" - }, - "events": [ - { - "uuid": "f5df5e00-7fcc-41d3-b17c-b43cdfa8caa8", - "start": { - "$date": "2022-02-14T04:43:43.000Z" - }, - "end": { - "$date": "2022-02-14T04:53:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0adf1fa0-ed3a-4867-87b7-93e37037fb0d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-14T04:54:44.000Z" - }, - "end": { - "$date": "2022-02-14T05:57:17.000Z" - }, - "events": [ - { - "uuid": "584f41fa-79d4-4e14-913f-d93375ec7aff", - "start": { - "$date": "2022-02-14T04:54:44.000Z" - }, - "end": { - "$date": "2022-02-14T05:57:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "708a9f44-81d6-4129-8adf-7382c68e95db", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-14T05:08:52.000Z" - }, - "end": { - "$date": "2022-02-14T06:10:40.000Z" - }, - "events": [ - { - "uuid": "5ee72546-d13d-4e16-887e-d24c890b54bc", - "start": { - "$date": "2022-02-14T05:08:52.000Z" - }, - "end": { - "$date": "2022-02-14T05:48:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f359ce97-0d4d-4ad9-857d-bd803fdb2153", - "start": { - "$date": "2022-02-14T05:48:52.000Z" - }, - "end": { - "$date": "2022-02-14T06:10:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "82954053-24f2-4420-b93c-756b1aa6bb2d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-14T06:05:07.000Z" - }, - "end": { - "$date": "2022-02-14T06:19:43.000Z" - }, - "events": [ - { - "uuid": "bd49d061-90a5-4504-996a-c519cabbde78", - "start": { - "$date": "2022-02-14T06:05:07.000Z" - }, - "end": { - "$date": "2022-02-14T06:19:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0a2c4216-bc2d-40a2-b2ee-191ae9bfbed8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-14T06:55:17.000Z" - }, - "end": { - "$date": "2022-02-14T08:06:53.000Z" - }, - "events": [ - { - "uuid": "302b9d43-459c-41bc-a52c-c6f2b67b3bfd", - "start": { - "$date": "2022-02-14T06:55:17.000Z" - }, - "end": { - "$date": "2022-02-14T08:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "d84278fb-8a68-4ee4-95b9-d5bf047b00bd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-14T06:07:58.000Z" - }, - "end": { - "$date": "2022-02-14T08:41:59.000Z" - }, - "events": [ - { - "uuid": "c332e6e1-f59d-42ad-833e-ee312e7d3691", - "start": { - "$date": "2022-02-14T06:07:58.000Z" - }, - "end": { - "$date": "2022-02-14T08:41:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "cad2b419-662f-4cc6-9827-7cc051758303", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-14T06:20:47.000Z" - }, - "end": { - "$date": "2022-02-14T08:02:29.000Z" - }, - "events": [ - { - "uuid": "8ec37fb1-7778-409d-be32-7e181b77f70d", - "start": { - "$date": "2022-02-14T06:20:47.000Z" - }, - "end": { - "$date": "2022-02-14T08:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "0355cbb4-3a32-483f-8681-4a7cb9792615", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-14T06:43:00.000Z" - }, - "end": { - "$date": "2022-02-14T07:16:47.000Z" - }, - "events": [ - { - "uuid": "3b75da92-5353-40e6-9272-8d7c4de31306", - "start": { - "$date": "2022-02-14T06:43:00.000Z" - }, - "end": { - "$date": "2022-02-14T07:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7eeebeee-fa05-4aed-8c6c-311b31e7d8ec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-14T06:58:13.000Z" - }, - "end": { - "$date": "2022-02-14T07:21:25.000Z" - }, - "events": [ - { - "uuid": "7db1ffa5-d4b8-48ae-a4d7-01a8453feca3", - "start": { - "$date": "2022-02-14T06:58:13.000Z" - }, - "end": { - "$date": "2022-02-14T07:21:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c1af96d-4d8a-476a-aba7-c709efd896c9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-14T07:25:20.000Z" - }, - "end": { - "$date": "2022-02-14T07:45:50.000Z" - }, - "events": [ - { - "uuid": "48c2f5f5-e8e6-4e1b-810b-73276d7d0445", - "start": { - "$date": "2022-02-14T07:25:20.000Z" - }, - "end": { - "$date": "2022-02-14T07:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "4ff4fadf-656e-4c9c-be64-c6af8e9b4f6b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-14T07:28:33.000Z" - }, - "end": { - "$date": "2022-02-14T09:00:57.000Z" - }, - "events": [ - { - "uuid": "adfdaa43-0343-4b8f-b654-fbec07585377", - "start": { - "$date": "2022-02-14T07:28:33.000Z" - }, - "end": { - "$date": "2022-02-14T09:00:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7112b2fa-7c10-4c7e-86ad-891bee1e968f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-14T07:49:06.000Z" - }, - "end": { - "$date": "2022-02-14T08:15:01.000Z" - }, - "events": [ - { - "uuid": "5365fefa-1ca0-4c6c-a2d1-03e10b778e52", - "start": { - "$date": "2022-02-14T07:49:06.000Z" - }, - "end": { - "$date": "2022-02-14T08:15:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "2f670bff-5691-4899-b14d-586a37566d5b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-14T08:22:16.000Z" - }, - "end": { - "$date": "2022-02-14T08:25:41.000Z" - }, - "events": [ - { - "uuid": "6d997158-0d37-4c4a-9ad7-622ea81128dc", - "start": { - "$date": "2022-02-14T08:22:16.000Z" - }, - "end": { - "$date": "2022-02-14T08:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "9a14039b-5a61-4e2c-90c1-2474b81b0bf9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-14T14:14:38.000Z" - }, - "end": { - "$date": "2022-02-14T14:51:25.000Z" - }, - "events": [ - { - "uuid": "1c2efac8-6f43-49da-9a5f-0e9f2cf7f62a", - "start": { - "$date": "2022-02-14T14:14:38.000Z" - }, - "end": { - "$date": "2022-02-14T14:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0fd54f0-f91c-4456-8c4d-faa6499d2276", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-14T16:53:21.000Z" - }, - "end": { - "$date": "2022-02-14T18:08:36.000Z" - }, - "events": [ - { - "uuid": "9e04572d-7365-40a1-906d-e62385e48465", - "start": { - "$date": "2022-02-14T16:53:21.000Z" - }, - "end": { - "$date": "2022-02-14T18:08:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "439d1a03-78ad-4f03-8bf3-2c8272713bb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-14T17:03:47.000Z" - }, - "end": { - "$date": "2022-02-14T21:43:34.000Z" - }, - "events": [ - { - "uuid": "c8b82e6f-2353-4e75-8c7e-bbe56ae6af54", - "start": { - "$date": "2022-02-14T17:03:47.000Z" - }, - "end": { - "$date": "2022-02-14T21:43:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0750e5d3-8aaa-4912-ba4d-2586bedcd56e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-14T18:36:07.000Z" - }, - "end": { - "$date": "2022-02-14T18:36:16.000Z" - }, - "events": [ - { - "uuid": "13f8af88-4b4e-4b46-b84b-04fa4f3111c1", - "start": { - "$date": "2022-02-14T18:36:07.000Z" - }, - "end": { - "$date": "2022-02-14T18:36:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fa1733af-923b-4674-ae20-7bebf3b26114", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-14T18:36:47.000Z" - }, - "end": { - "$date": "2022-02-14T18:39:06.000Z" - }, - "events": [ - { - "uuid": "13f95677-8fda-4fa7-b39d-aeedf763ef9a", - "start": { - "$date": "2022-02-14T18:36:47.000Z" - }, - "end": { - "$date": "2022-02-14T18:39:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a98a3f8f-0af5-4b8b-9799-14e4500ae917", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-14T18:39:07.000Z" - }, - "end": { - "$date": "2022-02-14T18:48:57.000Z" - }, - "events": [ - { - "uuid": "6476c43f-379f-4b99-a719-514246607d5c", - "start": { - "$date": "2022-02-14T18:39:07.000Z" - }, - "end": { - "$date": "2022-02-14T18:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ece58ee0-7563-4b29-b787-cf13bf1a6a3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-14T18:49:12.000Z" - }, - "end": { - "$date": "2022-02-14T19:30:13.000Z" - }, - "events": [ - { - "uuid": "181ccff0-eb01-4faf-9c6a-2b950843dee1", - "start": { - "$date": "2022-02-14T18:49:12.000Z" - }, - "end": { - "$date": "2022-02-14T19:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "00c3565a-472e-4f9f-b5ab-a79a1263aebd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-14T19:36:54.000Z" - }, - "end": { - "$date": "2022-02-14T20:03:28.000Z" - }, - "events": [ - { - "uuid": "87f95a04-946a-4b1f-8998-beb7d5922704", - "start": { - "$date": "2022-02-14T19:36:54.000Z" - }, - "end": { - "$date": "2022-02-14T20:03:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "5b38636f-6bb5-4c06-96ca-3421125f5575", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-14T20:55:00.000Z" - }, - "end": { - "$date": "2022-02-14T21:34:17.000Z" - }, - "events": [ - { - "uuid": "a5ed9f7c-b2f0-4c66-8cf4-611ba9b20d0f", - "start": { - "$date": "2022-02-14T20:55:00.000Z" - }, - "end": { - "$date": "2022-02-14T21:34:17.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "33e470aa-c870-49a0-bf52-8a88a7652e23", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-14T23:04:42.000Z" - }, - "end": { - "$date": "2022-02-15T00:15:13.000Z" - }, - "events": [ - { - "uuid": "6b764e11-1882-4b9c-a6e6-da7b62811c63", - "start": { - "$date": "2022-02-14T23:04:42.000Z" - }, - "end": { - "$date": "2022-02-15T00:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "789785be-b755-4b62-a0b4-cca925906f20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-14T23:45:46.000Z" - }, - "end": { - "$date": "2022-02-15T03:00:05.000Z" - }, - "events": [ - { - "uuid": "c94e236b-cc25-4736-aee5-0d33a81b5338", - "start": { - "$date": "2022-02-14T23:45:46.000Z" - }, - "end": { - "$date": "2022-02-15T03:00:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "32b38a0e-ffcc-4fb4-a61a-30514a73ef5b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-15T00:36:25.000Z" - }, - "end": { - "$date": "2022-02-15T00:41:20.000Z" - }, - "events": [ - { - "uuid": "4c4e04dd-a8c9-408e-80d3-1486a0422fc3", - "start": { - "$date": "2022-02-15T00:36:25.000Z" - }, - "end": { - "$date": "2022-02-15T00:41:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "05a48e89-d941-404e-a1ab-913dce76f909", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-15T01:31:31.000Z" - }, - "end": { - "$date": "2022-02-15T01:34:22.000Z" - }, - "events": [ - { - "uuid": "44556969-21e9-4cc4-97f8-d94524dc7e11", - "start": { - "$date": "2022-02-15T01:31:31.000Z" - }, - "end": { - "$date": "2022-02-15T01:34:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6c3b7fbe-1986-4f0e-8e8d-f43f113b355d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-15T01:45:02.000Z" - }, - "end": { - "$date": "2022-02-15T02:31:40.000Z" - }, - "events": [ - { - "uuid": "fda7a40e-3001-4621-aa22-b74f69f621f9", - "start": { - "$date": "2022-02-15T01:45:02.000Z" - }, - "end": { - "$date": "2022-02-15T02:06:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a182c04-698e-446d-8dce-4a5c30bb97da", - "start": { - "$date": "2022-02-15T02:06:02.000Z" - }, - "end": { - "$date": "2022-02-15T02:31:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "eba45dcb-ea2b-41bf-9058-14d169839747", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-15T02:25:00.000Z" - }, - "end": { - "$date": "2022-02-15T02:33:41.000Z" - }, - "events": [ - { - "uuid": "891daaa4-2cd2-4ca2-a673-8c23559f24cd", - "start": { - "$date": "2022-02-15T02:25:00.000Z" - }, - "end": { - "$date": "2022-02-15T02:33:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5255f97a-0a45-4086-a882-3ac010853f66", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-15T02:36:40.000Z" - }, - "end": { - "$date": "2022-02-15T02:45:57.000Z" - }, - "events": [ - { - "uuid": "5c1a81e8-2e4a-4ed6-9ec9-a2a2db681a47", - "start": { - "$date": "2022-02-15T02:36:40.000Z" - }, - "end": { - "$date": "2022-02-15T02:45:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "364ff9bc-b71d-45ac-be94-e1ee8b9a79dd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-15T02:46:46.000Z" - }, - "end": { - "$date": "2022-02-15T03:20:18.000Z" - }, - "events": [ - { - "uuid": "816b7dc2-c261-466c-8dc7-b01ad55d20d0", - "start": { - "$date": "2022-02-15T02:46:46.000Z" - }, - "end": { - "$date": "2022-02-15T03:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "50e709d0-acb2-4328-81fb-2bf91bb739f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-15T02:56:27.000Z" - }, - "end": { - "$date": "2022-02-15T05:12:42.000Z" - }, - "events": [ - { - "uuid": "3b40e7ae-0678-45a6-8065-f529cb53ffb6", - "start": { - "$date": "2022-02-15T02:56:27.000Z" - }, - "end": { - "$date": "2022-02-15T05:12:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7dcb99ab-9342-4d2d-8b1f-df01d140706e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-15T03:01:26.000Z" - }, - "end": { - "$date": "2022-02-15T05:59:09.000Z" - }, - "events": [ - { - "uuid": "ee295324-4f35-4e8f-86b2-654e08e81125", - "start": { - "$date": "2022-02-15T03:01:26.000Z" - }, - "end": { - "$date": "2022-02-15T05:59:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87442e37-d31f-4a90-8f26-962da2eebb37", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-15T03:01:39.000Z" - }, - "end": { - "$date": "2022-02-15T05:59:04.000Z" - }, - "events": [ - { - "uuid": "b7a9c7e1-8adc-4713-8e9d-66e77904de27", - "start": { - "$date": "2022-02-15T03:01:39.000Z" - }, - "end": { - "$date": "2022-02-15T05:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "820dc72c-4b85-4388-a78f-929031bf99fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-15T03:11:15.000Z" - }, - "end": { - "$date": "2022-02-15T04:42:25.000Z" - }, - "events": [ - { - "uuid": "1d99cf36-7068-4f11-b614-f515f7651908", - "start": { - "$date": "2022-02-15T03:11:15.000Z" - }, - "end": { - "$date": "2022-02-15T04:42:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c7da6c1f-c77f-44ca-8ce6-000171e99f6f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-15T03:20:22.000Z" - }, - "end": { - "$date": "2022-02-15T04:41:00.000Z" - }, - "events": [ - { - "uuid": "22328f37-92cf-4dc9-b5f4-4b76664d5a95", - "start": { - "$date": "2022-02-15T03:20:22.000Z" - }, - "end": { - "$date": "2022-02-15T03:49:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5e2a857-697f-4fc1-9a29-b4343bdc78e8", - "start": { - "$date": "2022-02-15T03:49:22.000Z" - }, - "end": { - "$date": "2022-02-15T03:54:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "febc655f-3bbf-426a-884b-70ff2dc6a51c", - "start": { - "$date": "2022-02-15T03:54:22.000Z" - }, - "end": { - "$date": "2022-02-15T04:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "671e9ad3-b817-4c81-af8c-e4c4da25dec7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-15T03:06:26.000Z" - }, - "end": { - "$date": "2022-02-15T04:34:36.000Z" - }, - "events": [ - { - "uuid": "7635a696-3f21-4bf1-9147-4197733e2c15", - "start": { - "$date": "2022-02-15T03:06:26.000Z" - }, - "end": { - "$date": "2022-02-15T04:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "d87ca984-f6ee-4498-9150-5a7569adeebf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-15T04:20:10.000Z" - }, - "end": { - "$date": "2022-02-15T08:00:35.000Z" - }, - "events": [ - { - "uuid": "1923799b-1535-4a0c-bfba-51ad09e51447", - "start": { - "$date": "2022-02-15T04:20:10.000Z" - }, - "end": { - "$date": "2022-02-15T08:00:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c9509df1-aa50-4d04-807e-10f1e3939468", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-15T04:34:46.000Z" - }, - "end": { - "$date": "2022-02-15T06:02:02.000Z" - }, - "events": [ - { - "uuid": "e817f691-a4f9-49a1-b76d-bd1c9e9e8eef", - "start": { - "$date": "2022-02-15T04:34:46.000Z" - }, - "end": { - "$date": "2022-02-15T06:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b6dca8ba-5fa2-48df-898d-0e21eeed6fd8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-15T04:41:39.000Z" - }, - "end": { - "$date": "2022-02-15T06:05:50.000Z" - }, - "events": [ - { - "uuid": "cd8e7e81-e1be-433f-a76f-3e1513c78ee6", - "start": { - "$date": "2022-02-15T04:41:39.000Z" - }, - "end": { - "$date": "2022-02-15T06:05:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "309ff879-bafc-4a42-8032-4e5292c80c9f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-15T04:47:06.000Z" - }, - "end": { - "$date": "2022-02-15T04:48:51.000Z" - }, - "events": [ - { - "uuid": "7c65c966-a86b-409a-826e-1569d0fcb94b", - "start": { - "$date": "2022-02-15T04:47:06.000Z" - }, - "end": { - "$date": "2022-02-15T04:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "79106a7e-cfa9-4952-ac16-a7d9c5d2aa56", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-15T04:57:07.000Z" - }, - "end": { - "$date": "2022-02-15T05:09:12.000Z" - }, - "events": [ - { - "uuid": "c005a37d-7651-4d53-9c71-e29fa6764878", - "start": { - "$date": "2022-02-15T04:57:07.000Z" - }, - "end": { - "$date": "2022-02-15T05:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a4b7e79-81a0-43f7-8926-9e5c7d03cc5a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-15T05:09:15.000Z" - }, - "end": { - "$date": "2022-02-15T05:40:15.000Z" - }, - "events": [ - { - "uuid": "eb536db4-7cc8-45c9-a317-86725c16b7c9", - "start": { - "$date": "2022-02-15T05:09:15.000Z" - }, - "end": { - "$date": "2022-02-15T05:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36d094e1-40e4-4a9c-88eb-8c344a7f807f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-15T05:50:55.000Z" - }, - "end": { - "$date": "2022-02-15T06:07:30.000Z" - }, - "events": [ - { - "uuid": "17b9758e-be63-4bca-9969-e656608aec60", - "start": { - "$date": "2022-02-15T05:50:55.000Z" - }, - "end": { - "$date": "2022-02-15T06:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea40497c-1fb6-495c-9965-2a41d2b7c6f9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-15T05:46:51.000Z" - }, - "end": { - "$date": "2022-02-15T06:17:51.000Z" - }, - "events": [ - { - "uuid": "d54fc07c-2de8-48ac-9458-e95b604abc2b", - "start": { - "$date": "2022-02-15T05:46:51.000Z" - }, - "end": { - "$date": "2022-02-15T06:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91d0e514-5505-479f-bd0a-a2f6a16e7b29", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-15T06:24:07.000Z" - }, - "end": { - "$date": "2022-02-15T07:02:03.000Z" - }, - "events": [ - { - "uuid": "9e858d0a-5d48-4749-95c9-fe078be8abd8", - "start": { - "$date": "2022-02-15T06:24:07.000Z" - }, - "end": { - "$date": "2022-02-15T07:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "b12857c4-6573-4891-994c-9881b8ec2ccf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-15T08:02:46.000Z" - }, - "end": { - "$date": "2022-02-15T08:04:41.000Z" - }, - "events": [ - { - "uuid": "fed59e53-ef55-4725-8ced-9f976e869eb9", - "start": { - "$date": "2022-02-15T08:02:46.000Z" - }, - "end": { - "$date": "2022-02-15T08:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3aedae5a-971d-4ad2-ac2c-ca2a9b113c8f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-15T17:09:13.000Z" - }, - "end": { - "$date": "2022-02-15T17:27:23.000Z" - }, - "events": [ - { - "uuid": "a733638d-a93e-45f6-97a8-e110f71b75b7", - "start": { - "$date": "2022-02-15T17:09:13.000Z" - }, - "end": { - "$date": "2022-02-15T17:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "48b84a17-9175-4969-8b92-7301e45e4fa3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-15T17:39:25.000Z" - }, - "end": { - "$date": "2022-02-15T18:31:26.000Z" - }, - "events": [ - { - "uuid": "7290e11c-d8cc-491f-990b-102539800bf5", - "start": { - "$date": "2022-02-15T17:39:25.000Z" - }, - "end": { - "$date": "2022-02-15T18:31:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "5b60ae4a-8846-4159-afcc-5ca322ea7e52", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-15T21:39:24.000Z" - }, - "end": { - "$date": "2022-02-15T22:01:20.000Z" - }, - "events": [ - { - "uuid": "aefae9bc-0fe6-4ab6-ad82-c2409989bd01", - "start": { - "$date": "2022-02-15T21:39:24.000Z" - }, - "end": { - "$date": "2022-02-15T22:01:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "78a78f60-7eef-4ef0-8edf-e9442cb13922", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-15T22:00:13.000Z" - }, - "end": { - "$date": "2022-02-15T23:52:43.000Z" - }, - "events": [ - { - "uuid": "1f3cc4f5-57b7-4a26-986e-49e31e447245", - "start": { - "$date": "2022-02-15T22:00:13.000Z" - }, - "end": { - "$date": "2022-02-15T23:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "7152ac6f-341b-49b8-a6b9-796b78cad500", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-15T22:54:31.000Z" - }, - "end": { - "$date": "2022-02-15T23:31:42.000Z" - }, - "events": [ - { - "uuid": "3f6bc355-2258-4759-a3d3-d276d96dc295", - "start": { - "$date": "2022-02-15T22:54:31.000Z" - }, - "end": { - "$date": "2022-02-15T23:31:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "7a9c6b5a-9f28-4013-be82-00b4a88f28a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-15T23:45:03.000Z" - }, - "end": { - "$date": "2022-02-16T00:54:44.000Z" - }, - "events": [ - { - "uuid": "55498c9b-930a-4cbf-8152-3eaf16615640", - "start": { - "$date": "2022-02-15T23:45:03.000Z" - }, - "end": { - "$date": "2022-02-16T00:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af680ee2-e5b8-478d-941e-422e2051ed59", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-15T23:52:50.000Z" - }, - "end": { - "$date": "2022-02-16T00:12:59.000Z" - }, - "events": [ - { - "uuid": "3234a205-5b4e-438b-aeba-74b2265a6cda", - "start": { - "$date": "2022-02-15T23:52:50.000Z" - }, - "end": { - "$date": "2022-02-16T00:12:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "282c6490-2f31-4440-bd51-7d1155a0cf09", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-15T23:52:48.000Z" - }, - "end": { - "$date": "2022-02-16T01:22:40.000Z" - }, - "events": [ - { - "uuid": "daa3d3fe-2067-44fc-a47f-10f6210306fc", - "start": { - "$date": "2022-02-15T23:52:48.000Z" - }, - "end": { - "$date": "2022-02-16T01:22:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c7717094-a485-4acf-b023-513d5df9680e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-16T00:27:37.000Z" - }, - "end": { - "$date": "2022-02-16T00:29:57.000Z" - }, - "events": [ - { - "uuid": "25208b8c-1263-4d7f-ac09-5fdd3ff8e585", - "start": { - "$date": "2022-02-16T00:27:37.000Z" - }, - "end": { - "$date": "2022-02-16T00:29:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ee672c74-0d55-466a-8eb9-f8dc880d217b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-16T00:42:49.000Z" - }, - "end": { - "$date": "2022-02-16T00:54:35.000Z" - }, - "events": [ - { - "uuid": "0175a1f1-3dae-4832-894b-94d370c24a22", - "start": { - "$date": "2022-02-16T00:42:49.000Z" - }, - "end": { - "$date": "2022-02-16T00:54:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b7146dd0-2233-4f4e-a147-32752b60bd6b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-16T01:22:50.000Z" - }, - "end": { - "$date": "2022-02-16T04:03:09.000Z" - }, - "events": [ - { - "uuid": "5cdfb419-49ff-4042-b7ec-c2232c60b58e", - "start": { - "$date": "2022-02-16T01:22:50.000Z" - }, - "end": { - "$date": "2022-02-16T04:03:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "f63656a3-4ba5-4e14-970b-a8d015a68b30", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-16T02:01:52.000Z" - }, - "end": { - "$date": "2022-02-16T07:00:23.000Z" - }, - "events": [ - { - "uuid": "d4ac4b60-1bbc-481c-9b0c-dde5ed2c7aa1", - "start": { - "$date": "2022-02-16T02:01:52.000Z" - }, - "end": { - "$date": "2022-02-16T07:00:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9e82b9a4-c17e-46ae-b01c-c2107bda1247", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-16T02:19:47.000Z" - }, - "end": { - "$date": "2022-02-16T04:13:10.000Z" - }, - "events": [ - { - "uuid": "470e2b88-4833-4fdc-8836-d6fd27696835", - "start": { - "$date": "2022-02-16T02:19:47.000Z" - }, - "end": { - "$date": "2022-02-16T04:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "46466bd7-df0c-4cec-a7b6-a726204fe423", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-16T02:26:30.000Z" - }, - "end": { - "$date": "2022-02-16T08:56:36.000Z" - }, - "events": [ - { - "uuid": "2cbed051-35a7-4281-a925-93c2341ea17a", - "start": { - "$date": "2022-02-16T02:26:30.000Z" - }, - "end": { - "$date": "2022-02-16T08:56:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "88a7bdc8-8d42-4229-8967-80a8718aec56", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-16T02:48:37.000Z" - }, - "end": { - "$date": "2022-02-16T03:25:08.000Z" - }, - "events": [ - { - "uuid": "963f33ce-ce8f-4db2-a21d-d3ccae8a30cc", - "start": { - "$date": "2022-02-16T02:48:37.000Z" - }, - "end": { - "$date": "2022-02-16T03:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8d32b120-1b67-4120-b2b9-b4359954bee3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-16T03:13:14.000Z" - }, - "end": { - "$date": "2022-02-16T04:07:21.000Z" - }, - "events": [ - { - "uuid": "c40645d6-4d71-485a-b0b1-27a07e1db9fd", - "start": { - "$date": "2022-02-16T03:13:14.000Z" - }, - "end": { - "$date": "2022-02-16T04:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3fb7a863-7769-40db-8134-9f86bcdce07a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-16T04:11:56.000Z" - }, - "end": { - "$date": "2022-02-16T08:56:23.000Z" - }, - "events": [ - { - "uuid": "2eb6cdba-a0cc-45b3-b20a-8824d97ddf38", - "start": { - "$date": "2022-02-16T04:11:56.000Z" - }, - "end": { - "$date": "2022-02-16T08:56:23.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "19c7f882-991b-41c1-992f-49ce6c0a7dd7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-16T04:13:39.000Z" - }, - "end": { - "$date": "2022-02-16T08:56:21.000Z" - }, - "events": [ - { - "uuid": "c5af13e0-371e-44e5-8330-f98b8634e1f5", - "start": { - "$date": "2022-02-16T04:13:39.000Z" - }, - "end": { - "$date": "2022-02-16T08:56:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "62d7c360-f250-460e-8e1b-42a8ab5a81e5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-16T04:17:32.000Z" - }, - "end": { - "$date": "2022-02-16T06:51:13.000Z" - }, - "events": [ - { - "uuid": "513256bc-3b72-4b48-a9d9-6d8e720eae47", - "start": { - "$date": "2022-02-16T04:17:32.000Z" - }, - "end": { - "$date": "2022-02-16T06:51:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37817bb2-b72b-46e1-a73d-72ccc8cd99e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-16T04:32:27.000Z" - }, - "end": { - "$date": "2022-02-16T05:14:51.000Z" - }, - "events": [ - { - "uuid": "b7659d4c-5e94-445c-828e-65c48f8bfcb3", - "start": { - "$date": "2022-02-16T04:32:27.000Z" - }, - "end": { - "$date": "2022-02-16T05:14:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "40baa8cc-00e7-4683-ac36-183a3bed3908", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-16T04:45:05.000Z" - }, - "end": { - "$date": "2022-02-16T05:02:37.000Z" - }, - "events": [ - { - "uuid": "7a9e245b-de96-42a4-a487-bf00e430dbc2", - "start": { - "$date": "2022-02-16T04:45:05.000Z" - }, - "end": { - "$date": "2022-02-16T05:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "276a8db0-744d-47d1-bcc2-725231edbbad", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-02-16T04:48:11.000Z" - }, - "end": { - "$date": "2022-02-16T04:55:32.000Z" - }, - "events": [ - { - "uuid": "7f486739-e90f-4a98-9591-99b12ca825fc", - "start": { - "$date": "2022-02-16T04:48:11.000Z" - }, - "end": { - "$date": "2022-02-16T04:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "792d85d2-0e76-4389-884e-b506007c457b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T04:58:04.000Z" - }, - "end": { - "$date": "2022-02-16T05:46:49.000Z" - }, - "events": [ - { - "uuid": "9e7d7fe9-8dd1-4c41-abd6-1287316d6199", - "start": { - "$date": "2022-02-16T04:58:04.000Z" - }, - "end": { - "$date": "2022-02-16T05:46:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "97d163e0-dc64-49ad-a1ba-041e0be2c426", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-16T05:23:36.000Z" - }, - "end": { - "$date": "2022-02-16T07:34:35.000Z" - }, - "events": [ - { - "uuid": "8a9efa57-cbb2-4c33-9cf9-c9f90323bf18", - "start": { - "$date": "2022-02-16T05:23:36.000Z" - }, - "end": { - "$date": "2022-02-16T07:34:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "986d139c-59bf-43de-b9bb-779f3578f146", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-16T05:24:31.000Z" - }, - "end": { - "$date": "2022-02-16T06:14:58.000Z" - }, - "events": [ - { - "uuid": "1eb4489b-0ae6-4883-b732-2eb6b3eb11aa", - "start": { - "$date": "2022-02-16T05:24:31.000Z" - }, - "end": { - "$date": "2022-02-16T06:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "a773974c-be7d-4739-8e0e-63ad05d9e84b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-16T06:05:15.000Z" - }, - "end": { - "$date": "2022-02-16T06:46:46.000Z" - }, - "events": [ - { - "uuid": "103398d4-c1af-4f2f-ab1d-c03370bba14c", - "start": { - "$date": "2022-02-16T06:05:15.000Z" - }, - "end": { - "$date": "2022-02-16T06:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e4d9dd12-b271-4b81-888e-34495886d70e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-16T06:17:18.000Z" - }, - "end": { - "$date": "2022-02-16T07:34:33.000Z" - }, - "events": [ - { - "uuid": "5398be47-605c-4235-82b5-0bfdef6660e8", - "start": { - "$date": "2022-02-16T06:17:18.000Z" - }, - "end": { - "$date": "2022-02-16T07:34:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1ddb8d3e-1a56-4637-96e2-01886e6b4cec", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-16T06:36:41.000Z" - }, - "end": { - "$date": "2022-02-16T06:54:06.000Z" - }, - "events": [ - { - "uuid": "c135adad-4eb8-4b0e-80b9-8f873a025b48", - "start": { - "$date": "2022-02-16T06:36:41.000Z" - }, - "end": { - "$date": "2022-02-16T06:54:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86fa9deb-3d2f-430a-95e9-14aee890f087", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-16T06:57:56.000Z" - }, - "end": { - "$date": "2022-02-16T07:24:04.000Z" - }, - "events": [ - { - "uuid": "63b460e0-630c-43c5-898d-ad16c0278b12", - "start": { - "$date": "2022-02-16T06:57:56.000Z" - }, - "end": { - "$date": "2022-02-16T07:24:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "35d686c0-c73e-490f-8b36-a305a7ef976b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-16T09:37:34.000Z" - }, - "end": { - "$date": "2022-02-16T11:36:57.000Z" - }, - "events": [ - { - "uuid": "877bfc9b-be04-4698-a201-11dd59414202", - "start": { - "$date": "2022-02-16T09:37:34.000Z" - }, - "end": { - "$date": "2022-02-16T11:36:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e0ae03dd-ae08-4c5f-ba8e-8dd135c1e68b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-16T15:22:22.000Z" - }, - "end": { - "$date": "2022-02-16T15:42:51.000Z" - }, - "events": [ - { - "uuid": "72f32645-857e-463c-a614-2c0e7adcad72", - "start": { - "$date": "2022-02-16T15:22:22.000Z" - }, - "end": { - "$date": "2022-02-16T15:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b439f27e-d21d-4a4d-a6b1-5f4339f1ee8a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-16T15:43:48.000Z" - }, - "end": { - "$date": "2022-02-16T16:04:27.000Z" - }, - "events": [ - { - "uuid": "7f8135b8-33e6-48c2-8832-752112d6085f", - "start": { - "$date": "2022-02-16T15:43:48.000Z" - }, - "end": { - "$date": "2022-02-16T16:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdd771d9-4837-4a4d-ac0d-8e9bc88c4636", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T17:04:51.000Z" - }, - "end": { - "$date": "2022-02-16T17:17:01.000Z" - }, - "events": [ - { - "uuid": "e14e61e2-4ff0-4f22-afbe-d7b6f14ad876", - "start": { - "$date": "2022-02-16T17:04:51.000Z" - }, - "end": { - "$date": "2022-02-16T17:17:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25bc938f-5d7a-42b8-a6ff-6073640287ee", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T17:22:07.000Z" - }, - "end": { - "$date": "2022-02-16T17:43:55.000Z" - }, - "events": [ - { - "uuid": "52fecbb3-7764-4622-9d62-029496fe91b8", - "start": { - "$date": "2022-02-16T17:22:07.000Z" - }, - "end": { - "$date": "2022-02-16T17:43:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b56bf9cf-5ce0-47ae-a5d1-0bbfac38d11d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-16T17:20:32.000Z" - }, - "end": { - "$date": "2022-02-16T17:37:29.000Z" - }, - "events": [ - { - "uuid": "296cc67b-d41d-4d11-9a22-81de9648ad37", - "start": { - "$date": "2022-02-16T17:20:32.000Z" - }, - "end": { - "$date": "2022-02-16T17:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80846ba5-94da-4226-ac61-3af9fa23a777", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-16T17:28:32.000Z" - }, - "end": { - "$date": "2022-02-16T18:02:37.000Z" - }, - "events": [ - { - "uuid": "82df35b1-17ec-464a-b906-46e66c527245", - "start": { - "$date": "2022-02-16T17:28:32.000Z" - }, - "end": { - "$date": "2022-02-16T18:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bbc169fd-9c6f-4e15-a4da-d7e668fb1665", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-16T17:25:13.000Z" - }, - "end": { - "$date": "2022-02-16T18:06:44.000Z" - }, - "events": [ - { - "uuid": "71294211-5221-407b-a5a1-0b46d258d6ff", - "start": { - "$date": "2022-02-16T17:25:13.000Z" - }, - "end": { - "$date": "2022-02-16T18:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b58ae9e0-6c7a-41df-9f47-a234e2fecdb0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T17:47:05.000Z" - }, - "end": { - "$date": "2022-02-16T18:20:11.000Z" - }, - "events": [ - { - "uuid": "9838bf68-21a8-4093-a42c-085a910fe121", - "start": { - "$date": "2022-02-16T17:47:05.000Z" - }, - "end": { - "$date": "2022-02-16T18:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44c297e6-9772-4dae-9925-a31a0aa32b74", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-16T18:03:00.000Z" - }, - "end": { - "$date": "2022-02-16T18:17:29.000Z" - }, - "events": [ - { - "uuid": "3ef0d2df-ab2e-4c95-80e9-2be2127daae0", - "start": { - "$date": "2022-02-16T18:03:00.000Z" - }, - "end": { - "$date": "2022-02-16T18:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "48a4b47f-7588-4c97-8515-a740a8b546df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-16T18:19:10.000Z" - }, - "end": { - "$date": "2022-02-16T19:00:28.000Z" - }, - "events": [ - { - "uuid": "d7167d74-5e4e-40fa-890d-06914d0206e7", - "start": { - "$date": "2022-02-16T18:19:10.000Z" - }, - "end": { - "$date": "2022-02-16T19:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e96018ea-0670-47f0-8530-51309d968362", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T19:25:39.000Z" - }, - "end": { - "$date": "2022-02-16T19:57:20.000Z" - }, - "events": [ - { - "uuid": "aee360e0-f84e-477d-a51c-29e63457190e", - "start": { - "$date": "2022-02-16T19:25:39.000Z" - }, - "end": { - "$date": "2022-02-16T19:36:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa79eaa2-bb35-4e4e-889d-54740ee0dab8", - "start": { - "$date": "2022-02-16T19:36:39.000Z" - }, - "end": { - "$date": "2022-02-16T19:44:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db59582c-4a0a-40bf-9889-71358062f79b", - "start": { - "$date": "2022-02-16T19:44:39.000Z" - }, - "end": { - "$date": "2022-02-16T19:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "98f57a64-f504-4099-8fb1-064f7b3914c3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-16T19:56:56.000Z" - }, - "end": { - "$date": "2022-02-16T21:47:42.000Z" - }, - "events": [ - { - "uuid": "2c13ff87-d6c3-47c7-8210-24d6a9856f57", - "start": { - "$date": "2022-02-16T19:56:56.000Z" - }, - "end": { - "$date": "2022-02-16T21:47:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fe9ec6a-f23a-41b7-9959-ebee0f53812f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T19:58:05.000Z" - }, - "end": { - "$date": "2022-02-16T20:37:12.000Z" - }, - "events": [ - { - "uuid": "f3bbcb2e-f40c-4189-a6c3-ce82e1742971", - "start": { - "$date": "2022-02-16T19:58:05.000Z" - }, - "end": { - "$date": "2022-02-16T20:37:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "65131a7a-c466-4aa5-b950-6f6cc3cbeb73", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-16T20:37:57.000Z" - }, - "end": { - "$date": "2022-02-16T22:39:47.000Z" - }, - "events": [ - { - "uuid": "f60e5f74-6001-446a-82a0-e6f07714a5f8", - "start": { - "$date": "2022-02-16T20:37:57.000Z" - }, - "end": { - "$date": "2022-02-16T22:39:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "0459eaf3-6595-4475-aef4-920a6b283af5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-16T22:07:14.000Z" - }, - "end": { - "$date": "2022-02-16T22:35:33.000Z" - }, - "events": [ - { - "uuid": "78a8a995-b748-4c10-a656-87e2c056f68c", - "start": { - "$date": "2022-02-16T22:07:14.000Z" - }, - "end": { - "$date": "2022-02-16T22:41:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25b8e533-fc49-457a-8a59-dabdf27b00cb", - "start": { - "$date": "2022-02-16T22:41:14.000Z" - }, - "end": { - "$date": "2022-02-16T22:35:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5d0696b5-d15f-4daa-aa96-dd00858d8a1a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-16T22:02:40.000Z" - }, - "end": { - "$date": "2022-02-16T22:50:41.000Z" - }, - "events": [ - { - "uuid": "3378064f-ba41-436f-acbf-7eb9a1eb9dd6", - "start": { - "$date": "2022-02-16T22:02:40.000Z" - }, - "end": { - "$date": "2022-02-16T22:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d09891f-8d72-4fe0-a9bc-2e43e93d5735", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-16T22:18:18.000Z" - }, - "end": { - "$date": "2022-02-16T22:37:34.000Z" - }, - "events": [ - { - "uuid": "6af7ab16-14f6-4e31-b44d-b181b50e5d16", - "start": { - "$date": "2022-02-16T22:18:18.000Z" - }, - "end": { - "$date": "2022-02-16T22:37:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "84664ae6-2e2b-48f2-8109-a6d35f8fdad6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-16T22:59:57.000Z" - }, - "end": { - "$date": "2022-02-17T02:38:10.000Z" - }, - "events": [ - { - "uuid": "db4bb635-2854-4c5b-82f9-5022ac3534a4", - "start": { - "$date": "2022-02-16T22:59:57.000Z" - }, - "end": { - "$date": "2022-02-17T02:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "d4987741-a618-4031-9720-300d52e5704f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-16T23:04:07.000Z" - }, - "end": { - "$date": "2022-02-16T23:05:20.000Z" - }, - "events": [ - { - "uuid": "ef6bb507-09a4-4e8f-93d0-b1caaf443360", - "start": { - "$date": "2022-02-16T23:04:07.000Z" - }, - "end": { - "$date": "2022-02-16T23:05:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "44c5fd77-5b24-44e2-a08d-569a67f20a30", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-16T23:12:03.000Z" - }, - "end": { - "$date": "2022-02-16T23:29:54.000Z" - }, - "events": [ - { - "uuid": "3108e938-85cf-4613-89c8-f4454621c4f3", - "start": { - "$date": "2022-02-16T23:12:03.000Z" - }, - "end": { - "$date": "2022-02-16T23:29:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ae7cd424-ed5b-4fd9-8446-080f9b9bc2b4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-16T23:15:30.000Z" - }, - "end": { - "$date": "2022-02-16T23:39:36.000Z" - }, - "events": [ - { - "uuid": "c4b5b84c-c297-4afc-95af-aca8ad042280", - "start": { - "$date": "2022-02-16T23:15:30.000Z" - }, - "end": { - "$date": "2022-02-16T23:39:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "033646d7-cb2b-479a-b892-d40930412c68", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-16T23:30:12.000Z" - }, - "end": { - "$date": "2022-02-16T23:57:26.000Z" - }, - "events": [ - { - "uuid": "694757cd-104e-4abb-a811-177487e2a5cc", - "start": { - "$date": "2022-02-16T23:30:12.000Z" - }, - "end": { - "$date": "2022-02-16T23:57:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "95d409e6-d6d9-46e3-8093-03accc9f7a21", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-16T23:40:05.000Z" - }, - "end": { - "$date": "2022-02-17T02:05:38.000Z" - }, - "events": [ - { - "uuid": "9df978c0-20fb-46d9-9f69-6961f972fd2d", - "start": { - "$date": "2022-02-16T23:40:05.000Z" - }, - "end": { - "$date": "2022-02-17T02:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "172f2100-9c1c-4104-b070-0a5ca3ffb672", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-16T23:59:39.000Z" - }, - "end": { - "$date": "2022-02-17T00:02:17.000Z" - }, - "events": [ - { - "uuid": "248cfc12-48cd-4464-b13a-e7d4596bc8f1", - "start": { - "$date": "2022-02-16T23:59:39.000Z" - }, - "end": { - "$date": "2022-02-17T00:02:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "c1e38c52-b3e8-4066-b715-543148997a02", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-17T00:06:20.000Z" - }, - "end": { - "$date": "2022-02-17T00:11:28.000Z" - }, - "events": [ - { - "uuid": "53bf507f-9308-415d-914e-e47aa844ed18", - "start": { - "$date": "2022-02-17T00:06:20.000Z" - }, - "end": { - "$date": "2022-02-17T00:11:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "17676d12-6acc-4e5e-a6bc-1a3e0cc4514d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-17T00:32:04.000Z" - }, - "end": { - "$date": "2022-02-17T02:03:47.000Z" - }, - "events": [ - { - "uuid": "0ab86c13-b9e6-4b0a-b332-41957a6fb11b", - "start": { - "$date": "2022-02-17T00:32:04.000Z" - }, - "end": { - "$date": "2022-02-17T02:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "463edd40-dd21-4143-b9aa-311beeeb8699", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-17T00:33:53.000Z" - }, - "end": { - "$date": "2022-02-17T00:40:31.000Z" - }, - "events": [ - { - "uuid": "a3e68214-ba88-4802-81ec-25a1b899d795", - "start": { - "$date": "2022-02-17T00:33:53.000Z" - }, - "end": { - "$date": "2022-02-17T00:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b4ac05b1-8b81-4fe8-b24e-2f93a50b1343", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-17T00:43:15.000Z" - }, - "end": { - "$date": "2022-02-17T00:50:29.000Z" - }, - "events": [ - { - "uuid": "a8cbcf07-2687-4a23-a994-34696ef6ced5", - "start": { - "$date": "2022-02-17T00:43:15.000Z" - }, - "end": { - "$date": "2022-02-17T00:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "f263d499-331b-48d2-9ffb-93283caad32f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-17T00:56:46.000Z" - }, - "end": { - "$date": "2022-02-17T02:04:52.000Z" - }, - "events": [ - { - "uuid": "d6a0ffb9-13f7-405b-9aff-1b2f7de58d32", - "start": { - "$date": "2022-02-17T00:56:46.000Z" - }, - "end": { - "$date": "2022-02-17T02:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b511862-754f-4c78-9ea0-d71329cb8501", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-17T01:12:59.000Z" - }, - "end": { - "$date": "2022-02-17T01:30:10.000Z" - }, - "events": [ - { - "uuid": "d3486d14-eeb8-48aa-beef-670269445316", - "start": { - "$date": "2022-02-17T01:12:59.000Z" - }, - "end": { - "$date": "2022-02-17T01:30:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e232660d-16ae-49dc-a923-df8f704debdf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T01:13:21.000Z" - }, - "end": { - "$date": "2022-02-17T01:35:11.000Z" - }, - "events": [ - { - "uuid": "e3a72543-2929-4b04-8e4b-35a84eec8e66", - "start": { - "$date": "2022-02-17T01:13:21.000Z" - }, - "end": { - "$date": "2022-02-17T01:35:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57441d05-1d85-4696-bbfa-766beea2b145", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-17T01:32:50.000Z" - }, - "end": { - "$date": "2022-02-17T02:02:06.000Z" - }, - "events": [ - { - "uuid": "bd1dd0ef-890c-4265-8cc1-be2fb52b1537", - "start": { - "$date": "2022-02-17T01:32:50.000Z" - }, - "end": { - "$date": "2022-02-17T02:02:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fdbb3f59-3800-4600-8b49-5c471a42df61", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T01:46:03.000Z" - }, - "end": { - "$date": "2022-02-17T02:42:01.000Z" - }, - "events": [ - { - "uuid": "9be40ba8-6ff1-4b0e-922c-74da0ab71fb4", - "start": { - "$date": "2022-02-17T01:46:03.000Z" - }, - "end": { - "$date": "2022-02-17T02:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "67bae5c2-05c5-43bd-b2f1-3030ea3f47b5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-17T01:48:30.000Z" - }, - "end": { - "$date": "2022-02-17T02:00:13.000Z" - }, - "events": [ - { - "uuid": "4fc6cd7c-ebf4-49d4-bbd6-93d67590d1e2", - "start": { - "$date": "2022-02-17T01:48:30.000Z" - }, - "end": { - "$date": "2022-02-17T02:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e2dd8016-f38e-4240-9cfc-60de44a8caba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-17T01:51:11.000Z" - }, - "end": { - "$date": "2022-02-17T02:42:17.000Z" - }, - "events": [ - { - "uuid": "ce97f4a2-afb2-4783-a1bc-65e5f3b3da62", - "start": { - "$date": "2022-02-17T01:51:11.000Z" - }, - "end": { - "$date": "2022-02-17T02:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "77f85200-ba52-488d-8c8b-897c70a99807", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-17T02:00:46.000Z" - }, - "end": { - "$date": "2022-02-17T02:42:14.000Z" - }, - "events": [ - { - "uuid": "4c0ead7b-1208-44dd-b464-534ac5f89597", - "start": { - "$date": "2022-02-17T02:00:46.000Z" - }, - "end": { - "$date": "2022-02-17T02:42:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b437e74a-8f74-4ad9-aaea-702a1f5c8457", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-17T02:32:04.000Z" - }, - "end": { - "$date": "2022-02-17T02:40:25.000Z" - }, - "events": [ - { - "uuid": "dba883f6-082f-4da8-b294-12dbcb242221", - "start": { - "$date": "2022-02-17T02:32:04.000Z" - }, - "end": { - "$date": "2022-02-17T02:40:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "2cdbdc63-69f5-4c20-ae0e-93e52b61806d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-17T02:38:20.000Z" - }, - "end": { - "$date": "2022-02-17T04:00:42.000Z" - }, - "events": [ - { - "uuid": "5031037b-f49e-4939-9010-263b3b497bb5", - "start": { - "$date": "2022-02-17T02:38:20.000Z" - }, - "end": { - "$date": "2022-02-17T04:00:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e88150e7-81e3-483d-adfb-d3c67dd30508", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-17T02:44:44.000Z" - }, - "end": { - "$date": "2022-02-17T02:47:06.000Z" - }, - "events": [ - { - "uuid": "4360377a-83a3-42f3-bd90-a3688351f7df", - "start": { - "$date": "2022-02-17T02:44:44.000Z" - }, - "end": { - "$date": "2022-02-17T02:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "05f0ab40-1658-4733-b2d5-4ca36a9450fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-17T03:03:06.000Z" - }, - "end": { - "$date": "2022-02-17T03:13:59.000Z" - }, - "events": [ - { - "uuid": "4872211c-06c9-4a11-a56f-50b08f709fb6", - "start": { - "$date": "2022-02-17T03:03:06.000Z" - }, - "end": { - "$date": "2022-02-17T03:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "cfb87fc1-4bbb-4717-9c1e-b12499767365", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-17T03:08:37.000Z" - }, - "end": { - "$date": "2022-02-17T03:55:55.000Z" - }, - "events": [ - { - "uuid": "3f9fa361-c926-4933-8ec5-5acbb5d2beba", - "start": { - "$date": "2022-02-17T03:08:37.000Z" - }, - "end": { - "$date": "2022-02-17T03:55:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "ae31259c-2d94-4127-b88c-3e9d5137c940", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-17T03:10:01.000Z" - }, - "end": { - "$date": "2022-02-17T04:02:23.000Z" - }, - "events": [ - { - "uuid": "0659299b-98c8-4a7e-93ad-29d7ad68afed", - "start": { - "$date": "2022-02-17T03:10:01.000Z" - }, - "end": { - "$date": "2022-02-17T04:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e8ac1fe6-62ae-48a3-a8f0-8f59b7430be7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-17T03:14:11.000Z" - }, - "end": { - "$date": "2022-02-17T04:01:44.000Z" - }, - "events": [ - { - "uuid": "4b2abd35-39e9-4668-bcb6-46e00a983286", - "start": { - "$date": "2022-02-17T03:14:11.000Z" - }, - "end": { - "$date": "2022-02-17T04:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5a469729-a1ec-4b60-a7c9-153af139d331", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-02-17T03:38:20.000Z" - }, - "end": { - "$date": "2022-02-17T05:43:01.000Z" - }, - "events": [ - { - "uuid": "785b0f91-66d9-47c4-aed7-6dbde78c43c5", - "start": { - "$date": "2022-02-17T03:38:20.000Z" - }, - "end": { - "$date": "2022-02-17T05:43:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cfe14380-1f8f-4585-8268-704992fffa3e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-17T03:39:04.000Z" - }, - "end": { - "$date": "2022-02-17T05:44:38.000Z" - }, - "events": [ - { - "uuid": "d26295e7-f2ad-4ed1-9b98-ac79552360c7", - "start": { - "$date": "2022-02-17T03:39:04.000Z" - }, - "end": { - "$date": "2022-02-17T05:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "35f6bc83-cf44-4d1d-acc1-37d95e4a9037", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-17T03:39:11.000Z" - }, - "end": { - "$date": "2022-02-17T04:01:31.000Z" - }, - "events": [ - { - "uuid": "419db027-0c31-41c6-9011-11d4564f8a60", - "start": { - "$date": "2022-02-17T03:39:11.000Z" - }, - "end": { - "$date": "2022-02-17T04:01:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "f026706b-b33d-4076-8600-cb65858b6129", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-17T04:01:00.000Z" - }, - "end": { - "$date": "2022-02-17T04:10:42.000Z" - }, - "events": [ - { - "uuid": "5864f589-309b-4554-a7ae-c64ffd8fa386", - "start": { - "$date": "2022-02-17T04:01:00.000Z" - }, - "end": { - "$date": "2022-02-17T04:10:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4de9e69b-3847-469b-9daa-5fb13338ecc3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-17T04:02:06.000Z" - }, - "end": { - "$date": "2022-02-17T06:10:05.000Z" - }, - "events": [ - { - "uuid": "854f46ef-5e5d-4be6-a731-6d4859f0d3ae", - "start": { - "$date": "2022-02-17T04:02:06.000Z" - }, - "end": { - "$date": "2022-02-17T06:10:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a7a8aaf0-3973-41c1-8d85-c265e6d5aa71", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-17T04:03:28.000Z" - }, - "end": { - "$date": "2022-02-17T06:39:19.000Z" - }, - "events": [ - { - "uuid": "07d8dde1-2f37-4af6-94c4-2abedcae17cb", - "start": { - "$date": "2022-02-17T04:03:28.000Z" - }, - "end": { - "$date": "2022-02-17T06:39:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9bcf49c-4558-4ebc-9653-930c4a5c122c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-17T04:11:38.000Z" - }, - "end": { - "$date": "2022-02-17T04:48:28.000Z" - }, - "events": [ - { - "uuid": "e78860d3-ae59-4e14-8101-31bac6dacd19", - "start": { - "$date": "2022-02-17T04:11:38.000Z" - }, - "end": { - "$date": "2022-02-17T04:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "5db30e0f-184b-4a9a-8a25-b5e4fbeb2d21", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-17T04:34:26.000Z" - }, - "end": { - "$date": "2022-02-17T04:36:17.000Z" - }, - "events": [ - { - "uuid": "b374d948-2155-4935-8d08-14b176877cdc", - "start": { - "$date": "2022-02-17T04:34:26.000Z" - }, - "end": { - "$date": "2022-02-17T04:36:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6c8c22fa-6c49-4339-9c19-20668618bbe2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T04:41:19.000Z" - }, - "end": { - "$date": "2022-02-17T04:47:48.000Z" - }, - "events": [ - { - "uuid": "1df67cf5-b224-4a94-ad21-85e3457082dd", - "start": { - "$date": "2022-02-17T04:41:19.000Z" - }, - "end": { - "$date": "2022-02-17T04:47:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e712a67-069d-4e9e-a54b-e33e58bff105", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-17T04:52:29.000Z" - }, - "end": { - "$date": "2022-02-17T05:25:44.000Z" - }, - "events": [ - { - "uuid": "b91a2e60-aa32-4a73-ab74-6fa7f949cd87", - "start": { - "$date": "2022-02-17T04:52:29.000Z" - }, - "end": { - "$date": "2022-02-17T05:25:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fdfe628e-f1f8-4e70-8fb5-fc4f51e0a1c2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-17T05:04:00.000Z" - }, - "end": { - "$date": "2022-02-17T05:48:10.000Z" - }, - "events": [ - { - "uuid": "b6181b1f-f025-4d55-92b3-032f64d8b3b9", - "start": { - "$date": "2022-02-17T05:04:00.000Z" - }, - "end": { - "$date": "2022-02-17T05:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3531b1a-0fd9-4d28-9587-d1724a0d46c9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-17T05:26:14.000Z" - }, - "end": { - "$date": "2022-02-17T06:33:53.000Z" - }, - "events": [ - { - "uuid": "f179831d-115b-400d-902f-ab40fb10d501", - "start": { - "$date": "2022-02-17T05:26:14.000Z" - }, - "end": { - "$date": "2022-02-17T06:24:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89bf8bb8-14ae-4cdd-819b-48069385d334", - "start": { - "$date": "2022-02-17T06:24:14.000Z" - }, - "end": { - "$date": "2022-02-17T06:27:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d216aa01-c332-49a2-a0d6-d33644e870f2", - "start": { - "$date": "2022-02-17T06:27:14.000Z" - }, - "end": { - "$date": "2022-02-17T06:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "64860ca4-d9d6-4136-91f0-21069459711a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-17T05:48:17.000Z" - }, - "end": { - "$date": "2022-02-17T06:38:48.000Z" - }, - "events": [ - { - "uuid": "8815fb61-3e36-4e23-b2ac-f8344646f814", - "start": { - "$date": "2022-02-17T05:48:17.000Z" - }, - "end": { - "$date": "2022-02-17T06:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "932eb259-a8bd-478a-919e-92f695385bcd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-17T11:39:08.000Z" - }, - "end": { - "$date": "2022-02-17T12:26:17.000Z" - }, - "events": [ - { - "uuid": "5a46bf29-8958-4859-b922-4510d82586f7", - "start": { - "$date": "2022-02-17T11:39:08.000Z" - }, - "end": { - "$date": "2022-02-17T12:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2c6c338-d39e-4f3f-a575-16741d2cd69e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-17T15:31:27.000Z" - }, - "end": { - "$date": "2022-02-17T16:10:31.000Z" - }, - "events": [ - { - "uuid": "e4b21ab7-3f20-4a2f-8795-7808b848cd88", - "start": { - "$date": "2022-02-17T15:31:27.000Z" - }, - "end": { - "$date": "2022-02-17T16:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7c9581a-6fe7-4331-9680-e75ae4efe555", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T15:31:58.000Z" - }, - "end": { - "$date": "2022-02-17T15:51:18.000Z" - }, - "events": [ - { - "uuid": "6b1ab8b8-7e5f-41d4-97cc-b9cf01c75a22", - "start": { - "$date": "2022-02-17T15:31:58.000Z" - }, - "end": { - "$date": "2022-02-17T15:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "611dba93-38b1-4fc8-baee-7418f2e7a2fa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T15:52:09.000Z" - }, - "end": { - "$date": "2022-02-17T16:12:19.000Z" - }, - "events": [ - { - "uuid": "7c81fbe8-e77d-423d-b14c-5ee10a8b1c11", - "start": { - "$date": "2022-02-17T15:52:09.000Z" - }, - "end": { - "$date": "2022-02-17T16:12:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "855a7447-f205-4ee6-ad6f-d7bc46e519e2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-17T16:22:40.000Z" - }, - "end": { - "$date": "2022-02-17T16:40:26.000Z" - }, - "events": [ - { - "uuid": "766b4d15-d9d9-41c5-b997-ee6d8ae097e6", - "start": { - "$date": "2022-02-17T16:22:40.000Z" - }, - "end": { - "$date": "2022-02-17T16:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "22635bd4-9f4a-4cc3-8cbe-9bed6195a164", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-17T17:08:31.000Z" - }, - "end": { - "$date": "2022-02-17T19:40:44.000Z" - }, - "events": [ - { - "uuid": "cd7e561b-31f6-4013-9f45-cdc868bbba7b", - "start": { - "$date": "2022-02-17T17:08:31.000Z" - }, - "end": { - "$date": "2022-02-17T19:40:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "35a77c9e-64b9-41d7-8a77-c577e2f5f0a8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-17T17:21:42.000Z" - }, - "end": { - "$date": "2022-02-17T17:40:03.000Z" - }, - "events": [ - { - "uuid": "5cd50ae8-c2dd-472d-806a-5e52ef5ff882", - "start": { - "$date": "2022-02-17T17:21:42.000Z" - }, - "end": { - "$date": "2022-02-17T17:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "17ee0804-eef9-4493-9c10-eadb7227aa40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-17T17:34:39.000Z" - }, - "end": { - "$date": "2022-02-17T18:32:04.000Z" - }, - "events": [ - { - "uuid": "7b0e4ac1-3563-4a86-a039-d00b911dd85e", - "start": { - "$date": "2022-02-17T17:34:39.000Z" - }, - "end": { - "$date": "2022-02-17T18:32:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3454490f-78b6-438e-a1e4-e08a2fef6ec5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-17T18:07:22.000Z" - }, - "end": { - "$date": "2022-02-17T18:35:43.000Z" - }, - "events": [ - { - "uuid": "08cb8957-86e7-41ad-801a-8e7c81426fa2", - "start": { - "$date": "2022-02-17T18:07:22.000Z" - }, - "end": { - "$date": "2022-02-17T18:35:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfe7afcd-c6f3-478e-aae3-89251063fdbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T18:28:17.000Z" - }, - "end": { - "$date": "2022-02-17T18:43:21.000Z" - }, - "events": [ - { - "uuid": "190f3fc1-ebf5-4c33-b857-dce836b6715d", - "start": { - "$date": "2022-02-17T18:28:17.000Z" - }, - "end": { - "$date": "2022-02-17T18:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "56ee5e19-8599-433e-bed1-c71ea37d5c82", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-17T22:13:05.000Z" - }, - "end": { - "$date": "2022-02-17T22:18:16.000Z" - }, - "events": [ - { - "uuid": "5a654b50-db49-43f4-9903-3b58345d6ffe", - "start": { - "$date": "2022-02-17T22:13:05.000Z" - }, - "end": { - "$date": "2022-02-17T22:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "2f5df497-87a0-4ba1-b126-b2921bbb61d4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T21:02:51.000Z" - }, - "end": { - "$date": "2022-02-17T21:04:07.000Z" - }, - "events": [ - { - "uuid": "09bf4661-e616-44de-b6a7-6df85a8da105", - "start": { - "$date": "2022-02-17T21:02:51.000Z" - }, - "end": { - "$date": "2022-02-17T21:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "41bbc09c-e8f3-4253-ae0c-cb8c89dece7a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-17T21:04:17.000Z" - }, - "end": { - "$date": "2022-02-17T21:31:21.000Z" - }, - "events": [ - { - "uuid": "172e0660-3d08-49e8-bee8-2da4e4fed638", - "start": { - "$date": "2022-02-17T21:04:17.000Z" - }, - "end": { - "$date": "2022-02-17T21:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f0225bc5-8957-422a-941b-cbfa7bc9bd34", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-17T22:03:32.000Z" - }, - "end": { - "$date": "2022-02-18T00:01:37.000Z" - }, - "events": [ - { - "uuid": "bf357389-cd46-4b50-8fb9-086666e4a599", - "start": { - "$date": "2022-02-17T22:03:32.000Z" - }, - "end": { - "$date": "2022-02-18T00:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c26be422-b5bd-4347-a8c2-358565f2b408", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-17T22:18:26.000Z" - }, - "end": { - "$date": "2022-02-17T23:55:14.000Z" - }, - "events": [ - { - "uuid": "b4029147-8c8e-48d9-8257-289fc3549aa3", - "start": { - "$date": "2022-02-17T22:18:26.000Z" - }, - "end": { - "$date": "2022-02-17T23:55:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7c04edd6-982a-4189-9781-5aa80de2d942", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-17T22:58:38.000Z" - }, - "end": { - "$date": "2022-02-17T23:07:40.000Z" - }, - "events": [ - { - "uuid": "2f28ba5d-7e38-47c4-a862-a6016bf6c88d", - "start": { - "$date": "2022-02-17T22:58:38.000Z" - }, - "end": { - "$date": "2022-02-17T23:07:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1f54164d-e498-42b0-a6b3-3d198ed67f12", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T00:02:22.000Z" - }, - "end": { - "$date": "2022-02-18T00:27:43.000Z" - }, - "events": [ - { - "uuid": "bd475130-f315-4ae4-a0f8-d0f5e2151f8c", - "start": { - "$date": "2022-02-18T00:02:22.000Z" - }, - "end": { - "$date": "2022-02-18T00:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "52a8a991-34f1-4d41-8ea1-e4272af3f9c5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T00:29:53.000Z" - }, - "end": { - "$date": "2022-02-18T05:08:09.000Z" - }, - "events": [ - { - "uuid": "f169e38c-dfeb-4343-aa58-5fe41fd31313", - "start": { - "$date": "2022-02-18T00:29:53.000Z" - }, - "end": { - "$date": "2022-02-18T02:45:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bba0454f-84a3-4e76-a081-742585eb8fa2", - "start": { - "$date": "2022-02-18T02:45:53.000Z" - }, - "end": { - "$date": "2022-02-18T03:37:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5228a5c9-6134-429e-b37c-b83877cc0ac7", - "start": { - "$date": "2022-02-18T03:37:53.000Z" - }, - "end": { - "$date": "2022-02-18T05:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ce1bb00a-abfb-4652-bfff-ab8679e29b9d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-18T00:43:30.000Z" - }, - "end": { - "$date": "2022-02-18T00:46:55.000Z" - }, - "events": [ - { - "uuid": "c672012e-b88c-48bc-ad79-e259723534b0", - "start": { - "$date": "2022-02-18T00:43:30.000Z" - }, - "end": { - "$date": "2022-02-18T00:46:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ce9d7220-d82c-4d51-9ebe-1a0ea2c6aab3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-18T00:46:31.000Z" - }, - "end": { - "$date": "2022-02-18T01:32:43.000Z" - }, - "events": [ - { - "uuid": "99ce2a31-8ad4-48dc-b8d4-bafe99694798", - "start": { - "$date": "2022-02-18T00:46:31.000Z" - }, - "end": { - "$date": "2022-02-18T01:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1e14c5b2-654a-4f0e-b881-a9ca1af82fd7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-18T01:02:36.000Z" - }, - "end": { - "$date": "2022-02-18T01:05:57.000Z" - }, - "events": [ - { - "uuid": "562c7ad5-8120-4d1f-9228-8fef4a29a0f6", - "start": { - "$date": "2022-02-18T01:02:36.000Z" - }, - "end": { - "$date": "2022-02-18T01:05:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "0faa5f16-ea36-44ef-9e51-a9c93289c8a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-18T01:44:13.000Z" - }, - "end": { - "$date": "2022-02-18T02:34:11.000Z" - }, - "events": [ - { - "uuid": "31d84a1f-9816-403e-b074-b0c4df0662cb", - "start": { - "$date": "2022-02-18T01:44:13.000Z" - }, - "end": { - "$date": "2022-02-18T02:34:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ffb532bc-c559-4c1c-a9fb-e1f462e82405", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-18T02:01:08.000Z" - }, - "end": { - "$date": "2022-02-18T03:46:21.000Z" - }, - "events": [ - { - "uuid": "6535601e-1883-4f65-a721-bab7d971a8ac", - "start": { - "$date": "2022-02-18T02:01:08.000Z" - }, - "end": { - "$date": "2022-02-18T03:46:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "73ea8893-b5c2-46ff-9f34-9ab707a3e9da", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-18T02:29:53.000Z" - }, - "end": { - "$date": "2022-02-18T07:38:20.000Z" - }, - "events": [ - { - "uuid": "1d226d69-b45d-4f0b-b038-25fcb8c27bfe", - "start": { - "$date": "2022-02-18T02:29:53.000Z" - }, - "end": { - "$date": "2022-02-18T07:38:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "8e1c34e3-00fa-4f00-9000-3995b7d71d83", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-18T02:31:52.000Z" - }, - "end": { - "$date": "2022-02-18T02:57:12.000Z" - }, - "events": [ - { - "uuid": "3d3f5fda-fbe0-4fc1-b304-202bf42d41a9", - "start": { - "$date": "2022-02-18T02:31:52.000Z" - }, - "end": { - "$date": "2022-02-18T02:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b22132ed-2d84-4cb0-b496-237d35c9f302", - "uuid": "5e7771d7-b8c0-4115-8bd6-5e1b23b14332", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-18T02:35:51.000Z" - }, - "end": { - "$date": "2022-02-18T02:46:17.000Z" - }, - "events": [ - { - "uuid": "1bf1da39-18ee-4d45-b416-28bd0f19d21e", - "start": { - "$date": "2022-02-18T02:35:51.000Z" - }, - "end": { - "$date": "2022-02-18T02:46:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "915e38d9-52c0-4876-a36a-c79fe30e9e39", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-18T03:33:00.000Z" - }, - "end": { - "$date": "2022-02-18T03:55:51.000Z" - }, - "events": [ - { - "uuid": "78cf76a3-7eaf-4a7e-ad01-e0ebbe66d564", - "start": { - "$date": "2022-02-18T03:33:00.000Z" - }, - "end": { - "$date": "2022-02-18T03:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "4dd4e8ce-46c7-4acd-a8cb-05e75aa1c7a8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-18T04:00:32.000Z" - }, - "end": { - "$date": "2022-02-18T05:09:21.000Z" - }, - "events": [ - { - "uuid": "fab2899a-6eb6-4f91-9daa-a61101d34c47", - "start": { - "$date": "2022-02-18T04:00:32.000Z" - }, - "end": { - "$date": "2022-02-18T05:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "12d6e7cb-0273-4b24-8a02-225a07467e6e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-18T04:56:28.000Z" - }, - "end": { - "$date": "2022-02-18T07:06:13.000Z" - }, - "events": [ - { - "uuid": "794b9008-d381-4057-8a9c-68337f49339a", - "start": { - "$date": "2022-02-18T04:56:28.000Z" - }, - "end": { - "$date": "2022-02-18T07:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "6cfed215-83ff-47f5-8dbd-e375d25e6c9d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-18T05:10:21.000Z" - }, - "end": { - "$date": "2022-02-18T06:11:49.000Z" - }, - "events": [ - { - "uuid": "8f8e7ebc-4fd3-4fce-93b1-ef36a4946291", - "start": { - "$date": "2022-02-18T05:10:21.000Z" - }, - "end": { - "$date": "2022-02-18T06:11:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b00f7047-82f7-4b7e-9635-8d6b8c0b8e37", - "uuid": "fa9b9c16-7590-4fb0-8381-d500724e7721", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T05:39:27.000Z" - }, - "end": { - "$date": "2022-02-18T06:04:38.000Z" - }, - "events": [ - { - "uuid": "e271c76a-faaa-463a-bbaf-a9092539130e", - "start": { - "$date": "2022-02-18T05:39:27.000Z" - }, - "end": { - "$date": "2022-02-18T06:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5b245d34-6202-4e5a-9131-85379be1a205", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-18T05:51:05.000Z" - }, - "end": { - "$date": "2022-02-18T06:07:33.000Z" - }, - "events": [ - { - "uuid": "b46ece53-c0ff-4be6-baea-0732c7030936", - "start": { - "$date": "2022-02-18T05:51:05.000Z" - }, - "end": { - "$date": "2022-02-18T06:07:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "5626d103-3bdd-47a9-9358-1552e7f06937", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-18T06:08:19.000Z" - }, - "end": { - "$date": "2022-02-18T08:05:36.000Z" - }, - "events": [ - { - "uuid": "0faa9e66-7d95-4fed-8f76-a3831ca4112c", - "start": { - "$date": "2022-02-18T06:08:19.000Z" - }, - "end": { - "$date": "2022-02-18T08:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3bc47b54-5713-499b-87a6-622b3ab6aa19", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-18T06:12:09.000Z" - }, - "end": { - "$date": "2022-02-18T08:02:56.000Z" - }, - "events": [ - { - "uuid": "abac1f50-384f-4ce2-a7b6-3adfad73e1f5", - "start": { - "$date": "2022-02-18T06:12:09.000Z" - }, - "end": { - "$date": "2022-02-18T08:02:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "6c499cf1-06f7-4ff4-a3f9-f2f3c6697f0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T06:19:14.000Z" - }, - "end": { - "$date": "2022-02-18T08:05:11.000Z" - }, - "events": [ - { - "uuid": "eee3cdfd-c865-41db-a624-ea84a997acc8", - "start": { - "$date": "2022-02-18T06:19:14.000Z" - }, - "end": { - "$date": "2022-02-18T08:05:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "87e03efd-25a0-406f-8283-86ea39b0575d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-18T07:51:37.000Z" - }, - "end": { - "$date": "2022-02-18T10:57:24.000Z" - }, - "events": [ - { - "uuid": "84a8e6e8-f8ec-46f6-9f22-010e3da1a5fc", - "start": { - "$date": "2022-02-18T07:51:37.000Z" - }, - "end": { - "$date": "2022-02-18T10:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7034c9cb-e363-45fb-8f1d-c5f396c57c21", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T14:54:05.000Z" - }, - "end": { - "$date": "2022-02-18T15:31:07.000Z" - }, - "events": [ - { - "uuid": "d74242e6-44a1-414d-b64e-f09bf76dae69", - "start": { - "$date": "2022-02-18T14:54:05.000Z" - }, - "end": { - "$date": "2022-02-18T15:31:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "df4a50bb-2c0b-4722-a477-def7c59fa6fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T15:31:22.000Z" - }, - "end": { - "$date": "2022-02-18T16:01:46.000Z" - }, - "events": [ - { - "uuid": "4326c0d6-2e7e-455b-8d42-786bf5c35361", - "start": { - "$date": "2022-02-18T15:31:22.000Z" - }, - "end": { - "$date": "2022-02-18T16:01:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "10d83c8e-10e0-478b-8624-5549dadced61", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T16:51:20.000Z" - }, - "end": { - "$date": "2022-02-18T16:53:05.000Z" - }, - "events": [ - { - "uuid": "85105003-9ac2-404e-b73e-6753dd965246", - "start": { - "$date": "2022-02-18T16:51:20.000Z" - }, - "end": { - "$date": "2022-02-18T16:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "3e5f1ecf-2cdd-4c21-9d5b-4af0a9b3046e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-18T16:59:13.000Z" - }, - "end": { - "$date": "2022-02-18T17:16:25.000Z" - }, - "events": [ - { - "uuid": "d0a3034a-f1c6-4990-8c61-ba3227cd2e38", - "start": { - "$date": "2022-02-18T16:59:13.000Z" - }, - "end": { - "$date": "2022-02-18T17:16:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "944d25fd-0964-4b8e-b187-21508d41bbe5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-18T20:36:45.000Z" - }, - "end": { - "$date": "2022-02-18T22:28:33.000Z" - }, - "events": [ - { - "uuid": "ea24dd57-01f7-41d4-867e-bb5ebc995849", - "start": { - "$date": "2022-02-18T20:36:45.000Z" - }, - "end": { - "$date": "2022-02-18T22:28:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0386a94-b217-4ee8-bbd4-0e2198474efe", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-18T21:36:09.000Z" - }, - "end": { - "$date": "2022-02-18T21:36:22.000Z" - }, - "events": [ - { - "uuid": "014ab35a-cbd0-40a4-a258-039321581639", - "start": { - "$date": "2022-02-18T21:36:09.000Z" - }, - "end": { - "$date": "2022-02-18T21:36:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "cb623cca-4bfc-4e5d-81b3-2036bd586f73", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-18T21:12:35.000Z" - }, - "end": { - "$date": "2022-02-18T22:31:10.000Z" - }, - "events": [ - { - "uuid": "9af6ec6a-7750-4f5b-9535-277e05027907", - "start": { - "$date": "2022-02-18T21:12:35.000Z" - }, - "end": { - "$date": "2022-02-18T22:31:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f04a6471-d584-4fd7-bf67-652be7e7ee3b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-18T21:37:04.000Z" - }, - "end": { - "$date": "2022-02-18T22:09:43.000Z" - }, - "events": [ - { - "uuid": "e0bc6fd4-605e-4d40-832a-ce97033d164e", - "start": { - "$date": "2022-02-18T21:37:04.000Z" - }, - "end": { - "$date": "2022-02-18T22:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d3de2ef-e81a-493f-86ee-59b6ee0760ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-18T22:10:37.000Z" - }, - "end": { - "$date": "2022-02-18T22:47:03.000Z" - }, - "events": [ - { - "uuid": "1df91d5f-d3b8-4300-bb1d-2fcc49a091ac", - "start": { - "$date": "2022-02-18T22:10:37.000Z" - }, - "end": { - "$date": "2022-02-18T22:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "b7f459c9-dfcd-4f22-b7d3-b3694d44c9db", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-18T22:33:27.000Z" - }, - "end": { - "$date": "2022-02-18T23:46:42.000Z" - }, - "events": [ - { - "uuid": "4f1e0b3b-ec2c-4406-9cdd-881208f77fbb", - "start": { - "$date": "2022-02-18T22:33:27.000Z" - }, - "end": { - "$date": "2022-02-18T23:46:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d95021b4-d98e-4cd4-aea5-9d03409f2c50", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-18T23:26:51.000Z" - }, - "end": { - "$date": "2022-02-19T00:18:10.000Z" - }, - "events": [ - { - "uuid": "93b239b9-3637-497e-ae80-93726b97dbea", - "start": { - "$date": "2022-02-18T23:26:51.000Z" - }, - "end": { - "$date": "2022-02-19T00:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e5b5aa97-cd1d-4b00-b55a-87445db43a2b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-18T23:33:48.000Z" - }, - "end": { - "$date": "2022-02-19T00:19:27.000Z" - }, - "events": [ - { - "uuid": "9848a4be-1d71-4f9a-9a53-be01f1e22d8b", - "start": { - "$date": "2022-02-18T23:33:48.000Z" - }, - "end": { - "$date": "2022-02-19T00:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "0528236c-e0ad-432c-bf39-65692b2a61c6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-18T23:56:26.000Z" - }, - "end": { - "$date": "2022-02-19T01:26:34.000Z" - }, - "events": [ - { - "uuid": "6917da1c-040b-4ed6-95c7-97f2b0a868a8", - "start": { - "$date": "2022-02-18T23:56:26.000Z" - }, - "end": { - "$date": "2022-02-19T01:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8aed4261-fb67-42d1-83c9-34ff930908d7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-19T00:20:23.000Z" - }, - "end": { - "$date": "2022-02-19T00:51:00.000Z" - }, - "events": [ - { - "uuid": "6139ff7b-c2a8-4ef8-bb51-ef45cb2e2aa9", - "start": { - "$date": "2022-02-19T00:20:23.000Z" - }, - "end": { - "$date": "2022-02-19T00:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "bd977f4c-eda5-4153-9f9b-1a6e8ffb772f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-19T00:52:11.000Z" - }, - "end": { - "$date": "2022-02-19T01:49:32.000Z" - }, - "events": [ - { - "uuid": "c1fee7ca-f769-45fc-bea9-99704369b101", - "start": { - "$date": "2022-02-19T00:52:11.000Z" - }, - "end": { - "$date": "2022-02-19T01:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8172f5c6-56c4-49e7-9dca-10d286e9ebd4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-19T01:08:04.000Z" - }, - "end": { - "$date": "2022-02-19T01:46:54.000Z" - }, - "events": [ - { - "uuid": "839fb98b-7f99-4606-b50a-3a8ee2fed99d", - "start": { - "$date": "2022-02-19T01:08:04.000Z" - }, - "end": { - "$date": "2022-02-19T01:46:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "62a4631f-760b-440f-8c98-32a8d7e93acd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-19T01:19:27.000Z" - }, - "end": { - "$date": "2022-02-19T03:12:02.000Z" - }, - "events": [ - { - "uuid": "43112c25-8cc2-42ed-8976-566714302249", - "start": { - "$date": "2022-02-19T01:19:27.000Z" - }, - "end": { - "$date": "2022-02-19T02:34:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "06502933-9f5f-4ce8-bda7-bbbb2427383e", - "start": { - "$date": "2022-02-19T02:34:27.000Z" - }, - "end": { - "$date": "2022-02-19T02:36:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d5666af-04f3-4dbb-9efd-b52030119d92", - "start": { - "$date": "2022-02-19T02:36:27.000Z" - }, - "end": { - "$date": "2022-02-19T02:52:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9935aa8-e0bb-4255-9d86-abc0b5fe1f63", - "start": { - "$date": "2022-02-19T02:52:27.000Z" - }, - "end": { - "$date": "2022-02-19T02:57:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "359ab17e-8c03-46de-9bf8-3065b226355f", - "start": { - "$date": "2022-02-19T02:57:27.000Z" - }, - "end": { - "$date": "2022-02-19T03:07:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "857a4e99-168f-46eb-a6c6-3243feab6129", - "start": { - "$date": "2022-02-19T03:07:27.000Z" - }, - "end": { - "$date": "2022-02-19T03:12:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2ff7fe75-81c5-4355-901c-71517154cb92", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-19T03:23:14.000Z" - }, - "end": { - "$date": "2022-02-19T08:36:47.000Z" - }, - "events": [ - { - "uuid": "092abe66-ce4b-4727-ae7b-99d1427a11ba", - "start": { - "$date": "2022-02-19T03:23:14.000Z" - }, - "end": { - "$date": "2022-02-19T08:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0bfbcb3b-9327-45f5-b445-3aefaa60e471", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-19T03:24:11.000Z" - }, - "end": { - "$date": "2022-02-19T03:42:19.000Z" - }, - "events": [ - { - "uuid": "2a64de77-6a2d-49b6-8d55-ad7f8a8f2207", - "start": { - "$date": "2022-02-19T03:24:11.000Z" - }, - "end": { - "$date": "2022-02-19T03:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0d998b5d-bea9-40e7-9dbd-37411249b1a7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-19T03:32:00.000Z" - }, - "end": { - "$date": "2022-02-19T06:09:32.000Z" - }, - "events": [ - { - "uuid": "97297e1d-3435-4b2a-84a4-0275999432f4", - "start": { - "$date": "2022-02-19T03:32:00.000Z" - }, - "end": { - "$date": "2022-02-19T06:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7d826c88-3f6b-4bfb-a4c3-f8f4901c1a79", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-19T03:55:10.000Z" - }, - "end": { - "$date": "2022-02-19T05:25:51.000Z" - }, - "events": [ - { - "uuid": "ab341bf0-5c11-4080-af62-183ce71f15e1", - "start": { - "$date": "2022-02-19T03:55:10.000Z" - }, - "end": { - "$date": "2022-02-19T05:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfeffc19-420c-47fa-a56f-4e4b8fec8b97", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T04:48:00.000Z" - }, - "end": { - "$date": "2022-02-19T04:58:20.000Z" - }, - "events": [ - { - "uuid": "62a5e6a1-6464-40f3-ac2e-9144f8534be2", - "start": { - "$date": "2022-02-19T04:48:00.000Z" - }, - "end": { - "$date": "2022-02-19T04:58:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76d05838-8385-4623-8d6c-5ef24665c089", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T05:00:41.000Z" - }, - "end": { - "$date": "2022-02-19T05:18:06.000Z" - }, - "events": [ - { - "uuid": "a2fae1a9-f5e7-469b-8095-a2c5c775e577", - "start": { - "$date": "2022-02-19T05:00:41.000Z" - }, - "end": { - "$date": "2022-02-19T05:18:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "7ce46f17-4ea0-496f-81de-2ec4ffcd2c1a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-19T05:13:39.000Z" - }, - "end": { - "$date": "2022-02-19T08:42:29.000Z" - }, - "events": [ - { - "uuid": "ee48ab08-e991-4428-9e69-7e2718e4392f", - "start": { - "$date": "2022-02-19T05:13:39.000Z" - }, - "end": { - "$date": "2022-02-19T08:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "a4e619a2-fd57-44d0-9a8a-8a54fe08e71a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T05:32:18.000Z" - }, - "end": { - "$date": "2022-02-19T06:00:58.000Z" - }, - "events": [ - { - "uuid": "4b208687-7449-4407-81b3-cae3fc6b0811", - "start": { - "$date": "2022-02-19T05:32:18.000Z" - }, - "end": { - "$date": "2022-02-19T06:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "c3d89842-45e0-4e1b-83af-29a95eeb3eff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-19T06:01:59.000Z" - }, - "end": { - "$date": "2022-02-19T08:07:20.000Z" - }, - "events": [ - { - "uuid": "2e9f8bd2-34cb-4554-aa2d-64a942397fe8", - "start": { - "$date": "2022-02-19T06:01:59.000Z" - }, - "end": { - "$date": "2022-02-19T08:07:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c54a0270-4555-4027-8ba1-b08822604a86", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-19T06:09:37.000Z" - }, - "end": { - "$date": "2022-02-19T08:35:32.000Z" - }, - "events": [ - { - "uuid": "1b0d0138-d43c-4ce2-aafe-691b49279305", - "start": { - "$date": "2022-02-19T06:09:37.000Z" - }, - "end": { - "$date": "2022-02-19T07:16:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e8f9d0a9-78c7-45f0-9193-940aa6e3d2b9", - "start": { - "$date": "2022-02-19T07:16:37.000Z" - }, - "end": { - "$date": "2022-02-19T08:17:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4bc451da-e6c4-420d-9a83-c71e0f4d3af8", - "start": { - "$date": "2022-02-19T08:17:37.000Z" - }, - "end": { - "$date": "2022-02-19T08:27:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1487d104-1975-4608-b112-77e0402a0994", - "start": { - "$date": "2022-02-19T08:27:37.000Z" - }, - "end": { - "$date": "2022-02-19T08:35:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "a543500b-57ad-47cc-94db-cca73627f01e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-19T09:02:11.000Z" - }, - "end": { - "$date": "2022-02-19T12:15:55.000Z" - }, - "events": [ - { - "uuid": "9709333f-508b-482c-b1ad-01ab8ac78c67", - "start": { - "$date": "2022-02-19T09:02:11.000Z" - }, - "end": { - "$date": "2022-02-19T12:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e56f6a9a-b03d-4b60-ac86-8c342b4d578a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T17:00:31.000Z" - }, - "end": { - "$date": "2022-02-19T17:11:31.000Z" - }, - "events": [ - { - "uuid": "e9195ac1-8599-472f-ac40-b47539d0eae9", - "start": { - "$date": "2022-02-19T17:00:31.000Z" - }, - "end": { - "$date": "2022-02-19T17:11:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "331b0acb-b874-4aab-b240-0aba8e86e179", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T17:13:37.000Z" - }, - "end": { - "$date": "2022-02-19T17:30:07.000Z" - }, - "events": [ - { - "uuid": "2fe0762a-3d82-4af6-b9fc-92e5fdf7b272", - "start": { - "$date": "2022-02-19T17:13:37.000Z" - }, - "end": { - "$date": "2022-02-19T17:30:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddd6a9fd-8402-4064-b6b5-9892f826b5f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T17:32:08.000Z" - }, - "end": { - "$date": "2022-02-19T17:46:12.000Z" - }, - "events": [ - { - "uuid": "8a75ab01-a511-4d7e-a765-51fbe1cc1579", - "start": { - "$date": "2022-02-19T17:32:08.000Z" - }, - "end": { - "$date": "2022-02-19T17:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53a11346-ffab-42fc-858f-04e1b894a588", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-19T17:47:14.000Z" - }, - "end": { - "$date": "2022-02-19T18:00:43.000Z" - }, - "events": [ - { - "uuid": "0cb5d4cb-5e34-431e-ae0b-3bfbfaad4f18", - "start": { - "$date": "2022-02-19T17:47:14.000Z" - }, - "end": { - "$date": "2022-02-19T18:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3dba916f-b54c-4308-9dfb-d59d77298282", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-19T20:03:59.000Z" - }, - "end": { - "$date": "2022-02-19T21:36:12.000Z" - }, - "events": [ - { - "uuid": "c6c9e6e0-4558-45e7-912f-926d30af6a07", - "start": { - "$date": "2022-02-19T20:03:59.000Z" - }, - "end": { - "$date": "2022-02-19T21:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ef4e5c99-5e38-405b-8c56-a1b7694f31a8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-19T20:23:19.000Z" - }, - "end": { - "$date": "2022-02-19T20:42:26.000Z" - }, - "events": [ - { - "uuid": "d3fe8156-f130-473d-8685-efe024994226", - "start": { - "$date": "2022-02-19T20:23:19.000Z" - }, - "end": { - "$date": "2022-02-19T20:42:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "708a0cb9-3497-4cd3-bd38-4876557023a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-19T21:26:07.000Z" - }, - "end": { - "$date": "2022-02-19T23:23:11.000Z" - }, - "events": [ - { - "uuid": "f3c2f0c4-4fb6-4de6-a612-729548fa83a7", - "start": { - "$date": "2022-02-19T21:26:07.000Z" - }, - "end": { - "$date": "2022-02-19T23:23:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23421543-ddc3-4d74-b24c-da834425efaa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-19T21:52:15.000Z" - }, - "end": { - "$date": "2022-02-19T22:25:08.000Z" - }, - "events": [ - { - "uuid": "ae4698d1-668b-401e-bf18-2a881a74ed50", - "start": { - "$date": "2022-02-19T21:52:15.000Z" - }, - "end": { - "$date": "2022-02-19T22:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "66b65b4c-2837-44ce-b22a-f1029e94f597", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-19T22:06:24.000Z" - }, - "end": { - "$date": "2022-02-19T23:11:50.000Z" - }, - "events": [ - { - "uuid": "df63e9f4-c899-489d-a75b-32ae42d96653", - "start": { - "$date": "2022-02-19T22:06:24.000Z" - }, - "end": { - "$date": "2022-02-19T23:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d9d52e6c-2849-4ca2-925e-41565607b773", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-19T22:28:53.000Z" - }, - "end": { - "$date": "2022-02-19T22:55:36.000Z" - }, - "events": [ - { - "uuid": "4786990f-f45f-4c9d-bb08-b9f39e6bf7f7", - "start": { - "$date": "2022-02-19T22:28:53.000Z" - }, - "end": { - "$date": "2022-02-19T22:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6c511f9-a01f-4545-96fd-c4a937ba6603", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T00:04:30.000Z" - }, - "end": { - "$date": "2022-02-20T00:04:59.000Z" - }, - "events": [ - { - "uuid": "2a737661-6224-4872-978b-f7a064dcc01c", - "start": { - "$date": "2022-02-20T00:04:30.000Z" - }, - "end": { - "$date": "2022-02-20T00:04:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "a438494e-eaa0-4bc0-bfef-f5ce46ebf108", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-19T23:12:35.000Z" - }, - "end": { - "$date": "2022-02-19T23:39:00.000Z" - }, - "events": [ - { - "uuid": "6b3d6db1-5e9a-49c3-9263-4a45c18fd24b", - "start": { - "$date": "2022-02-19T23:12:35.000Z" - }, - "end": { - "$date": "2022-02-19T23:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48a85bab-e51a-48b5-ac88-60068c50e2f8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T00:37:41.000Z" - }, - "end": { - "$date": "2022-02-20T00:38:08.000Z" - }, - "events": [ - { - "uuid": "6e8cc185-3f9b-484a-8260-da775a5dd979", - "start": { - "$date": "2022-02-20T00:37:41.000Z" - }, - "end": { - "$date": "2022-02-20T00:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "cfa403dc-5da9-446c-a8e8-675caba94a9c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T00:40:38.000Z" - }, - "end": { - "$date": "2022-02-20T01:08:01.000Z" - }, - "events": [ - { - "uuid": "4401e844-bd36-432e-bef7-39a6da783eae", - "start": { - "$date": "2022-02-20T00:40:38.000Z" - }, - "end": { - "$date": "2022-02-20T01:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "2b425c99-6ff6-4a15-9c16-24f9397cd8dc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-20T00:45:38.000Z" - }, - "end": { - "$date": "2022-02-20T03:54:36.000Z" - }, - "events": [ - { - "uuid": "699e8e57-2a59-47c7-94f9-8c195ca90273", - "start": { - "$date": "2022-02-20T00:45:38.000Z" - }, - "end": { - "$date": "2022-02-20T03:54:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "4c61e20d-c478-4a02-af8f-cf70b7937683", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-20T01:02:44.000Z" - }, - "end": { - "$date": "2022-02-20T02:12:11.000Z" - }, - "events": [ - { - "uuid": "799a86f8-ab58-43c0-994f-d74f31237659", - "start": { - "$date": "2022-02-20T01:02:44.000Z" - }, - "end": { - "$date": "2022-02-20T02:12:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "f886f81d-ef5d-4822-8d39-a2dad9cf5f59", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-20T02:10:22.000Z" - }, - "end": { - "$date": "2022-02-20T03:46:24.000Z" - }, - "events": [ - { - "uuid": "14944ce9-cfe1-45e6-992e-9c7b0c7522d7", - "start": { - "$date": "2022-02-20T02:10:22.000Z" - }, - "end": { - "$date": "2022-02-20T03:46:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4f7e4be-235a-4d2f-94e3-172ca7df5e10", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T02:15:50.000Z" - }, - "end": { - "$date": "2022-02-20T03:29:34.000Z" - }, - "events": [ - { - "uuid": "b9310097-7266-4291-99b9-fcb97ec94c08", - "start": { - "$date": "2022-02-20T02:15:50.000Z" - }, - "end": { - "$date": "2022-02-20T02:34:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "291ee8a9-01e8-4ff0-837a-9d099482eb15", - "start": { - "$date": "2022-02-20T02:34:50.000Z" - }, - "end": { - "$date": "2022-02-20T02:38:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5d0b6bcf-2f94-466d-a0e3-f07d7007fdf9", - "start": { - "$date": "2022-02-20T02:38:50.000Z" - }, - "end": { - "$date": "2022-02-20T03:29:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6989c852-5cd2-4dfe-8cac-40f42d10b986", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-20T02:34:46.000Z" - }, - "end": { - "$date": "2022-02-20T03:09:02.000Z" - }, - "events": [ - { - "uuid": "906e093d-78f5-4bd0-9f1e-b16b21c904a5", - "start": { - "$date": "2022-02-20T02:34:46.000Z" - }, - "end": { - "$date": "2022-02-20T03:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "98485e72-5b57-4a66-b044-3a4a65765a14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-20T02:33:03.000Z" - }, - "end": { - "$date": "2022-02-20T03:49:30.000Z" - }, - "events": [ - { - "uuid": "b888e09c-4de9-4190-84fd-2f797f60ca78", - "start": { - "$date": "2022-02-20T02:33:03.000Z" - }, - "end": { - "$date": "2022-02-20T03:49:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "295c10c2-cbb4-4866-9e74-fc1d983fed7c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-20T02:32:59.000Z" - }, - "end": { - "$date": "2022-02-20T02:57:01.000Z" - }, - "events": [ - { - "uuid": "d98b0679-7773-4c30-a8a0-fc930cf2b429", - "start": { - "$date": "2022-02-20T02:32:59.000Z" - }, - "end": { - "$date": "2022-02-20T02:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da57b825-4884-414b-99c1-82118c1ca28e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-20T02:34:38.000Z" - }, - "end": { - "$date": "2022-02-20T03:08:46.000Z" - }, - "events": [ - { - "uuid": "2bbf2abf-2336-41d6-9477-9383d6c50898", - "start": { - "$date": "2022-02-20T02:34:38.000Z" - }, - "end": { - "$date": "2022-02-20T03:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c5962a0e-9cdd-44ba-9d7b-d776acb53fdd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-20T02:57:10.000Z" - }, - "end": { - "$date": "2022-02-20T09:07:05.000Z" - }, - "events": [ - { - "uuid": "3eb3959b-17db-4694-a461-291828afae21", - "start": { - "$date": "2022-02-20T02:57:10.000Z" - }, - "end": { - "$date": "2022-02-20T09:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bcc32ad3-b2ed-499f-b9bb-f68fcbed0ef3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-20T03:10:58.000Z" - }, - "end": { - "$date": "2022-02-20T03:49:13.000Z" - }, - "events": [ - { - "uuid": "ad7c3477-d49e-42de-bbfd-29bffb138240", - "start": { - "$date": "2022-02-20T03:10:58.000Z" - }, - "end": { - "$date": "2022-02-20T03:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65fbf681-e4ea-4ffe-8ef6-c7b391b59e11", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-20T03:10:56.000Z" - }, - "end": { - "$date": "2022-02-20T03:49:15.000Z" - }, - "events": [ - { - "uuid": "9733385c-3616-41be-ad62-493566c9bf22", - "start": { - "$date": "2022-02-20T03:10:56.000Z" - }, - "end": { - "$date": "2022-02-20T03:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48aa44e3-b558-40f2-86aa-2f38999b4a6f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T06:03:27.000Z" - }, - "end": { - "$date": "2022-02-20T06:37:58.000Z" - }, - "events": [ - { - "uuid": "908eae85-0ca1-495e-9525-6bbed7ec240d", - "start": { - "$date": "2022-02-20T06:03:27.000Z" - }, - "end": { - "$date": "2022-02-20T06:37:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "7937296d-7654-49d2-bcdc-08d71fbbc5d9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-20T04:07:37.000Z" - }, - "end": { - "$date": "2022-02-20T04:15:12.000Z" - }, - "events": [ - { - "uuid": "148ab7a6-8439-4402-8bf3-2789c1325bc6", - "start": { - "$date": "2022-02-20T04:07:37.000Z" - }, - "end": { - "$date": "2022-02-20T04:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5b78ce6a-cb2b-42f2-85d4-5a45a127e9fe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-20T04:16:02.000Z" - }, - "end": { - "$date": "2022-02-20T07:22:48.000Z" - }, - "events": [ - { - "uuid": "eff51f4b-1e9b-4341-b0eb-ed7b2d0dc983", - "start": { - "$date": "2022-02-20T04:16:02.000Z" - }, - "end": { - "$date": "2022-02-20T07:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "368109b2-b357-4095-9adf-e22cd009df7a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-20T04:16:41.000Z" - }, - "end": { - "$date": "2022-02-20T07:22:53.000Z" - }, - "events": [ - { - "uuid": "00e359bb-4b26-4202-b711-ea61f4fd09ba", - "start": { - "$date": "2022-02-20T04:16:41.000Z" - }, - "end": { - "$date": "2022-02-20T07:22:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d82334fc-10a4-4142-ae19-36311c8398ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-20T04:27:41.000Z" - }, - "end": { - "$date": "2022-02-20T05:36:05.000Z" - }, - "events": [ - { - "uuid": "1b0c01ce-7fd8-4101-add7-c183c3ffc426", - "start": { - "$date": "2022-02-20T04:27:41.000Z" - }, - "end": { - "$date": "2022-02-20T05:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "94f4ac0e-76e6-46b0-9bbc-6760080a7933", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-20T04:37:38.000Z" - }, - "end": { - "$date": "2022-02-20T08:11:26.000Z" - }, - "events": [ - { - "uuid": "3b01549e-4b60-4912-bbc5-b07835a8707d", - "start": { - "$date": "2022-02-20T04:37:38.000Z" - }, - "end": { - "$date": "2022-02-20T08:11:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d4180a25-1b43-4dee-8d22-12f541b46e19", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-20T04:38:07.000Z" - }, - "end": { - "$date": "2022-02-20T05:09:06.000Z" - }, - "events": [ - { - "uuid": "c4c660bd-c807-4f50-af0c-6c7473c5ecf6", - "start": { - "$date": "2022-02-20T04:38:07.000Z" - }, - "end": { - "$date": "2022-02-20T05:09:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "44001daa-9893-42d4-b84b-0fd86457aa5a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-20T05:11:46.000Z" - }, - "end": { - "$date": "2022-02-20T05:58:13.000Z" - }, - "events": [ - { - "uuid": "abb34668-9c1c-4ee8-98d9-c7594c3338bd", - "start": { - "$date": "2022-02-20T05:11:46.000Z" - }, - "end": { - "$date": "2022-02-20T05:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7d94c502-0799-44ce-9295-d5d699e70bb1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-20T05:37:26.000Z" - }, - "end": { - "$date": "2022-02-20T05:50:26.000Z" - }, - "events": [ - { - "uuid": "28cf9740-1ae4-47c5-9aad-288ed6066dd2", - "start": { - "$date": "2022-02-20T05:37:26.000Z" - }, - "end": { - "$date": "2022-02-20T05:50:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7b9324b7-a64e-4bcf-8fdf-8b657fcc4522", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-20T05:58:46.000Z" - }, - "end": { - "$date": "2022-02-20T09:28:20.000Z" - }, - "events": [ - { - "uuid": "ae1a0ec5-db93-4535-9dcb-97609d26a20d", - "start": { - "$date": "2022-02-20T05:58:46.000Z" - }, - "end": { - "$date": "2022-02-20T09:26:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "277d4598-985f-4685-8931-f06976b55128", - "start": { - "$date": "2022-02-20T09:26:46.000Z" - }, - "end": { - "$date": "2022-02-20T09:28:20.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6de37dfe-722e-4831-9de0-fee4ed5872ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-20T07:24:09.000Z" - }, - "end": { - "$date": "2022-02-20T08:32:31.000Z" - }, - "events": [ - { - "uuid": "dfb6d784-4467-40d3-b16d-e0fef0887522", - "start": { - "$date": "2022-02-20T07:24:09.000Z" - }, - "end": { - "$date": "2022-02-20T08:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5533c13-098f-4de3-8485-1727aeac28cf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-20T06:03:24.000Z" - }, - "end": { - "$date": "2022-02-20T06:44:13.000Z" - }, - "events": [ - { - "uuid": "c2daca65-bd95-4e1f-8c49-b218aa61772e", - "start": { - "$date": "2022-02-20T06:03:24.000Z" - }, - "end": { - "$date": "2022-02-20T06:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9bf49b5-afeb-43e0-96b7-044a6d684667", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T06:38:41.000Z" - }, - "end": { - "$date": "2022-02-20T07:03:59.000Z" - }, - "events": [ - { - "uuid": "d0b3152a-bb49-4a13-a121-e56060ee1743", - "start": { - "$date": "2022-02-20T06:38:41.000Z" - }, - "end": { - "$date": "2022-02-20T07:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4eb23da-6ebe-4062-82e3-8688f3c63941", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T07:05:22.000Z" - }, - "end": { - "$date": "2022-02-20T07:34:09.000Z" - }, - "events": [ - { - "uuid": "03f3b784-b438-4162-83a9-eb36b6958740", - "start": { - "$date": "2022-02-20T07:05:22.000Z" - }, - "end": { - "$date": "2022-02-20T07:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ee31d9b7-d381-4b7b-add7-4c03d4e25aca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-20T07:23:34.000Z" - }, - "end": { - "$date": "2022-02-20T08:31:40.000Z" - }, - "events": [ - { - "uuid": "fe64a364-2ef9-46af-9b5a-161f3e175164", - "start": { - "$date": "2022-02-20T07:23:34.000Z" - }, - "end": { - "$date": "2022-02-20T08:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "772aa18c-486a-4640-b425-187e115c97b1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T07:35:05.000Z" - }, - "end": { - "$date": "2022-02-20T08:02:31.000Z" - }, - "events": [ - { - "uuid": "9980ab12-74dc-4320-97a3-b4d3d7ff3497", - "start": { - "$date": "2022-02-20T07:35:05.000Z" - }, - "end": { - "$date": "2022-02-20T08:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "2cf9e160-ec84-48aa-9665-4646beda4375", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-20T16:08:52.000Z" - }, - "end": { - "$date": "2022-02-20T17:11:38.000Z" - }, - "events": [ - { - "uuid": "6072f8ec-38e6-47ab-80ae-bc88c3dd029d", - "start": { - "$date": "2022-02-20T16:08:52.000Z" - }, - "end": { - "$date": "2022-02-20T17:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f1903d9-f8f3-418a-8bee-8c25daed02f2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-20T16:35:00.000Z" - }, - "end": { - "$date": "2022-02-20T16:51:34.000Z" - }, - "events": [ - { - "uuid": "084ab76e-5472-4a5d-9ce9-fef870e56f7b", - "start": { - "$date": "2022-02-20T16:35:00.000Z" - }, - "end": { - "$date": "2022-02-20T16:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2de8ef0-a759-43ec-95f0-c1ccbb5f14df", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-20T16:57:26.000Z" - }, - "end": { - "$date": "2022-02-20T17:17:45.000Z" - }, - "events": [ - { - "uuid": "d70878c1-84d2-4e49-9095-b14404509ef6", - "start": { - "$date": "2022-02-20T16:57:26.000Z" - }, - "end": { - "$date": "2022-02-20T17:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c8dbc058-b90b-4f9a-bc47-1fefd35517eb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-20T17:38:28.000Z" - }, - "end": { - "$date": "2022-02-20T18:21:09.000Z" - }, - "events": [ - { - "uuid": "c81f77be-0cbf-4168-ab5b-03496c4084dc", - "start": { - "$date": "2022-02-20T17:38:28.000Z" - }, - "end": { - "$date": "2022-02-20T18:21:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8460bac1-dfee-47a2-8768-187c426f2ae3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-20T17:38:51.000Z" - }, - "end": { - "$date": "2022-02-20T18:54:56.000Z" - }, - "events": [ - { - "uuid": "ed1f008f-9417-4981-8c4b-7839a9a876a1", - "start": { - "$date": "2022-02-20T17:38:51.000Z" - }, - "end": { - "$date": "2022-02-20T18:43:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9110518a-26bc-4f32-b17b-d953d7abae93", - "start": { - "$date": "2022-02-20T18:43:51.000Z" - }, - "end": { - "$date": "2022-02-20T18:48:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43a988d8-7cba-4838-a0d8-38da0b7c10df", - "start": { - "$date": "2022-02-20T18:48:51.000Z" - }, - "end": { - "$date": "2022-02-20T18:54:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39874189-eb45-4b0d-aebc-8c584be04900", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T18:03:47.000Z" - }, - "end": { - "$date": "2022-02-20T18:18:53.000Z" - }, - "events": [ - { - "uuid": "26777d23-4d7b-48e3-8d5e-bbf717887f86", - "start": { - "$date": "2022-02-20T18:03:47.000Z" - }, - "end": { - "$date": "2022-02-20T18:18:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b6e663ff-8415-4b12-b9de-4cca1fd6a484", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-20T22:46:44.000Z" - }, - "end": { - "$date": "2022-02-20T22:48:24.000Z" - }, - "events": [ - { - "uuid": "c3c9a9ac-2b31-4166-9ec2-1ec8379721cf", - "start": { - "$date": "2022-02-20T22:46:44.000Z" - }, - "end": { - "$date": "2022-02-20T23:03:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bd81457f-921f-4e0f-9571-c9173c49a421", - "start": { - "$date": "2022-02-20T23:03:44.000Z" - }, - "end": { - "$date": "2022-02-20T23:07:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79ff014b-b063-4c56-8585-21657daf5918", - "start": { - "$date": "2022-02-20T23:07:44.000Z" - }, - "end": { - "$date": "2022-02-20T22:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "f1b7430b-e965-41dc-8abf-dd76127b8b06", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-20T20:49:29.000Z" - }, - "end": { - "$date": "2022-02-20T22:29:49.000Z" - }, - "events": [ - { - "uuid": "00df8530-c7c9-41a1-bac0-886c8b198dec", - "start": { - "$date": "2022-02-20T20:49:29.000Z" - }, - "end": { - "$date": "2022-02-20T22:01:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0cd5a41c-1eb5-4d85-9967-1945abe5a6ea", - "start": { - "$date": "2022-02-20T22:01:29.000Z" - }, - "end": { - "$date": "2022-02-20T22:03:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d5ecc30-df84-4b46-b9bb-8dc52880cd42", - "start": { - "$date": "2022-02-20T22:03:29.000Z" - }, - "end": { - "$date": "2022-02-20T22:29:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f5703a0-de93-4d20-b1ad-70eb409a7571", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T21:24:44.000Z" - }, - "end": { - "$date": "2022-02-20T22:04:57.000Z" - }, - "events": [ - { - "uuid": "83188b94-2de8-4689-b83e-a8259947169b", - "start": { - "$date": "2022-02-20T21:24:44.000Z" - }, - "end": { - "$date": "2022-02-20T22:04:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ce5cc01-2fea-4d8e-94c8-aaca14c2e363", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T22:09:38.000Z" - }, - "end": { - "$date": "2022-02-20T22:36:40.000Z" - }, - "events": [ - { - "uuid": "e632e402-f0ef-418b-8344-d3786058f198", - "start": { - "$date": "2022-02-20T22:09:38.000Z" - }, - "end": { - "$date": "2022-02-20T22:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f26e4667-f2df-4701-8497-2a26729d64ae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T22:40:05.000Z" - }, - "end": { - "$date": "2022-02-20T23:00:21.000Z" - }, - "events": [ - { - "uuid": "03ad96d1-7c76-4604-a801-92df87529031", - "start": { - "$date": "2022-02-20T22:40:05.000Z" - }, - "end": { - "$date": "2022-02-20T23:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3e93f1ba-54a9-4116-a7d9-bdeda955101a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-20T22:48:34.000Z" - }, - "end": { - "$date": "2022-02-20T23:31:56.000Z" - }, - "events": [ - { - "uuid": "7585dd44-ceac-4c4d-b11e-61f56b15f36d", - "start": { - "$date": "2022-02-20T22:48:34.000Z" - }, - "end": { - "$date": "2022-02-20T23:31:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "fc681735-a51a-4068-9965-e8482895f125", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-20T22:52:41.000Z" - }, - "end": { - "$date": "2022-02-21T04:23:05.000Z" - }, - "events": [ - { - "uuid": "79c30896-287a-4dbc-a168-c903378c30f9", - "start": { - "$date": "2022-02-20T22:52:41.000Z" - }, - "end": { - "$date": "2022-02-21T04:23:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8475fd2-3e45-403b-a67c-9ea171934743", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-20T23:01:02.000Z" - }, - "end": { - "$date": "2022-02-20T23:02:59.000Z" - }, - "events": [ - { - "uuid": "f203aab9-34eb-4795-84b5-4269d7abf5df", - "start": { - "$date": "2022-02-20T23:01:02.000Z" - }, - "end": { - "$date": "2022-02-20T23:02:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca3990f3-ea31-4db9-b45b-316cda1f2c41", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T00:19:13.000Z" - }, - "end": { - "$date": "2022-02-21T00:19:19.000Z" - }, - "events": [ - { - "uuid": "a0edd96e-43df-423f-920a-3ff43765c01c", - "start": { - "$date": "2022-02-21T00:19:13.000Z" - }, - "end": { - "$date": "2022-02-21T00:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26801d77-2552-45c5-aa67-2732c0e5a8ee", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T00:27:15.000Z" - }, - "end": { - "$date": "2022-02-21T00:52:42.000Z" - }, - "events": [ - { - "uuid": "9826022d-819f-4b9f-93f6-ce978d6b6fd4", - "start": { - "$date": "2022-02-21T00:27:15.000Z" - }, - "end": { - "$date": "2022-02-21T00:52:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56bd6a2d-de6d-4f29-8be1-c8dd5411ad27", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T00:55:17.000Z" - }, - "end": { - "$date": "2022-02-21T01:16:04.000Z" - }, - "events": [ - { - "uuid": "b00f72ba-b9d1-4a4d-842c-b9b851637d5c", - "start": { - "$date": "2022-02-21T00:55:17.000Z" - }, - "end": { - "$date": "2022-02-21T01:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ccf421d6-19b8-4c83-b3b8-45caee4057a7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T01:18:38.000Z" - }, - "end": { - "$date": "2022-02-21T01:40:42.000Z" - }, - "events": [ - { - "uuid": "2595eb35-e30f-40de-902c-819efec7ebf0", - "start": { - "$date": "2022-02-21T01:18:38.000Z" - }, - "end": { - "$date": "2022-02-21T01:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24d60bc9-78ee-4bc2-88a7-a62296808906", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-21T01:45:42.000Z" - }, - "end": { - "$date": "2022-02-21T01:58:23.000Z" - }, - "events": [ - { - "uuid": "da8ab6c9-3973-4f67-93b4-75491ddd252e", - "start": { - "$date": "2022-02-21T01:45:42.000Z" - }, - "end": { - "$date": "2022-02-21T01:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "642d3554-0113-45a4-bd1f-ee6891aa2b8c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T01:45:39.000Z" - }, - "end": { - "$date": "2022-02-21T02:15:05.000Z" - }, - "events": [ - { - "uuid": "006905c8-30c1-4bf3-be09-39cdf9514b71", - "start": { - "$date": "2022-02-21T01:45:39.000Z" - }, - "end": { - "$date": "2022-02-21T02:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7677ab99-2709-42b4-af38-53dc6d8fa2df", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-21T02:43:12.000Z" - }, - "end": { - "$date": "2022-02-21T04:45:11.000Z" - }, - "events": [ - { - "uuid": "d585fb5d-9599-45b3-adfe-64ec295ecce7", - "start": { - "$date": "2022-02-21T02:43:12.000Z" - }, - "end": { - "$date": "2022-02-21T04:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9d9f996d-a377-490e-b1b2-b01fd42dff17", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-21T03:50:24.000Z" - }, - "end": { - "$date": "2022-02-21T04:20:46.000Z" - }, - "events": [ - { - "uuid": "3badb12b-1851-48ed-9a8d-fb8a6f04abcf", - "start": { - "$date": "2022-02-21T03:50:24.000Z" - }, - "end": { - "$date": "2022-02-21T04:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a70aed79-5143-49d4-9827-04f2752e1411", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-21T04:15:53.000Z" - }, - "end": { - "$date": "2022-02-21T05:26:09.000Z" - }, - "events": [ - { - "uuid": "7825a4e9-7f18-4d3a-a6d3-4f7d758968bb", - "start": { - "$date": "2022-02-21T04:15:53.000Z" - }, - "end": { - "$date": "2022-02-21T05:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "368216ed-0c74-40a3-bd6c-5bf7839bda64", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-21T04:21:11.000Z" - }, - "end": { - "$date": "2022-02-21T05:09:32.000Z" - }, - "events": [ - { - "uuid": "018ec4ed-0fb7-419d-94ed-05c71334c870", - "start": { - "$date": "2022-02-21T04:21:11.000Z" - }, - "end": { - "$date": "2022-02-21T05:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2228c685-eed2-47e1-9a0b-5d5327b5f87f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-21T04:23:50.000Z" - }, - "end": { - "$date": "2022-02-21T05:10:11.000Z" - }, - "events": [ - { - "uuid": "51c3a6bb-ea75-4a3c-857e-2ead98aa1d47", - "start": { - "$date": "2022-02-21T04:23:50.000Z" - }, - "end": { - "$date": "2022-02-21T05:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e4b0a510-9373-4c23-9a65-18a0ecdc0d21", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-21T04:45:20.000Z" - }, - "end": { - "$date": "2022-02-21T04:59:57.000Z" - }, - "events": [ - { - "uuid": "43e4d04b-03be-4ad2-ac7f-924b785e4246", - "start": { - "$date": "2022-02-21T04:45:20.000Z" - }, - "end": { - "$date": "2022-02-21T04:59:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c39a1540-ee22-42e9-be69-3701c84c6103", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T05:34:43.000Z" - }, - "end": { - "$date": "2022-02-21T05:34:51.000Z" - }, - "events": [ - { - "uuid": "292956c1-a93b-4184-9955-577a389301d3", - "start": { - "$date": "2022-02-21T05:34:43.000Z" - }, - "end": { - "$date": "2022-02-21T05:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c7a463db-078e-468f-895b-c0c9f98f21b0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-21T05:00:06.000Z" - }, - "end": { - "$date": "2022-02-21T06:45:18.000Z" - }, - "events": [ - { - "uuid": "9338c6f1-f110-405a-953c-42c738542e65", - "start": { - "$date": "2022-02-21T05:00:06.000Z" - }, - "end": { - "$date": "2022-02-21T06:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f98bacc2-8d63-4e51-9356-025128b2804b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-21T05:05:09.000Z" - }, - "end": { - "$date": "2022-02-21T05:18:54.000Z" - }, - "events": [ - { - "uuid": "b15eedb8-6eb3-46cb-8094-188bb755918e", - "start": { - "$date": "2022-02-21T05:05:09.000Z" - }, - "end": { - "$date": "2022-02-21T05:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "fee7d43f-c76c-4425-930b-5e39d720c2ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-21T05:10:02.000Z" - }, - "end": { - "$date": "2022-02-21T06:28:14.000Z" - }, - "events": [ - { - "uuid": "663aac04-a4ff-4a2d-97fe-29c1326ada86", - "start": { - "$date": "2022-02-21T05:10:02.000Z" - }, - "end": { - "$date": "2022-02-21T06:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "1ead00e0-785e-409f-b18b-50c2c9bb9c66", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-21T05:10:16.000Z" - }, - "end": { - "$date": "2022-02-21T07:17:40.000Z" - }, - "events": [ - { - "uuid": "9d0f745c-42f6-4f70-ada7-23a855f26a78", - "start": { - "$date": "2022-02-21T05:10:16.000Z" - }, - "end": { - "$date": "2022-02-21T07:17:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6a1497b-0d7e-4935-b498-4b5507089d54", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-21T05:17:57.000Z" - }, - "end": { - "$date": "2022-02-21T05:18:17.000Z" - }, - "events": [ - { - "uuid": "c8441d3d-38d1-45f8-a8e9-48ba0cf6e40f", - "start": { - "$date": "2022-02-21T05:17:57.000Z" - }, - "end": { - "$date": "2022-02-21T05:18:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "7bca19f1-b02e-4498-b2b8-32bfd31f7e64", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-21T05:26:15.000Z" - }, - "end": { - "$date": "2022-02-21T06:35:25.000Z" - }, - "events": [ - { - "uuid": "30e55c28-bcf0-4cff-8961-d193cbffe49e", - "start": { - "$date": "2022-02-21T05:26:15.000Z" - }, - "end": { - "$date": "2022-02-21T06:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c23e5c5a-72e6-47a0-86ce-a1226581af36", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-21T05:29:49.000Z" - }, - "end": { - "$date": "2022-02-21T05:45:59.000Z" - }, - "events": [ - { - "uuid": "fd808205-c781-41a0-bcbf-8ed23a56389d", - "start": { - "$date": "2022-02-21T05:29:49.000Z" - }, - "end": { - "$date": "2022-02-21T05:45:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c1f2f21-78cf-4976-9bd8-fa256d0d5316", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T05:36:27.000Z" - }, - "end": { - "$date": "2022-02-21T06:04:07.000Z" - }, - "events": [ - { - "uuid": "ba032dfc-90ca-4f23-8263-22e8def8ddc1", - "start": { - "$date": "2022-02-21T05:36:27.000Z" - }, - "end": { - "$date": "2022-02-21T06:04:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14a3b56c-f580-4081-9429-5128f865b7b6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-21T05:37:58.000Z" - }, - "end": { - "$date": "2022-02-21T07:35:55.000Z" - }, - "events": [ - { - "uuid": "1f758601-2b4b-429c-96dd-ce7dd586392f", - "start": { - "$date": "2022-02-21T05:37:58.000Z" - }, - "end": { - "$date": "2022-02-21T07:35:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "645d906d-bd3f-47a9-b651-abd25f1d7676", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-21T05:48:40.000Z" - }, - "end": { - "$date": "2022-02-21T06:22:00.000Z" - }, - "events": [ - { - "uuid": "a347e0a6-a871-47a0-b801-825ab0121d27", - "start": { - "$date": "2022-02-21T05:48:40.000Z" - }, - "end": { - "$date": "2022-02-21T06:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "021a335a-6037-4b16-98ff-d8dc2e233a5b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T06:05:11.000Z" - }, - "end": { - "$date": "2022-02-21T06:39:47.000Z" - }, - "events": [ - { - "uuid": "0683bbc4-676a-41f3-8994-51ed549b8fbb", - "start": { - "$date": "2022-02-21T06:05:11.000Z" - }, - "end": { - "$date": "2022-02-21T06:39:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61c3e14c-6511-4988-a528-3ba343a5e1db", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-21T06:24:45.000Z" - }, - "end": { - "$date": "2022-02-21T06:44:15.000Z" - }, - "events": [ - { - "uuid": "27e16749-6daf-47f4-aab2-ae6a07b6fbf4", - "start": { - "$date": "2022-02-21T06:24:45.000Z" - }, - "end": { - "$date": "2022-02-21T06:44:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "27f2b7d5-8001-4489-bb43-dc33a740e522", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-21T07:26:36.000Z" - }, - "end": { - "$date": "2022-02-21T09:12:33.000Z" - }, - "events": [ - { - "uuid": "2c0e5cd5-d60c-4683-a85e-5b7b023bdc3e", - "start": { - "$date": "2022-02-21T07:26:36.000Z" - }, - "end": { - "$date": "2022-02-21T09:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4f2cf345-5f6b-4b66-957e-d9c66bd52eb2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-21T16:20:22.000Z" - }, - "end": { - "$date": "2022-02-21T17:44:52.000Z" - }, - "events": [ - { - "uuid": "c5708b0e-e3a7-434b-bc85-f6e38cfc8625", - "start": { - "$date": "2022-02-21T16:20:22.000Z" - }, - "end": { - "$date": "2022-02-21T17:42:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "accd4ab3-1ead-44dc-9b3a-472197fc34e9", - "start": { - "$date": "2022-02-21T17:42:22.000Z" - }, - "end": { - "$date": "2022-02-21T17:43:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb0d8077-6e05-4728-8eed-bcb1bc45f6bd", - "start": { - "$date": "2022-02-21T17:43:22.000Z" - }, - "end": { - "$date": "2022-02-21T17:44:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61bf1415-188a-453b-b21b-3c69c27e988c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-21T17:23:30.000Z" - }, - "end": { - "$date": "2022-02-21T17:36:34.000Z" - }, - "events": [ - { - "uuid": "9f013ada-c122-4b5d-b6d8-f618f1071e38", - "start": { - "$date": "2022-02-21T17:23:30.000Z" - }, - "end": { - "$date": "2022-02-21T17:36:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "1b432f70-acc8-41dc-9bb3-a230d04ff7d2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T17:46:19.000Z" - }, - "end": { - "$date": "2022-02-21T18:13:47.000Z" - }, - "events": [ - { - "uuid": "28588ab8-3628-454c-9a5a-413a69bca2cc", - "start": { - "$date": "2022-02-21T17:46:19.000Z" - }, - "end": { - "$date": "2022-02-21T18:13:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0e5b965d-34ec-4257-b293-7eb81ba6513c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-21T17:53:40.000Z" - }, - "end": { - "$date": "2022-02-21T18:13:51.000Z" - }, - "events": [ - { - "uuid": "8e6d1b1e-eb3a-434a-b3fd-a516cf05cc7d", - "start": { - "$date": "2022-02-21T17:53:40.000Z" - }, - "end": { - "$date": "2022-02-21T18:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "037e9426-e978-4933-a8ae-9fd4bea01367", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-21T18:15:07.000Z" - }, - "end": { - "$date": "2022-02-21T18:20:06.000Z" - }, - "events": [ - { - "uuid": "666a24f2-9538-41c3-8181-2d26e8bb38b0", - "start": { - "$date": "2022-02-21T18:15:07.000Z" - }, - "end": { - "$date": "2022-02-21T18:20:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9bf89d9-6272-40e2-97bd-e2136fea3ae2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T18:18:54.000Z" - }, - "end": { - "$date": "2022-02-21T18:54:52.000Z" - }, - "events": [ - { - "uuid": "ae1719b1-0b7f-4ef9-939c-6f7a4ee85183", - "start": { - "$date": "2022-02-21T18:18:54.000Z" - }, - "end": { - "$date": "2022-02-21T18:38:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5cd0c865-cc78-4950-a323-5287ad0d003a", - "start": { - "$date": "2022-02-21T18:38:54.000Z" - }, - "end": { - "$date": "2022-02-21T18:41:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6d4a329d-b0c9-4388-b76e-ccd8eb6b097c", - "start": { - "$date": "2022-02-21T18:41:54.000Z" - }, - "end": { - "$date": "2022-02-21T18:43:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35d7d25a-ef3c-4801-910b-110310995c22", - "start": { - "$date": "2022-02-21T18:43:54.000Z" - }, - "end": { - "$date": "2022-02-21T18:50:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04256a2c-d5d5-49ee-8534-1856cad6944c", - "start": { - "$date": "2022-02-21T18:50:54.000Z" - }, - "end": { - "$date": "2022-02-21T18:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14cb06d2-960a-44c5-82fc-2361e70af2ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T18:57:37.000Z" - }, - "end": { - "$date": "2022-02-21T19:19:04.000Z" - }, - "events": [ - { - "uuid": "5175e799-0038-4f9e-96ce-9e70580a0ab4", - "start": { - "$date": "2022-02-21T18:57:37.000Z" - }, - "end": { - "$date": "2022-02-21T19:19:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9151d77d-2b58-4369-b851-29a29d1b275f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-21T19:04:22.000Z" - }, - "end": { - "$date": "2022-02-21T22:43:17.000Z" - }, - "events": [ - { - "uuid": "f9e413c5-a85a-411c-a7d2-66656f169278", - "start": { - "$date": "2022-02-21T19:04:22.000Z" - }, - "end": { - "$date": "2022-02-21T20:26:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fdf6da65-604b-44a0-b64b-259bc3d17b1e", - "start": { - "$date": "2022-02-21T20:26:22.000Z" - }, - "end": { - "$date": "2022-02-21T20:31:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e4065a3-f65c-43be-a0a8-f4679d44fce8", - "start": { - "$date": "2022-02-21T20:31:22.000Z" - }, - "end": { - "$date": "2022-02-21T20:45:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c8271330-46b7-4708-9364-be8cb4f0ede0", - "start": { - "$date": "2022-02-21T20:45:22.000Z" - }, - "end": { - "$date": "2022-02-21T20:47:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea6fe729-ae53-421b-8078-945b220a0f9d", - "start": { - "$date": "2022-02-21T20:47:22.000Z" - }, - "end": { - "$date": "2022-02-21T21:02:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e06b2d4-10a8-4961-ac60-97f84dbdad0b", - "start": { - "$date": "2022-02-21T21:02:22.000Z" - }, - "end": { - "$date": "2022-02-21T21:05:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a4608e9e-dfd9-4bf0-b09f-824293b48aff", - "start": { - "$date": "2022-02-21T21:05:22.000Z" - }, - "end": { - "$date": "2022-02-21T21:07:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1945f8b0-01fd-4c79-ad62-e8b2d0131301", - "start": { - "$date": "2022-02-21T21:07:22.000Z" - }, - "end": { - "$date": "2022-02-21T21:12:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce62fb13-5aad-4ddb-a707-08f086d104f6", - "start": { - "$date": "2022-02-21T21:12:22.000Z" - }, - "end": { - "$date": "2022-02-21T21:20:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa24df54-d7b5-4b0c-a281-d74bca7f1be5", - "start": { - "$date": "2022-02-21T21:20:22.000Z" - }, - "end": { - "$date": "2022-02-21T21:24:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a3417d36-e2e7-4613-857a-55891bd7825a", - "start": { - "$date": "2022-02-21T21:24:22.000Z" - }, - "end": { - "$date": "2022-02-21T22:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c979cbd-adbb-49b9-8669-6020f0ae2ac5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-21T19:09:26.000Z" - }, - "end": { - "$date": "2022-02-21T19:29:11.000Z" - }, - "events": [ - { - "uuid": "0795a693-c737-4c9d-af3d-e83573bc40ee", - "start": { - "$date": "2022-02-21T19:09:26.000Z" - }, - "end": { - "$date": "2022-02-21T19:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "215a5129-83dc-4f9c-b4fe-93c3629b3f6d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T19:23:09.000Z" - }, - "end": { - "$date": "2022-02-21T19:41:05.000Z" - }, - "events": [ - { - "uuid": "f774e470-4b7a-4a3c-8905-abbe4881fa34", - "start": { - "$date": "2022-02-21T19:23:09.000Z" - }, - "end": { - "$date": "2022-02-21T19:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ccbd0c7-5403-4655-b1e9-9c26afe0ac83", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-21T20:16:11.000Z" - }, - "end": { - "$date": "2022-02-21T20:32:26.000Z" - }, - "events": [ - { - "uuid": "2a50088c-582f-4163-a0a0-112a1a58bf86", - "start": { - "$date": "2022-02-21T20:16:11.000Z" - }, - "end": { - "$date": "2022-02-21T20:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9caeaee1-baf6-49f7-9358-87edb929e936", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T22:58:39.000Z" - }, - "end": { - "$date": "2022-02-21T23:20:38.000Z" - }, - "events": [ - { - "uuid": "a91813c6-2597-42e3-9fee-5def9db76e41", - "start": { - "$date": "2022-02-21T22:58:39.000Z" - }, - "end": { - "$date": "2022-02-21T23:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c41dce21-d8c4-4d41-bca3-f32802db6133", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T23:21:29.000Z" - }, - "end": { - "$date": "2022-02-21T23:34:21.000Z" - }, - "events": [ - { - "uuid": "9f009d19-e8bb-464d-bcd8-0dd28fe07976", - "start": { - "$date": "2022-02-21T23:21:29.000Z" - }, - "end": { - "$date": "2022-02-21T23:34:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba952a26-d1be-4c38-a906-ae2220883764", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T23:36:47.000Z" - }, - "end": { - "$date": "2022-02-21T23:54:48.000Z" - }, - "events": [ - { - "uuid": "c7ff209f-4d72-4378-b231-d539ddde3557", - "start": { - "$date": "2022-02-21T23:36:47.000Z" - }, - "end": { - "$date": "2022-02-21T23:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70af761a-af40-4543-9d28-8166b98e914c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-21T23:57:44.000Z" - }, - "end": { - "$date": "2022-02-22T00:19:18.000Z" - }, - "events": [ - { - "uuid": "47401858-fd78-495e-b331-8b9102d3f1e6", - "start": { - "$date": "2022-02-21T23:57:44.000Z" - }, - "end": { - "$date": "2022-02-22T00:19:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "122b6794-7b11-431d-920b-17951b48b4ef", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-22T00:10:51.000Z" - }, - "end": { - "$date": "2022-02-22T02:21:28.000Z" - }, - "events": [ - { - "uuid": "a1780d6e-046f-409e-8830-b7fc5d481ae4", - "start": { - "$date": "2022-02-22T00:10:51.000Z" - }, - "end": { - "$date": "2022-02-22T01:03:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a8a56bd-203e-4784-b80c-0f886db7190c", - "start": { - "$date": "2022-02-22T01:03:51.000Z" - }, - "end": { - "$date": "2022-02-22T01:59:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a128d071-6e34-4f3e-9fcf-c061bec6aa5a", - "start": { - "$date": "2022-02-22T01:59:51.000Z" - }, - "end": { - "$date": "2022-02-22T02:21:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbab5524-6cc3-4da0-b730-40af9e7ddff3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-22T00:22:11.000Z" - }, - "end": { - "$date": "2022-02-22T00:45:18.000Z" - }, - "events": [ - { - "uuid": "5cc3f83f-4f8d-4b3b-adfc-c660d7ccdcc9", - "start": { - "$date": "2022-02-22T00:22:11.000Z" - }, - "end": { - "$date": "2022-02-22T00:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f514b871-2a6a-4e71-b191-0e43dd5da67c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-22T01:41:29.000Z" - }, - "end": { - "$date": "2022-02-22T04:15:19.000Z" - }, - "events": [ - { - "uuid": "7fc215db-df81-4821-8a32-7b03cf88cad1", - "start": { - "$date": "2022-02-22T01:41:29.000Z" - }, - "end": { - "$date": "2022-02-22T04:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6ab6032-46a7-4389-ac6e-bd8227eb26d4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-22T02:03:16.000Z" - }, - "end": { - "$date": "2022-02-22T02:34:47.000Z" - }, - "events": [ - { - "uuid": "a55ea166-319e-4f6b-996e-b761a4ff3602", - "start": { - "$date": "2022-02-22T02:03:16.000Z" - }, - "end": { - "$date": "2022-02-22T02:34:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "96be3e3f-e4f9-40e4-b132-6526d715fd40", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-22T04:23:28.000Z" - }, - "end": { - "$date": "2022-02-22T05:38:05.000Z" - }, - "events": [ - { - "uuid": "0f9c1c1c-3da4-4516-9a17-43c95ecc5df4", - "start": { - "$date": "2022-02-22T04:23:28.000Z" - }, - "end": { - "$date": "2022-02-22T05:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "142e806f-b974-4fa7-8323-ac39383c4ccd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-22T02:36:57.000Z" - }, - "end": { - "$date": "2022-02-22T03:10:56.000Z" - }, - "events": [ - { - "uuid": "da759d14-d041-4307-9d25-0e2fcd0c14b2", - "start": { - "$date": "2022-02-22T02:36:57.000Z" - }, - "end": { - "$date": "2022-02-22T03:10:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "8933afce-f509-4ffa-b17f-36d566da9fa2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-22T03:04:34.000Z" - }, - "end": { - "$date": "2022-02-22T03:16:35.000Z" - }, - "events": [ - { - "uuid": "3441bf2f-4e3f-41aa-9d81-89036978a8d9", - "start": { - "$date": "2022-02-22T03:04:34.000Z" - }, - "end": { - "$date": "2022-02-22T03:16:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "71a974d4-3c8c-44ce-933c-5c4d0104c493", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-22T03:07:11.000Z" - }, - "end": { - "$date": "2022-02-22T03:56:17.000Z" - }, - "events": [ - { - "uuid": "33b94df1-4c5c-473f-8506-eabdc73b150e", - "start": { - "$date": "2022-02-22T03:07:11.000Z" - }, - "end": { - "$date": "2022-02-22T03:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "ef8bc8db-1760-47eb-8ef3-62d815246f4a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-22T03:04:34.000Z" - }, - "end": { - "$date": "2022-02-22T04:45:12.000Z" - }, - "events": [ - { - "uuid": "31762c6e-c25c-490e-89fd-15457f91d1aa", - "start": { - "$date": "2022-02-22T03:04:34.000Z" - }, - "end": { - "$date": "2022-02-22T04:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4693c10c-1ab1-4ad5-bccd-3e4437bd75d0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-22T03:57:37.000Z" - }, - "end": { - "$date": "2022-02-22T04:00:13.000Z" - }, - "events": [ - { - "uuid": "3cd78e8f-a96c-4ec8-b8f8-79b3b8899bee", - "start": { - "$date": "2022-02-22T03:57:37.000Z" - }, - "end": { - "$date": "2022-02-22T04:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b8735e42-9d48-456e-8d1f-f71dbaa2c9da", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-22T04:00:27.000Z" - }, - "end": { - "$date": "2022-02-22T06:37:17.000Z" - }, - "events": [ - { - "uuid": "7553c171-e18d-4cd5-b445-af79a27368d4", - "start": { - "$date": "2022-02-22T04:00:27.000Z" - }, - "end": { - "$date": "2022-02-22T06:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "44fc2187-5b15-4f8d-b2c7-94cc0b3f5aa7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-22T04:18:14.000Z" - }, - "end": { - "$date": "2022-02-22T05:28:14.000Z" - }, - "events": [ - { - "uuid": "75c90768-1602-443e-afae-8517d1deeca1", - "start": { - "$date": "2022-02-22T04:18:14.000Z" - }, - "end": { - "$date": "2022-02-22T05:28:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "3f982827-4034-41cb-9688-7659a7e29043", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-22T04:47:49.000Z" - }, - "end": { - "$date": "2022-02-22T06:27:48.000Z" - }, - "events": [ - { - "uuid": "e473220f-a660-4863-95fe-f2989d57510e", - "start": { - "$date": "2022-02-22T04:47:49.000Z" - }, - "end": { - "$date": "2022-02-22T06:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "6f618819-24c8-45f9-ad2b-ce0d7c4bc0e9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-22T05:28:41.000Z" - }, - "end": { - "$date": "2022-02-22T07:29:59.000Z" - }, - "events": [ - { - "uuid": "6e9ab592-3653-4fc7-a4b8-99812c62ebea", - "start": { - "$date": "2022-02-22T05:28:41.000Z" - }, - "end": { - "$date": "2022-02-22T07:29:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52e15467-6772-46cf-a751-145a4229604c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-22T06:37:52.000Z" - }, - "end": { - "$date": "2022-02-22T06:58:43.000Z" - }, - "events": [ - { - "uuid": "37d5dc45-acdc-460e-8eaa-bcd8f64acf8f", - "start": { - "$date": "2022-02-22T06:37:52.000Z" - }, - "end": { - "$date": "2022-02-22T06:58:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f422bc1-8488-47d1-ae14-5343341fb210", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-22T07:01:42.000Z" - }, - "end": { - "$date": "2022-02-22T07:30:14.000Z" - }, - "events": [ - { - "uuid": "18402517-d962-48cc-a83c-ef061f03c474", - "start": { - "$date": "2022-02-22T07:01:42.000Z" - }, - "end": { - "$date": "2022-02-22T07:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "53d0e726-d535-4ad8-8efe-2df8907bfa75", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-22T07:49:30.000Z" - }, - "end": { - "$date": "2022-02-22T09:00:57.000Z" - }, - "events": [ - { - "uuid": "0e00de4d-56ce-4bd6-be4a-6665654a1345", - "start": { - "$date": "2022-02-22T07:49:30.000Z" - }, - "end": { - "$date": "2022-02-22T09:00:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "44c8084f-f679-4152-83d1-68d9ee36007c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-22T09:14:09.000Z" - }, - "end": { - "$date": "2022-02-22T09:56:51.000Z" - }, - "events": [ - { - "uuid": "cbfb5a93-cb06-4b1b-b047-0b399750c26f", - "start": { - "$date": "2022-02-22T09:14:09.000Z" - }, - "end": { - "$date": "2022-02-22T09:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3269e156-07c3-426b-a5ee-a3aa4b521436", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-22T18:46:47.000Z" - }, - "end": { - "$date": "2022-02-22T19:20:19.000Z" - }, - "events": [ - { - "uuid": "8a613c18-e360-4e68-8243-04c5bd124bf4", - "start": { - "$date": "2022-02-22T18:46:47.000Z" - }, - "end": { - "$date": "2022-02-22T19:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc7d6138-d2f2-4b05-9df5-da717c37832c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-22T19:36:30.000Z" - }, - "end": { - "$date": "2022-02-22T19:57:25.000Z" - }, - "events": [ - { - "uuid": "f0666d6e-16e7-49b6-a661-23f9d02d7fb5", - "start": { - "$date": "2022-02-22T19:36:30.000Z" - }, - "end": { - "$date": "2022-02-22T19:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1361c6d0-d514-4979-99b6-9209a70b6faf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-22T19:58:44.000Z" - }, - "end": { - "$date": "2022-02-22T20:19:53.000Z" - }, - "events": [ - { - "uuid": "3c311cb0-b182-4da5-8dd4-c6024c28fdbd", - "start": { - "$date": "2022-02-22T19:58:44.000Z" - }, - "end": { - "$date": "2022-02-22T20:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eecc20c9-c15c-4fa6-b527-cabdb2cee2a0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-22T23:07:21.000Z" - }, - "end": { - "$date": "2022-02-22T23:22:56.000Z" - }, - "events": [ - { - "uuid": "2ee75471-fcb0-48f1-8832-844414273fbb", - "start": { - "$date": "2022-02-22T23:07:21.000Z" - }, - "end": { - "$date": "2022-02-22T23:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d3bba669-88c1-46a2-b799-de55ea5b3a61", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-22T23:23:32.000Z" - }, - "end": { - "$date": "2022-02-23T01:57:31.000Z" - }, - "events": [ - { - "uuid": "08a61ec1-b63a-4553-9a75-a3ee0becc4bd", - "start": { - "$date": "2022-02-22T23:23:32.000Z" - }, - "end": { - "$date": "2022-02-23T01:57:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b58c49f4-bf88-43bc-9966-89ba2a317af7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-22T23:24:32.000Z" - }, - "end": { - "$date": "2022-02-22T23:45:52.000Z" - }, - "events": [ - { - "uuid": "81902931-539a-45cd-901a-78029d7e65d2", - "start": { - "$date": "2022-02-22T23:24:32.000Z" - }, - "end": { - "$date": "2022-02-22T23:45:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5c9ad36e-ac06-48df-aeb0-4640c942e008", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-22T23:33:07.000Z" - }, - "end": { - "$date": "2022-02-22T23:59:36.000Z" - }, - "events": [ - { - "uuid": "d9527070-6264-47a4-9b44-eee7dab6f5ac", - "start": { - "$date": "2022-02-22T23:33:07.000Z" - }, - "end": { - "$date": "2022-02-22T23:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "53668fd1-90b0-4e99-9956-28ad8e45f987", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T00:35:16.000Z" - }, - "end": { - "$date": "2022-02-23T00:42:20.000Z" - }, - "events": [ - { - "uuid": "b10e259a-78f4-4b49-9d64-edf5e79787f3", - "start": { - "$date": "2022-02-23T00:35:16.000Z" - }, - "end": { - "$date": "2022-02-23T00:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "961146af-1d44-4880-839e-334d0d8e3f5d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-23T00:57:15.000Z" - }, - "end": { - "$date": "2022-02-23T01:13:55.000Z" - }, - "events": [ - { - "uuid": "dd2a77e4-48c4-47c1-a41c-f3e1c4f08c89", - "start": { - "$date": "2022-02-23T00:57:15.000Z" - }, - "end": { - "$date": "2022-02-23T01:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "63884446-ee68-4fea-95aa-6c200582567a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-23T01:01:44.000Z" - }, - "end": { - "$date": "2022-02-23T02:10:25.000Z" - }, - "events": [ - { - "uuid": "34763ea2-0509-4832-ac57-71f8c785325a", - "start": { - "$date": "2022-02-23T01:01:44.000Z" - }, - "end": { - "$date": "2022-02-23T02:07:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "17281df7-e286-4f65-8cfa-8f5a309e1567", - "start": { - "$date": "2022-02-23T02:07:44.000Z" - }, - "end": { - "$date": "2022-02-23T02:10:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "182fc805-a337-4d5a-94fd-290dee960c8f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T01:04:10.000Z" - }, - "end": { - "$date": "2022-02-23T02:46:45.000Z" - }, - "events": [ - { - "uuid": "18f560f1-b90c-4b9f-8d01-71b7ce06a8ab", - "start": { - "$date": "2022-02-23T01:04:10.000Z" - }, - "end": { - "$date": "2022-02-23T02:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b472bfd2-3108-49c9-8bc0-82ce26f61c40", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-23T01:16:11.000Z" - }, - "end": { - "$date": "2022-02-23T01:35:04.000Z" - }, - "events": [ - { - "uuid": "10130da8-e668-4926-a961-71c7a2259837", - "start": { - "$date": "2022-02-23T01:16:11.000Z" - }, - "end": { - "$date": "2022-02-23T01:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55054b69-d58a-4d88-8ab5-8221222b9589", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-23T01:37:58.000Z" - }, - "end": { - "$date": "2022-02-23T01:59:26.000Z" - }, - "events": [ - { - "uuid": "2f24b7c1-5497-42ad-bf24-adfdda40523d", - "start": { - "$date": "2022-02-23T01:37:58.000Z" - }, - "end": { - "$date": "2022-02-23T01:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "5886b46e-02ad-4174-b536-28e718482868", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-23T01:42:53.000Z" - }, - "end": { - "$date": "2022-02-23T01:56:55.000Z" - }, - "events": [ - { - "uuid": "e45ae173-a71c-467a-b210-3643d8b56e2b", - "start": { - "$date": "2022-02-23T01:42:53.000Z" - }, - "end": { - "$date": "2022-02-23T01:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3f992973-755f-44fd-9600-1232e45c41ca", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-23T02:10:25.000Z" - }, - "end": { - "$date": "2022-02-23T02:12:05.000Z" - }, - "events": [ - { - "uuid": "d8be3208-4735-4132-bc74-8985fe0f09a5", - "start": { - "$date": "2022-02-23T02:10:25.000Z" - }, - "end": { - "$date": "2022-02-23T02:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3eecad21-413e-4204-9152-6c26e5478fcb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-23T01:57:00.000Z" - }, - "end": { - "$date": "2022-02-23T04:52:15.000Z" - }, - "events": [ - { - "uuid": "d9c450f7-57ec-4bf4-92f4-c3ed5905a888", - "start": { - "$date": "2022-02-23T01:57:00.000Z" - }, - "end": { - "$date": "2022-02-23T03:31:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b9f59cde-7057-487e-b72e-ca4b7e57cfe4", - "start": { - "$date": "2022-02-23T03:31:00.000Z" - }, - "end": { - "$date": "2022-02-23T03:36:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "50bb4516-04d1-4b7c-95d9-03de58c3db1d", - "start": { - "$date": "2022-02-23T03:36:00.000Z" - }, - "end": { - "$date": "2022-02-23T04:52:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9606a619-93fb-4cd2-8683-52d76e520805", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-23T01:58:11.000Z" - }, - "end": { - "$date": "2022-02-23T02:58:49.000Z" - }, - "events": [ - { - "uuid": "794c5e7e-aca0-4ea5-8048-335cae7a8d08", - "start": { - "$date": "2022-02-23T01:58:11.000Z" - }, - "end": { - "$date": "2022-02-23T02:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d13d41e6-487a-4125-a346-075797128dfc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-23T01:59:04.000Z" - }, - "end": { - "$date": "2022-02-23T02:06:49.000Z" - }, - "events": [ - { - "uuid": "83bae885-0b2f-4f24-b8ec-164857b5ff1d", - "start": { - "$date": "2022-02-23T01:59:04.000Z" - }, - "end": { - "$date": "2022-02-23T02:06:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30367f00-5124-4462-8800-209376ec156b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-23T02:02:04.000Z" - }, - "end": { - "$date": "2022-02-23T02:19:39.000Z" - }, - "events": [ - { - "uuid": "56b0057c-3153-4bc5-bc0a-45a057dc1696", - "start": { - "$date": "2022-02-23T02:02:04.000Z" - }, - "end": { - "$date": "2022-02-23T02:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a9bf5f7-814b-4a44-a9a0-74579f95bba8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-23T02:20:18.000Z" - }, - "end": { - "$date": "2022-02-23T02:23:01.000Z" - }, - "events": [ - { - "uuid": "c9bd65ab-a621-47b9-9b91-72b9308aa26f", - "start": { - "$date": "2022-02-23T02:20:18.000Z" - }, - "end": { - "$date": "2022-02-23T02:23:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c2b6e9a3-2940-4a92-9fcc-07d3a1444ba2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-23T02:24:27.000Z" - }, - "end": { - "$date": "2022-02-23T02:56:34.000Z" - }, - "events": [ - { - "uuid": "608e3f29-d738-4b07-86d0-a7ccf8468a68", - "start": { - "$date": "2022-02-23T02:24:27.000Z" - }, - "end": { - "$date": "2022-02-23T02:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "64e63720-b3b8-4035-a7a1-5e73eedb0795", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-23T02:25:32.000Z" - }, - "end": { - "$date": "2022-02-23T03:13:19.000Z" - }, - "events": [ - { - "uuid": "609a0211-4cf7-4f85-993f-4ca37da78b28", - "start": { - "$date": "2022-02-23T02:25:32.000Z" - }, - "end": { - "$date": "2022-02-23T03:13:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9359548f-4854-40c5-b924-1e7b67a8acaa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-23T02:31:41.000Z" - }, - "end": { - "$date": "2022-02-23T03:27:03.000Z" - }, - "events": [ - { - "uuid": "690c030f-e99a-41d4-984a-341649b82fd4", - "start": { - "$date": "2022-02-23T02:31:41.000Z" - }, - "end": { - "$date": "2022-02-23T03:27:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "b8d96224-8087-48b8-ac1d-ff4b937435c2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-23T04:41:36.000Z" - }, - "end": { - "$date": "2022-02-23T04:45:35.000Z" - }, - "events": [ - { - "uuid": "e5b9202e-a19a-404e-a534-1151ba3b3692", - "start": { - "$date": "2022-02-23T04:41:36.000Z" - }, - "end": { - "$date": "2022-02-23T04:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f2469b34-4649-4a4d-8f46-d52801e627f6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-23T02:56:45.000Z" - }, - "end": { - "$date": "2022-02-23T02:59:29.000Z" - }, - "events": [ - { - "uuid": "c90249c0-9de7-46ad-8352-1aae9c96ccfd", - "start": { - "$date": "2022-02-23T02:56:45.000Z" - }, - "end": { - "$date": "2022-02-23T02:59:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "405bb527-3a29-4055-8abb-2315a834383f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-23T03:00:50.000Z" - }, - "end": { - "$date": "2022-02-23T06:23:11.000Z" - }, - "events": [ - { - "uuid": "55e017d1-f72e-40d4-a709-e1e0add35024", - "start": { - "$date": "2022-02-23T03:00:50.000Z" - }, - "end": { - "$date": "2022-02-23T06:23:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", - "uuid": "b97601c8-fafb-48f5-8d5e-eb73907ad4fa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T03:18:55.000Z" - }, - "end": { - "$date": "2022-02-23T03:42:22.000Z" - }, - "events": [ - { - "uuid": "77797e57-1412-4038-aae3-95a7b6eeebc6", - "start": { - "$date": "2022-02-23T03:18:55.000Z" - }, - "end": { - "$date": "2022-02-23T03:42:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4705d818-5421-4729-a012-42adf97474b0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T03:33:36.000Z" - }, - "end": { - "$date": "2022-02-23T04:31:04.000Z" - }, - "events": [ - { - "uuid": "774c51fb-7489-4930-a5de-e764c83c55a3", - "start": { - "$date": "2022-02-23T03:33:36.000Z" - }, - "end": { - "$date": "2022-02-23T04:31:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c9a6f50-0527-4fc0-be55-597b5de8f923", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-23T03:45:37.000Z" - }, - "end": { - "$date": "2022-02-23T04:03:02.000Z" - }, - "events": [ - { - "uuid": "9d8d42f5-357e-4c63-be8f-a61b7f1c5ae1", - "start": { - "$date": "2022-02-23T03:45:37.000Z" - }, - "end": { - "$date": "2022-02-23T04:03:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", - "uuid": "b3cb4c18-4a5e-4e17-9f68-b7e07d3beafe", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T03:52:09.000Z" - }, - "end": { - "$date": "2022-02-23T04:32:20.000Z" - }, - "events": [ - { - "uuid": "7a360274-b558-4b25-9a54-a2390296769f", - "start": { - "$date": "2022-02-23T03:52:09.000Z" - }, - "end": { - "$date": "2022-02-23T04:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9741d62-e92b-476e-acea-feb24011f91a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T05:11:01.000Z" - }, - "end": { - "$date": "2022-02-23T05:11:06.000Z" - }, - "events": [ - { - "uuid": "d2793bc9-c67d-4a00-bdc4-713f53e0fc2a", - "start": { - "$date": "2022-02-23T05:11:01.000Z" - }, - "end": { - "$date": "2022-02-23T05:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85783d0a-4819-463d-b222-7af023d4e2ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T05:15:37.000Z" - }, - "end": { - "$date": "2022-02-23T05:55:07.000Z" - }, - "events": [ - { - "uuid": "0c408b60-2234-4c88-b8a8-80e0a037618c", - "start": { - "$date": "2022-02-23T05:15:37.000Z" - }, - "end": { - "$date": "2022-02-23T05:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5743db1b-6950-47a4-ace2-b85cc6a0b410", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-23T05:56:21.000Z" - }, - "end": { - "$date": "2022-02-23T06:13:52.000Z" - }, - "events": [ - { - "uuid": "9e164585-505c-494d-9cb3-9458b7acebce", - "start": { - "$date": "2022-02-23T05:56:21.000Z" - }, - "end": { - "$date": "2022-02-23T06:13:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbafbc4d-c11b-41c6-945e-189208b02a0c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T06:21:21.000Z" - }, - "end": { - "$date": "2022-02-23T06:22:46.000Z" - }, - "events": [ - { - "uuid": "bc586cd1-ffba-4f4f-a679-4da3001fc7bb", - "start": { - "$date": "2022-02-23T06:21:21.000Z" - }, - "end": { - "$date": "2022-02-23T06:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a54185b-a8ec-4e4c-9034-559d4c3e8dd6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-23T06:18:37.000Z" - }, - "end": { - "$date": "2022-02-23T06:43:17.000Z" - }, - "events": [ - { - "uuid": "94119e31-c9a7-4e32-a9bc-6ecf7cd9eeef", - "start": { - "$date": "2022-02-23T06:18:37.000Z" - }, - "end": { - "$date": "2022-02-23T06:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "fa1240d6-c678-4316-88b2-a376c255eeb8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T06:22:51.000Z" - }, - "end": { - "$date": "2022-02-23T07:44:49.000Z" - }, - "events": [ - { - "uuid": "c0a52895-3377-40b7-a230-64404ccdea20", - "start": { - "$date": "2022-02-23T06:22:51.000Z" - }, - "end": { - "$date": "2022-02-23T07:44:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "307399f3-d426-4830-92c2-bb560b6aae41", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-23T06:48:58.000Z" - }, - "end": { - "$date": "2022-02-23T07:16:33.000Z" - }, - "events": [ - { - "uuid": "ca277e14-ceca-4738-b640-d824431fa3fe", - "start": { - "$date": "2022-02-23T06:48:58.000Z" - }, - "end": { - "$date": "2022-02-23T07:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a27ff8e9-c756-4985-9cee-0d2563676d4c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-23T15:53:27.000Z" - }, - "end": { - "$date": "2022-02-23T16:10:37.000Z" - }, - "events": [ - { - "uuid": "c47c58d9-58c2-4d75-b6c4-6e7c22f7b510", - "start": { - "$date": "2022-02-23T15:53:27.000Z" - }, - "end": { - "$date": "2022-02-23T16:10:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "beaae8c1-eccb-47d1-a056-ea4dfeaa8a90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-23T16:11:53.000Z" - }, - "end": { - "$date": "2022-02-23T16:32:33.000Z" - }, - "events": [ - { - "uuid": "c0e31621-5f24-40d7-b675-80ba59bd2786", - "start": { - "$date": "2022-02-23T16:11:53.000Z" - }, - "end": { - "$date": "2022-02-23T16:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75ed7cff-d42f-48f4-8f88-5ad270557c79", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-23T16:34:18.000Z" - }, - "end": { - "$date": "2022-02-23T16:54:03.000Z" - }, - "events": [ - { - "uuid": "e66747cc-9cec-49fb-a679-c92e194157d5", - "start": { - "$date": "2022-02-23T16:34:18.000Z" - }, - "end": { - "$date": "2022-02-23T16:54:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f9dac2c9-5024-4a0f-ad89-dab38d4b035c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T17:25:07.000Z" - }, - "end": { - "$date": "2022-02-23T21:51:28.000Z" - }, - "events": [ - { - "uuid": "ef7d2bdd-1c1a-4378-a895-4d9132539133", - "start": { - "$date": "2022-02-23T17:25:07.000Z" - }, - "end": { - "$date": "2022-02-23T18:45:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cda0fb9f-def4-4a1f-a52a-8e187936c54f", - "start": { - "$date": "2022-02-23T18:45:07.000Z" - }, - "end": { - "$date": "2022-02-23T19:05:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cf9733b6-8ef3-4160-b089-7b3f2af96e6a", - "start": { - "$date": "2022-02-23T19:05:07.000Z" - }, - "end": { - "$date": "2022-02-23T21:51:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "97d8b0ad-d73b-4efd-993d-4cf6f8397aa4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T22:21:55.000Z" - }, - "end": { - "$date": "2022-02-23T23:00:46.000Z" - }, - "events": [ - { - "uuid": "5ad7672f-7074-4b9f-b810-615d5b079c24", - "start": { - "$date": "2022-02-23T22:21:55.000Z" - }, - "end": { - "$date": "2022-02-23T23:00:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c1e5557b-35cb-4e0d-a2e1-1621a9ce1dc6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T22:27:10.000Z" - }, - "end": { - "$date": "2022-02-23T23:04:44.000Z" - }, - "events": [ - { - "uuid": "8a6fe2a3-466e-4369-b829-857c7efea9f1", - "start": { - "$date": "2022-02-23T22:27:10.000Z" - }, - "end": { - "$date": "2022-02-23T23:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0408a827-2180-45fb-82c6-a8cd85ce6d94", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-23T22:57:33.000Z" - }, - "end": { - "$date": "2022-02-24T02:31:17.000Z" - }, - "events": [ - { - "uuid": "912c2f45-0658-4e04-88c5-43059b4fac15", - "start": { - "$date": "2022-02-23T22:57:33.000Z" - }, - "end": { - "$date": "2022-02-24T02:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20952d36-cfdd-4bfa-a8d7-9fc08fc9b8c3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T23:06:24.000Z" - }, - "end": { - "$date": "2022-02-23T23:30:41.000Z" - }, - "events": [ - { - "uuid": "3aae241f-5f89-4dd4-9f2a-83ce8bdc65a2", - "start": { - "$date": "2022-02-23T23:06:24.000Z" - }, - "end": { - "$date": "2022-02-23T23:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "759bf64b-9040-49d6-b42e-4fbd2155ac91", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T23:11:26.000Z" - }, - "end": { - "$date": "2022-02-23T23:13:47.000Z" - }, - "events": [ - { - "uuid": "c4a2701d-628b-46d9-9835-70ef2b7998fc", - "start": { - "$date": "2022-02-23T23:11:26.000Z" - }, - "end": { - "$date": "2022-02-23T23:13:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "bfcf2baf-caae-4d59-bbad-c963a111c1e4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T23:14:36.000Z" - }, - "end": { - "$date": "2022-02-23T23:19:08.000Z" - }, - "events": [ - { - "uuid": "65542a62-e4df-40bf-978d-b4f3634acbd0", - "start": { - "$date": "2022-02-23T23:14:36.000Z" - }, - "end": { - "$date": "2022-02-23T23:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", - "uuid": "784f4714-2bc6-4383-87c2-343b247aafaf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T23:21:17.000Z" - }, - "end": { - "$date": "2022-02-23T23:22:23.000Z" - }, - "events": [ - { - "uuid": "8636bb4f-3105-4607-ab11-332c021e25f5", - "start": { - "$date": "2022-02-23T23:21:17.000Z" - }, - "end": { - "$date": "2022-02-23T23:22:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", - "uuid": "18d2b68d-097f-4fcf-8521-180200f0f06c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-23T23:24:42.000Z" - }, - "end": { - "$date": "2022-02-24T00:13:51.000Z" - }, - "events": [ - { - "uuid": "be6cc4aa-dd37-4ea5-8b16-09337882bc45", - "start": { - "$date": "2022-02-23T23:24:42.000Z" - }, - "end": { - "$date": "2022-02-24T00:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbc7429b-a08a-4c88-b983-544464d48940", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-23T23:32:53.000Z" - }, - "end": { - "$date": "2022-02-24T00:09:41.000Z" - }, - "events": [ - { - "uuid": "cf9bbff7-4fa0-42db-acd2-4b881b4bb10c", - "start": { - "$date": "2022-02-23T23:32:53.000Z" - }, - "end": { - "$date": "2022-02-24T00:09:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a172a331-44b7-4a62-b270-b0dc380a9cbe", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T00:15:21.000Z" - }, - "end": { - "$date": "2022-02-24T00:50:49.000Z" - }, - "events": [ - { - "uuid": "64da0fa7-7712-472d-8209-c64fdfad90c6", - "start": { - "$date": "2022-02-24T00:15:21.000Z" - }, - "end": { - "$date": "2022-02-24T00:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c6ff943-b156-456e-ad01-143651e771f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-24T00:42:30.000Z" - }, - "end": { - "$date": "2022-02-24T01:50:59.000Z" - }, - "events": [ - { - "uuid": "0c88d1d3-1604-4acf-a034-b0afa2c460f5", - "start": { - "$date": "2022-02-24T00:42:30.000Z" - }, - "end": { - "$date": "2022-02-24T01:31:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5e521dd-b570-4c95-9ace-5431f3c5b091", - "start": { - "$date": "2022-02-24T01:31:30.000Z" - }, - "end": { - "$date": "2022-02-24T01:50:59.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "67d38f80-e0a2-4fd6-869a-3fb515c70e30", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T00:54:59.000Z" - }, - "end": { - "$date": "2022-02-24T01:00:56.000Z" - }, - "events": [ - { - "uuid": "fc39c847-542e-484d-84ee-8d62e2f5bc03", - "start": { - "$date": "2022-02-24T00:54:59.000Z" - }, - "end": { - "$date": "2022-02-24T01:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "6eefff98-fcc4-4fc3-9853-63547df29adb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T01:01:10.000Z" - }, - "end": { - "$date": "2022-02-24T01:03:52.000Z" - }, - "events": [ - { - "uuid": "e04f1b28-6a0e-4616-b4d8-439bd4f77ff7", - "start": { - "$date": "2022-02-24T01:01:10.000Z" - }, - "end": { - "$date": "2022-02-24T01:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c22fc714-98aa-4cad-917c-d258153f7cfb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T01:08:21.000Z" - }, - "end": { - "$date": "2022-02-24T01:35:53.000Z" - }, - "events": [ - { - "uuid": "5e04640f-a321-4ac9-bfee-b84eb7e48497", - "start": { - "$date": "2022-02-24T01:08:21.000Z" - }, - "end": { - "$date": "2022-02-24T01:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf707d7e-e8a4-4122-a93c-bacb98f7967c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T01:38:23.000Z" - }, - "end": { - "$date": "2022-02-24T01:57:35.000Z" - }, - "events": [ - { - "uuid": "7166d63b-f051-41f0-a187-053c06432d0b", - "start": { - "$date": "2022-02-24T01:38:23.000Z" - }, - "end": { - "$date": "2022-02-24T01:57:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "41b4ca36-ee18-4e80-b2a8-a419422a8b3e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-24T01:43:26.000Z" - }, - "end": { - "$date": "2022-02-24T02:00:31.000Z" - }, - "events": [ - { - "uuid": "a5a8fe80-0955-4b5a-8272-8048750bb3fd", - "start": { - "$date": "2022-02-24T01:43:26.000Z" - }, - "end": { - "$date": "2022-02-24T02:00:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea522d22-86eb-4c9b-a77a-046f84c7bdec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T02:00:15.000Z" - }, - "end": { - "$date": "2022-02-24T02:26:47.000Z" - }, - "events": [ - { - "uuid": "eb8df683-8d3f-43dc-ac83-9ed2ba7d3587", - "start": { - "$date": "2022-02-24T02:00:15.000Z" - }, - "end": { - "$date": "2022-02-24T02:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45052581-1aa7-47e3-867b-564dcd84f2ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-24T02:02:27.000Z" - }, - "end": { - "$date": "2022-02-24T02:22:22.000Z" - }, - "events": [ - { - "uuid": "f0020daa-4108-4094-b16e-a19e2941f18d", - "start": { - "$date": "2022-02-24T02:02:27.000Z" - }, - "end": { - "$date": "2022-02-24T02:22:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c2ad7720-e9a2-4ced-a0ee-866f6eca13f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-24T02:07:41.000Z" - }, - "end": { - "$date": "2022-02-24T04:59:59.000Z" - }, - "events": [ - { - "uuid": "9b5f656f-535e-4487-ac43-8d8a57886e46", - "start": { - "$date": "2022-02-24T02:07:41.000Z" - }, - "end": { - "$date": "2022-02-24T04:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65e7f6da-79fc-40bd-8965-7c0abf019ae2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T02:35:27.000Z" - }, - "end": { - "$date": "2022-02-24T02:51:29.000Z" - }, - "events": [ - { - "uuid": "d1537f70-2660-402c-b4ee-1112a518ce8d", - "start": { - "$date": "2022-02-24T02:35:27.000Z" - }, - "end": { - "$date": "2022-02-24T02:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b4cb507-1087-4f21-8812-a1e235e608de", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T02:52:17.000Z" - }, - "end": { - "$date": "2022-02-24T02:53:38.000Z" - }, - "events": [ - { - "uuid": "bafbb624-0b1b-4fb8-aa58-753f6e73c531", - "start": { - "$date": "2022-02-24T02:52:17.000Z" - }, - "end": { - "$date": "2022-02-24T02:53:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32e1bd06-447b-4160-b2c1-a37b04efdc0f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T02:55:23.000Z" - }, - "end": { - "$date": "2022-02-24T03:11:25.000Z" - }, - "events": [ - { - "uuid": "1e2685d3-0a35-4e4b-8341-401f8e21a87e", - "start": { - "$date": "2022-02-24T02:55:23.000Z" - }, - "end": { - "$date": "2022-02-24T03:11:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "703b841e-42af-47d6-9248-7f108dc09941", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-24T02:56:44.000Z" - }, - "end": { - "$date": "2022-02-24T04:46:21.000Z" - }, - "events": [ - { - "uuid": "8fd05ab1-6b74-4ede-a946-c281a8cd6475", - "start": { - "$date": "2022-02-24T02:56:44.000Z" - }, - "end": { - "$date": "2022-02-24T04:46:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c97302e9-e002-42b7-982d-3a36659ff84c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-24T03:02:41.000Z" - }, - "end": { - "$date": "2022-02-24T03:26:42.000Z" - }, - "events": [ - { - "uuid": "312d91cd-23ad-4100-a2f0-482445dbb91e", - "start": { - "$date": "2022-02-24T03:02:41.000Z" - }, - "end": { - "$date": "2022-02-24T03:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "36d7d0fa-58c4-4436-9d85-d772874ecc04", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-24T03:34:27.000Z" - }, - "end": { - "$date": "2022-02-24T06:02:39.000Z" - }, - "events": [ - { - "uuid": "e518eb6d-02e9-4c3e-a57b-6fbd0aae63da", - "start": { - "$date": "2022-02-24T03:34:27.000Z" - }, - "end": { - "$date": "2022-02-24T06:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "de4a717b-8f06-41d5-9ae4-0b8e24e3656b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-24T04:24:19.000Z" - }, - "end": { - "$date": "2022-02-24T06:04:50.000Z" - }, - "events": [ - { - "uuid": "bf3fe9ad-40cb-4a4e-8a62-b4bc709c9de1", - "start": { - "$date": "2022-02-24T04:24:19.000Z" - }, - "end": { - "$date": "2022-02-24T06:04:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "844d664b-5ba7-4e3d-8c40-eef9afab7ac2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-24T05:00:44.000Z" - }, - "end": { - "$date": "2022-02-24T07:55:02.000Z" - }, - "events": [ - { - "uuid": "c7be6cc6-71e0-41c4-83c3-7c6501b55a38", - "start": { - "$date": "2022-02-24T05:00:44.000Z" - }, - "end": { - "$date": "2022-02-24T07:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d5ab9d20-ad82-409e-b384-aec4d60f3b67", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-24T05:26:05.000Z" - }, - "end": { - "$date": "2022-02-24T06:33:11.000Z" - }, - "events": [ - { - "uuid": "0b80ecba-c000-4c50-b30b-0c5fb0187e99", - "start": { - "$date": "2022-02-24T05:26:05.000Z" - }, - "end": { - "$date": "2022-02-24T06:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dd6b8fe4-50f4-47a9-adf5-1683c9c8ea81", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-24T06:46:32.000Z" - }, - "end": { - "$date": "2022-02-24T07:29:52.000Z" - }, - "events": [ - { - "uuid": "0dee6518-27c1-4100-aaed-ab6e110827cd", - "start": { - "$date": "2022-02-24T06:46:32.000Z" - }, - "end": { - "$date": "2022-02-24T07:29:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "168b5945-d4eb-4590-810d-31ca29bb80f2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-24T06:54:28.000Z" - }, - "end": { - "$date": "2022-02-24T07:08:20.000Z" - }, - "events": [ - { - "uuid": "9fe25245-3942-4e36-bef7-c0839e86fc17", - "start": { - "$date": "2022-02-24T06:54:28.000Z" - }, - "end": { - "$date": "2022-02-24T07:08:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcaf6bc2-516b-433b-937f-b4ab494b00c5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-24T06:54:41.000Z" - }, - "end": { - "$date": "2022-02-24T07:17:01.000Z" - }, - "events": [ - { - "uuid": "2dec9d49-ad48-49a5-8e0a-6d8495adb814", - "start": { - "$date": "2022-02-24T06:54:41.000Z" - }, - "end": { - "$date": "2022-02-24T07:17:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de13d4b0-e650-464f-9feb-52ca32635ae1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-24T07:19:31.000Z" - }, - "end": { - "$date": "2022-02-24T07:42:17.000Z" - }, - "events": [ - { - "uuid": "c92f1fd2-3242-43c9-a3c0-5692ac20c688", - "start": { - "$date": "2022-02-24T07:19:31.000Z" - }, - "end": { - "$date": "2022-02-24T07:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56548df7-8672-4ecf-b80b-3207ed3c2498", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-24T07:47:28.000Z" - }, - "end": { - "$date": "2022-02-24T08:02:03.000Z" - }, - "events": [ - { - "uuid": "2f542951-477c-464a-a412-1c5df65c8840", - "start": { - "$date": "2022-02-24T07:47:28.000Z" - }, - "end": { - "$date": "2022-02-24T08:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "9d48e4b7-0871-4909-9b93-5ca8e0933a9b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-24T07:48:53.000Z" - }, - "end": { - "$date": "2022-02-24T08:26:57.000Z" - }, - "events": [ - { - "uuid": "6c5c8713-33b3-4e6c-8737-9f515fcdc2f0", - "start": { - "$date": "2022-02-24T07:48:53.000Z" - }, - "end": { - "$date": "2022-02-24T08:26:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "3628e663-7c4f-4d60-8fe5-7c6b47596a6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-24T16:54:12.000Z" - }, - "end": { - "$date": "2022-02-24T18:27:03.000Z" - }, - "events": [ - { - "uuid": "835ae806-f11c-4f07-9b19-65f76a666643", - "start": { - "$date": "2022-02-24T16:54:12.000Z" - }, - "end": { - "$date": "2022-02-24T18:27:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb97a464-122a-438a-b6ef-afe2afd8eb9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-24T17:06:04.000Z" - }, - "end": { - "$date": "2022-02-24T17:26:59.000Z" - }, - "events": [ - { - "uuid": "f59bb538-8ac7-433d-a86e-9595f3ebab53", - "start": { - "$date": "2022-02-24T17:06:04.000Z" - }, - "end": { - "$date": "2022-02-24T17:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b6dac8bb-26a5-4d3a-b48a-cba88c00338c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-24T17:39:32.000Z" - }, - "end": { - "$date": "2022-02-24T17:55:51.000Z" - }, - "events": [ - { - "uuid": "4e7303ef-c3ab-4399-9872-3b9674234f4f", - "start": { - "$date": "2022-02-24T17:39:32.000Z" - }, - "end": { - "$date": "2022-02-24T17:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "af5e622f-398f-437c-aee4-df854856e558", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-24T17:42:27.000Z" - }, - "end": { - "$date": "2022-02-24T19:17:04.000Z" - }, - "events": [ - { - "uuid": "0498b37b-e354-45dd-812b-264189fc13b1", - "start": { - "$date": "2022-02-24T17:42:27.000Z" - }, - "end": { - "$date": "2022-02-24T19:17:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "755c3b8d-73d7-4653-b6c8-37abbc619528", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-24T18:28:04.000Z" - }, - "end": { - "$date": "2022-02-24T18:49:19.000Z" - }, - "events": [ - { - "uuid": "fd4e27d4-a166-4aeb-b874-c934b5d3d4ab", - "start": { - "$date": "2022-02-24T18:28:04.000Z" - }, - "end": { - "$date": "2022-02-24T18:49:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "262458a5-e3d7-41df-84e9-86bb87d4fd6b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-24T21:37:11.000Z" - }, - "end": { - "$date": "2022-02-25T00:05:19.000Z" - }, - "events": [ - { - "uuid": "80d94716-41cf-4f3e-bb35-278b23a8d839", - "start": { - "$date": "2022-02-24T21:37:11.000Z" - }, - "end": { - "$date": "2022-02-25T00:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "06a44f16-2d6d-4cc4-86b8-bc50d97a10b8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-24T22:23:57.000Z" - }, - "end": { - "$date": "2022-02-24T23:00:12.000Z" - }, - "events": [ - { - "uuid": "f1cc4c6f-9dcb-4c35-9486-3f26df8cb54a", - "start": { - "$date": "2022-02-24T22:23:57.000Z" - }, - "end": { - "$date": "2022-02-24T23:00:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fddbf37d-bcab-4dd7-82d1-70d9cc8b6a14", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-24T23:01:32.000Z" - }, - "end": { - "$date": "2022-02-25T01:26:47.000Z" - }, - "events": [ - { - "uuid": "4db0cf9e-215c-4ea0-8104-7afc2113f13a", - "start": { - "$date": "2022-02-24T23:01:32.000Z" - }, - "end": { - "$date": "2022-02-25T01:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "28d1983a-0cdb-4c35-a488-af85c13360da", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-24T23:20:30.000Z" - }, - "end": { - "$date": "2022-02-24T23:43:19.000Z" - }, - "events": [ - { - "uuid": "60c086ac-9ffd-44af-bb7c-6429959a6321", - "start": { - "$date": "2022-02-24T23:20:30.000Z" - }, - "end": { - "$date": "2022-02-24T23:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a3867b94-a1b1-426a-8c1c-46dd0299a365", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-24T22:09:39.000Z" - }, - "end": { - "$date": "2022-02-25T01:04:05.000Z" - }, - "events": [ - { - "uuid": "9b30cffd-82a7-4b11-9cdf-c174b9ad8a50", - "start": { - "$date": "2022-02-24T22:09:39.000Z" - }, - "end": { - "$date": "2022-02-24T22:48:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9f52be15-0a43-4526-99f8-cea605b628bb", - "start": { - "$date": "2022-02-24T22:48:39.000Z" - }, - "end": { - "$date": "2022-02-24T22:53:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c046624-f072-4830-bbae-83435971a683", - "start": { - "$date": "2022-02-24T22:53:39.000Z" - }, - "end": { - "$date": "2022-02-24T23:03:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9b3bdcde-8421-4470-8ca2-82d2ae5b34f5", - "start": { - "$date": "2022-02-24T23:03:39.000Z" - }, - "end": { - "$date": "2022-02-25T01:04:05.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "28727517-8179-470f-88a2-f8c642481d6b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-25T00:18:16.000Z" - }, - "end": { - "$date": "2022-02-25T03:03:07.000Z" - }, - "events": [ - { - "uuid": "7d96f1ac-37e2-4cd2-b702-2c008f0570f1", - "start": { - "$date": "2022-02-25T00:18:16.000Z" - }, - "end": { - "$date": "2022-02-25T03:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a420c4a5-bcb2-4330-9164-9e998ec927c4", - "uuid": "3d8e7380-4404-4843-9109-eeccf716f8c9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-25T00:24:33.000Z" - }, - "end": { - "$date": "2022-02-25T00:40:06.000Z" - }, - "events": [ - { - "uuid": "19642bcd-ff9e-4b54-821c-35e5e176ae2f", - "start": { - "$date": "2022-02-25T00:24:33.000Z" - }, - "end": { - "$date": "2022-02-25T00:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "4cf00e29-7f93-4445-adfa-623e16032a27", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-25T00:42:05.000Z" - }, - "end": { - "$date": "2022-02-25T01:23:13.000Z" - }, - "events": [ - { - "uuid": "1cb9e599-fd78-4aff-868e-a8a88ee7e197", - "start": { - "$date": "2022-02-25T00:42:05.000Z" - }, - "end": { - "$date": "2022-02-25T01:23:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f770ab76-bdf4-45df-abbb-e503236763d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-25T01:12:52.000Z" - }, - "end": { - "$date": "2022-02-25T04:36:58.000Z" - }, - "events": [ - { - "uuid": "12d344bf-7cf6-4992-ac21-d14433c74fcc", - "start": { - "$date": "2022-02-25T01:12:52.000Z" - }, - "end": { - "$date": "2022-02-25T04:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "95def494-258a-4c03-a192-fe37e075ede6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-25T01:23:26.000Z" - }, - "end": { - "$date": "2022-02-25T01:25:31.000Z" - }, - "events": [ - { - "uuid": "8eee2fc4-03cb-48bc-acf4-24dd265e3f22", - "start": { - "$date": "2022-02-25T01:23:26.000Z" - }, - "end": { - "$date": "2022-02-25T01:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a79612fc-c738-4746-b032-e8df13f63e3b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-25T01:23:43.000Z" - }, - "end": { - "$date": "2022-02-25T03:35:40.000Z" - }, - "events": [ - { - "uuid": "d90fc1d1-5d1f-48a5-9793-ec0c52676ac3", - "start": { - "$date": "2022-02-25T01:23:43.000Z" - }, - "end": { - "$date": "2022-02-25T03:35:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "125f427f-addf-4f09-ab98-2b9a61cf7742", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-02-25T01:24:38.000Z" - }, - "end": { - "$date": "2022-02-25T01:59:22.000Z" - }, - "events": [ - { - "uuid": "307b8a3e-5732-4312-8eb1-597ff38ed830", - "start": { - "$date": "2022-02-25T01:24:38.000Z" - }, - "end": { - "$date": "2022-02-25T01:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c2fda9b7-ecc6-4ded-842b-08ebdcd17d25", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T01:27:22.000Z" - }, - "end": { - "$date": "2022-02-25T04:45:01.000Z" - }, - "events": [ - { - "uuid": "b479077a-f26d-47c9-a531-2e28fdd766ba", - "start": { - "$date": "2022-02-25T01:27:22.000Z" - }, - "end": { - "$date": "2022-02-25T04:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "5c6245d2-642f-44d5-8daa-4222771645cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-25T02:21:44.000Z" - }, - "end": { - "$date": "2022-02-25T03:37:35.000Z" - }, - "events": [ - { - "uuid": "5459b80e-5d29-4827-8b90-3a7ddf0d6b52", - "start": { - "$date": "2022-02-25T02:21:44.000Z" - }, - "end": { - "$date": "2022-02-25T03:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "18364d4b-cc2b-4be9-a13d-81db6e542939", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-25T00:18:16.000Z" - }, - "end": { - "$date": "2022-02-25T06:26:01.000Z" - }, - "events": [ - { - "uuid": "e6db5725-2340-4f3c-9e9f-10597a8b4540", - "start": { - "$date": "2022-02-25T00:18:16.000Z" - }, - "end": { - "$date": "2022-02-25T02:21:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "defacfc7-b7b6-462b-b963-6cbfb76fa4c9", - "start": { - "$date": "2022-02-25T02:21:16.000Z" - }, - "end": { - "$date": "2022-02-25T02:22:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2411a573-979b-4c9c-bcc6-864a81a1a58e", - "start": { - "$date": "2022-02-25T02:22:16.000Z" - }, - "end": { - "$date": "2022-02-25T02:32:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4eab1bf4-dd23-4732-89e8-83146a559cfc", - "start": { - "$date": "2022-02-25T02:32:16.000Z" - }, - "end": { - "$date": "2022-02-25T02:56:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "37f18c24-d936-42cb-8788-a2cfa4d65b6a", - "start": { - "$date": "2022-02-25T02:56:16.000Z" - }, - "end": { - "$date": "2022-02-25T06:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb8809ac-cc94-43d1-a03d-f466f849e41f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T03:28:27.000Z" - }, - "end": { - "$date": "2022-02-25T03:52:33.000Z" - }, - "events": [ - { - "uuid": "29c438de-fdb9-4301-bb40-5db181b44527", - "start": { - "$date": "2022-02-25T03:28:27.000Z" - }, - "end": { - "$date": "2022-02-25T03:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "f4d8281f-8cce-4561-9676-49268138827a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-25T03:43:31.000Z" - }, - "end": { - "$date": "2022-02-25T05:05:46.000Z" - }, - "events": [ - { - "uuid": "8dd75093-9fa6-4060-ae74-e7c08a2b6d7b", - "start": { - "$date": "2022-02-25T03:43:31.000Z" - }, - "end": { - "$date": "2022-02-25T05:05:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "190cb565-3da7-4320-b8c6-836d577b6b11", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T03:53:28.000Z" - }, - "end": { - "$date": "2022-02-25T04:39:21.000Z" - }, - "events": [ - { - "uuid": "847ed4dc-7f15-4aa1-8998-11e6e422a7cc", - "start": { - "$date": "2022-02-25T03:53:28.000Z" - }, - "end": { - "$date": "2022-02-25T04:18:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2310110-9efc-4503-9aa8-da32be1b6c85", - "start": { - "$date": "2022-02-25T04:18:28.000Z" - }, - "end": { - "$date": "2022-02-25T04:30:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04ab09ce-bae1-43b6-85cf-bfc518776eea", - "start": { - "$date": "2022-02-25T04:30:28.000Z" - }, - "end": { - "$date": "2022-02-25T04:32:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f864397-ebd6-45bf-9ee3-8e37dd166187", - "start": { - "$date": "2022-02-25T04:32:28.000Z" - }, - "end": { - "$date": "2022-02-25T04:37:28.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dbad8b6d-ba88-4afd-848e-01cca1ae3b03", - "start": { - "$date": "2022-02-25T04:37:28.000Z" - }, - "end": { - "$date": "2022-02-25T04:39:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ebed3fd5-0b0d-4256-bc0a-359ac5bd0a32", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T03:56:07.000Z" - }, - "end": { - "$date": "2022-02-25T04:31:59.000Z" - }, - "events": [ - { - "uuid": "72be73f8-5269-4082-b3bd-865a1b33f21c", - "start": { - "$date": "2022-02-25T03:56:07.000Z" - }, - "end": { - "$date": "2022-02-25T04:31:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05f3bd1e-9119-4f1b-b7c4-a70eec60d9ac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-25T04:11:57.000Z" - }, - "end": { - "$date": "2022-02-25T04:39:28.000Z" - }, - "events": [ - { - "uuid": "09d1f86e-13a8-4b8d-9751-b74be9d6c361", - "start": { - "$date": "2022-02-25T04:11:57.000Z" - }, - "end": { - "$date": "2022-02-25T04:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ad2440df-2943-4631-9a75-4ac8cf60e273", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-25T04:34:03.000Z" - }, - "end": { - "$date": "2022-02-25T04:35:38.000Z" - }, - "events": [ - { - "uuid": "e1a1b1c6-41f4-4840-94f6-006847abd131", - "start": { - "$date": "2022-02-25T04:34:03.000Z" - }, - "end": { - "$date": "2022-02-25T04:35:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65266a7a-0e9e-4f4b-8e2b-bf85e5beb024", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T04:48:03.000Z" - }, - "end": { - "$date": "2022-02-25T04:56:33.000Z" - }, - "events": [ - { - "uuid": "d8923a79-2d29-4e66-8c17-05a214e56b4d", - "start": { - "$date": "2022-02-25T04:48:03.000Z" - }, - "end": { - "$date": "2022-02-25T04:56:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0338e311-e246-4529-8f09-11978a70253d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-25T04:40:42.000Z" - }, - "end": { - "$date": "2022-02-25T05:19:28.000Z" - }, - "events": [ - { - "uuid": "cf1937d3-2a18-42c3-8ed0-b859e677a44c", - "start": { - "$date": "2022-02-25T04:40:42.000Z" - }, - "end": { - "$date": "2022-02-25T05:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "692abab0-e2db-42e1-b97d-20d9c75f3fb5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-25T04:40:27.000Z" - }, - "end": { - "$date": "2022-02-25T06:46:53.000Z" - }, - "events": [ - { - "uuid": "256d6723-80bc-4ac1-8898-baf7d3fdbc93", - "start": { - "$date": "2022-02-25T04:40:27.000Z" - }, - "end": { - "$date": "2022-02-25T06:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "51d575ef-72ee-42ba-91ff-a88e084280c2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-25T04:42:49.000Z" - }, - "end": { - "$date": "2022-02-25T07:15:59.000Z" - }, - "events": [ - { - "uuid": "726118ea-3c05-4536-80d9-aa142359c6b4", - "start": { - "$date": "2022-02-25T04:42:49.000Z" - }, - "end": { - "$date": "2022-02-25T07:15:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9b833467-4191-4db6-91f3-dc7479c302be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T04:54:41.000Z" - }, - "end": { - "$date": "2022-02-25T05:11:13.000Z" - }, - "events": [ - { - "uuid": "921d854a-b493-4c11-a527-0a5eecc0adb1", - "start": { - "$date": "2022-02-25T04:54:41.000Z" - }, - "end": { - "$date": "2022-02-25T05:11:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d95c80a7-ab47-4132-b77a-f976083e214d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T04:59:23.000Z" - }, - "end": { - "$date": "2022-02-25T05:19:04.000Z" - }, - "events": [ - { - "uuid": "521de68b-0794-48b2-811f-c9fa4128365b", - "start": { - "$date": "2022-02-25T04:59:23.000Z" - }, - "end": { - "$date": "2022-02-25T05:19:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0092e312-1b56-4f22-bf5b-ba62cb98cf77", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T05:21:09.000Z" - }, - "end": { - "$date": "2022-02-25T05:35:50.000Z" - }, - "events": [ - { - "uuid": "8455026d-56ea-40a1-89e3-96c02a8fd713", - "start": { - "$date": "2022-02-25T05:21:09.000Z" - }, - "end": { - "$date": "2022-02-25T05:35:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2886db33-494b-4358-b70b-0524d3d5db8f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-25T05:20:44.000Z" - }, - "end": { - "$date": "2022-02-25T06:00:20.000Z" - }, - "events": [ - { - "uuid": "a4e605d1-9126-40f3-8195-c0f28fb2003e", - "start": { - "$date": "2022-02-25T05:20:44.000Z" - }, - "end": { - "$date": "2022-02-25T06:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df6eefc0-2c47-47cb-a64b-e556184b6c58", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T05:37:49.000Z" - }, - "end": { - "$date": "2022-02-25T06:01:40.000Z" - }, - "events": [ - { - "uuid": "1ca1a03f-25a2-4ea3-bda8-26e5c7538791", - "start": { - "$date": "2022-02-25T05:37:49.000Z" - }, - "end": { - "$date": "2022-02-25T06:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ee7379c-1e63-4ff6-8554-7249ed59fc60", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-25T05:52:56.000Z" - }, - "end": { - "$date": "2022-02-25T10:05:55.000Z" - }, - "events": [ - { - "uuid": "5a669f2d-6181-4663-ab02-26e9c816c462", - "start": { - "$date": "2022-02-25T05:52:56.000Z" - }, - "end": { - "$date": "2022-02-25T10:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f56d98d0-3534-4b77-bffb-32383046af05", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-25T05:59:48.000Z" - }, - "end": { - "$date": "2022-02-25T08:28:11.000Z" - }, - "events": [ - { - "uuid": "2a78486f-2c34-41ce-b369-e053f468c60f", - "start": { - "$date": "2022-02-25T05:59:48.000Z" - }, - "end": { - "$date": "2022-02-25T06:05:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d1a9ef6a-7ff8-4252-8a14-7069393580a6", - "start": { - "$date": "2022-02-25T06:05:48.000Z" - }, - "end": { - "$date": "2022-02-25T06:10:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f0f72e24-5e76-4d90-87a7-5728846cbf5b", - "start": { - "$date": "2022-02-25T06:10:48.000Z" - }, - "end": { - "$date": "2022-02-25T07:51:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "18d232de-3d7f-4dbb-835e-cb1bf6dc342a", - "start": { - "$date": "2022-02-25T07:51:48.000Z" - }, - "end": { - "$date": "2022-02-25T07:58:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c106c91-2378-4802-b42a-8787f8d20aed", - "start": { - "$date": "2022-02-25T07:58:48.000Z" - }, - "end": { - "$date": "2022-02-25T08:28:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "829bf290-a8a2-4ead-8658-996a25cb9543", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-25T06:00:50.000Z" - }, - "end": { - "$date": "2022-02-25T06:04:40.000Z" - }, - "events": [ - { - "uuid": "5a17d397-6f1a-4c1a-8268-374e66353b97", - "start": { - "$date": "2022-02-25T06:00:50.000Z" - }, - "end": { - "$date": "2022-02-25T06:04:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f801a84-1148-4124-8e76-453864dbe6cb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-25T06:07:05.000Z" - }, - "end": { - "$date": "2022-02-25T06:28:01.000Z" - }, - "events": [ - { - "uuid": "2656e97a-991a-452b-a6d0-ee610d5ff3ed", - "start": { - "$date": "2022-02-25T06:07:05.000Z" - }, - "end": { - "$date": "2022-02-25T06:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "92f1497e-6e6c-49bb-9f51-6bc8970b44ec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T06:11:49.000Z" - }, - "end": { - "$date": "2022-02-25T06:48:57.000Z" - }, - "events": [ - { - "uuid": "dca71237-5765-4feb-90b8-a74859befcea", - "start": { - "$date": "2022-02-25T06:11:49.000Z" - }, - "end": { - "$date": "2022-02-25T06:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2dd3c1da-4945-4781-8545-7251f4a27729", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T06:50:06.000Z" - }, - "end": { - "$date": "2022-02-25T06:57:33.000Z" - }, - "events": [ - { - "uuid": "1ada71be-f40a-4b25-9f00-cb03e00abff0", - "start": { - "$date": "2022-02-25T06:50:06.000Z" - }, - "end": { - "$date": "2022-02-25T06:57:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0327cf4e-9f34-4ab8-bc12-e148b5afcde7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T06:58:48.000Z" - }, - "end": { - "$date": "2022-02-25T07:09:44.000Z" - }, - "events": [ - { - "uuid": "c534d81e-b4e4-4293-b44b-69cebee3cada", - "start": { - "$date": "2022-02-25T06:58:48.000Z" - }, - "end": { - "$date": "2022-02-25T07:09:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1844910f-b185-4a09-bb62-a15507018edd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-25T05:59:48.000Z" - }, - "end": { - "$date": "2022-02-25T10:10:09.000Z" - }, - "events": [ - { - "uuid": "62e50408-be4d-4853-b03a-440edb5a23f7", - "start": { - "$date": "2022-02-25T05:59:48.000Z" - }, - "end": { - "$date": "2022-02-25T10:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f2668e8-55e7-4278-8fdd-d261950c19d0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T17:01:44.000Z" - }, - "end": { - "$date": "2022-02-25T17:20:55.000Z" - }, - "events": [ - { - "uuid": "f9cfb0f8-c49a-4250-a4bd-22d3d75f413f", - "start": { - "$date": "2022-02-25T17:01:44.000Z" - }, - "end": { - "$date": "2022-02-25T17:20:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6885c25e-c922-4552-984b-3114f0e5ecce", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T17:22:35.000Z" - }, - "end": { - "$date": "2022-02-25T17:39:01.000Z" - }, - "events": [ - { - "uuid": "32cca158-cc57-47ad-9ae3-5f4aa385d3ca", - "start": { - "$date": "2022-02-25T17:22:35.000Z" - }, - "end": { - "$date": "2022-02-25T17:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95a4e6a3-b9c8-4740-afa4-d563b3bd83eb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T17:41:05.000Z" - }, - "end": { - "$date": "2022-02-25T17:58:07.000Z" - }, - "events": [ - { - "uuid": "cb095483-0a60-486d-89ab-447ec81e15a6", - "start": { - "$date": "2022-02-25T17:41:05.000Z" - }, - "end": { - "$date": "2022-02-25T17:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f6f5649-bb42-4eb3-af29-a7645c4102ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T18:07:27.000Z" - }, - "end": { - "$date": "2022-02-25T18:26:23.000Z" - }, - "events": [ - { - "uuid": "ad443c76-a903-4229-a16c-17bfb2ab1049", - "start": { - "$date": "2022-02-25T18:07:27.000Z" - }, - "end": { - "$date": "2022-02-25T18:26:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c26daf3c-fc72-4cf7-85c0-9863813d07d5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-25T19:17:35.000Z" - }, - "end": { - "$date": "2022-02-25T22:26:47.000Z" - }, - "events": [ - { - "uuid": "2fc29070-3f06-4c53-8b56-2461352772da", - "start": { - "$date": "2022-02-25T19:17:35.000Z" - }, - "end": { - "$date": "2022-02-25T19:59:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "382edecc-17f2-49d8-bb32-a91a12ba3961", - "start": { - "$date": "2022-02-25T19:59:35.000Z" - }, - "end": { - "$date": "2022-02-25T20:14:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61322652-e738-4cbc-ae43-1b45f1dcc1c5", - "start": { - "$date": "2022-02-25T20:14:35.000Z" - }, - "end": { - "$date": "2022-02-25T20:24:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c52d74ae-619e-4367-9d9e-d1da5e8f0e46", - "start": { - "$date": "2022-02-25T20:24:35.000Z" - }, - "end": { - "$date": "2022-02-25T20:53:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "27db8ad2-b6e4-423f-aa44-b83aa04475f6", - "start": { - "$date": "2022-02-25T20:53:35.000Z" - }, - "end": { - "$date": "2022-02-25T21:03:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6357275d-4534-4ad2-9572-68733a4cbf00", - "start": { - "$date": "2022-02-25T21:03:35.000Z" - }, - "end": { - "$date": "2022-02-25T22:26:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "5a7fb495-31a8-407f-84a4-e16b2bb53e12", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T19:47:19.000Z" - }, - "end": { - "$date": "2022-02-25T20:03:30.000Z" - }, - "events": [ - { - "uuid": "2c7579ff-8b4a-4b34-b1e1-5a038ef699c2", - "start": { - "$date": "2022-02-25T19:47:19.000Z" - }, - "end": { - "$date": "2022-02-25T20:03:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b6a9a5b0-e4b6-4db2-9d3c-e0b915e1fa4d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-25T21:05:53.000Z" - }, - "end": { - "$date": "2022-02-25T22:14:44.000Z" - }, - "events": [ - { - "uuid": "2741e58c-fc89-41e3-96e5-13cf9b2399f0", - "start": { - "$date": "2022-02-25T21:05:53.000Z" - }, - "end": { - "$date": "2022-02-25T22:14:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eb9c9655-49f5-4d32-93d4-d8de56b11a50", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T22:24:57.000Z" - }, - "end": { - "$date": "2022-02-25T23:03:26.000Z" - }, - "events": [ - { - "uuid": "27090954-7e4c-46ec-b392-839867ca294f", - "start": { - "$date": "2022-02-25T22:24:57.000Z" - }, - "end": { - "$date": "2022-02-25T23:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "2d3bd672-384d-4949-8bdd-b7c62563f770", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T23:03:46.000Z" - }, - "end": { - "$date": "2022-02-25T23:14:52.000Z" - }, - "events": [ - { - "uuid": "d6cccfa8-847c-4487-8578-e8fb08b026a4", - "start": { - "$date": "2022-02-25T23:03:46.000Z" - }, - "end": { - "$date": "2022-02-25T23:14:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2d5f8e7b-db1b-4028-bbce-ff73f134a808", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-25T23:15:03.000Z" - }, - "end": { - "$date": "2022-02-26T00:22:00.000Z" - }, - "events": [ - { - "uuid": "659ea72d-7104-4393-973a-903b11b11b15", - "start": { - "$date": "2022-02-25T23:15:03.000Z" - }, - "end": { - "$date": "2022-02-26T00:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "16f89b41-fc3c-468f-af5c-3767d20b2797", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T00:22:36.000Z" - }, - "end": { - "$date": "2022-02-26T00:43:47.000Z" - }, - "events": [ - { - "uuid": "9bf99367-ce41-4380-874f-aeff3eeb9ccc", - "start": { - "$date": "2022-02-26T00:22:36.000Z" - }, - "end": { - "$date": "2022-02-26T00:43:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "390fea3e-e9cc-4ed2-b2c3-cf086bf51727", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T00:25:10.000Z" - }, - "end": { - "$date": "2022-02-26T01:43:40.000Z" - }, - "events": [ - { - "uuid": "6cfe7093-6290-4f3f-b0db-93e60a5c3f51", - "start": { - "$date": "2022-02-26T00:25:10.000Z" - }, - "end": { - "$date": "2022-02-26T01:27:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aed566dd-a808-476b-88f8-08857c1c8efb", - "start": { - "$date": "2022-02-26T01:27:10.000Z" - }, - "end": { - "$date": "2022-02-26T01:32:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "71894467-9339-4d7e-b390-c4e0cf714ba0", - "start": { - "$date": "2022-02-26T01:32:10.000Z" - }, - "end": { - "$date": "2022-02-26T01:42:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4462b4ac-7eb5-4500-a9ec-b32f904a157e", - "start": { - "$date": "2022-02-26T01:42:10.000Z" - }, - "end": { - "$date": "2022-02-26T01:43:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", - "uuid": "0489e066-889f-4b6b-853a-2c2abbfc1ac8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T00:45:42.000Z" - }, - "end": { - "$date": "2022-02-26T00:52:32.000Z" - }, - "events": [ - { - "uuid": "962793b9-38b0-4079-a506-6d348ae54577", - "start": { - "$date": "2022-02-26T00:45:42.000Z" - }, - "end": { - "$date": "2022-02-26T00:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", - "uuid": "fa7c3317-cac7-4e36-b9f5-78f8b3f86cdb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-26T00:46:48.000Z" - }, - "end": { - "$date": "2022-02-26T01:05:59.000Z" - }, - "events": [ - { - "uuid": "2a6ae41b-6c83-4260-9c9e-f7bd74dbed93", - "start": { - "$date": "2022-02-26T00:46:48.000Z" - }, - "end": { - "$date": "2022-02-26T01:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "eb6c4091-3ab5-47ba-98a6-524b012bd0c1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-26T00:47:04.000Z" - }, - "end": { - "$date": "2022-02-26T06:24:08.000Z" - }, - "events": [ - { - "uuid": "1acd518d-af1f-4d98-9765-037c131a616c", - "start": { - "$date": "2022-02-26T00:47:04.000Z" - }, - "end": { - "$date": "2022-02-26T03:49:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ee3248cd-b72e-4d1a-b43c-11636328e300", - "start": { - "$date": "2022-02-26T03:49:04.000Z" - }, - "end": { - "$date": "2022-02-26T04:05:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "76c403ee-9832-45d8-af70-940629b52dfe", - "start": { - "$date": "2022-02-26T04:05:04.000Z" - }, - "end": { - "$date": "2022-02-26T04:15:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "131fbdc9-f303-4a17-ac76-e6298d6e69ca", - "start": { - "$date": "2022-02-26T04:15:04.000Z" - }, - "end": { - "$date": "2022-02-26T04:16:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "936ca5bb-1627-4a3a-aa27-24bb26ce71c1", - "start": { - "$date": "2022-02-26T04:16:04.000Z" - }, - "end": { - "$date": "2022-02-26T04:27:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c702258e-d745-4352-bfc5-50939d057fab", - "start": { - "$date": "2022-02-26T04:27:04.000Z" - }, - "end": { - "$date": "2022-02-26T05:01:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cb844448-4bcc-44f6-8fc7-e7baa84f4cc7", - "start": { - "$date": "2022-02-26T05:01:04.000Z" - }, - "end": { - "$date": "2022-02-26T06:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e3ce614d-cffe-41fb-84a4-1014b5187d2b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-26T01:07:36.000Z" - }, - "end": { - "$date": "2022-02-26T02:38:00.000Z" - }, - "events": [ - { - "uuid": "34715624-36df-4c29-912c-af74f4124592", - "start": { - "$date": "2022-02-26T01:07:36.000Z" - }, - "end": { - "$date": "2022-02-26T02:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "98d56a04-dd9b-476f-bb60-a3596910a136", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T01:15:14.000Z" - }, - "end": { - "$date": "2022-02-26T01:19:49.000Z" - }, - "events": [ - { - "uuid": "9bf880ea-effa-4e1e-b665-77c5d5774927", - "start": { - "$date": "2022-02-26T01:15:14.000Z" - }, - "end": { - "$date": "2022-02-26T01:19:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e4f65a0e-d69e-4308-b9eb-4f15d896d191", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T01:18:12.000Z" - }, - "end": { - "$date": "2022-02-26T01:25:08.000Z" - }, - "events": [ - { - "uuid": "59a08c89-4b12-4c42-b72b-f566bd426574", - "start": { - "$date": "2022-02-26T01:18:12.000Z" - }, - "end": { - "$date": "2022-02-26T01:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "141ab70c-5fac-47f6-8e01-39aba9c61593", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T01:26:45.000Z" - }, - "end": { - "$date": "2022-02-26T02:23:52.000Z" - }, - "events": [ - { - "uuid": "a48e5527-8301-40b8-9664-4829f5ca8fac", - "start": { - "$date": "2022-02-26T01:26:45.000Z" - }, - "end": { - "$date": "2022-02-26T02:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "b66031fa-922c-466c-8c13-50fbcdc87aef", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T01:26:53.000Z" - }, - "end": { - "$date": "2022-02-26T01:30:39.000Z" - }, - "events": [ - { - "uuid": "703c2386-d298-464a-a6e8-653735452b9e", - "start": { - "$date": "2022-02-26T01:26:53.000Z" - }, - "end": { - "$date": "2022-02-26T01:30:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff1da608-99d0-4206-a435-c65560240e08", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T01:31:09.000Z" - }, - "end": { - "$date": "2022-02-26T02:00:48.000Z" - }, - "events": [ - { - "uuid": "ec0c8b1e-a48f-4abe-8ed9-23645f98e3df", - "start": { - "$date": "2022-02-26T01:31:09.000Z" - }, - "end": { - "$date": "2022-02-26T02:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bd999bed-f895-4545-8e96-f7a8a88c5ecb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T01:38:47.000Z" - }, - "end": { - "$date": "2022-02-26T02:51:00.000Z" - }, - "events": [ - { - "uuid": "3e229f28-b742-4460-ac5e-a8a81d7cdacc", - "start": { - "$date": "2022-02-26T01:38:47.000Z" - }, - "end": { - "$date": "2022-02-26T02:51:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "945a8f00-24e3-4018-81e2-a3ed16ceda04", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-26T01:45:52.000Z" - }, - "end": { - "$date": "2022-02-26T02:00:54.000Z" - }, - "events": [ - { - "uuid": "75eb9fc9-45f8-4c7a-9073-136c4360246a", - "start": { - "$date": "2022-02-26T01:45:52.000Z" - }, - "end": { - "$date": "2022-02-26T02:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4830082c-32fc-4f6c-a727-330ab7a2d85f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T01:47:32.000Z" - }, - "end": { - "$date": "2022-02-26T04:14:02.000Z" - }, - "events": [ - { - "uuid": "95bb183b-179f-49fc-a916-d82733f3b3c2", - "start": { - "$date": "2022-02-26T01:47:32.000Z" - }, - "end": { - "$date": "2022-02-26T04:14:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b233bfe3-2dc2-4f12-a265-834b44809a8b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T02:32:03.000Z" - }, - "end": { - "$date": "2022-02-26T02:36:28.000Z" - }, - "events": [ - { - "uuid": "b1871c82-a4f9-4fa8-8cd7-7092f73839f8", - "start": { - "$date": "2022-02-26T02:32:03.000Z" - }, - "end": { - "$date": "2022-02-26T02:36:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "7a0ed8f9-5f9b-4746-81f3-d9840e6bbcb2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-26T02:39:14.000Z" - }, - "end": { - "$date": "2022-02-26T03:21:23.000Z" - }, - "events": [ - { - "uuid": "b966d2a1-67a5-4fbc-bb36-246c3b72dded", - "start": { - "$date": "2022-02-26T02:39:14.000Z" - }, - "end": { - "$date": "2022-02-26T03:21:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "05408ac0-4605-47ef-a2d1-60d49ca195c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-26T02:39:18.000Z" - }, - "end": { - "$date": "2022-02-26T03:19:40.000Z" - }, - "events": [ - { - "uuid": "f8dc69c3-3efb-4089-b482-f840402c049e", - "start": { - "$date": "2022-02-26T02:39:18.000Z" - }, - "end": { - "$date": "2022-02-26T03:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e1a472ce-d7b3-46b3-a2d7-3aa1a16258f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-26T02:53:15.000Z" - }, - "end": { - "$date": "2022-02-26T06:06:57.000Z" - }, - "events": [ - { - "uuid": "960fe18e-c04e-4ba3-b3b2-de2166354754", - "start": { - "$date": "2022-02-26T02:53:15.000Z" - }, - "end": { - "$date": "2022-02-26T06:06:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "16e32b83-06a7-44fa-b15e-b0475c8f6a0d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T02:57:31.000Z" - }, - "end": { - "$date": "2022-02-26T03:14:17.000Z" - }, - "events": [ - { - "uuid": "3bddbbca-1724-47dd-a104-3cfa073cb83c", - "start": { - "$date": "2022-02-26T02:57:31.000Z" - }, - "end": { - "$date": "2022-02-26T03:14:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fda453a-9cb4-4c5c-b03c-6ec65113f381", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T03:15:21.000Z" - }, - "end": { - "$date": "2022-02-26T03:29:02.000Z" - }, - "events": [ - { - "uuid": "3d8f5eab-1bf2-4a4f-a407-b781edcf0a6f", - "start": { - "$date": "2022-02-26T03:15:21.000Z" - }, - "end": { - "$date": "2022-02-26T03:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "360d4866-2ccd-41bb-a98c-d7acb1c6771f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-26T03:19:54.000Z" - }, - "end": { - "$date": "2022-02-26T07:48:39.000Z" - }, - "events": [ - { - "uuid": "8428bbef-aa1f-4240-8711-381426ed7613", - "start": { - "$date": "2022-02-26T03:19:54.000Z" - }, - "end": { - "$date": "2022-02-26T07:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "002c6c05-82d6-494d-879f-d2c26327919f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-26T03:21:36.000Z" - }, - "end": { - "$date": "2022-02-26T05:49:12.000Z" - }, - "events": [ - { - "uuid": "362a3145-065f-4fc9-9343-0e921f0325d8", - "start": { - "$date": "2022-02-26T03:21:36.000Z" - }, - "end": { - "$date": "2022-02-26T05:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68b29e64-9a3a-44ab-a3ae-326a75737ff0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T03:29:27.000Z" - }, - "end": { - "$date": "2022-02-26T04:22:35.000Z" - }, - "events": [ - { - "uuid": "bbd99b5c-9f15-49fb-b3ba-89ad9d794401", - "start": { - "$date": "2022-02-26T03:29:27.000Z" - }, - "end": { - "$date": "2022-02-26T04:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f98be40a-bb81-4a60-8b05-d542a2bb8b51", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-26T03:32:41.000Z" - }, - "end": { - "$date": "2022-02-26T03:59:37.000Z" - }, - "events": [ - { - "uuid": "48c345e4-02cb-449a-bde7-b9e3a25f7189", - "start": { - "$date": "2022-02-26T03:32:41.000Z" - }, - "end": { - "$date": "2022-02-26T03:59:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4eb2c0e5-de84-40eb-b4e5-f1695308a3e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-26T03:36:47.000Z" - }, - "end": { - "$date": "2022-02-26T04:29:54.000Z" - }, - "events": [ - { - "uuid": "ca537e88-b2ca-4c47-acfb-77f300809f15", - "start": { - "$date": "2022-02-26T03:36:47.000Z" - }, - "end": { - "$date": "2022-02-26T04:29:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "863c3fd8-8a36-45a4-a694-c01595391c13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T03:44:29.000Z" - }, - "end": { - "$date": "2022-02-26T06:06:28.000Z" - }, - "events": [ - { - "uuid": "8674a801-1575-4d3c-ad63-75ec28a00915", - "start": { - "$date": "2022-02-26T03:44:29.000Z" - }, - "end": { - "$date": "2022-02-26T06:06:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "52128173-3d79-49c1-a581-391b2034cb3d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T04:15:02.000Z" - }, - "end": { - "$date": "2022-02-26T04:55:09.000Z" - }, - "events": [ - { - "uuid": "a101eadc-bbdd-4139-82c0-ca2708da103d", - "start": { - "$date": "2022-02-26T04:15:02.000Z" - }, - "end": { - "$date": "2022-02-26T04:55:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f28fb286-8552-4eea-ad7b-92899d5cf6ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T04:55:15.000Z" - }, - "end": { - "$date": "2022-02-26T05:00:10.000Z" - }, - "events": [ - { - "uuid": "46eec712-74a7-4aca-8792-09c1f97e90fc", - "start": { - "$date": "2022-02-26T04:55:15.000Z" - }, - "end": { - "$date": "2022-02-26T05:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d111c0ef-c5c2-4cf9-824a-7abda3ed6519", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T05:00:21.000Z" - }, - "end": { - "$date": "2022-02-26T08:09:26.000Z" - }, - "events": [ - { - "uuid": "200feec5-529b-42ac-9b11-a70b1f869747", - "start": { - "$date": "2022-02-26T05:00:21.000Z" - }, - "end": { - "$date": "2022-02-26T08:09:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c03c1554-7d61-4119-acaa-249bf6b94545", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T05:07:31.000Z" - }, - "end": { - "$date": "2022-02-26T05:40:12.000Z" - }, - "events": [ - { - "uuid": "8affbe7e-40ad-4734-bbda-f716cd918b0e", - "start": { - "$date": "2022-02-26T05:07:31.000Z" - }, - "end": { - "$date": "2022-02-26T05:40:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bc0b1fd9-01c2-4cbe-9095-869ebc250f3b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T05:41:08.000Z" - }, - "end": { - "$date": "2022-02-26T06:12:55.000Z" - }, - "events": [ - { - "uuid": "8deee2b9-1731-4de1-8373-2128cdb8dfaa", - "start": { - "$date": "2022-02-26T05:41:08.000Z" - }, - "end": { - "$date": "2022-02-26T06:12:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "369d19f6-2eca-4236-85e7-f7a64d963a75", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-02-26T05:51:32.000Z" - }, - "end": { - "$date": "2022-02-26T06:29:55.000Z" - }, - "events": [ - { - "uuid": "5e00a860-daef-4792-8b61-6595f7730ef1", - "start": { - "$date": "2022-02-26T05:51:32.000Z" - }, - "end": { - "$date": "2022-02-26T06:29:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5562b957-ff36-4e6e-a076-e0b3006d3921", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-26T06:03:25.000Z" - }, - "end": { - "$date": "2022-02-26T07:44:43.000Z" - }, - "events": [ - { - "uuid": "7d9e372e-8952-4aef-a6ee-5be7b9b14f1f", - "start": { - "$date": "2022-02-26T06:03:25.000Z" - }, - "end": { - "$date": "2022-02-26T07:44:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7271a2c4-64f4-4a23-ab07-977ba892ebac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T06:15:36.000Z" - }, - "end": { - "$date": "2022-02-26T06:32:29.000Z" - }, - "events": [ - { - "uuid": "2fc38518-e929-438d-8971-ce5ae55fdb9b", - "start": { - "$date": "2022-02-26T06:15:36.000Z" - }, - "end": { - "$date": "2022-02-26T06:32:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "6ed72bd4-aa70-4428-a963-5ab4e9a9c509", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-26T06:24:23.000Z" - }, - "end": { - "$date": "2022-02-26T06:25:54.000Z" - }, - "events": [ - { - "uuid": "e99d0d76-54e7-44ef-8c80-c1d9e7f1d7ab", - "start": { - "$date": "2022-02-26T06:24:23.000Z" - }, - "end": { - "$date": "2022-02-26T06:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d1685421-b046-4753-93f0-cd52687678a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-26T06:26:18.000Z" - }, - "end": { - "$date": "2022-02-26T07:18:41.000Z" - }, - "events": [ - { - "uuid": "00dab864-0edf-4122-b39f-30368550f2f5", - "start": { - "$date": "2022-02-26T06:26:18.000Z" - }, - "end": { - "$date": "2022-02-26T07:08:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8bbecc40-0737-452f-9c22-a5be9d0d62f7", - "start": { - "$date": "2022-02-26T07:08:18.000Z" - }, - "end": { - "$date": "2022-02-26T07:17:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9d0c8e9a-2cb8-4e2b-a066-ed5d04740b92", - "start": { - "$date": "2022-02-26T07:17:18.000Z" - }, - "end": { - "$date": "2022-02-26T07:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "62029a28-eced-44ed-a38a-55c7d84b9d70", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T06:33:46.000Z" - }, - "end": { - "$date": "2022-02-26T07:24:40.000Z" - }, - "events": [ - { - "uuid": "1cff7701-c853-4661-9259-55de0b46df17", - "start": { - "$date": "2022-02-26T06:33:46.000Z" - }, - "end": { - "$date": "2022-02-26T07:24:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b992b050-8ffc-48de-8a4b-b976043be2d0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-26T07:00:31.000Z" - }, - "end": { - "$date": "2022-02-26T10:34:06.000Z" - }, - "events": [ - { - "uuid": "3cd8aca6-56f9-4c19-827a-64a37c1bff95", - "start": { - "$date": "2022-02-26T07:00:31.000Z" - }, - "end": { - "$date": "2022-02-26T10:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "4809ad33-4866-463b-a65e-cf06dc1361c3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T15:09:16.000Z" - }, - "end": { - "$date": "2022-02-26T15:10:44.000Z" - }, - "events": [ - { - "uuid": "4ecf8fc9-7c27-4f2f-b9ad-7683e7cf167f", - "start": { - "$date": "2022-02-26T15:09:16.000Z" - }, - "end": { - "$date": "2022-02-26T15:10:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "bc76ad81-83ad-4db3-a2ec-f3b32d4cc006", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T15:10:56.000Z" - }, - "end": { - "$date": "2022-02-26T15:46:34.000Z" - }, - "events": [ - { - "uuid": "9e4588f3-56f3-4d8b-a1ef-4b4c41f64771", - "start": { - "$date": "2022-02-26T15:10:56.000Z" - }, - "end": { - "$date": "2022-02-26T15:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b4e865fb-72da-43ee-ad43-eef521ade238", - "uuid": "f76b4dec-9e03-44c0-9914-12c2c74a833e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T15:50:54.000Z" - }, - "end": { - "$date": "2022-02-26T16:06:05.000Z" - }, - "events": [ - { - "uuid": "16d22b92-d720-434b-a648-39b1ba9404ab", - "start": { - "$date": "2022-02-26T15:50:54.000Z" - }, - "end": { - "$date": "2022-02-26T16:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75a8d338-a1c2-432b-ad58-b7ac74ed58d9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T16:24:24.000Z" - }, - "end": { - "$date": "2022-02-26T16:51:46.000Z" - }, - "events": [ - { - "uuid": "dac089bd-15b5-4a52-bf3d-2d2f114ea425", - "start": { - "$date": "2022-02-26T16:24:24.000Z" - }, - "end": { - "$date": "2022-02-26T16:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7c664e88-8e13-474e-9a26-71490cb16835", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-26T16:30:58.000Z" - }, - "end": { - "$date": "2022-02-26T17:45:39.000Z" - }, - "events": [ - { - "uuid": "91c267e8-7c4a-4551-9bf3-6d56979c2b3c", - "start": { - "$date": "2022-02-26T16:30:58.000Z" - }, - "end": { - "$date": "2022-02-26T17:45:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "798eb481-1427-4d05-a500-ddf32cd006a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T16:40:33.000Z" - }, - "end": { - "$date": "2022-02-26T17:08:00.000Z" - }, - "events": [ - { - "uuid": "a4a32f6e-ac94-4d3e-8d9b-48ce6c5c6113", - "start": { - "$date": "2022-02-26T16:40:33.000Z" - }, - "end": { - "$date": "2022-02-26T17:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2053935-1fc2-47e0-9a1d-2de819939e24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T16:56:30.000Z" - }, - "end": { - "$date": "2022-02-26T17:28:23.000Z" - }, - "events": [ - { - "uuid": "40b1ea23-4dbe-47d0-b37b-4c51daaa5de2", - "start": { - "$date": "2022-02-26T16:56:30.000Z" - }, - "end": { - "$date": "2022-02-26T17:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "59dd2f6b-9395-4a5f-ac77-fa1e29c27ef6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-26T17:23:46.000Z" - }, - "end": { - "$date": "2022-02-26T17:34:27.000Z" - }, - "events": [ - { - "uuid": "e2a903ba-cbd7-450b-b25a-df11b657239f", - "start": { - "$date": "2022-02-26T17:23:46.000Z" - }, - "end": { - "$date": "2022-02-26T17:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a63502d5-58ad-4f92-9a09-f4d2e4c0593c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T17:46:52.000Z" - }, - "end": { - "$date": "2022-02-26T18:06:53.000Z" - }, - "events": [ - { - "uuid": "9c8d943c-fe66-4a2d-842f-85184797c44b", - "start": { - "$date": "2022-02-26T17:46:52.000Z" - }, - "end": { - "$date": "2022-02-26T18:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "31f60bf9-511a-43e7-aa92-e317bddb6ecd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T18:39:52.000Z" - }, - "end": { - "$date": "2022-02-26T19:00:29.000Z" - }, - "events": [ - { - "uuid": "d289f151-a0ab-4f03-b220-63e5df0a9365", - "start": { - "$date": "2022-02-26T18:39:52.000Z" - }, - "end": { - "$date": "2022-02-26T19:00:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75a2a85c-8f99-4a62-982c-43a46a859192", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T20:03:38.000Z" - }, - "end": { - "$date": "2022-02-26T20:27:55.000Z" - }, - "events": [ - { - "uuid": "39585f1f-bce7-4cbb-b802-c052d6d8ed83", - "start": { - "$date": "2022-02-26T20:03:38.000Z" - }, - "end": { - "$date": "2022-02-26T20:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "535d2ecd-f282-4e57-b1b0-f9e26fb5a37d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-26T20:07:24.000Z" - }, - "end": { - "$date": "2022-02-27T20:42:28.000Z" - }, - "events": [ - { - "uuid": "9174aa58-a91c-4dd2-9ca8-9fd5aff5335b", - "start": { - "$date": "2022-02-26T20:07:24.000Z" - }, - "end": { - "$date": "2022-02-26T21:26:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "203720df-ccff-44ea-b9db-9f2f10e7778d", - "start": { - "$date": "2022-02-26T21:26:24.000Z" - }, - "end": { - "$date": "2022-02-26T21:31:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f0eee4a9-6fc4-45e4-9c84-b47c9c00605f", - "start": { - "$date": "2022-02-26T21:31:24.000Z" - }, - "end": { - "$date": "2022-02-26T21:57:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "52608e4b-bd90-4f4f-8077-6de9b59281b3", - "start": { - "$date": "2022-02-26T21:57:24.000Z" - }, - "end": { - "$date": "2022-02-26T22:11:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d14f2bd2-bd9b-48e2-8ea9-6eba3d8cd32d", - "start": { - "$date": "2022-02-26T22:11:24.000Z" - }, - "end": { - "$date": "2022-02-26T22:33:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77237d93-af38-4174-b095-9d4f24c252c0", - "start": { - "$date": "2022-02-26T22:33:24.000Z" - }, - "end": { - "$date": "2022-02-27T05:00:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f67b5b3-4311-4e24-a29c-abdc6e9e6a06", - "start": { - "$date": "2022-02-27T05:00:24.000Z" - }, - "end": { - "$date": "2022-02-27T05:03:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "739cd900-2a7b-4092-8c9e-deb753e78cf8", - "start": { - "$date": "2022-02-27T05:03:24.000Z" - }, - "end": { - "$date": "2022-02-27T05:24:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb8556a6-9236-4acd-8b09-bb8b64b0c462", - "start": { - "$date": "2022-02-27T05:24:24.000Z" - }, - "end": { - "$date": "2022-02-27T05:41:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55d7ce04-15e3-4769-bd84-442cb96b49ba", - "start": { - "$date": "2022-02-27T05:41:24.000Z" - }, - "end": { - "$date": "2022-02-27T09:02:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8de83195-af9e-4e5f-afa6-1127cf13965d", - "start": { - "$date": "2022-02-27T09:02:24.000Z" - }, - "end": { - "$date": "2022-02-27T09:18:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "90eb75e5-3472-4489-bfa8-9637fefbbf1e", - "start": { - "$date": "2022-02-27T09:18:24.000Z" - }, - "end": { - "$date": "2022-02-27T18:13:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2ccae413-0c1f-4310-92b6-606ad368304f", - "start": { - "$date": "2022-02-27T18:13:24.000Z" - }, - "end": { - "$date": "2022-02-27T20:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ff425fd8-ba70-4529-b518-81f605de3be3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T20:28:09.000Z" - }, - "end": { - "$date": "2022-02-26T20:57:34.000Z" - }, - "events": [ - { - "uuid": "6144d765-ca2e-4dc6-86b5-4c0aa1e74612", - "start": { - "$date": "2022-02-26T20:28:09.000Z" - }, - "end": { - "$date": "2022-02-26T20:57:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4088d8b3-6262-4a40-8815-399ad8a02ad7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-26T20:38:10.000Z" - }, - "end": { - "$date": "2022-02-27T00:58:56.000Z" - }, - "events": [ - { - "uuid": "15402b28-d90a-4928-a1b4-7af832927703", - "start": { - "$date": "2022-02-26T20:38:10.000Z" - }, - "end": { - "$date": "2022-02-26T22:49:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67c1c936-5101-43c1-a079-6a09daf706ef", - "start": { - "$date": "2022-02-26T22:49:10.000Z" - }, - "end": { - "$date": "2022-02-26T23:19:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b23ab060-b61b-400a-ad43-43c465a9a02c", - "start": { - "$date": "2022-02-26T23:19:10.000Z" - }, - "end": { - "$date": "2022-02-26T23:38:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "166b0fbc-a1cb-4fb4-a578-6238f159d797", - "start": { - "$date": "2022-02-26T23:38:10.000Z" - }, - "end": { - "$date": "2022-02-26T23:44:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "30c322a3-e3b6-4ece-9abc-12f55e58a91b", - "start": { - "$date": "2022-02-26T23:44:10.000Z" - }, - "end": { - "$date": "2022-02-27T00:06:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a4126a9-c4e8-412b-994a-a2c2d826f358", - "start": { - "$date": "2022-02-27T00:06:10.000Z" - }, - "end": { - "$date": "2022-02-27T00:08:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6541e920-d5d6-4c51-865c-c8d90d88ef9f", - "start": { - "$date": "2022-02-27T00:08:10.000Z" - }, - "end": { - "$date": "2022-02-27T00:58:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bde090f9-7a3a-4c8f-a0d4-7677db42d479", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-26T20:39:23.000Z" - }, - "end": { - "$date": "2022-02-27T01:47:29.000Z" - }, - "events": [ - { - "uuid": "6a8343ac-b0f7-432c-9ccf-cdd7289c02d6", - "start": { - "$date": "2022-02-26T20:39:23.000Z" - }, - "end": { - "$date": "2022-02-27T01:47:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eeba5ad4-9a12-4f79-bf44-b71eae45de41", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-26T20:43:13.000Z" - }, - "end": { - "$date": "2022-02-27T01:47:55.000Z" - }, - "events": [ - { - "uuid": "2c0b20e9-c76a-4e05-a728-0b308e5d9513", - "start": { - "$date": "2022-02-26T20:43:13.000Z" - }, - "end": { - "$date": "2022-02-27T01:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6f71090b-a835-4d54-bc2c-e64797d907a8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T22:23:10.000Z" - }, - "end": { - "$date": "2022-02-26T22:30:51.000Z" - }, - "events": [ - { - "uuid": "e4c995a9-cb9f-450d-90aa-30df06bde754", - "start": { - "$date": "2022-02-26T22:23:10.000Z" - }, - "end": { - "$date": "2022-02-26T22:30:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "291cb2b1-53f2-4b24-ad25-c2bb78652129", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T23:27:09.000Z" - }, - "end": { - "$date": "2022-02-26T23:29:02.000Z" - }, - "events": [ - { - "uuid": "610fbef8-e303-43d5-ad6e-752dda77f8c1", - "start": { - "$date": "2022-02-26T23:27:09.000Z" - }, - "end": { - "$date": "2022-02-26T23:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fd895eb6-dd8e-48d9-9bfa-e9d86444dbb4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-26T22:59:19.000Z" - }, - "end": { - "$date": "2022-02-27T01:16:12.000Z" - }, - "events": [ - { - "uuid": "34db275c-fc7b-42d8-8b80-da288f788376", - "start": { - "$date": "2022-02-26T22:59:19.000Z" - }, - "end": { - "$date": "2022-02-27T01:16:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8a66af18-2d8e-4257-a127-8c4fcfcb0587", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-26T23:02:34.000Z" - }, - "end": { - "$date": "2022-02-27T00:14:24.000Z" - }, - "events": [ - { - "uuid": "240cb3d9-547f-416a-83c0-66c1babaa151", - "start": { - "$date": "2022-02-26T23:02:34.000Z" - }, - "end": { - "$date": "2022-02-27T00:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "2f12cbd8-17e2-4914-9ff2-e89ea2170c13", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-26T23:29:27.000Z" - }, - "end": { - "$date": "2022-02-26T23:32:03.000Z" - }, - "events": [ - { - "uuid": "c9303182-6349-406e-b76e-ea39dfa15adf", - "start": { - "$date": "2022-02-26T23:29:27.000Z" - }, - "end": { - "$date": "2022-02-26T23:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "219d4312-8f90-4f8f-bdc2-070561609f9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T00:59:10.000Z" - }, - "end": { - "$date": "2022-02-27T01:47:27.000Z" - }, - "events": [ - { - "uuid": "b6cf9e32-0b6d-4e82-8100-8b30d96ca35e", - "start": { - "$date": "2022-02-27T00:59:10.000Z" - }, - "end": { - "$date": "2022-02-27T01:47:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5c0aed3a-bf81-456f-a4b0-e30114dc60fb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T01:13:16.000Z" - }, - "end": { - "$date": "2022-02-27T01:44:51.000Z" - }, - "events": [ - { - "uuid": "f9f03c21-8f88-4046-89f3-396730b5bde7", - "start": { - "$date": "2022-02-27T01:13:16.000Z" - }, - "end": { - "$date": "2022-02-27T01:44:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "481261bd-854a-43d4-b7b9-e8d5db7cc5bf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-27T01:17:12.000Z" - }, - "end": { - "$date": "2022-02-27T02:06:09.000Z" - }, - "events": [ - { - "uuid": "d82eb0d1-741d-4ead-a25c-6dd2ccca5f81", - "start": { - "$date": "2022-02-27T01:17:12.000Z" - }, - "end": { - "$date": "2022-02-27T01:46:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e850822d-5888-40a7-adbe-24b10652fe0a", - "start": { - "$date": "2022-02-27T01:46:12.000Z" - }, - "end": { - "$date": "2022-02-27T02:06:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbe0e1df-1a55-47de-b230-b9519898f4d4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T02:50:11.000Z" - }, - "end": { - "$date": "2022-02-27T03:14:11.000Z" - }, - "events": [ - { - "uuid": "b90aa1de-1f77-4898-a98d-91c4ebf797e6", - "start": { - "$date": "2022-02-27T02:50:11.000Z" - }, - "end": { - "$date": "2022-02-27T03:02:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f391b6a-1571-4b0a-b4ac-b8b73073d2b0", - "start": { - "$date": "2022-02-27T03:02:11.000Z" - }, - "end": { - "$date": "2022-02-27T03:19:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "96140734-ccbc-4563-a116-ca21313fb8ac", - "start": { - "$date": "2022-02-27T03:19:11.000Z" - }, - "end": { - "$date": "2022-02-27T03:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba8d4821-23fc-496f-9180-cfe32b4f2f97", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-27T02:27:14.000Z" - }, - "end": { - "$date": "2022-02-27T04:23:50.000Z" - }, - "events": [ - { - "uuid": "f318cce9-6a79-4c3a-806a-a9a854485fdf", - "start": { - "$date": "2022-02-27T02:27:14.000Z" - }, - "end": { - "$date": "2022-02-27T04:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "adcb0cf6-0a1b-412f-862b-ee613ca367d0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-27T02:27:17.000Z" - }, - "end": { - "$date": "2022-02-27T04:23:48.000Z" - }, - "events": [ - { - "uuid": "e540e354-cfe6-4bff-a6ca-8b8fff822fc8", - "start": { - "$date": "2022-02-27T02:27:17.000Z" - }, - "end": { - "$date": "2022-02-27T04:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cf68798b-ea73-4f7c-922e-32cafe9ea198", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-27T02:29:52.000Z" - }, - "end": { - "$date": "2022-02-27T03:35:27.000Z" - }, - "events": [ - { - "uuid": "b1a51671-8201-4c4d-b2c1-bfb88c68d974", - "start": { - "$date": "2022-02-27T02:29:52.000Z" - }, - "end": { - "$date": "2022-02-27T02:42:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5153c82-9c74-4b56-ad7d-51ff6db9c022", - "start": { - "$date": "2022-02-27T02:42:52.000Z" - }, - "end": { - "$date": "2022-02-27T02:44:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "247d8796-1db6-4ed3-8a20-b589659cc644", - "start": { - "$date": "2022-02-27T02:44:52.000Z" - }, - "end": { - "$date": "2022-02-27T03:35:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "43370401-df43-4f0e-a34b-71240674c5ce", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-27T03:04:40.000Z" - }, - "end": { - "$date": "2022-02-27T06:43:15.000Z" - }, - "events": [ - { - "uuid": "71c804e2-51a7-4d68-99db-2ab450c423e7", - "start": { - "$date": "2022-02-27T03:04:40.000Z" - }, - "end": { - "$date": "2022-02-27T04:41:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95bc55de-9767-43a5-b398-59eb1a67f761", - "start": { - "$date": "2022-02-27T04:41:40.000Z" - }, - "end": { - "$date": "2022-02-27T05:03:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f82b21df-5be8-4e58-82d0-cd9bfd586165", - "start": { - "$date": "2022-02-27T05:03:40.000Z" - }, - "end": { - "$date": "2022-02-27T05:16:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9992e03-9ac4-4b01-b37d-23941d8c4cd7", - "start": { - "$date": "2022-02-27T05:16:40.000Z" - }, - "end": { - "$date": "2022-02-27T06:29:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f416460d-5070-4b52-8d38-2dcb1758f03a", - "start": { - "$date": "2022-02-27T06:29:40.000Z" - }, - "end": { - "$date": "2022-02-27T06:43:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a020986-13c9-4acf-a912-bdffe911f014", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T03:15:10.000Z" - }, - "end": { - "$date": "2022-02-27T03:44:36.000Z" - }, - "events": [ - { - "uuid": "f098754f-e7a7-4d51-9d07-8c73dfa63cd6", - "start": { - "$date": "2022-02-27T03:15:10.000Z" - }, - "end": { - "$date": "2022-02-27T03:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b8a4779d-fb54-4f35-a2a2-ed91be8c1ae9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-27T03:14:39.000Z" - }, - "end": { - "$date": "2022-02-27T07:09:17.000Z" - }, - "events": [ - { - "uuid": "33875b44-4d4d-4ec3-93f0-f3068ad6e6a2", - "start": { - "$date": "2022-02-27T03:14:39.000Z" - }, - "end": { - "$date": "2022-02-27T07:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3a70190d-f0d8-411c-ac91-b2ddf074a226", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-27T03:19:14.000Z" - }, - "end": { - "$date": "2022-02-27T08:04:35.000Z" - }, - "events": [ - { - "uuid": "13f12e4e-b816-4b83-b0d1-d96c761e8828", - "start": { - "$date": "2022-02-27T03:19:14.000Z" - }, - "end": { - "$date": "2022-02-27T03:32:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fe9b3f26-b492-493d-ac66-9d75f7c373f6", - "start": { - "$date": "2022-02-27T03:32:14.000Z" - }, - "end": { - "$date": "2022-02-27T03:43:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3d3635a4-1d0a-4ffa-8371-6f3856e2bb16", - "start": { - "$date": "2022-02-27T03:43:14.000Z" - }, - "end": { - "$date": "2022-02-27T08:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3620d1ab-5347-4f0c-a26f-1edbbb6a0059", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T05:27:13.000Z" - }, - "end": { - "$date": "2022-02-27T06:00:40.000Z" - }, - "events": [ - { - "uuid": "3e5a0db1-bc35-4491-b098-3a7743780f42", - "start": { - "$date": "2022-02-27T05:27:13.000Z" - }, - "end": { - "$date": "2022-02-27T06:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "dcc9e4c1-2837-4670-83b3-e86301a59b77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T04:29:09.000Z" - }, - "end": { - "$date": "2022-02-27T04:36:25.000Z" - }, - "events": [ - { - "uuid": "b38e9c93-d47d-4f97-a232-201a7a049310", - "start": { - "$date": "2022-02-27T04:29:09.000Z" - }, - "end": { - "$date": "2022-02-27T04:36:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7ff69d04-f32f-4a98-95b0-1281d91448da", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T04:45:42.000Z" - }, - "end": { - "$date": "2022-02-27T05:17:33.000Z" - }, - "events": [ - { - "uuid": "c1b0a033-62cf-4b8f-bbce-8f8615f06d72", - "start": { - "$date": "2022-02-27T04:45:42.000Z" - }, - "end": { - "$date": "2022-02-27T05:17:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "35c3ab03-b6a0-49d6-8325-d41340040965", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-02-27T05:03:47.000Z" - }, - "end": { - "$date": "2022-02-27T07:22:14.000Z" - }, - "events": [ - { - "uuid": "71f98642-5da7-42f3-90c2-c1a2c67239a6", - "start": { - "$date": "2022-02-27T05:03:47.000Z" - }, - "end": { - "$date": "2022-02-27T07:22:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "4618755e-10f5-4aee-bcbf-8b86eb3f18b9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T05:19:03.000Z" - }, - "end": { - "$date": "2022-02-27T05:38:45.000Z" - }, - "events": [ - { - "uuid": "bb1b44b4-f444-400e-aab3-b076dc607857", - "start": { - "$date": "2022-02-27T05:19:03.000Z" - }, - "end": { - "$date": "2022-02-27T05:38:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "776981d7-8280-43c7-a309-a59b354a0222", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T06:02:25.000Z" - }, - "end": { - "$date": "2022-02-27T06:33:18.000Z" - }, - "events": [ - { - "uuid": "d5243151-40fa-4c4a-ae57-92cb98bcd241", - "start": { - "$date": "2022-02-27T06:02:25.000Z" - }, - "end": { - "$date": "2022-02-27T06:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "707729cc-6980-40a7-afe9-c57de716acf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-27T06:02:22.000Z" - }, - "end": { - "$date": "2022-02-27T08:27:54.000Z" - }, - "events": [ - { - "uuid": "2b92da77-41f9-4283-a01b-330c29d7f733", - "start": { - "$date": "2022-02-27T06:02:22.000Z" - }, - "end": { - "$date": "2022-02-27T08:27:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3420b953-172a-4ea7-9fcb-8f78d2d7cfbc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-27T09:06:54.000Z" - }, - "end": { - "$date": "2022-02-27T11:09:09.000Z" - }, - "events": [ - { - "uuid": "1b7d2ab3-4fbc-412c-b709-174fe7001411", - "start": { - "$date": "2022-02-27T09:06:54.000Z" - }, - "end": { - "$date": "2022-02-27T11:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5d9944bf-ca69-44c5-8c92-109f89557bb1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T15:29:58.000Z" - }, - "end": { - "$date": "2022-02-27T15:47:19.000Z" - }, - "events": [ - { - "uuid": "302f43d1-2351-41b3-84b9-bddc79a14c1b", - "start": { - "$date": "2022-02-27T15:29:58.000Z" - }, - "end": { - "$date": "2022-02-27T15:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "825c0b2c-09d3-4431-8b69-b965481cde6b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T15:40:38.000Z" - }, - "end": { - "$date": "2022-02-27T16:04:00.000Z" - }, - "events": [ - { - "uuid": "0bdce7a1-ab46-4af9-a8e6-5e9218bbfa2a", - "start": { - "$date": "2022-02-27T15:40:38.000Z" - }, - "end": { - "$date": "2022-02-27T16:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "ba659a41-cac7-4bf5-822c-5579793188e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-27T16:05:35.000Z" - }, - "end": { - "$date": "2022-02-27T17:56:06.000Z" - }, - "events": [ - { - "uuid": "039ab289-6621-4193-af0c-ca02b00719b5", - "start": { - "$date": "2022-02-27T16:05:35.000Z" - }, - "end": { - "$date": "2022-02-27T17:56:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "88ba8913-a663-4b62-a408-779a567aad2d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-27T16:17:27.000Z" - }, - "end": { - "$date": "2022-02-27T16:20:32.000Z" - }, - "events": [ - { - "uuid": "1595a41e-e9a5-465b-96e0-50659e96fb35", - "start": { - "$date": "2022-02-27T16:17:27.000Z" - }, - "end": { - "$date": "2022-02-27T16:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab46be02-89f9-46da-beb5-8c7fe1db836e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T16:17:10.000Z" - }, - "end": { - "$date": "2022-02-27T17:01:17.000Z" - }, - "events": [ - { - "uuid": "9fa99750-2ad9-444d-a7ad-8bbc1f9c0d9e", - "start": { - "$date": "2022-02-27T16:17:10.000Z" - }, - "end": { - "$date": "2022-02-27T17:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "913a9d43-3db0-41e4-85ae-a34cd4e2859d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-27T16:21:57.000Z" - }, - "end": { - "$date": "2022-02-27T16:23:37.000Z" - }, - "events": [ - { - "uuid": "a565a3e1-a574-4e4c-931c-07dcbd2633c5", - "start": { - "$date": "2022-02-27T16:21:57.000Z" - }, - "end": { - "$date": "2022-02-27T16:23:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7157f6b9-83cf-4e4a-9a45-360514327f34", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T16:22:55.000Z" - }, - "end": { - "$date": "2022-02-27T16:28:06.000Z" - }, - "events": [ - { - "uuid": "cd4d1dda-e760-48da-a040-5529b01c6fbb", - "start": { - "$date": "2022-02-27T16:22:55.000Z" - }, - "end": { - "$date": "2022-02-27T16:28:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "90041385-55e3-41e8-8087-dfb41819bd23", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-27T16:33:23.000Z" - }, - "end": { - "$date": "2022-02-27T19:18:00.000Z" - }, - "events": [ - { - "uuid": "c97eafec-c935-4ab6-b9f7-8af33fd9ded2", - "start": { - "$date": "2022-02-27T16:33:23.000Z" - }, - "end": { - "$date": "2022-02-27T19:18:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", - "uuid": "c983ba9b-857f-43d3-a2b7-04118870728d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T16:42:16.000Z" - }, - "end": { - "$date": "2022-02-27T16:43:27.000Z" - }, - "events": [ - { - "uuid": "1bbd1513-b423-4669-93ea-e6dd82e893f4", - "start": { - "$date": "2022-02-27T16:42:16.000Z" - }, - "end": { - "$date": "2022-02-27T16:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "86c205c8-e743-4956-8e06-89d08d96e6bd", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T16:50:02.000Z" - }, - "end": { - "$date": "2022-02-27T17:25:23.000Z" - }, - "events": [ - { - "uuid": "33651de1-cd1c-488a-81a7-df852fcc7885", - "start": { - "$date": "2022-02-27T16:50:02.000Z" - }, - "end": { - "$date": "2022-02-27T17:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b1daeb1a-f15b-4c5c-b562-ce7ef7232f74", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T17:25:58.000Z" - }, - "end": { - "$date": "2022-02-27T19:09:38.000Z" - }, - "events": [ - { - "uuid": "8ae0633f-4817-48b6-bbbb-86e9b70259cf", - "start": { - "$date": "2022-02-27T17:25:58.000Z" - }, - "end": { - "$date": "2022-02-27T19:01:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "366f7903-510c-4038-859d-ea77e49efd20", - "start": { - "$date": "2022-02-27T19:01:58.000Z" - }, - "end": { - "$date": "2022-02-27T19:05:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2208733-f838-4d52-8c37-569b30204552", - "start": { - "$date": "2022-02-27T19:05:58.000Z" - }, - "end": { - "$date": "2022-02-27T19:09:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d77d3332-0f52-4ee5-bacb-de7feafa3619", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T17:55:22.000Z" - }, - "end": { - "$date": "2022-02-27T18:38:29.000Z" - }, - "events": [ - { - "uuid": "7f992c54-3ebb-4268-84c8-eef813589a99", - "start": { - "$date": "2022-02-27T17:55:22.000Z" - }, - "end": { - "$date": "2022-02-27T18:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d279dce4-8f17-4701-a4db-def832c965cb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-27T17:56:57.000Z" - }, - "end": { - "$date": "2022-02-27T18:41:29.000Z" - }, - "events": [ - { - "uuid": "04d870ef-7419-4ee4-a9b1-e208a94d4ef2", - "start": { - "$date": "2022-02-27T17:56:57.000Z" - }, - "end": { - "$date": "2022-02-27T18:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "6ffee2fe-e7ca-4382-8038-e1e26f350a80", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-02-27T18:42:39.000Z" - }, - "end": { - "$date": "2022-02-27T21:56:51.000Z" - }, - "events": [ - { - "uuid": "e5835715-52cd-4fd5-9518-38a3aea95650", - "start": { - "$date": "2022-02-27T18:42:39.000Z" - }, - "end": { - "$date": "2022-02-27T21:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "b5db73d3-0a69-4a0c-9313-2c640488cb58", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-27T19:03:05.000Z" - }, - "end": { - "$date": "2022-02-27T19:15:37.000Z" - }, - "events": [ - { - "uuid": "e7f61e67-82ee-49be-817b-21afee8decd0", - "start": { - "$date": "2022-02-27T19:03:05.000Z" - }, - "end": { - "$date": "2022-02-27T19:15:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "169cb1a4-07e3-4972-bd5e-09b7237eaf73", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-27T19:04:31.000Z" - }, - "end": { - "$date": "2022-02-27T19:54:26.000Z" - }, - "events": [ - { - "uuid": "bf38d600-dcbf-4d19-9766-33af7fe166b2", - "start": { - "$date": "2022-02-27T19:04:31.000Z" - }, - "end": { - "$date": "2022-02-27T19:54:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d72b3c7a-f532-4fba-a0e4-979660947aa6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T19:19:16.000Z" - }, - "end": { - "$date": "2022-02-27T19:31:37.000Z" - }, - "events": [ - { - "uuid": "78494f0f-1d72-415b-935e-e78cec197c10", - "start": { - "$date": "2022-02-27T19:19:16.000Z" - }, - "end": { - "$date": "2022-02-27T19:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "92985d38-bb3a-49f9-b217-bbfb3ff7b298", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-27T19:22:47.000Z" - }, - "end": { - "$date": "2022-02-27T19:27:53.000Z" - }, - "events": [ - { - "uuid": "b431907f-be62-46d9-899a-b3ef6cd3a9a1", - "start": { - "$date": "2022-02-27T19:22:47.000Z" - }, - "end": { - "$date": "2022-02-27T19:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "075f8fe5-077a-4be1-b688-c838af60c32a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-02-27T20:02:43.000Z" - }, - "end": { - "$date": "2022-02-27T21:44:37.000Z" - }, - "events": [ - { - "uuid": "3b2d3e41-e45a-4484-83ec-afb350a8b38e", - "start": { - "$date": "2022-02-27T20:02:43.000Z" - }, - "end": { - "$date": "2022-02-27T21:44:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5157ee19-81b1-4349-9c5b-03c633a502cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T20:29:40.000Z" - }, - "end": { - "$date": "2022-02-27T22:04:31.000Z" - }, - "events": [ - { - "uuid": "104f7af5-a837-48bd-9485-183dc20053f8", - "start": { - "$date": "2022-02-27T20:29:40.000Z" - }, - "end": { - "$date": "2022-02-27T22:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40565e58-fd26-48ba-aa6a-58a0b083bada", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-27T20:36:21.000Z" - }, - "end": { - "$date": "2022-02-27T21:44:44.000Z" - }, - "events": [ - { - "uuid": "b599e605-18d8-4c28-9fc5-3800dabaf544", - "start": { - "$date": "2022-02-27T20:36:21.000Z" - }, - "end": { - "$date": "2022-02-27T21:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "173e9bd9-009e-46b4-a078-61972c9c9453", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-27T20:43:18.000Z" - }, - "end": { - "$date": "2022-02-28T03:29:23.000Z" - }, - "events": [ - { - "uuid": "816de22f-2c76-4c90-831f-01ce59f83df1", - "start": { - "$date": "2022-02-27T20:43:18.000Z" - }, - "end": { - "$date": "2022-02-28T03:29:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "92359081-1034-49f8-936e-eb96cbdb24c7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T00:29:37.000Z" - }, - "end": { - "$date": "2022-02-28T01:20:40.000Z" - }, - "events": [ - { - "uuid": "349a2440-c6ad-4a2d-bba8-141f3a53ac42", - "start": { - "$date": "2022-02-28T00:29:37.000Z" - }, - "end": { - "$date": "2022-02-28T01:47:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a70e26fe-dabd-49a1-ae69-79b3fbbe560b", - "start": { - "$date": "2022-02-28T01:47:37.000Z" - }, - "end": { - "$date": "2022-02-28T01:50:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c5db965-ca7b-44f9-b3fe-b31e4edaa7cd", - "start": { - "$date": "2022-02-28T01:50:37.000Z" - }, - "end": { - "$date": "2022-02-28T01:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17d65949-43a3-4451-8a57-964a92c7bd99", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T21:32:39.000Z" - }, - "end": { - "$date": "2022-02-27T22:00:44.000Z" - }, - "events": [ - { - "uuid": "89791b05-7949-422b-b69c-5c628a8e83e9", - "start": { - "$date": "2022-02-27T21:32:39.000Z" - }, - "end": { - "$date": "2022-02-27T22:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "854f03b1-5ed1-4662-9742-7ca04cf6bbab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-27T22:29:34.000Z" - }, - "end": { - "$date": "2022-02-28T01:03:02.000Z" - }, - "events": [ - { - "uuid": "a42c48af-b34f-4bc3-b40e-8e82f5eed41d", - "start": { - "$date": "2022-02-27T22:29:34.000Z" - }, - "end": { - "$date": "2022-02-28T00:29:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "24444209-5b44-422b-bdef-26f792684b9f", - "start": { - "$date": "2022-02-28T00:29:34.000Z" - }, - "end": { - "$date": "2022-02-28T00:34:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8836b02-19d3-4ea5-9c02-b8bec40d7ddd", - "start": { - "$date": "2022-02-28T00:34:34.000Z" - }, - "end": { - "$date": "2022-02-28T01:03:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b783fda3-d592-485d-987d-536a0210c501", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T22:34:33.000Z" - }, - "end": { - "$date": "2022-02-27T22:39:35.000Z" - }, - "events": [ - { - "uuid": "b4873a52-2960-4c85-88ac-964c80ceeb7f", - "start": { - "$date": "2022-02-27T22:34:33.000Z" - }, - "end": { - "$date": "2022-02-27T22:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7e16c27b-9879-4daf-a49b-7a2379591ed5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T22:39:44.000Z" - }, - "end": { - "$date": "2022-02-27T22:59:52.000Z" - }, - "events": [ - { - "uuid": "86c2262e-7ef4-4280-82b7-5b7f1cc0926b", - "start": { - "$date": "2022-02-27T22:39:44.000Z" - }, - "end": { - "$date": "2022-02-27T22:59:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "79d0fec0-920a-4ebe-9dc0-593498624c99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-27T23:00:16.000Z" - }, - "end": { - "$date": "2022-02-27T23:10:02.000Z" - }, - "events": [ - { - "uuid": "68a69ace-5f25-4645-b702-3bd47ef432c3", - "start": { - "$date": "2022-02-27T23:00:16.000Z" - }, - "end": { - "$date": "2022-02-27T23:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "44c570ad-3cf5-48fe-99a0-8e29706dbaeb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-27T23:18:01.000Z" - }, - "end": { - "$date": "2022-02-27T23:56:47.000Z" - }, - "events": [ - { - "uuid": "cb788719-3de2-4a9a-94c0-c55bfe0cc104", - "start": { - "$date": "2022-02-27T23:18:01.000Z" - }, - "end": { - "$date": "2022-02-27T23:56:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d72174b5-1449-4dc0-9d59-f342c96e362e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-27T23:52:10.000Z" - }, - "end": { - "$date": "2022-02-28T00:14:12.000Z" - }, - "events": [ - { - "uuid": "3399998f-5cc3-47f0-a2ff-403c71c3ba33", - "start": { - "$date": "2022-02-27T23:52:10.000Z" - }, - "end": { - "$date": "2022-02-28T00:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb8475d8-8e94-46fb-b78c-88ee7bb7deb8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T00:20:07.000Z" - }, - "end": { - "$date": "2022-02-28T00:38:04.000Z" - }, - "events": [ - { - "uuid": "bc3595df-0561-44a1-a687-79311017c693", - "start": { - "$date": "2022-02-28T00:20:07.000Z" - }, - "end": { - "$date": "2022-02-28T00:38:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "63f57eea-7bde-4ba7-9542-a34937dfe13e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-28T00:15:44.000Z" - }, - "end": { - "$date": "2022-02-28T01:35:49.000Z" - }, - "events": [ - { - "uuid": "6438929b-5939-45b3-8c3a-05a1f3b74a77", - "start": { - "$date": "2022-02-28T00:15:44.000Z" - }, - "end": { - "$date": "2022-02-28T01:35:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e05464db-15e5-4818-9ef9-0992932f0aa9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-28T01:05:47.000Z" - }, - "end": { - "$date": "2022-02-28T01:40:30.000Z" - }, - "events": [ - { - "uuid": "bca497a9-6b60-4202-b16a-9d7d3825d5c1", - "start": { - "$date": "2022-02-28T01:05:47.000Z" - }, - "end": { - "$date": "2022-02-28T01:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf30aebd-a7e0-485c-b4cd-0796611ff09a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-28T01:07:08.000Z" - }, - "end": { - "$date": "2022-02-28T01:59:44.000Z" - }, - "events": [ - { - "uuid": "9e9e556d-ce8f-4459-90bc-f60f3bebd62c", - "start": { - "$date": "2022-02-28T01:07:08.000Z" - }, - "end": { - "$date": "2022-02-28T01:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "63c44f59-10a3-4c07-a892-12732e42c365", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T01:36:50.000Z" - }, - "end": { - "$date": "2022-02-28T02:04:58.000Z" - }, - "events": [ - { - "uuid": "6546b262-12f0-4bb8-a2c4-3227d7d9b513", - "start": { - "$date": "2022-02-28T01:36:50.000Z" - }, - "end": { - "$date": "2022-02-28T02:04:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c450af01-e8ba-4408-a6e4-9eddfab8f03e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T01:24:05.000Z" - }, - "end": { - "$date": "2022-02-28T01:28:05.000Z" - }, - "events": [ - { - "uuid": "9e14dcd2-e642-404c-8ade-1747adc15a18", - "start": { - "$date": "2022-02-28T01:24:05.000Z" - }, - "end": { - "$date": "2022-02-28T01:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3834fd27-23a3-44b1-8269-719f634c8185", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T01:38:42.000Z" - }, - "end": { - "$date": "2022-02-28T01:40:17.000Z" - }, - "events": [ - { - "uuid": "a8f220d7-1f3a-4567-af96-9fee834f4c66", - "start": { - "$date": "2022-02-28T01:38:42.000Z" - }, - "end": { - "$date": "2022-02-28T01:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5531c535-31cd-410e-a536-8632297d0b81", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T01:40:47.000Z" - }, - "end": { - "$date": "2022-02-28T02:25:14.000Z" - }, - "events": [ - { - "uuid": "5ccecfb2-8c0a-43e9-9361-1782d8c40361", - "start": { - "$date": "2022-02-28T01:40:47.000Z" - }, - "end": { - "$date": "2022-02-28T02:25:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "ce126ba8-1ba0-42b3-bb5e-33b6865b4e67", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T02:25:29.000Z" - }, - "end": { - "$date": "2022-02-28T03:33:07.000Z" - }, - "events": [ - { - "uuid": "27a3f079-3ee0-4919-b256-c9bec1075dbf", - "start": { - "$date": "2022-02-28T02:25:29.000Z" - }, - "end": { - "$date": "2022-02-28T03:33:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce777df2-9683-4cf0-be9a-20a1e10f91d5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-28T02:48:05.000Z" - }, - "end": { - "$date": "2022-02-28T03:02:25.000Z" - }, - "events": [ - { - "uuid": "6101a087-a98a-465a-bfa2-d426ddb36cf4", - "start": { - "$date": "2022-02-28T02:48:05.000Z" - }, - "end": { - "$date": "2022-02-28T03:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "90342a2c-2eb1-4c42-9a75-e9974dd50c2b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-02-28T02:46:20.000Z" - }, - "end": { - "$date": "2022-02-28T02:56:01.000Z" - }, - "events": [ - { - "uuid": "0ae992e4-8edf-4e2c-bdf9-b65da3c1f7c0", - "start": { - "$date": "2022-02-28T02:46:20.000Z" - }, - "end": { - "$date": "2022-02-28T02:56:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "07f3c381-72c6-4f99-8fe9-a3e39424a75c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-28T03:05:50.000Z" - }, - "end": { - "$date": "2022-02-28T03:10:36.000Z" - }, - "events": [ - { - "uuid": "6be9df34-ad18-4001-b5e9-3bd498b85260", - "start": { - "$date": "2022-02-28T03:05:50.000Z" - }, - "end": { - "$date": "2022-02-28T03:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bb04f2d6-8871-418c-9650-ef6ac354cf91", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-28T03:10:51.000Z" - }, - "end": { - "$date": "2022-02-28T05:13:45.000Z" - }, - "events": [ - { - "uuid": "c5195193-8ce1-4f5c-9ea5-46e6b88d950c", - "start": { - "$date": "2022-02-28T03:10:51.000Z" - }, - "end": { - "$date": "2022-02-28T05:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "399afd53-2e61-4fc5-beb4-8c5e93bdf80d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T03:35:28.000Z" - }, - "end": { - "$date": "2022-02-28T03:49:08.000Z" - }, - "events": [ - { - "uuid": "647e89c3-1480-4ff9-b103-a2cf9ed47a75", - "start": { - "$date": "2022-02-28T03:35:28.000Z" - }, - "end": { - "$date": "2022-02-28T03:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "21d1d475-3308-48a0-bf18-fd8e55a7421e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-28T03:46:53.000Z" - }, - "end": { - "$date": "2022-02-28T05:16:26.000Z" - }, - "events": [ - { - "uuid": "78874a9d-3768-4273-8568-a63aa84303ca", - "start": { - "$date": "2022-02-28T03:46:53.000Z" - }, - "end": { - "$date": "2022-02-28T05:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5f23787c-7679-4318-a39f-3dfdc2e15e91", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T03:49:18.000Z" - }, - "end": { - "$date": "2022-02-28T05:18:16.000Z" - }, - "events": [ - { - "uuid": "529d1e0b-b46b-4a67-97c6-6515e336e9b9", - "start": { - "$date": "2022-02-28T03:49:18.000Z" - }, - "end": { - "$date": "2022-02-28T05:18:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34619fa7-edd5-40c7-92b3-f6c99b232a73", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T05:08:32.000Z" - }, - "end": { - "$date": "2022-02-28T05:37:01.000Z" - }, - "events": [ - { - "uuid": "2dfccd43-0ba0-4f17-a438-3da9be7a07e9", - "start": { - "$date": "2022-02-28T05:08:32.000Z" - }, - "end": { - "$date": "2022-02-28T05:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "25eb490a-37f7-416e-9ff2-e242288ac2cd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T05:18:22.000Z" - }, - "end": { - "$date": "2022-02-28T05:57:23.000Z" - }, - "events": [ - { - "uuid": "f585ffb2-6a80-4cca-8a70-d3dec6c31dee", - "start": { - "$date": "2022-02-28T05:18:22.000Z" - }, - "end": { - "$date": "2022-02-28T05:57:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "713ca220-d261-4228-966e-ba2ebff68874", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-02-28T02:05:33.000Z" - }, - "end": { - "$date": "2022-02-28T06:52:53.000Z" - }, - "events": [ - { - "uuid": "83f892be-fb19-4ba9-b93b-2e37c69618c9", - "start": { - "$date": "2022-02-28T02:05:33.000Z" - }, - "end": { - "$date": "2022-02-28T06:52:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d0593b2-a8c9-4ea9-8367-b1ed39c20776", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T05:47:32.000Z" - }, - "end": { - "$date": "2022-02-28T06:19:31.000Z" - }, - "events": [ - { - "uuid": "b09bb5a6-5327-4a1a-adae-017a69b738aa", - "start": { - "$date": "2022-02-28T05:47:32.000Z" - }, - "end": { - "$date": "2022-02-28T06:19:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "137d60c1-8a27-435e-b376-71e8ddd1a7cb", - "uuid": "f5f5758e-d0eb-4228-9853-6cec1916fa1a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-02-28T05:57:47.000Z" - }, - "end": { - "$date": "2022-02-28T06:18:28.000Z" - }, - "events": [ - { - "uuid": "540b8dcc-7a18-475b-ba3a-2fc736e54fa7", - "start": { - "$date": "2022-02-28T05:57:47.000Z" - }, - "end": { - "$date": "2022-02-28T06:18:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "915c72fe-7a90-4540-872b-1ef9f8664ae0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T06:14:46.000Z" - }, - "end": { - "$date": "2022-02-28T07:24:29.000Z" - }, - "events": [ - { - "uuid": "ab620c59-192f-455f-8a83-cd08ebdc9c7c", - "start": { - "$date": "2022-02-28T06:14:46.000Z" - }, - "end": { - "$date": "2022-02-28T07:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "486a12c2-1e2a-4d90-a3d9-8d3de51ebf6f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T06:21:22.000Z" - }, - "end": { - "$date": "2022-02-28T06:56:28.000Z" - }, - "events": [ - { - "uuid": "f5619d02-ffd3-47f1-971b-032104c8efee", - "start": { - "$date": "2022-02-28T06:21:22.000Z" - }, - "end": { - "$date": "2022-02-28T06:56:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "2a92d3e5-ecaf-428c-a303-568c4f81188f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-02-28T06:53:47.000Z" - }, - "end": { - "$date": "2022-02-28T07:51:08.000Z" - }, - "events": [ - { - "uuid": "ca75a6b9-c291-46ca-b35b-1b6ec9b1ed13", - "start": { - "$date": "2022-02-28T06:53:47.000Z" - }, - "end": { - "$date": "2022-02-28T07:51:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "334acbc1-eff5-42d7-af98-216244d9cfdc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T07:25:54.000Z" - }, - "end": { - "$date": "2022-02-28T07:44:10.000Z" - }, - "events": [ - { - "uuid": "77fe2ba3-bc1e-42e4-b198-a2c492c21e07", - "start": { - "$date": "2022-02-28T07:25:54.000Z" - }, - "end": { - "$date": "2022-02-28T07:44:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c6bd1c82-634d-46f4-a261-82393b319ff8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-28T15:51:48.000Z" - }, - "end": { - "$date": "2022-02-28T21:18:09.000Z" - }, - "events": [ - { - "uuid": "8ade6520-8451-47ed-8e79-b35ba5a2b094", - "start": { - "$date": "2022-02-28T15:51:48.000Z" - }, - "end": { - "$date": "2022-02-28T20:08:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1ff0cd4-5459-480a-b3bb-6846d1f02beb", - "start": { - "$date": "2022-02-28T20:08:48.000Z" - }, - "end": { - "$date": "2022-02-28T20:11:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb92b224-becc-47d0-8ba4-df3af971d17d", - "start": { - "$date": "2022-02-28T20:11:48.000Z" - }, - "end": { - "$date": "2022-02-28T20:44:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14c79d83-e2a2-4a25-ad7e-896262460168", - "start": { - "$date": "2022-02-28T20:44:48.000Z" - }, - "end": { - "$date": "2022-02-28T20:54:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e64263fc-a144-4886-a18e-f9b90fda8f32", - "start": { - "$date": "2022-02-28T20:54:48.000Z" - }, - "end": { - "$date": "2022-02-28T21:18:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1ac6f124-d9b9-4abe-8b28-77ff07027094", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-28T16:15:50.000Z" - }, - "end": { - "$date": "2022-02-28T19:02:05.000Z" - }, - "events": [ - { - "uuid": "d1398558-9ae6-4936-9e66-fc78f325219b", - "start": { - "$date": "2022-02-28T16:15:50.000Z" - }, - "end": { - "$date": "2022-02-28T19:02:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "f20cd454-447c-4662-a1fd-9f31bdd8a9d6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T17:06:23.000Z" - }, - "end": { - "$date": "2022-02-28T17:08:48.000Z" - }, - "events": [ - { - "uuid": "22a5e32c-6a73-4e86-a6ff-b9d3925230cc", - "start": { - "$date": "2022-02-28T17:06:23.000Z" - }, - "end": { - "$date": "2022-02-28T17:08:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d76f0748-7b47-49c4-b8e5-136563d8ef29", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T17:10:58.000Z" - }, - "end": { - "$date": "2022-02-28T17:13:49.000Z" - }, - "events": [ - { - "uuid": "a463193a-5c5a-4221-b8b7-1e9e9909b621", - "start": { - "$date": "2022-02-28T17:10:58.000Z" - }, - "end": { - "$date": "2022-02-28T17:13:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "41769a02-c1be-41a2-91b1-db5763dba9ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-02-28T17:13:54.000Z" - }, - "end": { - "$date": "2022-02-28T22:31:35.000Z" - }, - "events": [ - { - "uuid": "fca7eba5-c5e2-402a-b40f-b2318d875303", - "start": { - "$date": "2022-02-28T17:13:54.000Z" - }, - "end": { - "$date": "2022-02-28T17:40:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0a5aa373-fc27-4ff4-b809-b55aebe3d1fe", - "start": { - "$date": "2022-02-28T17:40:54.000Z" - }, - "end": { - "$date": "2022-02-28T18:06:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2fa9d226-e78d-486a-9c01-3098e1cdfb5a", - "start": { - "$date": "2022-02-28T18:06:54.000Z" - }, - "end": { - "$date": "2022-02-28T21:07:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "48de6744-37c5-417e-886e-122723dcc119", - "start": { - "$date": "2022-02-28T21:07:54.000Z" - }, - "end": { - "$date": "2022-02-28T21:08:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d5f6f24-0a17-4c8c-b90e-9bdb27607ada", - "start": { - "$date": "2022-02-28T21:08:54.000Z" - }, - "end": { - "$date": "2022-02-28T22:31:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bef4797-7bdd-4c42-be02-86fec0d6286a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T18:37:14.000Z" - }, - "end": { - "$date": "2022-02-28T19:09:28.000Z" - }, - "events": [ - { - "uuid": "40b3f7b9-239f-44f0-9fbc-8a42abe0900c", - "start": { - "$date": "2022-02-28T18:37:14.000Z" - }, - "end": { - "$date": "2022-02-28T19:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a06a4b81-13c7-4a9c-90eb-1cb3fde08ef9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T19:10:48.000Z" - }, - "end": { - "$date": "2022-02-28T19:43:57.000Z" - }, - "events": [ - { - "uuid": "b21948cf-5525-4c5c-b7ad-110126001918", - "start": { - "$date": "2022-02-28T19:10:48.000Z" - }, - "end": { - "$date": "2022-02-28T19:43:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf12b2cf-c96f-4476-824b-a6b903c13f07", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T19:55:24.000Z" - }, - "end": { - "$date": "2022-02-28T20:31:53.000Z" - }, - "events": [ - { - "uuid": "26069fee-d55e-4728-93a1-dc34d0ae7f98", - "start": { - "$date": "2022-02-28T19:55:24.000Z" - }, - "end": { - "$date": "2022-02-28T20:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "50622601-7a07-4129-b95e-bc244caa72cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T20:39:50.000Z" - }, - "end": { - "$date": "2022-02-28T21:06:38.000Z" - }, - "events": [ - { - "uuid": "21df51c2-7074-4772-949f-14ae0515697a", - "start": { - "$date": "2022-02-28T20:39:50.000Z" - }, - "end": { - "$date": "2022-02-28T21:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9f407ac4-a262-4ba3-a9d3-b00a9ad9a893", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-02-28T22:38:18.000Z" - }, - "end": { - "$date": "2022-02-28T22:59:15.000Z" - }, - "events": [ - { - "uuid": "9c015605-2f90-417c-b495-ab65053f2822", - "start": { - "$date": "2022-02-28T22:38:18.000Z" - }, - "end": { - "$date": "2022-02-28T22:59:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4cddba47-8cd7-470c-99e3-439ad0dcb449", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-02-28T23:22:10.000Z" - }, - "end": { - "$date": "2022-03-01T02:58:34.000Z" - }, - "events": [ - { - "uuid": "3d28626a-ec42-4488-b2a5-382b4406a20d", - "start": { - "$date": "2022-02-28T23:22:10.000Z" - }, - "end": { - "$date": "2022-03-01T02:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "444ba787-a72b-4c6b-b1c4-9e92239756c1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-02-28T23:32:36.000Z" - }, - "end": { - "$date": "2022-03-01T00:12:33.000Z" - }, - "events": [ - { - "uuid": "34205dd8-d5e7-4267-958b-87482924267d", - "start": { - "$date": "2022-02-28T23:32:36.000Z" - }, - "end": { - "$date": "2022-03-01T00:12:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52af96dc-5e03-46d2-9c98-fea472035742", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-02-28T23:58:15.000Z" - }, - "end": { - "$date": "2022-03-01T00:18:02.000Z" - }, - "events": [ - { - "uuid": "0e63e486-113d-411b-a859-444fd947e602", - "start": { - "$date": "2022-02-28T23:58:15.000Z" - }, - "end": { - "$date": "2022-03-01T00:18:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c538fe6-5ea0-4d6c-9bd1-94bf66abfa8d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T00:17:56.000Z" - }, - "end": { - "$date": "2022-03-01T01:49:43.000Z" - }, - "events": [ - { - "uuid": "737e9fa7-c996-4b1c-8bed-381c17d2687d", - "start": { - "$date": "2022-03-01T00:17:56.000Z" - }, - "end": { - "$date": "2022-03-01T01:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "68226415-5e34-4b63-a35f-52a08a4edc61", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T00:21:58.000Z" - }, - "end": { - "$date": "2022-03-01T00:24:39.000Z" - }, - "events": [ - { - "uuid": "f786c67f-1c5d-4561-801f-866a3fd386e7", - "start": { - "$date": "2022-03-01T00:21:58.000Z" - }, - "end": { - "$date": "2022-03-01T00:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "fa3630a3-d9ec-4ec3-a1bb-15dee13cc2c8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-01T00:26:44.000Z" - }, - "end": { - "$date": "2022-03-01T02:39:15.000Z" - }, - "events": [ - { - "uuid": "31e699e3-8866-4a73-8c51-dc4fd8ab3057", - "start": { - "$date": "2022-03-01T00:26:44.000Z" - }, - "end": { - "$date": "2022-03-01T02:07:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bfec3e66-903a-4cfe-8e45-1e5816bd0a53", - "start": { - "$date": "2022-03-01T02:07:44.000Z" - }, - "end": { - "$date": "2022-03-01T02:27:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1df72759-d89f-461e-befa-9dc7afaa489e", - "start": { - "$date": "2022-03-01T02:27:44.000Z" - }, - "end": { - "$date": "2022-03-01T02:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "dc233018-bf27-4159-9c41-0cd63c4029a4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-01T00:33:31.000Z" - }, - "end": { - "$date": "2022-03-01T02:53:03.000Z" - }, - "events": [ - { - "uuid": "bca5ebc5-a4e8-4711-91e4-12f42469107a", - "start": { - "$date": "2022-03-01T00:33:31.000Z" - }, - "end": { - "$date": "2022-03-01T02:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c5957514-0ff3-491e-a7e0-daf4f071ab14", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T00:45:10.000Z" - }, - "end": { - "$date": "2022-03-01T01:02:35.000Z" - }, - "events": [ - { - "uuid": "4f6ad4ce-a95e-42b2-8196-00bf9357f1ef", - "start": { - "$date": "2022-03-01T00:45:10.000Z" - }, - "end": { - "$date": "2022-03-01T01:02:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee45650e-568d-483d-a26f-f4fa99f15807", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-01T00:49:23.000Z" - }, - "end": { - "$date": "2022-03-01T00:55:28.000Z" - }, - "events": [ - { - "uuid": "14aa998b-52b3-489c-b90b-84b3e0ccb021", - "start": { - "$date": "2022-03-01T00:49:23.000Z" - }, - "end": { - "$date": "2022-03-01T00:55:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d03b5d86-55d9-4c12-a3fe-7528d63462f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T01:04:16.000Z" - }, - "end": { - "$date": "2022-03-01T01:44:44.000Z" - }, - "events": [ - { - "uuid": "56a6d176-df03-4e24-a015-51afd847d91c", - "start": { - "$date": "2022-03-01T01:04:16.000Z" - }, - "end": { - "$date": "2022-03-01T01:44:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "75a5751c-4faf-4183-96bc-6dd0fb85f665", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-01T01:20:51.000Z" - }, - "end": { - "$date": "2022-03-01T06:51:44.000Z" - }, - "events": [ - { - "uuid": "c8c265b7-1b96-4c43-a890-101e29c578d4", - "start": { - "$date": "2022-03-01T01:20:51.000Z" - }, - "end": { - "$date": "2022-03-01T06:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ed1b1ee3-f859-4af0-b471-9d7320d5b220", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T01:50:04.000Z" - }, - "end": { - "$date": "2022-03-01T02:27:56.000Z" - }, - "events": [ - { - "uuid": "063c515e-2a4c-4200-86f3-fb2fb7373530", - "start": { - "$date": "2022-03-01T01:50:04.000Z" - }, - "end": { - "$date": "2022-03-01T02:27:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "133a29ac-efd6-4b3e-b478-565af34627b0", - "uuid": "040ad284-cbc4-49a5-bf6b-20ab0b87b6c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T01:52:43.000Z" - }, - "end": { - "$date": "2022-03-01T01:53:08.000Z" - }, - "events": [ - { - "uuid": "352a6aec-1279-4b3c-8281-eebc6d4134d2", - "start": { - "$date": "2022-03-01T01:52:43.000Z" - }, - "end": { - "$date": "2022-03-01T01:53:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "133a29ac-efd6-4b3e-b478-565af34627b0", - "uuid": "a12f5f55-82b6-40fc-b12d-24f724e8e3ec", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T02:14:51.000Z" - }, - "end": { - "$date": "2022-03-01T02:20:11.000Z" - }, - "events": [ - { - "uuid": "0f9bda01-27be-4e86-b101-cb7cbf4b62f3", - "start": { - "$date": "2022-03-01T02:14:51.000Z" - }, - "end": { - "$date": "2022-03-01T02:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "acf018f0-7da5-484d-a27c-8ac1c106cab5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-01T02:27:37.000Z" - }, - "end": { - "$date": "2022-03-01T02:29:11.000Z" - }, - "events": [ - { - "uuid": "e7f5cc35-d981-44ab-ad9b-05949295876e", - "start": { - "$date": "2022-03-01T02:27:37.000Z" - }, - "end": { - "$date": "2022-03-01T02:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d917b6da-c8db-444b-a60b-66bf11c66b26", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T02:28:03.000Z" - }, - "end": { - "$date": "2022-03-01T02:31:03.000Z" - }, - "events": [ - { - "uuid": "c1082cda-bed9-41f6-9edd-20ebdacdaa58", - "start": { - "$date": "2022-03-01T02:28:03.000Z" - }, - "end": { - "$date": "2022-03-01T02:31:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "beeb5b33-6d17-4079-90a6-14ee07ec1be5", - "uuid": "cb2081c1-c744-4e34-a2d1-6da1ab8dc52b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-01T02:31:10.000Z" - }, - "end": { - "$date": "2022-03-01T03:12:57.000Z" - }, - "events": [ - { - "uuid": "f099e7e7-1120-4195-9562-8816836c108c", - "start": { - "$date": "2022-03-01T02:31:10.000Z" - }, - "end": { - "$date": "2022-03-01T03:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f96d6238-fe5c-406b-a72d-331c945a56bf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T02:32:29.000Z" - }, - "end": { - "$date": "2022-03-01T02:34:55.000Z" - }, - "events": [ - { - "uuid": "039b4950-250d-4ffb-b5be-84c4881c42d1", - "start": { - "$date": "2022-03-01T02:32:29.000Z" - }, - "end": { - "$date": "2022-03-01T02:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c7296d97-8a34-4115-add5-033614520d01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-01T03:13:07.000Z" - }, - "end": { - "$date": "2022-03-01T03:29:42.000Z" - }, - "events": [ - { - "uuid": "2074eea5-1b2c-49eb-9146-f5883d652635", - "start": { - "$date": "2022-03-01T03:13:07.000Z" - }, - "end": { - "$date": "2022-03-01T03:29:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "79dc962d-d50c-4355-a177-38f0a23c026d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-01T03:29:52.000Z" - }, - "end": { - "$date": "2022-03-01T04:02:38.000Z" - }, - "events": [ - { - "uuid": "93f1865d-d1b6-4cb5-86c4-8a5757d34724", - "start": { - "$date": "2022-03-01T03:29:52.000Z" - }, - "end": { - "$date": "2022-03-01T04:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "10c5916f-c810-496d-bc58-ad5559c72a9c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T03:34:26.000Z" - }, - "end": { - "$date": "2022-03-01T05:40:56.000Z" - }, - "events": [ - { - "uuid": "1372ec88-d7ad-408f-902a-2816be0b7f2c", - "start": { - "$date": "2022-03-01T03:34:26.000Z" - }, - "end": { - "$date": "2022-03-01T05:40:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "da380253-b86a-425b-bc36-2db9f0491ed7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T03:36:42.000Z" - }, - "end": { - "$date": "2022-03-01T04:09:15.000Z" - }, - "events": [ - { - "uuid": "0ac4bee3-47a6-459d-b2d0-0631e17b535e", - "start": { - "$date": "2022-03-01T03:36:42.000Z" - }, - "end": { - "$date": "2022-03-01T04:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0521f9d1-d030-4ff7-ba9f-af1254d821e5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-01T03:36:34.000Z" - }, - "end": { - "$date": "2022-03-01T04:18:26.000Z" - }, - "events": [ - { - "uuid": "bd5b1e94-a4b3-4e9e-a674-12356de02f5f", - "start": { - "$date": "2022-03-01T03:36:34.000Z" - }, - "end": { - "$date": "2022-03-01T04:18:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be0f3840-a8ab-450c-bc81-20773670636a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T04:09:57.000Z" - }, - "end": { - "$date": "2022-03-01T04:41:00.000Z" - }, - "events": [ - { - "uuid": "45caf588-a0e2-4a5d-84bc-126801211618", - "start": { - "$date": "2022-03-01T04:09:57.000Z" - }, - "end": { - "$date": "2022-03-01T04:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de900908-b1fd-4a1e-8821-3b9149477aba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-01T04:30:53.000Z" - }, - "end": { - "$date": "2022-03-01T04:43:58.000Z" - }, - "events": [ - { - "uuid": "38663d0b-e2d3-434b-904f-44f8bfc62f7c", - "start": { - "$date": "2022-03-01T04:30:53.000Z" - }, - "end": { - "$date": "2022-03-01T04:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b300ff6e-56de-4e91-b4a4-dd30936fe1e1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T05:23:40.000Z" - }, - "end": { - "$date": "2022-03-01T05:23:48.000Z" - }, - "events": [ - { - "uuid": "b92c2636-c253-461c-bf5b-87183e760a52", - "start": { - "$date": "2022-03-01T05:23:40.000Z" - }, - "end": { - "$date": "2022-03-01T05:23:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c6456b37-26eb-458d-9b45-49ec1576cdd2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T06:21:23.000Z" - }, - "end": { - "$date": "2022-03-01T06:21:45.000Z" - }, - "events": [ - { - "uuid": "d3d1c5a6-f930-4e73-81e6-e3be46a286fa", - "start": { - "$date": "2022-03-01T06:21:23.000Z" - }, - "end": { - "$date": "2022-03-01T06:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a5e71373-ec94-425d-82f5-42cc40f1a003", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T05:30:16.000Z" - }, - "end": { - "$date": "2022-03-01T05:32:46.000Z" - }, - "events": [ - { - "uuid": "1f662d81-126f-45c7-a684-b29869d80d6a", - "start": { - "$date": "2022-03-01T05:30:16.000Z" - }, - "end": { - "$date": "2022-03-01T05:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e258d56-fdcd-4457-8de6-81ba16a84c0c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-01T05:32:48.000Z" - }, - "end": { - "$date": "2022-03-01T05:49:08.000Z" - }, - "events": [ - { - "uuid": "4d35fd8b-92af-4178-8120-8d0704a9e0b0", - "start": { - "$date": "2022-03-01T05:32:48.000Z" - }, - "end": { - "$date": "2022-03-01T05:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "89f0aafe-4552-4e64-9929-91e7e6e3c44e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T05:36:17.000Z" - }, - "end": { - "$date": "2022-03-01T05:39:52.000Z" - }, - "events": [ - { - "uuid": "7a3a5e05-6387-427b-bc41-2cc1462a1061", - "start": { - "$date": "2022-03-01T05:36:17.000Z" - }, - "end": { - "$date": "2022-03-01T05:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83faad41-8c18-4ee2-8c73-d5c070d38640", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-01T05:52:19.000Z" - }, - "end": { - "$date": "2022-03-01T06:11:53.000Z" - }, - "events": [ - { - "uuid": "d1f2184a-e603-4db2-9069-bb8b820b5f30", - "start": { - "$date": "2022-03-01T05:52:19.000Z" - }, - "end": { - "$date": "2022-03-01T06:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1dfd0a8-d2f0-42c1-a777-fd5e32aa3424", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-01T05:50:57.000Z" - }, - "end": { - "$date": "2022-03-01T06:31:22.000Z" - }, - "events": [ - { - "uuid": "429c4075-0ca6-4d0a-baca-b5bcc72e1a13", - "start": { - "$date": "2022-03-01T05:50:57.000Z" - }, - "end": { - "$date": "2022-03-01T06:31:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "094e1e3d-a19d-44a5-822f-8f30394b30b5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-01T06:15:44.000Z" - }, - "end": { - "$date": "2022-03-01T06:43:14.000Z" - }, - "events": [ - { - "uuid": "3ad4cb43-905d-42ca-b023-0b4b98e0d09b", - "start": { - "$date": "2022-03-01T06:15:44.000Z" - }, - "end": { - "$date": "2022-03-01T06:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "130e68c3-bdda-4a05-8508-178fec41382e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-01T06:31:33.000Z" - }, - "end": { - "$date": "2022-03-01T06:48:28.000Z" - }, - "events": [ - { - "uuid": "c4a51fef-6f7b-4707-8d22-a32fc0e77a54", - "start": { - "$date": "2022-03-01T06:31:33.000Z" - }, - "end": { - "$date": "2022-03-01T06:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "13df55c7-990d-4460-bfae-23b43bdd59d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T06:31:33.000Z" - }, - "end": { - "$date": "2022-03-01T06:48:29.000Z" - }, - "events": [ - { - "uuid": "75c99453-bf5e-424d-860f-74d12ca4e967", - "start": { - "$date": "2022-03-01T06:31:33.000Z" - }, - "end": { - "$date": "2022-03-01T06:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfc5cfea-303b-456c-9336-fa5bf8955d39", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-01T06:49:00.000Z" - }, - "end": { - "$date": "2022-03-01T07:00:45.000Z" - }, - "events": [ - { - "uuid": "143a3df5-d8a0-4671-96f8-d1b068ae567a", - "start": { - "$date": "2022-03-01T06:49:00.000Z" - }, - "end": { - "$date": "2022-03-01T07:00:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "2db3fc45-e33d-4886-ba87-945b3c64367a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T06:49:49.000Z" - }, - "end": { - "$date": "2022-03-01T08:49:14.000Z" - }, - "events": [ - { - "uuid": "b4bc4564-cd57-42eb-a1f9-0e1c0e56085a", - "start": { - "$date": "2022-03-01T06:49:49.000Z" - }, - "end": { - "$date": "2022-03-01T08:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2967b9a-5226-4da6-96fb-7637b63613b3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-01T07:04:21.000Z" - }, - "end": { - "$date": "2022-03-01T07:29:40.000Z" - }, - "events": [ - { - "uuid": "a84ffd35-6211-4438-88f0-05feb4b1f6c8", - "start": { - "$date": "2022-03-01T07:04:21.000Z" - }, - "end": { - "$date": "2022-03-01T07:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "00ec3f89-4cf5-4431-9f01-c91985a6520b", - "uuid": "9873768e-2836-4c8f-b8be-215fd7225118", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-01T09:38:25.000Z" - }, - "end": { - "$date": "2022-03-01T11:50:37.000Z" - }, - "events": [ - { - "uuid": "8b739922-18ae-4ca3-9ff9-779e5f48e838", - "start": { - "$date": "2022-03-01T09:38:25.000Z" - }, - "end": { - "$date": "2022-03-01T11:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0497f17b-fbd4-4d3f-a45e-750d0cfb82df", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-01T10:33:59.000Z" - }, - "end": { - "$date": "2022-03-01T10:52:43.000Z" - }, - "events": [ - { - "uuid": "4abce257-fdea-4d9b-a234-00e78f4a7aaf", - "start": { - "$date": "2022-03-01T10:33:59.000Z" - }, - "end": { - "$date": "2022-03-01T10:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91ccc2ec-e47e-42fc-88d0-6fe09974fb9f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-01T16:41:17.000Z" - }, - "end": { - "$date": "2022-03-01T17:17:48.000Z" - }, - "events": [ - { - "uuid": "2d577f81-eade-463f-8976-1b34002cab7e", - "start": { - "$date": "2022-03-01T16:41:17.000Z" - }, - "end": { - "$date": "2022-03-01T17:17:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "6346fd05-42be-4ff5-af5a-6ccfe27aa28d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T16:41:17.000Z" - }, - "end": { - "$date": "2022-03-01T17:47:59.000Z" - }, - "events": [ - { - "uuid": "c4d55a4f-e266-49a4-9f3c-4031ddec55e3", - "start": { - "$date": "2022-03-01T16:41:17.000Z" - }, - "end": { - "$date": "2022-03-01T17:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fda7220-d468-4a08-99db-a1598f0378de", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-01T17:19:18.000Z" - }, - "end": { - "$date": "2022-03-01T17:56:34.000Z" - }, - "events": [ - { - "uuid": "b224a4ab-b318-4552-b383-f43a22b6f232", - "start": { - "$date": "2022-03-01T17:19:18.000Z" - }, - "end": { - "$date": "2022-03-01T17:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5190427-8df1-4e9b-875a-cdce69e57109", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-01T17:40:57.000Z" - }, - "end": { - "$date": "2022-03-01T17:56:42.000Z" - }, - "events": [ - { - "uuid": "ec99dd83-08a1-4105-8ae7-71751f8fa23f", - "start": { - "$date": "2022-03-01T17:40:57.000Z" - }, - "end": { - "$date": "2022-03-01T17:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2195e979-bb7d-4358-b04c-104e14b6e2f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-01T17:41:24.000Z" - }, - "end": { - "$date": "2022-03-01T18:44:33.000Z" - }, - "events": [ - { - "uuid": "5c9d8f9f-e0da-443a-be65-2de379751d37", - "start": { - "$date": "2022-03-01T17:41:24.000Z" - }, - "end": { - "$date": "2022-03-01T18:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fdacf4ac-bb2c-40ef-ad4b-b3904ee4912c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-01T18:26:45.000Z" - }, - "end": { - "$date": "2022-03-01T20:59:04.000Z" - }, - "events": [ - { - "uuid": "57d2d208-3937-46da-a7a2-81fe760c2e8d", - "start": { - "$date": "2022-03-01T18:26:45.000Z" - }, - "end": { - "$date": "2022-03-01T19:00:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a122856a-43d1-46ca-890e-d878265e9b09", - "start": { - "$date": "2022-03-01T19:00:45.000Z" - }, - "end": { - "$date": "2022-03-01T19:23:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a15ff4a-d665-49b6-bed8-4bd65c1f3af5", - "start": { - "$date": "2022-03-01T19:23:45.000Z" - }, - "end": { - "$date": "2022-03-01T20:59:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "37c8f56b-1517-4bd0-85a0-972439999a73", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-01T18:39:38.000Z" - }, - "end": { - "$date": "2022-03-01T19:38:30.000Z" - }, - "events": [ - { - "uuid": "e94ab135-b906-40f7-ad35-2f9c57528706", - "start": { - "$date": "2022-03-01T18:39:38.000Z" - }, - "end": { - "$date": "2022-03-01T19:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3e877651-e85e-4503-bf2c-67bd1b986acc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-01T20:20:09.000Z" - }, - "end": { - "$date": "2022-03-01T21:28:48.000Z" - }, - "events": [ - { - "uuid": "c7ac4151-c364-45f4-9b57-231509e06974", - "start": { - "$date": "2022-03-01T20:20:09.000Z" - }, - "end": { - "$date": "2022-03-01T21:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "1b07b941-8250-4d6a-8007-6d0ae5777952", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T21:03:08.000Z" - }, - "end": { - "$date": "2022-03-01T21:29:31.000Z" - }, - "events": [ - { - "uuid": "6b9f2bae-3d40-4a6e-ace1-10468fdddc19", - "start": { - "$date": "2022-03-01T21:03:08.000Z" - }, - "end": { - "$date": "2022-03-01T21:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "512f0f3c-f8ad-41ed-94f6-feae47fa0c71", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T21:57:39.000Z" - }, - "end": { - "$date": "2022-03-01T22:09:35.000Z" - }, - "events": [ - { - "uuid": "4637651a-3ec2-42a5-936e-0d68eb417313", - "start": { - "$date": "2022-03-01T21:57:39.000Z" - }, - "end": { - "$date": "2022-03-01T22:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "e9be2748-1c27-4bac-b147-a9388539a312", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T22:41:49.000Z" - }, - "end": { - "$date": "2022-03-01T22:43:19.000Z" - }, - "events": [ - { - "uuid": "e0378639-fffe-4503-a51f-a50238847c7a", - "start": { - "$date": "2022-03-01T22:41:49.000Z" - }, - "end": { - "$date": "2022-03-01T22:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "25eb6dda-9215-45d9-ac26-935cd839dd64", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-01T22:43:54.000Z" - }, - "end": { - "$date": "2022-03-01T22:49:41.000Z" - }, - "events": [ - { - "uuid": "660752bb-833d-4528-ac85-eb31c3a7abb1", - "start": { - "$date": "2022-03-01T22:43:54.000Z" - }, - "end": { - "$date": "2022-03-01T22:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "6115fddd-8506-4121-b157-a46c0e857005", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T22:47:19.000Z" - }, - "end": { - "$date": "2022-03-01T22:51:38.000Z" - }, - "events": [ - { - "uuid": "0331c94d-88cc-4061-9d12-2fbea4d21887", - "start": { - "$date": "2022-03-01T22:47:19.000Z" - }, - "end": { - "$date": "2022-03-01T22:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c262d2b8-019c-4440-9e06-a3c7a3d288aa", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-01T22:51:54.000Z" - }, - "end": { - "$date": "2022-03-02T02:13:28.000Z" - }, - "events": [ - { - "uuid": "6cbfd312-342c-4537-af57-19eb4c157c43", - "start": { - "$date": "2022-03-01T22:51:54.000Z" - }, - "end": { - "$date": "2022-03-02T02:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "39bb1132-d7fd-4296-be75-cbdbd33f88e9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-01T22:55:35.000Z" - }, - "end": { - "$date": "2022-03-02T01:07:36.000Z" - }, - "events": [ - { - "uuid": "cf8bd0a0-4ba1-43a7-af45-478d4df74bde", - "start": { - "$date": "2022-03-01T22:55:35.000Z" - }, - "end": { - "$date": "2022-03-02T01:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "519aad53-d6c3-43c9-bae3-35c503cef9e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-01T22:57:40.000Z" - }, - "end": { - "$date": "2022-03-02T00:09:52.000Z" - }, - "events": [ - { - "uuid": "3e19eb4b-5212-4658-9417-704ce68eda57", - "start": { - "$date": "2022-03-01T22:57:40.000Z" - }, - "end": { - "$date": "2022-03-02T00:09:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a20842d5-1cbd-4d82-8999-cd37844e5a02", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-01T23:31:30.000Z" - }, - "end": { - "$date": "2022-03-02T00:55:40.000Z" - }, - "events": [ - { - "uuid": "a406f9ca-359b-4df6-953a-8d33701955fd", - "start": { - "$date": "2022-03-01T23:31:30.000Z" - }, - "end": { - "$date": "2022-03-02T00:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c7874d5f-3511-42dd-8cd6-7fcc92b6c363", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-01T23:48:06.000Z" - }, - "end": { - "$date": "2022-03-02T01:30:05.000Z" - }, - "events": [ - { - "uuid": "c8b29d67-ec1f-4a36-9f82-40582ba90882", - "start": { - "$date": "2022-03-01T23:48:06.000Z" - }, - "end": { - "$date": "2022-03-02T01:30:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c102f34-0114-4272-9cf4-bd834d5423d4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-02T00:19:21.000Z" - }, - "end": { - "$date": "2022-03-02T00:47:46.000Z" - }, - "events": [ - { - "uuid": "4ba229bf-7fd6-42cd-81e4-dfab57ad1305", - "start": { - "$date": "2022-03-02T00:19:21.000Z" - }, - "end": { - "$date": "2022-03-02T00:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9d1bcd53-4c7c-40eb-a466-4f6692f46acd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-02T00:26:29.000Z" - }, - "end": { - "$date": "2022-03-02T04:56:28.000Z" - }, - "events": [ - { - "uuid": "eca6c69c-916a-4e5e-8f19-694f15c9d1fa", - "start": { - "$date": "2022-03-02T00:26:29.000Z" - }, - "end": { - "$date": "2022-03-02T04:56:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "80a4d255-781d-4bd7-8e20-a686bfab1ce5", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-02T00:56:25.000Z" - }, - "end": { - "$date": "2022-03-02T00:57:30.000Z" - }, - "events": [ - { - "uuid": "833b5643-9b47-41fc-88d6-502c4fa5d63d", - "start": { - "$date": "2022-03-02T00:56:25.000Z" - }, - "end": { - "$date": "2022-03-02T00:57:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d866c67e-2148-4cfb-88eb-40848fd80e60", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-02T01:00:25.000Z" - }, - "end": { - "$date": "2022-03-02T03:56:34.000Z" - }, - "events": [ - { - "uuid": "7bf0a775-10b2-458d-8837-9ab3fb62e2cc", - "start": { - "$date": "2022-03-02T01:00:25.000Z" - }, - "end": { - "$date": "2022-03-02T01:07:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d52405da-15d1-4933-8c6a-b1cb97b4440c", - "start": { - "$date": "2022-03-02T01:07:25.000Z" - }, - "end": { - "$date": "2022-03-02T01:09:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "890085a1-9072-43fd-bc76-f3d0942679f1", - "start": { - "$date": "2022-03-02T01:09:25.000Z" - }, - "end": { - "$date": "2022-03-02T02:48:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f83c458f-c5d0-47aa-b58f-f60910de9426", - "start": { - "$date": "2022-03-02T02:48:25.000Z" - }, - "end": { - "$date": "2022-03-02T02:59:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "72972797-bdee-4a0d-ab06-65c68f58aa48", - "start": { - "$date": "2022-03-02T02:59:25.000Z" - }, - "end": { - "$date": "2022-03-02T03:01:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cae131a8-3a8e-4fba-a023-b11c1e01257f", - "start": { - "$date": "2022-03-02T03:01:25.000Z" - }, - "end": { - "$date": "2022-03-02T03:32:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5020c472-4d7e-4a17-8412-9878b3269f95", - "start": { - "$date": "2022-03-02T03:32:25.000Z" - }, - "end": { - "$date": "2022-03-02T03:34:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "733145d6-a4f7-4be7-8271-2a8eba83a79c", - "start": { - "$date": "2022-03-02T03:34:25.000Z" - }, - "end": { - "$date": "2022-03-02T03:48:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cd317c72-e90d-459c-84c6-dbb9de5fea75", - "start": { - "$date": "2022-03-02T03:48:25.000Z" - }, - "end": { - "$date": "2022-03-02T03:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5568b5e8-dd55-4613-baeb-056fbd7d9be6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-02T01:09:27.000Z" - }, - "end": { - "$date": "2022-03-02T02:12:05.000Z" - }, - "events": [ - { - "uuid": "8995f75f-cbdc-46b7-abe8-7fd8250a2f32", - "start": { - "$date": "2022-03-02T01:09:27.000Z" - }, - "end": { - "$date": "2022-03-02T01:43:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3a1e2303-521d-4949-8ac0-a4aee20c6642", - "start": { - "$date": "2022-03-02T01:43:27.000Z" - }, - "end": { - "$date": "2022-03-02T01:44:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39baa1ce-ebc0-467e-8af1-7d19b8ce82f0", - "start": { - "$date": "2022-03-02T01:44:27.000Z" - }, - "end": { - "$date": "2022-03-02T02:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c170f691-10aa-4d22-b7d0-18345dad2422", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-02T01:30:18.000Z" - }, - "end": { - "$date": "2022-03-02T02:13:29.000Z" - }, - "events": [ - { - "uuid": "b8640ef8-f98a-4e58-9760-b2f5d38660a1", - "start": { - "$date": "2022-03-02T01:30:18.000Z" - }, - "end": { - "$date": "2022-03-02T02:13:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "61ec7148-5ea2-42bd-b148-2b886c50ff19", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-02T01:51:32.000Z" - }, - "end": { - "$date": "2022-03-02T02:11:04.000Z" - }, - "events": [ - { - "uuid": "d8591efb-2203-4aa9-a616-f897b3e057b0", - "start": { - "$date": "2022-03-02T01:51:32.000Z" - }, - "end": { - "$date": "2022-03-02T02:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "49b6cf97-3db4-4620-ad40-ab480053d811", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-02T02:12:34.000Z" - }, - "end": { - "$date": "2022-03-02T05:02:34.000Z" - }, - "events": [ - { - "uuid": "207a1155-02f2-4b47-94b9-b76ad780688e", - "start": { - "$date": "2022-03-02T02:12:34.000Z" - }, - "end": { - "$date": "2022-03-02T05:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "34474d4b-93ab-4dd4-a1b3-b0f518acdfc5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-02T02:17:51.000Z" - }, - "end": { - "$date": "2022-03-02T02:51:37.000Z" - }, - "events": [ - { - "uuid": "629a1eb1-4b3b-45e6-bf5a-f4780c914617", - "start": { - "$date": "2022-03-02T02:17:51.000Z" - }, - "end": { - "$date": "2022-03-02T02:51:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a7ff86a5-42ac-474f-b6ff-27aa49aa9e77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-02T02:53:27.000Z" - }, - "end": { - "$date": "2022-03-02T04:23:58.000Z" - }, - "events": [ - { - "uuid": "73028796-7a35-41b9-9e56-ce54ac43ede0", - "start": { - "$date": "2022-03-02T02:53:27.000Z" - }, - "end": { - "$date": "2022-03-02T04:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c445af7c-1766-45b4-a250-f19b54a9b7c3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-02T03:53:33.000Z" - }, - "end": { - "$date": "2022-03-02T05:11:22.000Z" - }, - "events": [ - { - "uuid": "e99b402a-e9da-4f18-82fd-50225fad75dd", - "start": { - "$date": "2022-03-02T03:53:33.000Z" - }, - "end": { - "$date": "2022-03-02T04:34:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a54dba6-c31d-44e1-8676-ed51957fe24e", - "start": { - "$date": "2022-03-02T04:34:33.000Z" - }, - "end": { - "$date": "2022-03-02T04:44:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "773334ae-8a77-418e-8c3e-dc5d95142dc5", - "start": { - "$date": "2022-03-02T04:44:33.000Z" - }, - "end": { - "$date": "2022-03-02T05:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "3ab8dd56-e5e1-40ca-b135-a7f8341ace75", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-02T04:25:17.000Z" - }, - "end": { - "$date": "2022-03-02T04:26:33.000Z" - }, - "events": [ - { - "uuid": "251a8d5c-5379-4cf8-99e1-9796c3736650", - "start": { - "$date": "2022-03-02T04:25:17.000Z" - }, - "end": { - "$date": "2022-03-02T04:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cf20a32-e1b5-4094-9471-55f186864632", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-02T04:30:13.000Z" - }, - "end": { - "$date": "2022-03-02T05:03:34.000Z" - }, - "events": [ - { - "uuid": "0e71c3a8-87fd-4147-bdb3-2971f03c0d98", - "start": { - "$date": "2022-03-02T04:30:13.000Z" - }, - "end": { - "$date": "2022-03-02T05:03:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ceb77175-3d37-4958-a06f-4613518688ed", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-02T04:38:19.000Z" - }, - "end": { - "$date": "2022-03-03T02:29:10.000Z" - }, - "events": [ - { - "uuid": "c231f661-a1be-429e-b5e3-1b3092c9f7cf", - "start": { - "$date": "2022-03-02T04:38:19.000Z" - }, - "end": { - "$date": "2022-03-02T09:31:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a6a6cea2-7de2-4169-ab17-4eba7ecd3d13", - "start": { - "$date": "2022-03-02T09:31:19.000Z" - }, - "end": { - "$date": "2022-03-02T11:41:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de61ee22-b293-4557-8afc-6a517508d32c", - "start": { - "$date": "2022-03-02T11:41:19.000Z" - }, - "end": { - "$date": "2022-03-02T11:43:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d64169b-b661-44d5-87a7-d325e291f7d9", - "start": { - "$date": "2022-03-02T11:43:19.000Z" - }, - "end": { - "$date": "2022-03-03T00:10:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f733144a-9c29-4d24-aad7-52a729e147d2", - "start": { - "$date": "2022-03-03T00:10:19.000Z" - }, - "end": { - "$date": "2022-03-03T01:14:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33fd8df8-f822-43b6-9b30-edca66008c04", - "start": { - "$date": "2022-03-03T01:14:19.000Z" - }, - "end": { - "$date": "2022-03-03T01:36:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "497e0e1e-4d53-4412-a1f0-1fb8ac7594df", - "start": { - "$date": "2022-03-03T01:36:19.000Z" - }, - "end": { - "$date": "2022-03-03T02:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "79fe80b2-fdcd-411f-a7e0-a573cf2d8a82", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-02T04:40:00.000Z" - }, - "end": { - "$date": "2022-03-02T09:21:40.000Z" - }, - "events": [ - { - "uuid": "4cb8b1ad-6f75-49c8-86ab-06aff790e82d", - "start": { - "$date": "2022-03-02T04:40:00.000Z" - }, - "end": { - "$date": "2022-03-02T09:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6ae20c82-32e8-471b-bb6d-ce4419c1c011", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-02T04:56:48.000Z" - }, - "end": { - "$date": "2022-03-02T06:18:21.000Z" - }, - "events": [ - { - "uuid": "c5b7f1b0-ce80-40be-bc94-709f797f4795", - "start": { - "$date": "2022-03-02T04:56:48.000Z" - }, - "end": { - "$date": "2022-03-02T06:18:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "703e7dbb-f76e-4ea2-8f79-0a687d6e7062", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-02T05:06:54.000Z" - }, - "end": { - "$date": "2022-03-02T05:26:24.000Z" - }, - "events": [ - { - "uuid": "e5933fe8-6009-4090-8e3d-93f603886161", - "start": { - "$date": "2022-03-02T05:06:54.000Z" - }, - "end": { - "$date": "2022-03-02T05:26:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "3634bfb6-e3bd-4292-a656-317ceba30ed3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-02T05:19:58.000Z" - }, - "end": { - "$date": "2022-03-02T05:33:08.000Z" - }, - "events": [ - { - "uuid": "e761d96f-bc57-4f6a-8998-8dedb1024caf", - "start": { - "$date": "2022-03-02T05:19:58.000Z" - }, - "end": { - "$date": "2022-03-02T05:33:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "b6ae4109-eb85-4cae-b3bb-bd26023ff97b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-02T05:28:06.000Z" - }, - "end": { - "$date": "2022-03-02T07:09:56.000Z" - }, - "events": [ - { - "uuid": "280d507d-f177-4ce8-ba93-35a8ea6baa28", - "start": { - "$date": "2022-03-02T05:28:06.000Z" - }, - "end": { - "$date": "2022-03-02T07:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81f51224-24e6-474e-a2ab-06853565cbaf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-02T05:46:05.000Z" - }, - "end": { - "$date": "2022-03-02T07:03:07.000Z" - }, - "events": [ - { - "uuid": "43296ec1-b1fb-4dd9-a37c-9afd9cfdbc8e", - "start": { - "$date": "2022-03-02T05:46:05.000Z" - }, - "end": { - "$date": "2022-03-02T07:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e7aea01-aff6-4f4b-87c9-18a288e8d88b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-02T06:06:07.000Z" - }, - "end": { - "$date": "2022-03-02T06:32:33.000Z" - }, - "events": [ - { - "uuid": "644bb153-f2b5-412a-a032-ef818faee489", - "start": { - "$date": "2022-03-02T06:06:07.000Z" - }, - "end": { - "$date": "2022-03-02T06:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cf8261d-00d1-461b-b745-1d011e63d930", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-02T06:35:32.000Z" - }, - "end": { - "$date": "2022-03-02T06:53:24.000Z" - }, - "events": [ - { - "uuid": "dc32dd51-6534-4056-bb58-df7c5e8d9727", - "start": { - "$date": "2022-03-02T06:35:32.000Z" - }, - "end": { - "$date": "2022-03-02T06:53:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7b731a27-1df9-4735-8dc7-7f16f5bf0f5f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-02T06:34:22.000Z" - }, - "end": { - "$date": "2022-03-02T07:27:33.000Z" - }, - "events": [ - { - "uuid": "bac43533-cd58-47ad-af00-4e44d72267bd", - "start": { - "$date": "2022-03-02T06:34:22.000Z" - }, - "end": { - "$date": "2022-03-02T07:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f08381e0-1d96-420f-85ea-57f8166be4a8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-02T06:55:33.000Z" - }, - "end": { - "$date": "2022-03-02T07:19:22.000Z" - }, - "events": [ - { - "uuid": "9c674fee-e287-4c1c-be73-d75e20a2be92", - "start": { - "$date": "2022-03-02T06:55:33.000Z" - }, - "end": { - "$date": "2022-03-02T07:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "786c7439-bf29-45d0-8c9b-fbb7274c2153", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-02T07:03:34.000Z" - }, - "end": { - "$date": "2022-03-02T07:37:36.000Z" - }, - "events": [ - { - "uuid": "cd6dc380-43ee-4a06-95b7-82194ccfe8d1", - "start": { - "$date": "2022-03-02T07:03:34.000Z" - }, - "end": { - "$date": "2022-03-02T07:37:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7b0da505-e362-4267-bc93-5780c1094221", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-02T07:21:14.000Z" - }, - "end": { - "$date": "2022-03-02T07:39:35.000Z" - }, - "events": [ - { - "uuid": "abe27b63-0bb2-472e-ad35-49990b3ebd3c", - "start": { - "$date": "2022-03-02T07:21:14.000Z" - }, - "end": { - "$date": "2022-03-02T07:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e40bb298-14da-4d30-9db1-8e3ffeb247c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-02T15:29:09.000Z" - }, - "end": { - "$date": "2022-03-02T16:09:10.000Z" - }, - "events": [ - { - "uuid": "e3236534-1afc-4ec7-b474-ea70726d35d3", - "start": { - "$date": "2022-03-02T15:29:09.000Z" - }, - "end": { - "$date": "2022-03-02T16:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dc43fdc6-4a78-469f-a718-fa1dd75c9f7e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-02T17:23:20.000Z" - }, - "end": { - "$date": "2022-03-02T18:45:41.000Z" - }, - "events": [ - { - "uuid": "73d4d433-bc45-4eed-902f-95157b30557c", - "start": { - "$date": "2022-03-02T17:23:20.000Z" - }, - "end": { - "$date": "2022-03-02T18:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "91172013-4daa-4c09-afe7-688682085656", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-02T17:59:00.000Z" - }, - "end": { - "$date": "2022-03-02T18:15:15.000Z" - }, - "events": [ - { - "uuid": "ee15f2f0-55eb-4f74-9f1e-9ca4c918181d", - "start": { - "$date": "2022-03-02T17:59:00.000Z" - }, - "end": { - "$date": "2022-03-02T18:15:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f0357cc6-8376-4a9d-8b6d-1f54a12c6550", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-02T18:53:48.000Z" - }, - "end": { - "$date": "2022-03-02T19:11:28.000Z" - }, - "events": [ - { - "uuid": "c6741a11-bd8d-4df1-b318-1cf3539b567e", - "start": { - "$date": "2022-03-02T18:53:48.000Z" - }, - "end": { - "$date": "2022-03-02T19:11:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "c348b5d5-edec-48ea-a138-4a9e38a24ccf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-02T22:52:33.000Z" - }, - "end": { - "$date": "2022-03-03T00:11:40.000Z" - }, - "events": [ - { - "uuid": "43975d84-af1a-416a-a008-ed46a358b09a", - "start": { - "$date": "2022-03-02T22:52:33.000Z" - }, - "end": { - "$date": "2022-03-03T00:11:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "cc45f158-59f1-41bc-84aa-ab14aa82e8bf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-02T22:53:21.000Z" - }, - "end": { - "$date": "2022-03-02T22:57:01.000Z" - }, - "events": [ - { - "uuid": "6334c33d-8e74-46b4-944a-85e66c26fd0c", - "start": { - "$date": "2022-03-02T22:53:21.000Z" - }, - "end": { - "$date": "2022-03-02T22:57:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "0b11a3b5-2634-468b-9c73-c456139e809a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-02T23:09:22.000Z" - }, - "end": { - "$date": "2022-03-03T00:43:44.000Z" - }, - "events": [ - { - "uuid": "a10d0bf0-84ce-4d2a-af82-4a20ae78c675", - "start": { - "$date": "2022-03-02T23:09:22.000Z" - }, - "end": { - "$date": "2022-03-03T00:43:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2c3dadaa-5847-4c75-9e47-bc501ba40504", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-02T23:14:45.000Z" - }, - "end": { - "$date": "2022-03-02T23:19:03.000Z" - }, - "events": [ - { - "uuid": "54ccb344-b4fd-4b99-8b5a-d56ca75f26f3", - "start": { - "$date": "2022-03-02T23:14:45.000Z" - }, - "end": { - "$date": "2022-03-02T23:19:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8f5d11f-3006-4416-98d1-58ac2cee9195", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-02T23:25:42.000Z" - }, - "end": { - "$date": "2022-03-03T00:07:03.000Z" - }, - "events": [ - { - "uuid": "b3a497b1-a8ea-457d-9353-eaafb94e18e3", - "start": { - "$date": "2022-03-02T23:25:42.000Z" - }, - "end": { - "$date": "2022-03-03T00:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "beeb5b33-6d17-4079-90a6-14ee07ec1be5", - "uuid": "32938320-d001-4e6f-97ab-26e89ccc2ac3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T00:10:13.000Z" - }, - "end": { - "$date": "2022-03-03T00:15:33.000Z" - }, - "events": [ - { - "uuid": "05e12e55-5538-4354-8ad2-d10a49daa6cf", - "start": { - "$date": "2022-03-03T00:10:13.000Z" - }, - "end": { - "$date": "2022-03-03T00:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "46a489e6-abfb-4709-8f32-7db704e1816f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-03T00:12:11.000Z" - }, - "end": { - "$date": "2022-03-03T01:51:41.000Z" - }, - "events": [ - { - "uuid": "979a1cbb-6dd9-4475-9d86-8ce55f4dd333", - "start": { - "$date": "2022-03-03T00:12:11.000Z" - }, - "end": { - "$date": "2022-03-03T01:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d86c0aa7-3e25-4304-9ef7-724f718855be", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-03T00:12:43.000Z" - }, - "end": { - "$date": "2022-03-03T02:21:54.000Z" - }, - "events": [ - { - "uuid": "e3aeeead-7880-4a6c-823d-9575cf10bf72", - "start": { - "$date": "2022-03-03T00:12:43.000Z" - }, - "end": { - "$date": "2022-03-03T02:21:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8b3d2dd0-36ae-4176-be89-b45c1a59a3cc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T00:15:49.000Z" - }, - "end": { - "$date": "2022-03-03T00:16:58.000Z" - }, - "events": [ - { - "uuid": "9eaf383b-83f9-474a-a651-4e6fef916118", - "start": { - "$date": "2022-03-03T00:15:49.000Z" - }, - "end": { - "$date": "2022-03-03T00:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "48b1893e-210c-4c05-8927-87f7ed39e12b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T00:17:14.000Z" - }, - "end": { - "$date": "2022-03-03T00:40:04.000Z" - }, - "events": [ - { - "uuid": "412f9b4d-dce4-4224-a8ed-b980d9b59757", - "start": { - "$date": "2022-03-03T00:17:14.000Z" - }, - "end": { - "$date": "2022-03-03T00:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "bae53dbf-8c57-4540-9912-c04661ccef6f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-03T01:52:16.000Z" - }, - "end": { - "$date": "2022-03-03T03:07:02.000Z" - }, - "events": [ - { - "uuid": "a6c0b4cf-ec7b-42a9-98f4-d46a185a11d3", - "start": { - "$date": "2022-03-03T01:52:16.000Z" - }, - "end": { - "$date": "2022-03-03T03:07:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f744c055-b75f-4b6e-b3ce-e51c1a1ca7f8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-03T02:22:00.000Z" - }, - "end": { - "$date": "2022-03-03T02:24:25.000Z" - }, - "events": [ - { - "uuid": "83ac95dd-d324-4838-8e7c-afcf06e7171d", - "start": { - "$date": "2022-03-03T02:22:00.000Z" - }, - "end": { - "$date": "2022-03-03T02:24:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "87b822db-b741-45ce-b1e9-99b73d94de7f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-03T02:47:24.000Z" - }, - "end": { - "$date": "2022-03-03T04:47:24.000Z" - }, - "events": [ - { - "uuid": "2956c417-7bf7-4b00-b13e-3480a244371c", - "start": { - "$date": "2022-03-03T02:47:24.000Z" - }, - "end": { - "$date": "2022-03-03T04:47:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c63b7a96-2eea-4db5-ad47-6ac4b6dafe35", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-03T03:07:32.000Z" - }, - "end": { - "$date": "2022-03-03T03:46:58.000Z" - }, - "events": [ - { - "uuid": "0b4fd703-da0a-4370-b7af-5f19a56694c0", - "start": { - "$date": "2022-03-03T03:07:32.000Z" - }, - "end": { - "$date": "2022-03-03T03:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c19a005-b093-44a5-a2a3-98f87c52dea6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T03:09:39.000Z" - }, - "end": { - "$date": "2022-03-03T03:21:38.000Z" - }, - "events": [ - { - "uuid": "25cdc58f-1a0c-454d-9173-090d5780844a", - "start": { - "$date": "2022-03-03T03:09:39.000Z" - }, - "end": { - "$date": "2022-03-03T03:21:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5c8bee5d-ceb0-4c1c-8886-5c50cd3bb0c4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-03T03:13:58.000Z" - }, - "end": { - "$date": "2022-03-03T04:09:23.000Z" - }, - "events": [ - { - "uuid": "321990dc-35aa-46a0-bf01-be4b44e4295a", - "start": { - "$date": "2022-03-03T03:13:58.000Z" - }, - "end": { - "$date": "2022-03-03T03:42:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3d585882-89ab-4375-837a-21298431958f", - "start": { - "$date": "2022-03-03T03:42:58.000Z" - }, - "end": { - "$date": "2022-03-03T03:52:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "adfaa1fe-849d-4724-8eb8-01b9cdabd469", - "start": { - "$date": "2022-03-03T03:52:58.000Z" - }, - "end": { - "$date": "2022-03-03T03:54:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b4ef3089-914c-4495-a6ee-049524af740d", - "start": { - "$date": "2022-03-03T03:54:58.000Z" - }, - "end": { - "$date": "2022-03-03T04:05:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd130c59-ff4f-42bf-8836-8ee09525f29a", - "start": { - "$date": "2022-03-03T04:05:58.000Z" - }, - "end": { - "$date": "2022-03-03T04:09:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f97aa035-d091-4df7-93ff-140ceeb469a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-03T03:24:42.000Z" - }, - "end": { - "$date": "2022-03-03T03:45:28.000Z" - }, - "events": [ - { - "uuid": "4be1862c-e5bd-4597-9be5-6d8eea679e1f", - "start": { - "$date": "2022-03-03T03:24:42.000Z" - }, - "end": { - "$date": "2022-03-03T03:45:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0aa15dfc-0166-47ce-814e-575dae861012", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T03:33:30.000Z" - }, - "end": { - "$date": "2022-03-03T03:56:01.000Z" - }, - "events": [ - { - "uuid": "d231be84-9ec4-4f7d-bd3b-99eba7fd9bf9", - "start": { - "$date": "2022-03-03T03:33:30.000Z" - }, - "end": { - "$date": "2022-03-03T03:56:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fc17b71-8ed0-474d-a95c-94e276ed4398", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-03T05:22:53.000Z" - }, - "end": { - "$date": "2022-03-03T05:24:58.000Z" - }, - "events": [ - { - "uuid": "def29e48-d263-4fb9-b7a3-7bdae3320dab", - "start": { - "$date": "2022-03-03T05:22:53.000Z" - }, - "end": { - "$date": "2022-03-03T05:24:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "25fc93dd-58f8-4e15-b35f-2008f223fcd8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T04:11:44.000Z" - }, - "end": { - "$date": "2022-03-03T04:32:19.000Z" - }, - "events": [ - { - "uuid": "dddcf02b-2948-4dbd-b598-4be57fea432c", - "start": { - "$date": "2022-03-03T04:11:44.000Z" - }, - "end": { - "$date": "2022-03-03T04:32:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c0eb793d-0a5c-475f-b243-22deda06c1ef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-03T04:07:56.000Z" - }, - "end": { - "$date": "2022-03-03T04:59:28.000Z" - }, - "events": [ - { - "uuid": "72871cb7-5808-46b7-bc21-b968947e72af", - "start": { - "$date": "2022-03-03T04:07:56.000Z" - }, - "end": { - "$date": "2022-03-03T04:59:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c7a12068-5011-40a8-bbd0-5f2fb67b1937", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-03T02:27:01.000Z" - }, - "end": { - "$date": "2022-03-03T06:42:46.000Z" - }, - "events": [ - { - "uuid": "85673056-fc56-4e2d-a716-660a24135104", - "start": { - "$date": "2022-03-03T02:27:01.000Z" - }, - "end": { - "$date": "2022-03-03T06:42:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "55b2030d-2659-485a-98b3-73a662e02027", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-03T04:19:24.000Z" - }, - "end": { - "$date": "2022-03-03T04:55:53.000Z" - }, - "events": [ - { - "uuid": "8bc50e34-6b5a-4f61-9353-b664bd6eaa41", - "start": { - "$date": "2022-03-03T04:19:24.000Z" - }, - "end": { - "$date": "2022-03-03T04:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99929ae6-3b3b-4e8a-99e7-f425850d6e89", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T04:25:05.000Z" - }, - "end": { - "$date": "2022-03-03T04:49:20.000Z" - }, - "events": [ - { - "uuid": "86d9b056-126b-4d92-b79e-b3dcf89f430b", - "start": { - "$date": "2022-03-03T04:25:05.000Z" - }, - "end": { - "$date": "2022-03-03T04:49:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c6a477ac-ec2c-4992-8e40-5ab9d33d4624", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-03T04:28:58.000Z" - }, - "end": { - "$date": "2022-03-03T05:02:10.000Z" - }, - "events": [ - { - "uuid": "c0ed4297-98b6-412d-9419-4e18bd1be539", - "start": { - "$date": "2022-03-03T04:28:58.000Z" - }, - "end": { - "$date": "2022-03-03T05:02:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dd024ea6-68d3-4dbd-8368-40d394132863", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-03T04:29:56.000Z" - }, - "end": { - "$date": "2022-03-03T05:52:12.000Z" - }, - "events": [ - { - "uuid": "b06d660f-046a-4a75-be3c-cc080cfb7cda", - "start": { - "$date": "2022-03-03T04:29:56.000Z" - }, - "end": { - "$date": "2022-03-03T05:52:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6684834e-41a6-4d24-ab9e-edbacda77e5d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T04:32:35.000Z" - }, - "end": { - "$date": "2022-03-03T05:25:31.000Z" - }, - "events": [ - { - "uuid": "c7184a12-cf63-4678-b9b7-72ceb9cd645b", - "start": { - "$date": "2022-03-03T04:32:35.000Z" - }, - "end": { - "$date": "2022-03-03T05:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d39d1cb-b8a6-4ea1-9ebf-16b4f850e3f4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T04:51:35.000Z" - }, - "end": { - "$date": "2022-03-03T05:13:26.000Z" - }, - "events": [ - { - "uuid": "700a8158-e7ae-4970-8a5f-4e2dc9f7a3ec", - "start": { - "$date": "2022-03-03T04:51:35.000Z" - }, - "end": { - "$date": "2022-03-03T05:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a64c5334-9bf1-4e06-b416-e031f3eb5027", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T05:17:36.000Z" - }, - "end": { - "$date": "2022-03-03T05:33:21.000Z" - }, - "events": [ - { - "uuid": "ae564f1e-9db3-4b80-902a-daa58d4d11af", - "start": { - "$date": "2022-03-03T05:17:36.000Z" - }, - "end": { - "$date": "2022-03-03T05:33:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f466312-2831-4d2e-b2b6-c3f3f9b2af9f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T05:35:16.000Z" - }, - "end": { - "$date": "2022-03-03T06:04:02.000Z" - }, - "events": [ - { - "uuid": "988e621f-c2a8-4f55-8b83-a7303b2d278c", - "start": { - "$date": "2022-03-03T05:35:16.000Z" - }, - "end": { - "$date": "2022-03-03T06:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be98ffd9-84e4-4cc7-864b-f78a18a31495", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T06:06:17.000Z" - }, - "end": { - "$date": "2022-03-03T06:27:52.000Z" - }, - "events": [ - { - "uuid": "55bddf70-0c2b-4e8e-adb6-248a0b889669", - "start": { - "$date": "2022-03-03T06:06:17.000Z" - }, - "end": { - "$date": "2022-03-03T06:27:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a8fb754-8b0f-4d93-9f48-b4f2eea46ffb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-03T06:29:47.000Z" - }, - "end": { - "$date": "2022-03-03T06:51:08.000Z" - }, - "events": [ - { - "uuid": "f3b6c2b0-c7c3-43ae-83dc-8d0ba247d6fc", - "start": { - "$date": "2022-03-03T06:29:47.000Z" - }, - "end": { - "$date": "2022-03-03T06:51:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df0528ed-5516-4473-9c72-ed25cf13e80d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-03T15:24:41.000Z" - }, - "end": { - "$date": "2022-03-03T16:32:18.000Z" - }, - "events": [ - { - "uuid": "76ca7ba0-4dbb-4f2b-9a3e-cc3d1ef82057", - "start": { - "$date": "2022-03-03T15:24:41.000Z" - }, - "end": { - "$date": "2022-03-03T16:32:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ece59c49-84de-4a96-9160-a4fc8016ddb3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T17:29:32.000Z" - }, - "end": { - "$date": "2022-03-03T17:54:48.000Z" - }, - "events": [ - { - "uuid": "16328de0-11fe-4dc5-ae2e-bd3a08983661", - "start": { - "$date": "2022-03-03T17:29:32.000Z" - }, - "end": { - "$date": "2022-03-03T17:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97312fe0-b4a9-40fb-898c-7d38e7e6d00e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-03T17:44:14.000Z" - }, - "end": { - "$date": "2022-03-03T18:06:15.000Z" - }, - "events": [ - { - "uuid": "a7535f9a-a117-4e30-99ce-5ad24b2c01c9", - "start": { - "$date": "2022-03-03T17:44:14.000Z" - }, - "end": { - "$date": "2022-03-03T18:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b7e7c439-8b7c-4b43-a99a-df3743a6d9fe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T18:19:57.000Z" - }, - "end": { - "$date": "2022-03-03T18:28:37.000Z" - }, - "events": [ - { - "uuid": "31d1f35a-5bd6-4fdf-8a9f-5bbda8b37afc", - "start": { - "$date": "2022-03-03T18:19:57.000Z" - }, - "end": { - "$date": "2022-03-03T18:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fc5c38fa-a9f8-4231-8996-132ee584dcac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-03T18:47:57.000Z" - }, - "end": { - "$date": "2022-03-03T18:49:41.000Z" - }, - "events": [ - { - "uuid": "5aa79858-1405-4a37-82d1-dafb95c922eb", - "start": { - "$date": "2022-03-03T18:47:57.000Z" - }, - "end": { - "$date": "2022-03-03T18:49:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8fecfbc0-d152-46a4-aeaa-10dc3a3a4248", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-03T18:59:02.000Z" - }, - "end": { - "$date": "2022-03-03T20:35:04.000Z" - }, - "events": [ - { - "uuid": "de7eef83-d471-4629-aae5-2da889bd690c", - "start": { - "$date": "2022-03-03T18:59:02.000Z" - }, - "end": { - "$date": "2022-03-03T20:35:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e99e2611-1afa-4aac-8975-29c1600e65a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-03T19:25:58.000Z" - }, - "end": { - "$date": "2022-03-03T20:06:29.000Z" - }, - "events": [ - { - "uuid": "3dd6a383-41a2-4b8e-ade4-7c82efe9a00a", - "start": { - "$date": "2022-03-03T19:25:58.000Z" - }, - "end": { - "$date": "2022-03-03T20:06:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e1465fc5-7037-4aec-9d65-f33a88e404a6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T19:29:23.000Z" - }, - "end": { - "$date": "2022-03-03T19:46:59.000Z" - }, - "events": [ - { - "uuid": "ed7bb21f-4092-42e7-a43a-73475eb69c31", - "start": { - "$date": "2022-03-03T19:29:23.000Z" - }, - "end": { - "$date": "2022-03-03T19:46:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "b5bdf74a-b55f-4a0b-b56b-dfa92381573a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-03T21:58:44.000Z" - }, - "end": { - "$date": "2022-03-03T22:06:39.000Z" - }, - "events": [ - { - "uuid": "adaaf3a7-e72a-4625-93d7-c1a0e453a8fa", - "start": { - "$date": "2022-03-03T21:58:44.000Z" - }, - "end": { - "$date": "2022-03-03T22:06:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "887096a5-be42-4ddd-b425-e55da7f355d0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-03T22:08:30.000Z" - }, - "end": { - "$date": "2022-03-03T23:27:53.000Z" - }, - "events": [ - { - "uuid": "00e867d8-1a1b-4279-a211-28b9708a680b", - "start": { - "$date": "2022-03-03T22:08:30.000Z" - }, - "end": { - "$date": "2022-03-03T23:26:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0efd71d3-de66-4cc6-9ecc-34d7d08fbc1d", - "start": { - "$date": "2022-03-03T23:26:30.000Z" - }, - "end": { - "$date": "2022-03-03T23:27:53.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d004a2af-6a85-4d63-823d-58a6453d7069", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-03T22:38:11.000Z" - }, - "end": { - "$date": "2022-03-03T23:22:20.000Z" - }, - "events": [ - { - "uuid": "e465fb0e-43ec-4844-a254-0028804d3bae", - "start": { - "$date": "2022-03-03T22:38:11.000Z" - }, - "end": { - "$date": "2022-03-03T23:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ace6bb08-89e1-4578-95a3-e6a0aeb2d9dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-03T22:57:35.000Z" - }, - "end": { - "$date": "2022-03-04T00:38:25.000Z" - }, - "events": [ - { - "uuid": "87391323-3b8d-4ca6-84ce-0973661d59dd", - "start": { - "$date": "2022-03-03T22:57:35.000Z" - }, - "end": { - "$date": "2022-03-04T00:13:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de112996-e1b8-4cc5-8994-a3e06b75d6cb", - "start": { - "$date": "2022-03-04T00:13:35.000Z" - }, - "end": { - "$date": "2022-03-04T00:24:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "58bee9d2-f5b1-49dc-b1fe-9fa673ab41ea", - "start": { - "$date": "2022-03-04T00:24:35.000Z" - }, - "end": { - "$date": "2022-03-04T00:38:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "08c1b692-3712-4f7e-86b2-8eba62dcdcbc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-03T23:32:39.000Z" - }, - "end": { - "$date": "2022-03-04T00:13:05.000Z" - }, - "events": [ - { - "uuid": "e50a0949-80c3-400e-81ad-c9eeb2490479", - "start": { - "$date": "2022-03-03T23:32:39.000Z" - }, - "end": { - "$date": "2022-03-04T00:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "c1515c37-05cb-4193-b92e-031070f2ea42", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-04T00:25:52.000Z" - }, - "end": { - "$date": "2022-03-04T03:05:45.000Z" - }, - "events": [ - { - "uuid": "5b9fd8dd-64e6-4e3b-9e81-c6807d3d5dfd", - "start": { - "$date": "2022-03-04T00:25:52.000Z" - }, - "end": { - "$date": "2022-03-04T03:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1bdba9f4-da50-451f-a4a5-04b2a4e8e32e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-04T02:20:17.000Z" - }, - "end": { - "$date": "2022-03-04T08:29:01.000Z" - }, - "events": [ - { - "uuid": "d4da56d4-1fb6-4b61-a06a-dc6e10cc31db", - "start": { - "$date": "2022-03-04T02:20:17.000Z" - }, - "end": { - "$date": "2022-03-04T08:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a58eabcc-01a5-4363-b8b1-feeb8dacc3ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-04T02:44:45.000Z" - }, - "end": { - "$date": "2022-03-04T04:33:18.000Z" - }, - "events": [ - { - "uuid": "15d61cfd-ed37-4347-afbe-b1da2c95583f", - "start": { - "$date": "2022-03-04T02:44:45.000Z" - }, - "end": { - "$date": "2022-03-04T04:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "a669e073-1346-4ee7-ad3b-97a7af639463", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-04T02:49:31.000Z" - }, - "end": { - "$date": "2022-03-04T05:21:44.000Z" - }, - "events": [ - { - "uuid": "85d17761-c8ce-4ea8-8f27-8974a553e3dd", - "start": { - "$date": "2022-03-04T02:49:31.000Z" - }, - "end": { - "$date": "2022-03-04T05:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "28656c7f-37b2-4639-abed-f7ea6303b921", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-04T03:06:06.000Z" - }, - "end": { - "$date": "2022-03-04T03:10:30.000Z" - }, - "events": [ - { - "uuid": "944bf141-c806-4eaa-b084-d2aa4a363367", - "start": { - "$date": "2022-03-04T03:06:06.000Z" - }, - "end": { - "$date": "2022-03-04T03:10:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "87856a1c-24fe-47a5-9fc7-401cda8db1cf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-04T03:10:56.000Z" - }, - "end": { - "$date": "2022-03-04T03:59:41.000Z" - }, - "events": [ - { - "uuid": "0f87127b-7872-4f9e-a013-af5016e0bc82", - "start": { - "$date": "2022-03-04T03:10:56.000Z" - }, - "end": { - "$date": "2022-03-04T03:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "af5b369d-515c-40fa-ac7e-e8418882fd58", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-04T03:53:29.000Z" - }, - "end": { - "$date": "2022-03-04T04:29:35.000Z" - }, - "events": [ - { - "uuid": "1ac5d62d-bcb2-403c-8cea-35d70c889fb5", - "start": { - "$date": "2022-03-04T03:53:29.000Z" - }, - "end": { - "$date": "2022-03-04T04:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "604664f4-3483-451e-acd8-96fc5bca785b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-04T05:01:25.000Z" - }, - "end": { - "$date": "2022-03-04T06:32:17.000Z" - }, - "events": [ - { - "uuid": "e5b353d0-127f-4b28-b285-b5586382c88b", - "start": { - "$date": "2022-03-04T05:01:25.000Z" - }, - "end": { - "$date": "2022-03-04T06:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "a71012a1-6df3-4666-aff1-18c79a759cd3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-04T05:18:29.000Z" - }, - "end": { - "$date": "2022-03-04T05:58:19.000Z" - }, - "events": [ - { - "uuid": "8438ed15-2458-4420-a862-d5a77f99eec3", - "start": { - "$date": "2022-03-04T05:18:29.000Z" - }, - "end": { - "$date": "2022-03-04T05:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", - "uuid": "a69cc366-53ca-4288-bb3a-b8942d81c13a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-04T05:19:22.000Z" - }, - "end": { - "$date": "2022-03-04T05:30:16.000Z" - }, - "events": [ - { - "uuid": "0da62115-e5be-4d02-94ab-bc585c4342b3", - "start": { - "$date": "2022-03-04T05:19:22.000Z" - }, - "end": { - "$date": "2022-03-04T05:30:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "44b46f32-fb40-4f0c-981b-c6b65011e4cb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-04T05:36:45.000Z" - }, - "end": { - "$date": "2022-03-04T06:37:42.000Z" - }, - "events": [ - { - "uuid": "dad838ab-34cb-4595-a4f5-79197da8bb9b", - "start": { - "$date": "2022-03-04T05:36:45.000Z" - }, - "end": { - "$date": "2022-03-04T06:37:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "6a9c591f-89c9-4002-888e-4f4a15649276", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-04T07:22:24.000Z" - }, - "end": { - "$date": "2022-03-04T07:52:16.000Z" - }, - "events": [ - { - "uuid": "8ec9164d-5af4-4a50-a797-04faf827f124", - "start": { - "$date": "2022-03-04T07:22:24.000Z" - }, - "end": { - "$date": "2022-03-04T07:52:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "5755f210-3166-4a94-b3fe-0ba29d6f4aa7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-04T07:26:33.000Z" - }, - "end": { - "$date": "2022-03-04T09:33:21.000Z" - }, - "events": [ - { - "uuid": "67a83c33-aae5-4ac5-82ed-a905d54d404b", - "start": { - "$date": "2022-03-04T07:26:33.000Z" - }, - "end": { - "$date": "2022-03-04T09:33:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "adcd9f47-0d4b-4245-9029-7a54bd486716", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-04T16:25:29.000Z" - }, - "end": { - "$date": "2022-03-04T17:05:26.000Z" - }, - "events": [ - { - "uuid": "0724430c-cfb3-44b9-b512-49b5ea95fa46", - "start": { - "$date": "2022-03-04T16:25:29.000Z" - }, - "end": { - "$date": "2022-03-04T17:05:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5283e538-d323-41df-8f18-f36ccfd61ca1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-04T16:51:26.000Z" - }, - "end": { - "$date": "2022-03-04T17:14:57.000Z" - }, - "events": [ - { - "uuid": "1457ab8c-83c1-49ef-9d0f-3feb66ca3864", - "start": { - "$date": "2022-03-04T16:51:26.000Z" - }, - "end": { - "$date": "2022-03-04T17:14:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ee2d0a6e-3c90-44d8-a279-92c38cad9f6e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-04T17:04:56.000Z" - }, - "end": { - "$date": "2022-03-04T18:11:22.000Z" - }, - "events": [ - { - "uuid": "3781e51b-0736-4b4b-90d7-8712e7f2aa50", - "start": { - "$date": "2022-03-04T17:04:56.000Z" - }, - "end": { - "$date": "2022-03-04T18:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "da1aa0e8-1630-4695-b3e7-ac678b825c0d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-04T17:17:23.000Z" - }, - "end": { - "$date": "2022-03-04T23:58:51.000Z" - }, - "events": [ - { - "uuid": "f7cd9a76-ff13-4187-b9f7-18221b8aa3f3", - "start": { - "$date": "2022-03-04T17:17:23.000Z" - }, - "end": { - "$date": "2022-03-04T23:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5361e2fa-dcb5-4809-b813-6296cf602c1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-04T17:29:28.000Z" - }, - "end": { - "$date": "2022-03-04T17:52:19.000Z" - }, - "events": [ - { - "uuid": "729e20a0-f0d1-49fd-9c33-3624dd23cf97", - "start": { - "$date": "2022-03-04T17:29:28.000Z" - }, - "end": { - "$date": "2022-03-04T17:52:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0d7715de-875f-46aa-a19f-a83eefaac337", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-04T18:02:30.000Z" - }, - "end": { - "$date": "2022-03-04T18:28:45.000Z" - }, - "events": [ - { - "uuid": "c6ef2e84-f915-47df-b0c1-9d8bff399c09", - "start": { - "$date": "2022-03-04T18:02:30.000Z" - }, - "end": { - "$date": "2022-03-04T18:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "59b2e953-927c-4a52-a555-2cd34c42493a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-04T19:17:09.000Z" - }, - "end": { - "$date": "2022-03-04T19:47:04.000Z" - }, - "events": [ - { - "uuid": "7c2acb09-cfad-4a67-98de-33755655f2d4", - "start": { - "$date": "2022-03-04T19:17:09.000Z" - }, - "end": { - "$date": "2022-03-04T19:47:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8f2819d5-efbe-4261-b1af-96021e865a05", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-04T19:36:22.000Z" - }, - "end": { - "$date": "2022-03-05T00:54:44.000Z" - }, - "events": [ - { - "uuid": "c2a45725-670b-4975-9824-e11a447dc752", - "start": { - "$date": "2022-03-04T19:36:22.000Z" - }, - "end": { - "$date": "2022-03-05T00:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2d98c0cf-87b2-4ad7-adc5-5522fad1f7e2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-04T22:43:26.000Z" - }, - "end": { - "$date": "2022-03-04T22:47:16.000Z" - }, - "events": [ - { - "uuid": "f56bfba0-4052-4045-aaf7-0dddc4e1f0d2", - "start": { - "$date": "2022-03-04T22:43:26.000Z" - }, - "end": { - "$date": "2022-03-04T22:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "277b6ef3-9f0e-4f7c-8f85-d791a434cd98", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-04T22:52:52.000Z" - }, - "end": { - "$date": "2022-03-04T23:12:27.000Z" - }, - "events": [ - { - "uuid": "3e7097f5-5cd5-4b7e-978a-4e32b4ebb2ad", - "start": { - "$date": "2022-03-04T22:52:52.000Z" - }, - "end": { - "$date": "2022-03-04T23:12:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "092cb89e-5878-4468-a63f-7be3dde65343", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-04T23:03:41.000Z" - }, - "end": { - "$date": "2022-03-05T00:36:10.000Z" - }, - "events": [ - { - "uuid": "2c97f00f-d9f1-4abd-aec3-b88bb526e381", - "start": { - "$date": "2022-03-04T23:03:41.000Z" - }, - "end": { - "$date": "2022-03-05T00:36:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "908ed23a-ce21-47ea-b668-8bcfdf6123a7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T00:39:55.000Z" - }, - "end": { - "$date": "2022-03-05T04:13:40.000Z" - }, - "events": [ - { - "uuid": "f2312fcf-3c6a-43dc-ab64-6ab54d977c15", - "start": { - "$date": "2022-03-05T00:39:55.000Z" - }, - "end": { - "$date": "2022-03-05T01:00:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1f3961d4-804e-4bc2-b047-12acbec4b128", - "start": { - "$date": "2022-03-05T01:00:55.000Z" - }, - "end": { - "$date": "2022-03-05T01:05:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6026da62-0a63-47f3-8e27-7855b5784d65", - "start": { - "$date": "2022-03-05T01:05:55.000Z" - }, - "end": { - "$date": "2022-03-05T01:15:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "07b9edb8-c0e0-4309-bb80-ef8e178d9c63", - "start": { - "$date": "2022-03-05T01:15:55.000Z" - }, - "end": { - "$date": "2022-03-05T01:17:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be13c3a2-d090-44f3-99dc-a760506ee40c", - "start": { - "$date": "2022-03-05T01:17:55.000Z" - }, - "end": { - "$date": "2022-03-05T04:13:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4bd59e0c-8ffc-43f3-849f-3c19ecb4294e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-04T23:57:08.000Z" - }, - "end": { - "$date": "2022-03-05T08:15:48.000Z" - }, - "events": [ - { - "uuid": "387e3938-e24f-4de6-811d-ab778af29b07", - "start": { - "$date": "2022-03-04T23:57:08.000Z" - }, - "end": { - "$date": "2022-03-05T03:15:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "334b260a-2e85-429c-ac07-eedeab1f34a8", - "start": { - "$date": "2022-03-05T03:15:08.000Z" - }, - "end": { - "$date": "2022-03-05T03:25:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a490e839-1f66-475c-b35d-d8d9637386a8", - "start": { - "$date": "2022-03-05T03:25:08.000Z" - }, - "end": { - "$date": "2022-03-05T03:44:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04ee59e7-7fe9-4b46-a300-c8f0a30bfa03", - "start": { - "$date": "2022-03-05T03:44:08.000Z" - }, - "end": { - "$date": "2022-03-05T03:49:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5b5ba21-dcea-482c-8de2-2ce8febc61bb", - "start": { - "$date": "2022-03-05T03:49:08.000Z" - }, - "end": { - "$date": "2022-03-05T08:15:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "143cc34d-4e06-46cb-ab88-98f8fa0575d2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-05T01:36:01.000Z" - }, - "end": { - "$date": "2022-03-05T02:26:43.000Z" - }, - "events": [ - { - "uuid": "4286d249-e5f8-4324-b0e7-9ffc038785f8", - "start": { - "$date": "2022-03-05T01:36:01.000Z" - }, - "end": { - "$date": "2022-03-05T02:26:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "111345af-e312-426b-9d89-a1a17bcada4f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T02:46:28.000Z" - }, - "end": { - "$date": "2022-03-05T04:36:56.000Z" - }, - "events": [ - { - "uuid": "20fa0f46-dbad-4fdb-b03f-0094b9cf5235", - "start": { - "$date": "2022-03-05T02:46:28.000Z" - }, - "end": { - "$date": "2022-03-05T04:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "56e0d16b-3f23-49ad-8fd1-998c943e0e8c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-05T02:47:59.000Z" - }, - "end": { - "$date": "2022-03-05T05:11:00.000Z" - }, - "events": [ - { - "uuid": "0e005d6b-1e7e-44f5-b021-7d1e5dc4eb53", - "start": { - "$date": "2022-03-05T02:47:59.000Z" - }, - "end": { - "$date": "2022-03-05T05:11:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9a1bef1e-ebba-43ec-8cf8-848d7e64868f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T02:47:57.000Z" - }, - "end": { - "$date": "2022-03-05T04:11:06.000Z" - }, - "events": [ - { - "uuid": "06306c7f-ca3f-498f-a1b4-05ae71db5a59", - "start": { - "$date": "2022-03-05T02:47:57.000Z" - }, - "end": { - "$date": "2022-03-05T04:11:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a4522e1-d763-4f6b-bcc1-a06d65b2d3c6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T02:59:44.000Z" - }, - "end": { - "$date": "2022-03-05T03:12:48.000Z" - }, - "events": [ - { - "uuid": "ef63c813-907b-43a4-b4ed-e35509bc01b2", - "start": { - "$date": "2022-03-05T02:59:44.000Z" - }, - "end": { - "$date": "2022-03-05T03:12:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "b9095cae-a213-4dfb-8ea8-0c114d7bc649", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-05T03:07:12.000Z" - }, - "end": { - "$date": "2022-03-05T05:51:42.000Z" - }, - "events": [ - { - "uuid": "efadd609-e5cc-4fd1-9602-cd55b291ff11", - "start": { - "$date": "2022-03-05T03:07:12.000Z" - }, - "end": { - "$date": "2022-03-05T05:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb689ab9-7361-4d5b-9164-4df755b4b28c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T03:15:52.000Z" - }, - "end": { - "$date": "2022-03-05T03:30:25.000Z" - }, - "events": [ - { - "uuid": "83058d0a-dde1-4fb3-9f48-27ba03bc2cb2", - "start": { - "$date": "2022-03-05T03:15:52.000Z" - }, - "end": { - "$date": "2022-03-05T03:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f0e77bbb-8dfc-4dcd-83db-b61c1b361616", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-05T03:21:33.000Z" - }, - "end": { - "$date": "2022-03-05T09:55:22.000Z" - }, - "events": [ - { - "uuid": "f9f84b77-1749-4637-9ab3-4d989a41bf07", - "start": { - "$date": "2022-03-05T03:21:33.000Z" - }, - "end": { - "$date": "2022-03-05T09:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "59d55fd2-d30a-497e-af47-9ad5dc9d68dd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-05T03:22:40.000Z" - }, - "end": { - "$date": "2022-03-05T09:55:13.000Z" - }, - "events": [ - { - "uuid": "91c79271-3096-4af8-bd65-5ad0c342f11d", - "start": { - "$date": "2022-03-05T03:22:40.000Z" - }, - "end": { - "$date": "2022-03-05T09:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b5281157-a439-472d-a240-f95e531b9532", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-05T03:29:36.000Z" - }, - "end": { - "$date": "2022-03-05T07:13:08.000Z" - }, - "events": [ - { - "uuid": "aadbab89-8b6b-46c2-867b-968b0d42013c", - "start": { - "$date": "2022-03-05T03:29:36.000Z" - }, - "end": { - "$date": "2022-03-05T07:13:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4dd47289-de6b-4943-9f26-ed9a1fafdf44", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T03:30:35.000Z" - }, - "end": { - "$date": "2022-03-05T05:36:43.000Z" - }, - "events": [ - { - "uuid": "8617923f-799b-4ce4-a85b-1da8becfc194", - "start": { - "$date": "2022-03-05T03:30:35.000Z" - }, - "end": { - "$date": "2022-03-05T05:36:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "15c91c0b-d5d8-4e3a-b974-789bdb7d33c4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-05T03:51:01.000Z" - }, - "end": { - "$date": "2022-03-05T08:13:11.000Z" - }, - "events": [ - { - "uuid": "81044b86-6522-44aa-8a20-e4158f1c6608", - "start": { - "$date": "2022-03-05T03:51:01.000Z" - }, - "end": { - "$date": "2022-03-05T08:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9296ffe3-6223-4f5a-b71e-78b41b687282", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T04:11:16.000Z" - }, - "end": { - "$date": "2022-03-05T04:13:42.000Z" - }, - "events": [ - { - "uuid": "303527c8-bdf9-490f-be26-1543c9bf8883", - "start": { - "$date": "2022-03-05T04:11:16.000Z" - }, - "end": { - "$date": "2022-03-05T04:13:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "ddc22baf-c8d2-45ed-addb-3b8022ef0be0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T04:44:34.000Z" - }, - "end": { - "$date": "2022-03-05T06:00:53.000Z" - }, - "events": [ - { - "uuid": "7b575e59-0d6f-4790-934b-c18fc1e76863", - "start": { - "$date": "2022-03-05T04:44:34.000Z" - }, - "end": { - "$date": "2022-03-05T06:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "26a2cac5-fa87-451e-acc3-e00d554c93f7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T05:06:15.000Z" - }, - "end": { - "$date": "2022-03-05T05:09:35.000Z" - }, - "events": [ - { - "uuid": "bb1e200d-5146-461c-a0b8-dff21d479fbf", - "start": { - "$date": "2022-03-05T05:06:15.000Z" - }, - "end": { - "$date": "2022-03-05T05:09:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f4e4224e-32ae-40f3-8fe0-99d561880d80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-05T05:16:14.000Z" - }, - "end": { - "$date": "2022-03-05T10:01:35.000Z" - }, - "events": [ - { - "uuid": "15edc30e-c562-400b-a841-5ad0a89e1dbd", - "start": { - "$date": "2022-03-05T05:16:14.000Z" - }, - "end": { - "$date": "2022-03-05T10:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "18e2087a-d6db-4bfe-9496-c8c726a6dfb8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-05T05:38:23.000Z" - }, - "end": { - "$date": "2022-03-05T06:27:11.000Z" - }, - "events": [ - { - "uuid": "98bd1c8f-4eee-401d-a2a1-3861ede9157e", - "start": { - "$date": "2022-03-05T05:38:23.000Z" - }, - "end": { - "$date": "2022-03-05T06:27:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "a3284f5d-4a7c-4726-86c4-b75287d0431d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T05:56:53.000Z" - }, - "end": { - "$date": "2022-03-05T06:53:40.000Z" - }, - "events": [ - { - "uuid": "be56d100-7251-4703-9dba-387cfe428be7", - "start": { - "$date": "2022-03-05T05:56:53.000Z" - }, - "end": { - "$date": "2022-03-05T06:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "49746206-93c3-4598-8926-4591c6ed8167", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T06:01:48.000Z" - }, - "end": { - "$date": "2022-03-05T06:53:42.000Z" - }, - "events": [ - { - "uuid": "f5ed279b-beba-47a5-ada4-45138667f164", - "start": { - "$date": "2022-03-05T06:01:48.000Z" - }, - "end": { - "$date": "2022-03-05T06:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "8ff377af-7e7b-4c38-a5a3-5e5b4b8ce28a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T06:37:18.000Z" - }, - "end": { - "$date": "2022-03-05T07:49:27.000Z" - }, - "events": [ - { - "uuid": "24b8a434-5f26-425b-874f-283b960bfda5", - "start": { - "$date": "2022-03-05T06:37:18.000Z" - }, - "end": { - "$date": "2022-03-05T07:11:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f7bbfa12-bc23-4dbb-a024-fdfdcdcf33ea", - "start": { - "$date": "2022-03-05T07:11:18.000Z" - }, - "end": { - "$date": "2022-03-05T07:12:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2b1b15d4-3e8d-4b50-867d-c67ee96a2315", - "start": { - "$date": "2022-03-05T07:12:18.000Z" - }, - "end": { - "$date": "2022-03-05T07:49:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "5e5b2f5c-549a-40c1-8fe0-bc5249f27585", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T06:55:36.000Z" - }, - "end": { - "$date": "2022-03-05T07:46:57.000Z" - }, - "events": [ - { - "uuid": "b33e602b-b1d6-4b79-9797-6c190a7db766", - "start": { - "$date": "2022-03-05T06:55:36.000Z" - }, - "end": { - "$date": "2022-03-05T07:46:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a95f75a6-a078-4bd2-a71c-1b1f11fd6193", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T06:55:51.000Z" - }, - "end": { - "$date": "2022-03-05T07:36:41.000Z" - }, - "events": [ - { - "uuid": "9d7fa721-8158-46c9-afd0-b9e94dc40e9a", - "start": { - "$date": "2022-03-05T06:55:51.000Z" - }, - "end": { - "$date": "2022-03-05T07:36:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "305aee25-428e-4a3c-b68c-77cba38d6784", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-05T07:29:57.000Z" - }, - "end": { - "$date": "2022-03-05T07:49:33.000Z" - }, - "events": [ - { - "uuid": "6436c41e-0d65-498c-8f7a-4bac5013c2dc", - "start": { - "$date": "2022-03-05T07:29:57.000Z" - }, - "end": { - "$date": "2022-03-05T07:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66c85b74-f864-4a36-b5a1-2289aef6667b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-05T07:51:33.000Z" - }, - "end": { - "$date": "2022-03-05T08:12:30.000Z" - }, - "events": [ - { - "uuid": "4d0e898e-b1c3-4884-a874-32c280a8a136", - "start": { - "$date": "2022-03-05T07:51:33.000Z" - }, - "end": { - "$date": "2022-03-05T08:12:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "326b7d7e-8d69-4293-8487-7f9ea2a7fbc4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T07:49:57.000Z" - }, - "end": { - "$date": "2022-03-05T07:54:23.000Z" - }, - "events": [ - { - "uuid": "a7a23333-c4b7-4646-8a26-3df1ecf09331", - "start": { - "$date": "2022-03-05T07:49:57.000Z" - }, - "end": { - "$date": "2022-03-05T07:54:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "ec3f8fb9-dd15-4429-a56b-cd2e737a016d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T08:06:08.000Z" - }, - "end": { - "$date": "2022-03-05T08:43:09.000Z" - }, - "events": [ - { - "uuid": "9d69bccd-ce91-4069-af03-27c18088d7ab", - "start": { - "$date": "2022-03-05T08:06:08.000Z" - }, - "end": { - "$date": "2022-03-05T08:43:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "86bc56c2-be14-4639-ada4-a6bc25e4955b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-05T08:18:44.000Z" - }, - "end": { - "$date": "2022-03-05T08:39:35.000Z" - }, - "events": [ - { - "uuid": "2618d688-a223-4bba-bcdf-4663d6f72590", - "start": { - "$date": "2022-03-05T08:18:44.000Z" - }, - "end": { - "$date": "2022-03-05T08:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4cfce7d1-bfc4-4e50-b5bf-bcbb21b151cc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-05T08:41:49.000Z" - }, - "end": { - "$date": "2022-03-05T09:06:20.000Z" - }, - "events": [ - { - "uuid": "01e09a7f-e834-484e-845e-be9388a56aa8", - "start": { - "$date": "2022-03-05T08:41:49.000Z" - }, - "end": { - "$date": "2022-03-05T09:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9c0ae9f2-4e7d-48d8-951d-faaa3cdc35b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T08:43:29.000Z" - }, - "end": { - "$date": "2022-03-05T08:47:20.000Z" - }, - "events": [ - { - "uuid": "f0ea0ce1-0af5-452a-865c-c503853ede31", - "start": { - "$date": "2022-03-05T08:43:29.000Z" - }, - "end": { - "$date": "2022-03-05T08:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "e9713ceb-4ed8-4063-a3b2-3890ddd365a6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T15:30:42.000Z" - }, - "end": { - "$date": "2022-03-05T16:56:14.000Z" - }, - "events": [ - { - "uuid": "85d77f4a-e388-45dc-9786-f1ea6ad63fc1", - "start": { - "$date": "2022-03-05T15:30:42.000Z" - }, - "end": { - "$date": "2022-03-05T16:56:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "630c060f-13bb-4dfd-bc46-f87efb14902a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T16:20:02.000Z" - }, - "end": { - "$date": "2022-03-05T16:41:26.000Z" - }, - "events": [ - { - "uuid": "0d6167e9-b9f5-45f6-938c-83259317e81f", - "start": { - "$date": "2022-03-05T16:20:02.000Z" - }, - "end": { - "$date": "2022-03-05T16:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9edfdadc-028b-413f-8d16-10812eff2ee3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T16:43:33.000Z" - }, - "end": { - "$date": "2022-03-05T17:06:07.000Z" - }, - "events": [ - { - "uuid": "9dafb699-78bf-4e86-82ae-a1b07dd4cd29", - "start": { - "$date": "2022-03-05T16:43:33.000Z" - }, - "end": { - "$date": "2022-03-05T17:06:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "66b23ee6-5024-465b-ac40-3a475ca4b7ec", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T16:56:19.000Z" - }, - "end": { - "$date": "2022-03-05T18:41:25.000Z" - }, - "events": [ - { - "uuid": "a534027e-e78f-45dd-b5bf-71b948753819", - "start": { - "$date": "2022-03-05T16:56:19.000Z" - }, - "end": { - "$date": "2022-03-05T18:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7399c067-6139-44ad-950b-6b22a3307f58", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T16:56:59.000Z" - }, - "end": { - "$date": "2022-03-05T18:40:13.000Z" - }, - "events": [ - { - "uuid": "9f86567c-eca5-47c6-97d7-0d8afdc43731", - "start": { - "$date": "2022-03-05T16:56:59.000Z" - }, - "end": { - "$date": "2022-03-05T18:37:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a9ea2546-6ba2-415d-b674-0f9e8219ae0a", - "start": { - "$date": "2022-03-05T18:37:59.000Z" - }, - "end": { - "$date": "2022-03-05T18:40:13.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5296b61f-8ed9-4c49-95cf-d53f25771657", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-05T17:21:44.000Z" - }, - "end": { - "$date": "2022-03-05T17:46:58.000Z" - }, - "events": [ - { - "uuid": "34067e9c-460c-469d-b3cf-4ce84254aad2", - "start": { - "$date": "2022-03-05T17:21:44.000Z" - }, - "end": { - "$date": "2022-03-05T17:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "65018954-93d3-41ee-9d59-1127031dfba9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-05T18:17:10.000Z" - }, - "end": { - "$date": "2022-03-06T04:19:54.000Z" - }, - "events": [ - { - "uuid": "7aed43cc-d59b-4a47-bb64-589f62ee7143", - "start": { - "$date": "2022-03-05T18:17:10.000Z" - }, - "end": { - "$date": "2022-03-06T04:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "52e26a1b-934e-41b1-ab72-1eac132a65bd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-05T18:32:07.000Z" - }, - "end": { - "$date": "2022-03-05T18:40:58.000Z" - }, - "events": [ - { - "uuid": "1b870f0b-1e58-4e00-9642-3fe180bd5a9f", - "start": { - "$date": "2022-03-05T18:32:07.000Z" - }, - "end": { - "$date": "2022-03-05T18:40:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c3a65d17-e8c0-4d01-a293-8e6a9c25ab23", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-05T18:44:50.000Z" - }, - "end": { - "$date": "2022-03-05T23:36:36.000Z" - }, - "events": [ - { - "uuid": "ed7d5e3a-a270-4f8b-871e-a4741514ed01", - "start": { - "$date": "2022-03-05T18:44:50.000Z" - }, - "end": { - "$date": "2022-03-05T23:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9d942e9b-432e-475f-b695-2d0b14a4c9c9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T18:45:36.000Z" - }, - "end": { - "$date": "2022-03-05T20:39:35.000Z" - }, - "events": [ - { - "uuid": "52a8ca0f-289b-4ec1-a88d-5f45795e7f4b", - "start": { - "$date": "2022-03-05T18:45:36.000Z" - }, - "end": { - "$date": "2022-03-05T20:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "3d971ebf-09c7-486c-b869-e6b22b7f88ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T18:59:49.000Z" - }, - "end": { - "$date": "2022-03-05T19:45:54.000Z" - }, - "events": [ - { - "uuid": "6344eb6f-ac28-4f5a-9326-827109cf6941", - "start": { - "$date": "2022-03-05T18:59:49.000Z" - }, - "end": { - "$date": "2022-03-05T19:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "d96fabcf-eb38-4901-9428-3120f0f20975", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-05T19:14:18.000Z" - }, - "end": { - "$date": "2022-03-05T20:11:22.000Z" - }, - "events": [ - { - "uuid": "91af8cde-ea3a-430b-88fe-bdebcd2bb0d1", - "start": { - "$date": "2022-03-05T19:14:18.000Z" - }, - "end": { - "$date": "2022-03-05T20:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b9b358e8-be29-4eb0-af3e-4760b08509c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-05T19:32:48.000Z" - }, - "end": { - "$date": "2022-03-05T19:38:15.000Z" - }, - "events": [ - { - "uuid": "59845d68-75c1-4343-8781-07f04fece3ed", - "start": { - "$date": "2022-03-05T19:32:48.000Z" - }, - "end": { - "$date": "2022-03-05T19:38:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a70f078c-062c-47a3-b38c-debf4bd216b0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-05T20:08:26.000Z" - }, - "end": { - "$date": "2022-03-05T23:42:37.000Z" - }, - "events": [ - { - "uuid": "44fcddc6-abfd-46d1-842d-feef5c7d3de5", - "start": { - "$date": "2022-03-05T20:08:26.000Z" - }, - "end": { - "$date": "2022-03-05T23:42:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "17e47c12-0d68-47d2-ba94-7347bf736a24", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T20:17:03.000Z" - }, - "end": { - "$date": "2022-03-05T22:04:04.000Z" - }, - "events": [ - { - "uuid": "7f385ab1-14be-46e7-bcb7-47132a77f701", - "start": { - "$date": "2022-03-05T20:17:03.000Z" - }, - "end": { - "$date": "2022-03-05T22:04:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8ad6564a-3c97-438b-aa45-14f6c848ef9f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-05T20:29:14.000Z" - }, - "end": { - "$date": "2022-03-05T20:45:54.000Z" - }, - "events": [ - { - "uuid": "397e7a6d-88d2-4650-bbca-b1eda60c8261", - "start": { - "$date": "2022-03-05T20:29:14.000Z" - }, - "end": { - "$date": "2022-03-05T20:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a200fc1b-7776-43f0-a1b6-cba6c4803d26", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T20:47:20.000Z" - }, - "end": { - "$date": "2022-03-05T21:10:11.000Z" - }, - "events": [ - { - "uuid": "ca3e10c9-1d75-4f2f-a682-e865721f1d2c", - "start": { - "$date": "2022-03-05T20:47:20.000Z" - }, - "end": { - "$date": "2022-03-05T21:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8a83fa1f-0ba8-4bec-892e-772a912b2435", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-05T21:03:51.000Z" - }, - "end": { - "$date": "2022-03-05T21:10:12.000Z" - }, - "events": [ - { - "uuid": "b8d644d5-0164-4473-bc23-906a5bda8e52", - "start": { - "$date": "2022-03-05T21:03:51.000Z" - }, - "end": { - "$date": "2022-03-05T21:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7fa3a390-2e7c-4a9b-adb3-33a61ae7da47", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-05T21:30:45.000Z" - }, - "end": { - "$date": "2022-03-05T21:53:50.000Z" - }, - "events": [ - { - "uuid": "2f6431a0-f208-411f-9b17-9f049f33aa3a", - "start": { - "$date": "2022-03-05T21:30:45.000Z" - }, - "end": { - "$date": "2022-03-05T21:53:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "89e50d16-0356-4143-8d50-c2760748dfa8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-05T22:18:07.000Z" - }, - "end": { - "$date": "2022-03-05T23:36:44.000Z" - }, - "events": [ - { - "uuid": "f75d188a-a567-4510-b991-c53558cd2c92", - "start": { - "$date": "2022-03-05T22:18:07.000Z" - }, - "end": { - "$date": "2022-03-05T23:36:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "92466f9b-aad3-4378-82fa-771c60a79c9e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-05T22:45:40.000Z" - }, - "end": { - "$date": "2022-03-05T23:27:50.000Z" - }, - "events": [ - { - "uuid": "7eb93b1c-739f-4c72-b24c-72b895e0322c", - "start": { - "$date": "2022-03-05T22:45:40.000Z" - }, - "end": { - "$date": "2022-03-05T23:27:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "ade470b3-a261-43cf-9b78-430470d76402", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-05T23:27:50.000Z" - }, - "end": { - "$date": "2022-03-06T02:38:25.000Z" - }, - "events": [ - { - "uuid": "0bbd2926-0c8b-4f46-9aa7-af738fb83a39", - "start": { - "$date": "2022-03-05T23:27:50.000Z" - }, - "end": { - "$date": "2022-03-06T02:38:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7dc3f20e-a1c8-4299-9756-48a4e2fbeb76", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-05T23:27:55.000Z" - }, - "end": { - "$date": "2022-03-06T00:16:44.000Z" - }, - "events": [ - { - "uuid": "add24ef3-a539-4fa2-8ab0-1b21e8ed98fb", - "start": { - "$date": "2022-03-05T23:27:55.000Z" - }, - "end": { - "$date": "2022-03-06T00:12:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95fffc01-a9a2-4c32-b0f8-9ac13b54242d", - "start": { - "$date": "2022-03-06T00:12:55.000Z" - }, - "end": { - "$date": "2022-03-06T00:13:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5f535d7-d035-4d01-b491-e4ea7d1a872d", - "start": { - "$date": "2022-03-06T00:13:55.000Z" - }, - "end": { - "$date": "2022-03-06T00:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e88228cb-c019-4438-a429-082db659d928", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-06T00:01:41.000Z" - }, - "end": { - "$date": "2022-03-06T01:08:56.000Z" - }, - "events": [ - { - "uuid": "956332eb-eb87-4dbe-a58c-9d46865edab8", - "start": { - "$date": "2022-03-06T00:01:41.000Z" - }, - "end": { - "$date": "2022-03-06T00:24:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "32a39415-0193-49d6-a18a-b78ac25db26e", - "start": { - "$date": "2022-03-06T00:24:41.000Z" - }, - "end": { - "$date": "2022-03-06T00:37:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6ef5a2dc-a9f5-4a36-b850-6547da6aee1f", - "start": { - "$date": "2022-03-06T00:37:41.000Z" - }, - "end": { - "$date": "2022-03-06T00:48:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6f1f705-bf4c-474c-8712-73e8f602ccbe", - "start": { - "$date": "2022-03-06T00:48:41.000Z" - }, - "end": { - "$date": "2022-03-06T00:52:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c3178b50-0097-4ca3-a99c-afa839e49e24", - "start": { - "$date": "2022-03-06T00:52:41.000Z" - }, - "end": { - "$date": "2022-03-06T01:08:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c4478a84-2204-4924-a737-4cd4c5c89c03", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T00:17:24.000Z" - }, - "end": { - "$date": "2022-03-06T00:54:40.000Z" - }, - "events": [ - { - "uuid": "f8782cbd-b427-4dbf-a2e4-4c713d7ffeba", - "start": { - "$date": "2022-03-06T00:17:24.000Z" - }, - "end": { - "$date": "2022-03-06T00:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "93254cfe-f865-4f63-b3b9-66c6f9d36a82", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T00:32:18.000Z" - }, - "end": { - "$date": "2022-03-06T01:32:54.000Z" - }, - "events": [ - { - "uuid": "bdc73acc-e1d2-427a-91b9-3d81bb14559e", - "start": { - "$date": "2022-03-06T00:32:18.000Z" - }, - "end": { - "$date": "2022-03-06T01:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b85faf47-34b2-4051-81dc-f4cd27007145", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-06T00:35:08.000Z" - }, - "end": { - "$date": "2022-03-06T01:32:51.000Z" - }, - "events": [ - { - "uuid": "b7865dcb-9c45-4fbc-88bb-22cd1b9590d6", - "start": { - "$date": "2022-03-06T00:35:08.000Z" - }, - "end": { - "$date": "2022-03-06T01:32:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a2d61903-6d55-416a-b148-be602f2bf681", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-06T00:41:47.000Z" - }, - "end": { - "$date": "2022-03-06T01:32:50.000Z" - }, - "events": [ - { - "uuid": "6a09c084-d781-4e8f-ba4e-8d102e8c4e7b", - "start": { - "$date": "2022-03-06T00:41:47.000Z" - }, - "end": { - "$date": "2022-03-06T01:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eae42e8c-e3bb-4dae-bcf4-53d20772fe77", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T00:54:50.000Z" - }, - "end": { - "$date": "2022-03-06T01:03:26.000Z" - }, - "events": [ - { - "uuid": "2e654ca0-9f37-403b-a23e-79c35b034748", - "start": { - "$date": "2022-03-06T00:54:50.000Z" - }, - "end": { - "$date": "2022-03-06T01:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4d47b730-376c-4654-b6dc-b3eb7a036f78", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T01:03:31.000Z" - }, - "end": { - "$date": "2022-03-06T02:58:53.000Z" - }, - "events": [ - { - "uuid": "0ae4a939-892a-45bd-88a4-9610247d9440", - "start": { - "$date": "2022-03-06T01:03:31.000Z" - }, - "end": { - "$date": "2022-03-06T02:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e3e94146-3f46-4c67-a6ba-9589c3170fed", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-06T01:55:12.000Z" - }, - "end": { - "$date": "2022-03-06T06:13:16.000Z" - }, - "events": [ - { - "uuid": "86964b8b-1f36-474f-b01e-cd5c3a195665", - "start": { - "$date": "2022-03-06T01:55:12.000Z" - }, - "end": { - "$date": "2022-03-06T06:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81661f54-deb0-4d46-9333-95c519a2c103", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T02:35:03.000Z" - }, - "end": { - "$date": "2022-03-06T02:51:35.000Z" - }, - "events": [ - { - "uuid": "38b0b5ea-420f-4ef2-a168-9c41ecf71925", - "start": { - "$date": "2022-03-06T02:35:03.000Z" - }, - "end": { - "$date": "2022-03-06T02:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "2571a5b3-11db-4d54-8669-1351922d1537", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-06T02:38:55.000Z" - }, - "end": { - "$date": "2022-03-06T03:16:58.000Z" - }, - "events": [ - { - "uuid": "1e3a105d-06f5-4a66-90bb-3f69a3a74db7", - "start": { - "$date": "2022-03-06T02:38:55.000Z" - }, - "end": { - "$date": "2022-03-06T03:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e69df78a-51e1-4e87-ad53-61f0524e04e4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T03:02:56.000Z" - }, - "end": { - "$date": "2022-03-06T03:17:17.000Z" - }, - "events": [ - { - "uuid": "6f202ca0-284e-463d-b2f4-acb8ef23caae", - "start": { - "$date": "2022-03-06T03:02:56.000Z" - }, - "end": { - "$date": "2022-03-06T03:17:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb9547ea-0914-4e41-8075-c1a03da35d53", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T03:14:25.000Z" - }, - "end": { - "$date": "2022-03-06T03:49:57.000Z" - }, - "events": [ - { - "uuid": "158c222a-e9bb-45dc-b368-31b266472b7a", - "start": { - "$date": "2022-03-06T03:14:25.000Z" - }, - "end": { - "$date": "2022-03-06T03:49:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b9b1a1bd-3844-43ca-838c-66f2fc71ec19", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T03:30:59.000Z" - }, - "end": { - "$date": "2022-03-06T04:55:02.000Z" - }, - "events": [ - { - "uuid": "027f07a9-88ea-4d73-b9ae-cf4db4184f56", - "start": { - "$date": "2022-03-06T03:30:59.000Z" - }, - "end": { - "$date": "2022-03-06T04:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ac306b69-04a7-4b21-aa4f-8399c9e8556c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-06T03:31:43.000Z" - }, - "end": { - "$date": "2022-03-06T04:59:32.000Z" - }, - "events": [ - { - "uuid": "1bf5c091-ad63-4ea6-ba0f-622dc1af79b7", - "start": { - "$date": "2022-03-06T03:31:43.000Z" - }, - "end": { - "$date": "2022-03-06T04:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0ce669ce-fc5e-49c9-add9-d0f785cd2459", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-06T03:40:38.000Z" - }, - "end": { - "$date": "2022-03-06T05:36:00.000Z" - }, - "events": [ - { - "uuid": "0d67b0e1-5aeb-453b-b7bf-4e3b4ae4fd0c", - "start": { - "$date": "2022-03-06T03:40:38.000Z" - }, - "end": { - "$date": "2022-03-06T05:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "e56adbde-7efd-46ed-9245-1b68204018f0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-06T03:48:38.000Z" - }, - "end": { - "$date": "2022-03-06T05:13:43.000Z" - }, - "events": [ - { - "uuid": "489c4660-ca5b-49b3-98be-9f7bbdddc8a8", - "start": { - "$date": "2022-03-06T03:48:38.000Z" - }, - "end": { - "$date": "2022-03-06T05:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "e7fc5966-2b32-4400-8524-f0d5e5eeb1ac", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T04:02:18.000Z" - }, - "end": { - "$date": "2022-03-06T04:39:20.000Z" - }, - "events": [ - { - "uuid": "a0e66162-4d81-480e-bda3-5feacaa919a8", - "start": { - "$date": "2022-03-06T04:02:18.000Z" - }, - "end": { - "$date": "2022-03-06T04:39:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "eb11e68b-eac8-483a-8791-8d0562530d70", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-06T04:20:14.000Z" - }, - "end": { - "$date": "2022-03-06T10:15:34.000Z" - }, - "events": [ - { - "uuid": "510effb3-4f05-4695-ba90-9cdd157ff8fe", - "start": { - "$date": "2022-03-06T04:20:14.000Z" - }, - "end": { - "$date": "2022-03-06T10:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "b2b4ab79-76ae-45e0-ad4b-c8631493bc13", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T05:08:42.000Z" - }, - "end": { - "$date": "2022-03-06T07:30:14.000Z" - }, - "events": [ - { - "uuid": "c02e5e6f-76ee-469c-a17f-024b32e31704", - "start": { - "$date": "2022-03-06T05:08:42.000Z" - }, - "end": { - "$date": "2022-03-06T07:05:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9557c2e-880f-49da-99ad-0876625a8ca1", - "start": { - "$date": "2022-03-06T07:05:42.000Z" - }, - "end": { - "$date": "2022-03-06T07:10:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "73825a4b-5708-483e-b9cf-73ef1498358a", - "start": { - "$date": "2022-03-06T07:10:42.000Z" - }, - "end": { - "$date": "2022-03-06T07:20:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a89b40f-351e-4c33-89fe-c0b4459c3c30", - "start": { - "$date": "2022-03-06T07:20:42.000Z" - }, - "end": { - "$date": "2022-03-06T07:30:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "23083a0f-8739-4413-850c-5115966a3536", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T05:26:16.000Z" - }, - "end": { - "$date": "2022-03-06T05:48:54.000Z" - }, - "events": [ - { - "uuid": "beef8374-a00b-47bc-b6a7-3e4adb631d9a", - "start": { - "$date": "2022-03-06T05:26:16.000Z" - }, - "end": { - "$date": "2022-03-06T05:48:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "a195b618-7e27-462a-857f-299f29477863", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-06T05:47:25.000Z" - }, - "end": { - "$date": "2022-03-06T06:54:50.000Z" - }, - "events": [ - { - "uuid": "eb59f4f5-38d6-4e30-98c5-b577898c6191", - "start": { - "$date": "2022-03-06T05:47:25.000Z" - }, - "end": { - "$date": "2022-03-06T06:54:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7ef9397-29e2-4544-934f-ffdbe7ddbd32", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T05:55:07.000Z" - }, - "end": { - "$date": "2022-03-06T06:23:52.000Z" - }, - "events": [ - { - "uuid": "70336839-bf51-4ee6-bea5-992b38c36367", - "start": { - "$date": "2022-03-06T05:55:07.000Z" - }, - "end": { - "$date": "2022-03-06T06:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bcf01ab7-f9c4-4d33-b204-953df269bbad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-06T06:13:26.000Z" - }, - "end": { - "$date": "2022-03-06T08:09:21.000Z" - }, - "events": [ - { - "uuid": "c4614804-5404-42a4-bd47-d5c07c4990f6", - "start": { - "$date": "2022-03-06T06:13:26.000Z" - }, - "end": { - "$date": "2022-03-06T08:09:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "859725ae-58a2-4a6a-bd78-38201420dcaa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-06T06:13:40.000Z" - }, - "end": { - "$date": "2022-03-06T06:22:42.000Z" - }, - "events": [ - { - "uuid": "ba70ca0b-67d0-4504-ac5c-27c1a93f1548", - "start": { - "$date": "2022-03-06T06:13:40.000Z" - }, - "end": { - "$date": "2022-03-06T06:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a3cb24f7-c9ef-4428-b89c-249ce69e6cc1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T06:32:19.000Z" - }, - "end": { - "$date": "2022-03-06T06:55:54.000Z" - }, - "events": [ - { - "uuid": "f7e5f13d-efb1-494b-aee1-d14b12a51807", - "start": { - "$date": "2022-03-06T06:32:19.000Z" - }, - "end": { - "$date": "2022-03-06T06:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "759556b4-66d5-41bc-ae69-006ca30da425", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-06T06:25:51.000Z" - }, - "end": { - "$date": "2022-03-06T07:18:28.000Z" - }, - "events": [ - { - "uuid": "151b7840-0451-4570-8367-8425006f25cb", - "start": { - "$date": "2022-03-06T06:25:51.000Z" - }, - "end": { - "$date": "2022-03-06T07:18:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1e80c4b-4041-4326-b86e-382d0c423f72", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T07:02:05.000Z" - }, - "end": { - "$date": "2022-03-06T07:32:55.000Z" - }, - "events": [ - { - "uuid": "541afd8b-2c1c-44a0-9a1e-a56f623e85b1", - "start": { - "$date": "2022-03-06T07:02:05.000Z" - }, - "end": { - "$date": "2022-03-06T07:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28ae80d2-79d4-4535-875a-87a37484e1fa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T07:44:47.000Z" - }, - "end": { - "$date": "2022-03-06T08:09:42.000Z" - }, - "events": [ - { - "uuid": "fd2b7eef-4c2f-4faa-b7d8-c0d9520e9de8", - "start": { - "$date": "2022-03-06T07:44:47.000Z" - }, - "end": { - "$date": "2022-03-06T08:09:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5125212-d7e7-40ec-b18c-5befe665b431", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T08:22:04.000Z" - }, - "end": { - "$date": "2022-03-06T08:57:09.000Z" - }, - "events": [ - { - "uuid": "3c66dad2-fae7-4387-b6bd-107288d90d10", - "start": { - "$date": "2022-03-06T08:22:04.000Z" - }, - "end": { - "$date": "2022-03-06T08:57:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d4ff9358-c457-4fa9-a9b4-3f622dba1f3f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-06T08:38:13.000Z" - }, - "end": { - "$date": "2022-03-06T11:40:28.000Z" - }, - "events": [ - { - "uuid": "c4884571-ff5a-48b3-acac-7eed83ae3c8b", - "start": { - "$date": "2022-03-06T08:38:13.000Z" - }, - "end": { - "$date": "2022-03-06T11:40:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce230caa-e7d8-44db-aa03-10368ea0ae6e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-06T09:03:35.000Z" - }, - "end": { - "$date": "2022-03-06T09:17:25.000Z" - }, - "events": [ - { - "uuid": "0132f8fe-8902-4eb9-947c-91764590b9a7", - "start": { - "$date": "2022-03-06T09:03:35.000Z" - }, - "end": { - "$date": "2022-03-06T09:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9120974c-3c69-47f7-ae49-159de43968e7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-06T17:47:54.000Z" - }, - "end": { - "$date": "2022-03-06T17:47:59.000Z" - }, - "events": [ - { - "uuid": "e6d2789d-4f7a-4581-bf25-5cee5b116213", - "start": { - "$date": "2022-03-06T17:47:54.000Z" - }, - "end": { - "$date": "2022-03-06T18:28:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b315257a-a1db-4165-a61c-37a71d1d22dc", - "start": { - "$date": "2022-03-06T18:28:54.000Z" - }, - "end": { - "$date": "2022-03-06T18:34:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "649b7eb1-86bb-4bce-bb56-83dabd1394aa", - "start": { - "$date": "2022-03-06T18:34:54.000Z" - }, - "end": { - "$date": "2022-03-06T17:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f16525c5-174b-4880-8973-da6b790d054a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T15:57:19.000Z" - }, - "end": { - "$date": "2022-03-06T16:40:23.000Z" - }, - "events": [ - { - "uuid": "db0a1f26-29f6-4cf2-855a-ec0e8eff0cbe", - "start": { - "$date": "2022-03-06T15:57:19.000Z" - }, - "end": { - "$date": "2022-03-06T16:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ed8d28ed-b8f7-4f0b-a478-52ce592b6e46", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T15:57:19.000Z" - }, - "end": { - "$date": "2022-03-06T17:08:32.000Z" - }, - "events": [ - { - "uuid": "13f20c89-5628-4adf-b383-62216063b5b6", - "start": { - "$date": "2022-03-06T15:57:19.000Z" - }, - "end": { - "$date": "2022-03-06T17:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d82cf9b8-ac20-44df-957a-ccf513d51fea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T16:41:44.000Z" - }, - "end": { - "$date": "2022-03-06T16:43:08.000Z" - }, - "events": [ - { - "uuid": "f1bd31ea-dc3a-4a08-89e3-83df858f04d5", - "start": { - "$date": "2022-03-06T16:41:44.000Z" - }, - "end": { - "$date": "2022-03-06T16:43:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "259009a7-b0ff-48cc-874c-87df5399bbfc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T17:09:17.000Z" - }, - "end": { - "$date": "2022-03-06T18:16:13.000Z" - }, - "events": [ - { - "uuid": "c979e0f7-8189-40f9-8848-36e3b984cd18", - "start": { - "$date": "2022-03-06T17:09:17.000Z" - }, - "end": { - "$date": "2022-03-06T18:16:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ffc35f4f-23d7-4e79-b4ed-7f7d42dd567b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T17:31:45.000Z" - }, - "end": { - "$date": "2022-03-06T17:52:35.000Z" - }, - "events": [ - { - "uuid": "911142d2-fc71-478d-a125-b85115f906a4", - "start": { - "$date": "2022-03-06T17:31:45.000Z" - }, - "end": { - "$date": "2022-03-06T17:52:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e2bf9fbd-1242-4e1f-9ac1-5301c1576075", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-06T17:48:29.000Z" - }, - "end": { - "$date": "2022-03-06T17:56:55.000Z" - }, - "events": [ - { - "uuid": "820c693b-8a68-429b-b626-61ea7fb768b5", - "start": { - "$date": "2022-03-06T17:48:29.000Z" - }, - "end": { - "$date": "2022-03-06T17:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0210107b-062c-47e5-94e4-2beefd4d744c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T18:04:27.000Z" - }, - "end": { - "$date": "2022-03-06T18:24:47.000Z" - }, - "events": [ - { - "uuid": "b1b5abaf-94b6-4854-8045-34ef3e79665c", - "start": { - "$date": "2022-03-06T18:04:27.000Z" - }, - "end": { - "$date": "2022-03-06T18:24:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2343ec57-8edc-401e-b82b-019f9282d640", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-06T18:13:18.000Z" - }, - "end": { - "$date": "2022-03-06T18:21:53.000Z" - }, - "events": [ - { - "uuid": "eb6e71cd-424c-4b62-b4ec-95b5ee1cccf6", - "start": { - "$date": "2022-03-06T18:13:18.000Z" - }, - "end": { - "$date": "2022-03-06T18:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f88858ef-3460-483a-b645-c41cfdc824ba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T18:28:28.000Z" - }, - "end": { - "$date": "2022-03-06T18:49:59.000Z" - }, - "events": [ - { - "uuid": "2ae1732b-4bb7-4f3f-9c00-2a7344698e69", - "start": { - "$date": "2022-03-06T18:28:28.000Z" - }, - "end": { - "$date": "2022-03-06T18:49:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0e253533-26a7-4845-b791-5705cb0fab41", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-06T18:37:55.000Z" - }, - "end": { - "$date": "2022-03-06T20:04:46.000Z" - }, - "events": [ - { - "uuid": "9d85839b-d1c4-4d99-a2b5-b26219701abb", - "start": { - "$date": "2022-03-06T18:37:55.000Z" - }, - "end": { - "$date": "2022-03-06T20:04:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c8794fb-2bdb-4d42-ba07-d108e88159f7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T18:51:40.000Z" - }, - "end": { - "$date": "2022-03-06T19:09:05.000Z" - }, - "events": [ - { - "uuid": "48b13771-303a-40bc-a51c-8845c163f3ac", - "start": { - "$date": "2022-03-06T18:51:40.000Z" - }, - "end": { - "$date": "2022-03-06T19:09:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e74f53df-0f2c-4fa2-b969-f910b3623c57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-06T18:58:42.000Z" - }, - "end": { - "$date": "2022-03-06T20:13:35.000Z" - }, - "events": [ - { - "uuid": "47408e4b-37d1-4dc0-9174-210bb1f2c714", - "start": { - "$date": "2022-03-06T18:58:42.000Z" - }, - "end": { - "$date": "2022-03-06T20:13:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1f18872f-6060-42d0-a33e-593cd55baae3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-06T20:11:51.000Z" - }, - "end": { - "$date": "2022-03-06T20:22:36.000Z" - }, - "events": [ - { - "uuid": "6dbba6f7-c32c-4296-b9df-7eadfee08871", - "start": { - "$date": "2022-03-06T20:11:51.000Z" - }, - "end": { - "$date": "2022-03-06T20:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "fa70bc50-9e85-4905-9b8e-267a6330c366", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-06T20:27:36.000Z" - }, - "end": { - "$date": "2022-03-06T22:04:48.000Z" - }, - "events": [ - { - "uuid": "0229f97f-de89-4f3b-8ce1-74dd60b77b01", - "start": { - "$date": "2022-03-06T20:27:36.000Z" - }, - "end": { - "$date": "2022-03-06T22:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "3b2a7d3d-5784-443f-b280-1a61f18a34ed", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-06T20:35:38.000Z" - }, - "end": { - "$date": "2022-03-06T21:33:24.000Z" - }, - "events": [ - { - "uuid": "f0f69bf9-6080-4fa2-96e2-c9538da23754", - "start": { - "$date": "2022-03-06T20:35:38.000Z" - }, - "end": { - "$date": "2022-03-06T21:33:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c968500d-0bfe-4200-bc86-72039491d06b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-06T21:08:13.000Z" - }, - "end": { - "$date": "2022-03-06T23:19:14.000Z" - }, - "events": [ - { - "uuid": "8939af83-467e-4c13-a56b-c0aa24a993e0", - "start": { - "$date": "2022-03-06T21:08:13.000Z" - }, - "end": { - "$date": "2022-03-06T23:19:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3278484-821e-4bad-bb2a-b951bf0d8fc0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T21:17:11.000Z" - }, - "end": { - "$date": "2022-03-06T21:33:51.000Z" - }, - "events": [ - { - "uuid": "e3ac60e3-4d7d-4084-a987-ead4d23e8a30", - "start": { - "$date": "2022-03-06T21:17:11.000Z" - }, - "end": { - "$date": "2022-03-06T21:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62172133-deb3-4db0-ae79-e4ebfee6ebf5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-06T21:34:53.000Z" - }, - "end": { - "$date": "2022-03-06T21:56:53.000Z" - }, - "events": [ - { - "uuid": "cf274677-ee9e-4aa1-a518-6d01f556b94d", - "start": { - "$date": "2022-03-06T21:34:53.000Z" - }, - "end": { - "$date": "2022-03-06T21:56:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "05acbd5c-79d7-411e-a4d2-b3ed698ba970", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-06T21:44:56.000Z" - }, - "end": { - "$date": "2022-03-06T22:07:52.000Z" - }, - "events": [ - { - "uuid": "7b71c282-5175-42df-a9e8-f83e771e7ea4", - "start": { - "$date": "2022-03-06T21:44:56.000Z" - }, - "end": { - "$date": "2022-03-06T22:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "54f58409-f93b-4e9d-9d08-7865fbb3a1d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-06T23:20:40.000Z" - }, - "end": { - "$date": "2022-03-07T06:28:39.000Z" - }, - "events": [ - { - "uuid": "d0142983-42bf-4e86-b927-bd7d28b59a13", - "start": { - "$date": "2022-03-06T23:20:40.000Z" - }, - "end": { - "$date": "2022-03-07T06:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b262bf33-74c7-48b3-b9e7-559ffe759fad", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-07T00:18:37.000Z" - }, - "end": { - "$date": "2022-03-07T00:35:12.000Z" - }, - "events": [ - { - "uuid": "953bc0c3-c475-4973-9eaf-aa5f27af42ca", - "start": { - "$date": "2022-03-07T00:18:37.000Z" - }, - "end": { - "$date": "2022-03-07T00:35:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a6b2901-140c-4502-b36a-188990f63cf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-07T01:45:45.000Z" - }, - "end": { - "$date": "2022-03-07T02:07:35.000Z" - }, - "events": [ - { - "uuid": "982e734c-f1f5-4e32-8a65-f03075f49d5c", - "start": { - "$date": "2022-03-07T01:45:45.000Z" - }, - "end": { - "$date": "2022-03-07T02:07:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f04635fc-4a62-457e-be4f-9bfbcd52e92d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T00:44:04.000Z" - }, - "end": { - "$date": "2022-03-07T00:47:10.000Z" - }, - "events": [ - { - "uuid": "e1db90a5-b274-454b-8228-837a5afc29c5", - "start": { - "$date": "2022-03-07T00:44:04.000Z" - }, - "end": { - "$date": "2022-03-07T00:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "71c58844-668f-4cf0-a506-a327bc7ada1c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T00:49:20.000Z" - }, - "end": { - "$date": "2022-03-07T00:55:33.000Z" - }, - "events": [ - { - "uuid": "eec22d7b-dc02-472f-ba77-0dd9abfc3d9c", - "start": { - "$date": "2022-03-07T00:49:20.000Z" - }, - "end": { - "$date": "2022-03-07T00:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1f796950-b1dd-4576-8884-8a49386df4af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-07T00:49:55.000Z" - }, - "end": { - "$date": "2022-03-07T00:56:05.000Z" - }, - "events": [ - { - "uuid": "d6232bbe-b34b-4a46-9439-b1eb2ed6c1c2", - "start": { - "$date": "2022-03-07T00:49:55.000Z" - }, - "end": { - "$date": "2022-03-07T00:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "c6c2d8fa-8063-43ec-a233-98a9396b6ff1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-07T00:56:30.000Z" - }, - "end": { - "$date": "2022-03-07T02:01:52.000Z" - }, - "events": [ - { - "uuid": "b1f0bdc7-cae9-461b-b7db-4a1189e53387", - "start": { - "$date": "2022-03-07T00:56:30.000Z" - }, - "end": { - "$date": "2022-03-07T02:01:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "7de06715-c3bb-4cbf-a550-e93535b5cd1d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T00:58:41.000Z" - }, - "end": { - "$date": "2022-03-07T02:04:39.000Z" - }, - "events": [ - { - "uuid": "b8804d24-69ff-4e60-82d1-ac288f3698be", - "start": { - "$date": "2022-03-07T00:58:41.000Z" - }, - "end": { - "$date": "2022-03-07T02:04:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d376fd46-f0f5-4865-865d-ace08cd8eeab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-07T03:31:35.000Z" - }, - "end": { - "$date": "2022-03-07T07:25:07.000Z" - }, - "events": [ - { - "uuid": "b4816f59-617a-45f6-ba6f-bbe2cd4afa6a", - "start": { - "$date": "2022-03-07T03:31:35.000Z" - }, - "end": { - "$date": "2022-03-07T07:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b4b8d755-62d2-4602-9b61-c424f18628d4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T03:53:47.000Z" - }, - "end": { - "$date": "2022-03-07T03:57:59.000Z" - }, - "events": [ - { - "uuid": "f2f83ccd-209f-4343-bdf9-4d5b37e3c190", - "start": { - "$date": "2022-03-07T03:53:47.000Z" - }, - "end": { - "$date": "2022-03-07T03:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "68e6d42e-5d22-4981-ba5c-3a8e5a2183c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T03:58:07.000Z" - }, - "end": { - "$date": "2022-03-07T04:13:25.000Z" - }, - "events": [ - { - "uuid": "d2da3950-a823-49c4-bc40-48ae5473ed4d", - "start": { - "$date": "2022-03-07T03:58:07.000Z" - }, - "end": { - "$date": "2022-03-07T04:13:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "f9f43108-3a9b-47df-8e85-21109ce04cef", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T04:09:38.000Z" - }, - "end": { - "$date": "2022-03-07T04:47:07.000Z" - }, - "events": [ - { - "uuid": "962f5f52-36e5-44e4-9409-4f12ebb75e38", - "start": { - "$date": "2022-03-07T04:09:38.000Z" - }, - "end": { - "$date": "2022-03-07T04:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "276245ae-e9fe-45bc-ae7e-266f39592e28", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T04:20:59.000Z" - }, - "end": { - "$date": "2022-03-07T04:50:49.000Z" - }, - "events": [ - { - "uuid": "513e25ce-3daa-4f04-93f7-909880101e53", - "start": { - "$date": "2022-03-07T04:20:59.000Z" - }, - "end": { - "$date": "2022-03-07T04:45:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5aa0ea93-789e-4944-a74f-c7d1eb271577", - "start": { - "$date": "2022-03-07T04:45:59.000Z" - }, - "end": { - "$date": "2022-03-07T04:50:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7e99a480-306d-4458-9028-d9be8c1973f8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-07T04:21:28.000Z" - }, - "end": { - "$date": "2022-03-07T04:22:50.000Z" - }, - "events": [ - { - "uuid": "c645ee1c-fa0d-4f79-8623-04c8e10ab8f8", - "start": { - "$date": "2022-03-07T04:21:28.000Z" - }, - "end": { - "$date": "2022-03-07T04:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "4be16d2b-778e-4265-b2bd-1817dce8e9f8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-07T04:24:37.000Z" - }, - "end": { - "$date": "2022-03-07T04:41:06.000Z" - }, - "events": [ - { - "uuid": "036528bc-02c3-498f-b65e-72d7162bb4fb", - "start": { - "$date": "2022-03-07T04:24:37.000Z" - }, - "end": { - "$date": "2022-03-07T04:41:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4fde9457-506d-4e74-abb7-64becf470ea2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-07T04:39:51.000Z" - }, - "end": { - "$date": "2022-03-07T06:24:01.000Z" - }, - "events": [ - { - "uuid": "d25f3482-a72c-46d8-a03e-85c14441acd2", - "start": { - "$date": "2022-03-07T04:39:51.000Z" - }, - "end": { - "$date": "2022-03-07T06:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "227b0dce-388a-4073-b5d1-ac5d194d35f1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T04:53:51.000Z" - }, - "end": { - "$date": "2022-03-07T04:55:07.000Z" - }, - "events": [ - { - "uuid": "d794ee87-144b-44d2-9ea8-da4e5b427cde", - "start": { - "$date": "2022-03-07T04:53:51.000Z" - }, - "end": { - "$date": "2022-03-07T04:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ece93f81-b5a3-41dd-9eaf-95daa136674d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T04:55:42.000Z" - }, - "end": { - "$date": "2022-03-07T05:00:16.000Z" - }, - "events": [ - { - "uuid": "59f275a7-7937-4ab0-91f0-5cda33bce6da", - "start": { - "$date": "2022-03-07T04:55:42.000Z" - }, - "end": { - "$date": "2022-03-07T05:00:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f91d96d5-0356-41d4-b500-b14962518b37", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T05:00:40.000Z" - }, - "end": { - "$date": "2022-03-07T05:23:30.000Z" - }, - "events": [ - { - "uuid": "59082737-e75e-4e54-94f8-aaa7e3c45d37", - "start": { - "$date": "2022-03-07T05:00:40.000Z" - }, - "end": { - "$date": "2022-03-07T05:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49b4a2b9-d8e5-4221-930b-22ddc96ab66f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T05:37:24.000Z" - }, - "end": { - "$date": "2022-03-07T06:18:59.000Z" - }, - "events": [ - { - "uuid": "7d81f8d0-f7c2-4cb2-9daa-7ad1e16835e1", - "start": { - "$date": "2022-03-07T05:37:24.000Z" - }, - "end": { - "$date": "2022-03-07T06:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1077d779-04f0-4396-8bc1-df3730721e3e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-07T05:52:48.000Z" - }, - "end": { - "$date": "2022-03-07T06:11:53.000Z" - }, - "events": [ - { - "uuid": "0241f9fb-64b7-4cdc-9e6f-97628e89666b", - "start": { - "$date": "2022-03-07T05:52:48.000Z" - }, - "end": { - "$date": "2022-03-07T06:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb8391f4-e8b5-4a40-ad5d-6a7c5face570", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-07T06:16:09.000Z" - }, - "end": { - "$date": "2022-03-07T06:39:14.000Z" - }, - "events": [ - { - "uuid": "729081ac-afde-47a1-aba5-bc26efe9b52c", - "start": { - "$date": "2022-03-07T06:16:09.000Z" - }, - "end": { - "$date": "2022-03-07T06:39:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eb3f184f-cf05-41a6-b419-364d5131cca7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T06:56:55.000Z" - }, - "end": { - "$date": "2022-03-07T06:57:00.000Z" - }, - "events": [ - { - "uuid": "0ce7e68b-8001-4f59-9c19-d95b29566f06", - "start": { - "$date": "2022-03-07T06:56:55.000Z" - }, - "end": { - "$date": "2022-03-07T06:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aeeb4cc4-8036-4496-acfb-8ba57029ed6b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-07T06:38:15.000Z" - }, - "end": { - "$date": "2022-03-07T08:56:43.000Z" - }, - "events": [ - { - "uuid": "827c2154-e48e-4a4c-9fc7-5b4ba04560c2", - "start": { - "$date": "2022-03-07T06:38:15.000Z" - }, - "end": { - "$date": "2022-03-07T08:56:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "50f18518-dc4f-46bd-8004-be741ffa2c28", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T06:58:28.000Z" - }, - "end": { - "$date": "2022-03-07T07:26:20.000Z" - }, - "events": [ - { - "uuid": "7880418b-0107-423b-9319-dfd70361ecc2", - "start": { - "$date": "2022-03-07T06:58:28.000Z" - }, - "end": { - "$date": "2022-03-07T07:26:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c539a30c-3be6-4347-8b1c-b0c55fa72c98", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-07T07:46:19.000Z" - }, - "end": { - "$date": "2022-03-07T08:56:23.000Z" - }, - "events": [ - { - "uuid": "5104d79b-2850-4275-9948-64a5b0dbbf7c", - "start": { - "$date": "2022-03-07T07:46:19.000Z" - }, - "end": { - "$date": "2022-03-07T08:56:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "70b78214-8e9b-480d-97a5-f2a2453b6801", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-07T07:47:41.000Z" - }, - "end": { - "$date": "2022-03-07T09:00:50.000Z" - }, - "events": [ - { - "uuid": "4d7d5348-85a3-41b4-9ccb-0fe145753627", - "start": { - "$date": "2022-03-07T07:47:41.000Z" - }, - "end": { - "$date": "2022-03-07T09:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "bbf6dda7-b01b-4d74-b135-20e4c59148fc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-07T16:03:16.000Z" - }, - "end": { - "$date": "2022-03-07T19:27:29.000Z" - }, - "events": [ - { - "uuid": "b41d548a-a7de-4fdb-8b18-2786ec9cbe28", - "start": { - "$date": "2022-03-07T16:03:16.000Z" - }, - "end": { - "$date": "2022-03-07T19:27:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a81c8f54-a2c1-4731-afa3-791eb9675fb3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-07T16:07:43.000Z" - }, - "end": { - "$date": "2022-03-07T16:29:40.000Z" - }, - "events": [ - { - "uuid": "73fc2130-c703-4321-8e3d-1d3ebeae3589", - "start": { - "$date": "2022-03-07T16:07:43.000Z" - }, - "end": { - "$date": "2022-03-07T16:29:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "488f208b-5a43-4279-b805-3e15da8ccb60", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-07T16:30:50.000Z" - }, - "end": { - "$date": "2022-03-07T16:46:35.000Z" - }, - "events": [ - { - "uuid": "9772c917-a688-4ec7-bf7f-163dbe23813c", - "start": { - "$date": "2022-03-07T16:30:50.000Z" - }, - "end": { - "$date": "2022-03-07T16:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19849746-b251-4233-bdad-a7c359c12204", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-07T17:22:34.000Z" - }, - "end": { - "$date": "2022-03-07T17:40:31.000Z" - }, - "events": [ - { - "uuid": "5c4f0399-6f8c-41bf-99c5-4af2f9a76971", - "start": { - "$date": "2022-03-07T17:22:34.000Z" - }, - "end": { - "$date": "2022-03-07T17:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4a59b17b-8eda-4127-9716-096e5cb23c49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-07T17:49:07.000Z" - }, - "end": { - "$date": "2022-03-07T18:04:13.000Z" - }, - "events": [ - { - "uuid": "94734c5a-9a14-40fb-84be-33e42de4a209", - "start": { - "$date": "2022-03-07T17:49:07.000Z" - }, - "end": { - "$date": "2022-03-07T18:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "654d90a1-e996-483b-b25b-703b5570fedd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-07T18:21:50.000Z" - }, - "end": { - "$date": "2022-03-08T00:40:17.000Z" - }, - "events": [ - { - "uuid": "e069f0ac-e834-4a72-b00b-7ce32ef6b439", - "start": { - "$date": "2022-03-07T18:21:50.000Z" - }, - "end": { - "$date": "2022-03-07T19:08:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eed14061-4b13-4b3d-b7cd-6cac70fbd7fa", - "start": { - "$date": "2022-03-07T19:08:50.000Z" - }, - "end": { - "$date": "2022-03-08T00:30:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cee3ba7b-e0f7-4617-90ac-e73d4fb11f51", - "start": { - "$date": "2022-03-08T00:30:50.000Z" - }, - "end": { - "$date": "2022-03-08T00:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09e20845-38bc-43e4-98b3-bb2b95c36867", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T22:15:21.000Z" - }, - "end": { - "$date": "2022-03-07T22:15:34.000Z" - }, - "events": [ - { - "uuid": "4366afc6-e513-48c0-b089-9075a11a2077", - "start": { - "$date": "2022-03-07T22:15:21.000Z" - }, - "end": { - "$date": "2022-03-07T22:15:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "422bf74c-deb3-461f-ba73-648bd7a943c8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T22:16:33.000Z" - }, - "end": { - "$date": "2022-03-07T22:48:18.000Z" - }, - "events": [ - { - "uuid": "a1ffb452-ef39-4e94-a568-3fa5c5d012b7", - "start": { - "$date": "2022-03-07T22:16:33.000Z" - }, - "end": { - "$date": "2022-03-07T22:48:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27d707f1-8f3e-4c7d-8cec-41985b400a6d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T22:56:54.000Z" - }, - "end": { - "$date": "2022-03-07T23:33:38.000Z" - }, - "events": [ - { - "uuid": "a4c6aa8d-8eb8-4b65-86bc-00cb3a49bb63", - "start": { - "$date": "2022-03-07T22:56:54.000Z" - }, - "end": { - "$date": "2022-03-07T23:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3465df2-bd2b-4d23-8a53-1e1a1ff7a016", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-07T23:33:57.000Z" - }, - "end": { - "$date": "2022-03-07T23:42:53.000Z" - }, - "events": [ - { - "uuid": "0475e954-be56-4773-b4a7-daa6bcfa12c0", - "start": { - "$date": "2022-03-07T23:33:57.000Z" - }, - "end": { - "$date": "2022-03-07T23:42:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fe283859-66d9-4a05-8d55-104d4ceaedab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-08T00:31:06.000Z" - }, - "end": { - "$date": "2022-03-08T01:12:52.000Z" - }, - "events": [ - { - "uuid": "2199644a-e28c-49fc-80ca-8eb1ad7f5aa7", - "start": { - "$date": "2022-03-08T00:31:06.000Z" - }, - "end": { - "$date": "2022-03-08T01:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "498cd3ec-7287-45d9-9234-e898579b0ef6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T00:56:38.000Z" - }, - "end": { - "$date": "2022-03-08T01:33:17.000Z" - }, - "events": [ - { - "uuid": "cbb7e117-0f58-4a19-af62-962c424ca756", - "start": { - "$date": "2022-03-08T00:56:38.000Z" - }, - "end": { - "$date": "2022-03-08T01:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "79da8e0b-614a-4fed-9b8e-db708fd1c3b9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-08T01:08:13.000Z" - }, - "end": { - "$date": "2022-03-08T02:25:47.000Z" - }, - "events": [ - { - "uuid": "4546d14e-e930-4e65-ada0-93eced598a94", - "start": { - "$date": "2022-03-08T01:08:13.000Z" - }, - "end": { - "$date": "2022-03-08T01:33:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "818e2a1b-7a12-486d-9446-ca483ead6c8e", - "start": { - "$date": "2022-03-08T01:33:13.000Z" - }, - "end": { - "$date": "2022-03-08T01:36:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61b856bf-b0b3-4f5f-9314-f47897bf0044", - "start": { - "$date": "2022-03-08T01:36:13.000Z" - }, - "end": { - "$date": "2022-03-08T01:46:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1faf198-5a24-4a69-998e-b3f391013383", - "start": { - "$date": "2022-03-08T01:46:13.000Z" - }, - "end": { - "$date": "2022-03-08T01:51:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "74172a22-0e64-4dc6-ba17-e80e31c10609", - "start": { - "$date": "2022-03-08T01:51:13.000Z" - }, - "end": { - "$date": "2022-03-08T02:06:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3e17bcb-b08b-4400-a157-75d9dbd8ffa4", - "start": { - "$date": "2022-03-08T02:06:13.000Z" - }, - "end": { - "$date": "2022-03-08T02:25:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0f0ceaf1-636a-4ddc-9756-202a5fab719d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-08T01:17:35.000Z" - }, - "end": { - "$date": "2022-03-08T01:35:29.000Z" - }, - "events": [ - { - "uuid": "5a62d7e1-f60b-4b33-a900-0ff4a3427fa1", - "start": { - "$date": "2022-03-08T01:17:35.000Z" - }, - "end": { - "$date": "2022-03-08T01:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "b89b5de7-6e5f-48fc-b916-643c4240e010", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-08T01:19:02.000Z" - }, - "end": { - "$date": "2022-03-08T03:55:40.000Z" - }, - "events": [ - { - "uuid": "ae4dc380-01e5-41a2-9993-33d7844c458f", - "start": { - "$date": "2022-03-08T01:19:02.000Z" - }, - "end": { - "$date": "2022-03-08T03:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a52aff72-267f-403e-9cde-7dc4b0931915", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T01:35:39.000Z" - }, - "end": { - "$date": "2022-03-08T02:13:39.000Z" - }, - "events": [ - { - "uuid": "172bac39-a8ee-47cb-ac33-777b67fc7c9b", - "start": { - "$date": "2022-03-08T01:35:39.000Z" - }, - "end": { - "$date": "2022-03-08T02:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02d4d344-1498-4a66-be7c-bea15d561dbb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T02:14:04.000Z" - }, - "end": { - "$date": "2022-03-08T02:26:15.000Z" - }, - "events": [ - { - "uuid": "ba0f84c6-d064-4442-a29c-bc56fc5f1ec9", - "start": { - "$date": "2022-03-08T02:14:04.000Z" - }, - "end": { - "$date": "2022-03-08T02:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "e5480d75-21c2-4b0a-aa4b-490f7d41ea72", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T02:26:19.000Z" - }, - "end": { - "$date": "2022-03-08T05:15:09.000Z" - }, - "events": [ - { - "uuid": "9ddcf069-1a56-422d-85fd-f7c7eeb6b8a6", - "start": { - "$date": "2022-03-08T02:26:19.000Z" - }, - "end": { - "$date": "2022-03-08T02:48:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "92305eac-5c3c-4ef9-98cf-20facc6472d2", - "start": { - "$date": "2022-03-08T02:48:19.000Z" - }, - "end": { - "$date": "2022-03-08T02:56:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "17513e32-cc00-4b19-84ba-2a1a4cee6020", - "start": { - "$date": "2022-03-08T02:56:19.000Z" - }, - "end": { - "$date": "2022-03-08T05:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "86e863b4-755b-4dca-8dd5-d647275b569e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-08T02:38:52.000Z" - }, - "end": { - "$date": "2022-03-08T03:13:43.000Z" - }, - "events": [ - { - "uuid": "c9135d00-b303-4c99-b3e2-d2caf887c016", - "start": { - "$date": "2022-03-08T02:38:52.000Z" - }, - "end": { - "$date": "2022-03-08T03:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "509886f1-af7a-4f15-8e63-7bdee330cd8a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-08T02:41:59.000Z" - }, - "end": { - "$date": "2022-03-08T03:47:06.000Z" - }, - "events": [ - { - "uuid": "ea873325-0299-4ac3-a8b8-fda2c577f9ef", - "start": { - "$date": "2022-03-08T02:41:59.000Z" - }, - "end": { - "$date": "2022-03-08T03:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "101a8ab4-4eea-4185-aee1-f96904beaa60", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-08T03:20:52.000Z" - }, - "end": { - "$date": "2022-03-08T04:01:12.000Z" - }, - "events": [ - { - "uuid": "719e725b-9c41-497e-aeb1-ec6b3225fd40", - "start": { - "$date": "2022-03-08T03:20:52.000Z" - }, - "end": { - "$date": "2022-03-08T04:01:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "54d989d9-859b-4dd4-a18f-41de49dc8736", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-08T03:17:14.000Z" - }, - "end": { - "$date": "2022-03-08T06:36:01.000Z" - }, - "events": [ - { - "uuid": "5bc9f05c-7dd0-4f0a-9ca9-7b860383177e", - "start": { - "$date": "2022-03-08T03:17:14.000Z" - }, - "end": { - "$date": "2022-03-08T06:36:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b6352ba7-ac16-4cf3-a258-23269a28ce29", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-08T03:37:11.000Z" - }, - "end": { - "$date": "2022-03-08T03:46:27.000Z" - }, - "events": [ - { - "uuid": "0ce157f9-b9a7-41f8-904e-085a161036fe", - "start": { - "$date": "2022-03-08T03:37:11.000Z" - }, - "end": { - "$date": "2022-03-08T03:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7ed484c7-fd3d-4387-a49f-73fecf3beddd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-08T03:40:53.000Z" - }, - "end": { - "$date": "2022-03-08T05:32:26.000Z" - }, - "events": [ - { - "uuid": "c5f602ae-6449-455a-8605-5ab122e8bd0a", - "start": { - "$date": "2022-03-08T03:40:53.000Z" - }, - "end": { - "$date": "2022-03-08T05:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4902c6ae-94c9-4144-81b1-896a04a0757e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-08T03:47:16.000Z" - }, - "end": { - "$date": "2022-03-08T04:19:53.000Z" - }, - "events": [ - { - "uuid": "63a2d1e7-4e91-4adf-858a-b8103f685a7d", - "start": { - "$date": "2022-03-08T03:47:16.000Z" - }, - "end": { - "$date": "2022-03-08T04:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7adbd299-bf87-4033-9362-907914e9d294", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-08T03:47:51.000Z" - }, - "end": { - "$date": "2022-03-08T09:32:32.000Z" - }, - "events": [ - { - "uuid": "ac73cafd-4bc8-470a-ae1a-0d2dbfd67884", - "start": { - "$date": "2022-03-08T03:47:51.000Z" - }, - "end": { - "$date": "2022-03-08T09:32:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c48c2026-535f-402b-8168-06505b4a479c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-08T03:58:38.000Z" - }, - "end": { - "$date": "2022-03-08T04:06:58.000Z" - }, - "events": [ - { - "uuid": "fe2ad081-5215-4430-99a4-28554720e61b", - "start": { - "$date": "2022-03-08T03:58:38.000Z" - }, - "end": { - "$date": "2022-03-08T04:06:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18ac49ac-cff9-49e1-ae1b-4d95ef25fb41", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-08T04:10:23.000Z" - }, - "end": { - "$date": "2022-03-08T04:40:29.000Z" - }, - "events": [ - { - "uuid": "45eb113c-8c21-4bff-83f8-6bb27a230894", - "start": { - "$date": "2022-03-08T04:10:23.000Z" - }, - "end": { - "$date": "2022-03-08T04:40:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "339e4fd2-7e54-4d92-90f2-5829987a6937", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T04:11:10.000Z" - }, - "end": { - "$date": "2022-03-08T06:21:44.000Z" - }, - "events": [ - { - "uuid": "77988611-bb08-411d-b5da-f7b9269dcb0d", - "start": { - "$date": "2022-03-08T04:11:10.000Z" - }, - "end": { - "$date": "2022-03-08T06:21:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "212fa1a7-8f8c-4bf8-ae98-b8fd79e70956", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-08T04:12:32.000Z" - }, - "end": { - "$date": "2022-03-08T05:22:39.000Z" - }, - "events": [ - { - "uuid": "40f56cf8-2470-4138-b391-18ec69cc5dc0", - "start": { - "$date": "2022-03-08T04:12:32.000Z" - }, - "end": { - "$date": "2022-03-08T05:22:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "74ba5ecc-9deb-4bd9-acc1-c3996b6b6261", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-08T04:20:09.000Z" - }, - "end": { - "$date": "2022-03-08T06:17:44.000Z" - }, - "events": [ - { - "uuid": "7a5f5306-491e-4d1c-a229-24a53dfe8908", - "start": { - "$date": "2022-03-08T04:20:09.000Z" - }, - "end": { - "$date": "2022-03-08T06:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b34a9556-dfeb-4279-ad7c-54f42088456d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-08T04:33:19.000Z" - }, - "end": { - "$date": "2022-03-08T05:08:28.000Z" - }, - "events": [ - { - "uuid": "26dbb7d0-de73-4f6a-b315-ab8e38d220fa", - "start": { - "$date": "2022-03-08T04:33:19.000Z" - }, - "end": { - "$date": "2022-03-08T05:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61cde7ac-6918-438f-8a96-f41067aafe55", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-08T04:49:25.000Z" - }, - "end": { - "$date": "2022-03-08T05:38:21.000Z" - }, - "events": [ - { - "uuid": "57cf9285-cd80-4bf9-9522-ae8886e1f883", - "start": { - "$date": "2022-03-08T04:49:25.000Z" - }, - "end": { - "$date": "2022-03-08T05:38:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4dfe2724-ffcd-457f-9307-e58c406a94ea", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T05:23:07.000Z" - }, - "end": { - "$date": "2022-03-08T05:24:59.000Z" - }, - "events": [ - { - "uuid": "270388bb-2aac-4b03-9707-a4218f74304a", - "start": { - "$date": "2022-03-08T05:23:07.000Z" - }, - "end": { - "$date": "2022-03-08T05:24:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "bd03f5f1-c8e7-42a7-a741-60d60e3172e5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-08T06:03:59.000Z" - }, - "end": { - "$date": "2022-03-08T06:32:49.000Z" - }, - "events": [ - { - "uuid": "9f25dd8e-59c7-498e-aa3d-607c27982070", - "start": { - "$date": "2022-03-08T06:03:59.000Z" - }, - "end": { - "$date": "2022-03-08T06:32:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d0fd4b45-14d0-4a7b-b1f2-3e834dba4d1d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T05:25:27.000Z" - }, - "end": { - "$date": "2022-03-08T06:00:22.000Z" - }, - "events": [ - { - "uuid": "64bdb198-6ea9-49b8-af89-13330df272d1", - "start": { - "$date": "2022-03-08T05:25:27.000Z" - }, - "end": { - "$date": "2022-03-08T06:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "861e8179-765e-42c9-9cc6-0a47ceb5a54e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-08T05:34:20.000Z" - }, - "end": { - "$date": "2022-03-08T09:33:35.000Z" - }, - "events": [ - { - "uuid": "4378244e-ca00-41fa-94ec-e46f725ddd8d", - "start": { - "$date": "2022-03-08T05:34:20.000Z" - }, - "end": { - "$date": "2022-03-08T09:33:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5faa053-327e-4e7e-8d05-d15e53cf6908", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-08T05:43:51.000Z" - }, - "end": { - "$date": "2022-03-08T06:11:17.000Z" - }, - "events": [ - { - "uuid": "ef4e38af-d1dd-4bf3-8b5e-d9d53e9972d8", - "start": { - "$date": "2022-03-08T05:43:51.000Z" - }, - "end": { - "$date": "2022-03-08T06:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "756222ab-d28a-471d-971f-14d1d997e82d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-08T06:18:32.000Z" - }, - "end": { - "$date": "2022-03-08T06:50:23.000Z" - }, - "events": [ - { - "uuid": "24ed2a01-09a5-4033-b193-19257136deca", - "start": { - "$date": "2022-03-08T06:18:32.000Z" - }, - "end": { - "$date": "2022-03-08T06:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b573f2d8-5dc0-441f-b57a-b833ff3adac9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-08T07:13:51.000Z" - }, - "end": { - "$date": "2022-03-08T07:35:21.000Z" - }, - "events": [ - { - "uuid": "be1228b6-23e1-479d-a688-086e73d64696", - "start": { - "$date": "2022-03-08T07:13:51.000Z" - }, - "end": { - "$date": "2022-03-08T07:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "00ec3f89-4cf5-4431-9f01-c91985a6520b", - "uuid": "e222606a-babc-4b09-a951-7814e644f508", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-08T11:47:36.000Z" - }, - "end": { - "$date": "2022-03-08T14:56:20.000Z" - }, - "events": [ - { - "uuid": "9877618e-6d33-4055-9be8-c71dab332802", - "start": { - "$date": "2022-03-08T11:47:36.000Z" - }, - "end": { - "$date": "2022-03-08T14:56:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c4fe629-d9dd-47d1-b7aa-dd221a079eed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T16:36:31.000Z" - }, - "end": { - "$date": "2022-03-08T16:50:27.000Z" - }, - "events": [ - { - "uuid": "e659e09d-6e5e-456b-ac10-c6566672a500", - "start": { - "$date": "2022-03-08T16:36:31.000Z" - }, - "end": { - "$date": "2022-03-08T16:50:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "132e783f-81f4-4cac-ac23-d9e4da0bf951", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T16:51:27.000Z" - }, - "end": { - "$date": "2022-03-08T17:08:43.000Z" - }, - "events": [ - { - "uuid": "1341aa02-10f0-4000-8391-c0e69890c7f0", - "start": { - "$date": "2022-03-08T16:51:27.000Z" - }, - "end": { - "$date": "2022-03-08T17:08:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43762621-ace0-4b20-87e2-f5c08201e1b1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T17:25:40.000Z" - }, - "end": { - "$date": "2022-03-08T17:48:57.000Z" - }, - "events": [ - { - "uuid": "172935e4-af59-4582-8dd4-c29c7d3b7bb8", - "start": { - "$date": "2022-03-08T17:25:40.000Z" - }, - "end": { - "$date": "2022-03-08T17:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8fabc7f7-20f8-4aaf-8e64-bb334c06fb3b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T18:21:15.000Z" - }, - "end": { - "$date": "2022-03-08T18:35:36.000Z" - }, - "events": [ - { - "uuid": "ba59ae32-bf71-440c-9778-4f0df989e07c", - "start": { - "$date": "2022-03-08T18:21:15.000Z" - }, - "end": { - "$date": "2022-03-08T18:35:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2561034f-56c4-43b1-9832-f2f3f5bb8b08", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T18:37:06.000Z" - }, - "end": { - "$date": "2022-03-08T18:53:12.000Z" - }, - "events": [ - { - "uuid": "c2b5903a-5387-4ae3-bc21-280f86f9ebe1", - "start": { - "$date": "2022-03-08T18:37:06.000Z" - }, - "end": { - "$date": "2022-03-08T18:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b6acc5b2-a77d-4eb2-aa6d-67598c5e07bc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T19:37:42.000Z" - }, - "end": { - "$date": "2022-03-08T20:51:39.000Z" - }, - "events": [ - { - "uuid": "f41258ed-fe52-47f1-a959-989622c52953", - "start": { - "$date": "2022-03-08T19:37:42.000Z" - }, - "end": { - "$date": "2022-03-08T20:51:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "cf323aa2-ff81-4f61-b516-efbf1c6ebfa6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-08T21:53:26.000Z" - }, - "end": { - "$date": "2022-03-08T21:53:27.000Z" - }, - "events": [ - { - "uuid": "d7549d91-6bb6-44e7-bd49-315cb12cfdc2", - "start": { - "$date": "2022-03-08T21:53:26.000Z" - }, - "end": { - "$date": "2022-03-08T21:53:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b86578cf-1788-475d-8dba-b65201effa90", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T22:10:07.000Z" - }, - "end": { - "$date": "2022-03-08T22:22:03.000Z" - }, - "events": [ - { - "uuid": "989efc65-7d21-49cf-bd51-cd4c14f82295", - "start": { - "$date": "2022-03-08T22:10:07.000Z" - }, - "end": { - "$date": "2022-03-08T22:22:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "647f4855-d9ea-46b3-b024-beee1d6592c9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-08T22:30:06.000Z" - }, - "end": { - "$date": "2022-03-09T00:52:48.000Z" - }, - "events": [ - { - "uuid": "fbbdb902-9f31-4dde-8ba3-9d7ceffb2ba4", - "start": { - "$date": "2022-03-08T22:30:06.000Z" - }, - "end": { - "$date": "2022-03-09T00:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "192b3df9-e337-494a-a0d5-9394e38eb977", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-08T22:33:51.000Z" - }, - "end": { - "$date": "2022-03-08T22:49:07.000Z" - }, - "events": [ - { - "uuid": "67a04b9b-f2a6-4ebf-83e7-be540a55183e", - "start": { - "$date": "2022-03-08T22:33:51.000Z" - }, - "end": { - "$date": "2022-03-08T22:49:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1a08d39-ec7c-4aab-83bb-cfb08cf2cee2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T22:36:00.000Z" - }, - "end": { - "$date": "2022-03-08T22:50:31.000Z" - }, - "events": [ - { - "uuid": "cd8ee3de-ca62-42f3-ab62-18fae114fd6e", - "start": { - "$date": "2022-03-08T22:36:00.000Z" - }, - "end": { - "$date": "2022-03-08T22:50:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78f1808c-9b4c-4dba-8e41-b4f9d8d165ea", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T22:42:29.000Z" - }, - "end": { - "$date": "2022-03-08T23:21:40.000Z" - }, - "events": [ - { - "uuid": "9909c3c0-0d9b-4324-84e9-fb17e9e11a4f", - "start": { - "$date": "2022-03-08T22:42:29.000Z" - }, - "end": { - "$date": "2022-03-08T23:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "d16609dd-a07d-4cf3-9204-41399d6a200b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-08T22:50:43.000Z" - }, - "end": { - "$date": "2022-03-09T00:14:58.000Z" - }, - "events": [ - { - "uuid": "154f7a02-2122-4e08-a128-d3eb975e9362", - "start": { - "$date": "2022-03-08T22:50:43.000Z" - }, - "end": { - "$date": "2022-03-09T00:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7d33a64c-dbba-4cf6-b799-42221e7ceb7f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T23:02:32.000Z" - }, - "end": { - "$date": "2022-03-08T23:40:45.000Z" - }, - "events": [ - { - "uuid": "543f78c4-7a61-45bf-96bd-f7a797d85b71", - "start": { - "$date": "2022-03-08T23:02:32.000Z" - }, - "end": { - "$date": "2022-03-08T23:40:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2a88a06d-982c-4d40-82b6-54a7b678c532", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-08T23:30:24.000Z" - }, - "end": { - "$date": "2022-03-09T00:08:24.000Z" - }, - "events": [ - { - "uuid": "97850c26-df65-4296-ac48-eaf4d038857d", - "start": { - "$date": "2022-03-08T23:30:24.000Z" - }, - "end": { - "$date": "2022-03-09T00:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d68af8b8-ab0a-4de7-a6a5-6f2d7dc8b3cc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-08T23:42:09.000Z" - }, - "end": { - "$date": "2022-03-09T00:12:02.000Z" - }, - "events": [ - { - "uuid": "a7d21523-6772-415c-bae5-6d50416892bf", - "start": { - "$date": "2022-03-08T23:42:09.000Z" - }, - "end": { - "$date": "2022-03-09T00:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "84cab14b-6bec-49ff-997e-fbbb2142e46f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-08T23:49:53.000Z" - }, - "end": { - "$date": "2022-03-09T00:12:00.000Z" - }, - "events": [ - { - "uuid": "29d35e5d-cd4e-46f5-8d5c-40e80ef71afa", - "start": { - "$date": "2022-03-08T23:49:53.000Z" - }, - "end": { - "$date": "2022-03-09T00:12:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fda02176-f654-4466-9565-366d19b690a2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T00:13:11.000Z" - }, - "end": { - "$date": "2022-03-09T00:27:17.000Z" - }, - "events": [ - { - "uuid": "f11400a0-2296-4418-868d-a157476c8d82", - "start": { - "$date": "2022-03-09T00:13:11.000Z" - }, - "end": { - "$date": "2022-03-09T00:27:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9bf2347c-dcb7-4688-9d62-4879412328bf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T00:15:34.000Z" - }, - "end": { - "$date": "2022-03-09T01:04:00.000Z" - }, - "events": [ - { - "uuid": "d2e39dec-2f29-4023-9a46-9b404332d047", - "start": { - "$date": "2022-03-09T00:15:34.000Z" - }, - "end": { - "$date": "2022-03-09T01:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5c17f072-150c-4119-9fe4-fde60e18dfae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T00:28:37.000Z" - }, - "end": { - "$date": "2022-03-09T00:36:33.000Z" - }, - "events": [ - { - "uuid": "94793fed-6d27-4b61-a9ce-b3eebbaf5791", - "start": { - "$date": "2022-03-09T00:28:37.000Z" - }, - "end": { - "$date": "2022-03-09T00:36:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "fa724397-74f4-4de4-aea1-325d585350e1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-09T00:52:09.000Z" - }, - "end": { - "$date": "2022-03-09T03:25:27.000Z" - }, - "events": [ - { - "uuid": "d922bc69-ec36-4180-9d0e-0573d7fbf662", - "start": { - "$date": "2022-03-09T00:52:09.000Z" - }, - "end": { - "$date": "2022-03-09T03:25:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a3da76b9-857d-43f0-900b-5fe033912726", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T01:04:41.000Z" - }, - "end": { - "$date": "2022-03-09T01:37:27.000Z" - }, - "events": [ - { - "uuid": "18148cf6-b5fe-47a1-a9a3-07aac0803cbc", - "start": { - "$date": "2022-03-09T01:04:41.000Z" - }, - "end": { - "$date": "2022-03-09T01:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "a0905014-105c-4af2-a6c6-6bb97de3b9dd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-09T01:12:47.000Z" - }, - "end": { - "$date": "2022-03-09T01:37:31.000Z" - }, - "events": [ - { - "uuid": "ddeb2103-cde1-45ca-9e4e-8a1331364371", - "start": { - "$date": "2022-03-09T01:12:47.000Z" - }, - "end": { - "$date": "2022-03-09T01:37:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "877fe595-af94-4c85-950e-aba9d240d30e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T03:15:21.000Z" - }, - "end": { - "$date": "2022-03-09T05:55:59.000Z" - }, - "events": [ - { - "uuid": "d298e1e7-23e4-44c9-933e-3b0a2945fd65", - "start": { - "$date": "2022-03-09T03:15:21.000Z" - }, - "end": { - "$date": "2022-03-09T05:55:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8dd75225-6eee-4e64-b24f-710278df46ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-09T01:33:13.000Z" - }, - "end": { - "$date": "2022-03-09T01:39:49.000Z" - }, - "events": [ - { - "uuid": "7b79d307-b1fc-4c84-a900-cc735bdd0dea", - "start": { - "$date": "2022-03-09T01:33:13.000Z" - }, - "end": { - "$date": "2022-03-09T01:39:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "521cb5ae-29d0-433e-8a20-a3abc38c3c1f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-09T01:35:24.000Z" - }, - "end": { - "$date": "2022-03-09T01:42:06.000Z" - }, - "events": [ - { - "uuid": "d08e1dc6-4d46-46ec-b62b-5035ffeb0186", - "start": { - "$date": "2022-03-09T01:35:24.000Z" - }, - "end": { - "$date": "2022-03-09T01:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bd008b3-c440-40d5-b351-5af1b2dc527a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T01:37:57.000Z" - }, - "end": { - "$date": "2022-03-09T01:45:38.000Z" - }, - "events": [ - { - "uuid": "d5baf669-44e1-4965-89bf-4e8657c53a4b", - "start": { - "$date": "2022-03-09T01:37:57.000Z" - }, - "end": { - "$date": "2022-03-09T01:45:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "826c0be4-dcd0-4bac-87e3-b065ca104020", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-09T01:48:01.000Z" - }, - "end": { - "$date": "2022-03-09T03:02:57.000Z" - }, - "events": [ - { - "uuid": "7547a646-75a1-4591-9563-048196360b57", - "start": { - "$date": "2022-03-09T01:48:01.000Z" - }, - "end": { - "$date": "2022-03-09T03:02:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "fcb1d54d-2665-4e67-b71c-d9bb7d023e5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T01:57:14.000Z" - }, - "end": { - "$date": "2022-03-09T02:12:40.000Z" - }, - "events": [ - { - "uuid": "1d40d027-3bf1-44f4-9bde-0f12aa00685e", - "start": { - "$date": "2022-03-09T01:57:14.000Z" - }, - "end": { - "$date": "2022-03-09T02:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b7ecb71-1ac1-4309-bdc5-c79a27959c47", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-09T02:49:42.000Z" - }, - "end": { - "$date": "2022-03-09T03:20:54.000Z" - }, - "events": [ - { - "uuid": "c312c7bc-2fe7-4216-94cc-7ab09aa7389d", - "start": { - "$date": "2022-03-09T02:49:42.000Z" - }, - "end": { - "$date": "2022-03-09T03:20:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "12d16521-fbd2-4442-9a32-7a39417d40ea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-09T02:50:00.000Z" - }, - "end": { - "$date": "2022-03-09T04:12:52.000Z" - }, - "events": [ - { - "uuid": "e6be5d81-3c0e-4bec-b1fb-37af8df93eb6", - "start": { - "$date": "2022-03-09T02:50:00.000Z" - }, - "end": { - "$date": "2022-03-09T04:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fb01aea7-c097-4e24-b53a-87fe39d60513", - "uuid": "5a85c899-535a-49cd-8875-23d5ecfd2c15", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-09T02:54:09.000Z" - }, - "end": { - "$date": "2022-03-09T02:56:55.000Z" - }, - "events": [ - { - "uuid": "5fffe664-08be-45f2-9679-ee750feb0617", - "start": { - "$date": "2022-03-09T02:54:09.000Z" - }, - "end": { - "$date": "2022-03-09T02:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "77f2a4f2-d555-47bf-a0f4-fe71e9696963", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-09T02:58:05.000Z" - }, - "end": { - "$date": "2022-03-09T03:00:59.000Z" - }, - "events": [ - { - "uuid": "4bc2b40f-19eb-43e2-b243-af8bf412cad0", - "start": { - "$date": "2022-03-09T02:58:05.000Z" - }, - "end": { - "$date": "2022-03-09T03:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "84461194-cea2-4b94-8ddf-e9e31661686a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-09T02:58:05.000Z" - }, - "end": { - "$date": "2022-03-09T03:19:40.000Z" - }, - "events": [ - { - "uuid": "3129f0fe-c9c9-45a3-ab78-e73bd589c585", - "start": { - "$date": "2022-03-09T02:58:05.000Z" - }, - "end": { - "$date": "2022-03-09T03:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f9010416-cd06-493f-9265-c36c7d477899", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-09T03:28:29.000Z" - }, - "end": { - "$date": "2022-03-09T04:06:56.000Z" - }, - "events": [ - { - "uuid": "c06a847e-db86-437a-9508-e35fd91cd63d", - "start": { - "$date": "2022-03-09T03:28:29.000Z" - }, - "end": { - "$date": "2022-03-09T04:06:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ded51f6d-7011-4a2e-a082-c3e464891bd4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-09T03:29:35.000Z" - }, - "end": { - "$date": "2022-03-09T07:17:00.000Z" - }, - "events": [ - { - "uuid": "d3a09f3f-2c47-474e-bab4-1688e1f79426", - "start": { - "$date": "2022-03-09T03:29:35.000Z" - }, - "end": { - "$date": "2022-03-09T07:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5f5e48e7-b2fb-48c4-bcf9-33a5635ba410", - "uuid": "08b645af-e605-4d2d-b9a6-f4491fbf7fd1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T03:35:51.000Z" - }, - "end": { - "$date": "2022-03-09T04:54:48.000Z" - }, - "events": [ - { - "uuid": "df208288-a002-4e8d-8a61-75591a65304b", - "start": { - "$date": "2022-03-09T03:35:51.000Z" - }, - "end": { - "$date": "2022-03-09T03:57:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0eb1280f-ee3b-46f6-ad0b-2435a7f12058", - "start": { - "$date": "2022-03-09T03:57:51.000Z" - }, - "end": { - "$date": "2022-03-09T04:02:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1861a531-d739-45a5-a225-f50614576354", - "start": { - "$date": "2022-03-09T04:02:51.000Z" - }, - "end": { - "$date": "2022-03-09T04:18:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea7cc161-04b6-4e25-bfdd-2b606fab18cd", - "start": { - "$date": "2022-03-09T04:18:51.000Z" - }, - "end": { - "$date": "2022-03-09T04:25:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d788f112-33ac-48df-87cd-dc363a2eef6f", - "start": { - "$date": "2022-03-09T04:25:51.000Z" - }, - "end": { - "$date": "2022-03-09T04:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "179b1314-ee0e-4f1c-82d7-70091af431b6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-09T03:51:36.000Z" - }, - "end": { - "$date": "2022-03-09T04:16:02.000Z" - }, - "events": [ - { - "uuid": "8d45224f-293b-442c-9b88-52819cfbee0e", - "start": { - "$date": "2022-03-09T03:51:36.000Z" - }, - "end": { - "$date": "2022-03-09T04:16:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2a3b2e80-bc9d-4bea-ba3e-1e0b2c296c1a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T04:10:35.000Z" - }, - "end": { - "$date": "2022-03-09T04:26:12.000Z" - }, - "events": [ - { - "uuid": "4591b07c-ebd4-48a3-bc61-8aad7b726dcf", - "start": { - "$date": "2022-03-09T04:10:35.000Z" - }, - "end": { - "$date": "2022-03-09T04:26:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", - "uuid": "8af3f744-b55e-4321-a743-5d504b4e1024", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-09T04:22:04.000Z" - }, - "end": { - "$date": "2022-03-09T05:28:27.000Z" - }, - "events": [ - { - "uuid": "7f102af3-056f-46ff-8ce1-aaa665cd23e3", - "start": { - "$date": "2022-03-09T04:22:04.000Z" - }, - "end": { - "$date": "2022-03-09T05:28:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "103be402-38c7-4b36-8032-d7c6ed1fbdc5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-09T04:23:32.000Z" - }, - "end": { - "$date": "2022-03-09T07:14:12.000Z" - }, - "events": [ - { - "uuid": "f3ad3ee8-19b8-4b48-84b2-922da03b5355", - "start": { - "$date": "2022-03-09T04:23:32.000Z" - }, - "end": { - "$date": "2022-03-09T07:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "877e38cf-4a92-4821-a393-540c3e439958", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-09T04:25:03.000Z" - }, - "end": { - "$date": "2022-03-09T05:36:12.000Z" - }, - "events": [ - { - "uuid": "8d94eb01-f6ca-4301-a2b3-0798de5457b9", - "start": { - "$date": "2022-03-09T04:25:03.000Z" - }, - "end": { - "$date": "2022-03-09T05:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "987b47e2-45e0-479e-bd4d-fc92e2965475", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T04:30:37.000Z" - }, - "end": { - "$date": "2022-03-09T05:00:55.000Z" - }, - "events": [ - { - "uuid": "40530e35-cd7f-4778-a67e-3f5af1d15912", - "start": { - "$date": "2022-03-09T04:30:37.000Z" - }, - "end": { - "$date": "2022-03-09T05:00:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "61e9f41b-95e4-4774-948e-107161ebdd8d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-09T04:33:39.000Z" - }, - "end": { - "$date": "2022-03-09T07:16:47.000Z" - }, - "events": [ - { - "uuid": "5fd43308-2b41-4d8a-a3ee-ba6816defe6d", - "start": { - "$date": "2022-03-09T04:33:39.000Z" - }, - "end": { - "$date": "2022-03-09T07:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09b7f689-dfd4-46c3-b41a-186fae3207f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T05:02:12.000Z" - }, - "end": { - "$date": "2022-03-09T06:21:16.000Z" - }, - "events": [ - { - "uuid": "1efde4db-83ac-45dd-8f4b-4f2990b71ab3", - "start": { - "$date": "2022-03-09T05:02:12.000Z" - }, - "end": { - "$date": "2022-03-09T06:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "4f798f8f-d759-4757-bae4-a8fe1dd16ff4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T05:09:05.000Z" - }, - "end": { - "$date": "2022-03-09T07:07:10.000Z" - }, - "events": [ - { - "uuid": "fc34cc53-1b08-4a4c-acee-e83628041e71", - "start": { - "$date": "2022-03-09T05:09:05.000Z" - }, - "end": { - "$date": "2022-03-09T07:07:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c2ac1f07-c12a-41d7-b0f9-22c66731f01c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-09T05:30:53.000Z" - }, - "end": { - "$date": "2022-03-09T07:09:09.000Z" - }, - "events": [ - { - "uuid": "834d5034-bfd6-44f6-bba4-9734a22e8817", - "start": { - "$date": "2022-03-09T05:30:53.000Z" - }, - "end": { - "$date": "2022-03-09T07:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "aff8138b-31a3-49d0-bde9-906ba3d654d2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-09T05:38:07.000Z" - }, - "end": { - "$date": "2022-03-09T05:46:14.000Z" - }, - "events": [ - { - "uuid": "3acdef35-4b75-4293-bd13-1ed05c28b155", - "start": { - "$date": "2022-03-09T05:38:07.000Z" - }, - "end": { - "$date": "2022-03-09T05:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d292ef3-308a-4b26-b486-52a39813e743", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-09T05:50:12.000Z" - }, - "end": { - "$date": "2022-03-09T06:19:38.000Z" - }, - "events": [ - { - "uuid": "8df46290-c970-496b-b4a8-eb5bf8b5b78a", - "start": { - "$date": "2022-03-09T05:50:12.000Z" - }, - "end": { - "$date": "2022-03-09T06:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ec8201af-7e5a-48d7-98aa-79443231fc15", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-09T05:51:27.000Z" - }, - "end": { - "$date": "2022-03-09T05:54:13.000Z" - }, - "events": [ - { - "uuid": "223694a9-22ea-4c2a-b946-22dc27b0499a", - "start": { - "$date": "2022-03-09T05:51:27.000Z" - }, - "end": { - "$date": "2022-03-09T05:54:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0fba3574-4fa2-4b73-9438-48f428c75cb8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-09T05:54:47.000Z" - }, - "end": { - "$date": "2022-03-09T06:24:55.000Z" - }, - "events": [ - { - "uuid": "8dbb90c5-d82b-4103-817c-85650784c17d", - "start": { - "$date": "2022-03-09T05:54:47.000Z" - }, - "end": { - "$date": "2022-03-09T06:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "738b530e-c061-45ca-90be-28d03aa4266e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T05:56:27.000Z" - }, - "end": { - "$date": "2022-03-09T06:18:02.000Z" - }, - "events": [ - { - "uuid": "6d0b1497-f771-435b-8bbc-1dfd93306cc1", - "start": { - "$date": "2022-03-09T05:56:27.000Z" - }, - "end": { - "$date": "2022-03-09T06:18:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04995f43-e2ca-4de4-9030-dd3bc26e6f0e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-09T06:27:04.000Z" - }, - "end": { - "$date": "2022-03-09T06:57:40.000Z" - }, - "events": [ - { - "uuid": "3b3f57f1-92d1-42aa-afe2-952db36a3a00", - "start": { - "$date": "2022-03-09T06:27:04.000Z" - }, - "end": { - "$date": "2022-03-09T06:57:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "275232f1-615b-41a6-9843-c80dcbe7aa84", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-09T06:34:12.000Z" - }, - "end": { - "$date": "2022-03-09T07:14:14.000Z" - }, - "events": [ - { - "uuid": "c26a954c-f998-439b-ba66-8faa57cddad5", - "start": { - "$date": "2022-03-09T06:34:12.000Z" - }, - "end": { - "$date": "2022-03-09T07:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b812688-cd57-4b5e-bce7-aeca822d72ea", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-09T07:22:13.000Z" - }, - "end": { - "$date": "2022-03-09T07:52:29.000Z" - }, - "events": [ - { - "uuid": "6fbe9b3b-42f9-4466-9708-9fd5b6975368", - "start": { - "$date": "2022-03-09T07:22:13.000Z" - }, - "end": { - "$date": "2022-03-09T07:52:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4828aee2-01f9-4107-b78f-6f5deba0cb22", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-09T07:35:49.000Z" - }, - "end": { - "$date": "2022-03-09T07:54:44.000Z" - }, - "events": [ - { - "uuid": "8ec9e7cf-1d11-4794-8fee-a3c1d39fdfd2", - "start": { - "$date": "2022-03-09T07:35:49.000Z" - }, - "end": { - "$date": "2022-03-09T07:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "56902e0c-91d2-4078-8482-411937c570a0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T15:31:19.000Z" - }, - "end": { - "$date": "2022-03-09T16:28:41.000Z" - }, - "events": [ - { - "uuid": "1ed31ba1-b0a6-4f95-a17b-7adf14baf69c", - "start": { - "$date": "2022-03-09T15:31:19.000Z" - }, - "end": { - "$date": "2022-03-09T16:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "26752c08-8389-459e-bae7-f2d43b5e70a0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T16:29:19.000Z" - }, - "end": { - "$date": "2022-03-09T16:55:46.000Z" - }, - "events": [ - { - "uuid": "2c457edf-531e-4b36-8ed1-492e5820a1be", - "start": { - "$date": "2022-03-09T16:29:19.000Z" - }, - "end": { - "$date": "2022-03-09T16:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e55b1853-234a-471f-8585-94fce4f0656b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-09T16:29:45.000Z" - }, - "end": { - "$date": "2022-03-09T16:44:26.000Z" - }, - "events": [ - { - "uuid": "511bb0a1-9191-4206-9b1e-61fea234e788", - "start": { - "$date": "2022-03-09T16:29:45.000Z" - }, - "end": { - "$date": "2022-03-09T16:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "425068c3-4a99-430a-800d-457895a15744", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-09T17:08:13.000Z" - }, - "end": { - "$date": "2022-03-09T17:25:28.000Z" - }, - "events": [ - { - "uuid": "ebfb874e-5f8a-4259-91c1-b4987b75c72e", - "start": { - "$date": "2022-03-09T17:08:13.000Z" - }, - "end": { - "$date": "2022-03-09T17:25:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "5b25d084-bb26-455c-bf9c-949a415eb141", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-03-09T17:13:19.000Z" - }, - "end": { - "$date": "2022-03-09T18:18:35.000Z" - }, - "events": [ - { - "uuid": "578a7e47-33b7-4660-a01d-dae19981e613", - "start": { - "$date": "2022-03-09T17:13:19.000Z" - }, - "end": { - "$date": "2022-03-09T18:18:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c52187ee-b53c-4943-b4c9-94294d6b822d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-09T17:54:33.000Z" - }, - "end": { - "$date": "2022-03-09T18:15:30.000Z" - }, - "events": [ - { - "uuid": "c7d8708a-fb78-40ca-89a6-3bc82126ba1a", - "start": { - "$date": "2022-03-09T17:54:33.000Z" - }, - "end": { - "$date": "2022-03-09T18:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ad2b5735-2b0f-40e9-bf5f-71fbb729cb68", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T18:12:50.000Z" - }, - "end": { - "$date": "2022-03-09T18:24:02.000Z" - }, - "events": [ - { - "uuid": "47342531-9d83-4e7a-8225-7a35aa14100d", - "start": { - "$date": "2022-03-09T18:12:50.000Z" - }, - "end": { - "$date": "2022-03-09T18:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee48cf4d-1d35-4f21-8105-ce26c35d5a14", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T20:19:20.000Z" - }, - "end": { - "$date": "2022-03-09T20:37:27.000Z" - }, - "events": [ - { - "uuid": "358d9a49-a628-49d0-854a-ad5fb89a7719", - "start": { - "$date": "2022-03-09T20:19:20.000Z" - }, - "end": { - "$date": "2022-03-09T20:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1c9e416c-f334-4315-8f3b-7037be9e1cee", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-09T21:03:06.000Z" - }, - "end": { - "$date": "2022-03-09T23:00:27.000Z" - }, - "events": [ - { - "uuid": "2ed5527e-452c-4913-8b0f-b3d52a7931eb", - "start": { - "$date": "2022-03-09T21:03:06.000Z" - }, - "end": { - "$date": "2022-03-09T23:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8aca16ee-ba68-4346-838b-5bca28bab763", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T22:01:58.000Z" - }, - "end": { - "$date": "2022-03-09T22:02:03.000Z" - }, - "events": [ - { - "uuid": "e94deef4-016a-4d72-a01f-a6c206b1e871", - "start": { - "$date": "2022-03-09T22:01:58.000Z" - }, - "end": { - "$date": "2022-03-09T22:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "53b47067-a2f0-41c0-8482-153e7fade53c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T22:02:06.000Z" - }, - "end": { - "$date": "2022-03-09T22:03:10.000Z" - }, - "events": [ - { - "uuid": "11bb0419-75f2-4cb4-a9a0-850b6d0e95e2", - "start": { - "$date": "2022-03-09T22:02:06.000Z" - }, - "end": { - "$date": "2022-03-09T22:03:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b35e128d-2abc-48b1-a044-a4c96ab4cfeb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T22:04:55.000Z" - }, - "end": { - "$date": "2022-03-09T22:23:51.000Z" - }, - "events": [ - { - "uuid": "f9526698-daca-484f-963f-b5ded25b8e44", - "start": { - "$date": "2022-03-09T22:04:55.000Z" - }, - "end": { - "$date": "2022-03-09T22:23:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c46b0025-2707-43e9-9feb-a2899d1dadf1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-09T22:27:56.000Z" - }, - "end": { - "$date": "2022-03-09T22:44:43.000Z" - }, - "events": [ - { - "uuid": "8b77c248-9a05-4509-a338-36c287884e00", - "start": { - "$date": "2022-03-09T22:27:56.000Z" - }, - "end": { - "$date": "2022-03-09T22:44:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "83a625f0-95f4-4872-bafd-92ff11bbe0a1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-09T23:00:49.000Z" - }, - "end": { - "$date": "2022-03-10T00:02:04.000Z" - }, - "events": [ - { - "uuid": "f431eadd-02d5-47dc-8768-d0a5bca3b355", - "start": { - "$date": "2022-03-09T23:00:49.000Z" - }, - "end": { - "$date": "2022-03-10T00:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "727f36a7-05cb-477a-99dd-7bfad25d7a27", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-09T23:08:30.000Z" - }, - "end": { - "$date": "2022-03-09T23:41:14.000Z" - }, - "events": [ - { - "uuid": "e170d3e9-ebf4-4466-a0cb-d0181bfe867c", - "start": { - "$date": "2022-03-09T23:08:30.000Z" - }, - "end": { - "$date": "2022-03-09T23:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5d7ae71e-6e33-4afc-8c5e-2bb809fcc9ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T23:29:59.000Z" - }, - "end": { - "$date": "2022-03-09T23:32:34.000Z" - }, - "events": [ - { - "uuid": "9d8c378f-2afd-4005-aa0c-6d1e89681e77", - "start": { - "$date": "2022-03-09T23:29:59.000Z" - }, - "end": { - "$date": "2022-03-09T23:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8df3a027-4e0f-44a3-be8b-873d9ed5301f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-09T23:35:39.000Z" - }, - "end": { - "$date": "2022-03-10T01:18:52.000Z" - }, - "events": [ - { - "uuid": "ec12c892-70dd-4d10-b6f0-8867ddd6a923", - "start": { - "$date": "2022-03-09T23:35:39.000Z" - }, - "end": { - "$date": "2022-03-10T01:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2da8a12e-8e83-43e8-92df-003219dcbc18", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-10T00:37:39.000Z" - }, - "end": { - "$date": "2022-03-10T04:07:15.000Z" - }, - "events": [ - { - "uuid": "09db631b-e56f-4483-904d-94c0fea76cea", - "start": { - "$date": "2022-03-10T00:37:39.000Z" - }, - "end": { - "$date": "2022-03-10T03:19:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8d2e6cb7-61da-4a17-9a81-68794e744042", - "start": { - "$date": "2022-03-10T03:19:39.000Z" - }, - "end": { - "$date": "2022-03-10T03:33:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "181a8b1f-f709-4b7f-b8bb-e64702859372", - "start": { - "$date": "2022-03-10T03:33:39.000Z" - }, - "end": { - "$date": "2022-03-10T03:35:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f90be1de-55c1-480c-a709-49f930afb0d0", - "start": { - "$date": "2022-03-10T03:35:39.000Z" - }, - "end": { - "$date": "2022-03-10T04:07:15.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6e8e8ed2-4458-4c07-9aac-d69cf3957321", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-10T00:38:58.000Z" - }, - "end": { - "$date": "2022-03-10T01:20:15.000Z" - }, - "events": [ - { - "uuid": "7dd50bcb-b903-4a06-9add-f9f830d2b60f", - "start": { - "$date": "2022-03-10T00:38:58.000Z" - }, - "end": { - "$date": "2022-03-10T01:20:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "202d1333-d001-411e-9138-a90cecb6e720", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-10T00:45:49.000Z" - }, - "end": { - "$date": "2022-03-10T00:50:54.000Z" - }, - "events": [ - { - "uuid": "4886e83a-6f5d-4510-ad2f-882f7fb0ebbc", - "start": { - "$date": "2022-03-10T00:45:49.000Z" - }, - "end": { - "$date": "2022-03-10T00:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "49a96d3d-d020-43d3-8664-cd437bb5516e", - "uuid": "88d01c37-b9b9-4c86-b090-be2428ebe68f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-10T00:52:50.000Z" - }, - "end": { - "$date": "2022-03-10T01:10:00.000Z" - }, - "events": [ - { - "uuid": "c6aa2d79-3737-4fc6-b8ca-533b71974646", - "start": { - "$date": "2022-03-10T00:52:50.000Z" - }, - "end": { - "$date": "2022-03-10T01:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "49a96d3d-d020-43d3-8664-cd437bb5516e", - "uuid": "2ff4c58d-12d0-41ed-a232-9e794ed1e762", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-10T00:56:05.000Z" - }, - "end": { - "$date": "2022-03-10T01:09:45.000Z" - }, - "events": [ - { - "uuid": "2f192701-4ba5-4577-a950-d4435792bf7a", - "start": { - "$date": "2022-03-10T00:56:05.000Z" - }, - "end": { - "$date": "2022-03-10T01:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ff9d7e70-1b3a-4139-9a77-034bd5427e15", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-10T00:57:47.000Z" - }, - "end": { - "$date": "2022-03-10T02:16:18.000Z" - }, - "events": [ - { - "uuid": "e5ddddb1-e31d-4738-b673-543b28457f6b", - "start": { - "$date": "2022-03-10T00:57:47.000Z" - }, - "end": { - "$date": "2022-03-10T02:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "98bf1df3-fcdc-45c0-90a7-acc5e1717137", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-10T01:11:10.000Z" - }, - "end": { - "$date": "2022-03-10T01:29:55.000Z" - }, - "events": [ - { - "uuid": "96e8bbff-30fa-4683-b232-0882f60de237", - "start": { - "$date": "2022-03-10T01:11:10.000Z" - }, - "end": { - "$date": "2022-03-10T01:29:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "7798bc02-5d6c-4a8c-af83-ba745a21550c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-10T01:15:08.000Z" - }, - "end": { - "$date": "2022-03-10T01:35:07.000Z" - }, - "events": [ - { - "uuid": "b57fb47a-e06d-4d56-b859-ee579cede963", - "start": { - "$date": "2022-03-10T01:15:08.000Z" - }, - "end": { - "$date": "2022-03-10T01:35:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "86f2eac7-2028-4498-b4c5-2be33bf436cc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-10T01:36:52.000Z" - }, - "end": { - "$date": "2022-03-10T01:45:45.000Z" - }, - "events": [ - { - "uuid": "6cd70555-41ae-4f2d-922f-aa11e33e8b6d", - "start": { - "$date": "2022-03-10T01:36:52.000Z" - }, - "end": { - "$date": "2022-03-10T01:45:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3a44933f-7f5c-4aa5-94c5-966eb3de1b65", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-10T01:46:50.000Z" - }, - "end": { - "$date": "2022-03-10T01:53:31.000Z" - }, - "events": [ - { - "uuid": "e3a53421-1df9-44fb-9a56-0e891d7dbe82", - "start": { - "$date": "2022-03-10T01:46:50.000Z" - }, - "end": { - "$date": "2022-03-10T01:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "07a86b71-2993-4917-b4f2-b51e878b43c2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-10T01:57:12.000Z" - }, - "end": { - "$date": "2022-03-10T02:35:16.000Z" - }, - "events": [ - { - "uuid": "fc748386-2c2d-41c9-ad98-726d13538bcc", - "start": { - "$date": "2022-03-10T01:57:12.000Z" - }, - "end": { - "$date": "2022-03-10T02:35:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "958ec16a-9eb9-4835-ac54-ab7c339eb350", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-10T01:58:03.000Z" - }, - "end": { - "$date": "2022-03-10T02:09:50.000Z" - }, - "events": [ - { - "uuid": "48577e98-3905-4d12-a039-5b4288f9df22", - "start": { - "$date": "2022-03-10T01:58:03.000Z" - }, - "end": { - "$date": "2022-03-10T02:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c1839ef9-049f-4a0b-b043-2f6ffb60eeb9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-10T02:34:51.000Z" - }, - "end": { - "$date": "2022-03-10T06:21:30.000Z" - }, - "events": [ - { - "uuid": "7b9c43b7-8f7c-4fed-a016-beee6a0cbb5a", - "start": { - "$date": "2022-03-10T02:34:51.000Z" - }, - "end": { - "$date": "2022-03-10T06:21:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "77e715e6-4621-4617-842f-73ea1f9ade9f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T03:00:03.000Z" - }, - "end": { - "$date": "2022-03-10T04:53:18.000Z" - }, - "events": [ - { - "uuid": "eb626e04-bc1e-43b7-9fff-fb9fd48bf25c", - "start": { - "$date": "2022-03-10T03:00:03.000Z" - }, - "end": { - "$date": "2022-03-10T04:53:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c40fe559-bd88-4486-baff-8e124f219369", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-10T03:19:43.000Z" - }, - "end": { - "$date": "2022-03-10T03:31:50.000Z" - }, - "events": [ - { - "uuid": "8040f7c7-927d-4f06-a9a8-a893681b9147", - "start": { - "$date": "2022-03-10T03:19:43.000Z" - }, - "end": { - "$date": "2022-03-10T03:31:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c8a20055-94db-4718-af54-2a09b8a3e6b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-10T03:38:30.000Z" - }, - "end": { - "$date": "2022-03-10T03:40:20.000Z" - }, - "events": [ - { - "uuid": "f690ec36-04db-49d3-bfe5-c51a017527f2", - "start": { - "$date": "2022-03-10T03:38:30.000Z" - }, - "end": { - "$date": "2022-03-10T03:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbdf2b49-753b-44b3-a90b-73c72f7842af", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-10T05:16:51.000Z" - }, - "end": { - "$date": "2022-03-10T05:51:36.000Z" - }, - "events": [ - { - "uuid": "dac776d8-a72a-48d5-9c71-f290f0b7c4bf", - "start": { - "$date": "2022-03-10T05:16:51.000Z" - }, - "end": { - "$date": "2022-03-10T05:51:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "763f6bc0-b3de-42ab-a3a8-6762eea31771", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-10T05:29:24.000Z" - }, - "end": { - "$date": "2022-03-10T05:50:25.000Z" - }, - "events": [ - { - "uuid": "9c9b14e8-a549-4e09-b8dc-81e333855fad", - "start": { - "$date": "2022-03-10T05:29:24.000Z" - }, - "end": { - "$date": "2022-03-10T05:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4fc9e536-6f95-4a47-9d96-dfd272b5f6d7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T05:54:00.000Z" - }, - "end": { - "$date": "2022-03-10T06:13:06.000Z" - }, - "events": [ - { - "uuid": "28796ae1-126a-458f-b2b1-4ea66ad150c6", - "start": { - "$date": "2022-03-10T05:54:00.000Z" - }, - "end": { - "$date": "2022-03-10T06:13:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5be01294-14f1-4147-9adc-3b7a1f1d6651", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T06:18:11.000Z" - }, - "end": { - "$date": "2022-03-10T06:30:46.000Z" - }, - "events": [ - { - "uuid": "3da2d8bf-8ba0-486c-96dd-79299e25d488", - "start": { - "$date": "2022-03-10T06:18:11.000Z" - }, - "end": { - "$date": "2022-03-10T06:30:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09e2e306-65b3-41d2-ae3e-d55746f8d90f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-10T06:17:28.000Z" - }, - "end": { - "$date": "2022-03-10T06:20:33.000Z" - }, - "events": [ - { - "uuid": "a7534c53-0f74-42b5-8199-4f7da610c007", - "start": { - "$date": "2022-03-10T06:17:28.000Z" - }, - "end": { - "$date": "2022-03-10T06:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b69ce10-7e06-458b-ad71-10c86826388d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T06:40:47.000Z" - }, - "end": { - "$date": "2022-03-10T07:04:43.000Z" - }, - "events": [ - { - "uuid": "8c9b2128-fab2-4f92-b911-63191f3269dd", - "start": { - "$date": "2022-03-10T06:40:47.000Z" - }, - "end": { - "$date": "2022-03-10T07:04:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25d1b927-b770-4221-acc6-1902e37b95a0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T07:12:49.000Z" - }, - "end": { - "$date": "2022-03-10T07:33:20.000Z" - }, - "events": [ - { - "uuid": "5677ba62-186d-4da0-b250-11581f43fc2b", - "start": { - "$date": "2022-03-10T07:12:49.000Z" - }, - "end": { - "$date": "2022-03-10T07:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "771fc9ef-540f-4055-a7fb-415071ebc08b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T07:39:35.000Z" - }, - "end": { - "$date": "2022-03-10T08:02:32.000Z" - }, - "events": [ - { - "uuid": "fb5a8072-edb5-4b3a-821f-24ee9f6dd636", - "start": { - "$date": "2022-03-10T07:39:35.000Z" - }, - "end": { - "$date": "2022-03-10T08:02:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "00ec3f89-4cf5-4431-9f01-c91985a6520b", - "uuid": "49d0895a-00ae-4312-8f0a-3cae28a40536", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-10T07:47:30.000Z" - }, - "end": { - "$date": "2022-03-10T11:40:23.000Z" - }, - "events": [ - { - "uuid": "89008c5c-fd90-4f87-8e98-dc822fa3c0f5", - "start": { - "$date": "2022-03-10T07:47:30.000Z" - }, - "end": { - "$date": "2022-03-10T11:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "af609a39-25d9-4152-af0f-33f801c1d565", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-10T08:07:11.000Z" - }, - "end": { - "$date": "2022-03-10T08:30:22.000Z" - }, - "events": [ - { - "uuid": "5fc70be9-8854-4a3d-999c-4e41594962bb", - "start": { - "$date": "2022-03-10T08:07:11.000Z" - }, - "end": { - "$date": "2022-03-10T08:30:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5b284945-5429-4226-9de3-1e7522eeec9e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-08T04:55:20.000Z" - }, - "end": { - "$date": "2022-06-08T05:37:17.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-06-08T04:55:20.000Z" - }, - "end": { - "$date": "2022-06-08T05:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "28257cbb-284f-440b-bd9f-06fc3ec367c2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-10T18:05:42.000Z" - }, - "end": { - "$date": "2022-03-10T19:00:49.000Z" - }, - "events": [ - { - "uuid": "a0bd8595-ca33-4a62-95a2-a0406d7c883f", - "start": { - "$date": "2022-03-10T18:05:42.000Z" - }, - "end": { - "$date": "2022-03-10T19:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "717176b6-aec6-415f-96c7-ccc48e6ad7b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-10T22:03:13.000Z" - }, - "end": { - "$date": "2022-03-10T22:32:34.000Z" - }, - "events": [ - { - "uuid": "9907885d-f85d-4bcd-aa08-f888ff87ab78", - "start": { - "$date": "2022-03-10T22:03:13.000Z" - }, - "end": { - "$date": "2022-03-10T22:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "caf5c6b5-6f60-4f82-9759-2ac5e9ecfdd2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-10T22:35:48.000Z" - }, - "end": { - "$date": "2022-03-10T22:37:53.000Z" - }, - "events": [ - { - "uuid": "5d0edbd3-5439-4e0b-8c31-514498202ebd", - "start": { - "$date": "2022-03-10T22:35:48.000Z" - }, - "end": { - "$date": "2022-03-10T22:37:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "b2347c9b-004b-4fbe-ac48-f31fe549ff9f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-10T22:38:28.000Z" - }, - "end": { - "$date": "2022-03-10T22:42:43.000Z" - }, - "events": [ - { - "uuid": "61c2f637-7b09-4981-8374-4acc60ce0984", - "start": { - "$date": "2022-03-10T22:38:28.000Z" - }, - "end": { - "$date": "2022-03-10T22:42:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44204463-eba4-4e31-b9c6-2748db291f27", - "uuid": "1db43d00-d8f4-4c78-a29e-e6b5a80b1e98", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-10T22:43:58.000Z" - }, - "end": { - "$date": "2022-03-10T23:52:28.000Z" - }, - "events": [ - { - "uuid": "750a3b64-fa1f-4d72-b267-92b574f9a748", - "start": { - "$date": "2022-03-10T22:43:58.000Z" - }, - "end": { - "$date": "2022-03-10T23:29:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa831288-549d-43de-a1dd-cbfbb7e2e5ee", - "start": { - "$date": "2022-03-10T23:29:58.000Z" - }, - "end": { - "$date": "2022-03-10T23:34:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92200ed0-141e-4f04-9792-66e95ea23664", - "start": { - "$date": "2022-03-10T23:34:58.000Z" - }, - "end": { - "$date": "2022-03-10T23:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a71990b1-e396-4418-9b91-98d794b59fb4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-10T23:01:51.000Z" - }, - "end": { - "$date": "2022-03-10T23:56:15.000Z" - }, - "events": [ - { - "uuid": "5ad039a4-4f27-4773-8b8a-1e2dbdb9fa1d", - "start": { - "$date": "2022-03-10T23:01:51.000Z" - }, - "end": { - "$date": "2022-03-10T23:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", - "uuid": "ad93d465-19d3-4f3b-bc2c-224168c894b1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T00:06:54.000Z" - }, - "end": { - "$date": "2022-03-11T00:49:05.000Z" - }, - "events": [ - { - "uuid": "29c72c3f-460c-42d5-a05d-533673aca117", - "start": { - "$date": "2022-03-11T00:06:54.000Z" - }, - "end": { - "$date": "2022-03-11T00:49:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "245ac76c-b032-4778-a165-90bc994ad8c9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T01:00:26.000Z" - }, - "end": { - "$date": "2022-03-11T01:56:38.000Z" - }, - "events": [ - { - "uuid": "1032633b-8f63-4773-8690-db94dd40fdff", - "start": { - "$date": "2022-03-11T01:00:26.000Z" - }, - "end": { - "$date": "2022-03-11T01:56:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "9e9bc435-011e-4efc-88ac-47089e9eab8e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-11T01:22:55.000Z" - }, - "end": { - "$date": "2022-03-11T02:54:43.000Z" - }, - "events": [ - { - "uuid": "4b436e81-bcc2-4bcf-88a8-cd701b4ed012", - "start": { - "$date": "2022-03-11T01:22:55.000Z" - }, - "end": { - "$date": "2022-03-11T02:54:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "63f85319-cbd8-43c2-9514-2eac87983260", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-11T01:27:03.000Z" - }, - "end": { - "$date": "2022-03-11T01:41:03.000Z" - }, - "events": [ - { - "uuid": "d6e2156a-9ef9-4aa4-b690-0ea1a4dab5e6", - "start": { - "$date": "2022-03-11T01:27:03.000Z" - }, - "end": { - "$date": "2022-03-11T01:41:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f1eede85-d588-4d34-a642-daf80558a5ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-10T23:56:10.000Z" - }, - "end": { - "$date": "2022-03-11T01:57:00.000Z" - }, - "events": [ - { - "uuid": "3ab41be8-36f4-4e97-8829-97f57391416f", - "start": { - "$date": "2022-03-10T23:56:10.000Z" - }, - "end": { - "$date": "2022-03-11T01:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "2cba59dd-43a6-4ee5-9339-d40484720714", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T01:57:27.000Z" - }, - "end": { - "$date": "2022-03-11T02:06:08.000Z" - }, - "events": [ - { - "uuid": "95b9a3fe-e9d0-44b7-bb03-a149420712a0", - "start": { - "$date": "2022-03-11T01:57:27.000Z" - }, - "end": { - "$date": "2022-03-11T02:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "765c5afb-ea71-4ffe-bed8-1011ef983c82", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-11T02:11:21.000Z" - }, - "end": { - "$date": "2022-03-11T04:09:25.000Z" - }, - "events": [ - { - "uuid": "dd4ab648-4ec9-4655-a6d5-f5fea3067790", - "start": { - "$date": "2022-03-11T02:11:21.000Z" - }, - "end": { - "$date": "2022-03-11T02:28:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4381e513-35be-49eb-9c0d-b88945c781c4", - "start": { - "$date": "2022-03-11T02:28:21.000Z" - }, - "end": { - "$date": "2022-03-11T02:30:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e1cf74bd-7be1-4c98-b470-59e132a89ebb", - "start": { - "$date": "2022-03-11T02:30:21.000Z" - }, - "end": { - "$date": "2022-03-11T04:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "33e4669d-ffb6-46aa-b0ef-19b8012dae44", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T02:48:02.000Z" - }, - "end": { - "$date": "2022-03-11T02:52:17.000Z" - }, - "events": [ - { - "uuid": "739c0e63-f6d0-4b4a-90f6-7f0f9a7d2e27", - "start": { - "$date": "2022-03-11T02:48:02.000Z" - }, - "end": { - "$date": "2022-03-11T02:52:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "e00351c7-a768-443a-9da2-bb86ec45b9ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T02:52:22.000Z" - }, - "end": { - "$date": "2022-03-11T03:03:32.000Z" - }, - "events": [ - { - "uuid": "3371faa5-0804-48e9-8ffb-c07f4585c97b", - "start": { - "$date": "2022-03-11T02:52:22.000Z" - }, - "end": { - "$date": "2022-03-11T03:03:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "49ec3343-f8dd-4814-a00f-58b6c9c482ef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T03:04:02.000Z" - }, - "end": { - "$date": "2022-03-11T04:02:28.000Z" - }, - "events": [ - { - "uuid": "f77ae985-a8d7-4329-9e12-472be566208e", - "start": { - "$date": "2022-03-11T03:04:02.000Z" - }, - "end": { - "$date": "2022-03-11T04:02:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ab149fc2-ff84-4d62-97a8-0c082b8344ef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-11T03:10:51.000Z" - }, - "end": { - "$date": "2022-03-11T07:39:15.000Z" - }, - "events": [ - { - "uuid": "eeda6528-29b5-454a-91dc-30510ba3f670", - "start": { - "$date": "2022-03-11T03:10:51.000Z" - }, - "end": { - "$date": "2022-03-11T07:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "59fa8bea-f444-4140-9a07-b92384aad8ee", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-11T03:17:43.000Z" - }, - "end": { - "$date": "2022-03-11T04:12:57.000Z" - }, - "events": [ - { - "uuid": "7811d065-1d66-464f-be17-d5fb4aadda04", - "start": { - "$date": "2022-03-11T03:17:43.000Z" - }, - "end": { - "$date": "2022-03-11T04:12:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "682f5c12-1266-4802-887e-635db4a6228c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T04:02:41.000Z" - }, - "end": { - "$date": "2022-03-11T04:33:47.000Z" - }, - "events": [ - { - "uuid": "da695eb5-8358-4700-9924-c1afe59c9dc4", - "start": { - "$date": "2022-03-11T04:02:41.000Z" - }, - "end": { - "$date": "2022-03-11T04:33:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", - "uuid": "45e37060-6cab-4796-be70-e1e6d710d8a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-11T04:08:15.000Z" - }, - "end": { - "$date": "2022-03-11T04:31:36.000Z" - }, - "events": [ - { - "uuid": "0eced19b-9a6a-441d-b291-22aee06f8652", - "start": { - "$date": "2022-03-11T04:08:15.000Z" - }, - "end": { - "$date": "2022-03-11T04:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "4321ecc8-b8e1-4184-9eab-2cafaca7d525", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T04:08:23.000Z" - }, - "end": { - "$date": "2022-03-11T04:15:08.000Z" - }, - "events": [ - { - "uuid": "b1769b90-ae4e-4d4c-be04-c035f2501621", - "start": { - "$date": "2022-03-11T04:08:23.000Z" - }, - "end": { - "$date": "2022-03-11T04:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "802e5141-f2cf-415a-82b9-bba21642806e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T04:20:33.000Z" - }, - "end": { - "$date": "2022-03-11T04:26:54.000Z" - }, - "events": [ - { - "uuid": "a268d5d2-147f-463b-b6c7-036b1c6a197f", - "start": { - "$date": "2022-03-11T04:20:33.000Z" - }, - "end": { - "$date": "2022-03-11T04:26:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0092665b-64e9-4f20-91eb-cce12af4a1ab", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-11T04:24:23.000Z" - }, - "end": { - "$date": "2022-03-11T07:03:29.000Z" - }, - "events": [ - { - "uuid": "00f319d1-5621-4158-bdc2-9b6bba559937", - "start": { - "$date": "2022-03-11T04:24:23.000Z" - }, - "end": { - "$date": "2022-03-11T07:03:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "607039b5-25e3-4cef-9091-d632d6b9243c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-11T04:25:03.000Z" - }, - "end": { - "$date": "2022-03-11T06:14:58.000Z" - }, - "events": [ - { - "uuid": "0eea5e48-7961-4f77-80f1-1460abd756f8", - "start": { - "$date": "2022-03-11T04:25:03.000Z" - }, - "end": { - "$date": "2022-03-11T06:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cf3fba86-c443-43a2-bf77-4331abb245c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T04:27:24.000Z" - }, - "end": { - "$date": "2022-03-11T05:37:43.000Z" - }, - "events": [ - { - "uuid": "6ac4fbd7-5da9-4cb8-9130-cc4c14bc284b", - "start": { - "$date": "2022-03-11T04:27:24.000Z" - }, - "end": { - "$date": "2022-03-11T05:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1cb9557c-cc47-4aa5-ad36-ea0a74aed977", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T04:40:22.000Z" - }, - "end": { - "$date": "2022-03-11T05:05:33.000Z" - }, - "events": [ - { - "uuid": "4f0ea39a-49f1-41b6-8163-81744bbaed55", - "start": { - "$date": "2022-03-11T04:40:22.000Z" - }, - "end": { - "$date": "2022-03-11T05:05:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "348e6bd7-b844-4230-88e7-fde7dfd694d0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-11T04:36:25.000Z" - }, - "end": { - "$date": "2022-03-11T06:39:16.000Z" - }, - "events": [ - { - "uuid": "c2ad754d-006f-4913-9d60-18496a157186", - "start": { - "$date": "2022-03-11T04:36:25.000Z" - }, - "end": { - "$date": "2022-03-11T06:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d97aaaad-efb1-4f27-a98c-5e7b1295f68b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-11T04:43:11.000Z" - }, - "end": { - "$date": "2022-03-11T07:06:05.000Z" - }, - "events": [ - { - "uuid": "6086bc64-f3fb-4b3c-b144-e1a31e006a45", - "start": { - "$date": "2022-03-11T04:43:11.000Z" - }, - "end": { - "$date": "2022-03-11T07:06:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "addbd8ab-36d2-4e1a-a8a0-f0004d2be8d8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-11T04:44:47.000Z" - }, - "end": { - "$date": "2022-03-11T07:04:27.000Z" - }, - "events": [ - { - "uuid": "b1322142-6d29-49b5-9bce-d0dc81e346c6", - "start": { - "$date": "2022-03-11T04:44:47.000Z" - }, - "end": { - "$date": "2022-03-11T07:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0012f400-07d4-4e49-9eaf-cdca66a55caf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-11T04:51:37.000Z" - }, - "end": { - "$date": "2022-03-11T06:15:20.000Z" - }, - "events": [ - { - "uuid": "5b8e5c5f-3e2a-4949-9cfa-09efd8a3ba6f", - "start": { - "$date": "2022-03-11T04:51:37.000Z" - }, - "end": { - "$date": "2022-03-11T06:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a329f86f-9e1f-4b37-992d-e2dbbfa1a534", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-11T04:57:02.000Z" - }, - "end": { - "$date": "2022-03-11T04:58:57.000Z" - }, - "events": [ - { - "uuid": "0e26e541-7c10-4e32-957c-98377ffdde5e", - "start": { - "$date": "2022-03-11T04:57:02.000Z" - }, - "end": { - "$date": "2022-03-11T04:58:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14061919-5655-496a-a69f-8b17580fe770", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T05:09:43.000Z" - }, - "end": { - "$date": "2022-03-11T05:32:24.000Z" - }, - "events": [ - { - "uuid": "0c9f4042-348e-46c4-b0b4-3e57ae6c24b3", - "start": { - "$date": "2022-03-11T05:09:43.000Z" - }, - "end": { - "$date": "2022-03-11T05:32:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5376efca-ffda-432b-8cd7-c5bd5a8c8f3c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-11T05:11:14.000Z" - }, - "end": { - "$date": "2022-03-11T05:13:44.000Z" - }, - "events": [ - { - "uuid": "9e47a1b5-869e-4dee-947c-e5833fe23698", - "start": { - "$date": "2022-03-11T05:11:14.000Z" - }, - "end": { - "$date": "2022-03-11T05:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "a8691e9e-f263-487f-9be9-3068ac4581f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-11T05:23:46.000Z" - }, - "end": { - "$date": "2022-03-11T05:53:06.000Z" - }, - "events": [ - { - "uuid": "6c4abd4c-022e-4db7-a802-95a6bb8537ca", - "start": { - "$date": "2022-03-11T05:23:46.000Z" - }, - "end": { - "$date": "2022-03-11T05:33:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1bd9a8dc-9ec3-4632-9f4d-1c8216e84314", - "start": { - "$date": "2022-03-11T05:33:46.000Z" - }, - "end": { - "$date": "2022-03-11T05:50:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "941a7249-9e2c-4e91-aa1a-bf6d962d7e6c", - "start": { - "$date": "2022-03-11T05:50:46.000Z" - }, - "end": { - "$date": "2022-03-11T05:53:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d149d6a-efcd-4c3d-bb8e-fc1d9b704ec6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T05:42:10.000Z" - }, - "end": { - "$date": "2022-03-11T06:29:36.000Z" - }, - "events": [ - { - "uuid": "a8294e45-80d1-4837-bcb9-41189f682b98", - "start": { - "$date": "2022-03-11T05:42:10.000Z" - }, - "end": { - "$date": "2022-03-11T06:29:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3b43288-a5b3-4e2b-95f3-f285eadb37d6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T06:38:07.000Z" - }, - "end": { - "$date": "2022-03-11T07:21:48.000Z" - }, - "events": [ - { - "uuid": "64df4cec-9f6c-4a03-a77f-94c4b1bce3fd", - "start": { - "$date": "2022-03-11T06:38:07.000Z" - }, - "end": { - "$date": "2022-03-11T07:21:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcc6249a-c717-4050-9e8b-d4f40606e43c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T07:26:13.000Z" - }, - "end": { - "$date": "2022-03-11T07:50:54.000Z" - }, - "events": [ - { - "uuid": "54650865-1f96-4a08-aa4a-0d9b36fe6f5b", - "start": { - "$date": "2022-03-11T07:26:13.000Z" - }, - "end": { - "$date": "2022-03-11T07:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "947a1a92-3dc8-4613-a371-30f58b5a836b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-11T08:17:53.000Z" - }, - "end": { - "$date": "2022-03-11T08:47:39.000Z" - }, - "events": [ - { - "uuid": "93ea3aac-bbac-48bd-b84e-19f2aff358e0", - "start": { - "$date": "2022-03-11T08:17:53.000Z" - }, - "end": { - "$date": "2022-03-11T08:47:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "77366eac-97f3-49a7-a148-3090da1a0db0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-11T08:53:07.000Z" - }, - "end": { - "$date": "2022-03-11T09:16:42.000Z" - }, - "events": [ - { - "uuid": "db1dc6ee-0274-4601-8963-c76045563d8b", - "start": { - "$date": "2022-03-11T08:53:07.000Z" - }, - "end": { - "$date": "2022-03-11T09:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5cdc5d5c-899d-4196-8227-c762ce5a19a4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-11T16:04:25.000Z" - }, - "end": { - "$date": "2022-03-11T17:25:53.000Z" - }, - "events": [ - { - "uuid": "535e9455-7f16-47f9-ae0c-b09afee85a63", - "start": { - "$date": "2022-03-11T16:04:25.000Z" - }, - "end": { - "$date": "2022-03-11T17:25:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "88bd433e-5d1c-4dda-b737-2d89df33ab93", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-11T20:10:04.000Z" - }, - "end": { - "$date": "2022-03-11T21:07:41.000Z" - }, - "events": [ - { - "uuid": "72fc6e74-72b1-4d2e-b9cf-c41b27d52949", - "start": { - "$date": "2022-03-11T20:10:04.000Z" - }, - "end": { - "$date": "2022-03-11T21:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dcdad86a-ccb6-4498-9194-d42d5d995ee6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-11T20:30:22.000Z" - }, - "end": { - "$date": "2022-03-11T20:32:43.000Z" - }, - "events": [ - { - "uuid": "72191859-c8ff-4eda-be5f-59796735edf2", - "start": { - "$date": "2022-03-11T20:30:22.000Z" - }, - "end": { - "$date": "2022-03-11T20:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0dd1e689-1af1-4ca4-842a-f2528f1904c5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-11T21:10:52.000Z" - }, - "end": { - "$date": "2022-03-11T21:10:59.000Z" - }, - "events": [ - { - "uuid": "882ae6d7-a210-4f11-9d83-914b3a7b5e5d", - "start": { - "$date": "2022-03-11T21:10:52.000Z" - }, - "end": { - "$date": "2022-03-11T21:10:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6fec0d9-949b-4f20-bdcf-69b8f64989ef", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-11T20:43:13.000Z" - }, - "end": { - "$date": "2022-03-11T21:00:38.000Z" - }, - "events": [ - { - "uuid": "d14bd4e6-6c1a-4e30-bf1f-97080cdb9303", - "start": { - "$date": "2022-03-11T20:43:13.000Z" - }, - "end": { - "$date": "2022-03-11T21:00:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a7375b7-2205-4553-b90e-ab2834bf9aa2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-11T21:02:04.000Z" - }, - "end": { - "$date": "2022-03-11T21:19:39.000Z" - }, - "events": [ - { - "uuid": "ed3cf9b3-b57f-4648-aaca-260cafb1b694", - "start": { - "$date": "2022-03-11T21:02:04.000Z" - }, - "end": { - "$date": "2022-03-11T21:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "496beaf9-3065-445a-a737-f9daaff5e8fc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-11T21:12:57.000Z" - }, - "end": { - "$date": "2022-03-11T21:43:56.000Z" - }, - "events": [ - { - "uuid": "57ebc1a9-201b-42f9-a885-73829907e862", - "start": { - "$date": "2022-03-11T21:12:57.000Z" - }, - "end": { - "$date": "2022-03-11T21:43:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad348789-be07-4493-b856-7ca080ce1beb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-11T21:20:45.000Z" - }, - "end": { - "$date": "2022-03-11T21:41:00.000Z" - }, - "events": [ - { - "uuid": "b1b1ea7e-0e38-4bdf-b4a3-0e9247e3bb0c", - "start": { - "$date": "2022-03-11T21:20:45.000Z" - }, - "end": { - "$date": "2022-03-11T21:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "dbf55373-31b3-471f-adcd-1cd133d79194", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-11T21:36:23.000Z" - }, - "end": { - "$date": "2022-03-11T22:46:00.000Z" - }, - "events": [ - { - "uuid": "e2957c00-5c7f-4d2a-98a5-9cfec9e925cc", - "start": { - "$date": "2022-03-11T21:36:23.000Z" - }, - "end": { - "$date": "2022-03-11T22:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "902526c7-1cc5-4794-9ae7-2575a2a79eba", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-11T21:41:46.000Z" - }, - "end": { - "$date": "2022-03-11T22:03:51.000Z" - }, - "events": [ - { - "uuid": "d348cbcc-530c-40db-a16a-d7a09d03c6ef", - "start": { - "$date": "2022-03-11T21:41:46.000Z" - }, - "end": { - "$date": "2022-03-11T22:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "a1c94ad7-a078-4198-b3ae-7d46f4003c7d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T22:09:35.000Z" - }, - "end": { - "$date": "2022-03-11T22:34:16.000Z" - }, - "events": [ - { - "uuid": "d622ea15-3b62-4791-bc47-ce8d9a68460f", - "start": { - "$date": "2022-03-11T22:09:35.000Z" - }, - "end": { - "$date": "2022-03-11T22:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "19ac0036-2c7a-4483-b720-badd753d8a2f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-11T22:15:13.000Z" - }, - "end": { - "$date": "2022-03-12T03:10:12.000Z" - }, - "events": [ - { - "uuid": "52b03461-a44c-4717-bcf4-73804cf07f34", - "start": { - "$date": "2022-03-11T22:15:13.000Z" - }, - "end": { - "$date": "2022-03-11T23:05:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b582b33-b80b-42a9-9c8b-d1dda0c5c190", - "start": { - "$date": "2022-03-11T23:05:13.000Z" - }, - "end": { - "$date": "2022-03-11T23:32:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "366c4676-e46e-46f9-9c4a-6dc27f85dbd5", - "start": { - "$date": "2022-03-11T23:32:13.000Z" - }, - "end": { - "$date": "2022-03-12T00:08:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cc222817-d53e-4418-b88b-9c8a63432512", - "start": { - "$date": "2022-03-12T00:08:13.000Z" - }, - "end": { - "$date": "2022-03-12T01:01:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "16c37223-f29a-4e0f-b9ad-b3dd84b01900", - "start": { - "$date": "2022-03-12T01:01:13.000Z" - }, - "end": { - "$date": "2022-03-12T01:26:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "34233697-3741-4626-a4a3-04d4f57a645f", - "start": { - "$date": "2022-03-12T01:26:13.000Z" - }, - "end": { - "$date": "2022-03-12T01:44:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f1ad799f-f5ec-44a0-a962-7c7af10c8380", - "start": { - "$date": "2022-03-12T01:44:13.000Z" - }, - "end": { - "$date": "2022-03-12T01:54:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5dc3b0c4-72d7-45f0-bfbd-ef3b66cd5963", - "start": { - "$date": "2022-03-12T01:54:13.000Z" - }, - "end": { - "$date": "2022-03-12T02:11:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d128d29-fd4d-4356-a5d8-d3b7fdb38c5d", - "start": { - "$date": "2022-03-12T02:11:13.000Z" - }, - "end": { - "$date": "2022-03-12T02:39:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d14f7f0-b9dc-42fd-ac68-82f71e5fbe6c", - "start": { - "$date": "2022-03-12T02:39:13.000Z" - }, - "end": { - "$date": "2022-03-12T02:49:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79baf60f-dda8-44a5-9316-6de02023ee1d", - "start": { - "$date": "2022-03-12T02:49:13.000Z" - }, - "end": { - "$date": "2022-03-12T03:07:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e7b5e5e6-ef84-4b7a-8637-c338c9277542", - "start": { - "$date": "2022-03-12T03:07:13.000Z" - }, - "end": { - "$date": "2022-03-12T03:08:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc779515-e441-4ced-8416-fea16de95427", - "start": { - "$date": "2022-03-12T03:08:13.000Z" - }, - "end": { - "$date": "2022-03-12T03:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "915a870c-5660-4b38-9239-088a74720039", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-11T22:18:29.000Z" - }, - "end": { - "$date": "2022-03-11T22:41:34.000Z" - }, - "events": [ - { - "uuid": "2806cf8e-9819-4b62-945b-89a8a93e352b", - "start": { - "$date": "2022-03-11T22:18:29.000Z" - }, - "end": { - "$date": "2022-03-11T22:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "22cb36e8-263f-4baf-aa4c-b2e7cba7cd28", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T22:37:41.000Z" - }, - "end": { - "$date": "2022-03-11T23:05:47.000Z" - }, - "events": [ - { - "uuid": "e16ec303-03e0-42db-9667-9e9734003932", - "start": { - "$date": "2022-03-11T22:37:41.000Z" - }, - "end": { - "$date": "2022-03-11T23:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b1125b04-3f9c-4baf-bbbf-db3b6e1b98c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-11T22:47:37.000Z" - }, - "end": { - "$date": "2022-03-12T00:25:16.000Z" - }, - "events": [ - { - "uuid": "ab46c434-584c-49e1-a8e1-9c1977f8afbc", - "start": { - "$date": "2022-03-11T22:47:37.000Z" - }, - "end": { - "$date": "2022-03-12T00:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9b3226cb-1288-4cd8-8073-f5b9766c144d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T23:07:12.000Z" - }, - "end": { - "$date": "2022-03-11T23:11:07.000Z" - }, - "events": [ - { - "uuid": "03d50919-c01e-44be-9747-5817944e5e08", - "start": { - "$date": "2022-03-11T23:07:12.000Z" - }, - "end": { - "$date": "2022-03-11T23:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "685f13b9-6f87-43e8-9444-cce33764d383", - "uuid": "e1ec6636-0619-4af6-afeb-fcef3e4e51d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T23:22:53.000Z" - }, - "end": { - "$date": "2022-03-11T23:24:09.000Z" - }, - "events": [ - { - "uuid": "b2c3eace-ed15-416e-a964-79ff424a3422", - "start": { - "$date": "2022-03-11T23:22:53.000Z" - }, - "end": { - "$date": "2022-03-11T23:24:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "6ad0bdf1-72b6-4358-8c57-a5803c5a705c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T23:24:23.000Z" - }, - "end": { - "$date": "2022-03-11T23:49:51.000Z" - }, - "events": [ - { - "uuid": "2840e33f-f18a-4fa0-9fbf-6742d44500ea", - "start": { - "$date": "2022-03-11T23:24:23.000Z" - }, - "end": { - "$date": "2022-03-11T23:49:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "1ecb0c97-5ef3-43ab-8851-61d8670f44d9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-11T23:54:34.000Z" - }, - "end": { - "$date": "2022-03-12T00:23:20.000Z" - }, - "events": [ - { - "uuid": "e1247fca-fd8c-48b4-a314-d61ab749e0c4", - "start": { - "$date": "2022-03-11T23:54:34.000Z" - }, - "end": { - "$date": "2022-03-12T00:23:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "66b6ab96-c78b-47fa-b4e5-4024a6e5d789", - "uuid": "e60dcb53-32f1-4538-b1bd-c47bb2b8785e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-12T00:24:10.000Z" - }, - "end": { - "$date": "2022-03-12T00:44:06.000Z" - }, - "events": [ - { - "uuid": "b607845f-4619-4163-9650-ef9f2c28f179", - "start": { - "$date": "2022-03-12T00:24:10.000Z" - }, - "end": { - "$date": "2022-03-12T00:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ee9e8e8d-92a0-4a14-85f9-ba13be02fb5b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-12T00:46:50.000Z" - }, - "end": { - "$date": "2022-03-12T01:10:57.000Z" - }, - "events": [ - { - "uuid": "b925c76c-f481-49fa-9ed4-ea9d16680d8d", - "start": { - "$date": "2022-03-12T00:46:50.000Z" - }, - "end": { - "$date": "2022-03-12T01:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8aede5a1-807d-46fc-afd7-fcd73b46d2a5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T01:31:38.000Z" - }, - "end": { - "$date": "2022-03-12T02:08:42.000Z" - }, - "events": [ - { - "uuid": "cbb350a3-b338-49d4-84ba-362c8c9a537f", - "start": { - "$date": "2022-03-12T01:31:38.000Z" - }, - "end": { - "$date": "2022-03-12T02:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "60c9e2c8-b1f7-4b3a-acde-a28ae9242b07", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-12T01:03:10.000Z" - }, - "end": { - "$date": "2022-03-12T04:20:14.000Z" - }, - "events": [ - { - "uuid": "46cf1168-7593-4e62-b25d-c84be47cac62", - "start": { - "$date": "2022-03-12T01:03:10.000Z" - }, - "end": { - "$date": "2022-03-12T03:03:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "216b57a4-4d2c-4ae9-bee8-daa9a1e44a13", - "start": { - "$date": "2022-03-12T03:03:10.000Z" - }, - "end": { - "$date": "2022-03-12T03:08:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "90b56f02-9225-4834-903a-b351357e2533", - "start": { - "$date": "2022-03-12T03:08:10.000Z" - }, - "end": { - "$date": "2022-03-12T03:18:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "66f773d0-ef0e-4c69-82e7-4e71c44a57aa", - "start": { - "$date": "2022-03-12T03:18:10.000Z" - }, - "end": { - "$date": "2022-03-12T03:23:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7157bfea-697b-4626-92df-86ebf315a64e", - "start": { - "$date": "2022-03-12T03:23:10.000Z" - }, - "end": { - "$date": "2022-03-12T04:20:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "dee81b6e-9806-46c1-9bbc-e11b8c9744d5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-12T01:11:42.000Z" - }, - "end": { - "$date": "2022-03-12T01:14:22.000Z" - }, - "events": [ - { - "uuid": "623a3fc3-61fc-47da-9ddc-935b2f37bece", - "start": { - "$date": "2022-03-12T01:11:42.000Z" - }, - "end": { - "$date": "2022-03-12T01:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "357fa6d3-a4e1-4dbf-9ef8-823b920c09a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-12T01:14:27.000Z" - }, - "end": { - "$date": "2022-03-12T01:17:08.000Z" - }, - "events": [ - { - "uuid": "6b48dbfd-5fae-4e87-a574-27e7bd8409de", - "start": { - "$date": "2022-03-12T01:14:27.000Z" - }, - "end": { - "$date": "2022-03-12T01:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "febf854a-8a66-4c43-9276-f065daf4352e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-12T01:17:12.000Z" - }, - "end": { - "$date": "2022-03-12T01:46:03.000Z" - }, - "events": [ - { - "uuid": "ae95ee0d-5cc3-4f1d-8d06-d1efa0483845", - "start": { - "$date": "2022-03-12T01:17:12.000Z" - }, - "end": { - "$date": "2022-03-12T01:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "56afd445-97ec-4469-842a-9791f109fef1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T01:27:35.000Z" - }, - "end": { - "$date": "2022-03-12T01:38:27.000Z" - }, - "events": [ - { - "uuid": "5a2c0354-ba41-49d4-8ae4-e1653b4fc1bf", - "start": { - "$date": "2022-03-12T01:27:35.000Z" - }, - "end": { - "$date": "2022-03-12T01:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "557e7ae7-a637-4196-af9e-4c3b44d3eeb3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-12T02:21:06.000Z" - }, - "end": { - "$date": "2022-03-12T02:48:26.000Z" - }, - "events": [ - { - "uuid": "50ecbad6-1f24-4277-9f68-a5fac9936118", - "start": { - "$date": "2022-03-12T02:21:06.000Z" - }, - "end": { - "$date": "2022-03-12T02:48:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba7b7018-3264-4515-bbde-91575d31f3df", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T03:10:10.000Z" - }, - "end": { - "$date": "2022-03-12T03:48:52.000Z" - }, - "events": [ - { - "uuid": "122cdc16-a780-4aee-a55b-42f13d4ecc19", - "start": { - "$date": "2022-03-12T03:10:10.000Z" - }, - "end": { - "$date": "2022-03-12T03:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8634b8e4-8394-4273-94df-742b36177f73", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-12T02:42:04.000Z" - }, - "end": { - "$date": "2022-03-12T02:59:24.000Z" - }, - "events": [ - { - "uuid": "c3662237-19b4-4d19-b786-0dbfabaf810e", - "start": { - "$date": "2022-03-12T02:42:04.000Z" - }, - "end": { - "$date": "2022-03-12T02:59:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2446dcb2-bc55-46ca-a314-2501691be53f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T03:50:40.000Z" - }, - "end": { - "$date": "2022-03-12T03:56:16.000Z" - }, - "events": [ - { - "uuid": "471a53c4-a2ee-4925-ad75-75f40cbb6aeb", - "start": { - "$date": "2022-03-12T03:50:40.000Z" - }, - "end": { - "$date": "2022-03-12T03:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "494b46ba-7094-43f3-b1ae-e08eaa25e387", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T03:57:56.000Z" - }, - "end": { - "$date": "2022-03-12T04:33:43.000Z" - }, - "events": [ - { - "uuid": "ab02f876-5c72-47a9-88d8-7d66d923b810", - "start": { - "$date": "2022-03-12T03:57:56.000Z" - }, - "end": { - "$date": "2022-03-12T04:33:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3cd7fa84-a011-4df6-9163-de1ddadde591", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T04:00:06.000Z" - }, - "end": { - "$date": "2022-03-12T05:34:29.000Z" - }, - "events": [ - { - "uuid": "d11e5246-9f09-4beb-965e-58e3f6615227", - "start": { - "$date": "2022-03-12T04:00:06.000Z" - }, - "end": { - "$date": "2022-03-12T05:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "11854d02-d7dd-406d-85b3-045b75c203b0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-12T04:20:25.000Z" - }, - "end": { - "$date": "2022-03-12T07:35:52.000Z" - }, - "events": [ - { - "uuid": "4c44a6b8-4c13-4b96-b441-1dec1be4c540", - "start": { - "$date": "2022-03-12T04:20:25.000Z" - }, - "end": { - "$date": "2022-03-12T07:35:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc713218-e0f3-4e86-ab8c-203f54cd6ad5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T04:36:52.000Z" - }, - "end": { - "$date": "2022-03-12T04:38:54.000Z" - }, - "events": [ - { - "uuid": "a67a992d-41c5-414d-96e3-a0a7aeab04e0", - "start": { - "$date": "2022-03-12T04:36:52.000Z" - }, - "end": { - "$date": "2022-03-12T04:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b42c4a74-6bb7-4a2a-85ab-07c0b4afce2a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T04:39:33.000Z" - }, - "end": { - "$date": "2022-03-12T05:15:17.000Z" - }, - "events": [ - { - "uuid": "bdcd5ced-2a0f-4436-9c3d-51f657c8b2a5", - "start": { - "$date": "2022-03-12T04:39:33.000Z" - }, - "end": { - "$date": "2022-03-12T05:15:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "935f5d30-3458-4436-8c18-c40c8b447c9f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-12T05:05:24.000Z" - }, - "end": { - "$date": "2022-03-12T05:06:33.000Z" - }, - "events": [ - { - "uuid": "64997636-73d2-4f1b-be5c-b36bdcfbd28b", - "start": { - "$date": "2022-03-12T05:05:24.000Z" - }, - "end": { - "$date": "2022-03-12T05:06:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0385f2bd-ffd7-4a90-9efe-19cc6d8be05f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-12T05:07:33.000Z" - }, - "end": { - "$date": "2022-03-12T09:47:19.000Z" - }, - "events": [ - { - "uuid": "a00ac91b-bc3f-46b5-97b5-6f1082ae0f15", - "start": { - "$date": "2022-03-12T05:07:33.000Z" - }, - "end": { - "$date": "2022-03-12T09:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "155956c1-4903-4bc2-a959-0c0a8d2905cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T05:18:12.000Z" - }, - "end": { - "$date": "2022-03-12T05:48:20.000Z" - }, - "events": [ - { - "uuid": "bbacc95f-8e93-4999-b552-f7c0e0ba0386", - "start": { - "$date": "2022-03-12T05:18:12.000Z" - }, - "end": { - "$date": "2022-03-12T05:48:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b7326a69-5f37-42fb-a510-c5df98b43059", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-12T05:18:14.000Z" - }, - "end": { - "$date": "2022-03-12T09:40:22.000Z" - }, - "events": [ - { - "uuid": "9054d5e4-a2b4-4e18-90c1-9055061893cf", - "start": { - "$date": "2022-03-12T05:18:14.000Z" - }, - "end": { - "$date": "2022-03-12T09:40:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5e4924f-5b28-427c-a5e6-553678162049", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-12T05:35:33.000Z" - }, - "end": { - "$date": "2022-03-12T10:11:36.000Z" - }, - "events": [ - { - "uuid": "a911f820-dd74-488d-951d-7c936643f048", - "start": { - "$date": "2022-03-12T05:35:33.000Z" - }, - "end": { - "$date": "2022-03-12T10:11:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "5d21816a-c9bd-4f04-91e9-5a74575d17e0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-12T05:37:13.000Z" - }, - "end": { - "$date": "2022-03-12T05:40:13.000Z" - }, - "events": [ - { - "uuid": "0027f5d4-aa55-45fe-b2a2-1d7428d2fdc4", - "start": { - "$date": "2022-03-12T05:37:13.000Z" - }, - "end": { - "$date": "2022-03-12T05:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1faa0cb6-5e87-4c4e-ab87-7436d7d877ae", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-12T05:40:32.000Z" - }, - "end": { - "$date": "2022-03-12T06:52:59.000Z" - }, - "events": [ - { - "uuid": "e8854cd3-ae81-4da8-b569-dd9344ed80a6", - "start": { - "$date": "2022-03-12T05:40:32.000Z" - }, - "end": { - "$date": "2022-03-12T06:52:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6663eb69-dfcb-4b31-a444-39f78c28aab2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-12T05:42:03.000Z" - }, - "end": { - "$date": "2022-03-12T06:53:06.000Z" - }, - "events": [ - { - "uuid": "246641f7-e596-42db-b74f-05deeb07563a", - "start": { - "$date": "2022-03-12T05:42:03.000Z" - }, - "end": { - "$date": "2022-03-12T06:53:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "99d435b9-2fea-4b9a-8994-3b5957adff98", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T05:48:09.000Z" - }, - "end": { - "$date": "2022-03-12T07:07:22.000Z" - }, - "events": [ - { - "uuid": "65b57298-d20a-4ae6-b596-5c59e26300d8", - "start": { - "$date": "2022-03-12T05:48:09.000Z" - }, - "end": { - "$date": "2022-03-12T07:07:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "888c75ba-a816-4012-b698-ce526b2e2325", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T05:48:40.000Z" - }, - "end": { - "$date": "2022-03-12T05:52:22.000Z" - }, - "events": [ - { - "uuid": "5149b7c1-ff77-4166-ba79-89fa90bfa916", - "start": { - "$date": "2022-03-12T05:48:40.000Z" - }, - "end": { - "$date": "2022-03-12T05:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbb521b4-e488-43cb-8bd2-c9e039a31b96", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T05:58:26.000Z" - }, - "end": { - "$date": "2022-03-12T06:20:08.000Z" - }, - "events": [ - { - "uuid": "3062ba27-e5fb-402b-8c90-c456257da7a4", - "start": { - "$date": "2022-03-12T05:58:26.000Z" - }, - "end": { - "$date": "2022-03-12T06:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "548e7597-df30-4516-bb4a-dd398a868bab", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-12T06:05:49.000Z" - }, - "end": { - "$date": "2022-03-12T07:31:49.000Z" - }, - "events": [ - { - "uuid": "40798f7d-daca-4ac5-a717-6932ecfa2b4a", - "start": { - "$date": "2022-03-12T06:05:49.000Z" - }, - "end": { - "$date": "2022-03-12T07:31:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1988f06-8355-4539-ab4f-276823b31717", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T06:22:12.000Z" - }, - "end": { - "$date": "2022-03-12T06:40:03.000Z" - }, - "events": [ - { - "uuid": "d13fc2fd-8325-4905-9b6d-549cfee034f1", - "start": { - "$date": "2022-03-12T06:22:12.000Z" - }, - "end": { - "$date": "2022-03-12T06:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75c8a983-b2ab-4d86-bce6-632ea15ba1c1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-12T06:30:24.000Z" - }, - "end": { - "$date": "2022-03-12T06:51:44.000Z" - }, - "events": [ - { - "uuid": "2a92505f-b59e-4572-95a1-8ade6ada8575", - "start": { - "$date": "2022-03-12T06:30:24.000Z" - }, - "end": { - "$date": "2022-03-12T06:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "206365d4-16ed-47ea-9941-9ff52a2c075a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-12T06:42:38.000Z" - }, - "end": { - "$date": "2022-03-12T07:12:56.000Z" - }, - "events": [ - { - "uuid": "b60442e8-0354-4723-9432-a7e69d002da2", - "start": { - "$date": "2022-03-12T06:42:38.000Z" - }, - "end": { - "$date": "2022-03-12T07:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e325759-3929-4295-b3f1-728921c256a7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-12T06:58:54.000Z" - }, - "end": { - "$date": "2022-03-12T07:13:41.000Z" - }, - "events": [ - { - "uuid": "600210d3-8056-466e-8f98-f60aad426cca", - "start": { - "$date": "2022-03-12T06:58:54.000Z" - }, - "end": { - "$date": "2022-03-12T07:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "6f873150-b995-4faf-a83e-8a8e514f7871", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-12T06:53:14.000Z" - }, - "end": { - "$date": "2022-03-12T07:17:36.000Z" - }, - "events": [ - { - "uuid": "01d0779e-4b33-434f-ae39-ae43c662a619", - "start": { - "$date": "2022-03-12T06:53:14.000Z" - }, - "end": { - "$date": "2022-03-12T07:17:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d318d278-326d-459c-809c-ead201458746", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T07:18:48.000Z" - }, - "end": { - "$date": "2022-03-12T08:40:55.000Z" - }, - "events": [ - { - "uuid": "abdb971f-7d37-473d-808b-547c53ddf74a", - "start": { - "$date": "2022-03-12T07:18:48.000Z" - }, - "end": { - "$date": "2022-03-12T08:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "b406bcb4-727b-43be-a7e7-4ecaf05ddcea", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-12T07:37:58.000Z" - }, - "end": { - "$date": "2022-03-12T08:53:20.000Z" - }, - "events": [ - { - "uuid": "b99dacd2-941f-40f6-959b-e1a13c3486c4", - "start": { - "$date": "2022-03-12T07:37:58.000Z" - }, - "end": { - "$date": "2022-03-12T08:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77212221-9b90-4682-bc7d-f59f85cc23ff", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-12T09:37:08.000Z" - }, - "end": { - "$date": "2022-03-12T09:37:21.000Z" - }, - "events": [ - { - "uuid": "13e2c142-189d-4e08-8066-7971c0ed22c2", - "start": { - "$date": "2022-03-12T09:37:08.000Z" - }, - "end": { - "$date": "2022-03-12T09:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "ffea64ca-8320-479a-a125-c526729cff4e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-12T11:59:22.000Z" - }, - "end": { - "$date": "2022-03-12T13:06:55.000Z" - }, - "events": [ - { - "uuid": "03d8842c-12d9-4e26-b8d8-bd989e3ec143", - "start": { - "$date": "2022-03-12T11:59:22.000Z" - }, - "end": { - "$date": "2022-03-12T13:06:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dbbaf083-a57e-4b19-a937-19528e3f2402", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-12T16:30:32.000Z" - }, - "end": { - "$date": "2022-03-12T16:44:38.000Z" - }, - "events": [ - { - "uuid": "f8d0029b-cab0-4c3c-b4ef-6b624124aa5a", - "start": { - "$date": "2022-03-12T16:30:32.000Z" - }, - "end": { - "$date": "2022-03-12T16:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b268b31f-e4ca-4602-9e5b-32583ebb2f38", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-12T16:45:43.000Z" - }, - "end": { - "$date": "2022-03-12T17:05:59.000Z" - }, - "events": [ - { - "uuid": "954063d9-25f1-4b71-a80e-1314b21603c8", - "start": { - "$date": "2022-03-12T16:45:43.000Z" - }, - "end": { - "$date": "2022-03-12T17:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "087fdf5f-5a62-482f-bb4f-3eedd81f9e61", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-12T17:40:32.000Z" - }, - "end": { - "$date": "2022-03-12T19:00:31.000Z" - }, - "events": [ - { - "uuid": "e258d8da-9aa3-44ee-85e8-8c2a8687e8ce", - "start": { - "$date": "2022-03-12T17:40:32.000Z" - }, - "end": { - "$date": "2022-03-12T19:00:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "23a97812-dca8-411d-b08f-b13fc0ef1142", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-12T18:26:57.000Z" - }, - "end": { - "$date": "2022-03-12T20:57:48.000Z" - }, - "events": [ - { - "uuid": "b08354b8-730e-42ea-8b5e-7bb00f38cfd3", - "start": { - "$date": "2022-03-12T18:26:57.000Z" - }, - "end": { - "$date": "2022-03-12T20:57:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "6e9d90fe-377e-48a5-8b3d-6fe2a5a8e7db", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-12T19:04:11.000Z" - }, - "end": { - "$date": "2022-03-12T19:37:47.000Z" - }, - "events": [ - { - "uuid": "a32ca502-6dc3-4669-9d77-098b3c919676", - "start": { - "$date": "2022-03-12T19:04:11.000Z" - }, - "end": { - "$date": "2022-03-12T19:37:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "07390b75-cac7-48d1-87e6-71522fbcd64b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-12T19:55:55.000Z" - }, - "end": { - "$date": "2022-03-12T20:01:31.000Z" - }, - "events": [ - { - "uuid": "ee049668-6682-4fc0-9a3b-863934c371a4", - "start": { - "$date": "2022-03-12T19:55:55.000Z" - }, - "end": { - "$date": "2022-03-12T20:01:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "db2f70de-1162-4c9b-bdbc-90e361ac8c24", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T19:57:48.000Z" - }, - "end": { - "$date": "2022-03-12T20:00:20.000Z" - }, - "events": [ - { - "uuid": "451054de-c598-4521-aeb9-47f1a8b227d0", - "start": { - "$date": "2022-03-12T19:57:48.000Z" - }, - "end": { - "$date": "2022-03-12T20:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e9251c4-505e-4b5c-8623-fdada96e4078", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-12T20:04:15.000Z" - }, - "end": { - "$date": "2022-03-12T20:12:01.000Z" - }, - "events": [ - { - "uuid": "3a3bc642-542d-4448-b9c1-97183515e401", - "start": { - "$date": "2022-03-12T20:04:15.000Z" - }, - "end": { - "$date": "2022-03-12T20:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "096e9fca-f2bd-4be5-97b7-c4f638b0906b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T20:04:28.000Z" - }, - "end": { - "$date": "2022-03-12T22:26:04.000Z" - }, - "events": [ - { - "uuid": "5a4e5783-7664-4d57-8145-8759c29ac97f", - "start": { - "$date": "2022-03-12T20:04:28.000Z" - }, - "end": { - "$date": "2022-03-12T22:26:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "2d81fc45-aae2-4d13-9166-67ebf22b7251", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-12T20:06:21.000Z" - }, - "end": { - "$date": "2022-03-12T22:40:57.000Z" - }, - "events": [ - { - "uuid": "8ef596bd-d4e4-46cc-b971-96003e5ce3c9", - "start": { - "$date": "2022-03-12T20:06:21.000Z" - }, - "end": { - "$date": "2022-03-12T22:40:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "932c3c44-6b79-4b3d-85bf-fc20310a5e5d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-12T20:13:15.000Z" - }, - "end": { - "$date": "2022-03-12T20:14:34.000Z" - }, - "events": [ - { - "uuid": "743420ce-5ff4-4789-9b1c-736097773972", - "start": { - "$date": "2022-03-12T20:13:15.000Z" - }, - "end": { - "$date": "2022-03-12T20:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fe37aaa2-57d9-4c48-abf5-fefaccb86b24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-12T20:21:52.000Z" - }, - "end": { - "$date": "2022-03-12T23:44:23.000Z" - }, - "events": [ - { - "uuid": "50209f80-3407-4530-b60f-ee01b2118b55", - "start": { - "$date": "2022-03-12T20:21:52.000Z" - }, - "end": { - "$date": "2022-03-12T23:24:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "960bb0bc-008c-46da-81e6-230ea593f6a3", - "start": { - "$date": "2022-03-12T23:24:52.000Z" - }, - "end": { - "$date": "2022-03-12T23:44:23.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "25e6ace8-2672-419b-8854-346cddd37b85", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-12T22:26:47.000Z" - }, - "end": { - "$date": "2022-03-12T22:37:29.000Z" - }, - "events": [ - { - "uuid": "2b31810e-1eb0-4648-a1ec-5fe035a68d68", - "start": { - "$date": "2022-03-12T22:26:47.000Z" - }, - "end": { - "$date": "2022-03-12T22:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "626e0f2a-fd6f-4056-b33b-7ca5e3e51ff7", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-12T22:49:08.000Z" - }, - "end": { - "$date": "2022-03-12T23:19:52.000Z" - }, - "events": [ - { - "uuid": "e7479a01-cfad-4d8c-a2e6-a8645f4b2dc4", - "start": { - "$date": "2022-03-12T22:49:08.000Z" - }, - "end": { - "$date": "2022-03-12T23:19:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "70d74c30-8e1a-4aed-9817-921b9eed2e03", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-12T23:30:02.000Z" - }, - "end": { - "$date": "2022-03-13T00:20:39.000Z" - }, - "events": [ - { - "uuid": "b4865e74-906c-4329-8c75-58ae8d5b91b8", - "start": { - "$date": "2022-03-12T23:30:02.000Z" - }, - "end": { - "$date": "2022-03-12T23:33:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d3877582-0463-4d02-b071-dc1309d83fbd", - "start": { - "$date": "2022-03-12T23:33:02.000Z" - }, - "end": { - "$date": "2022-03-13T00:20:39.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5220ea77-8e1e-4f83-a2be-feb2a2a19c4f", - "uuid": "52c6cf2f-5333-428b-9965-5019ca3f8f66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-13T00:27:05.000Z" - }, - "end": { - "$date": "2022-03-13T00:38:16.000Z" - }, - "events": [ - { - "uuid": "c7f2e037-9619-425f-b79a-4786688c0a5b", - "start": { - "$date": "2022-03-13T00:27:05.000Z" - }, - "end": { - "$date": "2022-03-13T00:38:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", - "uuid": "eedf2897-a9ba-4597-b6d1-a2a062fa2b52", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-13T00:43:22.000Z" - }, - "end": { - "$date": "2022-03-13T01:23:24.000Z" - }, - "events": [ - { - "uuid": "9066a4fc-465d-4d04-97e8-df7da7bdc419", - "start": { - "$date": "2022-03-13T00:43:22.000Z" - }, - "end": { - "$date": "2022-03-13T01:23:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7b082320-5dce-48d7-abc5-642e19aeaf62", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-13T00:56:56.000Z" - }, - "end": { - "$date": "2022-03-13T03:07:37.000Z" - }, - "events": [ - { - "uuid": "de9a3a7f-9d4f-49ba-ad94-090998b90494", - "start": { - "$date": "2022-03-13T00:56:56.000Z" - }, - "end": { - "$date": "2022-03-13T03:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "705399d1-eaa4-4a1d-a7c5-bcb9c1621dec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-13T04:32:11.000Z" - }, - "end": { - "$date": "2022-03-13T07:40:14.000Z" - }, - "events": [ - { - "uuid": "9c5856f1-8492-45de-84b0-b7c8b3cb5db2", - "start": { - "$date": "2022-03-13T04:32:11.000Z" - }, - "end": { - "$date": "2022-03-13T07:40:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a25c278-3ac8-47f4-8b2c-b7ae8d274bfc", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-13T02:46:06.000Z" - }, - "end": { - "$date": "2022-03-13T03:02:50.000Z" - }, - "events": [ - { - "uuid": "c5126f3f-21b9-41be-b2cb-6674fe32732d", - "start": { - "$date": "2022-03-13T02:46:06.000Z" - }, - "end": { - "$date": "2022-03-13T03:02:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e3176e74-c70b-497b-b903-3e3f4fe87ce3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-13T02:55:11.000Z" - }, - "end": { - "$date": "2022-03-13T08:16:10.000Z" - }, - "events": [ - { - "uuid": "3f5ebaf1-6ea1-4c95-a70f-30200aa86d23", - "start": { - "$date": "2022-03-13T02:55:11.000Z" - }, - "end": { - "$date": "2022-03-13T08:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d9a9267-619d-4009-b573-bf6ea17d6842", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-13T03:09:43.000Z" - }, - "end": { - "$date": "2022-03-13T03:53:09.000Z" - }, - "events": [ - { - "uuid": "9afcad37-4f09-40cb-9c7c-b4f94508a618", - "start": { - "$date": "2022-03-13T03:09:43.000Z" - }, - "end": { - "$date": "2022-03-13T03:53:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "744fc4b4-6114-4222-920d-4e43d91fbe1f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-13T04:18:34.000Z" - }, - "end": { - "$date": "2022-03-13T10:20:26.000Z" - }, - "events": [ - { - "uuid": "e52ebf3c-87ac-4b93-8e63-3d77d69eed75", - "start": { - "$date": "2022-03-13T04:18:34.000Z" - }, - "end": { - "$date": "2022-03-13T10:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2b2c2294-e576-45f3-909b-18f493757778", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-13T03:37:45.000Z" - }, - "end": { - "$date": "2022-03-13T03:49:34.000Z" - }, - "events": [ - { - "uuid": "7c127eb5-35c8-457c-bed6-2cf43d92d99a", - "start": { - "$date": "2022-03-13T03:37:45.000Z" - }, - "end": { - "$date": "2022-03-13T03:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "84dba2b8-f231-4b03-886b-bb3ed16ca434", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-13T03:39:08.000Z" - }, - "end": { - "$date": "2022-03-13T05:33:54.000Z" - }, - "events": [ - { - "uuid": "0767a20b-2c6e-475a-9f95-7c355b4d4560", - "start": { - "$date": "2022-03-13T03:39:08.000Z" - }, - "end": { - "$date": "2022-03-13T04:07:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2458aa84-e87d-417c-815e-fb2a5fc0bc1c", - "start": { - "$date": "2022-03-13T04:07:08.000Z" - }, - "end": { - "$date": "2022-03-13T04:13:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea12fda1-e15f-4c0b-a320-4f94f324f09c", - "start": { - "$date": "2022-03-13T04:13:08.000Z" - }, - "end": { - "$date": "2022-03-13T05:33:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dd3f2493-2d26-4c8b-8765-da02309723c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-13T04:28:09.000Z" - }, - "end": { - "$date": "2022-03-13T05:03:45.000Z" - }, - "events": [ - { - "uuid": "2e909405-0857-481a-9c11-86ec58ad6f98", - "start": { - "$date": "2022-03-13T04:28:09.000Z" - }, - "end": { - "$date": "2022-03-13T05:03:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8d76ec5d-151a-4636-91da-8fcd18e0be87", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-13T03:53:48.000Z" - }, - "end": { - "$date": "2022-03-13T09:05:38.000Z" - }, - "events": [ - { - "uuid": "d95fddef-aec3-4c5d-9ba2-5b503dfb7710", - "start": { - "$date": "2022-03-13T03:53:48.000Z" - }, - "end": { - "$date": "2022-03-13T04:45:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1b4f1e42-a006-4b75-bfc4-1fbb014feccd", - "start": { - "$date": "2022-03-13T04:45:48.000Z" - }, - "end": { - "$date": "2022-03-13T04:58:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb04d51c-dd64-48d3-b136-6abaeb4a856e", - "start": { - "$date": "2022-03-13T04:58:48.000Z" - }, - "end": { - "$date": "2022-03-13T05:08:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80aa2599-7f1c-4f9f-befa-2da327ccb0be", - "start": { - "$date": "2022-03-13T05:08:48.000Z" - }, - "end": { - "$date": "2022-03-13T05:14:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d372390c-e4a4-4075-92cf-54be5da08324", - "start": { - "$date": "2022-03-13T05:14:48.000Z" - }, - "end": { - "$date": "2022-03-13T09:05:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae91edca-e742-4311-9609-eb6ec7c91c6a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-13T03:57:09.000Z" - }, - "end": { - "$date": "2022-03-13T10:20:33.000Z" - }, - "events": [ - { - "uuid": "0d4903f9-3ff5-4036-a5fb-ac858ea50f37", - "start": { - "$date": "2022-03-13T03:57:09.000Z" - }, - "end": { - "$date": "2022-03-13T05:30:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "806212cf-5fcf-4428-9e7e-ffbed16e2ad7", - "start": { - "$date": "2022-03-13T05:30:09.000Z" - }, - "end": { - "$date": "2022-03-13T06:10:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "61e50749-ff7d-4ec2-87d2-6c678516faec", - "start": { - "$date": "2022-03-13T06:10:09.000Z" - }, - "end": { - "$date": "2022-03-13T10:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "54ee3697-4b4d-4e2e-86a1-36c390ae0d8f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-13T04:01:09.000Z" - }, - "end": { - "$date": "2022-03-13T10:17:42.000Z" - }, - "events": [ - { - "uuid": "8c559f83-6e6d-4d34-ae06-b4637f7ea4c1", - "start": { - "$date": "2022-03-13T04:01:09.000Z" - }, - "end": { - "$date": "2022-03-13T10:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "eff185ae-79ed-4e90-95b6-8b43dc836bc3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-13T00:56:56.000Z" - }, - "end": { - "$date": "2022-03-13T07:13:57.000Z" - }, - "events": [ - { - "uuid": "a49ed25f-12f9-4379-8e28-e36534d186d5", - "start": { - "$date": "2022-03-13T00:56:56.000Z" - }, - "end": { - "$date": "2022-03-13T07:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "597b76b4-05e3-4b93-aa77-34491c0e2349", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-13T04:33:19.000Z" - }, - "end": { - "$date": "2022-03-13T08:12:40.000Z" - }, - "events": [ - { - "uuid": "7ad0e1dc-0281-495d-8e03-960454062a28", - "start": { - "$date": "2022-03-13T04:33:19.000Z" - }, - "end": { - "$date": "2022-03-13T08:12:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "543af40c-8910-4270-a2cd-d9d29c2bb7f1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-13T05:05:35.000Z" - }, - "end": { - "$date": "2022-03-13T05:16:34.000Z" - }, - "events": [ - { - "uuid": "7467cdc5-1e0d-414b-812d-04d68a8ad2cc", - "start": { - "$date": "2022-03-13T05:05:35.000Z" - }, - "end": { - "$date": "2022-03-13T05:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "19991912-f0fa-43da-8cb5-c10a64fa3fdc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-13T05:05:48.000Z" - }, - "end": { - "$date": "2022-03-13T05:25:59.000Z" - }, - "events": [ - { - "uuid": "cb9759f1-788b-4f31-92fc-3a4682b3bf7d", - "start": { - "$date": "2022-03-13T05:05:48.000Z" - }, - "end": { - "$date": "2022-03-13T05:25:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9372cc1-7e30-4ac9-bdcd-f5479e9f3f4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-13T05:27:02.000Z" - }, - "end": { - "$date": "2022-03-13T05:28:44.000Z" - }, - "events": [ - { - "uuid": "a52811a5-9839-49b3-b675-b3229b03782f", - "start": { - "$date": "2022-03-13T05:27:02.000Z" - }, - "end": { - "$date": "2022-03-13T05:28:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8719f994-83f9-424c-ae39-57b49a730ee6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-13T05:56:14.000Z" - }, - "end": { - "$date": "2022-03-13T06:46:46.000Z" - }, - "events": [ - { - "uuid": "f50716d2-4dbd-460f-b92c-c83733c78902", - "start": { - "$date": "2022-03-13T05:56:14.000Z" - }, - "end": { - "$date": "2022-03-13T06:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e3a40afc-1299-47d1-bcca-6229ae6f992b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-13T06:01:07.000Z" - }, - "end": { - "$date": "2022-03-13T06:44:26.000Z" - }, - "events": [ - { - "uuid": "01f0180b-2385-4d47-a54b-b38792d34ad1", - "start": { - "$date": "2022-03-13T06:01:07.000Z" - }, - "end": { - "$date": "2022-03-13T06:44:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "4292c5e7-0fba-4bfb-b3a9-629aeaaf8112", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-13T06:07:18.000Z" - }, - "end": { - "$date": "2022-03-13T06:13:03.000Z" - }, - "events": [ - { - "uuid": "2000978b-653a-47ac-a8c5-15744969fa16", - "start": { - "$date": "2022-03-13T06:07:18.000Z" - }, - "end": { - "$date": "2022-03-13T06:13:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "c070a466-51f6-4024-9b8a-18a1b1588372", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-13T06:33:38.000Z" - }, - "end": { - "$date": "2022-03-13T07:01:39.000Z" - }, - "events": [ - { - "uuid": "f354c40d-2ba7-4364-a2d0-ae820d89de1c", - "start": { - "$date": "2022-03-13T06:33:38.000Z" - }, - "end": { - "$date": "2022-03-13T07:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d1bc8483-8811-4ec4-97fe-14ea27f73a84", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-13T06:47:11.000Z" - }, - "end": { - "$date": "2022-03-13T07:39:08.000Z" - }, - "events": [ - { - "uuid": "8d547639-6b76-43f6-b586-6231409055f0", - "start": { - "$date": "2022-03-13T06:47:11.000Z" - }, - "end": { - "$date": "2022-03-13T07:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ddfc5a9b-78b6-4e9b-80c7-7c120f38f29a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-13T07:14:07.000Z" - }, - "end": { - "$date": "2022-03-13T08:23:22.000Z" - }, - "events": [ - { - "uuid": "7c8749f8-4998-4596-94ec-edbfbc6a1d0a", - "start": { - "$date": "2022-03-13T07:14:07.000Z" - }, - "end": { - "$date": "2022-03-13T08:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "71a40095-e3b9-472e-a734-d56b1f06ea7d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-13T17:24:57.000Z" - }, - "end": { - "$date": "2022-03-13T17:25:02.000Z" - }, - "events": [ - { - "uuid": "01cdabb2-b537-4884-a824-d4f934f42aad", - "start": { - "$date": "2022-03-13T17:24:57.000Z" - }, - "end": { - "$date": "2022-03-13T17:25:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec27f111-7d98-4899-9ea8-3110013a38cf", - "uuid": "985767e0-3d30-4e5f-bc81-e5277d3e7df0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-13T17:25:12.000Z" - }, - "end": { - "$date": "2022-03-13T20:11:34.000Z" - }, - "events": [ - { - "uuid": "b439d0cc-2e8f-4328-b082-2bed1096510d", - "start": { - "$date": "2022-03-13T17:25:12.000Z" - }, - "end": { - "$date": "2022-03-13T20:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2ec9ffb7-562a-4a45-b2c6-68ab0f12ac26", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-13T18:22:03.000Z" - }, - "end": { - "$date": "2022-03-13T18:45:00.000Z" - }, - "events": [ - { - "uuid": "d80ac9dc-32b9-4d58-984b-4f1d540c7885", - "start": { - "$date": "2022-03-13T18:22:03.000Z" - }, - "end": { - "$date": "2022-03-13T18:45:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "382c58ad-7f9e-4355-a44c-5ac589ecf299", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-13T18:25:34.000Z" - }, - "end": { - "$date": "2022-03-13T19:47:43.000Z" - }, - "events": [ - { - "uuid": "5aed628d-6c6c-43b7-967e-6b40180ee0d8", - "start": { - "$date": "2022-03-13T18:25:34.000Z" - }, - "end": { - "$date": "2022-03-13T19:47:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d6cc6c4b-7315-47c9-a323-dd4282716e30", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-13T19:56:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:50:28.000Z" - }, - "events": [ - { - "uuid": "8d9607fe-b7d1-4ac0-876e-4eeb64cf8a46", - "start": { - "$date": "2022-03-13T19:56:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:18:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a654abfe-d54d-41fd-b186-c0886f19ad5f", - "start": { - "$date": "2022-03-13T21:18:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:19:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5af4ae80-80a8-40c4-b524-da805dad0c79", - "start": { - "$date": "2022-03-13T21:19:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:30:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3549812-d48a-42b3-8ce0-15667373e0bc", - "start": { - "$date": "2022-03-13T21:30:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:35:18.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e7ed9c5d-5f5e-4e0a-8d72-40cc67125698", - "start": { - "$date": "2022-03-13T21:35:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:45:18.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b25c3792-f401-4818-a5b7-31303eca6967", - "start": { - "$date": "2022-03-13T21:45:18.000Z" - }, - "end": { - "$date": "2022-03-13T21:50:28.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e18d681d-c583-46f7-95b5-dc6710bffce3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-13T20:10:50.000Z" - }, - "end": { - "$date": "2022-03-13T20:37:01.000Z" - }, - "events": [ - { - "uuid": "7bf49dda-a474-46b3-ad17-8fcabc9ae5b1", - "start": { - "$date": "2022-03-13T20:10:50.000Z" - }, - "end": { - "$date": "2022-03-13T20:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7974ecf8-b3a0-401a-a3c5-e853ebd6305a", - "uuid": "3a40766f-245f-433c-8023-8adcc2b5c2cc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-13T20:38:21.000Z" - }, - "end": { - "$date": "2022-03-13T21:43:07.000Z" - }, - "events": [ - { - "uuid": "4e129034-b80c-4d7a-a2a6-14af3c82b52d", - "start": { - "$date": "2022-03-13T20:38:21.000Z" - }, - "end": { - "$date": "2022-03-13T21:43:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "04b37fc0-2bc8-4670-99b5-fe7e03091a89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-13T21:58:59.000Z" - }, - "end": { - "$date": "2022-03-13T22:44:48.000Z" - }, - "events": [ - { - "uuid": "d01c9bad-7cda-4bd9-a0c0-aa11c21998f5", - "start": { - "$date": "2022-03-13T21:58:59.000Z" - }, - "end": { - "$date": "2022-03-13T22:24:59.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2392522c-9434-4f06-a344-23ac4d26d129", - "start": { - "$date": "2022-03-13T22:24:59.000Z" - }, - "end": { - "$date": "2022-03-13T22:44:48.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b0d09816-a9ef-4698-a36d-0f4ff59106a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-13T22:06:56.000Z" - }, - "end": { - "$date": "2022-03-13T23:39:41.000Z" - }, - "events": [ - { - "uuid": "623b917f-96e5-4ebf-b0f5-974193e6ea06", - "start": { - "$date": "2022-03-13T22:06:56.000Z" - }, - "end": { - "$date": "2022-03-13T23:39:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7aff41b0-7b72-475b-b15d-b05b290f3c92", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-13T22:20:21.000Z" - }, - "end": { - "$date": "2022-03-14T00:20:52.000Z" - }, - "events": [ - { - "uuid": "0abfa451-c03a-4671-8e1c-add01622fffb", - "start": { - "$date": "2022-03-13T22:20:21.000Z" - }, - "end": { - "$date": "2022-03-14T00:20:52.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "510c6616-0828-4e12-8d57-7b0efcd5e51b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-13T22:37:47.000Z" - }, - "end": { - "$date": "2022-03-13T23:07:54.000Z" - }, - "events": [ - { - "uuid": "3de30a99-e14e-4b15-bb10-df2af094014b", - "start": { - "$date": "2022-03-13T22:37:47.000Z" - }, - "end": { - "$date": "2022-03-13T23:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6ce05c3f-9b2d-4171-8988-3e7f35c01088", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-13T23:15:47.000Z" - }, - "end": { - "$date": "2022-03-14T03:40:31.000Z" - }, - "events": [ - { - "uuid": "e361d40f-1dd3-431c-8794-96f9300bd1a1", - "start": { - "$date": "2022-03-13T23:15:47.000Z" - }, - "end": { - "$date": "2022-03-14T03:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd69193a-9c43-4471-9de2-c65bd1bb1396", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-13T23:24:34.000Z" - }, - "end": { - "$date": "2022-03-14T00:01:55.000Z" - }, - "events": [ - { - "uuid": "a0091469-6136-42d6-9efc-28d2708a4f70", - "start": { - "$date": "2022-03-13T23:24:34.000Z" - }, - "end": { - "$date": "2022-03-14T00:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "d925dacd-a751-4f67-b7a4-fdb2923f3dba", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-13T23:47:32.000Z" - }, - "end": { - "$date": "2022-03-14T00:57:14.000Z" - }, - "events": [ - { - "uuid": "d6cd5649-d7c2-49b6-aafb-097114493e88", - "start": { - "$date": "2022-03-13T23:47:32.000Z" - }, - "end": { - "$date": "2022-03-14T00:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "5591c929-7f42-422e-805c-26924e2cc359", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-14T00:09:01.000Z" - }, - "end": { - "$date": "2022-03-14T07:58:14.000Z" - }, - "events": [ - { - "uuid": "49f1baf3-536b-4711-a953-92a2fabfe561", - "start": { - "$date": "2022-03-14T00:09:01.000Z" - }, - "end": { - "$date": "2022-03-14T06:20:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "09dccb41-8382-426a-baa4-63b0d7370e5a", - "start": { - "$date": "2022-03-14T06:20:01.000Z" - }, - "end": { - "$date": "2022-03-14T06:21:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4864ac8d-57f5-4b5d-a079-d4860a5af159", - "start": { - "$date": "2022-03-14T06:21:01.000Z" - }, - "end": { - "$date": "2022-03-14T07:58:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "23f28e0d-c266-4a2a-9b51-0b69256cf196", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-14T00:44:42.000Z" - }, - "end": { - "$date": "2022-03-14T00:51:54.000Z" - }, - "events": [ - { - "uuid": "a9c4dff7-bf82-40db-894a-dd68c313a676", - "start": { - "$date": "2022-03-14T00:44:42.000Z" - }, - "end": { - "$date": "2022-03-14T00:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ca0196b0-d3c4-4f24-95b7-b1916191a01a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T01:00:16.000Z" - }, - "end": { - "$date": "2022-03-14T02:06:53.000Z" - }, - "events": [ - { - "uuid": "a077656c-4e75-4670-ad7c-e24d393fa480", - "start": { - "$date": "2022-03-14T01:00:16.000Z" - }, - "end": { - "$date": "2022-03-14T02:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "63a47b26-0529-4bf4-a3a4-c182f11899b8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-14T01:27:27.000Z" - }, - "end": { - "$date": "2022-03-14T01:38:12.000Z" - }, - "events": [ - { - "uuid": "ce8abfd4-5dc9-452f-8e63-c08b0f3e4cc7", - "start": { - "$date": "2022-03-14T01:27:27.000Z" - }, - "end": { - "$date": "2022-03-14T01:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dbbbc457-fea5-455d-be85-64fad982bcfc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-14T01:41:58.000Z" - }, - "end": { - "$date": "2022-03-14T03:11:14.000Z" - }, - "events": [ - { - "uuid": "670d965d-fa87-48ba-a509-395864d2a5ba", - "start": { - "$date": "2022-03-14T01:41:58.000Z" - }, - "end": { - "$date": "2022-03-14T03:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9532cb7-e735-4bd1-b2a5-f2069e55a5cf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-14T02:24:06.000Z" - }, - "end": { - "$date": "2022-03-14T02:29:51.000Z" - }, - "events": [ - { - "uuid": "7ba149dd-6bf2-47b3-9ed1-6150fb0da7fb", - "start": { - "$date": "2022-03-14T02:24:06.000Z" - }, - "end": { - "$date": "2022-03-14T02:29:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1d6e7c7-52df-4651-b31c-51f3b3277fa5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T02:32:51.000Z" - }, - "end": { - "$date": "2022-03-14T02:49:17.000Z" - }, - "events": [ - { - "uuid": "cc0df75c-f423-4929-80b2-49d0bf9e4136", - "start": { - "$date": "2022-03-14T02:32:51.000Z" - }, - "end": { - "$date": "2022-03-14T02:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3932c9c6-f4e8-4003-bc9f-89ddb3aa62ab", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T03:16:46.000Z" - }, - "end": { - "$date": "2022-03-14T03:39:57.000Z" - }, - "events": [ - { - "uuid": "2d17d32b-af3b-4195-aed5-37699a71df81", - "start": { - "$date": "2022-03-14T03:16:46.000Z" - }, - "end": { - "$date": "2022-03-14T03:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "60be5906-85f0-468b-a8bc-a4a182deb9b0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-14T03:34:39.000Z" - }, - "end": { - "$date": "2022-03-14T05:58:16.000Z" - }, - "events": [ - { - "uuid": "b6c4c669-c77e-4910-a140-9f1926486c0f", - "start": { - "$date": "2022-03-14T03:34:39.000Z" - }, - "end": { - "$date": "2022-03-14T05:58:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "805fc565-7f19-4ad1-8fd2-096a03d762c0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T03:57:09.000Z" - }, - "end": { - "$date": "2022-03-14T05:21:46.000Z" - }, - "events": [ - { - "uuid": "31db34ba-e6df-4f61-b897-8c15562b14a7", - "start": { - "$date": "2022-03-14T03:57:09.000Z" - }, - "end": { - "$date": "2022-03-14T05:21:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9a762e8f-2ebc-4e33-a5ad-f84664946ddc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-14T04:07:40.000Z" - }, - "end": { - "$date": "2022-03-14T10:57:33.000Z" - }, - "events": [ - { - "uuid": "d524909e-7d40-450b-872a-e9d1f1777c8a", - "start": { - "$date": "2022-03-14T04:07:40.000Z" - }, - "end": { - "$date": "2022-03-14T04:23:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ebfa5fba-c9f2-4beb-bc56-53e93bcb5f9a", - "start": { - "$date": "2022-03-14T04:23:40.000Z" - }, - "end": { - "$date": "2022-03-14T04:45:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de159aaf-c003-4310-9a7d-8c9d9d6b685c", - "start": { - "$date": "2022-03-14T04:45:40.000Z" - }, - "end": { - "$date": "2022-03-14T04:55:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2cc2adf6-b8eb-4101-931b-73a519fe5fe8", - "start": { - "$date": "2022-03-14T04:55:40.000Z" - }, - "end": { - "$date": "2022-03-14T10:57:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "897bc105-434f-4297-987f-f59624f9d9d9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-14T04:15:10.000Z" - }, - "end": { - "$date": "2022-03-14T04:40:51.000Z" - }, - "events": [ - { - "uuid": "16ef92c1-1e13-4ee7-8155-5b410acf2529", - "start": { - "$date": "2022-03-14T04:15:10.000Z" - }, - "end": { - "$date": "2022-03-14T04:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5cf7e327-7a43-4b89-b88b-8cdea4c2b8f7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-14T04:40:56.000Z" - }, - "end": { - "$date": "2022-03-14T07:28:41.000Z" - }, - "events": [ - { - "uuid": "9af03acc-0026-499e-9d5c-6bb5c138c562", - "start": { - "$date": "2022-03-14T04:40:56.000Z" - }, - "end": { - "$date": "2022-03-14T07:28:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "572c501c-8cfd-4d2e-9736-a2083f4a0844", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-14T06:05:29.000Z" - }, - "end": { - "$date": "2022-03-14T06:36:12.000Z" - }, - "events": [ - { - "uuid": "60d58b0f-ba00-4016-bbd6-2a7291153dd4", - "start": { - "$date": "2022-03-14T06:05:29.000Z" - }, - "end": { - "$date": "2022-03-14T06:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46a4a3ac-7c49-46c0-910d-ab5b8d8f32c5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-14T06:36:41.000Z" - }, - "end": { - "$date": "2022-03-14T06:44:08.000Z" - }, - "events": [ - { - "uuid": "f2453f1b-3eb3-4083-98f0-8d759f749e43", - "start": { - "$date": "2022-03-14T06:36:41.000Z" - }, - "end": { - "$date": "2022-03-14T06:44:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a894bf36-41b8-4237-8cd6-09572c2bdb19", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-14T07:25:55.000Z" - }, - "end": { - "$date": "2022-03-14T07:43:00.000Z" - }, - "events": [ - { - "uuid": "9f8991cf-fcd2-4045-a8e8-f55c8780b812", - "start": { - "$date": "2022-03-14T07:25:55.000Z" - }, - "end": { - "$date": "2022-03-14T07:43:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e88fea58-000b-4baa-9b33-ba0e0fc7a085", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-14T07:45:20.000Z" - }, - "end": { - "$date": "2022-03-14T08:03:51.000Z" - }, - "events": [ - { - "uuid": "1b988884-3740-46c8-87c2-cfae6a082bfb", - "start": { - "$date": "2022-03-14T07:45:20.000Z" - }, - "end": { - "$date": "2022-03-14T08:03:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "43cda167-af20-42f8-833e-c586ca444f97", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-14T09:36:46.000Z" - }, - "end": { - "$date": "2022-03-14T11:48:17.000Z" - }, - "events": [ - { - "uuid": "6883b610-bac0-47f3-8d00-abb6fbdb7b04", - "start": { - "$date": "2022-03-14T09:36:46.000Z" - }, - "end": { - "$date": "2022-03-14T11:48:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e13d8f85-67f7-4e8a-9bcc-f375679276b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T16:02:18.000Z" - }, - "end": { - "$date": "2022-03-14T18:24:53.000Z" - }, - "events": [ - { - "uuid": "04421925-8889-4cb3-8a81-717f21208241", - "start": { - "$date": "2022-03-14T16:02:18.000Z" - }, - "end": { - "$date": "2022-03-14T18:24:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "abe86312-84bd-4514-a3df-0aa67bf53a10", - "uuid": "ff8a3f3a-6578-40c2-9d30-8b6a493740e4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-14T18:29:36.000Z" - }, - "end": { - "$date": "2022-03-14T18:41:01.000Z" - }, - "events": [ - { - "uuid": "75faee72-f247-47be-a939-fa8c3933c034", - "start": { - "$date": "2022-03-14T18:29:36.000Z" - }, - "end": { - "$date": "2022-03-14T18:41:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "211c6246-5b38-4847-a018-d92314e5e189", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T18:56:05.000Z" - }, - "end": { - "$date": "2022-03-14T20:42:57.000Z" - }, - "events": [ - { - "uuid": "35912e7e-4acc-44f9-9ca1-8aeab2f075f2", - "start": { - "$date": "2022-03-14T18:56:05.000Z" - }, - "end": { - "$date": "2022-03-14T19:10:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a6c734a1-88a0-481b-9411-368f1f1d257b", - "start": { - "$date": "2022-03-14T19:10:05.000Z" - }, - "end": { - "$date": "2022-03-14T19:22:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23fafa4b-f075-4370-b6de-fb8acd527a3f", - "start": { - "$date": "2022-03-14T19:22:05.000Z" - }, - "end": { - "$date": "2022-03-14T20:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ab2463d4-15ef-4f02-9fd6-5b99012c5afb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-14T21:29:22.000Z" - }, - "end": { - "$date": "2022-03-14T21:40:48.000Z" - }, - "events": [ - { - "uuid": "607f4f9f-3b48-4144-b1dc-6c32644da2f8", - "start": { - "$date": "2022-03-14T21:29:22.000Z" - }, - "end": { - "$date": "2022-03-14T21:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5afca7d9-4fbb-4c33-8801-84cf3afe2766", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-14T23:00:46.000Z" - }, - "end": { - "$date": "2022-03-14T23:31:58.000Z" - }, - "events": [ - { - "uuid": "bbeae3d2-c308-4e46-9557-5bf170b6331c", - "start": { - "$date": "2022-03-14T23:00:46.000Z" - }, - "end": { - "$date": "2022-03-14T23:31:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "59ba21d6-a74d-40a7-8b34-dc05d6e3b10a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-14T23:18:24.000Z" - }, - "end": { - "$date": "2022-03-15T00:26:09.000Z" - }, - "events": [ - { - "uuid": "ced72381-f34a-4324-a557-15752af0342d", - "start": { - "$date": "2022-03-14T23:18:24.000Z" - }, - "end": { - "$date": "2022-03-15T00:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "16e4ebce-6091-49c1-9dd7-a85e23025916", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T00:19:52.000Z" - }, - "end": { - "$date": "2022-03-15T00:26:28.000Z" - }, - "events": [ - { - "uuid": "e831dd8e-997f-49c4-a912-2634d036933e", - "start": { - "$date": "2022-03-15T00:19:52.000Z" - }, - "end": { - "$date": "2022-03-15T00:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0bd65602-7864-4693-9dea-12bb58e076cb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-15T01:54:38.000Z" - }, - "end": { - "$date": "2022-03-15T02:04:30.000Z" - }, - "events": [ - { - "uuid": "6456dbca-1eca-4743-b36b-b92498cffe24", - "start": { - "$date": "2022-03-15T01:54:38.000Z" - }, - "end": { - "$date": "2022-03-15T02:04:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "814a2df8-3b32-4ceb-8190-a7ebac9fad73", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T01:55:36.000Z" - }, - "end": { - "$date": "2022-03-15T02:32:17.000Z" - }, - "events": [ - { - "uuid": "675b599b-0276-4bad-8789-bfd0bd21abdd", - "start": { - "$date": "2022-03-15T01:55:36.000Z" - }, - "end": { - "$date": "2022-03-15T02:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fc15ff40-ffa4-46a7-b070-22e07e260c3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-15T02:41:31.000Z" - }, - "end": { - "$date": "2022-03-15T03:33:38.000Z" - }, - "events": [ - { - "uuid": "041e3116-4a3e-4a3b-91e3-e12ed4cba652", - "start": { - "$date": "2022-03-15T02:41:31.000Z" - }, - "end": { - "$date": "2022-03-15T03:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d57c1b19-31ab-4887-87a4-9298cd241edf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-15T03:14:48.000Z" - }, - "end": { - "$date": "2022-03-15T04:47:30.000Z" - }, - "events": [ - { - "uuid": "0a1f4109-bdfd-4a03-8bf0-065cd0c19425", - "start": { - "$date": "2022-03-15T03:14:48.000Z" - }, - "end": { - "$date": "2022-03-15T04:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9cbd6a2f-aa35-42ec-a90a-0f880965fdc7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-15T04:24:37.000Z" - }, - "end": { - "$date": "2022-03-15T04:24:43.000Z" - }, - "events": [ - { - "uuid": "38359af6-5404-48cc-80cd-f42357da78ca", - "start": { - "$date": "2022-03-15T04:24:37.000Z" - }, - "end": { - "$date": "2022-03-15T04:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "6de2335a-ee1d-4c27-80c5-8afce0980c71", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-15T04:22:34.000Z" - }, - "end": { - "$date": "2022-03-15T05:55:27.000Z" - }, - "events": [ - { - "uuid": "762c7f1f-af73-4eeb-87e5-30176502587a", - "start": { - "$date": "2022-03-15T04:22:34.000Z" - }, - "end": { - "$date": "2022-03-15T05:47:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "efdab13c-ab82-4dc4-b189-7d4b87b0ac65", - "start": { - "$date": "2022-03-15T05:47:34.000Z" - }, - "end": { - "$date": "2022-03-15T05:55:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "253188c6-2871-4b4e-ade4-94ab26f1168e", - "uuid": "ed0a1295-a687-49d1-aec7-aad8095defcf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-15T04:29:07.000Z" - }, - "end": { - "$date": "2022-03-15T04:59:40.000Z" - }, - "events": [ - { - "uuid": "51f5112b-d7d8-4e5f-b748-861449f3ab58", - "start": { - "$date": "2022-03-15T04:29:07.000Z" - }, - "end": { - "$date": "2022-03-15T04:59:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2155b79f-9fff-4d85-ac9e-9565e7c12359", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T04:34:19.000Z" - }, - "end": { - "$date": "2022-03-15T05:08:45.000Z" - }, - "events": [ - { - "uuid": "a0760258-517d-4deb-9b18-427eb075a7c3", - "start": { - "$date": "2022-03-15T04:34:19.000Z" - }, - "end": { - "$date": "2022-03-15T05:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "8647513c-291e-41a7-ba35-7c7cd779b87e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-15T04:35:46.000Z" - }, - "end": { - "$date": "2022-03-15T07:07:51.000Z" - }, - "events": [ - { - "uuid": "c32e73d1-9f69-449e-879e-45f3f6c780de", - "start": { - "$date": "2022-03-15T04:35:46.000Z" - }, - "end": { - "$date": "2022-03-15T07:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "639a3417-4b5e-4fa6-ab78-7faa3188ec5a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-15T05:26:43.000Z" - }, - "end": { - "$date": "2022-03-15T05:40:49.000Z" - }, - "events": [ - { - "uuid": "627f8224-7054-4107-93f0-b559c2a47eb0", - "start": { - "$date": "2022-03-15T05:26:43.000Z" - }, - "end": { - "$date": "2022-03-15T05:40:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "8a6cc327-1a5e-4451-8b8a-dd2e1550f5b3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-15T07:07:56.000Z" - }, - "end": { - "$date": "2022-03-15T08:36:24.000Z" - }, - "events": [ - { - "uuid": "9a95e4c4-37a6-4acf-ab96-10ff946c3377", - "start": { - "$date": "2022-03-15T07:07:56.000Z" - }, - "end": { - "$date": "2022-03-15T08:36:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "c37427f8-bb0c-4970-869d-a0b96581858e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-15T10:25:51.000Z" - }, - "end": { - "$date": "2022-03-15T11:30:41.000Z" - }, - "events": [ - { - "uuid": "97767fe2-9683-4604-9304-c39908fceb63", - "start": { - "$date": "2022-03-15T10:25:51.000Z" - }, - "end": { - "$date": "2022-03-15T11:30:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "70146b5d-730c-4a6f-b9c8-d834fcada2e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T15:38:33.000Z" - }, - "end": { - "$date": "2022-03-15T17:04:34.000Z" - }, - "events": [ - { - "uuid": "f162094c-b8a9-46d6-bee2-d9806321ed93", - "start": { - "$date": "2022-03-15T15:38:33.000Z" - }, - "end": { - "$date": "2022-03-15T17:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f234253-9e16-44a5-a7a1-1887381678d2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T17:11:40.000Z" - }, - "end": { - "$date": "2022-03-15T17:30:55.000Z" - }, - "events": [ - { - "uuid": "444ad267-d16d-47df-a7e5-5c3d77169be3", - "start": { - "$date": "2022-03-15T17:11:40.000Z" - }, - "end": { - "$date": "2022-03-15T17:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "19d1c008-6c93-4875-ab00-5ffe32e6bdda", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T18:18:55.000Z" - }, - "end": { - "$date": "2022-03-15T18:32:39.000Z" - }, - "events": [ - { - "uuid": "d5745d77-ebe7-44fd-94bb-7667a473a72f", - "start": { - "$date": "2022-03-15T18:18:55.000Z" - }, - "end": { - "$date": "2022-03-15T18:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3138410b-3e02-483f-8c70-76acea08fd5c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-15T19:01:36.000Z" - }, - "end": { - "$date": "2022-03-15T20:43:06.000Z" - }, - "events": [ - { - "uuid": "406282c8-747f-4343-a074-4fc10db6eec0", - "start": { - "$date": "2022-03-15T19:01:36.000Z" - }, - "end": { - "$date": "2022-03-15T20:08:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74a764bd-9a99-4170-ac0b-075fa5ac7e78", - "start": { - "$date": "2022-03-15T20:08:36.000Z" - }, - "end": { - "$date": "2022-03-15T20:28:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8411569e-7ecf-41a6-a6d4-f4e7e8255869", - "start": { - "$date": "2022-03-15T20:28:36.000Z" - }, - "end": { - "$date": "2022-03-15T20:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "776547e8-1494-46be-934f-7614d1b53a2d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-15T21:07:34.000Z" - }, - "end": { - "$date": "2022-03-15T21:38:34.000Z" - }, - "events": [ - { - "uuid": "c50e3bc7-233f-4533-a57c-7c99d17aa012", - "start": { - "$date": "2022-03-15T21:07:34.000Z" - }, - "end": { - "$date": "2022-03-15T21:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4281236a-60fe-4011-878c-a7f9e61822e8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-15T21:18:50.000Z" - }, - "end": { - "$date": "2022-03-15T22:10:01.000Z" - }, - "events": [ - { - "uuid": "fa6ec68f-b920-4941-b60a-2d64b5dc17bb", - "start": { - "$date": "2022-03-15T21:18:50.000Z" - }, - "end": { - "$date": "2022-03-15T22:10:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2f86dc3e-f10b-4986-9bad-55b106245d78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-15T21:33:01.000Z" - }, - "end": { - "$date": "2022-03-15T21:36:36.000Z" - }, - "events": [ - { - "uuid": "fd53f7f2-e521-4737-b066-acd3b21c3ae5", - "start": { - "$date": "2022-03-15T21:33:01.000Z" - }, - "end": { - "$date": "2022-03-15T21:36:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4f278798-ff67-404e-a3f8-04b2d75367eb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-15T22:07:40.000Z" - }, - "end": { - "$date": "2022-03-15T22:15:55.000Z" - }, - "events": [ - { - "uuid": "3fde1271-396b-404f-94b6-1aa4d1c0486c", - "start": { - "$date": "2022-03-15T22:07:40.000Z" - }, - "end": { - "$date": "2022-03-15T22:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e345489d-6a36-413d-b01e-b6e7672f148b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-15T22:57:10.000Z" - }, - "end": { - "$date": "2022-03-15T23:12:16.000Z" - }, - "events": [ - { - "uuid": "3b944788-1fc7-4242-ab78-1c74abef9523", - "start": { - "$date": "2022-03-15T22:57:10.000Z" - }, - "end": { - "$date": "2022-03-15T23:12:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "8655de17-b617-4011-81b8-b7856fdbdb15", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-15T23:02:19.000Z" - }, - "end": { - "$date": "2022-03-15T23:50:28.000Z" - }, - "events": [ - { - "uuid": "6202dfb1-4d9a-474f-8ad8-4d79a78ccea4", - "start": { - "$date": "2022-03-15T23:02:19.000Z" - }, - "end": { - "$date": "2022-03-15T23:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8e02bebf-5718-44d4-ac4a-b70ec1afd8ef", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-15T23:42:39.000Z" - }, - "end": { - "$date": "2022-03-16T00:08:40.000Z" - }, - "events": [ - { - "uuid": "1c86772b-634d-4ca0-be2a-b474c4070b0f", - "start": { - "$date": "2022-03-15T23:42:39.000Z" - }, - "end": { - "$date": "2022-03-16T00:08:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88a877f8-9a67-47e3-a772-770abb026b04", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-15T23:55:06.000Z" - }, - "end": { - "$date": "2022-03-16T00:27:23.000Z" - }, - "events": [ - { - "uuid": "91efaf8e-8b9a-4c70-a145-dcbeb0f4c67e", - "start": { - "$date": "2022-03-15T23:55:06.000Z" - }, - "end": { - "$date": "2022-03-16T00:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "111f5b53-be6b-4bbd-8029-274f1face07a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-16T00:30:24.000Z" - }, - "end": { - "$date": "2022-03-16T06:22:29.000Z" - }, - "events": [ - { - "uuid": "c452b1fa-f335-4060-b1c5-474aee0501b5", - "start": { - "$date": "2022-03-16T00:30:24.000Z" - }, - "end": { - "$date": "2022-03-16T06:22:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "57543631-5496-44f1-ae41-a6cf2bef2cbb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-16T01:08:16.000Z" - }, - "end": { - "$date": "2022-03-16T01:29:07.000Z" - }, - "events": [ - { - "uuid": "093bcfa1-9000-49fc-a4fe-26ad91e3be8a", - "start": { - "$date": "2022-03-16T01:08:16.000Z" - }, - "end": { - "$date": "2022-03-16T01:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "82f2f0f5-34b6-4498-9858-994e7ef84b2e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-16T02:16:12.000Z" - }, - "end": { - "$date": "2022-03-16T03:43:53.000Z" - }, - "events": [ - { - "uuid": "c78860b3-6f09-4040-89d1-c4258bcd6872", - "start": { - "$date": "2022-03-16T02:16:12.000Z" - }, - "end": { - "$date": "2022-03-16T03:43:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "46534101-c722-4dab-b70b-aaa72721bc37", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-16T02:37:46.000Z" - }, - "end": { - "$date": "2022-03-16T03:39:28.000Z" - }, - "events": [ - { - "uuid": "12c04ec8-023a-4733-889d-7bd170dfd3c3", - "start": { - "$date": "2022-03-16T02:37:46.000Z" - }, - "end": { - "$date": "2022-03-16T03:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "514733a7-ee6d-4241-83e5-0d9e5bdbad26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-16T03:33:38.000Z" - }, - "end": { - "$date": "2022-03-16T04:53:44.000Z" - }, - "events": [ - { - "uuid": "c6068da2-a212-48ac-9d07-b81ef7d9ddc5", - "start": { - "$date": "2022-03-16T03:33:38.000Z" - }, - "end": { - "$date": "2022-03-16T04:53:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9677eb46-e028-4802-92f7-bdda8fd718e0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-16T03:47:15.000Z" - }, - "end": { - "$date": "2022-03-16T03:55:21.000Z" - }, - "events": [ - { - "uuid": "dc9d991c-586a-46ba-9c99-09c1549067e0", - "start": { - "$date": "2022-03-16T03:47:15.000Z" - }, - "end": { - "$date": "2022-03-16T03:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "81a0bcd7-6e0a-4c17-8de7-3a47dd18494e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-16T03:47:19.000Z" - }, - "end": { - "$date": "2022-03-16T04:26:15.000Z" - }, - "events": [ - { - "uuid": "4f01ce6f-eb01-4f61-80be-5c1af00e9b4c", - "start": { - "$date": "2022-03-16T03:47:19.000Z" - }, - "end": { - "$date": "2022-03-16T04:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9e55b365-2228-4032-b8d3-b71e371bee7e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-16T03:56:01.000Z" - }, - "end": { - "$date": "2022-03-16T05:25:14.000Z" - }, - "events": [ - { - "uuid": "7faceb8e-9ca8-477e-a759-6b720b66a70d", - "start": { - "$date": "2022-03-16T03:56:01.000Z" - }, - "end": { - "$date": "2022-03-16T05:05:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "93885cfb-7cc0-435c-9af4-cd2ee801f47f", - "start": { - "$date": "2022-03-16T05:05:01.000Z" - }, - "end": { - "$date": "2022-03-16T05:25:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "13e2054a-dca8-4ac0-9d60-57c911b11e79", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-16T04:38:57.000Z" - }, - "end": { - "$date": "2022-03-16T05:37:37.000Z" - }, - "events": [ - { - "uuid": "196480a0-ad69-4290-a2e8-84b0e49afbf0", - "start": { - "$date": "2022-03-16T04:38:57.000Z" - }, - "end": { - "$date": "2022-03-16T05:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6adde40-4573-456c-9d77-8297f210a288", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-16T04:48:14.000Z" - }, - "end": { - "$date": "2022-03-16T05:03:46.000Z" - }, - "events": [ - { - "uuid": "990b7004-3be0-42e0-8ae0-0aceca6a578f", - "start": { - "$date": "2022-03-16T04:48:14.000Z" - }, - "end": { - "$date": "2022-03-16T05:03:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "839d7fe7-e093-4a61-b04a-270c885c377f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-16T05:37:41.000Z" - }, - "end": { - "$date": "2022-03-16T06:05:35.000Z" - }, - "events": [ - { - "uuid": "39e812c3-e3a3-43c3-b353-7c65e22d6759", - "start": { - "$date": "2022-03-16T05:37:41.000Z" - }, - "end": { - "$date": "2022-03-16T06:05:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c8965f49-2223-4d5e-b0bc-c973795f54a9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-16T06:15:48.000Z" - }, - "end": { - "$date": "2022-03-16T06:36:48.000Z" - }, - "events": [ - { - "uuid": "e470ce74-5d00-4ab5-a8d4-f9c5e25c4733", - "start": { - "$date": "2022-03-16T06:15:48.000Z" - }, - "end": { - "$date": "2022-03-16T06:36:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "1ad970d8-9365-432b-aeef-c4575115b816", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-16T07:53:12.000Z" - }, - "end": { - "$date": "2022-03-16T08:50:11.000Z" - }, - "events": [ - { - "uuid": "565689ec-8c7d-4b9c-9376-481b98fe95b0", - "start": { - "$date": "2022-03-16T07:53:12.000Z" - }, - "end": { - "$date": "2022-03-16T08:50:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "ce573076-a90c-4234-b7b9-3630b4b6b87c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-16T12:22:07.000Z" - }, - "end": { - "$date": "2022-03-16T13:38:54.000Z" - }, - "events": [ - { - "uuid": "45ded062-8d0b-4afe-af8d-0e20da47d171", - "start": { - "$date": "2022-03-16T12:22:07.000Z" - }, - "end": { - "$date": "2022-03-16T13:38:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "97c59b94-127f-4425-9fa4-de8a22d15329", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-16T15:23:25.000Z" - }, - "end": { - "$date": "2022-03-16T17:28:48.000Z" - }, - "events": [ - { - "uuid": "432682d5-8e1d-44d3-aef7-b8bc7b93799b", - "start": { - "$date": "2022-03-16T15:23:25.000Z" - }, - "end": { - "$date": "2022-03-16T17:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e759f186-058b-4973-b28d-29a9157efd8b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-16T18:35:34.000Z" - }, - "end": { - "$date": "2022-03-16T18:50:41.000Z" - }, - "events": [ - { - "uuid": "c2428b20-a21d-4bd2-afb4-6007f59189e3", - "start": { - "$date": "2022-03-16T18:35:34.000Z" - }, - "end": { - "$date": "2022-03-16T18:50:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "00b849ef-dae8-4c2b-97c8-4b6f49495741", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-16T20:22:31.000Z" - }, - "end": { - "$date": "2022-03-16T20:25:42.000Z" - }, - "events": [ - { - "uuid": "1a047cf8-de2f-4ca7-a265-ce04e2a89d77", - "start": { - "$date": "2022-03-16T20:22:31.000Z" - }, - "end": { - "$date": "2022-03-16T20:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f7bdfb5e-2161-4c9c-b146-0cf5fde5f1d1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-16T21:06:13.000Z" - }, - "end": { - "$date": "2022-03-16T21:23:52.000Z" - }, - "events": [ - { - "uuid": "c74ad40e-ba16-4a61-bca3-ed149ff52705", - "start": { - "$date": "2022-03-16T21:06:13.000Z" - }, - "end": { - "$date": "2022-03-16T21:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1daa6eb-d356-4592-8478-380a2e16047a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-16T21:24:33.000Z" - }, - "end": { - "$date": "2022-03-16T21:42:33.000Z" - }, - "events": [ - { - "uuid": "825ef59b-dd18-45cd-a746-3d94b3cf83cb", - "start": { - "$date": "2022-03-16T21:24:33.000Z" - }, - "end": { - "$date": "2022-03-16T21:42:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1c3f23d-c2cc-466c-badf-00d4bcfca7de", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-16T21:44:03.000Z" - }, - "end": { - "$date": "2022-03-16T22:21:08.000Z" - }, - "events": [ - { - "uuid": "26f50131-a8a2-4a21-884d-705a0d38fd96", - "start": { - "$date": "2022-03-16T21:44:03.000Z" - }, - "end": { - "$date": "2022-03-16T22:21:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c490cd3b-aa15-4091-868f-1fa5906bd4f9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-16T21:45:39.000Z" - }, - "end": { - "$date": "2022-03-16T22:01:39.000Z" - }, - "events": [ - { - "uuid": "aec98501-5558-4fd8-bf6c-aeb2a401bab2", - "start": { - "$date": "2022-03-16T21:45:39.000Z" - }, - "end": { - "$date": "2022-03-16T22:01:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "afdc8640-dd96-4c79-901b-2411f0cdaa5b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-16T22:02:00.000Z" - }, - "end": { - "$date": "2022-03-16T23:03:36.000Z" - }, - "events": [ - { - "uuid": "8d85ae4b-962d-4f87-9921-89810454a53c", - "start": { - "$date": "2022-03-16T22:02:00.000Z" - }, - "end": { - "$date": "2022-03-16T23:03:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "17f60428-62ad-4953-8a28-b98615297d8d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-16T22:21:21.000Z" - }, - "end": { - "$date": "2022-03-16T22:35:20.000Z" - }, - "events": [ - { - "uuid": "ce552a99-9afc-49e2-beeb-6f7cf5aa6431", - "start": { - "$date": "2022-03-16T22:21:21.000Z" - }, - "end": { - "$date": "2022-03-16T22:35:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "97d00a99-6038-4759-9d9d-ea8656e1ddea", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-17T01:33:10.000Z" - }, - "end": { - "$date": "2022-03-17T02:25:41.000Z" - }, - "events": [ - { - "uuid": "fdd5c1fd-2d42-4436-9a3e-353a80d58926", - "start": { - "$date": "2022-03-17T01:33:10.000Z" - }, - "end": { - "$date": "2022-03-17T02:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "814bba62-8f9f-4e9b-afc6-924880dda983", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T01:51:12.000Z" - }, - "end": { - "$date": "2022-03-17T02:08:53.000Z" - }, - "events": [ - { - "uuid": "21e2d0c7-5715-42b2-82de-fcae4b4fd99e", - "start": { - "$date": "2022-03-17T01:51:12.000Z" - }, - "end": { - "$date": "2022-03-17T02:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9dff8c41-8132-459b-9aa5-24fdeadb04f4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-17T02:25:57.000Z" - }, - "end": { - "$date": "2022-03-17T03:59:23.000Z" - }, - "events": [ - { - "uuid": "b55777b4-24f5-4841-a411-a59b2052e868", - "start": { - "$date": "2022-03-17T02:25:57.000Z" - }, - "end": { - "$date": "2022-03-17T03:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96b66150-2beb-4945-b778-447503a11191", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-17T02:39:02.000Z" - }, - "end": { - "$date": "2022-03-17T04:06:53.000Z" - }, - "events": [ - { - "uuid": "bdf5097f-34f7-439e-9a3c-1def9e63dcc0", - "start": { - "$date": "2022-03-17T02:39:02.000Z" - }, - "end": { - "$date": "2022-03-17T04:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "0bce1ef7-ec60-4fc1-8064-5348ea7f18a6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-17T02:52:16.000Z" - }, - "end": { - "$date": "2022-03-17T04:58:12.000Z" - }, - "events": [ - { - "uuid": "dbddebbc-9bcb-46ed-a021-1ca4eb9fa15e", - "start": { - "$date": "2022-03-17T02:52:16.000Z" - }, - "end": { - "$date": "2022-03-17T04:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "86e07ec8-aa55-4b03-a325-24a26e50dc4f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T03:03:04.000Z" - }, - "end": { - "$date": "2022-03-17T05:07:54.000Z" - }, - "events": [ - { - "uuid": "ceb301d6-321e-465f-97a4-6b2889d5f228", - "start": { - "$date": "2022-03-17T03:03:04.000Z" - }, - "end": { - "$date": "2022-03-17T05:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "467820bb-60cf-4313-8834-82d0f87da043", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-17T01:58:29.000Z" - }, - "end": { - "$date": "2022-03-17T07:27:53.000Z" - }, - "events": [ - { - "uuid": "0a714f1d-9876-4a9c-89ea-b341c17befa6", - "start": { - "$date": "2022-03-17T01:58:29.000Z" - }, - "end": { - "$date": "2022-03-17T07:27:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "356f5344-62c6-4526-b0f5-97f028263d11", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-17T04:02:10.000Z" - }, - "end": { - "$date": "2022-03-17T04:09:28.000Z" - }, - "events": [ - { - "uuid": "c5140101-9aba-4b9c-8c33-ce4dcb63bab4", - "start": { - "$date": "2022-03-17T04:02:10.000Z" - }, - "end": { - "$date": "2022-03-17T04:09:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "18e81024-270a-4be6-b85c-efd16cdab8d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-17T04:07:04.000Z" - }, - "end": { - "$date": "2022-03-17T04:31:33.000Z" - }, - "events": [ - { - "uuid": "aa0759db-2501-4145-8c2c-1290a9503669", - "start": { - "$date": "2022-03-17T04:07:04.000Z" - }, - "end": { - "$date": "2022-03-17T04:31:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2c14d92f-7a08-49a8-807b-c95e2b2cd4ba", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-17T04:21:46.000Z" - }, - "end": { - "$date": "2022-03-17T05:48:23.000Z" - }, - "events": [ - { - "uuid": "8fec4a3a-f402-4b10-8baa-39365a105cac", - "start": { - "$date": "2022-03-17T04:21:46.000Z" - }, - "end": { - "$date": "2022-03-17T05:48:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c50e4445-d09a-4c76-b5e0-45f9a6f4e5c1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-17T04:51:59.000Z" - }, - "end": { - "$date": "2022-03-17T05:31:51.000Z" - }, - "events": [ - { - "uuid": "17102cf2-2e63-4cfe-9443-f2bb22f525c0", - "start": { - "$date": "2022-03-17T04:51:59.000Z" - }, - "end": { - "$date": "2022-03-17T05:31:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d3b34c34-fdee-4e72-be7c-2369114e36d2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-17T05:29:12.000Z" - }, - "end": { - "$date": "2022-03-17T06:05:19.000Z" - }, - "events": [ - { - "uuid": "4a92052f-ef0d-43ce-9dff-cd245df041b9", - "start": { - "$date": "2022-03-17T05:29:12.000Z" - }, - "end": { - "$date": "2022-03-17T06:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d15a7258-fb84-4c36-aac8-e58fdcfc8f43", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-17T05:33:05.000Z" - }, - "end": { - "$date": "2022-03-17T05:34:16.000Z" - }, - "events": [ - { - "uuid": "0e2df643-3e01-4510-bf36-b983bbdc56eb", - "start": { - "$date": "2022-03-17T05:33:05.000Z" - }, - "end": { - "$date": "2022-03-17T05:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8b6485e-27c1-4a6e-814e-51f42be251fe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-17T05:48:33.000Z" - }, - "end": { - "$date": "2022-03-17T08:23:27.000Z" - }, - "events": [ - { - "uuid": "9646041a-a08c-4ea2-bb4c-21108e42f2ad", - "start": { - "$date": "2022-03-17T05:48:33.000Z" - }, - "end": { - "$date": "2022-03-17T08:21:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f6cd76f-8e72-4933-864e-eaa2200d0847", - "start": { - "$date": "2022-03-17T08:21:33.000Z" - }, - "end": { - "$date": "2022-03-17T08:23:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1f58e831-55f3-4ce1-bb23-449112ca00aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-17T05:57:01.000Z" - }, - "end": { - "$date": "2022-03-17T06:26:18.000Z" - }, - "events": [ - { - "uuid": "6cdeaf49-0d11-4c39-9ff6-33e78816b72e", - "start": { - "$date": "2022-03-17T05:57:01.000Z" - }, - "end": { - "$date": "2022-03-17T06:26:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d6b32669-7545-4b92-bbfc-225232a6277e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-17T06:05:35.000Z" - }, - "end": { - "$date": "2022-03-17T07:42:08.000Z" - }, - "events": [ - { - "uuid": "ae45c1c4-c1a8-444f-b6fd-8a2aa11aadd4", - "start": { - "$date": "2022-03-17T06:05:35.000Z" - }, - "end": { - "$date": "2022-03-17T07:42:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "115d3dc7-585f-4a76-b863-f17837deec16", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-17T12:01:55.000Z" - }, - "end": { - "$date": "2022-03-17T12:58:17.000Z" - }, - "events": [ - { - "uuid": "7b1257a7-4bad-4a8c-9ffa-38eb7a40cba6", - "start": { - "$date": "2022-03-17T12:01:55.000Z" - }, - "end": { - "$date": "2022-03-17T12:58:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ac177c77-62cf-49be-a903-427610eef692", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T14:59:14.000Z" - }, - "end": { - "$date": "2022-03-17T15:26:58.000Z" - }, - "events": [ - { - "uuid": "681520ed-cd89-427b-80fd-3d8faa544adc", - "start": { - "$date": "2022-03-17T14:59:14.000Z" - }, - "end": { - "$date": "2022-03-17T15:09:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1d05207-eda7-41d7-8b96-aa70ce150fe2", - "start": { - "$date": "2022-03-17T15:09:14.000Z" - }, - "end": { - "$date": "2022-03-17T15:12:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "76ca00e7-1fd8-4974-a05f-3dd5059250be", - "start": { - "$date": "2022-03-17T15:12:14.000Z" - }, - "end": { - "$date": "2022-03-17T15:22:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd1a96c7-dd13-46a6-8a34-52c0773ee01a", - "start": { - "$date": "2022-03-17T15:22:14.000Z" - }, - "end": { - "$date": "2022-03-17T15:26:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c1fb7f03-c8ee-4ee7-9900-ea2ad5992ce9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T15:45:05.000Z" - }, - "end": { - "$date": "2022-03-17T16:32:22.000Z" - }, - "events": [ - { - "uuid": "900f9d55-e630-4670-b886-66c7005d5382", - "start": { - "$date": "2022-03-17T15:45:05.000Z" - }, - "end": { - "$date": "2022-03-17T16:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57700e70-0c8b-4ef2-b4ef-713aca798013", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T16:38:58.000Z" - }, - "end": { - "$date": "2022-03-17T17:00:18.000Z" - }, - "events": [ - { - "uuid": "ca7d93a7-ada4-4137-9b4b-dadea2890074", - "start": { - "$date": "2022-03-17T16:38:58.000Z" - }, - "end": { - "$date": "2022-03-17T17:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60fef30a-1265-467c-b43e-221c3fd51ac7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T17:10:49.000Z" - }, - "end": { - "$date": "2022-03-17T17:31:05.000Z" - }, - "events": [ - { - "uuid": "42810080-fa8a-4ed4-9656-1c7552bbbb0d", - "start": { - "$date": "2022-03-17T17:10:49.000Z" - }, - "end": { - "$date": "2022-03-17T17:31:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d53c538-641b-4d1f-8d93-7a2ba18b5106", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-17T18:12:20.000Z" - }, - "end": { - "$date": "2022-03-17T20:17:07.000Z" - }, - "events": [ - { - "uuid": "c625ef0d-b701-449a-a48b-ebcaa8bb0eaa", - "start": { - "$date": "2022-03-17T18:12:20.000Z" - }, - "end": { - "$date": "2022-03-17T18:42:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5c06fdd-934b-4780-b4f7-4bd92c92ceb2", - "start": { - "$date": "2022-03-17T18:42:20.000Z" - }, - "end": { - "$date": "2022-03-17T20:07:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "662198c8-a00a-4766-95f9-c0239bcf3cec", - "start": { - "$date": "2022-03-17T20:07:20.000Z" - }, - "end": { - "$date": "2022-03-17T20:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d0ddefd-30e9-453b-b947-604b1a5edcbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T20:42:06.000Z" - }, - "end": { - "$date": "2022-03-17T21:23:03.000Z" - }, - "events": [ - { - "uuid": "fb1c2277-82ad-4dff-82f9-483c634e94d4", - "start": { - "$date": "2022-03-17T20:42:06.000Z" - }, - "end": { - "$date": "2022-03-17T21:02:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "824b06d6-d826-48c1-80c2-2ef3547cb302", - "start": { - "$date": "2022-03-17T21:02:06.000Z" - }, - "end": { - "$date": "2022-03-17T21:16:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c377cb5f-5b0e-4a6e-aaa5-a6a343a08990", - "start": { - "$date": "2022-03-17T21:16:06.000Z" - }, - "end": { - "$date": "2022-03-17T21:23:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "50ab0816-1c8d-4175-b4b7-0f2d9d574478", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-17T21:51:42.000Z" - }, - "end": { - "$date": "2022-03-17T22:00:28.000Z" - }, - "events": [ - { - "uuid": "b44236b6-b5ee-4446-8a16-e0dddb0a6127", - "start": { - "$date": "2022-03-17T21:51:42.000Z" - }, - "end": { - "$date": "2022-03-17T22:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b1733a32-bfa8-449b-9f65-03c17f6bb070", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T21:58:03.000Z" - }, - "end": { - "$date": "2022-03-17T21:59:18.000Z" - }, - "events": [ - { - "uuid": "93883f46-c694-4a22-9d02-cb54003778df", - "start": { - "$date": "2022-03-17T21:58:03.000Z" - }, - "end": { - "$date": "2022-03-17T21:59:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d2b4adfd-0da2-41da-b655-c6ecee1505b5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-17T22:21:25.000Z" - }, - "end": { - "$date": "2022-03-17T23:29:59.000Z" - }, - "events": [ - { - "uuid": "5ac4d34f-fe81-4ea9-9f21-756cea1aecb2", - "start": { - "$date": "2022-03-17T22:21:25.000Z" - }, - "end": { - "$date": "2022-03-17T23:18:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0e4a0bbb-5136-422d-aaab-6f1dd0dcb288", - "start": { - "$date": "2022-03-17T23:18:25.000Z" - }, - "end": { - "$date": "2022-03-17T23:29:59.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "29ae445c-4a59-48db-95b5-22f7d45a0be8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-17T22:25:59.000Z" - }, - "end": { - "$date": "2022-03-17T22:41:26.000Z" - }, - "events": [ - { - "uuid": "7fc19342-b05c-48a8-a50a-030fd975cf06", - "start": { - "$date": "2022-03-17T22:25:59.000Z" - }, - "end": { - "$date": "2022-03-17T22:41:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "7d5b529c-d8cf-4e92-ac32-c2661ed205d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-17T22:42:07.000Z" - }, - "end": { - "$date": "2022-03-17T23:12:12.000Z" - }, - "events": [ - { - "uuid": "0a21e5eb-168b-4f8c-814a-862ccbaeb184", - "start": { - "$date": "2022-03-17T22:42:07.000Z" - }, - "end": { - "$date": "2022-03-17T23:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7f94cf8c-324b-429c-abb4-ebef616ed897", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T00:42:17.000Z" - }, - "end": { - "$date": "2022-03-18T01:35:47.000Z" - }, - "events": [ - { - "uuid": "d1a4bb84-2a2d-40b9-b388-a46e96c6c9bb", - "start": { - "$date": "2022-03-18T00:42:17.000Z" - }, - "end": { - "$date": "2022-03-18T01:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "b311ece6-9e5a-4ae8-80b7-9c3eed526fae", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-18T01:49:09.000Z" - }, - "end": { - "$date": "2022-03-18T02:20:28.000Z" - }, - "events": [ - { - "uuid": "bc69bc8f-2d75-4e8d-8605-f922b33266a3", - "start": { - "$date": "2022-03-18T01:49:09.000Z" - }, - "end": { - "$date": "2022-03-18T01:57:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7bd99483-8ab6-4c54-870b-c8c22cd5518c", - "start": { - "$date": "2022-03-18T01:57:09.000Z" - }, - "end": { - "$date": "2022-03-18T02:20:28.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7f1dc378-ecb5-4b64-847d-179f92956173", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-17T05:48:33.000Z" - }, - "end": { - "$date": "2022-03-18T02:10:19.000Z" - }, - "events": [ - { - "uuid": "0398eba1-f053-4334-8edb-4b4ab713cdca", - "start": { - "$date": "2022-03-17T05:48:33.000Z" - }, - "end": { - "$date": "2022-03-17T05:49:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e902f83-1b06-4a33-bf78-06f4c558624a", - "start": { - "$date": "2022-03-17T05:49:33.000Z" - }, - "end": { - "$date": "2022-03-18T02:10:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4c13e4e7-0dc6-46b8-ae81-0a806e593ef3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-18T02:10:59.000Z" - }, - "end": { - "$date": "2022-03-18T02:38:05.000Z" - }, - "events": [ - { - "uuid": "8f47ac72-516f-4a28-ba96-1defcd31579b", - "start": { - "$date": "2022-03-18T02:10:59.000Z" - }, - "end": { - "$date": "2022-03-18T02:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d73796c-6517-4609-ba02-6db0c634bcc3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T02:42:55.000Z" - }, - "end": { - "$date": "2022-03-18T03:02:41.000Z" - }, - "events": [ - { - "uuid": "fd7f039c-490a-42da-b5c7-8053d4626c15", - "start": { - "$date": "2022-03-18T02:42:55.000Z" - }, - "end": { - "$date": "2022-03-18T03:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "50d21c44-ed0f-4b92-b71f-a4119344193a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-18T02:46:41.000Z" - }, - "end": { - "$date": "2022-03-18T02:49:36.000Z" - }, - "events": [ - { - "uuid": "4f3242e9-1000-4068-960c-c6e7548b3c0a", - "start": { - "$date": "2022-03-18T02:46:41.000Z" - }, - "end": { - "$date": "2022-03-18T02:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "474f638e-edf1-44a6-abab-589df9a35948", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-18T02:50:10.000Z" - }, - "end": { - "$date": "2022-03-18T03:27:28.000Z" - }, - "events": [ - { - "uuid": "d2193a8a-f620-4ef8-b00d-d52a7b3ae8b6", - "start": { - "$date": "2022-03-18T02:50:10.000Z" - }, - "end": { - "$date": "2022-03-18T03:27:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a724a670-eae8-4dd9-9a5d-e8839bf3b5be", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-18T02:50:46.000Z" - }, - "end": { - "$date": "2022-03-18T03:08:46.000Z" - }, - "events": [ - { - "uuid": "40911fb2-7aed-4073-ac21-cc7c25dc52b7", - "start": { - "$date": "2022-03-18T02:50:46.000Z" - }, - "end": { - "$date": "2022-03-18T03:08:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "704d1a5a-6075-46d5-92b9-cd1884c71982", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T03:04:47.000Z" - }, - "end": { - "$date": "2022-03-18T03:20:46.000Z" - }, - "events": [ - { - "uuid": "0f5f1275-f937-4403-867b-55405352950e", - "start": { - "$date": "2022-03-18T03:04:47.000Z" - }, - "end": { - "$date": "2022-03-18T03:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "35ff58f6-e8cc-4ee2-83d1-bc4e3a2ad9e7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-18T03:09:02.000Z" - }, - "end": { - "$date": "2022-03-18T05:58:54.000Z" - }, - "events": [ - { - "uuid": "67cfec4c-0611-49e5-9a6d-cbf354c2e8d6", - "start": { - "$date": "2022-03-18T03:09:02.000Z" - }, - "end": { - "$date": "2022-03-18T05:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "ead0d940-0c4b-4b10-849f-07e503605e8a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-18T03:33:46.000Z" - }, - "end": { - "$date": "2022-03-18T03:39:20.000Z" - }, - "events": [ - { - "uuid": "7073a425-e1ef-44d1-8a21-81eecc3b85fe", - "start": { - "$date": "2022-03-18T03:33:46.000Z" - }, - "end": { - "$date": "2022-03-18T03:39:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6e059954-7a4a-4e08-bbcb-67fb33ee6cca", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-18T03:36:23.000Z" - }, - "end": { - "$date": "2022-03-18T06:49:54.000Z" - }, - "events": [ - { - "uuid": "df45f81b-e31d-49a0-a8d7-6abeda58d355", - "start": { - "$date": "2022-03-18T03:36:23.000Z" - }, - "end": { - "$date": "2022-03-18T06:49:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "21352952-e8a0-48a1-9314-c97f1b37a68b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-18T03:38:16.000Z" - }, - "end": { - "$date": "2022-03-18T05:17:11.000Z" - }, - "events": [ - { - "uuid": "fd6391a1-495e-4a9f-b905-6aa892603353", - "start": { - "$date": "2022-03-18T03:38:16.000Z" - }, - "end": { - "$date": "2022-03-18T05:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ae0c1b48-1ea7-4d23-9f52-e642757c8dbe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-18T01:55:15.000Z" - }, - "end": { - "$date": "2022-03-18T07:31:50.000Z" - }, - "events": [ - { - "uuid": "79916c29-9df0-4922-8c1b-04b0ddc85b76", - "start": { - "$date": "2022-03-18T01:55:15.000Z" - }, - "end": { - "$date": "2022-03-18T07:31:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "7af6e24f-1c54-4edc-8b7d-19093366cbf9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-18T04:33:37.000Z" - }, - "end": { - "$date": "2022-03-18T06:30:49.000Z" - }, - "events": [ - { - "uuid": "0d4df4a3-9de3-4cdc-b58f-e1e5dccb218b", - "start": { - "$date": "2022-03-18T04:33:37.000Z" - }, - "end": { - "$date": "2022-03-18T06:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "29e5fde2-a17f-4e4a-b5ea-3bf20a8daf83", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-18T04:33:59.000Z" - }, - "end": { - "$date": "2022-03-18T11:13:45.000Z" - }, - "events": [ - { - "uuid": "cefd43ce-755d-4e93-9827-584181ecd805", - "start": { - "$date": "2022-03-18T04:33:59.000Z" - }, - "end": { - "$date": "2022-03-18T11:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "6053910c-138e-4577-88fb-d78f434b5c9f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-18T05:22:12.000Z" - }, - "end": { - "$date": "2022-03-18T05:24:46.000Z" - }, - "events": [ - { - "uuid": "9268cdf6-9692-4cca-be8d-db59c42adf1c", - "start": { - "$date": "2022-03-18T05:22:12.000Z" - }, - "end": { - "$date": "2022-03-18T05:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "9adcd91e-06e0-4b77-9d0d-0396ca8ca994", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-18T05:27:47.000Z" - }, - "end": { - "$date": "2022-03-18T05:42:45.000Z" - }, - "events": [ - { - "uuid": "fc9ed365-2973-45ca-81e0-274a8fbcbaa8", - "start": { - "$date": "2022-03-18T05:27:47.000Z" - }, - "end": { - "$date": "2022-03-18T05:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e3da658e-5be4-4828-b2ee-6ba535d5a301", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-18T05:48:01.000Z" - }, - "end": { - "$date": "2022-03-18T06:04:44.000Z" - }, - "events": [ - { - "uuid": "9b347fcd-4785-42bf-b167-8dd7bc368281", - "start": { - "$date": "2022-03-18T05:48:01.000Z" - }, - "end": { - "$date": "2022-03-18T06:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "27a02d6f-858b-47ea-9857-46d551052d00", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-18T05:48:40.000Z" - }, - "end": { - "$date": "2022-03-18T06:41:08.000Z" - }, - "events": [ - { - "uuid": "0b93c6c3-ce53-4377-be10-a96f13b5de53", - "start": { - "$date": "2022-03-18T05:48:40.000Z" - }, - "end": { - "$date": "2022-03-18T06:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5f80f068-70ac-4964-8af5-275ba00e72d7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-18T06:33:23.000Z" - }, - "end": { - "$date": "2022-03-18T06:45:44.000Z" - }, - "events": [ - { - "uuid": "73df9276-f73e-4161-9d99-0b8a54cb22cd", - "start": { - "$date": "2022-03-18T06:33:23.000Z" - }, - "end": { - "$date": "2022-03-18T06:45:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "3d95d451-82ab-4fbb-8596-146da80b880f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-18T06:48:19.000Z" - }, - "end": { - "$date": "2022-03-18T07:39:47.000Z" - }, - "events": [ - { - "uuid": "c508709c-50d6-463e-a789-14c946213e66", - "start": { - "$date": "2022-03-18T06:48:19.000Z" - }, - "end": { - "$date": "2022-03-18T07:39:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b450930e-c676-4521-94fe-da3e804ff499", - "uuid": "23acf740-5f93-41c6-a7cd-858636e27c80", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-18T08:06:12.000Z" - }, - "end": { - "$date": "2022-03-18T08:14:40.000Z" - }, - "events": [ - { - "uuid": "8f34dd43-2e53-4778-9301-1c0ab42c1284", - "start": { - "$date": "2022-03-18T08:06:12.000Z" - }, - "end": { - "$date": "2022-03-18T08:14:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "3f0347a8-e798-40ff-a864-01e552eaa69f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-18T14:38:55.000Z" - }, - "end": { - "$date": "2022-03-18T16:25:51.000Z" - }, - "events": [ - { - "uuid": "1d4c277e-0b97-4895-a63f-3bd86cdcc4a0", - "start": { - "$date": "2022-03-18T14:38:55.000Z" - }, - "end": { - "$date": "2022-03-18T16:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3eb4c884-7b94-4342-8dd4-67c0e7b18176", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T16:10:45.000Z" - }, - "end": { - "$date": "2022-03-18T16:29:10.000Z" - }, - "events": [ - { - "uuid": "a8e4527f-b0cc-4aff-9a25-81d5cfdd6b9f", - "start": { - "$date": "2022-03-18T16:10:45.000Z" - }, - "end": { - "$date": "2022-03-18T16:29:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d50ab65-7358-4a36-9a37-e68cdaf659f0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T16:30:21.000Z" - }, - "end": { - "$date": "2022-03-18T16:46:01.000Z" - }, - "events": [ - { - "uuid": "e161559d-8788-452b-8e8e-22378f038dd8", - "start": { - "$date": "2022-03-18T16:30:21.000Z" - }, - "end": { - "$date": "2022-03-18T16:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14090ba3-ac2a-449d-b294-9fd5ca7e8d20", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T16:46:31.000Z" - }, - "end": { - "$date": "2022-03-18T17:35:42.000Z" - }, - "events": [ - { - "uuid": "63aafdce-0c16-4919-abeb-82152cbd7ea6", - "start": { - "$date": "2022-03-18T16:46:31.000Z" - }, - "end": { - "$date": "2022-03-18T17:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfa7074b-89fe-4b9f-b83e-712a7a81c2be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-18T17:38:33.000Z" - }, - "end": { - "$date": "2022-03-18T17:52:23.000Z" - }, - "events": [ - { - "uuid": "e0e1a1e7-3d40-4429-b386-704b4bb10e45", - "start": { - "$date": "2022-03-18T17:38:33.000Z" - }, - "end": { - "$date": "2022-03-18T17:52:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4b31f2c7-034f-476e-9694-73a02cdbb01e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-18T18:14:12.000Z" - }, - "end": { - "$date": "2022-03-18T19:03:37.000Z" - }, - "events": [ - { - "uuid": "8cb035d2-644d-404e-ac41-c12ea461cd52", - "start": { - "$date": "2022-03-18T18:14:12.000Z" - }, - "end": { - "$date": "2022-03-18T19:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "06e0ddaf-8280-439e-8c6e-2bc785abadbf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-18T19:43:42.000Z" - }, - "end": { - "$date": "2022-03-18T19:52:24.000Z" - }, - "events": [ - { - "uuid": "13f42af7-6ce4-4c82-9df2-5afa2806345a", - "start": { - "$date": "2022-03-18T19:43:42.000Z" - }, - "end": { - "$date": "2022-03-18T19:52:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a7689402-2503-40c5-a245-5f2064939e49", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-18T20:10:27.000Z" - }, - "end": { - "$date": "2022-03-18T21:28:54.000Z" - }, - "events": [ - { - "uuid": "1967faf9-5b38-45f8-8776-7902819f516d", - "start": { - "$date": "2022-03-18T20:10:27.000Z" - }, - "end": { - "$date": "2022-03-18T21:28:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "85ed829c-627c-4c98-aa75-84fded080965", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-18T21:07:33.000Z" - }, - "end": { - "$date": "2022-03-18T21:29:55.000Z" - }, - "events": [ - { - "uuid": "e2f25ab0-fc62-45eb-ad40-54276b5660d9", - "start": { - "$date": "2022-03-18T21:07:33.000Z" - }, - "end": { - "$date": "2022-03-18T21:29:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b5b479c4-f096-4c4b-89e5-88f9fe452552", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-18T21:55:36.000Z" - }, - "end": { - "$date": "2022-03-18T22:24:55.000Z" - }, - "events": [ - { - "uuid": "4d8a2844-b245-4f37-a0d4-a687c81cb37b", - "start": { - "$date": "2022-03-18T21:55:36.000Z" - }, - "end": { - "$date": "2022-03-18T22:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "46ab5ed6-e2e5-4b83-b6c2-0acd4085f442", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-18T22:34:25.000Z" - }, - "end": { - "$date": "2022-03-19T01:06:02.000Z" - }, - "events": [ - { - "uuid": "2d971534-5fe3-4835-8ecb-1907a1436948", - "start": { - "$date": "2022-03-18T22:34:25.000Z" - }, - "end": { - "$date": "2022-03-19T01:06:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b682859f-e2a1-4efe-93c0-6f84c9d6c50b", - "uuid": "f3af0f62-5dbb-4066-b091-08483dbcd4e4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-18T21:47:48.000Z" - }, - "end": { - "$date": "2022-03-18T23:19:03.000Z" - }, - "events": [ - { - "uuid": "12e52089-ff79-47fb-a4f4-b444fe22a7ed", - "start": { - "$date": "2022-03-18T21:47:48.000Z" - }, - "end": { - "$date": "2022-03-18T22:07:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e886141b-98f7-4d03-ab58-136471d0d7b2", - "start": { - "$date": "2022-03-18T22:07:48.000Z" - }, - "end": { - "$date": "2022-03-18T22:08:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "82390c7b-2d7d-4e0a-8398-e6cf3a40333e", - "start": { - "$date": "2022-03-18T22:08:48.000Z" - }, - "end": { - "$date": "2022-03-18T23:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "959f1e39-fa39-4fab-9446-e9097077aa9a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-18T23:49:38.000Z" - }, - "end": { - "$date": "2022-03-18T23:51:18.000Z" - }, - "events": [ - { - "uuid": "0e08981a-9c38-4e63-8ad0-0489ac63f065", - "start": { - "$date": "2022-03-18T23:49:38.000Z" - }, - "end": { - "$date": "2022-03-18T23:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "6a2db36d-0212-4f0d-83b4-b9e83e300991", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-18T23:51:38.000Z" - }, - "end": { - "$date": "2022-03-19T05:31:48.000Z" - }, - "events": [ - { - "uuid": "f25daec3-34eb-4d38-9ef4-c9580fd2586c", - "start": { - "$date": "2022-03-18T23:51:38.000Z" - }, - "end": { - "$date": "2022-03-19T05:31:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "09bf7441-60f1-4328-b6de-5001abe80317", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-18T23:52:59.000Z" - }, - "end": { - "$date": "2022-03-19T01:20:11.000Z" - }, - "events": [ - { - "uuid": "a07c71c4-5981-470c-ae33-36424fd59b21", - "start": { - "$date": "2022-03-18T23:52:59.000Z" - }, - "end": { - "$date": "2022-03-19T01:20:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "2c6026bb-7f31-41c6-b375-dc360b8f5289", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-18T22:34:25.000Z" - }, - "end": { - "$date": "2022-03-19T03:48:05.000Z" - }, - "events": [ - { - "uuid": "4ddfd844-64b1-4d9c-88b3-6edb83aa8bfd", - "start": { - "$date": "2022-03-18T22:34:25.000Z" - }, - "end": { - "$date": "2022-03-19T03:48:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2b974bc8-db6c-49f1-b1e2-a9619fa39f13", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-19T02:23:23.000Z" - }, - "end": { - "$date": "2022-03-19T03:32:39.000Z" - }, - "events": [ - { - "uuid": "83f196f0-69b1-43ca-945c-d1b536b4161f", - "start": { - "$date": "2022-03-19T02:23:23.000Z" - }, - "end": { - "$date": "2022-03-19T03:32:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "402a2308-2c26-4168-87b2-8e18f19879b4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-19T02:32:06.000Z" - }, - "end": { - "$date": "2022-03-19T02:43:23.000Z" - }, - "events": [ - { - "uuid": "7c546164-20c5-47ad-9364-59b1bb144392", - "start": { - "$date": "2022-03-19T02:32:06.000Z" - }, - "end": { - "$date": "2022-03-19T02:43:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "622cd277-5971-4b85-badb-556f1daf31c8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-19T02:35:17.000Z" - }, - "end": { - "$date": "2022-03-19T02:40:06.000Z" - }, - "events": [ - { - "uuid": "2a0006fa-17e3-4657-897a-1933dbe83f5a", - "start": { - "$date": "2022-03-19T02:35:17.000Z" - }, - "end": { - "$date": "2022-03-19T02:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "921c1e70-ab5a-4b59-a1fe-86d85453f04e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-19T02:40:37.000Z" - }, - "end": { - "$date": "2022-03-19T08:33:11.000Z" - }, - "events": [ - { - "uuid": "bb8d0300-e16e-4c24-a46c-f25614b9eb9b", - "start": { - "$date": "2022-03-19T02:40:37.000Z" - }, - "end": { - "$date": "2022-03-19T08:33:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "8be013d7-78c3-48f4-9a86-e5b1868e231c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-19T02:43:33.000Z" - }, - "end": { - "$date": "2022-03-19T07:34:03.000Z" - }, - "events": [ - { - "uuid": "116a5e98-bcb8-4535-9945-3be237d0493a", - "start": { - "$date": "2022-03-19T02:43:33.000Z" - }, - "end": { - "$date": "2022-03-19T07:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "8eb014e9-1dc2-42a0-b1cb-746ede62500d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-19T03:24:34.000Z" - }, - "end": { - "$date": "2022-03-19T06:32:33.000Z" - }, - "events": [ - { - "uuid": "8c11119a-3cb2-4448-9872-5ba9ebc4f62b", - "start": { - "$date": "2022-03-19T03:24:34.000Z" - }, - "end": { - "$date": "2022-03-19T06:32:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "fbf61494-29be-4b0a-b2f2-0a2ab50ad6c5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-19T04:57:46.000Z" - }, - "end": { - "$date": "2022-03-19T05:06:46.000Z" - }, - "events": [ - { - "uuid": "4a949def-0a31-4317-8bbc-527e9c6d072e", - "start": { - "$date": "2022-03-19T04:57:46.000Z" - }, - "end": { - "$date": "2022-03-19T05:06:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "9adcad2e-244f-49b8-b644-f68a2a290384", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-19T05:44:04.000Z" - }, - "end": { - "$date": "2022-03-19T07:50:47.000Z" - }, - "events": [ - { - "uuid": "b0f35d3e-7f0e-48e5-b11e-b1576e04e671", - "start": { - "$date": "2022-03-19T05:44:04.000Z" - }, - "end": { - "$date": "2022-03-19T07:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "7d45ef25-2ac6-4914-b7ff-49b01aa42678", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-19T07:14:57.000Z" - }, - "end": { - "$date": "2022-03-19T07:56:37.000Z" - }, - "events": [ - { - "uuid": "82ef3a17-3119-480a-abbb-76b279aa66f7", - "start": { - "$date": "2022-03-19T07:14:57.000Z" - }, - "end": { - "$date": "2022-03-19T07:56:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "27793ac3-f6ea-4d76-b68a-50eba4b21185", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-19T14:39:39.000Z" - }, - "end": { - "$date": "2022-03-19T15:17:26.000Z" - }, - "events": [ - { - "uuid": "3fb513c1-f4ce-47f3-8220-89217c3d8699", - "start": { - "$date": "2022-03-19T14:39:39.000Z" - }, - "end": { - "$date": "2022-03-19T15:17:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "86d2c506-247a-44cb-b559-e8968b0891fb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-19T15:19:53.000Z" - }, - "end": { - "$date": "2022-03-19T16:04:32.000Z" - }, - "events": [ - { - "uuid": "cb08e3f3-ba8b-4c40-b2eb-1b30f8453a63", - "start": { - "$date": "2022-03-19T15:19:53.000Z" - }, - "end": { - "$date": "2022-03-19T16:04:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "67303f24-aa63-42c3-9e19-6237c83f4e34", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-19T16:54:49.000Z" - }, - "end": { - "$date": "2022-03-19T16:59:40.000Z" - }, - "events": [ - { - "uuid": "9420e444-f0b9-4e43-b9fd-485433493684", - "start": { - "$date": "2022-03-19T16:54:49.000Z" - }, - "end": { - "$date": "2022-03-19T16:59:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4b56c508-7f9a-4cee-bebd-905e4343ef2f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-19T17:22:43.000Z" - }, - "end": { - "$date": "2022-03-19T17:43:33.000Z" - }, - "events": [ - { - "uuid": "722bacc8-d37b-4b16-a92b-8e3d5d728ade", - "start": { - "$date": "2022-03-19T17:22:43.000Z" - }, - "end": { - "$date": "2022-03-19T17:43:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "1f8745d1-0409-4475-af65-b94055f50be9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-19T17:29:12.000Z" - }, - "end": { - "$date": "2022-03-19T17:52:04.000Z" - }, - "events": [ - { - "uuid": "cbe090e9-6222-413a-8f8c-ea9d431c0f20", - "start": { - "$date": "2022-03-19T17:29:12.000Z" - }, - "end": { - "$date": "2022-03-19T17:52:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "062cd841-34f4-486c-8404-1e1b0acf87de", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-19T17:55:44.000Z" - }, - "end": { - "$date": "2022-03-19T18:08:17.000Z" - }, - "events": [ - { - "uuid": "098bcb38-aadf-452b-8125-0e231854a73b", - "start": { - "$date": "2022-03-19T17:55:44.000Z" - }, - "end": { - "$date": "2022-03-19T18:08:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e449cbc2-f800-4ed6-8550-2e27188d77cd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-19T18:10:40.000Z" - }, - "end": { - "$date": "2022-03-19T18:26:55.000Z" - }, - "events": [ - { - "uuid": "1ab25d0a-4ba9-45b0-934a-e242ac0c9ce0", - "start": { - "$date": "2022-03-19T18:10:40.000Z" - }, - "end": { - "$date": "2022-03-19T18:26:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "222e5636-3854-44e0-b695-7b64cab418bc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-19T18:29:16.000Z" - }, - "end": { - "$date": "2022-03-19T18:41:32.000Z" - }, - "events": [ - { - "uuid": "62bd6b11-70ed-4311-a5d0-3ab36286c9c5", - "start": { - "$date": "2022-03-19T18:29:16.000Z" - }, - "end": { - "$date": "2022-03-19T18:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d2cf094-b7d5-43e5-ab10-987f692a6c7d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-19T18:53:30.000Z" - }, - "end": { - "$date": "2022-03-19T19:07:34.000Z" - }, - "events": [ - { - "uuid": "43017bac-a9fc-4655-a288-912600046fb5", - "start": { - "$date": "2022-03-19T18:53:30.000Z" - }, - "end": { - "$date": "2022-03-19T19:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "4ee77ab9-940a-458c-8911-4718a8ece6d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-19T19:27:22.000Z" - }, - "end": { - "$date": "2022-03-20T07:17:30.000Z" - }, - "events": [ - { - "uuid": "d3993de8-fcef-499f-b905-5f0a0f6278b2", - "start": { - "$date": "2022-03-19T19:27:22.000Z" - }, - "end": { - "$date": "2022-03-20T07:17:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f8a62d24-1b14-4a86-856c-522660e720c3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-19T19:36:26.000Z" - }, - "end": { - "$date": "2022-03-19T19:43:46.000Z" - }, - "events": [ - { - "uuid": "d7f5cfad-3ef6-4ec8-a50a-2b46accd3b2e", - "start": { - "$date": "2022-03-19T19:36:26.000Z" - }, - "end": { - "$date": "2022-03-19T19:43:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0b46183e-df36-408b-b27a-4632e2dc9486", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-19T20:25:28.000Z" - }, - "end": { - "$date": "2022-03-19T21:31:03.000Z" - }, - "events": [ - { - "uuid": "cb28bb65-7de6-4fe0-915b-c73a099131e1", - "start": { - "$date": "2022-03-19T20:25:28.000Z" - }, - "end": { - "$date": "2022-03-19T21:31:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "231b28ec-58ca-4045-9b65-fcab63c87a3a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-19T22:12:59.000Z" - }, - "end": { - "$date": "2022-03-20T00:47:59.000Z" - }, - "events": [ - { - "uuid": "f854e8c0-eefa-44f2-a962-29fb1b13e6f2", - "start": { - "$date": "2022-03-19T22:12:59.000Z" - }, - "end": { - "$date": "2022-03-20T00:47:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c12423b-aaed-43b3-9d2e-ddf9e557e2b7", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-19T23:57:50.000Z" - }, - "end": { - "$date": "2022-03-20T00:36:35.000Z" - }, - "events": [ - { - "uuid": "4380a8d8-8277-4b56-b18c-debbcca312ca", - "start": { - "$date": "2022-03-19T23:57:50.000Z" - }, - "end": { - "$date": "2022-03-20T00:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e70c7bc5-695a-491a-8c44-39aaf3d8e204", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-20T00:20:24.000Z" - }, - "end": { - "$date": "2022-03-20T01:00:15.000Z" - }, - "events": [ - { - "uuid": "6bd28c8a-10b6-4942-aea0-4471bd1a9de1", - "start": { - "$date": "2022-03-20T00:20:24.000Z" - }, - "end": { - "$date": "2022-03-20T01:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa15b1b6-f7dc-47ef-9a73-9cf72bbe6be3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T00:44:31.000Z" - }, - "end": { - "$date": "2022-03-20T01:10:12.000Z" - }, - "events": [ - { - "uuid": "0db22225-5761-4bd7-819a-9ed649b33eb2", - "start": { - "$date": "2022-03-20T00:44:31.000Z" - }, - "end": { - "$date": "2022-03-20T01:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "78484ba1-d9b7-491f-bcda-3468a97842a4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-20T01:26:26.000Z" - }, - "end": { - "$date": "2022-03-20T01:54:58.000Z" - }, - "events": [ - { - "uuid": "5251d8ad-6142-4ce1-9062-75fd2d56f1f2", - "start": { - "$date": "2022-03-20T01:26:26.000Z" - }, - "end": { - "$date": "2022-03-20T01:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "93b42391-a255-47ab-8090-78a836afdeee", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T02:32:51.000Z" - }, - "end": { - "$date": "2022-03-20T06:25:25.000Z" - }, - "events": [ - { - "uuid": "8830713b-3e6a-435d-bc2c-a5b46c084df7", - "start": { - "$date": "2022-03-20T02:32:51.000Z" - }, - "end": { - "$date": "2022-03-20T06:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cc621f0c-c8df-4098-bcd0-d121069a80b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-20T02:58:50.000Z" - }, - "end": { - "$date": "2022-03-20T03:13:26.000Z" - }, - "events": [ - { - "uuid": "7ac434c6-da03-4f4d-823f-2bffe69b4e66", - "start": { - "$date": "2022-03-20T02:58:50.000Z" - }, - "end": { - "$date": "2022-03-20T03:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fc46e942-b414-4913-84bb-c762f58aefb5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-20T03:05:49.000Z" - }, - "end": { - "$date": "2022-03-20T04:09:32.000Z" - }, - "events": [ - { - "uuid": "ec993bc6-8bbe-491c-a5e0-bd918d998150", - "start": { - "$date": "2022-03-20T03:05:49.000Z" - }, - "end": { - "$date": "2022-03-20T04:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6301e356-08f3-4d81-8083-a3c85a92136e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-20T02:29:29.000Z" - }, - "end": { - "$date": "2022-03-20T07:39:55.000Z" - }, - "events": [ - { - "uuid": "9bc3f8e9-1f0f-4023-96cc-6b3882809bef", - "start": { - "$date": "2022-03-20T02:29:29.000Z" - }, - "end": { - "$date": "2022-03-20T07:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe8d95a6-7a0d-4060-aef5-dc5ec9870712", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-20T03:39:32.000Z" - }, - "end": { - "$date": "2022-03-20T04:00:04.000Z" - }, - "events": [ - { - "uuid": "e79fcfe2-27ee-43af-b249-69bca35f6549", - "start": { - "$date": "2022-03-20T03:39:32.000Z" - }, - "end": { - "$date": "2022-03-20T04:00:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3b765d2a-3020-45cc-be92-82d60b3d37b6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-20T03:56:28.000Z" - }, - "end": { - "$date": "2022-03-20T04:06:54.000Z" - }, - "events": [ - { - "uuid": "cb8e94a3-7297-41ba-8aa0-861d47e5914c", - "start": { - "$date": "2022-03-20T03:56:28.000Z" - }, - "end": { - "$date": "2022-03-20T04:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c7d1e991-02ca-4d34-a8b2-7491c893a353", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-20T04:00:23.000Z" - }, - "end": { - "$date": "2022-03-20T05:25:38.000Z" - }, - "events": [ - { - "uuid": "ef374913-3739-4e34-a123-69d0cc697a52", - "start": { - "$date": "2022-03-20T04:00:23.000Z" - }, - "end": { - "$date": "2022-03-20T05:25:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a15863d4-379d-45c0-9d3c-823129be65a1", - "uuid": "ca29f8cb-fe01-4323-afed-8e7c1460a16a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-20T04:20:10.000Z" - }, - "end": { - "$date": "2022-03-20T04:21:45.000Z" - }, - "events": [ - { - "uuid": "f8b88b4a-0310-468b-812a-2c0cf4d7cf46", - "start": { - "$date": "2022-03-20T04:20:10.000Z" - }, - "end": { - "$date": "2022-03-20T04:21:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "04182885-1e41-404c-bc79-a39be27e196c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-20T04:29:19.000Z" - }, - "end": { - "$date": "2022-03-20T07:00:00.000Z" - }, - "events": [ - { - "uuid": "519eb293-af5b-4ea1-a391-df66c7598925", - "start": { - "$date": "2022-03-20T04:29:19.000Z" - }, - "end": { - "$date": "2022-03-20T07:00:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2a499cfb-fb45-48c4-bfcb-4d3196db4606", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-20T04:29:30.000Z" - }, - "end": { - "$date": "2022-03-20T05:27:22.000Z" - }, - "events": [ - { - "uuid": "a34c151f-2490-4a06-8bef-b0dfd2b83f28", - "start": { - "$date": "2022-03-20T04:29:30.000Z" - }, - "end": { - "$date": "2022-03-20T05:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "07bfbcb0-122b-4fbb-a151-3f055722ecce", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-20T04:41:02.000Z" - }, - "end": { - "$date": "2022-03-20T07:01:17.000Z" - }, - "events": [ - { - "uuid": "11c28933-2df3-47cf-a441-b318b8b6d0f9", - "start": { - "$date": "2022-03-20T04:41:02.000Z" - }, - "end": { - "$date": "2022-03-20T07:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0b1a3b1b-fdf5-4fa3-99a5-5a0b33bcefea", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-20T05:27:42.000Z" - }, - "end": { - "$date": "2022-03-20T06:17:34.000Z" - }, - "events": [ - { - "uuid": "cbbdfb40-7c59-4c8b-b51e-d3ca93018690", - "start": { - "$date": "2022-03-20T05:27:42.000Z" - }, - "end": { - "$date": "2022-03-20T06:17:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "29379961-d10f-4bb5-bf33-8ae184cee219", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-20T05:27:37.000Z" - }, - "end": { - "$date": "2022-03-20T06:57:20.000Z" - }, - "events": [ - { - "uuid": "e99d5889-c23f-4680-85d4-9a31e138e0d2", - "start": { - "$date": "2022-03-20T05:27:37.000Z" - }, - "end": { - "$date": "2022-03-20T06:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9798c424-5f93-4f1a-b79c-aee0d0e82c75", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T06:43:05.000Z" - }, - "end": { - "$date": "2022-03-20T07:16:57.000Z" - }, - "events": [ - { - "uuid": "12177256-57d1-4cb3-b003-95bf09257550", - "start": { - "$date": "2022-03-20T06:43:05.000Z" - }, - "end": { - "$date": "2022-03-20T07:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be2c1e65-b3d3-4a32-af07-bc7476e17fde", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T07:27:27.000Z" - }, - "end": { - "$date": "2022-03-20T07:47:03.000Z" - }, - "events": [ - { - "uuid": "ddb362c7-2bc9-49e8-b127-421583b0bee7", - "start": { - "$date": "2022-03-20T07:27:27.000Z" - }, - "end": { - "$date": "2022-03-20T07:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cb39f147-87b8-49da-ae32-0df8c5a5a5e1", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T07:49:38.000Z" - }, - "end": { - "$date": "2022-03-20T08:12:54.000Z" - }, - "events": [ - { - "uuid": "6a46f277-ef1a-49c5-ab3a-93bc744d0626", - "start": { - "$date": "2022-03-20T07:49:38.000Z" - }, - "end": { - "$date": "2022-03-20T08:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "c936612d-bd69-4e83-92d7-78a5b724af2a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-20T07:50:31.000Z" - }, - "end": { - "$date": "2022-03-20T10:14:04.000Z" - }, - "events": [ - { - "uuid": "1713027e-b225-4f63-8dda-cb3d158d5530", - "start": { - "$date": "2022-03-20T07:50:31.000Z" - }, - "end": { - "$date": "2022-03-20T10:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9d7aeb6-e166-491b-b2fb-99faf425ea9d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T08:16:03.000Z" - }, - "end": { - "$date": "2022-03-20T08:43:34.000Z" - }, - "events": [ - { - "uuid": "e7b1ab7f-fc10-47ac-b10d-4a24667f6f30", - "start": { - "$date": "2022-03-20T08:16:03.000Z" - }, - "end": { - "$date": "2022-03-20T08:43:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83ad32a9-469c-4c4e-89fa-9039e38763eb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-20T08:45:39.000Z" - }, - "end": { - "$date": "2022-03-20T09:01:20.000Z" - }, - "events": [ - { - "uuid": "64134a45-e7ca-4096-bae9-9b6ddcfefda2", - "start": { - "$date": "2022-03-20T08:45:39.000Z" - }, - "end": { - "$date": "2022-03-20T09:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5bf9b7de-9412-45d1-9e29-9d8b0ae7740b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-20T17:25:01.000Z" - }, - "end": { - "$date": "2022-03-20T17:55:13.000Z" - }, - "events": [ - { - "uuid": "dd32c4c6-e075-49a2-b782-1b46c06afcb7", - "start": { - "$date": "2022-03-20T17:25:01.000Z" - }, - "end": { - "$date": "2022-03-20T17:55:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "396ca943-7ea2-4f26-a853-10ee68299a6b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-20T17:58:14.000Z" - }, - "end": { - "$date": "2022-03-20T18:38:18.000Z" - }, - "events": [ - { - "uuid": "dc35414f-4830-4486-9085-9cdb895c822f", - "start": { - "$date": "2022-03-20T17:58:14.000Z" - }, - "end": { - "$date": "2022-03-20T18:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "aefd4f52-7de1-44a0-b25d-8cafbf398b5d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-20T19:51:44.000Z" - }, - "end": { - "$date": "2022-03-21T09:01:16.000Z" - }, - "events": [ - { - "uuid": "281ffa35-3aa7-491c-ab7f-9eda10f80022", - "start": { - "$date": "2022-03-20T19:51:44.000Z" - }, - "end": { - "$date": "2022-03-21T00:37:44.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49e8cef2-3398-48d4-964a-5a586eb0c62a", - "start": { - "$date": "2022-03-21T00:37:44.000Z" - }, - "end": { - "$date": "2022-03-21T00:49:44.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a1e5080d-98db-4ac9-b642-9ad7996bc1d5", - "start": { - "$date": "2022-03-21T00:49:44.000Z" - }, - "end": { - "$date": "2022-03-21T09:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "f06d89cd-b0cb-4890-8543-d52ec759a5d6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-20T21:21:06.000Z" - }, - "end": { - "$date": "2022-03-20T23:31:56.000Z" - }, - "events": [ - { - "uuid": "197c894c-d24d-4d84-8016-5c14396b1916", - "start": { - "$date": "2022-03-20T21:21:06.000Z" - }, - "end": { - "$date": "2022-03-20T23:31:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "e16f9f3e-7e43-44af-a793-72e4c4806309", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-20T22:29:49.000Z" - }, - "end": { - "$date": "2022-03-20T23:03:57.000Z" - }, - "events": [ - { - "uuid": "7536eacd-c1f7-44a9-b228-e021372017e5", - "start": { - "$date": "2022-03-20T22:29:49.000Z" - }, - "end": { - "$date": "2022-03-20T23:03:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3eed326f-cbc1-45a0-8c11-f222d4715a22", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-21T00:36:07.000Z" - }, - "end": { - "$date": "2022-03-21T02:18:31.000Z" - }, - "events": [ - { - "uuid": "c94955fe-b360-4fb2-b0fe-3da567188a35", - "start": { - "$date": "2022-03-21T00:36:07.000Z" - }, - "end": { - "$date": "2022-03-21T02:18:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5dc9408b-de1a-439e-bcdc-d89267864da8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-21T00:36:07.000Z" - }, - "end": { - "$date": "2022-03-21T05:40:56.000Z" - }, - "events": [ - { - "uuid": "51426074-38b8-42cc-8473-d4946ad414f4", - "start": { - "$date": "2022-03-21T00:36:07.000Z" - }, - "end": { - "$date": "2022-03-21T05:40:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5a066417-9d6c-495e-bd0e-53b2637521eb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-21T03:46:06.000Z" - }, - "end": { - "$date": "2022-03-21T04:05:54.000Z" - }, - "events": [ - { - "uuid": "ff234f19-d164-4036-9ae9-91afb95551d7", - "start": { - "$date": "2022-03-21T03:46:06.000Z" - }, - "end": { - "$date": "2022-03-21T04:05:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9db436c-f98a-4665-880f-9ea0dbb7b93c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-21T03:55:18.000Z" - }, - "end": { - "$date": "2022-03-21T04:29:59.000Z" - }, - "events": [ - { - "uuid": "4658d187-304d-41ff-a40f-bf3448c64a08", - "start": { - "$date": "2022-03-21T03:55:18.000Z" - }, - "end": { - "$date": "2022-03-21T04:29:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c485dbde-ae07-4555-80f1-0c6b20b4baa7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-21T04:12:23.000Z" - }, - "end": { - "$date": "2022-03-21T05:35:40.000Z" - }, - "events": [ - { - "uuid": "5e1f5f5a-ac72-431d-b168-9b5a723c59bf", - "start": { - "$date": "2022-03-21T04:12:23.000Z" - }, - "end": { - "$date": "2022-03-21T05:35:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e8a1dbcf-745d-45da-9384-077421756d66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-21T04:30:35.000Z" - }, - "end": { - "$date": "2022-03-21T04:48:08.000Z" - }, - "events": [ - { - "uuid": "4d5e2d2f-9456-4036-851c-08f3f73219f1", - "start": { - "$date": "2022-03-21T04:30:35.000Z" - }, - "end": { - "$date": "2022-03-21T04:48:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "91abe2a8-204d-4ab9-aaae-7148fbd85d26", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-21T04:49:18.000Z" - }, - "end": { - "$date": "2022-03-21T05:22:48.000Z" - }, - "events": [ - { - "uuid": "d9df042e-b49b-4fc0-bbf3-406026aac485", - "start": { - "$date": "2022-03-21T04:49:18.000Z" - }, - "end": { - "$date": "2022-03-21T05:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "30bbb1bc-b02a-4ce8-aa38-843c034be755", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-21T04:49:45.000Z" - }, - "end": { - "$date": "2022-03-21T05:49:44.000Z" - }, - "events": [ - { - "uuid": "7c18a7ac-4ce6-43e9-91cd-32f58cbd7c9a", - "start": { - "$date": "2022-03-21T04:49:45.000Z" - }, - "end": { - "$date": "2022-03-21T05:49:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df1d5e15-4879-4a84-b51d-0faf34f4019e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-21T04:53:08.000Z" - }, - "end": { - "$date": "2022-03-21T05:49:25.000Z" - }, - "events": [ - { - "uuid": "b79f8225-7c5f-4e80-9731-bc3c2cf5fc93", - "start": { - "$date": "2022-03-21T04:53:08.000Z" - }, - "end": { - "$date": "2022-03-21T05:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdfa2c2d-a2ea-40ec-8a7d-78b25017853e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-21T05:07:23.000Z" - }, - "end": { - "$date": "2022-03-21T05:31:13.000Z" - }, - "events": [ - { - "uuid": "0df20ac1-6591-4a98-83e5-282eb99676fb", - "start": { - "$date": "2022-03-21T05:07:23.000Z" - }, - "end": { - "$date": "2022-03-21T05:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f4e2ff38-1e6c-4d5c-afdb-0751e91b1b79", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-21T05:22:54.000Z" - }, - "end": { - "$date": "2022-03-21T05:48:51.000Z" - }, - "events": [ - { - "uuid": "2a03dfa0-41f4-48e5-adba-924bb449abe1", - "start": { - "$date": "2022-03-21T05:22:54.000Z" - }, - "end": { - "$date": "2022-03-21T05:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "25ed2341-509d-47a5-9844-4a17efb606aa", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-21T05:27:40.000Z" - }, - "end": { - "$date": "2022-03-21T06:42:57.000Z" - }, - "events": [ - { - "uuid": "3a39a2c7-50eb-4039-9e10-1eee2ac43005", - "start": { - "$date": "2022-03-21T05:27:40.000Z" - }, - "end": { - "$date": "2022-03-21T06:42:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d195f5d5-fe47-48ee-8a55-62852da4d200", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-21T05:34:13.000Z" - }, - "end": { - "$date": "2022-03-21T05:48:23.000Z" - }, - "events": [ - { - "uuid": "91fd23d1-7e7f-44c4-bab1-219feb6f20b6", - "start": { - "$date": "2022-03-21T05:34:13.000Z" - }, - "end": { - "$date": "2022-03-21T05:48:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "89fba417-204a-4d84-85bc-653ae6e566a1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-21T05:42:12.000Z" - }, - "end": { - "$date": "2022-03-21T06:12:17.000Z" - }, - "events": [ - { - "uuid": "6fb4c109-7f94-45e4-b3af-1cc6810326e6", - "start": { - "$date": "2022-03-21T05:42:12.000Z" - }, - "end": { - "$date": "2022-03-21T06:12:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5af169eb-c027-4db7-a84c-1eb609c38c8c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-21T05:50:29.000Z" - }, - "end": { - "$date": "2022-03-21T06:26:21.000Z" - }, - "events": [ - { - "uuid": "79cf4d1b-8273-48af-8a32-ae682974d6f7", - "start": { - "$date": "2022-03-21T05:50:29.000Z" - }, - "end": { - "$date": "2022-03-21T06:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55cf7173-820f-482e-a6ad-b72f41ad1c75", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-21T06:28:19.000Z" - }, - "end": { - "$date": "2022-03-21T06:46:20.000Z" - }, - "events": [ - { - "uuid": "ff43597b-e16c-48ee-94d5-0b3ee1e450ef", - "start": { - "$date": "2022-03-21T06:28:19.000Z" - }, - "end": { - "$date": "2022-03-21T06:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "910caeaf-85de-4ab3-a3f6-e377320765e3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-21T15:37:47.000Z" - }, - "end": { - "$date": "2022-03-21T17:14:41.000Z" - }, - "events": [ - { - "uuid": "858a58ea-8b5a-4f6d-95fa-db787437ee5d", - "start": { - "$date": "2022-03-21T15:37:47.000Z" - }, - "end": { - "$date": "2022-03-21T17:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "bd0eb30c-d93d-473b-926b-c62091e70bed", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-21T17:20:51.000Z" - }, - "end": { - "$date": "2022-03-21T19:20:59.000Z" - }, - "events": [ - { - "uuid": "19d1c6ca-91c0-4a78-900b-d9bc2fc5454b", - "start": { - "$date": "2022-03-21T17:20:51.000Z" - }, - "end": { - "$date": "2022-03-21T19:10:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9d9ec080-8240-41cc-b688-5910db55d19c", - "start": { - "$date": "2022-03-21T19:10:51.000Z" - }, - "end": { - "$date": "2022-03-21T19:20:59.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "3f31786c-3bdd-4923-9422-c458de604384", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-21T18:55:18.000Z" - }, - "end": { - "$date": "2022-03-21T20:13:39.000Z" - }, - "events": [ - { - "uuid": "24d681a4-c619-4b97-8b65-4460055263b1", - "start": { - "$date": "2022-03-21T18:55:18.000Z" - }, - "end": { - "$date": "2022-03-21T20:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "21dffcf9-916d-438a-89be-12b5ca426694", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-21T20:52:31.000Z" - }, - "end": { - "$date": "2022-03-21T21:47:58.000Z" - }, - "events": [ - { - "uuid": "d48c2a37-2196-4b24-accc-f22ec59d2053", - "start": { - "$date": "2022-03-21T20:52:31.000Z" - }, - "end": { - "$date": "2022-03-21T21:47:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "47af3716-8ac3-42bf-8263-5cfdf3d200e8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-21T21:48:52.000Z" - }, - "end": { - "$date": "2022-03-21T22:16:25.000Z" - }, - "events": [ - { - "uuid": "da238569-4f5d-45e3-ac4e-acb525041b25", - "start": { - "$date": "2022-03-21T21:48:52.000Z" - }, - "end": { - "$date": "2022-03-21T22:16:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6dfe88ea-5970-45de-b49b-c0ab248e2109", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-03-21T21:54:58.000Z" - }, - "end": { - "$date": "2022-03-21T22:51:02.000Z" - }, - "events": [ - { - "uuid": "e45b7e6f-f833-473e-8b76-dff85edbec5b", - "start": { - "$date": "2022-03-21T21:54:58.000Z" - }, - "end": { - "$date": "2022-03-21T22:51:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "57a67048-c1ad-4a15-a0a1-ac3e6b3412e5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-21T22:04:55.000Z" - }, - "end": { - "$date": "2022-03-21T22:37:30.000Z" - }, - "events": [ - { - "uuid": "c0dcea21-65df-4f61-97fb-e5dda6105766", - "start": { - "$date": "2022-03-21T22:04:55.000Z" - }, - "end": { - "$date": "2022-03-21T22:17:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "40203a5b-549c-4f7f-9ed7-d09cab5da123", - "start": { - "$date": "2022-03-21T22:17:55.000Z" - }, - "end": { - "$date": "2022-03-21T22:37:30.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ed0d6906-f954-487b-8ebc-991f8af76744", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-21T22:07:20.000Z" - }, - "end": { - "$date": "2022-03-21T22:08:30.000Z" - }, - "events": [ - { - "uuid": "4a6d0fcf-dabb-4134-ad09-8a0ba08a84ed", - "start": { - "$date": "2022-03-21T22:07:20.000Z" - }, - "end": { - "$date": "2022-03-21T22:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "ca51e864-dcd1-4834-9210-613be19a04dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-21T22:14:50.000Z" - }, - "end": { - "$date": "2022-03-22T09:53:50.000Z" - }, - "events": [ - { - "uuid": "4d4259fb-a619-478b-bcd5-d02a44b86835", - "start": { - "$date": "2022-03-21T22:14:50.000Z" - }, - "end": { - "$date": "2022-03-22T00:59:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "87e7bfcd-1625-472e-b1a7-8f8cf5c9f29b", - "start": { - "$date": "2022-03-22T00:59:50.000Z" - }, - "end": { - "$date": "2022-03-22T01:07:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c682189f-227f-47b6-852e-6ab5098409d6", - "start": { - "$date": "2022-03-22T01:07:50.000Z" - }, - "end": { - "$date": "2022-03-22T09:53:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "d45443d5-ac36-483a-a678-f00e84c4c856", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-21T22:14:56.000Z" - }, - "end": { - "$date": "2022-03-21T22:17:14.000Z" - }, - "events": [ - { - "uuid": "6b9b6390-33b8-4561-9168-923d7aa22f30", - "start": { - "$date": "2022-03-21T22:14:56.000Z" - }, - "end": { - "$date": "2022-03-21T22:17:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "37da1bd4-3172-47c0-a18a-ce8560f2a3f4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-21T22:47:35.000Z" - }, - "end": { - "$date": "2022-03-21T22:50:23.000Z" - }, - "events": [ - { - "uuid": "29676fc5-2a2b-4d6d-8810-264d7e820437", - "start": { - "$date": "2022-03-21T22:47:35.000Z" - }, - "end": { - "$date": "2022-03-21T22:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b450930e-c676-4521-94fe-da3e804ff499", - "uuid": "5b067c3d-48bb-4bfa-a1d5-1cf9ecdeb4f4", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-21T22:52:25.000Z" - }, - "end": { - "$date": "2022-03-21T22:56:10.000Z" - }, - "events": [ - { - "uuid": "5c32dcd7-2e04-46b8-8dc2-c0fbeecf138c", - "start": { - "$date": "2022-03-21T22:52:25.000Z" - }, - "end": { - "$date": "2022-03-21T22:56:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b450930e-c676-4521-94fe-da3e804ff499", - "uuid": "ee5ab3d2-68cb-4836-a784-dbc34a01a954", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-21T22:56:22.000Z" - }, - "end": { - "$date": "2022-03-21T23:27:15.000Z" - }, - "events": [ - { - "uuid": "1bed325d-2730-4f44-891c-10eedb622da7", - "start": { - "$date": "2022-03-21T22:56:22.000Z" - }, - "end": { - "$date": "2022-03-21T23:27:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "207f368a-d799-4615-9f34-fdb82c09e162", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-21T22:59:18.000Z" - }, - "end": { - "$date": "2022-03-21T23:20:05.000Z" - }, - "events": [ - { - "uuid": "6cdd6166-b0ce-4ded-a60a-fc7b1e7c82ea", - "start": { - "$date": "2022-03-21T22:59:18.000Z" - }, - "end": { - "$date": "2022-03-21T23:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c623f9d1-4ba0-4a5d-a31f-a1552297f235", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-21T23:05:40.000Z" - }, - "end": { - "$date": "2022-03-21T23:28:01.000Z" - }, - "events": [ - { - "uuid": "125644fa-907b-4e48-9b28-987e7eef300c", - "start": { - "$date": "2022-03-21T23:05:40.000Z" - }, - "end": { - "$date": "2022-03-21T23:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76afab99-c1d6-4b19-81d8-12210a8cb579", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-21T23:17:07.000Z" - }, - "end": { - "$date": "2022-03-21T23:47:33.000Z" - }, - "events": [ - { - "uuid": "7d44dff2-ad45-41dc-95ba-18abdecae6f5", - "start": { - "$date": "2022-03-21T23:17:07.000Z" - }, - "end": { - "$date": "2022-03-21T23:47:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "888c9bb2-2b11-4011-81cb-e9cba68c8280", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-21T23:47:14.000Z" - }, - "end": { - "$date": "2022-03-22T01:36:21.000Z" - }, - "events": [ - { - "uuid": "b8bdc6c5-cd90-455d-888b-1ad1fdfc5e12", - "start": { - "$date": "2022-03-21T23:47:14.000Z" - }, - "end": { - "$date": "2022-03-22T00:20:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8a97624a-8d54-41fe-8c09-272dac4864f0", - "start": { - "$date": "2022-03-22T00:20:14.000Z" - }, - "end": { - "$date": "2022-03-22T00:31:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d39bc5c2-b4dc-4843-8555-c274322b22aa", - "start": { - "$date": "2022-03-22T00:31:14.000Z" - }, - "end": { - "$date": "2022-03-22T00:57:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b814b1bb-2b72-42c0-82f0-e793b8e3cdc5", - "start": { - "$date": "2022-03-22T00:57:14.000Z" - }, - "end": { - "$date": "2022-03-22T01:03:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2eeb0fce-2ebb-4bd8-90a8-b13a6f2237da", - "start": { - "$date": "2022-03-22T01:03:14.000Z" - }, - "end": { - "$date": "2022-03-22T01:16:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c4177c8-ed5a-4f7d-915d-9097a2e07e62", - "start": { - "$date": "2022-03-22T01:16:14.000Z" - }, - "end": { - "$date": "2022-03-22T01:36:21.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "ace07279-d4e3-4012-9a7c-44d1a8024391", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-21T23:58:19.000Z" - }, - "end": { - "$date": "2022-03-22T00:00:47.000Z" - }, - "events": [ - { - "uuid": "ff2031ca-420a-45e4-ae83-39ec5682f348", - "start": { - "$date": "2022-03-21T23:58:19.000Z" - }, - "end": { - "$date": "2022-03-22T00:00:47.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "2a60186a-e65b-426a-81c0-177d9268c084", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-22T00:03:48.000Z" - }, - "end": { - "$date": "2022-03-22T00:06:35.000Z" - }, - "events": [ - { - "uuid": "a4ee8852-5d97-477c-b41d-16c0dac40d21", - "start": { - "$date": "2022-03-22T00:03:48.000Z" - }, - "end": { - "$date": "2022-03-22T00:06:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "fd1ca3eb-4894-4847-bfa0-7819874c1f9d", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-22T00:06:45.000Z" - }, - "end": { - "$date": "2022-03-22T02:50:01.000Z" - }, - "events": [ - { - "uuid": "dda0face-649a-482f-bbbc-8643934c6e65", - "start": { - "$date": "2022-03-22T00:06:45.000Z" - }, - "end": { - "$date": "2022-03-22T02:50:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "0f833b57-7700-4e30-811c-d01b0db0cd6e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-22T01:57:17.000Z" - }, - "end": { - "$date": "2022-03-22T03:46:21.000Z" - }, - "events": [ - { - "uuid": "2a320832-9e1d-46d2-97f9-177bb9162922", - "start": { - "$date": "2022-03-22T01:57:17.000Z" - }, - "end": { - "$date": "2022-03-22T03:46:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8b2b050c-4bd9-44db-97b3-4be24bc16a7f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-22T01:59:29.000Z" - }, - "end": { - "$date": "2022-03-22T04:39:26.000Z" - }, - "events": [ - { - "uuid": "155a791d-4548-44dc-b5ee-8f1f9d95aee2", - "start": { - "$date": "2022-03-22T01:59:29.000Z" - }, - "end": { - "$date": "2022-03-22T04:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "722d270e-4ea8-40ec-9500-175adcabdd1e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-22T02:08:01.000Z" - }, - "end": { - "$date": "2022-03-22T05:50:23.000Z" - }, - "events": [ - { - "uuid": "fc22c39f-fee9-4e34-9865-875232446bbb", - "start": { - "$date": "2022-03-22T02:08:01.000Z" - }, - "end": { - "$date": "2022-03-22T05:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8d685710-c2a6-4f5f-9e07-bdcb8c7675c8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-22T02:10:23.000Z" - }, - "end": { - "$date": "2022-03-22T04:04:47.000Z" - }, - "events": [ - { - "uuid": "88146056-8ca3-47c5-a57d-c801b873d60b", - "start": { - "$date": "2022-03-22T02:10:23.000Z" - }, - "end": { - "$date": "2022-03-22T04:04:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fef1d0b4-afbe-4596-b45f-506f1fd07ea3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-22T02:12:28.000Z" - }, - "end": { - "$date": "2022-03-22T04:01:04.000Z" - }, - "events": [ - { - "uuid": "46597814-7af2-4d0c-93f8-20317e4cc945", - "start": { - "$date": "2022-03-22T02:12:28.000Z" - }, - "end": { - "$date": "2022-03-22T04:01:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e7f2f8da-da22-406a-a970-3961b594278a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-22T03:11:20.000Z" - }, - "end": { - "$date": "2022-03-22T04:20:31.000Z" - }, - "events": [ - { - "uuid": "1d5b08a7-9cb8-41ba-b497-b765197df054", - "start": { - "$date": "2022-03-22T03:11:20.000Z" - }, - "end": { - "$date": "2022-03-22T04:20:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "78afdc1a-aa4c-41f9-b266-ed1788df2422", - "uuid": "a52b9eea-f179-49f1-a919-30348e2adb5a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-22T03:45:03.000Z" - }, - "end": { - "$date": "2022-03-22T04:08:49.000Z" - }, - "events": [ - { - "uuid": "967c3332-967a-4748-8c2e-c16aebbaadaa", - "start": { - "$date": "2022-03-22T03:45:03.000Z" - }, - "end": { - "$date": "2022-03-22T04:08:49.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "8e537bf3-d149-46a0-b3d6-1f6eb9e21e04", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-22T07:30:39.000Z" - }, - "end": { - "$date": "2022-03-22T07:30:54.000Z" - }, - "events": [ - { - "uuid": "6b302ac3-c8dd-4034-943a-46220dd183b0", - "start": { - "$date": "2022-03-22T07:30:39.000Z" - }, - "end": { - "$date": "2022-03-22T07:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "5b40c10b-4dcf-4905-926b-be62163d87a4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-22T04:05:29.000Z" - }, - "end": { - "$date": "2022-03-22T08:21:33.000Z" - }, - "events": [ - { - "uuid": "05c6f85d-3621-41b3-bff3-b9a4a53cd7bc", - "start": { - "$date": "2022-03-22T04:05:29.000Z" - }, - "end": { - "$date": "2022-03-22T08:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "550efd67-79dc-4d13-8561-c176007aa8d3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-22T04:09:42.000Z" - }, - "end": { - "$date": "2022-03-22T06:20:19.000Z" - }, - "events": [ - { - "uuid": "381a8f3f-ee5a-4a0d-b12e-64024ef64c7a", - "start": { - "$date": "2022-03-22T04:09:42.000Z" - }, - "end": { - "$date": "2022-03-22T06:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6b259e92-a09d-42f1-b44d-77554470f849", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-22T04:52:59.000Z" - }, - "end": { - "$date": "2022-03-22T05:02:12.000Z" - }, - "events": [ - { - "uuid": "958cf503-c9b9-457b-ab58-29b773c11cc7", - "start": { - "$date": "2022-03-22T04:52:59.000Z" - }, - "end": { - "$date": "2022-03-22T05:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a86a74a9-ebbd-4bac-a04f-e4572ca45472", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-22T05:14:20.000Z" - }, - "end": { - "$date": "2022-03-22T05:42:35.000Z" - }, - "events": [ - { - "uuid": "9b274714-6839-4f77-85d1-792fef5cd942", - "start": { - "$date": "2022-03-22T05:14:20.000Z" - }, - "end": { - "$date": "2022-03-22T05:42:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "66670bb9-f193-4f09-885e-d4c400eafed5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-22T05:18:37.000Z" - }, - "end": { - "$date": "2022-03-22T06:48:24.000Z" - }, - "events": [ - { - "uuid": "20fa9bb1-2021-4ea6-9158-07277fd374e6", - "start": { - "$date": "2022-03-22T05:18:37.000Z" - }, - "end": { - "$date": "2022-03-22T06:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3348e7c0-8885-409e-9b70-03ae28c19c57", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-22T05:43:45.000Z" - }, - "end": { - "$date": "2022-03-22T05:46:23.000Z" - }, - "events": [ - { - "uuid": "24d9cb7e-1391-4084-bbc1-f4a8e6e04a2a", - "start": { - "$date": "2022-03-22T05:43:45.000Z" - }, - "end": { - "$date": "2022-03-22T05:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a8299f5-0888-4516-b8e5-29e4173bd8fa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-22T05:51:36.000Z" - }, - "end": { - "$date": "2022-03-22T06:09:56.000Z" - }, - "events": [ - { - "uuid": "8e12e278-4155-404d-b675-95154c1379a7", - "start": { - "$date": "2022-03-22T05:51:36.000Z" - }, - "end": { - "$date": "2022-03-22T06:09:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ce1040cb-68ee-44d3-84de-cd30be34f549", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-22T06:51:35.000Z" - }, - "end": { - "$date": "2022-03-22T06:55:15.000Z" - }, - "events": [ - { - "uuid": "fdf9b97b-7710-4359-b129-ff468fbe109b", - "start": { - "$date": "2022-03-22T06:51:35.000Z" - }, - "end": { - "$date": "2022-03-22T06:55:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3efaf24d-6e25-4cf9-8796-07f4f974ace4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-22T06:59:40.000Z" - }, - "end": { - "$date": "2022-03-22T08:49:29.000Z" - }, - "events": [ - { - "uuid": "648ab7ea-5175-4ac2-a200-dc23691b334f", - "start": { - "$date": "2022-03-22T06:59:40.000Z" - }, - "end": { - "$date": "2022-03-22T08:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "504d71c8-b456-484d-b18f-114e47f8760d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-22T14:03:55.000Z" - }, - "end": { - "$date": "2022-03-22T14:04:05.000Z" - }, - "events": [ - { - "uuid": "3da2e7fa-c996-4557-a6a0-7b3103ff4921", - "start": { - "$date": "2022-03-22T14:03:55.000Z" - }, - "end": { - "$date": "2022-03-22T14:04:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "ba0ce67f-da61-4596-9d7f-22c949d34ce6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-22T15:32:20.000Z" - }, - "end": { - "$date": "2022-03-22T16:03:52.000Z" - }, - "events": [ - { - "uuid": "3ffc9782-1ca6-4e13-8990-b39332bf215a", - "start": { - "$date": "2022-03-22T15:32:20.000Z" - }, - "end": { - "$date": "2022-03-22T16:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "87d02ed0-1b68-4fea-b571-f7929ca06615", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-22T15:47:32.000Z" - }, - "end": { - "$date": "2022-03-22T21:23:35.000Z" - }, - "events": [ - { - "uuid": "a14a9128-d54f-4942-b859-a2fe13834e69", - "start": { - "$date": "2022-03-22T15:47:32.000Z" - }, - "end": { - "$date": "2022-03-22T18:19:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9552bc99-7319-46ba-a122-ce3acdb7a7a1", - "start": { - "$date": "2022-03-22T18:19:32.000Z" - }, - "end": { - "$date": "2022-03-22T18:38:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1263159d-4786-4dab-96f9-b8a254203f1c", - "start": { - "$date": "2022-03-22T18:38:32.000Z" - }, - "end": { - "$date": "2022-03-22T21:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "73af9202-8235-4436-a102-2ceca61535ca", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-22T17:31:55.000Z" - }, - "end": { - "$date": "2022-03-22T17:32:10.000Z" - }, - "events": [ - { - "uuid": "c6e14210-6531-44a7-aa26-821dd54c7ce4", - "start": { - "$date": "2022-03-22T17:31:55.000Z" - }, - "end": { - "$date": "2022-03-22T17:32:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "9186b651-9298-4b44-9b41-4fad153d1a50", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-22T20:09:01.000Z" - }, - "end": { - "$date": "2022-03-22T20:18:47.000Z" - }, - "events": [ - { - "uuid": "d83a9aae-9bb6-4f5c-b67c-4ea54b0774cf", - "start": { - "$date": "2022-03-22T20:09:01.000Z" - }, - "end": { - "$date": "2022-03-22T20:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "eb847d4b-6940-440a-876e-3438f51680d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-22T20:19:43.000Z" - }, - "end": { - "$date": "2022-03-22T23:03:52.000Z" - }, - "events": [ - { - "uuid": "9f2562a8-fd13-48a7-9422-6c4430dd169a", - "start": { - "$date": "2022-03-22T20:19:43.000Z" - }, - "end": { - "$date": "2022-03-22T23:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9f1cc861-b7a6-4724-a3c0-beb413b6a6de", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-22T21:09:11.000Z" - }, - "end": { - "$date": "2022-03-22T21:25:36.000Z" - }, - "events": [ - { - "uuid": "a1a86610-9d3b-4ee2-8a78-9ab002cb3e76", - "start": { - "$date": "2022-03-22T21:09:11.000Z" - }, - "end": { - "$date": "2022-03-22T21:25:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "69bc50ec-ea4b-448d-85e4-482d5eade987", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-22T22:07:08.000Z" - }, - "end": { - "$date": "2022-03-23T01:01:32.000Z" - }, - "events": [ - { - "uuid": "6ee59445-761f-4f80-ba19-efa269422449", - "start": { - "$date": "2022-03-22T22:07:08.000Z" - }, - "end": { - "$date": "2022-03-23T01:01:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7658ec2d-ecd3-44a1-bce8-1e96c3514dd2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-22T22:50:04.000Z" - }, - "end": { - "$date": "2022-03-22T23:18:06.000Z" - }, - "events": [ - { - "uuid": "00220f80-3c9e-4e74-987d-8bab2ce87b9a", - "start": { - "$date": "2022-03-22T22:50:04.000Z" - }, - "end": { - "$date": "2022-03-22T23:18:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "918bd6fc-0b67-48ad-b8e0-a1cf0914753e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-22T23:06:44.000Z" - }, - "end": { - "$date": "2022-03-23T00:33:27.000Z" - }, - "events": [ - { - "uuid": "143c1e6d-2013-478d-97e2-e96955fa5067", - "start": { - "$date": "2022-03-22T23:06:44.000Z" - }, - "end": { - "$date": "2022-03-23T00:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "7719a24d-8ec0-4da1-bb84-1f77d09dc781", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-22T23:52:04.000Z" - }, - "end": { - "$date": "2022-03-22T23:54:10.000Z" - }, - "events": [ - { - "uuid": "8ae396c1-2d05-4e84-a16e-7f1f95b5a56a", - "start": { - "$date": "2022-03-22T23:52:04.000Z" - }, - "end": { - "$date": "2022-03-22T23:54:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1eb3f873-f7dd-4dba-b4bd-3a5b01b5d7cf", - "uuid": "62718bbd-f3f8-4b3a-a0e2-dfad0715d92f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-22T23:54:40.000Z" - }, - "end": { - "$date": "2022-03-23T00:16:00.000Z" - }, - "events": [ - { - "uuid": "b5ddd0e2-ffdd-4f8e-8591-f32346318885", - "start": { - "$date": "2022-03-22T23:54:40.000Z" - }, - "end": { - "$date": "2022-03-23T00:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ca57e8b0-e051-4270-8db5-12f10d89ac28", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-23T00:08:27.000Z" - }, - "end": { - "$date": "2022-03-23T00:12:52.000Z" - }, - "events": [ - { - "uuid": "04255414-95dc-41ec-9be7-3074eaf0819c", - "start": { - "$date": "2022-03-23T00:08:27.000Z" - }, - "end": { - "$date": "2022-03-23T00:12:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5fad0345-b195-4027-875f-822c3145a4ca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-23T00:13:03.000Z" - }, - "end": { - "$date": "2022-03-23T00:14:28.000Z" - }, - "events": [ - { - "uuid": "0e4f76ee-e170-46a4-9048-05619c072d42", - "start": { - "$date": "2022-03-23T00:13:03.000Z" - }, - "end": { - "$date": "2022-03-23T00:14:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "40fb99bc-989e-4691-add1-f0552a48741f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-23T00:15:33.000Z" - }, - "end": { - "$date": "2022-03-23T00:24:58.000Z" - }, - "events": [ - { - "uuid": "1e9c1f89-003e-4b5e-9feb-e08ebb42f8a7", - "start": { - "$date": "2022-03-23T00:15:33.000Z" - }, - "end": { - "$date": "2022-03-23T00:24:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c32f71c6-f383-4a6f-86d5-f1a645eb626b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-23T00:16:15.000Z" - }, - "end": { - "$date": "2022-03-23T00:29:01.000Z" - }, - "events": [ - { - "uuid": "dcd92814-847d-49cf-a188-3529a1634efe", - "start": { - "$date": "2022-03-23T00:16:15.000Z" - }, - "end": { - "$date": "2022-03-23T00:29:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c81b601-39a0-4b49-8140-25eb962178d4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-23T00:25:14.000Z" - }, - "end": { - "$date": "2022-03-23T01:23:57.000Z" - }, - "events": [ - { - "uuid": "36f8eb66-aeb7-47fe-9f40-5b946d586b2b", - "start": { - "$date": "2022-03-23T00:25:14.000Z" - }, - "end": { - "$date": "2022-03-23T01:23:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0e3f6388-7561-4847-959f-fe7ddb3610f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T00:39:09.000Z" - }, - "end": { - "$date": "2022-03-23T00:40:48.000Z" - }, - "events": [ - { - "uuid": "91ae464d-47de-4982-8753-a1ae4ff4a0b6", - "start": { - "$date": "2022-03-23T00:39:09.000Z" - }, - "end": { - "$date": "2022-03-23T00:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "dbb009d1-5f24-4028-b0a3-50502d9dd582", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T00:41:25.000Z" - }, - "end": { - "$date": "2022-03-23T02:55:04.000Z" - }, - "events": [ - { - "uuid": "05fddb56-64f8-46e4-84bf-39d298d4d417", - "start": { - "$date": "2022-03-23T00:41:25.000Z" - }, - "end": { - "$date": "2022-03-23T01:40:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e03c4f42-aac5-439d-a6cd-b7ea91012bfb", - "start": { - "$date": "2022-03-23T01:40:25.000Z" - }, - "end": { - "$date": "2022-03-23T01:55:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3114b0a8-ade3-4c28-9441-4bb7fef56650", - "start": { - "$date": "2022-03-23T01:55:25.000Z" - }, - "end": { - "$date": "2022-03-23T02:55:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "972f6135-38a7-4ec3-94f5-5dad3c612d11", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-23T01:40:47.000Z" - }, - "end": { - "$date": "2022-03-23T03:43:43.000Z" - }, - "events": [ - { - "uuid": "21e5ed2b-8b32-4f7c-b28c-542ed1614154", - "start": { - "$date": "2022-03-23T01:40:47.000Z" - }, - "end": { - "$date": "2022-03-23T03:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "e1ff705f-b10a-449c-b984-178c76f3da64", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-23T05:27:44.000Z" - }, - "end": { - "$date": "2022-03-23T05:27:55.000Z" - }, - "events": [ - { - "uuid": "685209d6-a3a6-4e91-b51a-d9ea727584c6", - "start": { - "$date": "2022-03-23T05:27:44.000Z" - }, - "end": { - "$date": "2022-03-23T05:27:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6eed09cc-5448-4bff-aa80-2db517f8e715", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-23T01:52:28.000Z" - }, - "end": { - "$date": "2022-03-23T06:38:05.000Z" - }, - "events": [ - { - "uuid": "d9628e8e-0c86-48c6-85c2-87b8ffbfb545", - "start": { - "$date": "2022-03-23T01:52:28.000Z" - }, - "end": { - "$date": "2022-03-23T06:38:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5efcaf39-84ac-49e4-9609-fb5ab084f0c4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-23T02:08:58.000Z" - }, - "end": { - "$date": "2022-03-23T02:35:00.000Z" - }, - "events": [ - { - "uuid": "e369439c-fc42-4f8d-873d-0016d1e8cb43", - "start": { - "$date": "2022-03-23T02:08:58.000Z" - }, - "end": { - "$date": "2022-03-23T02:35:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7b69fcb-3761-4c70-83fa-289d5d23208a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-23T02:42:29.000Z" - }, - "end": { - "$date": "2022-03-23T03:08:01.000Z" - }, - "events": [ - { - "uuid": "4a33afd5-9e95-4369-b0ec-fc894c60ee92", - "start": { - "$date": "2022-03-23T02:42:29.000Z" - }, - "end": { - "$date": "2022-03-23T03:08:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d0c01417-39de-428a-bd16-d79b719d7b9d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T03:08:29.000Z" - }, - "end": { - "$date": "2022-03-23T05:39:03.000Z" - }, - "events": [ - { - "uuid": "56a2eca0-0144-4fdd-9857-d85465fca6a8", - "start": { - "$date": "2022-03-23T03:08:29.000Z" - }, - "end": { - "$date": "2022-03-23T05:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe46e439-c8d9-4906-b9ac-acb192b29149", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-23T03:15:51.000Z" - }, - "end": { - "$date": "2022-03-23T03:42:48.000Z" - }, - "events": [ - { - "uuid": "239dc160-37fe-4c8b-85ec-3647df5adc16", - "start": { - "$date": "2022-03-23T03:15:51.000Z" - }, - "end": { - "$date": "2022-03-23T03:42:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "84a93701-d9fe-4822-8ea7-25bb25b1d01d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-23T03:55:51.000Z" - }, - "end": { - "$date": "2022-03-23T06:35:24.000Z" - }, - "events": [ - { - "uuid": "93f38992-6f2a-4db5-8fae-cb721ceea45f", - "start": { - "$date": "2022-03-23T03:55:51.000Z" - }, - "end": { - "$date": "2022-03-23T06:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "074faff1-dade-4bd4-bda0-779744287fd0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-23T04:24:54.000Z" - }, - "end": { - "$date": "2022-03-23T04:57:39.000Z" - }, - "events": [ - { - "uuid": "b788a69b-8ac1-4aaf-84e8-0949ab32a85f", - "start": { - "$date": "2022-03-23T04:24:54.000Z" - }, - "end": { - "$date": "2022-03-23T04:57:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "18f49e04-07c7-4b83-9d08-b244b6f0689f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-23T04:53:04.000Z" - }, - "end": { - "$date": "2022-03-23T05:33:51.000Z" - }, - "events": [ - { - "uuid": "32dab360-75c4-43d5-b95b-b7607b21172b", - "start": { - "$date": "2022-03-23T04:53:04.000Z" - }, - "end": { - "$date": "2022-03-23T05:33:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cbf40467-b053-410b-8fbf-3e0dd8a5dc57", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-23T05:09:41.000Z" - }, - "end": { - "$date": "2022-03-23T05:40:11.000Z" - }, - "events": [ - { - "uuid": "1f67edef-18de-4b4e-8a91-92c2bd70e64d", - "start": { - "$date": "2022-03-23T05:09:41.000Z" - }, - "end": { - "$date": "2022-03-23T05:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "559bede2-9647-4a45-b216-6d559cd3452e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-23T05:45:12.000Z" - }, - "end": { - "$date": "2022-03-23T06:18:18.000Z" - }, - "events": [ - { - "uuid": "24b32e8e-ff40-4b6b-b1e3-841fd08d28ba", - "start": { - "$date": "2022-03-23T05:45:12.000Z" - }, - "end": { - "$date": "2022-03-23T06:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "ce3df34f-1190-433b-b8a6-65288d9f4803", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-23T06:09:38.000Z" - }, - "end": { - "$date": "2022-03-23T06:43:19.000Z" - }, - "events": [ - { - "uuid": "8972348a-0a63-45bf-81c5-8233ed4144f3", - "start": { - "$date": "2022-03-23T06:09:38.000Z" - }, - "end": { - "$date": "2022-03-23T06:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "87f31f02-c931-40a2-8708-fde303c7d170", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T09:03:41.000Z" - }, - "end": { - "$date": "2022-03-23T09:04:48.000Z" - }, - "events": [ - { - "uuid": "488e3f89-a38a-4708-989c-f693989f34f8", - "start": { - "$date": "2022-03-23T09:03:41.000Z" - }, - "end": { - "$date": "2022-03-23T09:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "c04ae9ab-bb8c-49f7-bf9b-ef2d22d3848f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T09:05:51.000Z" - }, - "end": { - "$date": "2022-03-23T09:07:14.000Z" - }, - "events": [ - { - "uuid": "0f2b719c-dfdb-4d7f-97af-e6479ff94012", - "start": { - "$date": "2022-03-23T09:05:51.000Z" - }, - "end": { - "$date": "2022-03-23T09:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "acd964c3-612a-43f4-8772-72490365f7e6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T09:07:57.000Z" - }, - "end": { - "$date": "2022-03-23T10:32:41.000Z" - }, - "events": [ - { - "uuid": "560733d0-10f7-42dd-ba93-a2268a70fe12", - "start": { - "$date": "2022-03-23T09:07:57.000Z" - }, - "end": { - "$date": "2022-03-23T10:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "96678108-c4d7-45cf-ae51-a1438757c14b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-23T15:54:03.000Z" - }, - "end": { - "$date": "2022-03-23T18:49:14.000Z" - }, - "events": [ - { - "uuid": "b5cf9ae7-f10d-476b-9245-a7e7d1f0bea3", - "start": { - "$date": "2022-03-23T15:54:03.000Z" - }, - "end": { - "$date": "2022-03-23T18:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "a3a1a255-dbdd-4124-9f3c-007d682b8ae0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-23T19:50:46.000Z" - }, - "end": { - "$date": "2022-03-23T22:19:09.000Z" - }, - "events": [ - { - "uuid": "780d0bab-53a8-477d-898a-570ae6da612d", - "start": { - "$date": "2022-03-23T19:50:46.000Z" - }, - "end": { - "$date": "2022-03-23T21:35:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7812cf9a-0b52-49f0-a605-bebf0bd2287b", - "start": { - "$date": "2022-03-23T21:35:46.000Z" - }, - "end": { - "$date": "2022-03-23T21:38:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c6c7b68b-8a2b-41b5-b930-b080f8fc3269", - "start": { - "$date": "2022-03-23T21:38:46.000Z" - }, - "end": { - "$date": "2022-03-23T22:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "ca3eb2c8-055d-4d71-b94a-f1ea5bae0755", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-23T19:51:58.000Z" - }, - "end": { - "$date": "2022-03-23T22:22:38.000Z" - }, - "events": [ - { - "uuid": "1eb274ef-ec0b-42f0-9aa7-1dcf5bbfb44c", - "start": { - "$date": "2022-03-23T19:51:58.000Z" - }, - "end": { - "$date": "2022-03-23T22:22:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "a0911429-a213-4ad0-bcf4-d32ec73bc996", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-23T22:30:35.000Z" - }, - "end": { - "$date": "2022-03-24T14:32:10.000Z" - }, - "events": [ - { - "uuid": "6ed7f7a1-689f-41c4-acc7-302ae8e8dfd7", - "start": { - "$date": "2022-03-23T22:30:35.000Z" - }, - "end": { - "$date": "2022-03-24T00:47:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "59212710-0af8-4997-bacf-189e220a5a5a", - "start": { - "$date": "2022-03-24T00:47:35.000Z" - }, - "end": { - "$date": "2022-03-24T01:59:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1da5dc71-115a-4875-9084-f92b46432c9e", - "start": { - "$date": "2022-03-24T01:59:35.000Z" - }, - "end": { - "$date": "2022-03-24T02:01:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4963232b-8a4b-4e76-83ca-fad92bc0ccc9", - "start": { - "$date": "2022-03-24T02:01:35.000Z" - }, - "end": { - "$date": "2022-03-24T02:04:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fba4e027-41c2-499f-8a9f-ff03bda40ee3", - "start": { - "$date": "2022-03-24T02:04:35.000Z" - }, - "end": { - "$date": "2022-03-24T02:06:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1ed09a8-6d52-4aa5-b68c-e262c87d9327", - "start": { - "$date": "2022-03-24T02:06:35.000Z" - }, - "end": { - "$date": "2022-03-24T03:10:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fee93383-712b-4cb1-889e-9db2d6671a73", - "start": { - "$date": "2022-03-24T03:10:35.000Z" - }, - "end": { - "$date": "2022-03-24T03:12:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60ae9b26-1df1-442b-8e60-9220176b78cd", - "start": { - "$date": "2022-03-24T03:12:35.000Z" - }, - "end": { - "$date": "2022-03-24T05:09:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "478cd40c-f708-4223-8ca2-806ab07f3818", - "start": { - "$date": "2022-03-24T05:09:35.000Z" - }, - "end": { - "$date": "2022-03-24T05:11:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8cfdb685-6943-466a-91a6-259c5acdca38", - "start": { - "$date": "2022-03-24T05:11:35.000Z" - }, - "end": { - "$date": "2022-03-24T14:32:10.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0f72edeb-f65f-4054-9201-ccb833df75f3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-23T20:22:38.000Z" - }, - "end": { - "$date": "2022-03-23T21:50:06.000Z" - }, - "events": [ - { - "uuid": "afc5d9d7-79e0-4188-beca-217a8d1db23b", - "start": { - "$date": "2022-03-23T20:22:38.000Z" - }, - "end": { - "$date": "2022-03-23T21:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "40008838-b232-4646-8da7-b87134037ea2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-23T21:54:32.000Z" - }, - "end": { - "$date": "2022-03-23T22:39:51.000Z" - }, - "events": [ - { - "uuid": "b4fdb71d-a828-4849-90eb-2063a708ea61", - "start": { - "$date": "2022-03-23T21:54:32.000Z" - }, - "end": { - "$date": "2022-03-23T22:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e49cfe1f-4c53-4671-9ec1-1b014e0885e2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-23T23:03:08.000Z" - }, - "end": { - "$date": "2022-03-23T23:29:06.000Z" - }, - "events": [ - { - "uuid": "66b3c84f-28a7-49b6-b651-030f84b03025", - "start": { - "$date": "2022-03-23T23:03:08.000Z" - }, - "end": { - "$date": "2022-03-23T23:29:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8cc3f542-d67d-417c-8799-5a6ce49d6a03", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-23T23:31:54.000Z" - }, - "end": { - "$date": "2022-03-23T23:57:27.000Z" - }, - "events": [ - { - "uuid": "2eab6bd7-10c8-4394-8638-c2e7528a310e", - "start": { - "$date": "2022-03-23T23:31:54.000Z" - }, - "end": { - "$date": "2022-03-23T23:57:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "03cef292-59db-4a16-9267-94dba5b44d6e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-24T00:22:44.000Z" - }, - "end": { - "$date": "2022-03-24T05:27:23.000Z" - }, - "events": [ - { - "uuid": "b00fd771-bd43-4851-a3c6-383ebba67fbe", - "start": { - "$date": "2022-03-24T00:22:44.000Z" - }, - "end": { - "$date": "2022-03-24T05:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f17bcd03-611b-439d-86d2-ecc5d0303aaf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-24T03:15:11.000Z" - }, - "end": { - "$date": "2022-03-24T04:27:41.000Z" - }, - "events": [ - { - "uuid": "8f5a3f25-e60f-4b95-af17-d87a3f55fe32", - "start": { - "$date": "2022-03-24T03:15:11.000Z" - }, - "end": { - "$date": "2022-03-24T04:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8a830a96-e628-4700-aecc-189f61d89282", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-24T03:18:30.000Z" - }, - "end": { - "$date": "2022-03-24T05:46:27.000Z" - }, - "events": [ - { - "uuid": "537d2724-9931-4744-bdb8-21044b4389de", - "start": { - "$date": "2022-03-24T03:18:30.000Z" - }, - "end": { - "$date": "2022-03-24T05:46:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "fa51753b-defb-4d46-b948-93a314ad4a0a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-24T03:27:23.000Z" - }, - "end": { - "$date": "2022-03-24T03:50:20.000Z" - }, - "events": [ - { - "uuid": "f8d9047c-47e6-41d6-98c2-c846a23d6a9a", - "start": { - "$date": "2022-03-24T03:27:23.000Z" - }, - "end": { - "$date": "2022-03-24T03:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bc282e86-19ed-45c7-a0e0-31cf5bd8efed", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-24T04:22:54.000Z" - }, - "end": { - "$date": "2022-03-24T06:07:27.000Z" - }, - "events": [ - { - "uuid": "74cbb9d7-2b7c-40d7-a96c-5af07da86492", - "start": { - "$date": "2022-03-24T04:22:54.000Z" - }, - "end": { - "$date": "2022-03-24T06:07:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb1d5659-298b-4971-8e56-6a2e02ecb3e9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-24T04:33:30.000Z" - }, - "end": { - "$date": "2022-03-24T04:34:57.000Z" - }, - "events": [ - { - "uuid": "8fd9f4a3-f019-448b-973e-6f2932ac443e", - "start": { - "$date": "2022-03-24T04:33:30.000Z" - }, - "end": { - "$date": "2022-03-24T04:34:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9384c2ad-c402-4523-92a7-868604703e1d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-24T05:35:57.000Z" - }, - "end": { - "$date": "2022-03-24T06:09:07.000Z" - }, - "events": [ - { - "uuid": "b4042da1-c2bd-44f6-a957-c8a3261fcdcf", - "start": { - "$date": "2022-03-24T05:35:57.000Z" - }, - "end": { - "$date": "2022-03-24T06:09:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "adefca53-0331-4ecb-aabe-7612f889eba5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-24T05:46:43.000Z" - }, - "end": { - "$date": "2022-03-24T06:33:17.000Z" - }, - "events": [ - { - "uuid": "5cd2a12f-b5b1-4198-a78a-da4c775b358d", - "start": { - "$date": "2022-03-24T05:46:43.000Z" - }, - "end": { - "$date": "2022-03-24T06:33:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44105510-6c9c-4d67-a7e0-41a434e5498c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-24T06:12:07.000Z" - }, - "end": { - "$date": "2022-03-24T06:36:13.000Z" - }, - "events": [ - { - "uuid": "e4bc2351-496d-4df5-acb7-64f16c6245f4", - "start": { - "$date": "2022-03-24T06:12:07.000Z" - }, - "end": { - "$date": "2022-03-24T06:36:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "009fff54-4d11-45f2-85d3-4b70f908b115", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-24T06:33:37.000Z" - }, - "end": { - "$date": "2022-03-24T09:03:06.000Z" - }, - "events": [ - { - "uuid": "4090e108-64e3-4c8d-9499-adb8bb23984d", - "start": { - "$date": "2022-03-24T06:33:37.000Z" - }, - "end": { - "$date": "2022-03-24T09:03:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "716ea806-8336-4a88-b190-b652c438396b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-24T07:37:38.000Z" - }, - "end": { - "$date": "2022-03-24T09:20:38.000Z" - }, - "events": [ - { - "uuid": "d03cab30-ed37-4d47-b847-2060005338c9", - "start": { - "$date": "2022-03-24T07:37:38.000Z" - }, - "end": { - "$date": "2022-03-24T09:20:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c153a25a-c352-48c9-9e51-793599b23f3c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-24T14:15:01.000Z" - }, - "end": { - "$date": "2022-03-24T14:25:18.000Z" - }, - "events": [ - { - "uuid": "b0b84a5e-f62c-421d-9caf-a0a7a3769f36", - "start": { - "$date": "2022-03-24T14:15:01.000Z" - }, - "end": { - "$date": "2022-03-24T14:25:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "b9a62f4d-2398-467e-8c17-996995241797", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-24T14:27:28.000Z" - }, - "end": { - "$date": "2022-03-24T14:37:25.000Z" - }, - "events": [ - { - "uuid": "8b44e1d5-0f8e-4779-935c-a184fadf78e7", - "start": { - "$date": "2022-03-24T14:27:28.000Z" - }, - "end": { - "$date": "2022-03-24T14:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "8d488946-b658-4c88-8455-e10ea979224f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-24T15:48:45.000Z" - }, - "end": { - "$date": "2022-03-24T18:07:07.000Z" - }, - "events": [ - { - "uuid": "9c875f2c-f2f1-41cf-9b55-58036eb31882", - "start": { - "$date": "2022-03-24T15:48:45.000Z" - }, - "end": { - "$date": "2022-03-24T18:07:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "5108501f-2e36-4351-9fc1-2e892f656afa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-24T16:14:34.000Z" - }, - "end": { - "$date": "2022-03-24T19:17:18.000Z" - }, - "events": [ - { - "uuid": "14af1aa3-23b2-4904-8996-90d96124c330", - "start": { - "$date": "2022-03-24T16:14:34.000Z" - }, - "end": { - "$date": "2022-03-24T19:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8ee20c25-310f-49fc-9072-8dd4fb1e643a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-24T18:06:00.000Z" - }, - "end": { - "$date": "2022-03-24T19:45:33.000Z" - }, - "events": [ - { - "uuid": "a741416d-7af9-45d5-b2a8-4f8c8ccc7461", - "start": { - "$date": "2022-03-24T18:06:00.000Z" - }, - "end": { - "$date": "2022-03-24T19:45:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "54a13836-f6a2-44ac-9496-f9057435e069", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-24T18:46:16.000Z" - }, - "end": { - "$date": "2022-03-24T23:50:47.000Z" - }, - "events": [ - { - "uuid": "b20de8e3-82c6-4943-b85c-3aa7dc2a227a", - "start": { - "$date": "2022-03-24T18:46:16.000Z" - }, - "end": { - "$date": "2022-03-24T20:44:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "11275a9f-a5d5-4c39-925c-e1c5f2bbd2c4", - "start": { - "$date": "2022-03-24T20:44:16.000Z" - }, - "end": { - "$date": "2022-03-24T20:55:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1f785326-82a8-48e2-8c34-7f0e67665480", - "start": { - "$date": "2022-03-24T20:55:16.000Z" - }, - "end": { - "$date": "2022-03-24T23:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "01134f32-8790-44a6-a055-89a48b4a5d00", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-24T20:03:29.000Z" - }, - "end": { - "$date": "2022-03-24T21:11:27.000Z" - }, - "events": [ - { - "uuid": "0168dd3d-213e-4b1d-99a0-311e42d86389", - "start": { - "$date": "2022-03-24T20:03:29.000Z" - }, - "end": { - "$date": "2022-03-24T21:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "1e9c1329-22cb-4673-a135-d33d022e2016", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-25T01:39:39.000Z" - }, - "end": { - "$date": "2022-03-25T03:11:05.000Z" - }, - "events": [ - { - "uuid": "f83bf9f6-44ec-4252-b1f3-dbd313664d1e", - "start": { - "$date": "2022-03-25T01:39:39.000Z" - }, - "end": { - "$date": "2022-03-25T03:11:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b0df554-cf99-44b4-b541-9cc085924162", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-25T01:57:38.000Z" - }, - "end": { - "$date": "2022-03-25T02:47:49.000Z" - }, - "events": [ - { - "uuid": "e923771a-1139-4769-904e-ee17668af801", - "start": { - "$date": "2022-03-25T01:57:38.000Z" - }, - "end": { - "$date": "2022-03-25T02:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be463629-6378-4b0e-94ad-990a9797280c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-25T02:59:55.000Z" - }, - "end": { - "$date": "2022-03-25T03:26:06.000Z" - }, - "events": [ - { - "uuid": "eb43d196-0455-40c8-84de-8c78183476b3", - "start": { - "$date": "2022-03-25T02:59:55.000Z" - }, - "end": { - "$date": "2022-03-25T03:26:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "29fad79e-f273-49a2-bb0c-b2089b81e62f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-25T02:57:27.000Z" - }, - "end": { - "$date": "2022-03-25T06:17:32.000Z" - }, - "events": [ - { - "uuid": "043546ff-612e-4628-9a1e-f1089bb6fbb8", - "start": { - "$date": "2022-03-25T02:57:27.000Z" - }, - "end": { - "$date": "2022-03-25T03:53:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "295eb5d1-da9c-461f-bfab-6b56c5a85f67", - "start": { - "$date": "2022-03-25T03:53:27.000Z" - }, - "end": { - "$date": "2022-03-25T03:58:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d5963984-9be4-4a47-ad7f-630fe6c16a6f", - "start": { - "$date": "2022-03-25T03:58:27.000Z" - }, - "end": { - "$date": "2022-03-25T06:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "0e62e6bd-0fde-4ebc-a866-8e8aa92d6f4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-25T03:13:06.000Z" - }, - "end": { - "$date": "2022-03-25T04:17:29.000Z" - }, - "events": [ - { - "uuid": "cffa7b5a-87dd-4b59-b927-50bb081a12cc", - "start": { - "$date": "2022-03-25T03:13:06.000Z" - }, - "end": { - "$date": "2022-03-25T04:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "39a4f761-c808-493c-aa5a-ca766bcf9923", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-25T03:40:10.000Z" - }, - "end": { - "$date": "2022-03-25T06:12:36.000Z" - }, - "events": [ - { - "uuid": "9c2e1e0c-7c93-400f-8c99-275768de1a65", - "start": { - "$date": "2022-03-25T03:40:10.000Z" - }, - "end": { - "$date": "2022-03-25T06:12:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c0626304-f2c1-4069-bedc-1b91bc722efb", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-25T04:12:52.000Z" - }, - "end": { - "$date": "2022-03-25T04:35:13.000Z" - }, - "events": [ - { - "uuid": "48950638-9f52-4618-aba5-8db04a281d45", - "start": { - "$date": "2022-03-25T04:12:52.000Z" - }, - "end": { - "$date": "2022-03-25T04:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "40f5c1fe-082c-4507-bc62-67404217a241", - "uuid": "514513e0-c868-4588-b9d0-297ab0037f03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-25T04:19:50.000Z" - }, - "end": { - "$date": "2022-03-25T04:23:36.000Z" - }, - "events": [ - { - "uuid": "b2c82474-382e-4b8d-83ae-73e5bed0ef5e", - "start": { - "$date": "2022-03-25T04:19:50.000Z" - }, - "end": { - "$date": "2022-03-25T04:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3bb81c3-47d4-4547-b73e-ad0e3642fda3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-25T04:39:17.000Z" - }, - "end": { - "$date": "2022-03-25T05:14:24.000Z" - }, - "events": [ - { - "uuid": "36ecef24-32dd-44b3-9844-30cbb682e38d", - "start": { - "$date": "2022-03-25T04:39:17.000Z" - }, - "end": { - "$date": "2022-03-25T05:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "81070ab4-60f7-470f-9fa7-33200e059ea0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-25T04:47:35.000Z" - }, - "end": { - "$date": "2022-03-25T10:53:55.000Z" - }, - "events": [ - { - "uuid": "94e14ec8-358d-40ee-bf88-55e07f902cb0", - "start": { - "$date": "2022-03-25T04:47:35.000Z" - }, - "end": { - "$date": "2022-03-25T10:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "0fa0e3dd-d873-408e-9c43-5cd55f0a1fad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-25T04:57:56.000Z" - }, - "end": { - "$date": "2022-03-25T05:24:39.000Z" - }, - "events": [ - { - "uuid": "4882adc7-00af-499d-8f75-73f35cb6c571", - "start": { - "$date": "2022-03-25T04:57:56.000Z" - }, - "end": { - "$date": "2022-03-25T05:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "07bbd2ae-76c4-4048-b1dc-ef289e861e7b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-25T04:58:07.000Z" - }, - "end": { - "$date": "2022-03-25T10:46:34.000Z" - }, - "events": [ - { - "uuid": "7eda5e85-e12a-4c9d-a3ce-fad4d9a4c21d", - "start": { - "$date": "2022-03-25T04:58:07.000Z" - }, - "end": { - "$date": "2022-03-25T05:47:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e78cd816-a1cd-41b8-8b71-db396a051e17", - "start": { - "$date": "2022-03-25T05:47:07.000Z" - }, - "end": { - "$date": "2022-03-25T09:28:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2cbb0f1-df0d-4853-a417-f7f9b1973857", - "start": { - "$date": "2022-03-25T09:28:07.000Z" - }, - "end": { - "$date": "2022-03-25T09:38:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a66a2633-8464-456e-adb9-b056f1d7e359", - "start": { - "$date": "2022-03-25T09:38:07.000Z" - }, - "end": { - "$date": "2022-03-25T10:42:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "741ae80f-a735-4d70-a6b7-c845ea38a1d9", - "start": { - "$date": "2022-03-25T10:42:07.000Z" - }, - "end": { - "$date": "2022-03-25T10:46:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d77343b-c875-4539-bd4d-bc9515bdaca8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-25T05:22:04.000Z" - }, - "end": { - "$date": "2022-03-25T05:55:40.000Z" - }, - "events": [ - { - "uuid": "fe77d391-6925-4de5-813a-8efc6000bb8d", - "start": { - "$date": "2022-03-25T05:22:04.000Z" - }, - "end": { - "$date": "2022-03-25T05:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "131927f0-e903-4cd0-8734-29b110c93ac2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-25T05:59:00.000Z" - }, - "end": { - "$date": "2022-03-25T06:25:41.000Z" - }, - "events": [ - { - "uuid": "1b358225-697c-428b-8e48-5a03ca776124", - "start": { - "$date": "2022-03-25T05:59:00.000Z" - }, - "end": { - "$date": "2022-03-25T06:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "e87b7b35-210c-45c8-87c2-22bba25120e8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-25T10:06:05.000Z" - }, - "end": { - "$date": "2022-03-25T12:16:56.000Z" - }, - "events": [ - { - "uuid": "c1454645-b7db-477c-b9cf-f2fa81d481f3", - "start": { - "$date": "2022-03-25T10:06:05.000Z" - }, - "end": { - "$date": "2022-03-25T12:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "761978d3-9f71-4929-827c-5faafbdae9d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-25T10:57:17.000Z" - }, - "end": { - "$date": "2022-03-25T13:08:42.000Z" - }, - "events": [ - { - "uuid": "05f61f2e-020e-4f2f-9041-e3aea990fd4c", - "start": { - "$date": "2022-03-25T10:57:17.000Z" - }, - "end": { - "$date": "2022-03-25T13:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1d620ef6-3a9b-4e92-b17b-4793d46c52ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-25T14:02:32.000Z" - }, - "end": { - "$date": "2022-03-25T14:35:25.000Z" - }, - "events": [ - { - "uuid": "ecca9f67-0f37-4a79-aeb6-bdd2f4b7b618", - "start": { - "$date": "2022-03-25T14:02:32.000Z" - }, - "end": { - "$date": "2022-03-25T14:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "61869bef-dda3-462a-ac75-d1f437db0f48", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-25T15:32:12.000Z" - }, - "end": { - "$date": "2022-03-25T15:33:18.000Z" - }, - "events": [ - { - "uuid": "81fdce54-0f32-4e72-8249-58c52bef3068", - "start": { - "$date": "2022-03-25T15:32:12.000Z" - }, - "end": { - "$date": "2022-03-25T15:33:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad26a851-07f7-49b7-ba99-3c937c32a8cd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-25T15:39:38.000Z" - }, - "end": { - "$date": "2022-03-25T16:38:07.000Z" - }, - "events": [ - { - "uuid": "4a4ac08e-b379-4049-8be0-cf06c66869c5", - "start": { - "$date": "2022-03-25T15:39:38.000Z" - }, - "end": { - "$date": "2022-03-25T16:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "e3eff8bd-30f5-4852-b827-b037ac45ace7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-25T17:15:01.000Z" - }, - "end": { - "$date": "2022-03-25T17:38:27.000Z" - }, - "events": [ - { - "uuid": "e6153bd5-82b2-4afa-878c-28d038849a27", - "start": { - "$date": "2022-03-25T17:15:01.000Z" - }, - "end": { - "$date": "2022-03-25T17:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "d694ce9c-8934-471a-96c0-60809ab885fa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-25T18:28:47.000Z" - }, - "end": { - "$date": "2022-03-25T19:04:28.000Z" - }, - "events": [ - { - "uuid": "1f55cc17-6f58-4784-9610-cf4421c4d27b", - "start": { - "$date": "2022-03-25T18:28:47.000Z" - }, - "end": { - "$date": "2022-03-25T19:04:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "12db6a58-31a3-4abe-a7e7-36df5326574d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-25T21:42:41.000Z" - }, - "end": { - "$date": "2022-03-25T22:08:34.000Z" - }, - "events": [ - { - "uuid": "b3a4a3b8-ab0d-4370-85c0-2c5ac0e491d5", - "start": { - "$date": "2022-03-25T21:42:41.000Z" - }, - "end": { - "$date": "2022-03-25T22:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "796d3ca4-ab05-4979-973c-42f9f86e2a59", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-25T22:11:22.000Z" - }, - "end": { - "$date": "2022-03-25T22:31:01.000Z" - }, - "events": [ - { - "uuid": "02e2db3e-b35f-434c-b720-ec6962f8c11a", - "start": { - "$date": "2022-03-25T22:11:22.000Z" - }, - "end": { - "$date": "2022-03-25T22:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06669762-cade-4077-825f-f62bb41e5aa2", - "uuid": "6d21df4e-b5db-4ac8-986e-42794a4093e8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-25T22:23:12.000Z" - }, - "end": { - "$date": "2022-03-25T23:18:26.000Z" - }, - "events": [ - { - "uuid": "e1f99802-fd4e-4747-8fe1-1cce1a17c26d", - "start": { - "$date": "2022-03-25T22:23:12.000Z" - }, - "end": { - "$date": "2022-03-25T23:18:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "ef46f159-33f0-4bdf-a46b-e1bbfcc0ca5f", - "uuid": "6599b318-2e80-4593-ac9a-49c9ec5265ec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-25T22:36:23.000Z" - }, - "end": { - "$date": "2022-03-25T22:39:36.000Z" - }, - "events": [ - { - "uuid": "64a7270d-0ae7-476d-8521-a47d1dbd7a6f", - "start": { - "$date": "2022-03-25T22:36:23.000Z" - }, - "end": { - "$date": "2022-03-25T22:39:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "83b979ec-3016-48d6-ba71-b7851198b521", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-25T22:42:25.000Z" - }, - "end": { - "$date": "2022-03-26T03:26:03.000Z" - }, - "events": [ - { - "uuid": "8aad2e8b-718c-4873-861d-42d7b21aaada", - "start": { - "$date": "2022-03-25T22:42:25.000Z" - }, - "end": { - "$date": "2022-03-25T23:35:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce517138-e0e7-4cea-802e-a5533bda2271", - "start": { - "$date": "2022-03-25T23:35:25.000Z" - }, - "end": { - "$date": "2022-03-26T00:12:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0549b55e-5c9a-475d-9897-9c4fc4c8f5e3", - "start": { - "$date": "2022-03-26T00:12:25.000Z" - }, - "end": { - "$date": "2022-03-26T03:26:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06669762-cade-4077-825f-f62bb41e5aa2", - "uuid": "b3ef6269-8f0c-49c9-81f9-18c38835c6df", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-25T23:21:33.000Z" - }, - "end": { - "$date": "2022-03-25T23:57:44.000Z" - }, - "events": [ - { - "uuid": "5f88c441-c071-4921-90fb-e16909afcadf", - "start": { - "$date": "2022-03-25T23:21:33.000Z" - }, - "end": { - "$date": "2022-03-25T23:57:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b304f530-7487-4045-a05c-1f55ded2f014", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-26T00:06:55.000Z" - }, - "end": { - "$date": "2022-03-26T00:54:18.000Z" - }, - "events": [ - { - "uuid": "bd304576-31bf-4f17-892e-fe5b8966921f", - "start": { - "$date": "2022-03-26T00:06:55.000Z" - }, - "end": { - "$date": "2022-03-26T00:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "84aa82cb-a8eb-421d-a0b0-a15e507c0863", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-26T00:08:45.000Z" - }, - "end": { - "$date": "2022-03-26T00:52:28.000Z" - }, - "events": [ - { - "uuid": "e22f4df4-b1d9-4e83-bdd3-f209132f2f47", - "start": { - "$date": "2022-03-26T00:08:45.000Z" - }, - "end": { - "$date": "2022-03-26T00:52:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cc550d4a-e850-44b7-8276-1f3ab474f143", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-26T00:10:42.000Z" - }, - "end": { - "$date": "2022-03-26T01:23:03.000Z" - }, - "events": [ - { - "uuid": "8463a8e9-16cc-4e66-8e6b-ad03aa74f545", - "start": { - "$date": "2022-03-26T00:10:42.000Z" - }, - "end": { - "$date": "2022-03-26T01:02:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6df0e5b-42f4-4dd1-8931-6ca3a2abe2d5", - "start": { - "$date": "2022-03-26T01:02:42.000Z" - }, - "end": { - "$date": "2022-03-26T01:23:03.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f1488108-24fe-4ad5-a403-44bc642f3e5a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-26T06:40:46.000Z" - }, - "end": { - "$date": "2022-03-26T06:41:11.000Z" - }, - "events": [ - { - "uuid": "88f0ce37-a8ce-489a-a3c1-367fde9e7fdb", - "start": { - "$date": "2022-03-26T06:40:46.000Z" - }, - "end": { - "$date": "2022-03-26T06:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f45009a9-7bb5-4a0e-be01-de49f092fae8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-26T01:45:25.000Z" - }, - "end": { - "$date": "2022-03-26T06:37:34.000Z" - }, - "events": [ - { - "uuid": "cc384813-68e8-4842-a30f-3eaec81f4add", - "start": { - "$date": "2022-03-26T01:45:25.000Z" - }, - "end": { - "$date": "2022-03-26T06:37:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "fd4965d6-3874-4e3c-9d23-27a1922c038f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-26T01:49:09.000Z" - }, - "end": { - "$date": "2022-03-26T06:04:14.000Z" - }, - "events": [ - { - "uuid": "25c40b7f-b541-493b-8ae5-2a26ed5d342e", - "start": { - "$date": "2022-03-26T01:49:09.000Z" - }, - "end": { - "$date": "2022-03-26T06:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0d0828f3-4c63-4fb2-bb2d-469d4abc5525", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-26T01:58:51.000Z" - }, - "end": { - "$date": "2022-03-26T02:47:55.000Z" - }, - "events": [ - { - "uuid": "cfa4a081-b387-44a9-b44b-5d25beda2e61", - "start": { - "$date": "2022-03-26T01:58:51.000Z" - }, - "end": { - "$date": "2022-03-26T02:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "68cfb2a2-69eb-4868-bf0d-8fd5fa2b6d93", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-26T02:10:46.000Z" - }, - "end": { - "$date": "2022-03-26T02:16:58.000Z" - }, - "events": [ - { - "uuid": "8937b681-7990-43c0-bead-146ea4f48669", - "start": { - "$date": "2022-03-26T02:10:46.000Z" - }, - "end": { - "$date": "2022-03-26T02:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "91a6614d-ffe3-4ff9-a339-fed830d1e6fb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-26T02:17:13.000Z" - }, - "end": { - "$date": "2022-03-26T06:20:08.000Z" - }, - "events": [ - { - "uuid": "49bbaf36-b91c-45e9-9d9d-d9704d1d0db0", - "start": { - "$date": "2022-03-26T02:17:13.000Z" - }, - "end": { - "$date": "2022-03-26T02:34:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d4f6425-f0b1-4e2e-b60f-376cba22ec2c", - "start": { - "$date": "2022-03-26T02:34:13.000Z" - }, - "end": { - "$date": "2022-03-26T02:36:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fdc04497-6146-4426-a9fa-b7db22299086", - "start": { - "$date": "2022-03-26T02:36:13.000Z" - }, - "end": { - "$date": "2022-03-26T06:20:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4b12ace8-018f-48a4-b6aa-b630eba94abe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-26T02:21:08.000Z" - }, - "end": { - "$date": "2022-03-26T07:38:43.000Z" - }, - "events": [ - { - "uuid": "a086b58f-a86f-43f9-b986-c958794445b8", - "start": { - "$date": "2022-03-26T02:21:08.000Z" - }, - "end": { - "$date": "2022-03-26T07:38:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "58266d34-12e7-4e9b-ae5b-184d904b0340", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-26T03:22:45.000Z" - }, - "end": { - "$date": "2022-03-26T05:01:54.000Z" - }, - "events": [ - { - "uuid": "8515dce7-dd18-4b9d-80dd-bb1de82338ec", - "start": { - "$date": "2022-03-26T03:22:45.000Z" - }, - "end": { - "$date": "2022-03-26T05:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "13c7871c-e2e9-4fd4-af97-ef346afa8116", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-26T03:35:49.000Z" - }, - "end": { - "$date": "2022-03-26T06:24:59.000Z" - }, - "events": [ - { - "uuid": "83fd8166-2863-4f46-85c4-cb7e881f5200", - "start": { - "$date": "2022-03-26T03:35:49.000Z" - }, - "end": { - "$date": "2022-03-26T06:24:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ed911115-9f4a-49e8-8213-a589a01bc6c6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-26T03:42:12.000Z" - }, - "end": { - "$date": "2022-03-26T06:20:23.000Z" - }, - "events": [ - { - "uuid": "6b5ba44b-43b5-48e4-a066-2c27a7152246", - "start": { - "$date": "2022-03-26T03:42:12.000Z" - }, - "end": { - "$date": "2022-03-26T06:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "75857899-d040-4341-aa2c-042fc797c6ff", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-26T04:14:06.000Z" - }, - "end": { - "$date": "2022-03-26T07:06:08.000Z" - }, - "events": [ - { - "uuid": "a2f17917-d4e9-412f-ab6a-79e5f71e76ca", - "start": { - "$date": "2022-03-26T04:14:06.000Z" - }, - "end": { - "$date": "2022-03-26T07:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4b2c50f9-e811-428c-951a-36bdeb9f893c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-26T04:16:43.000Z" - }, - "end": { - "$date": "2022-03-26T07:06:50.000Z" - }, - "events": [ - { - "uuid": "93b72768-a284-42f9-8255-f5d96a00728b", - "start": { - "$date": "2022-03-26T04:16:43.000Z" - }, - "end": { - "$date": "2022-03-26T07:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "06669762-cade-4077-825f-f62bb41e5aa2", - "uuid": "998bf3be-d3ae-4a77-83ea-9ec8fc0554d0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-03-26T06:39:17.000Z" - }, - "end": { - "$date": "2022-03-26T11:35:38.000Z" - }, - "events": [ - { - "uuid": "925b7301-cd58-4c50-be91-0f8c8afd68a1", - "start": { - "$date": "2022-03-26T06:39:17.000Z" - }, - "end": { - "$date": "2022-03-26T06:58:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6afc6dcc-7879-459d-a26c-59fb45a1a343", - "start": { - "$date": "2022-03-26T06:58:17.000Z" - }, - "end": { - "$date": "2022-03-26T07:09:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f17cf272-a0bf-46dc-9caa-1ec4aa03190f", - "start": { - "$date": "2022-03-26T07:09:17.000Z" - }, - "end": { - "$date": "2022-03-26T07:19:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4a0447f-1539-40c5-8dcb-6704a7e6d759", - "start": { - "$date": "2022-03-26T07:19:17.000Z" - }, - "end": { - "$date": "2022-03-26T07:28:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc7e74b5-fda7-4fdd-86dd-915a370ab33a", - "start": { - "$date": "2022-03-26T07:28:17.000Z" - }, - "end": { - "$date": "2022-03-26T08:55:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9283ccc8-330b-4e4c-bc8f-9dd1969ef7da", - "start": { - "$date": "2022-03-26T08:55:17.000Z" - }, - "end": { - "$date": "2022-03-26T11:35:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "674d9699-c1c0-4b2e-8a04-e5c299084eb9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-26T07:46:16.000Z" - }, - "end": { - "$date": "2022-03-26T08:08:23.000Z" - }, - "events": [ - { - "uuid": "9228c83f-4bc2-47ca-978e-6d17eaf58e23", - "start": { - "$date": "2022-03-26T07:46:16.000Z" - }, - "end": { - "$date": "2022-03-26T08:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "61f461d3-3e69-40d1-8611-dfa2b80d39ad", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-26T08:16:22.000Z" - }, - "end": { - "$date": "2022-03-26T08:55:29.000Z" - }, - "events": [ - { - "uuid": "f0275879-4274-428d-9526-805d44cd8ff9", - "start": { - "$date": "2022-03-26T08:16:22.000Z" - }, - "end": { - "$date": "2022-03-26T08:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bb544a95-5a12-421f-a179-8f8a99bccaff", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-26T13:33:29.000Z" - }, - "end": { - "$date": "2022-03-26T16:12:12.000Z" - }, - "events": [ - { - "uuid": "270d155e-1618-4612-ade7-6ffcdba391e7", - "start": { - "$date": "2022-03-26T13:33:29.000Z" - }, - "end": { - "$date": "2022-03-26T16:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ef46f159-33f0-4bdf-a46b-e1bbfcc0ca5f", - "uuid": "bd2310de-7107-4ee4-ab5e-0da7fc30e524", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-26T15:12:10.000Z" - }, - "end": { - "$date": "2022-03-26T15:24:15.000Z" - }, - "events": [ - { - "uuid": "3b2f9cfa-c8ff-42ac-885c-34e52df5a77f", - "start": { - "$date": "2022-03-26T15:12:10.000Z" - }, - "end": { - "$date": "2022-03-26T15:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec77d807-e1cf-43fe-ae89-ea1c78d685eb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-26T19:38:26.000Z" - }, - "end": { - "$date": "2022-03-26T20:08:26.000Z" - }, - "events": [ - { - "uuid": "b0f01a20-4bee-4987-860a-5c7bf58c4630", - "start": { - "$date": "2022-03-26T19:38:26.000Z" - }, - "end": { - "$date": "2022-03-26T20:08:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7a0ee0b-279c-4477-a309-4abfb5695731", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-26T20:15:56.000Z" - }, - "end": { - "$date": "2022-03-26T20:50:27.000Z" - }, - "events": [ - { - "uuid": "41f2ac9d-52b9-4fa0-9885-d0f0e61015db", - "start": { - "$date": "2022-03-26T20:15:56.000Z" - }, - "end": { - "$date": "2022-03-26T20:50:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a10b5e9a-a323-47df-b0e8-11235f830909", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-26T21:30:58.000Z" - }, - "end": { - "$date": "2022-03-26T21:51:29.000Z" - }, - "events": [ - { - "uuid": "0f6a3985-7b71-4486-b33b-b957546809f8", - "start": { - "$date": "2022-03-26T21:30:58.000Z" - }, - "end": { - "$date": "2022-03-26T21:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2157808b-185c-429d-b6ac-12f06b8d56c4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-26T21:46:03.000Z" - }, - "end": { - "$date": "2022-03-26T21:51:56.000Z" - }, - "events": [ - { - "uuid": "9addf1d1-9a50-4e03-987b-19f3ca909145", - "start": { - "$date": "2022-03-26T21:46:03.000Z" - }, - "end": { - "$date": "2022-03-26T21:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "8bea6db2-c01e-4cf8-aad3-15edfd09aa36", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-26T21:54:59.000Z" - }, - "end": { - "$date": "2022-03-26T23:31:21.000Z" - }, - "events": [ - { - "uuid": "66c99f0e-60ab-4ef7-b54a-fd625cb788a8", - "start": { - "$date": "2022-03-26T21:54:59.000Z" - }, - "end": { - "$date": "2022-03-26T23:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a15863d4-379d-45c0-9d3c-823129be65a1", - "uuid": "57f0d950-6f62-4bf9-89fb-a59f61d446f0", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-26T22:36:14.000Z" - }, - "end": { - "$date": "2022-03-26T23:21:26.000Z" - }, - "events": [ - { - "uuid": "856b2d25-1688-4ddb-8c9b-84bba233f43b", - "start": { - "$date": "2022-03-26T22:36:14.000Z" - }, - "end": { - "$date": "2022-03-26T23:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b15d5927-6fa8-44d9-a4b5-a13f9e8e6051", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-26T23:32:45.000Z" - }, - "end": { - "$date": "2022-03-26T23:34:01.000Z" - }, - "events": [ - { - "uuid": "1b793d3f-a9dd-4234-9435-0c2f49a4de26", - "start": { - "$date": "2022-03-26T23:32:45.000Z" - }, - "end": { - "$date": "2022-03-26T23:34:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c9b721e-5314-4bc1-b98b-5b70d75c3e6e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-26T23:41:33.000Z" - }, - "end": { - "$date": "2022-03-27T00:15:19.000Z" - }, - "events": [ - { - "uuid": "13e13ae8-af55-4482-8f60-6e7415f4a492", - "start": { - "$date": "2022-03-26T23:41:33.000Z" - }, - "end": { - "$date": "2022-03-27T00:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "df23631d-3b69-43fe-8f8d-4e4b1fae8915", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-26T23:38:56.000Z" - }, - "end": { - "$date": "2022-03-26T23:44:47.000Z" - }, - "events": [ - { - "uuid": "3cd76806-9aa7-46e7-b7b5-04463d41d013", - "start": { - "$date": "2022-03-26T23:38:56.000Z" - }, - "end": { - "$date": "2022-03-26T23:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "995a704d-8746-4571-b165-be72d28092b5", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-27T00:21:19.000Z" - }, - "end": { - "$date": "2022-03-27T01:00:47.000Z" - }, - "events": [ - { - "uuid": "13d46257-7084-47fb-af53-9db751efc9cf", - "start": { - "$date": "2022-03-27T00:21:19.000Z" - }, - "end": { - "$date": "2022-03-27T01:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ae8c44d-3873-4eab-98e4-03fda7f88054", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-27T00:24:41.000Z" - }, - "end": { - "$date": "2022-03-27T00:58:52.000Z" - }, - "events": [ - { - "uuid": "8fdc8fad-10e2-4d24-b2cd-4b8de364d7fb", - "start": { - "$date": "2022-03-27T00:24:41.000Z" - }, - "end": { - "$date": "2022-03-27T00:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "76887ea5-8ce2-4b6b-a4e0-896dc978182e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T01:24:23.000Z" - }, - "end": { - "$date": "2022-03-27T01:25:41.000Z" - }, - "events": [ - { - "uuid": "de99f923-e350-443c-9ed1-026e13468ed0", - "start": { - "$date": "2022-03-27T01:24:23.000Z" - }, - "end": { - "$date": "2022-03-27T01:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "6c093802-f969-44a5-a814-172949b76308", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T01:26:03.000Z" - }, - "end": { - "$date": "2022-03-27T01:51:38.000Z" - }, - "events": [ - { - "uuid": "520243f1-de4e-4aac-b671-d5ff188c83c1", - "start": { - "$date": "2022-03-27T01:26:03.000Z" - }, - "end": { - "$date": "2022-03-27T01:51:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0e6a11ca-61d5-464c-af26-77926fae16dd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T01:51:55.000Z" - }, - "end": { - "$date": "2022-03-27T03:39:28.000Z" - }, - "events": [ - { - "uuid": "e5798a0b-97d1-40c9-81b4-17e9d2eff3e8", - "start": { - "$date": "2022-03-27T01:51:55.000Z" - }, - "end": { - "$date": "2022-03-27T03:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7339c41b-d1d2-42c9-bf26-8c4239a16bda", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T02:00:55.000Z" - }, - "end": { - "$date": "2022-03-27T03:52:29.000Z" - }, - "events": [ - { - "uuid": "94477dc6-d777-428b-bf3e-d23076261fe2", - "start": { - "$date": "2022-03-27T02:00:55.000Z" - }, - "end": { - "$date": "2022-03-27T02:58:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2840f05-118d-4b26-9cfd-d4c4030b2881", - "start": { - "$date": "2022-03-27T02:58:55.000Z" - }, - "end": { - "$date": "2022-03-27T03:04:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d67fd9d2-b8bb-4636-93f8-5e975d78f2b4", - "start": { - "$date": "2022-03-27T03:04:55.000Z" - }, - "end": { - "$date": "2022-03-27T03:14:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e6d23b1-84c2-4241-9497-876526d5d7e3", - "start": { - "$date": "2022-03-27T03:14:55.000Z" - }, - "end": { - "$date": "2022-03-27T03:52:29.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ca2b542d-bb90-42cf-8653-5e8497714873", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-27T02:01:38.000Z" - }, - "end": { - "$date": "2022-03-27T03:54:26.000Z" - }, - "events": [ - { - "uuid": "be0072c1-468d-4345-bc05-f56ad03855bd", - "start": { - "$date": "2022-03-27T02:01:38.000Z" - }, - "end": { - "$date": "2022-03-27T03:54:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "09b87d11-cf2c-4fdf-9aef-8c02e60523c1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-27T02:03:32.000Z" - }, - "end": { - "$date": "2022-03-27T02:28:48.000Z" - }, - "events": [ - { - "uuid": "ede26f92-f637-4401-bdbb-bc24269b265a", - "start": { - "$date": "2022-03-27T02:03:32.000Z" - }, - "end": { - "$date": "2022-03-27T02:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4461f04f-7619-4964-9717-0632e5d0d98d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-27T02:07:10.000Z" - }, - "end": { - "$date": "2022-03-27T02:52:10.000Z" - }, - "events": [ - { - "uuid": "a6ebf0ad-7bad-4827-910b-d7baad9eb7a1", - "start": { - "$date": "2022-03-27T02:07:10.000Z" - }, - "end": { - "$date": "2022-03-27T02:52:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c1dfc53c-12be-4b1e-b089-68c02bb72b91", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T03:44:44.000Z" - }, - "end": { - "$date": "2022-03-27T03:56:11.000Z" - }, - "events": [ - { - "uuid": "32e53cc0-a4fe-40b0-8ddc-b99eaa4227bb", - "start": { - "$date": "2022-03-27T03:44:44.000Z" - }, - "end": { - "$date": "2022-03-27T03:56:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "be7496e9-1d33-4601-b1ad-215ca0dbb787", - "uuid": "d0e8d5c0-5a8a-43af-b7d6-477a52b94912", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-27T04:05:43.000Z" - }, - "end": { - "$date": "2022-03-27T06:28:34.000Z" - }, - "events": [ - { - "uuid": "9e1f9b6e-1c29-4dd0-b4f6-11b71643410b", - "start": { - "$date": "2022-03-27T04:05:43.000Z" - }, - "end": { - "$date": "2022-03-27T06:28:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c434c48b-5deb-4aa1-b13d-59fb1a79c192", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T04:09:15.000Z" - }, - "end": { - "$date": "2022-03-27T04:45:05.000Z" - }, - "events": [ - { - "uuid": "63027f9b-e7d3-41ea-87d7-e45da07c362b", - "start": { - "$date": "2022-03-27T04:09:15.000Z" - }, - "end": { - "$date": "2022-03-27T04:45:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "c289c970-9d29-4c34-82e3-758cad8688af", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T04:45:27.000Z" - }, - "end": { - "$date": "2022-03-27T05:45:10.000Z" - }, - "events": [ - { - "uuid": "b343c5d2-2a96-4f1d-9d83-e955eeed5b3d", - "start": { - "$date": "2022-03-27T04:45:27.000Z" - }, - "end": { - "$date": "2022-03-27T05:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6d6ff525-afc7-42f4-a9bc-63f93d09b3d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-27T04:56:13.000Z" - }, - "end": { - "$date": "2022-03-27T05:36:19.000Z" - }, - "events": [ - { - "uuid": "246bb277-8571-4398-8b2f-aaa458155b9a", - "start": { - "$date": "2022-03-27T04:56:13.000Z" - }, - "end": { - "$date": "2022-03-27T05:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "71b63581-c2a4-4ed6-b947-d4dcf165d48c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-27T05:37:19.000Z" - }, - "end": { - "$date": "2022-03-27T07:49:51.000Z" - }, - "events": [ - { - "uuid": "99edb23f-ee9a-4a8e-aa91-9b4c3ad949f6", - "start": { - "$date": "2022-03-27T05:37:19.000Z" - }, - "end": { - "$date": "2022-03-27T07:49:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "bedb89c3-1992-401a-8683-4e4a49d99c70", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-27T05:41:10.000Z" - }, - "end": { - "$date": "2022-03-27T07:49:48.000Z" - }, - "events": [ - { - "uuid": "c21ac6b0-5318-45e7-8d6c-fd0df37926f0", - "start": { - "$date": "2022-03-27T05:41:10.000Z" - }, - "end": { - "$date": "2022-03-27T07:20:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "743123a0-8436-46b7-bfd1-e13f6e918989", - "start": { - "$date": "2022-03-27T07:20:10.000Z" - }, - "end": { - "$date": "2022-03-27T07:25:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69da4b3b-4489-4e70-a1f3-02d661c46cf3", - "start": { - "$date": "2022-03-27T07:25:10.000Z" - }, - "end": { - "$date": "2022-03-27T07:49:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b0eb1747-3401-4b65-96b5-480f0bf0ecab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-27T05:45:50.000Z" - }, - "end": { - "$date": "2022-03-27T06:43:08.000Z" - }, - "events": [ - { - "uuid": "60feab5c-19c5-40e2-9144-2d2c1ccfcb95", - "start": { - "$date": "2022-03-27T05:45:50.000Z" - }, - "end": { - "$date": "2022-03-27T06:43:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5e0491ef-a269-4f09-aa52-feb1fd615a8d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-27T08:00:28.000Z" - }, - "end": { - "$date": "2022-03-27T08:01:13.000Z" - }, - "events": [ - { - "uuid": "03f7b830-47fc-4a8a-a702-52d7567ca6bf", - "start": { - "$date": "2022-03-27T08:00:28.000Z" - }, - "end": { - "$date": "2022-03-27T08:01:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cf52dcbb-3482-4eaf-b2f4-b5981ac2a0b0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-27T07:21:57.000Z" - }, - "end": { - "$date": "2022-03-27T09:25:22.000Z" - }, - "events": [ - { - "uuid": "5067db02-2284-4457-9172-1c0e27e6f06e", - "start": { - "$date": "2022-03-27T07:21:57.000Z" - }, - "end": { - "$date": "2022-03-27T09:25:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d62e5614-45e4-4964-8bdb-b475103b952f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-27T07:25:49.000Z" - }, - "end": { - "$date": "2022-03-27T09:25:25.000Z" - }, - "events": [ - { - "uuid": "b83a3026-1f67-40da-96c6-448d2a44920f", - "start": { - "$date": "2022-03-27T07:25:49.000Z" - }, - "end": { - "$date": "2022-03-27T09:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4afab16c-284e-4ea5-88a4-c2902705462c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-27T07:58:15.000Z" - }, - "end": { - "$date": "2022-03-27T08:43:24.000Z" - }, - "events": [ - { - "uuid": "78ad2501-4c40-4ee1-a272-0cdda7d4e915", - "start": { - "$date": "2022-03-27T07:58:15.000Z" - }, - "end": { - "$date": "2022-03-27T08:43:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "65be909a-c6d5-4939-9966-5cbe8f81b959", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-27T08:22:29.000Z" - }, - "end": { - "$date": "2022-03-27T08:23:50.000Z" - }, - "events": [ - { - "uuid": "11ce4b7c-1e92-42d0-a69c-3c6c40c3bc68", - "start": { - "$date": "2022-03-27T08:22:29.000Z" - }, - "end": { - "$date": "2022-03-27T08:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9db1eb62-fc2f-4662-a4cc-0391e610163a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T14:18:05.000Z" - }, - "end": { - "$date": "2022-03-27T15:27:07.000Z" - }, - "events": [ - { - "uuid": "45c139c5-fa0b-4ba0-b8ef-3781dcff0da8", - "start": { - "$date": "2022-03-27T14:18:05.000Z" - }, - "end": { - "$date": "2022-03-27T15:27:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "05d204ab-8c31-4165-ab6f-ec64a62afeb9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T15:28:57.000Z" - }, - "end": { - "$date": "2022-03-27T15:31:23.000Z" - }, - "events": [ - { - "uuid": "5b8503d3-0860-41d0-9782-bf9035a720c7", - "start": { - "$date": "2022-03-27T15:28:57.000Z" - }, - "end": { - "$date": "2022-03-27T15:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "e3214ecb-c675-4348-b4a4-52f95c883ee2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T15:45:03.000Z" - }, - "end": { - "$date": "2022-03-27T15:52:00.000Z" - }, - "events": [ - { - "uuid": "7daf7699-f65a-4069-ae11-bc1c92b2cf3c", - "start": { - "$date": "2022-03-27T15:45:03.000Z" - }, - "end": { - "$date": "2022-03-27T15:52:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "45141b81-5998-460e-8ab0-29916cf1db66", - "uuid": "951e025d-5be1-4280-89e4-705939f5a06f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T19:40:05.000Z" - }, - "end": { - "$date": "2022-03-27T21:18:03.000Z" - }, - "events": [ - { - "uuid": "1f2e1251-9f5d-44ea-9c1e-0d7cd5a6722b", - "start": { - "$date": "2022-03-27T19:40:05.000Z" - }, - "end": { - "$date": "2022-03-27T23:32:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bec45c61-0ca2-4317-a183-c831b4f28a66", - "start": { - "$date": "2022-03-27T23:32:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:16:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "60e7ba06-e093-425c-a885-efa20edfa5d4", - "start": { - "$date": "2022-03-28T00:16:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:23:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "510ee6f7-5eaa-4599-acad-5236737bc55e", - "start": { - "$date": "2022-03-28T00:23:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:26:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dbdbbca1-6418-429d-b544-6335fad65478", - "start": { - "$date": "2022-03-28T00:26:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:28:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4e19ca5-8de6-45de-9ace-ea2405e8b8c2", - "start": { - "$date": "2022-03-28T00:28:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:36:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "592283df-67f0-43be-9e7c-3416458d28f2", - "start": { - "$date": "2022-03-28T00:36:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:42:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9b8750f-9b07-455f-a6b3-0431d54b0cc6", - "start": { - "$date": "2022-03-28T00:42:05.000Z" - }, - "end": { - "$date": "2022-03-28T00:50:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8de92eaf-166e-4dd3-83e4-73bcadba6ab7", - "start": { - "$date": "2022-03-28T00:50:05.000Z" - }, - "end": { - "$date": "2022-03-27T21:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "ba82e98f-4add-4642-a143-9ff2e74490ea", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-27T21:29:17.000Z" - }, - "end": { - "$date": "2022-03-27T21:56:00.000Z" - }, - "events": [ - { - "uuid": "c832b3e9-929e-4b19-aa20-82e3fd6d0ae7", - "start": { - "$date": "2022-03-27T21:29:17.000Z" - }, - "end": { - "$date": "2022-03-27T21:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "2c3d5c49-24b6-4123-ae20-2b709f69785f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T21:32:44.000Z" - }, - "end": { - "$date": "2022-03-27T21:39:25.000Z" - }, - "events": [ - { - "uuid": "0084c3be-62de-43c5-b158-468bef454674", - "start": { - "$date": "2022-03-27T21:32:44.000Z" - }, - "end": { - "$date": "2022-03-27T21:39:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "9cf9a826-73f9-4e07-9895-ad9df83d280e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T21:40:45.000Z" - }, - "end": { - "$date": "2022-03-27T21:53:17.000Z" - }, - "events": [ - { - "uuid": "52179961-0a05-4722-bc88-d895a5d43f34", - "start": { - "$date": "2022-03-27T21:40:45.000Z" - }, - "end": { - "$date": "2022-03-27T21:53:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02907f28-8072-4fb5-bbbc-923845a2e23c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-27T22:11:14.000Z" - }, - "end": { - "$date": "2022-03-27T22:56:32.000Z" - }, - "events": [ - { - "uuid": "202851ad-3fac-4e2d-904d-c77b32ecdb42", - "start": { - "$date": "2022-03-27T22:11:14.000Z" - }, - "end": { - "$date": "2022-03-27T22:56:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d53f82e4-1bab-4a26-8226-543b6a4443e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-27T22:22:29.000Z" - }, - "end": { - "$date": "2022-03-27T22:53:45.000Z" - }, - "events": [ - { - "uuid": "f336bcb1-6703-42c5-913d-1b35b30a7689", - "start": { - "$date": "2022-03-27T22:22:29.000Z" - }, - "end": { - "$date": "2022-03-27T22:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fd0c0f6a-7e2b-4cc0-9e6c-a4aa5e7ef83b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-28T00:29:04.000Z" - }, - "end": { - "$date": "2022-03-28T01:24:34.000Z" - }, - "events": [ - { - "uuid": "06763827-b689-4f28-b18d-4567f971a182", - "start": { - "$date": "2022-03-28T00:29:04.000Z" - }, - "end": { - "$date": "2022-03-28T01:24:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ceb0ab48-f836-45e3-afc4-e1d367000f6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-28T00:38:08.000Z" - }, - "end": { - "$date": "2022-03-28T00:41:49.000Z" - }, - "events": [ - { - "uuid": "a63fbb6b-2f0b-4367-88d0-8816d0a2433c", - "start": { - "$date": "2022-03-28T00:38:08.000Z" - }, - "end": { - "$date": "2022-03-28T00:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "de113930-a285-436d-b329-21cc6e03be89", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-28T01:30:42.000Z" - }, - "end": { - "$date": "2022-03-28T01:32:02.000Z" - }, - "events": [ - { - "uuid": "d08c6783-24d6-481a-bb3c-43b9ea3f1abd", - "start": { - "$date": "2022-03-28T01:30:42.000Z" - }, - "end": { - "$date": "2022-03-28T01:32:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "1d7188b6-74c8-4904-928b-94feccdb47eb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-28T01:38:04.000Z" - }, - "end": { - "$date": "2022-03-28T02:08:24.000Z" - }, - "events": [ - { - "uuid": "115660c3-7ca4-43e5-9c17-bfd54aa2455f", - "start": { - "$date": "2022-03-28T01:38:04.000Z" - }, - "end": { - "$date": "2022-03-28T02:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "295aa34f-1e67-4fb6-ab73-8674abf52882", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-28T01:41:23.000Z" - }, - "end": { - "$date": "2022-03-28T01:42:29.000Z" - }, - "events": [ - { - "uuid": "f69d2ef7-de64-4bba-b2df-cb9daecc9013", - "start": { - "$date": "2022-03-28T01:41:23.000Z" - }, - "end": { - "$date": "2022-03-28T01:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ecfdc5b3-ba0a-4393-9961-e39f868c2c53", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-28T01:44:09.000Z" - }, - "end": { - "$date": "2022-03-28T02:07:55.000Z" - }, - "events": [ - { - "uuid": "231e1419-b24e-42d7-9da9-2a57bfe3139a", - "start": { - "$date": "2022-03-28T01:44:09.000Z" - }, - "end": { - "$date": "2022-03-28T02:07:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "b60a8d4c-ca5e-49bb-9c5c-368fda4c40f5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-28T01:56:47.000Z" - }, - "end": { - "$date": "2022-03-28T02:04:14.000Z" - }, - "events": [ - { - "uuid": "bb1afe41-0421-4a25-a651-93bdb175ae65", - "start": { - "$date": "2022-03-28T01:56:47.000Z" - }, - "end": { - "$date": "2022-03-28T02:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2e4d9095-7794-42b1-afba-41ca253f524c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-28T02:07:14.000Z" - }, - "end": { - "$date": "2022-03-28T04:22:11.000Z" - }, - "events": [ - { - "uuid": "47c4e77b-92ef-438f-922a-15474bb96ea1", - "start": { - "$date": "2022-03-28T02:07:14.000Z" - }, - "end": { - "$date": "2022-03-28T04:22:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81a8f02e-5359-4f01-947f-8a8fe321bca5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-28T02:09:00.000Z" - }, - "end": { - "$date": "2022-03-28T02:58:13.000Z" - }, - "events": [ - { - "uuid": "47071355-06e0-4748-bd74-b92046f3a277", - "start": { - "$date": "2022-03-28T02:09:00.000Z" - }, - "end": { - "$date": "2022-03-28T02:58:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68559b6c-8b2e-422a-9853-41fe92b725e3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-28T02:11:39.000Z" - }, - "end": { - "$date": "2022-03-28T02:30:20.000Z" - }, - "events": [ - { - "uuid": "d84e267f-748e-499d-8517-325955586196", - "start": { - "$date": "2022-03-28T02:11:39.000Z" - }, - "end": { - "$date": "2022-03-28T02:30:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14723bdd-789f-437b-848f-e29f2d07e9d4", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-28T03:23:08.000Z" - }, - "end": { - "$date": "2022-03-28T03:45:54.000Z" - }, - "events": [ - { - "uuid": "73b1a4d2-b19d-41de-b748-56311f3c8a66", - "start": { - "$date": "2022-03-28T03:23:08.000Z" - }, - "end": { - "$date": "2022-03-28T03:45:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2d7a0b92-3615-442e-9850-ffba9eefb76d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-28T03:20:05.000Z" - }, - "end": { - "$date": "2022-03-28T03:39:57.000Z" - }, - "events": [ - { - "uuid": "173ea166-54f4-4c78-8dab-61c22b61984d", - "start": { - "$date": "2022-03-28T03:20:05.000Z" - }, - "end": { - "$date": "2022-03-28T03:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08b939af-83cb-4ee2-86b0-b156f0acfa74", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-28T03:51:30.000Z" - }, - "end": { - "$date": "2022-03-28T04:23:45.000Z" - }, - "events": [ - { - "uuid": "dbd3ffd9-7e54-49c5-949e-e7b193b4c74c", - "start": { - "$date": "2022-03-28T03:51:30.000Z" - }, - "end": { - "$date": "2022-03-28T04:23:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "83c2fb05-04c3-40ba-ac34-7e7b29f16e40", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-28T04:00:06.000Z" - }, - "end": { - "$date": "2022-03-28T05:39:22.000Z" - }, - "events": [ - { - "uuid": "cace7515-3dce-4d87-b6e8-7eae15a74919", - "start": { - "$date": "2022-03-28T04:00:06.000Z" - }, - "end": { - "$date": "2022-03-28T05:39:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1fe7c5e2-afac-4a7d-887c-d230654687a5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-28T04:01:04.000Z" - }, - "end": { - "$date": "2022-03-28T05:39:24.000Z" - }, - "events": [ - { - "uuid": "6d2ba92c-1c47-4cad-9558-c59f8f361d82", - "start": { - "$date": "2022-03-28T04:01:04.000Z" - }, - "end": { - "$date": "2022-03-28T05:39:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "45141b81-5998-460e-8ab0-29916cf1db66", - "uuid": "168a9fc7-3983-4d7d-8a4d-f2dc77d962f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-28T05:14:59.000Z" - }, - "end": { - "$date": "2022-03-28T05:17:10.000Z" - }, - "events": [ - { - "uuid": "1d84fb7d-aad3-45ad-9c70-6006258ad15b", - "start": { - "$date": "2022-03-28T05:14:59.000Z" - }, - "end": { - "$date": "2022-03-28T05:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "7a804574-870c-41d3-aaad-2b53f7ce9154", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-28T04:29:28.000Z" - }, - "end": { - "$date": "2022-03-28T05:48:30.000Z" - }, - "events": [ - { - "uuid": "54116c62-7e4b-44b3-85f9-a334de2ad621", - "start": { - "$date": "2022-03-28T04:29:28.000Z" - }, - "end": { - "$date": "2022-03-28T05:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1f347a2-f9cf-4f7b-a6e5-640871008405", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-28T04:49:49.000Z" - }, - "end": { - "$date": "2022-03-28T05:12:26.000Z" - }, - "events": [ - { - "uuid": "8a50aa2f-e8db-4596-b47c-f624552c94b8", - "start": { - "$date": "2022-03-28T04:49:49.000Z" - }, - "end": { - "$date": "2022-03-28T05:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "463b3270-46db-4d23-b080-416dfdf75f23", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-28T05:14:20.000Z" - }, - "end": { - "$date": "2022-03-28T05:34:28.000Z" - }, - "events": [ - { - "uuid": "da0df313-37ea-4c6f-ac30-98da65d85190", - "start": { - "$date": "2022-03-28T05:14:20.000Z" - }, - "end": { - "$date": "2022-03-28T05:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bff36695-e5e8-4e3a-a4c4-d827d3ed3257", - "uuid": "3a72177b-3581-47f6-af55-255c1df3e5e3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-28T05:17:24.000Z" - }, - "end": { - "$date": "2022-03-28T05:34:58.000Z" - }, - "events": [ - { - "uuid": "12cc7a8d-6165-4202-8df3-bbce2feea859", - "start": { - "$date": "2022-03-28T05:17:24.000Z" - }, - "end": { - "$date": "2022-03-28T05:34:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "822b7813-fdc0-4545-8122-e06263ab61c7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-28T05:50:56.000Z" - }, - "end": { - "$date": "2022-03-28T05:53:56.000Z" - }, - "events": [ - { - "uuid": "d92b6abb-7976-4bd6-9e42-a16eda798d1a", - "start": { - "$date": "2022-03-28T05:50:56.000Z" - }, - "end": { - "$date": "2022-03-28T05:53:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "4ff20554-c36d-4567-88f5-da717f4933ea", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-28T16:23:25.000Z" - }, - "end": { - "$date": "2022-03-28T16:23:35.000Z" - }, - "events": [ - { - "uuid": "a318b1bd-a876-421b-a4fe-4a913796c720", - "start": { - "$date": "2022-03-28T16:23:25.000Z" - }, - "end": { - "$date": "2022-03-28T16:23:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "4f29d5e7-2feb-4549-a6ad-c72e43238f86", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-28T16:33:51.000Z" - }, - "end": { - "$date": "2022-03-28T17:18:29.000Z" - }, - "events": [ - { - "uuid": "5949e802-1196-4ce3-8a82-d5c960ebc3d1", - "start": { - "$date": "2022-03-28T16:33:51.000Z" - }, - "end": { - "$date": "2022-03-28T17:18:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "6d836ba9-48d6-4781-a18c-00951a4bfb0a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-28T16:46:58.000Z" - }, - "end": { - "$date": "2022-03-28T18:45:31.000Z" - }, - "events": [ - { - "uuid": "cd49e880-ab22-4f58-bf23-4adf1c9c90e5", - "start": { - "$date": "2022-03-28T16:46:58.000Z" - }, - "end": { - "$date": "2022-03-28T18:45:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "3b5053d5-166d-4afb-9279-22249037e9e0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-28T21:13:45.000Z" - }, - "end": { - "$date": "2022-03-28T22:38:27.000Z" - }, - "events": [ - { - "uuid": "24ca3720-c440-4b78-8fba-67bbe21393b6", - "start": { - "$date": "2022-03-28T21:13:45.000Z" - }, - "end": { - "$date": "2022-03-28T22:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "0179ad18-3ba9-4797-9b89-49f19c72f7ba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-29T02:18:40.000Z" - }, - "end": { - "$date": "2022-03-29T02:29:27.000Z" - }, - "events": [ - { - "uuid": "8d559e20-6fff-4f40-948f-d16f831ba853", - "start": { - "$date": "2022-03-29T02:18:40.000Z" - }, - "end": { - "$date": "2022-03-29T02:33:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7c503d3a-d76e-4339-bed8-e3761a84f87a", - "start": { - "$date": "2022-03-29T02:33:40.000Z" - }, - "end": { - "$date": "2022-03-29T05:16:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d26220b2-2b33-4602-9ad2-70e7ed92ffe4", - "start": { - "$date": "2022-03-29T05:16:40.000Z" - }, - "end": { - "$date": "2022-03-29T02:29:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "78afdc1a-aa4c-41f9-b266-ed1788df2422", - "uuid": "021752ff-7ce1-4d7c-8eb0-d482d8f6c008", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-28T21:42:47.000Z" - }, - "end": { - "$date": "2022-03-29T01:10:53.000Z" - }, - "events": [ - { - "uuid": "9d28e773-ddb8-4a22-b47f-963039ef9977", - "start": { - "$date": "2022-03-28T21:42:47.000Z" - }, - "end": { - "$date": "2022-03-29T01:10:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8c67e0dd-4970-4de2-9d88-d9af0a6dd20c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-28T23:20:34.000Z" - }, - "end": { - "$date": "2022-03-28T23:26:26.000Z" - }, - "events": [ - { - "uuid": "35a9e36e-3695-480c-a3ad-fea98ce9f4b9", - "start": { - "$date": "2022-03-28T23:20:34.000Z" - }, - "end": { - "$date": "2022-03-28T23:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "766d86fa-c521-4378-821a-c53255df6846", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-28T23:54:35.000Z" - }, - "end": { - "$date": "2022-03-28T23:59:34.000Z" - }, - "events": [ - { - "uuid": "4e269346-8c00-4d5f-ad92-42869fe48869", - "start": { - "$date": "2022-03-28T23:54:35.000Z" - }, - "end": { - "$date": "2022-03-28T23:59:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "baacb09d-0d29-47d6-95a1-302b4e9b66a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-28T23:59:55.000Z" - }, - "end": { - "$date": "2022-03-29T00:03:19.000Z" - }, - "events": [ - { - "uuid": "eb989577-b8f5-4a8f-b93b-a4c9068d563a", - "start": { - "$date": "2022-03-28T23:59:55.000Z" - }, - "end": { - "$date": "2022-03-29T00:03:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "75b8d66e-dd24-42b2-800d-f87122f258b5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-29T00:04:15.000Z" - }, - "end": { - "$date": "2022-03-29T00:07:54.000Z" - }, - "events": [ - { - "uuid": "2390a817-84e7-40ad-be3e-0ceb25a84af8", - "start": { - "$date": "2022-03-29T00:04:15.000Z" - }, - "end": { - "$date": "2022-03-29T00:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "26f75df7-d307-42a6-8a8c-925159bc3de9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-29T00:08:21.000Z" - }, - "end": { - "$date": "2022-03-29T00:13:19.000Z" - }, - "events": [ - { - "uuid": "84d25acd-c6f2-425f-bf8a-9a3813e46c27", - "start": { - "$date": "2022-03-29T00:08:21.000Z" - }, - "end": { - "$date": "2022-03-29T00:13:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "46fc761c-a396-4445-9865-6afcbb697b98", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-29T00:14:36.000Z" - }, - "end": { - "$date": "2022-03-29T00:44:06.000Z" - }, - "events": [ - { - "uuid": "64c36677-4907-4d09-87f7-45deb668ceb0", - "start": { - "$date": "2022-03-29T00:14:36.000Z" - }, - "end": { - "$date": "2022-03-29T00:44:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "27bca10b-4aee-493d-9112-4ca2c1c45f3f", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-03-29T00:15:36.000Z" - }, - "end": { - "$date": "2022-03-29T03:19:44.000Z" - }, - "events": [ - { - "uuid": "ad1cbf98-4a7b-43f6-b4d0-c5245c681994", - "start": { - "$date": "2022-03-29T00:15:36.000Z" - }, - "end": { - "$date": "2022-03-29T03:19:44.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "37a8401b-d344-4055-8060-ea9b596bb3f5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-29T00:37:55.000Z" - }, - "end": { - "$date": "2022-03-29T00:43:42.000Z" - }, - "events": [ - { - "uuid": "a33acbad-3292-4584-992d-5413d66d7657", - "start": { - "$date": "2022-03-29T00:37:55.000Z" - }, - "end": { - "$date": "2022-03-29T00:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5000c550-43ab-4425-999e-9903428b8ed7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-29T01:00:03.000Z" - }, - "end": { - "$date": "2022-03-29T01:31:46.000Z" - }, - "events": [ - { - "uuid": "7ebd2d5e-ac6a-4b4f-ab69-9316199391d5", - "start": { - "$date": "2022-03-29T01:00:03.000Z" - }, - "end": { - "$date": "2022-03-29T01:31:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "447f385d-42fe-4190-a03e-cab01d0b1d54", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-29T01:32:36.000Z" - }, - "end": { - "$date": "2022-03-29T01:55:23.000Z" - }, - "events": [ - { - "uuid": "6fdfe4d3-fa4d-4001-8401-04c02f2d40ca", - "start": { - "$date": "2022-03-29T01:32:36.000Z" - }, - "end": { - "$date": "2022-03-29T01:55:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "31ab3d61-5828-4f79-82e3-abffd172c1bd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-29T01:32:35.000Z" - }, - "end": { - "$date": "2022-03-29T04:27:00.000Z" - }, - "events": [ - { - "uuid": "329a460c-fe42-402d-b58d-0ca737f09c8c", - "start": { - "$date": "2022-03-29T01:32:35.000Z" - }, - "end": { - "$date": "2022-03-29T04:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "404b51e6-aa97-4c21-839d-6a3b5612b122", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-29T02:11:41.000Z" - }, - "end": { - "$date": "2022-03-29T02:32:31.000Z" - }, - "events": [ - { - "uuid": "8ae49b79-708f-48f2-a5b5-be61c1b1ead2", - "start": { - "$date": "2022-03-29T02:11:41.000Z" - }, - "end": { - "$date": "2022-03-29T02:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "5f0d0654-4df3-4c78-b9a0-e171f0fc238c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-29T02:12:14.000Z" - }, - "end": { - "$date": "2022-03-29T02:27:10.000Z" - }, - "events": [ - { - "uuid": "b9bd56a5-eb6d-4c49-af57-ae79bd2da260", - "start": { - "$date": "2022-03-29T02:12:14.000Z" - }, - "end": { - "$date": "2022-03-29T02:27:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f0bc8dbf-69ac-4eb8-b693-29c0f8abd4cc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-29T02:27:44.000Z" - }, - "end": { - "$date": "2022-03-29T04:20:56.000Z" - }, - "events": [ - { - "uuid": "4c83b2a1-cbca-4a6c-beb0-c9395621b4f4", - "start": { - "$date": "2022-03-29T02:27:44.000Z" - }, - "end": { - "$date": "2022-03-29T04:20:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "b65a6593-1659-42bc-bf69-dcf2d0ebf50d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-29T02:33:07.000Z" - }, - "end": { - "$date": "2022-03-29T05:15:43.000Z" - }, - "events": [ - { - "uuid": "95f41ece-5853-4382-a7e7-fa7da92bd63b", - "start": { - "$date": "2022-03-29T02:33:07.000Z" - }, - "end": { - "$date": "2022-03-29T05:15:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0ba283b0-2572-4bc7-bcce-d26da8b61173", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-29T02:37:46.000Z" - }, - "end": { - "$date": "2022-03-29T03:11:27.000Z" - }, - "events": [ - { - "uuid": "8b683f96-3b98-44e3-a784-2a09d946d137", - "start": { - "$date": "2022-03-29T02:37:46.000Z" - }, - "end": { - "$date": "2022-03-29T03:11:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "78afdc1a-aa4c-41f9-b266-ed1788df2422", - "uuid": "7c151018-30a8-423e-8c56-fbce91f3af72", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-29T03:11:09.000Z" - }, - "end": { - "$date": "2022-03-29T04:17:44.000Z" - }, - "events": [ - { - "uuid": "e4d5b9e5-ea74-4365-ae58-a42e7342ea1e", - "start": { - "$date": "2022-03-29T03:11:09.000Z" - }, - "end": { - "$date": "2022-03-29T04:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "066948c9-6cfe-4cf2-8047-d09198c94012", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-29T03:15:02.000Z" - }, - "end": { - "$date": "2022-03-29T03:55:53.000Z" - }, - "events": [ - { - "uuid": "e0d974a2-caf5-434f-b5cb-d444e7b2f10e", - "start": { - "$date": "2022-03-29T03:15:02.000Z" - }, - "end": { - "$date": "2022-03-29T03:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1e5c2821-daa1-4d39-b58e-cc9a7867accb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-29T03:39:08.000Z" - }, - "end": { - "$date": "2022-03-29T06:41:00.000Z" - }, - "events": [ - { - "uuid": "b8ef5f5e-2aae-4547-aa91-bce01dc1ec7a", - "start": { - "$date": "2022-03-29T03:39:08.000Z" - }, - "end": { - "$date": "2022-03-29T06:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4d7cbce-2620-4dce-acb3-541a961d10ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-29T03:49:11.000Z" - }, - "end": { - "$date": "2022-03-29T04:12:50.000Z" - }, - "events": [ - { - "uuid": "1dda7de3-c94f-4abc-8cb8-eb2ae7237c2f", - "start": { - "$date": "2022-03-29T03:49:11.000Z" - }, - "end": { - "$date": "2022-03-29T04:12:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3dfef2b9-11f5-4120-a2fe-85878f2c015e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-29T04:14:24.000Z" - }, - "end": { - "$date": "2022-03-29T04:47:16.000Z" - }, - "events": [ - { - "uuid": "6d17712f-3675-45d9-bc02-83dd6cd3b4a8", - "start": { - "$date": "2022-03-29T04:14:24.000Z" - }, - "end": { - "$date": "2022-03-29T04:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e3062d0c-ac34-43d2-91a3-3d81c1eeca36", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-29T04:48:24.000Z" - }, - "end": { - "$date": "2022-03-29T05:01:00.000Z" - }, - "events": [ - { - "uuid": "04d844a7-1993-446c-9f99-6be3d2cec803", - "start": { - "$date": "2022-03-29T04:48:24.000Z" - }, - "end": { - "$date": "2022-03-29T05:01:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f4cfc76-d3ae-4096-92a3-85ce49268697", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-29T04:59:29.000Z" - }, - "end": { - "$date": "2022-03-29T05:37:24.000Z" - }, - "events": [ - { - "uuid": "ada26df3-c2b8-4f11-bbbe-a1f70ba0e82c", - "start": { - "$date": "2022-03-29T04:59:29.000Z" - }, - "end": { - "$date": "2022-03-29T05:37:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "a75112eb-1009-402f-bc46-8163e39c676d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-29T09:32:05.000Z" - }, - "end": { - "$date": "2022-03-29T11:02:43.000Z" - }, - "events": [ - { - "uuid": "66cc60c5-cfe2-4bce-86f1-78615816eee2", - "start": { - "$date": "2022-03-29T09:32:05.000Z" - }, - "end": { - "$date": "2022-03-29T11:02:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "a56258b2-6c38-4e6e-854a-44aa50602d92", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-29T18:33:43.000Z" - }, - "end": { - "$date": "2022-03-29T18:56:34.000Z" - }, - "events": [ - { - "uuid": "c3556eb7-54d6-4c57-9a07-07bfe99bf5a7", - "start": { - "$date": "2022-03-29T18:33:43.000Z" - }, - "end": { - "$date": "2022-03-29T18:56:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "27a3112c-690d-45da-866c-7504e2c35659", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-29T20:00:44.000Z" - }, - "end": { - "$date": "2022-03-29T21:17:52.000Z" - }, - "events": [ - { - "uuid": "669de147-5e5a-448a-a3ab-0d615d6c0fda", - "start": { - "$date": "2022-03-29T20:00:44.000Z" - }, - "end": { - "$date": "2022-03-29T21:17:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "1a60a582-24a0-4222-9f95-ebd99fc6b67d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-29T21:33:40.000Z" - }, - "end": { - "$date": "2022-03-30T01:18:40.000Z" - }, - "events": [ - { - "uuid": "19b9d758-e888-4acb-acd5-b262ec38df71", - "start": { - "$date": "2022-03-29T21:33:40.000Z" - }, - "end": { - "$date": "2022-03-30T01:03:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0f47534f-3607-480b-8ce3-bd3eb9a87193", - "start": { - "$date": "2022-03-30T01:03:40.000Z" - }, - "end": { - "$date": "2022-03-30T01:08:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca8762f4-389c-4f47-96a4-35de99d219c3", - "start": { - "$date": "2022-03-30T01:08:40.000Z" - }, - "end": { - "$date": "2022-03-30T01:18:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6caa34c1-5352-4637-8ed5-9fcc5de9cb04", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-29T23:33:00.000Z" - }, - "end": { - "$date": "2022-03-30T00:37:22.000Z" - }, - "events": [ - { - "uuid": "4d2ea411-025c-4dec-8e42-ce0e630b4779", - "start": { - "$date": "2022-03-29T23:33:00.000Z" - }, - "end": { - "$date": "2022-03-30T00:37:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "da0301d6-bcf7-4fec-9af1-63f444691f59", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-30T00:27:38.000Z" - }, - "end": { - "$date": "2022-03-30T04:19:09.000Z" - }, - "events": [ - { - "uuid": "82548bbb-c07a-4b85-a794-026401558954", - "start": { - "$date": "2022-03-30T00:27:38.000Z" - }, - "end": { - "$date": "2022-03-30T04:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "00e56ef0-3ee5-41e5-b6bf-16aeb6fdb210", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-30T01:46:23.000Z" - }, - "end": { - "$date": "2022-03-30T05:49:13.000Z" - }, - "events": [ - { - "uuid": "0c624b63-1738-4769-adef-63c7fe58586d", - "start": { - "$date": "2022-03-30T01:46:23.000Z" - }, - "end": { - "$date": "2022-03-30T05:49:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "93fd7732-3bda-47f6-9e2e-d95ad237268d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-03-30T01:50:09.000Z" - }, - "end": { - "$date": "2022-03-30T03:01:54.000Z" - }, - "events": [ - { - "uuid": "cf7a0606-13ea-4e7d-8105-68a5912af160", - "start": { - "$date": "2022-03-30T01:50:09.000Z" - }, - "end": { - "$date": "2022-03-30T03:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1bf1050d-5eb8-4833-bb2e-108f6c5664a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-30T02:58:29.000Z" - }, - "end": { - "$date": "2022-03-30T04:11:07.000Z" - }, - "events": [ - { - "uuid": "9eb72e89-faa7-4d35-86be-abd41f24909c", - "start": { - "$date": "2022-03-30T02:58:29.000Z" - }, - "end": { - "$date": "2022-03-30T04:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "290b3c23-0ded-449a-becb-df2f81dafc34", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-30T03:23:27.000Z" - }, - "end": { - "$date": "2022-03-30T03:25:52.000Z" - }, - "events": [ - { - "uuid": "45c8c5c9-4d7f-415b-92c4-0294180e7c27", - "start": { - "$date": "2022-03-30T03:23:27.000Z" - }, - "end": { - "$date": "2022-03-30T03:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0075e032-b4be-44e8-96e3-62ee9ab4f217", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-30T03:26:07.000Z" - }, - "end": { - "$date": "2022-03-30T04:21:19.000Z" - }, - "events": [ - { - "uuid": "beb1e087-5b63-4377-aacb-9c1a4b036302", - "start": { - "$date": "2022-03-30T03:26:07.000Z" - }, - "end": { - "$date": "2022-03-30T04:21:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "554caff6-6966-486f-8c03-98c1c5f484c8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-30T03:32:48.000Z" - }, - "end": { - "$date": "2022-03-30T05:53:51.000Z" - }, - "events": [ - { - "uuid": "f95a6cfa-6b23-4eb3-843c-20c73d81bbf6", - "start": { - "$date": "2022-03-30T03:32:48.000Z" - }, - "end": { - "$date": "2022-03-30T05:53:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bae6949-707f-4091-8bf4-5ac555c46972", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-30T03:39:57.000Z" - }, - "end": { - "$date": "2022-03-30T04:03:58.000Z" - }, - "events": [ - { - "uuid": "9f4b328b-c9c9-4df9-90fe-cba389bfdb5d", - "start": { - "$date": "2022-03-30T03:39:57.000Z" - }, - "end": { - "$date": "2022-03-30T04:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "3af7c431-0fc1-4af7-844b-ec7dc0fd75ad", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-03-30T03:50:52.000Z" - }, - "end": { - "$date": "2022-03-30T06:11:43.000Z" - }, - "events": [ - { - "uuid": "56ae0543-5fe0-4fd9-9b8c-dbe89bc3cd8d", - "start": { - "$date": "2022-03-30T03:50:52.000Z" - }, - "end": { - "$date": "2022-03-30T06:11:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a2231619-01fc-4c5a-a0da-9e8e82d53e7b", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-30T04:08:49.000Z" - }, - "end": { - "$date": "2022-03-30T04:25:14.000Z" - }, - "events": [ - { - "uuid": "90c08a8b-23c4-4139-8665-d380cf33120d", - "start": { - "$date": "2022-03-30T04:08:49.000Z" - }, - "end": { - "$date": "2022-03-30T04:25:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c53d2f7b-a288-4339-afb6-30ec1a3d5853", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-30T04:23:24.000Z" - }, - "end": { - "$date": "2022-03-30T06:42:01.000Z" - }, - "events": [ - { - "uuid": "8fff08fe-bd81-421e-9182-76513ca15e24", - "start": { - "$date": "2022-03-30T04:23:24.000Z" - }, - "end": { - "$date": "2022-03-30T06:42:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe1f323c-8461-4782-8479-9609febc21ac", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-30T04:47:38.000Z" - }, - "end": { - "$date": "2022-03-30T05:24:39.000Z" - }, - "events": [ - { - "uuid": "4e4404e7-6597-4574-9d46-f195e7d68213", - "start": { - "$date": "2022-03-30T04:47:38.000Z" - }, - "end": { - "$date": "2022-03-30T05:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fe0b6d6-ae04-4c85-8e9a-13632cc01694", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-30T05:29:39.000Z" - }, - "end": { - "$date": "2022-03-30T05:59:15.000Z" - }, - "events": [ - { - "uuid": "7bc4104e-8649-4362-b512-8962ae9e57d7", - "start": { - "$date": "2022-03-30T05:29:39.000Z" - }, - "end": { - "$date": "2022-03-30T05:59:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "5238fe19-1e89-4efc-9068-cce62acc0476", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-30T06:49:28.000Z" - }, - "end": { - "$date": "2022-03-30T06:58:16.000Z" - }, - "events": [ - { - "uuid": "d6b76dc9-ecc0-4124-a84e-ec3dcd6e7cb7", - "start": { - "$date": "2022-03-30T06:49:28.000Z" - }, - "end": { - "$date": "2022-03-30T06:58:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "694799ee-b793-4387-9985-885b85cf9f56", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-30T16:04:34.000Z" - }, - "end": { - "$date": "2022-03-30T16:42:29.000Z" - }, - "events": [ - { - "uuid": "4bd6b9a9-2a37-48af-ab69-9bd41158dbe1", - "start": { - "$date": "2022-03-30T16:04:34.000Z" - }, - "end": { - "$date": "2022-03-30T16:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "4f73567a-669a-4407-964c-4839488f88ac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-30T16:38:27.000Z" - }, - "end": { - "$date": "2022-03-30T16:41:10.000Z" - }, - "events": [ - { - "uuid": "0a3962e1-49a4-46b2-8ed4-c55179afc5a2", - "start": { - "$date": "2022-03-30T16:38:27.000Z" - }, - "end": { - "$date": "2022-03-30T16:41:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "3452671e-a69d-4bdb-970a-a0eb24ad55f3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-30T16:41:36.000Z" - }, - "end": { - "$date": "2022-03-30T17:00:59.000Z" - }, - "events": [ - { - "uuid": "2fcbc55d-0804-4a92-8e5c-b7f50d5b8740", - "start": { - "$date": "2022-03-30T16:41:36.000Z" - }, - "end": { - "$date": "2022-03-30T17:00:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "4f3f95eb-0881-4203-8f55-6574c5efa5be", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-30T17:01:32.000Z" - }, - "end": { - "$date": "2022-03-30T20:04:26.000Z" - }, - "events": [ - { - "uuid": "ba813234-2923-4a85-aead-dcfdfca60328", - "start": { - "$date": "2022-03-30T17:01:32.000Z" - }, - "end": { - "$date": "2022-03-30T17:14:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2c826c2-3dce-45c4-9d43-327bc47e87c0", - "start": { - "$date": "2022-03-30T17:14:32.000Z" - }, - "end": { - "$date": "2022-03-30T17:17:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48ead909-6058-407d-8848-215063955139", - "start": { - "$date": "2022-03-30T17:17:32.000Z" - }, - "end": { - "$date": "2022-03-30T20:04:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "dbfc4461-126c-4305-99c8-a8eb059c5c22", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-03-30T17:02:26.000Z" - }, - "end": { - "$date": "2022-03-30T17:05:36.000Z" - }, - "events": [ - { - "uuid": "ae72b085-6b3b-4937-ba8d-61e3e23f42a5", - "start": { - "$date": "2022-03-30T17:02:26.000Z" - }, - "end": { - "$date": "2022-03-30T17:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "adbc0112-2f66-4acc-b827-38fdace7ab2a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-30T23:25:30.000Z" - }, - "end": { - "$date": "2022-03-31T00:50:36.000Z" - }, - "events": [ - { - "uuid": "17648a6b-3094-4c9e-a1d1-c73bb47c7c35", - "start": { - "$date": "2022-03-30T23:25:30.000Z" - }, - "end": { - "$date": "2022-03-31T00:50:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ad68112e-9625-4de6-b677-3d646bd7377a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-30T23:27:48.000Z" - }, - "end": { - "$date": "2022-03-31T01:25:24.000Z" - }, - "events": [ - { - "uuid": "d37c917c-b745-4200-bc35-dd5b1adb4a99", - "start": { - "$date": "2022-03-30T23:27:48.000Z" - }, - "end": { - "$date": "2022-03-31T00:05:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "97d90288-cb07-43b8-aa31-1416ecae6978", - "start": { - "$date": "2022-03-31T00:05:48.000Z" - }, - "end": { - "$date": "2022-03-31T00:10:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23438f96-6642-4cfe-b434-f35dda1c347a", - "start": { - "$date": "2022-03-31T00:10:48.000Z" - }, - "end": { - "$date": "2022-03-31T00:20:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d9056e1a-e3f9-4260-8096-252be4bd272b", - "start": { - "$date": "2022-03-31T00:20:48.000Z" - }, - "end": { - "$date": "2022-03-31T01:09:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d03648ff-6394-4ab9-9412-03349f4b4601", - "start": { - "$date": "2022-03-31T01:09:48.000Z" - }, - "end": { - "$date": "2022-03-31T01:25:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "a24280f2-d7e2-4e21-a1a2-ebec28399831", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-30T23:39:53.000Z" - }, - "end": { - "$date": "2022-03-31T02:08:16.000Z" - }, - "events": [ - { - "uuid": "e9e7e2e8-ed1e-42b0-a0eb-9810e3144fe6", - "start": { - "$date": "2022-03-30T23:39:53.000Z" - }, - "end": { - "$date": "2022-03-31T02:08:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "72c0cf03-df23-48d3-8597-e06fd494565d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-31T00:29:45.000Z" - }, - "end": { - "$date": "2022-03-31T01:37:19.000Z" - }, - "events": [ - { - "uuid": "0322a7f6-9278-473c-9f4b-9de1d08d16a9", - "start": { - "$date": "2022-03-31T00:29:45.000Z" - }, - "end": { - "$date": "2022-03-31T01:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "16846856-e724-484e-a09b-a85617e16659", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-31T01:58:26.000Z" - }, - "end": { - "$date": "2022-03-31T02:09:25.000Z" - }, - "events": [ - { - "uuid": "96e41c62-840b-4e94-a383-3c9345e7a65e", - "start": { - "$date": "2022-03-31T01:58:26.000Z" - }, - "end": { - "$date": "2022-03-31T02:09:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "eafd97fe-0666-48b7-a1da-492c280c13f7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-31T02:09:30.000Z" - }, - "end": { - "$date": "2022-03-31T02:10:36.000Z" - }, - "events": [ - { - "uuid": "1430f1a2-d765-4ea2-a91f-1d2f09227ef4", - "start": { - "$date": "2022-03-31T02:09:30.000Z" - }, - "end": { - "$date": "2022-03-31T02:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e73f143a-d8ae-4bad-910f-f8f1aeabd141", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-31T02:11:26.000Z" - }, - "end": { - "$date": "2022-03-31T03:37:14.000Z" - }, - "events": [ - { - "uuid": "a6c993d9-00dc-433d-aec3-449bd5724ee5", - "start": { - "$date": "2022-03-31T02:11:26.000Z" - }, - "end": { - "$date": "2022-03-31T03:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6d049c2b-0cf7-45b0-83f8-4e1323d7e753", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-03-31T02:11:58.000Z" - }, - "end": { - "$date": "2022-03-31T04:10:28.000Z" - }, - "events": [ - { - "uuid": "dec78528-b4ba-4d92-9eaa-21d73e415f4c", - "start": { - "$date": "2022-03-31T02:11:58.000Z" - }, - "end": { - "$date": "2022-03-31T04:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87f694d5-7df3-45cc-b002-e1268f899f0f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-31T04:20:22.000Z" - }, - "end": { - "$date": "2022-03-31T05:01:31.000Z" - }, - "events": [ - { - "uuid": "eb95ca78-ecb6-499f-a40c-f8b5e4480f3f", - "start": { - "$date": "2022-03-31T04:20:22.000Z" - }, - "end": { - "$date": "2022-03-31T05:01:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "078c3932-cde1-41ad-b098-cf351e9b6791", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-31T02:31:16.000Z" - }, - "end": { - "$date": "2022-03-31T04:42:33.000Z" - }, - "events": [ - { - "uuid": "a7037102-02c4-4544-8e7e-1414d473e8a5", - "start": { - "$date": "2022-03-31T02:31:16.000Z" - }, - "end": { - "$date": "2022-03-31T04:42:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6a78daea-eff8-44eb-8919-53dd59b9ff05", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-31T02:50:42.000Z" - }, - "end": { - "$date": "2022-03-31T04:38:29.000Z" - }, - "events": [ - { - "uuid": "0d8ee44b-0332-4bf3-9c58-3815f77c8710", - "start": { - "$date": "2022-03-31T02:50:42.000Z" - }, - "end": { - "$date": "2022-03-31T04:38:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "4a2e7487-6646-4dfb-8da5-14b90d6c88b9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-31T02:56:37.000Z" - }, - "end": { - "$date": "2022-03-31T03:06:17.000Z" - }, - "events": [ - { - "uuid": "f30b95a4-49b9-403b-8f14-dc5f9a916dd7", - "start": { - "$date": "2022-03-31T02:56:37.000Z" - }, - "end": { - "$date": "2022-03-31T03:06:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "98f8bf77-6d1e-42d3-8a36-d9cde3ad3bee", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-31T03:06:32.000Z" - }, - "end": { - "$date": "2022-03-31T03:12:53.000Z" - }, - "events": [ - { - "uuid": "f32808e1-9a46-492a-a986-76dc0ea561d6", - "start": { - "$date": "2022-03-31T03:06:32.000Z" - }, - "end": { - "$date": "2022-03-31T03:12:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "76b53588-0fdb-4d8b-b381-5ac42e6bcce8", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-31T03:12:58.000Z" - }, - "end": { - "$date": "2022-03-31T04:08:56.000Z" - }, - "events": [ - { - "uuid": "320635aa-7fba-4d9b-b7e2-1eb42793f7e8", - "start": { - "$date": "2022-03-31T03:12:58.000Z" - }, - "end": { - "$date": "2022-03-31T04:08:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4e4cc30d-ab36-4d2b-891a-5b2d96b52563", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-03-31T03:38:19.000Z" - }, - "end": { - "$date": "2022-03-31T05:01:10.000Z" - }, - "events": [ - { - "uuid": "214b54de-ce4f-4842-8701-bf74964b0ffb", - "start": { - "$date": "2022-03-31T03:38:19.000Z" - }, - "end": { - "$date": "2022-03-31T05:01:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "825bac33-616c-490e-8f20-ca07c3c64bba", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-31T04:00:50.000Z" - }, - "end": { - "$date": "2022-03-31T04:29:25.000Z" - }, - "events": [ - { - "uuid": "81d9188f-b321-410f-a732-5b37e899eda2", - "start": { - "$date": "2022-03-31T04:00:50.000Z" - }, - "end": { - "$date": "2022-03-31T04:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46c6ed67-6dd3-4a49-a41b-2c3e07e6f1b7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-03-31T04:41:14.000Z" - }, - "end": { - "$date": "2022-03-31T05:16:37.000Z" - }, - "events": [ - { - "uuid": "941c5ba1-7a57-4133-a722-2cb6c33b2c9d", - "start": { - "$date": "2022-03-31T04:41:14.000Z" - }, - "end": { - "$date": "2022-03-31T05:16:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "efa9ef7f-29f5-46bc-99f7-7bdca728ed50", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-31T04:55:00.000Z" - }, - "end": { - "$date": "2022-03-31T04:57:20.000Z" - }, - "events": [ - { - "uuid": "382b9e8e-2e4d-4515-bdbb-8075d2f6306a", - "start": { - "$date": "2022-03-31T04:55:00.000Z" - }, - "end": { - "$date": "2022-03-31T04:57:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "546ba82e-e770-482e-8ebe-c6d2838cfe5e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-31T04:57:39.000Z" - }, - "end": { - "$date": "2022-03-31T05:06:21.000Z" - }, - "events": [ - { - "uuid": "2f91eb48-f15f-4a02-8013-823f2130370b", - "start": { - "$date": "2022-03-31T04:57:39.000Z" - }, - "end": { - "$date": "2022-03-31T05:06:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b1641e8a-c780-4c00-bd1f-700f45f8bdc4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-31T05:08:40.000Z" - }, - "end": { - "$date": "2022-03-31T05:48:52.000Z" - }, - "events": [ - { - "uuid": "5cacf342-1716-4f9e-b714-dffa87abfb0f", - "start": { - "$date": "2022-03-31T05:08:40.000Z" - }, - "end": { - "$date": "2022-03-31T05:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "c03198fe-f092-462d-95ce-3bfe4de30fe4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-31T05:10:51.000Z" - }, - "end": { - "$date": "2022-03-31T05:14:47.000Z" - }, - "events": [ - { - "uuid": "a3a0a33b-bc7d-4394-9cf2-3fc242687019", - "start": { - "$date": "2022-03-31T05:10:51.000Z" - }, - "end": { - "$date": "2022-03-31T05:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f9d18394-3816-49c9-809a-5d5389bc9e19", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-31T05:24:12.000Z" - }, - "end": { - "$date": "2022-03-31T06:06:48.000Z" - }, - "events": [ - { - "uuid": "7eb6152d-ebe7-4e19-880c-2843aec06a50", - "start": { - "$date": "2022-03-31T05:24:12.000Z" - }, - "end": { - "$date": "2022-03-31T06:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "bff36695-e5e8-4e3a-a4c4-d827d3ed3257", - "uuid": "3bd6bb16-68b8-4bec-994a-598b4c8e3f60", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-03-31T05:20:07.000Z" - }, - "end": { - "$date": "2022-03-31T05:39:51.000Z" - }, - "events": [ - { - "uuid": "f8573745-9a81-41c8-b9fb-3707d863aec9", - "start": { - "$date": "2022-03-31T05:20:07.000Z" - }, - "end": { - "$date": "2022-03-31T05:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "fe9ccd73-6901-4ee2-8db4-071f71fe13e2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-31T05:32:28.000Z" - }, - "end": { - "$date": "2022-03-31T06:58:33.000Z" - }, - "events": [ - { - "uuid": "2d4217ab-abdf-430f-b701-79a3c12df085", - "start": { - "$date": "2022-03-31T05:32:28.000Z" - }, - "end": { - "$date": "2022-03-31T06:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d4269070-707a-4998-9b8d-141d3737bf26", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-31T06:00:29.000Z" - }, - "end": { - "$date": "2022-03-31T06:35:18.000Z" - }, - "events": [ - { - "uuid": "dfdc26ee-a1bf-4004-8dc5-d76e91f566e2", - "start": { - "$date": "2022-03-31T06:00:29.000Z" - }, - "end": { - "$date": "2022-03-31T06:35:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2cfc9b69-836d-4861-9e74-1318133c23b3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-31T06:18:04.000Z" - }, - "end": { - "$date": "2022-03-31T06:50:00.000Z" - }, - "events": [ - { - "uuid": "00b52428-9eec-4393-91d2-76951d124451", - "start": { - "$date": "2022-03-31T06:18:04.000Z" - }, - "end": { - "$date": "2022-03-31T06:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "1a6d31e6-7dc9-4e35-8098-f23b181de869", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-31T06:38:19.000Z" - }, - "end": { - "$date": "2022-03-31T07:03:40.000Z" - }, - "events": [ - { - "uuid": "a6c818c5-ed07-43b0-94a1-f8b77230e73f", - "start": { - "$date": "2022-03-31T06:38:19.000Z" - }, - "end": { - "$date": "2022-03-31T07:03:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "85cae43a-0ddc-47bd-991a-a458fce47422", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-03-31T06:51:49.000Z" - }, - "end": { - "$date": "2022-03-31T07:14:46.000Z" - }, - "events": [ - { - "uuid": "d01b87b2-92a0-41e7-864c-f40f4745b250", - "start": { - "$date": "2022-03-31T06:51:49.000Z" - }, - "end": { - "$date": "2022-03-31T07:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9f6740b5-fd83-44d4-bb8a-65d06b69a4fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-03-31T07:04:16.000Z" - }, - "end": { - "$date": "2022-03-31T07:35:08.000Z" - }, - "events": [ - { - "uuid": "654afb5e-777f-4758-a88b-f0f14ee792de", - "start": { - "$date": "2022-03-31T07:04:16.000Z" - }, - "end": { - "$date": "2022-03-31T07:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bc97a21b-af36-40f9-a4f0-990825a7e08c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-03-31T07:14:38.000Z" - }, - "end": { - "$date": "2022-03-31T07:17:31.000Z" - }, - "events": [ - { - "uuid": "796028dc-5f2c-4619-942a-79182558cbce", - "start": { - "$date": "2022-03-31T07:14:38.000Z" - }, - "end": { - "$date": "2022-03-31T07:17:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2ce087c0-6dc3-4430-a0b5-f53d5296b168", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-31T18:06:14.000Z" - }, - "end": { - "$date": "2022-03-31T18:32:20.000Z" - }, - "events": [ - { - "uuid": "1a5e4f60-8d6b-4ae1-b1e1-f97d5737955e", - "start": { - "$date": "2022-03-31T18:06:14.000Z" - }, - "end": { - "$date": "2022-03-31T18:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "98154ff1-2439-4d5b-b313-3b3190d6b86e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-31T18:35:20.000Z" - }, - "end": { - "$date": "2022-03-31T18:41:11.000Z" - }, - "events": [ - { - "uuid": "6bc263cf-e0a5-4111-85c9-5fc91413714e", - "start": { - "$date": "2022-03-31T18:35:20.000Z" - }, - "end": { - "$date": "2022-03-31T18:41:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "a2217917-10c2-432a-ab92-23cd68e7696b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-31T18:41:15.000Z" - }, - "end": { - "$date": "2022-03-31T18:46:11.000Z" - }, - "events": [ - { - "uuid": "57cb7b1a-25bf-44df-876b-c74dd799f5ec", - "start": { - "$date": "2022-03-31T18:41:15.000Z" - }, - "end": { - "$date": "2022-03-31T18:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "f728acb7-ee68-4a45-8242-15e72ade0c38", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-31T18:46:16.000Z" - }, - "end": { - "$date": "2022-03-31T22:03:48.000Z" - }, - "events": [ - { - "uuid": "5625b978-ec14-4813-ac05-31d6f7251b7a", - "start": { - "$date": "2022-03-31T18:46:16.000Z" - }, - "end": { - "$date": "2022-03-31T22:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "776492c7-fef6-4187-b0e8-a805d1760af2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-03-31T22:10:04.000Z" - }, - "end": { - "$date": "2022-04-01T00:36:03.000Z" - }, - "events": [ - { - "uuid": "8f71001b-66ad-4c2f-9f2d-b9ab35d3a410", - "start": { - "$date": "2022-03-31T22:10:04.000Z" - }, - "end": { - "$date": "2022-04-01T00:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4390b26c-30ce-44e3-9129-489d8668ece2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-03-31T23:39:32.000Z" - }, - "end": { - "$date": "2022-04-01T00:57:44.000Z" - }, - "events": [ - { - "uuid": "ca288338-0e55-4aa9-b0ee-b80e4f809475", - "start": { - "$date": "2022-03-31T23:39:32.000Z" - }, - "end": { - "$date": "2022-04-01T00:57:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "3e5da0f5-5922-42a8-b2d6-01409b9763c6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-01T01:15:13.000Z" - }, - "end": { - "$date": "2022-04-01T11:05:59.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-01T01:15:13.000Z" - }, - "end": { - "$date": "2022-04-01T11:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "cd1dfa70-acac-4ad6-a743-edb6b6bacf7d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-01T01:48:10.000Z" - }, - "end": { - "$date": "2022-04-01T02:05:47.000Z" - }, - "events": [ - { - "uuid": "82b534f3-c6f0-4416-80d5-558b821133ba", - "start": { - "$date": "2022-04-01T01:48:10.000Z" - }, - "end": { - "$date": "2022-04-01T02:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8a8c690f-1557-4bcf-8d19-6c5ae773cdd1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-01T02:42:20.000Z" - }, - "end": { - "$date": "2022-04-01T05:02:38.000Z" - }, - "events": [ - { - "uuid": "ec49737b-ad5d-4103-a3c0-ef7539dbedce", - "start": { - "$date": "2022-04-01T02:42:20.000Z" - }, - "end": { - "$date": "2022-04-01T05:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f8513df-3435-4637-b288-3e53c6f56b2a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-01T04:05:48.000Z" - }, - "end": { - "$date": "2022-04-01T04:46:04.000Z" - }, - "events": [ - { - "uuid": "8b2655c0-e9f6-4477-86e1-a1f747731695", - "start": { - "$date": "2022-04-01T04:05:48.000Z" - }, - "end": { - "$date": "2022-04-01T04:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a84ed042-8e98-43ab-a37d-cb340464bdfb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-01T04:05:58.000Z" - }, - "end": { - "$date": "2022-04-01T06:46:43.000Z" - }, - "events": [ - { - "uuid": "adfd0570-6d7c-409e-b837-ace78db3daed", - "start": { - "$date": "2022-04-01T04:05:58.000Z" - }, - "end": { - "$date": "2022-04-01T06:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff66cb5b-8439-43c1-9fec-837ca8d4121f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-01T04:06:23.000Z" - }, - "end": { - "$date": "2022-04-01T05:21:30.000Z" - }, - "events": [ - { - "uuid": "d69ca686-0f23-4c0e-84e5-39186ec4a858", - "start": { - "$date": "2022-04-01T04:06:23.000Z" - }, - "end": { - "$date": "2022-04-01T05:21:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0050e9a0-3ea7-41bd-89ca-75e8f4a47523", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-01T04:08:11.000Z" - }, - "end": { - "$date": "2022-04-01T05:22:20.000Z" - }, - "events": [ - { - "uuid": "a0fc7fb5-24d4-449d-9cb4-45c0f4f4324e", - "start": { - "$date": "2022-04-01T04:08:11.000Z" - }, - "end": { - "$date": "2022-04-01T05:22:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "3efdcd8c-e10b-4e00-a080-825bb80502c1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-01T04:10:27.000Z" - }, - "end": { - "$date": "2022-04-01T10:58:11.000Z" - }, - "events": [ - { - "uuid": "149fe8ff-eedd-4b64-9ac6-594bc7552ba8", - "start": { - "$date": "2022-04-01T04:10:27.000Z" - }, - "end": { - "$date": "2022-04-01T10:58:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "41078d37-3307-4d3a-8410-d390f89d52cf", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-04-01T04:17:00.000Z" - }, - "end": { - "$date": "2022-04-01T06:26:16.000Z" - }, - "events": [ - { - "uuid": "80f4a472-76b9-4e93-aba2-5cc28912564a", - "start": { - "$date": "2022-04-01T04:17:00.000Z" - }, - "end": { - "$date": "2022-04-01T06:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "487318e4-a94a-4917-9967-8655e06de910", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-01T04:51:50.000Z" - }, - "end": { - "$date": "2022-04-01T05:20:51.000Z" - }, - "events": [ - { - "uuid": "ef52448c-4abb-4cbb-b322-f983c354ee6e", - "start": { - "$date": "2022-04-01T04:51:50.000Z" - }, - "end": { - "$date": "2022-04-01T05:20:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ed873321-f2b8-4b9a-a449-a3771a534fa7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-01T05:02:56.000Z" - }, - "end": { - "$date": "2022-04-01T05:04:17.000Z" - }, - "events": [ - { - "uuid": "6184d847-3b80-4e2b-ba29-c22c38e536d3", - "start": { - "$date": "2022-04-01T05:02:56.000Z" - }, - "end": { - "$date": "2022-04-01T05:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "802dcc1b-9536-4f14-a076-74def341fdc0", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-01T05:46:40.000Z" - }, - "end": { - "$date": "2022-04-01T06:28:21.000Z" - }, - "events": [ - { - "uuid": "7ea17cb3-020d-4ef3-95c9-af9c0c3623d5", - "start": { - "$date": "2022-04-01T05:46:40.000Z" - }, - "end": { - "$date": "2022-04-01T06:28:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ddcd7f6e-293a-44c3-b0fb-af57eec3b40e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-01T06:34:12.000Z" - }, - "end": { - "$date": "2022-04-01T07:00:27.000Z" - }, - "events": [ - { - "uuid": "9c8a3f53-436a-42b0-8633-53318b49529d", - "start": { - "$date": "2022-04-01T06:34:12.000Z" - }, - "end": { - "$date": "2022-04-01T07:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e049af5-d418-48be-9b4f-83b4a5583838", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-01T07:05:08.000Z" - }, - "end": { - "$date": "2022-04-01T07:39:18.000Z" - }, - "events": [ - { - "uuid": "18e81244-bfc3-4bb6-9158-66c74365bb44", - "start": { - "$date": "2022-04-01T07:05:08.000Z" - }, - "end": { - "$date": "2022-04-01T07:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "db9637ec-c846-48d6-ac96-fdb17e4fb201", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-01T12:27:57.000Z" - }, - "end": { - "$date": "2022-04-01T12:42:18.000Z" - }, - "events": [ - { - "uuid": "012309a0-8233-49aa-a7ae-d3b0ca72946f", - "start": { - "$date": "2022-04-01T12:27:57.000Z" - }, - "end": { - "$date": "2022-04-01T12:42:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "745a709c-59ae-45ad-957d-277f61f440ce", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T18:07:16.000Z" - }, - "end": { - "$date": "2022-04-01T18:17:18.000Z" - }, - "events": [ - { - "uuid": "5f059392-5d29-4e92-9eab-d17614b44503", - "start": { - "$date": "2022-04-01T18:07:16.000Z" - }, - "end": { - "$date": "2022-04-01T18:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "892de8dc-215f-4c1d-8b29-558cef971095", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T18:44:09.000Z" - }, - "end": { - "$date": "2022-04-01T18:57:08.000Z" - }, - "events": [ - { - "uuid": "567ce090-a65c-4626-8251-3ed5d4ccb33f", - "start": { - "$date": "2022-04-01T18:44:09.000Z" - }, - "end": { - "$date": "2022-04-01T18:57:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "18c1dc52-031d-4072-ae50-f4afdedfffe6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T19:00:58.000Z" - }, - "end": { - "$date": "2022-04-01T19:07:32.000Z" - }, - "events": [ - { - "uuid": "e7f0e46f-f789-47e2-939b-03ccef4836c8", - "start": { - "$date": "2022-04-01T19:00:58.000Z" - }, - "end": { - "$date": "2022-04-01T19:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3ad97d29-8645-4141-a48c-e659f61f6696", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T20:35:45.000Z" - }, - "end": { - "$date": "2022-04-01T21:15:04.000Z" - }, - "events": [ - { - "uuid": "f9ba3cc4-2113-487b-891b-a37c22276af2", - "start": { - "$date": "2022-04-01T20:35:45.000Z" - }, - "end": { - "$date": "2022-04-01T21:15:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "3f24903a-f128-44c5-8c07-5bb9c78c916a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T21:15:07.000Z" - }, - "end": { - "$date": "2022-04-01T21:23:10.000Z" - }, - "events": [ - { - "uuid": "7a748c06-4b2f-4105-a25f-d75e93ab1438", - "start": { - "$date": "2022-04-01T21:15:07.000Z" - }, - "end": { - "$date": "2022-04-01T21:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faa51a83-658b-4a8a-91ba-e0dd83f24110", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T21:31:36.000Z" - }, - "end": { - "$date": "2022-04-01T21:59:22.000Z" - }, - "events": [ - { - "uuid": "96b337d5-3cad-44f8-8970-a96d0db3a8aa", - "start": { - "$date": "2022-04-01T21:31:36.000Z" - }, - "end": { - "$date": "2022-04-01T21:59:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6408683c-e347-4c14-8606-7d2c8660518f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-01T21:37:02.000Z" - }, - "end": { - "$date": "2022-04-01T21:49:23.000Z" - }, - "events": [ - { - "uuid": "fd0b3749-bab8-4c07-90f5-b9ecbfd1fdf7", - "start": { - "$date": "2022-04-01T21:37:02.000Z" - }, - "end": { - "$date": "2022-04-01T21:49:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "aa0ebefc-1cda-4d49-b525-c25651c80253", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-01T21:54:05.000Z" - }, - "end": { - "$date": "2022-04-01T22:28:45.000Z" - }, - "events": [ - { - "uuid": "7a84651d-cc59-4a48-abe8-fa2f14715265", - "start": { - "$date": "2022-04-01T21:54:05.000Z" - }, - "end": { - "$date": "2022-04-01T22:09:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b219795b-0c2b-47ac-a7fe-0f3d0d1f0c53", - "start": { - "$date": "2022-04-01T22:09:05.000Z" - }, - "end": { - "$date": "2022-04-01T22:28:45.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dca1a75d-c253-4282-8859-f1cc590e1a0a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T22:01:18.000Z" - }, - "end": { - "$date": "2022-04-01T22:45:40.000Z" - }, - "events": [ - { - "uuid": "1df56798-35ec-472a-afd2-73aebd656e1d", - "start": { - "$date": "2022-04-01T22:01:18.000Z" - }, - "end": { - "$date": "2022-04-01T22:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77d5276c-6ecc-470f-a084-4db0a1839ca6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T22:47:00.000Z" - }, - "end": { - "$date": "2022-04-01T23:15:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-01T22:47:00.000Z" - }, - "end": { - "$date": "2022-04-01T23:15:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2d5dfc40-cc92-4b50-ba2c-77541d479651", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-01T22:50:17.000Z" - }, - "end": { - "$date": "2022-04-02T01:31:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-01T22:50:17.000Z" - }, - "end": { - "$date": "2022-04-02T01:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f099c0d-4aee-4f47-9285-d461f9857a25", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T23:17:34.000Z" - }, - "end": { - "$date": "2022-04-01T23:45:49.000Z" - }, - "events": [ - { - "uuid": "7664cf32-b1cb-490d-a1e0-c1e416111306", - "start": { - "$date": "2022-04-01T23:17:34.000Z" - }, - "end": { - "$date": "2022-04-01T23:45:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48c70654-f130-482a-b3d0-7eda6922870c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-01T23:47:13.000Z" - }, - "end": { - "$date": "2022-04-02T00:24:28.000Z" - }, - "events": [ - { - "uuid": "c2fc6a67-6a4a-4b79-94b1-c539675dae17", - "start": { - "$date": "2022-04-01T23:47:13.000Z" - }, - "end": { - "$date": "2022-04-02T00:24:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7c85fe34-7a00-4d44-b370-44d08b8a0a9c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T00:26:33.000Z" - }, - "end": { - "$date": "2022-04-02T01:00:44.000Z" - }, - "events": [ - { - "uuid": "9fa9d1c6-57f3-4509-ab84-ba7b79da4e3a", - "start": { - "$date": "2022-04-02T00:26:33.000Z" - }, - "end": { - "$date": "2022-04-02T01:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "412226e8-aaba-4c0a-adb7-d34029705d59", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T01:03:38.000Z" - }, - "end": { - "$date": "2022-04-02T01:36:45.000Z" - }, - "events": [ - { - "uuid": "92f2097b-c0b7-400d-84a3-ac46774f457c", - "start": { - "$date": "2022-04-02T01:03:38.000Z" - }, - "end": { - "$date": "2022-04-02T01:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "92231138-5901-453f-b538-8428c6b03eae", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-02T01:07:50.000Z" - }, - "end": { - "$date": "2022-04-02T01:12:30.000Z" - }, - "events": [ - { - "uuid": "e2c72f89-2256-45d0-bdd4-ae960db95741", - "start": { - "$date": "2022-04-02T01:07:50.000Z" - }, - "end": { - "$date": "2022-04-02T01:12:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "392d50c0-fe93-4072-8d26-7c09fb8c46f4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-02T01:11:05.000Z" - }, - "end": { - "$date": "2022-04-02T04:02:15.000Z" - }, - "events": [ - { - "uuid": "6028fbe7-edcc-4f1d-b1d9-9a4d1b38bf84", - "start": { - "$date": "2022-04-02T01:11:05.000Z" - }, - "end": { - "$date": "2022-04-02T04:02:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "30d77b9c-8abb-473b-84a1-a4df1a1c33c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-02T01:13:00.000Z" - }, - "end": { - "$date": "2022-04-02T06:13:19.000Z" - }, - "events": [ - { - "uuid": "820775eb-2d8b-459d-aaa5-5c3e9d00fa58", - "start": { - "$date": "2022-04-02T01:13:00.000Z" - }, - "end": { - "$date": "2022-04-02T06:13:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "722be013-8ab2-4a50-b8fa-88c0942b3d7f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T01:39:20.000Z" - }, - "end": { - "$date": "2022-04-02T02:09:45.000Z" - }, - "events": [ - { - "uuid": "b731fa40-ff57-4c1f-bf9e-88227a9a4e43", - "start": { - "$date": "2022-04-02T01:39:20.000Z" - }, - "end": { - "$date": "2022-04-02T02:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "47efbe77-65d9-49c2-ac32-22f5693c845a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-02T02:00:32.000Z" - }, - "end": { - "$date": "2022-04-02T02:06:23.000Z" - }, - "events": [ - { - "uuid": "15e4b9de-e075-490c-8cd2-90b48a2d9319", - "start": { - "$date": "2022-04-02T02:00:32.000Z" - }, - "end": { - "$date": "2022-04-02T02:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4a97dd8c-04ab-47b1-9fde-8fb43329dcc4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T02:14:47.000Z" - }, - "end": { - "$date": "2022-04-02T02:48:41.000Z" - }, - "events": [ - { - "uuid": "c95eb308-2650-4616-8302-3a703795ce43", - "start": { - "$date": "2022-04-02T02:14:47.000Z" - }, - "end": { - "$date": "2022-04-02T02:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "539aca1d-acd4-4758-91c3-8836cf8d08ce", - "uuid": "ac5f6113-48e5-4963-8f8b-0ae953e469b4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-02T02:17:49.000Z" - }, - "end": { - "$date": "2022-04-02T02:19:39.000Z" - }, - "events": [ - { - "uuid": "030bd72e-46f8-4824-ba09-9509632a7fc6", - "start": { - "$date": "2022-04-02T02:17:49.000Z" - }, - "end": { - "$date": "2022-04-02T02:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "336178df-7d20-40f9-8e57-2d95f351ef09", - "uuid": "489ea154-a0a9-495f-be25-693fc73e1e72", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-02T02:21:05.000Z" - }, - "end": { - "$date": "2022-04-02T02:55:33.000Z" - }, - "events": [ - { - "uuid": "31081177-544b-43b2-bc0e-7731385726fb", - "start": { - "$date": "2022-04-02T02:21:05.000Z" - }, - "end": { - "$date": "2022-04-02T02:55:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", - "uuid": "9ec2c7eb-2339-4f5a-bcf6-4e8cb386d8b3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-02T02:23:49.000Z" - }, - "end": { - "$date": "2022-04-02T05:39:42.000Z" - }, - "events": [ - { - "uuid": "139ee9ff-f1b5-4929-9715-66ee828f2cf7", - "start": { - "$date": "2022-04-02T02:23:49.000Z" - }, - "end": { - "$date": "2022-04-02T05:39:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d9cfe07-1abf-4d9d-9cfc-1c5e693ddeea", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T02:49:57.000Z" - }, - "end": { - "$date": "2022-04-02T02:59:23.000Z" - }, - "events": [ - { - "uuid": "7dd99f94-a8ae-4334-a42a-386df7a8189f", - "start": { - "$date": "2022-04-02T02:49:57.000Z" - }, - "end": { - "$date": "2022-04-02T02:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "8d26a9bc-72ca-4e8e-a04b-38115c114daf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-02T05:11:21.000Z" - }, - "end": { - "$date": "2022-04-02T05:11:41.000Z" - }, - "events": [ - { - "uuid": "cd8ce44f-89b4-4c4b-a7da-60775d1fa987", - "start": { - "$date": "2022-04-02T05:11:21.000Z" - }, - "end": { - "$date": "2022-04-02T05:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b82179b-33e2-4f62-ad33-b4706243fd9e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-02T03:51:55.000Z" - }, - "end": { - "$date": "2022-04-02T03:53:30.000Z" - }, - "events": [ - { - "uuid": "53c594bb-8fb6-49f1-a257-49257b40d43c", - "start": { - "$date": "2022-04-02T03:51:55.000Z" - }, - "end": { - "$date": "2022-04-02T03:53:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3ff5ed28-d40f-4d5f-b70d-7ca8c22a5a30", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-02T04:02:45.000Z" - }, - "end": { - "$date": "2022-04-02T04:46:52.000Z" - }, - "events": [ - { - "uuid": "fd30425f-9d7d-4f21-8aa0-8bd4ab884e10", - "start": { - "$date": "2022-04-02T04:02:45.000Z" - }, - "end": { - "$date": "2022-04-02T04:46:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "66771500-3b32-41f2-a5ad-8acfd65a5e92", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-02T04:02:58.000Z" - }, - "end": { - "$date": "2022-04-02T04:55:41.000Z" - }, - "events": [ - { - "uuid": "2576beb4-d508-4efe-a49c-8c27f620f92e", - "start": { - "$date": "2022-04-02T04:02:58.000Z" - }, - "end": { - "$date": "2022-04-02T04:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "b50bf5e0-67b7-4dcb-aae1-bd8dfd56cc14", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-04-02T04:03:03.000Z" - }, - "end": { - "$date": "2022-04-02T04:05:34.000Z" - }, - "events": [ - { - "uuid": "5b56830a-9bd7-4574-9aaa-ae2d79bf0b5c", - "start": { - "$date": "2022-04-02T04:03:03.000Z" - }, - "end": { - "$date": "2022-04-02T04:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0fbb91b9-3bb7-4d71-9625-af77444cde0f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-04-02T04:06:09.000Z" - }, - "end": { - "$date": "2022-04-02T04:46:00.000Z" - }, - "events": [ - { - "uuid": "dc9bf4b3-9a30-4426-957e-f6c391df62c3", - "start": { - "$date": "2022-04-02T04:06:09.000Z" - }, - "end": { - "$date": "2022-04-02T04:46:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7abb30b7-bb00-426b-8ffe-a01362fd925a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-02T04:19:12.000Z" - }, - "end": { - "$date": "2022-04-02T04:45:03.000Z" - }, - "events": [ - { - "uuid": "43bf78af-fd3c-49b5-8e7f-f58c6b52e49d", - "start": { - "$date": "2022-04-02T04:19:12.000Z" - }, - "end": { - "$date": "2022-04-02T04:45:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "c628264b-69e1-4a5e-8b9a-84c7f8adf079", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-04-02T04:47:55.000Z" - }, - "end": { - "$date": "2022-04-02T06:31:42.000Z" - }, - "events": [ - { - "uuid": "15351b35-4530-43dc-b98a-a9b141700ad9", - "start": { - "$date": "2022-04-02T04:47:55.000Z" - }, - "end": { - "$date": "2022-04-02T06:31:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7eac7c2f-0cb1-4f43-90d3-d38f3c5d2411", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T05:05:25.000Z" - }, - "end": { - "$date": "2022-04-02T05:50:14.000Z" - }, - "events": [ - { - "uuid": "f26121a7-af44-4c8a-bc48-8ca80be7ea9e", - "start": { - "$date": "2022-04-02T05:05:25.000Z" - }, - "end": { - "$date": "2022-04-02T05:50:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8ae0ebca-e9c6-4704-96d0-537355a0824c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-02T06:17:49.000Z" - }, - "end": { - "$date": "2022-04-02T06:18:19.000Z" - }, - "events": [ - { - "uuid": "8502ae76-737b-4683-9479-df3a4777b99d", - "start": { - "$date": "2022-04-02T06:17:49.000Z" - }, - "end": { - "$date": "2022-04-02T06:18:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "867a5e50-1deb-42f4-859b-faeed7bb312b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-02T05:40:56.000Z" - }, - "end": { - "$date": "2022-04-02T06:56:23.000Z" - }, - "events": [ - { - "uuid": "6670d7b0-34dd-4a15-a409-7bedf780f25c", - "start": { - "$date": "2022-04-02T05:40:56.000Z" - }, - "end": { - "$date": "2022-04-02T06:56:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cd260c1b-ee2f-4cdd-9855-24740ac4c2c6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T06:01:36.000Z" - }, - "end": { - "$date": "2022-04-02T06:40:06.000Z" - }, - "events": [ - { - "uuid": "b8239b27-096f-4b9f-a5fd-043b18a77bfd", - "start": { - "$date": "2022-04-02T06:01:36.000Z" - }, - "end": { - "$date": "2022-04-02T06:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dc4cf8d9-ddd9-421a-b1c2-bda8e2a5e5fb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-02T06:05:03.000Z" - }, - "end": { - "$date": "2022-04-02T08:26:16.000Z" - }, - "events": [ - { - "uuid": "b926c1f7-5bc2-4d09-891f-9018c8110b0e", - "start": { - "$date": "2022-04-02T06:05:03.000Z" - }, - "end": { - "$date": "2022-04-02T08:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c108a52b-2696-4121-82bd-dfc2ff2c8a99", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-02T08:47:08.000Z" - }, - "end": { - "$date": "2022-04-02T08:47:10.000Z" - }, - "events": [ - { - "uuid": "3b893b91-ebfc-4beb-ab42-b74c6f8858a7", - "start": { - "$date": "2022-04-02T08:47:08.000Z" - }, - "end": { - "$date": "2022-04-02T08:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "23459b32-685b-457e-919e-69588b95ffb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-02T06:23:03.000Z" - }, - "end": { - "$date": "2022-04-02T07:17:21.000Z" - }, - "events": [ - { - "uuid": "37f79a00-cfb5-4faa-8a0c-afdd5fc941ba", - "start": { - "$date": "2022-04-02T06:23:03.000Z" - }, - "end": { - "$date": "2022-04-02T07:17:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "181112e3-65f6-4876-a13b-731f5be495f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-02T12:44:36.000Z" - }, - "end": { - "$date": "2022-04-02T13:13:27.000Z" - }, - "events": [ - { - "uuid": "758571e4-7408-4ab9-bf90-2e8529675c6b", - "start": { - "$date": "2022-04-02T12:44:36.000Z" - }, - "end": { - "$date": "2022-04-02T13:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5c314657-355e-4e34-b65a-32137074be6d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-02T15:06:50.000Z" - }, - "end": { - "$date": "2022-04-02T16:04:55.000Z" - }, - "events": [ - { - "uuid": "7ab6b508-a9e4-4777-b27d-0ae22d3dfc15", - "start": { - "$date": "2022-04-02T15:06:50.000Z" - }, - "end": { - "$date": "2022-04-02T16:04:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "9a0f522f-d223-4c81-b47f-a736e36ff482", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-02T16:20:11.000Z" - }, - "end": { - "$date": "2022-04-02T16:34:27.000Z" - }, - "events": [ - { - "uuid": "60678aec-2471-4fe9-823d-b9b0bd4c462d", - "start": { - "$date": "2022-04-02T16:20:11.000Z" - }, - "end": { - "$date": "2022-04-02T16:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fa11b798-2191-450b-a666-e4da3c6d6469", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-02T16:35:07.000Z" - }, - "end": { - "$date": "2022-04-02T18:32:16.000Z" - }, - "events": [ - { - "uuid": "9a486bf8-5503-4adb-9998-390e6913478e", - "start": { - "$date": "2022-04-02T16:35:07.000Z" - }, - "end": { - "$date": "2022-04-02T18:32:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "d0632ab1-6f7e-4cbb-a7fd-a792c225c5d7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-02T18:35:21.000Z" - }, - "end": { - "$date": "2022-04-02T18:51:42.000Z" - }, - "events": [ - { - "uuid": "8ea53603-fbeb-4f02-abd9-95f57689b14d", - "start": { - "$date": "2022-04-02T18:35:21.000Z" - }, - "end": { - "$date": "2022-04-02T18:51:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "66c09b2e-9a55-4770-a66e-fbf9873461d6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-02T19:23:27.000Z" - }, - "end": { - "$date": "2022-04-02T19:38:23.000Z" - }, - "events": [ - { - "uuid": "701fb75f-d3ef-48d4-be83-aa574b880ca4", - "start": { - "$date": "2022-04-02T19:23:27.000Z" - }, - "end": { - "$date": "2022-04-02T19:38:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "0798194d-5537-4050-bfff-d02e819d3cef", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-02T20:35:35.000Z" - }, - "end": { - "$date": "2022-04-02T22:03:33.000Z" - }, - "events": [ - { - "uuid": "ffd13432-e961-4d53-b732-5beac34f638d", - "start": { - "$date": "2022-04-02T20:35:35.000Z" - }, - "end": { - "$date": "2022-04-02T22:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f0dec9b8-d945-49a9-accb-0f69e07b3251", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-02T20:40:51.000Z" - }, - "end": { - "$date": "2022-04-02T21:49:39.000Z" - }, - "events": [ - { - "uuid": "71ae35a3-4a54-4bcb-a8e5-39b748e2b006", - "start": { - "$date": "2022-04-02T20:40:51.000Z" - }, - "end": { - "$date": "2022-04-02T21:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3e4da1b8-eda5-4237-b56b-e8dc4ff8103f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-02T21:48:38.000Z" - }, - "end": { - "$date": "2022-04-02T23:56:59.000Z" - }, - "events": [ - { - "uuid": "46f2732c-b848-4d04-a3c1-4cc5ad77dd40", - "start": { - "$date": "2022-04-02T21:48:38.000Z" - }, - "end": { - "$date": "2022-04-02T23:56:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "42d2965f-8d47-47d2-85fb-299c5c437b8a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-02T21:49:16.000Z" - }, - "end": { - "$date": "2022-04-02T22:29:50.000Z" - }, - "events": [ - { - "uuid": "335a6c51-7a36-40d2-89cb-ca9387135b00", - "start": { - "$date": "2022-04-02T21:49:16.000Z" - }, - "end": { - "$date": "2022-04-02T22:29:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d313cd4f-c1a3-46f7-8250-a3d4ce93c385", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-02T21:49:47.000Z" - }, - "end": { - "$date": "2022-04-02T23:56:42.000Z" - }, - "events": [ - { - "uuid": "df078a63-a44a-42e6-9727-b36148a99dec", - "start": { - "$date": "2022-04-02T21:49:47.000Z" - }, - "end": { - "$date": "2022-04-02T23:56:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "495b2996-8b1f-4dc4-91b1-d53ad780aec1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-02T22:06:28.000Z" - }, - "end": { - "$date": "2022-04-02T22:31:02.000Z" - }, - "events": [ - { - "uuid": "8c4afbf8-de14-4227-b486-ada4a7acfddf", - "start": { - "$date": "2022-04-02T22:06:28.000Z" - }, - "end": { - "$date": "2022-04-02T22:31:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "eba67143-376a-48ee-baf1-65b61f7e3d93", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-02T22:08:28.000Z" - }, - "end": { - "$date": "2022-04-03T00:12:31.000Z" - }, - "events": [ - { - "uuid": "355da9c6-a5cf-44cc-a9a0-efb568bc632b", - "start": { - "$date": "2022-04-02T22:08:28.000Z" - }, - "end": { - "$date": "2022-04-03T00:10:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "167ffdbe-8d81-4a23-b72c-487619d62bbe", - "start": { - "$date": "2022-04-03T00:10:28.000Z" - }, - "end": { - "$date": "2022-04-03T00:12:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0dee057f-897d-4a52-87fd-106f7c3c85e5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-02T22:10:30.000Z" - }, - "end": { - "$date": "2022-04-02T23:53:29.000Z" - }, - "events": [ - { - "uuid": "1d6103a4-feae-4b34-a8ca-0d957fbf8e13", - "start": { - "$date": "2022-04-02T22:10:30.000Z" - }, - "end": { - "$date": "2022-04-02T23:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "721c569c-ed7b-41f0-b01a-ae31bd98c975", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-02T23:13:13.000Z" - }, - "end": { - "$date": "2022-04-02T23:13:58.000Z" - }, - "events": [ - { - "uuid": "f0b21ed6-be29-49a3-b62c-a383f7d21cbb", - "start": { - "$date": "2022-04-02T23:13:13.000Z" - }, - "end": { - "$date": "2022-04-02T23:13:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "7df4610e-73c4-462e-8cbb-ed7f431fec0a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-02T22:31:33.000Z" - }, - "end": { - "$date": "2022-04-03T01:02:26.000Z" - }, - "events": [ - { - "uuid": "ac104bdd-0d05-4109-aa18-837f9d01b5eb", - "start": { - "$date": "2022-04-02T22:31:33.000Z" - }, - "end": { - "$date": "2022-04-02T23:32:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "831a4434-657f-4683-bdfa-ba2e1bc252f0", - "start": { - "$date": "2022-04-02T23:32:33.000Z" - }, - "end": { - "$date": "2022-04-02T23:59:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "65c43d76-74a1-4c33-834f-c05243d8c412", - "start": { - "$date": "2022-04-02T23:59:33.000Z" - }, - "end": { - "$date": "2022-04-03T01:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b2b27881-6650-4831-8984-f466f393761a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-02T22:32:06.000Z" - }, - "end": { - "$date": "2022-04-02T23:56:49.000Z" - }, - "events": [ - { - "uuid": "d267413c-fa62-481f-bb12-735f9c6c3876", - "start": { - "$date": "2022-04-02T22:32:06.000Z" - }, - "end": { - "$date": "2022-04-02T23:56:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "b9f24a43-0f08-4ffa-a6b1-57a211b09f3f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-03T00:54:52.000Z" - }, - "end": { - "$date": "2022-04-03T00:55:12.000Z" - }, - "events": [ - { - "uuid": "3cf4726a-6cf8-4d4c-8acc-2fa64bd7b477", - "start": { - "$date": "2022-04-03T00:54:52.000Z" - }, - "end": { - "$date": "2022-04-03T02:07:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a42c457-efb4-4b0b-8f95-e601e5d44285", - "start": { - "$date": "2022-04-03T02:07:52.000Z" - }, - "end": { - "$date": "2022-04-03T02:29:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c7805ed9-4d60-405f-adb6-e5164384b517", - "start": { - "$date": "2022-04-03T02:29:52.000Z" - }, - "end": { - "$date": "2022-04-03T00:55:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "9192f86a-9c29-4b13-8cd0-bc467169b4cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-02T22:17:35.000Z" - }, - "end": { - "$date": "2022-04-03T00:48:05.000Z" - }, - "events": [ - { - "uuid": "99b9c268-0cb2-48f8-a4b2-82174d1982b9", - "start": { - "$date": "2022-04-02T22:17:35.000Z" - }, - "end": { - "$date": "2022-04-03T00:48:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "79f08108-8022-4a11-aaf1-5edcaecb9a95", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-02T23:56:59.000Z" - }, - "end": { - "$date": "2022-04-03T02:12:58.000Z" - }, - "events": [ - { - "uuid": "f1e7cfd5-dba3-4b96-85f0-188d8f771bbf", - "start": { - "$date": "2022-04-02T23:56:59.000Z" - }, - "end": { - "$date": "2022-04-03T02:12:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "076569eb-fe13-44ba-bc44-3708ee5f0ecd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-03T00:50:05.000Z" - }, - "end": { - "$date": "2022-04-03T00:54:30.000Z" - }, - "events": [ - { - "uuid": "f2afd4fc-2fc6-49ce-94ff-9ba06f12b394", - "start": { - "$date": "2022-04-03T00:50:05.000Z" - }, - "end": { - "$date": "2022-04-03T00:54:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "9c77339f-b22c-46d7-a2b2-c4a9469df7fa", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-03T00:55:15.000Z" - }, - "end": { - "$date": "2022-04-03T02:16:44.000Z" - }, - "events": [ - { - "uuid": "b93f5917-ea98-43fc-9867-0d0adce181ca", - "start": { - "$date": "2022-04-03T00:55:15.000Z" - }, - "end": { - "$date": "2022-04-03T02:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "c96475c2-ce4c-4cb3-9462-d143002aa0cb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-03T01:27:57.000Z" - }, - "end": { - "$date": "2022-04-03T01:28:08.000Z" - }, - "events": [ - { - "uuid": "5e0be521-2974-4b8d-9aa3-f2ab344cdd09", - "start": { - "$date": "2022-04-03T01:27:57.000Z" - }, - "end": { - "$date": "2022-04-03T01:28:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "f93bd6af-4be1-4237-a1ee-c1d8303fa58e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-03T01:15:00.000Z" - }, - "end": { - "$date": "2022-04-03T02:45:18.000Z" - }, - "events": [ - { - "uuid": "7f7730a4-afab-4634-8347-1789bc606eb6", - "start": { - "$date": "2022-04-03T01:15:00.000Z" - }, - "end": { - "$date": "2022-04-03T02:45:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "146699f3-1ce0-4404-8c7a-877349d7e269", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T02:14:35.000Z" - }, - "end": { - "$date": "2022-04-03T02:37:23.000Z" - }, - "events": [ - { - "uuid": "c3c30dda-cc64-4778-bcb9-e2003d464a72", - "start": { - "$date": "2022-04-03T02:14:35.000Z" - }, - "end": { - "$date": "2022-04-03T02:37:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1e5eb751-b1c8-4459-9410-ffd4e4994637", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-03T02:17:34.000Z" - }, - "end": { - "$date": "2022-04-03T05:41:49.000Z" - }, - "events": [ - { - "uuid": "9e9c2c01-baa9-42cc-af98-f68bd11834f8", - "start": { - "$date": "2022-04-03T02:17:34.000Z" - }, - "end": { - "$date": "2022-04-03T05:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff359ed4-f045-4c67-9b44-9112fac83443", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-03T02:26:00.000Z" - }, - "end": { - "$date": "2022-04-03T07:42:07.000Z" - }, - "events": [ - { - "uuid": "e7a32c6e-b64e-49b5-b102-45e1fa8cb04f", - "start": { - "$date": "2022-04-03T02:26:00.000Z" - }, - "end": { - "$date": "2022-04-03T07:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "786d4efa-b2b5-4d51-b3b7-721c702f615d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T02:40:08.000Z" - }, - "end": { - "$date": "2022-04-03T03:10:41.000Z" - }, - "events": [ - { - "uuid": "f430424e-c763-4d0f-9699-2827ff348172", - "start": { - "$date": "2022-04-03T02:40:08.000Z" - }, - "end": { - "$date": "2022-04-03T03:10:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4214dc2a-b7bf-4a2c-a692-046ee89c6462", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T03:13:31.000Z" - }, - "end": { - "$date": "2022-04-03T03:29:33.000Z" - }, - "events": [ - { - "uuid": "af206975-2553-45a0-86ab-f38c7b9a5713", - "start": { - "$date": "2022-04-03T03:13:31.000Z" - }, - "end": { - "$date": "2022-04-03T03:29:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ea304a6-e41b-496b-a654-7ab9c43f1b95", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T03:32:08.000Z" - }, - "end": { - "$date": "2022-04-03T03:46:09.000Z" - }, - "events": [ - { - "uuid": "80854a7a-b3f6-4a67-bc0d-3e116ec4583d", - "start": { - "$date": "2022-04-03T03:32:08.000Z" - }, - "end": { - "$date": "2022-04-03T03:46:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "650cd0a1-16a2-4bb4-88a3-f41d872a57c2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T03:48:49.000Z" - }, - "end": { - "$date": "2022-04-03T04:07:53.000Z" - }, - "events": [ - { - "uuid": "4be1bb39-e66e-4162-a650-2409217aac3c", - "start": { - "$date": "2022-04-03T03:48:49.000Z" - }, - "end": { - "$date": "2022-04-03T04:07:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9c637d57-96f4-4ff7-9a4e-cd7a33c4576f", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T04:05:19.000Z" - }, - "end": { - "$date": "2022-04-03T04:34:50.000Z" - }, - "events": [ - { - "uuid": "c430d6f9-653f-4444-a8c9-4141181b371a", - "start": { - "$date": "2022-04-03T04:05:19.000Z" - }, - "end": { - "$date": "2022-04-03T04:34:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "17432c55-26d3-44a0-8e35-bb62f5cf2738", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T04:17:37.000Z" - }, - "end": { - "$date": "2022-04-03T04:25:29.000Z" - }, - "events": [ - { - "uuid": "b75ad7c1-3a3a-4cf3-b1fd-3752b5d41888", - "start": { - "$date": "2022-04-03T04:17:37.000Z" - }, - "end": { - "$date": "2022-04-03T04:25:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05b5555b-cddf-4095-bd34-4559ea5369fc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T04:31:00.000Z" - }, - "end": { - "$date": "2022-04-03T05:00:43.000Z" - }, - "events": [ - { - "uuid": "4f9b9536-b328-47ca-8c1e-af5876f082b8", - "start": { - "$date": "2022-04-03T04:31:00.000Z" - }, - "end": { - "$date": "2022-04-03T05:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d562e752-a1c3-4e7f-abcd-e6977cec200a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T04:40:15.000Z" - }, - "end": { - "$date": "2022-04-03T05:13:41.000Z" - }, - "events": [ - { - "uuid": "9c20f3fd-13ec-4cd7-bab0-6a73c9870fe3", - "start": { - "$date": "2022-04-03T04:40:15.000Z" - }, - "end": { - "$date": "2022-04-03T05:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "20807f98-15ca-4808-8f8e-ff490f9df4d7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T05:02:54.000Z" - }, - "end": { - "$date": "2022-04-03T05:34:36.000Z" - }, - "events": [ - { - "uuid": "00510158-d236-4053-983d-d39c9d7c9ee4", - "start": { - "$date": "2022-04-03T05:02:54.000Z" - }, - "end": { - "$date": "2022-04-03T05:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fee8b1b8-875f-4e9e-8ecb-416bb93ce346", - "uuid": "212975c0-bde8-47c2-8b63-326b94ffcf6b", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-04-03T05:04:49.000Z" - }, - "end": { - "$date": "2022-04-03T07:12:49.000Z" - }, - "events": [ - { - "uuid": "e2dc023d-125e-49df-b870-0f6a56afbf25", - "start": { - "$date": "2022-04-03T05:04:49.000Z" - }, - "end": { - "$date": "2022-04-03T07:12:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d7f47b7-e39e-44de-87ae-a9959d07faf6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T06:31:18.000Z" - }, - "end": { - "$date": "2022-04-03T06:32:38.000Z" - }, - "events": [ - { - "uuid": "6ddaf2f5-702f-431c-8f35-4c6159c3aa86", - "start": { - "$date": "2022-04-03T06:31:18.000Z" - }, - "end": { - "$date": "2022-04-03T06:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b421ec4-1e54-4000-b63a-9f588701d170", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T05:36:26.000Z" - }, - "end": { - "$date": "2022-04-03T06:07:58.000Z" - }, - "events": [ - { - "uuid": "de7dbf3e-9342-48f3-8d8a-2cd6614d1aa0", - "start": { - "$date": "2022-04-03T05:36:26.000Z" - }, - "end": { - "$date": "2022-04-03T06:07:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0eba017a-bb5f-48b6-9d18-1c6d4af63510", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-03T05:35:52.000Z" - }, - "end": { - "$date": "2022-04-03T07:42:24.000Z" - }, - "events": [ - { - "uuid": "2c0fa63c-ca15-4c4e-8752-194568f511e6", - "start": { - "$date": "2022-04-03T05:35:52.000Z" - }, - "end": { - "$date": "2022-04-03T05:57:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c45b8803-5ac7-4663-b932-fdc874b44332", - "start": { - "$date": "2022-04-03T05:57:52.000Z" - }, - "end": { - "$date": "2022-04-03T06:02:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b7e4344-1ee8-4aeb-8a69-d4b3039d3b95", - "start": { - "$date": "2022-04-03T06:02:52.000Z" - }, - "end": { - "$date": "2022-04-03T07:42:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6dc3238f-0621-4ee4-938a-4ab2f29c09ba", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-03T05:41:54.000Z" - }, - "end": { - "$date": "2022-04-03T07:20:23.000Z" - }, - "events": [ - { - "uuid": "5f5737f8-5c3f-4e07-a6d7-118eb21c0486", - "start": { - "$date": "2022-04-03T05:41:54.000Z" - }, - "end": { - "$date": "2022-04-03T07:20:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5036e4b-d4c8-4187-af3c-21a7ae9f81f4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T06:09:48.000Z" - }, - "end": { - "$date": "2022-04-03T06:47:41.000Z" - }, - "events": [ - { - "uuid": "11695b20-e10f-4601-88de-e25248528e02", - "start": { - "$date": "2022-04-03T06:09:48.000Z" - }, - "end": { - "$date": "2022-04-03T06:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "960e7d41-9024-4f3c-8d1e-e35cdad3289e", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T07:49:53.000Z" - }, - "end": { - "$date": "2022-04-03T07:53:16.000Z" - }, - "events": [ - { - "uuid": "b664ea85-6d63-44bd-8a1b-f5a99c26b0d8", - "start": { - "$date": "2022-04-03T07:49:53.000Z" - }, - "end": { - "$date": "2022-04-03T07:53:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "574b5566-48f6-471e-9721-79a662b26052", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T06:49:15.000Z" - }, - "end": { - "$date": "2022-04-03T07:19:54.000Z" - }, - "events": [ - { - "uuid": "7a863717-ed10-4486-a8d8-aa55f59a1d48", - "start": { - "$date": "2022-04-03T06:49:15.000Z" - }, - "end": { - "$date": "2022-04-03T07:19:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98916197-56ab-4885-9cb7-a8f7180cc388", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T07:21:45.000Z" - }, - "end": { - "$date": "2022-04-03T07:49:18.000Z" - }, - "events": [ - { - "uuid": "82e35c82-f4d4-4dd6-9dfb-8e2fed71bc8a", - "start": { - "$date": "2022-04-03T07:21:45.000Z" - }, - "end": { - "$date": "2022-04-03T07:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5cf8f23-99dd-41c2-b4df-e2c0f1fa2dda", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-03T07:50:02.000Z" - }, - "end": { - "$date": "2022-04-03T08:27:47.000Z" - }, - "events": [ - { - "uuid": "44bafa90-7da5-40e9-8003-faa32f422096", - "start": { - "$date": "2022-04-03T07:50:02.000Z" - }, - "end": { - "$date": "2022-04-03T08:27:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "57515faf-416b-4399-b73b-5c0502a7a2f9", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T07:49:53.000Z" - }, - "end": { - "$date": "2022-04-03T07:59:50.000Z" - }, - "events": [ - { - "uuid": "99f5012c-bd3c-45ad-a4db-479e0e43b577", - "start": { - "$date": "2022-04-03T07:49:53.000Z" - }, - "end": { - "$date": "2022-04-03T07:59:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b731addc-b4e0-4885-8456-2b123f378b81", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T07:49:53.000Z" - }, - "end": { - "$date": "2022-04-03T08:38:01.000Z" - }, - "events": [ - { - "uuid": "c01f4416-a89f-4819-87b2-cecc3d6360c2", - "start": { - "$date": "2022-04-03T07:49:53.000Z" - }, - "end": { - "$date": "2022-04-03T08:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "74c1395a-afc1-496b-a990-7c259131e9d2", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-03T08:40:13.000Z" - }, - "end": { - "$date": "2022-04-03T09:07:43.000Z" - }, - "events": [ - { - "uuid": "bd8e539a-5b53-4a5f-9fb1-0bb95099d743", - "start": { - "$date": "2022-04-03T08:40:13.000Z" - }, - "end": { - "$date": "2022-04-03T09:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c377a848-21aa-422f-9714-ba614b8493a2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-03T13:56:55.000Z" - }, - "end": { - "$date": "2022-04-03T16:01:44.000Z" - }, - "events": [ - { - "uuid": "2a866d13-e841-40a7-8eb5-261b00f5981f", - "start": { - "$date": "2022-04-03T13:56:55.000Z" - }, - "end": { - "$date": "2022-04-03T16:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9780ffef-8cb6-49ee-88c5-2f571a4042b6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-03T16:57:02.000Z" - }, - "end": { - "$date": "2022-04-03T18:47:54.000Z" - }, - "events": [ - { - "uuid": "333772cf-dccb-43a3-af9e-7c1558382f35", - "start": { - "$date": "2022-04-03T16:57:02.000Z" - }, - "end": { - "$date": "2022-04-03T18:47:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c8f5933b-1897-4307-a6be-175a93408247", - "uuid": "254603f8-a8dd-4b0e-af3c-6ac93adbc8b5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-03T18:14:31.000Z" - }, - "end": { - "$date": "2022-04-03T18:38:12.000Z" - }, - "events": [ - { - "uuid": "1642387b-3957-4738-afc0-bdf4d6d88450", - "start": { - "$date": "2022-04-03T18:14:31.000Z" - }, - "end": { - "$date": "2022-04-03T18:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "826872fa-ff9f-4231-9e52-50304d444715", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-03T18:45:03.000Z" - }, - "end": { - "$date": "2022-04-03T18:56:48.000Z" - }, - "events": [ - { - "uuid": "3b4d5e81-9107-4b99-946e-d8b649b6a18a", - "start": { - "$date": "2022-04-03T18:45:03.000Z" - }, - "end": { - "$date": "2022-04-03T18:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "188e8e3a-6edb-45d7-952c-4ca1b8a2f18f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-03T19:00:31.000Z" - }, - "end": { - "$date": "2022-04-03T19:03:16.000Z" - }, - "events": [ - { - "uuid": "5b1826f1-cbed-4938-941a-75d7b7bcf0c0", - "start": { - "$date": "2022-04-03T19:00:31.000Z" - }, - "end": { - "$date": "2022-04-03T19:03:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9ab5f9a0-089f-4b27-a019-0395bd3bc3cf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-03T19:12:12.000Z" - }, - "end": { - "$date": "2022-04-03T19:30:38.000Z" - }, - "events": [ - { - "uuid": "2d499642-ff8e-4ae8-a764-2abb29b2a72a", - "start": { - "$date": "2022-04-03T19:12:12.000Z" - }, - "end": { - "$date": "2022-04-03T19:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6d25e952-7ae0-49ee-8cf8-8e6397a619d9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-03T20:35:18.000Z" - }, - "end": { - "$date": "2022-04-03T21:22:56.000Z" - }, - "events": [ - { - "uuid": "c4b17e7c-4f7a-40a4-ac25-03abf26b22f9", - "start": { - "$date": "2022-04-03T20:35:18.000Z" - }, - "end": { - "$date": "2022-04-03T21:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "07250634-828b-469b-bde2-f9a2294f8285", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-03T22:25:13.000Z" - }, - "end": { - "$date": "2022-04-03T23:26:16.000Z" - }, - "events": [ - { - "uuid": "45d109ef-4760-427b-a669-37fff3d2ee93", - "start": { - "$date": "2022-04-03T22:25:13.000Z" - }, - "end": { - "$date": "2022-04-03T23:26:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "2f2da198-c725-4e3b-93c8-1f8b99c213aa", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-04T01:13:03.000Z" - }, - "end": { - "$date": "2022-04-04T01:56:30.000Z" - }, - "events": [ - { - "uuid": "ec82b3b7-8dd2-4ba9-9d01-923e565548ac", - "start": { - "$date": "2022-04-04T01:13:03.000Z" - }, - "end": { - "$date": "2022-04-04T01:56:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "f9b37c3a-7391-4379-9688-10f70f015b74", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-04T01:18:40.000Z" - }, - "end": { - "$date": "2022-04-04T02:17:27.000Z" - }, - "events": [ - { - "uuid": "033f2c4c-4178-485d-9ed3-72d1ff9fd26c", - "start": { - "$date": "2022-04-04T01:18:40.000Z" - }, - "end": { - "$date": "2022-04-04T02:17:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "91da69f2-ea1e-4a3e-82bb-1fc7b5961bcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-04T01:54:18.000Z" - }, - "end": { - "$date": "2022-04-04T02:59:21.000Z" - }, - "events": [ - { - "uuid": "50b0c050-492e-4f86-9bfb-e43c58283b28", - "start": { - "$date": "2022-04-04T01:54:18.000Z" - }, - "end": { - "$date": "2022-04-04T02:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "9cd791c4-2b52-43b9-8173-8b829e7442bc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-04T02:18:07.000Z" - }, - "end": { - "$date": "2022-04-04T03:09:39.000Z" - }, - "events": [ - { - "uuid": "e1dff01e-a2e8-4acb-a4af-75a0e05d73fc", - "start": { - "$date": "2022-04-04T02:18:07.000Z" - }, - "end": { - "$date": "2022-04-04T03:09:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "b6d87ff5-2cc5-4715-ae11-1bdc8af9001c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-04T03:32:31.000Z" - }, - "end": { - "$date": "2022-04-04T03:32:50.000Z" - }, - "events": [ - { - "uuid": "02be81d8-be29-42e2-83b0-3503a9863fb1", - "start": { - "$date": "2022-04-04T03:32:31.000Z" - }, - "end": { - "$date": "2022-04-04T03:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "909d9218-1b54-4141-9df7-26ad36a8fb0e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-04T03:08:06.000Z" - }, - "end": { - "$date": "2022-04-04T03:16:07.000Z" - }, - "events": [ - { - "uuid": "20db57a2-57fd-41f8-90ac-fb751b8b0da4", - "start": { - "$date": "2022-04-04T03:08:06.000Z" - }, - "end": { - "$date": "2022-04-04T03:16:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c303d162-44d5-43e1-87e3-dbb60e23cf2f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-04T03:11:50.000Z" - }, - "end": { - "$date": "2022-04-04T03:23:07.000Z" - }, - "events": [ - { - "uuid": "adb4f49a-e2f2-4ffa-a922-96e7a6438ce5", - "start": { - "$date": "2022-04-04T03:11:50.000Z" - }, - "end": { - "$date": "2022-04-04T03:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3559ab6d-68fd-4942-8f65-4ffd8e486542", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-04T03:23:12.000Z" - }, - "end": { - "$date": "2022-04-04T03:47:45.000Z" - }, - "events": [ - { - "uuid": "cd5d69ec-5e64-4b9f-973c-bb53fe9b6f33", - "start": { - "$date": "2022-04-04T03:23:12.000Z" - }, - "end": { - "$date": "2022-04-04T03:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "25593548-6f17-4690-bdb0-4886d00f6295", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-04T03:51:37.000Z" - }, - "end": { - "$date": "2022-04-04T04:28:25.000Z" - }, - "events": [ - { - "uuid": "24734bed-6c84-48af-8317-20037746ca76", - "start": { - "$date": "2022-04-04T03:51:37.000Z" - }, - "end": { - "$date": "2022-04-04T04:28:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "f954e72e-d753-45b5-b1e2-83c44d7179f6", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-04T04:54:59.000Z" - }, - "end": { - "$date": "2022-04-04T04:55:58.000Z" - }, - "events": [ - { - "uuid": "dbd34ff6-500f-4510-882e-373a98d63bba", - "start": { - "$date": "2022-04-04T04:54:59.000Z" - }, - "end": { - "$date": "2022-04-04T04:55:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4afcd80f-799a-49d2-9cba-fac61a86d4a3", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-04T05:13:56.000Z" - }, - "end": { - "$date": "2022-04-04T05:44:36.000Z" - }, - "events": [ - { - "uuid": "ca8dee2b-4989-41ff-bcc5-f10c652a9989", - "start": { - "$date": "2022-04-04T05:13:56.000Z" - }, - "end": { - "$date": "2022-04-04T05:44:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2a79f20b-362e-4f02-ab11-9b09eac9ce05", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-04T05:24:19.000Z" - }, - "end": { - "$date": "2022-04-04T07:13:41.000Z" - }, - "events": [ - { - "uuid": "22051c7b-d5e3-4fb4-afe9-ab95a38a4d0f", - "start": { - "$date": "2022-04-04T05:24:19.000Z" - }, - "end": { - "$date": "2022-04-04T07:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a73950a0-107f-400f-9bc0-8dbba62e1d26", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-04T05:51:47.000Z" - }, - "end": { - "$date": "2022-04-04T06:17:08.000Z" - }, - "events": [ - { - "uuid": "79eb816e-9262-4508-8322-b37c6fb9f5a5", - "start": { - "$date": "2022-04-04T05:51:47.000Z" - }, - "end": { - "$date": "2022-04-04T06:17:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "3adb764d-dad4-43d0-a085-d4b58d0b6414", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-04T06:45:53.000Z" - }, - "end": { - "$date": "2022-04-04T07:03:24.000Z" - }, - "events": [ - { - "uuid": "fa52568a-8f17-4ffc-a70f-fe878fc58022", - "start": { - "$date": "2022-04-04T06:45:53.000Z" - }, - "end": { - "$date": "2022-04-04T07:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "606ab04d-a942-4f47-9ffb-6dd23fdee979", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-04T08:49:48.000Z" - }, - "end": { - "$date": "2022-04-04T10:08:39.000Z" - }, - "events": [ - { - "uuid": "b0b9d4dc-ed8c-43c6-a343-9eeb75cb9877", - "start": { - "$date": "2022-04-04T08:49:48.000Z" - }, - "end": { - "$date": "2022-04-04T10:08:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "b50d08ad-78d8-4f76-b2d8-e4e3697e1338", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-04T19:08:58.000Z" - }, - "end": { - "$date": "2022-04-04T22:39:33.000Z" - }, - "events": [ - { - "uuid": "523371b0-c6d6-4f01-b18d-cc708b8e201b", - "start": { - "$date": "2022-04-04T19:08:58.000Z" - }, - "end": { - "$date": "2022-04-04T22:39:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9bef4f95-f7d7-412e-a4e5-713871ee5fdf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-04T19:12:51.000Z" - }, - "end": { - "$date": "2022-04-04T19:49:35.000Z" - }, - "events": [ - { - "uuid": "a50d6230-7a97-471a-8e40-4ac78c9a6f79", - "start": { - "$date": "2022-04-04T19:12:51.000Z" - }, - "end": { - "$date": "2022-04-04T19:49:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "5132a97e-64f8-4bb1-b4bd-d66ff36e96db", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-04T22:47:14.000Z" - }, - "end": { - "$date": "2022-04-04T23:45:19.000Z" - }, - "events": [ - { - "uuid": "1ac14089-2a63-4aaf-982c-55d018ca1997", - "start": { - "$date": "2022-04-04T22:47:14.000Z" - }, - "end": { - "$date": "2022-04-04T23:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "564d42c0-4ceb-4a34-870d-3a9f51e2669f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-05T00:15:09.000Z" - }, - "end": { - "$date": "2022-04-05T00:40:38.000Z" - }, - "events": [ - { - "uuid": "7684bde1-fa2c-406b-ae9b-16dd488ea00b", - "start": { - "$date": "2022-04-05T00:15:09.000Z" - }, - "end": { - "$date": "2022-04-05T00:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "5bb8180f-bb81-4c14-b330-c61b68f73c37", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-05T00:30:35.000Z" - }, - "end": { - "$date": "2022-04-05T02:19:48.000Z" - }, - "events": [ - { - "uuid": "0af0c0aa-a772-45bc-991c-296492867d39", - "start": { - "$date": "2022-04-05T00:30:35.000Z" - }, - "end": { - "$date": "2022-04-05T02:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "13370e87-9a80-4ee2-ac5e-380022ff42af", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-04-05T00:31:29.000Z" - }, - "end": { - "$date": "2022-04-05T02:44:41.000Z" - }, - "events": [ - { - "uuid": "61c66c18-655f-4ea9-9b23-173a57e0bb46", - "start": { - "$date": "2022-04-05T00:31:29.000Z" - }, - "end": { - "$date": "2022-04-05T02:44:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a389f0d4-b6c2-4a2b-883f-8b341f17dec5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-05T03:17:52.000Z" - }, - "end": { - "$date": "2022-04-05T03:50:01.000Z" - }, - "events": [ - { - "uuid": "3c667434-fcbe-4fcc-b3dd-76164d67fe2a", - "start": { - "$date": "2022-04-05T03:17:52.000Z" - }, - "end": { - "$date": "2022-04-05T03:50:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e3ed3fde-8d5b-4f07-8117-969cd1590b8b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-05T02:54:36.000Z" - }, - "end": { - "$date": "2022-04-05T05:20:45.000Z" - }, - "events": [ - { - "uuid": "2f08e187-6eff-4562-b145-41fdb611af1a", - "start": { - "$date": "2022-04-05T02:54:36.000Z" - }, - "end": { - "$date": "2022-04-05T05:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc918b55-a030-4767-a35d-4bc7cd96cf57", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-05T03:19:08.000Z" - }, - "end": { - "$date": "2022-04-05T09:31:24.000Z" - }, - "events": [ - { - "uuid": "e9532ac8-f03d-4a3e-9da2-3243f0edd202", - "start": { - "$date": "2022-04-05T03:19:08.000Z" - }, - "end": { - "$date": "2022-04-05T03:44:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d758df1b-bfed-4e31-8017-d40276a58f57", - "start": { - "$date": "2022-04-05T03:44:08.000Z" - }, - "end": { - "$date": "2022-04-05T03:52:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce8fa20d-06ed-4cc7-9a0c-f959e212c1b5", - "start": { - "$date": "2022-04-05T03:52:08.000Z" - }, - "end": { - "$date": "2022-04-05T05:06:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0d6d66c-14ad-4e38-96f3-2ad3eead8257", - "start": { - "$date": "2022-04-05T05:06:08.000Z" - }, - "end": { - "$date": "2022-04-05T05:07:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c66f91ad-24c4-45a2-be16-05b722e0289c", - "start": { - "$date": "2022-04-05T05:07:08.000Z" - }, - "end": { - "$date": "2022-04-05T05:45:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c235fe0a-265f-4b72-bb2d-77aa43269785", - "start": { - "$date": "2022-04-05T05:45:08.000Z" - }, - "end": { - "$date": "2022-04-05T05:54:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "525aa21a-b058-4284-9dea-8c164f532323", - "start": { - "$date": "2022-04-05T05:54:08.000Z" - }, - "end": { - "$date": "2022-04-05T06:05:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e6726f40-58ca-4725-87c1-7ce9c2469776", - "start": { - "$date": "2022-04-05T06:05:08.000Z" - }, - "end": { - "$date": "2022-04-05T06:09:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "00775d4b-3c01-4334-b551-7f1d5428e19e", - "start": { - "$date": "2022-04-05T06:09:08.000Z" - }, - "end": { - "$date": "2022-04-05T06:20:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "828f9a09-e220-4d06-bcfe-beefaee97d06", - "start": { - "$date": "2022-04-05T06:20:08.000Z" - }, - "end": { - "$date": "2022-04-05T09:31:24.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5eccbd97-64b6-404b-8025-c96dbf58ab21", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-05T03:41:15.000Z" - }, - "end": { - "$date": "2022-04-05T04:11:53.000Z" - }, - "events": [ - { - "uuid": "b9676c9c-baba-410b-a206-bab27b044a8a", - "start": { - "$date": "2022-04-05T03:41:15.000Z" - }, - "end": { - "$date": "2022-04-05T04:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f5b4dd6f-6b62-4231-874d-a81b62f64ac1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-05T04:30:29.000Z" - }, - "end": { - "$date": "2022-04-05T04:30:38.000Z" - }, - "events": [ - { - "uuid": "5a4850b6-5a8d-48cb-ac0a-1b0496d8f5fe", - "start": { - "$date": "2022-04-05T04:30:29.000Z" - }, - "end": { - "$date": "2022-04-05T04:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "188e07cb-fb1d-4efa-b65f-dea2248fed65", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-05T04:37:40.000Z" - }, - "end": { - "$date": "2022-04-05T05:10:02.000Z" - }, - "events": [ - { - "uuid": "142efb15-f1cb-4ab9-ac85-1e6939476986", - "start": { - "$date": "2022-04-05T04:37:40.000Z" - }, - "end": { - "$date": "2022-04-05T05:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8f698e4-bbed-4521-971c-85e8ec6e035c", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-05T05:01:34.000Z" - }, - "end": { - "$date": "2022-04-05T05:14:22.000Z" - }, - "events": [ - { - "uuid": "ed4ebf28-a336-481c-9165-0be1312c0329", - "start": { - "$date": "2022-04-05T05:01:34.000Z" - }, - "end": { - "$date": "2022-04-05T05:14:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a05d399-9939-4c34-90a8-2f59b8ab05ba", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-05T05:17:14.000Z" - }, - "end": { - "$date": "2022-04-05T05:41:30.000Z" - }, - "events": [ - { - "uuid": "20fd889e-4614-458e-a21d-5b3a629054f8", - "start": { - "$date": "2022-04-05T05:17:14.000Z" - }, - "end": { - "$date": "2022-04-05T05:41:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6cad273f-688e-46ee-85da-d9924ccdab8e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-05T05:20:55.000Z" - }, - "end": { - "$date": "2022-04-05T06:27:47.000Z" - }, - "events": [ - { - "uuid": "db22f5c6-89ec-4eda-8657-76534c45ff64", - "start": { - "$date": "2022-04-05T05:20:55.000Z" - }, - "end": { - "$date": "2022-04-05T06:27:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7435e6ae-984e-4a88-afa6-1fae39f2b98f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-05T07:07:33.000Z" - }, - "end": { - "$date": "2022-04-05T07:39:23.000Z" - }, - "events": [ - { - "uuid": "bc8a25dc-e884-42d3-b0f9-3d21a57dee68", - "start": { - "$date": "2022-04-05T07:07:33.000Z" - }, - "end": { - "$date": "2022-04-05T07:39:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1221317-98c4-4032-ada5-d8bc3dd246e3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-05T07:39:49.000Z" - }, - "end": { - "$date": "2022-04-05T07:47:32.000Z" - }, - "events": [ - { - "uuid": "c0a344d3-674d-4fd3-948e-d489854e92f4", - "start": { - "$date": "2022-04-05T07:39:49.000Z" - }, - "end": { - "$date": "2022-04-05T07:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "588a3096-4787-4226-998e-28094537e67a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-05T09:03:40.000Z" - }, - "end": { - "$date": "2022-04-05T09:05:05.000Z" - }, - "events": [ - { - "uuid": "e6e3b12b-3039-4ce9-8c0c-a580c9baebc2", - "start": { - "$date": "2022-04-05T09:03:40.000Z" - }, - "end": { - "$date": "2022-04-05T09:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5eca0cd4-a7d3-4924-b2ce-eb617f137b7a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-05T12:10:37.000Z" - }, - "end": { - "$date": "2022-04-05T12:47:19.000Z" - }, - "events": [ - { - "uuid": "3933c5a5-5ccf-4e6b-9e17-4ddafc023552", - "start": { - "$date": "2022-04-05T12:10:37.000Z" - }, - "end": { - "$date": "2022-04-05T12:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "45fbc714-823b-4bbe-864c-5ec323d90d43", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-05T20:51:32.000Z" - }, - "end": { - "$date": "2022-04-05T21:49:06.000Z" - }, - "events": [ - { - "uuid": "a43bf24a-6d67-42ec-9968-86e73670a33e", - "start": { - "$date": "2022-04-05T20:51:32.000Z" - }, - "end": { - "$date": "2022-04-05T21:49:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "c989559b-f87f-4c16-984c-c9276736a770", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-06T05:58:36.000Z" - }, - "end": { - "$date": "2022-04-06T05:58:56.000Z" - }, - "events": [ - { - "uuid": "5fdc3325-f016-416d-b68d-e802931cb385", - "start": { - "$date": "2022-04-06T05:58:36.000Z" - }, - "end": { - "$date": "2022-04-06T07:19:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f452b99a-f77d-413b-82df-3a50faeffb71", - "start": { - "$date": "2022-04-06T07:19:36.000Z" - }, - "end": { - "$date": "2022-04-06T07:29:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d55f92b-87ba-474f-9bbb-c3253fc940e6", - "start": { - "$date": "2022-04-06T07:29:36.000Z" - }, - "end": { - "$date": "2022-04-06T07:38:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c1e33287-3496-497b-a2ef-b9355fe5426d", - "start": { - "$date": "2022-04-06T07:38:36.000Z" - }, - "end": { - "$date": "2022-04-06T10:06:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e6863797-0eaf-4f3d-a92d-bf0690e7c137", - "start": { - "$date": "2022-04-06T10:06:36.000Z" - }, - "end": { - "$date": "2022-04-06T10:09:36.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30437cb0-3a8d-45bd-82cb-b2a0c08a68b2", - "start": { - "$date": "2022-04-06T10:09:36.000Z" - }, - "end": { - "$date": "2022-04-06T10:24:36.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f327da81-2617-4dcd-bd16-8f30e02b421f", - "start": { - "$date": "2022-04-06T10:24:36.000Z" - }, - "end": { - "$date": "2022-04-06T05:58:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a8522af6-171e-4d7e-98ba-a3ea5f7795d4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-05T22:56:48.000Z" - }, - "end": { - "$date": "2022-04-06T01:01:06.000Z" - }, - "events": [ - { - "uuid": "5e953684-0726-4fc1-abae-d7d0221f57d8", - "start": { - "$date": "2022-04-05T22:56:48.000Z" - }, - "end": { - "$date": "2022-04-06T01:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "cf5704f4-fc45-424d-9578-98c0c512f59d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-05T23:18:00.000Z" - }, - "end": { - "$date": "2022-04-06T08:11:10.000Z" - }, - "events": [ - { - "uuid": "589f6cbf-8762-4314-9593-3c18803ed9b3", - "start": { - "$date": "2022-04-05T23:18:00.000Z" - }, - "end": { - "$date": "2022-04-06T08:11:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8da2cf74-f6ab-4064-ba8b-69ef32306d05", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-05T23:25:44.000Z" - }, - "end": { - "$date": "2022-04-05T23:58:34.000Z" - }, - "events": [ - { - "uuid": "84252709-adcc-4d93-877d-3dfd117f4a8d", - "start": { - "$date": "2022-04-05T23:25:44.000Z" - }, - "end": { - "$date": "2022-04-05T23:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "088bb13d-3b94-4ea3-8abb-e2d95a951720", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-06T00:01:02.000Z" - }, - "end": { - "$date": "2022-04-06T00:34:18.000Z" - }, - "events": [ - { - "uuid": "24fd5031-cf96-484b-82d0-9244e30ff408", - "start": { - "$date": "2022-04-06T00:01:02.000Z" - }, - "end": { - "$date": "2022-04-06T00:34:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ddd298e-3a33-42c6-a1fb-85b2c505a684", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-06T01:41:31.000Z" - }, - "end": { - "$date": "2022-04-06T02:29:41.000Z" - }, - "events": [ - { - "uuid": "e59982be-e162-4598-92a5-3c510c4b33ac", - "start": { - "$date": "2022-04-06T01:41:31.000Z" - }, - "end": { - "$date": "2022-04-06T02:29:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9438b74b-fb0b-4f46-b2a8-fd94f6c604f6", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-06T02:07:21.000Z" - }, - "end": { - "$date": "2022-04-06T02:33:52.000Z" - }, - "events": [ - { - "uuid": "a0a1e3d9-e51f-4a07-aa44-713aeea0a0ae", - "start": { - "$date": "2022-04-06T02:07:21.000Z" - }, - "end": { - "$date": "2022-04-06T02:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "67668dcc-4978-4e7c-8565-27a4007a521b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-06T02:27:08.000Z" - }, - "end": { - "$date": "2022-04-06T03:41:06.000Z" - }, - "events": [ - { - "uuid": "ea027a74-4418-4c07-898b-2a2b66ea5c6e", - "start": { - "$date": "2022-04-06T02:27:08.000Z" - }, - "end": { - "$date": "2022-04-06T03:41:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f353717a-1cac-4338-81a6-9b31580fa4de", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-06T02:42:33.000Z" - }, - "end": { - "$date": "2022-04-06T03:10:30.000Z" - }, - "events": [ - { - "uuid": "9a5e793e-5f2e-48e7-bb2a-d8e840380143", - "start": { - "$date": "2022-04-06T02:42:33.000Z" - }, - "end": { - "$date": "2022-04-06T03:10:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4eed8cb1-d094-4788-baf5-a0620c94ce01", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-06T03:16:05.000Z" - }, - "end": { - "$date": "2022-04-06T03:50:11.000Z" - }, - "events": [ - { - "uuid": "21eee7cf-64fb-44d2-82eb-160955d8e570", - "start": { - "$date": "2022-04-06T03:16:05.000Z" - }, - "end": { - "$date": "2022-04-06T03:50:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d6486dff-1ea2-4a48-b5f2-54527835aee3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-06T03:36:34.000Z" - }, - "end": { - "$date": "2022-04-06T05:29:35.000Z" - }, - "events": [ - { - "uuid": "0474d41b-dcf4-44c3-86d6-52f07511fa1a", - "start": { - "$date": "2022-04-06T03:36:34.000Z" - }, - "end": { - "$date": "2022-04-06T05:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "742038eb-0363-41be-857f-765bc16a4263", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-06T03:45:38.000Z" - }, - "end": { - "$date": "2022-04-06T05:36:46.000Z" - }, - "events": [ - { - "uuid": "d486a64b-15e2-4ad0-96be-0ef80c8a220a", - "start": { - "$date": "2022-04-06T03:45:38.000Z" - }, - "end": { - "$date": "2022-04-06T05:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f338ce4-9e22-4b16-819b-e57552d3e056", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-06T03:55:45.000Z" - }, - "end": { - "$date": "2022-04-06T04:19:59.000Z" - }, - "events": [ - { - "uuid": "4a24202e-7890-43f4-b1fd-c4c050ff7a09", - "start": { - "$date": "2022-04-06T03:55:45.000Z" - }, - "end": { - "$date": "2022-04-06T04:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2393a550-31ef-467c-a6bd-8ea14142a71d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-06T04:28:11.000Z" - }, - "end": { - "$date": "2022-04-06T05:53:14.000Z" - }, - "events": [ - { - "uuid": "43c1e93f-7471-499a-a52e-bc9ca195041a", - "start": { - "$date": "2022-04-06T04:28:11.000Z" - }, - "end": { - "$date": "2022-04-06T05:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cdf9c122-4e4a-436c-a4d4-5d770bc9989c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-06T04:50:06.000Z" - }, - "end": { - "$date": "2022-04-06T05:23:15.000Z" - }, - "events": [ - { - "uuid": "9e1bff3c-718f-4764-95c0-de8dc61c9d91", - "start": { - "$date": "2022-04-06T04:50:06.000Z" - }, - "end": { - "$date": "2022-04-06T05:23:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "49697d5b-ae1a-472b-939e-772dbc6d3b13", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-06T05:43:29.000Z" - }, - "end": { - "$date": "2022-04-06T05:58:31.000Z" - }, - "events": [ - { - "uuid": "4ea3c86c-a52d-4626-a2cf-77195f00d333", - "start": { - "$date": "2022-04-06T05:43:29.000Z" - }, - "end": { - "$date": "2022-04-06T05:58:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c0c3d09-3792-44dc-9da8-a1a9cd6e071e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-06T05:57:14.000Z" - }, - "end": { - "$date": "2022-04-06T06:20:49.000Z" - }, - "events": [ - { - "uuid": "d9e78c69-1a17-4cac-8438-1a1f5078245c", - "start": { - "$date": "2022-04-06T05:57:14.000Z" - }, - "end": { - "$date": "2022-04-06T06:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "e0e68dc8-3b82-4ff3-bb8d-22ba44ee14ff", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-06T08:44:39.000Z" - }, - "end": { - "$date": "2022-04-06T09:20:13.000Z" - }, - "events": [ - { - "uuid": "950bb21b-380a-4825-a1ae-419bb5c228c6", - "start": { - "$date": "2022-04-06T08:44:39.000Z" - }, - "end": { - "$date": "2022-04-06T09:20:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "dee7414e-c240-4093-96fb-5ceb53cd4d8a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-06T14:56:56.000Z" - }, - "end": { - "$date": "2022-04-06T15:02:34.000Z" - }, - "events": [ - { - "uuid": "73796be6-c43d-4609-a8f1-05b356785862", - "start": { - "$date": "2022-04-06T14:56:56.000Z" - }, - "end": { - "$date": "2022-04-06T15:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "683e376b-b92e-46e3-ab7f-1a8234099c2d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-06T18:57:45.000Z" - }, - "end": { - "$date": "2022-04-06T19:18:05.000Z" - }, - "events": [ - { - "uuid": "b2ed3f71-94e8-400f-93a2-ca1514376710", - "start": { - "$date": "2022-04-06T18:57:45.000Z" - }, - "end": { - "$date": "2022-04-06T19:18:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "730dcd07-9733-41ef-90e6-d002f863feb4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-06T17:36:58.000Z" - }, - "end": { - "$date": "2022-04-06T21:47:17.000Z" - }, - "events": [ - { - "uuid": "19f306b8-c5eb-4e8d-88ac-e76a651e9f98", - "start": { - "$date": "2022-04-06T17:36:58.000Z" - }, - "end": { - "$date": "2022-04-06T21:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "705cfa0a-af67-42b2-ab9d-82a30fd5ef20", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-06T19:57:19.000Z" - }, - "end": { - "$date": "2022-04-06T20:34:06.000Z" - }, - "events": [ - { - "uuid": "03b1564a-b05b-41d5-a96d-a1ffa13ed6ff", - "start": { - "$date": "2022-04-06T19:57:19.000Z" - }, - "end": { - "$date": "2022-04-06T20:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3bd23eff-4a4b-4918-8edc-624d6fca5b8b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-06T22:23:52.000Z" - }, - "end": { - "$date": "2022-04-06T23:00:53.000Z" - }, - "events": [ - { - "uuid": "b25fbf10-112a-413c-8edb-f2ae645e110d", - "start": { - "$date": "2022-04-06T22:23:52.000Z" - }, - "end": { - "$date": "2022-04-06T23:00:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a080dfd6-d0e5-4839-aed7-a1f89d400469", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-06T23:49:39.000Z" - }, - "end": { - "$date": "2022-04-07T00:12:05.000Z" - }, - "events": [ - { - "uuid": "7876f6ed-c1dc-4a41-b4ac-224cc1a3f16f", - "start": { - "$date": "2022-04-06T23:49:39.000Z" - }, - "end": { - "$date": "2022-04-07T00:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4e1da60e-8cef-4aff-a5e9-e2057d90e358", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-07T00:17:56.000Z" - }, - "end": { - "$date": "2022-04-07T00:58:52.000Z" - }, - "events": [ - { - "uuid": "c86d71a7-80f1-44d7-a8e2-85cdf9f9d3d3", - "start": { - "$date": "2022-04-07T00:17:56.000Z" - }, - "end": { - "$date": "2022-04-07T00:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "37c0ed3a-91cf-45ba-97d1-ce03d46afc83", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-07T00:32:54.000Z" - }, - "end": { - "$date": "2022-04-07T04:30:27.000Z" - }, - "events": [ - { - "uuid": "f07b1149-2cd1-4530-8793-95a45124b777", - "start": { - "$date": "2022-04-07T00:32:54.000Z" - }, - "end": { - "$date": "2022-04-07T04:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "5df32051-f7d6-4afb-90fb-40302db185be", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-07T01:17:09.000Z" - }, - "end": { - "$date": "2022-04-07T01:43:35.000Z" - }, - "events": [ - { - "uuid": "e5286287-b8fc-4702-a371-c68e6b9638af", - "start": { - "$date": "2022-04-07T01:17:09.000Z" - }, - "end": { - "$date": "2022-04-07T01:43:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "be039dd1-9794-4882-a91d-a9bddfa441e7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-07T03:27:00.000Z" - }, - "end": { - "$date": "2022-04-07T03:27:22.000Z" - }, - "events": [ - { - "uuid": "f5841d3e-ca29-414e-a619-26f63c46f1cc", - "start": { - "$date": "2022-04-07T03:27:00.000Z" - }, - "end": { - "$date": "2022-04-07T03:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "853b2d52-42f6-43d6-81c4-ff06ce37e879", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-07T01:44:01.000Z" - }, - "end": { - "$date": "2022-04-07T02:07:23.000Z" - }, - "events": [ - { - "uuid": "3386beea-2500-4f85-8b62-fbba09a7d97c", - "start": { - "$date": "2022-04-07T01:44:01.000Z" - }, - "end": { - "$date": "2022-04-07T02:07:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6421bbce-3d6c-4c66-9dba-82d3f9cd286f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-07T02:07:36.000Z" - }, - "end": { - "$date": "2022-04-07T04:00:13.000Z" - }, - "events": [ - { - "uuid": "2e19e5d1-6d5d-448f-9f47-00d9dba8de43", - "start": { - "$date": "2022-04-07T02:07:36.000Z" - }, - "end": { - "$date": "2022-04-07T04:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "c3b0ecb1-6ac9-4247-91ce-8080c1b862e6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-07T02:08:23.000Z" - }, - "end": { - "$date": "2022-04-07T03:13:45.000Z" - }, - "events": [ - { - "uuid": "96e017f0-3594-464c-8df3-4febcf246b80", - "start": { - "$date": "2022-04-07T02:08:23.000Z" - }, - "end": { - "$date": "2022-04-07T03:13:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "50f69bd6-61c7-44e0-9356-b52c431c16a6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-07T02:57:32.000Z" - }, - "end": { - "$date": "2022-04-07T03:01:18.000Z" - }, - "events": [ - { - "uuid": "d827bae9-3d3a-45ee-a352-0400054f6914", - "start": { - "$date": "2022-04-07T02:57:32.000Z" - }, - "end": { - "$date": "2022-04-07T03:01:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f936d571-e2f3-4591-b150-a98556075e61", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-07T03:14:21.000Z" - }, - "end": { - "$date": "2022-04-07T05:48:15.000Z" - }, - "events": [ - { - "uuid": "991c7490-dbcb-4fb6-9f3d-c10228f7f277", - "start": { - "$date": "2022-04-07T03:14:21.000Z" - }, - "end": { - "$date": "2022-04-07T05:48:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d26883f8-6265-4fa4-9e2d-f32e07777cfa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-07T03:30:22.000Z" - }, - "end": { - "$date": "2022-04-07T06:46:23.000Z" - }, - "events": [ - { - "uuid": "e408d5e7-7991-46ff-9078-e3579317b826", - "start": { - "$date": "2022-04-07T03:30:22.000Z" - }, - "end": { - "$date": "2022-04-07T06:46:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67a5b033-1120-420b-9a59-85d66b587ac5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T03:53:56.000Z" - }, - "end": { - "$date": "2022-04-07T04:19:59.000Z" - }, - "events": [ - { - "uuid": "4b325232-e7bd-494c-9a69-076a0e74c674", - "start": { - "$date": "2022-04-07T03:53:56.000Z" - }, - "end": { - "$date": "2022-04-07T04:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e285b195-60a9-473b-81b4-20a59a5a1fcb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T04:28:10.000Z" - }, - "end": { - "$date": "2022-04-07T05:00:49.000Z" - }, - "events": [ - { - "uuid": "f0dce967-26c7-47b7-914d-50c12b5c4dd7", - "start": { - "$date": "2022-04-07T04:28:10.000Z" - }, - "end": { - "$date": "2022-04-07T05:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "d0d248f4-7a3a-41dc-b1a1-e88a848da6b3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-07T04:38:53.000Z" - }, - "end": { - "$date": "2022-04-07T04:53:08.000Z" - }, - "events": [ - { - "uuid": "d16229bd-a68c-4d8f-a3c8-13c03d979caa", - "start": { - "$date": "2022-04-07T04:38:53.000Z" - }, - "end": { - "$date": "2022-04-07T04:53:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eff1acfa-8216-44bd-bce0-bff6a429e876", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-07T04:51:31.000Z" - }, - "end": { - "$date": "2022-04-07T05:22:27.000Z" - }, - "events": [ - { - "uuid": "852d06ca-4da5-49cd-ab5e-9aca0ea884e4", - "start": { - "$date": "2022-04-07T04:51:31.000Z" - }, - "end": { - "$date": "2022-04-07T05:22:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "e73231e3-2297-4c47-93d3-a3e6a1951ee4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-07T04:54:18.000Z" - }, - "end": { - "$date": "2022-04-07T05:33:58.000Z" - }, - "events": [ - { - "uuid": "773dc8e7-03c2-4bbc-a14b-89d9a35a4409", - "start": { - "$date": "2022-04-07T04:54:18.000Z" - }, - "end": { - "$date": "2022-04-07T05:33:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c340229a-2b22-4b71-ae41-2e37acf53166", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T05:02:48.000Z" - }, - "end": { - "$date": "2022-04-07T05:35:53.000Z" - }, - "events": [ - { - "uuid": "305ca81a-436c-4946-8b45-97c0dfe495ab", - "start": { - "$date": "2022-04-07T05:02:48.000Z" - }, - "end": { - "$date": "2022-04-07T05:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "9da88fec-06f4-46c2-8e04-28045a9bb62d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-07T05:31:34.000Z" - }, - "end": { - "$date": "2022-04-07T07:36:38.000Z" - }, - "events": [ - { - "uuid": "a344e6a6-b4b9-463f-ba07-163fce1b0304", - "start": { - "$date": "2022-04-07T05:31:34.000Z" - }, - "end": { - "$date": "2022-04-07T07:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8aa740ce-21d8-4f12-8433-1a9ef682e23d", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-07T05:34:17.000Z" - }, - "end": { - "$date": "2022-04-07T05:54:54.000Z" - }, - "events": [ - { - "uuid": "fc68cbb1-22dc-4416-9135-41d09d5921f7", - "start": { - "$date": "2022-04-07T05:34:17.000Z" - }, - "end": { - "$date": "2022-04-07T05:54:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "559b64ec-974b-4a1c-9c97-8dbab7a3ec80", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T05:39:31.000Z" - }, - "end": { - "$date": "2022-04-07T06:12:51.000Z" - }, - "events": [ - { - "uuid": "448441bf-3209-4b71-a005-c9a2a7578f82", - "start": { - "$date": "2022-04-07T05:39:31.000Z" - }, - "end": { - "$date": "2022-04-07T06:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5393946-f282-4816-b121-dd24a0bfc348", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-07T05:54:43.000Z" - }, - "end": { - "$date": "2022-04-07T06:19:40.000Z" - }, - "events": [ - { - "uuid": "c5b4921a-0008-4895-99f3-b48dfbda9cdf", - "start": { - "$date": "2022-04-07T05:54:43.000Z" - }, - "end": { - "$date": "2022-04-07T06:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c342141-9b93-464f-8172-61cffd47e01a", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-07T05:57:18.000Z" - }, - "end": { - "$date": "2022-04-07T06:29:35.000Z" - }, - "events": [ - { - "uuid": "abb5fa04-af3b-472b-b870-a0e532f8436c", - "start": { - "$date": "2022-04-07T05:57:18.000Z" - }, - "end": { - "$date": "2022-04-07T06:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24994b2a-2286-4a17-9b87-6e00d29e060f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T06:15:44.000Z" - }, - "end": { - "$date": "2022-04-07T06:16:57.000Z" - }, - "events": [ - { - "uuid": "fbc6396b-625d-4024-a38b-b24a484633c5", - "start": { - "$date": "2022-04-07T06:15:44.000Z" - }, - "end": { - "$date": "2022-04-07T06:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1df5fd97-d8e1-4af1-a52e-25907dc1f47a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T06:18:40.000Z" - }, - "end": { - "$date": "2022-04-07T06:48:43.000Z" - }, - "events": [ - { - "uuid": "3411841c-1ad2-41a3-88e6-0e50a93d53b6", - "start": { - "$date": "2022-04-07T06:18:40.000Z" - }, - "end": { - "$date": "2022-04-07T06:48:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "403b9a15-ba19-4547-92fb-d445496dc3f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-07T06:24:59.000Z" - }, - "end": { - "$date": "2022-04-07T07:15:42.000Z" - }, - "events": [ - { - "uuid": "81dd6525-3b25-4b57-b5a0-c73fd1e9baf6", - "start": { - "$date": "2022-04-07T06:24:59.000Z" - }, - "end": { - "$date": "2022-04-07T07:15:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0670bae5-14a2-4117-87b4-a7e4d1185bef", - "user": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "start": { - "$date": "2022-04-07T06:34:09.000Z" - }, - "end": { - "$date": "2022-04-07T06:55:01.000Z" - }, - "events": [ - { - "uuid": "8d4c8d0d-9ab4-4fb1-bd0f-ae9447b6e575", - "start": { - "$date": "2022-04-07T06:34:09.000Z" - }, - "end": { - "$date": "2022-04-07T06:55:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b5edbaca-7131-4c52-bd6a-4e8b74f6cf9b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-07T07:35:25.000Z" - }, - "end": { - "$date": "2022-04-07T07:49:21.000Z" - }, - "events": [ - { - "uuid": "da14a02a-ed1a-46a6-8fa3-ccb821f9086c", - "start": { - "$date": "2022-04-07T07:35:25.000Z" - }, - "end": { - "$date": "2022-04-07T07:45:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6beb3c25-8a8d-472b-b456-5e63a792148d", - "start": { - "$date": "2022-04-07T07:45:25.000Z" - }, - "end": { - "$date": "2022-04-07T07:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "944506ec-536e-42da-b7da-008438ad8c3d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-07T12:59:55.000Z" - }, - "end": { - "$date": "2022-04-07T13:13:58.000Z" - }, - "events": [ - { - "uuid": "0e36908c-fd52-446f-a3b3-d0c9d9362672", - "start": { - "$date": "2022-04-07T12:59:55.000Z" - }, - "end": { - "$date": "2022-04-07T13:13:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "c8e40835-579f-455c-8b6d-a30eac11b667", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-07T16:51:02.000Z" - }, - "end": { - "$date": "2022-04-08T04:26:39.000Z" - }, - "events": [ - { - "uuid": "1fa71a03-020e-47a9-a473-838dab9bea61", - "start": { - "$date": "2022-04-07T16:51:02.000Z" - }, - "end": { - "$date": "2022-04-08T04:26:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c688a564-3bab-43e4-a3da-07074d1d6447", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-08T00:06:01.000Z" - }, - "end": { - "$date": "2022-04-08T00:57:36.000Z" - }, - "events": [ - { - "uuid": "39ddc8e6-b324-4487-87e4-c77d23afecff", - "start": { - "$date": "2022-04-08T00:06:01.000Z" - }, - "end": { - "$date": "2022-04-08T00:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "825e8f05-0781-4f55-86c1-45a5b5feb2e3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-08T00:57:57.000Z" - }, - "end": { - "$date": "2022-04-08T03:40:42.000Z" - }, - "events": [ - { - "uuid": "8821dfd4-4f2f-42c2-a9fd-2f2bce1f687b", - "start": { - "$date": "2022-04-08T00:57:57.000Z" - }, - "end": { - "$date": "2022-04-08T03:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ea2381d3-5f4c-4656-80fb-e07fd19acef6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-08T01:15:00.000Z" - }, - "end": { - "$date": "2022-04-08T01:54:52.000Z" - }, - "events": [ - { - "uuid": "fe989035-8107-43df-853f-f776560150cf", - "start": { - "$date": "2022-04-08T01:15:00.000Z" - }, - "end": { - "$date": "2022-04-08T01:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a5e09928-7454-4909-8f77-470c108690d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-08T01:55:22.000Z" - }, - "end": { - "$date": "2022-04-08T01:56:45.000Z" - }, - "events": [ - { - "uuid": "5ab15eed-0433-4ae4-a96d-7159c414204e", - "start": { - "$date": "2022-04-08T01:55:22.000Z" - }, - "end": { - "$date": "2022-04-08T01:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "418aebc8-a0a9-4ff8-8513-a5737c6bbca5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-08T02:31:18.000Z" - }, - "end": { - "$date": "2022-04-08T03:02:37.000Z" - }, - "events": [ - { - "uuid": "3cff6de8-318c-4d8e-81a0-317e33739282", - "start": { - "$date": "2022-04-08T02:31:18.000Z" - }, - "end": { - "$date": "2022-04-08T03:02:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "25b6fe3a-97cd-43c6-a8bc-963213ba7f71", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-08T02:37:54.000Z" - }, - "end": { - "$date": "2022-04-08T04:40:06.000Z" - }, - "events": [ - { - "uuid": "6428d690-dde6-4d7d-86f8-a94171cc91c3", - "start": { - "$date": "2022-04-08T02:37:54.000Z" - }, - "end": { - "$date": "2022-04-08T04:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e11eb85d-d84b-4423-aba1-bbf9fcaf000e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T02:43:37.000Z" - }, - "end": { - "$date": "2022-04-08T03:05:19.000Z" - }, - "events": [ - { - "uuid": "cf21c299-a4af-4553-b481-06c57486b6ec", - "start": { - "$date": "2022-04-08T02:43:37.000Z" - }, - "end": { - "$date": "2022-04-08T03:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5067fa86-9572-4180-ad4d-d9f7b4479c5f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-08T03:00:57.000Z" - }, - "end": { - "$date": "2022-04-08T05:54:49.000Z" - }, - "events": [ - { - "uuid": "3daba608-cc5e-4d0c-8b96-55a708a5bcdf", - "start": { - "$date": "2022-04-08T03:00:57.000Z" - }, - "end": { - "$date": "2022-04-08T05:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a68ea29-3832-416b-953d-0a6e7eee0fb3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-08T03:03:47.000Z" - }, - "end": { - "$date": "2022-04-08T03:35:31.000Z" - }, - "events": [ - { - "uuid": "3d5d11d9-e4ed-4501-804c-6d7a9e011ac1", - "start": { - "$date": "2022-04-08T03:03:47.000Z" - }, - "end": { - "$date": "2022-04-08T03:35:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1702bf36-b590-41ce-9f62-cd48d3863e49", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T03:06:10.000Z" - }, - "end": { - "$date": "2022-04-08T03:43:14.000Z" - }, - "events": [ - { - "uuid": "81698503-9a68-4965-a10a-452470519c74", - "start": { - "$date": "2022-04-08T03:06:10.000Z" - }, - "end": { - "$date": "2022-04-08T03:43:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9326d7a6-cba9-476c-af29-cd01ddf12eca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-08T03:37:11.000Z" - }, - "end": { - "$date": "2022-04-08T04:13:29.000Z" - }, - "events": [ - { - "uuid": "7575c4a9-dbe7-4230-ba70-495c92383304", - "start": { - "$date": "2022-04-08T03:37:11.000Z" - }, - "end": { - "$date": "2022-04-08T04:13:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "58535ee6-a85d-4a08-afa9-0c24abc2afd4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T03:45:47.000Z" - }, - "end": { - "$date": "2022-04-08T04:13:23.000Z" - }, - "events": [ - { - "uuid": "d009ab42-055d-4694-b7b0-a2e7b1346669", - "start": { - "$date": "2022-04-08T03:45:47.000Z" - }, - "end": { - "$date": "2022-04-08T04:13:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "569f6680-1a6a-46c2-8848-c188a7d73641", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T04:29:07.000Z" - }, - "end": { - "$date": "2022-04-08T04:41:28.000Z" - }, - "events": [ - { - "uuid": "6b8e4034-666a-4597-b8b2-5e9b67046101", - "start": { - "$date": "2022-04-08T04:29:07.000Z" - }, - "end": { - "$date": "2022-04-08T04:41:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "03fd11cb-a2c7-48a8-acb2-34dd2ebb1bec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T04:42:55.000Z" - }, - "end": { - "$date": "2022-04-08T05:15:10.000Z" - }, - "events": [ - { - "uuid": "dac9a909-bd95-433d-bd20-4207dd480db2", - "start": { - "$date": "2022-04-08T04:42:55.000Z" - }, - "end": { - "$date": "2022-04-08T05:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "46bdcf84-92f9-4fce-ade6-04408d5056b7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T05:22:31.000Z" - }, - "end": { - "$date": "2022-04-08T05:44:20.000Z" - }, - "events": [ - { - "uuid": "f78f6733-ec63-4892-a361-aa45c7975dd7", - "start": { - "$date": "2022-04-08T05:22:31.000Z" - }, - "end": { - "$date": "2022-04-08T05:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e59fd391-daa8-4732-bc0d-02eff13b54ca", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T05:46:28.000Z" - }, - "end": { - "$date": "2022-04-08T06:05:59.000Z" - }, - "events": [ - { - "uuid": "003fc53c-7cd6-4f79-80b8-459b1347e01a", - "start": { - "$date": "2022-04-08T05:46:28.000Z" - }, - "end": { - "$date": "2022-04-08T06:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b79680dc-cb80-445c-8488-602fab466723", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T06:08:14.000Z" - }, - "end": { - "$date": "2022-04-08T06:43:03.000Z" - }, - "events": [ - { - "uuid": "016964f3-c3d0-4c3f-adaa-5c476c9e6fc7", - "start": { - "$date": "2022-04-08T06:08:14.000Z" - }, - "end": { - "$date": "2022-04-08T06:43:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "5bf7c26f-a0cd-4d55-9373-4549e684b244", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-08T07:12:55.000Z" - }, - "end": { - "$date": "2022-04-08T08:43:17.000Z" - }, - "events": [ - { - "uuid": "c929ee24-e94f-4b22-b4ea-8c4cd8225c29", - "start": { - "$date": "2022-04-08T07:12:55.000Z" - }, - "end": { - "$date": "2022-04-08T08:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "06d39b95-07fc-4a88-903c-0b5a80f16cb1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T19:15:50.000Z" - }, - "end": { - "$date": "2022-04-08T19:48:34.000Z" - }, - "events": [ - { - "uuid": "4999a373-1329-4676-82ca-6208d2f9b9a4", - "start": { - "$date": "2022-04-08T19:15:50.000Z" - }, - "end": { - "$date": "2022-04-08T19:48:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "75beaec5-ea68-43e1-bcb0-50ead2b7681d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-08T22:44:03.000Z" - }, - "end": { - "$date": "2022-04-09T04:24:44.000Z" - }, - "events": [ - { - "uuid": "7fdf82ca-c85a-4144-99c3-5cc5a36d1eab", - "start": { - "$date": "2022-04-08T22:44:03.000Z" - }, - "end": { - "$date": "2022-04-09T03:34:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1a7964a-fece-4f5d-8617-8972961a84d0", - "start": { - "$date": "2022-04-09T03:34:03.000Z" - }, - "end": { - "$date": "2022-04-09T03:58:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f55e028-6eaa-4487-a2f9-0737356b2f8b", - "start": { - "$date": "2022-04-09T03:58:03.000Z" - }, - "end": { - "$date": "2022-04-09T04:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d2fe222c-d612-41c2-84e2-02b21e35ee0b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-08T23:23:06.000Z" - }, - "end": { - "$date": "2022-04-09T04:07:51.000Z" - }, - "events": [ - { - "uuid": "b780806d-7788-4568-9f52-7f267286502a", - "start": { - "$date": "2022-04-08T23:23:06.000Z" - }, - "end": { - "$date": "2022-04-09T04:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2a644e4-d84a-4fc8-a4c0-94f1e8c65b75", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-08T23:28:32.000Z" - }, - "end": { - "$date": "2022-04-08T23:57:39.000Z" - }, - "events": [ - { - "uuid": "e47b108c-4f88-4900-918f-866ce6df0b92", - "start": { - "$date": "2022-04-08T23:28:32.000Z" - }, - "end": { - "$date": "2022-04-08T23:57:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9207647d-2347-4235-88c9-838a51fcbd75", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-08T23:45:29.000Z" - }, - "end": { - "$date": "2022-04-09T00:50:47.000Z" - }, - "events": [ - { - "uuid": "553b7a8f-2645-4f71-aa0f-fbd1019ffdc5", - "start": { - "$date": "2022-04-08T23:45:29.000Z" - }, - "end": { - "$date": "2022-04-09T00:50:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "338b6698-24c5-460f-b6cf-5d387d0eb4e3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-09T00:17:10.000Z" - }, - "end": { - "$date": "2022-04-09T00:23:40.000Z" - }, - "events": [ - { - "uuid": "f4340c37-ce40-44e3-b785-3ee91fdece77", - "start": { - "$date": "2022-04-09T00:17:10.000Z" - }, - "end": { - "$date": "2022-04-09T00:23:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "eeccaf3b-c84b-4643-8192-5d2a6ebc6b09", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-09T00:26:39.000Z" - }, - "end": { - "$date": "2022-04-09T01:51:23.000Z" - }, - "events": [ - { - "uuid": "98cd31e1-d5a0-499a-8188-42a765dcc009", - "start": { - "$date": "2022-04-09T00:26:39.000Z" - }, - "end": { - "$date": "2022-04-09T01:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bcb9019-e6ee-4532-9046-91749b11bcad", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T01:02:33.000Z" - }, - "end": { - "$date": "2022-04-09T01:30:06.000Z" - }, - "events": [ - { - "uuid": "0410d73a-5cb6-495b-98c5-6d4e3ea489a4", - "start": { - "$date": "2022-04-09T01:02:33.000Z" - }, - "end": { - "$date": "2022-04-09T01:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "986f3079-aba4-4525-8aa0-fbaa3d2983c0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T01:33:21.000Z" - }, - "end": { - "$date": "2022-04-09T01:48:17.000Z" - }, - "events": [ - { - "uuid": "d74bc3b3-9db7-48e4-937d-576e809388b2", - "start": { - "$date": "2022-04-09T01:33:21.000Z" - }, - "end": { - "$date": "2022-04-09T01:48:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9bc42a47-691b-445a-96d4-724d5742db02", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T01:53:33.000Z" - }, - "end": { - "$date": "2022-04-09T02:06:29.000Z" - }, - "events": [ - { - "uuid": "e9173471-3349-48ac-b33d-eae460878182", - "start": { - "$date": "2022-04-09T01:53:33.000Z" - }, - "end": { - "$date": "2022-04-09T02:06:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "6d0aded2-a5a0-4cec-bd53-b4c401603df4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-09T01:51:53.000Z" - }, - "end": { - "$date": "2022-04-09T02:13:21.000Z" - }, - "events": [ - { - "uuid": "60848eb4-e3d4-40dc-9765-2e7dafc3ca78", - "start": { - "$date": "2022-04-09T01:51:53.000Z" - }, - "end": { - "$date": "2022-04-09T02:05:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "78d1d276-4c9d-44c7-b069-4257883a6dbe", - "start": { - "$date": "2022-04-09T02:05:53.000Z" - }, - "end": { - "$date": "2022-04-09T02:10:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f150459e-e386-4e1d-bbbc-f6f0d961196b", - "start": { - "$date": "2022-04-09T02:10:53.000Z" - }, - "end": { - "$date": "2022-04-09T02:13:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b789a7bc-1587-43a4-8677-35fdabca3111", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-09T02:03:41.000Z" - }, - "end": { - "$date": "2022-04-09T03:06:43.000Z" - }, - "events": [ - { - "uuid": "ef3fa42f-1ea7-4b88-abba-e72910bbb37a", - "start": { - "$date": "2022-04-09T02:03:41.000Z" - }, - "end": { - "$date": "2022-04-09T03:06:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8c3ee94f-2b7d-43bb-9ef8-852367cbec25", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T02:03:43.000Z" - }, - "end": { - "$date": "2022-04-09T03:09:00.000Z" - }, - "events": [ - { - "uuid": "7ee95dca-8a3f-4719-b65d-27380f645926", - "start": { - "$date": "2022-04-09T02:03:43.000Z" - }, - "end": { - "$date": "2022-04-09T03:09:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b9cd5f6d-c042-4e3c-9db9-ba02513646c1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T02:42:57.000Z" - }, - "end": { - "$date": "2022-04-09T02:58:48.000Z" - }, - "events": [ - { - "uuid": "c8d73ea1-a8ed-4240-be11-f6a5fad07457", - "start": { - "$date": "2022-04-09T02:42:57.000Z" - }, - "end": { - "$date": "2022-04-09T02:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "5fe13952-8d41-4275-97aa-a4be15c3439c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-09T02:44:04.000Z" - }, - "end": { - "$date": "2022-04-09T04:34:34.000Z" - }, - "events": [ - { - "uuid": "8e931347-a2f1-4329-b7e5-a3570bacc664", - "start": { - "$date": "2022-04-09T02:44:04.000Z" - }, - "end": { - "$date": "2022-04-09T04:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "db22d267-0e11-42b1-8010-f7e34cd44a47", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T03:13:35.000Z" - }, - "end": { - "$date": "2022-04-09T03:42:28.000Z" - }, - "events": [ - { - "uuid": "68cf2348-de76-482c-9c6c-d84e63bc49c1", - "start": { - "$date": "2022-04-09T03:13:35.000Z" - }, - "end": { - "$date": "2022-04-09T03:42:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4d09c85d-79b3-4079-bdd1-dfde026035b0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-09T03:29:24.000Z" - }, - "end": { - "$date": "2022-04-09T03:34:49.000Z" - }, - "events": [ - { - "uuid": "4a732e2d-08fe-42e8-a225-0ade79c0e9b3", - "start": { - "$date": "2022-04-09T03:29:24.000Z" - }, - "end": { - "$date": "2022-04-09T03:34:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "45ff620c-f77d-4bc5-a019-a8d2c9eb1964", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-09T03:36:09.000Z" - }, - "end": { - "$date": "2022-04-09T05:42:09.000Z" - }, - "events": [ - { - "uuid": "404ddaf6-6719-4517-8f41-b7b3715e1a5e", - "start": { - "$date": "2022-04-09T03:36:09.000Z" - }, - "end": { - "$date": "2022-04-09T05:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d9da87dc-c057-4d3d-a487-df14f24dd9f8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T03:43:03.000Z" - }, - "end": { - "$date": "2022-04-09T04:29:57.000Z" - }, - "events": [ - { - "uuid": "be51df9a-847f-413b-b35e-ca382df01d5e", - "start": { - "$date": "2022-04-09T03:43:03.000Z" - }, - "end": { - "$date": "2022-04-09T04:29:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "4aa21d2c-d30c-4154-a372-c4161a4e5b34", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-09T04:08:35.000Z" - }, - "end": { - "$date": "2022-04-09T04:10:32.000Z" - }, - "events": [ - { - "uuid": "69b5c090-6d75-44fd-81e0-3307e1ac22ad", - "start": { - "$date": "2022-04-09T04:08:35.000Z" - }, - "end": { - "$date": "2022-04-09T04:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "9c4512a3-0f06-4c7f-874f-7a1c074ea004", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-09T04:11:16.000Z" - }, - "end": { - "$date": "2022-04-09T04:12:12.000Z" - }, - "events": [ - { - "uuid": "f0c63b1c-f384-4c42-a3a4-38cc062c41c9", - "start": { - "$date": "2022-04-09T04:11:16.000Z" - }, - "end": { - "$date": "2022-04-09T04:12:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cccb8082-1a02-4d4f-b082-a76f4e57bf2b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T04:32:57.000Z" - }, - "end": { - "$date": "2022-04-09T05:07:47.000Z" - }, - "events": [ - { - "uuid": "9f68b338-0472-41c4-a449-7fbb33e5e446", - "start": { - "$date": "2022-04-09T04:32:57.000Z" - }, - "end": { - "$date": "2022-04-09T05:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "26c703ed-2e18-4003-946c-3b1433c89f1d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-09T04:34:03.000Z" - }, - "end": { - "$date": "2022-04-09T04:36:05.000Z" - }, - "events": [ - { - "uuid": "3b301c4a-f771-4c3b-b4fd-bfd1dfe9af1c", - "start": { - "$date": "2022-04-09T04:34:03.000Z" - }, - "end": { - "$date": "2022-04-09T04:36:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "12c3b029-d5da-4735-b6c3-75946df230cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-09T04:35:14.000Z" - }, - "end": { - "$date": "2022-04-09T04:55:40.000Z" - }, - "events": [ - { - "uuid": "e1ddd345-718c-4798-b89c-22f42f34c108", - "start": { - "$date": "2022-04-09T04:35:14.000Z" - }, - "end": { - "$date": "2022-04-09T04:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "36ffb974-533e-47dd-9b3a-c8862327aafa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-09T04:36:38.000Z" - }, - "end": { - "$date": "2022-04-09T04:43:06.000Z" - }, - "events": [ - { - "uuid": "bf79dd21-683a-408b-af68-242d024e215d", - "start": { - "$date": "2022-04-09T04:36:38.000Z" - }, - "end": { - "$date": "2022-04-09T04:43:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a954ccdf-5acd-43e9-bbf1-a3c447c0c59f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-09T04:56:00.000Z" - }, - "end": { - "$date": "2022-04-09T07:30:15.000Z" - }, - "events": [ - { - "uuid": "743e6bc3-ccdb-47e8-83b2-9d016e7d0495", - "start": { - "$date": "2022-04-09T04:56:00.000Z" - }, - "end": { - "$date": "2022-04-09T07:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a9d19c13-7153-4c2c-baf4-443b6ded41b5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-09T05:16:28.000Z" - }, - "end": { - "$date": "2022-04-09T05:20:34.000Z" - }, - "events": [ - { - "uuid": "12d5fc46-6a20-422a-b47b-ba9cb3abbf18", - "start": { - "$date": "2022-04-09T05:16:28.000Z" - }, - "end": { - "$date": "2022-04-09T05:20:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "50e8c650-03d3-4b46-9cc0-7b7921e90295", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-09T05:20:49.000Z" - }, - "end": { - "$date": "2022-04-09T08:08:32.000Z" - }, - "events": [ - { - "uuid": "b2a76b88-5a58-455a-b81e-008d2241c34e", - "start": { - "$date": "2022-04-09T05:20:49.000Z" - }, - "end": { - "$date": "2022-04-09T08:08:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3e8186b4-df1d-4b52-90c6-96d3463f1e33", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T05:39:50.000Z" - }, - "end": { - "$date": "2022-04-09T06:04:41.000Z" - }, - "events": [ - { - "uuid": "8f84d7b4-efd1-4a7f-bf05-7b220088726c", - "start": { - "$date": "2022-04-09T05:39:50.000Z" - }, - "end": { - "$date": "2022-04-09T06:04:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "753a1874-9198-4b34-b6fb-930243781227", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-09T05:43:00.000Z" - }, - "end": { - "$date": "2022-04-09T07:07:25.000Z" - }, - "events": [ - { - "uuid": "70283cfd-7347-4c03-94ad-5409cbc4b554", - "start": { - "$date": "2022-04-09T05:43:00.000Z" - }, - "end": { - "$date": "2022-04-09T07:07:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e68d7f79-7e02-4b9c-be64-d3cff51c4fe2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-09T06:12:17.000Z" - }, - "end": { - "$date": "2022-04-09T06:46:11.000Z" - }, - "events": [ - { - "uuid": "791f5dd8-9e41-40bb-89ed-fdaf95257a34", - "start": { - "$date": "2022-04-09T06:12:17.000Z" - }, - "end": { - "$date": "2022-04-09T06:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "70ed60be-8be2-47c8-b84b-4be0916250a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T06:11:57.000Z" - }, - "end": { - "$date": "2022-04-09T07:08:09.000Z" - }, - "events": [ - { - "uuid": "413170da-d55a-4179-9a40-0ff2c38d8319", - "start": { - "$date": "2022-04-09T06:11:57.000Z" - }, - "end": { - "$date": "2022-04-09T07:08:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "2f92f499-fe28-4861-bc2e-0909908d7e8c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-09T06:41:52.000Z" - }, - "end": { - "$date": "2022-04-09T08:43:38.000Z" - }, - "events": [ - { - "uuid": "f82ae600-da8c-4f76-a8c2-48fa10c8a6f5", - "start": { - "$date": "2022-04-09T06:41:52.000Z" - }, - "end": { - "$date": "2022-04-09T08:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7d38a8a-5147-435d-aed0-53f2bea86a34", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-09T07:21:13.000Z" - }, - "end": { - "$date": "2022-04-09T08:49:06.000Z" - }, - "events": [ - { - "uuid": "de380524-5547-4acd-b384-0e8678f3bc6a", - "start": { - "$date": "2022-04-09T07:21:13.000Z" - }, - "end": { - "$date": "2022-04-09T08:49:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "91c94be0-a45e-4ba8-9914-98ec50f407e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T07:40:50.000Z" - }, - "end": { - "$date": "2022-04-09T08:08:45.000Z" - }, - "events": [ - { - "uuid": "67b3a180-9456-410f-92d2-3ff2c5d235a0", - "start": { - "$date": "2022-04-09T07:40:50.000Z" - }, - "end": { - "$date": "2022-04-09T08:08:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "98291d7f-9624-495e-8a0c-61e175cb1fb6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-09T15:25:20.000Z" - }, - "end": { - "$date": "2022-04-09T21:12:55.000Z" - }, - "events": [ - { - "uuid": "f630669c-07f8-4b32-9e70-31610e10282b", - "start": { - "$date": "2022-04-09T15:25:20.000Z" - }, - "end": { - "$date": "2022-04-09T21:12:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f7c763ea-f86a-4a5e-bec9-8c233fb64dec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T15:43:25.000Z" - }, - "end": { - "$date": "2022-04-09T16:11:46.000Z" - }, - "events": [ - { - "uuid": "f70268fe-a28c-4e72-93c1-e3d421416a57", - "start": { - "$date": "2022-04-09T15:43:25.000Z" - }, - "end": { - "$date": "2022-04-09T16:11:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e0e4a13f-de55-4e87-8488-817251eaf412", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-09T20:13:58.000Z" - }, - "end": { - "$date": "2022-04-09T21:50:55.000Z" - }, - "events": [ - { - "uuid": "5a52caff-dcfb-44c6-9ca4-e9a98ac257e0", - "start": { - "$date": "2022-04-09T20:13:58.000Z" - }, - "end": { - "$date": "2022-04-09T21:50:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "af6690ae-1c10-4553-bf00-73bec1101cc9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T20:21:05.000Z" - }, - "end": { - "$date": "2022-04-09T21:12:47.000Z" - }, - "events": [ - { - "uuid": "1e164845-f476-476d-a428-b968e18ee7a1", - "start": { - "$date": "2022-04-09T20:21:05.000Z" - }, - "end": { - "$date": "2022-04-09T21:12:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "27db9039-686d-458d-8aae-b1b0e113d35c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T21:13:01.000Z" - }, - "end": { - "$date": "2022-04-09T21:51:03.000Z" - }, - "events": [ - { - "uuid": "32e54d9f-43a9-45fd-a608-5d679062597d", - "start": { - "$date": "2022-04-09T21:13:01.000Z" - }, - "end": { - "$date": "2022-04-09T21:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "542041ef-9044-4ba3-b8a3-83d02c909a84", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T22:42:50.000Z" - }, - "end": { - "$date": "2022-04-09T22:53:51.000Z" - }, - "events": [ - { - "uuid": "d3936bf8-e7a2-49e8-805d-573ff8dbc025", - "start": { - "$date": "2022-04-09T22:42:50.000Z" - }, - "end": { - "$date": "2022-04-09T22:53:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e5bd88d2-50eb-4193-85a2-44159e583129", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-09T22:53:13.000Z" - }, - "end": { - "$date": "2022-04-10T01:03:23.000Z" - }, - "events": [ - { - "uuid": "898e6244-80c4-4959-adfe-a274d1a18f7b", - "start": { - "$date": "2022-04-09T22:53:13.000Z" - }, - "end": { - "$date": "2022-04-10T01:03:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ee52a32a-9f70-4ae0-91e4-2b325bcf023c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-09T22:54:46.000Z" - }, - "end": { - "$date": "2022-04-10T01:03:07.000Z" - }, - "events": [ - { - "uuid": "b9f8e8e5-e9fd-4135-ad75-c053d24f0ded", - "start": { - "$date": "2022-04-09T22:54:46.000Z" - }, - "end": { - "$date": "2022-04-10T01:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "080ca69b-d7e0-44f1-a689-e1f0ede46cdf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-09T23:12:01.000Z" - }, - "end": { - "$date": "2022-04-10T01:39:54.000Z" - }, - "events": [ - { - "uuid": "bdafb35d-b6aa-4063-9826-af5170318dbd", - "start": { - "$date": "2022-04-09T23:12:01.000Z" - }, - "end": { - "$date": "2022-04-09T23:32:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "62a35e76-08f2-41b4-88bc-9681529215bc", - "start": { - "$date": "2022-04-09T23:32:01.000Z" - }, - "end": { - "$date": "2022-04-09T23:37:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa9884f1-a827-4cd9-8980-b88aaa49a73a", - "start": { - "$date": "2022-04-09T23:37:01.000Z" - }, - "end": { - "$date": "2022-04-09T23:49:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "049b3609-74ce-452b-a53d-fc7ae1013799", - "start": { - "$date": "2022-04-09T23:49:01.000Z" - }, - "end": { - "$date": "2022-04-10T00:06:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c9bcf37-9e37-48dc-a400-b2e42c34d9cc", - "start": { - "$date": "2022-04-10T00:06:01.000Z" - }, - "end": { - "$date": "2022-04-10T00:17:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb231a5e-9000-45e9-a078-613728e63b1d", - "start": { - "$date": "2022-04-10T00:17:01.000Z" - }, - "end": { - "$date": "2022-04-10T00:30:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff645637-4d7e-4a20-b973-a8651c311f83", - "start": { - "$date": "2022-04-10T00:30:01.000Z" - }, - "end": { - "$date": "2022-04-10T01:39:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "2b4b0361-5fb3-489d-b52f-68de3323e845", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-10T01:19:24.000Z" - }, - "end": { - "$date": "2022-04-10T04:05:34.000Z" - }, - "events": [ - { - "uuid": "9bab259a-767c-43bb-a7f7-8fb08139a0f7", - "start": { - "$date": "2022-04-10T01:19:24.000Z" - }, - "end": { - "$date": "2022-04-10T04:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "659baae2-45b3-4f31-ac78-010420b73979", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T01:29:20.000Z" - }, - "end": { - "$date": "2022-04-10T01:55:32.000Z" - }, - "events": [ - { - "uuid": "e09ca9bf-67aa-409f-b7da-bbc55de84dbb", - "start": { - "$date": "2022-04-10T01:29:20.000Z" - }, - "end": { - "$date": "2022-04-10T01:55:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "52d7d328-6f03-4aaf-ab1f-80a2f5ffc046", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T01:38:03.000Z" - }, - "end": { - "$date": "2022-04-10T02:32:05.000Z" - }, - "events": [ - { - "uuid": "d375da10-1e44-4834-995b-bb97b00cffb7", - "start": { - "$date": "2022-04-10T01:38:03.000Z" - }, - "end": { - "$date": "2022-04-10T02:32:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4606beee-3ae9-42b4-96b3-1443dd2177a0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-10T01:42:02.000Z" - }, - "end": { - "$date": "2022-04-10T02:21:16.000Z" - }, - "events": [ - { - "uuid": "0b7f0a86-797e-4c6b-ac14-53cba58e6c57", - "start": { - "$date": "2022-04-10T01:42:02.000Z" - }, - "end": { - "$date": "2022-04-10T02:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7fcfc0df-ba59-4d67-9dfe-c7278c86f72b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T01:55:57.000Z" - }, - "end": { - "$date": "2022-04-10T02:32:03.000Z" - }, - "events": [ - { - "uuid": "06eb16a3-9f43-4549-953d-42bda3f32884", - "start": { - "$date": "2022-04-10T01:55:57.000Z" - }, - "end": { - "$date": "2022-04-10T02:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "fb5661f5-af79-4799-8c36-f1c9813816d6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-10T02:22:26.000Z" - }, - "end": { - "$date": "2022-04-10T04:15:09.000Z" - }, - "events": [ - { - "uuid": "4d8dcb28-4dc3-4230-ab81-0cbc80b185b6", - "start": { - "$date": "2022-04-10T02:22:26.000Z" - }, - "end": { - "$date": "2022-04-10T03:09:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1fcacf55-d6ac-4f20-8df9-e3aaf4386a01", - "start": { - "$date": "2022-04-10T03:09:26.000Z" - }, - "end": { - "$date": "2022-04-10T03:14:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "038ab74d-032b-46f4-99ad-0fe0490149b4", - "start": { - "$date": "2022-04-10T03:14:26.000Z" - }, - "end": { - "$date": "2022-04-10T03:24:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da80760d-b3fe-483c-8bb0-7e6f8362e0b3", - "start": { - "$date": "2022-04-10T03:24:26.000Z" - }, - "end": { - "$date": "2022-04-10T03:29:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6a877d15-8100-4aa9-b325-51a70447e102", - "start": { - "$date": "2022-04-10T03:29:26.000Z" - }, - "end": { - "$date": "2022-04-10T04:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "37145748-5b51-40c9-9ad2-7c0274399c6f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T02:34:38.000Z" - }, - "end": { - "$date": "2022-04-10T03:00:20.000Z" - }, - "events": [ - { - "uuid": "d04cfe3d-335e-4179-86f4-5fe51526034e", - "start": { - "$date": "2022-04-10T02:34:38.000Z" - }, - "end": { - "$date": "2022-04-10T03:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4c05024c-7666-493f-9c67-95c37c30fb5d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T02:42:45.000Z" - }, - "end": { - "$date": "2022-04-10T03:00:22.000Z" - }, - "events": [ - { - "uuid": "51b18db2-7d90-4a4c-9f1a-f0bf880db2ea", - "start": { - "$date": "2022-04-10T02:42:45.000Z" - }, - "end": { - "$date": "2022-04-10T03:00:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "6af173bf-0667-4548-92ac-ddd2ddaf977e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T03:00:30.000Z" - }, - "end": { - "$date": "2022-04-10T03:14:46.000Z" - }, - "events": [ - { - "uuid": "8794be93-344a-4848-9e6b-84fc2e717890", - "start": { - "$date": "2022-04-10T03:00:30.000Z" - }, - "end": { - "$date": "2022-04-10T03:14:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be3160c9-c3fd-4afc-aa55-ecdb062a2ac5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T04:13:40.000Z" - }, - "end": { - "$date": "2022-04-10T04:30:18.000Z" - }, - "events": [ - { - "uuid": "d4f5cbad-3a22-457f-ae9a-f3a67c3e9782", - "start": { - "$date": "2022-04-10T04:13:40.000Z" - }, - "end": { - "$date": "2022-04-10T04:30:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3f65dee2-0fb1-46f9-9b8d-21269c0ae968", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-10T04:15:29.000Z" - }, - "end": { - "$date": "2022-04-10T06:39:45.000Z" - }, - "events": [ - { - "uuid": "54e985e9-504b-4d5a-8770-b5384216be55", - "start": { - "$date": "2022-04-10T04:15:29.000Z" - }, - "end": { - "$date": "2022-04-10T06:39:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbd7202e-7ce8-4c92-ba2d-f799cbd0027c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T04:32:32.000Z" - }, - "end": { - "$date": "2022-04-10T04:50:08.000Z" - }, - "events": [ - { - "uuid": "5b5ca457-5523-40c5-96e3-ac1235dea7ee", - "start": { - "$date": "2022-04-10T04:32:32.000Z" - }, - "end": { - "$date": "2022-04-10T04:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "cb24aa19-adb9-49a2-b306-1f34fd96f8f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T04:39:34.000Z" - }, - "end": { - "$date": "2022-04-10T05:12:50.000Z" - }, - "events": [ - { - "uuid": "787d3f34-bfab-4002-990c-faa9a63f2b4f", - "start": { - "$date": "2022-04-10T04:39:34.000Z" - }, - "end": { - "$date": "2022-04-10T05:12:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c371b2f-97a1-4b46-9e33-031c9d49dfa0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T04:52:53.000Z" - }, - "end": { - "$date": "2022-04-10T05:13:41.000Z" - }, - "events": [ - { - "uuid": "e8ad7a25-01eb-46d1-ab5b-77e2d6967198", - "start": { - "$date": "2022-04-10T04:52:53.000Z" - }, - "end": { - "$date": "2022-04-10T05:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0e5ea8a8-1bed-418a-b919-560570a79c13", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T05:09:39.000Z" - }, - "end": { - "$date": "2022-04-10T05:44:19.000Z" - }, - "events": [ - { - "uuid": "45e10ee4-776e-4b51-93ee-4238e689963f", - "start": { - "$date": "2022-04-10T05:09:39.000Z" - }, - "end": { - "$date": "2022-04-10T05:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e76b913d-6bc8-4a83-b460-1f00cdac2aa4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T05:16:09.000Z" - }, - "end": { - "$date": "2022-04-10T05:35:25.000Z" - }, - "events": [ - { - "uuid": "8e28954d-f4fb-48d1-88d6-ca4209812f82", - "start": { - "$date": "2022-04-10T05:16:09.000Z" - }, - "end": { - "$date": "2022-04-10T05:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "ee178811-95cd-4dc5-bdcc-317733ce8e70", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-10T05:26:12.000Z" - }, - "end": { - "$date": "2022-04-10T07:36:14.000Z" - }, - "events": [ - { - "uuid": "bce5dd86-2ca2-4f87-8448-d8c54eea7918", - "start": { - "$date": "2022-04-10T05:26:12.000Z" - }, - "end": { - "$date": "2022-04-10T07:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "31d20143-1a15-4dff-ab38-6eadb962c3ba", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T05:39:31.000Z" - }, - "end": { - "$date": "2022-04-10T06:13:00.000Z" - }, - "events": [ - { - "uuid": "808f15c1-1e94-4d39-8504-4d996a1ea9b3", - "start": { - "$date": "2022-04-10T05:39:31.000Z" - }, - "end": { - "$date": "2022-04-10T06:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a49f4f38-57f2-4ce5-834d-ce3037e89b5f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T06:15:42.000Z" - }, - "end": { - "$date": "2022-04-10T06:44:34.000Z" - }, - "events": [ - { - "uuid": "124add90-c6a2-4ecb-8b61-77c72eb7f5bb", - "start": { - "$date": "2022-04-10T06:15:42.000Z" - }, - "end": { - "$date": "2022-04-10T06:44:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "817760d4-e1ad-42b4-82c8-bedc8d35e807", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T06:15:38.000Z" - }, - "end": { - "$date": "2022-04-10T06:37:33.000Z" - }, - "events": [ - { - "uuid": "6cbc77ff-15cf-47e4-8eb8-1a7a1dc42555", - "start": { - "$date": "2022-04-10T06:15:38.000Z" - }, - "end": { - "$date": "2022-04-10T06:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c073084b-a329-42e8-a318-feba51319a76", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T06:37:48.000Z" - }, - "end": { - "$date": "2022-04-10T06:57:53.000Z" - }, - "events": [ - { - "uuid": "f18747cb-686a-43b7-9dec-e9931ac946a5", - "start": { - "$date": "2022-04-10T06:37:48.000Z" - }, - "end": { - "$date": "2022-04-10T06:57:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "6c16100a-d249-40de-a745-318b6923dfc1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-10T06:42:50.000Z" - }, - "end": { - "$date": "2022-04-10T07:31:47.000Z" - }, - "events": [ - { - "uuid": "6e3520d6-864a-4c73-9bdc-f9289fc3e312", - "start": { - "$date": "2022-04-10T06:42:50.000Z" - }, - "end": { - "$date": "2022-04-10T07:31:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4f9c441-7fcc-4142-bc75-38b0595c2cf3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T06:51:29.000Z" - }, - "end": { - "$date": "2022-04-10T06:51:44.000Z" - }, - "events": [ - { - "uuid": "ccb5d625-543b-45f2-bd59-7dc92787c314", - "start": { - "$date": "2022-04-10T06:51:29.000Z" - }, - "end": { - "$date": "2022-04-10T06:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8901421-512e-4db6-aa6e-032789a6bb21", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T06:53:55.000Z" - }, - "end": { - "$date": "2022-04-10T07:23:56.000Z" - }, - "events": [ - { - "uuid": "9ebf0360-adf8-4f37-ba28-4d4957fa51f4", - "start": { - "$date": "2022-04-10T06:53:55.000Z" - }, - "end": { - "$date": "2022-04-10T07:23:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eef89bdc-033a-4b0e-ada6-ac1c55ce5c73", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-10T06:59:28.000Z" - }, - "end": { - "$date": "2022-04-10T08:37:33.000Z" - }, - "events": [ - { - "uuid": "b109c9f4-081b-4f8d-8613-7d41b50cdfe1", - "start": { - "$date": "2022-04-10T06:59:28.000Z" - }, - "end": { - "$date": "2022-04-10T08:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4a75252d-7a68-42ae-995b-3b0c902ff43a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T07:15:55.000Z" - }, - "end": { - "$date": "2022-04-10T09:00:18.000Z" - }, - "events": [ - { - "uuid": "a0532522-7e19-4ef4-812f-f95859363312", - "start": { - "$date": "2022-04-10T07:15:55.000Z" - }, - "end": { - "$date": "2022-04-10T09:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "57f58c09-05db-466b-b761-9c8a34e3cf17", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T09:07:09.000Z" - }, - "end": { - "$date": "2022-04-10T09:10:59.000Z" - }, - "events": [ - { - "uuid": "3a9d6f2b-d766-44df-b07f-047803b1bf6f", - "start": { - "$date": "2022-04-10T09:07:09.000Z" - }, - "end": { - "$date": "2022-04-10T09:10:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "45d54529-6e30-4bcb-8362-a2af33db8470", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T07:24:25.000Z" - }, - "end": { - "$date": "2022-04-10T07:25:41.000Z" - }, - "events": [ - { - "uuid": "37a08976-7617-44ab-8a9b-2e710c7f2990", - "start": { - "$date": "2022-04-10T07:24:25.000Z" - }, - "end": { - "$date": "2022-04-10T07:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3666fc8d-9ea7-4a3f-ab15-19395dd15b05", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-10T15:07:05.000Z" - }, - "end": { - "$date": "2022-04-10T19:00:37.000Z" - }, - "events": [ - { - "uuid": "7996a145-3288-4bdc-bb4d-8a6259bd7a66", - "start": { - "$date": "2022-04-10T15:07:05.000Z" - }, - "end": { - "$date": "2022-04-10T18:28:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0c909ff4-55ef-41ad-9b63-45d31722069c", - "start": { - "$date": "2022-04-10T18:28:05.000Z" - }, - "end": { - "$date": "2022-04-10T18:33:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28fc7ee1-b55d-45f2-9a20-8f177b27c3b4", - "start": { - "$date": "2022-04-10T18:33:05.000Z" - }, - "end": { - "$date": "2022-04-10T18:53:05.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "543223db-2e5f-452c-a1ac-41858782b0af", - "start": { - "$date": "2022-04-10T18:53:05.000Z" - }, - "end": { - "$date": "2022-04-10T18:59:05.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a888df72-d9d0-4cb9-ad18-1dccc6faf858", - "start": { - "$date": "2022-04-10T18:59:05.000Z" - }, - "end": { - "$date": "2022-04-10T19:00:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b6caf3f9-2940-4d5b-9f42-d11cdbc7e05e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T16:26:26.000Z" - }, - "end": { - "$date": "2022-04-10T16:44:13.000Z" - }, - "events": [ - { - "uuid": "48299358-e977-4910-b70f-a64945ed10b0", - "start": { - "$date": "2022-04-10T16:26:26.000Z" - }, - "end": { - "$date": "2022-04-10T16:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "368a78db-37ae-4522-8c03-5e9e0e79ee75", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-10T18:07:51.000Z" - }, - "end": { - "$date": "2022-04-10T18:48:17.000Z" - }, - "events": [ - { - "uuid": "d900eaa5-62e8-453a-9614-d48abdb26085", - "start": { - "$date": "2022-04-10T18:07:51.000Z" - }, - "end": { - "$date": "2022-04-10T18:48:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7e9336fb-2d81-40c0-8ad4-bd276c801ef0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T19:01:50.000Z" - }, - "end": { - "$date": "2022-04-10T19:06:55.000Z" - }, - "events": [ - { - "uuid": "6625f764-afdb-4cfa-a177-15e62ac9f9d9", - "start": { - "$date": "2022-04-10T19:01:50.000Z" - }, - "end": { - "$date": "2022-04-10T19:06:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bc713e5a-c308-4f34-ba8b-297a13e30323", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T19:09:36.000Z" - }, - "end": { - "$date": "2022-04-10T20:01:58.000Z" - }, - "events": [ - { - "uuid": "07eaa482-4692-4f80-b9b4-0123a6e3a124", - "start": { - "$date": "2022-04-10T19:09:36.000Z" - }, - "end": { - "$date": "2022-04-10T20:01:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2035a666-f1ec-4254-b079-a10089441f6f", - "uuid": "0cf96788-64e4-44ef-8bfa-9dbca44d392f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-10T20:49:20.000Z" - }, - "end": { - "$date": "2022-04-11T04:39:37.000Z" - }, - "events": [ - { - "uuid": "7d6097d2-7f24-4287-88fc-82dcf6cb6ae0", - "start": { - "$date": "2022-04-10T20:49:20.000Z" - }, - "end": { - "$date": "2022-04-11T02:35:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "625aae23-d267-4f9f-aa8c-084278faa181", - "start": { - "$date": "2022-04-11T02:35:20.000Z" - }, - "end": { - "$date": "2022-04-11T02:37:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1b78340d-7431-4305-95d6-18fe29b8ce0f", - "start": { - "$date": "2022-04-11T02:37:20.000Z" - }, - "end": { - "$date": "2022-04-11T02:47:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58d01ba0-a0c2-4786-957c-9640e26f2b48", - "start": { - "$date": "2022-04-11T02:47:20.000Z" - }, - "end": { - "$date": "2022-04-11T03:33:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0353a4ed-ab03-445a-8978-88899b6e1a07", - "start": { - "$date": "2022-04-11T03:33:20.000Z" - }, - "end": { - "$date": "2022-04-11T04:39:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "169b4ef3-88a7-42de-a54e-7a5bf19c11e3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T20:50:29.000Z" - }, - "end": { - "$date": "2022-04-10T21:07:29.000Z" - }, - "events": [ - { - "uuid": "9155900a-aa23-4176-8a93-c31d03d9f303", - "start": { - "$date": "2022-04-10T20:50:29.000Z" - }, - "end": { - "$date": "2022-04-10T21:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "322efb88-ec8c-409a-aa31-f8d66ce71e22", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-10T22:37:41.000Z" - }, - "end": { - "$date": "2022-04-11T00:47:45.000Z" - }, - "events": [ - { - "uuid": "407059ca-8ad1-4370-b8ce-d1bf1423849b", - "start": { - "$date": "2022-04-10T22:37:41.000Z" - }, - "end": { - "$date": "2022-04-11T00:47:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f75d4b3f-e508-44cc-a969-ee64d85f6a4d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T00:34:53.000Z" - }, - "end": { - "$date": "2022-04-11T00:42:19.000Z" - }, - "events": [ - { - "uuid": "51561e11-e186-4176-b612-4da8c02055ee", - "start": { - "$date": "2022-04-11T00:34:53.000Z" - }, - "end": { - "$date": "2022-04-11T00:42:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "987a52e7-cc42-4ec7-aa41-a104c9edc8b8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-10T23:42:08.000Z" - }, - "end": { - "$date": "2022-04-11T00:27:19.000Z" - }, - "events": [ - { - "uuid": "f3ecf571-c8c3-4478-a160-ff62331a9195", - "start": { - "$date": "2022-04-10T23:42:08.000Z" - }, - "end": { - "$date": "2022-04-11T00:27:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "a09f8407-2e08-470d-bf5e-d3b1477e8ac5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T01:34:31.000Z" - }, - "end": { - "$date": "2022-04-11T01:37:46.000Z" - }, - "events": [ - { - "uuid": "26374084-785d-4d0b-9cc1-789f3a54153b", - "start": { - "$date": "2022-04-11T01:34:31.000Z" - }, - "end": { - "$date": "2022-04-11T01:37:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e35e8c4b-aaf3-45ac-a45a-8a4f3b12ab15", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T01:35:56.000Z" - }, - "end": { - "$date": "2022-04-11T02:53:03.000Z" - }, - "events": [ - { - "uuid": "c0660a37-3af7-4019-b8d7-5eadf4cb4a6e", - "start": { - "$date": "2022-04-11T01:35:56.000Z" - }, - "end": { - "$date": "2022-04-11T02:53:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "578f6cca-d0f8-410b-982e-73ef5fffc8c2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-11T02:51:15.000Z" - }, - "end": { - "$date": "2022-04-11T04:12:41.000Z" - }, - "events": [ - { - "uuid": "e5ff7d70-ad36-438a-a429-c48c0f577503", - "start": { - "$date": "2022-04-11T02:51:15.000Z" - }, - "end": { - "$date": "2022-04-11T04:12:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c7f0ca57-4885-4586-bd6e-3eb7516cd841", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T03:04:25.000Z" - }, - "end": { - "$date": "2022-04-11T03:07:45.000Z" - }, - "events": [ - { - "uuid": "b1c30e07-197c-4542-af6e-2663481fe3e8", - "start": { - "$date": "2022-04-11T03:04:25.000Z" - }, - "end": { - "$date": "2022-04-11T03:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "66646c7f-6100-403e-9dbc-c74ba00fd6f2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T03:08:20.000Z" - }, - "end": { - "$date": "2022-04-11T03:26:41.000Z" - }, - "events": [ - { - "uuid": "b1ca9fa9-b775-4b34-93ad-c22ab73c1934", - "start": { - "$date": "2022-04-11T03:08:20.000Z" - }, - "end": { - "$date": "2022-04-11T03:26:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "56a11bd1-1ae0-45b8-aab7-34ee2e32bd9f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-11T02:18:12.000Z" - }, - "end": { - "$date": "2022-04-11T05:54:11.000Z" - }, - "events": [ - { - "uuid": "49853559-519e-411d-8d41-daaac9923741", - "start": { - "$date": "2022-04-11T02:18:12.000Z" - }, - "end": { - "$date": "2022-04-11T05:54:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "99530964-0370-4b33-8f22-cb78763d0b12", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-11T04:12:20.000Z" - }, - "end": { - "$date": "2022-04-11T04:55:02.000Z" - }, - "events": [ - { - "uuid": "e7f3b840-0af5-47b6-beb3-fe452864e2ce", - "start": { - "$date": "2022-04-11T04:12:20.000Z" - }, - "end": { - "$date": "2022-04-11T04:55:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08fce8d7-d802-4af8-a5fe-b1fff7f28c48", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T04:43:01.000Z" - }, - "end": { - "$date": "2022-04-11T05:14:32.000Z" - }, - "events": [ - { - "uuid": "33c113ce-cce6-4fb3-b941-9e17ace448d1", - "start": { - "$date": "2022-04-11T04:43:01.000Z" - }, - "end": { - "$date": "2022-04-11T05:14:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4df52ab-d872-43a5-a695-0707a966de8a", - "uuid": "8cf99106-b202-475c-8aee-7c88b16c43d9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-11T04:50:49.000Z" - }, - "end": { - "$date": "2022-04-11T05:14:24.000Z" - }, - "events": [ - { - "uuid": "e7a13094-b807-46d8-9ff4-0f59135f1774", - "start": { - "$date": "2022-04-11T04:50:49.000Z" - }, - "end": { - "$date": "2022-04-11T05:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "2066de1b-9d1e-4eb6-81cd-fb939f9c32f7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-11T04:55:27.000Z" - }, - "end": { - "$date": "2022-04-11T10:13:51.000Z" - }, - "events": [ - { - "uuid": "764d67f5-7158-4f4e-acba-d95b34e8a8ce", - "start": { - "$date": "2022-04-11T04:55:27.000Z" - }, - "end": { - "$date": "2022-04-11T08:36:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b32caa77-ece9-4f0b-aa0a-2f7d3c3f02f3", - "start": { - "$date": "2022-04-11T08:36:27.000Z" - }, - "end": { - "$date": "2022-04-11T08:54:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "990a38ac-4885-483f-93b2-4d6531a7f36a", - "start": { - "$date": "2022-04-11T08:54:27.000Z" - }, - "end": { - "$date": "2022-04-11T09:04:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33a8f26b-c348-4ee9-80b9-9945828b021b", - "start": { - "$date": "2022-04-11T09:04:27.000Z" - }, - "end": { - "$date": "2022-04-11T09:36:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b4688014-ee3a-4297-9928-d0af1b931fb7", - "start": { - "$date": "2022-04-11T09:36:27.000Z" - }, - "end": { - "$date": "2022-04-11T09:46:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f175a088-1266-472e-a800-3abb16607d73", - "start": { - "$date": "2022-04-11T09:46:27.000Z" - }, - "end": { - "$date": "2022-04-11T10:11:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ee5aa6f3-d98a-431e-9f94-cfb7fb99c660", - "start": { - "$date": "2022-04-11T10:11:27.000Z" - }, - "end": { - "$date": "2022-04-11T10:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "97223f76-b3f2-469d-a09b-034be40c5d96", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-11T05:10:45.000Z" - }, - "end": { - "$date": "2022-04-11T05:40:11.000Z" - }, - "events": [ - { - "uuid": "855b992d-8ae3-492f-b389-b6093d9032cc", - "start": { - "$date": "2022-04-11T05:10:45.000Z" - }, - "end": { - "$date": "2022-04-11T05:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1bdf2d94-0272-475b-818a-c5fea97f6a6a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-11T05:14:34.000Z" - }, - "end": { - "$date": "2022-04-11T05:46:09.000Z" - }, - "events": [ - { - "uuid": "7e8479df-9a7a-4295-9b59-3863b6758322", - "start": { - "$date": "2022-04-11T05:14:34.000Z" - }, - "end": { - "$date": "2022-04-11T05:46:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ec107908-d23a-42bf-b06b-ec1109e2dd18", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T05:19:38.000Z" - }, - "end": { - "$date": "2022-04-11T05:47:10.000Z" - }, - "events": [ - { - "uuid": "75ab152d-dcd4-4cb3-83df-19dfcad572bd", - "start": { - "$date": "2022-04-11T05:19:38.000Z" - }, - "end": { - "$date": "2022-04-11T05:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6594c285-b724-441a-b1b6-382d1c49c94d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-11T05:40:25.000Z" - }, - "end": { - "$date": "2022-04-11T05:41:53.000Z" - }, - "events": [ - { - "uuid": "8801b45a-0828-4d12-8be0-5fe328122550", - "start": { - "$date": "2022-04-11T05:40:25.000Z" - }, - "end": { - "$date": "2022-04-11T05:41:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5846c119-b8d1-4373-8ad0-e7b46f9a93d1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T05:50:25.000Z" - }, - "end": { - "$date": "2022-04-11T06:34:00.000Z" - }, - "events": [ - { - "uuid": "dc556f1e-33e6-4136-86a6-9f0f4cfbc349", - "start": { - "$date": "2022-04-11T05:50:25.000Z" - }, - "end": { - "$date": "2022-04-11T06:34:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b577d13-5ff6-4a66-b544-eed703287e1c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T07:28:54.000Z" - }, - "end": { - "$date": "2022-04-11T07:59:05.000Z" - }, - "events": [ - { - "uuid": "7a7379f9-dc2c-4351-a5ec-b069265acc8d", - "start": { - "$date": "2022-04-11T07:28:54.000Z" - }, - "end": { - "$date": "2022-04-11T07:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "99a6c085-8578-4530-8d0b-c170f5f4b2ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T08:01:10.000Z" - }, - "end": { - "$date": "2022-04-11T08:07:38.000Z" - }, - "events": [ - { - "uuid": "abac92f2-64bf-4382-9680-05c83d304027", - "start": { - "$date": "2022-04-11T08:01:10.000Z" - }, - "end": { - "$date": "2022-04-11T08:07:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8af725e6-e1de-4f58-a36d-016c0b35eb29", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T08:07:47.000Z" - }, - "end": { - "$date": "2022-04-11T08:19:19.000Z" - }, - "events": [ - { - "uuid": "252b7852-f868-4b6b-b585-f1913e79ccb1", - "start": { - "$date": "2022-04-11T08:07:47.000Z" - }, - "end": { - "$date": "2022-04-11T08:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dbfbb49c-07e0-4e55-83d0-5ecb818703be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T15:49:05.000Z" - }, - "end": { - "$date": "2022-04-11T15:54:12.000Z" - }, - "events": [ - { - "uuid": "98636125-1fe2-4f1a-80b3-f38d1a1aa75b", - "start": { - "$date": "2022-04-11T15:49:05.000Z" - }, - "end": { - "$date": "2022-04-11T15:54:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5b1f6a2f-7360-4dc7-97d8-3df45a506e0c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T16:11:09.000Z" - }, - "end": { - "$date": "2022-04-11T16:49:31.000Z" - }, - "events": [ - { - "uuid": "de9aa5b1-e960-4c21-ab95-9ca436686dca", - "start": { - "$date": "2022-04-11T16:11:09.000Z" - }, - "end": { - "$date": "2022-04-11T16:49:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "5712e487-3379-47a4-9fa0-382ad3465042", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T19:16:12.000Z" - }, - "end": { - "$date": "2022-04-11T19:33:33.000Z" - }, - "events": [ - { - "uuid": "de0d011c-3167-4d9f-b28b-1528c2539684", - "start": { - "$date": "2022-04-11T19:16:12.000Z" - }, - "end": { - "$date": "2022-04-11T19:33:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "657565b3-950f-4d42-af2c-2105e7512e2b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-11T19:59:21.000Z" - }, - "end": { - "$date": "2022-04-12T01:46:04.000Z" - }, - "events": [ - { - "uuid": "1f1ade16-7c60-4c6d-ba40-01ba2f84306c", - "start": { - "$date": "2022-04-11T19:59:21.000Z" - }, - "end": { - "$date": "2022-04-11T20:37:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c036c2c5-5288-4646-9cef-2dc0da61c427", - "start": { - "$date": "2022-04-11T20:37:21.000Z" - }, - "end": { - "$date": "2022-04-11T22:27:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "920f5307-0f46-41f2-8cdd-843ab6947483", - "start": { - "$date": "2022-04-11T22:27:21.000Z" - }, - "end": { - "$date": "2022-04-11T22:29:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72532ef0-3e0a-48e1-bace-f36594f2d103", - "start": { - "$date": "2022-04-11T22:29:21.000Z" - }, - "end": { - "$date": "2022-04-11T22:31:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e388e4d6-e87c-4ce3-9595-287f6ee52e76", - "start": { - "$date": "2022-04-11T22:31:21.000Z" - }, - "end": { - "$date": "2022-04-11T22:33:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "acfab3d7-bf82-4c53-af9b-fcdde8a6e205", - "start": { - "$date": "2022-04-11T22:33:21.000Z" - }, - "end": { - "$date": "2022-04-12T00:40:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c3c7991-33d4-4a28-8a3f-de2077efeeeb", - "start": { - "$date": "2022-04-12T00:40:21.000Z" - }, - "end": { - "$date": "2022-04-12T00:43:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9ab27687-0684-44f4-a873-c4d978ef5fe8", - "start": { - "$date": "2022-04-12T00:43:21.000Z" - }, - "end": { - "$date": "2022-04-12T01:19:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d141b47a-1faa-4b00-ab7f-ad2b45a060ae", - "start": { - "$date": "2022-04-12T01:19:21.000Z" - }, - "end": { - "$date": "2022-04-12T01:23:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "43e56875-5b9d-4ec0-a042-49cbea047b1c", - "start": { - "$date": "2022-04-12T01:23:21.000Z" - }, - "end": { - "$date": "2022-04-12T02:06:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8aec0221-d4c6-4410-9453-545bce93c557", - "start": { - "$date": "2022-04-12T02:06:21.000Z" - }, - "end": { - "$date": "2022-04-12T02:08:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1296607-463b-4a68-a81a-ba9d41e93c34", - "start": { - "$date": "2022-04-12T02:08:21.000Z" - }, - "end": { - "$date": "2022-04-12T01:46:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b549a70c-4920-4abc-92c9-e8e9721c1632", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-11T19:34:23.000Z" - }, - "end": { - "$date": "2022-04-11T19:51:34.000Z" - }, - "events": [ - { - "uuid": "9a2209cc-1981-4e18-b7e5-e471664b3a08", - "start": { - "$date": "2022-04-11T19:34:23.000Z" - }, - "end": { - "$date": "2022-04-11T19:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "bee49c84-9f16-4ffa-b32f-1533172cce32", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-11T19:47:05.000Z" - }, - "end": { - "$date": "2022-04-11T20:38:59.000Z" - }, - "events": [ - { - "uuid": "169de391-8708-47e4-b736-e24254763970", - "start": { - "$date": "2022-04-11T19:47:05.000Z" - }, - "end": { - "$date": "2022-04-11T20:38:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6981a8db-cd34-49a3-b16a-5d59821c1578", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-11T22:49:11.000Z" - }, - "end": { - "$date": "2022-04-11T23:22:06.000Z" - }, - "events": [ - { - "uuid": "41e619c5-bff1-4c04-8229-5b42579873d1", - "start": { - "$date": "2022-04-11T22:49:11.000Z" - }, - "end": { - "$date": "2022-04-11T23:14:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0d4a6582-e811-4171-8180-88de863df289", - "start": { - "$date": "2022-04-11T23:14:11.000Z" - }, - "end": { - "$date": "2022-04-11T23:19:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0127b9c2-91a3-49bf-99d7-c8acddf73373", - "start": { - "$date": "2022-04-11T23:19:11.000Z" - }, - "end": { - "$date": "2022-04-11T23:22:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8c8a251e-ee97-43c9-8630-0002c73e2bc5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-12T00:54:01.000Z" - }, - "end": { - "$date": "2022-04-12T02:34:22.000Z" - }, - "events": [ - { - "uuid": "73c10dd0-2380-4e93-97e0-cfb523f51d2d", - "start": { - "$date": "2022-04-12T00:54:01.000Z" - }, - "end": { - "$date": "2022-04-12T02:16:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c8c64b5-9321-4941-853c-b5d282665426", - "start": { - "$date": "2022-04-12T02:16:01.000Z" - }, - "end": { - "$date": "2022-04-12T02:31:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "378b1297-c2a3-4d90-9fbb-92b11f74ae3d", - "start": { - "$date": "2022-04-12T02:31:01.000Z" - }, - "end": { - "$date": "2022-04-12T02:34:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "bda63132-3e91-497c-90be-a97d3a938b19", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-12T01:39:11.000Z" - }, - "end": { - "$date": "2022-04-12T02:17:10.000Z" - }, - "events": [ - { - "uuid": "96a75ec8-9a6f-45d7-8bd4-e2b94cb7b629", - "start": { - "$date": "2022-04-12T01:39:11.000Z" - }, - "end": { - "$date": "2022-04-12T02:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "3c0a3b45-c6ba-4d50-ac62-bc9adcbcafbe", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-04-12T01:53:56.000Z" - }, - "end": { - "$date": "2022-04-12T01:54:53.000Z" - }, - "events": [ - { - "uuid": "20698567-8449-412d-ba5a-5cab630dc2d0", - "start": { - "$date": "2022-04-12T01:53:56.000Z" - }, - "end": { - "$date": "2022-04-12T01:54:53.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "7cf3a934-0665-47ba-a359-c33f36ab0114", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-04-12T01:55:28.000Z" - }, - "end": { - "$date": "2022-04-12T03:12:40.000Z" - }, - "events": [ - { - "uuid": "447fb334-6b7e-4fee-996b-483dc03b3f06", - "start": { - "$date": "2022-04-12T01:55:28.000Z" - }, - "end": { - "$date": "2022-04-12T03:12:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "99d4790b-9782-4f42-8f43-ed4af136f6be", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-12T01:57:22.000Z" - }, - "end": { - "$date": "2022-04-12T08:23:18.000Z" - }, - "events": [ - { - "uuid": "99ca8101-2814-49fa-ab1f-499ffe701547", - "start": { - "$date": "2022-04-12T01:57:22.000Z" - }, - "end": { - "$date": "2022-04-12T08:23:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "efbde912-9a3a-4cba-836c-8ba955e8aba2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-12T02:03:02.000Z" - }, - "end": { - "$date": "2022-04-12T03:52:14.000Z" - }, - "events": [ - { - "uuid": "973a9775-11c3-4775-8b8a-fb09c0b73eb2", - "start": { - "$date": "2022-04-12T02:03:02.000Z" - }, - "end": { - "$date": "2022-04-12T03:52:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6aa7996b-81ce-45c6-810f-46a5ff9cc8d3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-12T02:16:01.000Z" - }, - "end": { - "$date": "2022-04-12T02:20:42.000Z" - }, - "events": [ - { - "uuid": "2cc774f0-5564-4ac4-9191-cadf174c4abd", - "start": { - "$date": "2022-04-12T02:16:01.000Z" - }, - "end": { - "$date": "2022-04-12T02:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "39d75647-7c56-4e7d-b29b-628ba311a5aa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-12T02:19:54.000Z" - }, - "end": { - "$date": "2022-04-12T02:36:51.000Z" - }, - "events": [ - { - "uuid": "9b64a3fa-f150-477a-b05f-f2437a58ba49", - "start": { - "$date": "2022-04-12T02:19:54.000Z" - }, - "end": { - "$date": "2022-04-12T02:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "775a1a6b-5911-419b-931c-3f00c128c696", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-12T02:49:23.000Z" - }, - "end": { - "$date": "2022-04-12T05:24:51.000Z" - }, - "events": [ - { - "uuid": "8b5625fb-e34d-4d0c-b40e-d515f277f26e", - "start": { - "$date": "2022-04-12T02:49:23.000Z" - }, - "end": { - "$date": "2022-04-12T05:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "daa0fed5-f3cd-4b05-80d1-2160d881d405", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-12T03:12:38.000Z" - }, - "end": { - "$date": "2022-04-12T07:41:14.000Z" - }, - "events": [ - { - "uuid": "93b3935b-0b4f-40a9-bc50-44b42350154d", - "start": { - "$date": "2022-04-12T03:12:38.000Z" - }, - "end": { - "$date": "2022-04-12T07:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "98464675-562d-4e6f-ab56-78e7fcb3e1e5", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-12T04:52:45.000Z" - }, - "end": { - "$date": "2022-04-12T14:16:31.000Z" - }, - "events": [ - { - "uuid": "b72c45a3-e53e-4e3a-81ea-0eb9663a40a3", - "start": { - "$date": "2022-04-12T04:52:45.000Z" - }, - "end": { - "$date": "2022-04-12T05:58:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e9029a2f-9ac7-4d0f-a8d8-0baeead82cd0", - "start": { - "$date": "2022-04-12T05:58:45.000Z" - }, - "end": { - "$date": "2022-04-12T06:01:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "721c003d-5505-4a56-8cca-585d7e06d285", - "start": { - "$date": "2022-04-12T06:01:45.000Z" - }, - "end": { - "$date": "2022-04-12T06:03:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc49e079-7761-4b6d-8183-c215f2f4132e", - "start": { - "$date": "2022-04-12T06:03:45.000Z" - }, - "end": { - "$date": "2022-04-12T14:16:31.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf99c6cf-a03d-4145-908d-9310a7eec053", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-12T04:28:04.000Z" - }, - "end": { - "$date": "2022-04-12T04:50:16.000Z" - }, - "events": [ - { - "uuid": "ede2c582-d8cf-48a0-95d8-5094f7ff50d2", - "start": { - "$date": "2022-04-12T04:28:04.000Z" - }, - "end": { - "$date": "2022-04-12T04:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "4dfc737b-24e3-47fe-a4d3-48384942acb4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-12T04:44:36.000Z" - }, - "end": { - "$date": "2022-04-12T05:51:12.000Z" - }, - "events": [ - { - "uuid": "afe70ae6-1231-47da-af26-25b16ce92e4a", - "start": { - "$date": "2022-04-12T04:44:36.000Z" - }, - "end": { - "$date": "2022-04-12T05:51:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "39a6b993-8f32-4610-ae84-cbe3089cb43c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-12T04:56:46.000Z" - }, - "end": { - "$date": "2022-04-12T05:15:08.000Z" - }, - "events": [ - { - "uuid": "97fa99c1-0a7e-4e9c-a127-27975ae83102", - "start": { - "$date": "2022-04-12T04:56:46.000Z" - }, - "end": { - "$date": "2022-04-12T05:15:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "565993fc-9a22-4ed3-8ed1-54e3e545a849", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-12T08:45:07.000Z" - }, - "end": { - "$date": "2022-04-12T10:52:56.000Z" - }, - "events": [ - { - "uuid": "2f76c109-d670-49dd-b768-bd8c4717b7b9", - "start": { - "$date": "2022-04-12T08:45:07.000Z" - }, - "end": { - "$date": "2022-04-12T10:52:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "c352157e-5ab9-40c5-94b8-226e58bb6db9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-12T15:25:18.000Z" - }, - "end": { - "$date": "2022-04-12T15:39:13.000Z" - }, - "events": [ - { - "uuid": "1d9b5cfc-ea3e-497c-9f48-33a0a63beace", - "start": { - "$date": "2022-04-12T15:25:18.000Z" - }, - "end": { - "$date": "2022-04-12T15:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "fc7a413f-b319-4740-ba75-3172c62dd42f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-12T16:35:45.000Z" - }, - "end": { - "$date": "2022-04-12T16:36:14.000Z" - }, - "events": [ - { - "uuid": "a3473228-b63f-4b67-aa0b-56c491df5230", - "start": { - "$date": "2022-04-12T16:35:45.000Z" - }, - "end": { - "$date": "2022-04-12T16:36:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "461fad1a-ab0c-479b-82ef-8ca1b04ebf28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-12T20:48:04.000Z" - }, - "end": { - "$date": "2022-04-12T20:54:37.000Z" - }, - "events": [ - { - "uuid": "2806107c-a4bf-4303-b14d-abb05bd5bfd8", - "start": { - "$date": "2022-04-12T20:48:04.000Z" - }, - "end": { - "$date": "2022-04-12T20:54:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3f7eec0-4341-4f08-be65-8921c5ea6b4b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-12T21:03:36.000Z" - }, - "end": { - "$date": "2022-04-12T21:20:09.000Z" - }, - "events": [ - { - "uuid": "f83aa739-0cef-4ef3-bd14-5fc5be423eb4", - "start": { - "$date": "2022-04-12T21:03:36.000Z" - }, - "end": { - "$date": "2022-04-12T21:20:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "994b1a6b-4dba-4a64-b4dc-507eeb4ed73c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-12T21:26:58.000Z" - }, - "end": { - "$date": "2022-04-12T21:50:03.000Z" - }, - "events": [ - { - "uuid": "e63cecd9-bc2d-46c4-a772-bd3289935ca4", - "start": { - "$date": "2022-04-12T21:26:58.000Z" - }, - "end": { - "$date": "2022-04-12T21:50:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "1d14f733-6308-4c88-8f47-923aabc2e2be", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-12T22:20:49.000Z" - }, - "end": { - "$date": "2022-04-12T22:27:24.000Z" - }, - "events": [ - { - "uuid": "be3fa920-6167-4bb5-a92c-b7ef12d35deb", - "start": { - "$date": "2022-04-12T22:20:49.000Z" - }, - "end": { - "$date": "2022-04-12T22:27:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "36775b47-5208-4d37-9ad7-36e8226a31f3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-12T22:54:03.000Z" - }, - "end": { - "$date": "2022-04-13T00:39:00.000Z" - }, - "events": [ - { - "uuid": "61c9a7b7-43c4-449d-aaed-6c24683fbd99", - "start": { - "$date": "2022-04-12T22:54:03.000Z" - }, - "end": { - "$date": "2022-04-13T00:39:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "17a3caa4-a9be-48e8-ac08-fc3965ac4714", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-12T22:55:48.000Z" - }, - "end": { - "$date": "2022-04-12T23:11:18.000Z" - }, - "events": [ - { - "uuid": "ab02496f-b553-447e-9a0e-700fa438f941", - "start": { - "$date": "2022-04-12T22:55:48.000Z" - }, - "end": { - "$date": "2022-04-12T23:11:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "58ab6456-472d-48c5-b329-2dcc581b9fe1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-12T23:46:13.000Z" - }, - "end": { - "$date": "2022-04-13T03:19:28.000Z" - }, - "events": [ - { - "uuid": "83a92ea1-f365-40fe-b431-0740e03ccb68", - "start": { - "$date": "2022-04-12T23:46:13.000Z" - }, - "end": { - "$date": "2022-04-13T00:01:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ede84cb-c537-4271-84b6-6b79ec6dccd0", - "start": { - "$date": "2022-04-13T00:01:13.000Z" - }, - "end": { - "$date": "2022-04-13T00:23:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4eebc311-4d74-4e2b-94e8-0cc3e2c2399d", - "start": { - "$date": "2022-04-13T00:23:13.000Z" - }, - "end": { - "$date": "2022-04-13T00:43:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b743b0f9-d969-4a16-98af-32a3a76eee40", - "start": { - "$date": "2022-04-13T00:43:13.000Z" - }, - "end": { - "$date": "2022-04-13T01:33:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "13770727-1291-427c-8190-92cdfc024bbb", - "start": { - "$date": "2022-04-13T01:33:13.000Z" - }, - "end": { - "$date": "2022-04-13T02:04:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d15d88f9-36d0-47d4-aaef-e5b1d1907110", - "start": { - "$date": "2022-04-13T02:04:13.000Z" - }, - "end": { - "$date": "2022-04-13T02:09:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39330589-5efa-43fe-9855-57fdc51b1e43", - "start": { - "$date": "2022-04-13T02:09:13.000Z" - }, - "end": { - "$date": "2022-04-13T02:28:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d8fa67bb-ded3-4e7a-9326-c44b7f9205fd", - "start": { - "$date": "2022-04-13T02:28:13.000Z" - }, - "end": { - "$date": "2022-04-13T02:39:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fbbb1dcf-ae6f-4d9d-8dfd-44d2bfc41880", - "start": { - "$date": "2022-04-13T02:39:13.000Z" - }, - "end": { - "$date": "2022-04-13T03:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1b3f2cd8-f193-42d6-a388-837a3fadaffe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-13T00:43:34.000Z" - }, - "end": { - "$date": "2022-04-13T02:03:05.000Z" - }, - "events": [ - { - "uuid": "c83b3e90-e2d6-4fcc-a2cb-34cec803a5b8", - "start": { - "$date": "2022-04-13T00:43:34.000Z" - }, - "end": { - "$date": "2022-04-13T02:03:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "de03c41f-4500-4337-943a-5adf008375aa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-13T00:44:08.000Z" - }, - "end": { - "$date": "2022-04-13T04:57:16.000Z" - }, - "events": [ - { - "uuid": "29f73179-6c47-4b63-a500-cec5afe5f6c7", - "start": { - "$date": "2022-04-13T00:44:08.000Z" - }, - "end": { - "$date": "2022-04-13T04:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e36ee8bb-0687-42fd-9367-999ce2d9f6e1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-13T02:13:07.000Z" - }, - "end": { - "$date": "2022-04-13T05:02:26.000Z" - }, - "events": [ - { - "uuid": "f131659c-3578-49c3-987d-211e6e033968", - "start": { - "$date": "2022-04-13T02:13:07.000Z" - }, - "end": { - "$date": "2022-04-13T05:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "69cb8868-b827-43ee-a7fd-a46416c3fcd8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-13T02:20:13.000Z" - }, - "end": { - "$date": "2022-04-13T03:16:37.000Z" - }, - "events": [ - { - "uuid": "2623b661-9008-4084-ad28-1dc120ee602f", - "start": { - "$date": "2022-04-13T02:20:13.000Z" - }, - "end": { - "$date": "2022-04-13T03:16:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "df504c21-903d-4075-b7f6-45ed19be2963", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-13T02:40:36.000Z" - }, - "end": { - "$date": "2022-04-13T03:27:46.000Z" - }, - "events": [ - { - "uuid": "32825bd2-62c0-4cbb-8f39-de4bc89016fe", - "start": { - "$date": "2022-04-13T02:40:36.000Z" - }, - "end": { - "$date": "2022-04-13T03:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cce84c60-3972-459f-ba90-cb37278002b8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-13T03:21:54.000Z" - }, - "end": { - "$date": "2022-04-13T06:21:21.000Z" - }, - "events": [ - { - "uuid": "1c24ae42-3e4b-42ba-8b73-adac336782d8", - "start": { - "$date": "2022-04-13T03:21:54.000Z" - }, - "end": { - "$date": "2022-04-13T06:21:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f3a1829c-68a5-4246-ac0f-fa38c1070d88", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-13T03:29:43.000Z" - }, - "end": { - "$date": "2022-04-13T04:07:41.000Z" - }, - "events": [ - { - "uuid": "7e607e2c-8d6c-4ea4-98cc-42ae0a433bbb", - "start": { - "$date": "2022-04-13T03:29:43.000Z" - }, - "end": { - "$date": "2022-04-13T04:07:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "de6ff2a1-8bd3-4b72-9fcd-7fd0d5446f9e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-13T04:12:22.000Z" - }, - "end": { - "$date": "2022-04-13T04:29:32.000Z" - }, - "events": [ - { - "uuid": "5d5d7f56-a20d-4db5-aeca-883b7cefd6b6", - "start": { - "$date": "2022-04-13T04:12:22.000Z" - }, - "end": { - "$date": "2022-04-13T04:29:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "cd80b4fd-f9a1-40ca-b97e-dfb716187e2f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-13T04:33:23.000Z" - }, - "end": { - "$date": "2022-04-13T06:18:24.000Z" - }, - "events": [ - { - "uuid": "5c8d2978-cbb5-434b-9e32-7e6ef799459a", - "start": { - "$date": "2022-04-13T04:33:23.000Z" - }, - "end": { - "$date": "2022-04-13T06:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "bddf02ef-f45c-433f-ba63-749d273c8d4a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-13T04:54:20.000Z" - }, - "end": { - "$date": "2022-04-13T05:00:15.000Z" - }, - "events": [ - { - "uuid": "5817c126-7a88-4f85-8372-ec9d5a855a5d", - "start": { - "$date": "2022-04-13T04:54:20.000Z" - }, - "end": { - "$date": "2022-04-13T05:00:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "78353070-bb13-433e-b7c9-29418b616bf7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-13T04:57:14.000Z" - }, - "end": { - "$date": "2022-04-13T07:02:34.000Z" - }, - "events": [ - { - "uuid": "39bfbf38-1111-43e8-aa46-7f82867d0b9b", - "start": { - "$date": "2022-04-13T04:57:14.000Z" - }, - "end": { - "$date": "2022-04-13T07:02:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c1f2ee85-6909-4e32-b1de-fb444e501068", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-13T05:06:07.000Z" - }, - "end": { - "$date": "2022-04-13T07:02:21.000Z" - }, - "events": [ - { - "uuid": "efa0b50a-dbf3-477b-836e-35c51c053958", - "start": { - "$date": "2022-04-13T05:06:07.000Z" - }, - "end": { - "$date": "2022-04-13T07:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "387447ef-ff33-405f-8d03-c43a58d8b2f7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-13T05:36:06.000Z" - }, - "end": { - "$date": "2022-04-13T05:58:07.000Z" - }, - "events": [ - { - "uuid": "85a1971d-5237-49d9-87c7-7b688a10f290", - "start": { - "$date": "2022-04-13T05:36:06.000Z" - }, - "end": { - "$date": "2022-04-13T05:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "ced14e0f-8179-42be-bb04-e7b0167fc3b7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-13T07:42:38.000Z" - }, - "end": { - "$date": "2022-04-13T10:52:58.000Z" - }, - "events": [ - { - "uuid": "1b28d20b-b106-47e3-8ae7-d983df2a3f3b", - "start": { - "$date": "2022-04-13T07:42:38.000Z" - }, - "end": { - "$date": "2022-04-13T10:52:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48b78258-7812-4a57-bd14-9705be646718", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-13T16:05:07.000Z" - }, - "end": { - "$date": "2022-04-13T16:36:43.000Z" - }, - "events": [ - { - "uuid": "9fe546e2-5916-497b-bf75-f481f923b74f", - "start": { - "$date": "2022-04-13T16:05:07.000Z" - }, - "end": { - "$date": "2022-04-13T16:36:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c4e9c50d-345b-4eff-8a35-3637f6afc72a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-13T16:59:00.000Z" - }, - "end": { - "$date": "2022-04-13T17:21:33.000Z" - }, - "events": [ - { - "uuid": "ac0209ee-6b80-45bf-b59b-db5fcb3e6a07", - "start": { - "$date": "2022-04-13T16:59:00.000Z" - }, - "end": { - "$date": "2022-04-13T17:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fc0a180b-f31e-4979-8236-f5f40d940cbf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-13T20:38:44.000Z" - }, - "end": { - "$date": "2022-04-13T20:41:14.000Z" - }, - "events": [ - { - "uuid": "e6d94d89-6963-4ece-afdd-b0e9a956fc67", - "start": { - "$date": "2022-04-13T20:38:44.000Z" - }, - "end": { - "$date": "2022-04-13T20:41:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "169e70d8-40a1-409d-a3ff-14267008f7a0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-13T21:27:24.000Z" - }, - "end": { - "$date": "2022-04-13T21:53:12.000Z" - }, - "events": [ - { - "uuid": "e1eab132-4cad-4d23-9047-cfd61d88183b", - "start": { - "$date": "2022-04-13T21:27:24.000Z" - }, - "end": { - "$date": "2022-04-13T21:53:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7010215b-7645-4111-84ca-78afd4d26024", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-13T21:41:25.000Z" - }, - "end": { - "$date": "2022-04-14T01:12:03.000Z" - }, - "events": [ - { - "uuid": "fa9325db-336b-4ea8-bbdf-6e88b554c635", - "start": { - "$date": "2022-04-13T21:41:25.000Z" - }, - "end": { - "$date": "2022-04-14T01:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "72eee066-7a9a-4dad-b386-6e87dc37b280", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-13T22:45:11.000Z" - }, - "end": { - "$date": "2022-04-13T23:51:17.000Z" - }, - "events": [ - { - "uuid": "9ce6c415-bfc6-44a4-9b50-af090764053e", - "start": { - "$date": "2022-04-13T22:45:11.000Z" - }, - "end": { - "$date": "2022-04-13T23:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1400b3d7-c9c6-402b-913f-126ebd32ec6b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-13T22:58:16.000Z" - }, - "end": { - "$date": "2022-04-14T00:33:31.000Z" - }, - "events": [ - { - "uuid": "56030628-0674-4d5e-917c-351209ef3c31", - "start": { - "$date": "2022-04-13T22:58:16.000Z" - }, - "end": { - "$date": "2022-04-14T00:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "d43e6daf-64c8-445e-8dce-376facd66bec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-13T23:52:01.000Z" - }, - "end": { - "$date": "2022-04-14T03:55:24.000Z" - }, - "events": [ - { - "uuid": "6426ec1a-a8ac-4bc8-9392-58c05824e8e8", - "start": { - "$date": "2022-04-13T23:52:01.000Z" - }, - "end": { - "$date": "2022-04-14T03:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c2da45cf-bb09-4450-9cb2-a93b18aad9dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-14T00:50:02.000Z" - }, - "end": { - "$date": "2022-04-14T01:27:30.000Z" - }, - "events": [ - { - "uuid": "ec0ab0bc-97af-41d3-a7c5-8916e5399d09", - "start": { - "$date": "2022-04-14T00:50:02.000Z" - }, - "end": { - "$date": "2022-04-14T01:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "504297b1-c243-4a53-b984-0aba5aa6799f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T01:12:23.000Z" - }, - "end": { - "$date": "2022-04-14T01:16:44.000Z" - }, - "events": [ - { - "uuid": "fd55c4ff-34a1-4b75-ba39-13e8d37366e5", - "start": { - "$date": "2022-04-14T01:12:23.000Z" - }, - "end": { - "$date": "2022-04-14T01:16:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "6101b344-f1f1-4b83-91b1-380d053344eb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T01:16:59.000Z" - }, - "end": { - "$date": "2022-04-14T01:22:59.000Z" - }, - "events": [ - { - "uuid": "c6e38ec0-3975-4929-a30d-09445f208001", - "start": { - "$date": "2022-04-14T01:16:59.000Z" - }, - "end": { - "$date": "2022-04-14T01:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "567390a3-fc14-4bc2-bf8e-c7864e9f33d4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-14T01:20:54.000Z" - }, - "end": { - "$date": "2022-04-14T01:29:56.000Z" - }, - "events": [ - { - "uuid": "19b74f1a-d6c9-4ea1-9e2a-cf2e5a255c5b", - "start": { - "$date": "2022-04-14T01:20:54.000Z" - }, - "end": { - "$date": "2022-04-14T01:29:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cde8b760-8eb6-4217-a8dc-7120822fa033", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T01:23:39.000Z" - }, - "end": { - "$date": "2022-04-14T06:07:13.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-14T01:23:39.000Z" - }, - "end": { - "$date": "2022-04-14T06:07:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "e5b3521f-20dc-461b-aba5-161b962c61bf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-14T01:30:15.000Z" - }, - "end": { - "$date": "2022-04-14T01:49:14.000Z" - }, - "events": [ - { - "uuid": "79163634-06b7-4550-8dc0-60b3ecd679a6", - "start": { - "$date": "2022-04-14T01:30:15.000Z" - }, - "end": { - "$date": "2022-04-14T01:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8600e9ea-b5c7-49ae-91bc-acc02dc7d8ab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-14T01:34:41.000Z" - }, - "end": { - "$date": "2022-04-14T02:48:12.000Z" - }, - "events": [ - { - "uuid": "c0600be3-d6f4-4ced-b223-506c2a2113cd", - "start": { - "$date": "2022-04-14T01:34:41.000Z" - }, - "end": { - "$date": "2022-04-14T02:48:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "27dbfa2e-3b7e-45c2-91b9-c51844fe3b8b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-14T01:49:37.000Z" - }, - "end": { - "$date": "2022-04-14T02:49:00.000Z" - }, - "events": [ - { - "uuid": "ce3ad4de-6560-4061-a0cb-99112edc13e0", - "start": { - "$date": "2022-04-14T01:49:37.000Z" - }, - "end": { - "$date": "2022-04-14T02:01:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "013a3b5f-32af-4038-82d8-ba0cb530a358", - "start": { - "$date": "2022-04-14T02:01:37.000Z" - }, - "end": { - "$date": "2022-04-14T02:05:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99caed75-a04b-40a1-958f-e88895fbd4ed", - "start": { - "$date": "2022-04-14T02:05:37.000Z" - }, - "end": { - "$date": "2022-04-14T02:18:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c61d0551-f1b3-42b6-8513-682c315efc62", - "start": { - "$date": "2022-04-14T02:18:37.000Z" - }, - "end": { - "$date": "2022-04-14T02:20:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e4a916d1-c021-4c85-881e-fefdfd45d614", - "start": { - "$date": "2022-04-14T02:20:37.000Z" - }, - "end": { - "$date": "2022-04-14T02:49:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ba014545-0cdb-455e-bae1-af4c936c94e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-14T01:58:56.000Z" - }, - "end": { - "$date": "2022-04-14T02:30:48.000Z" - }, - "events": [ - { - "uuid": "f0d5a70c-7de8-41c2-b9a0-1fb3f4b0f635", - "start": { - "$date": "2022-04-14T01:58:56.000Z" - }, - "end": { - "$date": "2022-04-14T02:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "3ba25fe8-2a32-4ab0-8a54-c3a030b84e77", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-14T02:31:30.000Z" - }, - "end": { - "$date": "2022-04-14T05:02:45.000Z" - }, - "events": [ - { - "uuid": "b868b9d6-f8b7-4abe-a968-3e4ae39f619c", - "start": { - "$date": "2022-04-14T02:31:30.000Z" - }, - "end": { - "$date": "2022-04-14T05:02:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "ac143e45-dd34-4886-af58-63c03eaedd14", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-14T02:49:07.000Z" - }, - "end": { - "$date": "2022-04-14T03:36:47.000Z" - }, - "events": [ - { - "uuid": "4231762c-ea8e-4f45-b40b-53f08abef941", - "start": { - "$date": "2022-04-14T02:49:07.000Z" - }, - "end": { - "$date": "2022-04-14T03:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "068b2496-b12d-4453-80e6-241f79c741b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-14T03:04:17.000Z" - }, - "end": { - "$date": "2022-04-14T03:15:23.000Z" - }, - "events": [ - { - "uuid": "9732cbee-5e45-4370-9ff3-2b172b2aa714", - "start": { - "$date": "2022-04-14T03:04:17.000Z" - }, - "end": { - "$date": "2022-04-14T03:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "de7daaa2-aa13-454c-9402-0ac99d7dc1a1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-14T03:15:38.000Z" - }, - "end": { - "$date": "2022-04-14T06:04:44.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-14T03:15:38.000Z" - }, - "end": { - "$date": "2022-04-14T06:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "941f3bd9-838a-4de0-9a7b-1f3363f5e899", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-14T03:18:19.000Z" - }, - "end": { - "$date": "2022-04-14T04:12:18.000Z" - }, - "events": [ - { - "uuid": "2eb89879-c028-41f5-8bf3-c2da92f7f55f", - "start": { - "$date": "2022-04-14T03:18:19.000Z" - }, - "end": { - "$date": "2022-04-14T04:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "fc4e6d99-16d8-4adc-b68f-d43fe6ee708f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-14T04:11:16.000Z" - }, - "end": { - "$date": "2022-04-14T04:25:08.000Z" - }, - "events": [ - { - "uuid": "138c087a-8b63-49cd-8cd2-f8e570188f0f", - "start": { - "$date": "2022-04-14T04:11:16.000Z" - }, - "end": { - "$date": "2022-04-14T04:25:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7a881dd3-5c99-42e1-af1d-2e7e150cfc11", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-14T04:28:38.000Z" - }, - "end": { - "$date": "2022-04-14T05:09:32.000Z" - }, - "events": [ - { - "uuid": "47731b66-1e40-4d38-bbb0-86072609f67e", - "start": { - "$date": "2022-04-14T04:28:38.000Z" - }, - "end": { - "$date": "2022-04-14T05:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c05e1132-de23-4f6a-a573-dd57e1b69765", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-14T05:20:16.000Z" - }, - "end": { - "$date": "2022-04-14T05:56:21.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-14T05:20:16.000Z" - }, - "end": { - "$date": "2022-04-14T05:56:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d96db441-22ca-4b73-88f4-e13618d0f538", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-14T05:15:42.000Z" - }, - "end": { - "$date": "2022-04-14T07:29:46.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-04-14T05:15:42.000Z" - }, - "end": { - "$date": "2022-04-14T07:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "aa9b245e-e6bd-4352-a5cf-ce95990633c2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-14T05:52:57.000Z" - }, - "end": { - "$date": "2022-04-14T07:59:14.000Z" - }, - "events": [ - { - "uuid": "b099e535-beb7-4b2d-9d07-5bfec4e99e58", - "start": { - "$date": "2022-04-14T05:52:57.000Z" - }, - "end": { - "$date": "2022-04-14T07:59:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6d354e19-c096-4dd5-8f0b-fdcb5f28b65e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-14T06:22:39.000Z" - }, - "end": { - "$date": "2022-04-14T06:44:04.000Z" - }, - "events": [ - { - "uuid": "799c9cdf-75f1-4b0a-aeb0-a43436e7f7c4", - "start": { - "$date": "2022-04-14T06:22:39.000Z" - }, - "end": { - "$date": "2022-04-14T06:44:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a11d6852-55f9-40c1-acef-b18be9452c1d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-14T06:20:25.000Z" - }, - "end": { - "$date": "2022-04-14T07:38:55.000Z" - }, - "events": [ - { - "uuid": "07607599-014f-455f-b76d-91c86f7ea62f", - "start": { - "$date": "2022-04-14T06:20:25.000Z" - }, - "end": { - "$date": "2022-04-14T07:38:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b269c046-ece2-47a0-861f-5da6dc5031ae", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T19:13:28.000Z" - }, - "end": { - "$date": "2022-04-14T19:14:58.000Z" - }, - "events": [ - { - "uuid": "7e384572-a953-424a-8a32-61d268af877d", - "start": { - "$date": "2022-04-14T19:13:28.000Z" - }, - "end": { - "$date": "2022-04-14T19:14:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "68365ee8-58a1-45f8-94b2-e3cc2a37a712", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T19:19:59.000Z" - }, - "end": { - "$date": "2022-04-14T19:53:42.000Z" - }, - "events": [ - { - "uuid": "722b1ab4-e5b1-4027-9a0c-24301e06310b", - "start": { - "$date": "2022-04-14T19:19:59.000Z" - }, - "end": { - "$date": "2022-04-14T19:53:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1975a305-3179-4245-95d1-b3a192399b81", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-14T21:13:33.000Z" - }, - "end": { - "$date": "2022-04-14T22:13:11.000Z" - }, - "events": [ - { - "uuid": "1231ca09-557c-4dca-a388-54580a5498ca", - "start": { - "$date": "2022-04-14T21:13:33.000Z" - }, - "end": { - "$date": "2022-04-14T22:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "15228558-70ff-4553-9a82-e96f15d61821", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T21:51:29.000Z" - }, - "end": { - "$date": "2022-04-14T22:11:11.000Z" - }, - "events": [ - { - "uuid": "8592b9d6-9978-4c6a-9747-7213738dd317", - "start": { - "$date": "2022-04-14T21:51:29.000Z" - }, - "end": { - "$date": "2022-04-14T22:11:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "3f72363d-53d8-41b1-9097-230d4b5bb935", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T22:11:46.000Z" - }, - "end": { - "$date": "2022-04-14T22:27:12.000Z" - }, - "events": [ - { - "uuid": "15b413f0-0ea6-423f-8bea-aee24bbc624d", - "start": { - "$date": "2022-04-14T22:11:46.000Z" - }, - "end": { - "$date": "2022-04-14T22:27:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "32780a50-5503-4511-aab9-597e46b2244e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-14T23:02:03.000Z" - }, - "end": { - "$date": "2022-04-15T01:06:08.000Z" - }, - "events": [ - { - "uuid": "cfebbf8f-a6b4-4008-9e8b-0bf8b3a3dec5", - "start": { - "$date": "2022-04-14T23:02:03.000Z" - }, - "end": { - "$date": "2022-04-15T01:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f5c74d46-258c-4e19-8245-2a7388a0a867", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-14T23:04:43.000Z" - }, - "end": { - "$date": "2022-04-15T00:37:41.000Z" - }, - "events": [ - { - "uuid": "426ddbfd-78be-4b73-8db1-eaa7a84aa89a", - "start": { - "$date": "2022-04-14T23:04:43.000Z" - }, - "end": { - "$date": "2022-04-15T00:37:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d09a1b0a-a229-4804-9f4f-046af8d378a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-14T23:14:56.000Z" - }, - "end": { - "$date": "2022-04-15T05:57:12.000Z" - }, - "events": [ - { - "uuid": "09658287-7755-4173-a16d-68b1546f12c0", - "start": { - "$date": "2022-04-14T23:14:56.000Z" - }, - "end": { - "$date": "2022-04-15T05:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c37b16b4-cea4-4160-81c0-3d514dcc86b3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T00:37:21.000Z" - }, - "end": { - "$date": "2022-04-15T01:39:32.000Z" - }, - "events": [ - { - "uuid": "2c5bbf6f-0f46-46aa-ab23-81b9f5e5ddbc", - "start": { - "$date": "2022-04-15T00:37:21.000Z" - }, - "end": { - "$date": "2022-04-15T00:47:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f450b29-e860-4cca-8965-a72ab8d92556", - "start": { - "$date": "2022-04-15T00:47:21.000Z" - }, - "end": { - "$date": "2022-04-15T00:52:21.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aaa711ca-68be-4b64-99c3-4ca56843d2e1", - "start": { - "$date": "2022-04-15T00:52:21.000Z" - }, - "end": { - "$date": "2022-04-15T01:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cf6c53f1-653f-4b07-be37-f5c5335907f0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-15T00:52:48.000Z" - }, - "end": { - "$date": "2022-04-15T00:57:14.000Z" - }, - "events": [ - { - "uuid": "3391535d-687b-4ca4-817b-7c8872b045e5", - "start": { - "$date": "2022-04-15T00:52:48.000Z" - }, - "end": { - "$date": "2022-04-15T00:57:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "a00344fb-5b0d-455d-b083-fa9fe3109ef8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-15T01:08:35.000Z" - }, - "end": { - "$date": "2022-04-15T12:42:24.000Z" - }, - "events": [ - { - "uuid": "f486ea4c-1c85-476c-9e62-01215718aa10", - "start": { - "$date": "2022-04-15T01:08:35.000Z" - }, - "end": { - "$date": "2022-04-15T01:11:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "35ddb942-23be-4c86-84fa-e0cc61b6e276", - "start": { - "$date": "2022-04-15T01:11:35.000Z" - }, - "end": { - "$date": "2022-04-15T12:42:24.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "dfd0583f-3548-4efd-afdb-7e5a7913c506", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-15T01:09:08.000Z" - }, - "end": { - "$date": "2022-04-15T02:57:46.000Z" - }, - "events": [ - { - "uuid": "63f2503d-3fc2-43b5-b844-04c6118fce75", - "start": { - "$date": "2022-04-15T01:09:08.000Z" - }, - "end": { - "$date": "2022-04-15T02:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2aa9266d-2ce6-44e7-ad10-407f27229e4e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T01:39:43.000Z" - }, - "end": { - "$date": "2022-04-15T01:54:43.000Z" - }, - "events": [ - { - "uuid": "4d6d745e-37bd-4107-a422-8f5b73b3bac5", - "start": { - "$date": "2022-04-15T01:39:43.000Z" - }, - "end": { - "$date": "2022-04-15T01:54:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1779cf58-9dee-4abe-8104-cf1dc3793cc2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-15T03:59:16.000Z" - }, - "end": { - "$date": "2022-04-15T03:59:32.000Z" - }, - "events": [ - { - "uuid": "e9ce0e12-f860-46eb-9a44-0174f0d4f422", - "start": { - "$date": "2022-04-15T03:59:16.000Z" - }, - "end": { - "$date": "2022-04-15T03:59:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd3213b3-2417-459d-9d6f-92450e8191ce", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-15T01:59:48.000Z" - }, - "end": { - "$date": "2022-04-15T05:11:53.000Z" - }, - "events": [ - { - "uuid": "f7fdbf03-8c1a-4120-a044-e73006c11b8f", - "start": { - "$date": "2022-04-15T01:59:48.000Z" - }, - "end": { - "$date": "2022-04-15T05:11:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "5e263966-94e2-45c3-bc65-359b89da50a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-15T03:05:12.000Z" - }, - "end": { - "$date": "2022-04-15T03:18:54.000Z" - }, - "events": [ - { - "uuid": "a9f631fc-4630-4b77-8f2d-38cc10accefd", - "start": { - "$date": "2022-04-15T03:05:12.000Z" - }, - "end": { - "$date": "2022-04-15T03:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "d814231f-0d9d-4a56-88ba-a18a6bc4f7d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T03:09:18.000Z" - }, - "end": { - "$date": "2022-04-15T03:53:26.000Z" - }, - "events": [ - { - "uuid": "572711e6-b57f-44ba-b8d4-7ce4160ca420", - "start": { - "$date": "2022-04-15T03:09:18.000Z" - }, - "end": { - "$date": "2022-04-15T03:53:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a1807bc7-67e1-49de-bd91-bdea6dbd13d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T03:54:06.000Z" - }, - "end": { - "$date": "2022-04-15T04:32:12.000Z" - }, - "events": [ - { - "uuid": "78993fc1-0f32-4bd3-ab9d-29ced639e43a", - "start": { - "$date": "2022-04-15T03:54:06.000Z" - }, - "end": { - "$date": "2022-04-15T04:32:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0be8ed39-0116-452c-b096-ce5b6a7f7316", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T04:32:21.000Z" - }, - "end": { - "$date": "2022-04-15T04:34:50.000Z" - }, - "events": [ - { - "uuid": "e45e95ef-046d-4c37-bbd2-ce6de0bf88bf", - "start": { - "$date": "2022-04-15T04:32:21.000Z" - }, - "end": { - "$date": "2022-04-15T04:34:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "24be9dbe-b68b-464b-83cc-d2ed2443b044", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T04:35:03.000Z" - }, - "end": { - "$date": "2022-04-15T06:42:27.000Z" - }, - "events": [ - { - "uuid": "20a70a57-c01d-4097-8357-55f031a9ec78", - "start": { - "$date": "2022-04-15T04:35:03.000Z" - }, - "end": { - "$date": "2022-04-15T06:42:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4cf36dc1-92c0-4c22-ad83-ca6c27c530f2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-15T05:00:40.000Z" - }, - "end": { - "$date": "2022-04-15T07:06:50.000Z" - }, - "events": [ - { - "uuid": "64ddcea5-63aa-42e3-b95a-03f3002351de", - "start": { - "$date": "2022-04-15T05:00:40.000Z" - }, - "end": { - "$date": "2022-04-15T07:06:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c7b89720-e17e-4d36-855f-8cf184707870", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-15T06:40:21.000Z" - }, - "end": { - "$date": "2022-04-15T06:42:51.000Z" - }, - "events": [ - { - "uuid": "edd542c0-b020-4a28-a6d1-e22676e7bb24", - "start": { - "$date": "2022-04-15T06:40:21.000Z" - }, - "end": { - "$date": "2022-04-15T06:42:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9dad2d7b-7f85-4bf3-8b73-050a36f2513c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-15T06:43:01.000Z" - }, - "end": { - "$date": "2022-04-15T07:11:38.000Z" - }, - "events": [ - { - "uuid": "937a953f-6f86-4d70-a49a-2409926e6e9f", - "start": { - "$date": "2022-04-15T06:43:01.000Z" - }, - "end": { - "$date": "2022-04-15T07:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a84556d9-45af-4172-9af9-ef008d798446", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-15T07:22:29.000Z" - }, - "end": { - "$date": "2022-04-15T07:59:35.000Z" - }, - "events": [ - { - "uuid": "f573a558-0470-4a8f-9682-be908859a6ac", - "start": { - "$date": "2022-04-15T07:22:29.000Z" - }, - "end": { - "$date": "2022-04-15T07:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "6f61290c-b00b-419d-9967-be42a36af526", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-15T07:52:26.000Z" - }, - "end": { - "$date": "2022-04-15T11:45:48.000Z" - }, - "events": [ - { - "uuid": "ce7a5bd8-3ce9-40fb-9e35-afea488a24c8", - "start": { - "$date": "2022-04-15T07:52:26.000Z" - }, - "end": { - "$date": "2022-04-15T11:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "21e8e2bf-8759-482a-bf2c-4d7d61fdfcc7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-15T18:51:16.000Z" - }, - "end": { - "$date": "2022-04-15T19:46:45.000Z" - }, - "events": [ - { - "uuid": "e48556dc-c843-42dd-9f86-c84382f8dfed", - "start": { - "$date": "2022-04-15T18:51:16.000Z" - }, - "end": { - "$date": "2022-04-15T19:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "63a131eb-f88e-4377-9c20-622a6db82d5a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-15T19:48:30.000Z" - }, - "end": { - "$date": "2022-04-15T21:42:44.000Z" - }, - "events": [ - { - "uuid": "1809242a-4462-4b68-b817-7b9f371c02be", - "start": { - "$date": "2022-04-15T19:48:30.000Z" - }, - "end": { - "$date": "2022-04-15T21:42:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "477cef7c-d5d5-4cc3-8850-df247e05baa7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-15T20:42:57.000Z" - }, - "end": { - "$date": "2022-04-16T00:15:20.000Z" - }, - "events": [ - { - "uuid": "169657e5-3db9-4bf5-a38c-730575bad466", - "start": { - "$date": "2022-04-15T20:42:57.000Z" - }, - "end": { - "$date": "2022-04-16T00:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "96786fc3-ddc0-4a75-a1a9-e08d0bfc7211", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-15T22:09:46.000Z" - }, - "end": { - "$date": "2022-04-16T01:38:50.000Z" - }, - "events": [ - { - "uuid": "76fdcfb7-5b86-4e23-b227-44ab5a390157", - "start": { - "$date": "2022-04-15T22:09:46.000Z" - }, - "end": { - "$date": "2022-04-15T22:47:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39f9bf53-240b-40fd-8b58-97ed2f4653f8", - "start": { - "$date": "2022-04-15T22:47:46.000Z" - }, - "end": { - "$date": "2022-04-15T23:18:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0247ecd3-d14a-4e1f-8c22-31f025fccd21", - "start": { - "$date": "2022-04-15T23:18:46.000Z" - }, - "end": { - "$date": "2022-04-16T01:38:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "e8516d6f-c254-48af-ac16-6570a8b161eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-15T22:56:01.000Z" - }, - "end": { - "$date": "2022-04-16T03:09:09.000Z" - }, - "events": [ - { - "uuid": "1fe2297a-e110-461c-9c77-dbce8558d598", - "start": { - "$date": "2022-04-15T22:56:01.000Z" - }, - "end": { - "$date": "2022-04-16T03:09:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f6d2288e-8141-4506-8841-e52abc011995", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-16T00:18:20.000Z" - }, - "end": { - "$date": "2022-04-16T02:20:57.000Z" - }, - "events": [ - { - "uuid": "603d0cfd-cab8-4635-9215-7417987456e5", - "start": { - "$date": "2022-04-16T00:18:20.000Z" - }, - "end": { - "$date": "2022-04-16T00:28:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "44855893-e611-4910-ae92-10e49441bbb7", - "start": { - "$date": "2022-04-16T00:28:20.000Z" - }, - "end": { - "$date": "2022-04-16T01:08:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c434d94f-8050-403a-b6e4-ae3e95b6b03b", - "start": { - "$date": "2022-04-16T01:08:20.000Z" - }, - "end": { - "$date": "2022-04-16T01:19:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30982de5-1e40-4230-a780-98a2c1627bff", - "start": { - "$date": "2022-04-16T01:19:20.000Z" - }, - "end": { - "$date": "2022-04-16T01:41:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f10735ce-1e59-4ca5-8ca4-3c46fcbc551d", - "start": { - "$date": "2022-04-16T01:41:20.000Z" - }, - "end": { - "$date": "2022-04-16T02:20:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08404583-c934-4dda-b4a7-b0b690b9731f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-16T00:48:52.000Z" - }, - "end": { - "$date": "2022-04-16T02:58:25.000Z" - }, - "events": [ - { - "uuid": "19c4eab1-f1a1-4e3f-8312-4407f507b923", - "start": { - "$date": "2022-04-16T00:48:52.000Z" - }, - "end": { - "$date": "2022-04-16T02:58:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "289d392e-0cbc-4b7d-95f5-7725eef2bbdd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-16T00:48:53.000Z" - }, - "end": { - "$date": "2022-04-16T02:58:32.000Z" - }, - "events": [ - { - "uuid": "e485d806-86e1-4f65-b49b-a64a435e93de", - "start": { - "$date": "2022-04-16T00:48:53.000Z" - }, - "end": { - "$date": "2022-04-16T02:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9675865d-f90a-4471-a95b-b44ece72a38a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T00:54:24.000Z" - }, - "end": { - "$date": "2022-04-16T01:29:16.000Z" - }, - "events": [ - { - "uuid": "3965ae83-2cbe-4a12-a03f-650aa501d91a", - "start": { - "$date": "2022-04-16T00:54:24.000Z" - }, - "end": { - "$date": "2022-04-16T01:29:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6a379d1a-4977-4fbe-aa91-925f83947594", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T01:31:47.000Z" - }, - "end": { - "$date": "2022-04-16T02:09:32.000Z" - }, - "events": [ - { - "uuid": "7962ebc5-4c0f-4b88-8e69-ed2b63787ab0", - "start": { - "$date": "2022-04-16T01:31:47.000Z" - }, - "end": { - "$date": "2022-04-16T02:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5bd82009-df45-4dac-a6cd-6e8bcb2710b0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T02:20:58.000Z" - }, - "end": { - "$date": "2022-04-16T02:39:18.000Z" - }, - "events": [ - { - "uuid": "9d9114c3-2afd-439f-865e-facf43e40ae0", - "start": { - "$date": "2022-04-16T02:20:58.000Z" - }, - "end": { - "$date": "2022-04-16T02:39:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8199694d-6e66-4998-bca8-c2c62c376eaf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-16T02:22:12.000Z" - }, - "end": { - "$date": "2022-04-16T06:54:40.000Z" - }, - "events": [ - { - "uuid": "4596c08e-ab5c-4f91-ad21-cd708e754223", - "start": { - "$date": "2022-04-16T02:22:12.000Z" - }, - "end": { - "$date": "2022-04-16T06:54:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bff5f037-0721-4212-a36d-00e4f542ddca", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T02:41:54.000Z" - }, - "end": { - "$date": "2022-04-16T03:10:24.000Z" - }, - "events": [ - { - "uuid": "6c0afaa4-8c4d-4235-806a-810425f1f2d4", - "start": { - "$date": "2022-04-16T02:41:54.000Z" - }, - "end": { - "$date": "2022-04-16T03:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d862f56-4798-48e9-8d5b-d38dfb7a4e4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T03:13:15.000Z" - }, - "end": { - "$date": "2022-04-16T03:50:39.000Z" - }, - "events": [ - { - "uuid": "93f7bb8c-9b2a-46e6-8807-f1c53e73049f", - "start": { - "$date": "2022-04-16T03:13:15.000Z" - }, - "end": { - "$date": "2022-04-16T03:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4ab18fe6-8fc8-466e-8693-ed065d8d518c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-16T03:57:49.000Z" - }, - "end": { - "$date": "2022-04-16T04:50:54.000Z" - }, - "events": [ - { - "uuid": "d6dcf7d4-aad0-4608-b95f-fc262e01caea", - "start": { - "$date": "2022-04-16T03:57:49.000Z" - }, - "end": { - "$date": "2022-04-16T04:50:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d87d3105-3b06-4dbe-8eb9-963dd58d563a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-16T04:33:24.000Z" - }, - "end": { - "$date": "2022-04-16T05:53:45.000Z" - }, - "events": [ - { - "uuid": "addf5c03-544a-4650-933e-c64e06bc5c1f", - "start": { - "$date": "2022-04-16T04:33:24.000Z" - }, - "end": { - "$date": "2022-04-16T05:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "07e9fd3d-fdbb-4239-b521-4706d2e7d237", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T04:54:23.000Z" - }, - "end": { - "$date": "2022-04-16T05:28:56.000Z" - }, - "events": [ - { - "uuid": "7ba3dcb2-f35b-43cc-9025-62c4897a06c8", - "start": { - "$date": "2022-04-16T04:54:23.000Z" - }, - "end": { - "$date": "2022-04-16T05:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "794934c1-a61c-4196-8740-6fa3715b0202", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-16T04:52:53.000Z" - }, - "end": { - "$date": "2022-04-16T06:30:30.000Z" - }, - "events": [ - { - "uuid": "96eea63c-b369-40ac-9696-2f0be5911912", - "start": { - "$date": "2022-04-16T04:52:53.000Z" - }, - "end": { - "$date": "2022-04-16T06:30:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "97ca0fbd-a16b-4e94-a827-b39d27d7b08a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-16T04:53:38.000Z" - }, - "end": { - "$date": "2022-04-16T07:08:49.000Z" - }, - "events": [ - { - "uuid": "f459b2dc-e467-4279-bff8-af62814aea56", - "start": { - "$date": "2022-04-16T04:53:38.000Z" - }, - "end": { - "$date": "2022-04-16T07:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6270b952-e620-44cb-8543-982e85f7941b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T05:30:47.000Z" - }, - "end": { - "$date": "2022-04-16T05:34:06.000Z" - }, - "events": [ - { - "uuid": "220d3f63-2530-4e7a-9e69-cf306d36fd3d", - "start": { - "$date": "2022-04-16T05:30:47.000Z" - }, - "end": { - "$date": "2022-04-16T05:34:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e9321235-f12b-41c3-b83e-30205c1472fe", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T05:37:06.000Z" - }, - "end": { - "$date": "2022-04-16T05:39:12.000Z" - }, - "events": [ - { - "uuid": "f2773074-0ae3-4913-963e-6ad9849210ae", - "start": { - "$date": "2022-04-16T05:37:06.000Z" - }, - "end": { - "$date": "2022-04-16T05:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2b2f6c70-0234-47e4-a412-8a62b82338ca", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T05:41:25.000Z" - }, - "end": { - "$date": "2022-04-16T05:58:11.000Z" - }, - "events": [ - { - "uuid": "74b6166e-45e6-4066-864e-3060347370db", - "start": { - "$date": "2022-04-16T05:41:25.000Z" - }, - "end": { - "$date": "2022-04-16T05:58:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "51d95ab2-d687-41da-8c6c-fab1743739fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-16T05:42:26.000Z" - }, - "end": { - "$date": "2022-04-16T06:22:41.000Z" - }, - "events": [ - { - "uuid": "e52683c8-fa47-4959-83cd-f72b285da334", - "start": { - "$date": "2022-04-16T05:42:26.000Z" - }, - "end": { - "$date": "2022-04-16T06:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8b045c98-ed7d-4883-bc49-bcbfea004ee7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-16T05:54:09.000Z" - }, - "end": { - "$date": "2022-04-16T06:23:10.000Z" - }, - "events": [ - { - "uuid": "cd2015a4-8b5a-4511-b21b-fe27c3629ca2", - "start": { - "$date": "2022-04-16T05:54:09.000Z" - }, - "end": { - "$date": "2022-04-16T06:23:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "f6cb50dc-e499-4613-b0ae-5c9265e28be1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-16T05:54:25.000Z" - }, - "end": { - "$date": "2022-04-16T11:16:24.000Z" - }, - "events": [ - { - "uuid": "a5a4b58d-6d04-412e-8bd7-3a0757093793", - "start": { - "$date": "2022-04-16T05:54:25.000Z" - }, - "end": { - "$date": "2022-04-16T11:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f20bf0b0-58c9-42f8-93c5-87a5864cf5b2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T06:00:51.000Z" - }, - "end": { - "$date": "2022-04-16T06:31:17.000Z" - }, - "events": [ - { - "uuid": "46bc59e4-2c72-4117-9bdb-781ba41405a9", - "start": { - "$date": "2022-04-16T06:00:51.000Z" - }, - "end": { - "$date": "2022-04-16T06:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "19c0b522-9346-4bad-b94e-1dfbe26ee44a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-16T06:24:12.000Z" - }, - "end": { - "$date": "2022-04-16T07:00:19.000Z" - }, - "events": [ - { - "uuid": "fa6176cb-af14-42e3-a073-3bff22d58ff1", - "start": { - "$date": "2022-04-16T06:24:12.000Z" - }, - "end": { - "$date": "2022-04-16T07:00:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8dc67e8f-c6bd-4845-add2-570bb24ab581", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T06:34:13.000Z" - }, - "end": { - "$date": "2022-04-16T07:00:40.000Z" - }, - "events": [ - { - "uuid": "1fe6b999-74a1-4ee0-94fc-f20ff2bfd44e", - "start": { - "$date": "2022-04-16T06:34:13.000Z" - }, - "end": { - "$date": "2022-04-16T07:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9fc2577f-2f46-4e74-aaea-4721a0ad31d5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T07:03:14.000Z" - }, - "end": { - "$date": "2022-04-16T07:35:29.000Z" - }, - "events": [ - { - "uuid": "d4991696-2891-4c5b-9e4c-6d67a6b077d8", - "start": { - "$date": "2022-04-16T07:03:14.000Z" - }, - "end": { - "$date": "2022-04-16T07:35:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b3b1731-e0c3-4454-97b8-191bf3619a59", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-16T07:13:35.000Z" - }, - "end": { - "$date": "2022-04-16T07:38:46.000Z" - }, - "events": [ - { - "uuid": "027b8bc4-a19b-426c-aee9-72cf146d2164", - "start": { - "$date": "2022-04-16T07:13:35.000Z" - }, - "end": { - "$date": "2022-04-16T07:38:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa90c169-21d4-41ca-83f1-b8a2de5727f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-16T07:13:31.000Z" - }, - "end": { - "$date": "2022-04-16T07:38:47.000Z" - }, - "events": [ - { - "uuid": "19d5107a-dcab-4d05-a13f-6b56e02ec706", - "start": { - "$date": "2022-04-16T07:13:31.000Z" - }, - "end": { - "$date": "2022-04-16T07:38:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7073897c-28a8-49f9-8845-bd3ec57d7de0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T07:36:49.000Z" - }, - "end": { - "$date": "2022-04-16T07:37:10.000Z" - }, - "events": [ - { - "uuid": "79610870-3647-4534-8e87-fd712fc5ee7c", - "start": { - "$date": "2022-04-16T07:36:49.000Z" - }, - "end": { - "$date": "2022-04-16T07:37:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0b659674-6041-4d47-b2a4-8b20b2a34e19", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T07:42:07.000Z" - }, - "end": { - "$date": "2022-04-16T08:03:58.000Z" - }, - "events": [ - { - "uuid": "92888d17-16a4-4b4e-b2f0-8cf1df0d08d5", - "start": { - "$date": "2022-04-16T07:42:07.000Z" - }, - "end": { - "$date": "2022-04-16T08:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96c60129-d02c-4da6-ac48-b76fc8f03a18", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-16T07:43:08.000Z" - }, - "end": { - "$date": "2022-04-16T08:06:18.000Z" - }, - "events": [ - { - "uuid": "875e51c7-46f7-4440-b206-ca39c324bd8f", - "start": { - "$date": "2022-04-16T07:43:08.000Z" - }, - "end": { - "$date": "2022-04-16T08:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "eda689f7-2341-4c1b-9847-e3fa95da9879", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-16T07:43:06.000Z" - }, - "end": { - "$date": "2022-04-16T08:06:16.000Z" - }, - "events": [ - { - "uuid": "62ef985a-e88f-4a9e-a591-e8dae4d3e931", - "start": { - "$date": "2022-04-16T07:43:06.000Z" - }, - "end": { - "$date": "2022-04-16T08:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c98553ea-3f9e-4bd7-8bf0-740d8e8c2e95", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T08:04:27.000Z" - }, - "end": { - "$date": "2022-04-16T08:06:03.000Z" - }, - "events": [ - { - "uuid": "1016c942-4420-47dd-af08-d9d11ed5ddee", - "start": { - "$date": "2022-04-16T08:04:27.000Z" - }, - "end": { - "$date": "2022-04-16T08:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2888b678-fa67-409f-b07e-376d6268c82f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-16T14:27:25.000Z" - }, - "end": { - "$date": "2022-04-16T17:53:20.000Z" - }, - "events": [ - { - "uuid": "455aa50b-53de-408d-b32a-1432b0c0d937", - "start": { - "$date": "2022-04-16T14:27:25.000Z" - }, - "end": { - "$date": "2022-04-16T17:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "21f484cd-ce44-4b90-b656-7410cf392a7f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-16T15:55:25.000Z" - }, - "end": { - "$date": "2022-04-16T15:57:15.000Z" - }, - "events": [ - { - "uuid": "c8a4e29b-0b32-42ff-b618-26b6a66f5bbb", - "start": { - "$date": "2022-04-16T15:55:25.000Z" - }, - "end": { - "$date": "2022-04-16T15:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d539e655-791f-47a1-9ca4-c208377df19b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-16T16:01:00.000Z" - }, - "end": { - "$date": "2022-04-16T16:02:16.000Z" - }, - "events": [ - { - "uuid": "30a0089f-5042-46f8-a734-23a59e35b7d1", - "start": { - "$date": "2022-04-16T16:01:00.000Z" - }, - "end": { - "$date": "2022-04-16T16:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fdae2598-9813-4ece-9458-fb523ee0fe1e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-16T16:38:54.000Z" - }, - "end": { - "$date": "2022-04-16T17:16:31.000Z" - }, - "events": [ - { - "uuid": "6e341a39-43eb-48b6-b9e7-cce6efc7d188", - "start": { - "$date": "2022-04-16T16:38:54.000Z" - }, - "end": { - "$date": "2022-04-16T17:16:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5c92c0d9-9d2a-48ac-bb46-268ff6dc5ab6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-16T18:21:50.000Z" - }, - "end": { - "$date": "2022-04-17T04:04:51.000Z" - }, - "events": [ - { - "uuid": "f74175f0-ff90-42d5-8120-9ccc0014b86f", - "start": { - "$date": "2022-04-16T18:21:50.000Z" - }, - "end": { - "$date": "2022-04-16T19:18:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7bbbfd70-4197-4d71-aefb-efc2432f7094", - "start": { - "$date": "2022-04-16T19:18:50.000Z" - }, - "end": { - "$date": "2022-04-16T19:28:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "edcce3a7-9e4b-41a9-b98e-ba1a527b72be", - "start": { - "$date": "2022-04-16T19:28:50.000Z" - }, - "end": { - "$date": "2022-04-16T19:38:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "710f67bd-763f-48e5-abbc-c7276478cf96", - "start": { - "$date": "2022-04-16T19:38:50.000Z" - }, - "end": { - "$date": "2022-04-16T20:28:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c9e28ff7-ce8e-4cbb-8760-c293a00219a9", - "start": { - "$date": "2022-04-16T20:28:50.000Z" - }, - "end": { - "$date": "2022-04-16T20:30:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffc5aa93-005f-4c49-892e-24ee70dcddea", - "start": { - "$date": "2022-04-16T20:30:50.000Z" - }, - "end": { - "$date": "2022-04-16T21:31:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "345f1cab-61c9-4d0a-a667-91cf5c5df48b", - "start": { - "$date": "2022-04-16T21:31:50.000Z" - }, - "end": { - "$date": "2022-04-16T21:33:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80c90918-0bd3-4293-8526-94f5dcab1fac", - "start": { - "$date": "2022-04-16T21:33:50.000Z" - }, - "end": { - "$date": "2022-04-16T22:07:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e78915a-f402-4733-ae90-2ebfa4d748b3", - "start": { - "$date": "2022-04-16T22:07:50.000Z" - }, - "end": { - "$date": "2022-04-16T22:09:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "151b7015-ca40-404a-867f-2341be9f969c", - "start": { - "$date": "2022-04-16T22:09:50.000Z" - }, - "end": { - "$date": "2022-04-16T22:27:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47272b01-98ba-44a9-ab3c-16294beeb1d0", - "start": { - "$date": "2022-04-16T22:27:50.000Z" - }, - "end": { - "$date": "2022-04-16T22:29:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46c57791-9acb-40a9-9ee5-cc05e9b1dadf", - "start": { - "$date": "2022-04-16T22:29:50.000Z" - }, - "end": { - "$date": "2022-04-16T23:24:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c92a4596-fe86-4ea1-9e20-cdaa845ce4b6", - "start": { - "$date": "2022-04-16T23:24:50.000Z" - }, - "end": { - "$date": "2022-04-16T23:33:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72a65e2c-596b-41d5-8751-4c2cd6b8c7e2", - "start": { - "$date": "2022-04-16T23:33:50.000Z" - }, - "end": { - "$date": "2022-04-16T23:52:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd2906aa-9b01-4977-b128-b84807801e42", - "start": { - "$date": "2022-04-16T23:52:50.000Z" - }, - "end": { - "$date": "2022-04-17T00:08:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1ba5857e-b055-434c-ba79-f9cb7bbb58d4", - "start": { - "$date": "2022-04-17T00:08:50.000Z" - }, - "end": { - "$date": "2022-04-17T00:25:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ceedda1-aad0-4792-81dc-f6f0a6390d9d", - "start": { - "$date": "2022-04-17T00:25:50.000Z" - }, - "end": { - "$date": "2022-04-17T00:27:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b3b69a0-7e98-4767-b64f-12a412916f09", - "start": { - "$date": "2022-04-17T00:27:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:05:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52ddad26-eee3-4c3e-ab21-cdfc4f6f5996", - "start": { - "$date": "2022-04-17T01:05:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:09:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8fe0e236-49c5-4f50-97b5-c3cc7bc08f39", - "start": { - "$date": "2022-04-17T01:09:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:12:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8c87f8b-c48c-4b2c-a60b-bfa0ecde69e0", - "start": { - "$date": "2022-04-17T01:12:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:14:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7264649f-7875-4a3a-a148-9a21eecac0ff", - "start": { - "$date": "2022-04-17T01:14:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:15:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5216601-db20-4466-84ca-2b7061f67bea", - "start": { - "$date": "2022-04-17T01:15:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:17:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "91b42347-72ed-4e5a-9aa1-8ccffb36144d", - "start": { - "$date": "2022-04-17T01:17:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:22:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a6e6b170-0f32-436b-81c6-de6ecc7997d0", - "start": { - "$date": "2022-04-17T01:22:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:24:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f9cde4a0-ee8c-4cd5-b415-648cd7169a6c", - "start": { - "$date": "2022-04-17T01:24:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:30:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "abe77c55-9fc1-4735-873f-5733f05552e8", - "start": { - "$date": "2022-04-17T01:30:50.000Z" - }, - "end": { - "$date": "2022-04-17T01:32:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b2c8c3c-b1d1-407d-ba80-73c53bd09637", - "start": { - "$date": "2022-04-17T01:32:50.000Z" - }, - "end": { - "$date": "2022-04-17T04:04:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "af27036e-aa08-4e2f-b8db-523f5708baa3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-16T19:25:47.000Z" - }, - "end": { - "$date": "2022-04-16T19:27:42.000Z" - }, - "events": [ - { - "uuid": "060b5273-8a3c-4d34-abaa-64ae8461beea", - "start": { - "$date": "2022-04-16T19:25:47.000Z" - }, - "end": { - "$date": "2022-04-16T19:27:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9a8e285d-9b72-449c-85ca-5074ccaa1430", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-16T21:41:55.000Z" - }, - "end": { - "$date": "2022-04-16T22:22:56.000Z" - }, - "events": [ - { - "uuid": "cfc7e743-7406-4620-88e0-99137d6b7bcd", - "start": { - "$date": "2022-04-16T21:41:55.000Z" - }, - "end": { - "$date": "2022-04-16T22:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "41d176b8-5436-411b-9358-6fe3929ebd92", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-16T22:11:35.000Z" - }, - "end": { - "$date": "2022-04-17T00:22:17.000Z" - }, - "events": [ - { - "uuid": "330de335-78a1-45ab-ae09-27cf035b5f0a", - "start": { - "$date": "2022-04-16T22:11:35.000Z" - }, - "end": { - "$date": "2022-04-16T23:49:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d028ce2-b354-4225-95c3-9689c49898f5", - "start": { - "$date": "2022-04-16T23:49:35.000Z" - }, - "end": { - "$date": "2022-04-17T00:03:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48fe7c6b-ea0a-4231-8976-ba758ff11254", - "start": { - "$date": "2022-04-17T00:03:35.000Z" - }, - "end": { - "$date": "2022-04-17T00:18:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5727cf4-2066-4804-9b3c-0e37c3fd3e07", - "start": { - "$date": "2022-04-17T00:18:35.000Z" - }, - "end": { - "$date": "2022-04-17T00:20:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "97bfcc3d-4a39-4f62-a33c-f223d0262a37", - "start": { - "$date": "2022-04-17T00:20:35.000Z" - }, - "end": { - "$date": "2022-04-17T00:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5724d631-3b39-4106-ad6f-4a283dd0bd9d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-16T22:17:41.000Z" - }, - "end": { - "$date": "2022-04-17T02:09:51.000Z" - }, - "events": [ - { - "uuid": "41a9202c-59eb-4797-a67b-8e20ec2715d4", - "start": { - "$date": "2022-04-16T22:17:41.000Z" - }, - "end": { - "$date": "2022-04-17T02:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40cb332d-2547-4bbe-bda0-a8d20e2067a8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-16T22:36:27.000Z" - }, - "end": { - "$date": "2022-04-17T02:10:02.000Z" - }, - "events": [ - { - "uuid": "e5bc1812-50a9-4229-a66b-ed4140df9011", - "start": { - "$date": "2022-04-16T22:36:27.000Z" - }, - "end": { - "$date": "2022-04-17T02:10:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "017b1b7a-6c61-47e4-855d-798a806b687e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-16T22:46:06.000Z" - }, - "end": { - "$date": "2022-04-16T22:47:52.000Z" - }, - "events": [ - { - "uuid": "41164c0e-0e5e-4a18-8de3-9b1852835c88", - "start": { - "$date": "2022-04-16T22:46:06.000Z" - }, - "end": { - "$date": "2022-04-16T22:47:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "41fe6946-a7f8-448a-b937-0f270d8f7e17", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-16T22:46:50.000Z" - }, - "end": { - "$date": "2022-04-17T00:49:25.000Z" - }, - "events": [ - { - "uuid": "61cff527-f819-48ed-ade1-dffdcb22691d", - "start": { - "$date": "2022-04-16T22:46:50.000Z" - }, - "end": { - "$date": "2022-04-17T00:49:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "709104f2-d627-4f49-9fab-52d0c6f51eb1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-16T23:08:26.000Z" - }, - "end": { - "$date": "2022-04-16T23:46:01.000Z" - }, - "events": [ - { - "uuid": "26529cbb-8069-4b8c-a5ce-21943f30b5fe", - "start": { - "$date": "2022-04-16T23:08:26.000Z" - }, - "end": { - "$date": "2022-04-16T23:46:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dd180994-8f6d-4704-9bae-7a63f69a13b9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-17T00:28:55.000Z" - }, - "end": { - "$date": "2022-04-17T01:22:46.000Z" - }, - "events": [ - { - "uuid": "8e2bf95e-bd53-41a7-b79d-400ce5f76014", - "start": { - "$date": "2022-04-17T00:28:55.000Z" - }, - "end": { - "$date": "2022-04-17T01:22:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0e09abf6-8df5-471e-a4b4-6ff2d93bc15b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-17T00:55:21.000Z" - }, - "end": { - "$date": "2022-04-17T02:10:09.000Z" - }, - "events": [ - { - "uuid": "6567e616-685a-4615-95e2-3cafee5eb0db", - "start": { - "$date": "2022-04-17T00:55:21.000Z" - }, - "end": { - "$date": "2022-04-17T02:10:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7cfe6cef-bd9a-4351-acf6-5aee77802eee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-17T01:23:11.000Z" - }, - "end": { - "$date": "2022-04-17T06:51:44.000Z" - }, - "events": [ - { - "uuid": "86483b0a-6916-42b8-8e80-a7e84774e513", - "start": { - "$date": "2022-04-17T01:23:11.000Z" - }, - "end": { - "$date": "2022-04-17T06:51:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ab630bf-8fcd-411a-bbbc-ef0146f9ae59", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-17T02:17:00.000Z" - }, - "end": { - "$date": "2022-04-17T04:03:01.000Z" - }, - "events": [ - { - "uuid": "d3f4eeda-3bbd-482d-86c8-96837fcfcbd1", - "start": { - "$date": "2022-04-17T02:17:00.000Z" - }, - "end": { - "$date": "2022-04-17T04:03:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "675c1644-48c9-4fd3-825f-c02568e95d23", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-04-17T04:54:40.000Z" - }, - "end": { - "$date": "2022-04-17T04:54:52.000Z" - }, - "events": [ - { - "uuid": "2a60f5a8-cf3a-4842-b613-f45439436d8f", - "start": { - "$date": "2022-04-17T04:54:40.000Z" - }, - "end": { - "$date": "2022-04-17T04:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "81592376-4032-41da-883e-b7e324976fb7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-17T05:10:53.000Z" - }, - "end": { - "$date": "2022-04-17T09:07:32.000Z" - }, - "events": [ - { - "uuid": "43686542-0f01-4e7b-8251-f3a6ffc88221", - "start": { - "$date": "2022-04-17T05:10:53.000Z" - }, - "end": { - "$date": "2022-04-17T09:07:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c9cbcf53-dc60-4f88-9df1-6c950b364d87", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-17T05:14:27.000Z" - }, - "end": { - "$date": "2022-04-17T09:07:29.000Z" - }, - "events": [ - { - "uuid": "c00f8268-c63d-427d-93e1-fa331781508a", - "start": { - "$date": "2022-04-17T05:14:27.000Z" - }, - "end": { - "$date": "2022-04-17T09:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "839c20e3-1818-48af-950a-e27612593213", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T05:33:36.000Z" - }, - "end": { - "$date": "2022-04-17T05:43:38.000Z" - }, - "events": [ - { - "uuid": "9163810d-90e9-4691-9c51-77a243b781dd", - "start": { - "$date": "2022-04-17T05:33:36.000Z" - }, - "end": { - "$date": "2022-04-17T05:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "254a5c27-c6a5-4bd6-ab95-6487de2da09a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-17T05:43:47.000Z" - }, - "end": { - "$date": "2022-04-17T09:07:48.000Z" - }, - "events": [ - { - "uuid": "167047c6-4e01-4f5a-a5ab-bb2ea0664a7b", - "start": { - "$date": "2022-04-17T05:43:47.000Z" - }, - "end": { - "$date": "2022-04-17T09:07:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "85111267-f77b-4b4a-92f9-0bae55fd21e9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T05:45:28.000Z" - }, - "end": { - "$date": "2022-04-17T06:22:01.000Z" - }, - "events": [ - { - "uuid": "0a989d80-dd5b-48ef-935f-0a40cc8be0cd", - "start": { - "$date": "2022-04-17T05:45:28.000Z" - }, - "end": { - "$date": "2022-04-17T06:22:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0b45e258-f04c-4a88-bf40-fe4f2799d247", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-17T05:50:33.000Z" - }, - "end": { - "$date": "2022-04-17T05:56:33.000Z" - }, - "events": [ - { - "uuid": "5e858431-fd0c-4e6b-aa5c-0e0bb0fdc4c4", - "start": { - "$date": "2022-04-17T05:50:33.000Z" - }, - "end": { - "$date": "2022-04-17T05:56:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5eb11fa2-ef23-4b72-bac3-b2b97b7a2497", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T06:49:01.000Z" - }, - "end": { - "$date": "2022-04-17T07:12:27.000Z" - }, - "events": [ - { - "uuid": "eb35549a-8248-4e1e-be2b-664ad6d6fc6c", - "start": { - "$date": "2022-04-17T06:49:01.000Z" - }, - "end": { - "$date": "2022-04-17T07:12:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fcc97069-742f-4a9c-9878-e37c51d3cdae", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T07:12:47.000Z" - }, - "end": { - "$date": "2022-04-17T07:37:01.000Z" - }, - "events": [ - { - "uuid": "fc802e93-03bd-47fe-9d80-5231f1112a2e", - "start": { - "$date": "2022-04-17T07:12:47.000Z" - }, - "end": { - "$date": "2022-04-17T07:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "181da444-a617-4054-8a45-f85193779963", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T08:36:51.000Z" - }, - "end": { - "$date": "2022-04-17T11:46:04.000Z" - }, - "events": [ - { - "uuid": "9f4ddda3-21ad-4f06-a3d9-7c0222dfc2b1", - "start": { - "$date": "2022-04-17T08:36:51.000Z" - }, - "end": { - "$date": "2022-04-17T09:42:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7f0c3257-521d-4ce7-8d43-f143ea5cadac", - "start": { - "$date": "2022-04-17T09:42:51.000Z" - }, - "end": { - "$date": "2022-04-17T09:45:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dfff8356-ed5e-40a6-a3d0-5fc34440ddec", - "start": { - "$date": "2022-04-17T09:45:51.000Z" - }, - "end": { - "$date": "2022-04-17T10:39:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "64a993f4-9dba-43ab-92c3-05086d82d9bb", - "start": { - "$date": "2022-04-17T10:39:51.000Z" - }, - "end": { - "$date": "2022-04-17T11:12:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5198774b-c9bc-4125-8ad9-e058f29a9a8f", - "start": { - "$date": "2022-04-17T11:12:51.000Z" - }, - "end": { - "$date": "2022-04-17T11:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2d111d00-191e-43e6-a8e6-5d3ec3c6a96b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-17T15:52:42.000Z" - }, - "end": { - "$date": "2022-04-17T17:29:43.000Z" - }, - "events": [ - { - "uuid": "5ee03292-6f88-4d04-9d40-697a40217799", - "start": { - "$date": "2022-04-17T15:52:42.000Z" - }, - "end": { - "$date": "2022-04-17T17:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d7c17316-f440-42c0-9cf9-ac8e5f673287", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-17T16:11:39.000Z" - }, - "end": { - "$date": "2022-04-17T16:27:26.000Z" - }, - "events": [ - { - "uuid": "35f6b6a4-226e-418f-b869-d89b4c6a2f55", - "start": { - "$date": "2022-04-17T16:11:39.000Z" - }, - "end": { - "$date": "2022-04-17T16:22:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "47f33847-aeed-4e4a-826e-236bdfe47f07", - "start": { - "$date": "2022-04-17T16:22:39.000Z" - }, - "end": { - "$date": "2022-04-17T16:24:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bd226048-1984-4a58-9f55-7d2bbf42d8e2", - "start": { - "$date": "2022-04-17T16:24:39.000Z" - }, - "end": { - "$date": "2022-04-17T16:27:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ca611239-d507-4669-bf33-6a2c559c6de8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-17T17:07:25.000Z" - }, - "end": { - "$date": "2022-04-17T17:29:46.000Z" - }, - "events": [ - { - "uuid": "298958a7-962a-4ccb-bf4e-b3a180b49a14", - "start": { - "$date": "2022-04-17T17:07:25.000Z" - }, - "end": { - "$date": "2022-04-17T17:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "556120b7-cd02-4b68-bdb2-7a5d6d00da38", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-17T17:28:50.000Z" - }, - "end": { - "$date": "2022-04-17T19:19:12.000Z" - }, - "events": [ - { - "uuid": "5e50c2c7-335a-48d2-8817-26414fc2716e", - "start": { - "$date": "2022-04-17T17:28:50.000Z" - }, - "end": { - "$date": "2022-04-17T19:19:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f4fb4b7b-a590-4270-bc57-9738285a1a9f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-17T17:33:58.000Z" - }, - "end": { - "$date": "2022-04-17T17:44:33.000Z" - }, - "events": [ - { - "uuid": "cea1de1b-aa6c-4574-a88e-381dfbc827b6", - "start": { - "$date": "2022-04-17T17:33:58.000Z" - }, - "end": { - "$date": "2022-04-17T17:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2c18172e-da59-4c1b-85a3-3fc26f8094fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-17T17:50:56.000Z" - }, - "end": { - "$date": "2022-04-17T19:13:40.000Z" - }, - "events": [ - { - "uuid": "0bcca709-2cab-45d4-8485-7ccfc215b461", - "start": { - "$date": "2022-04-17T17:50:56.000Z" - }, - "end": { - "$date": "2022-04-17T18:58:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e692c214-d48a-4833-86c4-a2177a24c621", - "start": { - "$date": "2022-04-17T18:58:56.000Z" - }, - "end": { - "$date": "2022-04-17T19:02:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e852057-58c2-49e2-b7bf-b41980fa323b", - "start": { - "$date": "2022-04-17T19:02:56.000Z" - }, - "end": { - "$date": "2022-04-17T19:13:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5b2523c6-ac7e-4355-a155-d304ae362459", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T22:02:08.000Z" - }, - "end": { - "$date": "2022-04-17T22:48:10.000Z" - }, - "events": [ - { - "uuid": "53c05602-061a-4317-8471-b5704806bf70", - "start": { - "$date": "2022-04-17T22:02:08.000Z" - }, - "end": { - "$date": "2022-04-17T22:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "376caea2-2036-4354-81a8-a34775638bb1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-17T23:36:24.000Z" - }, - "end": { - "$date": "2022-04-18T00:41:05.000Z" - }, - "events": [ - { - "uuid": "cbf89146-d611-4ed1-ad40-f4a03963d9a9", - "start": { - "$date": "2022-04-17T23:36:24.000Z" - }, - "end": { - "$date": "2022-04-18T00:41:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0dcc9338-c1bf-4fd1-92f0-6d5d03663e7e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-18T00:25:50.000Z" - }, - "end": { - "$date": "2022-04-18T00:54:35.000Z" - }, - "events": [ - { - "uuid": "09dd486a-bab2-429f-9a3d-3a9d71804e8a", - "start": { - "$date": "2022-04-18T00:25:50.000Z" - }, - "end": { - "$date": "2022-04-18T00:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b8aff84d-b223-4d26-a412-8aa993d05e39", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-18T02:49:14.000Z" - }, - "end": { - "$date": "2022-04-18T03:58:56.000Z" - }, - "events": [ - { - "uuid": "e6dfb96c-5b67-4a9a-ade5-29c1e8bda988", - "start": { - "$date": "2022-04-18T02:49:14.000Z" - }, - "end": { - "$date": "2022-04-18T03:58:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a51bd96b-42ab-4e5c-a19d-9e527322066f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-18T00:58:23.000Z" - }, - "end": { - "$date": "2022-04-18T02:23:52.000Z" - }, - "events": [ - { - "uuid": "8ed2b6f9-30d0-40c8-8d8d-592c91acc214", - "start": { - "$date": "2022-04-18T00:58:23.000Z" - }, - "end": { - "$date": "2022-04-18T02:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d9092e65-048c-418a-82e6-b5ca180e4917", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-18T02:19:53.000Z" - }, - "end": { - "$date": "2022-04-18T05:47:40.000Z" - }, - "events": [ - { - "uuid": "0178304d-83f3-4096-9a23-e86c9de70860", - "start": { - "$date": "2022-04-18T02:19:53.000Z" - }, - "end": { - "$date": "2022-04-18T05:47:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3824fae7-a0d6-4e9e-9754-d6971791d4ad", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-18T03:26:16.000Z" - }, - "end": { - "$date": "2022-04-18T04:13:51.000Z" - }, - "events": [ - { - "uuid": "c5c020d2-00d8-4887-8320-d1336e63277b", - "start": { - "$date": "2022-04-18T03:26:16.000Z" - }, - "end": { - "$date": "2022-04-18T04:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28d8629f-a8fe-4fff-9694-1f456d140539", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-18T05:25:33.000Z" - }, - "end": { - "$date": "2022-04-18T05:29:17.000Z" - }, - "events": [ - { - "uuid": "0209689b-095d-4391-bfdb-1025c447cc55", - "start": { - "$date": "2022-04-18T05:25:33.000Z" - }, - "end": { - "$date": "2022-04-18T05:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "08ac29da-7c8d-4ee8-9d80-a241ee9e56aa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-18T05:45:52.000Z" - }, - "end": { - "$date": "2022-04-18T06:21:41.000Z" - }, - "events": [ - { - "uuid": "e8688aa4-c944-4794-bb98-f53310ca8cef", - "start": { - "$date": "2022-04-18T05:45:52.000Z" - }, - "end": { - "$date": "2022-04-18T06:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "b4cafc57-267c-4149-9e67-e0b7f4c9342d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-18T06:43:21.000Z" - }, - "end": { - "$date": "2022-04-18T10:26:09.000Z" - }, - "events": [ - { - "uuid": "626fa964-0aca-4e24-97bf-04eef599f600", - "start": { - "$date": "2022-04-18T06:43:21.000Z" - }, - "end": { - "$date": "2022-04-18T10:26:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "11275f79-6ee0-461d-b9a9-225ef72138fc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-18T17:51:50.000Z" - }, - "end": { - "$date": "2022-04-18T17:56:20.000Z" - }, - "events": [ - { - "uuid": "eba4a26c-3039-4ff3-943c-6f2d272b0296", - "start": { - "$date": "2022-04-18T17:51:50.000Z" - }, - "end": { - "$date": "2022-04-18T17:56:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "aaab2358-62d3-4099-8742-dc37ee8393b5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-18T20:09:54.000Z" - }, - "end": { - "$date": "2022-04-18T21:49:05.000Z" - }, - "events": [ - { - "uuid": "1a0a86d0-e1bc-4498-9662-d4842a5fafad", - "start": { - "$date": "2022-04-18T20:09:54.000Z" - }, - "end": { - "$date": "2022-04-18T21:49:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faa7162f-60b8-457b-aefb-52df09dea54e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-18T22:03:54.000Z" - }, - "end": { - "$date": "2022-04-18T22:37:54.000Z" - }, - "events": [ - { - "uuid": "702faf40-37ed-47c1-8286-2ca6c0eb9349", - "start": { - "$date": "2022-04-18T22:03:54.000Z" - }, - "end": { - "$date": "2022-04-18T22:37:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0eb62b78-69b7-445c-bcb1-b31a66af732e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-18T23:04:36.000Z" - }, - "end": { - "$date": "2022-04-18T23:28:37.000Z" - }, - "events": [ - { - "uuid": "e9053233-318c-4833-80ae-7cae91212829", - "start": { - "$date": "2022-04-18T23:04:36.000Z" - }, - "end": { - "$date": "2022-04-18T23:28:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c27428ac-bc77-4d38-8e01-8798648d5bd0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-18T23:57:10.000Z" - }, - "end": { - "$date": "2022-04-19T00:08:44.000Z" - }, - "events": [ - { - "uuid": "56d5cf1f-80ce-4d25-8db7-9175c2942909", - "start": { - "$date": "2022-04-18T23:57:10.000Z" - }, - "end": { - "$date": "2022-04-19T00:08:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6ef8dc78-40db-4604-8db5-38b4df9d96a3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T00:05:48.000Z" - }, - "end": { - "$date": "2022-04-19T00:43:30.000Z" - }, - "events": [ - { - "uuid": "9a07bf49-3fc9-4233-a6e1-3dbaa8d382bd", - "start": { - "$date": "2022-04-19T00:05:48.000Z" - }, - "end": { - "$date": "2022-04-19T00:43:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b50f8d02-9a13-426d-af94-19147ea107fd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-19T00:40:16.000Z" - }, - "end": { - "$date": "2022-04-19T02:25:10.000Z" - }, - "events": [ - { - "uuid": "ef749c60-4af1-45cd-93b2-be00907629be", - "start": { - "$date": "2022-04-19T00:40:16.000Z" - }, - "end": { - "$date": "2022-04-19T00:51:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6ec8d92e-e216-4bd1-bd10-13743135d4a5", - "start": { - "$date": "2022-04-19T00:51:16.000Z" - }, - "end": { - "$date": "2022-04-19T00:52:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "401ab76e-bc5b-41d3-8570-ba42efe86850", - "start": { - "$date": "2022-04-19T00:52:16.000Z" - }, - "end": { - "$date": "2022-04-19T02:25:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5710eaaf-2d02-4558-88be-24abd73fd157", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T00:45:53.000Z" - }, - "end": { - "$date": "2022-04-19T01:07:44.000Z" - }, - "events": [ - { - "uuid": "46ba375c-ce5a-4a88-bc7c-f77d2528a05e", - "start": { - "$date": "2022-04-19T00:45:53.000Z" - }, - "end": { - "$date": "2022-04-19T01:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "36775452-5a70-4e82-ac1c-893efc064d80", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-19T01:26:04.000Z" - }, - "end": { - "$date": "2022-04-19T02:04:14.000Z" - }, - "events": [ - { - "uuid": "d78c5e8e-a005-4afd-8ceb-1f07306ceb16", - "start": { - "$date": "2022-04-19T01:26:04.000Z" - }, - "end": { - "$date": "2022-04-19T01:44:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "29f28cbd-6b6f-4096-b15a-e592e1fc61fa", - "start": { - "$date": "2022-04-19T01:44:04.000Z" - }, - "end": { - "$date": "2022-04-19T02:04:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8067eb75-05b0-46fc-b387-c1a1e7267d63", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T02:19:56.000Z" - }, - "end": { - "$date": "2022-04-19T02:59:34.000Z" - }, - "events": [ - { - "uuid": "b106a56f-9bf0-4b9d-9499-fde261c652df", - "start": { - "$date": "2022-04-19T02:19:56.000Z" - }, - "end": { - "$date": "2022-04-19T02:59:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6fcd52e2-0d94-43b2-83bf-e59c87baacfd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-19T02:44:21.000Z" - }, - "end": { - "$date": "2022-04-19T04:47:57.000Z" - }, - "events": [ - { - "uuid": "2de7ad64-ca52-4921-a17f-e40c5363901c", - "start": { - "$date": "2022-04-19T02:44:21.000Z" - }, - "end": { - "$date": "2022-04-19T04:47:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "2748be92-5d68-4e9f-956d-4e2a61debfe0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-19T02:45:18.000Z" - }, - "end": { - "$date": "2022-04-19T04:55:20.000Z" - }, - "events": [ - { - "uuid": "05c9a0d7-7013-4421-9a8f-471d2df183b8", - "start": { - "$date": "2022-04-19T02:45:18.000Z" - }, - "end": { - "$date": "2022-04-19T04:55:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fe211198-a4c8-4fcf-bb95-863b4e8d81a2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-19T02:56:01.000Z" - }, - "end": { - "$date": "2022-04-19T04:29:28.000Z" - }, - "events": [ - { - "uuid": "a50cf741-10fd-4db9-8c7c-57a165c1b599", - "start": { - "$date": "2022-04-19T02:56:01.000Z" - }, - "end": { - "$date": "2022-04-19T04:29:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7fdab4f6-4d55-46ba-8dcb-35046d4dbfb4", - "uuid": "d3f9339f-b1b3-4a5b-a799-7548c16e39f8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T03:02:14.000Z" - }, - "end": { - "$date": "2022-04-19T04:45:37.000Z" - }, - "events": [ - { - "uuid": "421be646-b72c-422a-ad89-9558eb663492", - "start": { - "$date": "2022-04-19T03:02:14.000Z" - }, - "end": { - "$date": "2022-04-19T04:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "beb90192-1ffa-4a27-8554-3fb3257cee3f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-19T04:44:51.000Z" - }, - "end": { - "$date": "2022-04-19T05:47:31.000Z" - }, - "events": [ - { - "uuid": "dd2057e9-5db3-41a2-aa15-6bee8e585995", - "start": { - "$date": "2022-04-19T04:44:51.000Z" - }, - "end": { - "$date": "2022-04-19T05:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efd72850-0b9b-4824-a343-73212ca9d7a0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T05:13:15.000Z" - }, - "end": { - "$date": "2022-04-19T05:43:33.000Z" - }, - "events": [ - { - "uuid": "700078cd-769d-4ad2-bdbf-abed80ad00a4", - "start": { - "$date": "2022-04-19T05:13:15.000Z" - }, - "end": { - "$date": "2022-04-19T05:43:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e95ad8de-7703-40e3-b960-daaba687a062", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-19T05:40:34.000Z" - }, - "end": { - "$date": "2022-04-19T07:58:59.000Z" - }, - "events": [ - { - "uuid": "05c59bb9-15f7-4b45-a338-f0656de2f70c", - "start": { - "$date": "2022-04-19T05:40:34.000Z" - }, - "end": { - "$date": "2022-04-19T07:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ecbf04e0-0973-411b-aaa6-9379aad5fcd5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-19T05:43:38.000Z" - }, - "end": { - "$date": "2022-04-19T08:00:03.000Z" - }, - "events": [ - { - "uuid": "ddf1e8f9-e638-44a8-9ca7-6091feb524b1", - "start": { - "$date": "2022-04-19T05:43:38.000Z" - }, - "end": { - "$date": "2022-04-19T08:00:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "386bf579-1b1b-4f42-8bb1-771f86f96fe8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T05:45:00.000Z" - }, - "end": { - "$date": "2022-04-19T06:07:02.000Z" - }, - "events": [ - { - "uuid": "66dc122d-7acc-4708-abc3-429d4df1d66b", - "start": { - "$date": "2022-04-19T05:45:00.000Z" - }, - "end": { - "$date": "2022-04-19T06:07:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4c49bf2b-e5cb-4b21-bc35-54ff66d443cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T06:10:12.000Z" - }, - "end": { - "$date": "2022-04-19T06:49:27.000Z" - }, - "events": [ - { - "uuid": "4cbd8b57-378b-4fa6-bf5a-578ce8f43f3c", - "start": { - "$date": "2022-04-19T06:10:12.000Z" - }, - "end": { - "$date": "2022-04-19T06:49:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3b3154f4-756d-4f11-8802-39d5007fb2a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-19T06:34:10.000Z" - }, - "end": { - "$date": "2022-04-19T08:00:18.000Z" - }, - "events": [ - { - "uuid": "842020ff-999f-4e42-8695-a0e47b42a3dd", - "start": { - "$date": "2022-04-19T06:34:10.000Z" - }, - "end": { - "$date": "2022-04-19T08:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0123022f-fb21-484e-a4ef-de4615c3e2ce", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T06:49:49.000Z" - }, - "end": { - "$date": "2022-04-19T06:51:59.000Z" - }, - "events": [ - { - "uuid": "bb637c38-2bc3-4542-9aca-490bc3093c00", - "start": { - "$date": "2022-04-19T06:49:49.000Z" - }, - "end": { - "$date": "2022-04-19T06:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "76ab6be1-5de1-4427-87c9-f61f4f883257", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T06:52:04.000Z" - }, - "end": { - "$date": "2022-04-19T07:06:55.000Z" - }, - "events": [ - { - "uuid": "d14c4105-f23a-486a-a4aa-5e85c74559c8", - "start": { - "$date": "2022-04-19T06:52:04.000Z" - }, - "end": { - "$date": "2022-04-19T07:06:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "91777417-b778-40f3-a157-b7d3981cf6a7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-19T11:01:18.000Z" - }, - "end": { - "$date": "2022-04-19T18:03:37.000Z" - }, - "events": [ - { - "uuid": "b7b37538-eddc-4363-bd28-29a82ec9139e", - "start": { - "$date": "2022-04-19T11:01:18.000Z" - }, - "end": { - "$date": "2022-04-19T18:03:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ae171304-0a42-4fbb-99bb-215b04c93095", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T18:57:53.000Z" - }, - "end": { - "$date": "2022-04-19T20:36:45.000Z" - }, - "events": [ - { - "uuid": "ebb7b0ee-3398-48e7-900e-010a7dc7ad3c", - "start": { - "$date": "2022-04-19T18:57:53.000Z" - }, - "end": { - "$date": "2022-04-19T20:36:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8cd2197e-4403-490e-a5fd-84fdab247a7f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-19T21:38:20.000Z" - }, - "end": { - "$date": "2022-04-19T21:49:16.000Z" - }, - "events": [ - { - "uuid": "243e609f-a78e-4823-892d-4a2f84e38917", - "start": { - "$date": "2022-04-19T21:38:20.000Z" - }, - "end": { - "$date": "2022-04-19T21:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09d0944e-136c-49ad-9a8a-d98bb3fc7a24", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T22:24:46.000Z" - }, - "end": { - "$date": "2022-04-19T23:03:07.000Z" - }, - "events": [ - { - "uuid": "40182b97-9362-434e-b9ea-f236d42b23fb", - "start": { - "$date": "2022-04-19T22:24:46.000Z" - }, - "end": { - "$date": "2022-04-19T23:03:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3f05f5d0-dc14-44f6-b847-d8f2cdd87c21", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T23:09:23.000Z" - }, - "end": { - "$date": "2022-04-19T23:48:03.000Z" - }, - "events": [ - { - "uuid": "661dbf7c-b39e-47f9-9c98-7c2b21716403", - "start": { - "$date": "2022-04-19T23:09:23.000Z" - }, - "end": { - "$date": "2022-04-19T23:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afaa6dad-d8ff-4c21-a4b9-de9cfd752fe8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-19T23:48:22.000Z" - }, - "end": { - "$date": "2022-04-19T23:55:03.000Z" - }, - "events": [ - { - "uuid": "ff6c9f78-7617-479e-8880-9929adc8bf57", - "start": { - "$date": "2022-04-19T23:48:22.000Z" - }, - "end": { - "$date": "2022-04-19T23:55:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "34c97ee6-d8fb-4b71-827c-29fa41e1f008", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-20T00:16:09.000Z" - }, - "end": { - "$date": "2022-04-20T00:49:32.000Z" - }, - "events": [ - { - "uuid": "51796442-1c2d-4ec9-a42b-0a1487c5de78", - "start": { - "$date": "2022-04-20T00:16:09.000Z" - }, - "end": { - "$date": "2022-04-20T00:49:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c193cfd3-04ff-461b-9e34-ec365b3e4ccd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-20T00:37:43.000Z" - }, - "end": { - "$date": "2022-04-20T02:06:12.000Z" - }, - "events": [ - { - "uuid": "d4948cdc-4442-4d28-9734-94052b1c4a42", - "start": { - "$date": "2022-04-20T00:37:43.000Z" - }, - "end": { - "$date": "2022-04-20T02:06:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "786d53f8-39ec-43e5-a468-5dacdb130a2e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-20T01:34:07.000Z" - }, - "end": { - "$date": "2022-04-20T07:02:16.000Z" - }, - "events": [ - { - "uuid": "0784275d-7a52-481a-8034-0b5d57934116", - "start": { - "$date": "2022-04-20T01:34:07.000Z" - }, - "end": { - "$date": "2022-04-20T07:02:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c09d0a7d-d805-44b4-aa11-b406fe9c4582", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-20T02:30:48.000Z" - }, - "end": { - "$date": "2022-04-20T03:54:49.000Z" - }, - "events": [ - { - "uuid": "0eea37e1-c44e-4670-b580-d17f47f57d3c", - "start": { - "$date": "2022-04-20T02:30:48.000Z" - }, - "end": { - "$date": "2022-04-20T03:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "44d93875-7285-44c2-a263-1dddeafc3711", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-20T03:09:30.000Z" - }, - "end": { - "$date": "2022-04-20T05:12:03.000Z" - }, - "events": [ - { - "uuid": "6492bd14-ad8e-4f19-8398-92b8f2635e28", - "start": { - "$date": "2022-04-20T03:09:30.000Z" - }, - "end": { - "$date": "2022-04-20T03:39:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c537c2e3-70d9-4293-bd98-17301e85b65e", - "start": { - "$date": "2022-04-20T03:39:30.000Z" - }, - "end": { - "$date": "2022-04-20T03:44:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0b467f27-9418-4111-8bf3-f59e3e34b0ca", - "start": { - "$date": "2022-04-20T03:44:30.000Z" - }, - "end": { - "$date": "2022-04-20T05:12:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9a4779c3-8028-4a4a-964e-461c36afd555", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-20T03:02:25.000Z" - }, - "end": { - "$date": "2022-04-20T05:44:55.000Z" - }, - "events": [ - { - "uuid": "d2c4ed93-9720-48cf-9e7a-8ff72825b5f1", - "start": { - "$date": "2022-04-20T03:02:25.000Z" - }, - "end": { - "$date": "2022-04-20T05:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dd949f19-f02a-4d81-9f06-dfe207c81ac0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-20T03:34:29.000Z" - }, - "end": { - "$date": "2022-04-20T07:55:56.000Z" - }, - "events": [ - { - "uuid": "002273bd-aa2f-4d40-bf5e-fcc846d274ba", - "start": { - "$date": "2022-04-20T03:34:29.000Z" - }, - "end": { - "$date": "2022-04-20T07:55:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d34dbefe-9711-4e0f-a2cf-65bae40e7a1c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-20T03:49:52.000Z" - }, - "end": { - "$date": "2022-04-20T05:32:42.000Z" - }, - "events": [ - { - "uuid": "b742c79e-bb96-4bb9-9afd-bdce7607f633", - "start": { - "$date": "2022-04-20T03:49:52.000Z" - }, - "end": { - "$date": "2022-04-20T05:32:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "48121ecc-9f11-42f8-8544-3d4240a49e65", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-20T03:55:00.000Z" - }, - "end": { - "$date": "2022-04-20T05:01:01.000Z" - }, - "events": [ - { - "uuid": "5e777bed-ff33-4844-ad61-06452d045507", - "start": { - "$date": "2022-04-20T03:55:00.000Z" - }, - "end": { - "$date": "2022-04-20T05:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "10b25c0c-77c3-45cc-89aa-5eaffa986ed4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-20T05:01:42.000Z" - }, - "end": { - "$date": "2022-04-20T05:21:34.000Z" - }, - "events": [ - { - "uuid": "0f02b7ee-9cb4-4b1f-98a3-f7508fd7b3a1", - "start": { - "$date": "2022-04-20T05:01:42.000Z" - }, - "end": { - "$date": "2022-04-20T05:21:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5dd7b962-3256-4d75-a05a-30f85cabec58", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-20T05:16:34.000Z" - }, - "end": { - "$date": "2022-04-20T05:44:41.000Z" - }, - "events": [ - { - "uuid": "561032dc-edf4-4196-b1a1-fbd4f295f634", - "start": { - "$date": "2022-04-20T05:16:34.000Z" - }, - "end": { - "$date": "2022-04-20T05:44:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "900b9f66-306a-4c7a-b0ad-2eb3a4f07d48", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-20T05:24:34.000Z" - }, - "end": { - "$date": "2022-04-20T05:48:03.000Z" - }, - "events": [ - { - "uuid": "8f7c2dc2-3ffc-424c-a8b1-c1636f12e857", - "start": { - "$date": "2022-04-20T05:24:34.000Z" - }, - "end": { - "$date": "2022-04-20T05:48:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d14cb3a5-bed6-4032-a244-e01c6310b2c9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-04-20T05:28:36.000Z" - }, - "end": { - "$date": "2022-04-20T07:06:21.000Z" - }, - "events": [ - { - "uuid": "e2f21136-1b7e-4f72-a3c4-a9d243247275", - "start": { - "$date": "2022-04-20T05:28:36.000Z" - }, - "end": { - "$date": "2022-04-20T07:06:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ee786eff-6bfd-4e7c-a1b3-1ca7a845a140", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-20T05:32:52.000Z" - }, - "end": { - "$date": "2022-04-20T06:20:45.000Z" - }, - "events": [ - { - "uuid": "4bfb9394-a0d0-43d7-b426-4294a8dbe58a", - "start": { - "$date": "2022-04-20T05:32:52.000Z" - }, - "end": { - "$date": "2022-04-20T06:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cf5fa00-7c31-4dcd-948b-4558f2767897", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-20T05:48:37.000Z" - }, - "end": { - "$date": "2022-04-20T05:50:07.000Z" - }, - "events": [ - { - "uuid": "35c53f50-8e52-4c80-9ef5-7b2866a9a433", - "start": { - "$date": "2022-04-20T05:48:37.000Z" - }, - "end": { - "$date": "2022-04-20T05:50:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "20e2cee3-3df5-4fc3-ac3f-9145b996a2d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-20T06:17:01.000Z" - }, - "end": { - "$date": "2022-04-20T06:57:49.000Z" - }, - "events": [ - { - "uuid": "63d74390-2a1d-4fb7-9c04-c65155df2757", - "start": { - "$date": "2022-04-20T06:17:01.000Z" - }, - "end": { - "$date": "2022-04-20T06:57:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e9e0ce59-1756-4151-9150-c18a9fa6bb35", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-20T06:57:28.000Z" - }, - "end": { - "$date": "2022-04-20T07:56:06.000Z" - }, - "events": [ - { - "uuid": "37cd8156-1f9e-4969-8f18-bf6ef8e7e817", - "start": { - "$date": "2022-04-20T06:57:28.000Z" - }, - "end": { - "$date": "2022-04-20T07:56:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "28472541-ae9d-414c-b7c6-cc796d71451b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-20T07:01:30.000Z" - }, - "end": { - "$date": "2022-04-20T07:55:59.000Z" - }, - "events": [ - { - "uuid": "c4260fe6-e9a1-4f66-8568-b1b2d7c42eac", - "start": { - "$date": "2022-04-20T07:01:30.000Z" - }, - "end": { - "$date": "2022-04-20T07:55:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "284726cd-1a0f-4c1a-a43c-5e972b115c5e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-20T07:03:52.000Z" - }, - "end": { - "$date": "2022-04-20T07:56:24.000Z" - }, - "events": [ - { - "uuid": "41549d30-3884-4020-a7ad-969393641ade", - "start": { - "$date": "2022-04-20T07:03:52.000Z" - }, - "end": { - "$date": "2022-04-20T07:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f0733879-1b1c-46bf-bf15-00bbd8fbdcc5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-04-20T07:07:16.000Z" - }, - "end": { - "$date": "2022-04-20T07:55:53.000Z" - }, - "events": [ - { - "uuid": "e53e97c9-155b-4a4c-903c-b5c1889bbc17", - "start": { - "$date": "2022-04-20T07:07:16.000Z" - }, - "end": { - "$date": "2022-04-20T07:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "f6c73b9e-d154-4d05-bfd5-6681f3a394d3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-20T08:19:38.000Z" - }, - "end": { - "$date": "2022-04-20T11:05:47.000Z" - }, - "events": [ - { - "uuid": "361f684d-2c0a-4a78-b6bc-59d3600d2ca3", - "start": { - "$date": "2022-04-20T08:19:38.000Z" - }, - "end": { - "$date": "2022-04-20T11:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0e82c052-af7e-45e9-9b30-1eb7c6749103", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-20T18:34:57.000Z" - }, - "end": { - "$date": "2022-04-20T19:15:36.000Z" - }, - "events": [ - { - "uuid": "aff0ffa6-e04d-4d2c-8d06-ddadb90884c8", - "start": { - "$date": "2022-04-20T18:34:57.000Z" - }, - "end": { - "$date": "2022-04-20T19:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "3df738d8-f4cf-4d75-a806-86453d9cc486", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-20T19:31:35.000Z" - }, - "end": { - "$date": "2022-04-20T21:20:33.000Z" - }, - "events": [ - { - "uuid": "6fb5f7f9-14c7-4c08-8be6-c33b78529335", - "start": { - "$date": "2022-04-20T19:31:35.000Z" - }, - "end": { - "$date": "2022-04-20T19:43:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb6dd4fe-c94b-4d00-9faf-5bcd6ef73233", - "start": { - "$date": "2022-04-20T19:43:35.000Z" - }, - "end": { - "$date": "2022-04-20T21:20:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "16b846cb-9485-4518-929f-6e00694784ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-20T20:30:32.000Z" - }, - "end": { - "$date": "2022-04-20T21:40:04.000Z" - }, - "events": [ - { - "uuid": "35ad4d96-3d01-4739-941a-34da0a3d9cea", - "start": { - "$date": "2022-04-20T20:30:32.000Z" - }, - "end": { - "$date": "2022-04-20T21:40:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "dbc47f08-7dd8-4a20-8856-ddadd659a6d6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-20T22:16:06.000Z" - }, - "end": { - "$date": "2022-04-21T04:28:00.000Z" - }, - "events": [ - { - "uuid": "52e46801-ef52-4ac5-b0ba-f924311b587a", - "start": { - "$date": "2022-04-20T22:16:06.000Z" - }, - "end": { - "$date": "2022-04-21T04:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "776dbc59-6f74-457e-b452-ae5f54275eae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-20T23:16:40.000Z" - }, - "end": { - "$date": "2022-04-20T23:28:31.000Z" - }, - "events": [ - { - "uuid": "46e7a304-b9f7-4e39-9e0c-4ae4688bd1a1", - "start": { - "$date": "2022-04-20T23:16:40.000Z" - }, - "end": { - "$date": "2022-04-20T23:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f857b240-b27b-4ea2-a72a-e664c0bdf2c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T00:07:57.000Z" - }, - "end": { - "$date": "2022-04-21T01:03:38.000Z" - }, - "events": [ - { - "uuid": "03883e70-8061-49ef-8da6-9cad878fd8b4", - "start": { - "$date": "2022-04-21T00:07:57.000Z" - }, - "end": { - "$date": "2022-04-21T00:43:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fc267398-7cd6-41cf-8a33-a87a15d6189c", - "start": { - "$date": "2022-04-21T00:43:57.000Z" - }, - "end": { - "$date": "2022-04-21T01:03:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "764e7824-8d0d-4016-9367-6705e27b761b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-21T00:15:55.000Z" - }, - "end": { - "$date": "2022-04-21T00:48:51.000Z" - }, - "events": [ - { - "uuid": "69d20798-360e-43bb-a71e-66c1ec256fed", - "start": { - "$date": "2022-04-21T00:15:55.000Z" - }, - "end": { - "$date": "2022-04-21T00:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8edf7b0f-0a18-47d6-a1f2-ba9d8d151101", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-21T00:50:24.000Z" - }, - "end": { - "$date": "2022-04-21T01:30:05.000Z" - }, - "events": [ - { - "uuid": "de7aea4e-6d76-4b0c-8990-ce02de643cea", - "start": { - "$date": "2022-04-21T00:50:24.000Z" - }, - "end": { - "$date": "2022-04-21T01:30:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "39c92d06-d767-4a81-b61f-d6be298bd568", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-21T01:03:54.000Z" - }, - "end": { - "$date": "2022-04-21T08:17:00.000Z" - }, - "events": [ - { - "uuid": "c287b978-d1b0-47aa-afae-746bf6f544df", - "start": { - "$date": "2022-04-21T01:03:54.000Z" - }, - "end": { - "$date": "2022-04-21T08:17:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4854997d-15bd-4dd2-b94b-fcabc9c45918", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-21T01:06:13.000Z" - }, - "end": { - "$date": "2022-04-21T08:16:57.000Z" - }, - "events": [ - { - "uuid": "4ee6be1f-d1b9-4c3b-8b60-0ba8fa50e9a5", - "start": { - "$date": "2022-04-21T01:06:13.000Z" - }, - "end": { - "$date": "2022-04-21T08:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6fd3378-5e75-406c-acbb-2aec56be9b7e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-21T01:31:34.000Z" - }, - "end": { - "$date": "2022-04-21T02:08:23.000Z" - }, - "events": [ - { - "uuid": "1f42c32a-17ac-45c1-9a91-b4475566be6a", - "start": { - "$date": "2022-04-21T01:31:34.000Z" - }, - "end": { - "$date": "2022-04-21T02:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0ddcb45b-7c6c-4b57-b521-88e4715068a1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T01:55:31.000Z" - }, - "end": { - "$date": "2022-04-21T02:13:44.000Z" - }, - "events": [ - { - "uuid": "3cf07dd2-fe1a-4baa-96e1-307180300023", - "start": { - "$date": "2022-04-21T01:55:31.000Z" - }, - "end": { - "$date": "2022-04-21T02:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fd7310f3-774e-47c2-abe1-7efe53063082", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T02:17:49.000Z" - }, - "end": { - "$date": "2022-04-21T03:41:27.000Z" - }, - "events": [ - { - "uuid": "8594e6ea-d2d3-4a0c-b465-b8c44b75b661", - "start": { - "$date": "2022-04-21T02:17:49.000Z" - }, - "end": { - "$date": "2022-04-21T03:41:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c38c2386-cb87-4280-bf33-74aaaf4a281d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-21T02:48:22.000Z" - }, - "end": { - "$date": "2022-04-21T04:50:16.000Z" - }, - "events": [ - { - "uuid": "d9bad06d-4b3a-4eb8-910e-9f45f3a36b3a", - "start": { - "$date": "2022-04-21T02:48:22.000Z" - }, - "end": { - "$date": "2022-04-21T04:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "df95933d-9424-4254-af76-a2a9e9eda03b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-21T02:58:21.000Z" - }, - "end": { - "$date": "2022-04-21T05:35:41.000Z" - }, - "events": [ - { - "uuid": "45adfdd4-ac8a-4dfd-99bd-3fafba2bfed8", - "start": { - "$date": "2022-04-21T02:58:21.000Z" - }, - "end": { - "$date": "2022-04-21T05:35:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "0796d182-6de7-4918-b780-418b245ef90b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T03:47:55.000Z" - }, - "end": { - "$date": "2022-04-21T03:49:11.000Z" - }, - "events": [ - { - "uuid": "0d85a0ed-cd05-468c-af47-09b0f0f765c5", - "start": { - "$date": "2022-04-21T03:47:55.000Z" - }, - "end": { - "$date": "2022-04-21T03:49:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "21c666e9-6b03-42a8-9ab1-035aca3c7efe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T03:49:28.000Z" - }, - "end": { - "$date": "2022-04-21T03:56:41.000Z" - }, - "events": [ - { - "uuid": "613060da-bc76-4500-8ffd-2ee0380ba0c4", - "start": { - "$date": "2022-04-21T03:49:28.000Z" - }, - "end": { - "$date": "2022-04-21T03:56:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "98e368ef-5e53-4c2e-aab5-8b6fe358ad4a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T03:57:03.000Z" - }, - "end": { - "$date": "2022-04-21T03:58:29.000Z" - }, - "events": [ - { - "uuid": "d20843b4-34b9-44a8-904c-6d4e656cf707", - "start": { - "$date": "2022-04-21T03:57:03.000Z" - }, - "end": { - "$date": "2022-04-21T03:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "aa95ed4a-7429-4fb1-bc6d-ef27006c153c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-21T03:58:51.000Z" - }, - "end": { - "$date": "2022-04-21T05:08:27.000Z" - }, - "events": [ - { - "uuid": "51b8c584-2adb-4052-9022-f00517480782", - "start": { - "$date": "2022-04-21T03:58:51.000Z" - }, - "end": { - "$date": "2022-04-21T05:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "7c19e045-9485-4558-98ba-ffb779562449", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-21T04:28:25.000Z" - }, - "end": { - "$date": "2022-04-21T05:50:59.000Z" - }, - "events": [ - { - "uuid": "2f0ca03d-5bcf-4272-92a6-696fffe27e3a", - "start": { - "$date": "2022-04-21T04:28:25.000Z" - }, - "end": { - "$date": "2022-04-21T05:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e5b4bed5-3bba-4f92-ad5f-16bce441e8fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-21T04:35:11.000Z" - }, - "end": { - "$date": "2022-04-21T05:21:12.000Z" - }, - "events": [ - { - "uuid": "6a065def-1457-42c5-8428-28fe886734c5", - "start": { - "$date": "2022-04-21T04:35:11.000Z" - }, - "end": { - "$date": "2022-04-21T05:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b57733c-346d-4b3b-9800-6fecbeb82e4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-21T05:15:06.000Z" - }, - "end": { - "$date": "2022-04-21T05:52:20.000Z" - }, - "events": [ - { - "uuid": "53e84cb6-2fdb-4c58-9c9a-f16e8fa379fb", - "start": { - "$date": "2022-04-21T05:15:06.000Z" - }, - "end": { - "$date": "2022-04-21T05:52:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bd2fe81-49be-465e-b398-65e3bb6b2927", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-21T05:54:43.000Z" - }, - "end": { - "$date": "2022-04-21T06:30:14.000Z" - }, - "events": [ - { - "uuid": "a87c041b-7893-4fff-8b4a-6a93cdeed9e0", - "start": { - "$date": "2022-04-21T05:54:43.000Z" - }, - "end": { - "$date": "2022-04-21T06:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "bba89ace-063c-404d-a314-ce016c88a48c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-21T06:32:59.000Z" - }, - "end": { - "$date": "2022-04-21T07:12:06.000Z" - }, - "events": [ - { - "uuid": "feb40b47-8f26-49a0-a003-602d1e9deeca", - "start": { - "$date": "2022-04-21T06:32:59.000Z" - }, - "end": { - "$date": "2022-04-21T07:12:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "57c85cd8-dbbf-458e-86cc-d810685029fe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-21T07:46:00.000Z" - }, - "end": { - "$date": "2022-04-21T08:00:47.000Z" - }, - "events": [ - { - "uuid": "e527d5b9-424c-4198-a63f-1164a786e26b", - "start": { - "$date": "2022-04-21T07:46:00.000Z" - }, - "end": { - "$date": "2022-04-21T08:00:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "45cbb8f1-a16c-4a72-97d1-5c777b41149c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-21T10:18:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:41:02.000Z" - }, - "events": [ - { - "uuid": "225b64a5-8a5f-48c4-9b83-79ffde029e1d", - "start": { - "$date": "2022-04-21T10:18:40.000Z" - }, - "end": { - "$date": "2022-04-21T10:40:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f01e53d5-34f8-4984-870e-7d8f15e50f36", - "start": { - "$date": "2022-04-21T10:40:40.000Z" - }, - "end": { - "$date": "2022-04-21T10:55:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "30d675bc-eed4-4197-933e-527259efe17c", - "start": { - "$date": "2022-04-21T10:55:40.000Z" - }, - "end": { - "$date": "2022-04-21T10:57:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8e53e6ea-7bba-4c34-9d07-855b7c6bf10b", - "start": { - "$date": "2022-04-21T10:57:40.000Z" - }, - "end": { - "$date": "2022-04-21T10:58:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c3b65850-2297-45ca-9e8e-69811e4bef94", - "start": { - "$date": "2022-04-21T10:58:40.000Z" - }, - "end": { - "$date": "2022-04-21T11:32:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83d19fdb-c56d-46b4-b44e-7f58bf917d33", - "start": { - "$date": "2022-04-21T11:32:40.000Z" - }, - "end": { - "$date": "2022-04-21T20:41:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1803045a-5953-4cd3-b239-29ade1975f4f", - "start": { - "$date": "2022-04-21T20:41:40.000Z" - }, - "end": { - "$date": "2022-04-21T20:44:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39014527-8899-4676-bce2-4d44b54427fc", - "start": { - "$date": "2022-04-21T20:44:40.000Z" - }, - "end": { - "$date": "2022-04-21T20:49:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fd7abc03-d7cb-49c4-8be7-a4c69d6db3ee", - "start": { - "$date": "2022-04-21T20:49:40.000Z" - }, - "end": { - "$date": "2022-04-21T20:51:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c1d8ff9-459d-4de1-9bbd-1abc237defea", - "start": { - "$date": "2022-04-21T20:51:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:07:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "709b1f88-304f-4ec1-8e29-b98d7a133dec", - "start": { - "$date": "2022-04-21T21:07:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:18:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eeda7c23-7c0b-42e0-8445-c60f8d7a3ad0", - "start": { - "$date": "2022-04-21T21:18:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:20:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8af571c5-2cfa-441c-bdc2-8f4c4c77cbeb", - "start": { - "$date": "2022-04-21T21:20:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:26:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5999af2-ca66-4039-8eeb-7d650fef1752", - "start": { - "$date": "2022-04-21T21:26:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:27:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f03f6f0c-e871-4872-9674-ab40a794d8dc", - "start": { - "$date": "2022-04-21T21:27:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:29:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70433b61-d256-43df-a7d6-f543afc0d9e7", - "start": { - "$date": "2022-04-21T21:29:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:30:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d069abaf-6908-430a-a3d9-bbd7dafca7fc", - "start": { - "$date": "2022-04-21T21:30:40.000Z" - }, - "end": { - "$date": "2022-04-21T21:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "efe51a97-f13e-44e5-8b7f-636abe0522b7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-04-21T16:15:19.000Z" - }, - "end": { - "$date": "2022-04-21T16:20:18.000Z" - }, - "events": [ - { - "uuid": "566f648a-a5d7-42a1-818c-8dc421c2fc75", - "start": { - "$date": "2022-04-21T16:15:19.000Z" - }, - "end": { - "$date": "2022-04-21T16:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "a5167173-a81f-4cef-97a4-4921edfb6368", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-22T01:02:22.000Z" - }, - "end": { - "$date": "2022-04-22T06:51:48.000Z" - }, - "events": [ - { - "uuid": "95811764-9dad-4965-8d92-892becc64994", - "start": { - "$date": "2022-04-22T01:02:22.000Z" - }, - "end": { - "$date": "2022-04-22T06:51:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "21c72a2c-40f0-4e4d-b545-b9ec04bce32a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-22T01:37:22.000Z" - }, - "end": { - "$date": "2022-04-22T05:09:17.000Z" - }, - "events": [ - { - "uuid": "9c462bb6-a679-4d9b-b2e7-4672bafe73f9", - "start": { - "$date": "2022-04-22T01:37:22.000Z" - }, - "end": { - "$date": "2022-04-22T05:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a09b39dc-9a3e-4bcc-98ab-bb92886c4354", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-22T01:54:03.000Z" - }, - "end": { - "$date": "2022-04-22T05:24:43.000Z" - }, - "events": [ - { - "uuid": "732592bd-c98e-49d3-a37b-8a9e8ae5bc92", - "start": { - "$date": "2022-04-22T01:54:03.000Z" - }, - "end": { - "$date": "2022-04-22T04:29:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "70868cb6-6d7b-481f-baee-3a0a81a25176", - "start": { - "$date": "2022-04-22T04:29:03.000Z" - }, - "end": { - "$date": "2022-04-22T04:34:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e2d9b611-ea09-4270-88f2-40f972cde48f", - "start": { - "$date": "2022-04-22T04:34:03.000Z" - }, - "end": { - "$date": "2022-04-22T04:44:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2474128-5a12-43f5-9aa4-e9df5c015ff0", - "start": { - "$date": "2022-04-22T04:44:03.000Z" - }, - "end": { - "$date": "2022-04-22T04:47:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5097c4c-9e5a-4a0f-bed0-af0cfa87b3a3", - "start": { - "$date": "2022-04-22T04:47:03.000Z" - }, - "end": { - "$date": "2022-04-22T05:03:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "293d4f92-bcb4-467f-b4d3-b97c1bd1ebc0", - "start": { - "$date": "2022-04-22T05:03:03.000Z" - }, - "end": { - "$date": "2022-04-22T05:23:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c1943134-6663-4bb0-a660-2ff4870d7126", - "start": { - "$date": "2022-04-22T05:23:03.000Z" - }, - "end": { - "$date": "2022-04-22T05:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "551ecfd0-36bd-4f38-a709-6e5ef4d717fe", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-22T02:20:54.000Z" - }, - "end": { - "$date": "2022-04-22T06:29:37.000Z" - }, - "events": [ - { - "uuid": "3290853c-96cb-4c12-b0d7-0da6957595b0", - "start": { - "$date": "2022-04-22T02:20:54.000Z" - }, - "end": { - "$date": "2022-04-22T06:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0d6f85ad-5d05-44c8-a357-5c409f496efd", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-22T02:21:43.000Z" - }, - "end": { - "$date": "2022-04-22T06:29:39.000Z" - }, - "events": [ - { - "uuid": "2fc3e0c4-c58c-4625-a5a6-706c21977345", - "start": { - "$date": "2022-04-22T02:21:43.000Z" - }, - "end": { - "$date": "2022-04-22T06:29:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "e5b4e433-e5b0-4a77-ac65-cbeef9a3a1c0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-22T03:43:48.000Z" - }, - "end": { - "$date": "2022-04-22T04:00:54.000Z" - }, - "events": [ - { - "uuid": "9bc69493-2023-413a-bbf4-0a47987eda3e", - "start": { - "$date": "2022-04-22T03:43:48.000Z" - }, - "end": { - "$date": "2022-04-22T04:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4a5c190e-37b0-4eae-9b33-52bb16c8aac0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-22T04:01:44.000Z" - }, - "end": { - "$date": "2022-04-22T05:32:43.000Z" - }, - "events": [ - { - "uuid": "d6a8d0ce-fd1d-4a66-82a0-40110ce3d185", - "start": { - "$date": "2022-04-22T04:01:44.000Z" - }, - "end": { - "$date": "2022-04-22T05:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f92402b8-f3d1-4f54-8da0-b628f6f20a38", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-22T04:21:43.000Z" - }, - "end": { - "$date": "2022-04-22T07:21:06.000Z" - }, - "events": [ - { - "uuid": "dbd7fc10-38f3-4406-a479-de0ee240a734", - "start": { - "$date": "2022-04-22T04:21:43.000Z" - }, - "end": { - "$date": "2022-04-22T07:21:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "358534a7-3afc-4a60-99af-0bbd1543df18", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-22T06:55:36.000Z" - }, - "end": { - "$date": "2022-04-22T10:22:00.000Z" - }, - "events": [ - { - "uuid": "9793d776-f5da-42bc-8e1e-ae3f7dab4ee6", - "start": { - "$date": "2022-04-22T06:55:36.000Z" - }, - "end": { - "$date": "2022-04-22T10:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "43fbce5a-5b3b-4e47-b5c8-28ee82bd7020", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-22T10:12:45.000Z" - }, - "end": { - "$date": "2022-04-22T11:31:26.000Z" - }, - "events": [ - { - "uuid": "978f270a-5348-412f-ba9a-b6ba3027f0c1", - "start": { - "$date": "2022-04-22T10:12:45.000Z" - }, - "end": { - "$date": "2022-04-22T11:31:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "95ecf139-e8c3-4e92-ad19-47a708c39fa6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-22T21:51:15.000Z" - }, - "end": { - "$date": "2022-04-22T21:52:58.000Z" - }, - "events": [ - { - "uuid": "f38d11ef-d96c-47b3-89f2-8bf67e086185", - "start": { - "$date": "2022-04-22T21:51:15.000Z" - }, - "end": { - "$date": "2022-04-22T21:52:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "17b1884c-3392-4b38-b9fd-4b170d30cdaa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-22T21:59:02.000Z" - }, - "end": { - "$date": "2022-04-22T22:39:21.000Z" - }, - "events": [ - { - "uuid": "b22e31d6-d865-4a0f-9c3f-16c2c02eebda", - "start": { - "$date": "2022-04-22T21:59:02.000Z" - }, - "end": { - "$date": "2022-04-22T22:39:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "6c672d1f-5ac2-46f9-8661-917c3e4cde77", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-22T22:03:26.000Z" - }, - "end": { - "$date": "2022-04-23T00:52:40.000Z" - }, - "events": [ - { - "uuid": "4af0f58a-b45c-4d0f-8298-1e8242524098", - "start": { - "$date": "2022-04-22T22:03:26.000Z" - }, - "end": { - "$date": "2022-04-23T00:52:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "530b4625-b207-45e0-9f4f-1ce2d34dad45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-22T23:20:57.000Z" - }, - "end": { - "$date": "2022-04-23T02:00:33.000Z" - }, - "events": [ - { - "uuid": "ab75d557-cb02-4e5c-aab8-a3218f2d36e2", - "start": { - "$date": "2022-04-22T23:20:57.000Z" - }, - "end": { - "$date": "2022-04-23T02:00:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b0df7ebb-6a78-40db-8df3-340a2872d70d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-23T00:02:45.000Z" - }, - "end": { - "$date": "2022-04-23T04:36:47.000Z" - }, - "events": [ - { - "uuid": "f5874dd9-c652-4090-9822-4fd5396fee3e", - "start": { - "$date": "2022-04-23T00:02:45.000Z" - }, - "end": { - "$date": "2022-04-23T04:36:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bb122d2e-324c-46f3-9da9-2750a38aeef3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-23T00:25:29.000Z" - }, - "end": { - "$date": "2022-04-23T01:20:10.000Z" - }, - "events": [ - { - "uuid": "50a72321-67e6-44d2-8751-bce5af34ddcf", - "start": { - "$date": "2022-04-23T00:25:29.000Z" - }, - "end": { - "$date": "2022-04-23T01:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a76494d0-96da-4ce0-b117-f885fe63fe2a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-23T00:31:43.000Z" - }, - "end": { - "$date": "2022-04-23T01:20:21.000Z" - }, - "events": [ - { - "uuid": "7f5771b5-78bc-48ca-955d-e04c0720efe4", - "start": { - "$date": "2022-04-23T00:31:43.000Z" - }, - "end": { - "$date": "2022-04-23T01:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dfa696d5-d82f-4c0a-94eb-d001c258af94", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-23T01:56:03.000Z" - }, - "end": { - "$date": "2022-04-23T07:56:02.000Z" - }, - "events": [ - { - "uuid": "266e5344-48d8-4cf9-9b94-e229f512b557", - "start": { - "$date": "2022-04-23T01:56:03.000Z" - }, - "end": { - "$date": "2022-04-23T07:56:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "046df6a6-e36e-4895-ac5b-ed31d06def45", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-23T01:56:23.000Z" - }, - "end": { - "$date": "2022-04-23T07:56:05.000Z" - }, - "events": [ - { - "uuid": "548133b1-0a70-4858-b506-fb3c07c2361c", - "start": { - "$date": "2022-04-23T01:56:23.000Z" - }, - "end": { - "$date": "2022-04-23T07:56:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5c49090b-1ad6-4879-8951-82af4304e124", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-23T02:30:44.000Z" - }, - "end": { - "$date": "2022-04-23T03:05:02.000Z" - }, - "events": [ - { - "uuid": "404a0ea5-1e5a-4f0b-bdaf-9038e2ba8ec7", - "start": { - "$date": "2022-04-23T02:30:44.000Z" - }, - "end": { - "$date": "2022-04-23T03:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3c0c0f13-4768-466e-b34b-a7acce9d62ad", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T03:14:22.000Z" - }, - "end": { - "$date": "2022-04-23T15:21:20.000Z" - }, - "events": [ - { - "uuid": "40694c6e-3811-4eb7-b470-e71ba6f59668", - "start": { - "$date": "2022-04-23T03:14:22.000Z" - }, - "end": { - "$date": "2022-04-23T03:37:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "55b64e51-8bf8-4cb6-b112-d478cf27be1c", - "start": { - "$date": "2022-04-23T03:37:22.000Z" - }, - "end": { - "$date": "2022-04-23T04:13:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "88f64c38-2683-4a4d-b523-fae60465ba72", - "start": { - "$date": "2022-04-23T04:13:22.000Z" - }, - "end": { - "$date": "2022-04-23T04:44:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4d347a2d-0060-4526-8079-efbd833f624d", - "start": { - "$date": "2022-04-23T04:44:22.000Z" - }, - "end": { - "$date": "2022-04-23T15:19:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "12adae51-1a71-40ff-bea8-667ad2d7c13d", - "start": { - "$date": "2022-04-23T15:19:22.000Z" - }, - "end": { - "$date": "2022-04-23T15:21:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68bfc93f-3320-4836-9f70-779a7841a550", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-23T03:27:49.000Z" - }, - "end": { - "$date": "2022-04-23T04:08:23.000Z" - }, - "events": [ - { - "uuid": "c77ff20f-ab54-4dd7-bb7b-f0a468e8b897", - "start": { - "$date": "2022-04-23T03:27:49.000Z" - }, - "end": { - "$date": "2022-04-23T04:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5cca16d0-61b9-49ed-b21b-fee56b61299f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-23T03:58:35.000Z" - }, - "end": { - "$date": "2022-04-23T07:56:10.000Z" - }, - "events": [ - { - "uuid": "c0da54f5-3a34-4f0b-b225-db36c96edd04", - "start": { - "$date": "2022-04-23T03:58:35.000Z" - }, - "end": { - "$date": "2022-04-23T07:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "569e71ab-4d6b-4ce7-b122-8087e3c5776a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-23T04:00:41.000Z" - }, - "end": { - "$date": "2022-04-23T05:27:48.000Z" - }, - "events": [ - { - "uuid": "27c2abac-5f98-450a-b23a-b880024c30d2", - "start": { - "$date": "2022-04-23T04:00:41.000Z" - }, - "end": { - "$date": "2022-04-23T05:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "36c068fe-aac2-4d56-a9b0-f4a0aead84d5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-23T04:09:13.000Z" - }, - "end": { - "$date": "2022-04-23T04:40:06.000Z" - }, - "events": [ - { - "uuid": "29171fb2-b185-4c33-ad7e-a3d7197d9a8a", - "start": { - "$date": "2022-04-23T04:09:13.000Z" - }, - "end": { - "$date": "2022-04-23T04:40:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2430f3dc-c34e-4de0-a958-1003dce1ddb3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-23T04:42:26.000Z" - }, - "end": { - "$date": "2022-04-23T05:21:40.000Z" - }, - "events": [ - { - "uuid": "9e7752af-9fb2-47c6-8f48-7a94a737744f", - "start": { - "$date": "2022-04-23T04:42:26.000Z" - }, - "end": { - "$date": "2022-04-23T05:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1ed25a17-8b9b-43f1-8e0d-5558beba76bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-23T05:29:41.000Z" - }, - "end": { - "$date": "2022-04-23T10:00:30.000Z" - }, - "events": [ - { - "uuid": "2998b5d2-f583-4ee4-afcb-bd840d6bf314", - "start": { - "$date": "2022-04-23T05:29:41.000Z" - }, - "end": { - "$date": "2022-04-23T10:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2d2e5ed9-a3be-4003-91a7-8cc695c1969b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-23T05:37:01.000Z" - }, - "end": { - "$date": "2022-04-23T06:22:12.000Z" - }, - "events": [ - { - "uuid": "1def9f3f-c72b-45ff-95b2-b8d2d4ec9458", - "start": { - "$date": "2022-04-23T05:37:01.000Z" - }, - "end": { - "$date": "2022-04-23T06:22:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2729f88f-2aaf-4538-9739-91fa51513d77", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-23T05:39:29.000Z" - }, - "end": { - "$date": "2022-04-23T08:07:47.000Z" - }, - "events": [ - { - "uuid": "ef7f9f8a-0a30-4317-bbe8-dc4c323817c9", - "start": { - "$date": "2022-04-23T05:39:29.000Z" - }, - "end": { - "$date": "2022-04-23T08:07:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d7d9322e-4f82-4b0b-8f26-e11dea77d05a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-23T06:04:30.000Z" - }, - "end": { - "$date": "2022-04-23T07:27:48.000Z" - }, - "events": [ - { - "uuid": "022d45b8-e65a-4524-8a75-f6ef3ae07eac", - "start": { - "$date": "2022-04-23T06:04:30.000Z" - }, - "end": { - "$date": "2022-04-23T07:27:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "6d94c398-fa6b-4ec6-a189-8d7e68a795eb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-23T07:29:10.000Z" - }, - "end": { - "$date": "2022-04-23T07:44:22.000Z" - }, - "events": [ - { - "uuid": "5ede0573-3ce8-4108-88a0-ce06def23731", - "start": { - "$date": "2022-04-23T07:29:10.000Z" - }, - "end": { - "$date": "2022-04-23T07:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "e272251b-de08-4002-bd46-03f0bfdbadeb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-23T08:20:27.000Z" - }, - "end": { - "$date": "2022-04-23T09:12:25.000Z" - }, - "events": [ - { - "uuid": "f89a615a-bff5-4b49-ab0b-95f358a96a02", - "start": { - "$date": "2022-04-23T08:20:27.000Z" - }, - "end": { - "$date": "2022-04-23T09:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "77b2c112-1b51-4447-a016-b5f53ea8f2b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-23T14:54:15.000Z" - }, - "end": { - "$date": "2022-04-23T15:20:41.000Z" - }, - "events": [ - { - "uuid": "f5a2c69e-2b59-4c3a-90f6-10f498bf188e", - "start": { - "$date": "2022-04-23T14:54:15.000Z" - }, - "end": { - "$date": "2022-04-23T15:20:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1916d2c0-213e-467e-998b-46bd7af45198", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T15:41:33.000Z" - }, - "end": { - "$date": "2022-04-23T16:10:06.000Z" - }, - "events": [ - { - "uuid": "58c6f66a-96cf-4474-8f53-0461d80b5dcf", - "start": { - "$date": "2022-04-23T15:41:33.000Z" - }, - "end": { - "$date": "2022-04-23T16:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7b15eae1-bc39-4b57-befa-c51a06924102", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T16:13:02.000Z" - }, - "end": { - "$date": "2022-04-23T16:17:17.000Z" - }, - "events": [ - { - "uuid": "592cb023-2201-4f48-ab10-79a9996db2bc", - "start": { - "$date": "2022-04-23T16:13:02.000Z" - }, - "end": { - "$date": "2022-04-23T16:17:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "baa633bc-ed61-4bac-98ee-c726ecfabb61", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T16:17:38.000Z" - }, - "end": { - "$date": "2022-04-23T16:18:47.000Z" - }, - "events": [ - { - "uuid": "f558e74b-16ed-422e-bf2e-a57985a6238d", - "start": { - "$date": "2022-04-23T16:17:38.000Z" - }, - "end": { - "$date": "2022-04-23T16:18:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "7c9b2af6-3ab5-4129-8037-631eac8cd0fc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T16:19:13.000Z" - }, - "end": { - "$date": "2022-04-23T18:05:49.000Z" - }, - "events": [ - { - "uuid": "20588ecc-0566-42df-9614-ef2131251dc2", - "start": { - "$date": "2022-04-23T16:19:13.000Z" - }, - "end": { - "$date": "2022-04-23T18:05:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "80a45091-b2b5-4db1-bef8-f97b1db08c0d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-23T18:34:00.000Z" - }, - "end": { - "$date": "2022-04-23T19:23:50.000Z" - }, - "events": [ - { - "uuid": "2a6c7c85-5844-4f6d-ba3e-5b38d0841038", - "start": { - "$date": "2022-04-23T18:34:00.000Z" - }, - "end": { - "$date": "2022-04-23T19:23:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0f3cf8b9-4315-490d-bcf1-dda5c02c0f7d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T19:03:02.000Z" - }, - "end": { - "$date": "2022-04-23T19:04:12.000Z" - }, - "events": [ - { - "uuid": "7c7d55d7-4aff-4ee0-b3f7-0c7c659c2eaa", - "start": { - "$date": "2022-04-23T19:03:02.000Z" - }, - "end": { - "$date": "2022-04-23T19:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "14959548-20b1-4b42-8cad-1ec923a974d1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T19:04:17.000Z" - }, - "end": { - "$date": "2022-04-23T19:31:40.000Z" - }, - "events": [ - { - "uuid": "ae5e978d-3631-42bc-a2c2-b3c5dcd42c0e", - "start": { - "$date": "2022-04-23T19:04:17.000Z" - }, - "end": { - "$date": "2022-04-23T19:31:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "06dff574-1ec5-4053-ac23-f2d75f0fef0f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T19:32:00.000Z" - }, - "end": { - "$date": "2022-04-23T20:59:21.000Z" - }, - "events": [ - { - "uuid": "121d2c92-3968-4bad-8951-5dd13b1fa188", - "start": { - "$date": "2022-04-23T19:32:00.000Z" - }, - "end": { - "$date": "2022-04-23T20:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "4f1e688d-be09-4c28-a6bc-394025c33386", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-23T20:57:57.000Z" - }, - "end": { - "$date": "2022-04-23T21:05:22.000Z" - }, - "events": [ - { - "uuid": "9b29d18c-4e25-48dc-aef7-2e76323d7586", - "start": { - "$date": "2022-04-23T20:57:57.000Z" - }, - "end": { - "$date": "2022-04-23T21:05:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "d9837c57-16e5-45e3-ba4f-192f0d47925c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-23T21:05:28.000Z" - }, - "end": { - "$date": "2022-04-23T22:18:15.000Z" - }, - "events": [ - { - "uuid": "aabd8f47-fcd6-4752-bc07-a2bae02e6cbf", - "start": { - "$date": "2022-04-23T21:05:28.000Z" - }, - "end": { - "$date": "2022-04-23T22:18:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1bebc86e-ddb6-4149-8f8f-e2ca2f79c1b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-23T21:59:19.000Z" - }, - "end": { - "$date": "2022-04-23T22:16:25.000Z" - }, - "events": [ - { - "uuid": "85483a3d-89a0-49cc-8eec-5bf6bcae7b2e", - "start": { - "$date": "2022-04-23T21:59:19.000Z" - }, - "end": { - "$date": "2022-04-23T22:16:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ccd0442e-4a07-4b87-b98f-2d6ac039a64a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-23T22:21:21.000Z" - }, - "end": { - "$date": "2022-04-23T22:36:17.000Z" - }, - "events": [ - { - "uuid": "9100ad1e-f8b1-4de9-a259-bc8a409d014d", - "start": { - "$date": "2022-04-23T22:21:21.000Z" - }, - "end": { - "$date": "2022-04-23T22:36:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "170f3c34-ff82-40ea-b0e2-4c28a87ec091", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-23T22:29:46.000Z" - }, - "end": { - "$date": "2022-04-24T11:05:28.000Z" - }, - "events": [ - { - "uuid": "454a38f8-cf1b-4368-997a-239288282b55", - "start": { - "$date": "2022-04-23T22:29:46.000Z" - }, - "end": { - "$date": "2022-04-24T01:11:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dd7da549-f6b4-4a6a-9863-968f97db663d", - "start": { - "$date": "2022-04-24T01:11:46.000Z" - }, - "end": { - "$date": "2022-04-24T01:13:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "22459eb8-2855-4c8e-b857-081a0d513038", - "start": { - "$date": "2022-04-24T01:13:46.000Z" - }, - "end": { - "$date": "2022-04-24T02:45:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "820ff07e-fea1-46c0-9549-5eb0e0a60ca5", - "start": { - "$date": "2022-04-24T02:45:46.000Z" - }, - "end": { - "$date": "2022-04-24T03:36:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2c2d8c81-f82d-4dbe-84cb-ae766cfb5ebb", - "start": { - "$date": "2022-04-24T03:36:46.000Z" - }, - "end": { - "$date": "2022-04-24T06:17:46.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "626aa715-ad7f-417a-b106-476a1388f391", - "start": { - "$date": "2022-04-24T06:17:46.000Z" - }, - "end": { - "$date": "2022-04-24T06:28:46.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7ea78af4-875f-4138-8428-15bd9778bdab", - "start": { - "$date": "2022-04-24T06:28:46.000Z" - }, - "end": { - "$date": "2022-04-24T11:05:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b58952cd-3653-4fbf-9d78-39a6af047b5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-23T22:36:40.000Z" - }, - "end": { - "$date": "2022-04-24T01:12:35.000Z" - }, - "events": [ - { - "uuid": "34525f43-eb0b-4e83-ad3a-740e802690d9", - "start": { - "$date": "2022-04-23T22:36:40.000Z" - }, - "end": { - "$date": "2022-04-24T01:12:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "69b33cc0-2c50-498c-8aff-76554ccc205e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-23T23:07:33.000Z" - }, - "end": { - "$date": "2022-04-23T23:57:38.000Z" - }, - "events": [ - { - "uuid": "2c1a775a-5af0-4e07-9dc0-1bc221fee824", - "start": { - "$date": "2022-04-23T23:07:33.000Z" - }, - "end": { - "$date": "2022-04-23T23:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "529329a2-abb1-4542-8140-6821d9dd1183", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-24T00:19:26.000Z" - }, - "end": { - "$date": "2022-04-24T00:44:17.000Z" - }, - "events": [ - { - "uuid": "3d098ca7-1bda-4304-bcdc-c3025bccd9aa", - "start": { - "$date": "2022-04-24T00:19:26.000Z" - }, - "end": { - "$date": "2022-04-24T00:44:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6aa99077-9d2b-4bb3-b5d4-43a70bf3bc49", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-24T00:23:25.000Z" - }, - "end": { - "$date": "2022-04-24T00:50:29.000Z" - }, - "events": [ - { - "uuid": "7a7eee18-03f0-43e2-bbe9-0286d15c39c7", - "start": { - "$date": "2022-04-24T00:23:25.000Z" - }, - "end": { - "$date": "2022-04-24T00:50:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", - "uuid": "a170cdee-1d04-4dd1-96c6-78ffbcfac335", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T01:22:20.000Z" - }, - "end": { - "$date": "2022-04-24T01:42:12.000Z" - }, - "events": [ - { - "uuid": "2478cd8e-97a9-40d6-9ec2-71620007887e", - "start": { - "$date": "2022-04-24T01:22:20.000Z" - }, - "end": { - "$date": "2022-04-24T01:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4e81db9c-c5f4-4cf0-87fc-8a8687fb11af", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-24T02:09:56.000Z" - }, - "end": { - "$date": "2022-04-24T04:56:23.000Z" - }, - "events": [ - { - "uuid": "a65f5bed-b7da-4f21-b7fe-8e7f4ebd2a96", - "start": { - "$date": "2022-04-24T02:09:56.000Z" - }, - "end": { - "$date": "2022-04-24T04:12:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7396762c-93c8-4f8e-84b6-0996804b317b", - "start": { - "$date": "2022-04-24T04:12:56.000Z" - }, - "end": { - "$date": "2022-04-24T04:17:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df70864f-9bbf-452e-8340-76acf4a19e67", - "start": { - "$date": "2022-04-24T04:17:56.000Z" - }, - "end": { - "$date": "2022-04-24T04:56:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bddb30ae-e140-4782-bcba-9b0dcb24e1aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T02:18:57.000Z" - }, - "end": { - "$date": "2022-04-24T03:48:29.000Z" - }, - "events": [ - { - "uuid": "6950f343-edf0-44b7-9fd5-906fedb95833", - "start": { - "$date": "2022-04-24T02:18:57.000Z" - }, - "end": { - "$date": "2022-04-24T03:48:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", - "uuid": "cf7ec668-623e-462f-956f-faced864464a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T03:49:34.000Z" - }, - "end": { - "$date": "2022-04-24T03:51:19.000Z" - }, - "events": [ - { - "uuid": "9ad153c8-16be-4386-a366-c16710594ee2", - "start": { - "$date": "2022-04-24T03:49:34.000Z" - }, - "end": { - "$date": "2022-04-24T03:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "567faf61-74dc-4bc0-839d-19553732d331", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-24T04:02:51.000Z" - }, - "end": { - "$date": "2022-04-24T08:39:45.000Z" - }, - "events": [ - { - "uuid": "1ace75e2-93ef-4428-8129-a21e37c3bac0", - "start": { - "$date": "2022-04-24T04:02:51.000Z" - }, - "end": { - "$date": "2022-04-24T08:39:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0def6d8f-d80c-44b6-90dc-fdbd3c69aa1f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-24T04:06:51.000Z" - }, - "end": { - "$date": "2022-04-24T08:39:52.000Z" - }, - "events": [ - { - "uuid": "5078b665-0b82-4889-a9bd-735057d6199a", - "start": { - "$date": "2022-04-24T04:06:51.000Z" - }, - "end": { - "$date": "2022-04-24T08:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "348e9cce-7ca7-4bec-8178-f8c355dcf0d2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-24T04:14:22.000Z" - }, - "end": { - "$date": "2022-04-24T04:15:52.000Z" - }, - "events": [ - { - "uuid": "b77b0786-96f3-4fb8-a0fc-c80936917394", - "start": { - "$date": "2022-04-24T04:14:22.000Z" - }, - "end": { - "$date": "2022-04-24T04:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "05940f3a-955c-4bc5-8a26-c72b6dd44594", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-24T05:00:15.000Z" - }, - "end": { - "$date": "2022-04-24T07:19:01.000Z" - }, - "events": [ - { - "uuid": "2ef9ea0a-f51c-458d-b6bd-ff516ec826af", - "start": { - "$date": "2022-04-24T05:00:15.000Z" - }, - "end": { - "$date": "2022-04-24T07:19:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "739ea62c-0b32-432e-bdcd-a6964a244233", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-24T05:36:03.000Z" - }, - "end": { - "$date": "2022-04-24T08:40:01.000Z" - }, - "events": [ - { - "uuid": "6106bbf1-a963-4dcb-ad6f-4db247d06f58", - "start": { - "$date": "2022-04-24T05:36:03.000Z" - }, - "end": { - "$date": "2022-04-24T08:40:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "46909902-d99f-4a32-a5c3-eb3dbebb4ad6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-24T02:09:56.000Z" - }, - "end": { - "$date": "2022-04-24T07:19:10.000Z" - }, - "events": [ - { - "uuid": "00617810-852a-4150-a53e-66ede58fe4be", - "start": { - "$date": "2022-04-24T02:09:56.000Z" - }, - "end": { - "$date": "2022-04-24T07:19:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", - "uuid": "3595d082-87c4-48ca-9370-b8010fbf9891", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T14:02:02.000Z" - }, - "end": { - "$date": "2022-04-24T14:14:49.000Z" - }, - "events": [ - { - "uuid": "405041cc-1f61-4e1b-baae-e88cf8b84f31", - "start": { - "$date": "2022-04-24T14:02:02.000Z" - }, - "end": { - "$date": "2022-04-24T14:14:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "34b890b5-1d81-4cdc-a6f8-7d4fb4fca46f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T14:15:14.000Z" - }, - "end": { - "$date": "2022-04-24T14:17:09.000Z" - }, - "events": [ - { - "uuid": "86c3156a-79b9-40e5-990a-06236b14003e", - "start": { - "$date": "2022-04-24T14:15:14.000Z" - }, - "end": { - "$date": "2022-04-24T14:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "371e2100-9f71-4afb-9577-7330fe9cc7b0", - "uuid": "70cfa77d-594e-47f6-a563-0e0e6434ff5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T14:17:44.000Z" - }, - "end": { - "$date": "2022-04-24T15:19:44.000Z" - }, - "events": [ - { - "uuid": "0e66e0eb-c9f2-428c-80a7-cff5b4bb02c1", - "start": { - "$date": "2022-04-24T14:17:44.000Z" - }, - "end": { - "$date": "2022-04-24T15:19:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bcab562f-17f4-4edd-995b-65cd909abe29", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-24T14:32:25.000Z" - }, - "end": { - "$date": "2022-04-24T16:06:23.000Z" - }, - "events": [ - { - "uuid": "6e2c3a4b-eb1b-4d6d-b0c4-ac2b6d174489", - "start": { - "$date": "2022-04-24T14:32:25.000Z" - }, - "end": { - "$date": "2022-04-24T16:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "948eb717-2e68-4002-a65c-0295ec10a963", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-24T23:56:25.000Z" - }, - "end": { - "$date": "2022-04-25T00:12:56.000Z" - }, - "events": [ - { - "uuid": "2e00776b-c45e-466d-b959-e9674f83e0d6", - "start": { - "$date": "2022-04-24T23:56:25.000Z" - }, - "end": { - "$date": "2022-04-25T04:08:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "41e21c58-a143-487c-b510-8d4212adfd45", - "start": { - "$date": "2022-04-25T04:08:25.000Z" - }, - "end": { - "$date": "2022-04-25T04:13:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "724ac1b1-a4a2-4ee6-b9b9-596766679527", - "start": { - "$date": "2022-04-25T04:13:25.000Z" - }, - "end": { - "$date": "2022-04-25T04:23:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8795ba2b-0a61-4789-aaef-1041917da084", - "start": { - "$date": "2022-04-25T04:23:25.000Z" - }, - "end": { - "$date": "2022-04-25T05:11:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d1da0656-6b0b-43c5-8b21-19428bfadd8e", - "start": { - "$date": "2022-04-25T05:11:25.000Z" - }, - "end": { - "$date": "2022-04-25T00:12:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "4a2b72ba-1fbf-4b24-8a13-89b7db67b561", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-24T16:09:03.000Z" - }, - "end": { - "$date": "2022-04-24T16:16:34.000Z" - }, - "events": [ - { - "uuid": "ba022e8e-7586-4cb6-8b14-c30f60f49e92", - "start": { - "$date": "2022-04-24T16:09:03.000Z" - }, - "end": { - "$date": "2022-04-24T16:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b77e5b62-16a1-4aae-bfdd-a24298e4a7ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-24T19:50:30.000Z" - }, - "end": { - "$date": "2022-04-24T23:14:48.000Z" - }, - "events": [ - { - "uuid": "bfa42e7b-9cc1-4982-a408-a3a65f5629e5", - "start": { - "$date": "2022-04-24T19:50:30.000Z" - }, - "end": { - "$date": "2022-04-24T23:14:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "025cdcad-a8b1-4b33-9270-0a2796132a1e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-24T21:13:12.000Z" - }, - "end": { - "$date": "2022-04-24T23:51:34.000Z" - }, - "events": [ - { - "uuid": "3e80c09e-a6e5-4b75-92a2-af0cfd41f854", - "start": { - "$date": "2022-04-24T21:13:12.000Z" - }, - "end": { - "$date": "2022-04-24T23:51:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "55b8e011-055e-481f-8d27-460ab6f5e7fe", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-04-24T22:03:25.000Z" - }, - "end": { - "$date": "2022-04-24T22:14:53.000Z" - }, - "events": [ - { - "uuid": "47c979f0-feb3-4838-b9c2-5c43e6273df4", - "start": { - "$date": "2022-04-24T22:03:25.000Z" - }, - "end": { - "$date": "2022-04-24T22:14:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "d144f6fd-2a23-4081-98c6-79c634e3c4a2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-04-24T22:50:52.000Z" - }, - "end": { - "$date": "2022-04-24T23:15:09.000Z" - }, - "events": [ - { - "uuid": "322dd8d5-3c10-4c56-a4dc-4cbc31c8de82", - "start": { - "$date": "2022-04-24T22:50:52.000Z" - }, - "end": { - "$date": "2022-04-24T23:15:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6d96b3f9-e429-4b1b-a518-1a496b818fd2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-24T23:15:13.000Z" - }, - "end": { - "$date": "2022-04-25T00:13:54.000Z" - }, - "events": [ - { - "uuid": "f736c441-b787-477e-8f1a-2ebe9aa07657", - "start": { - "$date": "2022-04-24T23:15:13.000Z" - }, - "end": { - "$date": "2022-04-25T00:13:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "399caaf7-929d-45a8-91e9-65d41ec28578", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-04-24T23:15:34.000Z" - }, - "end": { - "$date": "2022-04-25T01:15:40.000Z" - }, - "events": [ - { - "uuid": "020b0aa2-3a26-472c-be47-9f23bdf59917", - "start": { - "$date": "2022-04-24T23:15:34.000Z" - }, - "end": { - "$date": "2022-04-25T01:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8834d4fa-0fae-4f15-b8ae-db3e2012c569", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-25T00:10:15.000Z" - }, - "end": { - "$date": "2022-04-25T01:18:32.000Z" - }, - "events": [ - { - "uuid": "675ecd1b-5ce8-486b-a568-78fc5743d3d0", - "start": { - "$date": "2022-04-25T00:10:15.000Z" - }, - "end": { - "$date": "2022-04-25T01:18:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "64a00fce-c5f0-478b-af96-ecdc8d99e9e6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-25T00:14:56.000Z" - }, - "end": { - "$date": "2022-04-25T00:20:35.000Z" - }, - "events": [ - { - "uuid": "bb04912d-9c6d-48f6-9913-210c7ac4bf29", - "start": { - "$date": "2022-04-25T00:14:56.000Z" - }, - "end": { - "$date": "2022-04-25T00:20:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "df055f11-0a6c-4583-b533-9d833d0060cc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-25T00:44:32.000Z" - }, - "end": { - "$date": "2022-04-25T01:02:07.000Z" - }, - "events": [ - { - "uuid": "7fa14008-693d-49e0-a3e1-240e3d89c5a2", - "start": { - "$date": "2022-04-25T00:44:32.000Z" - }, - "end": { - "$date": "2022-04-25T01:02:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "25263638-fd0c-4c92-969c-1ed2e0cbb706", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-25T00:48:41.000Z" - }, - "end": { - "$date": "2022-04-25T11:16:33.000Z" - }, - "events": [ - { - "uuid": "c81c1540-68c9-4bbe-9b6e-b02973197511", - "start": { - "$date": "2022-04-25T00:48:41.000Z" - }, - "end": { - "$date": "2022-04-25T11:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6e67153f-fec2-4813-aa58-dd9da0f9938b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-25T02:04:57.000Z" - }, - "end": { - "$date": "2022-04-25T02:06:54.000Z" - }, - "events": [ - { - "uuid": "0d2c31f9-faa5-491e-98a6-a49728e37a17", - "start": { - "$date": "2022-04-25T02:04:57.000Z" - }, - "end": { - "$date": "2022-04-25T02:53:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a1142b6-8eb5-4aaf-8ec9-70f1170ba518", - "start": { - "$date": "2022-04-25T02:53:57.000Z" - }, - "end": { - "$date": "2022-04-25T02:06:54.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "96e53293-d883-4725-8ce8-dd1fbf897fb3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-25T03:34:22.000Z" - }, - "end": { - "$date": "2022-04-25T05:54:04.000Z" - }, - "events": [ - { - "uuid": "68b0f330-14b2-4695-8cbf-c2454accea87", - "start": { - "$date": "2022-04-25T03:34:22.000Z" - }, - "end": { - "$date": "2022-04-25T05:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "20b4009f-ff46-4c39-9127-29893acbb154", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-25T03:56:47.000Z" - }, - "end": { - "$date": "2022-04-25T04:00:28.000Z" - }, - "events": [ - { - "uuid": "8d157cfb-eb91-4701-b51c-7a5142183586", - "start": { - "$date": "2022-04-25T03:56:47.000Z" - }, - "end": { - "$date": "2022-04-25T04:00:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "15ab04bb-6035-4ac1-b850-25accb175ec1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-25T04:29:24.000Z" - }, - "end": { - "$date": "2022-04-25T06:11:40.000Z" - }, - "events": [ - { - "uuid": "545cbb62-6fec-4a9f-9189-5b95f3969eb0", - "start": { - "$date": "2022-04-25T04:29:24.000Z" - }, - "end": { - "$date": "2022-04-25T06:11:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "67daf8b8-6fae-4057-867c-61e6d13fb368", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-25T04:33:38.000Z" - }, - "end": { - "$date": "2022-04-25T05:54:18.000Z" - }, - "events": [ - { - "uuid": "d3a401a4-8664-400e-bcb6-f539267bffff", - "start": { - "$date": "2022-04-25T04:33:38.000Z" - }, - "end": { - "$date": "2022-04-25T05:54:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1793a55a-4a0c-4db5-ae6d-34519945724b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T05:08:23.000Z" - }, - "end": { - "$date": "2022-04-25T05:09:36.000Z" - }, - "events": [ - { - "uuid": "015975ff-d739-4c5d-93c3-37e7afc9eef0", - "start": { - "$date": "2022-04-25T05:08:23.000Z" - }, - "end": { - "$date": "2022-04-25T05:09:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb199b71-ce23-4218-92d7-b3272f379d96", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T05:13:36.000Z" - }, - "end": { - "$date": "2022-04-25T05:44:24.000Z" - }, - "events": [ - { - "uuid": "d51d7a17-805b-4b11-a11c-2335a015d463", - "start": { - "$date": "2022-04-25T05:13:36.000Z" - }, - "end": { - "$date": "2022-04-25T05:44:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cf7700ed-d648-4361-a231-7a4fe363d93d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-25T05:22:42.000Z" - }, - "end": { - "$date": "2022-04-25T06:25:16.000Z" - }, - "events": [ - { - "uuid": "139f0d0c-6657-4c54-81fc-817eaa4f66cd", - "start": { - "$date": "2022-04-25T05:22:42.000Z" - }, - "end": { - "$date": "2022-04-25T06:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3d4d93e-0b4d-4e0c-b017-70e92358c617", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T05:45:24.000Z" - }, - "end": { - "$date": "2022-04-25T06:22:34.000Z" - }, - "events": [ - { - "uuid": "9ad45437-1a17-40b9-acec-0fb8989439a8", - "start": { - "$date": "2022-04-25T05:45:24.000Z" - }, - "end": { - "$date": "2022-04-25T06:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24aa4e3d-14ea-4053-b31e-8992d88ac51b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T06:23:50.000Z" - }, - "end": { - "$date": "2022-04-25T06:53:34.000Z" - }, - "events": [ - { - "uuid": "6f87105d-4600-4618-8684-edc43f294dfd", - "start": { - "$date": "2022-04-25T06:23:50.000Z" - }, - "end": { - "$date": "2022-04-25T06:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efb85850-c3a9-4fad-97c4-e0e9f22cf4e5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T06:54:48.000Z" - }, - "end": { - "$date": "2022-04-25T07:31:45.000Z" - }, - "events": [ - { - "uuid": "2a56bd3c-f58b-494f-8c10-6dfc2ada3f8e", - "start": { - "$date": "2022-04-25T06:54:48.000Z" - }, - "end": { - "$date": "2022-04-25T07:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4aab793d-965a-4047-ae38-8ead1a0db342", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-25T06:58:37.000Z" - }, - "end": { - "$date": "2022-04-25T08:50:19.000Z" - }, - "events": [ - { - "uuid": "f42c1988-89a7-4355-b35b-cb9ad63144b8", - "start": { - "$date": "2022-04-25T06:58:37.000Z" - }, - "end": { - "$date": "2022-04-25T08:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad298c43-9c26-4616-8688-141d89e29d50", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T07:33:38.000Z" - }, - "end": { - "$date": "2022-04-25T07:59:42.000Z" - }, - "events": [ - { - "uuid": "f500cfa3-f3a6-42e3-a249-938644300894", - "start": { - "$date": "2022-04-25T07:33:38.000Z" - }, - "end": { - "$date": "2022-04-25T07:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d7faf77c-782a-49c6-9052-a593b3eb4901", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T08:01:22.000Z" - }, - "end": { - "$date": "2022-04-25T08:35:24.000Z" - }, - "events": [ - { - "uuid": "04b41fbf-993e-4737-9d30-2b7ca5e60632", - "start": { - "$date": "2022-04-25T08:01:22.000Z" - }, - "end": { - "$date": "2022-04-25T08:35:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "25d8ac9e-eada-4507-8122-1f1ea5d39aa0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-25T09:25:05.000Z" - }, - "end": { - "$date": "2022-04-25T09:37:22.000Z" - }, - "events": [ - { - "uuid": "e53e8a4e-ff5f-4841-9a60-292348bb4069", - "start": { - "$date": "2022-04-25T09:25:05.000Z" - }, - "end": { - "$date": "2022-04-25T09:37:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a29773ac-d333-434c-ac25-759b50eba6ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-25T15:58:55.000Z" - }, - "end": { - "$date": "2022-04-25T23:42:11.000Z" - }, - "events": [ - { - "uuid": "6c3d437a-bb28-4df1-a112-23de78e3dff4", - "start": { - "$date": "2022-04-25T15:58:55.000Z" - }, - "end": { - "$date": "2022-04-25T16:14:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "160a2a00-c569-4c29-bf3f-81da9a0ee2b7", - "start": { - "$date": "2022-04-25T16:14:55.000Z" - }, - "end": { - "$date": "2022-04-25T16:18:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1eb5e088-babd-42f0-b5cf-cd5c2185d756", - "start": { - "$date": "2022-04-25T16:18:55.000Z" - }, - "end": { - "$date": "2022-04-25T17:38:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dde57a47-9508-4530-b331-260780cdf884", - "start": { - "$date": "2022-04-25T17:38:55.000Z" - }, - "end": { - "$date": "2022-04-25T18:12:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f9a0abdc-93c1-454e-8c44-ef677ae48c81", - "start": { - "$date": "2022-04-25T18:12:55.000Z" - }, - "end": { - "$date": "2022-04-25T23:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ee8d3302-7bbe-49be-9f27-debed59e0707", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-25T22:40:49.000Z" - }, - "end": { - "$date": "2022-04-26T00:01:54.000Z" - }, - "events": [ - { - "uuid": "ad78cb13-761f-4124-813e-c49e16b67cbb", - "start": { - "$date": "2022-04-25T22:40:49.000Z" - }, - "end": { - "$date": "2022-04-26T00:01:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "12b2693e-1812-40d2-b3d0-5c9961b92d1d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-25T23:59:22.000Z" - }, - "end": { - "$date": "2022-04-26T00:15:38.000Z" - }, - "events": [ - { - "uuid": "74005198-1c7c-4655-9619-938a70263935", - "start": { - "$date": "2022-04-25T23:59:22.000Z" - }, - "end": { - "$date": "2022-04-26T00:15:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "4dc385fb-ba5d-43e6-a277-e049ae3168f5", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-04-26T00:10:09.000Z" - }, - "end": { - "$date": "2022-04-26T02:53:05.000Z" - }, - "events": [ - { - "uuid": "c3b49801-fd91-4a80-adfe-418a1804b6d3", - "start": { - "$date": "2022-04-26T00:10:09.000Z" - }, - "end": { - "$date": "2022-04-26T02:53:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c7336b1a-6827-4f22-bda0-1546471effdf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-26T00:56:34.000Z" - }, - "end": { - "$date": "2022-04-26T01:00:54.000Z" - }, - "events": [ - { - "uuid": "7add2dd0-0849-42ef-9b1e-3a3701296cf1", - "start": { - "$date": "2022-04-26T00:56:34.000Z" - }, - "end": { - "$date": "2022-04-26T01:00:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57f2865c-e587-43de-94a3-714adaef9fb4", - "uuid": "30a0e63a-76c7-4330-9fbd-514c7ecbd4f6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-26T01:28:00.000Z" - }, - "end": { - "$date": "2022-04-26T01:31:20.000Z" - }, - "events": [ - { - "uuid": "b9d79d90-1977-448d-b643-fbb4fee6ab12", - "start": { - "$date": "2022-04-26T01:28:00.000Z" - }, - "end": { - "$date": "2022-04-26T01:31:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "637ec669-da1d-4590-a921-feb798d306c5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-26T01:41:07.000Z" - }, - "end": { - "$date": "2022-04-26T04:55:54.000Z" - }, - "events": [ - { - "uuid": "8588cc62-3717-4193-b523-db3301a63361", - "start": { - "$date": "2022-04-26T01:41:07.000Z" - }, - "end": { - "$date": "2022-04-26T04:55:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4d1baed-68fb-45fd-afdc-b9e487068fb6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-26T02:24:04.000Z" - }, - "end": { - "$date": "2022-04-26T02:52:01.000Z" - }, - "events": [ - { - "uuid": "d1d4080e-5cf2-4a5a-ac98-5d1e0d2e192f", - "start": { - "$date": "2022-04-26T02:24:04.000Z" - }, - "end": { - "$date": "2022-04-26T02:52:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "79a3cc15-e712-45f0-8bea-5465a525bd97", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-26T02:37:04.000Z" - }, - "end": { - "$date": "2022-04-26T04:31:29.000Z" - }, - "events": [ - { - "uuid": "de6154bd-7c36-4f0d-a74e-69296ed04063", - "start": { - "$date": "2022-04-26T02:37:04.000Z" - }, - "end": { - "$date": "2022-04-26T04:31:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70f60f12-391a-4d54-bd3d-27e6e1e59504", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-26T02:52:42.000Z" - }, - "end": { - "$date": "2022-04-26T03:27:03.000Z" - }, - "events": [ - { - "uuid": "3e4c9a37-8af0-4d31-bf1e-8ccc1e59525e", - "start": { - "$date": "2022-04-26T02:52:42.000Z" - }, - "end": { - "$date": "2022-04-26T03:27:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e7836133-8798-4dcc-b7fd-bdb5e6122364", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-26T03:09:49.000Z" - }, - "end": { - "$date": "2022-04-26T04:31:25.000Z" - }, - "events": [ - { - "uuid": "52e4ff00-9962-466a-803b-4e07d2261624", - "start": { - "$date": "2022-04-26T03:09:49.000Z" - }, - "end": { - "$date": "2022-04-26T04:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f11bc614-07bb-4f22-97b9-c8138dd23c3e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-26T03:28:03.000Z" - }, - "end": { - "$date": "2022-04-26T04:03:47.000Z" - }, - "events": [ - { - "uuid": "a4fa72f0-fe18-47d8-826d-ac687de02263", - "start": { - "$date": "2022-04-26T03:28:03.000Z" - }, - "end": { - "$date": "2022-04-26T04:03:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f56332b5-8ffe-4e86-bfea-c15662dda254", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-26T04:10:50.000Z" - }, - "end": { - "$date": "2022-04-26T04:47:41.000Z" - }, - "events": [ - { - "uuid": "711d5a9c-6767-4ef5-b27e-8ebd1cec9f3b", - "start": { - "$date": "2022-04-26T04:10:50.000Z" - }, - "end": { - "$date": "2022-04-26T04:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "139ea24e-2a62-42e3-8e12-a48186d0b0e0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-26T04:49:14.000Z" - }, - "end": { - "$date": "2022-04-26T05:30:53.000Z" - }, - "events": [ - { - "uuid": "8c762992-656d-4e60-9e77-d2fa964cad79", - "start": { - "$date": "2022-04-26T04:49:14.000Z" - }, - "end": { - "$date": "2022-04-26T05:30:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "078d28bf-a0b0-4416-a6df-5b23bcc43606", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-26T05:32:21.000Z" - }, - "end": { - "$date": "2022-04-26T06:05:19.000Z" - }, - "events": [ - { - "uuid": "0136b32a-bbee-4130-b958-9923dc2c00a9", - "start": { - "$date": "2022-04-26T05:32:21.000Z" - }, - "end": { - "$date": "2022-04-26T06:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8363228c-08f9-459a-9610-7b96f6a3712e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-26T06:28:23.000Z" - }, - "end": { - "$date": "2022-04-26T06:32:34.000Z" - }, - "events": [ - { - "uuid": "04d0aceb-8944-40c4-a6c7-a96fee27c466", - "start": { - "$date": "2022-04-26T06:28:23.000Z" - }, - "end": { - "$date": "2022-04-26T06:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "97bae26d-b02f-4889-8563-cfef030a9e43", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-26T06:57:58.000Z" - }, - "end": { - "$date": "2022-04-26T08:08:50.000Z" - }, - "events": [ - { - "uuid": "063f3d19-fa35-448a-9ed3-2796d0c0b294", - "start": { - "$date": "2022-04-26T06:57:58.000Z" - }, - "end": { - "$date": "2022-04-26T08:08:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e6c08153-a6dc-4ccf-87c6-e11460a18c68", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-26T14:56:14.000Z" - }, - "end": { - "$date": "2022-04-26T17:19:57.000Z" - }, - "events": [ - { - "uuid": "04b383de-3daa-44ca-b728-79c229542c7a", - "start": { - "$date": "2022-04-26T14:56:14.000Z" - }, - "end": { - "$date": "2022-04-26T16:02:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e363f79-65ea-4a4e-a0c1-b78f906f5887", - "start": { - "$date": "2022-04-26T16:02:14.000Z" - }, - "end": { - "$date": "2022-04-26T16:07:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9957daba-e09c-443f-9152-e318b9983ad2", - "start": { - "$date": "2022-04-26T16:07:14.000Z" - }, - "end": { - "$date": "2022-04-26T17:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0b843db5-4bb1-4bb2-991e-7dc7d8784c9f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-26T18:23:37.000Z" - }, - "end": { - "$date": "2022-04-26T18:57:42.000Z" - }, - "events": [ - { - "uuid": "811d62ef-0e6a-4141-9ffd-ae2ede0bd0a6", - "start": { - "$date": "2022-04-26T18:23:37.000Z" - }, - "end": { - "$date": "2022-04-26T18:57:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1db6fdf3-1788-49d0-b75d-3659cccdf2ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-26T22:06:06.000Z" - }, - "end": { - "$date": "2022-04-26T22:13:00.000Z" - }, - "events": [ - { - "uuid": "7c957a32-58d9-4c88-b5d9-989d1b80e9aa", - "start": { - "$date": "2022-04-26T22:06:06.000Z" - }, - "end": { - "$date": "2022-04-26T22:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2ee9ab23-8c6a-4f87-b959-d0f05ec3e0c2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-26T22:14:06.000Z" - }, - "end": { - "$date": "2022-04-26T22:23:37.000Z" - }, - "events": [ - { - "uuid": "3cf3d055-c2b9-44a2-95d7-a5e5412c1280", - "start": { - "$date": "2022-04-26T22:14:06.000Z" - }, - "end": { - "$date": "2022-04-26T22:23:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ce1368a7-2f27-445b-8e6a-97578f02ac74", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-27T00:31:50.000Z" - }, - "end": { - "$date": "2022-04-27T01:15:52.000Z" - }, - "events": [ - { - "uuid": "da56cf75-7c7c-4c7a-85a0-9ad18d366c16", - "start": { - "$date": "2022-04-27T00:31:50.000Z" - }, - "end": { - "$date": "2022-04-27T00:48:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "dc2f1766-b4d5-4792-ad6d-02892ef136f2", - "start": { - "$date": "2022-04-27T00:48:50.000Z" - }, - "end": { - "$date": "2022-04-27T00:52:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "344db202-ed5b-4f58-821d-1091a8ba5c5e", - "start": { - "$date": "2022-04-27T00:52:50.000Z" - }, - "end": { - "$date": "2022-04-27T01:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c73e17cd-c519-469b-9f7c-a2e5ee8a638b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-27T01:05:58.000Z" - }, - "end": { - "$date": "2022-04-27T02:18:50.000Z" - }, - "events": [ - { - "uuid": "28e30037-b446-488e-b98c-7dae64134ee6", - "start": { - "$date": "2022-04-27T01:05:58.000Z" - }, - "end": { - "$date": "2022-04-27T02:18:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1a75fd21-81a9-4af5-8376-ab46117367f5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-27T01:44:06.000Z" - }, - "end": { - "$date": "2022-04-27T04:07:27.000Z" - }, - "events": [ - { - "uuid": "0b4261fe-ab18-42e5-8fd5-ec3b11a389ce", - "start": { - "$date": "2022-04-27T01:44:06.000Z" - }, - "end": { - "$date": "2022-04-27T04:07:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c932b01e-338b-4131-814f-60609fd209c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-27T01:57:19.000Z" - }, - "end": { - "$date": "2022-04-27T03:20:17.000Z" - }, - "events": [ - { - "uuid": "d66d909e-35b9-42e5-b5b4-d8be192580f5", - "start": { - "$date": "2022-04-27T01:57:19.000Z" - }, - "end": { - "$date": "2022-04-27T02:50:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a5ddd0fb-a2b6-4be0-98d0-955b8fbf2edb", - "start": { - "$date": "2022-04-27T02:50:19.000Z" - }, - "end": { - "$date": "2022-04-27T02:55:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5bb52c34-9ad5-4dea-b7c4-804372f330e7", - "start": { - "$date": "2022-04-27T02:55:19.000Z" - }, - "end": { - "$date": "2022-04-27T03:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "e18e71b7-d94c-4157-81b6-4408b81f8e3b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-27T05:22:51.000Z" - }, - "end": { - "$date": "2022-04-27T07:04:40.000Z" - }, - "events": [ - { - "uuid": "5fa0e2b2-578e-400b-a011-cbd64687dd35", - "start": { - "$date": "2022-04-27T05:22:51.000Z" - }, - "end": { - "$date": "2022-04-27T07:04:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3776f590-6c3f-4e17-8035-0a37afbf2079", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-27T02:58:28.000Z" - }, - "end": { - "$date": "2022-04-27T07:01:35.000Z" - }, - "events": [ - { - "uuid": "3c49dd15-748f-4422-b980-79422e7e1ec2", - "start": { - "$date": "2022-04-27T02:58:28.000Z" - }, - "end": { - "$date": "2022-04-27T07:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e9851611-9849-45bc-a461-c96a20266475", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T03:02:57.000Z" - }, - "end": { - "$date": "2022-04-27T03:12:21.000Z" - }, - "events": [ - { - "uuid": "428cd8f0-45be-48a6-baa1-2943401125b9", - "start": { - "$date": "2022-04-27T03:02:57.000Z" - }, - "end": { - "$date": "2022-04-27T03:12:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6ac6446d-6d76-47e4-b240-9ef9ab82b19f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T03:12:27.000Z" - }, - "end": { - "$date": "2022-04-27T05:05:19.000Z" - }, - "events": [ - { - "uuid": "f14eabd9-d04e-4359-aada-4e1c2c7708cd", - "start": { - "$date": "2022-04-27T03:12:27.000Z" - }, - "end": { - "$date": "2022-04-27T05:05:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "da5b323c-cd83-4495-94f4-693879551ae2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-27T03:13:51.000Z" - }, - "end": { - "$date": "2022-04-27T04:15:49.000Z" - }, - "events": [ - { - "uuid": "f73e51de-5403-4ff4-8f02-ff82354d55fc", - "start": { - "$date": "2022-04-27T03:13:51.000Z" - }, - "end": { - "$date": "2022-04-27T04:15:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a89ec982-52eb-4a3f-aab4-ef8a15cb7f8c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-27T03:21:26.000Z" - }, - "end": { - "$date": "2022-04-27T06:01:16.000Z" - }, - "events": [ - { - "uuid": "f7f5fb8f-7096-4ee9-b996-05266eb793f3", - "start": { - "$date": "2022-04-27T03:21:26.000Z" - }, - "end": { - "$date": "2022-04-27T06:01:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "6e5f14c4-7285-4c7a-8637-99c79a48ca5e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-27T05:10:21.000Z" - }, - "end": { - "$date": "2022-04-27T06:53:30.000Z" - }, - "events": [ - { - "uuid": "d7ae7ca6-5805-4671-8a03-949da8e1570c", - "start": { - "$date": "2022-04-27T05:10:21.000Z" - }, - "end": { - "$date": "2022-04-27T06:53:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "bbc9bf19-3fab-465a-9831-63bc3493407b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-27T07:16:37.000Z" - }, - "end": { - "$date": "2022-04-27T08:42:33.000Z" - }, - "events": [ - { - "uuid": "6dec9b9e-86cb-48c8-9788-43c273c870ee", - "start": { - "$date": "2022-04-27T07:16:37.000Z" - }, - "end": { - "$date": "2022-04-27T08:42:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b1e089c2-e636-4c31-9a44-af5e0a6cbd28", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-27T09:44:55.000Z" - }, - "end": { - "$date": "2022-04-27T10:51:10.000Z" - }, - "events": [ - { - "uuid": "3cde9def-c825-47fd-ba4f-f0135e79d655", - "start": { - "$date": "2022-04-27T09:44:55.000Z" - }, - "end": { - "$date": "2022-04-27T10:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "98b553a9-a34d-4832-aaea-963bbbc8639b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-27T16:37:36.000Z" - }, - "end": { - "$date": "2022-04-27T17:06:13.000Z" - }, - "events": [ - { - "uuid": "56e4fb99-3482-49b2-a828-89d847a66096", - "start": { - "$date": "2022-04-27T16:37:36.000Z" - }, - "end": { - "$date": "2022-04-27T17:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "914c313b-6cd0-4c70-902d-141db57059c3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-27T21:20:54.000Z" - }, - "end": { - "$date": "2022-04-27T21:24:35.000Z" - }, - "events": [ - { - "uuid": "3cb583aa-5b3c-48e8-a61a-74c2ae86d9c7", - "start": { - "$date": "2022-04-27T21:20:54.000Z" - }, - "end": { - "$date": "2022-04-27T21:24:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "79126cb4-5d51-4f9a-a902-1c323f141fbf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T21:29:01.000Z" - }, - "end": { - "$date": "2022-04-27T21:35:11.000Z" - }, - "events": [ - { - "uuid": "d005dc58-4f9e-4b9f-98e3-b486e3d9178c", - "start": { - "$date": "2022-04-27T21:29:01.000Z" - }, - "end": { - "$date": "2022-04-27T21:35:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c5c1a694-d912-405c-ac3b-af20982ae433", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T21:40:07.000Z" - }, - "end": { - "$date": "2022-04-27T21:40:41.000Z" - }, - "events": [ - { - "uuid": "37459a78-8234-4d40-ba32-31e00435e9cc", - "start": { - "$date": "2022-04-27T21:40:07.000Z" - }, - "end": { - "$date": "2022-04-27T21:40:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "4d8062b2-8c8f-4161-9ad7-0ef6675d2db2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T21:42:07.000Z" - }, - "end": { - "$date": "2022-04-27T21:43:27.000Z" - }, - "events": [ - { - "uuid": "3864a206-4d91-4178-9f13-c94092208cde", - "start": { - "$date": "2022-04-27T21:42:07.000Z" - }, - "end": { - "$date": "2022-04-27T21:43:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5dd9f06d-90e4-4ff0-8854-5aedd2a8789b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T21:45:07.000Z" - }, - "end": { - "$date": "2022-04-27T21:46:19.000Z" - }, - "events": [ - { - "uuid": "655a435e-79f6-473c-aadd-294cd3c99835", - "start": { - "$date": "2022-04-27T21:45:07.000Z" - }, - "end": { - "$date": "2022-04-27T21:46:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1e89f76d-9339-4cb9-8be4-76175648bbf8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T21:46:37.000Z" - }, - "end": { - "$date": "2022-04-27T21:48:13.000Z" - }, - "events": [ - { - "uuid": "7ca0bbdd-053d-44cd-b621-894023b23c1f", - "start": { - "$date": "2022-04-27T21:46:37.000Z" - }, - "end": { - "$date": "2022-04-27T21:48:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "83005588-c176-48a2-ae3f-e89c76d7e887", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T23:56:48.000Z" - }, - "end": { - "$date": "2022-04-27T23:59:12.000Z" - }, - "events": [ - { - "uuid": "4990f129-ec39-45dd-a456-ba49fbfd1921", - "start": { - "$date": "2022-04-27T23:56:48.000Z" - }, - "end": { - "$date": "2022-04-27T23:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e457c74e-8bf5-439f-b8fe-9dc4ecc46696", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-27T23:59:18.000Z" - }, - "end": { - "$date": "2022-04-28T00:04:37.000Z" - }, - "events": [ - { - "uuid": "393613c9-f4f3-42fc-8465-9c1e77025432", - "start": { - "$date": "2022-04-27T23:59:18.000Z" - }, - "end": { - "$date": "2022-04-28T00:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7acf5825-24f6-441d-8832-6550e1168665", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T00:25:04.000Z" - }, - "end": { - "$date": "2022-04-28T00:47:18.000Z" - }, - "events": [ - { - "uuid": "d932dff9-fe37-4442-bf5a-27361fb6a68b", - "start": { - "$date": "2022-04-28T00:25:04.000Z" - }, - "end": { - "$date": "2022-04-28T00:47:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "caa4946c-0d68-4b54-87b6-d28ddb2026a5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T00:50:33.000Z" - }, - "end": { - "$date": "2022-04-28T02:39:33.000Z" - }, - "events": [ - { - "uuid": "431cbab6-83d9-4b23-8ead-eda2a6b48397", - "start": { - "$date": "2022-04-28T00:50:33.000Z" - }, - "end": { - "$date": "2022-04-28T02:39:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "cf2761dd-d418-474c-96d2-3639eed8bf6c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-28T00:53:50.000Z" - }, - "end": { - "$date": "2022-04-28T02:36:37.000Z" - }, - "events": [ - { - "uuid": "cedd6409-b55b-4334-af24-85add21f1523", - "start": { - "$date": "2022-04-28T00:53:50.000Z" - }, - "end": { - "$date": "2022-04-28T02:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0c8d70b7-892a-4b9a-b778-b0fa59838329", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-28T01:26:23.000Z" - }, - "end": { - "$date": "2022-04-28T06:35:16.000Z" - }, - "events": [ - { - "uuid": "8788c2cf-a670-4d8b-9b89-6a2af5cb6b90", - "start": { - "$date": "2022-04-28T01:26:23.000Z" - }, - "end": { - "$date": "2022-04-28T06:35:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "982e4c18-419a-49fa-97cf-fc19596514e8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-28T01:47:23.000Z" - }, - "end": { - "$date": "2022-04-28T04:19:39.000Z" - }, - "events": [ - { - "uuid": "ffabaffc-a988-448f-9f55-6c355748c927", - "start": { - "$date": "2022-04-28T01:47:23.000Z" - }, - "end": { - "$date": "2022-04-28T04:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4f01dfaf-8055-494d-9c1c-ff0dc2aad69d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T02:39:57.000Z" - }, - "end": { - "$date": "2022-04-28T02:43:37.000Z" - }, - "events": [ - { - "uuid": "33ca64cb-502a-4d8a-8e7d-19a4c70f1153", - "start": { - "$date": "2022-04-28T02:39:57.000Z" - }, - "end": { - "$date": "2022-04-28T02:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "d9c36089-318d-4225-ac2b-a1cc24b6ab5e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T02:44:23.000Z" - }, - "end": { - "$date": "2022-04-28T03:49:05.000Z" - }, - "events": [ - { - "uuid": "46b10edc-a3aa-4570-aa7b-fa6f3be7c613", - "start": { - "$date": "2022-04-28T02:44:23.000Z" - }, - "end": { - "$date": "2022-04-28T03:49:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "5ef0087f-fefb-4879-ad8a-0851db0ce06e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-28T03:39:33.000Z" - }, - "end": { - "$date": "2022-04-28T06:39:05.000Z" - }, - "events": [ - { - "uuid": "b2d8690f-96b9-4a6a-92f5-05d7e94b3c03", - "start": { - "$date": "2022-04-28T03:39:33.000Z" - }, - "end": { - "$date": "2022-04-28T06:39:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f2843cde-a928-481a-939c-a80924e957f1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T03:49:25.000Z" - }, - "end": { - "$date": "2022-04-28T05:33:44.000Z" - }, - "events": [ - { - "uuid": "f5395844-29f3-4fac-9ed3-0f9105b85551", - "start": { - "$date": "2022-04-28T03:49:25.000Z" - }, - "end": { - "$date": "2022-04-28T05:33:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c82c6244-8b1d-413a-bfa5-bfc89c37c63e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-28T04:53:36.000Z" - }, - "end": { - "$date": "2022-04-28T07:08:52.000Z" - }, - "events": [ - { - "uuid": "9d403575-51ec-41fe-909c-364eb88d5ffd", - "start": { - "$date": "2022-04-28T04:53:36.000Z" - }, - "end": { - "$date": "2022-04-28T07:08:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "34a52f37-eee9-4e79-929d-56f7ea1480e4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-28T11:09:35.000Z" - }, - "end": { - "$date": "2022-04-28T13:23:28.000Z" - }, - "events": [ - { - "uuid": "e8f4fe60-eb3c-4f5b-926f-2d863f2aefaa", - "start": { - "$date": "2022-04-28T11:09:35.000Z" - }, - "end": { - "$date": "2022-04-28T13:23:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "744178cb-72fb-4002-b9b1-cee314811005", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-28T14:30:10.000Z" - }, - "end": { - "$date": "2022-04-28T15:21:22.000Z" - }, - "events": [ - { - "uuid": "97d1ef44-2eff-44b1-9645-c66c0ecdbc9a", - "start": { - "$date": "2022-04-28T14:30:10.000Z" - }, - "end": { - "$date": "2022-04-28T15:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b131a3a9-fd44-4954-b110-a57d951ae0fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-28T15:50:49.000Z" - }, - "end": { - "$date": "2022-04-28T16:31:25.000Z" - }, - "events": [ - { - "uuid": "a7379c12-8737-446d-ad3a-5c72b324694d", - "start": { - "$date": "2022-04-28T15:50:49.000Z" - }, - "end": { - "$date": "2022-04-28T16:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2f07c823-f4e7-4b7a-b53d-c7724d010e84", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-28T17:53:07.000Z" - }, - "end": { - "$date": "2022-04-28T18:07:43.000Z" - }, - "events": [ - { - "uuid": "67e979dc-e2a5-4b09-a711-c13e12130110", - "start": { - "$date": "2022-04-28T17:53:07.000Z" - }, - "end": { - "$date": "2022-04-28T18:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "33a5e047-3e26-4fbd-bc0d-31fac5854ff2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T22:15:57.000Z" - }, - "end": { - "$date": "2022-04-28T22:43:40.000Z" - }, - "events": [ - { - "uuid": "d76b3799-13cb-4a33-aa25-a8978c5a3c2a", - "start": { - "$date": "2022-04-28T22:15:57.000Z" - }, - "end": { - "$date": "2022-04-28T22:43:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7c78c068-bec7-46bf-b241-ab09071f95b2", - "uuid": "85cefd52-22df-466a-bc80-e8bb289d8d7e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-28T22:41:39.000Z" - }, - "end": { - "$date": "2022-04-28T22:45:59.000Z" - }, - "events": [ - { - "uuid": "fe224c21-4a74-4cd0-9e49-88dc6ce10337", - "start": { - "$date": "2022-04-28T22:41:39.000Z" - }, - "end": { - "$date": "2022-04-28T22:45:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ddd80ad0-08aa-4aa4-98d7-25e2333be080", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-28T22:44:41.000Z" - }, - "end": { - "$date": "2022-04-29T01:18:12.000Z" - }, - "events": [ - { - "uuid": "65a28a65-0869-423f-bd66-6b34ec9f1c23", - "start": { - "$date": "2022-04-28T22:44:41.000Z" - }, - "end": { - "$date": "2022-04-28T23:29:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a835a8a-b240-453b-9ab0-a8207b017ba1", - "start": { - "$date": "2022-04-28T23:29:41.000Z" - }, - "end": { - "$date": "2022-04-29T01:18:12.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7c78c068-bec7-46bf-b241-ab09071f95b2", - "uuid": "178e1099-4c19-4b80-a22b-af6b3a854f9d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-28T22:55:45.000Z" - }, - "end": { - "$date": "2022-04-28T22:55:50.000Z" - }, - "events": [ - { - "uuid": "fadce887-ea1e-49d6-8e0c-d207e6369e5f", - "start": { - "$date": "2022-04-28T22:55:45.000Z" - }, - "end": { - "$date": "2022-04-28T22:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "f4a62369-b721-4d39-8eb7-cd5206e40da2", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-28T23:10:13.000Z" - }, - "end": { - "$date": "2022-04-29T03:54:58.000Z" - }, - "events": [ - { - "uuid": "5a91f410-32a5-4152-aa28-a1804e1a41c6", - "start": { - "$date": "2022-04-28T23:10:13.000Z" - }, - "end": { - "$date": "2022-04-29T03:54:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "551c2b8f-85b7-4f76-8456-37c8de67b9e3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-28T23:12:12.000Z" - }, - "end": { - "$date": "2022-04-28T23:17:32.000Z" - }, - "events": [ - { - "uuid": "165c664b-263d-4473-b1e8-f4762d9772bd", - "start": { - "$date": "2022-04-28T23:12:12.000Z" - }, - "end": { - "$date": "2022-04-28T23:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c2b03525-0f97-46df-85bb-f795da5bfb16", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-28T23:29:48.000Z" - }, - "end": { - "$date": "2022-04-28T23:31:43.000Z" - }, - "events": [ - { - "uuid": "014d82e6-13ed-4a45-8e12-0b507cbef431", - "start": { - "$date": "2022-04-28T23:29:48.000Z" - }, - "end": { - "$date": "2022-04-28T23:31:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "50c0806a-3cd7-48c1-bb6a-30c742507fc4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-28T23:35:08.000Z" - }, - "end": { - "$date": "2022-04-28T23:36:33.000Z" - }, - "events": [ - { - "uuid": "c560ad6a-fd18-48e6-90eb-db0398e7bfb9", - "start": { - "$date": "2022-04-28T23:35:08.000Z" - }, - "end": { - "$date": "2022-04-28T23:36:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bec370d3-2860-40d9-b4c4-3e022ca3abeb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-29T02:04:00.000Z" - }, - "end": { - "$date": "2022-04-29T05:37:02.000Z" - }, - "events": [ - { - "uuid": "1595e27d-14a0-418d-96d6-f323fb2c7138", - "start": { - "$date": "2022-04-29T02:04:00.000Z" - }, - "end": { - "$date": "2022-04-29T05:37:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "32730f47-e927-49c1-96e6-73a16240aa2b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T02:20:15.000Z" - }, - "end": { - "$date": "2022-04-29T02:34:10.000Z" - }, - "events": [ - { - "uuid": "b0638eae-4fbd-4a20-9af0-dec52ea99f77", - "start": { - "$date": "2022-04-29T02:20:15.000Z" - }, - "end": { - "$date": "2022-04-29T02:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "dd7e01eb-f10f-49b0-9af3-d59025aac9e9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T02:59:09.000Z" - }, - "end": { - "$date": "2022-04-29T03:37:33.000Z" - }, - "events": [ - { - "uuid": "91322f29-120c-40ae-9ba3-a8a7db763820", - "start": { - "$date": "2022-04-29T02:59:09.000Z" - }, - "end": { - "$date": "2022-04-29T03:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "41a3064f-7322-4369-8b1d-62fcc88f0ead", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-29T03:02:28.000Z" - }, - "end": { - "$date": "2022-04-29T03:05:54.000Z" - }, - "events": [ - { - "uuid": "44623af7-5779-4214-9b09-a905f243786c", - "start": { - "$date": "2022-04-29T03:02:28.000Z" - }, - "end": { - "$date": "2022-04-29T03:05:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8e8aac20-c5ff-4e5b-95ba-c871b3aec249", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-29T03:06:09.000Z" - }, - "end": { - "$date": "2022-04-29T04:38:28.000Z" - }, - "events": [ - { - "uuid": "50e1f85d-e129-40a4-a94f-70da5324d8ae", - "start": { - "$date": "2022-04-29T03:06:09.000Z" - }, - "end": { - "$date": "2022-04-29T04:38:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1fe3835a-d0ba-415e-9e12-56d53b3855dd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T03:38:29.000Z" - }, - "end": { - "$date": "2022-04-29T03:56:20.000Z" - }, - "events": [ - { - "uuid": "2979d699-36f9-4379-84f2-9cd592465a2e", - "start": { - "$date": "2022-04-29T03:38:29.000Z" - }, - "end": { - "$date": "2022-04-29T03:56:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "d022ac47-c30b-43bb-80f9-d165dcf16374", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T03:57:55.000Z" - }, - "end": { - "$date": "2022-04-29T04:04:30.000Z" - }, - "events": [ - { - "uuid": "3aa569be-c52c-4831-9a32-1cba9e7d797c", - "start": { - "$date": "2022-04-29T03:57:55.000Z" - }, - "end": { - "$date": "2022-04-29T04:04:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "32052fa5-ad94-45db-974c-cbc11310cf94", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T04:05:41.000Z" - }, - "end": { - "$date": "2022-04-29T04:06:45.000Z" - }, - "events": [ - { - "uuid": "93adfe24-6713-4ad6-b68b-27836f62362f", - "start": { - "$date": "2022-04-29T04:05:41.000Z" - }, - "end": { - "$date": "2022-04-29T04:06:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "8518313d-9f0f-40bd-8105-f6ae1a908e0f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T04:07:26.000Z" - }, - "end": { - "$date": "2022-04-29T04:11:36.000Z" - }, - "events": [ - { - "uuid": "b1ab877b-9a1d-4c66-8ca8-a0a2c03b314d", - "start": { - "$date": "2022-04-29T04:07:26.000Z" - }, - "end": { - "$date": "2022-04-29T04:11:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "48a9bde7-9ac9-46da-84b9-1a513c34b47e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T04:12:11.000Z" - }, - "end": { - "$date": "2022-04-29T05:26:42.000Z" - }, - "events": [ - { - "uuid": "10fc8d69-ee14-4bde-8e67-58008cef625a", - "start": { - "$date": "2022-04-29T04:12:11.000Z" - }, - "end": { - "$date": "2022-04-29T05:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "e622f59b-f715-4944-b161-05d03801b5ae", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-04-29T05:33:43.000Z" - }, - "end": { - "$date": "2022-04-29T05:57:19.000Z" - }, - "events": [ - { - "uuid": "ecb71408-f4ff-4e86-b285-3d17a316745e", - "start": { - "$date": "2022-04-29T05:33:43.000Z" - }, - "end": { - "$date": "2022-04-29T05:57:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8965476-80f2-4cce-b332-e193fdccc016", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-29T06:45:04.000Z" - }, - "end": { - "$date": "2022-04-29T09:36:52.000Z" - }, - "events": [ - { - "uuid": "0e5b2f8f-0a17-4b4b-bdc0-051119bcaa65", - "start": { - "$date": "2022-04-29T06:45:04.000Z" - }, - "end": { - "$date": "2022-04-29T09:36:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40e5d108-510c-4706-99ab-6a4178188c50", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-29T06:45:43.000Z" - }, - "end": { - "$date": "2022-04-29T08:39:05.000Z" - }, - "events": [ - { - "uuid": "84d6e988-04cd-438e-a456-b3465de4f418", - "start": { - "$date": "2022-04-29T06:45:43.000Z" - }, - "end": { - "$date": "2022-04-29T08:39:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "48faf3a5-34e6-4899-9b29-257cea691537", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-29T06:48:40.000Z" - }, - "end": { - "$date": "2022-04-29T09:06:44.000Z" - }, - "events": [ - { - "uuid": "b0731ace-f277-4784-9a1f-883195fbcd95", - "start": { - "$date": "2022-04-29T06:48:40.000Z" - }, - "end": { - "$date": "2022-04-29T09:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fe2d1d40-0285-43aa-92e9-f10267093f20", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-29T09:07:12.000Z" - }, - "end": { - "$date": "2022-04-29T09:16:04.000Z" - }, - "events": [ - { - "uuid": "88ceae61-2b01-409c-83fa-d2338a4c4377", - "start": { - "$date": "2022-04-29T09:07:12.000Z" - }, - "end": { - "$date": "2022-04-29T09:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "efb2b5b6-1808-450b-8428-eb5dfdf5a20c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-29T09:16:24.000Z" - }, - "end": { - "$date": "2022-04-29T09:36:35.000Z" - }, - "events": [ - { - "uuid": "830aa2b6-66f8-41b0-badc-6d36450f02ef", - "start": { - "$date": "2022-04-29T09:16:24.000Z" - }, - "end": { - "$date": "2022-04-29T09:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a3997a70-48bd-4d6e-8c04-88c703e3e4fa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-04-29T13:12:11.000Z" - }, - "end": { - "$date": "2022-04-29T13:18:42.000Z" - }, - "events": [ - { - "uuid": "67a7f454-7793-4ebe-83ac-d525b802e37c", - "start": { - "$date": "2022-04-29T13:12:11.000Z" - }, - "end": { - "$date": "2022-04-29T13:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e49b6dbb-9679-4ab8-aeab-01bad0a1b5f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-29T15:22:32.000Z" - }, - "end": { - "$date": "2022-04-29T15:48:28.000Z" - }, - "events": [ - { - "uuid": "1a708f36-b03a-4fe1-8a83-9962765ca5cf", - "start": { - "$date": "2022-04-29T15:22:32.000Z" - }, - "end": { - "$date": "2022-04-29T15:48:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "e11fe0ea-e8dd-4a71-8dca-a35a84f62d78", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-29T16:48:00.000Z" - }, - "end": { - "$date": "2022-04-29T16:51:40.000Z" - }, - "events": [ - { - "uuid": "c4ea79a8-737f-4162-8458-0330a2a54c12", - "start": { - "$date": "2022-04-29T16:48:00.000Z" - }, - "end": { - "$date": "2022-04-29T16:51:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dc3a802d-7e0c-4f20-be9b-a9bc73058fc3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-29T16:53:13.000Z" - }, - "end": { - "$date": "2022-04-29T18:10:00.000Z" - }, - "events": [ - { - "uuid": "ac429fbe-0861-4964-9354-d687509e3a28", - "start": { - "$date": "2022-04-29T16:53:13.000Z" - }, - "end": { - "$date": "2022-04-29T18:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "98220acd-1e7b-4cf9-9159-57a69e5b0a37", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-29T16:53:25.000Z" - }, - "end": { - "$date": "2022-04-29T18:29:22.000Z" - }, - "events": [ - { - "uuid": "5320510b-0787-46fc-96db-6c98337a2499", - "start": { - "$date": "2022-04-29T16:53:25.000Z" - }, - "end": { - "$date": "2022-04-29T18:29:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6eb75a21-c045-4b6c-aa68-68b95e74f02a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-29T20:47:34.000Z" - }, - "end": { - "$date": "2022-04-30T00:33:19.000Z" - }, - "events": [ - { - "uuid": "412e6339-c146-4aa2-ac1b-dd5e8b6d17e0", - "start": { - "$date": "2022-04-29T20:47:34.000Z" - }, - "end": { - "$date": "2022-04-30T00:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "59acf1a2-9eb4-4003-93b4-62ee6c50ab1c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-29T20:58:10.000Z" - }, - "end": { - "$date": "2022-04-30T00:33:20.000Z" - }, - "events": [ - { - "uuid": "cb9490e6-0e86-4cfa-bfa5-3dee648d1734", - "start": { - "$date": "2022-04-29T20:58:10.000Z" - }, - "end": { - "$date": "2022-04-30T00:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5b9d50d1-182b-48e5-a338-506bc5d81197", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-29T22:15:43.000Z" - }, - "end": { - "$date": "2022-04-30T00:12:51.000Z" - }, - "events": [ - { - "uuid": "3e16a4fb-da4b-41b8-9d01-b664198c6da0", - "start": { - "$date": "2022-04-29T22:15:43.000Z" - }, - "end": { - "$date": "2022-04-30T00:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "81efe916-a7f7-4086-86a9-b67dcc6ef72f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-29T23:49:23.000Z" - }, - "end": { - "$date": "2022-04-30T06:11:13.000Z" - }, - "events": [ - { - "uuid": "718a482c-8a53-4e8f-981e-51b3dcb2d2ca", - "start": { - "$date": "2022-04-29T23:49:23.000Z" - }, - "end": { - "$date": "2022-04-30T00:39:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "76ece20e-c486-4f0f-bf1a-333bb65ae7fe", - "start": { - "$date": "2022-04-30T00:39:23.000Z" - }, - "end": { - "$date": "2022-04-30T01:13:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0f13fd91-fde7-4b8c-8ba0-036e7313789a", - "start": { - "$date": "2022-04-30T01:13:23.000Z" - }, - "end": { - "$date": "2022-04-30T05:01:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8ff0fbcc-10f3-4563-ad50-9502bb052ea8", - "start": { - "$date": "2022-04-30T05:01:23.000Z" - }, - "end": { - "$date": "2022-04-30T05:12:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eef2c66c-2d19-4c69-8fbe-2f0baf911d3f", - "start": { - "$date": "2022-04-30T05:12:23.000Z" - }, - "end": { - "$date": "2022-04-30T05:17:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb6429df-de08-434c-a1b9-b5a21e28fe1d", - "start": { - "$date": "2022-04-30T05:17:23.000Z" - }, - "end": { - "$date": "2022-04-30T05:23:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "78ded33f-7c0b-4536-b197-98ef2cbee90e", - "start": { - "$date": "2022-04-30T05:23:23.000Z" - }, - "end": { - "$date": "2022-04-30T06:11:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9454fc48-19d8-45c7-82f7-cf2fd9f60c73", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-04-30T01:00:27.000Z" - }, - "end": { - "$date": "2022-04-30T04:43:33.000Z" - }, - "events": [ - { - "uuid": "e7409bf9-9c14-42ee-842e-cb6fc56d0fbc", - "start": { - "$date": "2022-04-30T01:00:27.000Z" - }, - "end": { - "$date": "2022-04-30T04:43:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3b036f80-1df7-44ef-b504-9277c39d6cb5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-30T01:01:27.000Z" - }, - "end": { - "$date": "2022-04-30T04:41:41.000Z" - }, - "events": [ - { - "uuid": "f5ddef4b-603e-42fc-9e0b-4c19986967e5", - "start": { - "$date": "2022-04-30T01:01:27.000Z" - }, - "end": { - "$date": "2022-04-30T04:41:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b2ef4e3f-62e0-4e7b-8326-1f03e851ecb5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-30T01:38:13.000Z" - }, - "end": { - "$date": "2022-04-30T03:56:12.000Z" - }, - "events": [ - { - "uuid": "420b2631-8572-433d-8801-8168c4161882", - "start": { - "$date": "2022-04-30T01:38:13.000Z" - }, - "end": { - "$date": "2022-04-30T03:56:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "96948127-a2a0-4080-8d65-94c34635a63c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-30T02:49:51.000Z" - }, - "end": { - "$date": "2022-04-30T03:29:19.000Z" - }, - "events": [ - { - "uuid": "633fb6c7-c504-4604-9c9b-94f8d40224bc", - "start": { - "$date": "2022-04-30T02:49:51.000Z" - }, - "end": { - "$date": "2022-04-30T03:29:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88b5990f-7367-454a-8268-f8998963f175", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-30T03:36:39.000Z" - }, - "end": { - "$date": "2022-04-30T04:08:18.000Z" - }, - "events": [ - { - "uuid": "4de4224e-744b-4f21-9906-49e261eafae0", - "start": { - "$date": "2022-04-30T03:36:39.000Z" - }, - "end": { - "$date": "2022-04-30T04:08:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ad882aa6-aa36-43f9-b782-5651c9e1ce33", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-30T04:13:17.000Z" - }, - "end": { - "$date": "2022-04-30T04:16:57.000Z" - }, - "events": [ - { - "uuid": "d0913130-b5a9-45c2-a22e-b724996df805", - "start": { - "$date": "2022-04-30T04:13:17.000Z" - }, - "end": { - "$date": "2022-04-30T04:16:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c3e02d4-fc0a-4ca4-a44e-4868c4ef6cfd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-30T05:51:14.000Z" - }, - "end": { - "$date": "2022-04-30T06:17:36.000Z" - }, - "events": [ - { - "uuid": "5aa9dcd2-bc53-4c53-87cf-6f3bd5e2484f", - "start": { - "$date": "2022-04-30T05:51:14.000Z" - }, - "end": { - "$date": "2022-04-30T06:17:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e960abe7-bc99-4000-922e-f9c9f6f4846c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-30T06:35:17.000Z" - }, - "end": { - "$date": "2022-04-30T06:35:37.000Z" - }, - "events": [ - { - "uuid": "53c3c4f7-9d8a-4ad0-9e16-4c87cedcaa39", - "start": { - "$date": "2022-04-30T06:35:17.000Z" - }, - "end": { - "$date": "2022-04-30T06:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "447031b2-016c-48df-9c0d-1ff10465661d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-30T06:49:49.000Z" - }, - "end": { - "$date": "2022-04-30T07:38:55.000Z" - }, - "events": [ - { - "uuid": "0bd404d6-17f6-46b4-9396-15ac01b11c8c", - "start": { - "$date": "2022-04-30T06:49:49.000Z" - }, - "end": { - "$date": "2022-04-30T07:38:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "48244615-6270-42a4-8022-4c3463db97f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-30T06:38:52.000Z" - }, - "end": { - "$date": "2022-04-30T07:13:50.000Z" - }, - "events": [ - { - "uuid": "7da7eda9-3725-4081-8403-e6b2757f2736", - "start": { - "$date": "2022-04-30T06:38:52.000Z" - }, - "end": { - "$date": "2022-04-30T07:13:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8d7cf9d5-a021-4593-bcd3-ae024fc1abb1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-30T06:49:35.000Z" - }, - "end": { - "$date": "2022-04-30T07:25:52.000Z" - }, - "events": [ - { - "uuid": "6eecdccb-fd9d-4220-b36f-150edeabd49a", - "start": { - "$date": "2022-04-30T06:49:35.000Z" - }, - "end": { - "$date": "2022-04-30T07:25:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "3af38d4f-152c-4538-aafe-cb31b69df76b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-04-30T07:35:46.000Z" - }, - "end": { - "$date": "2022-04-30T10:40:54.000Z" - }, - "events": [ - { - "uuid": "79a1c151-1cde-459a-bbf5-83b1d86b1035", - "start": { - "$date": "2022-04-30T07:35:46.000Z" - }, - "end": { - "$date": "2022-04-30T10:40:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "199b7f0c-b6b8-4121-8cc7-0fafe00bab1c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-04-30T09:17:48.000Z" - }, - "end": { - "$date": "2022-04-30T09:20:03.000Z" - }, - "events": [ - { - "uuid": "a6ba465f-4a2d-4e5c-8f10-55bbf3e83d04", - "start": { - "$date": "2022-04-30T09:17:48.000Z" - }, - "end": { - "$date": "2022-04-30T09:20:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b623902f-7e28-4225-a877-781dcb12cb43", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-30T14:40:32.000Z" - }, - "end": { - "$date": "2022-04-30T14:49:33.000Z" - }, - "events": [ - { - "uuid": "f730a4b5-dcd3-46ac-86dd-7eeca9e6647c", - "start": { - "$date": "2022-04-30T14:40:32.000Z" - }, - "end": { - "$date": "2022-04-30T14:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc820e32-affd-42e4-9522-e18e5096efb2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-30T15:04:20.000Z" - }, - "end": { - "$date": "2022-04-30T16:41:08.000Z" - }, - "events": [ - { - "uuid": "0d98fbbf-0f54-43cd-8273-5f1ebf9ce179", - "start": { - "$date": "2022-04-30T15:04:20.000Z" - }, - "end": { - "$date": "2022-04-30T16:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "b7e4749e-cc6e-4aa5-bab0-c8a0ed65f4e4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-04-30T17:56:04.000Z" - }, - "end": { - "$date": "2022-04-30T20:13:39.000Z" - }, - "events": [ - { - "uuid": "28fe442f-5bfd-4347-8a87-e402cb348337", - "start": { - "$date": "2022-04-30T17:56:04.000Z" - }, - "end": { - "$date": "2022-04-30T21:00:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2d77691-380a-45e2-addf-7a3f72b9fb7b", - "start": { - "$date": "2022-04-30T21:00:04.000Z" - }, - "end": { - "$date": "2022-04-30T21:05:04.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8f66635d-4f53-489d-a598-368c73da71bd", - "start": { - "$date": "2022-04-30T21:05:04.000Z" - }, - "end": { - "$date": "2022-04-30T21:15:04.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e05966af-c102-4679-b2ff-f03241d95fb9", - "start": { - "$date": "2022-04-30T21:15:04.000Z" - }, - "end": { - "$date": "2022-04-30T20:13:39.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7565702a-de27-43ce-9632-07130f77ccbf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-04-30T18:54:15.000Z" - }, - "end": { - "$date": "2022-04-30T18:55:24.000Z" - }, - "events": [ - { - "uuid": "da3adaaa-fc24-4d8d-85ee-7447c6340662", - "start": { - "$date": "2022-04-30T18:54:15.000Z" - }, - "end": { - "$date": "2022-04-30T18:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "50c919c4-1322-4298-9afa-4cc2c106223e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-04-30T19:23:50.000Z" - }, - "end": { - "$date": "2022-05-01T00:08:03.000Z" - }, - "events": [ - { - "uuid": "6f475017-a584-4bda-ab81-629d5bc26909", - "start": { - "$date": "2022-04-30T19:23:50.000Z" - }, - "end": { - "$date": "2022-04-30T20:54:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6a7fd98a-b335-4581-8d32-bcaad9d230c8", - "start": { - "$date": "2022-04-30T20:54:50.000Z" - }, - "end": { - "$date": "2022-04-30T20:59:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3fc46e20-303b-4dc7-87c7-bb1c2c5c6e2a", - "start": { - "$date": "2022-04-30T20:59:50.000Z" - }, - "end": { - "$date": "2022-05-01T00:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2b4aded5-345f-4105-a901-e206660aeba0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-01T02:46:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:34:07.000Z" - }, - "events": [ - { - "uuid": "1cb6ea36-7eb8-42f0-a8e3-9609d394d520", - "start": { - "$date": "2022-05-01T02:46:03.000Z" - }, - "end": { - "$date": "2022-05-01T04:44:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a18ddfdb-2b05-47d8-80cc-46c2aa6a29c2", - "start": { - "$date": "2022-05-01T04:44:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:12:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f5e61c4e-1498-444c-9028-45efdd19bf6a", - "start": { - "$date": "2022-05-01T05:12:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:22:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "130dcae8-08eb-48f9-959e-c36431ae74b3", - "start": { - "$date": "2022-05-01T05:22:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:31:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9d165770-fec1-4785-93e8-169add27a17a", - "start": { - "$date": "2022-05-01T05:31:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:44:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "94d911af-08d1-434c-97bd-fc4041221633", - "start": { - "$date": "2022-05-01T05:44:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:55:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "47f8c587-eed5-4f5e-95a8-96b3d787daf7", - "start": { - "$date": "2022-05-01T05:55:03.000Z" - }, - "end": { - "$date": "2022-05-01T07:08:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddf27c89-34de-4650-9f7e-193a44bdc50c", - "start": { - "$date": "2022-05-01T07:08:03.000Z" - }, - "end": { - "$date": "2022-05-01T07:11:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1e7ec9b1-6205-4c6b-8726-a9ad65b35fc6", - "start": { - "$date": "2022-05-01T07:11:03.000Z" - }, - "end": { - "$date": "2022-05-01T07:27:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67612d12-d4fd-41d4-90d3-7afbd11c2bb3", - "start": { - "$date": "2022-05-01T07:27:03.000Z" - }, - "end": { - "$date": "2022-05-01T07:32:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a840ed3a-90bc-4625-a418-01c732ec37f0", - "start": { - "$date": "2022-05-01T07:32:03.000Z" - }, - "end": { - "$date": "2022-05-01T07:42:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7dea775f-69d7-4540-9d9f-823d6f7d3bb3", - "start": { - "$date": "2022-05-01T07:42:03.000Z" - }, - "end": { - "$date": "2022-05-01T08:18:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "03ec2e6b-25bb-4585-b501-8cf545a20ded", - "start": { - "$date": "2022-05-01T08:18:03.000Z" - }, - "end": { - "$date": "2022-05-01T08:36:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1e07acad-e5a7-4f44-bdc5-b240bbda941c", - "start": { - "$date": "2022-05-01T08:36:03.000Z" - }, - "end": { - "$date": "2022-05-01T08:53:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d7c7cecf-00c3-4a40-a61f-830e937937ae", - "start": { - "$date": "2022-05-01T08:53:03.000Z" - }, - "end": { - "$date": "2022-05-01T05:34:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "52932d68-94f7-49ce-9733-7ba32a8d9f49", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-04-30T23:24:40.000Z" - }, - "end": { - "$date": "2022-05-01T02:49:33.000Z" - }, - "events": [ - { - "uuid": "3404ad30-3c1f-4321-a31f-4111d014ec00", - "start": { - "$date": "2022-04-30T23:24:40.000Z" - }, - "end": { - "$date": "2022-05-01T02:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e68785f1-57b8-461c-a7b9-56efc160cb2a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-01T00:00:35.000Z" - }, - "end": { - "$date": "2022-05-01T01:47:28.000Z" - }, - "events": [ - { - "uuid": "a6636fcb-e384-4db6-a77e-234b48c0794a", - "start": { - "$date": "2022-05-01T00:00:35.000Z" - }, - "end": { - "$date": "2022-05-01T01:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fdaee91d-6d1b-4dec-b50d-b6d9e393e58a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-01T00:06:39.000Z" - }, - "end": { - "$date": "2022-05-01T01:47:34.000Z" - }, - "events": [ - { - "uuid": "fdca955b-67c3-4c60-966e-35eeafbd67c1", - "start": { - "$date": "2022-05-01T00:06:39.000Z" - }, - "end": { - "$date": "2022-05-01T01:47:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "903a730b-e4df-4c74-85fa-55d414121474", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T02:00:12.000Z" - }, - "end": { - "$date": "2022-05-01T02:01:17.000Z" - }, - "events": [ - { - "uuid": "d07775cf-5a5f-4256-8a66-d3554749f006", - "start": { - "$date": "2022-05-01T02:00:12.000Z" - }, - "end": { - "$date": "2022-05-01T02:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bd2187de-920e-48a3-acf8-c023b6f03838", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T02:01:57.000Z" - }, - "end": { - "$date": "2022-05-01T02:02:22.000Z" - }, - "events": [ - { - "uuid": "4721a102-958c-4693-ba9c-1708ce4d1607", - "start": { - "$date": "2022-05-01T02:01:57.000Z" - }, - "end": { - "$date": "2022-05-01T02:02:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8504b1d5-077b-4a31-8515-704bd100bcf3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T02:03:17.000Z" - }, - "end": { - "$date": "2022-05-01T03:38:00.000Z" - }, - "events": [ - { - "uuid": "f1009a6b-00ad-47a1-9c98-fd1b37a92a77", - "start": { - "$date": "2022-05-01T02:03:17.000Z" - }, - "end": { - "$date": "2022-05-01T03:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "1da1fff8-4c0a-4211-bce5-3b00dcbbe3aa", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-01T02:47:40.000Z" - }, - "end": { - "$date": "2022-05-01T03:45:13.000Z" - }, - "events": [ - { - "uuid": "36c84c00-6692-44e5-b877-9eb6846af742", - "start": { - "$date": "2022-05-01T02:47:40.000Z" - }, - "end": { - "$date": "2022-05-01T03:45:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "ff350bd7-372b-499c-8cf6-eaefbed3ce96", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-01T02:53:31.000Z" - }, - "end": { - "$date": "2022-05-01T05:18:50.000Z" - }, - "events": [ - { - "uuid": "4708a201-772c-4273-ae23-d50f50257d47", - "start": { - "$date": "2022-05-01T02:53:31.000Z" - }, - "end": { - "$date": "2022-05-01T03:57:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "00662644-d679-4bef-a401-f9c0fbdc604f", - "start": { - "$date": "2022-05-01T03:57:31.000Z" - }, - "end": { - "$date": "2022-05-01T04:41:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "faffa952-f1cd-4ff9-8d51-d79957653d41", - "start": { - "$date": "2022-05-01T04:41:31.000Z" - }, - "end": { - "$date": "2022-05-01T04:43:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed7a4240-234e-45d3-918b-75f68ffb8e20", - "start": { - "$date": "2022-05-01T04:43:31.000Z" - }, - "end": { - "$date": "2022-05-01T05:18:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "a5db7720-b400-4bb8-a418-3c32e3ac6308", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T03:42:16.000Z" - }, - "end": { - "$date": "2022-05-01T07:10:27.000Z" - }, - "events": [ - { - "uuid": "bea892e7-1bc6-4749-861f-d2db42103a6d", - "start": { - "$date": "2022-05-01T03:42:16.000Z" - }, - "end": { - "$date": "2022-05-01T07:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "9ba5bc12-d8db-4369-be6c-a90ddf91104a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-01T04:17:40.000Z" - }, - "end": { - "$date": "2022-05-01T04:47:06.000Z" - }, - "events": [ - { - "uuid": "fc873772-e115-486e-a5a6-95969f7a6201", - "start": { - "$date": "2022-05-01T04:17:40.000Z" - }, - "end": { - "$date": "2022-05-01T04:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1cfcd249-eb1e-435a-8036-3ce818179831", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-01T04:47:11.000Z" - }, - "end": { - "$date": "2022-05-01T06:26:33.000Z" - }, - "events": [ - { - "uuid": "ce5c14cc-8388-40b5-91a1-cd028e02c988", - "start": { - "$date": "2022-05-01T04:47:11.000Z" - }, - "end": { - "$date": "2022-05-01T06:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fbfbc7ea-44ab-417e-9a04-fee6fabbd3e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-01T04:52:28.000Z" - }, - "end": { - "$date": "2022-05-01T05:40:32.000Z" - }, - "events": [ - { - "uuid": "fbf9ebc3-cbf1-4f90-98e8-30540a93a8d6", - "start": { - "$date": "2022-05-01T04:52:28.000Z" - }, - "end": { - "$date": "2022-05-01T05:40:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ae1615e3-18be-426a-86f5-892be54ded8a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-01T06:55:26.000Z" - }, - "end": { - "$date": "2022-05-01T09:25:04.000Z" - }, - "events": [ - { - "uuid": "4c5d0f16-0201-4fc2-ba6e-de9e6735f0a0", - "start": { - "$date": "2022-05-01T06:55:26.000Z" - }, - "end": { - "$date": "2022-05-01T09:25:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "99451ccc-095d-4dc4-aeda-847ae383db7b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T08:01:39.000Z" - }, - "end": { - "$date": "2022-05-01T08:06:24.000Z" - }, - "events": [ - { - "uuid": "1bbf5cc2-f041-4db3-8731-ef62c15183da", - "start": { - "$date": "2022-05-01T08:01:39.000Z" - }, - "end": { - "$date": "2022-05-01T08:06:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "5ebeafb8-7c52-4d5b-aa0a-b100f1c7eea1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T08:06:59.000Z" - }, - "end": { - "$date": "2022-05-01T09:32:26.000Z" - }, - "events": [ - { - "uuid": "99937b97-5538-44b9-ba8c-0cbf57d6f789", - "start": { - "$date": "2022-05-01T08:06:59.000Z" - }, - "end": { - "$date": "2022-05-01T09:32:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d74636b2-f56e-42fc-be77-fb09b35a0da0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-01T13:55:25.000Z" - }, - "end": { - "$date": "2022-05-01T16:31:48.000Z" - }, - "events": [ - { - "uuid": "7185f98f-0b3c-4382-87a8-038c14e8153e", - "start": { - "$date": "2022-05-01T13:55:25.000Z" - }, - "end": { - "$date": "2022-05-01T16:31:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7ad5aaf5-d30a-4f30-a7cd-b80534e4f7a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-01T16:31:05.000Z" - }, - "end": { - "$date": "2022-05-01T17:31:31.000Z" - }, - "events": [ - { - "uuid": "a4f66d86-f209-4b6a-94bf-b9b038bfdb35", - "start": { - "$date": "2022-05-01T16:31:05.000Z" - }, - "end": { - "$date": "2022-05-01T17:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "19aa876d-a7dc-455d-af71-7e2a15e35689", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-01T18:24:57.000Z" - }, - "end": { - "$date": "2022-05-01T18:37:42.000Z" - }, - "events": [ - { - "uuid": "86c2b708-c23c-41ed-9e26-bb18e9e81c45", - "start": { - "$date": "2022-05-01T18:24:57.000Z" - }, - "end": { - "$date": "2022-05-01T18:37:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dfa2d16e-b14e-4432-baeb-5f2051056bc1", - "uuid": "5573b525-1a06-430e-8e10-1935578275a5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-01T21:11:58.000Z" - }, - "end": { - "$date": "2022-05-01T21:14:19.000Z" - }, - "events": [ - { - "uuid": "ad2f9e3e-8e6d-4dca-8ad3-cc88e0a66dd7", - "start": { - "$date": "2022-05-01T21:11:58.000Z" - }, - "end": { - "$date": "2022-05-01T21:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96f34943-7e5e-4f62-becc-5bfdffa8f7e8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-01T22:02:37.000Z" - }, - "end": { - "$date": "2022-05-01T22:34:40.000Z" - }, - "events": [ - { - "uuid": "9a5a641f-a916-4200-8555-324e12aeb5be", - "start": { - "$date": "2022-05-01T22:02:37.000Z" - }, - "end": { - "$date": "2022-05-01T22:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a88f076-612f-4b59-a99b-81e45470234d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-01T22:25:39.000Z" - }, - "end": { - "$date": "2022-05-01T22:36:37.000Z" - }, - "events": [ - { - "uuid": "301f7459-b832-4991-8529-e269b1432573", - "start": { - "$date": "2022-05-01T22:25:39.000Z" - }, - "end": { - "$date": "2022-05-01T22:36:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7ee2d7dd-4d7a-49d9-9ed0-080e4999f60b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-01T22:34:54.000Z" - }, - "end": { - "$date": "2022-05-02T04:59:12.000Z" - }, - "events": [ - { - "uuid": "491fda78-b4a7-4884-bb63-655655f0c038", - "start": { - "$date": "2022-05-01T22:34:54.000Z" - }, - "end": { - "$date": "2022-05-02T00:36:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d46aba81-7b70-420c-9a97-7761833891f9", - "start": { - "$date": "2022-05-02T00:36:54.000Z" - }, - "end": { - "$date": "2022-05-02T00:39:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5e464e8-d2a0-4696-928c-21d2de6175e8", - "start": { - "$date": "2022-05-02T00:39:54.000Z" - }, - "end": { - "$date": "2022-05-02T00:44:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3382ddc0-9ab6-464f-a185-3337aa9e2dbe", - "start": { - "$date": "2022-05-02T00:44:54.000Z" - }, - "end": { - "$date": "2022-05-02T00:49:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c527116f-626c-4258-a230-872b162d191a", - "start": { - "$date": "2022-05-02T00:49:54.000Z" - }, - "end": { - "$date": "2022-05-02T00:51:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20b65569-22b7-4e6d-b98a-278e691f065c", - "start": { - "$date": "2022-05-02T00:51:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:26:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "434265f2-8331-4035-9c96-d2ba7a7af225", - "start": { - "$date": "2022-05-02T01:26:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:28:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9f8eb047-7379-4e18-9028-73ba2cd53ae7", - "start": { - "$date": "2022-05-02T01:28:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:40:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a483c6d7-dd11-4fe0-a935-505ad7eafea9", - "start": { - "$date": "2022-05-02T01:40:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:45:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8258b8c2-7824-4e27-92fd-0f95f6ebf348", - "start": { - "$date": "2022-05-02T01:45:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:46:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "21ae84fb-ad1a-4825-87ac-40be0b71b733", - "start": { - "$date": "2022-05-02T01:46:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:48:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d47c3591-7277-4960-ba92-e7abb6fdcf90", - "start": { - "$date": "2022-05-02T01:48:54.000Z" - }, - "end": { - "$date": "2022-05-02T01:58:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "abb9eb92-538a-4018-8850-17299aedab5d", - "start": { - "$date": "2022-05-02T01:58:54.000Z" - }, - "end": { - "$date": "2022-05-02T02:00:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d0cd09b6-bea4-42b9-963f-2e49e33c1e1f", - "start": { - "$date": "2022-05-02T02:00:54.000Z" - }, - "end": { - "$date": "2022-05-02T02:25:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8c7fb2dc-9c80-493b-bd4d-b9faad4f8d60", - "start": { - "$date": "2022-05-02T02:25:54.000Z" - }, - "end": { - "$date": "2022-05-02T02:27:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25669b9b-7da4-45a2-a55c-1b3727b3a31d", - "start": { - "$date": "2022-05-02T02:27:54.000Z" - }, - "end": { - "$date": "2022-05-02T03:20:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "33976d26-e434-4edf-a2dc-4660c0fe6121", - "start": { - "$date": "2022-05-02T03:20:54.000Z" - }, - "end": { - "$date": "2022-05-02T03:22:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "03e7ee59-0a5e-48e4-8545-3950f2e09952", - "start": { - "$date": "2022-05-02T03:22:54.000Z" - }, - "end": { - "$date": "2022-05-02T04:44:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6b278b3-f3ac-4c36-8009-bc2fe081a087", - "start": { - "$date": "2022-05-02T04:44:54.000Z" - }, - "end": { - "$date": "2022-05-02T04:48:54.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4cd97888-1bf6-42da-8eb6-c8438854e3bf", - "start": { - "$date": "2022-05-02T04:48:54.000Z" - }, - "end": { - "$date": "2022-05-02T04:57:54.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b94cfd51-4826-459e-9fee-e7ff958785ca", - "start": { - "$date": "2022-05-02T04:57:54.000Z" - }, - "end": { - "$date": "2022-05-02T04:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fea5980a-5db6-4a1f-92e8-236707e1cef5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-01T22:36:42.000Z" - }, - "end": { - "$date": "2022-05-01T23:17:55.000Z" - }, - "events": [ - { - "uuid": "6fb58303-a841-4667-8b18-e8e1be9204b6", - "start": { - "$date": "2022-05-01T22:36:42.000Z" - }, - "end": { - "$date": "2022-05-01T23:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "0e93ac13-4f9d-40fe-986d-040d9f845c78", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-02T00:58:13.000Z" - }, - "end": { - "$date": "2022-05-02T01:13:45.000Z" - }, - "events": [ - { - "uuid": "7f42767c-4597-463a-9dc1-f7e17a8f909e", - "start": { - "$date": "2022-05-02T00:58:13.000Z" - }, - "end": { - "$date": "2022-05-02T01:10:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6707f2d6-163a-429e-b773-a05163f434d5", - "start": { - "$date": "2022-05-02T01:10:13.000Z" - }, - "end": { - "$date": "2022-05-02T01:13:45.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "3b9af2da-3ee3-4f1d-93f5-5bc298507fe0", - "uuid": "302eee3c-0047-44ee-a3a6-8249aef4d67b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-02T01:14:25.000Z" - }, - "end": { - "$date": "2022-05-02T01:22:00.000Z" - }, - "events": [ - { - "uuid": "1d190b0d-2314-47cb-991b-b5846dd2a09c", - "start": { - "$date": "2022-05-02T01:14:25.000Z" - }, - "end": { - "$date": "2022-05-02T01:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", - "uuid": "346c431d-c345-4f5e-a8e4-3dd41794a3a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-02T01:27:25.000Z" - }, - "end": { - "$date": "2022-05-02T03:59:23.000Z" - }, - "events": [ - { - "uuid": "4121b5ad-7148-4dcb-a4b3-ca4877a1024f", - "start": { - "$date": "2022-05-02T01:27:25.000Z" - }, - "end": { - "$date": "2022-05-02T03:46:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a6f84b97-cab8-467d-a997-618d697c6a1c", - "start": { - "$date": "2022-05-02T03:46:25.000Z" - }, - "end": { - "$date": "2022-05-02T03:50:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "605153cc-aff7-468d-87f6-d92dbc335bc0", - "start": { - "$date": "2022-05-02T03:50:25.000Z" - }, - "end": { - "$date": "2022-05-02T03:59:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", - "uuid": "b0b86566-6ac3-458d-9fac-0ad82885553e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-02T01:31:00.000Z" - }, - "end": { - "$date": "2022-05-02T03:41:08.000Z" - }, - "events": [ - { - "uuid": "d01677d0-d53c-4447-8466-dd7b5b23f078", - "start": { - "$date": "2022-05-02T01:31:00.000Z" - }, - "end": { - "$date": "2022-05-02T03:41:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "870559e5-9bff-4d34-9cd9-2f6fc8fab205", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-02T01:36:40.000Z" - }, - "end": { - "$date": "2022-05-02T03:55:29.000Z" - }, - "events": [ - { - "uuid": "9e43ff49-2669-4abc-a30a-6581a41487ff", - "start": { - "$date": "2022-05-02T01:36:40.000Z" - }, - "end": { - "$date": "2022-05-02T03:55:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "15f279ae-e804-4a35-8827-303154777c9e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-02T01:57:47.000Z" - }, - "end": { - "$date": "2022-05-02T04:34:49.000Z" - }, - "events": [ - { - "uuid": "dbfa1c15-638a-46bb-9e3e-b5d87577ea0a", - "start": { - "$date": "2022-05-02T01:57:47.000Z" - }, - "end": { - "$date": "2022-05-02T04:34:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "ad04cfad-622d-466e-8abd-4dd02c33c4c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-02T03:41:48.000Z" - }, - "end": { - "$date": "2022-05-02T05:42:16.000Z" - }, - "events": [ - { - "uuid": "c2afcd47-a448-4f46-a512-32c0c886b228", - "start": { - "$date": "2022-05-02T03:41:48.000Z" - }, - "end": { - "$date": "2022-05-02T05:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "70203a97-82cd-40a1-abf3-5a06ac357858", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-02T04:56:17.000Z" - }, - "end": { - "$date": "2022-05-02T05:48:59.000Z" - }, - "events": [ - { - "uuid": "3ee85d5b-1aa6-4654-af20-fb124747ce61", - "start": { - "$date": "2022-05-02T04:56:17.000Z" - }, - "end": { - "$date": "2022-05-02T05:48:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8067fc8c-a9d3-422a-8cfb-39df1589b083", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-02T05:00:07.000Z" - }, - "end": { - "$date": "2022-05-02T05:47:34.000Z" - }, - "events": [ - { - "uuid": "0332295f-2228-4110-b1b0-e8872c055048", - "start": { - "$date": "2022-05-02T05:00:07.000Z" - }, - "end": { - "$date": "2022-05-02T05:47:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fe8301d0-e57d-46d0-b4c2-c5c3fd50769b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-02T06:24:46.000Z" - }, - "end": { - "$date": "2022-05-02T07:07:43.000Z" - }, - "events": [ - { - "uuid": "79d06a33-d054-4f17-abf7-6ca9812b31c9", - "start": { - "$date": "2022-05-02T06:24:46.000Z" - }, - "end": { - "$date": "2022-05-02T07:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "ac6071de-c835-416f-977a-cc2a1aa6c877", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-02T06:58:54.000Z" - }, - "end": { - "$date": "2022-05-02T11:24:12.000Z" - }, - "events": [ - { - "uuid": "220cb207-8fe8-42d8-89c6-c9a0eb6485a9", - "start": { - "$date": "2022-05-02T06:58:54.000Z" - }, - "end": { - "$date": "2022-05-02T11:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "e392a548-f7b5-46c8-9e9a-b9e0f312c414", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-02T18:49:26.000Z" - }, - "end": { - "$date": "2022-05-03T00:24:18.000Z" - }, - "events": [ - { - "uuid": "16bed6a6-105b-40a9-9463-9a5d2801f9bd", - "start": { - "$date": "2022-05-02T18:49:26.000Z" - }, - "end": { - "$date": "2022-05-03T00:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "52a728b4-3599-4243-8d8c-6875a7cb227f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-03T00:45:12.000Z" - }, - "end": { - "$date": "2022-05-03T03:24:55.000Z" - }, - "events": [ - { - "uuid": "33a8a38c-8b1b-4aa2-a042-33145d9ebe52", - "start": { - "$date": "2022-05-03T00:45:12.000Z" - }, - "end": { - "$date": "2022-05-03T03:24:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c8d30599-87e1-4796-8def-0bf14611c580", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-03T01:36:16.000Z" - }, - "end": { - "$date": "2022-05-03T01:38:32.000Z" - }, - "events": [ - { - "uuid": "99e5a55c-92c8-406a-a121-59126a1af641", - "start": { - "$date": "2022-05-03T01:36:16.000Z" - }, - "end": { - "$date": "2022-05-03T01:38:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bf352c83-148f-406d-8c61-28f220bbb436", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-03T01:45:48.000Z" - }, - "end": { - "$date": "2022-05-03T04:16:34.000Z" - }, - "events": [ - { - "uuid": "63e81700-6659-42b6-b701-ea42928763c8", - "start": { - "$date": "2022-05-03T01:45:48.000Z" - }, - "end": { - "$date": "2022-05-03T04:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "b3564253-f2e0-46dd-9489-fcdaefd7983d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-03T01:59:14.000Z" - }, - "end": { - "$date": "2022-05-03T03:29:25.000Z" - }, - "events": [ - { - "uuid": "62271866-eb81-448f-8a20-ae58d592e14d", - "start": { - "$date": "2022-05-03T01:59:14.000Z" - }, - "end": { - "$date": "2022-05-03T03:29:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "b928a78c-7a7b-4eb3-9f41-7c307a44fa88", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-03T02:41:41.000Z" - }, - "end": { - "$date": "2022-05-03T04:01:11.000Z" - }, - "events": [ - { - "uuid": "342722cb-4671-4ef3-8672-5aa298c31106", - "start": { - "$date": "2022-05-03T02:41:41.000Z" - }, - "end": { - "$date": "2022-05-03T04:01:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4cb9417b-a7ee-4d79-8659-4bdfe4c79de4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-03T03:26:01.000Z" - }, - "end": { - "$date": "2022-05-03T05:04:38.000Z" - }, - "events": [ - { - "uuid": "1ce4c22e-e91e-4063-a7c1-5becdd390aba", - "start": { - "$date": "2022-05-03T03:26:01.000Z" - }, - "end": { - "$date": "2022-05-03T05:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "db04958b-a2fd-4968-8c8f-9c94c7353fb3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-03T03:41:52.000Z" - }, - "end": { - "$date": "2022-05-03T06:10:12.000Z" - }, - "events": [ - { - "uuid": "007c9cc9-dbeb-4103-a0a6-6300482c4588", - "start": { - "$date": "2022-05-03T03:41:52.000Z" - }, - "end": { - "$date": "2022-05-03T06:10:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "a560c241-7a8a-43c4-8a12-0ac4ca1cf092", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-03T05:11:49.000Z" - }, - "end": { - "$date": "2022-05-03T05:58:04.000Z" - }, - "events": [ - { - "uuid": "a6f3e821-1de8-45a5-b959-cd12f1a390ef", - "start": { - "$date": "2022-05-03T05:11:49.000Z" - }, - "end": { - "$date": "2022-05-03T05:58:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "11874baa-9f59-493d-8c32-c67586fe62c9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-03T06:06:26.000Z" - }, - "end": { - "$date": "2022-05-03T10:15:21.000Z" - }, - "events": [ - { - "uuid": "4eaabd70-9e0c-49f3-ab07-b893abe113d0", - "start": { - "$date": "2022-05-03T06:06:26.000Z" - }, - "end": { - "$date": "2022-05-03T10:15:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f862d147-3bfc-45b7-8ee4-1c1c02b060d9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-03T06:40:40.000Z" - }, - "end": { - "$date": "2022-05-03T06:42:16.000Z" - }, - "events": [ - { - "uuid": "1ef641d5-a3a9-43c6-aaf2-c0472743cc22", - "start": { - "$date": "2022-05-03T06:40:40.000Z" - }, - "end": { - "$date": "2022-05-03T06:42:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bf43f02b-d5a1-46bb-a7ef-8f396591d088", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-03T06:43:46.000Z" - }, - "end": { - "$date": "2022-05-03T07:15:11.000Z" - }, - "events": [ - { - "uuid": "415f03b9-07a0-4d06-ba02-9af2b332fe85", - "start": { - "$date": "2022-05-03T06:43:46.000Z" - }, - "end": { - "$date": "2022-05-03T07:15:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "9d7d7779-083b-41cc-a346-0c7b57394fc4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-03T22:03:33.000Z" - }, - "end": { - "$date": "2022-05-03T22:19:08.000Z" - }, - "events": [ - { - "uuid": "bbac00f0-bcf6-4b7a-b479-db9e68cca5d1", - "start": { - "$date": "2022-05-03T22:03:33.000Z" - }, - "end": { - "$date": "2022-05-03T22:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "97474e12-8daa-4a7b-8e13-c9ce6763d370", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-03T22:27:24.000Z" - }, - "end": { - "$date": "2022-05-03T22:36:44.000Z" - }, - "events": [ - { - "uuid": "09fd7e32-ba7c-4c3d-a47a-e8d2e24f1c61", - "start": { - "$date": "2022-05-03T22:27:24.000Z" - }, - "end": { - "$date": "2022-05-03T22:36:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3dc187d3-5d8a-44d8-aa8b-683836952acd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-03T22:49:51.000Z" - }, - "end": { - "$date": "2022-05-04T00:49:40.000Z" - }, - "events": [ - { - "uuid": "aeb0f5c0-351b-4758-a462-89b47bde0109", - "start": { - "$date": "2022-05-03T22:49:51.000Z" - }, - "end": { - "$date": "2022-05-04T00:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "2e10569d-21de-4f8e-a571-d589c093cb38", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-04T00:03:48.000Z" - }, - "end": { - "$date": "2022-05-04T01:02:14.000Z" - }, - "events": [ - { - "uuid": "cce5f8d4-1465-4dd8-91ad-0ec1e9644933", - "start": { - "$date": "2022-05-04T00:03:48.000Z" - }, - "end": { - "$date": "2022-05-04T01:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "a446d033-9b39-4c52-b8d9-0c9d57c292f5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-04T00:50:55.000Z" - }, - "end": { - "$date": "2022-05-04T01:23:55.000Z" - }, - "events": [ - { - "uuid": "9e54c057-6b3f-47ef-ab77-d8f30d2ad6fa", - "start": { - "$date": "2022-05-04T00:50:55.000Z" - }, - "end": { - "$date": "2022-05-04T01:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "3d64136c-4c81-46e2-b0d3-b8c4296203ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-04T01:34:38.000Z" - }, - "end": { - "$date": "2022-05-04T05:38:01.000Z" - }, - "events": [ - { - "uuid": "1114b028-3546-4c97-8df4-fb195876911c", - "start": { - "$date": "2022-05-04T01:34:38.000Z" - }, - "end": { - "$date": "2022-05-04T05:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99a3065f-f39b-4dbb-ba18-988b5f32c5aa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-04T01:44:46.000Z" - }, - "end": { - "$date": "2022-05-04T04:33:40.000Z" - }, - "events": [ - { - "uuid": "409885cd-6ec0-4d78-b227-992cef350e75", - "start": { - "$date": "2022-05-04T01:44:46.000Z" - }, - "end": { - "$date": "2022-05-04T04:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "2c85224c-b38c-42ba-ae5a-074768a117be", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-04T02:30:17.000Z" - }, - "end": { - "$date": "2022-05-04T05:01:10.000Z" - }, - "events": [ - { - "uuid": "a836f933-1bdd-44d8-888c-9ca3194571ca", - "start": { - "$date": "2022-05-04T02:30:17.000Z" - }, - "end": { - "$date": "2022-05-04T05:01:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "018bc186-2eee-4163-bf60-ee887d8e72d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-04T02:56:40.000Z" - }, - "end": { - "$date": "2022-05-04T04:51:31.000Z" - }, - "events": [ - { - "uuid": "8b15bf51-b701-45cf-be79-72d78ef0f93d", - "start": { - "$date": "2022-05-04T02:56:40.000Z" - }, - "end": { - "$date": "2022-05-04T04:51:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "967cb789-9c0c-4ba9-8e03-610e0c14fdd5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-04T04:36:27.000Z" - }, - "end": { - "$date": "2022-05-04T07:09:13.000Z" - }, - "events": [ - { - "uuid": "3d55cc31-f461-4a9e-8d5e-cbe4b16f719f", - "start": { - "$date": "2022-05-04T04:36:27.000Z" - }, - "end": { - "$date": "2022-05-04T07:09:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "255ad922-421b-4b7b-9eca-33d5afc2fda7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-04T04:54:18.000Z" - }, - "end": { - "$date": "2022-05-04T05:31:45.000Z" - }, - "events": [ - { - "uuid": "75f0a701-6f51-47bf-b350-dbb72001f4d4", - "start": { - "$date": "2022-05-04T04:54:18.000Z" - }, - "end": { - "$date": "2022-05-04T05:31:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cced8cd0-74a9-4213-94d4-b3e13a070ddf", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-04T05:28:40.000Z" - }, - "end": { - "$date": "2022-05-04T07:09:20.000Z" - }, - "events": [ - { - "uuid": "da0de2b7-25c9-4807-829e-6cf0b6389a3b", - "start": { - "$date": "2022-05-04T05:28:40.000Z" - }, - "end": { - "$date": "2022-05-04T07:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "48a74a28-f8b1-4113-9727-614619ab0d53", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-04T08:27:11.000Z" - }, - "end": { - "$date": "2022-05-04T15:37:06.000Z" - }, - "events": [ - { - "uuid": "df89045c-21f8-4074-b9ee-66956d0e3996", - "start": { - "$date": "2022-05-04T08:27:11.000Z" - }, - "end": { - "$date": "2022-05-04T15:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2075383b-cc34-4494-ba6d-d01568fb865a", - "uuid": "39992e71-e6a3-4b2d-a1a8-b4558d1099e7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-04T15:44:18.000Z" - }, - "end": { - "$date": "2022-05-04T15:56:22.000Z" - }, - "events": [ - { - "uuid": "c04464f2-1147-46a9-888e-dea40ec448b8", - "start": { - "$date": "2022-05-04T15:44:18.000Z" - }, - "end": { - "$date": "2022-05-04T15:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2075383b-cc34-4494-ba6d-d01568fb865a", - "uuid": "e379b11b-c24d-43bc-83b3-7005df593de6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-04T15:57:52.000Z" - }, - "end": { - "$date": "2022-05-04T19:28:53.000Z" - }, - "events": [ - { - "uuid": "d1b7d417-83d8-4c41-9489-bef79edae79e", - "start": { - "$date": "2022-05-04T15:57:52.000Z" - }, - "end": { - "$date": "2022-05-04T17:15:52.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14ea08af-abcf-4c22-b198-af33e2908853", - "start": { - "$date": "2022-05-04T17:15:52.000Z" - }, - "end": { - "$date": "2022-05-04T17:20:52.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9a334100-a997-4dd6-876d-425bb72f6e15", - "start": { - "$date": "2022-05-04T17:20:52.000Z" - }, - "end": { - "$date": "2022-05-04T19:28:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "291cea53-d4db-46b1-823a-a55feb4e9241", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-04T22:24:30.000Z" - }, - "end": { - "$date": "2022-05-05T03:10:43.000Z" - }, - "events": [ - { - "uuid": "380c437d-8e13-4ed4-91c8-914d30dfe2ee", - "start": { - "$date": "2022-05-04T22:24:30.000Z" - }, - "end": { - "$date": "2022-05-04T22:46:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5cf475d5-f3c7-46f7-8c4d-8d0134097202", - "start": { - "$date": "2022-05-04T22:46:30.000Z" - }, - "end": { - "$date": "2022-05-04T22:50:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "adb5475d-1d3b-4261-a6e4-4b1cbd3518ce", - "start": { - "$date": "2022-05-04T22:50:30.000Z" - }, - "end": { - "$date": "2022-05-04T23:00:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "910265c3-0d03-4d65-b9c4-70d42473cf0e", - "start": { - "$date": "2022-05-04T23:00:30.000Z" - }, - "end": { - "$date": "2022-05-04T23:29:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4f6bc085-dc2c-47bd-8390-33ba19ee3379", - "start": { - "$date": "2022-05-04T23:29:30.000Z" - }, - "end": { - "$date": "2022-05-04T23:32:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "280becbe-a9dd-47d0-906b-41e15ed78787", - "start": { - "$date": "2022-05-04T23:32:30.000Z" - }, - "end": { - "$date": "2022-05-04T23:50:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "073f0e39-82ae-43a7-a2fb-c4d5b278cc9d", - "start": { - "$date": "2022-05-04T23:50:30.000Z" - }, - "end": { - "$date": "2022-05-05T03:10:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "e38a856e-0228-47e0-bdbc-adb6045dd42f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-04T22:26:45.000Z" - }, - "end": { - "$date": "2022-05-05T07:04:17.000Z" - }, - "events": [ - { - "uuid": "b58303fc-4a58-4c4d-8e87-759d8ee81a1c", - "start": { - "$date": "2022-05-04T22:26:45.000Z" - }, - "end": { - "$date": "2022-05-05T07:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "2baae6a8-0ab6-495f-a971-260e81874c6e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-04T23:05:49.000Z" - }, - "end": { - "$date": "2022-05-05T00:53:20.000Z" - }, - "events": [ - { - "uuid": "a598213e-18d8-486b-8f3a-b0d6a04375a0", - "start": { - "$date": "2022-05-04T23:05:49.000Z" - }, - "end": { - "$date": "2022-05-05T00:53:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ba937a78-a78e-4b4c-a8f4-82816e852b4c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-05T00:54:41.000Z" - }, - "end": { - "$date": "2022-05-05T01:10:37.000Z" - }, - "events": [ - { - "uuid": "5c8a3b4d-0061-4d37-92b3-291791d7622f", - "start": { - "$date": "2022-05-05T00:54:41.000Z" - }, - "end": { - "$date": "2022-05-05T01:10:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "4dda9d9a-3078-4a8d-a362-ef69b4118cb3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-05T02:01:36.000Z" - }, - "end": { - "$date": "2022-05-05T03:21:22.000Z" - }, - "events": [ - { - "uuid": "82df8f60-d4a5-4c41-a2b6-3c6c6fc7492e", - "start": { - "$date": "2022-05-05T02:01:36.000Z" - }, - "end": { - "$date": "2022-05-05T03:21:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "63d3ddf3-9565-4151-a254-1163c48e2188", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-05T02:33:38.000Z" - }, - "end": { - "$date": "2022-05-05T07:06:43.000Z" - }, - "events": [ - { - "uuid": "0853efec-5d5d-42f8-8b4d-66c5d0a459b9", - "start": { - "$date": "2022-05-05T02:33:38.000Z" - }, - "end": { - "$date": "2022-05-05T07:06:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "033003d8-733c-4bb5-b3ba-4008c2bd3c95", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-05T03:18:44.000Z" - }, - "end": { - "$date": "2022-05-05T06:32:59.000Z" - }, - "events": [ - { - "uuid": "6006aefe-cf31-4836-959e-58a80d2ddf3e", - "start": { - "$date": "2022-05-05T03:18:44.000Z" - }, - "end": { - "$date": "2022-05-05T06:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "344aaea0-2930-48a9-9d0d-4f76183621d8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-05T03:21:12.000Z" - }, - "end": { - "$date": "2022-05-05T06:32:57.000Z" - }, - "events": [ - { - "uuid": "eb891682-6149-4722-8858-b155cf69d9fe", - "start": { - "$date": "2022-05-05T03:21:12.000Z" - }, - "end": { - "$date": "2022-05-05T06:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d62ea13d-e765-462a-a448-41d2b895a09a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-05T03:22:33.000Z" - }, - "end": { - "$date": "2022-05-05T03:26:53.000Z" - }, - "events": [ - { - "uuid": "9491c4d9-b3fd-4168-9193-9043fb1dabfd", - "start": { - "$date": "2022-05-05T03:22:33.000Z" - }, - "end": { - "$date": "2022-05-05T03:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "2bc768d1-9ca7-4aa0-be6f-b669883a8184", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-05T03:27:24.000Z" - }, - "end": { - "$date": "2022-05-05T05:24:31.000Z" - }, - "events": [ - { - "uuid": "0eff8508-280b-4859-b3cb-1a44d72cacfe", - "start": { - "$date": "2022-05-05T03:27:24.000Z" - }, - "end": { - "$date": "2022-05-05T05:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "14247694-47fd-4a3c-bcfa-490c7d580a5d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-05T05:25:27.000Z" - }, - "end": { - "$date": "2022-05-05T05:26:31.000Z" - }, - "events": [ - { - "uuid": "236d1747-5e3e-4a65-bfed-3434aa2ac5e9", - "start": { - "$date": "2022-05-05T05:25:27.000Z" - }, - "end": { - "$date": "2022-05-05T05:26:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2075383b-cc34-4494-ba6d-d01568fb865a", - "uuid": "cd6ed81d-04f2-4236-b928-639d8294f539", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-05T05:39:26.000Z" - }, - "end": { - "$date": "2022-05-05T06:42:36.000Z" - }, - "events": [ - { - "uuid": "b07e912f-c712-40d5-9130-b9751301220b", - "start": { - "$date": "2022-05-05T05:39:26.000Z" - }, - "end": { - "$date": "2022-05-05T06:42:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "034bf62b-a945-4669-82ba-2fa21f966e80", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-05T18:41:08.000Z" - }, - "end": { - "$date": "2022-05-05T18:43:48.000Z" - }, - "events": [ - { - "uuid": "be6f0f69-8ecb-45da-bd74-2595db5bb067", - "start": { - "$date": "2022-05-05T18:41:08.000Z" - }, - "end": { - "$date": "2022-05-05T18:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b3512789-d2be-4c91-a975-450e036c40f8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-05T22:11:25.000Z" - }, - "end": { - "$date": "2022-05-05T22:41:01.000Z" - }, - "events": [ - { - "uuid": "dea4936e-9c61-4241-bf3e-b3258a98ffe6", - "start": { - "$date": "2022-05-05T22:11:25.000Z" - }, - "end": { - "$date": "2022-05-05T22:41:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "2c37f814-28e9-407d-9039-18070ac7ebd6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-05T22:26:08.000Z" - }, - "end": { - "$date": "2022-05-06T02:13:50.000Z" - }, - "events": [ - { - "uuid": "5f953084-ce3d-4671-8b3c-c59cb21aabdf", - "start": { - "$date": "2022-05-05T22:26:08.000Z" - }, - "end": { - "$date": "2022-05-06T02:13:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e008deb-b3aa-47bc-b663-5c1dcfc845cf", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-05T22:42:27.000Z" - }, - "end": { - "$date": "2022-05-05T23:15:13.000Z" - }, - "events": [ - { - "uuid": "a7c20e10-92dc-43d6-89d9-b74df384809e", - "start": { - "$date": "2022-05-05T22:42:27.000Z" - }, - "end": { - "$date": "2022-05-05T23:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca95e734-2cb9-4483-a4b2-23ee8e7400ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-05T23:17:53.000Z" - }, - "end": { - "$date": "2022-05-05T23:51:14.000Z" - }, - "events": [ - { - "uuid": "16cc8444-b4ea-496e-8e34-05888daa5450", - "start": { - "$date": "2022-05-05T23:17:53.000Z" - }, - "end": { - "$date": "2022-05-05T23:51:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2e6a2cc0-5d99-4108-a3a4-b8b1a568c5a5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-05T23:42:24.000Z" - }, - "end": { - "$date": "2022-05-06T00:04:51.000Z" - }, - "events": [ - { - "uuid": "0be95e5a-ba55-4ca2-b885-67f3b9415970", - "start": { - "$date": "2022-05-05T23:42:24.000Z" - }, - "end": { - "$date": "2022-05-06T00:04:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "df6c0423-765c-4788-95b2-07b0c4386b52", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-05T23:56:45.000Z" - }, - "end": { - "$date": "2022-05-06T00:18:46.000Z" - }, - "events": [ - { - "uuid": "a5818638-103f-4b9b-a3ed-18f6b5adfdfe", - "start": { - "$date": "2022-05-05T23:56:45.000Z" - }, - "end": { - "$date": "2022-05-06T00:18:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "23bfe13f-57f9-4d32-a840-2776fcb5c21d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T00:05:26.000Z" - }, - "end": { - "$date": "2022-05-06T00:07:26.000Z" - }, - "events": [ - { - "uuid": "238dec1c-d926-4285-aea8-7f0edeb596a9", - "start": { - "$date": "2022-05-06T00:05:26.000Z" - }, - "end": { - "$date": "2022-05-06T00:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "91903afd-ea97-45e7-bb97-8c8af26240f0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T00:12:52.000Z" - }, - "end": { - "$date": "2022-05-06T00:28:50.000Z" - }, - "events": [ - { - "uuid": "b299cd85-aab8-4848-beea-88fea7307729", - "start": { - "$date": "2022-05-06T00:12:52.000Z" - }, - "end": { - "$date": "2022-05-06T00:28:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60f5dfaa-c652-4011-a776-88e65216384c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-06T00:22:46.000Z" - }, - "end": { - "$date": "2022-05-06T00:46:18.000Z" - }, - "events": [ - { - "uuid": "e0ea3242-a766-40b4-a834-8d277dcd48df", - "start": { - "$date": "2022-05-06T00:22:46.000Z" - }, - "end": { - "$date": "2022-05-06T00:46:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "0699af67-45f7-4ac2-8c7a-101e1cbfc46a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T00:29:09.000Z" - }, - "end": { - "$date": "2022-05-06T01:50:10.000Z" - }, - "events": [ - { - "uuid": "a222cf89-7dc3-49dc-a910-2c1a34410d96", - "start": { - "$date": "2022-05-06T00:29:09.000Z" - }, - "end": { - "$date": "2022-05-06T01:50:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ef7b85a-9d63-4320-8df0-409bd54f5e09", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-06T00:51:39.000Z" - }, - "end": { - "$date": "2022-05-06T01:13:44.000Z" - }, - "events": [ - { - "uuid": "a9d0a113-8361-444a-a01b-53b4daf40214", - "start": { - "$date": "2022-05-06T00:51:39.000Z" - }, - "end": { - "$date": "2022-05-06T01:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "543da688-fdf3-442a-839a-67f71ffb27b2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-06T01:14:55.000Z" - }, - "end": { - "$date": "2022-05-06T01:54:48.000Z" - }, - "events": [ - { - "uuid": "34ee6de2-460b-4f6e-9e25-04e4318ba251", - "start": { - "$date": "2022-05-06T01:14:55.000Z" - }, - "end": { - "$date": "2022-05-06T01:54:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "bd84b097-e34a-4d38-b3e9-35fcc0dc0d38", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-06T02:14:11.000Z" - }, - "end": { - "$date": "2022-05-06T07:46:38.000Z" - }, - "events": [ - { - "uuid": "dcffeddc-f073-4ccc-9da1-1770766a70e4", - "start": { - "$date": "2022-05-06T02:14:11.000Z" - }, - "end": { - "$date": "2022-05-06T07:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "8433b286-4d74-4d65-ac8c-de48be493765", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T02:14:54.000Z" - }, - "end": { - "$date": "2022-05-06T02:15:59.000Z" - }, - "events": [ - { - "uuid": "dc70f0ce-fda0-41c1-92b4-6ce737ab41b4", - "start": { - "$date": "2022-05-06T02:14:54.000Z" - }, - "end": { - "$date": "2022-05-06T02:15:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "6a6c518a-0c60-4ecb-b228-643b1258c875", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T02:16:29.000Z" - }, - "end": { - "$date": "2022-05-06T02:20:10.000Z" - }, - "events": [ - { - "uuid": "f5408687-d768-47f2-8ce9-2a4986b091b6", - "start": { - "$date": "2022-05-06T02:16:29.000Z" - }, - "end": { - "$date": "2022-05-06T02:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "fbad4171-53f7-4961-96a9-e440b4dd440b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T02:41:54.000Z" - }, - "end": { - "$date": "2022-05-06T03:26:34.000Z" - }, - "events": [ - { - "uuid": "4a7f93c4-c2b4-4a7a-b5b8-97fb5f03dec4", - "start": { - "$date": "2022-05-06T02:41:54.000Z" - }, - "end": { - "$date": "2022-05-06T03:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "89613e6a-7f97-4bd7-b489-f0e63be9d1bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-06T05:01:13.000Z" - }, - "end": { - "$date": "2022-05-06T11:59:27.000Z" - }, - "events": [ - { - "uuid": "a942c96f-baf0-41ea-91e0-86ef415db1f7", - "start": { - "$date": "2022-05-06T05:01:13.000Z" - }, - "end": { - "$date": "2022-05-06T08:45:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4e815f72-18e1-4088-bed6-96492934f835", - "start": { - "$date": "2022-05-06T08:45:13.000Z" - }, - "end": { - "$date": "2022-05-06T11:59:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3a23c0dc-36ef-41f0-93d7-b75e52ac5a63", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T03:31:25.000Z" - }, - "end": { - "$date": "2022-05-06T05:32:57.000Z" - }, - "events": [ - { - "uuid": "1a07c920-f296-4f0e-9944-fda040152e4b", - "start": { - "$date": "2022-05-06T03:31:25.000Z" - }, - "end": { - "$date": "2022-05-06T05:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1c4c4c8d-c0c2-4df6-a8a2-82559e2c94b3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-06T03:44:30.000Z" - }, - "end": { - "$date": "2022-05-06T04:17:51.000Z" - }, - "events": [ - { - "uuid": "3efefc42-3388-4140-ae05-a5b9833c59ed", - "start": { - "$date": "2022-05-06T03:44:30.000Z" - }, - "end": { - "$date": "2022-05-06T04:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "73fc69a9-d2fd-4775-ae3b-c150e6eaf75e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-06T04:30:15.000Z" - }, - "end": { - "$date": "2022-05-06T05:14:39.000Z" - }, - "events": [ - { - "uuid": "1ff62596-b74c-4b7e-a42b-49e5ee97e24e", - "start": { - "$date": "2022-05-06T04:30:15.000Z" - }, - "end": { - "$date": "2022-05-06T05:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "647f2d65-03ae-411d-85d2-3afaf99efd8e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-06T07:47:00.000Z" - }, - "end": { - "$date": "2022-05-06T08:28:00.000Z" - }, - "events": [ - { - "uuid": "e0735d07-ff7c-4f9d-b3a7-464ea8b95120", - "start": { - "$date": "2022-05-06T07:47:00.000Z" - }, - "end": { - "$date": "2022-05-06T08:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "a4acd7f0-c1e2-4529-b02b-874102a7282a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-06T11:34:13.000Z" - }, - "end": { - "$date": "2022-05-06T13:03:13.000Z" - }, - "events": [ - { - "uuid": "0130ca0f-1d31-4e79-9f5c-5ac2c5216422", - "start": { - "$date": "2022-05-06T11:34:13.000Z" - }, - "end": { - "$date": "2022-05-06T13:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "1a6b1116-bc28-424a-9572-415ed5c6885b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-06T22:13:10.000Z" - }, - "end": { - "$date": "2022-05-07T02:38:59.000Z" - }, - "events": [ - { - "uuid": "2ebebe81-c6c4-432c-ad14-a3c7c1487e0b", - "start": { - "$date": "2022-05-06T22:13:10.000Z" - }, - "end": { - "$date": "2022-05-06T22:28:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "90f1414b-03c5-4202-ac2a-770b6aa891e0", - "start": { - "$date": "2022-05-06T22:28:10.000Z" - }, - "end": { - "$date": "2022-05-06T22:33:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b5c32094-22f7-4005-936c-732d8989ed79", - "start": { - "$date": "2022-05-06T22:33:10.000Z" - }, - "end": { - "$date": "2022-05-07T00:06:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "47d45714-6d13-4d66-88fd-42378b1b50db", - "start": { - "$date": "2022-05-07T00:06:10.000Z" - }, - "end": { - "$date": "2022-05-07T00:11:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "de5e41e5-5327-40d4-a27e-4ac03a7bda88", - "start": { - "$date": "2022-05-07T00:11:10.000Z" - }, - "end": { - "$date": "2022-05-07T00:21:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7cb6c7ed-7cd7-4507-b257-7c5611f8a2ef", - "start": { - "$date": "2022-05-07T00:21:10.000Z" - }, - "end": { - "$date": "2022-05-07T00:23:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f552b02d-ccd2-4f4b-a4ba-43b183404182", - "start": { - "$date": "2022-05-07T00:23:10.000Z" - }, - "end": { - "$date": "2022-05-07T00:33:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5564217-51cf-4362-99f2-77ebd4f3f34c", - "start": { - "$date": "2022-05-07T00:33:10.000Z" - }, - "end": { - "$date": "2022-05-07T00:38:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fbceaf90-6495-44f3-b948-77647a1d25da", - "start": { - "$date": "2022-05-07T00:38:10.000Z" - }, - "end": { - "$date": "2022-05-07T01:07:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4a476d52-fbac-49c0-b28f-328aa2b2cd9c", - "start": { - "$date": "2022-05-07T01:07:10.000Z" - }, - "end": { - "$date": "2022-05-07T01:12:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "121d53d2-c97b-4bab-b0cc-6825dd2bc70a", - "start": { - "$date": "2022-05-07T01:12:10.000Z" - }, - "end": { - "$date": "2022-05-07T01:34:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "681c8d44-1dac-4656-8dfb-3294fbfc472c", - "start": { - "$date": "2022-05-07T01:34:10.000Z" - }, - "end": { - "$date": "2022-05-07T01:59:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d2dc8f0a-f7bc-46ec-8540-a1b5de715343", - "start": { - "$date": "2022-05-07T01:59:10.000Z" - }, - "end": { - "$date": "2022-05-07T02:34:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "006f2cea-855e-46ae-8565-868517824a3f", - "start": { - "$date": "2022-05-07T02:34:10.000Z" - }, - "end": { - "$date": "2022-05-07T02:38:59.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c87c81a7-c9c9-49f8-abda-bac63c29ed6f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T00:08:19.000Z" - }, - "end": { - "$date": "2022-05-07T00:53:56.000Z" - }, - "events": [ - { - "uuid": "55670afc-1868-48c3-af4b-4c1bc43eea72", - "start": { - "$date": "2022-05-07T00:08:19.000Z" - }, - "end": { - "$date": "2022-05-07T00:53:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "867c85f6-ef03-4494-a3c4-cb2eca6a84c7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-07T01:38:26.000Z" - }, - "end": { - "$date": "2022-05-07T07:53:05.000Z" - }, - "events": [ - { - "uuid": "9facb49f-6b06-4eca-a739-bebcd53f548b", - "start": { - "$date": "2022-05-07T01:38:26.000Z" - }, - "end": { - "$date": "2022-05-07T07:53:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8991fdf2-abdc-472a-9bb6-1125344d4bab", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-07T02:38:47.000Z" - }, - "end": { - "$date": "2022-05-07T05:54:01.000Z" - }, - "events": [ - { - "uuid": "432bdd30-ea41-46fa-a04c-afcb019c38a3", - "start": { - "$date": "2022-05-07T02:38:47.000Z" - }, - "end": { - "$date": "2022-05-07T05:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "0e9d9d4c-8211-40ce-82b4-0ee139d22d2e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-07T02:39:35.000Z" - }, - "end": { - "$date": "2022-05-07T04:26:45.000Z" - }, - "events": [ - { - "uuid": "5b060315-ea5a-455a-9e56-765401f20357", - "start": { - "$date": "2022-05-07T02:39:35.000Z" - }, - "end": { - "$date": "2022-05-07T04:26:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "079a288d-91ac-47d9-9983-2dad480949e1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-07T02:41:12.000Z" - }, - "end": { - "$date": "2022-05-07T03:33:38.000Z" - }, - "events": [ - { - "uuid": "f25b0041-2b47-4ce2-b5c2-08a70f5f86e2", - "start": { - "$date": "2022-05-07T02:41:12.000Z" - }, - "end": { - "$date": "2022-05-07T03:33:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8a1adad-7e54-48f5-89df-f780f9e72189", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T02:59:04.000Z" - }, - "end": { - "$date": "2022-05-07T03:28:23.000Z" - }, - "events": [ - { - "uuid": "7b770062-4d99-4e0b-ac69-c275cefcc172", - "start": { - "$date": "2022-05-07T02:59:04.000Z" - }, - "end": { - "$date": "2022-05-07T03:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6130460-7b9a-4af9-be7b-f383ebd33689", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T03:29:43.000Z" - }, - "end": { - "$date": "2022-05-07T04:01:17.000Z" - }, - "events": [ - { - "uuid": "b450fd85-058c-41a1-92d8-139d6e2b9812", - "start": { - "$date": "2022-05-07T03:29:43.000Z" - }, - "end": { - "$date": "2022-05-07T04:01:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0ae80214-096c-4656-b508-91926b1cd170", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-07T03:34:09.000Z" - }, - "end": { - "$date": "2022-05-07T08:38:43.000Z" - }, - "events": [ - { - "uuid": "5c14dc6d-99a4-4208-a2e8-9b492f531b3d", - "start": { - "$date": "2022-05-07T03:34:09.000Z" - }, - "end": { - "$date": "2022-05-07T08:38:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9d64172a-f9f6-426d-aa9f-68da39328d5e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-07T04:27:16.000Z" - }, - "end": { - "$date": "2022-05-07T05:45:33.000Z" - }, - "events": [ - { - "uuid": "8085b190-7c95-4703-b411-d5cbf298c789", - "start": { - "$date": "2022-05-07T04:27:16.000Z" - }, - "end": { - "$date": "2022-05-07T05:45:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2c6ac4b0-acd2-40b2-a552-f98faad74100", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T04:32:26.000Z" - }, - "end": { - "$date": "2022-05-07T06:19:19.000Z" - }, - "events": [ - { - "uuid": "9939d625-6ad4-4300-af8c-1c9b56f515c8", - "start": { - "$date": "2022-05-07T04:32:26.000Z" - }, - "end": { - "$date": "2022-05-07T06:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "76662f2f-ce08-46b6-8b4a-64d6c4526cb1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-07T04:34:34.000Z" - }, - "end": { - "$date": "2022-05-07T13:39:06.000Z" - }, - "events": [ - { - "uuid": "530aecaa-0a74-4a59-8f1d-084aa9aa1f4d", - "start": { - "$date": "2022-05-07T04:34:34.000Z" - }, - "end": { - "$date": "2022-05-07T08:10:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "965d65b2-c71d-4564-974b-3d600888472a", - "start": { - "$date": "2022-05-07T08:10:34.000Z" - }, - "end": { - "$date": "2022-05-07T13:37:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "204745ba-e717-4cf4-b5d8-b5dc87ea271d", - "start": { - "$date": "2022-05-07T13:37:34.000Z" - }, - "end": { - "$date": "2022-05-07T13:39:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "60dea58d-4486-40dc-9cab-c5669069786b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-07T05:46:14.000Z" - }, - "end": { - "$date": "2022-05-07T07:55:07.000Z" - }, - "events": [ - { - "uuid": "0662cbc7-fae9-4064-a066-1e4d262e1a0d", - "start": { - "$date": "2022-05-07T05:46:14.000Z" - }, - "end": { - "$date": "2022-05-07T07:55:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdf0076d-25f6-4f71-bec6-4c1f0a7dc9cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T06:01:42.000Z" - }, - "end": { - "$date": "2022-05-07T06:25:32.000Z" - }, - "events": [ - { - "uuid": "d7ef87d2-4071-4cfc-8654-be53f4f9e76a", - "start": { - "$date": "2022-05-07T06:01:42.000Z" - }, - "end": { - "$date": "2022-05-07T06:25:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2429e867-5840-4193-bb73-7533dd5bb281", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T06:19:35.000Z" - }, - "end": { - "$date": "2022-05-07T08:38:41.000Z" - }, - "events": [ - { - "uuid": "3420b6ba-1c95-4c7e-ab85-c83b7301671b", - "start": { - "$date": "2022-05-07T06:19:35.000Z" - }, - "end": { - "$date": "2022-05-07T08:38:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "68951783-d6c1-460a-a35c-5fa35349abf6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T06:27:59.000Z" - }, - "end": { - "$date": "2022-05-07T06:50:32.000Z" - }, - "events": [ - { - "uuid": "23200b38-6e7f-469b-9544-0c422b6c7ffc", - "start": { - "$date": "2022-05-07T06:27:59.000Z" - }, - "end": { - "$date": "2022-05-07T06:50:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3479b8e8-06b3-4cae-a6ea-0c459b95f8ce", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T06:50:57.000Z" - }, - "end": { - "$date": "2022-05-07T06:53:34.000Z" - }, - "events": [ - { - "uuid": "ab53aa9d-8fc0-4394-acb8-421f65b76ba1", - "start": { - "$date": "2022-05-07T06:50:57.000Z" - }, - "end": { - "$date": "2022-05-07T06:53:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b8aae00f-54ef-4504-9a1c-5bee36c53c93", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T08:12:38.000Z" - }, - "end": { - "$date": "2022-05-07T08:13:10.000Z" - }, - "events": [ - { - "uuid": "f5bcb32c-e25d-44bf-a37d-b7a439384a23", - "start": { - "$date": "2022-05-07T08:12:38.000Z" - }, - "end": { - "$date": "2022-05-07T08:13:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "90c15380-0748-4cf9-b5c5-c8a5d3bfa5c4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T09:59:07.000Z" - }, - "end": { - "$date": "2022-05-07T10:25:42.000Z" - }, - "events": [ - { - "uuid": "7b8ac1ed-0bc6-4c28-a110-496971a127cf", - "start": { - "$date": "2022-05-07T09:59:07.000Z" - }, - "end": { - "$date": "2022-05-07T10:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "66ef59cc-dd75-46c4-9d17-a6dd3032d6d8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T10:26:06.000Z" - }, - "end": { - "$date": "2022-05-07T10:30:38.000Z" - }, - "events": [ - { - "uuid": "a7b55f70-da3b-413f-bb70-d44f28b1a0d0", - "start": { - "$date": "2022-05-07T10:26:06.000Z" - }, - "end": { - "$date": "2022-05-07T10:30:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "4c582273-3e12-425f-b69a-3784616ebf7a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T10:31:57.000Z" - }, - "end": { - "$date": "2022-05-07T10:44:25.000Z" - }, - "events": [ - { - "uuid": "2baaaa39-77b9-45ea-a8e9-495e945bb65d", - "start": { - "$date": "2022-05-07T10:31:57.000Z" - }, - "end": { - "$date": "2022-05-07T10:44:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "cf60cbb6-625e-457b-af93-719a30f7e7e7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T10:44:44.000Z" - }, - "end": { - "$date": "2022-05-07T11:14:24.000Z" - }, - "events": [ - { - "uuid": "84d42635-dc47-46fa-9c1e-a72c9d380b20", - "start": { - "$date": "2022-05-07T10:44:44.000Z" - }, - "end": { - "$date": "2022-05-07T11:14:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "89040950-54ad-4672-9674-a2dd8b4dbd58", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T11:15:14.000Z" - }, - "end": { - "$date": "2022-05-07T11:22:15.000Z" - }, - "events": [ - { - "uuid": "9124e146-a6c4-493e-b3cd-724b2ed09d16", - "start": { - "$date": "2022-05-07T11:15:14.000Z" - }, - "end": { - "$date": "2022-05-07T11:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "41e014fa-deed-4f85-9696-b6883261827a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-07T11:37:27.000Z" - }, - "end": { - "$date": "2022-05-07T15:15:13.000Z" - }, - "events": [ - { - "uuid": "1da94b10-0c9b-40b3-9054-6aba02675a88", - "start": { - "$date": "2022-05-07T11:37:27.000Z" - }, - "end": { - "$date": "2022-05-07T15:15:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "47e566c0-f626-4b96-b01b-d40611545f42", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-07T13:57:10.000Z" - }, - "end": { - "$date": "2022-05-07T15:21:41.000Z" - }, - "events": [ - { - "uuid": "c89ce158-7596-4651-8690-7f891ed3b505", - "start": { - "$date": "2022-05-07T13:57:10.000Z" - }, - "end": { - "$date": "2022-05-07T15:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "e26be617-9ee9-4f8f-8fbb-715c2ae3068a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T14:55:38.000Z" - }, - "end": { - "$date": "2022-05-07T15:05:18.000Z" - }, - "events": [ - { - "uuid": "0cf38d11-a324-4b00-8da2-2ef36d7b5d0b", - "start": { - "$date": "2022-05-07T14:55:38.000Z" - }, - "end": { - "$date": "2022-05-07T15:05:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "80a380f2-feb5-4996-8c0a-3f25b8148ae5", - "uuid": "1364607c-7e0f-40a0-8e76-822783f8589b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T15:20:05.000Z" - }, - "end": { - "$date": "2022-05-07T15:36:20.000Z" - }, - "events": [ - { - "uuid": "8764dcef-b686-465c-b653-a8acf29d602b", - "start": { - "$date": "2022-05-07T15:20:05.000Z" - }, - "end": { - "$date": "2022-05-07T15:36:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ba9037cf-9de4-4373-a2bf-25eb011eb64c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T16:20:00.000Z" - }, - "end": { - "$date": "2022-05-07T16:21:36.000Z" - }, - "events": [ - { - "uuid": "496f4768-f115-4be5-befd-2797081304f5", - "start": { - "$date": "2022-05-07T16:20:00.000Z" - }, - "end": { - "$date": "2022-05-07T16:21:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "576b48b2-4f0f-47df-8c62-c0d4666e39be", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T16:21:40.000Z" - }, - "end": { - "$date": "2022-05-07T16:44:57.000Z" - }, - "events": [ - { - "uuid": "e5ad8c5f-0dd8-4e5a-a087-0c95be86021d", - "start": { - "$date": "2022-05-07T16:21:40.000Z" - }, - "end": { - "$date": "2022-05-07T16:44:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "844c5f22-7690-402a-85ce-fbf0b7061702", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T17:24:08.000Z" - }, - "end": { - "$date": "2022-05-07T18:31:34.000Z" - }, - "events": [ - { - "uuid": "6c3b8f2a-f46e-4476-a611-5617e6362159", - "start": { - "$date": "2022-05-07T17:24:08.000Z" - }, - "end": { - "$date": "2022-05-07T18:28:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9e8f7942-ad26-4eb9-87ed-e4ae8eb330fd", - "start": { - "$date": "2022-05-07T18:28:08.000Z" - }, - "end": { - "$date": "2022-05-07T18:31:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c580ffa-b357-4b49-9192-6944c6243267", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-07T18:13:34.000Z" - }, - "end": { - "$date": "2022-05-07T18:49:24.000Z" - }, - "events": [ - { - "uuid": "f87abcba-51fe-4b75-bd94-3c0507df4a24", - "start": { - "$date": "2022-05-07T18:13:34.000Z" - }, - "end": { - "$date": "2022-05-07T18:49:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a4718b3d-b677-47cb-8108-b4aa19da9a7d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-07T18:50:17.000Z" - }, - "end": { - "$date": "2022-05-07T20:24:15.000Z" - }, - "events": [ - { - "uuid": "2d3c4ecb-0bfb-4de0-8849-33e62c02b4ac", - "start": { - "$date": "2022-05-07T18:50:17.000Z" - }, - "end": { - "$date": "2022-05-07T20:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5ccff48d-08f1-47bb-bee7-9a8e00933217", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-07T18:55:07.000Z" - }, - "end": { - "$date": "2022-05-07T19:02:30.000Z" - }, - "events": [ - { - "uuid": "75137c4b-4936-49ee-bee4-8df53616cf2f", - "start": { - "$date": "2022-05-07T18:55:07.000Z" - }, - "end": { - "$date": "2022-05-07T19:02:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd71f009-29aa-4bc5-90e6-798f3082c6b8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T18:59:07.000Z" - }, - "end": { - "$date": "2022-05-07T19:29:46.000Z" - }, - "events": [ - { - "uuid": "d88980da-c54c-49c3-b140-e50619950d79", - "start": { - "$date": "2022-05-07T18:59:07.000Z" - }, - "end": { - "$date": "2022-05-07T19:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "94ef4f92-70d7-4d75-b0db-84f368e68930", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-07T19:03:07.000Z" - }, - "end": { - "$date": "2022-05-07T21:14:40.000Z" - }, - "events": [ - { - "uuid": "80c3c28f-74c1-43f7-88b6-2b92cc55745b", - "start": { - "$date": "2022-05-07T19:03:07.000Z" - }, - "end": { - "$date": "2022-05-07T21:14:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "b19d802d-6b66-4024-a37c-49677c2bed90", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T19:03:37.000Z" - }, - "end": { - "$date": "2022-05-07T19:05:02.000Z" - }, - "events": [ - { - "uuid": "072d3def-fdef-496e-9aad-c9b9b0d9ea3d", - "start": { - "$date": "2022-05-07T19:03:37.000Z" - }, - "end": { - "$date": "2022-05-07T19:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "a26c92fb-175a-4ece-807c-0bed6e64127e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-07T19:24:21.000Z" - }, - "end": { - "$date": "2022-05-07T20:00:23.000Z" - }, - "events": [ - { - "uuid": "159a1fb8-a260-4d7c-b1e2-f85fa7b5d57f", - "start": { - "$date": "2022-05-07T19:24:21.000Z" - }, - "end": { - "$date": "2022-05-07T20:00:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "9fbeab98-f098-40cf-b120-c6fc0b9f4440", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-07T19:54:03.000Z" - }, - "end": { - "$date": "2022-05-07T20:51:54.000Z" - }, - "events": [ - { - "uuid": "face0b77-c886-488b-a767-fd42d1784bae", - "start": { - "$date": "2022-05-07T19:54:03.000Z" - }, - "end": { - "$date": "2022-05-07T20:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "5d7f5258-be14-430b-8ffa-5dcee9708bd8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-07T20:09:29.000Z" - }, - "end": { - "$date": "2022-05-07T20:24:20.000Z" - }, - "events": [ - { - "uuid": "93d53cc1-5eba-4cbf-b3ca-f6ca2e5ad1cc", - "start": { - "$date": "2022-05-07T20:09:29.000Z" - }, - "end": { - "$date": "2022-05-07T20:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "9dc5dff7-ea88-4026-bd06-b5d5249546f9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T20:18:21.000Z" - }, - "end": { - "$date": "2022-05-07T22:03:56.000Z" - }, - "events": [ - { - "uuid": "3d6d8be8-f3b3-4a8a-838d-cd38c6d8e95e", - "start": { - "$date": "2022-05-07T20:18:21.000Z" - }, - "end": { - "$date": "2022-05-07T21:26:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3b01ccb7-a84b-4500-833e-eac51409fb17", - "start": { - "$date": "2022-05-07T21:26:21.000Z" - }, - "end": { - "$date": "2022-05-07T22:03:56.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "196d2973-1360-4fd2-9353-7858c678f186", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-07T20:24:21.000Z" - }, - "end": { - "$date": "2022-05-07T21:01:58.000Z" - }, - "events": [ - { - "uuid": "ef58286c-6c2b-419e-a44a-c70d1632c654", - "start": { - "$date": "2022-05-07T20:24:21.000Z" - }, - "end": { - "$date": "2022-05-07T21:01:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "b5d13729-19f1-4aa8-a43e-9f5cd6ab301e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-07T20:44:48.000Z" - }, - "end": { - "$date": "2022-05-07T20:50:53.000Z" - }, - "events": [ - { - "uuid": "1f1f2241-9ffb-4c53-8374-177d121da637", - "start": { - "$date": "2022-05-07T20:44:48.000Z" - }, - "end": { - "$date": "2022-05-07T20:50:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ae4ff60c-3aa1-4f75-a118-8d7436556764", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-07T21:15:35.000Z" - }, - "end": { - "$date": "2022-05-08T06:45:56.000Z" - }, - "events": [ - { - "uuid": "5246c320-f04e-45a2-9d8c-4679491c39b2", - "start": { - "$date": "2022-05-07T21:15:35.000Z" - }, - "end": { - "$date": "2022-05-07T22:12:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a79b72c1-b2ac-4996-b1ad-8bc4a7eaa758", - "start": { - "$date": "2022-05-07T22:12:35.000Z" - }, - "end": { - "$date": "2022-05-07T22:16:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ce9407aa-1023-4251-a011-4ca7e3d1e98a", - "start": { - "$date": "2022-05-07T22:16:35.000Z" - }, - "end": { - "$date": "2022-05-07T22:27:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b20553d6-7ac2-4fc3-9cb2-fb20d66e62ac", - "start": { - "$date": "2022-05-07T22:27:35.000Z" - }, - "end": { - "$date": "2022-05-07T23:47:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4438b1f3-c461-43c4-90f2-31ba3089065d", - "start": { - "$date": "2022-05-07T23:47:35.000Z" - }, - "end": { - "$date": "2022-05-07T23:49:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a77d921-ef11-4bf1-9ab7-e1df75a028d8", - "start": { - "$date": "2022-05-07T23:49:35.000Z" - }, - "end": { - "$date": "2022-05-07T23:55:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3ec27464-6753-4380-bb4a-8c56c83fa2dd", - "start": { - "$date": "2022-05-07T23:55:35.000Z" - }, - "end": { - "$date": "2022-05-07T23:57:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6258757e-3474-4270-9b81-4381cbec8658", - "start": { - "$date": "2022-05-07T23:57:35.000Z" - }, - "end": { - "$date": "2022-05-08T00:35:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eb5600ef-5329-4239-a352-920face65afb", - "start": { - "$date": "2022-05-08T00:35:35.000Z" - }, - "end": { - "$date": "2022-05-08T00:38:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "67acb20a-6448-44b4-a06d-f6192e3c2489", - "start": { - "$date": "2022-05-08T00:38:35.000Z" - }, - "end": { - "$date": "2022-05-08T00:49:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3a45af2f-f54a-4b66-bb81-4756491c3313", - "start": { - "$date": "2022-05-08T00:49:35.000Z" - }, - "end": { - "$date": "2022-05-08T00:55:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6d2f96a3-0da2-46c3-ab3e-925c7f278534", - "start": { - "$date": "2022-05-08T00:55:35.000Z" - }, - "end": { - "$date": "2022-05-08T03:27:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "64d84550-95a7-494b-8a94-eabfd1bc7194", - "start": { - "$date": "2022-05-08T03:27:35.000Z" - }, - "end": { - "$date": "2022-05-08T03:37:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5115f6b1-fde1-44b6-926e-004aa2c83f92", - "start": { - "$date": "2022-05-08T03:37:35.000Z" - }, - "end": { - "$date": "2022-05-08T06:30:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "592e6b2d-d4c4-4900-ad29-f21800d034ec", - "start": { - "$date": "2022-05-08T06:30:35.000Z" - }, - "end": { - "$date": "2022-05-08T06:41:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e439970f-d735-46bf-a586-01c315847c79", - "start": { - "$date": "2022-05-08T06:41:35.000Z" - }, - "end": { - "$date": "2022-05-08T06:44:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "086299a5-e1c9-4e39-9a29-e69c8b2a09b0", - "start": { - "$date": "2022-05-08T06:44:35.000Z" - }, - "end": { - "$date": "2022-05-08T06:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "fc3d92ff-57af-44d1-805e-e01d5ada3a7e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T22:04:25.000Z" - }, - "end": { - "$date": "2022-05-07T22:27:52.000Z" - }, - "events": [ - { - "uuid": "09a9b810-e139-4b4a-85a5-5f2d79af7dd7", - "start": { - "$date": "2022-05-07T22:04:25.000Z" - }, - "end": { - "$date": "2022-05-07T22:27:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "3d46f9cd-b25e-426c-afcf-5fb30c019f2a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T22:28:32.000Z" - }, - "end": { - "$date": "2022-05-07T22:32:17.000Z" - }, - "events": [ - { - "uuid": "c0739f3c-5fdb-47b4-bdba-5c7275f0b857", - "start": { - "$date": "2022-05-07T22:28:32.000Z" - }, - "end": { - "$date": "2022-05-07T22:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "2b8248b8-24fb-44da-b7a3-0938e4af8c57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-07T22:35:03.000Z" - }, - "end": { - "$date": "2022-05-07T22:44:38.000Z" - }, - "events": [ - { - "uuid": "d3ef5a2d-b6b7-4fc9-b2d3-84c7a1c578eb", - "start": { - "$date": "2022-05-07T22:35:03.000Z" - }, - "end": { - "$date": "2022-05-07T22:44:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "84a9713a-e718-4d15-8c0e-fbb2d3d972b6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-08T00:10:08.000Z" - }, - "end": { - "$date": "2022-05-08T00:41:52.000Z" - }, - "events": [ - { - "uuid": "50ce7e31-699a-48c5-a738-a33d079b374b", - "start": { - "$date": "2022-05-08T00:10:08.000Z" - }, - "end": { - "$date": "2022-05-08T00:31:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4500933a-0aa4-4bd5-a01e-e818a3ebd375", - "start": { - "$date": "2022-05-08T00:31:08.000Z" - }, - "end": { - "$date": "2022-05-08T00:41:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68b73f46-d502-4407-a48c-02b5efd8366c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-08T01:15:50.000Z" - }, - "end": { - "$date": "2022-05-08T01:52:26.000Z" - }, - "events": [ - { - "uuid": "fc075bf4-09f3-4135-9a31-a64c2bf65905", - "start": { - "$date": "2022-05-08T01:15:50.000Z" - }, - "end": { - "$date": "2022-05-08T01:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "e2a2ea46-e38c-4db6-b600-97996c727d68", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-08T02:28:24.000Z" - }, - "end": { - "$date": "2022-05-08T03:02:14.000Z" - }, - "events": [ - { - "uuid": "2ddee48a-b929-438f-9128-622563568b7d", - "start": { - "$date": "2022-05-08T02:28:24.000Z" - }, - "end": { - "$date": "2022-05-08T03:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ddac3d54-ce83-4815-9a47-6ee72b16c927", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-08T02:40:06.000Z" - }, - "end": { - "$date": "2022-05-08T04:14:09.000Z" - }, - "events": [ - { - "uuid": "80bcf162-4ff6-48f3-9916-51cda7d24923", - "start": { - "$date": "2022-05-08T02:40:06.000Z" - }, - "end": { - "$date": "2022-05-08T04:14:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5e965665-3115-4053-98fd-f6015b6a957f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-08T02:40:09.000Z" - }, - "end": { - "$date": "2022-05-08T05:04:11.000Z" - }, - "events": [ - { - "uuid": "04e622b6-e95b-43ca-a119-dfe811f126c1", - "start": { - "$date": "2022-05-08T02:40:09.000Z" - }, - "end": { - "$date": "2022-05-08T05:04:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c1a295d4-dc39-4ad5-b1bf-4ff41b8057e7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-08T03:02:55.000Z" - }, - "end": { - "$date": "2022-05-08T06:17:25.000Z" - }, - "events": [ - { - "uuid": "f80c4423-fed2-4e7b-a522-efd7bf2dda47", - "start": { - "$date": "2022-05-08T03:02:55.000Z" - }, - "end": { - "$date": "2022-05-08T06:17:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b79433e4-6829-4d33-bddc-7d8e5f57ac9c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-08T03:27:36.000Z" - }, - "end": { - "$date": "2022-05-08T05:04:09.000Z" - }, - "events": [ - { - "uuid": "7033b4bf-a913-4fd4-be24-71bcfea6f623", - "start": { - "$date": "2022-05-08T03:27:36.000Z" - }, - "end": { - "$date": "2022-05-08T05:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b91238ed-4574-4e3c-81b2-12ee8432060b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-08T04:15:05.000Z" - }, - "end": { - "$date": "2022-05-08T05:04:17.000Z" - }, - "events": [ - { - "uuid": "dbf7d8cf-a531-4caf-abe1-6cdac85acd55", - "start": { - "$date": "2022-05-08T04:15:05.000Z" - }, - "end": { - "$date": "2022-05-08T05:04:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "2a141eeb-e395-4b3a-a464-892d9b700d95", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-08T06:18:20.000Z" - }, - "end": { - "$date": "2022-05-08T06:40:20.000Z" - }, - "events": [ - { - "uuid": "2b54b0d8-87b6-4715-9e8c-bc94d634df85", - "start": { - "$date": "2022-05-08T06:18:20.000Z" - }, - "end": { - "$date": "2022-05-08T06:40:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "afb59356-e45f-493a-bee3-019fd498f500", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-08T14:56:17.000Z" - }, - "end": { - "$date": "2022-05-08T16:21:59.000Z" - }, - "events": [ - { - "uuid": "c40ee1b3-18ac-4d70-aedf-91d48ca1dedf", - "start": { - "$date": "2022-05-08T14:56:17.000Z" - }, - "end": { - "$date": "2022-05-08T16:21:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "b83fcd75-08a3-4e0c-81c2-d9a21bc8c824", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-08T16:25:02.000Z" - }, - "end": { - "$date": "2022-05-08T16:27:23.000Z" - }, - "events": [ - { - "uuid": "9b8db353-eb36-4162-a6a4-bfc7ea06b8dd", - "start": { - "$date": "2022-05-08T16:25:02.000Z" - }, - "end": { - "$date": "2022-05-08T16:27:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "52d7ed95-429c-4a33-a783-04a8664bd242", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-08T16:27:57.000Z" - }, - "end": { - "$date": "2022-05-08T16:38:08.000Z" - }, - "events": [ - { - "uuid": "a477fd9e-9253-4f2b-b843-5f6d3a0e6889", - "start": { - "$date": "2022-05-08T16:27:57.000Z" - }, - "end": { - "$date": "2022-05-08T16:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "10bd2994-917f-4466-b537-eca73f5e9dd2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-08T16:35:06.000Z" - }, - "end": { - "$date": "2022-05-08T16:37:01.000Z" - }, - "events": [ - { - "uuid": "9b7c388a-2f45-42b0-bc47-27b0d8c522f6", - "start": { - "$date": "2022-05-08T16:35:06.000Z" - }, - "end": { - "$date": "2022-05-08T16:37:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "2cb4bfe0-4602-4b48-977c-a489edb464a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-08T16:39:37.000Z" - }, - "end": { - "$date": "2022-05-08T17:23:33.000Z" - }, - "events": [ - { - "uuid": "b75dd519-fb59-4c20-b0fd-228b84354dcc", - "start": { - "$date": "2022-05-08T16:39:37.000Z" - }, - "end": { - "$date": "2022-05-08T17:23:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "c1e8fff2-b090-47a7-8143-826ceaf30999", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-08T16:39:43.000Z" - }, - "end": { - "$date": "2022-05-08T17:26:19.000Z" - }, - "events": [ - { - "uuid": "68e717f7-2962-45cb-87c1-f265cc45cfae", - "start": { - "$date": "2022-05-08T16:39:43.000Z" - }, - "end": { - "$date": "2022-05-08T17:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "106fa82a-ab8b-432b-9718-f0061b04319e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-08T16:45:22.000Z" - }, - "end": { - "$date": "2022-05-08T17:19:11.000Z" - }, - "events": [ - { - "uuid": "381faa82-a3ad-4274-b300-c37007d3f308", - "start": { - "$date": "2022-05-08T16:45:22.000Z" - }, - "end": { - "$date": "2022-05-08T17:19:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "a8e6cfe1-bb2f-42b9-ab8d-61c6cd99db78", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-09T02:43:30.000Z" - }, - "end": { - "$date": "2022-05-09T03:01:59.000Z" - }, - "events": [ - { - "uuid": "d8b227ea-2764-4cef-9c74-c74ba75b01c9", - "start": { - "$date": "2022-05-09T02:43:30.000Z" - }, - "end": { - "$date": "2022-05-09T03:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "72260e54-79b5-4096-a99b-a8b6da052859", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-09T03:02:35.000Z" - }, - "end": { - "$date": "2022-05-09T05:22:18.000Z" - }, - "events": [ - { - "uuid": "681f5aea-af60-437f-af06-84be5004aba6", - "start": { - "$date": "2022-05-09T03:02:35.000Z" - }, - "end": { - "$date": "2022-05-09T05:22:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "d504e3e5-feca-406b-bcfe-977d3f8a8a0e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-09T03:22:47.000Z" - }, - "end": { - "$date": "2022-05-09T04:05:48.000Z" - }, - "events": [ - { - "uuid": "6a6a4778-565f-400e-9bc2-b017a92300ad", - "start": { - "$date": "2022-05-09T03:22:47.000Z" - }, - "end": { - "$date": "2022-05-09T04:05:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "57efc54b-a6d4-4230-95c2-385238bbd203", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-09T03:43:32.000Z" - }, - "end": { - "$date": "2022-05-09T09:26:59.000Z" - }, - "events": [ - { - "uuid": "6bc87b1f-f255-46ed-89a5-9cbcf28b6f97", - "start": { - "$date": "2022-05-09T03:43:32.000Z" - }, - "end": { - "$date": "2022-05-09T09:26:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "29763274-0f55-449d-aeeb-5bff30443519", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-09T04:06:11.000Z" - }, - "end": { - "$date": "2022-05-09T04:17:55.000Z" - }, - "events": [ - { - "uuid": "ba5954a7-fc02-4bb7-9996-490b7691738a", - "start": { - "$date": "2022-05-09T04:06:11.000Z" - }, - "end": { - "$date": "2022-05-09T04:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "15c6dcfe-90d6-4f9c-ad32-8aca98948632", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-09T04:19:59.000Z" - }, - "end": { - "$date": "2022-05-09T05:01:55.000Z" - }, - "events": [ - { - "uuid": "88318ded-b6db-42fd-8834-03e87ae4471a", - "start": { - "$date": "2022-05-09T04:19:59.000Z" - }, - "end": { - "$date": "2022-05-09T05:01:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "7c94bfeb-c948-479f-b4b6-817855806bea", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-09T05:25:59.000Z" - }, - "end": { - "$date": "2022-05-09T06:21:16.000Z" - }, - "events": [ - { - "uuid": "7fdf4a2e-30cb-41c1-a342-2893433f9801", - "start": { - "$date": "2022-05-09T05:25:59.000Z" - }, - "end": { - "$date": "2022-05-09T06:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dc16bea3-d226-4cc2-a706-fdabd7f19565", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-09T15:11:04.000Z" - }, - "end": { - "$date": "2022-05-09T16:36:59.000Z" - }, - "events": [ - { - "uuid": "bd824f33-241b-4a35-9106-57787a474b01", - "start": { - "$date": "2022-05-09T15:11:04.000Z" - }, - "end": { - "$date": "2022-05-09T16:36:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6285845a-82d0-48f1-8048-34e4355aede9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-09T15:18:23.000Z" - }, - "end": { - "$date": "2022-05-09T16:37:19.000Z" - }, - "events": [ - { - "uuid": "03c5227d-78f1-494b-92d0-041157eea498", - "start": { - "$date": "2022-05-09T15:18:23.000Z" - }, - "end": { - "$date": "2022-05-09T16:34:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "147723d3-3baf-4e81-90a5-b16495ee61b9", - "start": { - "$date": "2022-05-09T16:34:23.000Z" - }, - "end": { - "$date": "2022-05-09T16:37:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9f5e33db-4a5b-430e-aeef-7948b9ccecb8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-09T16:50:05.000Z" - }, - "end": { - "$date": "2022-05-09T17:18:07.000Z" - }, - "events": [ - { - "uuid": "ca86eedd-bb91-477b-a6ed-03c2745e4633", - "start": { - "$date": "2022-05-09T16:50:05.000Z" - }, - "end": { - "$date": "2022-05-09T17:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "40d35e72-1e9d-462d-917f-2c5d70798dcc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-09T17:18:48.000Z" - }, - "end": { - "$date": "2022-05-09T19:23:08.000Z" - }, - "events": [ - { - "uuid": "858da6e6-89c0-41a6-8880-2a8dd84e85da", - "start": { - "$date": "2022-05-09T17:18:48.000Z" - }, - "end": { - "$date": "2022-05-09T19:12:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "afc1c474-962e-49a4-a77d-916c6154d198", - "start": { - "$date": "2022-05-09T19:12:48.000Z" - }, - "end": { - "$date": "2022-05-09T19:17:48.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5486a770-bc65-4bb4-a408-e75c0e70176d", - "start": { - "$date": "2022-05-09T19:17:48.000Z" - }, - "end": { - "$date": "2022-05-09T19:23:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9539a950-d7be-4010-aa45-d914784f9bae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-09T17:20:27.000Z" - }, - "end": { - "$date": "2022-05-09T17:44:49.000Z" - }, - "events": [ - { - "uuid": "7a55d3ac-0ed5-4910-aa11-2100dc111fb4", - "start": { - "$date": "2022-05-09T17:20:27.000Z" - }, - "end": { - "$date": "2022-05-09T17:38:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e1f1c85e-5cb9-4ded-8bb4-1e1b639ba9ca", - "start": { - "$date": "2022-05-09T17:38:27.000Z" - }, - "end": { - "$date": "2022-05-09T17:44:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fd709669-121f-40da-9b2e-34a549608bf0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-09T18:37:48.000Z" - }, - "end": { - "$date": "2022-05-09T18:40:50.000Z" - }, - "events": [ - { - "uuid": "4d01a559-6263-4d55-908b-62d52a661eb7", - "start": { - "$date": "2022-05-09T18:37:48.000Z" - }, - "end": { - "$date": "2022-05-09T18:40:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c181f3d6-be09-45b5-8fec-e5f1e91a467f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-09T18:43:00.000Z" - }, - "end": { - "$date": "2022-05-09T18:43:04.000Z" - }, - "events": [ - { - "uuid": "50556355-2be2-4492-bad9-f71a860a5caa", - "start": { - "$date": "2022-05-09T18:43:00.000Z" - }, - "end": { - "$date": "2022-05-09T18:43:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fceeaa5-bcfc-4a3f-b6cc-8bbe5983926c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-09T18:43:07.000Z" - }, - "end": { - "$date": "2022-05-09T18:44:54.000Z" - }, - "events": [ - { - "uuid": "7e861ffa-c3dd-44ed-8a99-f7bccccf53cb", - "start": { - "$date": "2022-05-09T18:43:07.000Z" - }, - "end": { - "$date": "2022-05-09T18:44:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9aa859c-5f23-4bc2-ad30-c83f961c11b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-09T18:48:26.000Z" - }, - "end": { - "$date": "2022-05-09T18:59:45.000Z" - }, - "events": [ - { - "uuid": "6daeb236-cdcd-4d73-9878-8c83d5a9e556", - "start": { - "$date": "2022-05-09T18:48:26.000Z" - }, - "end": { - "$date": "2022-05-09T18:59:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "81f060b3-a05c-4365-a933-91ddb2e823cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-09T19:05:01.000Z" - }, - "end": { - "$date": "2022-05-09T19:43:13.000Z" - }, - "events": [ - { - "uuid": "913953ff-9cd3-4448-b161-2774dfedf7b9", - "start": { - "$date": "2022-05-09T19:05:01.000Z" - }, - "end": { - "$date": "2022-05-09T19:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7b3a22b-4d45-434a-8a6d-6a6962c13857", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-09T21:30:41.000Z" - }, - "end": { - "$date": "2022-05-09T22:55:24.000Z" - }, - "events": [ - { - "uuid": "2b775987-c1b2-490d-ae77-683ea4ec6ab9", - "start": { - "$date": "2022-05-09T21:30:41.000Z" - }, - "end": { - "$date": "2022-05-09T22:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "75a429d2-93f4-40ef-8e76-443b8d9ad423", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-10T00:21:35.000Z" - }, - "end": { - "$date": "2022-05-10T00:23:41.000Z" - }, - "events": [ - { - "uuid": "aef508a1-c9cc-4067-8b0a-4daf0c0597d4", - "start": { - "$date": "2022-05-10T00:21:35.000Z" - }, - "end": { - "$date": "2022-05-10T00:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "198ee351-25af-434f-be9c-ae5892ddd72a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-10T00:41:19.000Z" - }, - "end": { - "$date": "2022-05-10T01:35:42.000Z" - }, - "events": [ - { - "uuid": "bea15ee7-07f9-485c-a838-c69c7eab0dd7", - "start": { - "$date": "2022-05-10T00:41:19.000Z" - }, - "end": { - "$date": "2022-05-10T01:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9ce0adcd-a4b4-4e3c-bc97-85a099d5b90d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-10T00:55:37.000Z" - }, - "end": { - "$date": "2022-05-10T04:02:02.000Z" - }, - "events": [ - { - "uuid": "96fd66de-be6d-444e-ad12-eae7ceace3dc", - "start": { - "$date": "2022-05-10T00:55:37.000Z" - }, - "end": { - "$date": "2022-05-10T04:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "cd58f12d-69a3-4c1e-a404-223d2e6afe22", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-10T01:37:27.000Z" - }, - "end": { - "$date": "2022-05-10T02:39:08.000Z" - }, - "events": [ - { - "uuid": "165611d6-f59e-4e67-8a27-77b5d8e63593", - "start": { - "$date": "2022-05-10T01:37:27.000Z" - }, - "end": { - "$date": "2022-05-10T02:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "581ab147-7e3c-47dc-b2fb-945a11fb3c4b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-10T02:39:58.000Z" - }, - "end": { - "$date": "2022-05-10T04:10:34.000Z" - }, - "events": [ - { - "uuid": "1df7695b-62b4-4fea-a90c-20fcff30dc1a", - "start": { - "$date": "2022-05-10T02:39:58.000Z" - }, - "end": { - "$date": "2022-05-10T04:10:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "f52eaaad-d70a-472e-88c2-775cd748dbdc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-10T03:57:42.000Z" - }, - "end": { - "$date": "2022-05-10T04:04:13.000Z" - }, - "events": [ - { - "uuid": "267244c7-e7d3-414c-8858-38a33fe2c359", - "start": { - "$date": "2022-05-10T03:57:42.000Z" - }, - "end": { - "$date": "2022-05-10T04:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e3458ef0-c983-4aa8-87ec-79445ff11fe8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-10T04:05:50.000Z" - }, - "end": { - "$date": "2022-05-10T04:46:58.000Z" - }, - "events": [ - { - "uuid": "c5c15e21-1435-4aac-a355-a54971c33df8", - "start": { - "$date": "2022-05-10T04:05:50.000Z" - }, - "end": { - "$date": "2022-05-10T04:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e8238a05-b4c7-4a1d-b138-94629b2a4b15", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-10T04:34:39.000Z" - }, - "end": { - "$date": "2022-05-10T05:06:55.000Z" - }, - "events": [ - { - "uuid": "e6272fbb-1eab-40c7-9412-dc0b676a4fd4", - "start": { - "$date": "2022-05-10T04:34:39.000Z" - }, - "end": { - "$date": "2022-05-10T05:06:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "02173651-bd02-4d52-9c9f-ca8f28685b26", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-10T05:09:15.000Z" - }, - "end": { - "$date": "2022-05-10T05:39:32.000Z" - }, - "events": [ - { - "uuid": "6f125c3c-b10e-44df-8713-0e9d9ed7524a", - "start": { - "$date": "2022-05-10T05:09:15.000Z" - }, - "end": { - "$date": "2022-05-10T05:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "473b1909-277b-47be-93ca-ee0bd1d98517", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-10T05:40:48.000Z" - }, - "end": { - "$date": "2022-05-10T06:16:20.000Z" - }, - "events": [ - { - "uuid": "125916e7-7f2c-4ceb-ab18-d3c587a98d2d", - "start": { - "$date": "2022-05-10T05:40:48.000Z" - }, - "end": { - "$date": "2022-05-10T06:16:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "55f9598a-7fbb-4159-b820-af84957ed4d1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-10T14:49:36.000Z" - }, - "end": { - "$date": "2022-05-10T16:05:47.000Z" - }, - "events": [ - { - "uuid": "ee1d4f41-bedd-48cf-8364-2167aa04ab13", - "start": { - "$date": "2022-05-10T14:49:36.000Z" - }, - "end": { - "$date": "2022-05-10T16:05:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "845477e2-321e-48f2-8377-c55c66337379", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-10T16:33:50.000Z" - }, - "end": { - "$date": "2022-05-10T17:16:29.000Z" - }, - "events": [ - { - "uuid": "b919f69a-ef7b-485f-b455-b94c41d0a98c", - "start": { - "$date": "2022-05-10T16:33:50.000Z" - }, - "end": { - "$date": "2022-05-10T17:16:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "20e0f718-e21b-4543-adfd-774b465fc622", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-10T17:17:50.000Z" - }, - "end": { - "$date": "2022-05-10T17:19:20.000Z" - }, - "events": [ - { - "uuid": "eb7851df-34dd-40dc-8c62-226c8f9ed0b2", - "start": { - "$date": "2022-05-10T17:17:50.000Z" - }, - "end": { - "$date": "2022-05-10T17:19:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e83f006b-2028-4b82-ba26-8c7eb88cf88c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-10T17:25:05.000Z" - }, - "end": { - "$date": "2022-05-10T17:32:55.000Z" - }, - "events": [ - { - "uuid": "76dd6e94-8164-4775-87db-a569c8cc9325", - "start": { - "$date": "2022-05-10T17:25:05.000Z" - }, - "end": { - "$date": "2022-05-10T17:32:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "e4ee063f-1a2b-4e6b-ab7d-47585af6a8ce", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-10T18:23:26.000Z" - }, - "end": { - "$date": "2022-05-10T18:40:36.000Z" - }, - "events": [ - { - "uuid": "a94353eb-8274-4f0e-ab08-becd229f9139", - "start": { - "$date": "2022-05-10T18:23:26.000Z" - }, - "end": { - "$date": "2022-05-10T18:40:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "566a3bfb-dac8-4573-9a1f-3d3226fb1dbc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-10T22:24:19.000Z" - }, - "end": { - "$date": "2022-05-10T22:59:07.000Z" - }, - "events": [ - { - "uuid": "d959bb0a-b90b-405b-a858-f88a72771230", - "start": { - "$date": "2022-05-10T22:24:19.000Z" - }, - "end": { - "$date": "2022-05-10T22:59:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a6000b85-6e01-43ad-9ed4-90c7f874292c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-10T23:24:58.000Z" - }, - "end": { - "$date": "2022-05-10T23:27:01.000Z" - }, - "events": [ - { - "uuid": "5b4e67b4-97f3-467d-ae32-bd13192ffb5f", - "start": { - "$date": "2022-05-10T23:24:58.000Z" - }, - "end": { - "$date": "2022-05-10T23:27:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b867c2b2-5df2-4901-8474-c7a197a77e84", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-11T00:35:27.000Z" - }, - "end": { - "$date": "2022-05-11T02:37:06.000Z" - }, - "events": [ - { - "uuid": "f0ec5aa4-8849-400f-8615-d7b8ed6958cf", - "start": { - "$date": "2022-05-11T00:35:27.000Z" - }, - "end": { - "$date": "2022-05-11T02:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "339a9c00-8aa5-49aa-b028-d345bcd6fdc4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-11T02:37:26.000Z" - }, - "end": { - "$date": "2022-05-11T02:39:31.000Z" - }, - "events": [ - { - "uuid": "10d9c872-eade-46d8-a544-e3fe94be21a6", - "start": { - "$date": "2022-05-11T02:37:26.000Z" - }, - "end": { - "$date": "2022-05-11T02:39:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "56dc1240-9394-49e2-9366-67209dd72f33", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-11T02:40:01.000Z" - }, - "end": { - "$date": "2022-05-11T02:41:12.000Z" - }, - "events": [ - { - "uuid": "e73bf5fe-05cf-4f9b-bda0-b15f38093204", - "start": { - "$date": "2022-05-11T02:40:01.000Z" - }, - "end": { - "$date": "2022-05-11T02:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "1806624e-5872-49e3-8430-546d17aef3c9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-11T02:42:42.000Z" - }, - "end": { - "$date": "2022-05-11T03:03:52.000Z" - }, - "events": [ - { - "uuid": "83ab70e8-1c5f-46d8-8a1a-6615f9c61061", - "start": { - "$date": "2022-05-11T02:42:42.000Z" - }, - "end": { - "$date": "2022-05-11T03:03:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0fb5b797-3d3e-41f6-a77d-92d38574d99d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-11T03:09:08.000Z" - }, - "end": { - "$date": "2022-05-11T05:08:37.000Z" - }, - "events": [ - { - "uuid": "19b788ba-9d63-4f06-a951-6a0ef9583bb3", - "start": { - "$date": "2022-05-11T03:09:08.000Z" - }, - "end": { - "$date": "2022-05-11T05:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0ef7c3b0-aa18-4e56-b30c-9aa72828e25a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-11T06:24:09.000Z" - }, - "end": { - "$date": "2022-05-11T07:38:31.000Z" - }, - "events": [ - { - "uuid": "b95b1680-cdbb-416e-827b-0f6dc273b7d3", - "start": { - "$date": "2022-05-11T06:24:09.000Z" - }, - "end": { - "$date": "2022-05-11T07:38:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e0e0dcc9-1d07-4131-8afb-0aa5927257ee", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-11T06:25:43.000Z" - }, - "end": { - "$date": "2022-05-11T07:38:13.000Z" - }, - "events": [ - { - "uuid": "34774757-5a09-4de4-b398-20ad19c77c41", - "start": { - "$date": "2022-05-11T06:25:43.000Z" - }, - "end": { - "$date": "2022-05-11T07:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "97136a95-7016-4fac-abcc-d690a269ec5f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-11T13:24:09.000Z" - }, - "end": { - "$date": "2022-05-11T15:40:02.000Z" - }, - "events": [ - { - "uuid": "34f8bf9f-129b-4ec7-b2dd-1ba692977b09", - "start": { - "$date": "2022-05-11T13:24:09.000Z" - }, - "end": { - "$date": "2022-05-11T15:40:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "50b2b6cf-bed9-4aae-9495-adfef237dec1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-11T15:47:19.000Z" - }, - "end": { - "$date": "2022-05-11T16:45:58.000Z" - }, - "events": [ - { - "uuid": "9d0855ea-ed81-43dc-874c-f147128641a5", - "start": { - "$date": "2022-05-11T15:47:19.000Z" - }, - "end": { - "$date": "2022-05-11T16:37:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "aa807943-6d0a-428e-8a9c-e1b0a35e5a44", - "start": { - "$date": "2022-05-11T16:37:19.000Z" - }, - "end": { - "$date": "2022-05-11T16:38:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa12bfcf-8689-4c93-bdd4-1b45736ee021", - "start": { - "$date": "2022-05-11T16:38:19.000Z" - }, - "end": { - "$date": "2022-05-11T16:45:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3fa01222-c19f-4677-851e-ef7ca697049a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-11T16:46:13.000Z" - }, - "end": { - "$date": "2022-05-11T17:31:25.000Z" - }, - "events": [ - { - "uuid": "44a74e76-f3d3-48c9-bb40-cb7477a5e969", - "start": { - "$date": "2022-05-11T16:46:13.000Z" - }, - "end": { - "$date": "2022-05-11T17:31:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "442b127c-20ce-4057-90c4-3af950b160a0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-11T17:32:25.000Z" - }, - "end": { - "$date": "2022-05-11T17:43:26.000Z" - }, - "events": [ - { - "uuid": "a1d5aa40-388d-410d-ba24-bd35e1c06747", - "start": { - "$date": "2022-05-11T17:32:25.000Z" - }, - "end": { - "$date": "2022-05-11T17:43:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d0887e89-1d57-49ae-961e-4846a3e8fa04", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-11T18:37:06.000Z" - }, - "end": { - "$date": "2022-05-11T18:40:57.000Z" - }, - "events": [ - { - "uuid": "6927c0b1-4862-4f01-a6de-745bc2b7fb4f", - "start": { - "$date": "2022-05-11T18:37:06.000Z" - }, - "end": { - "$date": "2022-05-11T18:40:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f60e39a9-71e9-42a0-a6c9-e0e4d463bcf6", - "uuid": "e24e830c-1efe-4a0c-bd8d-244cec064aff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-11T23:52:29.000Z" - }, - "end": { - "$date": "2022-05-12T02:46:12.000Z" - }, - "events": [ - { - "uuid": "7c86dfff-00a3-43e9-8b89-83b1ca476780", - "start": { - "$date": "2022-05-11T23:52:29.000Z" - }, - "end": { - "$date": "2022-05-12T02:46:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "77cb5919-fc7e-404e-8713-882dd4b1af64", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-12T00:31:58.000Z" - }, - "end": { - "$date": "2022-05-12T00:36:53.000Z" - }, - "events": [ - { - "uuid": "c366b6ef-ec29-490e-af8a-7e503f18d81e", - "start": { - "$date": "2022-05-12T00:31:58.000Z" - }, - "end": { - "$date": "2022-05-12T00:36:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "024837d0-4c34-457b-a557-e24d11a0ecd2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-12T01:10:34.000Z" - }, - "end": { - "$date": "2022-05-12T03:01:25.000Z" - }, - "events": [ - { - "uuid": "4bcee286-0d50-4e91-acdf-080af4905d95", - "start": { - "$date": "2022-05-12T01:10:34.000Z" - }, - "end": { - "$date": "2022-05-12T02:25:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb2372da-e98d-41ed-9e16-f05e5089b7f1", - "start": { - "$date": "2022-05-12T02:25:34.000Z" - }, - "end": { - "$date": "2022-05-12T02:45:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc0456cc-5d76-4eb8-b48a-4a9e446ef9aa", - "start": { - "$date": "2022-05-12T02:45:34.000Z" - }, - "end": { - "$date": "2022-05-12T03:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "10c0034c-6fd2-4f34-863b-ba6dccd7fb3e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-12T02:55:25.000Z" - }, - "end": { - "$date": "2022-05-12T04:10:07.000Z" - }, - "events": [ - { - "uuid": "36b458c4-91b4-4be5-ac33-15592a3209e8", - "start": { - "$date": "2022-05-12T02:55:25.000Z" - }, - "end": { - "$date": "2022-05-12T04:10:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "cb552e04-cb68-49eb-b06f-d040c344b705", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-12T03:05:50.000Z" - }, - "end": { - "$date": "2022-05-12T03:34:16.000Z" - }, - "events": [ - { - "uuid": "220e870a-30f6-4db4-b5b8-a13ec0e58b98", - "start": { - "$date": "2022-05-12T03:05:50.000Z" - }, - "end": { - "$date": "2022-05-12T03:34:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e64ae686-5acf-48e2-af52-2706738a1948", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-12T03:35:06.000Z" - }, - "end": { - "$date": "2022-05-12T05:58:50.000Z" - }, - "events": [ - { - "uuid": "9abafeba-5774-4511-9332-0cf0c166736a", - "start": { - "$date": "2022-05-12T03:35:06.000Z" - }, - "end": { - "$date": "2022-05-12T05:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1aee125a-235f-4f59-91d1-780e8339e9b6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-12T04:57:35.000Z" - }, - "end": { - "$date": "2022-05-12T05:08:28.000Z" - }, - "events": [ - { - "uuid": "cb0f7270-0081-4e95-ad21-e3dae5ac31e5", - "start": { - "$date": "2022-05-12T04:57:35.000Z" - }, - "end": { - "$date": "2022-05-12T05:08:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "66096c5c-faa0-423b-8111-2bfebb91385f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-12T05:08:43.000Z" - }, - "end": { - "$date": "2022-05-12T05:37:42.000Z" - }, - "events": [ - { - "uuid": "238f6fb9-095e-40ed-9e3c-f7d216e191a2", - "start": { - "$date": "2022-05-12T05:08:43.000Z" - }, - "end": { - "$date": "2022-05-12T05:37:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f1cc85dc-cf5b-4273-9ecd-29f54e89f953", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-12T05:14:47.000Z" - }, - "end": { - "$date": "2022-05-12T07:30:47.000Z" - }, - "events": [ - { - "uuid": "a5f324f8-22f7-4a66-a1ca-a8f8466b93c5", - "start": { - "$date": "2022-05-12T05:14:47.000Z" - }, - "end": { - "$date": "2022-05-12T07:30:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "37cf25fa-5d92-4eb8-bfea-35ebbfc2814f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-12T05:15:30.000Z" - }, - "end": { - "$date": "2022-05-12T07:30:46.000Z" - }, - "events": [ - { - "uuid": "2f964b75-2930-40e8-be4a-6c6890d9d58d", - "start": { - "$date": "2022-05-12T05:15:30.000Z" - }, - "end": { - "$date": "2022-05-12T07:30:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "765de535-2a88-4958-824b-b46ced5e29ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-12T05:19:27.000Z" - }, - "end": { - "$date": "2022-05-12T07:34:28.000Z" - }, - "events": [ - { - "uuid": "8d698621-a96c-428b-b9ab-41ced3d7b5b3", - "start": { - "$date": "2022-05-12T05:19:27.000Z" - }, - "end": { - "$date": "2022-05-12T07:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "519b8177-46a5-42b5-bf7c-8663a2a4904c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-12T06:13:04.000Z" - }, - "end": { - "$date": "2022-05-12T06:30:17.000Z" - }, - "events": [ - { - "uuid": "dd3c8fca-81d7-431a-827f-fc71446defe3", - "start": { - "$date": "2022-05-12T06:13:04.000Z" - }, - "end": { - "$date": "2022-05-12T06:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "7a6337bd-fdf2-4ff7-a435-1280fb948d2b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T14:27:30.000Z" - }, - "end": { - "$date": "2022-05-12T14:47:01.000Z" - }, - "events": [ - { - "uuid": "a5ef0732-cde3-4426-a10b-fd73a5fb5c7a", - "start": { - "$date": "2022-05-12T14:27:30.000Z" - }, - "end": { - "$date": "2022-05-12T14:47:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "988295a9-0e06-4fa4-b0d9-a9be027e9cd6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T14:47:51.000Z" - }, - "end": { - "$date": "2022-05-12T15:22:09.000Z" - }, - "events": [ - { - "uuid": "63f9adc0-3cb9-4255-bf56-7c1677c31370", - "start": { - "$date": "2022-05-12T14:47:51.000Z" - }, - "end": { - "$date": "2022-05-12T15:22:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "73289126-2f60-49a9-816c-0cd7d77edbc0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T15:22:24.000Z" - }, - "end": { - "$date": "2022-05-12T16:15:56.000Z" - }, - "events": [ - { - "uuid": "2d1fb152-0189-46bb-b0e0-36b76aced38c", - "start": { - "$date": "2022-05-12T15:22:24.000Z" - }, - "end": { - "$date": "2022-05-12T16:15:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b540ad84-9ef8-4508-8af9-ea6312b0e060", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T16:16:21.000Z" - }, - "end": { - "$date": "2022-05-12T16:52:38.000Z" - }, - "events": [ - { - "uuid": "f9ad9a7f-d054-4731-a038-81b3d59bdf6a", - "start": { - "$date": "2022-05-12T16:16:21.000Z" - }, - "end": { - "$date": "2022-05-12T16:52:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4f55bd6-54cb-48b2-b8e5-bcabcc69a4da", - "uuid": "a0a1585c-9265-4ee7-89de-74c36e16e2b3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T17:05:44.000Z" - }, - "end": { - "$date": "2022-05-12T17:12:54.000Z" - }, - "events": [ - { - "uuid": "8fba7b8f-3989-46c4-ac4d-44e8662fd32a", - "start": { - "$date": "2022-05-12T17:05:44.000Z" - }, - "end": { - "$date": "2022-05-12T17:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f68cdff0-f1ac-4c3c-b583-311a13b10fba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T17:13:54.000Z" - }, - "end": { - "$date": "2022-05-12T17:31:35.000Z" - }, - "events": [ - { - "uuid": "1e644971-f06d-4f22-ba12-834091c84bc4", - "start": { - "$date": "2022-05-12T17:13:54.000Z" - }, - "end": { - "$date": "2022-05-12T17:31:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cb396e8b-3f45-492a-a3cb-8e7fe03f2b02", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-12T17:31:55.000Z" - }, - "end": { - "$date": "2022-05-12T18:02:57.000Z" - }, - "events": [ - { - "uuid": "d169bfbb-1731-4f62-a091-94ef97180865", - "start": { - "$date": "2022-05-12T17:31:55.000Z" - }, - "end": { - "$date": "2022-05-12T18:02:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e0e3fc94-5bae-4db6-98bc-b9f1a35ab107", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-12T22:05:08.000Z" - }, - "end": { - "$date": "2022-05-12T22:53:29.000Z" - }, - "events": [ - { - "uuid": "1a499410-b4b5-4ed1-926d-7a7c0c58c179", - "start": { - "$date": "2022-05-12T22:05:08.000Z" - }, - "end": { - "$date": "2022-05-12T22:53:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e7edf65e-9817-467b-aceb-3fc7542091e9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-12T22:26:37.000Z" - }, - "end": { - "$date": "2022-05-12T22:50:48.000Z" - }, - "events": [ - { - "uuid": "50bbdb77-0d80-47af-92e6-4cb63c86ebd6", - "start": { - "$date": "2022-05-12T22:26:37.000Z" - }, - "end": { - "$date": "2022-05-12T22:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "809edae6-1319-4d1e-a702-3f228216a49f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-12T22:58:19.000Z" - }, - "end": { - "$date": "2022-05-12T23:48:50.000Z" - }, - "events": [ - { - "uuid": "40e9fadb-26ec-485f-995a-47cdf020ae60", - "start": { - "$date": "2022-05-12T22:58:19.000Z" - }, - "end": { - "$date": "2022-05-12T23:48:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5ae414fb-2ab5-4962-a1e3-dd32ae06a0a1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-13T00:03:03.000Z" - }, - "end": { - "$date": "2022-05-13T00:58:35.000Z" - }, - "events": [ - { - "uuid": "fec2f807-6583-42f7-8069-d3708a129ec6", - "start": { - "$date": "2022-05-13T00:03:03.000Z" - }, - "end": { - "$date": "2022-05-13T00:44:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "34d8e199-fcfe-430b-be51-f6c612357da8", - "start": { - "$date": "2022-05-13T00:44:03.000Z" - }, - "end": { - "$date": "2022-05-13T00:58:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "77ec44f4-5c28-4ece-9e0b-6d2cba3d622b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-13T01:16:37.000Z" - }, - "end": { - "$date": "2022-05-13T01:17:51.000Z" - }, - "events": [ - { - "uuid": "1c6de335-b1df-416e-a16e-64f6c2330d3a", - "start": { - "$date": "2022-05-13T01:16:37.000Z" - }, - "end": { - "$date": "2022-05-13T01:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "13079f35-021c-4687-b578-3634e826c9b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-13T01:18:11.000Z" - }, - "end": { - "$date": "2022-05-13T01:24:28.000Z" - }, - "events": [ - { - "uuid": "99c6f98e-a726-40af-ba25-e9c5235b6761", - "start": { - "$date": "2022-05-13T01:18:11.000Z" - }, - "end": { - "$date": "2022-05-13T01:24:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "38ee2db4-4e1b-415a-9aa6-6f3ab666e624", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-13T01:28:09.000Z" - }, - "end": { - "$date": "2022-05-13T03:20:19.000Z" - }, - "events": [ - { - "uuid": "2d63900e-975f-4436-bcd7-b4b3a58f4097", - "start": { - "$date": "2022-05-13T01:28:09.000Z" - }, - "end": { - "$date": "2022-05-13T03:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "bb2e8d82-dfe5-43ce-bc86-ee81eee5578c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-13T01:53:56.000Z" - }, - "end": { - "$date": "2022-05-13T03:08:06.000Z" - }, - "events": [ - { - "uuid": "40bb9277-5068-4072-80f0-99808d567078", - "start": { - "$date": "2022-05-13T01:53:56.000Z" - }, - "end": { - "$date": "2022-05-13T03:08:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1392e98a-b7ba-4a02-b9af-df3614c54142", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-13T03:21:42.000Z" - }, - "end": { - "$date": "2022-05-13T04:59:34.000Z" - }, - "events": [ - { - "uuid": "6983635d-e30b-4388-83e7-4b1578cb04aa", - "start": { - "$date": "2022-05-13T03:21:42.000Z" - }, - "end": { - "$date": "2022-05-13T04:59:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0c1a0611-4d87-451c-ac7a-64712a78d2ff", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-13T03:41:36.000Z" - }, - "end": { - "$date": "2022-05-13T04:18:39.000Z" - }, - "events": [ - { - "uuid": "d0628c49-5ce4-41f9-a645-fcc6f28eb6bb", - "start": { - "$date": "2022-05-13T03:41:36.000Z" - }, - "end": { - "$date": "2022-05-13T04:18:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "613e6e62-6565-4a87-aacb-6bcbe55a5d9f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-13T05:16:52.000Z" - }, - "end": { - "$date": "2022-05-13T06:12:04.000Z" - }, - "events": [ - { - "uuid": "7f7802e8-7292-42c3-9fea-f35d1d88c1e6", - "start": { - "$date": "2022-05-13T05:16:52.000Z" - }, - "end": { - "$date": "2022-05-13T06:12:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "668c3f04-881f-4032-a2ff-b56a58cbdb3d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-13T14:41:03.000Z" - }, - "end": { - "$date": "2022-05-13T21:09:27.000Z" - }, - "events": [ - { - "uuid": "da0944f6-e55a-4a22-bec6-71e04cc74869", - "start": { - "$date": "2022-05-13T14:41:03.000Z" - }, - "end": { - "$date": "2022-05-13T21:09:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "c6a1d7f8-0473-4840-afe0-c4a25c684c39", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T15:00:38.000Z" - }, - "end": { - "$date": "2022-05-13T15:09:33.000Z" - }, - "events": [ - { - "uuid": "83805c85-9d98-424f-8756-dbb2cbaa5a8a", - "start": { - "$date": "2022-05-13T15:00:38.000Z" - }, - "end": { - "$date": "2022-05-13T15:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9b53ba18-66b8-448c-b243-a952d9938815", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T15:12:28.000Z" - }, - "end": { - "$date": "2022-05-13T15:46:35.000Z" - }, - "events": [ - { - "uuid": "43301524-1857-4b96-83a0-0565e0cd6591", - "start": { - "$date": "2022-05-13T15:12:28.000Z" - }, - "end": { - "$date": "2022-05-13T15:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fc3fb96a-31ce-4025-a891-ff1e6de7fb18", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T15:56:46.000Z" - }, - "end": { - "$date": "2022-05-13T16:25:23.000Z" - }, - "events": [ - { - "uuid": "9cbf8e3a-71c6-454e-b6f4-113017fb21df", - "start": { - "$date": "2022-05-13T15:56:46.000Z" - }, - "end": { - "$date": "2022-05-13T16:25:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "b19b5d8d-a7fc-4110-a2ab-62bd0332dd98", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T16:25:53.000Z" - }, - "end": { - "$date": "2022-05-13T16:29:08.000Z" - }, - "events": [ - { - "uuid": "8d0a813f-2755-499c-bc14-941de330ab2e", - "start": { - "$date": "2022-05-13T16:25:53.000Z" - }, - "end": { - "$date": "2022-05-13T16:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "f1e053a9-7087-466d-ad8b-550fbcc505cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T16:41:35.000Z" - }, - "end": { - "$date": "2022-05-13T17:50:09.000Z" - }, - "events": [ - { - "uuid": "627d29e4-abe3-4ba6-b774-f19f2dbe9027", - "start": { - "$date": "2022-05-13T16:41:35.000Z" - }, - "end": { - "$date": "2022-05-13T17:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fcc9d647-4c6b-4bd9-89f6-d8a1464ca89a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T17:50:14.000Z" - }, - "end": { - "$date": "2022-05-13T18:11:56.000Z" - }, - "events": [ - { - "uuid": "4759c5e6-9ce0-47a7-b273-28c70e708c83", - "start": { - "$date": "2022-05-13T17:50:14.000Z" - }, - "end": { - "$date": "2022-05-13T18:11:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "0eaaf7ec-7cfd-4594-94d1-5b552236c996", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-13T18:12:31.000Z" - }, - "end": { - "$date": "2022-05-13T18:17:42.000Z" - }, - "events": [ - { - "uuid": "74bf130a-a7ba-453a-b99a-1c6599870252", - "start": { - "$date": "2022-05-13T18:12:31.000Z" - }, - "end": { - "$date": "2022-05-13T18:17:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e0126ff-bb1d-4967-9c6c-b55d416eabb7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-13T21:18:04.000Z" - }, - "end": { - "$date": "2022-05-13T22:02:03.000Z" - }, - "events": [ - { - "uuid": "48212989-f187-4279-86ba-b2b6a544996d", - "start": { - "$date": "2022-05-13T21:18:04.000Z" - }, - "end": { - "$date": "2022-05-13T22:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "720ff3ec-9648-4807-bda4-9b7dbdfe4861", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-13T22:12:36.000Z" - }, - "end": { - "$date": "2022-05-13T22:39:01.000Z" - }, - "events": [ - { - "uuid": "82503ffb-054e-4fb2-b7c2-2f54247f95f1", - "start": { - "$date": "2022-05-13T22:12:36.000Z" - }, - "end": { - "$date": "2022-05-13T22:39:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "1791185b-24b9-4f34-977d-03d0c105f1d3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-13T22:18:37.000Z" - }, - "end": { - "$date": "2022-05-14T00:32:48.000Z" - }, - "events": [ - { - "uuid": "d6de435c-1f28-45a1-b84b-1318c1a3dd0e", - "start": { - "$date": "2022-05-13T22:18:37.000Z" - }, - "end": { - "$date": "2022-05-14T00:32:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "57fcecbc-fc15-4b43-8c1f-eeb0558aa053", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-14T00:10:59.000Z" - }, - "end": { - "$date": "2022-05-14T03:18:24.000Z" - }, - "events": [ - { - "uuid": "60d4848b-33be-4f7b-94ad-940908b8ee31", - "start": { - "$date": "2022-05-14T00:10:59.000Z" - }, - "end": { - "$date": "2022-05-14T03:18:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "20780538-ae81-4488-a974-3119f3f7f17d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-14T01:04:19.000Z" - }, - "end": { - "$date": "2022-05-14T01:22:15.000Z" - }, - "events": [ - { - "uuid": "5db3611f-a194-4a95-b49a-8dbce0f6aecf", - "start": { - "$date": "2022-05-14T01:04:19.000Z" - }, - "end": { - "$date": "2022-05-14T01:22:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "78f62c01-656e-45f0-94d6-e771cc973194", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-14T02:22:37.000Z" - }, - "end": { - "$date": "2022-05-14T02:47:53.000Z" - }, - "events": [ - { - "uuid": "471207a1-2a4d-4c48-abdb-ddbb7eb066ae", - "start": { - "$date": "2022-05-14T02:22:37.000Z" - }, - "end": { - "$date": "2022-05-14T02:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6c5a2bb1-ab1f-496d-8878-68a2cfe9d9dd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-14T02:57:30.000Z" - }, - "end": { - "$date": "2022-05-14T04:04:02.000Z" - }, - "events": [ - { - "uuid": "f744286d-66c2-40c2-a6c7-1ea0f9097631", - "start": { - "$date": "2022-05-14T02:57:30.000Z" - }, - "end": { - "$date": "2022-05-14T04:04:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "c276bdc8-a3b4-482a-82b0-16c1e1c364b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-14T02:58:57.000Z" - }, - "end": { - "$date": "2022-05-14T06:22:09.000Z" - }, - "events": [ - { - "uuid": "5f05ebff-8369-4a26-8f72-095ce3112c6f", - "start": { - "$date": "2022-05-14T02:58:57.000Z" - }, - "end": { - "$date": "2022-05-14T06:22:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b739a999-b622-4d5e-b15d-20e1aefcf1d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-14T03:29:19.000Z" - }, - "end": { - "$date": "2022-05-14T03:49:30.000Z" - }, - "events": [ - { - "uuid": "b72bc552-5873-42a9-8b79-4ad4efa54f7f", - "start": { - "$date": "2022-05-14T03:29:19.000Z" - }, - "end": { - "$date": "2022-05-14T03:49:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c56c79b3-1b3e-4baa-9480-a2381f9d2721", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-14T03:30:34.000Z" - }, - "end": { - "$date": "2022-05-14T05:40:39.000Z" - }, - "events": [ - { - "uuid": "06e75e41-9147-410a-8615-1bfd113b6ed5", - "start": { - "$date": "2022-05-14T03:30:34.000Z" - }, - "end": { - "$date": "2022-05-14T05:40:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c5f1ee95-8198-4b75-ad10-155f5183ffcc", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-14T03:31:47.000Z" - }, - "end": { - "$date": "2022-05-14T05:13:26.000Z" - }, - "events": [ - { - "uuid": "c8b43e90-e969-4738-ace8-0e8e6f6c9710", - "start": { - "$date": "2022-05-14T03:31:47.000Z" - }, - "end": { - "$date": "2022-05-14T05:13:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a90e60ef-88cf-42e2-8f7b-df6c526d71ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-05-14T03:31:41.000Z" - }, - "end": { - "$date": "2022-05-14T04:32:53.000Z" - }, - "events": [ - { - "uuid": "2d569953-b3a2-463b-9685-15630e2c6dae", - "start": { - "$date": "2022-05-14T03:31:41.000Z" - }, - "end": { - "$date": "2022-05-14T04:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8a27192b-10a3-4a27-a32b-35c5afd39edb", - "uuid": "9014e564-5695-4092-b538-ddc736d45860", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-14T03:44:48.000Z" - }, - "end": { - "$date": "2022-05-14T05:48:04.000Z" - }, - "events": [ - { - "uuid": "3f7219f5-5d6f-462a-8a0a-dae87d4fb1c8", - "start": { - "$date": "2022-05-14T03:44:48.000Z" - }, - "end": { - "$date": "2022-05-14T05:48:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5107e05c-b3fd-453b-ba05-99745e0cb0d1", - "uuid": "d1458d34-1dc9-4887-868a-2469cdddfaa0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-14T03:59:50.000Z" - }, - "end": { - "$date": "2022-05-14T04:49:39.000Z" - }, - "events": [ - { - "uuid": "8e2d2e4f-42dd-4d94-aa28-da0c41ba7a2e", - "start": { - "$date": "2022-05-14T03:59:50.000Z" - }, - "end": { - "$date": "2022-05-14T04:49:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "61663f50-81e2-45ac-8ba7-089e206cd148", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-14T05:01:00.000Z" - }, - "end": { - "$date": "2022-05-14T06:39:32.000Z" - }, - "events": [ - { - "uuid": "5af362d0-4cda-4493-8117-f042b27e3fcc", - "start": { - "$date": "2022-05-14T05:01:00.000Z" - }, - "end": { - "$date": "2022-05-14T06:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1515b8c2-ed76-4da1-99d1-d10d3c728265", - "uuid": "8f6e55d6-b21f-4cd6-94a8-0de8e83bf5b1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-14T05:16:56.000Z" - }, - "end": { - "$date": "2022-05-14T05:40:11.000Z" - }, - "events": [ - { - "uuid": "c02275ce-da25-4cb5-ab26-e3471c2d13e3", - "start": { - "$date": "2022-05-14T05:16:56.000Z" - }, - "end": { - "$date": "2022-05-14T05:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "bf00860e-f281-46ca-818a-219e25054a41", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-14T05:31:02.000Z" - }, - "end": { - "$date": "2022-05-14T05:40:47.000Z" - }, - "events": [ - { - "uuid": "f19430e6-8689-4471-bf61-447a001edef6", - "start": { - "$date": "2022-05-14T05:31:02.000Z" - }, - "end": { - "$date": "2022-05-14T05:40:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c6622ae-2861-4b10-b486-2e63f5c19c22", - "uuid": "e9fa3e11-4d10-4396-bf1e-12d167a1f715", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-14T05:48:02.000Z" - }, - "end": { - "$date": "2022-05-14T05:59:42.000Z" - }, - "events": [ - { - "uuid": "76651e1a-0b10-4f2c-83e9-ef24a8afa74d", - "start": { - "$date": "2022-05-14T05:48:02.000Z" - }, - "end": { - "$date": "2022-05-14T05:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1701af3b-7b02-43f6-90b5-d245fa807401", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-14T05:55:48.000Z" - }, - "end": { - "$date": "2022-05-14T08:45:11.000Z" - }, - "events": [ - { - "uuid": "3833f558-5a0d-48dc-bcd8-c36a110c33e4", - "start": { - "$date": "2022-05-14T05:55:48.000Z" - }, - "end": { - "$date": "2022-05-14T08:45:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "9354a150-3645-4c6e-b1c8-3e5fe2010d06", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T06:06:07.000Z" - }, - "end": { - "$date": "2022-05-14T06:40:31.000Z" - }, - "events": [ - { - "uuid": "adc08b95-920a-4fa2-b297-18d5b5ba959e", - "start": { - "$date": "2022-05-14T06:06:07.000Z" - }, - "end": { - "$date": "2022-05-14T06:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "9438a169-7c8a-4767-880f-ed137ff857b7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-14T06:08:36.000Z" - }, - "end": { - "$date": "2022-05-14T06:33:20.000Z" - }, - "events": [ - { - "uuid": "6b6f67ca-8817-4875-8523-e2641c7e9295", - "start": { - "$date": "2022-05-14T06:08:36.000Z" - }, - "end": { - "$date": "2022-05-14T06:33:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a0df844f-432f-4c1a-99f8-77f8347c915c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T14:59:45.000Z" - }, - "end": { - "$date": "2022-05-14T15:00:50.000Z" - }, - "events": [ - { - "uuid": "b99adca1-8ffc-445f-aeaa-b20eebc33431", - "start": { - "$date": "2022-05-14T14:59:45.000Z" - }, - "end": { - "$date": "2022-05-14T15:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4655fa89-125e-45f8-97aa-a9a65090600c", - "uuid": "f9e85d4f-1b71-4066-b4f6-529ff75e2f1e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T15:10:30.000Z" - }, - "end": { - "$date": "2022-05-14T15:12:46.000Z" - }, - "events": [ - { - "uuid": "8909f4f1-dfb4-4d3e-87b9-1bbe9f9cb34a", - "start": { - "$date": "2022-05-14T15:10:30.000Z" - }, - "end": { - "$date": "2022-05-14T15:12:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "b9110692-7e39-48fa-98e0-b81e760f2224", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T15:13:06.000Z" - }, - "end": { - "$date": "2022-05-14T16:08:23.000Z" - }, - "events": [ - { - "uuid": "25d4011a-b449-44e0-901c-9d891d8200d9", - "start": { - "$date": "2022-05-14T15:13:06.000Z" - }, - "end": { - "$date": "2022-05-14T16:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "8937085b-4bf5-4707-a6fe-6d0e80622a80", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-14T16:08:07.000Z" - }, - "end": { - "$date": "2022-05-14T17:55:05.000Z" - }, - "events": [ - { - "uuid": "0a8fa140-11d9-4440-93ee-a3e4bd937c54", - "start": { - "$date": "2022-05-14T16:08:07.000Z" - }, - "end": { - "$date": "2022-05-14T17:55:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "93f7cd4d-66e6-4c31-b592-688fe941f6ce", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T16:31:01.000Z" - }, - "end": { - "$date": "2022-05-14T19:12:22.000Z" - }, - "events": [ - { - "uuid": "f3b5d5c0-72dc-4c36-89d2-2dc202dd33a2", - "start": { - "$date": "2022-05-14T16:31:01.000Z" - }, - "end": { - "$date": "2022-05-14T19:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bec12315-5dea-41c6-8d03-0555cd14721c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T19:30:09.000Z" - }, - "end": { - "$date": "2022-05-14T20:01:25.000Z" - }, - "events": [ - { - "uuid": "d57416dc-c1d9-4671-b38d-6ea4e5294a69", - "start": { - "$date": "2022-05-14T19:30:09.000Z" - }, - "end": { - "$date": "2022-05-14T20:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "4752669a-74f1-49c3-aa33-0e70696e0aa2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-14T19:49:08.000Z" - }, - "end": { - "$date": "2022-05-14T21:29:02.000Z" - }, - "events": [ - { - "uuid": "40c0bf41-4179-4dab-86c1-39011fa2bb7b", - "start": { - "$date": "2022-05-14T19:49:08.000Z" - }, - "end": { - "$date": "2022-05-14T21:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "f0542d87-f75c-4c53-9c7b-078902a43a55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T20:05:55.000Z" - }, - "end": { - "$date": "2022-05-14T20:46:39.000Z" - }, - "events": [ - { - "uuid": "2373ac9c-7bdf-4355-928c-280de15f0903", - "start": { - "$date": "2022-05-14T20:05:55.000Z" - }, - "end": { - "$date": "2022-05-14T20:22:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c5e43a79-e412-4661-9b77-00fbdff6245a", - "start": { - "$date": "2022-05-14T20:22:55.000Z" - }, - "end": { - "$date": "2022-05-14T20:27:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "735f38d0-fa3c-4b1d-a07c-b7636e6238fc", - "start": { - "$date": "2022-05-14T20:27:55.000Z" - }, - "end": { - "$date": "2022-05-14T20:46:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "4b2234e4-7203-468b-876c-ad977e1c3bf4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-14T21:38:39.000Z" - }, - "end": { - "$date": "2022-05-14T22:46:51.000Z" - }, - "events": [ - { - "uuid": "e3dd4538-56c7-4e75-b98f-4b4a083bcc9f", - "start": { - "$date": "2022-05-14T21:38:39.000Z" - }, - "end": { - "$date": "2022-05-14T22:46:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "286b1bdf-3605-475e-8904-39659870285d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-14T21:08:41.000Z" - }, - "end": { - "$date": "2022-05-14T23:02:21.000Z" - }, - "events": [ - { - "uuid": "76a6cc32-6d0f-4d94-b936-5a406b074424", - "start": { - "$date": "2022-05-14T21:08:41.000Z" - }, - "end": { - "$date": "2022-05-14T23:02:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "1fb1c5f5-ca3d-4ca3-86c4-4833b514deb2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-14T23:23:57.000Z" - }, - "end": { - "$date": "2022-05-15T02:01:07.000Z" - }, - "events": [ - { - "uuid": "82a0a192-7cf3-4659-8746-bde413f2b9b9", - "start": { - "$date": "2022-05-14T23:23:57.000Z" - }, - "end": { - "$date": "2022-05-15T02:01:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bedba623-817e-4f05-b42b-1d61112d80cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-15T01:33:53.000Z" - }, - "end": { - "$date": "2022-05-15T01:35:08.000Z" - }, - "events": [ - { - "uuid": "56cc84e5-1c74-408a-a959-66d706e8e2d5", - "start": { - "$date": "2022-05-15T01:33:53.000Z" - }, - "end": { - "$date": "2022-05-15T01:35:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b5fabd68-d08b-4a86-931b-36193cb09b62", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-15T01:35:34.000Z" - }, - "end": { - "$date": "2022-05-15T01:37:43.000Z" - }, - "events": [ - { - "uuid": "30b2f9e0-df47-4409-b891-e8a281d62507", - "start": { - "$date": "2022-05-15T01:35:34.000Z" - }, - "end": { - "$date": "2022-05-15T01:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "fe33211f-ba3b-4e8b-b1b9-3636f214747f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-15T01:56:05.000Z" - }, - "end": { - "$date": "2022-05-15T02:03:35.000Z" - }, - "events": [ - { - "uuid": "dcfdb46d-e0ea-4498-aebf-be933a89b961", - "start": { - "$date": "2022-05-15T01:56:05.000Z" - }, - "end": { - "$date": "2022-05-15T02:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "e4781c57-b162-46d2-bb03-8d8a7a670fca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-15T02:15:45.000Z" - }, - "end": { - "$date": "2022-05-15T03:28:15.000Z" - }, - "events": [ - { - "uuid": "a2b6b869-1387-4fa2-bae7-a019871c2d57", - "start": { - "$date": "2022-05-15T02:15:45.000Z" - }, - "end": { - "$date": "2022-05-15T03:28:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "db00d05e-bd6c-4b19-82a3-90f2b1fe2c5a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-15T02:52:37.000Z" - }, - "end": { - "$date": "2022-05-15T03:29:22.000Z" - }, - "events": [ - { - "uuid": "ac299a96-867e-4e8c-b36d-31311c76f01c", - "start": { - "$date": "2022-05-15T02:52:37.000Z" - }, - "end": { - "$date": "2022-05-15T03:29:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "f9e0bc4f-6447-451e-b8d4-849e3d374fb6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-15T03:43:31.000Z" - }, - "end": { - "$date": "2022-05-15T05:24:42.000Z" - }, - "events": [ - { - "uuid": "44cad582-05f4-4914-998c-54237598ce1a", - "start": { - "$date": "2022-05-15T03:43:31.000Z" - }, - "end": { - "$date": "2022-05-15T05:24:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fb57d78a-3976-4639-a32c-fd40aaa736e4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-15T04:03:07.000Z" - }, - "end": { - "$date": "2022-05-15T04:05:01.000Z" - }, - "events": [ - { - "uuid": "145b0767-4a45-4a36-89dd-aacf5d914712", - "start": { - "$date": "2022-05-15T04:03:07.000Z" - }, - "end": { - "$date": "2022-05-15T04:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "de4bcbbc-2544-40e0-8afe-ba48070dc436", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-15T04:05:22.000Z" - }, - "end": { - "$date": "2022-05-15T06:56:58.000Z" - }, - "events": [ - { - "uuid": "364d8ea4-4c34-4892-8c1d-1a258b15f737", - "start": { - "$date": "2022-05-15T04:05:22.000Z" - }, - "end": { - "$date": "2022-05-15T06:56:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3eae377b-ddc0-49ae-91dd-4f871979567b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-15T04:14:41.000Z" - }, - "end": { - "$date": "2022-05-15T07:02:04.000Z" - }, - "events": [ - { - "uuid": "ed00879f-ef5f-4264-960a-8718f40ea26d", - "start": { - "$date": "2022-05-15T04:14:41.000Z" - }, - "end": { - "$date": "2022-05-15T07:02:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "043c02aa-bb44-408f-bb23-42e83f37533b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-15T04:16:22.000Z" - }, - "end": { - "$date": "2022-05-15T09:40:31.000Z" - }, - "events": [ - { - "uuid": "b86a4e27-c26d-4ce1-8950-ce50896f8eee", - "start": { - "$date": "2022-05-15T04:16:22.000Z" - }, - "end": { - "$date": "2022-05-15T09:40:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a79f9042-29e5-47b0-b210-b0f737d9698f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-15T05:25:42.000Z" - }, - "end": { - "$date": "2022-05-15T09:42:29.000Z" - }, - "events": [ - { - "uuid": "78c9215c-8891-4a88-bffb-2fa4cf244756", - "start": { - "$date": "2022-05-15T05:25:42.000Z" - }, - "end": { - "$date": "2022-05-15T09:42:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c321b2e0-7c9b-4f95-867a-b8a530ab615b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-15T05:26:17.000Z" - }, - "end": { - "$date": "2022-05-15T08:18:56.000Z" - }, - "events": [ - { - "uuid": "ed37832e-edae-4048-bec7-61624b10af96", - "start": { - "$date": "2022-05-15T05:26:17.000Z" - }, - "end": { - "$date": "2022-05-15T08:18:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a04d35a4-cc0a-4346-a0f3-2a484885b4f7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-15T06:00:13.000Z" - }, - "end": { - "$date": "2022-05-15T06:51:58.000Z" - }, - "events": [ - { - "uuid": "e5895367-5251-4a19-98ee-21e8057d6806", - "start": { - "$date": "2022-05-15T06:00:13.000Z" - }, - "end": { - "$date": "2022-05-15T06:51:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "8857afdc-8ed1-4890-bb0b-15a45ec8b7cc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-15T06:28:40.000Z" - }, - "end": { - "$date": "2022-05-15T07:32:00.000Z" - }, - "events": [ - { - "uuid": "349f4e8e-0a60-4252-a777-eeaa2eea278b", - "start": { - "$date": "2022-05-15T06:28:40.000Z" - }, - "end": { - "$date": "2022-05-15T07:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "e5ad244c-c117-4d76-a53a-c2550c314deb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-15T12:04:14.000Z" - }, - "end": { - "$date": "2022-05-15T14:17:41.000Z" - }, - "events": [ - { - "uuid": "5808a8de-e671-407b-8ab2-aa0c59abe5e2", - "start": { - "$date": "2022-05-15T12:04:14.000Z" - }, - "end": { - "$date": "2022-05-15T14:17:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "15bb5edc-9c50-4624-9ab6-590b9890f97c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-15T13:58:38.000Z" - }, - "end": { - "$date": "2022-05-15T14:03:13.000Z" - }, - "events": [ - { - "uuid": "593a1ec4-97e5-4115-a995-8ef64232a20f", - "start": { - "$date": "2022-05-15T13:58:38.000Z" - }, - "end": { - "$date": "2022-05-15T14:03:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "d7775805-ad88-4b05-bfb7-97d773286cea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-15T14:03:38.000Z" - }, - "end": { - "$date": "2022-05-15T14:08:54.000Z" - }, - "events": [ - { - "uuid": "d979372c-4f1b-4646-a5fb-d429192b0ed5", - "start": { - "$date": "2022-05-15T14:03:38.000Z" - }, - "end": { - "$date": "2022-05-15T14:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "59f5797a-e6f8-4e1b-bcec-cd1e3943dc9b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-15T14:05:51.000Z" - }, - "end": { - "$date": "2022-05-15T15:32:25.000Z" - }, - "events": [ - { - "uuid": "c2143ea9-e452-46f8-9b44-a3a92212c74b", - "start": { - "$date": "2022-05-15T14:05:51.000Z" - }, - "end": { - "$date": "2022-05-15T15:32:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "137994c2-7f34-4caf-8d60-ac07cb980d9d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-15T14:09:29.000Z" - }, - "end": { - "$date": "2022-05-15T15:32:06.000Z" - }, - "events": [ - { - "uuid": "919a38c9-d9a8-4038-935b-610e37307211", - "start": { - "$date": "2022-05-15T14:09:29.000Z" - }, - "end": { - "$date": "2022-05-15T15:32:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2075383b-cc34-4494-ba6d-d01568fb865a", - "uuid": "232ef688-0739-48e9-8ed5-99063e8aa24f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-15T15:33:40.000Z" - }, - "end": { - "$date": "2022-05-15T16:08:55.000Z" - }, - "events": [ - { - "uuid": "f45f47a1-4063-4591-8399-129df446595e", - "start": { - "$date": "2022-05-15T15:33:40.000Z" - }, - "end": { - "$date": "2022-05-15T16:08:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "29e847ed-f965-4533-be56-5d7e6968b234", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-15T15:37:47.000Z" - }, - "end": { - "$date": "2022-05-15T17:28:01.000Z" - }, - "events": [ - { - "uuid": "4ee3d3bf-7410-4b12-9b61-e093753b13f4", - "start": { - "$date": "2022-05-15T15:37:47.000Z" - }, - "end": { - "$date": "2022-05-15T17:28:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a897345f-0868-4bff-a051-4e3c7aa7676f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-15T18:19:54.000Z" - }, - "end": { - "$date": "2022-05-15T19:12:01.000Z" - }, - "events": [ - { - "uuid": "d397bfaf-bcce-4d3f-bb6e-98b7afcb0741", - "start": { - "$date": "2022-05-15T18:19:54.000Z" - }, - "end": { - "$date": "2022-05-15T19:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "18a171e2-5b49-4e16-8e0c-e458cf625f09", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-15T18:30:55.000Z" - }, - "end": { - "$date": "2022-05-15T19:17:26.000Z" - }, - "events": [ - { - "uuid": "6d22fcf9-9e53-4de7-8c68-92cb5d34dc19", - "start": { - "$date": "2022-05-15T18:30:55.000Z" - }, - "end": { - "$date": "2022-05-15T19:17:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "a2e1611b-ce89-4be7-b306-216f85dcd66b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-15T18:53:39.000Z" - }, - "end": { - "$date": "2022-05-15T23:13:51.000Z" - }, - "events": [ - { - "uuid": "e1bd42c3-3557-443c-91d5-778c48ba201d", - "start": { - "$date": "2022-05-15T18:53:39.000Z" - }, - "end": { - "$date": "2022-05-15T23:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a22abc1-c1a9-46a2-974b-090fe5960c6c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-15T23:20:39.000Z" - }, - "end": { - "$date": "2022-05-16T02:19:01.000Z" - }, - "events": [ - { - "uuid": "1b2ae120-59e6-4e71-a84a-44d1b4ae5dfd", - "start": { - "$date": "2022-05-15T23:20:39.000Z" - }, - "end": { - "$date": "2022-05-16T02:19:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4bceab8d-c99b-42da-a400-2938ae2c47a0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-15T23:25:34.000Z" - }, - "end": { - "$date": "2022-05-16T02:19:08.000Z" - }, - "events": [ - { - "uuid": "3845364d-ebae-4250-ac4c-c1c640032817", - "start": { - "$date": "2022-05-15T23:25:34.000Z" - }, - "end": { - "$date": "2022-05-16T02:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "7c03766e-4575-4b8f-bd39-9d56d6426556", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-16T01:27:45.000Z" - }, - "end": { - "$date": "2022-05-16T03:24:44.000Z" - }, - "events": [ - { - "uuid": "272d104e-742b-4447-9cd1-861aa46d09c5", - "start": { - "$date": "2022-05-16T01:27:45.000Z" - }, - "end": { - "$date": "2022-05-16T03:24:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "f516158e-0eed-4a18-9f6d-52d4e96e4ff8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-16T01:30:54.000Z" - }, - "end": { - "$date": "2022-05-16T01:41:36.000Z" - }, - "events": [ - { - "uuid": "eef55801-404e-4c63-8a66-65a0b4bcd69c", - "start": { - "$date": "2022-05-16T01:30:54.000Z" - }, - "end": { - "$date": "2022-05-16T01:41:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "c888682b-f7f0-4ab0-8660-2637008587b2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-16T01:52:21.000Z" - }, - "end": { - "$date": "2022-05-16T03:24:46.000Z" - }, - "events": [ - { - "uuid": "ed8a748f-f03e-4bdf-9b27-ea44d832f90f", - "start": { - "$date": "2022-05-16T01:52:21.000Z" - }, - "end": { - "$date": "2022-05-16T03:24:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0902d455-ec4b-4128-93e6-0265a6402ac7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-16T02:38:56.000Z" - }, - "end": { - "$date": "2022-05-16T05:16:10.000Z" - }, - "events": [ - { - "uuid": "776a32b8-3de7-4993-b866-e26ce89e445a", - "start": { - "$date": "2022-05-16T02:38:56.000Z" - }, - "end": { - "$date": "2022-05-16T05:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "1b6357bd-3439-43a7-b8a0-b7bf54ca4eb1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-16T02:39:47.000Z" - }, - "end": { - "$date": "2022-05-16T06:56:48.000Z" - }, - "events": [ - { - "uuid": "b3248c07-9a9f-4f24-a84b-3f050f1613bf", - "start": { - "$date": "2022-05-16T02:39:47.000Z" - }, - "end": { - "$date": "2022-05-16T06:56:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "38e42464-dc99-4e7e-b582-8a2f199a575c", - "uuid": "75f6ca15-7544-40c1-9762-7cec0adfe3a8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-16T03:42:48.000Z" - }, - "end": { - "$date": "2022-05-16T04:03:24.000Z" - }, - "events": [ - { - "uuid": "d9dff385-b434-4311-b0a2-22e551b6bfe7", - "start": { - "$date": "2022-05-16T03:42:48.000Z" - }, - "end": { - "$date": "2022-05-16T04:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "0ea48ed1-cd0b-41c2-b90a-073674b7a7c7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-16T03:48:16.000Z" - }, - "end": { - "$date": "2022-05-16T05:51:03.000Z" - }, - "events": [ - { - "uuid": "d7f78c9d-9d09-4106-963c-6ff8af4a13dd", - "start": { - "$date": "2022-05-16T03:48:16.000Z" - }, - "end": { - "$date": "2022-05-16T05:51:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1edf8f39-dc39-4b23-a10f-3a523a658a23", - "uuid": "1c4d6c88-1d61-435d-a4f5-ce94ac254e7a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-16T04:03:34.000Z" - }, - "end": { - "$date": "2022-05-16T04:08:44.000Z" - }, - "events": [ - { - "uuid": "21be8afd-c675-4654-beb5-3726713799c7", - "start": { - "$date": "2022-05-16T04:03:34.000Z" - }, - "end": { - "$date": "2022-05-16T04:08:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "c38a71d6-21ca-4610-b754-5d0dad2acdda", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-16T04:58:42.000Z" - }, - "end": { - "$date": "2022-05-16T04:58:52.000Z" - }, - "events": [ - { - "uuid": "51a90ef9-aeaa-4895-a1c7-1e3d9f00b0d9", - "start": { - "$date": "2022-05-16T04:58:42.000Z" - }, - "end": { - "$date": "2022-05-16T04:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "8ac8d9b9-7ef5-4a4c-aee4-9892c3b890db", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-16T04:59:37.000Z" - }, - "end": { - "$date": "2022-05-16T05:35:53.000Z" - }, - "events": [ - { - "uuid": "e9142e8f-a00a-4db9-a326-5c8e6b162860", - "start": { - "$date": "2022-05-16T04:59:37.000Z" - }, - "end": { - "$date": "2022-05-16T05:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dcd24f65-8e0f-4e2a-9e8d-4143dfb4af6a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-16T06:51:45.000Z" - }, - "end": { - "$date": "2022-05-16T07:28:23.000Z" - }, - "events": [ - { - "uuid": "d8f86cdf-37a3-496f-a254-de47eb33c628", - "start": { - "$date": "2022-05-16T06:51:45.000Z" - }, - "end": { - "$date": "2022-05-16T07:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ce22349c-47a1-4ddd-b564-c6b5bde668a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-16T06:53:48.000Z" - }, - "end": { - "$date": "2022-05-16T08:04:53.000Z" - }, - "events": [ - { - "uuid": "3628c88f-8525-4887-b32c-159568ac8cfb", - "start": { - "$date": "2022-05-16T06:53:48.000Z" - }, - "end": { - "$date": "2022-05-16T08:04:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "997b39be-06d1-4701-9227-4b77b9927721", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-16T06:54:04.000Z" - }, - "end": { - "$date": "2022-05-16T08:07:37.000Z" - }, - "events": [ - { - "uuid": "82b4ee0a-b929-41b0-bfcb-1aa52f0c6167", - "start": { - "$date": "2022-05-16T06:54:04.000Z" - }, - "end": { - "$date": "2022-05-16T08:07:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "373d0482-8399-4fae-8b72-7f37b299daf6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-16T14:59:10.000Z" - }, - "end": { - "$date": "2022-05-16T16:44:47.000Z" - }, - "events": [ - { - "uuid": "a5cda113-0b60-498b-a93a-a02bc5832fc0", - "start": { - "$date": "2022-05-16T14:59:10.000Z" - }, - "end": { - "$date": "2022-05-16T16:44:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "b042ad7a-06cf-4aec-8a94-dbea898f4992", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-16T16:23:15.000Z" - }, - "end": { - "$date": "2022-05-16T16:26:15.000Z" - }, - "events": [ - { - "uuid": "5d6ba688-33a7-4ed0-891d-0e9c55c7baf5", - "start": { - "$date": "2022-05-16T16:23:15.000Z" - }, - "end": { - "$date": "2022-05-16T16:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "48b5d73d-3ae3-4350-83b4-8e25fae4ca1d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-16T16:37:01.000Z" - }, - "end": { - "$date": "2022-05-16T16:37:06.000Z" - }, - "events": [ - { - "uuid": "03e56267-6ff4-4c98-aec4-1855dc14348d", - "start": { - "$date": "2022-05-16T16:37:01.000Z" - }, - "end": { - "$date": "2022-05-16T16:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "b3792c78-a4dd-4e8c-9fe8-4734e6309e97", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-16T16:37:41.000Z" - }, - "end": { - "$date": "2022-05-16T20:47:52.000Z" - }, - "events": [ - { - "uuid": "973f7404-02d9-4a33-a885-2e430827c3d4", - "start": { - "$date": "2022-05-16T16:37:41.000Z" - }, - "end": { - "$date": "2022-05-16T20:47:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "22d448da-6347-459d-bb6b-e61f21f025cb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-16T16:44:57.000Z" - }, - "end": { - "$date": "2022-05-16T17:35:09.000Z" - }, - "events": [ - { - "uuid": "66e42d5e-1bd8-4498-9519-c16436d1ec67", - "start": { - "$date": "2022-05-16T16:44:57.000Z" - }, - "end": { - "$date": "2022-05-16T17:35:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "906e11be-807f-4043-86d2-5d5190f2b808", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-16T17:38:49.000Z" - }, - "end": { - "$date": "2022-05-16T20:08:37.000Z" - }, - "events": [ - { - "uuid": "335de239-42dc-4182-8fe0-b60525f2417e", - "start": { - "$date": "2022-05-16T17:38:49.000Z" - }, - "end": { - "$date": "2022-05-16T19:13:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a1c4328f-7162-4dc0-aedf-fd6c903c5180", - "start": { - "$date": "2022-05-16T19:13:49.000Z" - }, - "end": { - "$date": "2022-05-16T19:18:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "33f07104-5c37-47f8-a16c-bc3ce02a9a9b", - "start": { - "$date": "2022-05-16T19:18:49.000Z" - }, - "end": { - "$date": "2022-05-16T19:28:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddb38f9a-4e3a-4fed-b990-a9d6bf9c7623", - "start": { - "$date": "2022-05-16T19:28:49.000Z" - }, - "end": { - "$date": "2022-05-16T19:39:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09a4aa0e-1b26-4520-aacf-0af7e629e8b1", - "start": { - "$date": "2022-05-16T19:39:49.000Z" - }, - "end": { - "$date": "2022-05-16T20:08:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "d351e714-09fa-4bcd-9c97-7e196c106315", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-16T18:37:18.000Z" - }, - "end": { - "$date": "2022-05-16T18:55:55.000Z" - }, - "events": [ - { - "uuid": "416e7262-65e0-4602-9152-9ef09a0e9b4e", - "start": { - "$date": "2022-05-16T18:37:18.000Z" - }, - "end": { - "$date": "2022-05-16T18:55:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "78d0a3eb-4382-450f-a2a4-f16aad021f4e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-16T23:21:11.000Z" - }, - "end": { - "$date": "2022-05-16T23:29:21.000Z" - }, - "events": [ - { - "uuid": "a155e1a4-1670-4609-a9b0-003b05efc641", - "start": { - "$date": "2022-05-16T23:21:11.000Z" - }, - "end": { - "$date": "2022-05-16T23:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "8fb680d8-aba8-4f4a-ac2a-2703e271950c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-16T23:29:01.000Z" - }, - "end": { - "$date": "2022-05-17T03:02:47.000Z" - }, - "events": [ - { - "uuid": "c353ecc8-a767-411e-af26-b772c492cea9", - "start": { - "$date": "2022-05-16T23:29:01.000Z" - }, - "end": { - "$date": "2022-05-17T03:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "b1bfd8fe-7ea3-469f-9bb8-462898654c52", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-16T23:46:09.000Z" - }, - "end": { - "$date": "2022-05-17T02:23:23.000Z" - }, - "events": [ - { - "uuid": "dee858a2-ca8a-4f63-a742-35c4511a5e7b", - "start": { - "$date": "2022-05-16T23:46:09.000Z" - }, - "end": { - "$date": "2022-05-17T02:23:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1d3ab6a7-323f-4f8f-a84b-f50180060b26", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T00:24:50.000Z" - }, - "end": { - "$date": "2022-05-17T00:59:00.000Z" - }, - "events": [ - { - "uuid": "77cb833e-bb93-40c5-99d4-f4d4039d2fd2", - "start": { - "$date": "2022-05-17T00:24:50.000Z" - }, - "end": { - "$date": "2022-05-17T00:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c5617465-a95b-471b-917b-055db49faaf9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T01:27:33.000Z" - }, - "end": { - "$date": "2022-05-17T01:35:32.000Z" - }, - "events": [ - { - "uuid": "12ed9357-34a0-4c99-8242-64cdcbfda263", - "start": { - "$date": "2022-05-17T01:27:33.000Z" - }, - "end": { - "$date": "2022-05-17T01:35:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "da3c9ffc-5d91-43ca-9d12-5bb94dc1abb6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T01:29:20.000Z" - }, - "end": { - "$date": "2022-05-17T02:30:25.000Z" - }, - "events": [ - { - "uuid": "a1105acf-dd6f-45a6-8751-f9dc7d303154", - "start": { - "$date": "2022-05-17T01:29:20.000Z" - }, - "end": { - "$date": "2022-05-17T02:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "05690f3c-b020-4494-b1d7-0d1cf5b0cae4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T01:35:39.000Z" - }, - "end": { - "$date": "2022-05-17T01:41:42.000Z" - }, - "events": [ - { - "uuid": "1c0b6841-57c7-45b5-a693-c3cc2d0baa3f", - "start": { - "$date": "2022-05-17T01:35:39.000Z" - }, - "end": { - "$date": "2022-05-17T01:41:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "aa5e26da-e402-44ec-b7af-a1aa975402ed", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T01:42:49.000Z" - }, - "end": { - "$date": "2022-05-17T01:44:34.000Z" - }, - "events": [ - { - "uuid": "0851fa70-a7e4-4329-8121-72987074bfb7", - "start": { - "$date": "2022-05-17T01:42:49.000Z" - }, - "end": { - "$date": "2022-05-17T01:44:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "58c2a410-5778-4a4c-9ffa-c5250f6b4fe9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T01:44:49.000Z" - }, - "end": { - "$date": "2022-05-17T03:04:14.000Z" - }, - "events": [ - { - "uuid": "89cd31ee-cb94-42a0-a9d1-d9dfd26f4ef6", - "start": { - "$date": "2022-05-17T01:44:49.000Z" - }, - "end": { - "$date": "2022-05-17T03:04:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b2f09d9c-cef4-4dab-945e-a50d9f6d0471", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-17T02:24:09.000Z" - }, - "end": { - "$date": "2022-05-17T05:21:39.000Z" - }, - "events": [ - { - "uuid": "a4b35942-6bf2-412c-b81c-f3d6b6fcbdde", - "start": { - "$date": "2022-05-17T02:24:09.000Z" - }, - "end": { - "$date": "2022-05-17T05:06:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d5bd394f-caf5-4115-b16f-f5a29ab3c591", - "start": { - "$date": "2022-05-17T05:06:09.000Z" - }, - "end": { - "$date": "2022-05-17T05:19:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "16af11c1-3914-4c7a-8338-bc21161e63cb", - "start": { - "$date": "2022-05-17T05:19:09.000Z" - }, - "end": { - "$date": "2022-05-17T05:21:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "ee2839dd-e475-47f3-ab78-7a9e5e87292e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T03:07:57.000Z" - }, - "end": { - "$date": "2022-05-17T03:20:33.000Z" - }, - "events": [ - { - "uuid": "bef5d74e-7c86-4ae4-8ce4-b5d5c4aa0ff1", - "start": { - "$date": "2022-05-17T03:07:57.000Z" - }, - "end": { - "$date": "2022-05-17T03:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ab0c3941-3d03-4b77-ad4c-93b6bc5f9926", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-17T03:11:48.000Z" - }, - "end": { - "$date": "2022-05-17T07:34:07.000Z" - }, - "events": [ - { - "uuid": "2710bc78-93c5-49e4-a519-31e51b47cc00", - "start": { - "$date": "2022-05-17T03:11:48.000Z" - }, - "end": { - "$date": "2022-05-17T07:34:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "61f6ca63-39b0-405f-a040-7b7478ae95f7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-17T03:17:32.000Z" - }, - "end": { - "$date": "2022-05-17T07:34:14.000Z" - }, - "events": [ - { - "uuid": "8062c1d0-b09b-481b-834c-9cde217f6eb5", - "start": { - "$date": "2022-05-17T03:17:32.000Z" - }, - "end": { - "$date": "2022-05-17T07:34:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "161a243b-1105-49c7-87f0-699cf10dbc5d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T03:28:39.000Z" - }, - "end": { - "$date": "2022-05-17T04:12:54.000Z" - }, - "events": [ - { - "uuid": "9a6e9390-8bd5-4a86-845a-5169d177733e", - "start": { - "$date": "2022-05-17T03:28:39.000Z" - }, - "end": { - "$date": "2022-05-17T04:12:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "6fd92d44-883b-4540-b4f7-dbdf76bcef0a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T03:30:20.000Z" - }, - "end": { - "$date": "2022-05-17T04:09:46.000Z" - }, - "events": [ - { - "uuid": "0b95a9ea-813b-41e1-8c58-761cf13733b1", - "start": { - "$date": "2022-05-17T03:30:20.000Z" - }, - "end": { - "$date": "2022-05-17T04:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d5c2f51e-943a-4aa5-8805-75d8df1c03f7", - "uuid": "9ef84caa-13e0-4813-b981-047529dff457", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T04:10:51.000Z" - }, - "end": { - "$date": "2022-05-17T04:14:12.000Z" - }, - "events": [ - { - "uuid": "c6dae9f7-c115-4d58-ad51-4b412fdddc0b", - "start": { - "$date": "2022-05-17T04:10:51.000Z" - }, - "end": { - "$date": "2022-05-17T04:14:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "ccc5eb38-0ece-4352-8d25-c1a2d186eb04", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T04:32:28.000Z" - }, - "end": { - "$date": "2022-05-17T05:32:17.000Z" - }, - "events": [ - { - "uuid": "4eaee12d-e3a0-4e61-ab4e-322ded60ce7c", - "start": { - "$date": "2022-05-17T04:32:28.000Z" - }, - "end": { - "$date": "2022-05-17T05:32:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a1c733c1-3514-436a-8888-3b15bdad1195", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T05:47:34.000Z" - }, - "end": { - "$date": "2022-05-17T06:08:13.000Z" - }, - "events": [ - { - "uuid": "2307f8d6-40b6-43b1-86ce-cd7b0d8d9058", - "start": { - "$date": "2022-05-17T05:47:34.000Z" - }, - "end": { - "$date": "2022-05-17T06:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "7dbf877a-5b6f-46be-9e49-85aad0fa36d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-17T06:22:30.000Z" - }, - "end": { - "$date": "2022-05-17T07:32:28.000Z" - }, - "events": [ - { - "uuid": "a9de85a3-f894-46a3-b61e-762db710c167", - "start": { - "$date": "2022-05-17T06:22:30.000Z" - }, - "end": { - "$date": "2022-05-17T07:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ea32c52d-ea0e-4df4-94c2-5b360bb3b813", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T15:22:27.000Z" - }, - "end": { - "$date": "2022-05-17T15:30:27.000Z" - }, - "events": [ - { - "uuid": "9c5b67e6-d47c-4fbd-8bde-d4b51db61d8c", - "start": { - "$date": "2022-05-17T15:22:27.000Z" - }, - "end": { - "$date": "2022-05-17T15:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "eaebee0b-78a1-46bf-9e0e-77ed85b7a677", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T15:40:34.000Z" - }, - "end": { - "$date": "2022-05-17T15:47:49.000Z" - }, - "events": [ - { - "uuid": "4c090ead-6d10-436e-82ea-7f435d27cd1e", - "start": { - "$date": "2022-05-17T15:40:34.000Z" - }, - "end": { - "$date": "2022-05-17T15:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d133cada-9d45-44f7-a110-7e5ef55b50a6", - "uuid": "73e27cce-8ef0-4696-be9e-d25e34d131f4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T15:53:15.000Z" - }, - "end": { - "$date": "2022-05-17T15:55:15.000Z" - }, - "events": [ - { - "uuid": "d17a67b0-8a4b-4e37-a776-8f701dba4de1", - "start": { - "$date": "2022-05-17T15:53:15.000Z" - }, - "end": { - "$date": "2022-05-17T15:55:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "39f84efd-77cc-41ec-a488-5de820632f6b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T15:55:30.000Z" - }, - "end": { - "$date": "2022-05-17T16:36:51.000Z" - }, - "events": [ - { - "uuid": "db8981e6-4588-46ae-8a3a-3f78176c9207", - "start": { - "$date": "2022-05-17T15:55:30.000Z" - }, - "end": { - "$date": "2022-05-17T16:36:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "0d9a3c6c-1299-4658-bf4a-f44a41d22c1d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T17:46:34.000Z" - }, - "end": { - "$date": "2022-05-17T17:51:10.000Z" - }, - "events": [ - { - "uuid": "809e040d-ba22-4776-9578-ad7da20acaa0", - "start": { - "$date": "2022-05-17T17:46:34.000Z" - }, - "end": { - "$date": "2022-05-17T17:51:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9fd10a60-3d64-483a-8da7-aefa6a4e3e0d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T17:12:06.000Z" - }, - "end": { - "$date": "2022-05-17T17:15:55.000Z" - }, - "events": [ - { - "uuid": "c7bf4f27-289b-49ec-b58f-f713ee8354f9", - "start": { - "$date": "2022-05-17T17:12:06.000Z" - }, - "end": { - "$date": "2022-05-17T17:15:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "cf443c67-160a-4869-bcb4-117ec07e3f94", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T18:15:57.000Z" - }, - "end": { - "$date": "2022-05-17T18:36:42.000Z" - }, - "events": [ - { - "uuid": "8a3cdf12-3f9f-4d54-8b8d-bb7d13075ac0", - "start": { - "$date": "2022-05-17T18:15:57.000Z" - }, - "end": { - "$date": "2022-05-17T18:36:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "5004dace-7bfe-45d4-8f8b-8c15ada0b8a3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-17T18:40:37.000Z" - }, - "end": { - "$date": "2022-05-17T18:46:38.000Z" - }, - "events": [ - { - "uuid": "d5146059-3435-4d76-9db3-91c4337a312f", - "start": { - "$date": "2022-05-17T18:40:37.000Z" - }, - "end": { - "$date": "2022-05-17T18:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f3e61fe3-a374-443f-9dd3-c1a316145cbd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-17T19:30:20.000Z" - }, - "end": { - "$date": "2022-05-17T19:32:00.000Z" - }, - "events": [ - { - "uuid": "29cff68a-883e-4dcd-a2c8-4448f5c80cbc", - "start": { - "$date": "2022-05-17T19:30:20.000Z" - }, - "end": { - "$date": "2022-05-17T19:32:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc78f18b-4498-446d-ad6f-557f0df19e4c", - "uuid": "008d21cd-8678-4aa3-8ec7-e06edc42bea7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T21:15:14.000Z" - }, - "end": { - "$date": "2022-05-17T21:22:00.000Z" - }, - "events": [ - { - "uuid": "6448abbe-bbc2-45a8-b5a7-6d127fd79988", - "start": { - "$date": "2022-05-17T21:15:14.000Z" - }, - "end": { - "$date": "2022-05-17T21:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "79f9e8a6-05a8-4d3a-9326-4132459f562a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T21:22:10.000Z" - }, - "end": { - "$date": "2022-05-17T21:53:07.000Z" - }, - "events": [ - { - "uuid": "92a11ae9-c249-426c-838a-5894b9b7b520", - "start": { - "$date": "2022-05-17T21:22:10.000Z" - }, - "end": { - "$date": "2022-05-17T21:53:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "9686abe2-2d34-4b59-b680-92489f619439", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T21:53:37.000Z" - }, - "end": { - "$date": "2022-05-17T21:55:42.000Z" - }, - "events": [ - { - "uuid": "19beca67-f047-40f7-9d70-05c748b91abf", - "start": { - "$date": "2022-05-17T21:53:37.000Z" - }, - "end": { - "$date": "2022-05-17T21:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "fa45d209-8f98-4c2c-849b-da78e2ed9ca0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T21:57:17.000Z" - }, - "end": { - "$date": "2022-05-17T22:08:53.000Z" - }, - "events": [ - { - "uuid": "c4f29287-1394-4ed2-bc18-3fde2c09e93c", - "start": { - "$date": "2022-05-17T21:57:17.000Z" - }, - "end": { - "$date": "2022-05-17T22:08:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "067cfc1b-a882-45ac-8e02-0434d71e47d5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-17T22:01:02.000Z" - }, - "end": { - "$date": "2022-05-17T22:08:51.000Z" - }, - "events": [ - { - "uuid": "2a635ed4-8865-4447-9643-156c62ed3237", - "start": { - "$date": "2022-05-17T22:01:02.000Z" - }, - "end": { - "$date": "2022-05-17T22:08:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "7a5b77a9-7f61-4cff-b76b-5d86775a9585", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-17T22:30:45.000Z" - }, - "end": { - "$date": "2022-05-17T22:52:46.000Z" - }, - "events": [ - { - "uuid": "6e82f00b-7ed1-438f-bf08-9853f039c7fa", - "start": { - "$date": "2022-05-17T22:30:45.000Z" - }, - "end": { - "$date": "2022-05-17T22:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "4c02aabc-0356-4b15-936c-68b0876d6265", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-17T22:35:55.000Z" - }, - "end": { - "$date": "2022-05-17T23:20:45.000Z" - }, - "events": [ - { - "uuid": "b6185be8-0174-4a84-bd1c-beefc1a4c6c1", - "start": { - "$date": "2022-05-17T22:35:55.000Z" - }, - "end": { - "$date": "2022-05-17T23:20:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "110b0ea6-f5ff-474a-9a5f-d1cae01889cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-17T23:22:07.000Z" - }, - "end": { - "$date": "2022-05-17T23:32:27.000Z" - }, - "events": [ - { - "uuid": "72cb82ca-23f6-49ba-ae13-36a37738b65f", - "start": { - "$date": "2022-05-17T23:22:07.000Z" - }, - "end": { - "$date": "2022-05-17T23:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "e278eef5-ca58-43c9-92ee-b3ad0e527d24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-17T23:59:50.000Z" - }, - "end": { - "$date": "2022-05-18T00:40:23.000Z" - }, - "events": [ - { - "uuid": "e2028e6a-1f98-42fa-a416-88b8902c4a37", - "start": { - "$date": "2022-05-17T23:59:50.000Z" - }, - "end": { - "$date": "2022-05-18T00:40:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "529f12fa-eebd-45d5-b374-a48ed373ba70", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-18T00:41:00.000Z" - }, - "end": { - "$date": "2022-05-18T02:21:17.000Z" - }, - "events": [ - { - "uuid": "a2264996-8053-4c17-b612-d1411bb05e84", - "start": { - "$date": "2022-05-18T00:41:00.000Z" - }, - "end": { - "$date": "2022-05-18T00:56:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff7406e0-fd31-4f2d-9bf3-115f6d54002f", - "start": { - "$date": "2022-05-18T00:56:00.000Z" - }, - "end": { - "$date": "2022-05-18T00:57:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef2eec22-d2e2-4579-b278-24561a711c00", - "start": { - "$date": "2022-05-18T00:57:00.000Z" - }, - "end": { - "$date": "2022-05-18T02:21:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "0fa861b9-26a4-45e0-99a3-5353b3790e6a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-18T02:00:29.000Z" - }, - "end": { - "$date": "2022-05-18T02:02:49.000Z" - }, - "events": [ - { - "uuid": "d883da47-472e-4495-b3d1-5921eaabec4a", - "start": { - "$date": "2022-05-18T02:00:29.000Z" - }, - "end": { - "$date": "2022-05-18T02:02:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "29cfc2fe-b67d-4bcf-8596-08df8ae13685", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-18T02:03:04.000Z" - }, - "end": { - "$date": "2022-05-18T02:05:29.000Z" - }, - "events": [ - { - "uuid": "5f9e06a4-b8fe-4c14-9d3b-bd7adfe15775", - "start": { - "$date": "2022-05-18T02:03:04.000Z" - }, - "end": { - "$date": "2022-05-18T02:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ec8741f7-dafe-4c61-911d-3f85f0f2512c", - "uuid": "a247694f-cdeb-4958-b4ec-04b7b6a7e13c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-18T02:05:50.000Z" - }, - "end": { - "$date": "2022-05-18T02:06:55.000Z" - }, - "events": [ - { - "uuid": "dc77a77b-b86d-472b-addf-46c8e87b1885", - "start": { - "$date": "2022-05-18T02:05:50.000Z" - }, - "end": { - "$date": "2022-05-18T02:06:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5a5b54d8-67aa-410b-b073-fe2ed4f27e1a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-18T03:10:07.000Z" - }, - "end": { - "$date": "2022-05-18T03:45:15.000Z" - }, - "events": [ - { - "uuid": "e60aa8b8-89f2-4cf1-a6e8-39b011346dd9", - "start": { - "$date": "2022-05-18T03:10:07.000Z" - }, - "end": { - "$date": "2022-05-18T03:45:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "9c99a08b-f815-471c-a942-378c253774fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-18T03:44:13.000Z" - }, - "end": { - "$date": "2022-05-18T05:06:27.000Z" - }, - "events": [ - { - "uuid": "31ad2989-ef3b-4b47-ba54-8f61c20261c3", - "start": { - "$date": "2022-05-18T03:44:13.000Z" - }, - "end": { - "$date": "2022-05-18T05:06:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ad1176c0-2d62-40d5-93b1-353bd674f2cd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-18T03:53:59.000Z" - }, - "end": { - "$date": "2022-05-18T03:56:09.000Z" - }, - "events": [ - { - "uuid": "e76bbaa4-9e0d-4c2c-873e-cdd1767538a9", - "start": { - "$date": "2022-05-18T03:53:59.000Z" - }, - "end": { - "$date": "2022-05-18T03:56:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d93a8e1e-f363-427c-86d0-1f8e98483c09", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-18T04:25:13.000Z" - }, - "end": { - "$date": "2022-05-18T04:39:09.000Z" - }, - "events": [ - { - "uuid": "72b94d47-588b-47f9-b41a-1a48d18bf955", - "start": { - "$date": "2022-05-18T04:25:13.000Z" - }, - "end": { - "$date": "2022-05-18T04:39:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c038590d-ab18-4893-8977-94be81846fc9", - "uuid": "91d0fc8e-af2b-4690-b3ae-6c2d7f00dedb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-18T04:40:04.000Z" - }, - "end": { - "$date": "2022-05-18T05:15:20.000Z" - }, - "events": [ - { - "uuid": "897eec17-323a-4318-b9af-cc659c8bdc92", - "start": { - "$date": "2022-05-18T04:40:04.000Z" - }, - "end": { - "$date": "2022-05-18T05:15:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f8145bb8-b6eb-4ece-972d-f5de82e4869b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-18T06:24:31.000Z" - }, - "end": { - "$date": "2022-05-18T06:26:44.000Z" - }, - "events": [ - { - "uuid": "f6a71487-5a23-4715-b7d0-460cd4053df5", - "start": { - "$date": "2022-05-18T06:24:31.000Z" - }, - "end": { - "$date": "2022-05-18T06:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "917c7d2c-11b9-419c-99b7-769400a23547", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T15:26:03.000Z" - }, - "end": { - "$date": "2022-05-18T15:27:09.000Z" - }, - "events": [ - { - "uuid": "1ef1c59e-3ca4-4e5f-8f01-e1abd6fea8a6", - "start": { - "$date": "2022-05-18T15:26:03.000Z" - }, - "end": { - "$date": "2022-05-18T15:27:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "d7550d12-e276-4753-841e-bee0312d6b7c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T15:27:18.000Z" - }, - "end": { - "$date": "2022-05-18T16:58:00.000Z" - }, - "events": [ - { - "uuid": "95c21064-f69e-45ee-b34d-4e5e44af2182", - "start": { - "$date": "2022-05-18T15:27:18.000Z" - }, - "end": { - "$date": "2022-05-18T16:58:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "6e0069f5-ba09-45a3-bdbd-35717a30da06", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T16:58:10.000Z" - }, - "end": { - "$date": "2022-05-18T17:43:42.000Z" - }, - "events": [ - { - "uuid": "5aa3f80e-e536-4a0a-a7d6-03f8d5fb6ddb", - "start": { - "$date": "2022-05-18T16:58:10.000Z" - }, - "end": { - "$date": "2022-05-18T17:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "5315c7f0-f05b-432c-b277-b8cd92517045", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T17:59:03.000Z" - }, - "end": { - "$date": "2022-05-18T18:00:13.000Z" - }, - "events": [ - { - "uuid": "8c7481c6-1520-4714-9403-413d4d684982", - "start": { - "$date": "2022-05-18T17:59:03.000Z" - }, - "end": { - "$date": "2022-05-18T18:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "3c05bf9b-3a38-42ab-a411-ee0ae0fb0b57", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T18:04:24.000Z" - }, - "end": { - "$date": "2022-05-18T18:06:04.000Z" - }, - "events": [ - { - "uuid": "cf76b14e-0fc3-4724-bdc5-daba0507760e", - "start": { - "$date": "2022-05-18T18:04:24.000Z" - }, - "end": { - "$date": "2022-05-18T18:06:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "6d359a5a-6edf-4e76-9074-e049b43adaaa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T18:06:09.000Z" - }, - "end": { - "$date": "2022-05-18T18:07:29.000Z" - }, - "events": [ - { - "uuid": "3611f2c8-2dc5-44a9-aaec-4b75da2b21a9", - "start": { - "$date": "2022-05-18T18:06:09.000Z" - }, - "end": { - "$date": "2022-05-18T18:07:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "18ae66b3-1314-4bbf-be6b-903e88a36169", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T18:08:29.000Z" - }, - "end": { - "$date": "2022-05-18T18:10:14.000Z" - }, - "events": [ - { - "uuid": "b81e6dd7-54e3-47af-9a99-e06c223ee6ef", - "start": { - "$date": "2022-05-18T18:08:29.000Z" - }, - "end": { - "$date": "2022-05-18T18:10:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "8fc42c33-2450-4f58-832b-499c1aea52ae", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T18:21:11.000Z" - }, - "end": { - "$date": "2022-05-18T18:21:16.000Z" - }, - "events": [ - { - "uuid": "7a23d468-ce6a-4a5a-b651-5ec58ddaf6b2", - "start": { - "$date": "2022-05-18T18:21:11.000Z" - }, - "end": { - "$date": "2022-05-18T18:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "c4758587-4157-4f39-b78d-257058a84ffc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T18:22:11.000Z" - }, - "end": { - "$date": "2022-05-18T18:24:08.000Z" - }, - "events": [ - { - "uuid": "cbcb09f4-4255-4fb0-a806-0dc3fe74f936", - "start": { - "$date": "2022-05-18T18:22:11.000Z" - }, - "end": { - "$date": "2022-05-18T18:24:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "db2cd3fa-8c72-4fab-bc31-226a95415584", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T18:25:07.000Z" - }, - "end": { - "$date": "2022-05-18T18:26:22.000Z" - }, - "events": [ - { - "uuid": "29a141bd-c13f-459e-b6f9-2883de8c2177", - "start": { - "$date": "2022-05-18T18:25:07.000Z" - }, - "end": { - "$date": "2022-05-18T18:26:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "d3de7705-6bfd-4e00-b695-0a4ab9e36548", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-18T19:06:08.000Z" - }, - "end": { - "$date": "2022-05-18T19:06:18.000Z" - }, - "events": [ - { - "uuid": "d5561bd1-6292-48d5-ab4f-b42979455aaf", - "start": { - "$date": "2022-05-18T19:06:08.000Z" - }, - "end": { - "$date": "2022-05-18T19:21:08.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a3ff2cb2-fddc-461e-a8ae-34105bcaa131", - "start": { - "$date": "2022-05-18T19:21:08.000Z" - }, - "end": { - "$date": "2022-05-18T19:24:08.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8001b6a5-e35c-471d-8895-33a122cd7a5c", - "start": { - "$date": "2022-05-18T19:24:08.000Z" - }, - "end": { - "$date": "2022-05-18T19:06:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "277e08a0-abe8-4a59-b289-166acf4c97b8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-18T19:06:14.000Z" - }, - "end": { - "$date": "2022-05-18T20:18:18.000Z" - }, - "events": [ - { - "uuid": "a89c418c-c35a-4e5c-bf16-9686c594263d", - "start": { - "$date": "2022-05-18T19:06:14.000Z" - }, - "end": { - "$date": "2022-05-18T20:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "f11621f8-0a3d-4f17-a004-29a417d38121", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-18T19:30:10.000Z" - }, - "end": { - "$date": "2022-05-18T19:32:20.000Z" - }, - "events": [ - { - "uuid": "af813538-dce7-4672-a79b-b418a582344a", - "start": { - "$date": "2022-05-18T19:30:10.000Z" - }, - "end": { - "$date": "2022-05-18T19:32:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "7066402c-b645-43e0-8634-b2ccf7f460fd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-18T19:33:06.000Z" - }, - "end": { - "$date": "2022-05-18T19:34:55.000Z" - }, - "events": [ - { - "uuid": "0fc590ae-0d4f-43ec-a29b-4f306ea2010b", - "start": { - "$date": "2022-05-18T19:33:06.000Z" - }, - "end": { - "$date": "2022-05-18T19:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f23334c6-ef4d-4510-bfae-cc87f2dfafe1", - "uuid": "c05d5329-0b28-433d-a43a-d0dcd904cca1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-18T19:36:16.000Z" - }, - "end": { - "$date": "2022-05-18T19:37:56.000Z" - }, - "events": [ - { - "uuid": "222a3fe8-dc6c-467b-b3b0-7c8af80f1934", - "start": { - "$date": "2022-05-18T19:36:16.000Z" - }, - "end": { - "$date": "2022-05-18T19:37:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "3a130e10-1129-414a-a167-7961db251978", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-18T21:30:21.000Z" - }, - "end": { - "$date": "2022-05-18T22:58:40.000Z" - }, - "events": [ - { - "uuid": "dfe67bb6-1aed-4dc4-af56-4497f4156560", - "start": { - "$date": "2022-05-18T21:30:21.000Z" - }, - "end": { - "$date": "2022-05-18T22:58:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "22b28563-7833-48d9-8fe4-fd392fc81365", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-18T23:32:37.000Z" - }, - "end": { - "$date": "2022-05-18T23:52:43.000Z" - }, - "events": [ - { - "uuid": "c6479e78-0171-47a5-940d-6e357b7e6ed9", - "start": { - "$date": "2022-05-18T23:32:37.000Z" - }, - "end": { - "$date": "2022-05-18T23:52:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2910900f-fb48-4db3-884b-3c77c1da95a3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-19T00:37:50.000Z" - }, - "end": { - "$date": "2022-05-19T03:14:41.000Z" - }, - "events": [ - { - "uuid": "76ba387d-62af-46a6-8d46-038e197ad2a8", - "start": { - "$date": "2022-05-19T00:37:50.000Z" - }, - "end": { - "$date": "2022-05-19T01:56:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "021db5bd-7e4f-4bdb-852d-83a8f374421c", - "start": { - "$date": "2022-05-19T01:56:50.000Z" - }, - "end": { - "$date": "2022-05-19T02:00:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f9e932be-fccc-42ad-a51e-7c52146ed69d", - "start": { - "$date": "2022-05-19T02:00:50.000Z" - }, - "end": { - "$date": "2022-05-19T03:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bf04a4f4-c54c-4408-8dcc-e1abe546a40e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-19T03:18:16.000Z" - }, - "end": { - "$date": "2022-05-19T05:18:51.000Z" - }, - "events": [ - { - "uuid": "1bcb5128-3aec-4eed-a77b-29025684ecc2", - "start": { - "$date": "2022-05-19T03:18:16.000Z" - }, - "end": { - "$date": "2022-05-19T05:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "0b9cf5f9-c4ef-4764-af70-a22ce90c9fa9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-19T04:03:00.000Z" - }, - "end": { - "$date": "2022-05-19T06:14:26.000Z" - }, - "events": [ - { - "uuid": "a9ebc61b-e73d-48d0-a5bd-03b3dd18d608", - "start": { - "$date": "2022-05-19T04:03:00.000Z" - }, - "end": { - "$date": "2022-05-19T06:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "91f44f4b-11e0-4cd3-9a53-d5bba854e657", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-19T04:22:08.000Z" - }, - "end": { - "$date": "2022-05-19T06:22:36.000Z" - }, - "events": [ - { - "uuid": "3574b89f-cef0-4e92-9460-88bf56aa2689", - "start": { - "$date": "2022-05-19T04:22:08.000Z" - }, - "end": { - "$date": "2022-05-19T06:22:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "8c351fca-9b35-45d9-8ae8-f27174219e03", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-19T14:10:02.000Z" - }, - "end": { - "$date": "2022-05-19T15:37:06.000Z" - }, - "events": [ - { - "uuid": "f651aa13-2ea7-470e-aa17-962e137ea283", - "start": { - "$date": "2022-05-19T14:10:02.000Z" - }, - "end": { - "$date": "2022-05-19T15:37:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "898e2925-28c4-46f9-825d-dae8f45449d2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-19T15:38:26.000Z" - }, - "end": { - "$date": "2022-05-19T17:14:20.000Z" - }, - "events": [ - { - "uuid": "ed32858a-c081-4ff7-956f-eb5945cf4887", - "start": { - "$date": "2022-05-19T15:38:26.000Z" - }, - "end": { - "$date": "2022-05-19T17:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "4ab92e88-1730-48e1-a32f-a7c862a9d104", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-19T17:15:25.000Z" - }, - "end": { - "$date": "2022-05-19T17:19:15.000Z" - }, - "events": [ - { - "uuid": "cac7bfbe-cd65-4131-b031-3f422ce82855", - "start": { - "$date": "2022-05-19T17:15:25.000Z" - }, - "end": { - "$date": "2022-05-19T17:19:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9d8758f-fa54-472f-b9f0-576994c58a44", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-19T17:20:25.000Z" - }, - "end": { - "$date": "2022-05-19T17:58:18.000Z" - }, - "events": [ - { - "uuid": "69e3a16c-277c-4428-bf71-f1ea5d461fdc", - "start": { - "$date": "2022-05-19T17:20:25.000Z" - }, - "end": { - "$date": "2022-05-19T17:58:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "4446e25d-2986-49f7-ac1e-6566d8846327", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-19T18:01:08.000Z" - }, - "end": { - "$date": "2022-05-19T18:47:06.000Z" - }, - "events": [ - { - "uuid": "96434036-1743-4b4a-b2d3-89ff8aea8b08", - "start": { - "$date": "2022-05-19T18:01:08.000Z" - }, - "end": { - "$date": "2022-05-19T18:47:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "fa72e7ec-9ac8-4979-9a68-0745230e51d7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-19T20:04:43.000Z" - }, - "end": { - "$date": "2022-05-19T21:38:21.000Z" - }, - "events": [ - { - "uuid": "70c2f2bd-472e-4071-aa9e-2dda718738a7", - "start": { - "$date": "2022-05-19T20:04:43.000Z" - }, - "end": { - "$date": "2022-05-19T21:38:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fa83e74b-5591-45e1-b987-c8bfd502fd88", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-19T21:46:05.000Z" - }, - "end": { - "$date": "2022-05-19T21:50:00.000Z" - }, - "events": [ - { - "uuid": "7e9b30cf-958e-4d4e-a192-f9e2c5c8c0da", - "start": { - "$date": "2022-05-19T21:46:05.000Z" - }, - "end": { - "$date": "2022-05-19T21:50:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "327b748e-5821-4ebf-a740-d0dca86e1ffd", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-19T22:40:41.000Z" - }, - "end": { - "$date": "2022-05-19T22:54:16.000Z" - }, - "events": [ - { - "uuid": "0d9c28b4-7332-40dc-913b-fe3909c1b0aa", - "start": { - "$date": "2022-05-19T22:40:41.000Z" - }, - "end": { - "$date": "2022-05-19T22:54:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "13ec3839-4c4d-4f39-ae0d-e955286b9c08", - "uuid": "057f0947-5ef8-4488-b01d-e3cb05c5274d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-19T23:01:39.000Z" - }, - "end": { - "$date": "2022-05-19T23:02:02.000Z" - }, - "events": [ - { - "uuid": "61360b11-a9ff-4dc8-b7a5-9dab1d9a97da", - "start": { - "$date": "2022-05-19T23:01:39.000Z" - }, - "end": { - "$date": "2022-05-19T23:02:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "86261349-f691-4df4-b149-7b01a474c33d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-19T23:02:14.000Z" - }, - "end": { - "$date": "2022-05-19T23:15:58.000Z" - }, - "events": [ - { - "uuid": "c3fbe2d9-2791-437b-9e44-07f9c8429c1f", - "start": { - "$date": "2022-05-19T23:02:14.000Z" - }, - "end": { - "$date": "2022-05-19T23:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "520865b3-57d0-494b-976a-973feab428b5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-19T23:08:04.000Z" - }, - "end": { - "$date": "2022-05-19T23:13:55.000Z" - }, - "events": [ - { - "uuid": "849d7542-fc77-4b33-bd2d-c0648e5456da", - "start": { - "$date": "2022-05-19T23:08:04.000Z" - }, - "end": { - "$date": "2022-05-19T23:13:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "caafe411-c64f-45ec-a093-c97a4e9f2089", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-19T23:20:35.000Z" - }, - "end": { - "$date": "2022-05-19T23:32:14.000Z" - }, - "events": [ - { - "uuid": "68c3f0bb-f277-4c43-9ec2-8d3bd0db212f", - "start": { - "$date": "2022-05-19T23:20:35.000Z" - }, - "end": { - "$date": "2022-05-19T23:32:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "2261f769-0990-49c6-86a7-efe92e388bd3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-19T23:38:31.000Z" - }, - "end": { - "$date": "2022-05-19T23:44:05.000Z" - }, - "events": [ - { - "uuid": "179a1a13-17dc-4524-a688-cae21a9c69c1", - "start": { - "$date": "2022-05-19T23:38:31.000Z" - }, - "end": { - "$date": "2022-05-19T23:44:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "8fe4bcdc-afae-4d3f-ac50-590a77dc4c8b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-20T00:25:30.000Z" - }, - "end": { - "$date": "2022-05-20T01:49:15.000Z" - }, - "events": [ - { - "uuid": "6bceaf18-0a02-4146-86df-01df3caec3f4", - "start": { - "$date": "2022-05-20T00:25:30.000Z" - }, - "end": { - "$date": "2022-05-20T01:49:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3a5b8d12-7fa0-4314-bbf4-f20097518c97", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-20T01:31:22.000Z" - }, - "end": { - "$date": "2022-05-20T04:55:50.000Z" - }, - "events": [ - { - "uuid": "5c3dffd0-005c-48db-b88e-a5f7a1ddbc1b", - "start": { - "$date": "2022-05-20T01:31:22.000Z" - }, - "end": { - "$date": "2022-05-20T04:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f73edfe1-0ccd-4b31-8b92-1856beaa2f4a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-20T02:06:32.000Z" - }, - "end": { - "$date": "2022-05-20T03:11:51.000Z" - }, - "events": [ - { - "uuid": "5ba709d8-014e-48d0-a2c1-fbb6f1d2e545", - "start": { - "$date": "2022-05-20T02:06:32.000Z" - }, - "end": { - "$date": "2022-05-20T03:11:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "59b07668-8783-4a78-9e44-4900705c3ec3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-20T02:11:48.000Z" - }, - "end": { - "$date": "2022-05-20T05:53:44.000Z" - }, - "events": [ - { - "uuid": "dba2df2a-ffe5-4618-9a0c-43fa118774b2", - "start": { - "$date": "2022-05-20T02:11:48.000Z" - }, - "end": { - "$date": "2022-05-20T05:53:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f1872dd7-2dc5-4856-83f8-09c2453a2d90", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-20T02:12:54.000Z" - }, - "end": { - "$date": "2022-05-20T05:50:37.000Z" - }, - "events": [ - { - "uuid": "93ff95dd-d5d2-44da-8e5a-644473567456", - "start": { - "$date": "2022-05-20T02:12:54.000Z" - }, - "end": { - "$date": "2022-05-20T05:50:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c570f597-9422-40b8-9c32-e62116e0a9ad", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-20T02:26:11.000Z" - }, - "end": { - "$date": "2022-05-21T04:18:47.000Z" - }, - "events": [ - { - "uuid": "62c5e5e7-c542-4525-8f35-83bcf7cc773c", - "start": { - "$date": "2022-05-20T02:26:11.000Z" - }, - "end": { - "$date": "2022-05-20T06:00:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0825b202-4cc3-4a51-bcfd-25cae286a8c9", - "start": { - "$date": "2022-05-20T06:00:11.000Z" - }, - "end": { - "$date": "2022-05-20T06:13:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "00d9daa0-719f-4d54-b769-e1572821f458", - "start": { - "$date": "2022-05-20T06:13:11.000Z" - }, - "end": { - "$date": "2022-05-20T06:15:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f1cf9d19-bd62-4665-bdaa-a844ac4dabd8", - "start": { - "$date": "2022-05-20T06:15:11.000Z" - }, - "end": { - "$date": "2022-05-20T06:21:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8080a6c0-ed2a-40f2-9a29-81e903390985", - "start": { - "$date": "2022-05-20T06:21:11.000Z" - }, - "end": { - "$date": "2022-05-20T06:23:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1eea3de2-afb4-4a20-a2b8-6997e5068528", - "start": { - "$date": "2022-05-20T06:23:11.000Z" - }, - "end": { - "$date": "2022-05-20T07:03:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2b4e2e37-2bd2-40d1-8345-34743062167a", - "start": { - "$date": "2022-05-20T07:03:11.000Z" - }, - "end": { - "$date": "2022-05-20T08:31:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f2d72490-f1b7-41e8-a6f9-ea942cbd59c9", - "start": { - "$date": "2022-05-20T08:31:11.000Z" - }, - "end": { - "$date": "2022-05-20T09:29:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "571d4ca5-a073-495f-8afe-2dbed009bf00", - "start": { - "$date": "2022-05-20T09:29:11.000Z" - }, - "end": { - "$date": "2022-05-20T13:52:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bbbfbe1b-f536-4057-b3e5-c55d3c60199a", - "start": { - "$date": "2022-05-20T13:52:11.000Z" - }, - "end": { - "$date": "2022-05-20T16:43:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fc0be0f2-d74e-40bc-812a-17499adbe034", - "start": { - "$date": "2022-05-20T16:43:11.000Z" - }, - "end": { - "$date": "2022-05-20T16:45:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0907db95-5673-4867-88b8-9bfd543caa2e", - "start": { - "$date": "2022-05-20T16:45:11.000Z" - }, - "end": { - "$date": "2022-05-20T16:46:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2d89ef19-ac24-434c-ab23-04fb6f2c7125", - "start": { - "$date": "2022-05-20T16:46:11.000Z" - }, - "end": { - "$date": "2022-05-20T16:48:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7243bad6-28d1-47af-8abe-60961803a5e2", - "start": { - "$date": "2022-05-20T16:48:11.000Z" - }, - "end": { - "$date": "2022-05-20T16:50:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7585e847-868d-4fac-ac9c-60c68b121fd0", - "start": { - "$date": "2022-05-20T16:50:11.000Z" - }, - "end": { - "$date": "2022-05-20T16:53:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff742cea-259b-47a1-83a4-4dcd95631da9", - "start": { - "$date": "2022-05-20T16:53:11.000Z" - }, - "end": { - "$date": "2022-05-21T02:26:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d1697ca-5907-4a21-9616-74dc1ef073e2", - "start": { - "$date": "2022-05-21T02:26:11.000Z" - }, - "end": { - "$date": "2022-05-21T02:30:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e38e521-1848-49c7-a045-79d167c7519d", - "start": { - "$date": "2022-05-21T02:30:11.000Z" - }, - "end": { - "$date": "2022-05-21T03:08:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5c9a3923-886f-493b-af06-2158d456558b", - "start": { - "$date": "2022-05-21T03:08:11.000Z" - }, - "end": { - "$date": "2022-05-21T03:10:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e38d37bc-c6b9-42df-8c62-af7bdc704ebf", - "start": { - "$date": "2022-05-21T03:10:11.000Z" - }, - "end": { - "$date": "2022-05-21T03:17:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a77095d1-1dc8-4124-95e5-33a4e27b0f27", - "start": { - "$date": "2022-05-21T03:17:11.000Z" - }, - "end": { - "$date": "2022-05-21T03:19:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ca8374b-3847-414a-a866-1a2a07ef0a99", - "start": { - "$date": "2022-05-21T03:19:11.000Z" - }, - "end": { - "$date": "2022-05-21T03:25:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "77e8e654-7bf4-4a93-8b7f-8bb2f6b392a7", - "start": { - "$date": "2022-05-21T03:25:11.000Z" - }, - "end": { - "$date": "2022-05-21T03:27:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2f319bdc-f9c1-4f87-8391-2175307884b8", - "start": { - "$date": "2022-05-21T03:27:11.000Z" - }, - "end": { - "$date": "2022-05-21T04:15:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c9b8139-80a1-4090-a738-2c05610e997a", - "start": { - "$date": "2022-05-21T04:15:11.000Z" - }, - "end": { - "$date": "2022-05-21T04:17:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e07c1361-c864-471f-97b2-641a3909243a", - "start": { - "$date": "2022-05-21T04:17:11.000Z" - }, - "end": { - "$date": "2022-05-21T04:18:47.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3f139d30-04a4-4543-a95c-3f6155246d86", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-20T03:12:56.000Z" - }, - "end": { - "$date": "2022-05-20T03:44:27.000Z" - }, - "events": [ - { - "uuid": "e9d5974e-46ca-4eb3-a82e-bba14533c965", - "start": { - "$date": "2022-05-20T03:12:56.000Z" - }, - "end": { - "$date": "2022-05-20T03:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "08f50ca4-1f18-48cd-b01d-f09e797f4816", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-20T03:56:39.000Z" - }, - "end": { - "$date": "2022-05-20T04:38:00.000Z" - }, - "events": [ - { - "uuid": "6444d388-49b8-4ec5-ba8d-b7b87a5f4477", - "start": { - "$date": "2022-05-20T03:56:39.000Z" - }, - "end": { - "$date": "2022-05-20T04:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6a89f902-9e12-4443-a7d9-531cfaa5313b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-20T04:02:40.000Z" - }, - "end": { - "$date": "2022-05-20T04:54:35.000Z" - }, - "events": [ - { - "uuid": "caa9c20f-d360-4647-9f48-14c7dbb3b3bf", - "start": { - "$date": "2022-05-20T04:02:40.000Z" - }, - "end": { - "$date": "2022-05-20T04:54:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "edc39068-15de-46b5-8071-35b0db291333", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-20T04:04:29.000Z" - }, - "end": { - "$date": "2022-05-20T04:04:48.000Z" - }, - "events": [ - { - "uuid": "086d1a57-7795-46de-8836-f5bf076d502f", - "start": { - "$date": "2022-05-20T04:04:29.000Z" - }, - "end": { - "$date": "2022-05-20T04:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "52e3298d-d3d6-4f2c-9232-11edae210e4e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-20T04:05:39.000Z" - }, - "end": { - "$date": "2022-05-20T04:49:34.000Z" - }, - "events": [ - { - "uuid": "753fe987-3c94-46bf-9ac0-42fb800a03fd", - "start": { - "$date": "2022-05-20T04:05:39.000Z" - }, - "end": { - "$date": "2022-05-20T04:49:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "a0ee68e8-a536-4f27-9ed3-42e46ba57603", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-20T04:49:45.000Z" - }, - "end": { - "$date": "2022-05-20T05:06:00.000Z" - }, - "events": [ - { - "uuid": "5c0092e7-f8a3-485d-96f7-22c2b91d61b5", - "start": { - "$date": "2022-05-20T04:49:45.000Z" - }, - "end": { - "$date": "2022-05-20T05:06:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "33ccd056-8876-4938-9d26-ea0ed1d9271c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-20T05:06:11.000Z" - }, - "end": { - "$date": "2022-05-20T05:39:26.000Z" - }, - "events": [ - { - "uuid": "87fcbeb8-9d39-4aef-821b-f0deecf050fb", - "start": { - "$date": "2022-05-20T05:06:11.000Z" - }, - "end": { - "$date": "2022-05-20T05:39:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "96740874-e8ab-46bf-affc-6b95c26b2549", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-20T05:33:06.000Z" - }, - "end": { - "$date": "2022-05-20T06:31:24.000Z" - }, - "events": [ - { - "uuid": "b084f891-3380-4dc7-91d9-f1e8a8af9b13", - "start": { - "$date": "2022-05-20T05:33:06.000Z" - }, - "end": { - "$date": "2022-05-20T06:31:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "6985e8b4-1db6-4227-ab35-db868f2c51f9", - "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", - "start": { - "$date": "2022-05-20T21:12:16.000Z" - }, - "end": { - "$date": "2022-05-20T21:14:41.000Z" - }, - "events": [ - { - "uuid": "dda77628-bd80-44e0-af26-e8c43bcf034a", - "start": { - "$date": "2022-05-20T21:12:16.000Z" - }, - "end": { - "$date": "2022-05-20T22:19:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "667f43d6-39a0-4855-b906-7b016600fe59", - "start": { - "$date": "2022-05-20T22:19:16.000Z" - }, - "end": { - "$date": "2022-05-20T22:32:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4d7bb1cf-8ffc-4676-8dcf-87c499a6974b", - "start": { - "$date": "2022-05-20T22:32:16.000Z" - }, - "end": { - "$date": "2022-05-20T22:47:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f01631b-1220-47a0-80c4-a105f37b11ae", - "start": { - "$date": "2022-05-20T22:47:16.000Z" - }, - "end": { - "$date": "2022-05-20T22:57:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0e4d1bb0-3913-44fc-b0b3-34ba81c7a060", - "start": { - "$date": "2022-05-20T22:57:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:02:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e80a0b0a-a29e-418b-a843-41feab56b1d6", - "start": { - "$date": "2022-05-20T23:02:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:10:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e1d3fcba-64ff-4a28-928f-c79913ece892", - "start": { - "$date": "2022-05-20T23:10:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:12:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e9106be-3805-4628-900a-8bd25c2fcbc5", - "start": { - "$date": "2022-05-20T23:12:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:38:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "123114a6-e5e1-4946-9867-6845208e799c", - "start": { - "$date": "2022-05-20T23:38:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:40:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc255c7a-226c-47ef-b651-6f74dd8dcb5c", - "start": { - "$date": "2022-05-20T23:40:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:46:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e704bfc6-72c2-4c84-8a59-855138542c59", - "start": { - "$date": "2022-05-20T23:46:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:48:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "174d1291-0798-4802-95e4-edc4366ad40e", - "start": { - "$date": "2022-05-20T23:48:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:52:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3c0e5560-3761-4683-afdf-6ceb9ae1f429", - "start": { - "$date": "2022-05-20T23:52:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:54:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ca06dd80-f615-429d-90f5-f62a0da50699", - "start": { - "$date": "2022-05-20T23:54:16.000Z" - }, - "end": { - "$date": "2022-05-20T23:59:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca648395-4da0-45d2-9bc8-9cf22c4a1b6e", - "start": { - "$date": "2022-05-20T23:59:16.000Z" - }, - "end": { - "$date": "2022-05-21T00:01:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b41a6fd-9d6e-4301-887a-707fd9329c8a", - "start": { - "$date": "2022-05-21T00:01:16.000Z" - }, - "end": { - "$date": "2022-05-21T00:05:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e6411823-2f61-462d-a358-f70162b2abe5", - "start": { - "$date": "2022-05-21T00:05:16.000Z" - }, - "end": { - "$date": "2022-05-20T21:14:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "58f39446-2639-4b2f-be6a-ad363c76d44d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-20T16:58:41.000Z" - }, - "end": { - "$date": "2022-05-20T17:23:52.000Z" - }, - "events": [ - { - "uuid": "c2f1868b-dfb3-46e6-a83c-d89fcfb1784e", - "start": { - "$date": "2022-05-20T16:58:41.000Z" - }, - "end": { - "$date": "2022-05-20T17:23:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "579361e3-f96b-4170-8071-77976fc8af5c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-20T17:27:02.000Z" - }, - "end": { - "$date": "2022-05-20T18:53:40.000Z" - }, - "events": [ - { - "uuid": "61453a6f-c44e-4316-bc9e-0659f2da9bcb", - "start": { - "$date": "2022-05-20T17:27:02.000Z" - }, - "end": { - "$date": "2022-05-20T18:53:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "52ccd1e9-c59c-4c21-b5c8-77a2c88736bb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-20T18:46:15.000Z" - }, - "end": { - "$date": "2022-05-20T19:48:42.000Z" - }, - "events": [ - { - "uuid": "ed18cd21-d218-42bd-a722-5bbbdc540fe6", - "start": { - "$date": "2022-05-20T18:46:15.000Z" - }, - "end": { - "$date": "2022-05-20T19:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "92f3b278-8191-4aef-8843-bbd339911b96", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-20T20:43:02.000Z" - }, - "end": { - "$date": "2022-05-20T22:46:58.000Z" - }, - "events": [ - { - "uuid": "e90e04c3-5fc5-4624-876f-8500affef305", - "start": { - "$date": "2022-05-20T20:43:02.000Z" - }, - "end": { - "$date": "2022-05-20T22:46:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "af74806e-ca11-4a30-ab45-b98a0b3f1925", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-20T21:14:09.000Z" - }, - "end": { - "$date": "2022-05-20T21:19:34.000Z" - }, - "events": [ - { - "uuid": "d68a06ff-d1e6-4b26-a9e5-825943079fb3", - "start": { - "$date": "2022-05-20T21:14:09.000Z" - }, - "end": { - "$date": "2022-05-20T21:19:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5fd7970f-8fb6-42c6-887e-d20b8abfca77", - "uuid": "c40e485b-63ff-4f56-bd69-1e6036787e11", - "user": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", - "start": { - "$date": "2022-05-20T21:53:15.000Z" - }, - "end": { - "$date": "2022-05-20T23:29:51.000Z" - }, - "events": [ - { - "uuid": "536f1026-cde7-4bcf-9289-484c040b53dd", - "start": { - "$date": "2022-05-20T21:53:15.000Z" - }, - "end": { - "$date": "2022-05-20T23:29:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f5c18cea-6e16-4adb-9a68-712710f8fe67", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-20T22:50:53.000Z" - }, - "end": { - "$date": "2022-05-21T01:16:30.000Z" - }, - "events": [ - { - "uuid": "711f1df3-a036-4387-966e-91f6bb1d16cf", - "start": { - "$date": "2022-05-20T22:50:53.000Z" - }, - "end": { - "$date": "2022-05-21T01:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "c4cf0358-97a2-41c3-b677-a2d95c41e80f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-21T02:56:45.000Z" - }, - "end": { - "$date": "2022-05-21T03:00:44.000Z" - }, - "events": [ - { - "uuid": "6f7170f7-0491-488f-87ba-e47097bd16d1", - "start": { - "$date": "2022-05-21T02:56:45.000Z" - }, - "end": { - "$date": "2022-05-21T03:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "63d8302b-0ce2-47ca-a407-81a7a77b7076", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-21T03:01:05.000Z" - }, - "end": { - "$date": "2022-05-21T03:05:00.000Z" - }, - "events": [ - { - "uuid": "eeb26fb2-d726-440d-b148-ad1975646327", - "start": { - "$date": "2022-05-21T03:01:05.000Z" - }, - "end": { - "$date": "2022-05-21T03:05:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "728dcefe-4c41-4cc3-b18a-d83e2a18bffd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-21T03:05:20.000Z" - }, - "end": { - "$date": "2022-05-21T06:02:27.000Z" - }, - "events": [ - { - "uuid": "1df27d0b-6276-4c45-8249-8a65b61d0302", - "start": { - "$date": "2022-05-21T03:05:20.000Z" - }, - "end": { - "$date": "2022-05-21T06:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1898e613-684f-4444-a675-1e0586acf3a5", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-21T03:28:33.000Z" - }, - "end": { - "$date": "2022-05-21T07:30:06.000Z" - }, - "events": [ - { - "uuid": "1a786ab5-e037-484f-953d-ebc2358561e2", - "start": { - "$date": "2022-05-21T03:28:33.000Z" - }, - "end": { - "$date": "2022-05-21T07:30:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "55af7e40-c39a-4519-b648-50c2530d2419", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-21T03:30:14.000Z" - }, - "end": { - "$date": "2022-05-21T07:49:25.000Z" - }, - "events": [ - { - "uuid": "2a377f31-b18e-47c5-af10-d3461bfef7b1", - "start": { - "$date": "2022-05-21T03:30:14.000Z" - }, - "end": { - "$date": "2022-05-21T07:48:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "efeb94f6-0cdb-44ba-9bd2-ed3c32f2494d", - "start": { - "$date": "2022-05-21T07:48:14.000Z" - }, - "end": { - "$date": "2022-05-21T07:49:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7db7d17c-3b96-46fd-98d2-9a418d8862f4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-21T04:20:08.000Z" - }, - "end": { - "$date": "2022-05-21T07:32:38.000Z" - }, - "events": [ - { - "uuid": "71a820c7-dc47-435e-a56e-77970031a232", - "start": { - "$date": "2022-05-21T04:20:08.000Z" - }, - "end": { - "$date": "2022-05-21T07:32:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "32708deb-eba5-4561-9b1d-c57025e952f3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-21T04:25:52.000Z" - }, - "end": { - "$date": "2022-05-21T04:27:21.000Z" - }, - "events": [ - { - "uuid": "86fcc2d0-6eaf-42eb-8ac6-ec6e9bc1ea86", - "start": { - "$date": "2022-05-21T04:25:52.000Z" - }, - "end": { - "$date": "2022-05-21T04:27:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "7acbccfd-f3e7-437d-bf2a-629107a67d8e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-21T04:28:12.000Z" - }, - "end": { - "$date": "2022-05-21T04:34:47.000Z" - }, - "events": [ - { - "uuid": "cbf3ff1e-2ef4-4c74-b6f4-fbcf683e6358", - "start": { - "$date": "2022-05-21T04:28:12.000Z" - }, - "end": { - "$date": "2022-05-21T04:34:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "30558e3d-5d01-47f9-8758-b13a695a178e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-21T04:36:53.000Z" - }, - "end": { - "$date": "2022-05-21T05:29:08.000Z" - }, - "events": [ - { - "uuid": "3a7e70e4-1d8d-4067-b96e-b75fb6c5b578", - "start": { - "$date": "2022-05-21T04:36:53.000Z" - }, - "end": { - "$date": "2022-05-21T05:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7ebf5fed-89f1-41d8-98fc-180a2b53efee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-21T05:30:21.000Z" - }, - "end": { - "$date": "2022-05-21T05:43:41.000Z" - }, - "events": [ - { - "uuid": "7aade89c-5585-48a5-adab-7762897f11bf", - "start": { - "$date": "2022-05-21T05:30:21.000Z" - }, - "end": { - "$date": "2022-05-21T05:43:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "f7b1f66a-0f3f-4d5e-82b7-2b6e679cbe89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-21T05:46:37.000Z" - }, - "end": { - "$date": "2022-05-21T06:19:27.000Z" - }, - "events": [ - { - "uuid": "35500ae9-99e3-4fb6-b7ca-cb34b1346277", - "start": { - "$date": "2022-05-21T05:46:37.000Z" - }, - "end": { - "$date": "2022-05-21T06:19:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "369641b3-2aec-4de1-9110-92afbe9f6939", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-21T05:54:37.000Z" - }, - "end": { - "$date": "2022-05-21T06:47:03.000Z" - }, - "events": [ - { - "uuid": "4772263c-fca5-4162-b51c-3c1b530d05f7", - "start": { - "$date": "2022-05-21T05:54:37.000Z" - }, - "end": { - "$date": "2022-05-21T06:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9697b0c8-5309-4797-a68e-c3f279d85044", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-21T06:11:33.000Z" - }, - "end": { - "$date": "2022-05-21T06:50:19.000Z" - }, - "events": [ - { - "uuid": "557820ae-f8c4-4531-92a4-d5e60cf27653", - "start": { - "$date": "2022-05-21T06:11:33.000Z" - }, - "end": { - "$date": "2022-05-21T06:50:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7b8a23a6-28a2-4690-833e-f9a1d9d8208f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-21T05:46:37.000Z" - }, - "end": { - "$date": "2022-05-21T07:26:00.000Z" - }, - "events": [ - { - "uuid": "074b732c-88bf-49c5-b6c2-07b43db39f87", - "start": { - "$date": "2022-05-21T05:46:37.000Z" - }, - "end": { - "$date": "2022-05-21T07:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "53ad0ebc-beb8-4378-8c91-71aee1df8cb1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-21T07:39:27.000Z" - }, - "end": { - "$date": "2022-05-21T07:57:05.000Z" - }, - "events": [ - { - "uuid": "34472534-adcc-4d4c-b814-4effa217140d", - "start": { - "$date": "2022-05-21T07:39:27.000Z" - }, - "end": { - "$date": "2022-05-21T07:57:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "055d0098-1285-4ad5-ad08-694210f089f7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-21T12:37:46.000Z" - }, - "end": { - "$date": "2022-05-21T13:11:12.000Z" - }, - "events": [ - { - "uuid": "1e6adc33-0738-4a42-8e53-4c86933bcaf6", - "start": { - "$date": "2022-05-21T12:37:46.000Z" - }, - "end": { - "$date": "2022-05-21T13:11:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "32465e4b-108e-446d-afd8-3df1505e8711", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-21T14:22:04.000Z" - }, - "end": { - "$date": "2022-05-21T14:40:26.000Z" - }, - "events": [ - { - "uuid": "1a5f75e2-0fe6-4248-9fac-c765207a3074", - "start": { - "$date": "2022-05-21T14:22:04.000Z" - }, - "end": { - "$date": "2022-05-21T14:40:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "1c09b604-eded-4348-a8c4-6df0d8612235", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T14:56:04.000Z" - }, - "end": { - "$date": "2022-05-21T16:03:11.000Z" - }, - "events": [ - { - "uuid": "ffca1553-580c-42a3-b439-16be716d2047", - "start": { - "$date": "2022-05-21T14:56:04.000Z" - }, - "end": { - "$date": "2022-05-21T16:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4dc1ec00-8a59-430d-be4e-5f54dd17b11f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T18:40:56.000Z" - }, - "end": { - "$date": "2022-05-21T19:17:18.000Z" - }, - "events": [ - { - "uuid": "c89b3926-0bd8-4b5d-9ba6-5de30044c26d", - "start": { - "$date": "2022-05-21T18:40:56.000Z" - }, - "end": { - "$date": "2022-05-21T19:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "9be5f1b7-6a66-4654-b2a3-3812f35acf49", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T19:17:43.000Z" - }, - "end": { - "$date": "2022-05-21T19:25:33.000Z" - }, - "events": [ - { - "uuid": "7fbd6e98-e70f-46ed-937f-f231101055df", - "start": { - "$date": "2022-05-21T19:17:43.000Z" - }, - "end": { - "$date": "2022-05-21T19:25:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f720b1ba-3ab2-4a06-9de3-c53a1b881dc1", - "uuid": "49eb4058-3c51-4baf-b597-2de2b83cd7aa", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-21T19:44:57.000Z" - }, - "end": { - "$date": "2022-05-21T19:51:57.000Z" - }, - "events": [ - { - "uuid": "f61fee8a-b4ec-45bb-a88e-72359347e1cb", - "start": { - "$date": "2022-05-21T19:44:57.000Z" - }, - "end": { - "$date": "2022-05-21T19:51:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "726c35d3-3fae-42f2-a495-e0bce5f3a051", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-21T20:01:59.000Z" - }, - "end": { - "$date": "2022-05-21T20:30:29.000Z" - }, - "events": [ - { - "uuid": "74b77e01-fc1d-4a0e-b120-4bfd48fc4b40", - "start": { - "$date": "2022-05-21T20:01:59.000Z" - }, - "end": { - "$date": "2022-05-21T20:30:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1db936f0-12f9-4747-a118-cd4cc1ff8e3e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T20:04:01.000Z" - }, - "end": { - "$date": "2022-05-21T20:30:37.000Z" - }, - "events": [ - { - "uuid": "1ae8edaa-570e-46a0-94b8-0464f78e45bb", - "start": { - "$date": "2022-05-21T20:04:01.000Z" - }, - "end": { - "$date": "2022-05-21T20:30:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "04b82c7e-18cc-4567-a903-9b2601aeac79", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T20:31:27.000Z" - }, - "end": { - "$date": "2022-05-21T21:27:30.000Z" - }, - "events": [ - { - "uuid": "8ccff681-0f5d-4fe3-b052-b0ab4f03e578", - "start": { - "$date": "2022-05-21T20:31:27.000Z" - }, - "end": { - "$date": "2022-05-21T21:27:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "01fe0b56-351d-4740-a763-affa3fd41ad4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-21T20:31:40.000Z" - }, - "end": { - "$date": "2022-05-21T21:27:43.000Z" - }, - "events": [ - { - "uuid": "382242c3-4872-4763-9aad-53dae275b9db", - "start": { - "$date": "2022-05-21T20:31:40.000Z" - }, - "end": { - "$date": "2022-05-21T21:27:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c0d578bd-6b0f-4893-ae5c-a1738797c08f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-21T21:10:37.000Z" - }, - "end": { - "$date": "2022-05-21T21:11:51.000Z" - }, - "events": [ - { - "uuid": "d7efc7af-93f6-4b00-96cd-7d69b5c8d704", - "start": { - "$date": "2022-05-21T21:10:37.000Z" - }, - "end": { - "$date": "2022-05-21T21:11:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f690d1d6-e43f-4596-b6df-3384807120b9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-21T21:21:50.000Z" - }, - "end": { - "$date": "2022-05-21T23:15:31.000Z" - }, - "events": [ - { - "uuid": "277a9e9c-9e8d-43d7-a4cc-9c92c4b37a69", - "start": { - "$date": "2022-05-21T21:21:50.000Z" - }, - "end": { - "$date": "2022-05-21T23:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6983871c-0842-40a0-a9db-b7c54e012181", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T22:20:31.000Z" - }, - "end": { - "$date": "2022-05-21T22:24:12.000Z" - }, - "events": [ - { - "uuid": "4962a5ba-01a5-4f2e-a3aa-af227658bbd1", - "start": { - "$date": "2022-05-21T22:20:31.000Z" - }, - "end": { - "$date": "2022-05-21T22:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fc1171bc-9a09-418a-af03-ff802d294a9b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-21T23:11:58.000Z" - }, - "end": { - "$date": "2022-05-22T00:50:57.000Z" - }, - "events": [ - { - "uuid": "65292e96-e4e6-40c2-8698-ec12f812e0f1", - "start": { - "$date": "2022-05-21T23:11:58.000Z" - }, - "end": { - "$date": "2022-05-22T00:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "240d95ee-626b-444a-b103-4589c498ad87", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-21T22:26:48.000Z" - }, - "end": { - "$date": "2022-05-22T00:24:20.000Z" - }, - "events": [ - { - "uuid": "d0f575c7-e64b-437e-a6ae-4399270ebb84", - "start": { - "$date": "2022-05-21T22:26:48.000Z" - }, - "end": { - "$date": "2022-05-22T00:24:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "b90f47c9-eb45-4ed1-ae9c-23fc6489707d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-21T22:31:51.000Z" - }, - "end": { - "$date": "2022-05-22T00:50:49.000Z" - }, - "events": [ - { - "uuid": "d2093554-2380-499e-892b-c75865df2a79", - "start": { - "$date": "2022-05-21T22:31:51.000Z" - }, - "end": { - "$date": "2022-05-22T00:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "b20a3f3f-91a3-4039-9f5f-d169eb41c416", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-21T23:46:46.000Z" - }, - "end": { - "$date": "2022-05-22T00:26:02.000Z" - }, - "events": [ - { - "uuid": "9d691683-ad88-4dc7-8b12-f226f87293b3", - "start": { - "$date": "2022-05-21T23:46:46.000Z" - }, - "end": { - "$date": "2022-05-22T00:26:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1807dd5b-1b73-474c-826e-85c9871ed972", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-22T00:26:30.000Z" - }, - "end": { - "$date": "2022-05-22T00:36:00.000Z" - }, - "events": [ - { - "uuid": "9a060568-1120-4483-bfd4-cdbf8ea5a825", - "start": { - "$date": "2022-05-22T00:26:30.000Z" - }, - "end": { - "$date": "2022-05-22T00:36:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "c7f16819-3e61-4f6e-80e3-225d9ef4f0f7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T00:51:57.000Z" - }, - "end": { - "$date": "2022-05-22T01:15:33.000Z" - }, - "events": [ - { - "uuid": "89f72aed-42f2-47df-ae28-73ce9daebd33", - "start": { - "$date": "2022-05-22T00:51:57.000Z" - }, - "end": { - "$date": "2022-05-22T01:15:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f7c5c6bc-9de3-4022-81aa-4afe234c9da1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T01:23:23.000Z" - }, - "end": { - "$date": "2022-05-22T01:31:20.000Z" - }, - "events": [ - { - "uuid": "8e2c9061-c28f-4e68-ac90-08c89a836814", - "start": { - "$date": "2022-05-22T01:23:23.000Z" - }, - "end": { - "$date": "2022-05-22T01:31:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b51d7c87-95b7-4b3d-a352-237320af65fc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T02:01:21.000Z" - }, - "end": { - "$date": "2022-05-22T03:05:37.000Z" - }, - "events": [ - { - "uuid": "2b7af325-a6c6-42cb-97fe-314e6b755c0d", - "start": { - "$date": "2022-05-22T02:01:21.000Z" - }, - "end": { - "$date": "2022-05-22T03:05:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8019555f-f2d2-4a30-8099-b7f727f151be", - "uuid": "803ce526-031c-48e9-8290-3569e23159a3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T02:09:57.000Z" - }, - "end": { - "$date": "2022-05-22T02:37:17.000Z" - }, - "events": [ - { - "uuid": "eb67230f-5ccd-4262-9c7c-a83c23078d99", - "start": { - "$date": "2022-05-22T02:09:57.000Z" - }, - "end": { - "$date": "2022-05-22T02:37:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6fe110ae-f8c4-4604-a072-2ac5d72ff94c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-22T03:00:41.000Z" - }, - "end": { - "$date": "2022-05-22T03:18:37.000Z" - }, - "events": [ - { - "uuid": "03b5d833-9a3a-4f4d-b4d3-079194964d8f", - "start": { - "$date": "2022-05-22T03:00:41.000Z" - }, - "end": { - "$date": "2022-05-22T03:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "fcb499af-65f2-4e7a-b000-4e619a34a073", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-22T03:20:07.000Z" - }, - "end": { - "$date": "2022-05-22T03:36:12.000Z" - }, - "events": [ - { - "uuid": "225c28a4-b11b-48b3-9dd9-be5e4f756b3b", - "start": { - "$date": "2022-05-22T03:20:07.000Z" - }, - "end": { - "$date": "2022-05-22T03:36:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "17271a27-1ead-4900-9c8b-476339205de7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T03:24:20.000Z" - }, - "end": { - "$date": "2022-05-22T03:29:35.000Z" - }, - "events": [ - { - "uuid": "0ccbd395-3eb9-4972-a28d-288864aee073", - "start": { - "$date": "2022-05-22T03:24:20.000Z" - }, - "end": { - "$date": "2022-05-22T03:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "ef0985ed-3f5d-46dd-a255-4b325df6760e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-22T03:28:05.000Z" - }, - "end": { - "$date": "2022-05-22T03:38:49.000Z" - }, - "events": [ - { - "uuid": "0302a70d-aeca-4043-aa32-d0cf16c199fa", - "start": { - "$date": "2022-05-22T03:28:05.000Z" - }, - "end": { - "$date": "2022-05-22T03:38:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3fd84611-9559-4dd7-b63f-b73f57d43038", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T03:29:41.000Z" - }, - "end": { - "$date": "2022-05-22T05:43:58.000Z" - }, - "events": [ - { - "uuid": "10f3426a-b12b-41d1-b6bf-b84ef05ae0c7", - "start": { - "$date": "2022-05-22T03:29:41.000Z" - }, - "end": { - "$date": "2022-05-22T05:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "775088bc-7ae0-4811-b3fc-b078ccf54f1c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-22T03:39:08.000Z" - }, - "end": { - "$date": "2022-05-22T04:19:25.000Z" - }, - "events": [ - { - "uuid": "de2fd2b9-efde-4c8e-b5e3-ad98330f4373", - "start": { - "$date": "2022-05-22T03:39:08.000Z" - }, - "end": { - "$date": "2022-05-22T04:19:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "efdd165c-5a68-438a-aaa2-d31ce3c1de81", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-22T03:39:15.000Z" - }, - "end": { - "$date": "2022-05-22T03:59:55.000Z" - }, - "events": [ - { - "uuid": "f73e0956-c7aa-4ba3-a6e5-6cec7f8ea501", - "start": { - "$date": "2022-05-22T03:39:15.000Z" - }, - "end": { - "$date": "2022-05-22T03:59:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7928cec8-43c2-4f9e-8eb0-38ad2d75d90e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-22T04:20:20.000Z" - }, - "end": { - "$date": "2022-05-22T06:27:21.000Z" - }, - "events": [ - { - "uuid": "39b3c6fa-9a01-4a51-bb45-3ffe662aa4e9", - "start": { - "$date": "2022-05-22T04:20:20.000Z" - }, - "end": { - "$date": "2022-05-22T06:27:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37ccf8d1-a267-4d36-8612-287ae4af9c7b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T04:54:48.000Z" - }, - "end": { - "$date": "2022-05-22T05:43:47.000Z" - }, - "events": [ - { - "uuid": "a44f4c89-7fbf-4021-9917-a6a21eb76e7f", - "start": { - "$date": "2022-05-22T04:54:48.000Z" - }, - "end": { - "$date": "2022-05-22T05:43:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "6a0e5fb4-ce85-4dbe-90c5-58cf3939b309", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T05:50:08.000Z" - }, - "end": { - "$date": "2022-05-22T06:39:02.000Z" - }, - "events": [ - { - "uuid": "0f2f8941-6c85-456f-8b8e-00ada9e5b0f9", - "start": { - "$date": "2022-05-22T05:50:08.000Z" - }, - "end": { - "$date": "2022-05-22T06:39:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "5a794fbf-72a1-464b-8dbd-43a9547d45b4", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T05:50:25.000Z" - }, - "end": { - "$date": "2022-05-22T06:39:23.000Z" - }, - "events": [ - { - "uuid": "0fe1f108-774b-4e9d-904c-575f603fc836", - "start": { - "$date": "2022-05-22T05:50:25.000Z" - }, - "end": { - "$date": "2022-05-22T06:39:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b575d480-c2f1-4b7c-a35e-81f156f09741", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-22T06:27:36.000Z" - }, - "end": { - "$date": "2022-05-22T06:31:01.000Z" - }, - "events": [ - { - "uuid": "0f0b7da1-f839-4402-b51a-781a101c6464", - "start": { - "$date": "2022-05-22T06:27:36.000Z" - }, - "end": { - "$date": "2022-05-22T06:31:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "731d521c-b6d0-408c-aeaf-68c7b1a7e6ed", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T06:39:42.000Z" - }, - "end": { - "$date": "2022-05-22T07:57:04.000Z" - }, - "events": [ - { - "uuid": "d136961b-fafa-461a-a343-fc2d263a6da2", - "start": { - "$date": "2022-05-22T06:39:42.000Z" - }, - "end": { - "$date": "2022-05-22T07:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "47486ee5-1ec9-4e97-8cdd-1a10e2140bdc", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T06:40:09.000Z" - }, - "end": { - "$date": "2022-05-22T08:21:40.000Z" - }, - "events": [ - { - "uuid": "b352be93-c0cc-4f2d-aa37-85d637818f97", - "start": { - "$date": "2022-05-22T06:40:09.000Z" - }, - "end": { - "$date": "2022-05-22T08:21:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "7971d1cd-1534-4590-9f9c-aef897243a99", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-22T11:21:20.000Z" - }, - "end": { - "$date": "2022-05-22T15:06:25.000Z" - }, - "events": [ - { - "uuid": "97d00430-5ae0-48cb-b1ae-b7f93aca6635", - "start": { - "$date": "2022-05-22T11:21:20.000Z" - }, - "end": { - "$date": "2022-05-22T15:06:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e76731be-fed4-4846-92d8-d828ba7ecae5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T16:36:34.000Z" - }, - "end": { - "$date": "2022-05-22T16:39:25.000Z" - }, - "events": [ - { - "uuid": "138dde5b-b181-408d-b032-210300044b0e", - "start": { - "$date": "2022-05-22T16:36:34.000Z" - }, - "end": { - "$date": "2022-05-22T16:39:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "5afd8aed-02a7-4d84-b736-0f3b16751ec6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T16:39:45.000Z" - }, - "end": { - "$date": "2022-05-22T16:58:51.000Z" - }, - "events": [ - { - "uuid": "61ece9d6-4402-4ab5-b4e0-36e168c4cdd0", - "start": { - "$date": "2022-05-22T16:39:45.000Z" - }, - "end": { - "$date": "2022-05-22T16:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "62dbda30-03ec-45a0-bc2f-1d1a892979a4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T17:17:23.000Z" - }, - "end": { - "$date": "2022-05-22T18:53:39.000Z" - }, - "events": [ - { - "uuid": "c8ba90b5-77a4-42db-aaf0-51348d1cd8ca", - "start": { - "$date": "2022-05-22T17:17:23.000Z" - }, - "end": { - "$date": "2022-05-22T18:53:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2ef4bdbe-f955-4cfd-bbf5-b8a88ac92081", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T19:56:35.000Z" - }, - "end": { - "$date": "2022-05-22T21:17:32.000Z" - }, - "events": [ - { - "uuid": "4753bcb4-4e55-4a38-bbb2-6a5620876cf5", - "start": { - "$date": "2022-05-22T19:56:35.000Z" - }, - "end": { - "$date": "2022-05-22T21:17:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "6995e7e6-054a-48ed-9d27-af9ef90f66f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T21:10:19.000Z" - }, - "end": { - "$date": "2022-05-22T22:03:53.000Z" - }, - "events": [ - { - "uuid": "9277f61c-0a23-4937-8d32-842d2a49b9f3", - "start": { - "$date": "2022-05-22T21:10:19.000Z" - }, - "end": { - "$date": "2022-05-22T22:03:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "56f20bfc-890d-40d2-b252-1d4faac7c108", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-22T22:22:39.000Z" - }, - "end": { - "$date": "2022-05-22T23:58:22.000Z" - }, - "events": [ - { - "uuid": "a3692e27-ff31-491f-8109-71884d716f89", - "start": { - "$date": "2022-05-22T22:22:39.000Z" - }, - "end": { - "$date": "2022-05-22T23:58:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "adac0d59-fc6f-410d-bb38-66a083cd9e76", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-22T22:20:39.000Z" - }, - "end": { - "$date": "2022-05-23T00:13:37.000Z" - }, - "events": [ - { - "uuid": "9d26b27a-4580-4f75-863d-e8894f81491f", - "start": { - "$date": "2022-05-22T22:20:39.000Z" - }, - "end": { - "$date": "2022-05-23T00:13:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "cd82d4df-da0e-40cd-b9ee-2af905dc1841", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-22T22:34:14.000Z" - }, - "end": { - "$date": "2022-05-22T23:11:34.000Z" - }, - "events": [ - { - "uuid": "4cc18f73-27fc-462c-8933-47bdee819d3b", - "start": { - "$date": "2022-05-22T22:34:14.000Z" - }, - "end": { - "$date": "2022-05-22T23:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c8781e00-e859-4636-997b-49d7c85ea212", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-23T00:13:52.000Z" - }, - "end": { - "$date": "2022-05-23T01:15:31.000Z" - }, - "events": [ - { - "uuid": "d727f4ac-d2ce-43b4-99eb-f4e30520b732", - "start": { - "$date": "2022-05-23T00:13:52.000Z" - }, - "end": { - "$date": "2022-05-23T01:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "2068329e-36a2-4fc7-b0ee-3e7e0b26a540", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-23T00:33:16.000Z" - }, - "end": { - "$date": "2022-05-23T02:08:07.000Z" - }, - "events": [ - { - "uuid": "d63f63a6-4868-4dbb-a7f9-edaa5acc965a", - "start": { - "$date": "2022-05-23T00:33:16.000Z" - }, - "end": { - "$date": "2022-05-23T01:55:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2744d9b-e02f-44b8-9e56-1354a9b474fb", - "start": { - "$date": "2022-05-23T01:55:16.000Z" - }, - "end": { - "$date": "2022-05-23T02:08:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "7033e685-e570-4434-95d7-859067c011b9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T00:40:11.000Z" - }, - "end": { - "$date": "2022-05-23T00:45:32.000Z" - }, - "events": [ - { - "uuid": "f8b64ec1-e14c-4ae0-b737-de54df7c149d", - "start": { - "$date": "2022-05-23T00:40:11.000Z" - }, - "end": { - "$date": "2022-05-23T00:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "cd33c7c3-0237-4bd1-ac01-4de90c4e2100", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T00:54:22.000Z" - }, - "end": { - "$date": "2022-05-23T02:07:44.000Z" - }, - "events": [ - { - "uuid": "0eda6816-ad54-43a9-83d7-d2f7b15b5873", - "start": { - "$date": "2022-05-23T00:54:22.000Z" - }, - "end": { - "$date": "2022-05-23T02:07:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "4531e26c-d4c4-425f-98a7-40f958cd41c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-23T01:21:57.000Z" - }, - "end": { - "$date": "2022-05-23T02:30:54.000Z" - }, - "events": [ - { - "uuid": "8548e2d1-cfff-4dd8-8684-c2d7bcaf5c14", - "start": { - "$date": "2022-05-23T01:21:57.000Z" - }, - "end": { - "$date": "2022-05-23T02:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03539e31-298c-4c19-9815-226144f13804", - "uuid": "41b61fda-872b-4055-810c-19cc0d6d47e8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T02:07:49.000Z" - }, - "end": { - "$date": "2022-05-23T02:38:30.000Z" - }, - "events": [ - { - "uuid": "15b816c8-65a7-4722-87f3-075c6d201e61", - "start": { - "$date": "2022-05-23T02:07:49.000Z" - }, - "end": { - "$date": "2022-05-23T02:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "6676d0de-f5a7-44c6-ad97-7f4ebfa9e443", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-23T02:08:58.000Z" - }, - "end": { - "$date": "2022-05-23T02:19:53.000Z" - }, - "events": [ - { - "uuid": "4133fd6e-ad11-4eaa-b2eb-d03616e0f228", - "start": { - "$date": "2022-05-23T02:08:58.000Z" - }, - "end": { - "$date": "2022-05-23T02:19:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "5df3380e-5124-45e2-a52b-b49eedfd3af8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T02:38:35.000Z" - }, - "end": { - "$date": "2022-05-23T04:32:28.000Z" - }, - "events": [ - { - "uuid": "cd381a05-0bce-4f42-b7a1-837b63da70b3", - "start": { - "$date": "2022-05-23T02:38:35.000Z" - }, - "end": { - "$date": "2022-05-23T04:32:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "02682ca5-82c6-4d85-8824-84f80833aecd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-23T02:56:41.000Z" - }, - "end": { - "$date": "2022-05-23T05:13:28.000Z" - }, - "events": [ - { - "uuid": "282cb94f-afad-4525-baca-001ec4f619ce", - "start": { - "$date": "2022-05-23T02:56:41.000Z" - }, - "end": { - "$date": "2022-05-23T05:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "357df372-91ad-4ed5-a791-512ee573f594", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-23T03:43:42.000Z" - }, - "end": { - "$date": "2022-05-23T05:38:38.000Z" - }, - "events": [ - { - "uuid": "0980ac3a-e79f-4850-8627-3af5bbfc8987", - "start": { - "$date": "2022-05-23T03:43:42.000Z" - }, - "end": { - "$date": "2022-05-23T05:38:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "931ffdb0-6191-41bd-b88a-4b94e958a8e6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T05:57:15.000Z" - }, - "end": { - "$date": "2022-05-23T07:15:31.000Z" - }, - "events": [ - { - "uuid": "325851e4-476c-4c2a-98cd-e85096b4bde6", - "start": { - "$date": "2022-05-23T05:57:15.000Z" - }, - "end": { - "$date": "2022-05-23T07:15:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "245d2845-6471-4c14-823d-496f60c34113", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-23T06:27:21.000Z" - }, - "end": { - "$date": "2022-05-23T06:40:42.000Z" - }, - "events": [ - { - "uuid": "fbb67585-a4a3-4079-8474-eb96cda27c0b", - "start": { - "$date": "2022-05-23T06:27:21.000Z" - }, - "end": { - "$date": "2022-05-23T06:40:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "d7ad2b6d-7098-4afa-aff5-a6979d6d2a26", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-23T11:17:44.000Z" - }, - "end": { - "$date": "2022-05-23T12:48:55.000Z" - }, - "events": [ - { - "uuid": "6adeb0df-d1c2-41f5-ac0b-be1cb3cb85ee", - "start": { - "$date": "2022-05-23T11:17:44.000Z" - }, - "end": { - "$date": "2022-05-23T12:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ffdcce51-02e7-4466-aef5-07b7821be61c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-23T16:33:34.000Z" - }, - "end": { - "$date": "2022-05-23T17:12:51.000Z" - }, - "events": [ - { - "uuid": "b0807cc6-8bb5-4039-b4cc-e62edb2ad7d0", - "start": { - "$date": "2022-05-23T16:33:34.000Z" - }, - "end": { - "$date": "2022-05-23T17:12:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "57d8a277-c67b-48e2-ae77-69b0eab4d766", - "uuid": "eacb39dc-5099-474c-ade5-d7b073929cf7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-23T17:13:46.000Z" - }, - "end": { - "$date": "2022-05-23T17:16:11.000Z" - }, - "events": [ - { - "uuid": "095ba4b9-4f73-4971-87fa-20c1db41d05f", - "start": { - "$date": "2022-05-23T17:13:46.000Z" - }, - "end": { - "$date": "2022-05-23T17:16:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "093e4c67-ed19-4bf4-8881-fad2009d8cd9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T18:30:41.000Z" - }, - "end": { - "$date": "2022-05-23T19:34:04.000Z" - }, - "events": [ - { - "uuid": "a3b9b765-08f1-4151-b9aa-23afdf7c926d", - "start": { - "$date": "2022-05-23T18:30:41.000Z" - }, - "end": { - "$date": "2022-05-23T19:34:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "0822e10e-78b2-4640-8c3c-e921aa544215", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-23T22:06:22.000Z" - }, - "end": { - "$date": "2022-05-23T23:38:48.000Z" - }, - "events": [ - { - "uuid": "10cb0f40-3905-45c4-ab83-7dda312a695b", - "start": { - "$date": "2022-05-23T22:06:22.000Z" - }, - "end": { - "$date": "2022-05-23T23:38:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8402e513-5ecd-4aa9-a5cf-9422f146cc06", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-23T23:36:21.000Z" - }, - "end": { - "$date": "2022-05-24T00:55:08.000Z" - }, - "events": [ - { - "uuid": "3f21242f-40ba-484d-a4ef-e977eb1f5695", - "start": { - "$date": "2022-05-23T23:36:21.000Z" - }, - "end": { - "$date": "2022-05-24T00:55:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "0b67b7c0-b0d7-49f5-a167-7f20404a2142", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T00:43:00.000Z" - }, - "end": { - "$date": "2022-05-24T00:54:28.000Z" - }, - "events": [ - { - "uuid": "f60b7653-ed42-41b2-a48a-af53c9a410a9", - "start": { - "$date": "2022-05-24T00:43:00.000Z" - }, - "end": { - "$date": "2022-05-24T00:54:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1ba181ea-9a7b-40f5-a928-ab3bf06cc41f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T00:55:23.000Z" - }, - "end": { - "$date": "2022-05-24T03:37:59.000Z" - }, - "events": [ - { - "uuid": "9f5b896b-8cac-4a36-a3fb-747d50e2f737", - "start": { - "$date": "2022-05-24T00:55:23.000Z" - }, - "end": { - "$date": "2022-05-24T02:05:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8365994b-f8cc-42cc-a404-8141933e8eab", - "start": { - "$date": "2022-05-24T02:05:23.000Z" - }, - "end": { - "$date": "2022-05-24T02:43:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be378323-0bea-4b00-8c1d-cb3d63f6c23f", - "start": { - "$date": "2022-05-24T02:43:23.000Z" - }, - "end": { - "$date": "2022-05-24T03:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "551f8617-a58b-4df5-9af6-16583bcfd422", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-24T01:26:11.000Z" - }, - "end": { - "$date": "2022-05-24T02:00:48.000Z" - }, - "events": [ - { - "uuid": "8157bda2-9d01-4907-9e00-7ddea1ced1f1", - "start": { - "$date": "2022-05-24T01:26:11.000Z" - }, - "end": { - "$date": "2022-05-24T02:00:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "26b63fa7-58cb-4b36-b1a9-3e6a8ef6edb9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-24T02:14:20.000Z" - }, - "end": { - "$date": "2022-05-24T05:59:11.000Z" - }, - "events": [ - { - "uuid": "bc63f0c3-a5cd-4fbd-bd8d-979ecf2786fb", - "start": { - "$date": "2022-05-24T02:14:20.000Z" - }, - "end": { - "$date": "2022-05-24T05:59:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "55918a52-a6b6-4ca2-b201-120ed5d3b02d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-24T02:33:16.000Z" - }, - "end": { - "$date": "2022-05-24T03:06:59.000Z" - }, - "events": [ - { - "uuid": "b9833403-b31c-4d94-9fda-7f3fe7f3444f", - "start": { - "$date": "2022-05-24T02:33:16.000Z" - }, - "end": { - "$date": "2022-05-24T03:06:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ba1d699c-f1de-4c85-922a-7d51ef3a7427", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-24T02:43:43.000Z" - }, - "end": { - "$date": "2022-05-24T04:12:02.000Z" - }, - "events": [ - { - "uuid": "263679cf-a63a-46f3-9830-a91e278e288b", - "start": { - "$date": "2022-05-24T02:43:43.000Z" - }, - "end": { - "$date": "2022-05-24T04:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8ea5dc2-2e63-4dd1-a5b6-a823b5562c78", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-24T03:05:19.000Z" - }, - "end": { - "$date": "2022-05-24T04:45:36.000Z" - }, - "events": [ - { - "uuid": "99b4b154-a5a1-4acd-9d01-e28ea227b803", - "start": { - "$date": "2022-05-24T03:05:19.000Z" - }, - "end": { - "$date": "2022-05-24T04:45:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f871fc1f-f280-4733-aaf1-e33060285c25", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T03:38:29.000Z" - }, - "end": { - "$date": "2022-05-24T03:56:51.000Z" - }, - "events": [ - { - "uuid": "4d4972ff-6560-4b08-a756-9f6ca833477a", - "start": { - "$date": "2022-05-24T03:38:29.000Z" - }, - "end": { - "$date": "2022-05-24T03:56:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "162a6cfe-9db8-43df-825e-dfe96518c4f9", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-24T03:40:37.000Z" - }, - "end": { - "$date": "2022-05-24T05:32:32.000Z" - }, - "events": [ - { - "uuid": "8a46c9ac-fd01-4933-a051-c6dfc5809c79", - "start": { - "$date": "2022-05-24T03:40:37.000Z" - }, - "end": { - "$date": "2022-05-24T03:42:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4e0e0317-d5b5-446b-aab8-579571e4df7c", - "start": { - "$date": "2022-05-24T03:42:37.000Z" - }, - "end": { - "$date": "2022-05-24T03:44:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9af3000-4a07-4fb1-a5bc-d7926199b19b", - "start": { - "$date": "2022-05-24T03:44:37.000Z" - }, - "end": { - "$date": "2022-05-24T05:28:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33c6db1e-0b60-4cc2-960c-c0f97b84d977", - "start": { - "$date": "2022-05-24T05:28:37.000Z" - }, - "end": { - "$date": "2022-05-24T05:32:32.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "abdad557-3bac-42a7-ad72-1cff46da68f5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-24T04:02:36.000Z" - }, - "end": { - "$date": "2022-05-24T04:30:56.000Z" - }, - "events": [ - { - "uuid": "478a5f9f-3a37-4ba3-bd08-b8802476c731", - "start": { - "$date": "2022-05-24T04:02:36.000Z" - }, - "end": { - "$date": "2022-05-24T04:30:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "64b8f13f-0054-4153-b8f6-e75d7b9582cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T04:11:34.000Z" - }, - "end": { - "$date": "2022-05-24T04:33:02.000Z" - }, - "events": [ - { - "uuid": "f8570563-59dc-4f88-92e0-dc2d9e29a54f", - "start": { - "$date": "2022-05-24T04:11:34.000Z" - }, - "end": { - "$date": "2022-05-24T04:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "0e57810c-3922-4f81-afbc-291e39b56b11", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T04:35:03.000Z" - }, - "end": { - "$date": "2022-05-24T05:03:56.000Z" - }, - "events": [ - { - "uuid": "36122d1a-31db-49c5-8c3b-a50988522828", - "start": { - "$date": "2022-05-24T04:35:03.000Z" - }, - "end": { - "$date": "2022-05-24T05:03:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2cb3bc66-75b3-411d-87f6-b3bcde1d3630", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-24T05:00:56.000Z" - }, - "end": { - "$date": "2022-05-24T05:44:01.000Z" - }, - "events": [ - { - "uuid": "ee231a20-b22c-4ee7-8f51-157ec4ea79ba", - "start": { - "$date": "2022-05-24T05:00:56.000Z" - }, - "end": { - "$date": "2022-05-24T05:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0dc3f722-336d-40eb-93ff-ff29d419e8eb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-24T15:04:41.000Z" - }, - "end": { - "$date": "2022-05-24T16:17:44.000Z" - }, - "events": [ - { - "uuid": "7f8fb8cd-e756-47d4-9da8-43fada2c2059", - "start": { - "$date": "2022-05-24T15:04:41.000Z" - }, - "end": { - "$date": "2022-05-24T16:17:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "493a3439-b466-44fe-8159-758856b48d86", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-24T15:39:08.000Z" - }, - "end": { - "$date": "2022-05-24T15:44:25.000Z" - }, - "events": [ - { - "uuid": "abea99cc-9c05-4409-8e61-54f2e2bcab6f", - "start": { - "$date": "2022-05-24T15:39:08.000Z" - }, - "end": { - "$date": "2022-05-24T15:44:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9873e8d1-cbc1-46f3-9cfa-1577aeb78659", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-24T16:40:21.000Z" - }, - "end": { - "$date": "2022-05-24T17:16:18.000Z" - }, - "events": [ - { - "uuid": "0749b021-a3a4-460d-a96d-da4022b2c223", - "start": { - "$date": "2022-05-24T16:40:21.000Z" - }, - "end": { - "$date": "2022-05-24T17:16:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "9d0a2317-0692-4d50-a7b4-04f486d26255", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-24T17:02:20.000Z" - }, - "end": { - "$date": "2022-05-24T17:06:20.000Z" - }, - "events": [ - { - "uuid": "5a9e53cb-f2fb-4a4a-a44d-7b988409019e", - "start": { - "$date": "2022-05-24T17:02:20.000Z" - }, - "end": { - "$date": "2022-05-24T17:06:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "18295547-dab8-41b5-906b-ee24f2078ae8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-24T20:27:21.000Z" - }, - "end": { - "$date": "2022-05-24T21:08:49.000Z" - }, - "events": [ - { - "uuid": "047de119-2993-45ce-aea3-4711962e2219", - "start": { - "$date": "2022-05-24T20:27:21.000Z" - }, - "end": { - "$date": "2022-05-24T21:08:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dc7257bb-0c6b-4e3f-aff7-008f4d8d07bd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T20:50:37.000Z" - }, - "end": { - "$date": "2022-05-24T21:04:48.000Z" - }, - "events": [ - { - "uuid": "684b946e-93c6-491b-851f-6a55bd75d2e7", - "start": { - "$date": "2022-05-24T20:50:37.000Z" - }, - "end": { - "$date": "2022-05-24T21:04:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "dfa32d4c-a298-4de5-981d-2f3ab29b0083", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-24T21:20:24.000Z" - }, - "end": { - "$date": "2022-05-24T21:50:20.000Z" - }, - "events": [ - { - "uuid": "aee2ebff-1c50-44c1-93f0-5fc5567668d1", - "start": { - "$date": "2022-05-24T21:20:24.000Z" - }, - "end": { - "$date": "2022-05-24T21:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c30e6fb4-3130-4f4a-b981-8868750141b8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-24T21:25:02.000Z" - }, - "end": { - "$date": "2022-05-24T23:06:31.000Z" - }, - "events": [ - { - "uuid": "24a514c4-c0e4-4130-bcb0-a821dd369786", - "start": { - "$date": "2022-05-24T21:25:02.000Z" - }, - "end": { - "$date": "2022-05-24T21:37:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a68130e-9624-4988-b9b3-7745d1e8e2e7", - "start": { - "$date": "2022-05-24T21:37:02.000Z" - }, - "end": { - "$date": "2022-05-24T22:08:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "689f0bf6-240e-4c46-8a19-b54e4c0ddc38", - "start": { - "$date": "2022-05-24T22:08:02.000Z" - }, - "end": { - "$date": "2022-05-24T22:28:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "15edc21d-92c5-4993-9e87-956370469fe8", - "start": { - "$date": "2022-05-24T22:28:02.000Z" - }, - "end": { - "$date": "2022-05-24T22:32:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "52889a8f-d5f0-47f3-ad33-a05e59bcaa25", - "start": { - "$date": "2022-05-24T22:32:02.000Z" - }, - "end": { - "$date": "2022-05-24T23:06:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "89eb2d17-41a0-4961-bc34-055fa51a69a9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-24T22:12:31.000Z" - }, - "end": { - "$date": "2022-05-24T23:01:14.000Z" - }, - "events": [ - { - "uuid": "8df1479e-04f3-43d8-b6b9-ca88018200ca", - "start": { - "$date": "2022-05-24T22:12:31.000Z" - }, - "end": { - "$date": "2022-05-24T23:01:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "3ad7e5f3-7d0a-4b7c-94ef-c927b245b7bc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-24T22:57:50.000Z" - }, - "end": { - "$date": "2022-05-25T01:41:19.000Z" - }, - "events": [ - { - "uuid": "9c1b3cff-101c-49e0-af78-ac7125cc1898", - "start": { - "$date": "2022-05-24T22:57:50.000Z" - }, - "end": { - "$date": "2022-05-24T23:47:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d4c16dae-a53f-4af4-8271-77f5c6c2f548", - "start": { - "$date": "2022-05-24T23:47:50.000Z" - }, - "end": { - "$date": "2022-05-24T23:53:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0dc01129-55e1-4634-94f0-e518fcc26dd6", - "start": { - "$date": "2022-05-24T23:53:50.000Z" - }, - "end": { - "$date": "2022-05-25T01:41:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "858510c5-ad63-48a9-ae9d-2c0163b83dd7", - "uuid": "c064d39f-f802-4789-8c44-f34a62003215", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-24T23:09:15.000Z" - }, - "end": { - "$date": "2022-05-24T23:20:50.000Z" - }, - "events": [ - { - "uuid": "f8032e40-ddaf-4a15-9100-f1130fa6424b", - "start": { - "$date": "2022-05-24T23:09:15.000Z" - }, - "end": { - "$date": "2022-05-24T23:20:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "252b1fed-34f4-4c66-a5f2-22deceb7bac0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-21T03:30:14.000Z" - }, - "end": { - "$date": "2022-05-24T23:31:23.000Z" - }, - "events": [ - { - "uuid": "94bf7145-578f-43cd-9385-d6cadd5a1373", - "start": { - "$date": "2022-05-21T03:30:14.000Z" - }, - "end": { - "$date": "2022-05-24T23:31:23.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff444bd5-a83b-4e2a-b140-150465796409", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-25T00:05:15.000Z" - }, - "end": { - "$date": "2022-05-25T00:06:35.000Z" - }, - "events": [ - { - "uuid": "b1efadc7-3697-4715-a356-8c999d7033d6", - "start": { - "$date": "2022-05-25T00:05:15.000Z" - }, - "end": { - "$date": "2022-05-25T00:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bede66ad-acec-42e7-b843-af885869b882", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-25T00:06:45.000Z" - }, - "end": { - "$date": "2022-05-25T01:48:52.000Z" - }, - "events": [ - { - "uuid": "a82eb1ee-8fa2-4bb2-bee8-2502024d5a9d", - "start": { - "$date": "2022-05-25T00:06:45.000Z" - }, - "end": { - "$date": "2022-05-25T01:48:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0e78003-5ddd-4354-804b-df6234439767", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-25T01:45:26.000Z" - }, - "end": { - "$date": "2022-05-25T02:26:44.000Z" - }, - "events": [ - { - "uuid": "16a672ec-3c24-4a28-bf0c-a36b1ae38995", - "start": { - "$date": "2022-05-25T01:45:26.000Z" - }, - "end": { - "$date": "2022-05-25T02:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "51145704-58c4-4721-97e5-1a5f7b1c462a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-25T01:45:45.000Z" - }, - "end": { - "$date": "2022-05-25T06:03:17.000Z" - }, - "events": [ - { - "uuid": "b733ac71-29f0-486c-a997-ada149ac021d", - "start": { - "$date": "2022-05-25T01:45:45.000Z" - }, - "end": { - "$date": "2022-05-25T06:03:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "564c0598-0088-4caa-bd08-1c6730190241", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-25T01:48:22.000Z" - }, - "end": { - "$date": "2022-05-25T03:45:05.000Z" - }, - "events": [ - { - "uuid": "4d27cd40-c0dd-42c6-8555-1cc125387d3d", - "start": { - "$date": "2022-05-25T01:48:22.000Z" - }, - "end": { - "$date": "2022-05-25T02:41:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7af5c313-8911-4b5b-9bfd-4b36bde3c7e5", - "start": { - "$date": "2022-05-25T02:41:22.000Z" - }, - "end": { - "$date": "2022-05-25T03:00:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "800ecacf-010b-428d-a27e-676cae56028e", - "start": { - "$date": "2022-05-25T03:00:22.000Z" - }, - "end": { - "$date": "2022-05-25T03:20:22.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7524cdbc-8a8e-4e2b-b0ab-bfcf9f1416fd", - "start": { - "$date": "2022-05-25T03:20:22.000Z" - }, - "end": { - "$date": "2022-05-25T03:22:22.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4497c112-240e-4eff-9b18-7378a8ccbada", - "start": { - "$date": "2022-05-25T03:22:22.000Z" - }, - "end": { - "$date": "2022-05-25T03:45:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "23a16412-500e-446a-a339-9f26bc3f571f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-25T01:49:06.000Z" - }, - "end": { - "$date": "2022-05-25T04:44:59.000Z" - }, - "events": [ - { - "uuid": "2ec0ec6b-5309-443d-ab56-93c91c20470e", - "start": { - "$date": "2022-05-25T01:49:06.000Z" - }, - "end": { - "$date": "2022-05-25T04:44:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "cee87696-2862-4e8a-a411-300ecd12fbb4", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-25T01:53:48.000Z" - }, - "end": { - "$date": "2022-05-25T01:55:08.000Z" - }, - "events": [ - { - "uuid": "d84c96ce-0c40-4206-ba16-b77053ff9b9d", - "start": { - "$date": "2022-05-25T01:53:48.000Z" - }, - "end": { - "$date": "2022-05-25T01:55:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "31087020-715a-4274-8318-2da6ec410169", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-25T02:35:29.000Z" - }, - "end": { - "$date": "2022-05-25T02:36:38.000Z" - }, - "events": [ - { - "uuid": "c090e9bd-6436-4160-b14e-609b2dcffd3a", - "start": { - "$date": "2022-05-25T02:35:29.000Z" - }, - "end": { - "$date": "2022-05-25T02:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "db3bf57c-93bd-49eb-a077-ee48734cc008", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-25T02:37:09.000Z" - }, - "end": { - "$date": "2022-05-25T03:28:47.000Z" - }, - "events": [ - { - "uuid": "2891393a-7403-4243-b0d5-ced892d485d9", - "start": { - "$date": "2022-05-25T02:37:09.000Z" - }, - "end": { - "$date": "2022-05-25T03:28:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "069ac6a0-d352-4850-9fb2-bb331769b035", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-25T03:46:01.000Z" - }, - "end": { - "$date": "2022-05-25T04:21:02.000Z" - }, - "events": [ - { - "uuid": "67241c04-c991-4e82-aa62-12a59605b66c", - "start": { - "$date": "2022-05-25T03:46:01.000Z" - }, - "end": { - "$date": "2022-05-25T04:21:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "adc45b92-8576-4f9f-9f07-b51ad8299dc8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-25T03:47:38.000Z" - }, - "end": { - "$date": "2022-05-25T03:50:15.000Z" - }, - "events": [ - { - "uuid": "613eab11-d3f4-45fe-b40e-3e2d7951dd71", - "start": { - "$date": "2022-05-25T03:47:38.000Z" - }, - "end": { - "$date": "2022-05-25T03:50:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7096ea22-b1d0-4682-b617-fe4bb3c9223b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-25T04:05:26.000Z" - }, - "end": { - "$date": "2022-05-25T04:48:10.000Z" - }, - "events": [ - { - "uuid": "74b54056-bef7-453b-97a6-7c450c2b7744", - "start": { - "$date": "2022-05-25T04:05:26.000Z" - }, - "end": { - "$date": "2022-05-25T04:48:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dcb3dc76-e62d-4737-ab33-3f326f3ef454", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-25T04:06:21.000Z" - }, - "end": { - "$date": "2022-05-25T04:10:18.000Z" - }, - "events": [ - { - "uuid": "cdcc6e08-29fc-417c-ade4-81e011d18854", - "start": { - "$date": "2022-05-25T04:06:21.000Z" - }, - "end": { - "$date": "2022-05-25T04:10:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "091c819d-2ab6-4f8f-87af-57b23ac6599b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-25T04:13:26.000Z" - }, - "end": { - "$date": "2022-05-25T05:14:19.000Z" - }, - "events": [ - { - "uuid": "6525103c-8e0a-4d51-bd80-7b77e5d951c4", - "start": { - "$date": "2022-05-25T04:13:26.000Z" - }, - "end": { - "$date": "2022-05-25T05:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "226bc906-9bec-4b7f-bb4e-ff911036a1f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-25T04:57:11.000Z" - }, - "end": { - "$date": "2022-05-25T05:03:28.000Z" - }, - "events": [ - { - "uuid": "978bdf85-f89a-413b-b79a-91483cf0024b", - "start": { - "$date": "2022-05-25T04:57:11.000Z" - }, - "end": { - "$date": "2022-05-25T05:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "448b43d3-45ea-48bc-a54a-c76700df223f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-25T05:03:43.000Z" - }, - "end": { - "$date": "2022-05-25T06:03:24.000Z" - }, - "events": [ - { - "uuid": "2b5ef562-0206-491a-b888-e38918b1a045", - "start": { - "$date": "2022-05-25T05:03:43.000Z" - }, - "end": { - "$date": "2022-05-25T06:03:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "e3dfb090-0969-438c-89db-de9c03790dc2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-25T05:20:37.000Z" - }, - "end": { - "$date": "2022-05-25T05:22:42.000Z" - }, - "events": [ - { - "uuid": "468455e4-4d60-48ef-ac7c-155b54ecaa99", - "start": { - "$date": "2022-05-25T05:20:37.000Z" - }, - "end": { - "$date": "2022-05-25T05:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "4212e3fb-d97b-4312-a904-a8a2a9d0cf18", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-25T05:23:32.000Z" - }, - "end": { - "$date": "2022-05-25T06:03:28.000Z" - }, - "events": [ - { - "uuid": "a5dc20ef-b78c-4365-9268-11bb1997c77d", - "start": { - "$date": "2022-05-25T05:23:32.000Z" - }, - "end": { - "$date": "2022-05-25T06:03:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "778573aa-631c-469c-bfa7-5ff472eecabb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-25T06:14:13.000Z" - }, - "end": { - "$date": "2022-05-25T07:05:10.000Z" - }, - "events": [ - { - "uuid": "2d4ff487-dc56-4bca-9d37-fdbeef90cba1", - "start": { - "$date": "2022-05-25T06:14:13.000Z" - }, - "end": { - "$date": "2022-05-25T07:05:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "8c6f2142-4f5e-4c24-b793-2f73346d398f", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-25T13:48:54.000Z" - }, - "end": { - "$date": "2022-05-25T14:01:21.000Z" - }, - "events": [ - { - "uuid": "c3e206a5-1059-4401-924f-f6e560e626b1", - "start": { - "$date": "2022-05-25T13:48:54.000Z" - }, - "end": { - "$date": "2022-05-25T14:01:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "c2f9794e-4edc-4ce3-9eb0-5342ff21b534", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-25T14:22:02.000Z" - }, - "end": { - "$date": "2022-05-25T14:31:38.000Z" - }, - "events": [ - { - "uuid": "4285c5dd-453c-4f81-a74c-edc19e9f49cc", - "start": { - "$date": "2022-05-25T14:22:02.000Z" - }, - "end": { - "$date": "2022-05-25T14:31:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "365c3bed-a62a-43c2-8aad-02690c0f8e29", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-25T14:43:03.000Z" - }, - "end": { - "$date": "2022-05-25T17:24:31.000Z" - }, - "events": [ - { - "uuid": "a5c786a5-25b1-4f56-a5ae-7f4f090d3e8f", - "start": { - "$date": "2022-05-25T14:43:03.000Z" - }, - "end": { - "$date": "2022-05-25T17:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "9d5bff8f-9b5b-41ca-b7f6-48be0f6f2bd9", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-25T15:09:47.000Z" - }, - "end": { - "$date": "2022-05-25T15:13:58.000Z" - }, - "events": [ - { - "uuid": "75a2236a-fe09-42f4-bdc5-fb0289b7ba40", - "start": { - "$date": "2022-05-25T15:09:47.000Z" - }, - "end": { - "$date": "2022-05-25T15:13:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "41222ba4-4d34-44bf-8f6f-c6117ff63c66", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-25T16:14:26.000Z" - }, - "end": { - "$date": "2022-05-25T16:18:07.000Z" - }, - "events": [ - { - "uuid": "ad83e8e2-8668-476f-a745-3eefaea23f5d", - "start": { - "$date": "2022-05-25T16:14:26.000Z" - }, - "end": { - "$date": "2022-05-25T16:18:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "4bafda8b-49bf-4254-9fbd-120bf2f4f828", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-25T16:37:58.000Z" - }, - "end": { - "$date": "2022-05-25T16:51:45.000Z" - }, - "events": [ - { - "uuid": "4b4c0674-5150-452c-a5a4-097f3e0296c6", - "start": { - "$date": "2022-05-25T16:37:58.000Z" - }, - "end": { - "$date": "2022-05-25T16:51:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "dcc3dfcd-8e47-41f0-8980-24231cfdc8ff", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-25T16:52:20.000Z" - }, - "end": { - "$date": "2022-05-25T18:18:03.000Z" - }, - "events": [ - { - "uuid": "58590daf-068d-4d63-b1dd-64626a0e70f6", - "start": { - "$date": "2022-05-25T16:52:20.000Z" - }, - "end": { - "$date": "2022-05-25T17:03:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "72ec8479-5b7d-4ed6-932f-e1950facb301", - "start": { - "$date": "2022-05-25T17:03:20.000Z" - }, - "end": { - "$date": "2022-05-25T17:04:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "56fcffd6-f071-410f-a17d-9858fab11b2c", - "start": { - "$date": "2022-05-25T17:04:20.000Z" - }, - "end": { - "$date": "2022-05-25T18:18:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "74129e22-775a-4a70-879e-a8d585872fde", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-25T17:14:58.000Z" - }, - "end": { - "$date": "2022-05-25T17:54:45.000Z" - }, - "events": [ - { - "uuid": "6054ee82-1830-4057-b71c-4270d15e3434", - "start": { - "$date": "2022-05-25T17:14:58.000Z" - }, - "end": { - "$date": "2022-05-25T17:54:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "af334027-d938-46f4-9bda-c8d8d7accc88", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-25T19:55:54.000Z" - }, - "end": { - "$date": "2022-05-25T20:55:52.000Z" - }, - "events": [ - { - "uuid": "756d7327-1029-4c68-a7ca-977f98f5ac6a", - "start": { - "$date": "2022-05-25T19:55:54.000Z" - }, - "end": { - "$date": "2022-05-25T20:55:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "1ed8b0fb-9adc-4f63-a485-ace4db7473fb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-25T21:26:33.000Z" - }, - "end": { - "$date": "2022-05-25T22:42:11.000Z" - }, - "events": [ - { - "uuid": "c6fca3be-12d3-4dc5-9b79-e2e32d4ff3e5", - "start": { - "$date": "2022-05-25T21:26:33.000Z" - }, - "end": { - "$date": "2022-05-25T21:50:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a46b745b-b815-4ce8-9b88-d8ffa6c485b4", - "start": { - "$date": "2022-05-25T21:50:33.000Z" - }, - "end": { - "$date": "2022-05-25T21:55:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "430718d5-2f2c-47c4-a6d1-f33c7ae1da23", - "start": { - "$date": "2022-05-25T21:55:33.000Z" - }, - "end": { - "$date": "2022-05-25T22:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "21fab3ba-14da-4071-a555-1129b73dd252", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-25T22:46:34.000Z" - }, - "end": { - "$date": "2022-05-25T22:56:13.000Z" - }, - "events": [ - { - "uuid": "1b2e5f1a-f755-449f-afba-36909878fa6d", - "start": { - "$date": "2022-05-25T22:46:34.000Z" - }, - "end": { - "$date": "2022-05-25T22:56:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "2a4ca3a3-f176-4a36-9cd4-dd9f26447c0f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-25T23:02:35.000Z" - }, - "end": { - "$date": "2022-05-25T23:08:42.000Z" - }, - "events": [ - { - "uuid": "46553f47-e7ce-4c92-8264-714197affd6d", - "start": { - "$date": "2022-05-25T23:02:35.000Z" - }, - "end": { - "$date": "2022-05-25T23:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "dbf4d827-e62d-4a31-a439-657fa5026eb9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T01:09:07.000Z" - }, - "end": { - "$date": "2022-05-26T01:10:28.000Z" - }, - "events": [ - { - "uuid": "645c1acf-e846-47d8-8e1f-7ba87e1c902d", - "start": { - "$date": "2022-05-26T01:09:07.000Z" - }, - "end": { - "$date": "2022-05-26T01:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "f3bf03fa-2e1a-4a06-9abf-933c2280b8b0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T01:10:52.000Z" - }, - "end": { - "$date": "2022-05-26T01:26:44.000Z" - }, - "events": [ - { - "uuid": "64f5842f-5ce5-4394-ae25-1e4451ae6a51", - "start": { - "$date": "2022-05-26T01:10:52.000Z" - }, - "end": { - "$date": "2022-05-26T01:26:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44d6ce61-356c-4d09-b1a5-7ab4fb2aab84", - "uuid": "d54a4a1b-cec9-4aae-b35e-596ed26dff56", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-26T01:34:19.000Z" - }, - "end": { - "$date": "2022-05-26T02:28:42.000Z" - }, - "events": [ - { - "uuid": "a0b840b7-8ca0-4255-b441-b3e58683f314", - "start": { - "$date": "2022-05-26T01:34:19.000Z" - }, - "end": { - "$date": "2022-05-26T02:28:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "486cea16-cd8f-4b65-ab1e-7205ba266924", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-26T02:02:39.000Z" - }, - "end": { - "$date": "2022-05-26T03:05:29.000Z" - }, - "events": [ - { - "uuid": "63f62b91-7694-4780-87d8-f000b2d6d331", - "start": { - "$date": "2022-05-26T02:02:39.000Z" - }, - "end": { - "$date": "2022-05-26T03:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "8e72038d-4f54-4389-9434-8677f69ae76f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T02:08:56.000Z" - }, - "end": { - "$date": "2022-05-26T02:10:28.000Z" - }, - "events": [ - { - "uuid": "34bee490-5ba4-4f8e-aac6-13bbfd4c63d1", - "start": { - "$date": "2022-05-26T02:08:56.000Z" - }, - "end": { - "$date": "2022-05-26T02:10:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "d21c8ecb-b418-403b-9745-8bd9b98dff1c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T04:28:05.000Z" - }, - "events": [ - { - "uuid": "e3248128-b243-4ea5-a7f7-cdccdcd7094c", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T06:10:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e1933fa-020e-400f-93f2-1be0ec3656d4", - "start": { - "$date": "2022-05-26T06:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T06:18:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "320b3651-9457-488e-8a6c-2c6ed6e02ff2", - "start": { - "$date": "2022-05-26T06:18:26.000Z" - }, - "end": { - "$date": "2022-05-26T04:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "25e824e6-c747-4cd7-81dd-20ddf2927e01", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-26T02:38:50.000Z" - }, - "end": { - "$date": "2022-05-26T03:42:40.000Z" - }, - "events": [ - { - "uuid": "ae71972b-b7ee-4f48-8888-b1e31151a2ec", - "start": { - "$date": "2022-05-26T02:38:50.000Z" - }, - "end": { - "$date": "2022-05-26T03:42:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fce3de4e-b02d-4168-90b0-c3270bff2f2e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T02:53:03.000Z" - }, - "end": { - "$date": "2022-05-26T04:24:13.000Z" - }, - "events": [ - { - "uuid": "cd7063cb-1804-49b3-9402-9dcff32253c6", - "start": { - "$date": "2022-05-26T02:53:03.000Z" - }, - "end": { - "$date": "2022-05-26T04:24:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f7bac11d-f867-4f8e-afc1-a0d99026cec6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-26T02:56:53.000Z" - }, - "end": { - "$date": "2022-05-26T04:23:32.000Z" - }, - "events": [ - { - "uuid": "31b05aba-2736-4108-850d-d23f669409de", - "start": { - "$date": "2022-05-26T02:56:53.000Z" - }, - "end": { - "$date": "2022-05-26T04:23:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7c42951f-bc93-435b-a427-1a632fc91d37", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T03:07:29.000Z" - }, - "end": { - "$date": "2022-05-26T03:47:20.000Z" - }, - "events": [ - { - "uuid": "f808f3c5-df1f-4e49-9b44-134b2dd75005", - "start": { - "$date": "2022-05-26T03:07:29.000Z" - }, - "end": { - "$date": "2022-05-26T03:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "bcef1450-15dd-4a09-968e-702e9383ac20", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-26T03:10:55.000Z" - }, - "end": { - "$date": "2022-05-26T04:00:10.000Z" - }, - "events": [ - { - "uuid": "060c7790-cbb8-4776-9829-54ff7e0c22b0", - "start": { - "$date": "2022-05-26T03:10:55.000Z" - }, - "end": { - "$date": "2022-05-26T04:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "854aecdf-bc57-40e7-9557-4be8555b79a0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-26T03:27:06.000Z" - }, - "end": { - "$date": "2022-05-26T03:39:28.000Z" - }, - "events": [ - { - "uuid": "e7c4b397-3c9a-414d-ae7d-29a0c4038fca", - "start": { - "$date": "2022-05-26T03:27:06.000Z" - }, - "end": { - "$date": "2022-05-26T03:39:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8fcaa166-896f-48b4-a34e-f9aff8bc4f6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T03:50:11.000Z" - }, - "end": { - "$date": "2022-05-26T06:46:44.000Z" - }, - "events": [ - { - "uuid": "8545e31a-4393-4df4-aea8-8cd96f3fadf8", - "start": { - "$date": "2022-05-26T03:50:11.000Z" - }, - "end": { - "$date": "2022-05-26T06:46:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "fd4ea975-d83c-4ed1-b1ee-4d7e1bf4ac24", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-26T04:02:10.000Z" - }, - "end": { - "$date": "2022-05-26T05:43:17.000Z" - }, - "events": [ - { - "uuid": "59433738-4e8f-412e-9702-97a2cbfce130", - "start": { - "$date": "2022-05-26T04:02:10.000Z" - }, - "end": { - "$date": "2022-05-26T05:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "24f304ff-fb14-4bcb-9a4e-b5c377fb4311", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T04:41:15.000Z" - }, - "end": { - "$date": "2022-05-26T06:00:20.000Z" - }, - "events": [ - { - "uuid": "54473c29-a8a8-46ef-9500-e015960942e6", - "start": { - "$date": "2022-05-26T04:41:15.000Z" - }, - "end": { - "$date": "2022-05-26T06:00:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "9c4eacb2-5683-47fd-be79-7c30ba29f418", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-26T07:49:43.000Z" - }, - "end": { - "$date": "2022-05-26T10:44:13.000Z" - }, - "events": [ - { - "uuid": "e6cd4683-97fe-4570-8d6c-c1d3d68b42c2", - "start": { - "$date": "2022-05-26T07:49:43.000Z" - }, - "end": { - "$date": "2022-05-26T10:44:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "8bd39682-4ef2-4f14-9b86-f6b00d62cdd7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T14:53:25.000Z" - }, - "events": [ - { - "uuid": "eeee5b14-7a0a-49f6-aa2f-3f52e3860f39", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T04:11:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d5431b32-84a1-413b-8a56-b5f0884867d2", - "start": { - "$date": "2022-05-26T04:11:26.000Z" - }, - "end": { - "$date": "2022-05-26T04:59:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b77e73e1-aa41-47e3-a6c5-24516620d740", - "start": { - "$date": "2022-05-26T04:59:26.000Z" - }, - "end": { - "$date": "2022-05-26T14:53:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "82b9af0e-c915-4493-8d09-46f0f5cc21ef", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-26T14:03:03.000Z" - }, - "end": { - "$date": "2022-05-26T14:04:13.000Z" - }, - "events": [ - { - "uuid": "476f64d8-1f67-401a-9eba-e747ec5e48c0", - "start": { - "$date": "2022-05-26T14:03:03.000Z" - }, - "end": { - "$date": "2022-05-26T14:04:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "478a79d6-95c9-47bd-b310-78abb080f672", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-26T14:04:33.000Z" - }, - "end": { - "$date": "2022-05-26T18:50:08.000Z" - }, - "events": [ - { - "uuid": "e9767fde-9adf-4963-8fb5-f67349181302", - "start": { - "$date": "2022-05-26T14:04:33.000Z" - }, - "end": { - "$date": "2022-05-26T18:50:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d9be398d-4f28-4bbc-9cce-94648b8d99d9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-26T14:19:11.000Z" - }, - "end": { - "$date": "2022-05-26T14:20:10.000Z" - }, - "events": [ - { - "uuid": "cae7c40c-c7e7-4647-b341-9b8cc3801728", - "start": { - "$date": "2022-05-26T14:19:11.000Z" - }, - "end": { - "$date": "2022-05-26T14:20:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9f0d046d-40b6-445e-bc8f-762cbb04d51e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-26T14:20:31.000Z" - }, - "end": { - "$date": "2022-05-26T14:59:13.000Z" - }, - "events": [ - { - "uuid": "2c7928c2-507d-4edb-b22e-837e73955879", - "start": { - "$date": "2022-05-26T14:20:31.000Z" - }, - "end": { - "$date": "2022-05-26T14:59:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "644d8c73-7e67-445c-a556-c77f14c976ed", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T17:07:05.000Z" - }, - "events": [ - { - "uuid": "fbeaedb9-be0b-48b4-a8dd-d51b65e8ec0e", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T04:11:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b922ae21-e7d3-4187-b0f0-1653cf846835", - "start": { - "$date": "2022-05-26T04:11:26.000Z" - }, - "end": { - "$date": "2022-05-26T05:51:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1a6355e2-8fd6-4894-aeac-fc2e765a995f", - "start": { - "$date": "2022-05-26T05:51:26.000Z" - }, - "end": { - "$date": "2022-05-26T05:52:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e61ff004-1a28-4cfe-9530-880fe184d737", - "start": { - "$date": "2022-05-26T05:52:26.000Z" - }, - "end": { - "$date": "2022-05-26T06:07:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ee322cbf-b6eb-4d26-bcd6-87b87b346cb8", - "start": { - "$date": "2022-05-26T06:07:26.000Z" - }, - "end": { - "$date": "2022-05-26T17:07:05.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a1023b23-2d51-465b-a0e9-0aff90a0eb45", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T16:43:16.000Z" - }, - "end": { - "$date": "2022-05-26T17:28:45.000Z" - }, - "events": [ - { - "uuid": "660022a3-8c64-4470-bcc8-c3d08a0884a0", - "start": { - "$date": "2022-05-26T16:43:16.000Z" - }, - "end": { - "$date": "2022-05-26T17:28:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "09971952-22ea-4074-8080-cc538a1397a8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-26T16:50:45.000Z" - }, - "end": { - "$date": "2022-05-26T17:17:02.000Z" - }, - "events": [ - { - "uuid": "9efb01ec-9ef5-4c88-bc26-09952525bf01", - "start": { - "$date": "2022-05-26T16:50:45.000Z" - }, - "end": { - "$date": "2022-05-26T17:17:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "8f17109b-5b6e-4395-b953-91b670dfa6d2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-26T16:52:03.000Z" - }, - "end": { - "$date": "2022-05-26T17:09:11.000Z" - }, - "events": [ - { - "uuid": "094869f6-dc2b-49b0-b8f0-09b0d596ccba", - "start": { - "$date": "2022-05-26T16:52:03.000Z" - }, - "end": { - "$date": "2022-05-26T17:09:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "78df7faa-58c6-4050-93f5-2b6827e5150a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-26T17:23:07.000Z" - }, - "end": { - "$date": "2022-05-26T18:57:38.000Z" - }, - "events": [ - { - "uuid": "0f2f13cd-06a3-4a0b-9f4d-d9f8332eb7f2", - "start": { - "$date": "2022-05-26T17:23:07.000Z" - }, - "end": { - "$date": "2022-05-26T18:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "bfebba93-17e5-4d4c-9ffe-b26a2073b635", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-26T17:31:03.000Z" - }, - "end": { - "$date": "2022-05-26T17:32:08.000Z" - }, - "events": [ - { - "uuid": "ea6c4d1a-52ec-47f1-b656-e9b1eea48c47", - "start": { - "$date": "2022-05-26T17:31:03.000Z" - }, - "end": { - "$date": "2022-05-26T17:32:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "e203aa58-a2d2-4897-963d-4905ae5c949f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-26T17:52:26.000Z" - }, - "end": { - "$date": "2022-05-26T17:55:41.000Z" - }, - "events": [ - { - "uuid": "e172aae3-ec16-4193-8374-619cacf2497a", - "start": { - "$date": "2022-05-26T17:52:26.000Z" - }, - "end": { - "$date": "2022-05-26T17:55:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "104f807a-6eec-4414-878a-bccd87269cd6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-26T18:03:21.000Z" - }, - "end": { - "$date": "2022-05-26T18:05:02.000Z" - }, - "events": [ - { - "uuid": "e47f56b6-6083-4211-9c0b-af2daa4d0794", - "start": { - "$date": "2022-05-26T18:03:21.000Z" - }, - "end": { - "$date": "2022-05-26T18:05:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "a47719b5-3f63-461a-b78a-5409b02eeaad", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T19:31:17.000Z" - }, - "events": [ - { - "uuid": "fe3b3386-bf76-4077-b9db-696174d65d8c", - "start": { - "$date": "2022-05-26T04:10:26.000Z" - }, - "end": { - "$date": "2022-05-26T04:11:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "38bdc7d1-1027-4e0f-80a8-d6a0bfd2ef63", - "start": { - "$date": "2022-05-26T04:11:26.000Z" - }, - "end": { - "$date": "2022-05-26T05:15:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b1dbad77-b8ea-4d96-96e9-b4f3a14cc0a2", - "start": { - "$date": "2022-05-26T05:15:26.000Z" - }, - "end": { - "$date": "2022-05-26T05:16:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7025739f-573f-438f-93c5-57880ec04b79", - "start": { - "$date": "2022-05-26T05:16:26.000Z" - }, - "end": { - "$date": "2022-05-26T19:31:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6a83794e-02c3-444f-9477-7b4095451e0b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-26T18:18:28.000Z" - }, - "end": { - "$date": "2022-05-26T18:55:15.000Z" - }, - "events": [ - { - "uuid": "4a0f14bb-ab36-43be-a150-ef8800c9764a", - "start": { - "$date": "2022-05-26T18:18:28.000Z" - }, - "end": { - "$date": "2022-05-26T18:55:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cc63154c-f1c0-49a8-82c4-7289e6a57fe5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-26T18:35:04.000Z" - }, - "end": { - "$date": "2022-05-26T19:21:41.000Z" - }, - "events": [ - { - "uuid": "a4f3d2f0-d2fc-4d81-b1ab-12e7a3075b49", - "start": { - "$date": "2022-05-26T18:35:04.000Z" - }, - "end": { - "$date": "2022-05-26T19:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "a8418cca-ffa0-407d-a3c7-871dda4072dc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T18:36:49.000Z" - }, - "end": { - "$date": "2022-05-26T18:39:12.000Z" - }, - "events": [ - { - "uuid": "529bd4e0-a68d-45b1-8b90-c30aa854cfcc", - "start": { - "$date": "2022-05-26T18:36:49.000Z" - }, - "end": { - "$date": "2022-05-26T18:39:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "710b6d3e-6ee8-46c4-9122-9080a45613a3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T18:39:40.000Z" - }, - "end": { - "$date": "2022-05-26T18:40:52.000Z" - }, - "events": [ - { - "uuid": "2e8eecc3-a0f1-4803-9d1c-17fc37c38363", - "start": { - "$date": "2022-05-26T18:39:40.000Z" - }, - "end": { - "$date": "2022-05-26T18:40:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "b8fd17ad-9531-4a75-b9fa-01601c504036", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T18:43:30.000Z" - }, - "end": { - "$date": "2022-05-26T19:57:53.000Z" - }, - "events": [ - { - "uuid": "0a29b250-b115-47c5-9a74-ce36b36cb784", - "start": { - "$date": "2022-05-26T18:43:30.000Z" - }, - "end": { - "$date": "2022-05-26T19:57:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dba0e9a1-c102-4b2c-b613-f2e895059430", - "uuid": "531518f4-7237-4410-ba90-d98af2ba8008", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T18:43:54.000Z" - }, - "end": { - "$date": "2022-05-26T19:58:53.000Z" - }, - "events": [ - { - "uuid": "abba8e9c-5231-4b0b-b957-0621ebfc4871", - "start": { - "$date": "2022-05-26T18:43:54.000Z" - }, - "end": { - "$date": "2022-05-26T19:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "2cc5b2ba-3fa4-4972-b28e-04ee390cfd72", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-26T19:35:58.000Z" - }, - "end": { - "$date": "2022-05-26T20:13:04.000Z" - }, - "events": [ - { - "uuid": "9d0c5e1d-a83c-462d-9efb-b4d0836e16af", - "start": { - "$date": "2022-05-26T19:35:58.000Z" - }, - "end": { - "$date": "2022-05-26T20:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e5779782-f9e1-4dec-ad7f-2104db320535", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-26T19:39:49.000Z" - }, - "end": { - "$date": "2022-05-26T20:14:21.000Z" - }, - "events": [ - { - "uuid": "4ccf112b-0a4c-443c-b70c-0beaa284d0da", - "start": { - "$date": "2022-05-26T19:39:49.000Z" - }, - "end": { - "$date": "2022-05-26T20:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "515e3faa-2876-4fcd-a92d-1a06a4ea2511", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T20:00:46.000Z" - }, - "end": { - "$date": "2022-05-26T20:24:36.000Z" - }, - "events": [ - { - "uuid": "2a208cfa-f684-4981-a423-624058a82e1d", - "start": { - "$date": "2022-05-26T20:00:46.000Z" - }, - "end": { - "$date": "2022-05-26T20:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e5c3b87b-0a7e-48a3-a70d-1dd979195c19", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T20:50:02.000Z" - }, - "end": { - "$date": "2022-05-26T21:24:48.000Z" - }, - "events": [ - { - "uuid": "1243d412-799a-4b2d-bce2-24ae8adf0b76", - "start": { - "$date": "2022-05-26T20:50:02.000Z" - }, - "end": { - "$date": "2022-05-26T21:24:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fdf54123-7f5c-40da-91be-5de3c6ac1b61", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T20:50:12.000Z" - }, - "end": { - "$date": "2022-05-26T21:19:59.000Z" - }, - "events": [ - { - "uuid": "59fe27b4-7c01-49fd-864f-703d154095cb", - "start": { - "$date": "2022-05-26T20:50:12.000Z" - }, - "end": { - "$date": "2022-05-26T21:19:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6729a448-680b-447b-b5f0-2708c754f87f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T21:27:47.000Z" - }, - "end": { - "$date": "2022-05-26T21:57:58.000Z" - }, - "events": [ - { - "uuid": "525ea29d-5857-4f64-b23e-a694e577c281", - "start": { - "$date": "2022-05-26T21:27:47.000Z" - }, - "end": { - "$date": "2022-05-26T21:57:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "01428f84-8078-4c15-97d6-f2c3a249d089", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T21:26:43.000Z" - }, - "end": { - "$date": "2022-05-26T21:27:00.000Z" - }, - "events": [ - { - "uuid": "197cfdfd-be98-44dd-9007-339a519ffe5d", - "start": { - "$date": "2022-05-26T21:26:43.000Z" - }, - "end": { - "$date": "2022-05-26T21:27:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1837d15-0370-4a71-b80b-57cb17f94c78", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-26T21:27:47.000Z" - }, - "end": { - "$date": "2022-05-26T22:02:41.000Z" - }, - "events": [ - { - "uuid": "eb2b16de-ecdd-4ac4-9810-5b87a8877837", - "start": { - "$date": "2022-05-26T21:27:47.000Z" - }, - "end": { - "$date": "2022-05-26T22:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b86c8dd1-2014-4852-934f-1368cd49ce5d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T21:27:45.000Z" - }, - "end": { - "$date": "2022-05-26T22:06:52.000Z" - }, - "events": [ - { - "uuid": "4084ff17-acbb-4507-bdac-4aeb183959ce", - "start": { - "$date": "2022-05-26T21:27:45.000Z" - }, - "end": { - "$date": "2022-05-26T22:06:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e1078e92-048a-423c-93e6-f33f76f779c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-26T21:28:31.000Z" - }, - "end": { - "$date": "2022-05-26T22:09:04.000Z" - }, - "events": [ - { - "uuid": "85d25b10-e52c-4f42-a426-4e0393997365", - "start": { - "$date": "2022-05-26T21:28:31.000Z" - }, - "end": { - "$date": "2022-05-26T22:09:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b738ae0-2622-4847-819a-7f1cf5391a20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T22:08:28.000Z" - }, - "end": { - "$date": "2022-05-26T22:30:52.000Z" - }, - "events": [ - { - "uuid": "8369496c-945d-4e00-960a-f4eb11171916", - "start": { - "$date": "2022-05-26T22:08:28.000Z" - }, - "end": { - "$date": "2022-05-26T22:30:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b0ebc8f6-df05-48b1-a3b1-451e02366adf", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-26T22:08:17.000Z" - }, - "end": { - "$date": "2022-05-26T22:30:48.000Z" - }, - "events": [ - { - "uuid": "3068c1d1-90e9-4841-b6ed-24fa67627b12", - "start": { - "$date": "2022-05-26T22:08:17.000Z" - }, - "end": { - "$date": "2022-05-26T22:30:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "55a98384-b434-47f6-b027-69aa804116a5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-26T22:08:23.000Z" - }, - "end": { - "$date": "2022-05-26T22:30:54.000Z" - }, - "events": [ - { - "uuid": "6cb06782-904a-4002-8297-34f1f5c5e054", - "start": { - "$date": "2022-05-26T22:08:23.000Z" - }, - "end": { - "$date": "2022-05-26T22:30:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f9b5bd3e-bf83-40bd-b6e2-e55331d6ff03", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-26T22:33:35.000Z" - }, - "end": { - "$date": "2022-05-26T22:40:33.000Z" - }, - "events": [ - { - "uuid": "5ed84248-184c-4211-825d-3cbc52f2ee73", - "start": { - "$date": "2022-05-26T22:33:35.000Z" - }, - "end": { - "$date": "2022-05-26T22:40:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "345cb07c-4953-4733-a5d9-4b98b255bf33", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-26T23:01:06.000Z" - }, - "end": { - "$date": "2022-05-26T23:26:08.000Z" - }, - "events": [ - { - "uuid": "e87552c0-071c-43ed-a2aa-807fd54b50c0", - "start": { - "$date": "2022-05-26T23:01:06.000Z" - }, - "end": { - "$date": "2022-05-26T23:26:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "12350e6d-3c1e-4f0b-a957-9eea62a8f1a7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-26T23:37:35.000Z" - }, - "end": { - "$date": "2022-05-27T00:35:51.000Z" - }, - "events": [ - { - "uuid": "34850ce8-b1fb-41df-94dc-5642265401f8", - "start": { - "$date": "2022-05-26T23:37:35.000Z" - }, - "end": { - "$date": "2022-05-27T00:20:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0abb241a-e3ce-4fa0-80cb-e5a1e70a4a49", - "start": { - "$date": "2022-05-27T00:20:35.000Z" - }, - "end": { - "$date": "2022-05-27T00:25:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9b97db87-d2c4-43b7-bf94-42201c4ad10e", - "start": { - "$date": "2022-05-27T00:25:35.000Z" - }, - "end": { - "$date": "2022-05-27T00:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dc86d5db-7a39-4716-bad8-2d524ee10c24", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-27T01:24:50.000Z" - }, - "end": { - "$date": "2022-05-27T02:58:14.000Z" - }, - "events": [ - { - "uuid": "5f0739d3-7f21-4f96-b8dd-e677012fa3db", - "start": { - "$date": "2022-05-27T01:24:50.000Z" - }, - "end": { - "$date": "2022-05-27T02:58:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ba1e38a7-35df-4554-a6e3-bf726c7a6d6c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-27T01:52:49.000Z" - }, - "end": { - "$date": "2022-05-27T03:08:00.000Z" - }, - "events": [ - { - "uuid": "69b7d40e-d1bb-474e-8beb-6890307ff39c", - "start": { - "$date": "2022-05-27T01:52:49.000Z" - }, - "end": { - "$date": "2022-05-27T03:08:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "2501070c-5544-4d0a-a100-fc827feea1b4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-27T02:05:49.000Z" - }, - "end": { - "$date": "2022-05-27T05:30:45.000Z" - }, - "events": [ - { - "uuid": "827c577e-d077-44ed-8845-16ae04c57327", - "start": { - "$date": "2022-05-27T02:05:49.000Z" - }, - "end": { - "$date": "2022-05-27T05:30:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5ba4cc3f-ed7d-409b-8ed3-f2ece338f319", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-27T02:11:56.000Z" - }, - "end": { - "$date": "2022-05-27T04:47:22.000Z" - }, - "events": [ - { - "uuid": "28fa0be0-296d-4513-a178-6faad1b88250", - "start": { - "$date": "2022-05-27T02:11:56.000Z" - }, - "end": { - "$date": "2022-05-27T04:47:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4df6de2b-26b9-4ca9-977b-6b0c37643123", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-27T03:03:30.000Z" - }, - "end": { - "$date": "2022-05-27T04:47:24.000Z" - }, - "events": [ - { - "uuid": "c8e8dcfc-7c68-4d99-9208-80d278f13ecc", - "start": { - "$date": "2022-05-27T03:03:30.000Z" - }, - "end": { - "$date": "2022-05-27T04:47:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "335d3213-0aa0-4bc2-a00b-a983c70acf2e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T04:07:59.000Z" - }, - "end": { - "$date": "2022-05-27T04:14:30.000Z" - }, - "events": [ - { - "uuid": "fd6eb833-b98a-4cdc-81f9-db2a69ed0942", - "start": { - "$date": "2022-05-27T04:07:59.000Z" - }, - "end": { - "$date": "2022-05-27T04:14:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "e3849032-1abe-4ed0-959e-f779a27f7607", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-27T04:09:19.000Z" - }, - "end": { - "$date": "2022-05-27T08:24:31.000Z" - }, - "events": [ - { - "uuid": "7443112f-9825-4c8e-9c39-580a2dde805d", - "start": { - "$date": "2022-05-27T04:09:19.000Z" - }, - "end": { - "$date": "2022-05-27T08:24:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "646df686-aeac-40cc-9233-490b80a07bee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T04:15:45.000Z" - }, - "end": { - "$date": "2022-05-27T04:17:55.000Z" - }, - "events": [ - { - "uuid": "8df5fbe5-5c89-49e7-a639-c8daf067f388", - "start": { - "$date": "2022-05-27T04:15:45.000Z" - }, - "end": { - "$date": "2022-05-27T04:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "827f6e01-fcec-44d1-8913-96061404ce59", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-27T04:16:26.000Z" - }, - "end": { - "$date": "2022-05-27T04:42:25.000Z" - }, - "events": [ - { - "uuid": "90915c04-07b0-4098-923c-045e76f31318", - "start": { - "$date": "2022-05-27T04:16:26.000Z" - }, - "end": { - "$date": "2022-05-27T04:42:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "f8ec4aba-0ae8-4f57-8d86-c83ac937cc90", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T04:18:40.000Z" - }, - "end": { - "$date": "2022-05-27T04:20:50.000Z" - }, - "events": [ - { - "uuid": "732650ec-c86b-432a-9268-81f20c703a54", - "start": { - "$date": "2022-05-27T04:18:40.000Z" - }, - "end": { - "$date": "2022-05-27T04:20:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "da183bb7-5da0-4a11-9beb-f3d77ddef68f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T04:22:04.000Z" - }, - "end": { - "$date": "2022-05-27T08:36:35.000Z" - }, - "events": [ - { - "uuid": "48297adc-3215-42e6-ad4c-6ba2fa56e5e2", - "start": { - "$date": "2022-05-27T04:22:04.000Z" - }, - "end": { - "$date": "2022-05-27T08:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "5ad61f8a-04ac-4386-8233-bcbb954fcf9e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-27T04:42:32.000Z" - }, - "end": { - "$date": "2022-05-27T07:52:57.000Z" - }, - "events": [ - { - "uuid": "a244e834-012f-4402-9dfd-4cd3f8916686", - "start": { - "$date": "2022-05-27T04:42:32.000Z" - }, - "end": { - "$date": "2022-05-27T07:52:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "39e5ecc3-32b1-4b75-bc7e-deaa8ccdadb0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-27T04:44:59.000Z" - }, - "end": { - "$date": "2022-05-27T06:20:25.000Z" - }, - "events": [ - { - "uuid": "7ca9df3a-3534-4b00-aca8-5711445a6887", - "start": { - "$date": "2022-05-27T04:44:59.000Z" - }, - "end": { - "$date": "2022-05-27T06:20:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "14210160-6fd5-40cc-82aa-3b9afd6373c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T15:46:36.000Z" - }, - "end": { - "$date": "2022-05-27T15:47:36.000Z" - }, - "events": [ - { - "uuid": "bca2b4f0-5407-49ad-a1d9-081e6c05c0a8", - "start": { - "$date": "2022-05-27T15:46:36.000Z" - }, - "end": { - "$date": "2022-05-27T15:47:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2f8ce8a9-0be7-458b-b1d0-e749ff06da28", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T16:06:28.000Z" - }, - "end": { - "$date": "2022-05-27T16:29:47.000Z" - }, - "events": [ - { - "uuid": "31f7998d-3b60-4c76-905d-6e4b6bb7d9c7", - "start": { - "$date": "2022-05-27T16:06:28.000Z" - }, - "end": { - "$date": "2022-05-27T16:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "437eb3d1-3773-4405-95b2-b3c5b3a4959c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T16:08:53.000Z" - }, - "end": { - "$date": "2022-05-27T16:19:04.000Z" - }, - "events": [ - { - "uuid": "4c5c386a-08ab-4cc2-a725-195a8fdedc2f", - "start": { - "$date": "2022-05-27T16:08:53.000Z" - }, - "end": { - "$date": "2022-05-27T16:19:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "37e7ddd0-9b79-4db3-8577-dc45b0bad975", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T16:20:19.000Z" - }, - "end": { - "$date": "2022-05-27T16:26:34.000Z" - }, - "events": [ - { - "uuid": "cf349094-30bf-46c0-a1a3-8e6db73c5890", - "start": { - "$date": "2022-05-27T16:20:19.000Z" - }, - "end": { - "$date": "2022-05-27T16:26:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71c8b646-a3fa-437a-a7a6-17ec0e574bb0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T16:38:35.000Z" - }, - "end": { - "$date": "2022-05-27T16:57:04.000Z" - }, - "events": [ - { - "uuid": "e5bea075-b29a-48fc-b862-089c7ef21fc2", - "start": { - "$date": "2022-05-27T16:38:35.000Z" - }, - "end": { - "$date": "2022-05-27T16:57:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76cf5c55-5d61-4e25-8eda-0ddf4454951a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T16:59:21.000Z" - }, - "end": { - "$date": "2022-05-27T17:19:30.000Z" - }, - "events": [ - { - "uuid": "88756e28-5345-406d-901d-919baeabb894", - "start": { - "$date": "2022-05-27T16:59:21.000Z" - }, - "end": { - "$date": "2022-05-27T17:19:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "70b7f7e6-2c18-48ec-b710-48b1e32507ec", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T17:44:17.000Z" - }, - "end": { - "$date": "2022-05-27T17:58:19.000Z" - }, - "events": [ - { - "uuid": "d6b5a544-8c3f-4acb-ae19-5c116b957958", - "start": { - "$date": "2022-05-27T17:44:17.000Z" - }, - "end": { - "$date": "2022-05-27T17:58:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "eb2df17a-30f8-44d0-8a0a-37d2fd3bee0f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T17:35:33.000Z" - }, - "end": { - "$date": "2022-05-27T17:37:52.000Z" - }, - "events": [ - { - "uuid": "65f8e842-d81f-4ce4-aa2b-fb6acc822de0", - "start": { - "$date": "2022-05-27T17:35:33.000Z" - }, - "end": { - "$date": "2022-05-27T17:37:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1598b47-f311-41e8-ac6e-5cb889f9ccc6", - "uuid": "f1d90e34-01a0-47bc-8ee7-72cd57aad9e0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-27T18:19:06.000Z" - }, - "end": { - "$date": "2022-05-27T18:19:11.000Z" - }, - "events": [ - { - "uuid": "e4bf9eb5-6c04-46a4-a831-9abc8229600d", - "start": { - "$date": "2022-05-27T18:19:06.000Z" - }, - "end": { - "$date": "2022-05-27T18:19:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2d430394-2f1e-45f2-8d1c-d798534cccb7", - "uuid": "f4735491-f03a-423a-a40b-c645215a7065", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-27T17:38:06.000Z" - }, - "end": { - "$date": "2022-05-27T17:41:12.000Z" - }, - "events": [ - { - "uuid": "4b75b2c8-4669-473a-8264-cfa6fd143090", - "start": { - "$date": "2022-05-27T17:38:06.000Z" - }, - "end": { - "$date": "2022-05-27T17:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "9f61db32-1604-49b5-ade1-3f600561c1ba", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-27T17:41:36.000Z" - }, - "end": { - "$date": "2022-05-27T17:54:01.000Z" - }, - "events": [ - { - "uuid": "98914299-4572-405f-aa3d-7c928767870e", - "start": { - "$date": "2022-05-27T17:41:36.000Z" - }, - "end": { - "$date": "2022-05-27T17:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "ef86c7ac-a2c1-45f5-9ef2-3791fa25dc7d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T18:01:26.000Z" - }, - "end": { - "$date": "2022-05-27T18:53:22.000Z" - }, - "events": [ - { - "uuid": "bc51899e-5d66-42b7-b35b-5e2333221e96", - "start": { - "$date": "2022-05-27T18:01:26.000Z" - }, - "end": { - "$date": "2022-05-27T18:53:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a1495a11-4aba-4c6c-874d-1194f86a0a1a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-27T18:20:41.000Z" - }, - "end": { - "$date": "2022-05-27T18:34:28.000Z" - }, - "events": [ - { - "uuid": "d0de1b45-c1b5-4b74-8216-fd29d5448f2f", - "start": { - "$date": "2022-05-27T18:20:41.000Z" - }, - "end": { - "$date": "2022-05-27T18:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "2e34b4cf-53ca-4f4d-b02c-bf3a8ea11c81", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-27T18:28:23.000Z" - }, - "end": { - "$date": "2022-05-27T18:59:15.000Z" - }, - "events": [ - { - "uuid": "a47676c0-3fae-41dc-af57-fa784c076a88", - "start": { - "$date": "2022-05-27T18:28:23.000Z" - }, - "end": { - "$date": "2022-05-27T18:59:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "851299b2-00be-466c-8c90-f4fb2842eee1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-27T18:54:16.000Z" - }, - "end": { - "$date": "2022-05-27T22:34:38.000Z" - }, - "events": [ - { - "uuid": "f9f34a4a-edac-4a68-8e34-5d61fdb1e1d6", - "start": { - "$date": "2022-05-27T18:54:16.000Z" - }, - "end": { - "$date": "2022-05-27T22:34:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "55db8752-076c-4abb-b67f-9f2430f76911", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-27T19:06:06.000Z" - }, - "end": { - "$date": "2022-05-27T19:09:46.000Z" - }, - "events": [ - { - "uuid": "f89a1766-1b19-45e4-a65a-404f937d3586", - "start": { - "$date": "2022-05-27T19:06:06.000Z" - }, - "end": { - "$date": "2022-05-27T19:09:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "67205c4a-301c-4869-b418-abdad5c52e34", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-27T19:10:24.000Z" - }, - "end": { - "$date": "2022-05-27T20:10:31.000Z" - }, - "events": [ - { - "uuid": "7905264b-cb0d-46c2-b90b-07c4047f16a6", - "start": { - "$date": "2022-05-27T19:10:24.000Z" - }, - "end": { - "$date": "2022-05-27T20:10:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c5263b53-891a-492e-a235-7480aef30b7c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T19:10:56.000Z" - }, - "end": { - "$date": "2022-05-27T20:00:27.000Z" - }, - "events": [ - { - "uuid": "9202d84a-92d3-42a1-b120-f70d58b8504f", - "start": { - "$date": "2022-05-27T19:10:56.000Z" - }, - "end": { - "$date": "2022-05-27T20:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "3d9f5f8c-df28-4652-9595-e641ab350806", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-27T19:14:27.000Z" - }, - "end": { - "$date": "2022-05-27T19:56:26.000Z" - }, - "events": [ - { - "uuid": "756820d0-1d5f-4622-939d-eb7f642c2659", - "start": { - "$date": "2022-05-27T19:14:27.000Z" - }, - "end": { - "$date": "2022-05-27T19:56:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "aaaed2b4-b7c0-4899-b108-add082da4059", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T20:16:35.000Z" - }, - "end": { - "$date": "2022-05-27T20:51:11.000Z" - }, - "events": [ - { - "uuid": "65d6851d-2000-423d-946a-60b5f27df96e", - "start": { - "$date": "2022-05-27T20:16:35.000Z" - }, - "end": { - "$date": "2022-05-27T20:51:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9ae4e0f2-f923-4007-a9dc-7f0ce4abfcbb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T21:29:59.000Z" - }, - "end": { - "$date": "2022-05-27T21:51:06.000Z" - }, - "events": [ - { - "uuid": "22e6277e-b657-44e5-8f78-3e03bffb94c8", - "start": { - "$date": "2022-05-27T21:29:59.000Z" - }, - "end": { - "$date": "2022-05-27T21:51:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fe89230a-3816-40d9-9e31-52a845169bf3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-27T21:31:59.000Z" - }, - "end": { - "$date": "2022-05-27T23:11:07.000Z" - }, - "events": [ - { - "uuid": "43b49f15-8e76-4567-86be-4d7d027d9d6e", - "start": { - "$date": "2022-05-27T21:31:59.000Z" - }, - "end": { - "$date": "2022-05-27T23:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "21474419-2fac-4939-a5d3-2d7d12ba8208", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-27T22:06:42.000Z" - }, - "end": { - "$date": "2022-05-27T22:25:42.000Z" - }, - "events": [ - { - "uuid": "ca3833b1-aaef-4744-a2ac-9c979737e13a", - "start": { - "$date": "2022-05-27T22:06:42.000Z" - }, - "end": { - "$date": "2022-05-27T22:25:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "424d3c90-5e98-4b12-9c8b-24a9d56519cc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-27T22:30:28.000Z" - }, - "end": { - "$date": "2022-05-28T00:26:26.000Z" - }, - "events": [ - { - "uuid": "ebe5b83e-74f7-4b01-974f-24960e7b5255", - "start": { - "$date": "2022-05-27T22:30:28.000Z" - }, - "end": { - "$date": "2022-05-28T00:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1ae89806-d99e-4864-8301-b41dd26f586c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-27T23:22:05.000Z" - }, - "end": { - "$date": "2022-05-27T23:54:33.000Z" - }, - "events": [ - { - "uuid": "e835859f-2d9a-4301-af58-a47178ff7bbf", - "start": { - "$date": "2022-05-27T23:22:05.000Z" - }, - "end": { - "$date": "2022-05-27T23:54:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "8f2f34e3-e16b-4217-9eed-ccda4b6408ba", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T00:14:40.000Z" - }, - "end": { - "$date": "2022-05-28T01:21:10.000Z" - }, - "events": [ - { - "uuid": "4b702253-1085-48dd-93c3-71be67079140", - "start": { - "$date": "2022-05-28T00:14:40.000Z" - }, - "end": { - "$date": "2022-05-28T01:21:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "9ab068ed-3886-4e01-b8b9-7657baf65784", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T00:32:07.000Z" - }, - "end": { - "$date": "2022-05-28T00:35:32.000Z" - }, - "events": [ - { - "uuid": "c286709c-c366-4e70-a680-bf1010bf4e2d", - "start": { - "$date": "2022-05-28T00:32:07.000Z" - }, - "end": { - "$date": "2022-05-28T00:35:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "fd820503-56d1-4722-9ecf-5e58b7c26aa1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T00:37:23.000Z" - }, - "end": { - "$date": "2022-05-28T01:47:30.000Z" - }, - "events": [ - { - "uuid": "63a455ff-1b48-46b0-8341-d12ad4ee8b83", - "start": { - "$date": "2022-05-28T00:37:23.000Z" - }, - "end": { - "$date": "2022-05-28T01:47:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "d57d76fe-bfa7-4da0-98d2-cd384aca8f60", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T01:23:15.000Z" - }, - "end": { - "$date": "2022-05-28T02:30:21.000Z" - }, - "events": [ - { - "uuid": "a1ec7acf-1e06-4d03-8318-28cf555e3a68", - "start": { - "$date": "2022-05-28T01:23:15.000Z" - }, - "end": { - "$date": "2022-05-28T02:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "58536ae7-3da0-4f4c-8157-aba0b92c79a9", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-28T03:10:37.000Z" - }, - "end": { - "$date": "2022-05-28T04:24:18.000Z" - }, - "events": [ - { - "uuid": "c08a178d-33d0-4c00-9d6d-e950297aacf0", - "start": { - "$date": "2022-05-28T03:10:37.000Z" - }, - "end": { - "$date": "2022-05-28T04:24:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "3db35b3e-f11f-4620-a689-3effaee27452", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-28T03:12:27.000Z" - }, - "end": { - "$date": "2022-05-28T05:49:04.000Z" - }, - "events": [ - { - "uuid": "e4f3a170-f243-4004-b9f5-99154c2da042", - "start": { - "$date": "2022-05-28T03:12:27.000Z" - }, - "end": { - "$date": "2022-05-28T04:04:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6ef3b94f-a2de-4d47-b66f-27b101616c38", - "start": { - "$date": "2022-05-28T04:04:27.000Z" - }, - "end": { - "$date": "2022-05-28T04:10:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "15c23a61-53cc-49f8-b8de-0379be67e3ae", - "start": { - "$date": "2022-05-28T04:10:27.000Z" - }, - "end": { - "$date": "2022-05-28T04:24:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "83315e97-6f08-4ec9-89da-1714f4f5f625", - "start": { - "$date": "2022-05-28T04:24:27.000Z" - }, - "end": { - "$date": "2022-05-28T05:49:04.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a8119bf5-73bd-4b30-8418-bf953487abb8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T03:23:11.000Z" - }, - "end": { - "$date": "2022-05-28T03:45:01.000Z" - }, - "events": [ - { - "uuid": "b8bf8561-5602-46b6-86cd-0901ca015c3c", - "start": { - "$date": "2022-05-28T03:23:11.000Z" - }, - "end": { - "$date": "2022-05-28T03:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "b9ff37d6-d36a-421f-9c35-be46131e4a9b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T03:49:33.000Z" - }, - "end": { - "$date": "2022-05-28T03:55:53.000Z" - }, - "events": [ - { - "uuid": "91075ded-269e-414a-ba8e-b2090857a3de", - "start": { - "$date": "2022-05-28T03:49:33.000Z" - }, - "end": { - "$date": "2022-05-28T03:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "23b6b80a-6748-4010-8481-49bd1165424a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T03:57:53.000Z" - }, - "end": { - "$date": "2022-05-28T04:49:40.000Z" - }, - "events": [ - { - "uuid": "dad1c95e-fd3d-4e78-a5da-a51781929679", - "start": { - "$date": "2022-05-28T03:57:53.000Z" - }, - "end": { - "$date": "2022-05-28T04:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "fbaf70f9-b654-43f0-bbae-49c5f940ce67", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-28T04:00:04.000Z" - }, - "end": { - "$date": "2022-05-28T08:31:23.000Z" - }, - "events": [ - { - "uuid": "724e80d7-1f5a-4d68-8a38-6792c7827c4a", - "start": { - "$date": "2022-05-28T04:00:04.000Z" - }, - "end": { - "$date": "2022-05-28T08:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "8f1f0125-f94b-4bdf-98da-7c2210ded1cf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-28T04:00:41.000Z" - }, - "end": { - "$date": "2022-05-28T08:31:09.000Z" - }, - "events": [ - { - "uuid": "1bdfd66e-38a7-4fb7-9723-5acb5a7a372c", - "start": { - "$date": "2022-05-28T04:00:41.000Z" - }, - "end": { - "$date": "2022-05-28T08:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "76de6f10-e6cc-4ee5-a17c-9b51a65cae27", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-28T04:01:06.000Z" - }, - "end": { - "$date": "2022-05-28T08:24:58.000Z" - }, - "events": [ - { - "uuid": "d50b1be1-d986-44fa-9c63-868107464ad5", - "start": { - "$date": "2022-05-28T04:01:06.000Z" - }, - "end": { - "$date": "2022-05-28T08:24:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cfcfdcfa-5ce3-4fae-85e6-a0651aef5910", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T04:49:55.000Z" - }, - "end": { - "$date": "2022-05-28T06:58:46.000Z" - }, - "events": [ - { - "uuid": "90575ab5-1311-4948-929f-543872200dbf", - "start": { - "$date": "2022-05-28T04:49:55.000Z" - }, - "end": { - "$date": "2022-05-28T06:58:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "b8a96721-b398-4518-a7ad-02ae470ab509", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T09:47:01.000Z" - }, - "end": { - "$date": "2022-05-28T10:22:43.000Z" - }, - "events": [ - { - "uuid": "f7032930-2015-4d85-8733-c92ca4f8da51", - "start": { - "$date": "2022-05-28T09:47:01.000Z" - }, - "end": { - "$date": "2022-05-28T10:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6002a5f8-5a22-418e-b8d6-65c9836a4a47", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T13:30:54.000Z" - }, - "end": { - "$date": "2022-05-28T13:42:09.000Z" - }, - "events": [ - { - "uuid": "f6ef9047-b3cd-4f28-9855-03086b0227b8", - "start": { - "$date": "2022-05-28T13:30:54.000Z" - }, - "end": { - "$date": "2022-05-28T13:42:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "959b311f-32be-4ae6-9f01-791d575fc6ba", - "uuid": "6c2b92fe-975c-4b62-bfcc-13704c11bae4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T13:42:25.000Z" - }, - "end": { - "$date": "2022-05-28T15:01:06.000Z" - }, - "events": [ - { - "uuid": "36d66261-9ba5-48ff-8655-8e39c7355047", - "start": { - "$date": "2022-05-28T13:42:25.000Z" - }, - "end": { - "$date": "2022-05-28T15:01:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3a35cf45-2960-4c88-93e2-179c26d9dab4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T15:43:38.000Z" - }, - "end": { - "$date": "2022-05-28T16:01:49.000Z" - }, - "events": [ - { - "uuid": "1e6acfa6-39da-48ba-904d-2368f41ffc02", - "start": { - "$date": "2022-05-28T15:43:38.000Z" - }, - "end": { - "$date": "2022-05-28T16:01:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4d001570-9545-42e6-b358-cba655c0131a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-28T16:37:24.000Z" - }, - "end": { - "$date": "2022-05-28T18:02:31.000Z" - }, - "events": [ - { - "uuid": "8038493f-ca82-473e-801e-5e667b21af3c", - "start": { - "$date": "2022-05-28T16:37:24.000Z" - }, - "end": { - "$date": "2022-05-28T18:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "57a8fdad-03a8-4e94-ae3f-c1bf75de44de", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-28T17:19:09.000Z" - }, - "end": { - "$date": "2022-05-28T18:33:38.000Z" - }, - "events": [ - { - "uuid": "803fe29e-96d3-4661-a92d-9badcf71d69c", - "start": { - "$date": "2022-05-28T17:19:09.000Z" - }, - "end": { - "$date": "2022-05-28T18:33:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76c02bfe-6b31-4ebc-b625-630e0dbc31c5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T17:31:14.000Z" - }, - "end": { - "$date": "2022-05-28T20:53:31.000Z" - }, - "events": [ - { - "uuid": "23d73d6e-7224-410d-a9ae-98a79c65d6b8", - "start": { - "$date": "2022-05-28T17:31:14.000Z" - }, - "end": { - "$date": "2022-05-28T20:53:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "aec55728-5866-4943-af5e-016a52923b33", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T17:40:24.000Z" - }, - "end": { - "$date": "2022-05-28T21:02:53.000Z" - }, - "events": [ - { - "uuid": "aa94ebc7-6a45-4d8a-9486-1c18e976f5f7", - "start": { - "$date": "2022-05-28T17:40:24.000Z" - }, - "end": { - "$date": "2022-05-28T21:02:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "afdfb9ce-1439-47dd-9d60-9fa167dec8f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-28T18:03:17.000Z" - }, - "end": { - "$date": "2022-05-28T20:45:00.000Z" - }, - "events": [ - { - "uuid": "3c06fe0f-7b33-4842-9a30-36e5ce04f2f6", - "start": { - "$date": "2022-05-28T18:03:17.000Z" - }, - "end": { - "$date": "2022-05-28T20:32:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cb6eb3dd-ef2e-4a98-ba77-233ed2eb0e33", - "start": { - "$date": "2022-05-28T20:32:17.000Z" - }, - "end": { - "$date": "2022-05-28T20:37:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c95bbdfa-ad4a-4df1-b953-badd9c1cb9cb", - "start": { - "$date": "2022-05-28T20:37:17.000Z" - }, - "end": { - "$date": "2022-05-28T20:45:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7570e46e-7bb1-48fd-915c-69a8d3b19da6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-28T18:25:19.000Z" - }, - "end": { - "$date": "2022-05-28T20:51:29.000Z" - }, - "events": [ - { - "uuid": "ffa76166-8b5c-43ec-b737-cd65f8bb960f", - "start": { - "$date": "2022-05-28T18:25:19.000Z" - }, - "end": { - "$date": "2022-05-28T20:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "525dcfb1-5fd3-400d-872d-6ed56e3a64a3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-28T18:26:43.000Z" - }, - "end": { - "$date": "2022-05-28T20:51:40.000Z" - }, - "events": [ - { - "uuid": "dd6e123a-2d90-4a70-a0bc-0fa93d37f06c", - "start": { - "$date": "2022-05-28T18:26:43.000Z" - }, - "end": { - "$date": "2022-05-28T20:51:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "ca3dc7a4-5701-443a-802e-36c95e07a039", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-28T20:45:06.000Z" - }, - "end": { - "$date": "2022-05-28T20:55:36.000Z" - }, - "events": [ - { - "uuid": "044bf8a3-d6ac-4d7d-99ee-9075076dfd24", - "start": { - "$date": "2022-05-28T20:45:06.000Z" - }, - "end": { - "$date": "2022-05-28T20:55:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "62a1ec48-4122-4ed2-a5ff-d3993a674d47", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T20:54:39.000Z" - }, - "end": { - "$date": "2022-05-28T21:30:42.000Z" - }, - "events": [ - { - "uuid": "0931482a-22d6-4233-91f5-9c714c5e7368", - "start": { - "$date": "2022-05-28T20:54:39.000Z" - }, - "end": { - "$date": "2022-05-28T21:30:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2faba61c-d47a-4876-b775-083fbf8fd00d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T21:14:30.000Z" - }, - "end": { - "$date": "2022-05-28T21:29:09.000Z" - }, - "events": [ - { - "uuid": "170267e8-ccb6-4e64-a369-6d78dd43012e", - "start": { - "$date": "2022-05-28T21:14:30.000Z" - }, - "end": { - "$date": "2022-05-28T21:29:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e13fc15d-0e61-4e49-9dc2-77269fd69bc5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-28T21:31:22.000Z" - }, - "end": { - "$date": "2022-05-28T21:50:34.000Z" - }, - "events": [ - { - "uuid": "63347b1a-1e62-44c4-9da6-1cfe1a4c4c62", - "start": { - "$date": "2022-05-28T21:31:22.000Z" - }, - "end": { - "$date": "2022-05-28T21:50:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "96992389-d1d5-49f4-8041-67257325dc4e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-28T21:51:41.000Z" - }, - "end": { - "$date": "2022-05-28T21:57:21.000Z" - }, - "events": [ - { - "uuid": "d08a862c-84fa-4eeb-bbb3-010c6a394288", - "start": { - "$date": "2022-05-28T21:51:41.000Z" - }, - "end": { - "$date": "2022-05-28T21:57:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "339b6326-db63-4922-b282-0099c77dd878", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-28T21:56:43.000Z" - }, - "end": { - "$date": "2022-05-28T23:30:34.000Z" - }, - "events": [ - { - "uuid": "cd61b456-23c2-4360-bffb-ccace06e19e4", - "start": { - "$date": "2022-05-28T21:56:43.000Z" - }, - "end": { - "$date": "2022-05-28T23:30:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ed007e09-62b2-404e-8960-5d700e06dca9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-28T21:58:28.000Z" - }, - "end": { - "$date": "2022-05-28T23:39:55.000Z" - }, - "events": [ - { - "uuid": "ddabc652-ed4b-48b4-a6b3-ba9ab37ef480", - "start": { - "$date": "2022-05-28T21:58:28.000Z" - }, - "end": { - "$date": "2022-05-28T23:39:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "c33ea010-0b74-4be6-ab16-abc375fce46e", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-28T21:59:44.000Z" - }, - "end": { - "$date": "2022-05-28T23:39:51.000Z" - }, - "events": [ - { - "uuid": "ad84cee9-0d0e-4fba-8e3a-f2395e0c5c2b", - "start": { - "$date": "2022-05-28T21:59:44.000Z" - }, - "end": { - "$date": "2022-05-28T23:39:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "da38f08e-0d79-4edd-8455-a7ad7e3fe78f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-28T22:00:42.000Z" - }, - "end": { - "$date": "2022-05-28T23:33:49.000Z" - }, - "events": [ - { - "uuid": "d3c1bd36-1279-46ff-9d0f-014db838c750", - "start": { - "$date": "2022-05-28T22:00:42.000Z" - }, - "end": { - "$date": "2022-05-28T23:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e534466d-31cc-4f4a-8637-e89d19d30f87", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T22:42:54.000Z" - }, - "end": { - "$date": "2022-05-28T22:44:29.000Z" - }, - "events": [ - { - "uuid": "c11e6d39-ddda-40fd-8991-077c38402e5c", - "start": { - "$date": "2022-05-28T22:42:54.000Z" - }, - "end": { - "$date": "2022-05-28T22:44:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "475e798d-9399-4a08-b603-a8ca35e64db1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T22:47:20.000Z" - }, - "end": { - "$date": "2022-05-28T22:57:10.000Z" - }, - "events": [ - { - "uuid": "63fa9f43-55fa-474b-9b8d-62d326598cf5", - "start": { - "$date": "2022-05-28T22:47:20.000Z" - }, - "end": { - "$date": "2022-05-28T22:57:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e2b875dd-01d1-403e-87f5-5f42d7709e3c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-29T00:22:28.000Z" - }, - "end": { - "$date": "2022-05-29T00:43:49.000Z" - }, - "events": [ - { - "uuid": "5623197f-cc5f-4c18-a3e8-d2d4e05db84c", - "start": { - "$date": "2022-05-29T00:22:28.000Z" - }, - "end": { - "$date": "2022-05-29T00:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "954a1c94-b133-4871-a4c0-6a1c3f3b61e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T22:58:15.000Z" - }, - "end": { - "$date": "2022-05-28T23:10:10.000Z" - }, - "events": [ - { - "uuid": "6c5c65d1-7c99-4322-9c45-e9292ddf10cb", - "start": { - "$date": "2022-05-28T22:58:15.000Z" - }, - "end": { - "$date": "2022-05-28T23:10:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "b1238392-3dd4-4efd-a017-eda39857315c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T23:10:26.000Z" - }, - "end": { - "$date": "2022-05-28T23:12:01.000Z" - }, - "events": [ - { - "uuid": "2a841779-8a64-4021-9611-b873e4f38cf8", - "start": { - "$date": "2022-05-28T23:10:26.000Z" - }, - "end": { - "$date": "2022-05-28T23:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5f6ab6f4-0310-45b9-b8bd-2437c3506229", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T23:12:21.000Z" - }, - "end": { - "$date": "2022-05-28T23:17:06.000Z" - }, - "events": [ - { - "uuid": "dea67d59-185a-476e-ba15-5c8a0abd0514", - "start": { - "$date": "2022-05-28T23:12:21.000Z" - }, - "end": { - "$date": "2022-05-28T23:17:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "fa4a9d6a-e77c-49fc-aeb4-3620bb1939df", - "uuid": "a91705db-2194-4d20-97b8-2b90e5493219", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T23:27:02.000Z" - }, - "end": { - "$date": "2022-05-28T23:30:12.000Z" - }, - "events": [ - { - "uuid": "03658872-d18a-4343-be2d-af435fab2636", - "start": { - "$date": "2022-05-28T23:27:02.000Z" - }, - "end": { - "$date": "2022-05-28T23:30:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0c610844-c16e-477d-9ed3-786edfc33d88", - "uuid": "98c916eb-8a8f-4b15-98c3-9091bbe25c33", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-28T23:34:19.000Z" - }, - "end": { - "$date": "2022-05-28T23:42:49.000Z" - }, - "events": [ - { - "uuid": "3cea49c4-4eca-41a5-985c-4c6be5383322", - "start": { - "$date": "2022-05-28T23:34:19.000Z" - }, - "end": { - "$date": "2022-05-28T23:42:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "07e8ff76-9557-4774-ab52-c691706f8d37", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-28T23:38:18.000Z" - }, - "end": { - "$date": "2022-05-29T01:35:03.000Z" - }, - "events": [ - { - "uuid": "748d3e73-5155-4857-baa5-72031d469e44", - "start": { - "$date": "2022-05-28T23:38:18.000Z" - }, - "end": { - "$date": "2022-05-29T01:35:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2f29f8f9-e272-409d-9f3a-9f1b78b254fa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T01:14:45.000Z" - }, - "end": { - "$date": "2022-05-29T02:26:19.000Z" - }, - "events": [ - { - "uuid": "1903c82e-95d5-4fb4-9106-5f441c55084b", - "start": { - "$date": "2022-05-29T01:14:45.000Z" - }, - "end": { - "$date": "2022-05-29T02:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "26c20b2e-3a07-4197-9088-88f79caf143a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-29T01:27:21.000Z" - }, - "end": { - "$date": "2022-05-29T02:07:09.000Z" - }, - "events": [ - { - "uuid": "c1862109-3723-42e9-a1d8-98952e65895d", - "start": { - "$date": "2022-05-29T01:27:21.000Z" - }, - "end": { - "$date": "2022-05-29T02:07:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "159c9023-4d12-43b6-9f6b-521b8267df45", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T01:37:34.000Z" - }, - "end": { - "$date": "2022-05-29T02:17:19.000Z" - }, - "events": [ - { - "uuid": "63983c3b-9c2e-4782-8f93-d5fda739619b", - "start": { - "$date": "2022-05-29T01:37:34.000Z" - }, - "end": { - "$date": "2022-05-29T02:17:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "819f5688-ad23-4dec-beba-d5daa531faa6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-29T02:10:43.000Z" - }, - "end": { - "$date": "2022-05-29T02:35:05.000Z" - }, - "events": [ - { - "uuid": "bb885524-dbc7-4549-a109-16756c3f161c", - "start": { - "$date": "2022-05-29T02:10:43.000Z" - }, - "end": { - "$date": "2022-05-29T02:35:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0c569d02-738d-4022-9e1d-cc3950745f52", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-29T02:10:53.000Z" - }, - "end": { - "$date": "2022-05-29T02:26:28.000Z" - }, - "events": [ - { - "uuid": "56e007e8-4288-42bf-98d9-3b6036077489", - "start": { - "$date": "2022-05-29T02:10:53.000Z" - }, - "end": { - "$date": "2022-05-29T02:26:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "3e56839d-a219-41e7-9984-1e1911486ae4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-29T02:26:59.000Z" - }, - "end": { - "$date": "2022-05-29T06:20:29.000Z" - }, - "events": [ - { - "uuid": "11bb2452-6934-45a9-8d18-bdc4bc7d24ae", - "start": { - "$date": "2022-05-29T02:26:59.000Z" - }, - "end": { - "$date": "2022-05-29T06:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "bad3b876-e246-42b6-84f3-16866fd75500", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T02:29:14.000Z" - }, - "end": { - "$date": "2022-05-29T06:41:56.000Z" - }, - "events": [ - { - "uuid": "4a75355a-3e81-4767-bb7b-2beacdce5ac4", - "start": { - "$date": "2022-05-29T02:29:14.000Z" - }, - "end": { - "$date": "2022-05-29T06:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "3fff536f-de3b-4569-972f-4f7050ae0494", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-29T02:30:45.000Z" - }, - "end": { - "$date": "2022-05-29T06:20:13.000Z" - }, - "events": [ - { - "uuid": "87cf89bf-0f1b-459b-81b0-7ea064c76189", - "start": { - "$date": "2022-05-29T02:30:45.000Z" - }, - "end": { - "$date": "2022-05-29T06:20:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "0e41e3fc-2d41-44c3-b6d7-b7abeb6cbd84", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-29T03:16:53.000Z" - }, - "end": { - "$date": "2022-05-29T06:38:10.000Z" - }, - "events": [ - { - "uuid": "2e1e5eee-d8b2-4a5d-b4de-c8ad662949ad", - "start": { - "$date": "2022-05-29T03:16:53.000Z" - }, - "end": { - "$date": "2022-05-29T06:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "35cbb574-ca5a-49ca-b35c-4431cf46167d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-29T03:24:03.000Z" - }, - "end": { - "$date": "2022-05-29T04:04:26.000Z" - }, - "events": [ - { - "uuid": "c434f6bc-05e5-4981-945f-6712a35646fa", - "start": { - "$date": "2022-05-29T03:24:03.000Z" - }, - "end": { - "$date": "2022-05-29T04:04:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "771928ba-88ce-4ab0-a140-965e60b807ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T04:09:31.000Z" - }, - "end": { - "$date": "2022-05-29T04:21:07.000Z" - }, - "events": [ - { - "uuid": "d4e4a2f0-d53b-4327-b7f3-162fc51b9d6a", - "start": { - "$date": "2022-05-29T04:09:31.000Z" - }, - "end": { - "$date": "2022-05-29T04:21:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e2533804-d7fa-4f97-adf1-e5af12185c1e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T04:12:38.000Z" - }, - "end": { - "$date": "2022-05-29T04:17:47.000Z" - }, - "events": [ - { - "uuid": "1e6db113-5f08-4d2f-86ab-e632fa2eaebe", - "start": { - "$date": "2022-05-29T04:12:38.000Z" - }, - "end": { - "$date": "2022-05-29T04:17:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "a4a6d186-9983-4d9f-8690-85921e98f97c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-29T04:13:40.000Z" - }, - "end": { - "$date": "2022-05-29T06:17:40.000Z" - }, - "events": [ - { - "uuid": "e9bc5a64-9dce-475d-ac12-0374eb41619d", - "start": { - "$date": "2022-05-29T04:13:40.000Z" - }, - "end": { - "$date": "2022-05-29T06:17:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "99f55805-c43b-4dcf-a84a-18680e200e68", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T04:25:52.000Z" - }, - "end": { - "$date": "2022-05-29T04:30:08.000Z" - }, - "events": [ - { - "uuid": "d1127961-6305-4420-9eb5-092f9def647c", - "start": { - "$date": "2022-05-29T04:25:52.000Z" - }, - "end": { - "$date": "2022-05-29T04:30:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "ae8d418e-97d6-430a-9443-5065f3d5de5c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T04:26:49.000Z" - }, - "end": { - "$date": "2022-05-29T06:08:24.000Z" - }, - "events": [ - { - "uuid": "9afa5908-be15-4bee-8b54-5faf923f73f7", - "start": { - "$date": "2022-05-29T04:26:49.000Z" - }, - "end": { - "$date": "2022-05-29T06:08:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "b11f888f-7013-49b4-bb2e-0a96b0b73bdc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T04:30:23.000Z" - }, - "end": { - "$date": "2022-05-29T06:20:19.000Z" - }, - "events": [ - { - "uuid": "f8d25b87-58b2-4519-b9e6-2e651e17db1c", - "start": { - "$date": "2022-05-29T04:30:23.000Z" - }, - "end": { - "$date": "2022-05-29T06:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "2858626b-466e-47d8-ba76-04f7f9f9cdf0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T06:13:50.000Z" - }, - "end": { - "$date": "2022-05-29T06:22:31.000Z" - }, - "events": [ - { - "uuid": "894d418e-c19d-4b06-a1b6-0240954fd3c0", - "start": { - "$date": "2022-05-29T06:13:50.000Z" - }, - "end": { - "$date": "2022-05-29T06:22:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "49b74d79-2870-4c72-be55-8824979304b0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T06:20:29.000Z" - }, - "end": { - "$date": "2022-05-29T10:17:14.000Z" - }, - "events": [ - { - "uuid": "4f9ea001-e247-47af-a572-c2cdd6817d3b", - "start": { - "$date": "2022-05-29T06:20:29.000Z" - }, - "end": { - "$date": "2022-05-29T06:41:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "73f2a3df-35d7-4898-ab7c-58a23f073068", - "start": { - "$date": "2022-05-29T06:41:29.000Z" - }, - "end": { - "$date": "2022-05-29T06:46:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f466c45e-7453-4608-9682-5087f96f3fe2", - "start": { - "$date": "2022-05-29T06:46:29.000Z" - }, - "end": { - "$date": "2022-05-29T06:56:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "12375b75-9206-426a-8dee-c2c72f6a9591", - "start": { - "$date": "2022-05-29T06:56:29.000Z" - }, - "end": { - "$date": "2022-05-29T07:13:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bc8fab80-70e1-4fad-a6b1-42be97c68c30", - "start": { - "$date": "2022-05-29T07:13:29.000Z" - }, - "end": { - "$date": "2022-05-29T07:23:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4ad372f1-4ecc-46c4-8fd6-2417abcc893e", - "start": { - "$date": "2022-05-29T07:23:29.000Z" - }, - "end": { - "$date": "2022-05-29T10:17:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1c7f6d76-f15c-43d1-9cab-c02b58a09207", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T06:24:57.000Z" - }, - "end": { - "$date": "2022-05-29T06:29:52.000Z" - }, - "events": [ - { - "uuid": "2c48b27f-dce1-4cf9-a432-de887080cf2e", - "start": { - "$date": "2022-05-29T06:24:57.000Z" - }, - "end": { - "$date": "2022-05-29T06:29:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3af5f7a1-0cfa-4b6a-b508-aa2f84f17b16", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-29T14:35:27.000Z" - }, - "end": { - "$date": "2022-05-29T15:37:35.000Z" - }, - "events": [ - { - "uuid": "9a202ca5-415f-4661-bc82-b29a3050f9db", - "start": { - "$date": "2022-05-29T14:35:27.000Z" - }, - "end": { - "$date": "2022-05-29T15:37:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "fe259929-dc24-4bb1-8cc7-1409b5235915", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T14:55:45.000Z" - }, - "end": { - "$date": "2022-05-29T15:08:30.000Z" - }, - "events": [ - { - "uuid": "2396bf1d-cb49-4f48-baab-a1206569c9b3", - "start": { - "$date": "2022-05-29T14:55:45.000Z" - }, - "end": { - "$date": "2022-05-29T15:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "73559065-e17c-41c9-8560-a8ff2188479d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T15:08:40.000Z" - }, - "end": { - "$date": "2022-05-29T15:30:47.000Z" - }, - "events": [ - { - "uuid": "a3d93479-2296-44bb-886a-9f51966dd570", - "start": { - "$date": "2022-05-29T15:08:40.000Z" - }, - "end": { - "$date": "2022-05-29T15:30:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "b7fd9313-1792-4013-978d-dea10bde428d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-29T15:31:27.000Z" - }, - "end": { - "$date": "2022-05-29T17:59:36.000Z" - }, - "events": [ - { - "uuid": "e0404f19-b746-4a49-9c0c-6acfd9197ed5", - "start": { - "$date": "2022-05-29T15:31:27.000Z" - }, - "end": { - "$date": "2022-05-29T17:59:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44a74e63-ae5e-4bbd-8b84-c5d9e4daa678", - "uuid": "c499dc09-398a-466e-82c7-7f797d50a2c1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-29T15:47:14.000Z" - }, - "end": { - "$date": "2022-05-29T20:34:09.000Z" - }, - "events": [ - { - "uuid": "91f72f94-167e-40fe-b546-4b9ec4114d43", - "start": { - "$date": "2022-05-29T15:47:14.000Z" - }, - "end": { - "$date": "2022-05-29T20:34:09.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b747aeb3-0758-4783-88b9-049fe227fc8f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-29T16:21:40.000Z" - }, - "end": { - "$date": "2022-05-29T20:33:31.000Z" - }, - "events": [ - { - "uuid": "2d90f78b-aefe-41a5-aaf8-88280e014381", - "start": { - "$date": "2022-05-29T16:21:40.000Z" - }, - "end": { - "$date": "2022-05-29T17:49:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "68e4e3c2-c494-408c-8f29-6777a3e1d36a", - "start": { - "$date": "2022-05-29T17:49:40.000Z" - }, - "end": { - "$date": "2022-05-29T17:54:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9687d1eb-436d-4ba5-b7b9-e3a94f9cd9be", - "start": { - "$date": "2022-05-29T17:54:40.000Z" - }, - "end": { - "$date": "2022-05-29T18:04:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "661a9da5-9ea8-4866-b824-85437915ed3a", - "start": { - "$date": "2022-05-29T18:04:40.000Z" - }, - "end": { - "$date": "2022-05-29T19:23:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d90f3a20-3e6e-4460-9682-bf935d41b923", - "start": { - "$date": "2022-05-29T19:23:40.000Z" - }, - "end": { - "$date": "2022-05-29T19:33:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ec8d92fa-8456-44b1-8388-f6a086a1d38b", - "start": { - "$date": "2022-05-29T19:33:40.000Z" - }, - "end": { - "$date": "2022-05-29T19:36:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "92aceec1-4060-40ed-8348-0649e3a0b069", - "start": { - "$date": "2022-05-29T19:36:40.000Z" - }, - "end": { - "$date": "2022-05-29T19:46:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ffd5d58b-046e-4186-9936-f289c986128c", - "start": { - "$date": "2022-05-29T19:46:40.000Z" - }, - "end": { - "$date": "2022-05-29T20:30:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aaa04370-8b6e-40c8-b33e-4c74a5678370", - "start": { - "$date": "2022-05-29T20:30:40.000Z" - }, - "end": { - "$date": "2022-05-29T20:33:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "de154159-cb28-49a6-a3bb-776451581cf2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-29T17:03:45.000Z" - }, - "end": { - "$date": "2022-05-29T18:07:46.000Z" - }, - "events": [ - { - "uuid": "643401d0-66f6-44cc-9be8-38298f30e020", - "start": { - "$date": "2022-05-29T17:03:45.000Z" - }, - "end": { - "$date": "2022-05-29T18:07:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f81054d2-6308-4e46-810b-69c794610629", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T17:31:09.000Z" - }, - "end": { - "$date": "2022-05-29T21:52:30.000Z" - }, - "events": [ - { - "uuid": "0182cce7-4a12-4fab-8c57-67c065501a0c", - "start": { - "$date": "2022-05-29T17:31:09.000Z" - }, - "end": { - "$date": "2022-05-29T19:55:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8c8f94be-0963-4fc4-85fe-d922f8f06ca4", - "start": { - "$date": "2022-05-29T19:55:09.000Z" - }, - "end": { - "$date": "2022-05-29T19:58:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b0626380-346f-4e0a-b3ff-d057b5902171", - "start": { - "$date": "2022-05-29T19:58:09.000Z" - }, - "end": { - "$date": "2022-05-29T21:52:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "d49e95a1-cbde-4ee8-a2f8-b7f426207ad8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-29T17:49:28.000Z" - }, - "end": { - "$date": "2022-05-29T18:53:52.000Z" - }, - "events": [ - { - "uuid": "3440753d-a346-4b20-9912-8dcf6d8bfc20", - "start": { - "$date": "2022-05-29T17:49:28.000Z" - }, - "end": { - "$date": "2022-05-29T18:53:52.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e0d83fb-03df-41c9-88f8-677318913107", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-29T18:49:21.000Z" - }, - "end": { - "$date": "2022-05-29T19:03:30.000Z" - }, - "events": [ - { - "uuid": "4ec58b4e-1dd8-43b9-a0bf-a04a871b114c", - "start": { - "$date": "2022-05-29T18:49:21.000Z" - }, - "end": { - "$date": "2022-05-29T19:03:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "a5b8e09a-15a3-40c4-8fd5-ea6c962b6ce3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-29T19:14:12.000Z" - }, - "end": { - "$date": "2022-05-29T22:01:25.000Z" - }, - "events": [ - { - "uuid": "9db87572-e9a7-432c-b7be-1e365758c37a", - "start": { - "$date": "2022-05-29T19:14:12.000Z" - }, - "end": { - "$date": "2022-05-29T22:01:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "c89d192b-ec28-40dc-8c6d-a2038f806608", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T20:00:26.000Z" - }, - "end": { - "$date": "2022-05-29T21:10:06.000Z" - }, - "events": [ - { - "uuid": "6f78096b-366c-4f62-84da-14446ae7cfd1", - "start": { - "$date": "2022-05-29T20:00:26.000Z" - }, - "end": { - "$date": "2022-05-29T21:10:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "7026a2f7-d1f2-4e6e-a105-a99fc4bc6e3f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-29T20:59:41.000Z" - }, - "end": { - "$date": "2022-05-29T21:31:56.000Z" - }, - "events": [ - { - "uuid": "6ebd3529-b873-481f-a39a-ffab5d0b97a5", - "start": { - "$date": "2022-05-29T20:59:41.000Z" - }, - "end": { - "$date": "2022-05-29T21:31:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0d8beb21-1b3f-4409-b03c-03a3893236c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-29T23:45:12.000Z" - }, - "end": { - "$date": "2022-05-29T23:45:17.000Z" - }, - "events": [ - { - "uuid": "97a00b6e-008b-4352-9f98-c0c596c8868f", - "start": { - "$date": "2022-05-29T23:45:12.000Z" - }, - "end": { - "$date": "2022-05-29T23:45:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f362198c-81dd-4adb-881e-eb954610abf8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T21:12:49.000Z" - }, - "end": { - "$date": "2022-05-29T23:22:10.000Z" - }, - "events": [ - { - "uuid": "7a4f51af-faab-4ab0-aba2-ce56f0e07a15", - "start": { - "$date": "2022-05-29T21:12:49.000Z" - }, - "end": { - "$date": "2022-05-29T22:23:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80971e51-ba81-4b4d-9cae-4610625151b2", - "start": { - "$date": "2022-05-29T22:23:49.000Z" - }, - "end": { - "$date": "2022-05-29T22:28:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "04d5d6ea-1ba6-4843-ae59-474d963b0990", - "start": { - "$date": "2022-05-29T22:28:49.000Z" - }, - "end": { - "$date": "2022-05-29T23:22:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "19a1fed5-a0f8-4846-94fd-8adcf732d2b9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-29T21:34:11.000Z" - }, - "end": { - "$date": "2022-05-30T01:11:14.000Z" - }, - "events": [ - { - "uuid": "24b92b8c-91bc-4959-b648-2819772f94e5", - "start": { - "$date": "2022-05-29T21:34:11.000Z" - }, - "end": { - "$date": "2022-05-30T01:11:14.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c621d5c5-5ad2-44f9-91ac-f1be93d4f5ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-29T21:57:07.000Z" - }, - "end": { - "$date": "2022-05-29T23:01:03.000Z" - }, - "events": [ - { - "uuid": "db188ea0-29b5-4705-b80d-d130845bfc7a", - "start": { - "$date": "2022-05-29T21:57:07.000Z" - }, - "end": { - "$date": "2022-05-29T22:49:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7e60fbea-3ded-4cfa-8bd4-4fdff07607ac", - "start": { - "$date": "2022-05-29T22:49:07.000Z" - }, - "end": { - "$date": "2022-05-29T22:54:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4490c7c2-26b2-40ad-aeab-ad5d0b2f4060", - "start": { - "$date": "2022-05-29T22:54:07.000Z" - }, - "end": { - "$date": "2022-05-29T23:01:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "64127be1-59c2-42e4-9ece-0a553334e617", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-29T22:04:25.000Z" - }, - "end": { - "$date": "2022-05-29T22:57:13.000Z" - }, - "events": [ - { - "uuid": "c5257f2f-6f48-4a90-87cd-9d78a7f4ddfc", - "start": { - "$date": "2022-05-29T22:04:25.000Z" - }, - "end": { - "$date": "2022-05-29T22:57:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "95371b0c-2115-4515-adb6-b83e09be37e7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T23:38:10.000Z" - }, - "end": { - "$date": "2022-05-29T23:38:12.000Z" - }, - "events": [ - { - "uuid": "0bb8d7e5-6efc-469f-abc7-d6e8772bc702", - "start": { - "$date": "2022-05-29T23:38:10.000Z" - }, - "end": { - "$date": "2022-05-29T23:38:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b3c8a207-23b8-4407-93e3-6c21fff06279", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T23:39:05.000Z" - }, - "end": { - "$date": "2022-05-29T23:45:34.000Z" - }, - "events": [ - { - "uuid": "975e10ef-5a46-4059-9886-3fe7e00b38b6", - "start": { - "$date": "2022-05-29T23:39:05.000Z" - }, - "end": { - "$date": "2022-05-29T23:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08c549ed-6686-422c-947d-dad12553d161", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-29T23:40:15.000Z" - }, - "end": { - "$date": "2022-05-30T02:49:30.000Z" - }, - "events": [ - { - "uuid": "d810487e-d18a-45e7-a17c-d12f46254cb2", - "start": { - "$date": "2022-05-29T23:40:15.000Z" - }, - "end": { - "$date": "2022-05-30T02:49:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "698e7afc-738a-4f70-b6f0-249e114a5c26", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-29T23:53:12.000Z" - }, - "end": { - "$date": "2022-05-30T02:49:21.000Z" - }, - "events": [ - { - "uuid": "a4d0a7ef-3637-47d2-a248-c10b67b3201a", - "start": { - "$date": "2022-05-29T23:53:12.000Z" - }, - "end": { - "$date": "2022-05-30T02:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ac453a6c-dcf8-4372-877d-e152c1f8a1f4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-29T23:54:33.000Z" - }, - "end": { - "$date": "2022-05-30T01:09:51.000Z" - }, - "events": [ - { - "uuid": "3d770e32-2296-4856-a1b1-2c450dfbe242", - "start": { - "$date": "2022-05-29T23:54:33.000Z" - }, - "end": { - "$date": "2022-05-30T01:09:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "03e61102-97bb-4027-a9e7-3cf3383877bf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-29T23:54:42.000Z" - }, - "end": { - "$date": "2022-05-30T02:49:14.000Z" - }, - "events": [ - { - "uuid": "fe2ecd62-bf16-4a24-9450-9c66d3811836", - "start": { - "$date": "2022-05-29T23:54:42.000Z" - }, - "end": { - "$date": "2022-05-30T02:49:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "a431007e-38f5-4dec-8040-1059752c6646", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-30T00:02:39.000Z" - }, - "end": { - "$date": "2022-05-30T02:13:25.000Z" - }, - "events": [ - { - "uuid": "1662c5b3-98ac-4805-9c30-11cbf5a0ae46", - "start": { - "$date": "2022-05-30T00:02:39.000Z" - }, - "end": { - "$date": "2022-05-30T01:21:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae2ec5df-f21b-49b5-b23b-9989a6f4f347", - "start": { - "$date": "2022-05-30T01:21:39.000Z" - }, - "end": { - "$date": "2022-05-30T02:13:25.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "abaf07e9-c822-47e0-ac7c-1ac22b3b498d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T00:33:23.000Z" - }, - "end": { - "$date": "2022-05-30T01:34:29.000Z" - }, - "events": [ - { - "uuid": "26b4bf66-0b1c-46ac-ba8b-5626d06a9b6b", - "start": { - "$date": "2022-05-30T00:33:23.000Z" - }, - "end": { - "$date": "2022-05-30T01:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "77e2d6ee-aa43-4e9b-9da5-db003fccc007", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-30T00:35:50.000Z" - }, - "end": { - "$date": "2022-05-30T01:35:13.000Z" - }, - "events": [ - { - "uuid": "edda9ad1-428e-46f3-99ec-5af66e4d04b8", - "start": { - "$date": "2022-05-30T00:35:50.000Z" - }, - "end": { - "$date": "2022-05-30T01:35:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7c04a2e4-c3f8-4563-84d0-dc8643d298cf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-30T01:35:53.000Z" - }, - "end": { - "$date": "2022-05-30T06:48:41.000Z" - }, - "events": [ - { - "uuid": "7309367d-9e3e-4a18-ab45-ab9d4954c9c6", - "start": { - "$date": "2022-05-30T01:35:53.000Z" - }, - "end": { - "$date": "2022-05-30T06:48:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "4809cbd8-bfec-4e68-9f52-fb5202a90754", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-30T01:37:04.000Z" - }, - "end": { - "$date": "2022-05-30T04:36:12.000Z" - }, - "events": [ - { - "uuid": "779d61b5-7b71-47a1-948a-f6361a49821f", - "start": { - "$date": "2022-05-30T01:37:04.000Z" - }, - "end": { - "$date": "2022-05-30T04:36:12.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d210811a-ef1e-4b8e-9040-f095170ca084", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T01:37:25.000Z" - }, - "end": { - "$date": "2022-05-30T02:35:47.000Z" - }, - "events": [ - { - "uuid": "b40296b7-4349-41af-b961-cb57d0366fed", - "start": { - "$date": "2022-05-30T01:37:25.000Z" - }, - "end": { - "$date": "2022-05-30T02:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2075383b-cc34-4494-ba6d-d01568fb865a", - "uuid": "c8c65840-4f7f-4e68-aed4-5b399dc3a44f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-05-30T01:51:35.000Z" - }, - "end": { - "$date": "2022-05-30T02:21:05.000Z" - }, - "events": [ - { - "uuid": "617d5edb-8ed8-4d98-b164-246ca9ebab8a", - "start": { - "$date": "2022-05-30T01:51:35.000Z" - }, - "end": { - "$date": "2022-05-30T02:21:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "6543a553-41f7-4504-aef5-348e21aac784", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-30T02:28:07.000Z" - }, - "end": { - "$date": "2022-05-30T03:15:36.000Z" - }, - "events": [ - { - "uuid": "d8f9003f-8779-4fb5-a23e-34f4be39c235", - "start": { - "$date": "2022-05-30T02:28:07.000Z" - }, - "end": { - "$date": "2022-05-30T03:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "f2f43b64-4558-4ce9-8d96-2da55942912c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-30T02:39:31.000Z" - }, - "end": { - "$date": "2022-05-30T08:17:06.000Z" - }, - "events": [ - { - "uuid": "e8e93539-c10b-42b9-bdfb-35dd8cdb5846", - "start": { - "$date": "2022-05-30T02:39:31.000Z" - }, - "end": { - "$date": "2022-05-30T08:17:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "3b3df829-c6fd-4604-af10-f0fe06e13cb6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T06:13:45.000Z" - }, - "end": { - "$date": "2022-05-30T06:15:18.000Z" - }, - "events": [ - { - "uuid": "88f98c13-6207-420b-9478-93ba853c59ae", - "start": { - "$date": "2022-05-30T06:13:45.000Z" - }, - "end": { - "$date": "2022-05-30T06:15:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "a7c10741-0e91-4cbd-9748-1b42660806bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-30T03:09:12.000Z" - }, - "end": { - "$date": "2022-05-30T08:18:48.000Z" - }, - "events": [ - { - "uuid": "b71eada4-2dca-4ace-b53a-f7264d6444ee", - "start": { - "$date": "2022-05-30T03:09:12.000Z" - }, - "end": { - "$date": "2022-05-30T08:18:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ba0af1d0-bdb2-44e9-adff-ae6388081709", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-30T03:20:22.000Z" - }, - "end": { - "$date": "2022-05-30T06:25:11.000Z" - }, - "events": [ - { - "uuid": "7d017952-1bbd-4282-973f-8c70eb0944ad", - "start": { - "$date": "2022-05-30T03:20:22.000Z" - }, - "end": { - "$date": "2022-05-30T06:25:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "963e2b83-3103-4003-aff9-70d4a5b52eef", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-30T04:30:47.000Z" - }, - "end": { - "$date": "2022-05-30T05:49:08.000Z" - }, - "events": [ - { - "uuid": "478f8ea9-775d-460d-accb-a0f6c4b9b328", - "start": { - "$date": "2022-05-30T04:30:47.000Z" - }, - "end": { - "$date": "2022-05-30T05:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0e642297-18f7-4eb4-b77a-cfcf143c80ec", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-30T04:07:59.000Z" - }, - "end": { - "$date": "2022-05-30T05:49:33.000Z" - }, - "events": [ - { - "uuid": "0de86630-63b2-410c-992c-859e3018462a", - "start": { - "$date": "2022-05-30T04:07:59.000Z" - }, - "end": { - "$date": "2022-05-30T05:49:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9a74eb56-f533-48cf-a62b-be94b07a70c2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-30T04:09:04.000Z" - }, - "end": { - "$date": "2022-05-30T05:49:09.000Z" - }, - "events": [ - { - "uuid": "404a0106-82a1-44d1-bee9-54677b52bc9f", - "start": { - "$date": "2022-05-30T04:09:04.000Z" - }, - "end": { - "$date": "2022-05-30T05:49:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "61106d08-1d8a-4d3f-80a2-b0f24a480e1a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-30T04:16:44.000Z" - }, - "end": { - "$date": "2022-05-30T06:24:29.000Z" - }, - "events": [ - { - "uuid": "423298ad-77f3-4a13-b53c-d4e1ef534c3d", - "start": { - "$date": "2022-05-30T04:16:44.000Z" - }, - "end": { - "$date": "2022-05-30T06:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "37e6dfd7-6494-465f-b29a-9a0685c2c21c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-30T05:53:02.000Z" - }, - "end": { - "$date": "2022-05-30T08:13:43.000Z" - }, - "events": [ - { - "uuid": "61685b34-b3c7-45dc-9155-57af2f5887dd", - "start": { - "$date": "2022-05-30T05:53:02.000Z" - }, - "end": { - "$date": "2022-05-30T08:13:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "9403973f-b334-4f9c-bd95-41e8bbcb37a1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T13:27:03.000Z" - }, - "end": { - "$date": "2022-05-30T13:35:44.000Z" - }, - "events": [ - { - "uuid": "dcf0d72c-cb90-44b1-aa34-912b5a07a828", - "start": { - "$date": "2022-05-30T13:27:03.000Z" - }, - "end": { - "$date": "2022-05-30T13:35:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4cd1d404-142f-4ef3-b155-162ed13a905b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T13:39:34.000Z" - }, - "end": { - "$date": "2022-05-30T15:04:16.000Z" - }, - "events": [ - { - "uuid": "5fab616e-c394-4bcc-bfc7-d5161fe9a8a9", - "start": { - "$date": "2022-05-30T13:39:34.000Z" - }, - "end": { - "$date": "2022-05-30T15:04:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "4d0311ea-7d58-49c5-994c-07f882df8f1d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T15:04:21.000Z" - }, - "end": { - "$date": "2022-05-30T15:09:12.000Z" - }, - "events": [ - { - "uuid": "fd28faa7-2de1-4f4b-a538-561a0b39c407", - "start": { - "$date": "2022-05-30T15:04:21.000Z" - }, - "end": { - "$date": "2022-05-30T15:09:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22998825-29f0-46c0-b237-7b93d39d8c81", - "uuid": "7d38a52e-c239-48a1-b8cf-6c6241d7c083", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-30T17:38:46.000Z" - }, - "end": { - "$date": "2022-05-30T20:20:24.000Z" - }, - "events": [ - { - "uuid": "78ed87c8-6e79-46e4-814e-ca6128f29a15", - "start": { - "$date": "2022-05-30T17:38:46.000Z" - }, - "end": { - "$date": "2022-05-30T20:20:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "20c1eca9-e05d-409c-b45a-1bf3ed19ff4d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-30T17:42:54.000Z" - }, - "end": { - "$date": "2022-05-30T18:43:17.000Z" - }, - "events": [ - { - "uuid": "d2ea42f4-e44c-40f6-97cc-cd583dc13025", - "start": { - "$date": "2022-05-30T17:42:54.000Z" - }, - "end": { - "$date": "2022-05-30T18:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3ec76306-3878-4cf7-8903-7f174f766dc2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-30T18:22:50.000Z" - }, - "end": { - "$date": "2022-05-30T18:43:19.000Z" - }, - "events": [ - { - "uuid": "ef82416b-c855-41d5-b0b1-bdcf55cda994", - "start": { - "$date": "2022-05-30T18:22:50.000Z" - }, - "end": { - "$date": "2022-05-30T18:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "283bb496-c1f0-433f-b0fc-adecf1c2c420", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-30T18:47:07.000Z" - }, - "end": { - "$date": "2022-05-30T18:48:35.000Z" - }, - "events": [ - { - "uuid": "b7c30ae6-2ae5-479e-b29a-cf84717bf94c", - "start": { - "$date": "2022-05-30T18:47:07.000Z" - }, - "end": { - "$date": "2022-05-30T18:48:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a8fd1e38-030d-462e-8986-7c5c7445494a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-30T18:53:37.000Z" - }, - "end": { - "$date": "2022-05-30T19:20:29.000Z" - }, - "events": [ - { - "uuid": "07d51691-b3a4-4ce6-8543-83979534b906", - "start": { - "$date": "2022-05-30T18:53:37.000Z" - }, - "end": { - "$date": "2022-05-30T19:20:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eeeb73bd-e1c9-4379-bc0f-62ce93ff0856", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-30T19:46:17.000Z" - }, - "end": { - "$date": "2022-05-30T21:02:25.000Z" - }, - "events": [ - { - "uuid": "17c6ee8f-fe91-486d-977b-040637822f6c", - "start": { - "$date": "2022-05-30T19:46:17.000Z" - }, - "end": { - "$date": "2022-05-30T21:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2f6535af-3c03-44ce-9c08-5bd63e6ed3f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-30T19:51:38.000Z" - }, - "end": { - "$date": "2022-05-30T20:43:43.000Z" - }, - "events": [ - { - "uuid": "b0026cda-5961-4f9d-ba97-4e997e068602", - "start": { - "$date": "2022-05-30T19:51:38.000Z" - }, - "end": { - "$date": "2022-05-30T20:15:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8aaa5475-f668-4298-8141-bd7d39a9bde7", - "start": { - "$date": "2022-05-30T20:15:38.000Z" - }, - "end": { - "$date": "2022-05-30T20:32:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e144b61b-766e-48d9-ae41-11b84306830e", - "start": { - "$date": "2022-05-30T20:32:38.000Z" - }, - "end": { - "$date": "2022-05-30T20:43:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "81bfc6b4-d37b-4b8b-98fe-3c2015019ba7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-30T20:16:49.000Z" - }, - "end": { - "$date": "2022-05-30T20:17:57.000Z" - }, - "events": [ - { - "uuid": "e1693952-addf-4cff-8456-f9c8b71efc2a", - "start": { - "$date": "2022-05-30T20:16:49.000Z" - }, - "end": { - "$date": "2022-05-30T20:17:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c793281e-3f4d-47dd-9258-3d0e6e904529", - "uuid": "46c8c233-c06a-46c7-bd20-b249b798165d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-30T20:29:01.000Z" - }, - "end": { - "$date": "2022-05-30T20:29:03.000Z" - }, - "events": [ - { - "uuid": "2e0d4f1c-6da9-4002-99ac-04c32ac02cae", - "start": { - "$date": "2022-05-30T20:29:01.000Z" - }, - "end": { - "$date": "2022-05-30T20:29:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "998a4dc3-9d5e-4db0-910f-c564efe4f002", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-30T20:31:46.000Z" - }, - "end": { - "$date": "2022-05-30T20:56:55.000Z" - }, - "events": [ - { - "uuid": "734e81bc-0a87-4d8b-956e-f57e049fa75a", - "start": { - "$date": "2022-05-30T20:31:46.000Z" - }, - "end": { - "$date": "2022-05-30T20:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4254480-bdcd-4e7c-9e66-d0a2f06e229a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-30T21:22:37.000Z" - }, - "end": { - "$date": "2022-05-30T23:32:40.000Z" - }, - "events": [ - { - "uuid": "39ee8388-559d-44e3-9353-059342b886d6", - "start": { - "$date": "2022-05-30T21:22:37.000Z" - }, - "end": { - "$date": "2022-05-30T23:32:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "1f74d349-8fcc-4058-9574-1b24c2ed796f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-30T21:24:15.000Z" - }, - "end": { - "$date": "2022-05-30T22:14:34.000Z" - }, - "events": [ - { - "uuid": "5f32a963-2ad0-481c-ba52-e870f48cd148", - "start": { - "$date": "2022-05-30T21:24:15.000Z" - }, - "end": { - "$date": "2022-05-30T22:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0d12ccf5-c8b5-4acb-9bba-9797c951cc60", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-05-30T21:24:45.000Z" - }, - "end": { - "$date": "2022-05-30T23:32:43.000Z" - }, - "events": [ - { - "uuid": "899fdfb1-3855-4b38-b9cc-49c1b38de15b", - "start": { - "$date": "2022-05-30T21:24:45.000Z" - }, - "end": { - "$date": "2022-05-30T23:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "592df172-af2f-4113-a894-b413860fc1ac", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-30T21:25:46.000Z" - }, - "end": { - "$date": "2022-05-30T21:58:05.000Z" - }, - "events": [ - { - "uuid": "274a6f5f-0529-48f0-bf18-c9ea3ca198f3", - "start": { - "$date": "2022-05-30T21:25:46.000Z" - }, - "end": { - "$date": "2022-05-30T21:58:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "34c686a7-f158-4cf9-9924-69fe0a7d6496", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-05-30T21:27:32.000Z" - }, - "end": { - "$date": "2022-05-30T23:32:53.000Z" - }, - "events": [ - { - "uuid": "c53c6784-c325-4b5c-bd01-f07604953e99", - "start": { - "$date": "2022-05-30T21:27:32.000Z" - }, - "end": { - "$date": "2022-05-30T23:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e88693f4-5a5e-42a3-9916-5442c0464ec8", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-05-30T21:28:27.000Z" - }, - "end": { - "$date": "2022-05-31T02:02:32.000Z" - }, - "events": [ - { - "uuid": "50678a48-21ed-425f-86f5-c8e8a9cef0c1", - "start": { - "$date": "2022-05-30T21:28:27.000Z" - }, - "end": { - "$date": "2022-05-31T02:02:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f00851f6-1f29-4f90-ae78-a6a8d6fd196a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-30T21:35:44.000Z" - }, - "end": { - "$date": "2022-05-30T22:10:36.000Z" - }, - "events": [ - { - "uuid": "c3923578-b1b3-4837-8650-4182f09a7364", - "start": { - "$date": "2022-05-30T21:35:44.000Z" - }, - "end": { - "$date": "2022-05-30T22:10:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "f2c6fba4-9722-4b0e-b39b-109b3461242b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T21:46:58.000Z" - }, - "end": { - "$date": "2022-05-30T22:03:58.000Z" - }, - "events": [ - { - "uuid": "6e240ec5-7581-41b6-b2ce-3bb91e855434", - "start": { - "$date": "2022-05-30T21:46:58.000Z" - }, - "end": { - "$date": "2022-05-30T22:03:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "785354d1-cab8-42b8-b713-9bd75cb88a16", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-05-30T21:58:55.000Z" - }, - "end": { - "$date": "2022-05-31T01:58:19.000Z" - }, - "events": [ - { - "uuid": "745ed77e-3ec1-4437-b00a-612a2d9fe599", - "start": { - "$date": "2022-05-30T21:58:55.000Z" - }, - "end": { - "$date": "2022-05-31T01:58:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "ebf5401e-e746-48b8-9315-306f72c85078", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T22:32:20.000Z" - }, - "end": { - "$date": "2022-05-30T22:32:50.000Z" - }, - "events": [ - { - "uuid": "881fce3c-e264-4059-9b4a-df94beabd021", - "start": { - "$date": "2022-05-30T22:32:20.000Z" - }, - "end": { - "$date": "2022-05-30T22:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "a9e7c86c-0288-426c-b1ca-0c282fbbca6c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-30T22:07:43.000Z" - }, - "end": { - "$date": "2022-05-30T23:02:57.000Z" - }, - "events": [ - { - "uuid": "35cfac9e-b8c8-43a8-a215-22711ec88922", - "start": { - "$date": "2022-05-30T22:07:43.000Z" - }, - "end": { - "$date": "2022-05-30T23:02:57.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09c8dd22-9c4f-49c1-8baa-a3d646918bb5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-30T23:55:23.000Z" - }, - "end": { - "$date": "2022-05-31T03:25:20.000Z" - }, - "events": [ - { - "uuid": "5f4118b3-31ac-4b9c-996e-b826e76fbf72", - "start": { - "$date": "2022-05-30T23:55:23.000Z" - }, - "end": { - "$date": "2022-05-31T04:26:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f7d729b-5eea-4507-a634-bc451d15afbd", - "start": { - "$date": "2022-05-31T04:26:23.000Z" - }, - "end": { - "$date": "2022-05-31T04:29:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "783cdd67-32db-4f92-b992-ae63ec36089c", - "start": { - "$date": "2022-05-31T04:29:23.000Z" - }, - "end": { - "$date": "2022-05-31T04:39:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "94465921-0550-4c5b-a405-67992837a9c4", - "start": { - "$date": "2022-05-31T04:39:23.000Z" - }, - "end": { - "$date": "2022-05-31T04:44:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea127259-050b-4c05-94fb-ec4154993678", - "start": { - "$date": "2022-05-31T04:44:23.000Z" - }, - "end": { - "$date": "2022-05-31T03:25:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "418d255e-1ec1-4717-ae09-96547ebba706", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-05-31T00:59:48.000Z" - }, - "end": { - "$date": "2022-05-31T04:59:02.000Z" - }, - "events": [ - { - "uuid": "1c8e4aed-464a-46ae-9a9c-851142314742", - "start": { - "$date": "2022-05-31T00:59:48.000Z" - }, - "end": { - "$date": "2022-05-31T04:59:02.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "fedb6249-75d2-45ac-bebc-77ab6ae4cf94", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-31T02:27:35.000Z" - }, - "end": { - "$date": "2022-05-31T03:32:59.000Z" - }, - "events": [ - { - "uuid": "ce8d92d1-e7c0-4d96-9b8c-4da64df8790a", - "start": { - "$date": "2022-05-31T02:27:35.000Z" - }, - "end": { - "$date": "2022-05-31T03:32:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "2237f209-18cf-4935-a739-4e4b762a552f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-31T02:59:16.000Z" - }, - "end": { - "$date": "2022-05-31T04:08:02.000Z" - }, - "events": [ - { - "uuid": "3f9491d0-2492-49ae-9ad7-8040d9578610", - "start": { - "$date": "2022-05-31T02:59:16.000Z" - }, - "end": { - "$date": "2022-05-31T04:08:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "b8851435-a0bf-47e8-9d07-b1d0d4fc5b9b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-31T03:06:06.000Z" - }, - "end": { - "$date": "2022-05-31T07:27:45.000Z" - }, - "events": [ - { - "uuid": "a07a65f4-f12a-435d-8baf-4f7a002b6888", - "start": { - "$date": "2022-05-31T03:06:06.000Z" - }, - "end": { - "$date": "2022-05-31T03:31:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5f30070d-6464-4790-9730-f5e4386c312a", - "start": { - "$date": "2022-05-31T03:31:06.000Z" - }, - "end": { - "$date": "2022-05-31T07:08:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "736d3ba4-5bea-4a1f-a427-313521e35af3", - "start": { - "$date": "2022-05-31T07:08:06.000Z" - }, - "end": { - "$date": "2022-05-31T07:23:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "26ec39ab-aed7-49f3-8e4e-fbbb01fc7144", - "start": { - "$date": "2022-05-31T07:23:06.000Z" - }, - "end": { - "$date": "2022-05-31T07:27:45.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ceedff6b-8449-440d-bd83-e5e10ee6e596", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-05-31T03:13:55.000Z" - }, - "end": { - "$date": "2022-05-31T06:20:21.000Z" - }, - "events": [ - { - "uuid": "56ca6e73-dcf2-499f-a1a1-9da90b0341ad", - "start": { - "$date": "2022-05-31T03:13:55.000Z" - }, - "end": { - "$date": "2022-05-31T06:20:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "11c90e11-dac6-41b0-a648-97eb1454a433", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-31T03:26:45.000Z" - }, - "end": { - "$date": "2022-05-31T04:00:01.000Z" - }, - "events": [ - { - "uuid": "0ccfbce1-4e45-493e-bf7f-2c2753377fb9", - "start": { - "$date": "2022-05-31T03:26:45.000Z" - }, - "end": { - "$date": "2022-05-31T04:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "4ebfde93-25a8-45b5-8a1b-a1db4690498a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-31T04:19:24.000Z" - }, - "end": { - "$date": "2022-05-31T04:29:43.000Z" - }, - "events": [ - { - "uuid": "551a7e47-2022-4d99-b4f1-2bcdb34e1369", - "start": { - "$date": "2022-05-31T04:19:24.000Z" - }, - "end": { - "$date": "2022-05-31T04:29:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "aada9c14-b930-4d6c-bd11-034e2c4c45ed", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-05-31T04:49:58.000Z" - }, - "end": { - "$date": "2022-05-31T06:26:00.000Z" - }, - "events": [ - { - "uuid": "d7a4dd2f-b7c1-4c22-8434-606bf8b51577", - "start": { - "$date": "2022-05-31T04:49:58.000Z" - }, - "end": { - "$date": "2022-05-31T06:26:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "ade78c65-00f1-40eb-92e7-25d8df2c9092", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-31T15:20:26.000Z" - }, - "end": { - "$date": "2022-05-31T15:26:01.000Z" - }, - "events": [ - { - "uuid": "5d99bdb1-cd42-4b97-8aa0-0b7dee38bb8f", - "start": { - "$date": "2022-05-31T15:20:26.000Z" - }, - "end": { - "$date": "2022-05-31T15:26:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "dbe80666-d009-4ab9-9060-8b05b03cf703", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-05-31T15:50:08.000Z" - }, - "end": { - "$date": "2022-05-31T18:56:57.000Z" - }, - "events": [ - { - "uuid": "a58240c0-7352-4fc6-9fa2-281bc7cfe8b1", - "start": { - "$date": "2022-05-31T15:50:08.000Z" - }, - "end": { - "$date": "2022-05-31T18:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dab3938b-1ee1-4f97-a8d7-bf0a0169bc61", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-31T16:09:59.000Z" - }, - "end": { - "$date": "2022-05-31T16:31:09.000Z" - }, - "events": [ - { - "uuid": "15d27f90-f0eb-48f4-9443-d6b8f5d757c4", - "start": { - "$date": "2022-05-31T16:09:59.000Z" - }, - "end": { - "$date": "2022-05-31T16:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c65a133f-14ab-4bfd-90ea-2b09221cc567", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-31T16:57:04.000Z" - }, - "end": { - "$date": "2022-05-31T17:14:03.000Z" - }, - "events": [ - { - "uuid": "4e3a7ec8-fb5b-4144-86df-f5eada642c41", - "start": { - "$date": "2022-05-31T16:57:04.000Z" - }, - "end": { - "$date": "2022-05-31T17:14:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "ac1a9580-c7c5-4068-ae16-fb9e12fed9c0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-05-31T17:07:42.000Z" - }, - "end": { - "$date": "2022-05-31T17:18:42.000Z" - }, - "events": [ - { - "uuid": "f91f3d66-859d-4046-93cd-c7603788ec30", - "start": { - "$date": "2022-05-31T17:07:42.000Z" - }, - "end": { - "$date": "2022-05-31T17:18:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "fbb036c3-0361-45f5-9177-458f91c82ef0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-05-31T17:32:31.000Z" - }, - "end": { - "$date": "2022-05-31T18:58:42.000Z" - }, - "events": [ - { - "uuid": "1da3d3d6-e044-4580-ac08-e1b6dffd039e", - "start": { - "$date": "2022-05-31T17:32:31.000Z" - }, - "end": { - "$date": "2022-05-31T18:58:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "773249fe-4789-438f-adfd-48740d19048b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-05-31T19:25:14.000Z" - }, - "end": { - "$date": "2022-05-31T22:13:27.000Z" - }, - "events": [ - { - "uuid": "7825e731-9e61-484d-b596-d79c430414dc", - "start": { - "$date": "2022-05-31T19:25:14.000Z" - }, - "end": { - "$date": "2022-05-31T20:34:14.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f5392645-ee47-440d-8995-7fcb32bea3d7", - "start": { - "$date": "2022-05-31T20:34:14.000Z" - }, - "end": { - "$date": "2022-05-31T21:06:14.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b208fbc5-e84a-475b-98d6-5f5a03f13cb9", - "start": { - "$date": "2022-05-31T21:06:14.000Z" - }, - "end": { - "$date": "2022-05-31T22:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "22e6596b-dd79-4315-9279-59ae0e80aed9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-31T21:58:29.000Z" - }, - "end": { - "$date": "2022-05-31T22:14:43.000Z" - }, - "events": [ - { - "uuid": "7b592dde-9167-4256-a29e-a0b638fa6a24", - "start": { - "$date": "2022-05-31T21:58:29.000Z" - }, - "end": { - "$date": "2022-05-31T22:14:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08cc6d81-b0f4-4cd4-93cf-9fc8cbc58bf1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-05-31T22:16:45.000Z" - }, - "end": { - "$date": "2022-05-31T22:34:09.000Z" - }, - "events": [ - { - "uuid": "d6d14bfc-49a8-42f3-823d-ffc3f2ec71e2", - "start": { - "$date": "2022-05-31T22:16:45.000Z" - }, - "end": { - "$date": "2022-05-31T22:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "716bc0bc-3251-42d5-b180-3e38e9566f08", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-01T02:23:56.000Z" - }, - "end": { - "$date": "2022-06-02T02:45:19.000Z" - }, - "events": [ - { - "uuid": "7207b8bc-aa2f-4299-8489-130519fe6ed9", - "start": { - "$date": "2022-06-01T02:23:56.000Z" - }, - "end": { - "$date": "2022-06-01T05:37:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b6ffc830-2106-47e9-ab37-db6d607f2a66", - "start": { - "$date": "2022-06-01T05:37:56.000Z" - }, - "end": { - "$date": "2022-06-01T14:42:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "13b8660d-103c-42d6-b6c5-d7dea411388f", - "start": { - "$date": "2022-06-01T14:42:56.000Z" - }, - "end": { - "$date": "2022-06-01T14:46:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a631211a-24fb-4b9d-bcc9-bb2ca62a5f53", - "start": { - "$date": "2022-06-01T14:46:56.000Z" - }, - "end": { - "$date": "2022-06-01T17:40:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "db4bcd5c-4a1b-4783-a648-d475c00839bc", - "start": { - "$date": "2022-06-01T17:40:56.000Z" - }, - "end": { - "$date": "2022-06-01T17:43:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c5deb663-99e8-48fb-be80-26301e7360e6", - "start": { - "$date": "2022-06-01T17:43:56.000Z" - }, - "end": { - "$date": "2022-06-01T19:37:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aa0a64ca-a309-4e69-a600-2e0cafb876d5", - "start": { - "$date": "2022-06-01T19:37:56.000Z" - }, - "end": { - "$date": "2022-06-01T19:39:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "54cf006a-a2d1-4706-bf11-70c178bb9269", - "start": { - "$date": "2022-06-01T19:39:56.000Z" - }, - "end": { - "$date": "2022-06-02T02:34:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3bb1ad77-d9f4-4b11-ae9a-7ab003b3564a", - "start": { - "$date": "2022-06-02T02:34:56.000Z" - }, - "end": { - "$date": "2022-06-02T02:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "35f7d63d-b10b-4be3-b8f2-9c3fea05f3e3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-01T02:15:10.000Z" - }, - "end": { - "$date": "2022-06-01T05:33:19.000Z" - }, - "events": [ - { - "uuid": "dd706bbc-5996-49af-991b-8f3e9bc1f020", - "start": { - "$date": "2022-06-01T02:15:10.000Z" - }, - "end": { - "$date": "2022-06-01T05:33:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "9eb30207-47ab-498b-860a-31937f6d5e4a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-01T03:16:00.000Z" - }, - "end": { - "$date": "2022-06-01T03:42:04.000Z" - }, - "events": [ - { - "uuid": "acc1c7d0-120a-4283-8a9b-c0355c98a218", - "start": { - "$date": "2022-06-01T03:16:00.000Z" - }, - "end": { - "$date": "2022-06-01T03:42:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "5839e6ee-adba-4e19-a72f-00247d3e32f7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-01T04:37:11.000Z" - }, - "end": { - "$date": "2022-06-01T04:58:36.000Z" - }, - "events": [ - { - "uuid": "2de975dc-4478-4647-bf9d-23b1438c1ea5", - "start": { - "$date": "2022-06-01T04:37:11.000Z" - }, - "end": { - "$date": "2022-06-01T04:58:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b14cca6c-3834-425e-a563-7de017c2d6db", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-01T03:41:44.000Z" - }, - "end": { - "$date": "2022-06-01T08:18:45.000Z" - }, - "events": [ - { - "uuid": "4d15d12f-6964-4c3f-b960-d36e9b894930", - "start": { - "$date": "2022-06-01T03:41:44.000Z" - }, - "end": { - "$date": "2022-06-01T08:18:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c4ac92d3-9cf9-40c9-8bf4-ee12fba284ce", - "uuid": "986b9901-8ffa-4d82-bd19-0e65eec57afb", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-01T03:47:51.000Z" - }, - "end": { - "$date": "2022-06-01T03:49:45.000Z" - }, - "events": [ - { - "uuid": "2bf4d4d3-05bf-4fed-b813-fc6733c2a657", - "start": { - "$date": "2022-06-01T03:47:51.000Z" - }, - "end": { - "$date": "2022-06-01T03:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "63735280-e2ab-4381-982a-d381ab81ab3a", - "uuid": "2e23547f-5308-47e0-9739-fea4e8b6fd50", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-01T03:59:42.000Z" - }, - "end": { - "$date": "2022-06-01T04:13:51.000Z" - }, - "events": [ - { - "uuid": "637e921e-0adb-40cc-a42f-1f37874c1250", - "start": { - "$date": "2022-06-01T03:59:42.000Z" - }, - "end": { - "$date": "2022-06-01T04:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c4bd37d0-5b15-409d-a33f-950164eeaba1", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-01T04:20:34.000Z" - }, - "end": { - "$date": "2022-06-01T08:18:38.000Z" - }, - "events": [ - { - "uuid": "a4841f6b-0fa9-42f4-8b8e-a09527c962db", - "start": { - "$date": "2022-06-01T04:20:34.000Z" - }, - "end": { - "$date": "2022-06-01T08:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "2d4d58bd-cfb7-4008-ab22-d8ca21dade4f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-01T04:59:28.000Z" - }, - "end": { - "$date": "2022-06-01T05:40:09.000Z" - }, - "events": [ - { - "uuid": "04164ddb-41a1-4002-a3c7-75361d45eb19", - "start": { - "$date": "2022-06-01T04:59:28.000Z" - }, - "end": { - "$date": "2022-06-01T05:40:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "305918ac-ff53-40ac-802b-924d22f03d7f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-01T14:13:54.000Z" - }, - "end": { - "$date": "2022-06-01T14:33:59.000Z" - }, - "events": [ - { - "uuid": "cb6375d2-964e-40de-8792-c4476eabe610", - "start": { - "$date": "2022-06-01T14:13:54.000Z" - }, - "end": { - "$date": "2022-06-01T14:33:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "cc36a35e-c3fc-476f-810c-d72fe804eaeb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-01T14:59:35.000Z" - }, - "end": { - "$date": "2022-06-01T15:30:55.000Z" - }, - "events": [ - { - "uuid": "421ca6dc-b3c3-4b83-ba1b-e3ec2c1cdfa3", - "start": { - "$date": "2022-06-01T14:59:35.000Z" - }, - "end": { - "$date": "2022-06-01T15:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c50197d2-fdd7-49c8-a0b9-6c526ce151e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-01T15:54:38.000Z" - }, - "end": { - "$date": "2022-06-01T17:08:56.000Z" - }, - "events": [ - { - "uuid": "25c912c7-4bbc-41ee-be51-1b6f94907174", - "start": { - "$date": "2022-06-01T15:54:38.000Z" - }, - "end": { - "$date": "2022-06-01T17:08:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "86b91f72-afbe-40a3-814a-526a54f2c0d7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-01T16:19:36.000Z" - }, - "end": { - "$date": "2022-06-01T17:02:25.000Z" - }, - "events": [ - { - "uuid": "2b2757bc-680a-40b3-8aa1-fcaf5e2f62e4", - "start": { - "$date": "2022-06-01T16:19:36.000Z" - }, - "end": { - "$date": "2022-06-01T17:02:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b32a6a0a-7b89-4bea-b6b6-d593ad4a0f0a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-01T17:17:22.000Z" - }, - "end": { - "$date": "2022-06-01T17:39:07.000Z" - }, - "events": [ - { - "uuid": "17d17d56-d8d5-4e4e-ad65-b00340fa4422", - "start": { - "$date": "2022-06-01T17:17:22.000Z" - }, - "end": { - "$date": "2022-06-01T17:39:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "537093fc-a18e-437f-8da6-498b19090ab0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-01T17:36:22.000Z" - }, - "end": { - "$date": "2022-06-01T23:41:12.000Z" - }, - "events": [ - { - "uuid": "4b404839-f0cb-41f3-af04-21d4034f3ad3", - "start": { - "$date": "2022-06-01T17:36:22.000Z" - }, - "end": { - "$date": "2022-06-01T23:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e90f2f5b-d6a4-4700-850c-f1e7ee8cfe87", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-01T17:40:19.000Z" - }, - "end": { - "$date": "2022-06-01T17:43:42.000Z" - }, - "events": [ - { - "uuid": "9e54a321-b8bd-44a2-9592-c325782de562", - "start": { - "$date": "2022-06-01T17:40:19.000Z" - }, - "end": { - "$date": "2022-06-01T17:42:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "31d6b02a-5cc1-4d59-9e25-ceafdaf70478", - "start": { - "$date": "2022-06-01T17:42:19.000Z" - }, - "end": { - "$date": "2022-06-01T17:43:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "44a8d660-f335-4e64-9871-817f654c2d17", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-01T17:44:44.000Z" - }, - "end": { - "$date": "2022-06-01T17:49:40.000Z" - }, - "events": [ - { - "uuid": "227f0fa0-4bca-49d8-aa40-1477892bddc5", - "start": { - "$date": "2022-06-01T17:44:44.000Z" - }, - "end": { - "$date": "2022-06-01T17:49:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "cbb31412-6720-4cab-8031-e49002c1ab79", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-01T19:50:02.000Z" - }, - "end": { - "$date": "2022-06-01T19:56:57.000Z" - }, - "events": [ - { - "uuid": "d6a4083b-ba1e-4532-b86e-8e4fa52c614e", - "start": { - "$date": "2022-06-01T19:50:02.000Z" - }, - "end": { - "$date": "2022-06-01T19:56:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f41eae52-4309-4bcc-afa6-903f7b7c12c9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-01T20:46:25.000Z" - }, - "end": { - "$date": "2022-06-01T20:48:26.000Z" - }, - "events": [ - { - "uuid": "cc68219d-0bd4-4726-b13b-952dfd0f6d61", - "start": { - "$date": "2022-06-01T20:46:25.000Z" - }, - "end": { - "$date": "2022-06-01T20:48:26.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "4d2433b3-b485-412e-8127-08ee4b7a148a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-01T21:07:01.000Z" - }, - "end": { - "$date": "2022-06-01T21:26:10.000Z" - }, - "events": [ - { - "uuid": "c9b8dc16-79e5-4e56-bfbb-b75f7c0c9cb9", - "start": { - "$date": "2022-06-01T21:07:01.000Z" - }, - "end": { - "$date": "2022-06-01T21:26:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3a2bfa22-ba6f-4e7b-a2c5-597d850da81b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-01T21:30:47.000Z" - }, - "end": { - "$date": "2022-06-01T22:19:13.000Z" - }, - "events": [ - { - "uuid": "f86ff9ae-90c4-4fc1-bb46-99ccf24afe93", - "start": { - "$date": "2022-06-01T21:30:47.000Z" - }, - "end": { - "$date": "2022-06-01T22:19:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ed4a9130-64da-4979-beb4-df1ac0451e9a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-01T22:22:53.000Z" - }, - "end": { - "$date": "2022-06-02T00:29:27.000Z" - }, - "events": [ - { - "uuid": "e1b17131-24cb-4acf-af59-1a4e46701dbc", - "start": { - "$date": "2022-06-01T22:22:53.000Z" - }, - "end": { - "$date": "2022-06-02T00:29:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "0aca3aed-217a-4cb2-9909-ea6fd0a5e6c4", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-01T23:57:26.000Z" - }, - "end": { - "$date": "2022-06-02T00:14:14.000Z" - }, - "events": [ - { - "uuid": "ba0d928b-f058-4258-ae35-ccb245581538", - "start": { - "$date": "2022-06-01T23:57:26.000Z" - }, - "end": { - "$date": "2022-06-02T00:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "77e99c4b-7a10-471e-85c3-9407c4a81fe1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-02T00:00:30.000Z" - }, - "end": { - "$date": "2022-06-02T03:00:09.000Z" - }, - "events": [ - { - "uuid": "df795487-7009-45c5-a339-dfb54306dc4e", - "start": { - "$date": "2022-06-02T00:00:30.000Z" - }, - "end": { - "$date": "2022-06-02T01:51:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e92d4ecb-fef4-409f-896c-3663894a1213", - "start": { - "$date": "2022-06-02T01:51:30.000Z" - }, - "end": { - "$date": "2022-06-02T02:03:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bec70f65-d279-46aa-baf6-f2a0e4c2855e", - "start": { - "$date": "2022-06-02T02:03:30.000Z" - }, - "end": { - "$date": "2022-06-02T03:00:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "98e850bc-0a48-4751-9bbd-2c73adc8d469", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-02T00:40:23.000Z" - }, - "end": { - "$date": "2022-06-02T02:54:41.000Z" - }, - "events": [ - { - "uuid": "881ab008-1367-46af-9790-aef92c90dbe4", - "start": { - "$date": "2022-06-02T00:40:23.000Z" - }, - "end": { - "$date": "2022-06-02T02:54:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e5f2ee14-e193-40c5-8e2a-0c5d49fc5ef2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-02T02:44:53.000Z" - }, - "end": { - "$date": "2022-06-02T06:30:21.000Z" - }, - "events": [ - { - "uuid": "6b729941-3bd1-4371-9c93-0beed00405c4", - "start": { - "$date": "2022-06-02T02:44:53.000Z" - }, - "end": { - "$date": "2022-06-02T06:30:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fb8acf-f46f-4df7-9330-aa48ec5da7d6", - "uuid": "e3abe7df-0c7a-4e1f-9c1d-a2a6648b2147", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-02T03:19:04.000Z" - }, - "end": { - "$date": "2022-06-02T03:34:13.000Z" - }, - "events": [ - { - "uuid": "92c81e58-e2c3-4c77-9819-b519bfa5af9a", - "start": { - "$date": "2022-06-02T03:19:04.000Z" - }, - "end": { - "$date": "2022-06-02T03:34:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "a978123a-84c4-48ed-bd2b-146872ecda1f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-02T03:44:37.000Z" - }, - "end": { - "$date": "2022-06-02T06:08:42.000Z" - }, - "events": [ - { - "uuid": "7f38a329-de6a-4c4d-a2c6-9c19919ecda6", - "start": { - "$date": "2022-06-02T03:44:37.000Z" - }, - "end": { - "$date": "2022-06-02T06:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "5a2f6670-14ac-4ffa-8028-053b8935d6f3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-02T04:27:47.000Z" - }, - "end": { - "$date": "2022-06-02T04:29:31.000Z" - }, - "events": [ - { - "uuid": "acb5bf19-ac1d-4b4e-897c-97c0b01597d3", - "start": { - "$date": "2022-06-02T04:27:47.000Z" - }, - "end": { - "$date": "2022-06-02T04:29:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "de93fba9-256c-4183-863d-38b81619d862", - "uuid": "31cfcf34-ea05-4e5b-b623-d05bbe216228", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-02T04:29:38.000Z" - }, - "end": { - "$date": "2022-06-02T04:51:12.000Z" - }, - "events": [ - { - "uuid": "fb497af3-5bf4-4ea7-96ec-1b300389408d", - "start": { - "$date": "2022-06-02T04:29:38.000Z" - }, - "end": { - "$date": "2022-06-02T04:51:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a9fb8acf-f46f-4df7-9330-aa48ec5da7d6", - "uuid": "087c284d-66b5-4943-a1f1-cac85ebfb4d8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-02T04:52:48.000Z" - }, - "end": { - "$date": "2022-06-02T05:11:54.000Z" - }, - "events": [ - { - "uuid": "d5f6be61-76ea-4458-906e-38b9a76eee95", - "start": { - "$date": "2022-06-02T04:52:48.000Z" - }, - "end": { - "$date": "2022-06-02T05:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aaaedf94-994c-4767-ba72-cbdfc9588229", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T05:56:05.000Z" - }, - "end": { - "$date": "2022-06-02T06:11:19.000Z" - }, - "events": [ - { - "uuid": "f1f81aa7-d40b-424d-bde9-0244e9eb21a8", - "start": { - "$date": "2022-06-02T05:56:05.000Z" - }, - "end": { - "$date": "2022-06-02T06:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5aefd776-d401-4ae4-bdc9-57757be21b27", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T06:15:57.000Z" - }, - "end": { - "$date": "2022-06-02T06:32:46.000Z" - }, - "events": [ - { - "uuid": "248940a1-ab94-4a26-87fa-07fc80694ebd", - "start": { - "$date": "2022-06-02T06:15:57.000Z" - }, - "end": { - "$date": "2022-06-02T06:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0bb58e5b-0b4f-4e1c-8802-03cca32fa887", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-02T06:25:07.000Z" - }, - "end": { - "$date": "2022-06-02T07:02:58.000Z" - }, - "events": [ - { - "uuid": "92a6c41f-26a7-413a-b848-3943a14bff3d", - "start": { - "$date": "2022-06-02T06:25:07.000Z" - }, - "end": { - "$date": "2022-06-02T07:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "1ecd5b06-2f54-4783-b9fd-0ba19c7afcb5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-02T06:26:03.000Z" - }, - "end": { - "$date": "2022-06-02T07:02:29.000Z" - }, - "events": [ - { - "uuid": "5bf34abb-7e55-4200-8514-38f554233653", - "start": { - "$date": "2022-06-02T06:26:03.000Z" - }, - "end": { - "$date": "2022-06-02T07:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f13c043b-f507-4c2a-bb8c-8f8eaf059f1f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T06:35:12.000Z" - }, - "end": { - "$date": "2022-06-02T06:47:41.000Z" - }, - "events": [ - { - "uuid": "1aa14224-4338-4ca3-9ac7-05a2707a2250", - "start": { - "$date": "2022-06-02T06:35:12.000Z" - }, - "end": { - "$date": "2022-06-02T06:47:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ddb4d6d-974b-4713-8c95-1b4d782a567e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T06:48:48.000Z" - }, - "end": { - "$date": "2022-06-02T07:03:12.000Z" - }, - "events": [ - { - "uuid": "21b7a17b-9e0d-4d52-ae71-eea8d00758d9", - "start": { - "$date": "2022-06-02T06:48:48.000Z" - }, - "end": { - "$date": "2022-06-02T07:03:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1fa66b58-50ab-4f6f-8640-621d196b3b18", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T07:04:19.000Z" - }, - "end": { - "$date": "2022-06-02T07:19:28.000Z" - }, - "events": [ - { - "uuid": "4342b21b-6bed-4c41-a26e-b6fcc0c18981", - "start": { - "$date": "2022-06-02T07:04:19.000Z" - }, - "end": { - "$date": "2022-06-02T07:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be3806e9-9d4a-4df9-a229-a37cbe9478d8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T07:22:45.000Z" - }, - "end": { - "$date": "2022-06-02T08:00:56.000Z" - }, - "events": [ - { - "uuid": "684693e8-e6b2-4f84-be7c-92ef923b5be2", - "start": { - "$date": "2022-06-02T07:22:45.000Z" - }, - "end": { - "$date": "2022-06-02T08:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bdc626ef-892e-45e9-9d4e-5d11fb746cf3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T08:04:42.000Z" - }, - "end": { - "$date": "2022-06-02T08:34:28.000Z" - }, - "events": [ - { - "uuid": "cbd2ef63-c275-46c9-ae88-6f0d724da734", - "start": { - "$date": "2022-06-02T08:04:42.000Z" - }, - "end": { - "$date": "2022-06-02T08:34:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ab9b8cbe-c9d6-40ee-a081-937a70b715b8", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T08:35:19.000Z" - }, - "end": { - "$date": "2022-06-02T09:06:30.000Z" - }, - "events": [ - { - "uuid": "bada38ae-7a0b-472f-85f6-d426131cac00", - "start": { - "$date": "2022-06-02T08:35:19.000Z" - }, - "end": { - "$date": "2022-06-02T09:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a18b3d8d-6d9b-48f8-91da-5b9f1ff0679f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T14:11:26.000Z" - }, - "end": { - "$date": "2022-06-02T14:29:05.000Z" - }, - "events": [ - { - "uuid": "948bb38c-0ec9-47e5-92c7-0183c1da8c22", - "start": { - "$date": "2022-06-02T14:11:26.000Z" - }, - "end": { - "$date": "2022-06-02T14:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b53d0936-188e-4d2d-ad98-bbe81c302dea", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T14:29:42.000Z" - }, - "end": { - "$date": "2022-06-02T14:50:30.000Z" - }, - "events": [ - { - "uuid": "8b3d9430-642d-4d51-af94-d2831305d902", - "start": { - "$date": "2022-06-02T14:29:42.000Z" - }, - "end": { - "$date": "2022-06-02T14:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8dcf87b8-a5c3-4013-9fd0-185c6b5d1e08", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-02T14:47:51.000Z" - }, - "end": { - "$date": "2022-06-02T17:07:14.000Z" - }, - "events": [ - { - "uuid": "167072a4-270e-49f4-ba25-5ab0f5cf8d2b", - "start": { - "$date": "2022-06-02T14:47:51.000Z" - }, - "end": { - "$date": "2022-06-02T16:25:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ede8398-c9d9-4e3e-b439-e138982ddb13", - "start": { - "$date": "2022-06-02T16:25:51.000Z" - }, - "end": { - "$date": "2022-06-02T16:30:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f23fa8b2-9e76-46a9-b6de-2a3e2373a254", - "start": { - "$date": "2022-06-02T16:30:51.000Z" - }, - "end": { - "$date": "2022-06-02T16:40:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "48249c45-e573-4ccb-8a4a-2c07494c4fb6", - "start": { - "$date": "2022-06-02T16:40:51.000Z" - }, - "end": { - "$date": "2022-06-02T17:05:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cc9a4eaf-350f-4c8c-8962-049a1497f35d", - "start": { - "$date": "2022-06-02T17:05:51.000Z" - }, - "end": { - "$date": "2022-06-02T17:07:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a672b6ff-b4b6-4bf0-b90c-15680c609716", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-02T14:52:43.000Z" - }, - "end": { - "$date": "2022-06-02T17:29:47.000Z" - }, - "events": [ - { - "uuid": "92322a97-ab7e-4504-a038-7fb3751ccce8", - "start": { - "$date": "2022-06-02T14:52:43.000Z" - }, - "end": { - "$date": "2022-06-02T17:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "0feafbb0-5594-43fa-88fa-41d346af367f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-02T17:07:13.000Z" - }, - "end": { - "$date": "2022-06-02T17:43:54.000Z" - }, - "events": [ - { - "uuid": "8605ce6c-9d6d-4617-afd5-748153de19eb", - "start": { - "$date": "2022-06-02T17:07:13.000Z" - }, - "end": { - "$date": "2022-06-02T17:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c6c837fc-7bf1-4b6e-b4b8-0708e63efb0b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-02T17:09:43.000Z" - }, - "end": { - "$date": "2022-06-02T17:52:55.000Z" - }, - "events": [ - { - "uuid": "383df40d-27a7-47a3-a817-1b639f12f703", - "start": { - "$date": "2022-06-02T17:09:43.000Z" - }, - "end": { - "$date": "2022-06-02T17:52:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e6557f2f-b693-491a-bfe7-7f01e9d1b644", - "uuid": "60cf9862-38bd-47b5-ba54-213bb4140e67", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-02T19:33:00.000Z" - }, - "end": { - "$date": "2022-06-02T19:38:01.000Z" - }, - "events": [ - { - "uuid": "abbe202a-b15e-4327-8c83-f77e180cee46", - "start": { - "$date": "2022-06-02T19:33:00.000Z" - }, - "end": { - "$date": "2022-06-02T19:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "47abb2ea-66d8-4570-b952-98bcc0080485", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-08T12:56:38.000Z" - }, - "end": { - "$date": "2022-06-08T13:44:10.000Z" - }, - "events": [ - { - "uuid": "0562996a-dde1-49e9-a105-1c22ecdba283", - "start": { - "$date": "2022-06-08T12:56:38.000Z" - }, - "end": { - "$date": "2022-06-08T13:44:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e25ac528-502f-4ab1-ac00-cdcbdebf705d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-08T18:46:20.000Z" - }, - "end": { - "$date": "2022-06-08T18:47:31.000Z" - }, - "events": [ - { - "uuid": "f95d5283-2439-464b-8207-a4096c379d1b", - "start": { - "$date": "2022-06-08T18:46:20.000Z" - }, - "end": { - "$date": "2022-06-08T18:47:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "252e99c0-f62f-4000-a566-0876e1163771", - "uuid": "c48ca010-3064-4f49-b164-181e7f558f12", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-08T22:59:53.000Z" - }, - "end": { - "$date": "2022-06-08T23:06:14.000Z" - }, - "events": [ - { - "uuid": "875c6cb4-577d-4112-8c73-44e49d24d545", - "start": { - "$date": "2022-06-08T22:59:53.000Z" - }, - "end": { - "$date": "2022-06-08T23:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5086dcdf-73e1-482e-adb9-a54b9cf7dbce", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-08T23:24:05.000Z" - }, - "end": { - "$date": "2022-06-09T00:06:16.000Z" - }, - "events": [ - { - "uuid": "86ecf79c-108e-4999-8606-ce0997ee21c7", - "start": { - "$date": "2022-06-08T23:24:05.000Z" - }, - "end": { - "$date": "2022-06-09T00:06:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "9c344169-3a41-4bf7-9ceb-4b0ff4453004", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-08T23:55:10.000Z" - }, - "end": { - "$date": "2022-06-09T01:24:49.000Z" - }, - "events": [ - { - "uuid": "c0c7324a-6a2f-49a9-bc68-8a20db7bd561", - "start": { - "$date": "2022-06-08T23:55:10.000Z" - }, - "end": { - "$date": "2022-06-09T01:24:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "f1780c8a-06b5-41ef-a40b-5ee1350f3329", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-09T01:34:15.000Z" - }, - "end": { - "$date": "2022-06-09T03:19:37.000Z" - }, - "events": [ - { - "uuid": "5a584bd0-d6e9-4b44-96bb-e6cc2472315d", - "start": { - "$date": "2022-06-09T01:34:15.000Z" - }, - "end": { - "$date": "2022-06-09T03:11:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "da35e91f-10ca-4d8a-b5cb-009dc18b315a", - "start": { - "$date": "2022-06-09T03:11:15.000Z" - }, - "end": { - "$date": "2022-06-09T03:16:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "79024166-7780-4bb3-b0ac-7776ca36b24e", - "start": { - "$date": "2022-06-09T03:16:15.000Z" - }, - "end": { - "$date": "2022-06-09T03:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e2e1ab8a-d352-444b-b790-c33afd93f77a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-09T01:37:43.000Z" - }, - "end": { - "$date": "2022-06-09T01:54:04.000Z" - }, - "events": [ - { - "uuid": "7622814f-7886-48cc-8805-9d8c117f1a63", - "start": { - "$date": "2022-06-09T01:37:43.000Z" - }, - "end": { - "$date": "2022-06-09T01:54:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "e2f35767-6395-46c7-9666-221d09d35bc5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-09T02:25:53.000Z" - }, - "end": { - "$date": "2022-06-09T06:19:45.000Z" - }, - "events": [ - { - "uuid": "80f28a37-d4fd-442d-9e76-d37b425bcb96", - "start": { - "$date": "2022-06-09T02:25:53.000Z" - }, - "end": { - "$date": "2022-06-09T06:19:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0ed33a58-5d7d-4f65-a3a4-4c8915495c10", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-09T03:10:00.000Z" - }, - "end": { - "$date": "2022-06-09T04:48:47.000Z" - }, - "events": [ - { - "uuid": "b0c80c5f-bf07-48e6-9c66-4ac600784ca3", - "start": { - "$date": "2022-06-09T03:10:00.000Z" - }, - "end": { - "$date": "2022-06-09T04:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4394e4c4-345c-4784-9e14-bf6394fe411a", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-09T03:21:24.000Z" - }, - "end": { - "$date": "2022-06-09T04:44:34.000Z" - }, - "events": [ - { - "uuid": "af7a1673-4008-4012-a14d-10969f6fbc8d", - "start": { - "$date": "2022-06-09T03:21:24.000Z" - }, - "end": { - "$date": "2022-06-09T04:44:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1e411a46-d1a1-4f64-a979-b9172c6cecb3", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-09T03:41:57.000Z" - }, - "end": { - "$date": "2022-06-09T06:21:57.000Z" - }, - "events": [ - { - "uuid": "7b7a4e6e-3e72-404b-aed4-2ef65d2933b9", - "start": { - "$date": "2022-06-09T03:41:57.000Z" - }, - "end": { - "$date": "2022-06-09T06:21:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eef247cf-92c5-49fe-b0b3-d2b526528369", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-09T03:44:36.000Z" - }, - "end": { - "$date": "2022-06-09T05:37:29.000Z" - }, - "events": [ - { - "uuid": "baa87ab6-c883-4074-ad65-ff80070aaf7b", - "start": { - "$date": "2022-06-09T03:44:36.000Z" - }, - "end": { - "$date": "2022-06-09T05:37:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4e460a11-d21d-4a0d-a46c-62db72940fdb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-09T03:47:00.000Z" - }, - "end": { - "$date": "2022-06-09T06:22:07.000Z" - }, - "events": [ - { - "uuid": "c0f1fa02-6004-4ec6-af7e-93c362d1dfdc", - "start": { - "$date": "2022-06-09T03:47:00.000Z" - }, - "end": { - "$date": "2022-06-09T06:22:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7aa8fdb6-6a9c-4004-8b31-8262c2ba8e88", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-09T03:50:41.000Z" - }, - "end": { - "$date": "2022-06-09T06:33:50.000Z" - }, - "events": [ - { - "uuid": "1a884704-737c-4c52-bc30-d3c72985d128", - "start": { - "$date": "2022-06-09T03:50:41.000Z" - }, - "end": { - "$date": "2022-06-09T06:33:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2556b491-3b9c-4fde-ae4b-cbcb2bcc7a15", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-09T04:25:04.000Z" - }, - "end": { - "$date": "2022-06-09T04:26:29.000Z" - }, - "events": [ - { - "uuid": "30e10441-4584-4802-948f-8eeb2970f2f6", - "start": { - "$date": "2022-06-09T04:25:04.000Z" - }, - "end": { - "$date": "2022-06-09T04:26:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "db54605d-b0b6-491d-bfee-b8055f894c8c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-09T05:02:34.000Z" - }, - "end": { - "$date": "2022-06-09T05:37:32.000Z" - }, - "events": [ - { - "uuid": "d91a2a34-5bb4-43a3-9006-5227d9c86b40", - "start": { - "$date": "2022-06-09T05:02:34.000Z" - }, - "end": { - "$date": "2022-06-09T05:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "ad725250-e398-40dd-a710-07c483497355", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-09T04:37:35.000Z" - }, - "end": { - "$date": "2022-06-09T05:11:04.000Z" - }, - "events": [ - { - "uuid": "2f8d6cd3-90ee-4cc0-82b9-c81f90194805", - "start": { - "$date": "2022-06-09T04:37:35.000Z" - }, - "end": { - "$date": "2022-06-09T05:11:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1d29d104-47e8-4115-a379-c212af5e68cf", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-09T15:34:35.000Z" - }, - "end": { - "$date": "2022-06-09T15:53:43.000Z" - }, - "events": [ - { - "uuid": "f7b9db70-a034-4aef-8cde-078ced9281e0", - "start": { - "$date": "2022-06-09T15:34:35.000Z" - }, - "end": { - "$date": "2022-06-09T15:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d3fab6d0-f62a-486e-aca2-2706623170f8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-09T15:54:21.000Z" - }, - "end": { - "$date": "2022-06-09T16:13:57.000Z" - }, - "events": [ - { - "uuid": "dd6788e2-d6ee-4af9-a1f2-6b5a26339ab3", - "start": { - "$date": "2022-06-09T15:54:21.000Z" - }, - "end": { - "$date": "2022-06-09T16:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "3c905d19-8693-48ca-9662-0e5a4d4b696c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-09T16:58:41.000Z" - }, - "end": { - "$date": "2022-06-09T17:36:19.000Z" - }, - "events": [ - { - "uuid": "60a2e681-f188-48d2-b0a8-fb4e6afd97be", - "start": { - "$date": "2022-06-09T16:58:41.000Z" - }, - "end": { - "$date": "2022-06-09T17:36:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c4d243f8-7f88-4253-9eda-95e4438a5c17", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T17:09:38.000Z" - }, - "end": { - "$date": "2022-06-09T17:10:55.000Z" - }, - "events": [ - { - "uuid": "d8773004-a30a-4caa-91b4-de920aef33dc", - "start": { - "$date": "2022-06-09T17:09:38.000Z" - }, - "end": { - "$date": "2022-06-09T17:10:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "638a98d4-8f22-4be2-a4f7-322f7c2c806c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T17:11:38.000Z" - }, - "end": { - "$date": "2022-06-09T17:42:07.000Z" - }, - "events": [ - { - "uuid": "a25be5a4-a949-4c86-8e76-86d8f3f64c6e", - "start": { - "$date": "2022-06-09T17:11:38.000Z" - }, - "end": { - "$date": "2022-06-09T17:42:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dcdba418-b9cc-4968-93d3-49bb5bb01673", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-09T19:51:20.000Z" - }, - "end": { - "$date": "2022-06-09T20:09:50.000Z" - }, - "events": [ - { - "uuid": "c2aeea3a-1050-4484-92c1-bfaab1f11d8c", - "start": { - "$date": "2022-06-09T19:51:20.000Z" - }, - "end": { - "$date": "2022-06-09T20:09:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5b15d6e8-edfe-49bf-a121-57be8e6d8ee5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T21:29:42.000Z" - }, - "end": { - "$date": "2022-06-09T21:56:31.000Z" - }, - "events": [ - { - "uuid": "47eb56dd-565f-4131-b726-cb916761327d", - "start": { - "$date": "2022-06-09T21:29:42.000Z" - }, - "end": { - "$date": "2022-06-09T21:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ae841509-423c-4d74-a15e-c28e721ea5a6", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T21:57:04.000Z" - }, - "end": { - "$date": "2022-06-09T22:00:51.000Z" - }, - "events": [ - { - "uuid": "4a5ce439-97f8-45c1-9783-83b9e1d8c67c", - "start": { - "$date": "2022-06-09T21:57:04.000Z" - }, - "end": { - "$date": "2022-06-09T22:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7fd5ad07-e854-402a-8d51-d7bfe87f21f7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T22:15:21.000Z" - }, - "end": { - "$date": "2022-06-09T22:50:59.000Z" - }, - "events": [ - { - "uuid": "47202cc8-8382-4dcd-b8e6-a8dde20b70b2", - "start": { - "$date": "2022-06-09T22:15:21.000Z" - }, - "end": { - "$date": "2022-06-09T22:50:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "9dcb966f-0baf-47f3-bffb-942de30959a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-09T22:48:52.000Z" - }, - "end": { - "$date": "2022-06-09T23:05:29.000Z" - }, - "events": [ - { - "uuid": "d10492cd-fe0f-4ba0-bcae-73453c5cfd8c", - "start": { - "$date": "2022-06-09T22:48:52.000Z" - }, - "end": { - "$date": "2022-06-09T23:05:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87b0d254-801a-4dc4-a37a-d9d67382d163", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T22:54:13.000Z" - }, - "end": { - "$date": "2022-06-09T23:23:55.000Z" - }, - "events": [ - { - "uuid": "45742208-4373-448d-894e-c27c70977104", - "start": { - "$date": "2022-06-09T22:54:13.000Z" - }, - "end": { - "$date": "2022-06-09T23:23:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "73d28c86-08ad-494c-9179-65ff5e0aa588", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-09T23:09:58.000Z" - }, - "end": { - "$date": "2022-06-09T23:52:32.000Z" - }, - "events": [ - { - "uuid": "8d92a96a-f48e-46ad-aba9-61344399f997", - "start": { - "$date": "2022-06-09T23:09:58.000Z" - }, - "end": { - "$date": "2022-06-09T23:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f23c73d2-ea55-4b5c-8e0d-81c78938c506", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-09T23:28:39.000Z" - }, - "end": { - "$date": "2022-06-10T00:02:12.000Z" - }, - "events": [ - { - "uuid": "1ac36605-bb7c-43a5-bde1-8fb5cdb1db21", - "start": { - "$date": "2022-06-09T23:28:39.000Z" - }, - "end": { - "$date": "2022-06-10T00:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87ca50d3-267e-497d-8c0f-b7e55730f9f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-09T23:27:51.000Z" - }, - "end": { - "$date": "2022-06-10T00:08:42.000Z" - }, - "events": [ - { - "uuid": "bc89a1b9-f944-4742-b03c-f9659150ddcd", - "start": { - "$date": "2022-06-09T23:27:51.000Z" - }, - "end": { - "$date": "2022-06-10T00:08:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c07dcae3-1781-45a9-a977-45088504483f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T00:12:15.000Z" - }, - "end": { - "$date": "2022-06-10T00:46:29.000Z" - }, - "events": [ - { - "uuid": "2ce97732-0fea-4be6-99c2-bb20262a4de3", - "start": { - "$date": "2022-06-10T00:12:15.000Z" - }, - "end": { - "$date": "2022-06-10T00:46:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e212345-bbb3-4378-8f37-e171115e54f2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-10T00:10:10.000Z" - }, - "end": { - "$date": "2022-06-10T00:44:13.000Z" - }, - "events": [ - { - "uuid": "d69ea294-2e37-4e5f-86d4-77bd16460566", - "start": { - "$date": "2022-06-10T00:10:10.000Z" - }, - "end": { - "$date": "2022-06-10T00:44:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d954803d-ad49-48fe-b375-6e937068af8e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T00:12:16.000Z" - }, - "end": { - "$date": "2022-06-10T00:46:20.000Z" - }, - "events": [ - { - "uuid": "ba10fab3-6330-4aae-8535-add994077fa5", - "start": { - "$date": "2022-06-10T00:12:16.000Z" - }, - "end": { - "$date": "2022-06-10T00:46:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1e27aa2b-9229-4161-b453-dbcc3256d700", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T00:47:26.000Z" - }, - "end": { - "$date": "2022-06-10T01:12:22.000Z" - }, - "events": [ - { - "uuid": "ebb77974-d0df-475a-90a3-6200412fc061", - "start": { - "$date": "2022-06-10T00:47:26.000Z" - }, - "end": { - "$date": "2022-06-10T01:12:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f14c8fb-29fa-46b7-bb40-e2c4ceaa0a67", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T00:47:23.000Z" - }, - "end": { - "$date": "2022-06-10T01:12:45.000Z" - }, - "events": [ - { - "uuid": "6067e89c-8d92-4530-bad9-183cb5ad72a6", - "start": { - "$date": "2022-06-10T00:47:23.000Z" - }, - "end": { - "$date": "2022-06-10T01:12:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "1c9dff56-baa7-4ae2-83a9-b6a5f6a4fb99", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-10T01:44:15.000Z" - }, - "end": { - "$date": "2022-06-10T01:46:03.000Z" - }, - "events": [ - { - "uuid": "179f2b61-1fa2-4a55-b978-f4fecab52655", - "start": { - "$date": "2022-06-10T01:44:15.000Z" - }, - "end": { - "$date": "2022-06-10T01:46:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "2165625a-114e-4e67-b4d0-b2ac75f72868", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T01:46:58.000Z" - }, - "end": { - "$date": "2022-06-10T02:54:47.000Z" - }, - "events": [ - { - "uuid": "6bb5ba3d-1f7a-4b79-9dab-3d4f947dfa64", - "start": { - "$date": "2022-06-10T01:46:58.000Z" - }, - "end": { - "$date": "2022-06-10T02:54:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "fd86f493-945b-4cab-9436-14897c65ea1f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-10T01:46:55.000Z" - }, - "end": { - "$date": "2022-06-10T03:01:51.000Z" - }, - "events": [ - { - "uuid": "827abb46-627d-406b-96cb-77889e645c08", - "start": { - "$date": "2022-06-10T01:46:55.000Z" - }, - "end": { - "$date": "2022-06-10T03:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "5380fd48-c8c0-4716-9e80-c1f87ac9b224", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-10T02:03:50.000Z" - }, - "end": { - "$date": "2022-06-10T09:13:02.000Z" - }, - "events": [ - { - "uuid": "4372cfba-aac0-4808-8bc5-6f7abb056997", - "start": { - "$date": "2022-06-10T02:03:50.000Z" - }, - "end": { - "$date": "2022-06-10T02:43:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "63038905-d871-46b1-b793-d2133d89a324", - "start": { - "$date": "2022-06-10T02:43:50.000Z" - }, - "end": { - "$date": "2022-06-10T02:46:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8e48779f-511e-4432-9b9a-28ae6d945d54", - "start": { - "$date": "2022-06-10T02:46:50.000Z" - }, - "end": { - "$date": "2022-06-10T07:20:50.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25b80de1-301a-4a7f-8a74-86809f09efe4", - "start": { - "$date": "2022-06-10T07:20:50.000Z" - }, - "end": { - "$date": "2022-06-10T07:34:50.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4f038df3-4561-405a-b1c6-b403cd60e18e", - "start": { - "$date": "2022-06-10T07:34:50.000Z" - }, - "end": { - "$date": "2022-06-10T09:13:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7ee8c082-eafa-4342-b94c-2ae1ade7edcb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-10T03:33:08.000Z" - }, - "end": { - "$date": "2022-06-10T03:45:48.000Z" - }, - "events": [ - { - "uuid": "d204f0fd-ffac-4c25-8521-b3566965407e", - "start": { - "$date": "2022-06-10T03:33:08.000Z" - }, - "end": { - "$date": "2022-06-10T03:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "712a8356-cd36-4009-b610-606af6efc468", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T03:26:12.000Z" - }, - "end": { - "$date": "2022-06-10T04:15:36.000Z" - }, - "events": [ - { - "uuid": "53cbdaff-05d7-4aa4-ae64-90147fa60175", - "start": { - "$date": "2022-06-10T03:26:12.000Z" - }, - "end": { - "$date": "2022-06-10T04:15:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bade846d-7d53-456e-8c85-018091ec09b8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T03:49:35.000Z" - }, - "end": { - "$date": "2022-06-10T04:34:09.000Z" - }, - "events": [ - { - "uuid": "8414e1a7-925a-4145-a26e-e8a11fbf7602", - "start": { - "$date": "2022-06-10T03:49:35.000Z" - }, - "end": { - "$date": "2022-06-10T04:34:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "457be214-103d-400c-a569-67755371eeb0", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-10T03:58:22.000Z" - }, - "end": { - "$date": "2022-06-10T05:55:06.000Z" - }, - "events": [ - { - "uuid": "d773c53f-a951-446e-ab7d-466ee6199b18", - "start": { - "$date": "2022-06-10T03:58:22.000Z" - }, - "end": { - "$date": "2022-06-10T05:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0813b5a9-c090-40e7-b2ba-ad3afb0b9ab8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T04:17:03.000Z" - }, - "end": { - "$date": "2022-06-10T04:25:48.000Z" - }, - "events": [ - { - "uuid": "39b0700c-83e0-46ae-9f2b-afec5cca71b9", - "start": { - "$date": "2022-06-10T04:17:03.000Z" - }, - "end": { - "$date": "2022-06-10T04:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a73e7ba8-7262-4c9a-819c-fe4c4c4a0ce1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T04:35:51.000Z" - }, - "end": { - "$date": "2022-06-10T05:02:39.000Z" - }, - "events": [ - { - "uuid": "34c15617-d43b-4200-b876-aa47928bfeb4", - "start": { - "$date": "2022-06-10T04:35:51.000Z" - }, - "end": { - "$date": "2022-06-10T05:02:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "165c87f5-5155-443b-bbd8-55387ff6bdf9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T05:04:02.000Z" - }, - "end": { - "$date": "2022-06-10T05:31:09.000Z" - }, - "events": [ - { - "uuid": "3c881d5d-d494-4e97-8425-f1406884654c", - "start": { - "$date": "2022-06-10T05:04:02.000Z" - }, - "end": { - "$date": "2022-06-10T05:31:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "402507e6-fd45-4754-a333-2adfeb49f4f4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-10T12:30:16.000Z" - }, - "end": { - "$date": "2022-06-10T12:57:36.000Z" - }, - "events": [ - { - "uuid": "98d289f9-ec24-4936-bc54-fe97c5ad9147", - "start": { - "$date": "2022-06-10T12:30:16.000Z" - }, - "end": { - "$date": "2022-06-10T12:57:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac295c5a-aafd-47d7-a646-467558628f60", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-10T15:25:10.000Z" - }, - "end": { - "$date": "2022-06-10T15:45:07.000Z" - }, - "events": [ - { - "uuid": "96aba858-16b9-442c-b624-5b9b94fb11b0", - "start": { - "$date": "2022-06-10T15:25:10.000Z" - }, - "end": { - "$date": "2022-06-10T15:45:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "008f0f86-304d-48e2-872c-0cc10bffad52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T17:40:19.000Z" - }, - "end": { - "$date": "2022-06-10T18:06:30.000Z" - }, - "events": [ - { - "uuid": "fb05eb5a-38a3-4a24-94da-49c8207fdfd0", - "start": { - "$date": "2022-06-10T17:40:19.000Z" - }, - "end": { - "$date": "2022-06-10T18:06:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "36ede672-d275-47ed-ab47-8e1bd9026fac", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T19:57:48.000Z" - }, - "end": { - "$date": "2022-06-10T21:55:48.000Z" - }, - "events": [ - { - "uuid": "f72bac5c-eb67-44f8-bcbc-04714fe836a0", - "start": { - "$date": "2022-06-10T19:57:48.000Z" - }, - "end": { - "$date": "2022-06-10T21:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "00b3b976-9642-4751-a7a4-edee2015bca0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-10T20:33:44.000Z" - }, - "end": { - "$date": "2022-06-10T21:10:24.000Z" - }, - "events": [ - { - "uuid": "33497881-29cf-4bbb-ba32-802d96fd547c", - "start": { - "$date": "2022-06-10T20:33:44.000Z" - }, - "end": { - "$date": "2022-06-10T21:10:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a96d712-b1c5-4f7b-a50f-e6687990f9e1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-10T21:12:22.000Z" - }, - "end": { - "$date": "2022-06-10T21:34:29.000Z" - }, - "events": [ - { - "uuid": "e59fb589-3957-49c7-99bf-ab117afdd2ba", - "start": { - "$date": "2022-06-10T21:12:22.000Z" - }, - "end": { - "$date": "2022-06-10T21:34:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c328306d-f9f3-4076-9612-0179f2a7258b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-10T21:35:33.000Z" - }, - "end": { - "$date": "2022-06-10T22:01:20.000Z" - }, - "events": [ - { - "uuid": "633e0279-a6bc-4cdf-9b35-11ef479d4ef2", - "start": { - "$date": "2022-06-10T21:35:33.000Z" - }, - "end": { - "$date": "2022-06-10T22:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bb40ff5b-5eb4-43bd-a4f1-1d8e6463f027", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T21:35:34.000Z" - }, - "end": { - "$date": "2022-06-10T22:01:27.000Z" - }, - "events": [ - { - "uuid": "46f751c0-dac4-4510-90dc-7b736104139a", - "start": { - "$date": "2022-06-10T21:35:34.000Z" - }, - "end": { - "$date": "2022-06-10T22:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9851ca7-a8aa-4d4e-800e-11fcdecff315", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T22:02:21.000Z" - }, - "end": { - "$date": "2022-06-10T22:30:19.000Z" - }, - "events": [ - { - "uuid": "ffd81551-c060-42a9-9414-1a3129a62c62", - "start": { - "$date": "2022-06-10T22:02:21.000Z" - }, - "end": { - "$date": "2022-06-10T22:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d46c017b-798a-4c53-a1ff-cabde649765a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T22:01:42.000Z" - }, - "end": { - "$date": "2022-06-10T22:42:10.000Z" - }, - "events": [ - { - "uuid": "126b041a-7a2f-44c1-aae7-a81e34faa470", - "start": { - "$date": "2022-06-10T22:01:42.000Z" - }, - "end": { - "$date": "2022-06-10T22:35:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4c607325-b205-49ab-850b-8320f0ec5a8e", - "start": { - "$date": "2022-06-10T22:35:42.000Z" - }, - "end": { - "$date": "2022-06-10T22:38:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "93e0e469-623d-4c2a-9dae-1509403847bc", - "start": { - "$date": "2022-06-10T22:38:42.000Z" - }, - "end": { - "$date": "2022-06-10T22:42:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "150e6540-37b1-4a7e-9e25-9f7caa7f0afb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-10T22:35:42.000Z" - }, - "end": { - "$date": "2022-06-10T23:17:56.000Z" - }, - "events": [ - { - "uuid": "c52aa46a-c5da-4277-b530-cbd741f2d841", - "start": { - "$date": "2022-06-10T22:35:42.000Z" - }, - "end": { - "$date": "2022-06-10T23:17:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f91fc5e3-003b-4330-8f60-471c9b191d3d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-10T22:38:14.000Z" - }, - "end": { - "$date": "2022-06-10T23:21:06.000Z" - }, - "events": [ - { - "uuid": "35019398-f9fd-4b5f-a102-0e0b3104f69a", - "start": { - "$date": "2022-06-10T22:38:14.000Z" - }, - "end": { - "$date": "2022-06-10T23:21:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "e76f8139-65a0-4dc9-a70d-64a61b900f25", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-10T22:42:29.000Z" - }, - "end": { - "$date": "2022-06-10T23:16:42.000Z" - }, - "events": [ - { - "uuid": "e5603b15-fbeb-4e17-955c-7aebc1c0a4f3", - "start": { - "$date": "2022-06-10T22:42:29.000Z" - }, - "end": { - "$date": "2022-06-10T23:16:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60d7e7f3-ff5e-45da-93ca-f840617c097a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T00:32:33.000Z" - }, - "end": { - "$date": "2022-06-11T00:57:15.000Z" - }, - "events": [ - { - "uuid": "3a37b7a7-fc95-44c5-a1fd-cdea09ad505a", - "start": { - "$date": "2022-06-11T00:32:33.000Z" - }, - "end": { - "$date": "2022-06-11T00:57:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "c0128dd3-bfa5-4e50-bb24-e99ab9035a52", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T01:39:29.000Z" - }, - "end": { - "$date": "2022-06-11T02:21:27.000Z" - }, - "events": [ - { - "uuid": "1611431c-8d62-4d62-940b-a747df70ab4f", - "start": { - "$date": "2022-06-11T01:39:29.000Z" - }, - "end": { - "$date": "2022-06-11T02:21:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1b9d6b2e-c412-4365-8484-8f7a6d0d942a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T01:50:29.000Z" - }, - "end": { - "$date": "2022-06-11T02:13:57.000Z" - }, - "events": [ - { - "uuid": "e0d51225-5d1e-42e5-821a-6abe4b316e87", - "start": { - "$date": "2022-06-11T01:50:29.000Z" - }, - "end": { - "$date": "2022-06-11T02:13:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d4b8df46-7ae7-4c11-851a-4fb775851170", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T02:04:14.000Z" - }, - "end": { - "$date": "2022-06-11T02:06:19.000Z" - }, - "events": [ - { - "uuid": "e6b6c47a-8d53-4034-883a-761fd806e738", - "start": { - "$date": "2022-06-11T02:04:14.000Z" - }, - "end": { - "$date": "2022-06-11T02:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e81331fc-3ca1-457f-a34c-afaaad0758dc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T02:06:45.000Z" - }, - "end": { - "$date": "2022-06-11T02:10:00.000Z" - }, - "events": [ - { - "uuid": "697a24e1-05f2-488f-b5a4-8155f08118c1", - "start": { - "$date": "2022-06-11T02:06:45.000Z" - }, - "end": { - "$date": "2022-06-11T02:10:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5f2a3f8a-d99c-4510-af49-7810803eeffb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T02:15:22.000Z" - }, - "end": { - "$date": "2022-06-11T02:43:31.000Z" - }, - "events": [ - { - "uuid": "35239877-c12d-4b89-9613-b779441e205d", - "start": { - "$date": "2022-06-11T02:15:22.000Z" - }, - "end": { - "$date": "2022-06-11T02:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b517c52b-81b3-4be0-ab8c-bc9783084f9b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-11T02:14:34.000Z" - }, - "end": { - "$date": "2022-06-11T03:25:30.000Z" - }, - "events": [ - { - "uuid": "de497a2d-e8ea-4d28-8f83-cb11d3b701b2", - "start": { - "$date": "2022-06-11T02:14:34.000Z" - }, - "end": { - "$date": "2022-06-11T03:25:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efe6c4a3-d6b4-4c55-9b64-ca0dd8ff1dd5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T02:22:51.000Z" - }, - "end": { - "$date": "2022-06-11T02:40:38.000Z" - }, - "events": [ - { - "uuid": "0bbf64aa-8317-4928-ac67-65090c67cd5b", - "start": { - "$date": "2022-06-11T02:22:51.000Z" - }, - "end": { - "$date": "2022-06-11T02:40:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "fe5b89a9-c0a1-4f19-8ef1-32d7232bd1e8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-11T02:31:28.000Z" - }, - "end": { - "$date": "2022-06-11T05:47:15.000Z" - }, - "events": [ - { - "uuid": "7ef32747-526b-4960-95be-52539171a6a2", - "start": { - "$date": "2022-06-11T02:31:28.000Z" - }, - "end": { - "$date": "2022-06-11T05:47:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "8af22e73-804e-4fd0-9352-ff22c3fd1fac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T02:37:38.000Z" - }, - "end": { - "$date": "2022-06-11T02:39:08.000Z" - }, - "events": [ - { - "uuid": "af4464ce-f490-4e68-81b2-b1bbae2a9deb", - "start": { - "$date": "2022-06-11T02:37:38.000Z" - }, - "end": { - "$date": "2022-06-11T02:39:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "25a2f126-57f9-456c-b235-050814d7dc9c", - "uuid": "ef7985b5-82ff-4cae-a941-54277ee380d2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T02:39:23.000Z" - }, - "end": { - "$date": "2022-06-11T03:07:15.000Z" - }, - "events": [ - { - "uuid": "e9140c0f-4527-4d04-bd27-9fd26c6da724", - "start": { - "$date": "2022-06-11T02:39:23.000Z" - }, - "end": { - "$date": "2022-06-11T03:07:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "470f557b-c170-4111-875a-e31a24b7ef6d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-11T02:40:06.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:32.000Z" - }, - "events": [ - { - "uuid": "15076fc1-b4c9-4ae7-b0cd-b9b46209caa1", - "start": { - "$date": "2022-06-11T02:40:06.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:32.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "be8176f4-c55e-4af6-86cf-8d465327fae2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-11T02:40:25.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:47.000Z" - }, - "events": [ - { - "uuid": "d369a55b-2dde-4839-b9bc-a94772347ad9", - "start": { - "$date": "2022-06-11T02:40:25.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "22075790-9d77-42f5-bda8-f92b1bdb8605", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T02:40:54.000Z" - }, - "end": { - "$date": "2022-06-11T03:25:46.000Z" - }, - "events": [ - { - "uuid": "76170bce-be96-4d3a-917a-8e5715076cb4", - "start": { - "$date": "2022-06-11T02:40:54.000Z" - }, - "end": { - "$date": "2022-06-11T03:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e122e456-1161-47ac-9a65-a94f3c1a3380", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T02:44:20.000Z" - }, - "end": { - "$date": "2022-06-11T03:19:03.000Z" - }, - "events": [ - { - "uuid": "84402cb3-a53e-48a1-8b49-cf7e6a4fb2a4", - "start": { - "$date": "2022-06-11T02:44:20.000Z" - }, - "end": { - "$date": "2022-06-11T03:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7404c9b2-cb93-48e2-8aeb-bc536d47f127", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-11T02:45:07.000Z" - }, - "end": { - "$date": "2022-06-11T02:46:39.000Z" - }, - "events": [ - { - "uuid": "d587867b-ecb4-4f7d-b31e-41ca49b02a28", - "start": { - "$date": "2022-06-11T02:45:07.000Z" - }, - "end": { - "$date": "2022-06-11T02:46:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b585c36f-77a4-4442-9931-fb0a49857f86", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-11T02:47:17.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:53.000Z" - }, - "events": [ - { - "uuid": "056dfd2c-c1e6-43c9-906c-d792543cdcb3", - "start": { - "$date": "2022-06-11T02:47:17.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "c281657f-268d-4613-89eb-41a43624d006", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T03:19:21.000Z" - }, - "end": { - "$date": "2022-06-11T04:01:40.000Z" - }, - "events": [ - { - "uuid": "65fbfaa5-d316-4dd7-b6be-25ac0650eebf", - "start": { - "$date": "2022-06-11T03:19:21.000Z" - }, - "end": { - "$date": "2022-06-11T04:01:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1b32738a-aa63-4af7-bad1-3cf26294df28", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-11T03:23:08.000Z" - }, - "end": { - "$date": "2022-06-11T03:26:38.000Z" - }, - "events": [ - { - "uuid": "b1cfe23e-1fe6-457c-9ce9-f7a014dc68fe", - "start": { - "$date": "2022-06-11T03:23:08.000Z" - }, - "end": { - "$date": "2022-06-11T03:26:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "182fec41-8a8d-4cf7-93be-ddd84c1c8811", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-11T03:34:24.000Z" - }, - "end": { - "$date": "2022-06-11T07:13:58.000Z" - }, - "events": [ - { - "uuid": "ac935496-29a9-46a8-899e-d8e905aaf53e", - "start": { - "$date": "2022-06-11T03:34:24.000Z" - }, - "end": { - "$date": "2022-06-11T07:13:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "831af437-34a1-4d58-b996-b9c1c97bed8c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T03:27:30.000Z" - }, - "end": { - "$date": "2022-06-11T04:05:03.000Z" - }, - "events": [ - { - "uuid": "a758447e-41bd-4e38-b9ec-20cb9aec57af", - "start": { - "$date": "2022-06-11T03:27:30.000Z" - }, - "end": { - "$date": "2022-06-11T04:05:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "171bfa2c-f21b-4de1-aff1-5a354e82bd63", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T03:27:35.000Z" - }, - "end": { - "$date": "2022-06-11T04:04:27.000Z" - }, - "events": [ - { - "uuid": "91b86417-b4e2-4de5-8c85-4113ff9a6d7c", - "start": { - "$date": "2022-06-11T03:27:35.000Z" - }, - "end": { - "$date": "2022-06-11T04:04:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "70d5bd73-b283-45b7-a2ee-6c7d9473f3c7", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-11T03:27:59.000Z" - }, - "end": { - "$date": "2022-06-11T07:14:34.000Z" - }, - "events": [ - { - "uuid": "2f649dc5-d4dc-45fa-848f-4694e85c3642", - "start": { - "$date": "2022-06-11T03:27:59.000Z" - }, - "end": { - "$date": "2022-06-11T07:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "b585de3b-d975-47d0-948a-7bf93fe510ed", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T04:06:44.000Z" - }, - "end": { - "$date": "2022-06-11T04:42:12.000Z" - }, - "events": [ - { - "uuid": "12b41eb4-e40c-4c13-8863-6ff1fef63351", - "start": { - "$date": "2022-06-11T04:06:44.000Z" - }, - "end": { - "$date": "2022-06-11T04:42:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "026231a9-8b50-4243-a72e-13bfc99423fc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T04:11:06.000Z" - }, - "end": { - "$date": "2022-06-11T10:49:45.000Z" - }, - "events": [ - { - "uuid": "5e250b8d-2c67-45ef-99bb-f59819f768cf", - "start": { - "$date": "2022-06-11T04:11:06.000Z" - }, - "end": { - "$date": "2022-06-11T05:16:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b5869c40-a1c6-449e-87d4-4781158937cd", - "start": { - "$date": "2022-06-11T05:16:06.000Z" - }, - "end": { - "$date": "2022-06-11T05:20:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ad7cb2b-52a0-4b03-94df-ca61beab86b8", - "start": { - "$date": "2022-06-11T05:20:06.000Z" - }, - "end": { - "$date": "2022-06-11T08:21:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5ff573e0-cd33-4e3f-93ca-646a027644e1", - "start": { - "$date": "2022-06-11T08:21:06.000Z" - }, - "end": { - "$date": "2022-06-11T08:23:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dd46fd6c-7339-41e5-8d9c-5f8e85663861", - "start": { - "$date": "2022-06-11T08:23:06.000Z" - }, - "end": { - "$date": "2022-06-11T10:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "09613e2d-79a4-4518-8836-067eeba093fe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T04:20:29.000Z" - }, - "end": { - "$date": "2022-06-11T05:30:25.000Z" - }, - "events": [ - { - "uuid": "90c56dc9-7e1f-47c7-84be-7c15345d9dad", - "start": { - "$date": "2022-06-11T04:20:29.000Z" - }, - "end": { - "$date": "2022-06-11T05:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d166ca90-8e17-41d5-a4dd-959ec5efad79", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-11T04:20:49.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:51.000Z" - }, - "events": [ - { - "uuid": "6c773756-77ac-4831-882c-c6ca0f08acc7", - "start": { - "$date": "2022-06-11T04:20:49.000Z" - }, - "end": { - "$date": "2022-06-11T04:29:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "61b795e4-457a-482a-8524-dc16dbda8185", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T10:51:31.000Z" - }, - "end": { - "$date": "2022-06-11T12:34:48.000Z" - }, - "events": [ - { - "uuid": "5029a33d-e053-4242-8923-8d4e5336ddb5", - "start": { - "$date": "2022-06-11T10:51:31.000Z" - }, - "end": { - "$date": "2022-06-11T12:34:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6001234f-d5b1-4374-bfee-c6cb633feb30", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T15:36:17.000Z" - }, - "end": { - "$date": "2022-06-11T15:54:25.000Z" - }, - "events": [ - { - "uuid": "6d4ed058-e37b-44ee-80e5-b72f5dd822db", - "start": { - "$date": "2022-06-11T15:36:17.000Z" - }, - "end": { - "$date": "2022-06-11T15:54:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ee70dc36-9ba6-4ac9-b18b-cfc4d96e2bf7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T16:32:49.000Z" - }, - "end": { - "$date": "2022-06-11T16:50:39.000Z" - }, - "events": [ - { - "uuid": "994eba3a-03e7-42d6-9d93-0a0442026f17", - "start": { - "$date": "2022-06-11T16:32:49.000Z" - }, - "end": { - "$date": "2022-06-11T16:50:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0bee9126-3be4-432e-83e1-7e938ab5f984", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T16:58:00.000Z" - }, - "end": { - "$date": "2022-06-11T17:17:31.000Z" - }, - "events": [ - { - "uuid": "163a27ae-975e-44e5-bd21-1a0c34c2b000", - "start": { - "$date": "2022-06-11T16:58:00.000Z" - }, - "end": { - "$date": "2022-06-11T17:17:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "04e1adf4-23bc-46e9-8c06-564666dd3376", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T19:17:47.000Z" - }, - "end": { - "$date": "2022-06-11T19:44:42.000Z" - }, - "events": [ - { - "uuid": "1b569fd4-3ce9-4463-887a-511551a0089c", - "start": { - "$date": "2022-06-11T19:17:47.000Z" - }, - "end": { - "$date": "2022-06-11T19:44:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c4514f18-f888-4fa6-af2b-d6424c354770", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-11T20:00:11.000Z" - }, - "end": { - "$date": "2022-06-11T20:00:26.000Z" - }, - "events": [ - { - "uuid": "cca1a83e-d42a-40dd-a24e-4b2bd04a03e9", - "start": { - "$date": "2022-06-11T20:00:11.000Z" - }, - "end": { - "$date": "2022-06-11T20:31:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88939d41-9d36-4429-8840-c6ceb43f698c", - "start": { - "$date": "2022-06-11T20:31:11.000Z" - }, - "end": { - "$date": "2022-06-11T20:00:26.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "1a840b3b-beb8-4398-84ee-81bf6cf90476", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T19:43:15.000Z" - }, - "end": { - "$date": "2022-06-11T20:01:46.000Z" - }, - "events": [ - { - "uuid": "1ebe6363-c5ea-458e-8d11-e3db716af04c", - "start": { - "$date": "2022-06-11T19:43:15.000Z" - }, - "end": { - "$date": "2022-06-11T20:01:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "a4033a2a-a358-4b59-aafc-bbcb6d5c2d4f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T19:50:35.000Z" - }, - "end": { - "$date": "2022-06-11T23:14:21.000Z" - }, - "events": [ - { - "uuid": "7bb18042-ac3a-4e66-84cb-4d949721d4c5", - "start": { - "$date": "2022-06-11T19:50:35.000Z" - }, - "end": { - "$date": "2022-06-11T23:14:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "82252672-5f36-464e-ac58-cd1ab5df4c25", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T20:10:09.000Z" - }, - "end": { - "$date": "2022-06-11T20:30:19.000Z" - }, - "events": [ - { - "uuid": "35bb2c86-3a3e-4013-9ce6-6ffcb2a5eff8", - "start": { - "$date": "2022-06-11T20:10:09.000Z" - }, - "end": { - "$date": "2022-06-11T20:30:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "33a7421e-5227-442e-8c1b-b5b1585153e7", - "uuid": "5d15077a-ec51-4c96-83ce-694228e35836", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-12T00:44:29.000Z" - }, - "end": { - "$date": "2022-06-12T00:58:35.000Z" - }, - "events": [ - { - "uuid": "3f61db8d-af5f-4106-a97f-94c2cfe48cc2", - "start": { - "$date": "2022-06-12T00:44:29.000Z" - }, - "end": { - "$date": "2022-06-12T04:52:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "60fcc0a3-a524-4641-a362-8c1fa6a3343a", - "start": { - "$date": "2022-06-12T04:52:29.000Z" - }, - "end": { - "$date": "2022-06-12T04:53:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6c52af00-267d-40c3-be84-c9ecce9448ea", - "start": { - "$date": "2022-06-12T04:53:29.000Z" - }, - "end": { - "$date": "2022-06-12T00:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3aea0d0f-634b-45c6-a366-da7f8a928783", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T20:49:16.000Z" - }, - "end": { - "$date": "2022-06-11T21:09:47.000Z" - }, - "events": [ - { - "uuid": "6878e814-f745-4087-9a9a-644ed09f8cf0", - "start": { - "$date": "2022-06-11T20:49:16.000Z" - }, - "end": { - "$date": "2022-06-11T21:09:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4a93640e-cc5b-44bf-9b0f-8cacb4cad093", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-11T20:58:57.000Z" - }, - "end": { - "$date": "2022-06-11T22:58:09.000Z" - }, - "events": [ - { - "uuid": "32086f21-f66b-4808-978e-d74afeebff31", - "start": { - "$date": "2022-06-11T20:58:57.000Z" - }, - "end": { - "$date": "2022-06-11T22:58:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "599bcae2-df27-4183-8a8f-e9bdbea843d6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-11T23:05:03.000Z" - }, - "end": { - "$date": "2022-06-12T03:07:12.000Z" - }, - "events": [ - { - "uuid": "2a48e375-13c9-4896-a10b-62a29f11a0e4", - "start": { - "$date": "2022-06-11T23:05:03.000Z" - }, - "end": { - "$date": "2022-06-12T01:39:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fb98d281-fc68-4f25-9075-2f3013f212e0", - "start": { - "$date": "2022-06-12T01:39:03.000Z" - }, - "end": { - "$date": "2022-06-12T01:57:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "714ab0ea-5fe8-4c6b-832a-a25ba3e0372e", - "start": { - "$date": "2022-06-12T01:57:03.000Z" - }, - "end": { - "$date": "2022-06-12T02:13:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c7f0a679-c219-4a3d-a06b-7aa081235327", - "start": { - "$date": "2022-06-12T02:13:03.000Z" - }, - "end": { - "$date": "2022-06-12T02:17:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "31614d5e-4aca-4154-9da7-31b743de8ffd", - "start": { - "$date": "2022-06-12T02:17:03.000Z" - }, - "end": { - "$date": "2022-06-12T02:32:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "75be1757-4b20-4208-9f32-b1f7e21544dc", - "start": { - "$date": "2022-06-12T02:32:03.000Z" - }, - "end": { - "$date": "2022-06-12T02:35:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "474ac760-c25b-4b56-8b04-abe9d5c618eb", - "start": { - "$date": "2022-06-12T02:35:03.000Z" - }, - "end": { - "$date": "2022-06-12T03:07:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "1bd88c79-1604-48bb-9bcc-e98a8a41888d", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-11T23:14:21.000Z" - }, - "end": { - "$date": "2022-06-12T00:18:45.000Z" - }, - "events": [ - { - "uuid": "f2414f76-0b58-41a3-a621-e00ad5130644", - "start": { - "$date": "2022-06-11T23:14:21.000Z" - }, - "end": { - "$date": "2022-06-12T00:18:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "f1f798d7-cae6-41a9-868e-1546ca77cb7e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T23:14:25.000Z" - }, - "end": { - "$date": "2022-06-11T23:32:54.000Z" - }, - "events": [ - { - "uuid": "f0f669ff-c1d4-47c5-8aa4-18b2632898bf", - "start": { - "$date": "2022-06-11T23:14:25.000Z" - }, - "end": { - "$date": "2022-06-11T23:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "bb1a77d0-e7cb-4ced-8676-2d0784e0bdad", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-11T23:18:32.000Z" - }, - "end": { - "$date": "2022-06-12T00:53:13.000Z" - }, - "events": [ - { - "uuid": "759512e0-5b39-49dc-b5a3-1a104ace4248", - "start": { - "$date": "2022-06-11T23:18:32.000Z" - }, - "end": { - "$date": "2022-06-12T00:53:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cdfdc3b3-4b45-4c06-9c35-e48c9eef93ad", - "uuid": "b443db86-5f41-4b5b-afb9-963ecda04bc5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-11T23:33:00.000Z" - }, - "end": { - "$date": "2022-06-11T23:59:00.000Z" - }, - "events": [ - { - "uuid": "5118f37f-50b8-42cd-b092-504dac86651c", - "start": { - "$date": "2022-06-11T23:33:00.000Z" - }, - "end": { - "$date": "2022-06-11T23:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7e71f8ff-6e7f-42b2-8ab9-0b617370f31c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-12T00:09:51.000Z" - }, - "end": { - "$date": "2022-06-12T00:36:11.000Z" - }, - "events": [ - { - "uuid": "b272c27d-c9c5-4d95-8e6c-4e12591521f2", - "start": { - "$date": "2022-06-12T00:09:51.000Z" - }, - "end": { - "$date": "2022-06-12T00:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4d33134d-c4ea-4cc3-a23a-2ed9c1462cc9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T00:20:55.000Z" - }, - "end": { - "$date": "2022-06-12T00:37:18.000Z" - }, - "events": [ - { - "uuid": "48992982-7c02-4ba4-9f36-d0bd06f00d9b", - "start": { - "$date": "2022-06-12T00:20:55.000Z" - }, - "end": { - "$date": "2022-06-12T00:37:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "a7a25d72-9258-48ec-8712-2f90b44710f4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-12T02:28:51.000Z" - }, - "end": { - "$date": "2022-06-12T02:35:46.000Z" - }, - "events": [ - { - "uuid": "c104652b-88d6-4179-9f6c-a7c1145d6221", - "start": { - "$date": "2022-06-12T02:28:51.000Z" - }, - "end": { - "$date": "2022-06-12T02:35:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "ec5d0dd2-29e9-4b6b-86ef-669874940ca8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-12T02:41:42.000Z" - }, - "end": { - "$date": "2022-06-12T04:00:40.000Z" - }, - "events": [ - { - "uuid": "23cdb24d-f976-4f37-bc9d-7c8ed9e7a08b", - "start": { - "$date": "2022-06-12T02:41:42.000Z" - }, - "end": { - "$date": "2022-06-12T04:00:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a70e9345-cbaf-4ba1-af87-f69a859da969", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-12T03:16:48.000Z" - }, - "end": { - "$date": "2022-06-12T04:59:02.000Z" - }, - "events": [ - { - "uuid": "679dbb95-8184-4e93-ba9f-5218db6fd99a", - "start": { - "$date": "2022-06-12T03:16:48.000Z" - }, - "end": { - "$date": "2022-06-12T04:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "facc86aa-15a5-4a06-b628-b4a019365b01", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-12T07:36:05.000Z" - }, - "end": { - "$date": "2022-06-12T07:39:04.000Z" - }, - "events": [ - { - "uuid": "fd72d721-a2ce-411d-9ea2-0323b86468d4", - "start": { - "$date": "2022-06-12T07:36:05.000Z" - }, - "end": { - "$date": "2022-06-12T07:39:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a569f0a6-e529-4a8c-9fc2-c8ef66b8d572", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-12T03:27:42.000Z" - }, - "end": { - "$date": "2022-06-12T07:36:02.000Z" - }, - "events": [ - { - "uuid": "969916f0-7e07-41db-8dbc-9fdcf71ef8cd", - "start": { - "$date": "2022-06-12T03:27:42.000Z" - }, - "end": { - "$date": "2022-06-12T07:36:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "bc4d9671-51c4-4ee0-8e3c-21a806ba015e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-12T03:47:11.000Z" - }, - "end": { - "$date": "2022-06-12T04:42:17.000Z" - }, - "events": [ - { - "uuid": "f314402a-cd6b-4dfa-832a-1ba0e5224f00", - "start": { - "$date": "2022-06-12T03:47:11.000Z" - }, - "end": { - "$date": "2022-06-12T04:42:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9ff5544a-811d-4048-8cd2-80c37a9a8cc9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-12T04:01:16.000Z" - }, - "end": { - "$date": "2022-06-12T07:01:57.000Z" - }, - "events": [ - { - "uuid": "64748d24-b4a2-488a-ab95-cab338fbac20", - "start": { - "$date": "2022-06-12T04:01:16.000Z" - }, - "end": { - "$date": "2022-06-12T07:01:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2f7e5bf5-0c1c-47ab-bb4d-b34cf2bf997b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T04:01:24.000Z" - }, - "end": { - "$date": "2022-06-12T04:47:55.000Z" - }, - "events": [ - { - "uuid": "d5f64913-dab0-4c7f-8a91-7869b19bc6a5", - "start": { - "$date": "2022-06-12T04:01:24.000Z" - }, - "end": { - "$date": "2022-06-12T04:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "4419201f-5500-4abe-88de-699371fbb49d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-12T04:07:38.000Z" - }, - "end": { - "$date": "2022-06-12T05:20:37.000Z" - }, - "events": [ - { - "uuid": "271ba0c0-6d60-4b05-8cf0-578eebf1aa35", - "start": { - "$date": "2022-06-12T04:07:38.000Z" - }, - "end": { - "$date": "2022-06-12T05:20:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "df57b486-f4f2-477c-b87e-9f4df3917405", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T04:48:25.000Z" - }, - "end": { - "$date": "2022-06-12T04:59:05.000Z" - }, - "events": [ - { - "uuid": "37dc9b9c-323c-4dfc-ac00-c603609442ab", - "start": { - "$date": "2022-06-12T04:48:25.000Z" - }, - "end": { - "$date": "2022-06-12T04:59:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f214ec62-6a9e-47cd-af04-28fc32f20dc0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T05:05:36.000Z" - }, - "end": { - "$date": "2022-06-12T05:43:37.000Z" - }, - "events": [ - { - "uuid": "f7b056cb-258d-43d4-a13e-1667a89cf41e", - "start": { - "$date": "2022-06-12T05:05:36.000Z" - }, - "end": { - "$date": "2022-06-12T05:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08de7be0-f790-4487-a1b8-e9fa75a874ed", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-12T05:05:33.000Z" - }, - "end": { - "$date": "2022-06-12T05:44:46.000Z" - }, - "events": [ - { - "uuid": "5eb99ed4-78dd-4d46-89e4-f20eaee9891f", - "start": { - "$date": "2022-06-12T05:05:33.000Z" - }, - "end": { - "$date": "2022-06-12T05:44:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0380d7a4-fb2a-49dc-a933-4d7eaed8ed8a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T05:43:41.000Z" - }, - "end": { - "$date": "2022-06-12T05:46:46.000Z" - }, - "events": [ - { - "uuid": "c0fc0051-2ede-4531-bb51-6c1ab97caf53", - "start": { - "$date": "2022-06-12T05:43:41.000Z" - }, - "end": { - "$date": "2022-06-12T05:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b4243b1d-995e-497b-8655-8895a30248a5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-12T06:13:47.000Z" - }, - "end": { - "$date": "2022-06-12T06:37:22.000Z" - }, - "events": [ - { - "uuid": "2b55ca05-8895-4cec-8929-4ae6bb48855f", - "start": { - "$date": "2022-06-12T06:13:47.000Z" - }, - "end": { - "$date": "2022-06-12T06:37:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c618c63-8604-4039-b409-914576884c8f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T06:18:54.000Z" - }, - "end": { - "$date": "2022-06-12T06:38:18.000Z" - }, - "events": [ - { - "uuid": "d76b9850-73e8-4547-b5d7-7be76935d357", - "start": { - "$date": "2022-06-12T06:18:54.000Z" - }, - "end": { - "$date": "2022-06-12T06:38:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2dc7a752-00eb-42f7-9e3b-70a040054a0c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-12T16:45:16.000Z" - }, - "end": { - "$date": "2022-06-12T16:45:35.000Z" - }, - "events": [ - { - "uuid": "6bde9252-5e95-4a14-a2e9-c7667aad0eb1", - "start": { - "$date": "2022-06-12T16:45:16.000Z" - }, - "end": { - "$date": "2022-06-12T16:45:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d89a5a8-6efc-4765-9f3a-75b672eca658", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T16:06:22.000Z" - }, - "end": { - "$date": "2022-06-12T16:25:12.000Z" - }, - "events": [ - { - "uuid": "479b73cb-5871-4a33-9d2a-b466aaec88ab", - "start": { - "$date": "2022-06-12T16:06:22.000Z" - }, - "end": { - "$date": "2022-06-12T16:25:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "fad8e7b3-2fe9-463c-9da5-14ee9a98425c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T16:39:24.000Z" - }, - "end": { - "$date": "2022-06-12T16:51:23.000Z" - }, - "events": [ - { - "uuid": "7edd01aa-4b63-43e4-8f8d-5bd36ab6cc20", - "start": { - "$date": "2022-06-12T16:39:24.000Z" - }, - "end": { - "$date": "2022-06-12T16:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "673b8a87-585a-4ff9-ae60-26eeb276fcc6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-12T16:45:47.000Z" - }, - "end": { - "$date": "2022-06-12T17:11:19.000Z" - }, - "events": [ - { - "uuid": "e8cce0c2-16d8-4334-b8f7-b6781fe2aea5", - "start": { - "$date": "2022-06-12T16:45:47.000Z" - }, - "end": { - "$date": "2022-06-12T17:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "903015a1-22e7-4c82-83f3-2565f954fd90", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-12T16:52:27.000Z" - }, - "end": { - "$date": "2022-06-12T17:04:37.000Z" - }, - "events": [ - { - "uuid": "9d5e3334-71de-43c6-b2ae-e6d4c5d41ddb", - "start": { - "$date": "2022-06-12T16:52:27.000Z" - }, - "end": { - "$date": "2022-06-12T17:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "64c33614-86fa-4e74-b517-a5306ac1c696", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T16:53:54.000Z" - }, - "end": { - "$date": "2022-06-12T17:18:30.000Z" - }, - "events": [ - { - "uuid": "23fa386f-42c8-46d8-a150-e880f118536b", - "start": { - "$date": "2022-06-12T16:53:54.000Z" - }, - "end": { - "$date": "2022-06-12T17:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "679eb07c-4524-47f1-b4bf-eb0377fec0dd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-12T17:04:53.000Z" - }, - "end": { - "$date": "2022-06-12T21:00:17.000Z" - }, - "events": [ - { - "uuid": "e5cc2cfc-268f-4497-9725-c0f5e2da866f", - "start": { - "$date": "2022-06-12T17:04:53.000Z" - }, - "end": { - "$date": "2022-06-12T21:00:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "6c2fc904-a12a-4bf5-90fb-416c5cbee913", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-12T18:12:23.000Z" - }, - "end": { - "$date": "2022-06-12T19:30:55.000Z" - }, - "events": [ - { - "uuid": "b823f5ce-94ec-4bbe-b354-aea2e11385d5", - "start": { - "$date": "2022-06-12T18:12:23.000Z" - }, - "end": { - "$date": "2022-06-12T19:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02b43ca0-c397-42b4-ba36-10610736b2dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-12T18:27:04.000Z" - }, - "end": { - "$date": "2022-06-12T19:06:40.000Z" - }, - "events": [ - { - "uuid": "767e10ab-f5fa-4a9b-a178-b846a453eea1", - "start": { - "$date": "2022-06-12T18:27:04.000Z" - }, - "end": { - "$date": "2022-06-12T19:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "de15dde9-c953-4a7d-b945-10af9c749275", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-12T19:04:03.000Z" - }, - "end": { - "$date": "2022-06-12T19:48:11.000Z" - }, - "events": [ - { - "uuid": "f1e80b81-6200-4a9b-bf6b-d0d74995d381", - "start": { - "$date": "2022-06-12T19:04:03.000Z" - }, - "end": { - "$date": "2022-06-12T19:48:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8f0544a1-203f-4f65-aa5e-4d58357590d3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-12T20:27:48.000Z" - }, - "end": { - "$date": "2022-06-12T20:41:29.000Z" - }, - "events": [ - { - "uuid": "b2a38e8f-aeb8-49e5-9aab-666c0c72112d", - "start": { - "$date": "2022-06-12T20:27:48.000Z" - }, - "end": { - "$date": "2022-06-12T20:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5c95a43c-8bf8-47a4-9f24-38c2017188f0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-12T20:25:18.000Z" - }, - "end": { - "$date": "2022-06-12T21:16:32.000Z" - }, - "events": [ - { - "uuid": "7d56714e-d517-46f8-a359-1ea0e7b0327c", - "start": { - "$date": "2022-06-12T20:25:18.000Z" - }, - "end": { - "$date": "2022-06-12T21:16:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "638719e0-4266-4e39-affb-7d773b6d950e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-12T20:57:11.000Z" - }, - "end": { - "$date": "2022-06-12T21:54:03.000Z" - }, - "events": [ - { - "uuid": "3db73566-08fc-40b5-bbb2-b0124712b7ca", - "start": { - "$date": "2022-06-12T20:57:11.000Z" - }, - "end": { - "$date": "2022-06-12T21:54:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b0ffcd34-13d4-49b4-8cc8-deba8fe52391", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-13T01:02:34.000Z" - }, - "end": { - "$date": "2022-06-13T01:05:05.000Z" - }, - "events": [ - { - "uuid": "a13dcb2e-bcfd-4349-b0d0-f1cd989908e6", - "start": { - "$date": "2022-06-13T01:02:34.000Z" - }, - "end": { - "$date": "2022-06-13T01:05:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "70642b9a-9e6a-4113-9bdd-246a18c90b4a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-12T22:26:47.000Z" - }, - "end": { - "$date": "2022-06-12T22:33:37.000Z" - }, - "events": [ - { - "uuid": "45cc267d-a3bc-45a8-8b75-192d88973a42", - "start": { - "$date": "2022-06-12T22:26:47.000Z" - }, - "end": { - "$date": "2022-06-12T22:33:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "199c3be2-c897-43ed-b0bf-e21abc526ccc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-12T22:35:03.000Z" - }, - "end": { - "$date": "2022-06-12T22:53:15.000Z" - }, - "events": [ - { - "uuid": "05564fe7-e6cd-4016-a0bd-841ebd426964", - "start": { - "$date": "2022-06-12T22:35:03.000Z" - }, - "end": { - "$date": "2022-06-12T22:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", - "uuid": "3b1899ae-b990-4c49-bedc-56c4b8d38fb6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-12T22:53:35.000Z" - }, - "end": { - "$date": "2022-06-12T23:04:01.000Z" - }, - "events": [ - { - "uuid": "2ad48c88-7286-4528-998b-a5c922dc01bd", - "start": { - "$date": "2022-06-12T22:53:35.000Z" - }, - "end": { - "$date": "2022-06-12T23:04:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "003a834e-0493-4d5d-a092-570fe44f5507", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-13T02:13:27.000Z" - }, - "end": { - "$date": "2022-06-13T02:19:08.000Z" - }, - "events": [ - { - "uuid": "28742c84-83e4-4010-a696-8d8253224d7f", - "start": { - "$date": "2022-06-13T02:13:27.000Z" - }, - "end": { - "$date": "2022-06-13T02:19:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "50581ffc-7f08-4ea5-87b5-67ebbdbefdbe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-13T02:25:24.000Z" - }, - "end": { - "$date": "2022-06-13T02:43:05.000Z" - }, - "events": [ - { - "uuid": "ef1b0e67-b122-4163-8aeb-17f768e3d20f", - "start": { - "$date": "2022-06-13T02:25:24.000Z" - }, - "end": { - "$date": "2022-06-13T02:43:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "61024c38-8d3c-484f-aacc-a3e759bec556", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-13T02:37:25.000Z" - }, - "end": { - "$date": "2022-06-13T03:50:48.000Z" - }, - "events": [ - { - "uuid": "a16e7775-1ac8-47eb-9059-3f717d231dd2", - "start": { - "$date": "2022-06-13T02:37:25.000Z" - }, - "end": { - "$date": "2022-06-13T03:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c3c66a4-5ba2-4924-9c48-aaef15be251d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-13T03:04:43.000Z" - }, - "end": { - "$date": "2022-06-13T04:56:46.000Z" - }, - "events": [ - { - "uuid": "54e8ef46-7466-4435-a72d-7aa5f63416e7", - "start": { - "$date": "2022-06-13T03:04:43.000Z" - }, - "end": { - "$date": "2022-06-13T04:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "275266fd-ddf3-44bf-9060-3c5b149981ee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-13T03:32:24.000Z" - }, - "end": { - "$date": "2022-06-13T03:32:50.000Z" - }, - "events": [ - { - "uuid": "fd953bec-0ead-4fe8-823a-a4e89f0efc78", - "start": { - "$date": "2022-06-13T03:32:24.000Z" - }, - "end": { - "$date": "2022-06-13T03:32:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "42652b02-f6a0-46be-aa89-04587c13cac4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-13T03:28:00.000Z" - }, - "end": { - "$date": "2022-06-13T04:40:18.000Z" - }, - "events": [ - { - "uuid": "e5497ad0-7967-46ac-b219-3986282a7bfe", - "start": { - "$date": "2022-06-13T03:28:00.000Z" - }, - "end": { - "$date": "2022-06-13T04:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "bea1f852-3d13-47be-8ef0-cc41455fa752", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-13T03:33:18.000Z" - }, - "end": { - "$date": "2022-06-13T07:03:44.000Z" - }, - "events": [ - { - "uuid": "f6d93a26-961c-4c13-93fe-545db0954ea7", - "start": { - "$date": "2022-06-13T03:33:18.000Z" - }, - "end": { - "$date": "2022-06-13T07:03:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "419405cc-8f7e-4926-8f0e-f35e524889b6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-13T04:10:45.000Z" - }, - "end": { - "$date": "2022-06-13T04:26:51.000Z" - }, - "events": [ - { - "uuid": "1e8f2d07-7ace-48f2-8406-96facf8f383b", - "start": { - "$date": "2022-06-13T04:10:45.000Z" - }, - "end": { - "$date": "2022-06-13T04:26:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "52553c2f-0c96-491f-81a3-2884b858a810", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-13T04:27:26.000Z" - }, - "end": { - "$date": "2022-06-13T04:51:47.000Z" - }, - "events": [ - { - "uuid": "4fef2998-0911-4e70-89f7-b734c2ee6f0a", - "start": { - "$date": "2022-06-13T04:27:26.000Z" - }, - "end": { - "$date": "2022-06-13T04:51:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "02160113-6f5f-4611-9a3a-7522c79508d3", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-13T04:41:04.000Z" - }, - "end": { - "$date": "2022-06-13T06:56:24.000Z" - }, - "events": [ - { - "uuid": "8e7c9fcc-5a7a-4b5a-9148-0d48a1f906a9", - "start": { - "$date": "2022-06-13T04:41:04.000Z" - }, - "end": { - "$date": "2022-06-13T06:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "5ca5776a-6e8a-4ee3-9ced-dd01ab874825", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-13T04:59:32.000Z" - }, - "end": { - "$date": "2022-06-13T05:43:54.000Z" - }, - "events": [ - { - "uuid": "3cfd8875-9523-454b-9021-fc59670712f4", - "start": { - "$date": "2022-06-13T04:59:32.000Z" - }, - "end": { - "$date": "2022-06-13T05:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3bccc992-b9de-471f-aa9c-6eb33aa366cc", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-13T05:53:18.000Z" - }, - "end": { - "$date": "2022-06-13T11:48:25.000Z" - }, - "events": [ - { - "uuid": "6e3542a2-5e35-402a-9815-f1c5cb1389e8", - "start": { - "$date": "2022-06-13T05:53:18.000Z" - }, - "end": { - "$date": "2022-06-13T11:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7c99e331-22ec-4c69-9611-ae07af37a711", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-13T06:38:02.000Z" - }, - "end": { - "$date": "2022-06-13T06:38:07.000Z" - }, - "events": [ - { - "uuid": "062fb6ce-fa4f-442c-96a6-3c266f7fcfe7", - "start": { - "$date": "2022-06-13T06:38:02.000Z" - }, - "end": { - "$date": "2022-06-13T06:38:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d07aa915-98ee-4a2d-87e7-e4e7f18ba766", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-13T06:30:27.000Z" - }, - "end": { - "$date": "2022-06-13T07:45:04.000Z" - }, - "events": [ - { - "uuid": "0b2528d8-6dd4-4761-a385-64581f69a6c8", - "start": { - "$date": "2022-06-13T06:30:27.000Z" - }, - "end": { - "$date": "2022-06-13T07:45:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "42bd6193-bb81-4304-8ea2-e0ed200c52d1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-13T15:12:05.000Z" - }, - "end": { - "$date": "2022-06-13T16:37:57.000Z" - }, - "events": [ - { - "uuid": "f601a156-40c7-4d7b-8e37-ed3ce0969088", - "start": { - "$date": "2022-06-13T15:12:05.000Z" - }, - "end": { - "$date": "2022-06-13T16:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "e39a7ad4-2322-4c19-9279-0cbcf2ed629c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-13T18:52:25.000Z" - }, - "end": { - "$date": "2022-06-13T19:18:23.000Z" - }, - "events": [ - { - "uuid": "a1841d3c-8035-4a95-b55b-b583182102b1", - "start": { - "$date": "2022-06-13T18:52:25.000Z" - }, - "end": { - "$date": "2022-06-13T19:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f953a2e8-3283-4111-929e-b0139ba0475e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-13T18:57:53.000Z" - }, - "end": { - "$date": "2022-06-13T19:51:18.000Z" - }, - "events": [ - { - "uuid": "d4dd010a-e866-4637-81dd-69aa8147ad71", - "start": { - "$date": "2022-06-13T18:57:53.000Z" - }, - "end": { - "$date": "2022-06-13T19:41:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4938e5d-c180-44a4-8d8d-238ad60f37bf", - "start": { - "$date": "2022-06-13T19:41:53.000Z" - }, - "end": { - "$date": "2022-06-13T19:53:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28f9720f-4122-46ff-a9a3-3e40428aebfc", - "start": { - "$date": "2022-06-13T19:53:53.000Z" - }, - "end": { - "$date": "2022-06-13T19:51:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3bf6f488-d5ad-40e2-b704-ee5ad8d2d0aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-13T20:24:56.000Z" - }, - "end": { - "$date": "2022-06-13T22:35:39.000Z" - }, - "events": [ - { - "uuid": "af154d5d-9439-4cde-b1b6-d7805d313208", - "start": { - "$date": "2022-06-13T20:24:56.000Z" - }, - "end": { - "$date": "2022-06-13T22:35:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "6ace552b-2170-4b6b-becc-38af471dc618", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-13T20:33:20.000Z" - }, - "end": { - "$date": "2022-06-13T23:51:23.000Z" - }, - "events": [ - { - "uuid": "edb33d0b-25d1-49c6-807a-31c4bfdf9d87", - "start": { - "$date": "2022-06-13T20:33:20.000Z" - }, - "end": { - "$date": "2022-06-13T23:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3ee4b3ab-4c10-4096-af01-0b9263780ccf", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-13T21:26:21.000Z" - }, - "end": { - "$date": "2022-06-13T23:14:11.000Z" - }, - "events": [ - { - "uuid": "728d3d95-22e5-440c-9ce2-cf3061509cef", - "start": { - "$date": "2022-06-13T21:26:21.000Z" - }, - "end": { - "$date": "2022-06-13T23:14:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "c3a0651a-1a70-4746-b5bf-421fb2362280", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-13T22:58:35.000Z" - }, - "end": { - "$date": "2022-06-13T22:58:55.000Z" - }, - "events": [ - { - "uuid": "90907e37-a2e2-4401-8207-a7126b868025", - "start": { - "$date": "2022-06-13T22:58:35.000Z" - }, - "end": { - "$date": "2022-06-13T22:58:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "daa49bdd-5bce-40d0-816b-a221c9f53dd1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-13T23:52:38.000Z" - }, - "end": { - "$date": "2022-06-14T07:59:51.000Z" - }, - "events": [ - { - "uuid": "1dead797-aff2-4298-b823-1d4f14e40552", - "start": { - "$date": "2022-06-13T23:52:38.000Z" - }, - "end": { - "$date": "2022-06-14T04:09:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7a74ec3e-19aa-4825-b21f-28b396b1d24b", - "start": { - "$date": "2022-06-14T04:09:38.000Z" - }, - "end": { - "$date": "2022-06-14T04:22:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d969850d-2f35-41c9-9ba7-234219eddc25", - "start": { - "$date": "2022-06-14T04:22:38.000Z" - }, - "end": { - "$date": "2022-06-14T07:59:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "080051f7-881f-40d2-816e-59cd6bcf0a6a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-14T00:53:09.000Z" - }, - "end": { - "$date": "2022-06-14T01:58:48.000Z" - }, - "events": [ - { - "uuid": "46ad6836-136c-43c2-b0ca-db1967ac5645", - "start": { - "$date": "2022-06-14T00:53:09.000Z" - }, - "end": { - "$date": "2022-06-14T01:58:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "02bd01ef-0a5c-4daa-a838-331a2886e04f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-14T00:58:29.000Z" - }, - "end": { - "$date": "2022-06-14T03:26:12.000Z" - }, - "events": [ - { - "uuid": "1e112472-7f96-4d73-b6a6-8f1062a916a9", - "start": { - "$date": "2022-06-14T00:58:29.000Z" - }, - "end": { - "$date": "2022-06-14T03:26:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", - "uuid": "3868b348-7297-47da-a479-3b577cfa0c79", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-14T01:14:15.000Z" - }, - "end": { - "$date": "2022-06-14T03:58:35.000Z" - }, - "events": [ - { - "uuid": "350d520a-c883-485d-8c4a-332f254b7d06", - "start": { - "$date": "2022-06-14T01:14:15.000Z" - }, - "end": { - "$date": "2022-06-14T03:58:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "a42a899f-5b28-429d-ae2e-41dddcb24980", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-06-14T01:19:35.000Z" - }, - "end": { - "$date": "2022-06-14T02:22:50.000Z" - }, - "events": [ - { - "uuid": "8ab10709-c6b8-433f-a147-e42c9be71c14", - "start": { - "$date": "2022-06-14T01:19:35.000Z" - }, - "end": { - "$date": "2022-06-14T02:22:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", - "uuid": "2c412e28-397c-44d7-abef-bd93f3469cd9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-14T01:38:14.000Z" - }, - "end": { - "$date": "2022-06-14T03:59:02.000Z" - }, - "events": [ - { - "uuid": "aa2463da-a099-46ec-87ad-284a6263f8bc", - "start": { - "$date": "2022-06-14T01:38:14.000Z" - }, - "end": { - "$date": "2022-06-14T03:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "998c7bec-34bd-4b8b-8761-26134703f4a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-14T03:10:45.000Z" - }, - "end": { - "$date": "2022-06-14T03:24:43.000Z" - }, - "events": [ - { - "uuid": "cfdffc8b-13fc-437c-b5b0-360cc3a5a6bd", - "start": { - "$date": "2022-06-14T03:10:45.000Z" - }, - "end": { - "$date": "2022-06-14T03:24:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "172743a8-0c65-4e68-a925-e710da17ddd3", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-14T03:12:01.000Z" - }, - "end": { - "$date": "2022-06-14T04:20:42.000Z" - }, - "events": [ - { - "uuid": "6cddc4db-836e-42ac-b352-9dfb658eb571", - "start": { - "$date": "2022-06-14T03:12:01.000Z" - }, - "end": { - "$date": "2022-06-14T04:20:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "f0f9d4c9-78ef-4e1d-95b6-5204b778f471", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-14T03:26:01.000Z" - }, - "end": { - "$date": "2022-06-14T03:27:09.000Z" - }, - "events": [ - { - "uuid": "5084003b-1e4d-4c99-86be-90a9b7490797", - "start": { - "$date": "2022-06-14T03:26:01.000Z" - }, - "end": { - "$date": "2022-06-14T03:27:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f81e410f-4f03-4cfb-8470-c273ce00cfcc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-14T03:27:08.000Z" - }, - "end": { - "$date": "2022-06-14T03:48:05.000Z" - }, - "events": [ - { - "uuid": "c89a89b9-c685-452a-aaca-96f496bd0dae", - "start": { - "$date": "2022-06-14T03:27:08.000Z" - }, - "end": { - "$date": "2022-06-14T03:48:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "7e948f3b-40ef-41a0-b982-46b1207ed28c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-14T03:27:31.000Z" - }, - "end": { - "$date": "2022-06-14T04:23:07.000Z" - }, - "events": [ - { - "uuid": "12afad87-d1bf-4461-92e9-afa6ac8d239a", - "start": { - "$date": "2022-06-14T03:27:31.000Z" - }, - "end": { - "$date": "2022-06-14T04:23:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f3dcc054-3d38-4ae1-9f95-866a3a1a030f", - "uuid": "628e8fe9-9fa7-472b-baa1-308f11cc0f7f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-14T03:38:24.000Z" - }, - "end": { - "$date": "2022-06-14T03:58:24.000Z" - }, - "events": [ - { - "uuid": "a31dfb6b-dbe7-4698-b7da-eda9948cb662", - "start": { - "$date": "2022-06-14T03:38:24.000Z" - }, - "end": { - "$date": "2022-06-14T03:58:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "2b9955ae-3708-4c17-b8b5-a06a69a882cb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-14T03:40:58.000Z" - }, - "end": { - "$date": "2022-06-14T04:26:15.000Z" - }, - "events": [ - { - "uuid": "3b87ef36-9f6d-4069-a638-aefd779f9b87", - "start": { - "$date": "2022-06-14T03:40:58.000Z" - }, - "end": { - "$date": "2022-06-14T04:26:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "78ef7f85-1f57-4a61-904f-4b20f418e558", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-14T03:50:00.000Z" - }, - "end": { - "$date": "2022-06-14T06:45:46.000Z" - }, - "events": [ - { - "uuid": "8af55a26-607f-496b-a5c6-aff0a6864d5e", - "start": { - "$date": "2022-06-14T03:50:00.000Z" - }, - "end": { - "$date": "2022-06-14T06:06:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2052a8b-c8bc-457c-a2de-bf743c227fd4", - "start": { - "$date": "2022-06-14T06:06:00.000Z" - }, - "end": { - "$date": "2022-06-14T06:18:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "df2ff127-b25a-492b-8d11-eae70da26460", - "start": { - "$date": "2022-06-14T06:18:00.000Z" - }, - "end": { - "$date": "2022-06-14T06:45:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "d9224da3-8a0a-4053-acff-da4c80b17a3d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-14T04:21:27.000Z" - }, - "end": { - "$date": "2022-06-14T06:33:12.000Z" - }, - "events": [ - { - "uuid": "f8d04755-4451-47e9-b99a-69ad30afeff6", - "start": { - "$date": "2022-06-14T04:21:27.000Z" - }, - "end": { - "$date": "2022-06-14T06:33:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "6df5584c-247a-4b6d-b390-6284df866cc0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-14T04:24:07.000Z" - }, - "end": { - "$date": "2022-06-14T04:43:58.000Z" - }, - "events": [ - { - "uuid": "377e1a31-5419-49f3-80b6-b4a720e43809", - "start": { - "$date": "2022-06-14T04:24:07.000Z" - }, - "end": { - "$date": "2022-06-14T04:43:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a12b61c8-87b2-4451-841c-0415e012ad5b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-14T06:15:06.000Z" - }, - "end": { - "$date": "2022-06-14T06:44:52.000Z" - }, - "events": [ - { - "uuid": "30dfac12-f50d-4381-8c88-17f8aa612d08", - "start": { - "$date": "2022-06-14T06:15:06.000Z" - }, - "end": { - "$date": "2022-06-14T06:44:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "156f2d37-b261-45b8-9f92-2c0447a52b1b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-14T18:37:00.000Z" - }, - "end": { - "$date": "2022-06-14T20:00:49.000Z" - }, - "events": [ - { - "uuid": "f2cc4d39-ec99-4824-b63b-3c36b75bcc61", - "start": { - "$date": "2022-06-14T18:37:00.000Z" - }, - "end": { - "$date": "2022-06-14T20:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "349107eb-105d-4cbb-9aea-5a315e2298b2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-14T19:22:28.000Z" - }, - "end": { - "$date": "2022-06-14T19:39:46.000Z" - }, - "events": [ - { - "uuid": "466b58de-d92a-479f-a25e-72a9d4d97e3d", - "start": { - "$date": "2022-06-14T19:22:28.000Z" - }, - "end": { - "$date": "2022-06-14T19:39:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "6b5caa06-1547-48f9-a325-36febdf3cfcf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-14T19:00:28.000Z" - }, - "end": { - "$date": "2022-06-14T20:25:25.000Z" - }, - "events": [ - { - "uuid": "c963d014-6ba5-4ee1-99f2-1d8a15ae66c8", - "start": { - "$date": "2022-06-14T19:00:28.000Z" - }, - "end": { - "$date": "2022-06-14T20:25:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "71e4c248-23fc-40ad-8cb7-18752e5de47f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-14T20:48:38.000Z" - }, - "end": { - "$date": "2022-06-14T21:15:05.000Z" - }, - "events": [ - { - "uuid": "e6a97b7e-a868-4ce5-8f3a-8d73e70dd813", - "start": { - "$date": "2022-06-14T20:48:38.000Z" - }, - "end": { - "$date": "2022-06-14T21:15:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "baefdd54-5bcf-402a-b635-7c1a48fe4229", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-14T21:25:16.000Z" - }, - "end": { - "$date": "2022-06-14T23:55:16.000Z" - }, - "events": [ - { - "uuid": "bd74530f-582e-4103-b360-a4c29a59bb19", - "start": { - "$date": "2022-06-14T21:25:16.000Z" - }, - "end": { - "$date": "2022-06-14T23:55:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "27227fb5-aff5-4324-8c7b-fe2d17016f0f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-15T00:06:01.000Z" - }, - "end": { - "$date": "2022-06-15T00:43:36.000Z" - }, - "events": [ - { - "uuid": "f879a77f-30a0-40b3-8bf9-74bbf31c5cc9", - "start": { - "$date": "2022-06-15T00:06:01.000Z" - }, - "end": { - "$date": "2022-06-15T00:43:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "9d3cfd87-a6b6-407e-b721-297a4745c06d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-15T00:03:54.000Z" - }, - "end": { - "$date": "2022-06-15T01:08:59.000Z" - }, - "events": [ - { - "uuid": "847c5477-3061-41a0-b5b5-fff2251f977a", - "start": { - "$date": "2022-06-15T00:03:54.000Z" - }, - "end": { - "$date": "2022-06-15T01:08:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3e42b660-e8bb-4134-add8-b6d8024003bc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T00:38:53.000Z" - }, - "end": { - "$date": "2022-06-15T00:40:28.000Z" - }, - "events": [ - { - "uuid": "7b5ac120-5375-48ea-b1b9-f7b084490725", - "start": { - "$date": "2022-06-15T00:38:53.000Z" - }, - "end": { - "$date": "2022-06-15T00:40:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ce94b2be-57d8-4783-a78e-eb3a3d5db275", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-15T00:39:13.000Z" - }, - "end": { - "$date": "2022-06-15T00:59:30.000Z" - }, - "events": [ - { - "uuid": "a325fab4-e5ee-4935-a053-268550ca03e6", - "start": { - "$date": "2022-06-15T00:39:13.000Z" - }, - "end": { - "$date": "2022-06-15T00:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "9c27056a-02e5-4cc1-a828-4258706d7be3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-15T00:44:06.000Z" - }, - "end": { - "$date": "2022-06-15T01:06:47.000Z" - }, - "events": [ - { - "uuid": "62fcbc23-9f43-469d-b85c-9965773874bd", - "start": { - "$date": "2022-06-15T00:44:06.000Z" - }, - "end": { - "$date": "2022-06-15T01:06:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6d9b0c9a-52d7-41c9-9965-f53c965a40bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-15T03:34:51.000Z" - }, - "end": { - "$date": "2022-06-15T03:34:58.000Z" - }, - "events": [ - { - "uuid": "a6483f5d-a069-44ba-bfe2-c806ddf0f9de", - "start": { - "$date": "2022-06-15T03:34:51.000Z" - }, - "end": { - "$date": "2022-06-15T03:34:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "24f1ec46-6466-4a97-982c-99c8472837f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T01:48:03.000Z" - }, - "end": { - "$date": "2022-06-15T02:15:39.000Z" - }, - "events": [ - { - "uuid": "a0d7ecf4-0723-4128-b26c-f7d56bb0f06a", - "start": { - "$date": "2022-06-15T01:48:03.000Z" - }, - "end": { - "$date": "2022-06-15T02:15:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bd1a2178-9432-4dfe-8e69-821c0ce56d4f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-15T02:01:09.000Z" - }, - "end": { - "$date": "2022-06-15T02:14:30.000Z" - }, - "events": [ - { - "uuid": "36c319a7-af10-4bab-a68a-426450f1a357", - "start": { - "$date": "2022-06-15T02:01:09.000Z" - }, - "end": { - "$date": "2022-06-15T02:14:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "e0fe6b4e-4140-4948-b82f-9238fe6b6c6f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T02:12:46.000Z" - }, - "end": { - "$date": "2022-06-15T02:14:47.000Z" - }, - "events": [ - { - "uuid": "8035392e-5491-44f7-b2d2-99bc8b9136ec", - "start": { - "$date": "2022-06-15T02:12:46.000Z" - }, - "end": { - "$date": "2022-06-15T02:14:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "c1baa161-c14b-4af2-a5d2-1cc8ac845ccc", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T02:15:01.000Z" - }, - "end": { - "$date": "2022-06-15T02:18:23.000Z" - }, - "events": [ - { - "uuid": "613ef9db-eedd-4b9f-bbec-6388ca8d326a", - "start": { - "$date": "2022-06-15T02:15:01.000Z" - }, - "end": { - "$date": "2022-06-15T02:18:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "6024d654-52f9-440b-a955-87ac30479caf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T02:18:46.000Z" - }, - "end": { - "$date": "2022-06-15T03:01:15.000Z" - }, - "events": [ - { - "uuid": "3659937c-0612-4c6d-9fb8-3bfaac712c89", - "start": { - "$date": "2022-06-15T02:18:46.000Z" - }, - "end": { - "$date": "2022-06-15T03:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0f8d6565-3b27-42a6-9069-24c2d0a0560d", - "uuid": "408bfeba-4420-4575-81d4-8235ebd5c878", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T02:29:49.000Z" - }, - "end": { - "$date": "2022-06-15T03:34:55.000Z" - }, - "events": [ - { - "uuid": "ac9869b6-840e-4ab0-87c2-660eabf70031", - "start": { - "$date": "2022-06-15T02:29:49.000Z" - }, - "end": { - "$date": "2022-06-15T03:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "99857cb0-0d93-4cf9-bdac-6c364ee7aefc", - "uuid": "557ace08-3fad-4c52-b8d8-900344d5adf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-15T02:33:13.000Z" - }, - "end": { - "$date": "2022-06-15T03:07:18.000Z" - }, - "events": [ - { - "uuid": "74f70ff5-1021-40b6-9917-cc004afdb40d", - "start": { - "$date": "2022-06-15T02:33:13.000Z" - }, - "end": { - "$date": "2022-06-15T03:07:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "aa882690-bbc5-4909-9f26-545e03f5634f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T03:01:18.000Z" - }, - "end": { - "$date": "2022-06-15T03:03:25.000Z" - }, - "events": [ - { - "uuid": "63620f6a-0e67-4477-8002-b1213d483088", - "start": { - "$date": "2022-06-15T03:01:18.000Z" - }, - "end": { - "$date": "2022-06-15T03:03:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "0c1eab08-55ad-4348-9acf-5a148ef770e0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T03:04:33.000Z" - }, - "end": { - "$date": "2022-06-15T03:05:35.000Z" - }, - "events": [ - { - "uuid": "3c0686b9-8d68-4762-afa3-d31a4c9d2968", - "start": { - "$date": "2022-06-15T03:04:33.000Z" - }, - "end": { - "$date": "2022-06-15T03:05:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "beea58de-7ce4-4bff-b514-52615d680096", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-15T03:05:24.000Z" - }, - "end": { - "$date": "2022-06-15T04:34:39.000Z" - }, - "events": [ - { - "uuid": "335db8c9-39f7-4620-b434-1a14c5a354f9", - "start": { - "$date": "2022-06-15T03:05:24.000Z" - }, - "end": { - "$date": "2022-06-15T04:34:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "f052f4e2-c658-45f1-8a5b-5ce42bfc5dec", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T03:07:42.000Z" - }, - "end": { - "$date": "2022-06-15T03:48:47.000Z" - }, - "events": [ - { - "uuid": "6dd7ce0a-d461-43f8-a950-947b8dc56d05", - "start": { - "$date": "2022-06-15T03:07:42.000Z" - }, - "end": { - "$date": "2022-06-15T03:48:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f86e3b2b-b911-434b-bb5f-2308662c541e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-15T03:55:56.000Z" - }, - "end": { - "$date": "2022-06-15T03:56:22.000Z" - }, - "events": [ - { - "uuid": "54522ee9-7738-476c-a299-bd0212a18b47", - "start": { - "$date": "2022-06-15T03:55:56.000Z" - }, - "end": { - "$date": "2022-06-15T03:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3196f7cf-d671-4eed-b0d8-df76238daf3d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-15T03:51:38.000Z" - }, - "end": { - "$date": "2022-06-15T04:03:35.000Z" - }, - "events": [ - { - "uuid": "7cec801d-f9a2-4112-8e54-0a1cd88d417b", - "start": { - "$date": "2022-06-15T03:51:38.000Z" - }, - "end": { - "$date": "2022-06-15T04:03:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "20e98ff8-ea52-41a0-a5c2-03823ba1628c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-15T04:19:11.000Z" - }, - "end": { - "$date": "2022-06-15T05:49:21.000Z" - }, - "events": [ - { - "uuid": "5a8bc5b7-c307-4d54-a93c-9f0579108df3", - "start": { - "$date": "2022-06-15T04:19:11.000Z" - }, - "end": { - "$date": "2022-06-15T05:49:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "c80d6162-45f7-4db4-9dac-3dcb01033cd5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-15T04:20:51.000Z" - }, - "end": { - "$date": "2022-06-15T05:05:06.000Z" - }, - "events": [ - { - "uuid": "e42f7053-eabc-44e8-98c3-a44f8f67819f", - "start": { - "$date": "2022-06-15T04:20:51.000Z" - }, - "end": { - "$date": "2022-06-15T05:05:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "575a85bb-2739-4f0a-b8d4-68cac1dcc05f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-15T04:35:03.000Z" - }, - "end": { - "$date": "2022-06-15T06:05:41.000Z" - }, - "events": [ - { - "uuid": "572be37a-5d98-4ddb-b57b-52852fa335e0", - "start": { - "$date": "2022-06-15T04:35:03.000Z" - }, - "end": { - "$date": "2022-06-15T06:05:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "e4cde190-6618-437f-9d6f-9406c31728df", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-15T04:35:45.000Z" - }, - "end": { - "$date": "2022-06-15T04:45:01.000Z" - }, - "events": [ - { - "uuid": "9d1c06a5-22ec-4c34-9be0-917c26a8f461", - "start": { - "$date": "2022-06-15T04:35:45.000Z" - }, - "end": { - "$date": "2022-06-15T04:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7c0bff80-6b01-42b3-8df5-e97585336253", - "uuid": "cbf6d1a8-36d3-4c93-85fd-a2dd52e4e169", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T04:42:56.000Z" - }, - "end": { - "$date": "2022-06-15T04:50:57.000Z" - }, - "events": [ - { - "uuid": "3d27accf-bc6c-4355-a2c4-2e6579329122", - "start": { - "$date": "2022-06-15T04:42:56.000Z" - }, - "end": { - "$date": "2022-06-15T04:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5d5923b8-c1a0-4838-99ca-3b03b04038e1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-15T04:58:04.000Z" - }, - "end": { - "$date": "2022-06-15T05:50:57.000Z" - }, - "events": [ - { - "uuid": "85975d6a-f78a-407b-b47c-613b54785bb1", - "start": { - "$date": "2022-06-15T04:58:04.000Z" - }, - "end": { - "$date": "2022-06-15T05:50:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "97072ff7-3fc0-4c9b-a4e9-a8cca2e0ea66", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-15T05:01:45.000Z" - }, - "end": { - "$date": "2022-06-15T05:57:38.000Z" - }, - "events": [ - { - "uuid": "e3966092-d2f0-4185-9e4a-d552f289e773", - "start": { - "$date": "2022-06-15T05:01:45.000Z" - }, - "end": { - "$date": "2022-06-15T05:57:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b60e5dde-5496-48d3-b211-85a8e7fffd0d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-15T05:02:24.000Z" - }, - "end": { - "$date": "2022-06-15T07:17:07.000Z" - }, - "events": [ - { - "uuid": "20ee5469-74e1-4c6e-8171-cd29286eaa15", - "start": { - "$date": "2022-06-15T05:02:24.000Z" - }, - "end": { - "$date": "2022-06-15T07:17:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "d4e4b483-ae6a-4976-a19f-f52d8c451c19", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-15T05:05:36.000Z" - }, - "end": { - "$date": "2022-06-15T05:52:33.000Z" - }, - "events": [ - { - "uuid": "aff206b0-89b0-49b5-b470-978be25b5163", - "start": { - "$date": "2022-06-15T05:05:36.000Z" - }, - "end": { - "$date": "2022-06-15T05:52:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "71305bce-9625-4250-8ec8-c3d51ff759f7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-15T05:07:22.000Z" - }, - "end": { - "$date": "2022-06-15T05:14:42.000Z" - }, - "events": [ - { - "uuid": "eda4cb4c-d5b1-41f6-b87a-6998491c92fa", - "start": { - "$date": "2022-06-15T05:07:22.000Z" - }, - "end": { - "$date": "2022-06-15T05:14:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "6c11d307-d620-4cff-b3e3-7b351fb7750a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T05:24:39.000Z" - }, - "end": { - "$date": "2022-06-15T06:00:05.000Z" - }, - "events": [ - { - "uuid": "80bff82f-e65a-4254-9ae2-8d5e4f8ce705", - "start": { - "$date": "2022-06-15T05:24:39.000Z" - }, - "end": { - "$date": "2022-06-15T06:00:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "dae7bcb1-377e-45c0-979b-944d77a9c6e9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-15T05:24:58.000Z" - }, - "end": { - "$date": "2022-06-15T05:59:40.000Z" - }, - "events": [ - { - "uuid": "b448f2e6-aece-4dd8-a266-9408b7f46206", - "start": { - "$date": "2022-06-15T05:24:58.000Z" - }, - "end": { - "$date": "2022-06-15T05:59:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7414dafd-00f5-4317-8b63-997015b0747a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-15T05:51:17.000Z" - }, - "end": { - "$date": "2022-06-15T07:17:16.000Z" - }, - "events": [ - { - "uuid": "91df715a-0760-4486-90d5-2a08740bc4f5", - "start": { - "$date": "2022-06-15T05:51:17.000Z" - }, - "end": { - "$date": "2022-06-15T07:17:16.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3a3b2bb3-363b-413e-a259-59924a7afe2a", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-15T05:55:47.000Z" - }, - "end": { - "$date": "2022-06-15T06:51:59.000Z" - }, - "events": [ - { - "uuid": "402bbae1-3612-45bf-b90c-8497b1abb43f", - "start": { - "$date": "2022-06-15T05:55:47.000Z" - }, - "end": { - "$date": "2022-06-15T06:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "b36dd8e6-d385-42d9-8a1b-0b81707b4443", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-15T12:59:07.000Z" - }, - "end": { - "$date": "2022-06-15T13:10:57.000Z" - }, - "events": [ - { - "uuid": "af30c66f-835b-4218-a2dc-833af35c770a", - "start": { - "$date": "2022-06-15T12:59:07.000Z" - }, - "end": { - "$date": "2022-06-15T13:10:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9bad8c37-310b-4867-a4c6-e91c5e8fc79d", - "uuid": "ea8e76f3-9cb9-42f2-ab59-5bf79dc40f79", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-15T13:19:38.000Z" - }, - "end": { - "$date": "2022-06-15T13:24:03.000Z" - }, - "events": [ - { - "uuid": "c9a22b28-e6ff-491c-92e8-ffb5b46d4b42", - "start": { - "$date": "2022-06-15T13:19:38.000Z" - }, - "end": { - "$date": "2022-06-15T13:24:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2cd75f09-f296-4b04-8470-ab7147118132", - "uuid": "a084771d-555d-4237-be6f-4c1d386ecdd2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T15:00:19.000Z" - }, - "end": { - "$date": "2022-06-15T15:02:29.000Z" - }, - "events": [ - { - "uuid": "422e1005-5f97-4d97-a119-df2afd3a0037", - "start": { - "$date": "2022-06-15T15:00:19.000Z" - }, - "end": { - "$date": "2022-06-15T15:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "eb9ed561-6df8-4d1d-b3a9-d9296b5bf56b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-15T16:04:38.000Z" - }, - "end": { - "$date": "2022-06-15T16:55:08.000Z" - }, - "events": [ - { - "uuid": "3cbbc368-bdc1-4f0b-992f-93a7dd6f871f", - "start": { - "$date": "2022-06-15T16:04:38.000Z" - }, - "end": { - "$date": "2022-06-15T16:55:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "1073e0dc-d4ef-4823-940c-38520af2566b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-15T16:34:10.000Z" - }, - "end": { - "$date": "2022-06-15T20:42:37.000Z" - }, - "events": [ - { - "uuid": "a9a8adf0-413b-40fb-a9ea-d345c62f0bf4", - "start": { - "$date": "2022-06-15T16:34:10.000Z" - }, - "end": { - "$date": "2022-06-15T18:59:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1c9b3817-5aa7-4b2c-8e58-a60bc7627f4c", - "start": { - "$date": "2022-06-15T18:59:10.000Z" - }, - "end": { - "$date": "2022-06-15T19:13:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2f4f2c5b-9d10-4766-b25a-830b5ea21d13", - "start": { - "$date": "2022-06-15T19:13:10.000Z" - }, - "end": { - "$date": "2022-06-15T20:23:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e2ccabcb-bf25-4ebf-8d0d-413c13ca9af9", - "start": { - "$date": "2022-06-15T20:23:10.000Z" - }, - "end": { - "$date": "2022-06-15T20:42:37.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "0f8d6565-3b27-42a6-9069-24c2d0a0560d", - "uuid": "769a771f-a502-430c-9afd-e42766ae9eb0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T20:01:31.000Z" - }, - "end": { - "$date": "2022-06-15T20:14:06.000Z" - }, - "events": [ - { - "uuid": "3df368b9-0dec-4aa8-a0d1-a048e4d2a58f", - "start": { - "$date": "2022-06-15T20:01:31.000Z" - }, - "end": { - "$date": "2022-06-15T20:14:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d885b882-8c1b-4748-b32b-3fa1c19f4fe8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-15T20:09:16.000Z" - }, - "end": { - "$date": "2022-06-15T20:44:23.000Z" - }, - "events": [ - { - "uuid": "2c36dfa7-fb22-49ec-9eeb-2659372fc813", - "start": { - "$date": "2022-06-15T20:09:16.000Z" - }, - "end": { - "$date": "2022-06-15T20:44:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "39781da9-0e86-430d-9982-01d38c987e05", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-16T00:45:46.000Z" - }, - "end": { - "$date": "2022-06-16T00:45:50.000Z" - }, - "events": [ - { - "uuid": "bc051834-bc2f-4bfb-bed5-9310e5f7f4ae", - "start": { - "$date": "2022-06-16T00:45:46.000Z" - }, - "end": { - "$date": "2022-06-16T00:45:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "043cdd15-2ed1-4638-9405-848e300e507a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T20:32:32.000Z" - }, - "end": { - "$date": "2022-06-15T22:17:50.000Z" - }, - "events": [ - { - "uuid": "d3319f6f-a355-40b8-b8f7-adf2230cffa3", - "start": { - "$date": "2022-06-15T20:32:32.000Z" - }, - "end": { - "$date": "2022-06-15T22:17:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c276baee-09fd-4dd8-95dd-cbddaaf9bc8f", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-15T20:47:35.000Z" - }, - "end": { - "$date": "2022-06-15T21:47:49.000Z" - }, - "events": [ - { - "uuid": "c78edbc1-37ce-41ff-a1df-c39126ec0dbd", - "start": { - "$date": "2022-06-15T20:47:35.000Z" - }, - "end": { - "$date": "2022-06-15T21:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c9e14fba-4710-4b33-ad49-9f6c7b696737", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-15T21:50:13.000Z" - }, - "end": { - "$date": "2022-06-15T22:24:01.000Z" - }, - "events": [ - { - "uuid": "81b68bdf-a19a-48fc-8c48-9b1421e37842", - "start": { - "$date": "2022-06-15T21:50:13.000Z" - }, - "end": { - "$date": "2022-06-15T22:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "4f07ef7e-ea72-447b-8135-0650e1b70c37", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-15T23:03:02.000Z" - }, - "end": { - "$date": "2022-06-16T00:33:39.000Z" - }, - "events": [ - { - "uuid": "457e4326-10ab-4d0a-8b89-c4fa852c6302", - "start": { - "$date": "2022-06-15T23:03:02.000Z" - }, - "end": { - "$date": "2022-06-16T00:33:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "050866e3-cb1c-4174-8fa9-fe8ab9e34003", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-15T23:26:19.000Z" - }, - "end": { - "$date": "2022-06-15T23:55:55.000Z" - }, - "events": [ - { - "uuid": "6031530c-6387-4cb7-8a29-c456c56719df", - "start": { - "$date": "2022-06-15T23:26:19.000Z" - }, - "end": { - "$date": "2022-06-15T23:55:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "79bad863-006b-43a0-b703-35ca5e90e5f7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-15T23:46:37.000Z" - }, - "end": { - "$date": "2022-06-16T00:03:39.000Z" - }, - "events": [ - { - "uuid": "d6448d57-03e7-459b-9363-a4da349cff09", - "start": { - "$date": "2022-06-15T23:46:37.000Z" - }, - "end": { - "$date": "2022-06-16T00:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0e76b406-c0d5-4876-b041-054d1cc368e8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-16T00:51:06.000Z" - }, - "end": { - "$date": "2022-06-16T01:17:22.000Z" - }, - "events": [ - { - "uuid": "2df0f192-e5b4-4205-8f46-53cbbfecacbb", - "start": { - "$date": "2022-06-16T00:51:06.000Z" - }, - "end": { - "$date": "2022-06-16T01:17:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "86107fdd-e691-413a-92ad-f4b7e05e84a9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-16T01:07:16.000Z" - }, - "end": { - "$date": "2022-06-16T06:31:37.000Z" - }, - "events": [ - { - "uuid": "a31945fe-fbe7-4a1c-a245-410e316800ef", - "start": { - "$date": "2022-06-16T01:07:16.000Z" - }, - "end": { - "$date": "2022-06-16T01:54:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "69517aad-9fd9-4cf4-b524-5d43fb5b60de", - "start": { - "$date": "2022-06-16T01:54:16.000Z" - }, - "end": { - "$date": "2022-06-16T02:06:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "eccd5daf-da0b-495d-aa59-8de6bee82ac2", - "start": { - "$date": "2022-06-16T02:06:16.000Z" - }, - "end": { - "$date": "2022-06-16T02:16:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ef9ce93c-e31d-4599-920b-d93614769a8d", - "start": { - "$date": "2022-06-16T02:16:16.000Z" - }, - "end": { - "$date": "2022-06-16T02:18:16.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "be2d3515-d0c1-4109-aae0-23201620257b", - "start": { - "$date": "2022-06-16T02:18:16.000Z" - }, - "end": { - "$date": "2022-06-16T06:31:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c00e60f3-e483-456a-afae-18852b41b344", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T01:18:57.000Z" - }, - "end": { - "$date": "2022-06-16T01:19:57.000Z" - }, - "events": [ - { - "uuid": "3a739c5d-97ca-46c4-93c3-5d58bb3a6d87", - "start": { - "$date": "2022-06-16T01:18:57.000Z" - }, - "end": { - "$date": "2022-06-16T01:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "0e35d01b-57cc-4ad7-8248-d1958d563a61", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T01:21:18.000Z" - }, - "end": { - "$date": "2022-06-16T01:24:38.000Z" - }, - "events": [ - { - "uuid": "24c6b1a7-590a-470b-9c14-55b0f2ce740d", - "start": { - "$date": "2022-06-16T01:21:18.000Z" - }, - "end": { - "$date": "2022-06-16T01:24:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "0a275d7b-5aa5-490a-8357-69e7f06f4227", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T01:47:30.000Z" - }, - "end": { - "$date": "2022-06-16T02:45:34.000Z" - }, - "events": [ - { - "uuid": "b62d0b6d-84b5-435a-aa52-fe0e5f5bbbe5", - "start": { - "$date": "2022-06-16T01:47:30.000Z" - }, - "end": { - "$date": "2022-06-16T02:45:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "411cdbbd-1c0e-4901-b01d-00ef56077962", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-16T01:52:06.000Z" - }, - "end": { - "$date": "2022-06-16T02:59:12.000Z" - }, - "events": [ - { - "uuid": "9d5bd731-a538-4fcd-9dfc-31ec40f4da47", - "start": { - "$date": "2022-06-16T01:52:06.000Z" - }, - "end": { - "$date": "2022-06-16T02:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "be224a78-92dd-4a0a-a271-649a8cf317b5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-16T02:41:28.000Z" - }, - "end": { - "$date": "2022-06-16T02:50:58.000Z" - }, - "events": [ - { - "uuid": "e73a5220-690a-4615-981f-e207de2f44e8", - "start": { - "$date": "2022-06-16T02:41:28.000Z" - }, - "end": { - "$date": "2022-06-16T02:50:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "3b613243-90e0-4c8f-9ac6-d8e5f4fcaede", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-16T04:52:58.000Z" - }, - "end": { - "$date": "2022-06-16T05:05:54.000Z" - }, - "events": [ - { - "uuid": "95e0ef3d-7645-46ae-be90-37fccd7acc5e", - "start": { - "$date": "2022-06-16T04:52:58.000Z" - }, - "end": { - "$date": "2022-06-16T05:05:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a95c77d8-dfe8-4b3b-9e32-af1459d5b140", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-16T03:08:54.000Z" - }, - "end": { - "$date": "2022-06-16T04:22:35.000Z" - }, - "events": [ - { - "uuid": "c51b3d40-b413-4a05-b0b2-547453085a88", - "start": { - "$date": "2022-06-16T03:08:54.000Z" - }, - "end": { - "$date": "2022-06-16T04:22:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "16a21c00-0fbe-484e-9c42-ec5a950c011e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T03:11:57.000Z" - }, - "end": { - "$date": "2022-06-16T03:39:44.000Z" - }, - "events": [ - { - "uuid": "5f853ebd-b142-4840-99a3-3256eab8237e", - "start": { - "$date": "2022-06-16T03:11:57.000Z" - }, - "end": { - "$date": "2022-06-16T03:39:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "5c8972cd-2462-4f04-be88-ba6f23b818d8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-16T01:57:02.000Z" - }, - "end": { - "$date": "2022-06-16T05:39:34.000Z" - }, - "events": [ - { - "uuid": "8237900d-9ee1-4cfe-946b-c3957ad5038f", - "start": { - "$date": "2022-06-16T01:57:02.000Z" - }, - "end": { - "$date": "2022-06-16T05:39:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b322e8b4-e614-4c1b-96dd-eeb3c4e6c5ce", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T03:55:26.000Z" - }, - "end": { - "$date": "2022-06-16T04:44:01.000Z" - }, - "events": [ - { - "uuid": "b61ec14b-2c9a-4411-a292-46d3167a171e", - "start": { - "$date": "2022-06-16T03:55:26.000Z" - }, - "end": { - "$date": "2022-06-16T04:44:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "e1c09b51-2b77-4067-a245-a92473f96eef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-16T04:48:38.000Z" - }, - "end": { - "$date": "2022-06-16T04:53:08.000Z" - }, - "events": [ - { - "uuid": "765186af-5f97-47c6-ba5c-a9a5665c827b", - "start": { - "$date": "2022-06-16T04:48:38.000Z" - }, - "end": { - "$date": "2022-06-16T04:53:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "6545cfbe-1e03-41d2-91c7-ecabc39a101c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-16T05:06:10.000Z" - }, - "end": { - "$date": "2022-06-16T05:14:20.000Z" - }, - "events": [ - { - "uuid": "02ff41db-828b-4c7e-afcc-d8abbda78590", - "start": { - "$date": "2022-06-16T05:06:10.000Z" - }, - "end": { - "$date": "2022-06-16T05:14:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "95b00366-b054-4233-98bb-6dc1587c653f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-16T05:18:09.000Z" - }, - "end": { - "$date": "2022-06-16T05:36:56.000Z" - }, - "events": [ - { - "uuid": "8a4b0d4d-e2e5-4777-b913-c21263fd2cc9", - "start": { - "$date": "2022-06-16T05:18:09.000Z" - }, - "end": { - "$date": "2022-06-16T05:36:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3d988a18-e335-419b-8e3d-20bb0401de55", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T12:55:41.000Z" - }, - "end": { - "$date": "2022-06-16T13:01:37.000Z" - }, - "events": [ - { - "uuid": "5670df72-6ad5-4209-b51c-a800e1b8490b", - "start": { - "$date": "2022-06-16T12:55:41.000Z" - }, - "end": { - "$date": "2022-06-16T13:01:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "74371e59-bb85-4fab-8a83-70400605c595", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-16T13:03:12.000Z" - }, - "end": { - "$date": "2022-06-16T13:20:53.000Z" - }, - "events": [ - { - "uuid": "c1526bff-e8c5-4c08-b427-8ae904284b55", - "start": { - "$date": "2022-06-16T13:03:12.000Z" - }, - "end": { - "$date": "2022-06-16T13:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "63e0c218-69bc-4563-abac-3afe481586fc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-16T17:04:30.000Z" - }, - "end": { - "$date": "2022-06-16T17:25:21.000Z" - }, - "events": [ - { - "uuid": "e8241b27-c742-4e1a-a8c9-1b28df0e15c5", - "start": { - "$date": "2022-06-16T17:04:30.000Z" - }, - "end": { - "$date": "2022-06-16T17:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "90e3d822-637e-44f4-844d-4045d06c0e6b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-16T17:25:46.000Z" - }, - "end": { - "$date": "2022-06-16T17:30:01.000Z" - }, - "events": [ - { - "uuid": "9a4f1149-27cd-4766-b23d-c57d378d3b0f", - "start": { - "$date": "2022-06-16T17:25:46.000Z" - }, - "end": { - "$date": "2022-06-16T17:30:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dc64c7fa-7887-4403-994e-bc5c2ec60574", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-16T17:30:12.000Z" - }, - "end": { - "$date": "2022-06-16T18:39:58.000Z" - }, - "events": [ - { - "uuid": "f289cfe1-4643-4233-b014-6a2f16f19bba", - "start": { - "$date": "2022-06-16T17:30:12.000Z" - }, - "end": { - "$date": "2022-06-16T18:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "8e017bfe-5a01-4d01-8a85-03a901f39cc3", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-16T20:28:43.000Z" - }, - "end": { - "$date": "2022-06-16T20:51:17.000Z" - }, - "events": [ - { - "uuid": "da3f627d-7c87-41be-baf7-2510d3e6b14d", - "start": { - "$date": "2022-06-16T20:28:43.000Z" - }, - "end": { - "$date": "2022-06-16T20:51:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a08e41ad-c990-4899-ab73-a9d184be4d6d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-16T20:33:43.000Z" - }, - "end": { - "$date": "2022-06-16T20:58:52.000Z" - }, - "events": [ - { - "uuid": "4890029b-e5d0-4fda-8ee6-570d565b4e56", - "start": { - "$date": "2022-06-16T20:33:43.000Z" - }, - "end": { - "$date": "2022-06-16T20:58:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e584e07e-a06b-489b-bc39-7178208ac1ad", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-16T20:52:30.000Z" - }, - "end": { - "$date": "2022-06-16T21:40:17.000Z" - }, - "events": [ - { - "uuid": "c257d171-6695-4f34-9afa-3363a4a36091", - "start": { - "$date": "2022-06-16T20:52:30.000Z" - }, - "end": { - "$date": "2022-06-16T21:40:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "843fef3d-ee8e-45d2-857e-2da3f03274f9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-16T21:06:00.000Z" - }, - "end": { - "$date": "2022-06-16T21:51:23.000Z" - }, - "events": [ - { - "uuid": "51d9d5c0-10af-4fd0-9b46-737b597ab0a3", - "start": { - "$date": "2022-06-16T21:06:00.000Z" - }, - "end": { - "$date": "2022-06-16T21:51:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08144d17-a37c-4011-99b7-80a5afaf3762", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-16T21:58:31.000Z" - }, - "end": { - "$date": "2022-06-16T22:34:40.000Z" - }, - "events": [ - { - "uuid": "9c58b975-e110-4fe5-923b-c7306dc558e1", - "start": { - "$date": "2022-06-16T21:58:31.000Z" - }, - "end": { - "$date": "2022-06-16T22:34:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "82d5457e-91f9-4592-95ac-e9ea16fd7c53", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-16T22:57:37.000Z" - }, - "end": { - "$date": "2022-06-16T23:58:59.000Z" - }, - "events": [ - { - "uuid": "365fd404-cfc3-4719-b4db-d87c4d2a78c2", - "start": { - "$date": "2022-06-16T22:57:37.000Z" - }, - "end": { - "$date": "2022-06-16T23:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4b77caf3-c1d3-4de5-95e6-64ae9ef9ecd6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-16T23:36:15.000Z" - }, - "end": { - "$date": "2022-06-17T00:31:21.000Z" - }, - "events": [ - { - "uuid": "9af7a2f1-778e-4239-aa2b-6524d6ab487c", - "start": { - "$date": "2022-06-16T23:36:15.000Z" - }, - "end": { - "$date": "2022-06-17T00:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2e90c3b-2bf0-4fb0-a5f8-2ab5a2ad2367", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-17T00:31:21.000Z" - }, - "end": { - "$date": "2022-06-17T00:32:27.000Z" - }, - "events": [ - { - "uuid": "0aaf26c9-91fe-4e9d-8801-4a22750789ef", - "start": { - "$date": "2022-06-17T00:31:21.000Z" - }, - "end": { - "$date": "2022-06-17T00:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bd78bf25-0368-4005-9520-7892a5ea7b8a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T00:41:43.000Z" - }, - "end": { - "$date": "2022-06-17T01:23:36.000Z" - }, - "events": [ - { - "uuid": "c4241b9b-5f83-41fa-9a71-4cbabd1856d6", - "start": { - "$date": "2022-06-17T00:41:43.000Z" - }, - "end": { - "$date": "2022-06-17T01:23:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5c70a0b6-5f4d-4103-ae13-a78bed580028", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-17T01:00:58.000Z" - }, - "end": { - "$date": "2022-06-17T01:01:59.000Z" - }, - "events": [ - { - "uuid": "9270d6c1-e2ef-4cbc-a3a7-852f49003da2", - "start": { - "$date": "2022-06-17T01:00:58.000Z" - }, - "end": { - "$date": "2022-06-17T01:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f732872d-a884-4d5b-9ce1-5eb18cfe80dd", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T01:29:04.000Z" - }, - "end": { - "$date": "2022-06-17T05:07:45.000Z" - }, - "events": [ - { - "uuid": "636d4f10-eb9b-4e32-87f2-51b839780d58", - "start": { - "$date": "2022-06-17T01:29:04.000Z" - }, - "end": { - "$date": "2022-06-17T05:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6ed209f-1382-4892-b18b-929340506a75", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-17T01:43:11.000Z" - }, - "end": { - "$date": "2022-06-17T03:11:28.000Z" - }, - "events": [ - { - "uuid": "83507aad-ccca-432d-8ca4-fcdefe9db58c", - "start": { - "$date": "2022-06-17T01:43:11.000Z" - }, - "end": { - "$date": "2022-06-17T03:11:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6b339348-fdaa-4c27-bcdb-ed2c00dac9fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-17T01:42:55.000Z" - }, - "end": { - "$date": "2022-06-17T02:23:19.000Z" - }, - "events": [ - { - "uuid": "88df317c-ec96-4526-9e9f-41858eb8c3db", - "start": { - "$date": "2022-06-17T01:42:55.000Z" - }, - "end": { - "$date": "2022-06-17T02:23:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "159c7293-9dbe-485b-889f-43590a834795", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-17T02:23:05.000Z" - }, - "end": { - "$date": "2022-06-17T05:08:10.000Z" - }, - "events": [ - { - "uuid": "fc0caff9-e03d-4115-b940-faec9f30c4cd", - "start": { - "$date": "2022-06-17T02:23:05.000Z" - }, - "end": { - "$date": "2022-06-17T05:08:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "30820674-c017-42e3-a3c8-651f3e25fbaa", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-17T02:26:36.000Z" - }, - "end": { - "$date": "2022-06-17T07:33:23.000Z" - }, - "events": [ - { - "uuid": "b5eae50f-4307-4ccc-bc2a-f6a966ed7eaf", - "start": { - "$date": "2022-06-17T02:26:36.000Z" - }, - "end": { - "$date": "2022-06-17T07:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8a811b85-39bf-4906-a6cd-6339bdbd6d97", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-17T02:29:59.000Z" - }, - "end": { - "$date": "2022-06-17T04:31:18.000Z" - }, - "events": [ - { - "uuid": "f390adf2-e1a7-40b5-9519-dd77058bc357", - "start": { - "$date": "2022-06-17T02:29:59.000Z" - }, - "end": { - "$date": "2022-06-17T04:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6923092b-6423-4e4c-a281-55e433bccdcb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-17T02:31:24.000Z" - }, - "end": { - "$date": "2022-06-17T05:08:06.000Z" - }, - "events": [ - { - "uuid": "5377226e-eacf-4a43-aed6-cecc192009b8", - "start": { - "$date": "2022-06-17T02:31:24.000Z" - }, - "end": { - "$date": "2022-06-17T05:08:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ddafe998-95cb-463e-b4cd-e6267b24235c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-17T02:40:27.000Z" - }, - "end": { - "$date": "2022-06-17T02:44:22.000Z" - }, - "events": [ - { - "uuid": "29aa4613-6d29-4f02-bc0d-398cdfd0cf23", - "start": { - "$date": "2022-06-17T02:40:27.000Z" - }, - "end": { - "$date": "2022-06-17T02:44:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "a414ab87-47d6-4fb8-827e-73a7a0785aea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-17T02:54:26.000Z" - }, - "end": { - "$date": "2022-06-17T03:07:34.000Z" - }, - "events": [ - { - "uuid": "95e9a078-ded2-49ae-a863-62806a4ef027", - "start": { - "$date": "2022-06-17T02:54:26.000Z" - }, - "end": { - "$date": "2022-06-17T03:07:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "104872f9-ecfd-4e6b-b9de-1217ab9a6d2e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-17T03:07:04.000Z" - }, - "end": { - "$date": "2022-06-17T07:14:05.000Z" - }, - "events": [ - { - "uuid": "9fc6557f-a5f0-4a9b-92cd-a13deac06edf", - "start": { - "$date": "2022-06-17T03:07:04.000Z" - }, - "end": { - "$date": "2022-06-17T07:14:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ee2b887f-9ab9-4093-87a1-ffbfb361a50c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-17T03:08:39.000Z" - }, - "end": { - "$date": "2022-06-17T04:13:17.000Z" - }, - "events": [ - { - "uuid": "f9c7ca94-b4e0-4e8f-906d-52bc2ec0e199", - "start": { - "$date": "2022-06-17T03:08:39.000Z" - }, - "end": { - "$date": "2022-06-17T04:13:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6f2081aa-755b-47e8-8aa3-a94c556117bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-17T03:11:42.000Z" - }, - "end": { - "$date": "2022-06-17T04:13:14.000Z" - }, - "events": [ - { - "uuid": "3513fcaa-aa31-4884-83cb-11c1861346c1", - "start": { - "$date": "2022-06-17T03:11:42.000Z" - }, - "end": { - "$date": "2022-06-17T04:13:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "16a651f9-1581-4579-a81b-40cc2e53b5f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-17T03:32:00.000Z" - }, - "end": { - "$date": "2022-06-17T04:29:21.000Z" - }, - "events": [ - { - "uuid": "fc9aed24-84b8-4060-8880-5245900fd7e7", - "start": { - "$date": "2022-06-17T03:32:00.000Z" - }, - "end": { - "$date": "2022-06-17T04:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "d998d1f9-c5bf-4228-8e94-95d834f4c004", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-17T03:49:55.000Z" - }, - "end": { - "$date": "2022-06-17T06:06:03.000Z" - }, - "events": [ - { - "uuid": "e605c8a2-f70e-4c17-bdbb-5b24dfcf1c79", - "start": { - "$date": "2022-06-17T03:49:55.000Z" - }, - "end": { - "$date": "2022-06-17T06:06:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "6e76d746-fd73-445f-924f-89eb1b617b3d", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-17T04:02:57.000Z" - }, - "end": { - "$date": "2022-06-17T07:52:32.000Z" - }, - "events": [ - { - "uuid": "fe231f7c-6652-4fad-a6cb-c441ce459f81", - "start": { - "$date": "2022-06-17T04:02:57.000Z" - }, - "end": { - "$date": "2022-06-17T07:52:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2d114f0b-6809-4571-86b1-951b512d1c68", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-17T04:14:14.000Z" - }, - "end": { - "$date": "2022-06-17T06:15:10.000Z" - }, - "events": [ - { - "uuid": "a3c49728-aa77-40f1-b2b5-c5bdf9520970", - "start": { - "$date": "2022-06-17T04:14:14.000Z" - }, - "end": { - "$date": "2022-06-17T06:15:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "640927d7-dcbb-4fff-981e-62e3fb548421", - "uuid": "ec40ae6d-7671-4290-803b-f471df74fd39", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-17T04:45:08.000Z" - }, - "end": { - "$date": "2022-06-17T06:01:09.000Z" - }, - "events": [ - { - "uuid": "964d0f22-d9cb-44fb-bee5-346b2c2dee6f", - "start": { - "$date": "2022-06-17T04:45:08.000Z" - }, - "end": { - "$date": "2022-06-17T06:01:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "397904e1-7738-446d-9906-80f81b0ed5ba", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T05:23:21.000Z" - }, - "end": { - "$date": "2022-06-17T05:33:02.000Z" - }, - "events": [ - { - "uuid": "cd82c783-7db7-4d97-b98a-281eebf31933", - "start": { - "$date": "2022-06-17T05:23:21.000Z" - }, - "end": { - "$date": "2022-06-17T05:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "74c9cb26-105a-42b9-909c-71146a212c6f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T05:33:47.000Z" - }, - "end": { - "$date": "2022-06-17T05:37:08.000Z" - }, - "events": [ - { - "uuid": "98574e73-8736-464a-bc49-045a237a75ad", - "start": { - "$date": "2022-06-17T05:33:47.000Z" - }, - "end": { - "$date": "2022-06-17T05:37:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "333c770a-90c3-44bd-96f7-ff5951f65011", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T05:39:28.000Z" - }, - "end": { - "$date": "2022-06-17T06:32:46.000Z" - }, - "events": [ - { - "uuid": "63624eb6-d3aa-458e-beae-31ca3707ff0d", - "start": { - "$date": "2022-06-17T05:39:28.000Z" - }, - "end": { - "$date": "2022-06-17T06:32:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c89ed61-3f07-42df-a633-1272d7f37472", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-17T18:05:45.000Z" - }, - "end": { - "$date": "2022-06-17T18:44:20.000Z" - }, - "events": [ - { - "uuid": "8d861b30-de65-4cc0-8083-466ef099a78d", - "start": { - "$date": "2022-06-17T18:05:45.000Z" - }, - "end": { - "$date": "2022-06-17T18:44:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "850f553f-725e-4e82-b7c9-c2026a2b1799", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T18:33:49.000Z" - }, - "end": { - "$date": "2022-06-17T18:50:32.000Z" - }, - "events": [ - { - "uuid": "7aa262bc-6e23-4ac4-b178-4f07af3fb4a8", - "start": { - "$date": "2022-06-17T18:33:49.000Z" - }, - "end": { - "$date": "2022-06-17T18:50:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "0cf7fcc0-110f-4ceb-a72c-037d8185b8b7", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T19:02:21.000Z" - }, - "end": { - "$date": "2022-06-17T19:26:49.000Z" - }, - "events": [ - { - "uuid": "3e1155af-e5a5-4912-bfef-35a0a56f0b99", - "start": { - "$date": "2022-06-17T19:02:21.000Z" - }, - "end": { - "$date": "2022-06-17T19:26:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3db7502d-d83e-4965-9a87-269eb34f7b38", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T20:20:08.000Z" - }, - "end": { - "$date": "2022-06-17T21:19:48.000Z" - }, - "events": [ - { - "uuid": "a17c754d-d0ad-4a07-802f-92c37f0e2b35", - "start": { - "$date": "2022-06-17T20:20:08.000Z" - }, - "end": { - "$date": "2022-06-17T21:19:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ced8d1dd-fc84-47f8-93bf-e3d952fb7f40", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-17T20:53:39.000Z" - }, - "end": { - "$date": "2022-06-17T21:05:52.000Z" - }, - "events": [ - { - "uuid": "1f9a8f20-3f23-49c8-8d1d-dc46991674b1", - "start": { - "$date": "2022-06-17T20:53:39.000Z" - }, - "end": { - "$date": "2022-06-17T21:05:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "508fc03f-a510-4279-abd0-c46813de950a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-17T21:45:35.000Z" - }, - "end": { - "$date": "2022-06-17T21:45:40.000Z" - }, - "events": [ - { - "uuid": "5f94d7f6-248a-4ac4-b4de-315efdc1a488", - "start": { - "$date": "2022-06-17T21:45:35.000Z" - }, - "end": { - "$date": "2022-06-17T21:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "9e8ce7f0-3629-490f-a014-891f64907c08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-17T23:04:58.000Z" - }, - "end": { - "$date": "2022-06-18T00:06:15.000Z" - }, - "events": [ - { - "uuid": "764e785c-6383-4dda-87fe-4f01badb7fe2", - "start": { - "$date": "2022-06-17T23:04:58.000Z" - }, - "end": { - "$date": "2022-06-17T23:20:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "80c3fb94-3f06-4e51-9617-2ffb2c3fcdfc", - "start": { - "$date": "2022-06-17T23:20:58.000Z" - }, - "end": { - "$date": "2022-06-17T23:32:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fb7d4fe4-d09b-4333-8167-a57dfb06456f", - "start": { - "$date": "2022-06-17T23:32:58.000Z" - }, - "end": { - "$date": "2022-06-18T00:06:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "6d283781-63d1-4743-971e-04def26dee59", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-17T23:17:32.000Z" - }, - "end": { - "$date": "2022-06-18T00:09:43.000Z" - }, - "events": [ - { - "uuid": "7cd29b2a-ad46-430a-afbb-26b7d7ff5984", - "start": { - "$date": "2022-06-17T23:17:32.000Z" - }, - "end": { - "$date": "2022-06-18T00:09:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "14ded2e9-641e-4de7-a160-ec143d9e60f2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T00:04:48.000Z" - }, - "end": { - "$date": "2022-06-18T01:22:56.000Z" - }, - "events": [ - { - "uuid": "344a8d36-a353-46b1-ac67-741a6ef27a69", - "start": { - "$date": "2022-06-18T00:04:48.000Z" - }, - "end": { - "$date": "2022-06-18T01:22:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "52a69ca7-4dd0-4914-8999-b8acc26c2017", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-18T00:09:58.000Z" - }, - "end": { - "$date": "2022-06-18T01:13:04.000Z" - }, - "events": [ - { - "uuid": "0b471779-c49c-4c62-9416-9c011821c082", - "start": { - "$date": "2022-06-18T00:09:58.000Z" - }, - "end": { - "$date": "2022-06-18T01:13:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7952bc91-773c-4220-a309-716531ff2551", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-18T01:28:51.000Z" - }, - "end": { - "$date": "2022-06-18T02:04:44.000Z" - }, - "events": [ - { - "uuid": "2262e1f1-2857-4c71-abfa-40138189bb5f", - "start": { - "$date": "2022-06-18T01:28:51.000Z" - }, - "end": { - "$date": "2022-06-18T02:04:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "e7319655-31de-4478-84f3-4356f12d0d1a", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-18T01:59:32.000Z" - }, - "end": { - "$date": "2022-06-18T02:05:36.000Z" - }, - "events": [ - { - "uuid": "1b6b2824-703a-4f7a-86a9-5a753695b6bf", - "start": { - "$date": "2022-06-18T01:59:32.000Z" - }, - "end": { - "$date": "2022-06-18T02:05:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "756c5dca-43cf-44d1-b949-721f6e7fd49b", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-18T02:07:29.000Z" - }, - "end": { - "$date": "2022-06-18T02:11:07.000Z" - }, - "events": [ - { - "uuid": "0ec23164-a9b3-4061-90f3-f19d05c38f09", - "start": { - "$date": "2022-06-18T02:07:29.000Z" - }, - "end": { - "$date": "2022-06-18T02:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "dab313fb-85ad-488a-a9ee-7f0da7bd714c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-18T02:32:34.000Z" - }, - "end": { - "$date": "2022-06-18T02:49:51.000Z" - }, - "events": [ - { - "uuid": "a789dac3-a6f5-47d0-bf88-548616529815", - "start": { - "$date": "2022-06-18T02:32:34.000Z" - }, - "end": { - "$date": "2022-06-18T02:49:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "2050feb7-a9a1-4b7c-bff5-cbd0b63cd7ec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-18T02:42:41.000Z" - }, - "end": { - "$date": "2022-06-18T04:12:26.000Z" - }, - "events": [ - { - "uuid": "f04fec40-6a7d-469e-b08c-1397a87d7d9a", - "start": { - "$date": "2022-06-18T02:42:41.000Z" - }, - "end": { - "$date": "2022-06-18T04:12:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "8f4fdec0-de2d-4f9b-8eb9-0b447b073bee", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-18T03:43:28.000Z" - }, - "end": { - "$date": "2022-06-18T06:28:58.000Z" - }, - "events": [ - { - "uuid": "26cc7887-e219-4cee-83ee-91d0eb52b57f", - "start": { - "$date": "2022-06-18T03:43:28.000Z" - }, - "end": { - "$date": "2022-06-18T06:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "b161ddf3-5129-486f-a1c5-af719fc238ba", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-18T03:52:14.000Z" - }, - "end": { - "$date": "2022-06-18T06:24:21.000Z" - }, - "events": [ - { - "uuid": "2adc23c6-60c6-4771-821b-f0339ba59ecd", - "start": { - "$date": "2022-06-18T03:52:14.000Z" - }, - "end": { - "$date": "2022-06-18T06:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "c73a82cb-cdcc-4316-8c61-776522b3e9ec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-18T04:27:16.000Z" - }, - "end": { - "$date": "2022-06-18T04:47:47.000Z" - }, - "events": [ - { - "uuid": "7004510f-afdf-498e-afeb-77202f8b5f99", - "start": { - "$date": "2022-06-18T04:27:16.000Z" - }, - "end": { - "$date": "2022-06-18T04:47:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "b63dc53f-8353-4616-89c3-7a7bc272da5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-18T04:47:52.000Z" - }, - "end": { - "$date": "2022-06-18T05:05:28.000Z" - }, - "events": [ - { - "uuid": "d1ff2552-a108-450c-bdd5-3af5dbfdf759", - "start": { - "$date": "2022-06-18T04:47:52.000Z" - }, - "end": { - "$date": "2022-06-18T05:05:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "3bc93a29-12cf-40e6-86bd-1779ffa3177c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-18T04:53:05.000Z" - }, - "end": { - "$date": "2022-06-18T05:25:06.000Z" - }, - "events": [ - { - "uuid": "20da8f1f-9c36-4c15-b084-d732cc9659a7", - "start": { - "$date": "2022-06-18T04:53:05.000Z" - }, - "end": { - "$date": "2022-06-18T05:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "d4525117-51cd-4993-b489-e6ea0e8a86c5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-18T06:29:28.000Z" - }, - "end": { - "$date": "2022-06-18T06:47:23.000Z" - }, - "events": [ - { - "uuid": "7dd2da2e-890b-484d-b9a6-c3ba9cc3172b", - "start": { - "$date": "2022-06-18T06:29:28.000Z" - }, - "end": { - "$date": "2022-06-18T06:47:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a64aa1a1-5a39-467e-8b05-753b57b039c1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-18T12:59:07.000Z" - }, - "end": { - "$date": "2022-06-18T13:32:34.000Z" - }, - "events": [ - { - "uuid": "9b589afe-ad74-49c0-9ac6-31173e05dccc", - "start": { - "$date": "2022-06-18T12:59:07.000Z" - }, - "end": { - "$date": "2022-06-18T13:32:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "da32f743-6f23-48c6-b735-dd8f9c42ae81", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-18T13:35:34.000Z" - }, - "end": { - "$date": "2022-06-18T13:56:25.000Z" - }, - "events": [ - { - "uuid": "408fc3c7-b798-4c84-8227-b622a8843355", - "start": { - "$date": "2022-06-18T13:35:34.000Z" - }, - "end": { - "$date": "2022-06-18T13:56:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "95d9c21c-250a-4007-b2aa-01fa43fc464e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T18:29:12.000Z" - }, - "end": { - "$date": "2022-06-18T18:29:21.000Z" - }, - "events": [ - { - "uuid": "2359f405-aa67-4622-b82f-da1c35256cf7", - "start": { - "$date": "2022-06-18T18:29:12.000Z" - }, - "end": { - "$date": "2022-06-18T18:29:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "f5418e8c-e51b-4278-a1c3-d90716fe761c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-18T14:51:19.000Z" - }, - "end": { - "$date": "2022-06-18T18:57:53.000Z" - }, - "events": [ - { - "uuid": "2a47b1e6-752d-491e-947a-93b64b88a6d3", - "start": { - "$date": "2022-06-18T14:51:19.000Z" - }, - "end": { - "$date": "2022-06-18T18:57:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "3ae44568-12df-479d-b576-42a3eb28f4d3", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-18T15:01:44.000Z" - }, - "end": { - "$date": "2022-06-18T17:57:13.000Z" - }, - "events": [ - { - "uuid": "c29e48ec-978d-4556-a5e6-6755bbb6cdc6", - "start": { - "$date": "2022-06-18T15:01:44.000Z" - }, - "end": { - "$date": "2022-06-18T17:57:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03a31878-f452-407c-8fcb-50532c23c03e", - "uuid": "c70ac263-4ec7-453b-b8e5-0641d4dcccb0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-18T15:55:00.000Z" - }, - "end": { - "$date": "2022-06-18T16:26:17.000Z" - }, - "events": [ - { - "uuid": "26facf68-57c6-41fd-b9b5-5c3cb1c5a517", - "start": { - "$date": "2022-06-18T15:55:00.000Z" - }, - "end": { - "$date": "2022-06-18T16:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "51c2cc17-53c5-4360-8ed6-14f2ca1b071b", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-18T18:26:20.000Z" - }, - "end": { - "$date": "2022-06-18T19:04:49.000Z" - }, - "events": [ - { - "uuid": "4fae8b9b-53fa-4749-b86c-679e8f175e05", - "start": { - "$date": "2022-06-18T18:26:20.000Z" - }, - "end": { - "$date": "2022-06-18T19:04:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c7c253e3-f0e6-446e-aaa4-ed082ecab669", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-18T18:27:03.000Z" - }, - "end": { - "$date": "2022-06-18T18:49:28.000Z" - }, - "events": [ - { - "uuid": "ca245a51-f1fd-42e5-a902-e75dccce3936", - "start": { - "$date": "2022-06-18T18:27:03.000Z" - }, - "end": { - "$date": "2022-06-18T18:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b6cf9da0-f0a8-4c7c-a624-b7db16a33d1d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T19:43:19.000Z" - }, - "end": { - "$date": "2022-06-18T20:22:17.000Z" - }, - "events": [ - { - "uuid": "24aad97b-adda-486c-a8aa-f86feaf0e850", - "start": { - "$date": "2022-06-18T19:43:19.000Z" - }, - "end": { - "$date": "2022-06-18T20:22:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c812521a-1b3c-4dd7-8db0-dd2b192efeb0", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-18T20:27:26.000Z" - }, - "end": { - "$date": "2022-06-18T21:33:52.000Z" - }, - "events": [ - { - "uuid": "27f49755-7c46-45de-905d-3f33be7015cc", - "start": { - "$date": "2022-06-18T20:27:26.000Z" - }, - "end": { - "$date": "2022-06-18T21:33:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1268c14d-9687-4fbb-a529-3b8495ba854b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-06-18T20:40:40.000Z" - }, - "end": { - "$date": "2022-06-18T21:34:45.000Z" - }, - "events": [ - { - "uuid": "f2a55e94-0cc6-42bd-b013-c66ff4af6d8a", - "start": { - "$date": "2022-06-18T20:40:40.000Z" - }, - "end": { - "$date": "2022-06-18T21:34:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "dd206226-3570-4f84-96b2-e3b207b551f6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-18T21:09:15.000Z" - }, - "end": { - "$date": "2022-06-18T21:45:19.000Z" - }, - "events": [ - { - "uuid": "a949c35e-3427-46b9-9f25-207664e7d50e", - "start": { - "$date": "2022-06-18T21:09:15.000Z" - }, - "end": { - "$date": "2022-06-18T21:45:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "53dab6c5-38c2-459c-a6b5-f18b4c3ebd49", - "uuid": "9b848baa-1ec5-4bc0-9332-c274155194e2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T22:07:59.000Z" - }, - "end": { - "$date": "2022-06-18T22:16:33.000Z" - }, - "events": [ - { - "uuid": "6ae26725-4bf8-43ac-b227-3d34684062b7", - "start": { - "$date": "2022-06-18T22:07:59.000Z" - }, - "end": { - "$date": "2022-06-18T22:16:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a473d4f0-8290-41db-8c11-f854f96a0c52", - "uuid": "75ad2e50-5730-46c8-a588-72fb24cfb936", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T22:18:34.000Z" - }, - "end": { - "$date": "2022-06-18T22:32:45.000Z" - }, - "events": [ - { - "uuid": "27557841-b61c-4d2f-8966-9adce93d15e6", - "start": { - "$date": "2022-06-18T22:18:34.000Z" - }, - "end": { - "$date": "2022-06-18T22:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a473d4f0-8290-41db-8c11-f854f96a0c52", - "uuid": "4fe203f6-6e20-41cd-88fa-db5020b750bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T22:42:57.000Z" - }, - "end": { - "$date": "2022-06-18T23:24:12.000Z" - }, - "events": [ - { - "uuid": "bd6e0bb5-ed94-4125-8bb2-d6fabc2c7482", - "start": { - "$date": "2022-06-18T22:42:57.000Z" - }, - "end": { - "$date": "2022-06-18T23:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "58479688-27e4-4e31-b906-5be07b5d889b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-18T23:16:12.000Z" - }, - "end": { - "$date": "2022-06-18T23:43:48.000Z" - }, - "events": [ - { - "uuid": "34a96c32-fe0d-43e6-b4d0-ed6c2f82cab8", - "start": { - "$date": "2022-06-18T23:16:12.000Z" - }, - "end": { - "$date": "2022-06-18T23:43:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cc908208-e345-4578-b524-03d13f0e823a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-18T23:25:58.000Z" - }, - "end": { - "$date": "2022-06-19T00:45:44.000Z" - }, - "events": [ - { - "uuid": "d8312ea8-f508-4a9f-b1d7-83828f481cff", - "start": { - "$date": "2022-06-18T23:25:58.000Z" - }, - "end": { - "$date": "2022-06-19T00:45:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b63d8e53-0434-42a3-b825-fa44e2506b65", - "uuid": "7680816c-7622-4407-9c21-76820975f6b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-18T23:52:59.000Z" - }, - "end": { - "$date": "2022-06-18T23:57:59.000Z" - }, - "events": [ - { - "uuid": "de5d65ca-ff29-4f42-9a24-b40e801c69b9", - "start": { - "$date": "2022-06-18T23:52:59.000Z" - }, - "end": { - "$date": "2022-06-18T23:57:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "bf6301c4-251a-4c76-9671-6ee4f15c65fd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-19T00:57:16.000Z" - }, - "end": { - "$date": "2022-06-19T01:28:39.000Z" - }, - "events": [ - { - "uuid": "549230e7-250c-4f78-b8eb-d020fcd11bd3", - "start": { - "$date": "2022-06-19T00:57:16.000Z" - }, - "end": { - "$date": "2022-06-19T01:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "34fb58f8-df77-422d-ac2e-59eda415ab42", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-19T00:21:24.000Z" - }, - "end": { - "$date": "2022-06-19T00:22:55.000Z" - }, - "events": [ - { - "uuid": "884da841-7a0d-4faf-a8d6-32f73a0e7030", - "start": { - "$date": "2022-06-19T00:21:24.000Z" - }, - "end": { - "$date": "2022-06-19T00:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "282179e4-6f49-4378-bbd5-18541d880c29", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-19T00:24:24.000Z" - }, - "end": { - "$date": "2022-06-19T00:56:17.000Z" - }, - "events": [ - { - "uuid": "be5dfe2b-269a-4693-b219-be4e367abc94", - "start": { - "$date": "2022-06-19T00:24:24.000Z" - }, - "end": { - "$date": "2022-06-19T00:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "0f1544ba-5a6a-4ee6-8e44-a270d50ec994", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-19T00:47:32.000Z" - }, - "end": { - "$date": "2022-06-19T01:26:32.000Z" - }, - "events": [ - { - "uuid": "f62e4432-9202-416e-b891-c508357c9b34", - "start": { - "$date": "2022-06-19T00:47:32.000Z" - }, - "end": { - "$date": "2022-06-19T01:26:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8aba43fe-5075-4481-b5c1-414314978bf8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-19T00:49:37.000Z" - }, - "end": { - "$date": "2022-06-19T01:29:09.000Z" - }, - "events": [ - { - "uuid": "c087ad0a-e9f5-4430-bfcd-9c088a665169", - "start": { - "$date": "2022-06-19T00:49:37.000Z" - }, - "end": { - "$date": "2022-06-19T01:29:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3ce6a1b2-2a67-4377-8ed2-7974ad321630", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-19T00:57:51.000Z" - }, - "end": { - "$date": "2022-06-19T00:59:12.000Z" - }, - "events": [ - { - "uuid": "cc70e57a-831d-4a18-9ed6-55fd04d6fea5", - "start": { - "$date": "2022-06-19T00:57:51.000Z" - }, - "end": { - "$date": "2022-06-19T00:59:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "05e0ba22-b934-46a5-9392-5118aaa95d64", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-19T00:59:36.000Z" - }, - "end": { - "$date": "2022-06-19T01:28:38.000Z" - }, - "events": [ - { - "uuid": "ebe210d2-3f14-41a2-aa9c-9bb01386c9cf", - "start": { - "$date": "2022-06-19T00:59:36.000Z" - }, - "end": { - "$date": "2022-06-19T01:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51f84cce-755a-495b-970f-7a886c01186d", - "uuid": "713570f8-24d3-4bca-838c-997cd157f1ee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T01:32:49.000Z" - }, - "end": { - "$date": "2022-06-19T01:32:54.000Z" - }, - "events": [ - { - "uuid": "c25587ff-bcdd-478f-a9b2-664e40f45456", - "start": { - "$date": "2022-06-19T01:32:49.000Z" - }, - "end": { - "$date": "2022-06-19T01:32:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "debf2e4e-2426-4c18-ab57-babb02387272", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-19T01:29:03.000Z" - }, - "end": { - "$date": "2022-06-19T01:36:38.000Z" - }, - "events": [ - { - "uuid": "d87474d2-46f6-4026-898c-35ea148bf6f7", - "start": { - "$date": "2022-06-19T01:29:03.000Z" - }, - "end": { - "$date": "2022-06-19T01:36:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "933658ba-3ec9-4709-ba8a-132845b69719", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-19T01:29:17.000Z" - }, - "end": { - "$date": "2022-06-19T01:39:40.000Z" - }, - "events": [ - { - "uuid": "6db28e95-5371-4ec2-9ea0-d3ea72cc6426", - "start": { - "$date": "2022-06-19T01:29:17.000Z" - }, - "end": { - "$date": "2022-06-19T01:39:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f778bcc6-099e-42cd-930d-df100979a4f7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-19T01:29:44.000Z" - }, - "end": { - "$date": "2022-06-19T01:39:35.000Z" - }, - "events": [ - { - "uuid": "d330a829-6c96-432a-8ee1-967489ff88c7", - "start": { - "$date": "2022-06-19T01:29:44.000Z" - }, - "end": { - "$date": "2022-06-19T01:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "51f84cce-755a-495b-970f-7a886c01186d", - "uuid": "a102fb15-8fe8-49c0-b2a5-04636040d58d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T01:33:04.000Z" - }, - "end": { - "$date": "2022-06-19T02:37:31.000Z" - }, - "events": [ - { - "uuid": "18347ad9-5ccf-48e9-ac76-4697865a4c31", - "start": { - "$date": "2022-06-19T01:33:04.000Z" - }, - "end": { - "$date": "2022-06-19T02:37:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "33a416de-5c63-429f-b4eb-b560741f79d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-19T01:33:34.000Z" - }, - "end": { - "$date": "2022-06-19T01:51:54.000Z" - }, - "events": [ - { - "uuid": "1565a861-5ff5-4530-8491-d56c8891f05d", - "start": { - "$date": "2022-06-19T01:33:34.000Z" - }, - "end": { - "$date": "2022-06-19T01:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "c57ccd53-700b-4424-ae27-68be0228f589", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-19T01:36:58.000Z" - }, - "end": { - "$date": "2022-06-19T02:27:36.000Z" - }, - "events": [ - { - "uuid": "5782c427-cf4e-4090-ad97-87b4ded1fdea", - "start": { - "$date": "2022-06-19T01:36:58.000Z" - }, - "end": { - "$date": "2022-06-19T02:27:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "83f1e167-db4e-4b0d-88fe-e8545f84927b", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-19T03:30:06.000Z" - }, - "end": { - "$date": "2022-06-19T04:03:08.000Z" - }, - "events": [ - { - "uuid": "44c6e324-30de-417c-ad39-dde53ff3bb21", - "start": { - "$date": "2022-06-19T03:30:06.000Z" - }, - "end": { - "$date": "2022-06-19T04:03:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "987a4fed-9b09-4331-a5c5-a3a3b0adb1ab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-19T05:08:47.000Z" - }, - "end": { - "$date": "2022-06-19T06:03:00.000Z" - }, - "events": [ - { - "uuid": "09cb785f-5c1e-428a-9764-87eeafb40cad", - "start": { - "$date": "2022-06-19T05:08:47.000Z" - }, - "end": { - "$date": "2022-06-19T06:03:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "750ea45e-fcee-4666-b0c3-578818f4b8a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T13:29:06.000Z" - }, - "end": { - "$date": "2022-06-19T14:00:27.000Z" - }, - "events": [ - { - "uuid": "828742d7-2386-4efb-a55c-a6079eaba28a", - "start": { - "$date": "2022-06-19T13:29:06.000Z" - }, - "end": { - "$date": "2022-06-19T14:00:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "9cadba19-8b05-4dda-a2ea-35b6806c3793", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T14:03:28.000Z" - }, - "end": { - "$date": "2022-06-19T15:33:49.000Z" - }, - "events": [ - { - "uuid": "5c80ec50-5bcb-4bc3-b7b8-187e21d4cf5f", - "start": { - "$date": "2022-06-19T14:03:28.000Z" - }, - "end": { - "$date": "2022-06-19T15:22:28.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7942f031-6c30-4d81-8eee-75311d2b954a", - "start": { - "$date": "2022-06-19T15:22:28.000Z" - }, - "end": { - "$date": "2022-06-19T15:33:49.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "ce74925e-bd51-47c0-b69d-436f07c0e274", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-19T14:26:34.000Z" - }, - "end": { - "$date": "2022-06-19T14:37:00.000Z" - }, - "events": [ - { - "uuid": "22fcadd2-f9a5-4d8c-9821-445bd46e34dd", - "start": { - "$date": "2022-06-19T14:26:34.000Z" - }, - "end": { - "$date": "2022-06-19T14:37:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "5eeba362-9f2b-470b-ba37-69017d79f6f4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-19T16:54:58.000Z" - }, - "end": { - "$date": "2022-06-19T17:22:13.000Z" - }, - "events": [ - { - "uuid": "d94fc1ce-946d-4367-ae70-71f181bf8ae3", - "start": { - "$date": "2022-06-19T16:54:58.000Z" - }, - "end": { - "$date": "2022-06-19T17:22:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d2af80fa-7b2a-4ebb-8a4e-1ef572c58bf0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T17:07:35.000Z" - }, - "end": { - "$date": "2022-06-19T18:39:13.000Z" - }, - "events": [ - { - "uuid": "6fc07b67-51de-4b21-8428-df85224b9961", - "start": { - "$date": "2022-06-19T17:07:35.000Z" - }, - "end": { - "$date": "2022-06-19T18:39:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d1e9b128-4d5d-45de-8572-a8046bb4e350", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-19T17:20:48.000Z" - }, - "end": { - "$date": "2022-06-19T18:07:21.000Z" - }, - "events": [ - { - "uuid": "ef4907bf-dc0e-44bb-b9c3-31d16278a8f7", - "start": { - "$date": "2022-06-19T17:20:48.000Z" - }, - "end": { - "$date": "2022-06-19T18:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "ee8cd4e9-6fec-4482-9ac8-c2e98b648e99", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-19T17:26:14.000Z" - }, - "end": { - "$date": "2022-06-19T17:46:30.000Z" - }, - "events": [ - { - "uuid": "fb1e5f28-7360-4628-b3be-aa11f36c1db7", - "start": { - "$date": "2022-06-19T17:26:14.000Z" - }, - "end": { - "$date": "2022-06-19T17:46:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "73827b04-36f4-4264-a45f-04119d0905c2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T18:55:00.000Z" - }, - "end": { - "$date": "2022-06-19T20:29:07.000Z" - }, - "events": [ - { - "uuid": "b5c9a32b-7ce2-4c33-a98a-3c53fb75edba", - "start": { - "$date": "2022-06-19T18:55:00.000Z" - }, - "end": { - "$date": "2022-06-19T19:23:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8e7deab3-61e3-4708-b835-2384486c02b4", - "start": { - "$date": "2022-06-19T19:23:00.000Z" - }, - "end": { - "$date": "2022-06-19T20:21:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "107d5f42-d2b5-4a94-9d67-d76a7a00c982", - "start": { - "$date": "2022-06-19T20:21:00.000Z" - }, - "end": { - "$date": "2022-06-19T20:29:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "606fa2ae-888e-4c6d-bfd0-ac89e32454a3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T20:32:23.000Z" - }, - "end": { - "$date": "2022-06-19T20:35:02.000Z" - }, - "events": [ - { - "uuid": "fa0150c1-5983-4d91-844a-18ee945318b7", - "start": { - "$date": "2022-06-19T20:32:23.000Z" - }, - "end": { - "$date": "2022-06-19T20:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c49a0656-a2da-43e1-b0d6-e99b1add15ea", - "uuid": "95086b3d-54c4-433a-be2a-4a24b0153bf4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T20:35:08.000Z" - }, - "end": { - "$date": "2022-06-19T20:39:32.000Z" - }, - "events": [ - { - "uuid": "32992c12-64fd-4f22-8e01-90fbb0473568", - "start": { - "$date": "2022-06-19T20:35:08.000Z" - }, - "end": { - "$date": "2022-06-19T20:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "46e67cd2-d5c0-4eb0-ba91-264c274f6a60", - "uuid": "a8892df6-dc19-41bc-9e1d-cffbfaeca298", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T20:47:14.000Z" - }, - "end": { - "$date": "2022-06-19T20:58:50.000Z" - }, - "events": [ - { - "uuid": "d500b45d-7b5d-472f-9b57-b75df9a96be2", - "start": { - "$date": "2022-06-19T20:47:14.000Z" - }, - "end": { - "$date": "2022-06-19T20:58:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "45e95c12-ad1d-4d3d-ab1c-2e94d7a3996e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T21:09:17.000Z" - }, - "end": { - "$date": "2022-06-19T21:10:32.000Z" - }, - "events": [ - { - "uuid": "bd5f36dc-ea14-4c66-bedb-060dfe18491b", - "start": { - "$date": "2022-06-19T21:09:17.000Z" - }, - "end": { - "$date": "2022-06-19T21:10:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "a611c736-8b81-46da-b996-65bb8c3e2005", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T21:11:18.000Z" - }, - "end": { - "$date": "2022-06-19T21:37:14.000Z" - }, - "events": [ - { - "uuid": "bcfe3f2f-afc2-4e92-a485-8c97f32aa7b7", - "start": { - "$date": "2022-06-19T21:11:18.000Z" - }, - "end": { - "$date": "2022-06-19T21:37:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "5fea64c9-4e56-4b6e-989d-05d4f929b066", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T21:37:30.000Z" - }, - "end": { - "$date": "2022-06-19T23:46:45.000Z" - }, - "events": [ - { - "uuid": "15581e03-48a3-4805-9b4f-098611cce9bf", - "start": { - "$date": "2022-06-19T21:37:30.000Z" - }, - "end": { - "$date": "2022-06-19T23:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "69c8c8c7-02e4-4f1b-a0c4-4849c85fe090", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-19T22:19:08.000Z" - }, - "end": { - "$date": "2022-06-20T00:12:19.000Z" - }, - "events": [ - { - "uuid": "8ef93d9b-90cc-467b-ba99-262968a2f6a4", - "start": { - "$date": "2022-06-19T22:19:08.000Z" - }, - "end": { - "$date": "2022-06-20T00:12:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "01913dcd-d5f9-4de6-85f5-26e597aa5559", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-19T22:23:17.000Z" - }, - "end": { - "$date": "2022-06-20T00:23:43.000Z" - }, - "events": [ - { - "uuid": "74866c40-5d7a-4a8a-af42-49d0330c68db", - "start": { - "$date": "2022-06-19T22:23:17.000Z" - }, - "end": { - "$date": "2022-06-20T00:23:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "632acf28-c860-48e0-9d4d-ce972d3b22a8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-19T23:25:29.000Z" - }, - "end": { - "$date": "2022-06-19T23:47:07.000Z" - }, - "events": [ - { - "uuid": "c9c5f7c6-1f80-4a82-a947-d83339f7a146", - "start": { - "$date": "2022-06-19T23:25:29.000Z" - }, - "end": { - "$date": "2022-06-19T23:47:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "3bbe79eb-769d-4a33-954b-2fe752a53424", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-19T23:53:02.000Z" - }, - "end": { - "$date": "2022-06-20T00:24:56.000Z" - }, - "events": [ - { - "uuid": "f8aba800-c1b1-4666-ae1f-60695f1866e6", - "start": { - "$date": "2022-06-19T23:53:02.000Z" - }, - "end": { - "$date": "2022-06-20T00:24:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "84a2bd81-5675-45eb-bc40-79336acebb57", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-19T23:53:32.000Z" - }, - "end": { - "$date": "2022-06-20T00:06:54.000Z" - }, - "events": [ - { - "uuid": "f5f6d201-777c-4fe7-94bd-a7b6e327e77d", - "start": { - "$date": "2022-06-19T23:53:32.000Z" - }, - "end": { - "$date": "2022-06-20T00:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "64177d32-0097-4a02-9f5f-895930ec18af", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-19T23:56:31.000Z" - }, - "end": { - "$date": "2022-06-20T00:16:34.000Z" - }, - "events": [ - { - "uuid": "ea497ad4-9235-4991-b00e-5cd59cf45a00", - "start": { - "$date": "2022-06-19T23:56:31.000Z" - }, - "end": { - "$date": "2022-06-20T00:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "61f3fae3-dd0b-430d-a68d-f25bf21d629b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-20T00:13:09.000Z" - }, - "end": { - "$date": "2022-06-20T00:22:34.000Z" - }, - "events": [ - { - "uuid": "216e3cd2-93cc-4c50-b33a-e6c293012a35", - "start": { - "$date": "2022-06-20T00:13:09.000Z" - }, - "end": { - "$date": "2022-06-20T00:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "e59a40e6-3b10-4763-86c5-f0324d10e83a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-20T00:25:00.000Z" - }, - "end": { - "$date": "2022-06-20T01:59:00.000Z" - }, - "events": [ - { - "uuid": "6839adf0-5325-4f96-9cef-5f50ad3a695d", - "start": { - "$date": "2022-06-20T00:25:00.000Z" - }, - "end": { - "$date": "2022-06-20T01:59:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "21f3015a-a47b-4f13-96d3-3f2edac3166f", - "uuid": "7b156826-25ab-44df-a0df-5d90a63316e1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-20T01:01:47.000Z" - }, - "end": { - "$date": "2022-06-20T02:20:01.000Z" - }, - "events": [ - { - "uuid": "cb319628-2d6e-4be3-afde-2448fd998fda", - "start": { - "$date": "2022-06-20T01:01:47.000Z" - }, - "end": { - "$date": "2022-06-20T02:20:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "8803bc94-9c62-41d4-8106-9fb5e60ace9f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-20T02:24:27.000Z" - }, - "end": { - "$date": "2022-06-20T03:28:03.000Z" - }, - "events": [ - { - "uuid": "024d7d95-6834-4089-a9bb-ac1bf966e202", - "start": { - "$date": "2022-06-20T02:24:27.000Z" - }, - "end": { - "$date": "2022-06-20T03:28:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "30f37cd3-0d4d-42d4-9fc0-ad720b310567", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-20T02:30:31.000Z" - }, - "end": { - "$date": "2022-06-20T03:28:04.000Z" - }, - "events": [ - { - "uuid": "b8fb216b-b6f5-494a-b088-0d91bff8f7a4", - "start": { - "$date": "2022-06-20T02:30:31.000Z" - }, - "end": { - "$date": "2022-06-20T03:28:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "34ba1092-9693-4791-94b8-2cccbf737bd0", - "uuid": "122e2551-4a24-4bf3-8afe-7cfbb6561ddc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-20T02:45:33.000Z" - }, - "end": { - "$date": "2022-06-20T02:55:44.000Z" - }, - "events": [ - { - "uuid": "a4a2c18f-6111-48ee-abca-3694649639a6", - "start": { - "$date": "2022-06-20T02:45:33.000Z" - }, - "end": { - "$date": "2022-06-20T02:55:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "450d7d6e-7f96-4a7d-b757-f7ec219d0a7d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-20T02:51:36.000Z" - }, - "end": { - "$date": "2022-06-20T05:02:26.000Z" - }, - "events": [ - { - "uuid": "1a634532-3cad-4cdf-842d-7b88812e4b71", - "start": { - "$date": "2022-06-20T02:51:36.000Z" - }, - "end": { - "$date": "2022-06-20T05:02:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff591f22-64ce-4b2b-854d-4c984614461b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-20T02:55:59.000Z" - }, - "end": { - "$date": "2022-06-20T03:00:50.000Z" - }, - "events": [ - { - "uuid": "3057650d-6cc8-4f78-b341-e42a35cb6987", - "start": { - "$date": "2022-06-20T02:55:59.000Z" - }, - "end": { - "$date": "2022-06-20T03:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7768e775-0130-4279-a8c4-10601454ea2b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-20T03:00:59.000Z" - }, - "end": { - "$date": "2022-06-20T03:28:00.000Z" - }, - "events": [ - { - "uuid": "ad3f5ae2-4c2f-46c5-a58a-e7dee2bec379", - "start": { - "$date": "2022-06-20T03:00:59.000Z" - }, - "end": { - "$date": "2022-06-20T03:28:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "0bbb1ba4-80d0-473c-b28c-04e11d47bb55", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-20T03:29:58.000Z" - }, - "end": { - "$date": "2022-06-20T04:22:41.000Z" - }, - "events": [ - { - "uuid": "604fae7b-e84a-4f07-9987-57162c756662", - "start": { - "$date": "2022-06-20T03:29:58.000Z" - }, - "end": { - "$date": "2022-06-20T04:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "8405cdd9-5a43-418b-a570-1d51d12c3fb8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-20T03:30:00.000Z" - }, - "end": { - "$date": "2022-06-20T04:11:46.000Z" - }, - "events": [ - { - "uuid": "4d45d29d-2115-4a5d-81f8-77bd5b9443d4", - "start": { - "$date": "2022-06-20T03:30:00.000Z" - }, - "end": { - "$date": "2022-06-20T04:11:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "d0082bfb-296b-4080-97c9-c45abe0d393b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-20T03:30:02.000Z" - }, - "end": { - "$date": "2022-06-20T04:12:01.000Z" - }, - "events": [ - { - "uuid": "b683c580-5e9d-4a12-8198-d131f3d9df80", - "start": { - "$date": "2022-06-20T03:30:02.000Z" - }, - "end": { - "$date": "2022-06-20T04:12:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e565ca24-c0e6-451d-b9cd-8df10feacd9e", - "uuid": "69b35b43-3b96-4e3c-a9c1-835f2c36609d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-20T03:36:20.000Z" - }, - "end": { - "$date": "2022-06-20T04:11:41.000Z" - }, - "events": [ - { - "uuid": "346304b4-ce3f-4b6f-95d0-6017615fb6f0", - "start": { - "$date": "2022-06-20T03:36:20.000Z" - }, - "end": { - "$date": "2022-06-20T04:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "af009f83-3088-4a6f-9618-2609e4b9ab60", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-20T04:15:27.000Z" - }, - "end": { - "$date": "2022-06-20T07:59:46.000Z" - }, - "events": [ - { - "uuid": "d0620e3e-212f-495e-aea9-66ba6ed36e53", - "start": { - "$date": "2022-06-20T04:15:27.000Z" - }, - "end": { - "$date": "2022-06-20T07:59:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e3b488e2-ea99-4c73-a456-7faeab8309af", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-20T07:02:04.000Z" - }, - "end": { - "$date": "2022-06-20T07:02:23.000Z" - }, - "events": [ - { - "uuid": "9b2b9f63-1fb3-4683-ade4-c2d7ff3a2547", - "start": { - "$date": "2022-06-20T07:02:04.000Z" - }, - "end": { - "$date": "2022-06-20T07:02:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0a888e1e-f66f-4b2c-ab64-fe37e7ea919f", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-20T04:35:30.000Z" - }, - "end": { - "$date": "2022-06-20T07:03:49.000Z" - }, - "events": [ - { - "uuid": "dd8cb3c5-94ee-4c25-86c0-f5665193c841", - "start": { - "$date": "2022-06-20T04:35:30.000Z" - }, - "end": { - "$date": "2022-06-20T07:03:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "98f4fa32-ea1a-45fe-bcf9-5df5b740c88d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-20T04:39:19.000Z" - }, - "end": { - "$date": "2022-06-20T05:16:50.000Z" - }, - "events": [ - { - "uuid": "3cffcabe-12f5-4207-90c0-3f6983522761", - "start": { - "$date": "2022-06-20T04:39:19.000Z" - }, - "end": { - "$date": "2022-06-20T05:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a9ba3279-bd62-4293-b99b-6ae3c9223486", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-20T13:54:37.000Z" - }, - "end": { - "$date": "2022-06-20T14:29:28.000Z" - }, - "events": [ - { - "uuid": "a803ab98-b124-4666-80d7-53420d77f525", - "start": { - "$date": "2022-06-20T13:54:37.000Z" - }, - "end": { - "$date": "2022-06-20T14:29:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "1298afa5-f063-4914-96aa-d947941ea84f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-20T22:13:01.000Z" - }, - "end": { - "$date": "2022-06-20T22:17:51.000Z" - }, - "events": [ - { - "uuid": "15344741-bc71-45c0-9af3-3f42de30a66d", - "start": { - "$date": "2022-06-20T22:13:01.000Z" - }, - "end": { - "$date": "2022-06-20T22:53:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c04f50b7-5615-49b9-bf1a-94f1f8dc3de6", - "start": { - "$date": "2022-06-20T22:53:01.000Z" - }, - "end": { - "$date": "2022-06-20T23:46:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dfa2fb17-42d3-4f94-81e4-098b1db13a6f", - "start": { - "$date": "2022-06-20T23:46:01.000Z" - }, - "end": { - "$date": "2022-06-21T00:49:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8818bbf2-76dd-45f1-aec2-fcd6532ac88b", - "start": { - "$date": "2022-06-21T00:49:01.000Z" - }, - "end": { - "$date": "2022-06-21T00:51:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5ba7f27-541c-4ee2-9846-7dda2acb6d8c", - "start": { - "$date": "2022-06-21T00:51:01.000Z" - }, - "end": { - "$date": "2022-06-20T22:17:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "11a4715e-d84e-4864-98c7-069bc9add935", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-20T17:28:14.000Z" - }, - "end": { - "$date": "2022-06-20T18:17:10.000Z" - }, - "events": [ - { - "uuid": "feacb4e3-0f9b-40a4-b9d4-cc97dd2316aa", - "start": { - "$date": "2022-06-20T17:28:14.000Z" - }, - "end": { - "$date": "2022-06-20T18:17:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f0ddd47b-32c9-4644-87ec-9e4daf11c924", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-20T20:12:57.000Z" - }, - "end": { - "$date": "2022-06-20T23:19:22.000Z" - }, - "events": [ - { - "uuid": "3a59ee15-7eb4-4ff2-bb37-62919ecf47c7", - "start": { - "$date": "2022-06-20T20:12:57.000Z" - }, - "end": { - "$date": "2022-06-20T23:19:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "3d590705-9430-4420-a9b6-b045b2b21f8c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-20T20:55:18.000Z" - }, - "end": { - "$date": "2022-06-20T22:27:32.000Z" - }, - "events": [ - { - "uuid": "dcebc4c0-e9ce-4f82-bf05-d1797f8db3dd", - "start": { - "$date": "2022-06-20T20:55:18.000Z" - }, - "end": { - "$date": "2022-06-20T22:27:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7e130ad5-33aa-4d01-9d9d-a7002e3c7fda", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-21T01:01:16.000Z" - }, - "end": { - "$date": "2022-06-21T01:01:20.000Z" - }, - "events": [ - { - "uuid": "912c1b78-9de3-4579-86c2-8c7b76abca7f", - "start": { - "$date": "2022-06-21T01:01:16.000Z" - }, - "end": { - "$date": "2022-06-21T01:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1a26d644-5ad9-4ece-ac48-00529970b485", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-21T00:22:25.000Z" - }, - "end": { - "$date": "2022-06-21T01:35:21.000Z" - }, - "events": [ - { - "uuid": "7abe05ae-afde-417f-b1e5-beb25d325653", - "start": { - "$date": "2022-06-21T00:22:25.000Z" - }, - "end": { - "$date": "2022-06-21T01:35:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "93c4d52b-ec84-4ccd-b371-eeef49ad1259", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-21T01:19:05.000Z" - }, - "end": { - "$date": "2022-06-21T01:44:52.000Z" - }, - "events": [ - { - "uuid": "641615e4-a2e6-47cc-a64d-4bc4a469bd1a", - "start": { - "$date": "2022-06-21T01:19:05.000Z" - }, - "end": { - "$date": "2022-06-21T01:44:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "20e0303d-5dd6-4ab6-ac71-bd203345a093", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-21T04:42:43.000Z" - }, - "end": { - "$date": "2022-06-21T04:43:37.000Z" - }, - "events": [ - { - "uuid": "797c6804-a470-4cf7-ab1b-87d77577c321", - "start": { - "$date": "2022-06-21T04:42:43.000Z" - }, - "end": { - "$date": "2022-06-21T05:10:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50de8473-cc37-4e30-9f7e-477af5b120d1", - "start": { - "$date": "2022-06-21T05:10:43.000Z" - }, - "end": { - "$date": "2022-06-21T05:20:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "40ca913d-dd34-433d-9cd5-23fb8d04a1a6", - "start": { - "$date": "2022-06-21T05:20:43.000Z" - }, - "end": { - "$date": "2022-06-21T06:34:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f598b2c-9ef7-4107-b6d4-d3a87e63864c", - "start": { - "$date": "2022-06-21T06:34:43.000Z" - }, - "end": { - "$date": "2022-06-21T06:47:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "421928d4-2da4-4285-9474-80efd35b868e", - "start": { - "$date": "2022-06-21T06:47:43.000Z" - }, - "end": { - "$date": "2022-06-21T07:34:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "253855fc-3a6e-4834-a835-7bd69a32ebbc", - "start": { - "$date": "2022-06-21T07:34:43.000Z" - }, - "end": { - "$date": "2022-06-21T07:39:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "21158c94-78cc-443a-91e8-2139083b3852", - "start": { - "$date": "2022-06-21T07:39:43.000Z" - }, - "end": { - "$date": "2022-06-21T04:43:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "2adfa6bb-e174-47ce-b9b5-f95c90a6dca8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-21T02:11:24.000Z" - }, - "end": { - "$date": "2022-06-21T04:38:27.000Z" - }, - "events": [ - { - "uuid": "30a78294-199b-4fe1-b0cf-f1f34e22ded1", - "start": { - "$date": "2022-06-21T02:11:24.000Z" - }, - "end": { - "$date": "2022-06-21T04:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "27a08ac2-09d4-4ca0-b0ba-66abc405ba3a", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-21T02:33:01.000Z" - }, - "end": { - "$date": "2022-06-21T03:59:35.000Z" - }, - "events": [ - { - "uuid": "64794eaa-b240-4a53-af02-4eb6e367eda6", - "start": { - "$date": "2022-06-21T02:33:01.000Z" - }, - "end": { - "$date": "2022-06-21T03:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cd7f3835-6fa7-43f7-9bcd-0df74fac1753", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-21T02:34:46.000Z" - }, - "end": { - "$date": "2022-06-21T03:12:32.000Z" - }, - "events": [ - { - "uuid": "95e84bdb-5c53-4dac-a7df-832ac9da7c02", - "start": { - "$date": "2022-06-21T02:34:46.000Z" - }, - "end": { - "$date": "2022-06-21T03:12:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "6f3b6d27-f1a8-411b-8061-fa6bd4365cbf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-21T02:46:17.000Z" - }, - "end": { - "$date": "2022-06-21T03:31:53.000Z" - }, - "events": [ - { - "uuid": "ccfa345d-5e87-4195-ad05-67f91ce68182", - "start": { - "$date": "2022-06-21T02:46:17.000Z" - }, - "end": { - "$date": "2022-06-21T03:31:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "b2c09e50-e785-461f-9816-1c5095d83a8e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-21T03:12:48.000Z" - }, - "end": { - "$date": "2022-06-21T04:00:49.000Z" - }, - "events": [ - { - "uuid": "040193f4-e130-4d13-81a7-ca1d884e0cfd", - "start": { - "$date": "2022-06-21T03:12:48.000Z" - }, - "end": { - "$date": "2022-06-21T04:00:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "46b7edee-906c-4e7b-bb96-d3bb3b8eb6c9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-21T03:36:29.000Z" - }, - "end": { - "$date": "2022-06-21T06:09:57.000Z" - }, - "events": [ - { - "uuid": "9fdf0028-40be-4195-96da-ad0ccb863da4", - "start": { - "$date": "2022-06-21T03:36:29.000Z" - }, - "end": { - "$date": "2022-06-21T06:09:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "020d012f-b8f7-4846-ada0-82eae722d624", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-21T04:22:21.000Z" - }, - "end": { - "$date": "2022-06-21T04:36:26.000Z" - }, - "events": [ - { - "uuid": "aaa78d49-f603-44d0-b13c-85cf0dc72855", - "start": { - "$date": "2022-06-21T04:22:21.000Z" - }, - "end": { - "$date": "2022-06-21T04:36:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7f3308b2-3ef0-41a1-ada7-7b5c06927582", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-21T04:32:35.000Z" - }, - "end": { - "$date": "2022-06-21T05:11:38.000Z" - }, - "events": [ - { - "uuid": "5f6b1877-0724-40d4-90ab-83afa6e06fa2", - "start": { - "$date": "2022-06-21T04:32:35.000Z" - }, - "end": { - "$date": "2022-06-21T05:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2176a52f-1471-4c46-81f6-759294ce790c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-21T04:36:36.000Z" - }, - "end": { - "$date": "2022-06-21T05:22:26.000Z" - }, - "events": [ - { - "uuid": "06d1b901-2c58-4c04-bb94-af9364bd4403", - "start": { - "$date": "2022-06-21T04:36:36.000Z" - }, - "end": { - "$date": "2022-06-21T05:22:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "45df833b-53fb-42ce-ba65-566b8636ab44", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-21T06:12:30.000Z" - }, - "end": { - "$date": "2022-06-21T06:48:22.000Z" - }, - "events": [ - { - "uuid": "1f768dea-dca2-49df-b43a-8e80842fd025", - "start": { - "$date": "2022-06-21T06:12:30.000Z" - }, - "end": { - "$date": "2022-06-21T06:48:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "14232844-b1a6-439d-b3fb-19bbdea85990", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-21T06:12:41.000Z" - }, - "end": { - "$date": "2022-06-21T06:49:16.000Z" - }, - "events": [ - { - "uuid": "4806d833-3616-4eca-9c7b-e9682baba35c", - "start": { - "$date": "2022-06-21T06:12:41.000Z" - }, - "end": { - "$date": "2022-06-21T06:49:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fb4c288d-fc02-4917-ae85-b63198fff84a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-21T06:18:53.000Z" - }, - "end": { - "$date": "2022-06-21T06:30:50.000Z" - }, - "events": [ - { - "uuid": "d0ef5aa2-f83f-4da0-b86c-5fcf86d9a269", - "start": { - "$date": "2022-06-21T06:18:53.000Z" - }, - "end": { - "$date": "2022-06-21T06:30:50.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "70dafbc1-feef-4a2a-aa97-9505f301d7b1", - "uuid": "c6aa9a7a-2cb3-4a47-adc4-343d09ec5f98", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-21T07:08:28.000Z" - }, - "end": { - "$date": "2022-06-21T07:20:48.000Z" - }, - "events": [ - { - "uuid": "4b1cdc9e-f172-49bf-91e5-17812d81f85f", - "start": { - "$date": "2022-06-21T07:08:28.000Z" - }, - "end": { - "$date": "2022-06-21T07:20:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c59f81bc-c225-41ca-a6de-1466068ddd30", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-21T07:39:30.000Z" - }, - "end": { - "$date": "2022-06-21T07:41:12.000Z" - }, - "events": [ - { - "uuid": "580d0a2c-6fc2-42ff-bf71-a81d89c7ac36", - "start": { - "$date": "2022-06-21T07:39:30.000Z" - }, - "end": { - "$date": "2022-06-21T07:41:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "80120f5c-da16-45ca-b167-0b46c696bcfe", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-21T17:50:49.000Z" - }, - "end": { - "$date": "2022-06-21T17:52:14.000Z" - }, - "events": [ - { - "uuid": "7c6fd3ca-39b1-4b29-b977-cde436bed406", - "start": { - "$date": "2022-06-21T17:50:49.000Z" - }, - "end": { - "$date": "2022-06-21T17:52:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "96177773-fc9f-40db-85a6-ad1f3a36dedf", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-21T21:43:29.000Z" - }, - "end": { - "$date": "2022-06-21T21:43:34.000Z" - }, - "events": [ - { - "uuid": "66f2adff-1f39-44e6-a8bc-4a7605474fd5", - "start": { - "$date": "2022-06-21T21:43:29.000Z" - }, - "end": { - "$date": "2022-06-21T22:28:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a250224a-0304-4cf1-a991-1d9ba60900d9", - "start": { - "$date": "2022-06-21T22:28:29.000Z" - }, - "end": { - "$date": "2022-06-21T22:31:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2efd75f5-4754-492a-a3aa-285880983209", - "start": { - "$date": "2022-06-21T22:31:29.000Z" - }, - "end": { - "$date": "2022-06-21T23:00:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2cd6f97b-1450-4eff-87e3-5a35db596499", - "start": { - "$date": "2022-06-21T23:00:29.000Z" - }, - "end": { - "$date": "2022-06-21T23:07:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8952f8cc-6cf2-42fe-be3a-c21e3e0fbcdb", - "start": { - "$date": "2022-06-21T23:07:29.000Z" - }, - "end": { - "$date": "2022-06-21T23:58:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "184564c3-7419-402b-92cf-19b63ce21ee4", - "start": { - "$date": "2022-06-21T23:58:29.000Z" - }, - "end": { - "$date": "2022-06-22T00:02:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f3aedf5-6a65-4e97-831d-d6f0dcc9b44f", - "start": { - "$date": "2022-06-22T00:02:29.000Z" - }, - "end": { - "$date": "2022-06-22T00:13:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "489ae78e-6d9e-4331-80f0-00c0f0557494", - "start": { - "$date": "2022-06-22T00:13:29.000Z" - }, - "end": { - "$date": "2022-06-22T00:14:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f6999034-c30e-46bd-94ea-9a1794701821", - "start": { - "$date": "2022-06-22T00:14:29.000Z" - }, - "end": { - "$date": "2022-06-21T21:43:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "ba0c528a-3c92-48a0-be7a-67edb2a7ec4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-21T18:16:21.000Z" - }, - "end": { - "$date": "2022-06-21T19:51:59.000Z" - }, - "events": [ - { - "uuid": "6d4a9ad8-22de-42f7-b7aa-110b81a8100b", - "start": { - "$date": "2022-06-21T18:16:21.000Z" - }, - "end": { - "$date": "2022-06-21T19:51:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "338532e1-be57-4950-8701-3b4d65bc4de8", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-21T18:16:20.000Z" - }, - "end": { - "$date": "2022-06-21T18:21:15.000Z" - }, - "events": [ - { - "uuid": "a6372881-c985-46fd-9e44-7d9febe0da85", - "start": { - "$date": "2022-06-21T18:16:20.000Z" - }, - "end": { - "$date": "2022-06-21T18:21:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "d794983f-f1fc-4ae9-bf00-820ee50d9600", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-21T18:26:01.000Z" - }, - "end": { - "$date": "2022-06-21T18:33:07.000Z" - }, - "events": [ - { - "uuid": "51b5706b-9a11-4e6d-9193-78b9e4afb145", - "start": { - "$date": "2022-06-21T18:26:01.000Z" - }, - "end": { - "$date": "2022-06-21T18:33:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "58215d94-94aa-42c9-8ac5-5003aa0d77db", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-21T18:36:02.000Z" - }, - "end": { - "$date": "2022-06-21T18:37:27.000Z" - }, - "events": [ - { - "uuid": "d7937a9d-8d70-4d66-a82a-9347f33c0a0d", - "start": { - "$date": "2022-06-21T18:36:02.000Z" - }, - "end": { - "$date": "2022-06-21T18:37:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "a73a70cc-4f35-4261-9b12-059f1f21fccb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-21T19:05:04.000Z" - }, - "end": { - "$date": "2022-06-21T19:34:27.000Z" - }, - "events": [ - { - "uuid": "15615ae5-07bb-4661-b465-8c6eb4f59b8f", - "start": { - "$date": "2022-06-21T19:05:04.000Z" - }, - "end": { - "$date": "2022-06-21T19:34:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8f809f7a-58af-49e1-b2bd-d9378c40e1a7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-21T21:15:53.000Z" - }, - "end": { - "$date": "2022-06-22T02:01:51.000Z" - }, - "events": [ - { - "uuid": "6bacc3c1-dcc5-4ccf-b11b-5f0499bd6968", - "start": { - "$date": "2022-06-21T21:15:53.000Z" - }, - "end": { - "$date": "2022-06-22T02:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2a32394f-2346-4926-b15f-3a4754331ffb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-21T23:01:26.000Z" - }, - "end": { - "$date": "2022-06-21T23:35:25.000Z" - }, - "events": [ - { - "uuid": "15a596d7-e95c-453e-9b73-f1c681a36154", - "start": { - "$date": "2022-06-21T23:01:26.000Z" - }, - "end": { - "$date": "2022-06-21T23:35:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "5029b61b-9e52-43b2-aef9-3f467350ec01", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-22T00:02:49.000Z" - }, - "end": { - "$date": "2022-06-22T00:47:05.000Z" - }, - "events": [ - { - "uuid": "b01e7656-6d2f-4d11-b695-c7532246182f", - "start": { - "$date": "2022-06-22T00:02:49.000Z" - }, - "end": { - "$date": "2022-06-22T00:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "a9ad97c8-aecb-447d-bb39-d91214ee3c5a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-22T01:05:37.000Z" - }, - "end": { - "$date": "2022-06-22T02:02:51.000Z" - }, - "events": [ - { - "uuid": "47211843-e291-43be-a8ef-61c309e8ca1f", - "start": { - "$date": "2022-06-22T01:05:37.000Z" - }, - "end": { - "$date": "2022-06-22T02:02:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a210332-6526-4f8b-b554-d278cea6cc2a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-22T01:10:38.000Z" - }, - "end": { - "$date": "2022-06-22T02:00:13.000Z" - }, - "events": [ - { - "uuid": "d7073538-9767-4407-b234-5fd1e383fa48", - "start": { - "$date": "2022-06-22T01:10:38.000Z" - }, - "end": { - "$date": "2022-06-22T02:00:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "76477254-d51b-4356-b141-7bd17ad229e4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T01:37:54.000Z" - }, - "end": { - "$date": "2022-06-22T01:44:54.000Z" - }, - "events": [ - { - "uuid": "5e358947-fb49-4057-9c1e-207f45062dc6", - "start": { - "$date": "2022-06-22T01:37:54.000Z" - }, - "end": { - "$date": "2022-06-22T01:44:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f5af39ad-06cc-4aab-8257-c1d5dc3ca0ec", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-22T02:53:17.000Z" - }, - "end": { - "$date": "2022-06-22T02:58:32.000Z" - }, - "events": [ - { - "uuid": "0e44bf85-b1a9-4893-93bf-50eb1f1787dd", - "start": { - "$date": "2022-06-22T02:53:17.000Z" - }, - "end": { - "$date": "2022-06-22T02:58:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2eb9c411-983e-457c-afa0-b0152e6b3384", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-22T02:03:16.000Z" - }, - "end": { - "$date": "2022-06-22T04:35:16.000Z" - }, - "events": [ - { - "uuid": "a0c29246-7e57-4d9c-9d4b-73e8fda274c9", - "start": { - "$date": "2022-06-22T02:03:16.000Z" - }, - "end": { - "$date": "2022-06-22T04:35:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5e0a9820-951e-434f-969e-0e436d0b038a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T03:58:49.000Z" - }, - "end": { - "$date": "2022-06-22T05:03:57.000Z" - }, - "events": [ - { - "uuid": "2c8bd3e9-ebc0-4e16-9ca3-386f8d2bb899", - "start": { - "$date": "2022-06-22T03:58:49.000Z" - }, - "end": { - "$date": "2022-06-22T06:01:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "37eed9cc-4ced-4972-88ff-d829f1ac3903", - "start": { - "$date": "2022-06-22T06:01:49.000Z" - }, - "end": { - "$date": "2022-06-22T06:29:49.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e155bc69-4415-4311-b3c3-8233b8f33b74", - "start": { - "$date": "2022-06-22T06:29:49.000Z" - }, - "end": { - "$date": "2022-06-22T06:32:49.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "49b7bee5-cd86-4488-b026-7571fb04b679", - "start": { - "$date": "2022-06-22T06:32:49.000Z" - }, - "end": { - "$date": "2022-06-22T05:03:57.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "61f7eec4-4858-4a0a-b8a5-5a613853b5ab", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-22T02:47:29.000Z" - }, - "end": { - "$date": "2022-06-22T03:58:51.000Z" - }, - "events": [ - { - "uuid": "dd9a3972-1e20-4e6d-a451-01d93a431ca4", - "start": { - "$date": "2022-06-22T02:47:29.000Z" - }, - "end": { - "$date": "2022-06-22T03:58:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "82009845-d787-4da1-9b3d-e7276363d368", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-22T02:19:53.000Z" - }, - "end": { - "$date": "2022-06-22T02:22:32.000Z" - }, - "events": [ - { - "uuid": "14148c31-6129-4201-8887-119296f56a55", - "start": { - "$date": "2022-06-22T02:19:53.000Z" - }, - "end": { - "$date": "2022-06-22T02:22:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "f456a2a5-674b-4a0a-b88b-c8e2e1c021c2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-22T03:19:19.000Z" - }, - "end": { - "$date": "2022-06-22T03:32:53.000Z" - }, - "events": [ - { - "uuid": "1817e882-e224-4225-880e-5ce5c7026680", - "start": { - "$date": "2022-06-22T03:19:19.000Z" - }, - "end": { - "$date": "2022-06-22T03:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4815c391-92e4-402f-a3bf-a091e3c21ee7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-22T03:33:44.000Z" - }, - "end": { - "$date": "2022-06-22T03:50:49.000Z" - }, - "events": [ - { - "uuid": "edc32b5d-b678-4c57-86e6-c014c3c1390f", - "start": { - "$date": "2022-06-22T03:33:44.000Z" - }, - "end": { - "$date": "2022-06-22T03:50:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "bc3e6366-a2d3-4d32-a4f6-e36b383a79fd", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-22T03:42:48.000Z" - }, - "end": { - "$date": "2022-06-22T06:19:39.000Z" - }, - "events": [ - { - "uuid": "4127372f-be75-4f43-ae54-4c0b1718fc08", - "start": { - "$date": "2022-06-22T03:42:48.000Z" - }, - "end": { - "$date": "2022-06-22T06:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "463595fe-a1a6-486a-ad60-0070c5b0e63b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-22T04:54:02.000Z" - }, - "end": { - "$date": "2022-06-22T06:20:33.000Z" - }, - "events": [ - { - "uuid": "342ef133-88cb-4f70-8c4e-945c39c4e6f2", - "start": { - "$date": "2022-06-22T04:54:02.000Z" - }, - "end": { - "$date": "2022-06-22T06:20:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "c5225e15-2e3e-4f4d-9a55-572a4bc3d806", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-22T06:04:25.000Z" - }, - "end": { - "$date": "2022-06-22T06:26:23.000Z" - }, - "events": [ - { - "uuid": "db8898dc-274f-4810-8a8c-ddda47ed9702", - "start": { - "$date": "2022-06-22T06:04:25.000Z" - }, - "end": { - "$date": "2022-06-22T06:26:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fb17f4cf-e6de-4a0c-944f-6900fe29bcac", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T13:34:52.000Z" - }, - "end": { - "$date": "2022-06-22T15:11:37.000Z" - }, - "events": [ - { - "uuid": "79fe7a76-c2f6-416e-a14b-8179b68616fe", - "start": { - "$date": "2022-06-22T13:34:52.000Z" - }, - "end": { - "$date": "2022-06-22T15:11:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "24d77d05-8649-40c1-9b22-66dff4007dd5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-22T14:37:07.000Z" - }, - "end": { - "$date": "2022-06-22T16:22:51.000Z" - }, - "events": [ - { - "uuid": "77d1db5a-8743-43fc-b457-64d4613d6563", - "start": { - "$date": "2022-06-22T14:37:07.000Z" - }, - "end": { - "$date": "2022-06-22T16:22:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "38f87481-d75b-439e-ad9d-f7156e010c04", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T15:33:00.000Z" - }, - "end": { - "$date": "2022-06-22T15:46:31.000Z" - }, - "events": [ - { - "uuid": "6469a4a1-926e-4740-9f3e-5cdc4a995171", - "start": { - "$date": "2022-06-22T15:33:00.000Z" - }, - "end": { - "$date": "2022-06-22T15:46:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "09a71f97-551c-4bc5-b6b1-d7d0768a6ac2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T18:10:53.000Z" - }, - "end": { - "$date": "2022-06-22T18:22:09.000Z" - }, - "events": [ - { - "uuid": "321f2067-e937-4923-97e4-1b854a60219d", - "start": { - "$date": "2022-06-22T18:10:53.000Z" - }, - "end": { - "$date": "2022-06-22T18:22:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e6bc1b22-fad7-4465-b7b3-d57aad790c0e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-22T16:25:26.000Z" - }, - "end": { - "$date": "2022-06-22T16:46:46.000Z" - }, - "events": [ - { - "uuid": "08939025-6a9b-4203-892a-31ffed90d7e1", - "start": { - "$date": "2022-06-22T16:25:26.000Z" - }, - "end": { - "$date": "2022-06-22T16:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "8926681e-7342-4769-8e58-528a5409b404", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-22T16:27:03.000Z" - }, - "end": { - "$date": "2022-06-23T00:48:57.000Z" - }, - "events": [ - { - "uuid": "42577493-dc41-4399-8afc-6b827f81a75f", - "start": { - "$date": "2022-06-22T16:27:03.000Z" - }, - "end": { - "$date": "2022-06-22T18:54:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce25d368-066d-4dff-a17c-f0bde1306f03", - "start": { - "$date": "2022-06-22T18:54:03.000Z" - }, - "end": { - "$date": "2022-06-22T18:58:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d858107d-d430-4945-9bcb-a9dc052ed4bd", - "start": { - "$date": "2022-06-22T18:58:03.000Z" - }, - "end": { - "$date": "2022-06-22T19:08:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cf66112a-09a1-4c3a-b11e-510278967299", - "start": { - "$date": "2022-06-22T19:08:03.000Z" - }, - "end": { - "$date": "2022-06-22T19:50:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9bfab7da-3706-4e39-b80a-f235e8f537fd", - "start": { - "$date": "2022-06-22T19:50:03.000Z" - }, - "end": { - "$date": "2022-06-23T00:48:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c2082f42-5dc3-471c-91e0-4906adbe3880", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-22T16:48:32.000Z" - }, - "end": { - "$date": "2022-06-22T17:09:58.000Z" - }, - "events": [ - { - "uuid": "485bec03-6ca5-4564-a07a-d06ebc35a7bf", - "start": { - "$date": "2022-06-22T16:48:32.000Z" - }, - "end": { - "$date": "2022-06-22T17:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "615c81a3-53ab-450f-88a6-436d1d3d2bc9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-22T18:48:06.000Z" - }, - "end": { - "$date": "2022-06-23T02:36:46.000Z" - }, - "events": [ - { - "uuid": "91143653-3184-4181-9ff3-fda6d32688ce", - "start": { - "$date": "2022-06-22T18:48:06.000Z" - }, - "end": { - "$date": "2022-06-22T19:51:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4439e519-8903-496d-86bb-37e162b38eb2", - "start": { - "$date": "2022-06-22T19:51:06.000Z" - }, - "end": { - "$date": "2022-06-22T21:04:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "68db1f97-592d-49ce-a4f2-08cfc51da2eb", - "start": { - "$date": "2022-06-22T21:04:06.000Z" - }, - "end": { - "$date": "2022-06-22T21:08:06.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b7632ff4-12f7-4d9e-a868-4987d2ccb726", - "start": { - "$date": "2022-06-22T21:08:06.000Z" - }, - "end": { - "$date": "2022-06-22T22:35:06.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f967cbdc-c072-4595-ae98-443e9450ba99", - "start": { - "$date": "2022-06-22T22:35:06.000Z" - }, - "end": { - "$date": "2022-06-23T02:36:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "02921f5c-f2c2-4f96-ad0d-cc49a0968b78", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T19:04:04.000Z" - }, - "end": { - "$date": "2022-06-22T19:07:30.000Z" - }, - "events": [ - { - "uuid": "f49ece66-0b95-442f-a8b7-14f7d3e6ac70", - "start": { - "$date": "2022-06-22T19:04:04.000Z" - }, - "end": { - "$date": "2022-06-22T19:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "9031294d-0890-4c0f-b70c-fbed9086c98c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T21:37:02.000Z" - }, - "end": { - "$date": "2022-06-22T22:19:37.000Z" - }, - "events": [ - { - "uuid": "b0ac1ab2-cc48-45c2-b8c1-1d99a7ecf6c5", - "start": { - "$date": "2022-06-22T21:37:02.000Z" - }, - "end": { - "$date": "2022-06-22T22:19:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "cebe62a3-750f-4aab-afdf-a4b5641a7f66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-22T22:04:05.000Z" - }, - "end": { - "$date": "2022-06-22T23:05:48.000Z" - }, - "events": [ - { - "uuid": "5ac688c3-f55d-4585-a1a1-7c2d9cf38786", - "start": { - "$date": "2022-06-22T22:04:05.000Z" - }, - "end": { - "$date": "2022-06-22T23:05:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9450e475-9751-409a-b6a2-4fa88240b964", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-22T22:48:11.000Z" - }, - "end": { - "$date": "2022-06-23T01:43:16.000Z" - }, - "events": [ - { - "uuid": "9f88c1d8-057f-4340-ad97-a6cb16d33887", - "start": { - "$date": "2022-06-22T22:48:11.000Z" - }, - "end": { - "$date": "2022-06-23T01:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "670feb4a-631d-4f11-8eed-7a292223bfa4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T23:40:53.000Z" - }, - "end": { - "$date": "2022-06-22T23:43:13.000Z" - }, - "events": [ - { - "uuid": "4398e1e5-5652-47a6-b1b5-37968303fc13", - "start": { - "$date": "2022-06-22T23:40:53.000Z" - }, - "end": { - "$date": "2022-06-22T23:43:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "ac4963c6-835d-4fc4-8a46-5f4ecd9bd102", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-22T23:43:54.000Z" - }, - "end": { - "$date": "2022-06-23T01:18:55.000Z" - }, - "events": [ - { - "uuid": "f1514177-d8e2-4689-8629-7b23387eff32", - "start": { - "$date": "2022-06-22T23:43:54.000Z" - }, - "end": { - "$date": "2022-06-23T01:18:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "815b8985-3086-42ba-911e-21ec5af08ad0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-23T00:26:48.000Z" - }, - "end": { - "$date": "2022-06-23T00:54:34.000Z" - }, - "events": [ - { - "uuid": "3d9339a4-c71b-4a14-bd5b-ba1de01490c6", - "start": { - "$date": "2022-06-23T00:26:48.000Z" - }, - "end": { - "$date": "2022-06-23T00:54:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c439429d-11ba-469a-b6d3-e023076adc35", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-23T01:00:29.000Z" - }, - "end": { - "$date": "2022-06-23T01:38:13.000Z" - }, - "events": [ - { - "uuid": "3f45954f-56f7-460c-ae18-1cd1f2ad72a5", - "start": { - "$date": "2022-06-23T01:00:29.000Z" - }, - "end": { - "$date": "2022-06-23T01:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "daa72c18-ca0b-4952-a1f4-1477e1198081", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-23T01:13:06.000Z" - }, - "end": { - "$date": "2022-06-23T01:14:26.000Z" - }, - "events": [ - { - "uuid": "59483629-2a21-4ab4-bfb6-781b6a63ece8", - "start": { - "$date": "2022-06-23T01:13:06.000Z" - }, - "end": { - "$date": "2022-06-23T01:14:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "f07f84eb-ff74-44ed-b60b-657cc27b700e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-23T01:38:28.000Z" - }, - "end": { - "$date": "2022-06-23T02:19:32.000Z" - }, - "events": [ - { - "uuid": "dc59c01a-9648-4a03-8a5c-008bdf85e006", - "start": { - "$date": "2022-06-23T01:38:28.000Z" - }, - "end": { - "$date": "2022-06-23T02:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "34052143-f180-42f8-b642-7460e1e046bb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-23T01:52:44.000Z" - }, - "end": { - "$date": "2022-06-23T03:12:50.000Z" - }, - "events": [ - { - "uuid": "cb343ed0-96c9-4cc0-a452-c463ebb11da1", - "start": { - "$date": "2022-06-23T01:52:44.000Z" - }, - "end": { - "$date": "2022-06-23T03:12:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "b93029b2-e26f-4d0c-a6c7-31d43325ec55", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-23T02:11:14.000Z" - }, - "end": { - "$date": "2022-06-23T03:00:01.000Z" - }, - "events": [ - { - "uuid": "e0e97243-d659-4206-a248-364c72c266bc", - "start": { - "$date": "2022-06-23T02:11:14.000Z" - }, - "end": { - "$date": "2022-06-23T03:00:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "a032e4f7-9d59-47b8-aaf7-eaf3296d6e38", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-23T02:20:12.000Z" - }, - "end": { - "$date": "2022-06-23T03:58:49.000Z" - }, - "events": [ - { - "uuid": "f90718dc-3c03-4ef2-b2a8-3d28ecb8c013", - "start": { - "$date": "2022-06-23T02:20:12.000Z" - }, - "end": { - "$date": "2022-06-23T03:58:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "503dc540-8add-49b4-9b1b-2c5ef33096c8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-23T02:30:58.000Z" - }, - "end": { - "$date": "2022-06-23T03:06:36.000Z" - }, - "events": [ - { - "uuid": "0d76c72c-de78-4b05-9ac8-312d83f4faeb", - "start": { - "$date": "2022-06-23T02:30:58.000Z" - }, - "end": { - "$date": "2022-06-23T03:06:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fbc04401-43bf-429d-bd3d-777654c3b796", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-23T03:13:05.000Z" - }, - "end": { - "$date": "2022-06-23T03:49:42.000Z" - }, - "events": [ - { - "uuid": "1e6250c4-770c-4926-899d-bdf842743c86", - "start": { - "$date": "2022-06-23T03:13:05.000Z" - }, - "end": { - "$date": "2022-06-23T03:49:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "273e3ee4-7645-4458-bb2f-778f6025cc9c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-23T03:48:34.000Z" - }, - "end": { - "$date": "2022-06-23T06:48:30.000Z" - }, - "events": [ - { - "uuid": "5682968c-6b04-4cdd-a061-2d451ad4ec98", - "start": { - "$date": "2022-06-23T03:48:34.000Z" - }, - "end": { - "$date": "2022-06-23T06:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "c7518075-a7d4-423b-a049-1799eb209905", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-23T03:59:09.000Z" - }, - "end": { - "$date": "2022-06-23T05:10:49.000Z" - }, - "events": [ - { - "uuid": "18181a6b-5ff8-4642-8bbc-4a344f13eaaf", - "start": { - "$date": "2022-06-23T03:59:09.000Z" - }, - "end": { - "$date": "2022-06-23T05:10:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4d8d9414-a6fa-4cc4-8858-fde3b9d2cb42", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-23T04:23:56.000Z" - }, - "end": { - "$date": "2022-06-23T06:48:39.000Z" - }, - "events": [ - { - "uuid": "80c9f2c2-0556-4d1c-9547-5482cb1d1b22", - "start": { - "$date": "2022-06-23T04:23:56.000Z" - }, - "end": { - "$date": "2022-06-23T06:48:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "a5cb1647-7b11-43dc-b569-aff283732029", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-23T06:06:05.000Z" - }, - "end": { - "$date": "2022-06-23T06:15:30.000Z" - }, - "events": [ - { - "uuid": "07f73326-aa88-403d-b2f0-0e2c1c071974", - "start": { - "$date": "2022-06-23T06:06:05.000Z" - }, - "end": { - "$date": "2022-06-23T06:15:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "30e3bf1d-c7ac-4ea0-9979-9b01290dda60", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-23T05:11:54.000Z" - }, - "end": { - "$date": "2022-06-23T06:29:48.000Z" - }, - "events": [ - { - "uuid": "5e94562f-348f-4637-b987-db4881147d56", - "start": { - "$date": "2022-06-23T05:11:54.000Z" - }, - "end": { - "$date": "2022-06-23T06:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7b0f0a8a-6ea9-4f64-8538-07722954ba11", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-23T17:09:23.000Z" - }, - "end": { - "$date": "2022-06-23T18:47:05.000Z" - }, - "events": [ - { - "uuid": "8b1bd092-b232-4626-b37e-6f6868e6ba06", - "start": { - "$date": "2022-06-23T17:09:23.000Z" - }, - "end": { - "$date": "2022-06-23T18:47:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "597da8c8-8ff9-4d6a-b87c-538a45c6586e", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-23T16:36:49.000Z" - }, - "end": { - "$date": "2022-06-23T17:49:17.000Z" - }, - "events": [ - { - "uuid": "9ce9deeb-3321-47f7-ae1f-d4796d63581a", - "start": { - "$date": "2022-06-23T16:36:49.000Z" - }, - "end": { - "$date": "2022-06-23T17:49:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "fce22dd4-fce2-4f50-8fdb-aec8d459dc34", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-23T16:48:56.000Z" - }, - "end": { - "$date": "2022-06-23T16:55:05.000Z" - }, - "events": [ - { - "uuid": "79797174-87ba-4634-a222-2dba1f7b1d76", - "start": { - "$date": "2022-06-23T16:48:56.000Z" - }, - "end": { - "$date": "2022-06-23T16:55:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df9316ce-72cf-49d9-86a8-453d801da4d1", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-23T18:09:02.000Z" - }, - "end": { - "$date": "2022-06-23T18:14:56.000Z" - }, - "events": [ - { - "uuid": "53b4c6f4-75c2-4ac8-8171-e62fc7a10107", - "start": { - "$date": "2022-06-23T18:09:02.000Z" - }, - "end": { - "$date": "2022-06-23T18:14:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "39e9f0d3-73c7-4406-9875-f2a2718c1d79", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-23T18:15:07.000Z" - }, - "end": { - "$date": "2022-06-23T18:55:19.000Z" - }, - "events": [ - { - "uuid": "c7556f48-2465-4b57-8c04-a88d4ed5ecae", - "start": { - "$date": "2022-06-23T18:15:07.000Z" - }, - "end": { - "$date": "2022-06-23T18:55:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "5150dd26-9d0c-4482-b14e-807b669897d2", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-23T21:48:08.000Z" - }, - "end": { - "$date": "2022-06-23T22:55:03.000Z" - }, - "events": [ - { - "uuid": "76ae5783-a170-4a02-a079-d2f3f10d2f74", - "start": { - "$date": "2022-06-23T21:48:08.000Z" - }, - "end": { - "$date": "2022-06-23T22:55:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "7ff0a2bb-3f5f-4b86-a3b2-7978c51e5d58", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-23T21:49:53.000Z" - }, - "end": { - "$date": "2022-06-23T22:09:58.000Z" - }, - "events": [ - { - "uuid": "642be861-e9e1-447e-8b15-00c4acf8e9b6", - "start": { - "$date": "2022-06-23T21:49:53.000Z" - }, - "end": { - "$date": "2022-06-23T22:09:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "f0974e0d-c660-4996-97b5-34ff73649158", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-23T22:13:44.000Z" - }, - "end": { - "$date": "2022-06-23T22:24:01.000Z" - }, - "events": [ - { - "uuid": "a3fbca14-db1f-4973-aa09-8a3f3f48914d", - "start": { - "$date": "2022-06-23T22:13:44.000Z" - }, - "end": { - "$date": "2022-06-23T22:24:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "848de920-c28d-41c7-8fb2-1f46596f4db8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-23T22:45:14.000Z" - }, - "end": { - "$date": "2022-06-24T00:13:00.000Z" - }, - "events": [ - { - "uuid": "bad501f8-7553-4126-86ca-6e6dfe8a167a", - "start": { - "$date": "2022-06-23T22:45:14.000Z" - }, - "end": { - "$date": "2022-06-24T00:13:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a4b20f07-c3eb-4b01-8e80-f49d5f82c999", - "uuid": "f5fffe78-78cb-468d-9b26-996726d1eba4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-23T22:50:49.000Z" - }, - "end": { - "$date": "2022-06-24T02:03:29.000Z" - }, - "events": [ - { - "uuid": "ebb256c4-46c6-4330-a266-f952bf8b3ad9", - "start": { - "$date": "2022-06-23T22:50:49.000Z" - }, - "end": { - "$date": "2022-06-24T02:03:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "59e4baaf-de0e-4854-b3a7-7b350018defb", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-23T23:57:02.000Z" - }, - "end": { - "$date": "2022-06-24T00:45:17.000Z" - }, - "events": [ - { - "uuid": "15545c83-d391-4f85-96b4-44af01f065d0", - "start": { - "$date": "2022-06-23T23:57:02.000Z" - }, - "end": { - "$date": "2022-06-24T00:25:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f97cdf94-24c9-444b-8608-6c37c4a8d50f", - "start": { - "$date": "2022-06-24T00:25:02.000Z" - }, - "end": { - "$date": "2022-06-24T00:32:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ff80eb03-a0e3-48e7-a38f-02fa1bf9e821", - "start": { - "$date": "2022-06-24T00:32:02.000Z" - }, - "end": { - "$date": "2022-06-24T00:45:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "5f47fde0-1173-44ea-b16b-ef238193ea51", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-24T00:18:50.000Z" - }, - "end": { - "$date": "2022-06-24T00:45:27.000Z" - }, - "events": [ - { - "uuid": "3abfd4b7-2811-40a1-a58c-d5f7bb9458ec", - "start": { - "$date": "2022-06-24T00:18:50.000Z" - }, - "end": { - "$date": "2022-06-24T00:45:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "17c9efc9-a45d-4e00-bbc1-9d1a707d53bc", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-24T01:03:29.000Z" - }, - "end": { - "$date": "2022-06-24T03:15:40.000Z" - }, - "events": [ - { - "uuid": "1eb3721a-f329-47ef-88ab-ea38debe6fb2", - "start": { - "$date": "2022-06-24T01:03:29.000Z" - }, - "end": { - "$date": "2022-06-24T03:15:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "48ea52b9-e8d2-40e5-b4a1-c6a7292a4e7e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-24T01:55:13.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:40.000Z" - }, - "events": [ - { - "uuid": "68da77d0-0264-4e88-ac18-b10e35ad5d5b", - "start": { - "$date": "2022-06-24T01:55:13.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3bece736-1f11-4e33-9b06-1dcdfd502941", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-24T01:58:50.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:22.000Z" - }, - "events": [ - { - "uuid": "325635e3-5cb2-4dd4-a898-06161e8f0f4a", - "start": { - "$date": "2022-06-24T01:58:50.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3ca5635c-2a49-4169-bd91-c54397dc1dc3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-24T02:22:04.000Z" - }, - "end": { - "$date": "2022-06-24T04:02:47.000Z" - }, - "events": [ - { - "uuid": "f8ce81e0-9080-4983-b2fb-880632f0c80a", - "start": { - "$date": "2022-06-24T02:22:04.000Z" - }, - "end": { - "$date": "2022-06-24T04:02:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "b9cc95ee-5430-4db2-84fe-77c4c6c12692", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-24T02:49:01.000Z" - }, - "end": { - "$date": "2022-06-24T03:07:12.000Z" - }, - "events": [ - { - "uuid": "4231e539-22e9-45af-b703-5b3e36b410f3", - "start": { - "$date": "2022-06-24T02:49:01.000Z" - }, - "end": { - "$date": "2022-06-24T03:07:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "fdcc2886-e47c-477c-86cc-e798a64dcf35", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-24T03:07:57.000Z" - }, - "end": { - "$date": "2022-06-24T06:03:02.000Z" - }, - "events": [ - { - "uuid": "8895438a-41b2-4548-8ba1-dc1728a91199", - "start": { - "$date": "2022-06-24T03:07:57.000Z" - }, - "end": { - "$date": "2022-06-24T06:03:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a7629671-b865-4158-9c03-a1ec49f77561", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-24T03:19:41.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:32.000Z" - }, - "events": [ - { - "uuid": "289276ca-75f2-4d58-a2d8-7577402177a5", - "start": { - "$date": "2022-06-24T03:19:41.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a9f2fc12-6ad6-4837-91da-ce351cb5f9bf", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-24T03:28:01.000Z" - }, - "end": { - "$date": "2022-06-24T05:58:33.000Z" - }, - "events": [ - { - "uuid": "4d7bf309-5ab4-40cd-a303-bda9284895ad", - "start": { - "$date": "2022-06-24T03:28:01.000Z" - }, - "end": { - "$date": "2022-06-24T05:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0a9aab4d-71cb-43ac-a8d9-0c04da277d17", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-24T03:32:11.000Z" - }, - "end": { - "$date": "2022-06-24T03:56:56.000Z" - }, - "events": [ - { - "uuid": "76f8bb08-7eeb-4d40-9040-173b495fe26f", - "start": { - "$date": "2022-06-24T03:32:11.000Z" - }, - "end": { - "$date": "2022-06-24T03:56:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "bab02299-dcd3-4028-a50b-f8590e208359", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-24T03:57:41.000Z" - }, - "end": { - "$date": "2022-06-24T04:37:33.000Z" - }, - "events": [ - { - "uuid": "f579ae3f-245b-4e58-b22b-c3665dfc5ce7", - "start": { - "$date": "2022-06-24T03:57:41.000Z" - }, - "end": { - "$date": "2022-06-24T04:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dcf71bdc-8d5b-4cdf-96ff-3873f9c86e8c", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-24T04:16:24.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:38.000Z" - }, - "events": [ - { - "uuid": "ea71e306-02b9-4c99-8d53-cde38eade415", - "start": { - "$date": "2022-06-24T04:16:24.000Z" - }, - "end": { - "$date": "2022-06-24T06:41:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "66fd24d5-8d8c-4de0-98c7-92a9b949fceb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-24T06:41:34.000Z" - }, - "end": { - "$date": "2022-06-24T06:48:25.000Z" - }, - "events": [ - { - "uuid": "93d19e2c-96d1-43af-8128-5227f7bc15b2", - "start": { - "$date": "2022-06-24T06:41:34.000Z" - }, - "end": { - "$date": "2022-06-24T06:48:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "85e70bb0-d93a-410e-82a1-74f4b79a2298", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-24T05:59:44.000Z" - }, - "end": { - "$date": "2022-06-24T06:02:24.000Z" - }, - "events": [ - { - "uuid": "00fda765-9936-473a-ba85-ec83eae1c69d", - "start": { - "$date": "2022-06-24T05:59:44.000Z" - }, - "end": { - "$date": "2022-06-24T06:02:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "7dcbd9b1-4128-4396-8c57-87d7b02fa154", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-24T06:09:45.000Z" - }, - "end": { - "$date": "2022-06-24T06:13:09.000Z" - }, - "events": [ - { - "uuid": "e3259148-ca4c-4bb2-8ef7-a9e2f8d75c74", - "start": { - "$date": "2022-06-24T06:09:45.000Z" - }, - "end": { - "$date": "2022-06-24T06:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "687abd32-77a5-4b49-93d0-793f8190807d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-24T06:19:56.000Z" - }, - "end": { - "$date": "2022-06-24T06:32:31.000Z" - }, - "events": [ - { - "uuid": "8584eb20-c06e-4963-8e9d-20b5cc074ce8", - "start": { - "$date": "2022-06-24T06:19:56.000Z" - }, - "end": { - "$date": "2022-06-24T06:32:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "370d9f6a-d757-4ef5-b728-6f9d96f3c59a", - "uuid": "f0d24b19-4bef-47d3-b7d0-d5fe149407dd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-24T09:46:45.000Z" - }, - "end": { - "$date": "2022-06-24T11:23:58.000Z" - }, - "events": [ - { - "uuid": "179bee6c-d78c-4913-93d0-cdeccef31e10", - "start": { - "$date": "2022-06-24T09:46:45.000Z" - }, - "end": { - "$date": "2022-06-24T11:23:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "88df6fd9-8be6-41c4-b520-61530183dcab", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-24T17:00:15.000Z" - }, - "end": { - "$date": "2022-06-25T05:08:31.000Z" - }, - "events": [ - { - "uuid": "d31c9e6c-eb18-476e-9d5b-427350883ab9", - "start": { - "$date": "2022-06-24T17:00:15.000Z" - }, - "end": { - "$date": "2022-06-25T00:42:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6f184ba0-551f-484a-a3e8-c31b16b543eb", - "start": { - "$date": "2022-06-25T00:42:15.000Z" - }, - "end": { - "$date": "2022-06-25T00:56:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1a4fdcb9-4114-42f2-ba47-6b6a4d5fcaed", - "start": { - "$date": "2022-06-25T00:56:15.000Z" - }, - "end": { - "$date": "2022-06-25T01:09:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "368b2909-19cf-4b6b-9991-8756691ce2dd", - "start": { - "$date": "2022-06-25T01:09:15.000Z" - }, - "end": { - "$date": "2022-06-25T01:13:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8031f1d3-a5b2-4a66-8ec1-f2ed211edd4e", - "start": { - "$date": "2022-06-25T01:13:15.000Z" - }, - "end": { - "$date": "2022-06-25T02:18:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a4ef1c1c-d675-4c76-b858-da5ca4b809ec", - "start": { - "$date": "2022-06-25T02:18:15.000Z" - }, - "end": { - "$date": "2022-06-25T02:46:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c93c471-d145-4c17-891c-05600cfaf17e", - "start": { - "$date": "2022-06-25T02:46:15.000Z" - }, - "end": { - "$date": "2022-06-25T05:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "dfa044ea-fc4e-4301-b229-9c2dc7c11108", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-24T17:33:34.000Z" - }, - "end": { - "$date": "2022-06-24T20:01:28.000Z" - }, - "events": [ - { - "uuid": "0f36cc76-da1b-40a4-91c2-aa470ecc106d", - "start": { - "$date": "2022-06-24T17:33:34.000Z" - }, - "end": { - "$date": "2022-06-24T20:01:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "e7fc14bd-6d51-42e0-ac30-0532abf70585", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-24T18:19:58.000Z" - }, - "end": { - "$date": "2022-06-24T18:36:39.000Z" - }, - "events": [ - { - "uuid": "49414f3e-76c0-4a5e-8070-40c5ac8a9ff2", - "start": { - "$date": "2022-06-24T18:19:58.000Z" - }, - "end": { - "$date": "2022-06-24T18:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "f0c5f434-9f8c-4484-afae-15b709fed66e", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-24T20:12:12.000Z" - }, - "end": { - "$date": "2022-06-24T20:17:43.000Z" - }, - "events": [ - { - "uuid": "f135a525-7e0b-4497-a475-0ee440cc63ee", - "start": { - "$date": "2022-06-24T20:12:12.000Z" - }, - "end": { - "$date": "2022-06-24T20:17:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "9c2182ca-376d-4f55-a5a3-8f21e7c7eaa4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-24T22:31:04.000Z" - }, - "end": { - "$date": "2022-06-25T01:54:42.000Z" - }, - "events": [ - { - "uuid": "dc875bc0-f84f-447b-bb72-ba771d4852da", - "start": { - "$date": "2022-06-24T22:31:04.000Z" - }, - "end": { - "$date": "2022-06-25T01:54:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8aa4660d-5860-408b-a2d6-4bc2d3fb7cf8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-24T23:55:06.000Z" - }, - "end": { - "$date": "2022-06-25T01:00:55.000Z" - }, - "events": [ - { - "uuid": "28ba5d27-1cb4-41c6-a45b-7e710c0fdb83", - "start": { - "$date": "2022-06-24T23:55:06.000Z" - }, - "end": { - "$date": "2022-06-25T01:00:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "27517206-ef19-441a-aed6-d41cef531ac0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-25T00:30:43.000Z" - }, - "end": { - "$date": "2022-06-25T01:53:18.000Z" - }, - "events": [ - { - "uuid": "f04daa06-971c-4cfc-9a77-907a0f2f2d45", - "start": { - "$date": "2022-06-25T00:30:43.000Z" - }, - "end": { - "$date": "2022-06-25T01:53:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fcf881e7-cce9-4934-8bd8-16ee38482443", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-25T01:40:09.000Z" - }, - "end": { - "$date": "2022-06-25T02:03:39.000Z" - }, - "events": [ - { - "uuid": "ddd6f8fb-5f25-4102-b815-1db1f6d5a623", - "start": { - "$date": "2022-06-25T01:40:09.000Z" - }, - "end": { - "$date": "2022-06-25T02:03:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "947fa04c-4528-46e3-bb1c-261d4441a3da", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-25T01:43:54.000Z" - }, - "end": { - "$date": "2022-06-25T06:45:33.000Z" - }, - "events": [ - { - "uuid": "8a19590c-f059-43e9-b4cf-7143204be9b5", - "start": { - "$date": "2022-06-25T01:43:54.000Z" - }, - "end": { - "$date": "2022-06-25T06:45:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "64b5dfa9-16b8-489c-bfbc-a9e6af75f416", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-25T02:03:48.000Z" - }, - "end": { - "$date": "2022-06-25T06:45:37.000Z" - }, - "events": [ - { - "uuid": "25bd3cfe-8727-4382-b4da-9553020c0ef4", - "start": { - "$date": "2022-06-25T02:03:48.000Z" - }, - "end": { - "$date": "2022-06-25T06:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "daab98b7-908b-446d-b779-38a7549564d5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-25T02:28:26.000Z" - }, - "end": { - "$date": "2022-06-25T02:55:48.000Z" - }, - "events": [ - { - "uuid": "4f3c2f56-c0ba-43e4-ba28-0ea02bd17d9b", - "start": { - "$date": "2022-06-25T02:28:26.000Z" - }, - "end": { - "$date": "2022-06-25T02:55:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bdef0b75-003d-47a0-ab67-5cc12e6085cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-25T03:09:00.000Z" - }, - "end": { - "$date": "2022-06-25T06:06:40.000Z" - }, - "events": [ - { - "uuid": "9a143ba3-7a90-47c1-8d3f-7cb040b6f326", - "start": { - "$date": "2022-06-25T03:09:00.000Z" - }, - "end": { - "$date": "2022-06-25T06:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "12a2e6a1-d363-44d7-b6c2-d8ea262ba45a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-25T03:49:30.000Z" - }, - "end": { - "$date": "2022-06-25T06:20:19.000Z" - }, - "events": [ - { - "uuid": "2cc42d8c-241e-4da0-b463-160309e77d93", - "start": { - "$date": "2022-06-25T03:49:30.000Z" - }, - "end": { - "$date": "2022-06-25T06:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "01b427e6-5789-4b90-86ce-9d1e277af926", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-25T05:10:40.000Z" - }, - "end": { - "$date": "2022-06-25T06:27:34.000Z" - }, - "events": [ - { - "uuid": "4a3cb25d-aafd-44ef-89ef-e0d4b5dea06d", - "start": { - "$date": "2022-06-25T05:10:40.000Z" - }, - "end": { - "$date": "2022-06-25T06:27:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c743cd14-7504-4b38-a05d-97fbe06cd783", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-25T05:17:49.000Z" - }, - "end": { - "$date": "2022-06-25T06:19:40.000Z" - }, - "events": [ - { - "uuid": "bf29786e-220e-49dc-bced-3e98e24887da", - "start": { - "$date": "2022-06-25T05:17:49.000Z" - }, - "end": { - "$date": "2022-06-25T06:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "197f27c8-dac3-4847-ae99-37a320977d3e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-25T06:28:29.000Z" - }, - "end": { - "$date": "2022-06-25T06:31:10.000Z" - }, - "events": [ - { - "uuid": "ccac8a41-8b7e-42f2-9576-9aa660c3a767", - "start": { - "$date": "2022-06-25T06:28:29.000Z" - }, - "end": { - "$date": "2022-06-25T06:31:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "efa85d62-71cd-49a9-9a3d-d57e77dccb4c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-25T06:34:55.000Z" - }, - "end": { - "$date": "2022-06-25T07:04:38.000Z" - }, - "events": [ - { - "uuid": "e5aa1e8c-829f-420a-b232-a7361a8120ec", - "start": { - "$date": "2022-06-25T06:34:55.000Z" - }, - "end": { - "$date": "2022-06-25T07:04:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "2831794c-82ee-4625-84ef-9f3bae459221", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-25T06:57:10.000Z" - }, - "end": { - "$date": "2022-06-25T07:06:23.000Z" - }, - "events": [ - { - "uuid": "2eafe445-b1c6-4dbe-af00-f8a62817c548", - "start": { - "$date": "2022-06-25T06:57:10.000Z" - }, - "end": { - "$date": "2022-06-25T07:06:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "c56af16d-84d2-4c4d-8bfc-b1fd16f9a208", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-25T06:58:29.000Z" - }, - "end": { - "$date": "2022-06-25T07:06:10.000Z" - }, - "events": [ - { - "uuid": "c972b660-07a6-4dff-978d-d740ee24c399", - "start": { - "$date": "2022-06-25T06:58:29.000Z" - }, - "end": { - "$date": "2022-06-25T07:06:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3d27dfe3-1770-4b78-b10b-494c66a8e63f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-25T07:05:43.000Z" - }, - "end": { - "$date": "2022-06-25T07:36:50.000Z" - }, - "events": [ - { - "uuid": "05911d32-fc77-4f2c-9ebb-f66864359156", - "start": { - "$date": "2022-06-25T07:05:43.000Z" - }, - "end": { - "$date": "2022-06-25T07:36:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "4361348c-7f22-400e-93e7-328674b58603", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-25T07:20:47.000Z" - }, - "end": { - "$date": "2022-06-25T08:46:07.000Z" - }, - "events": [ - { - "uuid": "d9d6c314-5c0a-4195-a584-bd207f3b9b68", - "start": { - "$date": "2022-06-25T07:20:47.000Z" - }, - "end": { - "$date": "2022-06-25T08:46:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "e76eb15c-0447-4076-a2a5-8285196caf08", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-25T07:37:35.000Z" - }, - "end": { - "$date": "2022-06-25T07:47:17.000Z" - }, - "events": [ - { - "uuid": "984cb3a2-7f61-42f3-b729-5795529bc3c6", - "start": { - "$date": "2022-06-25T07:37:35.000Z" - }, - "end": { - "$date": "2022-06-25T07:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "3ec483bf-4656-4ff2-9e93-212cc29e8193", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-25T11:33:04.000Z" - }, - "end": { - "$date": "2022-06-25T12:36:28.000Z" - }, - "events": [ - { - "uuid": "d6249516-c53a-45e7-a70d-f4e955bd06bd", - "start": { - "$date": "2022-06-25T11:33:04.000Z" - }, - "end": { - "$date": "2022-06-25T12:36:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7ebce693-dafe-4c0d-9ec6-80ccf2d5fd8b", - "uuid": "25350a8a-16d6-44cd-a5dc-557abc2890c6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-25T13:56:33.000Z" - }, - "end": { - "$date": "2022-06-25T14:22:34.000Z" - }, - "events": [ - { - "uuid": "c0340e66-b75e-4c4d-87ca-a3dfa947c2c3", - "start": { - "$date": "2022-06-25T13:56:33.000Z" - }, - "end": { - "$date": "2022-06-25T14:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "5ec2d32b-b79b-457d-835a-92b64e51750d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-25T14:32:29.000Z" - }, - "end": { - "$date": "2022-06-25T14:38:00.000Z" - }, - "events": [ - { - "uuid": "4ff00553-31c8-463c-af48-3c7e0998599d", - "start": { - "$date": "2022-06-25T14:32:29.000Z" - }, - "end": { - "$date": "2022-06-25T14:38:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "88e69321-beae-483d-8773-624ab3c99d55", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-25T14:48:55.000Z" - }, - "end": { - "$date": "2022-06-25T17:44:58.000Z" - }, - "events": [ - { - "uuid": "63ef47f5-2d94-4272-a286-14b92087e079", - "start": { - "$date": "2022-06-25T14:48:55.000Z" - }, - "end": { - "$date": "2022-06-25T17:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "37f23f42-aaf6-48b1-b24d-7c3b667313a6", - "uuid": "a53e815a-262d-41bc-ad3b-1c600d4d962a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-25T16:31:15.000Z" - }, - "end": { - "$date": "2022-06-25T21:14:39.000Z" - }, - "events": [ - { - "uuid": "06a2734a-92a2-4fbf-a87c-24ddd6bcebfc", - "start": { - "$date": "2022-06-25T16:31:15.000Z" - }, - "end": { - "$date": "2022-06-25T21:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7c8f0564-5751-4824-a9a0-f48d4a684bec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-25T16:53:24.000Z" - }, - "end": { - "$date": "2022-06-25T17:08:47.000Z" - }, - "events": [ - { - "uuid": "6b514c8e-2426-43bc-a525-837cc0f0ee72", - "start": { - "$date": "2022-06-25T16:53:24.000Z" - }, - "end": { - "$date": "2022-06-25T17:08:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "23fa87fa-6769-43d6-9469-6e322e4e5184", - "uuid": "0a42631e-2751-40ff-90a5-21b3a52e3938", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-25T18:42:22.000Z" - }, - "end": { - "$date": "2022-06-25T18:49:12.000Z" - }, - "events": [ - { - "uuid": "db657a3a-418e-46b8-a5a5-91d34921d8a9", - "start": { - "$date": "2022-06-25T18:42:22.000Z" - }, - "end": { - "$date": "2022-06-25T18:49:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3bd30fee-0bd5-41f1-a118-c692959cae5c", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-25T19:02:34.000Z" - }, - "end": { - "$date": "2022-06-25T20:18:34.000Z" - }, - "events": [ - { - "uuid": "22daf264-f1f7-4fea-9f8c-1fa1e0e446b7", - "start": { - "$date": "2022-06-25T19:02:34.000Z" - }, - "end": { - "$date": "2022-06-25T19:34:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4567b58e-a4dc-4884-9280-736a814fe691", - "start": { - "$date": "2022-06-25T19:34:34.000Z" - }, - "end": { - "$date": "2022-06-25T19:47:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ca5fb3c0-6f45-4dc0-bc80-b1885d11f196", - "start": { - "$date": "2022-06-25T19:47:34.000Z" - }, - "end": { - "$date": "2022-06-25T20:18:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "12752e0a-c244-4e07-80b7-4fd97c9443e1", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-25T19:47:33.000Z" - }, - "end": { - "$date": "2022-06-25T19:48:38.000Z" - }, - "events": [ - { - "uuid": "9a3d1fc9-86c2-4695-ab02-6293ab74facf", - "start": { - "$date": "2022-06-25T19:47:33.000Z" - }, - "end": { - "$date": "2022-06-25T19:48:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "01eb4ef6-a596-4083-8765-ccefb842c3d0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-25T19:57:34.000Z" - }, - "end": { - "$date": "2022-06-25T20:03:35.000Z" - }, - "events": [ - { - "uuid": "905f5624-9914-4fb0-b144-9ecb75419ed6", - "start": { - "$date": "2022-06-25T19:57:34.000Z" - }, - "end": { - "$date": "2022-06-25T20:03:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "f69f5859-f202-4003-b09c-aa505bac4627", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-25T19:02:34.000Z" - }, - "end": { - "$date": "2022-06-25T20:31:32.000Z" - }, - "events": [ - { - "uuid": "25ca7888-06f8-4e58-8bd5-241ac3e40e31", - "start": { - "$date": "2022-06-25T19:02:34.000Z" - }, - "end": { - "$date": "2022-06-25T19:04:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "714f7844-e099-4ebd-866b-593791f279f1", - "start": { - "$date": "2022-06-25T19:04:34.000Z" - }, - "end": { - "$date": "2022-06-25T20:31:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "abb8f99a-690e-4f5c-aeba-5b99ab7ff5df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-25T20:59:31.000Z" - }, - "end": { - "$date": "2022-06-25T22:20:26.000Z" - }, - "events": [ - { - "uuid": "46349775-76b9-4f92-ab78-913f2dfcaf96", - "start": { - "$date": "2022-06-25T20:59:31.000Z" - }, - "end": { - "$date": "2022-06-25T22:20:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "64525b47-76ac-4753-bfb8-ef0dc4231714", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-25T21:14:59.000Z" - }, - "end": { - "$date": "2022-06-25T21:17:54.000Z" - }, - "events": [ - { - "uuid": "51af2e75-5674-468c-80c6-033ea5055509", - "start": { - "$date": "2022-06-25T21:14:59.000Z" - }, - "end": { - "$date": "2022-06-25T21:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "bcc25273-b508-4cb8-be61-ff0b51d7bf89", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-25T21:18:04.000Z" - }, - "end": { - "$date": "2022-06-25T22:08:10.000Z" - }, - "events": [ - { - "uuid": "135b28ad-c3ef-4f0c-b175-ec3418607c29", - "start": { - "$date": "2022-06-25T21:18:04.000Z" - }, - "end": { - "$date": "2022-06-25T22:08:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8f31195b-d02d-443a-a66c-d5f1ea498fc8", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-25T23:20:02.000Z" - }, - "end": { - "$date": "2022-06-25T23:40:55.000Z" - }, - "events": [ - { - "uuid": "ff06b4f8-9aae-4223-8a9b-5060f1024832", - "start": { - "$date": "2022-06-25T23:20:02.000Z" - }, - "end": { - "$date": "2022-06-25T23:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cb92eba3-625b-4855-a597-d3aa40b20fa3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-25T23:45:03.000Z" - }, - "end": { - "$date": "2022-06-25T23:50:40.000Z" - }, - "events": [ - { - "uuid": "4ed917b9-c3fc-4e92-8ddc-43273f1b746d", - "start": { - "$date": "2022-06-25T23:45:03.000Z" - }, - "end": { - "$date": "2022-06-25T23:50:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "f5692c5d-b321-400c-b74e-1a62ab1d8b62", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-25T23:55:42.000Z" - }, - "end": { - "$date": "2022-06-26T01:17:12.000Z" - }, - "events": [ - { - "uuid": "6ea87b2e-0413-4c24-beef-4d3636dad807", - "start": { - "$date": "2022-06-25T23:55:42.000Z" - }, - "end": { - "$date": "2022-06-26T01:17:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "206515bc-a55d-4164-abf7-359f330b4cbd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-26T00:02:12.000Z" - }, - "end": { - "$date": "2022-06-26T01:55:40.000Z" - }, - "events": [ - { - "uuid": "58bec1d4-2673-460f-823d-f942ed339434", - "start": { - "$date": "2022-06-26T00:02:12.000Z" - }, - "end": { - "$date": "2022-06-26T01:55:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "62b975ed-b40a-4c74-9c07-3bed9193783c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-26T00:02:23.000Z" - }, - "end": { - "$date": "2022-06-26T01:47:17.000Z" - }, - "events": [ - { - "uuid": "abd11c55-d940-494b-9b7f-a55c6c3622f7", - "start": { - "$date": "2022-06-26T00:02:23.000Z" - }, - "end": { - "$date": "2022-06-26T01:47:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "0ee3e44e-f88f-460f-beb5-71197ac9a52d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-26T00:56:58.000Z" - }, - "end": { - "$date": "2022-06-26T01:01:28.000Z" - }, - "events": [ - { - "uuid": "6c5a9f21-84fb-4135-9eff-1719dc19b057", - "start": { - "$date": "2022-06-26T00:56:58.000Z" - }, - "end": { - "$date": "2022-06-26T01:01:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2c5f6998-321d-4e7e-aeab-b5619c60d27e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-26T01:13:28.000Z" - }, - "end": { - "$date": "2022-06-26T03:43:49.000Z" - }, - "events": [ - { - "uuid": "0d72fa7f-4177-4bad-8ad3-528ded20654b", - "start": { - "$date": "2022-06-26T01:13:28.000Z" - }, - "end": { - "$date": "2022-06-26T03:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "6ced1f2f-b317-40d7-a622-e008761b93d4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-26T01:36:49.000Z" - }, - "end": { - "$date": "2022-06-26T09:22:08.000Z" - }, - "events": [ - { - "uuid": "b0f46f17-b019-4329-a73d-b871a94adb53", - "start": { - "$date": "2022-06-26T01:36:49.000Z" - }, - "end": { - "$date": "2022-06-26T09:22:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "f7604a9c-cf2f-4f24-a637-d64eec5a8be2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-26T01:56:10.000Z" - }, - "end": { - "$date": "2022-06-26T05:52:50.000Z" - }, - "events": [ - { - "uuid": "0432b932-0496-4f0c-a4d3-5bc3b326ab02", - "start": { - "$date": "2022-06-26T01:56:10.000Z" - }, - "end": { - "$date": "2022-06-26T05:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6267a5e8-bc0e-4527-b887-b837da94d63f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-26T03:43:08.000Z" - }, - "end": { - "$date": "2022-06-26T04:40:44.000Z" - }, - "events": [ - { - "uuid": "3154704d-e911-46b1-9019-806faee05411", - "start": { - "$date": "2022-06-26T03:43:08.000Z" - }, - "end": { - "$date": "2022-06-26T04:40:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0696f3a0-318f-46b0-a080-a26368ed1080", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-26T03:22:19.000Z" - }, - "end": { - "$date": "2022-06-26T06:10:25.000Z" - }, - "events": [ - { - "uuid": "eb50dc96-daf5-4c6a-84cb-cf956eb79c4a", - "start": { - "$date": "2022-06-26T03:22:19.000Z" - }, - "end": { - "$date": "2022-06-26T06:10:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a92fa771-acba-4762-bbd0-cdaed27fd777", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-26T03:26:39.000Z" - }, - "end": { - "$date": "2022-06-26T03:30:49.000Z" - }, - "events": [ - { - "uuid": "4fde8a09-e562-458e-bb10-a4b868d87e36", - "start": { - "$date": "2022-06-26T03:26:39.000Z" - }, - "end": { - "$date": "2022-06-26T03:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "378485f7-515a-4465-930a-3f76f62240ad", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-26T03:31:25.000Z" - }, - "end": { - "$date": "2022-06-26T07:13:59.000Z" - }, - "events": [ - { - "uuid": "a5ca14f9-da2d-4532-9f16-a6e3aadc1fd8", - "start": { - "$date": "2022-06-26T03:31:25.000Z" - }, - "end": { - "$date": "2022-06-26T07:13:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "1ddb3900-b8ce-4f84-a90e-d01d46a2e2e1", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-06-26T04:20:25.000Z" - }, - "end": { - "$date": "2022-06-26T05:43:31.000Z" - }, - "events": [ - { - "uuid": "f37be7a0-f575-4b34-8f5e-05e90691d208", - "start": { - "$date": "2022-06-26T04:20:25.000Z" - }, - "end": { - "$date": "2022-06-26T05:43:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e428ae87-dfc2-49ca-bba0-0edbc384aaf2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-26T04:23:51.000Z" - }, - "end": { - "$date": "2022-06-26T05:20:36.000Z" - }, - "events": [ - { - "uuid": "c8379d5d-0b70-4ab7-b80f-299af4ce7cb7", - "start": { - "$date": "2022-06-26T04:23:51.000Z" - }, - "end": { - "$date": "2022-06-26T05:20:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d536f5b9-f3a5-448b-99f9-7bc6567491d2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-26T04:55:01.000Z" - }, - "end": { - "$date": "2022-06-26T05:11:22.000Z" - }, - "events": [ - { - "uuid": "f2e7a873-88a0-43f6-a005-41f63d7a29ba", - "start": { - "$date": "2022-06-26T04:55:01.000Z" - }, - "end": { - "$date": "2022-06-26T05:11:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "62a2c0f0-5342-49e5-9b52-0f6cba14a41a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-26T06:07:26.000Z" - }, - "end": { - "$date": "2022-06-26T06:35:51.000Z" - }, - "events": [ - { - "uuid": "43bd169b-7274-48a1-b28b-db82b8e45d6a", - "start": { - "$date": "2022-06-26T06:07:26.000Z" - }, - "end": { - "$date": "2022-06-26T06:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4f88371-0745-4e4d-a349-5427411c0cdc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-26T06:08:55.000Z" - }, - "end": { - "$date": "2022-06-26T07:00:56.000Z" - }, - "events": [ - { - "uuid": "52d8c4bd-6107-45b4-bb79-46c8196ef3a1", - "start": { - "$date": "2022-06-26T06:08:55.000Z" - }, - "end": { - "$date": "2022-06-26T07:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "256da817-b4f9-440c-a357-adaf00a6edba", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-26T06:11:04.000Z" - }, - "end": { - "$date": "2022-06-26T08:07:52.000Z" - }, - "events": [ - { - "uuid": "2fd6cc64-8d68-4b11-9873-8339f4a13066", - "start": { - "$date": "2022-06-26T06:11:04.000Z" - }, - "end": { - "$date": "2022-06-26T08:07:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "9aedf7d1-8eb1-4dd4-b7ff-91976d133a9a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-26T06:30:01.000Z" - }, - "end": { - "$date": "2022-06-26T07:08:54.000Z" - }, - "events": [ - { - "uuid": "90a1fb9a-15ee-4faf-81e0-0fdd458643a2", - "start": { - "$date": "2022-06-26T06:30:01.000Z" - }, - "end": { - "$date": "2022-06-26T07:08:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "b52752b7-f231-4343-a1e7-d87f7a1878f2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-26T06:53:35.000Z" - }, - "end": { - "$date": "2022-06-26T07:24:15.000Z" - }, - "events": [ - { - "uuid": "42049dc3-cec9-4875-a864-ca6a95f2034e", - "start": { - "$date": "2022-06-26T06:53:35.000Z" - }, - "end": { - "$date": "2022-06-26T07:24:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0eb17cf5-c260-4d82-a4c7-33eefe9538b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-26T07:14:48.000Z" - }, - "end": { - "$date": "2022-06-26T08:05:25.000Z" - }, - "events": [ - { - "uuid": "f7b9442d-5a45-4a8b-a117-9ff4d3797183", - "start": { - "$date": "2022-06-26T07:14:48.000Z" - }, - "end": { - "$date": "2022-06-26T08:05:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "c036aac2-d0d2-4a11-87ba-7a64f8d4ef30", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-26T01:36:49.000Z" - }, - "end": { - "$date": "2022-06-26T14:59:30.000Z" - }, - "events": [ - { - "uuid": "e9cb70c6-cece-4378-bbf7-f42940b08d3e", - "start": { - "$date": "2022-06-26T01:36:49.000Z" - }, - "end": { - "$date": "2022-06-26T14:59:30.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a02c325-4d71-4bdd-9233-204cf524bd1e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-26T12:24:03.000Z" - }, - "end": { - "$date": "2022-06-26T13:27:22.000Z" - }, - "events": [ - { - "uuid": "7ce71202-74ab-4255-8bb5-01e150c69f27", - "start": { - "$date": "2022-06-26T12:24:03.000Z" - }, - "end": { - "$date": "2022-06-26T13:20:03.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ae058686-1253-4aa2-b45a-05e7beb3e8a0", - "start": { - "$date": "2022-06-26T13:20:03.000Z" - }, - "end": { - "$date": "2022-06-26T13:23:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4e143769-8ba4-4615-a02e-6557a1be27cb", - "start": { - "$date": "2022-06-26T13:23:03.000Z" - }, - "end": { - "$date": "2022-06-26T13:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5da36a17-26f7-4b35-931a-ae1112ffe11a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-26T13:29:13.000Z" - }, - "end": { - "$date": "2022-06-26T14:14:14.000Z" - }, - "events": [ - { - "uuid": "583292db-63b5-47f8-9fa2-cacf7d5be412", - "start": { - "$date": "2022-06-26T13:29:13.000Z" - }, - "end": { - "$date": "2022-06-26T14:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "ae56e2ac-dda7-4278-92c3-a4405a817548", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-26T19:06:18.000Z" - }, - "end": { - "$date": "2022-06-26T19:31:36.000Z" - }, - "events": [ - { - "uuid": "98e20a89-3f51-4085-bf0c-3cb8bbb70e0c", - "start": { - "$date": "2022-06-26T19:06:18.000Z" - }, - "end": { - "$date": "2022-06-26T19:31:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "59f06f97-a97f-48d2-aa60-ca0a8e8b5bb7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-26T19:32:05.000Z" - }, - "end": { - "$date": "2022-06-26T22:23:43.000Z" - }, - "events": [ - { - "uuid": "e5f68d20-4732-433f-9f40-07e7755b8c50", - "start": { - "$date": "2022-06-26T19:32:05.000Z" - }, - "end": { - "$date": "2022-06-26T22:23:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "0cf94666-4edf-4517-9d10-793e2d2db388", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-26T20:21:03.000Z" - }, - "end": { - "$date": "2022-06-26T22:22:44.000Z" - }, - "events": [ - { - "uuid": "208694d6-e9c9-4139-9316-c7aa64b1373a", - "start": { - "$date": "2022-06-26T20:21:03.000Z" - }, - "end": { - "$date": "2022-06-26T22:22:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "28f1683f-9137-4f45-9965-ebfc1a527c71", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-26T20:59:02.000Z" - }, - "end": { - "$date": "2022-06-27T00:59:07.000Z" - }, - "events": [ - { - "uuid": "a13bf13c-5fa8-4a1c-8e2e-fbd60d6d7f69", - "start": { - "$date": "2022-06-26T20:59:02.000Z" - }, - "end": { - "$date": "2022-06-27T00:59:07.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "4e95d443-1b3e-4cbe-a5df-c4a68b65b510", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-26T21:08:57.000Z" - }, - "end": { - "$date": "2022-06-27T00:58:12.000Z" - }, - "events": [ - { - "uuid": "4085ff0f-8df7-4f24-98c7-2b2c3da7899a", - "start": { - "$date": "2022-06-26T21:08:57.000Z" - }, - "end": { - "$date": "2022-06-27T00:58:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "4a7d000f-894a-47e1-8683-50f9f23eac78", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-26T21:09:55.000Z" - }, - "end": { - "$date": "2022-06-27T00:58:10.000Z" - }, - "events": [ - { - "uuid": "44bddce6-5900-458f-8f7c-8b68b0e73e8c", - "start": { - "$date": "2022-06-26T21:09:55.000Z" - }, - "end": { - "$date": "2022-06-27T00:58:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a6ba3e7f-b451-4045-bfc0-6f7cb489e11f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-26T21:56:27.000Z" - }, - "end": { - "$date": "2022-06-26T22:26:07.000Z" - }, - "events": [ - { - "uuid": "8762192b-2199-4ca6-90c1-7491afb21aa1", - "start": { - "$date": "2022-06-26T21:56:27.000Z" - }, - "end": { - "$date": "2022-06-26T22:26:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7ca40993-6507-471e-90eb-21fa11d3d5c8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-26T21:58:34.000Z" - }, - "end": { - "$date": "2022-06-26T22:01:44.000Z" - }, - "events": [ - { - "uuid": "1fd7e0cf-2973-471b-8ced-fdd7fd87ceb2", - "start": { - "$date": "2022-06-26T21:58:34.000Z" - }, - "end": { - "$date": "2022-06-26T22:01:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "d67c5b32-e00a-4246-bb11-f60ed2b1faf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-26T22:09:44.000Z" - }, - "end": { - "$date": "2022-06-26T23:19:38.000Z" - }, - "events": [ - { - "uuid": "89463a6b-98cb-4249-965e-20452cf5b620", - "start": { - "$date": "2022-06-26T22:09:44.000Z" - }, - "end": { - "$date": "2022-06-26T23:19:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6e024cf-54cc-4b33-90a1-5960436ffcec", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-26T22:45:47.000Z" - }, - "end": { - "$date": "2022-06-26T22:47:28.000Z" - }, - "events": [ - { - "uuid": "14f7160e-4383-46c8-a3b2-a45c60acc5e6", - "start": { - "$date": "2022-06-26T22:45:47.000Z" - }, - "end": { - "$date": "2022-06-26T22:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "60bce0c6-974e-4088-bbf5-a188d205b5d6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-26T23:07:50.000Z" - }, - "end": { - "$date": "2022-06-26T23:09:45.000Z" - }, - "events": [ - { - "uuid": "79f00572-9d8e-4235-be14-13698a86d469", - "start": { - "$date": "2022-06-26T23:07:50.000Z" - }, - "end": { - "$date": "2022-06-26T23:09:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "40649b52-072f-4e1b-9a3b-732b94caf006", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-26T23:09:55.000Z" - }, - "end": { - "$date": "2022-06-26T23:12:10.000Z" - }, - "events": [ - { - "uuid": "7fcbd4e2-9ea7-4740-918c-771386e66906", - "start": { - "$date": "2022-06-26T23:09:55.000Z" - }, - "end": { - "$date": "2022-06-26T23:12:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "48ce7ca2-d832-498d-86eb-7bb2e149fbef", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-26T23:15:28.000Z" - }, - "end": { - "$date": "2022-06-26T23:23:38.000Z" - }, - "events": [ - { - "uuid": "bfccf9a0-21dc-4596-8f4e-094e7c5e56fc", - "start": { - "$date": "2022-06-26T23:15:28.000Z" - }, - "end": { - "$date": "2022-06-26T23:23:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d8ea56dd-c586-419d-950d-5ebfdfe08be1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-26T23:25:33.000Z" - }, - "end": { - "$date": "2022-06-27T00:16:38.000Z" - }, - "events": [ - { - "uuid": "ae100fef-7243-42ad-8836-f2d9a1d1a8c2", - "start": { - "$date": "2022-06-26T23:25:33.000Z" - }, - "end": { - "$date": "2022-06-26T23:39:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2ddfcc7e-44ef-4b77-b2fc-38c9c2945898", - "start": { - "$date": "2022-06-26T23:39:33.000Z" - }, - "end": { - "$date": "2022-06-26T23:44:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d5373b4a-e0d3-4730-bea5-4fec066a6de0", - "start": { - "$date": "2022-06-26T23:44:33.000Z" - }, - "end": { - "$date": "2022-06-27T00:00:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2bea3b3f-6bd3-495f-934a-fcb9527347af", - "start": { - "$date": "2022-06-27T00:00:33.000Z" - }, - "end": { - "$date": "2022-06-27T00:16:38.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "07894d24-31a3-4885-ab6c-3864cb586cd9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-27T00:25:10.000Z" - }, - "end": { - "$date": "2022-06-27T00:49:56.000Z" - }, - "events": [ - { - "uuid": "0a74f554-e110-4685-aefb-60df62cacba9", - "start": { - "$date": "2022-06-27T00:25:10.000Z" - }, - "end": { - "$date": "2022-06-27T00:49:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "bb24df38-45cf-4d12-b023-3dd1316bc642", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-27T00:52:02.000Z" - }, - "end": { - "$date": "2022-06-27T02:15:53.000Z" - }, - "events": [ - { - "uuid": "3ff14c60-48ba-4506-94e0-4f28a1cf8a75", - "start": { - "$date": "2022-06-27T00:52:02.000Z" - }, - "end": { - "$date": "2022-06-27T02:15:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "867c00aa-f308-4854-9e62-273ccfb11946", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-27T01:48:24.000Z" - }, - "end": { - "$date": "2022-06-27T08:07:41.000Z" - }, - "events": [ - { - "uuid": "06904551-cc20-4a63-b0bd-9502ea767f7a", - "start": { - "$date": "2022-06-27T01:48:24.000Z" - }, - "end": { - "$date": "2022-06-27T08:07:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6d5b1fcd-21a2-4585-a2a8-c41b91d83f8d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-27T02:00:48.000Z" - }, - "end": { - "$date": "2022-06-27T02:46:43.000Z" - }, - "events": [ - { - "uuid": "8ca8b2b9-81e4-4709-af0b-f8dd9944c9af", - "start": { - "$date": "2022-06-27T02:00:48.000Z" - }, - "end": { - "$date": "2022-06-27T02:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "06fbee21-6370-496b-9b30-22403e66998b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-27T02:19:44.000Z" - }, - "end": { - "$date": "2022-06-27T05:17:55.000Z" - }, - "events": [ - { - "uuid": "4ed82e95-3cf4-491f-8d8b-c1609c58d85d", - "start": { - "$date": "2022-06-27T02:19:44.000Z" - }, - "end": { - "$date": "2022-06-27T05:17:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "098be574-48e5-4d77-81e8-9cec7433802e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-27T02:38:03.000Z" - }, - "end": { - "$date": "2022-06-27T02:57:24.000Z" - }, - "events": [ - { - "uuid": "b986506f-d3b6-4b41-8c58-5ea0745e98bb", - "start": { - "$date": "2022-06-27T02:38:03.000Z" - }, - "end": { - "$date": "2022-06-27T02:57:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cbc1cc24-c621-4b22-9e28-fa82ee13ce72", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-27T03:00:57.000Z" - }, - "end": { - "$date": "2022-06-27T03:28:18.000Z" - }, - "events": [ - { - "uuid": "c4fb2ee6-37ec-47b4-92d6-ebfd624846a0", - "start": { - "$date": "2022-06-27T03:00:57.000Z" - }, - "end": { - "$date": "2022-06-27T03:28:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1a11d46c-6ca1-4ae6-a6b6-1a8b0b44ac4f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-27T03:47:42.000Z" - }, - "end": { - "$date": "2022-06-27T05:18:20.000Z" - }, - "events": [ - { - "uuid": "4b10ebdf-0ec8-4f19-b745-29dd9e1c8b1f", - "start": { - "$date": "2022-06-27T03:47:42.000Z" - }, - "end": { - "$date": "2022-06-27T05:18:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "892efb13-bbd3-46d3-8ad4-ef4cde2e49c0", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-27T04:27:46.000Z" - }, - "end": { - "$date": "2022-06-27T04:29:11.000Z" - }, - "events": [ - { - "uuid": "32d704e6-7c37-4502-8d36-be478d8e4e6a", - "start": { - "$date": "2022-06-27T04:27:46.000Z" - }, - "end": { - "$date": "2022-06-27T04:29:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "adf8a6dd-a26e-4fca-99d5-b2305b0e82fa", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-27T04:29:26.000Z" - }, - "end": { - "$date": "2022-06-27T05:13:28.000Z" - }, - "events": [ - { - "uuid": "2122e46e-fccc-41d3-af50-5d5bd6d6da6b", - "start": { - "$date": "2022-06-27T04:29:26.000Z" - }, - "end": { - "$date": "2022-06-27T05:13:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "95af1c0f-d6d7-4f66-887a-1b6a57d21db1", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-27T04:38:54.000Z" - }, - "end": { - "$date": "2022-06-27T07:11:38.000Z" - }, - "events": [ - { - "uuid": "f9f3391c-07dc-449f-820b-970a18b6dce2", - "start": { - "$date": "2022-06-27T04:38:54.000Z" - }, - "end": { - "$date": "2022-06-27T07:11:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "49744945-1cf9-4f8c-b1d1-4325b290c072", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-27T04:40:21.000Z" - }, - "end": { - "$date": "2022-06-27T05:03:57.000Z" - }, - "events": [ - { - "uuid": "f898d94f-c654-4e60-8619-752afa2dee5e", - "start": { - "$date": "2022-06-27T04:40:21.000Z" - }, - "end": { - "$date": "2022-06-27T05:02:21.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "92b4361f-f8ca-4e15-bba9-ad9878e8b9ba", - "start": { - "$date": "2022-06-27T05:02:21.000Z" - }, - "end": { - "$date": "2022-06-27T05:03:57.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a36116d8-9301-41ba-abf0-cb77562e81fb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-27T05:01:19.000Z" - }, - "end": { - "$date": "2022-06-27T06:16:54.000Z" - }, - "events": [ - { - "uuid": "eee80a56-8aab-4442-acc5-b48ef02486b6", - "start": { - "$date": "2022-06-27T05:01:19.000Z" - }, - "end": { - "$date": "2022-06-27T06:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b0a3a200-0f4e-4bdb-b549-2a6aae7129ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-27T05:04:14.000Z" - }, - "end": { - "$date": "2022-06-27T07:11:45.000Z" - }, - "events": [ - { - "uuid": "fda33bd3-e7d6-4e77-aad7-6124e424d914", - "start": { - "$date": "2022-06-27T05:04:14.000Z" - }, - "end": { - "$date": "2022-06-27T07:11:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1e700cf2-bed6-4d8d-b3d1-946316567fee", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-27T05:27:58.000Z" - }, - "end": { - "$date": "2022-06-27T06:18:33.000Z" - }, - "events": [ - { - "uuid": "e46557c7-2b35-4dca-a919-66e2dbc9f08b", - "start": { - "$date": "2022-06-27T05:27:58.000Z" - }, - "end": { - "$date": "2022-06-27T06:18:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cc03e2ab-864d-4fba-8a04-ca499a8e0e6e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-27T06:44:11.000Z" - }, - "end": { - "$date": "2022-06-27T06:47:26.000Z" - }, - "events": [ - { - "uuid": "efb57e5d-8bda-4458-b626-be11f6dcd7db", - "start": { - "$date": "2022-06-27T06:44:11.000Z" - }, - "end": { - "$date": "2022-06-27T06:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "f208d5b2-a093-4cfa-a220-5cf8f7e935a0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-27T07:20:56.000Z" - }, - "end": { - "$date": "2022-06-27T08:21:26.000Z" - }, - "events": [ - { - "uuid": "c89584d4-294d-4032-a8cb-735c55934e54", - "start": { - "$date": "2022-06-27T07:20:56.000Z" - }, - "end": { - "$date": "2022-06-27T08:21:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "53da7369-6ec5-4bc2-adc0-ed0e96e417bc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-27T11:41:06.000Z" - }, - "end": { - "$date": "2022-06-27T12:01:52.000Z" - }, - "events": [ - { - "uuid": "86f40cb5-40cc-4c0e-9ffb-51783a7bcc25", - "start": { - "$date": "2022-06-27T11:41:06.000Z" - }, - "end": { - "$date": "2022-06-27T12:01:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e3514f54-7f15-44ff-86cd-339322d6f5ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-27T12:02:28.000Z" - }, - "end": { - "$date": "2022-06-27T12:38:14.000Z" - }, - "events": [ - { - "uuid": "05b8f7e0-9f2b-4ac5-a5dd-11e4f58088cf", - "start": { - "$date": "2022-06-27T12:02:28.000Z" - }, - "end": { - "$date": "2022-06-27T12:38:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "ec308307-b804-4161-a9c8-482aba6837d0", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-27T12:17:10.000Z" - }, - "end": { - "$date": "2022-06-27T13:42:38.000Z" - }, - "events": [ - { - "uuid": "df82d86b-29ad-413f-8447-5b4aecfc6b20", - "start": { - "$date": "2022-06-27T12:17:10.000Z" - }, - "end": { - "$date": "2022-06-27T13:42:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8375fc51-0c58-433c-b0ac-5341c90a66c1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-27T13:07:13.000Z" - }, - "end": { - "$date": "2022-06-27T13:33:53.000Z" - }, - "events": [ - { - "uuid": "7dc99492-63fb-4b96-8462-920e7fe1f4cf", - "start": { - "$date": "2022-06-27T13:07:13.000Z" - }, - "end": { - "$date": "2022-06-27T13:33:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "933fce29-2368-4867-b7b9-df87690b540e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-27T17:53:42.000Z" - }, - "end": { - "$date": "2022-06-27T18:29:02.000Z" - }, - "events": [ - { - "uuid": "4d7e59a6-b3a2-44cf-a4ba-11bbfe5788e4", - "start": { - "$date": "2022-06-27T17:53:42.000Z" - }, - "end": { - "$date": "2022-06-27T18:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3403a7ea-fa66-4d15-b361-ac440193880e", - "user": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "start": { - "$date": "2022-06-27T20:39:13.000Z" - }, - "end": { - "$date": "2022-06-27T23:05:03.000Z" - }, - "events": [ - { - "uuid": "be9696e9-cdee-4abe-a2a3-f27f12029208", - "start": { - "$date": "2022-06-27T20:39:13.000Z" - }, - "end": { - "$date": "2022-06-27T23:05:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "dd8df158-1ebd-4b39-85a8-39c7d9da6b79", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-27T20:40:45.000Z" - }, - "end": { - "$date": "2022-06-27T23:04:47.000Z" - }, - "events": [ - { - "uuid": "3fbaf9ed-b3d7-4448-9afd-88ecef7040a4", - "start": { - "$date": "2022-06-27T20:40:45.000Z" - }, - "end": { - "$date": "2022-06-27T23:04:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "20a57125-ff6a-465b-b269-137ec7c3d04d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-27T23:38:59.000Z" - }, - "end": { - "$date": "2022-06-28T00:14:57.000Z" - }, - "events": [ - { - "uuid": "ecbf748e-62b6-44e3-8860-386e2ecf3cb2", - "start": { - "$date": "2022-06-27T23:38:59.000Z" - }, - "end": { - "$date": "2022-06-28T00:14:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "004ace15-60b0-4ed0-9c53-59d5818b8c21", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-28T01:24:29.000Z" - }, - "end": { - "$date": "2022-06-28T03:16:15.000Z" - }, - "events": [ - { - "uuid": "003cd9ff-01c8-4ee4-bfab-78bb5138229c", - "start": { - "$date": "2022-06-28T01:24:29.000Z" - }, - "end": { - "$date": "2022-06-28T03:16:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "ce9de2fc-418c-436c-9871-a23c31a305c2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-28T01:35:16.000Z" - }, - "end": { - "$date": "2022-06-28T03:16:00.000Z" - }, - "events": [ - { - "uuid": "159d88e8-7893-4f31-8fe0-50f404734bd5", - "start": { - "$date": "2022-06-28T01:35:16.000Z" - }, - "end": { - "$date": "2022-06-28T03:16:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "19959d65-4674-44e2-8c36-f66abd8ebdd6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-28T01:38:29.000Z" - }, - "end": { - "$date": "2022-06-28T05:32:30.000Z" - }, - "events": [ - { - "uuid": "875551cc-ce81-4abf-9f6e-af7ebb27e491", - "start": { - "$date": "2022-06-28T01:38:29.000Z" - }, - "end": { - "$date": "2022-06-28T05:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "203982b0-aea4-4000-92e2-ee776443557c", - "uuid": "e0808e7c-55c7-48ec-b76e-0008eed18e04", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-28T01:55:21.000Z" - }, - "end": { - "$date": "2022-06-28T02:18:50.000Z" - }, - "events": [ - { - "uuid": "cf0ca45d-2357-4781-8579-63e4d74ce237", - "start": { - "$date": "2022-06-28T01:55:21.000Z" - }, - "end": { - "$date": "2022-06-28T02:18:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "c0adc64c-1c2a-4ce5-9c16-42ed282592e6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-28T02:29:20.000Z" - }, - "end": { - "$date": "2022-06-28T02:46:41.000Z" - }, - "events": [ - { - "uuid": "ed08f825-8f7f-4425-9eae-6ec8066aed58", - "start": { - "$date": "2022-06-28T02:29:20.000Z" - }, - "end": { - "$date": "2022-06-28T02:46:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "7d18196a-fe92-457d-9f65-eac9138c4422", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-28T02:46:56.000Z" - }, - "end": { - "$date": "2022-06-28T03:15:58.000Z" - }, - "events": [ - { - "uuid": "940194c0-6557-421e-9756-63a4a91bec30", - "start": { - "$date": "2022-06-28T02:46:56.000Z" - }, - "end": { - "$date": "2022-06-28T03:15:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b9006ceb-0ff0-4398-a6a2-863aba566b06", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T03:05:39.000Z" - }, - "end": { - "$date": "2022-06-28T03:41:32.000Z" - }, - "events": [ - { - "uuid": "caec5125-3124-4c72-bcaf-02eeea3df7e7", - "start": { - "$date": "2022-06-28T03:05:39.000Z" - }, - "end": { - "$date": "2022-06-28T03:41:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "30e5e51d-93c4-4a5f-8d26-4ae796a60d02", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-28T03:17:41.000Z" - }, - "end": { - "$date": "2022-06-28T06:52:22.000Z" - }, - "events": [ - { - "uuid": "724203e0-b00f-4f73-89b0-93ed9acdcd0a", - "start": { - "$date": "2022-06-28T03:17:41.000Z" - }, - "end": { - "$date": "2022-06-28T06:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7142bba4-1321-45e9-b6eb-4d93117933cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T03:41:48.000Z" - }, - "end": { - "$date": "2022-06-28T04:00:40.000Z" - }, - "events": [ - { - "uuid": "072f2a69-0e85-417a-a9af-f465f16b16fb", - "start": { - "$date": "2022-06-28T03:41:48.000Z" - }, - "end": { - "$date": "2022-06-28T03:53:48.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "175bc081-22f8-4733-9421-07ba0c4f4f2f", - "start": { - "$date": "2022-06-28T03:53:48.000Z" - }, - "end": { - "$date": "2022-06-28T04:00:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "214d8b1c-59c0-4bc3-b866-83c5f1890739", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T04:00:44.000Z" - }, - "end": { - "$date": "2022-06-28T04:02:03.000Z" - }, - "events": [ - { - "uuid": "e886993f-a6ff-4d81-8aca-19c8c7179aec", - "start": { - "$date": "2022-06-28T04:00:44.000Z" - }, - "end": { - "$date": "2022-06-28T04:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dfc3d17e-70fe-4287-a7ff-ec38f3faeef1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T04:02:54.000Z" - }, - "end": { - "$date": "2022-06-28T04:06:53.000Z" - }, - "events": [ - { - "uuid": "e00c51c2-6e3e-4c6e-8a64-255c268f9809", - "start": { - "$date": "2022-06-28T04:02:54.000Z" - }, - "end": { - "$date": "2022-06-28T04:06:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ca961a0a-1c8f-45aa-bb59-bb4a334b87ee", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-28T04:06:41.000Z" - }, - "end": { - "$date": "2022-06-28T04:53:45.000Z" - }, - "events": [ - { - "uuid": "238b8b00-0bcb-4891-8fb8-bd66c07e6dc3", - "start": { - "$date": "2022-06-28T04:06:41.000Z" - }, - "end": { - "$date": "2022-06-28T04:53:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "be59707a-fc66-41d1-a027-d45dcca1998c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T04:11:06.000Z" - }, - "end": { - "$date": "2022-06-28T04:51:29.000Z" - }, - "events": [ - { - "uuid": "6729dbd7-f31d-4de8-aa9b-6b029882887d", - "start": { - "$date": "2022-06-28T04:11:06.000Z" - }, - "end": { - "$date": "2022-06-28T04:51:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "469d35f1-a807-4527-9f83-c4e828545b77", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T04:52:45.000Z" - }, - "end": { - "$date": "2022-06-28T05:24:42.000Z" - }, - "events": [ - { - "uuid": "bbb0f3a7-d04c-48e5-8822-941f3561dd24", - "start": { - "$date": "2022-06-28T04:52:45.000Z" - }, - "end": { - "$date": "2022-06-28T05:24:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "ec2777a1-5ea5-4bdf-b4b5-4a941fdf0104", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T05:25:18.000Z" - }, - "end": { - "$date": "2022-06-28T05:38:34.000Z" - }, - "events": [ - { - "uuid": "e6bf94fc-6863-4e1c-80b2-1c8b91a542d0", - "start": { - "$date": "2022-06-28T05:25:18.000Z" - }, - "end": { - "$date": "2022-06-28T05:38:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fd554875-c4c5-404a-ac3a-b58526a3123a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-28T05:44:23.000Z" - }, - "end": { - "$date": "2022-06-28T06:35:42.000Z" - }, - "events": [ - { - "uuid": "4cfffe90-0ba8-43c7-a1bb-718a761dae64", - "start": { - "$date": "2022-06-28T05:44:23.000Z" - }, - "end": { - "$date": "2022-06-28T06:35:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "3bebd0c7-3ab7-4319-9507-ea3c18baaec5", - "uuid": "23c8952d-b981-4cd5-b80b-17c211666db7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-28T06:40:20.000Z" - }, - "end": { - "$date": "2022-06-28T06:48:30.000Z" - }, - "events": [ - { - "uuid": "ec05feef-345e-4dd4-93b3-9adeae54ed56", - "start": { - "$date": "2022-06-28T06:40:20.000Z" - }, - "end": { - "$date": "2022-06-28T06:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "38436b9c-effb-44ed-ae63-d4ac961083dc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-28T11:52:21.000Z" - }, - "end": { - "$date": "2022-06-28T13:09:32.000Z" - }, - "events": [ - { - "uuid": "08cff7ea-9642-445f-ac10-5828091f9686", - "start": { - "$date": "2022-06-28T11:52:21.000Z" - }, - "end": { - "$date": "2022-06-28T13:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "30e7cdb6-7cce-4538-9740-89b786a10e08", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-28T13:18:35.000Z" - }, - "end": { - "$date": "2022-06-28T15:18:09.000Z" - }, - "events": [ - { - "uuid": "c3255b46-61f5-4337-a54b-da4e299d7ebe", - "start": { - "$date": "2022-06-28T13:18:35.000Z" - }, - "end": { - "$date": "2022-06-28T14:39:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "08ec3575-f2c8-47aa-bf08-91127f7b0894", - "start": { - "$date": "2022-06-28T14:39:35.000Z" - }, - "end": { - "$date": "2022-06-28T14:41:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "becec223-9d6a-44a2-a80d-6279f56f689b", - "start": { - "$date": "2022-06-28T14:41:35.000Z" - }, - "end": { - "$date": "2022-06-28T14:51:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bef34d35-56a1-42dc-81d3-eae476d797aa", - "start": { - "$date": "2022-06-28T14:51:35.000Z" - }, - "end": { - "$date": "2022-06-28T14:55:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "33252694-bc6b-4b99-b09a-8f840f0b4acb", - "start": { - "$date": "2022-06-28T14:55:35.000Z" - }, - "end": { - "$date": "2022-06-28T15:13:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "eb352554-12a6-45ff-b5a7-0691fab0cd31", - "start": { - "$date": "2022-06-28T15:13:35.000Z" - }, - "end": { - "$date": "2022-06-28T15:18:09.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "09d030f9-6be5-415b-9427-a5e641e5a7df", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-28T16:41:08.000Z" - }, - "end": { - "$date": "2022-06-28T17:15:13.000Z" - }, - "events": [ - { - "uuid": "0c2e5798-9f45-4fc7-9340-754e2de58cf7", - "start": { - "$date": "2022-06-28T16:41:08.000Z" - }, - "end": { - "$date": "2022-06-28T17:15:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4e93f072-1ff7-4cad-97d7-a5527f64f12d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-28T19:54:10.000Z" - }, - "end": { - "$date": "2022-06-28T21:43:46.000Z" - }, - "events": [ - { - "uuid": "db58c363-532c-4f2b-9e52-4b18cf26b603", - "start": { - "$date": "2022-06-28T19:54:10.000Z" - }, - "end": { - "$date": "2022-06-28T21:43:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "6f4e3a53-1c69-4650-8bdb-a6843e6e9787", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-29T00:12:37.000Z" - }, - "end": { - "$date": "2022-06-29T01:32:45.000Z" - }, - "events": [ - { - "uuid": "dac37f14-56f1-4731-aeac-02551b923952", - "start": { - "$date": "2022-06-29T00:12:37.000Z" - }, - "end": { - "$date": "2022-06-29T01:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "27ce72c8-76ae-4461-9ab3-194b1174915e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-29T00:56:37.000Z" - }, - "end": { - "$date": "2022-06-29T01:32:43.000Z" - }, - "events": [ - { - "uuid": "c36d384f-d771-4513-8666-317d62e97398", - "start": { - "$date": "2022-06-29T00:56:37.000Z" - }, - "end": { - "$date": "2022-06-29T01:32:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "67914be7-eaf9-49d2-9798-85187526aa09", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T01:54:32.000Z" - }, - "end": { - "$date": "2022-06-29T02:29:08.000Z" - }, - "events": [ - { - "uuid": "2430e091-55bc-41d3-8826-9520bfbb2cfc", - "start": { - "$date": "2022-06-29T01:54:32.000Z" - }, - "end": { - "$date": "2022-06-29T02:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "8a7336a2-a423-4e90-b313-376fe457ed29", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-29T02:05:02.000Z" - }, - "end": { - "$date": "2022-06-29T03:11:58.000Z" - }, - "events": [ - { - "uuid": "1f07d68a-e775-4cfd-820d-440c63d46a66", - "start": { - "$date": "2022-06-29T02:05:02.000Z" - }, - "end": { - "$date": "2022-06-29T03:11:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9cf55256-bc21-4287-8466-3f1a9c0187da", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-29T02:42:59.000Z" - }, - "end": { - "$date": "2022-06-29T03:16:36.000Z" - }, - "events": [ - { - "uuid": "9aebe757-4043-4987-b7e9-107ccec87272", - "start": { - "$date": "2022-06-29T02:42:59.000Z" - }, - "end": { - "$date": "2022-06-29T03:16:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "66e62724-e207-4687-8e23-48bde94f9447", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-29T02:46:43.000Z" - }, - "end": { - "$date": "2022-06-29T03:52:36.000Z" - }, - "events": [ - { - "uuid": "e51457b6-752d-43e3-b59a-2a7a04b4dddc", - "start": { - "$date": "2022-06-29T02:46:43.000Z" - }, - "end": { - "$date": "2022-06-29T03:52:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "a35b500b-0279-4e06-a281-d231b1ffafe5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-29T02:59:12.000Z" - }, - "end": { - "$date": "2022-06-29T04:38:22.000Z" - }, - "events": [ - { - "uuid": "8c61a199-3cc1-4984-b4c4-0b5672ca8bd6", - "start": { - "$date": "2022-06-29T02:59:12.000Z" - }, - "end": { - "$date": "2022-06-29T04:38:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edfb230c-0bce-41f8-99f3-5e16e46a9af3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T03:00:25.000Z" - }, - "end": { - "$date": "2022-06-29T03:33:23.000Z" - }, - "events": [ - { - "uuid": "3a53647b-5c5e-40bb-a601-8473773ac39a", - "start": { - "$date": "2022-06-29T03:00:25.000Z" - }, - "end": { - "$date": "2022-06-29T03:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "987ee92b-e77c-4403-99c7-7caec9de95fc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-29T03:09:29.000Z" - }, - "end": { - "$date": "2022-06-29T03:51:46.000Z" - }, - "events": [ - { - "uuid": "406f2e6a-0591-4a84-82b5-a5e209d6bf16", - "start": { - "$date": "2022-06-29T03:09:29.000Z" - }, - "end": { - "$date": "2022-06-29T03:51:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c6aae026-6d09-486b-9b68-0b7b7120416c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-29T03:09:47.000Z" - }, - "end": { - "$date": "2022-06-29T03:51:25.000Z" - }, - "events": [ - { - "uuid": "ad3b6981-b44f-4840-939d-1c341f325432", - "start": { - "$date": "2022-06-29T03:09:47.000Z" - }, - "end": { - "$date": "2022-06-29T03:51:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d9fbf58b-9a07-4b52-95a2-71db4109ebdb", - "uuid": "0fb2cab2-2c8d-4fed-a5bf-ad15f6b3f804", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-29T03:17:32.000Z" - }, - "end": { - "$date": "2022-06-29T04:38:08.000Z" - }, - "events": [ - { - "uuid": "44d8d2af-5851-4631-9961-e926ccfd6d81", - "start": { - "$date": "2022-06-29T03:17:32.000Z" - }, - "end": { - "$date": "2022-06-29T04:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "57b74658-403c-4cdf-b18d-92d5bc2789e1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-29T03:23:55.000Z" - }, - "end": { - "$date": "2022-06-29T03:52:06.000Z" - }, - "events": [ - { - "uuid": "9d311229-bf82-4c45-bd3a-0a475735b317", - "start": { - "$date": "2022-06-29T03:23:55.000Z" - }, - "end": { - "$date": "2022-06-29T03:52:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1a54ba6-0aa6-4ca7-9cbf-d5287b39a6ae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T03:34:25.000Z" - }, - "end": { - "$date": "2022-06-29T04:10:08.000Z" - }, - "events": [ - { - "uuid": "c5359bf2-31e3-4b9c-af5a-51926c46576b", - "start": { - "$date": "2022-06-29T03:34:25.000Z" - }, - "end": { - "$date": "2022-06-29T04:10:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "48b659bd-01b5-441f-a4a0-63ddfdc79342", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-29T03:34:47.000Z" - }, - "end": { - "$date": "2022-06-29T03:56:19.000Z" - }, - "events": [ - { - "uuid": "61cc5325-4274-4bd8-b828-5d73ed393bcc", - "start": { - "$date": "2022-06-29T03:34:47.000Z" - }, - "end": { - "$date": "2022-06-29T03:56:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "5e8f144b-2d75-4c29-a6d9-7fe2407aada5", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-06-29T03:37:47.000Z" - }, - "end": { - "$date": "2022-06-29T07:01:26.000Z" - }, - "events": [ - { - "uuid": "734e862d-7543-4a77-b338-bf57f2f3d219", - "start": { - "$date": "2022-06-29T03:37:47.000Z" - }, - "end": { - "$date": "2022-06-29T07:01:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8cc96c20-8258-44c2-b632-433a90231eb4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-06-29T03:51:53.000Z" - }, - "end": { - "$date": "2022-06-29T05:09:11.000Z" - }, - "events": [ - { - "uuid": "0d484a79-744b-4d66-98cf-c487e4ad879d", - "start": { - "$date": "2022-06-29T03:51:53.000Z" - }, - "end": { - "$date": "2022-06-29T05:09:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fac7ff37-847c-4494-9972-a2282e2d81ec", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-06-29T03:52:30.000Z" - }, - "end": { - "$date": "2022-06-29T07:27:17.000Z" - }, - "events": [ - { - "uuid": "35941bdc-1974-4220-a904-2380754be4eb", - "start": { - "$date": "2022-06-29T03:52:30.000Z" - }, - "end": { - "$date": "2022-06-29T07:27:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8dc1f09a-122c-4a77-b39e-6e33408c54ff", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-29T04:07:23.000Z" - }, - "end": { - "$date": "2022-06-29T05:41:13.000Z" - }, - "events": [ - { - "uuid": "e10c4431-314b-441a-b1d1-b0a9ca8ee286", - "start": { - "$date": "2022-06-29T04:07:23.000Z" - }, - "end": { - "$date": "2022-06-29T05:41:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9853a269-2f76-4f00-b5c5-b911966a0ca6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-29T04:22:05.000Z" - }, - "end": { - "$date": "2022-06-29T05:00:02.000Z" - }, - "events": [ - { - "uuid": "84b7e34c-f5b7-4efb-a301-8e68fd70ef2b", - "start": { - "$date": "2022-06-29T04:22:05.000Z" - }, - "end": { - "$date": "2022-06-29T05:00:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1292917c-0e92-4679-94c1-f028ebbb1a4f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T04:25:08.000Z" - }, - "end": { - "$date": "2022-06-29T04:58:53.000Z" - }, - "events": [ - { - "uuid": "5c025811-3617-40bb-80e7-870532ae669b", - "start": { - "$date": "2022-06-29T04:25:08.000Z" - }, - "end": { - "$date": "2022-06-29T04:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "711aa385-837e-48f1-8a14-0d5be0f22260", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T05:09:24.000Z" - }, - "end": { - "$date": "2022-06-29T05:50:16.000Z" - }, - "events": [ - { - "uuid": "4d4addc9-8ada-4269-a719-ea3b377b78a9", - "start": { - "$date": "2022-06-29T05:09:24.000Z" - }, - "end": { - "$date": "2022-06-29T05:50:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "53d3d467-dede-4896-96a1-fc6a23e71765", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-29T05:10:50.000Z" - }, - "end": { - "$date": "2022-06-29T05:41:02.000Z" - }, - "events": [ - { - "uuid": "7f447381-4433-43ae-8598-da0a0b12d9f2", - "start": { - "$date": "2022-06-29T05:10:50.000Z" - }, - "end": { - "$date": "2022-06-29T05:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "9400caf2-1ad5-4771-b8fd-a17c2b7578b8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-29T05:47:49.000Z" - }, - "end": { - "$date": "2022-06-29T06:00:05.000Z" - }, - "events": [ - { - "uuid": "f1f51631-d956-4ba7-b06e-2995627c56bd", - "start": { - "$date": "2022-06-29T05:47:49.000Z" - }, - "end": { - "$date": "2022-06-29T06:00:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76345bb3-21e7-492e-b1e9-f0fef588336c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T05:51:58.000Z" - }, - "end": { - "$date": "2022-06-29T06:23:41.000Z" - }, - "events": [ - { - "uuid": "a211d8ea-0963-499a-9d46-51029b442094", - "start": { - "$date": "2022-06-29T05:51:58.000Z" - }, - "end": { - "$date": "2022-06-29T06:23:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "27c0947b-d11d-4c41-97cb-d756dd202822", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T06:28:47.000Z" - }, - "end": { - "$date": "2022-06-29T08:08:19.000Z" - }, - "events": [ - { - "uuid": "83b67101-4e2e-4d5d-a34d-6cdf374ad38d", - "start": { - "$date": "2022-06-29T06:28:47.000Z" - }, - "end": { - "$date": "2022-06-29T08:08:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a5607bc-ec58-48a8-bb48-0ad716b6c7a3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-29T08:14:56.000Z" - }, - "end": { - "$date": "2022-06-29T08:16:14.000Z" - }, - "events": [ - { - "uuid": "f2af5954-6b30-41cd-ae0f-f91c4136a97f", - "start": { - "$date": "2022-06-29T08:14:56.000Z" - }, - "end": { - "$date": "2022-06-29T08:16:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "80c207d0-615b-48cb-9d39-82c111fe550d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-29T12:45:07.000Z" - }, - "end": { - "$date": "2022-06-29T13:22:34.000Z" - }, - "events": [ - { - "uuid": "0d93ffae-524d-44e9-ac90-b520465e94d7", - "start": { - "$date": "2022-06-29T12:45:07.000Z" - }, - "end": { - "$date": "2022-06-29T13:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "814f1ce6-3d48-46a7-8e87-54e1f7e2be34", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-29T13:14:51.000Z" - }, - "end": { - "$date": "2022-06-29T13:47:42.000Z" - }, - "events": [ - { - "uuid": "5d48c1fc-d1c4-4143-94d0-194e91cbacde", - "start": { - "$date": "2022-06-29T13:14:51.000Z" - }, - "end": { - "$date": "2022-06-29T13:47:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "45352917-f7b6-48a8-81a9-2c4db32227c7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-06-29T17:51:16.000Z" - }, - "end": { - "$date": "2022-06-29T18:13:27.000Z" - }, - "events": [ - { - "uuid": "ca9041ec-5b71-4d8f-8d23-ad18c7811152", - "start": { - "$date": "2022-06-29T17:51:16.000Z" - }, - "end": { - "$date": "2022-06-29T18:13:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "38c9c741-2b8b-4b45-ab2c-d8809d420219", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-06-29T20:04:31.000Z" - }, - "end": { - "$date": "2022-06-29T21:19:39.000Z" - }, - "events": [ - { - "uuid": "c986fe24-7df1-4795-8d08-6b13e5e50c68", - "start": { - "$date": "2022-06-29T20:04:31.000Z" - }, - "end": { - "$date": "2022-06-29T21:19:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9d8caef2-5d75-4a11-95ac-2c7f72e75311", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T00:15:34.000Z" - }, - "end": { - "$date": "2022-06-30T00:26:19.000Z" - }, - "events": [ - { - "uuid": "89e7a27d-15bb-43b1-863a-c6f25cc0e8dc", - "start": { - "$date": "2022-06-30T00:15:34.000Z" - }, - "end": { - "$date": "2022-06-30T00:26:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fc9819a2-d5be-422a-8eb6-4cdc17c9f88e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-30T00:18:32.000Z" - }, - "end": { - "$date": "2022-06-30T02:25:32.000Z" - }, - "events": [ - { - "uuid": "dc7b1250-3c89-49c8-aa59-d8822113df94", - "start": { - "$date": "2022-06-30T00:18:32.000Z" - }, - "end": { - "$date": "2022-06-30T02:25:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3100970c-11b4-4fe2-8c10-f5cb0c79642d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-06-30T00:56:52.000Z" - }, - "end": { - "$date": "2022-06-30T02:25:31.000Z" - }, - "events": [ - { - "uuid": "7d3e7624-4e13-4d5d-97fb-b93212d62b70", - "start": { - "$date": "2022-06-30T00:56:52.000Z" - }, - "end": { - "$date": "2022-06-30T02:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "6ed8a2a9-cec8-43e0-9149-83c0037fe79c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-30T02:12:52.000Z" - }, - "end": { - "$date": "2022-06-30T03:22:43.000Z" - }, - "events": [ - { - "uuid": "5547a349-3772-45e0-a175-3f48b56e7b36", - "start": { - "$date": "2022-06-30T02:12:52.000Z" - }, - "end": { - "$date": "2022-06-30T03:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "ce6a0dc2-5206-446d-8562-7aa706efb91d", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-30T02:54:20.000Z" - }, - "end": { - "$date": "2022-06-30T03:25:51.000Z" - }, - "events": [ - { - "uuid": "4a5cf6cf-a6d8-4270-8a48-5ff1ab36454f", - "start": { - "$date": "2022-06-30T02:54:20.000Z" - }, - "end": { - "$date": "2022-06-30T03:25:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a479eb72-c6ba-4372-a929-74b3032001d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-30T04:13:10.000Z" - }, - "end": { - "$date": "2022-06-30T06:22:48.000Z" - }, - "events": [ - { - "uuid": "fd09769a-0751-49a8-9a9b-674c6a170790", - "start": { - "$date": "2022-06-30T04:13:10.000Z" - }, - "end": { - "$date": "2022-06-30T06:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ccd537c6-ce2f-432e-b6d6-ff80cfac69a5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T04:21:06.000Z" - }, - "end": { - "$date": "2022-06-30T04:50:23.000Z" - }, - "events": [ - { - "uuid": "4473bc4e-ac81-49d5-b472-aeff362243fa", - "start": { - "$date": "2022-06-30T04:21:06.000Z" - }, - "end": { - "$date": "2022-06-30T04:50:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aed0302e-e64e-4040-9871-f0a0bf68f041", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T06:18:09.000Z" - }, - "end": { - "$date": "2022-06-30T06:57:28.000Z" - }, - "events": [ - { - "uuid": "3e416ec6-a277-427b-8250-6600fbb03dff", - "start": { - "$date": "2022-06-30T06:18:09.000Z" - }, - "end": { - "$date": "2022-06-30T06:57:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a37df9cc-fe4e-4327-b8bd-2b4863c001cc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T07:00:04.000Z" - }, - "end": { - "$date": "2022-06-30T07:22:50.000Z" - }, - "events": [ - { - "uuid": "bd39ba31-f5ff-4e25-ac57-90d496a5fe10", - "start": { - "$date": "2022-06-30T07:00:04.000Z" - }, - "end": { - "$date": "2022-06-30T07:22:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2879404b-216b-467d-a805-37cd0b9a01f6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T07:25:05.000Z" - }, - "end": { - "$date": "2022-06-30T07:53:04.000Z" - }, - "events": [ - { - "uuid": "46b37745-1383-48d3-8314-8b6af7f1b211", - "start": { - "$date": "2022-06-30T07:25:05.000Z" - }, - "end": { - "$date": "2022-06-30T07:53:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "9b449dd4-4946-45f7-af36-b6e676f2aafe", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-06-30T08:29:39.000Z" - }, - "end": { - "$date": "2022-06-30T14:22:01.000Z" - }, - "events": [ - { - "uuid": "804a578d-2c0b-49cd-9e6d-f9b21ca00fa9", - "start": { - "$date": "2022-06-30T08:29:39.000Z" - }, - "end": { - "$date": "2022-06-30T14:22:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "96dc194c-6942-47c7-a3fc-c64a50e90b13", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-06-30T12:41:01.000Z" - }, - "end": { - "$date": "2022-06-30T12:45:16.000Z" - }, - "events": [ - { - "uuid": "e648cdc4-334a-42f2-835e-c1542c79f318", - "start": { - "$date": "2022-06-30T12:41:01.000Z" - }, - "end": { - "$date": "2022-06-30T12:45:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ac89cb65-c9ea-44b8-aa3e-bef33621adbd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T22:55:39.000Z" - }, - "end": { - "$date": "2022-06-30T23:31:39.000Z" - }, - "events": [ - { - "uuid": "67e7b3a3-709f-4e65-9c16-7c3650e1545a", - "start": { - "$date": "2022-06-30T22:55:39.000Z" - }, - "end": { - "$date": "2022-06-30T23:31:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "00214788-06f5-46c4-845f-a897fa19ed61", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-06-30T23:01:50.000Z" - }, - "end": { - "$date": "2022-06-30T23:19:56.000Z" - }, - "events": [ - { - "uuid": "f5e5290b-88f7-4136-b634-3f53f49ea981", - "start": { - "$date": "2022-06-30T23:01:50.000Z" - }, - "end": { - "$date": "2022-06-30T23:19:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "4cae3b71-ef82-40b4-b125-e5c81d919c67", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-30T23:30:17.000Z" - }, - "end": { - "$date": "2022-06-30T23:44:58.000Z" - }, - "events": [ - { - "uuid": "847634ba-a5d6-40a2-94a6-1c147cbf4185", - "start": { - "$date": "2022-06-30T23:30:17.000Z" - }, - "end": { - "$date": "2022-06-30T23:44:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "456368a2-42d2-4e1f-9c61-78925608d10b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-06-30T23:40:10.000Z" - }, - "end": { - "$date": "2022-07-01T00:09:10.000Z" - }, - "events": [ - { - "uuid": "790f8d75-d49b-406c-8627-9865c1ea21ce", - "start": { - "$date": "2022-06-30T23:40:10.000Z" - }, - "end": { - "$date": "2022-07-01T00:09:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d696b505-45f1-46de-9e7e-3152a841e7ab", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-06-30T23:41:58.000Z" - }, - "end": { - "$date": "2022-07-01T00:10:58.000Z" - }, - "events": [ - { - "uuid": "262fe8c1-0ca9-4e6d-a3ae-b90dd58e634f", - "start": { - "$date": "2022-06-30T23:41:58.000Z" - }, - "end": { - "$date": "2022-07-01T00:10:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "bbddc1cf-3cd9-4d53-90d9-ad4c07d429da", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-06-30T23:45:27.000Z" - }, - "end": { - "$date": "2022-07-01T01:50:19.000Z" - }, - "events": [ - { - "uuid": "c3c34e95-c1ac-4c20-8e76-2dedac973a4e", - "start": { - "$date": "2022-06-30T23:45:27.000Z" - }, - "end": { - "$date": "2022-07-01T00:14:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "04605d9c-1391-45a3-806c-1c8bd138184a", - "start": { - "$date": "2022-07-01T00:14:27.000Z" - }, - "end": { - "$date": "2022-07-01T00:19:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6db88fef-aed4-4e05-b662-47db3ae0f657", - "start": { - "$date": "2022-07-01T00:19:27.000Z" - }, - "end": { - "$date": "2022-07-01T00:29:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d18f5863-ce8e-4f9e-9d73-082ed3fe2bb8", - "start": { - "$date": "2022-07-01T00:29:27.000Z" - }, - "end": { - "$date": "2022-07-01T00:33:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "dc4e0c3e-6e7f-4f99-aad9-0b2246a431ea", - "start": { - "$date": "2022-07-01T00:33:27.000Z" - }, - "end": { - "$date": "2022-07-01T00:44:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a44f584b-0ada-462f-ac12-216939b76475", - "start": { - "$date": "2022-07-01T00:44:27.000Z" - }, - "end": { - "$date": "2022-07-01T01:50:19.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ff928abe-3094-4748-9103-d7dfb36877fe", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-01T00:11:05.000Z" - }, - "end": { - "$date": "2022-07-01T00:40:56.000Z" - }, - "events": [ - { - "uuid": "63b01b7c-0abf-4c4a-bbc7-967c3753c5a7", - "start": { - "$date": "2022-07-01T00:11:05.000Z" - }, - "end": { - "$date": "2022-07-01T00:40:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2609eebb-afe1-4dd7-8d84-ab87b597885c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T00:13:33.000Z" - }, - "end": { - "$date": "2022-07-01T01:14:05.000Z" - }, - "events": [ - { - "uuid": "92800a25-abc2-4b27-bea1-5a1f76e758af", - "start": { - "$date": "2022-07-01T00:13:33.000Z" - }, - "end": { - "$date": "2022-07-01T01:14:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "cd5c10f2-0529-439e-9936-227d5a838bec", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T00:20:34.000Z" - }, - "end": { - "$date": "2022-07-01T01:02:13.000Z" - }, - "events": [ - { - "uuid": "094a2f73-1660-43d8-95e0-cb91f4caf168", - "start": { - "$date": "2022-07-01T00:20:34.000Z" - }, - "end": { - "$date": "2022-07-01T01:02:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9b9048de-ec4e-4d9d-b2a8-c9d54b53ad75", - "uuid": "306cec4f-8014-47a7-b9fa-2adf33167a3d", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-01T00:47:52.000Z" - }, - "end": { - "$date": "2022-07-01T01:16:30.000Z" - }, - "events": [ - { - "uuid": "12425ac6-95bc-4569-b49e-a215432e91a2", - "start": { - "$date": "2022-07-01T00:47:52.000Z" - }, - "end": { - "$date": "2022-07-01T01:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "a7d469e4-12e7-40cb-9fde-e032322f2b9c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T01:03:34.000Z" - }, - "end": { - "$date": "2022-07-01T01:04:59.000Z" - }, - "events": [ - { - "uuid": "52a1da55-9ff6-48f9-83cd-7a39af583f38", - "start": { - "$date": "2022-07-01T01:03:34.000Z" - }, - "end": { - "$date": "2022-07-01T01:04:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "73c004ae-4869-4aa3-9c97-53a5374d590b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T01:53:49.000Z" - }, - "end": { - "$date": "2022-07-01T02:25:31.000Z" - }, - "events": [ - { - "uuid": "b54e2443-2a41-46c3-a894-50a00a1dd9dc", - "start": { - "$date": "2022-07-01T01:53:49.000Z" - }, - "end": { - "$date": "2022-07-01T02:25:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f1f1a520-414b-4af3-8dd5-38d3e64138ce", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-01T02:14:29.000Z" - }, - "end": { - "$date": "2022-07-01T03:13:44.000Z" - }, - "events": [ - { - "uuid": "f7b27ed5-bdd2-4e7c-8ef7-7ea21e5466ca", - "start": { - "$date": "2022-07-01T02:14:29.000Z" - }, - "end": { - "$date": "2022-07-01T03:13:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6d8740c9-9324-4582-a77d-254cbca9f286", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-01T02:16:12.000Z" - }, - "end": { - "$date": "2022-07-01T07:15:16.000Z" - }, - "events": [ - { - "uuid": "1df21fa9-89e9-4aa6-a30e-0c4945b17dd6", - "start": { - "$date": "2022-07-01T02:16:12.000Z" - }, - "end": { - "$date": "2022-07-01T07:15:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1650fa9e-4b14-4cac-bc66-1c7c163aeaf5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T02:45:14.000Z" - }, - "end": { - "$date": "2022-07-01T03:03:48.000Z" - }, - "events": [ - { - "uuid": "d2daa19e-d9f2-45da-abcd-191904fd4ece", - "start": { - "$date": "2022-07-01T02:45:14.000Z" - }, - "end": { - "$date": "2022-07-01T03:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ebea4d21-e95f-4774-b32f-d143253db14b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T02:48:17.000Z" - }, - "end": { - "$date": "2022-07-01T04:24:24.000Z" - }, - "events": [ - { - "uuid": "0c269065-a60f-43a2-8663-cd24003873dd", - "start": { - "$date": "2022-07-01T02:48:17.000Z" - }, - "end": { - "$date": "2022-07-01T04:24:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fe54ce58-1b18-460f-91a2-db38e203af2c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-01T03:20:01.000Z" - }, - "end": { - "$date": "2022-07-01T03:54:47.000Z" - }, - "events": [ - { - "uuid": "4ff0807c-4ee9-44e7-80cf-708001e3affc", - "start": { - "$date": "2022-07-01T03:20:01.000Z" - }, - "end": { - "$date": "2022-07-01T03:54:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa1bf24a-ba54-412e-8fa8-4d4c0c354d0c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T03:21:35.000Z" - }, - "end": { - "$date": "2022-07-01T03:37:19.000Z" - }, - "events": [ - { - "uuid": "de87d585-e1f4-410e-b83c-3c625c63dd7d", - "start": { - "$date": "2022-07-01T03:21:35.000Z" - }, - "end": { - "$date": "2022-07-01T03:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2e62857-5715-4be6-a539-31383fdb9d55", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-01T03:27:17.000Z" - }, - "end": { - "$date": "2022-07-01T03:38:01.000Z" - }, - "events": [ - { - "uuid": "e243c11a-d986-48d5-a27a-b57a0a0ea982", - "start": { - "$date": "2022-07-01T03:27:17.000Z" - }, - "end": { - "$date": "2022-07-01T03:38:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "dd6ad84f-7754-435a-aafa-bfd9b15aca3f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-01T03:30:29.000Z" - }, - "end": { - "$date": "2022-07-01T05:57:13.000Z" - }, - "events": [ - { - "uuid": "7c66bc6e-ebe3-4506-b32d-96806953fd67", - "start": { - "$date": "2022-07-01T03:30:29.000Z" - }, - "end": { - "$date": "2022-07-01T05:57:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2879f47b-d397-45b8-80bb-837483c3c992", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-01T03:27:17.000Z" - }, - "end": { - "$date": "2022-07-01T04:17:53.000Z" - }, - "events": [ - { - "uuid": "8998c938-86d1-4846-a29c-c7f6b7b43926", - "start": { - "$date": "2022-07-01T03:27:17.000Z" - }, - "end": { - "$date": "2022-07-01T04:17:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "449fe542-3275-49a0-ac5a-76c76de97cd2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-01T04:25:32.000Z" - }, - "end": { - "$date": "2022-07-01T04:43:52.000Z" - }, - "events": [ - { - "uuid": "fc081036-e549-4c41-b677-d0a578ca3df8", - "start": { - "$date": "2022-07-01T04:25:32.000Z" - }, - "end": { - "$date": "2022-07-01T04:37:32.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d66042ab-094e-4700-af27-2f1b5f8138fd", - "start": { - "$date": "2022-07-01T04:37:32.000Z" - }, - "end": { - "$date": "2022-07-01T04:51:32.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "960e5a3d-5919-498c-ba3c-4e917da6561e", - "start": { - "$date": "2022-07-01T04:51:32.000Z" - }, - "end": { - "$date": "2022-07-01T04:43:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8bc938c8-c49d-4707-8347-85efb642bb5f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-01T03:59:25.000Z" - }, - "end": { - "$date": "2022-07-01T04:49:18.000Z" - }, - "events": [ - { - "uuid": "c23e9ec4-cf20-4c34-a136-8087433cb90a", - "start": { - "$date": "2022-07-01T03:59:25.000Z" - }, - "end": { - "$date": "2022-07-01T04:49:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "72b06110-078f-4c0e-84f9-ebbdd642acfc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T04:00:47.000Z" - }, - "end": { - "$date": "2022-07-01T04:47:32.000Z" - }, - "events": [ - { - "uuid": "a91aca35-f3a1-411a-be27-adbf28329750", - "start": { - "$date": "2022-07-01T04:00:47.000Z" - }, - "end": { - "$date": "2022-07-01T04:47:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "615c85f9-ab37-4ee5-b4ed-562674dd4bfd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-01T04:01:42.000Z" - }, - "end": { - "$date": "2022-07-01T04:49:28.000Z" - }, - "events": [ - { - "uuid": "4618970a-8e46-49e7-8f9d-7391235c3d74", - "start": { - "$date": "2022-07-01T04:01:42.000Z" - }, - "end": { - "$date": "2022-07-01T04:49:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0ba1bfac-e4a1-4ebf-a5c6-111888dba0c5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-01T04:32:58.000Z" - }, - "end": { - "$date": "2022-07-01T06:07:08.000Z" - }, - "events": [ - { - "uuid": "ebbeaf8c-656e-47d1-ae98-6492842f61b2", - "start": { - "$date": "2022-07-01T04:32:58.000Z" - }, - "end": { - "$date": "2022-07-01T06:07:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "e1ec1e34-e81a-4b5c-98d9-8d7127f3cd4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-01T04:44:23.000Z" - }, - "end": { - "$date": "2022-07-01T05:05:35.000Z" - }, - "events": [ - { - "uuid": "db837e30-b21c-4f93-9541-a72a1f977f56", - "start": { - "$date": "2022-07-01T04:44:23.000Z" - }, - "end": { - "$date": "2022-07-01T05:05:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "03ff6eef-fe2b-41e9-a5ac-8fdc1187b42e", - "uuid": "1a5d8559-730d-49af-972e-5f96b71a879a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T04:46:23.000Z" - }, - "end": { - "$date": "2022-07-01T05:10:50.000Z" - }, - "events": [ - { - "uuid": "95b6c2f0-817c-4a4d-860f-bffd52f3c6e2", - "start": { - "$date": "2022-07-01T04:46:23.000Z" - }, - "end": { - "$date": "2022-07-01T05:10:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "85aea4d0-7557-4a5d-b16a-d4614b7786de", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-01T04:49:41.000Z" - }, - "end": { - "$date": "2022-07-01T06:10:11.000Z" - }, - "events": [ - { - "uuid": "c893604b-31aa-4562-8a4d-9a5ccc6382a2", - "start": { - "$date": "2022-07-01T04:49:41.000Z" - }, - "end": { - "$date": "2022-07-01T06:10:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "02234a4d-7c40-49ad-a769-293b8bf562b6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-01T04:50:08.000Z" - }, - "end": { - "$date": "2022-07-01T06:09:55.000Z" - }, - "events": [ - { - "uuid": "782e0eec-19e7-43cf-8765-d2bbe77ff1ed", - "start": { - "$date": "2022-07-01T04:50:08.000Z" - }, - "end": { - "$date": "2022-07-01T06:09:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2d6b7833-f7cb-4e6b-9063-9f7ba2386c24", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-01T05:48:00.000Z" - }, - "end": { - "$date": "2022-07-01T06:19:25.000Z" - }, - "events": [ - { - "uuid": "289f9efe-e8c9-42cf-ae0a-91ab72f87819", - "start": { - "$date": "2022-07-01T05:48:00.000Z" - }, - "end": { - "$date": "2022-07-01T06:19:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a7c77d7f-43c1-455a-9be8-0426cae89a93", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-01T06:20:22.000Z" - }, - "end": { - "$date": "2022-07-01T06:58:23.000Z" - }, - "events": [ - { - "uuid": "764d7080-98ca-4207-a15e-a44bba8159ea", - "start": { - "$date": "2022-07-01T06:20:22.000Z" - }, - "end": { - "$date": "2022-07-01T06:58:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0d01a79d-2fe2-4253-ad81-342eded39332", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-01T06:59:24.000Z" - }, - "end": { - "$date": "2022-07-01T07:39:53.000Z" - }, - "events": [ - { - "uuid": "5c2e3afa-93da-40b2-a54d-2b75db92e394", - "start": { - "$date": "2022-07-01T06:59:24.000Z" - }, - "end": { - "$date": "2022-07-01T07:39:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "5988801c-a9e7-4a75-8a63-4a9e562da167", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-01T08:48:39.000Z" - }, - "end": { - "$date": "2022-07-01T10:01:20.000Z" - }, - "events": [ - { - "uuid": "02d538d5-0ada-462e-b016-7fc79e3698e9", - "start": { - "$date": "2022-07-01T08:48:39.000Z" - }, - "end": { - "$date": "2022-07-01T10:01:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "ccc1350b-3123-418a-88db-1cbe4293bb66", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T13:30:51.000Z" - }, - "end": { - "$date": "2022-07-01T13:48:07.000Z" - }, - "events": [ - { - "uuid": "11e438aa-4dd5-4f21-983d-003c37323d93", - "start": { - "$date": "2022-07-01T13:30:51.000Z" - }, - "end": { - "$date": "2022-07-01T13:48:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "1a706e02-91f0-4974-a230-1e45e69c7509", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-01T13:42:46.000Z" - }, - "end": { - "$date": "2022-07-01T16:24:41.000Z" - }, - "events": [ - { - "uuid": "2a4e6d6f-ffcd-4fea-a7b7-e401f9067507", - "start": { - "$date": "2022-07-01T13:42:46.000Z" - }, - "end": { - "$date": "2022-07-01T16:24:41.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "bc34c5b9-02af-4d00-b263-a38c3e07fa31", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T14:23:51.000Z" - }, - "end": { - "$date": "2022-07-01T14:43:38.000Z" - }, - "events": [ - { - "uuid": "f69e1a17-7e85-4655-a8e3-21d9bd584af3", - "start": { - "$date": "2022-07-01T14:23:51.000Z" - }, - "end": { - "$date": "2022-07-01T14:43:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "957bab9e-7e40-43c3-b205-8cc8b0c45225", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T14:43:53.000Z" - }, - "end": { - "$date": "2022-07-01T16:00:58.000Z" - }, - "events": [ - { - "uuid": "75a43b64-42bc-4a1d-bc74-ec3d1145a067", - "start": { - "$date": "2022-07-01T14:43:53.000Z" - }, - "end": { - "$date": "2022-07-01T16:00:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96d12c4a-3f61-4847-ad5c-dfe793df3aa4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-01T17:11:39.000Z" - }, - "end": { - "$date": "2022-07-01T18:41:37.000Z" - }, - "events": [ - { - "uuid": "eccf5fa9-004b-4a68-8748-1b2634524e4a", - "start": { - "$date": "2022-07-01T17:11:39.000Z" - }, - "end": { - "$date": "2022-07-01T18:41:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d460b81a-b6b6-4825-8aa1-99d96709f6d1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-01T17:32:19.000Z" - }, - "end": { - "$date": "2022-07-01T18:37:38.000Z" - }, - "events": [ - { - "uuid": "869e02cd-23a1-43e6-b841-b6588f900f71", - "start": { - "$date": "2022-07-01T17:32:19.000Z" - }, - "end": { - "$date": "2022-07-01T18:37:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "387fbd2f-4995-4dca-bdc3-6307379ca595", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-01T18:32:33.000Z" - }, - "end": { - "$date": "2022-07-01T19:05:39.000Z" - }, - "events": [ - { - "uuid": "6882766f-7df3-4253-a8b0-392b5556bee1", - "start": { - "$date": "2022-07-01T18:32:33.000Z" - }, - "end": { - "$date": "2022-07-01T19:05:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "4ded40be-30bb-4493-800b-e56a7a377ad2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-01T20:26:47.000Z" - }, - "end": { - "$date": "2022-07-01T20:31:55.000Z" - }, - "events": [ - { - "uuid": "b53224c7-af4b-4a24-8d1b-591036d58e66", - "start": { - "$date": "2022-07-01T20:26:47.000Z" - }, - "end": { - "$date": "2022-07-01T20:31:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7b9861d9-347a-4f07-b295-7ff3ced28aec", - "uuid": "94c5a863-b17e-47d8-b67b-556f71f6390f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-01T20:32:03.000Z" - }, - "end": { - "$date": "2022-07-01T20:34:10.000Z" - }, - "events": [ - { - "uuid": "310ec7d6-71ae-4ad7-959d-6a8455602b21", - "start": { - "$date": "2022-07-01T20:32:03.000Z" - }, - "end": { - "$date": "2022-07-01T20:34:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "0a3f1e2e-bb7c-4f6f-b469-6619581a5295", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-01T20:45:44.000Z" - }, - "end": { - "$date": "2022-07-01T20:45:57.000Z" - }, - "events": [ - { - "uuid": "d0ce91e4-5cbf-4d6a-985a-7c562ac50e79", - "start": { - "$date": "2022-07-01T20:45:44.000Z" - }, - "end": { - "$date": "2022-07-01T20:45:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "119bdeb6-9fae-4e9e-82d3-c322d5595697", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-01T23:53:10.000Z" - }, - "end": { - "$date": "2022-07-02T00:07:01.000Z" - }, - "events": [ - { - "uuid": "d66cb375-8149-4e6c-91fa-00ab2a34df23", - "start": { - "$date": "2022-07-01T23:53:10.000Z" - }, - "end": { - "$date": "2022-07-02T00:07:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "5195d576-0e40-40ad-80c9-b160730d12a7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-02T00:35:40.000Z" - }, - "end": { - "$date": "2022-07-02T00:36:03.000Z" - }, - "events": [ - { - "uuid": "da04008b-5251-4ad9-aa1c-57a47f72ac2c", - "start": { - "$date": "2022-07-02T00:35:40.000Z" - }, - "end": { - "$date": "2022-07-02T00:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "efe93842-47c4-4ced-ae26-088c6b4fcb31", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-02T00:09:20.000Z" - }, - "end": { - "$date": "2022-07-02T02:09:15.000Z" - }, - "events": [ - { - "uuid": "7aa37337-7ae0-498d-b0d6-ae4c9bd952fc", - "start": { - "$date": "2022-07-02T00:09:20.000Z" - }, - "end": { - "$date": "2022-07-02T02:09:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "259c7575-1228-41b2-b9b1-546d2a61ac18", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-02T01:55:51.000Z" - }, - "end": { - "$date": "2022-07-02T02:24:37.000Z" - }, - "events": [ - { - "uuid": "8a4978d1-37cb-4599-a913-99ae4a0e4820", - "start": { - "$date": "2022-07-02T01:55:51.000Z" - }, - "end": { - "$date": "2022-07-02T02:24:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "16058471-1f49-4700-a266-1801a58abb6f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-02T02:29:25.000Z" - }, - "end": { - "$date": "2022-07-02T02:30:35.000Z" - }, - "events": [ - { - "uuid": "79f079e4-2e28-4754-a17d-0365779312f1", - "start": { - "$date": "2022-07-02T02:29:25.000Z" - }, - "end": { - "$date": "2022-07-02T02:30:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "fc814e9b-d44e-4103-b5d5-bb5420d93c09", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-02T02:30:45.000Z" - }, - "end": { - "$date": "2022-07-02T03:39:59.000Z" - }, - "events": [ - { - "uuid": "92443fd2-4d99-4ddc-bba5-47ad2160c024", - "start": { - "$date": "2022-07-02T02:30:45.000Z" - }, - "end": { - "$date": "2022-07-02T03:39:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "35384f00-76df-43dc-9ac8-b817cb89a8e1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-02T03:33:31.000Z" - }, - "end": { - "$date": "2022-07-02T07:55:48.000Z" - }, - "events": [ - { - "uuid": "118f942a-9653-41d6-a1cd-239019735cb5", - "start": { - "$date": "2022-07-02T03:33:31.000Z" - }, - "end": { - "$date": "2022-07-02T07:55:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "00312f2a-0179-4e03-bd07-e8dd012c405e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-02T03:43:24.000Z" - }, - "end": { - "$date": "2022-07-02T03:45:10.000Z" - }, - "events": [ - { - "uuid": "57830283-ae50-47b1-b491-a01e46d40a7c", - "start": { - "$date": "2022-07-02T03:43:24.000Z" - }, - "end": { - "$date": "2022-07-02T03:45:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "35f36d7c-b02e-4d1b-932b-dbae156f06fe", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-02T03:47:47.000Z" - }, - "end": { - "$date": "2022-07-02T09:33:40.000Z" - }, - "events": [ - { - "uuid": "cc07838f-2794-4e87-abd0-04d9984feee0", - "start": { - "$date": "2022-07-02T03:47:47.000Z" - }, - "end": { - "$date": "2022-07-02T09:33:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3a797415-ab7e-4d44-8dd6-270442c2aebd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-02T03:53:37.000Z" - }, - "end": { - "$date": "2022-07-02T06:06:38.000Z" - }, - "events": [ - { - "uuid": "6e9c2fe3-26e7-41ea-abe1-445dceeabef6", - "start": { - "$date": "2022-07-02T03:53:37.000Z" - }, - "end": { - "$date": "2022-07-02T06:06:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3f319ad8-c672-4a97-82c7-3d04c1d43927", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-02T03:54:41.000Z" - }, - "end": { - "$date": "2022-07-02T06:52:22.000Z" - }, - "events": [ - { - "uuid": "e248a951-e098-4119-bdcc-2dff31a40eab", - "start": { - "$date": "2022-07-02T03:54:41.000Z" - }, - "end": { - "$date": "2022-07-02T06:52:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "3ea9063c-af94-4c07-9529-e0f01aba4d28", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-02T04:35:14.000Z" - }, - "end": { - "$date": "2022-07-02T05:46:38.000Z" - }, - "events": [ - { - "uuid": "7701a841-3d30-4c21-b095-91615805c066", - "start": { - "$date": "2022-07-02T04:35:14.000Z" - }, - "end": { - "$date": "2022-07-02T05:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2e71fff2-c49f-415e-9bbd-c5222c5d060d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-02T04:41:52.000Z" - }, - "end": { - "$date": "2022-07-02T05:37:43.000Z" - }, - "events": [ - { - "uuid": "bc683632-3df0-4f6a-9f7e-8b2f59b7343b", - "start": { - "$date": "2022-07-02T04:41:52.000Z" - }, - "end": { - "$date": "2022-07-02T05:37:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ef2a7771-d081-4b87-90f7-08f12933e69a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-02T05:30:27.000Z" - }, - "end": { - "$date": "2022-07-02T07:16:59.000Z" - }, - "events": [ - { - "uuid": "85e3937d-e36c-465e-afff-02910d2c32e3", - "start": { - "$date": "2022-07-02T05:30:27.000Z" - }, - "end": { - "$date": "2022-07-02T07:16:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e701fd99-9aa7-40be-ac52-ed88ac558a3a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-02T05:37:58.000Z" - }, - "end": { - "$date": "2022-07-02T05:39:03.000Z" - }, - "events": [ - { - "uuid": "e92787da-5092-425c-9cdd-8f8f24b3ca5a", - "start": { - "$date": "2022-07-02T05:37:58.000Z" - }, - "end": { - "$date": "2022-07-02T05:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "71820bb6-0479-4392-9f12-4974685f101b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-02T05:42:13.000Z" - }, - "end": { - "$date": "2022-07-02T06:49:45.000Z" - }, - "events": [ - { - "uuid": "9aafa0ed-c89c-447c-94bc-11fb33d1ad00", - "start": { - "$date": "2022-07-02T05:42:13.000Z" - }, - "end": { - "$date": "2022-07-02T06:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "54835718-719e-44ea-83f1-a8baeed6d9e6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-02T06:50:10.000Z" - }, - "end": { - "$date": "2022-07-02T07:58:37.000Z" - }, - "events": [ - { - "uuid": "e8f2e320-bc0b-497e-bbc4-1ac96f1b7d7a", - "start": { - "$date": "2022-07-02T06:50:10.000Z" - }, - "end": { - "$date": "2022-07-02T07:35:10.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "274b7377-f786-441c-a1b6-8aec34abae3d", - "start": { - "$date": "2022-07-02T07:35:10.000Z" - }, - "end": { - "$date": "2022-07-02T07:38:10.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9d71260-c916-4fb2-8a99-6bc8ce0b7c7e", - "start": { - "$date": "2022-07-02T07:38:10.000Z" - }, - "end": { - "$date": "2022-07-02T07:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "a2e58bd0-cfc3-4097-b5bf-001515b1697b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-02T07:22:41.000Z" - }, - "end": { - "$date": "2022-07-02T07:28:17.000Z" - }, - "events": [ - { - "uuid": "817038f0-6f17-422e-9a39-656dd44bbad3", - "start": { - "$date": "2022-07-02T07:22:41.000Z" - }, - "end": { - "$date": "2022-07-02T07:28:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5d81d5a1-316f-4725-9233-801fc24aadc4", - "uuid": "3d182ecc-35c7-4e17-af0e-5a8280e49b7c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-02T07:30:52.000Z" - }, - "end": { - "$date": "2022-07-02T07:45:39.000Z" - }, - "events": [ - { - "uuid": "4b976b3e-879e-471f-837a-bc2c6330bbe0", - "start": { - "$date": "2022-07-02T07:30:52.000Z" - }, - "end": { - "$date": "2022-07-02T07:45:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "baffda15-430a-441a-8bfe-e2ba79f573a6", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-02T08:17:11.000Z" - }, - "end": { - "$date": "2022-07-02T09:56:13.000Z" - }, - "events": [ - { - "uuid": "047d17d9-2df0-429c-ae91-e7a84cf66f27", - "start": { - "$date": "2022-07-02T08:17:11.000Z" - }, - "end": { - "$date": "2022-07-02T09:56:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4b394edf-55a8-496b-b3c2-e780f96dce9c", - "uuid": "e4c5c0e6-576b-4aa5-9cf5-e71b80e02a32", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-02T16:03:31.000Z" - }, - "end": { - "$date": "2022-07-02T16:20:32.000Z" - }, - "events": [ - { - "uuid": "b469d6fc-9eb1-4e53-9d9b-90e167ea973a", - "start": { - "$date": "2022-07-02T16:03:31.000Z" - }, - "end": { - "$date": "2022-07-02T16:20:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "80a9c763-a8fb-43f3-941f-9ad9045924e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-02T16:55:35.000Z" - }, - "end": { - "$date": "2022-07-02T17:01:20.000Z" - }, - "events": [ - { - "uuid": "3aa07eab-48dc-4a7e-9490-f827b124ff4a", - "start": { - "$date": "2022-07-02T16:55:35.000Z" - }, - "end": { - "$date": "2022-07-02T17:01:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "74d2268c-9856-48a8-82cd-6d673a126685", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-02T17:10:41.000Z" - }, - "end": { - "$date": "2022-07-02T17:17:31.000Z" - }, - "events": [ - { - "uuid": "e36f8652-00e4-4c83-b76b-094bc0ca0f45", - "start": { - "$date": "2022-07-02T17:10:41.000Z" - }, - "end": { - "$date": "2022-07-02T17:17:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0f3c51ae-ce5f-4d42-80b8-96d8bd1487fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-02T17:17:41.000Z" - }, - "end": { - "$date": "2022-07-02T23:04:25.000Z" - }, - "events": [ - { - "uuid": "c260a53c-71bd-4635-b010-c806433cd85e", - "start": { - "$date": "2022-07-02T17:17:41.000Z" - }, - "end": { - "$date": "2022-07-02T22:01:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c9d7d250-67ac-4ea1-a8a7-044ab1b6a764", - "start": { - "$date": "2022-07-02T22:01:41.000Z" - }, - "end": { - "$date": "2022-07-02T22:17:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "23881a76-21b2-4859-bf07-06f3c7570b56", - "start": { - "$date": "2022-07-02T22:17:41.000Z" - }, - "end": { - "$date": "2022-07-02T22:35:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "00e297ca-894c-413f-94ec-8693b79cfdda", - "start": { - "$date": "2022-07-02T22:35:41.000Z" - }, - "end": { - "$date": "2022-07-02T22:49:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5331628d-bcf8-40f4-84ad-0b6805d7ce17", - "start": { - "$date": "2022-07-02T22:49:41.000Z" - }, - "end": { - "$date": "2022-07-02T23:04:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6b82414-c7fa-4c62-89ec-adba4b617ec0", - "uuid": "b456b444-1dee-487d-8381-1d61490e9649", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-02T17:23:31.000Z" - }, - "end": { - "$date": "2022-07-02T19:37:32.000Z" - }, - "events": [ - { - "uuid": "3e01409d-149f-4eae-8479-7d65cc9de083", - "start": { - "$date": "2022-07-02T17:23:31.000Z" - }, - "end": { - "$date": "2022-07-02T17:37:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0df9a745-e4fa-47e5-b251-a210b551db53", - "start": { - "$date": "2022-07-02T17:37:31.000Z" - }, - "end": { - "$date": "2022-07-02T17:39:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "88dbcc0e-c077-4e3d-ac20-98f88398cc5a", - "start": { - "$date": "2022-07-02T17:39:31.000Z" - }, - "end": { - "$date": "2022-07-02T17:50:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3f2df4c6-aef7-4694-9850-b3c3a45bbf94", - "start": { - "$date": "2022-07-02T17:50:31.000Z" - }, - "end": { - "$date": "2022-07-02T19:25:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d7fcd69-dea1-4b49-adc9-11974097cb8c", - "start": { - "$date": "2022-07-02T19:25:31.000Z" - }, - "end": { - "$date": "2022-07-02T19:37:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ad8f96e5-ba46-4014-9bec-b9d985c5c205", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-02T19:28:40.000Z" - }, - "end": { - "$date": "2022-07-02T19:35:51.000Z" - }, - "events": [ - { - "uuid": "fe62d204-e2fd-432b-a5b1-16528aba8495", - "start": { - "$date": "2022-07-02T19:28:40.000Z" - }, - "end": { - "$date": "2022-07-02T19:35:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "2c6995bd-9ef9-4899-bb37-47a381cef9f8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-02T19:48:12.000Z" - }, - "end": { - "$date": "2022-07-02T20:47:16.000Z" - }, - "events": [ - { - "uuid": "0a9af543-2080-4335-8e6a-56e5231ed20a", - "start": { - "$date": "2022-07-02T19:48:12.000Z" - }, - "end": { - "$date": "2022-07-02T20:36:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "261c3179-35e7-479b-8544-288c8763e31f", - "start": { - "$date": "2022-07-02T20:36:12.000Z" - }, - "end": { - "$date": "2022-07-02T20:44:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e5d977bd-362f-4289-8792-4115b9242918", - "start": { - "$date": "2022-07-02T20:44:12.000Z" - }, - "end": { - "$date": "2022-07-02T20:47:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "80a6572e-fe1b-4280-a38b-daa0e91faa7b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-02T19:50:10.000Z" - }, - "end": { - "$date": "2022-07-02T20:53:01.000Z" - }, - "events": [ - { - "uuid": "03a7d5c2-bb61-45a6-b92a-5c76a10562bc", - "start": { - "$date": "2022-07-02T19:50:10.000Z" - }, - "end": { - "$date": "2022-07-02T20:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "e9f7c884-a9e4-4d7b-949c-d44615f05a64", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-02T21:02:48.000Z" - }, - "end": { - "$date": "2022-07-03T00:56:54.000Z" - }, - "events": [ - { - "uuid": "a3163c2a-3dfc-491b-841e-4d2dadd773ca", - "start": { - "$date": "2022-07-02T21:02:48.000Z" - }, - "end": { - "$date": "2022-07-03T00:56:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "50826ef5-0c45-4803-a242-edb9fb54d200", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-02T21:07:25.000Z" - }, - "end": { - "$date": "2022-07-03T01:00:45.000Z" - }, - "events": [ - { - "uuid": "8b88e196-cdf2-4508-9e3f-8d0d8ee63c97", - "start": { - "$date": "2022-07-02T21:07:25.000Z" - }, - "end": { - "$date": "2022-07-03T01:00:45.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "c985901b-6161-4036-9c4c-04618fdfd660", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-02T21:08:29.000Z" - }, - "end": { - "$date": "2022-07-03T00:58:29.000Z" - }, - "events": [ - { - "uuid": "2469701f-99ba-4633-94af-b34f50f52f96", - "start": { - "$date": "2022-07-02T21:08:29.000Z" - }, - "end": { - "$date": "2022-07-03T00:58:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a6c0a0f4-ae39-4e73-ad4a-f2ae5d962cb5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-02T22:05:28.000Z" - }, - "end": { - "$date": "2022-07-02T22:06:44.000Z" - }, - "events": [ - { - "uuid": "32ffc902-55a1-4f71-8f75-4cdd76ae84f0", - "start": { - "$date": "2022-07-02T22:05:28.000Z" - }, - "end": { - "$date": "2022-07-02T22:06:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4533d467-876a-408c-a412-c8b128a0695c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T03:06:17.000Z" - }, - "end": { - "$date": "2022-07-03T03:40:03.000Z" - }, - "events": [ - { - "uuid": "13e8a7a2-4abb-4869-8254-c8b211727ad3", - "start": { - "$date": "2022-07-03T03:06:17.000Z" - }, - "end": { - "$date": "2022-07-03T03:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a9d9297e-e8fc-4fb9-a58c-c1cc652bacf5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T03:43:15.000Z" - }, - "end": { - "$date": "2022-07-03T04:12:46.000Z" - }, - "events": [ - { - "uuid": "5f8f8229-d710-4cc9-9a75-05677e6c6288", - "start": { - "$date": "2022-07-03T03:43:15.000Z" - }, - "end": { - "$date": "2022-07-03T04:12:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "72a68b49-0386-4094-bc34-0354dfcfcdd4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-03T03:44:51.000Z" - }, - "end": { - "$date": "2022-07-03T07:11:19.000Z" - }, - "events": [ - { - "uuid": "793eb9a2-dd7d-4dbf-b5e8-93488c9c79b4", - "start": { - "$date": "2022-07-03T03:44:51.000Z" - }, - "end": { - "$date": "2022-07-03T07:11:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "0acedf88-5a57-4551-8bd2-e98112650409", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-03T03:53:02.000Z" - }, - "end": { - "$date": "2022-07-03T07:50:35.000Z" - }, - "events": [ - { - "uuid": "9e666000-36d6-4c2c-a205-14ab2009ec17", - "start": { - "$date": "2022-07-03T03:53:02.000Z" - }, - "end": { - "$date": "2022-07-03T07:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "ad001949-8fe7-4068-aba0-1ea16bb31cb5", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-03T04:02:14.000Z" - }, - "end": { - "$date": "2022-07-03T07:47:49.000Z" - }, - "events": [ - { - "uuid": "f9b9a806-7329-497b-b444-07c53a69cd86", - "start": { - "$date": "2022-07-03T04:02:14.000Z" - }, - "end": { - "$date": "2022-07-03T07:47:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a0e0d37c-32c0-4283-adbc-2307e2d897f2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T04:14:18.000Z" - }, - "end": { - "$date": "2022-07-03T04:53:36.000Z" - }, - "events": [ - { - "uuid": "4f17784d-26fa-47f7-9b6c-bdc3af349a2e", - "start": { - "$date": "2022-07-03T04:14:18.000Z" - }, - "end": { - "$date": "2022-07-03T04:53:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c9881b51-bacb-4bd3-9563-6311114b64a5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-03T04:49:48.000Z" - }, - "end": { - "$date": "2022-07-03T05:13:54.000Z" - }, - "events": [ - { - "uuid": "40348f31-3838-4fa8-a636-d966e21f5b8a", - "start": { - "$date": "2022-07-03T04:49:48.000Z" - }, - "end": { - "$date": "2022-07-03T05:13:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bbde747a-10d6-460b-aa12-fa005788f6ff", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T04:55:51.000Z" - }, - "end": { - "$date": "2022-07-03T05:23:16.000Z" - }, - "events": [ - { - "uuid": "03f3bb85-b783-48e7-bbd4-ca0f96680a61", - "start": { - "$date": "2022-07-03T04:55:51.000Z" - }, - "end": { - "$date": "2022-07-03T05:23:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c53e6fda-f3bc-497b-a6ff-d2d75f02f577", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T05:24:39.000Z" - }, - "end": { - "$date": "2022-07-03T06:01:35.000Z" - }, - "events": [ - { - "uuid": "501e30e2-60ea-4a8d-81c8-30fcc6c6fd6a", - "start": { - "$date": "2022-07-03T05:24:39.000Z" - }, - "end": { - "$date": "2022-07-03T06:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "0fa67d08-a935-4b11-a8e7-a665354990ac", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-03T05:35:31.000Z" - }, - "end": { - "$date": "2022-07-03T05:46:36.000Z" - }, - "events": [ - { - "uuid": "3427feb3-9857-4422-b3b5-8378218676dc", - "start": { - "$date": "2022-07-03T05:35:31.000Z" - }, - "end": { - "$date": "2022-07-03T05:46:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1902a166-315e-429a-a618-d13f066ba663", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T06:03:22.000Z" - }, - "end": { - "$date": "2022-07-03T06:30:46.000Z" - }, - "events": [ - { - "uuid": "51a54373-25b2-49c9-b14e-7405e2ae562a", - "start": { - "$date": "2022-07-03T06:03:22.000Z" - }, - "end": { - "$date": "2022-07-03T06:30:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e1f3015b-3612-4828-9a94-eb97deaf1686", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-03T06:31:46.000Z" - }, - "end": { - "$date": "2022-07-03T07:01:35.000Z" - }, - "events": [ - { - "uuid": "64b6607d-354e-47c0-a3eb-1791766ac87f", - "start": { - "$date": "2022-07-03T06:31:46.000Z" - }, - "end": { - "$date": "2022-07-03T07:01:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f3455b77-8208-479a-8244-34516b0e5816", - "uuid": "af0df7c7-35d8-4ea0-94fb-a12b8fad41cd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-03T06:32:22.000Z" - }, - "end": { - "$date": "2022-07-03T06:38:53.000Z" - }, - "events": [ - { - "uuid": "291dbef0-8856-4c28-9db6-986810e01d88", - "start": { - "$date": "2022-07-03T06:32:22.000Z" - }, - "end": { - "$date": "2022-07-03T06:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35f84e81-1f0a-4a40-b954-30225c142db7", - "uuid": "3a4e1a78-0016-45f2-9806-65547b71e32b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-03T06:51:54.000Z" - }, - "end": { - "$date": "2022-07-03T07:10:23.000Z" - }, - "events": [ - { - "uuid": "677e47a0-e54a-45e5-b04b-d0d542876dac", - "start": { - "$date": "2022-07-03T06:51:54.000Z" - }, - "end": { - "$date": "2022-07-03T07:10:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "49d485a1-55bb-49ff-b74c-9df00a06c058", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-03T16:37:11.000Z" - }, - "end": { - "$date": "2022-07-03T17:23:22.000Z" - }, - "events": [ - { - "uuid": "6aa8f594-31b1-4eba-b594-1ddc2a0846ff", - "start": { - "$date": "2022-07-03T16:37:11.000Z" - }, - "end": { - "$date": "2022-07-03T17:23:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e5d5940d-7514-4242-b4a9-9b4498da7cf4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-03T17:05:44.000Z" - }, - "end": { - "$date": "2022-07-03T19:18:26.000Z" - }, - "events": [ - { - "uuid": "fd65d56c-9829-4bf2-8675-b324fa39ab86", - "start": { - "$date": "2022-07-03T17:05:44.000Z" - }, - "end": { - "$date": "2022-07-03T19:18:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "366c0cf5-8262-449b-abed-07e2185a9ca2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-03T18:12:26.000Z" - }, - "end": { - "$date": "2022-07-03T21:28:23.000Z" - }, - "events": [ - { - "uuid": "a0fcb5d7-bf3f-4c00-a906-8ec20ca2a739", - "start": { - "$date": "2022-07-03T18:12:26.000Z" - }, - "end": { - "$date": "2022-07-03T18:51:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d56b39e9-a727-4ed0-bc77-e0db08e8af50", - "start": { - "$date": "2022-07-03T18:51:26.000Z" - }, - "end": { - "$date": "2022-07-03T18:55:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4aafef34-fff2-47b6-a204-1e3d320f4ae3", - "start": { - "$date": "2022-07-03T18:55:26.000Z" - }, - "end": { - "$date": "2022-07-03T21:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "9cd484a9-b660-4fea-a084-19be88fb3d51", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-03T18:13:48.000Z" - }, - "end": { - "$date": "2022-07-03T18:15:28.000Z" - }, - "events": [ - { - "uuid": "dcfae5c0-7e33-49d4-8f47-6c631f103e6b", - "start": { - "$date": "2022-07-03T18:13:48.000Z" - }, - "end": { - "$date": "2022-07-03T18:15:28.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "f2e32432-2882-431c-8751-d92e7ade7f1c", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-03T18:16:29.000Z" - }, - "end": { - "$date": "2022-07-03T22:01:19.000Z" - }, - "events": [ - { - "uuid": "29677b03-7594-4282-b563-b937eccf95a8", - "start": { - "$date": "2022-07-03T18:16:29.000Z" - }, - "end": { - "$date": "2022-07-03T22:01:19.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "715b7047-f449-4763-a766-0f3b302e3071", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-03T19:44:40.000Z" - }, - "end": { - "$date": "2022-07-03T23:47:51.000Z" - }, - "events": [ - { - "uuid": "5cb3930a-1e67-4fe4-99f6-969a000e3cac", - "start": { - "$date": "2022-07-03T19:44:40.000Z" - }, - "end": { - "$date": "2022-07-03T23:47:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "491c7e72-b649-452a-bd58-3806eabe517f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-03T20:12:55.000Z" - }, - "end": { - "$date": "2022-07-04T01:50:38.000Z" - }, - "events": [ - { - "uuid": "687dac43-9bc0-4f55-87ce-ce135120e466", - "start": { - "$date": "2022-07-03T20:12:55.000Z" - }, - "end": { - "$date": "2022-07-04T01:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "10493974-3568-4e39-a021-4cfdfcf20c44", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-03T20:20:56.000Z" - }, - "end": { - "$date": "2022-07-03T22:58:21.000Z" - }, - "events": [ - { - "uuid": "423b5cd2-96e0-4c79-b542-6b3712ec01ed", - "start": { - "$date": "2022-07-03T20:20:56.000Z" - }, - "end": { - "$date": "2022-07-03T22:58:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "10be1d1a-163f-4505-92de-d2533c108a7c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-03T21:23:13.000Z" - }, - "end": { - "$date": "2022-07-03T23:54:26.000Z" - }, - "events": [ - { - "uuid": "642655a9-c1a0-4a28-ba16-b2e3ee59bd1e", - "start": { - "$date": "2022-07-03T21:23:13.000Z" - }, - "end": { - "$date": "2022-07-03T23:54:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "9e47b72b-4702-40f5-84ed-435c150c9c7f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-03T22:00:17.000Z" - }, - "end": { - "$date": "2022-07-03T23:55:51.000Z" - }, - "events": [ - { - "uuid": "2be0ccf7-0ea5-4d08-825d-540478281783", - "start": { - "$date": "2022-07-03T22:00:17.000Z" - }, - "end": { - "$date": "2022-07-03T23:55:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "98b14fcd-7e70-495b-99d4-c279867ab8ac", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-03T22:44:12.000Z" - }, - "end": { - "$date": "2022-07-03T22:56:57.000Z" - }, - "events": [ - { - "uuid": "c7cfbbd1-e49c-4a60-afad-20520dfdf575", - "start": { - "$date": "2022-07-03T22:44:12.000Z" - }, - "end": { - "$date": "2022-07-03T22:56:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "e395bfbe-2de2-47bf-ba5c-cbb1317bf386", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-03T22:58:38.000Z" - }, - "end": { - "$date": "2022-07-04T01:51:13.000Z" - }, - "events": [ - { - "uuid": "0194f3f1-f7d3-442b-9dd8-260033f6fa3e", - "start": { - "$date": "2022-07-03T22:58:38.000Z" - }, - "end": { - "$date": "2022-07-04T01:51:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "32bc7552-f46f-4f84-9e65-2e1d1f0a32da", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-03T22:58:56.000Z" - }, - "end": { - "$date": "2022-07-04T04:31:33.000Z" - }, - "events": [ - { - "uuid": "e135888b-3679-4cc1-a663-4049d2e64158", - "start": { - "$date": "2022-07-03T22:58:56.000Z" - }, - "end": { - "$date": "2022-07-04T02:09:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a2558f90-e8e2-41f7-ae21-484dadea2443", - "start": { - "$date": "2022-07-04T02:09:56.000Z" - }, - "end": { - "$date": "2022-07-04T02:56:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "69d5c2a5-af76-4ed5-81bf-6d1275e0ff4a", - "start": { - "$date": "2022-07-04T02:56:56.000Z" - }, - "end": { - "$date": "2022-07-04T02:57:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58ff3b26-49e8-48e4-b3ce-dd2e0db95a7c", - "start": { - "$date": "2022-07-04T02:57:56.000Z" - }, - "end": { - "$date": "2022-07-04T03:09:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e8f620bc-ff44-44dd-ba83-786870adda85", - "start": { - "$date": "2022-07-04T03:09:56.000Z" - }, - "end": { - "$date": "2022-07-04T03:10:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bf658a50-d434-4771-a8a0-0b79adc8c9c7", - "start": { - "$date": "2022-07-04T03:10:56.000Z" - }, - "end": { - "$date": "2022-07-04T03:43:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8d96caca-2dab-43dd-8034-cf62b1d95fbc", - "start": { - "$date": "2022-07-04T03:43:56.000Z" - }, - "end": { - "$date": "2022-07-04T03:44:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bca7eec2-f2c6-4c9e-ae81-ca7a289694dd", - "start": { - "$date": "2022-07-04T03:44:56.000Z" - }, - "end": { - "$date": "2022-07-04T03:45:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "70f4b373-ec35-4a0a-9e0c-fd312c082d76", - "start": { - "$date": "2022-07-04T03:45:56.000Z" - }, - "end": { - "$date": "2022-07-04T03:46:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "39cd0b92-e272-4089-8086-0d66d670dca2", - "start": { - "$date": "2022-07-04T03:46:56.000Z" - }, - "end": { - "$date": "2022-07-04T04:31:33.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b80d0b49-db8e-4975-963a-61867a9fd909", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-04T00:03:09.000Z" - }, - "end": { - "$date": "2022-07-04T00:34:36.000Z" - }, - "events": [ - { - "uuid": "006fc764-d07c-4d01-b5ce-eba5428d5449", - "start": { - "$date": "2022-07-04T00:03:09.000Z" - }, - "end": { - "$date": "2022-07-04T00:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4827288b-a0ad-4f28-87b7-d4dfc9136d9a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-04T00:35:39.000Z" - }, - "end": { - "$date": "2022-07-04T06:44:59.000Z" - }, - "events": [ - { - "uuid": "a5c98070-e207-4d2b-9aa3-398cfbc47c16", - "start": { - "$date": "2022-07-04T00:35:39.000Z" - }, - "end": { - "$date": "2022-07-04T00:47:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "14768756-d173-4a68-bace-5aaba1e4356d", - "start": { - "$date": "2022-07-04T00:47:39.000Z" - }, - "end": { - "$date": "2022-07-04T00:52:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea7aed07-d561-42e1-a1fd-2d2394001395", - "start": { - "$date": "2022-07-04T00:52:39.000Z" - }, - "end": { - "$date": "2022-07-04T01:02:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2e927774-7ea1-429f-9616-818488f3a4a9", - "start": { - "$date": "2022-07-04T01:02:39.000Z" - }, - "end": { - "$date": "2022-07-04T01:05:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0dc84261-a421-49e3-8ed1-4fcb6fab7467", - "start": { - "$date": "2022-07-04T01:05:39.000Z" - }, - "end": { - "$date": "2022-07-04T06:44:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "92ce015c-6171-4b2c-bc26-aa095be62c63", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-04T00:46:23.000Z" - }, - "end": { - "$date": "2022-07-04T02:05:34.000Z" - }, - "events": [ - { - "uuid": "35eecd84-fa01-4905-b89b-344b5470c3c8", - "start": { - "$date": "2022-07-04T00:46:23.000Z" - }, - "end": { - "$date": "2022-07-04T02:05:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "6dfe246b-0c05-4add-83cd-5740f476aa1b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T01:24:59.000Z" - }, - "end": { - "$date": "2022-07-04T01:47:55.000Z" - }, - "events": [ - { - "uuid": "e9e3d34c-6820-40ec-a516-4bf6dc3c0e4a", - "start": { - "$date": "2022-07-04T01:24:59.000Z" - }, - "end": { - "$date": "2022-07-04T01:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35f84e81-1f0a-4a40-b954-30225c142db7", - "uuid": "1529e097-3444-4cf1-8dc3-02bb658f0338", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-04T02:24:16.000Z" - }, - "end": { - "$date": "2022-07-04T02:55:38.000Z" - }, - "events": [ - { - "uuid": "48e9f057-69e1-44c2-8637-08956b197c96", - "start": { - "$date": "2022-07-04T02:24:16.000Z" - }, - "end": { - "$date": "2022-07-04T02:55:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35f84e81-1f0a-4a40-b954-30225c142db7", - "uuid": "b500618d-6d1d-44de-b404-d068ef13bef1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-04T02:57:44.000Z" - }, - "end": { - "$date": "2022-07-04T03:18:30.000Z" - }, - "events": [ - { - "uuid": "5214af43-47e6-4d77-acce-e87f489d2bd3", - "start": { - "$date": "2022-07-04T02:57:44.000Z" - }, - "end": { - "$date": "2022-07-04T03:18:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "504366eb-8d03-4ed5-88b2-0c8bdfe4dcf9", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-04T03:47:50.000Z" - }, - "end": { - "$date": "2022-07-04T06:44:55.000Z" - }, - "events": [ - { - "uuid": "c38ff87c-0318-4756-96f5-253f2238840a", - "start": { - "$date": "2022-07-04T03:47:50.000Z" - }, - "end": { - "$date": "2022-07-04T06:44:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "b6a1dcb6-db5d-4384-8ef1-ef0db50f0e57", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-04T04:22:04.000Z" - }, - "end": { - "$date": "2022-07-04T04:22:13.000Z" - }, - "events": [ - { - "uuid": "36e96f5c-5e54-435e-b491-f538f53e5690", - "start": { - "$date": "2022-07-04T04:22:04.000Z" - }, - "end": { - "$date": "2022-07-04T04:22:13.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "c148cc9c-6a16-4edf-aec0-f0334911a03c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-04T03:50:58.000Z" - }, - "end": { - "$date": "2022-07-04T06:41:48.000Z" - }, - "events": [ - { - "uuid": "c524b18d-148e-4b93-80f9-f0fc037a1e27", - "start": { - "$date": "2022-07-04T03:50:58.000Z" - }, - "end": { - "$date": "2022-07-04T06:41:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "bfecf17b-f7d5-4706-8e55-7367c4de6b66", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-04T04:22:34.000Z" - }, - "end": { - "$date": "2022-07-04T06:42:51.000Z" - }, - "events": [ - { - "uuid": "9065c750-638c-4232-b9a7-8bec7872aa5a", - "start": { - "$date": "2022-07-04T04:22:34.000Z" - }, - "end": { - "$date": "2022-07-04T06:42:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7609bb59-549a-4ebc-b750-4cac6e9f0779", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-04T05:12:05.000Z" - }, - "end": { - "$date": "2022-07-04T05:48:30.000Z" - }, - "events": [ - { - "uuid": "a28744b3-b4a1-461b-aba6-03dd450003f9", - "start": { - "$date": "2022-07-04T05:12:05.000Z" - }, - "end": { - "$date": "2022-07-04T05:48:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9a612ec7-0d02-4036-a9e6-3654938cb615", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-04T05:49:58.000Z" - }, - "end": { - "$date": "2022-07-04T06:18:36.000Z" - }, - "events": [ - { - "uuid": "0ce6d215-ad32-49e5-8def-753bfb329504", - "start": { - "$date": "2022-07-04T05:49:58.000Z" - }, - "end": { - "$date": "2022-07-04T06:18:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "35f84e81-1f0a-4a40-b954-30225c142db7", - "uuid": "30903392-a5e4-4340-a5de-c2348fee5f13", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-04T06:15:34.000Z" - }, - "end": { - "$date": "2022-07-04T06:55:06.000Z" - }, - "events": [ - { - "uuid": "b8f45086-3f4c-48de-bd95-df150298360f", - "start": { - "$date": "2022-07-04T06:15:34.000Z" - }, - "end": { - "$date": "2022-07-04T06:55:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "71dee02c-949a-4f88-8536-154a73696977", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-04T06:19:31.000Z" - }, - "end": { - "$date": "2022-07-04T07:03:45.000Z" - }, - "events": [ - { - "uuid": "c3840992-b14a-4d30-8ad1-e7d0d78efb4b", - "start": { - "$date": "2022-07-04T06:19:31.000Z" - }, - "end": { - "$date": "2022-07-04T07:03:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "8cc23ff8-f03b-4035-895e-bb34ad3dbf3b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-04T06:49:19.000Z" - }, - "end": { - "$date": "2022-07-04T07:14:31.000Z" - }, - "events": [ - { - "uuid": "d55ca9ba-06de-43e5-9066-bd131ee8f387", - "start": { - "$date": "2022-07-04T06:49:19.000Z" - }, - "end": { - "$date": "2022-07-04T07:14:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "8179b391-1f68-4715-94d2-defaed845a69", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-04T08:29:53.000Z" - }, - "end": { - "$date": "2022-07-04T14:35:35.000Z" - }, - "events": [ - { - "uuid": "47dc7c7c-0b77-4333-8081-ee0359b4c66a", - "start": { - "$date": "2022-07-04T08:29:53.000Z" - }, - "end": { - "$date": "2022-07-04T14:35:35.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8a6a4b10-dd5c-489a-b01c-a8dc09f8fb56", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T15:39:12.000Z" - }, - "end": { - "$date": "2022-07-04T16:21:12.000Z" - }, - "events": [ - { - "uuid": "6fc1d452-8d11-4e6e-b26d-04aa421cc304", - "start": { - "$date": "2022-07-04T15:39:12.000Z" - }, - "end": { - "$date": "2022-07-04T16:21:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "457808ab-84bf-4557-98e0-169239773578", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T16:37:49.000Z" - }, - "end": { - "$date": "2022-07-04T16:42:44.000Z" - }, - "events": [ - { - "uuid": "9beb96e7-06c2-4053-acc0-aa2165bf713a", - "start": { - "$date": "2022-07-04T16:37:49.000Z" - }, - "end": { - "$date": "2022-07-04T16:42:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "85a44397-831e-40dc-bd73-e65e9a785398", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T16:50:30.000Z" - }, - "end": { - "$date": "2022-07-04T18:01:30.000Z" - }, - "events": [ - { - "uuid": "ae94cde3-e1ba-4bc6-81ef-48d4c0cecd27", - "start": { - "$date": "2022-07-04T16:50:30.000Z" - }, - "end": { - "$date": "2022-07-04T18:01:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "5057b21b-f227-4a3a-b1af-1f4f5eb3d633", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-04T17:59:54.000Z" - }, - "end": { - "$date": "2022-07-04T19:17:54.000Z" - }, - "events": [ - { - "uuid": "f4dd379b-7493-4826-a4a3-a5c7e0952273", - "start": { - "$date": "2022-07-04T17:59:54.000Z" - }, - "end": { - "$date": "2022-07-04T19:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c6de08f-5938-4b2e-81f6-d68e102e5880", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T18:01:50.000Z" - }, - "end": { - "$date": "2022-07-04T20:02:54.000Z" - }, - "events": [ - { - "uuid": "9f0a5c05-5391-4bb3-a8ec-5121e28d5705", - "start": { - "$date": "2022-07-04T18:01:50.000Z" - }, - "end": { - "$date": "2022-07-04T20:02:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "5763a35d-c586-47e2-a194-c81c0d75808c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-04T19:05:12.000Z" - }, - "end": { - "$date": "2022-07-04T23:31:27.000Z" - }, - "events": [ - { - "uuid": "0695829f-d845-4c1d-a398-73760c3bdec0", - "start": { - "$date": "2022-07-04T19:05:12.000Z" - }, - "end": { - "$date": "2022-07-04T23:31:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "ab38ef2a-ccef-4e82-ad30-615c1c172956", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-04T19:13:29.000Z" - }, - "end": { - "$date": "2022-07-04T23:31:23.000Z" - }, - "events": [ - { - "uuid": "6a6e5963-bb39-4ab7-9260-46b7deb2be82", - "start": { - "$date": "2022-07-04T19:13:29.000Z" - }, - "end": { - "$date": "2022-07-04T23:31:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "c8545285-1f7c-41a4-b5bf-3b210efee1f1", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-04T19:18:15.000Z" - }, - "end": { - "$date": "2022-07-04T23:30:55.000Z" - }, - "events": [ - { - "uuid": "4c1d3935-28ca-44fe-89a0-78484474d113", - "start": { - "$date": "2022-07-04T19:18:15.000Z" - }, - "end": { - "$date": "2022-07-04T23:30:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "c1d8a339-9271-4aa3-adda-4977c29416c8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-04T19:54:10.000Z" - }, - "end": { - "$date": "2022-07-04T21:03:59.000Z" - }, - "events": [ - { - "uuid": "7bb2755a-7fbd-444b-82d6-c1c17f84215a", - "start": { - "$date": "2022-07-04T19:54:10.000Z" - }, - "end": { - "$date": "2022-07-04T21:03:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "faf9ab30-e331-41f5-b2aa-11143e0d4634", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-04T21:17:56.000Z" - }, - "end": { - "$date": "2022-07-04T23:53:15.000Z" - }, - "events": [ - { - "uuid": "dbfe6ceb-56f5-4018-ae9c-ed1e51d6b542", - "start": { - "$date": "2022-07-04T21:17:56.000Z" - }, - "end": { - "$date": "2022-07-04T23:53:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ee81ec22-4c86-4be0-8d80-0e8033092707", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T21:44:56.000Z" - }, - "end": { - "$date": "2022-07-04T22:00:31.000Z" - }, - "events": [ - { - "uuid": "6b4cc472-edd5-4bd4-ade9-137d12b5206d", - "start": { - "$date": "2022-07-04T21:44:56.000Z" - }, - "end": { - "$date": "2022-07-04T22:00:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d3a393cd-a875-447f-a86a-9da062411ca6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-04T22:00:41.000Z" - }, - "end": { - "$date": "2022-07-05T00:04:22.000Z" - }, - "events": [ - { - "uuid": "67e57153-53bb-41c6-be8e-d266763a3269", - "start": { - "$date": "2022-07-04T22:00:41.000Z" - }, - "end": { - "$date": "2022-07-05T00:04:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "40bff37b-d065-4487-8256-c984dd80078d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-05T01:14:17.000Z" - }, - "end": { - "$date": "2022-07-05T01:46:02.000Z" - }, - "events": [ - { - "uuid": "cd5a1640-48f1-4030-aafc-c23018a7d9f5", - "start": { - "$date": "2022-07-05T01:14:17.000Z" - }, - "end": { - "$date": "2022-07-05T01:46:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d782bb3c-e4c4-4de6-bf14-3770a4297bd0", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-05T01:46:09.000Z" - }, - "end": { - "$date": "2022-07-05T02:45:43.000Z" - }, - "events": [ - { - "uuid": "002458b3-54d5-46c3-aa0c-2d7a26340a23", - "start": { - "$date": "2022-07-05T01:46:09.000Z" - }, - "end": { - "$date": "2022-07-05T02:45:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a15cf604-9c44-41f2-ac65-8c1f3a25e2e6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-05T02:41:51.000Z" - }, - "end": { - "$date": "2022-07-05T03:13:51.000Z" - }, - "events": [ - { - "uuid": "c9656105-2173-47a6-a49b-5a2a8f2f1280", - "start": { - "$date": "2022-07-05T02:41:51.000Z" - }, - "end": { - "$date": "2022-07-05T03:13:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "c7722239-6507-468e-9f76-fc3e5a6dc75f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-05T02:47:01.000Z" - }, - "end": { - "$date": "2022-07-05T07:50:48.000Z" - }, - "events": [ - { - "uuid": "131c5734-1e27-4841-b7a3-db50c28f9538", - "start": { - "$date": "2022-07-05T02:47:01.000Z" - }, - "end": { - "$date": "2022-07-05T07:50:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "ae2b68d1-cce4-4c04-8c50-a3b9ac03708d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-05T02:48:20.000Z" - }, - "end": { - "$date": "2022-07-05T07:58:03.000Z" - }, - "events": [ - { - "uuid": "75f39bbc-b4d3-4068-8b04-0664f60ff312", - "start": { - "$date": "2022-07-05T02:48:20.000Z" - }, - "end": { - "$date": "2022-07-05T07:58:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bcb9b1af-5cf9-42bf-b0a5-c389c6938167", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-05T03:08:02.000Z" - }, - "end": { - "$date": "2022-07-05T05:02:58.000Z" - }, - "events": [ - { - "uuid": "b60020ab-b6fd-439f-b85f-1a92f60295f1", - "start": { - "$date": "2022-07-05T03:08:02.000Z" - }, - "end": { - "$date": "2022-07-05T05:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "56e18210-c6ee-4eb7-9332-7c035dd2aa5a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-05T03:15:10.000Z" - }, - "end": { - "$date": "2022-07-05T03:46:46.000Z" - }, - "events": [ - { - "uuid": "1fec60f8-df06-46f3-9538-e70529deb3c2", - "start": { - "$date": "2022-07-05T03:15:10.000Z" - }, - "end": { - "$date": "2022-07-05T03:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "256a4c57-c456-4dc1-8cf9-e89a85fe4dfb", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-05T03:29:22.000Z" - }, - "end": { - "$date": "2022-07-05T07:56:55.000Z" - }, - "events": [ - { - "uuid": "0ebe382c-89eb-4b23-85bf-a371bee24359", - "start": { - "$date": "2022-07-05T03:29:22.000Z" - }, - "end": { - "$date": "2022-07-05T07:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "3fe6ed66-7289-4bf4-b796-eb2384564767", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-05T03:30:33.000Z" - }, - "end": { - "$date": "2022-07-05T07:50:09.000Z" - }, - "events": [ - { - "uuid": "3d21b9dd-6873-4cdc-a2d2-98ee8b012bb8", - "start": { - "$date": "2022-07-05T03:30:33.000Z" - }, - "end": { - "$date": "2022-07-05T07:50:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "c398ac0e-5cd3-4218-a85b-ec821b59848e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-05T03:31:05.000Z" - }, - "end": { - "$date": "2022-07-05T07:51:27.000Z" - }, - "events": [ - { - "uuid": "4aabf09c-3fc6-4a44-8313-64e5ae839a31", - "start": { - "$date": "2022-07-05T03:31:05.000Z" - }, - "end": { - "$date": "2022-07-05T07:51:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d49c4e8-8ca1-47ff-aacd-52c40819892b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-05T03:48:14.000Z" - }, - "end": { - "$date": "2022-07-05T04:25:19.000Z" - }, - "events": [ - { - "uuid": "70eb35b2-2595-4f40-8838-63888bc2ef21", - "start": { - "$date": "2022-07-05T03:48:14.000Z" - }, - "end": { - "$date": "2022-07-05T04:25:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "44ab1c10-d8cf-42ba-ac48-fffc4c215dbc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-05T04:27:51.000Z" - }, - "end": { - "$date": "2022-07-05T05:59:25.000Z" - }, - "events": [ - { - "uuid": "41d9d99a-1be8-44b3-9ef2-aeab7c9abf20", - "start": { - "$date": "2022-07-05T04:27:51.000Z" - }, - "end": { - "$date": "2022-07-05T05:59:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dbc75b5a-9d67-4f4a-ac1e-79e9660ad18e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-05T05:04:14.000Z" - }, - "end": { - "$date": "2022-07-05T07:04:37.000Z" - }, - "events": [ - { - "uuid": "f301a73f-215c-4dd8-b28e-08277bd57792", - "start": { - "$date": "2022-07-05T05:04:14.000Z" - }, - "end": { - "$date": "2022-07-05T07:04:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "d598888d-8acc-483a-bf8d-c5ac4dc39f41", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-05T08:36:12.000Z" - }, - "end": { - "$date": "2022-07-05T15:49:42.000Z" - }, - "events": [ - { - "uuid": "0420c966-05fa-4200-98b2-148111dbf7f6", - "start": { - "$date": "2022-07-05T08:36:12.000Z" - }, - "end": { - "$date": "2022-07-05T15:49:42.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "d9500e81-d889-423d-aadf-7dacda890d42", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-05T17:09:25.000Z" - }, - "end": { - "$date": "2022-07-05T18:12:06.000Z" - }, - "events": [ - { - "uuid": "8748f408-816c-4f3e-a89f-23e8af27dffd", - "start": { - "$date": "2022-07-05T17:09:25.000Z" - }, - "end": { - "$date": "2022-07-05T18:12:06.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", - "uuid": "c0ce9020-91d2-4cad-b307-f3a1369c3c31", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-05T17:24:51.000Z" - }, - "end": { - "$date": "2022-07-05T17:27:22.000Z" - }, - "events": [ - { - "uuid": "350dc93b-358b-43be-9b00-dc0e6c23d4d8", - "start": { - "$date": "2022-07-05T17:24:51.000Z" - }, - "end": { - "$date": "2022-07-05T17:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", - "uuid": "3853a556-0236-4879-ae98-1223332aa4b4", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-05T17:27:31.000Z" - }, - "end": { - "$date": "2022-07-05T17:30:27.000Z" - }, - "events": [ - { - "uuid": "091e127c-7612-454f-b149-ab5c14d2d4a1", - "start": { - "$date": "2022-07-05T17:27:31.000Z" - }, - "end": { - "$date": "2022-07-05T17:30:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1b9e35f2-48b3-41e7-85c2-2173d191c7a0", - "uuid": "6fdc3707-476e-4251-b040-6b161987a9dc", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-05T17:30:51.000Z" - }, - "end": { - "$date": "2022-07-05T18:20:46.000Z" - }, - "events": [ - { - "uuid": "c68bc30e-deba-45e5-b15a-032a381fe8fe", - "start": { - "$date": "2022-07-05T17:30:51.000Z" - }, - "end": { - "$date": "2022-07-05T18:20:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a43a855b-55ef-40d5-a167-dde4fe594792", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-05T18:24:51.000Z" - }, - "end": { - "$date": "2022-07-05T19:37:13.000Z" - }, - "events": [ - { - "uuid": "052cdba3-11bd-464d-8f02-314e47d79dd6", - "start": { - "$date": "2022-07-05T18:24:51.000Z" - }, - "end": { - "$date": "2022-07-05T19:37:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0a3f1032-797e-41ee-9271-b33e5e0c1d33", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-05T18:54:38.000Z" - }, - "end": { - "$date": "2022-07-05T19:57:46.000Z" - }, - "events": [ - { - "uuid": "8694f70b-be23-4dd3-9d2b-b9c484e3192f", - "start": { - "$date": "2022-07-05T18:54:38.000Z" - }, - "end": { - "$date": "2022-07-05T19:24:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7ee6091-cc35-49cc-956f-29c92dcebac2", - "start": { - "$date": "2022-07-05T19:24:38.000Z" - }, - "end": { - "$date": "2022-07-05T19:25:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d60f7f5e-ccc3-4e9c-8405-712ff6e7c4db", - "start": { - "$date": "2022-07-05T19:25:38.000Z" - }, - "end": { - "$date": "2022-07-05T19:57:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0377e24c-c010-4515-a23b-8dbd1baa94a0", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-05T19:20:21.000Z" - }, - "end": { - "$date": "2022-07-05T19:25:41.000Z" - }, - "events": [ - { - "uuid": "1ef63d0e-7b4d-4e98-8406-2768048839ce", - "start": { - "$date": "2022-07-05T19:20:21.000Z" - }, - "end": { - "$date": "2022-07-05T19:25:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7f19b80c-4e7e-44cf-b822-8a19b463987c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-06T00:05:01.000Z" - }, - "end": { - "$date": "2022-07-06T00:35:39.000Z" - }, - "events": [ - { - "uuid": "21c7d8dc-ef5c-48c5-bb1e-9bc505ad5662", - "start": { - "$date": "2022-07-06T00:05:01.000Z" - }, - "end": { - "$date": "2022-07-06T00:20:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e4fb1fff-70ba-4f22-b117-5d2ec8393a9b", - "start": { - "$date": "2022-07-06T00:20:01.000Z" - }, - "end": { - "$date": "2022-07-06T00:35:39.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "efc167c1-807b-4603-a398-0981fc8c87a8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T00:11:24.000Z" - }, - "end": { - "$date": "2022-07-06T00:27:20.000Z" - }, - "events": [ - { - "uuid": "84daf9aa-0f97-4ab3-a857-eaeec5d52f70", - "start": { - "$date": "2022-07-06T00:11:24.000Z" - }, - "end": { - "$date": "2022-07-06T00:27:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "732e2129-7fea-46ce-beac-b469998ff956", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-06T00:15:56.000Z" - }, - "end": { - "$date": "2022-07-06T00:20:17.000Z" - }, - "events": [ - { - "uuid": "1dd1239e-d0be-4248-acfd-3cdb71f0dea8", - "start": { - "$date": "2022-07-06T00:15:56.000Z" - }, - "end": { - "$date": "2022-07-06T00:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "71f5ab19-5e85-449a-9a62-5606373bcdc5", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-06T00:21:22.000Z" - }, - "end": { - "$date": "2022-07-06T00:57:12.000Z" - }, - "events": [ - { - "uuid": "c4e3692a-10d0-4ad4-b82a-4a9b07829b54", - "start": { - "$date": "2022-07-06T00:21:22.000Z" - }, - "end": { - "$date": "2022-07-06T00:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6386f5be-e439-4bde-9a50-1b49be5fc836", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T00:29:21.000Z" - }, - "end": { - "$date": "2022-07-06T01:11:17.000Z" - }, - "events": [ - { - "uuid": "b0c845c4-cee7-46fa-86f8-d184e7ed075a", - "start": { - "$date": "2022-07-06T00:29:21.000Z" - }, - "end": { - "$date": "2022-07-06T01:11:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9903b3c9-3ff6-493f-bd56-1b95e533a0c6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T01:19:11.000Z" - }, - "end": { - "$date": "2022-07-06T02:43:25.000Z" - }, - "events": [ - { - "uuid": "4092e23d-eb45-4094-8218-ea677e3e6114", - "start": { - "$date": "2022-07-06T01:19:11.000Z" - }, - "end": { - "$date": "2022-07-06T02:43:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b4277e0b-707f-4ec9-a80c-97bd7aa429a0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-06T01:50:25.000Z" - }, - "end": { - "$date": "2022-07-06T07:37:57.000Z" - }, - "events": [ - { - "uuid": "7d0be9a8-0604-4838-b0ca-f37971fb58e0", - "start": { - "$date": "2022-07-06T01:50:25.000Z" - }, - "end": { - "$date": "2022-07-06T02:04:25.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "502d21a2-7a18-4fa8-b285-4db80d331bff", - "start": { - "$date": "2022-07-06T02:04:25.000Z" - }, - "end": { - "$date": "2022-07-06T02:09:25.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5c79e534-6f88-4e72-95f1-68484d183989", - "start": { - "$date": "2022-07-06T02:09:25.000Z" - }, - "end": { - "$date": "2022-07-06T07:37:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f1d9645a-4961-493f-950e-1f4e20186c67", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T03:15:22.000Z" - }, - "end": { - "$date": "2022-07-06T03:45:56.000Z" - }, - "events": [ - { - "uuid": "9b3256b1-cd92-41d8-8d3e-fa64cd82cfe7", - "start": { - "$date": "2022-07-06T03:15:22.000Z" - }, - "end": { - "$date": "2022-07-06T03:45:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72530e10-5405-487b-bb65-86e90877dc69", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T03:47:59.000Z" - }, - "end": { - "$date": "2022-07-06T04:32:37.000Z" - }, - "events": [ - { - "uuid": "2faee1b4-a4f1-4425-901e-21617c5c4f9a", - "start": { - "$date": "2022-07-06T03:47:59.000Z" - }, - "end": { - "$date": "2022-07-06T04:32:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "bf319494-3aed-40e9-b271-56d6da0de50c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T04:33:56.000Z" - }, - "end": { - "$date": "2022-07-06T05:19:03.000Z" - }, - "events": [ - { - "uuid": "631d2809-8ecb-4ab9-a850-6b03bc631498", - "start": { - "$date": "2022-07-06T04:33:56.000Z" - }, - "end": { - "$date": "2022-07-06T05:19:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b30285cc-7955-44d7-9963-7e644b5341da", - "uuid": "31dc54f6-0060-411e-b053-9201d75a3b8d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-06T04:38:53.000Z" - }, - "end": { - "$date": "2022-07-06T06:06:19.000Z" - }, - "events": [ - { - "uuid": "f70e6304-c10e-46fb-b201-4138c1413d73", - "start": { - "$date": "2022-07-06T04:38:53.000Z" - }, - "end": { - "$date": "2022-07-06T06:06:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dc3c50ff-b0e0-49f4-886c-c6612ee6482e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T05:20:03.000Z" - }, - "end": { - "$date": "2022-07-06T05:44:27.000Z" - }, - "events": [ - { - "uuid": "42a7a46d-e74b-4116-bc0e-797ce07057d9", - "start": { - "$date": "2022-07-06T05:20:03.000Z" - }, - "end": { - "$date": "2022-07-06T05:44:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ebe7b05a-4b90-4f5c-91ad-877d29a07a7b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T05:45:05.000Z" - }, - "end": { - "$date": "2022-07-06T06:24:37.000Z" - }, - "events": [ - { - "uuid": "59bc24fc-08d0-4593-a4bd-18ed58f2cce0", - "start": { - "$date": "2022-07-06T05:45:05.000Z" - }, - "end": { - "$date": "2022-07-06T06:24:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ca9dee58-11e7-4343-a986-bcf19cc97665", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-06T06:29:42.000Z" - }, - "end": { - "$date": "2022-07-06T06:49:58.000Z" - }, - "events": [ - { - "uuid": "f99e4a5b-0a9a-43e1-b875-018eb5f15584", - "start": { - "$date": "2022-07-06T06:29:42.000Z" - }, - "end": { - "$date": "2022-07-06T06:49:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "17be7b5f-b04a-4d0f-a65e-fbae06cb14b2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-06T20:01:59.000Z" - }, - "end": { - "$date": "2022-07-06T20:42:56.000Z" - }, - "events": [ - { - "uuid": "5585822c-a78c-4d95-b038-9292f2d273f5", - "start": { - "$date": "2022-07-06T20:01:59.000Z" - }, - "end": { - "$date": "2022-07-06T20:42:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "0d3e32a2-9a7f-4b81-a2d6-76d9d27107bf", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-06T22:23:11.000Z" - }, - "end": { - "$date": "2022-07-06T22:38:36.000Z" - }, - "events": [ - { - "uuid": "a0547707-32b1-4079-ab43-8fdf1e6bcb20", - "start": { - "$date": "2022-07-06T22:23:11.000Z" - }, - "end": { - "$date": "2022-07-06T22:38:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b6df992a-f21f-4d39-a35f-0b3989bafeaf", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-06T22:27:16.000Z" - }, - "end": { - "$date": "2022-07-06T22:42:06.000Z" - }, - "events": [ - { - "uuid": "5da58e6a-8d6e-4c68-a02c-a77e7be86d1d", - "start": { - "$date": "2022-07-06T22:27:16.000Z" - }, - "end": { - "$date": "2022-07-06T22:42:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a41814e1-70c8-4c63-a0ad-51574a28e18f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-06T22:39:07.000Z" - }, - "end": { - "$date": "2022-07-07T04:04:09.000Z" - }, - "events": [ - { - "uuid": "74b549c2-c1c4-4452-980a-0c87d93ebae5", - "start": { - "$date": "2022-07-06T22:39:07.000Z" - }, - "end": { - "$date": "2022-07-07T04:04:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "938b470d-0af1-4f35-aab2-220700aa9440", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-06T23:09:30.000Z" - }, - "end": { - "$date": "2022-07-06T23:11:29.000Z" - }, - "events": [ - { - "uuid": "e9125825-32a2-48cc-a443-f0d34a111c2f", - "start": { - "$date": "2022-07-06T23:09:30.000Z" - }, - "end": { - "$date": "2022-07-06T23:11:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7670f14c-3c10-442d-ac59-dd33af4273e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-06T23:48:21.000Z" - }, - "end": { - "$date": "2022-07-06T23:55:21.000Z" - }, - "events": [ - { - "uuid": "7a0392b3-6aeb-4dc9-a6a6-4cc718965387", - "start": { - "$date": "2022-07-06T23:48:21.000Z" - }, - "end": { - "$date": "2022-07-06T23:55:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b36aba44-c5a8-49ea-b3ad-9e1e00142bef", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-07T00:50:01.000Z" - }, - "end": { - "$date": "2022-07-07T02:36:39.000Z" - }, - "events": [ - { - "uuid": "4db81675-e025-4690-9af5-23f74ee2762e", - "start": { - "$date": "2022-07-07T00:50:01.000Z" - }, - "end": { - "$date": "2022-07-07T02:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "06dae10e-d19f-40bc-978e-a60cf86cbb2e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-07T00:52:44.000Z" - }, - "end": { - "$date": "2022-07-07T00:53:46.000Z" - }, - "events": [ - { - "uuid": "e853c047-9af1-4bc2-96a3-68053a7eb069", - "start": { - "$date": "2022-07-07T00:52:44.000Z" - }, - "end": { - "$date": "2022-07-07T00:53:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "56c214c7-82bf-4b9c-83ae-569d99a666da", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-07T00:54:29.000Z" - }, - "end": { - "$date": "2022-07-07T02:35:26.000Z" - }, - "events": [ - { - "uuid": "66c3c8d9-ab48-4c3e-aa09-c58da62fed1a", - "start": { - "$date": "2022-07-07T00:54:29.000Z" - }, - "end": { - "$date": "2022-07-07T02:35:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "4bc4bb91-2ffa-4e17-b35b-995ddaeba29a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-07T01:30:50.000Z" - }, - "end": { - "$date": "2022-07-07T01:43:42.000Z" - }, - "events": [ - { - "uuid": "3c20784e-ad2e-48fe-9351-ad37338d89d2", - "start": { - "$date": "2022-07-07T01:30:50.000Z" - }, - "end": { - "$date": "2022-07-07T01:43:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "9694a61b-cc51-4e1a-8eda-92d04f13ebdd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-07T01:49:23.000Z" - }, - "end": { - "$date": "2022-07-07T02:29:29.000Z" - }, - "events": [ - { - "uuid": "b47bed25-110d-4246-94b1-d259c4464751", - "start": { - "$date": "2022-07-07T01:49:23.000Z" - }, - "end": { - "$date": "2022-07-07T02:29:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5f71842e-7b97-4a1b-989d-58ef5790613c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-07T02:30:13.000Z" - }, - "end": { - "$date": "2022-07-07T05:13:37.000Z" - }, - "events": [ - { - "uuid": "4dd18fa5-b2ae-4c88-824f-9fa3d279ff22", - "start": { - "$date": "2022-07-07T02:30:13.000Z" - }, - "end": { - "$date": "2022-07-07T05:13:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1d1821c7-9321-419c-945c-8d99d3b20f20", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-07T03:25:09.000Z" - }, - "end": { - "$date": "2022-07-07T03:47:19.000Z" - }, - "events": [ - { - "uuid": "1a0a288a-d156-461f-b9e1-0ac67f8d271f", - "start": { - "$date": "2022-07-07T03:25:09.000Z" - }, - "end": { - "$date": "2022-07-07T03:47:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2e963176-f0e3-464b-8336-abb0eedb7cdb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-07T04:04:24.000Z" - }, - "end": { - "$date": "2022-07-07T04:49:45.000Z" - }, - "events": [ - { - "uuid": "1ee961f0-c194-4ce6-a9f0-ea7129dceba0", - "start": { - "$date": "2022-07-07T04:04:24.000Z" - }, - "end": { - "$date": "2022-07-07T04:49:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c29e45b8-a528-48d2-be91-28e0f64918ee", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-07T04:22:41.000Z" - }, - "end": { - "$date": "2022-07-07T04:40:13.000Z" - }, - "events": [ - { - "uuid": "9cdbcbfe-46f7-4e62-b03d-2f2c07ece35f", - "start": { - "$date": "2022-07-07T04:22:41.000Z" - }, - "end": { - "$date": "2022-07-07T04:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2921d8f2-be92-4e94-b4f1-1e3332bfebf0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-07T04:33:41.000Z" - }, - "end": { - "$date": "2022-07-07T07:14:07.000Z" - }, - "events": [ - { - "uuid": "430d3cf9-43c0-4fce-8289-6f03ee901804", - "start": { - "$date": "2022-07-07T04:33:41.000Z" - }, - "end": { - "$date": "2022-07-07T07:14:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "5e2a306b-1839-431e-880c-3737bbf61804", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-07T16:07:15.000Z" - }, - "end": { - "$date": "2022-07-07T16:07:20.000Z" - }, - "events": [ - { - "uuid": "ab8639c4-c77f-4e48-b99d-13b52ebcb3fe", - "start": { - "$date": "2022-07-07T16:07:15.000Z" - }, - "end": { - "$date": "2022-07-07T16:07:20.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "c027f5c2-f26e-4cb9-9bf5-509ddc268dc1", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-07T16:07:40.000Z" - }, - "end": { - "$date": "2022-07-07T17:21:37.000Z" - }, - "events": [ - { - "uuid": "cd14b314-223b-4630-ada4-9465424dc328", - "start": { - "$date": "2022-07-07T16:07:40.000Z" - }, - "end": { - "$date": "2022-07-07T17:21:37.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "9b681c80-80f9-4d54-a9b2-74fcec35df69", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-07T17:26:39.000Z" - }, - "end": { - "$date": "2022-07-07T20:49:38.000Z" - }, - "events": [ - { - "uuid": "5077359d-1e59-4a24-b48b-4a878df6b6c9", - "start": { - "$date": "2022-07-07T17:26:39.000Z" - }, - "end": { - "$date": "2022-07-07T20:49:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "772e1079-c718-4aa3-b3c2-a34917f9185c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-07T19:43:15.000Z" - }, - "end": { - "$date": "2022-07-07T20:40:08.000Z" - }, - "events": [ - { - "uuid": "d7503311-6758-4e8e-b9d0-8c35e67b638f", - "start": { - "$date": "2022-07-07T19:43:15.000Z" - }, - "end": { - "$date": "2022-07-07T20:40:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "250d0169-6c57-4a4e-ba91-7cc486bd95d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-07T20:42:01.000Z" - }, - "end": { - "$date": "2022-07-07T22:01:59.000Z" - }, - "events": [ - { - "uuid": "4619463a-6cd6-43f4-adce-8935d54a7039", - "start": { - "$date": "2022-07-07T20:42:01.000Z" - }, - "end": { - "$date": "2022-07-07T22:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1710e0c-5e43-41b7-a969-ffc16b0d44be", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-08T00:10:42.000Z" - }, - "end": { - "$date": "2022-07-08T00:29:08.000Z" - }, - "events": [ - { - "uuid": "d40eba4d-2798-4e46-ba36-a04253a34b70", - "start": { - "$date": "2022-07-08T00:10:42.000Z" - }, - "end": { - "$date": "2022-07-08T00:29:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "8ea33d27-a8f0-4044-ab29-d3f313a9cdd9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-08T00:31:43.000Z" - }, - "end": { - "$date": "2022-07-08T00:53:14.000Z" - }, - "events": [ - { - "uuid": "7231a991-9ec0-48aa-988a-c032025bcdfa", - "start": { - "$date": "2022-07-08T00:31:43.000Z" - }, - "end": { - "$date": "2022-07-08T00:53:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "c923734c-dc1a-4e3f-91ff-bf4f3abf492e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-08T01:04:44.000Z" - }, - "end": { - "$date": "2022-07-08T04:06:51.000Z" - }, - "events": [ - { - "uuid": "9186ef25-18dc-4026-ba26-c72271b5cc5a", - "start": { - "$date": "2022-07-08T01:04:44.000Z" - }, - "end": { - "$date": "2022-07-08T04:06:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "fdbd92cc-c4d7-41a9-8257-6e0efd414cc4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-08T01:04:45.000Z" - }, - "end": { - "$date": "2022-07-08T04:07:58.000Z" - }, - "events": [ - { - "uuid": "9b9a3f9d-2e70-458e-afca-6307aa979ffc", - "start": { - "$date": "2022-07-08T01:04:45.000Z" - }, - "end": { - "$date": "2022-07-08T04:07:58.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "14f95beb-6e8a-4db5-828c-8a92e2f91da7", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-08T01:04:52.000Z" - }, - "end": { - "$date": "2022-07-08T07:30:13.000Z" - }, - "events": [ - { - "uuid": "98a792af-3d35-4172-a790-91af14030373", - "start": { - "$date": "2022-07-08T01:04:52.000Z" - }, - "end": { - "$date": "2022-07-08T07:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "be2a1056-2945-4751-a98e-cc64128c9041", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-08T01:07:41.000Z" - }, - "end": { - "$date": "2022-07-08T04:09:17.000Z" - }, - "events": [ - { - "uuid": "3b129979-2b10-4788-8a2f-47f16becbfb3", - "start": { - "$date": "2022-07-08T01:07:41.000Z" - }, - "end": { - "$date": "2022-07-08T04:09:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "63386784-b882-42a3-a89c-13eac48f8748", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-08T01:09:43.000Z" - }, - "end": { - "$date": "2022-07-08T03:47:24.000Z" - }, - "events": [ - { - "uuid": "14706448-db8f-430a-9fe7-cef7a064def3", - "start": { - "$date": "2022-07-08T01:09:43.000Z" - }, - "end": { - "$date": "2022-07-08T03:47:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "80d1fd3b-1a81-4180-8af6-eb636ede3099", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-08T01:30:27.000Z" - }, - "end": { - "$date": "2022-07-08T03:47:26.000Z" - }, - "events": [ - { - "uuid": "5eed7771-b76e-4aa9-ab6a-4aa24ba07ffd", - "start": { - "$date": "2022-07-08T01:30:27.000Z" - }, - "end": { - "$date": "2022-07-08T03:40:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7972f0e1-9e12-4dae-88e7-74ce6efa4813", - "start": { - "$date": "2022-07-08T03:40:27.000Z" - }, - "end": { - "$date": "2022-07-08T03:43:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fe843a13-cac9-4e6f-a81a-0166cefcb570", - "start": { - "$date": "2022-07-08T03:43:27.000Z" - }, - "end": { - "$date": "2022-07-08T03:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "72561aca-ea10-4c23-8fdc-f77f31826697", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-08T01:45:12.000Z" - }, - "end": { - "$date": "2022-07-08T02:21:50.000Z" - }, - "events": [ - { - "uuid": "8c49f3df-2a99-4911-9909-ade83afdd60b", - "start": { - "$date": "2022-07-08T01:45:12.000Z" - }, - "end": { - "$date": "2022-07-08T02:21:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "dfd6d4bf-5b0f-4886-8053-09f188e1c9b2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-08T02:21:59.000Z" - }, - "end": { - "$date": "2022-07-08T07:19:23.000Z" - }, - "events": [ - { - "uuid": "02b1c69d-c2ee-4341-b21c-3520efbfce7b", - "start": { - "$date": "2022-07-08T02:21:59.000Z" - }, - "end": { - "$date": "2022-07-08T07:19:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "b1a36785-88c5-4b70-8312-b98b09f2b507", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-08T02:26:13.000Z" - }, - "end": { - "$date": "2022-07-08T03:39:06.000Z" - }, - "events": [ - { - "uuid": "de409d8d-c464-4f6a-aa03-365d2eddf6f7", - "start": { - "$date": "2022-07-08T02:26:13.000Z" - }, - "end": { - "$date": "2022-07-08T03:39:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "6a809513-e1ac-4003-b308-0ec73e0f95bf", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-08T03:58:36.000Z" - }, - "end": { - "$date": "2022-07-08T08:04:52.000Z" - }, - "events": [ - { - "uuid": "d21e61ee-3f96-49ed-869a-bb1d7756016a", - "start": { - "$date": "2022-07-08T03:58:36.000Z" - }, - "end": { - "$date": "2022-07-08T08:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "2125f2df-4356-4c89-94da-af9257347de5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-08T03:59:22.000Z" - }, - "end": { - "$date": "2022-07-08T08:03:16.000Z" - }, - "events": [ - { - "uuid": "64be4c44-c28b-4627-a1ae-dea0fef2f391", - "start": { - "$date": "2022-07-08T03:59:22.000Z" - }, - "end": { - "$date": "2022-07-08T08:03:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "afaaac31-914f-4e30-b16d-a17b79923432", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-08T06:15:10.000Z" - }, - "end": { - "$date": "2022-07-08T06:47:46.000Z" - }, - "events": [ - { - "uuid": "e8be79a8-1010-444a-a659-13eef508f724", - "start": { - "$date": "2022-07-08T06:15:10.000Z" - }, - "end": { - "$date": "2022-07-08T06:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dea3dc06-cce2-4570-b06d-644989d31b68", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-08T06:49:13.000Z" - }, - "end": { - "$date": "2022-07-08T07:19:01.000Z" - }, - "events": [ - { - "uuid": "bd9b7703-1a14-4b1e-96a2-3d1755321df2", - "start": { - "$date": "2022-07-08T06:49:13.000Z" - }, - "end": { - "$date": "2022-07-08T07:19:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "200d132d-a2ab-48fa-ab8b-b369077d1823", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-08T07:20:24.000Z" - }, - "end": { - "$date": "2022-07-08T08:02:20.000Z" - }, - "events": [ - { - "uuid": "60351533-70fe-4151-8f14-e43f208583dc", - "start": { - "$date": "2022-07-08T07:20:24.000Z" - }, - "end": { - "$date": "2022-07-08T08:02:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e47be6f2-06b1-41e1-83de-61c5f2886a46", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-08T08:03:47.000Z" - }, - "end": { - "$date": "2022-07-08T08:46:15.000Z" - }, - "events": [ - { - "uuid": "c3bdee50-2a59-400b-9395-480f026580d6", - "start": { - "$date": "2022-07-08T08:03:47.000Z" - }, - "end": { - "$date": "2022-07-08T08:46:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "67aba76a-688c-48da-ba00-560da999f330", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-08T15:54:37.000Z" - }, - "end": { - "$date": "2022-07-08T16:16:22.000Z" - }, - "events": [ - { - "uuid": "effd538a-eb20-4eb1-80b4-ff3c9d3149a3", - "start": { - "$date": "2022-07-08T15:54:37.000Z" - }, - "end": { - "$date": "2022-07-08T16:16:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "018e72f1-643c-4d1e-83a3-20a12221ad6c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-08T16:16:52.000Z" - }, - "end": { - "$date": "2022-07-08T16:27:22.000Z" - }, - "events": [ - { - "uuid": "6e8d1b80-bd9e-4fb6-9383-df8b2e8c4eb6", - "start": { - "$date": "2022-07-08T16:16:52.000Z" - }, - "end": { - "$date": "2022-07-08T16:27:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "3d5e7d31-0526-42ff-8e08-6528666e87a2", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-08T16:33:53.000Z" - }, - "end": { - "$date": "2022-07-08T17:08:34.000Z" - }, - "events": [ - { - "uuid": "44f8bbdb-f51c-443b-9bc0-42362edbf08c", - "start": { - "$date": "2022-07-08T16:33:53.000Z" - }, - "end": { - "$date": "2022-07-08T17:08:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7b9861d9-347a-4f07-b295-7ff3ced28aec", - "uuid": "684fc5f8-2fa9-4349-b6f6-3586c0d3c8d2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-08T22:24:41.000Z" - }, - "end": { - "$date": "2022-07-08T22:24:54.000Z" - }, - "events": [ - { - "uuid": "c46eabfa-0169-4f16-a2b4-453c3b692837", - "start": { - "$date": "2022-07-08T22:24:41.000Z" - }, - "end": { - "$date": "2022-07-08T22:24:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "dda8ee4b-8ab6-4cd6-9db2-4d156031306f", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-08T22:22:48.000Z" - }, - "end": { - "$date": "2022-07-09T00:39:32.000Z" - }, - "events": [ - { - "uuid": "52e8ea1e-4ca9-4554-8e9f-9e04996da97d", - "start": { - "$date": "2022-07-08T22:22:48.000Z" - }, - "end": { - "$date": "2022-07-09T00:39:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "eb1878e3-60ea-4898-bf59-d405d083cdd7", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-08T22:41:14.000Z" - }, - "end": { - "$date": "2022-07-08T22:41:47.000Z" - }, - "events": [ - { - "uuid": "707d14c8-b9ab-4560-a0e6-cb94d66e6e11", - "start": { - "$date": "2022-07-08T22:41:14.000Z" - }, - "end": { - "$date": "2022-07-08T22:41:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6bc1452e-63e7-42e4-8642-fc5f73305882", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-08T22:33:13.000Z" - }, - "end": { - "$date": "2022-07-09T00:39:17.000Z" - }, - "events": [ - { - "uuid": "5bc3a376-463c-4ac2-b620-cbb8e5f75ce6", - "start": { - "$date": "2022-07-08T22:33:13.000Z" - }, - "end": { - "$date": "2022-07-09T00:39:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b2585e13-40d2-4cd4-87e9-8a7e6fb191ce", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-09T00:41:27.000Z" - }, - "end": { - "$date": "2022-07-09T00:43:17.000Z" - }, - "events": [ - { - "uuid": "d6a6ebd3-8487-46b5-b62a-3b16ebd7e879", - "start": { - "$date": "2022-07-09T00:41:27.000Z" - }, - "end": { - "$date": "2022-07-09T00:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9dc7c185-6a1d-49dc-ac4e-95b203443938", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T01:29:54.000Z" - }, - "end": { - "$date": "2022-07-09T02:05:03.000Z" - }, - "events": [ - { - "uuid": "5486dfc8-a8ca-4d08-beb8-2294be135d24", - "start": { - "$date": "2022-07-09T01:29:54.000Z" - }, - "end": { - "$date": "2022-07-09T02:05:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "257ef2bd-c8bf-4a88-945e-5c12463bc3d5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-09T01:38:03.000Z" - }, - "end": { - "$date": "2022-07-09T07:29:37.000Z" - }, - "events": [ - { - "uuid": "cf7c58b9-2107-4f4a-a6cd-cf04506e60d4", - "start": { - "$date": "2022-07-09T01:38:03.000Z" - }, - "end": { - "$date": "2022-07-09T07:29:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6a3de672-0dbc-4863-916c-4658cb9dfe3d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-09T01:39:17.000Z" - }, - "end": { - "$date": "2022-07-09T07:29:30.000Z" - }, - "events": [ - { - "uuid": "37b8d429-3aa1-43bc-b8fa-8b49d043432b", - "start": { - "$date": "2022-07-09T01:39:17.000Z" - }, - "end": { - "$date": "2022-07-09T07:29:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "41b0b499-4821-4032-946c-712189626125", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T01:46:41.000Z" - }, - "end": { - "$date": "2022-07-09T02:26:34.000Z" - }, - "events": [ - { - "uuid": "1884930f-e747-48ce-a91b-81dec361e1b4", - "start": { - "$date": "2022-07-09T01:46:41.000Z" - }, - "end": { - "$date": "2022-07-09T02:06:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4fdd98fe-6ec5-4a7c-a913-5e8243a6fbc3", - "start": { - "$date": "2022-07-09T02:06:41.000Z" - }, - "end": { - "$date": "2022-07-09T02:11:41.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af9549d3-c61a-43f1-9844-0b051df8681b", - "start": { - "$date": "2022-07-09T02:11:41.000Z" - }, - "end": { - "$date": "2022-07-09T02:21:41.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2a6958eb-fa8a-487c-9a8f-3775e093b6df", - "start": { - "$date": "2022-07-09T02:21:41.000Z" - }, - "end": { - "$date": "2022-07-09T02:26:34.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5637febc-2697-4c27-af08-8a0a423d8989", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T02:14:29.000Z" - }, - "end": { - "$date": "2022-07-09T03:09:32.000Z" - }, - "events": [ - { - "uuid": "e90a6da5-75ca-45e3-9da4-1152171e39cf", - "start": { - "$date": "2022-07-09T02:14:29.000Z" - }, - "end": { - "$date": "2022-07-09T03:09:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a9d04516-bab7-47be-9fea-2d65fde1b23d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T02:49:56.000Z" - }, - "end": { - "$date": "2022-07-09T07:33:02.000Z" - }, - "events": [ - { - "uuid": "33e590b3-b714-48fc-997f-d0ad592ef41d", - "start": { - "$date": "2022-07-09T02:49:56.000Z" - }, - "end": { - "$date": "2022-07-09T07:33:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "3385ab44-e7c2-43f4-bea5-8ae2f886a4e0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T03:13:55.000Z" - }, - "end": { - "$date": "2022-07-09T03:18:59.000Z" - }, - "events": [ - { - "uuid": "8d33377c-b06d-4626-bb3d-abc32c9f87a4", - "start": { - "$date": "2022-07-09T03:13:55.000Z" - }, - "end": { - "$date": "2022-07-09T03:18:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4aa91481-571a-461e-9be3-2147bba2db7f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T03:21:06.000Z" - }, - "end": { - "$date": "2022-07-09T04:13:34.000Z" - }, - "events": [ - { - "uuid": "99c4ed69-e117-4d7d-8ce8-cadfdab72e36", - "start": { - "$date": "2022-07-09T03:21:06.000Z" - }, - "end": { - "$date": "2022-07-09T04:13:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "731b4947-945b-4cd7-bd25-3b363d1493d5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T03:39:51.000Z" - }, - "end": { - "$date": "2022-07-09T04:24:45.000Z" - }, - "events": [ - { - "uuid": "591caa26-c1ab-4229-957b-70cb45d2d05c", - "start": { - "$date": "2022-07-09T03:39:51.000Z" - }, - "end": { - "$date": "2022-07-09T04:24:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "86b6eecf-0cc8-465a-ac8f-ef3456b1d6b4", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-09T03:57:49.000Z" - }, - "end": { - "$date": "2022-07-09T07:00:30.000Z" - }, - "events": [ - { - "uuid": "c1421324-8425-450b-9fd6-e252ce03cc73", - "start": { - "$date": "2022-07-09T03:57:49.000Z" - }, - "end": { - "$date": "2022-07-09T07:00:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "c2f45190-04b5-4c93-bf5a-0ad5e5e6919f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-09T04:05:56.000Z" - }, - "end": { - "$date": "2022-07-09T05:10:27.000Z" - }, - "events": [ - { - "uuid": "21e54234-f32a-457b-bfbd-7ec9e0c1fd14", - "start": { - "$date": "2022-07-09T04:05:56.000Z" - }, - "end": { - "$date": "2022-07-09T05:10:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "f1e7e5d7-163a-4f04-9ff6-c4574e784a02", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T04:15:15.000Z" - }, - "end": { - "$date": "2022-07-09T04:49:36.000Z" - }, - "events": [ - { - "uuid": "1fa44aa0-2250-4a86-8f4b-eea7772290a8", - "start": { - "$date": "2022-07-09T04:15:15.000Z" - }, - "end": { - "$date": "2022-07-09T04:49:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b22d106d-834d-4c6c-8646-709f799cc0cb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T04:30:21.000Z" - }, - "end": { - "$date": "2022-07-09T05:06:32.000Z" - }, - "events": [ - { - "uuid": "30f2c8ea-df99-47a1-874a-e3363aa8b939", - "start": { - "$date": "2022-07-09T04:30:21.000Z" - }, - "end": { - "$date": "2022-07-09T05:06:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "29a5d0c5-8c90-4741-88c0-df1050989a4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T05:07:39.000Z" - }, - "end": { - "$date": "2022-07-09T05:35:54.000Z" - }, - "events": [ - { - "uuid": "89ff06ea-ee39-4f62-8e00-e79363fe4297", - "start": { - "$date": "2022-07-09T05:07:39.000Z" - }, - "end": { - "$date": "2022-07-09T05:35:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "21d57ac0-496f-4d67-a619-2d62814afc17", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-09T05:11:48.000Z" - }, - "end": { - "$date": "2022-07-09T05:13:17.000Z" - }, - "events": [ - { - "uuid": "864f3df9-4633-46ae-acff-402353bb9fcb", - "start": { - "$date": "2022-07-09T05:11:48.000Z" - }, - "end": { - "$date": "2022-07-09T05:13:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dff0a34d-8d22-4679-a5a2-7a33fe0a1935", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-09T05:44:47.000Z" - }, - "end": { - "$date": "2022-07-09T07:31:21.000Z" - }, - "events": [ - { - "uuid": "27de53c3-d7dc-4be1-ad90-afc0dd854e31", - "start": { - "$date": "2022-07-09T05:44:47.000Z" - }, - "end": { - "$date": "2022-07-09T07:31:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "faae8a9f-81cd-479c-b652-26e2fea3f996", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T06:56:26.000Z" - }, - "end": { - "$date": "2022-07-09T07:05:00.000Z" - }, - "events": [ - { - "uuid": "fa3dcfbf-defc-49e5-91d9-e442f5dba83e", - "start": { - "$date": "2022-07-09T06:56:26.000Z" - }, - "end": { - "$date": "2022-07-09T07:05:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "5155be85-2c32-4c07-a63f-01b7ab3479c5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T07:06:15.000Z" - }, - "end": { - "$date": "2022-07-09T07:33:22.000Z" - }, - "events": [ - { - "uuid": "c1d94cb2-804c-44ff-a8be-a23863f354be", - "start": { - "$date": "2022-07-09T07:06:15.000Z" - }, - "end": { - "$date": "2022-07-09T07:33:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "92c183f8-6071-4476-8abf-65b17d5cad78", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T07:34:21.000Z" - }, - "end": { - "$date": "2022-07-09T07:38:38.000Z" - }, - "events": [ - { - "uuid": "9fa568d3-2b40-4fad-a978-25de6fe4079f", - "start": { - "$date": "2022-07-09T07:34:21.000Z" - }, - "end": { - "$date": "2022-07-09T07:38:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "190080be-5661-4b7d-99e9-968142493f30", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T07:43:07.000Z" - }, - "end": { - "$date": "2022-07-09T08:00:44.000Z" - }, - "events": [ - { - "uuid": "980f867b-fa05-403f-a5ff-c36e8165035e", - "start": { - "$date": "2022-07-09T07:43:07.000Z" - }, - "end": { - "$date": "2022-07-09T08:00:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d693f2df-2e6a-4e96-b7a7-27ba3f38f478", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T08:02:38.000Z" - }, - "end": { - "$date": "2022-07-09T08:40:11.000Z" - }, - "events": [ - { - "uuid": "b867adc4-5bdb-4b18-a8b1-e563766deae8", - "start": { - "$date": "2022-07-09T08:02:38.000Z" - }, - "end": { - "$date": "2022-07-09T08:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "afaabf94-5ab6-4726-93dd-eabe9c3429d1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-09T08:42:26.000Z" - }, - "end": { - "$date": "2022-07-09T09:14:04.000Z" - }, - "events": [ - { - "uuid": "cb1ec70b-1aba-4f6a-bd0f-dbff7794f05f", - "start": { - "$date": "2022-07-09T08:42:26.000Z" - }, - "end": { - "$date": "2022-07-09T09:14:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "7b1f5264-9aba-435b-a48f-7f8bb3021c34", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-09T10:06:49.000Z" - }, - "end": { - "$date": "2022-07-09T14:26:57.000Z" - }, - "events": [ - { - "uuid": "f233ac4a-0b7d-440b-9cf4-938ec8f51120", - "start": { - "$date": "2022-07-09T10:06:49.000Z" - }, - "end": { - "$date": "2022-07-09T14:26:57.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "554b78d9-e9f5-426b-8ee1-2f01016a0398", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T12:42:46.000Z" - }, - "end": { - "$date": "2022-07-09T13:02:13.000Z" - }, - "events": [ - { - "uuid": "0ebaaa50-c993-4d72-8295-0a962482e2be", - "start": { - "$date": "2022-07-09T12:42:46.000Z" - }, - "end": { - "$date": "2022-07-09T13:02:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9bb9fa35-4eed-4b88-b16d-b237539f290b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T13:06:41.000Z" - }, - "end": { - "$date": "2022-07-09T13:07:51.000Z" - }, - "events": [ - { - "uuid": "ea96ae0f-3270-4463-ad30-5687dafe802b", - "start": { - "$date": "2022-07-09T13:06:41.000Z" - }, - "end": { - "$date": "2022-07-09T13:07:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "7bd9254e-87ea-45b2-be3b-6f44eaf65c9b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T15:48:29.000Z" - }, - "end": { - "$date": "2022-07-09T16:14:01.000Z" - }, - "events": [ - { - "uuid": "6658fe11-5728-40b3-a190-55a4484cc107", - "start": { - "$date": "2022-07-09T15:48:29.000Z" - }, - "end": { - "$date": "2022-07-09T16:14:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "100d2759-aaaf-42d3-a217-c01991f357a9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-09T13:11:27.000Z" - }, - "end": { - "$date": "2022-07-09T13:24:36.000Z" - }, - "events": [ - { - "uuid": "a069d312-ab52-4b3a-be03-1ad42ef5fec6", - "start": { - "$date": "2022-07-09T13:11:27.000Z" - }, - "end": { - "$date": "2022-07-09T13:24:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "988048b0-2173-448d-bdaa-d5cc401d08fc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-09T14:24:56.000Z" - }, - "end": { - "$date": "2022-07-09T15:24:59.000Z" - }, - "events": [ - { - "uuid": "7650fb55-fb1a-4d63-94e7-6ba06dee09dc", - "start": { - "$date": "2022-07-09T14:24:56.000Z" - }, - "end": { - "$date": "2022-07-09T15:24:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "369c830f-8bee-432e-ac48-117c74b854a5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T16:15:41.000Z" - }, - "end": { - "$date": "2022-07-09T17:44:04.000Z" - }, - "events": [ - { - "uuid": "f1b9a274-2ad8-4bd3-8f74-59d44d459b4f", - "start": { - "$date": "2022-07-09T16:15:41.000Z" - }, - "end": { - "$date": "2022-07-09T17:44:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "6b33b6f2-a705-4492-9ff4-17e4aeb7c434", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T16:15:47.000Z" - }, - "end": { - "$date": "2022-07-09T17:46:11.000Z" - }, - "events": [ - { - "uuid": "95893a74-92e0-4516-9eed-3690a1b64409", - "start": { - "$date": "2022-07-09T16:15:47.000Z" - }, - "end": { - "$date": "2022-07-09T17:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "433e2e45-c51d-4625-af60-0819e27eadfb", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-09T17:38:04.000Z" - }, - "end": { - "$date": "2022-07-09T19:40:55.000Z" - }, - "events": [ - { - "uuid": "b65f65dd-f743-446a-8cc7-edfbfccce5ae", - "start": { - "$date": "2022-07-09T17:38:04.000Z" - }, - "end": { - "$date": "2022-07-09T19:40:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "a31b64ba-d158-4ee7-93cf-05dc507a1170", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T17:43:00.000Z" - }, - "end": { - "$date": "2022-07-09T20:03:33.000Z" - }, - "events": [ - { - "uuid": "083f5237-d301-48b8-8bc1-f184ee642267", - "start": { - "$date": "2022-07-09T17:43:00.000Z" - }, - "end": { - "$date": "2022-07-09T19:24:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "30c3ff42-e398-479f-9f63-1891122e0263", - "start": { - "$date": "2022-07-09T19:24:00.000Z" - }, - "end": { - "$date": "2022-07-09T19:28:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "14f64a54-67d0-4c9d-9cbd-f8180ed141c8", - "start": { - "$date": "2022-07-09T19:28:00.000Z" - }, - "end": { - "$date": "2022-07-09T19:39:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e98fadcb-66b7-4816-8ea8-0f751035601a", - "start": { - "$date": "2022-07-09T19:39:00.000Z" - }, - "end": { - "$date": "2022-07-09T19:45:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "482cec3b-64a4-4c08-a2bd-e7b10810a720", - "start": { - "$date": "2022-07-09T19:45:00.000Z" - }, - "end": { - "$date": "2022-07-09T20:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "8ba50a4f-aca7-4c65-9403-cf4f33fe7489", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T17:45:10.000Z" - }, - "end": { - "$date": "2022-07-09T17:55:10.000Z" - }, - "events": [ - { - "uuid": "0135b807-0ca8-467d-aea9-e14da6f7c77f", - "start": { - "$date": "2022-07-09T17:45:10.000Z" - }, - "end": { - "$date": "2022-07-09T17:55:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "a7fe2899-f539-4c30-88eb-58cad8950815", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T17:52:46.000Z" - }, - "end": { - "$date": "2022-07-09T17:56:31.000Z" - }, - "events": [ - { - "uuid": "c2aa04e5-9b7f-418a-8027-b7db57a9cdef", - "start": { - "$date": "2022-07-09T17:52:46.000Z" - }, - "end": { - "$date": "2022-07-09T17:56:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "d822bfc7-2b67-4318-ab37-8bf9c626ea2c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-09T17:57:41.000Z" - }, - "end": { - "$date": "2022-07-09T20:26:22.000Z" - }, - "events": [ - { - "uuid": "aa8cb9c0-d515-4e46-9f14-3fca68d28060", - "start": { - "$date": "2022-07-09T17:57:41.000Z" - }, - "end": { - "$date": "2022-07-09T20:26:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "7b9861d9-347a-4f07-b295-7ff3ced28aec", - "uuid": "982fe5fd-5a87-4cd4-92ca-26a9a4eaf941", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-09T18:40:44.000Z" - }, - "end": { - "$date": "2022-07-09T18:40:51.000Z" - }, - "events": [ - { - "uuid": "861d6ccd-2e99-47f9-a863-bf12d09d67ee", - "start": { - "$date": "2022-07-09T18:40:44.000Z" - }, - "end": { - "$date": "2022-07-09T18:40:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "65b03cc7-95b6-444a-a7dc-f77d840f74ed", - "uuid": "61027b28-b598-4028-8d78-12a359b8f321", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T19:10:27.000Z" - }, - "end": { - "$date": "2022-07-09T19:45:25.000Z" - }, - "events": [ - { - "uuid": "5548c195-af6c-4590-bc1a-c8043384cb26", - "start": { - "$date": "2022-07-09T19:10:27.000Z" - }, - "end": { - "$date": "2022-07-09T19:45:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "6d7f263e-d437-47ca-bd26-e3474927254c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T20:04:19.000Z" - }, - "end": { - "$date": "2022-07-09T21:00:21.000Z" - }, - "events": [ - { - "uuid": "235c1294-7317-4a05-ab9e-d32c55afb98d", - "start": { - "$date": "2022-07-09T20:04:19.000Z" - }, - "end": { - "$date": "2022-07-09T21:00:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "396c6e59-b341-4513-b0a0-a45afbdc1e07", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T20:19:57.000Z" - }, - "end": { - "$date": "2022-07-09T20:29:58.000Z" - }, - "events": [ - { - "uuid": "2783c65b-643b-495d-9e6a-d031614625a7", - "start": { - "$date": "2022-07-09T20:19:57.000Z" - }, - "end": { - "$date": "2022-07-09T20:29:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "c424053e-6f2a-45a4-8260-b35d56ff86a2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-09T20:30:56.000Z" - }, - "end": { - "$date": "2022-07-09T20:34:02.000Z" - }, - "events": [ - { - "uuid": "eb32854f-6b23-40e1-8ac3-2bf681e4abae", - "start": { - "$date": "2022-07-09T20:30:56.000Z" - }, - "end": { - "$date": "2022-07-09T20:34:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "06a9e189-e171-4be2-ba0e-57c137c8976d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T21:01:38.000Z" - }, - "end": { - "$date": "2022-07-09T21:53:42.000Z" - }, - "events": [ - { - "uuid": "2c9f40f5-5f89-4f2d-8712-e6de46bcea04", - "start": { - "$date": "2022-07-09T21:01:38.000Z" - }, - "end": { - "$date": "2022-07-09T21:36:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "89ae68dc-04a8-4d78-8cf1-0b1f7eded67a", - "start": { - "$date": "2022-07-09T21:36:38.000Z" - }, - "end": { - "$date": "2022-07-09T21:41:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f2f179d0-1a52-463e-9a9a-9781090f278b", - "start": { - "$date": "2022-07-09T21:41:38.000Z" - }, - "end": { - "$date": "2022-07-09T21:51:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "22e0511b-35f7-4cfc-aa5b-4dfa25c135ac", - "start": { - "$date": "2022-07-09T21:51:38.000Z" - }, - "end": { - "$date": "2022-07-09T21:53:42.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4af70b09-c2a9-46a8-9f84-3fb1aad5ee09", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T21:36:52.000Z" - }, - "end": { - "$date": "2022-07-09T21:59:44.000Z" - }, - "events": [ - { - "uuid": "4dfa7e99-4ce3-487a-b262-21ab133ccd8b", - "start": { - "$date": "2022-07-09T21:36:52.000Z" - }, - "end": { - "$date": "2022-07-09T21:59:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "c2f221a7-ad56-4866-a39d-da71136cd175", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T21:56:47.000Z" - }, - "end": { - "$date": "2022-07-09T22:09:47.000Z" - }, - "events": [ - { - "uuid": "884990e7-a841-4f50-a34f-8ef5672e9b2a", - "start": { - "$date": "2022-07-09T21:56:47.000Z" - }, - "end": { - "$date": "2022-07-09T22:09:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "cb5674fc-260e-4832-b2ac-cf8bbbb4ec5d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T21:59:57.000Z" - }, - "end": { - "$date": "2022-07-09T22:01:01.000Z" - }, - "events": [ - { - "uuid": "329ac48c-aa77-45a5-8ed3-f10655b786bf", - "start": { - "$date": "2022-07-09T21:59:57.000Z" - }, - "end": { - "$date": "2022-07-09T22:01:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "80ee68fd-362d-4350-8da4-5369833b6050", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-09T22:10:03.000Z" - }, - "end": { - "$date": "2022-07-09T23:16:10.000Z" - }, - "events": [ - { - "uuid": "cccdea9e-9f1c-41b0-8324-fc5a7a916b3c", - "start": { - "$date": "2022-07-09T22:10:03.000Z" - }, - "end": { - "$date": "2022-07-09T23:16:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d86a2156-9c2d-49fc-832e-0e6f7ccd457d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-09T22:11:07.000Z" - }, - "end": { - "$date": "2022-07-09T23:12:14.000Z" - }, - "events": [ - { - "uuid": "a096a823-6c04-4234-aeee-4e63a469814d", - "start": { - "$date": "2022-07-09T22:11:07.000Z" - }, - "end": { - "$date": "2022-07-09T23:12:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c9e2a1e4-84da-4f16-9d22-0d0618786497", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T00:31:40.000Z" - }, - "end": { - "$date": "2022-07-10T01:00:38.000Z" - }, - "events": [ - { - "uuid": "8db94d30-349d-41a9-8107-fe4593f8f93b", - "start": { - "$date": "2022-07-10T00:31:40.000Z" - }, - "end": { - "$date": "2022-07-10T00:44:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b2e71b9e-121f-48fc-b2b3-e926fa8476e3", - "start": { - "$date": "2022-07-10T00:44:40.000Z" - }, - "end": { - "$date": "2022-07-10T00:48:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c42f62f0-6a28-4cca-a984-0bf2b0234c5d", - "start": { - "$date": "2022-07-10T00:48:40.000Z" - }, - "end": { - "$date": "2022-07-10T01:00:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d8ddaa46-77b7-4e24-a311-a9d7958ccbd7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T00:40:46.000Z" - }, - "end": { - "$date": "2022-07-10T01:12:00.000Z" - }, - "events": [ - { - "uuid": "30a0afb4-f6c0-4571-99a6-0c9ccbc9aa31", - "start": { - "$date": "2022-07-10T00:40:46.000Z" - }, - "end": { - "$date": "2022-07-10T01:12:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "f15cfa54-ab4f-41a2-9302-d8113daa9af6", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-10T01:10:54.000Z" - }, - "end": { - "$date": "2022-07-10T01:39:44.000Z" - }, - "events": [ - { - "uuid": "4fe5f34c-62de-41c1-97fd-242040c5be18", - "start": { - "$date": "2022-07-10T01:10:54.000Z" - }, - "end": { - "$date": "2022-07-10T01:39:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "76d87fe6-1a10-4d51-a9f5-06d1fb979305", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T01:13:45.000Z" - }, - "end": { - "$date": "2022-07-10T01:48:55.000Z" - }, - "events": [ - { - "uuid": "e6b94b90-a30a-4ea2-80c0-4820da50723f", - "start": { - "$date": "2022-07-10T01:13:45.000Z" - }, - "end": { - "$date": "2022-07-10T01:48:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "88292e69-d7ba-4e3c-9888-42b2bb3206e2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T01:20:19.000Z" - }, - "end": { - "$date": "2022-07-10T01:51:56.000Z" - }, - "events": [ - { - "uuid": "66192a3b-dd8e-4879-be5d-36c06a8b51aa", - "start": { - "$date": "2022-07-10T01:20:19.000Z" - }, - "end": { - "$date": "2022-07-10T01:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6216c68f-41d1-4292-b9e4-9805a4aaf3d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-10T01:47:54.000Z" - }, - "end": { - "$date": "2022-07-10T07:07:26.000Z" - }, - "events": [ - { - "uuid": "641eb424-2db2-4870-a1ed-2cb16bfeeb12", - "start": { - "$date": "2022-07-10T01:47:54.000Z" - }, - "end": { - "$date": "2022-07-10T07:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "d88dcaf0-2f5b-4296-8d18-a4db34a49549", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T01:52:56.000Z" - }, - "end": { - "$date": "2022-07-10T02:19:32.000Z" - }, - "events": [ - { - "uuid": "fcddccf9-d82e-4707-80c0-f77f1b098213", - "start": { - "$date": "2022-07-10T01:52:56.000Z" - }, - "end": { - "$date": "2022-07-10T02:19:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "246b26e7-115f-4189-9626-335e670f0590", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T01:53:34.000Z" - }, - "end": { - "$date": "2022-07-10T06:56:55.000Z" - }, - "events": [ - { - "uuid": "a467516a-6fb9-46fe-9ded-c67fcb8fbeeb", - "start": { - "$date": "2022-07-10T01:53:34.000Z" - }, - "end": { - "$date": "2022-07-10T02:13:34.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d89a9f88-09b4-41a9-b526-ee268009d6c5", - "start": { - "$date": "2022-07-10T02:13:34.000Z" - }, - "end": { - "$date": "2022-07-10T05:53:34.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4c4d1e3f-cc96-425c-9cc2-e47aa1f46a9b", - "start": { - "$date": "2022-07-10T05:53:34.000Z" - }, - "end": { - "$date": "2022-07-10T06:56:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d625ea2f-a30d-4d35-bfda-36c39ee2feb6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T02:53:09.000Z" - }, - "end": { - "$date": "2022-07-10T03:07:50.000Z" - }, - "events": [ - { - "uuid": "d9df3200-d2ea-4fb5-8cb9-d11ec19034e8", - "start": { - "$date": "2022-07-10T02:53:09.000Z" - }, - "end": { - "$date": "2022-07-10T03:07:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "a2656c38-0925-45d4-96f2-11749fe630ca", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T03:17:26.000Z" - }, - "end": { - "$date": "2022-07-10T03:37:21.000Z" - }, - "events": [ - { - "uuid": "e371286c-0f96-4218-8f36-a9d468770bbb", - "start": { - "$date": "2022-07-10T03:17:26.000Z" - }, - "end": { - "$date": "2022-07-10T03:37:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0460283f-04a0-485f-932a-03ff1c7bccf9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-10T04:01:04.000Z" - }, - "end": { - "$date": "2022-07-10T04:34:34.000Z" - }, - "events": [ - { - "uuid": "ebb44fc2-c1fe-4318-991a-dcf2bd1fc783", - "start": { - "$date": "2022-07-10T04:01:04.000Z" - }, - "end": { - "$date": "2022-07-10T04:34:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c0c1cc02-219a-483d-a0d7-eeb19deb952a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-10T04:46:42.000Z" - }, - "end": { - "$date": "2022-07-10T08:39:50.000Z" - }, - "events": [ - { - "uuid": "fbda9502-7cfa-4ccc-a3bc-65b4762ad592", - "start": { - "$date": "2022-07-10T04:46:42.000Z" - }, - "end": { - "$date": "2022-07-10T08:39:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9cae4ecd-a1c9-40b5-bf6c-e2d80fa933b2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-10T05:05:37.000Z" - }, - "end": { - "$date": "2022-07-10T09:24:51.000Z" - }, - "events": [ - { - "uuid": "41706b1b-87bb-40f4-8be4-6f0d24657d2a", - "start": { - "$date": "2022-07-10T05:05:37.000Z" - }, - "end": { - "$date": "2022-07-10T09:24:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "e002ec09-95c2-488b-ab83-474b08de9541", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-10T05:22:27.000Z" - }, - "end": { - "$date": "2022-07-10T06:12:30.000Z" - }, - "events": [ - { - "uuid": "f1332e02-26e0-4315-9c79-d33df8ddc837", - "start": { - "$date": "2022-07-10T05:22:27.000Z" - }, - "end": { - "$date": "2022-07-10T06:12:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "6b1bc8fc-cd7d-4cd8-a220-6cc79ad70dd3", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-10T05:22:56.000Z" - }, - "end": { - "$date": "2022-07-10T05:28:22.000Z" - }, - "events": [ - { - "uuid": "140d704a-f46a-43ae-ad9f-8af45d18e3fa", - "start": { - "$date": "2022-07-10T05:22:56.000Z" - }, - "end": { - "$date": "2022-07-10T05:28:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "86be1772-db12-4011-b8f2-c86b10e6b3d4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-10T05:29:29.000Z" - }, - "end": { - "$date": "2022-07-10T06:12:28.000Z" - }, - "events": [ - { - "uuid": "806c43f6-7d5e-40a4-b37e-6e86a6fb0c1c", - "start": { - "$date": "2022-07-10T05:29:29.000Z" - }, - "end": { - "$date": "2022-07-10T06:12:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", - "uuid": "e92039ba-784a-469b-b048-15e0d9cd1db6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-10T06:14:55.000Z" - }, - "end": { - "$date": "2022-07-10T06:16:40.000Z" - }, - "events": [ - { - "uuid": "73d949ab-a97e-4954-8b63-47af0c57ba22", - "start": { - "$date": "2022-07-10T06:14:55.000Z" - }, - "end": { - "$date": "2022-07-10T06:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "890c7b52-59b0-4748-b815-06718477b92b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T06:58:55.000Z" - }, - "end": { - "$date": "2022-07-10T07:31:38.000Z" - }, - "events": [ - { - "uuid": "a1d596cd-b58a-44f8-92c7-dd27c9f20c65", - "start": { - "$date": "2022-07-10T06:58:55.000Z" - }, - "end": { - "$date": "2022-07-10T07:31:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "5c58374e-1a4a-4409-966a-50dfe8f6cb47", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-10T07:07:46.000Z" - }, - "end": { - "$date": "2022-07-10T07:55:22.000Z" - }, - "events": [ - { - "uuid": "fab52a7f-a98c-4e2a-b4f3-f2290073fc9c", - "start": { - "$date": "2022-07-10T07:07:46.000Z" - }, - "end": { - "$date": "2022-07-10T07:55:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2c5549c4-9fc9-403c-8d71-b9537be01071", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T07:34:43.000Z" - }, - "end": { - "$date": "2022-07-10T07:55:04.000Z" - }, - "events": [ - { - "uuid": "8aba3ef2-04ef-448a-a4c1-e23d960b50a7", - "start": { - "$date": "2022-07-10T07:34:43.000Z" - }, - "end": { - "$date": "2022-07-10T07:55:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "15121e77-3744-4441-b0f2-ee8f026c8b1a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T07:58:10.000Z" - }, - "end": { - "$date": "2022-07-10T08:18:41.000Z" - }, - "events": [ - { - "uuid": "364fada2-ea87-44b8-bc49-4440c6a6da19", - "start": { - "$date": "2022-07-10T07:58:10.000Z" - }, - "end": { - "$date": "2022-07-10T08:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5a0b328f-e0dc-4fa8-974f-7bca16df853c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T08:21:31.000Z" - }, - "end": { - "$date": "2022-07-10T08:58:53.000Z" - }, - "events": [ - { - "uuid": "8d7fef10-f102-4ac0-ab17-1192db69918e", - "start": { - "$date": "2022-07-10T08:21:31.000Z" - }, - "end": { - "$date": "2022-07-10T08:58:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "48791a2a-81c9-487c-bc80-5785ef3cc905", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-10T08:28:54.000Z" - }, - "end": { - "$date": "2022-07-10T08:45:46.000Z" - }, - "events": [ - { - "uuid": "e28ed0f1-83fa-4ed1-a3d1-35b2a85496ba", - "start": { - "$date": "2022-07-10T08:28:54.000Z" - }, - "end": { - "$date": "2022-07-10T08:45:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3e38c0bb-7da8-417d-a195-4dcfbb56b7c4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T14:44:28.000Z" - }, - "end": { - "$date": "2022-07-10T15:37:33.000Z" - }, - "events": [ - { - "uuid": "e149c1c8-befa-46f4-b90e-5b30091862c2", - "start": { - "$date": "2022-07-10T14:44:28.000Z" - }, - "end": { - "$date": "2022-07-10T15:37:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "63ad9818-a0c4-4c1c-b9cb-5077f003023a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-10T17:33:48.000Z" - }, - "end": { - "$date": "2022-07-10T17:48:24.000Z" - }, - "events": [ - { - "uuid": "31f49d17-9992-4d07-8107-c45e44de8e9b", - "start": { - "$date": "2022-07-10T17:33:48.000Z" - }, - "end": { - "$date": "2022-07-10T17:48:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5548bec0-20a3-4232-8d06-e4a3f4a855a9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T15:54:45.000Z" - }, - "end": { - "$date": "2022-07-10T17:07:17.000Z" - }, - "events": [ - { - "uuid": "19b5da2e-1a8c-40d8-bf9a-5dd9bee706e0", - "start": { - "$date": "2022-07-10T15:54:45.000Z" - }, - "end": { - "$date": "2022-07-10T16:58:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "94c6a40c-f0c9-48a6-89d0-6b54ab9a602c", - "start": { - "$date": "2022-07-10T16:58:45.000Z" - }, - "end": { - "$date": "2022-07-10T17:02:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b30f135c-0837-42a7-b13b-87f7dfe7465f", - "start": { - "$date": "2022-07-10T17:02:45.000Z" - }, - "end": { - "$date": "2022-07-10T17:07:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6447ee68-8364-4f34-83dc-d038b6756a6a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-10T16:47:31.000Z" - }, - "end": { - "$date": "2022-07-10T17:55:24.000Z" - }, - "events": [ - { - "uuid": "c3e5c414-ed7f-4294-b5f8-352f08ff1eb4", - "start": { - "$date": "2022-07-10T16:47:31.000Z" - }, - "end": { - "$date": "2022-07-10T17:55:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d1171052-98dc-4ddf-9789-b65923e2e478", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-10T18:32:11.000Z" - }, - "end": { - "$date": "2022-07-10T19:49:07.000Z" - }, - "events": [ - { - "uuid": "6491f173-022f-4d3e-bbdf-c5e39f6fa62a", - "start": { - "$date": "2022-07-10T18:32:11.000Z" - }, - "end": { - "$date": "2022-07-10T19:31:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fa0acae4-cb74-47cf-bdf0-e5a8ab03e37f", - "start": { - "$date": "2022-07-10T19:31:11.000Z" - }, - "end": { - "$date": "2022-07-10T19:36:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "80e4e4ad-cbe7-4f4c-ba86-5b9b69b03727", - "start": { - "$date": "2022-07-10T19:36:11.000Z" - }, - "end": { - "$date": "2022-07-10T19:46:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "36c7ddec-c36a-4cb9-8ea9-8952456fc9a8", - "start": { - "$date": "2022-07-10T19:46:11.000Z" - }, - "end": { - "$date": "2022-07-10T19:49:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "8d441d15-225e-4dd9-b993-891d265cb32c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-10T19:32:16.000Z" - }, - "end": { - "$date": "2022-07-10T20:35:35.000Z" - }, - "events": [ - { - "uuid": "2d0a920a-b5e9-4fa7-9e79-7f8ed2e3e751", - "start": { - "$date": "2022-07-10T19:32:16.000Z" - }, - "end": { - "$date": "2022-07-10T20:34:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "46df1046-25ee-4b88-ad15-b4e47412974f", - "start": { - "$date": "2022-07-10T20:34:16.000Z" - }, - "end": { - "$date": "2022-07-10T20:35:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2ceb3923-0dae-4967-9c1d-f1f8e00840fd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-10T21:24:26.000Z" - }, - "end": { - "$date": "2022-07-11T05:30:25.000Z" - }, - "events": [ - { - "uuid": "d761312a-52ba-48b4-bf1c-37466368e607", - "start": { - "$date": "2022-07-10T21:24:26.000Z" - }, - "end": { - "$date": "2022-07-10T23:05:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ede5b8ca-5674-4da9-a8e3-4bb575f3a5bf", - "start": { - "$date": "2022-07-10T23:05:26.000Z" - }, - "end": { - "$date": "2022-07-10T23:10:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5ba3f19b-f87e-43ee-b5da-c170b558550c", - "start": { - "$date": "2022-07-10T23:10:26.000Z" - }, - "end": { - "$date": "2022-07-11T05:30:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f82f4c42-e48e-4d5d-acfe-6f82260410f5", - "uuid": "78280594-b943-4643-9285-2460772fb9cc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T21:25:42.000Z" - }, - "end": { - "$date": "2022-07-10T21:28:13.000Z" - }, - "events": [ - { - "uuid": "8054a6ef-5106-4b1e-8e33-b0b659769a3b", - "start": { - "$date": "2022-07-10T21:25:42.000Z" - }, - "end": { - "$date": "2022-07-10T21:28:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2cfa9aeb-7bf3-4890-8cab-b07158ab4414", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T21:36:43.000Z" - }, - "end": { - "$date": "2022-07-10T22:16:40.000Z" - }, - "events": [ - { - "uuid": "16803c5e-805d-49bd-8042-79023643565a", - "start": { - "$date": "2022-07-10T21:36:43.000Z" - }, - "end": { - "$date": "2022-07-10T22:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "85d8cf6f-5f7a-4da4-a387-6aae0f7ba0c3", - "uuid": "1bd3d23c-4957-46aa-b9b8-21daf613db4c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-10T22:25:40.000Z" - }, - "end": { - "$date": "2022-07-10T22:34:20.000Z" - }, - "events": [ - { - "uuid": "34461123-8ce4-45c0-9f39-7a7d02933232", - "start": { - "$date": "2022-07-10T22:25:40.000Z" - }, - "end": { - "$date": "2022-07-10T22:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43d6436e-7ad7-4d16-99e4-2bb0985aae01", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T23:21:28.000Z" - }, - "end": { - "$date": "2022-07-10T23:51:41.000Z" - }, - "events": [ - { - "uuid": "68cfc652-db45-4f14-b93f-82a7a9aae792", - "start": { - "$date": "2022-07-10T23:21:28.000Z" - }, - "end": { - "$date": "2022-07-10T23:51:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "14e1f534-4b97-4740-a902-40b69fed02a8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-10T23:52:51.000Z" - }, - "end": { - "$date": "2022-07-11T00:31:31.000Z" - }, - "events": [ - { - "uuid": "e17491d5-696f-48c9-9b4b-74f5fcc3c1a9", - "start": { - "$date": "2022-07-10T23:52:51.000Z" - }, - "end": { - "$date": "2022-07-11T00:31:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2cbb3161-3768-4b14-ad4f-15458d79188f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-11T00:19:53.000Z" - }, - "end": { - "$date": "2022-07-11T01:11:35.000Z" - }, - "events": [ - { - "uuid": "cc61c3ed-f629-4969-87e1-cc1ba3186688", - "start": { - "$date": "2022-07-11T00:19:53.000Z" - }, - "end": { - "$date": "2022-07-11T01:11:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0c1a99b0-08e5-4a30-aab7-f6740453960f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-11T00:32:30.000Z" - }, - "end": { - "$date": "2022-07-11T00:51:53.000Z" - }, - "events": [ - { - "uuid": "a9aca333-160d-4ba3-867e-7549cc67f0a4", - "start": { - "$date": "2022-07-11T00:32:30.000Z" - }, - "end": { - "$date": "2022-07-11T00:51:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "f5e78cb3-ade0-41c0-bd1d-955e194da8b9", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-11T00:45:22.000Z" - }, - "end": { - "$date": "2022-07-11T02:00:41.000Z" - }, - "events": [ - { - "uuid": "634e11ef-89b3-4f10-98ed-01c0f2b9e3ba", - "start": { - "$date": "2022-07-11T00:45:22.000Z" - }, - "end": { - "$date": "2022-07-11T02:00:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "22a589cd-759d-44c6-99ad-fecc19c41ad9", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-11T00:56:08.000Z" - }, - "end": { - "$date": "2022-07-11T01:55:35.000Z" - }, - "events": [ - { - "uuid": "a358a845-0c5b-4c29-90ae-76ed7f9c00f6", - "start": { - "$date": "2022-07-11T00:56:08.000Z" - }, - "end": { - "$date": "2022-07-11T01:55:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "ec9aef35-c936-4bdb-9b71-32e959751916", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-11T00:57:04.000Z" - }, - "end": { - "$date": "2022-07-11T01:56:40.000Z" - }, - "events": [ - { - "uuid": "ab36cc18-26b4-4bc3-ba08-0af04c242f57", - "start": { - "$date": "2022-07-11T00:57:04.000Z" - }, - "end": { - "$date": "2022-07-11T01:56:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "d8fe40cd-a6ad-464b-acd1-2e9305349654", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-11T01:05:28.000Z" - }, - "end": { - "$date": "2022-07-11T01:55:37.000Z" - }, - "events": [ - { - "uuid": "98c2b824-6d2a-4fac-8070-29bbdce8412d", - "start": { - "$date": "2022-07-11T01:05:28.000Z" - }, - "end": { - "$date": "2022-07-11T01:55:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "68b02e2c-06dd-48f4-9331-bfa633a0982c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-11T02:00:27.000Z" - }, - "end": { - "$date": "2022-07-11T02:35:37.000Z" - }, - "events": [ - { - "uuid": "8b71bb96-9e82-449b-9663-bb541920b26d", - "start": { - "$date": "2022-07-11T02:00:27.000Z" - }, - "end": { - "$date": "2022-07-11T02:35:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "44e6d1a5-e64d-42d6-b931-367129ff063a", - "uuid": "df8bd801-23d2-4b51-8729-71c2c8f68dba", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-11T02:28:16.000Z" - }, - "end": { - "$date": "2022-07-11T02:36:40.000Z" - }, - "events": [ - { - "uuid": "a2b0b578-64d9-408e-95cf-a46227563092", - "start": { - "$date": "2022-07-11T02:28:16.000Z" - }, - "end": { - "$date": "2022-07-11T02:36:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", - "uuid": "c560c980-0259-4d5c-ad8c-646ddae7db38", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-11T03:59:54.000Z" - }, - "end": { - "$date": "2022-07-11T04:35:59.000Z" - }, - "events": [ - { - "uuid": "b1fdd8ab-19d2-4a79-8465-9e6229705e80", - "start": { - "$date": "2022-07-11T03:59:54.000Z" - }, - "end": { - "$date": "2022-07-11T04:35:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "8ad0bd0b-2690-42fd-840c-c896e71f236d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-11T05:37:10.000Z" - }, - "end": { - "$date": "2022-07-11T06:25:15.000Z" - }, - "events": [ - { - "uuid": "5ccf2892-f6dc-4105-bdf9-2d061c88bf7d", - "start": { - "$date": "2022-07-11T05:37:10.000Z" - }, - "end": { - "$date": "2022-07-11T06:25:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1f8994c1-5c55-4a7b-9d1a-e4513bcfc57d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-11T07:36:07.000Z" - }, - "end": { - "$date": "2022-07-11T07:36:11.000Z" - }, - "events": [ - { - "uuid": "bc7529f4-7d65-4447-a6ad-f6e961fbca19", - "start": { - "$date": "2022-07-11T07:36:07.000Z" - }, - "end": { - "$date": "2022-07-11T08:27:07.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cdafbacc-1277-4345-a231-4d3dd38694a9", - "start": { - "$date": "2022-07-11T08:27:07.000Z" - }, - "end": { - "$date": "2022-07-11T08:36:07.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a2bc4ba3-ded1-4aab-ac80-6323b960d775", - "start": { - "$date": "2022-07-11T08:36:07.000Z" - }, - "end": { - "$date": "2022-07-11T07:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "60bd373b-dd8f-4684-9701-c2c8d49c7d21", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-11T08:26:43.000Z" - }, - "end": { - "$date": "2022-07-11T08:32:03.000Z" - }, - "events": [ - { - "uuid": "d82adb91-e8e6-4353-98d8-93f6ab019e0c", - "start": { - "$date": "2022-07-11T08:26:43.000Z" - }, - "end": { - "$date": "2022-07-11T08:32:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3172663d-4586-47c2-8a72-c70e194475ed", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-11T08:33:21.000Z" - }, - "end": { - "$date": "2022-07-11T08:58:07.000Z" - }, - "events": [ - { - "uuid": "54b88477-ed2d-4d84-9f49-ebaf5e688f77", - "start": { - "$date": "2022-07-11T08:33:21.000Z" - }, - "end": { - "$date": "2022-07-11T08:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "2f28912f-9550-441e-a9c6-a097bbb42019", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-11T10:21:11.000Z" - }, - "end": { - "$date": "2022-07-11T10:56:26.000Z" - }, - "events": [ - { - "uuid": "032cb78d-50af-45e3-8f7a-09005217dcb4", - "start": { - "$date": "2022-07-11T10:21:11.000Z" - }, - "end": { - "$date": "2022-07-11T10:56:26.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5cfc35f2-1f39-4b24-8887-5a85d7561488", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-11T15:53:24.000Z" - }, - "end": { - "$date": "2022-07-11T15:58:34.000Z" - }, - "events": [ - { - "uuid": "bcbda2dc-17b1-47e4-b2f1-0fa7c97ae5ad", - "start": { - "$date": "2022-07-11T15:53:24.000Z" - }, - "end": { - "$date": "2022-07-11T15:58:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "bafc4f9b-6288-4b37-b5cb-6c13162b8166", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-11T16:08:50.000Z" - }, - "end": { - "$date": "2022-07-11T16:51:40.000Z" - }, - "events": [ - { - "uuid": "bf7da818-e2f1-41be-bca3-1c8a8e8d25d5", - "start": { - "$date": "2022-07-11T16:08:50.000Z" - }, - "end": { - "$date": "2022-07-11T16:51:40.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "8654f212-4d67-4583-a49f-c818bd61dcfc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-11T16:18:02.000Z" - }, - "end": { - "$date": "2022-07-11T17:13:39.000Z" - }, - "events": [ - { - "uuid": "77cfaca4-0e8b-4dcb-a9d7-aca4a4a5d699", - "start": { - "$date": "2022-07-11T16:18:02.000Z" - }, - "end": { - "$date": "2022-07-11T17:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4cb6bf93-2da6-42c6-82e9-2f914d61ac24", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-11T21:03:26.000Z" - }, - "end": { - "$date": "2022-07-11T21:03:26.000Z" - }, - "events": [ - { - "uuid": "2fcebfcd-c392-4388-afda-674297322f6e", - "start": { - "$date": "2022-07-11T21:03:26.000Z" - }, - "end": { - "$date": "2022-07-11T21:03:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2a57404f-936d-4bde-83ae-49881352b3c1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-11T20:45:29.000Z" - }, - "end": { - "$date": "2022-07-11T21:51:51.000Z" - }, - "events": [ - { - "uuid": "e5418e59-5250-49eb-abf3-107f257577c6", - "start": { - "$date": "2022-07-11T20:45:29.000Z" - }, - "end": { - "$date": "2022-07-11T21:01:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5c5b5237-aeb2-44eb-b0ed-f84ba13a2b19", - "start": { - "$date": "2022-07-11T21:01:29.000Z" - }, - "end": { - "$date": "2022-07-11T21:14:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ea1ed814-152d-4b29-9e3c-4868797dc138", - "start": { - "$date": "2022-07-11T21:14:29.000Z" - }, - "end": { - "$date": "2022-07-11T21:50:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "25ad224d-7ada-408a-a7ac-3ff67a606e9e", - "start": { - "$date": "2022-07-11T21:50:29.000Z" - }, - "end": { - "$date": "2022-07-11T21:51:51.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4559f531-322f-422a-81f7-dd38cb24ac48", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-11T21:50:19.000Z" - }, - "end": { - "$date": "2022-07-11T22:17:56.000Z" - }, - "events": [ - { - "uuid": "f0cebba6-8e89-47e4-917c-aee9ed67d480", - "start": { - "$date": "2022-07-11T21:50:19.000Z" - }, - "end": { - "$date": "2022-07-11T22:17:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "uuid": "7215a9f9-0e0a-4649-8b6f-d37ed58ea4b5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-11T21:54:16.000Z" - }, - "end": { - "$date": "2022-07-11T22:24:41.000Z" - }, - "events": [ - { - "uuid": "8652feec-c5c2-4a99-8208-3ce20c7ce493", - "start": { - "$date": "2022-07-11T21:54:16.000Z" - }, - "end": { - "$date": "2022-07-11T22:24:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c44f63b4-2b7b-46b8-a183-3f396cce7b00", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-11T22:04:37.000Z" - }, - "end": { - "$date": "2022-07-11T23:05:45.000Z" - }, - "events": [ - { - "uuid": "2c7f4b38-9e49-418f-b35c-4178446edfea", - "start": { - "$date": "2022-07-11T22:04:37.000Z" - }, - "end": { - "$date": "2022-07-11T23:05:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "c2bde31c-0dda-4f7d-92de-0a8343294df6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-11T22:37:22.000Z" - }, - "end": { - "$date": "2022-07-11T22:45:32.000Z" - }, - "events": [ - { - "uuid": "1760be80-ab6d-41b1-bf80-39f70d357d3d", - "start": { - "$date": "2022-07-11T22:37:22.000Z" - }, - "end": { - "$date": "2022-07-11T22:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d945b512-33a6-4dc6-95c7-0a50e36c7619", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-11T22:56:11.000Z" - }, - "end": { - "$date": "2022-07-11T23:11:41.000Z" - }, - "events": [ - { - "uuid": "4fa694e5-0f89-414a-94af-4d9a012fea00", - "start": { - "$date": "2022-07-11T22:56:11.000Z" - }, - "end": { - "$date": "2022-07-11T23:11:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "45141b81-5998-460e-8ab0-29916cf1db66", - "uuid": "6e93f3e4-a0fc-4077-85af-a882517cbc25", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-12T00:17:13.000Z" - }, - "end": { - "$date": "2022-07-12T00:24:04.000Z" - }, - "events": [ - { - "uuid": "af92fb84-0a5b-47a4-99f0-9bdb0e03a8ff", - "start": { - "$date": "2022-07-12T00:17:13.000Z" - }, - "end": { - "$date": "2022-07-12T00:24:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "030106c3-dd09-46b0-95d2-b4895305a1e3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-11T23:10:16.000Z" - }, - "end": { - "$date": "2022-07-11T23:29:26.000Z" - }, - "events": [ - { - "uuid": "c0606d02-f15f-468e-aa74-923fc1c6c267", - "start": { - "$date": "2022-07-11T23:10:16.000Z" - }, - "end": { - "$date": "2022-07-11T23:29:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "e01b4741-f702-4554-b902-5316abc2c2d8", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-11T23:13:02.000Z" - }, - "end": { - "$date": "2022-07-11T23:24:17.000Z" - }, - "events": [ - { - "uuid": "16914d15-fc0e-4ab8-b688-b5e2d937d556", - "start": { - "$date": "2022-07-11T23:13:02.000Z" - }, - "end": { - "$date": "2022-07-11T23:24:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "2e320af0-1bc1-434a-8718-ff6ab25bd038", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-11T23:28:27.000Z" - }, - "end": { - "$date": "2022-07-12T01:50:56.000Z" - }, - "events": [ - { - "uuid": "b166a5a6-fc3b-453e-bbd5-300d99dae645", - "start": { - "$date": "2022-07-11T23:28:27.000Z" - }, - "end": { - "$date": "2022-07-12T01:50:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "0256296f-8854-493c-b2f9-fcda25a5776f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-11T23:33:37.000Z" - }, - "end": { - "$date": "2022-07-12T01:50:46.000Z" - }, - "events": [ - { - "uuid": "7ab0ccb8-c5df-4eb6-bfe3-a683eaff1c37", - "start": { - "$date": "2022-07-11T23:33:37.000Z" - }, - "end": { - "$date": "2022-07-12T01:50:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ac2ffe50-d784-42cf-8aca-62bbf2480c18", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-12T00:29:15.000Z" - }, - "end": { - "$date": "2022-07-12T00:43:17.000Z" - }, - "events": [ - { - "uuid": "3583b9fa-8f84-4f85-8d46-3b922e096e7b", - "start": { - "$date": "2022-07-12T00:29:15.000Z" - }, - "end": { - "$date": "2022-07-12T00:43:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5f0fe7c6-1c43-4ee6-bdf2-deacc023b6fb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T00:30:03.000Z" - }, - "end": { - "$date": "2022-07-12T00:47:26.000Z" - }, - "events": [ - { - "uuid": "6b17caff-edb6-41d6-89e0-5f65ddca978c", - "start": { - "$date": "2022-07-12T00:30:03.000Z" - }, - "end": { - "$date": "2022-07-12T00:47:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "797e1016-b84c-4212-a647-e52b7fe5a7ba", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-12T00:34:08.000Z" - }, - "end": { - "$date": "2022-07-12T01:16:05.000Z" - }, - "events": [ - { - "uuid": "78b3fba9-0ceb-4a73-84cd-c70bb5326945", - "start": { - "$date": "2022-07-12T00:34:08.000Z" - }, - "end": { - "$date": "2022-07-12T01:16:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "0b14c50e-9da8-4a98-bb93-82aa34d8c0ff", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-12T00:43:42.000Z" - }, - "end": { - "$date": "2022-07-12T02:09:20.000Z" - }, - "events": [ - { - "uuid": "8a2ee1b9-98fc-43c4-a5f6-9227d947d82d", - "start": { - "$date": "2022-07-12T00:43:42.000Z" - }, - "end": { - "$date": "2022-07-12T01:04:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "028d4e97-cf27-47b4-9929-8451f3a11871", - "start": { - "$date": "2022-07-12T01:04:42.000Z" - }, - "end": { - "$date": "2022-07-12T01:09:42.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6e09fa75-5066-4c00-b370-0cb3689d6615", - "start": { - "$date": "2022-07-12T01:09:42.000Z" - }, - "end": { - "$date": "2022-07-12T02:09:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "506b3900-f250-4940-b9f9-02bd9dedc96e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T00:57:17.000Z" - }, - "end": { - "$date": "2022-07-12T01:39:29.000Z" - }, - "events": [ - { - "uuid": "327f8f1a-a45b-4da7-9575-c7438c02c76a", - "start": { - "$date": "2022-07-12T00:57:17.000Z" - }, - "end": { - "$date": "2022-07-12T01:39:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0f5d6943-f28e-4931-8777-aef8ded01668", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-12T01:51:31.000Z" - }, - "end": { - "$date": "2022-07-12T06:33:50.000Z" - }, - "events": [ - { - "uuid": "1b4d4ae3-26b9-4fdb-8786-6ac94a4342e4", - "start": { - "$date": "2022-07-12T01:51:31.000Z" - }, - "end": { - "$date": "2022-07-12T02:19:31.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "886f383a-a367-44c1-97c3-8f03c38e15d4", - "start": { - "$date": "2022-07-12T02:19:31.000Z" - }, - "end": { - "$date": "2022-07-12T02:20:31.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "670596fc-6a90-4ae2-ab4d-bd57a2c7868a", - "start": { - "$date": "2022-07-12T02:20:31.000Z" - }, - "end": { - "$date": "2022-07-12T06:33:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "01edda9a-6847-4f03-b11f-5cac3383c378", - "uuid": "f81d6d1a-65dc-41d6-8038-aa04078f53d3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T02:01:06.000Z" - }, - "end": { - "$date": "2022-07-12T02:11:07.000Z" - }, - "events": [ - { - "uuid": "f5fe3833-1c87-434b-a810-91b5471a1278", - "start": { - "$date": "2022-07-12T02:01:06.000Z" - }, - "end": { - "$date": "2022-07-12T02:11:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4880e707-4781-466f-9d19-d05ef429a9e4", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-12T02:30:05.000Z" - }, - "end": { - "$date": "2022-07-12T05:58:58.000Z" - }, - "events": [ - { - "uuid": "c4c366b8-e665-4a03-a6d3-27c5e77e3bfa", - "start": { - "$date": "2022-07-12T02:30:05.000Z" - }, - "end": { - "$date": "2022-07-12T05:58:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0ac38a0b-c701-43e8-9061-ab5aad00cc0b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-12T02:30:18.000Z" - }, - "end": { - "$date": "2022-07-12T06:22:47.000Z" - }, - "events": [ - { - "uuid": "b77857cf-5658-4f1e-b26e-851ab1e5e4f1", - "start": { - "$date": "2022-07-12T02:30:18.000Z" - }, - "end": { - "$date": "2022-07-12T06:22:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "69f9d08f-7187-42f4-befa-08fda15dafeb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-12T02:56:26.000Z" - }, - "end": { - "$date": "2022-07-12T05:48:50.000Z" - }, - "events": [ - { - "uuid": "01d72e3f-ea74-4c74-9dd1-a94095b2e8c5", - "start": { - "$date": "2022-07-12T02:56:26.000Z" - }, - "end": { - "$date": "2022-07-12T05:48:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6f603b0a-206e-47d2-a080-3f5f84df1277", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T03:13:04.000Z" - }, - "end": { - "$date": "2022-07-12T03:27:13.000Z" - }, - "events": [ - { - "uuid": "f3c6177d-25e2-4531-ae03-c188b8179ef2", - "start": { - "$date": "2022-07-12T03:13:04.000Z" - }, - "end": { - "$date": "2022-07-12T03:27:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f3ab73e7-9d9c-483f-90d9-cee38a609865", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T03:28:51.000Z" - }, - "end": { - "$date": "2022-07-12T04:04:20.000Z" - }, - "events": [ - { - "uuid": "f9af7c3a-5f45-4ab2-8d84-e97d0d032fcf", - "start": { - "$date": "2022-07-12T03:28:51.000Z" - }, - "end": { - "$date": "2022-07-12T04:04:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9837862d-86f6-418c-af2a-bb9fcc5337f4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T04:06:29.000Z" - }, - "end": { - "$date": "2022-07-12T04:44:33.000Z" - }, - "events": [ - { - "uuid": "7478f202-ab41-456a-9ad3-ac07927e099f", - "start": { - "$date": "2022-07-12T04:06:29.000Z" - }, - "end": { - "$date": "2022-07-12T04:44:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "bf25e483-25c7-41c0-8c09-ffea084596ed", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-12T04:13:22.000Z" - }, - "end": { - "$date": "2022-07-12T04:26:33.000Z" - }, - "events": [ - { - "uuid": "d4985d4b-677d-4cb3-96f4-7f02b9f7800e", - "start": { - "$date": "2022-07-12T04:13:22.000Z" - }, - "end": { - "$date": "2022-07-12T04:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "c29ca40b-eb5b-4716-9ef3-298180d7244a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-12T04:27:08.000Z" - }, - "end": { - "$date": "2022-07-12T05:14:14.000Z" - }, - "events": [ - { - "uuid": "d5b7beaa-a64b-4bc8-b471-eb58a6f318d8", - "start": { - "$date": "2022-07-12T04:27:08.000Z" - }, - "end": { - "$date": "2022-07-12T05:14:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d1c9123e-ef22-4800-b491-29c2304dd7b6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T04:47:03.000Z" - }, - "end": { - "$date": "2022-07-12T05:01:15.000Z" - }, - "events": [ - { - "uuid": "fd1e7ca2-b0b8-41b9-885d-450e215fa69e", - "start": { - "$date": "2022-07-12T04:47:03.000Z" - }, - "end": { - "$date": "2022-07-12T05:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aa268412-360e-4dc9-8329-0dbd1f2c35e5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T05:06:59.000Z" - }, - "end": { - "$date": "2022-07-12T05:47:55.000Z" - }, - "events": [ - { - "uuid": "3aeecfb1-8914-4a01-80fd-3688cb152209", - "start": { - "$date": "2022-07-12T05:06:59.000Z" - }, - "end": { - "$date": "2022-07-12T05:47:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "16fd3848-c4b7-49d7-aba2-d57a7edd3467", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T05:52:04.000Z" - }, - "end": { - "$date": "2022-07-12T06:16:47.000Z" - }, - "events": [ - { - "uuid": "6251f1b4-b8dd-4895-8941-9923025f66dc", - "start": { - "$date": "2022-07-12T05:52:04.000Z" - }, - "end": { - "$date": "2022-07-12T06:16:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7ba0ee46-aaee-4c06-b632-a88cb5340a92", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-12T07:07:37.000Z" - }, - "end": { - "$date": "2022-07-12T07:12:08.000Z" - }, - "events": [ - { - "uuid": "3266385f-2f14-42ae-860b-d3cf98caedc5", - "start": { - "$date": "2022-07-12T07:07:37.000Z" - }, - "end": { - "$date": "2022-07-12T07:12:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "718f8e87-56bf-4854-9d28-3215a2b159e6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-12T07:19:04.000Z" - }, - "end": { - "$date": "2022-07-12T07:44:28.000Z" - }, - "events": [ - { - "uuid": "b4014d52-9f13-49da-9c91-d3dadd27ba6d", - "start": { - "$date": "2022-07-12T07:19:04.000Z" - }, - "end": { - "$date": "2022-07-12T07:44:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "603f95e5-0116-4603-912a-9d5212978fdc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-12T07:54:05.000Z" - }, - "end": { - "$date": "2022-07-12T08:24:09.000Z" - }, - "events": [ - { - "uuid": "7ea2c6ad-d72a-4a7b-b1a7-274672eca4e2", - "start": { - "$date": "2022-07-12T07:54:05.000Z" - }, - "end": { - "$date": "2022-07-12T08:24:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9b4d69c9-a38a-45b0-9a90-d3c14e630550", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-12T08:24:47.000Z" - }, - "end": { - "$date": "2022-07-12T08:26:04.000Z" - }, - "events": [ - { - "uuid": "b0d0ac92-dd9d-4a59-a6e1-429091990ac9", - "start": { - "$date": "2022-07-12T08:24:47.000Z" - }, - "end": { - "$date": "2022-07-12T08:26:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "eb3c0227-4bec-4052-93a1-4710cb43a9ca", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-12T09:02:45.000Z" - }, - "end": { - "$date": "2022-07-12T09:54:28.000Z" - }, - "events": [ - { - "uuid": "ac9a9439-6801-4ffd-b030-53d883561f61", - "start": { - "$date": "2022-07-12T09:02:45.000Z" - }, - "end": { - "$date": "2022-07-12T09:54:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "337f01b5-16fa-47d2-8db9-056f3b3b2f6f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-12T10:06:51.000Z" - }, - "end": { - "$date": "2022-07-12T11:43:01.000Z" - }, - "events": [ - { - "uuid": "d783a45a-6c23-4996-8be0-344abf4b748a", - "start": { - "$date": "2022-07-12T10:06:51.000Z" - }, - "end": { - "$date": "2022-07-12T11:43:01.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "1391b6a1-bd91-45f7-92ad-0e4a6d9c0078", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-12T15:40:39.000Z" - }, - "end": { - "$date": "2022-07-12T16:29:33.000Z" - }, - "events": [ - { - "uuid": "142692d5-9f1b-40e2-bd0c-6a56e76549b2", - "start": { - "$date": "2022-07-12T15:40:39.000Z" - }, - "end": { - "$date": "2022-07-12T16:29:33.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "317a5fcd-7506-409f-9f7e-8c23c308da9a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-12T18:57:41.000Z" - }, - "end": { - "$date": "2022-07-12T19:28:40.000Z" - }, - "events": [ - { - "uuid": "d1f31ce0-e523-49d8-9fe7-9e23d61cc0ca", - "start": { - "$date": "2022-07-12T18:57:41.000Z" - }, - "end": { - "$date": "2022-07-12T19:28:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2a27b752-09f8-4102-a750-6689f8716129", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-12T20:03:57.000Z" - }, - "end": { - "$date": "2022-07-12T21:28:11.000Z" - }, - "events": [ - { - "uuid": "0e2bd2e6-35b1-422b-8839-fa918b572e08", - "start": { - "$date": "2022-07-12T20:03:57.000Z" - }, - "end": { - "$date": "2022-07-12T21:28:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "d5657978-fdd8-47eb-bf6c-f7ce56e3936e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-12T21:39:10.000Z" - }, - "end": { - "$date": "2022-07-12T23:05:15.000Z" - }, - "events": [ - { - "uuid": "1a31a42f-079e-4340-b765-a4962c2fd2d3", - "start": { - "$date": "2022-07-12T21:39:10.000Z" - }, - "end": { - "$date": "2022-07-12T23:05:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "18176c6a-5ee7-4e9f-82fd-b3c0073a6b69", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-12T22:25:34.000Z" - }, - "end": { - "$date": "2022-07-12T22:26:42.000Z" - }, - "events": [ - { - "uuid": "71c9b65b-a310-4a04-a530-f7e24036e5b9", - "start": { - "$date": "2022-07-12T22:25:34.000Z" - }, - "end": { - "$date": "2022-07-12T22:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "417e6772-9db9-47b8-b387-e66227bdc226", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-12T22:27:52.000Z" - }, - "end": { - "$date": "2022-07-12T22:33:04.000Z" - }, - "events": [ - { - "uuid": "c5b57352-36b1-4201-b8ba-f772b0c0ede6", - "start": { - "$date": "2022-07-12T22:27:52.000Z" - }, - "end": { - "$date": "2022-07-12T22:33:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "c2e30851-bdba-4e0e-8b28-d614d2f7a324", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T01:42:09.000Z" - }, - "end": { - "$date": "2022-07-13T01:59:59.000Z" - }, - "events": [ - { - "uuid": "b10d0112-f843-4d58-8111-916a27b93849", - "start": { - "$date": "2022-07-13T01:42:09.000Z" - }, - "end": { - "$date": "2022-07-13T01:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "c3272ca3-fce9-4507-9a93-ffd25fe1e3dd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T02:00:54.000Z" - }, - "end": { - "$date": "2022-07-13T02:02:14.000Z" - }, - "events": [ - { - "uuid": "0a173f2a-5dfb-49bc-b37b-7021eebd060b", - "start": { - "$date": "2022-07-13T02:00:54.000Z" - }, - "end": { - "$date": "2022-07-13T02:02:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "4632e1fc-df53-4241-aed8-e96645e0df1a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T02:02:29.000Z" - }, - "end": { - "$date": "2022-07-13T02:14:10.000Z" - }, - "events": [ - { - "uuid": "806b0799-c9c4-4816-8193-09171a84d254", - "start": { - "$date": "2022-07-13T02:02:29.000Z" - }, - "end": { - "$date": "2022-07-13T02:14:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "0d9ebfcd-dc7b-4c4c-a5b4-c6672e8adc34", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T02:15:15.000Z" - }, - "end": { - "$date": "2022-07-13T02:16:30.000Z" - }, - "events": [ - { - "uuid": "2eace910-e285-4aef-a4b3-9bffb8a896f1", - "start": { - "$date": "2022-07-13T02:15:15.000Z" - }, - "end": { - "$date": "2022-07-13T02:16:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "68b8e28d-c05f-43b0-80c7-af5dd8e5f953", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T02:26:36.000Z" - }, - "end": { - "$date": "2022-07-13T07:00:52.000Z" - }, - "events": [ - { - "uuid": "8af589c9-9ef4-4ef7-836c-9c7a5033a845", - "start": { - "$date": "2022-07-13T02:26:36.000Z" - }, - "end": { - "$date": "2022-07-13T07:00:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8aa43cb6-f2cd-4615-9024-8b433aad7298", - "uuid": "c41538d2-0203-462e-96be-4113c15fae93", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-13T02:46:13.000Z" - }, - "end": { - "$date": "2022-07-13T04:21:01.000Z" - }, - "events": [ - { - "uuid": "71354ca3-ea4a-4506-a615-bf7d5cfa8b6d", - "start": { - "$date": "2022-07-13T02:46:13.000Z" - }, - "end": { - "$date": "2022-07-13T03:26:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d7b9a79b-791b-4a66-a841-09144e6a4e57", - "start": { - "$date": "2022-07-13T03:26:13.000Z" - }, - "end": { - "$date": "2022-07-13T03:28:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5110627d-dcbb-475f-93a3-9ff9ede31061", - "start": { - "$date": "2022-07-13T03:28:13.000Z" - }, - "end": { - "$date": "2022-07-13T04:21:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "74f425e3-581a-42b4-9dd2-c1e824934fb1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-13T03:44:47.000Z" - }, - "end": { - "$date": "2022-07-13T04:27:01.000Z" - }, - "events": [ - { - "uuid": "b994795d-9652-4abf-8ca1-8188d85b442c", - "start": { - "$date": "2022-07-13T03:44:47.000Z" - }, - "end": { - "$date": "2022-07-13T04:27:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "2c1cc39a-b648-4659-b77f-78a44f57196e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-13T04:11:18.000Z" - }, - "end": { - "$date": "2022-07-13T06:24:45.000Z" - }, - "events": [ - { - "uuid": "f97c8e6d-8aeb-4f18-9b3a-6af7010e8c0d", - "start": { - "$date": "2022-07-13T04:11:18.000Z" - }, - "end": { - "$date": "2022-07-13T06:24:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "36ff681f-f825-42f4-bae6-d5ff7e6d191c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-13T04:25:46.000Z" - }, - "end": { - "$date": "2022-07-13T04:40:07.000Z" - }, - "events": [ - { - "uuid": "faee98bd-8f92-4c1e-8ffc-4b449e455182", - "start": { - "$date": "2022-07-13T04:25:46.000Z" - }, - "end": { - "$date": "2022-07-13T04:40:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1c0de08f-b525-40f3-93fe-3b2282bf236d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-13T04:32:43.000Z" - }, - "end": { - "$date": "2022-07-13T04:37:37.000Z" - }, - "events": [ - { - "uuid": "0fbf2156-b4d6-4ef1-834b-b6e787bcffc4", - "start": { - "$date": "2022-07-13T04:32:43.000Z" - }, - "end": { - "$date": "2022-07-13T04:37:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "50a696d1-dcdb-46f9-b22b-c3718bab02cf", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-13T04:38:08.000Z" - }, - "end": { - "$date": "2022-07-13T06:47:46.000Z" - }, - "events": [ - { - "uuid": "0500f7b3-5990-4649-ab6f-63b9701a7d7f", - "start": { - "$date": "2022-07-13T04:38:08.000Z" - }, - "end": { - "$date": "2022-07-13T06:47:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "d32955e3-c93f-433e-8ac1-73bc324cd500", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-13T05:00:21.000Z" - }, - "end": { - "$date": "2022-07-13T05:34:19.000Z" - }, - "events": [ - { - "uuid": "c7f77492-626c-4265-bbf0-3bd001e002c7", - "start": { - "$date": "2022-07-13T05:00:21.000Z" - }, - "end": { - "$date": "2022-07-13T05:34:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1099c680-a4ad-4993-b289-fe854b5bcd8a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-13T05:13:35.000Z" - }, - "end": { - "$date": "2022-07-13T06:43:19.000Z" - }, - "events": [ - { - "uuid": "3e37cc98-6066-456b-9c83-7240ef4e8b26", - "start": { - "$date": "2022-07-13T05:13:35.000Z" - }, - "end": { - "$date": "2022-07-13T06:43:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "9b49b635-4a76-451b-a251-31a1e1664712", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-13T06:42:11.000Z" - }, - "end": { - "$date": "2022-07-13T08:04:54.000Z" - }, - "events": [ - { - "uuid": "048dd4e2-9dd4-40fb-80a7-7a8caf479377", - "start": { - "$date": "2022-07-13T06:42:11.000Z" - }, - "end": { - "$date": "2022-07-13T08:04:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "93b7a4cf-67a8-43bf-afca-9c7626967fda", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-13T11:36:47.000Z" - }, - "end": { - "$date": "2022-07-13T13:06:43.000Z" - }, - "events": [ - { - "uuid": "b1b33de5-668c-46fd-b9ca-65add2f517b4", - "start": { - "$date": "2022-07-13T11:36:47.000Z" - }, - "end": { - "$date": "2022-07-13T13:06:43.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0e0b0420-1e30-4a5c-aeee-fc6e85c50dee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T17:08:09.000Z" - }, - "end": { - "$date": "2022-07-13T17:29:46.000Z" - }, - "events": [ - { - "uuid": "57e07a80-8f97-49f1-aa4a-cca073a9b30a", - "start": { - "$date": "2022-07-13T17:08:09.000Z" - }, - "end": { - "$date": "2022-07-13T17:29:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "b1f74e8e-0988-4900-a32c-739846969fbc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-13T18:41:29.000Z" - }, - "end": { - "$date": "2022-07-13T19:24:12.000Z" - }, - "events": [ - { - "uuid": "b510ab5b-8f02-4392-86a2-06748ef59275", - "start": { - "$date": "2022-07-13T18:41:29.000Z" - }, - "end": { - "$date": "2022-07-13T19:24:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "714a8a9c-9d62-48dd-b338-06000d7b824e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-13T18:45:23.000Z" - }, - "end": { - "$date": "2022-07-13T19:25:59.000Z" - }, - "events": [ - { - "uuid": "b4046dfa-cebd-4549-accc-d5a775dd84e3", - "start": { - "$date": "2022-07-13T18:45:23.000Z" - }, - "end": { - "$date": "2022-07-13T19:25:59.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "2ce1ac53-5c15-4e39-8df2-e2a494d7a41f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-13T18:49:38.000Z" - }, - "end": { - "$date": "2022-07-13T19:29:27.000Z" - }, - "events": [ - { - "uuid": "66ff9e38-76a3-49fb-8ff1-4b571d09c63b", - "start": { - "$date": "2022-07-13T18:49:38.000Z" - }, - "end": { - "$date": "2022-07-13T19:29:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "23f5b50b-2d8b-4b98-8af8-9ba8609a1cc9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-13T19:00:17.000Z" - }, - "end": { - "$date": "2022-07-13T19:20:48.000Z" - }, - "events": [ - { - "uuid": "26293f2b-ccdd-4cc9-a8eb-034d42255e20", - "start": { - "$date": "2022-07-13T19:00:17.000Z" - }, - "end": { - "$date": "2022-07-13T19:20:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d4913921-40e8-45aa-af09-c352b002aafa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-13T21:23:12.000Z" - }, - "end": { - "$date": "2022-07-13T21:55:50.000Z" - }, - "events": [ - { - "uuid": "343e3985-86a7-4b76-8c80-584aec928130", - "start": { - "$date": "2022-07-13T21:23:12.000Z" - }, - "end": { - "$date": "2022-07-13T21:55:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2d66a4e9-766b-48a2-bb90-3035c91f76e4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-13T21:43:14.000Z" - }, - "end": { - "$date": "2022-07-13T21:46:04.000Z" - }, - "events": [ - { - "uuid": "df1ac599-acb4-4462-9986-86688efa28ef", - "start": { - "$date": "2022-07-13T21:43:14.000Z" - }, - "end": { - "$date": "2022-07-13T21:46:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "438fe9cd-2e2d-4db0-8eae-42d24ef89262", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-13T21:46:19.000Z" - }, - "end": { - "$date": "2022-07-13T22:48:49.000Z" - }, - "events": [ - { - "uuid": "3d8b4d28-5caf-4505-8a80-993a4cfa6b04", - "start": { - "$date": "2022-07-13T21:46:19.000Z" - }, - "end": { - "$date": "2022-07-13T22:48:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "7f8bbb80-f791-4811-b959-d411c66606fe", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-13T22:37:41.000Z" - }, - "end": { - "$date": "2022-07-13T23:48:16.000Z" - }, - "events": [ - { - "uuid": "deac46b4-8d8c-4066-aa69-f3dc944d322e", - "start": { - "$date": "2022-07-13T22:37:41.000Z" - }, - "end": { - "$date": "2022-07-13T23:48:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "4d5fd5f1-0654-4d1d-85d3-dd81fee07080", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T00:19:32.000Z" - }, - "end": { - "$date": "2022-07-14T01:13:01.000Z" - }, - "events": [ - { - "uuid": "cf05cadd-57e3-40c7-9caa-dadf06bf5088", - "start": { - "$date": "2022-07-14T00:19:32.000Z" - }, - "end": { - "$date": "2022-07-14T01:13:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "8199d29c-73d5-41ba-a0ce-c023a29c74c8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T01:14:01.000Z" - }, - "end": { - "$date": "2022-07-14T01:23:02.000Z" - }, - "events": [ - { - "uuid": "21425e2f-804c-4b24-bfa7-cf450a8dce7c", - "start": { - "$date": "2022-07-14T01:14:01.000Z" - }, - "end": { - "$date": "2022-07-14T01:23:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "4a890421-69cb-4a7f-98f0-42ae07996aa3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T01:23:12.000Z" - }, - "end": { - "$date": "2022-07-14T02:36:23.000Z" - }, - "events": [ - { - "uuid": "1399d96c-8630-422b-88dd-83246d158015", - "start": { - "$date": "2022-07-14T01:23:12.000Z" - }, - "end": { - "$date": "2022-07-14T02:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "b19828a3-4ab5-4fe7-b8ce-712baf68e19e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-14T01:44:50.000Z" - }, - "end": { - "$date": "2022-07-14T04:01:59.000Z" - }, - "events": [ - { - "uuid": "c298a32e-1028-40a7-956c-00d4d0c09c21", - "start": { - "$date": "2022-07-14T01:44:50.000Z" - }, - "end": { - "$date": "2022-07-14T04:01:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "a6a8c9da-71b4-4ef6-a3cf-d566914a4b66", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-14T03:06:47.000Z" - }, - "end": { - "$date": "2022-07-14T03:31:44.000Z" - }, - "events": [ - { - "uuid": "9a44760e-37df-4421-bb3b-03e533450353", - "start": { - "$date": "2022-07-14T03:06:47.000Z" - }, - "end": { - "$date": "2022-07-14T03:31:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "37c73c1f-d912-440d-ba33-9e06f413913c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-14T03:11:29.000Z" - }, - "end": { - "$date": "2022-07-14T03:51:19.000Z" - }, - "events": [ - { - "uuid": "41c48caa-28e4-4248-9ad0-560db8eff70b", - "start": { - "$date": "2022-07-14T03:11:29.000Z" - }, - "end": { - "$date": "2022-07-14T03:51:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8abddea4-b75f-4c42-87ac-23c4372f437d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T03:27:14.000Z" - }, - "end": { - "$date": "2022-07-14T04:58:59.000Z" - }, - "events": [ - { - "uuid": "0e265a91-b619-4a31-8bfe-5dee0ef94a6f", - "start": { - "$date": "2022-07-14T03:27:14.000Z" - }, - "end": { - "$date": "2022-07-14T04:58:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "400bfc52-86f9-4bd3-a414-6a0b9c391b69", - "uuid": "4913666d-b69e-462d-837d-cf2a14f89acb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-14T04:07:35.000Z" - }, - "end": { - "$date": "2022-07-14T04:12:16.000Z" - }, - "events": [ - { - "uuid": "c7f5a89a-4a56-4846-847b-95aaded8a3dd", - "start": { - "$date": "2022-07-14T04:07:35.000Z" - }, - "end": { - "$date": "2022-07-14T04:12:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "uuid": "ecfe9d90-fe37-4747-be93-116c41bba585", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-14T04:12:46.000Z" - }, - "end": { - "$date": "2022-07-14T05:09:40.000Z" - }, - "events": [ - { - "uuid": "ef6cd4d0-9af2-4150-8c9c-1df471c4ac99", - "start": { - "$date": "2022-07-14T04:12:46.000Z" - }, - "end": { - "$date": "2022-07-14T05:09:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "00371edc-e4a7-44e3-85cc-b1a2f197000a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-14T04:17:59.000Z" - }, - "end": { - "$date": "2022-07-14T05:00:10.000Z" - }, - "events": [ - { - "uuid": "82df683d-8cd8-48f5-bb2f-8cac5994c5b5", - "start": { - "$date": "2022-07-14T04:17:59.000Z" - }, - "end": { - "$date": "2022-07-14T05:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "uuid": "1653f7ff-899b-4944-92bb-8acc5a31dea7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-14T04:33:24.000Z" - }, - "end": { - "$date": "2022-07-14T05:55:00.000Z" - }, - "events": [ - { - "uuid": "2a7baf5e-0445-4cf1-80a3-80e7dc7d1e71", - "start": { - "$date": "2022-07-14T04:33:24.000Z" - }, - "end": { - "$date": "2022-07-14T05:55:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "869c8bb4-50f2-4340-8839-c93ac66c3bab", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T04:59:19.000Z" - }, - "end": { - "$date": "2022-07-14T05:18:51.000Z" - }, - "events": [ - { - "uuid": "5c3a07c1-2d5f-4672-ad6b-e43f146d9b5e", - "start": { - "$date": "2022-07-14T04:59:19.000Z" - }, - "end": { - "$date": "2022-07-14T05:18:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e53e412-db41-4a0f-bc58-62cfb65797a4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T05:19:12.000Z" - }, - "end": { - "$date": "2022-07-14T05:52:50.000Z" - }, - "events": [ - { - "uuid": "1be30565-a4ea-4c0f-8290-53eebad6458c", - "start": { - "$date": "2022-07-14T05:19:12.000Z" - }, - "end": { - "$date": "2022-07-14T05:52:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d3ee0986-9558-402c-a66f-b0ac7ca77b46", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T05:19:06.000Z" - }, - "end": { - "$date": "2022-07-14T06:29:20.000Z" - }, - "events": [ - { - "uuid": "de6dea58-4608-447f-9a23-6fc67eaba5bf", - "start": { - "$date": "2022-07-14T05:19:06.000Z" - }, - "end": { - "$date": "2022-07-14T06:29:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "316b98a4-b01f-4ebf-8b8e-e0b2f8b2d884", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T05:53:55.000Z" - }, - "end": { - "$date": "2022-07-14T06:21:33.000Z" - }, - "events": [ - { - "uuid": "ace85f91-ab36-4874-af4e-dd9a326a4cfe", - "start": { - "$date": "2022-07-14T05:53:55.000Z" - }, - "end": { - "$date": "2022-07-14T06:21:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3525843f-cca0-497f-9836-20a1adf2ba30", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-14T06:08:02.000Z" - }, - "end": { - "$date": "2022-07-14T07:02:38.000Z" - }, - "events": [ - { - "uuid": "edbfe307-6c24-4080-a9af-c39c749e0443", - "start": { - "$date": "2022-07-14T06:08:02.000Z" - }, - "end": { - "$date": "2022-07-14T07:02:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "3f639536-6b2a-4676-910e-7bc988489f1d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-14T06:09:08.000Z" - }, - "end": { - "$date": "2022-07-14T07:02:52.000Z" - }, - "events": [ - { - "uuid": "11e3c34c-ba20-4ec1-8610-993e5de57ebb", - "start": { - "$date": "2022-07-14T06:09:08.000Z" - }, - "end": { - "$date": "2022-07-14T07:02:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3acc6916-8b7f-43c2-a256-4cdd12dcec78", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T06:22:43.000Z" - }, - "end": { - "$date": "2022-07-14T06:59:41.000Z" - }, - "events": [ - { - "uuid": "b299f0e7-6ba5-43ae-89a9-475cf4c4a79e", - "start": { - "$date": "2022-07-14T06:22:43.000Z" - }, - "end": { - "$date": "2022-07-14T06:59:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "8512560a-74c3-402c-a82d-7e3b003e8e8f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T06:37:15.000Z" - }, - "end": { - "$date": "2022-07-14T06:48:06.000Z" - }, - "events": [ - { - "uuid": "542f88ee-987d-41e3-b67a-133c49ecf83b", - "start": { - "$date": "2022-07-14T06:37:15.000Z" - }, - "end": { - "$date": "2022-07-14T06:48:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "5fa925d0-70f8-4fb4-a2c1-6551869b382e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T06:48:40.000Z" - }, - "end": { - "$date": "2022-07-14T07:18:41.000Z" - }, - "events": [ - { - "uuid": "303db13c-40e3-4941-b6bb-283e3d6406b9", - "start": { - "$date": "2022-07-14T06:48:40.000Z" - }, - "end": { - "$date": "2022-07-14T07:18:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e90b313e-0de6-4ae9-b3c6-b7bcbf48483c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T07:01:03.000Z" - }, - "end": { - "$date": "2022-07-14T07:31:46.000Z" - }, - "events": [ - { - "uuid": "5d350e55-5532-426b-a8c1-7694df5b4e93", - "start": { - "$date": "2022-07-14T07:01:03.000Z" - }, - "end": { - "$date": "2022-07-14T07:31:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e16955df-2d56-46c2-85fe-c0d3e4c6b16c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T07:33:27.000Z" - }, - "end": { - "$date": "2022-07-14T08:07:30.000Z" - }, - "events": [ - { - "uuid": "55427203-eb54-433a-b3af-f12ed0a50025", - "start": { - "$date": "2022-07-14T07:33:27.000Z" - }, - "end": { - "$date": "2022-07-14T08:07:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d14be324-48c1-43f6-81ca-8f5c73be6188", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-14T20:16:18.000Z" - }, - "end": { - "$date": "2022-07-14T20:29:48.000Z" - }, - "events": [ - { - "uuid": "2e635139-c1e3-464a-a785-6cd6610d2506", - "start": { - "$date": "2022-07-14T20:16:18.000Z" - }, - "end": { - "$date": "2022-07-14T20:29:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "13c72825-f70e-44c8-9c8a-11ef807ae968", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-14T22:05:34.000Z" - }, - "end": { - "$date": "2022-07-14T22:42:20.000Z" - }, - "events": [ - { - "uuid": "da082fef-6f82-480b-afa7-20f1f5561d40", - "start": { - "$date": "2022-07-14T22:05:34.000Z" - }, - "end": { - "$date": "2022-07-14T22:42:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9613cc15-f79b-4e39-93d7-c059cd84e33e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-14T22:06:30.000Z" - }, - "end": { - "$date": "2022-07-14T22:11:14.000Z" - }, - "events": [ - { - "uuid": "8c1be38d-53e8-4265-a07e-010d0f3d8c5e", - "start": { - "$date": "2022-07-14T22:06:30.000Z" - }, - "end": { - "$date": "2022-07-14T22:11:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "f5b5121f-8ead-4d0f-8c28-87cddb000f56", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-14T22:16:27.000Z" - }, - "end": { - "$date": "2022-07-14T22:21:35.000Z" - }, - "events": [ - { - "uuid": "c388ec4b-7e4d-4d04-92c3-ac3aef80b4fb", - "start": { - "$date": "2022-07-14T22:16:27.000Z" - }, - "end": { - "$date": "2022-07-14T22:21:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9725835e-cfc2-4de2-a021-b9cb282775e9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-14T22:17:36.000Z" - }, - "end": { - "$date": "2022-07-14T23:07:45.000Z" - }, - "events": [ - { - "uuid": "ad8be5cd-1e91-4047-8761-ae41caf9c249", - "start": { - "$date": "2022-07-14T22:17:36.000Z" - }, - "end": { - "$date": "2022-07-14T23:07:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "b5c0ebc3-fcb3-47e8-831b-f9460cadc71c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-14T22:22:38.000Z" - }, - "end": { - "$date": "2022-07-15T04:45:37.000Z" - }, - "events": [ - { - "uuid": "2345eeca-5272-4218-be94-e96e921a16e6", - "start": { - "$date": "2022-07-14T22:22:38.000Z" - }, - "end": { - "$date": "2022-07-15T01:07:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ddb53cb6-e04e-4785-b60d-eb314b84df05", - "start": { - "$date": "2022-07-15T01:07:38.000Z" - }, - "end": { - "$date": "2022-07-15T01:11:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b3ef564f-69dc-483b-8925-b66cb0bcd7dd", - "start": { - "$date": "2022-07-15T01:11:38.000Z" - }, - "end": { - "$date": "2022-07-15T01:16:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d8de9f28-d2cb-4a70-bc37-57bd8583a006", - "start": { - "$date": "2022-07-15T01:16:38.000Z" - }, - "end": { - "$date": "2022-07-15T01:59:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "13048647-372f-4976-8ec4-ec40fb6a6e7a", - "start": { - "$date": "2022-07-15T01:59:38.000Z" - }, - "end": { - "$date": "2022-07-15T04:45:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "944c38e2-04d1-4919-954f-307c8e1c14de", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-14T22:42:45.000Z" - }, - "end": { - "$date": "2022-07-15T03:03:03.000Z" - }, - "events": [ - { - "uuid": "5ee2598f-85c1-4002-8a8d-0b31ca63b457", - "start": { - "$date": "2022-07-14T22:42:45.000Z" - }, - "end": { - "$date": "2022-07-15T03:03:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "321f7008-beba-4180-a577-14286d375e19", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T22:55:05.000Z" - }, - "end": { - "$date": "2022-07-14T23:15:38.000Z" - }, - "events": [ - { - "uuid": "41bce735-a788-4656-ac8a-0d100e268cfd", - "start": { - "$date": "2022-07-14T22:55:05.000Z" - }, - "end": { - "$date": "2022-07-14T23:15:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "272e20df-3550-48d0-9d8e-6268afd16b0c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-14T23:45:37.000Z" - }, - "end": { - "$date": "2022-07-15T00:21:14.000Z" - }, - "events": [ - { - "uuid": "ccd31881-ddfe-43c3-bcda-0fc2e34aa402", - "start": { - "$date": "2022-07-14T23:45:37.000Z" - }, - "end": { - "$date": "2022-07-15T00:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9618fd23-4003-4ac5-bd26-502b3e52027b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-15T00:09:21.000Z" - }, - "end": { - "$date": "2022-07-15T01:09:19.000Z" - }, - "events": [ - { - "uuid": "d5da186e-5879-4686-9d81-ee75036957d5", - "start": { - "$date": "2022-07-15T00:09:21.000Z" - }, - "end": { - "$date": "2022-07-15T01:09:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "92253803-c231-4bb1-b863-118e73ff0c0b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-15T00:22:40.000Z" - }, - "end": { - "$date": "2022-07-15T01:01:04.000Z" - }, - "events": [ - { - "uuid": "3de82236-2365-45e6-932b-775239d8c349", - "start": { - "$date": "2022-07-15T00:22:40.000Z" - }, - "end": { - "$date": "2022-07-15T01:01:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8aa43cb6-f2cd-4615-9024-8b433aad7298", - "uuid": "52dae9a7-11fa-4336-aafd-5b18266772e2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-15T01:03:27.000Z" - }, - "end": { - "$date": "2022-07-15T02:01:23.000Z" - }, - "events": [ - { - "uuid": "81128970-42b2-4d01-826e-394b1050427d", - "start": { - "$date": "2022-07-15T01:03:27.000Z" - }, - "end": { - "$date": "2022-07-15T02:01:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "cc881936-75ba-4b9c-9dbf-3551da84860a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-15T01:09:34.000Z" - }, - "end": { - "$date": "2022-07-15T01:17:09.000Z" - }, - "events": [ - { - "uuid": "a9c63c7b-adb5-43eb-8d8b-b0a4c6db1574", - "start": { - "$date": "2022-07-15T01:09:34.000Z" - }, - "end": { - "$date": "2022-07-15T01:17:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "cd9c6102-3b7b-48a3-bcf2-b0e5146b68fe", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-15T01:17:05.000Z" - }, - "end": { - "$date": "2022-07-15T01:26:27.000Z" - }, - "events": [ - { - "uuid": "9a1467ce-dc73-4de5-a1fb-f282b3f20f80", - "start": { - "$date": "2022-07-15T01:17:05.000Z" - }, - "end": { - "$date": "2022-07-15T01:26:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "f8b21502-1145-4fea-88f6-a1290cee40f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-15T01:21:50.000Z" - }, - "end": { - "$date": "2022-07-15T02:34:47.000Z" - }, - "events": [ - { - "uuid": "be1e504e-4bff-4c3c-989d-872c19fea853", - "start": { - "$date": "2022-07-15T01:21:50.000Z" - }, - "end": { - "$date": "2022-07-15T02:34:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6503da3a-5b0c-470c-ab57-71b0939356ef", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-15T01:24:07.000Z" - }, - "end": { - "$date": "2022-07-15T03:02:58.000Z" - }, - "events": [ - { - "uuid": "ff7cbc68-18e1-4931-b809-eb2e51d691b4", - "start": { - "$date": "2022-07-15T01:24:07.000Z" - }, - "end": { - "$date": "2022-07-15T03:02:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "uuid": "69395e64-99d6-41c0-b162-4d36e90f4312", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T01:30:21.000Z" - }, - "end": { - "$date": "2022-07-15T01:49:05.000Z" - }, - "events": [ - { - "uuid": "023b01a0-a82e-4189-afb7-51eb547330b5", - "start": { - "$date": "2022-07-15T01:30:21.000Z" - }, - "end": { - "$date": "2022-07-15T01:49:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "b39bdcd1-7f3c-4ccd-876c-a5fa1b5f9fd6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-15T01:31:02.000Z" - }, - "end": { - "$date": "2022-07-15T02:33:49.000Z" - }, - "events": [ - { - "uuid": "e3ddbf78-b19c-478b-9cb4-4ca5c467b848", - "start": { - "$date": "2022-07-15T01:31:02.000Z" - }, - "end": { - "$date": "2022-07-15T02:33:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e1b33ac3-a805-494e-9af8-98dad890b5c5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-15T03:04:57.000Z" - }, - "end": { - "$date": "2022-07-15T03:05:01.000Z" - }, - "events": [ - { - "uuid": "273fb23d-07c2-4c41-bfa8-23cdac06fef3", - "start": { - "$date": "2022-07-15T03:04:57.000Z" - }, - "end": { - "$date": "2022-07-15T03:05:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b739e56d-aefd-4932-820a-3b119a296c37", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-15T02:51:26.000Z" - }, - "end": { - "$date": "2022-07-15T03:58:54.000Z" - }, - "events": [ - { - "uuid": "2e02c5df-2e6c-4fc1-8303-fe371f0e209b", - "start": { - "$date": "2022-07-15T02:51:26.000Z" - }, - "end": { - "$date": "2022-07-15T03:45:26.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e22764f-bb26-48aa-b260-c84de813bf36", - "start": { - "$date": "2022-07-15T03:45:26.000Z" - }, - "end": { - "$date": "2022-07-15T03:50:26.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e1c08ffe-4e57-4426-8cc9-4dad0b6a3ba6", - "start": { - "$date": "2022-07-15T03:50:26.000Z" - }, - "end": { - "$date": "2022-07-15T03:58:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a8325c01-9254-424c-a18c-1254eed8fac3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-15T03:05:12.000Z" - }, - "end": { - "$date": "2022-07-15T06:14:05.000Z" - }, - "events": [ - { - "uuid": "d697f97e-6962-4e6f-8094-e9c1b2042642", - "start": { - "$date": "2022-07-15T03:05:12.000Z" - }, - "end": { - "$date": "2022-07-15T06:14:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "509466cb-db63-4d2d-a1b7-2ce70e8dbb06", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-15T03:19:22.000Z" - }, - "end": { - "$date": "2022-07-15T04:13:05.000Z" - }, - "events": [ - { - "uuid": "733cce18-867d-42ed-96ea-c0c3f9333c97", - "start": { - "$date": "2022-07-15T03:19:22.000Z" - }, - "end": { - "$date": "2022-07-15T04:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b9e29216-e1b6-4a82-8ab7-6b4107483b14", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-15T03:23:59.000Z" - }, - "end": { - "$date": "2022-07-15T03:59:54.000Z" - }, - "events": [ - { - "uuid": "d3eb7bfc-ddd1-4d6e-a4ce-b376eb9f7b74", - "start": { - "$date": "2022-07-15T03:23:59.000Z" - }, - "end": { - "$date": "2022-07-15T03:59:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "fae0bb30-4e0c-49a8-b323-80b02bb9a14f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-15T03:24:50.000Z" - }, - "end": { - "$date": "2022-07-15T03:59:21.000Z" - }, - "events": [ - { - "uuid": "78548914-b728-4820-a61c-44fa34e28020", - "start": { - "$date": "2022-07-15T03:24:50.000Z" - }, - "end": { - "$date": "2022-07-15T03:59:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "32393811-3975-4c11-a2a2-8432608b6707", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-15T03:25:47.000Z" - }, - "end": { - "$date": "2022-07-15T04:00:51.000Z" - }, - "events": [ - { - "uuid": "d40ba8f1-1a81-4a19-99a1-b2f2fb80a8bb", - "start": { - "$date": "2022-07-15T03:25:47.000Z" - }, - "end": { - "$date": "2022-07-15T04:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "ed1f29a5-8e61-4f0f-b589-22be6c57f19c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-15T03:59:58.000Z" - }, - "end": { - "$date": "2022-07-15T04:00:04.000Z" - }, - "events": [ - { - "uuid": "193f10eb-4a39-418d-abdf-ed10d7bfb8d0", - "start": { - "$date": "2022-07-15T03:59:58.000Z" - }, - "end": { - "$date": "2022-07-15T04:00:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2c2f90bb-cf80-4e42-8469-b36c903d6c03", - "uuid": "fb5f95c4-774c-427d-b5ea-10a01357543f", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-15T04:07:09.000Z" - }, - "end": { - "$date": "2022-07-15T04:07:20.000Z" - }, - "events": [ - { - "uuid": "d51e8520-eae5-4df7-b71a-1e7e806b2005", - "start": { - "$date": "2022-07-15T04:07:09.000Z" - }, - "end": { - "$date": "2022-07-15T04:07:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "270a4f67-a5c6-47d5-8e94-f122c326f053", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T04:19:21.000Z" - }, - "end": { - "$date": "2022-07-15T05:54:55.000Z" - }, - "events": [ - { - "uuid": "138dd8cf-a690-488e-af01-785494ca5aad", - "start": { - "$date": "2022-07-15T04:19:21.000Z" - }, - "end": { - "$date": "2022-07-15T05:54:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "36325d30-df18-4cc9-8308-0ffb446028af", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-15T04:21:43.000Z" - }, - "end": { - "$date": "2022-07-15T07:07:42.000Z" - }, - "events": [ - { - "uuid": "bb70c149-bf26-4884-80d8-f7fce98d37af", - "start": { - "$date": "2022-07-15T04:21:43.000Z" - }, - "end": { - "$date": "2022-07-15T07:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "89c24eb5-55d8-4520-86bc-6c2a92d563e1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-15T04:46:51.000Z" - }, - "end": { - "$date": "2022-07-15T07:19:57.000Z" - }, - "events": [ - { - "uuid": "40e7f55b-6a7a-4545-95e2-3015b4bcf957", - "start": { - "$date": "2022-07-15T04:46:51.000Z" - }, - "end": { - "$date": "2022-07-15T07:19:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "40a1bc39-efdc-465e-b351-9321d6f42900", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-15T05:17:54.000Z" - }, - "end": { - "$date": "2022-07-15T06:17:01.000Z" - }, - "events": [ - { - "uuid": "e0375aad-27a2-4fbe-a627-f2a38be0bbe2", - "start": { - "$date": "2022-07-15T05:17:54.000Z" - }, - "end": { - "$date": "2022-07-15T06:17:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "c6c2db41-a9bd-4e9c-bd10-d9df1fe8f9ff", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-15T11:06:06.000Z" - }, - "end": { - "$date": "2022-07-15T11:46:46.000Z" - }, - "events": [ - { - "uuid": "6dc7b318-64d7-42b4-b1e2-7486d5b03710", - "start": { - "$date": "2022-07-15T11:06:06.000Z" - }, - "end": { - "$date": "2022-07-15T11:46:46.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "e5e7632c-8101-44bc-8140-96b51a5a823e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-15T13:46:48.000Z" - }, - "end": { - "$date": "2022-07-15T16:29:48.000Z" - }, - "events": [ - { - "uuid": "f7f6c2a2-71c1-4da7-8420-ad1026d74a66", - "start": { - "$date": "2022-07-15T13:46:48.000Z" - }, - "end": { - "$date": "2022-07-15T16:29:48.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ac2a02a2-7285-4da0-ad6a-719cf8556115", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T14:53:38.000Z" - }, - "end": { - "$date": "2022-07-15T14:54:52.000Z" - }, - "events": [ - { - "uuid": "4d556e41-2216-4100-a18c-8940d0809af4", - "start": { - "$date": "2022-07-15T14:53:38.000Z" - }, - "end": { - "$date": "2022-07-15T14:54:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "dcdb88be-3ad9-4248-af46-ed38cfc3cccd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T17:11:12.000Z" - }, - "end": { - "$date": "2022-07-15T17:30:13.000Z" - }, - "events": [ - { - "uuid": "b4307fa8-5990-4953-86f6-d99d2f4c0c47", - "start": { - "$date": "2022-07-15T17:11:12.000Z" - }, - "end": { - "$date": "2022-07-15T17:30:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "dd5b8061-f673-4d8d-992d-6b4e87b0b309", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-15T19:10:16.000Z" - }, - "end": { - "$date": "2022-07-15T19:21:27.000Z" - }, - "events": [ - { - "uuid": "c19a0bce-2b61-4935-832e-dd1ff64fc9c8", - "start": { - "$date": "2022-07-15T19:10:16.000Z" - }, - "end": { - "$date": "2022-07-15T19:21:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "7b72edc3-501d-444f-86a9-66d1b2dcb015", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-15T19:29:22.000Z" - }, - "end": { - "$date": "2022-07-15T20:13:11.000Z" - }, - "events": [ - { - "uuid": "45559d77-c7d2-4c6c-a792-8c60fce3e28a", - "start": { - "$date": "2022-07-15T19:29:22.000Z" - }, - "end": { - "$date": "2022-07-15T20:13:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "471f7c68-b4a9-482a-ad49-261120e80878", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-15T21:01:58.000Z" - }, - "end": { - "$date": "2022-07-15T21:12:18.000Z" - }, - "events": [ - { - "uuid": "91fbd760-e767-4082-93c5-76b9a7726fc0", - "start": { - "$date": "2022-07-15T21:01:58.000Z" - }, - "end": { - "$date": "2022-07-15T21:12:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "567e264a-4e57-413e-8cbe-e98df4a2eca0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T21:55:28.000Z" - }, - "end": { - "$date": "2022-07-15T21:58:07.000Z" - }, - "events": [ - { - "uuid": "64cebdbb-fe20-4f71-8cd9-66d993938fa2", - "start": { - "$date": "2022-07-15T21:55:28.000Z" - }, - "end": { - "$date": "2022-07-15T21:58:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "49963080-89bd-48ba-a754-fe337f89a997", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T22:03:13.000Z" - }, - "end": { - "$date": "2022-07-15T22:46:35.000Z" - }, - "events": [ - { - "uuid": "82975cff-01c3-4307-af4c-d61bc3787852", - "start": { - "$date": "2022-07-15T22:03:13.000Z" - }, - "end": { - "$date": "2022-07-15T22:46:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "1f521ee9-676b-48ef-95fd-8b69aa475a8e", - "uuid": "d44bd1bc-197a-43f1-811b-0b76d0fa329d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-15T23:39:58.000Z" - }, - "end": { - "$date": "2022-07-15T23:59:47.000Z" - }, - "events": [ - { - "uuid": "c8d18852-b9d7-43c5-ad38-45896b717ffc", - "start": { - "$date": "2022-07-15T23:39:58.000Z" - }, - "end": { - "$date": "2022-07-15T23:59:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a03c577b-013d-44ac-be55-616037f91b8d", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-16T01:00:38.000Z" - }, - "end": { - "$date": "2022-07-16T06:40:40.000Z" - }, - "events": [ - { - "uuid": "fc442538-cedb-48f1-8bc3-0a613d122571", - "start": { - "$date": "2022-07-16T01:00:38.000Z" - }, - "end": { - "$date": "2022-07-16T06:40:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "96e952bd-1f97-456f-baf2-b6b74fead6f2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T00:25:27.000Z" - }, - "end": { - "$date": "2022-07-16T06:42:11.000Z" - }, - "events": [ - { - "uuid": "22d1e9ac-2bff-48d8-8dd6-795d08e84f3c", - "start": { - "$date": "2022-07-16T00:25:27.000Z" - }, - "end": { - "$date": "2022-07-16T06:42:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c0f955c7-0da1-46ca-90c6-e46b57558788", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-16T01:42:07.000Z" - }, - "end": { - "$date": "2022-07-16T01:47:34.000Z" - }, - "events": [ - { - "uuid": "48c0dcc4-9335-4af8-9d83-67241ccac628", - "start": { - "$date": "2022-07-16T01:42:07.000Z" - }, - "end": { - "$date": "2022-07-16T01:47:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "bb2f220d-a75f-452b-ae2b-77fd5f223e9b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-16T01:54:09.000Z" - }, - "end": { - "$date": "2022-07-16T08:43:16.000Z" - }, - "events": [ - { - "uuid": "4a342e53-be1a-42cd-8241-a0cd76fe8595", - "start": { - "$date": "2022-07-16T01:54:09.000Z" - }, - "end": { - "$date": "2022-07-16T08:43:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "05bce7ae-f7e3-4c17-9850-a31893639eec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-16T02:55:37.000Z" - }, - "end": { - "$date": "2022-07-16T02:55:53.000Z" - }, - "events": [ - { - "uuid": "3413e034-a072-4ff3-9182-c484df5dcf59", - "start": { - "$date": "2022-07-16T02:55:37.000Z" - }, - "end": { - "$date": "2022-07-16T02:55:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2432ffe1-adee-4983-83d4-b60eedf0119a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-16T03:01:46.000Z" - }, - "end": { - "$date": "2022-07-16T05:20:17.000Z" - }, - "events": [ - { - "uuid": "30b14f26-cf8d-4608-a160-8f7a1156b228", - "start": { - "$date": "2022-07-16T03:01:46.000Z" - }, - "end": { - "$date": "2022-07-16T05:20:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "bb0bbddc-c618-46da-8d33-8af71b1db788", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-16T03:01:46.000Z" - }, - "end": { - "$date": "2022-07-16T03:10:52.000Z" - }, - "events": [ - { - "uuid": "70a5d3e4-cfdb-4ce4-b763-3e62653f3940", - "start": { - "$date": "2022-07-16T03:01:46.000Z" - }, - "end": { - "$date": "2022-07-16T03:10:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "294ff9ba-fc8f-43c2-85b5-4f09efa24e84", - "uuid": "d27c695e-d687-4cf2-abe8-2cf2d17bcc98", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-16T03:12:57.000Z" - }, - "end": { - "$date": "2022-07-16T03:51:35.000Z" - }, - "events": [ - { - "uuid": "edf34a6e-ca7d-464b-ade0-4e64fa5442c7", - "start": { - "$date": "2022-07-16T03:12:57.000Z" - }, - "end": { - "$date": "2022-07-16T03:51:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "uuid": "ecfdac87-201a-4345-87b8-2baefe8e109a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-16T04:37:47.000Z" - }, - "end": { - "$date": "2022-07-16T04:42:27.000Z" - }, - "events": [ - { - "uuid": "713692ec-5a80-4fee-9f41-3135c1e68b34", - "start": { - "$date": "2022-07-16T04:37:47.000Z" - }, - "end": { - "$date": "2022-07-16T04:42:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "uuid": "a2ed5081-c58a-4ed3-88c2-c04177c93eda", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-16T04:43:03.000Z" - }, - "end": { - "$date": "2022-07-16T04:46:42.000Z" - }, - "events": [ - { - "uuid": "c9d1de9e-4ab9-4237-aa75-0adff7eb8ee7", - "start": { - "$date": "2022-07-16T04:43:03.000Z" - }, - "end": { - "$date": "2022-07-16T04:46:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "uuid": "b2eafbe5-1127-471d-9d33-035fdd45bc50", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-16T04:47:58.000Z" - }, - "end": { - "$date": "2022-07-16T04:49:53.000Z" - }, - "events": [ - { - "uuid": "558dbd89-a774-4ba7-9cb1-55d8aea812d6", - "start": { - "$date": "2022-07-16T04:47:58.000Z" - }, - "end": { - "$date": "2022-07-16T04:49:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "uuid": "7b736851-fc7f-409c-a3e3-d7a90bf4f184", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-16T04:49:58.000Z" - }, - "end": { - "$date": "2022-07-16T04:55:43.000Z" - }, - "events": [ - { - "uuid": "6852e3e0-ab0b-4cb2-8775-1096d275133a", - "start": { - "$date": "2022-07-16T04:49:58.000Z" - }, - "end": { - "$date": "2022-07-16T04:55:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "uuid": "a91c43e6-87d8-45bb-8f52-fa5a0ac46e33", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-16T04:56:14.000Z" - }, - "end": { - "$date": "2022-07-16T05:35:45.000Z" - }, - "events": [ - { - "uuid": "b139f9e7-302e-4e55-9590-edc235ec6877", - "start": { - "$date": "2022-07-16T04:56:14.000Z" - }, - "end": { - "$date": "2022-07-16T05:35:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7a88c2fa-ea27-46a5-8b6f-8fddb70e45f9", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-16T05:26:49.000Z" - }, - "end": { - "$date": "2022-07-16T05:34:33.000Z" - }, - "events": [ - { - "uuid": "39455c20-3b16-4e8d-a37b-22b9ba2b34cf", - "start": { - "$date": "2022-07-16T05:26:49.000Z" - }, - "end": { - "$date": "2022-07-16T05:34:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "eb9bc2bb-cc8e-4aa9-9ad2-ddfa59e3d234", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-16T05:34:39.000Z" - }, - "end": { - "$date": "2022-07-16T05:51:55.000Z" - }, - "events": [ - { - "uuid": "cd5cf7ed-4210-41ea-a44a-97d2df0ddbd2", - "start": { - "$date": "2022-07-16T05:34:39.000Z" - }, - "end": { - "$date": "2022-07-16T05:51:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "bd4439d9-3c18-484b-953e-5472c1e22f7c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T06:55:43.000Z" - }, - "end": { - "$date": "2022-07-16T07:02:12.000Z" - }, - "events": [ - { - "uuid": "6d5e742f-219b-4bb8-88e5-07b8883212a7", - "start": { - "$date": "2022-07-16T06:55:43.000Z" - }, - "end": { - "$date": "2022-07-16T07:02:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "49dcc3a3-a6f5-4b71-86aa-9279e4d8952b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T07:03:58.000Z" - }, - "end": { - "$date": "2022-07-16T07:04:58.000Z" - }, - "events": [ - { - "uuid": "bcc869ff-d700-4c98-a74c-ad4a465ab14c", - "start": { - "$date": "2022-07-16T07:03:58.000Z" - }, - "end": { - "$date": "2022-07-16T07:04:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "6e67f1fe-6abd-465e-9f76-ebae37783826", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T07:05:39.000Z" - }, - "end": { - "$date": "2022-07-16T07:46:49.000Z" - }, - "events": [ - { - "uuid": "edca3fc9-d27d-4177-9964-7e21bb051a4b", - "start": { - "$date": "2022-07-16T07:05:39.000Z" - }, - "end": { - "$date": "2022-07-16T07:46:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "9f3f0fd5-112d-4dff-8647-ec1941999105", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T07:48:55.000Z" - }, - "end": { - "$date": "2022-07-16T09:05:55.000Z" - }, - "events": [ - { - "uuid": "50d17d7e-9526-41c3-91a1-50f87f48f24f", - "start": { - "$date": "2022-07-16T07:48:55.000Z" - }, - "end": { - "$date": "2022-07-16T08:02:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ea2ceb9e-35a0-44c1-b598-2dccdc49801d", - "start": { - "$date": "2022-07-16T08:02:55.000Z" - }, - "end": { - "$date": "2022-07-16T08:14:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7c1f309b-b6b2-40cf-a3bb-ae18a34f255e", - "start": { - "$date": "2022-07-16T08:14:55.000Z" - }, - "end": { - "$date": "2022-07-16T08:17:55.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c3293a7c-5557-4ed7-b0a2-d98acc48d84f", - "start": { - "$date": "2022-07-16T08:17:55.000Z" - }, - "end": { - "$date": "2022-07-16T08:49:55.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "07a05188-b137-4db8-b0f1-754ae2335ef1", - "start": { - "$date": "2022-07-16T08:49:55.000Z" - }, - "end": { - "$date": "2022-07-16T09:05:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "2525bbc9-e8e4-4d21-8b24-82297f24ff90", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-16T14:35:15.000Z" - }, - "end": { - "$date": "2022-07-16T15:31:06.000Z" - }, - "events": [ - { - "uuid": "f31b458a-3154-4b32-834f-0f553dfdbd0b", - "start": { - "$date": "2022-07-16T14:35:15.000Z" - }, - "end": { - "$date": "2022-07-16T15:31:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "0fdfdf57-0438-4fc4-9e32-ba3aead1039b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-16T15:51:38.000Z" - }, - "end": { - "$date": "2022-07-16T15:58:33.000Z" - }, - "events": [ - { - "uuid": "c5e8258c-9117-4520-9fce-0a44792bd372", - "start": { - "$date": "2022-07-16T15:51:38.000Z" - }, - "end": { - "$date": "2022-07-16T15:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "493aa0e6-5613-4bc4-b18d-e79d6d9f87a9", - "uuid": "3c24d14f-e28e-468e-9911-3c5aaa4fc254", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-16T16:02:13.000Z" - }, - "end": { - "$date": "2022-07-16T16:41:21.000Z" - }, - "events": [ - { - "uuid": "8df40ec9-1289-4689-86a5-c83f47aa45a4", - "start": { - "$date": "2022-07-16T16:02:13.000Z" - }, - "end": { - "$date": "2022-07-16T16:41:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a6ffd751-0f0b-470f-8160-0f760d6847e3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-16T16:34:28.000Z" - }, - "end": { - "$date": "2022-07-16T17:13:40.000Z" - }, - "events": [ - { - "uuid": "34c6675b-ea2c-465e-9a79-22ee375cfa86", - "start": { - "$date": "2022-07-16T16:34:28.000Z" - }, - "end": { - "$date": "2022-07-16T17:13:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "482f3a66-14e7-4ab3-b2aa-e15f0dce0328", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-16T18:02:01.000Z" - }, - "end": { - "$date": "2022-07-16T19:20:18.000Z" - }, - "events": [ - { - "uuid": "0310a1b9-cba5-434a-84b2-9c926e47154f", - "start": { - "$date": "2022-07-16T18:02:01.000Z" - }, - "end": { - "$date": "2022-07-16T19:20:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a414d1b6-08ca-4fd4-9b2c-8f56243b620d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-16T18:16:27.000Z" - }, - "end": { - "$date": "2022-07-16T20:30:35.000Z" - }, - "events": [ - { - "uuid": "323b6e13-078f-45c0-b0c2-ecdff08f9841", - "start": { - "$date": "2022-07-16T18:16:27.000Z" - }, - "end": { - "$date": "2022-07-16T20:10:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e4d4629-8375-4d38-8db0-a484f5509ec0", - "start": { - "$date": "2022-07-16T20:10:27.000Z" - }, - "end": { - "$date": "2022-07-16T20:15:27.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9d3857ba-b92a-40bd-b5cb-ee4263939e21", - "start": { - "$date": "2022-07-16T20:15:27.000Z" - }, - "end": { - "$date": "2022-07-16T20:25:27.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "475207df-4d2b-4d16-b1f5-342647faa6d1", - "start": { - "$date": "2022-07-16T20:25:27.000Z" - }, - "end": { - "$date": "2022-07-16T20:30:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "8a7f22ae-27dc-488e-889a-526fa387c961", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-16T18:51:12.000Z" - }, - "end": { - "$date": "2022-07-16T20:18:27.000Z" - }, - "events": [ - { - "uuid": "ae926913-33fc-40e4-87b1-6bed10b55259", - "start": { - "$date": "2022-07-16T18:51:12.000Z" - }, - "end": { - "$date": "2022-07-16T20:18:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "da07ab0a-e67a-45e3-b7ad-f3c7a8c60485", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-16T19:29:57.000Z" - }, - "end": { - "$date": "2022-07-16T21:05:42.000Z" - }, - "events": [ - { - "uuid": "e267ea62-1eaf-4868-9063-b1931599b5d1", - "start": { - "$date": "2022-07-16T19:29:57.000Z" - }, - "end": { - "$date": "2022-07-16T21:05:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "725c9a51-4e99-4738-89a1-c048d2838371", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-16T19:46:23.000Z" - }, - "end": { - "$date": "2022-07-16T21:57:16.000Z" - }, - "events": [ - { - "uuid": "b7cef112-341a-4e3d-be38-368cbea687ec", - "start": { - "$date": "2022-07-16T19:46:23.000Z" - }, - "end": { - "$date": "2022-07-16T21:57:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "3b88a13d-0d58-4450-852f-afe7d322bf35", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T22:32:36.000Z" - }, - "end": { - "$date": "2022-07-16T22:44:31.000Z" - }, - "events": [ - { - "uuid": "a83ef44c-0361-41d6-b78b-9b31969085bf", - "start": { - "$date": "2022-07-16T22:32:36.000Z" - }, - "end": { - "$date": "2022-07-16T22:44:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "ee3a040d-f9cf-4beb-8165-d38ad7a3b94f", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-16T22:44:37.000Z" - }, - "end": { - "$date": "2022-07-17T00:26:53.000Z" - }, - "events": [ - { - "uuid": "c71f4dc6-5c0e-467b-863d-b381149478b6", - "start": { - "$date": "2022-07-16T22:44:37.000Z" - }, - "end": { - "$date": "2022-07-16T23:06:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f12391ad-07fd-411e-8f84-64a1a5b5edab", - "start": { - "$date": "2022-07-16T23:06:37.000Z" - }, - "end": { - "$date": "2022-07-16T23:47:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5b70cd3f-4c84-4029-b9c4-8ef6aee38c9a", - "start": { - "$date": "2022-07-16T23:47:37.000Z" - }, - "end": { - "$date": "2022-07-16T23:49:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6ec7deea-8eae-4411-928a-d28c68f490c5", - "start": { - "$date": "2022-07-16T23:49:37.000Z" - }, - "end": { - "$date": "2022-07-17T00:00:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ef49a476-67bc-48ed-bb52-105ed2cacfe5", - "start": { - "$date": "2022-07-17T00:00:37.000Z" - }, - "end": { - "$date": "2022-07-17T00:03:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "898efcbf-b814-4dcc-a53b-c2e44527eda6", - "start": { - "$date": "2022-07-17T00:03:37.000Z" - }, - "end": { - "$date": "2022-07-17T00:17:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c4204ee8-10b1-4b68-903b-d1ee0ce80990", - "start": { - "$date": "2022-07-17T00:17:37.000Z" - }, - "end": { - "$date": "2022-07-17T00:26:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8c9d2b8f-e9a5-448e-a7a0-beab3ca3b7ec", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-16T23:03:24.000Z" - }, - "end": { - "$date": "2022-07-16T23:43:50.000Z" - }, - "events": [ - { - "uuid": "9de9898c-a3ba-4935-b840-2801c3a883db", - "start": { - "$date": "2022-07-16T23:03:24.000Z" - }, - "end": { - "$date": "2022-07-16T23:43:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a514ace7-27a8-4969-88fa-b6d3e56dc419", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-17T00:01:35.000Z" - }, - "end": { - "$date": "2022-07-17T00:07:26.000Z" - }, - "events": [ - { - "uuid": "7b43810d-848e-4686-a00f-f942464d6ae8", - "start": { - "$date": "2022-07-17T00:01:35.000Z" - }, - "end": { - "$date": "2022-07-17T00:07:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "29275bdd-2798-4344-ad41-31e4fa0f76db", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-17T00:27:13.000Z" - }, - "end": { - "$date": "2022-07-17T00:34:08.000Z" - }, - "events": [ - { - "uuid": "36ac9268-8bc6-4e82-a483-5a2ec076caf1", - "start": { - "$date": "2022-07-17T00:27:13.000Z" - }, - "end": { - "$date": "2022-07-17T00:34:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "ae46f9b4-fb16-40e4-8606-c56613811934", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-17T00:28:38.000Z" - }, - "end": { - "$date": "2022-07-17T02:22:55.000Z" - }, - "events": [ - { - "uuid": "9b43560a-e1fe-4665-ad74-89f183c6d835", - "start": { - "$date": "2022-07-17T00:28:38.000Z" - }, - "end": { - "$date": "2022-07-17T01:35:38.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ee5401bf-ac1e-4ced-b3e5-583367f864c0", - "start": { - "$date": "2022-07-17T01:35:38.000Z" - }, - "end": { - "$date": "2022-07-17T01:37:38.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e9344b1d-f1a6-4e76-b1b2-241f116a7f05", - "start": { - "$date": "2022-07-17T01:37:38.000Z" - }, - "end": { - "$date": "2022-07-17T02:22:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "6de0da33-b2f7-4ca4-929e-a3ee51f5ee95", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-17T00:34:14.000Z" - }, - "end": { - "$date": "2022-07-17T01:20:31.000Z" - }, - "events": [ - { - "uuid": "83da0679-3403-4cac-a769-d9e37dae4754", - "start": { - "$date": "2022-07-17T00:34:14.000Z" - }, - "end": { - "$date": "2022-07-17T01:20:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0e516b96-2820-4ec7-b28b-65d692d3faa9", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-17T02:27:28.000Z" - }, - "end": { - "$date": "2022-07-17T05:22:48.000Z" - }, - "events": [ - { - "uuid": "b71adb0d-97cd-4825-bd0c-ba527fab748a", - "start": { - "$date": "2022-07-17T02:27:28.000Z" - }, - "end": { - "$date": "2022-07-17T05:22:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "73669deb-228e-46b4-b3ad-3ac4ce441d49", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-17T02:35:51.000Z" - }, - "end": { - "$date": "2022-07-17T04:57:25.000Z" - }, - "events": [ - { - "uuid": "5acac7be-192a-4d06-8cd5-43824479105a", - "start": { - "$date": "2022-07-17T02:35:51.000Z" - }, - "end": { - "$date": "2022-07-17T02:49:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2c42aa09-3ac6-4dc4-aa59-0b50d15e9854", - "start": { - "$date": "2022-07-17T02:49:51.000Z" - }, - "end": { - "$date": "2022-07-17T02:52:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c5dc4141-91f8-4e9a-8930-0a4f8d0c3ceb", - "start": { - "$date": "2022-07-17T02:52:51.000Z" - }, - "end": { - "$date": "2022-07-17T02:54:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c14995cd-0a2a-4a17-90d8-adf60aee4355", - "start": { - "$date": "2022-07-17T02:54:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:00:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1436318d-1a35-4400-a868-e4fc63fc6b9a", - "start": { - "$date": "2022-07-17T03:00:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:02:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4aa6fbc3-c9ae-45ec-9872-9ef2ff1a2569", - "start": { - "$date": "2022-07-17T03:02:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:05:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f9728e67-b496-403f-9880-0cd6511f8004", - "start": { - "$date": "2022-07-17T03:05:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:17:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "33279e12-489e-4390-970b-ac02b77b5e87", - "start": { - "$date": "2022-07-17T03:17:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:28:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0afd63ae-7db7-4097-865e-08f9b6e6438c", - "start": { - "$date": "2022-07-17T03:28:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:30:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f9819b78-717b-4cd2-8ee0-57274df4997a", - "start": { - "$date": "2022-07-17T03:30:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:42:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e66b6a8f-a055-4ad8-84b9-df4d1e45cf57", - "start": { - "$date": "2022-07-17T03:42:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:44:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1870bd07-8415-4678-8669-a2585dee460b", - "start": { - "$date": "2022-07-17T03:44:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:54:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "3dc32ee5-1a2a-4cfa-82a8-152540778e3a", - "start": { - "$date": "2022-07-17T03:54:51.000Z" - }, - "end": { - "$date": "2022-07-17T03:56:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "abf26bd6-d1fa-43c2-99df-d82f18d4673d", - "start": { - "$date": "2022-07-17T03:56:51.000Z" - }, - "end": { - "$date": "2022-07-17T04:32:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4385abca-2dce-4450-bade-87d2ecb5f67a", - "start": { - "$date": "2022-07-17T04:32:51.000Z" - }, - "end": { - "$date": "2022-07-17T04:34:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "11a5a345-cdbb-452a-bac8-40ed4b63ff86", - "start": { - "$date": "2022-07-17T04:34:51.000Z" - }, - "end": { - "$date": "2022-07-17T04:51:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "09f74e24-40b0-494a-8b84-654200ae2b88", - "start": { - "$date": "2022-07-17T04:51:51.000Z" - }, - "end": { - "$date": "2022-07-17T04:57:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "4dabbf10-1129-46d7-8eb0-0af075ab3975", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-17T05:44:58.000Z" - }, - "end": { - "$date": "2022-07-17T13:08:55.000Z" - }, - "events": [ - { - "uuid": "34c55a05-bc66-4bf3-bdce-6a6b063962eb", - "start": { - "$date": "2022-07-17T05:44:58.000Z" - }, - "end": { - "$date": "2022-07-17T08:12:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "45d66238-4c52-4c91-bc95-d0e6e2db3ed9", - "start": { - "$date": "2022-07-17T08:12:58.000Z" - }, - "end": { - "$date": "2022-07-17T08:17:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8b889c6d-e0e5-48fb-b7c2-efb381b16fc9", - "start": { - "$date": "2022-07-17T08:17:58.000Z" - }, - "end": { - "$date": "2022-07-17T08:27:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c51b57aa-0f74-40c3-b24a-50b03fdee61c", - "start": { - "$date": "2022-07-17T08:27:58.000Z" - }, - "end": { - "$date": "2022-07-17T13:27:58.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cbfd53e7-048c-492d-bc03-3ab08bd32e7f", - "start": { - "$date": "2022-07-17T13:27:58.000Z" - }, - "end": { - "$date": "2022-07-17T13:37:58.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "61ebb623-2877-430b-ab36-f498dea08cb7", - "start": { - "$date": "2022-07-17T13:37:58.000Z" - }, - "end": { - "$date": "2022-07-17T13:08:55.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "4d1202f8-7f18-4942-b23e-b72b181e9457", - "uuid": "f7403a74-0e02-42ab-a78f-9e87f0574c4c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-17T03:56:01.000Z" - }, - "end": { - "$date": "2022-07-17T04:22:00.000Z" - }, - "events": [ - { - "uuid": "e76dc8bb-bbd2-4b11-9ccf-e41302b65a8e", - "start": { - "$date": "2022-07-17T03:56:01.000Z" - }, - "end": { - "$date": "2022-07-17T04:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "54bbae5f-e88a-4713-ad4c-21f756f180de", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-17T04:59:11.000Z" - }, - "end": { - "$date": "2022-07-17T05:00:51.000Z" - }, - "events": [ - { - "uuid": "f230baf4-8fb0-4890-9200-4fefb1f7144a", - "start": { - "$date": "2022-07-17T04:59:11.000Z" - }, - "end": { - "$date": "2022-07-17T05:00:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "af326eef-b325-44f1-aab0-01e434988731", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-17T05:00:58.000Z" - }, - "end": { - "$date": "2022-07-17T05:02:03.000Z" - }, - "events": [ - { - "uuid": "5e1dc14f-2b45-4c2a-b44a-225d061f858a", - "start": { - "$date": "2022-07-17T05:00:58.000Z" - }, - "end": { - "$date": "2022-07-17T05:02:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "02ad3665-4986-4655-82d2-fccdabe9c12d", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-17T05:01:26.000Z" - }, - "end": { - "$date": "2022-07-17T08:44:19.000Z" - }, - "events": [ - { - "uuid": "457a9b30-1d3f-48d3-9f9c-bb947d63679e", - "start": { - "$date": "2022-07-17T05:01:26.000Z" - }, - "end": { - "$date": "2022-07-17T08:44:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a16bd5c9-8949-4eca-a06c-b3cd318461bd", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-17T05:02:28.000Z" - }, - "end": { - "$date": "2022-07-17T05:03:33.000Z" - }, - "events": [ - { - "uuid": "78b9efa5-a93f-4968-88a7-b5d5e7387b77", - "start": { - "$date": "2022-07-17T05:02:28.000Z" - }, - "end": { - "$date": "2022-07-17T05:03:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "2ad0368a-78d3-4009-9b92-016e8f11f68a", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-17T05:04:53.000Z" - }, - "end": { - "$date": "2022-07-17T08:42:45.000Z" - }, - "events": [ - { - "uuid": "a8a92bac-e7d7-4513-af4e-3150b066c871", - "start": { - "$date": "2022-07-17T05:04:53.000Z" - }, - "end": { - "$date": "2022-07-17T08:42:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "e60a502a-c371-4523-9c8f-90cda671b025", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-17T05:23:03.000Z" - }, - "end": { - "$date": "2022-07-17T06:30:31.000Z" - }, - "events": [ - { - "uuid": "2ce89ada-a952-4c99-9e4f-6e9d831f9484", - "start": { - "$date": "2022-07-17T05:23:03.000Z" - }, - "end": { - "$date": "2022-07-17T06:30:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "72833576-c4f8-4b3b-8b82-c68841ad95df", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-17T06:50:50.000Z" - }, - "end": { - "$date": "2022-07-17T07:05:42.000Z" - }, - "events": [ - { - "uuid": "aff51a0f-ce7a-45e7-bf30-b822ebf49389", - "start": { - "$date": "2022-07-17T06:50:50.000Z" - }, - "end": { - "$date": "2022-07-17T07:05:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f60f89a1-9d0e-4b08-8fa0-105381e977af", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-17T07:08:50.000Z" - }, - "end": { - "$date": "2022-07-17T07:40:18.000Z" - }, - "events": [ - { - "uuid": "511457a1-ab16-4d40-9f2f-8e0452318cf8", - "start": { - "$date": "2022-07-17T07:08:50.000Z" - }, - "end": { - "$date": "2022-07-17T07:40:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a2b6132c-eb18-4735-bb92-c7a8933319ce", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-17T13:09:15.000Z" - }, - "end": { - "$date": "2022-07-17T15:12:02.000Z" - }, - "events": [ - { - "uuid": "731c2d51-3286-43be-95c2-7aea58f7071e", - "start": { - "$date": "2022-07-17T13:09:15.000Z" - }, - "end": { - "$date": "2022-07-17T15:12:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1cc985f6-95fc-4bf1-bc71-d3944e1ca911", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-17T13:43:05.000Z" - }, - "end": { - "$date": "2022-07-17T15:11:54.000Z" - }, - "events": [ - { - "uuid": "98e9c5f1-453f-4968-8c63-cbc0518acdf9", - "start": { - "$date": "2022-07-17T13:43:05.000Z" - }, - "end": { - "$date": "2022-07-17T15:11:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dcaa64d2-828a-4860-8f6b-72385a7631d0", - "uuid": "2a25229b-ce09-4378-84e8-8fff7b63eca5", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-17T15:20:34.000Z" - }, - "end": { - "$date": "2022-07-17T15:25:24.000Z" - }, - "events": [ - { - "uuid": "8994f028-8488-4aef-be17-fb3a6546b579", - "start": { - "$date": "2022-07-17T15:20:34.000Z" - }, - "end": { - "$date": "2022-07-17T15:25:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9c6a9b65-9ca2-48f8-8808-d02d201bf4ea", - "uuid": "3010f6a2-7acf-455e-b0c3-603d53e242f8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-17T15:41:39.000Z" - }, - "end": { - "$date": "2022-07-17T16:15:46.000Z" - }, - "events": [ - { - "uuid": "63952e42-f5f5-40af-8cc2-aa6cfd0d70a1", - "start": { - "$date": "2022-07-17T15:41:39.000Z" - }, - "end": { - "$date": "2022-07-17T16:15:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "626fe1c2-9d3c-427c-afa5-3fa2cae3c7fd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-17T17:19:12.000Z" - }, - "end": { - "$date": "2022-07-17T18:01:15.000Z" - }, - "events": [ - { - "uuid": "3ed7f0f3-7269-4e34-a29e-b5226626843d", - "start": { - "$date": "2022-07-17T17:19:12.000Z" - }, - "end": { - "$date": "2022-07-17T17:33:12.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "a72dae14-3fb4-47d2-8bc3-c313014f203a", - "start": { - "$date": "2022-07-17T17:33:12.000Z" - }, - "end": { - "$date": "2022-07-17T17:36:12.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "43034320-5ae6-4728-aa86-28ed781fc3e2", - "start": { - "$date": "2022-07-17T17:36:12.000Z" - }, - "end": { - "$date": "2022-07-17T18:01:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dd280b7c-f3d6-4cdc-b2ed-71f43608dd72", - "uuid": "b6bfbfa9-f645-4e1b-bf72-6372f45084d4", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-17T19:01:45.000Z" - }, - "end": { - "$date": "2022-07-17T19:07:16.000Z" - }, - "events": [ - { - "uuid": "15fef2fc-8e44-42d0-b424-4b022c45ffa3", - "start": { - "$date": "2022-07-17T19:01:45.000Z" - }, - "end": { - "$date": "2022-07-17T19:07:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2e7888bc-037c-48b4-ba15-4b8b105f2180", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-17T19:19:27.000Z" - }, - "end": { - "$date": "2022-07-17T19:47:40.000Z" - }, - "events": [ - { - "uuid": "9b72b450-07aa-47ca-8c58-4c2cc7d6013c", - "start": { - "$date": "2022-07-17T19:19:27.000Z" - }, - "end": { - "$date": "2022-07-17T19:47:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "9ef9bc16-19d7-4e90-946d-9ac54a1a41ce", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-17T19:20:08.000Z" - }, - "end": { - "$date": "2022-07-18T00:31:00.000Z" - }, - "events": [ - { - "uuid": "49efcf2d-62ea-476f-9f1d-5cc9cf41db18", - "start": { - "$date": "2022-07-17T19:20:08.000Z" - }, - "end": { - "$date": "2022-07-18T00:31:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "76d392b4-3adf-4b17-afb6-620b98639d4a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-17T21:14:57.000Z" - }, - "end": { - "$date": "2022-07-17T22:11:32.000Z" - }, - "events": [ - { - "uuid": "f096d553-c9aa-4062-b6dc-3b7b7e4c7ba0", - "start": { - "$date": "2022-07-17T21:14:57.000Z" - }, - "end": { - "$date": "2022-07-17T22:11:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9ddf20af-03dd-4fbd-9c85-0f90932e7671", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-17T21:18:33.000Z" - }, - "end": { - "$date": "2022-07-17T21:22:43.000Z" - }, - "events": [ - { - "uuid": "e7a71dfc-079a-4c01-b97a-d0997d638992", - "start": { - "$date": "2022-07-17T21:18:33.000Z" - }, - "end": { - "$date": "2022-07-17T21:22:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "8ba29ddf-0e36-4d10-8330-6a17186da052", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-17T21:58:35.000Z" - }, - "end": { - "$date": "2022-07-17T22:00:09.000Z" - }, - "events": [ - { - "uuid": "a773a05c-013a-4a8c-b0c4-907f7fea89a9", - "start": { - "$date": "2022-07-17T21:58:35.000Z" - }, - "end": { - "$date": "2022-07-17T22:00:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7f8d7b26-6444-4aca-8cd2-fead884f8f32", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-18T00:26:40.000Z" - }, - "events": [ - { - "uuid": "c09cfb33-d0f8-467f-af01-6f723ebbfd7c", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-18T00:16:20.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fbf9326e-68e6-4515-9d64-3a7b2e08d788", - "start": { - "$date": "2022-07-18T00:16:20.000Z" - }, - "end": { - "$date": "2022-07-18T00:26:40.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4abe7fd8-322d-4992-8921-0f6b14b583ca", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-17T22:02:07.000Z" - }, - "end": { - "$date": "2022-07-18T00:15:16.000Z" - }, - "events": [ - { - "uuid": "20634820-992d-4351-87c9-197dd57c5e50", - "start": { - "$date": "2022-07-17T22:02:07.000Z" - }, - "end": { - "$date": "2022-07-18T00:15:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "3d3a286f-3578-4598-9c01-76563bb3eb06", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-17T23:11:36.000Z" - }, - "end": { - "$date": "2022-07-18T00:20:47.000Z" - }, - "events": [ - { - "uuid": "d6f5f3ef-1286-462e-9740-edbc3c81da49", - "start": { - "$date": "2022-07-17T23:11:36.000Z" - }, - "end": { - "$date": "2022-07-18T00:20:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "471c3db6-1c4a-46b1-b666-d8adde784386", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-18T00:17:57.000Z" - }, - "end": { - "$date": "2022-07-18T01:14:03.000Z" - }, - "events": [ - { - "uuid": "793f95ac-a2c3-476c-a0a6-d99597a81a47", - "start": { - "$date": "2022-07-18T00:17:57.000Z" - }, - "end": { - "$date": "2022-07-18T01:14:03.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "cfbfdc6f-d626-4c76-bcee-d4003526657f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-18T00:32:00.000Z" - }, - "end": { - "$date": "2022-07-18T00:56:16.000Z" - }, - "events": [ - { - "uuid": "708cefc2-ddfe-4d62-832d-6d3e7d877d49", - "start": { - "$date": "2022-07-18T00:32:00.000Z" - }, - "end": { - "$date": "2022-07-18T00:56:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "901b07e0-658c-4903-8312-86aa17b9229d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-18T01:35:48.000Z" - }, - "end": { - "$date": "2022-07-18T02:00:50.000Z" - }, - "events": [ - { - "uuid": "b227e9eb-dec7-4446-a205-f3c59734deb1", - "start": { - "$date": "2022-07-18T01:35:48.000Z" - }, - "end": { - "$date": "2022-07-18T02:00:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "5606810e-44c0-497b-b9b2-5f19f89f3458", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-18T02:02:05.000Z" - }, - "end": { - "$date": "2022-07-18T02:04:00.000Z" - }, - "events": [ - { - "uuid": "7068b317-717c-418a-a288-bbd3f29fd585", - "start": { - "$date": "2022-07-18T02:02:05.000Z" - }, - "end": { - "$date": "2022-07-18T02:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7cad2619-079a-40a0-9b2f-8b213a01b2c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-18T02:04:31.000Z" - }, - "end": { - "$date": "2022-07-18T02:08:25.000Z" - }, - "events": [ - { - "uuid": "8fe54df5-2dfb-4a3b-8c74-4f4d382d2255", - "start": { - "$date": "2022-07-18T02:04:31.000Z" - }, - "end": { - "$date": "2022-07-18T02:08:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a0180fe4-39f2-4c82-a255-d8723e34a2af", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-18T02:08:46.000Z" - }, - "end": { - "$date": "2022-07-18T06:35:53.000Z" - }, - "events": [ - { - "uuid": "163c389c-75bf-428c-b59c-313d1674ceed", - "start": { - "$date": "2022-07-18T02:08:46.000Z" - }, - "end": { - "$date": "2022-07-18T06:35:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1c1c85e3-1627-4ca7-84ba-8874609c1e91", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-18T02:12:04.000Z" - }, - "end": { - "$date": "2022-07-18T02:36:03.000Z" - }, - "events": [ - { - "uuid": "a1fff1f0-ac31-47c3-b397-5d00907ac4bb", - "start": { - "$date": "2022-07-18T02:12:04.000Z" - }, - "end": { - "$date": "2022-07-18T02:36:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "2cd43b24-7379-441b-936c-9d6f1dc909f2", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-18T04:09:01.000Z" - }, - "end": { - "$date": "2022-07-18T05:41:25.000Z" - }, - "events": [ - { - "uuid": "40479f6f-c654-4612-8ba7-a15d6c4e4504", - "start": { - "$date": "2022-07-18T04:09:01.000Z" - }, - "end": { - "$date": "2022-07-18T05:41:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "c5f923b1-d4a8-4e9f-8e62-26d20376634f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-18T05:09:59.000Z" - }, - "end": { - "$date": "2022-07-18T05:56:24.000Z" - }, - "events": [ - { - "uuid": "51bbe781-812e-4077-b218-5b74650daa9c", - "start": { - "$date": "2022-07-18T05:09:59.000Z" - }, - "end": { - "$date": "2022-07-18T05:56:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "2806a299-eb6a-4fb0-8517-6c1f555fe48c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-18T05:12:05.000Z" - }, - "end": { - "$date": "2022-07-18T05:50:08.000Z" - }, - "events": [ - { - "uuid": "a4275b5e-04b6-4aec-87f0-1f7cc4bb8286", - "start": { - "$date": "2022-07-18T05:12:05.000Z" - }, - "end": { - "$date": "2022-07-18T05:50:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "5d832a27-834b-4f57-97ae-bc1678d86a46", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-18T05:54:29.000Z" - }, - "end": { - "$date": "2022-07-18T08:04:31.000Z" - }, - "events": [ - { - "uuid": "97121be4-a482-40c8-9b86-bcb2ddae58ae", - "start": { - "$date": "2022-07-18T05:54:29.000Z" - }, - "end": { - "$date": "2022-07-18T08:04:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "671dbe12-daf6-4c0d-bfec-a713eb082f06", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-18T07:53:54.000Z" - }, - "end": { - "$date": "2022-07-18T08:45:40.000Z" - }, - "events": [ - { - "uuid": "04138892-c1bb-4be9-950d-2ad391ebae27", - "start": { - "$date": "2022-07-18T07:53:54.000Z" - }, - "end": { - "$date": "2022-07-18T08:45:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b9af93fd-51a8-4f9e-aba6-b240129fc256", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-18T14:30:29.000Z" - }, - "end": { - "$date": "2022-07-18T15:15:52.000Z" - }, - "events": [ - { - "uuid": "0a86e448-7978-4f95-b335-488528b791dd", - "start": { - "$date": "2022-07-18T14:30:29.000Z" - }, - "end": { - "$date": "2022-07-18T15:15:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ff5468f7-1f41-4627-bb1b-46c0ea7e0f4e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-18T18:20:49.000Z" - }, - "events": [ - { - "uuid": "7f08744b-66e2-4953-9f34-863b6e5cfea0", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-17T22:01:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "22d87cdc-e9b7-4a89-9dfa-c35f0666cdb8", - "start": { - "$date": "2022-07-17T22:01:20.000Z" - }, - "end": { - "$date": "2022-07-18T18:20:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "0f3d46e9-d0af-42d3-bf28-61ef8df4d29e", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-18T20:37:19.000Z" - }, - "events": [ - { - "uuid": "d09ebbcf-2f47-4cde-9ae5-b38e0f94c27e", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-17T22:01:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "cac2bcc9-e329-4e58-9f89-87ac1d128b12", - "start": { - "$date": "2022-07-17T22:01:20.000Z" - }, - "end": { - "$date": "2022-07-18T20:37:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f570c011-07ae-4885-8248-77baa52fa346", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-18T21:54:44.000Z" - }, - "events": [ - { - "uuid": "125b08c1-df4f-42cd-9642-d7621c8d278a", - "start": { - "$date": "2022-07-17T22:00:20.000Z" - }, - "end": { - "$date": "2022-07-17T22:01:20.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f74e8be0-35e4-416f-9297-89e89958563f", - "start": { - "$date": "2022-07-17T22:01:20.000Z" - }, - "end": { - "$date": "2022-07-18T21:54:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "4864d57f-c2d9-4a94-a6d1-aac38b52ae41", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-18T22:11:34.000Z" - }, - "end": { - "$date": "2022-07-18T23:16:38.000Z" - }, - "events": [ - { - "uuid": "4ba22bf5-6003-432e-9f73-82471adc1a80", - "start": { - "$date": "2022-07-18T22:11:34.000Z" - }, - "end": { - "$date": "2022-07-18T23:16:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "eb53a382-2bc4-48d3-a1a8-486a21f69a52", - "uuid": "4665706e-91f3-4d72-885f-c76856ab3729", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-19T00:12:02.000Z" - }, - "end": { - "$date": "2022-07-19T01:02:00.000Z" - }, - "events": [ - { - "uuid": "9a3cdbd2-ea27-4354-92e2-ab28eecb3eeb", - "start": { - "$date": "2022-07-19T00:12:02.000Z" - }, - "end": { - "$date": "2022-07-19T01:02:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "ca6a03cb-adde-468b-b89a-fe076dd9fdc4", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-07-19T00:35:45.000Z" - }, - "end": { - "$date": "2022-07-19T03:04:05.000Z" - }, - "events": [ - { - "uuid": "ae89051c-a97b-4927-96e1-a5ef69d127ba", - "start": { - "$date": "2022-07-19T00:35:45.000Z" - }, - "end": { - "$date": "2022-07-19T03:04:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c30315c2-1ea4-43e5-84fa-1cb3c78e20c0", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-19T01:16:47.000Z" - }, - "end": { - "$date": "2022-07-19T08:57:03.000Z" - }, - "events": [ - { - "uuid": "0c6b268c-2c53-45f0-a337-0721dd6fed61", - "start": { - "$date": "2022-07-19T01:16:47.000Z" - }, - "end": { - "$date": "2022-07-19T08:57:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "05cc4450-376b-4df2-b42b-429e7071ad0c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-19T01:33:41.000Z" - }, - "end": { - "$date": "2022-07-19T03:14:34.000Z" - }, - "events": [ - { - "uuid": "a356fa93-239d-4db5-88ab-9a60e1a95ba5", - "start": { - "$date": "2022-07-19T01:33:41.000Z" - }, - "end": { - "$date": "2022-07-19T03:14:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "9ab0f776-9939-420a-9205-927863a5ac85", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-19T03:42:12.000Z" - }, - "end": { - "$date": "2022-07-19T03:57:39.000Z" - }, - "events": [ - { - "uuid": "fa3524f3-da86-4a6a-b9e9-42fae97ea106", - "start": { - "$date": "2022-07-19T03:42:12.000Z" - }, - "end": { - "$date": "2022-07-19T03:57:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3c499804-2567-4fc0-a3fa-2d3243c99657", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-19T03:46:04.000Z" - }, - "end": { - "$date": "2022-07-19T04:13:46.000Z" - }, - "events": [ - { - "uuid": "48b28385-2efa-4158-9627-457417a68b99", - "start": { - "$date": "2022-07-19T03:46:04.000Z" - }, - "end": { - "$date": "2022-07-19T04:13:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "cfa61430-3c31-4200-9d4c-004961e3aad3", - "uuid": "0dd0ccd1-3241-4335-ae6f-9903814cfbaa", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-19T03:58:40.000Z" - }, - "end": { - "$date": "2022-07-19T04:51:07.000Z" - }, - "events": [ - { - "uuid": "1b0cd750-2259-4b2a-8072-e3ecdf6c6287", - "start": { - "$date": "2022-07-19T03:58:40.000Z" - }, - "end": { - "$date": "2022-07-19T04:41:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4dee7428-277a-4a79-a7ec-553554b975fa", - "start": { - "$date": "2022-07-19T04:41:40.000Z" - }, - "end": { - "$date": "2022-07-19T04:51:07.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "608165c9-c76f-4506-b4d8-0773668de927", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-19T04:15:55.000Z" - }, - "end": { - "$date": "2022-07-19T04:35:16.000Z" - }, - "events": [ - { - "uuid": "ed3250c7-9acc-429c-95a4-a0681ec9dca3", - "start": { - "$date": "2022-07-19T04:15:55.000Z" - }, - "end": { - "$date": "2022-07-19T04:35:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2931f021-d124-4f25-a4b8-3de34982dced", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-19T04:31:15.000Z" - }, - "end": { - "$date": "2022-07-19T04:53:01.000Z" - }, - "events": [ - { - "uuid": "cf14f9b3-9791-4e0f-aefe-80f33af87714", - "start": { - "$date": "2022-07-19T04:31:15.000Z" - }, - "end": { - "$date": "2022-07-19T04:53:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a8d3eb5f-e4b8-46bb-9e4d-c8ddf908fd07", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-19T04:54:41.000Z" - }, - "end": { - "$date": "2022-07-19T05:30:30.000Z" - }, - "events": [ - { - "uuid": "f4f1b502-d7b0-44a9-8563-48ae51bac6c2", - "start": { - "$date": "2022-07-19T04:54:41.000Z" - }, - "end": { - "$date": "2022-07-19T05:30:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e4ac763-cccd-425b-a8e1-278f8c544f97", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-19T05:31:15.000Z" - }, - "end": { - "$date": "2022-07-19T06:07:38.000Z" - }, - "events": [ - { - "uuid": "214b92ed-278f-43a9-82cc-184652f2a7c6", - "start": { - "$date": "2022-07-19T05:31:15.000Z" - }, - "end": { - "$date": "2022-07-19T06:07:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a4e5bb7f-2099-438b-81cd-41d45ce502e5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-19T06:21:25.000Z" - }, - "end": { - "$date": "2022-07-19T07:07:43.000Z" - }, - "events": [ - { - "uuid": "ee951357-79e4-4f00-a847-c2aeab476515", - "start": { - "$date": "2022-07-19T06:21:25.000Z" - }, - "end": { - "$date": "2022-07-19T07:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "fb68dd34-d626-4762-b0ca-48c75d7cfa20", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-19T22:21:40.000Z" - }, - "end": { - "$date": "2022-07-19T23:26:17.000Z" - }, - "events": [ - { - "uuid": "a359271f-9997-427a-8acb-77b19e26025e", - "start": { - "$date": "2022-07-19T22:21:40.000Z" - }, - "end": { - "$date": "2022-07-19T23:26:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "9f6c3650-ff63-4cac-aa6b-28bfa4bc4fe3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-19T23:51:47.000Z" - }, - "end": { - "$date": "2022-07-19T23:53:47.000Z" - }, - "events": [ - { - "uuid": "1366d95e-1984-4b2b-99ea-c89fd30ff4f5", - "start": { - "$date": "2022-07-19T23:51:47.000Z" - }, - "end": { - "$date": "2022-07-19T23:53:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "4dfb8dce-1244-49d9-9608-f26434de1b8b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-19T23:54:07.000Z" - }, - "end": { - "$date": "2022-07-20T01:00:18.000Z" - }, - "events": [ - { - "uuid": "20296bf0-9064-49f1-a6d8-68228c28d799", - "start": { - "$date": "2022-07-19T23:54:07.000Z" - }, - "end": { - "$date": "2022-07-20T01:00:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f57e0934-6b66-4860-bc34-cb6524776ebf", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-20T00:29:13.000Z" - }, - "end": { - "$date": "2022-07-20T04:57:54.000Z" - }, - "events": [ - { - "uuid": "64400217-ecdf-4d34-bd90-bac1dd95c31e", - "start": { - "$date": "2022-07-20T00:29:13.000Z" - }, - "end": { - "$date": "2022-07-20T04:57:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "ecdadf25-ac24-4184-a223-cf319cd5f6f3", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-20T00:31:35.000Z" - }, - "end": { - "$date": "2022-07-20T01:12:05.000Z" - }, - "events": [ - { - "uuid": "30b645b8-2bea-4619-8890-a3c886dfe2c6", - "start": { - "$date": "2022-07-20T00:31:35.000Z" - }, - "end": { - "$date": "2022-07-20T01:12:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "f06be249-8ac7-437c-9a5a-5cbf148c2686", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-20T01:01:03.000Z" - }, - "end": { - "$date": "2022-07-20T01:13:39.000Z" - }, - "events": [ - { - "uuid": "5a6ad1bd-0090-4aed-b97a-00ab62e38c22", - "start": { - "$date": "2022-07-20T01:01:03.000Z" - }, - "end": { - "$date": "2022-07-20T01:13:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "8ac8c2f2-6f2e-4fdd-b3a5-b53e88a51e25", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-20T01:43:02.000Z" - }, - "end": { - "$date": "2022-07-20T01:46:46.000Z" - }, - "events": [ - { - "uuid": "2a5d5382-f300-4596-a913-88567ff10f13", - "start": { - "$date": "2022-07-20T01:43:02.000Z" - }, - "end": { - "$date": "2022-07-20T01:46:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6acc904e-8e39-4b9f-984f-ae6000f57d02", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-20T01:47:06.000Z" - }, - "end": { - "$date": "2022-07-20T04:58:02.000Z" - }, - "events": [ - { - "uuid": "740dffa3-e690-4b55-bf39-1fdd402ef269", - "start": { - "$date": "2022-07-20T01:47:06.000Z" - }, - "end": { - "$date": "2022-07-20T04:58:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9b0071bf-4d77-492d-94e3-df578895c2c4", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-20T01:47:17.000Z" - }, - "end": { - "$date": "2022-07-20T03:18:31.000Z" - }, - "events": [ - { - "uuid": "36f9d33f-abac-4039-9ae7-fc15da956fe8", - "start": { - "$date": "2022-07-20T01:47:17.000Z" - }, - "end": { - "$date": "2022-07-20T03:18:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "469960bb-1a52-443e-8360-c44cbeccd01a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-20T01:48:19.000Z" - }, - "end": { - "$date": "2022-07-20T01:51:52.000Z" - }, - "events": [ - { - "uuid": "7d2ecb85-0e5e-4853-92a2-0ac8b44303f2", - "start": { - "$date": "2022-07-20T01:48:19.000Z" - }, - "end": { - "$date": "2022-07-20T01:51:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "361ebaf4-7238-47e3-8996-98ebccf53f37", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-20T01:52:04.000Z" - }, - "end": { - "$date": "2022-07-20T03:23:30.000Z" - }, - "events": [ - { - "uuid": "08b23168-4005-4ab8-943b-c1df4062c37e", - "start": { - "$date": "2022-07-20T01:52:04.000Z" - }, - "end": { - "$date": "2022-07-20T03:23:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "a831e6bf-b53e-408f-8524-77b450bc6262", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-20T02:07:15.000Z" - }, - "end": { - "$date": "2022-07-20T03:48:56.000Z" - }, - "events": [ - { - "uuid": "9b67d337-1c08-41e2-b79d-ce196670439d", - "start": { - "$date": "2022-07-20T02:07:15.000Z" - }, - "end": { - "$date": "2022-07-20T03:48:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3366b538-b877-404b-9e58-d54a77925e28", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T02:48:10.000Z" - }, - "end": { - "$date": "2022-07-20T04:01:29.000Z" - }, - "events": [ - { - "uuid": "a8dc0223-955d-4fd8-a2b8-18e4ebb89843", - "start": { - "$date": "2022-07-20T02:48:10.000Z" - }, - "end": { - "$date": "2022-07-20T04:01:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "7af1a215-dc22-41ea-a04a-50a6f82262bb", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-20T04:00:15.000Z" - }, - "end": { - "$date": "2022-07-20T06:07:49.000Z" - }, - "events": [ - { - "uuid": "54a465ed-1c4b-4796-b0da-e66560cf7a46", - "start": { - "$date": "2022-07-20T04:00:15.000Z" - }, - "end": { - "$date": "2022-07-20T06:07:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ff743a5c-42ca-4585-9559-0bf470cf321d", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T04:01:44.000Z" - }, - "end": { - "$date": "2022-07-20T07:15:25.000Z" - }, - "events": [ - { - "uuid": "8f40a986-3b48-40a7-becf-a55d0d34035f", - "start": { - "$date": "2022-07-20T04:01:44.000Z" - }, - "end": { - "$date": "2022-07-20T07:15:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c5d03e64-8354-4fee-a388-120696017912", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-20T04:04:38.000Z" - }, - "end": { - "$date": "2022-07-20T04:25:14.000Z" - }, - "events": [ - { - "uuid": "fd90516c-9f85-4ce0-88f6-91cdb9a49be2", - "start": { - "$date": "2022-07-20T04:04:38.000Z" - }, - "end": { - "$date": "2022-07-20T04:25:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98a9868c-a6a8-43bc-a912-5ea0ccb1acbc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-20T04:28:13.000Z" - }, - "end": { - "$date": "2022-07-20T04:52:54.000Z" - }, - "events": [ - { - "uuid": "9d6d128d-8433-41ce-ab46-329e21bde2da", - "start": { - "$date": "2022-07-20T04:28:13.000Z" - }, - "end": { - "$date": "2022-07-20T04:52:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d84ac4e8-5984-4b04-9673-b50e00aeeeef", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-20T04:44:02.000Z" - }, - "end": { - "$date": "2022-07-20T05:53:06.000Z" - }, - "events": [ - { - "uuid": "986971ac-8eca-475a-b60f-08ab83b83fd8", - "start": { - "$date": "2022-07-20T04:44:02.000Z" - }, - "end": { - "$date": "2022-07-20T05:53:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "b75b3909-a633-428b-9f8e-4fcb8cd6ed18", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-20T04:44:26.000Z" - }, - "end": { - "$date": "2022-07-20T05:48:51.000Z" - }, - "events": [ - { - "uuid": "914ca981-7b9b-4d91-a3ea-8717422f7dc9", - "start": { - "$date": "2022-07-20T04:44:26.000Z" - }, - "end": { - "$date": "2022-07-20T05:48:51.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "dd49f487-6b3c-40d5-8d50-bda879ad49b6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-20T04:50:28.000Z" - }, - "end": { - "$date": "2022-07-20T06:54:05.000Z" - }, - "events": [ - { - "uuid": "1b63f3fb-05d2-4ef2-b389-d6f609e8ae16", - "start": { - "$date": "2022-07-20T04:50:28.000Z" - }, - "end": { - "$date": "2022-07-20T06:54:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9df06298-77cc-4168-b00f-a8107e777345", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-20T04:56:39.000Z" - }, - "end": { - "$date": "2022-07-20T05:16:54.000Z" - }, - "events": [ - { - "uuid": "9cca1309-0af6-466a-9417-6b1eed028bcd", - "start": { - "$date": "2022-07-20T04:56:39.000Z" - }, - "end": { - "$date": "2022-07-20T05:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "6c0396f8-0dcb-4c48-b44d-38458d9baae0", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-20T05:25:24.000Z" - }, - "end": { - "$date": "2022-07-20T05:34:03.000Z" - }, - "events": [ - { - "uuid": "4b5ddfc6-d3b7-44a6-852c-b3ed5904d292", - "start": { - "$date": "2022-07-20T05:25:24.000Z" - }, - "end": { - "$date": "2022-07-20T05:34:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "10d5396b-cde1-4def-a3e4-e1627db48208", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-20T05:53:51.000Z" - }, - "end": { - "$date": "2022-07-20T07:24:42.000Z" - }, - "events": [ - { - "uuid": "bf577e25-7149-4b31-baf4-0934b5207c6f", - "start": { - "$date": "2022-07-20T05:53:51.000Z" - }, - "end": { - "$date": "2022-07-20T07:24:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "71a6f356-ac68-476b-a198-d10e07d5cbe7", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-20T06:28:22.000Z" - }, - "end": { - "$date": "2022-07-20T06:53:27.000Z" - }, - "events": [ - { - "uuid": "4434af16-f560-43e6-b596-b7628cdbe27f", - "start": { - "$date": "2022-07-20T06:28:22.000Z" - }, - "end": { - "$date": "2022-07-20T06:53:27.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "8ceea534-46d7-4431-8f51-ba6f33fa32bb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T07:22:48.000Z" - }, - "end": { - "$date": "2022-07-20T07:53:16.000Z" - }, - "events": [ - { - "uuid": "9c7915e5-6e98-412d-9c42-deed71836f59", - "start": { - "$date": "2022-07-20T07:22:48.000Z" - }, - "end": { - "$date": "2022-07-20T07:53:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "73791899-39a0-4c0d-ad28-e01d6db9d0f2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T07:54:03.000Z" - }, - "end": { - "$date": "2022-07-20T08:09:07.000Z" - }, - "events": [ - { - "uuid": "cc3299f2-80e6-44e4-849d-53841f57113b", - "start": { - "$date": "2022-07-20T07:54:03.000Z" - }, - "end": { - "$date": "2022-07-20T08:09:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "3c6aea58-5b72-4c99-99b2-e3cee4fb61b1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T08:09:57.000Z" - }, - "end": { - "$date": "2022-07-20T08:14:39.000Z" - }, - "events": [ - { - "uuid": "bf8cbb21-2e2e-46fd-8914-25e1f9789250", - "start": { - "$date": "2022-07-20T08:09:57.000Z" - }, - "end": { - "$date": "2022-07-20T08:14:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8e529bf1-011d-4b92-beb5-fbb766596430", - "uuid": "adef8499-f367-4408-8a07-29bcc9b10ca2", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T08:17:27.000Z" - }, - "end": { - "$date": "2022-07-20T08:38:53.000Z" - }, - "events": [ - { - "uuid": "0d0cbb53-a1c2-4c14-ac34-be7c1497dbfd", - "start": { - "$date": "2022-07-20T08:17:27.000Z" - }, - "end": { - "$date": "2022-07-20T08:38:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "c26d1321-c40e-4668-87ac-ae74b83dee69", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-20T14:28:59.000Z" - }, - "end": { - "$date": "2022-07-20T14:30:00.000Z" - }, - "events": [ - { - "uuid": "3b1a9115-1061-4654-bdff-271d50101e6a", - "start": { - "$date": "2022-07-20T14:28:59.000Z" - }, - "end": { - "$date": "2022-07-20T14:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81d5d470-fba9-487f-bbb6-10a4a4604c19", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-20T14:59:50.000Z" - }, - "end": { - "$date": "2022-07-20T15:01:19.000Z" - }, - "events": [ - { - "uuid": "2272a21c-5600-403d-90dc-9b79e19088ee", - "start": { - "$date": "2022-07-20T14:59:50.000Z" - }, - "end": { - "$date": "2022-07-20T15:01:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "4af8bbe5-0e23-4b1f-b206-98393f3728d2", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-20T18:10:30.000Z" - }, - "end": { - "$date": "2022-07-20T18:27:25.000Z" - }, - "events": [ - { - "uuid": "53c5bbb8-9b09-4884-ae4f-785178dfeaeb", - "start": { - "$date": "2022-07-20T18:10:30.000Z" - }, - "end": { - "$date": "2022-07-20T18:27:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1087ffc8-0d6c-482a-92a8-7badb65cca41", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T19:23:16.000Z" - }, - "end": { - "$date": "2022-07-20T20:06:13.000Z" - }, - "events": [ - { - "uuid": "b815e13b-88f6-48f7-9f5f-8ac32f97ecf6", - "start": { - "$date": "2022-07-20T19:23:16.000Z" - }, - "end": { - "$date": "2022-07-20T20:06:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "4b7c08ef-9b00-40de-a526-45d588b7b48d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-20T20:35:24.000Z" - }, - "end": { - "$date": "2022-07-20T22:13:41.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-07-20T20:35:24.000Z" - }, - "end": { - "$date": "2022-07-20T22:13:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2fd6b687-7024-4a07-80c6-8e4961c3a2f5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T22:36:29.000Z" - }, - "end": { - "$date": "2022-07-20T23:03:11.000Z" - }, - "events": [ - { - "uuid": "7606dd75-d356-4c78-8476-a2bedc8a690c", - "start": { - "$date": "2022-07-20T22:36:29.000Z" - }, - "end": { - "$date": "2022-07-20T23:03:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "87407c03-5214-4a9e-bea2-a1272e4eca9d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-20T22:59:43.000Z" - }, - "end": { - "$date": "2022-07-20T23:48:31.000Z" - }, - "events": [ - { - "uuid": "6bf4e1e5-8ba0-4f2c-a832-681d5527d7bb", - "start": { - "$date": "2022-07-20T22:59:43.000Z" - }, - "end": { - "$date": "2022-07-20T23:37:43.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "95c65d10-79cf-4db1-8a61-923b98947b2b", - "start": { - "$date": "2022-07-20T23:37:43.000Z" - }, - "end": { - "$date": "2022-07-20T23:40:43.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "420fef1e-0e88-4091-9dde-de8fcbc20bfa", - "start": { - "$date": "2022-07-20T23:40:43.000Z" - }, - "end": { - "$date": "2022-07-20T23:48:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "20f1c244-e53b-4e3f-8c1e-f11960b9065e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-20T22:36:29.000Z" - }, - "end": { - "$date": "2022-07-21T03:40:13.000Z" - }, - "events": [ - { - "uuid": "65273fd3-b96f-499e-b40d-2d0f07a4e419", - "start": { - "$date": "2022-07-20T22:36:29.000Z" - }, - "end": { - "$date": "2022-07-21T03:40:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "8a4c4f2a-7fd6-4f84-a0cd-2216f3301909", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T01:11:49.000Z" - }, - "end": { - "$date": "2022-07-21T01:12:58.000Z" - }, - "events": [ - { - "uuid": "c11f8c87-f155-4a72-af5e-a8a7ca1a77c1", - "start": { - "$date": "2022-07-21T01:11:49.000Z" - }, - "end": { - "$date": "2022-07-21T01:12:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "dc232501-5102-4d33-8225-0766aa865980", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T03:00:35.000Z" - }, - "end": { - "$date": "2022-07-21T04:04:21.000Z" - }, - "events": [ - { - "uuid": "b4ef1403-2d73-47c7-a629-9cb79da4842c", - "start": { - "$date": "2022-07-21T03:00:35.000Z" - }, - "end": { - "$date": "2022-07-21T04:04:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "79d69f50-3200-4bb1-a757-2f88d1c55d6b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-21T03:40:28.000Z" - }, - "end": { - "$date": "2022-07-21T05:22:34.000Z" - }, - "events": [ - { - "uuid": "84600d9b-366a-4a72-87e4-ca09e7d8e836", - "start": { - "$date": "2022-07-21T03:40:28.000Z" - }, - "end": { - "$date": "2022-07-21T05:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "55022842-6143-4c9c-8b44-aa3a15608226", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-21T03:42:16.000Z" - }, - "end": { - "$date": "2022-07-21T05:53:55.000Z" - }, - "events": [ - { - "uuid": "977512c8-0b03-49cb-b047-1618c32d2f73", - "start": { - "$date": "2022-07-21T03:42:16.000Z" - }, - "end": { - "$date": "2022-07-21T05:53:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "bbd5a720-3459-4bd7-a119-7a35851f9a62", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-21T03:43:28.000Z" - }, - "end": { - "$date": "2022-07-21T04:22:08.000Z" - }, - "events": [ - { - "uuid": "55f757c2-f839-4ca0-b440-13d2b979771f", - "start": { - "$date": "2022-07-21T03:43:28.000Z" - }, - "end": { - "$date": "2022-07-21T04:22:08.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d1b5b7c4-fe03-4980-aa9c-7ad1163978d2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-21T03:52:12.000Z" - }, - "end": { - "$date": "2022-07-21T04:21:53.000Z" - }, - "events": [ - { - "uuid": "48cadbf6-0be2-4551-b39b-eedbe081bbf4", - "start": { - "$date": "2022-07-21T03:52:12.000Z" - }, - "end": { - "$date": "2022-07-21T04:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "671f77cc-ea03-46a5-8f5e-1fb73218fad0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T04:10:13.000Z" - }, - "end": { - "$date": "2022-07-21T04:15:14.000Z" - }, - "events": [ - { - "uuid": "8506746e-e290-48db-bbb0-c5c19bc9b411", - "start": { - "$date": "2022-07-21T04:10:13.000Z" - }, - "end": { - "$date": "2022-07-21T04:15:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "192cb7c3-46ea-4697-9c8b-44d38bd22875", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T04:20:03.000Z" - }, - "end": { - "$date": "2022-07-21T05:45:20.000Z" - }, - "events": [ - { - "uuid": "42f543c3-d59d-45a8-afc0-85f4542e3ee1", - "start": { - "$date": "2022-07-21T04:20:03.000Z" - }, - "end": { - "$date": "2022-07-21T05:45:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "5bd19aa0-b6e0-4ad6-9d01-45e3a8995ca3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-21T04:22:08.000Z" - }, - "end": { - "$date": "2022-07-21T05:28:04.000Z" - }, - "events": [ - { - "uuid": "a9d13da9-f1ad-4a3b-9939-3e974035b3c6", - "start": { - "$date": "2022-07-21T04:22:08.000Z" - }, - "end": { - "$date": "2022-07-21T05:28:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6bd63d51-1d9c-49a8-8d39-870b0cee40bc", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-21T04:43:04.000Z" - }, - "end": { - "$date": "2022-07-21T04:45:09.000Z" - }, - "events": [ - { - "uuid": "a6a4cbb4-f380-4a12-8108-79d759ad1c65", - "start": { - "$date": "2022-07-21T04:43:04.000Z" - }, - "end": { - "$date": "2022-07-21T04:45:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b8cfc004-ee8d-4b24-9ed7-836a2671b476", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-21T04:45:54.000Z" - }, - "end": { - "$date": "2022-07-21T06:28:23.000Z" - }, - "events": [ - { - "uuid": "492a5bec-c16f-4ea7-b9e1-40e3cecf55a5", - "start": { - "$date": "2022-07-21T04:45:54.000Z" - }, - "end": { - "$date": "2022-07-21T06:28:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "99a2fe5e-6b87-4818-8193-eb5ed1bc7100", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-21T04:46:59.000Z" - }, - "end": { - "$date": "2022-07-21T06:28:19.000Z" - }, - "events": [ - { - "uuid": "af47e400-c8a8-409a-919e-29540960e6ae", - "start": { - "$date": "2022-07-21T04:46:59.000Z" - }, - "end": { - "$date": "2022-07-21T06:28:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "4336eb1f-4667-4df1-8864-2d9d18a976b4", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-21T05:00:44.000Z" - }, - "end": { - "$date": "2022-07-21T06:28:48.000Z" - }, - "events": [ - { - "uuid": "8b371af3-fac9-4c72-9e2f-eb024f0520d4", - "start": { - "$date": "2022-07-21T05:00:44.000Z" - }, - "end": { - "$date": "2022-07-21T06:28:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "043cee5b-0f72-46be-baea-74636e192c1b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-21T03:40:28.000Z" - }, - "end": { - "$date": "2022-07-21T07:59:42.000Z" - }, - "events": [ - { - "uuid": "bbacccec-b993-4da3-a336-923e5aa5a985", - "start": { - "$date": "2022-07-21T03:40:28.000Z" - }, - "end": { - "$date": "2022-07-21T07:59:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "8640f9a7-dd03-4deb-ae56-29f71933afe5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-21T06:28:58.000Z" - }, - "end": { - "$date": "2022-07-21T06:41:34.000Z" - }, - "events": [ - { - "uuid": "85ef8682-14c9-49ca-a12a-76ec76d07649", - "start": { - "$date": "2022-07-21T06:28:58.000Z" - }, - "end": { - "$date": "2022-07-21T06:41:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a219993d-72ef-41e6-b9f0-752eb5bd23e2", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-21T06:42:09.000Z" - }, - "end": { - "$date": "2022-07-21T07:20:00.000Z" - }, - "events": [ - { - "uuid": "dd34792f-05a7-44f9-8978-e59246a29308", - "start": { - "$date": "2022-07-21T06:42:09.000Z" - }, - "end": { - "$date": "2022-07-21T07:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "08c6c652-f9c0-4050-8824-7f6cd9ff0e08", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-21T06:42:36.000Z" - }, - "end": { - "$date": "2022-07-21T07:19:33.000Z" - }, - "events": [ - { - "uuid": "9fc463bb-fdb2-4150-bd8f-5819c50d5c22", - "start": { - "$date": "2022-07-21T06:42:36.000Z" - }, - "end": { - "$date": "2022-07-21T07:19:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "1b8da0f3-327a-4875-b080-3713793659b5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-21T07:35:11.000Z" - }, - "end": { - "$date": "2022-07-21T08:08:07.000Z" - }, - "events": [ - { - "uuid": "6845636d-85ad-4070-96e4-be4eb938c3d2", - "start": { - "$date": "2022-07-21T07:35:11.000Z" - }, - "end": { - "$date": "2022-07-21T08:08:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7193c2aa-9a38-49f9-a231-0987c9bcb8ee", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-21T08:02:57.000Z" - }, - "end": { - "$date": "2022-07-21T08:04:12.000Z" - }, - "events": [ - { - "uuid": "6f442fcc-2f47-4b21-9d83-ec4241cc2e97", - "start": { - "$date": "2022-07-21T08:02:57.000Z" - }, - "end": { - "$date": "2022-07-21T08:04:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "30b0e4a3-4381-4168-a4e8-6e3d36a3cc03", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T16:38:47.000Z" - }, - "end": { - "$date": "2022-07-21T17:06:34.000Z" - }, - "events": [ - { - "uuid": "c3a91374-fa8c-4d39-8af8-f138447e3ba2", - "start": { - "$date": "2022-07-21T16:38:47.000Z" - }, - "end": { - "$date": "2022-07-21T17:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "f890e52d-3258-4e6f-a997-e5ec7cfd9a82", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-21T17:50:06.000Z" - }, - "end": { - "$date": "2022-07-21T18:25:07.000Z" - }, - "events": [ - { - "uuid": "bda4852a-70d4-40b1-a136-99ddc561aca6", - "start": { - "$date": "2022-07-21T17:50:06.000Z" - }, - "end": { - "$date": "2022-07-21T18:25:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "f1b51ec2-5f93-4b58-80a4-bfa46f8ba51d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T17:52:32.000Z" - }, - "end": { - "$date": "2022-07-21T18:22:34.000Z" - }, - "events": [ - { - "uuid": "b4dba322-4eff-4b40-b653-7eeb2babb02a", - "start": { - "$date": "2022-07-21T17:52:32.000Z" - }, - "end": { - "$date": "2022-07-21T18:22:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "92347f17-02f1-46a9-b697-80b963e3cddb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T19:27:37.000Z" - }, - "end": { - "$date": "2022-07-21T19:46:43.000Z" - }, - "events": [ - { - "uuid": "b54466d0-bb0c-4b20-bf93-86a3c5a5ea2d", - "start": { - "$date": "2022-07-21T19:27:37.000Z" - }, - "end": { - "$date": "2022-07-21T19:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "cad90329-9d19-484d-b6b1-81f2e0dd69d5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-21T22:16:28.000Z" - }, - "end": { - "$date": "2022-07-22T00:19:28.000Z" - }, - "events": [ - { - "uuid": "f9fa0676-bd48-4e02-aaec-9838f08996ab", - "start": { - "$date": "2022-07-21T22:16:28.000Z" - }, - "end": { - "$date": "2022-07-22T00:19:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "fc3328fe-b4db-4757-9fdb-b3ce173ed8c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-22T01:07:45.000Z" - }, - "end": { - "$date": "2022-07-22T03:30:28.000Z" - }, - "events": [ - { - "uuid": "9467e7da-c919-4f4d-84ad-b3267e191463", - "start": { - "$date": "2022-07-22T01:07:45.000Z" - }, - "end": { - "$date": "2022-07-22T02:49:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ff973495-a9e6-47be-90c8-e1cb45d8f3d4", - "start": { - "$date": "2022-07-22T02:49:45.000Z" - }, - "end": { - "$date": "2022-07-22T02:54:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "2e6a959e-264c-4144-8c82-a8955f7a61bc", - "start": { - "$date": "2022-07-22T02:54:45.000Z" - }, - "end": { - "$date": "2022-07-22T03:04:45.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "58a9339f-87e7-48bd-94bf-2fc3f0751d8e", - "start": { - "$date": "2022-07-22T03:04:45.000Z" - }, - "end": { - "$date": "2022-07-22T03:26:45.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4fa11371-82b3-437d-9a4b-f380e08ddaa5", - "start": { - "$date": "2022-07-22T03:26:45.000Z" - }, - "end": { - "$date": "2022-07-22T03:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a6387561-95f2-4fd5-9eae-4519a7e5811a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-22T00:41:15.000Z" - }, - "end": { - "$date": "2022-07-22T07:15:12.000Z" - }, - "events": [ - { - "uuid": "e022f5ba-8fa2-4d5a-9eb1-06ead7880c2a", - "start": { - "$date": "2022-07-22T00:41:15.000Z" - }, - "end": { - "$date": "2022-07-22T01:30:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1dc405d2-b1e1-482c-ac56-bcb134bc65cb", - "start": { - "$date": "2022-07-22T01:30:15.000Z" - }, - "end": { - "$date": "2022-07-22T01:34:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "984358d8-fca3-44c5-b400-87ef5630cc9d", - "start": { - "$date": "2022-07-22T01:34:15.000Z" - }, - "end": { - "$date": "2022-07-22T07:15:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "406eac1b-d53f-4d7c-b976-27da800ae6d4", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-22T01:22:24.000Z" - }, - "end": { - "$date": "2022-07-22T04:16:06.000Z" - }, - "events": [ - { - "uuid": "3b896bc5-f87f-48bb-ade6-5a161a90d619", - "start": { - "$date": "2022-07-22T01:22:24.000Z" - }, - "end": { - "$date": "2022-07-22T04:16:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "a5ffbfcd-3d0f-48b5-8251-a8e5c8d63fda", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-22T01:57:45.000Z" - }, - "end": { - "$date": "2022-07-22T02:52:21.000Z" - }, - "events": [ - { - "uuid": "0fe1bc08-300a-4499-8f41-02f95bd66dfe", - "start": { - "$date": "2022-07-22T01:57:45.000Z" - }, - "end": { - "$date": "2022-07-22T02:52:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6dda40f2-9713-4a7c-9cfe-e59cea7aee6c", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-22T02:23:40.000Z" - }, - "end": { - "$date": "2022-07-22T04:16:26.000Z" - }, - "events": [ - { - "uuid": "ce956eb6-5fd9-4eec-8f65-1c5944a37a53", - "start": { - "$date": "2022-07-22T02:23:40.000Z" - }, - "end": { - "$date": "2022-07-22T04:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "09c7880f-2bb4-4800-ac76-630dcf59170f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T02:57:29.000Z" - }, - "end": { - "$date": "2022-07-22T03:18:37.000Z" - }, - "events": [ - { - "uuid": "7d1d0e4d-4560-41e2-abd7-5b7bc94435b4", - "start": { - "$date": "2022-07-22T02:57:29.000Z" - }, - "end": { - "$date": "2022-07-22T03:18:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "498a7c86-7896-450a-94f7-38b92e26def9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-22T03:06:19.000Z" - }, - "end": { - "$date": "2022-07-22T04:24:56.000Z" - }, - "events": [ - { - "uuid": "5744ad78-c6bd-41fd-b84d-65996b27ba78", - "start": { - "$date": "2022-07-22T03:06:19.000Z" - }, - "end": { - "$date": "2022-07-22T04:24:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "f3cc1c81-afbe-491f-bab9-97a6b6cded05", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-22T03:18:32.000Z" - }, - "end": { - "$date": "2022-07-22T04:35:34.000Z" - }, - "events": [ - { - "uuid": "4f45243d-d0df-48e1-af76-6218b5adaad0", - "start": { - "$date": "2022-07-22T03:18:32.000Z" - }, - "end": { - "$date": "2022-07-22T04:35:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "9b37c6f7-6a99-44ac-8022-297fa5ee2e79", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T03:18:51.000Z" - }, - "end": { - "$date": "2022-07-22T04:36:23.000Z" - }, - "events": [ - { - "uuid": "ee77aaf0-130d-475c-9d1b-6f0748c0cf24", - "start": { - "$date": "2022-07-22T03:18:51.000Z" - }, - "end": { - "$date": "2022-07-22T04:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c876ab7d-273e-4224-9086-363034f0e8c0", - "uuid": "b27ca7c6-d82f-4ab6-8164-ddfbfd302015", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-22T03:23:39.000Z" - }, - "end": { - "$date": "2022-07-22T04:25:01.000Z" - }, - "events": [ - { - "uuid": "21868a2d-b636-4e99-8da5-710c285d1752", - "start": { - "$date": "2022-07-22T03:23:39.000Z" - }, - "end": { - "$date": "2022-07-22T04:25:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4c5e785d-99ca-4374-a4af-3c35be10176d", - "uuid": "d556aea9-271c-4807-ac41-b9dd5adfc025", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-22T04:05:17.000Z" - }, - "end": { - "$date": "2022-07-22T05:02:27.000Z" - }, - "events": [ - { - "uuid": "f972a25b-a2d0-489b-a778-2cc48691a544", - "start": { - "$date": "2022-07-22T04:05:17.000Z" - }, - "end": { - "$date": "2022-07-22T05:02:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "1491a29f-9478-4175-afe0-b87d6ee9cc42", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-22T04:26:43.000Z" - }, - "end": { - "$date": "2022-07-22T05:49:49.000Z" - }, - "events": [ - { - "uuid": "1156fa80-c7b5-4189-a926-b41be43dd60e", - "start": { - "$date": "2022-07-22T04:26:43.000Z" - }, - "end": { - "$date": "2022-07-22T05:49:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "33c2e292-5028-43f6-85e7-8e48967b239c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T05:02:16.000Z" - }, - "end": { - "$date": "2022-07-22T07:26:11.000Z" - }, - "events": [ - { - "uuid": "ed7bc81e-12e7-4505-8f16-76374ef71979", - "start": { - "$date": "2022-07-22T05:02:16.000Z" - }, - "end": { - "$date": "2022-07-22T07:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "01291738-9655-4c0d-a5ed-5d359470d7e6", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-22T05:09:41.000Z" - }, - "end": { - "$date": "2022-07-22T06:15:29.000Z" - }, - "events": [ - { - "uuid": "ef313f2d-4659-40e8-b1f5-d0bd4eb00698", - "start": { - "$date": "2022-07-22T05:09:41.000Z" - }, - "end": { - "$date": "2022-07-22T06:15:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "fdbba47d-969a-44b3-beb3-bc93a1fda925", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-22T07:41:06.000Z" - }, - "end": { - "$date": "2022-07-22T08:03:15.000Z" - }, - "events": [ - { - "uuid": "e9a64487-adcf-4763-8c53-bc72d0e6cf43", - "start": { - "$date": "2022-07-22T07:41:06.000Z" - }, - "end": { - "$date": "2022-07-22T08:03:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "49d0aac6-f7c4-44a3-bec7-9f6d5299eaf9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-22T14:03:27.000Z" - }, - "end": { - "$date": "2022-07-22T14:18:34.000Z" - }, - "events": [ - { - "uuid": "9687c16c-1874-483c-afed-b8a1e1a3e11a", - "start": { - "$date": "2022-07-22T14:03:27.000Z" - }, - "end": { - "$date": "2022-07-22T14:18:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "58f54f99-1a86-43a1-895a-6e985744b58a", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T16:15:01.000Z" - }, - "end": { - "$date": "2022-07-22T16:42:44.000Z" - }, - "events": [ - { - "uuid": "6ecf64d0-0fb4-4e94-bbfd-23a6e6455938", - "start": { - "$date": "2022-07-22T16:15:01.000Z" - }, - "end": { - "$date": "2022-07-22T16:42:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "7b338349-758d-4e49-b3e7-94383f19a1d7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-22T16:32:40.000Z" - }, - "end": { - "$date": "2022-07-23T23:43:58.000Z" - }, - "events": [ - { - "uuid": "a70a9a01-e218-44a7-a2f2-a985070366d9", - "start": { - "$date": "2022-07-22T16:32:40.000Z" - }, - "end": { - "$date": "2022-07-23T09:37:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "1dfccfe3-eecd-4da0-908a-4bffe474d455", - "start": { - "$date": "2022-07-23T09:37:40.000Z" - }, - "end": { - "$date": "2022-07-23T09:42:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "029cea9d-5c18-4fbc-babe-2481adadbbc6", - "start": { - "$date": "2022-07-23T09:42:40.000Z" - }, - "end": { - "$date": "2022-07-23T09:52:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5b4f034c-0760-4f25-9ec8-cad86cb4cfc3", - "start": { - "$date": "2022-07-23T09:52:40.000Z" - }, - "end": { - "$date": "2022-07-23T14:39:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "6b972de1-2b7d-4a3b-bab7-4bcca8abfddd", - "start": { - "$date": "2022-07-23T14:39:40.000Z" - }, - "end": { - "$date": "2022-07-23T14:49:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cae59f73-0a86-4c17-86e3-781c9f0ae932", - "start": { - "$date": "2022-07-23T14:49:40.000Z" - }, - "end": { - "$date": "2022-07-23T14:50:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f25582c5-d3ed-4993-a660-bcb883b75598", - "start": { - "$date": "2022-07-23T14:50:40.000Z" - }, - "end": { - "$date": "2022-07-23T15:06:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5924498f-d10e-49f9-959a-186eca041fe1", - "start": { - "$date": "2022-07-23T15:06:40.000Z" - }, - "end": { - "$date": "2022-07-23T15:08:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "d6dc33db-9f3d-409d-ad0b-4186bcaf96a0", - "start": { - "$date": "2022-07-23T15:08:40.000Z" - }, - "end": { - "$date": "2022-07-23T19:14:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b45e2bc0-3061-4f38-8f9a-eac82d8d1afb", - "start": { - "$date": "2022-07-23T19:14:40.000Z" - }, - "end": { - "$date": "2022-07-23T19:27:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a8cb1dda-406f-4717-b9a2-27d3f7971f89", - "start": { - "$date": "2022-07-23T19:27:40.000Z" - }, - "end": { - "$date": "2022-07-23T19:39:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8f7aa5f8-5184-4828-906e-833e46d4d62c", - "start": { - "$date": "2022-07-23T19:39:40.000Z" - }, - "end": { - "$date": "2022-07-23T20:16:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c1c1155a-8c14-4436-9415-3467fc559669", - "start": { - "$date": "2022-07-23T20:16:40.000Z" - }, - "end": { - "$date": "2022-07-23T20:27:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0b6b3a64-040d-4100-beaf-31ceebbe20c4", - "start": { - "$date": "2022-07-23T20:27:40.000Z" - }, - "end": { - "$date": "2022-07-23T20:58:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b6314c11-a45c-411d-aa16-3271e4692f75", - "start": { - "$date": "2022-07-23T20:58:40.000Z" - }, - "end": { - "$date": "2022-07-23T21:15:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "74108a64-d8af-4493-a7ba-ac3ffa15c5e5", - "start": { - "$date": "2022-07-23T21:15:40.000Z" - }, - "end": { - "$date": "2022-07-23T21:55:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7175024b-0152-46e4-bc13-34d25029420d", - "start": { - "$date": "2022-07-23T21:55:40.000Z" - }, - "end": { - "$date": "2022-07-23T22:05:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "cd3863e6-428b-4748-99a8-aae7381d3cb1", - "start": { - "$date": "2022-07-23T22:05:40.000Z" - }, - "end": { - "$date": "2022-07-23T22:22:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f838caee-2339-403d-b0ae-d7837386ae20", - "start": { - "$date": "2022-07-23T22:22:40.000Z" - }, - "end": { - "$date": "2022-07-23T22:32:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ee6893dd-f961-46bc-9b96-56e2c6b48451", - "start": { - "$date": "2022-07-23T22:32:40.000Z" - }, - "end": { - "$date": "2022-07-23T23:04:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "099c0a9f-3831-4543-a158-e50832203770", - "start": { - "$date": "2022-07-23T23:04:40.000Z" - }, - "end": { - "$date": "2022-07-23T23:14:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b439e923-145f-4dec-b1ac-21bbc195644a", - "start": { - "$date": "2022-07-23T23:14:40.000Z" - }, - "end": { - "$date": "2022-07-23T23:43:58.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "46c4e9be-faf7-4805-8241-6bf54fe433c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T17:27:43.000Z" - }, - "end": { - "$date": "2022-07-22T17:30:17.000Z" - }, - "events": [ - { - "uuid": "c71fdd21-0ead-488a-87bd-fe88f8dcd4ea", - "start": { - "$date": "2022-07-22T17:27:43.000Z" - }, - "end": { - "$date": "2022-07-22T17:30:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1baf5f34-bc72-4e56-ab3d-7a9520bcef86", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-22T19:34:07.000Z" - }, - "end": { - "$date": "2022-07-22T20:02:30.000Z" - }, - "events": [ - { - "uuid": "11e6ce52-d079-4e28-9105-48d2c95d4417", - "start": { - "$date": "2022-07-22T19:34:07.000Z" - }, - "end": { - "$date": "2022-07-22T20:02:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "5aae76e7-ea06-4c70-ad0e-bf36cb9b5b9c", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-22T20:08:29.000Z" - }, - "end": { - "$date": "2022-07-22T20:52:52.000Z" - }, - "events": [ - { - "uuid": "36490c6e-fcc2-40ce-9e57-82ad1c453ee5", - "start": { - "$date": "2022-07-22T20:08:29.000Z" - }, - "end": { - "$date": "2022-07-22T20:52:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "f4153324-3c3d-466c-ba1f-ae29b347a509", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T20:28:56.000Z" - }, - "end": { - "$date": "2022-07-22T21:08:12.000Z" - }, - "events": [ - { - "uuid": "48a42660-9e69-4671-b560-ee84805803c7", - "start": { - "$date": "2022-07-22T20:28:56.000Z" - }, - "end": { - "$date": "2022-07-22T21:08:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "b74fb26b-4b15-4653-a849-49280ea3a226", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-22T21:10:07.000Z" - }, - "end": { - "$date": "2022-07-22T23:59:26.000Z" - }, - "events": [ - { - "uuid": "43faa914-803b-4e8e-b8a7-4af6777f47dd", - "start": { - "$date": "2022-07-22T21:10:07.000Z" - }, - "end": { - "$date": "2022-07-22T23:59:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "426f74e1-c79d-4e80-9c5e-9e684c7fd4ae", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-22T22:21:35.000Z" - }, - "end": { - "$date": "2022-07-22T23:22:00.000Z" - }, - "events": [ - { - "uuid": "f4f146c6-7395-4513-92cf-2b4fe3b017ac", - "start": { - "$date": "2022-07-22T22:21:35.000Z" - }, - "end": { - "$date": "2022-07-22T23:22:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e90326f-c031-47de-a81f-077fc442aa5b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-22T23:29:51.000Z" - }, - "end": { - "$date": "2022-07-23T00:07:21.000Z" - }, - "events": [ - { - "uuid": "100f0f76-71f4-44fd-9d76-a97342934a48", - "start": { - "$date": "2022-07-22T23:29:51.000Z" - }, - "end": { - "$date": "2022-07-23T00:07:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "4d99b687-106b-4314-865a-89863ac5b2d7", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-22T23:59:42.000Z" - }, - "end": { - "$date": "2022-07-23T01:15:27.000Z" - }, - "events": [ - { - "uuid": "f989990a-310d-4a5e-b6d1-487b613514d1", - "start": { - "$date": "2022-07-22T23:59:42.000Z" - }, - "end": { - "$date": "2022-07-23T00:55:42.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "060b6d4d-323b-42bb-b56f-48ab83ba9db6", - "start": { - "$date": "2022-07-23T00:55:42.000Z" - }, - "end": { - "$date": "2022-07-23T01:15:27.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "012b8834-f46b-4b6f-87e6-29cb9449e08e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T00:10:40.000Z" - }, - "end": { - "$date": "2022-07-23T00:32:30.000Z" - }, - "events": [ - { - "uuid": "a8a6257d-782d-49fa-9302-0e12e7451f20", - "start": { - "$date": "2022-07-23T00:10:40.000Z" - }, - "end": { - "$date": "2022-07-23T00:32:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "79474215-b2bc-4850-97b7-54686d7031d5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T00:40:25.000Z" - }, - "end": { - "$date": "2022-07-23T01:11:50.000Z" - }, - "events": [ - { - "uuid": "51995461-fb8b-4974-a120-84fdc32fa1eb", - "start": { - "$date": "2022-07-23T00:40:25.000Z" - }, - "end": { - "$date": "2022-07-23T01:11:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "66ecf597-6f2a-429e-a672-86d659bf5227", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T01:13:24.000Z" - }, - "end": { - "$date": "2022-07-23T01:48:42.000Z" - }, - "events": [ - { - "uuid": "4367acf1-9518-4200-8a49-83eacfcd528e", - "start": { - "$date": "2022-07-23T01:13:24.000Z" - }, - "end": { - "$date": "2022-07-23T01:48:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "49644a7e-39d5-4508-ba81-ee42606bd32a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T01:34:59.000Z" - }, - "end": { - "$date": "2022-07-23T01:47:44.000Z" - }, - "events": [ - { - "uuid": "763e2cac-330f-4017-b6b9-fe7c18c8e84f", - "start": { - "$date": "2022-07-23T01:34:59.000Z" - }, - "end": { - "$date": "2022-07-23T01:47:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "bc5a1406-4ae6-4de2-aab1-dec70a6527fe", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T02:18:45.000Z" - }, - "end": { - "$date": "2022-07-23T02:55:45.000Z" - }, - "events": [ - { - "uuid": "16b7d0a5-e398-4f63-8d2b-6e6c65be6aee", - "start": { - "$date": "2022-07-23T02:18:45.000Z" - }, - "end": { - "$date": "2022-07-23T02:55:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "74e3190d-c2fc-48ad-ad03-291e9a733962", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T02:35:51.000Z" - }, - "end": { - "$date": "2022-07-23T02:40:15.000Z" - }, - "events": [ - { - "uuid": "9b88ca53-3fbf-4c95-8c36-6c8160f7b81c", - "start": { - "$date": "2022-07-23T02:35:51.000Z" - }, - "end": { - "$date": "2022-07-23T02:40:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "48ed3cef-ac82-4469-8e1b-3d2b4723a310", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T02:56:03.000Z" - }, - "end": { - "$date": "2022-07-23T04:22:41.000Z" - }, - "events": [ - { - "uuid": "b547d764-cd9c-464b-8633-a7d67194031b", - "start": { - "$date": "2022-07-23T02:56:03.000Z" - }, - "end": { - "$date": "2022-07-23T04:22:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "1c17dd52-f703-49b0-b34f-a6b54151d89e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T02:57:00.000Z" - }, - "end": { - "$date": "2022-07-23T04:20:53.000Z" - }, - "events": [ - { - "uuid": "1a941f2b-b344-4cd8-ae01-ba2de69fcbe4", - "start": { - "$date": "2022-07-23T02:57:00.000Z" - }, - "end": { - "$date": "2022-07-23T04:20:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "69f406ff-abe1-4c82-acf8-1b42ca81ddf7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T02:58:07.000Z" - }, - "end": { - "$date": "2022-07-23T03:11:57.000Z" - }, - "events": [ - { - "uuid": "97e51360-2c03-4392-bf88-42d9a56d1d86", - "start": { - "$date": "2022-07-23T02:58:07.000Z" - }, - "end": { - "$date": "2022-07-23T03:11:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "4c51b9e1-2a74-43a2-819a-1cff540c70dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T03:12:12.000Z" - }, - "end": { - "$date": "2022-07-23T04:20:55.000Z" - }, - "events": [ - { - "uuid": "baecd4cf-6b56-438f-9e47-7be32132ee4b", - "start": { - "$date": "2022-07-23T03:12:12.000Z" - }, - "end": { - "$date": "2022-07-23T04:20:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "e2b3734d-0046-4fb7-b0ba-26b501c34bff", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-23T03:29:50.000Z" - }, - "end": { - "$date": "2022-07-23T06:08:23.000Z" - }, - "events": [ - { - "uuid": "01fa83e5-3d0f-46c8-8f8b-ad6dd10ca6ae", - "start": { - "$date": "2022-07-23T03:29:50.000Z" - }, - "end": { - "$date": "2022-07-23T06:08:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "670c9d89-5bd3-405d-99c8-75afe78b2475", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-23T03:39:40.000Z" - }, - "end": { - "$date": "2022-07-23T03:41:46.000Z" - }, - "events": [ - { - "uuid": "67d6fde7-c1ff-409d-af8b-fe44617929a3", - "start": { - "$date": "2022-07-23T03:39:40.000Z" - }, - "end": { - "$date": "2022-07-23T03:41:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "014f3bf9-1dde-4e47-b4d3-f8db16915120", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-23T03:42:15.000Z" - }, - "end": { - "$date": "2022-07-23T06:08:27.000Z" - }, - "events": [ - { - "uuid": "b34de223-3b91-46ff-afed-896ca9b60a30", - "start": { - "$date": "2022-07-23T03:42:15.000Z" - }, - "end": { - "$date": "2022-07-23T06:08:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "027cabdb-f1d1-4399-8548-cab47d25f23a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-23T04:02:53.000Z" - }, - "end": { - "$date": "2022-07-23T06:23:47.000Z" - }, - "events": [ - { - "uuid": "5d1e17ca-9990-4978-be9b-5fb8ff4d100e", - "start": { - "$date": "2022-07-23T04:02:53.000Z" - }, - "end": { - "$date": "2022-07-23T06:23:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "c6250432-dc99-4ca4-96e4-d4375a815360", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T04:23:07.000Z" - }, - "end": { - "$date": "2022-07-23T05:17:53.000Z" - }, - "events": [ - { - "uuid": "d29fd51b-51dc-47de-9ef5-942d070a12b6", - "start": { - "$date": "2022-07-23T04:23:07.000Z" - }, - "end": { - "$date": "2022-07-23T05:17:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "5bb5b906-74f8-4b89-9269-14e5898b522c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T04:23:19.000Z" - }, - "end": { - "$date": "2022-07-23T04:25:24.000Z" - }, - "events": [ - { - "uuid": "a190ad3e-3072-469f-b0cd-b8b452582b50", - "start": { - "$date": "2022-07-23T04:23:19.000Z" - }, - "end": { - "$date": "2022-07-23T04:25:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "baeee821-ffd5-4c45-b712-fe05295b88f8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T04:25:50.000Z" - }, - "end": { - "$date": "2022-07-23T05:18:06.000Z" - }, - "events": [ - { - "uuid": "1c6686d1-ccb2-4913-8b3a-7e4a8cd0465f", - "start": { - "$date": "2022-07-23T04:25:50.000Z" - }, - "end": { - "$date": "2022-07-23T05:18:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "95e747a5-4e2f-4482-9705-ebbdced9f569", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T04:28:30.000Z" - }, - "end": { - "$date": "2022-07-23T04:52:31.000Z" - }, - "events": [ - { - "uuid": "1ae1220b-4f40-4b43-8eb1-943be5d026dc", - "start": { - "$date": "2022-07-23T04:28:30.000Z" - }, - "end": { - "$date": "2022-07-23T04:52:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9c6fd030-a0c8-4d3b-be1a-e44e3db02675", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-23T04:41:17.000Z" - }, - "end": { - "$date": "2022-07-23T04:43:12.000Z" - }, - "events": [ - { - "uuid": "751918fd-6bbb-4a35-afef-ccf0ed13a5b9", - "start": { - "$date": "2022-07-23T04:41:17.000Z" - }, - "end": { - "$date": "2022-07-23T04:43:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "304576df-e51f-4122-a19b-7cc6411de002", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-23T04:43:38.000Z" - }, - "end": { - "$date": "2022-07-23T06:08:31.000Z" - }, - "events": [ - { - "uuid": "f9aefb59-92d1-47b0-a487-444a0d6b539c", - "start": { - "$date": "2022-07-23T04:43:38.000Z" - }, - "end": { - "$date": "2022-07-23T06:08:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "16dd9e8a-16cb-4db4-a7bf-96d095cc03c6", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T05:19:36.000Z" - }, - "end": { - "$date": "2022-07-23T05:31:46.000Z" - }, - "events": [ - { - "uuid": "ade2bbea-57fc-4a9f-a041-f9b77518dafa", - "start": { - "$date": "2022-07-23T05:19:36.000Z" - }, - "end": { - "$date": "2022-07-23T05:31:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6c58c0a-95bd-46bf-a6e0-b150f9bd87d4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T05:35:55.000Z" - }, - "end": { - "$date": "2022-07-23T06:16:04.000Z" - }, - "events": [ - { - "uuid": "aa60ea58-004d-4672-97e6-86bc35bfd5c9", - "start": { - "$date": "2022-07-23T05:35:55.000Z" - }, - "end": { - "$date": "2022-07-23T06:16:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "c76d35fe-787d-4fb8-b368-35f3f467ac45", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T05:36:40.000Z" - }, - "end": { - "$date": "2022-07-23T05:58:33.000Z" - }, - "events": [ - { - "uuid": "d533808f-a1f3-4743-bb88-e4136f694e33", - "start": { - "$date": "2022-07-23T05:36:40.000Z" - }, - "end": { - "$date": "2022-07-23T05:58:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "16a00b54-130d-497c-b759-b79969fe41cd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-23T05:40:33.000Z" - }, - "end": { - "$date": "2022-07-23T06:56:21.000Z" - }, - "events": [ - { - "uuid": "10a14d2c-4669-491e-a8dd-18fbc0d0fd4e", - "start": { - "$date": "2022-07-23T05:40:33.000Z" - }, - "end": { - "$date": "2022-07-23T06:56:21.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "591433d5-e886-4601-a9c2-d698a8022687", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T05:46:40.000Z" - }, - "end": { - "$date": "2022-07-23T13:48:50.000Z" - }, - "events": [ - { - "uuid": "e88b72c3-7393-4a4f-8f83-7f556db23730", - "start": { - "$date": "2022-07-23T05:46:40.000Z" - }, - "end": { - "$date": "2022-07-23T08:01:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c716d3bd-8b3d-4efc-88c7-fb25da23682f", - "start": { - "$date": "2022-07-23T08:01:40.000Z" - }, - "end": { - "$date": "2022-07-23T08:06:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "b28ca4de-cf8d-4195-83e5-d29c753ac92a", - "start": { - "$date": "2022-07-23T08:06:40.000Z" - }, - "end": { - "$date": "2022-07-23T08:16:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "50e1e576-c300-4530-b42c-26c41300f203", - "start": { - "$date": "2022-07-23T08:16:40.000Z" - }, - "end": { - "$date": "2022-07-23T13:16:40.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c637640c-5e8a-4125-b05a-26f3a49c6cd8", - "start": { - "$date": "2022-07-23T13:16:40.000Z" - }, - "end": { - "$date": "2022-07-23T13:26:40.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "c856061e-9047-4a2e-bd14-4d3e5b2d908a", - "start": { - "$date": "2022-07-23T13:26:40.000Z" - }, - "end": { - "$date": "2022-07-23T13:48:50.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "fbbf0f9c-7d3a-45d9-9639-0aa9c44e2a2e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T05:46:48.000Z" - }, - "end": { - "$date": "2022-07-23T08:36:15.000Z" - }, - "events": [ - { - "uuid": "f9bf0ad4-3c3d-4b52-90ef-d55b5d648899", - "start": { - "$date": "2022-07-23T05:46:48.000Z" - }, - "end": { - "$date": "2022-07-23T08:36:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "3fbe56c7-6fb3-4692-97d8-976567d3342b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T06:00:50.000Z" - }, - "end": { - "$date": "2022-07-23T08:38:30.000Z" - }, - "events": [ - { - "uuid": "d89a7f69-6287-4e5e-b775-1e8d0e38fa3c", - "start": { - "$date": "2022-07-23T06:00:50.000Z" - }, - "end": { - "$date": "2022-07-23T08:38:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "304f4bd6-11a8-49f5-9289-3ad0f85ace8e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T06:17:45.000Z" - }, - "end": { - "$date": "2022-07-23T06:53:41.000Z" - }, - "events": [ - { - "uuid": "53e92365-552f-4722-a14d-f83cea51b511", - "start": { - "$date": "2022-07-23T06:17:45.000Z" - }, - "end": { - "$date": "2022-07-23T06:53:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "f1042f73-519f-44c4-9788-b091b7097818", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-23T06:23:56.000Z" - }, - "end": { - "$date": "2022-07-23T07:26:21.000Z" - }, - "events": [ - { - "uuid": "64571750-11fd-41de-ac01-ee74d13ae619", - "start": { - "$date": "2022-07-23T06:23:56.000Z" - }, - "end": { - "$date": "2022-07-23T07:26:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32178b7f-3293-435d-8397-878aaa164ee6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T06:55:29.000Z" - }, - "end": { - "$date": "2022-07-23T07:32:27.000Z" - }, - "events": [ - { - "uuid": "6054db79-0663-4524-a4ca-1ac07cdba21e", - "start": { - "$date": "2022-07-23T06:55:29.000Z" - }, - "end": { - "$date": "2022-07-23T07:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "afd253e9-0d12-46a2-9502-ad220e71473b", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-23T06:56:46.000Z" - }, - "end": { - "$date": "2022-07-23T09:30:24.000Z" - }, - "events": [ - { - "uuid": "7a636b8b-22da-47b9-a445-128451c76726", - "start": { - "$date": "2022-07-23T06:56:46.000Z" - }, - "end": { - "$date": "2022-07-23T09:30:24.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "cc99bc68-e058-43b4-b97c-ecc7bdc9ec61", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T07:33:02.000Z" - }, - "end": { - "$date": "2022-07-23T08:42:38.000Z" - }, - "events": [ - { - "uuid": "81efa881-d03f-4cdf-ac94-4c9c019e0975", - "start": { - "$date": "2022-07-23T07:33:02.000Z" - }, - "end": { - "$date": "2022-07-23T08:42:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "d673fe21-9c94-4f84-aec6-dd1d143e5cb0", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-23T10:32:18.000Z" - }, - "end": { - "$date": "2022-07-23T10:32:22.000Z" - }, - "events": [ - { - "uuid": "1e996719-64de-4ffd-8be8-879815796613", - "start": { - "$date": "2022-07-23T10:32:18.000Z" - }, - "end": { - "$date": "2022-07-23T10:32:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "259d1da5-0598-44d6-a9b6-7e0d4a302118", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T13:12:38.000Z" - }, - "end": { - "$date": "2022-07-23T13:18:52.000Z" - }, - "events": [ - { - "uuid": "6c3e5ffb-4d79-4281-859b-e866516c6925", - "start": { - "$date": "2022-07-23T13:12:38.000Z" - }, - "end": { - "$date": "2022-07-23T13:18:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "2895f2ec-2332-408f-a871-502d86e70bda", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T14:38:40.000Z" - }, - "end": { - "$date": "2022-07-23T14:44:14.000Z" - }, - "events": [ - { - "uuid": "a84b281d-8a50-4931-af98-c2192fbbdf66", - "start": { - "$date": "2022-07-23T14:38:40.000Z" - }, - "end": { - "$date": "2022-07-23T14:44:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5cb22fe8-6555-4511-9a93-b070f7d678c6", - "uuid": "8fc337f8-1ce0-452d-a2e5-c5e0c7fdc196", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T15:52:59.000Z" - }, - "end": { - "$date": "2022-07-23T16:15:00.000Z" - }, - "events": [ - { - "uuid": "d625b5aa-30b5-4d77-aca1-ec64e316c0b6", - "start": { - "$date": "2022-07-23T15:52:59.000Z" - }, - "end": { - "$date": "2022-07-23T16:15:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "5d6167e3-3edd-4733-958c-e6b8df80a33d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T16:42:32.000Z" - }, - "end": { - "$date": "2022-07-23T17:11:34.000Z" - }, - "events": [ - { - "uuid": "d27194eb-eb26-41ef-9354-a22379bb6dd9", - "start": { - "$date": "2022-07-23T16:42:32.000Z" - }, - "end": { - "$date": "2022-07-23T17:11:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "d1a0c15c-7791-455f-926d-e509bbe8c935", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T17:11:54.000Z" - }, - "end": { - "$date": "2022-07-23T17:25:50.000Z" - }, - "events": [ - { - "uuid": "72d1a904-8301-4edc-8d0a-588b6ccf68a2", - "start": { - "$date": "2022-07-23T17:11:54.000Z" - }, - "end": { - "$date": "2022-07-23T17:25:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "72a5bc11-5b09-4612-88ef-bfa45b54bb39", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T17:39:11.000Z" - }, - "end": { - "$date": "2022-07-23T19:04:24.000Z" - }, - "events": [ - { - "uuid": "9030bb1d-5316-4108-b979-36d3cfb9770e", - "start": { - "$date": "2022-07-23T17:39:11.000Z" - }, - "end": { - "$date": "2022-07-23T17:50:11.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9a5c4dad-d1f9-49cd-9b60-9d733e55692e", - "start": { - "$date": "2022-07-23T17:50:11.000Z" - }, - "end": { - "$date": "2022-07-23T17:51:11.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "41896331-fb63-4671-9164-bed15598fe70", - "start": { - "$date": "2022-07-23T17:51:11.000Z" - }, - "end": { - "$date": "2022-07-23T19:04:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "8449f7b9-cb78-49d0-adeb-7728d2b8426d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T19:26:11.000Z" - }, - "end": { - "$date": "2022-07-23T19:33:27.000Z" - }, - "events": [ - { - "uuid": "80c3ff16-f522-4fd6-8d61-3012b7bd85c3", - "start": { - "$date": "2022-07-23T19:26:11.000Z" - }, - "end": { - "$date": "2022-07-23T19:33:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d4c1c1e6-1135-46f1-b413-bd23d2e0005c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T19:31:47.000Z" - }, - "end": { - "$date": "2022-07-23T20:29:05.000Z" - }, - "events": [ - { - "uuid": "aff36f93-829e-4d21-90fb-2957462bd979", - "start": { - "$date": "2022-07-23T19:31:47.000Z" - }, - "end": { - "$date": "2022-07-23T20:29:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "98285237-bc32-4bca-92b1-f7e755136541", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T19:33:36.000Z" - }, - "end": { - "$date": "2022-07-23T20:29:02.000Z" - }, - "events": [ - { - "uuid": "695584e7-aaf8-406e-b696-44eae4ac5ce5", - "start": { - "$date": "2022-07-23T19:33:36.000Z" - }, - "end": { - "$date": "2022-07-23T20:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "cbe282b2-ec80-41ba-ac17-c7d79a5dcae1", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T19:41:02.000Z" - }, - "end": { - "$date": "2022-07-23T20:58:37.000Z" - }, - "events": [ - { - "uuid": "1e41df8d-3602-4c88-91f1-c5a613f9f524", - "start": { - "$date": "2022-07-23T19:41:02.000Z" - }, - "end": { - "$date": "2022-07-23T20:58:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "d72107cf-e5c5-47eb-8e6c-7fcd75a715c8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-23T20:29:07.000Z" - }, - "end": { - "$date": "2022-07-23T21:07:43.000Z" - }, - "events": [ - { - "uuid": "4360c3eb-3115-442f-b458-46ee67815351", - "start": { - "$date": "2022-07-23T20:29:07.000Z" - }, - "end": { - "$date": "2022-07-23T21:07:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "62c2ce71-c29c-4049-89e0-7a511701fb4c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-23T20:29:09.000Z" - }, - "end": { - "$date": "2022-07-23T22:00:23.000Z" - }, - "events": [ - { - "uuid": "038d8d43-967b-4ac4-bf86-283b96fb9df4", - "start": { - "$date": "2022-07-23T20:29:09.000Z" - }, - "end": { - "$date": "2022-07-23T21:16:09.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "faec7aef-bc0b-440e-9d1e-beb4a3d91faf", - "start": { - "$date": "2022-07-23T21:16:09.000Z" - }, - "end": { - "$date": "2022-07-23T21:21:09.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "36e758fd-0a0e-46b7-8bee-078f0d80c3a9", - "start": { - "$date": "2022-07-23T21:21:09.000Z" - }, - "end": { - "$date": "2022-07-23T22:00:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "ebda77e0-d280-4df5-bc7f-8ed2245a27b3", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-23T21:05:35.000Z" - }, - "end": { - "$date": "2022-07-23T21:11:15.000Z" - }, - "events": [ - { - "uuid": "618e4000-51ad-45f2-b250-77e7665c7a4f", - "start": { - "$date": "2022-07-23T21:05:35.000Z" - }, - "end": { - "$date": "2022-07-23T21:11:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "a6a3fe7f-c49b-4edd-bfc2-30c62a089749", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-23T21:43:54.000Z" - }, - "end": { - "$date": "2022-07-23T22:58:18.000Z" - }, - "events": [ - { - "uuid": "fee80e22-ea90-47e9-9d03-b447ddc82680", - "start": { - "$date": "2022-07-23T21:43:54.000Z" - }, - "end": { - "$date": "2022-07-23T22:58:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "2cc923d2-7693-4393-b6e9-f4e0f828ae39", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-23T21:55:28.000Z" - }, - "end": { - "$date": "2022-07-23T23:10:45.000Z" - }, - "events": [ - { - "uuid": "0bcd724e-a3b2-492a-9150-5d594f6fd961", - "start": { - "$date": "2022-07-23T21:55:28.000Z" - }, - "end": { - "$date": "2022-07-23T23:10:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "67fa937d-7078-424d-b091-5f345f1388a9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-23T23:51:26.000Z" - }, - "end": { - "$date": "2022-07-24T00:31:56.000Z" - }, - "events": [ - { - "uuid": "08d77b0f-5314-4fbb-b7d8-8cbd22218346", - "start": { - "$date": "2022-07-23T23:51:26.000Z" - }, - "end": { - "$date": "2022-07-24T00:31:56.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "75e2b5c3-dba2-4e99-a1e8-0f9b8f790e5f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T00:01:24.000Z" - }, - "end": { - "$date": "2022-07-24T00:40:11.000Z" - }, - "events": [ - { - "uuid": "68449983-560e-4219-b628-4d314c4d5885", - "start": { - "$date": "2022-07-24T00:01:24.000Z" - }, - "end": { - "$date": "2022-07-24T00:40:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ad4e2b26-0810-4b93-869f-a85126d78a3c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T00:41:27.000Z" - }, - "end": { - "$date": "2022-07-24T01:16:09.000Z" - }, - "events": [ - { - "uuid": "2288421f-0ac4-4969-9d9a-ed9ede6a5240", - "start": { - "$date": "2022-07-24T00:41:27.000Z" - }, - "end": { - "$date": "2022-07-24T01:16:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2ad75faa-2f73-4209-adc2-0ec9a5b5a9af", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T01:42:03.000Z" - }, - "end": { - "$date": "2022-07-24T02:17:15.000Z" - }, - "events": [ - { - "uuid": "1f00409a-c29a-4348-bf97-4c6d9c79c0c0", - "start": { - "$date": "2022-07-24T01:42:03.000Z" - }, - "end": { - "$date": "2022-07-24T01:43:03.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "4b4f3739-1e75-40a7-ab68-52cc4e533682", - "start": { - "$date": "2022-07-24T01:43:03.000Z" - }, - "end": { - "$date": "2022-07-24T02:17:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "146cbaf7-729a-423d-8190-c36b065210c7", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T02:29:42.000Z" - }, - "end": { - "$date": "2022-07-24T02:52:14.000Z" - }, - "events": [ - { - "uuid": "7ecf9b4e-81ce-4d2d-90f6-9f778b3d0c7f", - "start": { - "$date": "2022-07-24T02:29:42.000Z" - }, - "end": { - "$date": "2022-07-24T02:52:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "738b6dce-8fb4-4a1f-8ac8-85c0589f8607", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-24T02:36:00.000Z" - }, - "end": { - "$date": "2022-07-24T07:27:11.000Z" - }, - "events": [ - { - "uuid": "72cd756f-51fd-409a-8c7f-9c54099c300a", - "start": { - "$date": "2022-07-24T02:36:00.000Z" - }, - "end": { - "$date": "2022-07-24T07:27:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a701afb0-dfa6-42ef-bd10-d8c6fe2a14e1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T02:57:59.000Z" - }, - "end": { - "$date": "2022-07-24T03:15:27.000Z" - }, - "events": [ - { - "uuid": "c777996d-78d6-40d0-adcb-ba697cd5e0ba", - "start": { - "$date": "2022-07-24T02:57:59.000Z" - }, - "end": { - "$date": "2022-07-24T03:15:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "d90be827-9d67-4d00-8d30-542066615810", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-24T03:02:04.000Z" - }, - "end": { - "$date": "2022-07-24T03:07:00.000Z" - }, - "events": [ - { - "uuid": "69204d58-db32-4c7f-96d1-e79cd60d39a0", - "start": { - "$date": "2022-07-24T03:02:04.000Z" - }, - "end": { - "$date": "2022-07-24T03:07:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "287048ed-2355-433e-8840-8ae62bf5b16a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-24T03:07:31.000Z" - }, - "end": { - "$date": "2022-07-24T03:09:33.000Z" - }, - "events": [ - { - "uuid": "80957e82-a2ef-42cb-a3e8-184947bfc90b", - "start": { - "$date": "2022-07-24T03:07:31.000Z" - }, - "end": { - "$date": "2022-07-24T03:09:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "3232ddf5-3f96-4942-87c9-40add182534a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-24T03:12:47.000Z" - }, - "end": { - "$date": "2022-07-24T07:01:51.000Z" - }, - "events": [ - { - "uuid": "5ed35969-5ea6-4292-977a-141a708a1d67", - "start": { - "$date": "2022-07-24T03:12:47.000Z" - }, - "end": { - "$date": "2022-07-24T07:01:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fb2ed1b2-0533-4b77-9fb2-0ccec6ea844c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T03:18:36.000Z" - }, - "end": { - "$date": "2022-07-24T03:51:21.000Z" - }, - "events": [ - { - "uuid": "c048f6ea-7c7a-43fe-adb3-04909f287921", - "start": { - "$date": "2022-07-24T03:18:36.000Z" - }, - "end": { - "$date": "2022-07-24T03:51:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "6097db5e-34d3-46ac-85d6-83e1b117e797", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-24T03:33:06.000Z" - }, - "end": { - "$date": "2022-07-24T06:16:01.000Z" - }, - "events": [ - { - "uuid": "734e532a-6b76-499b-a163-49f8ead7e63b", - "start": { - "$date": "2022-07-24T03:33:06.000Z" - }, - "end": { - "$date": "2022-07-24T06:16:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b25c4122-8d90-4557-b8d6-3c29fdd88d5a", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T03:53:53.000Z" - }, - "end": { - "$date": "2022-07-24T04:19:19.000Z" - }, - "events": [ - { - "uuid": "635e6c40-6b60-4c24-aef2-c1e49161bbde", - "start": { - "$date": "2022-07-24T03:53:53.000Z" - }, - "end": { - "$date": "2022-07-24T04:19:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "76e2d0fb-fb6c-4bde-bed6-9dc0f7e449d6", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-24T04:06:44.000Z" - }, - "end": { - "$date": "2022-07-24T07:04:35.000Z" - }, - "events": [ - { - "uuid": "d4a450d6-b4a0-4354-a96e-72674d7ad8e5", - "start": { - "$date": "2022-07-24T04:06:44.000Z" - }, - "end": { - "$date": "2022-07-24T07:04:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "df49eb13-7a00-4feb-bfd6-ad4fc2bf9da6", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-24T04:07:40.000Z" - }, - "end": { - "$date": "2022-07-24T07:12:58.000Z" - }, - "events": [ - { - "uuid": "c3e5c34e-8975-403c-8c94-dfcd700816a6", - "start": { - "$date": "2022-07-24T04:07:40.000Z" - }, - "end": { - "$date": "2022-07-24T07:12:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5d81af95-c66a-4884-aee2-ddb76cd91bcc", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T04:21:34.000Z" - }, - "end": { - "$date": "2022-07-24T04:50:52.000Z" - }, - "events": [ - { - "uuid": "ba544d66-2475-4f1a-92c0-c5ad2db09616", - "start": { - "$date": "2022-07-24T04:21:34.000Z" - }, - "end": { - "$date": "2022-07-24T04:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f2201048-06e9-4b4e-88b4-86a8babb7701", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T04:53:25.000Z" - }, - "end": { - "$date": "2022-07-24T05:11:48.000Z" - }, - "events": [ - { - "uuid": "3b1eeabf-9d09-4562-9b67-b78559ed1d49", - "start": { - "$date": "2022-07-24T04:53:25.000Z" - }, - "end": { - "$date": "2022-07-24T05:11:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "341eb99c-f5da-4bdb-a7e0-de8e7a90b8a6", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-24T07:03:01.000Z" - }, - "end": { - "$date": "2022-07-24T07:31:12.000Z" - }, - "events": [ - { - "uuid": "4a264d9d-9238-4be8-b712-9ff32006e483", - "start": { - "$date": "2022-07-24T07:03:01.000Z" - }, - "end": { - "$date": "2022-07-24T07:31:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "2e086d09-b237-4ea0-b29d-78a7bfa2e48f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-24T07:33:02.000Z" - }, - "end": { - "$date": "2022-07-24T08:17:12.000Z" - }, - "events": [ - { - "uuid": "b140161d-a615-4c70-af21-2d8cbb34636b", - "start": { - "$date": "2022-07-24T07:33:02.000Z" - }, - "end": { - "$date": "2022-07-24T08:17:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "7f99656a-f116-4d3b-bac0-2276e5a19d1c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-24T15:05:14.000Z" - }, - "end": { - "$date": "2022-07-24T15:29:45.000Z" - }, - "events": [ - { - "uuid": "b15ed8a4-9e50-4c89-b6e3-5b512b124f3e", - "start": { - "$date": "2022-07-24T15:05:14.000Z" - }, - "end": { - "$date": "2022-07-24T15:29:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "698dd77e-a27d-4fc3-9f0a-fc6a07b3a14c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-24T17:30:00.000Z" - }, - "end": { - "$date": "2022-07-24T17:37:50.000Z" - }, - "events": [ - { - "uuid": "f3cc2b78-112e-4ba9-b077-71e388c460a5", - "start": { - "$date": "2022-07-24T17:30:00.000Z" - }, - "end": { - "$date": "2022-07-24T18:24:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "617e625c-6436-4069-9f34-ca5b976195cf", - "start": { - "$date": "2022-07-24T18:24:00.000Z" - }, - "end": { - "$date": "2022-07-24T18:29:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0f0309d8-2f96-46e3-a789-78758c161277", - "start": { - "$date": "2022-07-24T18:29:00.000Z" - }, - "end": { - "$date": "2022-07-24T18:39:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ce50b1eb-fba1-4909-9cb8-9f1cd1ceba1e", - "start": { - "$date": "2022-07-24T18:39:00.000Z" - }, - "end": { - "$date": "2022-07-24T18:46:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "fbc0e66d-0c8f-4cf9-8fc8-15ff44ef1141", - "start": { - "$date": "2022-07-24T18:46:00.000Z" - }, - "end": { - "$date": "2022-07-24T17:37:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "b403883b-08d2-4287-ac18-d58e0f995ac1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-24T17:42:32.000Z" - }, - "end": { - "$date": "2022-07-24T17:47:38.000Z" - }, - "events": [ - { - "uuid": "9fd0caf5-1030-42ea-81dc-46ce21f38dcb", - "start": { - "$date": "2022-07-24T17:42:32.000Z" - }, - "end": { - "$date": "2022-07-24T17:47:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "27ff9ac4-0694-4b9f-a3db-7028e1b92060", - "uuid": "62bd0446-715e-448c-98f9-f3916762d26f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-24T17:50:08.000Z" - }, - "end": { - "$date": "2022-07-24T19:04:52.000Z" - }, - "events": [ - { - "uuid": "083e0178-6dc5-4230-ac99-23881e17b508", - "start": { - "$date": "2022-07-24T17:50:08.000Z" - }, - "end": { - "$date": "2022-07-24T19:04:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "fbd10ef0-50da-48b6-8573-3e73af6804eb", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-24T19:06:45.000Z" - }, - "end": { - "$date": "2022-07-24T19:36:10.000Z" - }, - "events": [ - { - "uuid": "ed636a1b-f7db-419b-acbc-8a15ec81f766", - "start": { - "$date": "2022-07-24T19:06:45.000Z" - }, - "end": { - "$date": "2022-07-24T19:36:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "74be76eb-3253-4cc1-ab03-cdc8fca376aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-24T19:17:28.000Z" - }, - "end": { - "$date": "2022-07-24T20:16:26.000Z" - }, - "events": [ - { - "uuid": "a4a240ca-0655-4862-9b74-ea6a3e0b7cdf", - "start": { - "$date": "2022-07-24T19:17:28.000Z" - }, - "end": { - "$date": "2022-07-24T20:16:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "18c36d26-78c2-4e71-b88f-b75d97b8f007", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-24T19:30:15.000Z" - }, - "end": { - "$date": "2022-07-24T23:01:42.000Z" - }, - "events": [ - { - "uuid": "9c6a6394-05c0-4fdd-b48c-1a84421fbea9", - "start": { - "$date": "2022-07-24T19:30:15.000Z" - }, - "end": { - "$date": "2022-07-24T23:01:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "a372096d-827a-4d18-97dd-9dc3bfe7b97b", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-24T19:47:09.000Z" - }, - "end": { - "$date": "2022-07-24T20:25:48.000Z" - }, - "events": [ - { - "uuid": "3ae89245-3f89-444d-86ca-f1784b2a0645", - "start": { - "$date": "2022-07-24T19:47:09.000Z" - }, - "end": { - "$date": "2022-07-24T20:25:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "50577421-407c-4aa0-9566-d399e14eb319", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-24T20:25:56.000Z" - }, - "end": { - "$date": "2022-07-24T22:15:16.000Z" - }, - "events": [ - { - "uuid": "e5d05cdb-1338-4cdd-87f3-b9f6dcf2ad76", - "start": { - "$date": "2022-07-24T20:25:56.000Z" - }, - "end": { - "$date": "2022-07-24T22:15:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "c4c8ec03-fa10-4f1a-8811-f738230a3c0c", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-24T21:07:19.000Z" - }, - "end": { - "$date": "2022-07-24T21:43:09.000Z" - }, - "events": [ - { - "uuid": "78d1a15a-30c6-4bcb-a9f9-f8f76ae7a5b3", - "start": { - "$date": "2022-07-24T21:07:19.000Z" - }, - "end": { - "$date": "2022-07-24T21:43:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "17e4446a-53c8-4ec0-8ef1-263254daf5d2", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-24T21:10:09.000Z" - }, - "end": { - "$date": "2022-07-24T22:47:20.000Z" - }, - "events": [ - { - "uuid": "2562fdf8-112d-4260-a6c2-c01dbd77546d", - "start": { - "$date": "2022-07-24T21:10:09.000Z" - }, - "end": { - "$date": "2022-07-24T22:47:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ffa2eb04-643b-40ae-a0c6-e92598d69d65", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-24T21:18:51.000Z" - }, - "end": { - "$date": "2022-07-24T22:57:06.000Z" - }, - "events": [ - { - "uuid": "ea839bab-7a74-4e73-a63d-550c1938f8e9", - "start": { - "$date": "2022-07-24T21:18:51.000Z" - }, - "end": { - "$date": "2022-07-24T21:41:51.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "795f0e7e-8fcc-4ec3-86ec-5207b0d6eae8", - "start": { - "$date": "2022-07-24T21:41:51.000Z" - }, - "end": { - "$date": "2022-07-24T22:02:51.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5f3c344f-5e98-457d-acec-55a402449faf", - "start": { - "$date": "2022-07-24T22:02:51.000Z" - }, - "end": { - "$date": "2022-07-24T22:57:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7d1c548e-b7a1-4156-8fa1-2222d9d98310", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T21:43:57.000Z" - }, - "end": { - "$date": "2022-07-24T22:48:21.000Z" - }, - "events": [ - { - "uuid": "33b7dd70-ff87-498e-a44a-6c5153647ee2", - "start": { - "$date": "2022-07-24T21:43:57.000Z" - }, - "end": { - "$date": "2022-07-24T22:48:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3ca17c00-8e0f-41fd-896e-320bebf095ac", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-24T22:56:23.000Z" - }, - "end": { - "$date": "2022-07-25T01:08:30.000Z" - }, - "events": [ - { - "uuid": "745085b4-1ff4-4cbd-bd08-2b92d4f0e19c", - "start": { - "$date": "2022-07-24T22:56:23.000Z" - }, - "end": { - "$date": "2022-07-25T00:54:23.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "ed7b1f71-ad87-4a73-82a4-3ad6ef04640d", - "start": { - "$date": "2022-07-25T00:54:23.000Z" - }, - "end": { - "$date": "2022-07-25T00:59:23.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "71006a5c-e68f-47c3-b2f7-77abfc56b9e7", - "start": { - "$date": "2022-07-25T00:59:23.000Z" - }, - "end": { - "$date": "2022-07-25T01:08:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a5f5004-c9e8-4974-b1db-183dbe5ae01d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-24T23:20:56.000Z" - }, - "end": { - "$date": "2022-07-24T23:52:13.000Z" - }, - "events": [ - { - "uuid": "7d2e01e3-301c-43aa-a688-3bd0f77a7a60", - "start": { - "$date": "2022-07-24T23:20:56.000Z" - }, - "end": { - "$date": "2022-07-24T23:52:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "22c89b69-1208-4aa8-b22c-b393f06a7652", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-25T00:23:02.000Z" - }, - "end": { - "$date": "2022-07-25T01:26:52.000Z" - }, - "events": [ - { - "uuid": "175de9f9-904d-47e8-9aef-51c325ecf4d4", - "start": { - "$date": "2022-07-25T00:23:02.000Z" - }, - "end": { - "$date": "2022-07-25T01:10:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "43ea118a-d797-45a5-9431-8ef32347a136", - "start": { - "$date": "2022-07-25T01:10:02.000Z" - }, - "end": { - "$date": "2022-07-25T01:16:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "aeefe7dd-e9d3-4cc2-a541-8f66be5e4682", - "start": { - "$date": "2022-07-25T01:16:02.000Z" - }, - "end": { - "$date": "2022-07-25T01:26:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "88ac9736-1870-4dc8-a6f3-c0d282b6a2c5", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-25T01:06:52.000Z" - }, - "end": { - "$date": "2022-07-25T01:35:47.000Z" - }, - "events": [ - { - "uuid": "88620b08-f944-4e40-ba9c-27989208a78c", - "start": { - "$date": "2022-07-25T01:06:52.000Z" - }, - "end": { - "$date": "2022-07-25T01:35:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "fcb7955d-ebef-47ba-be6e-e0c0c51078d4", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-25T01:36:02.000Z" - }, - "end": { - "$date": "2022-07-25T03:31:08.000Z" - }, - "events": [ - { - "uuid": "91dec17f-6341-4e55-a8b5-0e187faa758c", - "start": { - "$date": "2022-07-25T01:36:02.000Z" - }, - "end": { - "$date": "2022-07-25T03:31:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "69bc31f7-6c5c-4404-bb8b-5aa262e7463c", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-25T01:43:34.000Z" - }, - "end": { - "$date": "2022-07-25T04:51:22.000Z" - }, - "events": [ - { - "uuid": "543a57ce-8fc3-4366-a51a-08224c9e19f8", - "start": { - "$date": "2022-07-25T01:43:34.000Z" - }, - "end": { - "$date": "2022-07-25T04:51:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "c61d3368-4041-46c6-9af5-84ac81bf8e51", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-25T01:53:28.000Z" - }, - "end": { - "$date": "2022-07-25T02:09:38.000Z" - }, - "events": [ - { - "uuid": "ef0d0ab3-3fe6-4eda-b2ad-9a82dc2aa9a4", - "start": { - "$date": "2022-07-25T01:53:28.000Z" - }, - "end": { - "$date": "2022-07-25T02:09:38.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "7e6ac602-05cc-45f1-b151-f22e35906aea", - "uuid": "a10eb8ca-a215-49c4-88af-d71f0fa93560", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-25T02:14:33.000Z" - }, - "end": { - "$date": "2022-07-25T02:19:40.000Z" - }, - "events": [ - { - "uuid": "ade49041-fb86-4b70-948d-c052496abc91", - "start": { - "$date": "2022-07-25T02:14:33.000Z" - }, - "end": { - "$date": "2022-07-25T02:19:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "2aa6a9a7-cbee-4fc4-b27f-a087db968b8f", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-25T03:34:05.000Z" - }, - "end": { - "$date": "2022-07-25T04:14:59.000Z" - }, - "events": [ - { - "uuid": "996cc06f-5d53-4ab3-8940-8fb23c5418b2", - "start": { - "$date": "2022-07-25T03:34:05.000Z" - }, - "end": { - "$date": "2022-07-25T04:14:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "fc0b4c9d-304b-4e86-88be-04b75a6c774b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-25T03:31:38.000Z" - }, - "end": { - "$date": "2022-07-25T05:07:22.000Z" - }, - "events": [ - { - "uuid": "24d0a362-be13-4639-ac9c-0e9ddc113019", - "start": { - "$date": "2022-07-25T03:31:38.000Z" - }, - "end": { - "$date": "2022-07-25T05:07:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "b8930ec5-610d-4854-a0bd-eb30ad0591f7", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-25T03:42:59.000Z" - }, - "end": { - "$date": "2022-07-25T03:49:38.000Z" - }, - "events": [ - { - "uuid": "e1613376-5fc8-417e-8b3c-ba4370c16429", - "start": { - "$date": "2022-07-25T03:42:59.000Z" - }, - "end": { - "$date": "2022-07-25T03:49:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "88757df2-4731-458e-99d0-68e74f1fae01", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-25T03:50:43.000Z" - }, - "end": { - "$date": "2022-07-25T04:17:18.000Z" - }, - "events": [ - { - "uuid": "3fd82871-46cd-4458-86b8-9f63a17aa591", - "start": { - "$date": "2022-07-25T03:50:43.000Z" - }, - "end": { - "$date": "2022-07-25T04:17:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "fd3b65d3-45e8-4a74-ba4a-24fb2c711846", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-25T03:51:44.000Z" - }, - "end": { - "$date": "2022-07-25T03:54:28.000Z" - }, - "events": [ - { - "uuid": "e4f43d80-147c-40fc-a544-366a8b190778", - "start": { - "$date": "2022-07-25T03:51:44.000Z" - }, - "end": { - "$date": "2022-07-25T03:54:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "f7c1a6c1-61d0-45e5-bbd1-ab3663cb823a", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-25T03:59:05.000Z" - }, - "end": { - "$date": "2022-07-25T05:30:28.000Z" - }, - "events": [ - { - "uuid": "83dcea5f-0b4b-4ebe-94dc-825b9030e7a8", - "start": { - "$date": "2022-07-25T03:59:05.000Z" - }, - "end": { - "$date": "2022-07-25T05:30:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e06f12c-60f4-4c2b-b98f-d84f6c3d82aa", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-25T04:21:49.000Z" - }, - "end": { - "$date": "2022-07-25T04:42:24.000Z" - }, - "events": [ - { - "uuid": "ae0dc890-0eab-482e-8ff8-0fcdcd39f415", - "start": { - "$date": "2022-07-25T04:21:49.000Z" - }, - "end": { - "$date": "2022-07-25T04:42:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "663c42cf-a844-40c0-bbfc-ab7ef0d86ad6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-25T04:44:34.000Z" - }, - "end": { - "$date": "2022-07-25T05:10:15.000Z" - }, - "events": [ - { - "uuid": "0fd5c69d-413c-4077-ac98-71f935fcce40", - "start": { - "$date": "2022-07-25T04:44:34.000Z" - }, - "end": { - "$date": "2022-07-25T05:10:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9a0c884-aa86-4a97-9e7b-498504213854", - "uuid": "45fa9d7a-4888-47e1-87ae-9c751090a438", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-25T05:14:28.000Z" - }, - "end": { - "$date": "2022-07-25T06:50:06.000Z" - }, - "events": [ - { - "uuid": "d887e26f-8088-45e8-8976-9a996c032f8e", - "start": { - "$date": "2022-07-25T05:14:28.000Z" - }, - "end": { - "$date": "2022-07-25T06:50:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4f923288-c36d-4426-a974-9a5b948aedaa", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-25T05:26:55.000Z" - }, - "end": { - "$date": "2022-07-25T06:02:41.000Z" - }, - "events": [ - { - "uuid": "407f37eb-f20e-4344-b121-eb90fedd7523", - "start": { - "$date": "2022-07-25T05:26:55.000Z" - }, - "end": { - "$date": "2022-07-25T06:02:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3785c04a-3b3c-4eb5-9add-f045f6a57e34", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-25T09:18:22.000Z" - }, - "end": { - "$date": "2022-07-25T09:22:42.000Z" - }, - "events": [ - { - "uuid": "4af71d66-2e88-49b3-971a-d24a04c6e082", - "start": { - "$date": "2022-07-25T09:18:22.000Z" - }, - "end": { - "$date": "2022-07-25T09:22:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "3464c73f-df04-40e6-8e6f-5f524d53e379", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-25T16:33:39.000Z" - }, - "end": { - "$date": "2022-07-25T16:34:59.000Z" - }, - "events": [ - { - "uuid": "d265293a-19d6-4ec0-84e6-9b6139f43f78", - "start": { - "$date": "2022-07-25T16:33:39.000Z" - }, - "end": { - "$date": "2022-07-25T16:34:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "f8770258-39a2-4b83-be9a-f387485fd904", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-25T18:26:42.000Z" - }, - "end": { - "$date": "2022-07-25T18:31:14.000Z" - }, - "events": [ - { - "uuid": "b02cadcf-610d-4740-abb2-9a084e825a7c", - "start": { - "$date": "2022-07-25T18:26:42.000Z" - }, - "end": { - "$date": "2022-07-25T18:31:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "43adc112-1c3e-4c5c-b2dd-69e4609da136", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-25T18:56:55.000Z" - }, - "end": { - "$date": "2022-07-25T19:19:15.000Z" - }, - "events": [ - { - "uuid": "0e2a2f4a-69ea-47c2-b623-4a7673980d7d", - "start": { - "$date": "2022-07-25T18:56:55.000Z" - }, - "end": { - "$date": "2022-07-25T19:19:15.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "62d4a693-6dbb-4f11-9993-485a7e392308", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-25T22:10:23.000Z" - }, - "end": { - "$date": "2022-07-25T23:47:28.000Z" - }, - "events": [ - { - "uuid": "75729ea7-9241-41a1-8b15-208b17a23900", - "start": { - "$date": "2022-07-25T22:10:23.000Z" - }, - "end": { - "$date": "2022-07-25T23:47:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "3e60181d-8e10-4544-9063-0b02cb4ee3aa", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-25T23:16:45.000Z" - }, - "end": { - "$date": "2022-07-26T01:01:21.000Z" - }, - "events": [ - { - "uuid": "937d712d-1a15-4af3-8b56-ba7f395b44b4", - "start": { - "$date": "2022-07-25T23:16:45.000Z" - }, - "end": { - "$date": "2022-07-26T01:01:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "32e61632-0ad1-4fe0-a1b3-2610aa9052ea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-25T23:28:47.000Z" - }, - "end": { - "$date": "2022-07-25T23:43:54.000Z" - }, - "events": [ - { - "uuid": "d45bfd15-afd1-434d-85ac-2a61c6e9e636", - "start": { - "$date": "2022-07-25T23:28:47.000Z" - }, - "end": { - "$date": "2022-07-25T23:43:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "03f949fe-3521-476c-b2b1-d6f0339f368b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-25T23:44:05.000Z" - }, - "end": { - "$date": "2022-07-25T23:59:35.000Z" - }, - "events": [ - { - "uuid": "5d45e264-8c76-49e9-97ef-e0233826b8d2", - "start": { - "$date": "2022-07-25T23:44:05.000Z" - }, - "end": { - "$date": "2022-07-25T23:59:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "12fdbb18-051e-42c1-8a0f-eabe03f07f79", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-25T23:48:36.000Z" - }, - "end": { - "$date": "2022-07-26T00:15:57.000Z" - }, - "events": [ - { - "uuid": "8f68fc4c-5194-41e4-ab6b-653d7f8d04ed", - "start": { - "$date": "2022-07-25T23:48:36.000Z" - }, - "end": { - "$date": "2022-07-26T00:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b06f1a82-b91b-498e-ae30-6cef22b4a051", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-26T00:00:20.000Z" - }, - "end": { - "$date": "2022-07-26T00:32:41.000Z" - }, - "events": [ - { - "uuid": "bded701e-4aff-47e5-809c-52cc98d498f8", - "start": { - "$date": "2022-07-26T00:00:20.000Z" - }, - "end": { - "$date": "2022-07-26T00:32:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "de2385ac-3dcd-4b59-ad4a-7d4d673121e4", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-07-26T00:10:18.000Z" - }, - "end": { - "$date": "2022-07-26T02:54:29.000Z" - }, - "events": [ - { - "uuid": "a7d3e10c-28be-4d83-8299-aac7e09446d8", - "start": { - "$date": "2022-07-26T00:10:18.000Z" - }, - "end": { - "$date": "2022-07-26T02:54:29.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ada7b9ef-aaae-45eb-be6a-5b802dc239e5", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-26T00:13:09.000Z" - }, - "end": { - "$date": "2022-07-26T00:39:03.000Z" - }, - "events": [ - { - "uuid": "0e49310f-8fec-4bd1-a894-1bebbfe4f24b", - "start": { - "$date": "2022-07-26T00:13:09.000Z" - }, - "end": { - "$date": "2022-07-26T00:39:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "d1b20aa1-f0d6-4091-98ab-932f38454e63", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-26T00:17:09.000Z" - }, - "end": { - "$date": "2022-07-26T00:41:06.000Z" - }, - "events": [ - { - "uuid": "9d73c860-a848-420f-8b35-c824bad9ab91", - "start": { - "$date": "2022-07-26T00:17:09.000Z" - }, - "end": { - "$date": "2022-07-26T00:41:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "41a20038-744d-4986-aea7-1048fc94e92e", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-26T00:33:51.000Z" - }, - "end": { - "$date": "2022-07-26T00:42:41.000Z" - }, - "events": [ - { - "uuid": "abbb34f2-9633-45a4-bd79-00f0b86c98c4", - "start": { - "$date": "2022-07-26T00:33:51.000Z" - }, - "end": { - "$date": "2022-07-26T00:42:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "134291fc-1b2c-4130-88e7-12954569d84e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-26T00:41:40.000Z" - }, - "end": { - "$date": "2022-07-26T05:47:21.000Z" - }, - "events": [ - { - "uuid": "ea426d91-e05b-4511-a97a-0325a818a9b2", - "start": { - "$date": "2022-07-26T00:41:40.000Z" - }, - "end": { - "$date": "2022-07-26T05:47:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "225f873c-331a-471e-9263-8264edb5f443", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-26T00:42:47.000Z" - }, - "end": { - "$date": "2022-07-26T01:28:13.000Z" - }, - "events": [ - { - "uuid": "8a869701-201f-4e5e-814f-d135ce732ab3", - "start": { - "$date": "2022-07-26T00:42:47.000Z" - }, - "end": { - "$date": "2022-07-26T01:28:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "01863e34-c126-4afd-b1ac-156569c6171e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-26T01:26:56.000Z" - }, - "end": { - "$date": "2022-07-26T02:13:01.000Z" - }, - "events": [ - { - "uuid": "566c80ab-5cfa-439d-9abc-6c9817345027", - "start": { - "$date": "2022-07-26T01:26:56.000Z" - }, - "end": { - "$date": "2022-07-26T02:13:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "31b370e8-268e-4fc5-9143-a4f43101ba61", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-26T01:38:33.000Z" - }, - "end": { - "$date": "2022-07-26T02:13:37.000Z" - }, - "events": [ - { - "uuid": "deb8b6fc-2169-4b5b-a00c-d00c8da68807", - "start": { - "$date": "2022-07-26T01:38:33.000Z" - }, - "end": { - "$date": "2022-07-26T02:04:33.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "210fce6a-97ef-4619-9279-90445bbffae7", - "start": { - "$date": "2022-07-26T02:04:33.000Z" - }, - "end": { - "$date": "2022-07-26T02:09:33.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "5d49350f-75c4-4387-b0f5-d4215e068b5a", - "start": { - "$date": "2022-07-26T02:09:33.000Z" - }, - "end": { - "$date": "2022-07-26T02:13:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d60f61e1-3a64-48eb-a223-29e27dbec162", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-26T02:26:48.000Z" - }, - "end": { - "$date": "2022-07-26T03:26:11.000Z" - }, - "events": [ - { - "uuid": "a2fbe319-6082-4a13-80c4-80a616e71a79", - "start": { - "$date": "2022-07-26T02:26:48.000Z" - }, - "end": { - "$date": "2022-07-26T03:26:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "3cbc326a-bcd4-4fc5-8d97-fdf44a3265a2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-26T02:55:22.000Z" - }, - "end": { - "$date": "2022-07-26T03:24:29.000Z" - }, - "events": [ - { - "uuid": "135d09a0-73b8-466a-b763-15bbcc18c8a9", - "start": { - "$date": "2022-07-26T02:55:22.000Z" - }, - "end": { - "$date": "2022-07-26T03:24:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43e95712-c9f8-41bf-8c8b-0a4091d05025", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-26T03:17:49.000Z" - }, - "end": { - "$date": "2022-07-26T03:30:49.000Z" - }, - "events": [ - { - "uuid": "8669989a-b776-4ff9-8895-ce9d11aa8c68", - "start": { - "$date": "2022-07-26T03:17:49.000Z" - }, - "end": { - "$date": "2022-07-26T03:30:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9013425b-c3d0-42b2-acee-a09ce1262051", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-26T03:26:24.000Z" - }, - "end": { - "$date": "2022-07-26T05:05:59.000Z" - }, - "events": [ - { - "uuid": "f070b64d-544a-468a-a966-60917e08b3dc", - "start": { - "$date": "2022-07-26T03:26:24.000Z" - }, - "end": { - "$date": "2022-07-26T04:12:24.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "faaaeb5a-60dc-4a26-9c96-105af8792f54", - "start": { - "$date": "2022-07-26T04:12:24.000Z" - }, - "end": { - "$date": "2022-07-26T04:19:24.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "814fd9ee-af8a-44a8-9734-58be79d1c5fa", - "start": { - "$date": "2022-07-26T04:19:24.000Z" - }, - "end": { - "$date": "2022-07-26T05:05:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e3d29c4-cf40-4650-88a5-e0969a80b47f", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-26T03:33:49.000Z" - }, - "end": { - "$date": "2022-07-26T03:56:45.000Z" - }, - "events": [ - { - "uuid": "60ca1afe-ad8d-45dc-9319-a576c26016c2", - "start": { - "$date": "2022-07-26T03:33:49.000Z" - }, - "end": { - "$date": "2022-07-26T03:56:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "1efde7aa-815d-4cc3-bbdf-cf19b111c44a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-26T03:49:02.000Z" - }, - "end": { - "$date": "2022-07-26T05:58:43.000Z" - }, - "events": [ - { - "uuid": "05cf6b6c-ca28-45eb-8039-cc72ffafec63", - "start": { - "$date": "2022-07-26T03:49:02.000Z" - }, - "end": { - "$date": "2022-07-26T05:58:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "65482349-f51c-4901-90f9-1e5b1efa1358", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-26T04:04:55.000Z" - }, - "end": { - "$date": "2022-07-26T04:43:12.000Z" - }, - "events": [ - { - "uuid": "5493f8ef-ac05-482d-9492-611770a9ad34", - "start": { - "$date": "2022-07-26T04:04:55.000Z" - }, - "end": { - "$date": "2022-07-26T04:43:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "806d5bbc-adc4-4518-9d58-116c71e1683c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-26T04:38:51.000Z" - }, - "end": { - "$date": "2022-07-26T04:41:56.000Z" - }, - "events": [ - { - "uuid": "89c4ef37-2343-453a-ae74-55a3278701cb", - "start": { - "$date": "2022-07-26T04:38:51.000Z" - }, - "end": { - "$date": "2022-07-26T04:41:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "392b38e3-2d32-4d08-b187-59fb5bca7e3c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-26T04:44:11.000Z" - }, - "end": { - "$date": "2022-07-26T05:39:23.000Z" - }, - "events": [ - { - "uuid": "535b00e6-1f60-4939-b15f-449c2f125db5", - "start": { - "$date": "2022-07-26T04:44:11.000Z" - }, - "end": { - "$date": "2022-07-26T05:39:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "deb980b9-4378-4ddb-b4dc-2136ba248e66", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-26T04:47:01.000Z" - }, - "end": { - "$date": "2022-07-26T05:54:49.000Z" - }, - "events": [ - { - "uuid": "eb2d9c69-9afe-4511-9cbd-637add27e483", - "start": { - "$date": "2022-07-26T04:47:01.000Z" - }, - "end": { - "$date": "2022-07-26T05:54:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "34e09e11-72f1-40ec-b36b-29c2de7b1347", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-26T05:24:55.000Z" - }, - "end": { - "$date": "2022-07-26T05:38:49.000Z" - }, - "events": [ - { - "uuid": "d3356667-3c70-4857-aed3-4fc4ff74627b", - "start": { - "$date": "2022-07-26T05:24:55.000Z" - }, - "end": { - "$date": "2022-07-26T05:38:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "80486f33-c4e5-48e1-9dad-05c720d1d2d1", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-26T06:24:40.000Z" - }, - "end": { - "$date": "2022-07-26T06:46:53.000Z" - }, - "events": [ - { - "uuid": "d60bf8d6-f96e-4dff-a121-40d35e410449", - "start": { - "$date": "2022-07-26T06:24:40.000Z" - }, - "end": { - "$date": "2022-07-26T06:46:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "656b8161-582c-495e-ba56-8a190403c63f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-26T16:46:29.000Z" - }, - "end": { - "$date": "2022-07-26T16:53:19.000Z" - }, - "events": [ - { - "uuid": "e33f0fcf-a9da-49f2-9eb6-8cea6d245664", - "start": { - "$date": "2022-07-26T16:46:29.000Z" - }, - "end": { - "$date": "2022-07-26T16:53:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "f700947a-3d5b-4872-81e7-8219b7b06946", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-26T21:03:31.000Z" - }, - "end": { - "$date": "2022-07-26T21:40:48.000Z" - }, - "events": [ - { - "uuid": "c28ef7b7-758c-4171-83ff-502c69817f46", - "start": { - "$date": "2022-07-26T21:03:31.000Z" - }, - "end": { - "$date": "2022-07-26T21:40:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e08c195a-a997-4667-a675-b1ea37c9ecda", - "uuid": "68a4d83d-0159-44e4-b72e-a9e560a2cdcf", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-26T22:51:53.000Z" - }, - "end": { - "$date": "2022-07-27T00:51:01.000Z" - }, - "events": [ - { - "uuid": "8a23508c-5a7f-4927-bc09-2efa717faf47", - "start": { - "$date": "2022-07-26T22:51:53.000Z" - }, - "end": { - "$date": "2022-07-26T23:56:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "01abd543-d982-48d8-8fa2-ce0abf093607", - "start": { - "$date": "2022-07-26T23:56:53.000Z" - }, - "end": { - "$date": "2022-07-27T00:18:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0884b9ef-3c31-4256-b506-24b5a4cb139a", - "start": { - "$date": "2022-07-27T00:18:53.000Z" - }, - "end": { - "$date": "2022-07-27T00:19:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "86e5564d-baa3-4c3e-8fdb-5024bc5168cb", - "start": { - "$date": "2022-07-27T00:19:53.000Z" - }, - "end": { - "$date": "2022-07-27T00:36:53.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "666ca7f7-cdcd-4e50-ab91-be5f9d907232", - "start": { - "$date": "2022-07-27T00:36:53.000Z" - }, - "end": { - "$date": "2022-07-27T00:37:53.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "f4c8ee6a-b9fc-4b0c-af77-1543b49f8da9", - "start": { - "$date": "2022-07-27T00:37:53.000Z" - }, - "end": { - "$date": "2022-07-27T00:51:01.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "d3009cbb-da3b-4302-a8a5-f5042d19d62d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-26T22:57:43.000Z" - }, - "end": { - "$date": "2022-07-27T00:19:35.000Z" - }, - "events": [ - { - "uuid": "7da9d996-3744-405f-91bb-98b96326262f", - "start": { - "$date": "2022-07-26T22:57:43.000Z" - }, - "end": { - "$date": "2022-07-27T00:19:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "bf2d5721-9c32-47c0-a3a5-8260f7b539c8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-26T23:23:50.000Z" - }, - "end": { - "$date": "2022-07-26T23:48:51.000Z" - }, - "events": [ - { - "uuid": "98f9e1e5-9427-4388-9de3-88717af0ba44", - "start": { - "$date": "2022-07-26T23:23:50.000Z" - }, - "end": { - "$date": "2022-07-26T23:48:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "1dadb0bb-2628-4035-8a5d-62a49f85369a", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-27T00:44:42.000Z" - }, - "end": { - "$date": "2022-07-27T01:47:23.000Z" - }, - "events": [ - { - "start": { - "$date": "2022-07-27T00:44:42.000Z" - }, - "end": { - "$date": "2022-07-27T01:47:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "d22bb3bc-7875-4901-91b5-6ee7f2357d5c", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-27T00:53:23.000Z" - }, - "end": { - "$date": "2022-07-27T00:57:12.000Z" - }, - "events": [ - { - "uuid": "556ca7df-c0c7-4f3b-a274-a9f0d8015247", - "start": { - "$date": "2022-07-27T00:53:23.000Z" - }, - "end": { - "$date": "2022-07-27T00:57:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8c4d8a48-420e-4d45-a4eb-d8118d4df028", - "uuid": "f54e42fb-479a-4583-9ff1-9ef52766a4d2", - "user": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "start": { - "$date": "2022-07-27T00:59:44.000Z" - }, - "end": { - "$date": "2022-07-27T01:01:52.000Z" - }, - "events": [ - { - "uuid": "9b9d1a1d-de34-4b35-8afb-5a95dfe7680a", - "start": { - "$date": "2022-07-27T00:59:44.000Z" - }, - "end": { - "$date": "2022-07-27T01:01:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "56644f06-3baf-4042-9477-1a8b3661a4de", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-27T01:27:17.000Z" - }, - "end": { - "$date": "2022-07-27T02:01:41.000Z" - }, - "events": [ - { - "uuid": "a637b92b-360c-4b8d-b27a-66e064366e5a", - "start": { - "$date": "2022-07-27T01:27:17.000Z" - }, - "end": { - "$date": "2022-07-27T02:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8a27192b-10a3-4a27-a32b-35c5afd39edb", - "uuid": "24d661fd-c67a-474b-9335-489d910875ac", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-27T01:29:50.000Z" - }, - "end": { - "$date": "2022-07-27T03:20:00.000Z" - }, - "events": [ - { - "uuid": "0bad280f-f359-4062-8e89-c6fc21983092", - "start": { - "$date": "2022-07-27T01:29:50.000Z" - }, - "end": { - "$date": "2022-07-27T03:20:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "8b5ab818-7e3b-4c7b-8e0e-843a015b9284", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-27T02:02:10.000Z" - }, - "end": { - "$date": "2022-07-27T05:17:59.000Z" - }, - "events": [ - { - "uuid": "ceb80cae-6dea-4e9a-ad30-df3af37cd2a7", - "start": { - "$date": "2022-07-27T02:02:10.000Z" - }, - "end": { - "$date": "2022-07-27T05:17:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "756629c4-869a-457d-82c1-a3dacc354c03", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-27T02:39:18.000Z" - }, - "end": { - "$date": "2022-07-27T02:41:02.000Z" - }, - "events": [ - { - "uuid": "781fd820-1d34-46f8-894d-61898c12a342", - "start": { - "$date": "2022-07-27T02:39:18.000Z" - }, - "end": { - "$date": "2022-07-27T02:41:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "fcd960a8-2e86-4d29-bdb6-057d27c7a5ec", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T03:13:39.000Z" - }, - "end": { - "$date": "2022-07-27T03:19:45.000Z" - }, - "events": [ - { - "uuid": "bf6e4355-6837-4746-af9a-dfa0eb9530dc", - "start": { - "$date": "2022-07-27T03:13:39.000Z" - }, - "end": { - "$date": "2022-07-27T03:19:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "14245659-d779-46e9-9f8b-d992833e8087", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T03:20:03.000Z" - }, - "end": { - "$date": "2022-07-27T05:18:46.000Z" - }, - "events": [ - { - "uuid": "72a5e2f6-f697-4399-8489-b4b601828c49", - "start": { - "$date": "2022-07-27T03:20:03.000Z" - }, - "end": { - "$date": "2022-07-27T05:18:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "0dcdb593-d858-4a76-ae9f-173c5ef01620", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-27T03:24:59.000Z" - }, - "end": { - "$date": "2022-07-27T05:36:06.000Z" - }, - "events": [ - { - "uuid": "4e646703-9d3f-4bb3-94cb-0e853ee73a45", - "start": { - "$date": "2022-07-27T03:24:59.000Z" - }, - "end": { - "$date": "2022-07-27T05:36:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "7994d6d5-f7f8-46d1-a856-244d50c78b4e", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-27T03:29:23.000Z" - }, - "end": { - "$date": "2022-07-27T05:34:24.000Z" - }, - "events": [ - { - "uuid": "fa918843-e4b8-4bb6-82a5-25879a8ae1b4", - "start": { - "$date": "2022-07-27T03:29:23.000Z" - }, - "end": { - "$date": "2022-07-27T05:34:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d7517fa-da1a-4dcc-b0b4-f97db53b30d2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-27T03:31:29.000Z" - }, - "end": { - "$date": "2022-07-27T04:00:34.000Z" - }, - "events": [ - { - "uuid": "3667c2c8-c622-49b6-b800-d201645d0937", - "start": { - "$date": "2022-07-27T03:31:29.000Z" - }, - "end": { - "$date": "2022-07-27T04:00:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "278d2bf3-aa61-4aee-94e5-6eed888f644a", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-27T03:36:31.000Z" - }, - "end": { - "$date": "2022-07-27T05:20:56.000Z" - }, - "events": [ - { - "uuid": "dc6a3bc1-81a4-432a-9bbf-a59cd6e78d1e", - "start": { - "$date": "2022-07-27T03:36:31.000Z" - }, - "end": { - "$date": "2022-07-27T05:20:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "b4401e07-7599-40df-a55c-a072d72dd83f", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-27T03:37:10.000Z" - }, - "end": { - "$date": "2022-07-27T05:34:20.000Z" - }, - "events": [ - { - "uuid": "2aee88e0-7897-42fb-b161-cd4d5bc2116b", - "start": { - "$date": "2022-07-27T03:37:10.000Z" - }, - "end": { - "$date": "2022-07-27T05:34:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "2f567c6c-3704-40c9-a063-05ca6477ea10", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T03:47:13.000Z" - }, - "end": { - "$date": "2022-07-27T05:35:10.000Z" - }, - "events": [ - { - "uuid": "aa19a3d2-89a5-480d-a6da-9da7ac02653f", - "start": { - "$date": "2022-07-27T03:47:13.000Z" - }, - "end": { - "$date": "2022-07-27T05:35:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "d1464a84-13fa-42b5-b53f-d34b4e5ad3dd", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-27T04:10:50.000Z" - }, - "end": { - "$date": "2022-07-27T04:14:55.000Z" - }, - "events": [ - { - "uuid": "61486475-6455-48f4-9aa3-a14558e2e32b", - "start": { - "$date": "2022-07-27T04:10:50.000Z" - }, - "end": { - "$date": "2022-07-27T04:14:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "9f9f7ebd-7f52-4eef-8474-591826be6661", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-27T04:15:26.000Z" - }, - "end": { - "$date": "2022-07-27T04:51:47.000Z" - }, - "events": [ - { - "uuid": "c15ce12a-686f-4ded-88be-04c86a319693", - "start": { - "$date": "2022-07-27T04:15:26.000Z" - }, - "end": { - "$date": "2022-07-27T04:51:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "ca915fcf-e20f-4878-83a6-dbc5d4c0b6c8", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-27T04:52:18.000Z" - }, - "end": { - "$date": "2022-07-27T04:53:32.000Z" - }, - "events": [ - { - "uuid": "4baf341e-98c0-48de-b63b-fbed0e8ab67e", - "start": { - "$date": "2022-07-27T04:52:18.000Z" - }, - "end": { - "$date": "2022-07-27T04:53:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "e498ffde-a01a-4616-854f-ff5b5818e9c9", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T05:19:02.000Z" - }, - "end": { - "$date": "2022-07-27T05:33:57.000Z" - }, - "events": [ - { - "uuid": "043715c8-46b6-48f2-9d12-7d108615bbc9", - "start": { - "$date": "2022-07-27T05:19:02.000Z" - }, - "end": { - "$date": "2022-07-27T05:33:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8e1380c-8fbe-4076-917b-3e7238554751", - "uuid": "b02716b4-e792-4f8b-94c3-03c5dd969d27", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T05:34:02.000Z" - }, - "end": { - "$date": "2022-07-27T06:07:54.000Z" - }, - "events": [ - { - "uuid": "ac3a6643-5c64-4199-ae43-dc3b4223d950", - "start": { - "$date": "2022-07-27T05:34:02.000Z" - }, - "end": { - "$date": "2022-07-27T06:07:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8e1380c-8fbe-4076-917b-3e7238554751", - "uuid": "ac115cdd-5f18-49df-9738-937eb3a4781c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-27T05:34:40.000Z" - }, - "end": { - "$date": "2022-07-27T06:05:06.000Z" - }, - "events": [ - { - "uuid": "632147c4-8bf1-4a1a-9e93-07edc330ce96", - "start": { - "$date": "2022-07-27T05:34:40.000Z" - }, - "end": { - "$date": "2022-07-27T06:05:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8e1380c-8fbe-4076-917b-3e7238554751", - "uuid": "cad5dbc2-134c-4ba1-bd37-a4d9c54c37f7", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-27T05:34:41.000Z" - }, - "end": { - "$date": "2022-07-27T06:08:05.000Z" - }, - "events": [ - { - "uuid": "979c985f-968d-438e-9f89-3e77e9881f45", - "start": { - "$date": "2022-07-27T05:34:41.000Z" - }, - "end": { - "$date": "2022-07-27T06:08:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8e1380c-8fbe-4076-917b-3e7238554751", - "uuid": "a80a3412-34e8-4b75-91e3-b1e86fd80d1b", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-27T05:38:21.000Z" - }, - "end": { - "$date": "2022-07-27T06:08:03.000Z" - }, - "events": [ - { - "uuid": "1255dac6-108e-42c9-a4c8-5e0bd575ec8f", - "start": { - "$date": "2022-07-27T05:38:21.000Z" - }, - "end": { - "$date": "2022-07-27T06:08:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e8e1380c-8fbe-4076-917b-3e7238554751", - "uuid": "8f9ca20e-6256-44d3-9a9b-f7fbec7dff8d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T05:42:46.000Z" - }, - "end": { - "$date": "2022-07-27T06:04:56.000Z" - }, - "events": [ - { - "uuid": "932b63ec-808a-4b56-bf91-542276828ad2", - "start": { - "$date": "2022-07-27T05:42:46.000Z" - }, - "end": { - "$date": "2022-07-27T06:04:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "09da5eef-f5f0-4ca1-b2ca-209a4e2436c3", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T06:10:04.000Z" - }, - "end": { - "$date": "2022-07-27T06:30:14.000Z" - }, - "events": [ - { - "uuid": "8de370da-cc62-48f7-85f8-3cc1f60bee74", - "start": { - "$date": "2022-07-27T06:10:04.000Z" - }, - "end": { - "$date": "2022-07-27T06:30:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "98debffd-a070-483b-90a6-7acd45fd25b6", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T06:35:05.000Z" - }, - "end": { - "$date": "2022-07-27T06:59:20.000Z" - }, - "events": [ - { - "uuid": "47611949-1c90-4597-bd27-5548eb148340", - "start": { - "$date": "2022-07-27T06:35:05.000Z" - }, - "end": { - "$date": "2022-07-27T06:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4ab73d0e-4528-4ced-a2c9-0582f44eea7a", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T07:01:31.000Z" - }, - "end": { - "$date": "2022-07-27T07:16:50.000Z" - }, - "events": [ - { - "uuid": "6b582f55-4818-430c-b95d-1d5ce0497c7e", - "start": { - "$date": "2022-07-27T07:01:31.000Z" - }, - "end": { - "$date": "2022-07-27T07:16:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "24e06e18-30f8-49fb-b34e-f7747018e380", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T07:01:39.000Z" - }, - "end": { - "$date": "2022-07-27T07:16:54.000Z" - }, - "events": [ - { - "uuid": "38eda294-a4e3-4dcc-a6c3-f63c07b56642", - "start": { - "$date": "2022-07-27T07:01:39.000Z" - }, - "end": { - "$date": "2022-07-27T07:16:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ba13d68c-eec8-40f8-84b5-20af6cfe9c7b", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-27T08:36:33.000Z" - }, - "end": { - "$date": "2022-07-27T08:36:58.000Z" - }, - "events": [ - { - "uuid": "cee3cd61-04eb-4b2b-9c9a-6546407e7b3e", - "start": { - "$date": "2022-07-27T08:36:33.000Z" - }, - "end": { - "$date": "2022-07-27T08:36:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "49c5705a-5ce9-4da9-990e-604c89b8a3ec", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T07:19:31.000Z" - }, - "end": { - "$date": "2022-07-27T07:45:48.000Z" - }, - "events": [ - { - "uuid": "2d5b2755-b8ba-4a39-843f-649578f7814b", - "start": { - "$date": "2022-07-27T07:19:31.000Z" - }, - "end": { - "$date": "2022-07-27T07:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de101971-a8bb-4f68-9f43-bc802668370a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T07:51:27.000Z" - }, - "end": { - "$date": "2022-07-27T08:13:07.000Z" - }, - "events": [ - { - "uuid": "edcf1c9f-9309-4041-8311-dc6ab2a5b0c7", - "start": { - "$date": "2022-07-27T07:51:27.000Z" - }, - "end": { - "$date": "2022-07-27T08:13:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "d6394a0d-8d1a-49d3-a0a5-ea8cee4260d1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T08:19:23.000Z" - }, - "end": { - "$date": "2022-07-27T08:36:39.000Z" - }, - "events": [ - { - "uuid": "55272194-8d8e-478b-98f3-f37474d9fd00", - "start": { - "$date": "2022-07-27T08:19:23.000Z" - }, - "end": { - "$date": "2022-07-27T08:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "2b8bb651-f96f-4e85-8bf0-ddc9a20582c8", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-27T18:37:39.000Z" - }, - "end": { - "$date": "2022-07-27T19:25:05.000Z" - }, - "events": [ - { - "uuid": "efbc0349-107f-46c1-8bd5-4b500ed9b541", - "start": { - "$date": "2022-07-27T18:37:39.000Z" - }, - "end": { - "$date": "2022-07-27T18:57:39.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6e9dcf2a-e0aa-49bc-b299-c0fd5d96bab6", - "start": { - "$date": "2022-07-27T18:57:39.000Z" - }, - "end": { - "$date": "2022-07-27T19:05:39.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1c7a513e-87bd-4142-8605-360cb5227940", - "start": { - "$date": "2022-07-27T19:05:39.000Z" - }, - "end": { - "$date": "2022-07-27T19:25:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "cdd12b86-c71f-4c1c-884e-f689816962de", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-27T20:23:49.000Z" - }, - "end": { - "$date": "2022-07-27T21:26:26.000Z" - }, - "events": [ - { - "uuid": "11c2deb6-5933-4075-9619-1c431c341dfd", - "start": { - "$date": "2022-07-27T20:23:49.000Z" - }, - "end": { - "$date": "2022-07-27T21:26:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "ecfd5f25-5484-4e95-91ba-55337bd09190", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-27T23:17:53.000Z" - }, - "end": { - "$date": "2022-07-27T23:40:25.000Z" - }, - "events": [ - { - "uuid": "17bc64d0-54c7-4ff4-896d-b7ad37dd5de5", - "start": { - "$date": "2022-07-27T23:17:53.000Z" - }, - "end": { - "$date": "2022-07-27T23:40:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3ece8098-d942-47ef-907f-43b4e01cc29f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-27T23:40:40.000Z" - }, - "end": { - "$date": "2022-07-28T02:23:31.000Z" - }, - "events": [ - { - "uuid": "599a885c-3edc-4034-b7f4-c9b62f32f0ef", - "start": { - "$date": "2022-07-27T23:40:40.000Z" - }, - "end": { - "$date": "2022-07-28T02:23:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8133784c-766c-42ca-a135-64063f7e3878", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-28T00:11:36.000Z" - }, - "end": { - "$date": "2022-07-28T01:11:55.000Z" - }, - "events": [ - { - "uuid": "5d0c5114-a1c2-4b5d-a1c1-adb8e6d6a521", - "start": { - "$date": "2022-07-28T00:11:36.000Z" - }, - "end": { - "$date": "2022-07-28T01:11:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "9fdec5f5-be40-4817-a434-a468c3de84f5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-28T01:06:27.000Z" - }, - "end": { - "$date": "2022-07-28T01:06:42.000Z" - }, - "events": [ - { - "uuid": "56c06fa0-8809-49ff-923f-acaeea17150d", - "start": { - "$date": "2022-07-28T01:06:27.000Z" - }, - "end": { - "$date": "2022-07-28T01:06:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "c4ccc5f8-9c6b-4264-bae2-3b0f952fde85", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-28T01:06:52.000Z" - }, - "end": { - "$date": "2022-07-28T02:23:58.000Z" - }, - "events": [ - { - "uuid": "fe5ec620-337e-4d4f-b10d-11073bb0e2e9", - "start": { - "$date": "2022-07-28T01:06:52.000Z" - }, - "end": { - "$date": "2022-07-28T02:23:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "d74a14a9-756b-486f-9d66-cd8b9b98f923", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-28T01:54:44.000Z" - }, - "end": { - "$date": "2022-07-28T02:04:00.000Z" - }, - "events": [ - { - "uuid": "0931e1c8-a3c4-43a9-9969-8e2c79f96c9e", - "start": { - "$date": "2022-07-28T01:54:44.000Z" - }, - "end": { - "$date": "2022-07-28T02:04:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "7c18e810-14cb-4433-b668-b0bc1a43bca8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-28T02:04:41.000Z" - }, - "end": { - "$date": "2022-07-28T06:24:16.000Z" - }, - "events": [ - { - "uuid": "399b890c-9093-4971-a83a-9a72aad5ebed", - "start": { - "$date": "2022-07-28T02:04:41.000Z" - }, - "end": { - "$date": "2022-07-28T06:24:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "248463ef-3212-4f0e-893b-e3a4afec18c3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-28T02:37:55.000Z" - }, - "end": { - "$date": "2022-07-28T03:17:29.000Z" - }, - "events": [ - { - "uuid": "303ce808-9b6b-413d-a8e2-b16eeffb269e", - "start": { - "$date": "2022-07-28T02:37:55.000Z" - }, - "end": { - "$date": "2022-07-28T03:17:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "322fd928-0921-49ab-9db2-609bc287ad0f", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-28T03:09:20.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:17.000Z" - }, - "events": [ - { - "uuid": "b3ee1e0a-f20e-4a27-a466-ccb29e523430", - "start": { - "$date": "2022-07-28T03:09:20.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "fb1ca44d-3161-4594-b21f-3139253d6c82", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-28T03:09:39.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:46.000Z" - }, - "events": [ - { - "uuid": "7d5fbdf4-50cc-4af2-87b9-2744d90fb80d", - "start": { - "$date": "2022-07-28T03:09:39.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "13afba4d-501d-4058-9a7a-787e5cba0f45", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-28T03:11:40.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:15.000Z" - }, - "events": [ - { - "uuid": "7f5a6b12-7145-4181-aa78-e50355af85c3", - "start": { - "$date": "2022-07-28T03:11:40.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "16e274c1-c85f-4238-9c89-38637131e3a7", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-28T03:21:56.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:22.000Z" - }, - "events": [ - { - "uuid": "ff22e8a8-617b-40f3-8ade-0fdba2a86ea1", - "start": { - "$date": "2022-07-28T03:21:56.000Z" - }, - "end": { - "$date": "2022-07-28T04:56:22.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ddd4f670-92c8-4d69-8762-03e217ca6ca5", - "uuid": "d9892c18-dfb4-4ae9-a200-479d7ae76bf8", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-28T03:26:06.000Z" - }, - "end": { - "$date": "2022-07-28T04:58:26.000Z" - }, - "events": [ - { - "uuid": "c00514bc-8794-4812-91f7-7a5c3c0bedc4", - "start": { - "$date": "2022-07-28T03:26:06.000Z" - }, - "end": { - "$date": "2022-07-28T04:58:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40c06ce1-8073-4f41-a3db-f415273dba4b", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-28T04:24:07.000Z" - }, - "end": { - "$date": "2022-07-28T05:04:34.000Z" - }, - "events": [ - { - "uuid": "3605c316-6dc1-4c94-a61b-3687fdd8f27d", - "start": { - "$date": "2022-07-28T04:24:07.000Z" - }, - "end": { - "$date": "2022-07-28T05:04:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "05d894cf-efbe-4e3a-95bc-980c545c1a9c", - "user": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "start": { - "$date": "2022-07-28T04:59:08.000Z" - }, - "end": { - "$date": "2022-07-28T05:45:12.000Z" - }, - "events": [ - { - "uuid": "8fb0e45e-7264-4c3b-b7e6-16a7e4c51fe9", - "start": { - "$date": "2022-07-28T04:59:08.000Z" - }, - "end": { - "$date": "2022-07-28T05:45:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "bd90031d-908c-415f-bf70-76c8d04cc7b8", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-28T05:01:10.000Z" - }, - "end": { - "$date": "2022-07-28T05:45:39.000Z" - }, - "events": [ - { - "uuid": "b32bd8d5-4f62-4145-9cb8-3cf9f6e71317", - "start": { - "$date": "2022-07-28T05:01:10.000Z" - }, - "end": { - "$date": "2022-07-28T05:45:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "302e95a7-202f-4761-87a9-f213046331d3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-28T05:06:15.000Z" - }, - "end": { - "$date": "2022-07-28T05:41:58.000Z" - }, - "events": [ - { - "uuid": "c7c872a3-678a-4f8f-a4a0-f58faae07f4b", - "start": { - "$date": "2022-07-28T05:06:15.000Z" - }, - "end": { - "$date": "2022-07-28T05:41:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "f11845d9-4000-40e7-9add-77adee41f74c", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-28T05:06:36.000Z" - }, - "end": { - "$date": "2022-07-28T05:45:01.000Z" - }, - "events": [ - { - "uuid": "4313ed62-18c9-424a-9338-4141b2a4c8d7", - "start": { - "$date": "2022-07-28T05:06:36.000Z" - }, - "end": { - "$date": "2022-07-28T05:45:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0cf86543-222d-4ed8-8a48-a8177021cd4d", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-28T05:43:03.000Z" - }, - "end": { - "$date": "2022-07-28T06:07:03.000Z" - }, - "events": [ - { - "uuid": "b3e9199d-cc6e-4eff-b2f5-2223a37898b0", - "start": { - "$date": "2022-07-28T05:43:03.000Z" - }, - "end": { - "$date": "2022-07-28T06:07:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "587e1793-a176-4be7-97ff-fb4affe645a2", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-28T06:08:06.000Z" - }, - "end": { - "$date": "2022-07-28T06:50:04.000Z" - }, - "events": [ - { - "uuid": "134b3b4d-87fa-48fb-8ba9-7830444dccff", - "start": { - "$date": "2022-07-28T06:08:06.000Z" - }, - "end": { - "$date": "2022-07-28T06:50:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a6865e2e-9835-4514-a5ac-dff4a6ec5b99", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-28T06:54:55.000Z" - }, - "end": { - "$date": "2022-07-28T07:35:54.000Z" - }, - "events": [ - { - "uuid": "32f80d38-6fdb-469f-b239-8c8b32d512a9", - "start": { - "$date": "2022-07-28T06:54:55.000Z" - }, - "end": { - "$date": "2022-07-28T07:35:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "8a27192b-10a3-4a27-a32b-35c5afd39edb", - "uuid": "1f16e6ce-3907-4c8c-9859-1842ac034b6a", - "user": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "start": { - "$date": "2022-07-28T09:19:05.000Z" - }, - "end": { - "$date": "2022-07-28T10:56:17.000Z" - }, - "events": [ - { - "uuid": "db3c601f-3850-4891-8106-0f285e629d32", - "start": { - "$date": "2022-07-28T09:19:05.000Z" - }, - "end": { - "$date": "2022-07-28T10:56:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "88211474-aef4-40e6-8a00-e337760f7396", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-28T14:31:04.000Z" - }, - "end": { - "$date": "2022-07-28T14:36:23.000Z" - }, - "events": [ - { - "uuid": "c87e48f5-5c7a-492e-9945-db8909a88a62", - "start": { - "$date": "2022-07-28T14:31:04.000Z" - }, - "end": { - "$date": "2022-07-28T14:36:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "f4095ae0-5fb5-46e5-8f94-856a86a3dfa2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-29T00:03:59.000Z" - }, - "end": { - "$date": "2022-07-29T00:46:45.000Z" - }, - "events": [ - { - "uuid": "b5e65c50-0615-4eb3-9d39-041fd4d37b04", - "start": { - "$date": "2022-07-29T00:03:59.000Z" - }, - "end": { - "$date": "2022-07-29T00:46:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "98cd1851-dbe0-4f51-9b31-3772258c8f99", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T00:22:15.000Z" - }, - "end": { - "$date": "2022-07-29T00:28:05.000Z" - }, - "events": [ - { - "uuid": "fca7ce53-6e37-4468-9632-6fcefa60ecf5", - "start": { - "$date": "2022-07-29T00:22:15.000Z" - }, - "end": { - "$date": "2022-07-29T00:28:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1a2a1be8-947f-4496-8488-0807c9d81838", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-29T01:17:00.000Z" - }, - "end": { - "$date": "2022-07-29T01:31:54.000Z" - }, - "events": [ - { - "uuid": "5823afdb-0d3d-492b-8064-b445043ad2b9", - "start": { - "$date": "2022-07-29T01:17:00.000Z" - }, - "end": { - "$date": "2022-07-29T01:31:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b41d7597-d0a4-42d2-b10d-656ecb4eb347", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-29T00:47:10.000Z" - }, - "end": { - "$date": "2022-07-29T01:27:52.000Z" - }, - "events": [ - { - "uuid": "01ab9170-c7ed-4495-9a30-ff0050a96d3c", - "start": { - "$date": "2022-07-29T00:47:10.000Z" - }, - "end": { - "$date": "2022-07-29T01:27:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "ed5a0548-b392-449c-8c6f-3f75d6368b3d", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T00:58:25.000Z" - }, - "end": { - "$date": "2022-07-29T01:06:26.000Z" - }, - "events": [ - { - "uuid": "1be3df79-2ed1-4c12-a95f-82ea2c29e2f3", - "start": { - "$date": "2022-07-29T00:58:25.000Z" - }, - "end": { - "$date": "2022-07-29T01:06:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "08e0ec4a-cd88-472a-a818-b5aa9ca303dd", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T01:32:01.000Z" - }, - "end": { - "$date": "2022-07-29T01:32:16.000Z" - }, - "events": [ - { - "uuid": "95445065-4e78-4838-8481-98253a2a6463", - "start": { - "$date": "2022-07-29T01:32:01.000Z" - }, - "end": { - "$date": "2022-07-29T01:32:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "3005746f-4a1b-4f66-a121-6e4a95095fa6", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-29T01:30:52.000Z" - }, - "end": { - "$date": "2022-07-29T03:51:11.000Z" - }, - "events": [ - { - "uuid": "5c87d658-f00e-4d86-828b-4b7cbef96a8c", - "start": { - "$date": "2022-07-29T01:30:52.000Z" - }, - "end": { - "$date": "2022-07-29T03:51:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f0355f17-b433-4477-862e-715cc43df3dc", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-29T01:35:10.000Z" - }, - "end": { - "$date": "2022-07-29T01:50:50.000Z" - }, - "events": [ - { - "uuid": "e4f7953c-4442-46e9-853f-e0df24e55867", - "start": { - "$date": "2022-07-29T01:35:10.000Z" - }, - "end": { - "$date": "2022-07-29T01:50:50.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "edf9235b-5419-41bc-a969-dd3151624e63", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T01:50:47.000Z" - }, - "end": { - "$date": "2022-07-29T01:50:57.000Z" - }, - "events": [ - { - "uuid": "380fe737-5a7b-4d28-9f79-ce5d855e5cbe", - "start": { - "$date": "2022-07-29T01:50:47.000Z" - }, - "end": { - "$date": "2022-07-29T01:50:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6b1c41f-7b5c-4c05-932d-18c4f6147841", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-29T01:52:46.000Z" - }, - "end": { - "$date": "2022-07-29T02:07:36.000Z" - }, - "events": [ - { - "uuid": "cf5780fe-c44d-4417-b072-400bb3ae2bd6", - "start": { - "$date": "2022-07-29T01:52:46.000Z" - }, - "end": { - "$date": "2022-07-29T02:07:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "43a5a170-5f1a-4f27-a2f6-2b2055baee58", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T02:07:32.000Z" - }, - "end": { - "$date": "2022-07-29T02:07:42.000Z" - }, - "events": [ - { - "uuid": "e4b57ada-dff3-49c7-a423-9757bc1202e5", - "start": { - "$date": "2022-07-29T02:07:32.000Z" - }, - "end": { - "$date": "2022-07-29T02:07:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d99e320d-df73-484e-acbb-a7c5be757a4f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-29T02:04:39.000Z" - }, - "end": { - "$date": "2022-07-29T06:06:08.000Z" - }, - "events": [ - { - "uuid": "0ff3405b-1a7e-409f-adeb-f61d4c46de65", - "start": { - "$date": "2022-07-29T02:04:39.000Z" - }, - "end": { - "$date": "2022-07-29T06:06:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "a0a98500-f18b-4e62-a844-bcda6c6d8fe2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T02:31:53.000Z" - }, - "end": { - "$date": "2022-07-29T02:32:13.000Z" - }, - "events": [ - { - "uuid": "6fc5fef0-dedc-458b-9fd0-8d50162b18e9", - "start": { - "$date": "2022-07-29T02:31:53.000Z" - }, - "end": { - "$date": "2022-07-29T02:32:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "390c8641-ba8e-4d03-87e1-162f99ab1f27", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-07-29T02:13:17.000Z" - }, - "end": { - "$date": "2022-07-29T02:31:47.000Z" - }, - "events": [ - { - "uuid": "e73228fa-6f28-4779-a0f5-18ec792bd7e0", - "start": { - "$date": "2022-07-29T02:13:17.000Z" - }, - "end": { - "$date": "2022-07-29T02:31:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2270ff71-aa83-4d5a-99af-943f3c6c8680", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-07-29T02:12:27.000Z" - }, - "end": { - "$date": "2022-07-29T03:14:19.000Z" - }, - "events": [ - { - "uuid": "f473ed7c-a693-4298-8d8c-3833d061766b", - "start": { - "$date": "2022-07-29T02:12:27.000Z" - }, - "end": { - "$date": "2022-07-29T03:14:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "72e93d5f-e1ed-40ab-9e05-3e6605309183", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-29T02:14:03.000Z" - }, - "end": { - "$date": "2022-07-29T03:14:18.000Z" - }, - "events": [ - { - "uuid": "93ccc14a-4b4a-4ff3-bc1b-a7b6f704b826", - "start": { - "$date": "2022-07-29T02:14:03.000Z" - }, - "end": { - "$date": "2022-07-29T03:14:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "57bbceef-943c-4bec-9798-54adbe65408c", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-29T02:26:58.000Z" - }, - "end": { - "$date": "2022-07-29T03:20:20.000Z" - }, - "events": [ - { - "uuid": "7a1151a2-b9e5-4688-883e-eba95529fee2", - "start": { - "$date": "2022-07-29T02:26:58.000Z" - }, - "end": { - "$date": "2022-07-29T03:20:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1edefaf7-2fdb-450e-9659-d4c80201dd19", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T02:32:14.000Z" - }, - "end": { - "$date": "2022-07-29T02:33:23.000Z" - }, - "events": [ - { - "uuid": "09210465-4296-4c10-a570-60c33a5e72c3", - "start": { - "$date": "2022-07-29T02:32:14.000Z" - }, - "end": { - "$date": "2022-07-29T02:33:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "b5eaa757-7f4f-4164-8658-5bac3063c0cc", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-07-29T03:15:13.000Z" - }, - "end": { - "$date": "2022-07-29T04:18:04.000Z" - }, - "events": [ - { - "uuid": "fa90b008-2cac-45cf-b6ac-c5d3148a8cd2", - "start": { - "$date": "2022-07-29T03:15:13.000Z" - }, - "end": { - "$date": "2022-07-29T04:18:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "1f5d048e-4cbb-4174-8a5c-69ba9ab01897", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-29T03:15:28.000Z" - }, - "end": { - "$date": "2022-07-29T04:20:19.000Z" - }, - "events": [ - { - "uuid": "7f82a5e0-1687-45cf-85e7-469d8cc3f0e4", - "start": { - "$date": "2022-07-29T03:15:28.000Z" - }, - "end": { - "$date": "2022-07-29T04:20:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "40cbbb5a-3dfc-4047-a531-827d193b7c8e", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-29T03:24:39.000Z" - }, - "end": { - "$date": "2022-07-29T06:54:10.000Z" - }, - "events": [ - { - "uuid": "a498ef13-4496-48f5-a6b0-0460b6dc5500", - "start": { - "$date": "2022-07-29T03:24:39.000Z" - }, - "end": { - "$date": "2022-07-29T06:54:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "8c984338-529e-4a77-b761-d68b0df94609", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-29T05:47:57.000Z" - }, - "end": { - "$date": "2022-07-29T05:48:02.000Z" - }, - "events": [ - { - "uuid": "5a4ea0dc-9425-4aef-9377-b5e37a557ab0", - "start": { - "$date": "2022-07-29T05:47:57.000Z" - }, - "end": { - "$date": "2022-07-29T05:48:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "33e28b1a-f83b-4e77-b451-71938273054a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-29T07:20:24.000Z" - }, - "end": { - "$date": "2022-07-29T07:20:28.000Z" - }, - "events": [ - { - "uuid": "05045469-d8d4-4c66-849b-3b0056c328a5", - "start": { - "$date": "2022-07-29T07:20:24.000Z" - }, - "end": { - "$date": "2022-07-29T07:20:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "6941c41c-7c6f-46ab-9af7-a78b55c800dc", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T17:52:13.000Z" - }, - "end": { - "$date": "2022-07-29T18:06:14.000Z" - }, - "events": [ - { - "uuid": "e63f40f7-fd2c-4a43-9837-38b784b44f60", - "start": { - "$date": "2022-07-29T17:52:13.000Z" - }, - "end": { - "$date": "2022-07-29T18:06:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "fcd173e5-e3a2-46fd-aa65-79143f21f28f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-29T18:41:12.000Z" - }, - "end": { - "$date": "2022-07-29T19:34:36.000Z" - }, - "events": [ - { - "uuid": "c112dc87-cccf-4088-a39c-24dd1d12b7bb", - "start": { - "$date": "2022-07-29T18:41:12.000Z" - }, - "end": { - "$date": "2022-07-29T19:34:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "cd8dcbb2-b6fc-4e98-a851-f4af9150361a", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-29T19:04:21.000Z" - }, - "end": { - "$date": "2022-07-29T19:36:07.000Z" - }, - "events": [ - { - "uuid": "f260a0ee-aee4-49f0-99fe-92665e9b6b12", - "start": { - "$date": "2022-07-29T19:04:21.000Z" - }, - "end": { - "$date": "2022-07-29T19:36:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "72ff16ef-1c1b-4f48-aaa3-7038d7684b74", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-29T21:16:19.000Z" - }, - "end": { - "$date": "2022-07-29T21:45:41.000Z" - }, - "events": [ - { - "uuid": "10286e41-f640-4f8b-8c3c-cc78246686fc", - "start": { - "$date": "2022-07-29T21:16:19.000Z" - }, - "end": { - "$date": "2022-07-29T21:45:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "828c9ec0-5a05-406b-836b-3ca8485ce1bd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-29T21:50:37.000Z" - }, - "end": { - "$date": "2022-07-29T22:20:05.000Z" - }, - "events": [ - { - "uuid": "fe50c84d-1cc6-4ed9-9b63-6b5ede8106a6", - "start": { - "$date": "2022-07-29T21:50:37.000Z" - }, - "end": { - "$date": "2022-07-29T22:20:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f93e8d85-57b3-4f72-8f33-792dd1a333a8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-29T22:23:01.000Z" - }, - "end": { - "$date": "2022-07-29T22:52:46.000Z" - }, - "events": [ - { - "uuid": "4d1e52e7-7a7c-47e7-9803-35651a5e8ef3", - "start": { - "$date": "2022-07-29T22:23:01.000Z" - }, - "end": { - "$date": "2022-07-29T22:52:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "b0da8467-414c-4def-a8cf-483af2dd0223", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-29T22:23:37.000Z" - }, - "end": { - "$date": "2022-07-29T22:38:27.000Z" - }, - "events": [ - { - "uuid": "2e351e74-b244-4c8b-b465-cac19dc580d7", - "start": { - "$date": "2022-07-29T22:23:37.000Z" - }, - "end": { - "$date": "2022-07-29T22:38:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "45c72b7f-4693-48d2-9423-dd6860362034", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-29T22:37:15.000Z" - }, - "end": { - "$date": "2022-07-30T12:07:59.000Z" - }, - "events": [ - { - "uuid": "68aa523c-dd04-453c-b115-e930f09f7754", - "start": { - "$date": "2022-07-29T22:37:15.000Z" - }, - "end": { - "$date": "2022-07-30T07:39:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "20115764-7b1c-44e1-9ba7-5a95781953d7", - "start": { - "$date": "2022-07-30T07:39:15.000Z" - }, - "end": { - "$date": "2022-07-30T07:41:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "00a5cfc5-378f-4529-898a-069dfd857969", - "start": { - "$date": "2022-07-30T07:41:15.000Z" - }, - "end": { - "$date": "2022-07-30T12:07:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9e7576c5-71e4-48a6-9b11-7f505a49233e", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-29T22:58:17.000Z" - }, - "end": { - "$date": "2022-07-29T23:15:19.000Z" - }, - "events": [ - { - "uuid": "084a88d4-b8e5-4b72-88f4-31025bbcdec6", - "start": { - "$date": "2022-07-29T22:58:17.000Z" - }, - "end": { - "$date": "2022-07-29T23:15:19.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "698fc759-3aa1-4282-b866-1cb028c378bd", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T00:37:17.000Z" - }, - "end": { - "$date": "2022-07-30T00:41:12.000Z" - }, - "events": [ - { - "uuid": "7e131654-32b8-4236-b34f-d37ab35d0d2b", - "start": { - "$date": "2022-07-30T00:37:17.000Z" - }, - "end": { - "$date": "2022-07-30T00:41:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "477e0712-5cc8-4c3a-8c71-d20ec913ef6c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-30T01:32:44.000Z" - }, - "end": { - "$date": "2022-07-30T01:33:15.000Z" - }, - "events": [ - { - "uuid": "9b59f90b-5299-407b-a948-1416d321a2ae", - "start": { - "$date": "2022-07-30T01:32:44.000Z" - }, - "end": { - "$date": "2022-07-30T01:33:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "339cbad5-5f51-4f7b-a74c-30e42707b190", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T01:13:53.000Z" - }, - "end": { - "$date": "2022-07-30T01:39:15.000Z" - }, - "events": [ - { - "uuid": "06281bda-ff79-4d09-938a-14b18827111a", - "start": { - "$date": "2022-07-30T01:13:53.000Z" - }, - "end": { - "$date": "2022-07-30T01:39:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "0f719fd9-6135-4b2b-8a2e-55495b61f632", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T01:41:13.000Z" - }, - "end": { - "$date": "2022-07-30T02:49:27.000Z" - }, - "events": [ - { - "uuid": "54d38962-1340-4e0e-823d-b8ea0cd2ee5a", - "start": { - "$date": "2022-07-30T01:41:13.000Z" - }, - "end": { - "$date": "2022-07-30T02:49:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "892fda9e-1b72-4fa5-89a4-21e8cf620c74", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T02:08:18.000Z" - }, - "end": { - "$date": "2022-07-30T02:46:08.000Z" - }, - "events": [ - { - "uuid": "2ad6416f-8c80-4f3d-9595-62515a4ffc86", - "start": { - "$date": "2022-07-30T02:08:18.000Z" - }, - "end": { - "$date": "2022-07-30T02:46:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "677ddd43-d31e-4593-b895-7c6b23133dd5", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T02:50:37.000Z" - }, - "end": { - "$date": "2022-07-30T03:40:30.000Z" - }, - "events": [ - { - "uuid": "92a860ca-c52b-4f41-9170-9f42be9b7399", - "start": { - "$date": "2022-07-30T02:50:37.000Z" - }, - "end": { - "$date": "2022-07-30T03:40:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3f1fde15-e27b-4334-b874-7cb166ac30d4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T03:40:45.000Z" - }, - "end": { - "$date": "2022-07-30T07:12:43.000Z" - }, - "events": [ - { - "uuid": "4932a3c1-7035-4cff-9d9e-22f8c714afd7", - "start": { - "$date": "2022-07-30T03:40:45.000Z" - }, - "end": { - "$date": "2022-07-30T07:12:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ab1d39c1-ae73-4cd7-990f-ff1298df178b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T04:08:00.000Z" - }, - "end": { - "$date": "2022-07-30T05:39:52.000Z" - }, - "events": [ - { - "uuid": "cf9b04db-eabe-40bd-bc79-bef7e319124a", - "start": { - "$date": "2022-07-30T04:08:00.000Z" - }, - "end": { - "$date": "2022-07-30T05:39:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "83ce3140-48a8-4fc6-a589-b9d650983f88", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-30T04:22:48.000Z" - }, - "end": { - "$date": "2022-07-30T04:56:46.000Z" - }, - "events": [ - { - "uuid": "4ed2eee7-2433-46a0-ae54-986b803418e5", - "start": { - "$date": "2022-07-30T04:22:48.000Z" - }, - "end": { - "$date": "2022-07-30T04:56:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e48d07ec-b456-432a-bdc2-fc4962cce9ac", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-07-30T04:57:46.000Z" - }, - "end": { - "$date": "2022-07-30T05:30:11.000Z" - }, - "events": [ - { - "uuid": "0672916f-789a-4793-b215-5eaee6309829", - "start": { - "$date": "2022-07-30T04:57:46.000Z" - }, - "end": { - "$date": "2022-07-30T05:30:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "1c5222d7-e307-437e-9c4b-59e0342ed846", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T05:42:18.000Z" - }, - "end": { - "$date": "2022-07-30T06:46:40.000Z" - }, - "events": [ - { - "uuid": "b4658a4f-a285-4b7f-bed4-916f854a038a", - "start": { - "$date": "2022-07-30T05:42:18.000Z" - }, - "end": { - "$date": "2022-07-30T06:46:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "a0e27f66-bff8-4073-be00-601110a9118f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T05:43:33.000Z" - }, - "end": { - "$date": "2022-07-30T05:45:48.000Z" - }, - "events": [ - { - "uuid": "dce89899-d488-48b0-becf-55c2d3977675", - "start": { - "$date": "2022-07-30T05:43:33.000Z" - }, - "end": { - "$date": "2022-07-30T05:45:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "401f8829-6e45-48d3-b683-5e846a4ea8b8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T05:47:19.000Z" - }, - "end": { - "$date": "2022-07-30T06:47:00.000Z" - }, - "events": [ - { - "uuid": "1e75b5ab-95f8-4e91-86bf-fd0c53498632", - "start": { - "$date": "2022-07-30T05:47:19.000Z" - }, - "end": { - "$date": "2022-07-30T06:47:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "9e1e801d-9792-4620-98fd-c99af75efb4d", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-30T05:52:43.000Z" - }, - "end": { - "$date": "2022-07-30T07:00:10.000Z" - }, - "events": [ - { - "uuid": "9b268ab5-1414-46c7-915f-816ca9318ede", - "start": { - "$date": "2022-07-30T05:52:43.000Z" - }, - "end": { - "$date": "2022-07-30T07:00:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3dd28255-e2a2-4cb0-a064-e14ad7c334c3", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T07:08:16.000Z" - }, - "end": { - "$date": "2022-07-30T07:24:02.000Z" - }, - "events": [ - { - "uuid": "e8f174c0-2ae3-4c31-89c3-5f5afc4c05da", - "start": { - "$date": "2022-07-30T07:08:16.000Z" - }, - "end": { - "$date": "2022-07-30T07:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0e1b0797-c344-42d2-9dd2-a6a2dd3f8911", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T07:13:03.000Z" - }, - "end": { - "$date": "2022-07-30T07:15:23.000Z" - }, - "events": [ - { - "uuid": "0f3b39ea-531d-496b-b698-29bec4224d0f", - "start": { - "$date": "2022-07-30T07:13:03.000Z" - }, - "end": { - "$date": "2022-07-30T07:15:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "361fa809-7271-4b7e-a692-0648378e699e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-07-30T09:48:54.000Z" - }, - "end": { - "$date": "2022-07-30T09:48:58.000Z" - }, - "events": [ - { - "uuid": "b46ab886-0f32-4e03-b91d-1996dc920b44", - "start": { - "$date": "2022-07-30T09:48:54.000Z" - }, - "end": { - "$date": "2022-07-30T09:48:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "28a0b669-103e-4066-ae54-c6e0dd929f43", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T16:23:34.000Z" - }, - "end": { - "$date": "2022-07-30T16:42:00.000Z" - }, - "events": [ - { - "uuid": "16b876ae-6b4a-48d0-8b1c-ff3936645970", - "start": { - "$date": "2022-07-30T16:23:34.000Z" - }, - "end": { - "$date": "2022-07-30T16:42:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "a2e17078-0c70-4ac1-b59c-e19658b3f9fb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T16:54:01.000Z" - }, - "end": { - "$date": "2022-07-30T17:26:33.000Z" - }, - "events": [ - { - "uuid": "96ccc5c7-0b88-475e-a735-dffc8e0a3bbe", - "start": { - "$date": "2022-07-30T16:54:01.000Z" - }, - "end": { - "$date": "2022-07-30T17:04:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "3280f006-c10e-440f-8017-6d3827b1d9dc", - "start": { - "$date": "2022-07-30T17:04:01.000Z" - }, - "end": { - "$date": "2022-07-30T17:09:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "9e8a1e10-8ea7-4a25-8683-8c808d2403de", - "start": { - "$date": "2022-07-30T17:09:01.000Z" - }, - "end": { - "$date": "2022-07-30T17:26:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "e05c1d95-ff83-4476-af30-ed66a02a6bbb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-30T17:11:46.000Z" - }, - "end": { - "$date": "2022-07-30T18:09:02.000Z" - }, - "events": [ - { - "uuid": "39f88fa2-2050-42b1-8d97-f0d426748658", - "start": { - "$date": "2022-07-30T17:11:46.000Z" - }, - "end": { - "$date": "2022-07-30T18:09:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "9081179e-91f1-4014-af5c-37b8895a4f3b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T17:27:23.000Z" - }, - "end": { - "$date": "2022-07-30T18:41:40.000Z" - }, - "events": [ - { - "uuid": "038c73a1-7fc3-4548-a1f1-7d533757eb94", - "start": { - "$date": "2022-07-30T17:27:23.000Z" - }, - "end": { - "$date": "2022-07-30T18:41:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "cb161313-5515-4fce-9fbb-0b6138c894ba", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T18:42:55.000Z" - }, - "end": { - "$date": "2022-07-30T19:21:56.000Z" - }, - "events": [ - { - "uuid": "653ddd92-aad8-4bb1-b6b4-1eae91143097", - "start": { - "$date": "2022-07-30T18:42:55.000Z" - }, - "end": { - "$date": "2022-07-30T19:21:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "97b9198a-b736-4021-805d-2c50047386aa", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T19:22:41.000Z" - }, - "end": { - "$date": "2022-07-30T19:34:23.000Z" - }, - "events": [ - { - "uuid": "44911167-8876-455f-a78e-28709eb3103b", - "start": { - "$date": "2022-07-30T19:22:41.000Z" - }, - "end": { - "$date": "2022-07-30T19:34:23.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "af6b15b6-7448-42c1-9fbf-f37d5da70a26", - "uuid": "381d79a5-b46e-4022-8a4d-75ebdfae2212", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-30T19:35:12.000Z" - }, - "end": { - "$date": "2022-07-30T20:31:29.000Z" - }, - "events": [ - { - "uuid": "5b93f144-8d87-4de4-aee4-6930c92fafe2", - "start": { - "$date": "2022-07-30T19:35:12.000Z" - }, - "end": { - "$date": "2022-07-30T20:31:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "b3dd996c-1004-4ee1-9364-a4d13957e3c4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T20:33:48.000Z" - }, - "end": { - "$date": "2022-07-30T21:49:08.000Z" - }, - "events": [ - { - "uuid": "4be4f0f1-0514-4e95-a45c-a6c203d5ce66", - "start": { - "$date": "2022-07-30T20:33:48.000Z" - }, - "end": { - "$date": "2022-07-30T21:49:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "e997b06e-8117-42a0-b117-322173eb4f7b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-30T21:34:19.000Z" - }, - "end": { - "$date": "2022-07-30T23:49:00.000Z" - }, - "events": [ - { - "uuid": "0ff327a7-de6d-4148-9afc-1a33d64792e9", - "start": { - "$date": "2022-07-30T21:34:19.000Z" - }, - "end": { - "$date": "2022-07-30T22:21:19.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "77917c27-555c-419d-9e30-c26bc62f26e0", - "start": { - "$date": "2022-07-30T22:21:19.000Z" - }, - "end": { - "$date": "2022-07-30T22:25:19.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0c020a88-0aa8-4884-85b8-69da0b65f007", - "start": { - "$date": "2022-07-30T22:25:19.000Z" - }, - "end": { - "$date": "2022-07-30T23:49:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "c9e3f240-d1e2-444d-af11-fd91aff8848b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T21:55:31.000Z" - }, - "end": { - "$date": "2022-07-30T21:58:45.000Z" - }, - "events": [ - { - "uuid": "b044d457-e8a9-4367-9527-bc9f0eed539f", - "start": { - "$date": "2022-07-30T21:55:31.000Z" - }, - "end": { - "$date": "2022-07-30T21:58:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "3cb19779-ffe9-43f9-a166-80c7ac9af1a4", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-30T21:59:01.000Z" - }, - "end": { - "$date": "2022-07-31T01:40:03.000Z" - }, - "events": [ - { - "uuid": "1fcfe127-e32a-4d22-8456-b23b68203308", - "start": { - "$date": "2022-07-30T21:59:01.000Z" - }, - "end": { - "$date": "2022-07-31T01:26:01.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "0db330c3-cab6-4940-a32d-ce0e2b4c532b", - "start": { - "$date": "2022-07-31T01:26:01.000Z" - }, - "end": { - "$date": "2022-07-31T01:31:01.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "28d5bcb0-cc76-4dd9-a979-9859f1b2fff4", - "start": { - "$date": "2022-07-31T01:31:01.000Z" - }, - "end": { - "$date": "2022-07-31T01:40:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "71c949ae-9a14-40cc-aea3-5bfa62a92184", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-30T22:06:20.000Z" - }, - "end": { - "$date": "2022-07-30T22:30:15.000Z" - }, - "events": [ - { - "uuid": "05d01489-468b-4d41-b766-229e5e01253f", - "start": { - "$date": "2022-07-30T22:06:20.000Z" - }, - "end": { - "$date": "2022-07-30T22:30:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "ce73f85a-4ad0-4be6-8116-55fefe13970b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-31T00:43:05.000Z" - }, - "end": { - "$date": "2022-07-31T01:01:05.000Z" - }, - "events": [ - { - "uuid": "d815f4d9-2df7-4a09-9ffb-9d05e6734e83", - "start": { - "$date": "2022-07-31T00:43:05.000Z" - }, - "end": { - "$date": "2022-07-31T01:01:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "2fd0bf12-264b-4291-b00f-dbac98c269b3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-30T23:49:58.000Z" - }, - "end": { - "$date": "2022-07-31T01:00:43.000Z" - }, - "events": [ - { - "uuid": "7506fbf4-256f-4723-85ee-230c7c5b2211", - "start": { - "$date": "2022-07-30T23:49:58.000Z" - }, - "end": { - "$date": "2022-07-31T01:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "124192b5-7003-477f-b35f-6534ca3d069c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T00:06:30.000Z" - }, - "end": { - "$date": "2022-07-31T00:41:00.000Z" - }, - "events": [ - { - "uuid": "0bc8d46d-cd94-4632-99fe-56ac141cb161", - "start": { - "$date": "2022-07-31T00:06:30.000Z" - }, - "end": { - "$date": "2022-07-31T00:41:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e03fd54f-5027-4633-b731-a74d71e81f25", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T00:43:16.000Z" - }, - "end": { - "$date": "2022-07-31T01:01:10.000Z" - }, - "events": [ - { - "uuid": "71cf2ef0-af21-46fb-b8ba-368bce7bb93a", - "start": { - "$date": "2022-07-31T00:43:16.000Z" - }, - "end": { - "$date": "2022-07-31T00:56:16.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7400ae4f-eff8-4895-9553-05804b93120a", - "start": { - "$date": "2022-07-31T00:56:16.000Z" - }, - "end": { - "$date": "2022-07-31T01:01:10.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "09dc7926-f42c-424d-8523-e80341465c22", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-31T00:55:15.000Z" - }, - "end": { - "$date": "2022-07-31T04:21:35.000Z" - }, - "events": [ - { - "uuid": "d20b1c63-62a8-4a0f-8e24-d8ccf78f012b", - "start": { - "$date": "2022-07-31T00:55:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:21:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d66111f5-2fdb-47af-b29b-f0563e4759e2", - "start": { - "$date": "2022-07-31T03:21:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:25:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "af07a440-eee6-4cd7-8801-75a319010a58", - "start": { - "$date": "2022-07-31T03:25:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:26:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "88b4f04c-69d6-49bd-a326-d546c0e466fd", - "start": { - "$date": "2022-07-31T03:26:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:36:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "1ca17f85-f7f6-4593-a3ac-29918995fa60", - "start": { - "$date": "2022-07-31T03:36:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:37:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "437e8af0-fc9e-4ba2-8c48-917d90274a3f", - "start": { - "$date": "2022-07-31T03:37:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:38:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "f8353d3a-554b-4ebb-bb94-8ad7ba4f9118", - "start": { - "$date": "2022-07-31T03:38:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:39:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e3ad3d25-c996-45bc-a04b-9700b3abb57e", - "start": { - "$date": "2022-07-31T03:39:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:55:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "83c5827f-47ef-4f76-8f64-b1ceba3fd366", - "start": { - "$date": "2022-07-31T03:55:15.000Z" - }, - "end": { - "$date": "2022-07-31T03:56:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "296db0eb-f71b-4b76-be8b-416d07e4e62a", - "start": { - "$date": "2022-07-31T03:56:15.000Z" - }, - "end": { - "$date": "2022-07-31T04:06:15.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "99359f98-1abc-40de-847e-deaa52c0b815", - "start": { - "$date": "2022-07-31T04:06:15.000Z" - }, - "end": { - "$date": "2022-07-31T04:07:15.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "8bdc6151-69fb-4223-8d36-e71a6a172440", - "start": { - "$date": "2022-07-31T04:07:15.000Z" - }, - "end": { - "$date": "2022-07-31T04:21:35.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "b72edef2-f61c-4b6e-875a-06e3fbd4bcb9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-31T01:11:36.000Z" - }, - "end": { - "$date": "2022-07-31T02:32:58.000Z" - }, - "events": [ - { - "uuid": "ca727ec7-9b80-4238-9fa6-0abadd459704", - "start": { - "$date": "2022-07-31T01:11:36.000Z" - }, - "end": { - "$date": "2022-07-31T02:32:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "56d11f16-8ae5-4a1f-b10b-d3c4779c7ecb", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-31T01:27:50.000Z" - }, - "end": { - "$date": "2022-07-31T04:24:02.000Z" - }, - "events": [ - { - "uuid": "8ace4cc2-fddd-480a-93f4-6e48a0287e29", - "start": { - "$date": "2022-07-31T01:27:50.000Z" - }, - "end": { - "$date": "2022-07-31T04:24:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "5923bfd0-3e5d-438f-97b2-1b15c0cece2f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T01:32:49.000Z" - }, - "end": { - "$date": "2022-07-31T01:43:49.000Z" - }, - "events": [ - { - "uuid": "e4cf7197-3f09-4416-a8b8-a0a8a9db7797", - "start": { - "$date": "2022-07-31T01:32:49.000Z" - }, - "end": { - "$date": "2022-07-31T01:43:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "f5bfad0c-b9db-43b6-9be6-f2d84dac09ff", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T01:43:55.000Z" - }, - "end": { - "$date": "2022-07-31T01:52:09.000Z" - }, - "events": [ - { - "uuid": "7b60f2a7-1b23-455d-82a6-16cba6ba31f2", - "start": { - "$date": "2022-07-31T01:43:55.000Z" - }, - "end": { - "$date": "2022-07-31T01:52:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "44be8b28-6a82-4119-823a-2c15bf430086", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T01:55:36.000Z" - }, - "end": { - "$date": "2022-07-31T02:24:21.000Z" - }, - "events": [ - { - "uuid": "8a913c79-fbb6-4dde-87a3-c0895b3dd67b", - "start": { - "$date": "2022-07-31T01:55:36.000Z" - }, - "end": { - "$date": "2022-07-31T02:24:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "92b4cd53-1341-4da5-b5ce-5121f68c3ae8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-31T02:10:27.000Z" - }, - "end": { - "$date": "2022-07-31T05:20:40.000Z" - }, - "events": [ - { - "uuid": "8234a6d9-feb5-484c-8435-6af644a06d51", - "start": { - "$date": "2022-07-31T02:10:27.000Z" - }, - "end": { - "$date": "2022-07-31T05:20:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "c7397d6f-fdd7-401d-98c7-32c1910fa51d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T02:25:32.000Z" - }, - "end": { - "$date": "2022-07-31T03:53:43.000Z" - }, - "events": [ - { - "uuid": "d6b74487-3ea8-4674-b8b9-4f3fdc4e3bad", - "start": { - "$date": "2022-07-31T02:25:32.000Z" - }, - "end": { - "$date": "2022-07-31T03:53:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "9866402c-8056-48fb-bfda-061d290131de", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-07-31T03:03:17.000Z" - }, - "end": { - "$date": "2022-07-31T06:43:12.000Z" - }, - "events": [ - { - "uuid": "8fdedd4f-c0c1-46c9-8ff7-9d75b91608ee", - "start": { - "$date": "2022-07-31T03:03:17.000Z" - }, - "end": { - "$date": "2022-07-31T06:43:12.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "ddd97e88-0f11-4348-86f4-d32867f56ed6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T05:01:22.000Z" - }, - "end": { - "$date": "2022-07-31T05:29:17.000Z" - }, - "events": [ - { - "uuid": "e6163e4b-95a1-4148-9175-33848d8b6cba", - "start": { - "$date": "2022-07-31T05:01:22.000Z" - }, - "end": { - "$date": "2022-07-31T05:29:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "b74bc9e7-20a2-4da8-ac0d-77f654da57a5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-31T05:02:00.000Z" - }, - "end": { - "$date": "2022-07-31T10:39:35.000Z" - }, - "events": [ - { - "uuid": "d279089c-1c77-45bf-86fa-f66cde125807", - "start": { - "$date": "2022-07-31T05:02:00.000Z" - }, - "end": { - "$date": "2022-07-31T10:39:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0abe3c85-b2d6-469a-992d-f80a3f15c079", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-31T05:20:55.000Z" - }, - "end": { - "$date": "2022-07-31T07:04:06.000Z" - }, - "events": [ - { - "uuid": "b7768be9-e6f6-4ea5-8f04-5aeff5f594e3", - "start": { - "$date": "2022-07-31T05:20:55.000Z" - }, - "end": { - "$date": "2022-07-31T07:04:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "dbcf7530-89de-411c-91e5-415814dfe218", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-31T06:33:35.000Z" - }, - "end": { - "$date": "2022-07-31T09:09:06.000Z" - }, - "events": [ - { - "uuid": "34bc2cdb-d7a2-4777-a122-a218cacf74fe", - "start": { - "$date": "2022-07-31T06:33:35.000Z" - }, - "end": { - "$date": "2022-07-31T07:30:35.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "4b6b7f72-bba9-4a3b-b887-95a2e4ccc1c7", - "start": { - "$date": "2022-07-31T07:30:35.000Z" - }, - "end": { - "$date": "2022-07-31T08:59:35.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "48e4a4c8-25ce-4628-83ed-09dbafbc2b05", - "start": { - "$date": "2022-07-31T08:59:35.000Z" - }, - "end": { - "$date": "2022-07-31T09:09:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9e3ff18b-6315-458c-a6dc-28d850884d21", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T06:44:09.000Z" - }, - "end": { - "$date": "2022-07-31T07:06:34.000Z" - }, - "events": [ - { - "uuid": "894a899d-40ef-44eb-93e9-ee87d8d0f4a1", - "start": { - "$date": "2022-07-31T06:44:09.000Z" - }, - "end": { - "$date": "2022-07-31T07:06:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "1baf6dcb-f673-4dfd-b7d0-07d835a1f29b", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-31T10:21:46.000Z" - }, - "end": { - "$date": "2022-07-31T11:27:46.000Z" - }, - "events": [ - { - "uuid": "dae03ca3-5d7c-4644-89c6-bddb97d96643", - "start": { - "$date": "2022-07-31T10:21:46.000Z" - }, - "end": { - "$date": "2022-07-31T11:27:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "20acbc52-06cf-4a23-8054-e781e50ecefd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-31T14:14:18.000Z" - }, - "end": { - "$date": "2022-07-31T17:17:11.000Z" - }, - "events": [ - { - "uuid": "5b5e33ef-c202-4d60-84c6-8f1e0e589130", - "start": { - "$date": "2022-07-31T14:14:18.000Z" - }, - "end": { - "$date": "2022-07-31T17:17:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "22f49b95-c0c6-4ea2-8c77-acd21cd410fa", - "uuid": "49a99bbb-4b02-4968-98e4-56494590c115", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-31T15:03:10.000Z" - }, - "end": { - "$date": "2022-07-31T16:11:57.000Z" - }, - "events": [ - { - "uuid": "da0efdab-fd8c-4e53-9b74-f9278baad6a2", - "start": { - "$date": "2022-07-31T15:03:10.000Z" - }, - "end": { - "$date": "2022-07-31T16:11:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0a45a288-83ce-4fb0-ad9f-8db80fa2ff53", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-07-31T15:09:57.000Z" - }, - "end": { - "$date": "2022-07-31T15:13:05.000Z" - }, - "events": [ - { - "uuid": "2323f37a-3cbd-4386-9439-be66da837c32", - "start": { - "$date": "2022-07-31T15:09:57.000Z" - }, - "end": { - "$date": "2022-07-31T15:13:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "3232fd9b-19f1-40d6-8ba5-13fb423dcaea", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-07-31T16:14:12.000Z" - }, - "end": { - "$date": "2022-07-31T17:32:53.000Z" - }, - "events": [ - { - "uuid": "1bd8ffd6-c272-454c-9fad-6ea0a981cdef", - "start": { - "$date": "2022-07-31T16:14:12.000Z" - }, - "end": { - "$date": "2022-07-31T17:32:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b771006f-809d-474f-bc58-90087c3fb96f", - "uuid": "9b6fcad9-5422-4bc3-8716-1ae6b6df742b", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-31T17:21:21.000Z" - }, - "end": { - "$date": "2022-07-31T17:29:02.000Z" - }, - "events": [ - { - "uuid": "fd632165-6ed3-488e-9165-0bcc4b539680", - "start": { - "$date": "2022-07-31T17:21:21.000Z" - }, - "end": { - "$date": "2022-07-31T17:29:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "5d4804bf-c046-415d-88ea-cd6345124e7e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-31T17:35:18.000Z" - }, - "end": { - "$date": "2022-07-31T21:27:27.000Z" - }, - "events": [ - { - "uuid": "7c159d8f-7b11-4f57-bcad-a1bbc586e145", - "start": { - "$date": "2022-07-31T17:35:18.000Z" - }, - "end": { - "$date": "2022-07-31T21:27:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "719249ae-bce1-4fc5-bfe1-ebb62a060037", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T20:24:29.000Z" - }, - "end": { - "$date": "2022-07-31T21:21:41.000Z" - }, - "events": [ - { - "uuid": "3f9ff3d2-bae5-423a-b890-f0c22888154c", - "start": { - "$date": "2022-07-31T20:24:29.000Z" - }, - "end": { - "$date": "2022-07-31T21:04:29.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "9c3e6950-fa10-4e2d-92e3-36c9c67f5dc3", - "start": { - "$date": "2022-07-31T21:04:29.000Z" - }, - "end": { - "$date": "2022-07-31T21:09:29.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8951515c-1daf-4138-ac3f-ec93be066702", - "start": { - "$date": "2022-07-31T21:09:29.000Z" - }, - "end": { - "$date": "2022-07-31T21:21:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "0a7aae18-7b5c-4f64-93c7-9af9cfac776a", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-07-31T19:18:13.000Z" - }, - "end": { - "$date": "2022-08-01T06:59:02.000Z" - }, - "events": [ - { - "uuid": "857cedd6-7a40-45ab-a258-acdff0c14879", - "start": { - "$date": "2022-07-31T19:18:13.000Z" - }, - "end": { - "$date": "2022-08-01T00:06:13.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "e5782582-4b20-42db-87eb-035d9551e774", - "start": { - "$date": "2022-08-01T00:06:13.000Z" - }, - "end": { - "$date": "2022-08-01T00:11:13.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "8a0462a9-8fec-40ee-b416-1c77439468be", - "start": { - "$date": "2022-08-01T00:11:13.000Z" - }, - "end": { - "$date": "2022-08-01T06:59:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "23b7ae05-8c1b-41cf-8cfe-52746de5a925", - "uuid": "43372346-31b1-49ba-9908-d87a7178d417", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-07-31T23:29:55.000Z" - }, - "end": { - "$date": "2022-07-31T23:30:00.000Z" - }, - "events": [ - { - "uuid": "cbdb5ecb-795e-4229-b56a-a74207a95b1b", - "start": { - "$date": "2022-07-31T23:29:55.000Z" - }, - "end": { - "$date": "2022-07-31T23:30:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2341297f-e0de-4aff-9a70-a452eab32bcb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T21:43:24.000Z" - }, - "end": { - "$date": "2022-07-31T22:25:54.000Z" - }, - "events": [ - { - "uuid": "954ebc78-e75f-42a0-a349-2677a8623785", - "start": { - "$date": "2022-07-31T21:43:24.000Z" - }, - "end": { - "$date": "2022-07-31T22:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "bf40cade-76a6-43cf-9ba1-c56f2c7222af", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-07-31T22:31:10.000Z" - }, - "end": { - "$date": "2022-07-31T23:02:01.000Z" - }, - "events": [ - { - "uuid": "fb6c8d8a-a390-4109-a4ba-f303a746738d", - "start": { - "$date": "2022-07-31T22:31:10.000Z" - }, - "end": { - "$date": "2022-07-31T23:02:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "f0edbb9f-7e00-4da0-9d90-761253e9bc23", - "uuid": "c00f9281-689c-4cc9-b3f6-cd8c6dddcb18", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-07-31T23:22:58.000Z" - }, - "end": { - "$date": "2022-08-01T00:06:35.000Z" - }, - "events": [ - { - "uuid": "60dfa4b5-962f-4623-b9e2-0e70bd0e9a1f", - "start": { - "$date": "2022-07-31T23:22:58.000Z" - }, - "end": { - "$date": "2022-08-01T00:06:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "7d3d3990-175c-443a-905e-5028abc71d36", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-07-31T23:40:12.000Z" - }, - "end": { - "$date": "2022-08-01T00:24:39.000Z" - }, - "events": [ - { - "uuid": "80477c11-4ac0-4bb9-9319-d57a4e02f934", - "start": { - "$date": "2022-07-31T23:40:12.000Z" - }, - "end": { - "$date": "2022-08-01T00:24:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "afec22d4-f962-46de-9102-406c0cb54ec4", - "uuid": "8fcd84ea-69e0-48a2-a499-b1de76a872bd", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T00:07:40.000Z" - }, - "end": { - "$date": "2022-08-01T04:06:54.000Z" - }, - "events": [ - { - "uuid": "6a43c4ed-8987-49d6-8a51-2a5572fafd33", - "start": { - "$date": "2022-08-01T00:07:40.000Z" - }, - "end": { - "$date": "2022-08-01T04:06:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b17acf75-ebc0-4764-b171-ea47786bed9b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-01T01:16:49.000Z" - }, - "end": { - "$date": "2022-08-01T02:05:06.000Z" - }, - "events": [ - { - "uuid": "01c2a9be-3536-495a-9a54-c149dd6d1b6c", - "start": { - "$date": "2022-08-01T01:16:49.000Z" - }, - "end": { - "$date": "2022-08-01T02:05:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b292d1e0-c3a1-485e-b6fb-d1707ab95247", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-01T02:32:59.000Z" - }, - "end": { - "$date": "2022-08-01T02:47:10.000Z" - }, - "events": [ - { - "uuid": "b8851fea-2822-4421-bdd4-b04d25b85bf7", - "start": { - "$date": "2022-08-01T02:32:59.000Z" - }, - "end": { - "$date": "2022-08-01T02:47:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "485b30a1-d9a9-431d-a55b-05010b2b089b", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-08-01T01:30:07.000Z" - }, - "end": { - "$date": "2022-08-01T01:32:57.000Z" - }, - "events": [ - { - "uuid": "6713e564-f349-4793-a0b4-650393ffc966", - "start": { - "$date": "2022-08-01T01:30:07.000Z" - }, - "end": { - "$date": "2022-08-01T01:32:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "9727d2c9-2678-41f4-8a56-1fbd16b62f95", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T01:40:46.000Z" - }, - "end": { - "$date": "2022-08-01T02:02:31.000Z" - }, - "events": [ - { - "uuid": "f156ffdb-2ddd-4ffd-9c91-93ce3e77f8bd", - "start": { - "$date": "2022-08-01T01:40:46.000Z" - }, - "end": { - "$date": "2022-08-01T02:02:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "14db3a5e-1c87-4dac-a078-0a72dce2c2f8", - "uuid": "1743e4d6-8243-461c-a641-c5adf2c57f96", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-08-01T01:42:42.000Z" - }, - "end": { - "$date": "2022-08-01T03:13:30.000Z" - }, - "events": [ - { - "uuid": "ae10c444-1ea2-46bc-afcc-290177a13897", - "start": { - "$date": "2022-08-01T01:42:42.000Z" - }, - "end": { - "$date": "2022-08-01T03:13:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "499ba08c-1117-462b-800e-1f1c0720142e", - "uuid": "86ec8507-f4a8-4cfd-b0fe-09c7b3ee336e", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T02:02:42.000Z" - }, - "end": { - "$date": "2022-08-01T02:04:56.000Z" - }, - "events": [ - { - "uuid": "e4c39455-ea19-4647-ae87-65ea0ca2bfd0", - "start": { - "$date": "2022-08-01T02:02:42.000Z" - }, - "end": { - "$date": "2022-08-01T02:04:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "55b46a16-5839-4881-921e-cd799c30b6e1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-01T02:07:21.000Z" - }, - "end": { - "$date": "2022-08-01T02:46:38.000Z" - }, - "events": [ - { - "uuid": "17097e1d-3206-4964-a2cc-ac0d36897883", - "start": { - "$date": "2022-08-01T02:07:21.000Z" - }, - "end": { - "$date": "2022-08-01T02:46:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "da1e9cdb-a608-4936-9c62-d72467cc0ada", - "uuid": "bed6d3c0-2155-40d2-aa8f-cea3ca1c8983", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T02:08:42.000Z" - }, - "end": { - "$date": "2022-08-01T02:47:53.000Z" - }, - "events": [ - { - "uuid": "fba6b350-17ef-4b2e-9caa-b47dfec215c0", - "start": { - "$date": "2022-08-01T02:08:42.000Z" - }, - "end": { - "$date": "2022-08-01T02:47:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "53eef4b3-6934-4f2f-99fa-7eea06566e21", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-01T02:47:13.000Z" - }, - "end": { - "$date": "2022-08-01T02:50:33.000Z" - }, - "events": [ - { - "uuid": "947bd77f-35f3-46cd-aeba-cd71959c00c8", - "start": { - "$date": "2022-08-01T02:47:13.000Z" - }, - "end": { - "$date": "2022-08-01T02:50:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "3413e239-00a2-4f42-ac37-00cb2db7ca94", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-01T02:50:53.000Z" - }, - "end": { - "$date": "2022-08-01T03:50:20.000Z" - }, - "events": [ - { - "uuid": "1c8cd47f-9586-428e-bc35-dbbd0eff3e4c", - "start": { - "$date": "2022-08-01T02:50:53.000Z" - }, - "end": { - "$date": "2022-08-01T03:50:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e2082dcd-1c66-4bda-ba00-878699924009", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T02:50:58.000Z" - }, - "end": { - "$date": "2022-08-01T03:50:24.000Z" - }, - "events": [ - { - "uuid": "85eddac7-0daa-4bce-8809-b9073cd8b80c", - "start": { - "$date": "2022-08-01T02:50:58.000Z" - }, - "end": { - "$date": "2022-08-01T03:50:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "96f58641-db8c-4373-90ff-3c91acec7fdb", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T04:45:49.000Z" - }, - "end": { - "$date": "2022-08-01T06:37:04.000Z" - }, - "events": [ - { - "uuid": "af8148fc-3427-458d-a4b7-fb8bd879ec1b", - "start": { - "$date": "2022-08-01T04:45:49.000Z" - }, - "end": { - "$date": "2022-08-01T06:37:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6462e349-004a-40e7-92a2-a78a3fa26631", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-01T05:26:58.000Z" - }, - "end": { - "$date": "2022-08-01T05:46:33.000Z" - }, - "events": [ - { - "uuid": "a97feb32-361e-4fc2-b9fe-e94c11a07782", - "start": { - "$date": "2022-08-01T05:26:58.000Z" - }, - "end": { - "$date": "2022-08-01T05:46:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e9aa5c7-2f14-4811-848f-596fa1f9b89a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T05:27:05.000Z" - }, - "end": { - "$date": "2022-08-01T05:46:31.000Z" - }, - "events": [ - { - "uuid": "b8d0d645-3990-4d4d-903d-e22ff17d1c72", - "start": { - "$date": "2022-08-01T05:27:05.000Z" - }, - "end": { - "$date": "2022-08-01T05:46:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "de3bae76-78c6-4a7b-a0b5-300e2ecbebfb", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-01T05:50:08.000Z" - }, - "end": { - "$date": "2022-08-01T06:08:13.000Z" - }, - "events": [ - { - "uuid": "6c0feb6a-c5b5-4cb9-a102-e13e98d69d07", - "start": { - "$date": "2022-08-01T05:50:08.000Z" - }, - "end": { - "$date": "2022-08-01T06:08:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dce0cea5-e43c-451b-96ba-3e9cd2b3d4fc", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T05:50:11.000Z" - }, - "end": { - "$date": "2022-08-01T06:08:29.000Z" - }, - "events": [ - { - "uuid": "d24a7e59-6a86-4a52-ae86-174e2d01e7bd", - "start": { - "$date": "2022-08-01T05:50:11.000Z" - }, - "end": { - "$date": "2022-08-01T06:08:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "44157d00-65d9-4e78-9846-7572c4a0960d", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-01T06:10:28.000Z" - }, - "end": { - "$date": "2022-08-01T06:37:59.000Z" - }, - "events": [ - { - "uuid": "d68228ed-2c0d-46a8-b733-4c1a6db4891c", - "start": { - "$date": "2022-08-01T06:10:28.000Z" - }, - "end": { - "$date": "2022-08-01T06:37:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c3476b70-200d-4161-ae1a-3526bf914358", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T06:10:32.000Z" - }, - "end": { - "$date": "2022-08-01T06:38:08.000Z" - }, - "events": [ - { - "uuid": "ee24e279-dd35-480a-a238-76433b6b0569", - "start": { - "$date": "2022-08-01T06:10:32.000Z" - }, - "end": { - "$date": "2022-08-01T06:38:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e4e6426b-4e45-4ba5-9c17-07c46cd056e2", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-01T06:41:49.000Z" - }, - "end": { - "$date": "2022-08-01T06:59:54.000Z" - }, - "events": [ - { - "uuid": "d9fa52e4-6d20-44ce-8141-a0a82d29d90b", - "start": { - "$date": "2022-08-01T06:41:49.000Z" - }, - "end": { - "$date": "2022-08-01T06:59:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "28a8aa52-e234-40fc-81a8-41c33da63afe", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T06:39:14.000Z" - }, - "end": { - "$date": "2022-08-01T06:39:57.000Z" - }, - "events": [ - { - "uuid": "72fe27d9-dc0c-4077-b608-bf586a64d2b4", - "start": { - "$date": "2022-08-01T06:39:14.000Z" - }, - "end": { - "$date": "2022-08-01T06:39:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a4bc3816-7896-42e3-b712-4dbb5953afb9", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T06:41:53.000Z" - }, - "end": { - "$date": "2022-08-01T06:59:59.000Z" - }, - "events": [ - { - "uuid": "417faf0a-6796-4ab3-88f3-fbcb12603d4d", - "start": { - "$date": "2022-08-01T06:41:53.000Z" - }, - "end": { - "$date": "2022-08-01T06:59:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "0a2e0014-b277-4e22-87bb-6a9b7c14613c", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T07:02:34.000Z" - }, - "end": { - "$date": "2022-08-01T07:26:47.000Z" - }, - "events": [ - { - "uuid": "77034c77-43d8-4480-bbe8-50de6f039d13", - "start": { - "$date": "2022-08-01T07:02:34.000Z" - }, - "end": { - "$date": "2022-08-01T07:26:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "04c20c6c-7e87-4495-8db0-7a31fafaff80", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-01T07:02:29.000Z" - }, - "end": { - "$date": "2022-08-01T07:26:35.000Z" - }, - "events": [ - { - "uuid": "78510e6d-e393-48f6-a4b9-7b6a6d49455d", - "start": { - "$date": "2022-08-01T07:02:29.000Z" - }, - "end": { - "$date": "2022-08-01T07:26:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "7bff3123-9abc-46e8-b65a-4a25254b6d94", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-01T07:27:19.000Z" - }, - "end": { - "$date": "2022-08-01T07:28:31.000Z" - }, - "events": [ - { - "uuid": "99d577cc-5717-45b3-bf15-531c247cc1c9", - "start": { - "$date": "2022-08-01T07:27:19.000Z" - }, - "end": { - "$date": "2022-08-01T07:28:31.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "17082fe0-7607-47c2-b6e7-e28121ad1ad0", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-01T15:09:13.000Z" - }, - "end": { - "$date": "2022-08-01T15:28:49.000Z" - }, - "events": [ - { - "uuid": "3802740b-a23a-4826-9fa3-8a1c7cc88e86", - "start": { - "$date": "2022-08-01T15:09:13.000Z" - }, - "end": { - "$date": "2022-08-01T15:28:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ce2c41ef-1075-4d88-a0de-f707673ee9fd", - "uuid": "9b5082b3-da91-4861-b752-976836803920", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-01T15:34:00.000Z" - }, - "end": { - "$date": "2022-08-01T18:10:17.000Z" - }, - "events": [ - { - "uuid": "3e1609c0-0f7d-4a9f-b5a4-31398198dd3e", - "start": { - "$date": "2022-08-01T15:34:00.000Z" - }, - "end": { - "$date": "2022-08-01T16:44:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fccbc53b-ab70-4bb8-99f2-580677fe318d", - "start": { - "$date": "2022-08-01T16:44:00.000Z" - }, - "end": { - "$date": "2022-08-01T16:49:00.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "c2560d4d-d8f0-4635-92ff-dbd4b57f61c2", - "start": { - "$date": "2022-08-01T16:49:00.000Z" - }, - "end": { - "$date": "2022-08-01T16:59:00.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "320d8b53-ed5c-4a29-9595-d3bda8480eb4", - "start": { - "$date": "2022-08-01T16:59:00.000Z" - }, - "end": { - "$date": "2022-08-01T18:10:17.000Z" - }, - "state": "IDLE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "60553832-4317-44d6-82f2-fc4aa63f23b8", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T16:04:14.000Z" - }, - "end": { - "$date": "2022-08-01T16:32:27.000Z" - }, - "events": [ - { - "uuid": "8480b8fa-43b5-4801-9358-d3834e8d7024", - "start": { - "$date": "2022-08-01T16:04:14.000Z" - }, - "end": { - "$date": "2022-08-01T16:32:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "3eb972a4-0957-4a23-9318-66d5ae1fe8ef", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T17:08:48.000Z" - }, - "end": { - "$date": "2022-08-01T17:44:56.000Z" - }, - "events": [ - { - "uuid": "fc456866-dc1c-444a-89c8-3a4e6eb6e332", - "start": { - "$date": "2022-08-01T17:08:48.000Z" - }, - "end": { - "$date": "2022-08-01T17:44:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "26bfeb55-5470-44e1-a48a-5e35a5cb80c0", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T17:22:04.000Z" - }, - "end": { - "$date": "2022-08-01T18:10:40.000Z" - }, - "events": [ - { - "uuid": "025ae31e-01a4-41f2-9aa6-2865b1de5443", - "start": { - "$date": "2022-08-01T17:22:04.000Z" - }, - "end": { - "$date": "2022-08-01T18:10:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "1fea6b69-b2a0-456f-8b22-ef9304b6d922", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T17:45:21.000Z" - }, - "end": { - "$date": "2022-08-01T19:19:18.000Z" - }, - "events": [ - { - "uuid": "92e53fd5-2223-4f60-8e1f-94a32a9cd754", - "start": { - "$date": "2022-08-01T17:45:21.000Z" - }, - "end": { - "$date": "2022-08-01T19:19:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "daa96ff4-5277-4fd9-b36d-b6267446e5ab", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-01T18:11:27.000Z" - }, - "end": { - "$date": "2022-08-01T18:49:33.000Z" - }, - "events": [ - { - "uuid": "15791ee6-d260-4f55-914c-7f5a57bf3898", - "start": { - "$date": "2022-08-01T18:11:27.000Z" - }, - "end": { - "$date": "2022-08-01T18:49:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "f5964e23-29a4-43e4-8e9e-36918a93bb0f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T18:19:35.000Z" - }, - "end": { - "$date": "2022-08-01T18:34:55.000Z" - }, - "events": [ - { - "uuid": "cbf93ca8-6e16-4b49-8360-48767cd3ec56", - "start": { - "$date": "2022-08-01T18:19:35.000Z" - }, - "end": { - "$date": "2022-08-01T18:34:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "d1503209-d924-4a29-904e-4ff4249b0b0c", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-01T18:55:28.000Z" - }, - "end": { - "$date": "2022-08-01T19:25:49.000Z" - }, - "events": [ - { - "uuid": "d4c598ba-be98-40fa-ade9-109c4f67dc24", - "start": { - "$date": "2022-08-01T18:55:28.000Z" - }, - "end": { - "$date": "2022-08-01T19:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "03101ffe-d8b8-4316-b5fc-5320e5fb20da", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T19:19:44.000Z" - }, - "end": { - "$date": "2022-08-01T19:25:54.000Z" - }, - "events": [ - { - "uuid": "b3b00f1d-0456-4e74-a684-a3b1084457ec", - "start": { - "$date": "2022-08-01T19:19:44.000Z" - }, - "end": { - "$date": "2022-08-01T19:25:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "64ac248c-8d42-4a27-9a53-812db9c79089", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-01T19:22:37.000Z" - }, - "end": { - "$date": "2022-08-01T22:21:47.000Z" - }, - "events": [ - { - "uuid": "1a527a78-3380-4f16-abcc-87cf20233c5a", - "start": { - "$date": "2022-08-01T19:22:37.000Z" - }, - "end": { - "$date": "2022-08-01T19:49:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "5529d217-a62d-4651-be1e-1575f61a2910", - "start": { - "$date": "2022-08-01T19:49:37.000Z" - }, - "end": { - "$date": "2022-08-01T19:57:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "39b67321-6825-4da1-b98a-1ec28e97d1c8", - "start": { - "$date": "2022-08-01T19:57:37.000Z" - }, - "end": { - "$date": "2022-08-01T20:46:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "864fbbc1-c237-4833-b245-735079df0060", - "start": { - "$date": "2022-08-01T20:46:37.000Z" - }, - "end": { - "$date": "2022-08-01T20:56:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "bb7e5f3b-7794-4fee-8450-57c6c44bd34b", - "start": { - "$date": "2022-08-01T20:56:37.000Z" - }, - "end": { - "$date": "2022-08-01T22:21:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "dd8a8d0d-437d-43e7-a308-a9d2551bc3d4", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T19:25:59.000Z" - }, - "end": { - "$date": "2022-08-01T21:18:18.000Z" - }, - "events": [ - { - "uuid": "3ead94e9-0df6-4b33-bcce-ca663a73f015", - "start": { - "$date": "2022-08-01T19:25:59.000Z" - }, - "end": { - "$date": "2022-08-01T21:18:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "b929cbed-719f-412a-bebf-dafdc75a733f", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T21:18:24.000Z" - }, - "end": { - "$date": "2022-08-01T21:46:30.000Z" - }, - "events": [ - { - "uuid": "beaf7fa9-b8c1-4ed0-8b0e-ee786db5e522", - "start": { - "$date": "2022-08-01T21:18:24.000Z" - }, - "end": { - "$date": "2022-08-01T21:46:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "65eb429f-cff4-4762-91d6-62567ced382d", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T21:59:08.000Z" - }, - "end": { - "$date": "2022-08-01T22:26:25.000Z" - }, - "events": [ - { - "uuid": "3cd0f307-9e0d-4547-abb2-c42f85235950", - "start": { - "$date": "2022-08-01T21:59:08.000Z" - }, - "end": { - "$date": "2022-08-01T22:26:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "acfec586-5443-4588-a0dd-a258d9a46c1e", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T22:26:35.000Z" - }, - "end": { - "$date": "2022-08-01T22:33:00.000Z" - }, - "events": [ - { - "uuid": "4d9a33cc-2b19-4cea-9987-06a981140310", - "start": { - "$date": "2022-08-01T22:26:35.000Z" - }, - "end": { - "$date": "2022-08-01T22:33:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "7b7dec02-4c7d-4f80-82e5-9a40e9065fcc", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T22:33:06.000Z" - }, - "end": { - "$date": "2022-08-01T22:36:11.000Z" - }, - "events": [ - { - "uuid": "ed51c1b1-0908-4f63-a4a6-2ac2033bcfb9", - "start": { - "$date": "2022-08-01T22:33:06.000Z" - }, - "end": { - "$date": "2022-08-01T22:36:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "9f9d542d-42d1-47bb-b404-68fa50116d96", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T22:37:11.000Z" - }, - "end": { - "$date": "2022-08-01T22:57:07.000Z" - }, - "events": [ - { - "uuid": "ec9a02f8-3861-4ab6-bc82-2ec4944a0a66", - "start": { - "$date": "2022-08-01T22:37:11.000Z" - }, - "end": { - "$date": "2022-08-01T22:57:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "678ae4e7-170a-4f29-87aa-2825bcba97bc", - "uuid": "72bc3250-436d-459b-a329-651af8401c9b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-01T22:58:26.000Z" - }, - "end": { - "$date": "2022-08-01T22:59:47.000Z" - }, - "events": [ - { - "uuid": "9522bd92-3865-4d0d-8fd2-85d4b46f0b26", - "start": { - "$date": "2022-08-01T22:58:26.000Z" - }, - "end": { - "$date": "2022-08-01T22:59:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "fdd2fbda-ec74-4cbf-953d-9eef71fdc9f3", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T22:59:23.000Z" - }, - "end": { - "$date": "2022-08-01T23:09:08.000Z" - }, - "events": [ - { - "uuid": "64499f46-4477-4e22-8804-4dcea655cbaf", - "start": { - "$date": "2022-08-01T22:59:23.000Z" - }, - "end": { - "$date": "2022-08-01T23:09:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "e24c9775-e3d0-4158-94bf-b5bc085eeb16", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-01T23:00:21.000Z" - }, - "end": { - "$date": "2022-08-02T02:03:48.000Z" - }, - "events": [ - { - "uuid": "ec1b4730-c14b-4d79-81be-e93a5db6c2bf", - "start": { - "$date": "2022-08-01T23:00:21.000Z" - }, - "end": { - "$date": "2022-08-02T02:03:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "2d54fcf8-6196-4175-beb2-dbb652de492a", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-01T23:09:38.000Z" - }, - "end": { - "$date": "2022-08-02T00:16:24.000Z" - }, - "events": [ - { - "uuid": "8b627ba7-a4ee-415f-bc38-127423b1c536", - "start": { - "$date": "2022-08-01T23:09:38.000Z" - }, - "end": { - "$date": "2022-08-02T00:16:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "115beb9d-23be-46e0-b3bc-6aceeb83b5e0", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-08-01T23:26:51.000Z" - }, - "end": { - "$date": "2022-08-01T23:50:15.000Z" - }, - "events": [ - { - "uuid": "1c0e678c-509a-4847-8459-716bb9f2c19a", - "start": { - "$date": "2022-08-01T23:26:51.000Z" - }, - "end": { - "$date": "2022-08-01T23:50:15.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "d8fe473b-485c-46c0-bc10-2d002d6d0b6f", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-01T23:16:06.000Z" - }, - "end": { - "$date": "2022-08-02T03:26:42.000Z" - }, - "events": [ - { - "uuid": "f46b58d8-cf0d-4640-81bf-0447e9c42a36", - "start": { - "$date": "2022-08-01T23:16:06.000Z" - }, - "end": { - "$date": "2022-08-02T03:26:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "ba9a64b0-20a8-431f-bc96-3d1b4c2798ab", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-02T00:16:40.000Z" - }, - "end": { - "$date": "2022-08-02T00:50:38.000Z" - }, - "events": [ - { - "uuid": "995e9521-c2c6-4394-b400-fb639c5af167", - "start": { - "$date": "2022-08-02T00:16:40.000Z" - }, - "end": { - "$date": "2022-08-02T00:50:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "d3571ae4-cfdb-43ef-8b36-a35d3225ea00", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-08-02T00:22:08.000Z" - }, - "end": { - "$date": "2022-08-02T00:26:12.000Z" - }, - "events": [ - { - "uuid": "f490818a-e712-42ff-a631-217e85fd031c", - "start": { - "$date": "2022-08-02T00:22:08.000Z" - }, - "end": { - "$date": "2022-08-02T00:26:12.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "16838c30-4043-45a9-bb60-a9f0ef36913a", - "uuid": "cebe93a0-1489-4fa0-a99e-fc6f19d9d33c", - "user": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "start": { - "$date": "2022-08-02T00:26:55.000Z" - }, - "end": { - "$date": "2022-08-02T02:50:05.000Z" - }, - "events": [ - { - "uuid": "b48a5013-8478-4c38-b063-74906349465e", - "start": { - "$date": "2022-08-02T00:26:55.000Z" - }, - "end": { - "$date": "2022-08-02T02:50:05.000Z" - }, - "state": "DO_NOT_DISTURB" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "c5c86969-8c59-4d3d-a843-dd84ff35a932", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-02T00:50:48.000Z" - }, - "end": { - "$date": "2022-08-02T01:29:16.000Z" - }, - "events": [ - { - "uuid": "c97391cc-f0b8-4332-b8e4-9b3f06d7d90a", - "start": { - "$date": "2022-08-02T00:50:48.000Z" - }, - "end": { - "$date": "2022-08-02T01:29:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "d59a2ad0-dc52-4d8c-a851-456c64a8cb68", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-02T01:29:31.000Z" - }, - "end": { - "$date": "2022-08-02T01:45:32.000Z" - }, - "events": [ - { - "uuid": "a0460b13-a9d7-4e7e-8e69-31c705dbe745", - "start": { - "$date": "2022-08-02T01:29:31.000Z" - }, - "end": { - "$date": "2022-08-02T01:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "9e4d2330-1bb5-4099-9f23-a8cf105e2953", - "uuid": "e1b59872-3588-480a-9914-4d5fae6f1ad9", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-02T01:45:43.000Z" - }, - "end": { - "$date": "2022-08-02T01:46:43.000Z" - }, - "events": [ - { - "uuid": "00424158-5463-4d43-a623-f4a99618eaef", - "start": { - "$date": "2022-08-02T01:45:43.000Z" - }, - "end": { - "$date": "2022-08-02T01:46:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "b607503b-75a1-48e0-afa0-879ac5ee17ad", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-08-02T02:54:18.000Z" - }, - "end": { - "$date": "2022-08-02T06:29:09.000Z" - }, - "events": [ - { - "uuid": "a349e362-8f5f-4bc9-81c5-4272566fc875", - "start": { - "$date": "2022-08-02T02:54:18.000Z" - }, - "end": { - "$date": "2022-08-02T06:29:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "40882bb5-2497-4fb6-826d-992fd935492f", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-02T03:44:51.000Z" - }, - "end": { - "$date": "2022-08-02T04:04:13.000Z" - }, - "events": [ - { - "uuid": "5968a05e-98a0-4096-bd31-d3975e67047c", - "start": { - "$date": "2022-08-02T03:44:51.000Z" - }, - "end": { - "$date": "2022-08-02T04:04:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6c6ae6b0-b2d2-4425-ad65-1d43c9f8a1cf", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T04:04:58.000Z" - }, - "end": { - "$date": "2022-08-02T04:31:13.000Z" - }, - "events": [ - { - "uuid": "955282f2-9d18-4a4e-a27b-63abca0d0592", - "start": { - "$date": "2022-08-02T04:04:58.000Z" - }, - "end": { - "$date": "2022-08-02T04:31:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5833b4a4-3e51-4448-83ac-7e63fbddf449", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T04:05:07.000Z" - }, - "end": { - "$date": "2022-08-02T04:31:18.000Z" - }, - "events": [ - { - "uuid": "58bea50a-ca1f-4802-9c0b-ded40189cd8e", - "start": { - "$date": "2022-08-02T04:05:07.000Z" - }, - "end": { - "$date": "2022-08-02T04:31:18.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "75f188d4-9988-49be-9c80-6d6d05810bc7", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-02T04:04:21.000Z" - }, - "end": { - "$date": "2022-08-02T04:33:55.000Z" - }, - "events": [ - { - "uuid": "bfd807b9-544a-42b6-b2af-e201bdf4b3b8", - "start": { - "$date": "2022-08-02T04:04:21.000Z" - }, - "end": { - "$date": "2022-08-02T04:33:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4894af97-f273-4e38-9d2c-de19ce10b4c4", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T04:33:59.000Z" - }, - "end": { - "$date": "2022-08-02T04:51:49.000Z" - }, - "events": [ - { - "uuid": "aa254e79-37a5-463b-bab4-6d70bf613cc3", - "start": { - "$date": "2022-08-02T04:33:59.000Z" - }, - "end": { - "$date": "2022-08-02T04:51:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6490270a-d9d9-49e2-9e76-0fe7a4d4e33d", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T04:34:08.000Z" - }, - "end": { - "$date": "2022-08-02T04:51:56.000Z" - }, - "events": [ - { - "uuid": "ad848322-c5b0-4326-ba50-77aea24faf64", - "start": { - "$date": "2022-08-02T04:34:08.000Z" - }, - "end": { - "$date": "2022-08-02T04:51:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "9ecc809f-3f00-4692-9c61-b62dacc92357", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-02T04:39:44.000Z" - }, - "end": { - "$date": "2022-08-02T04:45:32.000Z" - }, - "events": [ - { - "uuid": "a4873ef5-b6c9-424c-8a9c-b494fbc90ba7", - "start": { - "$date": "2022-08-02T04:39:44.000Z" - }, - "end": { - "$date": "2022-08-02T04:45:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "551232ec-654c-4ecb-a3b2-8ecedbe34daa", - "uuid": "63656676-9a54-4ae1-8238-bc5f28853acd", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-02T04:47:59.000Z" - }, - "end": { - "$date": "2022-08-02T05:57:32.000Z" - }, - "events": [ - { - "uuid": "bdba25d7-0f6b-43c3-84e2-67729e11ea46", - "start": { - "$date": "2022-08-02T04:47:59.000Z" - }, - "end": { - "$date": "2022-08-02T05:57:32.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b4387e20-b04e-44bd-b86e-d3bf793d2b0e", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T04:57:28.000Z" - }, - "end": { - "$date": "2022-08-02T05:21:06.000Z" - }, - "events": [ - { - "uuid": "b375a4f9-f05b-453e-9e1d-132fe7a6752b", - "start": { - "$date": "2022-08-02T04:57:28.000Z" - }, - "end": { - "$date": "2022-08-02T05:21:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1890330d-d79a-463d-868c-3a98ff1da1b5", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T04:57:19.000Z" - }, - "end": { - "$date": "2022-08-02T05:20:59.000Z" - }, - "events": [ - { - "uuid": "acb520f9-6f6a-40dd-a9ee-b36ca766c0fa", - "start": { - "$date": "2022-08-02T04:57:19.000Z" - }, - "end": { - "$date": "2022-08-02T05:20:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "5ab9b834-b072-4fb0-8362-5be8f488c979", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T05:29:55.000Z" - }, - "end": { - "$date": "2022-08-02T05:50:25.000Z" - }, - "events": [ - { - "uuid": "e4769e34-04a5-4da1-8ee5-fd2dfc580c7c", - "start": { - "$date": "2022-08-02T05:29:55.000Z" - }, - "end": { - "$date": "2022-08-02T05:50:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "77a6dc2f-1d7f-45bd-88da-07502980be89", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T05:29:54.000Z" - }, - "end": { - "$date": "2022-08-02T05:50:36.000Z" - }, - "events": [ - { - "uuid": "0a068012-4c06-4c46-9c75-b41019a2da88", - "start": { - "$date": "2022-08-02T05:29:54.000Z" - }, - "end": { - "$date": "2022-08-02T05:50:36.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "48f94698-00a1-4570-b1cf-618b804ea949", - "user": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "start": { - "$date": "2022-08-02T05:44:56.000Z" - }, - "end": { - "$date": "2022-08-02T06:00:56.000Z" - }, - "events": [ - { - "uuid": "179eae7f-b1df-4031-833d-027664b1df86", - "start": { - "$date": "2022-08-02T05:44:56.000Z" - }, - "end": { - "$date": "2022-08-02T06:00:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b38f94e6-5f83-4150-8dcf-477a495be373", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T05:51:10.000Z" - }, - "end": { - "$date": "2022-08-02T05:52:48.000Z" - }, - "events": [ - { - "uuid": "ecd969fd-6434-4d6a-ae36-c195ec4fcd82", - "start": { - "$date": "2022-08-02T05:51:10.000Z" - }, - "end": { - "$date": "2022-08-02T05:52:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "dacbae7b-75c5-4d54-b191-e3998194207a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T05:55:55.000Z" - }, - "end": { - "$date": "2022-08-02T06:21:16.000Z" - }, - "events": [ - { - "uuid": "e940f64c-5744-4e9c-b1a6-46b6483f82d5", - "start": { - "$date": "2022-08-02T05:55:55.000Z" - }, - "end": { - "$date": "2022-08-02T06:21:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8e4a7b61-ca68-4a4e-b4b8-211c5514bad8", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T05:55:51.000Z" - }, - "end": { - "$date": "2022-08-02T06:21:14.000Z" - }, - "events": [ - { - "uuid": "aa8e19ae-1c58-49ea-968f-9b5ef5052066", - "start": { - "$date": "2022-08-02T05:55:51.000Z" - }, - "end": { - "$date": "2022-08-02T06:21:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "2bdc2036-641e-4f8e-869a-762705d8e409", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-02T06:26:07.000Z" - }, - "end": { - "$date": "2022-08-02T06:55:42.000Z" - }, - "events": [ - { - "uuid": "8d9bfc38-fec4-4fca-8faf-ebbcbe8b4520", - "start": { - "$date": "2022-08-02T06:26:07.000Z" - }, - "end": { - "$date": "2022-08-02T06:55:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "4e9d598f-f7f5-42ab-ae0e-7cb0d6cc740a", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T06:26:11.000Z" - }, - "end": { - "$date": "2022-08-02T06:55:46.000Z" - }, - "events": [ - { - "uuid": "b199c969-8911-45b7-b7f2-e36637333f33", - "start": { - "$date": "2022-08-02T06:26:11.000Z" - }, - "end": { - "$date": "2022-08-02T06:55:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "90f87963-8758-4db3-ac3d-8ebc177bd172", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-02T06:56:17.000Z" - }, - "end": { - "$date": "2022-08-02T08:38:10.000Z" - }, - "events": [ - { - "uuid": "773ddb23-d031-4894-8140-d0322a170c53", - "start": { - "$date": "2022-08-02T06:56:17.000Z" - }, - "end": { - "$date": "2022-08-02T08:38:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "5c07b150-efac-41a9-ba59-d30078ad5187", - "uuid": "a64f5276-c07e-41f1-9516-1bcb6d96df89", - "user": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "start": { - "$date": "2022-08-02T07:42:44.000Z" - }, - "end": { - "$date": "2022-08-02T08:51:54.000Z" - }, - "events": [ - { - "uuid": "fc03a452-8ecf-4a48-87bd-1020e9172834", - "start": { - "$date": "2022-08-02T07:42:44.000Z" - }, - "end": { - "$date": "2022-08-02T08:51:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "4d31b0a7-6385-4629-868a-2cd39c689f1f", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T14:52:15.000Z" - }, - "end": { - "$date": "2022-08-02T17:19:09.000Z" - }, - "events": [ - { - "uuid": "6c9dca4c-66f5-4f6f-8d3d-5ab4f2601c6b", - "start": { - "$date": "2022-08-02T14:52:15.000Z" - }, - "end": { - "$date": "2022-08-02T17:19:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "d77dccf3-0451-48b0-aaec-bc8f67964a63", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-02T16:37:43.000Z" - }, - "end": { - "$date": "2022-08-02T16:49:52.000Z" - }, - "events": [ - { - "uuid": "6957b7f0-7d50-48e6-a3b7-7bec71c762d9", - "start": { - "$date": "2022-08-02T16:37:43.000Z" - }, - "end": { - "$date": "2022-08-02T16:49:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "d1009c41-2984-4502-a0f9-c85e501bb260", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T17:22:54.000Z" - }, - "end": { - "$date": "2022-08-02T17:57:00.000Z" - }, - "events": [ - { - "uuid": "f3f8c8fe-6f52-4728-b765-861d163529cd", - "start": { - "$date": "2022-08-02T17:22:54.000Z" - }, - "end": { - "$date": "2022-08-02T17:57:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "688863bf-e333-448d-ac6f-533a40cf8881", - "uuid": "cf317071-c9d5-4ebe-a46d-322a05927fb1", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T19:12:39.000Z" - }, - "end": { - "$date": "2022-08-02T19:17:54.000Z" - }, - "events": [ - { - "uuid": "d37cdf0f-5f75-4073-9da6-541f20f6ec41", - "start": { - "$date": "2022-08-02T19:12:39.000Z" - }, - "end": { - "$date": "2022-08-02T19:17:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "a7b177d3-ab4c-46ce-90cf-eda9d6b67ddb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-02T22:51:08.000Z" - }, - "end": { - "$date": "2022-08-02T23:05:37.000Z" - }, - "events": [ - { - "uuid": "6b4e9dba-2ac4-480f-aa98-ea5792d3b095", - "start": { - "$date": "2022-08-02T22:51:08.000Z" - }, - "end": { - "$date": "2022-08-02T23:05:37.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "d9c40fa8-cb2c-4580-b87e-01a2dc9d6e38", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-02T23:05:48.000Z" - }, - "end": { - "$date": "2022-08-02T23:25:49.000Z" - }, - "events": [ - { - "uuid": "11ba8282-526f-43de-82a0-643b0fec49a3", - "start": { - "$date": "2022-08-02T23:05:48.000Z" - }, - "end": { - "$date": "2022-08-02T23:25:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "c1653bce-4de0-47bd-a341-2d7595afa098", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T23:26:17.000Z" - }, - "end": { - "$date": "2022-08-02T23:28:58.000Z" - }, - "events": [ - { - "uuid": "805d7486-46a6-4d03-bc6f-105b8b6e7c48", - "start": { - "$date": "2022-08-02T23:26:17.000Z" - }, - "end": { - "$date": "2022-08-02T23:28:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "11c995dd-919c-45ce-97f2-23e09d562aec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-02T23:26:49.000Z" - }, - "end": { - "$date": "2022-08-02T23:36:39.000Z" - }, - "events": [ - { - "uuid": "1b17c1b2-b14c-4d9c-9877-557a32d82b2a", - "start": { - "$date": "2022-08-02T23:26:49.000Z" - }, - "end": { - "$date": "2022-08-02T23:36:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "eb25aeca-755a-4dc2-b743-788576ab5d71", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-02T23:36:49.000Z" - }, - "end": { - "$date": "2022-08-03T00:18:54.000Z" - }, - "events": [ - { - "uuid": "a6e53b4f-8596-48a7-a05e-e4cbde73c78f", - "start": { - "$date": "2022-08-02T23:36:49.000Z" - }, - "end": { - "$date": "2022-08-03T00:18:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0e420f20-cb9f-4449-9ad2-bd9755329314", - "uuid": "779c9707-2acc-4a47-bc7d-ed96374cd664", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T23:36:51.000Z" - }, - "end": { - "$date": "2022-08-02T23:42:24.000Z" - }, - "events": [ - { - "uuid": "feb8988e-c397-470d-938f-9db099275c63", - "start": { - "$date": "2022-08-02T23:36:51.000Z" - }, - "end": { - "$date": "2022-08-02T23:42:24.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "59e8b28e-8858-4cdf-a684-f7a9aa95ad90", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T23:42:51.000Z" - }, - "end": { - "$date": "2022-08-02T23:43:59.000Z" - }, - "events": [ - { - "uuid": "98393dc5-6af3-4b42-85f6-bc7ce200dbe7", - "start": { - "$date": "2022-08-02T23:42:51.000Z" - }, - "end": { - "$date": "2022-08-02T23:43:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "b785182e-0e93-452a-a54f-95a39a413ca7", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T23:54:52.000Z" - }, - "end": { - "$date": "2022-08-02T23:56:00.000Z" - }, - "events": [ - { - "uuid": "1e950734-458a-45a2-ab1a-4beeca9c2fc8", - "start": { - "$date": "2022-08-02T23:54:52.000Z" - }, - "end": { - "$date": "2022-08-02T23:56:00.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "516b32ff-e1ea-48a3-9cc2-8adccf2785cc", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-02T23:56:28.000Z" - }, - "end": { - "$date": "2022-08-03T00:00:26.000Z" - }, - "events": [ - { - "uuid": "ddaae6a5-4da2-466b-8543-123dd78becba", - "start": { - "$date": "2022-08-02T23:56:28.000Z" - }, - "end": { - "$date": "2022-08-03T00:00:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "96879f55-476b-498f-a86f-141d9e78d951", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T00:00:29.000Z" - }, - "end": { - "$date": "2022-08-03T00:03:42.000Z" - }, - "events": [ - { - "uuid": "d9d0dc65-dffe-4262-bb99-c647a927a338", - "start": { - "$date": "2022-08-03T00:00:29.000Z" - }, - "end": { - "$date": "2022-08-03T00:03:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "26ae6d43-b7b0-4ece-8020-b710ae2fdd9c", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T00:02:43.000Z" - }, - "end": { - "$date": "2022-08-03T00:51:11.000Z" - }, - "events": [ - { - "uuid": "7b8e3e45-cb79-41ea-8574-f987f74cb680", - "start": { - "$date": "2022-08-03T00:02:43.000Z" - }, - "end": { - "$date": "2022-08-03T00:51:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "5a182566-4e66-4f43-90ca-b50843a3055e", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T00:05:39.000Z" - }, - "end": { - "$date": "2022-08-03T00:08:57.000Z" - }, - "events": [ - { - "uuid": "1bd20b4e-10a7-4aa6-ba08-e8e8884f0c00", - "start": { - "$date": "2022-08-03T00:05:39.000Z" - }, - "end": { - "$date": "2022-08-03T00:08:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "b37ad9cf-0c04-4ae0-bcd5-582cbab09e26", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T00:11:30.000Z" - }, - "end": { - "$date": "2022-08-03T00:16:58.000Z" - }, - "events": [ - { - "uuid": "577350aa-24f6-40e9-a8cb-a8b557c03c23", - "start": { - "$date": "2022-08-03T00:11:30.000Z" - }, - "end": { - "$date": "2022-08-03T00:16:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "81c65f27-eed5-4bb6-83a3-4fa91fccade2", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T00:17:15.000Z" - }, - "end": { - "$date": "2022-08-03T00:56:10.000Z" - }, - "events": [ - { - "uuid": "f85e81e8-f681-4c75-af97-0b93017cb55f", - "start": { - "$date": "2022-08-03T00:17:15.000Z" - }, - "end": { - "$date": "2022-08-03T00:56:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "09ec6e7e-33ad-4d38-b304-9d1818dacd9c", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-03T00:21:17.000Z" - }, - "end": { - "$date": "2022-08-03T00:52:03.000Z" - }, - "events": [ - { - "uuid": "62a1f3d0-952d-48ab-ae0c-9dfe407dc394", - "start": { - "$date": "2022-08-03T00:21:17.000Z" - }, - "end": { - "$date": "2022-08-03T00:45:17.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "b88e20cf-24ff-4287-a2e2-dc976bc75884", - "start": { - "$date": "2022-08-03T00:45:17.000Z" - }, - "end": { - "$date": "2022-08-03T00:46:17.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "a13691b2-795f-477f-a4ea-c394c5526247", - "start": { - "$date": "2022-08-03T00:46:17.000Z" - }, - "end": { - "$date": "2022-08-03T00:52:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "61b99f7e-fadf-417e-a849-13c13cab94f9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T00:54:22.000Z" - }, - "end": { - "$date": "2022-08-03T00:55:26.000Z" - }, - "events": [ - { - "uuid": "8cbbfc52-7ac6-4598-bbee-4f3e4f681c03", - "start": { - "$date": "2022-08-03T00:54:22.000Z" - }, - "end": { - "$date": "2022-08-03T00:55:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "21992a23-0713-4708-a623-aae931eacdb9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-03T00:56:49.000Z" - }, - "end": { - "$date": "2022-08-03T02:13:16.000Z" - }, - "events": [ - { - "uuid": "68f201ce-8342-4a08-962a-da2da56ff4d5", - "start": { - "$date": "2022-08-03T00:56:49.000Z" - }, - "end": { - "$date": "2022-08-03T02:13:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "9f7ce3dd-8de5-403a-8f99-ed6cf289aec3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T01:14:04.000Z" - }, - "end": { - "$date": "2022-08-03T01:24:45.000Z" - }, - "events": [ - { - "uuid": "faf1ab26-1e71-47a1-b03f-4759047e94b7", - "start": { - "$date": "2022-08-03T01:14:04.000Z" - }, - "end": { - "$date": "2022-08-03T01:24:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "0c79909c-d63e-46e9-ad48-f6eaf1af817f", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T01:25:41.000Z" - }, - "end": { - "$date": "2022-08-03T01:29:35.000Z" - }, - "events": [ - { - "uuid": "a7b67ab6-ade6-4f66-a06f-e325888d5d90", - "start": { - "$date": "2022-08-03T01:25:41.000Z" - }, - "end": { - "$date": "2022-08-03T01:29:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "2035a666-f1ec-4254-b079-a10089441f6f", - "uuid": "a58b181f-b902-48cb-a92b-37d5d0354c77", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T01:59:50.000Z" - }, - "end": { - "$date": "2022-08-03T04:07:05.000Z" - }, - "events": [ - { - "uuid": "57796f68-c1f4-448e-916b-ec535773d1dd", - "start": { - "$date": "2022-08-03T01:59:50.000Z" - }, - "end": { - "$date": "2022-08-03T04:07:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ff9e5a8e-cdff-4a8d-bb94-06aaed5393e6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T02:21:03.000Z" - }, - "end": { - "$date": "2022-08-03T02:57:02.000Z" - }, - "events": [ - { - "uuid": "c8a138c2-b69a-4c50-b525-52be476ab0f4", - "start": { - "$date": "2022-08-03T02:21:03.000Z" - }, - "end": { - "$date": "2022-08-03T02:57:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "99a983d6-6d71-4920-9aa6-79815766c1f3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-03T02:22:56.000Z" - }, - "end": { - "$date": "2022-08-03T02:25:06.000Z" - }, - "events": [ - { - "uuid": "9dd3664d-80f0-4e69-a1c9-c972687234fa", - "start": { - "$date": "2022-08-03T02:22:56.000Z" - }, - "end": { - "$date": "2022-08-03T02:25:06.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "aad37e12-be23-4671-bdbb-188f410a2df2", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-03T02:25:16.000Z" - }, - "end": { - "$date": "2022-08-03T02:33:47.000Z" - }, - "events": [ - { - "uuid": "ceaa9476-8826-4487-b4d0-ae1c5e946859", - "start": { - "$date": "2022-08-03T02:25:16.000Z" - }, - "end": { - "$date": "2022-08-03T02:33:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "43aaafe9-27b1-4fd8-ab86-8c8f12d30f32", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T02:37:32.000Z" - }, - "end": { - "$date": "2022-08-03T02:59:20.000Z" - }, - "events": [ - { - "uuid": "59467f56-e706-447b-9730-7bd489447d8f", - "start": { - "$date": "2022-08-03T02:37:32.000Z" - }, - "end": { - "$date": "2022-08-03T02:59:20.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "7eb9d50f-a2a1-4416-91c2-bbb2304a1c20", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-08-03T02:51:28.000Z" - }, - "end": { - "$date": "2022-08-03T05:39:58.000Z" - }, - "events": [ - { - "uuid": "b3cda219-a8ac-4b07-94fe-0a6de7a4cc53", - "start": { - "$date": "2022-08-03T02:51:28.000Z" - }, - "end": { - "$date": "2022-08-03T05:39:58.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "a1a8ccee-1a34-4961-a727-938e55033fde", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T02:58:13.000Z" - }, - "end": { - "$date": "2022-08-03T03:35:48.000Z" - }, - "events": [ - { - "uuid": "50e76211-d953-4fbc-acd3-286e37727ba9", - "start": { - "$date": "2022-08-03T02:58:13.000Z" - }, - "end": { - "$date": "2022-08-03T03:35:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "87431b5a-8d07-4ac6-9337-1ab70b539091", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-03T02:59:58.000Z" - }, - "end": { - "$date": "2022-08-03T03:18:38.000Z" - }, - "events": [ - { - "uuid": "bb1e1f1d-fe04-4fb8-8646-f77b809b3522", - "start": { - "$date": "2022-08-03T02:59:58.000Z" - }, - "end": { - "$date": "2022-08-03T03:18:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "45f024b0-4bf3-44a4-b6b1-e80c851cece7", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T02:59:47.000Z" - }, - "end": { - "$date": "2022-08-03T03:01:41.000Z" - }, - "events": [ - { - "uuid": "4ddc7af1-4b9b-4977-88c6-27b5250b5256", - "start": { - "$date": "2022-08-03T02:59:47.000Z" - }, - "end": { - "$date": "2022-08-03T03:01:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "448ca2ae-fc23-49a6-9c23-653b9af9ffdd", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-03T03:19:09.000Z" - }, - "end": { - "$date": "2022-08-03T03:26:08.000Z" - }, - "events": [ - { - "uuid": "3da0846f-c4b8-4285-a290-e0b10391718d", - "start": { - "$date": "2022-08-03T03:19:09.000Z" - }, - "end": { - "$date": "2022-08-03T03:26:08.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c4c038cc-ef1b-4e27-a45a-a9c1e5e1a294", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T03:39:55.000Z" - }, - "end": { - "$date": "2022-08-03T03:59:30.000Z" - }, - "events": [ - { - "uuid": "1fa3d78c-86a6-467a-8725-2cb46d969086", - "start": { - "$date": "2022-08-03T03:39:55.000Z" - }, - "end": { - "$date": "2022-08-03T03:59:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "e5ae531b-980b-45d8-a841-fe375d6ecce1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T03:41:17.000Z" - }, - "end": { - "$date": "2022-08-03T03:54:25.000Z" - }, - "events": [ - { - "uuid": "a7b83159-ca91-4d44-9045-1230e70df135", - "start": { - "$date": "2022-08-03T03:41:17.000Z" - }, - "end": { - "$date": "2022-08-03T03:54:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f6009ff7-7197-4fbc-9b7e-7dfd3da90dd9", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T04:02:46.000Z" - }, - "end": { - "$date": "2022-08-03T04:39:16.000Z" - }, - "events": [ - { - "uuid": "84ff4608-8f8b-4b3e-951d-6221d91a4d42", - "start": { - "$date": "2022-08-03T04:02:46.000Z" - }, - "end": { - "$date": "2022-08-03T04:39:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "0f3db62d-f8b0-4b52-accb-e1c84a8eac7d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-03T04:08:08.000Z" - }, - "end": { - "$date": "2022-08-03T04:33:59.000Z" - }, - "events": [ - { - "uuid": "4e9d5a5c-f8ed-4202-8328-135cde2a4c75", - "start": { - "$date": "2022-08-03T04:08:08.000Z" - }, - "end": { - "$date": "2022-08-03T04:33:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "61238e38-2ff3-4c83-be94-8b64829b50cb", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-03T01:53:39.000Z" - }, - "end": { - "$date": "2022-08-03T07:27:41.000Z" - }, - "events": [ - { - "uuid": "98e20f95-07c4-4ae8-85de-6b674cac5f37", - "start": { - "$date": "2022-08-03T01:53:39.000Z" - }, - "end": { - "$date": "2022-08-03T07:27:41.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "17dd093b-da5f-4aea-a4c2-26070a17289f", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T04:27:40.000Z" - }, - "end": { - "$date": "2022-08-03T05:12:25.000Z" - }, - "events": [ - { - "uuid": "f683d01e-d093-4069-b99e-95833c998518", - "start": { - "$date": "2022-08-03T04:27:40.000Z" - }, - "end": { - "$date": "2022-08-03T05:12:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "c7a32c2b-14eb-4f2e-9c84-35769213b770", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T04:43:03.000Z" - }, - "end": { - "$date": "2022-08-03T05:17:45.000Z" - }, - "events": [ - { - "uuid": "721d7e55-4631-442c-971a-0193abbaa974", - "start": { - "$date": "2022-08-03T04:43:03.000Z" - }, - "end": { - "$date": "2022-08-03T05:17:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "32e6844b-0788-4175-8728-7cf67d67d2fd", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T05:19:25.000Z" - }, - "end": { - "$date": "2022-08-03T05:54:01.000Z" - }, - "events": [ - { - "uuid": "8db8defd-1833-4e1f-a38c-3f8f25dcec7e", - "start": { - "$date": "2022-08-03T05:19:25.000Z" - }, - "end": { - "$date": "2022-08-03T05:54:01.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "71413ae9-b190-4b13-bab2-2c54be0b5e55", - "uuid": "2419a75b-2e65-4a5a-b9c6-2ea3a22dfcc6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T05:33:12.000Z" - }, - "end": { - "$date": "2022-08-03T05:46:11.000Z" - }, - "events": [ - { - "uuid": "2612fd9b-93b1-4200-90cc-b2e7185e2b22", - "start": { - "$date": "2022-08-03T05:33:12.000Z" - }, - "end": { - "$date": "2022-08-03T05:46:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "90a2afcb-3935-4a0b-a382-17363ce722ad", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-03T07:29:11.000Z" - }, - "end": { - "$date": "2022-08-03T08:18:55.000Z" - }, - "events": [ - { - "uuid": "2e55a111-1617-4721-8873-1cf933bb553d", - "start": { - "$date": "2022-08-03T07:29:11.000Z" - }, - "end": { - "$date": "2022-08-03T08:18:55.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "0d08253c-6f5e-40db-b7cc-12ea0cdf47a9", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T14:05:40.000Z" - }, - "end": { - "$date": "2022-08-03T15:08:21.000Z" - }, - "events": [ - { - "uuid": "4022b0c2-c002-4463-baf2-68b8cf919b3c", - "start": { - "$date": "2022-08-03T14:05:40.000Z" - }, - "end": { - "$date": "2022-08-03T15:08:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e935301f-2115-4dd9-ad3a-07f74edede79", - "uuid": "da9d9826-0854-4c34-91eb-4a22550496f3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T15:45:05.000Z" - }, - "end": { - "$date": "2022-08-03T16:49:49.000Z" - }, - "events": [ - { - "uuid": "9f73dfcf-c674-4276-b709-f72208aab030", - "start": { - "$date": "2022-08-03T15:45:05.000Z" - }, - "end": { - "$date": "2022-08-03T16:49:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b1f5f3bd-2377-4ead-bb71-f74f0f3dc2cb", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T16:44:34.000Z" - }, - "end": { - "$date": "2022-08-03T17:24:26.000Z" - }, - "events": [ - { - "uuid": "707448dc-c6ce-476b-8878-11c6409ed0d2", - "start": { - "$date": "2022-08-03T16:44:34.000Z" - }, - "end": { - "$date": "2022-08-03T17:24:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9029ecf5-c5f1-4e21-817e-52b4457144ef", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T17:36:09.000Z" - }, - "end": { - "$date": "2022-08-03T17:36:35.000Z" - }, - "events": [ - { - "uuid": "1b02b1de-31fb-4a95-b5c3-896eb5c46236", - "start": { - "$date": "2022-08-03T17:36:09.000Z" - }, - "end": { - "$date": "2022-08-03T17:36:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "b7130e0a-2fa8-4508-876e-bf0a40d861ae", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T17:37:19.000Z" - }, - "end": { - "$date": "2022-08-03T17:49:43.000Z" - }, - "events": [ - { - "uuid": "c63bede0-10aa-4fc5-b119-84c36bda718c", - "start": { - "$date": "2022-08-03T17:37:19.000Z" - }, - "end": { - "$date": "2022-08-03T17:49:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "e238d20d-c9a2-408a-a9f9-5470e673fff6", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T17:52:46.000Z" - }, - "end": { - "$date": "2022-08-03T18:15:54.000Z" - }, - "events": [ - { - "uuid": "3296b4b4-51ec-4058-b4f1-b1b2c57c4d63", - "start": { - "$date": "2022-08-03T17:52:46.000Z" - }, - "end": { - "$date": "2022-08-03T18:15:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", - "uuid": "638f2d41-c317-43e8-906c-245d855805da", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T19:35:28.000Z" - }, - "end": { - "$date": "2022-08-03T19:35:33.000Z" - }, - "events": [ - { - "uuid": "5235b702-41da-44ff-a522-1c6465393a11", - "start": { - "$date": "2022-08-03T19:35:28.000Z" - }, - "end": { - "$date": "2022-08-03T19:35:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7119a0d8-3339-4e6b-93d7-1e3b5dc53c17", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T19:00:59.000Z" - }, - "end": { - "$date": "2022-08-03T19:28:38.000Z" - }, - "events": [ - { - "uuid": "334328cb-9904-47b6-a16d-73a81cbaa164", - "start": { - "$date": "2022-08-03T19:00:59.000Z" - }, - "end": { - "$date": "2022-08-03T19:28:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "cfe9cbdd-9c09-4ec5-94fe-304952af21f1", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-03T19:37:04.000Z" - }, - "end": { - "$date": "2022-08-03T20:14:54.000Z" - }, - "events": [ - { - "uuid": "68a49236-2de9-4ac2-ad35-89ba0903b65b", - "start": { - "$date": "2022-08-03T19:37:04.000Z" - }, - "end": { - "$date": "2022-08-03T20:14:54.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", - "uuid": "44fbdec5-967f-46cc-9e81-e7c1c2884fbd", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T20:03:33.000Z" - }, - "end": { - "$date": "2022-08-03T20:03:38.000Z" - }, - "events": [ - { - "uuid": "9b5df316-7955-4d4b-8a2d-5210209842fc", - "start": { - "$date": "2022-08-03T20:03:33.000Z" - }, - "end": { - "$date": "2022-08-03T20:03:38.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "007c017b-5c91-4286-aee2-52272d946cc6", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-03T20:03:53.000Z" - }, - "end": { - "$date": "2022-08-03T22:34:46.000Z" - }, - "events": [ - { - "uuid": "811dc009-2842-477c-9ead-d344d941f899", - "start": { - "$date": "2022-08-03T20:03:53.000Z" - }, - "end": { - "$date": "2022-08-03T22:34:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "fd5b308d-7bf9-404e-af97-9248e597e690", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T21:10:54.000Z" - }, - "end": { - "$date": "2022-08-03T21:13:09.000Z" - }, - "events": [ - { - "uuid": "554776ab-ca0c-438f-9e2d-d0cd8b590a44", - "start": { - "$date": "2022-08-03T21:10:54.000Z" - }, - "end": { - "$date": "2022-08-03T21:13:09.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "66896e06-e8b3-44c3-afbf-d8fe0730ea7d", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-03T21:16:34.000Z" - }, - "end": { - "$date": "2022-08-03T22:34:51.000Z" - }, - "events": [ - { - "uuid": "f1d6145d-5aa8-4742-bbf2-823093dff766", - "start": { - "$date": "2022-08-03T21:16:34.000Z" - }, - "end": { - "$date": "2022-08-03T22:34:51.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "711fdcbb-3a4c-4c73-bf57-890dbbf30609", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T00:12:53.000Z" - }, - "end": { - "$date": "2022-08-04T00:43:21.000Z" - }, - "events": [ - { - "uuid": "f4235764-7190-43f2-a2b8-e40ca623cc1f", - "start": { - "$date": "2022-08-04T00:12:53.000Z" - }, - "end": { - "$date": "2022-08-04T00:43:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "a70fd03b-2c44-46d1-b9a0-78b1383bb5e8", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-04T00:10:58.000Z" - }, - "end": { - "$date": "2022-08-04T03:38:13.000Z" - }, - "events": [ - { - "uuid": "1bcc92f5-2993-4456-abd9-d629ecd15533", - "start": { - "$date": "2022-08-04T00:10:58.000Z" - }, - "end": { - "$date": "2022-08-04T03:38:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "b568886b-4bf7-43ac-b63e-03f4ac293a48", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T00:43:31.000Z" - }, - "end": { - "$date": "2022-08-04T01:21:53.000Z" - }, - "events": [ - { - "uuid": "fa9b5439-47ce-465e-b19e-d1f1d7719fb4", - "start": { - "$date": "2022-08-04T00:43:31.000Z" - }, - "end": { - "$date": "2022-08-04T01:21:53.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9df5a4d7-6388-45fc-b64d-5a885ee436d3", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-04T01:20:00.000Z" - }, - "end": { - "$date": "2022-08-04T01:41:49.000Z" - }, - "events": [ - { - "uuid": "51eae540-e4dc-4de4-a09f-947ac626e074", - "start": { - "$date": "2022-08-04T01:20:00.000Z" - }, - "end": { - "$date": "2022-08-04T01:41:49.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "7880cc4b-a338-4f8a-82d6-be199329b764", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T01:30:29.000Z" - }, - "end": { - "$date": "2022-08-04T01:41:29.000Z" - }, - "events": [ - { - "uuid": "cd80c3b6-11e6-4611-8e40-fb7b8047eef6", - "start": { - "$date": "2022-08-04T01:30:29.000Z" - }, - "end": { - "$date": "2022-08-04T01:41:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "648b50f1-6019-455d-9282-193c783cd6e3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T01:41:50.000Z" - }, - "end": { - "$date": "2022-08-04T02:08:05.000Z" - }, - "events": [ - { - "uuid": "399dbb10-7c5d-4911-b407-cb0a301dd804", - "start": { - "$date": "2022-08-04T01:41:50.000Z" - }, - "end": { - "$date": "2022-08-04T02:08:05.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "aef8beea-ee71-4db1-80f5-d6f184fa7579", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-04T01:44:11.000Z" - }, - "end": { - "$date": "2022-08-04T02:18:44.000Z" - }, - "events": [ - { - "uuid": "f7e3a3f5-a457-4de3-a6df-04b20c56d799", - "start": { - "$date": "2022-08-04T01:44:11.000Z" - }, - "end": { - "$date": "2022-08-04T02:18:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "ce0783c7-3cef-4cf8-8b6f-42194446c2c8", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-04T02:19:46.000Z" - }, - "end": { - "$date": "2022-08-04T02:47:52.000Z" - }, - "events": [ - { - "uuid": "f99582a0-12d1-4f36-a352-253774acc730", - "start": { - "$date": "2022-08-04T02:19:46.000Z" - }, - "end": { - "$date": "2022-08-04T02:47:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "f18e5510-4340-4825-b6b9-7b6814b2e0dc", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T02:38:33.000Z" - }, - "end": { - "$date": "2022-08-04T02:39:47.000Z" - }, - "events": [ - { - "uuid": "662220fe-6894-4593-8b3a-c93d897185a3", - "start": { - "$date": "2022-08-04T02:38:33.000Z" - }, - "end": { - "$date": "2022-08-04T02:39:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "7c159f23-c2c0-4e1f-93e0-ef4012781dcb", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T02:39:53.000Z" - }, - "end": { - "$date": "2022-08-04T02:50:52.000Z" - }, - "events": [ - { - "uuid": "92167eb8-5495-4645-ae09-8a7bba45bf5e", - "start": { - "$date": "2022-08-04T02:39:53.000Z" - }, - "end": { - "$date": "2022-08-04T02:50:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "9d71f1cf-30c0-4299-b4de-8b9fa0e61767", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-04T02:49:45.000Z" - }, - "end": { - "$date": "2022-08-04T03:27:33.000Z" - }, - "events": [ - { - "uuid": "f8a28e40-9e33-42f8-8a25-5a326d8f34d7", - "start": { - "$date": "2022-08-04T02:49:45.000Z" - }, - "end": { - "$date": "2022-08-04T03:27:33.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "fa95f986-699f-4d77-9f0e-a577a89de16d", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T05:22:01.000Z" - }, - "end": { - "$date": "2022-08-04T05:28:56.000Z" - }, - "events": [ - { - "uuid": "10eed83b-bd46-4233-b322-5671d13c7907", - "start": { - "$date": "2022-08-04T05:22:01.000Z" - }, - "end": { - "$date": "2022-08-04T05:28:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "e40ab159-1d75-42c1-b0bc-2b6823c822a5", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-08-04T03:17:47.000Z" - }, - "end": { - "$date": "2022-08-04T06:09:42.000Z" - }, - "events": [ - { - "uuid": "2abed309-3618-4b73-bb04-46f64a23cdc7", - "start": { - "$date": "2022-08-04T03:17:47.000Z" - }, - "end": { - "$date": "2022-08-04T06:09:42.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "daa6d16f-03d4-4607-a3be-0f51835af3e5", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-04T03:30:10.000Z" - }, - "end": { - "$date": "2022-08-04T03:50:35.000Z" - }, - "events": [ - { - "uuid": "c2c09208-375e-4920-b715-ebf36fe3c757", - "start": { - "$date": "2022-08-04T03:30:10.000Z" - }, - "end": { - "$date": "2022-08-04T03:50:35.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "4f47461d-4aaf-46a6-a8a2-35f32412e918", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-04T03:40:59.000Z" - }, - "end": { - "$date": "2022-08-04T05:48:13.000Z" - }, - "events": [ - { - "uuid": "995c1ba4-45fa-46a2-b86c-f1790a300dbe", - "start": { - "$date": "2022-08-04T03:40:59.000Z" - }, - "end": { - "$date": "2022-08-04T05:48:13.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "7f892b72-024b-4a6e-b68f-3643504e4206", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-08-04T03:41:51.000Z" - }, - "end": { - "$date": "2022-08-04T04:35:02.000Z" - }, - "events": [ - { - "uuid": "48922222-f212-4470-bd01-4ae2608862cb", - "start": { - "$date": "2022-08-04T03:41:51.000Z" - }, - "end": { - "$date": "2022-08-04T04:35:02.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "506725d7-fe0e-4578-aa72-48690cc8bfd4", - "user": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "start": { - "$date": "2022-08-04T04:08:38.000Z" - }, - "end": { - "$date": "2022-08-04T05:00:43.000Z" - }, - "events": [ - { - "uuid": "0b6e20b7-78b0-4261-8461-79f7ee53d8a4", - "start": { - "$date": "2022-08-04T04:08:38.000Z" - }, - "end": { - "$date": "2022-08-04T05:00:43.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "c9b167a4-6c09-4c27-80ab-6d775742c5ea", - "uuid": "67f022d6-8d80-409b-88e7-c90ff09dbd34", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-04T05:48:39.000Z" - }, - "end": { - "$date": "2022-08-04T07:32:45.000Z" - }, - "events": [ - { - "uuid": "b8323909-90cd-4491-bdf1-8761643bba13", - "start": { - "$date": "2022-08-04T05:48:39.000Z" - }, - "end": { - "$date": "2022-08-04T07:32:45.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "5cbc25b3-2474-4ee8-95de-45118f94bbc3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T06:05:48.000Z" - }, - "end": { - "$date": "2022-08-04T06:16:34.000Z" - }, - "events": [ - { - "uuid": "15b0a7d3-a871-46af-ba04-7c94a546ae9c", - "start": { - "$date": "2022-08-04T06:05:48.000Z" - }, - "end": { - "$date": "2022-08-04T06:16:34.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "84644afd-817e-4ba7-ab47-594274790be3", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-04T13:16:50.000Z" - }, - "end": { - "$date": "2022-08-04T15:39:07.000Z" - }, - "events": [ - { - "uuid": "aa1b9221-6b1b-41ea-9497-6ad457b12ed4", - "start": { - "$date": "2022-08-04T13:16:50.000Z" - }, - "end": { - "$date": "2022-08-04T15:39:07.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "bb77ef78-1a92-4aea-982e-df950c21680b", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-04T14:05:00.000Z" - }, - "end": { - "$date": "2022-08-04T14:38:52.000Z" - }, - "events": [ - { - "uuid": "a346edfd-b230-4f64-914f-adac2837da5d", - "start": { - "$date": "2022-08-04T14:05:00.000Z" - }, - "end": { - "$date": "2022-08-04T14:38:52.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", - "uuid": "2389b0f8-9ca5-4b0e-ae47-2402b1962937", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-04T16:56:51.000Z" - }, - "end": { - "$date": "2022-08-04T17:38:17.000Z" - }, - "events": [ - { - "uuid": "98c12d24-8fcc-42b9-8acf-d0d8d68b6bf1", - "start": { - "$date": "2022-08-04T16:56:51.000Z" - }, - "end": { - "$date": "2022-08-04T17:38:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "c4fdc1e7-45bf-4d41-a71c-4c62122b2e71", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T22:21:25.000Z" - }, - "end": { - "$date": "2022-08-04T23:25:46.000Z" - }, - "events": [ - { - "uuid": "a53de936-ca54-4ed8-9af7-94a84c65bd60", - "start": { - "$date": "2022-08-04T22:21:25.000Z" - }, - "end": { - "$date": "2022-08-04T23:25:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "72150d65-1399-4465-b774-1beca2220244", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-04T22:19:37.000Z" - }, - "end": { - "$date": "2022-08-05T04:15:57.000Z" - }, - "events": [ - { - "uuid": "e28e1d8c-7456-4268-9b34-4ef0df147621", - "start": { - "$date": "2022-08-04T22:19:37.000Z" - }, - "end": { - "$date": "2022-08-04T22:31:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "846d54e2-5c7d-4d7f-95ef-bfb991d33fdb", - "start": { - "$date": "2022-08-04T22:31:37.000Z" - }, - "end": { - "$date": "2022-08-04T22:36:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "e94a6013-bd99-4249-a719-3f8cbc2e10a7", - "start": { - "$date": "2022-08-04T22:36:37.000Z" - }, - "end": { - "$date": "2022-08-04T22:46:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "6ff6e81e-4681-456f-9832-08963fade613", - "start": { - "$date": "2022-08-04T22:46:37.000Z" - }, - "end": { - "$date": "2022-08-04T22:51:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ae2a257c-2f3f-4f03-b6d1-ab21e31760a4", - "start": { - "$date": "2022-08-04T22:51:37.000Z" - }, - "end": { - "$date": "2022-08-04T23:11:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "2601d535-e1cb-441a-9e40-a25f3d506558", - "start": { - "$date": "2022-08-04T23:11:37.000Z" - }, - "end": { - "$date": "2022-08-04T23:16:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "225451e9-56d3-4699-b73c-41872d334663", - "start": { - "$date": "2022-08-04T23:16:37.000Z" - }, - "end": { - "$date": "2022-08-05T00:20:37.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "fda014c7-a9c4-4cb0-a0c3-40689f5145f0", - "start": { - "$date": "2022-08-05T00:20:37.000Z" - }, - "end": { - "$date": "2022-08-05T00:21:37.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "956bd461-a658-4470-9add-eba01f641742", - "start": { - "$date": "2022-08-05T00:21:37.000Z" - }, - "end": { - "$date": "2022-08-05T04:15:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a6635c30-9d75-4066-a1cf-dabf542bd5ce", - "uuid": "d2369bd5-823a-41ad-9500-a54b6ecfddeb", - "user": "236b4fc4-5ae1-4bae-9335-28138935433a", - "start": { - "$date": "2022-08-04T22:38:15.000Z" - }, - "end": { - "$date": "2022-08-04T23:21:11.000Z" - }, - "events": [ - { - "uuid": "645984f6-b6cd-465e-81b6-4f741886a6be", - "start": { - "$date": "2022-08-04T22:38:15.000Z" - }, - "end": { - "$date": "2022-08-04T23:21:11.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "9326c7b2-1557-4cf8-b9a4-377c56019ffe", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T23:29:31.000Z" - }, - "end": { - "$date": "2022-08-04T23:40:47.000Z" - }, - "events": [ - { - "uuid": "f811e069-d8be-45e2-ada1-bfd53fadd718", - "start": { - "$date": "2022-08-04T23:29:31.000Z" - }, - "end": { - "$date": "2022-08-04T23:40:47.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "b0d053d3-49c0-49da-a628-75bd826852df", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-04T23:40:57.000Z" - }, - "end": { - "$date": "2022-08-05T00:16:40.000Z" - }, - "events": [ - { - "uuid": "e764f695-56a7-4eac-8f0e-d01450b0653c", - "start": { - "$date": "2022-08-04T23:40:57.000Z" - }, - "end": { - "$date": "2022-08-04T23:52:57.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "de6a324b-6f2a-403c-bf5a-03d4ebc3782f", - "start": { - "$date": "2022-08-04T23:52:57.000Z" - }, - "end": { - "$date": "2022-08-05T00:14:57.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "ceaea2b3-efd1-451c-a385-f0d1cf4e0f7e", - "start": { - "$date": "2022-08-05T00:14:57.000Z" - }, - "end": { - "$date": "2022-08-05T00:16:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "30ad2127-e83c-403a-9129-be0c6e6f0d16", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-08-05T00:43:10.000Z" - }, - "end": { - "$date": "2022-08-05T01:02:29.000Z" - }, - "events": [ - { - "uuid": "c8b28733-695b-4277-ade5-3bd81931d093", - "start": { - "$date": "2022-08-05T00:43:10.000Z" - }, - "end": { - "$date": "2022-08-05T01:02:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "73bb9b65-8f91-43df-bdc0-0fd88e614dd7", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-08-05T01:05:42.000Z" - }, - "end": { - "$date": "2022-08-05T01:25:21.000Z" - }, - "events": [ - { - "uuid": "52224767-b834-4295-8ae9-718a4641286d", - "start": { - "$date": "2022-08-05T01:05:42.000Z" - }, - "end": { - "$date": "2022-08-05T01:25:21.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "6cba8393-5a6b-452d-a694-bbc1fb7751b0", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-05T01:05:51.000Z" - }, - "end": { - "$date": "2022-08-05T01:25:16.000Z" - }, - "events": [ - { - "uuid": "cfd2d60a-b133-4e2e-b83b-3957a8eee048", - "start": { - "$date": "2022-08-05T01:05:51.000Z" - }, - "end": { - "$date": "2022-08-05T01:25:16.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "8594a479-30c4-47a5-a017-bbc32b63008c", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-05T01:30:12.000Z" - }, - "end": { - "$date": "2022-08-05T01:46:57.000Z" - }, - "events": [ - { - "uuid": "064c56d5-edb1-44e9-abfd-9524c6b9d279", - "start": { - "$date": "2022-08-05T01:30:12.000Z" - }, - "end": { - "$date": "2022-08-05T01:46:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "f450f93c-cfba-4af4-8c3d-a46328adb6af", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-08-05T01:30:23.000Z" - }, - "end": { - "$date": "2022-08-05T01:47:03.000Z" - }, - "events": [ - { - "uuid": "855ff81a-ec5d-4539-9db5-0121aa0b3f1c", - "start": { - "$date": "2022-08-05T01:30:23.000Z" - }, - "end": { - "$date": "2022-08-05T01:47:03.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "ca7f2cbb-0978-4735-bb2a-6b5d5de18783", - "uuid": "7142aaf6-d69a-458b-aa79-b296bbd78ed5", - "user": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "start": { - "$date": "2022-08-05T01:46:54.000Z" - }, - "end": { - "$date": "2022-08-05T02:52:26.000Z" - }, - "events": [ - { - "uuid": "2c9dde74-a198-4fff-9b72-d48a3cf2eb52", - "start": { - "$date": "2022-08-05T01:46:54.000Z" - }, - "end": { - "$date": "2022-08-05T02:52:26.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "40b92519-2ea1-432f-9d69-f2a09e817f87", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-08-05T01:49:33.000Z" - }, - "end": { - "$date": "2022-08-05T02:06:40.000Z" - }, - "events": [ - { - "uuid": "eefb27f1-94d4-48db-a14a-63768108c70d", - "start": { - "$date": "2022-08-05T01:49:33.000Z" - }, - "end": { - "$date": "2022-08-05T02:06:40.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "e2677aa1-7fae-4450-a793-86bce3cdf0b5", - "uuid": "1936ed50-c885-43f1-b3f3-2c52ce85df00", - "user": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "start": { - "$date": "2022-08-05T01:49:32.000Z" - }, - "end": { - "$date": "2022-08-05T02:06:48.000Z" - }, - "events": [ - { - "uuid": "a7da25f7-6bfa-406d-9c91-fb0d61d9b38c", - "start": { - "$date": "2022-08-05T01:49:32.000Z" - }, - "end": { - "$date": "2022-08-05T02:06:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "7ed8928e-2180-4d87-bd23-b3f555a106a2", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-08-05T02:07:58.000Z" - }, - "end": { - "$date": "2022-08-05T03:22:59.000Z" - }, - "events": [ - { - "uuid": "df56c55d-441e-4ea6-9b5a-7811fbccc93b", - "start": { - "$date": "2022-08-05T02:07:58.000Z" - }, - "end": { - "$date": "2022-08-05T03:22:59.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a1707f2f-840c-4cb8-bb3c-5958dca69a36", - "uuid": "9dc80078-ce4b-4d1d-93f3-8cc5425c5b6b", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T02:08:30.000Z" - }, - "end": { - "$date": "2022-08-05T02:33:48.000Z" - }, - "events": [ - { - "uuid": "abae7c33-837a-4e3b-84a5-41dbfb568c47", - "start": { - "$date": "2022-08-05T02:08:30.000Z" - }, - "end": { - "$date": "2022-08-05T02:19:30.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "d38263af-fdb5-4423-8d08-e5fcec217d83", - "start": { - "$date": "2022-08-05T02:19:30.000Z" - }, - "end": { - "$date": "2022-08-05T02:26:30.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "02a7347b-e396-458e-9b96-6cabe6e64fc6", - "start": { - "$date": "2022-08-05T02:26:30.000Z" - }, - "end": { - "$date": "2022-08-05T02:33:48.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "8f784f64-3675-4d10-bde4-bb6406ccb1f1", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T02:35:59.000Z" - }, - "end": { - "$date": "2022-08-05T02:37:44.000Z" - }, - "events": [ - { - "uuid": "1976364d-58e1-4a6e-9db7-a5107f387578", - "start": { - "$date": "2022-08-05T02:35:59.000Z" - }, - "end": { - "$date": "2022-08-05T02:37:44.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "8d526cbe-780c-436e-897a-6c847ceb7299", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T02:37:59.000Z" - }, - "end": { - "$date": "2022-08-05T03:23:17.000Z" - }, - "events": [ - { - "uuid": "5f968914-2d3b-4804-b2ec-3d4822651317", - "start": { - "$date": "2022-08-05T02:37:59.000Z" - }, - "end": { - "$date": "2022-08-05T03:23:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "46e9a3ff-bdde-4ae6-bed3-7c7d78627d78", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T03:37:13.000Z" - }, - "end": { - "$date": "2022-08-05T03:46:14.000Z" - }, - "events": [ - { - "uuid": "812658eb-b5e8-4dd2-a784-e0c79c5e8bbd", - "start": { - "$date": "2022-08-05T03:37:13.000Z" - }, - "end": { - "$date": "2022-08-05T03:46:14.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a47bcf3d-26e0-4ad5-a6d8-7d4a7d579196", - "uuid": "c69846dd-3aa2-431d-ae23-01c105348cc3", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T03:51:24.000Z" - }, - "end": { - "$date": "2022-08-05T04:18:10.000Z" - }, - "events": [ - { - "uuid": "3a824cbb-9429-440b-bd4a-bb7d6e8ccdbd", - "start": { - "$date": "2022-08-05T03:51:24.000Z" - }, - "end": { - "$date": "2022-08-05T04:18:10.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "0adcc159-3449-43d2-bef7-d022c82c69a8", - "uuid": "440d28dc-d3ca-4ca6-9b76-7d2d31de9b9e", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-05T04:17:02.000Z" - }, - "end": { - "$date": "2022-08-05T05:50:30.000Z" - }, - "events": [ - { - "uuid": "2edbb7f8-9b0b-4cef-b503-5d6ca1d57e91", - "start": { - "$date": "2022-08-05T04:17:02.000Z" - }, - "end": { - "$date": "2022-08-05T05:18:02.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "7d6b6d28-cdb8-47ab-a52d-6219113ead4c", - "start": { - "$date": "2022-08-05T05:18:02.000Z" - }, - "end": { - "$date": "2022-08-05T05:21:02.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "0d650740-3f3b-4e4a-bc2c-931039f3958e", - "start": { - "$date": "2022-08-05T05:21:02.000Z" - }, - "end": { - "$date": "2022-08-05T05:50:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "fc9823b2-8515-4998-b096-bc7e4ba6dd29", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T04:45:46.000Z" - }, - "end": { - "$date": "2022-08-05T05:01:27.000Z" - }, - "events": [ - { - "uuid": "35eff0d1-32c0-4365-963a-b98ff3c22e9f", - "start": { - "$date": "2022-08-05T04:45:46.000Z" - }, - "end": { - "$date": "2022-08-05T05:01:27.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "aabd2ca1-1def-4f41-a245-2f1eb2cff83e", - "uuid": "993b563e-33fc-4a76-aa3c-c8afb4bfbfef", - "user": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "start": { - "$date": "2022-08-05T05:49:43.000Z" - }, - "end": { - "$date": "2022-08-05T06:49:29.000Z" - }, - "events": [ - { - "uuid": "b3610ce5-5608-46a9-ae2f-bbf4711a3113", - "start": { - "$date": "2022-08-05T05:49:43.000Z" - }, - "end": { - "$date": "2022-08-05T06:49:29.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "d54024ee-1b75-4d79-a7f1-95028f08bdd1", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-05T07:31:13.000Z" - }, - "end": { - "$date": "2022-08-05T08:08:04.000Z" - }, - "events": [ - { - "uuid": "e46fcd49-da86-4239-89b9-0e70200d7710", - "start": { - "$date": "2022-08-05T07:31:13.000Z" - }, - "end": { - "$date": "2022-08-05T08:08:04.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a8c03a82-0071-46c4-95d6-2d478179ea09", - "uuid": "6b4bcf96-2148-4aa6-a9bb-b64480a740ca", - "user": "624e0127-9b4e-456a-87cf-916e22b8e621", - "start": { - "$date": "2022-08-05T05:55:04.000Z" - }, - "end": { - "$date": "2022-08-05T07:54:17.000Z" - }, - "events": [ - { - "uuid": "2d3573d4-8a25-41c8-bd66-df6d75597939", - "start": { - "$date": "2022-08-05T05:55:04.000Z" - }, - "end": { - "$date": "2022-08-05T07:54:17.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b74552e2-a04d-4c20-90fb-a54b8d88cfe6", - "uuid": "44bf5c08-2bf0-47d6-8dfe-d9c02dfee542", - "user": "b2511594-7085-474f-8ff5-959897f7d8d0", - "start": { - "$date": "2022-08-05T15:57:57.000Z" - }, - "end": { - "$date": "2022-08-05T16:16:56.000Z" - }, - "events": [ - { - "uuid": "a7b51115-84d8-45f0-a2ab-34f4381fb78a", - "start": { - "$date": "2022-08-05T15:57:57.000Z" - }, - "end": { - "$date": "2022-08-05T16:16:56.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "a69e0d9e-5c58-47e9-b5de-a57d05e9b68e", - "uuid": "13fb1fe9-665b-4223-a256-8a651c151601", - "user": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "start": { - "$date": "2022-08-05T20:58:47.000Z" - }, - "end": { - "$date": "2022-08-05T22:18:46.000Z" - }, - "events": [ - { - "uuid": "00a19362-3245-4f77-b3ec-c2f978653d72", - "start": { - "$date": "2022-08-05T20:58:47.000Z" - }, - "end": { - "$date": "2022-08-05T22:18:46.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "5d55b014-3273-4e3c-9cb6-96bb71ff6fc1", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-05T21:37:48.000Z" - }, - "end": { - "$date": "2022-08-05T21:50:28.000Z" - }, - "events": [ - { - "uuid": "a88be5c4-7b7d-43ba-a3e9-8525473f4b99", - "start": { - "$date": "2022-08-05T21:37:48.000Z" - }, - "end": { - "$date": "2022-08-05T21:50:28.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "b8687790-408e-41f0-9053-cffeab0e5ef8", - "uuid": "cfca85b0-352b-45e7-a647-17f6eee84786", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-05T22:26:14.000Z" - }, - "end": { - "$date": "2022-08-05T22:37:25.000Z" - }, - "events": [ - { - "uuid": "fa4078cd-ed35-4112-bdcd-6cdabf34258d", - "start": { - "$date": "2022-08-05T22:26:14.000Z" - }, - "end": { - "$date": "2022-08-05T22:37:25.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "518d0d88-5f84-4b31-872c-404a031efa43", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-06T00:00:56.000Z" - }, - "end": { - "$date": "2022-08-06T00:28:39.000Z" - }, - "events": [ - { - "uuid": "c9318616-276a-4571-851d-5fc5046d27cf", - "start": { - "$date": "2022-08-06T00:00:56.000Z" - }, - "end": { - "$date": "2022-08-06T00:17:56.000Z" - }, - "state": "ACTIVE" - }, - { - "uuid": "bc96c850-9a2d-490e-b600-43b42caa61fd", - "start": { - "$date": "2022-08-06T00:17:56.000Z" - }, - "end": { - "$date": "2022-08-06T00:22:56.000Z" - }, - "state": "IDLE" - }, - { - "uuid": "7cd208d1-c1f1-4397-a502-40732a7bc90b", - "start": { - "$date": "2022-08-06T00:22:56.000Z" - }, - "end": { - "$date": "2022-08-06T00:28:39.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "d37341d1-3892-4c86-92db-45a9333a5fca", - "uuid": "5c0f1f29-0df7-4a08-832a-240db2c43ee9", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-06T00:30:09.000Z" - }, - "end": { - "$date": "2022-08-06T00:44:30.000Z" - }, - "events": [ - { - "uuid": "88499b02-d998-4e62-ac67-273dfce0914f", - "start": { - "$date": "2022-08-06T00:30:09.000Z" - }, - "end": { - "$date": "2022-08-06T00:44:30.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "4f74bd95-b4dc-4a36-9df0-5e1f09a43e2b", - "uuid": "ba014ce2-75f1-43e2-8d8e-d4681627a8c6", - "user": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "start": { - "$date": "2022-08-06T00:40:09.000Z" - }, - "end": { - "$date": "2022-08-06T01:26:57.000Z" - }, - "events": [ - { - "uuid": "c0b8ed09-2aad-4f7d-9439-1ef4160f513c", - "start": { - "$date": "2022-08-06T00:40:09.000Z" - }, - "end": { - "$date": "2022-08-06T01:26:57.000Z" - }, - "state": "ACTIVE" - } - ] - }, - { - "game": "dc697244-04f1-4bab-9699-8bdec13ec441", - "uuid": "d0421874-0116-4860-af3f-d40207a3aeec", - "user": "f38588a9-b024-451e-a464-7e32d0bd915c", - "start": { - "$date": "2022-08-06T00:44:50.000Z" - }, - "end": { - "$date": "2022-08-06T01:28:36.000Z" - }, - "events": [ - { - "uuid": "00eee995-95b1-499e-bfbe-8042de7164e6", - "start": { - "$date": "2022-08-06T00:44:50.000Z" - }, - "end": { - "$date": "2022-08-06T01:28:36.000Z" - }, - "state": "ACTIVE" - } - ] - } -] \ No newline at end of file diff --git a/users.json b/users.json deleted file mode 100644 index 411672a..0000000 --- a/users.json +++ /dev/null @@ -1,159 +0,0 @@ -[ - { - "uuid": "0c3b003c-b632-4e14-bd7d-c0393fdd7f76", - "discordId": "126559113210626048", - "username": "lobabob", - "displayName": "lobabob", - "aliases": [] - }, - { - "uuid": "f38588a9-b024-451e-a464-7e32d0bd915c", - "discordId": "205379374852210689", - "username": "Gandalf", - "displayName": "Gandalf", - "aliases": [] - }, - { - "uuid": "42ad1ebd-d25a-429a-8f5f-bb41069dfd21", - "discordId": "127643344376430592", - "username": "Silver Pews", - "displayName": "Silver Pews", - "aliases": [ - "jarkyll" - ] - }, - { - "uuid": "624e0127-9b4e-456a-87cf-916e22b8e621", - "discordId": "367506979263873034", - "username": "Acidn420", - "displayName": "Acidn420", - "aliases": [] - }, - { - "uuid": "5a7d6367-64d5-448b-b850-8b64b8bc8122", - "discordId": "248592148708982784", - "username": "chirs", - "displayName": "chirs", - "aliases": [ - "Ion" - ] - }, - { - "uuid": "9941d522-ea9d-4758-9ff9-7dbb075278eb", - "discordId": "134134771763773443", - "username": "KangMu", - "displayName": "KangMu", - "aliases": [] - }, - { - "uuid": "7134e077-a20a-41a8-a2ec-0d90ae27b0c5", - "discordId": "118908014634729474", - "username": "solewolf", - "displayName": "solewolf", - "aliases": [] - }, - { - "uuid": "236b4fc4-5ae1-4bae-9335-28138935433a", - "discordId": "660258246078103585", - "username": "bobninjasub1", - "displayName": "bobninjasub1", - "aliases": [ - "bobninjasub11" - ] - }, - { - "uuid": "b2511594-7085-474f-8ff5-959897f7d8d0", - "discordId": "128717865598713856", - "username": "alikhanx12", - "displayName": "alikhanx12", - "aliases": [] - }, - { - "uuid": "f16ac92f-5c20-41d1-8b5a-3f8f570167af", - "discordId": "297179725808271360", - "username": "Janix", - "displayName": "Janix", - "aliases": [] - }, - { - "uuid": "15d53af1-2454-443f-a3a2-32ea43b032f4", - "discordId": "236334683330314240", - "username": "DekuNiichan", - "displayName": "DekuNiichan", - "aliases": [] - }, - { - "uuid": "f559bf10-db18-4e1c-9ef2-c98e305626fa", - "discordId": "422491117087490059", - "username": "foobarbazhogafuga", - "displayName": "foobarbazhogafuga", - "aliases": [ - "hackerman" - ] - }, - { - "uuid": "a1198d93-94bb-4b82-94e4-6bd12aacbfb6", - "discordId": "439599334540181506", - "username": "Ralph", - "displayName": "Ralph", - "aliases": [] - }, - { - "uuid": "9432d19a-aae4-472c-ae38-13b5be06cfc0", - "discordId": "138423257719242752", - "username": "Not Kevin", - "displayName": "Not Kevin", - "aliases": [] - }, - { - "uuid": "c2070f5d-6ee9-4f5a-a659-e28a43fa89d4", - "discordId": "291405991772422144", - "username": "M3M0214", - "displayName": "M3M0214", - "aliases": [] - }, - { - "uuid": "ad48d8a3-a632-43a1-9809-56a73597d54a", - "discordId": "528738137556385793", - "username": "wedemmoez", - "displayName": "wedemmoez", - "aliases": [ - "eat the rich" - ] - }, - { - "uuid": "8ae95299-4fd7-4887-8e34-5041d2a7acf5", - "discordId": "173312061508550656", - "username": "Aly", - "displayName": "Aly", - "aliases": [] - }, - { - "uuid": "40a16e21-3cff-4da3-9a0c-0e5d0f82d767", - "discordId": "370668834723594241", - "username": "AshenOne", - "displayName": "AshenOne", - "aliases": [] - }, - { - "uuid": "b30a9c7c-b14a-4d5d-996b-3bf838e57d27", - "discordId": "170227855282667521", - "username": "Ari", - "displayName": "Ari", - "aliases": [] - }, - { - "uuid": "acdbdc7b-7b16-4008-adb7-d1c23d8c5fdc", - "discordId": "317845859020570624", - "username": "ZSR", - "displayName": "ZSR", - "aliases": [] - }, - { - "uuid": "4ef3b529-735b-4419-95b6-03fe8aff3e2d", - "discordId": "746226534502760509", - "username": "bloodaudiocontent", - "displayName": "bloodaudiocontent", - "aliases": [] - } -] \ No newline at end of file From 0e66cd691da231d16c5735607ab7730211d8cadb Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Tue, 9 Aug 2022 13:05:36 -0500 Subject: [PATCH 13/14] Add support for game/user lookup in sessions --- src/dataSources/Session/index.js | 12 ++++++++++-- src/schema/Session.js | 6 ++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/dataSources/Session/index.js b/src/dataSources/Session/index.js index dc2c973..34e3e04 100644 --- a/src/dataSources/Session/index.js +++ b/src/dataSources/Session/index.js @@ -11,12 +11,20 @@ class Session extends MongoDataSource { this.context = context; } - async sessions({ from, to }) { + async sessions({ from, to, game: _game, user: _user }) { + const game = (await this.context.dataSources.Game.games(_game))?.[0]; + const user = (await this.context.dataSources.User.users(_user))?.[0]; + + // Return no results if provided game/user does not exist + if ((_game && !game) || (_user && !user)) return []; + const findArgs = { start: { $gte: new Date(from ?? 0), $lte: new Date(to ?? Date.now()), - } + }, + ...(_game && game && {game: game.uuid}), + ...(_user && user && {user: user.uuid}), }; const docs = await this.collection.find(findArgs).sort({ start: 1 }).toArray(); diff --git a/src/schema/Session.js b/src/schema/Session.js index e92b4af..9571835 100644 --- a/src/schema/Session.js +++ b/src/schema/Session.js @@ -13,8 +13,10 @@ const typeDefs = gql` extend type Query { sessions( - from: DateTime, - to: DateTime, + from: DateTime + to: DateTime + game: GameSearch + user: UserSearch ): [Session!]! } # extend type Mutation {} From 146f10b505de499185725beef82d1182f0b56839 Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Tue, 9 Aug 2022 13:35:55 -0500 Subject: [PATCH 14/14] Support looking up games/users by aliases --- src/dataSources/Game/index.js | 5 ++++- src/dataSources/User/index.js | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/dataSources/Game/index.js b/src/dataSources/Game/index.js index 90b148e..1c492fa 100644 --- a/src/dataSources/Game/index.js +++ b/src/dataSources/Game/index.js @@ -13,7 +13,10 @@ class Game extends MongoDataSource { async games(args = {}) { const docs = await this.findByFields(args); - return docs.map(this.transformGame); + if (docs.length) return docs.map(this.transformGame); + + const aliasDocs = await this.findByFields({aliases: [args.name]}); + return aliasDocs.map(this.transformGame); } transformGame(game) { diff --git a/src/dataSources/User/index.js b/src/dataSources/User/index.js index 7085667..c9c53b9 100644 --- a/src/dataSources/User/index.js +++ b/src/dataSources/User/index.js @@ -13,7 +13,10 @@ class User extends MongoDataSource { async users(args = {}) { const docs = await this.findByFields(args); - return docs.map(this.transformUser); + if (docs.length) return docs.map(this.transformUser); + + const aliasDocs = await this.findByFields({aliases: [args.username]}); + return aliasDocs.map(this.transformUser); } transformUser(user) {